[
  {
    "path": ".gitignore",
    "content": "teaching-notes.txt\n*solution.ipynb\n.ipynb_checkpoints\n"
  },
  {
    "path": "README.md",
    "content": "# Algorithms - Lede 2018 \nA course on algorithms used in journalism, for beginning Python programmers.\nTaught at the Lede program, Columbia Journalism School, summer 2018\nby Jonathan Stray. Some parts adapted from previous work, as noted.\n\n## Course overview\nThis is a course on algorithmic data analysis in journalism, and also the journalistic analysis of algorithms used in society. The major topics are text processing, visualization of high dimensional data, regression, machine learning, algorithmic bias and accountability, monte carlo simulation, and election prediction. \n\nThere are seven weeks of material and 13 classes total. Most classes include a Jupyter notebook that students filled out during class time, following the instructor on screen. The full class notebook is named `class-week-day-topic.ipynb` while this same notebook ready to be filled out in class is called `class-week-day-topic-empty.ipynb` Though I believe it's important for learning for the students to type the code themselves, I sometimes included particularly annoying or unedifying snippets in the \"empty\" notebooks.\n\nThere is a homework assignment after most classes, given as a notebook which students must fill out themselves. Homework solutions are available separately for instructors -- contact me (try @jonathanstray on Twitter)\n\nAll coding is done in Python, using Pandas, matplotlib, scikit learn. \n\nSome classes also include slide decks, in pdf and pptx formats. The pptx files are included for potential remixes and because the notes contain extra information, e.g. the source URLs for each slide.\n\n## Prerequisites\nStudents must have basic ability to work with data in Python/Pandas, such as filtering, grouping, and plotting.\n\n## Administration\n- Instructor: Jonathan Stray, jms2361@columbia.edu\n- Dates: Mondays and Wednesdays, 7/18-8/29\n- Class: 10am-1pm\n- Lab: 2pm-5pm\n- Location: World Room\n- Slack channel: #algorithms\n\n## Teaching notes\n\nFor each week, I have included notes about what worked and what didn't, in the hope of improving future iterations of the course. You'll see that it took me a few weeks to dial in the level and style of teaching, so the course is strongest (for this audience) starting in week 3.\n\n## LICENSE\nThis work is licensed under Creative Commons [CC-BY 3](https://creativecommons.org/licenses/by/3.0/us/). Which means you can pretty much do what you want with it, just as long as you mention my name in derivative works.\n\n## Syllabus \n\n### Week 1 - Introduction to Algorithms\nAlgorithms for doing journalism, journalism about algorithms. The purpose of mathematical formalism. \n\n*Materials:*\n- [Slides](https://github.com/jstray/lede-algorithms/blob/master/week-1/week-1.pdf)\n\n*Homework:*\n- [Average of averages](https://github.com/jstray/lede-algorithms/blob/master/week-1/week-1-homework.ipynb). First you'll do some basic group operations on the Titantic survival data. Then you'll use the results to show that an average of averages is not always the same as the overall average. You must figure out when these two averages **are** equal, and how to compute the overall average from the individual averages.\n\n*What worked and didn't.* Students enjoyed the introductory lecture. The material on linear vs. quadratic running time was a bit abstract, and we didn't really talk about it later in the course, so I'd drop it next time. Most students were able to understand what the \"average of averages\" problem was about but many got stuck on the summation notation in the homework. I'd rewrite this to look like code instead of algebra (`averages.mean()` etc.)\n\n\n### Week 2-1 - Text processing and TF-IDF\nIn this class we will develop the ubiquitous vector space document model, with TF-IDF weighting. You will learn to algorithmically summarize documents by extracting keywords, how to compare documents for similarity, and how a search engine and Google News work. \n\n*Materials:*\n- [Slides](https://github.com/jstray/lede-algorithms/blob/master/week-2/week-2.pdf)\n- [Class notebook](https://github.com/jstray/lede-algorithms/blob/master/week-2/week-2-1-class.ipynb)\n\n*References:*\n- [TF-IDF is about what matters](https://planspace.org/20150524-tfidf_is_about_what_matters/) - an article which describes TF-IDF in more detail.\n- [How ProPublica's Message Machine Reverse Engineers Political Microtargeting](https://www.propublica.org/nerds/how-propublicas-message-machine-reverse-engineers-political-microtargeting) - a real life example of TF-IDF and cosine similarity used in journalism. \n- Stephen Ramsay's short book [Reading Machines](http://www.dansinykin.com/uploads/8/4/0/2/84026824/ramsay_algorithmic_criticism.pdf) - TF-IDF used in the digital humanities, plus a fantastic discussion of text analysis in general. \n- The [Overview document mining platform](overviewdocs.com), a powerful tool you can use to explore document sets, or OCR and convert them. See also this [visualization of the TF-IDF vectors](https://blog.overviewdocs.com/2012/03/16/video-document-mining-with-the-overview-prototype/) of a document set.\n- [A full-text visualization of the Iraq war logs](https://blog.overviewdocs.com/2010/12/10/a-full-text-visualization-of-the-iraq-war-logs/) - I used TF-IDF to analyze the Wikileaks Iraq War Logs, which became the inspiration for Overview.\n\n\n*Homework:*\n- [Analyze the state of the Union with TF-IDF](https://github.com/jstray/lede-algorithms/blob/master/week-2-1/week-2-homework.ipynb) to see how topics changed by decade\n\n\n*What worked and didn't.* It would help to motivate TF-IDF by showing it used in journalism first, e.g. [message machine](https://www.propublica.org/nerds/how-propublicas-message-machine-reverse-engineers-political-microtargeting). The slide deck describing TF-IDF was adapted from my [computational journalism seminar](http://www.compjournalism.com/) and had too many equations for most. The switch from distance to similarity within the notebook was confusing. Jonathan Soma's [2017 class on TF-IDF](http://jonathansoma.com/lede/foundations/classes/text%20processing/tf-idf/) repeatedly plots a few dimensions at a time and seemed to help get the concept across. \n\nGenerally, the students were inspired by text analysis and several used TF-IDF for summarization or clustering as part of their Data Studio projects. We could usefully spend more time on other NLP topics like tagging and sentimen t analysis (both of which are supported in `TextBlob`.) Sentiment analysis in particular is ever-popular, for better or worse.\n\n\n### Week 2-2 - Vectors, clusters, and visualization\n\nWe'll start with the idea of clusters, and the K-means algorithm which identifies them. Then we'll look at the voting patterns of the UK house of lords in 2012 (yes, there is a reason for this particular data) to develop the general idea of high dimensional vectors representing data. We'll learn some ways to visualize such high dimensional spaces, including the classic PCA algorithm.\n\n*Materials:*\n- [Class notebook](https://github.com/jstray/lede-algorithms/blob/master/week-2/week-2-1-class.ipynb) \n\n*References:*\n- [Visualizing K-Means Clustering](https://www.naftaliharris.com/blog/visualizing-k-means-clustering/) - an interactive demonstration by Naftali Harris\n- [In Depth: Principal Component Analysis](https://jakevdp.github.io/PythonDataScienceHandbook/05.09-principal-component-analysis.html)\n\n*Homework:*\n- [Principal component analysis](https://github.com/jstray/lede-algorithms/blob/master/week-2/week-2-2-homework.ipynb) of data from the General Social Survey.\n\n*What worked and didn't.* Students found the PCA material very abstract -- but the discusson of [Flatland](http://www.geom.uiuc.edu/~banchoff/Flatland/) as a method of thinking about higher dimensions was a hit! It would have been better to build up to PCA from simpler high dimensional EDA techniques, e.g. `scatter_matrix`. \n\nThe GSS PCA assignment was difficult for most students, in part because the General Social Survey website has a horrificially complex interface and it's too easy to choose data that doesn't work well for various reasons. It would be better to include a pre-downloaded subset of the data, e.g. the data on altruism used in the homework solution. It may also have helped to give another example of interepreting the axes of a PCA plot using the colors in the scatterplot; in the homework notebook, the link between the povided color schema and increasing numeric values was not clear.\n\n\n### Week 3-1 - Linear Regression\nAfter a few toy examples of linear regression, we'll pick apart and reproduce the Washington Post article [Racism motivated Trump voters more than authoritarianism](https://www.washingtonpost.com/news/monkey-cage/wp/2017/04/17/racism-motivated-trump-voters-more-than-authoritarianism-or-income-inequality) using the [original American National Election Study data](http://electionstudies.org/project/2016-time-series-study/)\n\n*In-class exercise:* break into five groups and assign each a visualization from the \"Examples\" section of the slides. Ask each group to take 10 minutes to produce as many causal interpretations of the data as they can think of -- for each example there is at least one plausible confounder.\n\n*Materials:*\n- [Slides](https://github.com/jstray/lede-algorithms/blob/master/week-3/week-3.pdf) about correlation, causation, and confounding variables. \n- [Class notebook](https://github.com/jstray/lede-algorithms/blob/master/week-3/week-3-1-class.ipynb)  \n- [Simpson's paradox notebook](https://github.com/jstray/lede-algorithms/blob/master/week-3/Simpson's%20Paradox.ipynb) and why controlling for a variable can change the sign of a coefficient on another variable. This is a constructed counter-example to the story below, deisgned so that it looks like particular shoes improve performance, but actually it's just that people who run at night both run faster (which is a real effect) and also more commonly wear these shoes.\n\n*References:*\n- [Nike Says Its $250 Running Shoes Will Make You\nRun Much Faster. What if That’s Actually True?](https://www.nytimes.com/interactive/2018/07/18/upshot/nike-vaporfly-shoe-strava.html) This NY Times story involves exactly the sort of question regression is meant to answer -- do people wearing these shoes run faster? -- and exactly the sort of question for which there is an infinite supply of potential confounders. It's instructive to see how they handled this by using four different statistical methods of controlling for all other variables, on a rich data set of marathon times.\n\n*Homework:*\n- [Linear regression](https://github.com/jstray/lede-algorithms/blob/master/week-3/week-3-1-homework.ipynb) on school test scores, a re-creation of this [2010 story in the Pioneer Press](https://www.twincities.com/2010/07/09/schools-that-work-despite-appearances-schools-doing-better-than-expected-have-traits-in-common/) which asked, what makes a school succeed despite disadvantages?\n\n*What worked and didn't.* The in-class discussion of causality worked well. The presentation of Simpson's paradox was probably still a bit too abstract; I'm not sure  everyone could connect it to the idea of a confounding variable. This class also required extensive whiteboarding of the core formulas and geometry of regression, so some slides with this material would be good.\n\n\n### Class 3-2 Logistic Regression\nFor this class we are going to reproduce the Boston Globe analysis for their series [Speed Trap: Who gets a ticket, who gets a break?](http://archive.boston.com/globe/metro/packages/tickets/) which is a classic example of logistic regression in journalism, and also introduces the idea of quantitative measurements of racial bias.\n\n*Materials:*\n - [Class notebook](https://github.com/jstray/lede-algorithms/blob/master/week-3/week-3-2-class.ipynb)\n\n *References:*\n  - [Counting Possible Worlds](https://towcenter.gitbooks.io/curious-journalist-s-guide-to-data/content/analysis/counting_possible_worlds.html) - The Curious Journalist's Guide to Data\n\n*Homework:*\n- [Logistic regression](https://github.com/jstray/lede-algorithms/blob/master/week-3/week-3-2-homework.ipynb) to examine the effects of Titanic passenger sex and class on survival odds. As a bonus question, we'll use the ANES data from the last class to see how much effect  opinion of Obamacare had in the 2016 election, when controlling for party.\n\n*What worked and didn't.* The logarithm and exponentiation operations were unfamiliar to many students, and could have used a review. Ditto the concept of function composition where the logit is used to \"remap\" the linear regression to 0..1. Also, we definitely needed to start by discussing the difference between odds and probability.\n\n\n\n### Week 4-1 - Machine Learning\nThis is our introduction to machine learning, beginning with decision trees.\n\n*In-class exercise:* Act out the construction and use of decision trees and random forests using the amazing [Lights, Camera, Algorithms game](https://gist.github.com/rshorey/6fbf25b7a35ff67fbda435a1553d9564) by Jeremy Merrill and Rachel Shorey.\n\n*Materials:*\n- [Class notebook](https://github.com/jstray/lede-algorithms/blob/master/week-4/week-4-1-supervised-learning-class.ipynb) which uses GSS data on attitudes towards government spending on various programs, and tries to predict the answer to one question from the answers on all the others. Plus we make the computer actually draw the decision tree!\n\n*References:*\n- [A visual introduction to machine learning](http://www.r2d3.us/visual-intro-to-machine-learning-part-1/) - an interactive machine learning tutorial\n- [Getting started with machine learning for reporting](http://paldhous.github.io/NICAR/2018/machine-learning.html) - an all-star presentation of how ML has been used and abused in journalism\n\n*Homework:*\n- [Supervised learning](https://github.com/jstray/lede-algorithms/blob/master/week-4/week-4-1-supervised-learning-homework.ipynb) on the classic `wine` data set. Introduction to confusion matrices / accuracy metrics.\n\n*What worked and didn't.* Students loved the decision tree game. However, our random forest actually had slightly lower accuracy than the initial single tree. The Lights, Camera, Algorithm data gives very high accuracy with just a single tree, and could use some harder cases so that the forest more commonly helps. (With less than 50 players, there is a random element to the game depending on what cards are dealt.)\n\nThere was some confusion on the confusion matrix in the homework so it probably would have been helpful to spend more class time on this -- or perhaps the problem is that the students first needed context and motivation for why we care about these numbers, which is that they're key to the deconstruction of \"Machine Bias\" in the next week.\n\n\n### Week 4-2 - Feature engineering\nIt's all about which features we feed to the beast. This class collects a lot of the machinery we need to do machine learning in practice, including classification on text vectors and creating dummy variables. Also, cross-validation! \n\n*Materials:*\n- [Class notebook](https://github.com/jstray/lede-algorithms/blob/master/week-4/week-4-2-feature-selection-class.ipynb) which tries to predict flight delays from messy categorical data, and then predicts occupation code from job title and company name in campaign finance data.\n- [Using machine learning to classify documents with Overview](https://github.com/jstray/lede-algorithms/blob/master/week-4/Machine%20learning%20with%20Overview.ipynb). Instructions and code to use Overview's tagging to create training data, run a classifier, and re-import the results to automatically tag all other documents.\n\n*References:*\n- [Predict-a-bill: how it works](http://ajcnewsapps.tumblr.com/post/77008124090/predict-a-bill-how-it-works) - The Atlanta Journal-Constitution predicts whether Georgia state legislation will pass, based on text and other features.\n\n*Homework:*\n- [Determining bill topics](https://github.com/jstray/lede-algorithms/blob/master/week-4/week-4-2-text-classification-homework.ipynb) from their text. \n\n*What worked and didn't.* The large occupation confusion matrix in the class notebook might be clearer if we dropped the 'Y' (unknown) category.\n\n On the assignment, some students get an error message trouble reading `bills.csv`:\n`(UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0x89 in position 680: invalid start byte)`. \nUsing `df = pd.read_csv('bills.csv', encoding='Latin1')` seemed to fix this on both Windows and Mac.\n\n\n### Week 5-1 - Machine Bias\nThis week the class turns from analyzing data to analyzing algorithms. This class we will break down ProPublica's famous [Machine Bias story](https://www.propublica.org/article/machine-bias-risk-assessments-in-criminal-sentencing) using their original data on the performance of the COMPAS recidivism prediction algorithm.\n\n*In-class exercise:* \nFirst we're going to get down and dirty with confusion matrices, because the core of ProPublica's argument is a difference in false positive rates between black and white defendants. I've created a game called [Kitchen Confusion Matrix](https://github.com/jstray/lede-algorithms/blob/master/week-5/kitchen-confusion-matrix.ipynb) where students acted this out. \nWe started with the cards for [Lights, Camera, Algorithms game](https://gist.github.com/rshorey/6fbf25b7a35ff67fbda435a1553d9564) and I asked students to hand-write in a few additional data points for each card: `exotic`, `in_season`, and `imported`. We used a simple scoring function, `score = 2*exotic + in_season - imported`, to compute a score for each fruit/vegetable, trying to predict whether or not the food ultimatey got `eaten` when served. Imagine this score as the result of a previous linear regression against the actual outcomes.\n\nThen we picked a threshold for the classifer to guess `eaten==True`, and in this case we used `score>=2`. All the students physically sorted themselves into predicted eaten and predicted not eaten, in two groups on opposite sides of the room. Then each group split into two: actually eaten and not actually eaten.\n\nAt this point I handed out four signs, one for each group, to label the entries of our physical confusion matrix: TP, FP, TN, FN. Each group chose a team leader to hold up the sign, and count the number of people in the group. We wrote the resulting confusion matrix on the whiteboard.\n\nThen we separated each group again, by fruit vs. vegetable. This produced eight groups (though one was empty) and now we used eight signs: each of TP, FP, TN, FN for both fruit and vegetable. Again we counted each group and wrote two more confusion matrices on the board. These represented the classifier performance for fruits and for vegetables. Naturally, the game data is engineered to try to make the false positive rate different between these two groups. \n\n\n*Materials*:\n- [Slides](https://github.com/jstray/lede-algorithms/blob/master/week-5/week-5-1.pdf) introducing algorithmic accountability generally and Machine Bias in particular.\t\n- [Class notebook](https://github.com/jstray/lede-algorithms/blob/master/week-5/week-5-1-machine-bias-class.ipynb) recreating the ProPublica analysis, and creating our own classifier to understand the limits of recidivism prediction.\n- [Kitchen Confusion Matrix data](https://github.com/jstray/lede-algorithms/blob/master/week-5/kitchen-confusion-matrix.csv). See also the \n [data generation notebook](https://github.com/jstray/lede-algorithms/blob/master/week-5/kitchen-confusion-matrix.ipynb) which shows how it's rigged for our pedagogical objectives.\n\n*References*:\n - [Prediction](https://towcenter.gitbooks.io/curious-journalist-s-guide-to-data/content/communication/prediction.html) - The Curious Journalist's Guide to Data\n - [California ends cash bail system despite opposition from bail industry and criminal justice reformers](https://www.desertsun.com/story/news/politics/2018/08/24/californias-money-based-bail-system-could-replaced/1069379002/) - Desert Sun. Predictive risk scores in the real-world context of reform in California.\n - [Human decisions and machine predictions](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5947971/) - Analyzes real judicial decision data and makes the case that using a prediction algorithm would simultaneously send fewer people to jail, reduce the crime rate, and improve racial disparities.\n\n*Homework:*\n- [Make a fair classifier](https://github.com/jstray/lede-algorithms/blob/master/week-5/week-5-1-fairness-tradeoffs-homework.ipynb), according to the equal false positive rate (FPR) definition, by modifying the COMPAS logistic regression built in class to use different thresholds for black vs. white. How do other metrics shift?\n\n*What worked and didn't.* Acting out confusion matrices was popular. However in our run of Kitchen Confusion Matrix we didn't get the expected higher FPR for fruits. Narratively, the outcome of \"being eaten\" didn't motivate students to think about the desirability of the outcome and the potential unjustness of differential error. They weren't emotionally invested in being picked by the classifier, whereas I had presumed that all food would surely want to be given a chance to be eaten.\n\nOn the homework, most students had problems writing the `predict_threshold_groups` function. Sometimes the goal of equalizing FPR by using per-group thresholds was not clear. There was also a purely technical challenge in that most students were not aware that you can use an array of booleans as a write index into the rows of a dataframe, which is probably the easiest way to code the requested function.\n\nPredictive calibration, and its definition in terms of positive predictive value (PPV, aka precision) was difficult to get on the initial pass through the material. We probably needed to first look at the mechanics of prediction evaluation, perhaps with the [chapter](https://towcenter.gitbooks.io/curious-journalist-s-guide-to-data/content/communication/prediction.html) mentioned above. Calibration is a key concept because of the impossibility of calibration plus equal error rates, an impossibility which is central to the discussion around Machine Bias and classifier bias generally. Perhaps we need an interactive graphical demonstration to give intuition about why we can't have both properties in the presence of differential base rates. \n\n\n\n### Week 5-2 - Algorithmic Accountability\nBuilding on our detailed breakdown of Machine Bias, we expand the scope to talk about algorithmic accountability in general. We briefly review the U.S. legal framework of protected classes, and the impossibility theorems that define what sort of classifiers we can actually build. Going outwards from there, we talk about training data quality and how predictions are actually used in society. Then we'll turn to other cases including income-baised price discrimination and the effects of algorithmic credit scoring.\n\n*Materials*:\n- [Slides](https://github.com/jstray/lede-algorithms/blob/master/week-5/week-5-2.pdf) with more on algorithmic accountability, including fairness impossibility theorems, data quality issues, biased humans ignorning algorithmic predictions, and the case of Chicago's predictive policing system. \n- [Class notebook](https://github.com/jstray/lede-algorithms/blob/master/week-5/week-5-2-lending-class.ipynb) analyzing who wins and who loses from more accurately predicting whether someone will repay a loan, using real data from Lending Club.\n\n*References:*\n- [Banking Start-Ups Adopt New Tools for Lending](https://www.nytimes.com/2015/01/19/technology/banking-start-ups-adopt-new-tools-for-lending.html) - NY Times. Describes contemporary use of machine learning for loan decisions.\n- [Predictably Unequal? The Effects of Machine Learning on Credit Markets](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3072038) - Fuster et al. An analysis of who wins and who loses when default prediction gets better, based on internal Federal Reserve data.\n\n*Homework:*\n- Watch the first part of the [Fairness in Machine Learning NIPS 2017 Tutorial](http://fairml.how) by Solon Barocas and Moritz Hardt, where Barocas talks.\n\n*What worked and didn't.* The fairness impossibilities material was very abstract. I really like the three simple and mutally exclusive fairness conditions that Barocas and Hardt identify, but these are totally opaque to non-statiticians. We could really use graphical examples to give intuition about why you can only have one type at a time. \n\n\n### Week 6-1 - Election Prediction\nIn this class we'll build a basic Monte Carlo U.S. election predictor which uses per-state polling errors and simulates the electoral college. And we'll begin our discussion of how to interpret the predictions of 2016 in the face of Trump's win.\n\n*Materials:*\n- [Class notebook](https://github.com/jstray/lede-algorithms/blob/master/week-6/week-6-1-election-prediction.ipynb) goes from simulating one poll to simulating the electoral college to simulating correlated error.\n\n*References:*\n- [The Real Story of 2016](https://fivethirtyeight.com/features/the-real-story-of-2016/) - Fivethirtyeight\n- Buzzfeed's post-election [forecast grades](https://www.buzzfeednews.com/article/jsvine/2016-election-forecast-grades)\n- [After 2016, Can We Ever Trust the Polls Again?](https://newrepublic.com/article/139158/2016-can-ever-trust-polls-again) - The New Republic\n- [Putting the Polling Miss of the 2016 Election in Perspective](https://www.nytimes.com/interactive/2016/11/13/upshot/putting-the-polling-miss-of-2016-in-perspective.html) - The Upshot\n- [Models Based on ‘Fundamentals’ Have Failed at Predicting Presidential Elections](https://fivethirtyeight.com/features/models-based-on-fundamentals-have-failed-at-predicting-presidential-elections/) - Fivethirtyeight\n\n*Homework:*\n- [Fundamentals-based election prediction](https://github.com/jstray/lede-algorithms/blob/master/week-6/week-6-1-election-prediction-homework.ipynb). How well can we predict election outcome from economic, approval, and term indicators? Use logistic regression to find out.\n\n*What worked and didn't.* Students needed a primer on basic polling and sampling theory, which we ended up doing in the next class.\n\n\n### Week 6-2 - Correlated errors.\nThis class was planned to be more simulation but that was pushed to 7-1. Instead we spent most of it discussing the mechanics of samlping and polling. We used [this chapter](https://towcenter.gitbooks.io/curious-journalist-s-guide-to-data/content/quantification/sampling_and_quantified_error.html) as a reference and worked in a notebook to simulate polling. The objective was to demonstrate basic properties, such as how the MOE changes with sample size, and also the mechanics of simulation with Pandas.\n\n*Materials:*\n- [Simple polling simulation](https://github.com/jstray/lede-algorithms/blob/master/week-6/Simple%20Polling%20Simulation.ipynb) notebook.\n\n*References:*\n- [Sampling and Quantified Error](https://towcenter.gitbooks.io/curious-journalist-s-guide-to-data/content/quantification/sampling_and_quantified_error.html) - The Curious Journalist's Guide to Data\n- [The Devil in the Polling Data](https://www.quantamagazine.org/why-nate-silver-sam-wang-and-everyone-else-were-wrong-part-2-20161111/) - Quanta magazine. All about correlated errors, in the 2007 financial crisis and the 2016 election.\n\n*Homework:*\n- [Correlated polling errors](https://github.com/jstray/lede-algorithms/blob/master/week-6/week-6-2-midwest-polling-errors-homework.ipynb). Modify the 6-1 class notebook model so polling errors are correlated only across the midwest, not nationally. This is approximately what actually happened in 2016.\n\n\n\n### Week 7-1 - Simulation\nWe'll look at several uses of simulation in journalism, starting with demonstrating how something works:\n\n- [Should Prison Sentences Be Based On Crimes That Haven’t Been Committed Yet?](https://fivethirtyeight.com/features/prison-reform-risk-assessment/) - Fivethirtyeight\n\n- [Watch how the measles outbreak spreads when kids get vaccinated – and when they don't](https://www.theguardian.com/society/ng-interactive/2015/feb/05/-sp-watch-how-measles-outbreak-spreads-when-kids-get-vaccinated) - The Guardian\n\n- [This game will show you just how foolish it is to sell stocks right now](https://qz.com/487013/this-game-will-show-you-just-how-foolish-it-is-to-sell-stocks-right-now/) - Quartz\n\n\nSeveral other journalistic simulations have been of the \"significance testing\" type. For a primer on significance testing in general, see [this chapter](https://towcenter.gitbooks.io/curious-journalist-s-guide-to-data/content/analysis/arguing_from_the_odds.html).\n\n- [How BuzzFeed News Used Betting Data To Investigate Match-Fixing In Tennis](https://www.buzzfeednews.com/article/johntemplon/how-we-used-data-to-investigate-match-fixing-in-tennis). See also the [code notebook](https://github.com/BuzzFeedNews/2016-01-tennis-betting-analysis)! \n\n- [Why Betting Data Alone Can’t Identify Match Fixers In Tennis](https://fivethirtyeight.com/features/why-betting-data-alone-cant-identify-match-fixers-in-tennis/) - Fivethirtyeight. A great discussion of what Buzzfeed's statistics mean\n\n- The Wall Street Journal's multi-decade investigation into insider trading has used simulation several times: [2006](http://www.pulitzer.org/winners/wall-street-journal) (read \"How the journal analyzed stock-option grants\"), [2013](http://businessjournalism.org/2013/11/bronze-from-casual-conversation-to-massive-investigation-into-insider-trading/), and [2017](https://www.wsj.com/articles/hundreds-of-people-made-gifts-of-stock-with-great-timing-1513881239)\n\n- [Statistical Model Strongly Suggests the Stormy Daniels Payoff Came from the Trump Campaign](https://medium.com/@whstancil/statistical-model-strongly-suggests-the-stormy-daniels-payoff-came-from-the-trump-campaign-7c09c300cb18). This one has similar structure to The Tennis Racket, but has a robustness issue: as [this notebook](https://github.com/jstray/lede-algorithms/blob/master/week-6/stormy-daniels-payments-simulation.ipynb) shows, if you take the previous 20 payments, as opposed to the previous 10, the probability of getting close to $130,000 is very much higher.\n\n\n### Week 7-2 - Discussion and wrap up\nI had all students submit data stories they wanted to talk about, and then we discussed the top five or so in detail.\n\n\n\n\n\n\n"
  },
  {
    "path": "week-1/titanic.csv",
    "content": "pclass,survived,name,age,embarked,home.dest,room,ticket,boat,gender\r\n1st,1,\"Allen, Miss Elisabeth Walton\",29,Southampton,\"St Louis, MO\",B-5,24160 L221,2,female\r\n1st,0,\"Allison, Miss Helen Loraine\",2,Southampton,\"Montreal, PQ / Chesterville, ON\",C26,,,female\r\n1st,0,\"Allison, Mr Hudson Joshua Creighton\",30,Southampton,\"Montreal, PQ / Chesterville, ON\",C26,,-135,male\r\n1st,0,\"Allison, Mrs Hudson J.C. (Bessie Waldo Daniels)\",25,Southampton,\"Montreal, PQ / Chesterville, ON\",C26,,,female\r\n1st,1,\"Allison, Master Hudson Trevor\",0.9167,Southampton,\"Montreal, PQ / Chesterville, ON\",C22,,11,male\r\n1st,1,\"Anderson, Mr Harry\",47,Southampton,\"New York, NY\",E-12,,3,male\r\n1st,1,\"Andrews, Miss Kornelia Theodosia\",63,Southampton,\"Hudson, NY\",D-7,13502 L77,10,female\r\n1st,0,\"Andrews, Mr Thomas, jr\",39,Southampton,\"Belfast, NI\",A-36,,,male\r\n1st,1,\"Appleton, Mrs Edward Dale (Charlotte Lamson)\",58,Southampton,\"Bayside, Queens, NY\",C-101,,2,female\r\n1st,0,\"Artagaveytia, Mr Ramon\",71,Cherbourg,\"Montevideo, Uruguay\",,,-22,male\r\n1st,0,\"Astor, Colonel John Jacob\",47,Cherbourg,\"New York, NY\",,17754 L224 10s 6d,-124,male\r\n1st,1,\"Astor, Mrs John Jacob (Madeleine Talmadge Force)\",19,Cherbourg,\"New York, NY\",,17754 L224 10s 6d,4,female\r\n1st,1,\"Aubert, Mrs Leontine Pauline\",NA,Cherbourg,\"Paris, France\",B-35,17477 L69 6s,9,female\r\n1st,1,\"Barkworth, Mr Algernon H.\",NA,Southampton,\"Hessle, Yorks\",A-23,,B,male\r\n1st,0,\"Baumann, Mr John D.\",NA,Southampton,\"New York, NY\",,,,male\r\n1st,1,\"Baxter, Mrs James (Helene DeLaudeniere Chaput)\",50,Cherbourg,\"Montreal, PQ\",B-58/60,,6,female\r\n1st,0,\"Baxter, Mr Quigg Edmond\",24,Cherbourg,\"Montreal, PQ\",B-58/60,,,male\r\n1st,0,\"Beattie, Mr Thomson\",36,Cherbourg,\"Winnipeg, MN\",C-6,,,male\r\n1st,1,\"Beckwith, Mr Richard Leonard\",37,Southampton,\"New York, NY\",D-35,,5,male\r\n1st,1,\"Beckwith, Mrs Richard Leonard (Sallie Monypeny)\",47,Southampton,\"New York, NY\",D-35,,5,female\r\n1st,1,\"Behr, Mr Karl Howell\",26,Cherbourg,\"New York, NY\",C-148,,5,male\r\n1st,0,\"Birnbaum, Mr Jakob\",25,Cherbourg,\"San Francisco, CA\",,,-148,male\r\n1st,1,\"Bishop, Mr Dickinson H.\",25,Cherbourg,\"Dowagiac, MI\",B-49,,7,male\r\n1st,1,\"Bishop, Mrs Dickinson H. (Helen Walton)\",19,Cherbourg,\"Dowagiac, MI\",B-49,,7,female\r\n1st,1,\"Bjornstrm-Steffansson, Mr Mauritz Hakan\",28,Southampton,\"Stockholm, Sweden / Washington, DC\",, ,D,male\r\n1st,0,\"Blackwell, Mr Stephen Weart\",45,Southampton,\"Trenton, NJ\",,,-241,male\r\n1st,1,\"Blank, Mr Henry\",39,Cherbourg,\"Glen Ridge, NJ\",A-31,,7,male\r\n1st,1,\"Bonnell, Miss Caroline\",30,Southampton,\"Youngstown, OH\",C-7,,8,female\r\n1st,1,\"Bonnell, Miss Elizabeth\",58,Southampton,\"Birkdale, England Cleveland, Ohio\",C-103,,8,female\r\n1st,0,\"Borebank, Mr John James\",NA,Southampton,\"London / Winnipeg, MB\",D-21/2,,,male\r\n1st,1,\"Bowen, Miss Grace Scott\",45,Cherbourg,\"Cooperstown, NY\",,,4,female\r\n1st,1,\"Bowerman, Miss Elsie Edith\",22,Southampton,\"St Leonards-on-Sea, England Ohio\",,,6,female\r\n1st,1,\"Bradley, Mr George\",NA,Southampton,\"Los Angeles, CA\",,,15,male\r\n1st,0,\"Brady, Mr John Bertram\",41,Southampton,\"Pomeroy, WA\",,,,male\r\n1st,0,\"Brandeis, Mr Emil\",48,Cherbourg,\"Omaha, NE\",,17591 L50 9s 11d,-208,male\r\n1st,0,\"Brewe, Dr Arthur Jackson\",NA,Cherbourg,\"Philadelphia, PA\",,,,male\r\n1st,1,\"Brown, Mrs James Joseph (Margaret Molly\"\" Tobin)\"\"\",44,Cherbourg,\"Denver, CO\",,17610 L27 15s 5d,6,female\r\n1st,1,\"Brown, Mrs John Murray (Caroline Lane Lamson)\",59,Southampton,\"Belmont, MA\",C-101,,D,female\r\n1st,1,\"Bucknell, Mrs William Robert (Emma Eliza Ward)\",60,Cherbourg,\"Philadelphia, PA\",,,8,female\r\n1st,0,\"Butt, Major Archibald Willingham\",45,Southampton,\"Washington, DC\",,,,male\r\n1st,1,\"Calderhead, Mr Edward P.\",NA,Southampton,\"New York, NY\",,,7-May,male\r\n1st,1,\"Candee, Mrs Edward (Helen Churchill Hungerford)\",53,Cherbourg,\"Washington, DC\",,,6,female\r\n1st,1,\"Cardeza, Mrs James Warburton Martinez (Charlotte Wardle Drake)\",58,Cherbourg,\"Germantown, Philadelphia, PA\",B-51/3/5,17755 L512 6s,3,female\r\n1st,1,\"Cardeza, Mr Thomas Drake Martinez\",36,Cherbourg,\"Austria-Hungary / Germantown, Philadelphia, PA\",B-51/3/5,17755 L512 6s,3,male\r\n1st,0,\"Carlsson, Mr Frans Olof\",33,Southampton,\"New York, NY\",,,,male\r\n1st,0,\"Carrau, Mr Francisco M.\",NA,Southampton,\"Montevideo, Uruguay\",,,,male\r\n1st,0,\"Carrau, Mr Jose Pedro\",NA,Southampton,\"Montevideo, Uruguay\",,,,male\r\n1st,1,\"Carter, Mr William Ernest\",36,Southampton,\"Bryn Mawr, PA\",,,C,male\r\n1st,1,\"Carter, Mrs William Ernest (Lucile Polk)\",36,Southampton,\"Bryn Mawr, PA\",,,4,female\r\n1st,1,\"Carter, Miss Lucile Polk\",14,Southampton,\"Bryn Mawr, PA\",,,4,female\r\n1st,1,\"Carter, Master William T. II\",11,Southampton,\"Bryn Mawr, PA\",,,4,male\r\n1st,0,\"Case, Mr Howard Brown\",49,Southampton,\"Ascot, Berkshire / Rochester, NY\",,,,male\r\n1st,1,\"Cassebeer, Mrs Henry Arthur jr (Genevieve Fosdick)\",NA,Cherbourg,\"New York, NY\",,,5,female\r\n1st,0,\"Cavendish, Mr Tyrell William\",36,Southampton,\"Little Onn Hall, Staffs\",,,-172,male\r\n1st,1,\"Cavendish, Mrs Tyrell William Julia Florence Siegel\",NA,Southampton,\"Little Onn Hall, Staffs\",,,6,female\r\n1st,0,\"Chaffee, Mr Herbert Fuller\",46,Southampton,\"Amenia, ND\",,,,male\r\n1st,1,\"Chaffee, Mrs Herbert Fuller (Carrie Constance Toogood)\",47,Southampton,\"Amenia, ND\",,,,female\r\n1st,1,\"Chambers, Mr Norman Campbell\",27,Southampton,\"New York, NY / Ithaca, NY\",,,5,male\r\n1st,1,\"Chambers, Mrs Norman Campbell (Bertha Griggs)\",31,Southampton,\"New York, NY / Ithaca, NY\",,,5,female\r\n1st,1,\"Cherry, Miss Gladys\",NA,Southampton,\"London, England\",,,8,female\r\n1st,1,\"Chevre, Mr Paul\",NA,Cherbourg,\"Paris, France\",,,7,male\r\n1st,1,\"Chibnall (Bowerman), Mrs Edith Martha\",NA,Southampton,\"St Leonards-on-Sea, England Ohio\",,,6,female\r\n1st,0,\"Chisholm, Mr Roderick Robert\",NA,,\"Liverpool, England / Belfast\",,,,male\r\n1st,0,\"Clark, Mr Walter Miller\",27,Cherbourg,\"Los Angeles, CA\",C-87,,,male\r\n1st,1,\"Clark, Mrs Walter Miller (Virginia McDowell)\",26,Cherbourg,\"Los Angeles, CA\",C-87,,4,female\r\n1st,0,\"Clifford, Mr George Quincy\",NA,Southampton,\"Stoughton, MA\",,,,male\r\n1st,0,\"Colley, Mr Edward Pomeroy\",NA,Southampton,\"Victoria, BC\",,,,male\r\n1st,1,\"Compton, Mrs Alexander Taylor (Mary Eliza Ingersoll)\",64,Cherbourg,\"Lakewood, NJ\",,,14,female\r\n1st,0,\"Compton, Mr Alexander Taylor, Jr\",37,Cherbourg,\"Lakewood, NJ\",,,,male\r\n1st,1,\"Compton, Miss Sara Rebecca\",39,Cherbourg,\"Lakewood, NJ\",,,14,female\r\n1st,1,\"Cornell, Mrs Robert Clifford (Malvina Helen Lamson)\",55,Southampton,\"New York, NY\",C-101,,2,female\r\n1st,0,\"Crafton, Mr John Bertram\",NA,Southampton,\"Roachdale, IN\",,,,male\r\n1st,0,\"Crosby, Captain Edward Gifford\",70,Southampton,\"Milwaukee, WI\",,,-269,male\r\n1st,1,\"Crosby, Mrs Edward Gifford (Catherine Elizabeth Halstead)\",69,Southampton,\"Milwaukee, WI\",,,5,female\r\n1st,1,\"Crosby, Miss Harriet R.\",36,Southampton,\"Milwaukee, WI\",,,5,female\r\n1st,0,\"Cumings, Mr John Bradley\",39,Cherbourg,\"New York, NY\",C-85,,,male\r\n1st,1,\"Cumings, Mrs John Bradley (Florence Briggs Thayer)\",38,Cherbourg,\"New York, NY\",C-85,,4,female\r\n1st,1,\"Daly, Mr Peter Denis \",NA,Southampton,\"Lima, Peru\",,,A,male\r\n1st,1,\"Daniel, Mr Robert Williams\",27,Southampton,\"Philadelphia, PA\",,,7,male\r\n1st,0,\"Davidson, Mr Thornton\",31,Southampton,\"Montreal, PQ\",,,,male\r\n1st,1,\"Davidson, Mrs Thornton (Orian Hays)\",27,Southampton,\"Montreal, PQ\",,,3,female\r\n1st,1,\"de Villiers, Madame Berthe\",NA,Cherbourg,\"Belgium  Montreal, PQ\",,,6,female\r\n1st,1,\"Dick, Mr Albert Adrian\",31,Cherbourg,\"Calgary, AB\",,,3,male\r\n1st,1,\"Dick, Mrs Albert Adrian Vera Gillespie\",17,Cherbourg,\"Calgary, AB\",,,3,female\r\n1st,1,\"Dodge, Dr. Washington\",NA,Southampton,\"San Francisco, CA\",,,13,male\r\n1st,1,\"Dodge, Mrs Washington (Ruth Vidaver)\",NA,Southampton,\"San Francisco, CA\",,,7-May,female\r\n1st,1,\"Dodge, Master Washington\",4,Southampton,\"San Francisco, CA\",,,7-May,male\r\n1st,1,\"Douglas, Mrs Frederick Charles (Suzette Baxter)\",27,Cherbourg,\"Montreal, PQ\",,,6,female\r\n1st,0,\"Douglas, Mr Walter Donald\",50,Cherbourg,\"Deephaven, MN / Cedar Rapids, IA\",,,-62,male\r\n1st,1,\"Douglas, Mrs Walter Donald (Mahala Dutton)\",48,Cherbourg,\"Deephaven, MN / Cedar Rapids, IA\",,,2,female\r\n1st,1,\"Duff Gordon, Sir Cosmo Edmund\",49,Cherbourg,London / Paris,,11755 L39 12s,1,male\r\n1st,1,\"Duff Gordon, Lady (Lucille Wallace Sutherland)\",48,Cherbourg,London / Paris,,17485 L56 18s 7d,1,female\r\n1st,0,\"Dulles, Mr William Crothers\",39,Cherbourg,\"Philadelphia, PA\",,,-133,male\r\n1st,1,\"Earnshaw, Mrs Boulton (Olive Potter)\",23,Cherbourg,\"Mt Airy, Philadelphia, PA\",,,7,female\r\n1st,1,\"Eustis, Miss Elizabeth Mussey\",53,Cherbourg,\"Brookline, MA\",,,4,female\r\n1st,0,\"Evans, Miss Edith Corse\",36,Cherbourg,\"New York, NY\",,,,female\r\n1st,1,\"Flegenheim, Mrs Alfred (Antoinette)\",NA,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Flynn, Mr John Irving\",NA,Southampton,\"Brooklyn, NY\",,,7-May,male\r\n1st,0,\"Foreman, Mr Benjamin Laventall\",30,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Fortune, Miss Alice Elizabeth\",24,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,0,\"Fortune, Mr Charles Alexander\",19,Southampton,\"Winnipeg, MB\",,,,male\r\n1st,1,\"Fortune, Miss Ethel Flora\",28,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,1,\"Fortune, Miss Mabel\",23,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,0,\"Fortune, Mr Mark\",64,Southampton,\"Winnipeg, MB\",,,,male\r\n1st,1,\"Fortune, Mrs Mark (Mary McDougald)\",60,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,0,\"Franklin, Mr Thomas Parham\",NA,Southampton,\"Westcliff-on-Sea, Essex\",,,,male\r\n1st,1,\"Frauenthal, Dr Henry William\",49,Cherbourg,\"New York, NY\",,,5,male\r\n1st,1,\"Frauenthal, Mrs Henry William (Clara Heinsheimer)\",NA,Cherbourg,\"New York, NY\",,,5,female\r\n1st,1,\"Frauenthal, Mr Isaac Gerald\",44,Southampton,\"New York, NY\",,,5,male\r\n1st,1,\"Frolicher, Miss Marguerite\",22,Cherbourg,\"Zurich, Switzerland\",,,5,female\r\n1st,1,\"Frolicher-Stehli, Mr Maxmillian\",60,Cherbourg,\"Zurich, Switzerland\",,,5,male\r\n1st,1,\"Frolicher-Stehli, Mrs Maxmillian (Margaretha Emerentia Stehli)\",48,Cherbourg,\"Zurich, Switzerland\",,,5,female\r\n1st,0,\"Futrelle, Mr Jacques\",37,Southampton,\"Scituate, MA\",,,,male\r\n1st,1,\"Futrelle, Mrs Jacques (May Peel)\",35,Southampton,\"Scituate, MA\",,,9,female\r\n1st,0,\"Gee, Mr Arthur H.\",47,Southampton,\"St Anne's-on-Sea, Lancashire\",,,-275,male\r\n1st,1,\"Gibson, Miss Dorothy\",22,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Gibson, Mrs Leonard (Pauline C. Boeson)\",45,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Goldenberg, Mr Samuel L.\",49,Cherbourg,\"Paris, France / New York, NY\",,,5,male\r\n1st,1,\"Goldenberg, Mrs Samuel L. (Edwiga Grabowsko)\",NA,Cherbourg,\"Paris, France / New York, NY\",,,5,female\r\n1st,0,\"Goldschmidt, Mr George B.\",71,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Gracie, Colonel Archibald IV\",54,Southampton,\"Washington, DC\",C-51,113780 L28 10s,B,male\r\n1st,0,\"Graham, Mr George Edward\",38,Southampton,\"Winnipeg, MB\",,,-147,male\r\n1st,1,\"Graham, Miss Margaret Edith\",19,Southampton,\"Greenwich, CT\",C-125,17582 L153 9s 3d,3,female\r\n1st,1,\"Graham, Mrs William Thompson (Edith Junkins)\",58,Southampton,\"Greenwich, CT\",C-91,17582 L153 9s 3d,3,female\r\n1st,1,\"Greenfield, Mrs Leo David (Blanche Strouse)\",45,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Greenfield, Mr William Bertram\",23,Cherbourg,\"New York, NY\",,,7,male\r\n1st,0,\"Guggenheim, Mr Benjamin\",46,Cherbourg,\"New York, NY\",B-82/4,17593 L56 18s 7d,,male\r\n1st,1,\"Harder, Mr George Achilles\",25,Cherbourg,\"Brooklyn, NY\",,,5,male\r\n1st,1,\"Harder, Mrs George Achilles (Dorothy Annan)\",21,Cherbourg,\"Brooklyn, NY\",,,5,female\r\n1st,1,\"Harper, Mr Henry Sleeper\",48,Cherbourg,\"New York, NY\",,,3,male\r\n1st,1,\"Harper, Mrs Henry Sleeper (Myna Haxtun)\",49,Cherbourg,\"New York, NY\",,,3,female\r\n1st,0,\"Harris, Mr Henry Birkhardt\",45,Southampton,\"New York, NY\",C-83,36973 L83 9s 6d,,male\r\n1st,1,\"Harris, Mrs Henry Birkhardt (Irene Wallach)\",36,Southampton,\"New York, NY\",C-83,36973 L83 9s 6d,D,female\r\n1st,1,\"Hawksford, Mr Walter James\",NA,Southampton,\"Kingston, Surrey\",,,3,male\r\n1st,0,\"Hays, Mr Charles Melville\",55,Southampton,\"Montreal, PQ\",,,-307,male\r\n1st,1,\"Hays, Mrs Charles Melville (Clara Jennings Gregg)\",52,Southampton,\"Montreal, PQ\",,,3,female\r\n1st,1,\"Hays, Miss Margaret Bechstein\",24,Southampton,\"New York, NY\",,,7,female\r\n1st,0,\"Head, Mr Christopher\",NA,Southampton,London / Middlesex,,,,male\r\n1st,0,\"Hilliard, Mr Herbert Henry\",NA,Southampton,\"Brighton, MA\",,,,male\r\n1st,0,\"Hipkins, Mr William Edward\",NA,Southampton,London / Birmingham,,,,male\r\n1st,1,\"Hippach, Miss Jean Gertrude\",16,Cherbourg,\"Chicago, IL\",B-18,111361 L57 19s 7d,4,female\r\n1st,1,\"Hippach, Mrs Louis Albert (Ida Sophia Fischer)\",44,Cherbourg,\"Chicago, IL\",B-18,111361 L57 19s 7d,4,female\r\n1st,1,\"Hogeboom, Mrs John C. (Anna Andrews)\",51,Southampton,\"Hudson, NY\",D-?,13502 L77,10,female\r\n1st,0,\"Holverson, Mr Alexander Oskar\",42,Southampton,\"New York, NY\",,,-38,male\r\n1st,1,\"Holverson, Mrs Alexander Oskar (Mary Aline Towner)\",35,Southampton,\"New York, NY\",,,,female\r\n1st,1,\"Homer, Mr Harry\",35,Cherbourg,\"Indianapolis, IN\",,,15,male\r\n1st,1,\"Hoyt, Mr Frederick Maxfield\",38,Southampton,\"New York, NY /  Stamford CT\",C-93,,D,male\r\n1st,1,\"Hoyt, Mrs Frederick Maxfield (Jane Anne Forby)\",35,Southampton,\"New York, NY /  Stamford CT\",C-93,,D,female\r\n1st,0,\"Hoyt, Mr William F.\",NA,Cherbourg,\"New York, NY\",,,14,male\r\n1st,0,\"Isham, Miss Anne Elizabeth\",50,Cherbourg,\"Paris, France New York, NY\",C-49,,,female\r\n1st,1,\"Ismay, Mr Joseph Bruce\",49,Southampton,Liverpool,B-52/4/6,112058 Complimentary,C,male\r\n1st,0,\"Jones, Mr Charles Cresson\",46,Southampton,\"Bennington, VT\",,,-80,male\r\n1st,0,\"Julian, Mr Henry Forbes\",NA,Southampton,London,,,,male\r\n1st,0,\"Kent, Mr Edward Austin\",58,Cherbourg,\"Buffalo, NY\",,,-258,male\r\n1st,0,\"Kenyon, Mr Frederick R.\",41,Southampton,\"Southington / Noank, CT\",,,,male\r\n1st,1,\"Kenyon, Mrs Frederick R. (Marion)\",NA,Southampton,\"Southington / Noank, CT\",,,8,female\r\n1st,1,\"Kimball, Mr Edwin Nelson Jr.\",42,Southampton,\"Boston, MA\",,,5,male\r\n1st,1,\"Kimball, Mrs Edwin Nelson Jr. (Gertrude Parsons)\",40,Southampton,\"Boston, MA\",,,5,female\r\n1st,0,\"Klaber, Mr Herman\",NA,Southampton,\"Portland, OR\",,,,male\r\n1st,1,\"Leader, Dr Alice Farnham\",NA,Southampton,\"New York, NY\",,,8,female\r\n1st,0,\"Lewy, Mr Ervin G.\",NA,Cherbourg,\"Chicago, IL\",,,,male\r\n1st,0,\"Lindeberg-Lind, Mr Erik Gustaf\",42,Southampton,\"Stockholm, Sweden\",,,,male\r\n1st,1,\"Lindstrom, Mrs Carl Johan (Sigrid Posse)\",55,Cherbourg,\"Stockholm, Sweden\",,,6,female\r\n1st,1,\"Lines, Mrs Ernest H. (Elizabeth Lindsey James)\",50,Cherbourg,\"Paris, France\",,,9,female\r\n1st,1,\"Lines, Miss Mary Conover\",16,Cherbourg,\"Paris, France\",,,9,female\r\n1st,0,\"Lingrey, Mr Edward\",NA,,,,,,male\r\n1st,0,\"Long, Mr Milton Clyde\",29,Southampton,\"Springfield, MA\",,,-126,male\r\n1st,1,\"Longley, Miss Gretchen Fiske\",21,Southampton,\"Hudson, NY\",D-?,13502 L77,10,female\r\n1st,0,\"Loring, Mr Joseph Holland\",30,Southampton,\"London / New York, NY\",,,,male\r\n1st,1,\"Madill, Miss Georgette Alexandra\",15,Southampton,\"St Louis, MO\",B-5,24160 L221,2,female\r\n1st,0,\"Maguire, Mr John Edward\",30,Southampton,\"Brockton, MA\",,,,male\r\n1st,1,\"Marechal, Mr Pierre\",NA,Cherbourg,\"Paris, France\",,,7,male\r\n1st,0,\"Marvin, Mr Daniel Warner\",NA,Southampton,\"New York, NY\",,,,male\r\n1st,1,\"Marvin, Mrs Daniel Warner (Mary Graham Carmichael Farquarson)\",NA,Southampton,\"New York, NY\",,,,female\r\n1st,0,\"McCaffry, Mr Thomas Francis\",46,Cherbourg,\"Vancouver, BC\",,,-292,male\r\n1st,0,\"McCarthy, Mr Timothy J.\",54,Southampton,\"Dorchester, MA\",,,-175,male\r\n1st,1,\"McGough, Mr James R.\",36,Southampton,\"Philadelphia, PA\",,,7,male\r\n1st,0,\"Meyer, Mr Edgar Joseph\",28,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Meyer, Mrs Edgar Joseph (Leila Saks)\",NA,Cherbourg,\"New York, NY\",,,6,female\r\n1st,0,\"Millet, Mr Francis Davis\",65,Southampton,\"East Bridgewater, MA\",,,-249,male\r\n1st,1,\"Minahan, Miss Daisy E.\",33,Queenstown,\"Green Bay, WI\",,,14,female\r\n1st,0,\"Minahan, Dr William Edward\",44,Queenstown,\"Fond du Lac, WI\",,,-230,male\r\n1st,1,\"Minahan, Mrs William Edward (Lillian E. Thorpe)\",37,Queenstown,\"Fond du Lac, WI\",,,14,female\r\n1st,1,\"Mock, Mr Philip E.\",NA,Cherbourg,\"New York, NY\",,,11,male\r\n1st,0,\"Molson, Mr Harry Markland\",55,Southampton,\"Montreal, PQ\",,,,male\r\n1st,0,\"Moore, Mr Clarence Bloomfield\",47,Southampton,\"Washington, DC\",,,,male\r\n1st,0,\"Natsch, Mr Charles H.\",36,Cherbourg,\"Brooklyn, NY\",,,,male\r\n1st,0,\"Newell, Mr Arthur Webster\",58,Cherbourg,\"Lexington, MA\",,,-122,male\r\n1st,1,\"Newell, Miss Madeleine\",31,Cherbourg,\"Lexington, MA\",,,6,female\r\n1st,1,\"Newell, Miss Marjorie\",23,Cherbourg,\"Lexington, MA\",,,6,female\r\n1st,1,\"Newsom, Miss Helen Monypeny\",19,Southampton,\"New York, NY\",,,5,female\r\n1st,0,\"Nicholson, Mr Arthur Ernest\",64,Southampton,\"Isle of Wight, England\",,,-263,male\r\n1st,1,\"Omont, Mr A. Fernand\",NA,Cherbourg,\"Paris, France\",,,7,male\r\n1st,0,\"Ostby, Mr Engelhart Cornelius\",64,Cherbourg,\"Providence, RI\",,,-234,male\r\n1st,1,\"Ostby, Miss Helen Raghnild\",22,Cherbourg,\"Providence, RI\",,,5,female\r\n1st,0,\"Ovies y Rodriguez, Mr Servando\",28,,\"?Havana, Cuba\",,,-189,male\r\n1st,0,\"Parr, Mr William Henry Marsh\",NA,,Belfast,,,,male\r\n1st,0,\"Partner, Mr Austin\",NA,Southampton,\"Surbiton Hill, Surrey\",,,-166,male\r\n1st,0,\"Payne, Mr Vivian Ponsonby\",22,Southampton,\"Montreal, PQ\",,,,male\r\n1st,0,\"Pears, Mr Thomas\",NA,Southampton,\"Isleworth, England\",,,,male\r\n1st,1,\"Pears, Mrs Thomas (Edith)\",NA,Southampton,\"Isleworth, England\",,,8,female\r\n1st,0,\"Penasco, Mr Victor de Satode\",18,Cherbourg,\"Madrid, Spain\",,,,male\r\n1st,1,\"Penasco, Mrs Victor de Satode (Josefa de Soto)\",17,Cherbourg,\"Madrid, Spain\",,,8,female\r\n1st,1,\"Peuchen, Major Arthur Godfrey\",52,Southampton,\"Toronto, ON\",C-104,,6,male\r\n1st,0,\"Porter, Mr Walter Chamberlain\",46,Southampton,\"Worcester, MA\",,,-207,male\r\n1st,1,\"Potter, Mrs Thomas, Jr. (Lily Alexenia Wilson)\",56,Cherbourg,\"Mt Airy, Philadelphia, PA\",,,7,female\r\n1st,0,\"Reuchlin, Jonkheer John George\",NA,Southampton,\"Rotterdam, Netherlands\",,,,male\r\n1st,1,\"Rheims, Mr George Lucien\",NA,Cherbourg,\"Paris /  New York, NY\",,17604 L39 12s,A,male\r\n1st,1,\"Robert, Mrs Edward Scott (Elisabeth Walton McMillan)\",43,Southampton,\"St Louis, MO\",B-3,24160 L221,2,female\r\n1st,0,\"Roebling, Mr Washington Augustus 2nd\",31,Southampton,\"Trenton, NJ\",,,,male\r\n1st,1,\"Romaine, Mr Charles Hallace\",NA,Southampton,\"New York, NY\",,,15,male\r\n1st,0,\"Rood, Mr Hugh R.\",NA,Southampton,\"Seattle, WA\",,,,male\r\n1st,1,\"Rosenbaum (Russell), Miss Edith Louise\",33,Cherbourg,\"Paris, France\",A-11,17613 L27 14s 5d,11,female\r\n1st,0,\"Ross, Mr John Hugo\",NA,Cherbourg,\"Winnipeg, MB\",,,,male\r\n1st,1,\"Rothes, the Countess of (Noel Lucy Martha Dyer-Edwardes)\",27,Southampton,\"London  Vancouver, BC\",,,8,female\r\n1st,0,\"Rothschild, Mr Martin\",55,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Rothschild, Mrs Martin (Elizabeth L. Barrett)\",54,Cherbourg,\"New York, NY\",,,6,female\r\n1st,0,\"Rowe, Mr Alfred G.\",NA,Southampton,London,,,-109,male\r\n1st,0,\"Ryerson, Mr Arthur Larned\",61,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,,male\r\n1st,1,\"Ryerson, Mrs Arthur Larned (Emily Maria Borie)\",48,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,female\r\n1st,1,\"Ryerson, Miss Emily Borie\",18,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,female\r\n1st,1,\"Ryerson, Master John Borie\",13,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,male\r\n1st,1,\"Ryerson, Miss Susan (Suzette) Parker\",21,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,female\r\n1st,1,\"Saalfeld, Mr Adolphe\",NA,Southampton,\"Manchester, England\",,,3,male\r\n1st,1,\"Salomon, Mr Abraham L.\",NA,Southampton,\"New York, NY\",,,1,male\r\n1st,1,\"Schabert, Mrs Paul (Emma Mock)\",NA,Cherbourg,\"New York, NY\",,,11,female\r\n1st,1,\"Seward, Mr Frederic Kimber\",34,Southampton,\"New York, NY\",,,7,male\r\n1st,1,\"Shutes, Miss Elizabeth W.\",40,Southampton,\"New York, NY / Greenwich CT\",C-125,17582 L153 9s 3d,3,female\r\n1st,1,\"Silverthorne, Mr Spencer Victor\",36,Southampton,\"St Louis, MO\",,,5,male\r\n1st,0,\"Silvey, Mr William Baird\",50,,\"Duluth, MN\",,,,male\r\n1st,1,\"Silvey, Mrs William Baird (Alice Munger)\",39,,\"Duluth, MN\",,,,female\r\n1st,1,\"Simonius-Blumer, Col Alfons\",56,,\"Basel, Switzerland\",,,3,male\r\n1st,1,\"Sloper, Mr William Thompson\",28,Southampton,\"New Britain, CT\",,,7,male\r\n1st,0,\"Smart, Mr John Montgomery\",56,Southampton,\"New York, NY\",,,,male\r\n1st,0,\"Smith, Mr James Clinch\",56,Cherbourg,\"St James, Long Island, NY\",,,,male\r\n1st,0,\"Smith, Mr Lucien Philip\",24,Southampton,\"Huntington, WV\",,,,male\r\n1st,1,\"Smith, Mrs Lucien Philip (Mary Eloise Hughes\",18,Southampton,\"Huntington, WV\",,,6,female\r\n1st,0,\"Smith, Mr Richard William\",NA,Southampton,\"Streatham, Surrey\",,,,male\r\n1st,1,\"Snyder, Mr John Pillsbury\",24,Southampton,\"Minneapolis, MN\",,,7,male\r\n1st,1,\"Snyder, Mrs John Pillsbury (Nelle Stevenson)\",23,Southampton,\"Minneapolis, MN\",,,7,female\r\n1st,1,\"Spedden, Mr Frederick Oakley\",45,Cherbourg,\"Tuxedo Park, NY\",,,3,male\r\n1st,1,\"Spedden, Mrs Frederick Oakley (Margaretta Corning Stone)\",40,Cherbourg,\"Tuxedo Park, NY\",,,3,female\r\n1st,1,\"Spedden, Master Robert Douglas\",6,Cherbourg,\"Tuxedo Park, NY\",,,3,male\r\n1st,0,\"Spencer, Mr William Augustus\",57,Cherbourg,\"Paris, France\",,,,male\r\n1st,1,\"Spencer, Mrs William Augustus (Marie Eugenie)\",NA,Cherbourg,\"Paris, France\",,,6,female\r\n1st,1,\"Staehlin, Dr Max\",32,Cherbourg,\"Basel, Switzerland\",,,3,male\r\n1st,0,\"Stead, Mr William Thomas\",62,Southampton,\"Wimbledon Park, London / Hayling Island, Hants\",C-89,,,male\r\n1st,1,\"Stengel, Mr Charles Emil Henry\",54,Cherbourg,\"Newark, NJ\",,,1,male\r\n1st,1,\"Stengel, Mrs Charles Emil Henry (Annie May Morris)\",43,Cherbourg,\"Newark, NJ\",,,5,female\r\n1st,1,\"Stephenson, Mrs Walter Bertram (Martha Eustis)\",52,,\"Haverford, PA\",,,4,female\r\n1st,0,\"Stewart, Mr Albert A.\",NA,Cherbourg,\"Gallipolis, Ohio / ? Paris / New York\",,,,male\r\n1st,1,\"Stone, Mrs George Nelson (Martha E.)\",62,,\"Cincinatti, OH\",,,6,female\r\n1st,0,\"Straus, Mr Isidor\",67,Southampton,\"New York, NY\",,17483 L221 15s 7d,-96,male\r\n1st,0,\"Straus, Mrs Isidor (Ida Blun)\",63,Southampton,\"New York, NY\",,17483 L221 15s 7d,,female\r\n1st,0,\"Sutton, Mr Frederick\",61,Southampton,\"Haddenfield, NJ\",,,-46,male\r\n1st,1,\"Swift, Mrs Frederick Joel (Margaret Welles Barron)\",46,Southampton,\"Brooklyn, NY\",,,8,female\r\n1st,0,\"Taussig, Mr Emil\",52,Southampton,\"New York, NY\",,,,male\r\n1st,1,\"Taussig, Mrs Emil (Tillie Mandelbaum)\",39,Southampton,\"New York, NY\",,,8,female\r\n1st,1,\"Taussig, Miss Ruth\",18,Southampton,\"New York, NY\",,,8,female\r\n1st,1,\"Taylor, Mr Elmer Zebley\",48,Southampton,\"London /  East Orange, NJ\",C-126,,5,male\r\n1st,1,\"Taylor, Mrs Elmer Zebley (Juliet Cummins Wright)\",NA,Southampton,\"London /  East Orange, NJ\",C-126,,5,female\r\n1st,0,\"Thayer, Mr John Borland\",49,Cherbourg,\"Haverford, PA\",,,,male\r\n1st,1,\"Thayer, Mrs John Borland (Marian Longstreth Morris)\",39,Cherbourg,\"Haverford, PA\",,,4,female\r\n1st,1,\"Thayer, Mr John Borland, jr.\",17,Cherbourg,\"Haverford, PA\",,,B,male\r\n1st,0,\"Thorne, Mr George (alias of: Mr George Rosenshine)\",46,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Thorne, Mrs Gertrude Maybelle\",NA,Cherbourg,\"New York, NY\",,,D,female\r\n1st,1,\"Tucker, Mr Gilbert Milligan, jr\",31,Cherbourg,\"Albany, NY\",,,7,male\r\n1st,0,\"Uruchurtu, Mr Manuel E.\",NA,Cherbourg,\"Mexico City, Mexico\",,,,male\r\n1st,0,\"Van Derhoef, Mr Wyckoff\",61,Southampton,\"Brooklyn, NY\",,,-245,male\r\n1st,0,\"Walker, Mr William Anderson\",47,Southampton,\"East Orange, NJ\",,,,male\r\n1st,0,\"Warren, Mr Frank Manley\",64,Cherbourg,\"Portland, OR\",,,,male\r\n1st,1,\"Warren, Mrs Frank Manley (Anna S. Atkinson)\",60,Cherbourg,\"Portland, OR\",,,5,female\r\n1st,0,\"Weir, Col John\",60,Southampton,\"England Salt Lake City, Utah\",,,,male\r\n1st,1,\"White, Mrs J. Stuart (Ella Holmes)\",55,Cherbourg,\"New York, NY / Briarcliff Manor NY\",,,8,female\r\n1st,0,\"White, Mr Percival Wayland\",54,Southampton,\"Brunswick, ME\",,,,male\r\n1st,0,\"White, Mr Richard Frasar\",21,Southampton,\"Brunswick, ME\",,,-169,male\r\n1st,0,\"Wick, Mr George Dennick\",57,Southampton,\"Youngstown, OH\",,,,male\r\n1st,1,\"Wick, Mrs George Dennick (Martha Hitchcock)\",45,Southampton,\"Youngstown, OH\",,,8,female\r\n1st,1,\"Wick, Miss Mary Natalie\",31,Southampton,\"Youngstown, OH\",C-7,,8,female\r\n1st,0,\"Widener, Mr George Dunton\",50,Cherbourg,\"Elkins Park, PA\",,,,male\r\n1st,1,\"Widener, Mrs George Dunton (Eleanor Elkins)\",50,Cherbourg,\"Elkins Park, PA\",,,4,female\r\n1st,0,\"Widener, Mr Harry Elkins\",27,Cherbourg,\"Elkins Park, PA\",,,,male\r\n1st,1,\"Willard, Miss Constance\",20,Southampton,\"Duluth, MN\",,,,female\r\n1st,0,\"Williams, Mr Charles Duane\",51,Cherbourg,\"Geneva, Switzerland / Radnor, PA\",,,,male\r\n1st,0,\"Williams, Mr Fletcher Lambert\",NA,Southampton,\"London, England\",,,,male\r\n1st,1,\"Williams, Mr Richard Norris II\",21,Cherbourg,\"Geneva, Switzerland / Radnor, PA\",,,A,male\r\n1st,1,\"Woolner, Mr Hugh\",NA,Southampton,\"London, England\",,,D,male\r\n1st,0,\"Wright, Mr George\",NA,Southampton,\"Halifax, NS\",,,,male\r\n1st,1,\"Young, Miss Marie Grice\",36,Cherbourg,\"New York, NY / Washington, DC\",,,8,female\r\n1st,1,\"Barber, Ms \",NA,Southampton,,,,,female\r\n1st,1,\"Bazzani, Ms Albina\",NA,Cherbourg,,,,,female\r\n1st,1,\"Bidois, Miss Rosalie\",NA,Cherbourg,,,17754,,female\r\n1st,1,\"Bird, Ms Ellen\",NA,Southampton,,C-97,17483,,female\r\n1st,1,\"Bissetti, Ms Amelia\",NA,Cherbourg,,C-99,,,female\r\n1st,1,\"Burns, Ms Elizabeth Margaret\",NA,Cherbourg,,,,,female\r\n1st,1,\"Chaudanson, Ms \tVictorine\",NA,Cherbourg,,,17608,,female\r\n1st,1,\"Cleaver, Ms Alice\",NA,Southampton,,C22,,11,female\r\n1st,1,\"Daniels, Ms Sarah\",NA,Southampton,,C-22,,8,female\r\n1st,1,\"Endres, Miss Caroline Louise\",NA,Cherbourg,\"New York, NY\",C-45,17754 L224 10s 6d,4,female\r\n1st,0,\"Farthing, Mr John\",NA,Southampton,,C-55 (?C-95),17483,,male\r\n1st,0,\"Fleming, Ms Margaret\",NA,Cherbourg,,,,4,female\r\n1st,1,\"Francatelli, Ms Laura Mabel\",NA,Cherbourg,,,17485,,female\r\n1st,0,\"Fry, Mr Richard\",NA,Southampton,,B-102,112058,,male\r\n1st,1,\"Geiger, Miss Emily \",NA,Cherbourg,,,,,female\r\n1st,0,\"Giglio, Mr Victor\",NA,Cherbourg,,B-86,17593,,male\r\n1st,0,\"Harrington, Mr Charles\",NA,Southampton,,,,,male\r\n1st,0,\"Harrison, Mr William \tHenry\",40,Southampton,,,112059,-110,male\r\n1st,0,\"Hassah, Mr Hamad\",NA,Cherbourg,,,,,male\r\n1st,1,\"Icabad (Icabod), Ms\",NA,,,,,,female\r\n1st,0,\"Keeping, Mr Edwin\",32,Cherbourg,,,,-45,male\r\n1st,1,\"Kenchen, Ms Amelia\",NA,Southampton,,,,2,female\r\n1st,1,\"LeRoy, Miss Berthe\",NA,Cherbourg,,,,2,female\r\n1st,0,\"Lesneur, Mr Gustave\",NA,Cherbourg,,B-?,,,male\r\n1st,1,\"Maloney, Ms\",NA,Southampton,,,,8,female\r\n1st,0,\"Oliva, Mlle\",NA,Cherbourg,,,,,female\r\n1st,1,\"Pericault, Ms\",NA,Southampton,,,,,female\r\n1st,0,\"Ringhini, Mr Sante\",33,Cherbourg,,,,-232,male\r\n1st,0,\"Robbins, Mr Victor\",NA,Cherbourg,,C-62,17754,,male\r\n1st,1,\"Segesser, Mlle. Emma\",NA,Cherbourg,,,,,female\r\n1st,0,\"Seredeca, Ms\",NA,Southampton,,,,,female\r\n1st,0,\"Ward, Ms Anna\",NA,Cherbourg,,,,,female\r\n1st,1,\"Wilson, Ms Helen\",NA,Cherbourg,,,,,female\r\n2nd,0,\"Abelson, Mr Samuel\",30,Cherbourg,\"Russia New York, NY\",,,,male\r\n2nd,1,\"Abelson, Mrs Samuel (Anna)\",28,Cherbourg,\"Russia New York, NY\",,,12,female\r\n2nd,0,\"Andrew, Mr Edgar Samuel\",18,Southampton,\"Buenos Aires, Argentina / New Jersey, NJ\",,,,male\r\n2nd,0,\"Andrew, Mr Frank\",NA,Southampton,\"Cornwall, England Houghton, MI\",,,,male\r\n2nd,0,\"Angle, Mr William A.\",34,Southampton,\"Warwick, England\",,,,male\r\n2nd,1,\"Angle, Mrs William A. (Florence)\",32,Southampton,\"Warwick, England\",,,,female\r\n2nd,0,\"Ashby, Mr John\",57,Southampton,\"West Hoboken, NJ\",,,,male\r\n2nd,0,\"Bailey, Mr Percy Andrew\",18,Southampton,\"Penzance, Cornwall / Akron, OH\",,,,male\r\n2nd,0,\"Baimbrigge, Mr Charles R.\",23,Southampton,Guernsey,,,,male\r\n2nd,1,\"Balls, Mrs Ada E. Hall\",36,Southampton,\"Bristol, Avon / Jacksonville, FL\",,,,female\r\n2nd,0,\"Banfield, Mr Frederick J.\",28,Southampton,\"Plymouth, Dorset / Houghton, MI\",,,,male\r\n2nd,0,\"Bateman, Rev Robert James\",51,Southampton,\"Jacksonville, FL\",,,-174,male\r\n2nd,1,\"Beane, Mr Edward\",32,Southampton,\"Norwich / New York, NY\",,,,male\r\n2nd,1,\"Beane, Mrs Edward (Ethel Clarke)\",19,Southampton,\"Norwich / New York, NY\",,,,female\r\n2nd,0,\"Beauchamp, Mr Henry James\",28,Southampton,England,,,,male\r\n2nd,1,\"Becker, Mrs Allen Oliver (Nellie E. Baumgardner)\",36,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,11,female\r\n2nd,1,\"Becker, Miss Marion Louise\",4,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,11,female\r\n2nd,1,\"Becker, Master Richard F.\",1,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,11,male\r\n2nd,1,\"Becker, Miss Ruth Elizabeth\",12,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,13,female\r\n2nd,1,\"Beesley, Mr Lawrence\",34,Southampton,London,D-56,248698 L13,13,male\r\n2nd,1,\"Bentham, Miss Lilian W.\",19,Southampton,\"Rochester, NY\",,,12,female\r\n2nd,0,\"Berriman, Mr William S.\",23,Southampton,\"St Ives, Cornwall / Calumet, MI\",,,,male\r\n2nd,0,\"Botsford, Mr William Hull\",26,Southampton,\"Elmira, NY / Orange, NJ\",,,,male\r\n2nd,0,\"Bowenur, Mr Solomon\",NA,Southampton,London,,,,male\r\n2nd,0,\"Bracken, Mr James H.\",27,Southampton,\"Lake Arthur, Chavez County, NM\",,,,male\r\n2nd,1,\"Brown, Miss Edith E.\",15,Southampton,\"Cape Town, South Africa / Seattle, WA\",,,14,female\r\n2nd,0,\"Brown, Mr Thomas William Solomon\",45,Southampton,\"Cape Town, South Africa / Seattle, WA\",,,,male\r\n2nd,1,\"Brown, Mrs Thomas William Solomon (Elizabeth C.)\",40,Southampton,\"Cape Town, South Africa / Seattle, WA\",,,14,female\r\n2nd,1,\"Bryhl, Miss Dagmar\",20,Southampton,\"Skara, Sweden / Rockford, IL\",,,12,female\r\n2nd,0,\"Bryhl, Mr Kurt Arnold Gottfrid\",25,Southampton,\"Skara, Sweden / Rockford, IL\",,,,male\r\n2nd,1,\"Buss, Miss Kate\",36,Southampton,\"Sittingbourne, England / San Diego, CA\",E-?,27849,9,female\r\n2nd,0,\"Butler, Mr Reginald Fenton\",25,Southampton,\"Southsea, Hants\",,,-97,male\r\n2nd,0,\"Byles, Rev. Thomas Roussel D.\",NA,Southampton,London,,,,male\r\n2nd,1,\"Bystrom, Mrs Carolina\",42,Southampton,\"New York, NY\",,,,female\r\n2nd,1,\"Caldwell, Mr Albert Francis\",26,Southampton,\"Bangkok, Thailand / Roseville, IL\",,,13,male\r\n2nd,1,\"Caldwell, Mrs Albert Francis (Sylvia Mae Harbaugh)\",26,Southampton,\"Bangkok, Thailand / Roseville, IL\",,,13,female\r\n2nd,1,\"Caldwell, Master Alden Gates\",0.8333,Southampton,\"Bangkok, Thailand / Roseville, IL\",,,13,male\r\n2nd,1,\"Cameron, Miss Clear\",31,Southampton,\"Mamaroneck, NY\",,,,female\r\n2nd,0,\"Campbell, Mr William\",NA,,Belfast,,,,male\r\n2nd,0,\"Carbines, Mr William\",19,Southampton,\"St Ives, Cornwall / Calumet, MI\",,,-18,male\r\n2nd,0,\"Carter, Rev Ernest Courtenay\",54,Southampton,London,,,,male\r\n2nd,0,\"Carter, Mrs Ernest Courtenay (Lillian Hughes)\",44,Southampton,London,,,,female\r\n2nd,0,\"Chapman, Mr Charles Henry\",52,Southampton,\"Bronx, NY\",,,-130,male\r\n2nd,0,\"Chapman, Mr John Henry\",30,Southampton,\"Cornwall / Spokane, WA\",,,-17,male\r\n2nd,0,\"Chapman, Mrs John Henry (Elizabeth Lawry)\",30,Southampton,\"Cornwall / Spokane, WA\",,,,female\r\n2nd,1,\"Christy, Mrs Alice Frances\",NA,Southampton,London,,,,female\r\n2nd,1,\"Christy, Miss Julie\",NA,Southampton,London,,,,female\r\n2nd,0,\"Clarke, Mr Charles V.\",29,Southampton,\"England / San Francisco, CA\",,,,male\r\n2nd,1,\"Clarke, Mrs Charles V. (Ada Maria)\",NA,Southampton,\"England / San Francisco, CA\",,,14,female\r\n2nd,0,\"Coleridge, Mr Reginald Charles\",29,Southampton,\"Hartford, Huntingdonshire\",,,,male\r\n2nd,0,\"Collander, Mr Erik\",27,Southampton,\"Helsinki, Finland Ashtabula, Ohio\",,,,male\r\n2nd,1,\"Collett, Mr Sidney C. Stuart\",24,Southampton,\"London / Fort Byron, NY\",,,9,male\r\n2nd,0,\"Collyer, Mr Harvey\",35,Southampton,\"Bishopstoke, Hants / Fayette Valley, ID\",,,,male\r\n2nd,1,\"Collyer, Mrs Harvey (Charlotte Tate)\",31,Southampton,\"Bishopstoke, Hants / Fayette Valley, ID\",,,14,female\r\n2nd,1,\"Collyer, Miss Marjorie\",8,Southampton,\"Bishopstoke, Hants / Fayette Valley, ID\",,,14,female\r\n2nd,0,\"Cook, Mrs Selena Rogers\",22,Southampton,Pennsylvania,F-33,,14,female\r\n2nd,0,\"Corbett, Mrs Walter H. (Irene Colvin)\",30,Southampton,\"Provo, UT\",,,,female\r\n2nd,0,\"Corey, Mrs Percy C. (Mary Phyllis Elizabeth Miller)\",NA,Southampton,\"Upper Burma, India Pittsburgh, PA\",,,,female\r\n2nd,0,\"Cotterill, Mr Harry\",20,Southampton,\"Penzance, Cornwall / Akron, OH\",,,,male\r\n2nd,0,\"Cunningham, Mr Alfred Fleming\",NA,,Belfast,,,,male\r\n2nd,0,\"Davies, Mr Charles Henry\",21,Southampton,\"Lyndhurst, England\",,,,male\r\n2nd,1,\"Davis, Mrs Agnes\",49,Southampton,\"St Ives, Cornwall / Hancock, MI\",,,,female\r\n2nd,1,\"Davis, Master John Morgan\",8,Southampton,\"St Ives, Cornwall / Hancock, MI\",,,,male\r\n2nd,1,\"Davis, Miss Mary\",28,Southampton,\"London / Staten Island, NY\",,,13,female\r\n2nd,0,\"Deacon, Mr Percy\",18,Southampton,,,,,male\r\n2nd,0,\"de Brito, Mr Jose Joaquim\",NA,,\"Portugal / Sau Paulo, Brazil\",,,,male\r\n2nd,0,\"del Carlo, Mr Sebastiano\",28,Cherbourg,\"Lucca, Italy / California\",,,-295,male\r\n2nd,1,\"del Carlo, Mrs Sebastiano (Argenia Genovese)\",22,Cherbourg,\"Lucca, Italy / California\",,,,female\r\n2nd,0,\"Denbury, Mr Herbert\",25,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Dibden, Mr William\",18,Southampton,\"New Forest, England\",,,,male\r\n2nd,1,\"Doling, Mrs Ada\",32,Southampton,Southampton,,,,female\r\n2nd,1,\"Doling, Miss Elsie\",18,Southampton,Southampton,,,,female\r\n2nd,0,\"Downton (?Douton), Mr William James\",NA,Southampton,\"Holley, NY\",,,,male\r\n2nd,0,\"Drew, Mr James Vivian\",42,Southampton,\"Greenport, NY\",,28220 L32 10s,,male\r\n2nd,1,\"Drew, Mrs James Vivian (Lulu Thorne Christian)\",34,Southampton,\"Greenport, NY\",,28220 L32 10s,,female\r\n2nd,1,\"Drew, Master Marshall Brines\",8,Southampton,\"Greenport, NY\",,28220 L32 10s,,male\r\n2nd,1,\"Duran y More, Miss Asuncion\",NA,Cherbourg,\"Barcelona, Spain / Havana, Cuba\",,,12,female\r\n2nd,1,\"Duran y More, Miss Florentina\",NA,Cherbourg,\"Barcelona, Spain / Havana, Cuba\",,,12,female\r\n2nd,0,\"Eitemiller, Mr George Floyd\",23,Southampton,\"England / Detroit, MI\",,,,male\r\n2nd,0,\"Enander, Mr Ingvar\",21,Southampton,\"Goteborg, Sweden / Rockford, IL\",,,,male\r\n2nd,0,\"Fahlstrom, Mr Arne Jonas\",19,Southampton,\"Oslo, Norway Bayonne, NJ\",,,,male\r\n2nd,0,\"Faunthorpe, Mr Harry\",NA,Southampton,\"England / Philadelphia, PA\",,,-286,male\r\n2nd,1,\"Faunthorpe, Mrs Lizzie (see Wilkinson, E.)\",NA,,,,,,female\r\n2nd,0,\"Fillbrook, Mr Charles\",NA,Southampton,\"Cornwall / Houghton, MI\",,,,male\r\n2nd,0,\"Fox, Mr Stanley H.\",38,Southampton,\"Rochester, NY\",,229236 L13,-236,male\r\n2nd,0,\"Frost, Mr Anthony (Archie) W.\",NA,,Belfast,,,,male\r\n2nd,0,\"Funk, Miss Annie C.\",38,Southampton,\"Janjgir, India / Pennsylvania\",,,,female\r\n2nd,0,\"Fynney, Mr Joseph J.\",35,Southampton,\"Liverpool / Montreal, PQ\",,,-322,male\r\n2nd,0,\"Gale, Mr Harry\",35,Southampton,\"Cornwall / Clear Creek, CO\",,,,male\r\n2nd,0,\"Gale, Mr Shadrach\",38,Southampton,\"Cornwall / Clear Creek, CO\",,,,male\r\n2nd,1,\"Garside, Miss Ethel\",24,Southampton,\"Brooklyn, NY\",,,,female\r\n2nd,0,\"Gaskell, Mr Alfred\",16,Southampton,\"Liverpool / Montreal, PQ\",,,,male\r\n2nd,0,\"Gavey, Mr Lawrence\",26,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Gilbert, Mr William\",45,Southampton,Cornwall,,,,male\r\n2nd,0,\"Giles, Mr Edgar\",24,Southampton,\"Cornwall / Camden, NJ\",,,,male\r\n2nd,0,\"Giles, Mr Frederick\",21,Southampton,\"Cornwall / Camden, NJ\",,,,male\r\n2nd,0,\"Giles, Mr Ralph\",22,Southampton,\"West Kensington, London\",,,-297,male\r\n2nd,0,\"Gill, Mr John W.\",NA,Southampton,\"Clevedon, England\",,,,male\r\n2nd,0,\"Gillespie, Mr William\",34,Southampton,\"Vancouver, BC\",,,,male\r\n2nd,0,\"Givard, Mr Hans Christensen\",30,Southampton,,,,-305,male\r\n2nd,0,\"Greenberg, Mr Samuel\",50,Southampton,\"Bronx, NY\",,,-19,male\r\n2nd,0,\"Hale, Mr Reginald\",30,Southampton,\"Auburn, NY\",,,-75,male\r\n2nd,1,\"Hamalainen, Mrs William (Anna)\",23,Southampton,\"Detroit, MI\",,,,female\r\n2nd,1,\"Hamalainen, Master Viljo\",1,Southampton,\"Detroit, MI\",,,,male\r\n2nd,0,\"Harbeck, Mr William H.\",44,Southampton,\"Seattle, WA / Toledo, OH\",,248749 L13,-35,male\r\n2nd,0,\"Harper, Rev John\",28,Southampton,\"Denmark Hill, Surrey / Chicago\",,,,male\r\n2nd,1,\"Harper, Miss Nina\",6,Southampton,\"Denmark Hill, Surrey / Chicago\",,,11,female\r\n2nd,1,\"Harris, Mr George\",30,Southampton,London,,,,male\r\n2nd,0,\"Harris, Mr Walter\",NA,Southampton,\"Walthamstow, England\",,,,male\r\n2nd,0,\"Hart, Mr Benjamin\",43,Southampton,\"Ilford, Essex / Winnipeg, MB\",,13529 L26 5s,,male\r\n2nd,1,\"Hart, Mrs Benjamin (Esther)\",45,Southampton,\"Ilford, Essex / Winnipeg, MB\",,13529 L26 5s,14,female\r\n2nd,1,\"Hart, Miss Eva Miriam\",7,Southampton,\"Ilford, Essex / Winnipeg, MB\",,13529 L26 5s,14,female\r\n2nd,1,\"Herman, Miss Alice\",24,Southampton,\"Somerset / Bernardsville, NJ\",,,9,female\r\n2nd,1,\"Herman, Miss Kate\",24,Southampton,\"Somerset / Bernardsville, NJ\",,,9,female\r\n2nd,0,\"Herman, Mr Samuel\",49,Southampton,\"Somerset / Bernardsville, NJ\",,,,male\r\n2nd,1,\"Herman, Mrs Samuel (Jane Laver)\",48,Southampton,\"Somerset / Bernardsville, NJ\",,,9,female\r\n2nd,1,\"Hewlett, Mrs Mary D.\",NA,Southampton,\"India / Rapid City, SD\",,,13,female\r\n2nd,0,\"Hickman, Mr Leonard Mark\",34,Southampton,\"West Hampstead, London / Neepawa, MB\",,,-256,male\r\n2nd,0,\"Hickman, Mr Lewis\",32,Southampton,\"West Hampstead, London / Neepawa, MB\",,,,male\r\n2nd,0,\"Hickman, Mr Stanley George\",21,Southampton,\"West Hampstead, London / Neepawa, MB\",,,,male\r\n2nd,0,\"Hiltunen, Miss Marta\",18,Southampton,\"Kontiolahti, Finland / Detroit, MI\",,,,female\r\n2nd,1,\"Hocking, Mrs Elizabeth\",53,Southampton,\"Cornwall / Akron, OH\",,,4,female\r\n2nd,0,\"Hocking, Mr George\",23,Southampton,\"Cornwall / Akron, OH\",,,,male\r\n2nd,1,\"Hocking, Miss Ellen (Nellie)\",21,Southampton,\"Cornwall / Akron, OH\",,,4,female\r\n2nd,0,\"Hocking, Mr Samuel James\",NA,Southampton,\"Devonport, England\",,,,male\r\n2nd,0,\"Hodges, Mr Henry Price\",52,Southampton,Southampton,,,-149,male\r\n2nd,0,\"Hold, Mr Stephen\",42,Southampton,\"England / Sacramento, CA\",,,,male\r\n2nd,1,\"Hold, Mrs Stephen (Annie Margaret)\",36,Southampton,\"England / Sacramento, CA\",,,,female\r\n2nd,0,\"Hood, Mr Ambrose, Jr\",21,Southampton,\"New Forest, England\",,,,male\r\n2nd,1,\"Hosono, Mr Masafumi\",41,Southampton,\"Tokyo, Japan\",,,13,male\r\n2nd,0,\"Howard, Mr Benjamin\",NA,Southampton,\"Swindon, England\",,,,male\r\n2nd,0,\"Howard, Mrs Benjamin (Ellen Truelove)\",NA,Southampton,\"Swindon, England\",,,,female\r\n2nd,0,\"Hunt, Mr George Henry\",33,Southampton,\"Philadelphia, PA\",,,,male\r\n2nd,1,\"Ilett, Miss Bertha\",17,Southampton,Guernsey,,,,female\r\n2nd,0,Jacobsohn Mr Sidney Samuel,NA,Southampton,London,,,,male\r\n2nd,1,\"Jacobsohn, Mrs Sidney Samuel (Amy Frances Christy)\",NA,Southampton,London,,,,female\r\n2nd,0,\"Jarvis, Mr John Denzil\",NA,Southampton,\"North Evington, England\",,,,male\r\n2nd,0,\"Jefferys, Mr Clifford\",NA,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Jefferys, Mr Ernest\",NA,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Jenkin, Mr Stephen Curnow\",NA,Southampton,\"St Ives, Cornwall / Houghton, MI\",,,,male\r\n2nd,1,\"Jerwan, Mrs Amin S. (Marie Thuillard)\",23,Cherbourg,\"New York, NY\",,,,female\r\n2nd,0,\"Kantor, Mr Sinai\",34,Southampton,\"Moscow / Bronx, NY\",,,-283,male\r\n2nd,1,\"Kantor, Mrs Sinai (Miriam Sternim)\",NA,Southampton,\"Moscow / Bronx, NY\",,,,female\r\n2nd,0,\"Karnes, Mrs J. Frank (Claire Bennett)\",22,Southampton,\"India / Pittsburgh, PA\",,,,female\r\n2nd,0,\"Keane, Mr Daniel\",NA,Queenstown,,,,,male\r\n2nd,1,\"Keane, Miss Nora A.\",NA,Queenstown,\"Harrisburg, PA\",E-101,,10,female\r\n2nd,1,\"Kelly, Mrs Florence (Fannie)\",45,Southampton,\"London / New York, NY\",,,,female\r\n2nd,0,\"Kirkland, Rev Charles Leonard\",NA,Queenstown,\"Glasgow / Bangor, ME\",,,,male\r\n2nd,0,\"Knight, Mr Robert\",NA,,Belfast,,,,male\r\n2nd,0,\"Kvillner, Mr Johan Henrik Johannesson\",31,Southampton,\"Sweden / Arlington, NJ\",,,-165,male\r\n2nd,0,\"Lahtinen, Rev William\",30,Southampton,\"Minneapolis, MN\",,,,male\r\n2nd,0,\"Lahtinen, Mrs William (Anna Sylvan)\",26,Southampton,\"Minneapolis, MN\",,,,female\r\n2nd,0,\"Lamb, Mr John James\",NA,Queenstown,,,,,male\r\n2nd,1,\"Lemore, Mrs Amelia\",34,Southampton,\"Chicago, IL\",F-33,,14/D,female\r\n2nd,0,\"LaRoche, Mr Joseph\",26,Cherbourg,Paris / Haiti,,,,male\r\n2nd,1,\"LaRoche, Mrs Joseph (Juliet)\",22,Cherbourg,Paris / Haiti,,,,female\r\n2nd,1,\"LaRoche, Miss Louise\",1,Cherbourg,Paris / Haiti,,,,female\r\n2nd,1,\"LaRoche, Miss Simonne\",3,Cherbourg,Paris / Haiti,,,,female\r\n2nd,1,\"Lehmann, Miss Bertha\",NA,Cherbourg,\"Berne, Switzerland / Central City, IA\",,,,female\r\n2nd,1,\"Leitch, Miss Jessie\",NA,Southampton,\"London / Chicago, IL\",,,11,female\r\n2nd,0,\"Levy, Mr Rene Jacques\",NA,Cherbourg,\"Montreal, PQ\",,,,male\r\n2nd,0,\"Leyson, Mr Robert William Norman\",25,Southampton,,,,-108,male\r\n2nd,0,\"Lingan, Mr John\",NA,Queenstown,,,,,male\r\n2nd,0,\"Louch, Mr Charles Alexander\",48,Southampton,\"Weston-Super-Mare, Somerset\",,,-121,male\r\n2nd,1,\"Louch, Mrs Charles Alexander (Alice Adelaide)\",NA,Southampton,\"Weston-Super-Mare, Somerset\",,,14,female\r\n2nd,0,\"Mack, Mrs Mary\",57,Southampton,\"Southampton / New York, NY\",E77,,-52,female\r\n2nd,0,\"Malachard, Mr Noel\",NA,Cherbourg,Paris,,,,male\r\n2nd,0,\"Mallet, Mr Albert\",NA,Cherbourg,\"Paris / Montreal, PQ\",,,,male\r\n2nd,1,\"Mallet, Mrs Albert (Antoinette)\",NA,Cherbourg,\"Paris / Montreal, PQ\",,,,female\r\n2nd,1,\"Mallet, Master Andre\",2,Cherbourg,\"Paris / Montreal, PQ\",,,,male\r\n2nd,0,\"Mangiavacchi, Mr Serafino Emilio\",NA,Cherbourg,\"New York, NY\",,,,male\r\n2nd,0,\"Mantvila, Rev Joseph\",27,Southampton,\"Worcester, MA\",,,,male\r\n2nd,1,\"Marshall, Mrs Kate Louise Phillips\",19,Southampton,\"Worcester, England\",,,,female\r\n2nd,0,\"Matthews, Mr William John\",30,Southampton,\"St Austall, Cornwall\",,,,male\r\n2nd,0,\"Maybery, Mr Frank H.\",20,Southampton,\"Weston-Super-Mare / Moose Jaw, SK\",,,,male\r\n2nd,0,\"McCrae, Mr Arthur Gordon\",45,Southampton,\"Sydney, Australia\",,,-209,male\r\n2nd,0,\"McCrie, Mr James Matthew\",NA,Southampton,\"Sarnia, ON\",,,,male\r\n2nd,0,\"McKane, Mr Peter D.\",46,Southampton,\"Rochester, NY\",,,,male\r\n2nd,1,\"Mellenger, Mrs Elizabeth Anne\",41,Southampton,\"England / Bennington, VT\",,,14/12,female\r\n2nd,1,\"Mellenger, Miss Madeleine Violet\",13,Southampton,\"England / Bennington, VT\",,,14/12,female\r\n2nd,1,\"Mellor, Mr William John\",19,Southampton,\"Chelsea, London\",,,B,male\r\n2nd,0,\"Meyer, Mr August\",30,Southampton,\"Harrow-on-the-Hill, Middlesex\",,,,male\r\n2nd,0,\"Milling, Mr Jacob Christian\",48,Southampton,\"Copenhagen, Denmark\",,,-271,male\r\n2nd,0,\"Mitchell, Mr Henry Michael\",71,Southampton,\"Guernsey / Montclair, NJ and/or Toledo, Ohio\",,,,male\r\n2nd,0,\"Moraweck, Dr Ernest\",54,Southampton,\"Frankfort, KY\",,,,male\r\n2nd,0,\"Morley, Mr William\",NA,Southampton,\"Petworth, Sussex\",,,,male\r\n2nd,0,\"Mudd, Mr Thomas C.\",NA,Southampton,\"Halesworth, England\",,,,male\r\n2nd,0,\"Myles, Mr Thomas Francis\",64,Queenstown,\"Cambridge, MA\",,,,male\r\n2nd,0,\"Nasser (Nasrallah), Mr Nicholas\",32,Cherbourg,\"New York, NY\",,,-43,male\r\n2nd,1,\"Nasser (Nasrallah), Mrs Nicholas\",18,Cherbourg,\"New York, NY\",,,,female\r\n2nd,1,\"Navratil, Master Edmond Roger\",2,Southampton,\"Nice, France\",,230080 L26,D,male\r\n2nd,0,\"Navratil, Mr Michel\",32,Southampton,\"Nice, France\",,230080 L26,-15,male\r\n2nd,1,\"Navratil, Master Michel M.\",3,Southampton,\"Nice, France\",,230080 L26,D,male\r\n2nd,0,\"Nesson, Mr Israel\",26,Southampton,\"Boston, MA\",,,,male\r\n2nd,0,\"Nicholls, Mr Joseph Charles\",19,Southampton,\"Cornwall / Hancock, MI\",,,-101,male\r\n2nd,0,\"Norman, Mr Robert Douglas\",NA,Southampton,Glasgow,,,-287,male\r\n2nd,1,\"Nourney, Mr Alfred (aka Baron von Drachstedt)\",20,Cherbourg,\"Cologne, Germany\",D-38,,7,male\r\n2nd,1,\"Nye, Mrs Elizabeth Ramell\",29,Southampton,\"Folkstone, Kent / New York, NY\",F-33,,11,female\r\n2nd,0,\"Otter, Mr Richard\",39,Southampton,\"Middleburg Heights, OH\",,,,male\r\n2nd,1,\"Oxenham, Mr Percy Thomas\",22,Southampton,\"Pondersend, England / New Durham, NJ\",,,,male\r\n2nd,1,\"Padro y Manent, Mr Julian\",NA,Cherbourg,\"Spain / Havana, Cuba\",,,,male\r\n2nd,0,\"Pain, Dr Alfred\",24,Southampton,\"Hamilton, ON\",,,,male\r\n2nd,1,\"Pallas y Castello, Mr Emilio\",NA,Cherbourg,\"Spain / Havana, Cuba\",,,,male\r\n2nd,0,\"Parker, Mr Clifford R.\",28,Southampton,\"St Andrews, Guernsey\",,,,male\r\n2nd,0,\"Parkes, Mr Francis (Frank)\",NA,,Belfast,,,,male\r\n2nd,1,\"Parrish, Mrs Lutie Davis\",50,Southampton,\"Woodford County, KY\",,,12,female\r\n2nd,0,\"Pengelly, Mr Frederick\",20,Southampton,\"Gunnislake, England / Butte, MT\",,,,male\r\n2nd,0,\"Peruschitz, Rev. Joseph M.\",40,Southampton,,,,,male\r\n2nd,1,\"Phillips, Miss Alice\",42,Southampton,\"Ilfracombe, Devon\",,,12,female\r\n2nd,0,\"Phillips, Mr Robert\",21,Southampton,\"Ilfracombe, Devon\",,,,male\r\n2nd,1,\"Pinsky, Miss Rosa\",32,Southampton,Russia,,,,female\r\n2nd,0,\"Ponesell, Mr Martin\",34,Southampton,\"Denmark / New York, NY\",,250647,,male\r\n2nd,1,\"Portaluppi, Mr Emilio\",NA,Cherbourg,\"Milford, NH\",,,,male\r\n2nd,0,\"Pulbaum, Mr Frank\",NA,Cherbourg,Paris,,,,male\r\n2nd,1,\"Quick, Mrs Frederick C. (Jane Richards)\",33,Southampton,\"Plymouth, Devon / Detroit, MI\",,,11,female\r\n2nd,1,\"Quick, Miss Phyllis May\",2,Southampton,\"Plymouth, Devon / Detroit, MI\",,,11,female\r\n2nd,1,\"Quick, Miss Winifred Vera\",8,Southampton,\"Plymouth, Devon / Detroit, MI\",,,11,female\r\n2nd,0,\"Reeves, Mr David\",36,Southampton,\"Brighton, Sussex\",,,,male\r\n2nd,0,\"Renouf, Mr Peter Henry\",34,Southampton,\"Elizabeth, NJ\",,,,male\r\n2nd,1,\"Renouf, Mrs Peter Henry (Lillian Jefferys)\",30,Southampton,\"Elizabeth, NJ\",,,,female\r\n2nd,1,\"Reynaldo, Mrs Encarnacion\",28,Southampton,Spain,,,,female\r\n2nd,0,\"Richard, Mr Emil\",23,Cherbourg,\"Paris / Montreal, PQ\",,,,male\r\n2nd,1,\"Richards, Master George Sidney\",0.8333,Southampton,\"Cornwall / Akron, OH\",,,4,male\r\n2nd,1,\"Richards, Mrs Sidney (Emily Hocking)\",25,Southampton,\"Cornwall / Akron, OH\",,,4,female\r\n2nd,1,\"Richards, Master William Rowe\",3,Southampton,\"Cornwall / Akron, OH\",,,4,male\r\n2nd,1,\"Ridsdale, Miss Lucy\",50,Southampton,\"London, England / Marietta, Ohio and Milwaukee, WI\",,,,female\r\n2nd,0,\"Rogers, Mr Harry\",NA,Southampton,,,,,male\r\n2nd,1,\"Rugg, Miss Emily\",21,Southampton,\"Guernsey / Wilmington, DE\",,,12,female\r\n2nd,0,\"Sedgwick, Mr Charles Frederick Waddington\",NA,Southampton,Liverpool,,,,male\r\n2nd,0,\"Sharp, Mr Percival\",NA,Southampton,\"Hornsey, England\",,,,male\r\n2nd,1,\"Shelley, Mrs William (Imanita)\",25,Southampton,\"Deer Lodge, MT\",,,12,female\r\n2nd,1,\"Silven, Miss Lyyli\",18,Southampton,\"Finland / Minneapolis, MN\",,,,female\r\n2nd,1,\"Sincock, Miss Maude\",20,Southampton,\"Cornwall / Hancock, MI\",,,11,female\r\n2nd,1,\"Siukonnen, Miss Anna\",30,Southampton,\"Finland / Washington, DC\",,,,female\r\n2nd,0,\"Sjostedt, Mr Ernst Adolf\",59,Southampton,\"Sault St Marie, ON\",,,,male\r\n2nd,1,\"Slayter, Miss Hilda Mary\",30,Queenstown,\"Halifax, NS\",,,13,female\r\n2nd,0,\"Slemen, Mr Richard James\",35,Southampton,Cornwall,,,,male\r\n2nd,0,\"Smith (Schmidt), Mr Augustus\",22,Southampton,\"Newark, NJ\",,,,male\r\n2nd,1,\"Smith, Miss Marion\",NA,Southampton,,,,,female\r\n2nd,0,\"Sobey, Mr Hayden\",25,Southampton,\"Cornwall / Houghton, MI\",,,,male\r\n2nd,0,\"Stanton, Mr Samuel Ward\",41,Cherbourg,\"New York, NY\",,,,male\r\n2nd,0,\"Stokes, Mr Philip Joseph\",25,Southampton,\"Catford, Kent / Detroit, MI\",,,-81,male\r\n2nd,0,\"Sweet, Mr George\",14,Southampton,\"Somerset / Bernardsville, NJ\",,,,male\r\n2nd,1,\"Toomey, Miss Ellen\",50,Southampton,\"Indianapolis, IN\",,,9,female\r\n2nd,0,\"Troupiansky, Mr Moses Aaron\",22,Southampton,,,,,male\r\n2nd,1,\"Trout, Mrs William H. (Jessie L.)\",NA,Southampton,\"Columbus, OH\",,,9,female\r\n2nd,1,\"Troutt, Miss Edwina Celia\",27,Southampton,\"Bath, England / Massachusetts\",E-101,34218 L10 10s,16,female\r\n2nd,0,\"Turpin, Mr William John\",29,Southampton,\"Plymouth, England\",,,,male\r\n2nd,0,\"Turpin, Mrs William John (Dorothy Anne Wonnacott)\",27,Southampton,\"Plymouth, England\",,,,female\r\n2nd,0,\"Veale, Mr James\",30,Southampton,\"Barre, Co Washington, VT\",,,,male\r\n2nd,0,\"Waelens, Mr Achille\",22,Southampton,\"Antwerp, Belgium / Stanton, OH\",,,-140,male\r\n2nd,1,\"Walcroft, Miss Nellie\",35,Southampton,\"Mamaroneck, NY\",,,,female\r\n2nd,0,\"Ware, Mr John James\",30,Southampton,\"Bristol, England / New Britain, CT\",,,,male\r\n2nd,1,\"Ware, Mrs John James (Florence Louise Long)\",28,Southampton,\"Bristol, England / New Britain, CT\",,,12,female\r\n2nd,0,\"Ware, Mr William J.\",23,Southampton,,,,,male\r\n2nd,0,\"Watson, Mr Ennis Hastings\",NA,Southampton,Belfast,,,,male\r\n2nd,1,\"Watt, Miss Bertha\",12,Southampton,\"Aberdeen / Portland, OR\",,,9,female\r\n2nd,1,\"Watt, Mrs James (Bessie Inglis Milne)\",40,Southampton,\"Aberdeen / Portland, OR\",,,9,female\r\n2nd,1,\"Webber, Miss Susan\",36,Southampton,\"England / Hartford, CT\",E-101,,,female\r\n2nd,0,\"Weisz, Mr Leopold\",28,Southampton,\"Bromsgrove, England / Montreal, PQ\",,,-293,male\r\n2nd,1,\"Weisz, Mrs Leopold (Mathilde)\",32,Southampton,\"Bromsgrove, England / Montreal, PQ\",,,,female\r\n2nd,1,\"Wells, Mrs Arthur H. (Addie Trevaskis)\",29,Southampton,\"Cornwall / Akron, OH\",,,,female\r\n2nd,1,\"Wells, Miss Joan\",4,Southampton,\"Cornwall / Akron, OH\",,,,female\r\n2nd,1,\"Wells, Master Ralph Lester\",2,Southampton,\"Cornwall / Akron, OH\",,,,male\r\n2nd,1,\"West, Miss Barbara J.\",NA,Southampton,\"Bournmouth, England\",,,,female\r\n2nd,1,\"West, Miss Constance Mirium\",NA,Southampton,\"Bournmouth, England\",,,,female\r\n2nd,0,\"West, Mr Edwy Arthur\",36,Southampton,\"Bournmouth, England\",,,,male\r\n2nd,1,\"West, Mrs Edwy Arthur (Ada Mary)\",33,Southampton,\"Bournmouth, England\",,,,female\r\n2nd,0,\"Wheadon, Mr Edward\",NA,Southampton,\"Guernsey, England / Edgewood, RI\",,,,male\r\n2nd,0,\"Wheeler, Mr Edwin\",NA,Southampton,,,,,male\r\n2nd,0,\"Wheeler, Mr Frederick\",NA,,,,,,male\r\n2nd,1,\"Wilhelms, Mr Charles\",32,Southampton,\"London, England\",,,9,male\r\n2nd,1,\"Wilkinson, Mrs Elizabeth Anne\",NA,Southampton,\"Manchester, England\",,,,female\r\n2nd,1,\"Williams, Mr Charles Eugene\",NA,Southampton,\"Harrow, England\",,,14,male\r\n2nd,1,\"Wright, Miss Marion\",26,Southampton,\"Yoevil, England / Cottage Grove, OR\",,,9,female\r\n2nd,0,\"Yrois, Miss Henriette\",NA,Southampton,Paris,,,,female\r\n2nd,0,\"Aldworth, Mr Charles Augustus\",30,Southampton,\"Bryn Mawr, PA, USA\",,248744 L13,,male\r\n2nd,1,\"Brown, Miss Mildred\",24,Southampton,\"London / Montreal, PQ\",F-33,,11,female\r\n2nd,0,\"Pernot, Mr Rene\",NA,Cherbourg,,2131,L15 1s,,male\r\n2nd,0,\"Swane, Mr George\",18,Southampton,,F-?,,-294,male\r\n3rd,0,\"Abbing, Mr Anthony\",42,Southampton,,,,,male\r\n3rd,0,\"Abbott, Master Eugene Joseph\",13,Southampton,\"East Providence, RI\",,,,male\r\n3rd,0,\"Abbott, Mr Rossmore Edward\",16,Southampton,\"East Providence, RI\",,,-190,male\r\n3rd,1,\"Abbott, Mrs Stanton (Rosa)\",35,Southampton,\"East Providence, RI\",,,A,female\r\n3rd,1,\"Abelseth, Miss Anna Karen\",16,Southampton,\"Norway Los Angeles, CA\",,,16,female\r\n3rd,1,\"Abelseth, Mr Olaus\",25,Southampton,\"Perkins County, SD\",,,A,male\r\n3rd,1,\"Abraham, Mrs Joseph (Sophie Easu)\",18,Cherbourg,\"Greensburg, PA\",,,,female\r\n3rd,1,\"Abrahamsson, Mr August\",20,Southampton,\"Taalintehdas, Finland Hoboken, NJ\",,,15,male\r\n3rd,0,\"Adahl, Mr Mauritz Nils Martin\",30,Southampton,\"Asarum, Sweden Brooklyn, NY\",,7076,-72,male\r\n3rd,0,\"Adams, Mr John\",26,Southampton,\"Bournemouth, England\",,,-103,male\r\n3rd,0,\"Ahlin, Mrs Johanna Persdotter\",40,Southampton,\"Sweden Akeley, MN\",,,,female\r\n3rd,0,\"Ahmed, Mr Ali\",24,Southampton,,,,,male\r\n3rd,0,\"Aijo-Nirva, Mr Isak\",41,Southampton,\"Finland Sudbury, ON\",,,,male\r\n3rd,1,\"Aks, Mrs Sam (Leah Rosen)\",18,Southampton,\"London, England Norfolk, VA\",,392091,13,female\r\n3rd,1,\"Aks, Master Philip\",0.8333,Southampton,\"London, England Norfolk, VA\",,392091,11,male\r\n3rd,0,\"Alexander, Mr William\",23,Southampton,\"England Albion, NY\",,,,male\r\n3rd,0,\"Alhomaki, Mr Ilmari Rudolf\",20,Southampton,\"Salo, Finland Astoria, OR\",,,,male\r\n3rd,0,\"Ali, Mr William\",25,Southampton,Argentina,,,-79,male\r\n3rd,0,\"Allen, Mr William Henry\",35,Southampton,\"Lower Clapton, Middlesex or Erdington, Birmingham\",,,,male\r\n3rd,0,\"Allum, Mr Owen George\",17,Southampton,\"Windsor, England New York, NY\",,,-259,male\r\n3rd,0,\"Andersen, Mr Albert Karvin\",32,Southampton,\"Bergen, Norway\",,,-260,male\r\n3rd,0,\"Andersen, Mr Thor Olsvigen\",20,Southampton,\"Oslo, Norway Cameron, WI\",,,-89,male\r\n3rd,0,\"Andersson, Mr Anders Johan\",39,Southampton,\"Sweden Winnipeg, MN\",,,,male\r\n3rd,0,\"Andersson, Mrs Anders Johan (Alfrida K. Brogren)\",39,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Miss Ebba Iris\",6,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Miss Ellis Anna Maria\",2,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,1,\"Andersson, Miss Erna\",17,Southampton,\"Ruotsinphyhtaa, Finland New York, NY\",,,,female\r\n3rd,0,\"Andersson, Miss Ida Augusta Margareta\",38,Southampton,\"Vadsbro, Sweden Ministee, MI\",,,,female\r\n3rd,0,\"Andersson, Miss Ingeborg Constancia\",9,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Mr Johan Samuel\",26,Southampton,\"Hartford, CT\",,,,male\r\n3rd,0,\"Andersson, Miss Sigrid Elizabeth\",11,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Master Sigvard Harald Elias\",4,Southampton,\"Sweden Winnipeg, MN\",,,,male\r\n3rd,0,\"Andreasson, Mr Paul Edvin\",20,Southampton,\"Sweden Chicago, IL\",,,,male\r\n3rd,0,\"Angheloff, Mr Minko\",26,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Arnold, Mr Josef\",25,Southampton,\"Altdorf, Switzerland\",,,,male\r\n3rd,0,\"Arnold, Mrs Josef (Josephine Frank)\",18,Southampton,\"Altdorf, Switzerland\",,,,female\r\n3rd,0,\"Aronsson, Mr Ernst Axel Algot\",24,Southampton,\"Sweden Joliet, IL\",,,,male\r\n3rd,0,\"Asim, Mr Adola\",35,Southampton,,,,,male\r\n3rd,0,\"Asplund, Mr Carl Oscar Vilhelm Gustafsson\",40,Southampton,\"Sweden  Worcester, MA\",,,-142,male\r\n3rd,1,\"Asplund, Mrs Carl Oscar (Selma Augusta Johansson)\",38,Southampton,\"Sweden  Worcester, MA\",,,4,female\r\n3rd,0,\"Asplund, Master Carl Edgar\",5,Southampton,\"Sweden  Worcester, MA\",,,,male\r\n3rd,0,\"Asplund, Master Clarence Gustaf Hugo\",9,Southampton,\"Sweden Worcester, MA\",,,,male\r\n3rd,1,\"Aspland, Master Edvin Rojj Felix\",3,Southampton,\"Sweden Worcester, MA\",,,4,male\r\n3rd,0,\"Asplund, Master Filip Oscar\",13,Southampton,\"Sweden Worcester, MA\",,,,male\r\n3rd,1,\"Asplund, Mr John Charles\",23,Southampton,\"Oskarshamn, Sweden Minneapolis, MN\",,,,male\r\n3rd,1,\"Asplund, Miss Lillian Gertrud\",5,Southampton,\"Sweden Worcester, MA\",,,4,female\r\n3rd,0,\"Assaf, Mr Gerios\",NA,Cherbourg,\"Ottawa, ON\",,,,male\r\n3rd,1,\"Assaf, Mrs Mariana\",45,Cherbourg,\"Ottawa, ON\",,,C,female\r\n3rd,0,\"Assam, Mr Ali\",23,Southampton,,,,,male\r\n3rd,0,\"Attalah, Miss Malaka\",17,Cherbourg,,,,,female\r\n3rd,0,\"Attala (Kalil), Mr Solomon\",27,Cherbourg,\"Ottawa, ON\",,,,male\r\n3rd,0,\"Augustsson, Mr Albert\",23,Southampton,\"Krakoryd, Sweden Bloomington, IL\",,,,male\r\n3rd,0,\"Baccos, Mr Rafoul\",20,Cherbourg,,,,,male\r\n3rd,0,\"Backstrom, Mr Karl Alfred\",32,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,male\r\n3rd,1,\"Backstrom, Mrs Karl Alfred (Maria Mathilda Gustafsson)\",33,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,female\r\n3rd,1,\"Baclini, Miss Eugenie\",3,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Baclini, Miss Helene\",NA,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Baclini, Miss Maria\",NA,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Baclini, Mrs Solomon (Latifa)\",NA,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Badman, Miss Emily Louisa\",18,Southampton,\"London Skanteales, NY\",,,,female\r\n3rd,0,\"Badt, Mr Mohamed\",40,Cherbourg,,,,,male\r\n3rd,0,\"Balkic, Mr Cerin\",26,Southampton,,,,,male\r\n3rd,1,\"Banoura, Miss Ayout\",15,Cherbourg,\"Syria Youngstown, OH\",,,,female\r\n3rd,0,\"Barbara, Mrs Catherine\",45,Cherbourg,\"Syria Ottawa, ON\",,,,female\r\n3rd,0,\"Barbara, Miss Saude\",18,Cherbourg,\"Syria Ottawa, ON\",,,,female\r\n3rd,0,\"Barry, Miss Julia\",27,Queenstown,\"New York, NY\",,,,female\r\n3rd,0,Barton Mr David,22,Southampton,\"England New York, NY\",,,,male\r\n3rd,0,\"Beavan, Mr William Thomas\",19,Southampton,England,,,,male\r\n3rd,0,\"Bengtsson, Mr John Viktor\",26,Southampton,\"Krakudden, Sweden Moune, IL\",,,,male\r\n3rd,0,Berglund. Mr Karl Ivar Sven,22,Southampton,\"Tranvik, Finland New York\",,,,male\r\n3rd,0,\"Betros, Mr Tannous\",20,Cherbourg,Syria,,,,male\r\n3rd,1,\"Bing, Mr Lee\",32,Southampton,\"Hong Kong New York, NY\",,,,male\r\n3rd,0,\"Birkeland, Mr Hans\",21,Southampton,\"Brennes, Norway New York\",,,,male\r\n3rd,0,\"Bjorklund, Ernst Herbert\",18,Southampton,\"Stockholm, Sweden New York\",,,,male\r\n3rd,0,\"Bostandyeff, Mr Guentcho\",26,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Boulos, Master Akar\",6,Cherbourg,\"Syria Kent, ON\",,,,male\r\n3rd,0,\"Boulos, Mr Hanna\",NA,Cherbourg,Syria,,,,male\r\n3rd,0,\"Boulos, Mrs Joseph (Sultana)\",NA,Cherbourg,\"Syria Kent, ON\",,,,female\r\n3rd,0,\"Boulos, Miss Laura\",9,Cherbourg,\"Syria Kent, ON\",,,,female\r\n3rd,0,\"Bourke, Mr John\",40,Queenstown,\"Ireland Chicago, IL\",,,,male\r\n3rd,0,\"Bourke, Mrs John (Catherine)\",32,Queenstown,\"Ireland Chicago, IL\",,,,female\r\n3rd,0,\"Bourke, Miss Mary\",NA,Queenstown,\"Ireland Chicago, IL\",,,,female\r\n3rd,0,\"Bowen, Mr David\",26,Southampton,\"Treherbert, Cardiff, Wales\",,,,male\r\n3rd,1,\"Bradley, Miss Bridget Delia\",18,Queenstown,\"Kingwilliamstown, Co Cork, Ireland Glens Falls, NY\",,,13,female\r\n3rd,0,\"Braf, Miss Elin Ester Maria\",20,Southampton,\"Medeltorp, Sweden Chicago, IL\",,,,female\r\n3rd,0,\"Brahim, Mr Youssef\",NA,Cherbourg,,,,,male\r\n3rd,0,\"Braund, Mr Lewis Richard\",29,Southampton,\"Bridgerule, Devon\",,,,male\r\n3rd,0,\"Braund, Mr Owen Harris\",22,Southampton,\"Bridgerule, Devon\",,,,male\r\n3rd,0,\"Brobek, Mr Karl Rudolf\",22,Southampton,\"Sweden Worcester, MA\",,,,male\r\n3rd,0,\"Brocklebank, Mr William Alfred\",35,Southampton,\"Broomfield, Chelmsford, England\",,,,male\r\n3rd,1,\"Buckley, Mr Daniel\",21,Queenstown,\"Kingwilliamstown, Co Cork, Ireland New York, NY\",,,,male\r\n3rd,0,\"Buckley, Miss Katherine\",20,Queenstown,\"Co Cork, Ireland Roxbury, MA\",,,-299,female\r\n3rd,0,\"Burke, Mr Jeremiah\",19,Queenstown,\"Co Cork, Ireland Charlestown, MA\",,,,male\r\n3rd,0,\"Burns, Miss Mary Delia\",18,Queenstown,\"Co Sligo, Ireland New York, NY\",,,,female\r\n3rd,0,\"Cacic, Mr Grego\",18,Southampton,Croatia,,,,male\r\n3rd,0,\"Cacic, Mr Luka\",38,Southampton,Croatia,,,,male\r\n3rd,0,\"Cacic, Mr Manda\",NA,Southampton,Croatia,,,,male\r\n3rd,0,\"Cacic, Mr Maria\",30,Southampton,Croatia,,,,male\r\n3rd,0,\"Calic, Mr Peter\",17,Southampton,,,,,male\r\n3rd,0,\"Canavan, Miss Mary\",21,Queenstown,,,,,female\r\n3rd,0,\"Canavan, Mr Patrick\",21,Queenstown,\"Ireland Philadelphia, PA\",,,,male\r\n3rd,0,\"Cann, Mr Ernest\",21,Southampton,,,,,male\r\n3rd,0,\"Caram (Kareem), Mr Joseph\",NA,Cherbourg,\"Ottawa, ON\",,,,male\r\n3rd,0,\"Caram (Kareem), Mrs Joseph (Maria Elias)\",NA,Cherbourg,\"Ottawa, ON\",,,,female\r\n3rd,0,\"Carlsson, Mr Carl Robert\",24,Southampton,\"Goteborg, Sweden Huntley, IL\",,,,male\r\n3rd,0,\"Carlsson, Mr Frans Olof\",33,Southampton,\"New York, NY\",,,,male\r\n3rd,0,\"Carlsson, Mr Julius\",33,Southampton,,,,,male\r\n3rd,0,\"Carlsson, Mr August Sigfrid\",28,Southampton,\"Dagsas, Sweden Fower, MN\",,,,male\r\n3rd,1,\"Carr, Miss Helen\",16,Queenstown,\"Co Longford, Ireland New York, NY\",,,,female\r\n3rd,0,\"Carr, Miss Jeannie\",37,Queenstown,\"Co Sligo, Ireland Hartford, CT\",,,,female\r\n3rd,0,\"Carver, Mr Alfred John\",28,Southampton,\"St Denys, Southampton, Hants\",,,,male\r\n3rd,1,\"Cassem, Mr Nassef Belmenly\",NA,Cherbourg,\"Syria Fredericksburg, VA\",,,,male\r\n3rd,0,\"Celotti, Mr Francesco\",24,Southampton,London,,,,male\r\n3rd,0,\"Chartens, Mr David\",21,Southampton,\"Ireland New York, NY\",,,,male\r\n3rd,0,\"Chebab, Mr Emir Farres\",NA,Cherbourg,,,,,male\r\n3rd,0,\"Chip, Mr Chang\",32,Southampton,\"Hong Kong New York, NY\",,,,male\r\n3rd,0,\"Christmann, Mr Emil\",29,Southampton,,,,,male\r\n3rd,0,\"Chronopoulos, Mr Apostolos\",26,Cherbourg,Greece,,,,male\r\n3rd,0,\"Chronopoulos, Mr Demetrios\",18,Cherbourg,Greece,,,,male\r\n3rd,0,\"Coelho, Mr Domingos Fernandes\",20,Southampton,Portugal,,,,male\r\n3rd,1,\"Cohen, Mr Gurshon (Gus)\",19,Southampton,\"London Brooklyn, NY\",,,,male\r\n3rd,0,\"Colbert, Mr Patrick\",24,Queenstown,\"Co Limerick, Ireland Sherbrooke, PQ\",,,,male\r\n3rd,0,\"Coleff, Mr Fotio\",24,Southampton,,,,,male\r\n3rd,0,\"Coleff, Mr Peyo\",36,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Conlin, Mr Thomas Henry\",31,Queenstown,\"Philadelphia, PA\",,,,male\r\n3rd,0,\"Connaghton, Mr Michael\",31,Queenstown,\"Ireland Brooklyn, NY\",,,,male\r\n3rd,0,\"Connolly, Miss Kate\",30,Queenstown,Ireland,,,,female\r\n3rd,1,\"Connolly, Miss Kate\",22,Queenstown,Ireland,,,,female\r\n3rd,0,\"Connors, Mr Patrick\",NA,Queenstown,,,,-171,male\r\n3rd,0,\"Cook, Mr Jacob\",43,Southampton,,,,,male\r\n3rd,0,\"Cor, Mr Bartol\",35,Southampton,Austria,,,,male\r\n3rd,0,\"Cor, Mr Ivan\",27,Southampton,Austria,,,,male\r\n3rd,0,\"Cor, Mr Ludovik\",19,Southampton,Austria,,,,male\r\n3rd,0,\"Corn, Mr Harry\",30,Southampton,London,,,,male\r\n3rd,1,\"Coutts, Mrs William (Minnie)\",36,Southampton,\"England Brooklyn, NY\",,,2,female\r\n3rd,1,\"Coutts, Master Neville\",3,Southampton,\"England Brooklyn, NY\",,,2,male\r\n3rd,1,\"Coutts, Master William Leslie\",9,Southampton,\"England Brooklyn, NY\",,,2,male\r\n3rd,0,\"Coxon, Mr Daniel\",59,Southampton,\"Merrill, WI\",,,,male\r\n3rd,0,\"Crease, Mr Ernest James\",19,Southampton,\"Bristol, England Cleveland, OH\",,,,male\r\n3rd,0,\"Cribb, Mr John Hatfield\",44,Southampton,\"Bournemouth, England Newark, NJ\",,,,male\r\n3rd,1,\"Cribb, Miss Laura Alice\",17,Southampton,\"Bournemouth, England Newark, NJ\",,,,female\r\n3rd,0,\"Daher, Mr Tannous\",NA,Cherbourg,,,,,male\r\n3rd,1,\"Dahl, Mr Charles Edward\",45,Southampton,\"Australia Fingal, ND\",,,15,male\r\n3rd,0,\"Dahlberg, Miss Gerda Ulrika\",22,Southampton,\"Norrlot, Sweden Chicago, IL\",,,,female\r\n3rd,0,\"Dakic, Mr Branko\",19,Southampton,Austria,,,,male\r\n3rd,1,\"Daly, Mr Eugene\",29,Queenstown,\"Co Athlone, Ireland New York, NY\",,,B,male\r\n3rd,1,\"Daly, Miss Marcella\",30,Queenstown,\"Co Athlone, Ireland New York, NY\",,,,female\r\n3rd,0,\"Danbom, Mr Ernst Gilbert\",34,Southampton,\"Stanton, IA\",,,,male\r\n3rd,0,\"Danbom, Mrs Ernst Gilbert (Anna Sigrid Maria Brogren)\",28,Southampton,\"Stanton, IA\",,,,female\r\n3rd,0,\"Danbom, Master Gilbert Sigvard Emanuel\",0.3333,Southampton,\"Stanton, IA\",,,,male\r\n3rd,0,\"Danoff, Mr Yoto\",27,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Dantchoff, Mr Khristo\",25,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Davies, Mr Alfred\",24,Southampton,\"West Bromwich, England Pontiac, MI\",,,,male\r\n3rd,0,\"Davies, Mr Evan\",22,Southampton,,,,,male\r\n3rd,0,\"Davies, Mr John\",21,Southampton,\"West Bromwich, England Pontiac, MI\",,,,male\r\n3rd,0,\"Davies, Mr Joseph\",17,Southampton,\"West Bromwich, England Pontiac, MI\",,,,male\r\n3rd,0,\"Davison, Mr Thomas Henry\",NA,Southampton,\"Liverpool, England Bedford, OH\",,,,male\r\n3rd,1,\"Davison, Mrs Thomas Henry (Mary Finck)\",NA,Southampton,\"Liverpool, England Bedford, OH\",,,,female\r\n3rd,0,\"Dean, Mr Bertram\",26,Southampton,\"Devon, England Wichita, KS\",,,,male\r\n3rd,1,\"Dean, Mrs Bertram (Eva)\",33,Southampton,\"Devon, England Wichita, KS\",,,12,female\r\n3rd,1,\"Dean, Master Bertram Vere\",1,Southampton,\"Devon, England Wichita, KS\",,,12,male\r\n3rd,1,\"Dean, Miss Elizabeth Gladys (Millvena)\",0.1667,Southampton,\"Devon, England Wichita, KS\",,,12,female\r\n3rd,0,\"Delalic, Mr Regyo\",25,Southampton,,,,,male\r\n3rd,1,\"De Messemaeker, Mr William Joseph\",36,Southampton,\"Tampico, MT\",,,15,male\r\n3rd,1,\"De Messemaeker, Mrs William Joseph (Anna)\",36,Southampton,\"Tampico, MT\",,,13,female\r\n3rd,1,\"De Mulder, Mr Theo\",30,Southampton,\"Belgium Detroit, MI\",,,,male\r\n3rd,0,\"Denkoff, Mr Mito\",NA,Southampton,\"Bulgaria Coon Rapids, IA\",,,,male\r\n3rd,0,\"Dennis, Mr Samuel\",23,Southampton,,,,,male\r\n3rd,0,\"Dennis, Mr William\",26,Southampton,,,,,male\r\n3rd,1,\"Devaney, Miss Margaret\",19,Queenstown,\"Kilmacowen, Co Sligo, Ireland New York, NY\",,,C,female\r\n3rd,0,\"Dewan, Mr Frank\",65,Queenstown,,,,,male\r\n3rd,0,\"Dibo, Mr Elias\",NA,Cherbourg,,,,,male\r\n3rd,0,\"Dimic, Mr Jovan\",42,Southampton,,,,,male\r\n3rd,0,\"Dintcheff, Mr Valtcho\",43,Southampton,,,,,male\r\n3rd,0,\"Dooley, Mr Patrick\",32,Queenstown,\"Ireland New York, NY\",,,,male\r\n3rd,1,\"Dorkings, Mr Edward Arthur\",19,Southampton,\"England Oglesby, IL\",,,B,male\r\n3rd,1,\"Dowdell, Miss Elizabeth\",30,Southampton,\"Union Hill, NJ\",,,13,female\r\n3rd,0,\"Doyle, Miss Elizabeth\",24,Queenstown,\"Ireland New York, NY\",,,,female\r\n3rd,1,\"Drapkin, Miss Jennie\",23,Southampton,\"London New York, NY\",,,,female\r\n3rd,0,\"Drazonovic, Mr Josef\",NA,Cherbourg,\"Austria Niagara Falls, NY\",,,,male\r\n3rd,1,\"Driscoll, Miss Bridget\",24,Queenstown,\"Ballydehob, Co Cork, Ireland New York, NY\",,,,female\r\n3rd,1,\"Duquemin, Mr Joseph\",24,Southampton,\"England Albion, NY\",,,D,male\r\n3rd,0,\"Dyker, Mr Adolf Fredrik\",23,Southampton,\"West Haven, CT\",,,,male\r\n3rd,1,\"Dyker, Mrs Adolf Fredrik (Anna Elizabeth Judith Andersson)\",22,Southampton,\"West Haven, CT\",,,,female\r\n3rd,0,\"Econovic, Mr Joso\",NA,Southampton,Austria-Hungary,,,,male\r\n3rd,0,\"Edvardsson, Mr Gustaf Hjalmar\",18,Southampton,\"Tofta, Sweden Joliet, IL\",,,,male\r\n3rd,0,\"Eklund, Mr Hans Linus\",16,Southampton,\"Karberg, Sweden Jerome Junction, AZ\",,,,male\r\n3rd,0,\"Ekstrom, Mr Johan\",45,Southampton,\"Effington Rut, SD\",,,,male\r\n3rd,0,\"Elias, Mr Elias\",NA,Cherbourg,Syria,,,,male\r\n3rd,0,\"Elias, Mr John\",NA,Cherbourg,Syria,,,,male\r\n3rd,0,\"Elias, Mr Joseph\",NA,Cherbourg,\"Syria Ottawa, ON\",,,,male\r\n3rd,0,\"Elsbury, Mr James\",47,Southampton,\"Illinois, USA\",,,,male\r\n3rd,1,\"Emanuel, Miss Virginia Ethel\",5,Southampton,\"New York, NY\",,,13,female\r\n3rd,0,\"Emmeth, Mr Thomas\",NA,Southampton,,,,,male\r\n3rd,0,\"Everett, Thomas James\",NA,Southampton,,,,,male\r\n3rd,0,\"Farrell, Mr James\",NA,Queenstown,\"Aughnacliff, Co Longford, Ireland New York, NY\",,,,male\r\n3rd,1,\"Finoli, Mr Luigi\",NA,Southampton,\"Italy Philadelphia, PA\",,,,male\r\n3rd,0,\"Fischer, Mr Eberhard Telander\",NA,Southampton,,,,,male\r\n3rd,0,\"Flynn, Mr James\",NA,Queenstown,,,,,male\r\n3rd,0,\"Flynn, Mr John\",NA,Queenstown,,,,,male\r\n3rd,0,\"Foley, Mr Joseph\",NA,Queenstown,\"Ireland Chicago, IL\",,,,male\r\n3rd,0,\"Foley, Mr William\",NA,Queenstown,Ireland,,,,male\r\n3rd,1,\"Foo, Mr Choong\",NA,Southampton,\"Hong Kong New York, NY\",,,,male\r\n3rd,0,\"Ford, Mr Arthur\",NA,Southampton,\"Bridgwater, Somerset, England\",,,,male\r\n3rd,0,\"Ford, Miss Doolina Margaret\",21,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,female\r\n3rd,0,\"Ford, Mr Edward Watson\",18,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,male\r\n3rd,0,\"Ford, Miss Maggie\",9,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,female\r\n3rd,0,\"Ford, Mrs Edward (Margaret Ann)\",48,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,female\r\n3rd,0,\"Ford, Mr Neil Watson\",16,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,male\r\n3rd,0,\"Fox, Mr Patrick\",NA,Queenstown,\"Ireland New York, NY\",,,,male\r\n3rd,0,\"Franklin, Mr Charles\",NA,Southampton,,,,,male\r\n3rd,0,\"Gallagher, Mr Martin\",25,Queenstown,\"New York, NY\",,,,male\r\n3rd,0,\"Garfirth, Mr John\",NA,Southampton,,,,,male\r\n3rd,1,\"Georges, Mrs Shahini Weappi\",NA,Cherbourg,\"Youngstown, OH\",,,,female\r\n3rd,0,\"Gilinski, Mr Leslie\",22,Southampton,,,,,male\r\n3rd,1,\"Gilnagh, Miss Katie\",16,Queenstown,\"Co Longford, Ireland New York, NY\",,,,female\r\n3rd,1,\"Glynn, Miss Mary Agatha\",NA,Queenstown,\"Co Clare, Ireland Washington, DC\",,,13,female\r\n3rd,0,\"Goldsmith, Mr Frank John\",33,Southampton,\"Strood, Kent, England Detroit, MI\",,,,male\r\n3rd,1,\"Goldsmith, Mrs Frank John (Emily A. Brown)\",NA,Southampton,\"Strood, Kent, England Detroit, MI\",,,C,female\r\n3rd,1,\"Goldsmith, Master Frank John William\",9,Southampton,\"Strood, Kent, England Detroit, MI\",,,C,male\r\n3rd,0,\"Goldsmith, Mr Nathan\",41,Southampton,\"Philadelphia, PA\",,,,male\r\n3rd,0,\"Goncalves, Mr Manuel Estanslas\",38,Southampton,Portugal,,,,male\r\n3rd,0,\"Goodwin, Mr Frederick\",40,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Mrs Frederick (Augusta)\",43,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,female\r\n3rd,0,\"Goodwin, Mr Charles E.\",14,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Miss Lillian A.\",16,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,female\r\n3rd,0,\"Goodwin, Master Harold V.\",9,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Miss Jessie A.\",10,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,female\r\n3rd,0,\"Goodwin, Master Sidney L.\",6,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Master William F.\",11,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Green, Mr George\",40,Southampton,\"Dorking, Surrey, England\",,,,male\r\n3rd,0,\"Gronnestad, Mr Daniel Danielsen\",32,Southampton,\"Foresvik, Norway Portland, ND\",,,,male\r\n3rd,0,\"Guest, Mr Robert\",NA,Southampton,,,,,male\r\n3rd,0,\"Gustafsson, Mr Alfred Ossian\",20,Southampton,\"Waukegan, Chicago, IL\",,,,male\r\n3rd,0,\"Gustafsson, Mr Anders Vilhelm\",37,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,male\r\n3rd,0,\"Gustafsson, Mr Johan Birger\",28,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,male\r\n3rd,0,\"Gustafsson, Mr Karl Gideon\",19,Southampton,\"Myren, Sweden New York, NY\",,,,male\r\n3rd,0,\"Haas, Miss Aloisia\",NA,,,,,,female\r\n3rd,0,\"Hagardon, Miss Kate\",NA,,,,,,female\r\n3rd,0,\"Hagland, Mr Ingvald Olsen\",NA,,,,,,male\r\n3rd,0,\"Hagland, Mr Konrad Mathias Reiersen\",NA,,,,,,male\r\n3rd,0,\"Hakkarainen, Mr Pekko Pietari\",NA,,,,,,male\r\n3rd,1,\"Hakkarainen, Mrs Pekko Pietari\",NA,,,,,,female\r\n3rd,0,\"Hampe, Mr Leon\",NA,,,,,,male\r\n3rd,0,\"Hansen, Mr Claus Peter\",NA,,,,,,male\r\n3rd,1,\"Hansen, Mrs Claus Peter\",NA,,,,,,female\r\n3rd,0,\"Hansen, Mr Henrik Juul\",NA,,,,,,male\r\n3rd,0,\"Hansen, Mr Henry Damsgaard\",NA,,,,,,male\r\n3rd,0,\"Harknett, Miss Alice\",NA,,,,,,female\r\n3rd,0,\"Harmer, Mr Abraham\",NA,,,,,,male\r\n3rd,0,\"Hart, Mr Henry\",NA,,,,,,male\r\n3rd,0,\"Hassan, Mr M. Houssein\",NA,,,,,,male\r\n3rd,0,\"Healy, Miss Nora\",NA,,,,,,female\r\n3rd,1,\"Hedman, Mr Oscar\",NA,,,,,,male\r\n3rd,0,\"Hee, Mr Ling\",NA,,,,,,male\r\n3rd,0,\"Hegarty, Miss Nora\",NA,,,,,,female\r\n3rd,1,\"Heikkinen, Miss Laina\",NA,,,,,,female\r\n3rd,0,\"Heininen, Miss Wendla Maria\",NA,,,,,,female\r\n3rd,1,\"Hellstrom, Hilda Maria\",NA,,,,,,female\r\n3rd,0,\"Hemming, Miss Nora\",NA,,,,,,female\r\n3rd,0,\"Hendekovic, Mr Ignaz\",NA,,,,,,male\r\n3rd,0,\"Henery, Delia\",NA,,,,,,female\r\n3rd,0,\"Henriksson, Jenny Lovisa\",NA,,,,,,female\r\n3rd,1,\"Hirvonen, Mrs Alexander\",NA,,,,,,female\r\n3rd,0,\"Hirvonen, Miss Hildur E.\",NA,,,,,,female\r\n3rd,0,\"Holm, Mr John Frederik Alexander\",NA,,,,,,male\r\n3rd,0,\"Holthen, Mr Johan Martin\",NA,,,,,,male\r\n3rd,1,\"Honkanen, Miss Eluna\",NA,,,,,,female\r\n3rd,0,\"Horgan, Mr John\",NA,,,,,,male\r\n3rd,1,\"Howard, Miss May\",NA,,,,,,female\r\n3rd,0,\"Humblin, Mr Adolf Mathias Nicolai Olsen\",NA,,,,,,male\r\n3rd,1,\"Hyman, Mr Abraham\",NA,,,,,,male\r\n3rd,0,\"Ilieff, Mr Ylio\",NA,,,,,,male\r\n3rd,0,\"Ilmakangas, Miss Ida Livija\",NA,,,,,,female\r\n3rd,0,\"Ilmakangas, Miss Pieta Sofia\",NA,,,,,,female\r\n3rd,0,\"Ivanoff, Mr Konio\",NA,,,,,,male\r\n3rd,1,\"Jansen, Mr Carl Olof\",NA,,,,,,male\r\n3rd,0,\"Jardin, Mr Jose Netto\",NA,,,,,,male\r\n3rd,1,\"Jensen, Miss Carla Christine\",NA,,,,,,female\r\n3rd,0,\"Jensen, Mr Hans Peder\",NA,,,,,,male\r\n3rd,0,\"Jensen, Mr Niels Peder\",NA,,,,,,male\r\n3rd,0,\"Jensen, Mr Svend Lauritz\",NA,,,,,,male\r\n3rd,1,\"Jermyn, Miss Annie\",NA,,,,,,female\r\n3rd,0,\"Johannesen-Bratthammer, Mr Bernt\",NA,,,,,,male\r\n3rd,0,\"Johanson, Mr Jakob Alfred\",NA,,,,,,male\r\n3rd,0,\"Johansson, Mr Erik\",NA,,,,,,male\r\n3rd,0,\"Johansson, Mr Gustaff Joel\",NA,,,,,,male\r\n3rd,1,\"Johansson, Mr Karl Johan\",NA,,,,,,male\r\n3rd,0,\"Johansson, Mr Nils\",NA,,,,,,male\r\n3rd,1,\"Johansson, Oscar L.\",NA,,,,,,male\r\n3rd,0,\"Johnson, Mr Alfred\",NA,,,,,,male\r\n3rd,1,\"Johnson, Miss Eleanor Ileen\",NA,,,,,,female\r\n3rd,0,\"Johnson, Mr Malkolm Joackim\",NA,,,,,,male\r\n3rd,1,\"Johnson, Master Harold Theodor\",NA,,,,,,male\r\n3rd,0,\"Johnson, Mrs Oscar W.\",NA,,,,,,female\r\n3rd,0,\"Johnson, Mr William Cahoone Jr.\",NA,,,,,,male\r\n3rd,0,\"Johnston, Mr Andrew G.\",NA,,,,,,male\r\n3rd,0,\"Johnston, Mrs Andrew G.\",NA,,,,,,female\r\n3rd,0,\"Johnston, Miss Catherine H.\",NA,,,,,,female\r\n3rd,0,\"Johnston, Master William A.\",NA,,,,,,male\r\n3rd,0,\"Jonkoff, Mr Lazor\",NA,,,,,,male\r\n3rd,1,\"Jonsson, Mr Carl\",NA,,,,,,male\r\n3rd,0,\"Jonsson, Nils Hilding\",NA,,,,,,male\r\n3rd,0,\"Jussila, Miss Aina Maria\",NA,,,,,,female\r\n3rd,1,\"Jussila, Mr Erik\",NA,,,,,,male\r\n3rd,0,\"Jussila, Miss Katriina\",NA,,,,,,female\r\n3rd,0,\"Kallio, Mr Nikolai Erland\",NA,,,,,,male\r\n3rd,0,\"Kalvig, Mr Johannes K. Halverson\",NA,,,,,,male\r\n3rd,0,\"Karajic, Mr Milan\",NA,,,,,,male\r\n3rd,1,\"Karlsson, Mr Einar Gervasius\",NA,,,,,,male\r\n3rd,0,\"Karlsson, Mr Julius Konrad Eugen\",NA,,,,,,male\r\n3rd,0,\"Karlsson, Mr Nils August\",NA,,,,,,male\r\n3rd,1,\"Karun, Miss Anna Mary\",NA,,,,,,female\r\n3rd,0,\"Karun, Mr Franz\",NA,,,,,,male\r\n3rd,0,\"Kassem, Mr Fared\",NA,,,,,,male\r\n3rd,0,\"Keane, Mr Andrew\",NA,,,,,,male\r\n3rd,0,\"Keefe, Mr Arthur\",NA,,,,,,male\r\n3rd,0,\"Kekic, Mr Tido\",NA,,,,,,male\r\n3rd,1,\"Kelly, Miss Anna Kate\",NA,,,,,,female\r\n3rd,0,\"Kelly, Mr James\",NA,,,,,,male\r\n3rd,0,\"Kelly, Mr James\",NA,,,,,,male\r\n3rd,1,\"Kelly, Miss Mary\",NA,,,,,,female\r\n3rd,0,\"Kennedy, Mr John\",NA,,,,,,male\r\n3rd,0,\"Khalil, Mr Betros\",NA,,,,,,male\r\n3rd,0,\"Khalil, Mrs Betros\",NA,,,,,,female\r\n3rd,0,\"Khalil, Mr Saad\",NA,,,,,,male\r\n3rd,0,\"Kiernan, Mr John\",NA,,,,,,male\r\n3rd,0,\"Kiernan, Mr Philip\",NA,,,,,,male\r\n3rd,0,\"Kilgannon, Mr Thomas\",NA,,,,,,male\r\n3rd,1,\"Kink, Mr Anton\",NA,,,,,,male\r\n3rd,0,\"Kink, Mrs Anton (Louise Heilmann)\",NA,,,,,,female\r\n3rd,1,\"Kink, Miss Louise Gretchen\",NA,,,,,,female\r\n3rd,0,\"Kink, Miss Maria\",NA,,,,,,female\r\n3rd,0,\"Kink, Mr Vincenz\",NA,,,,,,male\r\n3rd,0,\"Klasen, Miss Gertrud Emilia\",NA,,,,,,female\r\n3rd,0,\"Klasen, Mrs Hulda Kristina\",NA,,,,,,female\r\n3rd,0,\"Klasen, Mr Klas Albin\",NA,,,,,,male\r\n3rd,0,\"Kraeff, Mr Theodor\",NA,,,,,,male\r\n3rd,1,\"Krekorian, Mr Neshan\",NA,,,,,,male\r\n3rd,0,\"Lahowd, Mr Sarkis\",NA,,,,,,male\r\n3rd,0,\"Laitinen, Miss Kritina Sofia\",NA,,,,,,female\r\n3rd,0,\"Laleff, Mr Kristo\",NA,,,,,,male\r\n3rd,1,\"Lam, Mr Ali\",NA,,,,,,male\r\n3rd,0,\"Lam, Mr Len\",NA,,,,,,male\r\n3rd,1,\"Landegren, Miss Aurora Adelia\",NA,,,,,,female\r\n3rd,0,\"Lane, Mr Patrick\",NA,,,,,,male\r\n3rd,1,\"Lang, Mr Fang\",NA,,,,,,male\r\n3rd,0,\"Larsson, Mr August Viktor\",NA,,,,,,male\r\n3rd,0,\"Larsson, Mr Bengt Edvin\",NA,,,,,,male\r\n3rd,0,\"Larsson-Rondberg, Mr Edvard\",NA,,,,,,male\r\n3rd,1,\"Leeni, Mr Fahim\",NA,,,,,,male\r\n3rd,0,\"Lefebre, Mrs Frank\",NA,,,,,,female\r\n3rd,0,\"Lefebre, Master Henry\",NA,,,,,,male\r\n3rd,0,\"Lefebre, Miss Ida\",NA,,,,,,female\r\n3rd,0,\"Lefebre, Miss Jeannie\",NA,,,,,,female\r\n3rd,0,\"Lefebre, Miss Mathilde\",NA,,,,,,female\r\n3rd,0,\"Leinonen, Mr Antti Gustaf\",NA,,,,,,male\r\n3rd,0,\"Lemberopolous, Mr Peter L.\",NA,,,,,,male\r\n3rd,0,\"Lemom, Mr Denis\",NA,,,,,,male\r\n3rd,0,\"Lemon, Miss Mary\",NA,,,,,,female\r\n3rd,0,\"Leonard, Mr Lionel\",NA,,,,,,male\r\n3rd,0,\"Lester, Mr James\",NA,,,,,,male\r\n3rd,0,\"Lindahl, Miss Agda V.\",NA,,,,,,female\r\n3rd,0,\"Lindblom, Miss Augusta Charlotta\",NA,,,,,,female\r\n3rd,0,\"Lindell, Mr Edvard Bengtsson\",NA,,,,,,male\r\n3rd,0,\"Lindell, Mrs Edvard Bengtsson\",NA,,,,,,female\r\n3rd,1,\"Lindqvist, Eino William\",NA,,,,,,male\r\n3rd,0,\"Linehan, Mr Michael\",NA,,,,,,male\r\n3rd,0,\"Ling, Mr Lee\",NA,,,,,,male\r\n3rd,0,\"Lithman, Mr Simon\",NA,,,,,,male\r\n3rd,0,\"Lobb, Mr William Arthur\",NA,,,,,,male\r\n3rd,0,\"Lobb, Mrs William Arthur\",NA,,,,,,female\r\n3rd,0,\"Lockyer, Mr Edward\",NA,,,,,,male\r\n3rd,0,\"Lovell, Mr John\",NA,,,,,,male\r\n3rd,1,\"Lulich, Mr Nicola\",NA,,,,,,male\r\n3rd,0,\"Lundahl, Mr Johan\",NA,,,,,,male\r\n3rd,1,\"Lundin, Miss Olga Elida\",NA,,,,,,female\r\n3rd,0,\"Lundstrom, Mr Thure Edvin\",NA,,,,,,male\r\n3rd,0,\"Lyntakoff, Mr Stanko\",NA,,,,,,male\r\n3rd,0,\"MacKay, Mr George William\",NA,,,,,,male\r\n3rd,1,\"Madigan, Miss Margaret\",NA,,,,,,female\r\n3rd,0,\"Madsen, Mr Frithiof\",NA,,,,,,male\r\n3rd,0,\"Maenpaa, Mr Matti Alexanteri\",NA,,,,,,male\r\n3rd,0,\"Mahon, Miss Delia\",NA,,,,,,female\r\n3rd,0,\"Maisner, Mr Simon\",NA,,,,,,male\r\n3rd,0,\"Makinen, Mr Kalle Edvard\",NA,,,,,,male\r\n3rd,1,\"Mamee, Mr Hanna\",NA,,,,,,male\r\n3rd,0,\"Mangan, Miss Mary\",NA,,,,,,female\r\n3rd,1,\"Mannion, Miss Margareth\",NA,,,,,,female\r\n3rd,0,\"Mansour, Mr Hanna\",NA,,,,,,male\r\n3rd,0,\"Mardirosian, Mr Sarkis\",NA,,,,,,male\r\n3rd,0,\"Marinko, Mr Dmitri\",NA,,,,,,male\r\n3rd,0,\"Markim, Mr Johann\",NA,,,,,,male\r\n3rd,0,\"Markoff, Mr Marin\",NA,,,,,,male\r\n3rd,1,\"Masselmany, Mrs Fatima\",NA,,,,,,female\r\n3rd,0,\"Matinoff, Mr Nicola\",NA,,,,,,male\r\n3rd,1,\"McCarthy, Miss Katie\",NA,,,,,,female\r\n3rd,0,\"McCormack, Mr Thomas J.\",NA,,,,,,male\r\n3rd,0,\"McCoy, Miss Agnes\",NA,,,,,,female\r\n3rd,0,\"McCoy, Miss Alice\",NA,,,,,,female\r\n3rd,0,\"McCoy, Mr Bernard\",NA,,,,,,male\r\n3rd,0,\"McDermott, Miss Delia\",NA,,,,,,female\r\n3rd,0,\"McElroy, Mr Michael\",NA,,,,,,male\r\n3rd,1,\"McGovern, Mrs Hugh\",NA,,,,,,female\r\n3rd,0,\"McGowan, Miss Anna\",NA,,,,,,female\r\n3rd,0,\"McGowan, Miss Katherine\",NA,,,,,,female\r\n3rd,0,\"McMahon, Mr Martin\",NA,,,,,,male\r\n3rd,0,\"McNamee, Mr Neal\",NA,,,,,,male\r\n3rd,0,\"McNamee, Mrs Neal\",NA,,,,,,female\r\n3rd,0,\"Meanwell, Miss Marion Ogden\",NA,,,,,,female\r\n3rd,0,\"Mechen, Mr John\",NA,,,,,,male\r\n3rd,0,\"Meek, Mrs Thomas\",NA,,,,,,female\r\n3rd,0,\"Melkebuk, Mrs Philemon\",NA,,,,,,female\r\n3rd,0,\"Meo, Mr Alfonso\",NA,,,,,,male\r\n3rd,1,\"Midtsjo, Mr Karl Albert\",NA,,,,,,male\r\n3rd,0,\"Mihoff, Mr Stoytcho\",NA,,,,,,male\r\n3rd,0,\"Miles, Mr Frank\",NA,,,,,,male\r\n3rd,0,\"Mineff, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Minkoff, Mr Lazar\",NA,,,,,,male\r\n3rd,0,\"Mirko, Mr Dika\",NA,,,,,,male\r\n3rd,0,\"Mitkoff, Mr Mito\",NA,,,,,,male\r\n3rd,1,\"Mocklare, Miss Helen Mary\",NA,,,,,,female\r\n3rd,0,\"Moen, Mr Sigurd H.\",NA,,,,,,male\r\n3rd,1,\"Moor, Mrs Beila\",NA,,,,,,female\r\n3rd,0,\"Moor, Master Meier\",NA,,,,,,male\r\n3rd,0,\"Moore, Mr Leonard Charles\",NA,,,,,,male\r\n3rd,1,\"Moran, Miss Bertha\",NA,,,,,,female\r\n3rd,0,\"Moran, Mr Daniel J.\",NA,,,,,,male\r\n3rd,0,\"Moran, Mr James\",NA,,,,,,male\r\n3rd,0,\"Morley, Mr Henry Samuel\",NA,,,,,,male\r\n3rd,0,\"Morrow, Mr Thomas Rowan\",NA,,,,,,male\r\n3rd,1,\"Moubarek (Borak), Mr Hanna (John)\",NA,,,,,,male\r\n3rd,0,\"Moubarek, Mrs George\",NA,,,,,,female\r\n3rd,0,\"Moubarek, Master George\",NA,,,,,,male\r\n3rd,0,\"Moubarek, Master William George\",NA,,,,,,male\r\n3rd,0,\"Moss, Albert Johan\",NA,,,,,,male\r\n3rd,0,\"Moussa, Mrs Mantoura Baloics\",NA,,,,,,female\r\n3rd,0,\"Moutal, Mr Rahamin\",NA,,,,,,male\r\n3rd,1,\"Mullins, Miss Katie\",NA,,,,,,female\r\n3rd,0,\"Mulvihill, Miss Bertha E.\",NA,,,,,,female\r\n3rd,0,\"Murdlin, Mr Joseph\",NA,,,,,,male\r\n3rd,0,\"Murphy, Miss Katherine\",NA,,,,,,female\r\n3rd,0,\"Murphy, Miss Margaret\",NA,,,,,,female\r\n3rd,0,\"Murphy, Miss Nora\",NA,,,,,,female\r\n3rd,0,\"Myhrman, Mr Pehr Fabian Oliver Malkolm\",NA,,,,,,male\r\n3rd,1,\"Nackid, Miss Maria\",NA,,,,,,female\r\n3rd,0,\"Nackid, Mr Said\",NA,,,,,,male\r\n3rd,0,\"Nackid, Mrs Said\",NA,,,,,,female\r\n3rd,0,\"Nahill, Mr Toufik\",NA,,,,,,male\r\n3rd,0,\"Naidenoff, Mr Penko\",NA,,,,,,male\r\n3rd,0,\"Nancarrow, W. H.\",NA,,,,,,male\r\n3rd,0,\"Niklasen, Sander\",NA,,,,,,male\r\n3rd,0,\"Nosworthy, Richard C.\",NA,,,,,,male\r\n3rd,1,\"Najib, Miss Adele Kiamie\",NA,,,,,,female\r\n3rd,0,\"Nancarrow, Mr William Henry\",NA,,,,,,male\r\n3rd,0,\"Nankoff, Mr Minko\",NA,,,,,,male\r\n3rd,0,\"Nasr, Mr Mustafa\",NA,,,,,,male\r\n3rd,0,\"Nassr, Mr Saade Jean\",NA,,,,,,male\r\n3rd,0,\"Naughton, Miss Hannah\",NA,,,,,,female\r\n3rd,0,\"Nemaugh, Mr Robert\",NA,,,,,,male\r\n3rd,0,\"Nenkoff, Mr Christo\",NA,,,,,,male\r\n3rd,1,\"Nicola-Yarred, Miss Jamila\",NA,,,,,,female\r\n3rd,0,\"Nicola-Yarred, Master Elias\",NA,,,,,,male\r\n3rd,0,\"Nieminen, Miss Manta Josefina\",NA,,,,,,female\r\n3rd,0,\"Niklasson, Mr Samuel\",NA,,,,,,male\r\n3rd,0,\"Nilsson, Mr August Ferdinand\",NA,,,,,,male\r\n3rd,1,\"Nilsson, Miss Berta Olivia\",NA,,,,,,female\r\n3rd,0,\"Nilsson, Miss Helmina Josefina\",NA,,,,,,female\r\n3rd,0,\"Niskanen, Mr Johan\",NA,,,,,,male\r\n3rd,0,\"Nosworthy, Mr Richard Cater\",NA,,,,,,male\r\n3rd,1,\"Novel, Mansouer\",NA,,,,,,male\r\n3rd,0,\"Nysten, Miss Anna\",NA,,,,,,female\r\n3rd,0,\"Nysveen, Mr Johan H.\",NA,,,,,,male\r\n3rd,0,\"O'Brien, Mr Denis\",NA,,,,,,male\r\n3rd,0,\"O'Brien, Mr Thomas\",NA,,,,,,male\r\n3rd,1,\"O'Brien, Mrs Thomas\",NA,,,,,,female\r\n3rd,0,\"O'Connell, Mr Patrick D.\",NA,,,,,,male\r\n3rd,0,\"O'Connor, Mr Maurice\",NA,,,,,,male\r\n3rd,0,\"O'Connor, Mr Patrick\",NA,,,,,,male\r\n3rd,1,\"Odahl, Mr Nils Martin\",NA,,,,,,male\r\n3rd,0,\"O'Dwyer, Miss Nellie\",NA,,,,,,female\r\n3rd,0,\"Ohman, Miss Velin\",NA,,,,,,female\r\n3rd,0,\"O'Keefe, Mr Patrick\",NA,,,,,,male\r\n3rd,0,\"OLeary, Miss Norah\",NA,,,,,,female\r\n3rd,0,\"Olsen, Master Arthur\",NA,,,,,,male\r\n3rd,0,\"Olsen, Mr Charlie (Carl)\",NA,,,,,,male\r\n3rd,0,\"Olsen, Mr Henry Margido\",NA,,,,,,male\r\n3rd,0,\"Olsen, Mr Ole M.\",NA,,,,,,male\r\n3rd,0,\"Olsson, Miss Elida\",NA,,,,,,female\r\n3rd,0,\"Olsson, Mr Nils Johan\",NA,,,,,,male\r\n3rd,1,\"Olsson, Mr Oscar Johansson\",NA,,,,,,male\r\n3rd,0,\"O'Neill, Miss Bridget\",NA,,,,,,female\r\n3rd,0,\"Oreskovic, Mr Jeko\",NA,,,,,,male\r\n3rd,0,\"Oreskovic, Mr Luka\",NA,,,,,,male\r\n3rd,0,\"Oreskovic, Mr Maria\",NA,,,,,,male\r\n3rd,0,\"Osen, Mr Olof Elon\",NA,,,,,,male\r\n3rd,1,\"Osman, Miss Maria\",NA,,,,,,female\r\n3rd,0,\"O'Sullivan, Miss Bridget\",NA,,,,,,female\r\n3rd,0,\"Panula, Mr Ernesti Arvid\",NA,,,,,,male\r\n3rd,0,\"Panula, Mr Jaako Arnold\",NA,,,,,,male\r\n3rd,0,\"Panula, Master Juha Niilo\",NA,,,,,,male\r\n3rd,0,\"Panula, Mrs John\",NA,,,,,,female\r\n3rd,0,\"Panula, Master Urho Abraham\",NA,,,,,,male\r\n3rd,0,\"Panula, Master William\",NA,,,,,,male\r\n3rd,0,\"Pasic, Mr Jakob\",NA,,,,,,male\r\n3rd,0,\"Paulner, Mr Uscher\",NA,,,,,,male\r\n3rd,0,\"Paulsson, Master Gosta Leonard\",NA,,,,,,male\r\n3rd,0,\"Paulsson, Mrs Nils\",NA,,,,,,female\r\n3rd,0,\"Paulsson, Master Paul Folke\",NA,,,,,,male\r\n3rd,0,\"Paulsson, Miss Stina Viola\",NA,,,,,,female\r\n3rd,0,\"Paulsson, Miss Torborg Danira\",NA,,,,,,female\r\n3rd,0,\"Pavlovic, Mr Stefo\",NA,,,,,,male\r\n3rd,0,\"Peacock, Master Alfred Edward\",NA,,,,,,male\r\n3rd,0,\"Peacock, Mrs Benjamin\",NA,,,,,,female\r\n3rd,0,\"Peacock, Miss Treasteall\",NA,,,,,,female\r\n3rd,0,\"Pearce, Mr Ernest\",NA,,,,,,male\r\n3rd,0,\"Pecruic, Mr Mate\",NA,,,,,,male\r\n3rd,0,\"Pecruic, Mr Tome\",NA,,,,,,male\r\n3rd,0,\"Pedersen, Mr Olaf\",NA,,,,,,male\r\n3rd,0,\"Peduzzi, Mr Joseph\",NA,,,,,,male\r\n3rd,1,\"Pekoniemi, Mr Edvard\",NA,,,,,,male\r\n3rd,0,\"Peltomaki, Nikolai Johannes\",NA,,,,,,male\r\n3rd,0,\"Perkin, Mr John Henry\",NA,,,,,,male\r\n3rd,1,\"Persson, Mr Ernst Ulrik\",NA,,,,,,male\r\n3rd,0,\"Peter (Joseph), Miss Mary\",NA,,,,,,female\r\n3rd,0,\"Peter (Joseph), Mrs Catherine\",NA,,,,,,female\r\n3rd,0,\"Peter (Joseph), Master Michael J.\",NA,,,,,,male\r\n3rd,0,\"Peters, Miss Katie\",NA,,,,,,female\r\n3rd,0,\"Petersen, Mr Marius\",NA,,,,,,male\r\n3rd,0,\"Petranec, Miss Matilda\",NA,,,,,,female\r\n3rd,0,\"Petroff, Mr Nedeca\",NA,,,,,,male\r\n3rd,0,\"Petroff, Mr Pentcho\",NA,,,,,,male\r\n3rd,0,\"Pettersson, Miss Ellen Natalia\",NA,,,,,,female\r\n3rd,0,\"Peterson, Mr Johan Emil\",NA,,,,,,male\r\n3rd,1,\"Pickard (Trembisky), Mr Berk\",NA,,,,,,male\r\n3rd,0,\"Plotcharsky, Mr Vasil\",NA,,,,,,male\r\n3rd,0,\"Potchett, Mr George\",NA,,,,,,male\r\n3rd,0,\"Radeff, Mr Alexander\",NA,,,,,,male\r\n3rd,0,\"Raibid, Mr Razi\",NA,,,,,,male\r\n3rd,0,\"Reed, Mr James George\",NA,,,,,,male\r\n3rd,0,\"Reynolds, Mr Harold\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Albert\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Arthur\",NA,,,,,,male\r\n3rd,0,\"Rice, Master George\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Eric\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Eugene\",NA,,,,,,male\r\n3rd,0,\"Rice, Mrs William\",NA,,,,,,female\r\n3rd,0,\"Riihiivouri, Miss Sanni\",NA,,,,,,female\r\n3rd,0,\"Rintamaki, Mr Matti\",NA,,,,,,male\r\n3rd,1,\"Riordan, Miss Hannah\",NA,,,,,,female\r\n3rd,0,\"Risien, Mr Samuel\",NA,,,,,,male\r\n3rd,0,\"Risien, Mrs Samuel\",NA,,,,,,female\r\n3rd,0,\"Robins, Mr Alexander A.\",NA,,,,,,male\r\n3rd,0,\"Robins, Mrs Alexander A.\",NA,,,,,,female\r\n3rd,0,\"Rommetvedt, Mr Karl Kristian Knut\",NA,,,,,,male\r\n3rd,0,\"Rogers, Mr William John\",NA,,,,,,male\r\n3rd,0,\"Rosblom, Mrs Viktor\",NA,,,,,,female\r\n3rd,0,\"Rosblom, Miss Salli Helena\",NA,,,,,,female\r\n3rd,0,\"Rosblom, Mr Viktor Rickard\",NA,,,,,,male\r\n3rd,1,\"Roth, Miss Sarah\",NA,,,,,,female\r\n3rd,0,\"Rouse, Mr Richard Henry\",NA,,,,,,male\r\n3rd,0,\"Rush, Mr Alfred George John\",NA,,,,,,male\r\n3rd,1,\"Ryan, Mr Edward Ryan\",NA,,,,,,male\r\n3rd,0,\"Ryan, Mr Patrick\",NA,,,,,,male\r\n3rd,0,\"Saad, Mr Amin\",NA,,,,,,male\r\n3rd,1,\"Saad, Khalil\",NA,,,,,,male\r\n3rd,0,\"Sadlier, Mr Matthew\",NA,,,,,,male\r\n3rd,0,\"Sadowitz, Mr Harry\",NA,,,,,,male\r\n3rd,0,\"Sage, Miss Ada\",NA,,,,,,female\r\n3rd,0,\"Sage, Miss Constance\",NA,,,,,,female\r\n3rd,0,\"Sage, Miss Dorothy\",NA,,,,,,female\r\n3rd,0,\"Sage, Mr Douglas\",NA,,,,,,male\r\n3rd,0,\"Sage, Mr Frederick\",NA,,,,,,male\r\n3rd,0,\"Sage, Mr George\",NA,,,,,,male\r\n3rd,0,\"Sage, Mr John\",NA,,,,,,male\r\n3rd,0,\"Sage, Mrs John\",NA,,,,,,female\r\n3rd,0,\"Sage, Miss Stella\",NA,,,,,,female\r\n3rd,0,\"Sage, Thomas (child)\",NA,,,,,,male\r\n3rd,0,\"Sage, Master William\",NA,,,,,,male\r\n3rd,0,\"Salander, Mr Karl Johan\",NA,,,,,,male\r\n3rd,1,\"Salkjelsvik, Miss Anna\",NA,,,,,,female\r\n3rd,0,\"Salonen, Mr Johan Werner\",NA,,,,,,male\r\n3rd,0,\"Samaan, Mr Elias\",NA,,,,,,male\r\n3rd,0,\"Samaan, Mr Hanna\",NA,,,,,,male\r\n3rd,0,\"Samaan, Mr Youssef\",NA,,,,,,male\r\n3rd,1,\"Sandstrom, Miss Hjalmar\",NA,,,,,,female\r\n3rd,0,\"Sandstrom, Miss Beatrice Irene\",NA,,,,,,female\r\n3rd,0,\"Sandstrom, Miss Marguerite Rut\",NA,,,,,,female\r\n3rd,0,\"Sather, Simon Sivertsen\",NA,,,,,,male\r\n3rd,0,\"Saundercock, William Henry\",NA,,,,,,male\r\n3rd,0,\"Sawyer, Mr Frederick\",NA,,,,,,male\r\n3rd,0,\"Scanlan, Mr James\",NA,,,,,,male\r\n3rd,0,\"Sdycoff, Mr Todor\",NA,,,,,,male\r\n3rd,0,Seman Master Betros,NA,,,,,,male\r\n3rd,0,\"Serota, Mr Maurice\",NA,,,,,,male\r\n3rd,0,\"Shaughnesay, Mr Patrick\",NA,,,,,,male\r\n3rd,0,\"Shedid (Sitik), Mr Daher (Docart)\",NA,,,,,,male\r\n3rd,1,\"Sheerlinck, Mr Jean\",NA,,,,,,male\r\n3rd,0,\"Shellard, Mr Frederick B.\",NA,,,,,,male\r\n3rd,1,\"Shine, Miss Ellen\",NA,,,,,,female\r\n3rd,0,\"Shorney, Mr Charles\",NA,,,,,,male\r\n3rd,0,\"Simmons, Mr John\",NA,,,,,,male\r\n3rd,0,\"Sirayanian, Mr Arsun\",NA,,,,,,male\r\n3rd,0,\"Sivic, Mr Husen\",NA,,,,,,male\r\n3rd,0,\"Sivola, Mr Antti\",NA,,,,,,male\r\n3rd,1,\"Sjoblom, Miss Anna Sofia\",NA,,,,,,female\r\n3rd,0,\"Sholt, Mr Peter Andreas Lauritz Andersen\",NA,,,,,,male\r\n3rd,0,\"Skinner, Mr Henry John\",NA,,,,,,male\r\n3rd,0,\"Skoog, Master Harald\",NA,,,,,,male\r\n3rd,0,\"Skoog, Master Karl\",NA,,,,,,male\r\n3rd,0,\"Skoog, Miss Mabel\",NA,,,,,,female\r\n3rd,0,\"Skoog, Miss Margit\",NA,,,,,,female\r\n3rd,0,\"Skoog, Mr William\",NA,,,,,,male\r\n3rd,0,\"Skoog, Mrs William\",NA,,,,,,female\r\n3rd,0,\"Slabenoff, Mr Petco\",NA,,,,,,male\r\n3rd,0,\"Slocovski, Mr Selman\",NA,,,,,,male\r\n3rd,0,\"Smiljanovic, Mr Mile\",NA,,,,,,male\r\n3rd,1,\"Smyth, Miss Julia\",NA,,,,,,female\r\n3rd,0,\"Solvang, Mrs Lena Jacobsen\",NA,,,,,,female\r\n3rd,0,\"Somerton, Mr Francis William\",NA,,,,,,male\r\n3rd,1,\"Sop, Mr Jules\",NA,,,,,,male\r\n3rd,0,\"Spector, Mr Woolf\",NA,,,,,,male\r\n3rd,0,\"Staneff, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Stankovic, Mr Jovan\",NA,,,,,,male\r\n3rd,1,\"Stanley, Miss Amy Zilla Elsie\",NA,,,,,,female\r\n3rd,0,\"Stanley, Mr Edward Roland\",NA,,,,,,male\r\n3rd,0,\"Storey, Mr Thomas\",NA,,,,,,male\r\n3rd,0,\"Stoyehoff, Mr Ilia\",NA,,,,,,male\r\n3rd,0,\"Strandberg, Miss Ida Sofia\",NA,,,,,,female\r\n3rd,1,\"Stranden, Mr Juho\",NA,,,,,,male\r\n3rd,0,\"Strilic, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Strom, Mrs Wilhelm\",NA,,,,,,female\r\n3rd,0,\"Strom, Miss Telma (Selma) Matilda\",NA,,,,,,female\r\n3rd,1,\"Sunderland, Mr Victor Francis\",NA,,,,,,male\r\n3rd,0,\"Sundman, Mr Johan Julian\",NA,,,,,,male\r\n3rd,0,\"Sutehall, Mr Henry, Jr\",NA,,,,,,male\r\n3rd,0,\"Svensson, Mr Johan\",NA,,,,,,male\r\n3rd,1,\"Svensson, Mr Johan Cervin\",NA,,,,,,male\r\n3rd,0,\"Svensson, Mr Olof\",NA,,,,,,male\r\n3rd,0,\"Tannous, Mr Thomas\",NA,,,,,,male\r\n3rd,1,\"Tenglin, Mr Gunnar Isidor\",NA,,,,,,male\r\n3rd,0,\"Theobald, Mr Thomas Leonard\",NA,,,,,,male\r\n3rd,1,\"Thomas, Mrs Alexander\",NA,,,,,,female\r\n3rd,0,\"Thomas, Master Assad Alexander\",NA,,,,,,male\r\n3rd,0,\"Thomas, Mr Charles\",NA,,,,,,male\r\n3rd,0,\"Thomas, Mr John, Jr\",NA,,,,,,male\r\n3rd,0,\"Thomas, Mr John (? 1st/2nd class)\",NA,,,,,,male\r\n3rd,0,\"Thomson, Mr Alexander\",NA,,,,,,male\r\n3rd,0,\"Thorneycroft, Mr Percival\",NA,,,,,,male\r\n3rd,1,\"Thorneycroft, Mrs Percival\",NA,,,,,,female\r\n3rd,0,\"Tikkanen, Mr Juho\",NA,,,,,,male\r\n3rd,0,\"Tobin, Mr Roger\",NA,,,,,,male\r\n3rd,0,\"Todoroff, Mr Lalio\",NA,,,,,,male\r\n3rd,0,\"Toerber, Mr Ernest William\",NA,,,,,,male\r\n3rd,0,\"Tomlin, Mr Ernest Portage\",NA,,,,,,male\r\n3rd,0,\"Torfa, Mr Assad\",NA,,,,,,male\r\n3rd,1,\"Tornquist, Mr William Henry\",NA,,,,,,male\r\n3rd,0,\"Touma (Thomas), Mrs Darwin\",NA,,,,,,female\r\n3rd,0,\"Touma (Thomas), Master George\",NA,,,,,,male\r\n3rd,0,\"Touma (Thomas), Miss Hannah\",NA,,,,,,female\r\n3rd,0,\"Turcin, Mr Stefan\",NA,,,,,,male\r\n3rd,1,\"Turja, Miss Anna Sofia\",NA,,,,,,female\r\n3rd,0,\"Turkula, Mrs Hedvig\",NA,,,,,,female\r\n3rd,0,\"Uzelas, Mr Joso\",NA,,,,,,male\r\n3rd,0,\"Van Billiard, Mr Austin Blyler\",NA,,,,,,male\r\n3rd,0,\"Van Billiard, Master James William\",NA,,,,,,male\r\n3rd,0,\"Van Billiard, Master Walter John\",NA,,,,,,male\r\n3rd,0,\"Van der Planke, Miss Augusta\",NA,,,,,,female\r\n3rd,0,\"Van der Planke, Mr Jules\",NA,,,,,,male\r\n3rd,0,\"Van der Planke, Mrs Jules\",NA,,,,,,female\r\n3rd,0,\"Van der Planke, Mr Leon\",NA,,,,,,male\r\n3rd,0,\"Van der Steen, Mr Leo Peter\",NA,,,,,,male\r\n3rd,0,\"Van de Velde, Mr John Joseph\",NA,,,,,,male\r\n3rd,0,\"Vandewalle, Mr Nestor Cyriel\",NA,,,,,,male\r\n3rd,0,\"Van Impe, Miss Catharine\",NA,,,,,,female\r\n3rd,0,\"Van Impe, Mr Jean Baptiste\",NA,,,,,,male\r\n3rd,0,\"Van Impe, Mrs Jean Baptiste\",NA,,,,,,female\r\n3rd,1,\"Vartunian, Mr David\",NA,,,,,,male\r\n3rd,0,\"Vassilios, Mr Catavelas\",NA,,,,,,male\r\n3rd,0,\"Vendel, Mr Olof Wdvin\",NA,,,,,,male\r\n3rd,0,\"Vereruysse, Mr Victor\",NA,,,,,,male\r\n3rd,0,\"Vestrom, Miss Hulda Amanda Adolfina\",NA,,,,,,female\r\n3rd,0,\"Vonk, Mr Jenko\",NA,,,,,,male\r\n3rd,0,\"Ware, Mr Frederick\",NA,,,,,,male\r\n3rd,0,\"Warren, Mr Charles William\",NA,,,,,,male\r\n3rd,0,\"Wazli, Mr Yousif\",NA,,,,,,male\r\n3rd,0,\"Webber, Mr James\",NA,,,,,,male\r\n3rd,1,\"Wennerstrom, Mr August Edvard\",NA,,,,,,male\r\n3rd,0,\"Wenzel, Mr Linhart\",NA,,,,,,male\r\n3rd,0,\"Widegren, Mr Charles Peter\",NA,,,,,,male\r\n3rd,0,\"Wiklund, Mr Jacob Alfred\",NA,,,,,,male\r\n3rd,1,\"Wilkes, Mrs Ellen\",NA,,,,,,female\r\n3rd,0,\"Willer, Mr Aaron\",NA,,,,,,male\r\n3rd,0,\"Willey, Mr Edward\",NA,,,,,,male\r\n3rd,0,\"Williams, Mr Howard Hugh\",NA,,,,,,male\r\n3rd,0,\"Williams, Mr Leslie\",NA,,,,,,male\r\n3rd,0,\"Windelov, Mr Einar\",NA,,,,,,male\r\n3rd,0,\"Wirz, Mr Albert\",NA,,,,,,male\r\n3rd,0,\"Wiseman, Mr Phillippe\",NA,,,,,,male\r\n3rd,0,\"Wittevrongel, Mr Camiel\",NA,,,,,,male\r\n3rd,1,\"Yalsevac, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Yasbeck, Mr Antoni\",NA,,,,,,male\r\n3rd,1,\"Yasbeck, Mrs Antoni\",NA,,,,,,female\r\n3rd,0,\"Youssef, Mr Gerios\",NA,,,,,,male\r\n3rd,0,\"Zabour, Miss Hileni\",NA,,,,,,female\r\n3rd,0,\"Zabour, Miss Tamini\",NA,,,,,,female\r\n3rd,0,\"Zakarian, Mr Artun\",NA,,,,,,male\r\n3rd,0,\"Zakarian, Mr Maprieder\",NA,,,,,,male\r\n3rd,0,\"Zenn, Mr Philip\",NA,,,,,,male\r\n3rd,0,\"Zievens, Rene\",NA,,,,,,female\r\n3rd,0,\"Zimmerman, Leo\",NA,,,,,,male"
  },
  {
    "path": "week-1/week-1-homework.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Lede Algorithms -- Assignment 1\\n\",\n    \"\\n\",\n    \"In this assignment you will use a little algebra to figure out how to take the average of averages.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"First, read in the titanic.csv data set.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Compute the average survival rate (mean of the `survived` column)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now compute the average survival rates of the male and female 1st, 2nd, and 3rd class passengers (six groups in total)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Compute the average of these six averages. Is it the same as the the overall average?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"How would you compute the overall average from the average of averages? Start with the formulas\\n\",\n    \"\\n\",\n    \"$$mean = \\\\frac{\\\\sum_{i=1}^N x_i}{N}$$\\n\",\n    \"\\n\",\n    \"for the overall mean, where $x_i$ is data value $i$ and $N$ is the total number of values, and\\n\",\n    \"\\n\",\n    \"$$mean_k = \\\\frac{\\\\sum_{i=1}^{N_k} xk_i}{N_k}$$\\n\",\n    \"\\n\",\n    \"is the mean of group $k$, where $xk_i$ is value $i$ of group $k$ and $N_k$ is the number of values in group $k$. You may also wish to use this formula which relates the sum of all points to the sum of the groups:\\n\",\n    \"\\n\",\n    \"$$\\\\sum_{k=1}^M ( \\\\sum_{i=1}^{N_k} xk_i ) = \\\\sum_{i=1}^N x_i$$\\n\",\n    \"\\n\",\n    \"Your task is to derive a formula that computes $mean$ using only $mean_k$, the $N_k$, $M$, and $N$. Note: this question is not asking you to write code! Rather, you must answer two questions:\\n\",\n    \"\\n\",\n    \"- What is the correct formula?\\n\",\n    \"- How can we derive this formula starting from the formulas above?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"(your answer here)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now use this formula to calculate the overall mean. Does it match?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-2/menendez-press-releases.csv",
    "content": "url,text\nhttp://menendez.senate.gov/newsroom/press/release/?id=a5d48e78-bddf-490b-92d6-e8b06271efae,\"Menendez Statement on Black History Month\n                    \n                            Senator honors contributions of African-Americans both past and present\n                    \n                      February 3, 2012\n                     WASHINGTON –  Today, on the 142nd anniversary of the ratification of the 15th Amendment which guaranteed that the right to vote could not be denied based on race, and in celebration of the beginning of Black History Month, U.S. Senator Robert Menendez (D-NJ) released the following statement:\n\n“During Black History Month, we celebrate and recognize the enormous contributions of African-Americans in New Jersey and the nation as a whole.  Throughout our Nation’s history African American men and women have enriched our society through education, business, medicine, religion, the military, science and technology and in many walks of life.  These men and women have been pioneers for social and political change, freedom fighters, leaders, and a fundamental part of the fabric of our nation.  The greatness of our Nation is rooted in its diversity and the contributions of all its citizens.”  \n\nOn February 26, Senator Menendez will host The Second Annual Standing on the Shoulders of Giants Program, where the Senator will pay tribute to the rich history of African Americans during Black History Month. The event will honor the outstanding contributions of the100 Black Men of New Jersey, Inc. , the National Coalition of 100 Black Women, Bergen/Passaic Chapter and the National Coalition of 100 Black Women, Southern New Jersey.  The event will be held on Sunday, February 26, 2012 at 5:00 p.m. at the First Baptist Church of Lincoln Gardens, 771 Somerset Street, Somerset, NJ, where the Rev. Dr. DeForest “Buster” Soaries is the senior pastor.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d016f5c6-481a-42d7-8e68-91cb8a1af93c,\"Menendez Praises Susan G. Komen For Reversing Decision and Taking Politics Out of Fight Against Breast Cancer\n                    \n                      February 3, 2012\n                     WASHINGTON -- U.S. Senator Robert Menendez (D-NJ) today praised the decision by the Susan G. Komen for the Cure Foundation to apologize and restore funding for Planned Parenthood health services:\n\n “As someone who has supported the work of both Planned Parenthood and the Susan G. Komen for the Cure Foundation, I am relieved that the Komen Foundation has apologized, reversed its unfortunate decision and will continue to be a strong advocate for women’s health care.  Getting a breast cancer screening is not a political issue, it is an issue, literally, of life and death, and I am pleased the foundation put politics aside and can now refocus on its undeniable core mission:  saving women’s lives. \n “These two organizations -- when partnered together -- can reach and protect more women. The Komen foundation’s funding, including a $20,000 grant to Planned Parenthood of Greater Northern New Jersey, helps women gain access to life-saving breast cancer screenings. And Planned Parenthood helps the Komen Foundation reach the most vulnerable in our communities – low-income women, African-American women and Latinas, who in many instances have only Planned Parenthood to turn to as their source of health care. I’m pleased both organizations will continue working together to have the largest reach and make the biggest impact possible for women’s health in New Jersey and across the country.\n “I am proud to stand with the millions of women whose lives have been saved because they were able to get timely breast cancer screenings. The far right has been exposed – and rejected -- in this mean-spirited attempt to deny women a life saving procedure in order to advance its political agenda.”\n\nSenator Menendez joined 25 Senate colleagues yesterday in a letter to the Komen Foundation, expressing disappointment in their decision to stop funding breast cancer prevention, screening and education at Planned Parenthood health clinics.  Text of the letter below:\n Dear Ambassador Brinker,\n We write to express our disappointment with Susan G. Komen for the Cure’s decision to cut funding for breast cancer prevention, screening, and education at Planned Parenthood health centers.  This troubling decision threatens to reduce access to necessary, life saving services.  We urge Komen to reconsider its decision.\n             Planned Parenthood is a trusted provider of health care for women and men.  More than 90 percent of the services provided by Planned Parenthood are primary and preventative including wellness exams and cancers screenings that save lives.  Each year, Planned Parenthood health clinics provide 750,000 breast exams, 770,000 pap tests and nearly 4 million tests and treatments for sexually transmitted diseases.  Twenty percent of all women in the U.S. have visited a Planned Parenthood health center.  \n             For the past five years, grants to local affiliates of Planned Parenthood have been an important part of Planned Parenthood’s work to protect women from breast cancer.  Komen funding for Planned Parenthood has provided nearly 170,000 clinical breast exams and resulted in 6,400 referrals for mammograms.  In 2011 alone, grants from Komen provided Planned Parenthood with roughly $650,000 in funding for breast cancer prevention, screening, and education.  According to a recent statement by Komen, “In some areas of the U.S., our affiliates have determined a Planned Parenthood clinic to be the best or only local place where women can receive breast health care.” \n             It would be tragic if any woman—let alone thousands of women— lost access to these potentially life-saving screenings because of a politically motivated attack.\n We earnestly hope that you will put women’s health before partisan politics and reconsider this decision for the sake of the women who depend on both your organizations for access to the health care they need.\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5b6dfe11-babf-449f-a380-2ae9e7971b1a,\"Menendez Applauds Dentists’ Pro-Bono Work For Underserved Patients\n                    \n                            Senator’s legislation would expand dental care in underserved communities \n                    \n                      February 3, 2012\n                     Newark- U.S. Senator Robert Menendez (D-NJ) attended the University of Medicine and Dentistry of New Jersey (UMDNJ) event “Give Kids a Smile” today to discuss the importance of dental health and his legislation to spur bro-bono dental care in underserved communities. The Senator joined Dr. Cecile A. Feldman, Dean of the New Jersey Dental School; and dentists, dental hygienists and dental assistants, who performed pro-bono dental services at the event for over 350 children.\n\n “Every year, countless kids don’t get a chance to have a healthy smile or even a chance at minimal dental care because of a lack of coverage,” said Senator Menendez. “In underserved communities children go without any dental care, risking not only their smile, but their physical health as well. That is simply unacceptable. That’s why I worked to include mandatory dental benefits for eligible kids in the reauthorization of CHIP, the Children’s Health Insurance Program. It’s unconscionable that we would let children in the CHIP Program go without necessary dental care. That’s also why I’ve introduced the Pro Bono Medically Recommended Dental Care Act that establishes a competitive grant program for nonprofit organizations to coordinate pro bono dental care for low-income and disabled people on Medicare, Medicaid, or eligible for CHIP.”\n\n The legislation would invest $2 million a year in grant funding for dental health. The investment would allow dentists to provide upwards of $13 million in services to more than 5,000 people. Medically necessary dental care goes beyond a yearly check-up; it also addresses dental conditions that have caused or adversely affect a medical condition. Patients with Diabetes or renal disease can be severely affected by dental problems.  The elderly, the disabled and low-income children can greatly benefit from this legislation.\n The Children's Health Insurance Program (CHIP) provides health insurance for low income children whose parents cannot afford to buy private insurance and earn too much money to qualify for Medicaid. This program provides coverage to 6 million children across the nation.\n“Give Kids A Smile” is celebrated each year on the first Friday in February. The “Give Kids A Smile” program in New Jersey is the culmination of the efforts of several different organizations under the direction of the New Jersey Dental Association.  Each February, the entire dental community, both public and private sectors, comes together to ensure the delivery of care to thousands of underprivileged children who otherwise may not be able to afford or access care. Services rendered include oral hygiene instruction, screenings, cleanings, x-rays, fillings, extractions, fluoride treatments, stainless steel crowns, and much more. Volunteers work to ensure the program is fun and educational and that it gives many children a great first impression of visits to the dentists. All procedures are 100% free.\nThe full text of Pro Bono Medically Recommended Dental Care can be read here: http://thomas.loc.gov/home/gpoxmlc112/s1878_is.xml\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1a2c4500-b11f-41ef-b40d-ea9a81b62fb4,\"Senator Menendez Applauds Passage of STOCK Act\n                    \n                            Co-sponsored bill and hopes for full passage as quickly as possible\n                    \n                      February 2, 2012\n                     WASHINGTON, DC – Following an overwhelming bipartisan vote of 96-3 in favor of the STOCK Act, Senator Robert Menendez (D-NJ), a co-sponsor, issued this statement:\n\n“I am very pleased that the Senate has successfully passed this important bill.  Members of Congress are not above the law.  If the public is subject to insider trading laws, there is no reason that we as public servants should not also be.\n“Throughout my career, I have been strongly committed to restoring public faith in government and it is that commitment that ultimately led me to public service.  In the 1980s, I fought to restore integrity and trust in government when my hometown of Union City had a corrupt mayor.  Even while facing threats to my life, I still testified in court against this corrupt political machine.\n“The STOCK Act is another step towards restoring faith in our government and I hope that it will be signed into law as quickly as possible.”\n\nThe Stop Trading on Congressional Knowledge (STOCK) Act explicitly bars members of Congress and their staff from engaging in insider trading or using nonpublic information for their personal benefit and clarifies that the Securities and Exchange Commission is fully empowered to prosecute members of Congress and their staff for engaging in insider trading.  It also requires that members of Congress electronically report stock and other major financial transactions within 30 days.  S. 1903, the STOCK Act, was introduced by Senator Gillibrand and co-sponsored by Senator Menendez in December 2011.\n####\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=338017b6-c793-439e-b5cf-739f109e2c08,\"Menendez Hails Banking Committee Passage of Iran Sanctions Legislation\n                    \n                      February 2, 2012\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) hailed the Senate Banking committee's approval and bipartisan support for the Iran Sanctions, Accountability and Human Rights Act. The bill, which contains many provisions from Menendez’s Iran, North Korea, Syria Sanctions Consolidation Act, (S.1048) will further enhance pressure on the Iranian regime to halt its illicit nuclear weapons program. Menendez and Senator Mark Kirk (R-IL) co-authored an amendment in December to the National Defense Authorization Act that imposed sanctions on financial institutions doing business with the Central Bank of Iran. Their amendment has led to a 25 percent drop in the Iranian currency and encouraged the European Union to take similar action and impose an embargo on Iranian oil.\n Menendez said:  “This legislation will thwart the work-arounds that Iran has devised to circumvent the U.S., EU and UN sanctions regimes, tighten the noose on the Iranian government, and send a message to the world that there is a choice – you can either do business with Iran or the United States, but not both.  The bill will have a real impact on Iran's energy sector and its revenue:  It expands the sanctions available under the Iran Sanctions Act; sanctions shippers that transport WMD or terrorism-related materials to or from Iran; imposes liability on U.S. companies whose foreign subsidiaries are violating U.S. sanctions law; expands sanctions on Iran’s Revolutionary Guard Corps Officials, agents, and affiliates; and creates a comprehensive strategy to promote internet freedom in Iran. This legislation is a logical next step in our sanctions regime and our efforts to stymie the regime’s flow of dollars into its nuclear fund.”\n Earlier this week, the Senator met with Jack and Judy Young, of Moorestown, NJ, whose son Jeffrey was killed on October 23, 1983, when an Iranian bomb destroyed the Marine Corps Barracks in Lebanon.  The Senator’s provision included in the legislation will finally allow families like the Young’s to enforce the judgment against Iran using Iranian assets being held at Citibank in NY. \n\n “The Young’s have waited long enough for the justice their son deserves,” said Menendez.  “With this bill, we will have the power we need to enforce the judgment against Iran and finally compensate these families who have suffered enough.”\n\n  The Committee adopted seven Menendez Amendments which included measures to: \nSanction Iranian-Energy Joint  Ventures: This amendment would capture ongoing joint ventures between the Iranian regime outside of Iran, including joint ventures between the regime and certain governments in the Western Hemisphere.  \nImpose Visa Restrictions on Senior Iranian Officials, President Ahmadinejad and Supreme Leader Ali Khameini: This amendment imposes immigration restrictions on senior Iranian officials and family members, including the Supreme Leader, the President, Members of the Cabinet, members of the Assembly of Experts, senior members of the Intelligence Ministry, members of the Islamic Revolutionary Guard Corps with the rank of brigadier general or above, and members of paramilitary organizations such as Ansar-e-Hezbollah and Basij-e Motaz’afin. \nInvestigate of the National Iranian Oil Company/Tanker Company as IRGC Entities: This amendment requires the Treasury Department to make a determination under CISADA about whether the National Iranian Oil Company and the National Iranian Tanker Company are Iranian Revolutionary Guard Corps entities. If it concludes that they are IRGC entities, financial sanctions would apply to the financial institutions that facilitate transactions with NIOC and NITC. \nEnsure Justice for Victims of Iranian Terror: This amendment, co-authored with Senator Brown (OH), makes it so that the victims of the 1983 Marine Corps Barracks bombing in Lebanon and the 1996 Khobar Towers bombing in Saudi Arabia will be able to attach two billion in Iranian Central Bank assets being held at a New York Bank.\nProvide Authority to Sanction SWIFT for Facilitating Financial Transactions with Iran: This amendment, co-authored with Senator Roger Wicker (R-MI) and inspired by Senator Mark Kirk (R-IL), would provide the authority to the Executive Branch to sanction SWIFT*, its directors, or its significant shareholders. It also compels a report by the Secretary of the Treasury no later than 90 days after its enactment on the status of efforts to ensure that SWIFT has cut off services to designated Iranian banks and the Central Bank of Iran. Its Sense of the Congress encourages U.S. diplomatic initiatives with the EU on this issue by stating, “At a time when financial institutions around the world are severing their ties with such Iranian financial institutions, it is inconsistent and troubling that financial communications services providers continue to service those financial institutions, particularly with respect to the European cooperative SWIFT, which—(A) is subject to the prohibition of the European Union on providing economic resources to financial institutions designated for the imposition of sanctions by the European Union; and (B) notes in its own bylaws that it reserves the right to expel a SWIFT user that may adversely affect SWIFT's \"\"reputation, brand, or goodwill, for instance if the…SWIFT user is subject to sanctions (for example, UN or EU)\"\", as is the case with Iranian financial institutions.”\n \n*SWIFT’s (the Society for Worldwide Interbank Financial Telecommunications) annual report notes that 19 Iranian banks and 25 Iranian institutions use SWIFT, and that in 2010 they sent 1,160,000 messages and received 1,105,000 messages.  Primary Iranian users of Swift's services include Banks Mellat, Sepah, Saderat, Post and Iran's central bank—all of them designated by the U.S. Treasury.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=44f6f4df-6bb9-44b8-b5b3-a598127f171a,\"Transportation Subcommittee Chair Says Bipartisan Senate Transit Bill will  Deliver $63 Million More Per Year to NJ\n                    \n                            More funding means more jobs, easier travel\n                    \n                      February 2, 2012\n                     WASHINGTON – Following today’s approval by the Senate Banking Committee of the Federal Public Transportation Act of 2012, U.S. Senator Robert Menendez (D-NJ), Chairman of the Subcommittee on Housing, Transportation and Community Development, called the bipartisan legislation “an incredible boon to New Jersey.”  By cutting waste and eliminating earmarks, the bill will provide New Jersey $519 million in federal transit funding, an increase of over $63 million per year.  If passed by the full Senate and House, New Jersey would receive more federal transit funding per year than ever before -- without increased overall federal spending.\n\n“For over two years now, I have worked across party lines to help craft a bill that will invest in our infrastructure and improve public transportation for New Jersey families and commuters,”“This bill provides our state more federal transit funding than it has ever received before.   What does more funding mean?  It means more resources to protect and create good paying jobs and more funds to make the improvements we need to ease congestion and delays.”    said Menendez. \n\nMenendez also applauded the inclusion of a number of provisions he championed including:\nA New $20 Million Transit Oriented Development Planning Program.  The $20 million program will help communities create more livable communities by planning new development around new transit hubs.  The provision is based on similar language in Senator Menendez’s Livable communities Act, and in New Jersey would work in tandem with the state’s Transit Village program.\nIncreased Funding for the National Transit Institute at Rutgers (NTI) [$5million]. NTI provides training, education, and clearinghouse services in support of public transportation and quality of life for the entire nation.  In recent years this important national program has seen its funding slashed, despite the increased need for training in the face of an ongoing wave of retirements in the industry. This bill will raise NTI’s funding to $5 million per year from $3.8 million.\nIncreased Clean Fuels Program Funding [From $51.5M to $65M].  This competitive program for clean fuel transit vehicles and for refueling infrastructure will help agencies switch from dirty, expensive fuels, to cleaner, cheaper fuels.  This will help improve air quality and allow transit agencies to untether themselves from volatile oil prices.  \nIncreased Funding for Transportation for Seniors and the Disabled [NJ Funding Goes From $6.5 M to $7.8 M]. With demand for senior transportation increasing, the bill is able to meet that demand with increased resources.\nStreamlined and Reformed “New Starts” Process. The bill streamlines the process for the federal approval of new projects and allows projects designed to increase capacity on existing systems rather than just allow new systems or new lines.  Older systems such as New Jersey’s that are at capacity could, for instance, use the program to add a new station, add another track, or purchase bigger train cars. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f2a059eb-6d2a-4d99-b508-2c957f8d00e8,\"Menendez, Lautenberg Announce More than $2 Million For New Jersey Fire Departments and Safety Squad\n                    \n                      February 1, 2012\n                     WASHINGTON, D.C. – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced six fire departments and a safety squad in New Jersey have received more than $2 million in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  Eligible uses of this grant funding include investments in training, equipment, vehicle acquisition, and health programs.\n\n “Our firefighters need to have the resources they need to protect themselves and our families in case of a fire emergency,” said Senator Menendez.  “These funds will allow local fire departments to purchase the most modern safety equipment available and boost their capacity to respond in case of a fire.  This is the very least we can do for the safety of our first responders, our families, and our communities.”\n “With first responders ready to roll at the sound of the alarm, we must be certain that they are sufficiently trained and equipped to handle emergencies safely and effectively,” said Senator Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG program.  “First responders put their lives on the line to keep us safe and they deserve our support.  While states and municipalities are making tough budget decisions, this direct federal investment in local emergency response is especially important to the safety of our communities.” \n\nFederal grants have been awarded to the following organizations:\n Jersey City Department of Fire & Emergency Services – $929,088 for operations and safety\nCity of Wildwood Fire Department – $351,554 for operations and safety\nRidgewood Fire Department – $315,000 for vehicle acquisition\nNutley Fire Department – $265,950 for vehicle acquisition\nLaureldale Volunteer Fire Rescue Company in Mays Landing – $179,550 for vehicle acquisition\nIrvington Fire Department – $47,200 for operations and safety\nAtlantic Highlands First Aid and Safety Squad – $13,381 for operations and safety\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c9b830d5-69d7-43ec-87d9-331a90dc2ee6,\"Menendez Hosts NJ Small Business Leaders at Nation's Capital \n                    \n                            Joined Senate Democratic Committee at roundtable discussion about job creation, local economy \n                    \n                      February 1, 2012\n                     WASHINGTON, D.C. – U.S. Senator Robert Menendez (D-NJ) hosted two New Jersey businesses today at a discussion with Senate Democrats about how they, and other small and medium businesses, are strengthening local economies, creating jobs, and how their efforts may be replicated nationally.   Jim Brennan, President of Sea Box, Inc. of East Riverton, and Debbie Hart, President of BioNJ of Trenton, joined Senator Menendez for the meeting which was attended by Senators and local business owners from 12 states.    \n\n “Today was a great opportunity to hear from two top-notch New Jersey business owners– Jim Brennan of Sea Box and Debbie Hart of BioNJ – who understand how important it is for Washington to help create a climate where they can thrive and grow and where new businesses can start and flourish,” said Menendez.  “Now it is our job to take what we heard from those small business owners who have tried and succeeded and help other small businesses do the same. We have to do everything we can to create an environment which is conducive to business growth and a strong private sector.”\n “I am honored to be asked to speak to the Senators about the success and growth of my business,” said Jim Brennan. “Sea Box, Inc. is a true American success story and I have been lucky enough to be living the American Dream of creating, owning and operating my own U. S. small business. Our success has been made possible by the hard work and dedication of all of our hard working employees at Sea Box.  Here in Washington, I was given the opportunity to express my beliefs and desire to see more products designed and produced here in the United States like we do -- my factory in New Jersey has created and built over 5,000 container designs over the last 29 years. This forum has given me, a small business owner, the chance to be heard on Capitol Hill, and to share our successful strategies with other small businesses.”    \n “Given the state of the economy, sessions such as this where we can share good economic results and news and consider strategies for generating more of the same can only mean good things,” said Debbie Hart.  “It will allow legislators to see what’s working and learn how these results were generated and to consider and assess the potential for repeating such results.  It is opportunities such as this that can get us closer to the end of this economic downturn and give us hope for the economic future of this country.” \n\n Sea Box, Inc. sells and leases new and used ISO shipping, cargo, mobile storage and refrigerated containers for scores of applications to a diverse and international customer base. With 29 years in the industry, Sea Box is a multi-million dollar company with a comprehensive equipment fleet and an experienced design team. In the past five years, Sea Box, Inc. has grown from 50 employees to 170 employees – hiring 70 new workers since 2008.\nBioNJ works to enhance the climate for biotechnology in New Jersey. As the representative of an industry that has the potential to change the course of human health, make our environment cleaner and the foods we eat safer and healthier, BioNJ is single-minded in its commitment to the growth and prosperity of this industry within the state of New Jersey. By utilizing supportive government policy, BioNJ has helped the biotechnology industry in New Jersey grow from just 80 companies in 1998 to more than 335 companies today. Additionally, the Qualifying Therapeutic Discovery Project Credit program provided funding to more than 4,600 total projects at companies in 47 states and the District of Columbia, helping the average biotechnology company increase its workforce by 27%.\nSenator Menendez has long been fighting to give small businesses the tax relief, access to capital and regulatory environment they need to flourish:  \n Tax Relief \nStrong supporter of bills signed into law that provided tax incentives to small businesses to expand and purchase new equipment.\nAlso supported legislation that made it easier for start-up small businesses to secure private investments.\nSupports the President’s American Jobs Act, which would cut payroll taxes in half for small businesses, allow 100 percent expensing through 2012, and provide incentives for hiring unemployed workers and veterans.\n Access to Capital \nHas worked to increase loan guarantees offered by the SBA, to relieve the credit crunch on small businesses which hinders their growth.\n Easing Regulations \nVoted to repeal the so-called 1099 reporting requirement so business owners can focus more on their business and less on paperwork.  \nWas a leader in securing an amendment to the Dodd-Frank Wall Street Accountability Act that requires the federal government to ensure new regulations do not hurt small businesses before they are put into place.  \nMost recently, supported the repeal of the so-called 3 percent withholding requirement, which prevented small businesses from receiving the full payment for contracts until the tax year concluded. \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9a16aab3-518e-4099-be5b-505e8e855f51,\"Senator Menendez Slams Unfair Imprisonment of Former Ukrainian Prime Minister Yulia Tymoshenko\n                    \n                      February 1, 2012\n                     WASHINGTON – United States Senator Robert Menendez (D-NJ) participated in the Senate Foreign Relations Committee hearing on Ukraine today, giving him the opportunity to meet Eugenia Tymoshenko and to discuss the inhumane detention of her mother, the former Prime Minister Yulia Tymoshenko.  Last October, a Ukrainian court sentenced Yulia Tymoshenko to seven years in prison after she was found guilty of abuse of office when brokering a 2009 gas deal with Russia.  The Senator expressed his sympathy and support to Ms. Tymoshenko and vowed to assist in her efforts to have her mother freed from prison.\n\n “Your mother is a pioneering and incredibly strong woman,” the Senator told the younger Tymoshenko. “Yulia is an example for all people who care so much about their country that they are willing to endure extraordinary hardship and not just lay down in the face of oppression and cruelty. I think this hearing is a wonderful way to inform the American people not only about your mother, but the other opposition leaders in jail and to keep the pressure on the Ukrainian authorities to give Yulia her freedom back.”\n “Every day the human rights situation in Ukraine worsens and it’s starting to remind me of the shameful conditions of the Soviet era.  Yulia Tymoshenko worked very hard to throw off the tyranny of the Soviet past, and to see her and other opposition leaders in jail cells is a reminder of how much work remains to be done to improve human rights and political freedom in today’s Ukraine.  We must convince President Yanukovych that Ukraine’s path to freedom and economic prosperity is not through Soviet-style centralized government, but by way of releasing the power, intelligence and dignity of the Ukrainian people while respecting the rights of all its citizens,” added Menendez.\n\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e39f94a9-33e6-4cb0-a35b-a7e4e244cedc,\"Menendez Hails President Obama’s Plan to Help Homeowners and Repair Housing Market\n                    \n                      February 1, 2012\n                     WASHINGTON – US Senator Robert Menendez (D-NJ), Chairman of the Senate Banking Subcommittee on Housing, Transportation, and Community Development, today applauded President Obama’s housing plan to help responsible homeowners and rebuild our housing market. At a speech earlier this morning, the president laid out in detail his proposal to fix our housing market first announced during the State of the Union Address as part of his Blueprint for an America Built to Last.\n\n “I applaud President Obama for putting forth a comprehensive and workable plan to help our nation’s homeowners and reinvigorate our housing market.  I share the President’s goals and the principles underlying these reforms and, as Housing Subcommittee Chair, I have been working toward the same goals and will continue to work with my colleagues in Congress to move our shared interests forward.   \n “In my committee, we have worked to expand refinancing opportunities for homeowners at today’s historically low interest rates, successfully fought to maintain mortgage loan limits across the entire country, and led the charge to expand HAMP and loan modification efforts. We have also explored neighborhood rehabilitation, the creation of national servicing standards for homeowners and I fully support prosecuting those who have gambled with people’s homes for their own profit. Together, these strategies will help turnaround our troubled housing market and boost our broader economy. \n “But there is still more we can and must do.  We have to find ways to help homeowners who –through no fault of their own -- are so far underwater that they are drowning.  My proposal – which will reduce principal for responsible homeowners by working with banks and investors on a ‘shared appreciation’ mortgage – can give these homeowners a much needed lifeline.” \n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=07f76ecc-f2a7-4b39-98fa-cb8574889e67,\"Menendez Calls for FHFA Inspector General to Investigate Allegations Freddie Mac Bet Against Homeowners\n                    \n                            Questions Whether There Are Conflicts of Interest on Other GSE Investments That Hurt Homeowners\n                    \n                      January 31, 2012\n                     Washington – In the wake of an investigation by NPR and ProPublica that alleges Freddie Mac “placed multibillion dollar bets that pay off if homeowners remain in expensive mortgages with above-market interest rates,” U.S. Senator Robert Menendez today called on the Inspector General for the Federal Housing Finance Agency (FHFA), which oversees Freddic Mac and Fannie Mae, to fully examine transactions of both Freddie Mac and Fannie Mae, as well as FHFA’s role in the transactions as the regulator of Fannie Mae and Freddie Mac.  \nIn a letter to Inspector General Linick, Menendez, who is Chairman of the Senate Subcommittee on Housing, Transportation, and Community Development, outlined a series of questions about the potential conflict between Freddie Mac’s investments and their core mission to make homeownership more accessible.\n“If Freddie Mac stood to benefit from homeowners being trapped in above-market interest rates, are such transactions consistent with their mission?” Menendez wrote.  \n“…this raises the larger question of what other transactions may have been conducted at either Freddie Mac or Fannie Mae that are inconsistent with their mission or would run against the interest of homeowners.  I respectfully request that you consider opening an investigation into these transactions to ensure that they are consistent with homeowners’ interests,”  he added.  \nFull text of the letter below.\nJanuary 31, 2012\nThe Honorable Steve A. LinickInspector GeneralFederal Housing Finance Agency400 7th Street, SWWashington, DC 20024\nDear Mr. Linick:\nAs Chairman of the Senate Subcommittee on Housing, Transportation, and Community Development, I write to you today following the disturbing ProPublica/NPR news report from January 30th, 2012, alleging that Freddie Mac had essentially placed multibillion dollar bets that pay off if homeowners remain in expensive mortgages with above-market interest rates.\nThe article alleges that Freddie Mac began increasing these bets “dramatically” in late 2010 and early 2011, which is “the same time that the company was making it harder for homeowners to get out of such high-interest mortgages.”  Several lawmakers, myself included, also pushed both Freddie Mac and Fannie Mae to expand their refinancing programs.  While it is unclear if Freddie Mac’s transactions and their unwillingness to refinance loans for struggling homeowners are connected, these allegations must be thoroughly investigated.\nObviously, the allegations in this article are extremely alarming and raise several other important questions.  As Freddie Mac’s regulator, what was FHFA’s role in these investments?  What was the extent of their knowledge prior to and during these transactions?  According to press reports, the agency said yesterday it “had identified concerns” surrounding these transactions but does not clarify whether they were resolved or even addressed.  What were those concerns and were they resolved?  If Freddie Mac stood to benefit from homeowners being trapped in above-market interest rates, are such transactions consistent with their mission?  And are firewalls between different groups sufficient to prevent conflicts of interest with the homeowners that Freddie is supposed to help?\nI recognize that Freddie Mac is ultimately accountable to American taxpayers, but I have to believe that accountability can be achieved without hurting American homeowners and continuing to devastate the American economy.  I simply do not believe these goals are mutually exclusive.\nFinally, this raises the larger question of what other transactions may have been conducted at either Freddie Mac or Fannie Mae that are inconsistent with their mission or would run against the interest of homeowners?  I respectfully request that you consider opening an investigation into these transactions to ensure that they are consistent with homeowners’ interests.\nI would strongly urge the FHFA Office of Inspector General to systematically examine transactions of both Freddie Mac and Fannie Mae, as well as FHFA’s role in these actions.  With the Government Sponsored Enterprises in conservatorship and being kept afloat by American taxpayers, and FHFA both their regulator and conservator, a full accounting of their actions is necessary.\nThank you for your attention to this important matter.  Please do not hesitate to contact me if I can be of further assistance.\nSincerely,\nROBERT MENENDEZUnited States Senator\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7b6e37d9-350c-4bfe-bdd0-83eca0cd761c,\"Menendez: Bipartisan Senate Transit Bill Will Deliver NJ over $62 Million More Per Year\n                    \n                            Chair of Banking’s Transit Subcommittee Delivers Urgently Needed Transit Funding in a Flat Funded Bill\n                    \n                      January 30, 2012\n                     WASHINGTON - Senator Robert Menendez (D-NJ) today announced that Senate Banking Committee’s transit reauthorization mark, which he helped craft, will be a boon to New Jersey.  By cutting waste and eliminating earmarks, the bill will provide New Jersey $519 million in federal transit funding, an increase of over $62 million per year.  If passed, New Jersey would receive more federal transit funding per year than ever before and without increased overall federal spending.\n\n“For over two years now, we have worked to craft a bill to improve public transportation in New Jersey and across America,” said Menendez, who worked closely with former Chairman Dodd, Chairman Johnson, and Ranking Member Shelby on the bill.  “By wringing out waste and earmarks, the bill provides New Jersey with more federal transit funding than it has ever received before, and does so when NJ Transit desperately needs money to address delays and rider complaints.” \n\nThe bill also contains a number of programs the Senator championed including:\nA New $20 Million Transit Oriented Development Planning Program.  The $20 million program will help communities create more livable communities by planning new development around new transit hubs.  The provision is based on similar language in Senator Menendez’s Livable communities Act, and in New Jersey would work in tandem with the state’s Transit Village program.\nIncreased Funding for the National Transit Institute at Rutgers (NTI) [$5million]. NTI provides training, education, and clearinghouse services in support of public transportation and quality of life for the entire nation.  In recent years this important national program has seen its funding slashed, despite the increased need for training in the face of an ongoing wave of retirements in the industry. This bill will raise NTI’s funding to $5 million per year from $3.8 million.\nIncreased Clean Fuels Program Funding [From $51.5M to $65M].  This competitive program for clean fuel transit vehicles and for refueling infrastructure will help agencies switch from dirty, expensive fuels, to cleaner, cheaper fuels.  This will help improve air quality and allow transit agencies to untether themselves from volatile oil prices.  \nIncreased Funding for Transportation for Seniors and the Disabled [NJ Funding Goes From $6.5 M to $7.8 M]. With demand for senior transportation increasing, the bill is able to meet that demand with increased resources.\nStreamlined and Reformed “New Starts” Process. The bill streamlines the process for the federal approval of new projects and allows projects designed to increase capacity on existing systems rather than just allow new systems or new lines.  Older systems such as New Jersey’s that are at capacity could, for instance, use the program to add a new station, add another track, or purchase bigger train cars. \n\n “With gasoline prices expected to spike again this summer, we need to invest in public transportation more than ever,” said Menendez.  “This bill stretches the federal dollar further and puts more money directly into our transit systems.  Hopefully, we will pass this bill and provide transit agencies with the resources they need to manage projected ridership increases this summer.”\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=17bc5d74-6b87-4449-8c74-02ccf5a69956,\"Menendez Promotes \"\"Made In America\"\" At Girl Scout Uniform Manufacturer \n                    \n                            Passaic Company Won Bid from Organization to Keep Jobs in the US \n                    \n                      January 30, 2012\n                     PASSAIC - U.S. Senator Robert Menendez today visited Jackie Evans/Susana Monaco Incorporated in Passaic to underscore the importance of “Made in America” and to promote proposals laid out in the President’s State of the Union address to revive U.S. manufacturing, an anchor of a robust economy. Menendez was joined by Representative Bill Pascrell, Charisse Taylor, representing Girl Scouts of the USA, and owners Susana, Mario, and Domenick Monaco.\n\n“It’s time we put the pride back in American manufacturing, American made,” said Menendez.  “It's time we stop talking about America's decline, stop talking about the end of American dominance in manufacturing, and take our hats off to New Jersey workers here at Jackie Evans Inc. who are producing goods for one of the greatest organizations in this country, Girl Scouts of the USA. The work they are doing here should stand as a model to all small businesses looking to prosper in these hard economic times. Let’s help companies like Jackie Evans Inc. keep jobs right here in the U.S.”\n\nSenator Menendez spoke to factory workers about the importance of providing incentives to manufacturers to discourage outsourcing and encourage insourcing. He urged the need to change the tax code to discourage American companies from moving operations overseas in search of cheaper costs; doing away with deductions available to companies that close plants in the U.S.; and a new 20% income tax credit for companies that return.\nMenendez visited the manufacturing plant where 80 employees have been producing the Girl Scout uniforms and sashes for over a decade. In 2010, the Jackie Evans division that manufactures the iconic Girl Scouts uniforms almost lost the contract because it became difficult for them to compete with foreign market prices. Girl Scouts of the USA ultimately decided to keep their uniforms made domestically, with the work being done in New Jersey and New York. \nDuring the past two years, we have begun to see positive signs in American manufacturing – with the manufacturing sector adding more than 300,000 jobs since December 2009, with companies engaging in the emerging trend of “insourcing” by bringing jobs back and making additional investments in the United States. Manufacturing jobs are growing for the first time since the late 1990s. \nIn his State of the Union address,  President Obama laid out a Blueprint for an America Built to Last, encouraging companies to create manufacturing jobs in the United States while removing deductions for shipping jobs overseas and encouraging insourcing.  The proposals include:     1. Removing tax deductions for shipping jobs overseas and providing new incentives for bringing them back home (revenue neutral): The tax code currently allows companies moving operations overseas to deduct their moving expenses – and reduce their taxes in the United States as a result.  The President is proposing to change that.  These deductions will be denied, and companies will no longer be provided deductions for moving their operations abroad. At the same time, the President is proposing to give a 20 percent income tax credit for the expenses of moving operations back into the United States to help companies bring jobs home.    2. Targeting the domestic production incentive on manufacturers who create jobs here at home and doubling the deduction for advanced manufacturing (revenue neutral):  In conjunction with the President’s broader commitment to corporate tax reform, the Administration is proposing measures to provide incentives for manufacturing in the United States.  The Administration is proposing to reform the current deduction for domestic production by more narrowly focusing it on manufacturing activities—for example, it would no longer cover oil production.  These savings would be invested in expanding the deduction for manufacturers and doubling for advanced manufacturing technologies from its current level of 9 percent to 18 percent.  3. Introducing a new Manufacturing Communities Tax Credit to encourage investments in communities affected by job loss ($6 billion in credits):  The President is proposing a new credit for qualified investments that help finance projects in communities that have suffered a major job loss event. This credit will provide $2 billion per year in incentives for three years.  For this purpose, a major job loss event occurs when a military base closes or a major employer closes or substantially reduces a facility or operating unit, resulting in permanent mass layoffs.  The tax credit would support qualified investments in this affected community – made in conjunction with State Economic Development Agencies and other local entities – that improve local economic growth.  4. Providing temporary tax credits to drive nearly $20 billion in domestic clean energy manufacturing ($5 billion in credits):  The President is proposing to extend tax credits to drive nearly $20 billion of investment in domestic clean energy manufacturing, ensuring new windmills and solar panels will incorporate parts that are produced and assembled by American workers.  This Advanced Energy Manufacturing Tax Credit – which was oversubscribed more than three times over – goes to investments in clean energy manufacturing in the United States. The additional $5 billion in tax credits the President is proposing will leverage nearly $20 billion in total investment in the United States.  5. Reauthorizing 100% expensing of investment in plants and equipment ($4 billion):  The President is proposing to extend for all of 2012 a provision that allows businesses to expense the full cost of their investments in equipment, spurring investment in the United States.  Over the next two years, this would provide businesses large and small with $50 billion in tax relief, with much of that recovered by the Treasury in subsequent years.  6. Closing a loophole that allows companies to shift profits overseas (raises $23 billion):  Corporations right now can abuse the tax system by inappropriately shifting profits overseas from intangible property created in the United States.  The President is proposing to close this loophole.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=da412d90-bde0-46fe-aac2-376f81773183,\"U.S. Senator Robert Menendez on International Holocaust Remembrance Day\n                    \n                      January 27, 2012\n                     WASHINGTON – Today, here in the United States and around the world in commemoration of International Holocaust Remembrance Day, we stop and reflect on the six million Jewish souls that perished at the hands of a brutal Nazi regime, a regime that had no respect for human life and whose callousness was an indelible scar on the human conscience. Senator Menendez issued the following statement:\n\n “We will always remember and mourn the six million Jews that perished  in this dark period of history.  With the focus this year on the Children and the Holocaust, we can only lament the fact that of the six million, one and a half million were children, innocent children who never had the opportunity to create, invent, fulfill their dreams and pass on their Jewish heritage to the next generation.  As the survivors numbers dwindle, let us make a vow to remember their stories and pass on their sad lessons to the young, so that they will learn from it and prevent it from happening in the future.  As United States Senator representing the State of New Jersey where we have recently seen anti-Semitism rear its ugly head, I promise that I will do everything I can to eradicate the hatred that seeds acts of intolerance and will focus efforts on ensuring that this is on the national agenda. ”\n\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b78ed5f5-8fcb-41f6-b7dd-3694607c9c95,\"Menendez, Burr Applaud President for Joining Call for More Use of Natural Gas in Transportation\n                    \n                            Authors of NAT GAS Act Look Forward to Working with the Administration To Pass Fully Paid-For New Incentives\n                    \n                      January 26, 2012\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ) and Richard Burr (R-NC) today applauded the President for endorsing the idea of creating new incentives for running medium and heavy trucks, and public transportation vehicles on natural gas.  The Senators are authors of the New Alternative Transportation to Give Americans Solutions (NAT GAS) Act of 2011, legislation that would boost domestic production of vehicles that run on clean natural gas by extending tax credits for natural gas vehicles and building refueling infrastructure, and be fully paid for by a temporary user fee on natural gas used as a vehicle fuel.\nToday President Obama will give two speeches about his clean energy blueprint announced during the State of the Union address. The first talk will occur at a United Parcel Service facility in Las Vegas, the second at Buckley Air Force base in Aurora, Colorado.  In both speeches the President is expected to endorse new incentives for medium- and heavy-duty trucks that run on natural gas and support programs to convert municipal buses and trucks to run on natural gas.  These ideas are both in and fully paid for in the NAT GAS Act.\n“We look forward to working with the President to pass our legislation to use more cheap, domestic natural gas here in America instead of exporting this fuel abroad,” said Menendez. “Our bipartisan bill will create jobs and lower transportation costs and do so without adding one dime to the deficit. This is exactly the kind of bipartisan proposal we should be able to pass, even in an election year.”\n“Natural gas represents a way to boost our nation's energy security and help free us from our over-reliance on foreign oil, and I am pleased to hear that the President is committed to working with us on this effort\"\" said Senator Burr.  \"\"Energy security is absolutely vital to national security, and our bill would be a step in the right direction towards decreasing our dependence on imported energy sources.\"\"\nCurrently there are nearly 14 million natural gas vehicles in the world, but only about 117,000 in the United States. [EIA, 2011]  It is estimated that the NAT GAS Act of 2011 will jumpstart the industry and in ten years add over 700,000 NGVs to our roads.  In addition it is estimated that the bill will displace over 20 billion gallons of fuel and create over 1 million direct and indirect jobs.\n Natural Gas is Plentiful\nNorth America’s natural gas resources discoveries have increased by more than 1,800 trillion cubic feet (Tcf) over the past three years, bringing the total natural gas resource base to more than 3,000 Tcf.  With U.S. natural gas demand at about 23.5 Tcf per year, this resource could supply current consumption for over 100 years. [Fueling North America’s Energy Future, p. ES-4]\n Natural Gas Is Cheap\nAt the pump, on average, CNG sells  for  $2.33 per gasoline gallon equivalent while gasoline sells for $3.46 [DOE Clean Cities Price Report, p. 3].  LNG, which competes primarily with diesel fuel, currently is selling for $2.25 per diesel gallon equivalent while diesel sells for $3.81 per gallon.  [Id., p. 6 n.6]\n We Have To Decide: Do We Use It Here Or Export It?\n If we do not use our natural gas here in America, it will be exported abroad, for other’s benefit.  The price of natural gas internationally is significantly higher than it is here in the United States.  As a result one facility recently received a permit to export natural gas and four more U.S. facilities are following suit.  [Testimony of Deputy Assistant Secretary for Oil & Natural Gas Mr. Chris Smith, 11/8/11]  We can use that natural gas here in the United States to displace oil or we can export it, so other countries can improve their own energy security and clean their air.\nSUMMARY OF LEGISLATION:\n Summary \nNew Alternative Transportation to Give Americans Solutions Act (NAT GAS ACT) of 2011\n\nTITLE I—PROMOTE THE PURCHASE AND USE OF NGVS WITH AN\nEMPHASIS ON HEAVY-DUTY VEHICLES AND FLEET VEHICLES\n Sec. 101          Extension and modification of new qualified alternative fuel motor vehicle credit.\n There currently are no federal tax credits to encourage the purchase of new natural gas vehicles, or to encourage the conversion of existing petroleum-fueled vehicles to operate on natural gas.  Previous tax credits, located in 26 USC 30B, intended to encourage such purchases expired on 12/31/2010.  This provision would reinstate the expired credits and extend the incentive through the end of 2016.\n Sec. 102          Allowance of vehicle and infrastructure credits against regular and minimum tax and transferability of credits.\n The alternative minimum tax provisions in the tax code limit the usability of natural gas fueling infrastructure (IRC, 30C) and natural gas vehicle (IRC, 30B) tax credits.  Most business and individual tax credits may only be applied to reduce regular taxes -- not minimum taxes.  This section would allow the tax credits to be applied against a taxpayers minimum tax.\n The transferability provision similarly is intended to enhance the utility of the fueling infrastructure and vehicle tax credits in cases where the taxpayer who would otherwise benefit from the credit is unable to do so because of insufficient tax liability.  Under IRC 30B and 30C, the tax credit benefit goes to the buyer.  For leased fueling infrastructure or vehicles, the credit goes to the lessor (i.e., leasing company).  For sales to tax exempt entities, the tax code treats the seller as if they placed the fueling infrastructure or vehicle in service and allows the seller to claim the tax credit, but only if they disclose the value of the tax credit to the purchaser. \n The transferability provision in this bill allows the claimant to transfer the credit if they cannot benefit from it, allowing the taxpayer to transfer the credit to the seller, manufacturer or lessee (in cases involving leases). \n Sec. 103          Modification of credit for purchase of vehicles fueled by compressed natural gas or liquefied natural gas.\n The previous tax credits for natural gas vehicles found in IRC 30B only encouraged the acquisition of dedicated natural gas vehicles.  Some heavy-duty dual-fuel or mixed-fueled vehicles qualified for the tax credits but in general dual-fuel and bi-fuel vehicles did not qualify for the federal tax credits.  Also, the value of the tax credits was tied to the incremental cost of such vehicles and the credit values were capped according to weight with the maximum tax credit values allowed under the law ranging from $2,500 to $32,000.  As described below, this bill increases these dollar amounts.\n Under this bill, all new dedicated natural gas vehicles and certain bi-fuel and dual-fuel alternative natural gas vehicles would be eligible for a credit equal to 80 % of the incremental cost up to a maximum tax credit amount or cap.  To qualify for the maximum credit of 80%, a bi-fuel natural gas vehicle must be capable of operating a minimum of 85 percent of its total range on compressed or liquefied natural gas.  Dual-fuel natural gas vehicles qualify for the maximum tax credit allowed if the vehicle is capable of operating on a mixture of no less 90 percent compressed or liquefied natural gas and no more than 10% gasoline or diesel.  All other new or converted natural gas vehicles are eligible for a credit equal to 50% of the incremental cost up to a credit cap.  The maximum value of the tax credits provided would be capped and would range depending on the weight of the vehicle as shown below:\n NGV Eligible Weight Categories \n\n \n\n\nMax. Allowable   Tax Credit  \n\n\nLight Duty,   less than 8,501 lbs. \n\n\n$7,500.00\n\n\nMedium Duty,   8,501 - 14,000 lbs.\n\n\n$16,000.00\n\n\nHeavy Duty   14,000 - 26,000 lbs. \n\n\n$40,000.00\n\n\nHeavy Duty   26,001 & up lbs. \n\n\n$64,000.00\n\n Sec. 104          Modification of definition of new qualified alternative fuel motor vehicle.\n This section modifies the definition of new qualified alternative fuel motor vehicles so that in addition to dedicated alternative fueled vehicle that are only capable of operating on an alternative fuel, IRC 30B now also includes bi-fuel natural gas vehicles, and a dual-fuel natural gas vehicle.  For purposes of IRC 30B, this section defines bi-fuel vehicles as a vehicle that is capable of operating on compressed or liquefied natural gas and gasoline or diesel fuel. Dual-fuel vehicles are defined as vehicles that are capable of operating on a mixture of compressed or liquefied natural gas and gasoline or diesel fuel.  This section also clarifies that converted or repowered vehicles shall be treated as new vehicles for the purposes of this section. \n Sec. 105          Providing for the treatment of property purchased by Indian tribal governments.\n The tax credits found in IRC 30B and 30C currently benefit certain tax exempt entities by treating the seller to such entities as if they placed the vehicle or fueling infrastructure into service and thus allowing the seller to claim the tax credit.  However, this section does not specifically include sales to Indian Tribal Governments and therefore Indian Tribes do not receive any potential benefit from this provision.  The provision relating to sales to tax exempt entities is intended to give the seller a tax benefit with the idea that some of the tax benefit will be passed along to the purchaser in the form a lower price.  Therefore, this bill amends IRC 30B and 30C to clearly identify Indian Tribal Governments along with other tax exempt entities. \n \nTITLE II—    PROMOTE PRODUCTION OF NGVS BY ORIGINAL\nEQUIPMENT MANUFACTURERS\n \nSec. 201          Credit for producing vehicles fueled by natural gas or liquefied natural\ngas.\n To encourage manufacturers to offer a greater variety of new NGVs -- and in particular light duty NGVs, this section creates a new production tax credit in section 45S of the IRC.  The tax credit is valued at the lesser of 10 percent of basis of the new natural gas powered motor vehicle or $4,000.  The maximum aggregate amount that can be claimed by an individual manufacturer is $200 million.  \n Sec. 202          Additional vehicles qualifying for the advanced technology vehicles\nmanufacturing incentive program.\n EISA 2007, Section 136 (42 USC 17013) contains the Advanced Technology Vehicle Loan Program administered by the Department of Energy’s Loan Programs Office.  The Advanced Technology Vehicles Manufacturing (ATVM) Loan Program supports the development of innovative, advanced automotive technologies.  The program emphasizes modifications to production facilities that are related to producing more fuel efficient vehicles. Currently, only one NGV manufacturer has been awarded a loan under this program.  DOE has never issued definitive guidance concerning the ability of NGVs to qualify for this loan program.  However, it appears that dedicated NGVs do qualify.  To ensure that other NGV manufacturers qualify for this program, this section amends the statute so that the advanced technology vehicles specifically includes dedicated, bi-fuel and dual-fuel natural gas powered vehicles.  The amendment also opens up this program to manufacturers of medium- or heavy-duty NGVs as well as bus manufacturers. \n TITLE III—INCENTIVIZE THE INSTALLATION OF NATURAL GAS\nFUEL PUMPS\n Sec. 301          Extension and modification of alternative fuel vehicle refueling property\ncredit.\n The tax credit for natural gas fueling infrastructure located in IRC 30C currently expires at the end of 2011.  This bill extends the tax credit for qualified natural gas vehicle refueling property until the end of 2016.\n Sec. 302          Increase in credit for certain alternative fuel vehicle refueling properties.\n Under current law, IRC 30C, a taxpayer who acquires natural gas refueling property qualifies for an income tax credit equal to the lesser of $30,000 or 30% of cost of the property, or $1,000 for home refueling units.  This bill increases the value of the tax credits so that new natural gas fueling equipment that is depreciable property would qualify for a tax credit equal to the lesser of $100,000 or 50% of the cost of the property, or $2,000 for fueling property that is acquired by a taxpayer but is not depreciable.   \n TITLE IV—NATURAL GAS VEHICLES\n Sec. 401          Grants for natural gas vehicles research and development.\n This section directs the Secretary of DOE to provide funding for RD&D to improve NGV performance and efficiency and to integrate natural gas engines into additional on-road vehicles.\n \nSec. 402          Sense of the Congress regarding EPA certification of NGV retrofit\nkits.\nIn April 2011, the U.S. Environmental Protection Agency (EPA) published new regulations for aftermarket manufacturers of clean alternative fuel conversion systems.  The purpose of the new rules is to alleviate some of the onerous burdens associated with certifying such systems and also to provide greater regulatory certainty with regard to the treatment of systems intended to be used on older vehicles and vehicles whose emission systems have exceeded their useful life.  The rules are promising, but new so their impact as yet is not clear.  Therefore, this bill expresses the desire that the EPA continue to review its regulations and the impact they have on alternative fuel aftermarket conversion systems in order to determine if additional changes are necessary.   \nSec. 403          Amendment to section 508 of the Energy Policy Act of 1992.\n The current federal law governing certain fleet acquisitions of alternative fueled vehicles (AFVs) requires that these AFVs be newly acquired in order to satisfy the acquisition credits. These requirements were first enacted as part of the Energy Policy Act of 1992 and are still in effect today.  Under rules issued by the U.S. Department of Energy, state government fleets and covered alternative fuel providers must:  1) buy a brand new AFV; 2) purchase a used AFV from someone else; or 3) buy a vehicle and have it converted within four months of acquisition.   The third option is too narrow and does not allow most conversions or repowering of older vehicles to earn credits or count against the program’s acquisition requirements. This is particularly problematic for repowering because fleets do not repower vehicles within four months of purchase.  The bill therefore directs DOE to provide credits to state government fleets and covered fuel providers even if they convert or repower vehicles even if this does not occur within four months of acquiring the vehicle.  The provision also directs DOE to issue similar rules with respect to conversions or repowers undertaken by federal government fleets.\n TITLE V—TRANSIT SYSTEMS\nSec. 501          Federal share of costs for equipment for compliance with Clean Air Act.\n Under current law, the federal share for transit bus purchases is 80 percent of the cost.  However, federal law provides 90 percent of the net cost associated with complying with Clean Air Act requirements or the Americans with Disabilities Act.  In order to further encourage such purchases and help local jurisdictions, this bill would amend federal law to provide that the federal cost share is 100 percent of the net (i.e., incremental) cost of acquiring new, clean fuel or alternative fuel buses for amounts not to exceed a net cost of $75,000.  If the net cost is more than $75,000, the federal cost-share would remain at 90 percent.       \n Sec. 502          Natural gas transit infrastructure investment.\n The bill includes a new program to encourage the development of natural gas fueling infrastructure for transit agencies.  This program would assist transit agencies in installing natural gas fueling infrastructure or expanding existing natural gas fueling infrastructure, and would authorize funding of up to $100 million dollars to be competitively awarded by the Federal Transit Administration.  In awarding grants under this program, the FTA shall take into consideration the amount of petroleum to be reduced by the project, the level of local financial support, and the technical and economical feasibility of the project. \n TITLE VI—USER FEES\n \nSec. 601          User fees.\nTo offset the cost of this bill, this section would impose a new and time-limited user fee on the sale of liquefied natural gas and compressed natural gas sold for use as a motor vehicle fuel.  The fee would be separate from the excise tax imposed on CNG and LNG.  The fee schedule would be phased-in starting in 2014 and would run through 2021 after which time it would expire.  The user fee will not apply to those who refuel at home.  The fee schedule is as follows:\n \nNothing      for 2012 and 2013; \n2.5      cents for 2014 and 2015;\n5      cents for 2016 and 2017;\n10      cents for 2018 and 2019; \n12.5      cents for 2020 and 2021;\nNothing      for 2022 and thereafter.\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7b9a595a-7183-4cb6-8bc6-f4293e643c14,\"Menendez, Lautenberg Announces $25,000 to Promote “Greening” and Environmental Sustainability in Newark\n                    \n                      January 26, 2012\n                     WASHINGTION – US Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced $25,000 in Environmental Protection Administration (EPA) environmental justice grants for the Ironbound Community Corporation to enhance a community garden and promote environmental education in the Ironbound section of Newark, NJ.\n\n “Communities like Ironbound need access to environmental programs like this one: programs that help create a greener living environment and allow residents to improve their neighborhoods. With this funding, the Ironbound Community Corporation will be able to provide a space where children and adults can come together to help green their neighborhood and learn practices to help protect the environment for generations to come,” said Senator Menendez.\n\"\"This federal Environmental Protection Agency grant will help make Newark neighborhoods healthier and cleaner places to live and work,\"\" said Senator Lautenberg, Chairman of the Senate Environment and Public Works Subcommittee on Superfund, Toxics, and Environmental Health.  \"\"Urban communities like the Ironbound are confronted with environmental challenges and I will continue fighting for federal resources to help reduce pollution in Newark and all our state’s cities.”\n\nEPA has made it a priority focus on environmental programs in areas like Ironbound given the great number and wide range of pollutants that affect the neighborhood. With more than 50,000 residents, mostly of Hispanic or Portuguese background, Ironbound is one of the most densely populated, industrialized and diverse areas of the city. Poor air quality, pathogens and toxic pollutants that impact human health and water quality particularly affect the community. The Ironbound Community Corporation is the largest comprehensive social service provider in the area and this grant will support existing gardening efforts at the East Ferry Street Family Success Center and link all their greening and gardening activities to environmental education efforts. The organization also encourages civic participation and sustainability practices, and train community members on ways to address pollution.\n More information on the Environmental Justice Small Grants program and a list of grantees:\nhttp://www.epa.gov/compliance/environmentaljustice/grants/ej-smgrants.html\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c6c34775-b8f3-4623-a2b3-37862d01dcd4,\"Menendez: Heartened to Hear Bonilla Sisters Are Recovering Well After Bone-Marrow Transplant\n                    \n                      January 25, 2012\n                     WASHINGTON – Five-year-old Yarelis Bonilla and her seven-year-old sister and donor, Gisselle, underwent bone marrow transplant surgery yesterday at the Hackensack University Medical Center.  The operation comes after the Bonilla family finally overcame the bureaucratic obstacles that were in the way of Gisselle travelling to the United States from El Salvador where she resides with her grandmother. U.S. Senator Robert Menendez (D-NJ) helped the Bonilla family obtain Humanitarian Parole for Gisselle, enabling her to donate bone marrow to her sister.  Both girls are said to be recovering well. Senator Robert Menendez issued the following statement:\n “I am heartened to hear that Yarelis finally received the transplant she so desperately needed and that both she and her sister Gisselle are doing well,” said Menendez who spoke with the girls’ grandfather, Gertrudis, this afternoon. “It’s truly remarkable how brave these young sisters are. Their courage should be an inspiration to us all. My thoughts and prayers are with Yarelis, Gisselle and their loving family, who never wavered in their efforts to save young Yarelis’ life.”\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1a287d19-b52a-4dbb-955c-e485f17e6e00,\"Senators Menendez, Rubio, and Bill Nelson Condemn Cuban Regime; Honor Cuban Dissident and Democracy Activist Wilman Villar Mendoza\n                    \n                      January 25, 2012\n                     WASHINGTON – United States Senators Robert Menendez (D-NJ), Marco Rubio (R-Fl), and Bill Nelson (D-Fl) introduced a Senate resolution today condemning the Cuban regime and honoring the life of Cuban dissident Wilman Villar Mendoza, who passed away in Cuban custody on January 19th following a 56-day hunger strike in the horrific Aguadores prison near Santiago de Cuba.\n\n “The responsibility for Mr. Mendoza’s death rests squarely with the Castro brothers, whose regime has arrested more than 4000 activists last year alone and continues to repress the human rights of all Cubans,” said Menendez.  “Wilman Villar Mendoza was merely exercising his freedom of expression when he was arrested, convicted in a sham trial that lasted an hour, and sentenced to 4 years in one of Cuba’s most inhumane prisons.  Now the Cuban security forces are harassing his wife, a member of the Ladies in White, and are threatening to take away their children.” Menendez added, “The incredible sacrifice made by Mr. Mendoza on the behalf of all Cubans will never be forgotten.  I urge the international community to speak out about the death of Mr. Mendoza and relentless abuses of human rights in Cuba”\n Senator Rubio said, \"\"I join the Cuban people in mourning the death of Wilman Villar Mendoza, and I offer my condolences and prayers to his wife and children. The Cuban regime is a callous band of murderers that once again has blood on its hands for unjustly imprisoning this man and allowing him to die from a hunger strike.  \"\"Once again, we are reminded of the unintended but negative consequences of this administration's loosened travel and remittance policies. They help deliver more hard currency to the Castro regime, making it easier for them to brutalize and even murder the Cuban people,\"\" Rubio stated.\n “We should never forget Mr. Mendoza’s fight against tyranny,” said Senator Nelson.  “And, we will continue to apply constant and unrelenting pressure until the Cuban people enjoy the freedom they deserve.” \n\n The resolution in its entirety:\n Title: Honoring the life of dissident and democracy activist Wilman Villar Mendoza and condemning the Castro regime for the death of Wilman Villar Mendoza.\n Whereas, on Thursday, January 19, 2012, 31-year-old Cuban dissident Wilman Villar Mendoza died, following a 56-day hunger strike to highlight his arbitrary arrest and the repression of basic human and civil rights in Cuba by the Castro regime;\nWhereas, on November 2, 2011, Wilman Villar Mendoza was detained by security forces of the Government of Cuba for participating in a peaceful demonstration in Cuba calling for greater political freedom and respect for human rights;\nWhereas Wilman Villar Mendoza was sentenced to 4 years in prison after a hearing that lasted less than 1 hour and during which Wilman Villar Mendoza was neither represented by counsel nor given the opportunity to speak in his defense;\nWhereas, on November 25, 2011, Wilman Villar Mendoza was placed in solitary confinement after initiating a hunger strike to protest his unjust trial and imprisonment;\nWhereas Wilman Villar Mendoza was a member of the Unio1n Patrio1tica de Cuba, a dissident group the Cuban regime considers illegitimate because members express views critical of the regime;\nWhereas security forces of the Government of Cuba have harassed Maritza Pelegrino Cabrales, the wife of Villar Mendoza and a member of the Ladies in White (Damas de Blanco), and have threatened to take away her children if she continues to work with the Ladies in White;\nWhereas Human Rights Watch, which documented the case of Wilman Villar Mendoza, stated, “Arbitrary arrests, sham trials, inhumane imprisonment, and harassment of dissidents’ families—these are the tactics used to silence critics.”;\nWhereas Amnesty International stated, “The responsibility for Wilman Villar Mendoza’s death in custody lies squarely with the Cuban authorities, who summarily judged and jailed him for exercising his right to freedom of expression.”;\nWhereas Orlando Zapata Tamayo, another prisoner of conscience jailed after the “Black Spring” crackdown on opposition groups in March 2003, died in prison on February 23, 2010, after a 90-day hunger strike;\nWhereas, according to the Cuban Commission on Human Rights, the unrelenting tyranny of the Castro regime has led to more than 4,000 political detentions and arrests in 2011; and\nWhereas Cuba is a member of the United Nations Human Rights Council despite numerous documented violations of human rights every year in Cuba: Now, therefore, be it\nResolved, That the Senate—\n(1) condemns the Cuban regime for the death of Wilman Villar Mendoza on January 19, 2011, following a hunger strike to protest his incarceration for participating in a peaceful protest and to highlight the plight of the Cuban people;\n(2) condemns the repression of basic human and civil rights by the Castro regime in Cuba that resulted in more than 4,000 detentions and arrests of activists in 2011;\n(3) honors the life of Wilman Villar Mendoza and his sacrifice on behalf of the cause of freedom in Cuba;\n(4) extends condolences to Maritza Pelegrino Cabrales, the wife of Wilman Villar Mendoza, and their children;\n(5) urges the United Nations Human Rights Council to suspend Cuba from its position on the Council;\n(6) urges the General Assembly of the United Nations to vote to suspend the rights of membership of Cuba to the Human Rights Council;\n(7) urges the international community to condemn the harassment and repression of peaceful activists by the Cuban regime; and\n(8) calls on the governments of all democratic countries to insist on the release of all political prisoners and the cessation of violence, arbitrary arrests, and threats against peaceful demonstrators in Cuba, including threats against Maritza Pelegrino Cabrales and members of the Ladies in White (Damas de Blanco).\n  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2a14074d-696c-450c-8b3b-388172fdab86,\"Senator Menendez Calls President’s Speech a Fair Deal and an Anthem for the Middle Class\n                    \n                      January 24, 2012\n                     Menendez said: “The President’s speech tonight was a well-delivered middle class anthem for fairness, hard work, and responsibility, which has always been the central focus of my service. Tonight’s speech laid-out a realistic blueprint for middle class families who work hard and play by the rules to have a fair shot at the American Dream – a blueprint that creates jobs, achieves economic fairness, rebuilds an American manufacturing base, an energy base, and educates a skilled American workforce.\n“Tonight, the President also began a national debate, that will be at the center of our policy and politics this year, about two competing visions of America -- one that unites us by our values and favors work, responsibility, and community, and another that divides us by our fears, favors the wealthiest Americans and says to the middle class: fend for yourselves. \n“Last year in his State of the Union, the President said: ‘We move forward together or not at all,’ and Tea Party Republicans spent all last year choosing not to move at all. This year we call on every member of Congress to help rebuild the economy and protect middle class values and a fair deal for every American.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bc3c513c-d3de-4eb6-9744-0d37c5d53563,\"U.S. Senator Robert Menendez on Arrest in Anti-Semitic Attack\n                    \n                      January 24, 2012\n                     WASHINGTON – Today, the Bergen County Prosecutor’s Office announced an arrest in connection to the attempted murder of Rabbi Nosson Schuman and his family while they were sleeping in their living quarters located in Congregation Beth-El, in Rutherford on January 11th.  Anthony M. Graziano, a 19 year old man from Lodi, was charged with 9 counts of attempted murder and other charges.  Graziano was also charged with arson and the firebombing of Temple K’Hal Adath Jeshurun in Paramus a week earlier.  After the most recent attack, Senator Menendez sent a letter to Attorney General Eric Holder calling for a Department of Justice investigation of not only these two violent attacks but also of the multiple attacks against the Jewish Community in recent months.  After learning of today’s arrest, Senator Menendez issued the following statement: \n\n“I congratulate New Jersey law enforcement personnel that participated in the investigation and arrest for their swift action, which I hope brings some peace of mind to the Jewish community in our state,” said Senator Menendez. “It is unacceptable that New Jersey residents should have to fear for their lives and for the safety of their families because of their religious beliefs.   I trust that today’s arrest will send a clear message that attacks of this nature as well as anti-Semitic vitriol will not be tolerated.”      \n\n  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=174c3ee3-8d14-4d39-bb94-f3b7bee4fe56,\"Menendez Applauds Implementation of New Airline Regulations to Protect Consumers from Hidden Fees\n                    \n                      January 24, 2012\n                     WASHINGTON – US Senator Robert Menendez (D-NJ), champion of efforts in the Senate to bring greater transparency to the airfare process, hailed the Department of Transportation’s announcement today that new airline regulations to protect consumers from hidden fees will go into effect later this week. This change in regulations follows efforts championed by U.S. Senator Robert Menendez to include provisions from his Clear Airfares Act in the Federal Aviation Act (FAA) that passed the Senate in 2011. Among the new provisions are requirements that airlines and ticket agents disclose all mandatory taxes and fees in published airfares, including additional baggage fees, to consumers buying tickets.\n\n“Travelers deserve to have an upfront understanding of just how much they will have to spend on a trip and not be taken by surprise at the airport with costly hidden fees,” said Menendez.  “Just last year, airline consumers were hit with an estimated $32 billion in fees, much of it in hidden fees. In these tough economic times, when our families are watching every penny, consumers deserve price transparency.  I applaud the Department of Transportation for taking this step, but I also believe that more still needs to be done to allow consumers to comparison shop for airline tickets. ”\n\nThe FAA bill that passed the Senate in 2011 included provisions from Menendez’s Clear Airfares Act to help consumers make well informed decisions before purchasing airline tickets. Specifically, the legislation requires airlines and third-party websites to provide consumers with a complete and understandable listing of total airfare charges, as well as any other possible fees that may be incurred on the flight (including: baggage, meals, blankets, headsets, changing reservations, changing seats, or extra legroom) before the ticket purchase is made.  Unfortunately, that bill is still awaiting final negotiations.\n The rule issued by DOT also follows the recommendations Menendez outlined in a letter to U.S. Secretary of Transportation Ray LaHood with 6 Senators from both sides of the aisle in September 2010. The Senator urged him to protect consumers by requiring the full disclosure of ancillary fees on airline tickets.  PDF of the Letter: http://menendez.senate.gov/imo/media/doc/092310LetterLaHoodAirlineHiddenFees.pdf   In a follow up letter sent in November of 2011, Menendez and several additional colleagues urged Secretary La Hood to include in the new rules being drafted at the time that all fees be up front, up to date, available at the time of purchase and allow for meaningful comparison shopping by consumers.\n  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=967c2232-177f-49fd-9021-153b0f001631,\"Menendez Urges the International Community to Condemn the Castro Regime for the Death of Cuban Dissident Wilman Villar Mendoza\n                    \n                      January 20, 2012\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today released the following statement on the death yesterday of Cuban dissident Wilman Villar Mendoza:\n\n“The death yesterday evening of 31-year old Cuban dissident Wilman Villar Mendoza is a tragic reminder of relentless oppression of the Castro dictatorship, but also of the dedication and commitment of Cuba’s growing dissident community to call the world’s attention to their plight.  Mr. Mendoza’s 50-day hunger-strike followed his November 4, 2011 arrest and sentencing to four years in prison for staging a peaceful demonstration against the regime. \"\"\n\"\"Like Orlando Zapata Tamayo who died in 2010 following a 80-day hunger strike to protest the beatings and arbitrary sentence imposed on him, Mendoza hoped that his sacrifice would alight the fire of the international community to the cause of democracy in Cuba, to the suffering of the Cuban people, and to the dreams of ordinary Cubans to live in a free and democratic society.\"\"\n\"\"I urge the international community to condemn the regime that perpetrated Mendoza’s death; to use their voices to demand freedom for the Cuban people; and the power of their governments to insist on the release of all political prisoners and the cessation of violence and arbitrary arrests against peaceful demonstrators.\"\"   \n\"\"I honor Wilman Villar Mendoza’s commitment to the cause of democracy and freedom in Cuba.  Today, my thoughts and prayers are with his wife, Maritza Pelegrino Cabrales, a member of the Ladies in White, and his children.\"\" \n\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6e35687c-0e97-49f4-a727-8bb9fc39467b,\"Lautenberg, Menendez Announce More than $15 Million for Disaster Recovery Community Development Block Grants in New Jersey\n                    \n                            Majority of Funding Will Go to Passaic County\n                    \n                      January 20, 2012\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Housing and Urban Development (HUD) has awarded $15.6 million in funding for Community Development Block Grant (CDBG) Disaster Recovery Assistance to repair damage from Hurricane Irene and other natural disasters.\n\n “Hurricane Irene and other natural disasters caused extreme damage throughout the state last year and hard-working New Jersey families and communities are still working to recover,” said Senator Lautenberg, a member of the Appropriations Subcommittee on Transportation, Housing and Urban Development, which funds HUD.  “These grants will help some of the hardest hit areas of the state make critical repairs.  I am proud to have helped secure this federal disaster relief funding so that resources are available for Passaic County and communities around the state as they rebuild.”\n “The devastation Hurricane Irene caused New Jersey residents was unprecedented, and this federal funding will bring relief to so many whose homes and businesses were destroyed or severely damaged,” said Senator Menendez.  “I am so pleased we were able to help secure these critical resources for families and communities in Passaic County and throughout our great state.”\n\n These grants will be distributed to local communities based on a HUD formula that relies on the severity of the storm damage and repairs not undertaken by other federal agencies such as FEMA.  At least 80 percent will go to Passaic County, which was severely flooded, and the state will work with HUD to allocate the remaining funds.  Funding can be used for a widerange of activities, including buyingout damaged property, payments to people and businesses displaced by the disaster, debris removal, rehabilitating homes and public infrastructure, support for homeowners and helping businesses retain or create jobs.    \n As a member of the Appropriations Committee, Senator Lautenberg has led the effort to secure critical disaster relief funding for New Jersey.  Following Hurricane Irene in September, Senators Lautenberg and Menendez were joined by 10 of their colleagues in sending a letter to Senate leadership requesting comprehensive federal disaster aid for HUD and other agencies.\n In November 2011, President Obama signed into a law a measure that provides $400 million for CDBG Disaster Recovery grants through HUD.\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=298b4fbb-7f6b-4d6d-8984-886a2150696a,\"Statement from Menendez on PIPA\n                    \n                      January 20, 2012\n                     \n“On Tuesday evening, I reached out to my New Jersey constituents -- through Facebook and Twitter -- to tell them I heard their concerns about the PIPA bill loud and clear. I also said I wouldn’t support a bill that did not maintain the freedom and character of the internet. I communicated their real concerns to our Senate leadership, and because of these concerns, said I would not support or vote for this bill.\n“I’m pleased the Senate has listened to the voices and concerns of our constituents and that there will not be a vote on the PIPA bill.  I am confident  that we can address the critical issues of internet piracy and counterfeit products -- both of which are hurting our economy --  in  a way that doesn’t infringe on civil liberties and protects the free and open access to the internet.”\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=edda960b-b745-40e8-b9eb-089bf7e171da,\"Lautenberg, Menendez Announce $34 Million for Low Income Home Energy Assistance Program in New Jersey\n                    \n                      January 20, 2012\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Health and Human Services (HHS) has released $34.2 million for the Low Income Home Energy Assistance Program (LIHEAP) in New Jersey.  This federal funding is in addition to the $103 million released to New Jersey in late 2011.  The program provides critical assistance to low-income families who struggle each winter to pay their energy bills.\n\n “New Jersey families’ budgets are already stretched thin and in these cold winter months they are concerned about how they will keep their homes warm,” said Senator Lautenberg, a member of the Appropriations Committee, which funds the LIHEAP program.  “Home heating assistance is a lifeline for parents working hard to feed their children and seniors living on a fixed income.  We will keep fighting to make sure this critical program is available to the thousands of New Jerseyans who are struggling to heat their homes this winter.”\n “No New Jersey family should have to worry about whether they will be able to stay warm during the winter season. And LIHEAP is incredibly important for residents of states like New Jersey that are particularly vulnerable to tough winters,” said Senator Menendez. “This funding is literally a lifeline to thousands of low income families, seniors, and laid off workers who are already struggling to make ends meet in a tough economic environment and simply can’t afford the steep cost of heating their homes.” \n\nIn October, Senators Lautenberg and Menendez sent a letter to HHS Secretary Kathleen Sebelius requesting that she release LIHEAP funds as quickly and at as high a level as possible to ensure assistance is available to families as the cold winter months approached.  The Senators also sent a letter to Senate and Appropriations Committee leadership urging that they prevent cuts to the LIHEAP program.  In addition, they sent a letter to President Obama this week asking him to increase funding for LIHEAP in next year’s budget.\n LIHEAP assists qualified families with their home energy needs, such as heating in the winter, cooling their homes in the summer, and insulating their homes to make them more efficient and reduce their energy costs.   According to the Campaign for Home Energy Assistance, more than 380,000 people in New Jersey received heating assistance in their homes last winter.\n For more information on the LIHEAP program in New Jersey, call 1-800-510-3102 or visithttp://www.state.nj.us/dca/divisions/dhcr/offices/heausfincomefact.html\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=af1f77f5-3a0a-46a9-9a35-f5636577bf22,\"Menendez, Senators Call On The SEC To Require Corporations To Disclose Their Political Spending\n                    \n                            Action comes on eve of Citizens United Anniversary, January \n                    \n                      January 19, 2012\n                     WASHINGTON  -  U.S. Senator Robert Menendez (D-NJ) today spearheaded a letter from 14 Senators to the Securities Exchange Commission (SEC) calling on it to use its existing authority to mandate the disclosure of corporate political spending. This most recent call for transparency comes on the eve of the anniversary of the Supreme Court’s unprecedented Citizens United v. Federal Election Commission decision that allows corporations to use general treasury funds on independent expenditures and electioneering communications as well as for payments to third-party organizations -- “Super PACs” -- to run political ads. Further, this decision does not require the disclosure of corporate political spending to the public or the approval of the corporation’s shareholders.\n\n “I whole-heartedly disagree with the Supreme Court’s Citizen’s United decision that essentially gives corporations the power to influence elections without the consent or knowledge of their shareholders. And I have been fighting to right this wrong,” said Menendez. “We may not be able to overturn this decision, but the SEC can take immediate action and require the public disclosure of political spending by corporations. I urge them to do so as soon as possible because it’s not just shareholders who have the right to know who’s behind these Super PACs and which campaigns corporations are influencing -- all Americans have the right to know.”\n\n\n“Super PACs are well on their way to spending more than direct campaigns in 2012. These Super PACs have seemingly benign names like ‘Americans For This’ and ‘Americans For That’. Make no mistake about it: these are not grassroots movements.  They are corporations trying to influence the outcome of elections to whichever candidate will improve their bottom line, even if that’s at the public’s expense. When a corporation hides behind the curtain of the Supreme Court’s decision, the integrity of our electoral process is compromised,” added Menendez.\n\nAction by the SEC is just one part of closing the loophole left open in the Citizen’s United decision. Senator Menendez has authored the Shareholder Protection Act, which would not only require full disclosure of any political spending by any publicly-owned corporation, but would require shareholder authorization of this spending. Investors would need to approve a corporate budget for political expenditures on an annual basis via a majority vote and any expenditure over $50,000 would need to be individually approved. Additionally, the disclosure of each expenditure and individual board member votes would need to be disclosed online within 48 hours.\nSenator Menendez has always believed in a level playing field and that our democracy should be based not on who spends the most money, but on the vote of every individual who casts their ballot.  He has done the following to achieve this end:\nProtecting Shareholders: Introduced S.1360, the Shareholder Protection Act, which would require a shareholder vote before corporate treasury funds are spent on political campaigns. The bill would require investors to authorize political expenditures on an annual basis via a majority vote, require investor approval of any expenditure over $50,000 and require online disclosure of each expenditure and individual board member votes within 48 hours.  \n DISCLOSE Act: Original cosponsor of the DISCLOSE Act and voted twice to proceed to voting on it. The DISCLOSE Act would: require all organizations and corporations to make their donors public and appear on camera to stand by their ads and ban foreign-controlled corporations and government contractors from making political expenditures. \nReducing Foreign Spending in Elections: Introduced S.2954, the Prohibiting Influence in American Elections Act, which would ensure that a corporation where either one or more foreign principals serves on the Board of Directors, or one or more foreign principals directly or indirectly has an ownership interest or one or more foreign principals directly or indirectly holds debt or other obligations in the company may not spend in American elections. Certain provisions of this bill were included in the DISCLOSE Act. \nFair Elections: Cosponsored S.750, the Fair Elections Now Act (introduced by Senator Durbin), which would create a voluntary, non-taxpayer-funded public financing system for congressional elections.\nClick here to download a PDF of the letter to the U.S. Securities and Exchange Commission. Full text is below:\n January 19, 2012\n Dear Chairwoman Schapiro:\nWe write today to urge the Securities and Exchange Commission to consider using its existing authority to issue rules requiring full public disclosure of corporate political spending.\nAs you may know, the Shareholder Protection Act (S. 1360), would require shareholder authorization and full disclosure of any political spending by any publicly-owned corporation.  While the SEC may not have the authority to implement every part of this bill, we believe the SEC should immediately consider implementing the disclosure requirements that your leadership has advised us are within your existing powers.\nAs such, we urge the SEC to consider using its rulemaking authority to issue rules that would require corporations to disclose their political spending to shareholders.  The disclosures should include spending on independent expenditures, electioneering communications and donations to outside groups for political purposes, i.e., Super PACs.  Such disclosures can be online in an easily searchable format and can also use existing communication lines between corporations and shareholders, such as proxy statements, quarterly and annual reports, and registration statements.\nWe believe that the Supreme Court’s Citizens United decision has had profoundly negative effects for all parties in our election system, including shareholders.  While some companies, such as Microsoft, Wells Fargo, Merck and Aetna, have taken the steps to publicly disclose their political spending – illustrating not only the ease with which it can be accomplished but also the acceptance of this practice by many prominent and large corporations – many shareholders remain in the dark, unaware that their money could be funding political activities, or even political attack ads.  The rights of shareholders must be protected and at present, we believe that they are being compromised.\nFurthermore, this information is not only material to shareholders, but also something that shareholders continue to request.  As indicated by the Committee on Disclosure of Corporate Political Spending in its August 2011 petition to the SEC for rulemaking, a 2006 poll – well before the Citizens United decision – showed that 85% of shareholders believed there was a lack of transparency surrounding corporate political activity.  Additionally, an October 2010 Zogby International poll commissioned by the Center for Economic Development found that 77% of business leaders said that corporations should disclose all of their direct and indirect political expenditures.  And two-thirds of those business leaders agreed with the following statement: “The lack of transparency and oversight in corporate political activity encourages behavior that puts corporations at legal risk and endangers corporate reputations.”\nThe call for disclosure of political spending by publicly-owned corporations is not a new one.  However, in the wake from the Citizens United decision, the demand for disclosure has grown as the consequences of unregulated political contributions have been fully realized by the public and businesses alike. \nA corporation’s money belongs to the shareholders, not the executives, and while we believe that shareholders deserve a voice and say if their money is going to be spent on political activity, a positive first step would be to disclose this activity so that shareholders can at least be aware of it, which they may not presently be. \nWe thank you for your attention to this matter and look forward to your response.\nSincerely,\nRobert Menendez\nJeff Bingaman\nSherrod Brown\nTom Udall\nPatrick Leahy\nSheldon Whitehouse\nDick Durbin\nJeanne Shaheen\nTom Harkin\nMark Begich\nRichard Blumenthal\nJeffrey Merkley\nFrank R. Lautenberg\nBernie Sanders\nAl Franken\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c0827ac1-d258-4374-ba8c-21af55f0f2de,\"Menendez, Representatives Call on GAO To Report on Foreclosure Reviews\n                    \n                            Housing Chairman has expressed serious concerns that reviews may not be truly independent\n                    \n                      January 19, 2012\n                     WASHINGTON, DC – As Chairman of the Senate Subcommittee on Housing, Transportation and Community Development, Senator Robert Menendez (D-NJ) along with Representatives Maxine Waters (D-CA), Brad Miller (D-NC) and Luis Gutierrez (D-IL) have called on the non-partisan Government Accountability Office (GAO) to examine and investigate the design, implementation and eventual results of the foreclosure review process that the Office of the Comptroller of the Currency (OCC) and Federal Reserve are currently carrying out. Last month, Menendez presided over a hearing where he raised concerns over the fact that regulators were allowing banks under review to pick their own third party consultants to conduct the audits.\n\n “A toothless foreclosure review is simply not enough.  We need the GAO’s independent assessment to ensure the process is fair to homeowners - especially since regulators are letting the big banks pick their own auditors. That’s like letting the fox watch the henhouse,” said Menendez. “The process must be fair, transparent and consistent and that’s what we’re asking the GAO to determine. These banks and mortgage servicers who participated in illegal foreclosure activities must be held accountable to the homeowners they harmed by charging illegal fees or even worse, taking away their homes. ”\n “Unfortunately, the history of the last few years is that banking regulators have put the interests of the firms they regulate before the interests of consumers.  That’s why I think it’s crucial that the GAO look over the shoulder of the OCC and the Federal Reserve, to make sure that they’re not letting servicers paper over years of wrongful foreclosures,” said Representative Waters.\n “The OCC should never have let servicers pick their own auditors. It can’t be a surprise to anyone that servicers picked very indulgent auditors. Homeowners really deserve a tough, independent review of foreclosures, and that’s not what they’re getting from servicers and the OCC,” said Representative Miller.\n “I'm concerned that borrowers who suffered financial harm due to illegal foreclosures still don't know that they can request a review.  Even if they do, it's unclear whether the banks and their hand-picked auditors are going to give those borrowers a fair deal.  The same people who were abused in the first place are the people the banks are hoping to sweep under the rug now.  Since we know that the banks aren't going to look out for consumers, we have to, which is why we are calling on GAO to act.  We must make sure that the foreclosure reviews have absolute transparency, accountability, and integrity,” said Representative Gutierrez. \n\nThe foreclosure review process is being done because of the “robo-signing” scandal from 2010 that showed many banks and mortgage servicers wrongfully foreclosing on homeowners and not following existing foreclosure procedures and laws.  Robo-signing is when banks falsely sign property documents during the foreclosure process without properly reviewing them. As a result of this scandal, the Federal Reserve and OCC ordered banks and mortgage servicers – the same ones that made the mistakes in the first place – to review as many as 4.6 million homeowners who may have been wrongly foreclosed on.  The foreclosure reviews themselves, though, will be conducted by third-party consultants, which were selected by the banks and servicers.  In other words, the banks and servicers who have wrongly foreclosed on some homeowners were allowed to pick the companies that will be reviewing them.\n Because of this and other issues, many fundamental questions remain about the program’s independence, transparency,  and accountability to homeowners.\n The letter asks the GAO to look at the selection process and any conflicts of interest with the third-party consultants; any possible alternatives to this selection process; whether the Federal Reserve and OCC should release full guidelines when determining if homeowners were harmed; the oversight and capacity of the third-party consultants; whether the penalties imposed on the banks and mortgage servicers are appropriate; what type of uniformity standards are being implemented for homeowners and several other aspects of the reviews.\n Senator Menendez has been a leader on this issue: \nChaired a Housing Subcommittee hearing in December 2011 that strongly questioned the procedures the Federal Reserve and OCC had put into place, as well as the third-party consultants and their selection process.\nLed a letter with colleagues in July 2011 urging regulators to publicly release information regarding these foreclosure reviews.\nCommissioned an earlier GAO report in May 2011 on robo-signing and what can be done to prevent it.\nWrote a letter immediately after robo-signing allegations were revealed in October 2010 to more than 120 banks and mortgage servicers asking them to review their existing procedures to prevent it from occurring.\nClick Here to see download a PDF of the letter to the GAO. Full text is below:\n January 13, 2012\n Dear Comptroller General Dodaro:\n Under the enforcement action taken in April 2011 by the Office of Comptroller of the Currency (“OCC”) and the Federal Reserve Bank (“FRB”), several large mortgage servicers were required to correct deficiencies in their servicing and foreclosure processes and to engage third-party consultants to conduct a multi-faceted review of foreclosure actions that occurred in 2009 and 2010. The foreclosure reviews will largely be conducted by third-party consultants upon request by borrowers who faced some type of foreclosure action on their primary residence.  The consultants are charged with evaluating whether borrowers suffered financial injury as a result of servicer errors, misrepresentations or other deficiencies in the foreclosure process and determining appropriate remedies such as compensation for those borrowers.  The foreclosure review program could potentially impact about 4.6 million homeowners who are eligible for review. \n \nWe are pleased that the OCC and FRB are taking steps to evaluate wrongful foreclosure processes and provide recourse for homeowners who have been harmed by deficient foreclosure actions.  However, it is imperative that this program receive the necessary oversight and evaluation it needs to ensure its success. \n Accordingly, we request that GAO assess the independence, transparency, accountability, and consistency of this foreclosure review process in its design, implementation, and results.  We request that this GAO assessment include, among other things:\n  Independence \nShould      the OCC and FRB have allowed mortgage servicers found responsible for      wrongdoing in foreclosures to pick the third party consultants that would      review those same servicers’ foreclosure cases?  \nWere      there any alternatives to the OCC and FRB’s approach to allowing mortgage      servicers to choose third party consultants?  If so, what are the      tradeoffs between the various approaches that were available to the OCC      and FRB?\nWere      the conflict of interest standards used by the OCC and FRB to approve or      disapprove of the third party consultants fair to both servicers and      homeowners? \nAs      part of the information gathering process during foreclosure reviews,      should the third party consultants be required or permitted to speak      directly to homeowners without getting permission from or notifying      servicers of such direct communication?  \n  Transparency\nShould the OCC and FRB release      the full guidelines (more than just examples) to the public for what      constitutes “financial harm” to a borrower?\nShould the OCC and FRB release      full guidelines on the escalation process for imminent foreclosure?       Should the foreclosure process be temporarily stopped for homeowners with      imminent foreclosures until the review is completed?\nShould the OCC and FRB release      the full guidelines on what standards are being used to provide relief or      compensation for people whose foreclosures were not handled properly?\n Accountability\nHow      will the OCC and FRB conduct oversight of both the third party      consultants’ work and the responsiveness of servicers?  What actions      should regulators take if they find performance of third party consultants      or servicers lacking? \nDoes      each of the third party consultants have adequate capacity and expertise      to perform the reviews in an accurate and timely manner?\nAre      the outreach procedures and advertising to homeowners that are being      adopted adequate to effectively reach all eligible households?  What      should constitute “success” in terms of a borrower response rate?  \nIs      April 30, 2012 an appropriate deadline for when eligible homeowners must      submit claims related to deficient mortgage servicing?\nAre      the penalties the OCC and FRB ultimately impose on servicers for illegal      or improper foreclosure practices fair given the need for both      compensation and deterrence?  \n Consistency \nWhat procedures are being established for both the foreclosure reviews and the remediation process to ensure uniformity so that borrowers get the same treatment no matter which servicers or consultants they have?  Will these be uniform for all of the affected servicers, both those regulated by the OCC and those regulated by the FRB?\nWhat standards for relief should be used to provide      compensation for people who were foreclosed upon improperly in various      ways?\n In closing, the foreclosure review program is extremely important to our nation’s homeowners, especially those who have been harmed by illegal foreclosure practices.  As we attempt to correct for past illegal foreclosure practices, the federal government must ensure independence, transparency, accountability, and consistency in all aspects of the foreclosure review program.  After being hard-hit by the foreclosure crisis and other economic woes, American homeowners expect and deserve a fair review and compensation where appropriate. \n Thank you for your prompt attention and consideration. \n Sincerely,\n Senator Robert Menendez                                                       Congresswoman Maxine Waters\n \n \n \n \n \nCongressman Brad Miller                                                       Congressman Luis Gutierrez\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=48c7645a-a322-44dd-a0e5-31595bce0b57,\"Lautenberg, Menendez Announce Nearly $100,000 For New Jersey Fire Departments\n                    \n                      January 19, 2012\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced two New Jersey fire departments have received a total of nearly $100,000 in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  Eligible uses of this grant funding include investments in training, equipment, and health programs.\n\n “Firefighters put their lives on the line to keep us safe and it is critical that they have the resources and training to do their job,” said Senator Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG program.  “With so many municipalities facing tough budget decisions, this federal investment in our local firefighters is especially important to the safety of our communities.  We will continue working to make sure our first responders are well prepared to keep families in New Jersey and across the country safe.”\n “Our firefighters need to have the resources they need to protect themselves and our families in case of a fire emergency,” said Senator Menendez.  “These funds will allow local fire departments to purchase the most modern safety equipment available and boost their capacity to respond in case of a fire.  This is the very least we can do for the safety of our first responders, our families, and our communities.”\n\n The following federal grants have been awarded:\n Township of Teaneck – $74,151 for operations and safety\n Brick Township Joint Board of Fire Commissioners – $23,040 for operations and safety\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=50c719f0-d3d3-4506-85b5-3b82c3cc96f4,\"Menendez, Lautenberg Hail Department of Agriculture’s Disaster Assistance Package \n                    \n                            Nearly $2.5 Million will Help NJ Farmers and Communities Repair Damage from Hurricane Irene and Other Storms\n                    \n                      January 18, 2012\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) today applauded the U.S. Department of Agriculture Secretary Tom Vilsack’s announcement of federal disaster assistance funding for 33 states, including New Jersey. This funding, which is provided by the Natural Resources Conservation Service’s Emergency Watershed Protection (EWP) as well as the Farm Service Agency’s Emergency Conservation Program (ECP), will help states that have endured serious damage as a result of extreme weather. New Jersey communities suffered enormous losses from Hurricane Irene and flooding this year, which is why the Department of Agriculture has allotted $2,470,000 to help rebuild and repair affected structures. \n\n “This funding will ensure that New Jersey farmers and landowners are given the help they need in recovering from the physical damage incurred by extreme storms this past year,” said Senator Menendez. “ I witnessed first-hand how the hurricane affected people’s lives, sweeping away their possessions and livelihoods all at once. It is not only the farmers who are affected by land damage, but the communities around them who thrive from their local business.  New Jersey is the Garden State for a reason, and this funding will help get farmers back on their feet and our economy moving.” \n “These federal grants will help New Jersey’s farms and rural areas recover after last year’s devastating storms,” said Senator Lautenberg, a member of the Senate Appropriations Committee, which funds USDA. “We will continue working to secure federal disaster relief funding so that New Jersey’s communities and economy have the resources necessary for a strong recovery.”\n\nThe Emergency Watershed Protection (EWP) program will contribute $1,170,000 to address problems such as reseeding flooded farmland and removing debris from water sources. The Emergency Conservation Program (ECP) and Emergency Forest Restoration Program (EFRP) will give New Jersey $1,300,000 to grade farmland affected by water damage and restore conservation structures, among other projects.\nFollowing Hurricane Irene in September, Senators Menendez and Lautenberg were joined by 10 of their colleagues in sending a letter to Senate leadership requesting comprehensive federal disaster aid from the USDA and other agencies.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3901853c-ad39-4ba5-8b8b-ed9c77c4c8ab,\"Lautenberg, Menendez Announce $3.5 Million for Transportation Research Consortium at Rutgers\n                    \n                      January 17, 2012\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Transportation (DOT) has awarded $3.5 million to the Center for Advanced Infrastructure and Transportation (CAIT) at Rutgers University to continue as a University Transportation Center (UTC) and to create a research consortium with other universities. \n\n\"\"Rutgers is national leader in researching solutions to meet our country’s transportation challenges,” said Senator Lautenberg, a member of the Environment and Public Works Committee, which authorizes the UTC program.  “With this direct federal investment, Rutgers will build a research consortium with universities around the country that will identify initiatives for strengthening our country's infrastructure. I will continue to fight for federal funding that keeps New Jersey on the move and on the cutting edge of transportation research.”\n “Little is of more importance to our regional economy than a top-notch transportation system,”“While I’m not surprised, I am incredibly pleased that Rutgers’ researchers will be leading the efforts to enhance the nation’s transportation infrastructure.”   said Senator Menendez. \n\n Earlier this year, Senators Lautenberg and Menendez wrote a letter in support of CAIT’s application for this DOT grant.  CAIT will use the funds to build a consortium comprised of researchers at New Jersey Institute of Technology, Princeton University, Columbia University, University of Delaware, University of Texas at El Paso, Utah State University, University of Virginia, and Virginia Tech that will create stronger academic partnerships to advance transportation research across the country.  \n DOT-designated UTCs work to advance U.S. technology and expertise in transportation through education, research, and technology transfer at university-based centers of excellence.  CAIT at Rutgers became a UTC in 1998 and currently has 14 active programs that address 10 different infrastructure areas working to increase the safety and efficiency of our transportation network.\n In addition, Rutgers will participate in the National Transit Research Consortium, which also received a $3.5 million DOT grant.  This consortium is led by the Mineta Transportation Institute at San Jose State University.\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=22d6045a-8705-4378-bca1-553bf59d0bc1,\"Menendez Speaks On Martin Luther King, Jr. Day \n                    \n                      January 16, 2012\n                     SENATOR MENENDEZ'S REMARKS IN HONOR OF MARTIN LUTHER KING, JR. \nAS PREPARED FOR DELIVERY:\nThis year has been a year to remember... a year of upheaval and progress, both here at home and around the world... a year of incivility in our politics, violent conflicts raging in Syria, Iraq, Afghanistan, and economic uncertainty in every nation -- and yet we believe, as Dr. King did, that from the chaos, from the uncertainty, a new hope and a better world will arise...\nThe sad bitter fact is this year has reminded us that we need Martin Luther King, Jr. again – more than ever. We need his words, his inspiration, his message, and his direction ALL OVER AGAIN.\nWe live in a world where we hear people demonized – ALL OVER AGAIN... We hear the same corrosive, hateful speech – ALL OVER AGAIN... We hear people demonized for being poor, for having no job, for being too religious or not religious enough. We look around the world and see women demonized for being women, for choosing to have children, or not have children.\nWe hear people demonized for the color of their skin – ALL OVER AGAIN...for where they live or who they love – ALL OVER AGAIN...\nWe hear – in more and more places – more and more people and families demonized for being undocumented – too foreign – too different. We hear the sad vitriol of those who wear their bigotry as a badge of honor, proclaim it as their patriotic duty.\nMartin Luther King taught us that selfishness, our lack of compassion, judgmental harshness, unfeeling cruelty are a rising wave of dark, corrosive, poisonous water that can sweep across a people and threaten our humanity and our civilization.\nThis Martin Luther King Day our message should be clear. It’s the message my mother taught me growing up in an immigrant family in a tenement in Union City, hoping to have a chance... hoping for the best in people so that I could do my best and achieve my dreams. It’s a message of hope and tolerance...a message that says: I don’t care who you are... I don’t care about the color of your skin... I don’t care where you live or where you came from... I don’t care what you do... It’s the message that there is a fundamental decency that is alive in all of us, part of the human spirit and the human condition...and, this year, too many times, day-by-day, newscast-by newscast -- in too many places around the world and here at home -- we seem to be losing that decency. We need Dr. King’s inspiration, his spirit, and his words now more than ever... We need to hear him – ALL OVER AGAIN.\nThe year began with the immolation of a young man in Tunis whose cry for freedom echoed throughout the Middle East, and in every capital of every nation around the world... It was one man’s tragic fate that planted the seed of an Arab Spring that saw the first green-shoots of democracy rise from the long winter of dictatorship and discontent through the shifting sand of the Middle East... but it also brought uncertainty, renewed ethnic violence, and the darkest demons in the human spirit. It has given new life to old conflicts... Sunnis against Shia in Iraq... Muslims against Coptic Christians in Egypt... and anti-Semitism right here in our own backyard with the senseless fire bombing last week of Temple Beth El in Rutherford. It is that kind of hatred – that kind of violence – that Dr. King preached against and prayed against.\nWe need his words and message --- ALL OVER AGAIN – when he said: “It is still one of the tragedies of human history that ‘the children of darkness’ are frequently more determined and zealous than the ‘children of light.’”\nIn this past year we dedicated a new monument in his honor – in the shadow of the great monuments to freedom and democracy – where it belongs...a monument to the life and legacy of the man whose words are carved in stone to inspire new generations of Americans to take up the cause of freedom and justice in his name – so we can read them – ALL OVER AGAIN...\nAnd so we gather today to honor his memory in uncertain times. Our challenge is to remember his words and find in them the certainty that he knew...the certainty of the goodness and hope in the human spirit...the certainty of justice, tolerance, and freedom...the certainty that comes with faith, wisdom, and the power in all of us to judge others not by our differences but by our common interests and concerns.\nHe believed in the spirit of community in all of us when he said: “An individual has not started living until he can rise above the narrow confines of his individualistic concerns to the broader concerns of all humanity.”\nHe said, “Every man must decide whether he will walk in the light of creative altruism or the darkness of destructive selfishness.”\nOn the scourge of racism Dr. King was always most eloquent – and we need to hear his words – ALL OVER AGAIN...\nHe carried the banner of tolerance saying: “There is little hope for us until we become tough-minded enough to break loose from the shackles of prejudice, half-truths, and downright ignorance.”\nWe need to hear his words for immediate action on Civil Rights and Human Rights – ALL OVER AGAIN... He said: “Perhaps it is easy for those who have never felt the stinging darts of segregation to say: Wait. But when we have seen vicious mobs lynch your mothers and fathers at will and drown your sisters and brothers at whim; when you have seen hate-filled policemen curse, kill, and kick your Black brothers and sisters... when you are forever fighting a degenerating sense of nobodiness – then you will understand why we find it difficult to wait.”\nHis words moved us. His life changed us – and we need the vision of Dr. King – ALL OVER AGAIN.\nSo we gather again this year, in 2012 -- to celebrate the life and legacy of Martin Luther King, a true leader, a man who would not wait -- who stood his ground against the odds -- against those who would turn dogs and fire hoses on women and children, who would beat them and arrest them simply because of their race – and yet remained, at his core, a man of peace.\nHe said in accepting the Nobel Peace Prize in 1964: “I still believe that one day mankind will bow before the altars of God and be crowned triumphant over war and bloodshed, and nonviolent redemptive goodwill will proclaim the rule of the land. ‘And the lion and the lamb shall lie down together and every man shall sit under his own vine and fig tree and none shall be afraid.’ I still believe we shall overcome.”\nWe need to hear those words – ALL OVER AGAIN.\nThey were his weapon and shall remain our symbol of America’s hope, our symbol of America’s promise, but they are also a symbol of the promise of democracy and freedom around the world. Dr. King would have understood the Arab Spring in the context of the pitfalls and promise of the human spirit and the human heart... We need to hear his prescient observation about alienation in society – ALL OVER AGAIN…\nHe said, \"\"When culture is degraded and vulgarity enthroned, when the social system does not build security but induces peril, inexorably the individual is impelled to pull away from a soulless society. The process produces alienation – perhaps the most pervasive and insidious development in contemporary society.\"\"\nThose words were prophetic in their description of those in today’s world who have become so alienated that they would choose martyrdom and murder over tolerance, life, and liberty. His words have never burned as brightly as they do right now, and perhaps the truth is we need to hear them – ALL OVER AGAIN -- lest we forget what he taught us.\nAs we celebrate Martin Luther King Day 2012 – let it be our challenge to remember his words. Let us remember Dr. King today and every day for his wisdom, his words, and for leading us to a better place.\nThank you very much.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=03bdf02a-10c7-4dde-bb1f-8e84aaf04828,\"Menendez to Support Shwartz for Third Circuit\n                    \n                            Senator Will Return Blue Slip\n                    \n                      January 13, 2012\n                     Newark – Following an in-depth discussion with Judge Patty Shwartz earlier today, U.S. Senator Robert Menendez announced that he will support her nomination to serve on the Third Circuit Court of Appeals.  Today’s meeting came as a result of a letter the Senator received Wednesday evening from Judge Shwartz, requesting an opportunity to interview again with him regarding her nomination. \n\n “After an in-depth discussion today with Judge Patty Shwartz, I am pleased to announce that I am supporting her nomination to serve on the Third Circuit Court of Appeals,” said Menendez from his office in Newark, New Jersey.  “Judge Shwartz satisfactorily answered questions covering important legal topics such as current law on the rights of corporations under the First Amendment, constitutional limits on Executive Branch power and the application of heightened standards of review under the Constitution.  She adequately allayed my earlier concerns and I will be returning my Blue Slip.” \n\n Menendez further expressed his appreciation of certain members of the federal bar who provided him their insights saying, “I am grateful to members of the federal bar whom I respect greatly --  Gerry Krovatin, James Cecchi and John Vazquez – for sharing their positive insights regarding Judge Shwartz’s abilities.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0e467ba9-1aad-43d8-9a9e-cf9e21eed1a2,\"Menendez Calls For DOJ Investigation Into Anti-Semitic Attacks in New Jersey\n                    \n                            In letter to Attorney General Holder, Menendez requests swift action to stop consistent hate crimes against the Jewish Community    \n                    \n                      January 12, 2012\n                     WASHINGTON – Concerned with the recent and persistent attacks against the Jewish Community in New Jersey that have now escalated to the level of attempted murder in the most recent incident involving Molotov cocktails being targeted at a Bergen County Rabbi and his family in a Bergen County Synagogue, U.S. Senator Robert Menendez has written a letter to Attorney General Eric Holder in the Department of Justice requesting a full investigation.  Several Molotov cocktails were thrown through the windows of Congregation Beth El, one causing minor injuries to Rabbi Nosson Schuman.  This violent incident is the latest in a string of anti-Semitic attacks that have taken place in New Jersey in the last month.\n\n“I am horrified by the numerous and increasingly violent anti-Semitic attacks that have recently been committed against the Jewish community in New Jersey and I have supported the efforts of local law enforcement to stop them,” said Senator Menendez. “However, the escalation to attempted murder - an attack against a family while they were sleeping - calls for a stepped-up commitment to stop the violence immediately.  I am pleased that the FBI is working with a law enforcement coalition to investigate this crime and I have urged the Attorney General to commit additional resources to this investigation.  The repeated and dangerous attacks need to be addressed immediately so that families in New Jersey, regardless of their religious affiliation, can rest assured that they can be safe and thrive in the Garden State.”     \n\nThe full letter to Attorney General Holder is below:\nJanuary 12, 2011\nDear Attorney General Holder:\nI write to urge you to fully investigate the horrendous recent attack on Rabbi Nosson Schuman and the Rutherford, New Jersey synagogue. As this attack represents the fourth anti-Semitic incident in less than a month, I am deeply concerned about the escalating threats against New Jersey’s Jewish community. I understand that the Federal Bureau of Investigation has joined a coalition of law enforcement personnel to investigate this hate crime, and I urge the Department of Justice to take the necessary steps and commit the required resources to combat these acts of intolerance.\nYesterday morning, perpetrators threw several Molotov cocktails through the windows of a three story building that contained the Orthodox synagogue Congregation Beth El and the residence of Rabbi Nosson Schuman. Thankfully, the incendiary devices did not explode upon impact. The 4:30 a.m. attack awoke the Rabbi, and he successfully extinguished the fire resulting in burns to his hands. The Rabbi then led his wife, five children, and parents to safety. Authorities are now investigating this attack as an attempted murder.\nThis incident is consistent with a pattern of escalating violence against Bergen County’s Jewish community. Authorities have also discovered anti-Semitic graffiti at synagogues in Hackensack and Maywood. On January 3rd, arsonists used an accelerant to start a fire at the Congregation K'Hal Adath Jeshuran in Paramus. No arrests have been made in these incidents.\nIt is my sincere hope that the perpetrators of these heinous acts will be quickly brought to justice. These attacks on our Jewish community are attacks on us all. I hope that the Department of Justice will commit all necessary resources to combat these vitriolic acts of hatred.\n Sincerely,\nROBERT MENENDEZ\nU.S. SENATE\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c1b3fc8e-9a79-489f-a8a8-b588c904c516,\"Menendez, Lautenberg Announce More Than $250,000 For New Jersey Fire Department and EMS Agency\n                    \n                      January 11, 2012\n                     NEWARK – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced a New Jersey  fire departments and an Emergency Medical Services organization have received more than $250,000 in combined federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  Eligible uses of this grant funding include investments in training, equipment, and health programs.\n\n “Our firefighters need to have the resources they need to protect themselves and our families in case of a fire emergency,” said Senator Menendez.  “These funds will allow local fire departments to purchase the most modern safety equipment available and boost their capacity to respond in case of a fire.  This is the very least we can do for the safety of our first responders, our families, and our communities.”\n “With first responders ready to roll at the sound of the alarm, we must be certain that they are sufficiently trained and equipped to handle emergencies safely and effectively,” said Senator Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG program.  “First responders put their lives on the line to keep us safe and they deserve our support.  While states and municipalities are making tough budget cuts, this direct federal investment in local emergency response is especially important to the safety of our communities.”\n\nThe federal grants have been awarded to the following organizations:\n East Freehold Fire Company in Freehold – $196,426 for operations and safety\n Hatzolah Emergency Medical Services in Lakewood – $56,120 for operations and safety\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=154818f1-c736-42a7-999e-399c237a8804,\"Senators Rubio, Menendez Call for Release of Ladies In White Member Ivonne Malleza and For Political and Economic Isolation of the Castro Regime\n                    \n                      January 10, 2012\n                     Washington, D.C. – U.S. Senators Marco Rubio (R-FL) and Robert Menendez (D-NJ) issued the following statement regarding the Castro regime’s unjust incarceration of Cuban democracy advocate Ivonne Malleza, who was detained on November 30, 2011 for staging a peaceful protest at a Havana park and is now confined to the notorious maximum security Manto Negro prison:\n “The unjust detention of pro-democracy leader and member of the Ladies in White, Ivonne Malleza Galano, her husband Ignacio Martínez Montejo and activist Isabel Hayde Alvarez Mosqueda for staging a peaceful protest in supporting freedom for the Cuban people, once again highlights the abuses of civil and human rights taking place just ninety miles from America’s shores.  The unrelenting tyranny of the Castro brothers’ regime led to more than 3,500 political arrests in 2011. We urge the United States and the world community to demand their immediate release; to recognize the abundant abuses of human and civil rights on the island; and to adopt reforms that politically and economically isolate, rather than sustain, this repressive regime.”\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8708ecbc-2af8-4f6e-bc13-7373d133277c,\"Menendez, Lautenberg Announce Nearly $2 Million for New Jersey Highway Safety\n                    \n                      January 10, 2012\n                     NEWARK – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced the U.S. Department of Transportation (DOT) has awarded the New Jersey Division of Highway Traffic Safety nearly $2 million to improve highway safety and reduce traffic accidents, injuries, and deaths.\n “Highway safety programs are essential for keeping New Jersey drivers safe,” said Senator Menendez. “As one of the most heavily traveled states in the nation, we unfortunately have seen our share of traffic accidents. This is about saving lives and that’s why we advocate for safety funding and why I am so glad to see that work pay off.\"\"\n “New Jersey is home to some of the most traveled roads in the country and this federal grant will help make them safer,” said Senator Lautenberg, a member of the Appropriations Subcommittee on Transportation, which funds this program.  “We need to do all we can to make sure New Jersey roadways are safe for our drivers, passengers, workers and pedestrians and I will continue to fight to make safety a priority.”\n New Jersey is receiving these federal funds through the Section 402 State and Community Highway Safety Grant Program, which was created to support state and community programs to reduce deaths and injuries on highways.  New Jersey uses these funds to implement its Highway Safety Plan, which includes alcohol countermeasures, police traffic services, work zone safety, pedestrian and bicycle safety, and driver and passenger protection programs.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5fd659e7-93ab-4a9f-89a7-227fddedd674,\"Menendez Applauds Decision to Expel Venezuela’s Consul in Miami\n                    \n                             Expresses Alarm About Visit of Iranian President Ahmadenijad to Latin America\n                    \n                      January 9, 2012\n                     WASHINTON – US Senator Robert Menendez today applauded the State Department decision to expel the Venezuela Consul in Miami, Livia Acosta Noguera, for her promotion of cyber-attacks on the United States while serving at the Venezuela Embassy in Mexico. Menendez also deplored the warm-welcome provided to Iranian President Ahmadinejad this week by Venezuela, Cuba, Nicaragua, and Ecuador.\n\n“I fully support the State Department’s decision to expel Venezuela’s Consul in Miami, Livia Acosta Noguera,” said Menendez.  “Ms. Acosta’s illicit activities in Mexico, including the support of cyber-attacks on the United States, highlight the threatening and illegal conduct supported by President Chavez against the United States.   These provocative actions by Venezuelan officials, combined with the welcome mat being rolled out this week by Chavez and the leaders of Nicaragua, Cuba, and Ecuador for Iranian President Ahmadinejad are alarming and unfortunately signal that these nations place a higher value on colluding with an international pariah state than in working with the world community to address Iran’s support for terrorism, including acts of terror perpetrated in Latin America, as well as its nuclear weapons ambitions.”\n\nIn February, Senator Menendez, who chairs the Western Hemisphere Subcommittee of the Senate Foreign Relations Committee, will hold a hearing on the threat to the United States posed by Iran's diplomatic and espionage activities in Latin America. The hearing will address: Iran’s commercial, diplomatic and military outreach to the region; the Iranian assassination attempt on the Saudi Arabian Ambassador to the U.S.; and allegations raised in an investigative documentary aired on Univision in December regarding Iran’s effort to launch cyber-attacks and other attacks on U.S. government facilities, Iran’s support for military training in the region, and Iran and Hezbollah’s roles in narcotics trafficking.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6fd4d019-7313-4fd5-afb8-2000c4e0c965,\"Menendez On-Hand At Ribbon Cutting To Officially Open A New VA Outpatient Clinic In Northfield\n                    \n                      January 9, 2012\n                     NORTHFIELD – Senator Robert Menendez (D-NJ) today joined New Jersey Congressman Frank LoBiondo, Northfield Mayor Vincent Mazzeo and others at a ribbon cutting ceremony to officially open a new and modern VA Community Based Outpatient Clinic in Northfield, Atlantic County. This new 10,000 square-foot VA medical facility offers improved access and upgraded technology for veterans who previously relied on a smaller, outdated facility in Ventnor for local care.\n\n“I, along with Congressman LoBiondo, have long been fighting to ensure our Southern New Jersey veterans have access to the healthcare they deserve and have earned. This state-of-the-art clinic has found a great home in Northfield, giving Atlantic and Cape May County veterans the opportunity to take advantage of new technologies – like telemedicine – and other medical services which until now weren’t available locally. And I applaud the VA and all those involved for making it happen,” said Menendez. “This is a great step forward, but I hope it’s just the start. Even with these new local services, some veterans will still have to travel 90 miles to a different state to receive full service medical care. In my view, it’s just not acceptable to ask a veteran to travel to Wilmington for care after they have traveled to fight a war on our behalf. I look forward to continuing to work to honor those who have served and keep our commitment to them when they return home.”\n\nSenator Menendez has always stood with veterans in Southern New Jersey and across the state. Most recently, he co-signed a letter with Congressman LoBiondo to VA Secretary Eric Shinseki asking for full consideration to a proposal by Shore Memorial Hospital in Somers Point to begin a pilot program allowing veterans to access care at their local facility where they would accept Medicare-rate payments from the VA. He has sponsored and will continue to sponsor Veterans Information Days and Job Fairs across the state like he did in September at the Atlantic Cape Community College in Mays Landing. As a former member of the Senate Budget Committee, Menendez oversaw a record increase in funding for the VA and was an early and strong co-sponsor of the 21st Century GI Bill to help veterans get the education they need.\nMore about the clinic from the VA:\nThe new 10,000 square-foot VA Community Based Outpatient Clinic opened its doors December 5 in Northfield, N.J., offering improved access and upgraded technology for veterans. For more than a dozen years, the clinic was located in Ventnor, N.J. The clinic is four times larger with ground floor access, easy parking and bus transportation. The clinic offers a host of services; primary care, women’s health, podiatry, blood and lab work, electrocardiography, behavioral health, substance abuse, psychosocial rehabilitation and homeless Veteran support including HUD-VA Supported Housing program coordination. The clinic is exploring the Veterans Justice Outreach Initiative, which provides an alternative legal route for veterans. Telemedicine will provide behavioral health, diabetic retinal imaging and dermatology services. Nutrition, weight management groups and pre and post operative visits via the telemedicine pipeline come online in 2012. Telemedicine connects clinic patients to specialty care and other providers via video technology, and drastically reduces the need for Veterans to travel. Escorts are available to guide you through the clinic and answer any questions.\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bb9c5d45-7f8c-4484-a631-12f2111550ee,\"Menendez Applauds Administration's Decision to Streamline Family Reunification Process\n                    \n                      January 6, 2012\n                     WASHINGTON, DC– U.S. Senator Robert Menendez (D-NJ) applauded the Obama Administration’s actions today to keep families together by allowing immigrant family members of U.S. citizens to apply for family unity waivers in the U.S.  In a notice in the Federal Register, the United States Citizenship and Immigration Services announced it will publish new procedures which will allow husbands, wives and children of U.S. citizens to remain here with their families and spend only a short time in Ciudad Juarez or at another U.S. consulate abroad for their final visa interview and to obtain their lawful permanent resident status.\n\n“A common sense change like this-- literally in where a government form is processed— means a world of difference to immigrant families,” said Menendez, who, along with his colleagues in the Congressional Hispanic Caucus, had advocated for the change for the past year.  “Small children should not have to be separated from their mothers and fathers. Wives and husbands should be able to stay together while they petition the government for lawful status.  Government bureaucracy should not get in the way of American families sticking together. I am hopeful that the Administration will broaden this simple fix to also include the relatives of lawful permanent residents.”\n\nCurrently, U.S. citizens and lawful permanent residents face unnecessary and dangerous bureaucratic hurdles in obtaining lawful permanent resident status for their spouse or child. They have to file a visa petition, and once the petition is approved and the visa appointment scheduled, the spouse or child must travel to a U.S. consulate in their home country to be interviewed.  Any needed waiver must be applied for while the applicant is waiting in the home country, and the decision on the waiver often takes weeks, months or even more than a year to be completed.   Meanwhile, families are separated and spouses and children are forced to wait in potentially dangerous situations until a waiver decision is made and then can complete their visa processing and return to the U.S. with their lawful permanent resident document (“green card”).\nMenendez pointed to the story of Vidal Tapia of Paterson New Jersey as an example of the importance of the policy change.  Vidal, who was valedictorian of his high school class with a 4.0 GPA, has to travel to Ciudad Juarez to get his family visa and would have to wait in Mexico for months while he tries to prove ‘extreme hardship’ to his family due to the separation. He would risk permanently being separated from his mother and other close relatives, just to process his visa. With this change, Vidal could apply for the ‘extreme hardship’ waiver while still in the U.S. and he would know whether he qualified before leaving the U.S. That would remove the guessing game and remove much of the fear from the process.\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=96cd334c-439f-4828-8aba-05d5fa0c653c,\"Menendez Recognizes Cervical Health Awareness Month and Urges Women to Get Screened\n                    \n                      January 5, 2012\n                     WASHINGTON – In recognition of Cervical Health Awareness Month, Senator Robert Menendez (D-NJ) is reminding women about the importance of annual cervical cancer screenings. According to the American Cancer Society, approximately 12,000 women will be diagnosed with cervical cancer in the United States this year and more than 4,000 lives will be lost due to this disease, which is highly preventable through early detection and vaccination according to the Centers for Disease Control and Prevention. In 2012, an estimated 420 women in New Jersey will receive a positive cervical cancer diagnosis.\n\n“The real tragedy of cervical cancer is that it’s preventable. We can quite literally save lives by increasing awareness, access to screenings and vaccinations,” said Menendez. “Cervical Cancer, like all cancer, knows no boundaries. Women of all ages, races and economic backgrounds are at risk for cervical cancer. Unfortunately, we know that sometimes access to health care and information does have socio-economic boundaries, and that is unacceptable. That’s why it’s so important that we do everything in our power to ensure women have the means to get screened annually, follow-up with their health care providers and stay educated.”\n\nThanks to health care reform, starting on August 1, 2012:\nCervical cancer screenings, such as Pap smears, as well as the HPV vaccine, will be made available for no out-of-pocket cost. The human papillomavirus (HPV) is known to be the leading cause of cervical cancer.   \nWomen over 30 will be eligible for no-cost HPV DNA testing every 3 years.  \nCurrently, HPV vaccines are generally covered by most insurance and managed care plans.  However, receiving the vaccine is not mandatory in New Jersey. A federally-funded program called Vaccines for Children (VFC) provides physicians with free vaccines to administer to children who would otherwise go without due to an inability to pay. Children enrolled in Medicaid, Medicaid Managed Care, NJ Family Care, and those without any insurance, are eligible to receive free VFC provided vaccines.  There are more than 2,000 doctors in New Jersey that participate in the VFC program.\nSenator Menendez has long been an advocate for eradicating cancer and as such received the American Cancer Society’s National Distinguished Advocacy Award, the organization’s highest advocacy honor. He was a lead co-sponsor of Johanna’s Law, which created a national campaign to increase awareness of gynecologic cancers and he led efforts to secure funding for the program.  He also co-sponsored Senator Barbara Mikulski’s National Breast and Cervical Cancer Early Detection Program Reauthorization Act which offers screening services to low-income women without insurance and provides Pap tests and other screenings for qualified women ages 18 to 64.\nTo find out if you qualify for a free or low-cost mammogram and Pap test and where to get screened click here\nTo visit the Vaccines For Children website click here\nFor more general information on cervical cancer click here\n \n####\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=66f5153a-eff1-4eef-8c86-906c685bb7d3,\"Lautenberg, Menendez Announce Nearly $90 Million in Highway Disaster Relief Grants for New Jersey\n                    \n                      January 4, 2012\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Federal Highway Administration (FHWA) has awarded grants totaling almost $90 million for the repair and reconstruction of federal aid roads and bridges in New Jersey that were damaged by Hurricane Irene, Tropical Storm Lee, and flooding in August 2011. “This federal funding will help finance repairs and rebuild the roadways that were destroyed by powerful storms in our state last year,” said Senator Lautenberg, a member of the Transportation, Housing, and Urban Development Appropriations Subcommittee, which funds the FHWA.  “When disaster strikes, federal emergency aid is critical to help communities, commerce and families recover.  We will continue to fight for disaster relief funding so that resources are available to New Jersey when there is an emergency in our state.” “Last summer’s massive storms and floods caused incredible damage to many of our roadways and we knew that only through a strong federal-local partnership could we ensure our state had the resources necessary for both immediate repair and long-term recovery.  That’s why we worked so hard to pursue every funding opportunity available and why I am so pleased by today’s announcement of funds that will not only reimburse our state for completed emergency repair work, but allow for continued repair and recovery of our communities,” said Senator Menendez. The grants awarded to New Jersey include:\n•    $65 million in emergency relief for damage caused by Hurricane Irene and Tropical Storm Lee; and•    $24 million in emergency relief for the flooding in August that warranted a federal disaster declaration.As a member of the Appropriations Committee, Senator Lautenberg has led the effort to secure critical disaster relief funding.  Following Hurricane Irene in September, Senators Lautenberg and Menendez were joined by 10 of their colleagues in sending a letter to Senate leadership requesting comprehensive federal disaster aid for the FHWA and other agencies. In November 2011, President Obama signed into law a measure that provides $1.66 billion to bolster the FHWA federal highway disaster relief program, which is the source of the grants announced today.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f839d9ed-cb9c-4486-8fe6-6e53be9a927e,\"Statement From Menendez On Recess Appointment of Richard Cordray at Consumer Financial Protection Bureau\n                    \n                      January 4, 2012\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), Chairman of the Banking Committee’s Subcommittee on Housing, Transportation, and Community Development today released the following statement in response to the President’s announcement that he will appoint Richard Cordray to be the first director of the Consumer Financial Protection Bureau through a recess appointment:\n\n“I applaud the President for taking forceful action to protect American consumers from the unregulated lenders that caused the financial crisis.  I look forward to working with Mr. Cordray and the Consumer Financial Protection Bureau to protect middle class consumers and crack down on Wall Street.  Unfortunately, Senate Republicans took partisanship to an entirely new level last month by blocking an up-or-down vote on Richard Cordray, a candidate they themselves admit is well-qualified for the position.”\n\n \n####\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8a97c622-e6c7-4b69-950a-02f0313316da,\"Lautenberg, Menendez Announce Nearly $1 Million For New Jersey Fire Departments\n                    \n                      January 4, 2012\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced four New Jersey fire departments have received nearly $1 million in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  Eligible uses of this grant funding include investments in training, equipment, vehicle acquisition, health programs, and facility modifications.\n\n“We count on our first responders to keep us safe and they put their lives on the line when the alarm sounds,” said Senator Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG program.  “With so many municipalities facing tough budget decisions, this direct federal investment in our local firefighters is especially important to the safety of our communities.  We will continue working to make sure our first responders are well prepared to keep families in New Jersey and across the country safe.”\n “Our firefighters need to have the resources they need to protect themselves and our families in case of a fire emergency,” said Senator Menendez.  “These funds will allow local fire departments to purchase the most modern safety equipment available and boost their capacity to respond in case of a fire.  This is the very least we can do for the safety of our first responders, our families, and our communities.”\n\nThe federal grants have been awarded to the following departments:\nAsbury Park Fire Department – $617,500 for vehicle acquisition\nPlainfield Fire Division – $315,000 for vehicle acquisition\nEgg Harbor City Fire Department – $12,350 for operations and safety\nManville Fire Department – $28,500 for operations and safety\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b7e5fc6b-ce58-4be8-b193-eeae49cf024b,\"Statement From Menendez Regarding Announcement of Nearly $38 Million in Race to the Top Funding For New Jersey Schools\n                    \n                            Funding will be used to to leverage comprehensive statewide reform, while also improving science, technology, engineering and mathematics education.\n                    \n                      December 23, 2011\n                     WASHINGTON – The U.S. Department of Education today announced that New Jersey was one of seven states that will receive a share of the $200 million in Race to the Top Round 3 (RTT3) funds to advance targeted K-12 reforms aimed at improving student achievement.  New Jersey schools will receive approximately $37.8 million to enhance data systems, raise academic standards, improve principal and teacher support and evaluation systems, and implement school interventions in underperforming schools.  U.S. Senator Robert Menendez (D-NJ) who is a strong advocate for investing federal dollars in New Jersey public schools released the following statement:\n\n“There is nothing more important to our long-term economic prosperity than the quality of our public schools.  This funding will hopefully be used to enact commonsense reforms that engage with teachers as partners and above all else, serve our students.  Effective education reform can only be achieved through cooperation and productive dialogue amongst all stakeholders including, parents, teachers, students and elected officials.  I am proud to having helped secure this funding and I look forward to the positive impact it will have on New Jersey’s world-class public school system.”\n\n####\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2e344021-e0b7-45f7-8af0-bcf3be7a57c1,\"Lautenberg, Menendez Announce More Than $30 Million For Low Income Home Energy Assistance Program In New Jersey\n                    \n                      December 23, 2011\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Health and Human Services (HHS) has released $30.5 million for the Low Income Home Energy Assistance Program (LIHEAP) in New Jersey. This federal funding is in addition to $72 million released to New Jersey in October.  HHS is expected to release additional funds to the state later this year.  The program provides critical assistance to low-income families who struggle each winter to pay their energy bills.\n\n“As we approach the holidays, families are burdened with worries about how they’ll manage to keep their children warm in the winter months,” said Senator Lautenberg, a member of the Appropriation Committee that funds the LIHEAP program.  “No parent should ever have to choose between heating their home or putting food on the table.  As temperatures drop, this funding will provide relief for hundreds of thousands of New Jerseyans and I will continue fighting in the Senate to make sure this program is available to low-income families and individuals.\"\"\n\n\n“This assistance is vital for hundreds of thousands of New Jerseyans who simply cannot afford the high energy bills that come from heating their homes.  This LIHEAP funding is especially welcome news this holiday week,” said Senator Menendez. “Every bit of energy savings helps low-income families, seniors and laid off workers who can now cross ‘staying warm’ off their list of worries this winter.” \n\nIn October, Senators Lautenberg and Menendez sent a letter to HHS Secretary Kathleen Sebelius requesting that she release LIHEAP funds as quickly and at as high of a level as possible to ensure assistance is available to families as the cold winter months approach.  The Senators also sent a letter to Senate and Appropriations Committee leadership urging that they prevent cuts to the LIHEAP program.\nLIHEAP assists qualified families with their home energy needs, such as heating in the winter, cooling their homes in the summer, and insulating their homes to make them more efficient and reduce their energy costs.  According to the Campaign for Home Energy Assistance, more than 380,000 people in New Jersey received heating assistance in their homes last winter.  \nFor more information on the LIHEAP program in New Jersey, call 1-800-510-3102 or visit http://www.state.nj.us/dca/divisions/dhcr/offices/heausfincomefact.html\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9b9be260-556b-4cc8-b3a9-1294e40b3f47,\"Statement By Menendez On House Agreement To Pass Senate's Bipartisan Compromise\n                    \n                      December 22, 2011\n                     Washington, D.C. – U.S. Senator Robert Menendez (D-NJ) released the following statement in reaction to the news House Republicans have agreed to pass the Senate’s bipartisan compromise to ensure the middle class payroll tax cut does not expire on December 31, 2011:\n\n“On behalf of our middle class families in New Jersey, I am so pleased that House Republicans have finally chosen to put aside politics and join us in protecting working families from a tax increase. There is still more to do to ensure a full year of tax cuts for our families and I look forward to getting that done quickly -- and fairly -- as soon as we return from the holidays.” \n\n####\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=773c2d61-ff8f-4e2b-affd-a24adae592c9,\"Menendez, Lautenberg Announce $25 million to Support Homeless Programs in New Jersey\n                    \n                      December 22, 2011\n                     WASHINGTON – US Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) today announced New Jersey has been awarded over $25 million to support hundreds of homeless projects in New Jersey through the US Department of Housing and Urban Development (HUD) Continuum of Care program. According to the Corporation for Supportive Housing’s most recent data there are an estimated 12,825 homeless men, women and children across the state of New Jersey. These funds will help ensure local shelter and service programs can continue operating in 2012 and prevent an interruption in services. A total of $62 million in funds were awarded nationwide.\n\n“This Holiday season, as we celebrate with family and friends, we are especially reminded of the importance of having a place to call ‘home’ and the many individuals who don’t even have a home to live in. The funds announced today will help protect thousands of homeless families and individuals from a sudden interruption of services they rely on and simply wouldn’t be able to live without,” said Senator Menendez, Chairman of the  Senate Banking Subcommittee on Housing. “In this tough economic environment, the least we can do is help ensure those who are struggling the most have the support they need and a place where they can live.”\"\"This is an important grant program that helps the hardest pressed New Jerseyans access basic services,” said Senator Lautenberg, a member of the Senate Appropriations Subcommittee on Housing and Urban Development, which funds HUD.  \"\"This federal funding will provide men and women who have fallen on hard times with a safe place to stay and the support services they need to get back on their feet and on a path toward self-sufficiency.\"\"\n\nHUD’s Continuum of Care Program is one of many federal initiatives aimed at reducing and preventing homelessness, as well as supporting them in their transition to a better future. Last year, President Obama launched the nation’s first comprehensive strategy to prevent and end homelessness, a collaboration of 19 federal agencies and offices that form the U.S. Interagency Council on Homelessness (USICH) to reach specific benchmarks by 2020.\nBackground Info from the Department of Housing and Urban Development HUD’s Continuum of Care grants announced today provide permanent and transitional housing to homeless persons as well as services including job training, health care, mental health counseling, substance abuse treatment and child care. Continuum of Care grants are awarded competitively to local programs to meet the needs of their homeless clients. These grants fund a wide variety of programs from street outreach and assessment programs to transitional and permanent housing for homeless persons and families.\nLast year, President Obama and 19 federal agencies and offices that form the U.S. Interagency Council on Homelessness (USICH) launched the nation’s first comprehensive strategy to prevent and end homelessness. Opening Doors: Federal Strategic Plan to Prevent and End Homelessness puts the country on a path to end veterans and chronic homelessness by 2015 and to ending homelessness among children, family, and youth by 2020.\nIn addition to HUD’s annual grant awards, HUD continues to manage the $1.5 billion Homelessness Prevention and Rapid Re-housing (HPRP) Program.  Made possible through the American Recovery and Reinvestment Act of 2009, this three-year grant program is intended to prevent persons from falling into homelessness or to rapidly re-house them if they do.  To date, more than one million persons have been assisted through HPRP.\nLast week, HUD announced its 2011 “point in time” estimate of the number of homeless persons in America.  Approximately 3,000 cities and counties reported 636,000 homeless persons on a single night in January of 2011, a 2.1 percent decline from the year before.  This documented reduction in homelessness was noticed among all population groups including individuals, families, and those experiencing long-term or chronic homeless.  In addition, HUD’s estimate reveals a 12 percent reduction in homelessness among veterans.\nFull list of Awards for New Jersey\n CoC – Continuum of Care\nSHP – Supportive Housing Program\nS + C – Shelter plus Care\nSRO – Single Room Occupancy\nAtlantic City & County CoC\nCareer Opportunity Development / Project for Independent Living; SHP; $51,442\nCovenant House New Jersey, Inc / ACROP 2011; SHP; $144,717\nNew Jersey Housing and Mortgage Finance Agency / Atlantic HMIS FY 2011; SHP; $17,000\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care-Atlantic; S+C; $146,484\nBergen County CoC\nAAH of Bergen County, Inc. / Hackensack/Bogota; SHP; $78,925\nAAH of Bergen County, Inc. / Hiilsdale Fairlawnl; SHP; $88,322\nAAH of Bergen County, Inc. / Teaneck; $98,437\nAdvance housing, Inc. / REN - Fairview McKinney; SHP; $167,735\nAdvance housing, Inc. / REN – HoST; SHP; $358,255\nBergen County Community Action Partnership, Inc. / Independence Hall; SHP; $93,712\nBergen County Community Action Partnership, Inc. / Ladder; SHP; 92748\nBergen County Community Action Partnership, Inc. / PHASES; SHP; 63702\nComprehensive Behavioral Healthcare Inc. / Homeless Case Management; SHP; $110,376\nCounty of Bergen / Alfred J. Thomas Home for Veterans; SHP; $93,068\nCounty of Bergen / Bergen County Homeless Management Information System (HMIS); SHP; $85,900\nHousing Authority of Bergen County / Shelter Plus Care Division of Family Guidance; S+C; $111,384\nShelter Our Sisters  / SOS B2 Transitional Housing for Victims of Domestic Violence; SHP; $23,833\nShelter Our Sisters  / SOS E1 Transitional Housing for Victims of Domestic Violence; SHP       ; $16,382\nThe DACKKs Group for Supportive Housing Development / LINKS renewal year 2012-2013; SHP; 41335\nVantage Health System, Inc. / Job Coach; SHP; $90,896\nVantage Health System, Inc. / Knickerbocker Residence; SHP; $217,402\nBurlington County CoC\n Burlington County CoC\nBurlington County Community Action Program /\nTransitional Housing with Supportive Services for Veterans and Their Families; SHP; $14,172\nBurlington County Community Action Program /\nTransitional Housing with Supportive Services for Working Poor Families with Children;SHP; $10,667\nCatholic Charities, Diocese of Trenton / Providence House-Burlington Project Self-Sufficiency; SHP; $69,218\nFamily Service / Haven; SHP; $42,000\nNew Jersey Housing and Mortgage Finance Agency / Burlington FY 2011; SHP; $2,560\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care-Burlington; S+C; $86,304\nThe Lester A. Behavioral Health Center Inc. / Consolidated 2011; SHP; $264,023\nTransitional Housing Services, Inc. / Alden Ave. / Federal St. Permanent Supportive Housing; SHP; $97,093\nCamden City & County CoC\nCamden County Council On Economic Opportunity, Inc. / A. Wright Place / Liberty Place; SHP; $173,389\nCamden County Council On Economic Opportunity, Inc. / Imani House; SHP; $134,043\nCamden County Council On Economic Opportunity, Inc. / OMAR; SHP; $124,926\nCenter For Family Services,Inc. / Home Base Supported Apartments; SHP; $65,214\nCommunity Planning and Advocacy Council / HNPC Housing Outreach; SHP; $9,372\nDooley House Inc. / Supportive Housing for Persons with Disabilities; SHP; $205,979\nInterfaith Homeless Outreach Council / Homeless Hospitality           SHP; $7,366\nNew Jersey Department of Military and Veterans Affiars / Veteran's Haven; SHP; $164,243\nNew Jersey Housing and Mortgage Finance Agency / Camden HMIS FY 2011; SHP; $45,028\nProject H.O.P.E. / Project H.O.P.E.            ;SHP; $55795\nSouth Jersey Behavioral Health Resources, Inc. / COSTAR; SHP; $21873\nVolunteers Of America Delaware Valley Inc / Aletha R Wright Safe Haven; SHP; $129665\nVolunteers Of America Delaware Valley Inc / Aletha R Wright Transitional Living; SHP  ; $109,874\nVolunteers Of America Delaware Valley Inc / Anna Sample Safe Haven; SHP; $96,026\nVolunteers Of America Delaware Valley Inc / Camden County Supportive Housing; SHP;  $86,458\nNewark/Essex County CoC\nCity of East Orange / My Own Place; S+C; $406080\nCity of East Orange / TRA for Disabled Single Adults; S+C; $190,740\nCounty of Essex / Almost Home III           ; S+C; $270,720\nCovenant House New Jersey, Inc / Newark HOME/Nancy's Place; SHP     ; $173,891\nCovenant House New Jersey, Inc / Supportive Apartment Living Program; SHP; $94,500\nEast Orange General Hospital / Next Step; SHP; $245,600\nEASTER SEAL SOCIETY OF NEW JERSEY INC, THE / ESNJ Essex HUD ; SHP; $46,664\nEASTER SEAL SOCIETY OF NEW JERSEY INC, THE / ESNJ Essex HUD; SHP; $151,981\nIsaiah House, Inc. / Community Creche: Transitional Housing for Homeless Mothers with Newborns; SHP; $249,495\nIsaiah House, Inc. / SHP for Disabled Single Woman; SHP; $44,491\nIsaiah House, Inc. / TeenMAP: Supportive Housing for Homeless Pregnant Teen Girls; SHP; $42,845\nNew Community Harmony House Corp. / Harmony  House Transitional Housing; SHP; $142,354\nNew Community Harmony House Corp. / Harmony House Domestic Violence Program; SHP; $142,919\nNew Jersey Housing and Mortgage Finance Agency / Essex Exp HMIS 2011; SHP; $85,667\nNew Jersey Housing and Mortgage Finance Agency / Essex HMIS FY 2011;  SHP; $149,999\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Urban Renewal- Warren; S+C; $40,608\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care- Essex 1 (3AE); S+C; $274,152\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care- Essex II (3AF); S+C; $284,016\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care- Project Live (Essex) (3AG); S+C; $267,144\nPositive Health Care, Incorporated / Permanent Housing; SHP; $176,283\nProject Live, Inc / Project Live Supportive Housing Program 2012-15 renewal; SHP; $275,534\nTownship of Irvington / Transitional Housing 2; SHP; $138,365\nTownship of Irvington/INIC / Transitional Housing 3    ; SHP; $250,474\nGloucester County CoC\nCenter For Family Services,Inc. / Mother Child Permanent Housing; SHP; $67,217\nCenter For Family Services,Inc. / Mother Child Transitional Housing; SHP; $35,437\nCenter For Family Services,Inc. / Tanyard Oaks 1; SHP; $30,935\nCenter For Family Services,Inc. / NJ-5-5-REN-CFSTanyard Oaks 2; SHP; $18,130\nNew Jersey Housing and Mortgage Finance Agency / Gloucester HMIS FY 2011; SHP; $3,000\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care-Gloucester; S+C; $94,560\nVolunteers Of America Delaware Valley Inc / Eleanor Corbett House Safe Haven; SHP; $88,970\nJersey City/Bayonne/Hudson County CoC\nCatholic Charities of the Archdiocese of Newark / 2011 St. Jude's Oasis Exhibit 2; SHP; $160,000\nCatholic Charities of the Archdiocese of Newark / 2011 St. Lucy's Exhibit 2; SHP; $248,664\nJersey City Episcopal Community Development Corporation / All Saints Supportive Housing; SHP; $222,581\nJersey City Episcopal Community Development Corporation / Hudson CASA; SHP; $391,797\nLet's Celebrate, Inc. / NJ-506 - REN – Preventer; SHP; $83,794\nNew Jersey Housing and Mortgage Finance Agency / Hudson HMIS FY 2011; SHP; $69,000\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Supportive Housing;  SHP; $69,451\nNorth Hudson Community Action Corporation / Continuum of Care Homeless Assistance Competition; SHP; $404,148\nSaint Joseph's Home /Saint Joseph's Home; SHP; $558,534\nThe House of Faith, Inc. / NJ-506 - REN - The House of Faith Transitional Housing; SHP;  $245,266\nUnited Way of Hudson County / NJ-506 - REN - Collaborative Solutions; SHP; $393,006\nWomenRising / NJ-506 - REN - Project Home; SHP; $644,268\n  \nNew Brunswick/Middlesex County CoC\nCATHOLIC CHARITIES DIOCESE OF METUCHEN / Naomi's Way THP; SHP; $233,047\nCollaborative Support Programs of New Jersey / Ryan White S+C program; S+C; $69,888\nHousing Authority of the Township of Edison / S+C for the Chronically Homeless; S+C; $135,000\nMaking It Possible to end Homelessness / Imani Park Transitional Housing; SHP; $35,000\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care-Middlesex; S+C; $155,664\nThe Salvation Army, a New York Corporation / PERTH AMBOY NJ CARE HOUSE; SHP; $134,510\nTriple C Housing Inc. / H2O; SHP; $54,425\nMonmouth County CoC\n180 Turning Lives Around, Inc. / Families in Transition Expansion; SHP; $142,530\n180 Turning Lives Around, Inc. / Families in Transition Original; SHP; $122,805\nCollaborative Support Programs of New Jersey / Monmouth County Tenant Based Rental Assistance            ; S+C; $97,524\nCounty of Monmouth / Center House S=C; S+C; $301,500\nCounty of Monmouth / Homeward Bound 1; S+C;  $382,176\nCounty of Monmouth / Homeward Bound 2; S+C; $195,048\nCounty of Monmouth / Housing with Dignity; S+C; $271,284\nCounty of Monmouth / Lynch's Lodging; S+C; $86,664\nCounty of Monmouth / Ray of Light; S+C; $51,012\nEASTER SEAL SOCIETY OF NEW JERSEY INC, THE / ESNJ HUD Monmouth 2011; SHP; $43,207\nHABcore, Inc. / Habcore Asbury House - 99- 2011; SHP; $78,899\nHABcore, Inc. / HABcore Rt 66 Apt 02 – 2011; SHP; $172,473\nMonmouth Housing Alliance / Park Road Apartments; SHP; $43,923\nNew Jersey Housing and Mortgage Finance Agency / Monmouth Exp HMIS FY 2011; SHP; $25,000\nNew Jersey Housing and Mortgage Finance Agency / Monmouth HMIS FY 2011; SHP; $56,727\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care-Monmouth; S+C; $150,612\nOcean Community Economic Action Now, Inc. /\nMonmouth Stonehurst Phase 1 Supportive Services and Operations; SHP; $81,957\nOcean Community Economic Action Now, Inc. / Monmouth Stonehurst Phase 2 - Supportive Services; SHP; $40,718\nThe Center in Asbury Park, Inc / Center House; SHP; $184, 819\nMorris County CoC\nHomeless Solutions Inc  / Child Care Access Program; SHP; $64,299\nHomeless Solutions Inc  / Safe Haven; SHP; $396,965\nHomeless Solutions Inc  / Transitional Housing Program; SHP; $219,397\nJersey Battered Women's Service, Inc. / Transitional Living Program; SHP; $198,137\nMental Health Association of Morris County, Inc / Step Off the Street Outreach; SHP; $60,060\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care- Morris 1 (3AN); S+C; $135,360\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care- Morris III (3AP); S+C; $175,968\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care- Morris IV (3AK)        ;S+C; $175,968\nLakewood Township/Ocean County CoC\nCatholic Charities, Diocese of Trenton / Providence House-Ocean Project Self-Sufficiency; SHP; $24,860\nCollaborative Support Programs of New Jersey / OMHS S+C 2005; S+C; $27,864\nLakewood Housing Authority / OMHS leasing for the chronically homeless 2008; SHP; $12,915\nOcean Community Economic Action Now, Inc. / Ocean Dover Road/Laurel Avenue; SHP; $38,500\nOcean Community Economic Action Now, Inc. / Ocean Jay Street; SHP; $41,697\nOcean's Harbor House / Project Achieve; SHP; $19,372\nVetgroup, Inc. / Vetwork; SHP; $20,664\nPaterson/Passaic County CoC\nHispanic  Multi Purpose Service Center / SWICTH PROGRAM; SHP; $41,902\nHousing Authority of The City of Paterson / Creech Permanent Housing I; S+C; $132,504\nHousing Authority of The City of Paterson / Indpendence House; S+C; $129,096\nNew Jersey Housing and Mortgage Finance Agency / Passaic Exp HMIS FY 2011; SHP;          $25000\nNew Jersey Housing and Mortgage Finance Agency / Passaic HMIS FY 2011; SHP; $22,667\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care- Paterson YMCA (MNJ); S+C; $1,036,260\nNJ DEPARTMENT OF COMMUNITY AFFAIRS / Shelter Plus Care- St. Joseph's PATH (Passaic) (3AZ); S+C; $200,220\nPassaic County Department of Human Services / Eva's Village Apartments; S+C            ; $121,824\nPassaic County Department of Human Services / St. Jpseph's Scattered Sites; S+C; $47736\nPassaic County Department of Human Services / St. Paul's CDC; S+C; $47,736\nSt. Philip's Ministry UMC / NJ-511 - REN - Place of Promise; SHP; $63461\nStrengthen Our Sisters / NJ-511 - REN - Passaic County Permanent Housing Project; SHP; $130,652\nSalem County CoC\nNew Jersey Housing and Mortgage Finance Agency / Salem HMIS FY 2011; SHP; $2,001\nSalem County Inter Agency Council of Human Services  / Salem Leased Apartments/Home Program; SHP; $140,560\nSomerset County CoC\nAlternatives, Inc. / Permanent Supportive Housing I (NJ0136B2F1310)03; SHP; $101,278\nAlternatives, Inc. / Permanent Supportive Housing II (NJ0137B2F131003); SHP; $98,478\nAlternatives, Inc. / Permanent Supportive Housing IV (NJ0138B2F131003); SHP; $15,557\nVolunteers Of America Delaware Valley Inc / Chance II; SHP; $117,344\nTrenton/Mercer County CoC\nCity of Trenton / Catholic Charities On My Own Housing Voucher Program; S+C; $164,424\nCity of Trenton / Catholic Charities/Scattered Site S+C Permanent Housing; S+C; $25,296\nCity of Trenton / Dunham Hall Residence; S+C; $181,368\nCity of Trenton / Catholic Charities Leasing Program; SHP; $7,613\nCity of Trenton / Catholic Charities/Lifeline Support Services; SHP; $14,815\nCity of Trenton / Day Drop-in Center for the Homeless; SHP; $67,174\nCity of Trenton / Housing First Leasing - Trenton/Mercer; SHP; $9,720\nCity of Trenton / Housing Now; SHP; $129,073\nCity of Trenton / Kinship Care Program; SHP;  $115,928\nCity of Trenton / Transitional Living Commitment; SHP; $115,096\nCity of Trenton / Trenton-Various Transitional Housing; SHP; $94,368\nCity of Trenton / Supportive Housing Project Rent Subsides; S+C; $240,312\nCity of Trenton / Trenton Permanent Housing; S+C; $303,552\nCity of Trenton / Trenton Scattered Site Permanent Housing;            S+C; $54,960\nCity of Trenton / Trenton Scattered Site; S+C; $49,464\nNew Jersey Housing and Mortgage Finance Agency / Mercer HMIS FY 2011; SHP; $19,970\nElizabeth/Union County CoC\nElizabeth/Union County CoC / Bridgeway/Elizabeth Housing Authority  45 U; S+C; $652,260\nElizabeth/Union County CoC / Bridgeway/Elizabeth Housing Authority 20U REN; S+C; $270,720\nElizabeth/Union County CoC / Bridgeway/Plainfield Housing Authority 25 U REN; S+C            ; $352,224\nElizabeth/Union County CoC / Bridgeway/Plainfield Housing Authority S+C 15U; S+C; $204,972\nElizabeth/Union County CoC / Homefirst SRA 10 U REN; S+C; $146,952\nElizabeth/Union County CoC / Homefirst/Elizabeth Housing Authority REN; S+C; $61,872\nElizabeth/Union County CoC / Homefirst/Plainfield Housing Authority 35 U REN; S+C; $491,448\nElizabeth/Union County CoC / Homefirst/Plainfield Housing Authority S+C 4U REN; S+C; $58,008\nElizabeth/Union County CoC / Bridgeway Supportive Housing 2011 REN; SHP  ; $25,836\nElizabeth/Union County CoC / CAU 96 \\&116 West Grand 2011 REN; SHP; $99,342\nElizabeth/Union County CoC / CAU Morris Ave. TH REN; SHP; $49,020\nElizabeth/Union County CoC / Community Access Institute Colonial/Morse; SHP; $24,312\nElizabeth/Union County CoC / Community Access Unilimited Jaques Street 2011; SHP; $160,478\nElizabeth/Union County CoC / Elizabeth Coalition to House the Homeless 2011 REN TH         ; SHP; $13,300\nElizabeth/Union County CoC / Homefirst 4U (a) SHP REN; SHP; $16,665\nElizabeth/Union County CoC / Homefirst 5U SHP REN; SHP; $80,656\nElizabeth/Union County CoC / Homefirst 8U SHP REN; SHP; $26,917\nElizabeth/Union County CoC / Homefirst SHP 4U REN; SHP; $36,120\nElizabeth/Union County CoC / Homefirst SUP 2 U REN; SHP; $18,654\nElizabeth/Union County CoC / Homefirst SUP 8 U (a) REN; SHP; $94,427\nElizabeth/Union County CoC / YMCA of Eastern Union County REN 2011; SHP; $284,206\nElizabeth/Union County CoC /  YWCA Eastern Union County PH REN 2011; SHP; $217,714\nNew Jersey Housing and Mortgage Finance Agency / Union HMIS FY 2011; SHP; $40,655\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2b88706f-6579-47f3-a948-7bf97e1c1246,\"Menendez Hails DOJ $335M Countrywide Settlement - Makes Them Pay For Preying On Minority Homebuyers\n                    \n                            Hispanic and African American families were disproportionately targeted by Countrywide and duped into risky subprime loans\n                    \n                      December 22, 2011\n                     Washington, DC – This week the Department of Justice (DOJ) announced a $335 million dollar settlement with Countrywide Financial Corporation, which has been charged with discriminating against hundreds of thousands of Hispanic and African American borrowers from 2004 to 2008, as the subprime mortgage bubble that led to the financial crisis was building.  According to the Center for Responsible Lending, minority homebuyers were twice more likely than white borrowers to be steered into riskier subprime loans, and were charged higher interest rates and fees.  Roughly two-thirds of the victims in the DOJ investigation are Latinos.\n\n“I applaud the Department of Justice for making Countrywide pay for preying on minority homebuyers.  Hundreds of thousands of hard working African American and Hispanic middle class families were duped into lousy loans they couldn't afford.  I have heard too many people blame families for getting into bad loans, but as this investigation proves,  the worst mortgage lenders employed systematic deception and discrimination to build their profits and put the American Dream at risk for homebuyers.  As Chairman of the Senate Banking Subcommittee on Housing, I pledge to continue working to help New Jersey families recover from those failed policies of the past that allowed the profiteering-excesses of companies like Countrywide.”\n\nAs Chair of the Senate Banking Subcommittee on Housing, Bob Menendez has:\nCalled for lenders like Countrywide to stop making high-interest subprime loans that borrowers could not afford.\nSigned several letters to the Federal Reserve Board in 2007 to express concern that the Fed had not exercised its obligations under the Home Ownership and Equity Protection Act (HOEPA) to issue regulations that addressed the problems of predatory lending, and that those regulations should ensure that borrowers are able to pay for the loans they are given and that prepayment penalties be prohibited.\nVoted for and helped write the Dodd-Frank Wall Street Reform and Consumer Protection Act that passed in July 2010, which among other things banned prepayment penalties and gave the new Consumer Financial Protection Bureau the power to regulate mortgage lenders on behalf of consumers.  \n####\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dc13b417-322b-4fe6-ac46-59200451f712,\"Lautenberg, Menendez Announce More Than $1.7 Million For Fire Departments In New Jersey \n                    \n                            South Orange FD Awarded $665k To Acquire New Vehicle\n                    \n                      December 22, 2011\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced five New Jersey fire departments have received more than $1.7 million in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  Eligible uses of this grant funding include investments in training, equipment, vehicle acquisition, health programs, and facility modifications.\n\n“Firefighters put their lives on the line every day and we must ensure they have the resources and training to do their job,” said Senator Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG program.  “With so many municipalities facing tough budget decisions, this direct federal investment in our local firefighters is especially important to the safety of our communities.  We will continue working to make sure our first responders are well prepared to keep families in New Jersey and across the country safe.” \n“Our firefighters need to have the resources they need to protect themselves and our families in case of a fire emergency,” said Senator Menendez.  “These funds will allow local fire departments to purchase the most modern safety equipment available and boost their capacity to respond in case of a fire.  This is the very least we can do for the safety of our first responders, our families, and our communities.”\n\nThe federal grants have been awarded to the following departments:\nSouth Orange Fire Department – $665,000 for vehicle acquisition\nMiddletown Township Fire Department – $465,320 for operations and safety\nHoboken Fire Department – $272,697 for operations and safety\nOcean Township Fire District 1 – $175,468 for operations and safety\nClark Volunteer Fire Department – $136,040 for operations and safety\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=36d171fc-4a06-40c0-a855-a994270eeb6f,\"Princeton, NJ Researchers Will Spearhead Nation’s Effort to Reduce Costs of Electric Vehicle Chargers \n                    \n                      December 21, 2011\n                     Washington, D.C. – U.S. Senator Robert Menendez (D-NJ) today announced that New Jersey researchers at Siemens in Princeton will share in nearly $7 million in Department of Energy (DOE) research and development funding to improve the development and design of electric vehicle chargers, helping to reduce their cost by 50 percent.  This research will promote “smart” charging capabilities that can help ensure electric vehicles enhance, rather than strain, existing electrical grid capacity.\n\n“It is great to see New Jersey researchers helping make the wide deployment of electric vehicles a reality,”  said Menendez.  “Electric vehicles reduce our dependence on oil and improve air quality, so it is gratifying to see the federal government making this important investment.” “Electric vehicles will help break our reliance on oil and improve our air quality,” said Senator Lautenberg, a member of the Environment and Public Works Committee. “This investment will put New Jersey in the driver’s seat on electric vehicle technology and help our country transition to cleaner and more efficient cars and trucks.” \n\nWith electric vehicles, smart chargers and smart grid technologies, the grid can more efficiently manage the availability and reliability of power, especially during peak times and at popular charging locations.\nFour projects were selected from across the nation.  Two of the four selected projects – including Siemens Corporate Research in Princeton -- will focus on improving electric vehicle chargers that attach to consumers’ homes and are used by the owners to charge their vehicles while they are at home. The other two selected projects will focus on chargers used at commercial and public locations to charge large numbers of vehicles, including commercial fleets of delivery vehicles.  \nThese research and development investments will leverage additional investments from the industry grantees.  Final award amounts are subject to negotiation.\nSiemens Corporate Research – Princeton, New Jersey DOE share: $1,617,619; Recipient share:  $747,552\nSiemens will redesign its current electric vehicle supply equipment system and charging stations in residential areas to enable flexible, intelligent control of charging, so that power quality and service reliability are maintained on the local distribution grid.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ee313257-fdd1-4c42-98dd-31699fe8f0b6,\"Menendez, Lautenberg Announce Extension of Weatherization Deadline\n                    \n                      December 21, 2011\n                     WASHINGTON – US Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced today that the Department of Energy (DOE) will modify the spending deadlines for grantees receiving funding for DOE’s Weatherization Assistance Program (WAP) under the American Recovery and Reinvestment Act of 2009 (Recovery Act). This announcement comes after the Senators sent a joint-letter in early October to Secretary of Energy Steven Chu requesting the deadline to expend WAP funds be extended because the State of New Jersey had received $29 million, but had not weatherized a single home.   The Recovery Act allocated $118.8 million for New Jersey to weatherize almost 13,400 homes by March 31, 2012.\n\n\"\"We fought hard for these resources to weatherize New Jersey homes – which creates good jobs and reduces energy bills,” said Menendez. “Without this extension, the State clearly has no chance to fully get these resources out the door and into our communities, depriving New Jersey families from taking full advantage of the program.  I’m pleased the Department of Energy agreed to our request and expect the State will get the job done.”\n\"\"New Jersey cannot afford to lose any more federal money and failing to put this funding to good use would be economic malpractice,\"\" said Senator Lautenberg.  \"\"With this extension, the state will have another chance to make sure this money is wisely invested in projects that will reduce energy bills, create jobs and keep families warm this winter.  We thank the Department of Energy for working with us to give New Jersey another opportunity  to put this critical program to work.”    \n\nThe DOE will also consider modifying deadlines for the State Energy Program (SEP) and the Energy Efficiency and Conservation Block Grant (EECBG) program. According to the DOE, the grantees of these three programs are on track to spend an estimated 85 to 90 percent of the $10.9 billion of Recovery Act funds by the current deadlines. By implementing extensions, grantees will expend nearly 99 percent of the total Recovery Act grant funding by the end of fiscal year 2013.\nThe DOE’s goal for the Weatherization Assistance Program is to reduce the burden of energy prices on the disadvantaged. The “weatherizing” of a home can include a range improvements from weather-stripping doors and windows, to updating heating and cooling systems, to checking electrical systems for occupant safety.\nClick here to learn more about the Weatherization Assistance Program and Click here to learn more about the Recovery Act on the DOE’s website.\nFull text of letter to Secretary Chu:\nOctober 4, 2011\nDear Secretary Chu:\nAs you know, the U.S. Department of Energy's Weatherization Assistance Program (WAP) has been a great success nationwide.  Along with several colleagues, we have fought hard to provide over $2.1 billion in Recovery Act funding for weatherization. This funding has been used to weatherize nearly 500,000 homes across the country. This has lowered energy bills and created jobs at a time when we desperately need them. We write today to express our deep concern that the state of New Jersey will not meet its target by the original deadline, and to respectfully request an extension in order for the state to fully expend these vital funds.\nThe Recovery Act allocated $118.8 million for New Jersey to weatherize almost 13,400 homes by March 31, 2012. A group of non-profits experienced with weatherization has completed approximately half of the homes targeted for weatherization. The state of New Jersey itself, via the New Jersey Housing and Mortgage Finance Agency, was the direct recipient of$29 million of the WAP funding but has yet to weatherize a single housing unit. We are concerned that New Jersey could lose these funds, thus unfairly depriving New Jersey families from taking full advantage of this important program.\nWAP is a vital opportunity to conserve energy resources, save families money, and reduce New Jersey's high unemployment rate.  Too many New Jersey working-class families are struggling and at this difficult time, they can hardly afford to let a chance like this slip by. Therefore, we hope that an extension will enable New Jersey to meet the weatherization goals it has set for itself.\nThank you for your consideration.\n ####\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=675d23e0-cece-4df1-a1c5-0fc111f88947,\"Statement From Menendez Regarding House GOP Efforts to Kill Senate Payroll Tax Cut\n                    \n                      December 20, 2011\n                     Washington – U.S. Senator Robert Menendez (D-NJ) released the following statement in reaction to House Republicans’ actions today:\n\n“There should be no misunderstanding about what House Republicans are doing:  They’re itching for a fight with the President and are willing to raise taxes on 160 million middle class families to get it. Their actions are shameful and they alone will be responsible for the consequences on January 1.  Not only did they not have the guts to vote on our compromise bill – supported by 90% of the Senate – they’re burying tax relief for middle class families in a legislative graveyard.  Speaker Boehner: The clock is ticking, but there is still time to do the right thing.  If you can stand up to the Tea Party, we can stand up for middle class families.” \n\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cd7c8887-51f6-4deb-b1c8-05023dd00094,\"’Tis the Season For Prepaid Card Hidden Fees: Menendez Introduces Legislation to Protect Consumers\n                    \n                            Prepaid Card Market Is Growing Exponentially; Act Ensures More Money Stays in Consumers’ Pockets\n                    \n                      December 19, 2011\n                     Paramus, NJ– As consumers flock to retailers during the holiday season and as the use of prepaid cards continues to expand rapidly, Senator Robert Menendez (D-NJ) introduced this past Saturday December 17 The Prepaid Card Consumer Protection Act to curb hidden fees associated with many of these cards.\n This act will eliminate some of the most egregious hidden fees and let consumers know what the fees are before they buy the cards.  It will also let consumers get their money back if the cards are lost, stolen, or the company goes bankrupt. As it stands now, if the prepaid card is lost, stolen, or the company goes bankrupt, all monies on that card may be gone.\n“This season, its hidden fees that are making for a Blue Christmas,” said Menendez. “Unsuspecting consumers are finding out the hard way that prepaid cards often give you much less than the dollar amount you load onto them thanks to unnecessary fees. We need to ensure that families who rely on prepaid cards are not surprised by hidden charges.\"\"\n “Consumers need to be very careful about using prepaid cards, because many of them are riddled with fees that add up quickly,” said Chuck Bell, Programs Director of Consumers Union, the publisher of Consumer Reports. “Prepaid cards also have weak financial protections that could leave consumers vulnerable to losing their money, if their card is lost or stolen.”\n “Now that prepaid cards are becoming increasingly popular, Congress must act to rein in the high fees, and make sure consumers get the protections they deserve,” Bell said. “We commend Sen. Menendez for his leadership in introducing this important legislation, which we hope will be swiftly enacted by Congress.”\n “NJPIRG, New Jersey Public Interest Research Group is pleased to join Senator Robert Menendez today as he continues his longstanding work to protect consumers in the financial marketplace. As more consumers buy reloadable prepaid cards – whether for the convenience, or because they are un-banked due to the recession caused by the Wall Street banks – it is critical that those consumers have consumer protections including disclosures up front and a ban on unfair fees.  Senator Menendez's bill will provide these and other important consumer protections.” said Gideon Weissman, NJPIRG Program Associate.\nThis is not Senator Menendez's first attempt at enlarging the fine print on prepaid cards. This latest effort comes at a time when the use of prepaid cards is booming. According to an analysis by Mercator Advisory Group, the amount loaded onto “open loop” prepaid cards will increase 383 percent between 2009 and 2012, from $60.4 billion to $233.8 billion. Senator Jeff Merkley (D-OR) also co-sponsored the legislation.\n THE PREPAID CARD CONSUMER PROTECTION ACT\n • Requires full disclosure of all fees before the consumer buys the card, including a wallet-sized summary of all fees and a toll-free telephone number for customer service\n • Limits on the types of fees that can be charged, including a ban on overdraft fees, balance inquiry fees, customer service fees, fees for inactivity, account closure fees, and other types of fees\n • Consumer protections for prepaid cards such as (1) Regulation E protection against loss or theft (so that if you lose the card or it’s stolen, you’ll still get your money back) and (2) FDIC insurance to protect consumers’ money if the card company goes bankrupt. Debit cards already have these consumer protections, but prepaid cards don’t.\n • The Consumer Financial Protection Bureau and the FDIC would issue regulations within 9 months of enactment\nClick Here for a chart of sample fees for different reloadable prepaid cards\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=362652b0-1fc4-4dec-b882-d2c6c79e4693,\"Lautenberg, Menendez Announce More Than $170,000 For Fire Departments in New Jersey\n                    \n                            Paterson Awarded $100K For Emergency Response Equipment\n                    \n                      December 16, 2011\n                     WASHINGTON – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ), and U.S. Rep. Bill Pascrell, Jr. (D-NJ-8) today announced New Jersey fire departments have received a total of $172,629 in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  Eligible use of this grant funding includes investment in training, equipment, health programs, and facility modifications.\n\n “With firefighters ready to roll at the sound of the alarm, we must be certain that they are sufficiently trained and equipped to handle emergencies safely and effectively,” said Senator Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG program.  “Firefighters put their lives on the line to keep us safe and they deserve our support.  While states and municipalities are making tough budget cuts, this direct federal investment in local firefighters is especially important to the safety of our communities.”  \n “Our firefighters need to have the resources they need to protect themselves and our families in case of a fire emergency,” said Senator Menendez.  “These funds will allow local fire departments to purchase the most modern safety equipment available and boost their capacity to respond in case of a fire.  This is the very least we can do for the safety of our first responders, our families, and our communities.”\n“As everyone in Paterson learned during last summer's flooding, our local waterways can turn into white water rapids with just one storm. That makes it all the more important that our firefighters and other first responders are just as prepared for water emergencies as they are for fires,” said Pascrell, who introduced the Firefighter Investment Response Enhancement (FIRE) Act in March 1999. “We have an obligation to provide these brave professionals with every advantage available to keep the risk to their lives at an absolute minimum. The FIRE Act was written here in the Eighth Congressional District with the purpose of helping communities support their first responders.”\n\nThe federal grants have been awarded to the following departments:\n·      Paterson Fire Department – $107,736 for flood rescue emergency equipment  \n·      Westfield Fire Department – $33,885 for operations and safety\n ·      Ocean Gate Fire Company in Ocean Gate – $31,008 for operations and safety\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b29356b9-910a-40fa-b7e0-681aae817730,\"Senator Menendez Praises Conference Committee for Staying Tough on Iran\n                    \n                      December 13, 2011\n                     Washington – U.S. Senator Robert Menendez (D-NJ) today praised the efforts by House and Senate negotiators to agree upon new sanctions that target Iran's central bank.  The agreement  follows last week’s 100-0 vote by the Senate in favor of the Menendez-Kirk Iran sanctions amendment which would force international financial institutions to choose between doing business with Iran and doing business with the United States. The negotiations between the Senate and the House made minor changes that don't undermine our effort to sanction the Iranian Central Bank.\n \n“After the Senate unanimously passed my amendment imposing tougher financial sanctions against the regime in Iran, I’m pleased the compromise legislation worked out by the House and Senate remains as tough as I intended in limiting Iran’s ability to finance its nuclear ambitions,” said Menendez.  “The compromise bill is nearly the same as the amendment we unanimously passed.  The final bill remains a serious attempt to sanction the Central Bank of Iran which is complicit in Iran’s nuclear efforts, and I look forward to the President signing it into law.  Ultimately, this is about keeping not just the Middle East, but all Americans safe from the threat of nuclear proliferation in the hands of a rogue regime in Tehran.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=34b3ea8e-8de8-42b7-9573-f6f4eca92767,\"Senator Menendez Leads Effort to Extend Tax Benefit for Public Transportation Users \n                    \n                      December 13, 2011\n                     Washington D.C. - Senator Robert Menendez (D-NJ) and twenty one other senators sent a bipartisan letter to the Senate Finance Committee last week, urging the committee to extend benefits that will allow thousands of bus and train riders to continue saving hundreds on their commute. The benefit would revert back to a less generous level of $125 a month as of Jan. 1, if the higher $230 a month figure is not reauthorized.\n \n The Senators wrote:\n“As you know, in 2009 Congress raised the tax-free benefit that workers could apply toward monthly commuting costs, from $120 per month up to $230 per month, putting transit benefits on par with parking benefits.  This important benefit eases the burden of commuting costs on families, relieves congestion, reduces the stress on our highway system and decreases our reliance on foreign oil.”\n \n “The increase in the transit benefit cap to $230 per month is set to expire at the end of 2011 and return to $125 per month with the recent IRS cost of living adjustment.  That would represent a significant tax increase for middle-class commuters and their employers, who currently do not have to pay federal payroll taxes on the amount of the benefit.”\n \nIt is estimated that thousands of commuters in New Jersey alone could be affected.  For example, train fare from New Brunswick to New York Penn Station costs $361 a month. For that commute extending the higher benefit would mean a tax savings of over $1,500 a year.\n \nSenators Kerry, Mikulski, Lieberman, Cardin, Merkley, Lautenberg, Carper, Wyden, Durbin, Schumer, Murray, Boxer, Coons, Udall, Akaka, Blumenthal, Brown (MA), Gillibrand, Kirk, Warner, and Whitehouse also signed the letter. \nFull letter sent to Senator Max Baucus, Chairman of the Committee on Finance, and Senator Orrin Hatch, Ranking Member of the committee, is below.\n \n December 8, 2011\n \n \nSenator Max Baucus, Chairman                                 Senator Orrin Hatch, Ranking Member\n \nSenate Committee on Finance                                   Senate Committee on Finance\n \n219 Dirksen Office Building                                    219 Dirksen Office Building\n \nWashington, DC  20510                                        Washington, DC  20510\n \n Dear Chairman Baucus and Ranking Member Hatch,\n \n We are writing to you today to urge the Senate to include an extension of the tax-free benefit for mass-transit users in any tax legislation that may pass the Senate this year.  Unlike other tax cuts, the higher mass transit benefit is one that impacts employers and employees immediately and cannot be extended retroactively.\n \n As you know, in 2009 Congress raised the tax-free benefit that workers could apply toward monthly commuting costs, from $120 per month up to $230 per month, putting transit benefits on par with parking benefits.  This important benefit eases the burden of commuting costs on families, relieves congestion, reduces the stress on our highway system and decreases our reliance on foreign oil.\n \n The increase in the transit benefit cap to $230 per month is set to expire at the end of 2011 and return to $125 per month with the recent IRS cost of living adjustment.  That would represent a significant tax increase for middle-class commuters and their employers, who currently do not have to pay federal payroll taxes on the amount of the benefit. \n \n Commuter benefits are one of the core benefits offered by employers, after health, retirement, and disability benefits.  Nationally, more than 2.5 million people now use the transit benefit, with over 250,000 of those users spending more than $125 per month. For these commuters with high monthly costs, the imminent drop in the benefit cap will result in an increase in the cost of commuting of up to 22 percent.\n \n Given the context of the underlying tax debate, we stress the importance of extending this benefit in the most fiscally responsible way possible. There are a number of different permutations by which this policy could be extended. It is possible to extend this benefit in a way that carries little to no net cost to the taxpayer. Ultimately, we believe very strongly that parity with the parking benefit should be retained.\n \n Thank you for your consideration of this matter.  We are ready to work with you to formulate an affordable long-term policy on the transit benefit that will prevent tax increases for hundreds of thousands of our constituents and their employers.\n \n Sincerely,\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5c58ffb8-fd3a-4c23-89fb-b2e8505c2662,\"Menendez, Lautenberg Request Emergency Assistance for Camden Police Department\n                    \n                      December 13, 2011\n                     Washington – US Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) today sent a letter to Attorney General Eric Holder requesting emergency federal law enforcement assistance for the Camden Police Department. This request comes after reports of escalated violence in Camden, New Jersey; violence that seems to be in direct correlation to drastic budget cuts that reduced the Camden police force by 168 police officers. While a significant percentage of those officers have been rehired, the city’s 262- member force is still more than 100 police officers below its original capacity.\n \n\n “The numbers make it perfectly clear that Camden is facing a serious law enforcement crisis. And families living in Camden should not have their safety compromised because of budget shortfalls,” said Menendez. “Public safety is a top priority of mine. I’m hopeful Attorney General Holder grants the assistance Camden needs to put more police on the street to get this crisis under control.”\n \n “In the wake of budget cuts and layoffs, a crime wave is overwhelming the city of Camden and there is an urgent need for emergency assistance to help keep families and businesses safe,” stated Lautenberg.  “We are urging Attorney General Holder to work with us and act quickly to help stem the rising tide of crime in Camden.”\n\n \n According to recent media reports, 16 people have been killed in the City of Camden since the beginning of October, robberies have increased about 114 percent last month compared to November 2010 and aggravated assaults with a firearm jumped 60 percent during the same time period.   Additionally, the Associated Press indicates that arrests in Camden have plummeted this year in the wake of last year’s layoffs.\n \n \nFull Text of Letter to Attorney General Eric Holder:\n \nDecember 13, 2011\n \n \nDear Attorney General Holder:\n \nThe City of Camden, New Jersey is facing a serious law enforcement crisis and we are writing to ask for emergency federal law enforcement assistance for the Camden Police Department.\n \nAs you may know, a significant budget shortfall forced local elected officials to lay off 168 Camden police officers. Although a portion of those officers have been rehired, the city’s 262- member force is still more than 100 police officers below its original capacity. While the city’s leadership recently announced that they have taken significant steps towards agreement on a regional police force plan, we believe it is critically important to provide emergency federal resources to Camden.\n \n \nSince the beginning of October, sixteen people have been killed in the city. Robberies increased about 114 percent last month compared to November 2010 and aggravated assaults with a firearm jumped 60 percent during the same time period. Meanwhile, the Associated Press indicates that arrests in Camden have plummeted this year in the wake of recent layoffs.\n \nWe have been strong supporters of law enforcement resources for local communities. During the negotiations on the Department of Justice appropriations bill for fiscal year 2012, we advocated for more funds for the COPS Hiring Program and Byrne JAG Program. While we understand that COPS Hiring funding will not be available until later next year, in the interim, we would urge you to consider providing resources to Camden in the form of additional DEA agents, U.S. Marshals and Federal Bureau of Investigation agents.\n \n \nPublic safety is always our top priority and the families living in Camden should not have their safety compromised due to budget concerns. A strong police presence is vital to the security of our community.\nThank you very much for your consideration of our urgent request.\n \nSincerely,\n \nROBERT MENENDEZ  and FRANK R. LAUTENBERG\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=73a9fa86-c0d2-4362-9b23-a24805ee11ca,\"Menendez: Republicans Decided to Play Partisan Politics Rather than Support Mari Carmen Aponte’s Nomination for US Ambassador to El Salvador\n                    \n                      December 12, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ), Chairman of the Foreign Relations Western Hemisphere Subcommittee, tonight commented on Republicans’ obstruction of Mari Carmen Aponte’s nomination to serve as US Ambassador to El Salvador. A 60 vote majority was required to overcome Republicans’ filibuster of the motion to proceed to her consideration, but the vote failed 49-37.   \nMenendez said:\n\n“It is incredibly disappointing that tonight Republicans were willing to sacrifice an eminently qualified Hispanic woman in order to score cheap political points against the administration.   In the 15 months since Ambassador Aponte was sworn in as the U.S. Ambassador to El Salvador she has established a distinguished record of success.  She has impressed the diplomatic establishment with her professionalism and won the respect of parties both right and left in El Salvador, civilian and military forces, and the public and private sectors.  She has fostered a strong U.S.-Salvadoran bilateral relationship and has been an advocate for American national security and democratic values.\n“As a result of her advocacy, El Salvador is again a key ally in Central America and its troops are the only ones from a Latin American country fighting alongside American troops in both Iraq and Afghanistan. Ambassador Aponte has consistently fought efforts by Cuba and Venezuela to gain influence in Central America... and -- as a result of her negotiating skills -- the United States and El Salvador will open a new join electronic monitoring center that will be an invaluable tool in fighting transnational crime.\n“Her qualifications are impeccable and her service has been honorable.  As an Hispanic American, I am proud to have supported her nomination and as a member of the Senate, I am terribly disappointed that those on the other side could not recognize the benefits to America’s security and foreign policy interests that her tenure has delivered, and allow Ambassador Aponte to continue serving our nation.”\n\nEarlier today, Senator Menendez spoke on the Senate floor to urge Republicans to put partisan politics aside and support Mari Carmen Aponte’s nomination to be US Ambassador to El Salvador.\nBelow are his full remarks; click here for the video\nConfirmation of Mari Carmen Aponte\nRemarks by Senator Robert Menendez  As prepared for Delivery\nSenate Floor – December 12, 2011\nMr. President, I’ve come to the floor to address the nomination of an extraordinary woman – a qualified, talented Latina woman -- to be the United States Ambassador to El Salvador. Unfortunately, some of my Republican colleagues have made Ambassador Mari Carmen Aponte a target of inside the beltway politics, where the political points gained from bringing down an Administration nominee supersede the value gained from having a superior Ambassador, promoting and guarding American interests at a critical time.\nBorn in Puerto Rico, Ambassador Aponte became the Executive Director of the Puerto Rico Federal Affairs Administration in 2001.  She has served as a director at the National Council of La Raza and the Puerto Rican Legal Defense and Education Fund. She has presided over the Hispanic Bar Association of the District of Columbia and the Hispanic National Bar Association. She has excelled in her field -- and won the respect of her colleagues and the diplomatic community.\nLet’s look at the record. Nearly two years ago, I chaired the nomination hearing for Ambassador Aponte to serve as President Obama’s Ambassador in San Salvador.\nAt that time, one of my Republican colleagues objected to her nomination because he was not given access to her FBI file to review information about a personal relationship Ambassador Aponte had with a Cuban national some 20 years ago. Pursuant to precedent, one democrat – and one Republican reviewed her FBI file. I was the Democrat, and there was nothing – nothing -- in the file to substantiate the concerns raised by my colleagues. I take a backseat to no one when it comes to democracy in Cuba and opposing the Cuban regime or anyone who sympathizes with such a despotic regime, and I certainly would never, for a moment, let down my guard when it comes to the Castro regime...\nI can assure every one of my colleagues – on both sides of the aisle -- if I had any concern that Ambassador Aponte would let her guard down or had had any questionable relationship with Cuba or the Castro regime in her background, I would not be supporting her today. \nMr. President, this is a respected American diplomat who has been on the job and has served this nation with distinction. In the 15 months since Ambassador Aponte was sworn in as the U.S. Ambassador to El Salvador she has impressed the diplomatic establishment with her professionalism and won the respect of parties both right and left in El Salvador. She has won the respect of civilian and military forces, and she has won the respect of the public and private sectors.\nShe has won everyone’s support and fostered a strong U.S.-Salvadoran bilateral relationship that culminated with President Barack Obama announcing El Salvador as one of four countries in the world and the only country in Latin America chosen to participate in the Partnership for Growth initiative.Most importantly, Ambassador Aponte has been an advocate for American national security and democratic values.\nAs a result of her advocacy, El Salvador is again a key ally in Central America and its troops are the only ones from a Latin American country fighting alongside American troops in both Iraq and Afghanistan. Ambassador Aponte has consistently fought efforts by Cuba and Venezuela to gain influence in Central America... and -- as a result of her negotiating skills -- the United States and El Salvador will open a new join electronic monitoring center that will be an invaluable tool in fighting transnational crime.\nMr. President, this is a record of success. It’s a record of honor. It’s a record of diplomatic and political distinction. It’s the record of a dedicated, qualified, experienced and engaged American diplomat – a 15 month record that brought our nations together. What more could we ask? What more should we ask?\nHaving said that -- because of my strong belief that Ambassador Aponte is fully and uniquely qualified for this post -- during the last several months I worked with Chairman Kerry to find a way - despite Committee precedent – to allow an additional Republican on the Foreign Relations Committee to review the Ambassador’s FBI file.\nAs a result, two Republicans – my colleague and friend from Florida, Mr. Rubio and the Senator from South Carolina, Mr. DeMint -- were able to review her file. Since the concern had been not having access to her file, we presumed that, once they reviewed, they would lift their objections and allow a vote on her nomination. Why? Because there is nothing in that file that would indicate otherwise.\nBut we were wrong. It wasn’t about the file. That appeared to be just a delay tactic.\nThe opposition to Ms. Aponte’s nomination turned out to be about one thing and one thing only --- politics. Our good faith effort to provide full access to information and address concerns about Ms. Aponte was summarily dismissed. \nAt her nomination hearing in November, Republican members of the Committee raised a new concern -- an editorial penned by Ambassador Aponte on tolerance and non-violence during gay pride month in June. Republicans decried it as disregarding Salvadoran culture and questioned her motives for writing the editorial, despite the fact that the editorial was the result of a cable to all Embassies from the State Department urging missions to write editorials and hold gay pride events.\nThe true irony of this trumped-up allegation is that the editorial – which Republicans assert “stirred controversy and was rebuked throughout Latin America,” mirrored a May 2010 decree by Salvadoran President Funes prohibiting discrimination by the government of El Salvador based on sexual orientation. Let’s be honest: there is no question about Ambassador Aponte’s qualifications or performance on the job or about whether an editorial on tolerance is grounds for sacking an Ambassador; this is just another Republican dog-and-pony-show to undermine the President’s policy objectives and attack a qualified Democratic nominee to an essential post.\nWhen the facts, when the files, when there was nothing that corroborated the vicious allegations about Ms. Aponte’s past, those on the other side argued that her editorial on the elimination of prejudice was the basis for their opposition. When they learned that the government of El Salvador itself supports this view, Republicans again changed their tune.\nFour weeks after her November 29th nomination hearing, on the eve of the Foreign Relations business committee meeting, these members decided they wanted to attack from a different angle. They called for a new classified hearing to vet her nomination, to permit questions to FBI and Diplomatic Security investigators about whether they had been subjected to political influence for determining that Ambassador Aponte was eligible for a security clearance.\nI find it appalling that members of this Chamber would essentially suggest, without evidence, that professional FBI and Diplomatic Security members would bend to political pressure or that any Administration would apply such pressure, risking U.S. national security on behalf of any person. These members knew the content and timing of their request would make it impossible to fulfill. To his credit, the Chairman of the Foreign Relations Committee, Senator Kerry, over the last two weeks has nonetheless sought to resolve the situation.\nBut, Mr. President, the shifting basis of the opposition to Ambassador Aponte reveals that the motive for that opposition is pure partisan politics driven by pure partisan interests, fueled by pure partisan desire to derail an Administration nominee for the sake of derailment alone, without any regard to the consequences for American foreign policy, or for the nation.\nI urge my colleagues to support Ambassador Aponte’s nomination. I urge them to put partisan politics aside, recognize the benefits to America’s security and foreign policy interests that her tenure has delivered, and allow Ambassador Aponte to continue serving our nation.\nWith that, Mr. President, I yield the floor.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cf9b526e-d4ae-4eeb-8a22-28e2c308e281,\"Menendez, Lautenberg Announce $18.5 Million To Create  NJ Jobs, Invest In NJ Economy\n                    \n                      December 12, 2011\n                     Washington – U.S.  Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) today announced that the U.S. Department of Transportation (DOT) has awarded $18.5 million in TIGER funds to support the Delaware River Rail/Port Improvement strategy which, when leveraged with private investment, will create thousands of new  jobs, invest in the region’s rail infrastructure and intermodal capacity, and boost New Jersey’s economy.   \n\n“At a time of real economic uncertainty, this project will create good jobs in New Jersey and provide a shot in the arm to our economy,” said Menendez.  “This is exactly the kind of public-private partnership we need to support sustainable development get our economy moving.”\n\n\n“This critical federal investment will create jobs, strengthen major commercial corridors in South Jersey and improve our state’s economy,” stated Lautenberg, a member of the Transportation, Housing and Urban Development Appropriations Subcommittee, which funds this program.  “Transportation is the lifeblood of New Jersey’s economy and I will continue fighting to strengthen our infrastructure and invest in our ports, rails and bridges.”\n\nThe Delaware River Rail and Port Improvement effort is being undertaken by the South Jersey Port Corporation (SJPC), the County of Salem and Conrail and will use the federal resources to leverage tens of millions in additional private resources in order to:\nRenew ports at Salem and Paulsboro and help finance improvements to Camden Port\nMake much needed upgrades to the rail network that link these port facilities with rest of region and nation\nMake permanent improvements to the DelAir bridge which links New Jersey and Pennsylvania\nIn supporting funding for the program, Menendez had earlier this year written DOT Secretary Ray LaHood:  “The port and rail improvements…will allow New Jersey and the region to achieve efficiencies and relieve roadway congestion, further enhancing the competiveness of the region for employers and for bringing cost-competitive goods to the market.”\nThe $18.5 million was awarded through the competitive Transportation Investment Generating Economic Recovery, or TIGER Discretionary Grant program. The TIGER program enables DOT to use a rigorous process to select projects with exceptional benefits, explore ways to deliver projects faster and save on construction costs, and make investments in our Nation's infrastructure that make communities more livable and sustainable.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0af4f56b-e0e3-4b7c-8df4-a49dd8e246c1,\"Chairman of the Subcommittee on the Western Hemisphere, Robert Menendez, Calls for a Congressional Investigation on Iranian Influence and Activities in Latin America\n                    \n                      December 9, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today announced that he will request a Congressional hearing on the threat to the United States posed by Iran's diplomatic and espionage activities in Latin America first thing next year in his capacity as Chairman of the Senate Foreign Relations Subcommittee on the Western Hemisphere.  The hearing will examine the growing influence of Iran in Latin America and the implications for the U.S. and its allies in the region.  The hearing follows the Iranian assassination attempt on the Saudi Arabian Ambassador to the U.S., an investigative documentary aired on Univision last night on the topic, and a growing volume of reports about the Iranian's effort to collaborate with certain governments and criminal organizations to launch cyber and other attacks on U.S. territory.\n \n \"\"The reported links between Chavez, the Castros, hemispheric criminal organizations, and the Iranian government are immensely troubling.  If Iran is using regional actors to facilitate and direct activities against the United States, this would represent a substantial increase in the level of the Iranian threat and would necessitate an immediate response by the United States\"\" said Senator Menendez.  \"\"As the Chairman of the Western Hemisphere Subcommittee, I plan to conduct a hearing as soon as possible to investigate these very serious allegations and the U.S. response to Iranian aggression.”\n \n The Univision investigation presented well-documented information, including videos, audio recordings and interviews showing a conspiracy involving the governments of Iran, Venezuela and Cuba to launch cyber and other attacks against U.S. territory.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=985e0053-0114-4244-af4a-0dd9dbec307e,\"GOP Rejects Middle Class Families To Protect Millionaires...Again\n                    \n                      December 8, 2011\n                      Washington, DC – For the second time in one day, U.S. Senate Republicans today blocked efforts by Democrats to support and protect middle class families – this time voting against the extension and expansion of payroll tax cuts that would provide an average New Jersey family with more than $2100 in savings next year.   Earlier today, Republicans blocked the nomination of Richard Cordray to head the new Consumer Financial Protection Bureau.\n \n “The holiday season is here and middle class families are getting ‘Scrooged’ by Republicans” said Menendez.  “Today, they turned their backs on 160 million American workers who will spend this holiday season worried about how they’re going to afford a tax increase next year.  We are not done fighting for working families and we will stay here until they get the tax relief they deserve.” \n \n The payroll tax cut is set to expire at the end of the year, raising taxes on the average working family by $1000 next year.  Visit this interactive map to see how much is at stake for average New Jersey families county-by-county.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=60c45a9b-236e-4480-8eee-687926dab084,\"Menendez:  Protect Main Street Not Wall Street \n                    \n                      December 8, 2011\n                     Republicans Said No to Consumer Protection in Favor of Wall Street Interests \nWashington – Senate Republicans today blocked a vote on the confirmation of Richard Cordray as Director of the Consumer Financial Protection Bureau (CFPB) leaving the consumer protection agency, which was established by the bi-partisan Dodd-Frank Wall Street Consumer Protection Act in 2010, without a director.\n\n“When it comes to standing up for Main Street or Wall Street, Republicans made clear today whose side they’re on:  Wall Street,” said Menendez.  “They are determined to take the ‘protection’ out of the Consumer Financial Protection Bureau, but we cannot let that happen.  I will keep fighting to make sure middle class families have a real watchdog in Washington.” \n\nThe CFPB is unable to exercise its full authority to protect active military duty and veterans from financial fraud and abuse, level the playing field to make community banks and credit unions more competitive, and help tens of millions of Americans navigate a complicated marketplace inundated with predatory practices without a director at the head of the agency. \nRepublicans vowed to block Cordray’s nomination because they are opposed to the agency itself and its mandate to protect consumers from abusive Wall Street practices that led to the financial crisis.   \n####\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=54979586-769a-4e03-b0c4-8f3faf0d1d01,\"New Jersey Seniors with Medicare Saved $70 Million this Year\n                    \n                      December 7, 2011\n                     Washington – U.S. Senator Robert Menendez today announced that seniors in New Jersey with Medicare saved nearly $70 million this year on their prescriptions – an average savings of about $700 per person – as a result of health care reform.  Additionally,  more than 800,00 New Jersey seniors have taken advantage of free preventive health screenings such as mammograms and prostate cancer screenings, diabetes testing,  and flu shots.  These screenings are vital to ensuring illnesses are prevented or caught in the early stages, improving health and reducing costs throughout the system.\n \n “I am incredibly encouraged to see seniors already reaping the benefits of health reform,” said Menendez, who voted in favor of the Affordable Care Act.  “These numbers show seniors are getting real cost savings which is exactly what health reform was intended to do.”\n \nAccording to the Centers for Medicare & Medicaid Services (CMS) seniors and people with disabilities on Medicare have seen significantly lower costs for health care through both discounts on brand-name drugs in the Medicare Part D \"\"donut hole\"\" coverage gap and free preventive care.  Nationally, data show that 2.65 million people with Medicare have saved more than $1.5 billion on their prescriptions – averaging about $569 per person. \n \nAs of the end of November, more than 24.2 million people nationwide with Medicare have taken advantage of at least one free preventive benefit – including the new Annual Wellness Visit – also made possible by the Affordable Care Act. \n \nBuilding on savings in 2011, Medicare also recently announced that the Part B deductible will be $22 lower in 2012 and average Medicare Advantage premiums are projected to drop four percent in 2012.  Part B premiums, which cover outpatient services including doctor visits, are estimated to increase by only $3.50 per month for most beneficiaries in 2012, and some will see a decrease.   These changes will be more than offset by the average Social Security cost of living increase ($43 per month for retired workers).\n The facts according to the Center for Medicare and Medicaid Services:\n \nPart D Drug savings – In New Jersey, 97,530 people with Medicare have saved $69,402,417 – averaging about $712 per person.  \nFree preventive services – Because of  the Affordable Care Act, Medicare offers preventive services such as mammograms, prostate and colorectal cancer screenings, diabetes screenings,  and flu shots.  830,732 people in NJ have taken advantage of these services, thereby seeking proactive and preventive care.  This will help ensure they’re healthier – not only improving the quality of life, but saving the system money in down-the-road costs and complications associated with untreated illnesses.\n \nFor more information about how the Affordable Care Act closes the donut hole over time, go to: http://www.medicare.gov/Publications/Pubs/pdf/11493.pdf \n \nFor State-by-State information on the number of people who are benefiting from discounts in the donut hole in 2011, go to https://www.cms.gov/Plan-Payment/\n \nFor State-by-State information on utilization of free preventive services and the Annual Wellness Visit, go to http://www.cms.gov/NewMedia/02_preventive.asp\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=da6b8efe-02fb-4c3e-b384-a5b325f4cb80,\"Menendez, Senate Democrats Warn GOP Filibuster of Nominee to Lead Financial Consumer Protection Will Hurt Middle Class  \n                    \n                      December 7, 2011\n                     NOTE:  TO SEE A PHOTO GALLERY FROM TODAY’S PRESSER CLICK HERE; TO SEE A VIDEO CLIP OF THE SENATOR’S REMARKS CLICK HERE. \nWASHINGTON – US Senator Robert Menendez (D-NJ) and Democratic members of the U.S. Senate Banking Committee today urged Senate Republicans to confirm Richard Cordray as Director of the Consumer Financial Protection Bureau (CFPB).  The consumer protection agency was established by the Dodd-Frank Wall Street Reform and Consumer Protection Act and was supported by a bi-partisan majority of the Senate and signed into law on July 21, 2010 but still doesn’t have a Director. Senate Republicans have vowed to filibuster the vote to confirm the administration’s nominee, Ohio Attorney General Richard Cordray, unless the powers of the agency to crack down on bad financial practices are first gutted, despite the fact that no one is disputing his extraordinary qualifications for the job.   \n \n“A bi-partisan majority of the Senate voted for the Dodd-Frank Wall Street Reform law. That means a bi-partisan majority of the Senate voted in favor of protecting consumers from the reckless financial games that led us to the brink of economic disaster and hurt the middle class. And majority should rule,” said Menendez.  “This is happening simply because Republicans want to protect Wall Street.  This is really about whose side you're on.  Wall Street has enough hired guns on K Street watching out for them.  It’s time consumers on Main Street had someone looking out for them too.”\n \nBy vowing to filibuster Cordray’s nomination, Republicans are vowing to deprive the middle class of a watchdog – an agency whose sole purpose is to protect middle class consumers by enlarging the fine print, simplifying complicated terms and conditions, and eliminating deceptive financial practices.   The CFPB has already been set up as a transparent and accountable agency – it has to consider the impact of its rules on businesses and banks, it has to go through financial audits, and it can be vetoed by the Financial Stability Oversight Council.  It’s Wall Street that really needs transparency and accountability to the American people.   \n \n “Ten Republican U.S. Attorneys General have endorsed Cordray and there is bi-partisan support for his nomination. Richard Cordray is unquestionably a well-qualified nominee for the job. And nobody is arguing that fact,” Menendez added. “They’re arguing that the CFPB shouldn’t even exist to protect consumers from deceptive and predatory schemes that Wall Street, payday lenders, and debt collectors have put in place to confuse and mislead consumers.”\n \n The Senate is expected to have a key vote on Cordray’s nomination on Thursday.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a8eb352a-77c1-4792-b88d-f3460f7200d8,\"Menendez, Lautenberg Announce nearly $1 million to Reduce Air Pollution in the NY/NJ Metropolitan Area\n                    \n                      December 7, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced that the Environmental Protection Agency (EPA) has granted New Jersey Clean Cities Coalition (NJCCC) $896,838 to replace the engines of 21 ferry and excursion boats that operate between New Jersey and New York with clean energy technology. This will help reduce air pollution in the urban areas of New Jersey and New York, which is characterized for having high asthma rates. The older diesel engines currently in use generate nitrogen oxide, carbon monoxide, and fine particles that pose serious health risks. \n“With one of the highest asthma rates in the nation and thousands of premature deaths every year, local families in the NY/NJ metro area are the ones feeling the impact of toxic air pollution. This is unacceptable,” said Senator Menendez. “Innovative clean diesel technology programs like this one will help reduce air pollution and protect the air we breathe for generations to come.”\"\"Clean air for our families and children is a critical public health priority for New Jersey and the entire region,”   said Senator Lautenberg, Chairman of the Senate Environment and Public Works Subcommittee on Superfund, Toxics, and Environmental Health.  \"\"This federal investment will help us move towards a cleaner energy future that will make our region a healthier place for the next generation.\"\"\n \nFor more information about the grant awarded to NJCCC, you can contact the EPA Regional Office at (212) 637-3664. The New Jersey Clean Cities Coalition is a non-profit organization in the state of New Jersey for the promotion of education related to the development and use of alternative fuels and appropriate related infrastructure: http://www.njcleancities.org/\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7065e7a7-bf8e-4b73-a77e-25ddf291ed2a,\"Menendez Statement On Two-Year Anniversary Of Alan Gross’ Detention in Cuba\n                    \n                      December 2, 2011\n                     WASHINGTON – United States Senator Robert Menendez, Chair of the Senate Foreign Relations Western Hemisphere Subcommittee, released the following statement on the second anniversary of the Castro regime's incarceration of Alan Gross, a USAID contractor who was in Cuba to facilitate the communications capacity of the island’s Jewish community:\n \n “The Castros continue to use American Alan Gross as a pawn in a tragic diplomatic game. Jailed in Cuba on charges of crimes against the state for trying to distribute satellite equipment with internet capability to Jewish groups on the island, Alan Gross has lost more than 100 pounds, has difficulty walking due to arthritis, and has been kept from his mother and daughter who are battling cancer. The United States, should not be blackmailed into releasing convicted Cuban spies or terminating U.S. democracy programs on the island in order to secure his release. \n \n The Cubans through their continued detention of Gross have shown the world the true nature of the regime, which is sustained through violence, tyranny, and repression of even the most basic human and civil rights and based in neither political or economic ideology, but on the common and  simple model of authoritarian rule designed to sustain its leaders and preserve their power.  \n \n Today, I call on President Obama to demand the release of Alan Gross and repeal the regulatory changes made on January 14, 2011 that have provided an economic lifeline to the regime through a historic easing of travel and remittances to the island.   These changes, which were purportedly taken in hopes of advancing a democratic opening on the island, have had no effect, as evidenced by the nearly daily repression of democracy activists on the island and the continued unjust imprisonment of Alan Gross.  They should be repealed.  We cannot ignore the reality that it is not U.S. policy, but Cuban policy that is responsible for the Castros’ unabated tyranny.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d9a0420f-8a06-4888-ad1b-eec61c9e7a03,\"Menendez Vows To Keep Fighting For Middle Class Tax Relief\n                    \n                      December 1, 2011\n                     Republicans Blocked Middle Class Tax Cut; Chose to Protect Millionaires over Middle Class \nWashington – U.S. Senator Robert Menendez (D-NJ), co-sponsor of the Middle Class Tax Cut Act, said tonight that Democrats would continue to fight to ensure that middle class families get the tax breaks they need to put real money back in their pockets next year.   The Middle Class Tax Cut Act – which Senate Republicans blocked – would help create jobs and stimulate demand by giving approximately 160 million workers an increased payroll tax cut, with the average American family seeing nearly $1,500 in additional take-home pay and the average working family in New Jersey  seeing more than $2000.   The bill also cuts taxes for small businesses – the job creators in this country – to help them expand and create jobs.\n\n“America’s middle class is the backbone of our nation and as they struggle, our nation suffers,” said Menendez after Republicans blocked a vote on extending and expanding the payroll tax cut because it asked millionaires to pay their fair share.  “Neither our working families nor our economy can afford to let these tax cuts expire – we must extend and expand them.  So let’s get back to work and get this done.”\n\nDespite majority support for the Democrats’ proposal, they were unable to move it forward because Republicans’ opposition required a full 60 votes rather than a majority. \nRepublicans would not support the bill because it was paid for with a surtax on income over $1 million.  Instead, they offered a proposal that would extend the tax cuts for a year, but would not expand them.  Their proposal would also not provide any tax cuts for small businesses.  The plan pays for the extension in part by cutting 200,000 federal jobs.\n\n“The Republicans offered a plan that does not give one more cent of relief to the middle class and not one dime of relief to small businesses – the same businesses the Republicans continue to claim are the job generators we must protect,” Menendez said in voting against the Republican proposal.  “And they put the burden of paying for it entirely on middle class workers rather on the millionaires who can most afford it.”\n\nMiddle Class Tax Cut Act Of 2011:\nProvides Tax Cut to 160 Million Workers. The bill cuts in half (from 6.2% to 3.1%) the Social Security payroll tax paid by employees and the self-employed on their wages and salaries for 2012.  Approximately 160 million workers will benefit from this tax cut, with the average family seeing nearly $1,500 in additional take-home pay.  A family earning New Jersey’s median income will save $2,122.   If the current 2% payroll tax cut expires, the average family will pay about $1000 more in taxes next year. \nCuts the Payroll Tax in Half for 98% of U.S. Businesses. The Senate bill cuts in half (from 6.2% to 3.1%) the Social Security payroll tax paid by employers on the first $5 million of taxable payroll for 2012. This will benefit all businesses, but 98% of businesses will see their portion of the Social Security payroll tax cut in half.\nGives an Added Incentive for Businesses to Hire New Workers. The bill completely eliminates (from 6.2% to 0%) the Social Security payroll tax paid by employers on the first $12.5 million of an employer’s increased taxable payroll for the 4th quarter of 2011 and $50 million in increased payroll for 2012.\nAvoids Tax Hike on the Middle Class by Asking Millionaires to Pay Their Fair Share: In order to prevent a tax hike on 160 million American workers, the bill imposes a 3.25% surtax on modified adjusted gross income in excess of $1 million for both single filers and married couples filing jointly.  The surtax is effective for taxable years beginning after December 31, 2012.\nProtects Social Security. The legislation would not affect the Social Security Trust Fund.  It requires that the Fund be made whole through transfers from the General Fund.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8fefd2a6-c7e5-4831-8158-5b0be310d589,\"Senators Menendez, Rubio Introduce Senate Resolution Condemning Assault On Democracy In Nicaragua\n                    \n                      December 1, 2011\n                     Washington, D.C. – U.S. Senators Bob Menendez (D-NJ) and Marco Rubio (R-FL) today introduced a bipartisan resolution in support of the democratic aspirations of the Nicaraguan people and calling attention to the continuing deterioration of constitutional order in Nicaragua. \nAmong other measures, the Senate resolution condemns the recent fraudulent reelection of Daniel Ortega as president, calls on Nicaraguan authorities to investigate and prosecute acts of election day violence, urges the Administration to take immediate measures to encourage the restoration of constitutional rule, and urges the immediate issuance of an Organization of American States (OAS) report detailing pre-electoral constitutional irregularities that helped secure a victory for Ortega.\n\n“Daniel Ortega’s unconstitutional grab of the Nicaraguan presidency is a serious deterioration of democratic values in the country and poses a serious threat to the Nicaraguan people and the region,” said Senator Menendez. “It is time for the United States and the international community to pay attention to what is occurring in Nicaragua and take action to ensure that the democratic values in the region aren’t further eroded.”\n\n\n “For years, Daniel Ortega and his cronies have eroded Nicaragua’s democratic institutions,” said Rubio.  “Their recent efforts have accelerated this democratic decline and reached a tipping point that demands a strong reaction from the United States and the mobilization of our allies in defense of the Nicaraguan people’s human rights.  I urge the Administration to speak out and act with urgency against the assault on democracy and constitutional order taking place in Nicaragua.”\n\nThe full text of the resolution is available here.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6f3a982a-4c61-469c-91b6-7c0f8efd3fc1,\"Menendez, Kirk Amendment for Stronger Sanctions Against Iran Passes Unanimously in the Senate\n                    \n                      December 1, 2011\n                     WASHINGTON – The US Senate today approved an amendment  authored by Senator Robert Menendez (D-NJ) and Senator Mark Kirk (R-IL)  unanimously by a 100-0 vote, to require sanctions on financial  institutions that do business with the Central Bank of Iran. The  sanctions would prohibit financial institutions that do business with  the bank of Iran from opening or maintaining correspondent banking  accounts in the United States. In the case of foreign central banks, the  legislation would only apply to transactions for the sale or purchase  of petroleum products and only after determining that the country with  jurisdiction over the institution 1) has sufficient alternative  petroleum supplies and 2)  where the country has not taken steps to  significantly reduce its purchases of Iranian petroleum or petroleum  products.  The amendment also exempts from sanctions transactions for  food, medicine and medical devices.  The amendment seeks to deny Iran  the resources for its nuclear weapons program.\n\n“Iran’s nuclear ambitions threaten the national security of the United States and its allies,” said Senator Menendez.   “The Central Bank of Iran is complicit in Iran’s nuclear venture,  financing the Iranian effort to acquire the knowledge, materials and  facilities to enrich uranium and to ultimately develop weapons of mass  destruction; assisting the Iranian government in the evasion of  multilateral sanctions; and engaging in deceptive financial practices  and illicit transactions.  If we are serious about stopping Iran from  obtaining a nuclear weapon, we must be willing to follow the money that  feeds its nuclear ambitions and to take real action against the Central  Bank of Iran, starving the regime of the resources it needs to advance  its terrorist agenda.”\n\n\n“The United States  cannot accept an Iran with nuclear weapons,” Senator Kirk said.  “As  the world’s leading state sponsor of terrorism, it’s quite likely that  the Iranian regime would transfer nuclear weapons to terrorist  organizations like Hezbollah and Hamas.  We can be sure that an Iranian  bomb would set off a nuclear arms race in the Middle East – from Saudi  Arabia to Egypt.  The Central Bank of Iran is the primary bankroller of  Iran’s global terror network, its nuclear program and other illicit  activities.  The time has come to impose crippling sanctions on this  terrorist and nuclear-financing institution.” “There is proof beyond a shadow of a doubt that Iran is developing a  nuclear weapon, and we must cut off those nuclear ambitions at the  source by sanctioning the Central Bank of Iran,” said Senator Schumer.  “Iran could be on the cusp of having at least one workable nuclear  weapon within a year and another deadly bomb six months after that. The  extreme and dangerous government of Ahmadinejad must be held accountable. I have long been a supporter of sanctioning the Central Bank of Iran, and am grateful the Senate has taken the next critical step to require  sanctions on financial institutions that do business with the Central  Bank of Iran.”\n\n In addition to Senators Menendez and Kirk, the amendment was  co-sponsored by 52 additional Senators: Senator Ayotte (R-NH), Barrasso  (R-WY), Bennet (D-CO), Blumenthal (D-CT), Blunt (R-MO), Boozman (R-AR),  Boxer (D-CA), Brown (R-MA), Brown (D-OH), Cardin (D-MD), Casey (D-PA),  Collins (R-ME), Coons (D-DE), Cornyn (R-TX), Crapo (R - ID), Feinstein  (D-CA), Franken (D-MN), Gillibrand (D-NY), Graham (R-SC), Grassley  (R-IA), Hatch (R-UT), Heller (R-NV), Johanns (R-NE), Klobuchar (D-MN),  Kyl (R-AZ), Lautenberg (D-NJ), Lee (R-UT), Lieberman (D-CT), Manchin  (D-W.Va), Merkley (D-OR), Mikulski (D-MD), Moran (R-KS),Murkowski  (R-AK),Nelson (D-FL),Nelson (D-NE), Portman (R-OH), Pryor (D-AR), Risch  (R-IO), Roberts (R-KS), Schumer (D-NY), Snowe (D-ME), Stabenow (D-MI),  Tester (D-MT), Thune (R-SD), Toomey (R-PA), Udall (D-CO), Udall (D-NM),  Vitter (R-LA), Warner (R-VA), Whitehouse (D-RI), Wicker (R-MS), Wyden  (D-OR).\nSummary of the Amendment: \nSUMMARY OF AMENDMENT TO NDAA\nSANCTIONING TRANSACTIONS WITH THE CENTRAL BANK OF IRAN.\n(a)    Section 311, Patriot Act:  This section recognizes the  Administration’s actions last week pursuant to Section 311 of the  Patriot Act, and re-designates statutorily the entire Iranian Banking  sector, including the Central Bank of Iran, as a jurisdiction of primary  money laundering concern on account of the threat to government and  financial institutions from Iran’s illicit activities, including its  pursuit of nuclear weapons, its support for terrorism, and its efforts  to deceive responsible financial institutions and evade sanctions\n(b)    IEEPA: This section requires the President to block and  prohibit all transactions in property and interests in property of  Iranian financial institutions that touch U.S. financial institutions.   (currently these transactions are “bounced” or rejected if they involve  non-designated banks. More than 20 major Iranian banks have been  designated, including major state-owned banks).\n(c)    Imposition of Sanctions:  After 60 days, requires that the  President prohibit the opening or maintaining in the United States of a  correspondent account or a payable-through account by a foreign  financial institution that the President determines has knowingly  conducted any significant financial transaction with the Central Bank of  Iran AND authorizes, but does not require, imposition of additional  sanctions under the International Emergency Economic Powers Act. \n(d)   Exception for Sales of Food, Medicine and Medical Devices to the people of iran\n(e)    Special Rule with respect to foreign central banks and  state-owned banks:  This section extends the prohibition on  correspondent and payable-through accounts to foreign central banks and  foreign state-owned banks only insofar as the financial transactions  they conduct or facilitate are for the sale or purchase of petroleum and  petroleum products on or after 180 days from enactment.\n(f)     Petroleum transactions: \na.      Requires that the Energy Information Agency, in consultation  with the Department of the Treasury, report 60 days after the date of  enactment and every 60 days thereafter on the availability and price of  non-Iranian petroleum and petroleum products on the world market.\nb.      Based on this report, the President must make a determination  90 days after enactment and every 180 days thereafter on whether the  price and supply of petroleum and petroleum products from non-Iranian  suppliers is sufficient to allow purchasers to significantly reduce  their purchases from Iran.\nc.       Sanctions for Petroleum purchases would not be triggered for  180 days after enactment and would apply only if the President  determines that there is sufficient alternative supply on the world  market, but would not apply if the country has significantly reduced its  oil purchases during that 180-day period, and continues to  significantly reduce its purchases in each successive 180-day period  thereafter.\n(g)    Waiver:  Provides for renewable 120 day waiver if the  President determines that a waiver is vital to the national security of  the United States.\n(h)     Multilateral Diplomacy Initiative. This section requires the  President to engage in a  multilateral diplomacy initiative to persuade  countries purchasing oil from Iran to limit Iran’s use of revenue from  such purchases to non-luxury consumers goods in the country purchasing  its oil and to prohibit purchases by Iran of military or dual-use  technology (MTCR list, Chemical Weapons Convention list, Nuclear  Suppliers Group list, Wassenar) or any other item that may contribute to  Iran’s conventional, nuclear, chemical or biological weapons program.  It also requires outreach to non-Iranian petroleum-producing countries  to persuade their governments to increase their output of crude oil and  thus minimize the impact on the price of oil, with reports on the  results of such efforts every 180 days.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=637e9f79-06d8-4421-81f8-5635e59e1aff,\"Menendez Co-Sponsors Bill to Stop Huge Tax Hike on Middle Class \n                    \n                      November 30, 2011\n                     Legislation would put more than $2000 in the pockets of average NJ families and help small businesses create jobs\nWashington, DC—U.S. Senator Robert Menendez (D-NJ) announced that he is co-sponsoring legislation to stop a huge tax hike from hitting middle-class families at the end of this year.  The Senate is expected to vote tomorrow on the Middle Class Tax Cut Act, which would expand and extend the payroll tax cut, putting more than $2000 back into the pocket of the average New Jersey family next year.    The bill also cuts taxes for small businesses to help them expand and create jobs.\n\n“Hard working middle class families are struggling in this economy, and the last thing they need is a tax increase,” said Senator Menendez. “If the tax cut expires, New Jersey families will have less money to spend and businesses will hire fewer workers.  Numerous economists agree on how vital the tax cut is to this economy, and there is absolutely no reason why Congress shouldn’t get this done.”\n\nThe current two-percent payroll tax break is set to expire at the end of this month.  If passed, the Middle Class Tax Cut Act would help create jobs and stimulate demand by giving approximately 160 million workers an increased payroll tax cut, with the average American family seeing nearly $1,500 in additional take-home pay and the average New Jersey working family seeing more than $2000.  \nSpecifically: \nThe median yearly family income in the United States is $50,221.   Under the current 2% payroll tax cut, set to expire at the end of this year, that family is saving approximately $1004 on their tax bill.   If the tax cut is allowed to expired, their tax bill goes up by $1004.  If the payroll tax cut is expanded to 3.1%, as called for by Menendez and Democrats, that family will put about $1557 into their pockets next year. \nThe median household income in New Jersey stands at $68,444. Under the current 2% payroll tax cut, that family is saving about $1369 on their tax bill.  If the payroll tax cut expires, that New Jersey working family would see their taxes go up $1369 a year.  If the bill passes and the tax cut is extended and expanded, they would put $2,122 into their pockets next year.\nThe bill is expected to be voted on by the Senate tomorrow.   \nKey Provisions Of The Middle Class Tax Cut Act Of 2011:\nProvides Tax Cut to 160 Million Workers. The bill cuts in half (from 6.2% to 3.1%) the Social Security payroll tax paid by employees and the self-employed on their wages and salaries for 2012.  Approximately 160 million workers will benefit from this tax cut, with the average family seeing nearly $1,500 in additional take-home pay.  A family earning New Jersey’s median income will save $2,122.\nCuts the Payroll Tax in Half for 98% of U.S. Businesses. The Senate bill cuts in half (from 6.2% to 3.1%) the Social Security payroll tax paid by employers on the first $5 million of taxable payroll for 2012. This will benefit all businesses, but 98% of businesses will see their portion of the Social Security payroll tax cut in half.\nGives an Added Incentive for Businesses to Hire New Workers. The bill completely eliminates (from 6.2% to 0%) the Social Security payroll tax paid by employers on the first $12.5 million of an employer’s increased taxable payroll for the 4th quarter of 2011 and $50 million in increased payroll for 2012.\nAvoids Tax Hike on the Middle Class by Asking Millionaires to Pay Their Fair Share: In order to prevent a tax hike on 160 million American workers, the bill imposes a 3.25% surtax on modified adjusted gross income in excess of $1 million for both single filers and married couples filing jointly.  The surtax is effective for taxable years beginning after December 31, 2012.\nProtects Social Security. The legislation would not affect the Social Security Trust Fund.  It requires that the Fund be made whole through transfers from the General Fund.\nBreakdown of how the Middle Class Tax Cut Act of 2011 payroll tax cut will benefit New Jerseyans (US Census Data)\n\nName\n\n\nState   Postal Code\n\n\nMedian   Household Income\n\n\nSavings   From Payroll Tax Cut For Median Family (Expanded Cut)\n\n\nTax   Increase For Median Family If Tax Cut Expires\n\n\nUnited   States\n\n\nUS\n\n\n$50,221\n\n\n$1,557\n\n\n$1,004\n\n\nNew   Jersey\n\n\nNJ\n\n\n$68,444\n\n\n$2,122\n\n\n$1,369\n\n\nAtlantic   County\n\n\nNJ\n\n\n$51,585\n\n\n$1,599\n\n\n$1,032\n\n\nBergen   County\n\n\nNJ\n\n\n$80,604\n\n\n$2,499\n\n\n$1,612\n\n\nBurlington   County\n\n\nNJ\n\n\n$74,481\n\n\n$2,309\n\n\n$1,490\n\n\nCamden   County\n\n\nNJ\n\n\n$60,445\n\n\n$1,874\n\n\n$1,209\n\n\nCape   May County\n\n\nNJ\n\n\n$49,797\n\n\n$1,544\n\n\n$996\n\n\nCumberland   County\n\n\nNJ\n\n\n$47,921\n\n\n$1,486\n\n\n$958\n\n\nEssex   County\n\n\nNJ\n\n\n$53,712\n\n\n$1,665\n\n\n$1,074\n\n\nGloucester   County\n\n\nNJ\n\n\n$69,928\n\n\n$2,168\n\n\n$1,399\n\n\nHudson   County\n\n\nNJ\n\n\n$55,767\n\n\n$1,729\n\n\n$1,115\n\n\nHunterdon   County\n\n\nNJ\n\n\n$100,485\n\n\n$3,115\n\n\n$2,010\n\n\nMercer   County\n\n\nNJ\n\n\n$70,570\n\n\n$2,188\n\n\n$1,411\n\n\nMiddlesex   County\n\n\nNJ\n\n\n$74,959\n\n\n$2,324\n\n\n$1,499\n\n\nMonmouth   County\n\n\nNJ\n\n\n$80,231\n\n\n$2,487\n\n\n$1,605\n\n\nMorris   County\n\n\nNJ\n\n\n$96,300\n\n\n$2,985\n\n\n$1,926\n\n\nOcean   County\n\n\nNJ\n\n\n$59,456\n\n\n$1,843\n\n\n$1,189\n\n\nPassaic   County\n\n\nNJ\n\n\n$51,933\n\n\n$1,610\n\n\n$1,039\n\n\nSalem   County\n\n\nNJ\n\n\n$52,958\n\n\n$1,642\n\n\n$1,059\n\n\nSomerset   County\n\n\nNJ\n\n\n$90,125\n\n\n$2,794\n\n\n$1,803\n\n\nSussex   County\n\n\nNJ\n\n\n$80,155\n\n\n$2,485\n\n\n$1,603\n\n\nUnion   County\n\n\nNJ\n\n\n$64,588\n\n\n$2,002\n\n\n$1,292\n\n\nWarren   County\n\n\nNJ\n\n\n$70,092\n\n\n$2,173\n\n\n$1,402\n\nSupported By Economists From Across The Political Spectrum:\nZandi: “We’ll Likely Go Into Recession” If the Payroll Tax Cut Expires. In October, Mark Zandi of Moody’s Analytics said of the 2010 payroll tax cut that is set to expire in December, “We`d be in recession right now without it. So I think if they don`t do that, at the very minimum, we`ll likely go into recession.” Zandi wrote, “It is critical (and assumed in our baseline outlook) that lawmakers agree at least to extend and increase the payroll tax holiday for workers through 2012 as proposed by President Obama. This would reduce next year’s fiscal drag to less than 1 percentage point—still a heavy lift for the economy, but doable.” [MSNBC, 10/7/11; AP, 9/9/11; Moody’s Analytics, 10/10/11]\nAmeriprise Financial Economist: Payroll Tax Cut Could Add More Than 1 Million Jobs. \"\"This additional spending capacity in the hands of consumers should continue to foster improvements in aggregate domestic demand. And ultimately, it is demand and demand alone that will lead to more business hiring,\"\" said Russell Price, senior economist for Ameriprise Financial Services. “Price estimates the increased payroll tax holiday for workers by itself is likely to add between 750,000 to 1 million jobs, and that the new break on payroll taxes for employers could add an additional 100,000 to 200,000 jobs. He added that gross domestic product, the broadest measure of the nation's economic activity, could get a 1.5 percentage point boost as well.” [CNNMoney, 9/9/11]\nJPMorgan: Allowing Unemployment Benefits and Payroll Tax Cut to Expire Could Slow Growth By Up to 2%.  “What's more important for the economy in 2012 though is the fate of a number of stimulus measures, including a 2 percent cut in employee payroll taxes and extended unemployment benefits, that are due to expire at the end of the year, JPMorgan economist Feroli said. If Congress doesn't continue them, ‘the drag from tightening fiscal policy could subtract 1.5 to 2 percentage points from GDP growth next year,’ the former Fed economist added in a Nov. 10 note to clients.” [Bloomberg News, 11/19/11] \nJPMorgan: Current Payroll Tax Cut Boosted Consumer Spending. Discussing the payroll tax cut in a September note, JPMorgan wrote, “Although real consumer spending was subdued in the first quarter, when the tax cut kicked in, nominal consumer spending grew at a 6.1% annual rate, the fastest pace so far in the current expansion.” [JPMorgan, Economic Research Note, 9/9/11]\nBarclays Capital: Allowing Unemployment Benefits And Payroll Tax Cut To Expire “Would Shave About 1.5pp Off Of Consumption Growth.” Barclays Capital wrote, “Given the political climate, finding $160bn of deficit savings needed to extend the payroll tax cut and the extended unemployment benefits at their current levels could be a high bar. The end of these stimulus measures would pose a noticeable headwind to disposable personal income growth early next year. We estimate if both stimulus measures expire, then the drag would shave about 1.5pp off of consumption growth (1pp off headline) on a q/q (saar) basis in Q1 of 2012.” [Barclays Capital, 11/22/11]\nBarclays Capital: Letting Payroll Tax Cut Expire Would Reduce GDP By 1.5 Percent. In an interview with Bloomberg Television, Barclays analyst Michael Pond warned, “One of the things that we're watching is the payroll tax extension and the signals that we're getting from Washington as to whether we get that extension. Because if we don't, our growth forecast frankly will probably be dropped down from about 2.5 percent in Q1 down to around 1 percent. It's that big.” [Bloomberg News, 11/29/11]\nUniversity of Chicago Economist: “Employment Could Be Roughly Three Million Greater During The Period Of The Tax Cut Than It Would Otherwise.”  Casey B. Mulligan, an economics professor at the University of Chicago, wrote, “the 3.1-percentage-point part of the president’s proposal could raise employment by at least a million, albeit the duration of job creation is related to how long the tax cut lasts. I expect that every percentage-point reduction in employers’ costs raises employment by about a percentage point and real gross domestic product by about 0.7 percentage point. That means employment could be roughly three million greater during the period of the tax cut than it would otherwise… The tax cut is proposed to last a year, and some of the estimated three million incremental job-years — a job that lasts a year, or 12 jobs that last a month — could be spread over time. So we might see only two million in the first year of the cut, with another one million after the cut expires. But still that’s a lot of jobs.” [New York Times, 9/14/11]\nEPI: Failure to Extend Payroll Tax Cut Would Cost Nearly 1 Million Jobs. According to the Economic Policy Institute, failure to extend the payroll tax holiday would cost 972,000 American jobs in 2012. [EPI, 8/4/11]\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=38bd63eb-b5f0-452e-940f-58a493f8023d,\"Menendez Calls for Transparency in All Airline Fees\n                    \n                      November 23, 2011\n                     Says Current System Makes Consumer Comparison Shopping Impossible\nNewark, NJ -- On the busiest travel day of the year, U.S. Senator Robert Menendez, who has led the charge in protecting consumers from hidden airline fees, called for increased transparency from airlines about each and every fee associated with a ticket prior to purchase.   In a letter to U.S. Department of Transportation (DOT) Secretary Ray LaHood, Menendez, along with several colleagues, urged that requirements be included in new rules currently being drafted that all fees be up front, up to date, available at the time of purchase and allow for meaningful comparison shopping by consumers.  \n“It is incredibly frustrating – especially when trying to save money on travel – to purchase an airline ticket at a decent price today only to show up at the check-in counter next week and be hit with a bunch of fees unknown or unseen at the time of purchase,” said Menendez during a press conference today inside a Newark Airport terminal.  “Quality comparison shopping for airline ticket prices shouldn’t be a guessing game, it should be a guarantee.”\nIn a letter sent today to DOT Secretary LaHood and signed by several senate colleagues, Menendez outlined 3 areas that must be addressed in new rules being drafted by the department that will help consumers make the best choices when planning travel and purchasing airline tickets.  He wrote:\n“First, airline fees must be transparent.  If consumers are expected to pay fees for services that have historically been included in the base fare, then at the very least, they should be informed of all of the fees and their cost before they purchase the ticket…including baggage, seating, boarding, as well as taxes and any other fees before they make their purchase.  \n“Second, passengers should be able to pay for services that have historically been included in the base fare regardless of when and where they book their ticket.  Passengers often book tickets weeks or even months in advance…[and] are surprised to find that by the time they actually fly, the fees for core services have increased.\n“Third, airlines must make every effort to keep information on fees up to date. Consumers need real-time information about airline fees in order to make informed choices at the time of purchase.”\nBackground\nThis chart shows that a ticket purchased from Airline A, between Newark Liberty International airport and BWI airport near Baltimore, appears to be $21 dollars cheaper than Airline B’s ticket between the same two cities on the same day.  That would lead many consumers to purchase Airline A’s ticket.  However, the advertised fare does not factor in both airlines’ hidden fees.  Airline A charges $120 roundtrip to check in 2 regular sized bags, and up to an additional $500 roundtrip to travel with your pet.  That’s an added total of $620.00 in fees.  Airline B allows you to check 2 bags for free, and only charges $150 to travel with your pet.  That’s $150 in fees for the same service that Airline A charges you $620 for.  At the end of the day, Airline A’s ticket costs $805.50, while Airline B’s ticket costs only $365.40.\nThe Problem \nAirline consumers are often left in the dark when trying to figure out what hidden fees may apply to their ticket.  Airlines often bury this information in confusing fine print or even change their fees after a consumer has purchased a ticket. Given the sheer number of fees airlines charge, it is simply too difficult for most consumers to figure out the math to determine what airline has the best deal – or if the deals can change even after purchase.  As a result, air travelers are unable to truly comparison shop. \nJust check out the disclaimer on a well-known on-line ticket provider that accompanies a list of fees: \n“The table below shows additional fees that may be added for travel on major US airlines. Please note, this list may not include every fee and may not be 100% accurate. We sincerely apologize for any unforeseen angry muttering at the check-in counter. Also note, the baggage fees below are for one-way economy class flights (double for round-trip flights) for travel within the US. In some instances, these fees also may apply to travel between the US and Puerto Rico, the U.S. Virgin Islands and Canada. And, yes, there will be a test on this later.  Airline fees can be a wily bunch: they change rapidly and can vary by seat assignment, destination, military status, frequent flier status and other exceptions. Also, there are additional fees for overweight or oversized luggage. (Leave the bowling balls at home.) If you’re flying a codeshare itinerary, review the fees for the airline operating the flight. Be sure to double-check the airline websites for full details on additional fees. (Oh, now we tell you.)\"\" http://www.kayak.com/airline-fees\nClear Airfares Act\nSenator Menendez’s Clear Airfares Act requires online airline ticket customers to have access to all ancillary fee information before they purchase a ticket or even enter personal information.  This means providing consumers with a complete and understandable listing of total airfare charges, as well as any other possible fees that may be incurred on the flight (including: baggage, meals, blankets, headsets, changing reservations, changing seats, or extra legroom).  Senator Menendez secured passage in the Senate of the Clear Airfares Act as part of the FAA Reauthorization Bill the last two Congresses.  Unfortunately, the FAA Reauthorization bill did not become law last Congress and has been unable to clear a Conference Committee between the House and Senate this Congress.\nApril 25, 2011 Department of Transportation Rulemaking\nPartially in response to the Clear Airfares Act and a Menendez-led letter to the DOT, earlier this year the US Department of Transportation (USDOT) announced new rules for airlines that will require the full and upfront disclosure of any additional fees on their websites and advertisements.\nToday:  Current Rulemaking\nNow DOT is determining exactly how airlines and ticket agents must disclose fee information.  DOT’s proposed rule is expected early next year.  Senator Menendez and several colleagues wrote to Secretary LaHood today asking that these rules require that all fees are transparent, available at the time of purchase, make every effort to ensure that the fee information is current, and allow for meaningful comparison shopping at all points of sale.\nFull Text of Letter to Lahood\nNovember 23, 2011\nDear Secretary LaHood,\nWe write in regards to the efforts of the Department of Transportation (DOT) to improve the experience of all consumers when purchasing airline tickets.  We support the DOT’s efforts to eliminate confusing, hidden fees that often increase the cost of air travel, and promote a system that is transparent and facilitates total price comparisons.  We also support your efforts to make sure that airlines provide greater accommodations for individuals with disabilities in air travel by requiring them to develop websites that are accessible to individuals with disabilities.  You have made significant strides in these areas as evidenced by your recent supplemental notice of proposed rulemaking and changes that went into effect this past August which mandate airlines disclose all fees for optional services through a prominent link on their websites.  We hope you will continue working to make certain that shopping for a flight online is as easy as shopping for consumer products.\nWe believe that the upcoming rulemaking on airline fee disclosure provides you with a further opportunity to pursue this goal.  As you know, earlier this year the DOT decided to defer its rulemaking for addressing the transparency of fees for optional services because more time was needed to collect information.  In our view, if airlines are going to impose such fees, they should make every effort to make the fees transparent and available at the time of purchase whether online or from a travel agent; make every effort to ensure that the fee information is current; and support meaningful comparison shopping at all points of sale.\nFirst, airline fees must be transparent.  If consumers are expected to pay fees for services that have historically been included in the base fare, then at the very least, they should be informed of all of the fees and their cost before they purchase the ticket.  This would allow the flying public to know the “all-in” price for a flight, including baggage, seating, boarding, as well as taxes and any other fees before they make their purchase. \nSecond, passengers should be able to pay for services that have historically been included in the base fare regardless of when and where they book their ticket.  Passengers often book tickets weeks or even months in advance.  Sometimes these passengers are surprised to find that by the time they actually fly, the fees for core services have increased.  If consumers have the ability to pay for these services at the point of purchase, this no longer becomes an issue.\nThird, airlines must make every effort to keep information on fees up to date.  The DOT’s April order requires airlines to update a list of services at least every 90 days.  Unfortunately, because fees can change more frequently, such a requirement could leave passengers ill-informed about how to compare different flights.  Consumers need real-time information about airline fees in order to make informed choices at the time of purchase.  As we understand it, such up-to-the-minute updates are technologically feasible and achievable.\nFinally, meaningful comparison shopping has become a necessity for most consumers and is central to encouraging and maintaining healthy, meaningful competition.  In determining the actual, final price of a ticket, airlines’ ancillary fees can have a major impact on the overall cost of air travel.  While a base fare comparison or ranking among airlines may provide one perspective for a consumer, different fees on services such as baggage can readily lead to completely different positions for the carriers when determining the total cost of a flight for each customer.  Without disclosure of all costs, consumers may think they are getting the best price when in reality they are not.\nWe thank you for your work and look forward to a rule that will ensure consumers finally have the ability to fairly compare airline ticket prices.\nSincerely,\nRobert Menendez                                                      Charles E. Schumer\nBenjamin L. Cardin                                                    Frank R. Lautenberg\nMaria Cantwell                                                           Barbara Boxer\nRon Wyden                                                               Mark L. Pryor\nMary L. Landrieu                                                        Max Baucus\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4460f40f-b329-49f2-af86-43bc28f3c445,\"Menendez, Hoboken Mayor Endorse Small Business Saturday\n                    \n                      November 21, 2011\n                     Urge Residents to Shop Locally in Holiday Season \nHoboken, N.J. – Today U.S. Senator Robert Menendez (D-NJ) joined Hoboken Mayor Dawn Zimmer, Jorge Silva-Puras,  Regional Administrator for the U.S. Small Business Administration, Women Impacting Public Policy and the New Jersey Association of Women Business Owners (NJAWBO) at “Big Fun Toys” store to promote Small Business Saturday, an event encouraging residents to shop locally for holiday gifts. Small Business Saturday will be held on Saturday, November 26th.\n“The Holiday season is a time for giving, for family and for friends. While shopping for those we love, why not give back to our community family by buying locally?” asked Senator Menendez. “This national initiative emphasizes how important independently-owned stores are to this economy, especially in New Jersey. Small businesses in this state employ more than 1.2 million people and contribute more than $75 billion to New Jersey in wages and earnings, proving that each shop, no matter the size, is helping to improve the local economy. It’s the thought that counts when it comes to gifts, so show you care by supporting your town.”\n“I urge our community to support our small, independent businesses this holiday season and year-round,” said Mayor Dawn Zimmer. “They are the backbone of our local economy and part of what makes Hoboken so vibrant and unique. To help attract customers to our local businesses this holiday season, the City is offering each business $100 worth of free customer parking for our municipal garages.”Small Business Saturday is a national initiative that marks a day to support the local businesses that create jobs, boost the economy and preserve neighborhoods around the country. The Second Annual Small Business Saturday will take place the day after Black Friday.“Senator Menendez's dedication to helping keep and create jobs in New Jersey is key to the state's future,” said Jorge Silva-Puras,  Regional Administrator for the U.S. Small Business Administration.  “His understanding of the dynamics of how small businesses propel job creation is clear as he  champions and supports a variety of legislation that strengthens New Jersey’s small business community and encourages its small business growth and expansion.”\nSenator Menendez was also joined by advocacy organizations, locally represented by Wendy Oliveras, President of the Hudson County New Jersey Association of Women Business Owners.  Women Impacting Public Policy also supports the initiative.\"\"Small Business Saturday is a great way to spread the Shop Small message,\"\" said Barbara Kasoff, President of WIPP.    \"\"On November 26 our attention is turned toward the small businesses that are the backbone of our communities.  They are important not only because they offer unique products and excellent service, but because they make our communities stronger and better places to live.\"\"\nBig Fun Toys, owned by Jenny Robertson, is located at 602 Washington Street. The store has been a part of the Hoboken community since 1953.  To find small businesses in near you and learn more about small business Saturday, please visit my website: menendez.senate.gov/smallbusiness.\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=324bc8ae-900a-4ba6-9718-6b3646bce165,\"Hud Announces 2011 Sustainable Communities Awards\n                    \n                      November 21, 2011\n                     North Jersey grant will impact 13 counties and create jobs, improve housing, transportation and economic vitality of urban and rural regions \n NEW JERSEY – U.S. Department of Housing and Urban Development (HUD) Secretary Shaun Donovan, U.S. Senator Bob Menendez (D-NJ), and Rutgers University President Richard L. McCormick announced a $5 million HUD Sustainable Communities Regional Planning Grant award to the North Jersey Sustainable Communities Consortium. The grant was announced as part of the 2011 Sustainable Communities Grants, totaling close to $96 million. Twenty seven communities and organizations will receive Community Challenge grants and 29 regional areas will receive Regional Planning grants.  The goal of the Sustainable Communities grants is to help communities and regions improve their economic competitiveness by connecting housing with good jobs, quality schools and transportation.   \n“This award demonstrates New Jersey’s leadership when it comes to good planning.  It is an opportunity to create jobs, save taxpayer dollars, reduce families’ household expenditures, and help local communities across the 13 northern New Jersey counties create places of lasting value – where businesses want to invest and families want to live.  Rutgers University, the New Jersey Transportation Planning Authority, and their tremendous set of partners bring the right skills and expertise to the table in order for this effort to be a great success.  Comprehensive, locally directed planning is the blueprint for long-term prosperity and this initiative fits squarely into broader efforts underway to spur economic development, support families when they need it most, and keep the U.S. competitive in the global economy.  This kind of integrated approach makes sense for New Jersey and the country as a whole.” Said Senator Menendez.  “It is gratifying to know that HUD has designated this project worthy of substantial investment, as it demonstrates that Rutgers and the Bloustein School are leaders in developing innovative policies that can be a model for the country.”\n“Our nation’s ability to compete in a global economy and create jobs is dependent upon how quickly and efficiently we can connect our workers and families to education and employment opportunities.” said HUD Secretary Donovan. “This year we are especially proud that we had a particular focus on funding proposals that included more chambers of commerce and economic development corporations as core partners. When half of the working families in the area spend 45% of income in housing and transportation costs alone, we know that we have a responsibility to fix that and to provide housing and transportation options that can improve their quality of life and economic stability,” he added.The North Jersey Sustainable Communities Consortium grant will develop a Regional Plan for Sustainable Development for the 13-county North Jersey Planning Transportation Authority (NJTPA) region. The plan will use sustainability, transit system connectivity and transit-oriented-development as the central framework for integrating plans, regulations, investments, and incentive programs at all levels of government to bring jobs and create more economic development opportunities in the area. The Edward J. Bloustein School of Planning and Public Policy at Rutgers University will serve as the administrative / fiscal agent for the grant. Staff from Rutgers-Bloustein will coordinate the overall business of the Consortium, and oversee the work of the project team.HUD’s Community Challenge Grants aim to reform and reduce barriers to achieving affordable, economically vital and sustainable communities. The funds are awarded to communities, large and small, to address local challenges to integrating transportation and housing. Such efforts may include amending or updating local master plans, zoning codes, and building codes to support private sector investment in mixed-use development, affordable housing and the re-use of older buildings. Other local efforts may include retrofitting main streets to provide safer routes for children and seniors, or preserving affordable housing and local businesses near new transit stations.\nThe Regional Planning Grant program encourages grantees to support regional planning efforts that integrate housing, land-use, economic and workforce development, transportation, and infrastructure developments in a manner that empowers regions to consider how all of these factors work together to create more jobs and economic opportunities. The program will place a priority on partnerships, including the collaboration of arts and culture, philanthropy, and innovative ideas to the regional planning process. Recognizing that areas are in different stages of sustainability planning, HUD has established two categories for the Regional Planning Grant program. The first supports communities that are beginning the conversation about how best to align their housing, transportation, environment, and other infrastructure investments. The second recognizes that some communities have already achieved significant momentum and are prepared to move toward completion and implementation of regional plans for sustainable development.\nAs was the case last year, the demand for both programs far exceeded the available funding.  This year HUD received over $500 million in funding requests from communities in all 50 states, the District of Columbia, and Puerto Rico for the $96 million in available funding. This year’s grants will impact 45.8 million Americans by helping their communities and regions become more efficient and competitive while improving quality of life. Combined with the 87 grants funded last year, this program is providing opportunities for the more than 133 million Americans who live in regions and communities working to shape local plans for how their communities will grow and develop over the next 50 years.  This year’s grantees continue to reflect a diverse group of states, regions and communities that believe in sustainability. Grants were awarded in the states of Arizona, Arkansas, California, Colorado, Connecticut, Florida, Idaho, Illinois, Iowa, Kansas, Louisiana, Maryland, Massachusetts, Michigan, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North Dakota, Oregon, Pennsylvania, Rhode Island, Tennessee, Texas, Vermont, Washington and Wyoming.\nCommunity Challenge Grants and Regional Planning Grants are also significantly complemented and leveraged by local, state and private resources.  This year, HUD’s investment of $95.8 million is garnering $115 million in matching and in-kind contributions – which is over 120% of the Federal investment – from the 56 selected grantees.  This brings to total public and private investment for this round of grants to over $211 million. These grants are part of the Partnership for Sustainable Communities, which is represents an association between HUD, the U.S. Department of Transportation, and the U.S. Environmental Protection Agency to ensure that the agencies’ policies, programs, and funding consider affordable housing, transportation, and environmental protection together. This interagency collaboration gets better results for communities and uses taxpayer money more efficiently. Coordinating federal investments in infrastructure, facilities, and services meets multiple economic, environmental, and community objectives with each dollar spent. The Partnership is helping communities across the country to create more housing choices, make transportation more efficient and reliable, reinforce existing investments, and support vibrant and healthy neighborhoods that attract businesses. “The demand for sustainability grants is very high; we would have needed $500 million to fund all proposals we received this year.” said HUD Office of Sustainable Housing Communities (OSHC) Director, Shelley Poticha. “We are confident that the mix of rural and urban proposals that we selected this year will have a great impact in their communities and will create nearly 2,000 jobs.” For a complete listing of this year’s grantees and their proposals, please visit www.hud.gov/sustainability                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d45f46e0-df68-454f-bd39-417d92f49c3b,\"Amendment Pushes Iran Sanctions in Amendment\n                    \n                      November 18, 2011\n                     WASHINGTON -- Today, U.S. Senator Robert Menendez (D-NJ) introduced an amendment to the National Defense Authorization Act for 2012 that requires the President to determine whether the Central Bank of Iran’s conduct threatens the national security of the United States or its allies as a result of its facilitation and support of activities by the government of Iran to acquire the technology and materials to create a nuclear weapon.  If passed, the amendment will impose sanctions on any foreign financial institutions that engage in significant transactions with the Central Bank of Iran, with the exception of transactions in food, medicine and medical devices.  Menendez was joined by Majority Leader Harry Reid (D-NV), Senators Chuck Schumer (D-NY), Bob Casey (D-PA), Ben Cardin (D-MD),  Sherrod Brown (D-OH), Frank Lautenberg (D-NJ),  Ben Nelson (D-FL) and Kristen Gillibrand (D-NY).  \nIn offering the amendment Menendez said:  “I look forward to continuing to work with the Administration and my colleagues on both sides of the aisle to achieve our shared goals.  One of the greatest – if not the greatest -- threats to the security of our nation and our allies is the concerted effort by the government of Iran to acquire the technology and materials to create a nuclear weapon.  That will alter the balance of power in the Middle East and almost certainly lead to hostilities.  We must do everything in our power to prevent Iran from obtaining a nuclear weapon and this amendment will starve the Iranian regime of the money it needs to achieve its nuclear goals. Simply put, it says that you have a choice – to do business with the United States or to do business with Iran.”\nEarlier today, the International Atomic Energy Agency's 35-nation governing board adopted a resolution admonishing Iran over rising international fears it might be pursuing a nuclear-weapon capability.\n“I am pleased that the IAEA board of governors, including Russia and China, has expressed its deep and increasing concern about the Iranian nuclear program, demonstrating the broad support in the international community to keep up the pressure on the regime and prevent Iran from acquiring a nuclear weapon,” Menendez said about the resolution. The amendment comes a week after the Director-General of the IAEA issued an unprecedented and alarming report, detailing the considerable evidence that the Iranian government is moving toward the capability to develop nuclear weapons and the means to deliver them.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cf5a349a-5f33-4a8c-8c23-1bd350612a03,\"Menendez Praises Extension of FHA Loan Limits\n                    \n                      November 18, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today praised the passage by the House and Senate of a bi-partisan effort to extend for two years the Federal Housing Administration’s maximum insurable loan limits across the country.\n \n “I’m proud to have led this successful bipartisan push with Senator Isakson and gratified to see its passage,” said Menendez.  “The first rule when fixing our housing market should be ‘do no harm.’ The expiration of these limits was harmful to our housing market, as well as our broader economy.  Restoring these limits – at no cost to taxpayers – will increase consumer credit and provide more options for middle class families to buy a home.”\n \n On October 1, 2011, the maximum price of home loans that the FHA could insure fell across the country. The provision secured by Senator Menendez would restore the original FHA limits for an additional two years until December 2013. While some have falsely claimed that this extension will place taxpayers at risk, this extension will not cost taxpayers one dime.  According to the Congressional Budget Office, it will actually save taxpayers $64M over 10 years. It will also extend credit in 625 counties and 42 states across the country for middle-class families. It does not just affect high-cost areas for wealthier families, but also hundreds of counties would have experienced drops in loan limits from the high $300,000’s to only $270,000.  Experts from both sides of the aisle have agreed that due to the weak state of our housing market, this temporary extension is necessary to stabilize housing prices and provide credit for middle-class families.  It will also strengthen the financial health of the Federal Housing Administration because the larger loans default at lower rates than smaller loans.  All 21 counties in the Garden State will see their maximum insurable limits increase by an average of $92,800.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2981921a-d3b9-418d-8925-0079f5a17fa4,\"NJ And NY Senators Announce $15 Million For Gateway Tunnel In Final Transpo Funding Measure\n                    \n                            Funding Will Allow Amtrak to Begin DDesign and Engineering Work on New Trans-Hudson Tunnel Project \n                    \n                      November 18, 2011\n                     WASHINGTON – U.S. Senators Frank R. Lautenberg (D-NJ), Charles E. Schumer (D-NY), Robert Menendez (D-NJ) and Kirsten Gillibrand (D-NY) today announced the joint House and Senate “Minibus” conference report provides a minimum of $15 million for Amtrak to begin design and engineering work on the Gateway Tunnel project. \n \n “Transportation is the lifeblood of New Jersey’s economy, and the Gateway Tunnel will be a critical improvement for commuters in our state and across the region,” said Senator Lautenberg.  “The existing tunnel is more than a century old and not capable of adequately servicing our state’s growing number of commuters.  I’m pleased this bill includes funding to move forward with a new trans-Hudson tunnel that will benefit our commuters and bring real high-speed rail to New Jersey and the Northeast Corridor.” \n \n “Mass transit infrastructure is the fuel of the New York metropolitan region’s economic competitiveness,” Sen. Schumer said.  “We must continue to invest in moving workers, shoppers, tourists, and neighbors from here to there, as efficiently and directly as possible, if we want to maintain our position as the economic powerhouse of the country. These funds will allow Amtrak to cover a gaping hole in our cross Hudson transportation system by creating a new Hudson River crossing.”\n \n “New Jersey’s economic opportunities are being dampened by clogged Hudson River crossings,” Sen. Menendez said.  “this funding allows the Gateway Project to move forward and without a new tunnel we risk continued economic stagnation for the state.”\n \n “Investing in our transportation infrastructure is critical to our nation’s long-term economic viability,” said Sen. Gillibrand, a member of the Senate Environment & Public Works Committee. \"\"There is no doubt, we must expand high speed rail to connect more travelers, workers and businesses, create new construction jobs immediately and provide an economic engine to fuel our growth for the long term by relieving congestion and increasing the reliability of service.”\n \n Increased traffic and congestion into midtown Manhattan threatens the economy of northern New Jersey and the entire region.  The existing 100-year-old rail tunnels into midtown Manhattan are already operating at capacity during rush hour, and ridership is expected to double in the next two decades.\n \n To address these immediate concerns following the cancellation of the ARC Tunnel project, Amtrak expedited plans to build the new trans-Hudson rail tunnels.  In addition to increasing the number of NJ Transit and Amtrak trains into and out of New York, the project will also expand intercity and high-speed rail service on the Northeast Corridor.\n \n The Gateway Tunnel project is expected to increase NJ Transit commuter rail capacity into New York by 65 percent (increase from 20 to 33 trains per hour during peak hours), in addition to adding eight additional Amtrak trains during peak hours. \n \n The legislation will now be sent to the President and is expected to signed immediately. \n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3b02305f-816b-4aae-9049-7e57b23c131d,\"Menendez, Lautenberg Announce $1.5 Million for Clean Fuels in New Jersey\n                    \n                      November 18, 2011\n                     WASHINGTON – US Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced today that the Federal Transit Administration (FTA) has awarded the New Jersey Transit Administration $1.5 million to complete efficiency upgrades to its compressed natural gas fill station in Howell, NJ. \n“Natural gas is cheap and can help us create jobs, lower transportations costs, and reduce air pollution. This is why I’ve made it a priority of mine to boost the use of natural gas as a vehicle fuel,”  said Senator Menendez. \n\"\"I am committed to making sure New Jersey commuters have reliable, efficient, and affordable transit options,\"\"  said Senator Lautenberg, a member of the Transportation, Housing and Urban Development Appropriations Subcommittee, which funds the FTA.  \"\"This grant makes a critical federal investment in clean energy infrastructure that will help lower costs and improve service for workers and families around the state.\"\"\n \n Senator Robert Menendez (D-NJ), together with the Majority Leader Harry Reid (D-NV) and Senator Richard Burr (R-NC) announced the introduction of the New Alternative Transportation to Give Americans Solutions (NAT GAS) Act of 2011, legislation that would boost domestic production of vehicles that run on clean natural gas. The bill would be fully paid for by a temporary user fee on natural gas used as a vehicle fuel.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6a01f023-03d6-48cb-a90c-8861691cb562,\"Gillibrand, McCain, Lieberman, Bipartisan Group of Senators Urge Strong Resolution On Iran at Tomorrow's IAEA Board of Governors Meeting\n                    \n                      November 17, 2011\n                     Washington D.C. - Senators Kirsten Gillibrand (D-NY), John McCain (R-AZ), Joseph I. Lieberman (I-CT), Robert Menendez (D-NJ), Mark Kirk (R-IL), Bob Casey, Jr. (D-PA), and Marco Rubio (R-FL) released their bipartisan letter sent to President Obama today, urging the United States to seek a strong resolution concerning Iran when the International Atomic Energy Agency (IAEA) Board of Governors convenes in Vienna tomorrow.\n \n The letter comes less than a week after the Director-General of the IAEA issued an unprecedented and alarming report, detailing the considerable evidence that the Iranian government is moving toward the capability to develop nuclear weapons and the means to deliver them.\n \n “We appreciate that there will, as always, be opposition in some quarters to a strong resolution at the IAEA Board of Governors,” wrote the Senators. “Securing such a resolution is therefore an important test of U.S. leadership and resolve at this vital juncture. We also firmly believe that a weakened resolution, as some governments will undoubtedly press for, would be profoundly counterproductive to our broader effort to stop Iran's dangerous and destabilizing nuclear drive -- dispiriting our friends and emboldening the regime in Tehran.”\n \n The full letter sent to President Obama from the bipartisan group of 7 Senators is below.\n \n The President\n \nThe White House\n \n1600 Pennsylvania Avenue N.W.\n \nWashington, DC 20500\n \n Dear Mr. President:\n \n As you know, last week the Director-General of the International Atomic Energy Agency (IAEA) issued an unprecedented and alarming report, detailing the considerable evidence that the Iranian government wants to be able to develop nuclear weapons and the means to deliver them. \n \n This damning indictment of the Iranian government's deceptive and illicit conduct, by an impartial international agency, provides a critical but fleeting basis for the United States to rally the international community to impose new and crippling forms of pressure on Iran -- beginning when the IAEA Board of Governors convenes later this week. We write today, therefore, to express our strong conviction that the United States, together with our European allies, should work to ensure that the Board of Governors adopts a strong and principled resolution that both recognizes and amplifies the IAEA report. \n \n We appreciate that there will, as always, be opposition in some quarters to a strong resolution at the IAEA Board of Governors. Securing such a resolution is therefore an important test of U.S. leadership and resolve at this vital juncture. We also firmly believe that a weakened resolution, as some governments will undoubtedly press for, would be profoundly counterproductive to our broader effort to stop Iran's dangerous and destabilizing nuclear drive -- dispiriting our friends and emboldening the regime in Tehran. \n \n We thank you for your leadership on this matter. \n \n                                                             Sincerely,\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1d73353c-fcde-4d5b-9d4d-4cdc90966fca,\"Menendez Announces COPS Funding Secured \n                    \n                            Final Spending Bill including funding for police, crime fighting heads to President’s desk \n                    \n                      November 17, 2011\n                     Washington – Overcoming an effort by U.S. House Republicans to kill the popular program, U.S. Senator Robert Menendez (D-NJ) today announced that $166 million in federal funding has been secured for the Community Oriented Policing Services Hiring (COPS) Program. The program, which provides competitive grants to help local police departments hire and keep officers on the job, was de-funded by Republicans in the House of Representatives earlier this year, while the Senate provided $200 million.  As a group of House and Senate members negotiated the final Justice Department spending bill, Menendez had kept up the fight to ensure that funding for the community policing and crime fighting programs would continue.\n \n\n “While it defies reason, Republicans in the House tried to kill funding for COPS,” said Senator Menendez. “We could not let that happen.  Nothing is more important than the people’s safety, and that’s why I fought so hard to restore as much funding as possible for this incredibly popular – and effective – program.  New Jersey communities have had to lay off hundreds of police officers because of dwindling local resources and every dollar we can provide will bolster their community policing efforts.”\n\n \nMenendez also announced $470 million for the Byrne Justice Assistance Grant (JAG) program which allows states and municipalities to engage in a variety of crime prevention activities based on their own state and local needs. JAG funds are used for area initiatives, technical assistance, training, personnel, equipment, supplies, and information systems for criminal justice.\nThe $166 million in COPS funding and $470 million in Byrne (JAG) funding included in the final Justice Department spending bill was passed by the House and Senate today and will head to the President’s desk for signature.\n \nMore than 700 police officers were let go in New Jersey just this year and there are 4,000 fewer officers today in New Jersey than there were at the end of 2009.  In October, 12 communities in New Jersey received a total of $20.8 million to hire and support 78 officers for the next three years.  More than 150 New Jersey localities had applied for the COPS grants.\n \nEarlier this week, Menendez and Congressman Pascrell travelled to Clifton, NJ for a press conference with the Mayor and Chief of Police to underscore the local need for funding to hire police officers.\n \nEarlier this year, the House appropriations bill for fiscal year 2012 did not fund the COPS office at all.  The U.S. Senate appropriations bill funded the COPS hiring grants at $200 million.  Last week, Menendez led a letter to House and Senate negotiators calling for the funding of the COPS and Byrne (JAG) programs at the highest levels possible.\n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2add78f7-6d39-4072-8d4e-cbfedc9607de,\"Menendez Introduces Legislation to Create Uniformity, Strengthen State Child Abuse Reporting Laws \n                    \n                      November 16, 2011\n                     WASHINGTON -- U.S. Senator Robert Menendez (D-NJ) introduced today the Child Abuse Reporting Enforcement (CARE) Act which would require states to mandate the reporting of child abuse to law enforcement and child protective services in order to receive federal social services funding, and to make it a felony for any individual who fails to report such abuse.\n \n\n “If common sense doesn’t dictate when and to whom an adult should report child abuse, this law will,”  said Menendez.   “The bottom line is simple:  If you see something, say something.”  \n\nThe goal of the Menendez legislation is to create consistency among state child abuse reporting laws.   The Senator’s bill would require a penalty of at least a year in prison and would specify that all witnesses report abuse to the law enforcement authorities and child protective services.  Recent events surrounding child abuse allegations at Penn State University underscored the lack of uniformity in child abuse reporting laws among states.  According to the U.S. Department of Health and Human Services (HHS), 18 states require that any person who witnesses child abuse report it while many states specify that only certain professionals report abuse.  Inconsistent state laws create confusion leading to a failure to report abuse.\n \n In New Jersey,  any person with information about child abuse is required to report that information to the Division of Youth and Family Services. Failure to report abuse is an offense punishable by up to six months imprisonment. According to the Commonwealth of Pennsylvania code, Pennsylvania requires that the staff of a medical or other public or private institution, school, facility or agency must immediately notify the person in charge of the relevant institution, who ultimately has the responsibility to report the alleged incident to government authorities.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2e38cdae-71e8-4d09-981e-668e8e968fa1,\"Menendez, Reid, Rubio, Becerra and Ros-Lehtinen Introduce Legislation to Authorize American Latino Museum on the National Mall\n                    \n                      November 15, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ), Majority Leader Reid (D-NV), US Senator Marco Rubio (R-FL), US Representative Xavier Becerra (D-CA) and US Representative Ileana Ros-Lehtinen (R-FL) today introduced bipartisan legislation in the Senate and House of Representatives to authorize the Smithsonian’s Arts and Industries building on the National Mall as the designated location of the Smithsonian American Latino Museum.  The authorization of the museum follows the recommendations of the May 2011 report of the bipartisan Commission to Study the Potential Creation of the National Museum of American Latino, a Commission that was established by law in 2008.\n \n Senator Menendez said: “With this legislation we continue moving forward with the creation of national museum that honors the countless political, cultural, and economic contributions of the Latino community. One step at a time, we are bringing to fruition a long overdue project to honor and document the influence American Latinos have had in weaving the cultural and historical fabric of American life throughout our nation’s history. A Museum of the American Latino would officially acknowledge that the success of this country could not have been accomplished without the achievements of Hispanic Americans. I applaud the Commission’s work, and look forward to continue working with my colleagues in the Senate to make this museum a reality.”\n \n Senator Reid said: “A museum honoring the contributions of Americans of Hispanic descent has been long overdue. This bill brings it one step closer to reality. The influence of Hispanic Americans in Nevada, who represent a quarter of our state’s population, is reflected everywhere: from the name, which refers to the snow-capped mountain peaks of our beautiful Sierra, to its businesses, classrooms and work places. I commend the National Museum of the American Latino Commission for its report to Congress and thank Sen. Menendez for his steadfast leadership on this issue. I look forward to working closely with my colleagues toward the realization of an institution that illustrates the legacy, culture, history and contributions of the American Latino in the United States.”\n \n Senator Rubio said: “Authorizing the use of federal land on the National Mall is an important step in laying the ground work to establish the American Latino Museum.  This will be an enduring monument to people who have found opportunity and refuge in America and strengthened her in return, while also serving as a tribute to this exceptional country which welcomes people and helps them realize their dreams like no other place has ever done in all of human history. At a time when our nation faces major economic and fiscal challenges, I am pleased that this effort will not rely on taxpayer dollars and that this bill will encourage private fundraising efforts to make it a reality.\"\"\n \n Congressman Becerra said: “Over the past eighteen years the call has grown stronger and stronger to establish such a museum on our National Mall that shares the rich and full story of what it means to be an American,” said Rep. Xavier Becerra (CA-31). “Today marks a key moment in our effort to ensure that the contributions of Americans of Latino descent receive the respect and recognition earned by a patriotic community of Americans who have served this nation since its inception and now number over 50 million. I look forward to working with my colleagues to pass this bill and to supporting the Smithsonian Institution in an important new chapter of its work to increase understanding of the American experience.”\n \n Congresswoman Ros-Lehtinen said: “This legislation brings us one step closer to realizing an American Latino Museum.  The experience of Hispanic Americans is part of the American story.  Their successes and triumphs helped fuel this nation’s rise and will continue to contribute to our country’s greatness.  Having the museum be part of the Smithsonian family underscores this reality.  I look forward to working with my congressional colleagues to make this museum a reality.”\n \n PDF OF THE LEGISLATION: http://menendez.senate.gov/download/?id=db458084-8e30-4d39-bc31-311cd2d5eda4\n \nSUMMARY OF THE LEGISLATION\n \n \n \nThe Smithsonian American Latino Museum Act\n \nSummary\n \n Following the work of the bipartisan Commission to Study the Potential Creation of a National Museum of the American Latino, a Commission established by law on May 8, 2008, Senators Menendez and Reid are introducing legislation that would authorize the Arts and Industries building of the Smithsonian Institution as the designated location of the Smithsonian American Latino Museum.\n \n This museum has widespread support from the Hispanic community across the nation, and would tell all Americans the story of American Latinos, who have contributed to the political, social, cultural and economic vitality of the United States since the founding of this nation. \n \n Site Designation: The bill designates the Arts and Industries Building (AIB) as the location of the museum, including an annex that would be constructed underground and adjacent to the AIB.  The bill requires that the planning, design and construction of the museum be harmonious with open space and visual sightlines of the National Mall. \n \n Site Development: The legislation gives the Board of Regents 18 months to conduct a plan of action study to determine the best way to plan, design, fund and construct the Museum of the American Latino, taking into account the Commission’s report.\n \n Funding: As written, the bill simply authorizes a site to allow for private fundraising to begin for the planning, designing and construction of the museum.\n \n  \n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d478d932-e3a2-4602-a4d6-e4aafac271e9,\"Menendez, Reid And Burr Introduce Fully Paid For Nat Gas Act \n                    \n                            Bill Promotes Cleaner, Domestically Fueled Natural Gas Vehicles\n                    \n                      November 15, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), Majority Leader Harry Reid (D-NV) and Senator Richard Burr (R-NC) announced the introduction of the New Alternative Transportation to Give Americans Solutions (NAT GAS) Act of 2011, legislation that would boost domestic production of vehicles that run on clean natural gas. The bill would extend tax credits for natural gas vehicles and building refueling infrastructure, and be fully paid for by a temporary user fee on natural gas used as a vehicle fuel.\n“Natural gas is cheap and abundant here in America.  Instead of exporting this fuel abroad we should be using it right here to displace oil,” said Menendez. “This bipartisan bill will create jobs, help lower transportation costs, lower pollution in urban areas, make us more energy secure, and do so without adding one dime to the deficit.”\n \n“Creating clean-energy jobs and reducing our dependence on foreign oil is an economic and national security imperative,” said Majority Leader Reid.   “We cannot afford to continue spending hundreds of billions of dollars a year to buy oil from foreign countries, many of which are unfriendly to the United States. This bill will create over one million jobs by accelerating the development of clean alternative vehicles and fuels here at home, and make our nation more secure.” \n \n“This bill will increase our nation’s energy independence and help free us from our over-reliance on foreign oil,” said Richard Burr (R-NC).  “Energy independence plays a vital role in America’s national security, and this bill represents a step in the right direction towards decreasing our dependence on imported energy sources.”\n \nCurrently there are nearly 14 million natural gas vehicles in the world, but only about 117,000 in the United States. [EIA, 2011]  It is estimated that the NAT GAS Act of 2011 will jumpstart the industry and in ten years add over 700,000 NGVs to our roads.  In addition it is estimated that the bill will displace over 20 billion gallons of fuel and create over 1 million direct and indirect jobs.\n \n Natural Gas is Plentiful\n \nNorth America’s natural gas resources discoveries have increased by more than 1,800 trillion cubic feet (Tcf) over the past three years, bringing the total natural gas resource base to more than 3,000 Tcf.  With U.S. natural gas demand at about 23.5 Tcf per year, this resource could supply current consumption for over 100 years. [Fueling North America’s Energy Future, p. ES-4]\n \n \n \nNatural Gas Is Cheap\n \n \n \nAt the pump, on average, CNG sells  for  $2.33 per gasoline gallon equivalent while gasoline sells for $3.46 [DOE Clean Cities Price Report, p. 3].  LNG, which competes primarily with diesel fuel, currently is selling for $2.25 per diesel gallon equivalent while diesel sells for $3.81 per gallon.  [Id., p. 6 n.6]\n \n We Have To Decide: Do We Use It Here Or Export It?\n \n If we do not use our natural gas here in America, it will be exported abroad, for other’s benefit.  The price of natural gas internationally is significantly higher than it is here in the United States.  As a result one facility recently received a permit to export natural gas and four more U.S. facilities are following suit.  [Testimony of Deputy Assistant Secretary for Oil & Natural Gas Mr. Chris Smith, 11/8/11]  We can use that natural gas here in the United States to displace oil or we can export it, so other countries can improve their own energy security and clean their air.\n \n SUMMARY OF LEGISLATION:\n \n Summary \n \nNew Alternative Transportation to Give Americans Solutions Act (NAT GAS ACT) of 2011\n \n \n \nTITLE I—PROMOTE THE PURCHASE AND USE OF NGVS WITH AN\n \nEMPHASIS ON HEAVY-DUTY VEHICLES AND FLEET VEHICLES\n \n Sec. 101          Extension and modification of new qualified alternative fuel motor vehicle credit.\n \n \n \nThere currently are no federal tax credits to encourage the purchase of new natural gas vehicles, or to encourage the conversion of existing petroleum-fueled vehicles to operate on natural gas.  Previous tax credits, located in 26 USC 30B, intended to encourage such purchases expired on 12/31/2010.  This provision would reinstate the expired credits and extend the incentive through the end of 2016.\n \n \n \nSec. 102          Allowance of vehicle and infrastructure credits against regular and minimum tax and transferability of credits.\n \n The alternative minimum tax provisions in the tax code limit the usability of natural gas fueling infrastructure (IRC, 30C) and natural gas vehicle (IRC, 30B) tax credits.  Most business and individual tax credits may only be applied to reduce regular taxes -- not minimum taxes.  This section would allow the tax credits to be applied against a taxpayers minimum tax.\n \n The transferability provision similarly is intended to enhance the utility of the fueling infrastructure and vehicle tax credits in cases where the taxpayer who would otherwise benefit from the credit is unable to do so because of insufficient tax liability.  Under IRC 30B and 30C, the tax credit benefit goes to the buyer.  For leased fueling infrastructure or vehicles, the credit goes to the lessor (i.e., leasing company).  For sales to tax exempt entities, the tax code treats the seller as if they placed the fueling infrastructure or vehicle in service and allows the seller to claim the tax credit, but only if they disclose the value of the tax credit to the purchaser. \n \n \n \nThe transferability provision in this bill allows the claimant to transfer the credit if they cannot benefit from it, allowing the taxpayer to transfer the credit to the seller, manufacturer or lessee (in cases involving leases). \n \n Sec. 103          Modification of credit for purchase of vehicles fueled by compressed natural gas or liquefied natural gas.\n \n \n \nThe previous tax credits for natural gas vehicles found in IRC 30B only encouraged the acquisition of dedicated natural gas vehicles.  Some heavy-duty dual-fuel or mixed-fueled vehicles qualified for the tax credits but in general dual-fuel and bi-fuel vehicles did not qualify for the federal tax credits.  Also, the value of the tax credits was tied to the incremental cost of such vehicles and the credit values were capped according to weight with the maximum tax credit values allowed under the law ranging from $2,500 to $32,000.  As described below, this bill increases these dollar amounts.\n \n Under this bill, all new dedicated natural gas vehicles and certain bi-fuel and dual-fuel alternative natural gas vehicles would be eligible for a credit equal to 80 % of the incremental cost up to a maximum tax credit amount or cap.  To qualify for the maximum credit of 80%, a bi-fuel natural gas vehicle must be capable of operating a minimum of 85 percent of its total range on compressed or liquefied natural gas.  Dual-fuel natural gas vehicles qualify for the maximum tax credit allowed if the vehicle is capable of operating on a mixture of no less 90 percent compressed or liquefied natural gas and no more than 10% gasoline or diesel.  All other new or converted natural gas vehicles are eligible for a credit equal to 50% of the incremental cost up to a credit cap.  The maximum value of the tax credits provided would be capped and would range depending on the weight of the vehicle as shown below:\n \n NGV   Eligible Weight Categories \n \n\nMax.   Allowable Tax Credit  \n\n\nLight   Duty, less than 8,501 lbs. \n\n\n$7,500.00\n\n\nMedium   Duty, 8,501 - 14,000 lbs.\n\n\n$16,000.00\n\n\nHeavy   Duty 14,000 - 26,000 lbs. \n\n\n$40,000.00\n\n\nHeavy   Duty 26,001 & up lbs. \n\n\n$64,000.00\n\n \n Sec. 104          Modification of definition of new qualified alternative fuel motor vehicle.\n \n \n \nThis section modifies the definition of new qualified alternative fuel motor vehicles so that in addition to dedicated alternative fueled vehicle that are only capable of operating on an alternative fuel, IRC 30B now also includes bi-fuel natural gas vehicles, and a dual-fuel natural gas vehicle.  For purposes of IRC 30B, this section defines bi-fuel vehicles as a vehicle that is capable of operating on compressed or liquefied natural gas and gasoline or diesel fuel. Dual-fuel vehicles are defined as vehicles that are capable of operating on a mixture of compressed or liquefied natural gas and gasoline or diesel fuel.  This section also clarifies that converted or repowered vehicles shall be treated as new vehicles for the purposes of this section. \n \n Sec. 105          Providing for the treatment of property purchased by Indian tribal governments.\n \n The tax credits found in IRC 30B and 30C currently benefit certain tax exempt entities by treating the seller to such entities as if they placed the vehicle or fueling infrastructure into service and thus allowing the seller to claim the tax credit.  However, this section does not specifically include sales to Indian Tribal Governments and therefore Indian Tribes do not receive any potential benefit from this provision.  The provision relating to sales to tax exempt entities is intended to give the seller a tax benefit with the idea that some of the tax benefit will be passed along to the purchaser in the form a lower price.  Therefore, this bill amends IRC 30B and 30C to clearly identify Indian Tribal Governments along with other tax exempt entities. \n \n \n \n  \n \nTITLE II—    PROMOTE PRODUCTION OF NGVS BY ORIGINAL\n \nEQUIPMENT MANUFACTURERS\n \n \n \nSec. 201          Credit for producing vehicles fueled by natural gas or liquefied natural\n \ngas.\n \n To encourage manufacturers to offer a greater variety of new NGVs -- and in particular light duty NGVs, this section creates a new production tax credit in section 45S of the IRC.  The tax credit is valued at the lesser of 10 percent of basis of the new natural gas powered motor vehicle or $4,000.  The maximum aggregate amount that can be claimed by an individual manufacturer is $200 million.  \n \n Sec. 202          Additional vehicles qualifying for the advanced technology vehicles\n \nmanufacturing incentive program.\n \n EISA 2007, Section 136 (42 USC 17013) contains the Advanced Technology Vehicle Loan Program administered by the Department of Energy’s Loan Programs Office.  The Advanced Technology Vehicles Manufacturing (ATVM) Loan Program supports the development of innovative, advanced automotive technologies.  The program emphasizes modifications to production facilities that are related to producing more fuel efficient vehicles. Currently, only one NGV manufacturer has been awarded a loan under this program.  DOE has never issued definitive guidance concerning the ability of NGVs to qualify for this loan program.  However, it appears that dedicated NGVs do qualify.  To ensure that other NGV manufacturers qualify for this program, this section amends the statute so that the advanced technology vehicles specifically includes dedicated, bi-fuel and dual-fuel natural gas powered vehicles.  The amendment also opens up this program to manufacturers of medium- or heavy-duty NGVs as well as bus manufacturers. \n \n TITLE III—INCENTIVIZE THE INSTALLATION OF NATURAL GAS\n \nFUEL PUMPS\n \n \n \nSec. 301          Extension and modification of alternative fuel vehicle refueling property\n \ncredit.\n \n \n \nThe tax credit for natural gas fueling infrastructure located in IRC 30C currently expires at the end of 2011.  This bill extends the tax credit for qualified natural gas vehicle refueling property until the end of 2016.\n \n Sec. 302          Increase in credit for certain alternative fuel vehicle refueling properties.\n \n \n \nUnder current law, IRC 30C, a taxpayer who acquires natural gas refueling property qualifies for an income tax credit equal to the lesser of $30,000 or 30% of cost of the property, or $1,000 for home refueling units.  This bill increases the value of the tax credits so that new natural gas fueling equipment that is depreciable property would qualify for a tax credit equal to the lesser of $100,000 or 50% of the cost of the property, or $2,000 for fueling property that is acquired by a taxpayer but is not depreciable.   \n \n TITLE IV—NATURAL GAS VEHICLES\n \n \n \nSec. 401          Grants for natural gas vehicles research and development.\n \n \n \nThis section directs the Secretary of DOE to provide funding for RD&D to improve NGV performance and efficiency and to integrate natural gas engines into additional on-road vehicles.\n \n \n \nSec. 402          Sense of the Congress regarding EPA certification of NGV retrofit\n \nkits.\n \nIn April 2011, the U.S. Environmental Protection Agency (EPA) published new regulations for aftermarket manufacturers of clean alternative fuel conversion systems.  The purpose of the new rules is to alleviate some of the onerous burdens associated with certifying such systems and also to provide greater regulatory certainty with regard to the treatment of systems intended to be used on older vehicles and vehicles whose emission systems have exceeded their useful life.  The rules are promising, but new so their impact as yet is not clear.  Therefore, this bill expresses the desire that the EPA continue to review its regulations and the impact they have on alternative fuel aftermarket conversion systems in order to determine if additional changes are necessary.   \n \nSec. 403          Amendment to section 508 of the Energy Policy Act of 1992.\n \n The current federal law governing certain fleet acquisitions of alternative fueled vehicles (AFVs) requires that these AFVs be newly acquired in order to satisfy the acquisition credits. These requirements were first enacted as part of the Energy Policy Act of 1992 and are still in effect today.  Under rules issued by the U.S. Department of Energy, state government fleets and covered alternative fuel providers must:  1) buy a brand new AFV; 2) purchase a used AFV from someone else; or 3) buy a vehicle and have it converted within four months of acquisition.   The third option is too narrow and does not allow most conversions or repowering of older vehicles to earn credits or count against the program’s acquisition requirements. This is particularly problematic for repowering because fleets do not repower vehicles within four months of purchase.  The bill therefore directs DOE to provide credits to state government fleets and covered fuel providers even if they convert or repower vehicles even if this does not occur within four months of acquiring the vehicle.  The provision also directs DOE to issue similar rules with respect to conversions or repowers undertaken by federal government fleets.\n \n TITLE V—TRANSIT SYSTEMS\n \n \nSec. 501          Federal share of costs for equipment for compliance with Clean Air Act.\n \n Under current law, the federal share for transit bus purchases is 80 percent of the cost.  However, federal law provides 90 percent of the net cost associated with complying with Clean Air Act requirements or the Americans with Disabilities Act.  In order to further encourage such purchases and help local jurisdictions, this bill would amend federal law to provide that the federal cost share is 100 percent of the net (i.e., incremental) cost of acquiring new, clean fuel or alternative fuel buses for amounts not to exceed a net cost of $75,000.  If the net cost is more than $75,000, the federal cost-share would remain at 90 percent.       \n \n \n \nSec. 502          Natural gas transit infrastructure investment.\n \n \n \nThe bill includes a new program to encourage the development of natural gas fueling infrastructure for transit agencies.  This program would assist transit agencies in installing natural gas fueling infrastructure or expanding existing natural gas fueling infrastructure, and would authorize funding of up to $100 million dollars to be competitively awarded by the Federal Transit Administration.  In awarding grants under this program, the FTA shall take into consideration the amount of petroleum to be reduced by the project, the level of local financial support, and the technical and economical feasibility of the project. \n \n \n \nTITLE VI—USER FEES\n \n \n \nSec. 601          User fees.\n \nTo offset the cost of this bill, this section would impose a new and time-limited user fee on the sale of liquefied natural gas and compressed natural gas sold for use as a motor vehicle fuel.  The fee would be separate from the excise tax imposed on CNG and LNG.  The fee schedule would be phased-in starting in 2014 and would run through 2021 after which time it would expire.  The user fee will not apply to those who refuel at home.  The fee schedule is as follows:\n \n \nNothing for 2012 and 2013; \n2.5 cents for 2014 and 2015;\n5 cents for 2016 and 2017;\n10 cents for 2018 and 2019; \n12.5 cents for 2020 and 2021;\nNothing for 2022 and thereafter.\n \n \n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7f203077-7bf4-49ab-a950-36b5a3cae0b9,\"Menendez Legislation Aims to Create Uniformity, Strengthen State Child Abuse Reporting Laws \n                    \n                      November 15, 2011\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) announced today that he plans to introduce the Child Abuse Reporting Enforcement (CARE) Act that would require states to mandate the reporting of child abuse to law enforcement and child protective services in order to receive federal social services funding, and to make it a felony for any individual who fails to report such abuse. \n“If common sense doesn’t dictate when and to whom an adult should report child abuse, this law will,”  said Menendez.   “The bottom line is simple:  If you see something, say something.”  \nThe goal of the Menendez legislation is to create consistency among state child abuse reporting laws.   The Senator’s bill would require a penalty of at least a year in prison and would specify that all witnesses report abuse to the law enforcement authorities and child protective services.  Recent events surrounding child abuse allegations at Penn State University underscored the lack of uniformity in child abuse reporting laws among states.  \nAccording to the U.S. Department of Health and Human Services (HHS), failure to report child abuse is a misdemeanor in 39 states, and in 3 states, failure to report child abuse is a felony.  Of those states, only 20 specify the penalties associated with failing to report.  18 states require that any person who witnesses child abuse report it while many states specify only certain professionals.  HHS also reports that 17 states require reporting specifically to law enforcement.  This inconsistency creates confusion about mandatory reporting requirements that can lead to tragic consequences for children.\nIn New Jersey,  any person with information about child abuse is required to report that information to the Division of Youth and Family Services. Failure to report abuse is an offense punishable by up to six months imprisonment. According to the Commonwealth of Pennsylvania code, Pennsylvania requires that the staff of a medical or other public or private institution, school, facility or agency must immediately notify the person in charge of the relevant institution, who ultimately has the responsibility to report the alleged incident to government authorities.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c8f9c46b-756a-4448-a5bd-5008c55acb1c,\"Menendez, Pascrell Continue to Fight for Community Policing Funding \n                    \n                            COPS program essential in policing and crime fighting in New Jersey communities  \n                    \n                      November 14, 2011\n                     Clifton, NJ – U.S. Senator Robert Menendez and Congressman Bill Pascrell today visited Clifton, New Jersey, to continue their fight to keep federal funding for local community policing efforts.   The Community Oriented Policing Services Hiring (COPS) Program, which provides competitive grants to help local police departments hire and keep officers on the job, was zeroed out – de-funded – by Republicans in the House of Representatives, while the Senate provided $200 million.  As a result, a group of House and Senate members are this week charged with finalizing the Justice Department’s spending bill.  Menendez and Pascrell are leading an effort to ensure funding for police is restored in the final spending measure.\n \n  “Here’s what I know:  At a time of great economic uncertainty, cities and towns across my home state of New Jersey have been forced to furlough or lay off hundreds of police officers, making our communities less safe,” said Menendez.  “The need is real and the COPS program works.  It puts more officers on the streets, keeping us safe.  This should be a no-brainer – we must provide as much support possible for this locally driven program, period.”\n \n“Fewer cops on the beat means more crime on our streets. The federal government needs to step in and help municipalities like Clifton, which are suffering through no fault of their own,” said Pascrell, a member of the House Ways and Means Committee and House Budget Committee. “I hope that later this week we’ll have the chance to do the right thing and continue to support this vital program.”\n \n More than 700 police officers were let go in New Jersey just this year and there are 4,000 fewer officers today in New Jersey than there were at the end of 2009.  In October, 12 communities in New Jersey received a total of $20.8 million to hire and support 78 officers for the next three years.  More than 150 New Jersey localities had applied for the COPS grants. \n \n Menendez and Pascrell were joined by Clifton Mayor James Anzaldi and Police Chief Gary Giardina at the Clifton Police Department for the press conference.  Clifton applied for COPS funding this year but did not receive a grant because of the overwhelming need nationwide.  While the Clifton Police Department has not been forced to lay off any officers due to the current economic downturn, economic pressures have forced it to thin its ranks through retirements. The department currently has 142 officers, down from 153.  Since 1995, Clifton has received $1,275,000 in COPS funding allowing them to hire 15 officers.\n \n A report released last month by the U.S Department of Justice’s COPS office revealed that nearly 12,000 law enforcement officers will lose their jobs this year alone. Another 30,000 positions remain unfilled, and 2011 could produce the first national decline in law enforcement officer positions in the last 25 years.\n \n Earlier this year, the House appropriations bill for fiscal year 2012 did not fund the COPS office at all.  The U.S. Senate appropriations bill funded the COPS office at $232 million with $200 million for COPS hiring. On November 3, House Democrats offered motion to instruct House negotiators to insist on funding the COPS program at the level set in the Senate appropriations bill. The motion passed with a vote of 265 – 160, with 79 Republicans voting in support of the motion.   Later last week, Menendez led a letter to House and Senate negotiators calling also for the funding of the COPS program at levels set by the Senate.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5e812724-556b-46b2-a8e7-b68a0df7ec82,\"Menendez Applauds Defeat of Anti-Environment, Pro-Polluter Resolution \n                    \n                            Senate Votes Down Republican Resolution to end Administration’s Efforts to Protect Down Wind States Like New Jersey from  Toxic Power Plant Pollution\n                    \n                      November 10, 2011\n                     Washington DC – Following remarks on the Senate floor in support of the Cross-State Air Pollution Rule, U.S. Senator Robert Menendez (D-NJ) today applauded the defeat of a Republican led effort to repeal safeguards which  protect down-wind states like New Jersey from toxic power plant pollution. The Senate defeated the Republican measure by a 56-41vote. “In defeating this pro-polluter resolution, the Senate today voted for saving 34,000 lives per year, $120 billion in economic benefits, cleaner air, and our children’s health,” said Menendez.  \n \nNew Jersey is one of the states more directly impacted from polluters to its west. The Cross-State Air Pollution rule is supported by the NJ Chamber of Commerce and the state’s largest utility, PSE&G. It would:\n \n·         save over 1,200 lives per year in New Jersey starting in 2014\n \n·         save up to 34,000 lives, prevent 400,000 asthma attacks, and avoid 1.8 million lost work or sick days per year nationally;\n \n·         create economic benefits that are estimated to be between $120 billion and $280 billion each year.\n \nLast week, Senator Menendez urged New Jersey Governor Christie to join colleagues from other Mid-Atlantic and Northeastern states in defending the Cross-State Air pollution rule. Christie announced his decision to appeal a federal court ruling on a polluting Pennsylvania Power plant, but the NJ Governor still has not come out in support of the Cross-State Air pollution rule.\n \nFULL TEXT OF REMARKS AS PREPARED FOR DELIVERY\n \n M. President, I rise today in support of the Cross-State Air Pollution Rule that protects down-wind eastern-states like New Jersey from up-wind power plant pollution.\n \nI rise in defense of the lives and breathable-air of the people of New Jersey. Last week I asked the governor of my state to join this fight.\n \n After all, this rule is supported by the New Jersey Chamber of Commerce and our largest utility because it’s good for business.  They know it’s only fair to level the playing field for New Jersey businesses since we have already substantially cleaned-up our electric generation facilities.  And the rule is supported by just about everyone in the public health community because it will save an estimated 1,200 lives per year in New Jersey beginning in 2014. Nationally it will save up to 34,000 lives, prevent 400,000 asthma attacks, and avoid 1.8 million lost sick days per year starting in 2014.  And the economic benefits of this rule are estimated to reach anywhere from $120 billion to $280 billion each year.\n \n M. President, we are all focused like a laser on the economy, on jobs, on reducing deficits and looking at the bottom line, but this rule does not force that choice. It’s a good rule for the economy. It’s a good rule for the health and well-being of Americans down-wind from the toxic emissions of power plants.\n \n Let us be clear, M. President, coal power plants enjoy an enormous subsidy that we are trying to repeal with this rule.  These polluters can prematurely end 34,000 lives per year and not have to pay anything for that loss. To put 34,000 lives in perspective, that is almost as many American lives as are claimed by breast cancer every year. \n \nSo, I ask my colleagues to join me in voting against the Paul resolution and vote for saving 34,000 lives per year, vote for over $120 billion in economic benefits, vote for cleaner air, and vote for keeping our children healthy.  It is time for us all to see this disapproval resolution for what it is.  A pass for polluting industries that make us sick without paying for the costs that creates.  Please join me in defeating this shortsighted resolution.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cec6be14-0817-454e-9235-7eb509f875f4,\"Menendez Celebrates Passage of Bill to Put American Veterans Back to Work\n                    \n                            Bi-partisan VOW to Hire Heroes Act of 2011 receives unanimous support in Senate\n                    \n                      November 10, 2011\n                     WASHINGTON -  U.S. Senator Robert Menendez (D-NJ) today announced the  passage of legislation in a vote 95-0 he co-sponsored to help New Jersey’s veterans get back to work.  The “VOW to Hire Heroes Act of 2011” combines components in the President’s American Jobs Act and additional initiatives to boost employment opportunities for veterans.  In New Jersey, unemployment among veterans stands at 12 percent.  Yesterday, the Senator sent a recorded video message to New Jerseyans in honor of Veterans’ Day in which he spoke about the importance of connecting our veterans to jobs and economic opportunity. \n \n\n“The men and women who fight for this country are true heroes, and they should be treated as such long after their active duty comes to an end. This bill expands job opportunities and job training for those men and women in uniform returning home and those already home,” said Menendez.   “The passage of this bill is a way of saying thanks, a way of showing our appreciation to those who have given so much. I am so proud to have been a part of this successful effort.”  \n\n \n The bill now moves to the House for consideration. \n \nSenator Menendez believes a grateful nation not only goes to a Veterans’ Day observance or marches in a Memorial Day parade, as we should—a grateful nation shows its gratitude in the health care we provide our veterans, in how we take care of their disabilities, and how we take care of the survivors of those who make the ultimate sacrifice.  That’s why he fought for legislation to create a new GI bill that expands educational assistance to those who have served on active duty since 9/11.  He also helped pass legislation to increase funding for veterans health care and for a process to deliver timely, predictable funding for the VA health care system, ensuring resources will be there to care for our veterans.     \n \n COMPONENTS OF THE VOW to Hire Heroes Act of 2011\n \n \nUnemployed Veterans Tax Credits: New tax credit of up to $5,600 for hiring veterans who have been looking for a job for more than six months, as well as a $2,400 credit for veterans who are unemployed for more than 4 weeks, but less than 6 months.\n \nIncreased      Wounded Warriors Tax Credit: Doubles the existing tax credit up to $9,600 (from $4,800) for hiring      veterans with service-connected disabilities who have been looking for a      job for more than six months.\n \n Expanding Education & Training: The VOW to Hire Heroes Act provides 100,000 unemployed veterans of past eras and wars with up to 1-year of additional Montgomery GI Bill benefits to qualify for jobs in high-demand sectors, from trucking to technology.  It also provides disabled veterans up to 1-year of additional Vocational Rehabilitation and Employment Benefits.\n \n Facilitating Seamless Transition: This bill would allow service members to begin the federal employment process prior to separation in order to facilitate a truly seamless transition from the military to jobs at VA, Homeland Security, or the many other federal agencies in need of our veterans. \n \n Improving      the Transition Assistance Program (TAP):      The VOW to Hire Heroes Act will make TAP mandatory for most servicemembers      transitioning to civilian status, upgrade career counseling options, and      resume writing skills, as well as ensuring the program is tailored for the      21st Century job market.\n \n Translating Military Skills and Training: This bill will also require the Department of Labor to take a hard look at what military skills and training should be translatable into the civilian sector, and will work to make it easier to get the licenses and certification our veterans need.\n \n\n \nKEY STATS ON VETERANS: \n \n Veterans Account For Approximately 9.5% Of The Adult U.S. Population.  According to the Bureau of Labor and Statistics (BLS), in 2010, 20.2 million men and 1.8 million women in the civilian population were veterans.  Of them, 2.2 million were veterans who served in the Gulf War-ear II, which is any time after September 2001, and approximately two-thirds of these recent veterans are under 35 years old.  Women account for 17% of Gulf War-era II veterans.  Furthermore, according to BLS, about 25% (530,000) of Gulf War-era II veterans reported having a service connected disability, whereas only 13% of all veterans have reported a service-connected disability. [BLS Employment Situation of Veterans, 10/20/11.]\n \n Although The Overall Unemployment Rate For Veterans Is Lower Than The National Figure, The Unemployment Rate Among Veterans Returning From Iraq and Afghanistan Has Risen to 12.1%. The national unemployment rate for October was 9.0%, while the overall veterans’ unemployment rate was 7.7%.  However, the joblessness rate for Gulf War-era II veterans, of which two thirds are younger than 35 years old, is 12.1%, up from 10.6% at this time last year. Within this group of returning veterans, 240,000 are now unemployed, up nearly 30,000 in the last year.  The youngest veterans are the ones having the hardest time finding work. According to BLS, “Young male veterans (those ages 18-24) who served during Gulf War-era II had an unemployment rate of 21.9% in 2010.\"\" [BLS Employment Situation, 11/4/11; BLS Employment Situation of Veterans, 10/20/11; BLS Veterans Employment Figures, 11/4/11.]\n \n Although We Are Making Progress, Veterans Are Over Represented in the Homeless Population, Accounting for 11.5% of All Homeless Adults. During a one year period, an estimated 144,842 veterans spent at least one night in an emergency shelter or transitional housing program, according to a recent report released by the Departments of Housing and Urban Development (HUD) and Veterans Affairs (VA).  While that figure is down 3% from last year, it is still an unacceptably high number.  Veterans comprise roughly 9.5% of the total U.S. population, but account for approximately 11.5% of all homeless adults in America.  In 2010, 1 in 150 veterans were homeless, and 1 in 16 veterans had an income below the poverty line.  On a given night in 2010, over 76,000 veterans were homeless.  Furthermore, in line with the high unemployment rate for younger veterans, “Young veterans are more than twice as likely to be homeless as their non-veteran counterpart, and young veterans in poverty are almost four times more likely to be homeless than their non-veteran counterparts in poverty.”  [HUD’s 2010 Annual Homeless Assessment Report (AHAR), 10/28/11.] \n \n KEY STATS ON NEW JERSEY VETERANS UNEMPLOYMENT:\n \n SOURCE: U.S. CENSUS BUREAU, 2010 AMERICAN   COMMUNITY SURVEY 1-YEAR ESTIMATES\n \n\n\n\nhttp://factfinder2.census.gov/faces/nav/jsf/pages/searchresults.xhtml?refresh=t\n\n\n\n\n\n \n\n\nTOTAL CIVILIAN   POPULATION 18 YEARS AND OVER \n\n\n \n\n\n \n\n\nUNEMPLOYMENT   RATE\n\n\n \n\n\n \n\n\n \n\n\nTotal\n\n\nVeterans\n\n\nNonveterans\n\n\nTotal\n\n\nVeterans\n\n\nNonveterans\n\n\nNew Jersey\n\n\n6732067\n\n\n453498\n\n\n6278569\n\n\n10.6%\n\n\n12%\n\n\n10.6%\n\n\nAtlantic County, New Jersey\n\n\n210648\n\n\n18087\n\n\n192561\n\n\n12.2\n\n\n11.6\n\n\n12.2\n\n\nBergen County, New Jersey\n\n\n702158\n\n\n37819\n\n\n664339\n\n\n8.4\n\n\n5.5\n\n\n8.5\n\n\nBurlington County, New Jersey\n\n\n342193\n\n\n36670\n\n\n305523\n\n\n8.4\n\n\n10\n\n\n8.3\n\n\nCamden County, New Jersey\n\n\n388633\n\n\n33810\n\n\n354823\n\n\n13\n\n\n11\n\n\n13.1\n\n\nCape May County, New Jersey\n\n\n78466\n\n\n8608\n\n\n69858\n\n\n10.5\n\n\n11.9\n\n\n10.4\n\n\nCumberland County, New Jersey\n\n\n119327\n\n\n8851\n\n\n110476\n\n\n13.8\n\n\n12.9\n\n\n13.9\n\n\nEssex County, New Jersey\n\n\n588846\n\n\n26590\n\n\n562256\n\n\n14.1\n\n\n20.6\n\n\n13.9\n\n\nGloucester County, New Jersey\n\n\n218203\n\n\n20660\n\n\n197543\n\n\n10.2\n\n\n11.8\n\n\n10.1\n\n\nHudson County, New Jersey\n\n\n504371\n\n\n14227\n\n\n490144\n\n\n13\n\n\n14.1\n\n\n13\n\n\nHunterdon County, New Jersey\n\n\n98193\n\n\n8537\n\n\n89656\n\n\n10\n\n\n25.5\n\n\n9.2\n\n\nMercer County, New Jersey\n\n\n283782\n\n\n18807\n\n\n264975\n\n\n10.5\n\n\n13.1\n\n\n10.4\n\n\nMiddlesex County, New Jersey\n\n\n625640\n\n\n34925\n\n\n590715\n\n\n9.9\n\n\n11.8\n\n\n9.8\n\n\nMonmouth County, New Jersey\n\n\n480440\n\n\n37581\n\n\n442859\n\n\n8.5\n\n\n12.1\n\n\n8.3\n\n\nMorris County, New Jersey\n\n\n375156\n\n\n24677\n\n\n350479\n\n\n8.5\n\n\n14.2\n\n\n8.3\n\n\nOcean County, New Jersey\n\n\n441870\n\n\n50445\n\n\n391425\n\n\n10.9\n\n\n11.1\n\n\n10.9\n\n\nPassaic County, New Jersey\n\n\n377541\n\n\n16404\n\n\n361137\n\n\n11.1\n\n\n10.1\n\n\n11.1\n\n\nSalem County, New Jersey\n\n\n50567\n\n\n5258\n\n\n45309\n\n\n16.1\n\n\n12.2\n\n\n16.5\n\n\nSomerset County, New Jersey\n\n\n243129\n\n\n14505\n\n\n228624\n\n\n6.9\n\n\n4.5\n\n\n7\n\n\nSussex County, New Jersey\n\n\n113541\n\n\n8506\n\n\n105035\n\n\n11.3\n\n\n10.8\n\n\n11.3\n\n\nUnion County, New Jersey\n\n\n406220\n\n\n21301\n\n\n384919\n\n\n12.1\n\n\n12.8\n\n\n12.1\n\n\nWarren County, New Jersey\n\n\n83143\n\n\n7230\n\n\n75913\n\n\n7.8\n\n\n10.8\n\n\n7.6\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=903cd1a1-05ce-40d2-9316-78f0397e6a41,\"Senator Menendez Reiterates Call for Timely DoD Report on Women in the Armed Forces \n                    \n                            Outdated policies may cause Servicewomen to lose the ground they’ve gained as a result of their role in current conflicts\n                    \n                      November 10, 2011\n                     Washington, DC – In anticipation of the Department of Defense’s review of the laws, policies, and regulations that restrict the service of female Servicemembers as required by the Ike Skelton National Defense Authorization Act for FY2011, Senator Menendez reiterated his call for the Department of Defense (DOD) to detail the capacity in which the 255,000 women who have deployed to Iraq and Afghanistan have served, and discuss ways to reconcile its combat exclusion policy with the realities on the ground whereby female Servicemembers are being “attached” to combat arms units that consistently engage the enemy on the ground with weapons.\n \n “Female servicemembers have made tremendous contributions to our national defense, and the fact that 174 servicewomen have been killed and 845 have been wounded serving our country in Iraq and Afghanistan tells me that we need to make sure the Defense Department’s policies reflect the critical role women are playing in today’s armed forces,” said Menendez.  “Only if we acknowledge their present engagement will they be eligible for the advancement opportunities they deserve, and will we ensure that in the future, the most qualified troops are fielded, regardless of gender.”\n \n This past June, Senator Menendez and his colleagues sent a letter to the Secretary of Defense requesting more details about whether the training, opportunities for promotion, and medical treatment of female servicemembers reflect their increasing role in combat situations.  In a response from Clifford Stanley, Under Secretary of Defense for Personnel and Readiness, Senator Menendez was informed that his concerns would be address in the pending DOD comprehensive review.\n \n Genevieve Chase, of American Women Veterans, a non-profit organization that advocates for women in the military said:  \"\"The nature of war has changed and battlefield commanders have found value in the contributions of women in combat and especially counterinsurgency operations. Just one example of this is the Marines' and U.S. Army's creation of Female Engagement Teams and Cultural Support Teams that are trained for and expected to live among these units in austere conditions as integral parts of their operations. Our military has realized that we have the ability to field the best America has to offer and all those who volunteer to serve our country should receive equal training and career opportunities, regardless of their gender. The creation of Female Engagement Teams and Cultural Support Teams who operate in austere conditions with combat arms units legitimizes the role of women in modern combat situations.  This fact requires re-evaluation of the outdated and misrepresentative policy.\"\"\n \n The Department of Defense “combat exclusion policy” precludes women from being assigned to ground combat units and being recognized as “combat troops”, yet women have served for years in ground combat operations as “attached” units that expose them to the same danger.  This policy keeps women from being recognized as combatant troops, which is one of the most direct ways to rise through the military ranks.  This inconsistency has a direct impact on military women’s chances of having access to adequate training before deployment, proper recognition upon their return, and fair promotion opportunities. Today, 80 percent of general officers come from career fields that are closed to women, and only 24 of the Army’s 403 general officers – or 6 percent – are female, though women make up roughly 15 percent of the force.\n \n FULL TEXT OF LETTER:\n June 17, 2011\n \n \nThe Honorable Robert M. Gates\n \nSecretary of Defense\n \nThe Pentagon\n \nWashington, DC 20301-1155\n \n Dear Secretary Gates:\n \n The Military Leadership Diversity Commission’s report, From Representation to Inclusion:  Diversity Leadership for the 21st Century Military informed the nation that the Armed Services should systematically develop a demographically diverse leadership that reflects the forces it leads and the public it serves. Additionally, the Commission recommended that the Services expand their diversity to include the range of backgrounds, skills, and personal attributes that are necessary for enhancing military performance. One issue the Commission highlighted that we would like more information about is the effect of the Department of Defense’s combat exclusion policy on women in the Armed Services.\n \n The Department of Defense’s current policy as it relates to women in the Armed Services states that “women may not serve in units that (1) engage an enemy on the ground with weapons, (2) are exposed to hostile fire, and (3) have a high probability of direct physical contact with personnel of a hostile force,” yet 134 female service members have been killed, and 721 have been wounded in the conflicts in Iraq and Afghanistan. The Commission’s report highlights the inconsistency of DOD’s policy with the reality of deployments, stating: “the current conflicts in Iraq and Afghanistan have been anything but conventional.  As a result, some of the female Servicemembers deployed to Iraq and Afghanistan have already been engaged in activities that would be considered combat related, including being collocated with combat units and engaging in direct combat for self-defense.” The Commission subsequently recommended eliminating the combat exclusion policy for women.\n \n We respectfully request additional information regarding the inconsistency of the current combat exclusion policy, whereby women are being “attached” to combat arms units that consistently engage the enemy on the ground with weapons, repeatedly encounter hostile fire, and frequently expose them to direct physical contact with personnel of a hostile force, yet women are not being adequately recognized for having served in combat arms functions when it comes to documenting these experiences in their military records and DD214s. Additionally, we are concerned that this policy unnecessarily restricts combatant commanders from selecting the best personnel to participate in missions solely based on gender.\n \n We hope you will provide a more comprehensive explanation of the capacity in which the 255,000 women who have deployed to Iraq and Afghanistan have served, specifically those that have been “attached” to combat arms units during their deployments.  In accordance with the current combat exclusion policy, what roles are open to women and from which are they precluded? Does the policy inhibit commanders from effectively engaging in counterinsurgency operations?\n \n Given the fact that women are now serving alongside and collocated with combatant troops, what measures are being taken to ensure they receive appropriate training prior to deployment? Finally, when non-combat arms troops engage the enemy on the ground with weapons or are exposed to hostile fire, how is this being reflected in their military records other than the issuance of a combat action decoration?\n \n In summary, we hope you will provide more details about the increased capacity in which women are serving and how the Department is working to ensure that the issues of training, equal opportunities for promotion and career advancement, and proper treatment upon redeployment are addressed.\n \n We look forward to your timely response to this inquiry and to working with you to update the Department’s policies in a way that fully reflects the critical role women are playing in today’s armed forces, ensures that women receive the much-deserved credit they earn during their military careers, and makes certain that our nation fields the most qualified troops regardless of gender. \n Sincerely,\n \n \nSenator Gillibrand\n \nSenator McCaskill\n \nSenator Cardin\n \nSenator Wyden\n \nSenator Franken\n \nSenator Merkley Senator Hagan\n \nSenator Lautenberg\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b805d37f-d79d-4ec3-80ee-ba559744e974,\"Menendez Co-Sponsors Bill to Put American Veterans Back to Work\n                    \n                            Senate will vote on bi-partisan VOW to Hire Heroes Act of 2011 this week \n                    \n                      November 9, 2011\n                     WASHINGTON -  U.S. Senator Robert Menendez (D-NJ) announced today that he is co-sponsoring legislation to help New Jersey’s veterans get back to work.  The “VOW to Hire Heroes Act of 2011” combines components in the President’s American Jobs Act and additional initiatives to boost employment opportunities for veterans.  In New Jersey, unemployment among veterans stands at 12 percent.  \n“This Veterans Day, let’s truly honor our heroes by doing all we can to expand job opportunities and job training for those men and women in uniform returning home and those already home,” said Menendez.   “When they transition to civilian life, they need to know we will be there for them, that businesses are willing to help them start new careers or continue where they left off.  That’s why I am proud to co-sponsor the VOW to Hire Heroes Act.”\n \n \n \nSpecifically, VOW would provide tax credits to incentivize private companies to hire veterans and expand training and transition resources to ensure veterans have the skills they need to access employment opportunities back in their communities. \n \n Senator Menendez believes a grateful nation not only goes to a Veterans’ Day observance or marches in a Memorial Day parade, as we should—a grateful nation shows its gratitude in the health care we provide our veterans, in how we how we take care of their disabilities, and how we take care of their survivors, for those who make the ultimate sacrifice.  That’s why he fought for legislation to create a new GI bill that expands educational assistance to those who have served on active duty since 9/11.  He also helped pass legislation to increase funding for veterans health care and for a process to deliver timely, predictable funding for the VA health care system, ensuring resources will be there to care for our veterans.     \n \n \n \nCOMPONENTS OF THE VOW to Hire Heroes Act of 2011\n \nUnemployed Veterans Tax Credits: New tax credit of up to $5,600 for hiring veterans who have been looking for a job for more than six months, as well as a $2,400 credit for veterans who are unemployed for more than 4 weeks, but less than 6 months.\n \n \n \nIncreased      Wounded Warriors Tax Credit: Doubles the existing tax credit up to $9,600 (from $4,800) for hiring      veterans with service-connected disabilities who have been looking for a      job for more than six months.\n \n Expanding Education & Training: The VOW to Hire Heroes Act provides 100,000 unemployed veterans of past eras and wars with up to 1-year of additional Montgomery GI Bill benefits to qualify for jobs in high-demand sectors, from trucking to technology.  It also provides disabled veterans up to 1-year of additional Vocational Rehabilitation and Employment Benefits.\n \n Facilitating Seamless Transition: This bill would allow service members to begin the federal employment process prior to separation in order to facilitate a truly seamless transition from the military to jobs at VA, Homeland Security, or the many other federal agencies in need of our veterans. \n \n Improving      the Transition Assistance Program (TAP):      The VOW to Hire Heroes Act will make TAP mandatory for most servicemembers      transitioning to civilian status, upgrade career counseling options, and      resume writing skills, as well as ensuring the program is tailored for the      21st Century job market.\n \n Translating Military Skills and Training: This bill will also require the Department of Labor to take a hard look at what military skills and training should be translatable into the civilian sector, and will work to make it easier to get the licenses and certification our veterans need.\n \n \n \n KEY STATS ON VETERANS: \n \n Veterans Account For Approximately 9.5% Of The Adult U.S. Population.  According to the Bureau of Labor and Statistics (BLS), in 2010, 20.2 million men and 1.8 million women in the civilian population were veterans.  Of them, 2.2 million were veterans who served in the Gulf War-ear II, which is any time after September 2001, and approximately two-thirds of these recent veterans are under 35 years old.  Women account for 17% of Gulf War-era II veterans.  Furthermore, according to BLS, about 25% (530,000) of Gulf War-era II veterans reported having a service connected disability, whereas only 13% of all veterans have reported a service-connected disability. [BLS Employment Situation of Veterans, 10/20/11.]\n \n Although The Overall Unemployment Rate For Veterans Is Lower Than The National Figure, The Unemployment Rate Among Veterans Returning From Iraq and Afghanistan Has Risen to 12.1%. The national unemployment rate for October was 9.0%, while the overall veterans’ unemployment rate was 7.7%.  However, the joblessness rate for Gulf War-era II veterans, of which two thirds are younger than 35 years old, is 12.1%, up from 10.6% at this time last year. Within this group of returning veterans, 240,000 are now unemployed, up nearly 30,000 in the last year.  The youngest veterans are the ones having the hardest time finding work. According to BLS, “Young male veterans (those ages 18-24) who served during Gulf War-era II had an unemployment rate of 21.9% in 2010.\"\" [BLS Employment Situation, 11/4/11; BLS Employment Situation of Veterans, 10/20/11; BLS Veterans Employment Figures, 11/4/11.]\n \n Although We Are Making Progress, Veterans Are Over Represented in the Homeless Population, Accounting for 11.5% of All Homeless Adults. During a one year period, an estimated 144,842 veterans spent at least one night in an emergency shelter or transitional housing program, according to a recent report released by the Departments of Housing and Urban Development (HUD) and Veterans Affairs (VA).  While that figure is down 3% from last year, it is still an unacceptably high number.  Veterans comprise roughly 9.5% of the total U.S. population, but account for approximately 11.5% of all homeless adults in America.  In 2010, 1 in 150 veterans were homeless, and 1 in 16 veterans had an income below the poverty line.  On a given night in 2010, over 76,000 veterans were homeless.  Furthermore, in line with the high unemployment rate for younger veterans, “Young veterans are more than twice as likely to be homeless as their non-veteran counterpart, and young veterans in poverty are almost four times more likely to be homeless than their non-veteran counterparts in poverty.”  [HUD’s 2010 Annual Homeless Assessment Report (AHAR), 10/28/11.] \n \n  KEY STATS ON NEW JERSEY VETERANS UNEMPLOYMENT:\n \n SOURCE: U.S. CENSUS BUREAU, 2010 AMERICAN   COMMUNITY SURVEY 1-YEAR ESTIMATES\n \n\n\n\nhttp://factfinder2.census.gov/faces/nav/jsf/pages/searchresults.xhtml?refresh=t\n\n\n\n\n\n \n\n\nTOTAL CIVILIAN   POPULATION 18 YEARS AND OVER \n\n\n \n\n\n \n\n\nUNEMPLOYMENT   RATE\n\n\n \n\n\n \n\n\n \n\n\nTotal\n\n\nVeterans\n\n\nNonveterans\n\n\nTotal\n\n\nVeterans\n\n\nNonveterans\n\n\nNew Jersey\n\n\n6732067\n\n\n453498\n\n\n6278569\n\n\n10.6%\n\n\n12%\n\n\n10.6%\n\n\nAtlantic County, New Jersey\n\n\n210648\n\n\n18087\n\n\n192561\n\n\n12.2\n\n\n11.6\n\n\n12.2\n\n\nBergen County, New Jersey\n\n\n702158\n\n\n37819\n\n\n664339\n\n\n8.4\n\n\n5.5\n\n\n8.5\n\n\nBurlington County, New Jersey\n\n\n342193\n\n\n36670\n\n\n305523\n\n\n8.4\n\n\n10\n\n\n8.3\n\n\nCamden County, New Jersey\n\n\n388633\n\n\n33810\n\n\n354823\n\n\n13\n\n\n11\n\n\n13.1\n\n\nCape May County, New Jersey\n\n\n78466\n\n\n8608\n\n\n69858\n\n\n10.5\n\n\n11.9\n\n\n10.4\n\n\nCumberland County, New Jersey\n\n\n119327\n\n\n8851\n\n\n110476\n\n\n13.8\n\n\n12.9\n\n\n13.9\n\n\nEssex County, New Jersey\n\n\n588846\n\n\n26590\n\n\n562256\n\n\n14.1\n\n\n20.6\n\n\n13.9\n\n\nGloucester County, New Jersey\n\n\n218203\n\n\n20660\n\n\n197543\n\n\n10.2\n\n\n11.8\n\n\n10.1\n\n\nHudson County, New Jersey\n\n\n504371\n\n\n14227\n\n\n490144\n\n\n13\n\n\n14.1\n\n\n13\n\n\nHunterdon County, New Jersey\n\n\n98193\n\n\n8537\n\n\n89656\n\n\n10\n\n\n25.5\n\n\n9.2\n\n\nMercer County, New Jersey\n\n\n283782\n\n\n18807\n\n\n264975\n\n\n10.5\n\n\n13.1\n\n\n10.4\n\n\nMiddlesex County, New Jersey\n\n\n625640\n\n\n34925\n\n\n590715\n\n\n9.9\n\n\n11.8\n\n\n9.8\n\n\nMonmouth County, New Jersey\n\n\n480440\n\n\n37581\n\n\n442859\n\n\n8.5\n\n\n12.1\n\n\n8.3\n\n\nMorris County, New Jersey\n\n\n375156\n\n\n24677\n\n\n350479\n\n\n8.5\n\n\n14.2\n\n\n8.3\n\n\nOcean County, New Jersey\n\n\n441870\n\n\n50445\n\n\n391425\n\n\n10.9\n\n\n11.1\n\n\n10.9\n\n\nPassaic County, New Jersey\n\n\n377541\n\n\n16404\n\n\n361137\n\n\n11.1\n\n\n10.1\n\n\n11.1\n\n\nSalem County, New Jersey\n\n\n50567\n\n\n5258\n\n\n45309\n\n\n16.1\n\n\n12.2\n\n\n16.5\n\n\nSomerset County, New Jersey\n\n\n243129\n\n\n14505\n\n\n228624\n\n\n6.9\n\n\n4.5\n\n\n7\n\n\nSussex County, New Jersey\n\n\n113541\n\n\n8506\n\n\n105035\n\n\n11.3\n\n\n10.8\n\n\n11.3\n\n\nUnion County, New Jersey\n\n\n406220\n\n\n21301\n\n\n384919\n\n\n12.1\n\n\n12.8\n\n\n12.1\n\n\nWarren County, New Jersey\n\n\n83143\n\n\n7230\n\n\n75913\n\n\n7.8\n\n\n10.8\n\n\n7.6\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ea107238-cab9-4b4f-aaf1-3f668064be54,\"Menendez Bill to Protect US Jobs, Worker Health, Environment Moves Forward \n                    \n                      November 9, 2011\n                     Washington DC – Senator Robert Menendez (D-NJ) today announced that his legislation to create federal toxicity standards for reflective highway marking beads has been passed through the Senate Environment and Public Works Committee as part of the Senate’s Highway Bill.  The Safe Highways Marking Act protects American jobs, protects worker health and protects the environment.  \n \n“American jobs and the health of American workers are on the line if we let foreign companies dump cheap, toxic glass beads into our market and onto our highways,” said Menendez. “I look forward to seeing this important provision pass the Senate as the Highway Bill is sent to the Senate floor.”\n \nEach year more than 500 million pounds of glass beads are used on U.S. highways to stripe pavement.  Substandard imported glass beads undercut the U.S. domestic beads industry and could eliminate jobs in New Jersey and other states.  Studies show that the presence of heavy metals in beads manufactured abroad not only expose American workers using the beads to contaminants; the beads have the potential of leaching toxic substances into surface water and groundwater. The legislation would keep substandard beads off the market by putting a 200 parts per million limit of arsenic or lead in reflective beads.\n \n“Setting a federal standard for lead and arsenic in these products will protect highway workers from exposure to dangerous toxins and will protect the environment from contamination,” said Scott Randolph, President and CEO of The Potters Group in Carlstadt, New Jersey, which manufactures glass beads.   “We are extremely grateful to Senator Menendez taking action to protect the jobs at our facilities in Carlstadt.  When enacted, this provision will help secure thousands of American jobs directly connected to the manufactured glass bead industry in the United States.”\n \n##\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a74a259d-e0aa-4587-8687-aa72c90c86cb,\"Menendez on Senate Floor Calls for Support of Bill to Put American Veterans Back to Work\n                    \n                            Senate expected to vote on bi-partisan VOW to Hire Heroes Act of 2011 tomorrow \n                    \n                      November 9, 2011\n                     WASHINGTON -  U.S. Senator Robert Menendez (D-NJ) spoke today on the Senate floor in support of legislation to help New Jersey’s veterans get back to work.  The “VOW to Hire Heroes Act of 2011,” of which Menendez is a co-sponsor, combines components in the President’s American Jobs Act and additional initiatives to boost employment opportunities for veterans.  In New Jersey, unemployment among veterans stands at 12 percent.  \nSpecifically, VOW would provide tax credits to incentivize private companies to hire veterans and expand training and transition resources to ensure veterans have the skills they need to access employment opportunities back in their communities.  \n \nSenator Menendez believes a grateful nation not only goes to a Veterans’ Day observance or marches in a Memorial Day parade, as we should—a grateful nation shows its gratitude in the health care we provide our veterans, in how we how we take care of their disabilities, and how we take care of their survivors, for those who make the ultimate sacrifice.  That’s why he fought for legislation to create a new GI bill that expands educational assistance to those who have served on active duty since 9/11.  He also helped pass legislation to increase funding for veterans health care and for a process to deliver timely, predictable funding for the VA health care system, ensuring resources will be there to care for our veterans.     \n \n REMARKS AS PREPARED FOR DELIVERY\n \n Mr. President, this Friday we will celebrate Veterans Day and, this year, we are also celebrating Military Families Month. It is the time to recommit ourselves to helping every military family as the First Lady and Dr. Jill Biden are doing with a program called Joining Forces – to address the unique needs of those who serve – and the needs of their families. We as a Congress and as a nation need to do exactly that – we need to reach across the aisle, we need to put aside our differences and join forces. We need to help businesses help veterans and their spouses build careers. We need to make sure that our schools are doing all they can to help military kids. We need to promote community involvement by asking all of us to do what we can to help military families in our local communities. But there is more we can – and should do -- to honor our heroes.\n \nHonoring our heroes means providing jobs, job training, and every job opportunity possible to unemployed veterans in my state of New Jersey where we have over 450,000 veterans - 12 percent of them unemployed. That’s why I am proud to be a co-sponsor of the VOW to Hire Heroes Act. Every year 160,000 active duty service members and 110,000 National Guardsmen and reservists come home. When they transition to civilian life and are looking for options to get back to work at home, they need to know someone will be there to help them, that businesses will help them start new careers or continue where they left off. We should be giving businesses a tax credit for hiring a returning veteran, and giving them more of a tax credit if they hire a wounded veteran. I’d like to see American businesses pledge to hire 100,000 veterans or their spouses by the end of next year. I don’t think that’s asking too much, do you? I don’t think it’s too much to ask Congress – both parties, without the politics, in a bipartisan effort -- to honor our veterans by passing a veterans’ jobs bill the President can sign into law.\n \nAs we approach Veterans Day, as our last troops come home from Iraq, as our military presence around the world enters a post-Iraq era, we need to commit ourselves as a nation to helping every one of our men and women in uniform – particularly in these hard economic times. This year, with the unemployment rate for veterans at almost 12 percent nationally, as it is in New Jersey, with nearly 1 million unemployed veterans nationwide, I would hope that we could finally find bipartisan support for something that we should all be able to agree on  and that’s jobs for veterans…that’s the VOW to Hire Heroes Act. Veterans cannot and should not have to wait for the help they deserve. No delays. No filibuster. No politics.  Just a bill for the President to sign and help for our nation’s veterans now. This is about fairness and keeping our promise to our veterans. I think we can always do better for our veterans and their families. Every veteran deserves better. Our duty to them is not just remembering their service, it’s not just saying thank you one or two days a year,\n \nIt’s delivering on the promise of a grateful nation every day. It means providing the health care and services veterans need when they come home, and helping them transition back into the workforce. Our brave men and women did not wait to sign up to serve this country, and they should not have to wait to get the benefits they have earned defending it. They should not have to come home only to stand on the unemployment line after putting themselves on the line serving this nation.\n \nThat’s why, Mr. President, I’m proud to have cosponsored a good, solid, bipartisan jobs package to help our military men and women transition from their work defending our nation’s freedoms to civilian work rebuilding our nation’s economy.  It would ensure that disabled veterans who have exhausted their unemployment benefits get the training and rehabilitation they need – the counseling they need, the Vocational Rehabilitation and Employment benefits they need, and job assistance tailored to the 21st century job market. It establishes a competitive grant program for nonprofits that provide mentoring and training programs for vets. It allows employers to be paid for providing on-the-job training to veterans, and it would provide Returning Heroes and Wounded Warriors Work Opportunity Tax Credits for businesses that hire veterans -- and more for businesses that hire disabled vets. The credit for unemployed veterans expired at the end of 2010.  This provision is essentially a Work Opportunity Tax Credit for hiring vets – a credit up to $2,400 for short-term unemployed and up to $5,600 for long-term unemployed… and an increased credit -- up to $9,600 -- for hiring unemployed, wounded veterans.\n \nI fully support and believe in this bill. We made a promise to veterans, and it’s a promise we must keep. While I believe reducing the deficit is a critical issue, we cannot and should not balance the budget on the backs of those who have served. Veterans are not bankrupting America; they’re protecting it – and it’s not veterans’ programs, health care, or services that should be cut. I have said before and I will say it again: A grateful nation not only honors its heroes once a year on Veterans Day  , but it better be able to look every veteran in the eye when he or she comes home and say – “we meant what we said, we kept our promise.” And we must be prepared to deliver on that promise. I certainly am. I come to this chamber today on behalf of every New Jerseyan to say to every man and woman who has served in uniform and the more than 450,000 veterans in New Jersey: We will keep working for fairness for every veteran and their families. There will always be political obstacles in our way, but we will fight the good fight to keep our promise to you as you have served us. Be assured, you have the respect and thanks of a grateful nation – for the sacrifices you and your families have made. May God bless our troops. And may God bless America. With that, Mr. President, I yield the floor.\n \n \n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=91b12987-7b6f-4056-b741-73b8fd5eeec4,\"Menendez Keeps Up the Fight to Fund Community Policing Efforts \n                    \n                            After House zeroes funding for cops, Senator calls on Senate, House members resolving final spending bill to fund COPS and Byrne Grants at highest level possible \n                    \n                      November 8, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) continued his fight to ensure funding for community policing efforts, this week calling on House and Senate members finalizing the Justice Department’s spending bill to include at least $200 million for the popular Community Oriented Policing Services Hiring (COPS) Program.  Earlier this year, Republican leaders in the House of Representatives zeroed out the program in their version of the spending bill; the Senate last week approved a bill which included $200 million for the competitive grant program.  Because of differences in the bills, a conference committee has been appointed to craft a final measure.\n \n “Here’s what I know:  At a time of great economic uncertainty, cities and towns across my home state of New Jersey have been forced to furlough or lay off hundreds of police officers, making our communities less safe,” said Menendez.  “The need is real and the COPS program works.  It puts more officers on the streets, keeping us safe.  This should be a no-brainer – we must provide as much support possible for this locally driven program, period.”\n \n In a letter signed by several other members of Congress, Menendez urged the conferees to support the funding levels appropriated by the Senate for the COPS Program as well as the Edward Byrne Memorial Justice Assistance Grant (Byrne JAG) program. House Republicans did not provide funding for the COPS Hiring Program in their appropriations bill and they provided $38 million less than the Senate for Byrne JAG.\n \nMore than 700 police officers were let go in New Jersey just this year and there are 4,000 fewer officers today in New Jersey than there were at the end of 2009.  In October, Menendez announced that 12 communities in New Jersey received a total of $20.8 million to hire and support 78 officers for the next three years.  More than 150 New Jersey localities had applied for the COPS grants.     \n \nN.J. Congressman Pascrell,  co-sponsored a motion in the House to instruct the conferees to include as much funding for the COPS Program as possible.  That motion passed 265-160.\n \nThis push comes just two weeks after Menendez sponsored the Teachers and First Responders Jobs bill, which would have provided resources to greatly expand hiring efforts for police officers and firefighters as well as funding to put teachers back to work.  While the bill was supported by 75% of Americans, the legislation was killed by Senate Republicans. \n \n Full text of the letter:\n \n November 7, 2011\n \n Dear Senator Mikulski, Senator Hutchison, Congressman Wolf, and Congressman Fattah: \n \n We write to express our strong support for the Community Oriented Policing Services Hiring (COPS) Program and the Edward Byrne Memorial Justice Assistance Grant (Byrne JAG) program. We appreciate the hard work and leadership you have shown on this legislation, particularly in this difficult fiscal environment.  Given the budget shortfalls faced by local communities, we ask that you support these critical state and local law enforcement assistance programs that are critically important to keep our communities safe. We strongly urge the conferees to support the funding levels appropriated by the Senate for these important programs.\n \n In these difficult economic times, both small and large municipalities have been forced to reduce hiring of public safety officers and have even laid off police officers and firefighters, making our neighborhoods less safe. We must use every tool available to ensure that state and local law enforcement has the resources and the equipment necessary to effectively and efficiently fight crime.\n \n As you know, the COPS Hiring Program is vital for local communities in their efforts to fight crime and we ask that you support this program at the levels appropriated in the Senate legislation. Since Congress first authorized the program in 1994, the COPS program has provided funding for localities to hire over 123,800 additional officers in over 12,634 jurisdictions. In the last fiscal year alone, the COPS Office provided funding to hire, preserve, or rehire 1,021 law enforcement officers.  In the last fiscal year, 2,700 communities nationwide applied for help to fund 9,000 officers for a total of $2 billion in requested funding but only 238 of the 2,700 communities applying (9% of the total applications) received funding. The demand for this funding at the local level greatly exceeds the available funds. For these reasons, we urge you to fund the COPS Hiring Program in the FY 2012 Commerce, Justice and Science Appropriations bill at a minimum of $200 million, the amount appropriated in the Senate-passed bill.\n \nWe also ask that you support the Edward Byrne Memorial Justice Assistance Grant (Byrne JAG) Program at the levels appropriated in the Senate legislation.  As you know, Byrne JAG is the cornerstone of federal crime-fighting programs because it supports the federal government’s crucial role in spurring innovation, as well as testing and replicating evidence-based practices nationwide. A key element of the Byrne JAG program is its flexibility in allowing localities to react to urgent challenges or new circumstances. In fiscal year 2010, over 1,500 local jurisdictions were awarded direct grants, and many more were awarded funds passed through by the state criminal justice planning agencies.  These funds provide necessary funding to combat drug and gang violence, reduce recidivism, and enhance drug treatment and enforcement programs.\n \n We appreciate the hard work and leadership you have shown on this legislation, particularly in this difficult fiscal environment.  We also understand that much work remains to be done as you reconcile these bills in conference.  As you complete work on this legislation, we ask that you support funding for the Community Oriented Policing Services (COPS) and the Byrne JAG programs that help communities hire police officers.\n \n Thank you for your consideration of this request.\n \n Sincerely,\n \n \n \nSENADOR FEDERAL ROBERT MENÉNDEZ\n \nPARA EMISIÓN INMEDIATA\n \n8 de noviembre de 2011\n \n CONTACTO:Oficina de Prensa de Menéndez 202-224-4744\n \n Menéndez Mantiene su Lucha por Fondos Para Policías en Nuestras Comunidades \n \nDespués que Cámara deja en cero fondos para policías, Senador hace un llamado a miembros del Senado, Cámara trabajando en el proyectos de ley para asignar fondos para que financien proyectos de ley COPS y Byrne al más alto nivel posible \n \nWASHINGTON – El senador federal Robert Menéndez (D-NJ) continuo su lucha para asegurar el financiamiento del trabajo de la policía en nuestras comunidades al hacer un llamado esta semana a miembros de la Cámara y el Senado claves en la finalización del proyecto de ley de gastos del Departamento de Justicia a incluir por los menos $200 millones para el popular Community Oriented Policing Services Hiring (COPS) Program. A principios de este año, los líderes republicanos en la Cámara de Representantes dejo en cero el programa en su versión de la ley de gastos. La semana pasada, el Senado aprobó un proyecto de ley que incluye $200 millones para su programa competitivo. Debido a diferencias en los proyectos de ley, un comité de conferencia ha sido designado para elaborar una medida definitiva.\n \n “Esto es lo que sé: En un momento de incertidumbre económica, las ciudades y pueblos a traves de mi estado natal de Nueva Jersey se han visto obligados a dejar ir o despedir cientos de oficiales de policía, dejando a nuestras comunidades menos seguras,” dijo Menéndez.  “La necesidad es real y el programa COPS funciona. Pone a más policias en las calles, manteniendonos seguros. Esto es algo obvio– debemos proporcionar todo el apoyo posible a estos programas, punto.”\n \n En una carta firmada por varios miembros del Congreso, Menéndez insto a los congresistas a apoyar los niveles de financiación apropiados por el Senado para el programa COPS, así como el programa Edward Byrne Memorial Justice Assistance Grant (JAG Byrne). Los Republicanos en la Cámara no proporcionaros fondos para el Programa de Contratación COPS en su proyecto de ley para asignar fondos y asignaron $38 millones menos que el Senado para el programa Byrne JAG.  \n \nMás de 700 policías fueron despedidos en Nueva Jersey este año y hoy hay 4,000 menos oficiales en Nueva Jersey comparado con finales de 2009. En Octubre, Menendez anuncio que 12 comunidades en Nueva Jersey recibirían un total de $20.8 millones para contratar y apoyar 78 oficiales por los próximos 3 años. Más de 150 localidades en Nueva Jersey habían solicitar para recibir subvenciones COPS.\n \nEl congresista Pascrell de Nueva Jersey, copatrocinó una moción en la Cámara para exhortar a los partidos negociando a asignar las cantidad más alta posible para el financiamiento del programa COPS. La moción fue apoyada por un voto 265-160.\n \nEstos esfuerzos por parte del Senador Menéndez tomas lugar a solo dos semanas de que el mismo patrocinara el proyecto de ley de Empleos para Maestros y Oficiales Emergencia, la cual habría provisto de recursos para expandir substancialmente los recursos disponibles para la contratación de oficiales de policías y bomberos, al igual que ayudado a generar empleos para maestros. Aunque este proyecto de ley fue apoyado por 75% de los Americanos, la legislación fue obstruida por los Republicanos del Senado.\n \n Full text of the letter:\n \n November 7, 2011\n \n Dear Senator Mikulski, Senator Hutchison, Congressman Wolf, and Congressman Fattah: \n \n We write to express our strong support for the Community Oriented Policing Services Hiring (COPS) Program and the Edward Byrne Memorial Justice Assistance Grant (Byrne JAG) program. We appreciate the hard work and leadership you have shown on this legislation, particularly in this difficult fiscal environment.  Given the budget shortfalls faced by local communities, we ask that you support these critical state and local law enforcement assistance programs that are critically important to keep our communities safe. We strongly urge the conferees to support the funding levels appropriated by the Senate for these important programs.\n \n In these difficult economic times, both small and large municipalities have been forced to reduce hiring of public safety officers and have even laid off police officers and firefighters, making our neighborhoods less safe. We must use every tool available to ensure that state and local law enforcement has the resources and the equipment necessary to effectively and efficiently fight crime.\n \n As you know, the COPS Hiring Program is vital for local communities in their efforts to fight crime and we ask that you support this program at the levels appropriated in the Senate legislation. Since Congress first authorized the program in 1994, the COPS program has provided funding for localities to hire over 123,800 additional officers in over 12,634 jurisdictions. In the last fiscal year alone, the COPS Office provided funding to hire, preserve, or rehire 1,021 law enforcement officers.  In the last fiscal year, 2,700 communities nationwide applied for help to fund 9,000 officers for a total of $2 billion in requested funding but only 238 of the 2,700 communities applying (9% of the total applications) received funding. The demand for this funding at the local level greatly exceeds the available funds. For these reasons, we urge you to fund the COPS Hiring Program in the FY 2012 Commerce, Justice and Science Appropriations bill at a minimum of $200 million, the amount appropriated in the Senate-passed bill.\n \nWe also ask that you support the Edward Byrne Memorial Justice Assistance Grant (Byrne JAG) Program at the levels appropriated in the Senate legislation.  As you know, Byrne JAG is the cornerstone of federal crime-fighting programs because it supports the federal government’s crucial role in spurring innovation, as well as testing and replicating evidence-based practices nationwide. A key element of the Byrne JAG program is its flexibility in allowing localities to react to urgent challenges or new circumstances. In fiscal year 2010, over 1,500 local jurisdictions were awarded direct grants, and many more were awarded funds passed through by the state criminal justice planning agencies.  These funds provide necessary funding to combat drug and gang violence, reduce recidivism, and enhance drug treatment and enforcement programs.\n \n We appreciate the hard work and leadership you have shown on this legislation, particularly in this difficult fiscal environment.  We also understand that much work remains to be done as you reconcile these bills in conference.  As you complete work on this legislation, we ask that you support funding for the Community Oriented Policing Services (COPS) and the Byrne JAG programs that help communities hire police officers.\n \n Thank you for your consideration of this request.\n \n Sincerely,\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=881e0c0a-d580-4d3c-8ec9-16683f0b98a8,\"Menendez, Nelson Unveil Foreign Oil Pollution Act \n                    \n                            Legislation would discourage Cuban oil drilling by holding drillers liable for potential spills \n                    \n                      November 8, 2011\n                     Washington – U.S. Senators Robert Menendez (D-NJ) and Bill Nelson (D-FL), vocal opponents of oil drilling in Cuban waters, today introduced legislation to ensure Americans affected by oil spills that originate in foreign waters can hold these polluters accountable and seek full compensation for their damages.  Repsol, a Spanish oil company, is currently sending a drilling rig to begin exploration in Cuban waters, less than 80 miles from the Florida Keys.  An oil spill in these waters could be devastating to American fisherman, coastal communities, and tourism businesses.\n \n “When it comes to laws that should protect Americans from foreign oil polluters, there must be no ambiguity about who is to be held fully accountable – the polluter,” said Menendez.  “Hopefully, companies seeking to drill in Cuban waters will think twice once they know they would be fully liable for any damages to the Florida Keys, South Florida beaches, or if the spill reached the Gulf Stream, anywhere up the East Coast.”\n \n “Our goal here is to hold foreign oil companies liable if they have a spill that reaches U.S. waters,” Nelson said.  “It’s in part aimed at the situation in Cuba, where Repsol is planning to drill.  If there’s a spill there we could lose part of the Everglades, or the Keys, or the coral reefs, or our fishing industry or tourism – and jobs.  That’s why the U.S. needs to carry a big stick.”\n \n Current law contains ambiguities that might allow a polluter to argue that suits could not be brought directly against them under the Oil Pollution Act, the main body of law that protects Americans from oil spills.  The legislation the two senators introduced would change this provision to ensure that US claimants can sue foreign spillers directly.  The bill would also remove the $75 million liability cap for spills emanating from foreign waters, and would also ensure that US spill victims could avail themselves of the Oil Spill Liability Trust Fund for such spills.\n \n Menendez and Nelson previously introduced legislation to eliminate the current $75 million cap on liability for oil spills and to eliminate the $1 billion cap on the use of the Oil Spill Liability Trust Fund.  This is the only way to ensure all oil drillers operate safely and are fully on the hook to make all those damaged by oil spills whole.\n \n ##\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7fc38cf5-3ecf-4481-b830-40cf6d5e9d7e,\"Menendez, Lautenberg Applaud Administration's Decision Not to Drill Near Jersey Shore\n                    \n                            Senators Remain Skeptical of Plans for More Leases in Alaska\n                    \n                      November 8, 2011\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ), leading voices in the effort to protect the Jersey Shore from coastline drilling, applauded the Administration’s decision not to drill off the East Coast.  The Senators also remain skeptical about the five year plan’s potential lease sales off of Alaska, however.\n \n\n\"\"I am pleased that the Administration recognizes that allowing oil drilling near the Jersey Shore is simply too big a risk to the health of our economy, our environment and our families,” said Menendez.  “As far as I’m concerned, oil drilling and the New Jersey coastline simply do not mix, and never will.”\n\n \n\n“An oil spill in the Mid-Atlantic would be catastrophic for New Jersey’s economy, environment and our way of life,” stated Lautenberg.  “Beaches would be abandoned, fishermen would be out of work, marine life would be devastated and restaurants and hotels would close down.  We will continue fighting to keep the oil industry off our shores so that New Jersey never has to face the kind of devastation that the Gulf Coast experienced last year.”\n\n \nThe Department of Interior today announced its 5 year offshore oil and natural gas leasing program for 2012-2017.  The Proposed Program includes six offshore areas and schedules 15 potential lease sales for the 2012-2017 period – 12 in the Gulf of Mexico and three off the coast of Alaska.  The OCS Lands Act requires Interior to prepare a 5-year program that includes a schedule of oil and gas lease sales and indicates the size, timing and location of proposed offshore leasing activity.   The Senators want to hear more about the proposed Alaska leases as they are near environmentally sensitive areas but do require further study and safety planning before going forward.\n \nIn 2009, the Obama Administration had proposed allowing oil drilling in Virginia waters less than 100 miles from the New Jersey coastline. Much of New Jersey’s $35.5 billion tourism industry comes from the Jersey Shore and the state’s multi-billion dollar fishing industry would also be threatened by the specter of a potential oil spill.\n \nExpanded Coastline Drilling Would Be a Threat to New Jersey \n \nWhen medical waste washed up on New Jersey’s beaches in      1988, there were 22% fewer visitors to the shore in 1988 versus 1987,      which resulted in an estimated drop in revenue of more than $1 billion. [NOAA Technical Memorandum, 1990] And      that was waste that could be fully cleaned up—unlike an oil spill. For      example, as a result of the 1989 Exxon Valdez oil spill off the coast of      Alaska, 21,000 gallons of crude still linger in the areas where the spill      occurred, and oil-stained sand can still be found on the beaches nearby.      In the event of an oil spill, the      Jersey Shore could be damaged permanently. [National Geographic, 03/23/2009]\nThe New Jersey tourism industry in 2010 reached $35.5      billion in expenditures (and $4.4 billion in state and local taxes), and      has nearly 310,000 workers (8.3% of total NJ workers) earning salaries      totaling $10 billion -- providing hospitality to more than 67 million      visitors to the Garden State. [NJ Tourism 2009-2010 The Great Recession &      Tepid Recovery…So Far, 2010]\nIn 2009, the combined sales of New Jersey’s commercial      fishers, seafood processors and dealers, and wholesalers and distributors      in the retail sector brought in more than $1.7 billion and provided 37,887      jobs. [NOAA: New Jersey Commercial Fisheries,      2009] New Jersey's commercial ports rank ninth in the nation in the value      of their catch and 1.1 million recreational fishermen enjoy the Jersey      Shore’s rich saltwater fisheries. [NOAA: State of the Coast, 2010] New      Jersey's most valuable commercial port (the nation's third most valuable)      is less than 100 miles from the 2009 proposed lease sale off Virginia.\n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0aab5822-c5d5-4603-8d11-6de35c23a593,\"Menendez Keeps Up the Fight to Fund Community Policing Efforts \n                    \n                            After House zeroes funding for cops, Senator calls on Senate, House members resolving final spending bill to fund COPS and Byrne Grants at highest level possible \n                    \n                      November 8, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) continued his fight to ensure funding for community policing efforts, this week calling on House and Senate members finalizing the Justice Department’s spending bill to include at least $200 million for the popular Community Oriented Policing Services Hiring (COPS) Program.  Earlier this year, Republican leaders in the House of Representatives zeroed out the program in their version of the spending bill; the Senate last week approved a bill which included $200 million for the competitive grant program.  Because of differences in the bills, a conference committee has been appointed to craft a final measure.\n \n “Here’s what I know:  At a time of great economic uncertainty, cities and towns across my home state of New Jersey have been forced to furlough or lay off hundreds of police officers, making our communities less safe,” said Menendez.  “The need is real and the COPS program works.  It puts more officers on the streets, keeping us safe.  This should be a no-brainer – we must provide as much support possible for this locally driven program, period.”\n \n In a letter signed by several other members of Congress, Menendez urged the conferees to support the funding levels appropriated by the Senate for the COPS Program as well as the Edward Byrne Memorial Justice Assistance Grant (Byrne JAG) program. House Republicans did not provide funding for the COPS Hiring Program in their appropriations bill and they provided $38 million less than the Senate for Byrne JAG.\n \nMore than 700 police officers were let go in New Jersey just this year and there are 4,000 fewer officers today in New Jersey than there were at the end of 2009.  In October, Menendez announced that 12 communities in New Jersey received a total of $20.8 million to hire and support 78 officers for the next three years.  More than 150 New Jersey localities had applied for the COPS grants.     \n \nN.J. Congressman Pascrell,  co-sponsored a motion in the House to instruct the conferees to include as much funding for the COPS Program as possible.  That motion passed 265-160.\n \nThis push comes just two weeks after Menendez sponsored the Teachers and First Responders Jobs bill, which would have provided resources to greatly expand hiring efforts for police officers and firefighters as well as funding to put teachers back to work.  While the bill was supported by 75% of Americans, the legislation was killed by Senate Republicans. \n \n Full text of the letter:\n \n November 7, 2011\n \n Dear Senator Mikulski, Senator Hutchison, Congressman Wolf, and Congressman Fattah: \n \n We write to express our strong support for the Community Oriented Policing Services Hiring (COPS) Program and the Edward Byrne Memorial Justice Assistance Grant (Byrne JAG) program. We appreciate the hard work and leadership you have shown on this legislation, particularly in this difficult fiscal environment.  Given the budget shortfalls faced by local communities, we ask that you support these critical state and local law enforcement assistance programs that are critically important to keep our communities safe. We strongly urge the conferees to support the funding levels appropriated by the Senate for these important programs.\n \n In these difficult economic times, both small and large municipalities have been forced to reduce hiring of public safety officers and have even laid off police officers and firefighters, making our neighborhoods less safe. We must use every tool available to ensure that state and local law enforcement has the resources and the equipment necessary to effectively and efficiently fight crime.\n \n As you know, the COPS Hiring Program is vital for local communities in their efforts to fight crime and we ask that you support this program at the levels appropriated in the Senate legislation. Since Congress first authorized the program in 1994, the COPS program has provided funding for localities to hire over 123,800 additional officers in over 12,634 jurisdictions. In the last fiscal year alone, the COPS Office provided funding to hire, preserve, or rehire 1,021 law enforcement officers.  In the last fiscal year, 2,700 communities nationwide applied for help to fund 9,000 officers for a total of $2 billion in requested funding but only 238 of the 2,700 communities applying (9% of the total applications) received funding. The demand for this funding at the local level greatly exceeds the available funds. For these reasons, we urge you to fund the COPS Hiring Program in the FY 2012 Commerce, Justice and Science Appropriations bill at a minimum of $200 million, the amount appropriated in the Senate-passed bill.\n \nWe also ask that you support the Edward Byrne Memorial Justice Assistance Grant (Byrne JAG) Program at the levels appropriated in the Senate legislation.  As you know, Byrne JAG is the cornerstone of federal crime-fighting programs because it supports the federal government’s crucial role in spurring innovation, as well as testing and replicating evidence-based practices nationwide. A key element of the Byrne JAG program is its flexibility in allowing localities to react to urgent challenges or new circumstances. In fiscal year 2010, over 1,500 local jurisdictions were awarded direct grants, and many more were awarded funds passed through by the state criminal justice planning agencies.  These funds provide necessary funding to combat drug and gang violence, reduce recidivism, and enhance drug treatment and enforcement programs.\n \n We appreciate the hard work and leadership you have shown on this legislation, particularly in this difficult fiscal environment.  We also understand that much work remains to be done as you reconcile these bills in conference.  As you complete work on this legislation, we ask that you support funding for the Community Oriented Policing Services (COPS) and the Byrne JAG programs that help communities hire police officers.\n \n Thank you for your consideration of this request.\n \n Sincerely,\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e0a44e02-4a03-4cbb-9110-f46aa8472fbc,\"Menendez Calls for More Iran Sanctions \n                    \n                      November 8, 2011\n                     Washington – In response to a report by the International Atomic Energy Agency released today that provides strong evidence that Iran has the technology, materials, and knowledge to build a nuclear weapons program, U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee and Banking Committees, renewed his call for additional sanctions and consideration by the Senate of his legislation to strengthen U.S. sanctions policy.  Menendez released the following statement:\n \n “Today is the last day that the world can bury its head in the sand and pretend that Iran has no intention of doing whatever it takes to acquire a nuclear weapon. And today's IAEA report should convince anyone but the most biased observer that Iran's nuclear program is not just for peaceful purposes.  The report makes clear that Iran is using back channels to acquire dual-use technology, materials and information critical to the development of a nuclear weapon and that Iran may be working on an indigenous design for a nuclear payload small enough to fit on Iran’s long-range Shahab 3 missile - a missile capable of reaching Israel.\n \n“The Iranian regime is a growing threat that must be deterred.  The international community must take steps now - not tomorrow - to stop Iran from acquiring a nuclear weapon.  We need to respond to Iran with even tougher sanctions, make the U.S. an Iranian oil free zone, step up sanctions on the IRGC, and sanction the Iranian Central Bank and countries like China and Russia that flaunt our sanctions and have provided critical scientific knowledge to the Iranians.\n \n“In May, along with Senators Lieberman, Kyl, Gillibrand, Casey, Kirk, and Collins, I introduced the Iran, North Korea, and Syria Sanctions Consolidation Act of 2011, a bill that recognizes that if Iran’s principal goal is to acquire weapons of mass destruction, then it must also be the policy of the United States to prevent the Islamic Republic of Iran from acquiring the capability to threaten its neighbors.   We are also working closely with the Banking Committee to move this legislation forward and I call on my colleagues to immediately pass enhanced sanctions legislation and cut off the head of the dragon that threatens Israel and the world before it is too late.”\n \n##\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d972b9ae-63b4-4907-88da-2d7f294644c6,\"Menendez Praises Dedication of Paterson NJ Park as America’s 397th National Park \n                    \n                            Designation will ensure Great Falls National Historical Park is Never Privatized \n                    \n                      November 7, 2011\n                     PATERSON, N.J.—Today U.S. Senator Robert Menendez (D-NJ) joined Interior Secretary Ken Salazar, U.S. Senator Frank Lautenberg (D-NJ), Congressman Bill Pascrell, Jr. and National  Park Service Director Jon Jarvis at Paterson Great Falls National Historical Park for a signing ceremony to officially dedicate the site as the United States’ 397th National Park.\n \n\n “I’m incredibly proud, as a New Jerseyan and as the son of immigrants, to witness today’s declaration of Paterson Great Falls as a National Historic Park,” said Senator Menendez, who fought to get the legislation authorizing the new park approved by the Senate Energy and Natural Resources Committee. “From the Great Falls, through the raceways and waterwheels along the Passaic, flowed the blood, sweat, and tears of the men and women who powered the industrial revolution and made this nation great.  The Park’s history is now part of the story of America.”\n\n \n As a member of the Energy and Natural Resources Committee, Senator Menendez secured passage of the authorizing legislation which allowed the bill to dedicate the site as a national park to pass through the Senate. Menendez fought skeptics who felt that Paterson’s urban setting did not qualify Great Falls as a national park.\n \n\n “This has been a long and often difficult fight. Everyone here had a role to play, and mine was to get the bill passed in the Senate Energy and Natural Resources Committee. Frankly, it was not easy because the Park Service, at the time, and several Western Senators were skeptical of an urban historical park like Great Falls. But over the course of several months, I made the case: Great Falls is a different national park...  an urban park that may not fit the mold of Yellowstone and Yosemite, but just because it’s an urban setting doesn’t make it any less a representation of the richness of this nation, no less a national treasure,” said Senator Menendez. \n\n \nHome to one of the nation’s largest and most spectacular waterfalls, Great Falls was harnessed to power new industries and played a key role in shaping the American Industrial Revolution and building the U.S. economy.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7791f4f1-1fff-4402-a702-0131609af2e4,\"Menendez Implores Christie to Reconsider Stance on Pollution Rule\n                    \n                      November 4, 2011\n                     Washington, DC – U.S. Senator Robert Menendez (D-NJ) today called on Governor Chris Christie to reconsider his position regarding an EPA measure that would protect New Jersey from toxic winds generated by polluting power plants located in other states.  Yesterday, press reports indicated Christie was not sure he would join colleagues from other Mid-Atlantic and Northeastern states in defending the measure which is being challenged in federal court. \n \n \n“I hope you will ultimately decide to support the EPA’s rule so as not to put the interests of out-of-state polluters or the economic interests of neighboring states ahead of the public health or economic interests of New Jerseyans,” Menendez said in a letter sent to the Governor today.   \n \n \nFULL TEXT OF LETTER FOLLOWS:\n \n \nDear Governor Christie:\n \n \nI am writing today to seek a clarification on your position regarding the Environmental Protection Agency’s (EPA’s) Cross-State Air Pollution Rule, the first major regulation designed specifically to protect eastern states like New Jersey from polluting power plants to our west. \n \n \nYesterday, according to press accounts, you indicated you were not sure if you would join your Mid Atlantic and Northeast colleagues in defending this rule.  If this is indeed your position, I would strongly urge you to reconsider since the Cross State Air Pollution Rule will:\n \n·         save over 1,200 lives per year in New Jersey starting in 2014\n \n·         save up to 34,000 lives, prevent 400,000 asthma attacks, and avoid 1.8 million lost work or sick days per year nationally;\n \n·         create economic benefits that are estimated to be between $120 billion and $280 billion each year.\n \n \nAs you know, New Jersey is one of the states most directly impacted from polluters to our west.  As a matter of fact, on Monday, you praised the EPA for forcing the Portland Generating Station in Pennsylvania to reduce air pollution emissions by over 80%. You stated in your press release on Monday that it is a priority of your Administration “to achieve improved air quality for all residents of New Jersey.”  That’s exactly why we need the EPA’s pollution rule.\n \n \nIt is also why the New Jersey business community supports the Cross-State Air Pollution Rule.  The New Jersey Chamber of Commerce and the state’s largest utility, PSE&G, understand that once states to our west are forced to clean up their power generation sector (the way New Jersey already has), our businesses will finally be able to compete on a level playing ground.    \n \n \nI hope you will ultimately decide to support the EPA’s rule so as not to put the interests of out-of-state polluters or the economic interests of neighboring states ahead of the public health or economic interests of New Jerseyans.   \n \n \nI urge you to publicly clarify this matter immediately because, as soon as Tuesday, the Senate may vote on a proposal by Senator Rand Paul to overturn this rule that is so vital to New Jersey.  Any indication that a northeastern Governor like yourself supports Senator Paul Rand's efforts could put the EPA’s Cross-State Air Pollution Rule and the public health of our state at risk.\n \n \nThank you,\n \n \nRobert Menendez\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ab6f1856-ccb8-49b1-bad8-c6faa2d73c80,\"Menendez: Tea Party Economics Puts Investment in Infrastructure on Road to Nowhere\n                    \n                      November 3, 2011\n                     Washington, DC –  US Senator Robert Menendez (D-NJ) spoke out on today’s efforts by the Republican leadership to block passage of another piece of the American Jobs Act that would put hundreds of thousands of Americans back to work and boost the nation’s competitiveness by investing in our country’s aging transportation infrastructure. The Rebuild America Jobs Act, an infrastructure bill, would provide $50 billion in immediate investments to improve roads, bridges, rails, and aviation and $10 billion to create a new infrastructure bank to leverage private funds for future projects.  While a majority of the Senate voted in favor of the measure, it failed to reach the 60 votes necessary to move the bill forward – as again, not a single Republican voted in favor of a job-creating measure. \n“Today, Senate Republicans had the chance to join us in putting hundreds of thousands of Americans back to work rebuilding our aging roads and bridges, fixing our runways and constructing new train tracks,” said Menendez.  “Instead, they chose to put investment in America’s infrastructure on a road to nowhere.  Once again, Tea Party Economics prevailed.”\nAccording to the White House estimates, the proposal would provide an immediate investment to New Jersey of $1.3 billion, supporting more than 17,000 local jobs. These resources would help the Garden State fix the major infrastructure deficiencies that have been identified by the American Society of Civil Engineers.  Today, 78 percent of New Jersey’s major roads are listed in poor or mediocre condition, 64 percent of its highways are chronically congested, and 36 percent of New Jersey’s bridges are structurally deficient or functionally obsolete.\nThe plan would be paid for with a 0.7 percent surtax on earnings over a $1 million a year.  \nAmericans overwhelmingly support infrastructure investment:  According to a recent CNN/ORC Poll, 72% of Americans support “increasing federal spending to build and repair roads, bridges and schools,” while only 28% oppose. This is up from 64% from September of this year. 70% of Independents and 54% of Republicans support funding our infrastructure; [CNN/ORC Poll, 10/17/11]  The Rockefeller Foundation infrastructure survey, conducted in February 2011, found that 72% of Americans support “Creating a National Infrastructure Bank that helps finance transportation projects that are important to the whole nation or large regions and that funds projects based on merit, not politics.” [Rockefeller Foundation, 2/14/11]\n“It is sad to see Republicans walk away in lockstep from an opportunity to invest in our infrastructure – and our future.  This used to be a bipartisan issue,” Menendez added.  “This is an incredibly disappointing day for the Garden State, our families, our communities and our future.”\nKEY PROVISIONS OF THE BILL\n•    Immediately Invests in Our Roads, Rails and Airports ($50 Billion):  The Senate bill provides $50 billion in immediate investments for highways, transit, rail and aviation, helping to modernize an infrastructure that now receives a grade of “D” from the American Society of Civil Engineers and putting hundreds of thousands of construction workers back on the job.  This investment will put people to work upgrading 150,000 miles of road, laying/maintaining 4,000 miles of train tracks, restoring 150 miles of runways, and putting in place a next-generation air-traffic control system that will reduce travel time and delays. The plan includes $27 billion to rebuild roads and bridges, $9 billion to repair transit systems, $5 billion for projects selected through a competitive grant program, $4 billion for construction of the high-speed rail network, $2 billion to improve airport facilities and $1 billion for a NextGen air traffic control system.  \n•    Establishes a National Infrastructure Bank ($10 Billion):  The Senate bill establishes a National Infrastructure Bank capitalized with $10 billion that will leverage private and public capital to help fund a broad range of infrastructure projects.\n•    Asks Millionaires to Pay Their Fair Share Without Adding a Dime to the Deficit: In order to create or save hundreds of thousands of construction jobs, the Senate bill imposes a 0.7% surtax on modified adjusted gross income in excess of $1 million for both single filers and married couples filing jointly.  The surtax is effective for taxable years beginning after December 31, 2012.\nJust yesterday, the White House released a report on the benefits of investment in infrastructure which cited New Jersey’s Ocean City Route 52 Causeway Bridge Replacement.   The project, anticipated to be completed next year, is one of the state’s largest projects and is critical because it is the emergency evacuation route for Ocean City.\nToday’s vote represents the third time Republicans have turned away efforts to jumpstart the economy.  In the last several weeks, they unanimously voted against the President’s American Jobs Act and against Democrats’ plan to put 400,000 teachers and tens of thousands of police officers and firefighters back to work – a plan sponsored by Senator Menendez.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3ff4609e-b27b-457c-9fdc-011dc658ba3c,\"Menendez Speaks on the Senate Floor in Support of Investment in Transportation Infrastructure\n                    \n                      November 2, 2011\n                     NJ Senator Speaks on partisan politics holding legislation and importance of the proposal for NJ: modernization of key infrastructure projects, local construction jobs \nVIDEO: http://www.youtube.com/watch?v=_XEccEYmGrE\nWashington, DC –  US Senator Robert Menendez (D-NJ) spoke on the Senate floor today to call for support of legislation to help Americans get back to work and boost the nation’s competitiveness by investing in our country’s aging transportation infrastructure. The Rebuild America Jobs infrastructure bill  would provide $50 billion in immediate investments to improve roads, bridges, rails, and aviation; support construction jobs; and create a new “infrastructure bank” to fund future projects.   Menendez addressed Republicans’ refusal to put aside political posturing and practice good governance on behalf of all Americans, and the negative impact this will have in America’s ability to compete and continue leading in the 21st century global economy.   The NJ Senator also spoke about the importance of this piece of legislation for key infrastructure projects in New Jersey, the security of local communities, and to help New Jerseyans get back to work. \n“I understand the need to reduce our deficit, but I do not understand the blind commitment to doing nothing -- refusing to invest in our future and create American jobs in the process -- and calling it good governance,” said Menendez.   “Let’s be honest with ourselves about the fact that good governance means investing in our nation, in our people, in our progress. Investing in our infrastructure is an investment in our future.”  \nAccording to the White House, the President’s proposal would support approximately 17,200 local jobs in New Jersey through the investment of at least $1.3 billion. These resources will help the Garden State fix the major infrastructure deficiencies that have been identified by the American Society of Civil Engineers in the following areas:  78 percent of New Jersey’s major roads are listed in poor or mediocre condition, 64 percent of its highways are chronically congested, and 36 percent of New Jersey’s bridges are structurally deficient or functionally obsolete.\nEarlier Today, the White House released a report on the benefits of investment in infrastructure which cited New Jersey’s ocean City Route 52 Causeway Bridge Replacement.   The project, anticipated to be completed next year, is one of the state’s largest projects and is critical because it is the emergency evacuation route for Ocean City.\nFULL TEXT OF MENENDEZ’S FLOOR REMARKS AS PREPARED FOR DELIVERY:\nRebuild America Jobs ActRemarks by Senator Robert MenendezSenate Floor – November 2, 2011\nIntroduction – Politically Charged Opposition to Rebuild America and Create JobsMr. President, I am amazed at the political posturing we’ve seen this year.\nI know – for our colleagues on the other side -- this election cycle has been driven by Tea Party economics that demand political purity over good governance. They have said “no” to just about everything, and now they refuse to invest in rebuilding our infrastructure, creating jobs, and keeping us competitive in the global economy.They know that roads, highways, and bridges in their states – in every state -- are in critical need of improvement, and yet we have to come here – time and again – day after day -- to fight back a politically-charged, ideologically-fueled opposition that says one thing, but does another.\nThe fact is, even those who oppose this legislation for political reasons know that good governance means investing in our future... it means putting Americans back to work... and it means keeping us competitive in the global economy.ChinaLet’s look at the competition.According to China’s Five Year Plan they have a range of investment priorities for the future:...clean energy technology; bio-technology -- including pharmaceutical and vaccine production; high tech equipment for manufacturing airplanes; a new space program and satellites......In fact, this week, they launched a satellite, the first step toward a China Space Station by the end of the decade.China is planning more high speed rail; next generation power plants and manufacturing facilities; new nuclear, solar, and wind energy technologies.The plan calls for building new energy efficient cars and adding 9,000 kilometers to their highway system; expanding their national high-speed rail system to 45,000 kilometers and building light rail systems in 21 urban metropolitan areas.And they are planning 6 new heavy material ports, adding 440 new 10,000 ton shipping berths; a second Beijing Airport and 11 new regional airports.This is some pretty stiff competition that will allow Chinese businesses to thrive.Yes, we have a deficit in this country, and an economy that was on the brink of ruin when this Administration inherited it......but -- even in this economy – we must plan for a competitive future.We invest just 2 percent of our GDP on infrastructure projects. Europe and China invest 5 percent and 9 percent respectively.The President today called on Congress to up the anti.\nThe American Jobs Act will invest $50 billion in our transportation infrastructure and $10 billion in a National Infrastructure Bank... putting hundreds of thousands of construction workers back on the job, working for America’s future. Clearly, opposition to the Rebuild America Jobs Act is not about good governance......It’s about politics. It’s about playing political games with the lives and livelihoods of American families.Mr. President, while China is planning major investments in retooling for their new economy, we can’t seem to agree to fix our roads.It’s like the story of Nero fiddling while Rome burned, except American families and businesses are the ones that are going to get burned in this story.President’s Proposal -- New Jersey ProjectsThe President today released a report that highlights the importance of rebuilding our roads, bridges, railways, and airports, and has cited important projects around the country... which will include 17,200 jobs in New Jersey.One of the projects the President’s report highlights as an example of success is in New Jersey is the Route 52 Causeway Bridge Replacement between Somers Point and Ocean City in Atlantic and Cape May Counties.This is a critical emergency evacuation route for Ocean City during floods and hurricanes......The new bridge eliminates the need to raise the drawbridge at the old section that is still being replaced.This is a critical $400 million project that is an investment in New Jersey, in our community, and in our infrastructure that will upgrade an old bridge to meet today’s needs, protect the community, and put people to work.We can make these investments and still find ways to responsibly reduce the deficit.Investment is not just about new projects of course. It is maintaining the crumbling infrastructure we currently have.36 percent of New Jersey’s bridges are structurally deficient or functionally obsolete.78 percent of New Jersey’s major roads are listed in poor or mediocre condition... 64 percent of New Jersey highways are chronically congested because of a 29 percent increase in vehicle travel on New Jersey’s highways from 1990 to 2007…all of that and we already have $13 billion worth of maintenance projects on hold because we don’t have the money to pay for them.That $13 billion is not to add any capacity to New Jersey’s transportation system. That is just to keep the status quo.We can begin the long-overdue process of maintaining, rehabilitating, and replacing if we pass this legislation.We can do it if we act together -- as a nation -- as we did in 1956.Eisenhower’s Federal Highways ActIn 1956, it was a Republican Administration that created the Interstate Highway System -- and now we can’t get one Republican to vote to maintain that System...In 2011, we can’t get one Republican to vote to keep us competitive and create jobs in the process.Mr. President, Republicans in Congress need to end the roadblock -- and fix the roads.They need to vote “yes” to providing every state with the resources they need to repair and rebuild aging roads and bridges and put people to work....Think of the jobs we could create nationwide, if we publically committed to investing enough to keep up and stay competitive with China -- even if China is able to meet only a fraction of its ambitious goals.\nIn 1956, under a Republican President, Dwight D. Eisenhower, Congress passed the Federal-Aid Highway Act. It took 35 years, but we committed this nation to building 46,876 miles of highway, one of the largest public works projects.Why? Because, as a young Army officer, Dwight Eisenhower saw the need.He drove across the country in an Army convoy that left Washington on July 7, 1919, went to Gettysburg, and took the old Lincoln Highway to San Francisco.On the journey, bridges cracked and had to be rebuilt, vehicles got stuck in the mud, equipment broke, and they didn’t arrive on the West Coast until September 6th....A two month journey that gave birth to the American interstate highway system.Let’s not be so short-sighted that we turn back the clock to the days of the Old Lincoln Highway.ConclusionMr. President, I understand the need to reduce our deficit, but I do not understand the blind commitment to doing nothing -- refusing to invest in our future and create American jobs in the process -- and calling it good governance.Good governance is what President Eisenhower did when he signed the Federal Highway Act into law.Now it’s up to us to invest in maintaining it.Let’s be honest with ourselves about the fact that good governance means investing in our nation, in our people, in our progress...Investing in our infrastructure is an investment in our future.Let’s put today’s ideologically-driven politics aside, and recall the practical Republican politics of President Eisenhower who saw a national need and had the will and the wisdom to put this nation to work to build it.I ask my colleagues: Where is that Grand Old Republican Party that united America behind an interstate highway system and put government and people to work to make it happen.Mr. President, if we put aside the ideological posturing -- if we are honest with ourselves about what good governance means and what it means to American families to invest in creating jobs and keeping us competitive, we would pass this legislation and make it happen again.With that, Mr. President, I yield the floor.\n                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=beb5fd5c-0267-4184-ac20-c46265ac2679,\"Menendez, Democrats:  Super Committee Must End Super Subsidies to Big Oil\n                    \n                      November 2, 2011\n                     With the per-gallon price of gas well over $3.40, the five Biggest Oil companies made over $33 billion in earnings for the third-quarter of 2011, bringing their overall earnings for 2011 to over $100 billion.     Americans want to know why they are expected to sacrifice to lower the deficit while the Big 5 rake in billions of dollars in subsidies that pad their already record profits.  It’s time for Big Oil to pay their fair share to reduce the deficit and invest in America.  The Super Committee needs to end these Super Subsidies.\n \nWashington, DC -- U.S. Senator Robert Menendez (D-NJ) joined House and Senate Democrats and leaders of conservation groups to call on the Joint Select Committee on Deficit Reduction – the Super Committee – to end subsidies for Big Oil as part of any proposal to reduce the nation’s deficit. \n \n \n“This is not class warfare. This is common sense. We want the oil companies and their shareholders to do well, but we should not be spending 21-billion-taxpayer-dollars to unfairly reward their tremendous success,” said Menendez.  “We’re simply looking for a little fairness.  We’re here today to say that super-oil’s super subsidies should be targeted by the Super-Committee – and ended now.”\n \n \n\nBig Oil’s   2011 Quarterly Profits\n\n\nCompany\n\n\nQ1: 2011 Earnings   (billions)\n\n\nQ2: 2011 Earnings   (billions)\n\n\nQ3: 2011 Earnings   (billions)\n\n\nTotal (billions)\n\n\nConocoPhillips\n\n\n$3.00\n\n\n$3.4\n\n\n$2.6\n\n\n$9.00\n\n\nExxon Mobil\n\n\n$10.65\n\n\n$10.68\n\n\n$10.33\n\n\n$31.66\n\n\nChevron Corp\n\n\n$6.21\n\n\n$7.73\n\n\n$7.83\n\n\n$21.77\n\n\nShell\n\n\n$6.93\n\n\n$8.0\n\n\n$7.24\n\n\n$22.17\n\n\nBP\n\n\n$5.48\n\n\n$5.31\n\n\n$5.14\n\n\n$15.93\n\n\nTotal (billion):\n\n\n$32.27\n\n\n$35.12\n\n\n$33.14\n\n\n$100.53\n\n \nSource: Corporate Quarterly Earnings Statements\n \n Chevron Corp. said its third-quarter earnings more than doubled despite lower production, becoming the latest oil company to show the benefit of higher crude prices… California-based Chevron reported a quarterly profit of $7.83 billion, or $3.92 a share, up from $3.77 billion, or $1.87 a share, a year earlier. [Wall Street Journal, 10/31/2011]\n \nChevron CEO Chief Executive John Watson confirmed Wednesday that his company plans      to spend about $5 billion a year to repurchase its shares.  [Fox Business, 10/19/2011]\n \n Last week Royal Dutch Shell PLC announced $7.24 billion in third quarter earnings, surpassing last year’s third quarter total by more than 42%.  [Royal Dutch Shell Press Release]\n \nDuring the      third quarter Royal Dutch Shell PLC purchased $800 million worth of shares      of its common stock.  [Royal Dutch Shell      Press Release]\n \n Exxon Mobil reported quarterly earnings of $10.33 billion on Thursday, a surge of 41% from a year earlier. [CNN, 10/27/2011]\n \nDuring the      third quarter of 2011, Exxon Mobil Corporation purchased 72 million shares      of its common stock for the treasury at a gross cost of $5.5 billion. [Exxon Press Release, 10/27/2011]\n \n In 2010,      ExxonMobil’s effective tax rate was 18% while the average household paid      21% —15% more than Exxon’s tax rate. [Washington      Post, 05/11/2011]\n \n Last week, ConocoPhillips reported third-quarter earnings of $2.6 billion. [CononcoPhillips Press Release, 10/26/2011]\n \nDuring the      third quarter of 2011, ConocoPhillips repurchased approximately 46 million      of its own shares, or 3 percent of shares outstanding, for $3.2 billion. [CononcoPhillips Press Release, 10/26/2011]\n \n In 2010,      ConocoPhillips' Chairman and CEO James Mulva received a 25-percent hike in      compensation, netting him $17.9 million.  Meanwhile, retired former      President John Carrig received a $14.4 million pay package. [Houston Chronicle, 07/25/2011]\n \n Last week, oil giant British Petroleum PLC announced third quarter earnings of $5.3 billion beating  analysts' estimates by about $300 million.  Earnings were 75% higher than third quarter 2010 when it dealt with expenses related to the Deepwater Horizon disaster. [BP Press Release, 10/25/2011]\n \nBP has only paid out roughly $7 billion of the $20 billion fund set up to pay compensation claims to economic victims in Gulf of Mexico for the deadliest oil spill in U.S. history. [AFP, 10/13/2011]\n \n Tax subsidies for Big Oil “have helped make the oil industry one of the most profitable, when measured by cash flow and return on investment.” [Washington Post, 05/11/2011]\n \nEx-Shell CEO      Says Big Oil Can Live Without Subsidies - “In      the face of sustained high oil prices it was not an issue—for large      companies—of needing the subsidies to entice us into looking for and      producing more oil.” [National      Journal, 02/11/2011]\n \n Former Exxon      CEO Says Big Oil Tax Subsidies Make No Difference – “`I don't think our company asked for any incentives for exploration,’      Lee Raymond, then Exxon Mobil's chairman, said at a Senate hearing last      year. ``As far as my company is concerned, it doesn't make any difference      if they're there or not.''’ [Bloomberg,      05/19/2006]\n \n In 1984, Ronald Reagan proposed eliminating the very same tax subsidies for Big Oil that Republicans now protect. [Washington Post, 05/11/2011\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5cadb3f7-5953-43d5-bc3d-d034a764aa5d,\"Lautenberg, Menendez Announce More Than $72 Million for Low Income Home Energy Assistance Program in New Jersey\n                    \n                      November 1, 2011\n                     WASHINGTON – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Health and Human Services (HHS) has released $72.1 million for the Low Income Home Energy Assistance Program (LIHEAP) in New Jersey.  The program provides critical assistance to low-income families who struggle each winter to pay their energy bills.\n \n \n“This federal funding offers New Jerseyans critical assistance to pay their energy bills and keep their families warm,” said Senator Lautenberg, a member of the Senate Appropriations Committee, which funds HHS.  “No family should ever have to choose between heating their home or putting food on the table.  As winter approaches and temperatures begin to drop, this funding will provide relief for hundreds of thousands of New Jersey families.”\n \n \n“LIHEAP literally provides a lifeline for hundreds of thousands of NJ seniors, low income families with children and laid off workers who simply cannot afford to heat their homes.  If this weekend’s storm is any indication, this winter is going to be incredibly tough, and combined with a rough economy, we will likely see a record number of applications for help.  That’s why Senator Lautenberg and I pushed so hard to get this funding out of Washington and into New Jersey’s homes as soon as possible,” said Senator Menendez. \n \n \nOn October 18th, Senators Lautenberg and Menendez joined a bipartisan group of their Senate colleagues in sending a letter to HHS Secretary Kathleen Sebelius requesting the quick release of LIHEAP funding so that state agencies could begin determining the level of heating assistance for this coming winter.\n \n \nLIHEAP assists qualified families with their home energy needs such as heating in the winter, cooling their homes in the summer, and insulating their homes to make them more efficient and reduce their energy costs.  According to the Campaign for Home Energy Assistance, more than 380,000 people in New Jersey received assistance heating their homes last winter.  For more information on the LIHEAP program in New Jersey, call 1-800-510-3102 or visit http://www.state.nj.us/dca/divisions/dhcr/offices/heausfincomefact.html\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c71c47c7-88ec-4031-878f-fe0f5825525e,\"Lautenberg, Schumer, Menendez, Gillibrand Announce Gateway Tunnel Funding Approved in the Senate\n                    \n                             $15 Million Approved For Much-Needed NEW Trans-Hudson Crossing\n                    \n                      November 1, 2011\n                     WASHINGTON – U.S. Senators Frank R. Lautenberg (D-NJ), Charles E. Schumer (D-NY), Robert Menendez (D-NJ) and Kirsten Gillibrand (D-NY) today announced the Senate has approved a funding measure that includes a minimum of $15 million for Amtrak to begin design and engineering work on the Gateway Tunnel project. \n \n \n“The Gateway Tunnel is critical for New Jersey commuters and the economy of our state and the entire region,” Lautenberg stated.  “The existing tunnel is more than a century old and not capable of adequately servicing our region’s growing number of transit riders.  This funding will allow Amtrak to begin moving the Gateway Tunnel project forward to create jobs, increase access to commuter trains, and bring America’s first real high-speed rail project to New Jersey and the Northeast Corridor.”\n \n \n“Building our mass transit infrastructure is vital to the long-term economic competitiveness and growth of our metropolitan region,” Schumer stated.  “The fact that even Amtrak is working to make this happen shows how important it is to the region's job growth and economic future. This proposal is a positive step in the effort to cover a gaping hole in our cross Hudson transportation system,” \n \n \n“People crossing the Hudson River are facing outrageous tolls, traffic jams, and train service that is getting less and less reliable,” Menendez stated.  “The Gateway Project will add enormous capacity across the Hudson and also pave the way for true high speed rail for the entire region.  This will create jobs now and unlock enormous economic opportunity in the future.”\n \n \n“Investing in our transportation infrastructure is critical to our nation’s long-term economic viability,” said Senator Gillibrand, a member of the Senate Environment & Public Works Committee. \"\"There is no doubt, we must expand high speed rail to connect more travelers, workers and businesses, create new construction jobs immediately and provide an economic engine to fuel our growth for the long term by relieving congestion and increasing the reliability of service.”\n \n \nIncreased traffic and congestion into midtown Manhattan and in New York City threatens the regional economy.  The existing 100-year-old rail tunnels into midtown Manhattan are already operating at capacity during rush hour, and ridership is expected to double in the next two decades.  \n \n \nTo address these immediate concerns following the cancellation of the ARC Tunnel project, Amtrak expedited plans to build the new trans-Hudson rail tunnels.  The Gateway Tunnel project is expected to increase NJ Transit commuter rail capacity into New York by 65 percent (increase from 20 to 33 trains per hour during peak hours), in addition to adding eight additional Amtrak trains during peak hours.  \n \n \nIn addition to increasing the number of NJ Transit and Amtrak trains into and out of New York, the project will also expand high-speed rail service on the Northeast Corridor.  \n \n \nThe funding bill that contains $15 million for Gateway must now be merged with the House of Representatives’ version of the bill.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ee176595-f6e3-4967-9c13-1bdf507b0bca,\"Menendez in Strong Opposition to Palestine UNESCO Membership\n                    \n                            Calls for immediate halt in U.S. funding as mandated by law\n                    \n                      October 31, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, condemned today’s vote by UNESCO in Paris to make Palestine a full member of the organization, the first international organization to do so since September, when the Palestinians applied at the UN Security Council for full UN membership.  A total of 107 member countries voted in favor, 14 against, and 52 abstained. The United States voted against the UNESCO measure, considering it a distraction in finding a long-term solution to the Israeli-Palestinian conflict.\n \n \n“Today’s UNESCO vote to recognize Palestine as a Member State is an unacceptable attempt by the Palestinians to circumnavigate the peace negotiation process,” said Menendez.  “This is a symbolic vote, but one that will harm the attempts at restarting negotiations between Israel and the Palestinians.  I strongly urge the State Department to enforce U.S. law and immediately cut off all funding to UNESCO and any other international organization that recognizes a Palestinian state.  The Palestinian leadership is aware of U.S. law on this issue and it is very unfortunate that it is forcing the U.S. to take such drastic steps.”\n \n \nU.S. law prohibits funding for UN agencies in which a Palestinian state is given membership. The United States currently pays 22 percent or $80 million annually of UNESCO’s budget.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=74a783b8-4b7a-4705-9c71-6790934c0179,\"U.S. Senator Robert Menendez Joins EPA, Army Corps of Engineers At Superfund Site Cleanup Launch\n                    \n                            The site was home to a pesticide and herbicide manufacturer; including those used in “Agent Orange” \n                    \n                      October 31, 2011\n                     Newark, NJ – Today, U.S. Senator Robert Menendez joined EPA and Army Corps of Engineers officials to launch cleanup operations on the Passaic River.  The EPA designated Diamond Alkali Superfund Site located at 80-120 Lister Avenue was home to a pesticide and herbicide manufacturing plant that included chemicals used to formulate the defoliant “Agent Orange,” known for injuring close to 1 million people including U.S. service members exposed to it  during the Vietnam War.    \n \n \n“The construction of the sheet-piling at two locations along the river that will enclose the 200 cubic yards of contaminated sediment that will eventually be dredged and taken away is only the first step,” said Senator Menendez. “Cleaning up the Passaic River is a major victory for the people of New Jersey and for all of us who take our role as caretakers of our environment seriously.”  \n \n \nThe construction of the enclosure that starts today will be followed by dredging in March of 2012. Sediment will be dried at a facility also in Newark, and will be moved out of state.  Terra Solutions and the Passaic River Community Advisory Group worked with the EPA to ensure a Community Health and Safety Plan was in place for the removal project.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9bcbe6e9-bba5-4df8-8842-47fa5a622c58,\"Menendez Unveils Gloucester Township Solar Project\n                    \n                            Clean Energy legislation authored by Senator Menendez funded the Township’s project\n                    \n                      October 28, 2011\n                     BARRINGTON- US Senator Robert Menendez (D-NJ) today joined Gloucester Township Mayor David Mayer and local leaders to announce the official dedication of the Township’s Solar Project, which includes installation of solar panels on the Municipal Building, saving money, conserving energy and creating jobs.  The Township’s sustainability efforts were funding by the Energy Efficiency Conservation Block Grant (EECBG) initiative which was created by Menendez and has brought over $75 million in federal funding to New Jersey, including the $564,900 grant to Gloucester Township. \n \n \n“This solar panel project is a win for everyone. It promotes clean energy for the township, reduces reliance on fossil fuels, and creates jobs,” said Menendez.  “It puts Gloucester Township on track for Sustainable New Jersey designation and makes Gloucester a model for the rest our state. This is what the future looks like – greener, cleaner, and more energy efficient. I am so pleased to have been a part of this effort,” he added. \n \n \nThe township is using the grant for several green initiatives, the largest of which is the design and installation of the Solar System on the roof of the Municipal Building. The panels are expected to save taxpayers an average of $4900 a year on electric usage. In addition, the Solar System will make Gloucester eligible to sell “Solar Renewable Energy Credits” opening a new revenue source for the community.\n \n \n“I appreciate Senator Menendez’s work in creating the Energy Efficiency and Conservation Block Grant program and securing funding in the American Recovery and Reinvestment Act. Renewable energy is not only a good for our environment, but is sound fiscal policy for New Jersey’s municipalities”, added Mayor David R. Mayer. “This project will not only create energy savings, but will also result in additional income for Gloucester Township, easing the burden on our working families.”\n \n \nMenendez created the Energy Efficiency and Conservation Block Grant  program because he saw the need for a way to help local governments create green jobs, address high energy costs, and promote energy security.  Menendez understood how important this initiative was to Mayors in every corner of the state and worked to secure $3.2 billion in funding for the program as part of the Economic Recovery Bill.   This means New Jersey will receive approximately $75 million in total funding to make energy efficiency improvements, invest in energy conservation, or invest in renewable energy.\n \n \nGloucester Township is also pursuing additional efforts funded by the Energy Efficiency and Conservation Block grant include energy efficient LED lamps for traffic signals in the township and updates to the HVAC control system.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fc0888c6-abf4-45da-b676-59f64f4a0909,\"Senators Urge Innovative REO Rehab-to-Rent Strategy to Help Stabilize Housing\n                    \n                      October 28, 2011\n                     WASHINGTON, DC – In an effort to boost the economy, create jobs, and stabilize neighborhoods, 33 U.S. Senators are asking the Obama Administration and the Federal Housing Finance Agency (FHFA) to swiftly develop an efficient and effective real estate owned (REO) management strategy to make better use of vacant foreclosed homes.\n \n Led by Senators Jack Reed (D-RI), Tim Johnson (D-SD), and Bob Menendez (D-NJ), the senators today wrote a letter to the U.S. Department of the Treasury, the U.S. Department of Housing and Urban Development (HUD), and FHFA stating: “We urge you to analyze, quickly and diligently, the input you have received so that all REO properties under your control may be best managed to produce the most value for Fannie Mae, Freddie Mac, and FHA.  As part of this analysis, we ask that you also keep in mind the importance of looking for the most effective ways to stabilize neighborhoods and housing values.”\n \n With 10.4 million households in jeopardy of defaulting on their mortgages at the same time that the demand for rental housing is increasing, Americans are facing pressure on all fronts in the housing market.\n \n Since 2010, Senator Reed has championed a proposal to make better use of REO properties by converting vacant foreclosed homes into affordable, energy-efficient rental units.  In August 2011, FHFA, Treasury, and HUD issued a formal Request for Information (RFI) soliciting public feedback and investor ideas for how to sell or rent REO properties.  On September 20, the Banking Subcommittee on Housing, Transportation, and Community Development, chaired by Senator Menendez, held a hearing on “New Ideas to Address the Glut of Foreclosed Properties,”  where expert witnesses testified that a more effective REO management strategy will help put us on a path towards greater economic stability.  \n \n “There are too many foreclosed homes, many of which are unoccupied, and an increasing number of Americans who are in need of affordable rental housing.  With the other side of the aisle seemingly embracing a “let it fall” policy when it comes to legislative housing solutions,  the American people still need creative, proactive strategies to fix the economy.  Developing an innovative REO initiative could help turn lemons into lemonade by creating new opportunities for businesses and investors while simultaneously increasing the supply of rental housing and reducing foreclosures,” said Senator Reed.\n \n “We need to do everything we can to help get the housing market back on track, and that includes exploring creative proposals to address the excess supply of foreclosed properties,” said Chairman Johnson. “This proposal is a potential win, win, win.  It would provide Americans needed rental options, help struggling neighborhoods recover, and protect taxpayers from additional losses.  I want to thank Senator Reed for his leadership on this very important issue and Senator Menendez for continuing to explore ways to help our housing market.”\n \n “We need to fix the housing market to fix the broader economy, and getting the government’s foreclosed homes into people’s hands is a key part of that.  We have explored this issue in my Housing Subcommittee.  I remain committed to finding a solution, and I am encouraged that the Obama Administration is doing the same,” said Senator Menendez.\n \n The full text of the letter follows:\n \n October 27, 2011\n \n The Honorable Timothy F. Geithner                              \n \nThe Honorable Shaun Donovan Secretary                                                                                  \n \nThe Honorable Edward J. DeMarco\n \n Dear Secretary Geithner, Secretary Donovan, and Acting Director DeMarco:\n \n We write regarding the Request for Information (RFI) put forward by the Department of the Treasury, the Federal Housing Administration (FHA), and the Federal Housing Finance Agency (FHFA), on innovative and efficient ways in which to sell or rent real estate owned (REO) properties owned by Fannie Mae, Freddie Mac, and FHA.  We urge you to analyze, quickly and diligently, the input you have received so that all REO properties under your control may be best managed to produce the most value for Fannie Mae, Freddie Mac, and FHA.  As part of this analysis, we ask that you also keep in mind the importance of looking for the most effective ways to stabilize neighborhoods and housing values. \n \n We all know too well that our housing markets are under severe stress.  With 7.5 million homes in the foreclosure process since 2007 while other homeowners find themselves very much underwater, foreclosures have taken a heavy toll on too many Americans.  Owning a home has become so difficult that our nation’s homeownership rate dropped to 65.9% in the 2nd quarter of this year, which is the lowest level since 1998.  At the same time, the national rental vacancy rate has decreased from 10.6% in the second quarter of 2010 to 9.2% in the 2nd quarter of this year.   With 10.4 million households in jeopardy of defaulting on their mortgages at the same time that the demand for rental housing is increasing, Americans are facing pressure on all fronts in the housing market. \n \n As Federal Reserve Board Governor Elizabeth Duke recently stated, “we, as a nation, currently have a housing market that is so severely out of balance that it is hampering our economic recovery.”  It is clear that we need to gain traction in our housing market so that we can anchor a sustainable economic recovery that actually reaches and helps the middle class. We continue to believe, especially with the benefit of a recent hearing in the Senate Subcommittee on Housing, Transportation, and Community Development on “New Ideas to Address the Glut of Foreclosed Properties,”  that a more efficient and effective REO management strategy will help put us on a path towards stability.   \n \n Indeed, developing a successful REO management strategy is critical given the findings of a recent evaluation by the Federal Housing Finance Agency Office of Inspector General, which stated: \n \n “FHFA has yet to conduct a targeted examination of [Fannie Mae’s and Freddie Mac’s (collectively, the Enterprises)] management of their REO inventories, despite the surging number of foreclosures since 2007.  For example, Fannie Mae’s REO inventory increased in size by more than 6 times, growing from 25,125 properties in January 2007 to 162,489 at the end of 2010. REO represents a significant financial risk to the Enterprises since they incur taxes and fees on the properties in their inventories, these costs increase the longer it takes to resell the REO, and all the while the value of the properties may be declining. FHFA cited the Enterprises’ REO management as a primary reason that it has classified operational risks at both entities as a “Critical Concern” from 2008 through early 2011.  FHFA-OIG views the fact that FHFA has not examined a critical risk area like REO as indicative of the adverse impact of staffing shortages on the Agency’s examination program.”\n \n As part of the RFI process, we urge FHFA to do everything within its powers to take this opportunity to address these concerns head on.  We also ask that FHFA, Treasury, and FHA respond to these questions:\n \n •             When do you expect to finish reviewing the RFI submissions? \n \n •             Are there any particular strategies or proposals that appear promising at this moment? \n \n •             What appear to be the greatest challenges and concerns? \n \n •             Once you have finished reviewing and analyzing the RFI submissions, what is the likely next step, and when do you expect to take this next step?\n \n We thank you for your consideration and look forward to your response.  Please let us or our staffs know if we can be helpful to you or your staffs. \n \n Sincerely,\n \n Reed\n \nJohnson\n \nMenendez\n \nDurbin\n \nSchumer\n \nMurray\n \nInouye\n \nBaucus\n \nLevin\n \nKerry\n \nHarkin\n \nKohl\n \nLieberman\n \nAkaka\n \nFeinstein\n \nTester\n \nWarner\n \nMerkley\n \nBrown (OH)\n \nHagan\n \nBennet\n \nBill Nelson\n \nBlumenthal\n \nBegich\n \nWhitehouse\n \nSanders\n \nGillibrand\n \nShaheen\n \nKlobuchar\n \nLautenberg\n \nCasey\n \nLeahy\n \nFranken\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=42a3bd09-eac0-4305-b6ea-c9aaf43f7d9e,\"Menendez Extends Diwali Greetings\n                    \n                            October 26 marks the beginning of Diwali, The Festival of Lights, celebrated by millions around the world \n                    \n                      October 25, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today released the following statement on Diwali, an important holiday for Hindus, Sikhs, and Jains in New Jersey and around the world.   Last week, the U.S. Senate unanimously agreed to a resolution, introduced by Senators Menendez, Cornyn and Warner, recognizing the religious and historical significance of the festival of Diwali and expressing the Senate's deepest respect for Indian Americans and South Asian Americans, and other observers around the world on this occasion.\n \n \n\"\"Once again, I am glad to join millions in the Garden State and around the world in celebrating Diwali, the Festival of Lights. This holiday inspires us to recognize our common humanity and reach for values that transcend borders, nationalities, and cultures – the victory of good over evil, knowledge over ignorance, and light over darkness.  It is also an opportunity to celebrate India’s great history, culture, and people and the enduring bonds and shared democratic values that have allowed the US and India to work together to reach common goals.  My best wishes on this day to those who observe this important holiday in India and throughout the world as they join together to pray and celebrate.”\n \n \nThe full text of Senate Resolution 291 is below:\n \n \n \nRESOLUTION\n \nRecognizing the religious and historical significance of the festival of Diwali.\n \nWhereas Diwali, a festival of great significance to Indian Americans and South Asian Americans, is celebrated annually by Hindus, Sikhs, and Jains throughout India, the United States, and the world;\n \nWhereas Diwali is a festival of lights, during which celebrants light small oil lamps, place the lamps around the home, and pray for health, knowledge, peace, wealth, and prosperity in the new year;\n \nWhereas the lights symbolize the light of knowledge within the individual that overwhelms the darkness of ignorance, empowering each celebrant to do good deeds and show compassion to others;\n \nWhereas Diwali falls on the last day of the last month in the lunar calendar and is celebrated as a day of thanksgiving for the homecoming of the Lord Rama and worship of Lord Ganesha, the remover of obstacles and bestower of blessings, at the beginning of the new year for many Hindus;\n \nWhereas for Sikhs, Diwali is celebrated as Bandhi Chhor Diwas (The Celebration of Freedom), in honor of the release from prison of the sixth guru, Guru Hargobind; and\n \nWhereas for Jains, Diwali marks the anniversary of the attainment of moksha, or liberation, by Mahavira, the last of the Tirthankaras (the great teachers of Jain dharma), at the end of his life in 527 B.C.: Now, therefore, be it\n \nResolved, That the Senate--\n \n(1) recognizes the religious and historical significance of the festival of Diwali; and\n \n(2) in observance of Diwali, the festival of lights, expresses its deepest respect for Indian Americans and South Asian Americans, as well as fellow countrymen and diaspora throughout the world on this significant occasion.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=739a5845-ae69-4942-96fb-d9089a27496f,\"Menendez Extends Diwali Greetings\n                    \n                            October 26 marks the beginning of Diwali, The Festival of Lights, celebrated by millions around the world \n                    \n                      October 25, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today released the following statement on Diwali, an important holiday for Hindus, Sikhs, and Jains in New Jersey and around the world.   Last week, the U.S. Senate unanimously agreed to a resolution, introduced by Senators Menendez, Cornyn and Warner, recognizing the religious and historical significance of the festival of Diwali and expressing the Senate's deepest respect for Indian Americans and South Asian Americans, and other observers around the world on this occasion.\n \n \"\"Once again, I am glad to join millions in the Garden State and around the world in celebrating Diwali, the Festival of Lights. This holiday inspires us to recognize our common humanity and reach for values that transcend borders, nationalities, and cultures – the victory of good over evil, knowledge over ignorance, and light over darkness.  It is also an opportunity to celebrate India’s great history, culture, and people and the enduring bonds and shared democratic values that have allowed the US and India to work together to reach common goals.  My best wishes on this day to those who observe this important holiday in India and throughout the world as they join together to pray and celebrate.”\n \n The full text of Senate Resolution 291 is below:\n \n RESOLUTION\n \nRecognizing the religious and historical significance of the festival of Diwali.\n \nWhereas Diwali, a festival of great significance to Indian Americans and South Asian Americans, is celebrated annually by Hindus, Sikhs, and Jains throughout India, the United States, and the world;\n \nWhereas Diwali is a festival of lights, during which celebrants light small oil lamps, place the lamps around the home, and pray for health, knowledge, peace, wealth, and prosperity in the new year;\n \nWhereas the lights symbolize the light of knowledge within the individual that overwhelms the darkness of ignorance, empowering each celebrant to do good deeds and show compassion to others;\n \nWhereas Diwali falls on the last day of the last month in the lunar calendar and is celebrated as a day of thanksgiving for the homecoming of the Lord Rama and worship of Lord Ganesha, the remover of obstacles and bestower of blessings, at the beginning of the new year for many Hindus;\n \nWhereas for Sikhs, Diwali is celebrated as Bandhi Chhor Diwas (The Celebration of Freedom), in honor of the release from prison of the sixth guru, Guru Hargobind; and\n \nWhereas for Jains, Diwali marks the anniversary of the attainment of moksha, or liberation, by Mahavira, the last of the Tirthankaras (the great teachers of Jain dharma), at the end of his life in 527 B.C.: Now, therefore, be it\n \nResolved, That the Senate--\n \n(1) recognizes the religious and historical significance of the festival of Diwali; and\n \n(2) in observance of Diwali, the festival of lights, expresses its deepest respect for Indian Americans and South Asian Americans, as well as fellow countrymen and diaspora throughout the world on this significant occasion.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3e0d2c28-1c22-4b1f-8c3d-341a65f19f8c,\"Menendez Praises FHFA for Reducing Barriers to Help Homeowners Refinance \n                    \n                            Senator had called for changes to expand eligibility, reduce fees and allow homeowners to take advantage of today’s historically low rates\n                    \n                      October 24, 2011\n                     WASHINGTON, DC – U.S. Senator Robert Menendez (D-NJ) today praised the Federal Housing Finance Agency (FHFA) for changes to the Home Affordable Refinance Program (HARP) that will reduce fees for millions of additional homeowners and allow them to take advantage of today’s historically low interest rates to refinance their homes.\n \n \n“I welcome these changes to HARP and thank the Obama Administration for working with the Federal Housing Finance Agency to implement them,” said Menendez.  “As I have previously called for, millions of additional homeowners will soon be able to refinance at today’s historically low interest rates and without many of the fees that were previously in place.  This will help keep many families who have paid their mortgage each month in their homes, put money back into their pockets, and further help our economic recovery.”\n \n \nAs Chairman of the Senate Subcommittee on Housing, Transportation and Community Development, Senator Menendez has led the charge to implement these and other changes to help responsible homeowners.  He chaired a hearing on this topic, cosponsored similar legislation and wrote to the Obama Administration about making these changes.\n \n \nFHFA announced the following changes to the HARP program which will be implemented by mid-November:\n \n \nFull elimination of risk-based fees that Fannie Mae and Freddie Mac charge on refinances for borrowers already in Fannie Mae or Freddie Mac loans;\nFull elimination of loan to value limits, so no borrower will be disqualified based solely on how much value their home has lost;\nAgreements with the largest banks to ensure second liens do not prevent a refinance of the primary mortgage;\nA streamlining of the underwriting process and reduction of many of the other fees borrowers typically pay;\nExtending the end date for HARP until 12/31/13 for Fannie Mae and Freddie Mac loans sold on or before 5/31/09. \n \n \nHARP was announced by the Obama Administration roughly two years ago and is a foreclosure prevention program that targets borrowers who are current on their mortgages, yet still underwater.  Many homeowners have found themselves underwater, often through no fault of their own, because of the broad decline in home prices nationwide.  Refinancing can be difficult for these borrowers because of the lack of equity in their homes and also because of the upfront fees that are charged when a refinance is completed.  With interest rates having hit an all-time low of 3.94 percent, there are millions of homeowners whose loans are guaranteed by Fannie Mae and Freddie Mac paying interest above 5.0 percent that could benefit from these changes.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6a2217f6-7ee2-4f39-bf2e-7327dc2791b7,\"Menendez on the President's Announcement of Troop Withdrawal from Iraq\n                    \n                      October 21, 2011\n                     Newark, NJ – U.S. Senator Robert Menendez today issued the following statement regarding President Obama’s announcement of troop withdrawal from Iraq by the end of the year. \n“Today's announcement by President Obama, bringing home American troops from Iraq, is historic. As someone who voted against the war while in the House of Representatives, I believe this was the right decision.  This was a war of choice -- not necessity-- and it is time to bring home the nearly 40,000 troops to their families.  \n“Today, we also recognize that more than 4,000 families across our nation will not welcome home their sons and daughters from this war and tens of thousands more troops will return with life-long injuries sustained during their service.  We extend our hand in humble gratitude to these troops and their families for their enduring sacrifices and we must now be ready to ensure that a grateful nation provides the employment opportunities, health care, and benefits that those returning deserve.”\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1400e57a-7000-4ae1-80d3-6f4383fc0196,\"Menendez Announces Extension of Deadline to Register for Hurricane Irene FEMA Disaster Assistance \n                    \n                            Those affected by the storm and flooding, Aug. 27 – Sept. 5, now have until Nov. 30 to register for assistance\n                    \n                      October 21, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today announced that the Federal Emergency Management Agency (FEMA) is extending the registration deadline for renters, homeowners and business owners who suffered damage from Hurricane Irene until November 30.\n \n “I’m so glad this window of opportunity has been extended and encourage all New Jerseyans who haven’t registered for assistance to do so today online or by calling FEMA’s toll free number,” said Menendez.\n \n Eligible individuals who haven’t registered yet, can do so by visiting www.disasterassistance.gov, m.fema.gov or calling the toll-free number, 800-621-3362 (FEMA). Those with access or functional needs and who use a TTY may call 800-462-7585, use 711, or Video Relay Service to call 800-621-3362. Telephone lines are open from 7 a.m. to 10 p.m. ET; multilingual operators are available.\n \nDisaster assistance for eligible individuals include: grants to cover temporary housing needs, essential home repairs, and other serious disaster-related expenses not covered by insurance or other sources. Low-interest disaster loans from the U.S. Small Business Administration (SBA) are also available for homeowners, renters, and business owners to repair or replace property.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d1cbf00a-7337-425c-9088-71c8af71799b,\"Menendez Welcomes Transition in Libya;  Urges TNC to be Inclusive and to Share Information with the U.S. on the Pan Am 103 Bombing\n                    \n                      October 20, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, today released the following statement on confirmed reports of Moammar Gaddafi’s death:\n“The end of Libyan dictator Moammar Gaddafi’s rule represents an opportunity for the Libyan people and state to embrace democratic reform and start a new chapter in Libya’s history.\n“As the sponsor the No-Fly Zone Resolution, I am proud of the role that the United States played in ending Qaddafi’s reign of terror and I am hopeful that the Transitional National Council and any interim authority will seek to create a government that is inclusive in its representation and democratic in nature – a government that will be partner in the international community.  This is a new enterprise for Libya, but the United States is ready to work with them on the structure of what their new government will look like and to provide them with any technical expertise they may need.\n“Today, I hope, will brings some measure of justice for families who lost a loved one in the Pan Am 103 bombing.  I also hope we will be able to find in the new government a partner willing to work with the United States to bring to justice the perpetrators of that attack which killed 270 citizens, including 34 from New Jersey.  We know that Megrahi didn’t act alone and I will continue to press the new government until all the facts are revealed, all the truth is known, and we can bring some sense of final closure to the hundreds of families who are still waiting. ”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d5996f16-714b-4afe-8080-d5d7d9e1ca1a,\"Menendez, Lautenberg Introduce Legislation to Honor Alice Paul with Congressional Gold Medal\n                    \n                            Commemorates Anniversary of Hunger Strike for Women’s Rights\n                    \n                      October 20, 2011\n                     WASHINGTON - U.S. Senators Robert Menendez (D-NJ) and Senator Frank R. Lautenberg (D-NJ) today introduced a resolution to posthumously award Alice Paul the Congressional Gold Medal. Paul, a New Jersey native, led the successful effort to introduce and pass the 19th Amendment and was a tireless advocate of women's rights around the world.  On this day 94 years ago, Paul began her hunger strike in protest of inequal rights for women. Current cosponsors of this resolution are: Senators Lautenberg, Stabenow, Gillibrand, McCaskill, Boxer, Akaka, Begich, Mikulski, Klobuchar and Collins.\n \n“Alice Paul was someone who, quite simply, made history happen. She fought tirelessly for a cause she believed in.  Now it is my chance to fight for something I believe in, and that is to honor a woman who represents American democracy in its purest form,” Menendez said.  “On October 20th, 1917, Alice Paul went on a hunger strike to protest for women’s rights.  That was ninety four years ago, and now is the time to show our appreciation.  Her legacy opens the door not only to women, but to everyone looking for equal opportunity.  The Congressional Gold Medal is the least we can do to honor a woman who made history happen, and in the process changed our nation forever.”\n \n“Alice Paul is among New Jerseys’ proudest daughters, but she is also a national pioneer that paved the way for women’s rights in America,” said Lautenberg.  “It is because of Alice Paul’s courage and leadership that American women have the right to vote and have become a powerful voice in the United States and around the world.  Alice Paul is an inspiring American figure that is deserving of the Congressional Gold Medal.”\n \n \nValerie Buickerwood, Executive Director of the Alice Paul Institute, had this to say about the pending legislation: “The Alice Paul Institute is delighted that Senator Menendez is sponsoring and Senator Lautenberg cosponsoring the Alice Paul Congressional Gold Medal Act and excited by the possibility of Alice receiving national recognition as an American heroine.  Her dedication to expanding the rights expressed in our Constitution to one half the population is no less significant than that of our nation’s founders’.  National recognition of her achievements for women’s suffrage and civil rights is a solid step toward raising awareness for the need to complete her life’s mission: achieving full equality for all citizens with the ratification of the Equal Rights Amendment.”\n \nAlice Paul is perhaps best known for leading the fight to add the 19th Amendment to the U.S. Constitution, giving women the right to vote.  The Mount Laurel native and devout Quaker led one of the first groups to ever picket the White House and later embarked on a three-week hunger strike with her fellow suffragists when they were arrested for their cause.\n \nAfter the 19th Amendment was ratified, Ms. Paul worked for women's rights around the world.  She helped to secure gender equality in the U.N. Charter, helped establish the U.N. Commission on the Status of Women and successfully lobbied Congress to include sex discrimination in Title VII of the Civil Rights Act of 1964.  She is also the author of the Equal Rights Amendment and worked tirelessly for its passage until her death in 1977.  Both senators have cosponsored the ERA.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9c7b9e52-f299-46a9-81a7-a5a81c69e4fd,\"Menendez on GOP Killing Jobs Bill               \n                    \n                      October 20, 2011\n                     Washington, DC – U.S. Senator Robert Menendez (D-NJ) issued the following statement tonight after Senate Republicans once again blocked legislation that would help create jobs and boost the economy, this time killing the Teachers and First Responders Back to Work Act, of which Menendez is the sponsor.\n \n “Tonight, Republicans proved once again that when it comes to saving or creating jobs – this time for teachers and first responders – they are simply not interested.  Not interested in making sure we can keep 400,000 educators in our classrooms and police on our streets.    Not interested in asking millionaires and billionaires to pay a half a penny on the dollar for the sake of the future of our children and communities.  Not interested in listening to the overwhelming majority of Americans who wanted us to pass this bill.\n \n“The only thing they seem to be interested in is making Barack Obama a one term president.\n \n“We are going to keep listening to middle class families who expect us to do everything we can to create good jobs, get teachers back in our classrooms, police back on the beat and our economy moving forward.  We will keep fighting.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3b585a0a-303d-411d-ba27-98a6c685bade,\"Menendez: Nearly 1.5 Million New Jersey Social Security Recipients Will See Relief in 2012\n                    \n                            Seniors Will Get 3.6 Percent Cost-of-Living Adjustment for 2012\n                    \n                      October 19, 2011\n                     WASHINGTON, D.C. – U.S. Senator. Robert Menendez (D-NJ) today applauded the news that New Jersey’s nearly 1.5 million Social Security recipients will see a 3.6 percent increase in their Social Security benefits and Supplemental Security Income (SSI) beginning in 2012.  The announcement of a Cost of Live Adjustment (COLA) means that Social Security beneficiaries will receive an additional $500, on average, each month, leading to a total of $14,748 a year in average total benefits. \n“This economy has hurt all New Jerseyans, and has been especially difficult for retired seniors. Today’s announcement means $500 a month more in the pockets of senior citizens living on Social Security,” Menendez said. “Social Security is a necessity for the millions of elderly and disabled Americans who are struggling to cover medical bills and daily expenses.  I am glad that these beneficiaries will be able to count on a cost-of-living adjustment next year.”Menendez has a long history of supporting the Social Security program.  In 2009, he voted in support of the American Recovery and Reinvestment Act (P.L. 111-5), which provided for a one-time economic recovery payment of $250 to provide beneficiaries with additional funds to make up for the lack of a COLA that year.\nSenator Menendez cosponsored the Senior Citizens Relief Act (S. 3976). This legislation would have provided an additional $250 payment to Social Security beneficiaries facing the second straight year without a COLA. \nMenendez cosponsored the Social Security Fairness Act of 2009 (S.484).  This legislation would repeal the Windfall Elimination Provision (WEP) and the Government Pension Offset (GPO) which limit the Social Security benefits available to individuals and families who also benefit from government pensions.County    Total Beneficiaries (As of Dec. 2010)Atlantic    51,835Bergen    153,595Burlington    80,750Camden    89,255Cape May    26,685Cumberland    28,655Essex    111,085Gloucester    49,930Hudson    76,470Hunterdon    20,885Mercer    62,400Middlesex    119,270Monmouth    109,490Morris    78,435Ocean    149,365Passaic    34031Salem    34033Somerset    34035Sussex    34037Union    34039Warren    34041\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ee357eb3-3973-436e-9bd8-41147c3d202e,\"Menendez Joins Senate Democrats and Education Leaders to Discuss  Bill to Put Teachers Back to  Work in the Classroom \n                    \n                            Menendez Bill would create or protect 9,300 teacher jobs in NJ\n                    \n                      October 18, 2011\n                     Washington, DC –  US Senator Robert Menendez (D-NJ) today joined Senators Charles E. Schumer (D-NY), Sheldon Whitehouse (D-RI), Bob Casey (D-PA), Senator Blumenthal (D-CT) President of the American Federation of Teachers Randi Weingarten, and Executive Director of the National School Board Association Anne Bryant to discuss how the Teachers and First Responders Act, which Menendez unveiled yesterday, will help protect and hire 9,300 teachers in New Jersey and 400,000 nationwide. \n“Almost 300,000 education jobs are on the chopping block this year in this country. New Jersey alone has lost over 6,000 teachers since 2008, slowing our economic recovery, and creating a huge knowledge-gap in our schools,” said Senator Menendez. “The Teachers and First Responders Back to Work Act invests in New Jersey’s children, providing an additional $831.1 million in funds to support 9,300 education jobs. With this legislation we can fulfill our duty to educate our kids and keep our communities strong by putting teachers back on the job.” \n \n According to a CNN poll released yesterday afternoon, 75% of Americans support providing funding to state and local governments to hire teachers and first responders, including 63% of republicans. The Teachers and First Responders Acts is the first piece of President Obama’s Jobs Act being introduced in the Senate since Republicans blocked the entire package and provides $30 billion to create or protect nearly 400,000 education jobs and $5 billion to create or save thousands of police and fire fighter jobs. Senate Majority Leader Reid began the process for considering the legislation yesterday and a Senate vote on the measure is expected as soon as possible.\n \n KEY PROVISIONS:\n \n $30 Billion To Create or Protect Nearly 400,000 Education Jobs/$831.1 Million to Create or Protect 9,300 Education Jobs in New Jersey.  Nearly 300,000 education jobs have been lost since 2008, and state and local budget crisis will put as many as 280,000 teacher jobs at risk next year. A $30 billion investment will help local school districts not only avoid layoffs, but also rehire tens of thousands of teachers who have already lost their jobs because of budget cuts. In New Jersey, 6100 education jobs have been cut since 2008.  The Teachers and First Responders Back to Work Act will provide New Jersey with an additional $831.1 million in funds that will support 9,300 education jobs.\n \n $5 Billion to Keep Thousands of Police and Firefighters on the Job including hundreds in New Jersey.  State and local budget cuts have forced thousands of cops and firefighters off the beat.  The bill will commit $5 billion to retaining police, firefighters and first responders and to rehiring those who have been laid off during these tough economic times through competitive grants to states and localities.  More than 700 police officers were let go in New Jersey just this year and there are 4,000 fewer officers today in New Jersey then there were at the end of 2009.  Just last month, Menendez announced that 12 communities in New Jersey received a total of $20.8 million to hire and support 78 officers for the next three years.  More than 150 New Jersey localities applied for the grants but only enough funds were available to support 9% of applicants. This new funding would greatly expand the opportunity to create and protect hundreds of first responder jobs throughout the state.  \n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=44e43f85-0379-43da-82cc-6fdbec29fe07,\"Senator Menendez and Colleagues Urge Super Committee to Cut Oil Subsidies\n                    \n                             Letter Asks for Big Oil to Pay its Fair Share\n                    \n                      October 18, 2011\n                     Washington, DC – U.S. Senator Robert Menendez (D-NJ) led a letter with 13 colleagues to the Super Committee urging consideration of his “Close Big Oil Tax Loopholes Act” S. 940 as part of a deficit reduction compromise. The bill called for the elimination of more than $21 billion in oil subsidies for the five largest, most profitable private oil companies in the world.  The bill received a majority vote in the Senate (52-48) but did not pass due to a Republican filibuster. \n \nIn the letter, the senators state: “Unlike working families struggling to make ends meet, BP, ExxonMobil, Shell, Chevron and ConocoPhillips have money to burn.  In the last decade, they have raked in more than $1 trillion in profits, and they are projected to make $144 billion in profits this year alone.  We simply cannot solve our budget problems by demanding sacrifices from students, seniors, soldiers, and working class families alone.  Big Oil needs to join us by paying their fair share to help address the deficit.” \n \nSenator Menendez also used the letter as an opportunity to counter arguments that taxing large oil companies would increase the price of gasoline. Reports conducted by the non-partisan Congressional Research Service and Joint Economic Committee found that by cutting $2 billion in annual oil subsidies for oil companies would have no impact on oil or gasoline process. \n \nIn addition to Menendez, the letter is signed by Senators Debbie Stabenow (D-MI), Sheldon Whitehouse (D-RI), Bernie Sanders (D-VT), Frank R. Lautenberg (D-NJ), Richard Blumenthal (D-CT), Dianne Feinstein (D-CA), Jeff Merkley (D-OR), Kirsten Gillibrand (D-NY), Jack Reed (D-RI), Barbara Boxer (D-CA), Jeanne Shaheen (D-NH), Ben Cardin (D-MD), Bill Nelson (D-FL).\n \n \n \nPDF of the Letter: : http://menendez.senate.gov/download/?id=3df06637-67d9-4416-a1c8-acb21b179713\n \nSenator Patty Murray                                         Representative Jeb Hensarling\n \nCo-Chair                                                      Co-Chair\n \nJoint Select Committee on Deficit Reduction                   Joint Select Committee on Deficit Reduction\n \n448 Russell Senate Office Building                           129 Cannon House Office Building\n \nWashington, DC 20510                                              Washington, DC 20515\n \nDear Senator Murray and Representative Hensarling \nWe are writing to urge you to eliminate $21 billion in oil subsidies for the five largest, most profitable private oil companies in the world as part of the Joint Select Committee on Deficit Reduction’s work to lower the federal debt.  Everyone needs to do their part to set us on the path toward a balanced budget, even the most wealthy and powerful among us.\n \nAs you know, a bipartisan majority in the Senate voted in favor of Senator Menendez’s legislation to eliminate these subsidies, but because of a filibuster, the bill failed to pass.  Now is the chance to heed this majority in the Senate and the vast majority of the American people and cut these wasteful oil subsidies.  President Obama has called for the elimination of these subsidies and it is time for Congress to follow suit. \n \nUnlike working families struggling to make ends meet, BP, ExxonMobil, Shell, Chevron and ConocoPhillips have money to burn.  In the last decade, they have raked in more than $1 trillion in profits, and they are projected to make $144 billion in profits this year alone.  We simply cannot solve our budget problems by demanding sacrifices from students, seniors, soldiers, and working class families alone.  Big Oil needs to join us by paying their fair share to help address the deficit. \n \nDespite the oil companies’ insistence to the contrary, we know from analyses by the non-partisan Congressional Research Service and Joint Economic Committee that cutting $2 billion in annual oil subsidies and tax breaks for oil companies would not make oil and gasoline more expensive.  The price of oil and gas is set on the world market, and federal subsidies play no role in prices consumers pay at the pump.  To put it another way, if the five largest and wealthiest private oil companies were willing to live with $142 billion in profits this year, rather than their projected $144 billion, they would be paying their fair share in taxes without raising gasoline prices one penny.  \n \nIt is also important to note that these wasteful subsidies do not create jobs.  Technological improvements allow these companies to extract more oil with fewer workers which is why oil and gas companies cut over 4,400 jobs in 2010, despite earning enormous profits.\n \nThank you for taking the time to consider supporting the elimination of more than $21 billion in oil subsidies for the Big 5 oil companies as part of the Joint Select Committee.  Please do not hesitate to contact us or our staff if you have any questions.  We look forward to working with you to lower the deficit in an equitable and effective manner.\n \nSincerely,\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b0428f42-1f3e-49e8-9e33-ee9789ac49e3,\"Senator Menendez Celebrates Signing of Combating Autism Reauthorization Act\n                    \n                            Act will provide necessary funding for research, screening, education, treatment   Washington – Today, U.S. Senator Robert Menendez joined advocates, students, and teachers at the Combating Autism Reauthorization Act Celebration, an event to celebrate the President signing into law Senator Menendez’s legislation.   The event was held at the Gerard J. Dynes Day School, a public school for autistic children in Jersey City, NJ. Other event participants included Jerramiah Healy, Jersey City Mayor; C\n                    \n                      October 17, 2011\n                     Washington – Today, U.S. Senator Robert Menendez joined advocates, students, and teachers at the Combating Autism Reauthorization Act Celebration, an event to celebrate the President signing into law Senator Menendez’s legislation. \nThe event was held at the Gerard J. Dynes Day School, a public school for autistic children in Jersey City, NJ. Other event participants included Jerramiah Healy, Jersey City Mayor; Colleen Henry, Principal, Gerard J. Dynes NJ Regional Day School ; Linda Fiddle, founder of the Daniel Jordan Fiddle Foundation for adults living with autism; and Dr. Michael Knox, Assistant Professor of Pediatrics / Deputy Director The Boggs Center.    CAPTION: Left to right - Colleen Henry, Principal of the Gerard J. Dynes Day School; Kerry Magro, advocate and blogger; Linda Fiddle, founder of the Daniel Jordan Fiddle Foundation for adults living with autism; Leslie Long, Autism Speaks ; Mayor Healy, Jersey City Mayor; Senator Menendez, author of the Combating Autism Act of 2006; Dr. Michael Knox, Assistant Professor of Pediatrics and Deputy Director of The Boggs Center; and Stephen Daly, advocate.\n“Sadly, nobody knows more about autism than families here in New Jersey. We have one of the highest rates of autism in the nation. One in every 94 children is diagnosed in our state, as compared to 1 in 110 children nationwide. The Combating Autism Reauthorization Act is a victory for every family and every child across New Jersey and across the country who knows what it is to live with autism every year,” said Senator Menendez. “I’m honored to have seen it through to passage and honored to have had it signed into law. This legislation auhorized $231 million a year for the next three years to ensure the programs so many New Jersey families have come to rely on continue to meet the needs of the children in this nation who are diagnosed with an autism spectrum disorder each year.”\nMenendez created the Combating Autism Reauthorization Act to extend the benefits of the Combating Autism Act of 2006, maintaining authorized funding at the Centers for Disease Control, the Health Resources and Services Administration, and the National Institutes of Health to spur research into more effective autism screenings and development of treatments. New Jersey has one of the highest rates of autism in the country, affecting 1 in 94 children versus the national average of 1 in 110.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5e3092ec-f0ca-42c9-8457-882645e41343,\"Menendez Co-Sponsors Bill to Put Teachers, First Responders Back to Work\n                    \n                      October 17, 2011\n                     Washington, DC – On a conference call with U.S. Senate Majority Leader Harry Reid (D-NV) and Senator Bob Casey (D-PA), today Senator Robert Menendez (D-NJ) unveiled the Teachers and First Responders Act which provides $30 billion to create or protect nearly 400,000 education jobs and $5 billion to create or save thousands of police and fire fighter jobs.  This is the first piece of President Obama’s Jobs Act being introduced in the Senate since Republicans blocked the entire package.  \n \n\n“We have a choice:  With this legislation we can fulfill our duty to educate our kids and keep our communities safe; or we can gamble our future on political games that dis-invest in the future of our children and the safety of our communities,” said Menendez.  “Today we choose our children and our communities by putting teachers, cops and firefighters back on the job.”  \n\n \nAccording to a CNN poll released this afternoon, 75% of Americans support providing funding to state and local governments to hire teachers and first responders, including 63% of republicans.  \n \nSenate Majority Leader Reid will begin the process for considering the legislation today.  The Senate vote on the measure is expected as soon as the end of this week.\n \nKEY PROVISIONS:\n \n$30 Billion To Create or Protect Nearly 400,000 Education Jobs\n$831.1 Million to Create or Protect 9,300 Education Jobs in New Jersey.  \nNearly 300,000 education jobs have been lost since 2008, and state and local budget crisis will put as many as 280,000 teacher jobs at risk next year. A $30 billion investment will help local school districts not only avoid layoffs, but also rehire tens of thousands of teachers who have already lost their jobs because of budget cuts. In New Jersey, thousands of education jobs have been cut.  The Teachers and First Responders Back to Work Act will provide New Jersey with an additional $831.1 million in funds that will support 9,300 education jobs\n \n$5 Billion to Keep Thousands of Police and Firefighters on the Job including hundreds in New Jersey.   \nState and local budget cuts have forced thousands of cops and firefighters off the beat.  The bill will commit $5 billion to retaining police, firefighters and first responders and to rehiring those who have been laid off during these tough economic times through competitive grants to states and localities.  More than 700 police officers were let go in New Jersey just this year and there are 4,000 fewer officers today in New Jersey then there were at the end of 2009.  Just last month, Menendez announced that 12 communities in New Jersey received a total of $20.8 million to hire and support 78 officers for the next three years.  More than 150 New Jersey localities applied for the grants but only enough funds were available to support 9% of applicants. This new funding would greatly expand the opportunity to create and protect hundreds of first responder jobs throughout the state.  \n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0d30217b-f738-4b5a-8d50-8453e24d2fb4,\"Senator Menendez joins EPA Administrator Jackson and Senator Lautenberg  Mark 25th Anniversary of Toxics Right to Know Law\n                    \n                      October 17, 2011\n                     (Newark, N.J. – Oct. 17, 2011) On the 25th anniversary of the law that created the Toxic Release Inventory (TRI), Environmental Protection Agency Administrator Lisa P. Jackson was joined by New Jersey Senators Frank R. Lautenberg and Robert Menendez to celebrate improved transparency and environmental quality since the legislation passed in 1986.\n \n \nTRI was established through legislation authored by Senator Lautenberg and signed into law as part of the Emergency Planning and Community Right-to-Know Act (EPCRA). The measure requires owners of facilities to report annually on the amount of toxic chemicals that have been released into the air, water or land. These facilities are also required to report how they dispose of chemicals that are not released into the environment.\n \n \n“When TRI became a reality 25 years ago, our communities and our citizens gained a powerful new tool for defending their health, their environment and the health of their children,\"\" said EPA Administrator Lisa P. Jackson. \"\"Serving the public’s right-to-know, ensuring that our data is based on the best science and full transparency, and making sure that it is as accessible as possible are critical to everything we do at the EPA. That is why the TRI an indispensable part of fulfilling our mission to protect the health of the American people.\"\"  \n“People have the right to know what toxic chemicals are being stored or disposed of in their communities. And we all have Senator Lautenberg to thank for creating that right 25 years ago,”  said Senator Menendez.  “I was proud to work with him to fight off efforts to weaken this fundamental right and look forward to continuing to protect public health with him for years to come.”  \n \n \n“Everyone has a right to know if danger is lurking in their own backyard, but for a long time, Americans were denied this basic right,” said Senator Lautenberg. “The Toxic Release Inventory shows how government empowers people to improve their lives. This common sense law makes sure parents have the information they need to keep their children healthy and safe. I’m proud this movement began in New Jersey and has improved the lives of people all across the country.”\n \n \nThe EPA has identified numerous uses of TRI data by government, businesses and citizens. Its use enables the public to identify sources of toxic chemical releases, helps analyze potential toxic chemical hazards to human health and the environment and assesses environmental and public health issues that may affect communities. Earlier this year, the Aspen Institute called TRI one of the ten biggest ways EPA has improved America.\n \n \nIn 2006, the Bush Administration EPA finalized a rule that weakened the TRI program by eliminating the requirement to report specific quantities of releases for thousands of smaller facilities nationwide. However, in March 2009, President Obama signed into a law a provision written by Senator Lautenberg that overturned the rule and restored reporting requirements back to the pre-Bush Administration standards.\n \n \nOne of the best indicators that the TRI program has been a success is the steady and significant decline in releases since 1988 – the first full year of data on toxic releases. Since 1988, toxic releases from facilities required to report in New Jersey have declined by more than 94 percent in New Jersey.\n \n \nFor more information on the Toxics Release Inventory, visit: For a full list of reporting US VI facilities, go to: http://www.epa.gov/tri\n \n \nFollow EPA Region 2 on Twitter at http://twitter.com/eparegion2 and visit our Facebook page, www.facebook.com/eparegion2\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d746afdc-e6c6-4e82-b0f5-d21e4e6cba4f,\"On National Latino AIDS Awareness Day, Menendez Highlights Importance of Early Testing, Prevention and Education \n                    \n                      October 14, 2011\n                     WASHINGTON – In honor of National Latino AIDS Awareness Day, October 15, US Senator Robert Menendez (D-NJ) today underscored the importance of early testing, prevention, and education initiatives to combat the HIV/AIDS crisis that disproportionately affects the Hispanic community and other minority groups.\n \n \n“We must respond and take action now to put an end to the disproportionate impact that HIV/AIDS in having in our communities,” said Senator Menendez. “Every year, thousands of Hispanic men and women are diagnosed with HIV/AIDS at a rate alarmingly higher than that of white non-Hispanics. This is a number that we can and must work together to bring down:  by raising public awareness of HIV/AIDS in our communities; encouraging its prevention and early testing; and making accessible the information and health care services needed.”   \n \n \nCelebrated on the last day of Hispanic Heritage month, October 15th, the National Latino AIDS Awareness Day was established in 2003 in response to the disproportionate impact HIV/AIDS was having in Hispanic communities nationwide in an effort to create greater awareness of the disease, promote early HIV testing, and create a network of community based organizations, groups, and services to better serve communities. Every year, thousands of new HIV cases are diagnosed across the country, with Hispanics accounting for a significant share of these cases. According to recent data, new HIV infections among Latino men is more than three times that of non-Hispanic white men. Among Latinas, the rate is even higher with more than four times than that of white non-Hispanic women. According to CDC data, Hispanics also progress to AIDS faster than any other racial or ethnic group. \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=58b236dc-6781-4f62-b19a-5e170b74717d,\"Menendez Attends Oncobiologics Grand Opening\n                    \n                            Cranbury, NJ Company Will Create 200 Jobs, Advance New Cures\n                    \n                      October 14, 2011\n                     Washington –U.S. Senator Robert Menendez today joined state, local and biotechnology leaders in Cranbury, NJ at the grand opening for Oncobiologics, a biotech company which received a critical loan through an initiative authored by the Senator under the Health Care Reform Act.\n \n“Companies like Oncobiologics hold so much promise for our health care system and our economy in general, but oftentimes they’re not able to survive in an economic environment where private capital is simply unavailable,” said Menendez during the ribbon cutting ceremony. “The grant, made possible thanks to the Affordable Care Act and the Therapeutic Discovery Project Credit we were able to successfully include in the legislation, is about investing in the future. It’s about boosting the economy, creating new jobs, and shining a light on the best and brightest from some our most distinguished small biotech companies.  When I look at you and at companies like Oncobiologics, I see the best of America and the best of New Jersey. I see the promise for another American century within our reach, starting right here at home.”\n \n \nMenendez designed the Qualifying Therapeutic Discovery Project to spur innovation and the development of new technologies in the biotech field by providing tax credits and grants to small and emerging biotechnology firms that provide the most promising research in areas of unmet need, reduce long-term health care costs, help New Jersey stay at the forefront of innovation, and advance the goal of finding a cure for cancer within the next 30 years.\n \n \nOncobiologics was founded by a group of leading scientists and engineers from a variety of major biotech companies. The company’s signature development is a one-stop proof-of-concept \"\"engine\"\" that will enable biologic drug developers to develop more of their pre-clinical drug candidates more cost effectively.\n After the ribbon-cutting, attendees toured the company’s just-opened 25,000-square-foot research and development facility, which includes state-of-the art laboratories.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=03b934c8-852a-4204-9069-415849104672,\"Menendez Joins Inauguration of State-of-the-Art Capital Health Medical Center in Hopewell\n                    \n                            NJ Senator strong advocate and supporter of Federal Housing Administration that made project possible as Senate Housing Subcommittee Chair\n                    \n                      October 14, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today joined local and federal officials from the US Department of Housing and Urban Development (HUD) to inaugurate the new Capital Health Medical Center in Hopewell, NJ.  The new state-of-the art, hospital facility replaces the Capital Health System’s existing Mercer facility and was made possible thanks to a HUD FHA-insured $756 million mortgage loan, which includes the refinancing of $168 million in long-term capital debt. According to FHA estimates, the mortgage insurance will save CHS approximately $487 million in interest expense over the life of the loan. A six-floor 223-bed facility, the Center includes an integrated medical office building and incorporates the latest advances in medical and information technology, and patient safety.  As Chair of the Senate Housing Subcommittee, Senator Menendez has been a strong advocate and supporter of the type of FHA program that made this project possible. Menendez joined Carol Galante, Acting Federal Housing Administration Commissioner; HUD Deputy Assistant Secretary, Roger Miller; NJ Department of Health & Senior Services Commissioner Mary O’Dowd; Senator Shirley Turner; Senator Linda Greenstein; as well as other local state and county officials for the inauguration. \n\n “Thanks to this funding families in the region will now have access to a state-of-the –art health care facility with the most advanced medical services and technology. They will also continue to benefit from the net positive economic impact this project is already having by supporting thousands of full time jobs and billions in investment. This project was only possible thanks to the FHA and the crucial financial resources its helps facilitate, which is why I have always made it a priority to support their work as Chair of the Senate Housing Subcommittee.” The projects’ construction has supported an estimated 4,500 full-time jobs in its community and $1.7 billion in economic stimulus. It is expected to support 2,200 full-time jobs following its construction and have an annual economic impact of $424 million.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=83e64981-68e2-4bc4-ad74-171abeb70c2f,\"Menendez Applauds Federal Funds to Leverage More Than $300 Million in Private Lending To NJ Small Businesses\n                    \n                      October 12, 2011\n                     WASHINGTON, D.C. – U.S. Senator Robert Menendez today praised the U.S. Department of the Treasury’s approval of $33.8 million in funding to New Jersey through the State Small Business Credit Initiative (SSBCI), calling it “an incredible opportunity to boost private sector lending, invest in small businesses and create good jobs throughout New Jersey.”   \n \n \nAs part of the Small Business Jobs Act, which Menendez strongly supported and was signed into law last fall by President Obama, New Jersey can access $33.8 million in SSBCI funds.  It is expected that the state will be able to leverage at least $10 in new private lending for every $1 in federal funding, resulting in more than $338 million in new private lending in that state. According to Treasury, the New Jersey Department of the Treasury, in cooperation with the New Jersey Economic Development Authority, will use these funds to support four existing credit support programs, including: two loan guarantee programs; a venture capital investment program that invests directly in eligible businesses; and a direct loan program.\n \n \n“I fought for the Small Business Jobs Act because so often the only thing standing in the way of a new business is access to credit and capital,” Menendez said.  “Through this smart public-private partnership, federal funds leverage the private investment our small businesses need to expand, hire and succeed.” \n \n \nOn September 27, 2010, President Obama signed into law the Small Business Jobs Act of 2010 (the \"\"Act\"\").  The Act created the State Small Business Credit Initiative, which was funded with $1.5 billion to strengthen state programs that support lending to small businesses and small manufacturers.  The State Small Business Credit Initiative is expected to help spur up to $15 billion in lending to small businesses.  Under the initiative, states are offered the opportunity to apply for federal funds for state-run programs that partner with private lenders to increase the amount of credit available to small businesses. States must demonstrate a reasonable expectation that a minimum of $10 in new private lending will result from every $1 in federal funding.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5d9413a0-5810-4663-afbf-976a196fa934,\"Menendez on Iran Assassination Plot\n                    \n                            Calls on Congress to Pass Bill to Isolate Iran Politically, Financially\n                    \n                      October 12, 2011\n                     Washington, DC -- U.S. Senator Robert Menendez, a member of the Senate Foreign Relations and Banking Committees, today spoke on the floor of the Senate to call on Congress to pass the Iran, North Korea, and Syria Sanctions Consolidation Act, a bi-partisan bill that increases economic pressure on Iran and closes loopholes in the current sanctions regime, including tightening the noose on the IRGC.   The legislation will be the focus of a Senate Banking Committee hearing on Thursday, October 13, 2011. \nThe following are excerpts from the Senator’s remarks on the Senate floor: \n“We have heard FBI evidence of an alleged plot by Iran and its elite Quds Force to assassinate a foreign diplomat on US soil – an extraordinary act of international terrorism that demands, at a minimum, immediate enactment of the most robust sanctions against Iran possible.\n“Were it not for the vigilance of the American intelligence community, the FBI, and all of our law enforcement and intelligence agencies working together, this plot could have taken not only the life of Saudi Arabia’s Ambassador to the United States, but hundreds of innocent Americans here in Washington.\n“In the coming weeks, we will hear the exact details of this incredible plot and the extent of the involvement of members of the Iranian Revolutionary Guard.  We know the Revolutionary Guard in Iran is at the highest levels of the Iranian government.  This is why I specifically targeted the Revolutionary Guard in the Iran sanctions legislation that is now law.\n“The new legislation I call on my colleagues to support –now has 76 bipartisan co-sponsors – and will consolidate our original sanctions law.\n“Iran’s actions demand that we move this legislation in the Congress as we simultaneously go to the United Nations, to the international community, and bring to bear whatever pressure we can to convince the Chinese and the Russians to agree to tighter sanctions against Iran.\n“I, for one, am not shocked at the revelations we have heard in the last 24 hours. I have known what this regime is capable of, what it intends, and what it will do to achieve its goals. The time has come for this Congress to take the first step in responding to this egregious plot to conduct an assassination in a downtown Washington restaurant. \n“Our first act must be to immediately respond with tougher sanctions that isolate Iran politically and economically.  Sanctions that will: Freeze the assets of IRGC members and allies and shut down the IRGC’s sources of revenue; expedite the imposition of sanctions; force companies to decide whether they want to do business with the United States or Iran; and ensure that the United States is an Iranian Oil Free Zone by banning imports of refined petroleum made with Iranian crude.\n“To that end, – along with Senators Lieberman, Kyl, Gillibrand, Casey, Kirk, and Collins -- I introduced the “Iran, North Korea, and Syria Sanctions Consolidation Act of 2011.  It’s a bill that recognizes that, if Iran’s principal goal is to acquire weapons of mass destruction – and apparently conduct brazen attacks on American soil against international officials -- then it must also be the policy of the United States to prevent the Islamic Republic of Iran from acquiring the capability to threaten its neighbors and to threaten nations around the world.\n“This legislation closes the loopholes in our sanctions policy.  It insists on a comprehensive diplomatic initiative within the United Nations to qualitatively expand the UN Security Council sanctions regime against Iran so that Iran cannot find a financial safe harbor or a willing partner anywhere in the world. It imposes immigration restrictions on senior officials from Iran, North Korea and Syria and their associates who seek to enter our country and it compliments those sanctions, by reaching out to the Iranian people -- facilitating democracy assistance and developing a comprehensive strategy to promote Internet freedom and access to information inside of Iran.\n“These sanctions will help deter the threat Iran poses to U.S. national security because of its suspected nuclear weapons program, and will have an impact on Iran’s ability, through the IRGC and its intelligence arm, to carry out another plot like the one we have uncovered.\n“We need the ban on trade with Iran to be strong, significant, and air-tight – a ban that does not have Americans subsidizing the very regime that seeks to harm us by purchasing gasoline and diesel that are made with Iranian crude.\n“Iran’s actions have made it a rogue nation that must be dealt with in the strongest terms. We cannot wait for another plot like this to be uncovered; we cannot take the chance that the next one will not be uncovered.  Passing the new sanctions I have proposed is a start, and we cannot, as a nation, falter.  The time to act is now.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=97f538ea-7f74-49a4-ba2b-cc2168f3abec,\"Menendez on Failure to Break GOP Filibuster on American Jobs Act \n                    \n                      October 11, 2011\n                     Washington – U.S. Senator Robert Menendez (D-NJ) issued the following statement after the Senate failed to reach the 60 votes necessary to break a Republican filibuster and allow a majority vote on the President’s American Jobs Act:\n“Tonight, while an overwhelming majority of Democrats stood up for middle class families who are struggling, not a single Republican was willing to put aside partisan politics on behalf of their futures. \n“And while I’m incredibly disappointed, I’m really not surprised.  The GOP has made only one job their main target – President Obama’s.  \n“Their political strategy to oppose anything related to the president – at the expense of our economy -- makes no sense.  First, the American people overwhelmingly support the American Jobs Act – as a whole and its components.  Second, the bill contains many proposals supported– even written – by Republicans in the past.  There’s no reason they shouldn’t support them now.   And third, they will soon have to answer their constituents who want action on creating jobs and lifting our economy – what are they for?  If not a payroll tax cut, then what?  If not putting teachers back to work in classrooms or construction workers on the job fixing our roads and bridges, then what? \n“Today is not the end of our fight – it is only the beginning.  We will be back.  And Republicans will be faced over and over again with a choice:  create jobs and support the middle class or block another bill.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d6667f64-a72e-47bc-a47b-5ba79015a8f2,\"Menendez Calls For Swift Action To Help Homeowners Refinance\n                    \n                            With Interest Rates at an All-Time Low, Federal Housing Agencies Could Implement Immediate Reforms to Aid Responsible Borrowers\n                    \n                      October 11, 2011\n                     Washington, D.C. – U.S. Senator Robert Menendez (D-NJ) today joined 15 colleagues in urging the Obama administration to quickly implement administrative reforms to help millions of responsible homeowners refinance and take advantage of today’s record low interest rates.  With interest rates at an all-time low of 3.94 percent, the Senators encouraged federal housing regulators to take immediate steps to lower the barriers that have kept borrowers trapped in higher interest loans as well as to address other hurdles that have limited the success of current refinance programs.\nIn a letter to top administration officials, the Senators wrote, “Time is of the essence and we urge you to act quickly and aggressively to ensure that responsible homeowners receive the full benefit of these lower rates.”\nIn addition to Senator Menendez, the letter is signed by Senators Barbara Boxer (D-CA), Johnny Isakson (R-GA), Mark Begich (D-AK), Jeff Merkley (D-OR), Sheldon Whitehouse (D-RI), Debbie Stabenow (D-MI), Scott Brown (R-MA), Robert Casey (D-PA), Dianne Feinstein (D-CA), Richard Burr (R-NC), Frank Lautenberg (D-NJ), John Kerry (D-MA), Mark Warner (D-VA), Saxby Chambliss (R-GA) and Ron Wyden (D-OR).\n As Chairman of the Senate Subcommittee on Housing, Transportation and Community Development, Senator Menendez recently held a hearing on this specific refinancing option, as well as other options to help responsible homeowners, which included testimony from Senators Boxer and Isakson.\nOctober 11, 2011\n\nHonorable Shaun Donovan                                                    \nSecretary                                                                                \nUnited States Department of Housing and Urban Development                                          \n451 7th Street, SW                                                                  \nWashington, DC 20410\nHonorable Timothy Geithner\nSecretary                                            \nUnited States Department of the Treasury\n1500 Pennsylvania Avenue, NW\nWashington, DC 20220\n\nMr. Gene Sperling                                                                  \nDirector                                                                                  \nNational Economic Council                                                   \n1600 Pennsylvania Avenue, NW                                           \nWashington, DC 20502         \nMr. Edward DeMarco\nActing Director\nFederal Housing Finance Agency\n1700 G Street, NW\nWashington, DC 20552\nDear Secretaries Geithner and Donovan, Director Sperling, and Acting Director DeMarco:\n\nIn President Obama’s speech to the Congress last month, he committed his Administration to working with federal housing agencies to help more homeowners refinance their mortgages at historically low interest rates.  As he noted, this step could “put more than $2,000 a year in a family’s pocket, and give a lift to an economy still burdened by the drop in housing prices.”\nWe are encouraged by the efforts that have taken place since then to lower the barriers that have kept responsible borrowers trapped in higher interest loans and urge a speedy and comprehensive conclusion to this process.  Bipartisan legislation currently before the Senate would address many of these barriers by:\nRemoving loan-to-value limits, which would provide the most at-risk borrowers an alternative to simply walking away from their mortgage.\nEliminating loan level price adjustments.  These up-front, risk-based fees make a refinance less affordable, reduce the benefit to the borrower, and cannot be justified on loans on which Fannie and Freddie already bear the risk.\nEnsuring that second lien holders do not stand in the way of a refinance.\nAll of these changes can be accomplished administratively and we urge that you take immediate steps to do so.  We also support efforts to address other hurdles that have limited the success of current refinance programs, including representations and warranties, mortgage insurance, and high lender origination fees. \nIt is equally important that in reducing these barriers, the benefits of today’s low rates are not lost to borrowers. With interest rates having hit an all-time low of 3.94 percent, there are nearly 19 million loans guaranteed by Fannie Mae and Freddie Mac paying interest above 5.0 percent that could benefit from a refinance.  Any changes to existing programs must enable as many of these borrowers as possible to refinance and to do so at rates comparable to those received by any other current borrower who has not suffered a drop in home value.\n\nAs was heard in recent testimony before the Senate Housing, Transportation, and Community Development Subcommittee, there is broad consensus among economists and housing experts that this is something we need to do.  Interest rates, however, will not remain low forever.  Time is of the essence and we urge you to act quickly and aggressively to ensure that responsible homeowners receive the full benefit of these lower rates.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=42758b0d-df4d-4416-b333-38990e2f27c9,\"Senator Menendez Outraged About Egypt’s Response to Clashes with the Coptic Christians and Failure to Set a Timetable for Elections\n                    \n                      October 11, 2011\n                     WASHINGTON, D.C. - On Sunday, a peaceful demonstration protesting the failure by the military government to prevent attacks on Coptic churches turned violent and resulted in the deaths of approximately 25 people and over 200 wounded. Independent accounts describe military vehicles deliberately running over unarmed protesters, opening fire with machine guns and state television calling on citizens to take to the streets to aid the army against the Copts.\nSenator Menendez issued the following statement regarding the recent clashes:  \n“I am outraged by the Egyptian military council’s response to Sunday’s protest and their continued failure to ensure the security of the Coptic Christian community and its property.   I am also concerned by the military council’s delay in setting a timetable for Presidential elections. Egypt needs a civilian government that represents the myriad voices in Egyptian society, ensures religious freedom, the rule of law, and protects human rights.  The courage and resilience of the Egyptian people in overthrowing President Mubarak’s autocratic rule will have been in vain, unless the military council sets a real timetable for transferring power to a popularly elected civilian government.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c87aee17-2f3d-4386-9fd5-b43d2d994dba,\"Senator Menendez Calls visit of Latin American Foreign Ministers with Syria’s President Assad an endorsement of “autocracy, oppression, and tyranny”   \n                    \n                      October 10, 2011\n                     WASHINGTON, D.C. - On Sunday, a delegation of Foreign Ministers from Chavez’s Bolivarian Alliance for the Americas (ALBA) met with Syria’s Foreign Minister, Walid al-Moallem, to convey their support for Syrian President Bashar al-Assad.\n \n \"\"The house-call by the Foreign Ministers of Venezuela, Cuba, Ecuador, Nicaragua, and Bolivia represents an endorsement of autocracy, oppression, and tyranny.  Nearly 3,000 Syrians have lost their lives at the hands of the Assad dictatorship in recent weeks as they’ve sought to exchange tyranny for democracy.  The Foreign Ministers’ support for Assad unfortunately represents a perspective that elevates the rights of governments and leaders over the rights of the people and which mistakes power for unconstrained authority,” Menendez commented.\n \n“The visit also underscores these nations belief in authoritarianism as a legitimate form of government at home and justifies their use of the authoritarian tools of oppression, tyranny, and fear against their own people,” he added.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0ad60cad-ba80-4c4c-a74a-f867c07158f2,\"Lautenberg, Menendez Announce Support for New Federal Judges \n                    \n                            SENATORS RECOMMEND MAGISTRATE JUDGE MICHAEL SHIPP AND ATTORNEY KEVIN MCNULTY TO PRESIDENT OBAMA\n                    \n                      October 7, 2011\n                     WASHINGTON—U.S. Sens. Frank Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that they have recommended Magistrate Judge Michel Shipp and attorney Kevin McNulty to President Obama for seats on the U.S. District Court for the District of New Jersey.\n“I am pleased to recommend these two well-respected members of New Jersey’s legal community to serve on the U.S. District Court,” stated Lautenberg.  “Judge Shipp is an excellent magistrate judge who has demonstrated intellect and fairness in the courtroom.  Mr. McNulty is an accomplished lawyer with decades of experience in public service and in the private sector.  I look forward to working with the White House and my colleagues in the Senate to confirm these two well-qualified candidates and fill our District Court vacancies.”\n“Michael Shipp and Kevin McNulty are two of the finest members of the New Jersey Bar and I am pleased to highly recommend them to serve on the U.S. District Court,” said Menendez. “Judge Shipp has distinguished himself as a superior Magistrate Judge by demonstrating extraordinary intellect, hard work, and competency on the bench. Mr. McNulty has the strong analytical ability, work ethic, and intellect to be an outstanding member of the District Court. I look forward to working toward the confirmation of these two highly-qualified candidates for our District Court.”\nMichael Shipp is a native of Paterson currently serving a U.S. Magistrate Judge in the District Court for the District of New Jersey and as an adjunct professor at Seton Hall Law School.  His experience includes service in the New Jersey Attorney General’s Office, including serving as the top advisor to two New Jersey Attorneys General.  Judge Shipp also has experience in private practice, and served as a law clerk to former New Jersey Supreme Court Justice James H. Coleman.  He is a graduate of Rutgers University and Seton Hall Law School.    \nKevin McNulty currently heads the appellate practice at Gibbons P.C. in Newark.  Mr. McNulty formerly served as Chief of the Appeals Division in the U.S. Attorney’s Office and was also an Assistant U.S. Attorney.  Mr. McNulty served as a clerk to former U.S. Federal District Court Judge Frederick B. Lacey. He is a graduate of Yale University and New York University School of Law.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=295df640-a41b-4049-bf52-bfaffb861ad6,\"Menendez to NJ Hurricane Victims:  3 Weeks Left to Ask for FEMA Assistance\n                    \n                      October 7, 2011\n                     Washington – U.S. Senator Robert Menendez today reminded families, individuals and businesses in New Jersey that suffered damage from Hurricane Irene they have until October 31 -- about three weeks -- to register for Federal Emergency Management Agency (FEMA) assistance.   \n \n \n“If any of our New Jersey families or businesses that suffered damage from Irene haven’t asked for federal help, the time to do so is now,” said Menendez.  “Please, if you need assistance, don’t’ delay -- register today.”\n \n \nThe deadline to submit loan applications to the U.S. Small Business Administration (SBA) is also Oct. 31.  SBA loan applications are a key part of the FEMA registration process.  If you are a homeowner or renter and SBA determines you cannot afford a loan, you may be referred for other possible assistance. Additional information is available at www.sba.gov or 800-659-2955.\n \n \nThe standard flood insurance policies from the National Flood Insurance Program have a 60-day period to file proof of loss. That deadline is Oct. 31.\n \n \nTo date, FEMA has approved more than $123 million in assistance to disaster survivors, while the SBA has approved nearly $29 million in disaster loans to homeowners, renters, and businesses of all sizes, and nonprofit organizations.\n \nThere are three ways to register – go to www.disasterassistance.gov, m.fema.gov or call FEMA toll-free, 800-621-3362 (FEMA).  Those with access or functional needs and who use a TTY may call 800-462-7585 or use 711 or Video Relay Service to call 800-621-3362. Telephone lines are open from 7 a.m. to 10 p.m. ET; multilingual operators are available.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b7e6fc8f-4793-4ac5-838e-0a0a617a7e76,\"Menendez on Ten Year Anniversary of Afghanistan War\n                    \n                      October 7, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee today released the following statement on the 10 year anniversary of the war in Afghanistan.\n“Ten years ago, Al-Qaeda brought its war to the heart of our nation, killing more than 3,000 people on September 11, 2001.  Today, I encourage all Americans to pause and consider the sacrifices that our brave men and women in uniform have made to protect our country and to bring to justice the cowards who attacked us on that day.  Our military personnel, and their families at home, have paid a huge price to guarantee our freedom, and for this all Americans owe a debt that cannot possibly be repaid.\n \n \nIn that ten years, we have made great progress toward dismantling Al-Qaeda and weakening its Taliban protectors.  The death of Osama bin-Laden in May and of senior cleric Anwar al-Awlaqi last week have weakened the al-Qaeda leadership.   We have worked to drain the swamp and our task now is not nation-building, but ensuring that the swamp does not fill again through a tailored counter-terrorism strategy that protects our narrow national security interests and meets our fiduciary responsibilities.\n \n \nAt a time when we are scrounging for money at home to get Americans back to work and to keep police and firefighters protecting our home towns, the $10 billion a month war effort is simply not sustainable.\n \n \nThe time has come to allow Afghans to draw on our nearly $40 billion investment in the 290,000 strong Afghan National Security Forces who have committed to securing their country’s future and allow them the opportunity to defend their nation and their people.\n \n \nThe withdrawal plan that President Obama announced on June 22, 2011 is a significant step that reflects the progress we have made, but we also need to begin the conversation about bringing home our remaining 68,000 troops as quickly as possible. I believe that if we reform our mission, target our unique military resources, and refine our assistance mission to focus on sustainable and achievable outcomes, we will be able to eliminate threats to our national security with fewer troops and less money.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d154770a-128f-4929-a402-4a74076b49f5,\"Menendez Statement on Cordray Nomination for Consumer Financial Protection Bureau\n                    \n                      October 6, 2011\n                     Washington  - This morning, the U.S. Senate Banking Committee successfully voted to support the nomination of Richard Cordray as Director of the Consumer Financial Protection Bureau (CFPB), which can now be debated and voted on by the full United States Senate.  Mr. Cordray’s nomination was passed by a vote of 12-10, with all Committee Democrats in support and all Committee Republicans opposed. \n \nThe CFPB was created last year by Congress to enforce and centralize consumer protections in the housing and banking sectors, which had been dispersed and fractured among several different regulatory agencies.  During the financial crisis of 2008, consumer protections fell through the cracks and many consumers found themselves with unsustainable mortgages that had been passed off as safe.  The CFPB was created to serve as a “cop on the beat” to protect consumers from new abuses that arise and enforce existing protections.  However, until a Director is confirmed, the CFPB cannot fully use its enforcement powers.\n \nSenator Robert Menendez (D-NJ), a member of the Senate Banking Committee, released the following statement:\n \n“Richard Cordray is more than qualified to be the first Director of the Consumer Financial Protection Bureau and that is why I supported him.  The full Senate should have an up-or-down vote on his nomination without delay.\n \n“The longer his nomination is delayed, the more consumers will continue to suffer.  Without a Director, the Consumer Financial Protection Bureau cannot carry out many of its most vital functions, including regulating payday lenders, pawn shops, and private student loan companies, giving them an unfair advantage over community banks that play by the rules.  I’ll continue to fight to ensure consumers are protected from unfair and deceptive financial products.\n \n“Republicans continue to couple Mr. Cordray’s nomination to weakening the Consumer Financial Protection Bureau, which is unprecedented.  Never in my memory has a nominee been opposed in the Senate because of opposition to the whole agency  for which he or she has been nominated.  Republicans need to stop playing games with the protections American consumers need, do the job they were elected to do, and debate this qualified nominee.  Sour grapes don’t protect consumers.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c2a2f1bf-34c3-48b4-8b1a-5a09304197ed,\"Senators Menendez, Reid, And Begich Host Latino Business Summit On Access to Capital\n                    \n                            Summit Featured Hispanic Business Leaders from Across the Country \n                    \n                      October 5, 2011\n                     WASHINGTON – Today U.S. Senator Robert Menendez (D-NJ), Chair of the Senate Democratic Hispanic Task Force, Senate Majority Leader Harry Reid (D-NV) and U.S. Senator Mark Begich (D-AK), Chair of the Senate Democratic Steering and Outreach Committee hosted a Latino Business Summit, which brought together entrepreneurs, professionals and business leaders from across the country to discuss access to capital, the creation and growth of business, and lending and procurement issues.  These issues are critical to wealth building and success of the more than 2.3 million Hispanic-American enterprises, and in turn, essential to the creation of jobs in this country.  According to the US Census Bureau, small businesses generate 90 percent of all net job growth in this country.  Hispanic-owned businesses account for over $345 billion in economic output, and provide nearly 2 million jobs for Americans.\n \nSenator Menendez said: With billions in economic revenue, the importance of Hispanic businesses for the US economy is simply undeniable. We need to help them access the capital they need to  grow, so they can keep creating jobs and help the Hispanic community prosper. Today’s summit served as an opportunity to begin what we hope will be an ongoing dialogue on the unique challenges Hispanic entrepreneurs face when accessing capital and procurement opportunities, to ensure they are able to get the resources they need to thrive.”\n \n \nSenator Reid said: “The dialogue we had today at the Hispanic Business Summit will be vital as we craft and refine legislation that will help Latino businesses grow and create jobs. Unfortunately, the Hispanic community has been disproportionately hit by the economic crisis. Last year one in four Hispanic Americans lived in poverty. This is particularly true in Nevada and other states with high Hispanic populations. The conversations we had at this meeting will guide us as we work on crucial jobs legislation, such as President Obama’s American Jobs Act. Our economy needs the ingenuity and entrepreneurship of small businesses to put our nation back on the path of progress, and Latino businesses will be pivotal to this.”\n \n \nSenator Begich said: “As Chair of the Senate Democratic Steering and Outreach Committee, I am pleased that the Senate Democratic Hispanic Task Force was able to host this dynamic economic Summit with business leaders from the Latino community. As one of the fastest growing sectors of our economy, Latinos play a vital role in ensuring access to capital, creating jobs, and promoting economic opportunities in our communities. As small business owners, they represent the backbone of our economy providing jobs for millions of Americans. We must continue to ensure economic empowerment and support the growth of Latino-owned businesses and I look forward to continuing this dialogue and partnering with the Latino community on these critical issues.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1029aafc-4cfe-4dfb-9052-db5ff6dd96fb,\"Lautenberg, Menendez Announce $750,000 For New Domestic Violence Program in Essex County\n                    \n                            GRANT WILL ALLOW NEWARK PD, COUNTY PROSECUTOR’S OFFICE TO ADD PERSONNEL\n                    \n                      October 5, 2011\n                     WASHINGTON – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Justice (DOJ) has awarded Essex County $750,000 to support domestic violence victims and enforce offender accountability provisions of the Violence Against Women Act.\n \n“Domestic violence is a serious problem in Essex County that demands our attention,” said Senator Lautenberg, a member of the Senate Appropriations Subcommittee on Commerce, Justice and Science, which funds this grant program.  “Social service providers and local law enforcement need all the assistance we can provide to help domestic abuse victims and prevent them from being in dangerous situations.  I will continue to fight for critical federal funding to keep women and families in New Jersey safe and secure.”\n \n“We need to do everything possible to combat the serious problem of domestic violence in our communities, especially in Essex County.  No woman should live in fear for her life and no woman should feel she has no place to go for help.  This funding will help coordinate vital services and improve safety measures for women throughout the county,” said Senator Menendez. \n \nAccording to the Justice Department, Essex County ranks first among New Jersey counties for the highest number of domestic violence homicides and second for highest number of domestic violence-related assaults.  It ranks third in highest number of domestic violence reported offenses and fourth in number of domestic violence arrests.\n \nThe county will collaborate with the Family Justice Center of Essex County to implement the program, which enhances victim safety and offender accountability in cases of domestic violence, dating violence, sexual assault and stalking.  The grant will be used to establish accessible and coordinated domestic violence services in one location with increased law enforcement personnel.  According to the Family Justice Center, a portion of the funding will be used to re-hire a Newark police officer and new personnel in the Domestic Violence Unit of the Essex County Prosecutor’s Office. \n \nIn May, Sens. Lautenberg and Menendez wrote a letter to the DOJ Office of Violence Against Women in support of Essex County’s application.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e6a2eac9-0b39-4ab7-bb46-34385b08f718,\"Senator Menendez Applauds Angels In Adoption New Jersey Honoree\n                    \n                      October 4, 2011\n                     Washington, D.C. – U.S. Senator Robert Menendez ( D-NJ) today honored New Jersey native Christine Letizia at the Angels in Adoption Senate Pin Ceremony, an event created to celebrate individuals who make a difference in the lives of children without families of their own. The program, a product of the Congressional Coalition on Adoption Institute (CCAI), selected Christine Letizia as one of this year’s outstanding recipients for her tireless work as co-founder of A Loving Choice Adoption Associates in Shrewsbury New Jersey. \n \nSenator Menendez presented Ms. Letizia with a certificate commemorating her efforts in facilitating adoptions and lauded her advocacy for adoptive children and parents alike, saying “Christine is one of those special people who devote her life to helping the lives of others. As both a professional in the business and an adoptive parent herself, she has a rare perspective and understanding of the process that is simply invaluable. It is nice to know our children have someone so compassionate looking out for them.”\n \nThe CCAI Angels in Adoption™ program, since its inception in 1999, has acted as an intermediary for Members of Congress and the individuals or organizations they wish to acknowledge.  Members of Congress have honored over 1700 caring activists through the program, including foster parents, adoptive parents, social workers, adoption advocates, and foster care organizations. \n \nChristine currently serves as the Director of Social Work and is both a proud parent and adoptive mother.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b51d821a-9f8f-4894-b0af-1dc064d33599,\"Menendez Cheers President’s Signing of Autism Bill \n                    \n                      September 30, 2011\n                     WASHINGTON – On the day the legislation had been set to expire, U.S. Senator Robert Menendez (D-NJ) today applauded the President’s signing into law the Combating Autism Reauthorization Act (CAA) which authorizes nearly $700 million to fund autism research, training, intervention and other programs.  Today’s ceremony comes after Menendez negotiated a last minute agreement in order to keep the vital autism programs operating for an additional three years.   “Today’s bill signing is a great win in the fight against autism,” said Menendez.  “And while this is by no means the end of our fight on behalf of families dealing with autism, it provides the security in knowing that programs will be there for them for another three years.”The Combating Autism Reauthorization Act was sent to the President’s desk after Senator Menendez was able to overcome the objection of several  Republicans, ensuring its passage by the Senate and avoiding amendments which would have required additional votes and delays.  Menendez authored the Senate version of the bill. \nThe CAA provides for autism surveillance programs at the Centers for Disease Control and Prevention, as well as intervention and training programs at the Health Resources and Services Administration.  Additionally, this legislation allows for the continuation of the Interagency Autism Coordinating Committee (IACC), which is responsible for advising the Secretary of Health and Human Services (HHS) on autism polices, coordinating the federal response to autism and developing the annual strategic plan for autism research.  These programs have been critical in advancing research on the causes, diagnosis and treatments of autism.\nAutism is the fastest-growing serious developmental disability in the country, affecting on average 1 in 110 children and 1 in 70 boys. In New Jersey, 1 in 94 children are affected with autism spectrum disorders, one of the highest rates in the nation.  This year more children will be diagnosed with autism than with AIDS, diabetes and cancer combined.  \n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=193d7896-c91b-44b2-9951-b28ffd29f892,\"ARC Tunnel Repayment Agreement Reached\n                    \n                            Significant Reductions in New Jersey's Burden Achieved by Senators and Congressional Delegation \n                    \n                      September 30, 2011\n                     NEWARK, NJ – Today the U.S. Department of Transportation (DOT) and the State of New Jersey came to an agreement on repayment of federal funds spent on the ARC tunnel project, which was cancelled by Governor Chris Christie.  Today's agreement builds on a deal reached in December between DOT and Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) that New Jersey would not have to ultimately pay back $128 million of the total $271 million debt.   Of the remaining $143 million, thanks to pressure from Senators Lautenberg and Menendez – as well as members of the state's House delegation, New Jersey's liability will be reduced to $95 million under this deal.   \n \n \n\"\"I thank Transportation Secretary LaHood for honoring our initial agreement to reduce New Jersey's liability by $128 million off the bat.  The further reduction in the state's liability will take pressure off New Jersey taxpayers as well,\"\" Lautenberg said.  \"\"The Governor's decision to kill the ARC tunnel project will hurt New Jersey in the long-term, but we were happy to work with the Department of Transportation to help reduce the costs of this mistake.\"\" \n \n \n“While I remain disappointed that the state abandoned this job-creating project for which we fought so hard to fund, I’m thankful to Secretary LaHood for working to resolve this dispute in a way that best protects our taxpayers,” Menendez said. \n \n \nFollowing Governor Christie’s decision to cancel the trans-Hudson tunnel project, Senators Lautenberg and Menendez called on Transportation Secretary Ray LaHood to ease the financial impact on the state.  In December 2010, in response to the Senators’ efforts, Secretary LaHood agreed that New Jersey would be able to retain $128 million in the state's Congestion Mitigation Air Quality (CMAQ) account for mass transit and emission reductions projects.  In February 2011, the entire New Jersey Congressional delegation also sent a letter urging Secretary LaHood to protect New Jersey taxpayers from harm as a result of the project's cancellation.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=07c4cdc8-2608-44d1-9707-1b52a49fe511,\"Senator Menendez Receives Solar Decathlon Recognition\n                    \n                            NJ Competitors Thankful for Senator’s Efforts\n                    \n                      September 29, 2011\n                     Washington, DC – U.S. Senator Robert Menendez was recognized yesterday for his support and contributions to green energy and the U.S. Department of Energy’s (DOE) 2011Solar Decathlon, receiving the 2011 SEIA Solar Leadership Award from the Solar Energy Industries Association (SEIA), as well as a photograph of this year’s competitors signed and presented by New Jersey’s student teams. \n \n \nThe biennial DOE Solar Decathlon challenged 19 collegiate teams from across the world to design, build, and operate solar-powered houses that are cost-effective, energy-efficient, and attractive. Architecture is one of several categories in which students are being judged, and the team with the highest score in all categories will win the grand prize.\n \n \nSenator Menendez was recognized during the Solar Decathlon’s Architecture Award Ceremony for both his tireless efforts to promote clean energy and his successful efforts to keep the competition on the National Mall. Calls to move the project to suburban Maryland were silenced by the Senator when he explained the importance of keeping solar energy on a prominent stage.  \n \n \nAfter a congratulatory video message from Senator Menendez, the award for Best Architecture was announced. Appalachian State took third place, and Team New Zealand won second prize for their solar design. First Place for Architecture went to the team from University of Maryland. The speakers stressed how close the race is becoming and how all nineteen teams have a chance at winning the grand prize.\n \n \nThe New Jersey universities, represented on two teams, both had strong showings in the architecture category. EMPOWER House, composed of Stevens Institute of Technology and Parsons School of Design, narrowly missed the podium. Stevens came in fourth for the architecture challenge, securing a top spot as the competition winds to a close. The team will be in excellent position for an overall win. NJIT and Rutgers are also only points away from the top contenders.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b63182b9-702b-41c2-9d23-ca96f10fc847,\"Menendez, Lautenberg Announce More than $4 Million for Job Training Program at Raritan Valley Community College\n                    \n                      September 29, 2011\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced the U.S. Department of Education and the U.S. Department of Labor (DOL) have awarded $4.6 million to Raritan Valley Community College (RVCC) in Somerville through the Trade Adjustment Assistance Community College and Career Training program.\n“We need to ensure our workers have the skills they need to compete in a global economy and access the jobs of the 21st Century,”  said Senator Menendez. “These grants will help displaced or vulnerable workers transition to new careers in growing industries by supporting targeted partnership programs between local community colleges and employers with specific employment needs. Through this investment we are not only recognizing the importance of America’s workforce and its empowerment, but also the key role our community colleges will play in seizing new economic opportunities as we rebuild our economy.”\n \n“This is a federal investment that will benefit New Jersey’s workforce and businesses,” said Senator Lautenberg, a member of the Senate Appropriations Committee, which funds the Department of Education and the Department of Labor.  “This grant creates programs that will provide New Jerseyans with the opportunity to gain the skills they need to transition into new jobs. I will continue to fight for funding that supports the state’s economy and its residents.” RVCC is working in partnership with local businesses to develop instructional programs that meet industry needs and match businesses with highly-qualified, well-educated employees.  The educational programs are designed to help workers who are changing careers obtain training in high-wage, high-skill occupations and compete successfully for good jobs.   The funding will be used to develop 10 two-year workforce development programs that provide industry-specific, post-secondary credentialing opportunities in Somerset and Hunterdon Counties.   The Trade Adjustment Assistance Community College and Career Training (TAACCCT) Grants Program provides community colleges and other higher education institutions with funds to expand and improve their education and career training programs, and are directed towards workers who are eligible for training under the Trade Adjustment Assistance for Workers program. The grants are awarded to programs that prepare participants for employment in high-wage, high-skill occupations. The targeted population of the TAACCCT program is workers whose jobs have been adversely affected as a result of foreign trade.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=323b0912-09bd-48f0-8912-99d6b12017b6,\"Lautenberg, Menendez: New Jersey MunicipalitiesTo Get $20.8 Million in Federal Funding to Hire Police Officers\n                    \n                            RESOURCES WILL FUND 25 OFFICERS IN NEWARK, 14 IN CAMDEN\n                    \n                      September 27, 2011\n                     WASHINGTON, D.C. – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced 12 New Jersey communities will receive $20.8 million in U.S. Department of Justice Community Oriented Policing Services (COPS) grant funding to hire police officers or avoid cuts to law enforcement personnel.  The federal grant funding will provide New Jersey communities with the resources to put 78 officers on the streets, including 25 officers in Newark and 14 in Camden. \n“This funding will help make sure we have police on the beat and keep families in New Jersey safe from crime,” said Senator Lautenberg, a member of the Appropriations Subcommittee on Commerce, Justice and Science, which funds the COPS program.  “State and local budgets are stretched thin and this funding will give Newark, Camden and other New Jersey communities a helping hand to put police officers back on the job.  These federal COPS grants are critical to ensuring that neighborhoods in New Jersey are secure for the people who call them home.”  \n\"\"This is great news for police departments across New Jersey that have been struggling for months with budget cuts and layoffs, even as they work as hard as ever to keep us safe.  We have an obligation to support our police and I'm so pleased this critical funding is on the way,\"\" said Senator Menendez. \nThe COPS Hiring Program fully funds entry-level salaries and benefits for full-time police officers over a three-year period.  Grant funding can be used to hire new officers, rehire officers who have been laid off and retain officers who are scheduled to lose their jobs as the result of budget cutbacks.\nThe following New Jersey communities have been awarded $20,780,027 in COPS Hiring Program grants:\nAsbury      Park Police Department - $1,610,840 for five officers.\nBorough      of Buena - $223,173 for one officer.\nBurlington      Police Department - $642,164 for two officers.\nCity of      Camden - $3,794,966 for 14 officers.\nTownship      of Irvington - $1,986,472 for eight officers.\nTownship      of Little Egg Harbor - $595,568 for two officers.\nLong      Branch Police Department - $1,518,388 for four officers.\nMillville      Police Bureau - $1,171,476 for four officers.\nNew      Brunswick Police Department - $1,682,807 for seven      officers.\nCity of      Newark - $6,028,700 for 25 officers.\nCity of      Vineland - $1,242,680 for five officers.\nTownship      of Westampton - $282,793 for one officer.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=be698feb-da74-4e9e-ba78-eb63db1511dd,\"Menendez, Pascrell Want Tax Relief for NJ Victims of Disasters \n                    \n                      September 27, 2011\n                     Washington, DC —Senator Robert Menendez (D-NJ) has introduced the Tax Relief for Victims of Disasters Act of 2011 in the Senate, which will help families in New Jersey and across the country recover from this historic year of natural disasters. Representatives Bill Pascrell (NJ-8) , Rosa DeLauro (CT-3) and Peter Welch (D-VT) introduced the legislation in the House of Representatives.“I saw first-hand the devastation caused by Irene in New Jersey, with homes, businesses and communities destroyed.  The path to recovery is a long one and we must give our families all the tools necessary to help them rebuild and move forward,” said Senator Menendez. “This tax relief is one of those tools and it’s the right thing to do for our families and our communities.”“Hurricane Irene left thousands of New Jersey's residents with substantial damage to their homes and businesses.  Many neighborhoods will not be completely rebuilt for many years,” said Congressman Pascrell. “As a Member of the Committee on Ways and Means, I believe that these modest changes to the tax code are one step that Congress can take to ensure the victims of this storm are provided with the relief they need to rebuild their lives.”With disaster declarations issued in 48 states, many families are struggling to cope with the stress and cost of recovery. Earlier this year, Joplin, Missouri was hit with one of the deadliest and most costly tornadoes in U.S. history.  Last month, Hurricane Irene and Tropical Storm Lee caused extensive damage, leaving millions without power, and destroying highways, homes, businesses and schools that our communities will now need to rebuild. This month, massive wildfires have engulfed thousands of acres of land in Texas.          These devastating storms and wildfires have left many homeless, unemployed or underemployed. The Tax Relief for Victims of Disasters Act would create tax exemptions for displaced individuals and families who take in others who have lost their homes, remove limitations on personal casualty or theft for losses that occur in the disaster area and are attributable to the disaster, allow families who have lost their earnings to retain their Child Tax Credits (CTC) and Earned Income Tax Credits (EITC). These provisions are based on those approved after the devastation of Hurricane Katrina, and enabled families to get the relief they needed to put their lives back together.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2daf2e76-b20c-42de-a1b9-1b4651e37ce3,\"Menendez, Lautenberg Announce $2.6 Million to Expand Home Visitation for At-Risk Families \n                    \n                      September 27, 2011\n                     WASHINGTON – United States Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announce that New Jersey has been awarded nearly $2.6 million in competitive grants to support the Maternal, Infant, and Early Childhood Home Visiting (MIECHV) Program.  With this grant, New Jersey has received over $4.5 million, allowing the state to expand its Home Visitation Initiative to more at-risk families.  The funds were awarded by the Health Resources and Services Administration (HRSA) within the Department of Health and Human Services.  \n \n“This health care funding will help us support more New Jersey children growing up in at-risk households so that they and their families can thrive,” said Senator Menendez, key architect of the program.  “Evidence-based home visitation programs have been proven to improve the prenatal health, development, education and economic self-sufficiency of low-income children and families.  This funding will go a long way towards achieving these goals in New Jersey.” \"\"This grant puts the health care reform law to work for New Jersey families,\"\" said Senator Lautenberg, a member of the Senate Appropriations Committee, which funds HHS.  \"\"With this funding New Jersey will be able to implement programs that provide access to health care and social services for families and their young children.  I will continue to fight to make sure that federal programs like this are a priority.\"\" \n \nDuring the health care reform debate, Senator Menendez worked to successfully incorporate the MIECHV program in the final law, the Patient Protection and Affordable Care Act (PL 111-148).  Through this program, nurses, social workers, or other professionals visit at-risk families in their homes to evaluate their living situation and provide information on resources available to improve the health, educational, and economic opportunities for at-risk children.  These resources include services such as health care, early education, parenting skills, child abuse prevention, and nutrition education or assistance. New Jersey joins 49 states, Puerto Rico, the District of Columbia, Guam, the Virgin Islands, and American Samoa in receiving  $224 million to help families across our nation better access services for their children.. \n \nIncluded as part of New Jersey’s grant award is $673,000 specifically allocated to an Evidence Based Home Visiting Program site.  This competitive awarded grant is made available to states who have demonstrated the interest and capacity to successfully carryout a home visitation program.  This program is the first of its kind to require that home visitation services meet rigorous scientific standards proving effectiveness.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d5859495-f029-4bb2-9c35-c72f090ebf9f,\"Sen. Menendez, Rep. Pascrell Announce CDC Will Create Guidelines To Protect Student-Athletes From Sports-Related Traumatic Brain Injuries\n                    \n                            CDC Will Implement Key Provision from ConTACT ACT Authored by New Jersey Legislators\n                    \n                      September 27, 2011\n                     NUTLEY, N.J. – U.S. Rep. Bill Pascrell, Jr. (D-NJ-8) and U.S. Sen. Robert Menendez (D-NJ), both sponsors of legislation aimed at protecting student athletes from the dangers of sports-related concussions, made a major announcement today on young athletes' safety. The two federal lawmakers announced that in response to their request to U.S. Secretary of Health and Human Services Kathleen Sebelius in February the Centers for Disease Control and Prevention (CDC) has agreed to implement a major component of their legislation. \n \n \n\n\"\"We used to see concussions as minor injuries that didn't necessitate much medical attention.  What we now know about the brain has now helped us all to see that every concussion is brain damage, and that we must do more to protect our children,\"\" said Pascrell, co-founder and co-chair of the Congressional Brain Injury Task Force. \"\"Today, we are here to announce one result of our efforts, as the CDC has agreed to implement the key provision of the ConTACT Act by forming an expert panel to define the need, scope, and expectations of these federal guidelines for student athletes. The guidelines that the CDC would develop will take in advice from experts across the country, laying the foundation for all 50 states to implement a standard and protect our young athletes.\"\" \n\n \n \n\n“Since we first introduced our legislation we’ve heard many heartbreaking stories about the permanent brain damage suffered by professional athletes as a result of concussions in the past,\"\" said Menendez. \"\"I’m pleased the CDC has responded to our request and will pull together the best science and come up with the best guidelines possible for prevention and treatment of traumatic brain injury on the field. This fall – when parents are watching their sons and daughters play playing their hearts out, we want them to know that everything possible is being done – and has been done -- to prevent a life-changing injury on the field.”\n\n \n \nCongressman Pascrell and Senator Menendez were both primary sponsors of the Concussion Treatment and Care Tools (ConTACT) Act in the House and Senate, respectively. The legislation provides for national protocols to be established for managing sports-related concussions for student athletes from the 5th grade to the 12th grade. The legislation passed the U.S. House of Representatives in September 2010.\n \n \nPascrell originally introduced the ConTACT Act following the tragic death of Montclair High School football player Ryne Dougherty in October 2008.\n \n \nIn response to Rep. Pascrell's and Sen. Menendez's request in February the CDC is bringing together an expert panel to work towards developing guidelines for student athletes.\n \n \nThe CDC has notified the lawmakers that it will convene the expert panel during the next year.  A draft timetable describes a path where pediatric MTBI (mild traumatic brain injury) guidelines and recommendations are expected to be finalized by Fall 2013.\n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=49dd46c4-6f57-4569-83fa-3b390b402dd8,\"Menendez Announces Passage of Autism Bill \n                    \n                            Three Year Extension Heads Immediately to President’s Desk for Signature\n                    \n                      September 27, 2011\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today announced the Senate has approved the Combating Autism Reauthorization Act, overcoming prolonged Republican opposition.  On the Senate’s last night in session before the end of the fiscal year, Menendez was able to successfully negotiate an agreement in order to keep the vital autism research programs created under the Combating Autism Act (CAA) functioning for an additional three years.  The CAA – which was set to expire at the end of the week – now heads directly to the President’s desk for his signature.\n \n \n“I’m so pleased that we were able to get this vital legislation sent to the President’s desk for his signature,” said Menendez. “This reauthorization had been blocked by a few Republicans for more than two weeks, causing families coping with autism in New Jersey and across our nation unnecessary anxiety over the fate of the research programs and support services they have come to rely upon.  Last night’s actions will provide families the security in knowing these programs will continue for another three years.”\n \nThe Senate approved the measure on a voice vote last night, following passage by the House of Representatives on September 20, 2011.  Menendez’s Senate version of the legislation, S. 1094, had been approved unanimously by the Senate Committee on Health, Education, Labor and Pensions (HELP) on September 7, 2011.  Although his bipartisan bill was before the full Senate since September 13, it was being blocked – or “held” -- by a few Republicans.\n \n \nMenendez brokered a deal that led to the objecting Senate Republicans lifting their hold on the legislation without having to amend the bill, sending it directly to the President for his signature.  If the bill had been amended, it would have gone back to the House and required another vote for final passage, leading to further delay and uncertainty.   \n \nThe CAA provides for autism surveillance programs at the Centers for Disease Control and Prevention, as well as intervention and training programs at the Health Resources and Services Administration.  Additionally, this legislation allows for the continuation of the Interagency Autism Coordinating Committee (IACC), which is responsible for advising the Secretary of Health and Human Services (HHS) on autism polices, coordinating the federal response to autism and developing the annual strategic plan for autism research.  These programs have been critical in advancing research on the causes, diagnosis and treatments of autism.\n \n \n“Reauthorizing the Combating Autism Act is a crucial step towards advancing our knowledge on autism.  We are now able to ensure research programs continue finding breakthroughs in diagnosis and treatment, and that training and intervention programs continue providing families the tools they need to better understand and manage this increasingly prevalent affliction,” Menendez said.  “After prolonged and unnecessary objections on the part of a few Senate Republicans, I am proud that we were able to pass this important legislation into law.”\n \nAutism is the fastest-growing serious developmental disability in the country, affecting on average 1 in 110 children and 1 in 70 boys. In New Jersey, 1 in 94 children are affected with autism spectrum disorders, one of the highest rates in the nation.  This year more children will be diagnosed with autism than with AIDS, diabetes and cancer combined.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ae9faa64-dfb8-4556-a7b5-d6b8b12a7f81,\"Menendez Introduces Livable Communities Act of 2011\n                    \n                      September 23, 2011\n                     WASHINGTON – This week, US Senator Robert Menendez (D-NJ) led the introduction of the Livable Communities Act of 2011, marking an important step forward in transforming the federal government into a better partner for communities as they work to achieve their goals.  The bill promotes good planning and good governance by saving taxpayer dollars through coordinated public investments in infrastructure.  Seventeen Senators co-sponsored the measure.    \n\n“We need to empower communities to coordinate their transportation, housing, and business development needs in a way that saves money, creates jobs, and helps the environment,” said Menendez, who chairs the Banking Subcommittee for Housing, Transportation, and Community Development.  “What we build has real impact on how much time we spend in traffic, whether we can afford to live close to where we work, and whether businesses can attract and retain workers.  This bill is about making better coordinated investments so that we use our resources wisely and can enjoy attractive, economically viable, healthy communities that are resilient over the long-term.”\n\nThe bill would formally authorize the Office of Sustainable Housing and Communities at the U.S. Department of Housing and Urban Development (HUD) and its Regional Planning and Community Challenge grant programs.  These programs support community efforts to establish and implement a locally-defined vision for future growth and redevelopment through comprehensive planning and capital improvement programs.  The bill would also create a loan program for infrastructure improvements (streetscape, utilities) in preparation for transit oriented development.\nThe Livable Communities Act of 2011 would also improve the way federal agencies with jurisdictional overlap work together so that the policies, programs, and regulations they enforce are well aligned.  The bill directs the HUD Office of Sustainable Housing and Communities to take a leading role in coordinating interconnected housing, transportation, and environmental efforts in cooperation with DOT and EPA.  It also directs HUD to engage the wide range of federal agencies that address healthy housing issues.  Along with coordination, the bill directs these agencies to streamline requirements, reduce redundancy, and eliminate red tape to become more efficient in both their internal operations and their engagement with communities in the field.\n\n“Comprehensive, locally directed planning is the blueprint for long-term prosperity and this initiative fits squarely into broader efforts underway to create jobs, support families when they need it most, and keep the U.S. competitive in the global economy,”  Menendez added.\n\nThe effort builds on work that Senator Chris Dodd began in 2009 when he introduced the Livable Communities Act last Congress.  This iteration of the bill honors the core programs of the original while lowering its cost.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8d1eacb3-2591-4f82-9ec9-7b2b66b73f45,\"Menendez, Enzi Introduce Real Estate Investment and Jobs Act to Stave Off Commercial Real Estate Crisis and Create Jobs\n                    \n                            Bill would enable more private investment in market\n                    \n                      September 23, 2011\n                     Washington – Warning that “just as we saw with home mortgages” U.S. Senator Robert Menendez (D-NJ) and Senator Mike Enzi (R-WY) this week introduced legislation to promote access to private capital that will help prevent America’s commercial real estate market from faltering in the face of decreased property values and limited loan opportunities.  This legislation will help communities avoid even more vacant storefronts, lost jobs, lower tax revenues, and a deeper economic hole from which to recover.  \n“As communities across the country continue to recover from the economic downturn and falling property values, commercial real estate properties throughout the nation are confronting a similar equity crisis,” said Menendez.  “Just as the crash in the residential real estate market triggered the most severe economic recession in generations, the looming crisis in the commercial real estate market, if left unchecked, could prove to be devastating for our fragile economic recovery.”\n“More investment in the commercial U.S. real estate market means more jobs are created and maintained across the country and my home state of  Wyoming. The more defaults and foreclosures that can be prevented the better our economy will be,” Enzi said.   \nMore than $1 trillion of commercial real estate loans will be maturing in the next few years.  By 2018, more than $2.4 trillion dollars of loans held by insurance companies, thrifts, banks, and in commercial mortgage-backed securities will mature.  Similar to home mortgages, if these borrowers cannot secure other funding options when these payments come due, commercial properties across the country risk foreclosure.\nCertain tax rules – most of which were drafted before the current crisis could be foreseen – impose significant penalties on foreign investments in domestic real estate that do not exist on other types of U.S. investments such as corporate stocks and bonds.  These rules, created by the Foreign Investment in Real Property Tax Act (FIRPTA) freeze out foreign investment in our real estate markets by imposing an arbitrary withholding tax on the gains realized by overseas capital invested in domestic properties.\nWithout reform of these rules, hundreds of billions of dollars in debt could go into default, triggering massive foreclosures, significant decreases in property values and a severe constriction of capital available for U.S. consumers and businesses.  \nThe bipartisan Real Estate Investment and Jobs Act would reform these tax rules to encourage more equity investment in U.S. real estate.  These reforms would help save communities from the drag of a wave of commercial real estate foreclosures, help to restart the credit markets, and free up capital to create jobs and economic opportunities for families in every region of the country.    \nThese provisions would:\nReverse a misguided IRS Notice that drove investment out of US commercial real estate: The bill would reinstate a previous IRS position to allow redemptions and liquidating distributions to be treated the same as sales of stock in the case of a domestically controlled REIT.  Before 2007, such distributions generally were treated as sales of the REIT's stock, and not subject to US tax.  In 2007, The IRS issued Notice 2007-55 which concluded that such distributions should be treated as sales of real estate and therefore subject to FIRPTA and possibly, branch profits tax. This proposal could not have come at a worse time as it joined with the economic crisis to devastate commercial real estate property values as foreign investors fled US real estate companies.\nIncrease the amount of stock minority shareholders can hold without triggering FIRPTA tax: Currently, foreign shareholders can own up to 5 percent of publicly-traded companies without triggering FIRPTA.  There are numerous investors around the world who own just under 5 percent of these companies’ stock, but despite their willingness to invest in US companies, won’t dare to go over for fear of being ensnared by FIRPTA.  The proposal would increase from 5 percent to 10 percent the exemption level threshold and apply the new threshold to investors in certain widely held qualified collective investment vehicles.\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b19096e2-3da0-4130-87bd-7ab0219bac0c,\"Senate Appropriations Committee Approves Back Pay For FAA Workers Furloughed During Summer\n                    \n                            Nearly 650 New Jersey Workers Would Receive Back Pay\n                    \n                      September 23, 2011\n                     WASHINGTON, DC – Today, U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) announced that the Senate Appropriations Committee has approved legislation to provide back pay for Federal Aviation Administration (FAA) workers furloughed earlier this summer, including nearly 650 New Jersey workers.  The back pay was included as part of the Transportation-Housing and Urban Development (T-HUD) funding bill cleared through the Committee on Wednesday.  As a member of the T-HUD Subcommittee, Lautenberg helped craft the bill and the provision for the FAA workers. \n \n \n“This summer, hundreds of FAA workers in New Jersey lost their paychecks as a result of a shameless Republican stunt,” said Lautenberg, a member of the Senate Appropriations Committee.  “Now, the Senate is taking action to correct that wrong and provide back pay for furloughed FAA workers.  These hard working men and women should never have been used as pawns in a political game, and the House of Representatives must work with us to provide this back pay.”  \n \n \n“Today, 650 hard working men and women in New Jersey are one step closer to getting the back pay they deserve,”  said Menendez, who visited workers at the Tech Center in Atlantic City in August.  “It’s time now for members of the House to earn their pay and get this fixed once and for all.” \n \n \nIn July, a partial shutdown of the FAA occurred after House Republicans refused to consider an extension of FAA funding unless it included controversial and divisive policy provisions.  As a result, 650 professionals at the FAA Tech Center outside Atlantic City and thousands of workers around the country were furloughed.  Those workers would be eligible for back pay if the legislation approved in Committee this week becomes law.  The full Senate must now approve the bill. \n \n \nSenators Lautenberg and Menendez are also cosponsors of a bill to provide back pay to the furloughed workers.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4c7f370d-404f-437a-921b-d13814d5a5c5,\"Senator Menendez: TRAIN Act Is An Attack on New Jersey\n                    \n                            Bill That Protects Out of State Polluters While Compromising NJ Public Health Passes House \n                    \n                      September 23, 2011\n                     WASHINGTON- U.S. Senator Robert Menendez (D-NJ) issued the following statement regarding today’s passage by the U.S. House of Representatives of the TRAIN Act by a vote of 249-169. The bill would gut the Clean Air Act (CAA) by blocking the EPA’s ability to enforce the Mercury and Air Toxics Standard as well as the Cross-State Air Pollution Rule, both of which serve to limit the public’s exposure to harmful air pollution. These two rules would save billions in health costs annually and protect the public from life threatening toxins. \n \n“This attack on the Clean Air Act is an attack on New Jersey and drives a TRAIN through public health protections,” said Senator Robert Menendez (D-NJ).  “We cannot afford policies that put the interests of antiquated, out of state coal power plants ahead of the public health of New Jerseyans.  It is high time all our leaders realize that pollution does not create jobs -- it creates sick people, higher medical bills, lost days of work, and is a drag on our economy.”\n \nIf allowed to go forward, the two EPA rules in question would prevent 3209 premature deaths in New Jersey in 2015 according to EPA analysis. [EPA, Regulatory Impact Analysis for the Cross-State Air Pollution Rule, (CSAPR), and EPA, Technical Support Document: “Analysis of State and County-Level PM2.5 Benefits.” Note: Mortality estimates are from the Mercury and Air Toxics Rule (MATR), and for the eastern U.S., also include mortality benefits from CSAPR.]\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7365bc49-f21e-4613-8f84-b31fb92bd22c,\"Senators to President Obama:  A Strong US-Cyprus Relationship is an Anchor of U.S. Foreign Policy \n                    \n                      September 23, 2011\n                     Washington – In a letter to U.S. President Barack Obama led by U.S. Senators Robert Menendez (D-NJ) and Olympia Snowe (R-ME) and signed by 25 colleagues, the Senators underscore the importance of a strong U.S.-Cyprus relationship.  The letter recognizes the strategic importance of Cyprus, particularly as tensions have risen in the Eastern Mediterranean and has been underscored by Turkey’s recent belligerent statements and threat of military action.\n \n \n“It is deeply unfortunate that the Turkish occupation and division of Cyprus, a sovereign E.U. member state, has continued for nearly four decades,” the Senators wrote.  “We urge you to help Turkey understand that this occupation is against its interests, violates international law, and does not promote the safety and security of Turkish Cypriots who would prosper in a united Cypriot republic.”\n \n“Turkey’s continued intransigence on the issue of Cyprus has prevented the island’s reconciliation and its recent belligerent and threatening statements demonstrate that we shouldn’t expect a change in attitude from the current Turkish administration.  I remain hopeful, nonetheless, that the Cypriot people will be able to find a way forward.   Cyprus’ future can only be determined by Cypriots.” Said Senator Menendez.  \n“Our nation’s relationship with Cyprus is critically important and it is vital that it remains a key component of our foreign policy. I look forward to working with my colleagues in the U.S. Congress and in the Administration to convince Turkey that the Cyprus question is one that can only be resolved through mutual agreement on a solution, not the imposition of one,” said Senator Snowe. \n \nPDF of the letter: http://menendez.senate.gov/download/?id=26848e18-58ef-43a8-b9c2-c63d38abfb43\n \n \nFull text of the letter follows: \n \nPresident Barack Obama\n \nThe White House\n \n1600 Pennsylvania Avenue, N.W.\n \nWashington, DC 20500\n \n \nDear Mr. President:\n \nThank you very much for your strong support of the U.S.-Cyprus relationship.  As a fellow democracy, the Republic of Cyprus shares basic values with the United States and has remained a close friend and ally for many years. \n \n \nBased on its location in such a troublesome neighborhood, we agree strongly with Secretary of State Clinton that our relationship with the Republic of Cyprus is \"\"strategically important.\"\"  Indeed, the U.S.-Cyprus friendship remains an anchor of American foreign policy toward the region.  Moreover, as a member of the European Union, Cyprus shares our traditions of freedom and a market-based economy, and embraces a thoroughly Western culture and outlook.\n \nRecent tensions in the Eastern Mediterranean have also highlighted Cyprus’ stabilizing role in the region.  Cyprus denied the use of its ports to the controversial Gaza ‘flotilla’ in 2010 and is preventing the use of its territory for actions that might destabilize the already tense Middle East.  It also captured an arms-laden ship traveling from Syria to Hamas in Gaza in 2009, and it has stood staunchly with the United States against the Iranian nuclear program.  \n \n \nWe have appreciated the fair approach you and Secretary Clinton have adopted toward our Greek-Cypriot and Turkish-Cypriot friends in Cyprus.  We believe it is important that this fair approach is implemented consistently by all American officials.  We look forward to working with you to see how this goal can be achieved.\n \nIt is deeply unfortunate that the Turkish occupation and division of Cyprus, a sovereign E.U. member state, has continued for nearly four decades.  We urge you to help Turkey understand that this occupation is against its interests, violates international law, and does not promote the safety and security of Turkish Cypriots who would prosper in a united Cypriot republic.  Moreover, news of the interruption of Christmas services last December at several Orthodox Churches by Turkish troops in occupied northern Cyprus only served to undermine Turkey’s desired image and its prospects for E.U. accession.\n \n \nWe firmly support the Cyprus settlement process and hope that it will lead to a fair and lasting agreement for the benefit of all Cypriots.  Such settlement efforts must hold steadfastly to key values including internationally protected human rights and democratic rule of a majority of all Cypriots.  Further, American officials must act with cognizance of the relationship between these goals and the need for strong regional allies when it comes to standing up against threats to our national interests, such as that posed by Iran’s nuclear program.\n \nAgain, we appreciate your support for the U.S.-Cyprus relationship and look forward to the day when Cyprus is sovereign and reunified. \n \n \nSincerely,\n \nSenator Robert Menendez\n \nSenator Olympia Snowe\n \nSenator Jeanne Shaheen\n \nSenator Mark Kirk\n \nSusan Collins\n \nSenator Carl Levin\n \nSenator Barbara Boxer\n \nSenator Sherrod Brown\n \nSenator Benjamin Cardin\n \nSenator Robert P. Casey, Jr.\n \nSenator Richard Durbin\n \nSenator Dianne Feinstein\n \nSenator Debbie Stabenow\n \nSenator Ron Wyden\n \nSenator Joe Manchin III\n \nSenator Jack Reed\n \nSenator Barbara Mikulski\n \nSenator Richard Lugar\n \nSenator Mary Landrieu\n \nSenator Jeff Sessions\n \nSenator Richard Blumenthal\n \nSenator Sheldon Whitehouse\n \nSenator Mark Begich\n \nSenator Tim Johnson\n \nSenator Jeff Merkley\n \nSenator Frank Lautenberg\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=aabfffa3-306f-4fc2-b5ad-1b6bf4b225c8,\"On One Year Anniversary of Tyler Clementi’s Suicide, Menendez Renews Call to Protect Kids from Bullying\n                    \n                      September 22, 2011\n                     WASHINGTON -  On the one year anniversary of Tyler Clementi’s suicide, US Senator Robert Menendez (D-NJ) today released the following statement in strong condemnation of cyber bullying acts and again called for support of cyber security legislation to help protect young people. Tyler Clementi was a student at Rutgers University when he killed himself after a fellow student breached his privacy, taped a video of him and leaked it on the internet.\n \n“On this somber memorial, we should all take a moment to reflect how we act toward our neighbors, friends, and even complete strangers.  Life can be pretty difficult at times, especially for children and young adults, and it’s up to each of us to lend a helping hand, or a shoulder to cry on and to remind those suffering that it gets better.  We should all recommit ourselves to taking a stand against bullying in all its forms and to preach and practice tolerance, understanding, and empathy toward one another.  While Tyler has tragically been gone from this world for a year now, his story and the lessons it imparted to us will live on forever.” \n \n \nSenator Menendez is the author of the SAFE Internet Act, introduced in the House of Representatives by Rep. Wasserman Schultz, a national grant program for internet and wireless safety education.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9b72e217-7c59-4203-878d-00aaa5def92d,\"Lautenberg, Menendez Announce $2 Million in Emergency Funding for Highway Flood Damage in New Jersey     \n                    \n                            Senators Urged Gov. Christie to Apply for US DOt Emergency Funds \n                    \n                      September 22, 2011\n                     WASHINGTON, DC — U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that $2 million in federal funding from the Department of Transportation (DOT) will be made available immediately for the New Jersey Department of Transportation to pay for the cleanup and repair of roadways damaged during Hurricane Irene.\n \n“Hurricane Irene and the massive floods that followed caused serious damage to New Jersey’s roadways.  I am proud the federal government is acting quickly to send money to New Jersey to help the state cover repair costs following this storm.  This federal funding is a critical first down payment that will help our state’s transportation system recover,\"\" Lautenberg said. \n \nI am pleased that the DOT responded so quickly to our request to make these funds available to New Jersey right away.  Communities across our state are still recovering from the massive floods that have hit us and this funding will help the state perform the repair work necessary to get our roads and highways back in shape,\"\" said Menendez.\n \nThe funding is being made available through the DOT’s Federal Highway Administration (FHWA) Quick Release Emergency Relief Funding program.  The emergency funds will be used to reimburse the state for the cost of repairs that were done in order to resume essential traffic flow immediately after the flooding and prevent further damage.\n \nIn the aftermath of Hurricane Irene, Senators Lautenberg and Menendez wrote a letter to New Jersey Governor Chris Christie alerting him to this emergency funding source and urging him to apply.  A copy of their letter can be found here.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d6b57db4-c82b-4be2-8536-09fb4a4889ce,\"Lautenberg, Menendez Introduce Bill to Preserve New Jersey Coastal Heritage Trail\n                    \n                      September 22, 2011\n                     WASHINGTON – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today introduced legislation to reauthorize New Jersey’s Coastal Heritage Trail through 2016.  The bill would allow the National Park Service to continue to manage the trail and provide support to help visitors access the trail’s many attractions. \n \n \n“We have a responsibility to protect New Jersey’s natural treasures for future generations and preserve our state’s history and environment,” said Senator Lautenberg.  “This legislation will allow us to continue dedicating federal resources to the Coastal Heritage Trail so that New Jerseyans and tourists continue enjoying the beauty of our state for years to come.”  \n \n \n“I am pleased to once again introduce legislation to protect New Jersey’s coastal treasures for generations to come,” said Senator Menendez. “Our coasts are a source of splendor, history, and countless opportunities for outdoor leisure. They’re also crucial for our state’s economy – bringing in billions in tourism revenue every year. Their preservation is an investment in our environment and our economic prosperity.” \n \n \n \nThe 300-mile Coastal Heritage Trail is divided into five sections that extend along the coastline from Perth Amboy to Cape May and west into Salem County along the Delaware River.  The trail contains New Jersey beaches, bays, historic villages, wildlife sanctuaries and the nation’s oldest operating lighthouse, among other historic and cultural sites.\n \n \nIn 1988, Senator Lautenberg joined former Senator Bill Bradley (D-NJ) to craft a measure that authorized the Secretary of Interior to designate the Coastal Heritage Trail.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d7a44f98-6565-447a-a0da-51ca81bc4776,\"Menendez, Lautenberg Announce $3.8 million for New Jersey Transit Upgrades  \n                    \n                      September 22, 2011\n                     WASHINGTON – US Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that the US Department of Transportation, Federal Transit Administration has allocated nearly $3.8 million to upgrade public transportation infrastructure in three New Jersey communities.\n \nThe funds will provide NJ Transit Corporation with the necessary resources to purchase new clean fuel buses, upgrade its existing vehicle fleet, renovate facilities for passenger safety and comfort, and preserve historic resources. \n \n“New Jersey Transit operates the nation’s second largest transit systems in terms of service miles.  Every day, public transportation connects thousands of New Jerseyans to jobs, educational opportunities, and vital services in a safe and reliable manner.  Reinvestment in our existing transit infrastructure is a vital down payment in support of communities of lasting value – where businesses want to invest and where families want to live,” said Menendez, who serves as Chairman of the Senate Banking Subcommittee on Housing, Transportation, and Community Development.\n \n\"\"New Jersey Transit keeps people on the move and these critical upgrades will make service more dependable and efficient,\"\"  said Senator Lautenberg, a member of the Appropriations Subcommittee on Transportation, Housing and Urban Development.  \"\"This federal investment will modernize mass transit operations throughout the state and I will continue fighting to help New Jersey Transit provide quality service, attract riders and reduce congestion on our crowded roads.”\n \n The $3.8 million will be distributed as follows:\n \n$1,380,000 will support the South Brunswick Shuttle Service and Parking Facilities project.  The Independence Way Park and Ride Facility involves the construction of a surface lot park and ride facility (70 – 85 spaces) and associated drainage improvements on the southbound side of US Route 1. In addition, a bus shelter, two bus pull-offs, and revisions to a traffic light for pedestrian crossing are included in the project.  \n \n $950,000 will support the rehabilitation and project administration of the Morris Plains Rail Station which involves replacing tiles on the station roof, rehabbing the roof of the shelter building, and preventing further deterioration of historic material. \n \n \n$750,000 will allow the Atlantic City Jitney to purchase 60, 13-passenger, gas-powered, life equipped buses to replace a portion of its aging diesel fleet.\n \n $712,500 will be used for rehabilitation and project administration of the Lincoln Park Station which involves work along the exterior and interior of the rail station.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dc7dd149-4754-4a15-bdb5-f95604dd7853,\"Senator Menendez Cheers on Three NJ Schools in Solar Decathlon\n                    \n                            Schools Answered Senator's Public Challenge to Compete\n                    \n                      September 22, 2011\n                     Washington, DC – U.S. Senator Robert Menendez today joined competitors from three New Jersey universities to kick off the U.S. Department of Energy’s (DOE) 2011Solar Decathlon on Washington’s National Mall.  The biennial DOE Solar Decathlon challenged 19 collegiate teams from across the world to design, build, and operate solar-powered houses that are cost-effective, energy-efficient, and attractive. The winner of the competition is the team that best blends affordability, consumer appeal, and design excellence with optimal energy production and optimal efficiency. \n \n \n“You are leading us to a brighter, cleaner, greener, smarter future,” said Menendez at today’s opening ceremony.  “Our New Jersey competitors are showing the nation that we can power our homes on renewable energy and live our lives without generating climate pollution.  And most importantly, you show us that young people can accomplish great things.” \n \n \nNearly two years ago, Menendez issued a challenge to the universities of New Jersey to create a top  proposal and compete in the DOE Solar Decathlon Finals-- none had in the previous four solar decathlons (2002, 2005, 2007, and 2009).\n \n \nThis year, three New Jersey universities, represented on two teams, were selected by DOE to participate in the 2011 Solar Decathlon: Rutgers and the New Jersey Institute of Technology formed Team New Jersey and a partnership between Stevens Institute of Technology and the Parsons The New School for Design formed the EMPOWERHOUSE Team.\n \n \nSenator Menendez was also recognized at the Solar Decathlon’s Kick Off Event for leading the successful fight to keep the competition on the Mall.  Officials who oversee the National Mall had raised concerns about damaging the grass and attempted to move the event to suburban Maryland.  But Senator Menendez led a group of Senators to convince the Administration to keep the competition on the nation’s center stage.\n \n \nTeam New Jersey (Rutgers, NJIT): http://www.solarteamnewjersey.com/\n \nTeam New Jersey’s  goal was to create affordable, functional, energy-efficient house suited to the climate of New Jersey.  Their entry, ENJOY House features:  concrete panels in all roof, wall, and floor assemblies that use varied casting processes; perforations that allow for daylighting and dramatically improve thermal performance; and an inverted?hip roof that allows for rainwater collection.\n \nThe ENJOY House is intended for a couple that retires to the Jersey shore. With a retiree's needs in mind, the house that is ADA-accessible. Nonprofit organizations in New Jersey as well as private homebuilders have expressed interest in taking possession of the ENJOY House after the competition.\nEMPOWERHOUSE Team:  http://parsit.parsons.edu/\nStudents at Stevens Institute of Technology built their entry, EMPOWERHOUSE, on a lot in Hoboken.  In partnership with Parsons, they took a community-based approach to building affordable, net-zero housing that addresses all aspects of domestic life.  Bringing the Empowerhouse beyond the National Mall, the team is working with community partners, including Habitat for Humanity Washington D.C. and the D.C. Department of Housing and Community Development, to construct a second house in the D.C. neighborhood of Deanwood. After the Solar Decathlon, the two houses will be joined together to create a two-family home, and will be a model for affordable, net-zero housing that can be replicated around the globe.\n \n \nFor more photos of Senator Menendez and the Solar Decathlon, please visit: http://menendez.senate.gov/newsroom/galleries/gallery/?id=61e0101a-afb8-4efe-9313-6ce0ebccfc7d\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=aa873025-b90e-4dbd-bc5d-df8e8466227e,\"Menendez: Abbas Actions Would Force Re-Evaluation of U.S. Funding To Palestinian Authority\n                    \n                      September 20, 2011\n                      \nWashington – At a press conference today with Senate Foreign Relations Committee members Chris Coons (D-DE) and Johnny Isakson (R-GA), Senator Robert Menendez, Chairman of the Subcommittee on the Western Hemisphere, said that if President Abbas moves forward with his plan to seek a UN resolution, “I will be obliged to re-examine all US funding provided to his government.”\n \n“If President Abbas insists on acting irresponsibly this week in New York, he will make clear that he does not value America’s support and assistance to the Palestinian people and that Israel does not have a serious partner in the peace process,” said Menendez.  “My Senate colleagues and I, as we make difficult budget decisions in the months ahead, will have no choice but to re-evaluate the priority of U.S. taxpayer contributions to the Palestinian Authority,”  he added.\n \nOn Monday, Menendez signed on a letter to the President calling on him to “utilize the opportunity offered by your address at the United Nations to reaffirm and explain America’s determination to stand by Israel at this difficult hour.”\n \nThe full text of Senator Menendez remarks today follow: \n \n“President Abbas has announced his intention to pursue UN Security Council recognition of a Palestinian state and membership status for Palestine in the United Nations.  This unilateral approach to gaining sovereignty on the part of the Palestinian Authority is provocative, reckless and threatens to inflame passions throughout the region.\n \n“As our UN Ambassador, Susan Rice has stated, ‘There’s no magic wand, there’s no magic piece of paper, here or anywhere else. In order to achieve the creation of a Palestinian state with clear boundaries, with sovereignty, with the ability to secure itself and provide for its people, there has to be a negotiated settlement.’\n \n“A UN Security Council resolution will not bring peace to the Palestinian people, it will not help to restart negotiations with Israel, and it will not bring any political advantage to the Palestinian Authority.  President Abbas is leading his people down the wrong path with his shortsighted attempt to pre-empt the peace process and the Oslo Accords.  The only way to achieve a true, lasting peace for the Palestinian people is through comprehensive negotiations and dialogue with Israel.\n \n“Israel has negotiated in good faith with the Palestinian Authority and has removed its troops from the Gaza Strip and large areas of the West Bank.  For all of its efforts to seek peace, what has Israel received in return:  Missile attacks from Gaza and suicide attacks in its cities. \n \n“Let me be clear, the United States is not simply an ally of the Israeli people, it’s an ally of Israel’s democratic ideals.  It’s an ally of its history, of its aspirations for peace and prosperity, its can-do spirit ad amazing resilience in the face of threats from all sides.\n \n“President Obama and Secretary of State Clinton have made clear that the United States will use its UN Security Council veto to stop any UN resolution that recognizes the state of Palestine.  I fully endorse President Obama and Secretary Clinton’s approach and urge them to use all diplomatic measures necessary to gain support from other nations in voting against such a resolution.\n \n“I have personally contacted leaders throughout the western Hemisphere asking them to oppose President Abbas in his unilateral attempt to gain UN recognition and to avoid negotiating with Israel.  In my letters to these leaders, I have underscored the importance of bilateral peace negotiations between Israel and the Palestinian Authority as the only way t bring about a two state solution.  In particular, I have called upon Brazil and Colombia, as members of the UN Security Council, to vote against the resolution.\n \n“Let me conclude by stating that as a United States Senator, assuming that President Abbas moves forward with his unrealistic plan to seek a UN resolution, I will be obliged to re-examine all US funding provided to his government.  If President Abbas insists on acting irresponsibly this week in New York, he will make clear that he does not value America’s support and assistance to the Palestinian people and that Israel does not have a serious partner in the peace process.  My Senate colleagues and I, as we make difficult budget decisions in the months ahead, will have no choice but to re-evaluate the priority of U.S. taxpayer contributions to the Palestinian Authority\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9e0ff9e7-d5f5-47a7-b4b3-7f62db941a7c,\"Senators Menendez and Cornyn Introduce Bipartisan Resolution to Honor Hispanic-Serving Institutions\n                    \n                            Resolution designates week beginning September 19th as \"\"National Hispanic-Serving Institutions Week\"\" and recognizes the Hispanic Association of Colleges and Universities on their 25th Anniversary\n                    \n                      September 19, 2011\n                     WASHINGTON, DC – U.S. Senator Robert Menendez (D-NJ) and Senator John Cornyn (R-TX) introduced a bipartisan resolution designating the week of September 19-24th as National Hispanic-Serving Institutions Week to recognize the more than 300 non-profit Hispanic-Serving Institutions (HSIs) throughout our nation for their work, achievements, and critical role in educating and empowering Hispanic youth.  This resolution also honors the Hispanic Association of Colleges and Universities (HACU) for their work in promoting quality educational opportunities for Hispanic students on their 25th anniversary.  Hispanic Serving Institutions (HSIs) are defined as colleges, universities, or systems/districts where total Hispanic enrollment constitutes a minimum of 25% of the total enrollment.  \n Senator Menendez said:  “Hispanic-Serving Institutions are instrumental to providing opportunities for Hispanic students nationwide so they can achieve their full potential.  In fact, I myself am a graduate of a Hispanic-Serving Institution in my home state of New Jersey. As Chair of the Senate Democratic Hispanic Task Force, I am proud to introduce this resolution recognizing the importance of these institutions and the Hispanic Association of Colleges and Universities for the critical work they do on behalf of Latino students.”Sen. Cornyn said: “Hispanic-Serving Institutions open the doors of education and opportunity to thousands of Hispanic young people each year. We are fortunate that Texas is home to more than 40 Hispanic-Serving Institutions, and I commend the staff and leadership at each of these HSI’s for the fine work they’re doing in preparing tomorrow’s generation of Hispanic leaders.”\n \n \n \nPresident Barack Obama will issue a Proclamation designating the week of September 19- 24, 2011 as National Hispanic-Serving Institutions (HSIs) Week. \n To read the full resolution, click here: http://menendez.senate.gov/download/?id=32d3cff6-3ffb-494d-b718-358ae7754b49\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=62173ec4-ac23-4251-982e-86b336c1a6f4,\"Senators Urge President Obama to Underscore Strong Support for Israel During UN General Assembly \n                    \n                      September 19, 2011\n                      \nWASHINGTON – Today, 14 U.S. Senators called on President Obama to issue a strongly worded defense of Israel during his address to the United Nations General Assembly on Wednesday.  In a letter, the Senators highlighted a number of recent, troubling developments in the Middle East, including the attack on the Israeli Embassy in Cairo, anti-Israeli rhetoric from Prime Minister Erdogan of Turkey, and efforts to isolate Israel by unilaterally advancing a resolution on Palestinian statehood at the UN. The Senators ask that President Obama “utilize the opportunity offered by your address at the United Nations to reaffirm and explain America’s determination to stand by Israel at this difficult hour.”\n \n \n \nThe letter was signed by the following Senators: Menendez, Lieberman, Kyl, Casey, Collins, Gillibrand, Kirk, Blumenthal, Hatch, Cardin, Rubio, Schumer, Isakson, Coons\n \nPDF OF THE LETTER:  http://menendez.senate.gov/download/?id=6dda698c-56b1-45cc-927b-e6aeee9dbbab\n \nFULL TEXT OF LETTER: \n \nDear Mr. President:\n \n As you prepare to address the United Nations General Assembly this week, we write to express our concern about a number of troubling developments in the Middle East that pose difficult challenges for our ally Israel as well as our own regional security interests.\n \nWe are deeply disappointed that President Mahmoud Abbas appears determined to scorn your persistent efforts to persuade him to return to the negotiating table with Israel and instead seek unilateral diplomatic action in New York that will only set back the prospects for peace. We are also troubled by the anti-Israeli rhetoric that Turkish Prime Minister Erdogan has displayed in recent weeks in the wake of the Palmer Report, which is harmful to Turkey’s reputation in the United States, especially when coupled with its reluctance to take any meaningful actions in response to the brutal crackdown in Syria. Lastly, the attack on the Israeli Embassy in Cairo earlier this month by a mob was profoundly unsettling. We commend your immediate and direct engagement with Egyptian authorities to save the lives of the six trapped Embassy personnel.  \n \n We believe it is imperative for you to speak strongly, forthrightly and publicly about U.S. concerns over these developments. We need to make it clear that we will not tolerate continued threats to Israel by governments or individuals in the region or attempts to delegitimize Israel at the UN or other international forums. Violence and unilateralism against Israel will be met with the strongest U.S. opposition.  \n \nPolitical and physical attacks on Israel pose real dangers to the prospects for building Mideast peace and present the possibility of a region-wide deterioration into violence.  Israel’s real sense of growing isolation will make it much more difficult to move the Mideast in a positive direction. We therefore urge you to utilize the opportunity offered by your address at the United Nations later this month to reaffirm and explain America’s determination to stand by Israel at this difficult hour.\n \nThe whole world will be watching and listening when you speak next week at the UN. The world needs to hear unequivocally from you that Israel – our friend, ally, and strategic partner -- is not alone in facing these threats.\n \nWe look forward to your response.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=527b4f45-dcbc-484e-8b6b-ab26b5a5e15d,\"Senators Menendez and Isakson Call for Extending Higher Home Loan Limits to Boost Weak Housing Market\n                    \n                            Higher limits for federally insured loans set to expire at end of September \n                    \n                      September 16, 2011\n                     WASHINGTON, DC – U.S. Senators Robert Menendez (D-NJ) and Johnny Isakson (R-GA) today called on Senate Housing appropriations leaders to allow the Federal Housing Administration (FHA), Government Sponsored Enterprises (GSE) and the Veterans Administration (VA) to insure home loans at their current maximum levels for an additional two years, until December 31, 2013. \nIn 2008, to aid the weak housing market, Congress increased the maximum loan limit for the FHA, GSEs and the VA to 125% of local median home prices.  Those limits, if allowed to expire on September 30th for the FHA and GSEs and on December 31st for the VA, could set back the still-weak housing market even further.\nIn a letter to Senators Murray, Collins, Reid and McConnell, Menendez and Isakson wrote:  “The effects of a possible expiration could be dramatic – access to mortgage credit will be significantly impeded for many homeowners and sellers across the country, at a time when the housing market is very weak and credit continues to be tight.”  \nMenendez and Isakson sent the letter a day after a Senate Subcommittee hearing focusing on refinancing and restructuring mortgages.  “…we were struck by the virtual unanimity of the housing expert witnesses, both Democratic and Republican, in supporting a temporary extension of the higher loan limits,” they wrote.  “One witness, Mark Zandi of Moody’s and a former adviser to Senator McCain, stated that he opposed extending the higher limit at the beginning of this year, but had changed his mind given that the performance of the housing market has been so weak since then,” they added.\nIn Early August, Menendez and Isakson introduced bipartisan legislation to extend the limits, The Homeownership Affordability Act of 2011, S. 1508.  The Homeownership Affordability Act of 2011 is paid for by increasing the guarantee fees charged on the loans themselves, but only those loans priced between $625,500 and $729,500.  Guarantee fees, or “g-fees”, are charged by loan guarantors such as the GSE’s to lenders for bundling, servicing and selling the mortgage-backed securities to investors and are similar to insurance.  Additionally, FHA audits for the past decade have shown that larger loans actually perform better and default at significantly lower rates than small loans, so allowing these larger loans to be insured would actually improve taxpayer returns.\nFULL TEXT OF LETTER:                \nSeptember 15, 2011\nThe Honorable Harry Reid                                                                            The Honorable Mitch McConnellMajority Leader                                                                                          Minority Leader522 Hart Senate Office Building                                                                            317 Russell Senate Office BuildingWashington, DC 20510                                                                                     Washington, DC 20510\nThe Honorable Patty Murray                                                                      The Honorable Susan CollinsChair                                                                                                     Ranking MemberTransportation, Housing and Urban                                                                Transportation, Housing and Urban Development and Related Agencies                                                               Development and Related AgenciesAppropriations Subcommittee                                                                         Appropriations SubcommitteeCommittee on Appropriations                                                                   Committee on AppropriationsWashington, DC 20510                                                                                Washington, DC 20510\nDear Chairman Murray and Ranking Member Collins:\nWe write to urge you to include an extension of the conforming loan limits that are currently eligible for Federal Housing Administration (FHA), Government Sponsored Enterprise (GSE) and Veterans Administration (VA) insured mortgage loans in any Fiscal Year (FY) 2012 continuing resolution or similar funding measure.  The current limits are set to expire beginning on September 30th, 2011 and if they are not extended, the housing market and our broader economy could face painful consequences.  We have introduced bipartisan legislation to extend the limits, The Homeownership Affordability Act of 2011, S. 1508.\nThe current limits have been in place since early 2008 to aid the weak housing market and were passed with broad bipartisan majorities (P.L. 110-185).  Because the housing market is even weaker today and continues to decline, it would be a terrible decision to remove support of the housing market at this time.  If the limits are not extended, the average decline in loan limits would be more than $68,000 per county, and loan limits for FHA, the GSEs and the VA will all drop to 115% of local area median home prices with a cap of $625,500.  The current loan limits for the FHA and GSEs are for 125% of local area median home prices with a cap of $729,750.\nThe effects of a possible expiration could be dramatic – access to mortgage credit will be significantly impeded for many homeowners and sellers across the country, at a time when the housing market is very weak and credit continues to be tight.  In the past year, new home prices fell another 7.5% according to CoreLogic.[1]  Furthermore, the FHA and GSEs are currently insuring the vast majority of new mortgage originations because private lending remains severely constricted.  We cannot, at this time, rely on private lending to pick up the slack if the current governmental limits were to expire.  The current state of the housing market needs further short-term stabilization as private capital finds its way back into the market.\nThe Homeownership Affordability Act is fully paid for by increasing the guarantee fees charged on the higher-limit loans themselves.  Guarantee fees, or “g-fees”, are charged by loan guarantors, such as the GSEs, to lenders for bundling, servicing and selling the mortgage-backed securities to investors and are similar to insurance.  The Congressional Budget Office estimates that the GSE loan limit extension has a $285 million mandatory cost and the VA loan limit extension has a $51 million mandatory cost, but the FHA loan limit extension has $194 million in discretionary savings.  The mandatory costs of the GSE and VA loan limit extensions ($336 million) are offset by an increase of $336 million in guarantee fees but only for those loans priced between $625,500 and $729,500.  S. 1508 also has $194 million in discretionary savings from the FHA loan limit extension.  Additionally, FHA audits from the past decade have stated that larger loans actually perform better and default at significantly lower rates than smaller loans, so allowing the larger loans could actually improve returns to taxpayers.\nAt yesterday’s Senate Subcommittee hearing on refinancing and restructuring mortgages, we were struck by the virtual unanimity of the housing expert witnesses, both Democratic and Republican, in supporting a temporary extension of the higher loan limits.  Only one of the nine witnesses expressed opposition to keeping the higher loan limits given how weak the housing market is.  One witness, Mark Zandi of Moody’s and a former adviser to Senator McCain, stated that he opposed extending the higher limit at the beginning of this year, but had changed his mind given that the performance of the housing market has been so weak since then.\nReducing the limits prematurely will negatively affect an already weak housing market.  It is crucial that Congress provides short-term support for homeowners, homebuyers and the economy by extending the conforming loan limits in any FY12 continuing resolution or similar funding measure.\n                                                                                Sincerely,\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7d261af7-1b0e-41d6-b0c1-a94473c97a44,\"Menendez Joins EPA Regional Administrator to Launch Model Green Hospital Initiative in NJ\n                    \n                      September 16, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today joined the U.S. Environmental Protection Agency Deputy Regional Administrator George Pavlou to launch a new green hospital initiative at the Bayonne Medical Center. Through a partnership agreement, the first of its kind between the federal agency and a New Jersey hospital, both organizations will work together to achieve specific clean energy goals. With technical assistance and support from EPA and its Energy Star Program, the Bayonne Medical Center will audit its operating procedures and energy usage to develop a plan to reduce energy it by 10 percent, as well as reduce potable water usage.  Dan Kane, President and CEO of the Bayonne Medical Center; Bayonne Mayor Mark Smith; and other elected officials also participated in the event. \n \n \n \n“This will be the first green hospital initiative with the EPA in the state of New Jersey, leading the way as a model for green medical centers for New Jersey and the nation,\"\" said Senator Menendez. “Doctors understand that over 400 New Jerseyans must be admitted to hospitals every year because of pollution from power plants.  By reducing their energy use the Bayonne Medical Center is not only helping the environment and saving money, but they are also protecting public health. I congratulate the EPA and the Bayonne Medical Center for partnering on this trailblazing project.”\n \n \n \nCAPTION: US Senator Robert Menendez D-NJ (center) joins Freeholder Doreen M. DiDomenico; Assemblyman Jason O'Donnell; Mayor Mark Smith; EPA Deputy Regional Administrator George Pavlou;  and Dan Kane, President and CEO Bayonne Medical Center to launch a green hospital initiative at the Bayonne Medical Center.                                                                               ***EPA FACT SHEET***\n \nUnder its Memorandum of Understanding with EPA, Bayonne Medical Center has agreed to:\n \n• Install solar photovoltaic (PV) systems on the roof of its parking garage.\n \n• Implement a program to separate the collection of food waste for composting, which will decrease the need to send organic materials to landfills.\n \n• Achieve at least a 10% reduction in energy consumption, and become an EPA Energy Star partner.\n \n• Boost solid waste recycling and the re-use of industrial materials, including recycling of electronic waste and fluorescent bulbs. Bayonne Medical Center will also join EPA’s WasteWise program.\n \n• Improve its sustainable landscaping, water conservation and stormwater management programs, with the assistance of WaterSense products and through consultation with EPA’s Greenscapes program.\n \n• Use environmentally friendly construction materials and energy efficient lighting fixtures.\n \n• Recycle or Reprocess medical equipment lamps, batteries, laser toner and inkjet cartridges.\n \n• Reduce air pollution from vehicles and other internal combustion engines used in construction and operation of its facilities.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=05d7859d-60d6-4e73-bff0-9ed51ee91306,\"US Senator Robert Menendez to Senate GOP: Quit playing Politics with our Children\n                    \n                      September 16, 2011\n                     Washington – U.S. Senator Robert Menendez (D-NJ) today called on Senate Republicans to stop blockage of his bi-partisan bill to extend the programs under the landmark Combating Autism Act for another three years.  \n“For nearly a week, some Republicans in the Senate have sat on, blocked and held up this bi-partisan bill that would simply extend critical programs for families dealing with autism,” said Menendez.  “Let me be very clear:  A majority of Senators were ready to pass this bill this week.  There can be only one explanation for obstruction – petty partisan politics.”\nLast week, Menendez’s bill, The Combating Autism Reauthorization Act, was unanimously approved by the Senate Health, Education, Labor and Pensions Committee and has been sitting before the full Senate since Tuesday morning.  Since then, some Senate Republicans have refused to allow this bill to proceed, despite bi-partisan support and unanimous approval from Senate Democrats.  \nThe legislation is a simple three year extension of the Combating Autism Act (CAA) of 2006.  The original bill passed the Senate unanimously on December 7, 2006 and was signed into law shortly thereafter.  This landmark legislation included provisions relating to the diagnosis and treatment of persons with autism spectrum disorders (ASD), and expanded and intensified biomedical research on autism, including a focus on possible environmental causes.  Additionally, it provides for detailed surveillance by the Centers for Disease Control and Prevention (CDC) of the increasing prevalence of Autism Spectrum Disorders (ASD).  The Act also reconstitutes the Interagency Autism Coordinating Committee to advise the Secretary, coordinate the federal response to autism and develop the annual strategic plan for autism research.  The programs authorized under the CAA are scheduled to sunset at the end of the month. \nAutism is the fastest-growing serious developmental disability in the country, affecting on average 1 in 110 children and 1 in 70 boys. In New Jersey, 1 in 94 children are affected with autism spectrum disorders, one of the highest rates in the nation.  This year more children will be diagnosed with autism than with AIDS, diabetes and cancer combined. \n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7dca1fb5-dca8-4044-adef-19b389575d3f,\"Lautenberg and Menendez Announce More than $35 Million in FEMA Funding for Flood Mitigation in New Jersey \n                    \n                      September 16, 2011\n                     WASHINGTON – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Federal Emergency Management Agency (FEMA) has provided more than $35 million through its Severe Repetitive Loss Program for flood mitigation projects in New Jersey.\n \n The funding will be used for voluntary buyouts of eligible homes, and to elevate homes where the lowest floor is below the Base Flood Elevation.  Funding has also been provided to the state’s Office of Emergency Management and Department of Environmental Protection to assess flooding in high-risk flood areas throughout the state.   \n \n\n “New Jersey families are tired of repairing home damages following heavy rain storms and they need relief,” said Senator Lautenberg, Vice Chairman of the Appropriations Subcommittee on Homeland Security which funds this FEMA program.  “These grants will provide funding for home buyouts and elevation projects in some of the most hard hit communities.  This is an investment that targets the most severely affected communities so that the lives and livelihoods of New Jerseyans aren’t on the line every time we have a bad storm.”\n \n “This funding will ensure that New Jersey homeowners are given the help they need to prepare for floods, in order to mitigate the damage caused by future disasters and most importantly, save lives.  Hurricane Irene and the other severe rain storms this summer have illustrated yet again how vulnerable New Jersey is to flooding.  That is why I am proud to have secured this $35 million in funding which will be used to elevate homes, perform voluntary buy-outs of properties that have been repeatedly flooded, and help the state develop a comprehensive way to reduce the damage caused by floods.  Our approach is simple: we must not only help communities recover from natural disasters, we must help them prepare for future ones,” said Senator Menendez.\n\n \n FEMA has provided flood mitigation funding for the following projects\n \n ·      $6.6 million for voluntary home buyouts in Lincoln Park\n \n ·      $4.5 million to elevate homes in Lincoln Park\n \n·      $5.6 million to elevate homes in Little Falls\n \n·      $4.9 million for voluntary home buyouts in Pequannock\n \n·      $4.6 million to elevate homes in Pompton Lakes\n \n·      $3.5 million for voluntary home buyouts in Harmony\n \n·      $1,045,238 for voluntary home buyouts in Fairfield\n \n·      $2.7 million for the N.J. Office of Emergency Management to administer Severe Repetitive Loss Program grants\n \n·      $1.5 million for the state Department of Environmental Protection to conduct flood study and risk assessment in Morris, Hudson, Essex, Union, Bergen, Passaic, Sussex, Middlesex, Monmouth, Ocean, Atlantic, Cape May, Cumberland, Salem, Gloucester and Camden Counties\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=57281ca1-6fe3-4638-af9b-76ef90513834,\"Robert Menendez Statement on Senate Passage of FEMA Disaster Relief Package\n                    \n                      September 15, 2011\n                     WASHINGTON - U.S. Senator Robert Menendez (D- NJ) issued the following statement regarding today’s passage by the U.S. Senate of a $6.9 billion FEMA disaster relief package.  Passage came after several attempts by Republicans to delay the aid at a time when communities throughout 47 states are suffering in the aftermaths of hurricane Irene and other hurricanes, tornadoes and wildfires.  The measure includes an immediate $500 million for FEMA to shore up its disaster relief fund, an additional $4.6 billion for next year and $1.3 billion for Army Corps of Engineers flood control projects.  The bill also provides $135 million for the Economic Development Administration, $100 million for Community Development Block Grants and $266 million for the Department of Agriculture to respond to disaster recovery efforts.  \nThe disaster package must now return to the House where many Republicans have said that any disaster aid must be offset by cuts to programs elsewhere.  Without this measure, aid for victims of disasters is expected to run out around the end of this month – stopping all relief actions.  As of Sunday, more than 31,000 individuals in New Jersey had registered with FEMA for disaster help. \n“Today’s vote is a victory for the thousands of families throughout our state who are struggling to recover and rebuild.   But even as we applaud this victory, the fight for our families is far from over.  Too many House Republicans have already made clear whose side they’re on when it comes to getting relief to the people who need it, or bending to the political whims of the Tea Party.   It’s just not the American way to turn our backs on those suffering from this devastation.  It’s time for House Republicans to put Tea Party economics aside and stand on the side of the thousands of communities who need relief now.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=99bf7397-cb29-4d5a-b8e4-677b46e79fde,\"Menendez Calls for Investigation of Mail Scam Targeting Hurricane Irene Flood Victims \n                    \n                      September 15, 2011\n                      \nWASHINGTON –  Amid reports of a targeted mail scam in New Jersey designed to extract payments and private financial information from Hurricane Irene flood victims, US Senator Robert Menendez (D-NJ) today urged the US Department of Justice to open an investigation immediately and use the Department’s full force to protect vulnerable victims and consumers. According to the New Jersey State’s Consumer Affairs Division, under the scam, victims in New Jersey receive a false “Financial Recovery Awards” letter asking them to mail a $29.97 payment and to provide their financial information in order to process $27,000 in recovery assistance which the victims will never receive. In a letter to Attorney General Eric Holder, Menendez wrote:“Individuals who have suffered a natural disaster and who are already hurting, homeless and vulnerable should not be subjected to scams that target their already depleted pocketbooks. I urge you to put the full force of the Department behind an investigation of these crimes.  The flooding in New Jersey is a horrible tragedy and it would be devastating to New Jersey families to forfeit more of their precious resources to these heinous scams.”FULL TEXT OF THE LETTER:September 15, 2011Attorney General Eric HolderDepartment of Justice950 Pennsylvania Avenue NWWashington, D.C. 20530-0001Dear Attorney General Holder,I am deeply concerned about reports that Hurricane Irene victims in New Jersey are being targeted by a mail fraud scheme designed to cause further financial loss. Homeowners in Little Falls, New Jersey have reported receiving a \"\"Financial Recovery Awards\"\" letter in which the \"\"Payment Security Administration\"\" told recipients that they will receive up to $27,500, but only if they remit a processing fee of $29.97 to an address in Canada. By sending their check or credit card information, New Jersey flood victims may expose themselves to additional withdrawals from their accounts.As is the case during all disasters, the vast majority of New Jerseyans have joined together to help their neighbors in their time of need.  Unfortunately, a small minority of individuals are trying to cash in and exploit the victims of this tragedy, and I am sure that you would agree that their actions are deplorable and must be stopped.Individuals who have suffered a natural disaster and who are already hurting, homeless and vulnerable should not be subjected to scams that target their already depleted pocketbooks. I urge you to put the full force of the Department behind an investigation of these crimes.  The flooding in New Jersey is a horrible tragedy and it would be devastating to New Jersey families to forfeit more of their precious resources to these heinous scams. Thank you and I look forward to working with you on this matter.Sincerely,\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=689c9729-ba22-4733-a78b-9be604efec15,\"Menendez, Lautenberg and Pascrell Request CDC Study of Health Effects Due to Chemical Contamination in Pompton Lakes\n                    \n                      September 15, 2011\n                     WASHINGTON – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) and Congressman Bill Pascrell (D-NJ-08) yesterday sent a letter to Centers for Disease Control and Prevention (CDC) Director Thomas Frieden asking the agency to investigate the health effects of chemical contamination in Pompton Lakes, including a scientifically controlled, full health study of the town’s residents.  \n \n For decades, residents of Pompton Lakes have been concerned that chemical contamination in their environment is affecting their health.  In the mid 1980s, contaminants mixed with ground water and created a contaminated plume beneath nearly 450 homes.  As recently as 2008, tests indicated the solvents were vaporizing up through the soil into basements of some of these homes.  These solvents are considered likely human carcinogens. \n \n A preliminary New Jersey Health and Senior Services Department analysis found that women in Pompton Lakes were hospitalized for cancerous tumors 38 percent more often than women throughout the rest of the state.  Many residents in the city live in proximity to chemical waste and contaminated ground water, but the survey drew no conclusion as to the cause of this alarming uptick in hospitalization.  \n \n Senators Lautenberg and Menendez and Congressman Pascrell have requested that the CDC expand on the state’s efforts to investigate the harmful effects of chemical contamination throughout the city, and to conduct a scientifically controlled, full health study to produce a more comprehensive and conclusive set of findings.\n \n\n “Efforts to clean up environmental contaminants and mitigate their effects must remain our top priority, but, as we work toward a full cleanup, Pompton Lakes residents deserve to know more about how their health is being affected by chemicals in their soil and ground water,” Senators Lautenberg and Menendez and Congressman Pascrell wrote.  “It’s time to examine all the health effects of this contamination in the most scientifically rigorous way possible.”  \n\n \n The full text of the letter is available here and copied below:\n \n Thomas R. Frieden, M.D., M.P.H. Director Centers for Disease Control and Prevention 1600 Clifton Road, NE Atlanta, GA 30333\n \nDear Dr. Frieden:\n \nFor decades, residents of Pompton Lakes, New Jersey have been concerned that chemical contamination in their environment is affecting their health.  As the state of New Jersey conducts a community health profile of the area, we ask that CDC take all appropriate action to fully investigate the health effects of this contamination by assisting with and augmenting the state’s investigations. \n \nRecent evidence raises serious questions about how chemical contaminants found in homes and ground water may be affecting the health of Pompton Lakes residents.  Released earlier this summer, preliminary findings from a community health profile by New Jersey’s Department of Health and Senior Services show that Pompton Lakes residents are hospitalized more often because of tumorous cancer and visit the emergency room more often for epilepsy, migraines, dizziness, and other nervous system diseases than their neighbors in surrounding communities.\n \nEfforts to clean up environmental contaminants and mitigate their effects must remain our top priority, but, as we work toward a full cleanup, Pompton Lakes residents deserve to know more about how their health is being affected by chemicals in their soil and ground water.  We are encouraged that the state will be expanding the community health profile later this year by conducting health surveys of residents living above the plume, and all Pompton lakes residents deserve to know the results as soon as possible.  We ask that CDC consider using its personnel, expertise and resources to expand upon the state’s existing efforts and hasten the conclusion of the community health profile. \n \nIn addition, we ask CDC to work with state officials to conduct a scientifically controlled, full health study to assess the complete effects of contamination on the health of the town’s residents.  Previous health studies have focused only on specific diseases or relied upon information that could not specifically link contamination to disease.  It’s time to examine all the health effects of this contamination in the most scientifically rigorous way possible.\n \n         Thank you for your consideration of this request.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e6b89f27-bdc1-4df1-8bc6-ec16b2d0b516,\"Menendez, Cornyn and Reid Introduce Resolution Commemorating Hispanic Heritage Month and the Contributions of Hispanic Americans\n                    \n                      September 14, 2011\n                     WASHINGTON, DC-  In advance of our nation’s commemoration of Hispanic Heritage Month, U.S. Senator Robert Menendez (D-NJ), Senator John Cornyn (R-TX), and Majority Leader Harry Reid (D-NV) today introduced a bipartisan resolution recognizing the month-long celebration and honoring the heritage, culture, and many contributions of Hispanic Americans throughout the history of the United States. \n \n According to the US Census Bureau, there are currently over 50 million Latinos in the United States, representing the fastest growing and largest minority in this country.  Nearly one in every three children is of Hispanic descent, and that number is expected to increase by 60 percent over the next 20 years.  Hispanics now own more than 2.3 million businesses, and the growth of these businesses have outpaced non-minority owned firms by 44 percent according to the latest economic data from the US Census.  Moreover, the purchasing power of the Hispanic community is at nearly $1 trillion.  \n \nHispanic Americans have been a long and integral part of this nation’s history. Latinos have served in all branches of the Armed Forces, and have bravely fought in every war in the history of the United States, including the over 29,000 Hispanics serving in Afghanistan and Iraq today. In fact, 41 Hispanic Americans have received the Congressional Medal of Honor – the highest award for valor in action against an enemy force that can be bestowed on an individual serving in the Armed Forces.\n \n\n  Senator Menendez, Chairman of the Senate Democratic Hispanic Task Force said: “Since the founding of this nation, Hispanic Americans have played an immense role in its history, helping weave together the rich fabric of the American tapestry.  From the Armed Services, to our nation’s top companies, and to the arts, their legacy and value can be witnessed in every single area of national relevance.  I am proud to introduce this resolution with my colleagues Senator Cornyn and Senator Reid, and urge all Americans to commemorate this important month.”\n \nSenator Cornyn said: “Each year, I am inspired to see a growing number of Hispanic leaders taking the helm in every arena– from education to business and public service to science. I am proud to join my colleagues in introducing a Senate resolution honoring National Hispanic Heritage Month to pay tribute to the generations of Hispanic Americans who have contributed so richly to our culture, economy and way of life,\"\" Sen. Cornyn said.\n \n Senate Majority Leader Harry Reid said: “Hispanics are a rapidly growing part of our nation’s economic and social fabric, and I’m pleased to  honor their contributions in Nevada and across the country. As consumers and business owners, members of the Latino community are vital to our country’s economic well-being. I applaud Senator Menendez for introducing this resolution that commemorates Hispanic Heritage Month, and reaffirm my commitment to solving the issues that matter most to Hispanics: the unity of their families, the education of their children and the creation of jobs that help them and their communities prosper.”\n \n \n\nClick here for a PDF of the resolution: http://menendez.senate.gov/download/?id=834d0688-d23a-4201-9917-568dc1c919fa\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7163619c-0b10-43f8-9bca-d8f9af5ea89b,\"Menendez, Lautenberg Announce More than $27 Million for Improvements to Airports in New Jersey\n                    \n                      September 13, 2011\n                     NEWARK – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced the Federal Aviation Administration has awarded more than $27 million to New Jersey airports for safety improvements.\n\n“This is welcome news for travelers and New Jersey’s economic growth. Few things are as important for our economic competitiveness as having safe, modern and reliable airports. This funding will help us continue to improve New Jersey’s aviation system while helping create desperately needed construction jobs,” said Senator Menendez.\n“This investment will make New Jersey airports even safer and more reliable,” said Senator Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development.  “New Jersey is a major transportation hub and these upgrades will help us strengthen our economy, accommodate business travelers, and welcome tourists.”  \nThe following New Jersey airports have been awarded funding:\n•          $10,635,000 for Teterboro to improve its runway safety area      •          $13,433,000 for Trenton Mercer to improve its runway safety area       \n\n•     $3,222,000 for Newark Liberty International to rehabilitates its taxiways\n•     $190,475 for Morristown Municipal to remove obstructions from its runway approach\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=35e75541-a08f-4e83-9aea-57ccdd26dace,\"Cornyn, Menendez Push to Mandate Sale of F-16 Fighters to Taiwan\n                    \n                            Legislation Would Bolster Ability of Our Longstanding Strategic Partner to Defend Itself\n                    \n                      September 12, 2011\n                     WASHINGTON –U.S. Senators John Cornyn (R-TX) and Robert Menendez (D-NJ) today introduced legislation to require the Obama Administration to sell 66 new F-16C/D multirole fighter jets to Taiwan.  The Taiwan Airpower Modernization Act of 2011 will help bring the United States into compliance with its legal obligations under the Taiwan Relations Act of 1979 to provide Taiwan with the military equipment it needs to maintain its self-defense capabilities.\n \n \n \n“This sale is a win-win, in strengthening the national security of our friend Taiwan as well as our own, and supporting tens of thousands of jobs in the U.S.,” said Sen. Cornyn. “Saying no here would mean granting Communist China substantial sway over American foreign policy, putting us on a very slippery slope.”\n \n \n \n“Providing the military resources Taiwan needs is in the vital security interest of Taiwan, the national security interest of the United States, and is compelled by the Taiwan Relations Act,” Sen. Menendez said. “Taiwanese pilots flying Taiwanese fighter aircraft manufactured in the United States represent the best first line of defense for our democratic ally, and delaying the decision to sell F-16s to Taiwan could result in the closure of the F-16 production line, which would cost New Jersey 750 manufacturing jobs.”\n \n \n \nSeveral recent letters to the President have demonstrated overwhelming bipartisan congressional support for the sale of new F-16C/Ds to Taiwan. On August 1, 181 bipartisan House members sent a letter to President Obama calling on him to approve the sale of F-16 C/Ds to Taiwan. On May 26 a bipartisan letter signed by 45 Senators called on President Obama him to quickly notify Congress of the sale of 66 F-16C/Ds to Taiwan.  Two other Senators have also written letters to the Administration in support of this sale.\n\n \nA recent study done by a private consulting firm estimates that the sale of 66 new F-16 aircraft to Taiwan would generate approximately $8.7 billion in economic output and nearly 88,000 ‘person-years’ of employment across the U.S.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b42c0abe-d0da-43b5-835c-0aa74f075c20,\"U.S. Senator Menendez Joined NJ First Responders to Stress that Resources and Support are Still Needed\n                    \n                            Members were instrumental in 9/11 rescue efforts\n                    \n                      September 9, 2011\n                     Hoboken, NJ– U.S. Senator Robert Menendez (D-NJ) today joined members of New Jersey Task Force One (NJTF1), the state’s urban search and rescue team, to thank them for their service and to call on elected leaders to meet their commitment to provide the resources first responders need to keep our communities and families safe.  Menendez and Hoboken Mayor Dawn Zimmer stood with the team just steps from the location where, ten years ago, they assisted thousands who were being ferried to Hoboken from the smoldering World Trade Center site.\n“On that day ten years ago, New Jersey Task Force One was on the frontline of history, the first soldiers in a new war,” said Menendez.  “Today, on behalf of everyone in New Jersey, I simply want to say thank you for what you did and what you continue to do every day for all of us.”\nMenendez stressed the need to keep the promise elected officials made to ensure first responders have the support they need, calling for state-of-the art communications interoperability, as well as FEMA certification for NJTF1, which will make the urban search and rescue team eligible for additional federal resources.\n“Supporting our first responders is about more than having a photograph taken with you once a year on September 11th,” added Menendez.  “It’s about fighting for you every day in Washington to keep the promise we made that day – the promise that we would never forget, and that we would do all we could to keep our communities safe.”\n \nAbout NJTF1\n \nEstablished in 1997 and headquartered at the McGuire-Dix-Lakehurst Mega-base, NJTF1 is an Urban Search and Rescue Team whose primary mission is to provide advanced technical search and rescue capabilities. \nNJTF1 responded to the World Trade Center terrorist attack for ten days, arriving on site before any other search and rescue team.  They spent more than 20 days responding to hurricane Katrina, and many days assisting after the recent hurricane Irene. \nNJTF1 is made up of six components: Rescue, Search, Logistics, Medical, Haz-Mat and Planning.  NJTF1 exceeds the FEMA model by having a swift water/flood water component at its disposal.\nThe Team is made up of about 210 professional volunteers (both active and retired) from specialized areas of expertise including: firefighters, police officers, rescue specialists, canine search specialists, medical doctors, nurses, paramedics, structural engineers, computer/planning specialists, communication experts, safety officers, operating engineers, and Haz-Mat specialists.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=817b15e2-3785-4576-95c7-39d3f6be03fd,\"Menendez on NY/DC Terror Threats on 9/11 10th Anniversary\n                    \n                      September 9, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today released the following statement in response to reports of a potential terror plot in the NY or DC area on the 9/11 10th Anniversary:“While we are far safer and more prepared as a country 10 years after the attacks of September 11th, the reports of a potential terror plot remind us that we must never become complacent.  My office has been briefed by the Department of Homeland Security and the FBI and I am confident that our intelligence and anti-terrorism teams are working cooperatively and in coordination with local law enforcement to both pin down any information regarding a threat, as well as to keep us from harm.” Said Senator Menendez.“I encourage all New Jerseyans and Americans to remain vigilant and go about their lives as we commemorate the sacred anniversary of September 11.I will be in New Jersey and New York City this weekend joining families and friends at ceremonies, memorials and events, beginning this afternoon where I will proudly stand with New Jersey’s finest first responders.  Like all of us who will commemorate that day ten years ago,  I will be alert, but I will not be afraid.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e2a42d62-a82d-430d-a9ae-06ac9475db65,\"Statement from Senator Robert Menendez on President's American Jobs Act\n                    \n                      September 8, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) released the following statement regarding President Obama’s joint address to Congress:\n“I hope all Americans had the opportunity to watch the President’s speech tonight as he addressed the most important issue facing our country:  the need for jobs.   \nThe President’s American Jobs Act will combine tax relief, unemployment insurance and smart investment to create jobs, boost our economy, and put money back in the pockets of middle class Americans.   That’s exactly what our states, communities, businesses and families need.   \nIt will put people back to work – like teachers and first responders in NJ who lost their jobs due to budget cuts, and construction workers who are ready to begin rebuilding our roads and bridges.  It will provide tax cuts for our small businesses and an unemployment extension for our workers.  \nThis package will not add a dime to the deficit and should be supported by both parties.  In fact, some of the proposals are actually Republican ideas.  \nThe President’s proposal is in line with what I’ve been hearing from people across New Jersey. They want to get back to work.  And they want Washington to get to work on a real plan to get our economy moving again.  \nThis debate about jobs is not about politics;  it’s about people – their lives, their hopes, their dreams for a better, more secure life for themselves and their families.\nDemocrats are working to get results for those families and we hope some of our Republican colleagues will join us because it’s time to do our jobs so the American people can get back to work.”\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b494fd03-8458-4c8e-b4f5-6c8481ddab19,\"Includes Menendez Plan to Fast-Track Cutting Edge Technologies \n                    \n                      September 8, 2011\n                     WASHINGTON – In a major boost to New Jersey small businesses and entrepreneurs, the US Senate today passed new steps to prioritize patents for job-creating technologies of importance to America's economy, including cutting-edge green technologies. US Senator Robert Menendez (D-NJ) led the fight to prioritize applications for innovative technology, a measure that was included in the America Invents Act, which passed the Senate tonight and is headed to the President’s desk for signature.\n“We create jobs by harnessing the ideas of our innovators, not tying them down with red tape.  My patent provision says to our small businesses and innovators:  The government will register your ideas, and then get out of the way. Only then can our small businesses do what they do best – grow our economy and create jobs.” Said Senator Menendez\nThe Patent Office’s current pilot program on green technologies has allowed patents to be granted more quickly than the average 2 to 3 year wait.  The Menendez amendment would expand the program to expedite patents of vital national importance or patents that help our nation’s economy.  It would also make the program  permanent.\nSenator Menendez’s legislation passed as part of the America Invents Act, a bill that will modernize our patent system and help bolster economic development, sustain American innovation, and protect American jobs.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=75f46862-8b2f-4d5d-8db3-0aba83a9aefe,\"Senators Menendez and Kirk Include Language in the Export-Import Bank Reauthorization to Prohibit Assistance That Could Benefit Iran’s Effort to Acquire Nuclear Weapons Technology\n                    \n                      September 8, 2011\n                     WASHINGTON - Senators Menendez and Kirk secured passage of critical language in the Export-Import Bank Reauthorization Act, which will:  1) prohibit the Export-Import Bank from extending guarantees, insurance or extensions of credit to U.S. companies or their subsidiaries that are violating U.S. sanctions against Iran and 2) ban export assistance for foreign projects where a controlling sponsor is doing sanctionable business with Iran. This amendment will prohibit the Export-Import Bank from assisting entities like India’s Reliance Industries, which was selling refined petroleum to Iran.   In 2007-08, the Bank provided $900 million in loan guarantees for exports and services to Reliance, including $400 million to help finance the Jamnagar refinery, which was in turn selling refined petroleum products to Iran.   “It is important that we use every opportunity and channel to impede Iran’s relentless drive to develop nuclear weapons.   The new Iran sanctions law passed by Congress in 2010 and the Obama Administration’s efforts to multilateralize sanctions have made a difference, but Iran’s mullahs are persistent.  Just last week, the IAEA confirmed that Iran is loading P-2 centrifuges at Qom, which will allow Iran to significantly enhance its uranium enrichment capacity.  As long as Iran continues on her march toward nuclear weapons, we will continue to expand and enhance our efforts to stall and thwart her achievement,” Menendez stated after the business meeting in the Senate Banking Committee.\n\"\"This amendment ensures that taxpayer dollars will not help the Iranian government avoid sanctions for building nuclear weapons,\"\" said Senator Kirk. \"\"We should now move beyond this step to the one recommended in August by 91 Senators: collapse the Central Bank of Iran.\"\"\n                                                                                                                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6256fd5e-4bf3-4300-8f7c-7edd803785ad,\"Menendez and Lautenberg Announce $530,000 to Secure New Jersey Schools \n                    \n                      September 8, 2011\n                     WASHINGTON— U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced the U.S. Department of Justice Office of Community Oriented Policing Services (COPS) has awarded seven communities in New Jersey more than $530,000 in federal funds to improve security in and around schools.“Parents need to be assured that  our children are learning in a safe and protected environment.  Our children’s and teachers’ safety is non-negotiable and this funding will help make certain New Jersey schools are a place where all students can learn and reach their full potential,” said Menendez.“New Jersey’s students and teachers should never have to worry about their safety in our schools,”said Lautenberg, a member of the Commerce, Justice and Science Appropriations Subcommittee that funds this program. “While resources for public safety are being cut across the state, this federal funding will help ensure New Jersey students have the safest and most secure places to learn and grow.” This funding is part of the COPS Secure Our Schools Program, which helps law enforcement agencies work with schools to improve security by purchasing metal detectors, locks, lighting and other deterrent measures. Funding can also be used for security assessments and training for students and teachers.  In total, 7 New Jersey communities will share approximately $530,000 in funding from the Secure Our Schools program. The awards under this grant include: Bayonne Police Department — $148,939.00Berkeley Heights Township — $76,510.00Emerson Borough — $75,000.00Hillsborough Township — $34,548.00Marlboro Township — $37,500.00Roselle Police Department — $95,055.00Roxbury Township — $61,225.00\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=01a5cb4c-59f4-4000-8788-a262f1a9afa2,\"Message of Remembrance from Senator Menendez on 10th Anniversary of 9/11 Attacks\n                    \n                      September 8, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today released the following message in remembrance of September 11th as the nation approaches its 10th anniversary this weekend:                         \nLink to Video - http://youtu.be/b2YHOrR4_Z4\nLink to Audio - http://tinyurl.com/3s4rsnq\nLink to Audio Download - http://tinyurl.com/3f4wyyj -\nFULL TEXT: \n“Ten years ago we stood witness to history.  We remember the twin towers against that cloudless blue September sky... the blue sky turning gray… smoke and ash blanketing the city.\n“On that day Americans responded, united as one nation.  Thousands stood in long lines to give blood, to volunteer.  Instinctively, families brought food to firehouses to comfort exhausted firefighters who had put their lives on the line.\n“On that day, we turned to the comfort of family, friends, and neighbors.  We drew closer as a nation, resolved to take a stand and the world stood with us.\n“I’ll never forget Congressmen standing on the steps of the United States Capitol, joining hands and singing ‘God Bless America.’  We were not Democrats or Republicans that day. We were united as Americans.\n“Now, 10 years later, we still struggle to fully understand how the events of 9-11changed the way we live, the way we view the world, and the threats we face.  But most of all we remember the 2,974 people who died that day, including 700 from New Jersey who lost their lives.  We remember their families and the courage and service of the first responders.\n“On this 10th anniversary, all of the victims of 9-11 remain in our thoughts and our prayers.  To those families who lost a mother, a father, a son or daughter -- a sister, a brother, or a friend -- we know the passage of time may have helped ease the pain, but the loss has left a void in our hearts.\n“This year, as all of us in New Jersey and across America stand in solemn remembrance… resolved never to forget, let us also stand as united as we were ten years ago, one nation indivisible.\n“Let us remember – in the next ten years -- the words of Robert Louis Stevenson: ’Give us the strength to encounter that which is to come, that we be brave in peril, constant in tribulation, temperate in wrath, and in all changes of fortune and down to the gates of death, loyal and loving, one to another...’\n“Let that be our sincere hope for this nation, and our solemn pledge to those who lost their lives on that fateful day.  May God bless them, and God bless America.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fe6de4b6-ef90-480d-8eef-d2f78df18759,\"Senators Menendez, Lautenberg, Schumer, and Gillibrand Introduce the Pan Am 103 Accountability Act Demanding Cooperation from Libyan Authorities in Investigating the 1988 Airline Bombing\n                    \n                      September 7, 2011\n                     WASHINGTON - Senator Robert Menendez (D-NJ) today introduced legislation requiring the new Libyan government to fully cooperate with any U.S. Government investigation into the 1988 Pan Am 103 bombing over Lockerbie, Scotland or any other terrorist attacks associated with the Qaddafi government against Americans.  The bill requires the President to certify full cooperation by the Transitional National Council (TNC) or any successor government before releasing Libya’s frozen assets, estimated at $30-36 billion, for any purpose other than humanitarian assistance and to consider Libyan cooperation when making decisions about potential U.S assistance. Senators Lautenberg, Schumer and Gillibrand joined as original cosponsors of the legislation. \n“The goal of the Pan Am 103 Accountability Act is to make clear the intensity of United States’ interest in the Pan Am bombing and to find answers and achieve justice on behalf of the victims’ families. After nearly 23 years, the political change in Libya represents the best opportunity to learn who, beyond Abdelbaset Ali al-Megrahi, is responsible for the December 21, 1988, bombing of Pan Am Flight 103 that killed 270 people, including 189 Americans. Although Megrahi alone was convicted of conspiracy for planting the bomb that brought down Pan Am Flight 103, it has always been known that he did not act alone. We still do not know who ordered the bombing, who collected the intelligence to carry out the plan, who made the bomb and who – in addition to Megrahi – bears responsibility for this and other heinous attacks. It is my hope that the new Libyan government will be forthcoming with their cooperation and recognize that a reconciling of the past is crucial to Libya’s future as a member of the community of democratic nations,” Menendez said.\n\"\"The investigation into the Pan Am 103 bombing that murdered 270 people, including 189 Americans, must continue and we will not rest until justice has been served,\"\" Lautenberg said. \"\"With a new Libyan government must come a new commitment to find out the truth and hold accountable all those involved in the terrorist attacks carried out by the Qaddafi regime.  This legislation takes important steps to ensure cooperation from the new government in Libya.\"\"\n“As the United States considers the level of support it will grant to the new Libyan government, it must demand that any level of support be conditioned on the new government’s willingness to deliver the Lockerbie bomber to justice,” said Senator Schumer. “This should be straightforward and simple: if you want American support, you must deal with al-Megrahi. If the new government wants credibility on the world stage it will bring al-Megrahi to justice or face the consequences in this bill.”\n\"\"The release of Al-Megrahi was a total miscarriage of justice. His participation in good health at a pro-Qaddafi rally recently was another slap in the face not just for the families of the Lockerbie victims, but for all Americans and all nations of the world who are committed to bringing terrorists to justice. If we’re ever going to win the fight against international terrorism, the rule of law must hold strong. Now that there has been a change of government in Libya, we must get all the information we can learn about the Lockerbie bombing and hold all those responsible accountable.\"\" Said Senator Gillibrand.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c7677234-a9ba-4a15-978d-e56bacc37e75,\"Senate Health Committee Unanimously Approves Menendez, Enzi Bill to Combat Autism\n                    \n                      September 7, 2011\n                     WASHINGTON -  U.S. Senator Robert Menendez (D-NJ) today announced that his bill to combat Autism took a key step forward, being unanimously approved by the Senate Health, Education, Labor and Pensions (HELP) Committee.   The Combating Autism Reauthorization Act (S. 1094) is a critical piece of bipartisan legislation will extend the programs authorized under the original Combating Autism Act (CAA) to continue for an additional three years.  \nThe CAA provides for autism surveillance programs at the Centers for Disease Control and Prevention, as well as intervention and training programs at the Health Resources and Services Administration.  Additionally, this legislation allows for the continuation of the Interagency Autism Coordinating Committee (IACC), which is responsible for advising the Secretary of Health and Human Services (HHS) on autism polices, coordinating the federal response to autism and developing the annual strategic plan for autism research.  These programs have been critical in advancing research on the causes, diagnosis and treatments of autism. The CAA sunsets on September 30.  Next the bill will move to the full Senate for consideration and then be sent to the U.S. House of Representatives.\n“Passage of this bill is essential in continuing our efforts toward understanding autism and ensuring individuals living with developmental disabilities and their families have the support they need,” said Sen. Menendez.   “I want to thank Chairman Harkin for his leadership and commitment to moving this important legislation and Ranking  Member Enzi for his continued support of it. As the lead cosponsor of this bill, his leadership helps to ensure the ongoing efforts originally set forth in the CAA can continue for at least another three years,” said Senator Menendez.  “As this legislation moves to the full Senate, I look forward to continuing to work with New Jersey families, advocates, and my colleagues in the Senate on this bipartisan effort.”\nAutism is the fastest-growing serious developmental disability in the country, affecting on average 1 in 110 children and 1 in 70 boys. In New Jersey, 1 in 94 children are affected with autism spectrum disorders, one of the highest rates in the nation.  This year more children will be diagnosed with autism than with AIDS, diabetes and cancer combined.  \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c5d55149-c7da-4820-afc7-2ce4934b012a,\"Lautenberg, Menendez Announce Nearly $1 Million for New Jersey's Pipeline Safety Program\n                    \n                      September 6, 2011\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Transportation (DOT), through the Pipeline and Hazardous Materials Administration (PHMSA), has awarded $939,884 to New Jersey for the state’s pipeline safety program.  “Pipelines are a vital part of our state's infrastructure and the consequences of not maintaing them can be devastating,” said Senator Lautenberg, Chairman of the Senate Commerce Subcommittee on Surface Transportation with jurisdiction over pipeline safety.  “This funding makes an important federal investment in our state’s pipeline safety program to ensure that natural gas and other materials are transported safely.  It will also provide our first responders with the resources they need to contain accidents quickly and safely.”   “Our pipelines help guarantee our state has access to the energy resources it needs, but they are also a potential hazard. We need to ensure they’re modern, safe, and that our first responders can efficiently respond to any accident immediately. This is important for our environment and for our families health,” said Senator Menendez. This grant supports pipeline safety programs in New Jersey to ensure safe transportation of natural gas, petroleum and other hazardous materials by pipeline.  This funding will reimburse up to 80 percent of the state’s costs of carrying out the program, including the cost of personnel and equipment.  In May, the Commerce Committee approved the \"\"Pipeline Transportation Safety Improvement Act of 2011,\"\" which was introduced by Senator Lautenberg and cosponsored by Senator Menendez.  The legislation would help mitigate pipeline risks nationwide and would reauthorize and strengthen the authority of PHMSA through fiscal year 2014.  For more information, please visit: http://lautenberg.senate.gov/newsroom/record.cfm?id=332725                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7130b330-03d6-42ce-8aa8-11a683473826,\"Labor Day Statement from U.S. Senator Robert Menendez\n                    \n                      September 5, 2011\n                     NEWARK - Senator Menendez celebrated Labor Day with the following statement:\n“Today, every New Jerseyan and every American should ask themselves if there has ever been a more significant Labor Day than this one -- if there ever has been a time when jobs and labor have meant more, a time when the idea and ideal of having and keeping a job has been more precious to us?\n“At a time when more Americans are standing up and saying we will take any work to support our families -- it is our obligation to do all we can to make sure jobs and work are more attainable.\n“This Labor Day – as we celebrate the spirit of hard working American families who have made this nation the most productive, powerful, and pioneering nation in the world - we face recovering from Irene as well as recovering from the worst economic shock since the Great Depression with a collective spirit and resolve to pick up the pieces as we always have and rebuild our communities and our economy.\n“Let that spirit and resolve be the lesson for this Labor Day as we celebrate the American worker and every New Jersey family who believes that communities, government, and the private sector working together can make us stronger and better than ever before.\n“Let’s unite behind what matters most: shifting our attention to creating more jobs and rebuilding this economy for working families. I intend to continue to make fighting for working families my number one job.\n“Have a great Labor Day.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c19f5685-3c89-4fb8-ac15-73144600f74c,\"U.S. Senator Robert Menendez Joins President Obama in Tour of NJ to Review Flooded Areas After Hurricane Irene\n                    \n                      September 4, 2011\n                     Paterson, NJ – Today, U.S. Senator Robert Menendez joined President Obama in his motorcade to tour flooded areas of Passaic County Hurricane Irene.  This unique opportunity not only allowed Senator Menendez to brief the President on the dire situation of thousands of New Jerseyans affected by Irene, it also allowed Senator Menendez to ask Obama for federal funding for long-term solutions on the Passaic River Basin. President Obama arrived on Air Force One at Newark Airport where he met Senator Menendez.  \nThe President’s motorcade stopped at various locations in Passaic County along the river, including Wayne and Paterson. Menendez was able to see up-close what affected residents were coping with and was able to speak to the personally:\n“I was moved to see these New Jersey parents and their children who have endured the wrath of Hurricane Irene and now depend on the resources we can advocate for to provide the much needed assistance that will begin to get them back on their feet,” said Senator Menendez.  “President Obama and I are committed to fight for the federal aid that they and so many other New Jerseyans need so they can rebuild the lives they had before this natural disaster.”\nSenator Menendez, who had already requested a speedy response for federal assistance from FEMA and granted last week, had been on a flyover of affected areas in the northern and central part of the state with the U.S. Army Corps on Engineers.  Today, Senator Menendez was able to speak to President Obama in person while they toured flooded areas that are still under water.  The President was able to witness flooding, families out of their homes for days, and businesses in dire need of assistance.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=65b3608b-3928-4336-a518-10c9130e568c,\"Boxer, Menendez, Bennett, Reed Praise Administration Decision to Consider English Language Learning Decision \n                    \n                            Race to the Top-Early Learning Challenge Offers Opportunity to Invest in Early Language when Awarding Educational Grants\n                    \n                      September 1, 2011\n                     Washington, D.C. – U.S. Senators Barbara Boxer (D-CA), Robert Menendez (D-NJ), Michael Bennet (D-CO) and Jack Reed (D-RI) today praised Secretary of Education Arne Duncan and Secretary of Health and Human Services Kathleen Sebelius for agreeing to consider the needs of English language learning (ELL) students when awarding grants as part of the Race to the Top-Early Learning Challenge program. \n \nSenators Boxer, Menendez, Bennet and Reed sent a letter to Secretaries Duncan and Sebelius in July urging them to include instruction of young English language learning students as part of the Early Learning Challenge program.  Studies have shown that the years before a child enters kindergarten are crucial for cognitive development and language skills.\n \n \nSenator Boxer said, “I am so pleased that Secretaries Duncan and Sebelius are taking this step to recognize the importance of English language learning to the success of students throughout their lives. By helping students acquire these language skills in the early years, we will ensure they have the opportunity to thrive in school and reach their full potential.”\n \n“I am thrilled our Administration has recognized the importance of early English language learning in the Early Learning Challenge Program,” Senator Robert Menendez said. “The early years in a child’s development are crucial in the acquisition of cognitive skills and we need to ensure they have the foundation they need to fully develop the language and literacy skills that will allow them to reach their full potential. This will help ensure all of our children, regardless of their socio-economic background, can aim for the American Dream and America can continue leading in the 21st Century.”\n \n \n“We need to prepare English language learners – and all students – at an early age to succeed in school and farther down the road,” said Senator Bennet. “Early education is important for every student, and I’m glad the Early Learning Challenge program will now specifically consider the needs of English language learning students.”\n \n“As the number of English language learners continues to grow in Rhode Island and across the country, our future competitiveness depends upon how effective our schools are in helping these students gain fluency and achieve academically.   I am pleased the Administration recognizes the importance of helping English language learners at a young age,” said Senator Jack Reed.\n \n \nThere are over five million ELL students in the United States, including 1.5 million in California. Including English language instruction in the Race to the Top-Early Learning Challenge will provide crucial services to children of low-income families for whom English is not their first language.\n \nFurthermore, equipping young ELL students with the right tools before entering school will help improve their academic progress and strengthen our economy through a better educated workforce.\n \nThe Race to the Top-Early Learning Challenge grant program is intended to reward states that create comprehensive plans to transform early learning systems with better coordination, clearer standards and improved workforce development.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=aea4f4e6-9640-4609-8426-4c6d14088696,\"Lautenberg, Menendez Applaud Obama’s NJ Federal Disaster Declaration\n                    \n                      August 31, 2011\n                     WASHINGTON – U.S. Senators Frank Lautenberg (D-NJ) and Robert Menendez (D-NJ) applauded President Obama’s prompt disaster declaration for areas in New Jersey severely damaged, which will help thousands of affected families and businesses recover from the effects of Hurricane Irene.  Earlier this week, the Senators sent a letter to the President urging him to expedite the declaration and disbursement of federal aid resources.  FEMA made an expedited declaration for nine counties and is continuing to evaluate the damages in other counties before issuing a disaster declaration for additional areas of the state.\n“This is an important step toward getting help to New Jersey's flood victims,” said Senator Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security.  “I'm pleased that President Obama will visit New Jersey this weekend to see first-hand the devastation caused by Hurricane Irene.  Together we will work to ensure that flooding victims throughout the state are provided with the resources they need as quickly as possible.”\n“New Jersey families, businesses and communities are struggling in the aftermath of Hurricane Irene and we need to ensure they have the help they need.  I applaud the President’s swift response to our call for expedited federal resources so that our communities can recover, rebuild and move forward,” said Senator Menendez.FEMA’S FEDERAL DISASTER DECLARATION FACT SHEET: State of New JerseyFederal Disaster Declaration Fact Sheet  August 31, 2011 On August 31, 2011, President Obama issued a major disaster declaration for the State of New Jersey, triggering the release of federal funds to help individuals and communities recover from Hurricane Irene that began August 27, 2011 and continuing.  Details of this disaster declaration and assistance programs are as follows: Declaration Number:                        FEMA- 4021-DR Incident:                                     Hurricane Irene                                                     Incident Period:                             August 27, 2011, and continuing Federal Coordinating Officer:              William L. Vogel                                              National FCO Program Individual Assistance:                      Assistance to individuals and households Designated Counties:                      Bergen, Essex, Morris, Passaic, and Somerset Counties. Public Assistance:                          Assistance for emergency work and the repair or replacement of disaster-damaged facilities. Designated Counties:                          Atlantic, Cape May, Cumberland, and Salem Counties.  Direct federal assistance is authorized.                                                                                               Hazard Mitigation:                               Assistance for actions taken to prevent or reduce long term risk to life and property from natural hazards\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a6d3ca02-cd34-4446-aa88-2631610a17a8,\"Menendez to Secretary Clinton:  TNC Must Give Access to Megrahi\n                    \n                      August 30, 2011\n                     Washington -- As news reports suggest Megrahi is again nearing death and his brother claims the Lockerbie case is over, U.S. Senator Robert Menendez (D-NJ) today asked U.S. Secretary of State Hillary Clinton to call on the Transitional National Council (TNC) to immediately provide American and international officials access to him.  \nIn a letter to Secretary Clinton Menendez wrote: “Given that we have been told before that Megrahi was near death when he actually was not, I urge you to call on the TNC to allow American and international officials access to Megrahi immediately in order to conduct an independent assessment of his health status.  Then, if or when feasible, begin direct questioning of Megrahi as to the involvement of others in the Pan Am 103 bombing.  I also urge you to insist that the TNC meet its commitment to cooperate with any U.S. investigations into the Pan Am bombing and other acts of terror by the Qaddafi regime against U.S. citizens.”  \nLink to a PDF of the letter: http://menendez.senate.gov/download/?id=fe7558dc-2ebb-4767-bcd3-680df43d139b\nThe full text of Senator Mendendez’s letter follows. \nThe Honorable Hilary Rodham ClintonSecretary of StateU.S. Department of State2201 C Street N.W.Washington, DC 20520\nDear Secretary Clinton:\nThe families of Pan Am Flight 103 have been searching for justice and answers for more than twenty years, and other American victims of Libyan terrorism have been looking even longer.  \nAs you are aware, the “compassionate release” of Abdelbaset Ali Mohmed al-Megrahi by the Scottish government was a grave miscarriage of justice that compounded the tragedy for the Pan Am families.  While news reports suggest that Megrahi may be nearing death, he remains an important source of information about the Pan Am bombing.  Megrahi was convicted of conspiracy for planting the bomb that brought down Pan Am Flight 103, which killed 189 innocent Americans, but it has always been known that he did not act alone.  We still do not know who ordered the bombing, who collected the intelligence to carry out the plan, who made the bomb and who – in addition to Megrahi – bears responsibility for this and other heinous attacks.  \nIt is crucial that the Transitional National Council (TNC) provide access to Megrahi and that they adhere to the commitment they made during their May consultations with me in Washington, D.C. to cooperate with any United States investigation into the Pan Am bombing.  The many unanswered questions around the Pan Am tragedy won’t die with Megrahi, and the downfall of the Qaddafi government presents the first real opportunity to learn the truth about Qaddafi’s terrorist activities and to bring Qaddafi, Megrahi, and other perpetrators of terrorism to justice.  \nI was disappointed to read reports that the TNC will ignore any requests to extradite Megrahi.   Given that we have been told before that Megrahi was near death when he actually was not, I urge you to call on the TNC to allow American and international officials access to Megrahi immediately in order to conduct an independent assessment of his health status.  Then, if or when feasible, begin direct questioning of Megrahi as to the involvement of others in the Pan Am 103 bombing.  I also urge you to insist that the TNC meet its commitment to cooperate with any U.S. investigations into the Pan Am bombing and other acts of terror by the Qaddafi regime against U.S. citizens.  \nThe TNC has an extraordinary opportunity to start anew, to embrace democratic reforms, and rehabilitate Libya’s reputation in the world community, but unveiling the past and supporting the pursuit of justice are prerequisites for real change.  The TNC’s cooperation would be a signal to the world that a new Libyan state has taken hold, based on the core principles of justice, respect for human rights, and cooperation with the international community.\nSincerely,\nROBERT MENENDEZ                                                               United States Senator\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3ba3adba-23e1-4860-a36f-587c40984cb7,\"Menendez, Lautenberg Ask President to Grant Disaster Declaration, Provide Federal Funding for Hurricane Irene Recovery\n                    \n                      August 30, 2011\n                     WASHINGTON, D.C. — U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today urged President Obama to expedite approval of New Jersey’s request for a federal disaster declaration related to damages sustained throughout the state during Hurricane Irene.  Once a disaster is declared, emergency federal assistance for individuals, businesses, and state and local governments will become available for recovery and rebuilding efforts.   “The destruction will lead to severe hardship and the costs will be so great that many residents will not be able to rebuild their lives on their own.  In addition, Hurricane Irene caused extensive damage to public infrastructure such as roads, bridges, public parks and government facilities, and local governments will face enormous challenges as they try to rebuild,” the Senators wrote.  “Given the severe nature of the hurricane and the extent of the damage, we ask that you immediately grant a Major Disaster Declaration for New Jersey and expedite federal recovery and rebuilding aid.” The letter can be viewed here and the text is included below: August 30, 2011 President Barack ObamaThe White House1600 Pennsylvania Avenue, NWWashington, DC 20500                      Dear Mr. President:             We write to request that you immediately grant a Major Disaster Declaration for New Jersey in response to Hurricane Irene, which hit the state beginning on August 27, 2011.  In addition, following such a declaration, we request that you expedite the distribution of federal recovery aid to our state.  The storm caused record flooding and massive devastation throughout New Jersey, and our residents, businesses and the state and local communities need immediate federal support to help rebuild from the disaster.    Flood levels reached record highs throughout the state and strong winds and severe rain led to widespread power outages and flooding.  Entire towns have been engulfed by flood waters, roads are closed, and lives have been lost.   Rainfall totals during the hurricane reached high levels, which on top of an already saturated ground caused by recent storms, created extensive flooding and new damage.  Nearly all of the rivers across our state have reached historic river crests. Homes, businesses and personal property have received significant damage.  The destruction will lead to severe hardship and the costs will be so great that many residents will not be able to rebuild their lives on their own.  In addition, Hurricane Irene caused extensive damage to public infrastructure such as roads, bridges, public parks and government facilities, and local governments will face enormous challenges as they try to rebuild.     Given the severe nature of the hurricane and the extent of the damage, we ask that you immediately grant a Major Disaster Declaration for New Jersey and expedite federal recovery and rebuilding aid.  Thank you in advance for your consideration of this request and we look forward to your prompt action in addressing this important issue.   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=00d72bc6-196d-4b5f-8209-4aecd3aa4aee,\"As Hurricane Irene Approaches the East Coast, Menendez Creates Hurricane Irene Resource Center on website, http://menendez.senate.gov/hurricane\n                    \n                      August 25, 2011\n                     WASHINGTON, DC – As Hurricane Irene approaches the East Coast, US Senator Robert Menendez (D-NJ) urged New Jersey residents, businesses and communities to prepare for the severe weather conditions and set up a Hurricane Irene Resource Center on his official website to share national and local resources available to New Jerseyans.\n \n“As Hurricane Irene moves towards the East Coast, it is so important to make sure all of us have taken the time to prepare for this storm.  There are many helpful organizations out there working to keep people safe and informed.  I want New Jerseyans to have access to all of these preparation, safety, and emergency response resources in one user-friendly place. That’s what you’ll find at http://menendez.senate.gov/hurricane.”\n \nHe went on to say, “at a time like this, I encourage families to stay together.  And please take special care to look in on elderly or disabled neighbors and friends.  Let’s all do our best to look out for each other.”\n \nThe Hurricane Irene Resource Center, available at http://menendez.senate.gov/hurricane, includes comprehensive information and links to resources available from national, state and local governments, news media, weather services and other organizations.  The site features twitter feeds from FEMA, NJ Office of Emergency Management, nj.com and others which will provide real-time updates on the Hurricane.\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4cd213b0-0ce9-4d4a-a0e1-419bc2e98562,\"Menendez, Lautenberg Announce $800,000 in Funds to Upgrade South Jersey Airports\n                    \n                      August 24, 2011\n                     WASHINGTON – US Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced the US Department of Transportation Federal Aviation Administration has awarded two South Jersey airports nearly $800,000 to upgrade their infrastructure.\n The awards were awarded as follows:\n \n$480,000 were awarded to the South Jersey Regional Airport in NJ through the NJ State Department of Transportation to address existing and future aviations needs through a revision of the airport’s master plan to define where the airport needs improvement and propose potential development alternatives.\n \n$299,250 were awarded to the Robert J. Miller Air Park Airport in Ocean County to construct a crosswind runway that will allow airplanes to land and take off from different locations contingent on wind conditions.  The funding will also be used for restoration purposes.\n \n“Modern and efficient airports are key to our economic competitiveness and travelers’ safety. This investment will go towards the upgrade of two South Jersey airports to ensure they can continue accommodating comfortably and safely thousands of travelers each year. It will also help boost the areas’ attractiveness as a tourist destination and help create desperately needed construction jobs immediately.” said Senator Menendez.\"\"These critical investments in South Jersey airports will upgrade and expand service for the travelers who rely on them,\"\"  said Senator Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development.  \"\"Having up-to-date and reliable airports will help to meet the traveling needs of residents,  keep local businesses thriving, and make our state a more attractive destination.\"\"\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=babf0be5-31f2-4e76-b743-a3ef9b7b7b6e,\"Menendez, Lautenberg Applaud Release of $450 Million in High-Speed Rail Funding for Major New Jersey Rail Project\n                    \n                            Funding Was Previously Put at Risk by House Republicans\n                    \n                      August 22, 2011\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today applauded the release of a $450 million high-speed rail grant by the U.S. Department of Transportation (DOT) for Amtrak to make critical upgrades to the Northeast Corridor in New Jersey. \n \n“It is great news for New Jersey that this funding has been saved from Republicans’ chopping block and awarded to Amtrak.  Rail service is the lifeblood of our state’s economy and it is our responsibility to protect and strengthen it for our commuters,” said Senator Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development.  “This federal funding will significantly upgrade the rail lines for New Jersey Transit and Amtrak commuters, reduce delays that plague the Northeast Corridor and make our state home to the fastest stretch of high speed rail in the country.”  \n \n“This is exactly the kind of smart investment in infrastructure we need to boost our region’s economy, create good paying jobs and make New Jersey a leader in high speed rail,” said Senator Menendez.  “This is a win-win – creating New Jersey jobs and improving the way we travel.”\n \nIn May, Secretary Ray LaHood announced this $450 million investment in the Northeast Corridor to make power, catenary, signal and track upgrades.  By 2017, these improvements would lift current maximum speed of 135 mph to 160mph.  In June, Republicans in the House of Representatives put this project at risk when they passed a measure that would divert New Jersey’s funding to flood relief projects in other states.  In response, Senators Lautenberg and Menendez wrote a letter to Secretary LaHood asking him to quickly release this grant money so that New Jersey would not lose the opportunity to upgrade critical infrastructure on the Northeast Corridor.\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b4b856fa-1211-4749-a9b6-fbf173787a09,\"Menendez, Rubio Urge Three Latin American Presidents to Oppose Unilateral Recognition of Palestinian State at the UN\n                    \n                      August 19, 2011\n                     WASHINGTON – US Senators Robert Menendez (D-NJ) and Marco Rubio (R-FL) sent a letter yesterday to the Presidents of Colombia, Panama, and Costa Rica encouraging them to oppose any resolution that may come before the UN General Assembly seeking to impose a unilateral recognition of a Palestinian state before the UN. In the letter, the Senators wrote:\n \nFULL TEXT OF THE LETTER:  We write regarding a matter of great interest to the United States and many of our constituents: the achievement of lasting peace in the Middle East. \n \n      Though it has proven to be an elusive goal, we are confident that long-lasting peace between Israelis and Palestinians is achievable and that direct, bilateral negotiations between the sides offer the best hope of realizing it.  Therefore, we are deeply concerned about efforts by the Palestinian leadership to seek unilateral recognition of Palestinian statehood during the upcoming meeting of the United Nations General Assembly in New York.  \n \nAs you may know, the U.S. Senate recently approved by Unanimous Consent a Resolution declaring that persistence by the Palestinian Authority to circumvent direct negotiations will have implications for continued American aid.  Therefore, a unilateral recognition of a Palestinian state at the UN is not in the best interest of the Palestinian people or conducive to the ultimate objective of two democratic states living side by side in peace and security.\n \n      We commend [Colombia/Panama/Costa Rica]’s steadfast commitment to a peaceful end to the conflict and support for bilateral negotiations as the vehicle to achieve long-lasting peace between Israelis and Palestinians.  We encourage you to oppose any resolution that may come before the UN General Assembly seeking to impose a unilateral recognition of a Palestinian state at the UN.\n \n      Thank you for your attention to this matter.  As Chairman and Ranking Members of the Senate Foreign Relations Subcommittee on the Western Hemisphere, we look forward to working together to advance our nations’ shared vision of a forward-looking Hemisphere of democratic institutions and prosperity for all.\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=994d834c-c07b-4349-a2e0-efe345fd23fc,\"Menendez, Lautenberg Renew Call for Extradition on Second Anniversary of Lockerbie Bomber’s Release\n                    \n                      August 19, 2011\n                     WASHINGTON – Today, on the eve of the second anniversary of the release of the Lockerbie bomber, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) demanded that the transitional Libyan government extradite him to the United States to answer for his crime and to cooperate with any ongoing investigations into the Pan Am bombing or other terror attacks against Americans by Col. Qaddafi.  Menendez led the Senate Foreign Relations Committee investigation into Abdelbaset Ali al-Megrahi’s release from Scotland to Libya.\n“It has been two years since we were told that al-Megrahi was released because he supposedly had just three months to live; it has been two years since he was allowed to return to Libya; and it has been only a few short weeks since he was seen attending a rally in support of his old friend, Muammar Qaddafi,” said Senator Menendez. “As my investigation showed, and as time has proven, al-Megrahi’s prognosis was a sham amounting to nothing more than an effort help UK business interests curry favor with the former Libyan government.  At the time we all understood it to be a massive diplomatic blunder and an insult to the families of the victims of the Lockerbie bomber.  The fact that the Qaddafi regime is in shambles and has turned on its own people shows that undermining humanitarian principles in order to serve short term business interests is never sound policy.” \n“The first act of the Transitional National Council, as the legitimate government of Libya, should be to extradite al-Megrahi to the United States to answer for the bombing of Pan Am flight 103 to signal to the world that a new Libya has every intention to adhere to international law,” Menendez added.\n“The Lockerbie bomber is convicted terrorist with American blood on his hands,” stated Lautenberg.   “He should never have been released from prison and it is sickening to watch him treated as a hero in Libya.  No stone should be left unturned in bringing Megrahi and everyone responsible for this heinous act—including Qaddafi—to justice.  The family members of the victims who have had to suffer through watching this terrorist be set free deserve no less.”\nRecently, the Cameron government has acknowledged that the medical diagnosis that formed the basis for al-Megrahi’s release two years ago was “pretty much worthless,” and that the British government had, in fact, pressured the Scottish government to let the terrorist go.\nTwo hundred seventy innocent people died in the bombing of Pan Am Flight 103 including thirty eight from New Jersey. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6595b27d-cee3-4d07-89f5-05064a26aadf,\"Menendez Calls on Christie to Veto Huge Toll and Fare Hikes, Audit Port Authority Financial Records \n                    \n                      August 18, 2011\n                     NEWARK – In light of tomorrow’s vote by the Port Authority of New York and New Jersey on a proposal to drastically increase tolls and fares that would disproportionately affect New Jerseyans. In a letter to Governor Christie, U.S. Senator Robert Menendez (D-NJ) urged Christie to veto the proposal and have the Port Authority undergo an independent audit to show exactly why they believe such prohibitive toll and fare increases are necessary at this time. \nFULL TEXT OF THE LETTER:\nDear Governor Christie,\nAs you know, the Port Authority is scheduled to vote tomorrow on a proposal to drastically increase tolls and fares. I am writing to request that you veto this extraordinary increase and have the Port Authority undergo a thorough audit to show exactly why they believe such prohibitive toll and fare increases are necessary at this time.  New Jerseyans are already suffering through a 25 percent NJ Transit fare increase and will soon have to endure a second toll increase on the Turnpike and the Parkway.  A complete audit is the best way to ensure that the Port Authority comes back to the table with more reasonable options.   The Port Authority needs to undergo a full, independent audit that provides answers to New Jersey commuters’ questions.  The audit should explain how the Port Authority suddenly found itself in such a financial hole and what costs or dips in revenue could not have been anticipated earlier.  Earlier this week the New York State Comptroller said “overtime flows like water” at the Port Authority, which paid $85.7 million in overtime last year to 5,360 of its 6,977 employees.  I am deeply disturbed by the Comptroller’s report, and the audit should investigate why the Port Authority has not made every effort to cut their operating costs before proposing extreme fee hikes.  \nTraditionally, Port Authority spending was supposed to be divided equally between New York and New Jersey.  These toll and fare increases will disproportionately affect New Jerseyans so it is important to know whether spending in recent years has been equally distributed between the two states and whether these new revenues from New Jersey commuters will be spent primarily in New Jersey or in New York.  \nI believe New Jersey working families, small businesses, and the many that are unemployed and looking for work are struggling enough.  At this difficult time, they can hardly afford massive fee increases that will only make it more difficult for them to find work, get to work, or travel at all.  Until a full and independent audit is conducted and New Jerseyans are given answers to these questions, you should use your veto authority to prevent the Port Authority from imposing a toll or fare hike.\nThank you for your prompt consideration of this matter.\n                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c4884999-3c64-4f4f-b958-3b31fc3a104e,\"Senate Taiwan Caucus Co-Chairs Will Not Support a Decision that Does not Include New Airplanes for Taiwan\n                    \n                            The decision to proceed only with an F-16 A/B upgrade would fail to address Taiwan’s need for new combat aircraft to meet the growing threat from China and cost manufacturing jobs in the U.S.\n                    \n                      August 18, 2011\n                     WASHINGTON – In May, Senators Menendez and Inhofe, co-chairs of the Senate Taiwan Caucus, led an effort backed by 45 members of the United States Senate in support of the U.S. sale of 66 F-16 C/D aircraft to Taiwan. In response to unofficial reports that the Administration will only offer a retrofit package for older F-16A/Bs, the co-chairs stated that a decision that does not include new airplanes is unacceptable.\nWhile China is in the process of deploying next generation Chinese and Russian manufactured ships, fighter aircraft, and submarines, Taiwan is losing the qualitative advantage in defensive arms that has long served as its primary military deterrent. Limiting U.S. assistance only to upgrades of Taiwan’s existing F-16 A/B fighters would exacerbate both near and long term air-to-air challenges since a substantial number of Taiwan’s deployed F-16 A/Bs would have to be removed from service in order to undergo upgrades.\n“An announcement by the Obama Administration that it is willing to proceed with the upgrade of Taiwan’s F-16 A/Bs would not be a new commitment,” Senator Menendez said. “Providing the military resources Taiwan needs is in the vital security interest of Taiwan, the national security interest of the United States, and is compelled by the Taiwan Relations Act.”\n“In addition to enhancing Taiwan’s security, this sale would infuse billions of dollars into the U.S. economy, sustain and generate thousands of well-paying American manufacturing jobs including 750 in New Jersey,” Menendez added.\nInhofe, a senior member of the Senate Armed Services Committee (SASC) and Ranking Member of the Senate Foreign Relations Subcommittee on East Asian and Pacific Affairs, said, “Taiwan is an important ally in the region.  As China upgrades its airstrike capability, it is important that Taiwan be allowed to maintain a strong defense structure.  The Obama administration should not kowtow to Chinese wishes that would restrict the sale of the F-16s, and we should move forward with supplying the F-16 C/D aircraft to Taiwan.  It is in the best national security interest of the United States and Taiwan, and fulfills our obligations under the Taiwan Relations Act.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=45d97eb1-2617-4bc4-a2ba-a7fd13b7f079,\"Menendez, Lautenberg Announce Nearly $2 Million for New Jersey Airports\n                    \n                            Airports in Cape May County, Morristown to Benefit\n                    \n                      August 17, 2011\n                     NEWARK – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced the Federal Aviation Administration has awarded nearly $2 million to local New Jersey airports for safety improvements and to increase capacity. “Our airports are an essential driver of our economy – key to our competitiveness and local tourism.  These funds will help ensure that New Jersey can continue accommodating safely and comfortably tens of millions of travelers each year.  By making these airport improvements, we're not only helping to ensure that flights are safe and on time, we're also creating desperately needed construction jobs,” said Menendez. “This is a win-win for travelers and for the economic development of the region.” \n“These federal grants will keep local New Jersey airports safe, up-to-date and reliable,” stated Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development.  “New Jersey is a major transportation hub and this funding will help us welcome tourists, accommodate business travelers and strengthen our economy.”\nThe following airports will be awarded FAA grants: Woodbine Municipal Airport in Cape May County: $928,770 to construct additional airport capacity and increase access to the existing airfield facilities. Cape May County Airport: $104,975 to improve the runway safety area. Morristown Municipal Airport: $769,800 to make runway safety improvements. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=220c37f2-fcd3-470f-be6e-792f93d7ac60,\"Menendez Asks Governor to Formally Request Disaster Declaration for Severely Flooded Counties\n                    \n                            Only Then Can Affected Counties Access FEMA Assistance\n                    \n                      August 16, 2011\n                     Washington, D.C. – In response to recent torrential rainfall which caused severe flooding in several New Jersey communities, U.S. Senator Robert Menendez today asked Governor Chris Christie to move as quickly as possible to formally request a disaster declaration for the most severely affected counties in the state.  This declaration will make New Jersey eligible for Federal Emergency Management Assistance (FEMA) to those hardest hit communities.\n \n \n \nThe full text of Senator Menendez’s letter to Governor Christie follows:\n \n \n \nAugust 16, 2011\n \n \n \nThe Honorable Chris Christie\n \nGovernor\n \nState of New Jersey\n \nPO Box 001 Trenton, NJ 08625\n \nDear Governor Christie:\n \nWith a number of New Jersey communities affected by this week’s flooding, I am writing to urge you to move as quickly as possible to formally request a disaster declaration for the most severely affected counties in the state.  This will make New Jersey eligible for federal assistance to the communities and first responders which have incurred significant flooding over the past weekend.\n \nSome areas, such as Pittsgrove Township and Bridgeton were inundated with up to eleven inches of precipitation, causing millions of dollars in damage to roads, bridges, and other infrastructure critical to an effective emergency response.  While our brave local first responders have been working around the clock to ensure the safety and health of residents, these small communities simply do not have the resources to fully address all of the damage. \n \nThe Federal Emergency Management Agency (FEMA) is designed to assist states, communities, and residents with rebuilding after a disaster strikes.  In the case of a presidentially declared disaster, FEMA provides both public and individual assistance that gets businesses and communities back on their feet and helps evacuated families find a temporary place to live.  As you know, the first step in this process is your formal request of a disaster declaration from the President.  I encourage you to make this request as soon as possible and look forward to supporting New Jersey’s submission to help the victims of this flood. \n \nThank you for considering my request.  I am eager to work with you to ensure New Jerseyans receive all of the federal assistance they deserve. \n \n \n \nSincerely\n \n \n \n                                                            ROBERT MENENDEZ\n \n                                                            United States Senator\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a7224e9f-18f6-4150-a37e-d38e58e4a90e,\"DOJ Releases $6M in Urgently Needed Law Enforcement Funds Following Request from Menendez\n                    \n                            Senator Issued Calls for Assistance to Newark, Camden\n                    \n                      August 16, 2011\n                     NEWARK, NJ – Today, the Department of Justice announced the release of $5,942,861 in Edward Byrne Memorial Justice Assistance Grant funds to assist New Jersey law enforcement in fighting crime.\n \nOn August 2, 2011, Senator Robert Menendez (D-NJ) sent a letter to Attorney General Eric Holder requesting expedited law enforcement funds for the Newark Police Department. Menendez sent a similar letter requesting assistance for Camden, New Jersey, earlier this year. \n \n“This funding will help New Jersey police departments to fund special task forces to combat the violence that is plaguing our cities,” Menendez said. “I am so pleased that the Department of Justice has released these urgently needed funds which will help to ensure the safety of our citizens.”\n \nNewark has seen a drastic rise in crime since budget limitations forced the city to release 163 police officers, the largest reductions in 32 years.  Between Jan. 1 and July 10 of 2011, there were 175 shootings in Newark, leaving 213 people dead or injured, according to police statistics. During the same period last year, there were 125 shootings and 161 victims.\n \nThe Edward Byrne Memorial Justice Assistance Grant Program (JAG) allows states and municipalities to engage in a variety of crime prevention activities based on their own state and local needs. JAG funds are used for area initiatives, technical assistance, training, personnel, equipment, supplies, and information systems for criminal justice. The New Jersey Department of Law and Public Safety is the recipient of these grant funds.\n \n \nThe full text of the letter is below:\n \n \n \n \n \nAugust 2, 2011\n \n \nAttorney General Eric Holder\n \n \nDepartment of Justice\n \n \n950 Pennsylvania Avenue NW\n \n \nWashington, D.C. 20530-0001\n\n \n \nDear Attorney General Holder,\n \nI write to respectfully request that you consider expediting the delivery of federal law enforcement funds to the Newark Police Department and to ask for any emergency assistance that might be available to the Department.\n \nAs you know, Newark recently suffered its largest reduction in its police force in 32 years; 163 police officers were laid off.  The city has seen an increase in gun violence and other violent crime resulting in too many senseless deaths and devastating tragedies. Between Jan. 1 and July 10 of 2011, there were 175 shootings in Newark, leaving 213 people dead or injured, according to police statistics. During the same period last year, there were 125 shootings and 161 victims.\n \nAn off-duty Newark Police Officer, William Johnson was killed in May, and just this past weekend, two young women, Debora Ferreira of Irvington and Dawn Reddick of Charlottesville, Virginia were killed. On just one morning in July, four people were injured when shots were fired and four hours later, 15-year-old Al-Aziz Stewart was killed and seven others were injured in a shooting.\n \nThe Newark Police Department, under the leadership of Mayor Cory Booker and Acting Police Director Samuel DeMaio, is doing its utmost to combat the wave of crime plaguing the city. As a result of the Department’s efforts, there has been a recent increase in arrests and the recovery of illegal weapons. I understand from my conversations with local officials that the Newark Police Department has an excellent relationship with federal law enforcement and frequently receives assistance from federal agents in local investigations.\n \nIn addition to these current efforts to collaborate with the federal government, the Newark Police Department urgently needs federal funding so that it may hire additional officers to replace those who have been laid off.  In response to the scourge of violence that is plaguing Newark, federal assistance is needed to supplement their crime-fighting efforts. I would appreciate any emergency assistance that can be offered.  Specifically, the expedited release of COPS funding and Byrne JAG funding is critical to allow the police department to hire additional personnel.\n \nThe citizens of Newark should not have their safety compromised because of budget concerns. Thank you for your consideration and I look forward to working with you on this important matter.\n \n \n \nSincerely,\n \nSENATOR ROBERT MENENDEZ\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0d67c2f4-00db-46f7-8b3a-254f27d508ee,\"Menendez Announces $135,727 to Fight Stink Bugs Plaguing New Jersey Pepper Farms\n                    \n                      August 16, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today announced the US Department of Agriculture (USDA) has awarded Rutgers University, New Brunswick - Department of Entomology, $135,727 in funds to develop management strategies to eliminate two plagues that affect pepper farming in New Jersey – the Brown Marmorated Stink Bug and Halyomorpha Halys. The grant was awarded through the USDA Regional Integrated Pest Management Program. New Jersey is among the highest producers of peppers in the United States, primarily produced for fresh and processing market consumption. \n\n“As one of the major producers of fresh produce, New Jersey’s economic growth and health depends on the prosperity of its agriculture sector. Our farmers need access to the most effective techniques to eliminate plagues that threaten their production level, as well as the quality of their products. With today’s funding we are specifically helping pepper growers manage two prevalent plagues to guarantee that they continue delivering the fresh, first rate vegetable and fruits that distinguish the Garden State.”  \n\nFor more information about the project, please contact Rutgers University, Department of Entomology at 732-392-9774. \n USDA Official Information on the Regional Integrated Pest Management Centers (IPM Centers) program: \n The overarching goals of the Regional Integrated Pest Management Centers (IPM Centers) program are to improve the cost benefit analyses of adopting IPM practices and to reduce the environmental and human health risks associated with managing pests. The IPM Centers will promote the development and implementation of IPM by facilitating collaboration across states, disciplines, and purposes. They will serve as focal points for regional pest management information networks, collaborative team building, and broad-based stakeholder participation. The end result will be increased coordination of IPM research, education and extension efforts and enhanced responsiveness to critical, priority pest management and global food security challenges. \nhttp://www.csrees.usda.gov/fo/integratedpestmanagementcenters.cfm \n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2cf1737e-3938-4d7b-b48c-68c3e6e6c45c,\"U.S. Senator Robert Menendez Reiterates Call for Port Authority Audit at Toll and Fare Hike Hearings\n                    \n                            Calls on Governor Christie to Veto Proposal\n                    \n                      August 16, 2011\n                     Jersey City, NJ – Today, The Port Authority of New York and New Jersey held public hearings to hear from New Jersey residents and commuters on how their proposed toll and fare hikes would affect them. U.S. Senator Robert Menendez sent a statement that was read at the hearing in Jersey City this morning, expressing his concern about how a 50% toll increase and a $1 fare increase would hurt working families and businesses.  Senator Menendez’s statement follows: \n \n“I believe New Jersey working families, small businesses, and the many that are unemployed and looking for work, are struggling enough. The last thing they need, in the face of difficult economic times and rising fuel costs, are toll and fare increases that make it that much more difficult for them to find work, get to work, or travel at all.\n \n“First, I call on Governor Christie to veto this proposal and have the Port Authority come back with more reasonable options. Second, I respectfully request that the Port Authority open its books and conduct a full and thorough audit to show us exactly why such prohibitive increases are necessary at this time. New Jerseyans are already suffering through a 25 percent NJ Transit fare increase and will soon have to endure a second toll increase on the Turnpike and the Parkway.\n \n“To put these increases in perspective, the GW Bridge is less than a mile long, and yet one would have to pay $15 cash to cross it – if the Turnpike had the same toll per mile it would cost over $2000 to travel through New Jersey! This is simply an unacceptable increase. It is unfair to hard-working middle class families, to those looking for work, and to every New Jerseyan.  Unemployment in New Jersey stands at 9.5 percent, so we should make sure toll and fare increases are absolutely necessary before we burden people with them.\n \n“That is why I believe the Governor should veto this proposal.  I appreciate the Port Authority’s desire for more revenues in order to reinvest in infrastructure projects for the region. But to propose such an incredible increase is unreasonable.\n \n“I also believe the Port Authority should undergo a full, independently monitored audit. Such an audit should be able to answer the following questions in detail:\n \nHow did the Authority suddenly find itself in such a financial hole? \nWhat exact costs or dips in revenue could not have been anticipated earlier?\nWhat efforts has the Port Authority undertaken to reduce costs? \nWhat is the breakdown of spending between the two states?  Traditionally it is supposed to be 50/50.  Is that still the case?\nWhat other fees or sources of revenue has the Port Authority pursued?\n \n“Lastly, I believe that the audit should detail exactly where this money is going.  I do not think anyone questions the fact that these toll and fare increases will disproportionately affect New Jersey commuters. Are these additional revenues going to be used to disproportionately help New Jersey or will they be used mainly to finish the enormous Port Authority construction projects in New York?\n \n“Again, let me thank the Port Authority in advance for taking these recommendations into consideration before adding any additional financial burden to those New Jerseyans who can least afford toll and fare increases at a time when so many are looking for work and struggling to make ends meet.\n \n“Thank you again for holding this hearing.”\n\n \n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=57497361-9fe1-40ed-b368-185c22e2ffaf,\"Menendez, Lautenberg Announce Nearly $1 Million in Funding for Yank Marine's Tuckahoe Shipyard\n                    \n                            Funding will go Towards the Purchase of a 300-ton Marine Lift, Creating New Economic Opportunities\n                    \n                      August 15, 2011\n                     WASHINGTON -  US Senators Frank Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the US Department of Transportation US Maritime Administration has awarded Yank Marine, Inc. in Tuckahoe, NJ $961,676 in funding.  The funding was awarded through the Small Shipyard Grant Program for the purchase of a 300-ton marine lift that will directly translate into new business and economic activity in the area. This is the first time any entity in New Jersey has been awarded this type of grant. \n \n“With this grant, Yank Shipyard will not only be able to expand its services and increase productivity,  it will be able to create new economic opportunities for workers throughout the area,”  said Senator Menendez.  “Simply put, strengthening our local businesses strengthens our economy and our future.” \n \n\"\"This grant is an investment in modernizing New Jersey's local maritime economy,\"\" said Senator Lautenberg, Chairman of the Commerce Subcommittee on Surface Transportation and Merchant Marine Infrastructure, Safety and Security. \"\"These funds will make possible an equipment upgrade at Yank Marine that will make it more competitive. Our shipyards form an invaluable network, allowing us to build and repair ships throughout the United States.”\n \nThe U.S. Martime Administration’s (MARAD) Small Shipyard Grants Program provides money to help this critical segment of America’s maritime industry invest in new equipment, increase competitiveness, and protect good paying jobs. \n \nThe grant will be used to purchase a new 300 metric ton Marine Travelift, replacing the current 200 metric ton lift. \n \nYank Marine has operated its Tuckahoe facility for more than 40 years and has repaired thousands of boats, commercial and fishing craft, military vessels and a large array of Coast Guard certified passenger vessels. \n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5f175954-cbcc-4f98-9e64-2b421eb063c1,\"Senator Menendez's Statement on Celebration of India's Independence Day\n                    \n                      August 15, 2011\n                     NEWARK, NJ – Senator Robert Menendez (D-NJ) today extended warm congratulations to India on the 64th anniversary of its independence from British rule. India, home to over 1.2 billion people and the world’s most populous democracy, has seen rapid economic growth in the last twenty years as it has solidified its role as a regional and global power. Menendez, a member of the Senate Foreign Relations Committee, released the following statement:\n \n“Today I join millions in the United States and around the world in celebrating India’s Independence Day. From one pluralistic, multiethnic, multilingual democracy to another: we recognize and applaud the progress of a great nation and a great people over the last 64 years. And we also admire an independence struggle marked by non-violent resistance and visionary moral leadership - a story that continues to inspire the world today.”\n \nNearly 3 million Indian Americans live in the United States according to the 2010 Census and many have found great success in government, academia, the arts, and sciences. New Jersey itself is home to the third largest population of any state in the union with 292,256 Indian Americans there, again according to the 2010 Census.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=29c7982f-47e5-46ae-9192-f8f3c8b23ea8,\"Menendez and Lautenberg Announce Opening of Application Period for Firefighters Assistance Grants\n                    \n                             FY 2011 Application Period Opens Monday August 15 and Closes Friday September 9, 2011\n                    \n                      August 12, 2011\n                     WASHINGTON, DC - Senator Menendez (D-NJ) and Frank Lautenberg (D-NJ) today announced that the application period begins Monday, August 15 for the U.S. Department of Homeland Security’s Assistance to Firefighters Grant Program (AFG).  “This grant programs provides a terrific opportunity for our local fire departments and emergency service organizations to secure additional funding for training, equipment, personal protective equipment, health programs, and other needed support,”  said Senator Menendez.  “I will continue to fight for the resources our brave firefighters need not only to protect the public, but to ensure their own safety.” “New Jersey’s firefighters are ready to roll at the sound of the alarm and we must be certain they have the best equipment and training available.  These grants can help firefighters operate safely and effectively and I urge departments in our state to apply for this federal funding,” said Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG grant program. “As cities and towns across the state struggle with tight budgets, I am working in the Senate to ensure that federal funding for public safety in New Jersey communities remains a priority.  Senators Menendez and Lautenberg have always been a strong supporter of firefighters and programs to support their efforts. They have especially advocated on behalf of AFG to ensure firefighters  have the tools and resources they need so they can effectively protect the health and safety of the public and their emergency responses personnel with respect to fire and all other hazards.  Since the Senator was elected in 2006, there have been a total of 638 grants awarded to NJ fire departments through AFG. This equals a total amount of $64,044,639 to New Jersey.   The FY 2011 DHS Appropriations Act provides $404,190,000 for the AFG Program and authorizes the Department to help fire departments and nonaffiliated Emergency Management Service organizations meet their firefighting and emergency response needs.  Grant guidance for this program will be available at www.grants.gov, and at http://www.fema.gov/firegrants/afggrants/index.shtm.  In addition, the “Get ready Guide” (available at http://www.fema.gov/pdf/firegrants/Get_Ready_Guide.pdf ) may also be useful for potential applicants to answer questions and to help prepare grant applications.  For additional information, please visit www.fema.gov/grants or contact Chris Rizzuto at (202) 786-9450, Andrew White at (202) 646-3183, or Mike Cappannari at (202) 447-5457.                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4c498e89-4b13-4f6f-b4dd-238deac4da14,\"Senator Menendez Repeats Call for Action on Veterans Healthcare During Visit to Shore Memorial Hospital\n                    \n                            Announces “Veterans Information Day & Job Fair” to be held Sept. 14th\n                    \n                      August 11, 2011\n                     NEW JERSEY – During a visit to Shore Memorial Hospital in Somers Point, U.S. Senator Robert Menendez (D-NJ) again called on U.S. Department of Veteran Affairs officials to take new steps to provide veterans of South Jersey access to quality healthcare more locally.  Senator Menendez cited a recent proposal by Shore Memorial Hospital as one possible solution to the problem of area veterans being forced to travel long distances in order to receive certain treatments.\n \nIn November 2010, Senator Menendez and Congressman Frank LoBiondo sent a letter to VA Secretary Eric Shinseki stating:  “Currently, the veterans of the Atlantic and Cape May County areas are forced to travel a minimum of 90 minutes to the nearest full service VA Medical Center. The long distance creates delays and unnecessary barriers to care for veterans who live in this region.  Veterans with medical conditions face particularly difficult circumstance traveling long distances.”\n \n“My overriding  goal is to ensure that all New Jersey veterans have access to the healthcare they deserve,” said Senator Menendez.  “ I commend Shore Memorial  Hospital for stepping up to provide a solution, and I again call on the VA to consider this and any proposal that would allow South Jersey veterans to receive care more locally.   It has always been my belief that when it comes to our veterans, it’s our duty to not only remember their service and say thank you once or twice a year, but also to deliver on the promises of a grateful nation.  I continue to hear from the South Jersey veterans’ community that the transportation plan currently provided by the VA is simply inadequate in terms of providing area veterans with reasonable access to care, and so I will continue to work to find a better solution. This fight is not over.”\n \nSenator Menendez also released the details of a “Veterans Information Day & Job Fair” scheduled for  Wednesday, September 14th from 3:30-6:30pm at the Atlantic Cape Community College in Mays Landing. The event, sponsored by Senator Menendez in conjunction with the Atlantic County Office of Veterans Services and the Atlantic County One Stop Career Center, is designed to allow veterans of all ages to find jobs and learn more about the many benefits available to them. It will also feature a special panel discussion set to begin at 5:30pm where veterans will have the opportunity to ask questions and express concerns directly to a panel of VA officials and community leaders. \n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9b465a8e-2009-4f1d-b204-10454764a544,\"Menendez, Lautenberg Announce More than $11 Million for Community Development, Access to Housing for Low and Moderate Income Families\n                    \n                            City of Camden, Union County to Benefit\n                    \n                      August 11, 2011\n                     NEWARK – U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that the City of Camden, Union County and Union Township will receive more than $11,513,236 million in federal funding for community development, emergency homeless shelters, housing assistance and supportive services for persons with HIV/AIDS, and to expand access to affordable housing for low-and moderate-income families. The grants, awarded by the Department of Housing and Urban Development (HUD), are part of four HUD initiatives: The Community Development Block Grant (CDBG) Program, the Emergency Shelter Grants (ESG) program, the Housing Opportunities for Persons With AIDS (HOPWA) program, and the HOME Investment Partnership. \n “These investments are revitalizing our communities while creating new opportunities for New Jersey families,”  said Robert Menendez.  “The funding announced today will help ensure everyone in New Jersey, especially the most vulnerable, have access to housing within their means. It will also help guarantee emergency shelter for those who may suddenly find themselves without a place to call home.”\n “Investing federal funds in local community development and housing programs will help revitalize neighborhoods and expand opportunities to some of New Jersey’s most vulnerable,” said Senator Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development.  “This funding will provide critical assistance to families and individuals in need, and help improve communities in the City of Camden and Union County.”   \n \n The $11,513,236 in federal grants were awarded as follows:\n \nCity      of Camden $4,440,450 \nCDBG — $2,539,556\nESG — $122,734\nHOPWA — $711,612\nHOME — $1,066,548\n\nUnion      County $6,438,192 \nCDBG — 4,869,487\nESG — $236,883\nHOME — $1,331,822\n\nUnion      Township \nCDBG — $634,594\n\n \nThe CDBG and HOME programs provide funding to develop decent and affordable housing, enhance infrastructure, and develop economic opportunities primarily in communities with large populations of low and moderate-income families.  HOPWA funding provides housing assistance and related support services to meet the special needs of people with HIV and AIDS.  The ESG program provides homeless people with basic shelter and other services.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c80a56d9-5ab1-4e8e-9d8a-51a4c523f09d,\"Menendez, Lautenberg Join 21 Other Senators to Call on Republicans to Put Jobs First in \"\"Super Committee\"\"\n                    \n                            Democratic Senators Urge Minority Leader McConnell to Support Job Creating Policies on Joint Select Committee\n                    \n                      August 11, 2011\n                     WASHINGTON, D.C. – One day after Republicans in the House and Senate announced their picks for the Joint Select Committee, U.S. Senators Robert Menendez (D-NJ), Frank R. Lautenberg (D-NJ) and 21 of their Senate colleagues sent a simple message to Republican lawmakers: Put jobs first.  In a letter to Senate Minority Leader Mitch McConnell, the 23 Senators argued that spurring job growth in the short term is a vital element of reducing the deficit and should therefore be central to the new committee. \n \n“For families across the country, the biggest economic problem is high unemployment,” wrote the Senators.  “As you know, the lack of jobs and anemic growth rate of the economy are not only enormous problems in their own right, causing great pain for millions of Americans, they are a major component of our deficit…Let us be very clear: our fiscal challenge is directly linked to the jobs crisis and we cannot solve the former without tackling the latter.”\n \n \n \nThe full text of the letter follows:\n \nAugust 11, 2011\n \n \n \nHon. Mitch McConnell\n \nRepublican Leader\n \nUnited States Senate\n \nWashington, DC 20510\n \n \n \nDear Leader McConnell:\n \n \n \nGiven that the single best deficit reduction strategy is economic growth, we urge you to ensure that your appointees to the new joint select committee (“JSC”) created by the debt limit bill are committed to a policy of job creation.\n \nThe recent spate of discouraging economic news underscores the need to make employment the top priority of our government.  For families across the country, the biggest economic problem is high unemployment.  As you know, the lack of jobs and anemic growth rate of the economy are not only enormous problems in their own right, causing great pain for millions of Americans, they are a major component of our deficit.  Indeed, the loss of revenue resulting from the recession accounts for nearly $4 trillion of the projected deficits over the next 10 years.\n \nAt the same time, jobless workers put additional strain on our critical social safety net programs.  As more and more Americans rely on unemployment benefits, food stamps and Medicaid, our deficits go up.  Getting those individuals back to work not only allows them to be self-sufficient, it reduces federal government spending.\n \nIt is therefore appropriate and important that the JSC explicitly embrace job creation as a part of its mission.  Targeted investments in economic growth and job creation can complement and even enhance long-term deficit reduction efforts and should be a priority that the JSC embraces.  Indeed, failure to make such investments could have a serious negative impact on our fiscal situation.\n \nJust as we can all acknowledge that reducing our deficits over the medium and long term is a national imperative, we would hope that all 100 Senators could agree that sacrificing job creation in the near term to pursue that imperative would be a grave mistake.  Over the course of the last few months, the default debate sounded to many Americans as if it was taking place in a vacuum that did not include enough discussion of the recession and its aftermath.  Let us be very clear: our fiscal challenge is directly linked to the jobs crisis and we cannot solve the former without tackling the latter.\n \nWe look forward to working with you and the Republican conference towards both objectives and hope the JSC can help advance policies that get America back to work.   \n \n \n \nSincerely,\n \n \n \nSen. Jeff Merkley (D-OR)\n \nSen. Daniel Akaka (D-HI)\n \nSen. Mark Begich (D-AK)\n \nSen. Richard Blumenthal (D-CT)\n \nSen. Barbara Boxer (D-CA)\n \nSen. Sherrod Brown (D-OH)\n \nSen. Dick Durbin (D-IL)\n \nSen. Dianne Feinstein (D-CA)\n \nSen. Al Franken (D-MN)\n \nSen. Kirsten Gillibrand (D-NY)\n \nSen. Tom Harkin (D-IA)\n \nSen. Tim Johnson (D-SD)\n \nSen. Frank Lautenberg (D-NJ)\n \nSen. Robert Menendez (D-NJ)\n \nSen. Barbara Mikulski (D-MD)\n \nSen. Jack Reed (D-RI)\n \nSen. Bernie Sanders (I-VT)\n \nSen. Charles Schumer (D-NY)\n \nSen. Debbie Stabenow (D-MI)\n \nSen. Mark Udall (D-CO)\n \nSen. Tom Udall (D-NM)\n \nSen. Mark Warner (D-VA)\n \nSen. Sheldon Whitehouse (D-RI)\n \n \n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=28a55763-f657-47d7-98d1-4451e54cd337,\"Menendez Announces Sustainable States Act\n                    \n                            Legislation is based on the nationally-recognized Sustainable Jersey program\n                    \n                      August 11, 2011\n                     CHERRY HILL, NJ – U.S. Sen. Robert Menendez (D-NJ) was at the Camden County Parks Building today to announce he will soon introduce his Sustainable States Act of 2011, which builds on the success of Sustainable Jersey’s award-winning municipal sustainability certification program. Fred Profeta, founder of Sustainable Jersey, Cherry Hill Mayor Bernie Platt, and Lori Braunstein, Director of Sustainable Cherry Hill, were also in attendance.\n \n“Sustainability is the foundation for enduring economic prosperity.  We owe it to our children and grandchildren to make sustainability a national aspiration,” said Senator Menendez. “The beauty of Sustainable Jersey is that it fosters the local government leadership that is critical to producing cost effective, environmentally sound solutions to municipal challenges, including energy consumption, water management, and waste management.  The Sustainable States Act of 2011 will build on Sustainable Jersey’s success and extend New Jersey’s leadership in municipal sustainability across the nation.”\n \n\"\"The Sustainable Jersey program has gone viral in this state because it marries the enthusiasm and savvy of local officials with the intellectual rigor of academics,” said Fred Profeta, Deputy Mayor for the Environment in Maplewood, NJ and founder of Sustainable Jersey.  “It will do as well in the rest of the country.\"\"\n \n“Cherry Hill crafted one of the most aggressive green action plans in the nation and has been at the forefront of sustainable efforts statewide,” Cherry Hill Mayor Bernie Platt said. “This Township was one of the initial members of Sustainable Jersey and has worked hard to implement initiatives that conserve energy and save taxpayers money. The creation of a federal program in the image of Sustainable Jersey would be a home run for our country’s environment and our economy.”   \n \n“Sustainable Jersey gets local governments and community stakeholders to work together to achieve certification,” said Lori Braunstein, Executive Director of Sustainable Cherry Hill.  “Realizing the collective vision of a sustainable future requires such collaboration and communication, and this strategy has worked beautifully here in Cherry Hill.”\n \nConceived in 2006, Sustainable Jersey is the product of the collaborative efforts of a range of New Jersey institutions including the New Jersey League of Municipalities, New Jersey Sustainable State Institute at Rutgers University and the Municipal Land Use Center at The College of New Jersey. The program was launched in February 2009 with the establishment of thirteen task forces able to identify specific aspects of local greening and sustainable development at the municipal level, the basis for awarding certification.\n \nThe Sustainable States Act of 2011 would make available EPA grants of up to $600K over three years for consortia to build municipal sustainability certification programs modeled after Sustainable Jersey but tailored to regional needs.  The legislation would also instruct the EPA to recognize “top performers” among municipalities that are certified as sustainable by their state program and make project grants of up to $100K over three years available to them.\n \nSustainable Cherry Hill is an all volunteer 501(c)(3) non-profit community outreach and educational organization with the mission of “Bringing people together to build a sustainable South Jersey.” Their collaborative relationship with Cherry Hill resulted in the township becoming a Sustainable Jersey ‘Bronze’ Certified Community in November 2009. The site for today’s event, the Camden County Parks Building in Cherry Hill, recently underwent the addition of an environmental center which is a model of Green Design and is LEED certified.\n \nFor more information on Sustainable Jersey go to: http://www.sustainablejersey.com/\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ed7195c5-47c1-4746-a895-f8933e06df0d,\"U.S. Senator Robert Menendez Celebrates National Health Center Week\n                    \n                            Annual “Children’s Health Day” events to be held in Bridgeton, Burlington City, Camden, Jersey City,  Long Branch, New Brunswick\n                    \n                      August 10, 2011\n                     New Jersey – Senator Menendez (D-NJ) kicked-off National Health Center Week with the New Jersey Primary Care Association at the Neighborhood Health Services Federally Qualified Health Center in Plainfield, New Jersey earlier this week, joining community members to recognize the services and contributions provided by our nation's Federally Qualified Health Centers (FQHCs).\n             “I am pleased to once again honor National Health Center Week with the 5th annual Children’s Health Day Initiative. Few things are as important as ensuring our communities, especially underserved communities, have access to affordable and high quality health services. Our national health centers help make health care for all a reality and this week we recognize their important contributions.”\n \nNational Health Center Week honors the country’s community, migrant, homeless, and public housing health centers for their continued dedication to providing access to affordable, high quality, and cost-effective health care to the medically vulnerable and underserved populations in the United States. This year’s theme of \"\"Celebrating America's Health Centers: Serving Locally, Leading Nationally” highlights the outstanding 46-year record of health centers.\n \nThroughout the week, Senator Menendez will be hosting his 5th annual “Children’s Health Day” initiative in conjunction with the New Jersey Primary Care Association. Immunizations and screenings will be provided to uninsured and underinsured children to prepare for back-to-school time. The events will be held at FQHCs in Bridgeton, Burlington City, Camden, Jersey City, Long Branch, and New Brunswick. Staff will also be available on site to answer questions or provide assistance to constituents.\n             For a full list of “Children’s Health Day” events, please visit: http://menendez.senate.gov/nj/events/\n \nFor more information, please call Senator Menendez’s offices in Newark (if you are a Northern/Central Jersey resident) at (973) 645-3030 or Barrington (if you are a South Jersey resident) at (856) 757-5353.\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=14733605-6849-481f-9feb-0baa26aa37ed,\"Menendez, Lautenberg: Zufall Health Center Awarded Nearly $817,000 for New Hackettstown Facility\n                    \n                            Historic Health Reform Law Will Bring New Services to Underserved New Jersey Communities\n                    \n                      August 10, 2011\n                     NEWARK, N.J. – During National Health Center Week, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that the U.S. Department of Health and Human Services (HHS) has awarded $816,667 to New Jersey’s Zufall Health Center.  The funding, made available through the Health Care Reform Law, will be used to open a new satellite facility in Hackettstown to provide free or low-cost health care services to low-income community members. \n \n“The Zufall Health Center is a critical resource for our low income communities, and with this funding, thousands of New Jerseyans will now have access to an affordable, high quality health care facility,” Menendez said.  “This is one more example of the positive impact the Health Care Reform law is having in meeting the health care needs of our families.  When we invest in the health of our families,  we invest in the well being of our communities.”\n \n“All New Jerseyans should have access to quality health care services, and the Zufall Health Center does important work to reach many of our state’s underserved communities,” Lautenberg said.  “This federal funding will allow the Zufall Center to remove barriers to affordable care for thousands of New Jerseyans. The health reform law is helping level the playing field and make quality care attainable for all Americans, and this funding takes an important step in that direction.”\n \nZufall Health Center provides primary care medical, dental, mental health and substance abuse services for residents in the surrounding area.  Zufall estimates the new facility will serve more than 3,400 new patients in its first year of operation. \n \nThe Zufall Health Center, and other community health centers across the country, work to improve the health of underserved communities and vulnerable populations by ensuring access to quality health care.  By increasing the availability of primary care services for the neediest populations, the new federal resources will help to decrease health disparities in New Jersey.\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c92b55ad-db5b-437f-ab79-4bbc9b3543ee,\"U.S. Senator Robert Menendez Statement on NJ Transit Derailment\n                    \n                      August 10, 2011\n                     NEWARK, N.J. – U.S. Senator Robert Menendez (D-NJ) today released the following statement regarding yesterday’s NJ Transit train derailment near Penn Station. \n \n“NJ Transit users are enduring a 25 percent fare increase and I think they have the right to expect better service.  Accidents do happen, but the fact remains that we have a system that is aging and operating at capacity.  As demand continues to increase it will be harder and harder for NJ Transit to work around even minor incidents.\n \n“That is why I was so supportive of the ARC Tunnel project which would have doubled train capacity across the Hudson River.  It would have allowed us to meet demand, improve reliability, and have the flexibility to work around interruptions to normal service.  I will continue to work to have another Hudson train crossing built, but it is frustrating that we had one under construction before it was scrapped.\n \n“It is also important to note that if the House Republicans get their way and transit funding is cut by a third and Amtrak is privatized, incidents like yesterday's derailment could very well become common place.”\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4fbeaa02-3df8-43f9-9270-5bff48c263c7,\"Senator Menendez on Reid's Appointments to Joint Committee on Deficit Reduction\n                    \n                            NJ Senator Calls for Inclusion of Provisions to End Oil Subsidies and Eliminate Wasteful Subsidies\n                    \n                      August 10, 2011\n                     WASHINGTON, DC – US Senator Robert Menendez (D-NJ) released the following statement regarding Senate Majority Leader Harry Reid’s announcement last night of Senate appointments to the Joint Select Committee (JSC) on Deficit Reduction. Senator Reid appointed Senate Democratic Conference Secretary Patty Murray, Senate Finance Committee Chairman Max Baucus, and Senate Foreign Relations Committee Chairman John Kerry to the Join Select Committee on Deficit Reduction. Senator Murray will serve as co-chair of the JSC on the Democratic side. \n“Now that members have been appointed to the Joint Select Committee, I look forward to working with them to craft a balanced deficit reduction plan that demands sacrifice by all and not just soldiers, students, seniors, and working class families. Only if we include provisions to end oil subsidies and eliminate wasteful tax loopholes will such a plan avoid further damage to our recovery and be taken seriously by the markets and the American people. Not only must this process not distract us from the most pressing task at hand, which is creating jobs, it must reinforce the goal of getting the economy moving again.”\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=107c9559-1a35-4786-b754-3088116f0556,\"Menendez, Lautenberg, Pallone, Holt Slam Defense Department Decision to Close Fort Monmouth Commissary\n                    \n                            NJ Lawmakers Fought to Keep Commissary Open for Military Community and their Families\n                    \n                      August 9, 2011\n                     NEWARK, N.J. – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ), and Representatives Frank Pallone, Jr. (D-NJ-6) and Rush Holt (D-NJ-12), today slammed the U.S. Department of Defense (DOD) for its decision to close the Fort Monmouth commissary when the base closes next month.  Since 2010, the lawmakershave advocated for DOD to keep the commissary open to continue serving 19,000 service members, surviving spouses, military retirees and their families who the Army had estimated would continue to utilize the commissary after the base closes.  \n“I am incredibly disappointed that the Pentagon has chosen to ignore the Army’s recommendation and close the Fort Monmouth commissary,\"\" Senator Menendez said.  \"\"Thousands of military families and veterans will now be faced with a sudden lack of access to the affordable food and basic goods they need.  The Department of Defense should have at the very least kept the commissary open long enough to enable families to adjust to this change, as we’ve been advocating for over a year.  It is  the right thing to do on behalf of those who sacrifice so much on behalf of our country.”\n \n\n“Since the Bush Administration recommended closing Fort Monmouth, we have worked together to fight this misguided closure, and most recently to keep the commissary open. We are deeply disturbed by the Pentagon’s decision.  Closing the commissary is the wrong decision and it adds insult to injury for military families in the region,” said Senator Lautenberg, an Army veteran.  “The commissary is a critical resource for military families and this will only serve to heighten the impact of the base closure.  We will continue to do everything in our power to support the military retirees and their families who have already sacrificed so much.\"\" \n \n\n\n \n\n“The Department of Defense made the wrong decision to close the Commissary, one that ignores the needs of our military families and the effects this will have on the local economy,” Rep. Pallone said.  “The reality of this misguided plan is that it will make it more difficult for active duty and retired military personnel to receive the benefits they have fairly earned. It’s in everyone’s best interest for our military families to continue to utilize the Commissary, which is why I am extremely disappointed in this decision.”\n \n\n“It is inexplicable and alarming that the Pentagon has, against the recommendation of the Secretary of the Army and senior Congressional leaders, decided to close Fort Monmouth’s commissary,” Rep. Holt said.  “The 19,000 service members, military retirees, and their dependents who rely on the commissary were right to expect that this critical resource would remain open.  In spite of the Pentagon’s wrong-headed decision, we will do everything possible to help Monmouth’s service members and retirees and to support the community’s economy.”\n \n\nIn 2005, the Bush Administration recommended the closure of Fort Monmouth to the Base Realignment and Closure (BRAC) Commission.  The recommendation was accepted by the BRAC Commission and the base is now scheduled to shut down in September 2011.  \n \n\nThe Senators and Congressmen have sent letters and had multiple meetings and calls to urge the Department of Defense to keep the commissary open.   The delegation met with Army Secretary John McHugh in May 2010 to personally request the commissary remain open for a transitional two-year period after Fort Monmouth closes.  In August 2010, the lawmakers sent a letter to Army Secretary McHugh to reiterate their stance that the commissary is vital for military retirees and their families across the state.  In response to the lawmakers' request, Secretary McHugh recommended in February 2011 that the commissary remain open for a transitional two-year period following Fort Monmouth's closure. \n \n\nIn addition, the Senators and Congressmen met with Dr. Clifford Stanley, UnderSecretary of Personnel and Readiness at the Department of Defense, who is responsible for military commissaries, in June to underscore the value of the Fort Monmouth Commissary and request that it remain open.  In a letter leading up to their meeting with Under Secretary Stanley, the lawmakers laid out significant concerns about the process and guidelines for deciding which commissaries would be closed. \n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0d42a82a-7ac0-4bc2-89a6-fc2c9e9f053c,\"U.S. Senator Robert Menendez, Transportation Advocates, Union Members: NJ to Lose 50,000 Jobs if GOP Holds Surface Transportation Funding Hostage\n                    \n                            Failure to reauthorize The Surface Transportation Program by Sept. 30 equals halted projects; 1.5 million jobs at risk\n                    \n                      August 8, 2011\n                     Jersey City, New Jersey - Today, U.S. Senator Robert Menendez, Tri-State Transportation Campaign Federal Advocate Ya-Ting Liu, and Amalgamated Transportation Union  AFL-CIO NJ State Council Chairman Ray Greaves stood besides dozens of union workers to avert the a potential failure to reauthorize the Surface Transportation Program, when Congress goes back in session in September.  The federal program, which provides funding for road, bridge, and transportation projects, will expire on September 30. \n \nFollowing Tea Party tactics to hold the debt ceiling and the FAA bill hostage, some have expressed worry that they will use the same strategy with the surface transportation bill to try to gain leverage necessary to force the Senate to agree to a 35% surface transportation funding decrease. If the surface transportation bill is not extended on Sept. 30 the federal government would stop reimbursing states for transportation spending, all major projects would halt and 1.5 million workers' jobs would be in jeopardy.\n \n            “Infrastructure in dire need of repair like the Pulaski Skyway behind us as well as numerous New Jersey roadways in need of maintenance should not be used as leverage for an agenda that will not only endanger drivers and pedestrians; it will endanger thousands of jobs in New Jersey,” said Senator Menendez.  “Extending transportation funding is so vital to states it has rarely encountered major opposition in the past.  American jobs should be our number one priority and the highway and transit programs are proven job creators.”\n \n            The House Transportation and Infrastructure Committee unveiled a six-year Federal highway and transit reauthorization proposal that represents a 35% reduction in funding.  A 35 percent cut would threaten 600,000 transportation jobs including 18,000 in NJ.\n \n“New Jersey has some of the oldest and most heavily trafficked infrastructure in the country that needs to be repaired, maintained, upgraded and improved.  Nearly half of New Jersey’s transportation funding comes from federal sources. To cut federal transportation investment by a third could bring the state’s economy to a grinding halt.” said Ya-Ting Liu, federal advocate for Tri-State Transportation Campaign.\n \nIn New Jersey, federal funding cuts will threaten the purchase of buses in Camden and Gloucester Counties, the Carteret Ferry Terminal project and the entire ferry program, and the South Amboy Intermodal Center, as well as New Jersey’s bikeways, waterfront projects, river improvements and our Safe Routes to School Program.\n \n \n \n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=145a565e-00b0-4116-86b5-f34dd6c9beda,\"Menendez, Lautenberg: FAA Deal will Get Workers Back on the Job\n                    \n                            Senators Urged Congressional Leadership to Act Immediately to Strike a Deal\n                    \n                      August 4, 2011\n                     NEWARK—U.S. Sens. Frank Lautenberg (D-NJ) and Robert Menendez (D-NJ) today released the following statements after news that Senate Democrats have brokered a deal to break the impasse caused by House Republicans that shuttered parts of the FAA since July 23.   “Shutting down the FAA was a shameless Republican stunt that put people out of work and slowed the development of critical aviation technology,” stated Lautenberg.  “Even a fellow Republican called Congressman Mica’s actions that led to shutting down parts of the FAA ‘wrong’ and ‘not honorable.’  I am encouraged that will now be able to put FAA workers in New Jersey back on the job to improve air travel and strengthen America’s aviation industry.”   “I commend Senate Democratic leaders for getting Republicans to the bargaining table and hammering this agreement out,” said Senator Menendez.  “I hope this ridiculous episode will serve as a lesson to House Republicans.  The American public will not tolerate tactics that threaten tens of thousands of jobs and cost taxpayers hundreds of millions of dollars.  It is time for the GOP to join us at the table to try to create more jobs.” Senators Lautenberg and Menendez joined several of their colleagues in a letter to Congressional leadership today urging a deal be made immediately to reopen the FAA, end the furlough, and restart aviation projects.    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c51f9aad-ea8a-4853-a900-4c5a6dcf5416,\"Senators Menendez and Isakson Introduce Bipartisan Bill to Boost the Weak Housing Market\n                    \n                            Maintains higher limits for federally insured loans across the country to help the housing market and economic recovery\n                    \n                      August 4, 2011\n                     WASHINGTON, DC – Yesterday, Senators Robert Menendez (D-NJ) and Johnny Isakson (R-GA) introduced a bipartisan bill – the Homeownership Affordability Act of 2011 – to allow the Federal Housing Administration (FHA), Government Sponsored Enterprises (GSE) and the Veterans Administration (VA) to insure home loans at their current maximum levels for an additional two years, until December 31, 2013. The legislation is also co-sponsored by Senator Dianne Feinstein (D-CA).\nIn 2008, to aid the weak housing market, Congress increased the maximum loan limit for the FHA, GSEs and the VA to 125% of local median home prices.  Those limits, if allowed to expire on September 30th for the FHA and GSEs and on December 31st for the VA, could set back the still-weak housing market even further.\n“Allowing these limits to expire would be bad medicine for our economy at a time when we need a booster shot,” Senator Menendez said.  “New Jersey has some of the highest home prices in the nation and allowing these limits to lapse would hurt middle class homeowners and prospective buyers. The effects could be terrible.”\n“Allowing existing loan limits to expire during this difficult economic time would make a struggling housing market even weaker. I am also concerned that failing to extend these limits will make it even more difficult for the average homebuyer get a mortgage and buy a home when credit is already tight,” said Isakson. “I am pleased to join my colleagues in supporting the Homeownership Affordability Act because it is critical for the recovery of the housing market, which is the foundation of our economy.”\n“California counties would see loan limits for government financing plunge by as much as $246,000, making loans more expensive and harder to come by for many homebuyers,” Senator Feinstein said. “While I recognize the need for comprehensive housing finance reform, California’s housing market is too unstable to make arbitrary decisions that could have detrimental effects on home values.”\nThe effects of an expiration could be dramatic – access to mortgage credit will be significantly impeded for many homeowners and buyers across the country.  If the limits are not extended, they would be automatically lowered in 669 counties across 42 states and the average decline in loan limits would be more than $68,000 per county.  The current limits are $729,750 or 125% of local median home prices for single family residences across the country, but will drop back down to $625,500 or 115% of local median home prices if the extension is not passed.\nThe Homeownership Affordability Act of 2011 is paid for by increasing the guarantee fees charged on the loans themselves.  Guarantee fees, or “g-fees”, are charged by loan guarantors such as the GSE’s to lenders for bundling, servicing and selling the mortgage-backed securities to investors and are similar to insurance.  Additionally, FHA audits for the past decade have shown that larger loans actually perform better and default at significantly lower rates than small loans, so allowing these larger loans to be insured would actually improve taxpayer returns.\nSupporters include the National Association of Realtors, the Mortgage Bankers Association and the National Association of Homebuilders. Several bills have also been introduced in the House of Representatives to maintain the higher loan limits.    \nClick here for a full text of the bill: http://menendez.senate.gov/download/?id=30413c77-d613-4636-a314-96c51c5e01ce\nClick here for a summary of the bill: http://menendez.senate.gov/download/?id=93043fe6-0c2b-405a-9669-4d0beb47a0eb\n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b4a27828-ab5c-4a98-ac23-64dda18888f7,\"Senators Call on Speaker Boehner to Use Pro Forma Sessions to Extend FAA Funding, Get Workers Back on the Job\n                    \n                            Extending FAA authorization cannot wait until September\n                    \n                      August 4, 2011\n                     Washington, DC – U.S. Senators Ben Cardin and Barbara A. Mikulski (Both D-MD), with Senators Frank Lautenberg and Robert Menendez (Both D-NJ), and Senators Mark Warner and Jim Webb (Both D-VA) have written Speaker of the House John Boehner, Senate Majority Leader Harry Reid (D-NV), House Democratic Leader Nancy Pelosi and Senate Minority Leader Mitch McConnell (R-KY), urging the use the pro forma sessions of Congress to extend the current FAA authorization, immediately putting tens of thousands of workers back on the job. \nDespite passing 20 short-term extensions previously, right now the House of Representatives is refusing to pass a straightforward extension to the agency’s funding authority. While Congress is on recess, 4,000 Federal Aviation Administration employees and approximately 75,000 construction workers remain out of work, held hostage to the demands of House Republicans.\n“We urge you to prevent a prolonged and devastating shutdown of an agency that is so vital to the expedience of U.S. commerce and the safety of the air travelling public. We stand ready to support immediate procedural action to prevent further delay in ending the FAA shutdown,” the Senators wrote. “If a unanimous consent agreement cannot be reached, we request that you immediately call Congress back into session, under regular order, to debate and vote on an FAA authorization extension to restore the full operation of the FAA and get America’s aviation professionals back to work.”\nThe text of the letter follows (and attached):\nCongress must resolve the extension of the authorization for the Federal Aviation Administration immediately. We strongly urge you to take the opportunity during the current pro forma session of Congress to pass by unanimous consent a bill to extend the FAA’s current authorization. If a unanimous consent agreement cannot be reached, we request that you immediately call Congress back into session, under regular order, to debate and vote on an FAA authorization extension to restore the full operation of the FAA and get America’s aviation professionals back to work.\nThe Federal Aviation Administration has effectively been shut down for thirteen days, resulting in the furlough of 4,000 FAA employees, issuance of stop work orders for more than 200 airport and aviation safety improvement projects that provide jobs for more than 70,000 workers, and the loss of an estimated $350,000,000 in revenues that support the maintenance, improvement and operational safety of our nation’s complex aviation system. To allow this shut down to last until Congress’ scheduled return in September would further harm our already fragile economy.\nWe urge you to prevent a prolonged and devastating shutdown of an agency that is so vital to the expedience of U.S. commerce and the safety of the air travelling public. We stand ready to support immediate procedural action to prevent further delay in ending the FAA shutdown.  We look forward to working with you on this issue.\nSincerely,  U.S. Senator Ben CardinU.S. Senator Barbara A. MikulskiU.S. Senator Frank LautenbergU.S. Senator Robert MenendezU.S. Senator Mark WarnerU.S. Senator Jim Webb\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2b515588-8c8a-4925-93e7-7fb3b808ef3e,\"Menendez and Lautenberg Applaud USDOT’s $4.3 Million Award to National Transit Institute at Rutgers\n                    \n                            Funding will provide job training and education for public transportation workers\n                    \n                      August 3, 2011\n                     WASHINGTON, D.C. – Today, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) applauded Secretary Ray LaHood on a $4.3 million grant from the U.S. Department of Transportation in support of the National Transit Institute (NTI) at Rutgers.  Since 1991, NTI has served as the premiere research, training, and educational institute in the country dedicated to public transportation.  This award will enable critical enhancements to NTI’s ongoing work, including safety and security training, procurement, planning and advanced technologies.\n“Transit is a critical element of our transportation network and recognition of its importance continues to rise,” said Menendez.  “Today, with gas prices around $4 a gallon and oil companies reaping record profits, with the threat of climate change and growing wealth disparity, transit is part of the solution for a number of interconnected challenges.  NTI’s work is essential for the industry to continue to create good, long term jobs, provide families with access to opportunity, and help our communities grow in ways that are smart and efficient.”\n\"\"Millions of people count on efficient and reliable public transportation to get to and from their homes and their jobs, and transit workers make this possible,\"\" said Senator Lautenberg.  \"\"NTI at Rutgers provides critical training for transit operators around the country and helps ensure the best management, safety and security of our public transportation systems.  This federal grant makes an investment in NTI so that it can continue its work to keep Americans on the move.\"\" “This grant will ensure that the existing and importantly, the new generation of public transportation workers receive the training that they need to comply with federal regulations and operate safe and efficient transit services,” said NTI’s director, Paul Larrousse.NTI works cooperatively through partnerships with industry, government, institutions, and associations to develop high quality programs that build careers and help make our communities healthier and more livable.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9f6e14c4-b453-47fd-bf4b-8a43b28e8e8f,\"Senator Menendez Votes Against Debt Deal\n                    \n                      August 2, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today voted against the debt deal because it lowers the deficit on the backs of working class Americans, demands no sacrifices from those who can best afford it, and could jeopardize our economy’s fragile recovery.\n \n“I cannot in good conscience support a plan where soldiers, seniors, students, and working families must endure trillions in cuts, but oil companies, billionaires, and corporate jet owners are not asked to pay their fair share” said Senator Menendez.  “I supported the Reid plan and previous efforts to reduce the deficit because I believe it’s important to stem our nation’s rising debt, but I believe that we must do so in a balanced way that calls for shared sacrifice, just as the American people have demanded.  Such an unbalanced approach is not only unfair, but it could also jeopardize our already fragile economy.”\n \nSenator Menendez took to the Senate floor yesterday to explain his opposition to the plan.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d1ee6704-cb14-46f1-963d-af9696e8fcc1,\"Menendez Calls for Immediate Federal Funds for Newark Police\n                    \n                            Deadly Crime Wave Grips City Following Loss of 163 Police Officers\n                    \n                      August 2, 2011\n                     WASHINGTON, D.C. – Senator Robert Menendez (D-NJ) today sent a letter to Attorney General Eric Holder requesting expedited law enforcement funds for the Newark Police Department.\n \n“The Newark Police Department urgently needs federal funding so that it may hire additional officers to replace those who were laid off.  In response to the scourge of violence that is plaguing Newark, federal assistance is needed to supplement their crime-fighting efforts,” said Senator Menendez.\n \nNewark has seen a drastic rise in crime since budget limitations forced the city to release 163 police officers, the largest reductions in 32 years.  Between Jan. 1 and July 10 of 2011, there were 175 shootings in Newark, leaving 213 people dead or injured, according to police statistics. During the same period last year, there were 125 shootings and 161 victims.\n \nMayor Cory Booker and Acting Police Director Samuel DeMaio is responding with his “Safe City” campaign, which seeks to increase police efforts and enhance community involvement in reducing crime.  Events such as National Night Out, which is being held today, have helped police coordinate with local groups and community organizations to foster crime prevention.  However, greater police presence is urgently needed, and continued budget limitations prevent the department from hiring additional officers.\n \nMenendez sent a similar letter requesting assistance for Camden, New Jersey, earlier this year.\n \n \n \nThe full text of the letter is below:\n \n \n \n \n \nAugust 2, 2011\n \n \n \nAttorney General Eric Holder\n \nDepartment of Justice\n \n950 Pennsylvania Avenue NW\n \nWashington, D.C. 20530-0001\n \nDear Attorney General Holder,\n \nI write to respectfully request that you consider expediting the delivery of federal law enforcement funds to the Newark Police Department and to ask for any emergency assistance that might be available to the Department.\n \nAs you know, Newark recently suffered its largest reduction in its police force in 32 years; 163 police officers were laid off.  The city has seen an increase in gun violence and other violent crime resulting in too many senseless deaths and devastating tragedies. Between Jan. 1 and July 10 of 2011, there were 175 shootings in Newark, leaving 213 people dead or injured, according to police statistics. During the same period last year, there were 125 shootings and 161 victims.\n \nAn off-duty Newark Police Officer, William Johnson was killed in May, and just this past weekend, two young women, Debora Ferreira of Irvington and Dawn Reddick of Charlottesville, Virginia were killed. On just one morning in July, four people were injured when shots were fired and four hours later, 15-year-old Al-Aziz Stewart was killed and seven others were injured in a shooting.\n \nThe Newark Police Department, under the leadership of Mayor Cory Booker and Acting Police Director Samuel DeMaio, is doing its utmost to combat the wave of crime plaguing the city. As a result of the Department’s efforts, there has been a recent increase in arrests and the recovery of illegal weapons. I understand from my conversations with local officials that the Newark Police Department has an excellent relationship with federal law enforcement and frequently receives assistance from federal agents in local investigations.\n \nIn addition to these current efforts to collaborate with the federal government, the Newark Police Department urgently needs federal funding so that it may hire additional officers to replace those who have been laid off.  In response to the scourge of violence that is plaguing Newark, federal assistance is needed to supplement their crime-fighting efforts. I would appreciate any emergency assistance that can be offered.  Specifically, the expedited release of COPS funding and Byrne JAG funding is critical to allow the police department to hire additional personnel.\n \nThe citizens of Newark should not have their safety compromised because of budget concerns. Thank you for your consideration and I look forward to working with you on this important matter.\n \nSincerely,\n \nSENATOR ROBERT MENENDEZ\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d051a539-20d5-4af3-a22f-dc880fb10a4c,\"Menendez Opposes Debt Deal on Senate Floor \n                    \n                      August 1, 2011\n                     WASHINGTON – Senator Robert Menendez (D-NJ) took to the floor today in strong opposition of the debt deal and balancing the budget solely on the back of American working families. The NJ Senator emphasized the need for shared sacrifice and ensuring oil companies, billionaires, offshore tax havens and corporate elite are part of the formula to reduce the deficit.““[T]here is no balance in this agreement -- no compromise.  It simply does not force shared sacrifice as the American people have demanded. Oil companies will keep picking the pocket of American taxpayers with ridiculous handouts while they earn $143 billion in profits…. There is no fairness. There is nothing but concessions to the radical right wing of the Republican Party that is holding the American economy hostage – a gun to its head – threatening to the pull the trigger if they don’t get their way,” Senator Menendez stated.   “I cannot in good conscience support a plan where soldiers, seniors, students, and working families must endure trillions in cuts, while oil companies, billionaires, and corporate jet owners are not asked to pay their fair share.”\nLink to full video of speech\n\nFULL TEXT AS PREPARED FOR DELIVERY:Debt Limit Agreement \n \nRemarks by Senator Robert Menendez\n \nSenate Floor – July 31, 2011\n \n \n \nIntroduction – Eleventh Hour Deal\n \nMr. President, we have reached the eleventh hour…\n \nTime has run out…\n \nWe have a deal before us as a result of a manufactured crisis. The debt limit has historically been raised as a matter of course, by both sides, without conditions. Ronald Reagan did it 18 times without conditions, George Bush 7 times without conditions.\n \nBut not this time...\n \nFor days, for weeks, this Congress has been held hostage by a radical few, a band of Tea Party tyrants who believe their opinion, their values, their view of the world, their vision of government, must be America’s vision.\n \nIt is not.\n \nIn their world there is no room for reasonable compromise…\n \n…There is no room for fair and balanced budget approaches – the kinds of approaches to budgets that I – and many on this side – have worked for and voted for throughout our careers in Congress.\n \nI have voted for balance going in and I was looking for balance in the final agreement, or the hope of balance that the American people want.\n \nI have voted for $2.4 trillion in cuts in the Reid amendment with inclusion of a joint committee process that could include revenues – a balanced approach…\n \nI have supported increasing the debt limit in a responsible way – a balanced, reasonable, fair approach that implements significant but responsible reductions…\n \nI voted, in 2010, to establish the Bipartisan Task Force for Responsible Fiscal Action, the precursor to the Bowles-Simpson commission to review all aspects of the financial conditions of our government including tax policy and entitlement spending…\n \nI voted to protect Social Security from being used to balance the budget when it hasn’t contributed to our debt…\n \nI voted in favor of the Pryor amendment to reduce the budget deficit by at least $154 billion with a balanced approach to cutting our deficits that included discretionary spending, entitlements, and revenues…\n \nI’ve supported budget enforcement measures like statutory PAYGO to control both spending and revenues.\n \nI’ve led the effort in this Chamber to cut $21 billion in unwarranted oil subsidies and supported saving almost $6 billion this year alone by cutting ethanol subsidies…\n \nAnd I have voted 5 times, in the past, to increase the debt limit in a responsible way…\n \nBut this eleventh-hour deal, with so many strings attached that it has become a tangled web of conservative social values – is nothing more than a concession to the radical-right of one Party… and flies in the face of our values as a nation.\n \nNo Fairness\n \nIt would mean drastic and dramatic cuts to one side of the ledger – overwhelmingly from non-defense spending…\n \nAnd no balance – I repeat: no balance on the revenue side...\n \n...Speaker Boehner has said he won’t appoint anyone – anyone – to the committee who would accept revenue as part of the mix...\n \nSenator McConnell has said there will be no revenue...\n \nEven Gene Sperling, the President’s economic advisor, said there will be no new revenue for the next 18 months which is a clear reflection of what Speaker Boehner and Minority Leader McConnell have said...\n \nSince they won’t accept revenue, except in the context of tax reform, which the joint Committee has said it can’t do by the end of the year, and we Democrats will have members on the Commission who will be responsible and want to strike a deal, we will end up either having to accept the Commission’s spending cuts, without revenue, leaving us with trillions of dollars in non-defense and entitlement cuts, or automatic sequestered cuts that are more draconian.\n \nAnd does anyone really believe that the Bush tax cuts for the top tier, the richest – which will expire in 2012 -- will be on the table in an election year – that the President will issue a veto threat for those tax cuts and make them the hallmark of his re-election – I don’t think so.\n \nWhile I know nearly a trillion of those automatic cuts will come from defense, what guarantees that they won’t use the overseas contingency fund of a trillion dollars to meet the defense side of cuts -- the very fund that the defense budget passed in the House, and supported by my Republican colleagues in the Senate, used as cuts.\n \nWhat makes us think supplemental emergency appropriations won’t be offered on the defense side while war-fighters are in the field – leaving us with a hard trillion dollars in cuts on domestic programs like education, student loans, health care, and renewable energy?\n \nWhat makes us think that the old paradigm – that people will be responsible -- given what we have seen from the other side in this negotiation – will work?\n \nThey will continue to look for deeper and deeper cuts to those basic services we – as a Party – have fought for.\n \nWe will spend the next year – headed into an election – forced to debate deeper cuts, re-fight old battles, debate a Balanced Budget Amendment, the Bush tax cuts... instead of taking about creating jobs and helping middle class families who are struggling to make ends meet.\n \nKrugman\n \nPaul Krugman, a Nobel Prize winning economist, wrote that this deal is a “disaster” for the economy.\n \nHe said – and I quote -- “Start with the economics. We currently have a deeply depressed economy. We will almost certainly continue to have a depressed economy all through next year. And we will probably have a depressed economy through 2013 as well, if not beyond. \n \n“The worst thing you can do in these circumstances is slash government spending, since that will depress the economy even further. Pay no attention to those who invoke the confidence fairy, claiming that tough action on the budget will reassure businesses and consumers, leading them to spend more. It doesn’t work that way, a fact confirmed by many studies of the historical record. \n \n“Indeed, slashing spending while the economy is depressed won’t even help the budget situation much, and might well make it worse. On one side, interest rates on federal borrowing are currently very low, so spending cuts now will do little to reduce future interest costs. On the other side, making the economy weaker now will also hurt its long-run prospects, which will in turn reduce future revenue. So those demanding spending cuts now are like medieval doctors who treated the sick by bleeding them, and thereby made them even sicker. \n \n“And then there are the reported terms of the deal, which amount(s) to an abject surrender…. First, there will be big spending cuts, with no increase in revenue.\n \n“Then a panel will make recommendations for further deficit reduction — and if these recommendations aren’t accepted, there will be more spending cuts.”\n \nNo, Mr. President, there is no balance in this agreement -- no compromise -- It simply does not force shared sacrifice as the American people have demanded.\n \nOil companies will keep picking the pocket of American taxpayers with ridiculous handouts while they earn $143 billion in profits.\n \nEthanol millionaires will be off the hook with this deal.\n \nThere is no balance in this deal…\n \nThere is no fairness…\n \nThey’re nothing but concessions to the radical right wing of the Republican Party that is holding the American economy hostage – a gun to its head – threatening to the pull the trigger if they don’t get their way.\n \nAnd yet, no one on the right seems to be happy. They want more. They don’t believe they have gotten enough…\n \nMr. President, when is enough – enough?\n \nHow far do WE have to bend before we break…\n \nHow much do we have to give of our values, our beliefs, our vision of America…\n \nHow much do we have to give of the promises we have made as a nation to the hard-working middle class families struggling to make ends meet…\n \n…struggling to pay the bills, the mortgage – pay for health care and tuition to put their children through college and give them a chance at a better life…\n \nHow about those whose lives would be shattered except for the government’s protection?\n \nWe are their voice… and I speak for them when I say this is not a fair deal but it is the deal before us…\n \nConclusion – What’s Fair is Fair\n \nWhat's fair is fair. But this plan is not fair to the American people.\n \nI cannot in good conscience support a plan where soldiers, seniors, students, and working families must endure trillions in cuts, while oil companies, billionaires, and corporate jet owners are not asked to pay their fair share.\n \nThe Republicans turned a relatively routine vote to meet America's obligations into a crisis threatening the world's economy.\n \nIn response, the Reid plan met them 80 percent of the way by proposing $2.4 trillion in cuts creating a process where a bipartisan commission could find a balanced approach to deficit reductions that would meet the American people’s call for shared sacrifice from those at the top of the ladder.\n \nBut this was not enough for the Tea Party…\n \nThis was not enough for the Republican Party they now control.\n \nNo, instead they have insisted on a process where oil companies, billionaires, offshore tax havens, and the corporate elite are completely protected from making shared sacrifices.\n \nThat is simply not fair and I cannot support it.\n \nThe thought that because our soldiers will join seniors, students, and working class families on the chopping block Democrats should flock to this plan is wrongheaded.\n \nEliminating troubled DOD weapons systems is one thing…but across the board cuts will punish those who are bravely serving our country in a time of war.\n \nAdding these cuts just makes what was a painful plan a totally, unfair, unbalanced, and unacceptable plan.  I supported the Reid plan…\n \n…I have shown I am serious about deficit reduction.\n \nI have supported a fair deal, a reasonable deficit reduction plan that truly represents compromise…\n \n…a deal that fulfills the common-sense idea of shared sacrifice.\n \nThis is not shared sacrifice, this is capitulation to a radical fringe of the Republican Party that will not bend until they break this economy and get their own way.\n \nI have been for deficit reduction. I have voted for fair approaches to deficit reduction. I know fairness.\n \nThis is not fair. With that, Mr. President, I yield the floor.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5afb6ba2-ee68-46f9-8bdc-e737868d6621,\"Menendez Commends HHS on Provision in New Rule Supporting New Jersey Hospitals\n                    \n                      August 1, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) released the following statement today on the Center for Medicare and Medicaid Services (CMS) rule extending the imputed wage index floor for New Jersey.  This imputed floor acknowledges the costs of hospitals operating in urban states and currently, New Jersey is the only state to benefit from this provision.  \n \nIn 2012, approximately 37 New Jersey hospitals are expected to receive a total of $88 million as a result of the imputed floor.   From 2005 to 2012, the imputed floor will have brought New Jersey hospitals more than $430 million.\n \n“I have long recognized how expensive it can be to run a hospital in New Jersey.  I championed this issue with the Administration and made extending the imputed wage index floor one of my top priorities.  It is gratifying to see that work pay off,” said Senator Menendez. “If this floor would have expired, New Jersey would have lost over $88 million next year alone.  It would have been devastating to so many hospitals that are on the front lines delivering critical care. I commend Secretary Sebelius for recognizing this and extending these crucial payments to our hospitals.”\n \nSenator Menendez has led the New Jersey delegation on this issue.  This year, the Senator led two New Jersey delegation letters asking CMS to consider extending the imputed floor.  Furthermore, in the new healthcare reform law, Senator Menendez was able to include an amendment to ensure that the cost of those payments be distributed in a budget-neutral fashion across all hospitals nationwide and not on hospitals within a given state.\n \n \n \nBackground on the Imputed Wage Index Floor from the New Jersey Hospital Association\n \nIn 2004, through the FY 2005 IPPS rule, CMS created the imputed wage index floor for states, like New Jersey, that are considered by the federal government to be all-urban states for Medicare payment purposes for three years. The imputed wage index floor corrected years of unequal treatment for New Jersey’s hospitals by providing them with benefits similar to those granted to healthcare institutions in 48 other states through the longstanding application of a rural hospital wage index floor. In the final FY 2008 IPPS rule, CMS extended NJ’s floor through FY 2008. In the final FY 2009 rule, CMS extended the floor 3 years, through FY 2011. The current policy was scheduled to expire Sept. 30, 2011.  New Jersey is currently the only state to benefit from the imputed wage index floor.\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b3ce1714-c801-4a58-aa42-56a326f141fe,\"Menendez on Republican’s Obstruction to Reach Compromise and Avoid Default\n                    \n                      July 30, 2011\n                     WASHINGTON – Senator Robert Menendez (D-NJ) took to the floor to call out the  Republicans' deliberate obstruction of the debt negotiations and to support  the Senate Majority Leader’s proposal as the best option to overcome  the current impasse. The NJ Senator emphasized the need for Republicans  to realize that governing is not about falling on your sword for  unattainable partisan political goals, but for sensible compromise to  solve problems for the American people. Below is a link to video footage of his full remarks: “There are times when one needs to stand and fight, and there are other  times when one needs to reach a compromise. I am not excited about the  decisions we are being forced to make, but I think the Majority Leader  has crafted a proposal that can bring the two parties together and avoid  economic disaster without destroying Medicare, Social Security, and  other priorities of working families.  Compare that to Speaker Boehner’s  proposal that is just more of the same partisan gamesmanship, and the  path we have to take becomes clear. So, I rise today in favor of the  Majority Leader’s plan in the hope that reason will prevail on the other  side -- that our Republican colleagues will finally agree to help  govern and not make irrational demands that drive us down the road to  default.”\n[Link to video of speech]\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=73a1d9b2-ed2d-4f42-8e3f-9721b2f92c24,\"Menendez: Massive Big Oil Profits Make Clear that Big Oil Subsidies Must Go\n                    \n                            Taxpayer-funded subsidies continue to pad record profits of Big 5 oil companies, rather than go toward deficit reduction\n                    \n                      July 29, 2011\n                     WASHINGTON – This week the Big 5 oil companies announced massive second quarter profits, leading US Senator Robert Menendez (D-NJ) to again call for an end to taxpayer-funded subsidies to these companies in any debt deal.  “American taxpayers pad the enormous profits of the Big 5 oil companies to the tune of $2.1 billion a year.  The Big 5  oil companies should not continue enjoying these subsidies while working class families and seniors are expected to make sacrifices to balance the budget,” said Menendez.  “If Speaker Boehner needs votes from House Democrats to ensure we avoid default, then perhaps it is time for him to embrace an end to needless subsidies for the Big 5 oil companies.  We must not put the sole burden of righting our fiscal ship on those who can least afford it.” \n \nMenendez is the author of the Close Big Oil Tax Loopholes Act of 2011, which received a bipartisan majority vote in the Senate, but failed because of a Republican filibuster.  As the chart below shows, the Big 5 oil companies are on track to haul in $144 billion in profits in  2011.  Without subsidies their projected profits would still be $142 billion.\n \nEnormous Profits for the Big 5, Again:\n \n \n \n\nBig 5 Oil Company enjoying tax subsidies\n\n\n1st Quarter Profit\n\n\n2nd Quarter Profit\n\n\nMid-year Profit\n\n\nExpected 2011Profit\n\n\nExxonMobil\n\n\n$10.7 billion\n\n\n$10.7 billion\n\n\n$21.4 billion\n\n\n$42.8 billion\n\n\nRoyal Dutch Shell\n\n\n$8.8 billion\n\n\n$8.7 billion\n\n\n$16.5 billion\n\n\n$33.0 billion\n\n\nChevron\n\n\n$6.2 billion\n\n\n$7.7 billion\n\n\n$13.9 billion\n\n\n$27.8 billion\n\n\nBP\n\n\n$7.1 billion\n\n\n$5.6 billion\n\n\n$12.7 billion\n\n\n$25.4 billion\n\n\nConocoPhillips\n\n\n$3.0 billion\n\n\n$3.4 billion\n\n\n$6.4 billion\n\n\n$12.8 billion\n\n \n \n \n\nTotals\n\n\n$35.8 billion\n\n\n$36.1 billion\n\n\n$71.9 billion\n\n\n$143.8 billion\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=106d7775-5ac3-4397-9372-252c49d5fad9,\"Menendez, Lautenberg Cosponsor Bill to Put Furloughed FAA Workers in New Jersey Back to Work\n                    \n                      July 27, 2011\n                     WASHINGTON – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced they have cosponsored a bill to provide back pay and put hundreds of Federal Aviation Administration (FAA) workers who have been furloughed in New Jersey back to work.  Last Saturday, these workers were sent home without their paychecks after Republicans refused to pass a clean funding extension and insisted on including controversial provisions in the FAA extension.   \n \n“It is unacceptable that 650 New Jersey workers have been furloughed because of a Republican partisan stunt,” said Senator Menendez.  “This bill will get these workers back on the job, get them back pay, and allow them to continue their important work to make our skies safer and more efficient.\"\"\n “Hardworking people in New Jersey shouldn’t have to go without a paycheck because Republicans are playing games in Washington,” said Senator Lautenberg, a member of the Committee on Commerce, Science and Transportation.  “This bill would ensure that New Jersey’s FAA employees can get back to work and continue making progress on the groundbreaking technology being developed at the Tech Center.  We must pass this legislation and come to a quick resolution to reauthorize the FAA.”\n \n \nThis bill introduced by Senator John D.  Rockefeller IV (D-WV), Chairman of the Committee on Commerce, Science and Transportation, would allow FAA employees, including those at the FAA William J. Hughes Technical Center, to continue working with pay and benefits funded from the Aviation Trust Fund as Congress works to pass a FAA extension.  On July 26th, Sens. Lautenberg and Menendez wrote a letter to the Senate Republican Leader urging him to work quickly with the Republican Conference to get the FAA back up and running. \n \n \nThe Technical Center is the world’s premiere aviation research and development facility and serves as the FAA’s test base.  Employees work on long-range development of aviation systems as well as the Next Generation Air Transportation System, or NextGen.\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e57630b6-9ab2-40d3-b23a-3ea47b168058,\"Menendez Comments on Lockerbie Bomber’s Attendance at Qaddafi Rally\n                    \n                            Senator Applauds UK Govn’t Admission That It Influenced Decision to Release Convicted Terrorist\n                    \n                      July 27, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ), the member of the Senate Foreign Relations Committee who led an investigation into the release of convicted terrorist Abdelbaset Ali al-Megrahi, today issued a statement in response to news that al-Megrahi was filmed attending a rally in support of Col. Muammar el-Qaddafi’s government.\n \n“Seeing Abdelbaset al-Megrahi at a Qaddafi rally 20 months after Scottish authorities released him under the pretense that he had only 3 months to live, is another chapter in a sad story that saw governments put the interests of oil companies ahead of justice,” said Senator Menendez.  “I will continue to work to ensure that any new government in Libya cooperates with efforts to extradite Mr. al-Megrahi to the United States to pay for his crimes and also cooperates with any ongoing investigations into the Pan Am bombing or other terror attacks against Americans by Qaddafi.”\n \n“It is gratifying, however, to see that the Cameron government now acknowledges that the medical diagnosis that formed the basis for Mr. al-Megrahi’s release was ‘pretty much worthless’ and that pressure from the UK government on the Scottish government was a factor in the convicted terrorist being let go,” Menendez continued.  \n \nUntil now, the UK government has refused to acknowledge their role in pressuring the Scottish government to release Megrahi.  British, Scottish and BP officials had refused to participate in a hearing the Senator chaired on the subject in July 2010.\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c00b0a55-4a68-4627-836e-86efa272839a,\"Menendez Urges Timely Review of AT&T and T-mobile Merger\n                    \n                      July 27, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today released the following statement calling for a careful and expeditious review by the Department of Justice Anti-Trust Division and the Federal Communications Commission to ensure the merger is in the public interest.\n \n“I urge a careful and timely review of the AT&T and T-mobile USA transaction by the Department of Justice Anti-trust Division and the Federal Communications Commission. This review should ensure that the proposed merger is in the public interest and fulfills the objectives proposed by both parties, including union representation of non-management employees and increased services and broadband coverage for American families, businesses, and government institutions. I believe this review is critical to determine both the economic impact and the potential benefits of this transaction to consumers, workers and retirees.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bb3de823-9cf0-4ac6-bd2a-060a18e3ae9f,\"Menendez Questions BP's Need for Subsidies Following $5.6 Billion Quarter\n                    \n                            Big Oil Tax Subsidies Should be Part of Balanced and Fair Approach to Reducing the Deficit\n                    \n                      July 26, 2011\n                     WASHINGTON - With today's news that BP reported $5.6 billion in profits in the second quarter today, US Senator Robert Menendez (D-NJ) author of the “Close Big Oil Tax Loopholes Act” and leader of efforts to ensure ending oil tax subsidies is part of any debt deal, released the following statement: The “Close Big Oil Tax Loopholes Act”, was supported by a bipartisan majority of Senators last month, but faces Republican leaders opposition to be part of the debt negotiations.\n\"\"BP's 'disappointing' quarter of only $5.6 billion in profits shows just how absurd their taxpayer subsidies are. Without them BP would have had to scrape by with just $5.5 billion in profits this quarter. Why some in Congress think BP deserves these extra profits but seniors do not deserve Medicare is beyond me. As the President said last night, we need a balanced approach to reducing the deficit.\"\" \n The estimate of $5.5 billion in profits without subsidies, or $100 million less than the profits with subsidies, derives from the Senate Joint Committee on Taxation (JCT) analysis of the cost of these subsidies to taxpayers.  The JCT estimates that the Big 5 oil companies combined would make an additional $21 billion in profits over the next ten years, or $2.1 billion per year, if the subsidies stay in place. The Big 5 oil companies have refused to state how much they receive in tax subsidies when asked in Congressional hearings.  The estimate follows from assuming that each of the Big 5 oil companies makes about $420 million per year, or $105 million per quarter, in additional profits owing to taxpayer funded subsidies to the enormously profitable industry.\n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=76ee0661-4f0c-47b0-b796-5899a8aa4af5,\"Menendez, Lautenberg Send Letter to Senate GOP Leader, Demand Action from Republicans to Let Hundreds of New Jerseyans Get Back to Work \n                    \n                            Nearly 650 New Jersey Workers Furloughed Over the Weekend\n                    \n                      July 25, 2011\n                     WASHINGTON, D.C. – Today, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) sent a letter to Senate Minority Leader Mitch McConnell (R-KY) urging him to work quickly with members of the Republican conference to get the Federal Aviation Administration back up and running.  Due to the refusal of Republicans in both the House and Senate to pass an extension measure without controversial and divisive policy provisions, the FAA began a shutdown last Friday at midnight.  As a result, hundreds of workers at the FAA Technical Center near Atlantic City were furloughed Saturday morning.\n \n\"\"In New Jersey, the FAA shutdown has furloughed approximately 650 workers at the FAA William J. Hughes Technical Center near Atlantic City. These dedicated men and women are working to develop the Next Generation Air Transportation System and modernize our air traffic control system.  Unfortunately, these employees have been sent home and their critical safety work has ground to a halt,\"\" the Senators wrote.  \"\"We urge you and your conference to join Democrats to pass a clean extension of the FAA.\"\"\nToday’s letter is copied below. \nJuly 25, 2011\nThe Honorable Mitch McConnell  Minority Leader United States Senate S-230, The Capitol Washington, DC 20510\n \nDear Senator McConnell: \n \nWe write to urge you to work with your Republican conference to pass a clean extension of the Federal Aviation Administration (FAA) authorization.  This legislation is essential to our nation and New Jersey.\n \nAs you know, Congress has passed 19 clean FAA extensions over the past four years, as well as one extension with bipartisan and unanimously supported aviation safety provisions.  Clean extensions are merely a continuation of current funding and policy; they help to maintain critical programs while legislation is negotiated.  The House of Representatives recently passed H.R. 2553, which contains a controversial and divisive policy provision that impacts air service to several states. This policy provision is part of the ongoing negotiations between the House and the Senate.  Controversial policy provisions like this should not be in the extension.  Senate Democrats have advanced a clean extension without policy riders in order to continue the FAA’s important work, while negotiations of the FAA reauthorization are finalized.  However, Senate Republicanshave objected to passage of this critical extension.  As a result, the FAA authorization expired at midnight on Friday, July 22, 2011.\n \nIn New Jersey, the FAA shutdown has furloughed approximately 650 workers at the FAA William J. Hughes Technical Center near Atlantic City.  These dedicated men and women are working to develop the Next Generation Air Transportation System and modernize our air traffic control system.  Unfortunately, these employees have been sent home and their critical safety work has ground to a halt.   The shutdown also impacts the ability of our state to move forward with important safety and capacity airport improvement projects.  \n \nWe urge you and your conference to join Democrats to pass a clean extension of the FAA.  We appreciate your attention to this critical issue.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ec4ca81a-13c1-4f57-90b6-76860bb54425,\"Making Children a Federal Budget Priority: Menendez Re-Introduces Bill to Require Budget to Detail Children's Programs\n                    \n                            Menendez bill would instruct the President to submit a Children's Budget to Congress\n                    \n                      July 21, 2011\n                     WASHINGTON - Today, Senator Robert Menendez (D-NJ) re-introduced legislation that would require each President, when he or she submits an annual budget proposal, to specifically lay out how it allocates funds for children's programs. The \"\"Children's Budget\"\" would gather all the diverse sources of federal funding for children's programs into one document to communicate a comprehensive and clear picture.\n \n\"\"Especially at a time when money is tight, it is important to remember that our children should always be a main focus,\"\" said Senator Menendez. \"\"If we ensure that our federal resources are directed to benefit our children, then as a nation we are putting a down payment on our future prosperity and security.\"\"\n \n\"\"Once again, Senator Menendez has taken a leading role in ensuring our children are a national priority. His ‘Children's Budget Act’ is a simple, inexpensive action that will bring awareness to the federal investment in children,\"\" said Bruce Lesley, President of First Focus, a national, bipartisan children’s advocacy organization. \"\"Meeting children’s needs requires that we take stock in our efforts. It is critical that Members of Congress and the public are given a clear picture, because doing better for our children tomorrow starts with knowing how they are doing today.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bf022826-880a-409b-9457-d7d744553c68,\"Menendez, Lautenberg Announce Senate Approval of $49 Million For New Jersey National Guard Facilities\n                    \n                      July 21, 2011\n                     WASHINGTON – Yesterday, the United States Senate passed the Military Construction, Veteran Affairs and Related Agencies Appropriations bill by a vote of 97 to 2.   Included in the legislation is $49 million for the construction of an Army Aviation Support Facility for the New Jersey  Army National Guard.  \n \nThe funding will be used to construct a state-of-the-art Army Aviation Support Facility in order to maintain aviation equipment so the New Jersey Army Guard can reliably and quickly deploy.  The current Army Aviation Support Facilities at Mercer Airport and Picatinny Arsenal  will be closed because they were constructed to support different aircraft and can no longer support today’s airframes.   The new facility will be located at Lakehurst Naval Air Station within the Joint Base McGuire-Dix-Lakehurst and provide a centralized location for crews to train.  The Military Construction, Veteran Affairs and Related Agencies Appropriations legislation will be reconciled with the House of Representatives’ version of the bill before final passage. \n \n“Our citizen soldiers serve with honor and distinction and respond at a moment’s notice whether they are mobilized during a state emergency or deployed to Afghanistan,“  said Menendez.   “This funding will help us ensure that our New Jersey Army National Guard is well-prepared and well-equipped to carry out its critical mission to serve and protect our state and nation.”  \n \n“We count on our National Guardsmen in the most critical situations and it’s our duty to ensure they have the resources they need to do their jobs,” said Senator Lautenberg, a member of the Senate Appropriations Committee. “These funds are an investment in New Jersey’s military infrastructure and an investment in our homeland security.  I will continue to fight for funding that better prepares our New Jersey Guard members and makes our country safer.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c2b43172-98dc-4e96-ac52-a26ab3e7dd11,\"Menendez Hails Dodd-Frank Financial Reform on its One-Year Anniversary \n                    \n                      July 21, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Senate Banking Committee, had words of praise today for the Dodd-Frank financial reform law on its first anniversary. He released the following statement:\n \n“One year later it is important to remember why we enacted Wall Street reform in the first place.  We enacted it because a lack of rules and oversight led to Wall Street taking most of the world from a time of prosperity to the brink of another Great Depression.  Only now are we rebuilding the kind of financial system that made our banking sector the envy of the world for decades,” said Menendez. “I stood with Main Street one year ago and I am proud to do so today.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b76f5cc1-2d6c-4e2a-920b-080d1f759198,\"Menendez Shares Information for Staying Cool and Safe During Heat Wave\n                    \n                      July 21, 2011\n                     WASHINGTON, D.C. –  Senator Robert Menendez today urged New Jerseyans to protect themselves, their families, and their neighbors from the heat wave currently gripping the state. \n“With temperatures still climbing and the heat index already well over 100 degrees, it is imperative that New Jerseyans look out for children and the elderly who are most susceptible to the dangers of excessive heat.  Today 100, tomorrow 104, and over 100 again on Saturday; the next few days are a good time to drink plenty of water, find an air-conditioned place to stay cool, and regularly check on children and elderly neighbors to make sure that they are okay,” said Senator Menendez.\nBelow is a list of tips for protecting yourself, family, and neighbors from the heat, along with a list of cooling centers and places to get more information about how to keep safe as the temperature rises.\n \nTIPS FOR STAYING COOL AND PREVENTING HEAT-RELATED ILLNESS\n \nAccording to the Centers for Disease Control and Prevention’s webpage on extreme heat there are several things you can do to prevent heat-related illness:\n \nDrink extra fluids, regardless of your activity level, and make sure to drink before you are thirsty (consult your doctor if she/he usually limits how much fluid you drink or has you on water pills)  \nDo not drink liquids that contain alcohol or large amounts of sugar because they cause you to lose more body fluid, and be careful with very cold drinks because they can cause stomach cramps\nStay indoors and, if at all possible, in an air conditioned place; if your home does not have air conditioning, spend at least a few hours at a shopping mall or public library to bring down your body temperature (also see the information below about finding a local cooling center)\nElectric fans may make you feel more comfortable, but when the temperature is in the high 90s, fans cannot prevent heat-related illness; instead try taking a cool shower or bath and spending time in an air-conditioned place\nWear lightweight, light-colored, loose-fitting clothing\nNever leave anyone, or your family pet, in a closed, parked vehicle\nBe especially careful to regularly check on infants and young children, people aged 65 and older, people who have a mental illness, and those who are physically ill—especially with heart disease or high blood pressure; visit adults twice a day and monitor infants and young children much more frequently; signs of heat stroke include extremely high body temperature, red, hot, and dry skin, rapid and strong pulse, throbbing headaches, dizziness, and nausea\nIf you must be outside, try to limit your activity to morning and evening hours\nCut down on outdoor exercise, but if you must exercise, drink two to four glasses of cool nonalcoholic fluids each hour\nTry to rest often in shady areas\nProtect yourself from the sun by wearing a wide-brimmed hat and sunglasses and by putting on sunscreen SPF 15 or higher that includes “broad spectrum” or “UVA/UVB protection” on the label\n \nHOW TO FIND COOLING CENTERS IN NEW JERSEY AND GET MORE INFORMATION\n \nNews 12 New Jersey has put together a current list of cooling centers around the state that will continue to be updated as additions are made\nHere you can find information about cooling centers in the counties of Atlantic, Camden, Gloucester, Burlington, Cape May, and Cumberland\nNew Jerseyans can also contact their local and/or county offices of emergency management to find open cooling centers \nYou can also call (toll-free) 1-877-222-3737 and be connected to their county’s Office on Aging\nDialing 211 will connect you to a toll-free helpline that will provide information about heat safety resources\nFor additional information about the risks of heat, please visit NOAA’s information webpage\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9a51ae55-19ba-4b17-a098-7a102e8e1971,\"Menendez Praises Bloomberg for $50 Million Dollar Donation to the Sierra Club’s Beyond Coal Campaign\n                    \n                      July 21, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) praised New York City Mayor Michael Bloomberg today after the Mayor’s philanthropic organization announced a $50 million commitment over four years to the Sierra Club’s Beyond Coal Campaign.\n“When it comes to coal plants, their toxic emissions, and their carbon pollution driving global climate change, Mayor Bloomberg gets it,” said Menendez.  “It is wonderful that he has the wherewithal and the wisdom to help Sierra Club combat climate change and clean up the air that New Jerseyans and New Yorkers breathe.”\nPrimarily because of dirty, old, out-of-state coal plants, every county in New Jersey is non-compliant with the Clean Air Act’s air quality standards for soot and smog. For example, the aging Portland Generating Station, located in Pennsylvania just across the Delaware River from Warren County, NJ,  emitted 30,000 tons of sulfur dioxide in 2009, almost three times the amount of sulfur dioxide emitted in 2009 by all seven of New Jersey's coal plants combined.  Such pollution from out of state coal plants prematurely ends the life of over 500 New Jerseyans every year.\nMayor Bloomberg’s commitment to helping end such pollution comes at a time when Republicans in Congress are united in their attacks on the Clean Air Act.  \nThe aims of the Beyond Coal Campaign are to stop the short-sighted construction of new coal plants that will increase air pollution, retire old coal plants which for decades have emitted massive amounts of sickening air pollution, and  work with communities to protect against devastating coal mining that levels entire mountains and destroys entire watersheds.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=17269783-8918-46de-b2d0-7e9e08466262,\"Menendez, Lautenberg: Proposal to Allow Coastal Oil Drilling in VA Waters in 6 months is Dangerous and Tramples Neighboring State’s Rights\n                    \n                            Amendment in Senate Energy Committee Mark Up is a Land Grab by Virginia and a Circumvention of the Offshore Drilling Process\n                    \n                      July 21, 2011\n                     WASHINGTON – New Jersey Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) released statements this morning condemning an amendment expected to be offered by Senator Barrasso (R-WY) at a Senate Energy Committee markup today that will allow coastal oil drilling in Virginia next year.  The amendment would also redraw the map used by federal authorities for resource planning to provide Virginia more rights to oil resources and offshore wind development rights.\nThe amendment based on the Virginia Outer Continental Shelf Energy Production Act would allow oil drilling off the Virginia coast, less than 100 miles from Cape May, a major tourist attraction and source of income for New Jersey.\n“This is an unprecedented attempt by Virginia to grab resources from neighboring states and circumvent federal offshore resource planning.  I will not allow any state to run roughshod over the process and put New Jersey in harm’s way.  Drilling off the coast of Virginia would put New Jersey and its coastal economy at risk for an oil spill.  Cape May is less than 100 miles from Virginia waters and oil slicks do not stop at state borders.  The Gulf spill and the current spills on the Yellowstone River and off the coast of China show that oil drilling always has risk,” said Senator Menendez.\n“If an accident like the BP oil spill in the Gulf happened off Virginia’s coast, New Jersey’s multi-billion dollar coastal economy would be one of the first casualties,” said Senator Lautenberg.  “The costs of an oil spill to our economy, environment and health are too high.  Offshore drilling isn’t the solution to our energy problems, and I will fight initiatives like this and continue to push for 21st century clean energy solutions.”\nThe proposal would allow drilling as soon as next year in what is called Lease Sale 220, less than 100 miles from New Jersey and even closer to Maryland and Delaware.  In addition, the proposal redraws carefully planned boundaries between states’ coastal waters and instead replaces them with boundaries based on arbitrary coastline figures from a 1975 NOAA brochure.  It is a clear attempt by Virginia to gain offshore resources at the expense of Delaware, North Carolina, and Maryland. \nEarlier this year, Senators Menendez (D-NJ) and Lautenberg (D-NJ) reintroduced the Clean Ocean and Safe Tourism (COAST) Act to ban drilling off the Atlantic Coast from North Carolina to Maine.\nOn background:\nAccording to a New Jersey Department of Tourism study,      approximately 60 percent of New Jersey’s $35.5 billion tourism industry      comes from the Jersey Shore and the state also has a multi-billion dollar      fishing industry.[VisitNJ.org: http://www.visitnj.org/sites/visitnj.org/files/2010-tourism-ecom-impact-prelim-3-23-2011-2.pdf]\nThe Department      of Defense has stated that 80% of the proposed lease sale off the coast of      Virginia would interfere with the Navy’s Virginia Capes Operating Area, a      critical military training and testing area. [DOD:      Report on the compatibility of Department of Defense (DoD) activities with      oil and gas resource development on the Outer Continental Shelf (OCS)]\nThe Energy Information Administration has estimated      that opening all offshore areas in the continental United States to drilling      would reduce gas prices by 3 cents starting in 2030. [EIA,      Impacts of Increased Access to Oil and Natural Gas Resources in the Lower      48 Federal Outer Continental Shelf] \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=99194f7d-25bb-40a5-8a68-622ecbef773e,\"Menendez Submits Statement for Congressional Record on Anniversary of Cyprus Invasion\n                    \n                            Thirty-Seven Years of Illegal Occupation\n                    \n                      July 20, 2011\n                     WASHINGTON – Sen. Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee submitted an official statement for the Congressional Record today commemorating the 37th Anniversary of the Turkish invasion and occupation of Cyprus on July 20, 1974. Throughout his career, Senator Menendez has demanded the withdrawal of Turkish occupation troops from the island and supported a final resolution for Cyprus that adequately addresses all issues, including the issues of property, territory and security.\n \nThe following is the text of the statement:\n \nMr. President, on July 20, 1974, Turkey invaded Cyprus. Thirty-seven years later, Turkish troops continue to occupy 37 percent of the island. The invasion and occupation resulted in the deaths of more than 5,000 Cypriots and made some 200,000 Cypriots refugees in their own land.\nSince 1974, more than 75 resolutions have been adopted by the U.N. Security Council and more than 13 by the U.N. General Assembly, calling for the return of the refugees to their homes and properties and for the withdrawal of the Turkish troops from Cyprus. In addition to these Resolutions, the European Court of Human Rights has in various judgments held Turkey responsible for the violation of the basic human rights and fundamental freedoms of Greek Cypriots, such as the right to life, the right to liberty and security, the right to respect for family life, the right to the protection of property and the prohibition of inhuman or degrading treatment.\nBuilding on past meetings in November 2010 and January 2011, President Christofias again this month met with Turkish Cypriot leader Mr. Eroglu in the presence of UN Secretary General Ban Ki Moon in Geneva, where they agreed to intensify discussions on the difficult “core issues” of the negotiations, including the sharing of power and authority between the two communities of Cyprus, territorial adjustments, property issues, and the issue of the withdrawal of foreign troops and security guarantees. The Cypriot government is working in good faith to achieve a viable agreement and I remain supportive of the Cypriot government’s insistence that this process remain a Cypriot-led process, with any solution agreed upon by the Cypriots and for the Cypriots, without any external arbitration or timeframes, while recognizing that a solution cannot be reached without the full and constructive cooperation of Turkey.   \nAs Cypriot-Americans join with Cypriots from throughout the world in this effort to unify their homeland, and as they seek to secure an economically prosperous state free of illegal occupation, I will stand by them. I will work to ensure that the Turkish occupation comes to an end.\nThis week, we remember those who perished in the invasion of Cyprus, and honor those who survived and who continue to live under Turkish occupation. We have not forgotten and our thoughts and prayers are with them and their families.\nRemembering together the events of July 20, 1974 in solidarity gives reverence to historical events we cannot afford to forget as we move forward to a peaceful, just solution and a hopeful tomorrow.\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bd96b449-4639-4903-8f47-fd89bcfffa88,\"Sen. Menendez and Colleagues Urge Transparency in Foreclosure Practices\n                    \n                      July 20, 2011\n                     WASHINGTON – In the wake of recent allegations that illegal foreclosure “robosigning” by banks is still rampant, U.S Senator Robert Menendez (D-NJ), Chairman of the Senate Subcommittee on Housing, Transportation, and Community Development, and nine additional Senators sent a letter today to the Office of the Comptroller of the Currency, the Federal Reserve, and the Federal Deposit Insurance Corporation urging the agencies to publicly release information regarding each mortgage servicer’s performance to prevent illegal foreclosure practices.  An identical letter was sent by Rep. Maxine Waters (D-CA), Ranking Member of the Subcommittee on Capital Markets and Government Sponsored Enterprises and other House members. \n“We believe it is essential that the items listed above be made available to the general public or the public will lack confidence in both the foreclosure review process and results,” wrote Menendez and other Senators.  “This is particularly the case because the foreclosure reviews are being performed by consultants who are chosen by the mortgage servicers themselves, and those consultants often have conflicts of interest in that they are not prohibited from getting future business from those same mortgage servicers.”\nEnforcement actions were initiated by federal regulators because of the “robo-signing” scandal from last year that revealed many servicers were wrongfully foreclosing on homeowners and not following existing foreclosure procedures and laws.  Robo-signing is when banks falsely swear that they have reviewed property documents that are necessary to foreclose on a homeowner’s house.  Recently both the Associated Press and Reuters reported that despite regulators’ assurances to the contrary, illegal robo-signing allegedly remains rampant in both foreclosure and non-foreclosure cases.\nThe request for disclosures is also based upon concern over the fact the consultants performing foreclosure reviews have conflicts of interest since they are chosen by the mortgage servicers they are hired to investigate and have done past or future business with those same mortgage servicers.  The Senators are requesting public release of Engagement Letters, Action Plans, Foreclosure Reviews, and other plans, policies, or processes submitted by mortgage servicers or third-party servicers to ensure that abuses in foreclosure practices are not being ignored by the review process.\nThe letter, which is below and attached, is signed by Senators Blumenthal, Franken, Akaka, Begich, Sanders, Cantwell, Tester, Rockefeller and Sherrod Brown.  All three regulators to whom the letter is addressed will appear before the Senate Banking Committee for hearing at 10 a.m. tomorrow on the one-year anniversary of the enactment of the Dodd-Frank Wall Street Reform and Consumer Protection Act. \n...\n \nMr. John Walsh                                                           The Honorable Ben S. BernankeActing Comptroller of the Currency                           ChairmanOffice of the Comptroller of the Currency                 Board of Governors of the Federal Reserve System Independence Square                                                 \n250 E Street SW                                                         20th Street and Constitution Avenue NW Washington, DC 20219-0001                                     Washington, D.C. 20551\n \nMr. Martin Gruenberg\nActing Chairman\nFederal Deposit Insurance Corporation\nWashington, D.C. 20429 \n \nDear Acting Comptroller Walsh, Chairman Bernanke, and Acting Chairman Gruenberg:\n \nWe write today to urge you to make public critical information related to enforcement actions taken against mortgage servicers regarding their improper foreclosure practices.  This is especially important given this week’s allegations that mortgage servicers continue to engage in widespread “robo-signing” despite your assurances that these illegal actions would not continue.  Specifically, we request that you make public the following items related to the April 12, 2011 Consent Orders issued by your offices:\n \nAll “Engagement Letters” governing the  mortgage servicers’ contracts with the consultants hired by the servicer to review that servicer’s foreclosure actions;\nAll “Action Plans” that mortgage servicers and third-party servicer providers are required to provide to regulators and that will outline the financial resources, organizational changes, measurement systems, governance controls, and timelines that will be adopted to correct improper foreclosure practices; \nAll “Foreclosure Reviews” completed by consultants for each bank, which will outline the results of their investigations into whether ownership of promissory notes or mortgages were properly documented, whether foreclosures were undertaken in accordance with state and federal law, whether calculations under the Home Affordable Modification Program and proprietary loan modification programs were done correctly, whether borrowers were charged excessive or improper fees and penalties related to delinquency, and whether any errors identified caused financial injury to borrowers, among other items;\nAny other plans, policies, or processes submitted to your offices by mortgage servicers or third-party servicer providers pursuant to the April 12, 2011 Consent Orders whose disclosure is important to instill public confidence in the process and results of the foreclosure reviews.  \n \nWe believe it is essential that the items listed above be made available to the general public or the public will lack confidence in both the foreclosure review process and results.  This is particularly the case because the foreclosure reviews are being performed by consultants who are chosen by the mortgage servicers themselves, and those consultants often have conflicts of interest in that they are not prohibited from getting future business from those same mortgage servicers.   The information we are requesting is therefore necessary for the public to determine the independence of the consultants being engaged to perform the foreclosure reviews, the accuracy of the foreclosure reviews, the adequacy of the “Action Plans” in responding to your findings, whether servicer performance meets the goals they have established, and whether those homeowners who experienced harm (such as being improperly foreclosed upon or denied mortgage modifications when they should have been granted under existing criteria) are given appropriate remedies.  Based on a legal analysis by the non-partisan Congressional Research Service, we also believe that it is well within your regulatory discretion under existing laws to disclose this information in the public interest.  This is consistent with your previous determination in April that release of the Interagency Review of Foreclosure Policies and Practices, which was essentially an examination report of foreclosure practices, was also in the public interest.  We understand concerns about not revealing mortgage servicers’ proprietary information, but also believe that some disclosure can be done on a bank by bank basis without compromising proprietary information.\n \n      Furthermore, we believe that the full disclosure of these documents to the public is necessary given the recent reports by both the Associated Press and Reuters of the continued widespread practice of “robo-signing” among mortgage servicers.  Both have alleged that servicers continue to file thousands of property documents that appear to be fabricated.[1]  Reuters also quoted a top representative from the mortgage servicing industry saying that the Consent Orders have “not put a stop to questionable practices.”  David Stevens, president of the Mortgage Bankers Association, tellingly said that some loan servicers “continue to cut corners” and “the real question is whether the servicer complied with all legal requirements.”[2]\nWe respectfully request that all documents be made public and sent to Congress within one week of your office receiving them from mortgage servicers or third-party servicer providers.  If you have any questions about this request, please contact Amanda Fischer at (202) 225-2201 or Michael Passante at (202) 224-4744.  We appreciate your swift attention to this important matter.\nSincerely,\nSenators Menendez, Blumenthal, Franken, Akaka, Begich, Sanders, Cantwell, Tester, Rockefeller and Sherrod Brown\n \n[1] http://www.google.com/hostednews/ap/article/ALeqM5jI_EF7qz7vNyWCmFzMtkz_Sd4Kzw?docId=43fce0b102784f29b024eec0696d3b4d\n[2] http://www.sun-sentinel.com/business/sns-rt-us-foreclosure-bankstre76h5xx-20110718,0,6208723,full.story\n\n[1] http://www.google.com/hostednews/ap/article/ALeqM5jI_EF7qz7vNyWCmFzMtkz_Sd4Kzw?docId=43fce0b102784f29b024eec0696d3b4d\n[2] http://www.sun-sentinel.com/business/sns-rt-us-foreclosure-bankstre76h5xx-20110718,0,6208723,full.story\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a1727928-97a3-466c-bffc-66abb91bdcc7,\"Menendez, Grassley Introduce Bipartisan Measure To Strengthen Child Support Enforcement\n                    \n                      July 19, 2011\n                     WASHINGTON, D.C. –  Senators Robert Menendez (D-NJ) and Chuck Grassley (R-IA) introduced the “Strengthen and Vitalize Enforcement of Child Support (SAVE Child Support) Act.”  This legislation will give states the tools they need to collect child support from parents who do not pay their support orders. \n“It is essential that children’s basic needs are met, and our bill helps ensure that all parents fulfill their responsibility in providing for them,” Menendez said.  “The bill streamlines child support enforcement by supplying states with new tools for interstate child support orders.  With these improvements in place, dead-beat parents will not be able to hide from their obligations to their children.”\nGrassley said, “Ineffective enforcement of child support orders is a serious problem that threatens children’s well-being. Oftentimes a child support payment can help keep a struggling family out of poverty and off of welfare.  The purpose of this legislation is to improve child support collections while also focusing on the fact that noncustodial parents should have regular opportunities to see their children.”\nUnder the senators’ proposed legislation, each state would use a child support lien registry so that liens placed against property because of overdue child support can be easily found.  Additionally, the bill makes it easier for states to intercept payments made to individuals in order to satisfy child support orders by requiring automated data matches with state child support agencies.  The bill strengthens the procedures by which certain licenses, permits, and passports can be revoked by requiring greater coordination between child support agencies and license-issuing agencies, as well as requiring a passport to be restored only after complete repayment of arrears.  The bill also encourages state child support agencies to coordinate with state correction agencies to assist individuals with a support order to manage and fulfill their support obligations. \nAccording to the Health and Human Services Office of Child Support Enforcement FY 2010 Preliminary Report, over 11.3 million cases had child support arrears due in FY 2010. The total amount of child support due for FY 2010 was over $32 billion and 62 percent of that amount was collected and distributed. The total amount of child support due for all previous fiscal years was over $110 billion and only $7 billion of these arrearages were collected and distributed in FY 2010, a decrease of 0.5 percent in comparison with FY 2009.\n \nThe SAVE Child Support Act will give states the tools they need to effectively collect child support.\n \nThe bill:\nmakes enforcement of child support liens more effective by requiring states to access a centralized database to check for liens placed against real property;  \nclarifies state jurisdictional rules to facilitate the collection of outstanding child support orders, expedites procedures for redirecting child support payments if the child has relocated, and streamlines and improves the ability of the courts to enforce child support orders.\nincreases the efficacy of withholding mechanisms by strengthening existing passport denial procedures and expediting the process by which states can suspend driver and professional licenses for non-payment;\nencourages increased coordination between child support agencies and corrections facilities to manage child support orders; \nprotects the right of non-custodial parents to visit with their children by requiring states to report on plans to facilitate access to and visitation of children by their parents; and\nprotects vulnerable families from the deceptive and harassing practices of private child support collection agencies by extending federal debt protection laws to cover these companies.  \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2490d1a1-15ae-405a-8d3b-49468ceeadda,\"Menendez Receives All Rise Award for Work Supporting Drug Courts\n                    \n                      July 19, 2011\n                     WASHINGTON, D.C. – Senator Robert Menendez (D-NJ) received the All Rise Award today from the National Association of Drug Court Professionals for his continued work in support of Drug Courts at a rally at Upper Senate Park.\n“I am honored to receive the All Rise Award,” Menendez said.  “Drug Courts reduce crime, enhance rehabilitation, and keep families together. I look forward to the opportunity to continue working with the NADCP to strengthen the role of Drug Courts in America, and build a more efficient and effective criminal justice system.”\nDrug Courts place substance abuse offenders in a closely monitored treatment program as an alternative to prison time.  There are currently over 2,500 Drug Courts across the United States.  Placing offenders in a Drug Court involves fewer expenses than subjecting them to prison time, and produces lower rates of recidivism.  The National Association of Drug Court Professionals is a national non-profit founded in 1994 by individuals involved in the first twelve Drug Courts, devoted to expanding their role in the criminal justice system.  Senator Menendez has co-sponsored legislation advocating for the expansion and funding of Drug Courts throughout the country.\nThere were a number of celebrities headlining and lending their support to the NADCP, as well. In attendance were Trey Anastasio of the popular jam band Phish, Golden Globe and Emmy award winning actor Martin Sheen, and celebrated star of the NBC sitcom Friends, Matthew Perry.\nClick here to see a few photos from the event.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d5cbd7f9-3b00-4141-a1a5-29d43afadd05,\"Sen. Menendez Urges End to Republican Threat to Block Confirmation of Consumer Financial Protection Nominee\n                    \n                            Calls for Fair Debate on Richard Cordray, President’s Nominee to Lead Consumer Financial Protection Bureau\n                    \n                      July 18, 2011\n                     WASHINGTON – Senator Robert Menendez (D-NJ), Chairman of the Housing, Transportation, and Community Development Subcommittee of the Senate Banking Committee, today released the following statement on the nomination of Richard Cordray to be the first Director of the Consumer Financial Protection Bureau.\n“I congratulate Richard Cordray on his nomination to be the first Director of the Consumer Financial Protection Bureau, and I urge my Senate colleagues to give his nomination fair consideration.  I also thank Elizabeth Warren for her vision and work in setting up the CFPB the past year,” said Menendez.  “With this week’s one-year anniversary of the Dodd-Frank Wall Street Reform and Consumer Protection Act, the CFPB needs a Director to be an effective ‘cop on the beat’ to protect consumers from a Wall Street repeat that caused the financial crisis and loss of jobs.”  \nA vocal minority of Republican Senators have stated that they will oppose any nominee to lead the new agency unless Congress makes major changes to the CFPB’s structure and a significant weakening of its powers to protect consumers from big Wall Street banks. \nMenendez continued, “Senate Republicans should not stand in the way of a new nominee just because they don’t like the outcome of last year’s vote.  These unreasonable threats to block this nomination come from Republicans who have consistently stood with the Wall Street banks and their lobbyists in opposing financial protections for the American people.”\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a30431f3-6496-4845-af30-bbda33542263,\"Menendez Urges Action to Curb Toxic Pollution from Pennsylvania Coal Plant\n                    \n                      July 18, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) wrote a letter to U.S. Environmental Protection Agency Administrator Lisa Jackson today urging her to finalize and carry out, without delay, her agency’s recently proposed action to greatly reduce toxic emissions from the Portland Generating Station in Upper Mount Bethel Township, Pennsylvania.\nOn March 31 of this year, Administrator Jackson proposed to grant New Jersey’s September 2010 petition, under the Clean Air Act, to curb emissions from this plant.  But some are calling for the EPA to delay the proposed compliance schedule and to defer finalizing emission limits. \n“We must not allow polluters to set our priorities,” wrote Menendez.  “Doing so would risk not only our health and that of future generations, it would risk the promise of a green economy built on clean energy jobs, energy efficiency innovations, and reduced waste and pollution.”\nEPA’s proposal outlines a three year compliance schedule for the plant to reduce its pollution of New Jersey’s air by over 80%.   Every year over 500 New Jerseyans die prematurely because of air pollution from old, dirty, coal plants from states to New Jersey’s west.\n \n# # #\n \nJuly 18, 2011\n \nThe Honorable Lisa P. Jackson\nAdministrator U.S. Environmental Protection Agency Ariel Rios Building 1200 Pennsylvania Avenue, N.W. Washington, DC 20460-0001\n \nDear Ms. Jackson:\nI write to commend you on your recently proposed action, under the Clean Air Act, that would greatly improve air quality in New Jersey by requiring the Portland Generating Station in Upper Mount Bethel Township, PA, to install modern pollution control equipment. \nI understand that some are calling on you to delay the proposed compliance schedule for reducing toxic emissions from this plant and, on behalf of New Jerseyans downwind of this plant, I strongly urge you to not grant this delay.  As you know, New Jersey suffers 531 premature deaths, 445 hospital admissions and 987 heart attacks every year because of air pollution from neighboring states.  It is time this ended and I truly appreciate that you are acting to address this problem.\nYour action to stop the sickening pollution from the Portland Generating Station comes at a time when the Clean Air Act is under attack.  This particular case demonstrates how important the Clean Air Act is to New Jersey and illustrates how any attack on the Clean Air Act is an attack on New Jersey. \nFor over fifty years, toxic emissions from the Portland Generating Station have wafted across the Delaware River and filled New Jersey’s air with sickening pollutants.  This aging coal plant emitted 30,000 tons of sulfur dioxide in just 2009 alone, which is, astoundingly, almost three times the amount of sulfur dioxide emitted in 2009 by all seven of New Jersey's coal plants combined. \nSulfur Dioxide burns the respiratory tract and can have serious health consequences for children with asthma and for those elderly who suffer from pulmonary disease. Soot and smog from this plant likewise worsen respiratory diseases, and mercury emissions from coal fired plants are well known to impact early childhood development.\nI know that you have direct experience with how asthma affects the lives of children and families, and I commend you for your hard work to protect air quality on behalf of these families.  Your proposal to grant my state’s petition and require the use of modern pollution control equipment would, in just three years, reduce toxic emissions from the Portland Generating Station by over 80%. Such equipment is long overdue at this plant, and the sooner it is installed, the sooner New Jersey children can breathe easier. \nWe must not allow polluters to set our priorities.  Doing so would risk not only our health and that of future generations, it would risk the promise of a green economy built on clean energy jobs, energy efficiency innovations, and reduced waste and pollution. \n \nIt is time that we finally remedy the air pollution from the Portland Generating Station that impacts public health in New Jersey.  The delays currently being requested are unwarranted when weighed against these impacts, and certainly won’t be welcomed by those living downwind of the plant.\nThank you, again, for your dedication and hard work in protecting air quality in New Jersey and across the country.\n \nSincerely,\n \n \n_______________________ \n \nSenator Robert Menendez     \nU. S. Senate\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=db2589b4-58d3-4449-8702-4571c74f3b66,\"Sens. Menendez, Lautenberg to Gov. Christie: How Would GOP Proposal to Slash Transpo Funding Impact NJ?\n                    \n                      July 18, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) and U.S. Senator Frank R. Lautenberg (D-NJ), chairmen of two Senate subcommittees working on the reauthorization of the surface transportation bill, sent a letter today to New Jersey Governor Chris Christie requesting an assessment of the impacts that Surface Transportation bill proposals from the House of Representatives and the Senate would likely have on the state.\n“The House Republican proposal would cut federal funding to the state by $3 billion over the next 6 years and has been projected to cost the state 18,000 jobs in the first year.  How will this impact your 5-year transportation plan for the state?” the Senators asked in their letter.\nOn July 7, the House Transportation and Infrastructure Committee Chairman proposed a 6-year bill to reduce the federal transportation program by approximately one-third.  The Senate has suggested a two-year approach with level funding.  New Jersey’s transportation network is a keystone for statewide prosperity.\n \nFull text of the letter:\nJuly 18, 2011\n \n \nGovernor Chris Christie\nOffice of the Governor P.O. Box 001  Trenton, NJ 08625\n \nDear Governor Christie,\nAs Chairmen of two Senate subcommittees working on the reauthorization of the surface transportation bill, we request your assistance in assessing how the House and Senate proposals could impact the state.  Such an assessment would be useful in our efforts to reauthorize a bill that will encourage growth, get the economy back on track, and serve New Jersey’s transportation needs.\nThe House Republican proposal would cut federal funding to the state by $3 billion over the next 6 years and has been projected to cost the state 18,000 jobs in the first year. How will this impact your 5-year transportation plan for the state?  Can the state make up for this loss of funding without cutting transportation services?  A detailed impact assessment would be valuable to us and the entire Congressional delegation.\nThe Senate proposal is a 2-year bill at current levels of spending.  In order to achieve such a bill, at least $12 billion in offsets will need to be found.  Assuming acceptable funding offsets are identified, how might this approach affect the state’s planning for transportation spending over the next two years and for the duration of your transportation plan?  Again, an assessment of these impacts would be appreciated.\nAlthough we have taken different positions on a variety of issues, we all share a commitment to growing New Jersey businesses and enhancing the transportation system for all users.  In this regard, we likely agree that no other state and few countries can compete with New Jersey’s transportation network, and this network is a keystone for statewide prosperity.  It is New Jersey’s competitive advantage that we have the largest port on the East Coast, the best statewide public transportation system in the country, an excellent international airport, among the most robust passenger and freight rail systems in the nation, and several world-class interstate highways.\nIn the interest of maintaining or even strengthening our competitive edge and enhancing our high quality of life, it is imperative that we make well-considered decisions today that will impact the state for years to come.  In order to do this, we must develop and utilize the best information possible.\nIt is our sincere hope that we can work together to safeguard the public interest and maximize the value of each taxpayer dollar in the next Surface Transportation bill by ensuring a thorough evaluation of the impacts that House and Senate proposals could have on New Jersey.\nWe look forward to your prompt response to help in the development of this important reauthorization.\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=79bdd92a-9def-4f27-8484-7fe41aba10c8,\"Menendez Introduces Resolution Recognizing Persecuted Falun Gong\n                    \n                            Twelve Years since Chinese Communist Party’s Campaign of Repression Began\n                    \n                      July 14, 2011\n                     WASHINGTON – Sen. Menendez (D-NJ) and Sen. Coburn (R-OK) introduced a resolution yesterday condemning the Chinese Communist Party’s brutal repression and comprehensive campaign against Falun Gong, a Chinese spiritual discipline based on the principles of truthfulness, compassion, and forbearance.\nThe bipartisan resolution calls upon the Chinese Communist Party to immediately cease and desist from its campaign to persecute Falun Gong practitioners and promptly release all Falun Gong practitioners who have been confined, detained, or imprisoned in retaliation for pursuing their right to hold and exercise spiritual beliefs.\n“I find it deplorable that the government of the People’s Republic of China only protects citizens’ freedom of religion and spiritual practice if they submit to the authority of the Communist Party—and if they do not, as in the case of Falun Gong, orders an intensive and unforgiving campaign against them that includes abduction, detention and torture for refusing to recant their practice.” said Menendez\nS.Res.232 expresses solidarity with Falun Gong practitioners and their families for the lives, freedoms, and rights they lost for adhering to their beliefs and practices. It also expresses support for volunteers and participants of the Tuidang movement for their peaceful pursuit of a fair and open government, a free people, and a society rooted in the practice of virtue.\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a2b950de-c9e3-4f82-be66-e4df53be0e22,\"Sen. Menendez Applauds FBI Inquiry Into Alleged Illegal Wiretapping of 9/11 Victims and Their Families\n                    \n                      July 14, 2011\n                     WASHINGTON – U.S Senator Robert Menendez (D-NJ) today issued the following statement regarding the ongoing News International scandal:\n“I applaud Attorney General Holder for heeding my call to open an investigation into this matter.  If there is a chance that the victims of 9/11 and their families were victimized again by tabloids seeking to profit off their grief, we must bring those responsible to justice,” said Menendez.\nEarlier today Senator Menendez wrote a letter to Prime Minister David Cameron seeking his cooperation in sharing information on their investigation and yesterday the Senator wrote a letter to Attorney General Eric Holder asking for a US investigation into the matter.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=561d18a2-d735-4bbe-ae65-6f1dea0646d4,\"Sen. Menendez to PM Cameron: Share Information From News Int’l Investigation About American Victims\n                    \n                      July 14, 2011\n                     WASHINGTON – U.S Senator Robert Menendez (D-NJ) sent a letter today to British Prime Minister David Cameron asking that the British Government share any information about illegal phone tapping of American citizens it might acquire via its investigation of News International. He also praised the efforts of Scotland Yard in aggressively looking into the matter, an effort which reportedly includes a list of 3,870 names, 5,000 land-line phone numbers, and 4,000 cell phone numbers that may have been at risk.\n“It is imperative that the U.S. Government have the opportunity to access this information, along with all other relevant evidence to safeguard the rights, privacy, and safety of American citizens,” said Menendez. “Our two nations have a long and strong history of working together to solve common problems and achieve shared goals.  I am certain this spirit of cooperation will continue to benefit the citizens of our nations with respect to the News International scandal.”\nFull text of Letter:\n\nThe Honorable David Cameron\nPrime Minister\n10 Downing Street\nLondon\nSW1A 2AA\n \nDear Prime Minister Cameron:\n \nAs the British government investigates the allegations facing News International, we would appreciate it if you could share any information involving potential American victims of this shameful scheme with the U.S. Department of Justice.  I have also asked the U.S. Department of Justice (DOJ) to investigate any violations of U.S. law that may have occurred as a result of illegal phone tapping, and I believe that the joint cooperation of our governments will help to ensure that the perpetrators of these alleged crimes are brought to justice and that no further innocents are victimized. \nAs you know, News International is accused of hacking the phones of the victims of the July 7, 2005 London bombings.  In addition, the Daily Mirror has reported that journalists also sought to secure phone data of victims of the September 11, 2011 attacks in the United States through a private investigator.  It is horrifying to consider the possibility that the victims of the 9/11 tragedy would be victimized again by an international newspaper seeking to profit from information about their personal suffering.\nI was pleased to learn that Scotland Yard has mounted an aggressive investigation into these accusations, which reportedly includes a list of 3,870 names, 5,000 land-line phone numbers and 4,000 cell phone numbers that may have been hacked.  It is imperative that the U.S. Government have the opportunity to access any of this information relative to U.S. citizens, along with all other relevant evidence to safeguard the rights, privacy, and safety of American citizens.  In addition, America’s highly qualified law enforcement community will serve as a valuable partner in attaining our shared goal of justice.\nOur two nations have a long and strong history of working together to solve common problems and achieve shared goals.   I am certain this spirit of cooperation will continue to benefit the citizens of our respective countries with respect to the News International scandal.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8430b652-cb91-431e-8009-2eece20f294d,\"Menendez Introduces Shareholder Protection Act in Wake of Supreme Court’s Gutting of Campaign Finance Law\n                    \n                      July 13, 2011\n                     WASHINGTON – U.S Senator Robert Menendez (D-NJ) held a press conference today to introduce The Shareholder Protection Act, which requires a shareholder vote before corporate treasury funds are spent on political campaigns. The Supreme Court decision in Citizens United v. FEC declared corporations to be citizens, giving them the right to spend unlimited funds on elections and calling that spending an expression of their free speech rights. This legislation would give shareholders a say in that political spending. Original co-sponsors of the bill include Sens. Richard Blumenthal (D-CT), Frank R. Lautenberg (D-NJ), Sheldon Whitehouse (D-RI) and Sherrod Brown (D-OH).  Representative Michael Capuano (D-MA) is also introducing an identical bill in the House of Representatives today. \n“The Supreme Court made its decision, but Congress can and should take immediate steps to make sure that the new free speech rights created by this decision are extended to everyone,” said Menendez. “A corporation’s money really belongs to the shareholders, not the executives, and those shareholders deserve a voice if their money is going to be spent on politics.”\nThe Shareholder Protection Act empowers investors to authorize political expenditures on an annual basis.  The spending must receive a majority of votes representing all outstanding shares. Political activities covered under the bill include spending affected by the Citizens United decision such as electioneering communications and independent expenditures.\nThe Corporate Reform Coalition, an association that includes over 70 organizations including Citizen Works, Common Cause, Demos, Public Citizen and U.S. PIRG, strongly backs the passage of the bill. They point out that spending by outside groups funded largely by corporate interests on the 2010 elections was more than four times as high as in 2006, the last mid-term cycle, which significantly increases the time and resources candidates need to devote to fundraising.\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=353de53e-1876-4665-abda-2dc3b134d8a2,\"NJ Students to Gain Green Jobs Training \n                    \n                      July 13, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) announced today that the U.S. Environmental Protection Agency has awarded New Jersey a $300,000 grant for job training, as part of their Environmental Workforce Development and Job Training Program. \nWith this funding, the New Jersey Department of Environmental Protection plans to train 72 students in Camden, place all graduates in local jobs, and track graduates for one year.  \nBy completing coursework on diverse topics including solar panel installation, mold and mildew remediation, underground storage tank leaks, and solid waste management, these students will gain professional environmental certifications.  Camden County College will lead these courses and local organizations, including the Camden Redevelopment Agency and the Salvation Army, have committed to require the hiring of local certified environmental professionals in all their environmental work contracts.\n “This funding will make it possible for New Jersey students to gain marketable skills to help protect and improve our state’s environment,” said Menendez.  “Green industries are among the fastest growing in the nation, so it is great that students in Camden will have this opportunity to gain professional certification and get their foot in the door.”\nThe EPA’s job training program works to equip unemployed people all over the country with skills that can help them secure environmental jobs in areas like cleaning up toxic chemicals, advancing the country’s clean energy projects and overall support for other vast environmental initiatives. Twenty-one groups in 20 states are receiving funding for training. For more information on environmental workforce development and job training grants, check out http://www.epa.gov/brownfields/job.htm. \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=80049f34-2b93-4c67-8a50-43559a16755b,\"Menendez Calls for DOJ Investigation into Reports that Murdoch Tabloid May Have Hacked 9/11 Victims’ Phones\n                    \n                      July 13, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) sent a letter today to Attorney General Holder today encouraging him to thoroughly investigate accusations made by a British lawmaker that News International, a British subsidiary of Rupert Murdoch’s News Corporation, had hacked into the phones of 9/11 victims.\n“The U.S. government must ensure that victims in the United States have not been subjected to illegal and unconscionable actions by these newspapers seeking to exploit information about their personal tragedies for profit,” Senator Menendez wrote. \nMr. Murdoch’s newspapers have already been accused of numerous illegal activities including intercepting and deleting the phone messages of a young girl, Milly Dowler, who disappeared and was later found murdered. Former Prime Minister Gordon Brown has accused one newspaper of hiring criminals to gather personal information about his personal finances and his family.\nScotland Yard is currently engaged in an investigation which reportedly includes a list of 3,870 names, 5,000 land-line phone numbers and 4,000 cellphone numbers that may have been hacked.\n \n# # #\nJuly 13, 2011\n \nAttorney General Eric Holder\nDepartment of Justice\n950 Pennsylvania Avenue NW\nWashington, D.C. 20530-0001\n \nDear Attorney General Holder:\nI am deeply concerned about accusations that News International, a British subsidiary of Rupert Murdoch’s News Corporation, hacked into the phones of terrorist attack victims, possibly including 9/11 victims.\nAs you know, News International is accused of hacking the phones of the victims of the July 7, 2005 London bombings. The Daily Mirror newspaper has reported that journalists also sought to secure phone data concerning victims of the September 11, 2011 attacks in the United States through a private investigator.  It is horrifying to consider the possibility that the victims of the 9/11 tragedy would be victimized again by an international newspaper seeking information about their personal suffering.\nThe U.S. government must ensure that victims in the United States have not been subjected to illegal and unconscionable actions by these newspapers seeking to exploit information about their personal tragedies for profit. Newspapers have been accused of numerous lurid and illegal activities including even intercepting and deleting the phone messages of a young girl, Milly Dowler, who disappeared and was later found murdered in the U.K.  In addition, former Prime Minister Gordon Brown has stated that one of the newspapers in the group owned by Mr. Murdoch employed known criminals to gather personal information about his bank account, legal files and tax affairs. Mr. Brown’s family reports that they were victims of a private investigation that revealed private information about their son’s serious medical condition. \nGiven the large scope of Scotland Yard’s investigation which reportedly includes a list of 3,870 names, 5,000 land-line phone numbers and 4,000 cellphone numbers that may have been hacked, I believe it is imperative to investigate whether victims in the United States have been affected as well.  I ask that in particular that you investigate allegations that these tabloids may have hacked the phones of 9/11 victims. \nI look forward to your expeditious and thorough investigation into these accusations.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7a003d90-475f-4f39-b6dd-c0b9c1a63846,\"Senators Push for Resolution to Protect New Jersey Taxpayers from Tunnel Repayment\n                    \n                      July 7, 2011\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) sent a letter today to Transportation Secretary Ray LaHood and New Jersey Governor Chris Christie urging them to find a solution for the $271 million that is in dispute after the cancellation of the ARC Tunnel project.\n \n“As Senators who fought vigorously for the $3 billion in funding for this project, we remain disappointed that the state did not fulfill its commitments to complete a critical project to advance our region.  The ARC Tunnel would have created 6,000 annual construction jobs and 44,000 permanent jobs, eased traffic congestion, lowered pollution levels, and fortified the economic future of the region,” the senators wrote. “It is time for both sides to work together to negotiate a deal that protects the taxpayers of New Jersey,” the letter concluded.\n \n \nIn addition to the $271 million owed for the tunnel project, the state has incurred more than $1 million in attorney and lobbying fees.  The state also already owes nearly half a million dollars in interest and adding the cost of future interest and looming penalties, New Jersey taxpayers could face an additional $18 million in costs per year for the canceled ARC Tunnel project. \n \n \n \n \n \n \n \nJuly 7, 2011\n \nDear Secretary LaHood and Governor Christie,\n \n \nWe are writing to urge you to quickly come to a fair resolution over the disputed $271 million following the cancellation of the ARC Tunnel project.  Each day that passes costs the taxpayers of New Jersey more in interest, lobbying fees, and attorneys’ fees, and – if this dispute is not resolved very soon – the taxpayers will be faced with millions of dollars in penalties.\n \nAs Senators who fought vigorously for the $3 billion in funding for this project, we remain disappointed that the state did not fulfill its commitments to complete a critical project to advance our region.  The ARC Tunnel would have created 6,000 annual construction jobs and 44,000 permanent jobs, eased traffic congestion, lowered pollution levels, and fortified the economic future of the region.\n \nDespite our opposition to the cancellation of the project, we believe it is important not to punish the taxpayers of New Jersey and burden them with additional, unnecessary costs.  Currently, the federal government is demanding the repayment of $271 million for federal funds expended on the ARC tunnel.  In addition, the state incurred more than $1 million in attorney and lobbying fees.  On top of that, the state owes nearly half a million dollars in interest on the debt.  Annually, the cost of interest and penalties could cost New Jersey taxpayers up to an additional $18 million.\n \n \nLate last year, we worked with the Department of Transportation to lay the groundwork to ease the financial impact on the state.  In response to our efforts, Secretary LaHood agreed to allow nearly half of the $271 million to be used in New Jersey for other mass transit and emission reduction projects.  We believe this represents a good faith effort by the Secretary to work with the state, and could ultimately be part of a deal that will mitigate risk to New Jersey. \n \n \nIt is time for both sides to work together to negotiate a deal that protects the taxpayers of New Jersey.  Further delay is not an option.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=851deb9b-d376-4c19-9cbf-7533c26148e0,\"Menendez Slams House Transpo Bill\n                    \n                            Would Cost NJ Nearly 18,000 Jobs Within One Year\n                    \n                      July 7, 2011\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), chairman of the Banking subcommittee with jurisdiction over public transportation, today reacted to the release of the House Transportation and Infrastructure Committee’s draft bill that would cut transportation funding by 37 percent and in turn cut 632,000 jobs nationwide.  New Jersey alone would lose more than 17,900 jobs within one year, including over 6,000 transit-related jobs. \nThese figures account for direct jobs eliminated from constructing, operating, and maintaining government-sponsored projects as well as indirect jobs for suppliers who make the materials used in the projects.  The calculation does not reflect the total economic losses that will accumulate as commuters face delays caused by reduced transit service and businesses grapple with their diminishing ability to transport goods to store shelves in a reliable manner.  These costs will inevitably be passed on to taxpayers in the form of delays and congestion, safety concerns, and higher costs for consumer goods.\n “It is astounding that the Republicans claim to want to help the economy, but instead are cutting over 600,000 jobs, nearly 18,000 of which will be in New Jersey,” said Senator Menendez.  “It used to be that Republicans understood that transportation investment was necessary to spur economic growth and create jobs.  Now, I guess they think if we give the rich enough tax breaks they will get off the golf course, get in a bulldozer, and start building roads.”\nThe American Society for Civil Engineers (ASCE) has given American infrastructure a letter grade of “D” and advocated for trillions in investment to get America’s crumbling infrastructure into a state of good repair.  According to the ASCE, vehicle travel on New Jersey’s highways has increased 29% from 1990 to 2007.  In the state, 78% of our major roads are in poor or mediocre condition.  64% of New Jersey’s major urban highways are congested and New Jersey transportation systems have a deferred maintenance backlog of $13 billion.   Links to State-by-State Impacts to Transit and Highway Infrastructure Investment.\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c75ca061-50f7-4d5f-9196-e4c804c992b2,\"Menendez Calls for Thorough Federal Investigation into Camden Fires\n                    \n                      July 7, 2011\n                     CAMDEN, NJ – Amid recent reports of several suspicious fires breaking out in some of Camden’s industrial buildings, U.S. Sen. Robert Menendez (D-NJ) sent a letter last week to Kenneth Melson, the acting Director of the Bureau of Alcohol, Tobacco, Firearms, and Explosives, asking the federal agency to assist Camden law enforcement in bringing the perpetrators of the arson to justice.\n \n \nThe ATF has already determined that one of the fires was due to arson and is offering a $5,000 reward for any information that could lead to the arrest and conviction of anyone responsible for the fire.\n \n \n“With over 3,000 vacant buildings throughout Camden, it is essential that this issue continue to receive the attention it deserves.  I am very hopeful that ATF will see this investigation through to a conclusion and continue to work with the City Administration and the Camden Police Department to protect the City of Camden and its people by swiftly bringing the perpetrator of these acts to justice,” Menendez said. “I am very thankful for the heroic efforts of the Camden firefighters and other local fire departments who are battling these dangerous fires.”\n \n \n“I thank Senator Menendez for expressing his support to have ATF continue providing the City investigative assistance to determine the cause of the fires we have been experiencing,” Camden Mayor Dana Redd said.  “Our main concern is to keep our residents safe from other potential fires.”\n \nHe also thanked the ATF for taking the time to look into the fires and expressed hope for a quick resolution.\n \n \n \nThe full text of the letter is below.  \n \n \n \nJune 29, 2011\n \n \n \nKenneth E. Melson\n \nActing Director\n \nBureau of Alcohol, Tobacco, Firearms, and Explosives\n \n99 New York Avenue, NE\n \nWashington, DC 20226\n \n \n \nDear Director Melson,\n \nI am writing to express my deep concern about a series of fires that have occurred in Camden during the month of June. \n \nAs you know, three fires in abandoned industrial buildings have occurred in a span of fifteen days, all under suspicious circumstances which suggest arson as the likely cause.  Thankfully, despite the severity of these fires, no one has been physically harmed, to my knowledge.  However, in addition to the factories set ablaze, many nearby homes have been destroyed, and the brave firefighters of Camden have been forced to repeatedly put their lives at risk.  It is imperative that these heinous crimes be stopped before more property is damaged or harm befalls any of the citizens of Camden.\n \nI applaud the efforts of the Bureau of Alcohol, Tobacco, Firearms, and Explosives to resolve this issue with haste.  The ATF has declared the most recent fire as an act of arson, and I am grateful to see that it is bringing in national experts to investigate the fires and offering a reward for information leading to the capture of the individual responsible for these crimes.  I am also very thankful for the continued work of the Camden Fire Department and the Camden Police Department, which has increased patrols in response to the threat of future acts of arson.\n \nWith over 3,000 abandoned buildings throughout Camden, it is essential that this issue continue to receive the attention it deserves.  I am very hopeful that ATF will see this investigation through to a conclusion and continue to work with the Camden Police Department to protect the City of Camden and its people by swiftly bringing the perpetrator of these acts to justice.\n \nSincerely,\n \n \n \nROBERT MENENDEZ\n \nUnited States Senator\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=257553b6-cfb3-492b-9589-d4510dcb7743,\"Menendez: NJ Will Soon Be Able To Breathe Easier Thanks to New EPA Rule\n                    \n                      July 7, 2011\n                     WASHINGTON – The U.S. Environmental Protection Agency has unveiled new regulations regarding smog and soot as part of the new Clean Air Transport Rule. The overall goal is to reduce the amount of air pollution suffered by 31 eastern states by clamping down on power plants in upwind states.\nThe EPA has estimated that these new safeguards will cut sulfur dioxide emissions by 71 percent and nitrogen oxide emissions 52 percent by 2014. In doing so, each year 36,000 premature deaths and hundreds of thousands of illnesses will be prevented. \n“New Jersey can breathe easier knowing that the federal government is finally cracking down on out-of-state polluters,” said Menendez. “For too long New Jersey has had to accept poor air quality, and thousands of deaths and illnesses, because of pollution from old, dirty, inefficient coal power plants to our west. Hopefully this is the beginning of a healthier, cleaner New Jersey.”\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=aff6e6e5-d820-42bf-99f3-59ab37ee38d1,\"New Jersey Receives $358 Million for Individuals with Disabilities Education\n                    \n                      July 7, 2011\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced the U.S. Department of Education, Office of Special Education Programs has awarded New Jersey $358,289,441 in funds through the Individuals with Disabilities Education Act (IDEA) to assist the state and local entities in providing free public education to children with disabilities.\n“All children deserve access to a quality education that helps them flourish and thrive during the most important years of their development,” said Senator Menendez. “Families of children with disabilities, however, face harder logistical and financial obstacles to access the type of education and services they need particularly in these tough economic times. The funding announced today will facilitate and guarantee that every single child with disabilities in New Jersey has access to a quality special education regardless of economic circumstances.” \"\"Children are New Jersey's most important resource and investing in our state's public education system has to be a top priority, especially when it comes to programs for children with disabilities,\"\" Senator Lautenberg said. \"\"These families shouldn't have to struggle to make sure their children receive a first-rate education. This IDEA funding will help level the playing field for kids with disabilities in New Jersey.\"\"\nCreated in 1990, the Individuals with Disabilities Act is a law created to ensure all children with disabilities throughout the nation have access to the education services they need. IDEA Part B Guarantees children and youth (ages 3-21) have access to special education and related services. Part C provides infants, toddlers and their families with early intervention services. In 2009, President Barack Obama allocated more than $12.2 billion in additional funds through the American Recovery and Reinvestment Act of 2009.\nFor more information about the Individuals with Disabilities Act: http://idea.ed.gov/explore/home\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2a6394cf-6fc2-4d32-8932-831273805e73,\"Menendez, Lautenberg Denounce Bill to Allow Drilling in Virginia by 2012\n                    \n                            Approximately 60 percent of New Jersey’s $38 billion tourism industry come from the Jersey Shore\n                    \n                      July 6, 2011\n                     WASHINGTON – With news that legislation introduced today would allow drilling in Virginia by 2012, New Jersey Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) released the following statement in strong opposition of the proposal. The Virginia Outer Continental Shelf Energy Production Act would allow oil drilling off the Virginia coast, less than 100 miles from Cape May, a major tourist attraction and source of income for New Jersey.\n“Drilling off the coast of Virginia puts New Jersey in the crosshairs for an oil spill.  Cape May is less than 100 miles from Virginia waters and oil slicks do not respect state borders.  The Gulf spill and the current spills on the Yellowstone River and off the coast of China show that oil drilling always has risk.  New Jersey’s coastal economy is worth tens of billions of dollars, so this project is a direct threat to our economy.” Said Menendez.\n“If a spill like the Exxon Valdez or BP oil spill in the Gulf happened off Virginia’s coast, New Jersey’s multi-billion dollar coastal economy would be one of the first casualties,” said Lautenberg, who was the first senator on the scene of the Exxon Valdez oil spill in 1989.  “The costs of an oil spill to our economy, environment and health are too high.  Offshore drilling isn’t the solution to our energy problems, and I will fight this legislation and continue to push for 21st century clean energy solutions.” Earlier this year, Senator Menendez (D-NJ) and Lautenberg (D-NJ) reintroduced the Clean Ocean and Safe Tourism (COAST) Act to ban drilling off the Atlantic Coast from North Carolina to Maine.\n \nOn background:\nAccording to a New Jersey Department of Tourism study, approximately 60 percent of New Jersey’s $35.5 billion tourism industry comes from the Jersey Shore and the state also has a multi-billion dollar fishing industry.[VisitNJ.org: http://www.visitnj.org/sites/visitnj.org/files/2010-tourism-ecom-impact-prelim-3-23-2011-2.pdf]\nThe Department of Defense has      stated that 80% of the proposed lease sale off the coast of Virginia would      interfere with the Navy’s Virginia Capes Operating Area, a critical      military training and testing area. [DOD:      Report on the compatibility of Department of Defense (DoD) activities with      oil and gas resource development on the Outer Continental Shelf (OCS)]\nThe Energy Information      Administration has estimated that opening all our shores to drilling would      reduce gas prices by 3 cents starting in 2030. [EIA,      Impacts of Increased Access to Oil and Natural Gas Resources in the Lower      48 Federal Outer Continental Shelf] \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f4be3b4d-262c-41c9-8890-533cea60a93f,\"Menendez Fights Efforts to Repeal His Provision to Require Disclosure of CEO to Typical Worker Pay \n                    \n                            While incomes at the very top have skyrocketed during last decade, workers’ income has stagnated\n                    \n                      July 6, 2011\n                     WASHINGTON – After a House committee approved a bill last week to repeal the Menendez authored provision in the Wall Street Reform bill to require companies to disclose the ratio of their CEO’s pay to the pay of their typical worker, U.S. Senators Robert Menendez (D-NJ), Tom Harkin (D-IA), Sherrod Brown (D-OH), and Carl Levin (D-MI) sent a letter to the CEO of the leading opposition group urging them to reconsider their position. The corporate lobbying group Center on Executive Compensation has been lobbying to repeal the provision for about a year and is backed by 81 of the largest American companies including, among others:  Lowe’s, McDonald’s, General Dynamics, American Airlines, IBM and General Mills.\nIn the letter, the Senators emphasized the importance of pay ratio transparency to provide investors and policy makers with a better understanding of pay in America and address the pay and income disparity that has skyrocketed in recent decades. The letter was signed by Senator Robert Menendez (D-NJ), Senator Tom Harkin (D-IA), Senator Sherrod Brown (D-OH), and Senator Carl Levin (D-MI).\n“There can be no real recovery of our economy without the recovery of the middle class.  To rebuild the middle class, we need a better understanding of the factors that have contributed to the stagnation of the wages and incomes of American workers.  Accordingly, we urge you to reconsider your views on this provision and to stop shielding your member companies from revealing this basic information. Your opposition is a disservice to the American public and the shareholders of your member companies,” the Senators wrote.\nPDF of the Letter: http://menendez.senate.gov/download/?id=c374a0b8-8413-4bab-a4a7-dd54ce712aff\n \nText of letter:\nCharles G. Tharp Chief Executive Officer Center on Executive Compensation 1100 13th St NW, Suite 850 Washington, DC  20005\n \nDear Mr. Tharp:\n \nAs you are aware, Section 953(b) of the Dodd-Frank Wall Street Reform and Consumer Protection Act (Wall Street Reform Act) requires the disclosure by public companies of the ratio between the compensation of the Chief Executive Officer and the typical worker at that company.  We are troubled to hear that your organization opposes this common sense provision that will reveal information that could be embarrassing to your organization’s corporate members.\nWhile comprehensive data will not be available until this provision takes effect, there is no question that CEO pay is soaring compared to that of average workers.  In 1980, CEOs of large U.S. companies received an average of $624,996 in annual compensation, or 42 times the pay of typical factory workers.[1]  But by 2010, large company CEO pay had skyrocketed to $10.8 million,[2]  or 319 times the median worker’s pay.[3]  This troubling trend mirrors the increase in income and wealth inequality in America.  Income inequality in the United States is at levels not seen since before the Great Depression as a result of rising incomes in the top 1%.[4]  There is no doubt that most, if not all, of the CEOs your organization represents fall into that top 1%.\nWhile incomes at the very top have skyrocketed during those years, workers’ wages and incomes have largely stagnated.  In fact, over the last decade, median family income actually fell for the first time since the Great Depression.[5]  Along with a lack of wage and income growth, average hard-working Americans saw a major loss in their net wealth, particularly from the decline in home values.  When the housing bubble collapsed, these families were left unable to make ends meet.\nThe rapid rise in pay and wealth among the wealthiest Americans has a very real economic impact on working Americans.  Another way to view a $10 million bonus to a CEO – likely obtained through a rigged executive compensation system – is to think of how that same amount could instead be used to give 1,000 of his or her employees a raise of $10,000 each.\nIf we are to generate a long-lasting recovery, we need to ensure that hard-working middle class families are once again able to share in their company’s successes through rising wages and benefits, just like CEOs have done for decades.  Section 953(b) of the Wall Street Reform Act will help to further this important goal by increasing transparency, encouraging firms to take a harder look at the rising pay discrepancies between CEOs and their workers, and providing investors and policy makers with a better understanding of pay.\nThese pay disparities are of growing concern to many people.  For example, Robert Niblock, the CEO of Lowe’s, collected $12 million in compensation in 2010, or more than 380 times the $31,637 pay of department managers at the retailer.[6]  A number of investors have requested similar information on their own from companies and have been denied it.[7]  In contrast, some companies that are more responsible with respect to executive pay disclosures do not find it burdensome to calculate the typical worker’s salary at the company.[8]\nThere can be no real recovery of our economy without the recovery of the middle class.  To rebuild the middle class, we need a better understanding of the factors that have contributed to the stagnation of the wages and incomes of American workers.  Accordingly, we urge you to reconsider your views on this provision and to stop shielding your member companies from revealing this basic information.  Your opposition is a disservice to the American public and the shareholders of your member companies.\nSincerely,\nSenator Robert Menendez (D-NJ)\nSenator Tom Harkin (D-IO)\nSenator Sherrod Brown (D-OH)\nSenator Carl Levin (D-MI)\n  \n[1] “Executive Pay: The Party Ain't Over Yet,” Business Week, April 26, 1993.\n[2] “We Knew They Got Raises. But This?,” New York Times, July 2, 2011.\n[3] Bureau of Labor Statistics, May 2010 Occupational Employment and Wage Estimates, National Cross-Industry Estimates, Median All Occupations.\n[4] Professor Emmanuel Saez, “Striking it Richer:  The Evolution of Top Incomes in the United States” (July 17, 2010; updated with 2008 estimates).  Originally published by Saez and Thomas Piketty as “Income Inequality in the United States, 1913-1998,” The Quarterly Journal of Economics (February 2003).\n[5]  Census Bureau data; median income for all households (2009 dollars) was $52,301 in 2001 and $49,777 in 2009.\n[6] CEO pay data is obtained from 2011 company proxy statement.\n[7] Whoriskey, Peter.  “Business Group:  Public Companies Shouldn’t Have to Compare CEO and Worker Pay,” The Washington Post, June 24, 2011.\n[8] See, for example, Whole Foods Market, Inc. 2011 Proxy Statement, filed with the SEC on January 18, 2011 and MBIA, Inc. 2011 Proxy Statement, filed with the SEC on March 18, 2011.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a5875639-44c7-4345-a954-f59a0e8d721b,\"Menendez, Lautenberg Announce Senate Confirmation Of Juan Mattos As U.S. Marshal For New Jersey \n                    \n                      June 30, 2011\n                     WASHINGTON, D.C. — U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the Senate has confirmed the nomination of Juan Mattos Jr. to become the U.S. Marshal for the District of New Jersey.  This vote will bring permanent leadership to New Jersey’s U.S. Marshal Office, which has been under the leadership of an acting Marshal since August of 2010.  “This vote to confirm Juan Mattos will give New Jersey’s Marshal office the permanent leadership it needs to fulfill its mission.  It is disappointing that it took so long  to fill this important position, but Mr. Mattos has had a distinguished career in law enforcement in New Jersey and will be a strong leader of our U.S. Marshal’s office,” Lautenberg stated.  “Mr. Mattos has the expertise and experience needed to protect our federal courts, capture fugitives and oversee Federal prisoners in New Jersey.”\n \n“With a law enforcement career that spans more than three decades, Juan Mattos Jr. has the experience and knowledge to lead as a U.S. Marshal,” said Menendez. “The people of New Jersey need someone like him who is whip-smart, aggressive and aimed toward justice.\"\"\n \nMattos retired from the New Jersey State Police in 2010 after 35 years of service including leadership roles as the Deputy Superintendent of Investigations and later as the Deputy Superintendent of Operations.  Mattos rose to the position of Lieutenant Colonel and was second in command at the State Police.  He is currently an agent with the Middlesex County Prosecutor's Office and resides with his wife in Monroe Township.  Mattos will be the first Latino U.S. Marshal to serve in New Jersey.    The U.S. Marshal’s Office is the oldest federal law enforcement office in the country and is the enforcement arm of the federal courts. Responsibilities include protecting federal court officers and buildings, prisoner transports and seeking fugitives.  \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=27111f49-a305-4ac6-9985-20034a9f9289,\"Menendez Insists Big Oil Tax Subsidies Be Ended as Part of Any Deficit Reduction Deal\n                    \n                      June 30, 2011\n                     WASHINGTON – Senator Robert Menendez (D-NJ) took to the floor earlier today to insist that his “Close Big Oil Tax Loopholes Act” S. 940 be part of any budget balancing and deficit reduction compromise. He spoke to the need to end tax subsidies for the five largest oil companies to help address the nation’s growing deficit in a way that is fair to all Americans. Last month, a bipartisan majority voted in favor of proceeding to the consideration of the “Close Big Oil Tax Loopholes Act”.  Below is a video and his full remarks as prepared for delivery. “There are lots of ways to cut the deficit, but saving taxpayers subsidies for Big Oil, while ending Medicare and cutting student loan programs is not a solution. It makes no sense, Mr. President, to give a taxpayer funded subsidy to the Big 5 oil companies earning $12 billion a month… Why?” \n  \nVIDEO: http://www.youtube.com/watch?v=kTKo7UNbZk8\n \nFULL TEXT AS PREPARED FOR DELIVERY:Big Oil Subsidies -Remarks by Senator Robert Menendez  \n \nSenate Floor – June 30, 2011\n \n Introduction – The Bill\n \nM. President, I rise to thank the President yesterday for echoing my call to end subsidies for Big Oil.  It is time our friends on the other side of the aisle put the interests of taxpayers ahead of Big Oil and allow these wasteful subsidies to finally be cut.\n \nAs the President said, strategies to reduce the deficit, like my legislation to cut oil subsidies are already introduced and ready to go. All we need to do now is pass it.\n \nA vote on my bill presents a simple choice for everyone in this Chamber …\n \nAre you on the side of working class families and seniors  or are you on the side of Big Oil?\n \nThere are lots of ways to cut the deficit, but saving taxpayers subsidies for Big Oil, while ending Medicare and cutting student loan programs is not a solution.\n \nIt makes no sense, Mr. President, to give a taxpayer funded subsidy to the Big 5 oil companies earning $12 billion a month… Why?\n \n[CHART – ExxonMobil Profits vs. American Incomes]\n  \nThose on the other side of the aisle will tell a middle class student -- whose family earns median family income of $50,221 -- they can’t go to college – they can’t get a Pell Grant – but Exxon Mobile – a company that will earn $42.6 billion this year – needs government assistance…\n \n…and they will come to this floor, look America in the eye, and call it common-sense deficit reduction.\n \nMr. President, there simply is no common sense explanation for balancing the budget on the backs of working families and letting multi-billion dollar oil companies keep billion in taxpayer dollars.\n \nThe Deficit\n \nClearly we all need to tighten our belts to help address the deficit – all of us – even the most powerful and wealthy among us.\n \nWe all know that oil companies are among the largest, most profitable companies in the world.  But sometimes it is hard to understand the true scale of their wealth.\n \n \n \nProvisions Explained\n \nM. President, the provisions of my bill are not hard to understand.\n \nIt would close several loopholes for Big Oil…loopholes that, given the current budget climate, would let Big Oil get away without making any sacrifices at the very time we’re asking middle class families, the disabled, and the elderly to tighten their belts and help reduce the deficit.\n \nForeign Tax Credit\n \nLet me explain two provisions of my proposal in detail.\n \nThe first provision in my bill has to do with foreign tax credits.\n \nU.S. taxpayers are taxed on their income worldwide, but are entitled to a dollar-for-dollar tax credit for any income taxes paid to a foreign government.\n \nThis makes sense because you don’t want to tax the same activity twice.\n \nBut U.S. oil and gas companies have smart lawyers and accountants.\n \nThey have figured out that if you convince foreign governments like Indonesia to charge you taxes instead of royalties, then they can get a big break on their U.S. taxes.\n \nWhat this amounts to is the U.S. government – American taxpayers -- subsidizing foreign oil production!\n \nWhen reviewing this provision, the non-partisan  Congressional Research Service found that cutting this subsidy for foreign oil production will increase production here in the United States.  Not only that, but closing this particular loophole would return $6.5 billion to the Treasury.\n \nDomestic Manufacturing Tax Deduction\n \nIn 2004, Congress created the domestic manufacturing tax deduction.\n \nIt was designed to help U.S. manufacturers who export to foreign markets.\n \nFew would really see the extraction of oil from the ground as “manufacturing,” but -- again -- Big Oil’s lobbyists earned their money.\n \nThey saw an opportunity, made some phone calls, and low and behold, according to the tax code, oil companies are in the manufacturing business.\n \nThis legislation closes that loophole and saves taxpayers almost $13 billion. – That would be $13 billion more toward deficit reduction.\n \nThese two provisions combined with a few others will lower the deficit by $21 billion.\n \n \n \nGas Prices\n \nNow, I know some in the industry have claimed that cutting $2 billion in annual oil subsidies to the Big 5 oil companies will somehow make oil and gasoline more expensive.\n \nThis argument is simply false.\n \nThis bill will save taxpayers $21 billion over ten years or roughly $2 billion per year.\n \nCompare $2 billion in taxpayer subsidies to the projected $144 billion in profits the Big 5 oil companies are expected to make this year.\n \n \n \nIf the Big 5 oil companies could live with just $142 billion in profits in 2011, they could pay their fair share in taxes, help lower the deficit, and not raise the price of gasoline. \n \nIf that argument is not proof enough, then one need look no further than the definitive report by the Congressional Research Service that explains my proposal to end oil subsidies will not lower the production of oil and will not raise gasoline prices.\n \n \n \nConclusion – Real Deficit Reduction\n \nM. President, it is time for those on the other side of the aisle to join in real deficit reduction and for the Big 5 oil companies to do the right thing and give up a subsidy they do not need and we cannot afford.\n \nWe simply cannot expect the average working family to shoulder the burden of lowering the deficit alone.\n \nI hope some of the favorable comments I have been hearing from my colleagues in recent weeks means that they are ready to join this effort and lower the deficit in an equitable and effective manner.\n \n \n \nWhat’s fair is fair, but nothing about continuing these subsidies is fair. Those on the other side would end Medicare as we know it in the name of deficit reduction, while continuing to pump billions of dollars in corporate welfare into a hundred billion dollar industry.\n \nThat is the height of hypocrisy. It’s not fair to working families. It’s not a wise use of limited federal resources. And if this body does the right thing today, it’s not going to continue.\n \nThere’s nothing fair about ending Medicare in favor of Big Oil subsidies.\n \n \n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6465973c-d47b-4722-ac56-94028247aa2b,\"Menendez on the Confirmation of Gen. Petraeus\n                    \n                      June 30, 2011\n                     WASHINGTON - The Senate voted 94-0 today to confirm Gen. David Petraeus to be the next director of the CIA. U.S. Senator Robert Menendez (D-NJ) released the following statement:\n \n \n“Gen. Petraeus has led the United States military forces in Afghanistan and now he will lead our Intelligence community here at home to help protect those men and women as troops begin withdrawing from the region,” said Menendez, a member of the Senate Committee on Foreign Relations. “With more than three decades of military experience and direct roles in Iraq and Afghanistan, he is uniquely qualified to serve our country as the next CIA Director.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b9acec66-df69-47f5-8004-6c2461995f47,\"Menendez on Republican’s Obstruction of Free Trade Agreements \n                    \n                      June 30, 2011\n                     WASHINGTON – Today US Senator Robert Menendez (D-NJ), a member of the Finance Committee, released the following statement on the Republican boycott of the Committee’s meeting to consider Free Trade Agreements for Colombia, Panama and Korea, and Trade Adjustment Assistance:\n “Republicans state that their number one priority is job creation and growing our economy, yet today, instead of coming to work to address legislation that would expand our markets and create jobs here at home, they stayed home to play politics – boycotting the Committee mark-up.   We may not all ultimately vote the same way on all of the provisions, but at the very least we should be working to try to reach agreement where we can vote to stimulate our struggling economy.  The Korea Free Trade agreement alone would increase exports by $11 billion annually, GDP by $12 billion annually, and create 70,000 jobs.  Republicans were given ample time to prepare for the mark-up, as evidenced by the 61 amendments they submitted.  Their last minute boycott just shows how willing they are to promote a political agenda at the expense  of America’s economic recovery.”\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e316c830-f28d-4741-9964-e366b938505b,\"Congress Successfully Pushes CMS to Review and Rescind Burdensome Requirement\n                    \n                      June 30, 2011\n                     Washington, D.C. – In February eighty-eight Members of the House and the Senate, led by Congressman Michael C. Burgess, M.D. (R-TX-26), Congressman Bill Pascrell Jr. (D-NJ-08), Senator Robert Menendez (D-New Jersey) and Senator Pat Roberts (R-Kansas), sent bipartisan letters to Dr. Donald Berwick, Administrator for the Centers for Medicare and Medicaid Services (CMS) urging him to delay and review enforcement of a new requirement that was included in the 2011 Medicare Physician Fee Schedule Final Rule. Today, the provision that would require laboratory requisition forms to be signed by the ordering physician was proposed to be rescinded.\n“The new enforcement was unnecessary and went beyond delaying care, Medicare beneficiaries could end up spending a lot of their time contacting providers to get required signatures and providers could see their payments delayed or worse, possibly denied for a new administration hurdle,” said Dr. Burgess who serves as the Vice-Chair of the Energy and Commerce Subcommittee on Health. “Creating more bureaucracy, in a system that can sometimes already be hard to navigate, only creates more problems. Patients, physicians, hospitals, nursing homes, and laboratories could not afford to have this change implemented, and all supported this effort. I am glad to see that CMS made the right decision in pulling this provision back so that we can put patient care first.”\n“I have heard from numerous laboratories and physicians throughout Kansas about the difficulties this rule would have caused their practices, including additional costs and delays for patients and providers alike and I am pleased that sound reason has prevailed in the decision to retract this burdensome rule,” said Roberts. \n“In medicine, our goal must be to cure the sick, not create headaches with medical red tape,” said U.S. Sen. Robert Menendez (D-NJ). “I’m glad the Centers for Medicare and Medicaid Services took the time to evaluate the impact of its policy regarding physician signature requirements and has determined that it’s best to change course on its policy. Doing so removes unnecessary roadblocks for patients, doctors and businesses.”\n“This good news to anyone who believes that our health care system is already complicated enough. Patients, health care providers and laboratories need government’s help, not harassment. It appears today that the CMS is recognizing that fact,” said U.S. Rep. Bill Pascrell, Jr. (D-NJ-8), a member of the House Ways and Means and Budget Committees. “As Congress members work to make sure that eligible Americans continue to receive the Medicare and Medicaid benefits they deserve, I’m a glad that the CMS is willing to consider removing an unnecessary requirement from their processes.”\nCMS created the new requirement without a legislative mandate and explicitly required a physician signature on requisitions for clinical diagnostic laboratory tests paid under the clinical laboratory fee schedule. In addition, CMS was misguided further by trying to implement this rule without concern for the timeframe necessary to ensure access or educate providers of what would have been a significant change of procedure. Health care laboratories are pleased with the decision to withdraw the requirement.\n“On behalf of community and regional laboratories, many of which care for our most vulnerable Medicare beneficiaries, the National Independent Laboratory Association is relieved CMS understood the negative ramifications their rule would have had on patients and community labs across the country. We are grateful for the leadership of Congressmen Burgess and Pascrell in helping us communicate our concerns to CMS.” - Mark Birenbaum, PhD, National Independent Laboratory Association \n“ACLA sincerely appreciates CMS rectifying this unworkable situation ensuring there will be no disruption in the provision of vital clinical laboratory services to Medicare beneficiaries,” stated ACLA President Alan Mertz.  “Clarifying the situation once and for all is important so that all Medicare providers and contractors have unambiguous direction on this policy change,” added Mertz.\n•    To view the letter Members of Congress sent to CMS click here.•    To view the letter Members of the Senate sent to CMS click here.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4979e03d-f96c-452b-b1c7-42a1cb54938f,\"Menendez & Pallone Praise NJ Dems For Defying Christie on Health Care for the Needy\n                    \n                            State Budget Restores NJ FamilyCare\n                    \n                      June 29, 2011\n                     Washington, D.C. - Senator Robert Menendez and Congressman Frank Pallone, Jr. on Wednesday praised the Democratic Legislature for refusing to comply with Governor Chris Christie's plan to decimate the state program that provides critical health care services to the needy. Democrats in both the Senate and Assembly are planning to act to prevent NJ FamilyCare participants from being denied care in the upcoming budget year. The restoration of the program is included in the budget plans set for final legislative approval by both chambers. \nThe Legislature will also officially call on federal Medicaid officials to deny the \"\"waiver\"\" the Christie Administration is seeking to make the draconian cuts to the state program that serves low-income families and children. Menendez and Pallone welcomed the show of support by the Legislature with resolutions urging the Centers for Medicare and Medicaid Services to reject the Christie proposal. \n“The governor’s proposal to deny health coverage and increase costs for the most vulnerable is unconscionable,\"\" said Senator Menendez. \"\"Our budgets are reflections of our priorities, and Democrats have shown that we can be responsible without abandoning families during these tough economic times.”     \nChristie's plan would reduce the income eligibility limit from approximately $25,000 to about $5,300 annually for a family of three.  \n\"\"The budget shouldn't be balanced on the backs of the working poor and their children,\"\" said Pallone, \"\"and the Democratic budget shows that it doesn't have to be. We should maintain our values and our priorities by standing behind these services, especially during tough times.\"\" \nPallone co-authored the congressional legislation that led to the creation of NJ FamilyCare and programs like it.  \nIn addition to lowering income eligibility, the waiver application would reduce services, increase co-pays and cut reimbursement rates.  \nApproximately 917,000 people are enrolled in Medicaid or FamilyCare in New Jersey and 668,000 of them are children.  \nSome of the so-called financial savings the governor is predicting are illusory, Pallone noted. Closing enrollment to parents will reduce expenses by $9 million but it would sacrifice $17 million in federal matching grants. By eliminating parents, their children are often the victims of lost care. Studies show that when parents aren't included their children often don't receive treatment. There are an estimated 228,100 uninsured children in New Jersey, ranking the state 28th in the country.  \nChristie also wants to remove completely an estimated 1,400 childless adults from coverage, regardless of their medical conditions.  \nMenendez and Pallone urged the governor to rescind the waiver application and maintain the health services that are so important to the lives of so many.  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=366d0b5f-15f8-4ab1-b239-680927c7a03e,\"Menendez Supports Limited Use of Force in Libya, Advocates for the Continuation of Pan Am 103 Bombing Investigation\n                    \n                      June 28, 2011\n                     WASHINGTON – Following the Senate Foreign Relations Committee’s consideration of S.J. Res. 20, Authorizing the Use of Force in Libya, US Senator Robert Menendez (D-NJ) released the following statement in support of the limited use of force in Libya. Menendez  amended the bill during the Committee’s consideration to ensure the continuation of federal investigations into the 1988 bombing of Pan Am flight 103 and to require the President to consider the Transitional National Council and any successor government of Libya’s support for such investigations before releasing Libya’s frozen assets or any U.S. assistance.\n \n“As the author of the Senate resolution that proposed a non-fly zone over Libya, I strongly support the limited use of force authorized by S. J. Res. 20. While I believe that it is not in our national security interest to have boots on the ground in Libya – a measure prohibited by the resolution – I believe Qaddafi’s departure is in our national security interest.  Qaddafi is a terrorist – the moral equivalent of Osama bin Laden.  A man who referred to the slaughter of innocents as a “noble act” and who ordered the bombing of Pan Am Flight 103 that killed 270 people and 34 New Jerseyans over Lockerbie.  Because of this, not only is U.S. support for the NATO mission in Libya in our national security interest, it is the right thing to do.  I am certain that without support from the United States and the international community we would be watching a massacre in Libya, rather than encouraging the fall of a tyrant”. \n \nClick here for a link to Senator Menendez’s amendment to continue investigative activities surrounding the 1988 Pan Am Bombing: http://menendez.senate.gov/download/?id=a06c2894-7946-4c69-8d6e-76508de0d329\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9b7cb67f-0c1a-4188-9e58-05d0686f2603,\"Senator Menendez On First DREAM Act Hearing\n                    \n                      June 28, 2011\n                     Today, the Senate Judiciary Committee Subcommittee on Immigration, Refugees and Border Security held a hearing on the Dream Act, legislation that would give undocumented students a chance to register for legal status if they came here as children, are long-term U.S. residents, have good moral character and complete two years of college or military service.\n \n\n“Children should not be punished for the actions of their parents. These kids have grown up as Americans, worked hard in school and now they want to serve our country in the military or pursue a college education. This is the only home many of them have known and they should be encouraged to pursue the American dream. Today’s hearing is an important step in the right direction and puts us one step closer to seeing this bill and the dream of many turning into reality”\n\n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1576f20d-49f5-496e-9bea-822a801ae41c,\"Senate Democrats: GOP’S Proposed Cuts To SEC Could Pave The Way For Next Bernie Madoff And Increase Financial Scams And Accounting Fraud\n                    \n                            Republican Plan to Roll Back Consumer Protections and Return to Lax Oversight of Financial Firms Could Jeopardize U.S. Taxpayers and Our Economic Future\n                    \n                      June 28, 2011\n                     WASHINGTON, DC – United States Senators Jack Reed (D-RI), Charles E. Schumer (D-NY), Dick Durbin (D-IL) and Robert Menendez (D-NJ) today urged the House Republican leadership to give the U.S. Securities and Exchange Commission (SEC) the resources it needs to prevent another financial crisis and fight financial crime across the country.  In a letter to House Appropriators, the Senators criticized the Republican plan to hamstring the SEC as unacceptable and counterproductive.  They urged House leaders to work with the Senate to provide full funding in the final appropriations bill.  The SEC is tasked with investigating financial crime and catching the next Bernie Madoff-style fraud, yet it has been chronically underfunded. \n \nThe Senators wrote: “With our markets and economy still struggling to recover from the worst financial crisis in 80 years, this is hardly the time to handcuff the primary cop on the beat in our financial markets.  Safe, orderly markets are a key ingredient in our economic recovery.  Ever since the reforms instituted during the Great Depression, unparalleled transparency, investor protection and integrity have been hallmarks of the U.S. capital markets.”\n \nThe Senators also noted that the SEC is entirely funded by fees it collects from the industry, so fully funding the SEC would not add a dime to the deficit.\n \nOver the years the SEC has become out-gunned and out-manned by the financial sector.  The agency’s chronic budget shortfalls have hurt its ability to stay one step ahead of bad actors in the marketplace.  For example, according to a summary of a report completed by the agency’s Inspector General, the SEC had enough evidence against Bernie Madoff to merit an investigation into the dealings of his investment firm, but the agency simply didn’t see what was happening right in front of them. The report repeatedly cites the lack of experience and expertise of the SEC personnel assigned to investigate Madoff, finding that they “failed to appreciate the significance of the analysis” in the complaints about Madoff and “failed to follow up on inconsistencies.”  The agency’s ability to retain experienced personnel is an ongoing problem since financial firms are increasingly able to lure the agency’s experts with higher salaries.\n \nLast week the House Financial Services Appropriations Committee voted to fund the SEC for FY2012 at $222.5 million below the President’s budget request, despite the significant new responsibilities given to the SEC by Congress.  The House Appropriations Committee also eliminated a $50 million reserve fund designed to allow the SEC to respond to emergencies or fund technology upgrades in a timely manner.  Such a cut would prevent the agency from hiring more experienced investigators and implementing technology upgrades. \n \n \n \nThe full text of the letter is below.\n \n \n \nJune 28, 2011\n \n \n \nThe Honorable Harold Rogers\n \nChairman, U.S. House of Representatives Committee on Appropriations\n \nH-307 United States Capitol\n \nWashington, DC 20515\n \n \n \nDear Chairman Rogers:\n \nWe are writing to urge you to fully fund the Securities and Exchange Commission (SEC) at a level that will allow it to carry out its core mission and fully implement its expanded responsibilities under the Dodd-Frank Wall Street Reform and Consumer Protection Act (Dodd-Frank Act).  \n \nWith our markets and economy still struggling to recover from the worst financial crisis in 80 years, this is hardly the time to handcuff the primary cop on the beat in our financial markets.  Safe, orderly markets are a key ingredient in our economic recovery.  Ever since the reforms instituted during the Great Depression, unparalleled transparency, investor protection and integrity have been hallmarks of the US capital markets.  \n \nHowever, the House Appropriations Committee recently voted to cut $222 million from the amount requested for the SEC by the President.  The Committee also voted to cut off the SEC’s access to the $50 million reserve fund established in the Dodd-Frank Act. This reserve fund was created to allow the SEC to respond to emergencies or fund technology upgrades in a timely manner that would not require it to sacrifice other priorities.\n \nIn the wake of the financial crisis, and in light of the proliferation of high speed electronic trading, the SEC’s core mission has grown far in excess of the funds appropriated to the SEC to carry out that mission.  Now Dodd-Frank requires the SEC to increase its oversight of credit rating agencies, hedge funds and other private investment advisors.  The SEC is also tasked under the Dodd-Frank Act with overseeing large portions of the over-the-counter derivatives markets, which have never been subject to regulation before and played a large role in the 2008 financial crisis.  \n \nWe urge you to provide the SEC with the resources it needs to bring its technology into the 21st century, capable of monitoring and analyzing the activity of high-frequency traders, to police the security-based swaps market, and to take on the examination of investment advisers, hedge funds and credit rating agencies as required under the Dodd-Frank Act.  \n \nWe should also point out that the SEC is fully funded by fees it collects from the industry, so fully funding the SEC would not hinder the efforts underway to balance our budget. \n \nThank you for your consideration of this matter, which is vital to restoring investor confidence and integrity to the marketplace.  \n \n \n \nSincerely,\n \n \n \nSenator Jack Reed\n \nSenator Charles E. Schumer\n \nSenator Richard  Durbin\n \nSenator Robert Menendez\n \n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2694b11f-7315-4bfe-9615-37ce2299ccd8,\"Menendez Issues 2nd Annual Survey Of Female And Minority Fortune 500 Leadership\n                    \n                            Survey continues effort to collect data of women and minorities on corporate boards, executive management teams and in procurement practices\n                    \n                      June 28, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), Chairman of the Senate Democratic Hispanic Task Force and only one of two Hispanic Senators in the United States Senate, today announced the commencement of a second annual corporate diversity survey to continue to measure progress of our nation’s leading companies, specifically of corporate boards, executive management leadership, diverse suppliers and of consulting services. He has sent a letter to Fortune 500 company CEOs, inviting them once again to provide information on female and minority representation, and to complete the online survey by August 26th.  Aggregate data compiled from companies through this survey will be publicly presented later this year, although as was the case last year, details of individual company responses will not be made public.\n \n“For the second year in a row, I invite our nation’s major corporations and firms to join me in this important venture to assess the level of minority and women representation at the top.  I believe that inclusion of females and minorities in the C-suite should not be done just because it is the right thing to do, but because it is good for profits,” said Senator Menendez. “Women, for example, represent more than 50 percent of our population and control trillions in U.S. consumer spending.  And Hispanics represent more than 16 percent of our population and control more than $1 trillion in purchasing power.  Simply put, as the United States grows more and more diverse, those companies that have boards and senior management that are reflective of those demographics will be increasingly better positioned to compete in the market place.”\n \nLast year’s survey had a response rate of 41 percent among Fortune 500 companies and 71 percent among Fortune 100 companies -- one of the highest response rates of any voluntary corporate diversity survey.  This year, Menendez is continuing the effort to track the progress leading companies have made on this issue, as well as to draw attention to areas where they can do better. \n \n“There is no downside to participating,” said Menendez. “By participating, companies are showing that they take diversity seriously and it is a priority for them.  I thank those corporations that participated last year, and encourage even more to do so this year.”\n \nTo view last year’s survey and its findings, please visit: http://menendez.senate.gov/newsroom/press/release/?id=e8a1d85f-b9f9-4cb2-97dc-0c724f0a1ed2\n \n \n \n FULL TEXT OF THE LETTER:\n \nJune 23, 2011\n \n \n \nDear  _______,\n \n \n \nAs Chair of the Senate Democratic Hispanic Task Force, I write to respectfully ask that you participate in my second annual corporate diversity survey.  This survey is voluntary, and all individual company statistics will be kept confidential.  Only aggregate numbers will be publicly released in a comprehensive report later this year.  To complete the survey, please visit http://menendez.senate.gov/diversitysurvey.\n \nI believe that inclusion of females and minorities in the C-suite and among supplier chains should not be done just because it is the right thing to do, but because it is good for business.  For example, the most recent decennial census shows that women represent more than 50 percent and Hispanics represent more than 16 percent of our population.  According to the U.S. Women’s Chamber of Commerce, women control $4.3 trillion in U.S. consumer spending.  In addition, Hispanic purchasing power currently exceeds $1 trillion and is projected to reach $1.5 trillion by 2015. \n \nA 2010 report by the National Association for Female Executives found that the stocks of all twelve Fortune 500 companies with female Chief Executive Officers rose an average of 50 percent in 2009, compared to the 25 percent average for the Standard and Poor’s 500 leading companies.  As the United States grows more diverse, those companies that have boards and senior management that are reflective of today’s demographics will be increasingly better positioned to compete in the marketplace.\n \nAs you may know, last year I conducted a survey of Fortune 500 companies to gain a better understanding of female and minority participation among the leadership of our nation’s leading companies.  My survey had a response rate of 41 percent among Fortune 500 companies and 71 percent among Fortune 100 companies -- one of the highest response rates of any voluntary survey.  This year, I am continuing that effort to track the progress our leading companies have made on this issue, as well as to draw attention to areas where we can do better.  To view last year’s report, please visit: http://menendez.senate.gov/imo/media/doc/CorporateDiversityReport2010.pdf.  As you can see by the overwhelming response rate and the final report, we have maintained a commitment to keep results confidential, which I hope will encourage even more companies to participate in this year’s survey.   \n \nThank you for your attention to this very important issue. I look forward to your response.  The survey can be completed online at http://menendez.senate.gov/diversitysurvey and will only take a few minutes of your time.  Kindly complete all questions only in the format provided in the survey.  Please respond no later than August 26, 2011.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2f7125fd-8201-4d79-8919-2d5f442e8067,\"Menendez, Colleagues Ask for Details on Women Serving in Armed Conflict\n                    \n                            Concerns raised about their opportunities for career advancement, training and treatment upon redeployment \n                    \n                      June 23, 2011\n                     Washington –  U.S. Senator Robert Menendez (D-NJ) and his colleagues sent a letter to the Secretary of Defense requesting more details about whether the training, opportunities for promotion, and medical treatment of female Servicemembers reflects their increasing role in combat situations.  The letter points out that 134 female Servicemembers have been killed and 721 have been wounded in Iraq and Afghanistan despite the Department of Defense’s combat exclusion policy.  \n \n \nThe Department of Defense’s current policy states that “women may not serve in units that (1) engage an enemy on the ground with weapons, (2) are exposed to hostile fire, and (3) have a high probability of direct physical contact with personnel of a hostile force.” Senator Menendez’s letter follows upon a recent report by the Military Leadership Diversity Commission which stated: “the current conflicts in Iraq and Afghanistan have been anything but conventional.  As a result, some of the female Servicemembers deployed to Iraq and Afghanistan have already been engaged in activities that would be considered combat related, including being collocated with combat units and engaging in direct combat for self-defense.”\n \n“We look forward to your timely response to this inquiry and to working with you to update the Department’s policies in a way that fully reflects the critical role women are playing in today’s armed forces, ensures that women receive the much-deserved credit they earn during their military careers, and makes certain that our nation fields the most qualified troops regardless of gender,” the Senators wrote.\n \n \n \nFULL TEXT OF THE LETTER:\n \n \n \nJune 17, 2011\n \n \n \nThe Honorable Robert M. Gates\n \nSecretary of Defense\n \nThe Pentagon\n \nWashington, DC 20301-1155\n \n \n \nDear Secretary Gates:\n \n \n \nThe Military Leadership Diversity Commission’s report, From Representation to Inclusion:  Diversity Leadership for the 21st Century Military informed the nation that the Armed Services should systematically develop a demographically diverse leadership that reflects the forces it leads and the public it serves. Additionally, the Commission recommended that the Services expand their diversity to include the range of backgrounds, skills, and personal attributes that are necessary for enhancing military performance. One issue the Commission highlighted that we would like more information about is the effect of the Department of Defense’s combat exclusion policy on women in the Armed Services.\n \nThe Department of Defense’s current policy as it relates to women in the Armed Services states that “women may not serve in units that (1) engage an enemy on the ground with weapons, (2) are exposed to hostile fire, and (3) have a high probability of direct physical contact with personnel of a hostile force,” yet 134 female service members have been killed, and 721 have been wounded in the conflicts in Iraq and Afghanistan. The Commission’s report highlights the inconsistency of DOD’s policy with the reality of deployments, stating: “the current conflicts in Iraq and Afghanistan have been anything but conventional.  As a result, some of the female Servicemembers deployed to Iraq and Afghanistan have already been engaged in activities that would be considered combat related, including being collocated with combat units and engaging in direct combat for self-defense.” The Commission subsequently recommended eliminating the combat exclusion policy for women.\n \nWe respectfully request additional information regarding the inconsistency of the current combat exclusion policy, whereby women are being “attached” to combat arms units that consistently engage the enemy on the ground with weapons, repeatedly encounter hostile fire, and frequently expose them to direct physical contact with personnel of a hostile force, yet women are not being adequately recognized for having served in combat arms functions when it comes to documenting these experiences in their military records and DD214s. Additionally, we are concerned that this policy unnecessarily restricts combatant commanders from selecting the best personnel to participate in missions solely based on gender.\n \n \nWe hope you will provide a more comprehensive explanation of the capacity in which the 255,000 women who have deployed to Iraq and Afghanistan have served, specifically those that have been “attached” to combat arms units during their deployments.  In accordance with the current combat exclusion policy, what roles are open to women and from which are they precluded? Does the policy inhibit commanders from effectively engaging in counterinsurgency operations?\n \nGiven the fact that women are now serving alongside and collocated with combatant troops, what measures are being taken to ensure they receive appropriate training prior to deployment? Finally, when non-combat arms troops engage the enemy on the ground with weapons or are exposed to hostile fire, how is this being reflected in their military records other than the issuance of a combat action decoration?\n \nIn summary, we hope you will provide more details about the increased capacity in which women are serving and how the Department is working to ensure that the issues of training, equal opportunities for promotion and career advancement, and proper treatment upon redeployment are addressed.\n \nWe look forward to your timely response to this inquiry and to working with you to update the Department’s policies in a way that fully reflects the critical role women are playing in today’s armed forces, ensures that women receive the much-deserved credit they earn during their military careers, and makes certain that our nation fields the most qualified troops regardless of gender.\n \n \n \nSincerely,\n \n \n \nSenator Gillibrand\n \nSenator McCaskill\n \nSenator Cardin\n \nSenator Wyden\n \nSenator Franken\n \nSenator Merkley\nSenator Hagan\n \nSenator Lautenberg\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7c615eb6-319c-4f19-87c5-12ea9b79e8e8,\"Menendez Holds Hearing on Rebuilding Haiti \n                    \n                      June 23, 2011\n                     WASHINGTON – Today U.S. Senators Robert Menendez (D-NJ) and Ben Cardin (D-MD) co-chaired a joint hearing of the Western Hemisphere and International Development subcommittees of the Senate Foreign Relations Committee. The topic of the hearing was “Rebuilding Haiti in the Martelly Era.” The hearing examined the role of the private sector, NGOs, and the diaspora in complementing the efforts of international donors and aid agencies in rebuilding Haiti. “Based on the insightful presentations I heard today, I remain convinced that the challenges for Haiti are daunting but not insurmountable,” said Menendez. “We need the government of Haiti to come together and then to work with the private sector and the development community to create an environment that will attract private investment, create jobs, address health and education needs, and ultimately allow Haitians to support and care for themselves and their children.\"\" \n \nTestifying before the subcommittees were Major Joseph Bernadel, the Permanent Representative of the Haitian Diaspora on the Interim Commission for the Reconstruction of Haiti; Regine Simon-Barjon, the President of BioTek Solutions, Inc./Biotek Haiti S.A.; Georges Barau Sassine, the President of the Association of Haitian Industries in Port-Au-Prince, Haiti; and Gary Shaye, the Haiti Country Director for Save the Children in Port-Au-Prince, Haiti\n \nMenendez expressed concern about Haitian President Michel Martelly’s nominee for Prime Minister being rejected by the Haitian parliament and said, “In order for us to move forward, we need not the politics of the past but the opportunity to move into the future.”\n \nHe also asked the panel about the plan for education in Haiti and how it can be turned into a free public education system for children in Haiti. Major Joseph Bernadel responded that there is a 20-year plan that needs to be started, and that it could be similar to charter schools in the U.S., where the government helps subsidize some of the school, based on benchmarks like test scores, teacher training, and overall performance.\n \nMenendez also inquired about the last operating sugar mill in Haiti, and whether there is continued resistance to agriculture development by large land owners.  Regine Simon-Barjon said that there is not, because they work hard to pay their farmers so that everyone in the region can be successful. What is needed for more development is more investment in the country, she said. To make that possible, Georges Sassine added, the major problem of land tenure needs to be dealt with.                 \n \n # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7e88e54b-32c1-4e5a-a37b-44b2445bf39c,\"Menendez Reacts to Republicans Siding with Special Interests Over Public Interests\n                    \n                      June 23, 2011\n                     WASHINGTON – Amid reports that House Majority Leader Eric Cantor (R-VA) and Senate Minority Whip Jon Kyl (R-AZ) have decided to pull out of the bipartisan debt talks spearheaded by Vice President Joseph Biden, U.S. Senator Robert Menendez (D-NJ) has released the following statement:\n \n“It is sad to see that Republicans are so committed to ending Medicare while protecting subsidies for Big Oil, that they refuse to even negotiate over the deficit,” said Menendez. “Such grandstanding is already having effects in the market and jeopardizes our still fragile recovery.  The American people and bipartisan majorities in the Senate want to end subsidies for Big Oil and corn ethanol, but Republican leaders are more worried about bowing to Tea Party pressure, than they are about solving problems.”\n \n \n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=995d7746-e833-49e4-b08e-727c772d9fe7,\"Menendez, Colleagues Demand Adequate Transit Funding\n                    \n                            25 Senators Seek Funding in Face of Possible 31% Cut by the House\n                    \n                      June 23, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), chair of the Senate Banking subcommittee with jurisdiction over public transportation, led a letter with 24 colleagues to the Senate Finance Committee today urging that mass transit receive adequate resources in the Surface Transportation Reauthorization bill.  Joining Senator Menendez on the letter were Senators Dick Durbin (D-IL), Charles Schumer (D-NY), Sherrod Brown (D-OH), Frank R. Lautenberg (D-NJ), Tom Carper (D-DE), Kirsten Gillibrand (D-NY), Ron Wyden (D-OR), Ben Cardin (D-MD), Robert Casey (D-PA), Sheldon Whitehouse (D-RI), Jack Reed (D-RI), Michael Bennet (D-CO), Jeff Merkley (D-OR), Daniel Akaka (D-HI), Patty Murray (D-WA), Barbara Mikulski (D-MD), Joe Lieberman (I-CT), Tom Udall (D-NM), John Kerry (D-MA), Richard Blumenthal (D-CT), Chris Coons (D-DE), Mary Landrieu (D-LA), Jim Webb (D-VA), and Mark Warner (D-VA).\n \nCongress is currently working on reauthorizing the surface transportation bill, which expires on September 30.  If spending continues at current levels, the highway account could run out of money next year and the transit account shortly thereafter.  The Senate Finance Committee is responsible for funding these accounts.  The House of Representatives is currently developing a transportation bill that follows the Ryan Budget’s direction to cut surface transportation funding by 31 percent. \n \nThe letter asks that resources be made available to deal with rising transit demand: “As $4 per gallon gasoline hampers our nation’s economic recovery and public transportation continues to experience its highest ridership levels of the past five decades, we request your help in addressing the transit crisis our rural, suburban, and urban communities are facing.”\n \nIn addition to high demand, the transit industry is also facing other challenging circumstances including, “record high diesel prices, local and state government funding cuts, and tens of billions of dollars in maintenance backlogs.  This means that exactly when we need public transportation agencies the most, they have been forced to raise fares, cut back on service, and lay off workers.“\n \nThe letter concludes by stating, “we implore the Committee to strengthen the Mass Transit Account’s fair share of funding in the next surface transportation authorization to guarantee that our economic recovery continues and that we can be more self-reliant in meeting our transportation needs.”\n \nPDF of the letter: http://menendez.senate.gov/download/?id=2c1a301e-1622-4228-b3a8-d5fff06c2979\n \nFull text of the letter is below.\n \n   \n \n \nJune 24, 2011\n \n \n \n \n \nThe Honorable Max Baucus\n \nChairman, Committee on Finance\n \nUnited States Senate\n \n511 Hart Senate Office Building\n \nWashington, DC 20510\n \n \n \nThe Honorable Orrin Hatch\n \nRanking Member, Committee on Finance\n \nUnited States Senate\n \n511 Hart Senate Office Building\n \nWashington, DC 20510\n \n \n \nDear Chairman Baucus and Ranking Member Hatch,\n \n \n \nAs $4 per gallon gasoline hampers our nation’s economic recovery and public transportation continues to experience its highest ridership levels of the past five decades, we request your help in addressing the transit crisis our rural, suburban, and urban communities are facing.[1]  Public transportation offers the only current, large scale, low cost alternative to $4 per gallon gasoline available for most drivers.  Greater public transportation funding must be made available through the Mass Transit Account in the next surface transportation authorization to ensure that our economic recovery continues and that we can become less dependent on increasingly expensive petroleum while meeting our transportation needs.\n \n \n \nPublic transportation systems are in crisis around the nation.  Transit is experiencing record demand as drivers grapple with high gasoline prices and consumer preferences shift, but systems do not have adequate support to accommodate all of their new riders.  While transit agencies experience record demand, their ability to provide sufficient service is stymied by record high diesel prices, local and state government funding cuts, and tens of billions of dollars in maintenance backlogs.  This means that exactly when we need public transportation agencies the most, they have been forced to raise fares, cut back on service, and lay off workers.  \n \n \n \nThe 2008 spike in fuel prices showed us that new riders choose public transportation as an affordable, effective transportation option as costs rise.[2]  In 2006, the U.S. exceeded 10 billion trips per year for the first time in five decades and has surpassed that figure every year since.[3]  According to the American Public Transportation Association, with gasoline at $4 per gallon right now, we can expect an additional 670 million passenger trips this year, leading to a total of 10.8 billion trips nationally.  If prices reach $5 per gallon that number could hit 11.6 billion trips.[4]  Most transit trips connect workers with jobs.  Public transportation also provides a life line, especially in rural communities, for those with lower incomes or disabilities, or for those who have lost the ability to drive as they get older.   While demand for public transportation is higher than ever and likely to grow, resources for transit are under attack.\n \n \n \nDespite transit demand at all-time highs, the economic downturn has decimated agency budgets.  The American Public Transportation Association reports that more than 80 percent of public transit systems have seen flat or decreased funding from local, regional, and state sources, and of those, nearly nine out of ten raised fares or cut service.[5]  Rising diesel prices further stretch tight budgets.  In order for public transportation agencies to meet high demand amid local budget cuts, additional federal investment is needed.\n \n \n \nWhile public transportation agencies are facing a short-term fiscal crisis, they are also deferring important ongoing investments.  The Federal Transit Administration’s National State of Good Repair Assessment conducted in 2010 estimates a $77.7 billion maintenance backlog in the nation’s rail and bus transit systems.[6]  This backlog threatens to undermine the safety and reliability of one of our most dependable transportation modes.  Such longer term investments cannot be ignored if we are to preserve these invaluable transportation services.\n \n \n \nPublic transportation is also a proven job creator.  The Center for Neighborhood Technology, Smart Growth America, and the U.S. Public Interest Research Group determined that transit produced 16,419 job-months per billion dollars of recent expenditures. [7]  At a time when job creation is a priority, we must recognize public transportation as the promising solution that it is.\n \n \n \nSAFTEA-LU has left us a major funding challenge.  During the worst economic downturn in recent memory, we must identify new approaches for funding infrastructure projects.  A truly long-term and prudent vision for a future transportation network will strengthen the role of public transportation in growing our communities and ensure that new funding strategies do not favor highway spending to the detriment of public transportation spending.  \n \n \n \nAmericans want and deserve transportation options that reflect community priorities and values.  At a time when deficit reduction is attracting the full focus of the Congress, we implore the Committee to strengthen the Mass Transit Account’s fair share of funding in the next surface transportation authorization to guarantee that our economic recovery continues and that we can be more self-reliant in meeting our transportation needs.\n \n \n \nWe thank you for your consideration.\n \n \n \nSincerely,\n \n \n \n \n \n \n \n \nRobert Menendez                                                      \n \nRichard Durbin\n \nCharles E. Schumer                                                    \n \nSherrod Brown\n \nFrank R. Lautenberg                                                  \n \nThomas R. Carper\n \nKirsten E. Gillibrand                                                  \n \nRon Wyden\n \nBenjamin L. Cardin                                                   \n \nRobert P. Casey, Jr.\n \nSheldon Whitehouse                                                  \n \nJack Reed\n \nMichael F. Bennet                                                      \n \nJeff Merkley\n \nDaniel K. Akaka                                                        \n \nPatty Murray\n \n \nBarbara A. Mikulski                                                   \n \nJoseph I. Lieberman   \n \n \nTom Udall                                                                  \n \nJohn F. Kerry\n \n \nRichard Blumenthal                                                   \nChristopher A. Coons\n \n \nMary L. Landrieu                                                       \n \nJim Webb       \n \nMark Warner\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n[1]2011 Public Transportation Fact Book: 62nd edition. Washington: American Public Transportation Association, April 2011. Page 10. Web.  June 2011.\n \n[2] “During the 2007 and 2008 gas price spike, 85 percent of transit agencies reported experiencing capacity constraints on parts of their systems. Over one-half of systems operated service crowded beyond their local service standards. This was despite 48 percent of agencies adding service. Thirty-nine percent reported that overcrowded conditions were such that they were turning away passengers,” Potential Impact of Gasoline Price Increases on U.S. Public Transportation Ridership, 2011-2012.  Washington: American Public Transportation Association, March 14, 2011.  Page 2.  Web.  June 2011.\n \n[3] 2011 Public Transportation Fact Book: 62nd edition.  Table 5: Unlinked Passenger Trips by Mode. Washington: American Public Transportation Association, April 2011.  Page 10.  Web.  June 2011.\n \n[4]Potential Impact of Gasoline Price Increases on U.S. Public Transportation Ridership, 2011-2012.  Washington: American Public Transportation Association, March 14, 2011.  Page 2.  Web.  June 2011.\n \n[5] Challenge of State and Local Funding Constraints on Transit Systems: Effects on Service, Fares, Employments, and Ridership.  Washington: American Public Transportation Association, June 2009.  Web.  June 2011. \n \n[6]National State of Good Repair Assessment. Washington: U.S. Department of Transportation, Federal Transit Administration, June 2010.  Web.  June 2011.\n \n[7] What We Learned from the Stimulus: And how to use what we learned to speed job creation in the 2010 jobs bill.   Washington: Center for Neighborhood Technology, Smart Growth America, and the U.S. Public Interest Research Group, January 5, 2011.  Web.  June 2011.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0e75b282-5d11-4767-9359-746f5ec29a68,\"Menendez Applauds Decision to Release Oil from SPR\n                    \n                            NJ Senator Had Urged an SPR Release in His Plan to Reduce Gas Prices and in Letter to President\n                    \n                      June 23, 2011\n                     WASHINGTON – Today, US Senator Robert Menendez (D-NJ) applauded President Obama’s decision to release 30 million barrels from the U.S. Strategic Petroleum Reserve (SPR) within the next 30 days and released the following statement: “I applaud President Obama for heeding my call to release oil from the SPR. Releasing oil from the SPR is a proven tool to reduce oil prices in the short run. With our fragile economic recovery still struggling to get to full speed, this was a prudent and timely decision. In addition, this will immediately provide $2.5 billion to reduce the deficit,” said Menendez.  Earlier this year, Senator Menendez released an energy plan to help bring down prices which included provisions to release 50 Million Barrels of oil from the Strategic Petroleum Reserve. Menendez urged President Obama to invest the profits raised from selling the reserves to reduce the deficit and invest in strategies to further lower gas prices.  According to early reports, prices have already gone down 4% with today’s announcement.  Click here for more details on Menendez’s Energy Plan: http://menendez.senate.gov/newsroom/press/release/?id=b28528f9-9d6a-417a-8e7d-e19a55a4766a.\nEarlier this year, Senator Menendez and five other senators called on President Obama to release oil from the Strategic Petroleum Reserve in a group letter: http://menendez.senate.gov/newsroom/press/release/?id=13ccccbd-20e1-444f-b765-d2d628c6b15e.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=97653217-0b10-4c58-9844-9a5cee7974fe,\"Menendez on President Obama’s Announcement on the Redeployment of American forces from Afghanistan\n                    \n                      June 22, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) released the following statement tonight in response to President Obama’s announcement to commence a drawdown of American combat forces from Afghanistan starting in July 2011: \n \n “This is welcome news for our troops and their families and a significant step in the right direction that reflects the progress we have made toward meeting our original goals of disrupting and dismantling the Al Qaeda terrorist threat to the United States. However, we now need to begin the conversation about when to bring home our remaining 66,000 troops and about whether we will make fundamental changes to our operating strategy to reflect a more narrow counter-terrorism focus before 2014. We need an immediate change in strategy so that we can bring all of our troops home to their families and turn off the $10 billion a month faucet that is draining resources from pressing domestic needs. By reforming our mission, targeting our unique military resources, and refining our assistance mission to focus on sustainable and achievable outcomes, we can achieve our goals with fewer troops and less money.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0c6c73f2-5366-4fde-bd9d-4e5d85c1b8f3,\"Menendez, Colleagues Re-introduce Comprehensive Immigration Reform \n                    \n                      June 22, 2011\n                     WASHINGTON – Today U.S. Senators Robert Menendez (D-NJ), Harry Reid (D-NV), Patrick Leahy (D-VT), Dick Durbin (D-IL), Chuck Schumer (D-NY) John Kerry (D-MA) and Kirsten Gillibrand (D-NY) re-introduced a comprehensive immigration reform bill aimed at addressing the broken immigration system with tough, smart, and fair measures.\nThe bill includes measures to strengthen border security, enhance worksite enforcement of immigration laws, and requirements that the estimated 11 million undocumented immigrants present in the U.S. register with the government, pay their taxes, learn English, pay a fine, pass a background check, and wait in line for permanent residence.\n“This legislation signals to the American people that we are serious about fixing our broken immigration system,” said Menendez. “We stand for a complete solution - a real solution - to end undocumented immigration and restore the rule of law. This is common-sense legislation that addresses the realities of the situation, stops the flow across our borders, and contributes to our economic recovery. If we can put political grandstanding aside and come together on a comprehensive, pragmatic bill like this one, we can bring resolution to a great national need.”\n“Effective reform of our immigration system will only come about as the result of a good-faith bipartisan effort, and this legislation is a very strong starting point for that process,” said Senator Leahy.  “But one thing we should all support is a civil debate about how best to update our immigration laws to curb the tide of illegal immigration, continue to strengthen our borders, and create a system that works best for America.”\n“Today we are living with a broken immigration system that weakens our national security, hurts our workers, and falls short of the most basic standard of justice,” Durbin said. “To fix this system, we need a comprehensive approach that is tough, fair, and practical. Senator Menendez has drafted a good bill and I’m proud to support it.”\n“Our immigration system is broken and the status quo is unacceptable,” said Senator Gillibrand. “We need to right-size the system by uniting families while upholding America’s security and the rule of law. I am committed to working with my colleagues in passing a comprehensive immigration reform bill that improves border security while treating immigrants fairly, providing a path to hard earned citizenship, and allowing our youth a chance at the American dream.”\nThe Comprehensive Immigration Reform Act of 2011 includes both a mandatory employment verification system and a program to require undocumented immigrants in the U.S. as of June 1, 2011 to register with the government, learn English, and pay fines and taxes on their way to becoming Americans.\nThe bill promotes effective and accountable enforcement within the U.S. through measures such as: additional resources for the Border Patrol; expanded penalties for passport and document fraud; new requirements for the Department of Homeland Security to track entries and exits at the border; common-sense rules governing detention to ensure U.S. citizens are not unlawfully detained; and new criminal penalties for fraud and misuse of Social Security numbers.\nA Standing Commission on Immigration, Labor Markets, and the National interest would be created as part of the bill to evaluate labor market and economic conditions and recommend quotas for employment-based visa programs to the Congress that would protect American jobs.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=65b84343-9eed-4433-ae32-03a5e98618b4,\"Rep. Maloney, Sen. Menendez reintroduce  the Equal Rights Amendment\n                    \n                      June 22, 2011\n                     WASHINGTON, DC – Rep. Carolyn Maloney (D-NY), and Sen. Robert Menendez (D-NJ) today reintroduced the Equal Rights Amendment at an event just outside the Capitol.\n \n“The Equal Rights Amendment is still needed because the only way for women to achieve permanent equality in the U.S. is to write it into the constitution,” Rep. Maloney said. “While it’s been thrilling to see how far women have come in my lifetime, laws can change, government regulations can be weakened, and judicial opinions can shift. Making women’s equality a constitutional right—after Congress passes and 38 states ratify the ERA—would place the United States on record, albeit more than 200 years late, that women are fully equal in the eyes of the law.”\n \n“The WalMart case decided by the Supreme Court this week is a classic example of how far attitudes must still come. The facts of the case support the view that over a million women were systematically denied equal pay by the world’s largest employer,” Maloney said. “While the ERA would apply only to government action, its effect would be sweeping, historic—and long overdue.”\n \n“It is a disgrace that American women are still not constitutionally guaranteed equal rights under the law,” said Menendez. “Women have made tremendous advancements in our society, but we must continue to advance women’s rights by bringing our laws in line with 21st Century values.”\n \nThe House bill has 159 original cosponsors, including Rep. Gwen Moore (D-WI), Chair of the Congressional Women’s Caucus, who also attended, saying, “How many times do we need to be reminded that women’s rights are at the mercy of the Supreme Court?  It’s time once and for all to tell American women that regardless of their biology they have equal rights under the Constitution.”\n \n“In the year 2011, it is truly an embarrassment for our nation that we still do not have gender equality enshrined in our Constitution,” said Rep. Jerry Nadler (D-NY).  “This profound omission undermines our standing as a nation committed to freedom and equality for all.  It is a matter of simple justice and our leadership in the world that we move quickly to rectify this defect.  I am proud to once again join my friend and colleague, Congresswoman Carolyn Maloney, as she reintroduces the Equal Rights Amendment, which would provide a clear and unequivocal statement guaranteeing equal rights for women.”  \n\"\"Women and men deserve and need full equal rights. Without constitutional equality, too many women, and thereby too many families, are cheated,\"\" said Ellie Smeal, founder of the Feminist Majority. \"\"Americans overwhelmingly support constitutional equality. It is time-- in fact, it's long overdue-- for us to move forward. That's why the Feminist Majority and other women's organizations are this year going to score cosponsorhip of the ERA as a \"\"yes\"\" vote-- failure to co-sponsor this bill will be recorded as a vote against women's constitutional equality. It's as simple as that-- do you value women as full equal citizens under the law, or not?\"\"\n \nThe ERA was first introduced in 1923 as the “Lucretia Mott Amendment” at the celebration of the 75th Anniversary of the 1848 Seneca Falls “Declaration of Sentiments,” considered the founding of the women’s rights movement in the U.S.  The ERA came closest to ratification in the 1970’s, when 35 states approved it, falling just three states short of the two-thirds necessary for ratification.\n \n \n###\n \nFor more information on the ERA, click here.\n \nFor the full text of the bill click here.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=90512b9c-097e-46d2-9971-25e552eaa6cc,\"Menendez, Lautenberg Seek Answers on Relicensing of Aging Nuclear Power Plants\n                    \n                      June 21, 2011\n                     WASHINGTON –Today U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) wrote the Comptroller General of the U.S. Government Accountability Office requesting an official review of allegations, published yesterday in an Associated Press investigation, that the Nuclear Regulatory Commission has compromised its standards in granting extensions to operators of aging nuclear power stations.\n \nThe Oyster Creek Generating Station in New Jersey, which is the oldest nuclear power plant still operating in the country, was recently granted an extension of 20 years to operate until 2029.  It is identical in design to the failed Fukushima Dai-Ichi Nuclear Power Station in Japan.\n \n“Following the Fukushima disaster, we must be more certain than ever that our 104 nuclear power plants in the United States are as safe as possible,“ write Senators Menendez and Lautenberg.  “It would be of grave concern to us if, in fact, aging power stations have achieved compliance with operating rules because of weakened NRC rules, rather than demonstrated compliance with existing standards.” \n \n \n \nThe full text of the letter is below.\n \n \n \nJune 21, 2011\n \n \n \nThe Honorable Gene Dodaro, Comptroller General\n \nU.S. Government Accountability Office\n \n441 G Street, NW\n \nWashington, D.C. 20548\n \n \n \nDear Mr. Dodaro,\n \n            We write to request that you review the allegations in today’s Associated Press (AP) investigation,[1] that the Nuclear Regulatory Commission (NRC) has weakened standards to grant license extensions to operators of aging nuclear power stations, including the Oyster Creek Generating Station in New Jersey.  Following the Fukushima disaster, we must be more certain than ever that our 104 nuclear power plants in the United States are as safe as possible. \n \n            As you know, once the capital costs of constructing a nuclear power plant have been paid for, it is quite inexpensive to operate a nuclear power plant.  This means there is significant incentive within the industry to operate these plants as long as possible and therefore secure extensions to operating licenses.  It would be of grave concern to us if, in fact, aging power stations have achieved compliance with operating rules because of weakened NRC rules, rather than demonstrated compliance with existing standards. \n \n            Specific allegations in the AP report include that regulators have modified their interpretation of regulations, and their assumptions in risk assessment, in ways that may be compromising public safety.  These allegations resonate with residents of New Jersey because the state is home to the oldest nuclear power plant in the U.S., the Oyster Creek Generating Station. \n \n            Built in 1969 and identical in design to the failed Fukushima Dai-Ichi Nuclear Power Station in Japan, Oyster Creek was recently granted an extension of 20 years to operate until 2029.  This extension came despite widespread concern over the plant’s history of leaking tritium.  Though the operator intends to shut Oyster Creek in 2019 to avoid building state-mandated cooling towers, the circumstances of its extension are now being questioned.\n \n            Thank you for your attention to the serious allegations that are raised in the AP report, and we look forward to reviewing your findings.                       \n \nSincerely,\n \nSenator Robert Menendez\n \nSenator Frank R. Lautenberg\n \n \n \n# # #\n \n \n \n[1] AP/Washingon Post. June 20, 2011. http://www.washingtonpost.com/national/health-science/federal-nuclear-regulators-repeatedly-weaken-or-fail-to-enforce-safety-standards/2011/06/19/AGzqHYbH_story.html\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fcdb0b06-88ab-43c3-82c3-804aa01d4746,\"Menendez Votes For Panetta Nomination As Secretary of Defense \n                    \n                      June 21, 2011\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) voted in support of Leon Panetta to serve as the next Secretary of Defense. His nomination was supported by all Senators, with a 100-0 vote. Following the vote, Menendez released the following statement:  \"\"Leon Panetta’s experience, proven effectiveness as the director of the CIA and leadership skills make him an excellent choice to promote our national security as Secretary of Defense.  At a time when we are reconsidering our strategy in Afghanistan and when events are changing rapidly in the Middle East, we need a Secretary of Defense who has the proven ability to adapt to new situations and re-think our military preparedness at a time when resources are scarce. I look forward to working closely with Leon Panetta to ensure a strong and secure America in the 21 st Century.”\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7761a3ab-c69a-4cba-928c-f15f5a7237da,\"Menendez on the Passing of Clarence Clemons\n                    \n                            Legendary Saxophone Player played crucial role in Springsteen’s early career\n                    \n                      June 20, 2011\n                     WASHINGTON -  US Senator Robert Menendez (D-NJ) today released the following statement on the passing of Clarence Clemons, the legendary saxophone player beloved and adopted New Jerseyan who played a crucial role in Springsteen’s musical career.\n \n“All of us in New Jersey, and music fans across the country, mourn the passing of Clarence Clemons. The Big Man leaves a big hole in the heart of New Jersey and in the hearts of Bruce Springsteen fans everywhere. Today, our thoughts and prayers are with the Clemons family, with Bruce Springsteen and the members of the E Street Band, and with the people of Asbury Park and everyone who has ever been to The Stone Pony and heard the Big Man play that big horn. He will be missed.”\n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9349fa83-61e4-424d-87d8-f98267138119,\"Menendez and Lautenberg Announce Arrival of NJ Transit Grant Money\n                    \n                            Funds will create jobs and improve environment\n                    \n                      June 17, 2011\n                     WASHINGTON – U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that the Department of Transportation is transferring nearly $25 million to NJ Transit today. \n \n“These funds would not have been here if Republican proposals to slash the budget had become law.  These grants provide much-needed funding to help get people to work in a cleaner, more reliable way.  Just like everyone else, New Jersey Transit is seeing its budget squeezed by high fuel prices.  By having 41 new vehicles that run on cheap natural gas rather than expensive diesel, we can save taxpayer money while also keeping our air clean,” said U.S. Sen. Robert Menendez (D-NJ), Chairman of the Subcommittee on Housing, Transportation, and Community Development .\n \n“While the state is making mass transit more expensive and less accessible, I haven’t stopped working in Washington to make sure New Jersey commuters have reliable transit options,” said Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development that funds this grant program. “This federal funding will allow New Jersey Transit to replace old buses with new, clean energy vehicles that will provide a better transportation option for workers and families in our state.”\n \nThe first $22 million grant was awarded on a competitive basis through the agency’s new initiative “State of Good Repair Program” that was announced in 2010. The new initiative was created in response to the findings of “The National State of Good Repair Assessment Study” to strengthen and modernize the nation’s transportation system. The funding will be used to replace approximately 40 older buses with new, 45-foot compressed natural gas buses.\n \n \nAnother $2.5 million is headed to New Jersey this week from the Department of Transportation’s Transit Investment for Greenhouse Gas & Energy Reduction (TIGGER) grant program to install energy efficient heaters to help improve the safety and efficiency of railroads during colder weather.   This funding was put at risk by Republicans during consideration of the budget that passed in April. \n \n   \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2d697e64-8bb1-47a5-9574-2c168b1998b5,\"Menendez and Lautenberg Announce Grant to Soundproof Becton High School\n                    \n                      June 16, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced millions in federal funding to renovate and soundproof Becton High School from airport activity nearby. A total of $18 million in resources will go towards the installation of new air conditioning, heating, windows, doors, and ventilation to turn the school into a state of the art facility for the community’s children. The funds were awarded through the Federal Aviation Administration's Airport Improvement Program and will be administered by the Port Authority of New York and New Jersey. \n \n“High School is hard enough without the sound of airplanes buzzing overhead.  This investment will help ensure that we keep noise out of the classroom at Becton High School,” said Senator Menendez. “This funding will help students focus on what’s important – the education they need to succeed.”\n \n\"\"Becton High School has been plagued by disruptions from airplane noise for too long.  Students and teachers shouldn’t have to compete with the roar of jet engines overhead while they’re working in the classroom,” stated Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development that funds this grant program.   “This federal funding will help soundproof the school so that students can focus on their education, and I am confident these improvements will heighten the performance of our students.\"\"\n \n Henry P. Becton Regional High School is a four-year comprehensive public high school serving students ninth through twelfth grades for two communities in Bergen County, NJ.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=54a94196-d671-42f8-8fb9-f2c87f218b7e,\"Menendez, Lautenberg Call on Secretary Clinton and AG Holder to Seek Justice For Pan Am 103 Bombing\n                    \n                            Megrahi Should Return to Jail and U.S. Must Continue to Pursue Accountability\n                    \n                      June 16, 2011\n                     WASHINGTON, D.C. – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) are urging Secretary of State Hillary Clinton and Attorney General Eric Holder to continue working to bring to justice those responsible for the Pan Am 103 bombing, which killed 189 Americans, as well as to return convicted terrorist Abdelbaset al-Megrahi to prison.  Megrahi is the only person convicted of the Pan Am 103 bombing and was released from prison on August 20, 2009 under the presumption he had only three months to live.  In the letter to Secretary Clinton and Attorney General Holder, the Senators noted that the current upheaval within the Libyan government presents new opportunities to gather information and demand accountability for this heinous crime. \n \n“Defecting Libyan officials like former Foreign Minister Moussa Koussa may hold valuable information regarding the Pan Am 103 bombing – or may be culpable themselves,” wrote Senators Lautenberg and Menendez.  “The U.S. case to prosecute this heinous crime remains open and our government must do everything possible to gather evidence and any information that could help bring all of those responsible, including Qaddafi, to justice.”\n \n \n \nA copy of their letter to Secretary Clinton and Attorney General Holder can be found here and the text is copied below: \n \n \n \nJune 15, 2011\n \n \n \nThe Honorable Hillary Clinton, Secretary\n \nU.S. Department of State \n \n2201 C Street, NW \n \nWashington, DC 20520\n \n \n \nThe Honorable Eric Holder, Attorney General\n \nU.S. Department of Justice \n \n950 Pennsylvania Avenue, NW\n \nWashington, DC 20530\n \n \n \nDear Secretary Clinton and Attorney General Holder:\n \nAs high-level Libyan officials continue to defect from the Qaddafi regime, we urge you to do everything in your power to obtain information regarding and hold the responsible parties accountable for the bombing of Pan Am 103 and other terrorist attacks perpetrated by Libyan officials. \n \nDefecting Libyan officials like former Foreign Minister Moussa Koussa may hold valuable information regarding the Pan Am 103 bombing – or may be culpable themselves.  The U.S. case to prosecute this heinous crime remains open and our government must do everything possible to gather evidence and any information that could help bring all of those responsible, including Qaddafi, to justice.\n \nAs you know, the only person that has been convicted in the Pan Am bombing is now living freely in Libya.  On August 20, 2009, the Scottish government released al-Megrahi, based on the assertion that he had less than three months to live.  Almost 22 months later, the convicted terrorist is living in luxury in Libya.  The families of the victims of Pan Am 103 waited over a decade to see justice with the conviction of Abdelbaset al-Megrahi, only to have that justice taken away.  This is an entirely unacceptable situation and every effort must be made to return al-Megrahi to prison.\n \nThe current upheaval in the Libyan government provides a new opportunity to demand responsibility for this act of terrorism.  While we recognize there are many critical foreign policy decisions to be made with regard to Libya at this extraordinary time, we ask that justice for the Lockerbie bombing victims and their families remain a top priority and not be overlooked.\n \nThank you for your attention to this matter.\n \nSincerely,\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b3024295-dbb4-485a-8146-07581c8d7b3d,\"Menendez Applauds Vote to End Ethanol Subsidies, Reduce Deficit\n                    \n                            Senator: “Now we Must Come Together to End Big Oil Tax Subsidies.”\n                    \n                      June 16, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today voted in favor of ending ethanol subsidies and hailed the vote as a watershed moment for the ongoing negotiations to reduce the deficit. The Ethanol Subsidy and Tariff Repeal Act, offered as an amendment on the Senate floor, passed with a strong bipartisan vote of 73-27.  Eliminating the 45 cent per gallon subsidy to blend ethanol into gasoline will save the Treasury nearly $6 billion per year, while also alleviating inflationary pressure on food prices. The USDA estimates that 40% of this year’s corn crop will be used for ethanol. \n \n“This is a landmark vote and even if this provision does not pass the House, it is a signal that those negotiating the debt ceiling must heed the bipartisan majorities in the Senate that want to end ethanol subsidies and end oil subsidies for the Big 5 oil companies,” said Menendez. “This industry has a mandate requiring the use of their product, a subsidy, a protective tariff, and even gets help from subsidies for corn.  We simply cannot afford to prop up this industry any longer.” \n \nBefore the vote, Menendez took to the floor in support of the legislation. Below are his remarks as prepared for delivery and a You Tube video:\n \nMenendez Remarks on Ethanol\n \nM. President, I rise to speak in favor of the Feinstein amendment.  I am a proud cosponsor of this proposal because it will save us money, reduce food prices and do so in a responsible manner.\n \nM. President, ethanol enjoys truly unprecedented support from the federal government.\n \nFirst there is the Renewable Fuels mandate that requires ethanol to be blended into gasoline.\n \nSecond, there is a 45 cent per gallon subsidy to blend ethanol into gasoline that is costing the Treasury nearly $6 billion per year.\nThird, there is a 54 cent per gallon tariff on imported ethanol protecting the domestic industry from any serious competition. \n \nAnd to top it all off the federal government spends billions every year to subsidize the growth of corn for ethanol.\n \nIn a time of fiscal constraint we simply cannot afford to prop up an industry with such enormous supports.\n \nAnd these supports are not just costing taxpayers money, but they are also causing food prices to rise and harming our environment.\n \nThe USDA estimates that 40% of this year’s corn crop will be used for ethanol.  This is raising grain prices worldwide, especially hurting the needy.\n \nFor these reasons, the Feinstein amendment has the support of taxpayer rights groups, religious groups looking out for the needy, budget hawks concerned about our deficit, livestock growers who use grain as feed, the grocers and restaurants who are seeing food prices increase, and the environmental community who understand that corn ethanol requires enormous amounts of fossil fuels to be produced.\n \nMy support for the Feinstein amendment is not just because it is the right thing to do for our country and our federal budget, but because it is the right thing to do for my home state.  New Jersey has over 120,000 flex fuel vehicles, but does not have a single E85 ethanol pump in the entire state. 120,000 cars that are built to allow automakers to game fuel economy standards but may never see a drop of E85 fuel.\n \nI know that this issue is important to our friends in the Midwest, but ethanol producers already have a guaranteed market for their product as a result of the federal mandate.  Now we have an opportunity to help families across the country by ending this failed ethanol policy and providing relief both in terms of their taxes and their food prices.\n \nFor these reasons, I will be voting in favor of the Feinstein Amendment and urge my colleagues to do the same.\n \nI also think this vote is important for the larger debate over the deficit.\n \nOur friends on the other side of the aisle have said that revenues cannot be part of the strategy to reduce the deficit.\n \nWell I think this vote and the one earlier this week, in which 34 Republicans voted to end these wasteful ethanol tax breaks, shows that there is bipartisan support for cutting wasteful tax subsidies and that these revenue expenditures must be part of any solution on the deficit.\n \nOil Subsidies\n \nThe first place to start in terms of tax expenditures is oil subsidies.  A bipartisan majority of 52 Senators voted recently to end these hand outs. \n \nIf these 34 Republicans come into the fold, we could work together to make real progress.\n \nOil Companies do not need these subsidies. With oil trading at nearly $100 per barrel they have all the incentive they need.\n \nBy cutting these subsidies we can cut the deficit by $21 billion. \n \nThese companies are projected to earn up to $144 billion this year.  If they can simply live with a mere $142 billion, then they could do their share to reduce the deficit without raising gas prices.\n \nIt is time we come together across party lines, end wasteful tax subsidies, and lower the deficit.  This vote is an important first step and I think should be combined with ending oil subsidies to get us on the path to a balanced and bipartisan solution.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=26338724-d6d1-4bc0-8cda-8af3185a4d8c,\"Menendez: Privatizing Amtrak’s Northeast Corridor Would be Devastating for New Jersey \n                    \n                      June 15, 2011\n                     WASHINGTON— U.S. Senator Robert Menendez (D-NJ), chair of the Senate Banking subcommittee with jurisdiction on transit, today condemned a House Republican plan to privatize Amtrak’s Northeast Corridor.   \n“Privatizing Amtrak makes as much sense as privatizing Medicare or Social Security.  In other words, no sense at all,” said Menendez.  “This proposal would not only disrupt Amtrak service from Washington to Boston, but it would also deny New Jersey critical infrastructure investments that are important to our commuter rail service throughout the state.\"\"   \n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3f697e59-778e-4032-a2c8-6bfefccc2a79,\"After Citigroup’s Data Breach, Menendez Calls for Investigation and Support of Cybersecurity Legislation\n                    \n                            Member of the Banking Committee Sends Letter to the Office of the Comptroller of the Currency\n                    \n                      June 15, 2011\n                     WASHINGTON – With recent news of Citigroup’s data breach last week, U.S. Senator Robert Menendez (D-NJ) today called for an investigation. In a letter to the acting head of the Office of the Comptroller of the Currency (OCC), Menendez emphasized the importance of investigating the matter given the implications it has for the security of the financial industry in general, as well as the company’s failure to notify customers immediately of the security breach.  Menendez, author of The Cybersecurity Enhancement Act of 2011 and member of the Senate Banking Committee, also called for support of his legislation, which would increase research and development efforts to prevent and address these types of scenarios. Click here for background on the legislation: http://menendez.senate.gov/newsroom/press/release/?id=9b179443-8674-4bdf-b7fe-f4685b089042\n \n “As Citigroup’s primary regulator with jurisdiction for data security issues, I hope that you also believe this to be unacceptable for consumers,” the senator wrote in the letter. “Reportedly, customer and account information, including card numbers and email addresses, were viewed during this breach.[2]  Obviously, the implications of this, combined with the lengthy delay, are troubling.  As you know, over the last six years, there have been 288 publicly disclosed breaches at financial services companies that exposed at least 83 million customer records.[3]  And just this weekend, the International Monetary Fund was hit by cyber hackers.  This problem is widespread and must be properly addressed by all parties.”\n \n PDF OF THE LETTER: http://menendez.senate.gov/download/?id=b7373c7c-6b55-49de-9e1a-45e450240543\n \n \n \nFULL TEXT OF THE LETTER:\n \n Dear Mr. Walsh:\n \n I write today to express my concern with respect to recent disclosures that the network of Citigroup Inc. had been breached and the financial and personal information of more than 200,000 bank card holders had been unlawfully accessed and viewed.  Recent press reports have said that Citigroup waited as long as three weeks before notifying customers of this breach.[1]\n \n If true, this delay is simply unacceptable.  As Citigroup’s primary regulator with jurisdiction for data security issues, I hope that you also believe this to be unacceptable for consumers.  Reportedly, customer and account information, including card numbers and email addresses, were viewed during this breach.[2]  Obviously, the implications of this, combined with the lengthy delay, are troubling.  As you know, over the last six years, there have been 288 publicly disclosed breaches at financial services companies that exposed at least 83 million customer records.[3]  And just this weekend, the International Monetary Fund was hit by cyber hackers.  This problem is widespread and must be properly addressed by all parties.\n \nPut simply, Citigroup’s customers should have been notified immediately that their personal and financial information was illegally viewed.  While I understand that financial institutions may be hesitant to contact customers because they do not want to portray weaknesses in their operations, their number one concern must be their customers when these unfortunate crimes occur. \n \n Can you please detail what steps you have taken to work with Citigroup to remedy this situation?  Was the OCC aware of this breach when it initially occurred?  Does the OCC believe that Citigroup properly followed existing privacy laws when waiting to notify their customers?  In this situation, would penalties be appropriate?\n \n Additionally, several press reports have noted regulatory gaps and other problems in preventing breaches such as these, which continue to occur.  In 2005, the major credit card companies agreed to form a set of industry-wide security standards after a major breach occurred.  Yet six years later, compliance is decidedly mixed with less than 60% of online merchants conforming.[4]  Can the OCC comment on why industry adoption continues to lag?  Given the increasing number of security breaches that have occurred, compliance would seem prudent.  Are these standards out of date at this point? \n \n And lastly, in light of this last breach, retailers have claimed that banks have little incentive to reduce fraud as retailers often pay the cost for fraudulently purchased items and banks also collect charge-back fees from merchants.[5]  Do you agree or disagree with this view?  What can be done to ensure that better preventive security measures like card chip technology are taken?\n \n Along with Representatives McCaul and Lipinski, I have introduced bicameral legislation – The Cybersecurity Enhancement Act of 2011 – that would increase research and development efforts to strengthen the cybersecurity for federal networks and better enable the government, universities and the private sector to collaborate and easily share information. \nI believe that instances such as the unfortunate breach at Citigroup underscore the immediate need for this type of legislation as well as strong federal protection for consumers as attacks continue to escalate.\n \n Thank you for your attention to this matter and I look forward to your response.\n \n \n \nSincerely,\n \n \nROBERT MENENDEZ\n \nUnited States Senator\n \n \n \n[2] http://www.reuters.com/article/2011/06/09/uk-citi-hacking-idUSLNE75800H20110609\n \n[3] http://www.nytimes.com/2011/06/10/business/10citi.html?pagewanted=print\n \n[1] http://online.wsj.com/article/SB10001424052702304665904576382391531439656.html\n \n[2] http://www.reuters.com/article/2011/06/09/uk-citi-hacking-idUSLNE75800H20110609\n \n[3] http://www.nytimes.com/2011/06/10/business/10citi.html?pagewanted=print\n \n[4] http://www.nytimes.com/2011/06/10/business/10citi.html?pagewanted=print\n \n[5] http://www.nytimes.com/2011/06/10/business/10citi.html?pagewanted=print\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=528e0224-4d99-4452-a663-001351e41066,\"Senators Urge OCC to Work with State Attorneys General, DOJ, and HUD to Hold Mortgage Servicers Accountable and Prevent Future Abuse\n                    \n                      June 14, 2011\n                     WASHINGTON, DC -- Today, a dozen U.S. Senators sent a letter to the Office of the Comptroller of the Currency (OCC) urging the agency to work with State Attorneys General, the U.S. Department of Justice (DOJ), and the U.S. Department of Housing and Urban Development (HUD) to hold mortgage servicers accountable for deficient servicing procedures and improperly foreclosing on homeowners and to develop a comprehensive solution to fix the broken foreclosure process.\n \n Senators Jack Reed (D-RI), Richard Blumenthal (D-CT), Banking Committee Chairman Tim Johnson (D-SD), Judiciary Committee Chairman Patrick Leahy (D-VT), Sheldon Whitehouse (D-RI), Bob Menendez (D-NJ), Daniel Akaka (D-HI), Chuck Schumer (D-NY), Sherrod Brown (D-OH), Dick Durbin (D-IL), Al Franken (D-MN), and Jeff Merkley (D-OR) are calling for the OCC to use the full extent of its significant authority to ensure that the banks and mortgage servicers which created the foreclosure mess help clean it up.  \n The Senators wrote to John Walsh, the acting head of the OCC: “we urge you to take every opportunity to ensure that servicers not only account for past harms, but also take steps to prevent future servicing deficiencies so that homeowners going forward are treated fairly.”\n \n After several federal agencies and State Attorneys General opened investigations into unscrupulous mortgage practices by major banks, including the use of improperly prepared legal documents and “robo-signers” to sign hundreds of unread foreclosure documents a day, the OCC entered into consent orders with several large banks outlining the widespread problems in mortgage servicing and requiring the servicers to take steps to address those problems.\n \n Yesterday, the OCC announced that at the request of DOJ and to allow coordination of actions with other agencies at the state and federal level, it was giving banks an additional 30 days to file “Action Plans” for how they will comply with the new foreclosure requirements laid out in the OCC’s consent orders.\n \n Because the consent orders announced by the OCC on April 13th did not preclude State Attorneys General from aggressively pursuing a comprehensive solution against banks and mortgage servicers that wrongly foreclosed upon homeowners, the Senators are urging the OCC to work with the State Attorneys General and other regulators to arrive at a comprehensive and robust solution.\n \n Full text of the letter follows:\n \n \n \nJune 14, 2011\n \n \n \nMr. John Walsh\n \nActing Comptroller of the Currency\n \nOffice of the Comptroller of the Currency\n \nIndependence Square\n \n250 E Street, SW\n \nWashington, DC 20219-0001\n \n \n \nDear Mr. Walsh:\n \n Amid recent reports that housing prices are experiencing a double dip, we write to urge you to make every effort to bring a comprehensive resolution to the foreclosure crisis, which has continued for far too long.  According to economists and experts of all stripes, a persistently weak housing market represents one of the greatest threats to a sustained and lasting economic recovery.  \n \n It is clear that we need to stabilize our housing market, and the Office of the Comptroller of the Currency (OCC) has a pivotal role to play in utilizing the full scope of its authority to correct the weaknesses of servicers in terms of foreclosure governance and foreclosure document preparation and in their ability to vigorously oversee and monitor third-party vendors, including foreclosure attorneys.\n \n Recently, several servicers under your jurisdiction have agreed to submit, in a matter of days, Action Plans which are supposed to contain complete explanations of all the steps that will be taken, including efforts to strengthen foreclosure and foreclosure prevention controls and procedures, to be in full compliance with the OCC’s Consent Orders.  As the OCC assesses these Action Plans to determine whether they are acceptable, we urge you to work with the State Attorneys General, the Department of Justice, the Department of Housing and Urban Development, and the other authorities who are involved.  \n \n Ideally, these Action Plans will not only clarify and improve the roles of mortgage servicers, but will also help homeowners for whom foreclosure can be prevented.  In this regard, we urge you to consider the servicing standards proposed by the State Attorneys General, and to incorporate appropriate provisions of introduced legislation that will support the work that must be done to improve the foreclosure process and help homeowners avoid foreclosure.  Taken together, these policies would be a better basis for a more fair and equitable system going forward.              \n \n We are at a critical moment to achieve a better sense of stability and confidence in the administration and processing of our nation’s mortgages.  In short, your efforts are needed to help lay a foundation for our housing markets to firmly recover.  As such, we urge you to take every opportunity to ensure that servicers not only account for past harms, but also take steps to prevent future servicing deficiencies so that homeowners going forward are treated fairly.\n \n We thank you for your consideration and attention to this important matter, and we look forward to your response.  \n \n \n \nSincerely,\n \n \n \nReed\n \nBlumenthal\n \nTim Johnson\n \nLeahy\n \nWhitehouse\n \nMenendez\n \nAkaka\n \nSchumer\n \nSherrod Brown\n \nDurbin\n \nFranken\n \nMerkley\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6efb2422-1d2d-49cd-a9b7-c556adad6f76,\"Senators Call On Federal Reserve To Crack Down On Credit Card Companies’ Efforts To Target Everyday Consumers For “Business” Credit Cards That Lack Important Consumer Protections\n                    \n                            CARD Act, Passed Last Year, Includes Strong Protections Against Abusive Practices By Credit Card Companies, But Protections Don’t Extend To Business Credit Cards\n                    \n                      June 14, 2011\n                     Washington, DC— U.S. Senators Charles E. Schumer (D-NY), Jack Reed (D-RI), Bill Nelson (D-FL), and Robert Menendez (D-NJ) today called on the Federal Reserve to put a stop to credit card companies’ attempts to skirt consumer protection reforms by urging families and seniors to sign up for “business” credit cards that are not covered under the new credit card reform laws, and often include potentially harmful terms.  In a letter to Federal Reserve Chairman Ben Bernanke, the Senators asked the agency to take immediate steps to protect consumers by requiring business card issuers to clearly disclose the fact that the cards are intended for business purposes only, and do not include the same consumer protections as ordinary credit cards.  The request comes in the wake of a recent study by The Pew Charitable Trusts that revealed that over ten million business credit cards are offered to consumers every month – the majority of which have terms that would be illegal in consumer cards.\nThe Senators asked the Federal Reserve take immediate steps to protect consumers by requiring business credit card issuers, in connection with any solicitation, to clearly identify in any solicitation materials that the card being offered is a business card; clearly disclose that the card may not carry all the same protections as ordinary consumer cards; and require applicants to provide a business tax identification number on the application.  Such steps would greatly reduce the number of consumers who unknowingly sign up for credit cards with far fewer protections. \nThe Senators wrote: “While we are encouraged some banks, such as Bank of America and Capital One, have taken voluntary steps to protect consumers, we are very concerned issuers are marketing these products to ordinary consumers who may not realize they do not offer the same protections as personal cards.” \nAccording to a study released by the Pew Charitable Trusts last month, American households receive more than 10 million offers every month for business credit cards and the “majority of these cards have potentially harmful terms that would not be legal on those labeled for consumer use.”  The study also found that between January 2006 and December 2010, Americans received over 2.6 billion business credit solicitations, comprising over 9 percent of all direct mail marketing of credit cards to U.S. households. Alarmingly, more than 6.7 million of these solicitations go to seniors every month. \nThe Credit Card Accountability, Responsibility, and Disclosure (CARD) Act, passed into law in 2009, instituted a plethora of important protections for consumers.  The reforms banned rate increases in the first year an account is open and, in following years, required that the card issuer provide 45 days notice before a rate increase can be assessed. The act also prevented credit card companies from raising interest rates on existing balances.  These reforms, however, are not applicable to cards labeled for business or commercial use.  \n\nThe full text of the letter appears below. \n \n \nJune 14, 2011 \n \n \nHonorable Ben Bernanke\n \nChairman, Federal Reserve Board\n \n20th Street and Constitution Avenue, NW\n \nWashington, DC 20551\n \n \n \nDear Chairman Bernanke:\n \nWe are writing to express our concern about a growing problem in the business credit card industry. As you are well aware, consumer protections within the Truth in Lending Act and the Credit Card Accountability, Responsibility, and Disclosure Act do not govern credit cards issued for business purposes. According to a study released by the Pew Charitable Trusts last month, American households receive more than 10 million offers every month for business credit cards and the “majority of these cards have potentially harmful terms that would not be legal on those labeled for consumer use.” \nThe study also found between January 2006 and December 2010, Americans received over 2.6 billion business credit solicitations, comprising over 9 percent of all direct mail marketing of credit cards to U.S. households. Alarmingly, more than 6.7 million of these solicitations go to seniors every month. \nWhile we are encouraged some banks, such as Bank of America and Capital One, have taken voluntary steps to protect consumers, we are very concerned issuers are marketing these products to ordinary consumers who may not realize they do not offer the same protections as personal cards. We respectfully request that the Federal Reserve take immediate steps to protect consumers by requiring business credit card issuers, in connection with any solicitation, to (a) clearly identify in any solicitation materials that the card being offered is a business card, (b) clearly disclose that the card may not carry all the same protections as ordinary consumer cards, and (c) require applicants to provide a business tax identification number on the application. \nThank you for your consideration and we look forward to working with you on this matter.  Feel free to contact us at your convenience if you have any further questions. \n \nSincerely, \n \n \nSenator Charles Schumer\n \nSenator Jack Reed\n \nSenator Bill Nelson\n \nSenator Robert Menendez\n \n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c5243c46-a704-4360-8534-a33348537296,\"Menendez, Lautenberg Announce Senate Confirmation Of New Jersey Judges For Seats On The U.S. District Court\n                    \n                      June 14, 2011\n                     WASHINGTON, D.C. — U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today voted in the Senate to approve Magistrate Judges Claire Cecchi and Esther Salas for vacant seats on the U.S. District Court for New Jersey.  The Senators recommended Cecchi and Salas to President Obama for nomination last year.  Judge Cecchi brings significant legal experience to the bench and a background of working with children in New Jersey communities.  Judge Salas was the first Latina to ever serve as a Magistrate Judge for the District Court in New Jersey and will be the first Latina to serve as a Federal District Court Judge for the district of New Jersey. \n \n“Judges Cecchi and Salas have proven their skill and ability in the courtroom and will serve New Jersey extremely well as Federal District Court judges,” stated Lautenberg.  “This Senate vote will help fill vacancies on our District Court with two widely respected and well-qualified judges.  Judge Cecchi will bring to the bench significant experience and a commitment to our New Jersey community.  The confirmation of Judge Salas is especially noteworthy as she will be the first Latina to ever serve on the U.S. District Court for New Jersey.  I congratulate Judges Cecchi and Salas and am confident that both will serve with fairness and bring honor to the people of New Jersey and our country.”\n \n“Judge Claire Cecchi and Judge Esther Salas are two of the most highly respected magistrate judges in New Jersey and the unanimous vote that happened in the Senate today speaks volumes about the quality of their appointments,” said U.S. Sen. Robert Menendez (D-NJ). “Despite a shortage of judges in New Jersey and across the country, it is no easy task to navigate Republican obstructionism of our nominees.  That makes the confirmation of Judges Cecchi and Salas an even bigger accomplishment to celebrate.”\n \nJudges Cecchi and Salas have served as Magistrate Judges in the District Court for the District of New Jersey since 2006.  \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e55331dd-23ff-4cf2-883d-b48a8f690bc8,\"Menendez Applauds Actions Against Big Banks That Failed To Help Homeowners\n                    \n                      June 10, 2011\n                     WASHINGTON – The Housing Scorecard for May recently released by the Obama administration included detailed assessments of the 10 largest mortgage providers that are participating in the Administration’s Making Home Affordable Program, setting a new industry benchmark for disclosure on servicer assistance to struggling homeowners.\n \n \nSince the program started, the Treasury Department has required participating providers to take actions to improve their services for homeowners. In light of the review just published, the administration has found some servicers have not produced satisfactory reviews from customers in the areas of: identifying and contacting homeowners; homeowner evaluation and assistance; and program reporting, management and governance. As a result, the Treasury Department is withholding financial incentives from Bank of America, J.P. Morgan Chase, and Wells Fargo.\n \n \n“These banks cannot continue doing business as usual,” said U.S. Sen. Robert Menendez (D-NJ). “I applaud the Treasury Department for withholding payments to them for poor performance when it comes to foreclosures and mortgage modifications.  For several years, I have been calling for mortgage servicers to be held more accountable, including at a Housing Subcommittee hearing I chaired just this year in May. The last thing homeowners should have to worry about is obstacles from the banks that are supposed to be helping them keep their homes.” \n \n \nFor more information or to read the detailed reports, go to http://www.treasury.gov/initiatives/financial-stability/results/MHA-Reports/Pages/default.aspx.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0788d481-0f72-4ebf-b6be-ccdefd5c65d0,\"Menendez, Colleagues Seek Funding of Highlands Conservation Efforts\n                    \n                      June 10, 2011\n                     Washington, D. C. – Today Senator Menendez led a letter to Senate Appropriations Committee leaders, co-signed by Senators Lautenberg, Lieberman, Blumenthal, Gillibrand, and Schumer, urging support for funding of Highlands Conservation efforts. \n \nThe letter highlights that “the long-term water security of millions living in our respective states depends on the success of the Highlands Conservation Act” in asking for “as strong a funding commitment to the program as possible” in 2012. \n \nThe Highlands is a 3.5 million acre region of undeveloped forest, farmland, and rugged hills stretching from Pennsylvania through New Jersey and New York to Connecticut. Without targeted conservation of these lands, the long-term provision of clean water for human consumption and for agricultural and recreational use in these states is at risk.\n \nThe Highlands Conservation Act delivers a systematic, regional program for identifying highest-priority lands for conservation.  Projects are chosen through a scientifically rigorous process conducted each year by the US Fish and Wildlife Service and the USDA Forest Service. The four Governors of the states in the region then send a letter to the Secretary of the Interior detailing the four conservation projects selected for funding, one from each state.  All federal HCA investments are matched 100 percent by state, local, and private organizations, doubling the federal investment in long term water security for the region.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cc807485-3b5a-4067-ae4c-44ea780af742,\"Menendez Announces Grant to Train the Next Generation of NJ Transit Workers \n                    \n                            Award provides $183,900 to prepare students for transit careers\n                    \n                      June 10, 2011\n                     Washington - Today, U.S. Senator Menendez (D-NJ) announced a grant of $183,900 from the Federal Transit Administration (FTA) to the New Jersey Transit Corporation for its Transit Academy and Youth Outreach Programs.  Senator Menendez released the following statement:\n \n\"\"We need jobs and we need to replace an aging public transportation workforce. This grant will help our economy and bolster our transit agency at a time when it desperately needs it.” said Senator Menendez. “Public transportation creates good jobs that cannot be outsourced, reduces our dependence on oil, increases national security, provides access to healthcare and education, and improves the air we breathe.  Public transportation increases the quality of our communities and our lives and is exactly where our focus should be in reinvigorating our economy.\"\" \nThe New Jersey Transit Corporation will expand \"\"The Academy,\"\" an existing work-readiness and awareness program that partners with vocational schools and high schools throughout the state. The program educates students about the types of positions and careers available in the industry and prepares them to successfully compete for and secure public transportation jobs.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=206adf03-55e0-4f45-b406-cf39ece94cf3,\"Menendez, Lautenberg & Pallone Voice Opposition To Christie's Medicaid Plan \n                    \n                      June 10, 2011\n                     Washington, D. C. - Three top New Jersey congressional leaders voiced opposition to Governor Chris Christie's plan to dramatically restructure the state's Medicaid program because the draconian cuts would result in the loss of medical care for tens of thousands of state residents. Senator Frank Lautenberg, Senator Robert Menendez   and Congressman Frank Pallone, Jr. on Friday urged the governor to reconsider what is still an ill-defined proposal. \n \nWhat is known about the proposed cuts to NJ FamilyCare is alarming enough, they said. Christie wants to drastically drop the income eligibility limit for participating from around $2000 a month to just over $400 a month, denying an additional 23,000 parents access to NJ FamilyCare next year. And this is in addition to last year’s eligibility changes.\n \n“The state is effectively telling these families to wait until 2014 to get coverage again as part of the new health insurance law,” said Senator Menendez. “Unfortunately, there is no such thing as a waiver for getting cancer.  Diabetes treatment can’t wait for three years. These families will still face the same health threats, just without any health coverage. These are the very families I fought to protect in the CHIP reauthorization, and I hope the governor will reconsider before submitting the plan for approval.” \n \n“Governor Christie’s plan to take health services away from New Jersey’s most vulnerable families is neither humane nor a cost effective way to save money,” stated Senator Lautenberg.  “We need to make it easier for New Jerseyans to access health care services, not harder.  Balancing the budget on the backs of low-income families is unacceptable and I will strongly oppose any proposal that targets the most hard pressed families in our state.”\n \nAccording to Raymond Castro, a Medicaid expert with New Jersey Policy Perspective, the total number of uninsured parents who would be denied health care in FY 2012 would be over 90,000—and that doesn’t take into account proposed increases in cost sharing that will inevitably discourage participation. \n \n(Castro's testimony before the New Jersey Senate Health, Human Services and Senior Citizens Committee: http://www.njpp.org/blog/proposed-changes-to-nj-medicaid-program-would-wreak-havoc-on-nj-familycare)  \n \nIn New Jersey, 916,476 people are enrolled in either Medicaid or FamilyCare, including 668,315 children. By shutting parents out last year, an estimated 18,000 eligible children didn't participate either. \n \n\"\"The FamilyCare program has proven to be a successful and cost effective means of keeping people healthy and saving lives,\"\" said Congressman Pallone, who authored the federal law that facilitated the creation of FamilyCare, which extends family coverage to those outside the income eligibility of Medicaid. \"\"The state will pay a heavy price in many ways if these cuts are approved. The costs won't go away. They will just be shifted to emergency rooms and uncompensated care, which we all pay for. Of course, the heaviest cost is a human one.\"\"\n \nMedicaid is a federal-state program with equally-shared costs. The governor's plan requires the approval of the U.S. Centers for Medicare and Medicaid Services. The state hasn't sent the waiver application to federal authorities, but the governor still wants to bank the so-called savings in his budget. The congressional leaders urgied him to be mindful of the serious implications of the changes he’s advocating.\n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=272c599a-f85b-4c18-88c0-4774c9edf4c2,\"Day After OPEC Refuses to Increase Output and Sends Oil Back Over $100 a Barrel, Menendez Supports Legislation to Allow Justice Department to Increase Pressure on Oil Cartel to Bring Down Gas Prices \n                    \n                      June 9, 2011\n                     WASHINGTON – A day after OPEC meetings failed to reach agreement to increase oil output, sending oil prices back to over $100 a barrel,  Senator Menendez(D-J) today announced he would cosponsor Senator Herb Kohl’s (D-WI) “No Oil Producing & Exporting Cartels (NOPEC) Act” (S. 394; also currently Senate Amendment 389).   The bipartisan legislation would end the stranglehold that cartels have on the price of oil and prevent them from engaging in practices to increase gas prices artificially in the future.  It would do so by allowing the US Department of Justice to take action against foreign states, such as members of OPEC, for anticompetitive collusive practices to either fix gas prices or limit the production of oil to raise gas prices.   The legislation also states that OPEC’s activities are not protected by sovereign immunity and federal courts should not decline to hear such a case based on the “act of state” doctrine. \n“OPEC’s anticompetitive actions to manipulate the price of oil translate directly into pain at the pump for American consumers,” said Senator Menendez.  ”This legislation is an attempt to put an end to the stranglehold that OPEC has on oil prices worldwide, restore market forces, and prevent prices from continuing to escalate unreasonably.  In these hard economic times Americans’ simply cannot afford to be held over a barrel by OPEC.”\n \nClick here for a PDF of the legislation:\n \nhttp://www.gpo.gov/fdsys/pkg/BILLS-112s394rs/pdf/BILLS-112s394rs.pdf\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=01d5f5a1-6475-491f-82b5-2538fe5228f2,\"Menendez Talks to Students and Industry Leaders About Online Safety \n                    \n                      June 8, 2011\n                     WASHINGTON – U.S. Sen. Robert Menendez (D-NJ), sponsor of the SAFE Internet Act, today sponsored the 12th Annual Wired Kids Summit along with WiredSafety, a non-profit organization that focuses on educating students about responsible online use.  The day-long working event brought together industry leaders, policymakers, law enforcement officials, and young people to teach and share ideas to strengthen online safety for children and address the threats our youth face at the intersection of technology, privacy, and safety.\n\"\"We’re all becoming painfully aware that our kids and teenagers face challenges that just didn’t exist a decade ago. Technology moves so fast today it can seem daunting,” said Menendez. “But as adults, parents, and leaders we can’t just throw up our hands and do nothing. Whether it’s cyberbullying, online predators, or distractions behind the wheel and in the classroom, we have to keep up with online social dynamics to protect our kids. We have to talk to our children and listen to what they’re saying if we want to gain the insight necessary to get the right policies in place.”\nPanel discussion topics included: \nSafety on Social Networks\nOnline Privacy for Kids and Parents\nThe Internet Never Forgets: The Dangers of Sexting\nKnowing Where Kids Are – Concerns about Mobile Phone Location Tracking\nFighting Back Against Cyberbullying\nCurbing Distracted Driving\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4bf32e38-bb22-4ee7-b8bc-ca84bcfc60d1,\"Menendez, Runyan Lead Delegation Letter On Pay Parity At Joint Base\n                    \n                      June 8, 2011\n                     Washington, DC – This week, Senator Bob Menendez (D-NJ) and Representative Jon Runyan (NJ-3) sent a joint letter signed by the entire New Jersey delegation to the Director of the Office of Personnel Management (OPM).  The letter expressed concern about the problem of pay disparity for wage grade employees at Joint Base McGuire-Dix-Lakehurst (JB MDL), and requested the department to correct it.   The bipartisan group wrote OPM after learning details of a recent “Statement for the Federal Prevailing Rate Advisory Committee” (FPRAC).  According to the statement, instead of following recommendations for implementing immediate corrective actions to the issue of pay disparity, the Office of Personnel Management instead seeks additional years to review it.   \n \n In the letter, the delegation noted: “While we appreciate your desire to complete further analysis on the potential impact of the FPRAC changes, we remain concerned about the JB MDL employees who continue to be affected by this pay parity issue and urge you to complete this review process for our constituents in an expeditious manner.”  \nThe letter acknowledges the action by the Office of Personal Management to deal with the discrepancy of those employees under the General Schedule pay scale, but it also expresses concern over the issue of pay differences for workers under the Federal Wage System.  \n“While I give credit to OPM in addressing workers who fall within the General Schedule pay grade, I am nevertheless frustrated for those whose wages have yet to be adjusted,” said Runyan.  “McGuire, Dix, and Lakehurst were combined in the 2005 BRAC (Base Closure and Realignment Commission), and it is now 2011 – OPM should have already fixed the problem instead of asking for even more time to study it.  The wage disparity at the Joint Base is a problem created by the government, and these workers should not have to wait additional years for government to remedy it.  I will continue to work with my colleagues in New Jersey to ensure that civilian wage grade employees at JB MDL are given the same pay for performing the same work.”   \n\"\"Workers should not be paid differently for performing the same work in the same place,” said Senator Menendez.  “I appreciate that the Administration has partly corrected the problem, but some workers still face a pay disparity. It is time to fix this once and for all because New Jersey families can't afford delay when they are not receiving the compensation they deserve.\"\" \nBefore the 2005 BRAC decision, the current Joint Base MDL was three separate bases, with then Fort Dix and McGuire Air Force Base on one locality pay and Lakehurst on another.  When the installations were made into one joint installation, the wage grade pay parity issue was an inadvertent consequence. \n \n \n# # # # # # # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9b179443-8674-4bdf-b7fe-f4685b089042,\"America Must Have Iron-Clad, 21st Century Cyber Safeguards\n                    \n                      June 7, 2011\n                     WASHINGTON – In light of recent reports of computer hackers in China targeting email accounts of senior U.S. officials, U.S. Sen. Robert Menendez (D-NJ) announced today that he is introducing the Cybersecurity Enhancement Act of 2011, a bill that is also being introduced by Congressmen Michael McCaul (R-TX) and Dan Lipinski (D-IL) in the House of Representatives.\n \nThe bill invests in research and development to strengthen cyber security for federal networks and better enable the government, universities and the private sector to collaborate and easily share information. \n\n“Espionage, corporate sabotage, or attacks against this country must be taken seriously, even if these crimes are committed using a computer,” said Menendez.  “We cannot sit by while our oil refineries, our stock exchanges, and our federal government are repeatedly infiltrated and compromised. That’s why I’m introducing this bill and working with my colleagues in the House to ensure we develop the world’s highest caliber cyber security systems and develop iron-clad, 21st century network security safeguards.” \n“It’s been more than a year since the House passed this bill by an overwhelming margin,” said Rep. Lipinski, the Research and Science Education Subcommittee Ranking Member, who introduced the act in the 111th Congress. “Since then, the problem of cybercrime has only increased. In the past few months alone we’ve seen Sony’s PlayStation Network and its users’ data compromised; disturbing breaches at computer security, oil, and financial companies; and reports that hackers are increasingly targeting smartphones. Cybercrime evolves as quickly as technology itself – Congress should recognize that reality and pass the Cybersecurity Enhancement Act as soon as possible to prevent further losses to individuals, businesses, and the economy as a whole.” \n“All of our critical infrastructure is tied to cyber networks whether it be our utilities, power grids, financial institutions, or air traffic control system.  Virtually every sector is vulnerable.  I hope as with 9/11 we don’t turn a blind eye and have a denial of service attack before we address this issue,” said Rep. McCaul, who co-chaired the Center for Strategic and International Studies’ (CSIS) Commission on Cybersecurity for the 44th President, which presented the report Securing Cyberspace for the 44th Presidency to President Obama detailing recommendations for securing the country’s government networks and critical infrastructure. \n\nEarlier this year in February, officials from oil refineries and NASDAQ confirmed that some of their computer systems were repeatedly hacked into by outsiders. \n \nThe Cybersecurity Enhancement Act incorporates several key recommendations from the CSIS Commission on Cyber Security report.\n \n \n·        Improves Coordination in government: Gives the National Institutes of Standards and Technology the authority to set security standards for federal computer systems and   develop cybersecurity standards for agencies to follow.\n \n·        Improves Coordination outside of government: Creates a task force to coordinate research and development efforts between the federal government, universities, and the private sector.\n \n·        Improves R&D: Establishes cybersecurity research and development grant programs.\n \n·       Improves quality of cyber professionals:  Creates scholarship programs at NSF that can be repaid with federal service. Requires the President to conduct an assessment of cybersecurity workforce needs across the Federal government.\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3bac8306-f586-49b6-92cb-d983e98321b8,\"Menendez on U.S. Decision Not to Participate in Durban World Conference\n                    \n                      June 2, 2011\n                     WASHINGTON – Today, US Senator Robert Menendez (D-NJ) released the following statement in response to the Obama Administration’s decision not to participate in the Durban III World Conference Against Racism, scheduled to take place later this year during the UN General Assembly in New York. Last year, Menendez signed a letter led by Senator Gillibrand (D-NY) urging the U.S. to refrain from participating in the conference as long as it undermined the goal of fighting discrimination with demonstrations of anti-Semitism.\n \n “I applaud the State Department’s decision to forego participation in the Durban III World Conference Against Racism this year,” said Senator Menendez.  “People of democratic principle understand the misnomer, that Durban III will be yet another ugly opportunity to single out Israel and become a megaphone for anti-Semitism and anti-American vitriol.  I am grateful that a  letter that I signed to Ambassador Rice has helped in the decision to pull the United States out of this historically repugnant hate fest and can only hope that in the future a conference against racism is legitimately focused. “\n \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6992b141-6d8b-451b-b606-7e23bf5e33dc,\"Menendez Leads Call to End Billions in Big Oil Subsidies in Budget Negotiations\n                    \n                            Letter Follows Bipartisan Majority in Senate Voting for Menendez Bill to End Subsidies for Big Five Oil Companies\n                    \n                      May 31, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) and 19 of his colleagues are calling on Vice President Biden to end billions in Big Oil tax subsidies in any deal to raise the debt ceiling or cut the deficit. In a letter sent today, Menendez urged the Vice President to ensure oil companies pay their fair share to help lower the deficit just as working class taxpayers do. Closing the tax loopholes would immediately recoup an estimated $21 billion over the next decade, money that currently pads oil company profits while doing nothing to lower gas prices. The NJ Senator recently led efforts in the Senate to put an end to these tax loopholes through the “Close Big Oil Tax Loopholes Act”, which was supported by a bipartisan majority of Senators two weeks ago.  \n“As you work to forge an agreement between the parties to reduce the deficit, we urge you to ensure that this agreement include an end to the billions of dollars in subsidies that oil companies receive. As you know, a bipartisan majority of the Senate voted for legislation to close these loopholes for the Big 5 oil companies, and this mandate cannot be ignored. We all need to make sacrifices to lower the deficit, including the most wealthy and powerful among us,” wrote Menendez and his colleagues.  \n“Over the last decade, the Big 5 oil companies have raked in nearly $1 trillion in profits and tens of billions of dollars in taxpayer subsidies. Since 2005, these companies have spent over seven times more on stock buy backs and dividends than they have on oil exploration or efforts to reduce gasoline prices. The American people are demanding to know why they are forced to hand over taxpayer dollars to help oil executives enrich themselves when they're already paying $4.00 for a gallon of gasoline,” the letter continued.\n \nPDF of the Letter: http://menendez.senate.gov/download/?id=267e4ae5-24cf-4fbb-bf72-06b54a0046bd\n \nFull Text of the Letter:\n \nThe Honorable Joe Biden\n \nVice President\n \nThe White House\n \n1600 Pennsylvania Avenue\n \nWashington, DC 20501\n \nDear Vice President Biden, \nAs you work to forge an agreement between the parties to reduce the deficit, we urge you to ensure that this agreement include an end to the billions of dollars in subsidies that oil companies receive. As you know, a bipartisan majority of the Senate voted for legislation to close these loopholes for the Big 5 oil companies, and this mandate cannot be ignored. We all need to make sacrifices to lower the deficit, including the most wealthy and powerful among us. \nOver the last decade, the Big 5 oil companies have raked in nearly $1 trillion in profits and tens of billions of dollars in taxpayer subsidies. Since 2005, these companies have spent over seven times more on stock buy backs and dividends than they have on oil exploration or efforts to reduce gasoline prices. The American people are demanding to know why they are forced to hand over taxpayer dollars to help oil executives enrich themselves when they're already paying $4.00 for a gallon of gasoline. \nAt the same time, working class families and seniors have had a difficult time making ends meet. Many have seen their homes foreclosed, have seen their jobs downsized, and face daunting prospects for getting back on their feet. But so far, these same people are the only ones who have been asked to sacrifice to lower the deficit by accepting substantial cuts to social programs in the Continuing Resolution. \nNow, the budget resolution that has passed the Republican-controlled House of Representatives is asking for many more sacrifices of working class families and seniors. This legislation would end Medicare as we know it, further cut nutrition programs, and cut education programs by nearly 20%. \nIt is time for oil companies to give up the billions in taxpayer subsidies.  Despite the oil companies' expensive disinformation campaign, we know from analyses by the non-partisan Congressional Research Service and the Joint Economic Committee that cutting subsidies will not raise gas prices. What cutting these subsidies will do is help lower the deficit and make a miniscule dent in these companies' enormous profits. \nThat is why a majority of the Senate has embraced cutting oil subsidies as a way to lower the deficit, and it is also why we believe it must be part of any agreement you reach to raise the debt ceiling and lower the deficit. It also appears that House Leadership may be willing to accept such cuts as Speaker Boehner recently said oil companies \"\"ought to be paying their fair share\"\" and Budget Chairman Ryan has publicly endorsed cutting oil subsidies. \nThank you for your tremendous work to help the country deal with its mounting debt. We hope we can all work together, including oil companies, to lower the deficit in an effective and equitable fashion. \n \n       Sincerely, \n \n \nMikulski\n \nLeahy\n \nSanders\n \nShaheen\n \nFranken\n \nBrown (OH)\n \nReed\n \nStabenow\n \nGillibrand\n \nMerkley\n \nRockefeller\n \nWyden\n \nBlumenthal\n \nWhitehouse\n \nLautenberg\n \nCasey\n \nT. Udall\n \nBoxer\n \nMcCaskill\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=20fee2e5-b38d-4c9d-86c8-c818e9300df0,\"Menendez Honors American Servicemen and Women on Memorial Day\n                    \n                      May 30, 2011\n                     WASHINGTON-  On Memorial Day, US Senator Robert Menendez (D-NJ) released the following statement in honor of American servicemen and women:\n \n“Today we celebrate another Memorial Day that – once again -- finds our military men and women in harm’s way bravely serving our country in Iraq, Afghanistan, and around the world. We pray for them, for their safety, and for their families. We also remember all those who have served – past and present -- thousands of courageous men and women who have put their lives on the line, some who have made the ultimate sacrifice.”\n \n“The men and women who have worn the uniform have honored us with their service more than we could ever honor them. A grateful America should honor them not only with remembrance activities on this day, but with gratitude in our words and deeds every day of the year. In Congress, we will continue working to ensure they have access to the services and resources they deserve through legislative initiatives to meet their needs. From fighting for improved veterans health care to championing efforts to ensure women in combat operations receive a fair treatment upon their return, these are some of the efforts I have personally fought for as U.S. Senator. It is the very least we can do as a nation for our veterans, active military, and their families.”                                                                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e5bd362e-906a-4e67-9830-5d6f6fda4a84,\"Menendez Calls For Changes To “Combat Exclusion” Policy For Military Women\n                    \n                            On the ground combat experience direct way to rise through military ranks, yet women not properly recognized for role in combat-related assignments\n                    \n                      May 30, 2011\n                     Teaneck, NJ – On Memorial Day, U.S. Sen. Robert Menendez (D-NJ) was joined by Genevieve Chase, Founder and Director of American Women Veterans to discuss his efforts in the Senate to update the Department of Defense (DOD) “combat exclusion” policy so that military women are afforded the training, recognition and compensation they deserve for their work in ground combat operations. Senator Menendez will send a letter to Secretary Gates requesting additional information on DOD’s  “combat exclusion” policy and is currently working on legislation to modify it accordingly. “Women play an essential part in our nation’s armed forces and combat operations, but the role they play is not reflected in their promotion opportunities or the career choices available to them,” said U.S. Senator Robert Menendez.   “I look forward to engaging the Department of Defense on this issue and drafting legislation to update the department’s policies in a way that fully reflects women's presence in our nation’s military. Women should receive the recognition they bravely earn during their military careers.” \n \nThe Department of Defense “combat exclusion policy” precludes women from being assigned to ground combat units and being recognized as “combat troops”, yet women have served for years in ground combat operations as “attached” units that expose them to the same danger.  This policy keeps women from being recognized for their ground combat experience, which is one of the most direct ways to rise through the military ranks. These experiences are not even being documented in their official military and discharge records. This inconsistency has a direct impact on military women’s chances of having access to adequate training before deployment, proper recognition upon their return, and fair promotion opportunities.\n \nGenevieve Chase, of American Women Veterans, a non-profit organization that advocates for women in the military added: \"\"It's long past time to revise the current policy so that it accurately reflects the capacity with which women have and will continue to serve in our armed forces. It gives combatant commanders the ability to truly build the most cohesive, well-trained and effective teams for their respective missions.\"\"\n \nMenendez wants to ensure the women serving our nation have access to the training, treatment, and career opportunities they deserve. Of the roughly 2.2 million troops who have served in Iraq and Afghanistan, more than 255,000 have been women. Since those wars began, 134 female service members have been killed, and 721 have been wounded.\n \n \n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=07c1ba2e-c59d-4fff-b14d-1d6834b3a19d,\"Menendez Urges President Obama to Expedite Sale of Military Aircraft to Taiwan\n                    \n                            Military resources important for Regional Stability and US National Security\n                    \n                      May 27, 2011\n                     WASHINGTON – With reports and experts clearly outlining the direct threat Taiwan faces as a result of its decaying military aircraft and China’s unprecedented military buildup, US Senator Robert Menendez is leading efforts in the Senate to expedite the sale of 66 F-16 C/D aircraft to Taiwan.  In a bipartisan letter to President Obama, Menendez and 45 colleagues warned that further delay of the military resources Taiwan needs would result in its increased vulnerability to Chinese aggression, which would have direct security implications for the region and the United States. The bipartisan group urged President Obama to act swiftly and provide Taiwan with the F-16 C/D aircraft it needs pursuant to The Taiwan Relations Act (TRA) of 1979, which directs Congress to make decisions on arms sales to the country  based solely on the needs of Taiwan.  “We are deeply concerned that further delay of the decision to sell F-16’s to Taiwan could result in closure of the F-16 production line, and urge you to expedite this defense export process before the line closes. Without new fighter aircraft and upgrades to its existing fleet of F-16’s, Taiwan will be dangerously exposed to Chinese military threats, aggression and provocation, which pose significant national security implications for the United States.” the Senators wrote. \n \n \n \nPDF of the letter: \n \n \n \nFULL TEXT OF THE LETTER:\n \nMay 26, 2011\n \n \n \nPresident Barack Obama\n \nThe White House\n \n1600 Pennsylvania Avenue, N.W.\n \nWashington, DC 20500\n \n \n \nDear Mr. President:\n \n \n \nWe are writing to express serious concern about the military imbalance in the Taiwan Strait.  To maintain peace and stability in the Strait, it is critical that your administration accept Taiwan’s Letter of Request (LOR) and move quickly to notify Congress of the sale of 66 F-16 C/D aircraft that Taiwan needs in order to modernize its air force.\n \n \n \nSuccessive reports issued by U.S. and Taiwanese defense authorities clearly outline the direct threat faced by Taiwan as a result of China’s unprecedented military buildup.  Beijing presently has more than 1,400 missiles aimed at Taiwan, and China is in the process of deploying next generation Chinese and Russian manufactured ships, fighter aircraft, and submarines.  Military experts in both Taiwan and the United States have raised concerns that Taiwan is losing the qualitative advantage in defensive arms that has long served as its primary military deterrent against China.\n \n \n \nTaiwan desperately needs new tactical fighter aircraft.  Within the next decade Taiwan will retire 70% of its fighter force structure.  Its F-5s have reached the end of their utility, its Mirage fighters lack parts and life-cycle support, and its Indigenous Defense Fighters are being converted to a trainer role.  Additionally, Taiwan’s existing 145 F-16 A/B fighters all require a mid-life upgrade.  With F-16s already in its inventory, Taiwan is seeking to combine its fighter fleet around a single airframe with the commensurate cost and operational benefits.\n \n \n \nWe are deeply concerned that further delay of the decision to sell F-16s to Taiwan could result in closure of the F-16 production line, and urge you to expedite this defense export process before the line closes.  Without new fighter aircraft and upgrades to its existing fleet of F-16s, Taiwan will be dangerously exposed to Chinese military threats, aggression and provocation, which pose significant national security implications for the United States. \n \n \n \nThe Taiwan Relations Act (TRA) of 1979 directs both the Congress and the President to make decisions on arms sales to Taiwan based solely on the “judgment of the needs of Taiwan,” and we believe that Taiwanese pilots, flying Taiwanese fighter aircraft manufactured in the United States, represent the best first line of defense for our democratic ally, while presenting no offensive threat to China.\n \n \n \nWe urge you to act swiftly and provide Taiwan with the F-16 C/D aircraft that are critical to meeting our obligations pursuant to the TRA and to preserving peace and security in the Taiwan Strait.\n \n \n \nSincerely,\n \n \n \n1.    Robert Menendez(D-NJ)  \n \n2.    James Inhofe(R-OK)     \n \n3.    Jon Kyl (R-AZ)   \n \n4.    Dan Coats(R-IN)  \n \n5.    Ron Wyden (D-OR) \n \n6.    Tom Coburn (R-OK)\n \n7.    Roger Wicker (R-MS)    \n \n8.    John Cornyn (R-TX)     \n \n9.    John Barrasso(R-WY)    \n \n10.   Tim Johnson (D-SD)                \n \n11.   Joe Manchin(D-WV)                \n \n12.   Jeff Sessions(R-AL)                     \n \n13.   Joe Lieberman(I-CT)                         \n \n14.   John Boozman(R-AR)               \n \n15.   Richard Blumenthal(D-CT)            \n \n16.   John Hoeven(R-ND)                 \n \n17.   Saxby Chambliss(R-GA)             \n \n18.   Kay Bailey Hutchison(R-TX)         \n \n19.   Charles Grassley(R-IA)              \n \n20.   Scott Brown(R-MA)                        \n \n21.   Thad Cochran(R-MS)                       \n \n22.   Johnny Isakson(R-GA)                     \n \n23.   Marco Rubio(R-FL)                                    \n \n24.   Sherrod Brown(D-OH)              \n \n25.   Jim Webb(D-VA)                      \n \n26.   Ben Cardin(D-MD)                \n \n27.   Jon Tester(D-MT)                 \n \n28.   John McCain(R-AZ)\n \n29.   Jim Risch(R-ID)\n \n30.   Lindsey Graham(R-SC)\n \n31.   Mike Johanns (R-NE)\n \n32.   Richard Burr (R-NC)\n \n33.   Bill Nelson (D-FL)\n \n33.   Jim DeMint (R-SC)\n \n35.   David Vitter (R-LA)\n \n36.   Mike Crapo (R-ID)\n \n37.   Barbara Mikulski (D-MD)\n \n38.   Senator John D. Rockefeller IV (D-WV)\n \n39.   Mark Kirk (R-IL)\n \n40.   Mike Lee (R-UT)\n \n41.   Herb Kohl (D-WI)\n \n42.   Kelly Ayotte (R-NH)\n \n43.   Ron Johnson (R-WI)\n \n44.   Michael Enzi (R-WY)\n \n45.   Susan Collins (R-ME)\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5b3b2c3f-35b8-4a81-8301-43036f9ce5cd,\"Menendez Introduces Psoriasis Legislation\n                    \n                      May 26, 2011\n                     WASHINGTON – Senator Robert Menendez (D-NJ) today re-introduced legislation aimed at expanding research on psoriasis and psoriatic arthritis. The Psoriasis and Psoriatic Arthritis Research, Cure and Care Act authorizes the CDC to continue data collection examining prevalence rate, age of onset, natural history of the disease and associated health risks, among other factors.\n \n\"\"Too many people mistakenly think that psoriasis is merely a mild inconvenience,\"\" said Menendez. \"\"I believe we need to do more to recognize the pain and suffering caused by psoriasis and psoriatic arthritis. I am introducing this legislation to increase research in the hopes of finding more treatments - and hopefully a cure - for those living with these difficult diseases.\"\" \nAs many as 7.5 million Americans are affected by psoriasis - a chronic, inflammatory, painful, disfiguring and disabling disease for which there are limited treatments and no cure. In New Jersey alone, more than 220,000 people suffer from the disease that brings an increased risk for heart disease, diabetes, obesity and mental health conditions.\nSpecifically the legislation will: \nAuthorize $1.5 million to be appropriated to the CDC for each fiscal year from 2012 through 2017 for psoriasis and psoriatic arthritis data collection; \nRecognize psoriasis as a serious autoimmune disease and identifies the connection between psoriasis and a range of associated diseases;\nEncourage the National Institutes of Health (NIH) to work with the National Psoriasis Foundation and other stakeholders on convening a multidisciplinary meeting to discuss the future directions of research into psoriasis and its associated health risks; and\nEncourage NIH to consider the development of a virtual “center of excellence” to share and leverage information on psoriasis and psoriatic arthritis across disciplines, and to emphasize integrated psoriatic disease research.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c2cc3eae-0632-4bbc-bdbe-433769b308d4,\"To Commemorate Memorial Day, Senator Menendez Introduces Bill in Support of Military Family Unity\n                    \n                            Military Families Act would adjust the status of immediate family members of active military service members to that of lawful permanent residents\n                    \n                      May 26, 2011\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ), Harry Reid (D-NV), Dick Durbin (D-IL), Charles Schumer (D-NY), Patrick Leahy (D-VT), Daniel Akaka (D-HI), Michael Bennet (D-CO), and Kirsten Gillibrand (D-NY) reintroduced legislation that would grant lawful permanent residence status to the immigrant immediate family members of active-duty Armed Forces personnel. Under the Military Families Act, the Department of Homeland Security would adjust the status of an individual to that of lawful permanent resident if the individual is a parent, spouse, child, son or daughter of an Armed Forces member who is serving or has served honorably in an active-duty status in the military, air, or naval forces of the United States since 2001 or who died while serving our country. The bill would also assist the sons and daughters of a Filipino World War II veteran who bravely served our country.\n \n \n\"\"We owe the men and women who risk their lives in service of our nation so much, and that should include the right to be united with their closest family members in our country on a permanent basis,” said Menendez. “This bill will help ensure the families of those that have served our country with pride and valor don’t face unfair and unexpected deportation and are able to remain, close to their loved ones, in this land they call home. As we prepare to celebrate Memorial Day, we keep in our prayers and thoughts those who have died while serving our nation and their family members. We also honor those that put their life on the line on our behalf. With this bill, we can show one measure of our appreciation for their service and sacrifice. “\n \n“No service member should receive a call on the battlefield one day to learn that a spouse or a parent is being deported. I commend Sen. Menendez for this bill, which will ensure that thousands of our men and women in uniform will not need to worry that loved ones will be deported in their absence and will know that when they return home they can reunite with their close family members. This bill will also ensure that aging Filipino veterans, who served the United States admirably during World War II, will finally be reunited with children from whom many have been separated for decades due to long backlogs in our outdated immigration system.  This reform is long overdue.” Said Senator Reid (D-NV)\n \n“Our country’s service members and military families have put everything on the line to protect our country and keep America safe,” said Bennet (D-CO). “The last thing our service members should have to worry about is whether their loved ones won’t be there to greet them once they return home.”\n \n \nDHS officials estimate that many thousands of people in the military have spouses who are undocumented immigrants. Many of these service members would like to apply for legal status for their family members but are prevented from doing so by legal barriers created in 1996, when Congress last made major revisions to the immigration laws. This bill is a critical component of comprehensive immigration reform.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c74715ed-e505-46e2-9492-ac6bdd5e2e6e,\"Menendez, Enzi Unveil Legislation To Address Autism\n                    \n                            Legislation will Re-authorize the Combating Autism Act \n                    \n                      May 26, 2011\n                     WASHINGTON – Senators Robert Menendez (D-NJ) and Mike Enzi (R-WY) today unveiled legislation to reauthorize the Combating Autism Act of 2006. This legislation ensures that the critical programs established under the original law continue for an additional three years, including CDC surveillance programs, HRSA intervention and training programs, and the Interagency Autism Coordinating Committee (IACC).  These programs are set to expire in September of this year without any Congressional action.  Senators Richard Durbin (D-IL) and Scott Brown (R-MA) are original cosponsors of this legislation. Representatives Chris Smith (R-NJ) and Mike Doyle (D- PA) will be introducing companion legislation in the House of Representatives.\n \n \n\n“Families in New Jersey, more than anywhere else, understand that we need to address autism on multiple fronts.  I am proud to introduce this legislation to continue work on research, surveillance, awareness and treatment efforts in order to give these families the support they need,” said Senator Robert Menendez. “I look forward to passing the Combating Autism Reauthorization Act into law before it sunsets in September in order to ensure that we don’t lose the vital research and services that this legislation provides.” \n \n“This important legislation continues the good work of the original Combating Autism Act, which assists individuals living with autism and other developmental disabilities and their families, and ensures that those key programs do not expire,” said Senator Mike Enzi, Ranking Member on the Senate Health, Education, Labor and Pensions Committee. “This bill safeguards autism research and makes sure that there will be sustained awareness of autism across federal health agencies.  I am glad this bill will continue to provide a voice to the community of people affected by this disorder.”\n \n \nBob Wright, co-founder of Autism Speaks: \"\"Autism Speaks thanks Senators Menendez and Enzi for their leadership in introducing this critical legislation which deeply impacts the futures of the ever-growing number of Americans diagnosed with autism.  Action is needed quickly in Congress to assure the federal government remains committed to addressing this national health crisis.\"\"\n \nGeorge Jesien, Executive Director of the Association of University Centers on Disabilities (AUCD) said: “This law has shown significant progress in identifying possible causes and in increasing the capacity of professionals to screen, diagnose, treat and support individuals with Autism Spectrum Disorders (ASD). These efforts must continue.” \n\n \nJeff Sell, VP of Public Policy and General Counsel for the Autism Society, said: “The Autism Society applauds the efforts of Sen. Menendez and Sen. Enzi in connection with the introduction a bill to reauthorize the Combating Autism Act (CAA).  The CAA coordinates every available system in order to efficiently and effectively address the needs of individuals with autism, which now affects one percent of the American population. If this legislation is not passed before the CAA sunset provisions take effect in September 2011, the growing number of individuals with autism will go without needed services and important research will come to an end; we cannot let that happen.  Our sincere appreciation goes out to Sen. Menendez and Sen. Enzi for their support of the autism community.”\n \nLinda Meyer, Executive Director, Autism New Jersey, said:  \"\"The Combating Autism Act is a groundbreaking promise between government and families touched by the diagnosis of autism, and Autism New Jersey commends Sen. Menendez for his leadership in pursuing the swift reauthorization of this law. We also share the Senator’s commitment to addressing the immediate need for funding to provide the full range of unique services needed by those with autism spectrum disorders and the families and professionals who support them.\"\"\nLinda Walder Fiddle, Executive Director of the Daniel Jordan Fiddle Foundation, said:  \"\"The Daniel Jordan Fiddle Foundation is grateful to Senators Menendez and Enzi and Congressmen Smith and Doyle for their tireless commitment and leadership in ensuring that vital research and programs remain in place that are focusing on the growing prevalence of Autism Spectrum Disorders (ASD) in the United States. It would be a devastating blow to the over one million Americans living with ASD and their families if the wheels of progress came to a grinding halt and this Act will ensure that we move forward as a society in understanding and addressing the lifespan challenges of ASD.\"\"\n \nThe original Combating Autism Act of 2006 was a bi-partisan effort which expanded federal investment for Autism research through NIH, services, diagnosis and treatment through HRSA, and surveillance and awareness efforts through the CDC.  In total, CAA authorized $ 1 billion over five years, thereby having increased federal spending on Autism by 50 percent.   The 2006 bill included a FY11 sunset provision on all authorizations.  As a result, some existing federal efforts through NIH, HRSA, and CDC would cease to exist in the coming Fiscal Year without any action. This reauthorization bill, introduced today, will extend these important authorizations for three years.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=453d0c29-b7bf-4305-bca1-1fc94756a9e3,\"Menendez Votes to Protect Medicare\n                    \n                      May 25, 2011\n                     WASHINGTON – U.S. Sen. Robert Menendez took to the Senate floor today to vote to protect Medicare and speak in strong opposition the Republican plan to end the program.  The House-passed Republican budget proposal would have increased the cost of health care for seniors while extending billions in tax breaks to millionaires and Big Oil companies. The bill was defeated 40-57.  Below is an excerpt, video, and full text of Menendez’s remarks as prepared for delivery: \n \n“Mr. President, balancing the budget should not be about providing subsidies to Big Oil while ending Medicare as we know it.  It should not be about leaving seniors with higher health care costs to further line the pockets of oil company executives. That is not what the American people believe our collective values should be.  Just ask the people in New York who sent that message loud and clear last night. People are willing to do their part, if everyone is sharing in the sacrifice, but the Republican budget fails the test. It fails to recognize that we are all in this together and should benefit together, sacrifice together – each of us working together for the betterment of all of us.”\n \nVideo is available on the Senator’s YouTube channel, and below is the full text of his remarks as prepared for delivery:\n \n The Budget Debate\n \nRemarks by Senator Robert Menendez\n \nSenate Floor – May 25, 2011\n \n \n \nBudgets Are Not About Numbers Alone\n \nMr. President, I rise deeply concerned that my colleagues on the other side – in their ideological haze – seem to have lost sight of the real people whose lives will be affected by the choices we make.\n \nIt seems to me that the Republican budget proposal fails to realize that budgets are not just about numbers…\n \n…Budgets are about people -- their hopes, their dreams, their expectations for a better life for themselves and their children…\n \nWe all have a budget, every family has one, maybe not a formal budget, but we all have one…\n \nOn the revenue side we have what we earn from gainful employment, investments, interest on savings…\n \n…and on the flip side we have our expenses: our mortgage payment, groceries, utilities -- and we have our contributions perhaps to our church or synagogue, donations to a favorite charity, a favorite cause…\n \n…these are expressions of our personal values, just as the nation’s budget is an expression of our collective values…\n \nWe may not always think of the budget in those terms, but we should. It’s about our values.\n \nRepublicans Are Out of Touch with America\n \nWell, we found out last night -- in upstate New York -- that the Republican vision of ending Medicare as we know it does not reflect American values, and voters are not buying it.\n \nOnce again, our Republican colleagues have shown that they are out of touch with the American people and are on the wrong side of history when it comes to what Americans think is fair – what they think is right.\n \nAmericans don’t think it’s right to give subsidies to big oil companies, tax breaks to millionaires, and take Medicare away from seniors.\n \nThey are saying that it’s time to abandon the tired refrain of privatization and ending Medicare as we know it…\n \nIt’s time to abandon their ideological agenda that leaves seniors to fend for themselves.\n \nIt’s not who we are as a people, and it’s not what Americans want.\n \nMedicare -- Fort Lee Seniors\n \nThis week I met with a group of seniors in Fort Lee, New Jersey.\n \nWe discussed what the Republican budget cuts would do to the Medicare system they have depended on for decades.\n \nAt the Fort Lee senior center, a typical 65 year old, under the Republican budget proposal, would pay an additional $7,060 by 2022.\n \nRight now, over 140,000 seniors in New Jersey are impacted by the donut hole.\n \nUnder the Republican Plan those seniors will pay an additional $80 million for prescription drugs next year, and by 2020 New Jersey seniors currently in the donut hole will pay an additional $1.6 billion.\n \nNationwide, nearly 4 million seniors would pay $2.2 billion more for prescription drugs in 2012 alone under the Republican plan.\n \nAnd, by turning Medicaid into a block grant program, the Republican plan could cost America more than two million private-sector jobs over the next five years and threaten our economic recovery.\n \nBut that’s not all. Nationwide, the Republican plan could cut more than $500 billion in Medicaid funding for seniors and the disabled, including life-saving nursing home care.\n \nLeaving us with the uncomfortable and unanswerable question I pose to my Republican friends: What will those people do – where will they go? What happens to them under the Republican budget plan?\n \nThese are people, not budget numbers. What happens to them?\n \nWho Pays to Lower the Deficit and Who Does Not?\n \nWho pays to lower the deficit and who does not under this Republican budget proposal?\n \nThe answer is clear. Middle class families pay. Seniors pay, but nothing is asked of the wealthiest Americans, and Big Oil still gets billions in subsidies.\n \nBig Oil Subsidies\n \nIf we were serious about reducing the deficit in a balanced way, we would start with the obvious… subsidies for Big Oil.\n \nThe top 5 oil companies earned nearly $1 trillion over the last decade.\n \nPassing my bill to repeal oil subsidies would save taxpayers $21 billion over 10 years.\n \nWe can safely assume oil profits will be much greater in the decade to come with higher oil prices, but let’s assume the top 5 oil companies only get another $1 trillion in profits over the next decade.\n \n…And let’s not forget that these profits are in federal waters and on federal lands, so they are making these profits with America’s own resources.\n \nThe cost of exploration, development, and production of oil for the Big 5 oil companies is about $11 per barrel…\n \n…Oil has been trading at about $100 a barrel…\n \n…that means Big Oil companies are enjoying a profit of over $90 per barrel of oil they extract.\n \nWhy in the world would they ever need subsidies in such conditions?\n \nConclusion -- A “Balanced” Approach\n \nMr. President, “balancing” the budget should not be about providing subsidies to Big Oil while ending Medicare as we know it.  It should not be about leaving seniors with higher health care costs to further line the pockets of oil company executives.\n \nThat is not what the American people believe our collective values should be.  Just ask the people in New York who sent that message loud and clear last night.\n \nPeople are willing to do their part, if everyone is sharing in the sacrifice, but the Republican budget fails the test.\n \nIt fails to recognize that we are all in this together and should benefit together, sacrifice together – each of us working together for the betterment of all of us.\n \nWith that, Mr. President, I yield the floor.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=45ff51f0-1322-47c2-b0d5-9d126ef7738f,\"Menendez on Netanyahu Joint Address\n                    \n                      May 24, 2011\n                     WASHINGTON – In response to Israeli Prime Minister Benjamin Netanyahu making a joint address to Congress earlier today about U.S. - Israel relations., U.S. Sen. Robert Menendez (D-NJ) released the following statement:\n \n“Prime Minister Netanyahu's speech to a Joint Session of Congress was a vital, energetic affirmation of the strength of the U.S.-Israeli relations,” Menendez said. “The Prime Minister’s upbeat remarks clearly acknowledged Israel’s understanding of the shifting sands in the Middle East, and laid out a viable roadmap for a new opportunity for peace anchored in the security of Israel. But peace cannot be negotiated with a Palestinian Authority that includes Hamas, a terrorist organization that refuses to recognize the right of Israel to exist and calls for its destruction. We must continue to stand with Israel, a true democracy, a friend and a major security ally of the United States.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ea2571f9-ce6d-40d0-ad3d-dc8971d987d0,\"U.S.  Senator Robert Menendez Speaks Out Against Privatizing Medicare\n                    \n                            Republican proposed budget cuts call for ending Medicare as we know it and putting insurance bureaucrats between patients and their doctor\n                    \n                      May 24, 2011\n                     Fort  Lee, New Jersey – Today, U.S. Senator Robert Menendez (D-NJ) met with a group of New Jersey seniors at the Richard A. Nest Senior Citizen Center in Fort Lee to discuss the details of the proposed Republican budget cuts and what they would do to the Medicare system they have depended on for decades. Senator Menendez expressed his opposition to the Republican proposal that would increase their costs immediately, as well as future generations that will depend on Medicare. \n\n“I don’t support balancing our budget on the backs of our seniors, and certainly will not support Republican proposals to end Medicare and double seniors’ out-of-pockets costs,” said Senator Menendez. “When the options are to give tax breaks to the wealthy and to profitable Big Oil companies instead of protecting Medicare, the road is clear: we have to save Medicare and Medicaid for future generations of Americans.”\n\nThe Republican proposed budget cuts privatize Medicare, ending the benefits program as we know it for new beneficiaries in 2022. For seniors currently on Medicare, it would increase out-of –pocket expenses for prescription drugs in the first year.  The Republican plan would also eliminate jobs, hurting our economic recovery.       \nU.S. Impact of Republican Budget Cuts on Medicare and Medicaid:•    The Republican plan to end Medicare will increase out-of-pocket health care costs for a typical 65 year-old senior in the U.S. by $6,359 in 2022 – more than double the cost under current law.•    The Republican plan could force at least one million seniors to pay over $110 million more for annual wellness visits in 2012.•    Nationwide, nearly four million seniors would pay $2.2 billion more for prescription drugs in 2012 alone under the Republican plan.•    By turning Medicaid into a block grant program, the Republican plan could cost America more than two million private-sector jobs over the next five years.•    Nationwide, the Republican plan could cut more than $503 billion in federal health care funding for seniors and the disabled through Medicaid, including life-saving nursing home care.In New Jersey, seniors would see the following increases:\n•    Additional out-of-pocket expenses per typical 65 yr. old enrollee in NJ under the GOP Budget = $7,060\n•    Additional Cost Seniors Currently In Donut Hole Will Pay For Prescription Drugs in NJ under the GOP Plan In 2020 = $1.6 billion•    Amount of Additional Spending for Annual Wellness Visit Under GOP Budget (2012) = $3,135,077\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4a92a421-be8c-4d1e-b670-edb08dbbc37a,\"New Jersey Lawmakers Announce $1.5 Million To Assist Workers Affected By Fort Monmouth Closure\n                    \n                      May 20, 2011\n                     (Washington, D.C.) – Today, Sen. Robert Menendez (D-NJ), Rep. Rush Holt (NJ-12), Rep. Frank Pallone (NJ-6), Sen. Frank R. Lautenberg (NJ), announced a $1.5 million National Emergency Grant to assist workers affected by the closure of Fort Monmouth.  Under this grant, hundreds of New Jersey workers to be dislocated between now and September 2011 will be provided with training and re-employment services over the next year.\n \n “Few things can be as overwhelming as losing your source of income in these tough economic times,” Menendez said. “Fort Monmouth’s closure will not only impact our military, it will impact families throughout the community whose livelihoods solely depend on the base’s operation. This funding will help thousands of these workers access the training they need to find a new job and get their life back on track.”\n \n“I am pleased that the U.S. Department of Labor has accepted my April request to provide this much-needed funding as quickly as possible,” Holt said. “Especially in today’s difficult economy, it is critically important that America support our military and civilian workers affected by Fort Monmouth’s closure.  This grant will fund vital retraining and job placement services to help workers find good jobs, support their families, and drive the New Jersey economy toward recovery.”\n \n\"\"The Fort Monmouth employees who choose to remain in New Jersey possess a unique set of skills that are important to the state’s competitiveness,” said Pallone. “As we get closer to the fort's shutdown date, the training and re-employment services provided by the Department of Labor will ease the transition for Fort Monmouth workers. Putting these employees back to work as soon as possible is critical for New Jersey’s workforce and to our ability to innovate in this economy.”\n“After the flawed decision to close Fort Monmouth, we made a commitment to help ensure local residents have the resources they need to get back to work so that they can provide for their families,” stated Lautenberg.  “This critical federal funding will provide skills, training and future job opportunities to those workers affected by the closure.”\n \nAwarded to the New Jersey Department of Labor and Workforce Development, today’s $1.5 million grant brings the total amount of funding by the Labor Department related to Fort Monmouth base realignment and closure actions to $3,803,164.  In 2006 and 2007, the state was approved for a total of $803,164 to develop a strategic plan addressing both the workforce and economic issues related to the closing of Fort Monmouth.  On November 18, 2008, the state was approved for funding in the amount of $3 million, with $1.5 million released initially, to begin providing services to BRAC-affected workers.  The grant announced today represents the other half of that $3 million award.\nNational Emergency Grants are part of the secretary of labor’s discretionary fund and are awarded based on a state’s ability to meet specific guidelines.  For more information, visit http://www.doleta.gov/NEG. \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=eb4da8ae-57fc-4855-8ea3-1aece410ff9e,\"Menendez to Introduce Bill to Protect U.S. Manufacturers from Toxic Competition\n                    \n                            Bill Calls for Standards that will Help Protect Jobs, Worker Health and the Environment\n                    \n                      May 20, 2011\n                     CARLSTADT, NJ – Senator Robert Menendez (D-NJ) today announced legislation to impose federal standards on glass beads used for reflective highway markings and for other purposes.  Each year more than 500 million pounds of glass beads are used on U.S. highways to stripe pavement and for inclusion in electronics and other products.  Substandard imported glass beads could undercut the U.S. domestic beads industry and eliminate jobs in New Jersey and other states.  Studies also show that the presence of heavy metals in beads manufactured abroad not only expose American workers using the beads to contaminants; the beads have the potential of leaching toxic substances into surface water and groundwater. The legislation will help protect the health of workers, U.S. jobs, and the environment.\n \n“We cannot let foreign companies undermine US manufacturers by dumping cheap, toxic glass beads on our market.  I intend to protect jobs, protect worker health, and protect the environment with one national standard for arsenic and lead in glass beads,” said Senator Menendez. “Potters Industries and its employees are appreciative of the Senator’s sponsorship of legislation which focuses on key issues which are affecting our industry. We are confident  that passage of this legislation is the right and responsible way of maintaining good paying American jobs while protecting worker safety and the environment.” Said Scott Randolph- President Potters Industries.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4c409952-2c8d-47e7-b660-87ef364d1834,\"Menendez Applauds DHS’ Decision to Investigate Secure Communities Program\n                    \n                            Senator Menendez Supported Rep. Lofgren’s Call for an Investigation into the Program’s Implementation last Week\n                    \n                      May 19, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today applauded the Department of Homeland Security Office of the Inspector General decision to investigate the agency’s Secure Communities program related to misinformation provided about whether states and localities could opt-out of the program and whether the program succeeds in meetings its goal of targeting serious criminals.  Last month, Menendez supported Representative Lofgren’s (D-San Jose) call to investigate the program amid reports that the Department of Homeland Security misled local governments to coerce them into participating in the Secure Communities program and ignored concerns with the program’s impact on community crime fighting efforts.  The Department’s aggressive implementation of the program has failed to address state and local concerns about the program’s impact on community policy and crime fighting. \n \n“While I strongly agree that serious criminals should be removed from the United States, the Secure Communities program has strayed from its core mission. State and local police officers who are on the front line of crime fighting should be able to decide whether this program helps or hurts their ability to fight crime. I welcome the investigation by the  DHS Office of Inspector General who heard our call to investigate this program which has been aggressively implemented without appropriate planning and safeguards.” \n \nRep. Lofgren’s letter to the Department of Homeland Security supported by Sen. Menendez:\n \n \n \nApril 28, 2011\n \n \n \nCharles K. Edwards                                       \n \nActing Inspector General                               \n \nU.S. Department of Homeland Security       \n \n245 Murray Drive, SW, Bldg. 410                \n \nWashington, DC 20528          \n \n \n \nTimothy Moynihan\n \nAssistant Director\n \nOffice of Professional Responsibility\n \nImmigration and Customs Enforcement\n \nP.O. Box 144755\n \nPennsylvania Ave. NW\n \nWashington, DC 20044\n \n \n \nDear Inspector General Edwards and Assistant Director Moynihan:\n \nIn recent months, it appears that Department of Homeland Security (DHS) and Immigration and Customs Enforcement (ICE) personnel and contract staff may have made false and misleading statements to local governments, the public, and Members of Congress in connection with the deployment of the Secure Communities program.  In response to a Freedom of Information Act request, ICE and the Federal Bureau of Investigations (FBI) have released many thousands of pages of documents, including internal e-mails and memoranda.  Having conducted with my legal staff an initial review of the documents that have been made public, I believe that some of these false and misleading statements may have been made intentionally, while others were made recklessly, knowing that the statements were ambiguous and likely to create confusion.  I now write to request that your offices conduct thorough investigations into any misconduct, including possible violations of criminal law, revealed by the documents.  As the identities of many persons were redacted from publicly available documents and some documents were withheld entirely or have yet to be made public, it is important that you review the conduct of all relevant persons in order to determine who bears responsibility for any misconduct that you find.\n \nThe statements in question deal primarily with the issue of whether Secure Communities is a mandatory program that all states and localities must participate in or whether localities may be permitted to “opt out” of the program out of a concern that participation will present a barrier to community policing efforts and will make it more difficult to implement a law enforcement strategy that meets public safety needs.  Under the Secure Communities program, fingerprints collected by local law enforcement agencies upon booking that are routinely submitted to State Identification Bureaus (SIBs) in order to be checked by the FBI Criminal Justice Information Services Division (CJIS) Integrated Automated Fingerprint Identification System (IAFIS) are now checked against immigration databases and provided to ICE for purposes of immigration enforcement.  Some localities have asked that fingerprints submitted to their SIBs be checked against criminal, but not immigration, databases, and Members of Congress and their offices have sent letters, asked questions for the record, and held briefings on that topic.\n \nAccording to a recent statement by a DHS official, “Secure Communities is not voluntary and never has been.”  (Lee Romney, Congresswoman Calls for Investigation of Enforcement Program That Screens for Illegal Immigrants in Jails, Los Angeles Times, April 22, 2011).  Unfortunately, this statement cannot be reconciled with many of the public and private statements made by DHS and ICE personnel over the past two years.  For instance, more than two years ago, ICE responded to a written question for the record posed by then-Chairman David Price that “ICE does not require any entity to participate in the information sharing technology at the state or local level.”[i]  Similarly, in an August 26, 2009, e-mail exchange specifically on the topic of whether Secure Communities is mandatory or voluntary, one ICE official wrote that Secure Communities “will remain voluntary at both the State and Local level. . . . Until such time as localities begin to push back on participation, we will continue with this current line of thinking.”[ii]  A memorandum prepared in 2009 for ICE Director John Morton on the topic of voluntariness acknowledges that “[t]o date, Secure Communities has stated in various arenas, including Congress, that state and local participation in IDENT/IAFIS Interoperability is voluntary.”[iii] \n \nIn order to clarify significant confusion about the program, I wrote to DHS Secretary Janet Napolitano on July 27, 2010, specifically asking “how local law enforcement agencies may opt out of Secure Communities by having the fingerprints they collect and submit to the SIBs checked against criminal, but not immigration, databases.”  In her response, Secretary Napolitano described what steps must be taken by a locality “that does not wish to participate in the Secure Communities deployment plan” and explained that “[i]f a local law enforcement agency chooses not to be activated in the Secure Communities deployment plan, it will be the responsibility of that agency to notify its local ICE field office of suspected criminal aliens.”  This response clearly indicated to me that localities were permitted to opt out of the program in the manner described in my original letter.  And according to one recently released e-mail by an FBI/CJIS employee, my conclusion should have come as a surprise to no one; commenting on an earlier, but nearly identical, draft of the Secretary’s response to my letter, the FBI employee wrote: “reading the response alone would lead one to believe that a site can elect to never participate should they wish (at least it reads that way on my small [Blackberry] screen).”[iv]\n \nOne issue at the heart of any deceptive statements by DHS or ICE personnel appears to be ICE’s decision to adopt a counterintuitive and misleading definition of the term “opt out” to refer only to the ability of localities to avoid receiving the results of immigration checks conducted on fingerprints submitted to the SIBs, but not the use of fingerprints to check immigration databases.  According to one e-mail exchange, this decision was approved by unnamed ICE front office personnel orally, rather than in writing, in order to give officials “plausible deniability.”[v]\n \nIt is unacceptable for government officials to essentially lie to local governments, Members of Congress, and the public.  Unfortunately, my review of the e-mails that have been made public suggests that some government personnel have been less than completely honest about this program over the last two years.  It is critically important that you thoroughly investigate this matter and that any misconduct result in real consequences.  I am available if you have any questions or would like to discuss this matter in greater detail.  Thank you for your prompt attention to this matter.\n \nSincerely,\n \nZoe Lofgren\n \nRanking Member\n \nSubcommittee on Immigration Policy and Enforcement\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4fa4ce22-9998-43ee-a794-1e7b3a2f2777,\"Menendez Applauds Senate Rejection of Expanded Coastal Drilling\n                    \n                      May 18, 2011\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) applauded the Senate for soundly defeating the “Offshore Production and Safety Act” by a vote of 42-57.  The bill would have expanded offshore drilling without important environmental safeguards and would have resulted in drilling less than 100 miles from the Jersey Shore.\n \n“Today’s vote shows that ‘Drill Baby Drill’ may be a catchy slogan, but it is not an energy policy.  It is gratifying to see that a bipartisan majority supported my proposal to end tax subsidies , while a bipartisan majority rejected legislation to expand offshore drilling.”\n \nEarlier today, U.S. Sen. Robert Menendez (D-NJ) spoke out on the Senate floor against Sen. McConnell’s proposal for offshore oil drilling. He emphasized that the bill will put coastal economies like the Jersey Shore at risk while doing nothing to lower gas prices.  Broadcast-quality footage of Menendez’s comments are available via Pathfire, under the U.S. Senate tab. A radio actuality is available here - http://demradio.senate.gov/actualities/menendez/051811_MENENDEZ_2.mp3 or you can watch his floor speech on his YouTube channel. Below is also the full text of his remarks as prepared for delivery\n \nTo get footage of his floor speech yesterday about his Close Big Oil Tax Loopholes Act – also go to Pathfire, under the U.S. Senate tab. A radio actuality is available here - http://demradio.senate.gov/actualities/menendez/051811_MENENDEZ.mp3. And a youtube clip of the 12:36 floor speech is available at - http://www.youtube.com/user/SenatorMenendezNJ#p/u/1/wmR_0EKQz-k\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4a7e7283-0d3f-4951-a684-cd4db2adcd29,\"Senator Menendez Condemns Incursions into Israel and Syria’s Involvement on its Border\n                    \n                      May 17, 2011\n                     NEW JERSEY –U.S. Sen. Robert Menendez (D-NJ) strongly condemned the invasions of thousands of Palestinians and others into Israel territory from various borders saying, “these attempts to lash out at a neighboring country are desperate, tragic, and utterly unhelpful to the cause of peace. In particular, Syria’s role in encouraging the incursions is a provocation clearly intended to deflect criticism away from the violence being perpetuated by the Syrian government against its own people.”\n \n \n \nThe incursions followed the release of a U.N. statement confirming that as many as 850 people have been killed thus far in Syrian anti-government protests. Menendez said, “Syria's calculated provocation at the Israeli border is a desperate attempt to distract its people and the world from the violent repression of Syrian protesters. We will not be distracted and will continue to support Israel's right, as a sovereign state, to prevent unauthorized crossings at its borders. We simultaneously stand by the right of Syrian people to peacefully assemble in their own country. President Assad has clearly lost the legitimacy to govern and it should not surprise us that a regime that is capable of using brute force against its own people would have no qualms about unleashing violence against its neighbor Israel.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a6eb7ae4-cff1-477d-9d3a-be6a82ee8d9c,\"Majority of Senate Votes for Menendez Repeal of Oil Tax Subsidies\n                    \n                      May 17, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) released the following statement after the cloture vote to proceed to consideration of the “Close Big Oil Tax Loopholes Act”, which garnered a majority vote in the Senate (52-48).  Unfortunately, it did not garner the 60 votes needed to overcome the Republican filibuster.  Only 2 Republican Senators voted in support of considering the legislation.  Below is a video of Menendez’s closing remarks on the Senate floor as prepared for delivery.\n \n“A bipartisan majority of the Senate has spoken.  If we are going to reach a deal on raising the debt ceiling, cutting wasteful oil subsidies needs to be on the table.  We cannot reduce the deficits on the backs of working class Americans alone.  Even the most wealthy and powerful among us must pay their fair share.”\n \nVideo Menendez’s closing remarks on the Senate Floor: http://www.youtube.com/watch?v=DHAsn-t64mM\n \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bbcca28c-0fe0-4d35-b858-f0ceb8782cfb,\"Senators Call for Assessment of Pakistan’s Commitment to Fight Terrorism and Cooperate with the U.S. Before Providing Additional Security Assistance \n                    \n                            Senators send letter to Secretaries Clinton and Gates\n                    \n                      May 17, 2011\n                     WASHINGTON -  In response to the recent discovery of Osama bin Laden’s compound in Pakistan,  a group of U.S. Senators are questioning Pakistan’s commitment to combating terrorism, and leading an effort in the Senate to re-evaluate U.S. security assistance to Pakistan.  In a letter to Secretary of State Hillary Clinton and Defense Secretary Robert Gates, Sens. Robert Menendez (D-NJ), Ben Nelson (D-NE), Max Baucus (D-MT), Dianne Feinstein (D-CA), and Jon Tester (D-MT) call on the Administration to assess Pakistan’s commitment to combating terrorism on its own soil before providing additional assistance through the FY 11 and FY12 budgets.   The letter urges the Administration to assess Pakistan’s commitment to and efforts toward the following core benchmarks: ceasing support to extremist and terrorist groups; preventing Al Qaeda, the Taliban, and associated terrorist groups from operating on the territory of Pakistan; and strengthening counterterrorism and anti-money laundering laws.\n \n                                                                                                                                                                                                                  “At a time when we are contemplating cutbacks to foreign assistance programs and scrutinizing every domestic program to ensure maximum effectiveness, it is incongruous to be providing enormous sums to the Pakistani military unless we are certain that it is meeting its commitment to locate, disrupt and dismantle terrorist threats inside its borders.  Prior to the provision of any additional security assistance, including Coalition Support Funds and Pakistan Counterinsurgency/Counterinsurgency Capability Funds, we urge you to assess Pakistan’s commitment to and efforts toward: (A) ceasing support to extremist and terrorist groups; (B) preventing Al Qaeda, the Taliban, and associated terrorist groups from operating on the territory of Pakistan; and (C) strengthening counterterrorism and anti-money laundering laws,” the Senators wrote in the letter.\n \n \n \nCurrently the third largest recipient of U.S. security assistance after Afghanistan and Israel, Pakistan received a total of $2.7  billion in security assistance and reimbursements in FY2010 alone - a staggering 140 percent increase since 2007. This includes $1.5 billion in direct reimbursements to Pakistan’s Treasury through the Coalition Support Fund – an amount that is double the amount provided the previous fiscal year.\n \n \n \n \n \nFULL TEXT OF THE LETTER BELOW:\n \nMay 17, 2011\n \n \n \nThe Honorable Hillary Clinton\n \nSecretary of State\n \n \n \nThe Honorable Robert Gates\n \nSecretary of Defense\n \n \n \nCongratulations on the success of your efforts to locate and bring Osama Bin Laden to justice.  This achievement will allow our nation to begin looking forward and to assess our next steps in the continuing effort to combat terrorist threats against Americans.\n \n \n \nIn this context, we are gravely concerned about the commitment of Pakistan’s security establishment to fighting terrorism, specifically its efforts to locate and disrupt terrorist activity within its borders.  The discovery of Osama Bin Laden in a military town less than forty miles from the Pakistani capital of Islamabad indicates, at a minimum, a lack of commitment by the Pakistani military to aggressive cooperation with the United States.  This is particularly concerning as the Congress again considers increasing security assistance to Pakistan.\n \n \n \nIn the last five years, the United States has dramatically increased security assistance and reimbursement to Pakistan making it the third largest recipient of such funds after Afghanistan and Israel.  U.S. security-related assistance to Pakistan has increased by 140% since 2007 to $2.7 billion in FY 2010.  This includes large increases in direct reimbursements to Pakistan’s Treasury through the Coalition Support Fund – a fund intended to reimburse U.S. allies for incremental costs associated with supporting U.S. combat operations.   In FY 2010, the United States reimbursed Pakistan for $1.5 billion in expenses through the Coalition Support Fund, which represents more than double the amount provided the previous fiscal year.\n \n \n \nAt a time when we are contemplating cutbacks to foreign assistance programs and scrutinizing every domestic program to ensure maximum effectiveness, it is incongruous to be providing enormous sums to the Pakistani military unless we are certain that it is meeting its commitment to locate, disrupt and dismantle terrorist threats inside its borders.  Prior to the provision of any additional security assistance, including Coalition Support Funds and Pakistan Counterinsurgency/Counterinsurgency Capability Funds, we urge you to assess Pakistan’s commitment to and efforts toward: (A) ceasing support to extremist and terrorist groups; (B) preventing Al Qaeda, the Taliban, and associated terrorist groups from operating on the territory of Pakistan; and (C) strengthening counterterrorism and anti-money laundering laws.\n \n \n \nWe believe that conducting this assessment will be crucial for the Congress to determine whether to provide the full range of security assistance called for in the FY 11 Continuing Resolution and the FY 12 budget.\n \n \n \nWe share your commitment to addressing all terrorist threats to our nation and we recognize the strategic importance of Pakistan.  However, we cannot overlook the logical conclusion of recent events, which is to question whether the Pakistani security establishment is ardently working to prevent terrorist groups from operating on Pakistani soil.  \n \n \n \nSincerely,\n \n \n \nSenator Robert Menendez\n \nSenator Ben Nelson\n \nSenator Jon Tester\n \nSenator Dianne Feinstein\n \nSenator Max Baucus\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b57febc0-b795-474e-b4e4-828cb4010faa,\"Menendez Re-Introduces Legislation to Prevent Taxpayers Subsidizing Big Businesses in U.S. Territories\n                    \n                            Legislation aims to ensure funds collected from rum tax are reinvested in territories’ public services rather than private corporations’ pockets\n                    \n                      May 17, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today re-introduced legislation to ensure that more taxpayer money for the U.S. territories is used to invest in job creation and vital public services instead of subsidizing foreign corporations. The Investing in U.S. Territories, Not Corporations Act would cap at 15 percent the amount of money U.S. territories can use to subsidize rum producers.  “Everybody knows we have to reform the cover-over program to ensure that taxpayer money is being invested in vital public services for the U.S. territories, such as building roads, hiring teachers, and providing health care,” said Menendez. “This bill would ensure that both territories will have more money for these integral services to create jobs and help the lives of working families, instead of that money being used to provide excessive subsidies to large profitable corporations.” \n \nRecently, the US Virgin Islands and Diageo reached an agreement to shift up to $2.7 billion from the rum tax to private corporations, setting a precedent potentially devastating to the territories’ economies. Created to provide budgetary support to the territories for essential public infrastructure and services, the federal excise tax on rum sold in the U.S. is given—“covered-over”—to the treasuries of Puerto Rico and the U.S. Virgin Islands. Unless action like this legislation proposes is taken, excessive subsidies paid out of cover-over revenues could siphon off billions of dollars that would otherwise go to funding for vital public services. \n \nBackground\n \nUnder current law, most of the revenue generated from the federal excise tax on rum sold in the U.S. is given—“covered-over”—to the treasuries of Puerto Rico and the U.S. Virgin Islands.  The purpose of the cover-over program is to provide budgetary support to the territories for essential public infrastructure and services.\n \n \n \nHowever, a deal that the United States Virgin Islands (USVI) brokered with Diageo, a British multi-national spirits company, to entice it to move production of Captain Morgan rum to St. Croix is threatening to gut the program by redirecting billions of dollars that are currently being used to fund vital public services in the territories to increase the profits of Diageo.  The deal commits 47.5 percent of cover-over revenues, totaling some $2.7 billion over 30 years, from the treasuries of the territories to Diageo. While decisions by companies to move operations to and from jurisdictions happen all the time as the order of regular business, the immense size of the subsidies given over to Diageo as a prerequisite for this deal highlights a tremendous loophole in the cover over program that must be closed.\n \n \n \nUnless action is taken, excessive subsidies paid out of cover over revenues could siphon off billions of dollars that would otherwise go to funding for vital public services.  This is a tremendous opportunity cost for the territories as this is money that is currently going to such services as building roads and infrastructure, hiring teachers and improving schools, and providing funding for Medicaid. \n \n \n \nThe Diageo deal sets a terrible precedent for the territories and long-term could be devastating to both territories.  While some may argue this was a unique deal, the fact is that similar deals have been negotiated since.   The precedent has clearly been set; without action, the substantial financing of the rum industry by American taxpayer dollars will become the standard, not the exception.   \n \n \n \nInvesting in U.S. Territories, Not Corporations Act:\n \nThis bill would reform the cover-over program by placing a reasonable cap of 15 percent on the amount of money the territories could use to subsidize private liquor producers.  The bill doesn’t play favorites or pick winners or losers; it simply requires the territories to use at least 85 percent of the taxpayer dollars they receive through the cover over program for vital public services as intended. \n \nCap Excessive Subsidies: Would ensure territories aren’t using the program to excessively subsidize rum companies.  If a territory exceeds the 15 percent limit, its cover over revenue in the next year would be reduced by twice the amount that it exceed the cap.  \nEnsure Transparency: Would give the Secretary of the Treasury authority to require documentation of the uses of cover over revenues to ensure transparency.  \nCreate Reasonable Allocations of Revenues: Would create reasonable minimum and maximum percentage of the cover-over revenues each territory could receive.  The percentages would be no more than 70 percent and no less than 65 percent for Puerto Rico, no less than 30 percent and no more than 35 percent for USVI.  The cover-over program has a similar provision already with respect to the allocation of taxes raised from rum imported from other parts of the world, but the bill would expand to include all cover over revenues. \nCreate Additional Taxpayer Protections: Would create a prohibition on cover over revenues for rum that is redistilled in the States to make other liquors.  Recently, labels for a ‘whiskey’ largely made from alcohol redistilled from USVI rum were submitted to Treasury by Fortune Brands, a corporation that owns the other large scale rum producer in USVI.  If Congress doesn’t pass this prohibition, liquors such as vodka or whiskey could become eligible for cover-over subsidies if cane-neutral spirits made from rum produced in the territories is a main ingredient.  This is a new loophole that could cost the US Treasury billions.\n \n \n \nThese sensible reforms will preserve the integrity of the program and ensure more funding for both of the territories. This is money that could be used to provide critical public services to families living in the territories, rather than to provide excessive subsidies to corporations.       \n \n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4776a976-37f3-4da8-8450-480338539a76,\"Sen. Menendez, Rep. Pascrell Announce Bipartisan Legislation to Help Create Jobs by Encouraging Private Investment in Water Infrastructure Upgrades\n                    \n                            Lifting the cap on private activity bonds for water infrastructure will make needed infrastructure updates more affordable.\n                    \n                      May 16, 2011\n                     Lifting the cap on private activity bonds for water infrastructure will make needed infrastructure updates more affordableCLIFTON – At the site of one of North Jersey’s worst water main breaks in the past year, U.S. Rep. Bill Pascrell, Jr. (D-NJ-8) and U.S. Sen. Robert Menendez (D-NJ) announced bipartisan legislation aimed at creating jobs through upgrading our degraded water infrastructure in a way that is more affordable for water customers.              On Aug. 24, 2010, a century-old water main broke adjacent to a doctor's office located at 1439 Broad St. in Clifton. Millions of gallons of water gushed out of the 54-inch pipe. In the days that followed, officials reported a total of nine smaller breaks in the surrounding area stemming from the original main break. The pipe ruptures affected residents in Clifton, Passaic, Nutley and other areas.  “Right here, less then a year ago, tens of thousands of residents of Clifton and Passaic were left with little to no water pressure and had to boil their water, after a 51-inch pipe burst, leaking 40 million gallons of water,” said Pascrell, a member of the House Ways and Means and Budgets Committees. “Experts say that our water systems need $500 billion in investment in order to meet safe drinking water and sanitation needs over the next 20 years. That is why last week, I, along with Rep. Geoff Davis, introduced the Sustainable Water Infrastructure Investment Act of 2011 in the House, and Sen. Menendez and Sen. Mike Crapo introduced the same legislation in the Senate, which aims to leverage private capital to repair our pipes while also creating jobs. This legislation will stimulate the economy and create good jobs, while also providing us with the necessary pipes to avoid water main disasters that occur too often. “We’re all too familiar with the increasing frequency of water main breaks that unexpectedly flood random areas, disrupting businesses, transportation, and the daily lives of so many on any given day,” said Senator Menendez. “This legislation could create over a million jobs leveraging a modest investment by the federal government into billions of dollars of critical private economic investment to upgrade and rebuild aging water infrastructure in communities across the nation.  Creating private sector jobs to ensure American families have reliable access to clean water is a win for our workers, taxpayers, and the communities we live in.” The Sustainable Water Infrastructure Investment Act of 2011 (H.R. 1802) provides for the removal of state volume caps on private activity bonds (PABs) for water and wastewater financing. Congress has already exempted airports, intercity high-speed rail, and solid waste disposal sites from these bond caps. The legislation would allow water systems easier access to capital throughout the nation.  PAB issuance would be one of the fastest forms of federal assistance when applied to water and wastewater projects, with only 90-120 days needed to complete the process – from approval to sale – and get Americans to work. In the first year of implementation alone the legislation is expected to create 28,500 new jobs.                                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=23866ef0-ad29-4570-8286-3966d955423d,\"Menendez on President Obama's New Plans to Increase Domestic Oil Production\n                    \n                      May 14, 2011\n                     WASHINGTON – Today, US Senator Menendez (D-NJ) released the following statement in response to President Obama’s new plans to increase domestic oil production. Last week Senator Menendez (D-NJ) announced plans to reintroduce the Clean Ocean and Safe Tourism (COAST) Act to ban drilling off the Atlantic Coast from North Carolina to Maine.  He is also the author of the “Close Big Oil Tax Loopholes Act”, to eliminate tax subsidies for the five largest oil companies.\n \n\"\"I applaud the President for repeating his call to end wasteful oil subsidies and working to clamp down on oil speculation. I also believe the President is taking important steps to make domestic drilling safer. As for his plan to expand coastal drilling, however, I think it is disappointing he would pursue a strategy that comes with considerable risk while offering no hope of driving down gas prices. The Department of Energy has projected that drilling all our coasts, even the Jersey Shore, would only reduce gas prices by 3 cents in 2030.\"\"                                                                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0cde9e3a-fade-415d-8f8a-76f8bcc690c1,\"Menendez, Lautenberg Support New Jersey's Appeal of Federal Disaster Aid Denial for Severe March Flooding\n                    \n                            State's Initial Request Was Rejected in April\n                    \n                      May 13, 2011\n                     Washington, D.C. — U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today urged the federal government to approve New Jersey’s appeal for a federal disaster declaration related to the severe flooding that devastated parts of the state in March.  The original request included four counties: Bergen, Essex, Morris and Passaic. The state’s appeal adds Warren County to the disaster declaration request to better reflect the impact on the state.\n \n“The flooding in New Jersey has caused pain and hardship for our residents and local businesses, and the steep clean-up and recovery costs will be a significantburden for many individuals and local governments who are facing already tight budgets,” the Senators wrote.  “These communities and our citizens deserve all the support that can be provided.”\n \nIf approved, the declaration would free up emergency federal funding to reimburse state emergency management agencies and counties for their recovery and rebuilding efforts.  The request is also for funding to help residentswhose property was damaged by the flooding. \nThe full text of today’s letter can be found here and is included below: \n \n \nMay 13, 2011\n \n \n \nW. Craig Fugate \nAdministrator\n \nFederal Emergency Management Agency\n \n500 C Street, SW\n \nWashington, DC 20472\n \n\nDear Administrator Fugate: \n \n \n      We are writing to support the State of New Jersey’s appeal following the Federal Emergency Management Agency’s denial of the state’s request for a major disaster declaration in response to the severe storms which hit the state in early March.  The storm caused significant flooding in many areas and New Jersey initially requested that the counties of Bergen, Essex, Morris and Passaic receive a declaration.\n      The state’s initial request did not represent the full extent of the damages and did not request that Warren County be included in the declaration.  However, New Jersey is now requesting in its appeal that a declaration include Warren County, which should more accurately reflect the damages and the impact on our state.  In addition, it should be noted that New Jersey has been hit with several severe storms recently and is currently under a federal disaster declaration as a result of a severe snow storm that hit last December.               \n      The flooding in New Jersey has caused pain and hardship for New Jersey residents and local businesses. Clean-up and recovery costs will be steep creating a significant burden for many individuals and local governments who are facing already tight budgets.  These communities and our citizens deserve all the support that can be provided. \n      Thank you in advance for your consideration of this important matter.  I look forward to your prompt action on this issue.    \n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1cc8d82e-e1a3-481d-b01f-1ca70d796c49,\"Menendez Presses for Commitment from Future Libyan Government During Hearing\n                    \n                      May 12, 2011\n                     WASHINGTON – Earlier today during a Senate Foreign Relations committee hearing assessing the situation in Libya, U.S. Sen. Robert Menendez (D-NJ) asked Deputy Secretary of State James Steinberg about conditioning the legal recognition of a new Libyan state on compliance with a new U.S. investigation into the 1988 bombing of Pan Am flight 103 over Lockerbie, Scotland and on access to convicted Lockerbie bomber Abdelbaset Ali Mohmed al-Megrahi.  On Wednesday, Menendez met with members of the Libyan Transitional National Council, including the interim Prime Minster Mahmoud Gibril who agreed to cooperate should the United States open a new investigation into the deadly Pan Am bombing. \n \n  \n \nBelow is an unofficial transcript of Menendez’s questions and Steinberg’s answers.\n \nSen. Menendez: “Mr. Secretary, yesterday I met with Mr. Gibril and he indicated that once a new government is formed, they would be willing to cooperate with the U. S. on a new investigation into the Pan Am 103 bombing. Given the additional information that would be available from a compliant Libyan partner, is the administration open to a new investigation into the Pan Am bombing and would it commence legal action on U.S. soil against all persons responsible that would be derived from that information for persons planning, authorizing, or carrying out that attack?”\n \nDeputy Secretary of State James Steinberg: Senator, like you, we’ve been very struck by this attitude that the TNC leadership has had in the recognition that going forward that part of a long-term relationship with the United States and the international community would be increased transparency about the past and really living up to those international principles. On the specific question, obviously this is an issue for the Justice Department in terms of how they would proceed there.\n \nMenendez: But you all interface with the Department of Justice in the context of what our future relationship is going to be with a future Libyan government and recommendations you would make to the Justice Department?\n \nSteinberg: As I said, we certainly welcome the offer that he made and we think it would be important in terms of long-term relations between the United States and a democratic government of Libya that they be supportive and cooperative with that. The only thing I can’t specifically speak to is whether we would open a new criminal investigation.\n \nMenendez: Has the State Department raised this question with Mr. Gibril and the TNC?\n \nSteinberg: In general terms yes, and I will be meeting with him myself.\n \nMenendez: Well I hope you get him to verify to you what he said to me. Secondly, to your knowledge have members of the TNC and Mr. Musa Kousa been interviewed by the Department of Justice, the FBI or the State Department about their knowledge, and planning and authorization of the Pan Am 103 bombings?\n \nSteinberg: Senator we have, as I told you last time we talked about this, we have made clear to the British authorities that we believe it’s important for us to have appropriate access there. Because this is an on-going criminal investigation, in terms of the specifics, I have to defer to the Justice Department.\n \nMenendez: Has the State Department raised, outside of the Justice Department, questions of that nature with Mr. Musa Kousa? have you had access to Mr. Musa Kousa yet?\n \nSteinberg: I don’t know that the State Department has had access, I’d have to check but I don’t believe so.\n \n \nMenendez: Can you get back to me?\n \nSteinberg: Yeah I can get back to you\n \nMenendez: Would the State Department, as a condition of a recognition of a future Libyan government that is, let’s say for argument’s sake, derived from the TNC, make as a condition of that recognition and effort, both a commitment to a new investigation, a cooperation on Pan Am 103 and access to Mr. al-Megrahi?\n \nSteinberg: Again, Senator, it’s something I think we should raise with the TNC in terms of what they’re prepared to do and make clear the importance that we attach to that.\n \nMenendez: I hear you, but I hear the diplomatic speak there that doesn’t let me understand whether or not you are going to create, the State Department is going to recommend to the President of the United States, along with the NSC, what position we take with the TNC and under what conditions we take it. Seems to me that this is perfectly reasonable to expect that Americans who’ve had their families killed at the hands of the orders of Mr. Qadaffi should be able to derive from a new Libyan government committed to, what I hope will be democracy, human rights, and the rule of law, would as a condition precedent extract that as a commitment.\n \nSteinberg: I guess what I would say Senator is that I think we share the importance that you attach to it. What has been important and what you heard, is that in the first best case, is for them to offer to do this without our making it a condition, rather than looking like somehow this is being imposed on them, for them to willingly assume that. So I would encourage them and we would hope that they would do that. And I think that’s what we would hope is that what Mr. Gibril told you would be what they did and rather than because we imposed a commitment, it’s because they understood in terms of their own democratic development.\n \nMenendez: I appreciate your willingness to suggest that it would be helpful and cooperative. It seems to me that in any relationship there are, you know, with  Mr. Qaddafi we actually created conditions precedent, he had to renounce terrorism, he had to get rid of his weapons. Those were conditions. I see no reason why the United States government cannot insist in the process of pursing forward a relationship with the TNC that they be committed to what, in essence, is the fulfillment of the rule of law and justice. So for this Senator at least, I want you to know that how I vote on whatever the State Department is going to recommend in this respect, I’m sure that my colleagues, Sen. Lautenberg, Sen. Schumer, Sen. Gillibrand, who have all shown interest on this, are going to be very concerned with what the State Department does in that regard.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6cb96b04-f698-43e1-b4d9-ffdd1b86a68d,\"Menendez Questions Big Oil On Subsidies\n                    \n                      May 12, 2011\n                     WASHINGTON – U.S. Sen. Robert Menendez (D-NJ) questioned oil executives from some of the largest oil companies earlier Thursday during a Senate Finance Committee hearing about oil and gas tax incentives and rising energy prices. He emphasized that in light of posting record profits for the first quarter of 2011, the Big 5 Oil companies do not need taxpayer help.\n \n“The fact of the matter is what we have is a lot of hardworking New Jerseyans who are being hit really hard at the pump and at the same time are subsidizing these Big 5 oil companies,” said Menendez.\n \nTop executives from five of the largest multinational oil and gas companies appeared before the committee, including John Watson, the Chairman of the Board and Chief Executive Officer of Chevron Corporation; Marvin Odum, U.S. President of Shell Oil Company; H. Lamar McKay, Chairman and President of BP America Inc.; James Mulva, Chairman and Chief Executive Officer of ConocoPhillips; Rex Tillerson, Chairman and Chief Executive Officer of Exxon Mobil Corporation.\n \nMenendez also pressed the CEO of ConocoPhillips about the company’s claim that Democratic proposals to strip industry tax incentives are “Un-American.”\n \n“Mr. Mulva, yesterday in a press release, your company called proposals to eliminate wasteful oil subsides ‘un-American’ and I want to hear from you, do you make those accusations lightly?” Menendez continued, “Or did you really mean to question my patriotism and the patriotism of the 28 other United States senators who are cosponsors? Do you believe that President Obama is un-American because he has proposed cutting oil subsidies? Do you believe that former President Bush, Speaker Boehner, and Congressman Ryan are un-American because they have suggested cutting oil subsides?”\n \nMulva responded that it was not meant to be taken personally.\n \nA webcast of the hearing is available at http://finance.senate.gov/hearings.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e5d39116-c36c-4128-b18b-73a92b461565,\"Menendez Banking Hearing Finds Consensus on Need for National Standards to Protect Homeowners from Foreclosure Abuse \n                    \n                      May 12, 2011\n                     WASHINGTON -  Today, US Senator Robert Menendez (D-NJ) chaired a Housing, Transportation, and Community Development Subcommittee hearing on “The Need for National Mortgage Servicing Standards.”  There was a consensus among all six witnesses on the need to develop at least some national mortgage servicing standards to improve the experiences of homeowners at risk of foreclosure, better align the incentives of mortgage servicers with mortgage investors, develop consistent expectations for mortgage servicers, and eliminate the limited and fragmented oversight by the banking regulators.  Those witnesses included homeowner advocates, investor advocates, and industry. \n \n“The mortgage industry can often feel like a confusing maze to families and even investors. Developing a set of clear and consistent national mortgage standards will not only help make the experience of dealing with home lenders an easier one, it will help ensure we can keep a check on the mortgage industry and prevent a national foreclosure crisis from happening again,” said Senator Menendez.\n Specific national mortgage servicing standards suggested by various witnesses include the following:\n \n \nElimination of the dual track (continuing to proceed with foreclosure while working on a mortgage modification, sending mixed messages to the homeowner)\nEstablishing a single point of contact at the mortgage servicer\nEliminate potential conflicts of interest among mortgage servicers (for example, servicing first liens while holding the second; charging homeowners fees that go to affiliated foreclosure businesses, such as force placed insurance or home maintenance costs) \nRestrictions on foreclosure fees that are “marked up” by mortgage servicers\nRequire servicers to maximize the Net Present Value of the loan when considering mortgage modifications regardless of their conflicts of interest\nIndependent and effective enforcement of representation and warranties in pooling and service agreements\nStandardizing pooling and servicing agreements\nImproving incentives in mortgage servicer compensation methods to align those incentives more with mortgage investors and homeowners\nGreater transparency about servicer cash flows and mortgage modification efforts for homeowners and mortgage investors\nStandardize foreclosure timelines\nNot allowing foreclosures to proceed when mortgage servicing standards have been violated\n \n Witnesses included:\n \n \nMs. A. Nicole Clowers, Acting Director, Financial Markets and Community Investment, Government Accountability Office.  \nMs. Diane E. Thompson, Of Counsel, National Consumer Law Center; \nMs. Laurie F. Goodman, Senior Managing Director, Amherst Securities; \nDr. Anthony B. Sanders, Professor of Finance, George Mason University School of Management; \nMr. David Stevens, President and CEO, Mortgage Bankers Association; \nMr. Richard A. Harpootlian, Attorney, Richard A. Harpootlian P.A.\n \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=735fcdc6-09bf-4695-99b1-0e077b157c5f,\"In Letter, Reid and Menendez Urge Senate Republicans to Cosponsor Legislation to Bring Down Deficit By Ending Wasteful Handouts to Big Oil Companies \n                    \n                            Letter Calls On Republicans To Join Effort To Close Tax Loopholes And End Unneeded Subsidies For Big Oil Companies Raking In Record Profits While Hiking Prices\n                    \n                      May 11, 2011\n                     Washington — Nevada Senator Harry Reid and New Jersey Senator Robert Menendez today sent a “Dear Colleague” letter to Senate Republicans asking them to cosponsor legislation that would reduce the deficit by ending wasteful taxpayer handouts to big oil companies making record profits while American families pay $4 at the pump.\n \n \nThe bill would eliminate more than $21 billion in subsidies for the five largest, most profitable oil companies in the world. Some Republicans have publicly expressed a willingness to consider supporting legislation to cut wasteful subsidies for oil companies.\n“It is encouraging that some Republicans have publicly expressed a willingness to consider supporting legislation to cut wasteful subsidies for oil companies and we look forward to working with all of you to lower the deficit,” the Senators wrote. “If we are to truly address our national debt, we will all have to tighten our belts and make sacrifices - even the most wealthy and powerful among us… The Big 5 oil companies have made nearly $1 trillion in profits in the last decade - and more than $30 billion of that in the first three months of this year alone. At the same time, many Americans are struggling to make ends meet, find a job, or fill their gas tanks with $4 per gallon gasoline. We simply cannot solve our budget problems by asking working class families to shoulder the burden alone.” \n \n\n \nFull text of the letter is below:\n \nDear Colleague:\n We are writing to ask that you consider cosponsoring S. 940, legislation we introduced this week to eliminate more than $21 billion in oil subsidies for the five largest, most profitable oil companies in the world.  It is encouraging that some Republicans have publicly expressed a willingness to consider supporting legislation to cut wasteful subsidies for oil companies and we look forward to working with all of you to lower the deficit.   \n If we are to truly address our national debt, we will all have to tighten our belts and make sacrifices - even the most wealthy and powerful among us.  The Big 5 oil companies have made nearly $1 trillion in profits in the last decade - and more than $30 billion of that in the first three months of this year alone.  At the same time, many Americans are struggling to make ends meet, find a job, or fill their gas tanks with $4 per gallon gasoline.  We simply cannot solve our budget problems by asking working class families to shoulder the burden alone. \n Some have claimed that cutting $2 billion in annual oil subsidies to the Big 5 oil companies will somehow make oil and gasoline more expensive.  We all know this argument is false.  If we just compare the $2 billion in taxpayer subsidies to the projected $125 billion in profits the Big 5 oil companies are expected to make this year, it becomes very clear that repealing these subsidies would be only a small sacrifice for these companies.  If the Big 5 oil companies could live with just $123 billion in profits, they could pay their fair share in taxes, help lower the deficit, and not raise the price of gasoline. \n Thank you for taking the time to consider cosponsoring our bill to eliminate more than $21 billion in oil subsidies for the Big 5 oil companies.  Please do not hesitate to contact either of us or our staff if you have any questions.  We look forward to working with you to lower the deficit in an equitable and effective manner. \n Sincerely, \n \nSenate Majority Leader Harry Reid\n \nSenator Robert Menendez\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=649ae0ba-6219-4fa6-9173-e1cc83a135a0,\"Democrats Urge Oil CEOs to Admit They No Longer Need Taxpayer-Funded Handouts, Use Money to Cut Deficit Instead\n                    \n                            Senators Release Letter On Eve Of Major Senate Hearing Where Heads Of Five Largest Oil Companies Will Testify\n                    \n                      May 11, 2011\n                     Washington, DC—Today Democrats sent a letter to the CEOs of the Big Five oil companies urging them to admit in Senate hearings tomorrow that they no longer need taxpayer-funded subsidies. The heads of the country’s five largest oil companies are scheduled to testify before the Finance Committee tomorrow.\n \n \nWith oil at more than $100 a barrel, these five companies make $2.8 billion a week in profits while taking home billions a year in subsidies.\n \n \n“We urge you to take this opportunity to publicly admit that, given your companies' prodigious profits, you no longer need taxpayer subsidies,” the Senators wrote. “We hope you will do the right thing for our country's fiscal health and endorse their discontinuation.\n \n“We are sure you will agree that our nation’s mounting debt is a serious threat to our recovering economy.  But if we are truly serious about cutting our deficit, it is imperative that we start by getting rid of wasteful and ineffective corporate subsidies that have outlived their usefulness…. While families across the country are being squeezed, your industry is doing better than ever.  And yet the U.S. government continues to dole out $4 billion a year in tax breaks to your companies. These subsidies are not sustainable, and we intend to end them.”\n \n \n \nThe full text of the letter is below:\n \n \n \nRex W. Tillerson                                                         John S. Watson\n \nExxon Mobil Corporation                                           Chevron Corporation\n \n5959 Las Colinas Boulevard                                       6001 Bollinger Canyon Road Irving, Texas 75039-2298                                           San Ramon, CA 94583\n \n \n \nJames J. Mulva                                                            Marvin Odum\n \nConocoPhillips                                                            Shell\n \n600 North Dairy Ashford                                           One Shell Plaza\n \nP.O. Box 2197                                                            910 Louisiana Street Houston, TX 77252-2197                                           Houston, TX. 77002\n \n \n \nH. Lamar McKay\n \nBP America\n \n501 Westlake Park Blvd\n \nHouston, TX. 77079\n \n \n \n \n \nDear Sirs:\n \n \n \nAs members of the Senate Committee on Finance, we eagerly await your testimony at our panel’s hearing tomorrow. We urge you to take this opportunity to publicly admit that, given your companies' prodigious profits, you no longer need taxpayer subsidies. We hope you will do the right thing for our country's fiscal health and endorse their discontinuation.\n \n \n \nWe are sure you will agree that our nation’s mounting debt is a serious threat to our recovering economy.  But if we are truly serious about cutting our deficit, it is imperative that we start by getting rid of wasteful and ineffective corporate subsidies that have outlived their usefulness.  That is why we introduced legislation yesterday—the Close Big Oil Tax Loopholes Act (S. 940)—that would end $21 billion in projected taxpayer subsidies for the five largest integrated oil companies.  The former President of Shell Oil, John Hofmeister, had the courage to say, in no uncertain terms, that your companies no longer need these giveaways. We urge you, in your testimony tomorrow before the Senate Finance Committee, to acknowledge the same.\n \n \n \nWe agree with the vast majority of Americans that taxpayer subsidization of your companies is no longer necessary.  When many of these tax breaks were passed into law, oil was less than $20 a barrel. Today, the price of oil is hovering around $100 a barrel.  Because of the exponential increase in the price of oil, the companies you successfully manage have reported a combined total of $36 billion in corporate profits in the first quarter of 2011 alone. That amounts to a staggering $2.8 billion per week of profit.\n \n \n \nEvery single one of us has heard from constituents back home who are struggling with the rising price of gasoline. While families across the country are being squeezed, your industry is doing better than ever.  And yet the U.S. government continues to dole out $4 billion a year in tax breaks to your companies. These subsidies are not sustainable, and we intend to end them.\n \n \n \nWe are hopeful that you will agree that S. 940 makes economic sense in our shared goal of putting our country back on the right fiscal track.  \n \n \n \nSincerely,\n \n \n \nSenator Bob Menendez\n \nSenator Chuck Schumer\n \nSenator Debbie Stabenow\n \nSenator Bill Nelson\n \nSenator Ben Cardin\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8c6409b1-471e-4774-87ae-77e27cf12a5a,\"Lieberman, Rubio Introduce Bipartisan Resolution Condemning Human Rights Abuses in Syria, Urging Further Sanctions \n                    \n                            Resolution Says Assad Has Lost Legitimacy\n                    \n                      May 11, 2011\n                     WASHINGTON, D.C. – A bipartisan coalition of Senators introduced a resolution today strongly condemning the escalating crackdown in Syria, warning that President Bashar Al Assad has lost legitimacy and urging President Obama to ratchet up the pressure on his regime. The resolution, introduced by Senator Joe Lieberman (ID-CT) and Senator Marco Rubio (R-FL), is cosponsored by Senators John McCain (R-AZ), Jon Kyl (R-AZ), Richard Durbin (D-IL), Lindsey Graham (R-SC), John Cornyn (R-TX), Johnny Isakson (R-GA), Bob Menendez (D-NJ), Ben Cardin (D-MD), Bob Casey (D-PA), John Barrasso (R-WY), Kirsten Gillibrand (D-NY),  Chris Coons (D-DE), Mark Kirk (R-IL), John Hoeven (R-ND), and Kelly Ayotte (R-NH).\n \n \nThe bipartisan resolution calls for the expansion of targeted U.S. sanctions against Syrian officials responsible for human rights abuses, including against President Assad personally, and for the Obama Administration to work at the United Nations Security Council to hold Syrian human rights abusers accountable. The resolution also expresses unambiguous support for the aspirations of the Syrian people, as they continue peaceful protests in the streets of cities and towns across their country despite a dramatically heightened campaign of barbaric violence against them by the Syrian regime, and urges President Obama to speak out directly and personally about the situation in Syria. \n \n“At precisely the moment when the Assad regime is sharply escalating its brutal crackdown in an attempt to crush peaceful protesters, this resolution sends a strong bipartisan message that the United States—together with our international partners—needs to ratchet up our support for the Syrian people along with pressure against the Syrian government,” said Senator Joe Lieberman. “Bashar Al Assad’s legitimacy has run out, and it is time for us to align ourselves unambiguously with the aspirations of the Syrian people for a peaceful, democratic future.”\n \n“This is a significant moment in the Middle East, and I believe America should be on the right side of the historic change that is sweeping across the region.  In our words and actions, it should be clear that America is on the side of the Syrian people and that we support their right to peacefully pursue a better future for their country.  We must also send an important message to the Syrian regime that we condemn its crimes and that Bashar al Assad should no longer be treated as the legitimate ruler of Syria,” said Senator Marco Rubio.\n \n\"\"Through its gross human rights violations and indiscriminate use of violence against peaceful Syrian demonstrators, the Assad regime has lost any legitimacy it once had to rule,\"\" said Senator John McCain.  \"\"There should be no illusions that this brutal government, which also has the blood of many U.S. soldiers and countless Iraqi civilians on its hands, will undertake the meaningful reforms that the Syrian people are demanding. The United States should welcome a peaceful change of regime in Syria and support the Syrian people in bringing it about. With this resolution, the Senate stands in solidarity with the Syrian people, and we urge the Administration to do more to aid their cause.\"\"\n \n\"\"It is my hope that the Senate will swiftly approve this resolution and the Obama administration will immediately implement its recommendations.  The President must not doubt the moral imperative of supporting the Syrian people against their brutal regime.  The President could also show his seriousness by recalling Ambassador Ford and shutting down Syria's Embassy to the United States,\"\" said Senate Minority Whip Jon Kyl.\n \n“This resolution states clearly that the United States will not stand by as the Syrian government expands its crackdown on opposition groups and protesters.  It calls for expanded sanctions against those responsible for human rights abuses and global condemnation of the violent and brutal attacks on Syrian civilians.  But most importantly it also says to the people of Syria that America stands with them and support their quest for freedom,” Assistant Senate Majority Leader Dick Durbin said.\n \n“This is an appropriate first step for the Congress to take in this matter,” said Senator Lindsey Graham.  “The Syrian leadership is violating the basic human rights of its citizens and using brutal force to put down peaceful protests.  There’s no doubt the Syrian leadership is on the wrong side of history.  Our resolution acknowledges the sacrifices the Syrian people are making in trying to change their oppressive government.  Now is the time for the Administration and Congress to stand with the Syrian people in their struggle.”\n \n“By using violence against peaceful protestors, the Assad regime continues to show its true colors and its disdain for its own people,” said Senator John Cornyn. “Now is the time for the United States and other nations to stand up for the Syrian people and support their hunger for freedom and democratic aspirations.”   \n \n“I join my colleagues in calling for an increase in targeted sanctions against Libya’s leaders who are responsible for the continuing violent attacks on their own people. It is critically important that we send a strong message to President Assad and others around the world that their actions will not be tolerated,” said Senator Johnny Isakson. “It is my hope that President Obama will heed our call to hold Syria accountable.”\n \n“The atrocities committed by Syria are deeply troubling and the time has come to broaden U.S. sanctions and hold President Assad accountable for his actions,” said Senator Robert Menendez, a member of the Senate Foreign Relations Committee. “I hope we can pass this resolution to help our friends in the region usher in a future where their voices are heard, their rights are respected, and their aspirations are met.”\n \n“Syria’s human-rights violations have been well documented for decades, but the recent actions taken by the government against its own citizens peacefully demonstrating are particularly egregious.  We stand by the people of Syria and support their rights to be heard by their government,” said Senator Ben Cardin, a member of the Senate Foreign Relations Committee and co-chair of the U.S. Helsinki Commission.\n \n\"\"The Syrian government has unleashed devastating violence on its own people\"\" said Senator Bob Casey. \"\"We should stand in solidarity with the Syrian people during this dark period in the country's history and support their efforts to bring about democratic change.\"\"\n“Americans believe in and support the fundamental principles of democracy and the ability of individuals to peacefully speak out against their government.  We cannot continue to sit on the sidelines while millions of Syrians are being oppressed. The White House must take action to oppose the Syrian regime’s brutal violence against its own citizens and serious human rights violations,” said Senator John Barrasso.\n \n \n“I am pleased to join my colleagues in condemning the unconscionable actions perpetrated against the Syrian people by the Assad regime. As President Assad continues a brutal crackdown against demonstrators in the streets, the United States and international community stand with the Syrian people and supports their calls for democracy. The violence must come to an end, and President Assad and other Syrian government officials must be held accountable for the deplorable abuse of human rights,” said Senator Chris Coons.\n \n\"\"The United States and our allies must condemn the Assad regime in the strongest possible terms for the continued murder of Syrian citizens struggling for their basic freedoms and human rights, Senator Mark Kirk said. “The Administration should immediately widen its sanctions to freeze the assets of and deny visas for Bashir al Assad, his family and senior officials and businessmen inside Syria's leadership circle.”\n \n“Brave people in nations across the Middle East, and now Syria, are rising up to challenge the oppressive regimes that have hindered their progress and deprived them of the most fundamental human rights for decades,” said Senator John Hoeven. “With this bipartisan resolution, the U.S. Senate speaks with one voice to condemn the violence of the Assad government and to support the democratic aspirations of the people of Syria as they call peacefully for a brighter future for their country.”\n \n\"\"The Syrian people deserve a government that represents their interests and respects their human rights.  I condemn in the strongest terms the Assad regime’s violence against the Syrian people,\"\" said Senator Kelly Ayotte.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c91dc3fb-39a1-401a-baaf-4aa524bd1476,\"Senator Menendez statement on ConcoPhillips\n                    \n                      May 11, 2011\n                     “ConocoPhillips  just doesn’t get it,” said Sen. Robert Menendez (D-NJ). “It’s outrageous that they would question the patriotism of public officials who are looking out for millions of families suffering pain at the pump, rather than blindly throwing taxpayer money at some of the wealthiest companies in the country.  Big Oil made $36 billion in profits in the first quarter of this year, while families are struggling to find a job and pay for $4 gas. ConocoPhillips seems to think it should not have to do its share while American families shoulder the burden of reducing the deficit. ConocoPhillips has gone too far and I expect an apology at the Finance Committee hearing tomorrow morning.”\n \n \n \nBelow is the press release ConocoPhillips sent out:\n \n \nConocoPhillips Highlights Solid Results and Raises Concerns Over Un-American Tax Proposals at Annual Meeting of Shareholders\n \nHouston, May 11, 2011 --- ConocoPhillips [NYSE:COP] is making significant progress on its plan to deliver long-term value, the company said today at its Annual Meeting of Shareholders. ConocoPhillips initiated its multi-year returns-enhancement plan in 2010, designed to increase distributions to shareholders, refocus the company’s portfolio and renew the company’s commitment to strategic, financial and operational discipline.\n \n\"\"Our performance has delivered significant value to our shareholders, and our 2010 total shareholder return of 39 percent was the highest among our industry peer group,\"\" said Jim Mulva, chairman and chief executive officer. \"\"We have continued our commitment to increase shareholder distributions in 2011, announcing a 20 percent increase in the quarterly dividend rate and an additional $10 billion share repurchase program.\"\"\n \nOver the next two years, ConocoPhillips plans to execute a $28 billion capital program, almost 90 percent of which has been allocated to Exploration and Production, supporting the company’s greater-than-100-percent reserve replacement target. During this timeframe, the company plans to sell an additional $5-10 billion of non-core assets. ConocoPhillips continues to increase spending on maintenance and safety.\n \nFurther expanding on the outlook for the company, Mulva expressed concerns about the challenging political environment facing the energy industry, in particular, the potential impacts of increased regulatory burdens and proposed tax increases.\n \n\"\"These unprecedented proposed taxes, targeted at only five companies, would have serious effects on our company. We already have the highest effective tax rate among companies in the United States and these proposals unfairly single us out for additional taxes,\"\" said Mulva. \"\"Not only would increased taxes cost jobs, raise consumer prices and shrink government revenue, but they would also hamper our ability to remain competitive and reinvest in jobs, new energy technologies and resources in the United States and internationally.\"\"\n \nMulva will testify in Washington, D.C. before the Senate Finance Committee on May 12, 2011.\n \nFinal voting results will be reported on Form 8-K, which will be filed with the Securities and Exchange Commission. These results and other information, including presentation materials and a recorded webcast of the meeting, will also be available at www.conocophillips.com/investor.\n \nConocoPhillips is an integrated energy company with interests around the world. Headquartered in Houston, the company had approximately 29,600 employees, $160 billion of assets, and $226 billion of annualized revenues as of March 31, 2011. For more information, go to www.conocophillips.com.\n\nhttp://www.conocophillips.com/EN/newsroom/news_releases/2011news/Pages/05-11-2011_1.aspx\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6e1282d4-4ec2-468b-8004-3370ba94a438,\"Menendez, Durbin, Reid, 30 Others Introduce The Dream Act\n                    \n                            Bill Will Help Immigrant Students Earn Path to Legal Status \n                    \n                      May 11, 2011\n                     WASHINGTON, D.C. – Assistant Senate Majority Leader Dick Durbin (D-IL), Senate Majority Leader Harry Reid (D-NV), Senator Robert Menendez (D-NJ) and 30 other Senators introduced the Development, Relief, and Education for Alien Minors (DREAM) Act today - a narrowly tailored bill to give undocumented students a chance to earn legal status if they came here as children, are long-term U.S. residents, have good moral character, and complete two years of college or military service in good standing.\n\n“Our immigration laws prevent thousands of young people from fully contributing to our nation’s future.  These young people have lived in this country for most of their lives.  It is the only home they know.  They are American in every sense except their technical legal status,” said Assistant Senate Majority Leader and author of the DREAM Act, Dick Durbin. “They are honor roll students, star athletes, talented artists and valedictorians.  These children are tomorrow’s doctors, nurses, teachers, policemen, firefighters, soldiers, and senators, and we should give them the opportunity to reach their full potential.”\n“Young people brought to this country during their earliest childhood, knowing only America as their home, are precisely the reason we need the DREAM Act.  These individuals attend our schools, befriend our children and serve our community and we should fulfill the promise of this country as a place for people who work hard and contribute,” said Senator Richard Blumenthal (D-CT).\n \n“The DREAM Act will give children brought to this nation by their parents through no fault of their own – children who in many cases have known no other country – the opportunity to earn legal status. Only those who stay in school and out of trouble, and who go on to college or to defend our country in the armed forces would be eligible. Allowing these students to become productive citizens is not only good for them – it makes economic sense, would reduce our deficit by $2.2 billion in a decade and would strengthen our military and national security,” Senate Majority Leader Harry Reid said. \n\"\"We should not punish children for their parents’ past decisions. The students who would be helped by the DREAM Act did not make the decision to enter this country in an undocumented fashion. They've followed the rules, worked hard in school and now they want to serve this country in the military or get a higher education. Equally important, they love the United States, the only home many of them have known, and should be permitted to continue here in pursuit of the American Dream,” Senator Robert Menendez said.  \n \nDue to their undocumented status, tens of thousands of immigrant students with good grades are shut out of the American dream. These students have no choice in the matter because they were brought to the United States by their parents at a young age and have spent most of their lives in America. Yesterday, in a speech on the need for immigration reform, President Obama said, “These are kids who grew up in this country, love this country, and know no other place as home. The idea that we would punish them is cruel and it makes no sense.  We are a better nation than that.”\n \n“The DREAM Act is a critical step to reforming our immigration system,” said Senator Patrick Leahy (D-VT).  “This legislation will enable a well-deserving group of young people to better serve our country.  I was disappointed last year when the Senate was not allowed to even debate the DREAM Act, but I am committed to working with Senator Durbin, Leader Reid and others to advance this important bill.”\n“This narrowly tailored legislation would give young, undocumented immigrants who grew up in the United States the opportunity to earn legal residency by obtaining an education or joining the military.  I am proud to cosponsor the DREAM Act for one simple reason: this will enable these children, who are in America not due to their own action, but those of their parents, to reach their potential and contribute to a stronger, more prosperous America,” said Senator Tom Harkin (D-IA).\n \n \n“I am convinced we must adopt smart immigration reform to advance our national security, our economic vitality, and our historic values. Today, I have joined in introducing a critical piece of such reform – offering a path to citizenship for young adults who have grown up in this country, achieved here, and want a chance to continue their lives as productive members of our society. This is the right choice for these deserving young adults and for our own national interests. These individuals embody the education and work ethic we promote, and we should let them remain here to strengthen our military, our economy and society as a whole,” said Senator Joe Lieberman (I – CT).\n \n“As a former educator and a veteran, I believe that our youth should have the opportunity to reach their potential through college education and military service,” said Senator Daniel K. Akaka (D-HI).  “The DREAM Act will strengthen our armed forces, add to our skilled workforce, and contribute to our economy, while offering an opportunity for these young adults to pursue the promise of our nation.”\n \n“I am concerned about the many young adults who have worked hard to contribute to this country but, through no fault of their own, find themselves without legal status,” Senator Dianne Feinstein (D-CA) said. “Many were brought to this country as children years ago, attended school here, and consider the United States home.  I support the DREAM Act because I believe it is in the country’s best interest to give talented youth who have good moral character and are dedicated to serving the United States the opportunity to succeed.” \n \n“It is long past time to provide a path to success for these bright and hard-working young people, who grew up here and call America home. Our country is stronger when we nurture our best and brightest,” Senator Barbara Boxer (D-CA) said.\n \n“This nation was built on the belief that no matter where we start from in life, we all have a shot at the American dream. Unfortunately, somewhere along the way the belief that we should now turn our backs on certain children in our communities has gained a voice,” said Senator Murray (D-WA). “We have thousands of dedicated, motivated and gifted students ready to serve our country in the military and succeed in college classes. It’s time to say ‘yes’ to those students, ‘yes’ to the DREAM Act, and 'yes' to a richer, stronger, more vibrant American Dream for generations to come.”\n \n“Passage of the DREAM Act is long overdue. These young people will contribute to the economic growth of our country and are longing to become Americans. We should fulfill that dream as soon as we can,” Senator Chuck Schumer (D-NY) said.\n \n“This common sense legislation will help thousands of immigrant students who meet rigorous requirements to earn a path to legal status by contributing to our country through military service or by getting a college education,” said Senator Tom Carper (D-DE). “These students have excelled in U.S. schools and they deserve the opportunity to serve their communities by graduation from college and getting a job, or joining the U.S. military.”\n \n“The DREAM Act is a sound starting place toward comprehensive immigration reform that works to strengthen America’s economy, knowledge base, and our armed forces,” said Senator Maria Cantwell (D-WA). “DREAM offers individuals who were brought to this country a chance to earn legal status and give back to the American communities in which they were raised. These individuals will make our country more competitive economically, contributing to our tax base and spurring job creation.”\n \n“This is a compassionate bill that recognizes that we should not hold innocent children responsible for the sins of their parents. The DREAM Act is targeted legislation that addresses thousands of undocumented children who were brought to this country before the age of 16.  It would have provided a stringent pathway for young men and women who have graduated high school to give back to their adopted country and local communities through military service or to complete a higher education,” said Senator Ben Cardin (D-MD).\n \n“America prides itself on being a land of opportunity.  But for some students, the opportunity to meet their full potential is out of reach through no fault of their own.  We should be doing more to encourage promising young people to go to college or serve in the armed services.  This bill helps open the doors for those students while enriching our nation as a whole,” said Senator Jeff Merkley (D-OR). \n \n“Washington must take action to provide a common-sense fix to our broken immigration system.  But in the absence of comprehensive reform, we should work to boost our economy, strengthen our armed forces and help hard-working kids achieve the American Dream by passing the DREAM Act,” Senator Michael Bennet (D-CO) said.  “Instead of punishing these kids, we should reward them for working hard, and our nation will benefit from a stronger work force and a stronger economy.  Taxpayers have already invested in the education of these kids.  It makes sense to allow them to succeed and contribute to our economy.” \n\n \nIn order to be eligible for the DREAM Act individuals must have: \n \nCome to the U.S. as children (15 or under)\nBe long-term U.S. residents (continuous physical presence for at least five years)\nHave good moral character\nGraduate from high school or obtain a GED\nComplete two years of college or military service in good standing\n \nThe DREAM Act would benefit the U.S. Armed Forces.  \nTens of thousands of highly-qualified, well-educated young people would enlist in the Armed Forces if the DREAM Act becomes law.  The Defense Department’s FY 2010-12 Strategic Plan includes the DREAM Act as a means to help “shape and maintain a mission-ready All Volunteer Force.”  Defense Secretary Gates, who supports the DREAM Act, says it “will result in improved recruitment results and attendant gains in unit manning and military performance.”  General Colin Powell has also endorsed the DREAM Act, saying, “Immigration is what’s keeping this country’s lifeblood moving forward.”\n \nThe DREAM Act would stimulate the American economy.  \nA UCLA study concluded that DREAM Act participants could contribute $1.4-$3.6 trillion to the U.S. economy during their working lives.  New York City Mayor Michael Bloomberg, who supports the DREAM Act, says, “They are just the kind of immigrants we need to help solve our unemployment problem.  It is senseless for us to chase out the home-grown talent that has the potential to contribute so significantly to our society.”  \nThe DREAM Act includes important restrictions to prevent abuse.  \nDREAM Act participants are not eligible for Pell and other federal grants and are subject to tough criminal penalties for fraud.  DREAM Act applicants must apply within one year of obtaining a high school degree/GED or the bill’s enactment; and must prove eligibility by a preponderance of the evidence.  To be eligible, an individual must submit biometric information; undergo background checks and a medical exam; register for the Selective Service; demonstrate the ability to read, write, and speak English; and demonstrate knowledge of the history and government of the U.S.  An individual cannot qualify if he or she is ineligible for immigration relief on criminal or national security grounds. \nThe DREAM Act has broad bipartisan support in Congress and from the American people. \nIn the 111th Congress, the DREAM Act passed the House and received a strong bipartisan majority vote from 55 Senators.  According to a recent poll by Opinion Research Corporation, 70% of likely voters favor the DREAM Act, including 60% of Republicans. \nThe DREAM Act is supported by labor, business, education, civil rights and religious groups, including the AFL-CIO, the National PTA, the U.S. Conference of Catholic Bishops, the U.S. Conference of Mayors, the CEOs of Fortune 100 companies like Microsoft and Pfizer, and dozens of colleges and universities. \nThe following Senators are also cosponsors of the DREAM Act: Mark Begich (D-AK), Jeff Bingaman (D-NM), Chris Coons (D-DE), Al Franken (D-MN), Kirsten Gillibrand (D-NY), John Kerry (D-MA), Amy Klobuchar (D-MN), Herb Kohl (D-WI), Frank Lautenberg (D-NJ), Carl Levin (D-MI), Barbara Mikulski (D-MD), Bill Nelson (D-FL), Jack Reed (D-RI), Bernie Sanders (I-VT), Mark Udall (D-CO), and Sheldon Whitehouse (D-RI). \nA similar bill was introduced in the House of Representatives today by Representatives Howard Berman (D-CA), Ileana Ros-Lehtinen, and Luis Gutierrez (D-IL). \nMore information on the DREAM Act can be found at www.durbin.senate.gov. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2eecae5a-c5a4-4ab7-9bc6-d877de092257,\"Menendez, Lautenberg Announce Launch of Long-Awaited Program to Keep New Jersey Families in their Homes\n                    \n                            Senators Laud Program that Puts People Before Banks While Combating the Foreclosure Crisis\n                    \n                      May 10, 2011\n                     NEW JERSEY – U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) were very pleased today to announce that the New Jersey HomeKeeper program, which is federally-funded and state-administered, is launching on a statewide basis, after a successful two-month pilot period. The program will make deferred-payment mortgage loans with zero percent interest available to New Jersey homeowners with a proven history of making their mortgage payments but who are now considered at-risk because of unemployment. Loan recipients are eligible for up to $48,000 in federal assistance for a period of up to 24 months and can use it to cover mortgage payments, property taxes, property insurance, and mortgage insurance.\n \n“This is exactly what we need to be doing - helping people stay in their homes.” said Menendez. “The financial meltdown has hit honest, hard-working families from all sides. When employment security and home values were suddenly put into jeopardy, many Americans found themselves out of work, holding an underwater mortgage, or both. People were swept up in a mess of shady lending that was not of their own creation. The HomeKeeper program will help the New Jersey families who need it most, so that they can stay in their homes where they belong until they can get back on their feet.”\n \n “Every effort must be made to help New Jersey families avoid foreclosure and stay in their homes,” Lautenberg stated.  “While the housing market has yet to recover, this federal program will provide homeowners with important relief while we work to create jobs and improve the economy.”\n \n \n \nNew Jersey HomeKeeper is funded through a federal grant from the U.S. Treasury awarded to the New Jersey Housing and Mortgage Finance Agency (NJHMFA) to administer the program.. In order to learn more about the program or apply for assistance go to www.njhomekeeper.gov or call HomeKeeper toll-free at (855)-NJ-KEEP-1.\n \n # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=90cd450b-c1f8-4bab-bdda-a1a25e114dd0,\"Menendez, Boozman and colleagues call upon Congress to live up to its commitment to disarm the  Lord’s Resistance Army in Central Africa\n                    \n                      May 10, 2011\n                     WASHINGTON – In anticipation of the one year anniversary of the Lord's Resistance Army (LRA) Disarmament and Northern Uganda Recovery Act of 2009 becoming law, U.S. Senators Robert Menendez (D-NJ), John Boozman (R-AR) and colleagues today sent a letter urging the Chairman and Ranking Member of the Appropriations Subcommittee on State, Foreign Operations and Related Programs calling on them to ensure that sufficient resources are made available to disarm the LRA, which has displaced thousands of people across South Sudan, Democratic Republic of Congo, and Central African Republic.\n \nIn the letter, the Senators express “concern about the ongoing crisis in areas of central Africa affected by the Lord’s Resistance Army (LRA), a group that terrorizes civilians and has abducted tens of thousands of children in the past 25 years.”  They conclude that, “Resources invested in ending this conflict now will not only save innocent lives, but also reduce the need for expensive emergency humanitarian aid and promote stability in one of Africa’s most volatile regions.\"\"\n \nIn November 2010, as mandated by the bipartisan LRA Disarmament and Northern Uganda Recovery Act, President Obama issued a comprehensive strategy aimed at bringing LRA commanders to justice and ending the group’s campaign of violence.  Today, Senators Menendez and Boozman are joined by 18 of their colleagues in a bipartisan effort to ensure that the strategy becomes a reality and reaffirm their commitment to saving lives, protecting civilians, and finally bringing one of Africa’s most longstanding human rights crises to an end.\n \nFULL TEXT OF THE LETTER:\n \nThe Honorable Patrick Leahy                                                 \n \nChairman\n \nSubcommittee on State, Foreign Operations \n \nand Related Programs                                                            \n \n \n \nThe Honorable Lindsey Graham\n \nRanking Member\n \nSubcommittee on State, Foreign Operations \n \nand Related Programs                                                            \n \n \n \nDear Mr. Chairman and Senator Graham,\n \n \n \nWe are writing to express concern about the ongoing crisis in areas of central Africa affected by the Lord’s Resistance Army (LRA), a group that terrorizes civilians and has abducted tens of thousands of children in the past 25 years. Last year, overwhelming Congressional support for the bipartisan Lord’s Resistance Army Disarmament and Northern Uganda Recovery Act led to unprecedented international momentum for a resolution to end the conflict and a comprehensive White House strategy to address the crisis. As you prepare the FY2012 Appropriations bill, we urge you to ensure the United States Government has sufficient resources to help end the atrocities committed by the LRA, protect innocent civilians, and stabilize a region of Africa that is critical to U.S. national security interests.\n \nThe LRA – which numbers only a few hundred fighters – spans the border areas of South Sudan, Democratic Republic of Congo, and Central African Republic. It is the deadliest rebel group in Congo, and has displaced hundreds of thousands of people across central Africa, including South Sudan where U.S. investments in peace and stability are critical before the country becomes independent in July.\n \nIn November 2010 the President reported to Congress a comprehensive strategy aimed at bringing LRA commanders to justice and ending the group’s campaign of violence, as mandated by the bipartisan LRA Disarmament and Northern Uganda Recovery Act passed by Congress in May 2010. If fully implemented, this strategy could have a decisive impact on seeing one of Africa’s most longstanding human rights crises finally brought to an end.\n \nWhile we understand the difficult budgetary challenges our nation faces, your leadership is needed to ensure that the U.S. Government has the resources at its disposal to implement the strategy that Congress required it to create.  Resources invested in ending this conflict now will not only save innocent lives, but also reduce the need for expensive emergency humanitarian aid and promote stability in one of Africa’s most volatile regions.\n \nSincerely,\n \nSenator Menendez\n \nSenator Boozman\n \nSenator Coons\n \nSenator Inhofe\n \nSenator Boxer\n \nSenator Durbin\n \nSenator Lautenberg\n \nSenator Landrieu\n \nSenator Feinstein\n \nSenator Levin\n \nSenator Lieberman\n \nSenator Cardin\n \nSenator Merkley\n \nSenator Casey\n \nSenator Bingaman\n \nSenator Wyden\n \nSenator Carper\n \nSenator Klobuchar\n \nSenator Bennet\n \nSenator Franken\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1dc9dcb5-749a-44ee-abfc-d50dadaff883,\"Menendez, Brown, McCaskill to Big Oil: Your Subsidies Are Over\n                    \n                            Senators Announce Legislation to End Tax Subsidies for “Big 5” Oil Companies and Call On Republicans To Join Effort To Close Loopholes\n                    \n                      May 10, 2011\n                     WASHINGTON – With the nation’s five largest oil companies taking home nearly $1 trillion in profits over the past decade, a group of Democratic Senators today announced legislation to finally put an end to the unfair tax subsidies that only benefit Big Oil’s bottom line and CEOs. As families are paying more than $4 per gallon in gas prices and doing their part to address the country’s growing deficit, Big Oil needs to step up to the plate and share in the sacrifice to help balance the budget.\n U.S. Sens. Robert Menendez (D-NJ), Sherrod Brown (D-Ohio) and Claire McCaskill (D-Mo.), announced the introduction of the Close Big Oil Tax Loopholes Act, which will put an end to taxpayer handouts to the 5 largest oil companies making record profits, and use the  billions in savings to help reduce the deficit. The Senators also called on Republicans to support the effort to close the loopholes and join other Republicans, including Speaker Boehner and Representative Ryan, who have voiced support for cutting subsidies. \n “At a time when families are feeling the pain at the pump and our deficit keeps growing at an alarming rate, we simply can’t afford to keep giving away billions in taxpayer handouts to oil companies that are doing nothing to help lower prices. The ‘Close Big Oil Tax Loopholes Act’ is based on a simple premise: we need everyone to do their share to lower the deficit, not just working families and the elderly,” Menendez said.  \n \"\"It's bad enough that Ohioans have to pay more than $4.00 a gallon at the gas pump. They shouldn't need to subsidize the oil industry through the tax code as well. Big Oil is reaping big profits while working- and middle-class Ohioans struggle to make ends meet. It's about time this corporate welfare meet its end,\"\" Brown said. \n “If we are going to get serious about addressing our national debt,  we can no longer afford to keep giving away taxpayer's money to the most profitable companies in the world. There are going to be some tough decisions when it comes to cutting back, but I hope we can agree that our government writing checks to oil and gas companies with tax dollars should be on the chopping block,” McCaskill said. \n \"\"For years, the world's biggest oil companies have slipped their way through every loophole in the book to pad their profits at the expense of American taxpayers,\"\" Tester said.  \"\"This bill restores fairness and holds these corporations accountable to taxpayers, who deserve no less.\"\" \n \nAccording to a recent report from Citizens for Tax Justice, Big Oil companies spent most of their profits in the purchase of their own stocks and boosting its dividends between 2005-2010. In 2010, four of the largest “Big Five” oil companies (excluding BP due to the oil spill) allocated only 18 percent of their post tax profits on exploration and 60 percent on dividends and stock repurchases. Link to the full Report: http://www.ctj.org/pdf/energy20110429.pdf\n \nSummary of the bill:\n \nModifications of foreign tax credit rules applicable to major integrated oil companies which are dual capacity taxpayers.  \n \nU.S. taxpayers are taxed on their income worldwide, but are entitled to a dollar-for-dollar tax credit for any income taxes paid to a foreign government.  U.S. oil and gas companies have been accused of disguising royalty payments to foreign governments as foreign taxes.  This allows them to lower their taxes in the U.S.  The bill would close this loophole that amounts to a U.S. subsidy for foreign oil production for the Big 5.\n \nLimitation on deduction for income attributable to the production of oil, natural gas, or primary products thereof.\n \nIn 2004 Congress enacted Section 199, the domestic manufacturing tax deduction.  In 2008 Congress froze the Section 199 deduction at 6% for all oil and gas activity.  The bill eliminates the Section 199 deduction for the Big 5.\n \nLimitation on deduction for intangible drilling and development costs.  \n \nWould deny the Big 5 oil companies the option of expensing Intangible Drilling Costs (IDCs) and require such costs be capitalized. IDCs are expenditures such as wages, fuel, repairs, hauling, and supplies necessary for the drilling of oil wells. Currently, integrated oil companies can expense 70% of the cost of IDCs.  The bill requires the Big 5 to capitalize all of its IDC costs.\n \nLimitation on percentage depletion allowance for oil and gas wells.\n \nFirms that extract oil and gas are permitted a deduction to recover their capital investment under one of two methods.  Cost depletion allows for the recovery of the actual capital investment—the costs of discovering, purchasing, and developing the well—over the period the well produces income.  Under this method, the taxpayer’s total deductions cannot exceed its original investment.\n \nPercentage depletion allows the cost recovery to be computed using a percentage of the revenue from the sale of the oil or gas.  Under this method, total deductions could (and often do) exceed the taxpayer’s capital investment.  The bill repeals percentage depletion for the Big 5. \n \nLimitation on deduction for tertiary injectants.\n \nTertiary injectants are used in enhanced oil recovery to drive more oil from an existing well.  Currently, oil companies are allowed to deduct the cost of tertiary injectants rather than capitalizing their costs and recovering them over time. The bill requires the Big 5 to capitalize the cost of tertiary injectants it uses during the year and recover those costs over time. \n \nRepeal of Outer Continental Shelf deep water and deep gas royalty relief\n \nRepeals Sections 344 and 345 of the Energy Policy Act of 2005.  Section 344 extended existing deep gas incentives and Section 345 provided additional mandatory royalty relief for certain deepwater oil and gas production.  These changes will help ensure that Americans receive fair value for Federally-owned fossil fuel resources.\n \nDeficit Reduction\n \nAll savings realized as the result of the bill’s elimination of the tax breaks and other subsidies currently going to the major integrated oil companies are devoted to deficit reduction.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f9dd2b94-ed3e-4e00-9170-815292e6f9ee,\"Sen. Menendez Thanks New Jerseyans for Helping Out on Jersey Cares Day\n                    \n                      May 7, 2011\n                     NEWARK, NJ – U.S. Sen. Robert Menendez (D-NJ) participated in the 13th Annual Jersey Cares Day on Saturday at the Prudential Center in Newark. It’s a day of service that takes place in schools, parks and nonprofits all over Newark, Jersey City, Edison, Plainfield, Pottersville and Trenton.\n \nVolunteers do all sorts of much-needed service such as planting gardens outside of schools, painting murals for classroom walls, beautifying parks, and leading nutrition and financial literacy workshops. \nTo learn more about how you can get involved with Jersey Cares, go to www.jerseycares.org. \nSee more photos from the day here: (link to gallery)\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=93480643-1111-4aca-a1f9-675a3442bc5a,\"College-bound Students Seek Info at Regional College Fair \n                    \n                            Forum provided info about funding for college and repaying student loans\n                    \n                      May 7, 2011\n                     Colleges from southern NJ region and community organizations answered questions \nCAMDEN, NJ – The Offices of U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) hosted a free financial aid forum and regional college fair to provide New Jersey families with the information and resources they need to seek higher education opportunities in the region and help them address the rising cost of higher education. The forum featured presentations from the U.S. Department of Education and the New Jersey Higher Education Student Assistance Authority and was held at Camden Community College. \n \nParticipants sought answers to questions about how the financial aid process works, what types of aid are available, and what student loan repayment programs exist. Representatives from community organizations, U.S. military academies as well as two-year and four-year colleges from the Southern New Jersey region were on hand to answer questions and talk with people about what they could expect. \nTo see photos of the event follow the [link to gallery]\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5b0de1e1-7064-4e41-82fc-38bf4f341ced,\"Menendez, Casey and Colleagues Call for Evaluation of U.S. Relations with Fatah-Hamas Government, Possible Suspension of Aid to Palestine\n                    \n                      May 6, 2011\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ), Robert P. Casey (D-PA) and colleagues today sent a letter to President Obama asking him to evaluate the U.S. relations with the Palestinian Authority and consider taking stronger measures in condemnation of the recently formed Fatah-Hamas unity government. In the letter signed by 27 Senators, the Senators urged the Administration to stand by its refusal to work with any Palestinian government that includes Hamas and consider cutting aid should the U.S. designated terrorist group remain in the government.  Preconditions in U.S. law prevent aid from being provided to a Palestinian government that includes Hamas, unless the government and all its members have publically committed to the Quartet principles. \n \n \n \n“It is imperative for you to make clear to President Abbas that Palestinian Authority participation in a unity government with an unreformed Hamas will jeopardize its relationship with the United States, including its receipt of U.S. aid.  As you are aware, U.S. law prohibits aid from being provided to a Palestinian government that includes Hamas, unless the government and all its members have publically committed to the Quartet principles.  We urge you to conduct a review of the current situation and suspend aid should Hamas refuse to comply with Quartet conditions,” wrote the Senators.\n \n \n \nFULL TEXT OF THE LETTER:\n \n \n \nPresident Barack Obama\n \nThe White House\n \n1600 Pennsylvania Avenue, N.W.\n \nWashington, DC 20500\n \n \n \n \n \nDear Mr.  President:\n \n \n \nThe decision of Palestinian Authority (PA) President Mahmoud Abbas to form a unity government with Hamas – a designated terrorist group – threatens to derail the Middle East peace effort for the foreseeable future and to undermine the Palestinian Authority’s relations with the United States.\n \n \n \nHamas rejects peaceful efforts to end the Israeli-Palestinian conflict and continues to call for the destruction of the State of Israel. Soon after this agreement was signed, senior Hamas official Mahmoud Zahar declared that \"\"our plan does not involve negotiations with Israel or recognizing it.\"\" Hamas and other Iranian-backed terrorist groups in Gaza have also stepped up their smuggling of Iranian arms and increased their mortar and rocket attacks against Israeli civilians, firing more than 130 during the past month alone and nearly 300 this year.  Hamas’ response to the killing of Osama Bin Laden, condemning “the assassination and killing of an Arab holy warrior” is emblematic of Hamas’ ideology and underscores Hamas’ continued support for terrorism.\n \n \n \nThe United States should stand by its refusal to work with any Palestinian government that includes Hamas.  We welcome statements from the Administration recognizing that Hamas is a terrorist organization and insisting that it accept the Quartet conditions (of recognizing Israel’s right to exist, rejecting violence, and endorsing previous Israeli-Palestinian peace agreements).  We strongly support Secretary Clinton’s 2009 Statement that: “we will not deal with nor in any way fund a Palestinian government that include Hamas until Hamas has renounced violence, recognized Israel and agreed to follow the previous obligations of the Palestinian Authority.”\n \n \n \nIt is imperative for you to make clear to President Abbas that Palestinian Authority participation in a unity government with an unreformed Hamas will jeopardize its relationship with the United States, including its receipt of U.S. aid.  As you are aware, U.S. law prohibits aid from being provided to a Palestinian government that includes Hamas, unless the government and all its members have publically committed to the Quartet principles.  We urge you to conduct a review of the current situation and suspend aid should Hamas refuse to comply with Quartet conditions.\n \n \n \nUltimately, the legitimacy of any peace process must always be weighed against the assurances Israel needs for its security and the security of the region.  Hamas’ participation in the Palestinian government eliminates the trust and commitment to peace that must exist between the parties to move forward and therefore, as Israeli Prime Minister Benjamin Netanyahu has stated, the choice is between “peace with Israel or peace with Hamas” because “there is no possibility for peace with both.”\n \n \n \nAs fellow Democrats, we thank you for your continued commitment to and investment in Israel’s security.   We urge you to make clear to President Abbas and the international community the United States’ opposition to a Fatah-Hamas unity government that does not fully accept the Quartet principles.  Such a government will prove fatal to the peace effort, as well as to efforts to establish a Palestinian state, and will severely harm relations with the United States.  The Palestinian Authority needs to get back to the negotiating table rather than pursue futile and harmful efforts to join with Hamas or seek recognition of Palestinian statehood at the UN. \n \n \n \nSincerely,\n \nSenator Robert Menendez\n \nSenator Robert P. Casey, Jr.\n \nSenator Daniel Inouye\n \nSenator Carl Levin\n \nSenator Max Baucus\n \nSenator Joseph Lieberman\n \nSenator Kent Conrad\n \nSenator Frank Lautenberg\n \nSenator Charles Schumer\n \nSenator Barbara Boxer\n \nSenator Daniel Akaka\n \nSenator Barbara Mikulski\n \nSenator Ron Wyden\n \nSenator Bill Nelson\n \nSenator Debbie Stabenow\n \nSenator Ben Nelson\n \nSenator Mark Pryor\n \nSenator Benjamin Cardin\n \nSenator Sherrod Brown\n \nSenator Amy Klobuchar\n \nSenator Jon Tester\n \nSenator Kirsten Gillibrand\n \nSenator Al Franken\n \nSenator Joe Manchin\n \nSenator Christopher Coons\n \nSenator Richard Blumenthal\n \nSenator Claire McCaskill\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5c8f6754-0d87-432c-aa5f-75952d26f326,\"Menendez, Lautenberg Denounce Shortsighted House Drilling Legislation\n                    \n                            Senators to Introduce Bill to Ban Coastal Drilling on East Coast from North Carolina to Maine\n                    \n                      May 6, 2011\n                     NEW JERSEY –U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today condemned legislation that passed the House of Representatives yesterday that would weaken drilling standards and expedite drilling off the Virginia Coast – less than 100 miles from Cape May, NJ.  They also announced plans to reintroduce the Clean Ocean and Safe Tourism (COAST) Act to ban drilling off the Atlantic Coast from North Carolina to Maine. \n \n\"\"It is disturbing that many members of the House of Representatives seem to have already forgotten the disastrous oil spill in the Gulf that happened just last year.  That is the only explanation for this legislation to weaken drilling safety standards and expedite oil leasing less than 100 miles from Cape May. These House proposals are dead on arrival in the U.S. Senate,” said Menendez. “To underscore that point, we will reintroduce legislation to permanently ban coastal drilling from North Carolina to Maine.  We cannot afford the risks oil drilling would pose to New Jersey’s beautiful shoreline and its multi-billion dollar tourism and fishing industries, especially when the experts tell us that new offshore drilling will do nothing to reduce gas prices.”   “Offshore drilling is off-limits near New Jersey.  The cost of an oil spill to our coastal economy would be huge,” said Lautenberg.  “Our bill sends a clear message that we will not stand by and let big oil companies  put the Jersey Shore in the path of the next big oil spill.  Drilling is not the answer to rising gas prices – instead, we need to invest in energy efficient cars, fuels that burn cleaner and cost less, and smarter transportation options like mass transit.”  \n \nApproximately 60 percent of New Jersey’s $38 billion tourism industry comes from the Jersey Shore and the state also has a multi-billion dollar fishing industry.\nThe Department of Defense has stated that 80% of the proposed lease sale off the coast of Virginia would interfere with the Navy’s Virginia Capes Operating Area, a critical military training and testing area. [DOD: Report on the compatibility of Department of Defense (DoD) activities with oil and gas resource development on the Outer Continental Shelf (OCS)]\nThe Energy Information Administration has estimated that opening all our shores to drilling would reduce gas prices by 3 cents starting in 2030. [EIA, Impacts of Increased Access to Oil and Natural Gas Resources in the Lower 48 Federal Outer Continental Shelf]\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4a37b582-8a90-4e84-9700-80a57d1d11b3,\"Sen. Menendez Celebrates Contributions of Mexican Americans on Cinco de Mayo\n                    \n                            New census figures highlight the importance of economic growth for all Hispanics\n                    \n                      May 5, 2011\n                     WASHINGTON – In honor of Cinco de Mayo, U.S. Sen. Robert Menendez (D-NJ) introduced bipartisan legislation to recognize the significance of the date May 5, 1862, when the Battle of Puebla was fought by Mexicans who were struggling for their independence and freedom.  Menendez, who is the Chairman of the Senate Democratic Hispanic Task Force and one of two Hispanics in the Senate, congratulated all of the Mexican Americans who have enriched this country for decades with their contributions.\n \n“I want to join millions of Mexican Americans in this festive celebration and also highlight the importance of their contributions to American society,” said Sen. Menendez. “New census figures show the significant growth of the Hispanic community in the nation, and Mexican Americans, as do many Hispanics, remind us of the importance of strong family values and hard work.   As Chairman of the Hispanic Task Force, I will continue to work toward creating jobs and fostering economic growth in the nation, so that Latinos and all Americans can continue to pursue the American dream.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4b01ba6a-f031-4fcb-a40d-a92adf85dc13,\"Sens. Menendez, Franken,  Reps. Conyers, Gutierrez, Capuano Release GAO Report Investigating Foreclosure \"\"Robo-signing\"\" \n                    \n                            Legislators Push for Nat’l Standards to Avoid Unfair Treatment and Wrongful Foreclosure on Homeowners\n                    \n                      May 5, 2011\n                     WASHINGTON, D.C. - A GAO report released today by U.S. Sens. Al Franken (D-Minn.) and Robert Menendez (D-N.J.), and Reps. John Conyers (D-Mich.), Luis V. Gutierrez (D-Ill.), and Mike Capuano (D-Mass.) confirmed reports that mortgage servicers had been fraudulently signing or notarizing affidavits allowing the completion of foreclosures without any personal knowledge of the cases, a process more commonly referred to as \"\"robo-signing.\"\" The legislators commissioned the report, entitled Mortgage Foreclosures: Documentation Problems Reveal Need for Ongoing Regulatory Oversight, to investigate news accounts that homeowners were being improperly foreclosed on.  In an effort to prevent future wrongdoings by mortgage servicers, the legislators today pressed banking regulators to implement safeguards recommended by the report that would ensure homeowners do not wrongfully lose their homes.\n“We write today to urge you to develop a coordinated plan to ensure comprehensive oversight of federally regulated mortgage servicers and to reiterate our calls for national servicing standards that specifically address the foreclosure process,” the legislators wrote in a letter to banking regulators. “We have seen countless examples of servicers giving borrowers the run-around and continuing the foreclosure process when a loan modification has already been obtained.  Perhaps the most egregious cases of servicer wrongdoing have been violations of the Servicemembers Civil Relief Act by wrongly foreclosing on active-duty servicemembers.  Correcting these problems and ensuring they do not reoccur should be a priority for all of your agencies.\"\"\nThe GAO report concluded that:\nDespite various federal agencies’ having the authority      to oversee mortgage servicers, past oversight of mortgage servicers’      foreclosure activities has been limited and fragmented; \nIt remains unclear how regulators and the new Consumer      Financial Protection Bureau will share the responsibility of overseeing      servicers, continuing the potential for poor and inconsistent oversight;      and\nNational standards for mortgage      servicers that address expectations for the foreclosure process could      improve the ways servicers do business.\nGAO recommends that banking regulators and the Consumer Financial Protection Bureau:\nDevelop plans for overseeing mortgage servicers; and \nInclude foreclosure practices in any servicing standards that are developed.\nThe letter from the legislators to Ben S. Bernanke, Chairman of the Board of Governors of the Federal Reserve System; John G. Walsh, Acting Comptroller of the Currency Office of the Comptroller of the Currency; Sheila C. Bair, Chairman of the Federal Deposit Insurance Corporation; John E. Bowman, Acting Director of the Office of Thrift Supervision, and Elizabeth Warren, Special Advisor for the Consumer Financial Protection Bureau can be read here.\nThe GAO’s full report can be found here.\n\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8cb7f77b-2dd1-435d-bbc6-82a834b6fda0,\"Sen. Menendez Calls for Wall Street Banks to be Held Accountable for Fraud \n                    \n                      May 4, 2011\n                     WASHINGTON – U.S. Sen. Robert Menendez (D-NJ) commended the Justice Department for taking action against Deutsche Bank, which is accused of defrauding taxpayers of at least $1 billion by “recklessly lying” to a federal agency when securing taxpayer-backed insurance for thousands of mortgages.\nThe lawsuit seeks to recover hundreds of millions of dollars in insurance claims that the government has had to pay when homeowners defaulted on their mortgages. The lawsuit also asked for punitive damages. The government said the bank made substantial profits between 2007 and 2009 from the resale of the risky mortgages, leaving the government to foot the bill for loans that defaulted. The mortgage insurance is issued by the Federal Housing Administration.\n“I applaud the Justice Department for taking action to protect American taxpayers from fraudulent lenders,” said Sen. Menendez. “I hope this is just the first of many legal actions to recoup taxpayer funds from big Wall Street banks who defrauded borrowers, investors, and ultimately the American taxpayer.  Those who artificially inflated the housing bubble for their own financial gain must be held accountable.”\n \n # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a1a53197-eab4-44cb-9386-c8e7b534b74f,\"Senators Introduce Resolution to Provide Affordable Housing For People with HIV/AIDS\n                    \n                      May 4, 2011\n                     WASHINGTON – When someone finds out they’ve just been diagnosed with HIV, the last thing they should have to worry about is having affordable housing.\nEleven U.S. senators have partnered with the National AIDS Housing Coalition to increase awareness of the need for housing, and are doing their part to implement policies to address the problem.\nEarlier today, the resolution was introduced by Senators Robert Menendez (D-NJ),  Dick Durbin (D-Ill), Al Franken (D-MN), John Kerry (D-MA), Frank R. Lautenberg (D-NJ),  Joseph Lieberman (I-CT), Jeff Merkley (D-OR), Bernie Sanders (I-VT), Olympia Snowe (R-ME), Debbie Stabenow (D-MI), Sheldon Whitehouse (D-RI).\n“Ensuring that Americans have stable and safe housing will reduce the HIV and AIDS rate, plain and simple,” said Sen. Robert Menendez (D-NJ). “I am proud to partner with the National AIDS Housing Coalition to increase awareness of this need and work to implement policies that address it. We must reaffirm our commitment to tackling and helping prevent the spread of this terrible disease. I encourage everyone to keep shining a light on this issue and take concrete steps to make a difference for those with AIDS in our communities.”\n \n # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=55358ef6-6619-47da-a2bf-fb8be9c705d9,\"Menendez, Lautenberg Announce $16 Million in Federal Funding to Connect NJ Homeless to Shelters and Job Skills\n                    \n                            Senators Announce $16,250,088 through Department of Housing and Urban Development’s Continuum of Care Program\n                    \n                      May 4, 2011\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced funding today that will help New Jersey’s homeless access basic necessities and support services. A total of $16.25 million have been awarded to New Jersey communities by the Department of Housing and Urban Development (HUD) through the Continuum of Care Program.\n“Our nation’s moral compass moves us to ensure that the least fortunate among us are not left behind, and during this economic downturn, the need is even more urgent and more widespread.  These locally administered grants will help many New Jersey families struggling to survive the storm and get back on their feet,” said Senator Menendez. “It is through the combination of individualism and community, competition and compassion, that America became great and it is the continued balance of those values that will keep us strong. “\n“This federal funding will help put a roof over the head of New Jersey's homeless and provide them with skills to earn a living,” stated Senator Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development.  “With this funding, the federal government is helping create new opportunities for many of New Jersey’s struggling families and individuals.”\nThe Continuum of Care Program provides competitively-awarded grants on an annual basis to address the problems that afflict homeless persons. Grants awarded in NJ this year will help homeless individuals obtain permanent or transitional housing, increase their skills or ability to earn an income, and provide rent assistance for homeless persons with disabilities and their families. Grantees include entities such as States, local governments, public housing agencies, and private nonprofits.\nTotal awarded to each grantee:\n\nAdvance Housing, Inc.\n\n\n$70,722\n\n\n\nBergen County Housing Authority\n\n\n$2,739,000\n\n\n\nCamden County\n\n\n$673,200\n\n\n\nCape Counseling Services\n\n\n$197,364\n\n\n\nCenter For Family Services, Inc.\n\n\n$240,950\n\n\n\nCity of Newark\n\n\n$1,707,000\n\n\n\nCity of Trenton Department of Human Services\n\n\n$1,016,220\n\n\n\nCollaborative Support Programs of New Jersey PHA NJ880\n\n\n$1,230,060\n\n\n\nCommunity Hope, Inc.\n\n\n$97,774\n\n\n\nCounty of Monmouth\n\n\n$400,000\n\n\n\nCounty of Morris Division of Community Development\n\n\n$88,560\n\n\n\nCovenant House New Jersey, Inc\n\n\n$51,051\n\n\n\n\nCovenant House NJ RAP\n\n\n$122,232\n\n\n\n\nEdison Housing Authority\n\n\n$773,761\n\n\n\nElizabeth/Union County Continuum of Care\n\n\n$1,101,229\n\n\n\nHABcore, Inc.\n\n\n$374,638\n\n\n\n\nJersey City Housing Authority\n\n\n$639,240\n\n\n\n\nLakewood Housing Authority\n\n\n$235,081\n\n\n\nNew Community Corporation\n\n\n$735,000\n\n\n\n\nPassaic County Department of Human Services\n\n\n$1,431,276\n\n\n\nProject Live, Inc\n\n\n$971,964\n\n\n\nThe Lester A. Drenk Behavioral Health Center Inc.\n\n\n$30,526\n\n\n\nWarren County Housing Authority\n\n\n$187,020\n\n\n\nWest New York Housing Authority\n\n\n$1,136,220\n\n\n *NOTE some groups received multiple grants in different programs*\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6434f33f-cff0-4e4c-b653-604a739a584a,\"Menendez, Pallone Meet With Stakeholders To Continue Gang Prevention Efforts; Reintroduce Legislation\n                    \n                            Menendez: “Gang violence devastates our communities; comprehensive legislation will address pooled resources, monitoring at-risk kids, and recidivism.”    \n                    \n                      May 2, 2011\n                     Long Branch, NJ – Today, U.S. Senator Robert Menendez (D-NJ), and U.S. Congressman Frank Pallone Jr. hosted a roundtable with New Jersey law enforcement, elected officials, housing officials, members of the boards of education of various municipalities, and community leaders to discuss gang prevention in the state.  Stakeholders addressed past successful actions as well as the state of affairs as described in the 2010 Street Gang Survey.\n\nSenator Menendez said: “Gang violence is a serious concern in our communities and we must continue to work together to address the problem.  Gangs destroy our youth and our neighborhoods, and while I am pleased with the results of our efforts there is still much work to be done.  That’s why I am reintroducing comprehensive legislation in the U.S. Senate to effectively reduce gang activity and help keep our communities safe.”  \n\n\nCongressman Pallone said: “The effects of gang violence play out in the headlines on a daily basis, but the misperception about gangs is that they affect only certain areas, only certain schools or certain people. Gang recruitment and related violence have far-reaching effects, which is why it is important for communities to come to the table as we have today to tackle this problem.”\n\nThe 2010 Street Gang Survey discussed at the roundtable showed that while some of the most notable gangs are still active, many less-known gangs have disappeared.  However, one-third of municipalities reported that gang activity had increased in the last 12 months. \nLong Branch High School Superintendent Joseph Ferraina said: “Gang activity can derail young student’s lives. Efforts that promote prevention and deal with at-risk youth so they can be directed away from gang activity are appreciated. Legislation by Menendez and Pallone addresses all aspects of gang activity and violence; I look forward to its quick passage and implementation.      \nMenendez’s and Pallone’s legislation, which is being introduced this week, calls for funding educational and after school mentoring programs, the creation of municipal alliances to coordinate anti-gang efforts; an avenue to get first offenders back on track; monitoring of at-risk youth; and assisting ex-offenders with a way back into society. \n The Fighting Gangs and Empowering Youth Act of 2011 also includes:\nPrevention\nAuthorizes the Attorney General to make grants to public or nonprofit entities for projects targeting at-risk youth and juvenile offenders, ages 11 to 19 years, to combat gang activity. \nReauthorizes the Safe and Drug-Free Schools and Communities Act, the National Coordinator Initiative, the Gang Resistance Education and Training Projects Program, and certain after school programs.\nAuthorizes the Secretary of Education to award grants to nonprofit organizations that assist in establishing mentoring programs for children, and assist public schools in gang prevention. \nAuthorizes the Secretary of HUD to make grants to public housing agencies and owners of federally assisted low-income housing for use in eliminating gang-related crime. \nAuthorizes the AG to award grants to local entities that assist communities in developing programs that target at-risk youth and juvenile offenders ages 11-19 through municipal alliances. \nIncreases funding for the National Youth Gang Survey. \nAuthorizes mentoring grants to nonprofit organizations for offender reentry services.\nRecidivism Reduction and Reentry Assistance\nReauthorizes the Adult and Juvenile Offender State and Local Reentry Demonstration Projects to improve the transition from prison to community reentry by facilitating collaboration among corrections, schools, and employment service sectors, and by providing funding for programs that assist offenders trying to get out of gangs. \nRequires the AG and other federal agencies, in collaboration with local governments, to establish an interagency task force on federal programs and activities relating to offenders’ community reentry. \nAuthorizes the Secretary of HHS to make available to states recommendations regarding the role of child protective services at the time of the arrest of an individual, and to establish necessary services for the preservation of families that have been impacted by the incarceration of a family member. \nPolicing \nAuthorizes the AG to make grants to state and local governments to increase police presence, and to improve cooperative efforts between law enforcement and the community to address gang problems and to enhance public safety. Gives preferential consideration to applicants who coordinate their efforts to create municipal alliances. \nAuthorizes the hiring of additional forensic examiners to help combat gang activity.\nPunishment \nEstablishes a maximum sentence of 30 years (unless the crime committed has life imprisonment as its maximum penalty) for persons who engage, conspire, or attempt to engage in a pattern of criminal gang activity; or who employ, use, command, counsel, persuade, induce, entice, or coerce any individual to commit, cause to commit, or facilitate the commission of, a predicate gang crime.\nCreates penalties for persons who recruit, employ, solicit, induce, command, or cause another person to be or remain as a member of a criminal street gang, or conspire to do so, with the intent to cause that person to participate in a predicate gang crime.\n \n                                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=275b2453-eef6-4dcc-b86f-77e659d2f73a,\"Menendez on Fatah-Hamas Unity Government\n                    \n                      May 2, 2011\n                     WASHINGTON – Today US Senator Robert Menendez (D-NJ) released the following statement in response to Palestinian President Mahmoud Abbas agreement to form a unity government with Hamas – a US designated terrorist group that refuses to recognize Israel and continues to endorse violence against Israel and Israelis.\n“A Hamas-Fatah unity government threatens to permanently derail the peace talks between the Israelis and Palestinians. Hamas is a terrorist organization that denies Israel’s right to exist and whose charter calls for the destruction of Israel.   In its role as Israel’s ally, the U.S. should stand by its refusal to work with any Palestinian government that includes Hamas, unless it accepts the Quartet conditions of recognizing Israel’s right to exist, rejecting violence, and endorsing previous Israeli-Palestinian peace agreements in order to participate in the transitional government and elections.  We must also make clear that should Abbas continue in a unity government with an unreformed Hamas that it will jeopardize its relationship with the United States and its receipt of U.S. aid.  The legitimacy of any peace process must always be weighed against the assurances Israel needs for its security and the security of the region.  Peace is impossible so long as terrorists have a seat at  the table.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2cfdb892-5467-4e93-ad7e-4d632092be47,\"U.S. Senator Robert Menendez’s Statement On Death Of Osama Bin Laden\n                    \n                      May 2, 2011\n                     Washington - Today, President Barack Obama announced that founder of the jihadist organization al-Qaeda has been killed and his body is in U.S. hands.  U.S. Senator Robert Menendez issued the following statement:\n \n“As a nation, we may all feel some measure of closure that justice was accomplished. That through persistence and continued perseverance Osama Bin Laden and others were found and held accountable.   Like all Americans, New Jerseyans, never forgot the heinous actions of those responsible, never forgot those whose lives were lost, never stopped asking questions of our government, and never ceased continuing the pressure on the importance of capturing Bin Laden and bringing justice to those responsible.   Although Osama Bin Laden’s demise will not end terrorist threats, his death is a significant blow to the leadership of the al-Qaeda organization and sends the message that the U.S. will find, destroy and dismantle al-Qaeda and other terrorist organizations that seek to threaten the United States and its citizens at home or abroad.\nMay we all join together in unity, grateful to those in our military who everyday put their lives at risk and sacrifice greatly to protect our nation. Let us be especially grateful to those who put themselves at risk to bring Bin Laden to justice.    My thoughts and prayers, along with those of all New Jerseyans, are with those who lost family and friends on 9/11. Hopefully they can find some solace and a measure of closure today.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7948683e-ad67-4141-9d4b-e0fa98af4456,\"Sen. Menendez in Support of Rep. Lofgren’s Call for an Investigation into DHS’s Implementation of Secure Communities Program\n                    \n                            Recent Reports Suggest DHS Misled Local Governments to Coerce them into Participating and Ignored Concerns with Program’s Impact on Community Crime Fighting and Racial Profiling \n                    \n                      April 28, 2011\n                     Menendez: “While I strongly agree that serious criminals should be removed from the United States, this program has gone awry and strayed from its mission.”\nWASHINGTON – Amid reports that the Department of Homeland Security misled local governments to coerce them into participating in the Secure Communities program and ignored concerns with the program’s impact on crime fighting efforts and encouragement of racial profiling to target illegal immigrants, US Senator Robert Menendez (D-NJ) released the following statement today in support of Representative Lofgren’s (D-San Jose) call for an investigation into this matter.\n \n \n“I support Representative Zoe Lofgren’s request for an investigation into statements by the Department of Homeland Security’s (DHS) about whether state and local jurisdictions can opt-out of the Secure Communities program. There is a fog of confusion surrounding this program and the recent release of internal DHS emails has shed light on the fact that DHS has tried to coerce states and localities into participating instead of addressing their concerns about the program’s impact on community policing and crime fighting.  In addition to an investigation by the Office of Professional Responsibility and the Department’s Inspector General into the question of state and local opt-outs, DHS should limit the program to individuals convicted of serious criminal offenses.”\n“While I strongly agree that serious criminals should be removed from the United States, this program has gone awry and strayed from its mission.  It needs fundamental reform and state and local police officers, who are on the front line of crime fighting and protecting our community, should be able to decide whether the program helps or hurts their number one priority of fighting crime.”\n \n Representative Lofgren’s letter to the Department of Homeland Security:\n \n \n \n \nApril 28, 2011\n \n \n \nCharles K. Edwards                                       \n \nActing Inspector General                               \n \nU.S. Department of Homeland Security       \n \n245 Murray Drive, SW, Bldg. 410                \n \nWashington, DC 20528          \n \n \n \nTimothy Moynihan\n \nAssistant Director\n \nOffice of Professional Responsibility\n \nImmigration and Customs Enforcement\n \nP.O. Box 144755\n \nPennsylvania Ave. NW\n \nWashington, DC 20044\n \n \n \n \nDear Inspector General Edwards and Assistant Director Moynihan:\n \n \nIn recent months, it appears that Department of Homeland Security (DHS) and Immigration and Customs Enforcement (ICE) personnel and contract staff may have made false and misleading statements to local governments, the public, and Members of Congress in connection with the deployment of the Secure Communities program.  In response to a Freedom of Information Act request, ICE and the Federal Bureau of Investigations (FBI) have released many thousands of pages of documents, including internal e-mails and memoranda.  Having conducted with my legal staff an initial review of the documents that have been made public, I believe that some of these false and misleading statements may have been made intentionally, while others were made recklessly, knowing that the statements were ambiguous and likely to create confusion.  I now write to request that your offices conduct thorough investigations into any misconduct, including possible violations of criminal law, revealed by the documents.  As the identities of many persons were redacted from publicly available documents and some documents were withheld entirely or have yet to be made public, it is important that you review the conduct of all relevant persons in order to determine who bears responsibility for any misconduct that you find.\n \n \nThe statements in question deal primarily with the issue of whether Secure Communities is a mandatory program that all states and localities must participate in or whether localities may be permitted to “opt out” of the program out of a concern that participation will present a barrier to community policing efforts and will make it more difficult to implement a law enforcement strategy that meets public safety needs.  Under the Secure Communities program, fingerprints collected by local law enforcement agencies upon booking that are routinely submitted to State Identification Bureaus (SIBs) in order to be checked by the FBI Criminal Justice Information Services Division (CJIS) Integrated Automated Fingerprint Identification System (IAFIS) are now checked against immigration databases and provided to ICE for purposes of immigration enforcement.  Some localities have asked that fingerprints submitted to their SIBs be checked against criminal, but not immigration, databases, and Members of Congress and their offices have sent letters, asked questions for the record, and held briefings on that topic.\n \n \nAccording to a recent statement by a DHS official, “Secure Communities is not voluntary and never has been.”  (Lee Romney, Congresswoman Calls for Investigation of Enforcement Program That Screens for Illegal Immigrants in Jails, Los Angeles Times, April 22, 2011).  Unfortunately, this statement cannot be reconciled with many of the public and private statements made by DHS and ICE personnel over the past two years.  For instance, more than two years ago, ICE responded to a written question for the record posed by then-Chairman David Price that “ICE does not require any entity to participate in the information sharing technology at the state or local level.”[i]  Similarly, in an August 26, 2009, e-mail exchange specifically on the topic of whether Secure Communities is mandatory or voluntary, one ICE official wrote that Secure Communities “will remain voluntary at both the State and Local level. . . . Until such time as localities begin to push back on participation, we will continue with this current line of thinking.”[ii]  A memorandum prepared in 2009 for ICE Director John Morton on the topic of voluntariness acknowledges that “[t]o date, Secure Communities has stated in various arenas, including Congress, that state and local participation in IDENT/IAFIS Interoperability is voluntary.”[iii] \n \n \nIn order to clarify significant confusion about the program, I wrote to DHS Secretary Janet Napolitano on July 27, 2010, specifically asking “how local law enforcement agencies may opt out of Secure Communities by having the fingerprints they collect and submit to the SIBs checked against criminal, but not immigration, databases.”  In her response, Secretary Napolitano described what steps must be taken by a locality “that does not wish to participate in the Secure Communities deployment plan” and explained that “[i]f a local law enforcement agency chooses not to be activated in the Secure Communities deployment plan, it will be the responsibility of that agency to notify its local ICE field office of suspected criminal aliens.”  This response clearly indicated to me that localities were permitted to opt out of the program in the manner described in my original letter.  And according to one recently released e-mail by an FBI/CJIS employee, my conclusion should have come as a surprise to no one; commenting on an earlier, but nearly identical, draft of the Secretary’s response to my letter, the FBI employee wrote: “reading the response alone would lead one to believe that a site can elect to never participate should they wish (at least it reads that way on my small [Blackberry] screen).”[iv]\n \n \nOne issue at the heart of any deceptive statements by DHS or ICE personnel appears to be ICE’s decision to adopt a counterintuitive and misleading definition of the term “opt out” to refer only to the ability of localities to avoid receiving the results of immigration checks conducted on fingerprints submitted to the SIBs, but not the use of fingerprints to check immigration databases.  According to one e-mail exchange, this decision was approved by unnamed ICE front office personnel orally, rather than in writing, in order to give officials “plausible deniability.”[v]\n \n \nIt is unacceptable for government officials to essentially lie to local governments, Members of Congress, and the public.  Unfortunately, my review of the e-mails that have been made public suggests that some government personnel have been less than completely honest about this program over the last two years.  It is critically important that you thoroughly investigate this matter and that any misconduct result in real consequences.  I am available if you have any questions or would like to discuss this matter in greater detail.  Thank you for your prompt attention to this matter.\n \n \nSincerely,\n \n \n Zoe Lofgren\n \nRanking Member\n \nSubcommittee on Immigration Policy and Enforcement\n \n #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5951bb1b-4d98-4da1-8140-191f302a5e40,\"Menendez, Lautenberg Announce Federal Funding to Help Struggling NJ Families Achieve Self Sufficiency\n                    \n                            Senators Announce $1.5 Million through Department of Housing and Urban Development’s Family Self Sufficiency Program\n                    \n                      April 27, 2011\n                     WASHINGTON – U.S. Senators Robert Menendez and Frank R. Lautenberg (D-NJ) today announced funding that will help New Jersey families seize control of their economic futures. The Senators announced that New Jersey has been awarded $1. 5 Million by the Department of Housing and Urban Development (HUD) through the Family Self Sufficiency Program (FSS). The largest recipient was the New Jersey Department of Community Affairs, set to receive $275,040 in funds.  \nThe Family Self Sufficiency Program helps HUD-assisted renters to increase their own economic security. Specific services provided may include child care, transportation, education, job training, substance/alcohol abuse counseling, household skill training, and homeownership counseling. Additionally, an escrow account is established in the family’s name, the contents of which are paid to the head of the family if no member of the family is receiving cash welfare assistance when the FSS contract is completed.\nSenator Menendez said, “We are investing in the future, not just housing. In difficult economic times we cannot afford to forget that America’s greatest asset is its human potential. These locally administered grants will help New Jersey families gain the traction they need to get on their feet and stay there. Americans are as ready as ever to pull themselves up by the bootstraps – we must do our part by sustaining a nation of opportunities.” Senator Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development said, “This critical federal funding will put New Jersey families on the path to a stronger financial future.  Providing hard-working families with resources for transportation, job-training, education and other benefits will benefit the economy and make our communities stronger.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=699da2c0-b864-4a4a-b225-64bdcb5c5091,\"Menendez: No More Subsidies for Big Oil\n                    \n                      April 27, 2011\n                     WASHINGTON – As oil companies start reporting their first quarter profits, one thing is certain: they do not need help from taxpayers.\n \n \n \nU.S. Sen. Robert Menendez (D-NJ) wants to put money back into taxpayers’ wallets instead of in Big Oil’s coffers. He has introduced the Close Big Oil Tax Loopholes Act, legislation that would end billions of dollars in taxpayer subsidies for Big Oil.\n \n \n \n“Facts are stubborn things. Oil companies are not using their enormous revenues and subsidies to drive down prices.  Instead they are pocketing these subsidies to pad outrageous profit numbers.  In a budget crisis we cannot continue to subsidize Big Oil.”\n \n \n \nMenendez’s Close Big Oil Tax Loopholes Act has been scored by the Joint Tax Committee and would raise $33 billion over 10 years.  The bill contains important safeguards to allow refineries and oil companies with yearly revenues of less than $100 million to retain certain tax credits and deductions.\n \nBackground on S. 258:\n \n•    Recoup Royalty Revenue Lost to Contract Loopholes: This proposal would create an excise tax on oil and gas produced on federal lands on the Outer Continental Shelf (OCS) in order to pay back American taxpayers for contract loopholes whereby oil and gas companies avoided paying royalties on certain oil and gas produced in the Gulf of Mexico. \n \n•    End Oil Companies Abuse of Foreign Tax Credits: Would require that a dual capacity taxpayer establish that the foreign country generally impose an income tax to be able to claim a foreign levy as a creditable tax.\n \n•    Repeal Expensing of Intangible Drilling Costs: Would repeal the deduction for IDCs and require such costs be capitalized as a cost of the well or tangible property and recovered through depreciation or depletion, as applicable.  Oil companies with yearly revenues of less than $100 million would retain the use of this deduction.\n \n•    Repeal Percentage Depletion for Oil and Gas Wells: This proposal would repeal percentage depletion for oil and gas properties. Oil companies with yearly revenues of less than $100 million would retain the use of this deduction.\n \n•    Repeal Deduction for Tertiary Injectants: The proposal would repeal the current deduction and instead allow oil companies to capitalize and depreciate or deplete costs for tertiary injectants.  For example, supply costs would be capitalized and deducted when consumed or as part of cost of goods sold. Oil companies with yearly revenues of less than $100 million would retain the use of this deduction. \n \n•    Repeal Exemption of Passive Loss Limitations for Interests in Oil and Gas Properties:  The proposal would end the exemption from passive loss rules for oil companies so they must operate under the same tax rules as other corporations.  Oil companies with yearly revenues of less than $100 million would retain the use of this exemption.\n \n•    Repeal Domestic Manufacturing Deduction for Oil and Gas Production: This proposal would repeal the ability of oil and gas companies to claim oil and gas production as manufacturing, thus making the production activities ineligible for the domestic production activities deduction.  Oil companies with yearly revenues of less than $100 million would retain the use of this deduction.  The deduction would also be retained for oil refining and natural gas processing.\n \n•    Match Geological and Geophysical Amortization Periods for All Oil and Gas Companies: This proposal would create more uniform amortization rules for geological and geophysical costs.  G&G costs are costs incurred in obtaining and accumulating data that serves as the basis for acquiring and retaining oil and gas properties.  Oil companies with yearly revenues of less than $100 million could amortize geological and geophysical costs over two years.  All others would amortize these costs over 7 years.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4867e83a-136c-4bc6-9989-aa4f0af99b3b,\"Menendez Applauds Speaker Boehner and President Obama For Coming Together to End Big Oil Tax Subsidies\n                    \n                            Menendez is the author of the “Close Big Oil Tax Loopholes Act”\n                    \n                      April 26, 2011\n                     WASHINGTON –US Senator Menendez (D-NJ) released the following statement today after Speaker Boehner made public declarations in support of ending certain tax loopholes for Oil companies yesterday and President Obama sent a letter to the Congressional leadership in response urging Congress to take immediate action on this issue:\n“I applaud Speaker Boehner and President Obama for finding common ground and coming together to end the unfair tax subsidies that simply deepen our federal deficit. I have fought hard to end these unjustified and wasteful subsidies. Oil companies are not using their enormous revenues and subsidies to drive down prices, but are instead pocketing these subsidies to further boost their outrageous profits.  I pledge to continue to work with Congressional leaders and President Obama to see the Close Big Oil Tax Loopholes Act become law.”\nClose Big Oil Tax Loopholes Act\nMenendez’s Close Big Oil Tax Loopholes Act has been scored by the Joint Tax Committee and would raise $33 billion over 10 years.  The bill does contain important safeguards to allow refineries and oil companies with yearly revenues of less than $100 million to retain certain tax credits and deductions.\n Background on legislation:\n•    Recoup Royalty Revenue Lost to Contract Loopholes: This proposal would create an excise tax on oil and gas produced on federal lands on the Outer Continental Shelf (OCS) in order to pay back American taxpayers for contract loopholes whereby oil and gas companies avoided paying royalties on certain oil and gas produced in the Gulf of Mexico. \n•    End Oil Companies Abuse of Foreign Tax Credits: Would require that a dual capacity taxpayer establish that the foreign country generally impose an income tax to be able to claim a foreign levy as a creditable tax.\n•    Repeal Expensing of Intangible Drilling Costs: Would repeal the deduction for IDCs and require such costs be capitalized as a cost of the well or tangible property and recovered through depreciation or depletion, as applicable.  Oil companies with yearly revenues of less than $100 million would retain the use of this deduction.\n•    Repeal Percentage Depletion for Oil and Gas Wells: This proposal would repeal percentage depletion for oil and gas properties. Oil companies with yearly revenues of less than $100 million would retain the use of this deduction.\n•    Repeal Deduction for Tertiary Injectants: The proposal would repeal the current deduction and instead allow oil companies to capitalize and depreciate or deplete costs for tertiary injectants.  For example, supply costs would be capitalized and deducted when consumed or as part of cost of goods sold. Oil companies with yearly revenues of less than $100 million would retain the use of this deduction. \n•    Repeal Exemption of Passive Loss Limitations for Interests in Oil and Gas Properties:  The proposal would end the exemption from passive loss rules for oil companies so they must operate under the same tax rules as other corporations.  Oil companies with yearly revenues of less than $100 million would retain the use of this exemption.\n•    Repeal Domestic Manufacturing Deduction for Oil and Gas Production: This proposal would repeal the ability of oil and gas companies to claim oil and gas production as manufacturing, thus making the production activities ineligible for the domestic production activities deduction.  Oil companies with yearly revenues of less than $100 million would retain the use of this deduction.  The deduction would also be retained for oil refining and natural gas processing.\n•    Match Geological and Geophysical Amortization Periods for All Oil and Gas Companies: This proposal would create more uniform amortization rules for geological and geophysical costs.  G&G costs are costs incurred in obtaining and accumulating data that serves as the basis for acquiring and retaining oil and gas properties.  Oil companies with yearly revenues of less than $100 million could amortize geological and geophysical costs over two years.  All others would amortize these costs over 7 years.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fe4e3802-0568-4bbc-b995-9f52ae655363,\"Menendez Announces Moorestown-based Shipping Company Awarded $4 Million Contract to Operate Two Ships for Rapid Deployment of U.S. Military Forces\n                    \n                      April 25, 2011\n                     Washington – The US Department of Transportation (DOT) has announced that the United States Maritime Administration (MARAD) has awarded Interocean American Shipping (IAS), based in Moorestown, NJ, a contract to maintain and operate two additional ships in MARAD’s Ready Reserve Force (RRF) fleet. The contract, worth $4 million, brings valuable resources and recognition to New Jersey.\n“The U. S. Maritime Administration’s Ready Reserve Force fleet is vital to our national security and to U.S. participation in international relief missions around the world.  New Jersey’s Interocean American Shipping Corporation is a top performer in the Ready Reserve Force, consistently able to mobilize and deliver the ships it manages to the U.S. Navy at a moment’s notice.  I am proud of the exceptional work that IAS does in support of the Ready Reserve Fleet and I am pleased they are being rewarded.  Their management of two additional ships will bring more business and more jobs to Moorestown.“\nMARAD’s Ready Reserve Force (RRF) fleet consists of 48 ships that support the rapid deployment of U.S. forces worldwide for a variety of activities including military purposes and emergency response.  With this new contract, IAS now maintains and operates four of these ships.   Ships on standby must be delivered to the U.S. Navy within a specified timeframe often ranging from five to 10 days, and MARAD conducts tests regularly to ensure contractors are able to fulfill their obligation to deliver ships within these tight timeframes to a variety of geographic locations.\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=06ddc3c4-af74-4212-a993-1891de170ff6,\"Menendez Reflects on Genocide Remembrance Day\n                    \n                            1.5 million Armenians massacred at the hands of the Ottoman Empire between 1915-1923\n                    \n                      April 24, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today released the following statement in honor of Genocide Remembrance Day and the 1.5 million Armenians who lost their lives at the hands of the Ottoman Empire nearly 100 years ago:\n“During this time of remembrance, we pause in memory of one of the most horrible tragedies of the 20th century, the annihilation of 1.5 million Armenians through forced exile and murder by the Ottoman Empire,” said U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee. “Although nearly 100 years have passed since the Armenian Genocide, time cannot erase the horror inflicted on the Armenian people.  There is no statute of limitations for acts of genocide that compels us to move on -- in fact the reverse is true – the act of genocide compels us to retell the story so that the world is reminded of the capacity of man to harm his fellow man.  We are obligated to review, reflect and attempt to understand the circumstances that led to this tragedy so that in the future we can act to prevent a similar tragedy from happening again. \nOn April 24, 1915, millions of Armenians were deported from the Ottoman empire, and the date has become to be known as Genocide Remembrance Day. Over the course of eight years, the Ottoman Empire massacred and continued removing Armenians from their homeland, where they had existed for 2,500 years.  In 1915, the Allied Powers issued the joint statement of England, France and Russia that explicitly charged, for the first time ever, another government of committing \"\"a crime against humanity.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=695af2f6-1dca-4146-8c7e-288426055482,\"Menendez Applauds DOT Announcement of Greater Airline Passenger Protections\n                    \n                            Rulemaking Orders Disclosure of Hidden Fees in Advertisements and on Websites\n                    \n                      April 20, 2011\n                     Washington – Today, the US Department of Transportation (USDOT) announced new rules for airlines that will bring passengers greater protections, including the full and upfront disclosure of hidden fees. The new regulations, which begin to take effect in late August and reach full effect in October, require airlines to disclose all potential fees and charges on their websites. US Senator Menendez (D-NJ), author of the Clear Airfares Act, a version of which was included in the final version of the FAA Air Transportation Modernization and Safety Improvement Act, released the following statement:\n\"\"This is great news for American travelers and consumers. It is simply unacceptable that at a time when families are watching every last penny, airlines are taking in billions in hidden fees. This is a cause I have long championed in the Senate and I am pleased to see the USDOT ruling to provide travelers with an upfront breakdown of exactly how much it will cost them to get to their destination.” The FAA bill that passed the Senate includes provisions from Menendez’s Clear Airfares Act to assist consumers in making well informed decisions when purchasing airline tickets. The legislation requires airlines and third-party websites to provide consumers with a complete and understandable listing of total airfare charges, as well as any other possible fees that may be incurred on the flight (including: baggage, meals, blankets, headsets, changing reservations, changing seats, or extra legroom) before the ticket purchase is made. The rule issued by DOT also follows the recommendations in a letter Menendez with 6 Senators from both sides of the aisle in September. The letter to U.S. Secretary of Transportation Ray LaHood urged him to protect consumers by requiring the full disclosure of ancillary fees on airline tickets. PDF of the Letter: http://menendez.senate.gov/imo/media/doc/092310LetterLaHoodAirlineHiddenFees.pdf\nCurrently, consumers must navigate peripheral web pages and wade through often confusing text to understand whether or not an airfare includes surcharges and what other taxes and fees may have already been included.  In some cases, for instance with trip insurance, consumers may have additional fees automatically added to the purchase, having to de-select or opt out of the additional charge.  Numbers from the Bureau of Transportation Statistics reveal that airlines took in at least $4.3 billion from additional fees in 2010 –with the actual figure likely being much higher, since certain additional fees were not counted.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a5357b96-e087-4200-a44f-ce8e22bd6c0b,\"BP Spill One Year Later: Big Oil Still Not Fully Accountable For Damages\n                    \n                            Sen. Menendez: “We must send a message loud and clear to Big Oil: you make the mess, you clean it up.”\n                    \n                      April 20, 2011\n                     WASHINGTON – Today marks the one year anniversary of the explosion on the Deepwater Horizon drilling rig that killed eleven men and led to the worst oil spill in U.S. history. \n \nBig oil companies are still not legally bound to pay for their mistakes, said U.S. Sen. Robert Menendez (D-NJ), who has led the charge to remove the current $75 million liability limit that oil companies have to pay for economic damages. In January he reintroduced legislation (S. 214 and S. 215) that would remove the current cap for damages that have to be paid by companies when they are responsible for spills. The legislation would also eliminate the $1 billion per incident cap on payouts from the Oil Spill Liability Trust Fund.   \n \n“One year ago BP, Transocean, and Halliburton were responsible for the most devastating oil spill in our nation’s history,” said Menendez, who has long emphasized the risks associated with coastal drilling. “Eleven are dead, fishermen and other coastal businesses are bankrupt, and the environmental cleanup is at best years away from completion. We have to send a message loud and clear to Big Oil: you make the mess, you clean it up. That’s why I’ve reintroduced the Big Oil Bailout Prevention Act and why I am working with my fellow senators to ensure that if an oil company spills, taxpayers are not left on the hook to pay for the economic damages.  The best way to prevent future spills is to make sure oil companies bear the full cost for their mistakes.\"\"\n \n\"\"It is important to remember that this spill occurred six months after a similar spill in Australian waters,\"\" said Menendez.  \"\"The industry and regulators were on notice and yet this spill still happened, because oil drilling is an inherently dangerous activity. That is why I will fight any renewed efforts to drill near the Jersey Shore. Not only is it a national treasure, but it is a primary driver of our state's economy.\"\"\n \nThe Big Oil Bailout Prevention Liability Act of 2011 (S. 214) would:\n \n· Eliminate the $75 million liability cap for offshore oil spills.\n \nThe Big Oil Bailout Prevention Trust Fund Act of 2011 (S. 215) would:\n \n· Eliminate the $1 billion per incident cap on claims against the Oil Spill Liability Trust Fund and allow community responders to access the fund for preparation and mitigation up front, rather than waiting for reimbursement later.\n \n· If damage claims exceed the amount in the Oil Spill Liability Trust Fund (currently $1.6 billion), then Treasury can temporarily refill the Fund and be repaid with interest once it is replenished. \n \n· Eliminate the $500 million cap on natural resources damages.\n \nConsidering that the 5 largest oil companies enjoyed over $75 billion in profits in 2010 alone (even with the losses from the spill in the Gulf), these measures are reasonable to make certain that the people and businesses affected by an oil spill are made whole.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=da8cfe42-703d-421d-a27e-3cb87041a4df,\"Menendez Applauds TSA Appointment of New Regional Security Director for Newark Airport\n                    \n                            New Director Encouraging News for Travelers’ Safety \n                    \n                      April 19, 2011\n                     Washington – The Transportation Security Administration announced today the appointment of Donald Drummer as the Federal Security Director for Newark Liberty International Airport (EWR). Safety breaches at the airport raised concerns for NJ Senator Menendez (D-NJ) when back in 2006 when the results of a security exercise conducted by the TSA indicated undercover American agents successfully smuggled firearms, fake explosives and other illegal items onto airplanes 20 out of 22 times.\nFollowing last year’s stunning breach of security by a young man who walked past a security entry point to kiss his girlfriend goodbye which resulted in the shutdown of an entire terminal and the inconveniencing of thousands of travelers, U.S. Sen. Robert Menendez increased his campaign to improve security measures at New Jersey’s main airport.\nMenendez also requested President Obama include funding for specific security technology upgrades at the airport as part of his FY2011 federal budget proposal:\n•             Installation of a new video surveillance system that is fully and continuously functional and is not prone to malfunctions\n•             Networking the video surveillance so that it can be monitored from the Port Authority Police Department’s security center\n•             Additional cameras to ensure that the entirety of the airport is under continuous video surveillance\n•             Motion sensor technology at secure area exit points to trigger an alarm when they areas are breached.\nSenator Menendez said: “This is welcome news for New Jerseyans and for the millions of travelers who fly through Newark’s international airport every year. Following last year’s breach, the TSA took initial steps to guarantee travelers’ safety, but much more remains to be done. I am encouraged by the TSA’s commitment to improve its performance at the airport and by its decision to appoint Mr. Drummer, someone whose extensive experience and leadership skills in improving security operations is sorely needed at the Newark airport. I will watch closely as Mr. Drummer implements the long overdue upgrades to guarantee the airport’s long term security.   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f60b33eb-4a18-40aa-bec2-95060769f9b2,\"During Autism Awareness Month, Durbin, Casey, Menendez, Lautenberg, Gillibrand Introduce Bill to Establish a National Autism Strategy\n                    \n                            Legislation would enhance employment, education, and health resources for people with autism\n                    \n                      April 15, 2011\n                     [WASHINGTON, D.C.] – During a month set aside to highlight the growing need for concern and awareness about autism, U.S. Senators Dick Durbin (D-IL), Bob Casey (D-PA), Robert Menendez (D-NJ), Frank Lautenberg (D-NJ) and Kirsten Gillibrand (D-NY) today introduced legislation that would create a comprehensive strategy to address the needs of families affected by autism spectrum disorder.  The Autism Services and Workforce Acceleration Act authorizes federal funding for a wide range of service, treatment, support and research initiatives.\n \n“Almost 26,000 families in Illinois struggle with autism,” said Senator Durbin.  “Because the cost of autism-related services is so overwhelming for these families, the State of Illinois passed legislation requiring health plans to provide coverage for the diagnosis and treatment of autism.  This bill builds on commitments the federal government has already made for people with autism, by enhancing not only access to health care but investing in essential services that will improve the lives of youth and adults with autism.”\n \n“Individuals with autism have struggled for many years to get the services and treatment they need to lead rich and productive lives,” said Senator Casey. “I am proud to join my colleagues today during Autism Awareness Month in introducing the Autism Services and Workforce Acceleration Act.  This legislation is an important step in aiding the 18,500 children who are diagnosed with an autism spectrum disorder each year in Pennsylvania and will help individuals across the spectrum and across their lifespan.  We must recognize that adults with autism have different needs than children with autism and do all that we can to support individuals with autism as they transition to adulthood so they can live satisfying and independent lives.”\n \n \n“This is an important piece of legislation that demonstrates the need to increase support services for families and individuals affected by autism.  I am proud to take the lead from Senator Dodd and work with Senator Durbin and my other colleagues to reauthorize the Combating Autism Act this year,” said Senator Menendez.  “Families in New Jersey, more than anywhere else, understand that we need to address autism on multiple fronts – with research, with early treatment and with a support structure and services for individuals and families affected by autism.”\n \n“This is an important bill that will help individuals with autism receive the education, training and support services they need to live healthy and more independent lives,” said Senator Lautenberg.  “New Jersey has one of the highest rates of autism in the country, and I am proud to confront the challenges that families struggling with autism face every day.”  \n \n“The rate in which autism is increasing is alarming,” said Gillibrand. “It is vital that we make investments in new research that will benefit the lives of millions. We know that early intervention is one of the best ways to ensure a child’s long term success, but thousands of families simply cannot afford the cost of treatment and programs needed to help those with autism. This legislation will help provide essential services, treatment and support for families.”\n \nToday’s legislation – a versions of which was first introduced in 2009 – builds on the Combating Autism Act, signed into law in December 2006.  That bill called on the federal government to increase research into the causes and treatment of autism, and to improve training and support for individuals with autism and their caretakers.  \n \nThe Centers for Disease Control (CDC) estimate that approximately 1 in 110 people in the United States has autism or autism spectrum disorder.  Individuals with autism often need assistance in the areas of comprehensive early intervention, health, recreation, job training, employment, housing, transportation, and early, primary, and secondary education.  Greater coordination within these service delivery systems will enable individuals with autism and their families to access the best and most current treatment, services and research for their individualized needs – and to do so throughout the lifespan of individuals. \n \n“Autism Speaks is proud to support this legislation, which represents a continued commitment by Senator Durbin and his colleagues to addressing the challenges faced by individuals with autism and their families,” said Peter Bell, executive vice president of programs and services.  “Services for individuals with autism is an area of desperate need.  This bill brings this important issue to the forefront for Congress.”\n \n \n“Those of us who have children with autism worry about their futures, particularly the transition from school to adulthood, when families lose those valuable services and supports previously afforded through the school system,” said Jeff Sell, Autism Society Vice President and General Counsel, who has twin 16-year-old boys with autism.  “The ASWAA addresses the concerns of parents by providing valuable assistance in vital services for adults, including postsecondary education, employment and residential services, all of the pieces that need to fall into place for a person to live his best life.  The Autism Society thanks Senators Durbin, Casey, Menendez, Lautenberg and Gillibrand for their attention to the needs of the families we serve today.”\n \nThe Autism Services and Workforce Acceleration Act aims to meet the comprehensive needs of, and improve the quality of life for, individuals with autism and their families by:\n \n \n \nCreating a demonstration project to provide a full      array of services like post-secondary education, vocational skills      training, employment, and residential services for adults with autism to      improve their quality of life and enable them to live as independently as      possible; \n \n \n \nCreating a demonstration project to develop Autism Care      Programs. These programs would provide a full array of medical,      behavioral, mental health, educational and family care services to      individuals and families in a single location.  These comprehensive      treatment facilities would increase access to quality health care services      and communication among health care providers, educator and other      providers of services; \n \n \n \nDeveloping a national multimedia campaign to increase      public education and awareness about healthy developmental milestones and      autism throughout the lifespan;\n \n \n \nCreating a national training initiative on autism and a      technical assistance center to develop and expand interdisciplinary      training and continuing education on autism.\n \n \n \nChildren and adults with autism spectrum disorders can show difficulties in verbal and nonverbal communication, social interactions, and sensory processing.  Symptoms and behaviors may range from mild to significant, and require varying degrees of support from friends, families, service providers, and communities.  There is strong consensus within the research community that intensive treatment as soon as possible following diagnosis not only can reduce the cost of lifelong care by two-thirds, but also yields the most positive life outcomes for children with autism spectrum disorders.  These individuals have a right to live lives that are as full, productive and independent as possible – and with the right services, support, and treatments, they can do just that.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=22976024-0dfe-43d6-9876-3c46007f4e1f,\"Pain at the Pump: NJ Families Will Spend 28% More  to Go to the Beach, $380 More to Commute to NYC\n                    \n                            As Gulf Spill Anniversary Approaches, Big Oil Companies Remind Us Once Again They Are Not On Our Side \n                    \n                      April 15, 2011\n                     NEW JERSEY – The ongoing crisis in Libya and the Middle East – as well as unchecked energy speculation –are driving gas prices higher and causing pain at the pump for New Jersey families and small businesses, U.S. Senator Robert Menendez (D – New Jersey) said today. The average price for a gallon of gas in New Jersey is currently $3.61, according to the AAA. That’s up almost 20 cents from prices just one month ago.\nMenendez released a new analysis showing how the rising gas prices will impact families heading to the beach, workers commuting to the office, or someone just going to the movies. For instance, families heading to Cape May for a weekend trip will spend 28 percent more in 2011 than they did in 2010 – and that’s before they even arrive at the beach.\nA year after the largest oil spill in history, with oil companies reaping massive profits without reducing gas prices for families, enjoying taxpayer’s subsidies and doing nothing to help balance the budget, one thing is clear: Big Oil is Not on Our Side – it is not on New Jerseyans’ side.\nPAIN AT THE PUMP: THE RISING COST OF COMMON NEW JERSEY TRIPS\nA Paramus worker commuting to New York City will pay an extra $380 at the pump this year.\nA Montclair businesswoman traveling to Newark Airport 20 times a year will pay an extra $20.40 over last year, before paying inflated parking and flight costs.\nAn extra $23.40 for a West Milford family that visits High Point State Park 10 times over the course of the year.\nAn extra $4.50 for a family that makes 10 trips from Ridgewood to Garden State Plaza Shopping Mall in Paramus\nAn extra $130 for a Cherry Hill teacher commuting to a Philadelphia-area school per year.\nA Princeton resident commuting to Trenton will pay an extra $210 at the pump per year.\nA Princeton family heading to the beach in Belmar will pay $36.60 more than last year.\n(Source: Gas prices from AAA; Analysis completed by the Office of Senator Menendez)\nMenendez also discussed his energy plan to help ease energy prices -- a series of steps to help lower gas prices and promote the United States’ long-term energy security. In addition to calling on the President to release 50 million barrels of oil from the Strategic Reserve, Menendez is calling for a new crackdown on energy speculation, keeping American oil in America, increasing incentives for clean energy technology, such as natural gas and electric vehicles, among other ideas (Full Menendez Plan Attached).\n \nSen. Menendez said, “We have to help struggling families now and prevent our economy from falling backwards into a recession. It’s simply wrong for New Jersey families to feel pain at the pump while oil companies do nothing and continue to reap the tax benefits that put our future economic security in jeopardy. A year after the largest spill in history, it is clear: Big Oil is Not on Our Side. The steps I have proposed will ease the burden on already struggling families now while we continue working to win the future.”\nMenendez Plan to Ease Rising Gas Prices\n1.      Release 50 million gallons of oil from the Strategic Petroleum to help lower prices: President Obama to release the oil and invest the profits raised from selling the reserves to reduce the deficit and invest in technologies that will decrease our oil dependence.\n \n2.      Rein in Speculation That Drives up Oil Prices: Senator Menendez is pushing to reduce incentives for excessive speculation on oil prices, and thereby reduce volatility in the price of gas.  This package calls on the Commodity Futures Trading Commission (CFTC) to increase the minimum margin requirements on speculators (not legitimate hedgers such as businesses like airlines that hedge fuel prices).  Dodd-Frank gave the CFTC authority to rein in speculation, but the commission has not yet finalized new rules, leaving the exchanges to continue to regulate themselves.  That’s how speculators can buy $100 worth of oil futures with just $6 down, while legitimate investors have to put down 50% to buy stock.\n \n3.      Keep American Oil in America: More than 2.5 million barrels of U.S.-produced crude oil and petroleum products are sent abroad each day. This legislation keeps that oil supply here at home, not sent to the other side of the world\n \n4.      End Billions in Tax Breaks for Big Oil: This legislation would repeal numerous taxpayer giveaways and save taxpayers over $17 billion over the next 5 years.\n \n5.      Increase Incentives for the Adoption of Natural Gas Vehicles: Menendez will introduce bipartisan legislation to support the use of natural gas as a transportation fuel and increase our energy security.\n \n6.      Accelerate Electric Vehicle Deployment: Menendez supports legislation that would increase incentives for electric vehicle purchases, promote the deployment of charging infrastructure, help coordinate and develop model electric vehicle communities, provide technical assistance to communities nationwide to plan for electrification, and increase electric vehicle research and development funding.\n \n7.      Ratchet Down Ethanol Subsidies and Ethanol Tariffs: Menendez believes ethanol tariffs prevent Americans from accessing the cheapest ethanol on the market.  The Senator proposes cutting the ethanol subsidy for corn ethanol and the tariff over 5 years to 20 cents per gallon.  This proposal is estimated to save the federal government over $11 billion over the next 5 years.\n \n8.      Raise Fuel Economy Standards to 60 Miles Per Gallon By 2025: Senator Menendez supports raising fuel economy standards to 60 mpg by 2025. By increasing fuel economy standards to 60 mpg, Americans will save a whopping 2.87 million barrels of oil per day by 2030.  At today’s oil prices, that amounts to nearly $300 million dollars per day that Americans can keep for themselves rather than send overseas or pad the profits of oil companies.\n \n9.      Set Aggressive Fuel Efficiency Targets for Medium and Heavy Vehicles and Improve Efficiency for Non-Road Transportation: Senator Menendez is calling on the Obama Administration to set fuel economy standards at a standard of 15.8 mpg by 2030, up from a current efficiency of 9.7 mpg, and heavy-duty trucks could reach 10.4 mpg, up from 6.5 mpg today. Combined, these measures would save 2.145 mbpd, reducing projected demand by 10% in 2030.  At current oil prices this is the equivalent of over $200 million per day.\n \n10.  Expand Transit Use: Menendez proposes making an immediate $2 billion investment in our struggling transit systems to lower fares and maintain service. This joint step would lower consumers’ overall transportation costs by decreasing congestion and gas prices for freight and passenger vehicles on our roadways. Doubling transit ridership would result in more than 0.2 mbpd savings in 2030.\n \n11.  Use It Or Lose It On Federal Leases To Spur Oil Production: Senator Menendez plans to reintroduce the Use It or Lose It legislation to spur oil companies to develop the over 60 million acres of federal land they currently lease, but have not developed to produce oil. While some are calling for opening up more federal lands for drilling, the oil companies have failed to explain why they have not produced on over three-quarters (or 60 out of the 79 million acres) of federal lands and waters they currently lease.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dac5f117-ffba-409f-9737-d19f73bd1adc,\"Senate Passes Bill Funding Government Through September, Cutting $78.5 billion\n                    \n                            Senator Robert Menendez Calls for Shared Sacrifice\n                    \n                      April 14, 2011\n                     WASHINGTON – The Senate cleared a legislative hurdle Thursday night when it passed a continuing resolution that funds the government through September. After significant debate on both sides of the aisle, a compromise was finalized and passed in the House earlier on Thursday.  The bill reduces funding by $78.5 billion below the President’s FY2011 request.\n \n \n“We all agree that we have to reduce our nation’s deficit.  That requires difficult choices as we saw in 1993, when we last put our nation on a path to surplus.  This bill includes historic spending reductions, and while I don’t agree with all of the cuts, it does a much better job of protecting our nation’s priorities than the more extreme Republican plan that was defeated earlier this year,” Sen. Robert Menendez (D-NJ) said, “This was not an easy decision, and there certainly are no easy options moving forward, but I believe we have a responsibility to  put our nation back on a fiscally responsible path, through shared sacrifice and shared responsibility, while also protecting priorities that create jobs, educate workers to compete in a global economy, and continue to rebuild our economy.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a8438366-cdce-4e62-9912-4d465204c1cc,\"HHS Approves New Jersey Plans to Expand Medicaid\n                    \n                            The Affordable Care Act made this waiver possible, allowing low-income individuals in New Jersey to get more comprehensive coverage and at a lower cost to the state\n                    \n                      April 14, 2011\n                     The Affordable Care Act made this waiver possible, allowing low-income individuals in New Jersey to get more comprehensive coverage and at a lower cost to the state\nWASHINGTON –The State of New Jersey was granted a Medicaid “waiver” that will provide hundreds of millions in desperately needed budget savings over the next three years, Senator Robert Menendez (D-NJ), Senator Frank Lautenberg (D-NJ) and Congressman Frank Pallone Jr., announced on Thursday. The waiver helps the state cover low-income adults with no children in the Medicaid program.  The financing for this waiver would not have been possible without the Affordable Care Act.\nUnder the waiver, the federal government will pay half the cost to cover childless adults earning $140 or less per month, providing a significant budget savings to the state at a time of serious fiscal problems. The state now pays the full cost for approximately 57,000 people. An estimated 10,000 additional people would qualify for coverage. In addition, the State will increase care coordination to improve health outcomes for participants in the program.\nSenator Menendez said: “This announcement is more proof of the positive impact that the new Affordable Care Act is already having in New Jersey.  This waiver is a win for New Jersey’s budget as the state will receive hundreds of millions of dollars from the federal government in the next two and a half years as a result of this announcement.  In addition, 70,000 New Jerseyans can now rest easy knowing that they will have access to essential Medicaid benefits.”\n“This is great news for New Jersey and another example of how the federal health care reform law is helping our state,” Lautenberg stated.  “As we fight to improve the economy and create jobs, this federal funding will make sure quality health care is available for thousands of New Jerseyans.” \"\"This is real good news for New Jersey. It provides a significant amount of money at a time when the state faces serious budget problems. This is one more benefit related to the Affordable Care Act that helps people with medical care and helps states with financial resources to meet those needs.\"\"  said Congressman Frank Pallone. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c82f3242-0162-4881-85c7-f4c08c7629b2,\"Senators Hail New Resources to Turn Around Under Performing Schools \n                    \n                            $11 Million in Federal Resources Will Help Struggling New Jersey Schools\n                    \n                      April 11, 2011\n                     WASHINGTON – New Jersey will receive new resources to help turn around the state’s worst performing schools, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced today. The U.S. Department of Education has awarded New Jersey $11 million to help revamp and turn around the state’s under performing schools. The funds are part of $546 million awarded nationwide through the School Improvement Grant Program in fiscal year 2010. \nSenator Menendez said: “Education is the key to opening opportunities. When schools struggle to educate our children and strengthen our workforce, we need the courage to intervene. These resources will help our local school districts overhaul New Jersey’s under-performing schools. Together we will create the strong schools our kids and families deserve.\"\"\nSenator Lautenberg said: “Every child in New Jersey deserves access to a quality education. This critical federal funding will lift up struggling schools across the state and help get them on the right track to provide a better education for our children.”\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dd91e382-e742-466a-8858-e5444c642fe9,\"Lautenberg, Menendez Announce $38.5 Million In Federal Funding To Begin Portal Bridge Replacement\n                    \n                            FEDERAL RECOVERY ACT FUNDING SECURED FOR CRITICAL INFRASTRUCTURE PROJECT\n                    \n                      April 8, 2011\n                     WASHINGTON, D.C. — U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that New Jersey Transit will be awarded $38.5 million through the American Recovery and Reinvestment Act (ARRA) to begin replacing the 100-year old Portal Bridge that crosses the Hackensack River between Kearny and Secaucus. With the funding now being provided by the U.S. Department of Transportation (DOT), work could begin shortly.\n“The Portal Bridge is a major chokepoint for thousands of commuters every day and an obstacle in the way of our efforts to improve regional rail transportation,” stated said Lautenberg, who as a member of the Senate Appropriations Committee helped write the Recovery Act.  “This federal funding will help replace the bridge so that train riders have a shorter, safer and more reliable commute every day.  Replacing the bridge will also prepare our regional infrastructure for new high-speed rail opportunities that will improve the economy and get cars off the road.  I am pleased to see the Recovery Act again deliver funding for a New Jersey project that will create jobs and benefit our state.  This funding is a good start on a great project and I will continue fighting against Republican attempts to shortchange infrastructure projects like the Portal Bridge.”      \n“This step is a win for New Jersey commuters and a win for New Jersey jobs,” said Menendez.  “Not only are we going to be helping families and workers get around the state faster and easier, but we are going to create thousands of good-paying jobs. It’s exactly the kind of economic shot in the arm New Jersey needs.”\nAs this project moves forward, Lautenberg and Menendez are fighting to increase infrastructure investment while House Republicans are attempting to strip away funding for transportation infrastructure, including some Recovery Act projects.   \nThe new Portal Bridge is critical to improving the reliability of Amtrak and NJ Transit trains and reducing wait times for commuters. The Portal Bridge is a chokepoint on the Northeast Corridor and its replacement is critical to improving reliability of Amtrak and NJ Transit trains.  \nReplacing the bridge is also an important step in advancing Amtrak's proposal to build two new rail tunnels from New Jersey to New York City called the “Gateway Project.”\nApproximately 420 passenger trains use the Portal Bridge each weekday.  The current bridge, however, is more than 100 years old and can no longer meet the demand of today’s commuters or rail traffic on the Northeast Corridor.  The funding would help replace the current two-track bridge.\nIn August 2009, Lautenberg and Menendez wrote Secretary of Transportation Ray LaHood supporting New Jersey’s application to replace the Portal Bridge. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=962413d7-3f0a-4013-bed2-54f7d8498d1e,\"Menendez Hails New Resources to Assess Abandoned New Jersey Mines, Guard Against Sink Holes\n                    \n                            Senator Fought for Nearly $270,000 to Protect Families and Communities\n                    \n                      April 8, 2011\n                     Menendez: \"\"Common sense step to keep our communities safe.\"\"\nNEW JERSEY - U.S. Sen. Robert Menendez (D-NJ) today hailed federal resources to assess the danger of abandoned mines in Northern Jersey, calling the effort a \"\"common sense step to keep our communities safe.\"\"\nUnder the new grant, New Jersey's Department of Environmental Protection will receive nearly $270,000 from the Federal Emergency Management Agency to \"\"study the problem of ground instability and subsidence, or surface depressions, associated with abandoned mines.\"\" The grants were announced today.\nAccording to the New Jersey State DEP, there are an estimated 600 mines in North Jersey, with the majority in Morris, Sussex, Warren, and northern Passaic counties. There almost 80 collapses of abandoned mines issues in North Jersey over the past 30 years.\nSen. Menendez said, \"\"These mines may be abandoned, but they are still dangerous. Basic forces like rain, snow, and ice as well as the passage of time can cause these mines to collapse - putting people living around them at risk. Assessing the risk is a common sense step to keep our communities safe.\"\"\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e5df5457-2624-4628-b00f-de46d1c0da7b,\"Menendez to UN Secretary General:  Revoke Goldstone Resolutions Against Israel\n                    \n                            Menendez: “An opportunity to redress this grave injustice to the State of Israel and the Jewish people.”\n                    \n                      April 8, 2011\n                     WASHINGTON – U.S. Sen. Robert Menendez (D-New Jersey) today sent a letter to United Nations General Secretary Ban ki-Moon asking him to urge the United Nations General Assembly and the United Nations Human Rights Council to revoke resolutions against Israel that were based on the faulty conclusions of the Goldstone report.\nIn an opinion piece in the Washington Post this week, Judge Goldstone, who was a former judge of the Constitutional Court of South Africa and headed the report along with three other appointed members, recanted the report’s conclusions and acknowledged that Israel did not intentionally target civilians. He concluded that “If I had known then what I know now, the Goldstone Report would have been a different document.”\n \nSen. Menendez wrote, “The damage done to Israel’s public image is largely irreparable and has created the unfortunate opportunity for erroneous condemnation of Israel as well as increased displays of anti-Semitism around the world.  Even if we cannot unring the bell, it would provide a measure of redress for the wrong inflicted on the State of Israel if the UN acknowledged the report’s errors and omissions, and accordingly revoked the associated UN General Assembly and UN Human Rights Council resolutions Your leadership on this issue would assist in restoring credibility to the UN and the UN Human Rights Council and in countering the anti-Israel sentiment that has unfortunately taken hold in these bodies.”  \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8d600ec3-8af1-435a-8b29-2a07d5a8cf04,\"Menendez, Lautenberg Announce $578K In Federal Funding For New Jersey Fire Departments\n                    \n                            Deptford, North Wildwood, Hamilton Secure Funds For Life-Saving Equipment\n                    \n                      April 7, 2011\n                     WASHINGTON, D.C. — U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced three New Jersey fire departments received more than $578,000 in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  These grants can be invested in training, equipment, personal protective equipment, health programs, and other support for stations and facilities. \n“Emergencies don’t wait for flush budget years, and neither will we. Our firefighters need to have the resources they need to protect themselves and our families in case of a fire emergency,”said Menendez.  “These funds will allow local fire departments to purchase the most modern safety equipment available and boost their capacity to respond in case of a fire. This is the very least we can do for the safety of our first responders, our families, and our communities.”\n“New Jersey’s firefighters are ready to roll at the sound of the alarm and we must be certain they have the best equipment and training available to handle the job safely and effectively,” said Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG grant program. “As cities and towns across the state struggle with tight budgets, I am working in the Senate to ensure that federal funding for public safety in New Jersey communities remains a priority.”\nThe $578,842 in AFG grants will be distributed as follows:\nDeptford -      $402,975 to the Deptford Fire Department for thermal-imaging devices, self-contained      breathing apparatuses and other safety equipment.\nHamilton       - $114,402 to the Hamilton Township Fire District 3 for a thermal-imaging      device and safety gear.\nNorth      Wildwood - $61,465 to the City of North Wildwood Fire      Department for safety gear.\nThe AFG grants are awarded to fire departments and EMS organizations to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies.\nFor more information about the programs, please visit: http://www.fema.gov/firegrants/\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=726a7e12-5d83-4bb0-9c70-6cea24a88b1c,\"Menendez: New Jersey Struggling Families and Seniors Win Additional $1.9 Million in Heating and Cooling Assistance \n                    \n                            More than $311 Million Resources Nationwide will Help Reduce Energy Bills\n                    \n                      April 7, 2011\n                     WASHINGTON – U.S. Sen. Robert Menendez (D-NJ) today announced the release of an additional $1.9 million in emergency funds to assist New Jersey’s low income families and seniors with energy costs. Struggling New Jersey families have received a total of more than $177 million in 2011 in Low Income Energy Assistance Program (LIHEAP) funding awarded by the U.S. Department of Health and Human Services. States will be able to use the resources to help families this summer or next winter.\nSen. Menendez said, “This crucial funding will help thousands of New Jersey families with energy costs from a rough winter with high fuel oil prices.  With this relief, New Jerseyans will be able to use more of their limited financial resources toward other basic needs and expenses. As we rebuild our economy , these funds will provide much-needed short term relief to thousands of families in our state.  In addition, some or our elderly and sick constituents will also need this assistance for their cooling bills this summer.”\nLIHEAP was created to help eligible low income families with costs associated with heating and insulating their homes in the winter and cooling their homes in the summer. A total of $5.1 billion was awarded to the program in fiscal year 2010, including more than $590 million in LIHEAP contingency funding. For more information on the program, please visit: http://www.acf.hhs.gov/programs/ocs/liheap/\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2a5ceb5c-74f6-4baa-b568-8b6af9bdbd8c,\"Senators Menendez, Reid & Begich Discuss Impact of Extreme GOP Budget Cuts on Hispanic Community\n                    \n                            Senators Host First Hispanic Task Force Meeting of the 112th Congress \n                    \n                      April 7, 2011\n                     WASHINGTON - U.S. Sen. Robert Menendez (D-NJ), Chairman of the Hispanic Task Force, Senate Majority Leader Harry Reid (D-NV) and U.S. Sen. Mark Begich (D-AK), Chair of the Democratic Steering and Outreach Committee, outlined the impact that the Republicans’ budget cuts would have on the nation’s Hispanic community, especially in the areas of health, education, and economic prosperity. The Senators hosted the first Hispanic Task Force meeting of 2011 with Democratic Senators and Hispanic Leaders from across the country to discuss priorities for the 112th Congress. \nAt the meeting, National and local Hispanic leaders had the opportunity to voice their concerns and ideas on the ongoing budget negotiations and the issues important to Hispanics across the country. Among other programs, the extreme GOP cuts would harm the 400,000 Latino children in Head Start, the 59 percent of Women with Infant and Children beneficiaries who are Hispanic, and over 1 million Latino college students who depend on Pell Grants.\nAccording to new census numbers, Hispanics continue to be the largest and fastest growing minority, with one in six Americans being of Hispanic descent.\nSenator Menendez said, “Show me your budget, and I’ll show you your values. Republicans have shown us that issues important the Latino community –strong schools, safe communities, and new good-paying jobs – are not a concern for them. Democrats believe the Hispanic community is a priority, our budget invests in their future, and we will continue to fight on behalf Hispanics across our country.”\nSenate Majority Leader Reid said, “We understand the need to cut wasteful spending like tens of billions in government giveaways to big oil companies.  However, too many Latino families in Nevada and across the country will suffer if the TEA Party gets its way and enact their reckless spending plan.  Their extreme proposal slashes Head Start when 36 percent of the program’s participants are Hispanic.  It makes drastic cuts to community health centers, when Latinos comprise the largest number of our nation’s uninsured.  Furthermore, it puts the Minority Business Development Agency on the chopping block, a program that helped almost 1,500 Latino small business owners in 2009 alone.\n“Republicans need to join Democrats in rejecting this extreme proposal and work to toward a bipartisan agreement that cuts wasteful spending, protects jobs and avoids a devastating government shutdown.”\n Senator Begich said, “Senate Democrats know and understand how important the Latino community is to our great nation. As Chair of the Senate Democratic Steering and Outreach Committee, it is my privilege to partner with Senator Robert Menendez and the Hispanic Task Force to ensure that we communicate about our shared goals and shared concern about the reckless budget cuts our Republican colleagues are proposing. The Hispanic community in Alaska and America is rapidly growing and I am encouraged to see so many key Latino leaders actively mobilizing their communities to speak out against the immediate and detrimental effect these cuts would have on programs critical to millions of Americans.  As I have repeatedly said, I hope Republicans will join us at the table so we can get a real budget plan that not only reduces our deficit, but also ensures that the economy is growing, businesses are thriving, and our communities are protected.”\n A record number of 14 Democratic Senators participated in the meeting, including: Chairman of the Hispanic Task Force Senator Robert Menendez (D-NJ), Senate Majority Leader Harry Reid (D-NV), Senate Assistant Majority Leader Dick Durbin (D-IL), Senator Mark Begich (D-AK), Senator Richard Blumenthal (D-CT), Senator Daniel Akaka (D- HI), Senator Bill Nelson (D-FL), Senator Jack Reed (D-RI), Senator Frank Lautenberg (D-NJ), Senator Jeff Merkley (D-OR), Senator Michael Bennet (D-CO), Senator Mark Warner (D-VA), Senator Mark Udall (D-NM), Senator Patrick Leahy (D-VT).\n \n### ON BACKGROUND###\nHispanic Population Numbers \nAs of the 2010 Census numbers, Hispanics are estimated to number more than 50 million (about 16.3%), [U.S. Census Bureau, 2011]\nThere are 1.5 million Hispanics in New Jersey, representing 17.7% of the total population. Latinos are now the state’s second-largest population group in New Jersey [U.S. Census Bureau, 2011]\nOver the last 10 years, the Latino population grew by 39.2%, while the non-Latino population declined slightly by 0.8%.  [U.S. Census Bureau, 2011]\n Population by State\nGeographically, most Hispanics still live in nine states that have large, long-standing Latino communities—Arizona, California, Colorado, Florida, Illinois, New Mexico, New Jersey, New York and Texas—but the share living in other states has been growing. \nIn 2010, 76% of Latinos lived in these nine states, compared with 81% in 2000 and 86% in 1990. (In 2000, 50% of Hispanics lived in California and Texas alone.  In 2010, that share was 46%.) \nThe states with the largest percent growth in their Hispanic populations include nine where the Latino population more than doubled, including a swath in the southeast United States—Alabama, Arkansas, Kentucky, Mississippi, North Carolina, Tennessee and South Carolina. The Hispanic population also more than doubled in Maryland and South Dakota.\nImpact of Proposed FY2011 Funding Cuts on the Latino Community\n Cuts to Head Start directly impact underserved communities\nThe Head Start Program gives low-income children in pre-school access to early childhood education and nutrition. [Report]\nAbout 36%, or 400,000, children in the Head Start program are Latino. [Report]\nH.R. 1 cuts the program by 20%, ousting 218,000 children and forcing 55,000 layoffs. [Office of Head Start]\n Cuts to the Women with Infants and Children (WIC) program will heavily impact many Latino families’ abilities to meet their nutritional needs\nThe Women with Infants and Children (WIC) program provides low-income pregnant women, postpartum and breastfeeding women, and infants and children under 5 years of age who are at risk of not having safe, nutritious and balanced meals with nutritious meals, nutrition education and health resources.  [Report]\nH.R. 1 would cut funding for WIC by $747.2 million\n59% of Hispanic families with children under the age of five participate in the WIC program\nMassive cuts will impact Latinos’ access to higher education: over 1 million Latino college students depend on Pell Grants to pay for their higher education.\nLatinos are 14% of all Pell Grant recipients. [National Center for Education Statistics]\nThe House of Representatives spending bill would cut individual Pell Grant awards by $845. [Congressional Research Service]\n Cuts will hurt the 1.14 million Latino Veterans:\nProposed cuts target homeless veterans by eliminating funding for new HUD-Veterans Affairs Supportive Housing (VASH) vouchers.\nAbout 11,000 eligible veterans would be affected [CNN]   \nCuts endanger Hispanic Health Services of Latinos:\nHispanics are the largest group among the uninsured, with 38.9% going without coverage in 2010. (Gallup). \nCommunity Health Centers provide primary care to 20 million Americans with limited financial resources, and are often located in communities that are economically distressed.  \nHispanics are nearly a third of all Community Health Center patients. [NACHC].\nProposed cuts of $1 billion for community health centers equate to nearly 11 million patients losing health care services and 90,000 fewer jobs in communities with health centers. [Center for American Progress]. \nCuts to USDA’s Commodity Assistance Program will endanger the health of vulnerable low-income Latinos at the time of most need\nThe Commodity Assistance Program provides low-income Hispanics with food and nutrition assistance through the Farmer’s Market Nutrition Program, Soup Kitchens or Food Banks, The Emergency Food Assistance Program (TEFAP), disaster support, infrastructure and modernization support, and the Commodity Supplemental Food Program. [USDA] \nProposed cuts of $20 million to the Commodity Supplemental Food Program within the Commodity Assistance Program will endanger the health status of the 467,000 low-income individuals that participate in this program each year. [USDA, Food & Nutrition Services]\nCuts to EPA’s enforcement of the Clean Air Act will put Latinos at significant increased risk of developing acute and chronic illnesses like asthma and other pulmonary and respiratory diseases from exposure to air pollution – including greenhouse gases\nIn a major 2006 study, it was found that 30 million Latinos – at that time 72% of all Hispanics in the U.S. – live in areas that do not meet federal air pollution standards for one or more pollutants.  Further, over 28 million Latinos lived in areas that do not meet the federal standard for ozone.\nCuts to the Emergency Food and Shelter Program (EFSP) will deprive the most vulnerable in society of food and shelter.\nEFSP provides shelter, food and supportive services for the nation’s hungry, homeless, and people in economic crisis.\nProposed cuts of 50% to EFSP will impact Latinos particularly hard during the current economic climate, considering Hispanics are being hardest hit by the foreclosure crisis and face unemployment rates above 15%.\nCuts to the Senior Community Service Employment Program (SCSEP) will result in greater unemployment among older adults.\nSCSEP provides subsidized, service based training for low income persons 55 or older who are unemployed and have poor employment prospects, with the goal of placing 30 percent of its participants into unsubsidized employment each year.\nSCSEP serves a large number of Latinos\nH.R. 1, which proposed cutting funding for the program in half, would result in less training and less employment opportunities for older adults.\nCuts to Housing and Urban Development (HUD) Office of University Programs will hamper college and university involvement in Latino community development.\nH.R. 1 zeroes out the Hispanic-Serving Institutions Assisting Communities program which provides competitive grants to HSIs to assist in local community development.\nThis cut hurts both already underfunded HSIs and the low-income communities they serve.\nRiders that block funding for expenditures on particular government activities would have a disproportionate impact on the Latino community:\n USCIS Citizenship and Immigrant Integration Grants were prohibited from appropriations by one rider added to H.R. 1.  These grants help fund programs to teach immigrants citizenship classes, integrating new Americans into U.S. society and enabling them to be more successful U.S. citizens.\nOne environmental rider in H.R. 1 would prevent EPA from limiting toxic emissions from cement plants, stopping the agency’s efforts to keep 16,000 pounds of mercury a year out of the air, with obvious detrimental impacts on public health, especially for Latinos, who suffer disproportionately from mercury exposure due to proximity to environmental justice sites.\nAnother environmental rider in H.R.1 would prohibit the federal government from paying the legal fees of individuals or citizens groups that successfully sue it under environmental laws.  The impact of this rider would be devastating for many low income and minority populations that cannot seek justice through legal action if they and their attorneys receive no compensation should they win environmental justice cases. \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ea8c6c65-b32c-4249-a778-3cf211dc922c,\"Menendez on the Passing of Former Congressman John Adler\n                    \n                      April 5, 2011\n                     “Today we mourn the passing of former Congressman John Adler. We offer our heartfelt condolences to his beloved wife and law school classmate, Shelley, and their four sons, Jeffrey, Alex, Andrew, and Oliver. John has been taken from them far too early in life.\n“He was a proud New Jerseyan. From the Cherry Hill Town Council to the state Senate to the halls of Congress, John always did was right by his conscience, the people of his district, and New Jersey. We will miss his passion, his leadership, and his convictions.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0d6f4f13-1467-4dd0-99f5-12af5cb08bed,\"Menendez on Bayer Moving to New Jersey: “Economic Booster Shot to New Jersey’s Economy”\n                    \n                            Announcement will Create New Cures, New Medicine, and New Jobs in New Jersey\n                    \n                      April 4, 2011\n                     NEW JERSEY – U.S. Sen. Robert Menendez (D-NJ) today released the following statement on Bayer Healthcare’s decision to make New Jersey its new home for its consolidated East-Coast business site. Bayer Healthcare, a leader in producing and manufacturing medical cures and treatments, plans to begin moving in late 2011 and continue to the end of 2013.\nSen. Menendez said, “New Jersey is ‘America’s medicine cabinet’, and today we’re adding another pill bottle. This step will deliver new cures and treatments to America’s sick. But it’s also going to be a major economic booster shot to New Jersey’s economy – creating jobs and medicine for the future. We’re proud Bayer decided to expand its home in New Jersey.”\nMenendez has been on the forefront of attracting biotech and medical firms to New Jersey, especially small firms. In fact under a program authored by Senator Menendez, the Department of the Treasury and the Department of Health and Human Services announced a list of 133 small biotechnology firms in New Jersey who were awarded $53 million in tax credits and loans as part of the health insurance reform law. The Qualifying Therapeutic Discovery Project seeks to spur innovation and the development of new technologies in the biotech field by providing tax credits to small and emerging biotechnology firms of up to 50 percent of their investments in qualified therapeutic discovery projects that have the potential to address unmet needs and lower health care costs. A total of $1 billion in credits and grants will be used to fund the most promising research in areas of unmet need, reduce long-term health care costs, help New Jersey stay at the forefront of innovation, and advance the goal of finding a cure for cancer within the next 30 years.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a197aea5-b442-4a11-adbf-d7965c99f755,\"Senator Menendez Supports Funds to Promote Democracy in Cuba \n                    \n                            Menendez: “Democrats in Cuba are deserving of the same support and solidarity that we provided to dissidents in Eastern Europe and the former Soviet Union and that we continue to send to peaceful activists in the Middle East, Asia and Africa.”  \n                    \n                      April 4, 2011\n                     Washington, D.C. – U.S. Sen. Robert Menendez (D-NJ) today defended the $20 million in funds dedicated to promoting a peaceful transition to democracy in Cuba by supporting civil society, independent journalists, and human rights activists. Last week, Senator John Kerry, Chairman of the Senate Foreign Relations Committee, expressed his intent to withhold Congressional support for the only democracy assistance program for Cuba. Sen. Menendez released the following statement:\n“The Obama Administration stepped up to the plate last week, endorsing funding for the only international democracy assistance program for Cubans seeking peaceful democratic change after more than 50 years of dictatorship.  The democracy programs, implemented by the State Department and the U.S. Agency for International Development, recognize that change in Cuba must come from the island and that the impediment to change is the oppression and tyranny visited on the Cuban people daily by the Castro regime. The democracy program supports Cubans who seek peaceful democratic change, despite tremendous personal risk.\n“Additionally, to suggest that the wrongful imprisonment of American contractor Alan Gross was provoked by U.S. assistance programs is essentially an endorsement of heavy-handed tactics by other oppressive regimes against American democracy advocates and grantees receiving U.S. democracy assistance. It also undermines the tradition of support and solidarity that our nation has provided to those seeking the same liberties and freedoms that we enjoy in the United States.  Democrats in Cuba are deserving of the same support and solidarity that we provided to dissidents in Eastern Europe and the former Soviet Union and that we continue to send to peaceful activists in the Middle East, Asia and Africa.\n“I respect Chairman Kerry’s right to disagree about U.S. policy toward Cuba, but firmly believe that we should be able to unite around a shared goal of supporting human rights activists, democracy activists, independent journalists and economists, and others struggling to create peaceful change in their country.”\nJust last week, the regime arrested at least 19 democracy activists, including Liranza Romero, President of the Cuban Youth for Democracy Movement and Boris Rodríguez Jiménez when they attempted to stand peacefully in front of the Capitol with signs reading \"\"Freedom without Forced Exile for Cuba's Political Prisoners\"\" and \"\"The Streets belong to the Cuban People.\"\"\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1e94f6b5-cc50-49c2-a7db-33ac82800150,\"Menendez, Lautenberg Announce $576K In Federal Funding For New Jersey Fire Departments\n                    \n                      April 1, 2011\n                     WASHINGTON, D.C. — U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced four New Jersey communities received $576,000 in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  These grants can be invested in training, equipment, personal protective equipment, health programs, and other support for stations and facilities.  “Firefighters put their lives on the line to protect our families. Putting firefighters at greater risk simply isn’t an option,” Menendez said.  “These investments will provide them with the modern equipment and cutting-edge training to do their jobs and do them safely. Emergencies don’t wait for flush budget years, and neither will we.”“New Jersey’s firefighters are ready to roll at the sound of the alarm and we must be certain they have the best equipment and training available to handle the job safely and effectively,” said Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG grant program. “As cities and towns across the state struggle with tight budgets, I am working in the Senate to ensure that federal funding for public safety in New Jersey communities remains a priority.” The $576,941 in AFG grants will be distributed as follows: •    Livingston - $188,640 to the Livingston Fire Department for safety gear.•    West New York - $171,920 to the North Hudson Regional Fire and Rescue for safety gear.•    Barrington - $114,233 to the Barrington Fire Company #1 for safety gear and training.•    Springfield - $102,148 to the Springfield Fire Department for equipment and training. The AFG grants are awarded to fire departments and EMS organizations to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies. For more information about the programs, please visit: http://www.firegrantsupport.com/\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d0e12984-c597-40e6-ac49-a73bad5f40a9,\"Menendez Hails Federal Action to Stop Pennsylvania Coal Plant from Polluting New Jersey Air \n                    \n                            Action Comes On Same Day GOP Tries to Gut Clean Air Act\n                    \n                      March 31, 2011\n                     Outdated PA Plant Dumped 30,000 Tons of Sulfur Dioxide into New Jersey Air in 2009 Alone\nMenendez: “New Jersey residents can breathe a little easier today”\nNEW JERSEY – Federal environmental officials today proposed to grant a New Jersey petition to limit the dumping of pollution from a Pennsylvania plant – a major win for New Jersey residents and environment, US Senator Robert Menendez (D-NJ) said today. The proposed rule means that, if finalized, the Pennsylvania plant will have to limit air pollution by more than 80 percent.\nThe U.S. Environmental Protection Agency (EPA) today proposed to grant a decision submitted by the state of New Jersey to limit sulfur dioxide emissions from the Portland Generating Station in Pennsylvania. The proposal comes as Republicans attempt to gut the Clean Air Act and Federal environmental protection efforts.\nTo date, every county in New Jersey is non-compliant with the Clean Air Act because of dirty, old, out-of-state coal plants like the aging Portland Generation Station.  Located just across the Delaware River, this plant emitted 30,000 tons of sulfur dioxide in 2009 --  almost three times the amount of all seven of New Jersey's coal plants combined.\nThe proposed rule would require the Portland Generating Station to reduce its SO2 emissions by 81 percent over a three-year period. Exposure to pollutants from the plant cause and exacerbate a whole host of respiratory illnesses, from asthma to heart disease.  \nUnder the Clean Air Act, when a facility impacts air quality in another state, the affected state can petition EPA and request that the facility be required to reduce its impact. In a September 2010 petition, New Jersey asked EPA to find that the Portland power plant is impacting the state’s air quality and to require the facility to reduce its SO2 emissions.\nSen. Menendez said, “New Jersey residents can breathe a little easier today. If not for the Clean Air Act, New Jersey would have no recourse for stopping the sickening pollution this plant spews into New Jersey’s air.  At a time when the Clean Air Act is under attack by Republicans, this shows that any attack on the Clean Air Act is an attack on New Jersey.  We simply cannot gut the one piece of federal legislation that protects the air we breathe.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=177a8cba-1689-421e-8052-45ed160b4fce,\"Menendez Honors the Birthday and Legacy of Cesar Estrada Chavez\n                    \n                      March 31, 2011\n                     WASHINGTON -  On the 84th birthday anniversary of Cesar Estrada Chavez, US Sen. Robert Menendez (D-NJ) today honored his legacy by introducing a resolution that recognizes him as one of the country’s most important civil rights and labor leaders. For the fifth year in a row Republicans blocked this resolution from being adopted by Unanimous Consent, preventing an official honor for Chavez in the Senate.\n\nSen. Menendez said, “I am proud to celebrate the life and legacy of Cesar Chavez on the 84th anniversary of his birthday. He was one of our nation’s most important civil rights leaders. Chavez’s work was instrumental in paving the way for social progress and the respect of hardworking American farmers and workers. His legacy serves as a source of inspiration for those who continue to seek greater justice and dignity for all Americans.  Chavez always said the fight is always about people, and that fight continues.”\n\nBorn on March 31, 1927 in Arizona, Cesar Chavez was a Mexican American farm worker whose life circumstances showed him firsthand the injustices and hardships of farm workers and led him to dedicate his life to helping those who spent their lives picking the food that Americans eat, ensuring they received the respect and benefits they deserved. His efforts led to equality, justice, and dignity not only for Hispanic farm workers, but for all workers in the United States.  His success can be measured by the lasting impact he made toward ending workplace discrimination, unsafe and unfair working conditions, low wages, and child labor.\n \nLink to resolution: http://menendez.senate.gov/download/?id=20ccd804-28d5-448e-a82a-d5b9ed25e074\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e0d62a2a-99ec-4721-a9f3-dba5d2abc443,\"Menendez: “President’s plan will help lower gas prices, secure America’s energy future, and create good-paying clean energy jobs”\n                    \n                            Calls on President to Release 50 Million Barrels of Oil to Ease Pain at the Pump\n                    \n                      March 30, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today released the following statement in support of President Obama’s plan to secure America’s energy future. Menendez is leading efforts to impose a “Use it or Lose it” policy on oil companies, forcing them to diligently produce on Federal leases or lose those leases. While encouraged by the President’s support for creating new ways to encourage oil companies to produce on Federal leases they already have, Menendez added that opening up the mid-Atlantic to drilling would not now – or ever – be an option.\nSen. Menendez said, “I believe it’s time for government to hold oil companies accountable instead of holding their hands. The President clearly agrees. I strongly support his smart, sensible proposals to urge oil companies to diligently produce on Federal leases they already have as well as boost investments in natural gas, electric vehicles, and other forms of clean energy. His plan will help lower gas prices, secure America’s energy future, and create good-paying clean energy jobs in the process.\n“But this plan cannot just be about the future – we have to help struggling families now and prevent our economy from falling backwards into a recession. That’s why I am calling on the President to release 50 million barrels of oil from the strategic reserve immediately. It’s simply wrong for New Jersey families to feel pain at the pump when we can do something about it. This step will ease the burden on already struggling families now while we work to win the future.\n“Let me also send a clear message about the President’s mention of exploring Mid-Atlantic drilling: not here, not now, not ever. The Jersey Shore supports hundreds of thousands of jobs, drives our state’s economy and is a birthright for all New Jerseyans. We can never allow an oil spill to ruin our shore and cripple our local economy. Auctioning off the Jersey Shore to oil companies would do nothing to reduce prices at the pump, but it would put our multi-billion dollar tourism and fishing industries at risk. Today, families and business owners in our coastal communities, along with everyone who loves the Jersey Shore, can know that this is not now – nor ever will be – an option.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=eb9fe947-ec14-4107-8d5d-e5c9c9f246c6,\"Menendez On President Carter In Cuba: Wrong Message, Wrong Time, Wrong Place\n                    \n                            Urges Former President to Address the Castro Regime’s Intolerant and Tyrannical Actions \n                    \n                      March 29, 2011\n                     Supports the Aspirations of the Cuban People to Live in a Democratic State that Respects Basic Human and Civil Rights\nWASHINGTON – With former President of the United States Jimmy Carter in Havana this week, US Senator Menendez (D-NJ) today sent a letter to the former President to express his concerns with the visit and the message the meeting sends to the Cuban regime about the goals of US policy, which are to support civil society and promote democracy in Cuba. Menendez also urged the former President to recognize the heartfelt desire among the Cuban people for democratic change in the island and encourage the regime to fulfill their desire to live in a democratic state based on the respect of human and civil rights. (FULL TEXT AND PDF OF THE LETTER BELOW)\nSenator Menendez said, “Your visit suggests that the improvement of relations between the United States and Cuba is contingent upon some action by the United States. That’s the wrong message, at the wrong time, and in the wrong place. Instead we must acknowledge that it is Cuba’s intolerant and tyrannical actions that continue to define the future of U.S.-Cuba relations. As we witness unprecedented movements for democratic change in the Middle East, I appeal to you to recognize that same heartfelt desire amongst the Cuban people and to urge the regime to fulfill the democratic aspirations of the Cuban people.”\n\n###FULL TEXT OF THE LETTER###\n March 29, 2011\n The Honorable Jimmy Carter\nThe Carter Center\nOne Copenhill\n453 Freedom Parkway\nAtlanta, GA 30307\n\nDear President Carter:\n\nI am writing to express my grave concern about your visit to Cuba this week to discuss improving U.S.-Cuba relations.\nYour visit suggests that the improvement of relations between the United States and Cuba is contingent upon some action by the United States, rather than acknowledging that it is Cuba’s intolerant and tyrannical actions that continue to define the future of U.S.-Cuba relations.\nWhile you are visiting with President Castro and other Cuban officials to learn about new economic policies and the upcoming party Congress, the regime’s thugs are in the streets harassing and arresting scores of political dissidents who dared to hope that you would hear their pleas and argue on their behalf for the adoption of political reforms.   The fate of American Alan Gross, a USAID contractor who sought to assist the island’s Jewish community, also hangs in the balance while you meet with the political elite that are directing the crackdown on Cuba’s peaceful civil society activists. \nOn Sunday, the regime detained activists Adriano Castañeda Meneses, Yris Tamara Pérez Aguilera and Jorge Luis García Pérez “Antúnez and on Monday, Liranza Romero, president of the Cuban Youth for Democracy Movement and Boris Rodríguez Jiménez were arrested when they attempted to stand in front of the Capitol with signs reading \"\"Freedom without Forced Exile for Cuba's Political Prisoners\"\" and \"\"The Streets belong to the Cuban People.\"\"\nI urge you to address with President Castro the aspirations of Cuba’s civil society to live in a democratic state whose laws are derived and implemented by their democratically elected representatives and are based on the core principles of respect for human and civil rights, including the freedom of expression and freedom of assembly.\nAs we witness unprecedented movements for democratic change in the Middle East, I appeal to you to recognize that same heartfelt desire amongst the Cuban people and to urge the regime to fulfill the democratic aspirations of the Cuban people.\n Sincerely,\n Senator Robert Menendez\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2396a291-5195-4560-a22a-cea1af5d1782,\"Senator Menendez Hosts Second Annual Women of Distinction Awards; Honors Seven NJ Women of Extraordinary Achievement\n                    \n                            Diverse Field of Honorees Include Leaders in Women’s Suffrage, Education, Volunteerism, Public Service, and National Defense\n                    \n                      March 28, 2011\n                     NEW JERSEY – U.S. Senator Robert Menendez tonight held the Second Annual Women of Distinction Awards in honor of Women’s History Month. Seven pioneering women were recipients of the “Evangelina Menendez Trailblazer Award,” named in honor of the Senator’s late mother. More than 375 people were in attendance at the Middlesex County College Performing Arts Center to see the awards handed out and hear the remarks of both the Senator and the distinguished women. \nThis year’s honorees are:\nKathleen DiChiara. The President and CEO of Community FoodBank of NJ. DiChiara started the FoodBank in the back of her station wagon in 1975. Today, it has a staff of 160 and more than 25,000 volunteers distribute some 40 million pounds of food to more than 900,000 people.\nMajor General Maria Falca-Dodson. As Commander of the NJ Air National Guard she is directly responsible for the NJ Air National Guard’s full time operations which include two Air Wings, the 108th Air Refueling Wing, and the 177th Fighter Wing.\nZulima V. Farber. A former Public Defender and Attorney General of NJ. Farber was born and raised in Cuba but fled to NJ after Fidel Castro took control. She was one of a handful of Hispanics admitted to Rutgers Law School-Newark in 1971.\nDanielle Kovach. The 2011 NJ State Teacher of the Year. Kovach teaches third grade special education at Tulsa Trail School in Hopatcong, New Jersey. She began a program, “Superheroes of Safety”, which has been shared with children and parents throughout the country.\nJeannine LaRue. A former Deputy Chief of Staff to Gov. Corzine and Vice President of Public Affairs  at Rutgers University, LaRue has compiled 40 years of public service and is the current Senior Vice President of the Kaufman Zita Group.\nAlice Stokes Paul.  A women’s suffragist, born in Mount Laurel, NJ in 1885. Paul was honored posthumously for her lifelong dedication to securing the vote for women. She was an advocate of non-violent civil disobedience and was highly educated at a time when few women could pursue higher education, with degrees in biology, economics, and law.\nJanet Sharma. Executive Director of the Volunteer Center of Bergen County. Sharma has served in this capacity since 1993, a period in which the organization has doubled in size, connecting well over 140,000 people annually with opportunities to volunteer. \n                     Photos: Event Gallery\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ffb729b2-86a8-4c33-92a2-0c5932d5ec75,\"Senator Menendez To President Obama: Remind Americans About Qaddafi Ordering The Killing Of Americans On Pan Am 103\n                    \n                            “Qaddafi is a terrorist – the moral equivalent of Osama bin Laden”\n                    \n                      March 28, 2011\n                     NEW JERSEY – US Senator Robert Menendez (D-New Jersey), a member of the Senate Foreign Relations Committee, released the following statement urging President Obama in his remarks to the country tonight to remind Americans about Muammar Qaddafi’s role in ordering the bombing of Pan Am 103 in 1988. Qaddafi not only ordered the attack which killed 270 innocent travelers on Pan Am 103, but also worked to swap lucrative oil deals in exchange for the release of the bomber convicted of the crime. Menendez is the author of the Senate resolution condemning Qaddafi’s brutality, calling for a no-fly zone, and urging an investigation into Qaddafi’s possible crimes against humanity.\nSenator Menendez said, “Qaddafi is a terrorist – the moral equivalent of Osama bin Laden – a man who ordered the bombing of Pan Am Flight 103, which killed 270, including 34 New Jerseyans, and who in 2009 swapped a lucrative oil deal in exchange for the release of the convicted Pan Am bomber. A man President Ronald Reagan referred to as ‘this mad dog of the Middle East’ because of his relentless instigation of and support for terrorism.  A man who has trained terrorists in North Africa and has proven that his reign of terror extends well beyond his own national and regional borders.  A man who referred to the 1985 slaughter of innocent travelers, including an 11-year-old American child, by terrorists at the Rome and Vienna airports as a ‘noble act.’ There is no question that, if given the chance, Qaddafi will continue to support terrorism and, therefore, continue to threaten Americans at home and abroad. That is why a Libyan no-fly zone is not only in the interest of the international community, but is also in the national security interest of the United States.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5d5b236d-6494-4a01-9a07-2ed1cd6217a0,\"NJ Senators Announce Funding To Investigate And Enforce Fair Housing Laws, Eliminate Discriminatory Housing Practices\n                    \n                            Menendez, Lautenberg Announce $325,000 through Department of Housing and Urban Development Fair Housing Initiatives Program \n                    \n                      March 28, 2011\n                     WASHINGTON – U.S. Senators Robert Menendez and Frank R. Lautenberg (D-NJ) today announced funding to investigate and enforce fair housing laws in New Jersey.  The Senators announced that New Jersey has been awarded $325,000 by the Department of Housing and Urban Development (HUD) to address discriminatory housing practices in New Jersey.\nThe resources will finance the Fair Housing Council of Northern New Jersey’s efforts to investigate and enforce alleged violations of the Fair Housing Act in northern New Jersey.\nSenator Menendez said, “Discrimination has no place, particularly when it comes to something as basic and essential as housing. These tools will help local prosecutors investigate and bring justice to cases of housing discrimination. At a time when it is already difficult to access quality and affordable housing, the color of your skin, ethnicity or gender should not be one more obstacle to find and live in the place of your preference.”\nEvery New Jerseyan deserves a fair chance at quality housing,” said Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development.  “Discrimination must not be tolerated, and this funding will help prevent New Jerseyans from becoming victims while they search for a home.”  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=312720ac-a6ae-4d14-a33b-33be57f7c78d,\"Menendez and Holt Press EPA for Details on Impacts Insecticides are Having on Bees\n                    \n                      March 28, 2011\n                     In a letter to Administrator Lisa Jackson of the US Environmental Protection Agency, Senator Menendez and Representative Holt ask for details on the steps that the EPA is taking to review its registration of the use of a specific class of insecticides that scientists say may play a role in recent observations of bee colony losses.  Menendez and Holt specifically seek information on the EPA’s plans to improve how the agency assesses the risks that these chemicals pose not just to honeybees but to over 4,000 native bee species nationwide, including to approximately 350 species native to New Jersey.  \nA copy of their letter to Administrator Jackson is copied below: \n\n \n \nMarch 28, 2011\n \n \nThe Honorable Lisa P. Jackson\n \nAdministrator U.S. Environmental Protection Agency Ariel Rios Building 1200 Pennsylvania Avenue, N.W. Washington, DC 20460-0001\n \nDear Ms. Jackson:\n \nWe write to express our concerns about the impact that neonicotinoid insecticides – e.g., clothianidin and imidacloprid -- are having on pollinators.  In particular, we are disturbed by continuing population declines among both native species of bees, such as bumblebees, and non-native species, such as honeybees.   \n \nAs you know, bees provide pollination services that are essential to our nation’s food security, especially the provision of fruits, vegetables, and nuts.  While large farming operations import managed honeybees for pollination, farmers with smaller, polyculture farms in New Jersey rely heavily on about 350 native species of bees.  \n \nAlarmingly, several species of bumblebees are believed to have already vanished and next to nothing is known about the health of other native species of bees.  As for the non-native honeybee species, the U.S. Department of Agriculture and the Apiary Inspectors of America report that the number of managed honeybee colonies, for example, dropped over 30 percent in the winters of 2006-2007 and 2008-2009. \n \nExtensive studies of honeybee colony losses have revealed that a combination of stresses is the cause.   Honeybee exposure to neonicotinoids is among these stresses, and scientists agree that we don’t adequately understand the risk such exposure poses to honeybees, much less native species of bees.\n \nWe are pleased that the U.S. Environmental Protection Agency (EPA) has recently announced it will accelerate the review schedule for neonicotinoid use registrations in conjunction with pesticide regulators in California and Canada.   We are also pleased to learn of the EPA’s involvement in the recent Pellston Conference on the risk of pesticides for pollinators.\n \nThese are important steps, and we write seeking information on the EPA’s plans moving forward to improve pesticide risk assessment for pollinators.  Specifically:\n \nWhat steps is the EPA taking to clarify and assess the risks to pollinators of chronic, sub-lethal neonicotinoid exposure, such as results when insecticide treatments involve seed coatings or injection into root systems?  \n \nHow will risk assessment account for the persistence over years of neonicotinoids in soil, and therefore accumulation in soils? \n \nWill the degradation of neonicotinoids into potentially toxic by-products also be accounted for – both in soils and in the digestive tracts of bees? \n \nIn future registration reviews, will there be consideration of potential interactions between neonicotinoids and other pesticides, including fungicides and herbicides?\n \nHow long will it take before pesticide registration accounts for such risks, and does EPA plan to take any steps in the meantime to guard against continued bee colony losses?\n \nWhat steps is the EPA taking to ensure that the review of existing neonicotinoid registrations will be transparent?\n \nWe thank you for your expeditious review of this inquiry, and we look forward to hearing from you soon.\n\n \nSincerely,\n \n \n \n \n \n_______________________                                   ____________________________\n \n \n \nSenator Robert Menendez                                          Representative Rush Holt\n \nU. S. Senate                                                                   U.S. House of Representatives\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=29daaef5-b497-4ef4-b95a-c2f06f978d5e,\"Menendez: “Repealing 1099 is right. Hurting small businesses is wrong.”\n                    \n                            Menendez Leads Efforts to Protect Small Businesses from Risky Republican Scheme\n                    \n                      March 28, 2011\n                     NEW JERSEY – U.S. Sen. Robert Menendez (D-New Jersey) released the following statement in response to the Republican decision to risk raising health care costs on small businesses and those who make their living from small businesses. Menendez is leading efforts to protect small businesses from the risky Republican tax-raising proposal by giving Health and Human Services the ability to study the impact of the Republican scheme and, if needed, create protections for small businesses.\n\nSenator Menendez said, “Repealing red tape on small businesses is right. But who in the world, especially during these fragile economic times, would want to raise costs on small businesses? The Republican scheme may do just that. This step is simple—it directs the Administration to determine whether the Republican proposal would increase health insurance costs or cause cuts in health coverage for small businesses. If so, we have the power to protect small businesses from higher health care costs and coverage cuts. That’s the right thing to do, and I’ll fight to support it.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d7039778-c61e-4388-aa50-ecbbd04aaeb1,\"Sen. Menendez: “If Big Oil Is Producing Diligently On Federal Lands As They Claim, Why Are They Worried About The ‘Use It Or Lose It’ Legislation? They Are Worried Because They Aren't Drilling.”\n                    \n                      March 24, 2011\n                     NEW JERSEY – U.S. Senator Robert Menendez (D-New Jersey) released the following statement in response to Speaker Boehner’s attempt to attack the “Use It or Lose It” legislation, which holds oil companies accountable and will help drive production and lower gas prices for American families:\n“New Jersey’s middle class families are paying more than ever to just to get around. The last thing they want to hear is Speaker Boehner defend big oil companies and the high price of gas. The reality is that oil companies fail to answer a basic question – if they are producing diligently on federal lands as they claim, why are they worried about the ‘Use it or Lose it’ legislation? They are worried because they aren’t drilling. They aren’t producing. They are sitting on their leases to boost their stock prices while American families feel the pain at the pump. This legislation will crack the whip – and show clearly that government will hold oil companies accountable instead of holding their hands.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=960d1499-b63d-4bdb-8df6-b1dc08df323b,\"Senator Menendez On Bombing In Jerusalem\n                    \n                      March 23, 2011\n                     NEW JERSEY – US Senator Robert Menendez (D-New Jersey) released the following statement in response to the bombing which took place today in Jerusalem: “Today’s act of brutality is another reminder that we must stand vigilant against terrorism – any and everywhere it exists. Inflicting damage and killing innocent civilians only hurts the prospects for peace in the region.  No country would be expected to sit on its hands and simply allow its citizens to endure these kinds of vicious attacks without retaliating against the responsible party. I strongly support Israel's right to self-defense. We all want peace in the region and hope that it will come very soon, but there can be no peace without security and so long as terrorists continue to kill innocents in Israel.\"\"\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=853b0735-a7e9-4d94-b32e-0b4bc745d167,\"One Year Later, Menendez Celebrates Big Health Care Reform Wins For NJ Families, Small Businesses\n                    \n                      March 23, 2011\n                     NEW JERSEY – On the one year anniversary of health care reform, U.S. Senator Robert Menendez (D-NJ) today celebrated the big health care wins for New Jersey families, seniors and small businesses. Menendez trumpeted the new efforts to hold insurance companies accountable, bring down costs for everyone, and provide New Jersey families with the insurance choices and protections they need to take control of their health.\n \nNEW JERSEY’S BIG HEALTH CARE HAUL \nProvides free preventive care to New Jersey’s 1.2 million Medicare beneficiaries \nMore than 132,578 New Jersey residents who hit the Medicare prescription drug coverage gap known as the “donut hole” received $250 tax-free rebates, and will receive a 50% discount on brand-name prescription drugs when they hit the donut hole this year.  By 2020, the law will close the donut hole completely.\nProvides tax credits to up to 144,316 small businesses in New Jersey to help offset the costs of purchasing coverage for their employees and make premiums more affordable.  \nProvides $85 million in various grants to New Jersey  (for example, to crack down on unreasonable rate increases from insurance companies, to address health professions workforce needs, and support groundbreaking biomedical research).\nProvides the State of New Jersey with $141 million to run NJ Protect, a health coverage option for consumers with pre-existing conditions. \nAn estimated 34,100 young adults in New Jersey can now keep their parents’ insurance\nBoosts resources to the 124 existing Community Health Centers in New Jersey.\n \nSenator Menendez said, “One year later, the proof is in the pudding – New Jersey families, seniors and small businesses have better access to quality, affordable health care. Patients now come first, not insurance companies. New Jersey families now have control of their healthcare decisions. Despite all of the heated rhetoric, these steps are major wins for patients – and we’re only in the first year.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a8a5f915-5c2c-4f0b-bd36-f3dd89967864,\"Jewish Community Embarks On Celebration Of Purim; Menendez Shares Outrage About Iran's Threats Against The Jewish People\n                    \n                      March 21, 2011\n                     WASHINGTON – US Senator Menendez (D-NJ) today released the following statement in celebration of Purim, the three day Jewish celebration that recalls the story of Esther who stood up for the Jewish people of Persia against Haman:\n“The Story of Purim celebrates the courage of Esther who stood up for the Jewish people of Persia against Haman who threatened to kill the Jewish people.  Today, the Jewish people face a new Haman in Iran that seeks to annihilate the State of Israel and in terrorists who would kill an innocent family while they sleep in their beds.  Anti-Semitism and anti-Israel vitriol has seen a resurgence. It is both taught and tolerated in many nations. Hateful rhetoric can never be tolerated.  It is time to speak out and say this will not stand.”\n“This weekend when Jewish children all over the United States dress up as the heroes and villains of the Purim story, it is time we Americans act as adults and show our true colors as stalwart supporters of the State of Israel and the Jewish people.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=982f10ff-b5ff-4b3a-a40d-213f058493a2,\"Sen. Menendez On The Libyan Cease Fire: “Nothing More Than An Attempt To Distract And Deceive The International Community While Internally Pursuing His Hunt”\n                    \n                            Calls for Immediate No-Fly Zone, Extends Hand of Friendship to Libyan People\n                    \n                      March 18, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, released the following statement on the cease fire announced in Libya: “Muammar Qadhafi is a terrorist – plain and simple. Just days ago, Qadhafi said he would hunt down every person opposing him. After years of violently oppressing the Libyan people and silencing political opposition, we cannot – and should not – take Qaddafi at his word. The announcement today is nothing more than an attempt to distract and deceive the international community while internally pursuing his hunt. The international community must follow through, impose an immediate no-fly zone, provide desperately needed humanitarian assistance, and extend a hand of friendship to the Libyan people.  This is our opportunity to effect change and end Qadhafi’s rule of terror.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=50b8e154-660e-4f7e-8c27-afae76003043,\"Menendez Leads Fight To Connect Affordable Housing To Transportation, Schools And Jobs\n                    \n                      March 18, 2011\n                     Introduces Choice Neighborhoods Initiative to Provide Grants for Schools, Housing Rehabilitation \nProvides $350 million to Modernize, Integrate Affordable Housing Nationwide\nMenendez: “Connect the place where people live with good schools, businesses, and jobs.”  JERSEY CITY – Families in affordable housing will gain new access to public transportation, schools and jobs, U.S. Senator Robert Menendez (D-NJ) announced today. Menendez introduced his Choice Neighborhoods bill, a new initiative to revitalize and transform distressed neighborhoods.  \nAs part of the new initiative, the Jersey City Housing Authority will receive $250,000 in federal funding for the planning of the redevelopment of Montgomery Gardens.  This Jersey City distressed housing project is already located close to the PATH train station, to New York, and to job opportunities.  \nThe City of Jersey City will assist in the planning process by keeping the neighborhood strengths, rehabilitating the flood-prone housing, and building two new charter schools.  The goal will be to improve the affordable housing stock and increase resident access to services and high quality education.  \nMENENDEZ’S CHOICE NEIGHBORHOODS BILL\n• Award competitive grants to assist in the transformation, rehabilitation and preservation of public housing and privately owned HUD-assisted housing.\n• Invites local partners to submit a transformation plan that addresses housing, supportive services, and other neighborhood needs such as education, recreation, and transit.\n• Boosts resources for Choice Neighborhoods to $350 million nationwide from only $65 million.   \nSenator Menendez said, “Families in affordable housing are working for the same things we all are – to find or keep a good-paying job, to send their kids to a quality school, and to live in safe communities. The ‘Choice Neighborhoods’ initiative gives families a fighting chance in this economy. It just makes sense to connect people’s homes with good schools, businesses, and jobs.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f862de29-5a12-4cdb-9c1c-d9a467cee6ba,\"Menendez Seeks To Ensure NJ Nuclear Reactors Are Safe\n                    \n                             Seeks Reassurance from Nuclear Commission that “New Jersey and its Nuclear Fleet are as Safe as Possible”\n                    \n                      March 18, 2011\n                     WASHINGTON – US Senator Robert Menendez (D – New Jersey) today led new efforts to ensure that New Jersey and its nuclear fleet – especially the facilities at Oyster Creek and Hope Creek – are as safe as possible. In a letter to Nuclear Regulatory Commission Chairman Gregory Jaczko (FULL TEXT BELOW), Menendez specifically asks about safeguard to learn from – and prevent – the tragedies currently unfolding in Japan. \nMenendez writes, “Just like the Fukushima Daiichi Nuclear Power Station, the Hope Creek and Oyster Creek Generating Stations use the General Electric boiling water reactor (BWR) design and a Mark I containment system.  The Hope Creek station sits adjacent to the Salem 1 and Salem 2 nuclear power stations, in a region which has seen numerous small earthquakes over the past century.  The Oyster Creek Station sits close to the Atlantic Ocean and is regularly under threat of hurricanes.  The Indian Point Generating Stations, just 15 miles north of New Jersey in Buchanan, NY, sit near two significant fault lines. \nIn light of these similarities, I would like to know if safeguards are in place at these nuclear power plants that would prevent what is unfolding in Japan.  Specifically, at all nuclear power generating stations in or near New Jersey:\n•Are diesel generators and their fuel supplies protected from floods and earthquakes?•If diesel generators fail, is there adequate battery backup to ensure power until the main power source is restored?•What are these power plants designed to withstand and is the NRC reevaluating these safeguards in light of current events?\"\"\n###FULL TEXT LETTER###March 16, 2011\nThe Honorable Gregory B. Jaczko, ChairmanU.S. Nuclear Regulatory Commission11555 Rockville PikeRockville, MD 20852\nDear Mr. Jaczko,\nI am deeply saddened by the devastating earthquake and tsunami in Japan, and I commend you for your agency’s efforts to help Japan avert a potentially catastrophic nuclear emergency at the Fukushima Daiichi Nuclear Power Station.  But I also have concerns about New Jersey’s nuclear safety and hope you can help me understand our preparedness in cases of emergencies.\nIt is important that lessons be learned from this tragedy.  As you know, just like the Fukushima Daiichi Nuclear Power Station, the Hope Creek and Oyster Creek Generating Stations in my home state of New Jersey, use the General Electric boiling water reactor (BWR) design and a Mark I containment system.  The Hope Creek station sits adjacent to the Salem 1 and Salem 2 nuclear power stations, in a region which has seen numerous small earthquakes over the past century.  The Oyster Creek Station sits close to the Atlantic Ocean and is regularly under threat of hurricanes.  The Indian Point Generating Stations, just 15 miles north of New Jersey in Buchanan, NY, sit near two significant fault lines.   \nIn light of these similarities, I would like to know if safeguards are in place at these nuclear power plants that would prevent what is unfolding in Japan.  Specifically, at all nuclear power generating stations in or near New Jersey:•             Are diesel generators and their fuel supplies protected from floods and earthquakes?•             If diesel generators fail, is there adequate battery backup to ensure power until the main power source is restored?•             What are these power plants designed to withstand and is the NRC reevaluating these safeguards in light of current events?\nI am also interested to know if the NRC believes this is the time to renew discussion about whether nuclear power plants using the Mark 1 containment system can continue to operate safely without modifications or additional safety systems.  As you know, there have been criticisms of the Mark 1 containment since the 1970’s and some of these concerns came from within the NRC.  \nMy goal with this letter is to seek reassurance that New Jersey and its nuclear fleet are as safe as possible.  I look forward to your response and thank you for your continued work to keep Americans safe.  \nSincerely,\nROBERT MENENDEZUnited States Senator###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7c43d0c3-8f08-45c2-9ea9-7fae726cab74,\"Menendez Calls For An Immediate No-Fly Zone For Libya In Coordination With European Nations, NATO\n                    \n                             Cites Growing Number of Air Strikes on Opposition Forces, Humanitarian Crisis \n                    \n                      March 18, 2011\n                     Call comes as the United Nations approved all necessary steps to protect the Libyan people \nMenendez: “As Qadhafi’s air strikes increase so will the human suffering.”  \nWASHINGTON – US Senator Robert Menendez (D – New Jersey), a member of the Senate Foreign Relations Committee, released the following statement today, calling for an immediate no-fly zone over Libya. This step, needed to address the growing number of air strikes by the Qadhafi regime, as well as the human suffering they are causing, would be taken in coordination with European and/or NATO forces. The call comes as the United Nations approved all necessary steps to protect the Libyan people from Qadhafi’s military attacks.\nSenator Menendez said, “As Qadhafi’s air strikes increase so will the human suffering. Now is the time to implement a no-fly zone, supported by our allies in the international community, to demonstrate our support for the Libyan people who are struggling to free themselves from decades of oppression.  The strength of our commitment to democratic reform and to humanitarian policies is being tested.  We have an opportunity to address the growing humanitarian crisis and to support the Libyan people in their quest for freedom.  Now is our opportunity. Now is the time to step forward.”\nMenendez is the author of the Senate resolution calling on Qadhafi to step down and urging the United Nations Security Council to take further action to protect civilians in Libya from attack, including the possible imposition of  a no-fly zone over Libyan territory.  The resolution, S. Res. 85, passed the Senate last week.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6c5ad024-d515-4750-b81c-9426bef008b8,\"Menendez Joins Millions Of Greek-Americans In Celebrating 190th Anniversary Of Greek Independence Day \n                    \n                            Senate Passes Menendez Resolution to Honor Greek Community\n                    \n                      March 17, 2011\n                     WASHINGTON – US Senator Menendez (D-NJ) today welcomed the unanimous passage by the Senate resolution of a resolution recognizing the 190th Anniversary of Greek Independence Day and joined millions of Greek-Americans in celebrating this important holiday which will take place on March 25, 2011. In a statement, Senator Menendez said: \n“Today we celebrate with millions of Greek-Americans the achievement of Greece’s Independence 190 years ago. This day marks more than Greece’s independence from the Ottoman Empire – it denotes the contributions of Greece to a democratic system of governance based on the principles of equality and freedom, as well as the Greek nations’ continuing influence amongst the community of nations since gaining its independence190 years ago. Greek ideas and ideals continue having an enormous influence and I am honored to stand with the Hellenic community to honor their cultural heritage and contributions. I’m proud to call myself a Philhellene!”\nFull text of the resolution: http://menendez.senate.gov/download/?id=0bdcc1b4-cdcd-49a4-b9e3-1d635261b44a\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9a4b4cbd-a9e8-4ca3-87d2-93612beda6be,\"Senators Demand Oil Companies “Use It Or Lose It” On Drilling Leases\n                    \n                            Oil Companies Refuse to Produce Oil on Millions of Acres of Already Leased Federal Land\n                    \n                      March 16, 2011\n                     Potential Attempt to Boost Stock Price Without Easing Gas Prices on Struggling Families\nNew Legislation Forces More Reporting from Big Oil about Energy Exploration Plans\nWASHINGTON – New legislation will force oil companies to report specific plans on how they plan to use millions of federal acres already under lease for energy exploration and innovation, U.S. Senators Robert Menendez (D-NJ)  and Bill Nelson (D-FL) said today.\nUnder current law, oil companies can lease possible oil reserves on Federal land regardless of whether they are producing oil on that land or even have plans to produce oil there. In some cases, oil companies are leasing – but failing to develop – federal land in order to book more reserves on their balance sheet and inflate their stock price. In others, oil companies are attempting to prevent competitors from producing on those acres.\nHowever, the failure of oil companies to produce on land is clear: Out of 41 million acres of federal onshore lands that are currently under lease, the industry has only 12 million acres producing; Offshore there are a total of 38 million acres under lease but the industry is producing on only 6.5 million acres. That means that less than 25% of the acres leased on federal lands and water are actually producing.\nThe “Use it or Lose it” legislation would require companies to report if, when and how they intend to actually develop federal land as well as report their investments in oil development. By requiring clear development plans and imposing a modest fee for acres not in production the aim is to spur production.\nKEY COMPONENTS OF THE “USE IT OR LOSE IT” LEGISLATION• Mandates that oil companies submit plans to diligently develop Federal land and water leased by oil companies• Levies an extra 4 dollar fee per year on acres of federal land or water that go unused• Applies only to new leases and would raise approximately $874 million over ten years\nSenator Menendez said, \"\"New Jersey families and businesses are getting slammed by gas prices while oil companies twiddle their thumbs. Doing nothing isn’t an option for families and small businesses, and it isn’t an option for me. We’re going to get answers for why oil companies are not investing in new production. Government will begin holding oil companies accountable, not holding their hands.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=726a77c8-64f0-4a6d-a6ca-df7b4befe81b,\"Menendez On Sentencing Of Alan Gross: \"\"Gross\"\" Sentence Eviscerates The Notion Held By Some That The Castro Brothers Are Embracing Democratic Reforms\"\"\n                    \n                            American Sentenced to 15 Years in Prison for Humanitarian Efforts\n                    \n                      March 14, 2011\n                     NEW JERSEY - United States Senator Robert Menendez, Chair of the Senate Foreign Relations Western Hemisphere Subcommittee, released the following statement on the Castro regime's decision to sentence USAID contractor Alan Gross to 15 years in prison. Gross was arrested for assisting the island's Jewish community to access the internet.\nSenator Menendez said, \"\"The Cuban regime's sentencing of USAID contractor Alan Gross to fifteen years in Cuba for 'acts against the integrity and independence' of Cuba should serve as a reminder of the intolerance and brutality by which the Castro brothers have ruled the island for more than fifty years. Gross' sentence eviscerates the notion held by some that the Castros are embracing democratic reforms and highlights the regime's continuing need to control every aspect of life in Cuba and its willingness to harshly punish anyone who challenges that control.  \n\"\"Alan Gross went to Cuba on a mission to help the Cuban people connect to the world, and he and his family have paid a terrible price for his humanitarian efforts.  It is my fervent hope that he will be released and reunited with his family in Maryland.\"\"\n\"\"I remain, however, deeply committed to promoting a democratic transition to Democracy in Cuba. The Cuban people, like those struggling for democratic reforms in the Middle East, yearn for the mere opportunity to control their destinies and provide a vibrant future for their children. We are committed to efforts that support the Cuban people, promote democracy, and advocate for the rights and liberties deserved by the Cuban people and by all people.\"\"\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8e986c7e-eae8-4ac7-830d-2fafa63fb3cc,\"Menendez, Lautenberg Announce $2 Million In Federal Funding For New Jersey Fire Departments\n                    \n                            ORANGE AWARDED $1.2 MILLION FOR FIREFIGHTER STAFFING\n                    \n                      March 14, 2011\n                     NEWARK SECURES $400K FOR COMMUNICATIONS EQUIPMENT WASHNGTON, D.C. — U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced five New Jersey fire departments received a combined $2 million in federal funding through the Federal Emergency Management Agency’s (FEMA) Staffing for Adequate Fire and Emergency Response (SAFER) and Assistance to Firefighters Grant (AFG) programs.  These grants can be invested in staffing, recruiting, vehicle acquisition, training, equipment, personal protective equipment, health programs, and other support for stations and facilities.\n“Emergencies won’t wait for flush budget years – and neither can we,” said Menendez.  “All of us must step forward to make sure our communities have the personnel and equipment they need. These resources will help communities and towns across New Jersey – even in these tough economic situations – be safe.”\n “This critical federal funding will help staff the Orange Fire Department and increase recruiting efforts in New Jersey communities so that local departments are best prepared to handle emergencies safely and effectively,” said Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG and SAFER grant programs.  “Firefighters are ready to roll at the sound of the alarm.  We must be certain that our fire departments are sufficiently staffed and have the best equipment and training available to respond when an emergency strikes.”\nThe $2,057,617 in federal funding will be distributed as follows: SAFER Grant Program•    Orange – $1,238,623 to the Orange Fire Department for staffing.•    Princeton – $361,500 to the Princeton Fire Department for recruitment.•    Forked River – $48,600 to the Forked River Fire Department for recruitment.•    West Cape May – $8,900 to the West Cape May Volunteer Fire Company Inc. for recruitment. AFG Grant Program•    Newark – $399,994 to the City of Newark Fire Department for the purchase of new radio communications technology. The highly competitive SAFER grant program provides funding directly to fire departments and volunteer firefighter organizations in order to help them increase the number of trained \"\"front line\"\" firefighters in their communities. The AFG grants are awarded to fire departments and EMS organizations to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies. For more information about the programs, please visit: http://www.firegrantsupport.com/\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b28528f9-9d6a-417a-8e7d-e19a55a4766a,\"New Data Shows Skyrocketing Gas Prices Devastating NJ Families And Small Businesses\n                    \n                            Prices Jumped 11 cents in One Week, 30 Percent for the Year - Menendez Releases Energy Plan to Ease Gas Price Burden\n                    \n                      March 13, 2011\n                     NEW JERSEY – Gas prices are pumping New Jersey families and small businesses dry, according to new gas price data released today by US Senator Robert Menendez (D – New Jersey). Gas prices have risen 11 cents in the last week alone. Menendez today proposed a series of steps to help lower gas prices, prevent a setback in the nation’s economic recovery, and promote the United State’s long-term energy security.\nThe average price for a gallon of gas in New Jersey is currently $3.38, according to the AAA. That’s up more than 35 cents over prices just one month ago. With the highest recorded average price at $3.99 (7/2008), many experts believe we could be in record territory come summer.\nSKYROCKING GAS PRICES IN NEW JERSEY\nAtlantic-Cape May: Gas is up 30% for the year, from $2.61 to $3.38\nBergen-Passaic: Prices have jumped 34 cents in the last month. \nMiddlesex-Somerset-Hunterdon: In the last week, gas prices have risen 3 percent, to $3.40\nMonmouth: Residents are paying $3.37 for a gallon of gas, up 35 cents from last month.\nNewark: Prices are up 11 percent over last month to $3.40.\nTrenton: The highest average price of gas at $3.42, up from $2.64 a year ago.\n(Source: AAA)\nSenator Menendez said, “New Jersey families and small businesses are taking it on the chin. Doing nothing is not an option for families, and it isn’t an option for me. Only these measures will truly help stabilize gas prices, prevent a setback in the nation’s economic recovery, and promote our nation’s energy security in the long run.”\nMENENDEZ PLAN TO TACKLE RISING GAS PRICES \nRelease 50 Million Barrels of Oil from the Strategic Petroleum to help lower prices: Menendez urges President Obama to invest the profits raised from selling the reserves to reduce the deficit and invest in strategies to further lower gas prices.  \nIncrease Incentives for the Adoption of Natural Gas Vehicles: Menendez will reintroduce the NAT GAS Act to support the use of natural gas as a transportation fuel. \nAccelerate Electric Vehicle Deployment: Menendez supports legislation that would increase incentives for electric vehicle purchases, promote deployment of charging infrastructure, help coordinate and develop model electric vehicle communities, provide technical assistance to communities to plan for electrification, and increase electric vehicle research.\nKeep American Oil in America: More than 2.5 million barrels of U.S.-produced crude oil and petroleum products are sent abroad each day. This legislation keeps that oil supply here at home, not sent to the other side of the world.\nEnd Billions in Tax Breaks for Big Oil: This legislation would repeal numerous taxpayer giveaways and save taxpayers over $17 billion over the next 5 years.  These funds can be used to pay for efforts to reduce fuel prices and lower the deficit \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d990f701-34a8-40fb-b774-3628b22c0b2b,\"News: Senator Menendez Presses Secretary Clinton On Enforcement Of Iran Sanctions\n                    \n                            Menendez: “Iran is a danger to the United States, the region and the existence of Israel.” \n                    \n                      March 11, 2011\n                     Menendez: “Iran is a danger to the United States, the region and the existence of Israel.” \nWASHINGTON – With the world’s attention diverted from the dangers of Iran’s nuclear program because of developments in the Middle East, US Senator Robert Menendez (D-NJ) pressed US Secretary of State Hillary Clinton last week on efforts to enforce the Iran Sanctions Act. At a Senate Foreign Relations Hearing, Menendez urged the Secretary of State to ensure that the Iranian regime does not use this as an opportunity to speed up its nuclear program.   Menendez was a member of the Senate conference committee that developed the final bill aimed at Iran’s energy and banking sector.\nToday, Senator Menendez (D-NJ) and Senator Kyl (R-AZ) sent a letter to Secretary of State Hillary Clinton expressing concern about a number of foreign entities that are believed to be violating the sanctions and asked her to provide an update on the status of all investigations and transactions that may constitute violations of the Iran Sanctions Act (PDF and Full Text Below), including determinations on those investigations that have reached the 180-day time limit  provided for in the Act.\nSenator Menendez said, “Iran’s drive to develop nuclear weapons has not diminished.   Our sanctions are making it more difficult and more expensive for Iran to acquire the knowledge and materials it needs to achieve its nuclear dream, however, it is crucial that the United States and the international community continue to obstruct, divert and undermine Iran’s efforts and not allow developments in the Middle East to distract from our effort to address the primary threat to stability in the region.  We must continue to enforce tough sanctions on Iran and hold governments and companies accountable for doing business with this brutal regime.”\nPDF of Senator Kyl, Senator Menendez Letter sent to Secretary Clinton: http://menendez.senate.gov/download/?id=f2fd53f6-d75f-4d16-b7d7-6d497c14617c\nFull Text of Senator Kyl, Senator Menendez Letter sent to Secretary Clinton:\nMadam Secretary,\nYou have frequently cited the progress of Iran’s nuclear weapons program, despite the Administration’s leading efforts to fashion multilateral and unilateral sanctions against Iran.  We support the Administration’s efforts, but we believe that there is still much more that must be done to prevent Iran from obtaining a nuclear weapons capability.  We want to assure you of broad, bipartisan support in Congress for use of the full measure of U.S. economic, diplomatic, and political power to thwart Iranian nuclear ambitions.  \nOn September 29, 2010, Deputy Secretary Steinberg announced the State Department’s initiation of investigations into international firms that had not yet committed to exit Iran’s petroleum sector.  We understand that the State Department is continuing these investigations.  As you know, the Comprehensive Iran Sanctions and Divestment Act (CISADA) provides the State Department with 180 days to complete its investigation and make a determination as to whether sanctions are warranted.  We look forward to your notification of these determinations by March 29, 2011.\nNumerous open sources, including reports by the Congressional Research Service and the Government Accountability Office, have detailed foreign investment and other activity that violates U.S. sanctions laws.  We therefore also seek an update on the status of all investigations, as well as those transactions the Department is looking into but has not yet initiated an investigation, concerning violations of the Iran Sanctions Act (ISA) as amended by CISADA.\nBased on publicly available information, we would hope that your update will include the following entities, which appear to be in violation of our law:\n1)    The Chinese National Offshore Oil Company, which is aiding Iran in the development of Iran’s North Pars field.\n2)    The Chinese National Petroleum Company, which is aiding Iran in the development of the North Azadegan and South Pars fields.\n3)    Sinopec, which is aiding Iran’s refinery capacity at Bandar Abbas and the Arak refinery near Markazi.  \n4)    The German company ABB Lumus, which has signed a contract to expand the Abadan refinery with the U.S-sanctioned National Iranian Oil Company.\n5)    Entities reportedly selling refined petroleum to Iran, including: Zhuhai Zhen Rong of China, the PDVSA trading unit of Venezuela, Turpas of Turkey, and Unipec of China.  \n6)    The Industrial Bank of China, the China Construction Bank, the Agricultural Bank of China and the Bank of China, all of which are reportedly aiding Iran by providing financial services in violation of Section 104 of CISADA.  \nIt appears that Chinese firms in the energy and banking sectors have conducted significant activity in violation of U.S. law.  We cannot afford to create the impression that China will be given free rein to conduct economic activity in Iran when more responsible nations have chosen to follow the course we have asked of them.  We are sure you agree.  \nWe would also like to know whether the Department has developed standard criteria to determine when it would be appropriate to use the “necessary to the national interest” waiver and whether the Department is considering such a waiver in any pending investigation should the party not discontinue prohibited activities.  Additionally, what guidance has the Department promulgated concerning when it has received “credible information” to launch an investigation?  We request you make available to us the clear guidelines you have set for the Department.  \nThe most recent International Atomic Energy Agency report on Iran’s ongoing weaponization activities makes clear that we must decisively utilize tougher economic, political, and diplomatic measures in the limited time we may have left to thwart Iran’s efforts to acquire weapons of mass destruction and the means to deliver them. We urge your prompt response to this letter, beginning with the determinations you have made with respect to the imposition of sanctions mandated by CISADA, by March 29, 2011.\nSincerely,\ncc:        The Secretary of The Treasury\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4fedc562-09e1-46dc-b8ac-118fde7a8193,\"Senators Menendez, Johnson, & Reed Lead Fight To Boost Wall Street Watchdogs \n                    \n                            GOP Budget Guts SEC, CFTC – The Very Agencies Responsible for Holding Wall Street Accountable\n                    \n                      March 10, 2011\n                     WASHINGTON – US Senator Robert Menendez (D-New Jersey), a member of the Senate Banking Committee, joined with Banking Committee Chairman Tim Johnson (D-SD) and Chairman of the Subcommittee on Securities, Insurance, and Investment Senator Jack Reed (D-RI) to call on Congress to provide Wall Street regulators with the resources they need to hold Wall Street accountable and protect middle class investments. The Senators released a letter today to the Senate Appropriations Chairs and Subcommittee Chairs calling on them to support full funding for the United States Securities and Exchange Commission (SEC) and the Commodity Futures Trading Commission (CFTC) both in the 2011 Continuing Resolution and in the FY 2012 budget.\nSpecifically, the proposed Republican budget cuts both the SEC and CFTC budgets by 2 percent and 34 percent, respectively. President Obama is proposing an increase to $1.43 billion for the SEC and $308 million for the CFTC.  Cuts to the SEC and possibly the CFTC will not affect the Federal deficit because of regulatory collections from the industry.\nThe GOP’s reckless cuts come at the same time as the new Wall Street reform requires new responsibilities. The SEC and the CFTC are now responsible for oversight of the over-the-counter derivatives market and hedge fund advisors; greater disclosure regarding asset-backed securities; and creation of a new whistleblower program. In fact, the CFTC was already responsible for overseeing actively traded futures and options contracts on U.S. exchanges, which have increased nine-fold in the last decade.  \nKEY DETAILS HIDDEN IN THE GOP BUDGET PROPOSALS• One large investment bank generated $8.3 billion in profit in 2010 alone – 5 times more than the size of President Obama’s funding request• In 2005, SEC provided 19 examiners for a trillion dollars in investment under management. Today, that figure stands at 12 examiners per trillion dollars• CFTC staffing remained level over the decade while the trading volume jumped five-fold• In 2010, the SEC returned $2.2 billion to harmed investors, twice the agency’s budget\nSenator Menendez said, “Republicans are telling shady traders that Wall Street is open for business. Investors deserve more. New Jersey families and I understand the need for shared sacrifice. But no one should support opening our markets to every swindler in the world. I plan to stand up to these powerful interests and make sure we have a cop on the beat to protect confidence in the market.”\n“It has only been a few years since Ponzi schemes run by Bernard Madoff and Allen Stanford were unearthed. And the economy is still reeling from risky bets made by Wall Street executives,” said Chairman Tim Johnson.  “Wall Street Reform passed by Congress last year gave the SEC and CFTC new authorities to protect investors and prevent future crises. It is reckless and irresponsible to gut funding for these critical new protections.”\n\"\"The SEC is the cop that patrols and safeguards our financial markets. No one argues we should de-fund our nation’s police, stripping them of the personnel and equipment they need to keep our homes and communities safe, but that is essentially what has happened to the SEC over the past several years.  At a time when the SEC's workload has grown considerably, we can't let partisan rancor hamper crucial enforcement and examination programs that are designed to safeguard our economy,\"\" said Reed.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e8ab4d4d-b17b-4f4a-8731-9210d29507c6,\"Menendez Leads Bi-Partisan Fight To Protect 300 Shirt Manufacturing Jobs In Newark And Perth Amboy\n                    \n                            Unfair Tariff Encourages American Companies to Move Factories to Mexico, Canada\n                    \n                      March 10, 2011\n                     Menendez: “Leveling Playing Field will Help Us Create Jobs in New Jersey, Not Overseas”\nWASHINGTON – Ending an unfair advantage for foreign shirt manufacturers will help protect as many as 10,000 American jobs – including 300 manufacturing jobs in New Jersey – a bi-partisan group of Senators said today. US Senator Robert Menendez (D-NJ) joined with Senators Lamar Alexander (R-TN) and Bob Casey (D-PA) to lead the fight to help refund many of the unfair duties on domestic shirt makers – leveling the playing field for American businesses and protecting American workers.\nCurrently, many foreign manufacturers enjoy duty-free treatment for imports of finished dress shirts while U.S. shirt manufacturers pay tariffs as high as 13.5 percent on shirt fabrics, such as cotton. In order to level the playing field for American workers, the Senators are calling for the re-creation of the Cotton Trust Fund, which was created to correct duties that favored foreign manufacturers over domestic manufacturers. The fund reimburses domestic manufacturers for higher duty rates paid on imported raw material. Reviving the program, which expired at the end of 2009, would specifically help shirt manufacturers in New Jersey, Pennsylvania, Tennessee, and North Carolina and others remain competitive – protecting jobs in America.\nLast month, Menendez toured both “Individualized Shirts” and “Gambert Shirts”, two New Jersey shirt manufacturers that would have to eliminate hundreds of jobs without this legislation.\nSenator Menendez said, “American workers are the best in the world. But they’re fighting a losing battle on an uneven playing field. That’s wrong, and it’s time we fix it.  By leveling the playing field we can create jobs right here in New Jersey, not overseas.”                “This program has a proven track record stemming the loss of apparel and textile manufacturing jobs and in promoting U.S. exports.,” said Senator Casey. “It is imperative that we extend this tariff relief to Pennsylvania manufacturers so that they can compete and thrive.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fbd7b20c-ff9b-4201-85cc-c0d28dc199b0,\"Senate Passes Menendez Plan To Fast-Track Cutting Edge Technologies\n                    \n                            Major Boost to New Jersey’s Entrepreneurial Community\n                    \n                      March 9, 2011\n                     Menendez: “Create Jobs by Harnessing Innovations, Not Tying Them Down with Red Tape”\nWASHINGTON – In a major boost to New Jersey small businesses and entrepreneurs, the US Senate today passed new steps to prioritize patents for technologies of importance to America's economy, including cutting-edge green technologies. US Senator Robert Menendez (D-NJ) led the fight to prioritize applications for innovative technology and his amendment was included in the America Invents Act which passed the Senate tonight.\nThe Patent Office’s current pilot program on green technologies has allowed patents to be granted more quickly than the average 2 to 3 year wait. The Menendez amendment would allow the Patent Office to expedite patents of vital national importance.\n\"\"We create jobs by harnessing the ideas of our innovators, not tying them down with red tape. The ideas of the future are within our grasp. An efficient government will register those ideas, and then get out of the way. Only then can our small businesses do what they do best – grow our economy and create jobs,\"\" said Menendez.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=34a5067f-376f-460f-a255-0d4f041e6b2a,\"With Feds Launching Major Insider Trading Trial, Menendez Leads Fight To Boost Wall Street Watchdogs\n                    \n                            GOP Guts Very Agencies Responsible for Holding Wall Street Accountable\n                    \n                      March 8, 2011\n                     Menendez: “Republicans Tell Shady Traders–Wall Street Open for Business”\nWASHINGTON – With Federal prosecutors launching one of the biggest insider trading cases in history today, US Senator Robert Menendez (D-New Jersey), a member of the Senate Banking Committee, called on Congress (FULL LETTER BELOW) to provide Wall Street regulators with the resources they need to hold Wall Street accountable and protect middle class investments. Menendez’s fight to hold Wall Street accountable comes as federal prosecutors are accusing Raj Rajaratnam, the former head of the Galleon Group hedge fund, with what would be one of the largest insider trading case in Wall Street history.\nSpecifically, the Republican budget cuts the budget for both the Securities and Exchange Commission and Commodity Futures Trading Commission of 2 percent and 34 percent, respectively. President Obama is proposing an increase to $1.43 billion for the SEC and $308 million for the CFTC. Despite their cuts, the Federal deficit is not impacted by the funding levels Congress sets for the SEC and possibly the CFTC.\nThe GOP’s reckless cuts come at the same time as the new Wall Street reform requires new responsibilities. The SEC and the CFTC are now responsible for oversight of the over-the-counter derivatives market and hedge fund advisors; greater disclosure regarding asset-backed securities; and creation of a new whistleblower program. In fact, the CFTC was already responsible for overseeing actively traded futures and options contracts on U.S. exchanges, which have increased nine-fold in the last decade.  \nKEY DETAILS HIDDEN IN THE GOP BUDGET PROPOSALS• Goldman Sachs generated $8.3 billion in profit in 2010 alone – 5 times more than the size of President Obama’s funding request• In 2005, SEC provided 19 examiners for a trillion dollars in investment under management. Today, that figure stands at 12 examiners per trillion dollars• CFTC staffing remained level over the decade while the trading volume jumped five-fold• In 2010, the SEC returned $2.2 billion to harmed investors, twice the agency’s budget\nSenator Menendez said, “Republicans are telling shady traders that Wall Street is open for business. Investors deserve more. New Jersey families and I understand the need for shared sacrifice. But no one should support opening our markets to every swindler in the world. I plan to stand up to these powerful interests and make sure we have a cop on the beat to protect confidence in the market.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=553ed9bd-f551-4e38-b265-363dfd6662ce,\"Menendez, Lautenberg Announce $480K To Pay Test Fees For Low-Income New Jersey Students\n                    \n                      March 7, 2011\n                     WASHINGTON, D.C. — U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) and today announced the New Jersey Department of Education was awarded $481,219 in federal funding by the U.S. Department of Education to help low-income New Jersey students pay the test fees associated with Advanced Placement (AP) courses.  \n“Aspiring students should see college-level coursework as a challenge, not a financial burden. And these resources are going to open that personal challenge - that personal opportunity – to thousands of students across New Jersey,” said Menendez. “It’s a strong investment in New Jersey’s students of today, and leaders of tomorrow.”\n“Hardworking students should not be denied college credit simply because they can’t afford to take the Advanced Placement exam,” Lautenberg stated.  “This federal funding will help ensure that more students in New Jersey have the opportunity to get a jump on their college education.”\nThe federal funding being provided to the state goes to eligible educational agencies to enable them to pay all or a portion of testing fees for New Jersey students who are enrolled in an AP course and plan to take the exam.  The program is designed to increase the number of low-income students who take AP tests and receive scores for which college academic credit is awarded.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=afba2fea-5e69-456c-8098-b8d0466732b9,\"New Analysis: GOP Slash-And-Burn Budget Cuts An Estimated 20,600 New Jersey Jobs\n                    \n                            As Economy Rebounds, GOP Slashes Hundreds of Construction Jobs, Job Training\n                    \n                      March 7, 2011\n                     Menendez: “Republican Plan Throws a Wet Blanket onto Rebounding Economy”\nJERSEY CITY – The Republican slash-and-burn budget would eliminate an estimated 20,600 New Jersey jobs, according to new analysis highlighted today by US Senator Robert Menendez (D-New Jersey). Menendez called for smart, sensible cuts to the deficit instead of a reckless approach that would cost New Jersey jobs. The analysis comes after the US economic data showed unemployment dipping beneath 9 percent for the first time since April 2009. Federal data released Friday showed that the economy added nearly 190,000 private sector jobs in January.\nIMPACT OF GOP SLASH-AND-BURN BUDGET ON NEW JERSEY•Eliminates an estimated 20,600 New Jersey jobs over the next two years•Slashes Over 400 Construction Jobs for Portal Bridge Replacement Work•Cuts $75 million for job training, impacting approximately 70,000 New Jersey workers  •Eliminates more than 3,000 community health center jobs in New Jersey•Slashes Pell Grant by $845 – eliminating education assistance to estimated 180,000 Jersey students•Slashes $34 million in resources and tools for to secure New Jersey ports, airports and rail •Cuts nearly 4,000 New Jersey kids from Head Start  \nAt a time when New Jersey families are seeing rising food and gas prices, Menendez has lead Senate efforts to close billions of dollars in tax breaks to big oil companies. His proposal worth cut an estimated $33 billion for taxpayers. That’s a common sense step that cuts the budget gap while continuing our economic rebound.\nSenator Menendez said, “All of us agree that Washington needs to get its fiscal house in order. But the Republicans’ slash-and-burn budget will cost New Jersey jobs. We can’t throw a wet blanket on the economy at the precise time when we are starting to create jobs. We need to make common sense, targeted cuts that will allow us to reduce the deficit while continuing to create jobs.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=13ccccbd-20e1-444f-b765-d2d628c6b15e,\"With Spiking Gas Prices Pumping NJ Consumers Dry, Menendez Calls For Release Of Oil Reserves \n                    \n                            Releasing Reserves Would Help Stabilize Prices, Prevent Setback in Nation’s Economic Recovery, Bring Relief to Middle Class Families\n                    \n                      March 4, 2011\n                     Profits from Released Reserves Should be Put Towards Reducing our Deficit, Investing in Clean Energy Technology to Improve Energy Security\nMenendez: “Middle class families simply can’t afford these rising prices.”\nWASHINGTON – With political instability in the Middle East causing gas prices to skyrocket, US Senator Menendez (D-New Jersey) today called for the release of oil from the Strategic Petroleum Reserve (SPR) to help lower gas prices, prevent a setback in the nation’s economic recovery, and bring relief to middle class families. Menendez, along with six other Senators, urged President Obama to invest the profits raised from selling the reserves to reduce the deficit and invest in clean-energy technology. (Full text of the letter below)\nSKYROCKING GAS PRICES IN NEW JERSEY •    In Bergen County, gas prices are up 26% over the last year – from an average of 2.58 in 2010 to 3.25 now. In the last month alone, gas prices are up 6%. •    In Warren County, families are facing a 7% increase over the last month alone.•    In Atlantic City, families are facing a 5% increase over the last year.•    In Camden, gas prices are up 26% over the last year – from an average of 2.58 in 2010 to 3.25 now. In the last month alone, gas prices are up 8%.\nSenator Menendez said, “Gas prices are up – causing the price of everything from food to medicine to jump as well and threatening our economic recovery. Middle class families simply can’t afford the rising prices.  President Obama should release oil from the Strategic Petroleum Reserve now to stabilize gas prices and should use the profits raised to cut the deficit and to invest in the electric vehicle technology that is essential to ending our addition to foreign oil.  Don’t be fooled.  We cannot drill our way to lower gas prices.”\nNote that the Department of Energy has determined that if we opened all areas to drilling, including the Jersey Shore, the price of gas would only be reduced by 3 cents by 2030.  \n###Full text below###March 3, 2011\nDear Mr. President:\nWith gas prices around the nation at near-historic highs, we write to urge you to exercise your emergency authority to release oil from the Strategic Petroleum Reserve (SPR).  This action would immediately lower gasoline prices, generating significant revenue to invest in your call for one million electric vehicles on the road by 2015.  This would be a win-win for American consumers:  short-term help at the pump, and long-term help in accessing cost-saving, oil-free electric cars.  \nGas prices have climbed more than fifty cents a gallon over the past twelve months and are now above the three-dollar mark.  These prices are putting a significant dent in the budgets of families across the country.  According to the Energy Information Administration, gasoline prices were higher last month than in any other February in history.  In the last fifty years, prices in real terms have only been this high twice – in 1981 after the oil crisis, and in parts of 2007 and 2008.  \nThe current price spike couldn’t have come at a worse time.  When gas prices last peaked in July 2008, unemployment was 5.8%.  Now, unemployment has been at or above 9% for 21 months.  The Consumer Price Index increased 1.5% for all items in 2010, but for gasoline, the increase was 13.8%.  This hits elderly Americans especially hard since there hasn’t been a Social Security cost of living adjustment since early 2009.   \nUnlike drilling for additional oil, which won’t reduce our fuel prices in the near term, we know that releases from the SPR work quickly to lower gas prices.  When President George H. W. Bush announced that he was authorizing a drawdown in 1991, oil prices fell by nearly $10 per barrel the next day.  \nWe also know that oil company profits are again approaching record levels.  ExxonMobil reported a 53% increase in its fourth-quarter profit in 2010.  Chevron reported fourth-quarter earnings 72% higher than last year, and ConocoPhillips reported 46% higher profits.  It should come as no surprise that as Americans are paying more at the pump, oil companies are once again reaping the benefit.  \nA sale from the SPR could generate billions of dollars in revenue to invest in the development of electric vehicles and other clean energy programs.  As you know, your important goal of one million electric vehicles on the road by 2015 will save consumers a significant amount in fuel costs.  The Department of Energy estimates that an electric vehicle costs between 2-4 cents per mile to fuel, while a conventional gasoline-powered vehicle costs between 10-15 cents per mile.  Electric vehicles have the added benefit of reducing our reliance on foreign oil – an important goal, particularly given the uncertain conditions in the Middle East.  In the current budget climate, funding for the much-needed investments to move us toward electric vehicles may be constrained.  We ask that you work with Congress to direct half of the proceeds from any SPR sales to electric vehicle investments, while using the remaining half for deficit reduction.\nThank you for considering this proposal.  We believe that high gasoline prices represent an emergency for middle-class families, and look forward to working with you on this important matter.  \nSincerely,\nROBERT MENENDEZUNITED STATES SENATOR – NEW JERSEY###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0322f0e9-9af0-4a39-b0bc-8549bd0757a1,\"Bipartisan Group Of Senators Push Administration Officials To Provide More Options To Help Families Keep Their Homes\n                    \n                            Letter to Regulators Urges Action to Boost Economy and Strengthen Communities\n                    \n                      March 3, 2011\n                     Washington, D.C. – A bipartisan group of U.S. Senators, led by Jeff Merkley (D-OR) and Olympia Snowe (R-ME), urged government agencies to take action to prevent foreclosures and help families keep their homes.\nThe senators made their request in a letter sent to Treasury Secretary Timothy Geithner, Secretary of the Department of Housing and Urban Development Shaun Donovan, Federal Reserve Chairman Ben Bernanke, Securities and Exchange Commission Chairman Sheila Bair, Acting Comptroller of the Currency John Walsh, Acting Director of the Federal Housing Finance Agency Edward DeMarco, Attorney General Eric Holder, and Iowa Attorney General Tom Miller.  Joining Senators Merkley and Snowe in signing the letter are Senators Akaka (D-HI), Begich (D-AK), Bingaman (D-NM), Blumenthal (D-CT), Durbin (D-IL), Franken (D-MN), Lautenberg (D-NJ), Leahy (D-VT), Levin (D-MI), Menendez (D-NJ), Reed (D-RI), Schumer (D-NY), Shaheen (D-NH), Tom Udall (D-NM), Whitehouse (D-RI), and Wyden (D-OR).  The senators advocated for national regulatory standards that would decrease foreclosures, stabilize the housing market, and help spur job creation.\n“We write you today to urge you to establish clear national regulatory standards for the loan servicing industry that eliminate confusion and barriers to mortgage modification and help keep families in their homes,” the senators wrote.  “We believe those standards should include establishing a single point of contact, ending the dual track of pursuing foreclosure during the loan modification process, and ensuring an independent third-party review prior to sending a homeowner to foreclosure…\n“Each of your organizations plays a role in developing and enforcing these standards, and we urge you to act as quickly as possible to develop and promulgate clear rules of the road to protect families and the economy.”\nRead the full text of the letter below.\n###\nMarch 3, 2011\nThe Honorable Timothy GeithnerU.S. Secretary of the Treasury\nHonorable Shaun L.S. DonovanSecretaryUnited States Department of Housing & Urban Development\nHonorable Ben S. BernankeChairmanBoard of Governors of the Federal Reserve System\nHonorable Mary L. SchapiroChairmanSecurities and ExchangeCommissionMr. John G. WalshActing ComptrollerOffice of the Comptroller of the Currency\nMr. Edward J. DeMarcoActing DirectorFederal Housing Finance Agency\nHonorable Eric HolderAttorney GeneralU.S. Department of JusticeHonorable Tom MillerAttorney GeneralIowa Department of Justice\nHonorable Sheila C. BairChairmanFederal Deposit Insurance Corp.\n Dear Sirs and Madams:\nWe write you today to urge you to establish clear national regulatory standards for the loan servicing industry that eliminate confusion and barriers to mortgage modification and help keep families in their homes.  We believe those standards should include establishing a single point of contact, ending the dual track of pursuing foreclosure during the loan modification process, and ensuring an independent third-party review prior to sending a homeowner to foreclosure.\nAs you know, the subprime boom and bust and the near-collapse of the financial system led to our deepest recession in eight decades.  It has caused enormous devastation to families who have lost their jobs and their homes, and it has greatly restricted the lending, investment, and wealth creation that are essential to our economic recovery.\nThe Administration has initiated numerous programs to help families stay in their homes.  Most of these loan modification and foreclosure prevention initiatives rely on loan servicing companies as implementers.  This is a new role for this industry and has required extensive new hiring and training on the part of these companies.  Given these challenges, numerous shortcomings in the way that some of these firms have operated have emerged.  These problems include the submission of false foreclosure affidavits, improper assignment of funds submitted by borrowers, inappropriate advice that borrowers go into default to qualify for a loan modification, and foreclosures that do not meet legal standards.  These several problems have significantly hampered the Administration’s foreclosure prevention programs.  Many have also been potentially serious violations of state and federal law.\nThe current situation is untenable.  A single set of clear national standards for the loan servicing industry must be adopted.  This is both an essential step to restoring the health of our housing market and our financial system today, and to prevent the emergence of these problems again in the future.  Each of your organizations plays a role in developing and enforcing these standards, and we urge you to act as quickly as possible to develop and promulgate clear rules of the road to protect families and the economy.\nYour supervision and enforcement role with the loan servicing industry also gives you the opportunity to advance these standards immediately.\nWe urge you to give special attention to the following issues as you write regulations and engage in supervision and enforcement:\nSingle Point of Contact\nLoan servicers should designate a single point of contact for borrowers who are pursuing a loan modification or an alternative to foreclosure.  \nServicers should assign each borrower a single case manager who will remain with that borrower throughout their loss mitigation experience.  This case manager should have decision-making authority, full accountability, and access to the highest levels of management in the loan servicing company.  Additional line staff may assist the case manager, but the case manager must always be accessible to the borrower.  These case managers would oversee the borrower’s case regardless of whether they are pursuing a HAMP loan modification, a proprietary modification, or an alternative to foreclosure.\nNo Dual Track\nNo foreclosure should be initiated until the servicer has completed a full review of a borrower’s file and determined that the borrower does not qualify for any available loan modification or foreclosure prevention program.  \nIf the borrower is already in foreclosure when he or she requests a review, the servicer should suspend the foreclosure process from the time all required documents have been received until the review is completed.  We believe this review can be completed quickly, so that in cases where no modification is offered, any existing foreclosure process would not need to be restarted from step one.  During this period, the servicer should refrain from sending foreclosure notices to the borrower, conducting or scheduling a sale, or causing judgment to be entered.  If the borrower is not approved for a modification, the loan servicer should notify the borrower that they were not approved and detail the reasons for the denial prior to initiating or resuming a judicial or non-judicial foreclosure process.\nThird Party Review\nPrior to notifying a borrower that they will not be approved for a modification and will be foreclosed upon, an independent third party should review the borrower’s file and ascertain that they have been appropriately considered for all HAMP and proprietary loan modification programs and that they do not qualify for any program that would prevent foreclosure.\nWe urge you to enact these much-needed procedural reforms as quickly as possible, and request that you notify us promptly as to your intentions in this matter.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2e368c8c-042e-4899-bb6c-f0890a17ada2,\"Cutting-Edge Technology Coming To Improve Traffic Flow, Reduce Congestion And Delays In New Jersey\n                    \n                             Funding Was at Risk by House Republicans Slash and Burn Budget\n                    \n                      March 3, 2011\n                     Menendez, Lautenberg announce  $10 Million in Funding to Integrate Vehicle image detection and wireless communication technology\nNEWARK – In a major win for New Jersey’s commuters, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced new resources and tools to improve traffic flow in Bergen and Hudson Counties. New Jersey has been awarded more than $10 million by the Department of Transportation (DOT) for new state of the art traffic signaling technology, which integrates wireless technology, traffic signal software, and vehicle image detection. The new signaling system will improve traffic flow and prevent commute delays on US routes 1&9 and 46; NJ 7, 17, and 120; as well as various local corridors.House Republican voted to slash these resources in their recently-released budget proposal.  However, since the Department of Transportation obligated these funds, this risk has been averted.\nSenator Menendez said, “With family, work, and bills, New Jerseyans have enough on their plate. They deserve a hassle-free commute. These new tools will help our commuters get where they need to be faster, easier, and without unnecessary delays. This major investment will continue putting New Jersey on the road towards greater economic competitiveness and growth.”\nSenator Lautenberg, who is a member of the Senate Appropriations Committee that funds this program said: “Despite Republican efforts to strip this critical federal funding from New Jersey, I am proud to announce this project will move forward to create jobs and relieve congestion in our state. Cutting transportation projects in New Jersey would lead more hardworking men and women to the unemployment line and increase gridlock on our roads. This funding will help ease the flow of traffic in Hudson and Bergen counties and allow commuters to spend less time in the car and more time at home with their families.\"\"\nThe DOT grant funding was awarded in October on a competitive basis from the federal government for national infrastructure investments that will have a significant impact on the nation's metropolitan regions.  The DOT made it official this week by announcing the funding would be committed for this project. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=87214307-6987-436b-85a5-32c2e00861ed,\"Menendez On Nomination Of NJ Judges: “Judges Cecchi And Salas Are Sharp, Experienced And Commited To Justice – Essential Qualities Of All Great Judges\"\"\n                    \n                             Judiciary Committee Begins Confirmation Process to Fill Vacancies for NJ District Court Judges\n                    \n                      March 2, 2011\n                     Washington, DC – As the Senate Judiciary Committee begins the consideration of several nominations for United States District Court Judges, US Senator Menendez (D – New Jersey) released the following statement today in support of Judges Claire Cecchi and Esther Salas, both of whom have been nominated to fill two vacancies in the District of New Jersey:\n“Judge Claire Cecchi and Judge Esther Salas are sharp, experienced, and committed to justice– essential qualities of all great judges. These leaders have demonstrated an impressive ability to manage complex legal cases though the course of their careers. They are clearly the best choices. I look forward to their swift confirmation before the Judiciary Committee and the full Senate.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=703d69cb-5744-4827-8b93-5c3356ff272e,\"Senators: New Steps Will Protect NJ Ecosystems While Rebuilding Local Infrastructure\n                    \n                            Menendez, Lautenberg Announce $25,000 in Funding to Wetland Mitigation Activities Associated With Fence Installation in NJ’s Lakewood Airport\n                    \n                      March 2, 2011\n                     WASHINGTON – US Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced new steps to protect New Jersey’s pristine ecosystem while rebuilding local infrastructure. The Senators were able to secure $25,000 in resources to monitor protected wetlands areas while improvements are being made to the Lakewood Airport. The funding will help ensure the construction site’s ecosystem and environment is protected by planting and monitoring trees as required by the wetlands permit issued by the New Jersey Department of Environmental Protection. Senator Menendez said “Investments in New Jersey must build upon what makes our state great, not destroy it. And that means as we invest in rebuilding our state’s infrastructure, we must ensure our environment is protected from potential damage. These resources will help protect Lakewood’s surrounding ecosystem while we modernize its airport.”\nSenator Lautenberg, member of the Appropriations Subcommittee that funds this program, said: “This federal funding allows upgrades to be completed at the Lakewood Airport while protecting neighboring wetlands,”  It is critical that New Jersey’s open space is preserved as we continue to improve infrastructure.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=83b94406-3fa3-49ae-a5cb-508fbaa71f4a,\"With New Reports Of Financial Terrorism GOP Slashes Budget For Market Watchdogs\n                    \n                            Menendez Calls for Renewed Efforts to Boost Oversight for Financial Markets, Cyber-Security\n                    \n                      March 1, 2011\n                     Menendez: “GOP Whistling Past the Cyber Graveyard”\nWASHINGTON – With new reports that cyber terrorists breached Morgan Stanley financial systems, US Senator Robert Menendez (D-New Jersey) today renewed his call to boost US market cyber-security against potential attacks and oppose GOP attempts to limit funding for the relevant agencies as part of their budget proposal. Reuters reported Tuesday that hackers based in China accessed \"\"very sensitive\"\" data on Morgan Stanley financial systems. Morgan Stanley officials declined to comment.\nMenendez, a member of the Senate Banking Committee, said that the Republican budget, which cuts the current budget for both the Securities and Exchange Commission and Commodity Futures Trading Commission by 2 percent and 34 percent, respectively, would mean each government investigator would have the task of patrolling almost $100 billion in investments – a feat certain to lead to another major economic swindle. Menendez announced that he is gathering support for a letter to leaders of the Senate Appropriations Committee calling for Congress to provide Wall Street regulators, including investigators at the SEC and CFTC, with the tools they need to hold Wall Street accountable and protect middle class investments. President Obama is proposing an increase to $1.43 billion for the SEC and $308 million for the CFTC. The federal deficit is not affected by the funding levels Congress sets for the SEC and possibly the CFTC.  The SEC already funds itself through collections from the financial industry and under the President’s budget, the CFTC will also do so if Congress approves that proposal.\nSenator Menendez said, “Cyber attacks are happening today, not tomorrow. Republicans would have us whistle past the cyber graveyard. They’re wrong. We need to prepare for attacks, and challenge this threat head on. Turning our back isn’t going to make this problem disappear. Investors deserve more, and I plan to stand up to these cyber threats.”\nUS Senator Robert Menendez introduced in early February 2011 the Cyber security Enhancement Act, a bipartisan bill sponsored by Rep. Dan Lipinski which passed the House last year, which will increase the capacity to identify and respond to cyber attacks – boosting security for markets and protecting investments. The legislation will help the agencies that fund cyber security research to cooperate in developing a long-term, proactive plan.\nTHE CYBERSECURITY ENHANCEMENT ACT•             Require the agencies that fund cybersecurity research to cooperate in developing a long-term, proactive R&D plan•             Improve the transfer of cybersecurity technologies to the marketplace•             Reauthorize National Science Foundation R&D programs to safeguard computer and network privacy and to develop cybersecurity degree programs at colleges •             Require the National Institute of Standards and Technology to develop and implement a public cybersecurity awareness and education program to encourage the more widespread adoption of best practices.  \n####\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dc60848a-6b00-453e-9675-1d2487d23182,\"Menendez Announces New Libya Resolution Calling For A No-Fly Zone, Outreach To Libyan Opposition Figures\n                    \n                            Menendez: “US Stands United Against Terrorist Qadhafi and His Regime’s Brutality”\n                    \n                      March 1, 2011\n                     WASHINGTON - US Senator Robert Menendez (D – New Jersey) today finalized a new, bipartisan Senate resolution condemning the recent brutality and aggression by Muammar Qadhafi in Libya and calling for new steps against his regime. The Senate resolution calls on the United Nation Security Council to consider a no-fly zone to protect Libyans from Qadhafi, as well as  outreach by the United States to Libyan opposition figures. Menendez’s resolution also calls on Qadhafi to resign and permit a peaceful transition to democracy and endorses the actions of the United Nations Security Council, including referral of the Libyan situation to the International Criminal Court.\nSenator Menendez said, “Qadhafi stands alone.  The world stands united against him and his regime’s brutality. His track record of terror is known – from the bombing of Pam Am Flight 103, which killed 270 people, to his the brutal repression of the Libyan people as demonstrated by the massacre of 1,200 detainees killed at Abu Salim Prison in June 1996. Today, we stand with the Libyan people today as they demand the right to choose their own government and to live in a state that respects and guarantees basic human and civil rights.  Qadhafi must go.”\nKEY COMPONENTS OF THE SENATE RESOLUTION COMDEMNING GADHAFI AND HIS REGIME•    applauds the courage of the Libyan people in standing up against the brutal dictatorship of Muammar Gadhafi and for demanding democratic reforms, transparent governance, and respect for basic human and civil rights;\n•    strongly condemns the gross and systematic violations of human rights in Libya, including violent attacks on protesters demanding democratic reforms;\n•    calls on Muammar Gadhafi to desist from further violence,  recognize the Libyan people’s demand for democratic change, resign his position and permit a peaceful transition to democracy governed by respect for human and civil rights and the right of the people to choose their government in free and fair elections;\n•    welcomes the  unanimous vote of the United Nations Security Council on resolution 1970 referring the situation  in Libya to the International Criminal Court; imposing an arms embargo on the Libyan Arab Jamahiriya; freezing the assets of Gadhafi and family members; and banning international travel by Gadhafi, members of his family, and senior advisors;\n•    urges the United Nations Security Council to take such further action as may be necessary to protect civilians in Libya from attack, including the possible imposition of a no-fly zone over Libyan territory;\n•    welcomes the attendance of Secretary of State Clinton at the United Nations Human Rights Council meeting in Geneva and 1) urges the Council’s assumption of a country mandate for Libya that employs a Special Rapporteur on the human rights situation in Libya and 2) urges the U.S. Ambassador to the United Nations to advocate for improving United Nations Human Rights Council membership criteria at the next United Nations General Assembly in New York City to exclude gross and systematic violators of human rights.\n•    Welcomes the outreach that has begun by the United States government to Libyan opposition figures and supports an orderly, irreversible and transition to a legitimate democratic government in Libya.\n####FULL RESOLUTION BELOW\n112th CONGRESS1st Session\nStrongly condemning the gross and systematic violations of human rights in Libya, including violent attacks on protesters demanding democratic reforms, and for other purposes.Mr. MENENDEZ (for himself and Mr. Kirk, Mr. Lautenberg, Mr. Durbin, Mrs. Gillibrand, Mr. Sanders, Mr. Whitehouse, Mr. Schumer, Mr, Wyden, Mr. Casey, Mr. Cardin, Mr. Levin) submitted the following resolution: RESOLUTION\nStrongly condemning the gross and systematic violations of human rights in Libya, including violent attacks on protesters demanding democratic reforms, and for other purposes.\nWhereas Muammar Qadhafi and his regime have engaged in gross and systematic violations of human rights, including violent attacks on protesters demanding democratic reforms, that have killed thousands of people;\nWhereas Muammar Qadhafi, his sons and supporters have instigated and authorized violent attacks on Libyan protesters using warplanes, helicopters, snipers and soldiers and continue to  threaten the life and well-being of any person voicing opposition to the Qadhafi regime;\nWhereas the United Nations Security Council and the international community have condemned the violence and use of force against civilians in Libya and on February 26, 2011,  the United Nations Security Council unanimously agreed to refer the situation in Libya to the International Criminal Court; impose an arms embargo on the Libyan Arab Jamahiriya, including the provision of mercenary personnel; freeze the financial assets of Muammar Qadhafi and certain family members; and impose a travel ban on Qadhafi, certain family members and senior advisors;\nWhereas Muammar Qadhafi has ruled Libya for more than 40 years by banning and brutally opposing any individual or group opposing the ideology of his 1969 revolution; criminalizing the peaceful exercise of expression and association; refusing to permit independent journalists' and lawyers' organizations; and engaging in torture and extrajudicial executions, including the 1,200 detainees killed in Abu Salim Prison in June 1996;\nWhereas Libya took formal responsibility for the terrorist attack that brought down Pan Am Flight 103  over Lockerbie, Scotland, killing 270 people, 189 of whom were U.S. citizens and high-ranking Libyan officials have indicated that Muammar Qadhafi personally ordered the attack; and\nWhereas Libya was elected to the UN Human Rights Council on May 13, 2010 for a period of three years, sending a demoralizing message of indifference to the families of the victims of Pan Am flight 103 and Libyan citizens that have endured repression, arbitrary arrest, enforced disappearance or physical assault in their struggle to obtain basic human and civil rights.\nNow, therefore, be it Resolved, That the United States Senate--\n(1)          applauds the courage of the Libyan people in standing up against the brutal dictatorship of Muammar Qadhafi and for demanding democratic reforms,  transparent governance, and respect for basic human and civil rights;\n(2)          strongly condemns the gross and systematic violations of human rights in Libya, including violent attacks on protesters demanding democratic reforms;\n(3)          calls on Muammar Qadhafi to desist from further violence,  recognize the Libyan people’s demand for democratic change, resign his position and permit a peaceful transition to democracy governed by respect for human and civil rights and the right of the people to choose their government in free and fair elections;\n(4)          calls on the Qadhafi regime to immediately release persons that have been arbitrarily detained; to cease the intimidation, harassment and detention of peaceful protestors, human rights defenders and journalists; to ensure civilian safety; and to guarantee access to human rights and humanitarian organizations;\n(5)          welcomes the  unanimous vote of the United Nations Security Council on resolution 1970 referring the situation  in Libya to the International Criminal Court; imposing an arms embargo on the Libyan Arab Jamahiriya; freezing the assets of Qadhafi and family members; and banning international travel by Qadhafi, members of his family, and senior advisors;\n(6)          urges the Qadhafi regime to abide by UN Security Council Resolution 1970 and ensure the safety of foreign nationals and their assets, and to facilitate the departure of those wishing to leave the country as well as the safe passage of humanitarian and medical supplies, humanitarian agencies and workers, into Libya in order to assist the Libyan people;\n(7)          urges the United Nations Security Council to take such further action as may be necessary to protect civilians in Libya from attack, including the possible imposition of a no-fly zone over Libyan territory;\n(8)          welcomes the African Union’s condemnation of the “disproportionate use of force in Libya\"\" and urges the Union to take action to address the human rights crisis in Libya and to ensure that member states, particularly those bordering Libya, are in full compliance with the arms embargo imposed by United Nations Security Council resolution 1970, including the ban on the provision of armed mercenary personnel;  \n(9)          welcomes the decision of the United Nations Human Rights Council to recommend Libya’s suspension from the Council and urges the United Nations General Assembly to vote to suspend Libya’s rights of membership in the Council; and\n(10)        welcomes the attendance of Secretary of State Clinton at the United Nations Human Rights Council meeting in Geneva and 1) urges the Council’s assumption of a country mandate for Libya that employs a Special Rapporteur on the human rights situation in Libya and 2) urges the U.S. Ambassador to the United Nations to advocate for improving United Nations Human Rights Council membership criteria at the next United Nations General Assembly in New York City to exclude gross and systematic violators of human rights.\n(11)        Welcomes the outreach that has begun by the United States government to Libyan opposition figures and supports an orderly, irreversible and transition to a legitimate democratic government in Libya.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d19de904-e4c1-45de-9b56-89852a08c746,\"With Floods Raging In The Midwest GOP Budget Axes $25 Million For Flood Mitigation\n                    \n                            Menendez Urges GOP Leaders to Help Communities Prepare for Floods, Not Turn Their Backs on Them\n                    \n                      March 1, 2011\n                     WASHINGTON - With towns across the Midwest bracing for record floods – and New Jersey communities still reeling from record snow fall – US Senator Robert Menendez (D – New Jersey) called on Republican leaders to restore resources for states to cope with and ease floods. The GOP budget proposal calls for $25 million in cuts to flood mitigation resources, which helps communities and residents prepare for floods and other natural disasters. Menendez said that with major snow fall already on the ground, future rains will more likely than not mean flooding for many towns in New Jersey and along the eastern coast.\nSenator Menendez said, “New Jersey’s record snow means a greater threat for flooding in the spring. Our choice is simple – help communities prepare for this crisis now, or we can pump them out later at twice the cost. The smart, common sense approach is to help prevent or ease the disaster, not turn a blind eye to it as the Republicans are doing.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5e5dab79-0f73-498f-9c88-192e288bf9b7,\"New Analysis Shows GOP Budget Cuts College Grants For 183,000 NJ Students\n                    \n                             Jersey’s Middle Class Families See $115 Million in Pell Grants Disappear\n                    \n                      February 28, 2011\n                     NEW JERSEY – More than 180,000 New Jersey college students will see education grants disappear under the budget proposed by Washington Republicans, according to new analysis released today by Senator Robert Menendez (D – New Jersey). \nDuring a meeting with New Jersey college students Monday, Menendez gave Republicans an “F” for slashing college Pell grants for low and middle class families at a time when families are facing record unemployment and debt levels.\nPell Grants are awarded to undergraduate students from low and middle class families, in amounts up to $5,550 per year. The amount awarded depends on need, tuition costs as well as current academic status.\nWhile the Obama Budget keeps the maximum award at $5,550, the Republican budget slashes the award by $845 – an 11 percent cut – and then continues to cut Pell Grants by $56 billion over the next ten years.\nOfficials at the Hudson County Community College, where the Senator met with students, said that while 80% of the student body is on financial aid, delinquency in student payment is up more than 180%. Enrollment this year has remained flat, but students are taking fewer hours because of difficulty securing their financing.\nKEY FACTS FOR WHY GOP BUDGET GETS AN “F”•             The average in-state tuition and fees for NJ public colleges has increased by 66 percent over the past decade. •             During the same time, average tuition in private schools in NJ increased by almost 75 percent to more than $27,000 for this school year.•             The average debt for students attending NJ colleges and universities is more than $23,000, with almost two-thirds of all students holding debt.  •             Nearly half of all college-ready students in families with incomes under $50,000 cannot go to a four-year college because cost is too much of a barrier\n\nSenator Menendez said, “Education opens doors. But Republicans have slammed shut that door for thousands of New Jersey college students. By limiting the resources available for higher education, they are putting a break on New Jersey’s future competitiveness. Republicans deserve a failing grade for cutting what is a lifeline for thousands of aspiring students.”\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d9c14252-4d88-4b94-bfcf-3e33576faaa8,\"Menendez Statement On USDA Discrimination Settlement With Hispanic And Female Farmers\n                    \n                            Menendez: “Righting the wrongs of the past and no longer allowing this dark period in our   recent history to be swept under the carpet”\n                    \n                      February 25, 2011\n                     WASHINGTON – Senator Robert Menendez (D – New Jersey) released the following statement on the United States Department of Agriculture’s settlement with Hispanic and female farmers:\n“I commend the Administration for its leadership in working to address a grave injustice done to Hispanic-American and female farmers at the hands of our own United States Department of Agriculture several decades ago. Justice and compensation is long overdue for the tens of thousands of farmers who were discriminated against and denied loans and other forms of support that the USDA routinely awarded farmers across our country.  Though the Administration’s commitment to righting the wrongs of the past and no longer allowing this dark period in our recent history to be swept under the carpet deserves the admiration of all Americans, I repeat my expectation that the terms of the proposal provide equitable compensation and treatment to Hispanic and Women farmers as was made available to other farmers who suffered similar injustices by the USDA in the past.\"\"\n“However, details and questions still remain in addressing these fundamental injustices which are long overdue.  I am concerned that the Administration’s proposal may fall short of this fair standard. If so, I will redouble my efforts to have the administration get it right. The only thing worse than actual discrimination itself would be treating victims differently based on their race, ethnicity, or gender.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ef04406b-5d83-4c01-844a-6445c59ab393,\"Menendez, Lautenberg Announce New Boost To American Bridge Safety\n                    \n                            Princeton Junction Company to Receive Grants to Develop Novel Wireless Bridge Safety System\n                    \n                      February 25, 2011\n                     WASHINGTON – In a major boost to bridge safety in New Jersey and across the country, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced new grants to a New Jersey company specializing in the production and deployment of a wireless safety network. Mistras Group Inc., a technology company in Princeton Junction, NJ has been awarded $1.3 million in federal funding to develop a system to continuously monitor the health of bridges using wireless sensors that will garner power from structural vibrations and wind energy. The resources come through the U.S. Department of Commerce’s (DOC) Technology Innovation Program (TIP). Senator Menendez said, “Even in these difficult economic conditions, safety is job number one. This smart, cutting-edge technology can easily be deployed, is self-powered, and together with analysis tools will form a safety net for our bridges – and create good-paying jobs in the process. We are ensuring the safety of our infrastructure and our citizens, while investing in the innovation that will allow us to continue leading in the 21st century.” “This critical federal funding provides an opportunity to create new technology here in New Jersey to help ensure the safety of our nation’s infrastructure,” said Lautenberg.  “When our families take to the roads and travel across bridges, they should feel safe knowing these structures are being continuously monitored.  Early detection also leads to less expensive repairs, which helps local communities facing an already tight budget.” According to a Tri State Transportation Campaign study, 200 of New Jersey’s major bridges were rated structurally deficient. Nationwide, the Federal Highway Administration estimates that more than 70,000 bridges in the United States are structurally deficient. While about 10,000 bridges are built, replaced, or rehabilitated annually, there is significant need for a system to provide continuously updated information on the structural health of bridges to better prioritize repair operations and to notify bridge managers of potential extreme event such as collisions.  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=95ecd2e8-195a-40ff-94b6-4a3bbc401005,\"One Year Later, The Castro Regime's Brutality Unchanged\n                    \n                            Pro-Democracy Activists Detained for Commenting on Tragic Death of Orlando Zapata Tamayo\n                    \n                      February 24, 2011\n                     Menendez: “Time passes, but the Castro Regime remains an icon of oppression and totalitarian dictatorship.”\nWASHINGTON – US Senator Robert Menendez (D – New Jersey), a member of the Senate Foreign Relations Committee, released the following statement on the Castro Regime’s decision to detain 46 political prisoners who commented on the death of Orlando Zapata Tamayo:\n“Time passes, but the Castro Regime remains an icon of oppression and totalitarian dictatorship. Today is a stark reminder of that. Just a year after their oppression forced a principled man to starve to death, the arrests yesterday of democracy activists, who dared to commemorate the death of Orlando Zapata Tamayo, is a reminder of the oppression and brutality of the Castro regime. We will remember Zapata – and everyone arrested today – for their heroism. For my part, I will continue to work to end the Castro regime and for freedom for the Cuban people to determine their own destiny.\"\"\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d989fb39-809e-4f01-9f79-ef81e923150a,\"Menendez: VA’s One Size Fits All Policy Isn't Working For NJ Veterans\n                    \n                            Urges New Steps to Provide Quality, Convenient Care to South Jersey Vets\n                    \n                      February 24, 2011\n                     \"\"I will work with my colleagues in Congress to achieve this goal\"\"\nNEW JERSEY – With many southern New Jersey veterans traveling more than an hour to receive full-service health care through the Veterans Administration, U.S. Senator Robert Menendez today called on VA officials to take new steps to provide quality care more locally. Menendez urged the Secretary of Veterans Affairs, General Eric Shinseki, to use local pilot programs such as the one proposed by Shore Memorial Hospital in Somers Point.\nIn a November letter to Secretary Shinseki, Senator Menendez wrote, “Currently, the veterans of the Atlantic and Cape May County areas are forced to travel a minimum of 90 minutes to the nearest full service VA Medical Center. The long distance creates delays and unnecessary barriers to care for veterans who live in this region.  Veterans with medical conditions face particularly difficult circumstance traveling long distances.”\nSenator Menendez said, “The VA’s one-size-fits-all policy isn’t working. It is a very long drive to go from Atlantic or Cape May County and back for health care, especially when we can provide quality care locally. These men and women have sacrificed for us, and I’ll continue to fight to make sure South Jersey’s vets have easy access to the medical care they deserve. If the VA won’t find a way to provide accessible care to deserving South Jersey vets, I will work with my colleagues in Congress to achieve this goal.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6bf0eb90-9045-418b-b7c1-ee2ee1ab6e7f,\"Menendez: “Gadhafi More Willing To Gun Down Libyans Than Listen To Them”\n                    \n                            Unveils New Resolution Condemning Ghadafi Regime’s Brutality\n                    \n                      February 23, 2011\n                     Calls for Suspending Arms Sales to Libya, Investigation into Crimes Against Humanity, Suspension of Libya from UN Human Rights Council\nWASHINGTON – US Senator Robert Menendez (D-New Jersey) today unveiled a new Senate resolution condemning the brutality conducted by the Gadhafi regime in Libya. In the new resolution, Menendez, a member of the Senate Foreign Relations Committee, reiterated his support for peaceful protestors and their efforts to gain democratic reforms.\nKEY COMPONENTS OF MENENDEZ’S NEW EFFORTS TO CONDEMN THE GADHAFI REGIME(1) Urges suspension of arms sales to Libya until it can guarantee rights under the Universal Declaration of Human Rights(2) Encourages the United Nations Security Council to condemn violent attacks on protesters demanding democratic reforms;(3) Urges for the International Criminal Court to investigate crimes against humanity committed by Gadhafi against the Libyan people;(4) Urges the United Nations General Assembly to suspend Libya’s rights of membership in the Human Rights Council.\nSenator Menendez said, “Gadhafi has never been a friend to the United States. Now he is showing he’s not even a friend to the people of Libya. In fact, he’s more willing to gun down Libyans than listen to them. And all of this while sitting on the United Nations Human Rights Council.  All officials in the Libyan government – and around the world - should stand up for the Libyan people, grant their pleas for liberty and respect their call for human and civil rights. The United States must stand by the Libyan people as they seek the rights deserved by all peoples.”***RESOLUTION BELOW***112th CONGRESS1st Session\nCondemning the brutal crackdown on protesters, calling on the International Criminal Court to investigate crimes against humanity, and calling on the United Nations General Assembly to suspend Libya’s membership in the United Nations Human Rights Council.\nMr. MENENDEZ submits the following resolution:  RESOLUTION\nCondemning the brutal crackdown on protesters, calling on the International Criminal Court to investigate crimes against humanity, and calling on the United Nations General Assembly to suspend Libya’s membership in the United Nations Human Rights Council.\nWhereas Libya has instigated violent attacks on protesters demanding democratic reform killing hundreds of people.\nWhereas the President Muammar Gadhafi and his son have fired on unarmed protesters using warplanes, helicopters, snipers and soldiers. \nWhereas the Gadhafi regime has cut off most forms of communications to the capital, except for State sponsored television. \nWhereas Muammar Gadhafi has ruled Libya for more than 40 years and has banned and brutally opposed any individual or group opposing the ideology of his 1969 revolution.\nWhereas the Gadhafi regime criminalizes the peaceful exercise of expression and association;\nWhereas Gadhafi refuses to permit independent journalists' and lawyers' organizations;\nWhereas the Gadhafi regime refuses to investigate cases of enforced disappearances, torture, and extrajudicial executions, including the fate of 1,200 detainees killed in Abu Salim Prison in June 1996;\nWhereas Libya took formal responsibility for the terrorist attack that brought Pan Am Flight 103 down over Lockerbie, Scotland, killing 270 people, 189 of whom were U.S. citizens; \nWhereas the trials administered by Libya’s state security court for individuals accused of \"\"offenses against the state,\"\" have resulted in the continued detainment of at least 200 individuals who have already served their sentences or been acquitted;\nWhereas the Gadhafi regime arbitrarily detains women and girls in \"\"social rehabilitation\"\" facilities indefinitely for suspected transgressions of moral codes without judicial review; \nWhereas Libya joined the UN Human Rights Council on May 13, 2010 for a period of three years; \nWhereas Libya dismissed the recommendations that resulted from its first Human Rights Council Universal Periodic Review on November 9, 2010 in areas guaranteeing freedom of expression and association; addressing impunity for gross violations committed in the past; releasing arbitrarily detained individuals; and adopting a framework to protect refugees, asylum seekers, and migrants; \nWhereas Libya’s membership in the United Nations Human Rights Council sends a demoralizing message of indifference to the families of the victims of Pan Am flight 103 and Libyan citizens that have endured repression, arbitrary arrest, enforced disappearance or physical assault in their struggle to obtain human rights;\nWhereas the 16th session of the Human Rights Council in Geneva is scheduled for February 28 - March 25, 2011: Now, therefore, be it\n      Resolved, That the United States Senate--\n(1)          condemns the violent attacks on protesters demanding democratic reforms;\n(2)          calls on the Gadhafi government to desist from further violence and to recognize the Libyan people’s demand for democratic change;\n(3)          signs and adheres to the tenets of the Universal Declaration of Human Rights \n(4)          calls on all nations to suspend arms sales to Libya until it can guarantee rights under the Universal Declaration of Human Rights\n(5)          calls on the United Nations Security Council to condemn violent attacks on protesters demanding democratic reforms;\n(6)          calls on the International Criminal Court to investigate crimes against humanity committed by Gadhafi against the Libyan people;\n(7)          calls on the United Nations General Assembly to suspend Libya’s rights of membership in the Human Rights Council.\n(8)          calls on the United Nations Human Rights Council at its forthcoming meeting to assume a country mandate for Libya that employs a Special Rapporteur on the human rights situation in Libya.\n(9)        calls on the U.S. Ambassador to the United Nations Human Rights Council to call for a Special Session to address current events in Libya, as well as systemic human rights abuses by the Libyan government under the leadership of Muammar Gadhafi;\n(10)        calls on the U.S. Ambassador to the United Nations Human Rights Council to advocate for ensuring that systemic human rights abusers such as Libya are held responsible for implementing the recommendations made during their Universal Periodic Reviews.\n(11)        calls on the U.S. Ambassador to the United Nations to advocate for improving United Nations Human Rights Council membership criteria at the next United Nations General Assembly in New York City to exclude systematic human rights abusers.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=975102f1-1b42-4743-b876-e5a31a7ace4c,\"Menendez – “Muammar Gadhafi Is A Terrorist – Plain And Simple”\n                    \n                            New Information Helps Explain Why Gadhafi Worked to Set Pan Am Bomber al-Megrahi Free\n                    \n                      February 23, 2011\n                     WASHINGTON - US Senator Robert Menendez (D – New Jersey) today released the following statement on reports that Muammar Gadhafi may have directly ordered the Lockerbie bombing in 1988:\n“Muammar Gadhafi is a terrorist – plain and simple. Today’s report, if correct, affirms that fact. What’s more, his personal involvement in the Pan Am bombing would not be a surprise, but rather confirms his defective character.  It explains his personal advocacy for the release of convicted bomber Abdulbaset Ali Mohmed  al-Megrahi – to ensure that he would not confess Gahdafi’s role in the bombing.“\nYesterday, Senator Menendez released a draft resolution that would :(1) Urge suspension of arms sales to Libya until it can guarantee rights under the Universal Declaration of Human Rights(2) Urge for the International Criminal Court to investigate crimes against humanity committed by Gadhafi against the Libyan people;(3) Urge the United Nations General Assembly to suspend Libya’s rights of membership in the Human Rights Council.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=69eca1d6-0106-497f-a948-1c9d19a3398f,\"Menendez On One Year Anniversary Of Orlando Zapata's Death\n                    \n                      February 23, 2011\n                     WASHINGTON – On the one-year anniversary of the death of Orlando Zapata Tamayo, the Cuban pro-democracy activist and political prisoner who died of a hunger strike in protest of the Castro regime's brutal abuses, US Senator Menendez (D-NJ) released the following statement:\n“The story of Orlando Zapata Tamayo is a tragic reminder of the Castro regime’s disdain for democracy, free speech and basic human freedoms. It is so opposed to these liberties that it imprisoned and let die this peaceful and principled man one year ago. It is a vivid reminder that the Castro regime’s oppression continues. Tamayo sacrificed his life for Cuban freedom. Today, in his memory, and those who languish every day to strive for freedom, we carry on their struggle for freedom and human rights in Cuba. Our thoughts and prayers are with his family and loved ones.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cdba5cc1-07a9-4d2c-af5c-c3200228d520,\"GOP To Shady Traders - Wall Street Is Open For Business\n                    \n                            Budget Means About One Investigator for Every 100 Billion Invested by Public\n                    \n                      February 22, 2011\n                     Menendez: “The GOP’s Failure to Plan is a Plan for Failure”NEW JERSEY – With ponzi-scheme leader Bernard Madoff stating this past week that banks must have known about his billion-dollar treachery, U.S. Senator Robert Menendez (D-New Jersey) today called on Congress to reject Republican efforts to gut the very agencies responsible for holding Wall Street banks accountable. Menendez, a member of the Senate Banking Committee, said that the Republican budget would mean each government investigator would have the task of patrolling almost $100 billion in investments – a feat certain to lead to another major economic swindle.\nIn a letter to the leaders of the Senate Appropriations Committee, Menendez called for Congress to provide Wall Street regulators, including investigators at the Securities and Exchange Commission and Commodity Futures Trading Commission, with the tools they need to hold Wall Street accountable and protect middle class investments.\nSpecifically, the Republican budget proposes cuts to the current budget for both the SEC and the CFTC of 2 percent and 34 percent, respectively. Meanwhile President Obama is proposing an increase to $1.43 billion for the SEC and $308 million for the CFTC.\nThese GOP cuts come at the same time as the new Wall Street reform requires new responsibilities. The SEC and the CFTC are now responsible for oversight of the over-the-counter derivatives market and hedge fund advisors; greater disclosure regarding asset-backed securities; and creation of a new whistleblower program. In fact, the CFTC was already responsible for overseeing actively traded futures and options contracts on U.S. exchanges, which have increased nine-fold in the last decade.  KEY DETAILS HIDDEN IN THE GOP BUDGET  PROPOSALS•             President Obama’s request is 5 times smaller than the size of the $8.3 billion profit generated by one investment bank in 2010 alone. And that was during a bad year.•             Six years ago, the SEC’s funding was sufficient to provide 19 examiners for a trillion dollars in investment under management. Today, that figure stands at 12 examiners per trillion dollars.  •             CFTC staffing has remained level over the decade while the trading volume has increased five-fold.        •             In 2010, the SEC returned $2.2 billion to harmed investors, twice the agency’s budget.•             Federal deficit is not affected by the funding levels Congress sets for the SEC and possibly the CFTC.\nSenator Menendez said, “The Republican budget tells every shady trader and book cooker that Wall Street is open for business. New Jersey families and I understand the need for shared sacrifice. But no one should support opening our markets to every swindler in the world. Investors deserve more, and I plan to stand up to these powerful special interests, not turn a blind eye to them.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0325565f-8626-4a42-a7c0-28443472f87c,\"Menendez: Qaddafi “Stands For Nothing And For No One Other Than Himself”\n                    \n                      February 22, 2011\n                     NEW JERSEY – U.S. Senator Robert Menendez (D-NJ) released the following statement on the political developments in Libya. Menendez, a member of the Senate Foreign Relations Committee, has been a strong critic of Libya due to its efforts to free and public support for convicted terrorist Abdelbaset Ali al-Megrahi.\n“While the Qaddafi regime guns down its own citizens for the supposed crime of protesting against its tyrannical rule, Libya continues to sit on the UN Human Rights Council.  I call on the UN Security Council to immediately condemn these acts and for the General Assembly to expel Libya from the UN Human Rights Council for these despicable acts.\n“I condemn the brutal crimes against humanity taking place in Libya.  Muammar Qaddafi has again shown himself to be nothing more than despot. He stands for nothing and for no one other than himself. All officials in the Libyan government should stand up for the Libyan people, grant their pleas for liberty and respect their human and civil rights. The United States must stand by the Libyan people as they seek the rights and liberties deserved by all peoples.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=50981d29-b3cc-41fd-a862-50126a0a8c72,\"Menendez: US Must Veto Flawed UN Resolution That Fuels Anti-Israeli Sentiment, Threatens Israel-Palestine Negotiations From Moving Forward\n                    \n                            U.S. must abide by role of facilitating negotiations, object to actions that hinder progress, and not contribute to Anti-Israeli sentiment\n                    \n                      February 18, 2011\n                     WASHINGTON – With news reports that UN Ambassador Susan Rice offered to support a draft statement affirming that the Security Council \"\"does not accept the legitimacy of continued Israeli settlement activity” during UN negotiations today, US Senator Robert Menendez (D-NJ) is urging the Obama administration to reconsider its offer and veto a resolution that would essentially fuel anti-Israeli sentiment by condemning Israel’s activities in the region: \n“There are only two parties that are competent to address the issue of settlements and two parties that can move the negotiations forward. The U.S. role is in facilitating those negotiations, encouraging the parties, and using its voice and vote to object to any action that threatens to derail progress. Today, the U.S. lost sight of its role in this process and instead facilitated and encouraged anti-Israeli sentiment by conceding an argument that was not ours to concede. The United States must stand by its ally Israel and veto this flawed United Nations resolution. ”\n“Moreover, the merits of any peace proposal between the Israelis and the Palestinians must always be weighed against the assurances Israel requires for its security, which is especially apparent given the current turmoil in the Middle East.  Israel’s right to exist and defend itself is inalienable and must be explicitly recognized by its Arab neighbors and the United Nations.” \n                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d2e4ceac-4f3a-4794-874d-938457290e0b,\"Menendez, Lautenberg Announce Nearly $2.4 Million In Federal Funding To Staff New Jersey Fire Departments And Aid First Responders\n                    \n                            BRIDGETON, HAMILTON, RIDGEWOOD SECURE FUNDING FOR STAFFING\n                    \n                      February 17, 2011\n                     WASHINGTON —  U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced nine New Jersey fire departments and one ambulance squad received a total of $2,396,338 in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) and Staffing for Adequate Fire and Emergency Response (SAFER) programs.  These grants can be invested in staffing, vehicle acquisition, training, equipment, personal protective equipment, health programs, and other support for stations and facilities. \n“Emergencies won’t wait for flush budget years – and neither can we,” said Menendez.  “All of us must step forward to make sure our communities have the personnel and equipment they need. These resources will help communities and towns across New Jersey – even in these tough economic situations – be safe.” “With firefighters ready to roll at the sound of the alarm, we must be certain that our departments are sufficiently staffed to handle emergencies safely and effectively,” said Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG and SAFER grant programs.  “This critical federal funding invests directly in New Jersey’s first responders so that they have the best equipment and training to protect our families and neighborhoods.”  The $2,396,338 in federal funding will be distributed as follows: SAFER Grant Program•    Bridgeton - $1,022,798 to the Bridgeton Fire Department for staffing.•    Ridgewood - $349,031 to the Ridgewood Fire Department for staffing.•    Hamilton - $109,417 to the Hamilton Township Fire District #2 for staffing. AFG Grant Program•    Landisville - $237,500 to the Landisville Volunteer Fire Company to purchase a fire truck.•    Edison - $121,500 to the Edison First Aid Squad #2 to purchase an ambulance.•    Bogota - $109,535 to the Bogota Volunteer Fire Department for operations and safety.•    Wood-Ridge - $179,550 to the Wood-Ridge Fire Department for operations and safety.•    Hoboken - $118,827 to the Hoboken Fire Department for operations and safety.•    Harrisonville - $72,580 to the Harrisonville Volunteer Fire Company for operations and safety.•    Cherry Hill - $75,600 to the Cherry Hill Fire Department for operations and safety.\nThe highly competitive SAFER grant program provides funding directly to fire departments and volunteer firefighter organizations in order to help them increase the number of trained \"\"front line\"\" firefighters in their communities. The AFG grants are awarded to fire departments and EMS organizations to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies. For more information about the programs, please visit: http://www.firegrantsupport.com/ ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bd052847-d9db-4785-aae5-eac0a6a53d12,\"Menendez: “New Medical Red Tape Could Be A Posion Pill For NJ Patients”\n                    \n                            New Signature Requirements Could Create Headaches for Medical Labs and Doctors\n                    \n                      February 17, 2011\n                     In Official Letter, Senator Urges a Delay in Enforcement New Rules\nWASHINGTON – With New Jersey patients and labs on the cusp of facing an additional level of medical red tape, US Senator Robert Menendez today called for federal officials to consider a delay in enforcement of new signature requirement until addressing certain concerns. Menendez said the additional bureaucracy could be a “poison pill for New Jersey’s patients and businesses.”\nIn a letter to the Centers for Medicare and Medicaid Services Administrator Donald Berwick, MD, (FULL LETTER BELOW), Senator Menendez pointed out that new protocols, including the requirement that the ordering physician sign additional laboratory paperwork, may cause a series of problems.\nPOSSIBLE HEADACHES CREATED BY THE NEW REQUIREMENTS:-Run-around for patients who report to a laboratory without the necessary signatures -Delays in providing test results to patients needing to make quick health care decisions -Added bureaucratic headaches for medical laboratories seeking payment for services-Confusion among patients in different segments of the medical community, including home health settings in which the physician is often not on site\nCMS, under the Department of Health and Human Services, requires a currently-practicing doctor’s signature for tests on blood, fluids, etc. Without an official signature, patients might not be able access their results and labs could not receive reimbursement.\nCMS began requiring the additional signature just months ago. And then, citing concerns, CMS recently granted a three-month delay in order to give doctors and laboratories additional time to adjust to the new protocols.  \nSenator Menendez said, “In medicine, our goal should be to cure the sick, not create headaches. Yet this medical red tape could be a poison pill for New Jersey’s patients, doctors, and businesses. While I’m glad there has been a three-month delay, we should really be discussing a longer delay until we can work through all the concerns surrounding this new rule.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5223daea-ca56-46c6-bb98-3fb5a0d6cb81,\"Senators Menendez, Lautenberg: New Resources Will Boost New Jersey Road Safety\n                    \n                            $1.2 Million in Funding will Target Drunk Drivers, Seat Beat Use\n                    \n                      February 16, 2011\n                     WASHINGTON – U.S. Senators Robert Menendez and Frank Lautenberg (D-NJ) today announced a major boost for New Jersey road safety, with new law enforcement and education tools coming to the area. The Senators announced the U.S. Department of Transportation has awarded New Jersey more than $1,200,000 for highway safety initiatives in New Jersey, including enabling law enforcement programs that target drunk driving, child seat use, safety belt use, speed enforcement campaigns, prosecutor training and toxicology. The award will also be used for educational campaigns for teen drivers and motorcycle driver training.\nSenator Menendez said, “Preventing tragedies on our roads is a priority. These resources will go towards proven programs that save lives. New Jersey law enforcement will be able to continue cracking down on drunk drivers, and help protect children and teens. That’s a big win for Trenton.”\n“Too many drivers, passengers and pedestrians are killed or injured each year on our state’s highways.  This funding will help put the brakes on drunk driving in New Jersey and give police the tools they need to enforce laws that will keep our roads and families safe,” stated Lautenberg, who authored the law to lower the legal blood alcohol limit to .08 in all 50 states.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=46d77494-484d-4dee-9aa7-3436031d77b5,\"Menendez: “Just Hacking Away – As The Republican Leadership Has Called For – Hurts America's Middle Class And Our Country’s Long Term Success.”\n                    \n                      February 15, 2011\n                     Senator Menendez said, “I strongly believe in fiscal responsibility. Today’s sober proposal from the President highlights the tough choices we have ahead of us. Families in New Jersey expect me to deal with the difficult choices ahead and I will, but we must also remember that fiscal responsibility requires a balance between targeted spending cuts and key investments to keep America competitive. Just hacking away – as the Republican leadership has called for – hurts America’s middle class and our country’s long term success. We must get spending under control, but New Jersey’s middle class families can’t afford the Republicans’ hatchet job.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=05d58c72-f6c1-4f28-8ff4-60519c43012a,\"With BP Official Admitting He Resigned Due To Clear Safety Issues, Menendez Reiterates Call For Full Accountability Of Big Oil\n                    \n                            Legislation Would Hold Big Oil Accountable for All Economic Damages; BP Has Paid Only Two Settlements for Long-Term Losses\n                    \n                      February 15, 2011\n                     Menendez: “This Accident was not a Fluke. It’s Time to Stop Coddling Oil Companies”\nWASHINGTON – With just-released court documents finding that a senior BP official resigned only months before the Gulf oil spill due to concerns about the company’s focus on safety, US Senator Robert Menendez (D-NJ) today reiterated his call for full accountability of big oil for oil spills. Menendez has led the charge to remove the $75 million liability limit for economic damages that oil companies currently enjoy and has long emphasized the risks associated with coastline drilling.\nCourt documents released yesterday show that a senior vice president for drilling operations in the Gulf of Mexico resigned in late 2009, citing problems with BP’s safety protocols. Just months later, BP caused the worst oil spill in US history.\nSenator Menendez said, “Here’s a simple rule when it comes to coastal drilling – there is no such thing as ‘Too Safe To Spill.’ And today’s news proves that point again. This accident was not a fluke. The best – and perhaps only – way we are going to prevent major oil spills in the future is if oil companies know they will pay for every cent of the damages they create. It’s time to stop coddling oil companies. It’s time to hold them to the same standard that average citizens – you make the mess, you clean it up.”\nWhile President Obama compelled BP to create its $20 billion fund, Menendez said it was more than troublesome that only two final settlements for long-term losses have been reached. In January, the presidential Deepwater Horizon oil spill commission released a report saying that systematic failures in industry and government safety oversight could lead to another catastrophic deepwater oil spill.\nMenendez’s Big Oil Bailout Prevention Act would:* Raise the liability cap for offshore oil well spills from $75 million to an unlimited amount* Eliminate the $1 billion per incident cap on claims against the Oil Spill Liability Trust Fund and allow community responders to access the fund for preparation and mitigation up front, rather than waiting for reimbursement later.* If damages claims exceed the amount in the Oil Spill Liability Trust Fund (currently $1.6 billion), then claimants can collect from future revenues of the fund, with interest.* Eliminate the $500 million cap on natural resources damages.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3473272f-bfa9-4687-9284-d2341dec5eb6,\"Twenty-Four Senators Urge For Establishment Of Independent Human Rights Monitor On Iran\n                    \n                      February 15, 2011\n                     WASHINGTON – Twenty-four senators today urged Secretary of State Clinton to work at the United Nations Human Rights Council session, which begins March 1, to establish an independent human rights monitor on Iran.  \nIn their letter, the senators maintain that an independent human rights monitor achieved some progress in Iran from 1984 to 2002, but that the situation has deteriorated since 2002, when the monitor was removed.    \nThe following senators signed the letter to Secretary Clinton:  Carl Levin (D-Mich.), Joseph I. Lieberman (I-Conn.), Jeff Bingaman (D-N.M.), Patrick J. Leahy (D-Vt.), Kirsten E. Gillibrand (D-N.Y.), Mark Begich (D-Alaska), Sheldon Whitehouse (D-R.I.), Al Franken (D-Minn.), Claire McCaskill (D-Mo.), Barbara Boxer (D-Calif.), Robert P. Casey, Jr. (D-Penn.), Richard J. Durbin (D-Ill.), Ron Wyden (D-Ore.), Frank R. Lautenberg (D-N.J.), Mark Udall (D-Colo.), Dianne Feinstein (D-Calif.), Amy Klobuchar (D-Minn.), Jeff Merkley (D-Ore.), Benjamin L. Cardin (D-Md.), Robert Menendez (D-N.J.), Richard Blumenthal (D-Conn.), Bill Nelson (D-Fla.), Debbie Stabenow (D-Mich.), and Tom Udall (D-N.M).\nFollowing is the text of the letter:\nFebruary 15, 2011\nThe Honorable Hillary Rodham ClintonSecretary of StateDepartment of State2201 C Street NWWashington, DC 20520\nDear Madam Secretary:\nAs the United Nations (U.N.) Human Rights Council (HRC) prepares to begin its session on March 1st, we urge you to work at the HRC to establish an independent human rights monitor on Iran.  \nThe upcoming session of the HRC marks the sixth session since Iran’s June 2009 elections.  While Iran has a long history of human rights abuses, those disputed elections spawned one of the largest popular democracy movements of the 21st Century, and unleashed a subsequent campaign of brutal, systematic human rights violations by Iran’s government.  This government-sanctioned repression continues to this day, yet the HRC has failed to take any concrete measures to address the situation.  \nIn January 2011 alone, Iran executed at least 83 people, including individuals rounded up in post-election protests and charged with enmity against God.  Human rights defenders, lawyers, and pro-democracy activists continue to be targeted for repression and intimidation by the government.  \nState-sponsored persecution of religious minorities persists, including the sentencing last year of seven Baha’i leaders to ten years in prison.  And three American hikers languished in prison for over a year before being charged, and two remain detained to this day.  It is long past time for the HRC to take action to establish a human rights monitor on Iran.\nEstablishing an independent U.N. human rights monitor charged with monitoring and reporting on Iran’s human rights violations is an important effort to provide some protection for Iran’s human rights and democracy movement.  You will remember that from 1984 to 2002, an independent human rights monitor on Iran was in place, and some measurable progress was achieved on human rights over that time.  However, this mandate has not been renewed since 2002 and since then the situation in Iran has deteriorated.  \nIt is important that the United States work through multilateral institutions to ensure Iran upholds its international human rights obligations.  We commend the Administration’s efforts to engage the international community regarding human rights violations.  However, human rights violations by the Iranian government continue unabated.  The efforts of the HRC have yet to result in the extension of meaningful protections to the groups and persons being persecuted there.  \nThere is bipartisan support in Congress for the Administration’s commitment to advance human rights causes in Iran.  We believe it is essential that U.S. membership on the HRC be utilized this March to take an overdue step to address Iran’s human rights crisis by reestablishing an independent human rights monitor to observe and report on the grave situation in the country.  \nThank you for your consideration.\n####\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a735b778-06ac-4be0-b52b-b43abbad1936,\"Menendez: “Gaddafi Continues Pattern Of Terrorism”\n                    \n                            Response comes after Gaddafi Incites “Revolt” against the United States, Israel\n                    \n                      February 14, 2011\n                     Libyan Leader: \"\"All Arab states which have relations with Israel are cowardly regimes\"\"\nWASHINGTON – With Libyan leader Muammar Gaddafi inciting Arabs to revolt against Western countries and Israel, US Senator Robert Menendez, a member of the Senate Foreign Relations Committee, released the following statement. Gaddafi yesterday challenged Arabs to revolt against Western countries and said that “All Arab states which have relations with Israel are cowardly regimes.” In 2009, Menendez lead efforts to help keep Gaddafi out of New Jersey when he visited the United Nations General Assembly meeting due to his support for convicted terrorist bomber Abdel Baset al-Megrahi.\n“Gaddafi continues his pattern of terrorism by inciting violence against the United States and Israel. But his incitement to violence only further highlights his concern that the Libyan people may share the discontentment of the Egyptians and Tunisians. Gaddafi is clearly worried that Libyans may too choose a new way forward, embracing the values of personal and political freedom and equality of opportunity.”   \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a8bb13b1-62db-4b4f-ac1f-3eb46d9354ae,\"New Legislation Will Close Tax Loopholes For Drilling, Foreign Tax Schemes\n                    \n                            Step to Recoup More than $20 Billion for Taxpayers\n                    \n                      February 13, 2011\n                     WASHINGTON – On Valentine’s Day, U.S. Senator Robert Menendez (D-NJ) today delivered a message to big oil companies – “Your sweetheart tax deals are over.” Menendez, a member of the Senate Finance Committee, called for legislation to close tax loopholes sending billions of dollars to oil companies. \nMenendez estimates that closing these loopholes will amount to more than $20 billion over ten years for taxpayers. Menendez’s legislation comes on the heels of President Obama calling for the oil company loopholes to be closed – a call that is expected to be reflected in the president’s budget proposal tomorrow. \nThe legislation, co-sponsored by Senator Frank Lautenberg (D-NJ) among others, targets a series of loopholes related to drilling activities and revenues, as well as foreign tax schemes. Over the past decade, BP, Exxon, Chevron, Shell, and Conoco have combined profits of just under $1 trillion.  In 2010 alone, these companies made over $75 billion, and this includes the $17 billion BP has spent trying to clean up their spill in the Gulf of Mexico. \nSenator Bob Menendez said, \"\"This Valentine's Day, I have a clear message for big oil - your sweetheart deals are over. For too long oil companies have padded their profits at taxpayer expense. We're going to close these outrageous tax loopholes and get back to investing in the good-paying green jobs of the future.”\nMENENDEZ’S PLAN TO CLOSE TAX BREAKS FOR OIL COMPANIES\n•    Recoup royalties that oil companies avoided paying for oil and gas production on public lands•    Prevent oil companies from manipulating the rules on foreign taxes to avoid paying full corporate taxes in the U.S.•    End a number of tax deductions and relief afforded to the oil industry, such as the deductions for classifying oil production as manufacturing, for the depletion of oil and gas through drilling and for costs associated with preparing to drill.\nThe Close Big Oil Tax Loopholes Act is based upon provisions new efforts to stop subsidizing polluting industries. The bill contains important safeguards to allow refineries and oil companies with yearly revenues of less than $100 million to retain certain tax credits and deductions.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=446193d8-ba1a-4fe5-9504-26a4bcf91cea,\"Menendez: New Law Will Help Market Leaders Prevent Cyber Threats Before Being Attacked\n                    \n                            Bill Requires Feds to Plan for Cyberstrikes Against Agencies, Financial Markets, Oil Refineries\n                    \n                      February 10, 2011\n                     Menendez: “Cyber-threats are Not on the Horizon, They are Upon Us”\nWASHINGTON – With oil refineries reporting today that their computer systems were hacked multiple times over the past year – just days after NASDAQ officials admitted that their systems had also been breached – Menendez announces introduction of the Cybersecurity Enhancement Act in the Senate, a bill that aims to help financial markets, key industries, and government agencies proactively attack cyber threats rather than simply waiting to be attacked.\nUS Senator Robert Menendez today announced that he will introduce the Cybersecurity Enhancement Act, a bipartisan bill that passed the House last year, which will increase the capacity to identify and respond to cyber attacks – boosting security for markets and protecting investments. The legislation will help the agencies that fund cybersecurity research to cooperate in developing a long-term, proactive plan.\nBoth oil and NASDAQ officials confirmed this week that their computer systems were, not once, but repeatedly hacked by outsiders. Representatives of both admitted that “suspicious files” had been found on their computers after the security breaches.\nSenator Menendez said, “Cyber- threats are not on the horizon, they are upon us. Businesses and investors must trust that their investments are secure. We cannot allow security breaches to undermine our trust in the US economy. We must step forward and curb these attacks without delay.” \nTHE CYBERSECURITY ENHANCEMENT ACT•             Require the agencies that fund cybersecurity research to cooperate in developing a long-term, proactive R&D plan•             Improve the transfer of cybersecurity technologies to the marketplace•             Reauthorize National Science Foundation R&D programs to safeguard computer and network privacy and to develop cybersecurity degree programs at colleges •             Require the National Institute of Standards and Technology to develop and implement a public cybersecurity awareness and education program to encourage the more widespread adoption of best practices.  \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=74b9c3cc-838f-45fa-baa2-c899c5fdfa22,\"Menendez Reiterates Call for Immediate, Peaceful Transition in Egypt \n                    \n                            Menendez: “The West is not dictating the future of Egypt; the Egyptian people are demanding a different future, a democratic future”\n                    \n                      February 10, 2011\n                     WASHINGTON – With Egyptian President Mubarak announcing he will remain in office until the September elections, US Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, today reiterated his call for an immediate, peaceful transition in the Egyptian government:\n\n“The Egyptian people will be heard.  For generations, they have lived under Mubarak’s autocratic rule.  An interim authority comprised of the myriad voices in Egyptian society could guide political reform and constitutional reform, leading to free elections while ensuring political and economic stability during this period of transition, including the provision of assurances to the international community about Egypt’s commitment to upholding its international obligations. \n“Too many have fought, risked and – in many cases – gave their lives. The West is not dictating the future of Egypt; the Egyptian people are demanding a different future, a democratic future. Now, the President must listen to the people. Egyptians deserve to have the opportunity to pursue equality and opportunity.” \n\nDuring Mubarak’s speech, Senator Menendez met with Egyptian leaders in New Jersey and discussed next steps for the country and its people. Menendez also introduced a resolution in the Senate, adopted in January by unanimous consent, condemning the New Year’s Day attack on Egypt’s Coptic Christian community. This attack underscored the need for religious freedom and equality of treatment for all Egyptians. Click here for a PDF of the resolution: http://menendez.senate.gov/imo/media/doc/Coptic Church Res  - Final1.pdf.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ff980d09-2df3-4352-8532-8d738b4b5cf4,\"Menendez on Transition in Egypt: “The Egyptian People Have Been Heard”\n                    \n                             Praises Decision for New Leadership, New Direction in Egypt\n                    \n                      February 10, 2011\n                     WASHINGTON – Following reports that Egyptian President Mubarak has agreed to step down and turn over the functions of the government to the Armed Forces Supreme Council, US Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, released the following statement:\n\n“Today’s news sends a loud and clear message – the Egyptian people have finally been heard.  Generations of Egyptians have lived under Mubarak’s autocratic rule – but no longer.  An interim authority, representative of the myriad voices in Egyptian society, can now help guide political reform. Freedom and equality – so long desired by the Egyptian people - are within their grasp. After fighting, risking and – in many cases – giving their lives, Egyptians now have the opportunity to pursue those ideals.”\n\nSenator Menendez met with Egyptian leaders in New Jersey yesterday and discussed next steps for the country and its people. Menendez also introduced a resolution in the Senate, adopted in January by unanimous consent, condemning the New Year’s Day attack on Egypt’s Coptic Christian community. This attack underscored the need for religious freedom and equality of treatment for all Egyptians. Click here for a PDF of the resolution: http://menendez.senate.gov/imo/media/doc/Coptic Church Res  - Final1.pdf\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e48e4cb8-3dd4-476b-811a-f8792f023675,\"Menendez to Sec: Greater Efforts Needed to Protect Markets from Cyber Hackers\n                    \n                            Urges Coordinated Response to Security Breaches and a Crack-down on Hackers\n                    \n                      February 9, 2011\n                     Menendez: “Our Businesses and Families Must Trust that their Investments are Secure”\nWASHINGTON – Just days after representatives from NASDAQ OMX admitted that computer hackers had, not once, but repeatedly breached their computer systems, Senator Robert Menendez today called for new efforts to protect financial markets and peoples’ savings, pensions and retirements. \nIn a letter sent to Chairman of the Securities and Exchange Commission Mary Schapiro (FULL LETTER ATTACHED), Senator Menendez urged that the perpetrators be brought to justice and that there be a broader coordinated response to security breaches at American securities exchanges.  \n\nSenator Menendez said, “For our financial markets to work, our businesses and families must trust that their investments are secure. These breaches call that trust into question. The SEC and other government agencies need to step up and address these concerns without delay.” \n\nSpecifically, Senator Menendez called on the SEC to consider the following steps:• Coordinating with the Department of Justice, Department of Homeland Security, and state Attorneys General to conduct a prompt and thorough investigation of the breach in the network • Investigating the extent to which hacking can disrupt trading platforms, both at Nasdaq and other exchanges as well, and what steps can be taken to prevent that.  •Reviewing policies concerning when exchanges and other trading companies are required to publicly report information on security breaches, and what the effects of the timing of such revelations are on both criminal investigations and markets. \n### FULL LETTER BELOW ###\nDear Chairman Schapiro, \nI write to raise several important concerns about the breach in the network at Nasdaq that was reported this past weekend.  As you know, Nasdaq OMX Group has acknowledged that, over the course of the past year, hackers of unknown origin repeatedly tried to break into its network, specifically Directors Desk, a program that allows corporate board members and executives to exchange non-public information.  Tech-savvy hackers breaching American exchanges may threaten the savings, pensions, and retirements of middle class families across the country, and it shakes the foundation of our markets that are just beginning to recover.  This disturbing information raises several pressing questions that I request that the SEC follow up on in coordination with other government agencies and private companies that are key in our financial markets.  Please provide me with information about what steps are being taken in each of the following areas.  \n• The steps the SEC is considering taking in coordination with the Department of Justice, Department of Homeland Security, state Attorneys General, and other government agencies as appropriate to conduct a prompt and thorough investigation of the breach in the network at Nasdaq to find out who breached the network and bring them to justice.  There must be serious consequences for causing disruptions to financial markets through hacking and cyber-crime.  \n• Consider investigating the extent to which hacking can disrupt trading platforms, both at Nasdaq and other exchanges as well, and what steps can be taken to prevent that.  Although Nasdaq’s trading platform was reportedly not affected by this particular example of hacking, as a member of the Senate Banking, Housing, and Urban Affairs Committee, I have much broader concerns about the implications of this data security breach for market trading and future financial crises.  One of the lessons we have learned from past financial crises, including the economically devastating crisis of 2008 and the “flash crash” of last May, is that we should be prepared for the next financial crisis by having regulations and procedures in place for potential market disruptions, even if we do not know what the exact source of that disruption will be.  Security breaches by either hackers trying to gain private information for insider trading or terrorists trying to cause market disruptions is a potential source of future financial crises that we should prepare for.  •             Finally, consider reviewing what policies, if any, are in place concerning when exchanges and other trading companies are required to publicly report information on security breaches, and what the effects of the timing of such revelations are on both criminal investigations and markets.  The Wall Street Journal stated that Nasdaq, for example, decided to make the information about the security breach public only after the Wall Street Journal reported on it, despite the Department of Justice’s interest in the matter.\nThank you for your time, and I look forward to your response.\nCc:  Attorney General Eric HolderHomeland Security Secretary Janet Napolitano\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=af0d0456-a5d2-4a02-aa40-81b244352043,\"Menendez, Lautenberg Applaud Federal Disaster Declaration for New Jersey Counties Damaged by Massive December Snowstorm\n                    \n                            Senators issued letter to President Obama urging designation\n                    \n                      February 9, 2011\n                     WASHINGTON, D.C. – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today applauded President Obama for approving a federal disaster declaration related to the massive snow storm that hit large parts of the state on Dec. 26, 2010.  The declaration frees up emergency federal funding to reimburse state and local emergency management agencies and for recovery and rebuilding programs.  The declaration covers 13 counties that in some cases, received more than two and a half feet of snow: Bergen, Burlington, Cape May, Essex, Hudson, Mercer, Middlesex, Monmouth, Morris, Ocean, Passaic, Somerset and Union.  Additional designations may be made at a later date.  “We applaud President Obama for recognizing the extent of this devastating storm, the damage it left in New Jersey communities and the need to make these emergency resources available,” Senators Menendez and Lautenberg said in a joint statement.  “The federal support granted by this declaration will provide New Jerseyans with the tools they need to rebuild and mitigate against future disasters. With residents continuing to be affected by this crippling winter season, we remain committed to securing these critical federal resources for our state.”\nThe Senators had urged the president to approve the declaration request in a Dec. 31 letter.\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b2777485-63dc-443c-8242-b12da004bb11,\"New Fire Truck Coming to North Arlington' Bravest\n                    \n                             Senator Menendea Delivers $285,000 For North Arlington Fire Department\n                    \n                      February 9, 2011\n                     NJ Firefighters at 10 Stations to Receive More Than $1.1 Million\nNorth Arlington, NJ– North Arlington’s bravest will have new tools to protect our families and homes, including a new fire truck, thanks to resources secured by US Senator Robert Menendez (D-NJ) and area officials. Senator Menendez met with the firefighters, North Arlington’s Mayor Peter Massa and Fire Chief Robert “Bobby” Mahlbacher at North Arlington’s Fire Department to discuss their needs, including training, equipment, personal protective equipment, and support for stations and facilities. A total of more than $1.1 million in federal funding were awarded to 10 fire stations throughout New Jersey.\n\nSenator Robert Menendez (D-NJ) said: “New Jersey firefighters risk their lives to protect ours – the very least we can do is ensure that they are fully prepared and protected themselves. This investment will provide them with the equipment and training they need to continue effectively safeguarding North Arlington’s families and homes.”\nNorth Arlington’s Mayor Peter Massa said: “A new fire truck will not only be an asset to our Fire Department, it will enhance services, and above all, security for the fire personnel that risk their lives to keep North Arlington residents safe during an emergency. Federal funding helps us save local taxpayer dollars and assist us in utilizing our budget in other essential necessities.” \nRepresentative Rothman said: “I am extremely pleased that the North Arlington Fire Department was awarded $285,000 in federal funding to purchase a new fire truck through the Assistance to Firefighters Grant (AFG) program.  I have long been a supporter of this type of grant, which helps local municipalities to secure the proper emergency response vehicles. AFG allows local fire departments, including the one in North Arlington, to protect the households, families, and individuals that they serve while reducing the cost burden on local taxpayers.”\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d057fa35-3a49-4c8e-9dc9-c9a8e52db571,\"Menendez, Lautenberg Announce $315 K in Federal Funding for New Jersey Fire Departments\n                    \n                            Jersey City, Tinton Falls, Burlington Township Secure Funding\n                    \n                      February 9, 2011\n                     WASHINGTON, D.C. – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced three New Jersey fire departments received a combined $315,523 in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  These grants can be invested in equipment, personal protective equipment, training, health programs, and other support for stations and facilities. \n\n“Emergencies won’t wait for flush budget years – and neither can we,” said Menendez.  “All of us must step forward to make sure our communities have the personnel and equipment they need. These resources will help communities and towns across New Jersey – even in these tough economic situations – be safe.” “When the alarm sounds, New Jersey firefighters should know they have the best equipment and training to do their jobs safely and effectively,” said Lautenberg, Vice Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the AFG program. “This federal grant program makes a direct investment in New Jersey’s local emergency personnel who put their lives in danger to protect our families and neighborhoods.” \n\n The $315,523 from the AFG program will be distributed in New Jersey as follows: •    Jersey City - $178,080 to the Jersey City Department of Fire and Emergency Services to purchase equipment. •    Tinton Falls - $103,693 to the Tinton Falls Fire District #1 to purchase equipment.•    Burlington Township - $33,750 to the Burlington Township Fire District #1 to purchase equipment. The AFG grants are awarded to fire departments and EMS organizations to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies. For more information about the program, please visit: http://www.firegrantsupport.com/ \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4d4f44e1-806c-4fec-8ab3-42c517af4f61,\"Senator Menendez: Keeping Manufacturing Jobs in Jersey a Key to our Future\n                    \n                            Tours Local Shirt Factory, Discusses Job Creation with Owner and Workers\n                    \n                      February 9, 2011\n                     Newark, NJ – Keeping and creating manufacturing jobs in New Jersey is a key to America’s future, said US Senator Robert Menendez (D-NJ) during a tour today of a local family-owned shirt manufacturing company. Menendez, a member of the Senate Finance Committee, visited Gambert shirts in Newark and discussed efforts to keep good-paying manufacturing jobs in America.\nSenator Menendez has been working to fix broken Washington policies that encourage US companies to produce goods overseas – and send jobs there as well.  Menendez plans to introduce  legislation next week that will help to level the playing field for American manufacturing workers by reducing duties paid on imported fabrics so that companies can afford to continue to manufacturing shirts in the Unites States.  Currently may foreign manufacturers enjoy duty free treatment for imports of finished dress shirts, while U.S. dress shirt manufacturers, like Gambert, pay high tariffs on shirting fabrics.\n\nSenator Menendez said, “American workers are the best in the world – especially here in New Jersey. But they’re fighting a losing battle on an uneven playing field. That’s wrong, and it’s time we fix it.  By leveling the playing field we can create and retain jobs right here in Newark, not overseas.”\n\nGambert Shirts has been locally-owned and operated by the Mel Gambert family for over 75 years. They create “shirts of virtually every conceivable style, fabric, and collar/cuff design; from classic business attire to casual weekend wear.” To learn more about Gambert Shirts, please visit http://www.gambertshirts.com.\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a9cbceb3-9306-4190-afeb-860a6f773f2d,\"Senator Menendez Statement on the Shooting of Officer Rachel Morgan\n                    \n                      February 8, 2011\n                     NEW JERSEY - US Senator Robert Menendez released the following statement on the shooting of Rachel Morgan, who was shot five times in the line of duty Sunday night:\n\n\"\"Our thoughts and prayers are with Paramus Police Officer Rachel Morgan who remains in critical condition after being shot five times in a senseless act of gun violence. Officer Morgan and all of our police officers, firefighters, and first responders put their lives on the line every day to keep us safe. In these difficult economic times, it is our duty as a community to provide them with our full support. I join everyone in New Jersey in offering the best wishes and prayers of a grateful community to Officer Morgan for a full and speedy recovery.\"\"\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=47d1167a-04d0-4664-9fee-ddd19e4e4162,\"Report Confirms UK Ministers \"\"Wanted Lockerbie Bomber Release\"\"\n                    \n                      February 7, 2011\n                     WASHINGTON – A new report released today details how the government of the United Kingdom actively supported the release of the convicted Lockerbie bomber from a Scottish prison in 2009. The new report, released today by Sir Gus O'Donnell, the UK’s most senior civil servant, found \"\"underlying desire\"\" to see the convicted terrorist Al-Megrahi released. Recent press reports have also shown that the Scottish government traded Al-Megrahi’s release for protection from a series of lawsuits. \nThe report supports the conclusions of a recent Senate investigation into the matter spearheaded by U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, and joined by Senators Frank Lautenberg (D-NJ), Kirsten Gillibrand (D-NY) and Charles Schumer (D-NY). \n\nSenator Menendez said: “The UK didn’t just turn a blind eye to Al-Megrahi’s release – they cut deals that set the terrorist free. The UK and Scottish governments’ repeated denials, even when confronted by specific and compelling evidence, get more ludicrous by the day. It is time that these governments launch independent investigations into the matter and put the wheels in motion to return Al-Megrahi to prison.”\nSenator Lautenberg said, “More than a year after his release, Al-Megrahi remains alive while the authorities who set him free continue to dodge responsibility. The latest maneuver comes from the UK's internal report that acknowledges the government's desire to see a mass murderer released, yet tries to shift blame.  The denials continue to ring hallow.  The families have suffered long enough and it's time to acknowledge the truth: justice was traded for commercial interests.”\nSenator Schumer said, “While this report claims that the British government didn’t place pressure on Scottish authorities to release this terrorist, its strains credulity to expect anyone to believe that the position of the British government wasn’t well known by those who granted Al-Megrahi his so-called compassionate release. This report confirms what many of us have long suspected: the British government and BP wanted Al-Megrahi released so that an oil deal being negotiated with Libya could go forward.”\n\nSenator Gillibrand said, “The Lockerbie scandal continues to undermine our ability to fight terrorism around the world. Today’s report is deeply troubling – not just for the families of the Lockerbie victims, but for all Americans and all nations of the world who are committed to bringing terrorists to justice. Economic and trade interests should never take precedence over matters of justice. If we’re ever going to win the fight against international terrorism, the rule of law must hold strong.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=59a0df9b-2eda-452c-90de-8b949e4e151d,\"NJ & NY Senators React to New Lockerbie Report\n                    \n                            Sen. Menendez: “The UK didn’t just turn a blind eye to Al-Megrahi’s release – they cut deals that set the terrorist free.”\n                    \n                      February 7, 2011\n                     Report Confirms UK ministers “Wanted Lockerbie Bomber Released”\nWASHINGTON – A new report released today details how the government of the United Kingdom actively supported the release of the convicted Lockerbie bomber from a Scottish prison in 2009. The new report, released today by Sir Gus O'Donnell, the UK’s most senior civil servant, found \"\"underlying desire\"\" to see the convicted terrorist Al-Megrahi released. Recent press reports have also shown that the Scottish government traded Al-Megrahi’s release for protection from a series of lawsuits. \nThe report supports the conclusions of a recent Senate investigation into the matter spearheaded by U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, and joined by Senators Frank Lautenberg (D-NJ), Kirsten Gillibrand (D-NY) and Charles Schumer (D-NY). \n\nSenator Menendez said: “The UK didn’t just turn a blind eye to Al-Megrahi’s release – they cut deals that set the terrorist free. The UK and Scottish governments’ repeated denials, even when confronted by specific and compelling evidence, get more ludicrous by the day. It is time that these governments launch independent investigations into the matter and put the wheels in motion to return Al-Megrahi to prison.”\nSenator Lautenberg said, “More than a year after his release, Al-Megrahi remains alive while the authorities who set him free continue to dodge responsibility. The latest maneuver comes from the UK's internal report that acknowledges the government's desire to see a mass murderer released, yet tries to shift blame.  The denials continue to ring hallow.  The families have suffered long enough and it's time to acknowledge the truth: justice was traded for commercial interests.”\nSenator Schumer said, “While this report claims that the British government didn’t place pressure on Scottish authorities to release this terrorist, its strains credulity to expect anyone to believe that the position of the British government wasn’t well known by those who granted Al-Megrahi his so-called compassionate release. This report confirms what many of us have long suspected: the British government and BP wanted Al-Megrahi released so that an oil deal being negotiated with Libya could go forward.”\nSenator Gillibrand said, “The Lockerbie scandal continues to undermine our ability to fight terrorism around the world. Today’s report is deeply troubling – not just for the families of the Lockerbie victims, but for all Americans and all nations of the world who are committed to bringing terrorists to justice. Economic and trade interests should never take precedence over matters of justice. If we’re ever going to win the fight against international terrorism, the rule of law must hold strong.”\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=82f93e5a-8840-41d2-b8ec-78f30b5203b1,\"Sen. Menendez, Rep. Pascrell, Sens. Harkin and Enzi Urge U.S. Department of Health and Human Services to Implement Provisions of the ConTACT Act\n                    \n                            Lawmakers push for protections against sports-related concussions for student-athletes\n                    \n                      February 4, 2011\n                     WASHINGTON – In a continuing commitment to protect America’s student-athletes from the dangers of sports-related concussions, U.S. Rep. Bill Pascrell, Jr. (D-NJ-8), U.S. Sens. Robert Menendez (D-NJ), Tom Harkin (D-IA) and Michael B. Enzi (R-WY) urged U.S. Department of Health and Human Services Secretary Kathleen Sebelius to implement provisions of the Concussion Treatment and Care Tools (ConTACT) Act. \nIn a letter to Secretary Sebelius, the four lawmakers requested the Secretary to begin developing national guidelines for the management of sports-related concussions and to help facilitate states developing their own protocols according to those guidelines. These provisions were included in the ConTACT ACT, which passed the U.S. House of Representatives on Sept. 30 with Rep. Pascrell as its primary sponsor. Senator Menendez was the primary sponsor of the legislation in the U.S. Senate.\n\n“In recent years, there has been a much greater degree of public awareness about the dangers of sports related concussions. But awareness isn’t enough. That’s why we are calling upon Secretary Sebelius to take action,” said Pascrell, a House Ways and Means Committee member who founded and co-chairs the Congressional Brain Injury Task Force. “We want federal standards for parents, coaches, athletic trainers, doctors – anyone who may be entrusted with the care of a young athlete – to know how to prevent and respond to concussions, and to know when it’s safe for athletes who have sustained concussions to return to the ball field. Some states have taken the initiative to provide some protections, but providing federal standards will give these protections to all student-athletes throughout the nation.”\n“If a pro football player shows concussion symptoms during the Super Bowl this weekend, he will have access to the best training staffs, team doctors and top-notch diagnostic equipment to protect his health.  Meanwhile, our sons and daughters who play school sports are just as susceptible to concussions but have only a fraction of the protection,” said Sen. Menendez. “Our children should be able to focus on achieving their goals on the field without having to worry about the effects of a concussion off the field. We need to make sure that the most advanced strategies are being implemented for our high school and middle school athletes.”\n“This Super Bowl Sunday, countless young athletes will dream of someday playing in the big game themselves.  We can help keep those dreams – and the rest of their dreams for the future – alive by better protecting them against sports-related concussions,” said Harkin, Chairman of the Senate Health, Education, Labor and Pensions Committee.  “Youth sports are a great way to promote physical activity and build leadership skills, but we owe it to our kids to keep them safe while they play.  Developing federal concussion management guidelines for coaches, parents, trainers, and fellow students will go a long way towards preventing needless injuries and deaths among our student athletes.”\n\nThe text of the letter to Secretary Sebelius follows:\nFebruary 3, 2011\nThe Honorable Kathleen SebeliusSecretaryDepartment of Health and Human Services200 Independence Avenue SWWashington, DC 20201\nDear Secretary Sebelius,\nWe are writing to share our concern with the growing number of concussions in school-aged children and to support the implementation of the Concussion Treatment and Care Tools Act (ConTACT Act), H.R. 1347/S. 2840, which passed the House of Representatives unanimously on September 30th, 2010.  \nSince the passage of the Traumatic Brain Injury Act of 1996, the Centers for Disease Control and Prevention (CDC) has studied brain injury and has initiated various educational initiatives such as the Heads Up program to address concussions in school sports.  Unfortunately, recent studies show that the problem of concussions in youth sports is only increasing and we agree that we must take action to reduce the needless injuries and deaths that student athletes face today. \nWe appreciate the support and technical assistance provided by the Department of Health and Human Services during consideration the ConTACT Act in the 111th Congress.  We are also glad to know that the Department is supportive of additional action to protect our children and we support the implementation of these initiatives to reduce the risks inherent in sports for school-aged children.  \nAs you may be aware, the first, most time-sensitive action item in the ConTACT Act would be to develop concussion management guidelines for youth and disseminate them to school administrators, coaches, parents, and students, as well as health professionals who treat the affected students. As stated in the ConTACT Act, we believe a conference of medical, athletic, and educational stakeholders would be an ideal first step in the development of the guidelines. In regard to the second part of the bill, it is important that CDC encourage state health agencies to support collaboration amongst youth sports associations, brain injury associations, and athletic trainer associations to help implement their own concussion policies informed by the federal guidelines.  In doing so, it is our hope that students will be better protected both in school sports, and other after-school athletic activities. \nIn order to facilitate congressional oversight of this important issue, we would request that you identify what actions you plan to take to implement the provisions relating to concussion management guidelines and collaboration among all of the interested stakeholders.  As part of your response, please also include a time line identifying when you plan to take specific action.\nThank you for your attention to this important matter.  We look forward to receiving your response. \nSincerely,\nBILL PASCRELL                                   ROBERT MENENDEZUnited States Representative               United States Senator   \nTOM HARKIN                                         MICHAEL B. ENZIUnited States Senator                           United States Senator\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d7797226-0f0a-4cc1-bc1d-5fb79c2c8239,\"Senators Urge Administration to Let the Solar Decathlon Take Place on the National Mall\n                    \n                      February 2, 2011\n                     WASHINGTON, DC – Today, a group of Senators, led by Senator Robert Menendez (D-NJ), sent a letter to Secretary of the Interior Salazar and Secretary of Energy Chu urging them to reconsider the federal government’s decision to deny permission for the solar decathlon to be held at the National Mall this year. The widely attended event, brings together top teams of college students to showcase home models run on solar power and has traditionally been held on the Mall, but will no longer be granted the space because of concerns about the physical impact on the Mall. In their letter to the Secretaries, the Senators emphasized the suitability of the location to hold this event and showcase innovative energy efficiency projects in the nation’s capital. The group letter complements a similar letter that Senator Menendez sent to the Secretaries last week when his office was first informed of the federal government’s decision: http://menendez.senate.gov/newsroom/press/release/?id=fa1c6f19-9cde-45c8-967e-fac0b416d654\n\n“The National Mall is the only sensible venue to host the Solar Decathlon.” wrote the Senators. “The first four wildly successful events were held on the Mall from 2002-2009 and the event grew in popularity each year. As a tourist attraction, it has provided the perfect venue for thousands to learn about solar energy and energy efficiency. And as a central pillar in our quest for clean energy, solar energy deserves a venue that sits adjacent to our country’s legislative leaders.”\n\nThe following Senators signed the letter: US Senators John Kerry (D-MA), Kirsten E. Gillibrand (D-NY), Bernie Sanders (D-VT), Kay Hagan (D-NH), Patrick Leahy (D-VT), Frank R. Lautenberg (D-NJ), Dan Inouye (D-HI), Sherrod Brown (D-OH), Bill Nelson (D-FL), Daniel Akaka (D-HI), and Barbara Boxer (D-CA).\nPDF of the letter: http://menendez.senate.gov/imo/media/doc/2011.02.02 To Chu and Salazar-Keep Solar Decathlon on the Mall Group Letter.pdf\nFull text of the letter:\nDear Secretary Salazar and Secretary Chu:\nIt has come to our attention that the Department of Energy's Solar Decathlon will not be held on the National Mall in 2011 or any future year.  We are very concerned by this sudden change in location since it is the key venue to educate Congress and the public about solar energy. We ask that you reconsider your decision so solar energy can take its rightful place on the nation’s center stage.\nThe National Mall is the only sensible venue to host the Solar Decathlon. The first four wildly successful events were held on the Mall from 2002-2009 and the event grew in popularity each year.  As a tourist attraction, it has provided the perfect venue for thousands to learn about solar energy and energy efficiency.  And as a central pillar in our quest for clean energy, solar energy deserves a venue that sits adjacent to our country’s legislative leaders.\nLast week, in his State of the Union Address, President Obama called upon our nation to reach lofty clean energy goals.  To move the Solar Decathlon away from the Mall would be sending a mixed signal to the very students who are doing their part to make this lofty goal a reality. \nThe National Mall is a national treasure, not because of its pristine beauty, but because it serves as a focal point for the nation.  The Mall is where Martin Luther King Jr. captured the nation’s attention with his “I Have a Dream” speech, where we celebrated our nation’s bicentennial, where the Million Man March took place, where the AIDS quilt was displayed, and where we recently celebrated President Obama’s historic inauguration.  There is no doubt that events like these caused physical damage to the Mall, but their historic, cultural, and political value far outweighed the physical toll they took on the grounds. \nThe same holds true for the Solar Decathlon.  The ability to highlight the role solar energy can play in creating jobs, preserving our environment, and reducing our dependence on foreign energy far outweighs any physical damage the event might cause to the Mall.  After all, the Mall is not a nature preserve; it is a place for people.\nWe respectfully request that you reconsider this sudden change and allow the Solar Decathlon to remain on the National Mall. The Solar Decathlon has proven to be a successful program by providing educational opportunities to the students, public, and Congress as well as providing workforce development opportunities for the students, and the National Mall is the prime location to offer these opportunities.\nThank you for your consideration and for your continued support of the solar industry.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3acd851b-c81c-4859-9b85-109080e1ce60,\"Menendez, Lautenberg Announce Nearly $770K in Federal Funding for New Jersey Fire Departments\n                    \n                            Garfield Secures Funding for New Ambulance\n                    \n                      February 2, 2011\n                     WASHINGTON, D.C. – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced nine New Jersey fire departments and the Garfield Volunteer Ambulance Corp received a total of $768,798 in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  These grants can be invested in vehicle acquisition, training, equipment, personal protective equipment, health programs, and other support for stations and facilities. \n\n“New Jersey firefighters risk their lives to protect ours – the very least we can do is ensure that they are fully prepared and protected themselves,” said Menendez.  “This investment will provide them with the equipment and training they need to continue effectively safeguarding our families and homes.”\n“Firefighters put their lives in danger every day to protect us and keep our families and communities safe,” Lautenberg said.  “This federal grant program makes a direct investment in New Jersey’s local emergency personnel so that our first responders have the best equipment and training to do their job.  With a new ambulance in Garfield, the volunteer ambulance corps will be even better prepared to serve the community quickly and with the newest equipment.”   \n\nThe $768,798 from the AFG program will be distributed in New Jersey as follows: •    Garfield - $125,643 to the Garfield Volunteer Ambulance Corp to purchase a new ambulance.•    Perth Amboy - $198,450 to the Perth Amboy Fire Department to purchase Self Contained Breathing Apparatuses.•    Toms River - $80,256 to the Toms River Board of Fire Commissioners District #2 for operations and safety.•    Wharton - $55,813 to the Wharton Fire Department for operations and safety.•    Marmora (Upper Township) - $41,800 to the Marmora Volunteer Fire Company for operations and safety.•    Totowa - $87,566 to the Totowa Fire Department for operations and safety.•    Landisville - $29,925 to the Landisville Volunteer Fire Company Inc. for operations and safety.•    Holmdel - $20,425 to the Holmdel Fire Company No. 1 for operations and safety.•    Hackensack - $66,600 to the Hackensack Fire Department for operations and safety.•    Asbury Park - $62,320 to the Asbury Park Fire Department for operations and safety. The AFG grants are awarded to fire departments and EMS organizations to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies. For more information about the program, please visit: http://www.firegrantsupport.com/\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7728c2b1-f04e-43db-8ea9-568846b5e3cf,\"Menendez Reintroduces Legislation to Close Big Oil's Tax Loopholes\n                    \n                      February 2, 2011\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today reintroduced his Close Big Oil Tax Loopholes Act, legislation to close a number of corporate tax breaks that allow oil companies to avoid paying billions of dollars in taxes. This comes on the heels of President Obama calling in his State of the Union address for the oil company loopholes to be closed – a call that is expected to be reflected in the president’s forthcoming budget proposal.\nThe legislation, co-sponsored by Senators Jeff Merkley (D-OR), Sheldon Whitehouse (D-RI), Frank Lautenberg (D-NJ), Jack Reed (D-RI), Barbara Boxer (D-CA),  Bill Nelson (D-FL) and Patrick Leahy (D-VT), targets a series of loopholes related to drilling activities and revenues, as well as  foreign tax schemes. Menendez estimates that closing these loopholes will amount to more than $20 billion over ten years for the taxpayers.\n\nSenator Menendez said: “It’s incredible that some of the richest corporations in the history of the world are allowed to shortchange the American taxpayer. Middle class families see the price at the pump rise and wonder why the federal government is heaping favors on oil companies. Lavishing these giant corporations with incentives they don’t need simply deepens our deficit and our dependence on dirty fossil fuels. Our focus should instead be on 21st Century clean energy that powers a jobs boom and cuts down energy costs for middle-class families.”\nSenator Merkley said: “We currently spend billions of dollars in taxpayer money subsidizing oil and gas companies even as they reap record profits.  We should be investing instead in creating jobs here at home, encouraging development of clean energy technology, and ending our dependence on foreign oil.”\nSenator Whitehouse said: \"\"Subsidizing some of the biggest income earning corporations in America is the definition of government waste. We cannot stand by and allow the tax dollars of hard-working Rhode Islanders to be handed over to wealthy big oil companies.\"\"\nSenator Lautenberg said: “This bill will close tax loopholes that oil companies use to dodge their financial responsibilities to our country and it will help ensure that Big Oil pays its fair share. There is no reason why the biggest and most profitable oil companies should have their own set of special tax breaks while hardworking Americans struggle every day to fuel their cars and heat their homes.  Closing loopholes for Big Oil will help reduce the deficit and move our country towards a clean energy future.”  \nSenator Nelson said: “I think the oil companies could use a taste of their own medicine. Maybe they’ll know what consumers feel like every time they pull up to the pump.”\n\nAmong its provisions, the legislation would accomplish the following:\n•    Recoup royalties that oil companies avoided paying for oil and gas production on public lands•    Prevent oil companies from manipulating the rules on foreign taxes to avoid paying full corporate taxes in the U.S.•    End a number of tax deductions and relief afforded to the oil industry, such as the deductions for classifying oil production as manufacturing, for the depletion of oil and gas through drilling and for costs associated with preparing to drill.\n Over the past decade, BP, Exxon, Chevron, Shell, and Conoco have combined profits of just under $1 trillion.  In 2010 alone, these companies made over $75 billion, and this includes the $17 billion BP has spent trying to clean up their spill in the Gulf of Mexico.  Rising prices at the pump will mean even greater profits for 2011 because production costs remain flat.  \nEnding these tax breaks for Big Oil will have no effect on oil production and no effect on gas prices, because the price of oil is plenty high to incentivize drilling.  Ending these tax breaks will simply mean that taxpayers will stop padding the already enormous profits of Big Oil.    \nThe Close Big Oil Tax Loopholes Act is based upon provisions in President Obama’s Budget in which he signaled the need to stop subsidizing polluting industries. The bill does contain important safeguards to allow refineries and oil companies with yearly revenues of less than $100 million to retain certain tax credits and deductions.Background on legislation:\n•    Recoup Royalty Revenue Lost to Contract Loopholes: This proposal would create an excise tax on oil and gas produced on federal lands on the Outer Continental Shelf (OCS) in order to pay back American taxpayers for contract loopholes whereby oil and gas companies avoided paying royalties on certain oil and gas produced in the Gulf of Mexico.  This would save an estimated $5.3 billion.\n•    End Oil Companies Abuse of Foreign Tax Credits: Would require that a dual capacity taxpayer establish that the foreign country generally impose an income tax to be able to claim a foreign levy as a creditable tax, saving $8.2 billion.\n•    Repeal Expensing of Intangible Drilling Costs: Would repeal the deduction for IDCs and require such costs be capitalized as a cost of the well or tangible property and recovered through depreciation or depletion, as applicable.  Oil companies with yearly revenues of less than $100 million would retain the use of this deduction. In the President’s Budget this provision saved $10.9 billion, but the grandfathering of smaller companies will lower that score.\n•    Repeal Percentage Depletion for Oil and Gas Wells: This proposal would repeal percentage depletion for oil and gas properties. Oil companies with yearly revenues of less than $100 million would retain the use of this deduction. In the President’s Budget this provision saved $9.6 billion, but the grandfathering of smaller companies will lower that score.\n•    Repeal Deduction for Tertiary Injectants: The proposal would repeal the current deduction and instead allow oil companies to capitalize and depreciate or deplete costs for tertiary injectants.  For example, supply costs would be capitalized and deducted when consumed or as part of cost of goods sold. Oil companies with yearly revenues of less than $100 million would retain the use of this deduction.  In the President’s Budget this provision saved $57 million, but the grandfathering of smaller companies will lower that score.\n•    Repeal Exemption of Passive Loss Limitations for Interests in Oil and Gas Properties:  The proposal would end the exemption from passive loss rules for oil companies so they must operate under the same tax rules as other corporations.  Oil companies with yearly revenues of less than $100 million would retain the use of this exemption. In the President’s Budget this provision saved $217 million, but the grandfathering of smaller companies will lower that score.\n•    Repeal Domestic Manufacturing Deduction for Oil and Gas Production: This proposal would repeal the ability of oil and gas companies to claim oil and gas production as manufacturing, thus making the production activities ineligible for the domestic production activities deduction.  Oil companies with yearly revenues of less than $100 million would retain the use of this deduction.  The deduction would also be retained for oil refining and natural gas processing. This exact proposal has not been scored, but could easily save billions.\n•    Match Geological and Geophysical Amortization Periods for All Oil and Gas Companies: This proposal would create more uniform amortization rules for geological and geophysical costs.  G&G costs are costs incurred in obtaining and accumulating data that serves as the basis for acquiring and retaining oil and gas properties.  Oil companies with yearly revenues of less than $100 million could amortize geological and geophysical costs over two years.  All others would amortize these costs over 7 years. In the President’s Budget this provision saved approximately $1 billion, but the grandfathering of smaller companies will lower that score.\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bbeb5c88-4f84-4f65-aacb-56d1d9ebe1d2,\"Menendez Calls For Mubarak to Step Down\n                    \n                      February 1, 2011\n                     WASHINGTON – With news reporting hundreds of thousands protesting in Tahrir Square in Cairo today, US Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, released the following statement:\n\n“The Egyptian people have made their voices heard. For 30 years, they have lived under Mubarak’s autocratic rule, and they are frustrated by economic inequities and the lack of political progress.  With hundreds of thousands protesting in Cairo, President Mubarak can write his place in history by recognizing that the demand for democratic reform has the broad support of Egyptian society and standing with the Egyptian people. He should step aside and endorse the creation of an interim government that does not include himself or his family, but which does include all segments of society and, most importantly, that ensures equality and opportunity for all Egyptians to participate in national elections.  An orderly transition to democracy is in the interest of the Egyptian people and the United States must stand ready to assist in this process.”\n\nLast week, Menendez introduced a resolution in the Senate, adopted yesterday by unanimous consent, condemning the New Year’s Day attack on Egypt’s Coptic Christian community. This attack underscored the need for religious freedom and equality of treatment for all Egyptians. Click here for a PDF of the resolution: http://menendez.senate.gov/imo/media/doc/Coptic Church Res  - Final1.pdf\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=20df5df9-8d25-4e36-9309-d6dacabe7f16,\"Senate Democrats Urge Top Republicans on House Spending Panels to Reject Paul's Call to End Foreign Aid to Israel\n                    \n                            GOP Sen. Rand Paul Recently Announced Plan to End Aid to Israel; Proposal Breaks With Decades of Bipartisan Consensus on Israel Aid.  In Letter to House Appropriations Chair Rogers and Budget Chair Ryan, Senators Seek Reassurance That Aid to Israel Will Not Be Threatened \n                    \n                      February 1, 2011\n                     WASHINGTON, DC—Today, U.S. Senators Debbie Stabenow (D-MI), Bill Nelson (D-FL), Bob Menendez (D-NJ), Ben Cardin (D-MD), Sherrod Brown (D-OH), Robert Casey (D-PA) and Sheldon Whitehouse (D-RI) called on the top Republicans on the House Appropriations and Budget Committees to reject Sen. Rand Paul's call to eliminate foreign aid to Israel. In an interview last week with CNN, Paul announced his support for slashing foreign aid across the board, including a zeroing out of aid to Israel. \nIn a letter to Rep. Hal Rogers, the Chairman of the House Appropriations Committee, and Rep. Paul Ryan, Chairman of the House Budget Committee, the Democratic senators criticized Paul's comments and sought reassurance that aid to Israel would not be threatened.\n\n\"\"These remarks are alarming and aim to weaken the decades-long bipartisan consensus on U.S. support for Israel,\"\" the senators wrote.\n“At a time when U.S. foreign aid is being utilized to strengthen our partnerships around the world, particularly in the Middle East where our relationships are more important than ever, we urge you to commit to maintain full foreign aid funding to Israel,” the senators continued.\nSenator Stabenow said, “We cannot turn our backs on our strongest ally in the Middle East. Our own national security and stability in the region is dependent on Israel's security, so we cannot abandon them.”\nSenator Nelson said, “Now, more than ever, Israel needs our steadfast support.  This is not the time to discuss ending our assistance.\"\"\nSenator Menendez said, “Cutting off our steadfast partner and close ally in the Middle East is a recipe for a national security disaster. The recent developments in the Middle East have added uncertainty to the region’s future, which is closely tied to our security here at home. This is why we need to reaffirm our commitment to Israel, not throw it into question.”\nSenator Cardin, a member of the Senate Foreign Relations Committee, said, \"\"There is no doubt that we need to bring our federal budget into better balance.  But to short-change our national security and one of America's closest democratic allies for the sake of a balance sheet is unwise and misguided.\"\"\nSenator Brown said, \"\"Ensuring a strong and secure Israel is about more than just maintaining stability in the region. It's also about our nation's commitment to the men and women of the region who seek peace, and a better life for their children.\"\" He continued, \"\"During my most recent visit to Israel, I was again impressed with the long struggle for peace and security its people have endured.  With political unrest across the Middle East, cutting aid to Israel could jeopardize the fragile peace we have worked so hard to maintain.\"\"\nSenator Casey said, \"\"Especially given the rising influence of Hezbollah in Lebanon and the continued saber-rattling from Iran, it should be unthinkable to cut aid for Israel.\"\" He continued, \"\"U.S. aid to Israel is an investment in one of our strongest allies and in our own security.\"\"\nSenator Whitehouse said, \"\"Israel is a strong ally and a bastion of democracy in the Middle East.  Ending US support for Israel would be irresponsible, and damaging to our national interest, and I strongly oppose any effort to do so.\"\"\n\nThe full text of the senators' letter to Rogers and Ryan appears below.\nFebruary 1, 2011\nDear Chairman Rogers and Chairman Ryan:\nWe write in light of recent statements that demonstrate the intent of certain Senators to eliminate foreign aid funding to the nation of Israel. Recently, Republican Senator Rand Paul suggested that the United States should “halt all foreign aid including its financial aid to Israel.” These remarks are alarming and aim to weaken the decades-long bipartisan consensus on U.S. support for Israel. Both Republicans and Democrats are committed to reining in the federal deficit, but assistance to Israel is not a matter of “pork barrel spending” - rather U.S. foreign aid to Israel demonstrates America’s rock-solid commitment to ensuring Israel’s right to exist.\nIsrael is the only democratic nation in the Middle East and one of our most trusted allies. A stable and secure Israel is strongly in our national security interest and has been a cornerstone of our foreign policy for over half-a-century. Using Congress’s bipartisan commitment to reining in government spending as a reason to abandon Israel is unacceptable and should be immediately rejected. \nAt a time when U.S. foreign aid is being utilized to strengthen our partnerships around the world, particularly in the Middle East where our relationships are more important than ever, we urge you to commit to maintain full foreign aid funding to Israel.  As members of the United States Senate, we will work aggressively to prevent any attempts to abandon one of our most trusted allies. We look forward to your response.\nSincerely,\nSenator StabenowSenator NelsonSenator Menendez Senator CardinSenator BrownSenator CaseySenator Whitehouse\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bd32f367-ffca-4b2d-b6b8-0d8739fff9c1,\"With Work on Aviation Bill Starting Again, Another Chance to Enact Menendez's Airline Fee Legislation\n                    \n                            “Clear Airfares Act” provisions passed the Senate last year and are again included in FAA reauthorization bill\n                    \n                      February 1, 2011\n                     WASHINGTON – The Federal Aviation Administration reauthorization bill, which the Senate begins considering today, will again contain provisions from Senator Robert Menendez’s (D-NJ) Clear Airfares Act. The language, which passed the Senate last year as part of the same bill, would give consumers a full breakdown of airline fees that they may have to pay before they purchase a ticket online. Menendez says that enacting his bill into law will finally give consumers protection against the unwelcome surprise of additional fees they are forced to pay on top of their airfare once they get to the airport.\n\n“Families should have a full understanding of what it will cost them not just to get to the airport, but to get to their destination,” said Menendez. “Surprise fees are especially cruel and harmful in these tough times, when families are watching every penny of their hard-earned money. The resumption of work on this bill gives us another prime opportunity to finally deliver some protection against maddening hidden fees.”\n\nThe bill before the Senate includes a slightly-modified version of the original Clear Airfares Act, which would provide consumers searching for airline tickets with a full list of airfares and potential additional fees before they pay. This provision aims to bring transparency to the price of flying through a full, clear and upfront breakdown of airfares and fees. \nBefore a consumer purchases a ticket on the Internet, the legislation would require airlines and third-party websites to give consumers a complete and understandable listing of his or her particular airfare, as well as any other possible fees that might be incurred on the flight (such as baggage, seat assignments, etc.). Currently, consumers must click to peripheral web pages and wade through often confusing text to understand whether or not their airfare includes surcharges and what other taxes and fees may have been added.\nLast year, the FAA reauthorization bill stalled in conference committee after the Senate and House of Representatives passed separate versions.\nSenator Menendez will also be working with stakeholders to ensure that travel agents and online ticket sellers have the fee information they need to help their customers make an informed choice.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e44528fa-a199-4058-87b0-ff8ab4ed21b0,\"Menendez, Lautenberg Announce $22 Million in Federal Homeless Assistance Grants for New Jersey\n                    \n                      January 28, 2011\n                     WASHINGTON, D.C. – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced New Jersey will receive $22,373,892 in federal grant funding from the U.S. Department of Housing and Urban Development (HUD) to assist homeless men and women in New Jersey access housing opportunities. The funds were awarded through various HUD Continuum of Care Homeless Assistance competitive programs.\n\n“In these difficult economic times, we have to help ensure those who are struggling the most have a place to call home,” said Senator Menendez, Chairman of the Banking Subcommittee on Housing, Transportation and Community Development. “This investment will help homeless families and individuals gain stability through community-based support services to start on a path to a better future.”\n“This federal funding will provide homeless men and women in New Jersey with the assistance and services they need to gain access to housing and improve their lives,” stated Senator Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development, which funds these programs.  “With this funding, we can offer new opportunities to some of the state’s most hard pressed families and put more New Jerseyans in decent homes.”\n\nThe Continuum of Care Homeless Assistance competitive programs provide funding for a range of assistance to homeless persons, including transitional housing, permanent housing and other supportive services.  The Continuum programs included in this grant announcement were awarded through the Supportive Housing Program (SHP) and the Shelter Plus Care Program (S+C), designed to develop housing and services that allow homeless men and women to live as independently as possible. Other Continuum programs include the Section 8 Moderate Rehabilitation for SRO Dwellings for Homeless Individuals.\nA total of 66 grants were awarded to agencies across the state, some receiving multiple awards.  The $22,373,892 in federal grants were awarded to the following organizations in New Jersey:\n\nGrantee\n\n\nProject   Name\n\n\nAmount\n\n\nLocation\n\n\n180   Turning Lives Around, Inc.\n\n\nFamilies   in Transition Expansion\n\n\n$142,530\n\n\nMONMOUTH   COUNTY\n\n\n180   Turning Lives Around, Inc.\n\n\nFamilies   in Transition Original\n\n\n$122,805\n\n\nMONMOUTH   COUNTY\n\n\nAAH   of Bergen County, Inc.\n\n\nHackensack/Bogota\n\n\n$78,925\n\n\nBERGEN   COUNTY\n\n\nAAH   of Bergen County, Inc.\n\n\nHillsdale   and Fairlawn\n\n\n$88,322\n\n\nBERGEN   COUNTY\n\n\nAAH   of Bergen County, Inc.\n\n\nTeaneck\n\n\n$98,437\n\n\nBERGEN   COUNTY\n\n\nAdvance   housing, Inc.\n\n\nAdvance   Supportive Living Program (SLP) Bergen\n\n\n$358,255\n\n\nBERGEN   COUNTY\n\n\nAdvance   housing, Inc.\n\n\nFairview   McKinney\n\n\n$167,735\n\n\nBERGEN   COUNTY\n\n\nAdvance   housing, Inc.\n\n\nSussex   Supportive Living Program\n\n\n$78,536\n\n\nSussex   County\n\n\nAlternatives,   Inc.\n\n\nPermanent   Housing - Warren County\n\n\n$63,170\n\n\nWarren   County\n\n\nAlternatives,   Inc.\n\n\nPermanent   Supportive Housing I\n\n\n$101,278\n\n\nSOMERSET   COUNTY\n\n\nAlternatives,   Inc.\n\n\nPermanent   Supportive Housing II\n\n\n$98,478\n\n\nSOMERSET   COUNTY\n\n\nAlternatives,   Inc.\n\n\nPermanent   Supportive Housing IV\n\n\n$15,557\n\n\nSOMERSET   COUNTY\n\n\nBergen   County Community Action Partnership, Inc.\n\n\nIndependence   Hall\n\n\n$93,712\n\n\nBERGEN   COUNTY\n\n\nBergen   County Community Action Partnership, Inc.\n\n\nLadder\n\n\n$92,748\n\n\nBERGEN   COUNTY\n\n\nBergen   County Community Action Partnership, Inc.\n\n\nPHASES\n\n\n$63,702\n\n\nBERGEN   COUNTY\n\n\nBurlington   County Community Action Program\n\n\nTransitional   Housing with Supportive Services for Veterans and Their Families\n\n\n$14,172\n\n\nBURLINGTON   COUNTY\n\n\nBurlington   County Community Action Program\n\n\nTransitional   Housing with Supportive Services for Working Poor Families with Children\n\n\n$10,667\n\n\nBURLINGTON   COUNTY\n\n\nCamden   County Council On Economic Opportunity, Inc.\n\n\nA.   Wright Place / Liberty Place\n\n\n$191,170\n\n\nCAMDEN\n\n\nCamden   County Council On Economic Opportunity, Inc.\n\n\nImani   House\n\n\n$149,704\n\n\nCAMDEN\n\n\nCamden   County Council On Economic Opportunity, Inc.\n\n\nOutreach   to Men At Risk (OMAR)\n\n\n$133,674\n\n\nCAMDEN   COUNTY\n\n\nCareer   Opportunity Development\n\n\nProject   for Indpendent Living\n\n\n$51,442\n\n\nATLANTIC   COUNTY\n\n\nCATHOLIC   CHARITIES DIOCESE OF METUCHEN\n\n\nNaomi's   Way THP\n\n\n$233,047\n\n\nNEW   BRUNSWICK\n\n\nCatholic   Charities of the Archdiocese of Newark\n\n\n2010   St. Jude's Oasis Exhibit II\n\n\n$160,000\n\n\nHUDSON   COUNTY\n\n\nCatholic   Charities of the Archdiocese of Newark\n\n\n2010   St. Lucy's Exhibit II\n\n\n$248,664\n\n\nHUDSON   COUNTY\n\n\nCatholic   Charities, Diocese of Trenton\n\n\nProvidence   House-Burlington Project Self-Sufficiency\n\n\n$69,218\n\n\nBURLINGTON   COUNTY\n\n\nCatholic   Charities, Diocese of Trenton\n\n\nProvidence   House-Ocean Project Self-Sufficiency\n\n\n$24,860\n\n\nOCEAN   COUNTY\n\n\nCenter   For Family Services,Inc.\n\n\nCFS   Tanyard Oaks 1\n\n\n$30,935\n\n\nGLOUCESTER   COUNTY\n\n\nCenter   For Family Services,Inc.\n\n\nCFS   Tanyard Oaks 2\n\n\n$18,130\n\n\nGLOUCESTER   COUNTY\n\n\nCenter   For Family Services,Inc.\n\n\nHome   Base Supported Apartments\n\n\n$70,544\n\n\nCAMDEN\n\n\nCenter   For Family Services,Inc.\n\n\nMother   Child Permanent Housing\n\n\n$67,217\n\n\nGLOUCESTER   COUNTY\n\n\nCenter   For Family Services,Inc.\n\n\nMother   Child Transitionsl Housing\n\n\n$35,437\n\n\nGLOUCESTER   COUNTY\n\n\nCity   of East Orange\n\n\nMy   Own Place\n\n\n$388,440\n\n\nEAST   ORANGE\n\n\nCity   of East Orange\n\n\nTRA   for Disabled Single Adults\n\n\n$182,460\n\n\nEAST   ORANGE\n\n\nCity   of Trenton\n\n\nCatholic   Charities Leasing Program\n\n\n$7,613\n\n\nTRENTON,   Mercer County\n\n\nCity   of Trenton\n\n\nCatholic   Charities On My Own Housing Voucher Program\n\n\n$158,808\n\n\nEWING   TOWNSHIP, HAMILTON TWP, TRENTON, Mercer County\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4e25953f-266f-4020-9a3d-d1e01543dc6a,\"Menendez to Scottish Official: New Revelations About Lockerbie Bomber Release Should Spur Action to Restore Justice\n                    \n                            Vanity Fair investigative report revealed quid pro quo behind Scotland’s release of al-Megrahi\n                    \n                      January 27, 2011\n                     WASHINGTON – In the wake of a blockbuster new report on the circumstances surrounding the release of the convicted Lockerbie bomber from a Scottish prison in 2009 (http://www.vanityfair.com/politics/features/2011/01/libya-201101), U.S. Senator Robert Menendez (D-NJ) today called on the Scottish government to take actions that will help restore justice. In a letter to Scottish First Minister Alex Salmond, Menendez highlighted the hypocrisy between the Scottish government’s statements in defense of its actions and the new revelations of a quid pro quo deal to release Abdelbaset al-Megrahi in exchange for protection from £50 million in prisoner abuse lawsuits. Menendez also cited the additional evidence in Vanity Fair’s report that undercuts the medical prognosis which served as the basis for the Scottish government’s decision to release al-Megrahi.\nMenendez, a member of the Foreign Relations Committee, chaired a committee hearing on this matter in September and spearheaded an investigation, which like the Vanity Fair report, concluded that al-Megrahi was released under a false medical prognosis and that commercial and political interests among the governments involved served as the motivating factors behind the convicted terrorist’s return to Libya. In his letter to Salmond, Menendez reiterates key recommendations of his investigative report, calling on the Scottish government to apologize to the families of the bombing victims, launch an independent inquiry and work to return al-Megrahi to prison.\nExcerpts from Menendez’s letter:\n“To release a convicted mass-murdering terrorist on alleged ‘humanitarian’ grounds, when we now read that it was done to avoid liability for abusing human rights, is one of the most outrageous examples of hypocrisy I can imagine.”\n.…\n“The Vanity Fair article exposes the staggering hypocrisy that has marked the botched handling of the al-Megrahi case, and deals yet another blow to your claims that al-Megrahi had only three months to live, and therefore, was properly released on the grounds of compassion.”\n….\n“I call on you again to apologize to the victims of the Pan Am Flight 103 bombing, to request al-Megrahi's return to Scottish prison, to authorize a truly independent investigation into this matter, and to release al-Megrahi’s entire medical record and all documents related to the Convention Rights Proceedings Amendment (Scotland) Act 2009 so that this shameful case can finally be laid to rest and compassion, mercy and justice can once again be shown to the families of the 270 victims of the Pan Am Flight 103 bombing.”\n            PDF of letter to Salmond: http://menendez.senate.gov/imo/media/doc/20110127ltr_SalmondVanityFair.pdf\n            Text of letter:January 27, 2011Rt Hon Alex Salmond MSPFirst Minister of ScotlandJanuary 11, 2011St Andrew's House, Regent Road, Edinburgh EH13DGT: 0845 7741741\nDear First Minister Salmond,\nI write to you in light of the article published today by Vanity Fair, which reports that, among other reasons, the Scottish Government released Lockerbie bomber Abdelbaset Mohmed Ali al-Megrahi to avoid £50 million in liability for human rights abuses. To release a convicted mass-murdering terrorist on alleged “humanitarian” grounds, when we now read that it was done to avoid liability for abusing human rights, is one of the most outrageous examples of hypocrisy I can imagine.  I ask that you immediately apologize to the families of the Pan Am Flight 103 bombing, authorize an independent investigation of this sordid affair, and that you call for the immediate return of al-Megrahi to Scottish prison. \nThe article also confirms the findings from my December investigation -- namely that your government knew, or should have known, that al-Megrahi had more than three months to live when he was released and that the UK government pressured your government to release him because they wanted to help UK commercial interests.\nI also found it noteworthy that you questioned the veracity of the Vanity Fair article because it states that the Scottish Government considered providing Abiraterone to al-Megrahi, a drug that had not yet been approved for use in the UK.  Such arguments ring hollow.  My investigation also found that Abiraterone trials were occurring in London at the same time your government was considering administering the drug to al-Megrahi.  In fact, our report points out that a Dr. David Dearnaley, a lead researcher on Abiraterone, provided a medical assessment of al-Megrahi prior to his release.  Given such a fact, it is not surprising that your government would have considered administering the drug to al-Megrahi, whether as part of a trial or as an off-label use. \nAmong all of the disturbing allegations in this news account, I think the most galling is the report of your government's quid pro quo agreement with the UK government to release al-Megrahi in order to avoid liability for violating the human rights of Scottish prisoners.  According to press reports and thousands of lawsuits, Scottish prisoners have been subjected to living in prison cells without toilet facilities.  The article reports that, in exchange for the release of al-Megrahi to benefit BP and other UK commercial interests, the UK parliament lowered the statute of limitations on these so-called “slopping out” cases in Scotland to one year. This action denied thousands the opportunity to redress these wrongs in court. \nThe Vanity Fair article exposes the staggering hypocrisy that has marked the botched handling of the al-Megrahi case, and deals yet another blow to your claims that al-Megrahi had only three months to live, and therefore, was properly released on the grounds of compassion.  During our entire investigation, your administration has stood by the false claim that al-Megrahi’s release was in line with ‘Scots law’ and free of economic and political pressure from Britain, Libya, or Qatar.  You said that you would “rather be first minister of a society with too much compassion than be first minister of a country with too little compassion.”  However, based on recent reports, it is difficult to see how those claims could still stand.  What you and your administration have claimed as compassion has been nothing more than a betrayal of the victims of this tragic event. \nMr. Salmond, according to the findings of this article, you commanded your government to trade the life of a convicted terrorist, in large part, for a mere £50 million.  I call on you again to apologize to the victims of the Pan Am Flight 103 bombing, to request al-Megrahi's return to Scottish prison, to authorize a truly independent investigation into this matter, and to release al-Megrahi’s entire medical record and all documents related to the Convention Rights Proceedings Amendment (Scotland) Act 2009 so that this shameful case can finally be laid to rest and compassion, mercy and justice can once again be shown to the families of the 270 victims of the Pan Am Flight 103 bombing. \nSincerely,\nRobert MenendezUnited States Senator\n                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f1c300b5-0d9a-4a01-b923-d9983bb77e96,\"Senator Menendez Introduces Resolution Condemning the New Year's Attack on Egypt's Coptic Christian Community\n                    \n                      January 27, 2011\n                     WASHINGTON – Yesterday, US Senator Menendez (D-NJ) introduced a Senate resolution condemning the New Year’s Day attack on Egypt’s Coptic Christian community that killed at least 21 people. Senator Menendez condemned the attack and called on Egyptian President Hosni Mubarak and the Government of Egypt to fully investigate and prosecute the perpetrators and to work to ensure religious freedom and equality of treatment for all Egyptians. In light of the recent protests in Egypt, the New Year’s Day attack on Egypt’s Coptic Christian community highlights the need for the government to guarantee and promote the respect of basic human rights, civil rights, and freedom of expression and assembly in the country. The resolution was co-sponsored by Senators Durbin (D-IL), Whitehouse (D-RI), Wicker (R-MS), Cardin (D-MD), Inhofe (R-OK), Lautenberg (D-NJ), Levin (D-MI), Casey (D-PA), Johnson (D-SD), Boxer (C-CA) and Kyl (R-AZ):\n\nSenator Menendez, a member of the Senate Foreign Relations Committee said: “The New Year’s Day church bombing that claimed the lives of at least 21 Egyptians has highlighted the plight of the Coptic Christian community in Egypt. Whether the genesis of this barbaric act is based in Egypt or has come from outside its borders, the fact remains that extremist elements felt unconstrained in launching a massive attack inside Egypt against an unprotected community. We grieve for both the loss of life and for further loss of religious freedom suffered by Coptic Christians in Egypt. I urge President Mubarak to use Egypt’s resources to identify, locate, and prosecute – to the fullest extent of the law – the criminals responsible for this horrific attack on an ancient community as it came together to worship and celebrate the New Year. I hope that this tragedy will serve as a wake-up call for President Mubarak to remedy the ongoing legal and social disparities faced by Coptic Christians in Egypt, just as the current demonstrations in the streets of Cairo, Alexandria, and Suez have encapsulated the public demand for broad democratic reforms, which I hope will start with free and fair presidential elections later this year.\"\" \nSenator Durbin said: “Egypt has a reputation as a peaceful, moderate Arab state, where all faiths are free to practice their religion without fear of retribution or violence. But there is no place in Egyptian society for the kind of extremists who attacked and killed peaceful church-goers on New Year’s Day. I express my deepest condolences, and those of the Illinois Coptic Community, to the members of Saints Church and join all of America in prayers for the victims of this tragedy.”\nSenator Lautenberg said: “The violent New Year’s Day attack on Coptic Christians in Egypt was a direct assault on all who seek to practice their religion freely,” said Lautenberg.  “We have an obligation to speak out when any group is persecuted because of its beliefs.  This heinous act should be vigorously investigated and those responsible must be brought to justice.” \nSenator Inhofe, a member of the Senate Foreign Relations Committee said: “I offer my deep condolences to the Coptic Christian community who suffered from this horrible attack.  Freedom of religion is a basic liberty that is vital to our democracy. While we enjoy it every day here in the US, sadly the same is not true in other parts of the world. It is a precious commodity in the Middle East, especially for Christians.   I hope this resolution will motivate the Egyptian government to investigate fully this terrible crime, bring justice to those responsible and provide the necessary security in the future so that all may practice their faith in Egypt without fear.”\n\nClick here for a PDF of the resolution: http://menendez.senate.gov/imo/media/doc/Coptic Church Res  - Final1.pdf\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9ac9be59-b20c-45d4-bb00-a47234451db2,\"Menendez, Lautenberg Announce Nearly $500K in Federal Funding for New Jersey Fire Departments\n                    \n                      January 27, 2011\n                     WASHINGTON, D.C. – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced seven New Jersey fire departments received $499,016 in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  These grants can be invested in training, equipment, personal protective equipment, health programs, and other support for stations and facilities.  “New Jersey firefighters risk their lives to protect ours – the very least we can do is ensure that they are fully prepared and protected themselves,” said Menendez.  “This investment will provide them with the equipment and training they need to continue effectively safeguarding our families and homes.” Senator Lautenberg is the Chairman of the Senate Appropriations Subcommittee on Homeland Security that funds the AFG program. “Firefighters put their lives in danger every day to protect us and keep our families and communities safe,” Lautenberg said. “This federal grant program makes a direct investment in New Jersey’s local emergency personnel so that our first responders have the best equipment and training to do their job.”    \nThe $499,016 from the AFG program will be distributed in New Jersey as follows: •    Kearny – $139,163 to the Kearny Fire Department for operations and safety.•    Monroe Township (Middlesex County) – $104,800 to the Monroe Township Fire District #3 for operations and safety.•    Princeton Junction – $20,295 to the Princeton Junction Volunteer Fire Company #1 for operations and safety.•    Belleville – $74,520 to the Township of Belleville Fire Department for operations and safety.•    Evesham – $44,100 to the Evesham Fire-Rescue for operations and safety.•    Magnolia – $96,188 to the Magnolia Fire Company for operations and safety.•    Pomona – $19,950 to the Pomona Volunteer Fire Association #3. The AFG grants are awarded to fire departments and EMS organizations to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies. For more information about the program, please visit: http://www.firegrantsupport.com/ \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=95004929-f591-4627-a02e-8326e227c567,\"Menendez Reaction to State of the Union Address\n                    \n                            Senator hails President Obama’s focus on competitiveness, jobs, tax reform\n                    \n                      January 26, 2011\n                     WASHINGTON – Following President Obama’s delivery of the State of the Union address, U.S. Senator Robert Menendez (D-NJ) released the following statement:\n\n\"\"By emphasizing economic competitiveness, job creation, and tax reform, President Obama hit on themes that I embrace and that are music to the ears of middle class families. When our nation competes and wins on a global economic scale, it creates good-paying jobs at home, shrinks budget deficits and reduces the burden on taxpayers. \n“This is a golden opportunity to work together and create conditions under which our businesses can grow the job market, our students can achieve and middle class taxpayers can see their paychecks grow. This is not the time to undercut the economic recovery with a backward-looking, politically-motivated agenda. \n“The competitiveness agenda President Obama outlined tonight is one that will help our nation win the 21st Century, and I look forward to helping it take shape in the Senate. I intend to be at the forefront of legislative effort to simplify and reform the tax system for middle class families and to create the environment in which American businesses can drive innovation and create new jobs.\"\"\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=34027e8c-0ba9-4cb8-8dd0-4ae02d1b9baa,\"Menendez Reacts to Blockbuster New Report on Lockerbie Bomber's Release\n                    \n                            Member of Foreign Relations Committee calls on Scotland and other governments involved to adhere to recommendations from investigative report that he spearheaded\n                    \n                      January 26, 2011\n                     WASHINGTON – A blockbuster new investigative report released today by Vanity Fair details commercial interests that drove the release of the convicted Lockerbie bomber from a Scottish prison in 2009. It includes new revelations about Scotland trading his release for protection from lawsuits regarding its treatment of prisoners. \nThe report supports the conclusions of a recent Senate investigation into the matter spearheaded by U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, and joined by Senators Frank Lautenberg (D-NJ), Kirsten Gillibrand (D-NY) and Charles Schumer (D-NY). Menendez reacted to the Vanity Fair report by calling on the Scottish government and other governments involved to adhere to the recommendations included in his report:\n\n“The news that the Scottish Government traded a convicted terrorist in exchange for 50 million pounds is sickening. Between the investigation I spearheaded, this illuminating report and other pieces of investigative journalism, we have a clear and complete picture of this grave injustice. The Scottish government’s repeated denials, even when confronted by specific and compelling evidence, get more ludicrous by the day. It is time that they and the other governments involved adopt the recommendations laid out in our Senate report, launch independent investigations into the matter and put the wheels in motion to return al-Megrahi to prison.”\n\n            Vanity Fair report: http://www.vanityfair.com/politics/features/2011/01/libya-201101\n            Senate investigative report: http://menendez.senate.gov/imo/media/doc/Justice%20Undone%20-%20The%20Release%20of%20the%20Lockerbie%20Bomber%20%28Final%29.pdf\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cb1b2632-a750-40eb-9a71-12cbb97a2a4a,\"Menendez, Schumer: Healthcare Repeal Bill Could Force Seniors to Repay $250 Rebate Checks - Senators Prod House GOP to Pull Back Repeal Bid Unless Seniors Are Protected\n                    \n                            Top Medicare Official Warned Last Week That ‘In Theory’ Repeal Would Force Government To Claw Back Payments to 3 Million Seniors. Senators Call Cantor’s Promise To Fix Problem At Later Date ‘Insufficient’ Fix To Medicare’s Donut Hole, Which Saves Seniors 50 Percent Off Prescription Drug Costs, Would Also Be Undone by House Repeal.\n                    \n                      January 24, 2011\n                     WASHINGTON, DC—U.S. Senators Robert Menendez (D-NJ) and Charles E. Schumer (D-NY)  said today they are concerned that the House’s vote to repeal the new health care law could eventually force seniors on Medicare to have to repay $250 rebate checks they received last year to help with their prescription drug costs. In a letter to House Majority Leader Eric Cantor, the senators urged him to pull back the House repeal measure if the concern turns out to be real, as a top Medicare official warned last week.\n\n“We urge you to commit to undo this problem now, if it is determined that repayment is necessary,” the senators wrote.\n\nLast year, in a step authorized under the Affordable Care Act (ACA), the government provided checks of $250 to Medicare beneficiaries who fell into the gap in prescription drug coverage known as the “donut hole.” Richard Foster, the Chief Actuary for the Centers for Medicare and Medicaid Services, stated in a report published last week in The Hill newspaper that “in theory,” the House-passed repeal bill would force seniors to return these checks. \n\nCantor reacted by saying action could be taken to address the problem at a later date. The senators, in their letter, called that response “insufficient.”“We will not support stripping away these protections and benefits from America’s seniors. We have read your comments that any unintended consequences of the House-passed repeal measure would be addressed at a later date. We find these assurances insufficient,” the senators wrote.\n\nSchumer and Menendez, both members of the Senate Finance Committee, also noted that repeal would threaten the larger solution to Medicare’s donut hole that was enacted under the ACA. As of January 1, seniors who fall into the coverage gap receive a 50 percent on their out-of-pocket prescription drug purchases.A copy of the letter appears below.\nJanuary 23, 2011\nMajority Leader Eric CantorOffice of the House Majority Leader                                                                                                           H-329, U.S. CapitolWashington, DC 20515\nDear Leader Cantor,\nAs members of the Senate Finance Committee, which has jurisdiction over the Medicare program, we write today to express concern about the significant harms to Medicare beneficiaries that will result from repealing the Affordable Care Act (ACA).\nSince it was enacted in 1965, the Medicare program has provided security and healthcare to America’s seniors. The ACA continues that commitment by protecting the guaranteed benefits of all Medicare beneficiaries, modernizing the program, adding new free benefits, fighting waste, fraud, and abuse, and increasing access to higher quality care. Repeal of this modernization means pushing Medicare back in time and robbing seniors of valuable advances in medicine.\nWe are particularly concerned that repeal would reverse the course of making prescription drugs more affordable for seniors. The legislation approved by the House could require seniors to repay the government.  As a first step to reducing the cost of prescription drugs, the ACA provided a $250 rebate check to seniors who fell into the “donut hole” – or gap in prescription drug coverage - in 2010. Repeal could force 3 million seniors to repay the government the $250 that they received last year.\nRichard Foster, the Chief Actuary for the Centers for Medicare and Medicaid Services (CMS), has said that “in theory,” seniors would have to return the checks if repeal becomes law. As you know, the burden of returning these funds will be significant on these millions of American seniors. In most circumstances, the individuals have already spent the funds, making the government’s attempt to claw back these payments both impractical and unfair.\nRepeal of the ACA will also re-open the Medicare “donut hole” – immediately removing the 50 percent discount on prescription drugs that millions of seniors receive today. Seniors would once again be forced to pay out of pocket for important preventative services like mammograms, annual physicals, cervical cancer and colorectal cancer screenings, cholesterol tests, and flu shots. Repeal will also revoke the 12 additional years of solvency for the Medicare Trust Fund, harming America’s seniors and taxpayers.\nWe will not support stripping away these protections and benefits from America’s seniors. We have read your comments that any unintended consequences of the House-passed repeal measure would be addressed at a later date. We find these assurances insufficient.\nWe urge you to commit to undo this problem now, if it is determined that repayment is necessary. \nSincerely,\nSenator Charles E. Schumer                                                     Senator Robert Menendez\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7839facd-c22e-4844-b884-030013e0aceb,\"Menendez, Akaka Call for Increased Investor Protection Following New SEC Report\n                    \n                            Senators' amendment in Wall Street Reform bill gives agency authority to implement the findings\n                    \n                      January 24, 2011\n                     Washington, D.C. – U.S. Senators Robert Menendez (D-New Jersey)  and Daniel K. Akaka (D-Hawaii) called for quick action to protect Americans when they receive investment advice, following the release of a new study by the staff of the U.S. Securities and Exchange Commission examining the obligations of brokers and investment advisers.  \nThe SEC staff study, commissioned by Senators Akaka and Menendez last year through the Dodd-Frank Wall Street Reform and Consumer Protection Act, recommends the creation of a uniform fiduciary standard that would require all financial professionals to act in the best interests of investors when giving personalized investment advice.  \n\nSenator Menendez said:  “It is common sense that stockbrokers should have to act in your best interest when they give you investment advice such as stock recommendations.  We must end the practice of allowing investment recommendations that are good for the broker’s fees, but bad for the customer.  I am encouraged that the SEC has issued this valuable study taking us a step closer to implementing a uniform fiduciary duty standard for all financial professionals who give people investment advice.”  \nSenator Akaka said:  \"\"It is simply unacceptable that investors are vulnerable to harm because brokers are not required to act in their best interests.  Americans rely on their investments for their financial security, and they should be better protected when they are receiving investment advice.  This study shows again that improvements are critically needed to protect ordinary investors and consumers when they receive investment advice.  We must implement the study's recommendations and establish a uniform fiduciary standard for brokers and investment advisers.\"\"\n\nInvestment advisers are legally bound by a fiduciary duty to act in the best interests of their clients and to place an investor’s interests before their own.  In contrast, brokers are held to the lesser standard of suitability that has left investors vulnerable to conflicts of interest and questionable investment advice.  The SEC study determined that investors are largely unaware of distinctions in duties and obligations of different investment professionals.  In addition, the SEC staff recommended that the fiduciary standard for investment advisers be uniformly applied to brokers in their advisory interactions with investors. \nSenators Akaka and Menendez are members of the Senate Committee on Banking, Housing, and Urban Affairs and were lead Senate sponsors of The Honest Broker amendment, enacted as Section 913 of the financial reform law.  That provision was also cosponsored by Senator Richard Durbin (D-Illinois) and supported by AARP, Americans for Financial Reform, Consumer Federation of America, Investors’ Working Group (Council of Institutional Investors), Investment Adviser Association, National Association of Secretaries of State, North American Securities Administrators Association, and the National Governors Association.\nThe full study is available through the SEC website: LINK.   \n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=eb95cc58-7671-4c74-97b0-b3ad27116304,\"Menendez, Lautenberg Continue Call to Keep Fort Monmouth Commissary Open After Base Closes\n                    \n                      January 21, 2011\n                     \nNEWARK – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today renewed their call for the U.S. Army to keep the commissary and post exchange at Fort Monmouth open after the base closes.  In a letter to the Secretary of the Army John McHugh, the Senators reiterated the importance of the commissary and post exchange facilities for military retirees and their families across the state. “The closure of Fort Monmouth will have a significant impact not only on the individuals employed there and the local communities surrounding the property, but on the military retirees and their families who frequently utilize the facilities at Fort Monmouth as well,” the Senators wrote.  “The use of military commissaries and post exchanges is an important benefit for military retirees who served our country dutifully.  Oftentimes, these individuals are living on fixed incomes and a supermarket or drug store with products at cost is a vital resource for them.” The Senators met with Secretary McHugh in May 2010 and personally requested that the commissary be kept open.\n\nA copy of the letter can be found here and the text of the letter follows:\nJanuary 21, 2011\nThe Honorable John McHughSecretary of the ArmyRoom 3E700 PentagonWashington, D.C. 20310-0101\nDear Mr. Secretary:\nThank you for taking the time to meet with us in May regarding the closure of Fort Monmouth and the impact it will have on the residents of New Jersey.  As we stressed, there are several outstanding issues that we remain concerned about as operations at Fort Monmouth are transferred and we look forward to working together to resolve these issues in a timely manner.\nIn particular, we discussed the possibility of maintaining the commissary and post exchange on the Fort Monmouth property for continued use by military retirees and their dependents.  While we understand that the Defense Commissary Agency (DECA) will make the final decision on the status of the commissary, we once again urge you to consider recommending to DECA that the facilities remain in operation after the Fort’s closure.\nAs we are sure you understand, the closure of Fort Monmouth will have a significant impact not only on the individuals employed there and the local communities surrounding the property, but on the military retirees and their families who frequently utilize the facilities at Fort Monmouth as well.  The use of military commissaries and post exchanges is an important benefit for military retirees who served our country dutifully.  Oftentimes, these individuals are living on fixed incomes and a supermarket or drug store with products at cost is a vital resource for them.\nOnce again, we thank you for meeting with us in May and for considering this request. We look forward to hearing from you.\nSincerely,\nFrank R. LautenbergUnited States Senator \nRobert Menendez United States Senator\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fa1c6f19-9cde-45c8-967e-fac0b416d654,\"Menendez: Let the Solar Decathlon Continue to be Held on the National Mall\n                    \n                            Federal government has denied permission for space to event that showcases solar-power homes built by college students\n                    \n                      January 21, 2011\n                     NEWARK – In the wake of the federal government no longer allowing the solar decathlon to be held on the National Mall, U.S. Senator Robert Menendez (D-NJ) is urging the Secretaries of the Interior and Energy to reconsider the decision. The event, which brings together top teams of college students to showcase homes run on solar power, has traditionally been held on the Mall, but will no longer be granted the space because of concerns over the health of the Mall’s grass. In his letter to Secretaries Salazar and Chu, Menendez points out the recent rallies and sporting events that have been permitted on the Mall and expresses concern that historic gatherings may also be banned from the space in the future.\n\n“Moving this event from the Mall sends the wrong message,” wrote Menendez. “Secretary Salazar, you have spoken of your eagerness to be involved in crafting an ‘energy moon shot.’  Secretary Chu, you have recently called upon America to recognize that China's recent gains in clean energy industries should serve as a new ‘Sputnik moment’ for America to reclaim its clean energy leadership.  The students who have worked for two years toward this year’s Solar Decathlon have listened and responded to these calls to arms.  These students deserve to showcase their talents at our country's center stage and to be part of the great history of the Mall.”  \n\nPDF of letter to Salazar and Chu: http://menendez.senate.gov/imo/media/doc/012111ltr_SolarDeacthlon.pdf \nText of letter:\nJanuary 21, 2011\nThe Honorable Steven ChuSecretaryU.S. Department of Energy1000 Independence Ave., SWWashington, DC 20585\nThe Honorable Ken SalazarSecretaryU.S. Department of Interior1849 C St. NWWashington, DC 20240\nThe Honorable Jon JarvisDirectorNational Park Service1849 C Street NWWashington, DC 20240                Dear Secretary Chu, Secretary Salazar and Director Jarvis,\n                My office has been informed that the Department of Energy’s Solar Decathlon will not take place on the National Mall this year or perhaps ever again because of a decision by the National Park Service.  I am writing to ask you to reconsider that decision.                 America’s clean energy future depends on the youthful ambition, innovation, and hard work that will be on display by the hundreds of students competing in this year’s Solar Decathlon.  Universities from around the globe will be here to display homes they built powered solely by the sun.  Given these students’ efforts to create the sustainable homes of the future, I can think of no gathering more deserving of the use of the Mall than this event. \n                Moving this event from the Mall sends the wrong message.  Secretary Salazar, you have spoken of your eagerness to be involved in crafting an “energy moon shot.”  Secretary Chu, you have recently called upon America to recognize that China's recent gains in clean energy industries should serve as a new “Sputnik moment” for America to reclaim its clean energy leadership.  The students who have worked for two years toward this year’s Solar Decathlon have listened and responded to these calls to arms.  These students deserve to showcase their talents at our country's center stage and to be part of the great history of the Mall.  \n                Over a year ago I issued a challenge to the universities of New Jersey to participate in this event.  I am proud that, in response to my challenge, two teams from New Jersey have been selected to compete this year.  Rutgers and the New Jersey Institute of Technology are collaborating on one project and the Stevens Institute of Technology and Parsons School of Design, are collaborating on another.  I am excited to know that this competition has served as a vehicle for such collaborations, and I am very eager to see the innovative homes these teams produce.  However, if the event is moved, I do not know how I will explain to them why the Mall – which has been made available for softball games and to Glenn Beck, Jon Stewart, and Stephen Colbert for recent rallies -- was not available to them.  \nI’ve always understood the National Mall to be the meeting place for the American people.  The National Mall is the place where Martin Luther King Jr. shared his dream, where we celebrated our nation’s bicentennial, where the Million Man March took place, and where the AIDS quilt was displayed.  It was even where we most recently celebrated President Obama’s historic inauguration.  I simply can’t understand what its purpose will be, if not to provide a place for events of national significance.  And I believe innovation is a critical issue for our nation, so we should be spotlighting events like the Solar Decathlon on our nation’s center stage, the National Mall.                       For these reasons, I am respectfully asking you to reconsider your decision and ensure that the Solar Decathlon can take place on the Mall, now and in the future, just as these students had envisioned.   \n                                                                Sincerely,\n                                                                ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬___________________                                                                Robert Menendez                                                                United States Senator     \n                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e4e82cec-3b90-40ba-aa68-9217b03c58b5,\"Menendez, Lautenberg: Trenton Fire Department Receives $13.6 Million To Keep Firefighters on the Job\n                    \n                            Federal Grant prevents massive layoffs for fire department\n                    \n                      January 20, 2011\n                     NEWARK, N.J. – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today officially announced the Trenton Fire Department was awarded $13,685,436 in federal funding to prevent 61 firefighters from being laid off.  The funding is made available through the Federal Emergency Management Agency’s (FEMA) Staffing for Adequate Fire and Emergency Response (SAFER) program.  The highly competitive SAFER grant program is designed specifically to staff departments with trained firefighters.  \n“These funds will allow Trenton’s fire department to retain 61 firefighters and ensure they’re adequately staffed to protect families in the community,” said Menendez.  “Our brave firefighters don’t hesitate to put themselves in harm’s way in the line of duty. The very least we can do is ensure they have the manpower and resources necessary to safeguard our neighborhoods and themselves.”\nSenator Lautenberg is Chairman of the Senate Appropriations Subcommittee on Homeland Security that funds the SAFER grant program. “This critical federal funding will help keep Trenton firefighters on the job to protect families and neighborhoods in our capital city,” stated Lautenberg, the chairman of the Senate Homeland Security Subcommittee. “As cities and towns across the state struggle with tight budgets, I am working in the Senate to ensure that federal funding for public safety in New Jersey communities is a priority.”\nThe SAFER grant program provides funding directly to fire departments and volunteer firefighter organizations in order to help them increase the number of trained \"\"front line\"\" firefighters in their communities. For more information about the program, please visit: http://www.firegrantsupport.com/content/html/safer/ ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=52d32cba-8ece-4f81-b05a-12a5ee61d75c,\"Menendez, Lautenberg Announce $454K in Federal Funding for Eight New Jersey Fire Departments\n                    \n                      January 19, 2011\n                     NEWARK — U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced eight New Jersey fire departments received $454,292 through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  These grants can be invested in training, equipment, personal protective equipment, health programs, and other support for first responder stations and facilities.   “Our firefighters risk their safety to protect our communities,” Menendez said.  “These investments in our local fire departments will help keep our families and neighborhoods safe by keeping our firefighters fully prepared – they deserve at least as much.”\nSenator Lautenberg is the Chairman of the Senate Appropriations Subcommittee on Homeland Security that funds the AFG program.\n“Firefighters put their lives in danger every day to keep our families and communities safe,” Lautenberg said. “These grants will make a direct investment in local emergency personnel so that New Jersey first responders have the best equipment and training to do their job.”  The $454,292 from the AFG program will be distributed in New Jersey as follows: •    Teaneck - $143,217 to the Township of Teaneck for operations and safety.•    Wenonah - $49,258 to the Wenonah Fire Company for operations and safety.•    Egg Harbor Township - $88,350 to the Bargaintown Volunteer Fire Co. No. 2 for operations and safety.•    Salem - $57,000 to the Salem Fire Department for operations and safety.•    Columbus - $11,875 to the Franklin Fire Co. No. 1 for operations and safety.•    South Amboy - $23,579 to the South Amboy Fire Department for operations and safety.•    Ocean - $34,523 to the Township of Ocean Fire District 2 for operations and safety.•    North Plainfield - $46,490 to the North Plainfield Fire Department for operations and safety. The AFG grants are awarded to fire departments and EMS organizations to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies.\nFor more information about the program, please visit: http://www.firegrantsupport.com/                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8295d66d-9a95-4817-8564-6bd4109490bb,\"Menendez Statement on Changes to Cuba Travel, Remittances Policy\n                    \n                      January 17, 2011\n                     NEWARK, NJ – U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, released the following statement after the Obama administration today announced changes to policy to Cuba travel and remittances policy:\n“I am deeply disappointed by President Obama’s decision today to extend an economic life line to the Castro regime. This gift to the Castro brothers will provide the regime with the additional resources it needs to sustain its failing economy, while ordinary Cubans continue to struggle under the weight of more than fifty years of economic and political oppression.   \n“The decision to permit additional travel to the island and allow nearly unlimited resources to flow to the regime is  bad policy and will only serve to prolong the repression of the Cuban people. These changes, purportedly taken in hope of advancing a democratic opening on the island, ignore the reality that it is not U.S. policy, but Cuban policy, that is responsible for the Castros’ political and economic tyranny. This opening will do no more to advance political freedom in Cuba then our economic engagement with China has done for political dissidents in that nation. You can’t buy political reform.\n“The fact that the Administration offered this concession to the regime despite their continued imprisonment of an American citizen is simply outrageous. Unless new efforts are undertaken to limit the impact of these policy changes, the sole result will be to enrich the Castro regime and enhance the political and economic impoverishment of the Cuban people.”\n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2e5a7956-732f-4581-acf6-bcd90ab6898e,\"Menendez Statement on Martin Luther Kind Day\n                    \n                      January 17, 2011\n                     NEWARK, NJ – U.S. Senator Robert Menendez (D-NJ) released the following statement on the commemoration of Martin Luther King, Jr. Day:\n\n“As we celebrate and reflect upon the life’s work of Dr. King on this day, we should re-commit to live by his teachings each day. In the wake of the tragic shooting in Arizona, Dr. King’s message of non-violent, civil discourse is particularly poignant. It was a message that helped guarantee equality for all in our nation, and it is a message that will help bridge differences that may exist today in our society. Let us be thankful for Dr. King’s life and legacy, and let us continue to honor him in our daily lives.”\n\n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6aae5d33-cbe5-42c8-b214-e5d92877cb7f,\"Menendez, Lautenberg Announce Nearly $1 Million for Housing Assistance in New Jersey\n                    \n                      January 14, 2011\n                     WASHINGTON, D.C. – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the New Jersey Department of Community Affairs (DCA) will receive $936,420 in federal Housing and Urban Development (HUD) funding to help non-elderly residents with disabilities move from nursing homes to independent living.\n\n“People with disabilities often face harder logistical and financial obstacles to living independently, and that problem is worse in tough economic times,” said Menendez, Chairman of the Subcommittee for Housing and sponsor of the “Frank Melville Supportive Housing Investment Act” that just became law and will expand affordable housing options for Americans with disabilities.  “Together with the Frank Melville Supportive Housing Investment Act that I passed just a few weeks ago, these funds will help people with disabilities successfully transition from nursing homes to independent living and bring greater stability to their lives.”\n“This federal funding will allow New Jerseyans with disabilities to access the services and assistance they need to transition into an independent lifestyle,” stated Lautenberg a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development. “With this funding, we can improve the quality of life for disabled individuals throughout the state and help them move into their own residences.”\n\nThe federal funding provides vouchers to non-elderly people with disabilities, who will also have supportive services in place for the transition period. State Medicaid agencies and local service organizations will link eligible families to local public housing authorities that will distribute the vouchers. Menendez said that this investment complements the bipartisan Frank Melville Supportive Housing Investment Act that he sponsored and was signed into law on Tuesday.  That law will likely quadruple the number of new affordable rental units built each year for low income people with disabilities through the U.S. Department of Housing and Urban Development's main program to provide affordable housing for people with disabilities (Section 811) without increasing the budget deficit: http://menendez.senate.gov/newsroom/press/release/?id=8812c051-eb71-4ff0-9b39-e9fe945243d5   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8ec05ce0-2156-4ab3-b828-923b4a676702,\"Menendez, Lautenberg Announce $1.1 Million in Federal Funding for New Jersey Fire Departments\n                    \n                            North Arlington and Belmar secure funding for new fire trucks\n                    \n                      January 13, 2011\n                     NEWARK – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced 10 New Jersey fire departments received $1,139,340 in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  AFG funding can be invested in vehicle acquisition, training, equipment, personal protective equipment, wellness programs, and other support for stations and facilities.  \nSenator Lautenberg is the Chairman of the Senate Appropriations Subcommittee on Homeland Security that funds the AFG program. \n\n\"\"New Jersey firefighters risk their lives to protect ours – the very least we can do is ensure that they are fully prepared and protected themselves,” said Menendez.  “This investment will provide them with the equipment and training they need to continue effectively safeguarding our families and homes.”\n\n\n\n“Our firefighters put their lives in danger every day to protect us and keep our families and communities safe,” Lautenberg said. “This grant program makes a direct investment in New Jersey’s local emergency personnel so that our first responders have the best equipment and training to do their job.”   \n\nThe $1,139,340 from the AFG program will be distributed in New Jersey as follows: •    North Arlington - $285,000 to North Arlington Fire Department to purchase a fire truck.•    Belmar - $261,250 Goodwill Hose Co. No.1 to purchase a fire truck.•    Belmar - $16,150 to Union Fire Co. No. 1 for operations and safety expenses.•    Belmar - $8,550 to Goodwill Hose Co. No. 1 for operations and safety expenses.•    Ocean City - $112,860 to Ocean City Fire Department for operations and safety expenses.•    Alloway - $55,034 to Alloway Township Fire Company for operations and safety expenses.•    Ventnor - $140,838 to Ventnor City Fire Department for operations and safety expenses.•    Colts Neck - $139,650 to Colts Neck Fire Department for operations and safety expenses.•    Westville - $68,780 to Westville Fire Department for operations and safety expenses. •    Robbinsville - $51,228 to the Robbinsville Division of Fire for operations and safety expenses. The AFG grants are awarded to fire departments and EMS organizations to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies. For more information about the program, please visit: http://www.firegrantsupport.com/ ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ac42a802-d5ad-44e4-a75e-dfa1bcadc807,\"Menendez, Lautenberg Announce $377K in Federal Funding to Help Staff Collingswood Fire Department\n                    \n                      January 13, 2011\n                     NEWARK, N.J.  – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Collingswood Fire Department will receive $377,917 in federal funding through the Federal Emergency Management Agency’s (FEMA) Staffing for Adequate Fire and Emergency Response (SAFER) program to rehire three firefighters.  The highly competitive SAFER grant program is designed specifically to strengthen departments by increasing the number of trained firefighters.\n\n  “These funds will allow Collingswood’s fire department to rehire three firefighters and ensure they’re adequately staffed to protect families in the community,” said Menendez.  “Our brave firefighters don’t hesitate to put themselves in harm’s way in the line of duty. The very least we can do is ensure they have the manpower and resources necessary to safeguard our neighborhoods and themselves.”\n\n\n“This federal funding will help staff the Collingswood Fire Department with firefighters to protect local families and neighborhoods,” said Lautenberg, Chairman of the Senate Appropriations Subcommittee on Homeland Security which funds the SAFER grant program.  \n\n\n“With firefighters ready to roll at the sound of the alarm, we must be certain that our departments are sufficiently staffed to handle emergencies safely and effectively.”\n\n The highly competitive SAFER grant program provides funding directly to fire departments and volunteer firefighter organizations in order to help them increase the number of trained \"\"front line\"\" firefighters in their communities.\nFor more information about the program, please visit: http://www.firegrantsupport.com/content/html/safer/ \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1862db10-7a23-4a11-b063-c7f908bb96af,\"Menendez, Lautenberg Announce $5.5 Million for Healthy Homes Initiative in Newark\n                    \n                            Funding will help reduce lead in homes, mitigate asthma\n                    \n                      January 13, 2011\n                     NEWARK – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced the U.S. Department of Housing and Urban Development (HUD) awarded the City of Newark $5.5 million in federal funding to remediate hundreds of Newark homes.\n\n“These funds will help protect vulnerable families from hazardous home toxins they may not even be aware threaten their health and security,” said Menendez.  “Home safety is family safety, and we need to ensure everyone, including low income families, are protected.”\n“This federal funding will provide critical assistance to hundreds of families living in homes that could be hazardous to their health,” said Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development.  “Investing in these health efforts will help protect Newark families from potential lead poisoning, asthma and other illnesses.”\n\nThe $5.5 million in federal funding was awarded to Newark as follows: •    $4.5 million in Lead Hazard Reduction Demonstration (LHRD) funds to assess lead-based paint hazards in 500 homes built before 1940 and to remediate the identified hazards in 250 homes occupied by low-income families.•    $1 million in Healthy Homes Production (HHP) grant funds to identify and remediate health hazards in 120 homes occupied by low-income families.  The City will use the funds to mitigate asthma, refer children and families to other social service agencies, and provide education on healthy homes through community outreach at 150 events.\nMore information can be found at www.hud.gov/offices/lead.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=83c75f75-a34f-47b8-8877-35d0153e2268,\"Author of Oil Company Liability Bill Says BP Spill Commission's Final Report Gives Legislation New Momentum\n                    \n                            Menendez says he will quickly reintroduce the Big Oil Bailout Prevention Act to remove the $75 million liability limit currently enjoyed by oil companies\n                    \n                      January 11, 2011\n                     WASHINGTON – This morning, the presidential commission investigating last year’s BP Gulf of Mexico oil spill released its final report: http://www.oilspillcommission.gov/final-report. Among other findings, the commission reported that systematic oversight deficiencies in the oil industry and government make similar spills possible and that the current $75 million liability limit enjoyed by oil companies should be raised.\nU.S. Senator Robert Menendez (D-NJ), the author of legislation to remove the oil industry’s liability limit, today said that the commission has given new momentum to the effort to hold oil companies accountable and that he would move to quickly reintroduce the Big Oil Bailout Prevention Act when the Senate reconvenes this month. \n\n“The commission is clear: Not only are more spills of this magnitude entirely possible, but taxpayers and coastal communities remain financially exposed. We cannot continue to coddle oil companies by protecting them when they destroy livelihoods – that’s not a privilege given to any individual or small business. Holding oil companies accountable for the damage they cause not only protects taxpayers and coastal families, but it also gives those corporations incentive to actually focus on the safety of their drilling operations. I plan to swiftly reintroduce the Big Oil Bailout Prevention Act when the Senate reconvenes later this month, and I intend to work with senators who have constructive ideas to help it pass. The bottom line is that what we enact must ensure that if an oil company spills, taxpayers do not pay a dime for cleanup or economic damages and coastal families are made financially whole.”\n\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ce354f01-1abf-4a66-91d6-f7814625f5c1,\"U.S. Senator Robert Menendez's Statement on Shooting of Rep. Gabrielle Giffords\n                    \n                      January 8, 2011\n                     WASHINGTON - Representative Gabrielle Giffords (D-AZ) was shot this morning during a public event she held with constituents in her congressional district.  U.S. Senator Robert Menendez (D-NJ) issued the following statement:\n\n\"\"I am deeply saddened to hear of the attack on Congresswoman Giffords, her staffers, a federal judge and other innocent bystanders - an attack that has taken lives.  My thoughts and prayers are with the families of the victims. The latest medical update on the congresswoman is certainly encouraging and it is a ray of sunshine on an otherwise dark day. While many details of this horrific incident are still unknown, including the motivation of the attacker, one thing is clear: this was a vicious and intolerable act that contradicts the values on which our great nation is built.\"\"\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6404d107-1e0a-433b-80f1-600347d00b9a,\"Jersey City Health Center Celebrates Dedication of  “The Senator Robert Menendez Pediatric Screening Center”\n                    \n                            The Metropolitan Family Health Network Pediatric Department names children’s health facility after Senator Menendez for his ongoing support\n                    \n                      January 7, 2011\n                     JERSEY CITY, NJ – Today, U.S. Senator Robert Menendez (D-NJ) was honored with the renaming of the Metropolitan Family Health Network Pediatric Department’s children’s health facility located within the health center at 935 Garfield Avenue in Jersey City. The newly dedicated areas, named “The Senator Robert Menendez Pediatric Screening Center”, house state-of-the art screening equipment to serve Jersey City children and their families.  \nSenator Menendez was honored for his ongoing support for the MFHN, as well as being a champion of children’s health initiatives and leading Congressional efforts to protect federal support for New Jersey’s FamilyCare Children’s Health Insurance program.\nSenator Menendez has also organized annual “Children’s Health Days,” which are used to promote and provide vaccinations and screenings for children during back-to-school days. As a result, Metropolitan Family Health Network received an “Outstanding American Recovery and Reinvestment Act Award” by the New Jersey Department of Health and Senior Services for demonstrating100% compliance in participation and collaboration with the NJ Vaccines for Children Program and the Centers for Disease Control and Prevention. \n\n“A healthy start helps our children lead productive lives,” said Menendez. “It has always been a priority of mine in public service to help ensure that quality, affordable health care for our children isn’t dependent on their parent’s income level.  I am deeply honored with this dedication, and I pledge to continue working hard to keep our children healthy. I look forward to working to protect children’s health in Congress, holding many more ‘Children’s Health Days’ here. I congratulate the staff here on their hard work ensuring that local children receive the necessary screenings and vaccinations.”  \n\n\n“It’s Metropolitan Family Health Network’s mission to provide high quality, accessible health care to the under-served population in our community, regardless of their ability to pay,” said Joan Dublin, Chief Executive Office of the Metropolitan Family Health Network. “Early detection is the best protection against childhood diseases.  MFHN’s Robert Menendez Screening Center will ensure that the children of Hudson County begin their lives with a strong and healthy foundation.”\n\nFor over 20 years, residents of Jersey City and surrounding communities have benefitted from the comprehensive primary care services offered at the Metropolitan Family Health Network. With financial support from the U.S. Department of Health and Human Services and the New Jersey Department of Health and Senior Services, Metropolitan Family Health Network, Inc. (MFHN) became the newest Federally Qualified Health Center (FQHC) in Hudson County in the Fall of 2006. The goal of the new community health center is to make primary health services more accessible to families in Jersey City.\nPatients without health insurance coverage are welcomed at Metropolitan. Federally Qualified Health Centers receive support from the U.S. Department of Health and Human Services to help support patients who are uninsured. Patients must present certain documentation that verifies residence, income and dependents. Based on this information, patients are charged for health care services based on a sliding fee scale. Minimum fees are assessed based on federal requirements.\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=34c93802-0533-4759-b3b8-6ac66382a3c4,\"Menendez, Lautenberg Announce More Than $6 Million to Increase Access to Housing for Low and Moderate Income Families, Underserved Communities in Paterson\n                    \n                      January 7, 2011\n                     WASHINGTON – U.S. Sens. Robert Menendez (D-NJ), and Frank R. Lautenberg (D-NJ) today announced that Paterson will receive a $6.387 million federal investment to expand access to affordable housing for low-and moderate-income families through various housing development, community revitalization, and emergency homeless shelter programs. The grants, awarded and administered through the Department of Housing and Urban Development (HUD), are part of four HUD initiatives: The Community Development Block Grant (CDBG) Program, the HOME Investment Partnership, the Emergency Shelter Grants (ESG) program, and the Housing Opportunities for Persons With AIDS (HOPWA) program.\n\nSenator Menendez said: \"\"With this investment we are expanding access to housing and shelter and helping create additional jobs and economic opportunities for New Jersey families that will result from these efforts to revitalize our communities. The funding announced today will help ensure everyone in New Jersey, including the most vulnerable, have access to housing within their means. It will also help guarantee emergency shelter for those that may suddenly find themselves without a roof over their head.” Senator Lautenberg, a member of the Senate Appropriations Subcommittee on Transportation, Housing and Urban Development said: “Investing federal funds into local housing and community programs marks an important commitment to Paterson families. This funding will provide critical assistance to families and individuals in need, and help improve Paterson’s neighborhoods.” \n\nThe $6, 387,110 in federal grants were awarded to Paterson as follows:•    $3,203,229 in CDBG funds.•    $128,592 in ESG funds.•    $1,651,083 in HOME funds.•    $1,404, 206 in HOPWA funds.\nThe CDBG and HOME programs provide funding to develop decent and affordable housing, enhance infrastructure, and develop economic opportunities primarily in communities with large populations of low and moderate-income families.  HOPWA funding provides housing assistance and related support services to meet the special needs of people with HIV and AIDS.  The ESG program provides homeless people with basic shelter and other services.  \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fb84abf0-b662-4813-bd63-eca5bc75e877,\"Menendez, Lautenberg Announce Federal Funding for New Ladder Truck in Bayonne and Operations at Fire Departments Across New Jersey\n                    \n                      January 6, 2011\n                     WASHINGTON, D.C. – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Bayonne Fire Department will receive $720,000 to purchase a new ladder truck, and five more departments across the state will receive funding for operations and safety programs through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  AFG funding can be invested in vehicle acquisition, training, equipment, wellness programs, and other support for stations and facilities. \n“This investment in our local fire departments will help guarantee our firefighters are fully equipped and prepared to keep our families and neighborhoods safe,” said Menendez.  “Our firefighters risk their safety everyday to protect our communities and the very least we can do for them is guarantee they have the best equipment and resources to do their job.” Senator Lautenberg is the Chairman of the Senate Appropriations Subcommittee on Homeland Security that funds the AFG program. “This federal funding will help Bayonne firefighters purchase a new ladder truck to keep local families and neighborhoods safe and secure,” said Lautenberg.  “Our firefighters put their lives in danger every day and this direct federal investment in local New Jersey fire departments will help ensure they are equipped with the best resources to protect our communities.”   The $911,337 from the AFG program will be distributed in New Jersey as follows: •    Bayonne - $720,000 to the Bayonne Fire Department for vehicle acquisition.•    Galloway - $97,138 to the Oceanville Volunteer Fire Company No. 1 for operations and safety expenses.•    Summit - $31,802 to the Summit Fire Department for operations and safety expenses.•    Absecon - $16,720 to the Absecon City Fire Department No. 1 for operations and safety expenses.•    Harmony Township - $24,302 to the Harmony Township Volunteer Fire Department for operations and safety expenses.•    Vineland - $21,375 to the Forest Grove Volunteer Fire Company for operations and safety expenses. The AFG grants are awarded to fire departments and EMS organizations to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies.  For more information about the program, please visit: http://www.firegrantsupport.com/ \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5258013d-3c02-454f-b784-0b62e57b68fc,\"As Constitution is Read Aloud, Menendez, Maloney, Nadler, Moore Cite Need for Equal Rights Amendment\n                    \n                      January 6, 2011\n                     WASHINGTON, DC – Sen. Robert Menendez (D-NJ), Rep. Carolyn Maloney (D-NY), Rep. Jerrold Nadler (D-NY) and Rep. Gwen Moore, along with representatives from national women’s organizations, joined outside the Capitol today-- as the U.S. Constitution was being read on the House floor-- to highlight the absence of the Equal Rights Amendment (ERA) and restate the need for its passage. \n\nMaloney, the prime House sponsor of the ERA in the last eight Congresses, said, “As the Constitution is read inside the Capitol today, America is hearing what is included in the Constitution. But we are here outside the Capitol to point out what is excluded: explicit equal rights for women under the Constitution. So, thanks to this new Majority-- and to Justice Scalia-- for making clear what we, here, already know: that women need equality written into the Constitution—an equality that cannot be easily repealed.”\nMenendez, the Senate sponsor of the ERA in the last Congress, said, “Three out of four Americans assume that the Equal Rights Amendment is already part of the Constitution, and many others probably believe that social progress has eclipsed the need for it. But Justice Scalia’s recent comments have made it crystal clear that until equal protection for women is explicitly spelled out in the Constitution, the courts might not guarantee it. In 2011, I can do my banking on my cell phone, I can have all of my music and photos in the palm of my hand, I can even video chat with friends and families thousands of miles away -- but I still can’t guarantee to my daughter that our legal system will protect her against discrimination. It’s time to fix this.”\n“It is mystifying to me that we are still fighting to ensure that equal rights for women is codified in our nation’s constitution,” said Rep. Nadler. “This amendment is common sense, nonpartisan, and long overdue.  I proudly join Congresswoman Maloney, Senator Menendez, and Congresswoman Moore, along with the many committed women’s advocates across the country, in supporting this pivotal legislation.”\nMoore, co-chair of the Congressional Women’s Caucus, said, “It’s a wake-up call when a sitting Supreme Court Justice says there is no Constitutional protection for women against discrimination.  Apparently women’s rights are at the whim of the Court and will remain that way without the Equal Rights Amendment.” \n\n                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3f6c1a50-23a0-4f15-b2d6-822fda02febd,\"Gulf Spill Panel Concludes It Could Happen Again, Menendez Pledges To Reintroduce Oil Company Liability Bill\n                    \n                            Big Oil Bailout Prevention Act would ensure oil companies are accountable for all economic damages resulting from a spill; liability for economic and natural resource damages is now limited to $75 million  \n                    \n                      January 6, 2011\n                     WASHINGTON – Yesterday, the presidential Deepwater Horizon oil spill commission released a portion of its final report, which cited systematic oversight failures in the oil industry and government that could lead to another catastrophic deepwater oil spill (http://www.oilspillcommission.gov/sites/default/files/documents/Advance%20Chapter%20on%20BP%20Well%20Blowout%20Investigation%20Released.pdf). According to the commission:\n\n“The blowout was not the product of a series of aberrational decisions made by rogue industry or government officials that could not have been anticipated or expected to occur again. Rather, the root causes are systemic and, absent significant reform in both industry practices and government policies, might well recur.”\n\nU.S. Senator Robert Menendez (D-NJ), who has led the charge to remove the $75 million liability limit for economic damages that oil companies currently enjoy, has long emphasized the risks associated with coastline drilling. Today, he said that he would soon reintroduce his Big Oil Bailout Prevention Act in the 112th Congress to ensure that oil companies are fully accountable for their catastrophic mistakes and have incentives to conduct proper oversight of their drilling activities. He released the following statement:\n\n“I have said repeatedly that when it comes to coastal drilling there is no such thing as Too Safe To Spill. The commission echoes that point by finding that another BP-type disaster is possible. Oil companies are some of the wealthiest corporations in world history – it’s time to stop coddling them and time to start holding them to the same standard that average citizens and small business owners have to live by. Everyone else is fully liable for damage they cause, and oil companies should be too. Not only will this guarantee economic protection to families that lose their livelihoods from a spill, but it will compel oil companies to pay more attention to the safety of their drilling operations.”\n\n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8a539581-49f7-4716-93e1-fe50f468e7bd,\"Lautenberg, Menendez Announce $700K in Federal Funding to Help Staff Robbinsville Fire Department\n                    \n                      January 4, 2011\n                     NEWARK, N.J. – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the Robbinsville Fire Department will receive $700,604 in federal funding through the Federal Emergency Management Agency’s (FEMA) Staffing for Adequate Fire and Emergency Response (SAFER) program to hire four additional firefighters.  The highly competitive SAFER grant program is designed specifically to strengthen departments by increasing the number of trained firefighters.  \n\n“This federal funding will help staff the Robbinsville Fire Department with additional firefighters to protect local families and neighborhoods,” said Lautenberg, Chairman of the Senate Appropriations Subcommittee on Homeland Security which funds the SAFER grant program.  “With firefighters ready to roll at the sound of the alarm, we must be certain that our departments are sufficiently staffed to handle emergencies safely and efficiently.” “Additional firefighters protecting Robbinsville’s families will mean a safer community,” said Menendez.  “Our brave firefighters don’t hesitate to put themselves in harm’s way in the line of duty. They deserve the manpower and equipment necessary to safeguard our neighborhoods and themselves.” The highly competitive SAFER grant program provides funding directly to fire departments and volunteer firefighter organizations in order to help them increase the number of trained \"\"front line\"\" firefighters in their communities.\n\nFor more information about the program, please visit: http://www.firegrantsupport.com/content/html/safer/ ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=13af2f24-bc1d-4479-901c-a000f79c4aed,\"Menendez Cheers Signing of 9/11 Responder Health Law\n                    \n                            NJ Senator was original author of Zadroga bill in U.S. Senate\n                    \n                      January 2, 2011\n                     NEWARK – U.S. Senator Robert Menendez  (D-NJ), the original author of the James Zadroga 9/11 health bill in the  Senate, is hailing the enactment of the new law, which President Obama  signed earlier today. Menendez released the following statement:\n\n\"\"Today, our nation has shown that 'We will never forget' was not a  slogan but a promise. The men and women, like James Zadroga, who rushed  to Ground Zero in our nation's darkest hour with only a paper mask to  protect their lungs are among the best of us. A grateful nation honors  them not just by participating in 9/11 anniversary remembrances, but by  ensuring that those who unknowingly inhaled toxic dust can have medical  attention and treatment. This is a long-overdue show of gratitude for  these ailing patriots. I am proud to have stood alongside them in the  fight to secure protection for their health.\"\"                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e911592a-49d2-4121-bf2a-ed300a44810b,\"Menendez Hails New Plan to Raise Bayonne Bridge Roadway\n                    \n                            Higher ship clearance vital to continuing competitiveness of New Jersey port terminals\n                    \n                      December 29, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) is hailing a plan announced today by the Port Authority of New York/New Jersey to raise the Bayonne Bridge roadway and allow larger cargo ships to reach port terminals in Northern New Jersey.  Menendez has been a leading champion of the port and the project since the days when he represented the area in the House of Representatives.\nWork to widen the Panama Canal will be complete in 2014, and the current 151 feet clearance under the bridge is insufficient to accommodate the larger cargo ships that will use the canal. The preferred plan announced today will raise the clearance under the  roadway to 215 feet. If the bridge is not raised, port terminals in Newark and Elizabeth will be at a competitive disadvantage relative to other East Coast ports.\n\n“This is absolutely crucial to ensuring that newer, larger ships can access our ports and that one of our state’s primary economic engines remains competitive in the 21st Century,” said Menendez. “When our ports thrive, local jobs are created, economic activity is generated and our state prospers. I have championed this project and the port since my days representing the area in the House and I will work on the federal level to help ensure its swift completion.” \n\nThe Bayonne Bridge has connected Bayonne and Staten Island, New York for almost 70 years.\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3461882f-b25d-45b0-b740-fdde883685f3,\"Menendez Letter to Santa Claus on HuffPo: What Will Happen When North Pole is Melted?\n                    \n                            U.S. Navy oceanographer has predicted ice-free Arctic by 2020, others by 2012\n                    \n                      December 23, 2010\n                     WASHINGTON – With the U.S. Navy’s chief oceanographer estimating an ice-free Arctic by 2020 (http://www.dailymail.co.uk/news/article-1339475/Global-warming-Sandal-wearers-wont-save-greed-US-Navy-will.html#ixzz18ZccQwjm) and other scientists estimating it by as soon as 2012, U.S. Senator Robert Menendez (D-NJ) today posted a letter to Santa Claus on Huffington Post. In it, he wonders where Santa will relocate when the North Pole is melted. \nLink to letter: http://www.huffingtonpost.com/robert-menendez/a-letter-to-santa-claus_b_800669.html \nFull text:\nDear Santa Claus,\n      I am writing out of concern, because you may have to move from the North Pole due to the dramatic melting of Arctic sea ice.  The Navy’s chief oceanographer says that by the summer of 2020 the North Pole may not have summer ice and other scientists project that an ice-free Arctic is possible as soon as 2012!  \n      Scientists overwhelmingly agree that polar ice is melting because of greenhouse gas pollution and I am working hard to reduce these emissions.  But there is probably nothing we can do in time to save the North Pole.  I am worried about your safety and your ability to deliver billions of Christmas gifts if the ice cap on the North Pole no longer stays frozen all year.  What will happen to your house, your workshop, the elves’ houses and your reindeer barns?  \n      I want you to know that if you want to relocate to the beautiful state of New Jersey, I would be proud to assist you.  But given the climate you are accustomed to, I will understand if you would like to relocate to the South Pole.  Just be sure not to move to the Antarctic Peninsula or West Antarctic ice sheet, areas that are also experiencing rapid ice melt.  \n      Please know that I will work to mobilize the U.S. federal government to assist when you relocate.  I am sure we can both agree that on a warming planet, we need to do all we can to save Christmas.      \nSincerely,Robert MenendezU.S. Senator\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9a9b2dbf-5912-40dc-962b-2492702a6ed3,\"Menendez, Original Senate Author of Zadroga Bill, Hails Passage of 9/11 Responder Health Legislation\n                    \n                            Issue was considered for more than six years in Congress\n                    \n                      December 22, 2010\n                     WASHINGTON -- Today, the Senate passed the James Zadroga Act to guarantee medical screening and treatment and compensation for responders who were made sick by the toxic air around Ground Zero. U.S. Senator Robert Menendez (D-NJ), who introduced the first version of the Zadroga bill in the Senate, hailed the passage after Congress considered the issue for more than six years:\n\n\"\"James Zadroga was a New Jersey resident and New York City police officer who selflessly spent 450 hours at Ground Zero helping the recovery efforts, breathing toxic air with nothing to protect his lungs but a paper mask. In fact, for nine years a paper mask was all that heroes like James were ever given to protect their health. Today, that changed. \n“For thousands of 9/11 heroes, this might be the first merry Christmas they've had in nine years. Those who were made sick by the toxic air that hung over Ground Zero can finally be assured that they will have the medical attention they desperately need. \n“A grateful nation honors the responders not just at 9/11 commemorations, but by ensuring that their health is protected. Finally, we are showing the type of gratitude that these heroes have always deserved. And as we do, we must never forget those who have already died as a result of their patriotic desire to respond when their nation called.\"\"\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=953ea2df-3bbf-40d2-92c2-c7a42035f350,\"Menendez Report: Lockerbie Bomber's Release from Prison Not Medically Justified, Was Influenced by Threat of Commercial Warfare\n                    \n                            Senators refute basis of “compassionate” release, detail motivations for governments, call for return of bomber to prison\n                    \n                      December 21, 2010\n                     WASHINGTON – On the 22nd anniversary of the terrorist bombing of Pan Am Flight 103 over Lockerbie, Scotland, U.S. Senators Robert Menendez (D-NJ), Frank Lautenberg (D-NJ), Kirsten Gillibrand (D-NY) and Charles Schumer (D-NJ) have concluded in a report that convicted bomber Abdelbaset al-Megrahi’s release from Scottish prison was not medically justified. Justice Undone: The Release of The Lockerbie Bomber, which follows a five-month investigation spearheaded by Menendez’s office, also details political and commercial motivations that influenced the various governments involved in his release, and it calls for al-Megrahi be returned to prison.\nThe report’s highlights include:\nAn analysis of new and existing information regarding al-Megrahi’s medical treatment and condition show that the three-months-to-live prognosis was unwarranted and, thus, the basis for his release on compassionate grounds was unjustified\nVarious political and commercial interests motivated each government involved, including the real threat of commercial warfare by the Libyan government against the UK\nThe UK’s actions violated a 1998 justice agreement with the U.S. that was meant to keep anyone convicted of the Lockerbie bombing inside of Scotland\nThe senators call for the return of al-Megrahi to prison, formal apologies to the victims’ families by the Scottish and UK Governments and independent investigations into the release by the UK Government, the US State Department and the US intelligence community\nAl-Megrahi was convicted in January, 2001 for the Lockerbie bombing, which claimed 270 lives, including 189 Americans. He was serving his life sentence at the HMP Greenrock prison in Scotland until August 20, 2009, when he was released on compassionate grounds. At the time, Scottish Justice Secretary Kenny McCaskill said that the convicted terrorist was in his “final days” and that a three month prognosis was a “reasonable estimate.”\nAl-Megrahi was greeted with a hero’s welcome upon his arrival in Libya, and has been reportedly living in a luxury villa. Despite his three-month prognosis, he is still alive 16 months after his release.\nJustice Undone is the most comprehensive report on this matter to date, encompassing all aspects of the decision, including motivations and justification for al-Megrahi’s release. It incorporates new information gathered from interviews of those with knowledge of al-Megrahi’s medical care – some who were interviewed on the condition of confidentiality. It also incorporates analysis from renowned cancer experts.\nMenendez’s office undertook the investigation by compiling, reviewing and analyzing all available information about al-Megrahi’s release; contacting experts; making contacts both domestic and abroad; and conducting interviews in the US, Britain and Scotland.\nFULL REPORT AVAILABLE HERE: http://menendez.senate.gov/imo/media/doc/Justice%20Undone%20-%20The%20Release%20of%20the%20Lockerbie%20Bomber%20%28Final%29.pdf \nExecutive summary of report:\nExecutive Summary\nOn December 21, 1988, Pan Am Flight 103 exploded over Lockerbie, Scotland, killing 270 people, 189 of whom were U.S. citizens.  Twelve years later, Libyan national, Abdelbaset Ali Mohmed al-Megrahi, was convicted of conspiracy for planting the bomb that brought down Pan Am Flight 103, and was sent to a Scottish prison to serve a life sentence.  On August 20, 2009, however, Scottish Government officials released al-Megrahi on grounds of compassion given his diagnosis of prostate cancer and a stated prognosis of three months to live.  His release directly contradicted an agreement between the U.S. and U.K. governments that anyone convicted in the terrorist bombing would serve out their term in a Scottish prison.  At the writing of this report, almost 16 months later, al-Megrahi is still alive. \nIn June 2010, United States Senator Robert Menendez (NJ), joined by Senators Frank Lautenberg (NJ), Charles Schumer (NY), and Kirsten Gillibrand (NY), undertook an investigation of al-Megrahi’s release.  The investigation focused on two critical questions:\nCould medical science have supported al-Megrahi’s three-month prognosis? \nIf not, what motivated the U.K. and Scottish Governments to release al-Megrahi?\nI. No Medical Justification for Release on Compassionate Grounds, Political Influence Evident The three-month prognosis given to al-Megrahi by Scottish doctors was inaccurate and unsupported by medical science.  During the course of this investigation, Scottish officials presented two conflicting factual scenarios: one stating that al-Megrahi did not receive chemotherapy and another stating that he did.  Neither scenario supports a three month prognosis.\nFirst, according to prostate cancer experts, his condition at the time of his release did not fit the profile of a patient with just three months to live.  He was not bed-ridden nor so physically frail that he could not undergo chemotherapy or other treatments.  If, as the Scottish Government states, al-Megrahi had not yet begun standard chemotherapy treatments, then it would be impossible for a three-month prognosis to be accurate.  This is because, according to prostate cancer experts, patients in al-Megrahi’s condition who are given chemotherapy live on average 17.5 to 19.2 months longer – much longer than the three months to live prognosis given by the Scottish Government. \nEven if, as one Scottish official stated, al-Megrahi had actually begun chemotherapy while in Scottish custody, his three-month prognosis was still medically unjustifiable.  Not only do such patients live for an average of a year and a half, but there would not have been enough time to determine whether he had responded to chemotherapy before he was released to Libya. \nIn addition to the inaccurate prognosis, the process used to determine al-Megrahi’s compassionate release was incredibly flawed.  The Scottish Government consulted well-respected cancer specialists on al-Megrahi’s release, but none of them agreed that al-Megrahi had three months or fewer to live.  Instead, the Scottish Government based its decision on the opinion of general practitioners without medical training or expertise in prostate cancer. \nThese same doctors were clearly involved in political, inter-governmental discussions regarding al-Megrahi, raising questions about whether they were influenced to give an incorrect prognosis through contacts with Libyan officials and doctors.  In view of the flawed process, we believe that the Scottish Government simply intended to use compassionate release as political cover for returning al-Megrahi to Libya – regardless of whether his physical condition met the requirements.\nII. The U.K. and Scotland Had Ample Motivation to Release al-Megrahi, including the threat of commercial warfare by Libya Given the obviously flawed medical justification for al-Megrahi’s release, this investigation considered the reasons why the U.K. and Scottish Governments might have wanted to return al-Megrahi to Libya. While these governments refused to respond to questions, the investigation revealed that motivations behind releasing al-Megrahi were unique to each government. \nThe U.K. pushed for the release because of its expanding business ties to Libya. We believe that Scotland was motivated by pressure from the U.K., Libya, and Qatar – as well as its own interest in participating on the international stage. \nThe U.K. Government played a direct, critical role in al-Megrahi’s release. The U.K. has always been protective of its energy companies, especially BP, which has strong historical and economic ties to the government, and it has a history of intervening with foreign governments on behalf of BP.  Libyan oil and natural resources were extremely attractive to U.K. energy companies, and, at the time of al-Megrahi’s release, BP was negotiating a $900 million oil exploration deal that would secure a much-needed reliable source of energy for the U.K.  Keeping al-Megrahi in prison threatened this oil agreement, as well as other profitable trade deals and investments with Libya.  \nThe threat of commercial warfare was a motivating factor. The U.K. knew that in order to maintain trade relations with Libya, it had to give into political demands.  Faced with the threat of losing the lucrative BP oil deal and other commercial ties, the U.K. agreed to include al-Megrahi’s release in a Prisoner Transfer Agreement (PTA) with Libya.  Around the same time as al-Megrahi’s release, the U.K. and Libya were moving forward with other lucrative deals.  Normalizing relations with Libya – and al-Megrahi’s release – clearly benefited U.K. business interests.\nAt the same time, we have concluded that a number of political factors played a role in Scotland’s decision to release al-Megrahi. \nEvidence suggests that U.K. officials pressured Scotland to facilitate al-Megrahi’s release.  The U.K. communicated to the Scottish Government that there were significant national interests in expanding trade relations with Libya.  While Scotland has enjoyed a measure of independence from the U.K. since 1998, the U.K. government retains considerable powers over Scottish affairs.  Thus, it would not be surprising that the Scottish Government would be susceptible to pressure from the U.K.  The Scottish Government may also have been influenced by lobbying from the Qatar government and the opportunity act independently on the world stage.\nThe U.K.’s actions also violated the 1998 Lockerbie Justice Agreement.  This agreement, signed by the U.K. and the United States, held that individuals convicted of the Pan Am Flight 103 bombing would serve out their sentences in the U.K.  By facilitating al-Megrahi’s release, the U.K. Government violated this carefully negotiated agreement and left the families of the Lockerbie bombing victims without justice. \nWe are bringing forth a series of recommendations to ensure that justice prevails in this matter. They include: the return of al-Megrahi to prison pending an independent assessment of his health; an apology to victims’ families by the U.K. and Scottish Governments; and independent investigations into al-Megrahi’s release by the U.K. Government and the U.S. State Department.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8812c051-eb71-4ff0-9b39-e9fe945243d5,\"Senators Menendez, Johanns Applaud House Passage of Bipartisan Bill to ensure Housing for People With Disabilities\n                    \n                      December 21, 2010\n                     WASHINGTON – Today, the U.S. House of Representatives unanimously approved bipartisan legislation that will expand affordable housing options for Americans with disabilities. The Frank Melville Supportive Housing Investment Act, sponsored by Senators Robert Menendez (D-NJ) and Mike Johanns (R-NE) in the Senate and Representatives Christopher Murphy (D-CT) and Judy Biggert (R-IL) in the House, will likely quadruple the number of new affordable rental units built each year for people with disabilities by the U.S. Department of Housing and Urban Development's main program to provide affordable housing for people with disabilities.  The bill accomplishes this while maintaining the current level of funding for that program by allowing non-profit and private housing developers to use the same financing options that most other HUD programs already use. The legislation was approved in the Senate unanimously last week and now heads to the President to be signed into law. “At a time when more than 12 million Americans -- including 1.3 million with disabilities -- spend more than half of their income on rent, the Frank Melville Act will help ensure that people with disabilities can keep a roof over their heads,” said Menendez, who is Chairman of the Banking Subcommittee on Housing, Transportation and Community Development. “People with disabilities often face harder obstacles in accessing affordable housing that allows them to live independently, and that problem is worse in tough economic times. The Frank Melville Act will help make a difference in the lives of Americans with disabilities, and I’m proud to have championed it in the Senate.”\n\n“Reasonably priced housing is a critical piece of the puzzle for courageous people who are overcoming disabilities and seeking to become independent,” said Johanns. “This bill will streamline efforts to provide them adequate and affordable homes and ensure no one slips through the cracks. I’m pleased my colleagues agreed that this bill is the right direction to provide stability for these vulnerable citizens.”\n\nThe legislation would reform HUD's Section 811 program by:\n•    Approximately quadrupling the number of new rental homes to low-income people with disabilities using the same level of appropriations.•    Allowing people with disabilities to live independently rather than in more expensive institutions•    Allowing people with disabilities to live in developments that are integrated with people who do not have disabilities rather than being segregated•    Modernizing and integrating the financing of Section 811 housing with other affordable housing tools, including the Low Income Housing Tax Credits, HOME program funds, Community Development Block Grants, and bond financing.•    Create needed construction jobs in building homes for people with disabilities.\nThe bill has been endorsed by a broad coalition of advocacy groups including:Consortium for Citizens with Disabilities (CCD), American Association on Intellectual and Developmental Disabilities, American Network of Community Options and Resources, Association of University Centers on Disabilities, Autism Society of America, Bazelon Center for Mental Health Law, Burton Blatt Institute, Easter Seals, Lutheran Services in America, Mental Health America, National Alliance on Mental Illness, National Association of Councils on Developmental Disabilities, National Association of County Behavioral Health and Developmental Disability Directors, National Council for Community Behavioral Healthcare, National Disability Rights Network, National Multiple Sclerosis Society, National Spinal Cord Injury Association, The Arc of the United States, United Cerebral Palsy, United Jewish Communities, and United Spinal Association.\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4715ef32-e40e-4f4a-8939-ca54ec05ed7f,\"Dodd, Menendez Unveil Comprehensive Legislation to Address Autism\n                    \n                            Menendez will take the baton on Combating Autism Act from Dodd in next session of Congress Legislation includes research, health care and support services components\n                    \n                      December 20, 2010\n                     WASHINGTON –Senators Christopher Dodd (D-CT) and Robert Menendez (D-NJ) today unveiled legislation to comprehensively address autism and support those living with it. Menendez will re-introduce the bill early in the next session of Congress. The legislation includes provisions to boost autism research, provide support services for affected individuals and families and to improve the health care of those living with autism.\n\nDodd said: “Autism can have a devastating effect on children and their families. Families struggling to raise a child with autism deserve our support, and they deserve answers. This legislation will help move us toward a better understanding of autism and help better support those living with this difficult disability. These efforts must carry on in the years to come, and I thank Senator Menendez for continuing to champion this important legislation in the next Congress.”\nMenendez said: “Families in New Jersey, more than anywhere else, understand that we need to address autism on multiple fronts – with research, with early treatment and with a support structure and services for affected individuals and families. I am proud to join with Senator Dodd in introducing the kind of comprehensive initiative that is needed, and I thank him not only for his work on this legislation, but for his tireless advocacy for those affected by autism over the years. I intend to carry on Senator Dodd’s legacy by sponsoring and re-introducing this bill early in the next session of Congress.”\n\nSpecifically the bill will:\nExtends Existing Authorizations•    Ensures that the critical programs established under the Combating Autism Act of 2006 continue, including CDC surveillance programs, HRSA intervention and training programs, and the Interagency Autism Coordinating Committee (IACC).  \nMakes Investments in Service Related Activities•    Creates a one-time, single year planning and multiyear service provision demonstration grant programs to States, public, or private nonprofit entities;\n•    Establishes a national technical assistance center to gather and disseminate information on evidence-based treatments, interventions, and services; and\n•    Authorizes multiyear grants to provide interdisciplinary training, continuing education, technical assistance, and information to improve services rendered to individuals with ASD and their families.\nEstablishes a National Institute of Autism Spectrum Disorders•    Creates a new National Institute of Autism Spectrum Disorders within NIH, to consolidate funding and accelerate research focused on prevention, treatment, services, and cures.  This cross-agency institute will be able to have a coordinated and targeted research agenda aimed at improving the lives of individuals with autism.  \nThe original Combating Autism Act of 2006 was a bi-partisan effort which expanded federal investment for Autism research through NIH, services, diagnosis and treatment through HRSA, and surveillance and awareness efforts through the CDC.  In total, CAA authorized $ 1 billion over five years, thereby having increased federal spending on Autism by 50 percent.   As part of the negotiations on the bill, however, a FY11 sunset provision was included on all authorizations.  As a result, some existing federal efforts through NIH, HRSA, and CDC would cease to exist in the coming Fiscal Year without any action. This reauthorization bill, introduced today, will not only extend these important authorizations but also make exciting investment in services related activities and create a new National Institute of Autism Spectrum Disorders within NIH.\n                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5234449e-6c8d-4124-b165-8aa7a6b54b00,\"Menendez and Lautenberg Announce Federal Funding for New Jersey Fire Departments\n                    \n                      December 17, 2010\n                     WASHINGTON — U.S. Sens.Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that five New Jersey fire departments will receive federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  AFG funding can be invested in vehicle acquisition, training, equipment, personal protective equipment, wellness programs, and other support for stations and facilities. \nSenator Lautenberg is the Chairman of the Senate Appropriations Subcommittee on Homeland Security that funds the AFG program.\n\n“Our firefighters risk their safety to protect our communities,” Menendez said.  “These investments in our local fire departments will help keep our families and neighborhoods safe by keeping our firefighters fully prepared – they deserve at least as much.”\n“Our firefighters put their lives in danger every day to protect us and keep our families and communities safe,” Lautenberg said. “This grant program makes a direct investment in New Jersey’s local emergency personnel so that our first responders have the best equipment and training to do their job.” \nThe $167,088 from the AFG program will be distributed in New Jersey as follows:\n\n•    Rockaway - $47,250 to the Rockaway Township Fire Department for operations and safety expenses.•    Long Branch - $36,000 to the Long Branch Fire Department for operations and safety expenses.•    Bordentown - $34,438 to the Bordentown Township Fire District No. 2 for operations and safety expenses.•    Ringwood - $38,000 to the Skyline Lake Volunteer Fire Department for operations and safety expenses.•    Elwood - $11,400 to the Elwood Volunteer Fire Company for operations and safety expenses.\nThe AFG grants are awarded to fire departments and EMS organizations to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies.\nFor more information about the program, please visit: http://www.firegrantsupport.com/                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ca58d9be-f596-4356-93e0-dfd42f3381a7,\"'Tis the Season for Prepaid Debit Card Hidden Fees: Menendez Introduces Legislation to Protect Consumers\n                    \n                            Durbin, Merkley co-sponsor Prepaid Card Consumer Protection Act “Open loop” prepaid card market estimated to grow by $175 billion over three year period\n                    \n                      December 17, 2010\n                     WASHINGTON – As consumers flock to retailers during the holiday season and as the use of prepaid debit cards continues to expand rapidly, Senators Robert Menendez (D-NJ) today introduced new legislation to curb hidden fees associated with many of these cards. Co-sponsored by Senators Richard Durbin (D-IL) and Jeff Merkley (D-OR), the Prepaid Card Consumer Protection Act will eliminate some of the most egregious hidden fees, increase fee transparency for consumers and increase consumer protections. \nThis effort comes at a time when the usage of and reliance on prepaid cards is booming. According to an analysis by Mercator Advisory Group, the amount loaded onto “open loop” prepaid cards will increase 383 percent between 2009 and 2012, from $60.4 billion to $233.8 billion.\n\n“This holiday season, the weather outside isn’t the only thing frightful for shoppers,” said Menendez. “Responsible consumers are finding out the hard way that the purchasing power of many prepaid cards, is often much less than the dollar amount they loaded onto them. We need to ensure that families who rely on prepaid cards are not surprised by hidden fees and are not hit with fees that are totally unnecessary.”\n“Earlier this year, we began to rein in the abusive fees prepaid cards often charge consumers by ending overdraft fees and fees charged for the first monthly ATM withdrawal,” Durbin said. “These changes, however, are just the first step. Today’s legislation builds on the changes we’ve already begun to make and creates a new framework to ensure consumers aren’t fleeced by prepaid cards.”\n“In the classic Dr. Seuss story, it was the Grinch who stole Christmas.  Today, it’s hidden fees inside seemingly innocent pre-paid debit cards,” said Oregon Senator Jeff Merkley.  “This legislation cracks down on practices that strip wealth from working families and protects consumers from these unscrupulous deals.”\n\nPREPAID CARD CONSUMER PROTECTION ACT OF 2010SPONSORED BY SENATOR MENENDEZCO-SPONSORED BY ASSISTANT MAJORITY LEADER DURBIN AND SENATOR MERKLEY\n•    The Prepaid Card Consumer Protection Act of 2010 applies to prepaid cards, which are reloadable plastic cards often used as substitutes for checking accounts, debit cards, and sometimes credit cards\nTHE PROBLEMS•    Prepaid cards often come with a mountain of fees and very poor disclosure of those fees•    Prepaid cards do not have the same guaranteed consumer protections as debit cards and checking accounts, although they are marketed and used as substitutes for debit cards and checking accounts\nTHE SOLUTION\nThis bill provides for: \n•    Full disclosure of all fees before the consumer buys the card, including a wallet-sized summary of all fees and a toll-free telephone number for customer service•    Limits on the types of fees that can be charged, including a ban on overdraft fees, balance inquiry fees, customer service fees, fees for inactivity, account closure fees, and other types of fees•    Consumer protections for prepaid cards such as (1) Regulation E protection against loss or theft and (2) FDIC insurance to protect consumers’ money if the card company goes bankrupt.  Debit cards already have these consumer protections, but prepaid cards don’t•    The Consumer Financial Protection Bureau and the FDIC would issue regulations within 9 months of enactment\nSUPPORTERS\nConsumers Union and Consumer Federation of America\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=044959f1-b274-4b30-b842-7e2004237d27,\"Middle Class Tax Relief Package Signed into Law; Menendez Says it Will Make a \"\"Real Difference for Middle Class Families, Laid-Off Workers\"\" \n                    \n                      December 17, 2010\n                     WASHINGTON – Today, President Obama signed into law the middle class tax relief package, which includes income tax relief for middle class families, the protection of 1.6 million New Jerseyans from a surprise Alternative Minimum Tax hike, and critical assistance for laid off workers, among other important relief provisions.\nU.S. Senator Robert Menendez (D-NJ) supported the package. In addition to being a long-time leader on preventing Alternative Minimum Tax hikes, he led the fight to ensure the package included tax benefits for rail and bus transit commuters. He also helped to champion tax relief to spur the use of solar energy.Menendez released the following statement:\n\n\"\"These are tough times for many, and it is my priority to help make a real difference in the lives of middle class families and the hardest-hit workers. The tax relief package signed into law today will do just that. \n\"\"As a result of this action, taxes will actually decrease for middle class families starting on January 1, including an average payroll tax cut of $1,400 per household. Laid-off workers will be able to take care of their families. 1.6 million New Jerseyans will avoid a surprise Alternative Minimum Tax hike, which I have long championed. And I was proud to lead the effort that guarantees tax relief for rail and bus commuters, as well as tax relief that will help create jobs through solar energy.\n\"\"The decision of Republicans to prioritize millionaires and undertake shameful tactics in the process of getting to the compromise package stands in stark contrast to the Democrats prioritizing middle class families. In the end, enacting this package was not about tax breaks for millionaires, it was about guaranteeing tax relief for the middle class on January 1 and ensuring that laid off workers can keep food on the table. Debate about the future of our tax code will continue, and Democrats will continue to stand on the side of middle class families.\"\"\n\nMIDDLE CLASS RELIEF IN TAX PACKAGE:\nTax Cuts:\n•    Middle Class Tax Cuts: Extends tax relief of more than $3,000 for a typical working family, including doubling the value of the child tax credit (from $500 to $1000) •    Payroll Tax Cut: Creates a $120 billion payroll tax cut that is worth $1400 for the average New Jersey household ($71,000 in average income)•    Alternative Minimum Tax relief: Extends 2 years of AMT relief, protecting 1.6 million New Jerseyans from an additional tax bill of up to $5600 (Menendez has been a lead sponsor of AMT relief legislation)•    Tax relief for transit riders: Extends provision which allow commuters to receive up to $230 in transit benefits tax free (Menendez led the fight for inclusion)•    Low-Income Child Tax Credit and Earned Income Tax Credit: Extends tax credit improvements that will ensure a working family with 3 children would continue to receive a tax cut of more than $2,000•    Higher Education Tax Credit: Extends the American Opportunity Tax Credit, a partially refundable tax credit worth up to $2,500 that helps 8 million students and their families cover the cost of tuition\nJob Creation:\n•    1603: Extends the 1603 Treasury Grant program, which has been widely credited with maintaining strong growth in the renewable energy sector in 2009 and 2010, despite the severe economic downturn and has saved tens of thousands of jobs in the wind and solar industries (Menendez helped lead the fight for inclusion)•    Unemployment insurance: A 13 month extension of federal support for 99 weeks of unemployment insurance for laid off workers --  a policy that most economists agree is one of the most effective measures to create jobs•    Tax Cuts for Business Investment: Creates the largest temporary investment incentive in American history by allowing businesses to expense all of their qualified investments in 2011.  Estimates from the Treasury Department indicate this could generate more than $50 billion in additional investment in the US next year (Menendez has been a co-sponsor of legislation to create this cut)•    No Capital Gains Taxes for Certain Small Business Investment: Extends provision to encourage people to invest in start-up small businesses by completely exempting these investments from capital gains taxes (Menendez was Cosponsor of original legislative proposal)•    R & D Tax Credit: Extends the Research and Development tax credit for 2 years which incentivizes companies to create jobs in America by giving them a tax credit for qualified research spending.  The R&D tax credit is truly a jobs credit with 70% or more of the credit attributable to salaries and wages of U.S. workers performing research in the United States  (Menendez is a co-sponsor of legislation to make this credit permanent)•    15 Year Depreciation for Restaurant and Retail Improvements: Extends for 2 years a provision that incentivizes restaurants to upgrade by allowing them to write off the costs faster (15 years as opposed to 39 years)  (Menendez is a co-sponsor of legislation to make this credit permanent)\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6c6277e5-5a17-4165-aa6d-c33b266a363c,\"Menendez Hails Senate Passage of Middle Class Tax Relief Package\n                    \n                      December 15, 2010\n                     WASHINGTON – Today, the middle-class tax relief package passed the U.S. Senate by a 81-19 vote. U.S. Senator Robert Menendez (D-NJ) voted in favor of the package, which includes income tax relief for middle class families, the protection of 1.6 million New Jerseyans from a surprise Alternative Minimum Tax hike, and critical assistance for laid off workers, among other important relief provisions. \nIt also includes a provision Menendez led the fight to include, which will extend a tax benefit for transit riders, as well as tax relief to spur the use of solar energy, which Menendez helped to champion. \nThe package must pass the House of Representatives before being sent to President Obama for his signature. Menendez released the following statement:\n\"\"Middle class families and laid-off workers are facing tough times, and my priority is to help make their lives better. The tax relief package we passed today will make a real difference in the lives of middle class families and the hardest-hit workers, and it will help our fragile economy continue to grow. \n\n“We are not only preventing a middle class tax increase, we are actually cutting taxes for the average New Jersey family by $1,400. We are protecting 1.6 million New Jersey taxpayers from a surprise Alternative Minimum Tax hike of up to $5,600. We are ensuring that laid off workers can take care of their families until enough new jobs are available. And I am proud to have led the efforts to provide rail and bus commuters with significant tax relief and to create new jobs in the solar energy sector that we will spur with tax relief. \n“It is astounding that Republicans prioritized millionaires and adopted questionable negotiating tactics to protect them, including working in lock-step to deny medical treatment for ailing 9/11 responders. But for many of us, this is not about whether or not to support tax cuts for millionaires, it is about whether we are going to stand up for the middle class, protect them from the tax increase that’s looming two weeks from now and actually provide significant additional relief beyond that. This package delivers for middle class families and the hardest-hit workers, and I will continue to work to protect middle class families as we move forward.”\n\nMIDDLE CLASS RELIEF IN TAX PACKAGE:\nTax Cuts:\n•    Middle Class Tax Cuts: Extends tax relief of more than $3,000 for a typical working family, including doubling the value of the child tax credit (from $500 to $1000)\n•    Payroll Tax Cut: Creates a $120 billion payroll tax cut that is worth $1400 for the average New Jersey household ($71,000 in average income)\n•    Alternative Minimum Tax relief: Extends 2 years of AMT relief, protecting 1.6 million New Jerseyans from an additional tax bill of up to $5600 (Menendez has been a lead sponsor of AMT relief legislation)\n•    Tax relief for transit riders: Extends provision which allow commuters to receive up to $230 in transit benefits tax free (Menendez led the fight for inclusion)\n•    Low-Income Child Tax Credit and Earned Income Tax Credit: Extends tax credit improvements that will ensure a working family with 3 children would continue to receive a tax cut of more than $2,000\n•    Higher Education Tax Credit: Extends the American Opportunity Tax Credit, a partially refundable tax credit worth up to $2,500 that helps 8 million students and their families cover the cost of tuition\nJob Creation:\n•    1603: Extends the 1603 Treasury Grant program, which has been widely credited with maintaining strong growth in the renewable energy sector in 2009 and 2010, despite the severe economic downturn and has saved tens of thousands of jobs in the wind and solar industries (Menendez helped lead the fight for inclusion)\n•    Unemployment insurance: A 13 month extension of federal support for 99 weeks of unemployment insurance for laid off workers --  a policy that most economists agree is one of the most effective measures to create jobs\n•    Tax Cuts for Business Investment: Creates the largest temporary investment incentive in American history by allowing businesses to expense all of their qualified investments in 2011.  Estimates from the Treasury Department indicate this could generate more than $50 billion in additional investment in the US next year (Menendez has been a co-sponsor of legislation to create this cut)\n•    No Capital Gains Taxes for Certain Small Business Investment: Extends provision to encourage people to invest in start-up small businesses by completely exempting these investments from capital gains taxes (Menendez was Cosponsor of original legislative proposal)\n•    R & D Tax Credit: Extends the Research and Development tax credit for 2 years which incentivizes companies to create jobs in America by giving them a tax credit for qualified research spending.  The R&D tax credit is truly a jobs credit with 70% or more of the credit attributable to salaries and wages of U.S. workers performing research in the United States  (Menendez is a co-sponsor of legislation to make this credit permanent)\n•    15 Year Depreciation for Restaurant and Retail Improvements: Extends for 2 years a provision that incentivizes restaurants to upgrade by allowing them to write off the costs faster (15 years as opposed to 39 years)  (Menendez is a co-sponsor of legislation to make this credit permanent)\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9ec86685-bfa6-4ffd-bc60-015bb92c5082,\"With Airlines Making $4.3 Billion from Added Fees, Menendez Says “Clear Airfares Act” Needed to Protect Consumers\n                    \n                            Menendez’s bill would address hidden fees by giving consumers an upfront breakdown of potential costs\n                    \n                      December 14, 2010\n                     WASHINGTON – New numbers from the Bureau of Transportation Statistics show that airlines took in at least $4.3 billion from additional fees in 2010 – and the actual figure is likely much higher, since certain additional fees are not counted (http://travel.usatoday.com/flights/post/2010/12/airline-fees/134773/1). \nU.S. Senator Robert Menendez (D-NJ) is the author of the Clear Airfares Act, which would guarantee consumers a breakdown of all airline fees before they purchase a ticket. He said today that hidden fees likely account for a large portion of the $4.3 billion, which is another reason to pass his legislation. \n\n\"\"The airline consumer was hit with a fee of more than $4.3 billion this year, and much of it came by surprise,” said Menendez. “Hidden airline fees are impacting family budgets, which is why we need to finally provide travelers with an upfront breakdown of airline fees by passing my Clear Airfares Act. At a time when families are watching every last penny, they deserve to be given a full understanding not just of how much it will cost them to get to the airport, but how much it will cost to actually get to their destination.\"\"\n\nMenendez’s Clear Airfares provision aims to bring transparency to the price of flying through a full, clear and upfront breakdown of airfares and fees. Before a consumer purchases a ticket on the Internet, the legislation would require airlines and third-party websites to give consumers a complete and understandable listing of his or her particular airfare, as well as any other possible fees that might be incurred on the flight (such as baggage, seat assignments, etc.). \nCurrently, consumers must click to peripheral web pages and wade through often confusing text to understand whether or not their airfare includes surcharges and what other taxes and fees may have been added.\nThe Senate-passed version of the Federal Aviation Administration reauthorization bill includes a slightly-modified version of Clear Airfares, which would provide consumers searching for airline tickets with a full list of airfares and potential additional fees before they pay. The conference committee negotiating the final version of the FAA bill has yet to complete its work, and if it doesn’t gain final passage before the end of the Congressional session, work on the legislation will start from scratch next year.\n                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7edd31c1-8cc6-4eb7-b435-7f551b03e3a1,\"Menendez Statement on Today's Middle Class Tax Relief Vote\n                    \n                      December 13, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) released the following statement on the key Senate vote on the middle-class tax relief package, scheduled for this afternoon:\n\n\"\"Today’s vote is crucial for delivering relief to middle class families and the workers hit hardest by this economy. If we are going to ensure that middle class taxes do not rise on January 1, that laid-off workers can keep their families afloat and that the average New Jersey household will receive $1,400 in payroll tax relief, this is an important moment. The negotiations to get to this point revealed much about the priorities of each party, and the tactics employed by Republicans to support their priorities do not sit well with me and many other Democrats. The bottom line is that most of my colleagues recognize, as I do, that this package will make a real difference in the lives of middle class families, and I believe that it will clear this hurdle today with strong support.” \n\nMIDDLE CLASS RELIEF IN TAX PACKAGE:\nTax Cuts:•    Middle Class Tax Cuts: Extends tax relief of more than $3,000 for a typical working family, including doubling the value of the child tax credit (from $500 to $1000) •    Payroll Tax Cut: Creates a $120 billion payroll tax cut that is worth $1400 for the average New Jersey household ($71,000 in average income)•    Alternative Minimum Tax relief: Extends 2 years of AMT relief, protecting 1.6 million New Jerseyans from an additional tax bill of up to $5600 (Menendez has been a lead sponsor of AMT relief legislation)•    Tax relief for transit riders: Extends provision which allow commuters to receive up to $230 in transit benefits tax free (Menendez led the fight for inclusion)•    Low-Income Child Tax Credit and Earned Income Tax Credit: Extends tax credit improvements that will ensure a working family with 3 children would continue to receive a tax cut of more than $2,000•    Higher Education Tax Credit: Extends the American Opportunity Tax Credit, a partially refundable tax credit worth up to $2,500 that helps 8 million students and their families cover the cost of tuition\nJob Creation:•    1603: Extends the 1603 Treasury Grant program, which has been widely credited with maintaining strong growth in the renewable energy sector in 2009 and 2010, despite the severe economic downturn and has saved tens of thousands of jobs in the wind and solar industries (Menendez helped lead the fight for inclusion)•    Unemployment insurance: A 13 month extension of federal support for 99 weeks of unemployment insurance for laid off workers --  a policy that most economists agree is one of the most effective measures to create jobs•    Tax Cuts for Business Investment: Creates the largest temporary investment incentive in American history by allowing businesses to expense all of their qualified investments in 2011.  Estimates from the Treasury Department indicate this could generate more than $50 billion in additional investment in the US next year (Menendez has been a co-sponsor of legislation to create this cut)•    R & D Tax Credit: Extends the Research and Development tax credit for 2 years which incentivizes companies to create jobs in America by giving them a tax credit for qualified research spending.  The R&D tax credit is truly a jobs credit with 70% or more of the credit attributable to salaries and wages of U.S. workers performing research in the United States  (Menendez is a co-sponsor of legislation to make this credit permanent)•    15 Year Depreciation for Restaurant and Retail Improvements: Extends for 2 years a provision that incentivizes restaurants to upgrade by allowing them to write off the costs faster (15 years as opposed to 39 years)  (Menendez is a co-sponsor of legislation to make this credit permanent)\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=abe5bdfc-d99a-44ec-b11e-59de5e0299b0,\"Menendez Applauds Senate Vote to Advance Middle Class Tax Relief Package\n                    \n                      December 13, 2010\n                     WASHINGTON – Today, the middle-class tax relief package cleared its most significant hurdle in the U.S. Senate when more than the necessary 60 senators voted to limit further debate and proceed to a final vote (the vote will be finalized later this evening when Senators facing travel delays are able to vote). U.S. Senator Robert Menendez (D-NJ) voted in favor of the package, which includes income tax relief for middle class families, the protection of 1.6 million New Jerseyans from a surprise Alternative Minimum Tax hike, and critical assistance for laid off workers, among other important relief provisions. \nIt also includes a provision Menendez led the fight to include, which will extend a tax benefit for transit riders, as well as tax relief to spur the use of solar energy, which Menendez helped to champion.\nThe Senate will vote on final passage of the package later this week. Menendez released the following statement:\n\n\"\"My goal is to ensure that middle class families get actual tax relief instead of getting slammed by an increase on January 1, that laid-off workers can take care of their families and that we do not let the fragile economy slide back into recession. This package accomplishes that, and we are now an important step closer to delivering relief to middle class families and the workers hit hardest by this economy. I am proud to have led the fight to include an important tax benefit for transit commuters and to have championed the tax relief to spur the use of solar energy. Throughout this process, Republicans have prioritized millionaires and adopted questionable negotiating tactics to protect them, which does not sit well with me or many others. At the same time, Democrats have shown clearly that middle class families are our priority. This will serve as the basis of an ongoing debate that will impact the direction of our country.”\n\nMIDDLE CLASS RELIEF IN TAX PACKAGE:\nTax Cuts:•    Middle Class Tax Cuts: Extends tax relief of more than $3,000 for a typical working family, including doubling the value of the child tax credit (from $500 to $1000) •    Payroll Tax Cut: Creates a $120 billion payroll tax cut that is worth $1400 for the average New Jersey household ($71,000 in average income)•    Alternative Minimum Tax relief: Extends 2 years of AMT relief, protecting 1.6 million New Jerseyans from an additional tax bill of up to $5600 (Menendez has been a lead sponsor of AMT relief legislation)•    Tax relief for transit riders: Extends provision which allow commuters to receive up to $230 in transit benefits tax free (Menendez led the fight for inclusion)•    Low-Income Child Tax Credit and Earned Income Tax Credit: Extends tax credit improvements that will ensure a working family with 3 children would continue to receive a tax cut of more than $2,000•    Higher Education Tax Credit: Extends the American Opportunity Tax Credit, a partially refundable tax credit worth up to $2,500 that helps 8 million students and their families cover the cost of tuition\nJob Creation:•    1603: Extends the 1603 Treasury Grant program, which has been widely credited with maintaining strong growth in the renewable energy sector in 2009 and 2010, despite the severe economic downturn and has saved tens of thousands of jobs in the wind and solar industries (Menendez helped lead the fight for inclusion)•    Unemployment insurance: A 13 month extension of federal support for 99 weeks of unemployment insurance for laid off workers --  a policy that most economists agree is one of the most effective measures to create jobs•    Tax Cuts for Business Investment: Creates the largest temporary investment incentive in American history by allowing businesses to expense all of their qualified investments in 2011.  Estimates from the Treasury Department indicate this could generate more than $50 billion in additional investment in the US next year (Menendez has been a co-sponsor of legislation to create this cut)•    Percent Capital Gains for Certain Small Business Investment: Extends provision to encourage people to invest in start-up small businesses by completely exempting these investments from capital gains taxes (Menendez was Cosponsor of original legislative proposal)•    R & D Tax Credit: Extends the Research and Development tax credit for 2 years which incentivizes companies to create jobs in America by giving them a tax credit for qualified research spending.  The R&D tax credit is truly a jobs credit with 70% or more of the credit attributable to salaries and wages of U.S. workers performing research in the United States  (Menendez is a co-sponsor of legislation to make this credit permanent)•    15 Year Depreciation for Restaurant and Retail Improvements: Extends for 2 years a provision that incentivizes restaurants to upgrade by allowing them to write off the costs faster (15 years as opposed to 39 years)  (Menendez is a co-sponsor of legislation to make this credit permanent)\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=74d5ae09-6997-4647-bd12-70ac0f4cd920,\"Menendez Announces Intention to Vote in Favor of Middle-Class Tax Relief Package\n                    \n                            Senator highlights important relief for middle class families, laid off workers, economy\n                    \n                      December 10, 2010\n                     NEWARK, NJ – U.S. Senator Robert Menendez (D-NJ) said today that he intends to vote in favor of the middle-class tax relief package next week. He stressed the need to enact income tax relief for middle class families, the protection of 1.6 million New Jerseyans from a surprise Alternative Minimum Tax hike, and critical assistance for laid off workers, among other important relief provisions included in the package. He released the following statement:\n\n\"\"My focus is on delivering tax relief for middle class families and ensuring that the workers hit hardest by the tough economy can keep their families afloat. The bottom line is that this package will make a real difference in the lives of middle class families and families affected by layoffs, and it will help our fragile economy recover, rather than slide back into recession.\n\"\"Passing this legislation will guarantee that middle class income taxes will not rise on January 1, protect 1.6 million New Jerseyans from a surprise Alternative Minimum Tax hike, preserve unemployment insurance for laid off workers, cut payroll taxes to deliver $1,400 in relief for the average New Jersey household and help families afford college for their children, among other middle class relief. It also has several provisions I championed, including tax relief for transit riders and to spur the use of solar energy.  \"\"The shameful tactics employed by our Republican colleagues in getting to this package have clearly demonstrated which families are prioritized by Democrats and which are prioritized by Republicans. President Obama secured real tax relief for middle class workers in the package, and we have to ensure that it is passed into law.”\n\nMIDDLE CLASS RELIEF IN TAX PACKAGE:\nTax Cuts:\nMiddle Class Tax Cuts: Extends tax relief of more than $3,000 for a typical working family, including doubling the value of the child tax credit (from $500 to $1000) \nPayroll Tax Cut: Creates a $120 billion payroll tax cut that is worth $1400 for the average New Jersey household ($71,000 in average income)\nAlternative Minimum Tax relief: Extends 2 years of AMT relief, protecting 1.6 million New Jerseyans from an additional tax bill of up to $5600 (Menendez has been a lead sponsor of AMT relief legislation)\nTax relief for transit riders: Extends provision which allow commuters to receive up to $230 in transit benefits tax free (Menendez led the fight for inclusion)\nLow-Income Child Tax Credit and Earned Income Tax Credit: Extends tax credit improvements that will ensure a working family with 3 children would continue to receive a tax cut of more than $2,000\nHigher Education Tax Credit: Extends the American Opportunity Tax Credit, a partially refundable tax credit worth up to $2,500 that helps 8 million students and their families cover the cost of tuition\nJob Creation:\n1603: Extends the 1603 Treasury Grant program, which has been widely credited with maintaining strong growth in the renewable energy sector in 2009 and 2010, despite the severe economic downturn and has saved tens of thousands of jobs in the wind and solar industries (Menendez helped lead the fight for inclusion)\nUnemployment insurance: A 13 month extension of federal support for 99 weeks of unemployment insurance for laid off workers --  a policy that most economists agree is one of the most effective measures to create jobs\nTax Cuts for Business Investment: Creates the largest temporary investment incentive in American history by allowing businesses to expense all of their qualified investments in 2011.  Estimates from the Treasury Department indicate this could generate more than $50 billion in additional investment in the US next year (Menendez has been a co-sponsor of legislation to create this cut)\nR & D Tax Credit: Extends the Research and Development tax credit for 2 years which incentivizes companies to create jobs in America by giving them a tax credit for qualified research spending.  The R&D tax credit is truly a jobs credit with 70% or more of the credit attributable to salaries and wages of U.S. workers performing research in the United States  (Menendez is a co-sponsor of legislation to make this credit permanent)\n15 Year Depreciation for Restaurant and Retail Improvements: Extends for 2 years a provision that incentivizes restaurants to upgrade by allowing them to write off the costs faster (15 years as opposed to 39 years)  (Menendez is a co-sponsor of legislation to make this credit permanent)\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c5af9c4b-365f-4516-ae7c-169713f02c9c,\"Menendez Takes The Senate Lead On Equal Rights Amendment\n                    \n                            Equal protection under the law for women has never been added to the Constitution Companion bill in House sponsored by Rep. Maloney\n                    \n                      December 10, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today introduced the Equal Rights Amendment in the Senate, taking the baton on this landmark women’s equality legislation from the late Senator Edward Kennedy. The ERA would add a simple 52 word amendment to the Constitution guaranteeing equal rights under the law, regardless of gender. \nAs a Constitutional amendment, the ERA would require Congressional passage and ratification by 38 states. Companion legislation in the House of Representatives has been introduced by Rep. Carolyn Maloney (NY-13), a long-time sponsor of the ERA. The Senate version is co-sponsored by Senators Tom Harkin (D-IA), John Kerry (D-MA), Carl Levin (D-MI), Joseph Lieberman (I-CT), Debbie Stabenow (D-MI), Barbara Mikulski (D-MD) and Christopher Dodd (D-CT).\n\n“Most people are surprised when they find out that, in the 21st Century, American women still are not constitutionally guaranteed equal rights under the law,” said Menendez. “It’s a sign of the great advancements made in public attitudes, but also of the distance we still must go to ensure that women’s rights continue to advance and never backslide. It is time to bring our laws in line with our times by guaranteeing equality for women.”\n\n\n\"\"Though women have a significant patchwork of legal protections today, nothing compares to protection under the U.S. Constitution,\"\" Rep. Maloney said. \"\"These 52 words, when passed by Congress and ratified by 38 states, would ensure women's rights as nothing else would. I'm grateful that Senator Menendez, a like-minded man, is re-introducing the Equal Rights Amendment in the Senate, as I have already done in the House.\"\"\n\nThe Equal Rights Amendment dates back to 1848, and in 1970, it passed Congress and was ratified by 35 of 38 states necessary to amend the Constitution.\nA few of the ways the amendment would guarantee the equal rights of men and women are:\n•    Clarifying the legal status of sex discrimination for the courts by making sex a suspect category subject to strict judicial scrutiny, similar to race, religion, and national origin.\n•    Guaranteeing equal footing for women in the legal systems of all 50 states.\n•    Ensuring that government programs and federal resources benefit men and women equally.\nFact sheet on the ERA, from the office of Rep. Maloney\nQ and A about the ERA, from the office of Rep. Maloney\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=16a7f140-59a0-404b-9168-9cfe471cecb7,\"Senators Menendez, Lugar Introduce Bipartisan Bill to Create Independent Western Hemisphere Drug Policy Commission\n                    \n                            Legislation seeks to evaluate current efforts and combat drug trade in a comprehensive manner that looks at both supply and demand of narcotics\n                    \n                      December 8, 2010\n                     WASHINGTON – Today U.S. Senators Robert Menendez (D-NJ) and Dick Lugar (R-IN), members of the Senate Foreign Relations Committee, introduced the Western Hemisphere Drug Policy Commission Act of 2010. Senator Patrick Leahy (D-VT) also co-sponsored the legislation. The bipartisan bill would mandate the creation of an independent commission to evaluate U.S. policies and programs aimed at reducing illicit drug supply and demand and recommend a multiyear counternarcotics strategy to address the escalating security crisis in the hemisphere fueled by the illicit narcotics trade. The legislation is similar to a House initiative authored by Congressmen Elliot Engel (D-NY) and Connie Mack (R-FL) that passed the House on December 8, 2009.  \n\nIn introducing the Act, Senator Menendez commented that: “while we have had some notable successes in the hemisphere, the plague of narcotics and organized crime has surged in Mexico and Central America and remains an intractable problem in much of the rest of the region.   It is imperative that we assess our efforts at home and aboard to determine where we are succeeding and where we are not.  Despite the billions of dollars spent on counternarcotics efforts in the Western Hemisphere, hard data proves that the positive results have been limited and that we still face a very real challenge. We need a comprehensive and smart policy that looks at both the supply and demand side of the issue -- domestic prevention and treatment programs, as well as a long-term multiyear counternarcotics strategy – and that ultimately succeeds is turning around this epidemic of drugs and crime that is destroying families, communities, and undermining the rule of law both at home and abroad.”\n“Though we still have a long way to go, it is clear that efforts to fight the common threat posed to the Hemisphere by drug traffickers and organized crime are showing some positive results. It is also clear that many of these efforts should be strengthened,” Lugar said. “As the creation of this commission suggests, the United States should undertake a broad review of further steps to determine what is working and reassess the implementation of those policies that are not. I am especially interested in efforts to bolster the role of the U.S. military and the intelligence community to help combat cartels headquartered in Mexico with reach in Central American countries, Venezuela and throughout the Region.  New approaches might include ways to jointly deploy aviation, surveillance and intelligence assets where necessary.  Ultimate victory in this war will require improving capabilities, adapting tactics to counter threats by cartels and building closer partnerships with the Hemisphere’s willing Governments,” Lugar concluded. \n\nOne hundred percent of the United States cocaine originates in South America and over 90 percent of the United States heroin supply originates in Colombia and Mexico.  In addition, Central America and the Caribbean are key transit regions for drugs entering the US.  United States demand and consumption of illicit drugs are a major factor driving the drug trade. The National Institutes of Health estimates 5.3 million Americans abused cocaine in 2008; 453,000 Americans abused heroin, and 25.8 million abused marijuana.  Despite the billions of dollars spent on disrupting the narcotics trade through Plan Colombia, the Merida Initiative, the Central American Regional Security Initiative, and the Caribbean Basin Security Initiative, U.S. efforts have not succeeded at having the reach and impact aspired to. The Western Hemisphere Drug Policy Commission Act of 2010 aims to carefully evaluate current domestic and international policies and identify ways in which these can be restructured or improved strategically to successfully address an escalating and increasingly complex problem that threatens U.S. and international security.\nClick here for a full text of the bill: http://menendez.senate.gov/imo/media/doc/WHDCBillFinal2.pdf\nSummary of the bill:\n•    The bill creates an independent commission which will be charged with reviewing and evaluating U.S. policy regarding illicit drug supply reduction and interdiction in the Western Hemisphere, along with foreign and domestic demand reduction policies and programs. The commission is also charged with identifying policy and program options to improve existing international and domestic counternarcotics policy;\n•    The Commission will recommend a multiyear interagency counternarcotics strategy for the Western Hemisphere that describes the assistance required to achieve regional counternarcotics goals and a methodology for countering shifts in production and transit routes by producers and traffickers due to pressure from counternarcotics efforts;\n•    The commission will be composed of 10 members – 2 executive branch employees appointed by the President and 2 appointed by each of the following congressional leaders: the Senate Majority Leader, the Senate Minority Leader, the Speaker of the House, and the House Minority Leader.\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1823b129-e10c-4676-81f5-b3ab3ebc996e,\"Menendez Outlines New Bill Targeting Hidden Prepaid Card Fees\n                    \n                            Recent Kardashian Kard controversy illustrates problem of hidden fees with this type of card\n                    \n                      December 6, 2010\n                     PARAMUS, NJ – At the height of the holiday shopping season, U.S. Senator Robert Menendez (D-NJ) today appeared at the Garden State Plaza Mall in Paramus to announce his new legislation that will address hidden prepaid card fees. His legislation will be introduced in the Senate in the next two weeks and will rein in certain hidden fees as well as increase upfront disclosure of fees before consumers purchase a card. The bill will include:\n•    A ban on overdraft fees, balance inquiry fees, customer service fees, fees for inactivity, account closure fees, and others types of fees\n•    A clear wallet-sized explanation of all fees for consumers before they purchase a card\n•    Protection for consumers’ prepaid card money against loss, theft or bankruptcy of the company through which they purchase a card \n“The way some prepaid cards are laden with absurd fees, you’d think the Grinch himself had devised them this holiday season,” said Menendez. “Responsible consumers are finding out the hard way that the purchasing power of these cards is much less than they thought – much less than the dollar amount they loaded onto them. My legislation would give them peace of mind during the holiday season and beyond.”\n\n“While the Kardashian Kard got a lot of attention these past few weeks, it’s not the only prepaid card loaded with high fees and other gotchas,” said Chuck Bell of Consumers Union, the nonprofit publisher of Consumer Reports, who joined Menendez today.  “Most prepaid cards come with a laundry list of fees that can add up quickly and have weak protections that leave consumers vulnerable to losing their money if their card is lost or stolen.  Now that prepaid cards are becoming increasingly popular, it’s time to rein in the high fees and make sure consumers get the protections they deserve.”\n\nThe market for all kinds of prepaid cards is estimated to top $427 billion next year in the United States. The fees associated with these types of cards have been in the spotlight recently following the Kardashian sisters’ decision to end their endorsement of a card laden with hidden and unnecessary fees. A news report today indicates that banks are expected to focus their business on prepaid debit cards to raise revenue, after Congress enacted credit and debit card reforms: http://online.wsj.com/article/SB10001424052748704377004575651072113863694.html?mod=ITP_moneyandinvesting_0. \n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b341b869-2beb-4506-ade9-96195d19599d,\"Menendez Statement on Tax Cut Votes\n                    \n                      December 4, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Finance Committee, today released the following statement after two votes in which Republicans obstructed a chance to make tax cuts permanent for middle class families, extend the Making Work Pay tax credit for working families, extend the unemployment insurance program for laid off workers, provide relief for 1.6 million New Jerseyans who would have to pay the Alternative Minimum Tax, extend tax incentives for infrastructure projects, extend a Menendez property tax deduction initiative and reduce the tax filing burden on small businesses:\n\n“This holiday season, our Republican colleagues have chosen to play Santa Claus for millionaires and Scrooge for middle class families. In fact, Republicans have clearly made it their top priority to provide everyone who makes over $1 million per year with an average tax cut of $104,000. It’s a top priority that comes with almost $1 trillion in new debt for our children. As a result of these values, they denied permanent tax relief for everyone who makes less than $1 million, help for laid off workers to keep their families afloat, tax incentives for job-creating infrastructure projects and a reduced bureaucratic burden on small businesses. I hope middle class families have watched this unfold, so they can get a true sense of who is on their side. Despite this obstruction today, we must ensure that no middle class New Jersey family will see a tax hike next year, and I will continue fighting to guarantee that.” \n\n                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e1a88eca-a6d6-4eea-bdba-6e356324faa5,\"Menendez to Administration: Ensure NJ is Using Taxpayer Weatherization Dollars Efficiently and Effectively\n                    \n                            Senator says program has the potential to create jobs, reduce family energy bills and protect the environment\n                    \n                      December 2, 2010\n                     WASHINGTON – In the wake of reports about mismanagement of New Jersey’s weatherization program, U.S. Senator Robert Menendez (D-NJ) is asking the U.S. Department of Energy to ensure that the state is running the program and spending federal funding properly and efficiently. In a letter to Energy Secretary Steven Chu, Menendez raises concerns about the state’s management of the program, what has led to these problems, and whether cuts to participating organizations will result in reduced weatherization of homes. The program, which provided a $118.8 million federal investment for New Jersey as part of the Recovery Act, is meant to support the weatherization of more than 13,000 homes, reducing families’ energy expenses and creating jobs. \n\n“I am very disturbed by reports I've received recently about the state's program, and as a strong supporter of [the Weatherization Assistance Program], I want to ensure that funds are being spent as they were intended and that the program is being operated efficiently and effectively,” wrote Menendez. “It has been well documented that the state has lagged behind the nation in expending its weatherization dollars, but my office has recently heard allegations that the state may be targeting several non-profits for funding cuts or termination, rather than focusing on the broad range of problems that have been identified in the program.\n“It appears that instead of taking responsibility for administering a failing program and shoring up oversight of participating organizations, the state has instead proposed funding cuts for over one-third of the non-profit organizations who carry out the weatherization program. No one is more concerned about ensuring that every federal dollar is spent wisely than I am, but this rescission of funding is so large and implicates so many different non-profits that I believe it warrants a federal review.”\n\nIn his letter, Menendez specifically raises the case of the non-profit organization Camden County OEO. Despite being recognized by the New Jersey Department of Community Affairs for having the best weatherization program in the state in August of this year, Camden County OEO is now targeted to lose all of its federal weatherization funding just a few months later.\nPDF of letter to Secretary Chu: http://menendez.senate.gov/imo/media/doc/20101201ltr_ChuWeatherization.pdf\nText of letter:\nDecember 1, 2010\nThe Honorable Dr. Steven ChuSecretary of EnergyU.S. Department of Energy1000 Independence Avenue, SWWashington, DC 20585\nDear Secretary Chu:\nI write to ask that you use your oversight authority to closely examine New Jersey’s management of its Weatherization Assistance Program (WAP), a program designed to weatherproof the homes of low-income families.  I am very disturbed by reports I've received recently about the state's program, and as a strong supporter of WAP, I want to ensure that funds are being spent as they were intended and that the program is being operated efficiently and effectively.  It has been well documented that the state has lagged behind the nation in expending its weatherization dollars, but my office has recently heard allegations that the state may be targeting several non-profits for funding cuts or termination, rather than focusing on the broad range of problems that have been identified in the program.\nAs you know, the Recovery Act we worked so hard to pass allocated $118.8 million for New Jersey to weatherize almost 13,400 homes by March 2012.  This program is a win, win, win for the country because it creates jobs, reduces energy bills, and reduces pollution.  Unfortunately, recent press reports indicate that the state is well behind schedule, having weatherized only 2,157 homes so far.  \nThe program is structured so that non-profit organizations weatherize homes while the state administers the overall program.  By all accounts, the actual weatherproofing of homes has been slow.  However, it appears that instead of taking responsibility for administering a failing program and shoring up oversight of participating organizations, the state has instead proposed funding cuts for over one-third of the non-profit organizations who carry out the weatherization program.  \nNo one is more concerned about ensuring that every federal dollar is spent wisely than I am, but this rescission of funding is so large and implicates so many different non-profits that I believe it warrants a federal review.  Specifically, I believe the following questions should be explored:\n1.  Is the New Jersey program, as a whole, being managed responsibly with appropriate oversight and direction to participating non-profit organizations?2.  Are these non-profits solely to blame, or have there been implementation delays and obstacles from the state or federal government that have slowed their progress?3.  Is the state ensuring that the communities served by non-profits who are having their funds rescinded will still have the same number of homes weatherized as originally envisioned?\nAmong the agencies targeted for loss of WAP funds is Camden County OEO, which on August 19 was named by the New Jersey Department of Community Affairs (“NJ DCA”) as the best weatherization assistance program in the entire state.  It was recognized for delivering “superior” home energy and weatherization assistance to low-income residents.  How is it possible that this agency went from the best in the state to being so mismanaged that all of its federal funding must be cut?    \nI fought hard to get the $118 million in WAP funds for the state of New Jersey in the Recovery Act, and I am very concerned by the recent reports indicating that the state has not performed well in expending these funds quickly and effectively.  Thank you for your attention to this matter.  I look forward to working with you to improve the weatherization program in New Jersey, and I hope that independent non-profit weatherization agencies remain a central part of the program.  \n                                                                                                                Sincerely,                                                                                                                ___________________ROBERT MENENDEZUnited States Senator\n                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e79083f3-f4e7-4a21-853a-f7b0d5315744,\"Menendez Hails Decision to Exclude East Coast from Drilling Plans\n                    \n                            Long-time advocate of protecting Jersey Shore from drilling says permanent Atlantic Coast ban is also needed\n                    \n                      December 1, 2010\n                     WASHINGTON – The Obama administration today announced that coastal drilling in the Atlantic Ocean, Pacific Ocean and eastern Gulf of Mexico will not be included in the next five-year drilling plan. U.S. Senator Robert Menendez (D-NJ), a member of the Senate Energy and Natural Resources Committee and author of previous legislation to permanently ban Atlantic Coast drilling, released the following statement:\n\n“I am grateful that the Administration has heard my message loud and clear: no drilling for oil anywhere near the Jersey Shore. I applaud this action, which will protect our state’s economy and environment. The Jersey Shore supports hundreds of thousands of jobs, drives our state’s economy and is a birthright for all New Jerseyans. We can never allow an oil spill to ruin our shore and cripple our local economy. Auctioning off the Jersey Shore to oil companies would do nothing to reduce prices at the pump, but it would put our multi-billion dollar tourism and fishing industries at risk. Today, families and business owners in our coastal communities, along with everyone who loves the Jersey Shore, can breathe a little easier that we won’t have to contend with devastation from an oil rig disaster any time soon.”\n\n                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=aeea4a33-3ded-4ddb-91de-5798b85646bd,\"Menendez Statement on World AIDS Day\n                    \n                      December 1, 2010\n                     WASHINGTON – In commemoration of World Aids Day, today US Senator Robert Menendez released the following statement:\n\n“We must use this day to keep in the spotlight the millions of people worldwide who continue to live with HIV and AIDS, including the thousands here in New Jersey. We must reaffirm our commitment to tackling and helping prevent the spread of this terrible disease. We can celebrate the advancements that have allowed those who are living with the disease and receive proper medical treatment to have a better life quality and life expectancy. But we cannot sweep under the rug the fact that more people than ever are living with HIV, and this number only increases every year. We must continue working to find a cure, prevent the spread, and continue raising awareness on the stigma and prejudice that those with HIV suffer. I have sponsored a Senate resolution to affirm our commitment to affordable housing for those living with HIV, and I will continue to support policies that will help prevent and, one day, eradicate this disease. On World Aids Day, I encourage everyone to put on their red ribbon, help bring awareness, and take concrete actions to help make a difference in their communities.”\n\nMenendez is the sponsor of S. Con. Res 39, a resolution that would affirm the Congress’s commitment to affordable housing for those living with HIV and AIDS.\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a9721ff5-c8a1-455a-87dc-059365f93101,\"Menendez Invites Kardashians to Support his Forthcoming Legislation on Prepaid Debit Card Fees\n                    \n                            Member of Banking Committee applauds sisters for reconsidering card that would have borne their likenesses\n                    \n                      November 30, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), who this week announced that he will soon introduce legislation targeting hidden and excessive prepaid debit card fees, today applauded the Kardashian sisters for reconsidering the use of their likenesses on a new prepaid debit card. The reality-TV stars had previously announced that they would endorse a prepaid Mastercard, which was laden with excessive fees. Menendez invited the sisters to support his legislation once it is introduced.\n\n\"\"You don't become the most Googled people on Earth by accident,” said Menendez. “The Kardashians certainly know how to market themselves, and it shows great business sense to protect their fans from surprise and unnecessary fees that would have been associated with their brand. Few people have a bigger platform to inform the public than these sisters, and I hope that their fans have gotten the message about how damaging the fees associated with these cards can be. I have announced that I will soon introduce legislation to increase prepaid debit card transparency and eliminate excessive fees, and I invite the Kardashians to join me in championing this cause.\"\"\n\nWith the busiest shopping season of the year underway, and with an estimated $427.5 billion expected to be placed on prepaid debit cards by American consumers next year, Menendez is targeting hidden and excessive fees associated with these cards. Menendez has said that his new legislation, to be introduced before the end of the Congressional session, will eliminate certain prepaid debit card fees and provide consumers with full, upfront disclosure of fees before they purchase the cards.\nMenendez also recently delivered a letter to Presidential Special Assistant Elizabeth Warren, seeking to work with her and the new Consumer Financial Protection Bureau on issuing commonsense regulations for prepaid cards that would protect consumers relying on them for purchases from getting fleeced. \nPrepaid cards are typically reloadable plastic cards used as substitutes for checking accounts, debit cards, or credit cards. Many come with a mountain of fees and very poor disclosure of those fees, terms, and conditions. They typically do not have the same guaranteed consumer protections as credit cards and debit cards, although they are marketed and used as substitutes for credit cards and debit cards.\nPDF of letter to Elizabeth Warren: http://menendez.senate.gov/imo/media/doc/20101117ltr_PrepaidDebitCards1.pdf \nText of letter:\nNovember 17, 2010\nThe Honorable Elizabeth WarrenSpecial Assistant to the President and Special Advisor to the Secretary of the Treasury1500 Pennsylvania Avenue, NWWashington, DC 20220\nDear Ms. Warren:\nCongratulations on your appointment as Assistant to the President and Special Adviser to the Secretary of the Treasury for the creation of the Consumer Financial Protection Bureau.  I have no doubt that your unique insight will prove invaluable during the CFPB’s formative beginning.\nI write to you today concerning prepaid debit cards, a financial product that is growing at an astronomical rate.  As you are aware, consumers have come to increasingly rely on these cards instead of checking accounts, debit cards and credit cards.  As recently as 2008, the size of the prepaid card market was $247.7 billion, with one recently completed study projecting the market size in 2011 to be $427.5 billion – an increase of approximately $180 billion over three years.\nNumerous consumer advocacy groups have called for oversight of this rapidly expanding industry.  These cards serve a valuable purpose, but they often come with many fees and poor disclosure of those fees and the terms under which they can be used.  They do not have the same guaranteed consumer protections as credit and debit cards, although they are often marketed and used as substitutes for credit and debit cards.  And furthermore, many members of the underbanked community use prepaid cards and are often exploited due to their lack of knowledge of the banking system as a whole.  All of these factors clearly speak to the need for prudent regulation of this burgeoning industry.\nTo that end, I have worked on legislation with all stakeholders – consumer advocacy groups, banks, prepaid card providers – that would provide for full disclosure of fees to the consumer before the time of purchase and to limit fees to a specified list to facilitate consumer comparisons of different prepaid cards.  In addition, consumers would be granted protections similar to the ones they enjoy with debit cards from the FDIC.\nI would like to work with you and the CFPB to properly regulate this industry and if necessary to develop legislation to protect consumers without stifling competition.  Please feel free to contact me or my staff on this important issue as we move forward.\nI wish you the best of luck in your efforts to set up the CFPB to protect American consumers and thank you for your kind attention to this matter.\nSincerely,\nROBERT MENENDEZUnited States Senator\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=93b40aa2-81a2-43e0-ad5c-f3ea1d0700e1,\"With Holiday Shopping Season Underway, Menendez Announces Plan to Target Prepaid Debit Card Fees\n                    \n                            Member of Banking Committee will soon introduce legislation, has urged regulators to rein in fees\n                    \n                      November 29, 2010\n                     WASHINGTON – With the busiest shopping season of the year underway, and with an estimated $427.5 billion expected to be placed on prepaid debit cards by American consumers next year, U.S. Senator Robert Menendez (D-NJ) is targeting hidden and excessive fees associated with these cards. Menendez recently sent a letter to Presidential Special Assistant Elizabeth Warren, seeking to work with her and the new Consumer Financial Protection Bureau on issuing commonsense regulations for prepaid cards that would protect consumers relying on them for purchases from getting fleeced. \nIn addition, Menendez today announced that he will introduce new legislation before the end of the Congressional session to eliminate certain prepaid debit card fees and provide consumers with full, upfront disclosure of fees before they purchase the cards.\n\n“For too many consumers using prepaid debit cards, Black Friday may have put them in the red because of surprise and unreasonable fees,” said Menendez. “Responsible consumers are finding out the hard way that the purchasing power of these cards is often much less than the dollar amount they loaded onto them. Consumers should be equipped with full information about cards they buy, and we should eliminate some of the most egregious fees, which is what I intend to accomplish through legislation and working with federal consumer protection regulators.”\n\n            Prepaid cards are typically reloadable plastic cards used as substitutes for checking accounts, debit cards, or credit cards. Many come with a mountain of fees and very poor disclosure of those fees, terms, and conditions. They typically do not have the same guaranteed consumer protections as credit cards and debit cards, although they are marketed and used as substitutes for credit cards and debit cards.\n            PDF of letter to Elizabeth Warren: http://menendez.senate.gov/imo/media/doc/20101117ltr_PrepaidDebitCards1.pdf\nText of letter:\nNovember 17, 2010\nThe Honorable Elizabeth WarrenSpecial Assistant to the President and Special Advisor to the Secretary of the Treasury1500 Pennsylvania Avenue, NWWashington, DC 20220\nDear Ms. Warren:\nCongratulations on your appointment as Assistant to the President and Special Adviser to the Secretary of the Treasury for the creation of the Consumer Financial Protection Bureau.  I have no doubt that your unique insight will prove invaluable during the CFPB’s formative beginning.\nI write to you today concerning prepaid debit cards, a financial product that is growing at an astronomical rate.  As you are aware, consumers have come to increasingly rely on these cards instead of checking accounts, debit cards and credit cards.  As recently as 2008, the size of the prepaid card market was $247.7 billion, with one recently completed study projecting the market size in 2011 to be $427.5 billion – an increase of approximately $180 billion over three years.\nNumerous consumer advocacy groups have called for oversight of this rapidly expanding industry.  These cards serve a valuable purpose, but they often come with many fees and poor disclosure of those fees and the terms under which they can be used.  They do not have the same guaranteed consumer protections as credit and debit cards, although they are often marketed and used as substitutes for credit and debit cards.  And furthermore, many members of the underbanked community use prepaid cards and are often exploited due to their lack of knowledge of the banking system as a whole.  All of these factors clearly speak to the need for prudent regulation of this burgeoning industry.\nTo that end, I have worked on legislation with all stakeholders – consumer advocacy groups, banks, prepaid card providers – that would provide for full disclosure of fees to the consumer before the time of purchase and to limit fees to a specified list to facilitate consumer comparisons of different prepaid cards.  In addition, consumers would be granted protections similar to the ones they enjoy with debit cards from the FDIC.\nI would like to work with you and the CFPB to properly regulate this industry and if necessary to develop legislation to protect consumers without stifling competition.  Please feel free to contact me or my staff on this important issue as we move forward.\nI wish you the best of luck in your efforts to set up the CFPB to protect American consumers and thank you for your kind attention to this matter.\nSincerely,\nROBERT MENENDEZUnited States Senator\n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5056c0a6-4b1d-4fd2-8a32-b6781ffbaac3,\"With Thanksgiving Airfares As Much As 60% Higher, Menendez Pushes for Final Passage of his \"\"Clear Airfares Act\"\"\n                    \n                             Bill is just one step from passing, but clock is ticking before end of Congressional session in December\n                    \n                      November 24, 2010\n                     Americans will pay equivalent of 12 million turkeys on hidden airline fees this Thanksgiving weekend\n NEWARK – U.S. Senator Robert Menendez held a news conference today at Newark Liberty International Airport to push for final passage of his \"\"Clear Airfares Act,\"\" which would give consumers a full breakdown of airline fees they may have to pay before they purchase a ticket. With airfares as much as 60 percent higher this Thanksgiving than last year (http://www.usatoday.com/travel/flights/2010-11-08-1Aholidayairfares08_ST_N.htm), Menendez says it is even more important for families to have a full understanding of what they will pay not just to get to the airport, but to get to their destination. \nThe \"\"Clear Airfares\"\" bill is now just one step in Congress from becoming law, but the clock is ticking for the broader legislation it is a part of to gain final passage before Congress adjourns next month. According to a study released by the Consumer Travel Alliance, Americans will pay the equivalent of 12 million turkeys on hidden airfares this Thanksgiving weekend (http://www.prnewswire.com/news-releases/surprise-holiday-travel-costs-show-why-americans-are-not-giving-thanks-for-hidden-airline-fees-109865574.html). \n\n“Right now, we have a golden opportunity to finally bring transparency to the airline ticket purchasing process,” said Menendez. “We need to protect every traveler who buys a ticket assuming the price they see on the screen is the actual price they’re going to pay – not just the opening bid before the airlines add on their hidden fees and charges. At a time when families are watching every last penny, they should have a full understanding of what they will be expected to pay not just to get to the airport, but to get to their destination.”\n\nThe Senate-passed version of the Federal Aviation Administration reauthorization bill includes a slightly-modified version of Clear Airfares, which would provide consumers searching for airline tickets with a full list of airfares and potential additional fees before they pay. The conference committee negotiating the final version of the FAA bill has yet to complete its work, and if it doesn’t gain final passage before the end of the Congressional session, work on the legislation will start from scratch next year.\nMenendez’s Clear Airfares provision aims to bring transparency to the price of flying through a full, clear and upfront breakdown of airfares and fees. Before a consumer purchases a ticket on the Internet, the legislation would require airlines and third-party websites to give consumers a complete and understandable listing of his or her particular airfare, as well as any other possible fees that might be incurred on the flight (such as baggage, seat assignments, etc.). \nCurrently, consumers must click to peripheral web pages and wade through often confusing text to understand whether or not their airfare includes surcharges and what other taxes and fees may have been added.\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f66501c5-eaa8-478b-a97f-7b5f7251ae30,\"Chairman of Senate Housing Subcommittee and 16 Colleagues Urge Treasury to Improve Foreclosure Prevention Program\n                    \n                            Menendez and colleagues suggest specific changes to prod banks to make responsible mortgage modifications and work with homeowners\n                    \n                      November 17, 2010\n                     WASHINGTON – A group of 17 U.S. Senators, led by Senator Robert Menendez (D-NJ), are urging Treasury Secretary Timothy Geithner to make a series of alterations to the federal foreclosure prevention program so that more responsible but struggling homeowners can modify their mortgages. Menendez, who chairs the Senate Banking Subcommittee on Housing, Transportation and Community Development, and his colleagues wrote Geithner to express concern over the slow pace of mortgage modifications and the reluctance of some banks to cooperate in the Home Affordable Modification Program (HAMP). They suggested specific changes to the program, including:\n•    Disincentives to mortgage servicers that make mistakes or refuse to participate in the mortgage modification process•    Automatic permanent loan modifications for homeowners that successfully complete trial modifications•    Establishment of an Office of Homeowner Advocate to specifically assist homeowners going through the modification process•    Allowing unemployment insurance to be included with income in determining eligibility for the program\n\n“The recent revelations of ‘robo-signing’ or ‘rubber-stamping’ of foreclosures by banks that exercised lax oversight is certainly shocking, but that is only one example of how banks have mishandled both foreclosures and mortgage modification requests,” wrote the senators. “If many banks and servicers are not handling even basic foreclosure procedures correctly, it is likely that many are also not correctly evaluating homeowners for mortgage modifications.  We ask that the Treasury Department hold banks and servicers accountable with a significantly more thorough review process than Treasury has implemented thus far. \n“Countless constituents tell us stories of being stonewalled by banks for very long periods of time; of not being told the reasons for the rejection of their modification request; of significant delays caused by banks losing paperwork; or of trial modifications cancelled with no rationale.  We cannot let this continue.\n“We appreciate what progress HAMP has already made, but amid continual frustrations from our constituents, it is clear that significant improvements are urgently needed.”\n\nJoining Menendez in signing the letter were Senators Al Franken (D-MN), Patrick Leahy (D-VT), Sherrod Brown (D-OH), Kirsten Gillibrand (D-NY), Debbie Stabenow (D-MI), Bernard Sanders (I-VT), Frank Lautenberg (D-NJ), Daniel Akaka (D-HI), Carl Levin (D-MI), Tom Udall (D-NM), Sheldon Whitehouse (D-RI), Benjamin Cardin (D-MD), Mark Begich (D-AK), Maria Cantwell (D-WA), Jeanne Shaheen (D-NH), Charles Schumer (D-NY), Jeff Merkley (D-OR).\nPDF of letter to Geithner: http://menendez.senate.gov/imo/media/doc/20101116ltr_HAMP.pdf \nText of letter:       November 16, 2010\nThe Honorable Timothy GeithnerSecretary of the Treasury1500 Pennsylvania Ave NWWashington, DC 20220\nDear Secretary Geithner:\nWe write to you today to request changes that would improve the federal government’s foreclosure prevention programs.  The recent revelations of “robo-signing” or “rubber-stamping” of foreclosures by banks that exercised lax oversight is certainly shocking, but that is only one example of how banks have mishandled both foreclosures and mortgage modification requests.  While we have passed important legislation to deal with the foreclosure crisis, we believe that ending the foreclosure crisis will require that the federal government both vigorously enforce existing law and implement additional efforts that are clearly needed.\nThe “robo-signing” is directly attributable to banks and servicers not doing proper due diligence, which is inexcusable when dealing with a matter as monumental as the seizure of a family’s home.  But the more important point is that if many banks and servicers are not handling even basic foreclosure procedures correctly, it is likely that many are also not correctly evaluating homeowners for mortgage modifications.  We ask that the Treasury Department hold banks and servicers accountable with a significantly more thorough review process than Treasury has implemented thus far.  For example, too often the mortgage modification appeals process consists of the government simply repeating the unsupported assertions of banks and mortgage servicers about homeowners not being eligible for a modification. \nWhile some progress has been made, it is clear that the Home Affordable Modification Program is neither working as well as intended nor reaching the desired number of homeowners.  Treasury’s initial goals were that “7 to 9 million families [could] restructure or refinance their homes” through HAMP,[1] but the program is falling far short of that goal in the following respects:\n•    Since January 2010, only 495,898 permanent modifications have been granted compared to 729,114 trial or permanent modifications that have been canceled[2]•    53.2% of all trial modifications have been canceled, as compared to only 34.1% of all trial modifications that have been successfully converted to permanent modifications.[3]•    Approximately $50 billion was allocated for HAMP, but the October 2010 report from the Special Inspector General for TARP claims that as of September 30, 2010, only $483.3 million has been spent.[4]  \nAnd while the statistics cited above concern us greatly, it is even more sobering to continually hear from constituents who owe more than their house is worth and can’t get a mortgage modification or refinance from their bank.  This is typically because of losing their jobs through no fault of their own, combined with the decreasing value of their home.\nCountless constituents tell us stories of being stonewalled by banks for very long periods of time; of not being told the reasons for the rejection of their modification request; of significant delays caused by banks losing paperwork; or of trial modifications cancelled with no rationale.  We cannot let this continue.\nBelow, we have listed several common sense and widely agreed upon steps that the Treasury Department can take today to improve HAMP’s effectiveness that do not require Congressional approval.  These are not extraordinary steps, and we strongly urge you to implement them as soon as possible.\n•    Hold Servicers Accountable: Banks and servicers must be held accountable.  Treasury currently offers incentives for their participation, but if there is no disincentive for their mistakes, they simply will not correct those mistakes in the future.  If homeowners are eligible for modifications, they should get them.  Additionally, in its October 2010 report to Congress, SIGTARP several times noted that “there have been no financial penalties imposed by Treasury on servicers who have violated HAMP guidelines,” and listed several examples of servicers treating homeowners unfairly.[5]\n•    Office of the Homeowner Advocate: Senator Franken’s proposal would establish a Treasury office specifically advocating for homeowners with respect to common sense HAMP mortgage modifications.  Treasury supported creating the Consumer Financial Protection Bureau because of the lack of a consumer advocate in the banking sector, and Treasury should support establishing a similar office in HAMP for homeowners because of the lack of a consumer advocate in the foreclosure process.  Many elements of this proposal do not require Congress to enact.\n•    Automatic Conversions: If a homeowner successfully completes a trial modification, they should be automatically extended a permanent modification.  This could make a big difference in reducing bureaucratic obstacles that are preventing homeowners from getting permanent modifications.\n•    Revise Eligibility Requirements: While we appreciate the expanded eligibility implemented in April 2010, we believe that the eligibility rules must be revised further.  To include more homeowners, unemployment insurance should be included with income when determining HAMP eligibility.  As the economy staggers and more homeowners are unable to secure employment, more homeowners will find themselves in need of assistance.  And Treasury should clarify that primary residents who are not listed on the mortgage note but who can assume the note – often widows and surviving children, as well as people experiencing divorce or domestic violence – should be able to obtain a loan modification.\n•    Investor-Based Modification Denial Documentation: While Treasury has recently announced that servicers will only be required to provide certain documentation to the Treasury Department and its agents upon request, we believe that it is essential for homeowners to be provided with this information directly.  The homeowner is in the best position to act quickly on wrongful denials if they receive this information directly. We believe that more transparency is crucial.\n•    Net Present Value Analysis: Sec. 1482 of the Dodd-Frank Wall Street Reform and Consumer Protection Act requires Treasury to make publicly available all NPV analyses for homeowners who have been denied HAMP modifications, including specific servicer analyses, and Treasury recently announced that it will be available in February 2011.  While we applaud that action, we strongly urge Treasury to hold firm to this timeline so that the public can receive this information as soon as possible.\nWe appreciate what progress HAMP has already made, but amid continual frustrations from our constituents, it is clear that significant improvements are urgently needed.  Recent reports indicate that members of the Obama Administration share our viewpoint.  According to Secretary Donovan, a recent government investigation found that some large mortgage servicers and banks are not offering borrowers a fair chance to modify loans.  As he said, we should be “focused on the process early, to keep people in their homes, rather than focusing late, when it is much less likely that people will be able to stay in their homes.”[6]  \nWe were also encouraged by your recent meeting with struggling homeowners and homeowner advocates on November 4, 2010, during which you were confronted with HAMP’s many problems.  Afterward, one participant paraphrased you as saying that “there are legislative guidelines that can hinder [Treasury] on doing anything.”[7]  As we have stated, we believe that our proposals above do not require Congressional action, but if you have other statutory suggestions for improving HAMP that Treasury would support, please share those with us.\nWe strongly urge the Treasury Department to immediately implement our specific improvements.  Homeowners cannot afford to wait any longer.\nWe thank you for your attention to this pressing matter and look forward to your reply.\nSincerely,\nRobert Menendez                                                                                                               Al FrankenPatrick Leahy                                                                                                                         Sherrod Brown     Kirsten Gillibrand                                                                                                                 Debbie Stabenow                Bernie Sanders                                                                                                                     Frank Lautenberg                Daniel Akaka                                                                                                                          Carl Levin                 Tom Udall                                                                                                                                Sheldon Whitehouse         Benjamin Cardin                                                                                                   Mark Begich           Jeanne Shaheen  Chuck SchumerJeff Merkley          UNITED STATES SENATORS                                                                                                              \n                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3eb29cd8-9d11-473f-a65c-da29406b9bbf,\"Senator Menendez's Statement in Honor of the 235th Birthday of the United States Marine Corps\n                    \n                      November 10, 2010\n                     WASHINGTON – Today, in honor of the 235th Birthday of the United States Marine Corps, U.S. Senator Robert Menendez (D-NJ) released the following statement: \n\n“Happy birthday to the United States Marine Corps.  For 235 years Marines have been protecting America so that our great nation can have all the freedoms we cherish.  To all the brave marines who have served and are serving now, we thank you for your service and dedication to our country.  Semper Fi!”\n\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ab3c6c9e-f948-4e19-9c5a-103e23f6ea2d,\"Senator Menendez's Statement in Honor on Veterans Day\n                    \n                      November 10, 2010\n                     WASHINGTON – On the eve of Veteran’s Day, US Senator Robert Menendez (D-NJ) released the following statement in honor of the men and women who serve in our Armed Forces:\n\n“As we prepare to celebrate Veteran’s Day, we keep in our thoughts and prayers those who have served in our Armed Services during wartime or peacetime – particularly those who are serving in Iraq and Afghanistan right now and those who have made the ultimate sacrifice. These remarkable men and women deserve our thanks not just on Veteran’s Day, but every day. Remembering their service to our country has always helped guide my efforts in the Senate on behalf of our nation's veterans and their families. We owe them so much, which is why I will always fight to ensure that they and their families are provided with the health care, education and job opportunities needed to keep them healthy and prosperous upon their return to civilian life.” \n\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7b6bdcbc-a05b-4921-aa5d-ada47eebe02b,\"Menendez Says New Report on Holiday Airfares Underscores Need for Passage of FAA Bill with \"\"Clear Airfares Act\"\"\n                    \n                            Menendez’s legislation would guarantee consumers an upfront breakdown of airfares and fees before they pay\n                    \n                      November 8, 2010\n                     WASHINGTON – An analysis of 2010 holiday airfares released today by FareCompare.com and USA Today shows a dramatic spike in the cost of flying compared to last year – almost 60 percent higher for Thanksgiving and 40 percent higher for Christmas on some routes: http://www.usatoday.com/travel/flights/2010-11-08-1Aholidayairfares08_ST_N.htm. \nIn response to this report, U.S. Senator Robert Menendez (D-NJ), author of the Clear Airfares Act, is urging final passage of the Federal Aviation Administration reauthorization bill before the end of the year. The Senate-passed version of the bill includes a slightly-modified version of Clear Airfares, which would provide consumers searching for airline tickets with a full and upfront breakdown of airfares and fees before they pay. The conference committee negotiating the final version of the FAA bill has yet to complete its work.\n\n“This report makes it clear that base airfares are much higher this holiday season, but families should also be able to account for potential additional fees in order to make the best financial decisions possible,” said Menendez. “With the Clear Airfares Act, we can equip families with full and upfront breakdown of airfares and fees, so that they aren’t surprised by additional costs when they arrive at the airport. At a time when families are watching every last penny, they should have a full understanding of what they are paying for before they purchase airline tickets. I am hoping that the FAA bill can be completed before Congress adjourns, so that air travelers can have this price protection sooner rather than later.”\n\nMenendez’s Clear Airfares provision aims to bring transparency to the price of flying through a full, clear and upfront breakdown of airfares and fees. Before a consumer purchases a ticket on the Internet, the legislation would require airlines and third-party websites to give consumers a complete and understandable breakdown of his or her particular airfare, as well as any other possible fees that might be incurred on the flight (such as baggage, seat assignments, etc.). The Senate and House of Representatives must negotiate and pass a final version of the FAA bill before it goes to President Barack Obama to be signed into law.\nCurrently, consumers must click to peripheral web pages and wade through often confusing text to understand whether or not their airfare includes surcharges and what other taxes and fees may have been added.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f6f5c44b-152c-4f0e-9236-ed3e7e4c0f66,\"Menendez Supports India's Bid for Permanent Seat on UN Security Council\n                    \n                            Member of Senate Foreign Relations Committee echoes President Obama’s statement in New Delhi today\n                    \n                      November 8, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, today signaled his support for adding India to an expanded United Nations Security Council, echoing a statement made by President Obama in New Delhi. Menendez released the following statement:\n\n“India is the world’s second most populous nation, a key economic player and vital to the stability of an important region. Simply put, India is a critical nation for global security, and it makes eminent sense to include it on the short list of nations that should have a permanent seat on an expanded Security Council.  President Obama’s endorsement of India not only recognizes its role on the international stage but is also a logical move to enhance global and American security by giving a stronger voice to one of our close allies.”\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1ea03699-57f1-4936-830c-c451677e4c22,\"Senator Menendez's Statement in Celebration of \"\"Diwali\"\"\n                    \n                      November 5, 2010\n                     WASHINGTON – Today millions of Hindus, Jains, Sikhs and Buddhists in America and around the world will join in celebration of ‘Diwali’ – popularly known as the festival of lights --to honor the  triumph of “good over evil,” “knowledge over ignorance,” and “light over darkness.” Senator Menendez, a member of the Senate Foreign Relations Committee, released the following statement: \n\n\"\"Once again, I am glad to join millions in the Garden State and around the world in celebrating Diwali, the Festival of Lights. This holiday inspires us to recognize our common humanity and reach for values that transcend borders, nationalities, and cultures – the victory of good over evil, knowledge over ignorance, and light over darkness.\nIt is also an opportunity to celebrate India’s great history, culture, and people and the enduring bonds and shared democratic values that have allowed the US and India to work together to reach common goals. In this spirit of partnership, President Obama will have the honor of visiting India over the next few days to participate in the “Diwali” celebration and discuss further enhancing our strong bi-lateral relationship in the areas of trade, the environment, and security, including cooperation to combat terrorist threats.  President Obama will also recognize the important Indian contribution to international peacekeeping operations.\nMy best wishes on this day to those who observe this important holiday in India and throughout the world as they join together to pray and celebrate.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ade81c03-658a-41d1-a6f5-39bd1bfcbcdf,\"Menendez, Lautenberg Announce More than $2.7 Million for North Wildwood Beach Replenishment\n                    \n                      November 4, 2010\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced North Wildwood was awarded $2,784,012 in federal funding through the Federal Emergency Management Agency (FEMA) for beach replenishment in response to severe coastal flooding caused by a massive storm that slammed New Jersey in March.  The funding will be used to replace sand and protect coastal infrastructure.\n\n \"\"Protecting our shore means protecting the livelihood and property of families in coastal communities like North Wildwood, and it means protecting our state's economy and environment,” Menendez said.  “This funding will help North Wildwood families fully recover from the effects of storms that affected the area last March by restoring the area’s shores and establishing soil protection measures to safeguard them. This is not only important for the economic security of families in the area, it is also crucial to preserve the Jersey Shore and its ecosystem.”\n “This federal funding will help replenish North Wildwood beaches and offset costs so that local taxpayers are not stuck with the bill to clean up after this year’s storms,” said Lautenberg, who is Chairman of the Senate Appropriations Subcommittee that funds this program.  “Repairing damaged beaches will help our coastal economy stay strong and ensure that the shore remains a popular destination for families to live and visit.” The funding is being released by FEMA’s Disaster Relief Fund to reimburse North Wildwood for up to 75 percent of the costs associated with this beach replenishment project.  This federal program provides funding to local and state governments to repair and rebuild infrastructure damaged by a storm that receives a Federal Disaster Declaration.  Senators Lautenberg and Menendez wrote to President Obama requesting the Administration declare the March storm a Federal Disaster and the President made the declaration shortly after.  Senator Lautenberg is the Chairman of the Senate Homeland Security Appropriations Subcommittee, which funds FEMA.        \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9a850e89-a157-430d-9b6f-4c74bf33e555,\"Menendez Announces $53 Million in Tax Credits and Grants for Small NJ Biotech Firms through Program he Authored\n                    \n                            133 emerging biotech firms in NJ will receive $53 million in tax credits to support most promising research and development\n                    \n                      November 3, 2010\n                     WASHINGTON – Today, the Department of the Treasury and the Department of Health and Human Services unveiled a list of 133 small biotechnology firms in New Jersey who were awarded $53 million in tax credits and loans under a program authored by US Senator Robert Menendez as part of the health insurance reform law. The Qualifying Therapeutic Discovery Project seeks to spur innovation and the development of new technologies in the biotech field by providing tax credits to small and emerging biotechnology firms of up to 50 percent of their investments in qualified therapeutic discovery projects that have the potential to address unmet needs and lower health care costs. \nA total of $1 billion in credits and grants will be used to fund the most promising research in areas of unmet need, reduce long-term health care costs, help New Jersey stay at the forefront of innovation, and advance the goal of finding a cure for cancer within the next 30 years. The projects selected also showed a great potential to create and sustain high-quality, high-paying jobs and advance the United State’s competitiveness in the fields of life, biological, and medical sciences.\n\n\"\"I authored this program as a boost to our state and nation's health care and economy, and I am excited to see it come to fruition. These funds will allow small biotech firms to invest in the medical breakthroughs of tomorrow, the jobs and economic growth that come with them, and help to find a cure to some of the diseases we hope to conquer. New Jersey is an epicenter of biotechnology innovation, which is why 133 small firms in our state will receive a total of $53 million in tax credits. That will translate into more quality jobs locally and better health care for everyone.” said Senator Menendez.\n\nNJ organizations eligible for a Qualifying Therapeutic Discovery Program credit: http://www.irs.gov/businesses/small/article/0,,id=228727,00.html\nNJ organizations awarded a Qualifying Therapeutic Discovery Program Grant: http://www.irs.gov/businesses/small/article/0,,id=229001,00.html\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a7ae2958-b50f-44bd-bfc2-c38a2474e17e,\"Menendez Announces $1 Billion in Tax Credits and Grants for Small Biotech Firms Nationwide through Program he Authored\n                    \n                      November 3, 2010\n                     WASHINGTON – Today, the Department of the Treasury and the Department of Health and Human Services announced the list of organizations nationwide approved selected to receive $1 billion in tax credits and loans for the development of therapeutic discovery projects under the Qualifying Discovery Project. Authored by Senator Menendez under the Affordable Care Act, this project seeks to spur innovation and the development of new technologies in the biotech field by providing tax credits to small and emerging biotechnology firms of up to 50 percent of their investments in qualified therapeutic discovery projects that have the potential to address unmet needs and lower health care costs.\nThe credits and grants will be used to fund the most promising research in areas of unmet need, reduce long-term health care costs, help New Jersey stay at the forefront of innovation, and advance the goal of finding a cure for cancer. The projects selected also showed a great potential to create and sustain high-quality, high-paying jobs and advance the United State’s competitiveness in the fields of life, biological, and medical sciences.\n\n\"\"I authored this program as a boost to our state and nation's health care and economy, and I am excited to see it come to fruition. These funds will allow small biotech firms to invest in the medical breakthroughs of tomorrow, the jobs and economic growth that come with them, and help to find a cure to some of the diseases we hope to conquer. \"\"said Senator Menendez.\n\nAll organizations nationwide eligible for a Qualifying Therapeutic Discovery Program credit: http://www.irs.gov/businesses/small/article/0,,id=229025,00.html\nAll organizations nationwide awarded a Qualifying Therapeutic Discovery Program grant: http://www.irs.gov/businesses/small/article/0,,id=229001,00.html\n\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0e6c8c0c-4319-4053-963d-d3c3699b3431,\"Senator Menendez on Scottish Authorities Saying Lockerbie Bomber had 50/50 Chance of Living after Three Month Death Prognosis\n                    \n                      November 1, 2010\n                     WASHINGTON –  Scottish government authorities today revealed that Abdelset Ali Mohmed al-Megrahi had a 50% chance of living longer than the three month prognosis and that the three month figure was an estimate or “median survival time” rather than al Megrahi’s life expectancy (Click here for news report: http://www.heraldscotland.com/news/politics/government-admits-megrahi-always-had-50-50-chance-of-living-past-three-months-1.1064925). Senator Menendez released the following statement in response:\n\n“Scottish authorities are engaged in revisionist history to try to explain the embarrassing fact that al-Megrahi is still alive well over a year after his release. Their recent admission shows that they ignored the Scottish Prison Service guidelines for compassionate release. We know from expert testimony that it was absurd to think al-Megrahi had three months to live when he was released. Every month that goes by makes the Scottish and British decision to release a mass murderer on compassionate grounds more egregious. This is a tragedy no matter how hard they try to spin this story.”\n\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=38191ce5-41f9-4344-b028-eee3ef1c47df,\"Senator Menendez Joins Millions of Greeks in Celebration of \"\"OXI\"\" Day\n                    \n                      October 28, 2010\n                     WASHINGTON – Today, US Senator Menendez joined millions of Greeks around the world in celebration of “OXI Day”. Celebrated every year in commemoration of October 28, 1940, the date Greece proudly defied occupation by the Axis Powers with a resounding “NO,” thereby entering WWII.  OXI Day is a reminder of a watershed moment in Greek and world history:\n\n“Today not only do we celebrate an important milestone in the history of Greece and the world, we honor the strong character and values that have comprised Hellenic culture since its founding. At dawn on this day in 1940, the Greek people united and with a proud, singular, and forceful “NO” defied the forces that sought to take a hold of the Greek nation. That defiant reply and its historic consequences reverberate to this day and represent the ideals that characterize the Greek people.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=db361cb6-e89c-4e7b-843b-3c15c50def14,\"Senator Menendez on Governor Christie's Decision to Terminate the ARC Tunnel Project\n                    \n                      October 27, 2010\n                     WASHINGTON – Today, New Jersey Governor Christie announced his decision to terminate the ARC Tunnel project. Senator Menendez released the following statement: \n\n\"\"Killing the tunnel may excite the national Republican political base, but it leaves families of every political persuasion here in New Jersey with a $600 million Hole to Nowhere, with a deteriorating transportation system and without thousands of new local jobs. Iowa Republicans have the luxury of cheerleading the tunnel's death, because they don't have to suffer these endless commutes or watch thousands of new local jobs be squandered. \n“Along with the record federal investment and badly-needed jobs that will be lost, so was the opportunity for the governor to demonstrate cooperation and leadership.”\n“Make no mistake, his administration had complete control over this project, which as of August was on budget, and he could have easily accepted the offers of U.S. Transportation Secretary LaHood and the viable alternatives that would have it built within budget. Instead, he chose to make an ideological statement rather than providing leadership.”\n“This was an example of pure politics killing good policy, and it will set our state back. The lasting affect is that New Jersey will be a less desirable place for families to live.\"\"\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=32fc9c3f-945f-4570-b163-94d15b9c94e3,\"Senator Menendez Applauds American Academy of Pedriatics Efforts to Encourage Postpartum Depression Screening, Treatmentm and Referrals\n                    \n                            NJ Senator authored landmark MOTHERS Act signed into law as part of Health Care Reform to establish support, educational, and research programs to combat postpartum depression\n                    \n                      October 26, 2010\n                     WASHINGTON – The American Academy of Pediatrics has released a report encouraging pediatric practices to do more screening for postpartum depression, use community resources to treat and refer depressed mothers, and provide support for the mother-child relationship immediately after the mother gives birth and as the newborn grows. The study suggests a series of questions and guidelines to be followed in visits during the first six months, as well as proper referral and support procedures to follow if the mother shows signs of depression. Senator Menendez, who championed efforts in the Senate to combat this debilitating and undertreated condition, welcomed this news and applauded the organization’s efforts:\n\n\"\"Millions of mothers know all too well that postpartum depression is not only a real and debilitating condition, but that the education and support system is lacking,” said Menendez.  “It is welcome news to see the American Academy of Pediatrics taking on efforts to encourage pediatric practices to help properly combat postpartum depression. A commitment from the pediatric medical community to properly evaluate and support new and expectant mothers can go a long way toward protecting women's health and maintaining strong, healthy families.\"\"\n\nBACKGROUND:\nPostpartum depression is a serious and disabling condition affecting hundreds of thousands of new mothers each year. It is estimated that postpartum depression (PPD) affects 10 to 20 percent of new mothers. In the United States, there may be as many as 800,000 new cases of postpartum conditions each year. The cause of PPD isn't known but changes in hormone levels, a difficult pregnancy or birth, and a family history of depression are considered possible factors. The Melanie Blocker Stokes MOTHERS Act helps new mothers get through postpartum depression and scientist get to the bottom of it. Education, support services and research – those are the three areas that the MOTHERS Act builds on to combat this debilitating condition. The new MOTHERS Act increases federal efforts to combat postpartum depression by:\n• Encouraging Health and Human Services (HHS) to coordinate and continue research to expand the understanding of the causes of, and find treatments for, postpartum conditions. • Encouraging a National Public Awareness Campaign, to be administered by HHS, to increase awareness and knowledge of postpartum depression and psychosis. • Requiring the Secretary of HHS to conduct a study on the benefits of screening for postpartum depression and postpartum psychosis. • Creating a grant program to public or nonprofit private entities to deliver or enhance outpatient, inpatient and home-based health and support services, including case management and comprehensive treatment services for individuals with or at risk for postpartum conditions. Activities may also include providing education about postpartum conditions to new mothers and their families, including symptoms, methods of coping with the illness, and treatment resources, in order to promote earlier diagnosis and treatment.\nAdditional information can also be found here: http://menendez.senate.gov/issues/issue/?id=53083415-93a2-4285-9bef-dbece337e3aa\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ab3c8129-516b-4278-ab29-d1a565f77470,\"U. S. Senator Robert Menendez's Statement on FCC Action in Cablevision News Corp Dispute\n                    \n                      October 23, 2010\n                     WASHINGTON -  In an effort to resolve the dispute between Cablevision and News Corp that has left 3 million television customers without News Corp programming, the Federal Communications Commission sent a letter to both parties to ensure they are engaging in good faith negotiations.  U.S. Senator Robert Menendez issued the following statement:  \n\n\"\"I am pleased that the Federal Communications Commission has taken positive action in the News Corp/Cablevision dispute, said Senator Menendez.  “I strongly urge Cablevision and News Corp to respond to the FCC as soon as possible and encourage the Commission to continue working to find a resolution in order to restore programming to consumers who have been affected by this dispute through no fault of their own.”\n\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=201593d9-7921-409d-bae6-6eb7c7204604,\"Menendez, Lautenberg Announce $887,756 in Health Care Reform Funding to Strengthen New Jersey Consumer Assistance Programs\n                    \n                      October 21, 2010\n                     WASHINGTON – Today, US Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced that the Department of Health and Human Services (HHS) has awarded New Jersey $887,756 in funds from the new health care reform law to strengthen consumer assistance programs.  These programs provide direct services and assistance to consumers with questions or claims concerns regarding their health insurance.  \n\n“Throughout the health care debate, my intention was to provide families with the insurance options, the benefits, and the tools they need to take full control of their health care, finally leveling the playing field between consumers and insurers.” said Senator Menendez. “For too long it’s been too difficult for consumers to get a fair deal from their insurance company. That’s why I worked to ensure the inclusion of important consumer protections in the final health care bill.  These funds from the new law will establish or strengthen consumer assistance programs to provide families the support they need to make informed decisions about their health care and claim their rights as patients and consumers.”\n“This is another example of how the new health care reform law is making health insurance more accessible to New Jersey families,” stated Lautenberg.  “This federal funding will help inform consumers of their options and ensure that they are receiving the quality coverage they deserve.” \n\nSpecifically, this funding grant will help New Jersey’s ongoing efforts to establish or strengthen consumer assistance programs by:\n•    Filling two new full-time salaried positions to coordinate outreach as well as educate and advocate for consumers in the appeals process.\n•    Creating a student intern program to handle health insurance inquiries and complaints (telephone and walk-in) as well as assist with community outreach presentations.\n•    Secure training for staff on advance health insurance topics and health care reform.\n•    Conduct community outreach meetings throughout the state to educate consumers on their rights and responsibilities under ACA and to advise them of the advocacy functions available.\n•    Develop consumer guides and pamphlets dealing with various facets of the Affordable Care Act.\n•    Implement a multi-media health insurance campaign via print, website, radio and local television announcements.\n•    Cover additional health insurance-related calls to toll-free hotlines and language translation services for callers with limited English proficiency.\n•    Upgrade computer systems to meet the new reporting requirements.\nThese funds build on other initiatives that have been announced by HHS recently to help consumers nationwide make decisions about their care, such as www.HealthCare.gov, which provide consumers already with the tools they need to find health care insurance and facilities customized to their needs and location as well as general information about their benefits and rights under the Affordable Care Act.  \n                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a3528937-c638-4c22-b971-410b60bf0120,\"New Jersey Building Trades Join Lautenberg, Menendez, Congressional Delegation to Rally for the ARC Tunnel\n                    \n                            The largest mass transit project in the country will create 6,000 construction jobs anually\n                    \n                      October 20, 2010\n                     NORTH BERGEN – Standing with New Jersey building trades workers, U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today touted the job creating potential of the Access to the Region’s Core (ARC) Tunnel project.  The Senators were joined by Reps. Steve Rothman (D-NJ-09) and Frank Pallone (D-NJ-06), State Senator Barbara Buono, Assembly Speaker Sheila Oliver and New Jersey State Building and Construction Trades Council President Bill Mullen to highlight the potential for thousands of construction jobs for New Jersey men and women that would be created by the ARC Tunnel project.\n\n“The ARC Tunnel project is a jobs machine that will put New Jerseyans back to work,” said Lautenberg, who as a member of the Senate Transportation Appropriations Subcommittee led the federal funding effort in Washington for the tunnel. “This project is a once in a generation opportunity that will lift our economy and ensure New Jersey remains the best place to live and raise a family.  This is our opportunity to get workers off the unemployment line and back on the job improving New Jersey’s infrastructure.” “This is about creating jobs today and preparing for tomorrow – that’s a win-win for New Jersey,” said Menendez.  “It’s part and parcel of a smart-growth alternative that addresses our economic challenges, our energy future as well as future transit needs. I don’t see how we could afford to turn our back on this investment that will double the number of trains going across the river. There must be a good-faith, cooperative effort to find a solution that fulfills the state’s commitment to the tunnel, providing a return on the investment of New Jersey taxpayers and putting to work the thousands of local residents who will build this tunnel.” “The ARC project was lauded as a success during its groundbreaking by a wide coalition of civic, environmental, planning, and transportation groups and was seen as an important way to jump start the economy by creating approximately 6,000 construction jobs and 45,000 permanent jobs,” said Rep. Albio Sires (D-NJ-13). “Halting this project will cease mass transportation progress in New Jersey and across the Tri State area, and will subject our commuters to continued congestion.” “This is an important project because the ARC Tunnel will provide increased capacity to our aging and overburdened transportation infrastructure, create jobs, and improve the business and non-business quality of life for our region,”“It will not only improve our lives and economy today, but this is an investment that will continue to pay off for generations to come.” “This is more than a transportation project - it is an investment in economic recovery and in our quality of life. The residents of Monmouth and Middlesex counties are experiencing choking traffic congestion that gets worse by the day as emissions take a toll on the environment and public health,” said Pallone.  “ARC is also an immediate and long-term investment in jobs and economic opportunity, putting people to work at a time when jobs are needed most and constructing a tunnel that is key to New Jersey's economic future. The cost of not following through on this is too great to be lost.” “Construction workers are like all other private sector workers. When we don’t work, we don’t get paid; when we don’t work, we don’t get health insurance for ourselves and our families,” said Mullen, President of the New Jersey State Building and Construction Trades Council.  “By getting ARC started again, you have saved 6,000 families, served burdened commuters, stimulated the state’s economy, and set the state and region on a better course.”\n\n With the latest job numbers showing the unemployment rate for construction workers to be more than 17 percent, the ARC Tunnel will help create thousands of construction jobs each year.  The ARC project is expected to create 6,000 construction jobs annually and another 44,000 permanent jobs. The tunnel is also expected to slash daily commuting times by as much as 30 minutes for thousands of New Jersey Transit commuters throughout the state.  By shortening commuter travel times to New York City, the ARC Tunnel will result in significantly higher home values for New Jersey. A study by the Regional Plan Association demonstrated that every minute of improvement in a commuter’s trip adds an average of nearly $2,000 to the value of their home. And if you live within walking distance of a station, the number is closer to a $3,000 increase for every minute the commute time is cut. The federal government has agreed to provide $3 billion for the ARC Tunnel, which is the largest federal investment for a mass transit project in the nation’s history.                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1de5d461-b96c-43a1-99ce-20259a6d58e1,\"Menendez, Lautenberg Announce Over $12 Million for New Jersey Infrastructure Projects in Bergen, Hudson Counties\n                    \n                            Federal Funding will Improve Traffic Flow in One of Most Densely Populated Areas of the State and Help Revitalize Jersey City\n                    \n                      October 20, 2010\n                     NEWARK – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced New Jersey has been awarded $12,281,426 in Transportation Investment Generating Economic Recovery (TIGER) II grant funding to improve traffic flow in Hudson and Bergen County and to redevelop Canal Crossing in Jersey City by improving underutilized land, creating low-income housing opportunities and increasing access to transportation options. The U.S. Department of Transportation (DOT) awarded $10,008,056 to the New Jersey Meadowlands Commission to develop and deploy intelligent transportation system technology that will improve traffic flows in Bergen and Hudson counties.  The new intelligent signaling program will improve traffic flow along U.S. Routes 1&9 and 46; N.J. 7, 17 and 120, as well as county and local corridors in Hudson and Bergen counties. \n\n“No one has to tell commuters how difficult traffic can be in this area of northern New Jersey, and this major federal investment will help bring some relief through increased efficiency on the roads.” Menendez said. \"\"Commuters will benefit in the long run, and more immediately, local workers will find jobs working on this important project.”“This funding is critical to relieving congestion on roadways in Hudson and Bergen counties and helping New Jersey motorists travel more efficiently,” said Lautenberg, who is a member of the Senate Appropriations Committee that funds this program.  “Better transportation technology will help prevent our region from becoming completely gridlocked.  This is an investment in our families, our businesses and our environment.” A joint grant from DOT and the Department of Housing and Urban Development (HUD) for $2,273,370 was awarded to develop a 111-acre site in Jersey City into an area that enhances access to mass transit and promotes livability in the areas.     “This is a federal investment in creating both local jobs and the type of 21st Century community that attracts families with affordable housing, public transit, and lower energy costs” said Menendez.   “The Canal Crossing redevelopment project will afford job opportunities to local workers while providing thousands of local families with the type of neighborhood where they can prosper and thrive.\"\"\n\n\n“This funding will help revitalize Jersey City and provide residents with more opportunities to ride mass transit,” said Lautenberg, who is a member of the Senate Appropriations Committee that funds this program.  “By providing federal funding for this redevelopment effort, we can help create new opportunities for New Jersey families and workers.” \n\nTIGER II grant funding was awarded on a competitive basis from the federal government for national infrastructure investments that will have a significant impact on the nation or a metropolitan region.\n\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1b0e5f75-b215-4597-940f-34727d620974,\"Senator Menendez Applauds EPA GM Settlement Trust Fund to Clean Up Sites, Including Two in New Jersey\n                    \n                            Unprecedented $773 million in environmental trust funds to clean up 89 sites in 13 states. New Jersey’s $24.7 million for 2 sites among top 3 recipients of funds \n                    \n                      October 20, 2010\n                     WASHINGTON – Today the White House announced that the US Government, 14 state governments and a tribal government reached a settlement agreement with Old General Motors (now known as Motors Liquidation Company or MLC)  to establish a $773 million settlement trust fund to cleanup and repurpose for future use the site properties that will be left behind by the company after its bankruptcy. The trust will be used to clean up a total of 89 sites, two thirds of which are known to be contaminated with hazardous waste, including 2 in New Jersey. A total of $24,708,069 was allocated to clean up the two New Jersey sites -- Hyatt Clark and Delphi Interior & Lighting Systems - Trenton. \n\n“This settlement will ensure that polluters pay for the damage they’ve done and that New Jersey communities contaminated by General Motors will not be forgotten or stuck with a massive cleanup bill after the company's bankruptcy. The funds will protect the public health, environmental health and economic growth of these New Jersey communities. Ultimately, the contaminated sites will be rehabilitated and put in a position to thrive economically.”\n\nThis environmental trust fund is unprecedented in amount, scope, speed of settlement turnaround, and level of local participation. As part of the agreement, local communities will have the opportunity to participate in the repurposing of these properties based on local development objectives. In this way, funds will not only go towards cleaning up the properties, but also turn them immediately into sources of job creation and growth. Mr. Elliott Laws, former EPA Assistant Administrator for Solid Waste and Emergency Response, will be named the Managing Member of EPLET LLC which will be the Trustee and oversee administration of the funds in the trust.\nWHITE HOUSE FACTS ON THE TRUST FUND:The largest environmental trust in the U.S.\n•    This trust is the result of an agreement between the United States, Motors Liquidation Company, fourteen states and the St. Regis Mohawk Tribe.\n•    The trust will be the largest and most inclusive environmental trust in the United States.\n•    Despite the size and complexity of the issues, the parties were able to agree to the terms of the settlement with unprecedented speed, allowing the cleanup and administrative funds to be quickly put to use in the communities adversely affected by the GM bankruptcy.\nUnprecedented support for left behind communities\n•    The $773 million trust will be divided as follows: o    $431 million will be used directly in the states for cleaning up the Old GM properties. o    $68 million will be placed in a pooled account for environmental cleanup that may arise at any of the 89 properties, transferred to the trust on account of unforeseen conditions.o    Approximately $12 million will be credited to Old GM for approved cleanup activities.o    $262 million in cash and other assets will be used to cover various administrative activities and activities that help return these properties to beneficial use such as demolition.Working with local communities \n•    Mr. Elliott Laws, who previously served in the Environmental Protection Agency as Assistant Administrator for Solid Waste and Emergency Response, will be named the Managing Member of EPLET LLC which will be the Trustee and oversee administration of the funds in the trust.•    Federal and the state environmental agencies will work closely with the Trustee on budgeting for implementing the cleanups.•    The Trustee will work closely with the local communities when selling or repurposing the properties.  In addition to generating sale proceeds, the Trustee will consider both the potential for the reuse to create jobs in the applicable state and the views of the applicable state and affected communities.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=395947df-12ed-4829-a9c2-0d71c1350108,\"Members of the Senate Democratic Hispanic Task Force Urge President Obama to Award Dolores Huerta the Presidential Medal of Freedom\n                    \n                            Living icon of America’s civil rights movement, Huerta’s achievements are a testament to her commitment to social justice and she is deserving of our nation’s highest civilian award\n                    \n                      October 18, 2010\n                     WASHINGTON –  Today members of the Senate Democratic Hispanic Task Force, led by U.S. Senator Robert Menendez (D-NJ), sent a letter to President Obama urging him to award Dolores Huerta the Presidential Medal of Freedom, the nation’s highest civilian award. The letter was signed by Senator Menendez, Chairman of the Hispanic Task Force, Senate Majority Leader Harry Reid (D-NV), Senator Jeff Bingaman (D-NM), Senator John Kerry (D-MA), and Senator Kirsten Gillibrand (D-NY). In their letter, the Senators emphasized Dolores Huerta’s lifetime commitment to service and social justice, as well as her advocacy and work on behalf of farm workers and their families. \n\n“Born during the uncertainty of the Great Depression, Ms. Huerta’s commitment to service and social justice began to surface in her early years in Stockton High School.  After founding the Agricultural Workers Association in 1960, setting up voter registration drives, and fighting for the rights of tenants, Ms. Huerta joined Cesar Chavez to become a civil rights pioneer and champion of social and economic equality for farm workers and an agriculture community composed of Mexican, Filipino, African-American, Japanese, and Chinese working families.  In 1968, she coordinated the East Coast table grape boycott, which was instrumental in helping get recognition for the farm workers’ union. Through her role as a civil rights advocate, Ms. Huerta was instrumental to the enactment of the Agricultural Labor Relations Act of 1975—the first law in the country to grant farm workers the right to collectively organize and bargain for better wages and working conditions.”\n\nPDF of the letter: http://menendez.senate.gov/imo/media/doc/10182010HTFLetterDoloresHuerta.pdf\nFull text of the letter:\nThe Honorable Barack ObamaPresident of the United States1600 Pennsylvania Avenue, NWWashington, D.C.  20500\nDear President Obama:\nAs Members of the Senate Democratic Hispanic Task Force, we respectfully urge you to award Dolores Huerta, a living icon of America’s civil rights movement, the Presidential Medal of Freedom.  Ms. Huerta’s commitment to the cause of freedom is well known all across America. Together with Cesar Chavez, Huerta founded the National Farm Workers Association, which eventually grew to become the United Farm Workers – our nation’s first successful farm workers union.  Dolores Huerta truly embodies the meritorious contribution to the security and national interest to our nation that the Presidential Medal of Freedom honors.   \nBorn during the uncertainty of the Great Depression, Ms. Huerta’s commitment to service and social justice began to surface in her early years in Stockton High School.  After founding the Agricultural Workers Association in 1960, setting up voter registration drives, and fighting for the rights of tenants, Ms. Huerta joined Cesar Chavez to become a civil rights pioneer and champion of social and economic equality for farm workers and an agriculture community composed of Mexican, Filipino, African-American, Japanese, and Chinese working families.  In 1968, she coordinated the East Coast table grape boycott, which was instrumental in helping get recognition for the farm workers’ union. Through her role as a civil rights advocate, Ms. Huerta was instrumental in the enactment of the Agricultural Labor Relations Act of 1975—the first law in the country to grant farm workers the right to collectively organize and bargain for better wages and working conditions. \nThere is no doubt that Dolores Huerta’s achievements are a testament to her dedication and passion for the betterment of Latino workers, their families and the working American community as a whole.  Today, as an 80 year-old grandmother of 14 grandchildren and 4 great-grandchildren, Ms. Huerta continues to work tirelessly developing the next generation of leaders, advocating for working poor, women and children through the Dolores Huerta Foundation. \nIt is, therefore, fitting that the woman who has touched and changed the lives of so many working Americans be awarded the highest civilian award this nation has to offer.  We believe there is no one more deserving of the Presidential Medal of Freedom.  \nSincerely,\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5900b714-e3d0-4a30-87fd-1c362d3359ad,\"Menendez, Lautenberg Urge Immediate FCC Action to Resolve Fox/Cablevision Dispute\n                    \n                            New regulations needed to prevent future blackouts\n                    \n                      October 18, 2010\n                     NEWARK, N.J. – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today called on the Federal Communications Commission (FCC) to take immediate action to help resolve the dispute between Fox and Cablevision over the carriage of three broadcast stations – WNYW (NY channel 5), WWOR (NJ channel 9) and WTXF (Philadelphia channel 29) – for Cablevision subscribers.  In addition, Sens. Lautenberg and Menendez want the FCC to take steps to prevent similar problems in the future, and asked for a timeline to be established for the review and modification of current rules. At 12:01 a.m. Saturday morning, local news broadcasts, major sporting events like the Phillies playoff games and Giants and Eagles football games, and other programming were blacked out for Cablevision subscribers because an agreement had not been reached.  Nearly 3 million Cablevision subscribers in New Jersey and the surrounding areas are affected by the station blackouts. A PDF of the Senators’ letter to FCC Chairman Julius Genachowski can be found here: http://lautenberg.senate.gov/assets/FCC.101810.pdf\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=58575e43-8ae4-45d2-8134-f3e1220dc947,\"Menendez Urges Cablevision and News Corp to Accept Mediation in Dispute that has Left Fox Channels Dark in NJ\n                    \n                            NJ Senator also sent letter to both parties urging a settlement\n                    \n                      October 16, 2010\n                     NEWARK – With New Jersey families unable to receive News Corporation-owned channels (including Fox) on their Cablevision systems due to a dispute between the two companies, U.S. Senator Robert Menendez (D-NJ) is urging both sides to enter mediation proposed by the Federal Communication Commission. He released the following statement today:\n\n\"\"I am deeply disappointed that the breakdown in negotiations between News Corporation and Cablevision has led to a number of New Jersey families being deprived of their preferred programming, including valuable news information, entertainment and sports. Yesterday, I urged both sides to come to an expedited agreement, keeping in mind the excitement in my state for the upcoming National League Championship Series with the Philadelphia Phillies, as well as the New York Giants and Philadelphia Eagles games.  While the negotiations between these two companies are a private matter, I strongly believe that consumers should have a reasonable expectation to receive scheduled programming without constant fear of disruption. I understand that the Federal Communications Commission has proposed mediation in this dispute, and  I call on both sides to agree to this offer and end the disruption that the impasse is having on the daily lives of New Jersey families.\"\"\n\nMenendez has also sent a letter to both parties urging an agreement: http://menendez.senate.gov/imo/media/doc/20101015CablevisionNewsCorp.pdf \n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7069ff36-f7a9-4c96-84a6-b3f1b064d061,\"Senator Menendez Applauds Succesful Completion and Final Verdict in Federal Investigation of Shenandoah Hate Crime Case\n                    \n                            NJ Senator was a strong advocate of federal involvement in the case and co-sponsor of landmark hate crimes legislation passed last year to give federal law enforcement greater ability to prosecute this type of crime\n                    \n                      October 15, 2010\n                     WASHINGTON – The US Department of Justice announced last night that a federal jury in Scranton, Pennsylvania has found Brandon Piekarsky and Derrick Donchak guilty of committing hate crime assaults in the fatal beating of Luis Ramirez in Shenandoah, PA in July 2008. Piekarsky and Donchak were found guilty based on the criminal component of the federal Fair Housing Act, which makes it a crime to use a person’s race, national origin or ethnicity as a basis to threaten or use violence or interfere with an individual’s  right to choose where he or she lives. The jury also found Donchak guilty of conspiracy to obstruct justice. Senator Menendez (D-NJ), who advocated on behalf of federal involvement in this case and co-sponsored the landmark Matthew Shepard legislation approved last year that gave federal law enforcement greater ability to prosecute hate crimes, applauded the successful completion of the investigation and final verdict of the jury: \n\n“I’m thankful to see the federal justice system heeded our call to fully investigate this case to help bring to justice the individuals who committed this terrible and shameful crime. As this case has so forcefully proved, no one cracks down on hate crimes with more focus or authority than federal law enforcement, which is why the new Matthew Shepard hate crimes bill that gives federal law enforcement an expanded role in prosecuting hate crimes is so important.” said Senator Menendez.\n\nIn December 2009, the U.S. Department of Justice announced that a federal grand jury returned multiple indictments for the racially-motivated fatal beating of Luis Ramirez, a Latino male, in Shenandoah, Pennsylvania committed by a group of teenagers. One of the indictments charged Derrick Donchak and Brandon Piekarsky with a federal hate crime for fatally beating Luis Ramirez while shouting racial epithets at him. The indictment also alleged that, immediately following the beating, Donchak, Piekarsky and others, including members of the Shenandoah Police Department, participated in a scheme to obstruct the investigation of the fatal assault.  As a result of this alleged obstruction, Donchak was also charged with three additional counts for conspiring to obstruct justice and related offenses. The federal jury’s final verdict announced today was based on its consideration of evidence from multiple witnesses presented at the trial that led them to determine that the defendants did in fact fatally beat Luis Ramirez because of his Latino ethnic origin and conspired to obstruct the law because they didn’t want Latinos living in Shenandoah. Both Donchak and Piekarsky face sentences of up to life in prison on the hate crime charge. In addition, Donchak faces up to a total of 25 years for the obstruction of the law and conspiracy charge.\n                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=963000d6-3b66-43b2-b65a-1aeb6c2302a7,\"Menendez, Lautenberg, Bowser Open East Orange Senior Center\n                    \n                            Senators Tout More than $440,000 in Federal Funding for East Orange’s First Senior Center\n                    \n                      October 13, 2010\n                     EAST ORANGE – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) joined East Orange Mayor Robert Bowser and other officials today to open the city’s first Senior Citizens’ Center. The facility, which will serve about 10,000 seniors and disabled adults each year, was built in part with $444,800 in federal funding secured by Senators Lautenberg and Menendez. \n\n“The grand opening of the East Orange Senior Center is an investment in New Jersey seniors,” said Menendez. “This new state-of-the art Center will provide the 10,000 seniors who will use this new facility in the coming year the services and help they need to lead active, safe, and fulfilling lives.” \n\n\n“Our senior and disabled citizens deserve a place in their communities to exercise, interact and access vital medical services,” stated Lautenberg.  “I was pleased to secure federal funding to create this center and I am proud to be here today to see this tremendous vision for East Orange become a reality.” “Even in tough economic times, we have persevered and completed our promise to have our own Senior Center facility,” Bowser said.  “A multitude of people are to be thanked who dedicated their time, energy and resources to bring much-needed programs and services for our seniors.”\n\nThe $2 million rehabilitation of 90 Halsted Street, formerly known as the Wilkerson Center, was made possible through $444,800 in federal funding, city funds and contributions from city residents and businesses.  The facility now has a pool, multi-purpose room, commercial kitchen, dining facilities, health suite, computer room, and garden plaza.  More than 13 percent of New Jersey residents are over the age of 65. By 2025, senior citizens are expected to comprise more than 17 percent of the state’s population. \n                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=16947343-c69e-4b3c-b992-79c57103ad50,\"Menendez and Lautenberg Announce $23 Million Federal Investment for New Clean-Energy Buses and Bus Facilities\n                    \n                      October 13, 2010\n                     WASHINGTON, D.C. – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that the Federal Transit Administration (FTA) has awarded New Jersey $22,995,200 in federal funding to upgrade the state’s bus system fleets with compressed natural gas buses and construct a state-of-the-art, energy-efficient LEED certified bus wash facility in Cape May County. The resources were awarded on a competitive basis through the agency’s new initiative “State of Good Repair Program” that was announced earlier this year. The “State of Good Repair Program” is a new initiative created in response to the findings of “The National State of Good Repair Assessment Study” to strengthen and modernize the nation’s transportation system.  \n\n“This is an investment in a modern, greener and less costly public transportation system from New Jersey’s commuters.,” said Menendez. “By investing in clean-energy transportation we can save commuters time and money, reduce the number of cars on the road, reduce greenhouse gas emissions, and spur economic growth.”“This critical federal funding will help provide NJ Transit with more energy efficient vehicles that will cut down on harmful pollution and reduce the number of cars on New Jersey’s roadways,” said Lautenberg, a member of the Senate Appropriations Committee.  “These kinds of transportation projects will improve our neighborhoods, our roadways and our air quality.”\n\nThe FTA “State of Good Repair Program” grants were awarded in New Jersey for the following projects:•   $22 million for the purchase of Compressed Natural Gas (CNG) for replacement of bus fleets through the state.\n•   $995,200 for the construction of a state of the art LEED certified bus vehicles wash facility in Cape May County that will comply with New Jersey’s municipal storm regulation to prevent water pollution. The washing facility will also extend the life of the County’s buses by minimizing corrosion and rust that occur as a result of being near the ocean.\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f553ed60-a290-4d8d-8d33-df14e2c92c9d,\"U.S. Senator Robert Menendez Announces 37 NJ Small Businesses Receiving $26 Million from Small Businesses Administration\n                    \n                      October 8, 2010\n                     WASHINGTON -   Today, U.S. Senator Robert Menendez announced that the U.S. Small Business Administration has given final approval to $26,588,500 federal loan applications for New Jersey businesses.  The approvals come a week after President Obama signed the Small Business Jobs Act of 2010, which enhanced SBA’s two largest loan programs by extending increased guarantees and reducing SBA fees.  These federal loans will help jump-start local businesses, allowing them to expand and hire workers.\n\n“Small businesses are the main job creation engine in our country, which is why we created this new program to help make available the loans they’ve been starving for during these tough times,” said Menendez. “These federal loans and the private loans that will accompany them will help to stabilize New Jersey small businesses, allow them to expand and allow them to retain and hire workers.  These loans are critical to our economic recovery, because small businesses are critical to our economic recovery.”  \n\nThe $26,588,500 in federal SBA loans have been approved for the following businesses:\n\n\n\nSTATE\n\n\nBORROWER\n\n\nCITY\n\n\nCURRENT EMPLOYEES\n\n\nJOBS CREATED\n\n\nTOTAL APPROVED LOAN AMOUNT\n\n\nNJ\n\n\n$1.99 Any Garment Cleaners\n\n\nMahwah\n\n\n2\n\n\n0\n\n\n$425,000\n\n\nNJ\n\n\n1813 Captain's Realty LLC (EPC\n\n\nForked River\n\n\n1\n\n\n40\n\n\n$2,000,000\n\n\nNJ\n\n\n1st Light Energy Inc.\n\n\nSouth Plainfield\n\n\n35\n\n\n10\n\n\n$1,000,000\n\n\nNJ\n\n\nA & P Pork Store LLC\n\n\nEatontown\n\n\n12\n\n\n0\n\n\n$600,000\n\n\nNJ\n\n\nAkshay Enterprises Inc.\n\n\nAsbury Park\n\n\n2\n\n\n0\n\n\n$375,000\n\n\nNJ\n\n\nAlpa Shah\n\n\nNorth Brunswick\n\n\n0\n\n\n10\n\n\n$212,500\n\n\nNJ\n\n\nAmaral Auto Sales\n\n\nLyndhurst\n\n\n6\n\n\n4\n\n\n$1,620,000\n\n\nNJ\n\n\nANB Management LLC (EPC) and S\n\n\nTenafly\n\n\n2\n\n\n0\n\n\n$1,028,000\n\n\nNJ\n\n\nAriana Alaj\n\n\nWarren\n\n\n12\n\n\n4\n\n\n$1,000,000\n\n\nNJ\n\n\nARS TECHNOLOGIES INC.\n\n\nNew Brunswick\n\n\n16\n\n\n0\n\n\n$400,000\n\n\nNJ\n\n\nBabb & Smith dba Dunkin   Donuts\n\n\nLong Valley\n\n\n0\n\n\n0\n\n\n$730,000\n\n\nNJ\n\n\nBLEEDING DISORDERS RESOURCE NE\n\n\nRiverdale\n\n\n14\n\n\n0\n\n\n$300,000\n\n\nNJ\n\n\nChatter Box Communications\n\n\nRiverton\n\n\n1\n\n\n0\n\n\n$225,000\n\n\nNJ\n\n\nDunkin Donuts and Baskin Robbi\n\n\nParamus\n\n\n2\n\n\n15\n\n\n$1,530,000\n\n\nNJ\n\n\nElizabeth Ramirez MD LLC\n\n\nJersey City\n\n\n1\n\n\n3\n\n\n$176,000\n\n\nNJ\n\n\nEntity (EPC) and Send 'em Pack\n\n\nBayville\n\n\n0\n\n\n0\n\n\n$550,000\n\n\nNJ\n\n\nEntity to be Formed\n\n\nClementon\n\n\n2\n\n\n2\n\n\n$800,000\n\n\nNJ\n\n\nEntity to be Formed\n\n\nMays Landing\n\n\n5\n\n\n8\n\n\n$900,000\n\n\nNJ\n\n\nEXIGENT TECHNOLOGIES, LLC\n\n\nMount Arlington\n\n\n30\n\n\n0\n\n\n$350,000\n\n\nNJ\n\n\nFuddruckers\n\n\nParsippany\n\n\n35\n\n\n30\n\n\n$529,000\n\n\nNJ\n\n\nGenesis Associates Inc.\n\n\nMidland Park\n\n\n4\n\n\n0\n\n\n$50,000\n\n\nNJ\n\n\nHorizon Marine Group\n\n\nToms River\n\n\n1\n\n\n3\n\n\n$698,000\n\n\nNJ\n\n\nJEDH LLC\n\n\nHazlet\n\n\n22\n\n\n0\n\n\n$377,000\n\n\nNJ\n\n\nJEMC Corp.\n\n\nManasquan\n\n\n8\n\n\n4\n\n\n$500,000\n\n\nNJ\n\n\nJohn J. Royce, Jr.\n\n\nCedar Grove\n\n\n2\n\n\n6\n\n\n$900,000\n\n\nNJ\n\n\nMark Conca\n\n\nNutley\n\n\n4\n\n\n4\n\n\n$500,000\n\n\nNJ\n\n\nMARY'S LITTLE LAMBS, LLC\n\n\nMillville\n\n\n1\n\n\n5\n\n\n$20,000\n\n\nNJ\n\n\nMax Alan Beauty L.L.C.\n\n\nBridgewater\n\n\n1\n\n\n7\n\n\n$229,000\n\n\nNJ\n\n\nMELILLO ARCHITECTURE ASSOCIATE\n\n\nSpring Lake Heights\n\n\n5\n\n\n0\n\n\n$50,000\n\n\nNJ\n\n\nMOORE CONSULTING ENGINEERS, LL\n\n\nTabernacle\n\n\n6\n\n\n0\n\n\n$150,000\n\n\nNJ\n\n\nNJ Spice Merchants LLC\n\n\nUnion\n\n\n2\n\n\n2\n\n\n$150,000\n\n\nNJ\n\n\nPrecise Continental\n\n\nCarlstadt\n\n\n40\n\n\n15\n\n\n$1,332,000\n\n\nNJ\n\n\nRichard & Terry Anderson   (EPC)\n\n\nLambertville\n\n\n2\n\n\n0\n\n\n$1,500,000\n\n\nNJ\n\n\nShamy Smoothies, LLC DBA Smoot\n\n\nFlemington\n\n\n13\n\n\n13\n\n\n$150,000\n\n\nNJ\n\n\nSomerset Rehabilitation Service\n\n\nRaritan\n\n\n7\n\n\n4\n\n\n$400,000\n\n\nNJ\n\n\nVenice Bakery\n\n\nGarfield\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bff01d36-3dbb-4b52-a457-a8ad1abc3ab1,\"U.S. Senator Robert Menendez Announces 37 NJ Small Businesses Receiving $26 Million from Small Businesses Administration\n                    \n                      October 8, 2010\n                     WASHINGTON -  Today, U.S. Senator Robert Menendez announced that the U.S. Small Business Administration has given final approval to $26,588,500 federal loan applications for New Jersey businesses.  The approvals come a week after President Obama signed the Small Business Jobs Act of 2010, which enhanced SBA’s two largest loan programs by extending increased guarantees and reducing SBA fees.  These federal loans will help jump-start local businesses, allowing them to expand and hire workers.\n\n“Small businesses are the main job creation engine in our country, which is why we created this new program to help make available the loans they’ve been starving for during these tough times,” said Menendez. “These federal loans and the private loans that will accompany them will help to stabilize New Jersey small businesses, allow them to expand and allow them to retain and hire workers.  These loans are critical to our economic recovery, because small businesses are critical to our economic recovery.”  \n\nThe $26,588,500 in federal SBA loans have been approved for the following businesses:\n\n\nSTATE\n\n\nBORROWER\n\n\nCITY\n\n\nCURRENT EMPLOYEES\n\n\nJOBS CREATED\n\n\nTOTAL APPROVED LOAN AMOUNT\n\n\nNJ\n\n\n$1.99 Any Garment Cleaners\n\n\nMahwah\n\n\n2\n\n\n0\n\n\n$425,000\n\n\nNJ\n\n\n1813 Captain's Realty LLC (EPC\n\n\nForked River\n\n\n1\n\n\n40\n\n\n$2,000,000\n\n\nNJ\n\n\n1st Light Energy Inc.\n\n\nSouth Plainfield\n\n\n35\n\n\n10\n\n\n$1,000,000\n\n\nNJ\n\n\nA & P Pork Store LLC\n\n\nEatontown\n\n\n12\n\n\n0\n\n\n$600,000\n\n\nNJ\n\n\nAkshay Enterprises Inc.\n\n\nAsbury Park\n\n\n2\n\n\n0\n\n\n$375,000\n\n\nNJ\n\n\nAlpa Shah\n\n\nNorth Brunswick\n\n\n0\n\n\n10\n\n\n$212,500\n\n\nNJ\n\n\nAmaral Auto Sales\n\n\nLyndhurst\n\n\n6\n\n\n4\n\n\n$1,620,000\n\n\nNJ\n\n\nANB Management LLC (EPC) and S\n\n\nTenafly\n\n\n2\n\n\n0\n\n\n$1,028,000\n\n\nNJ\n\n\nAriana Alaj\n\n\nWarren\n\n\n12\n\n\n4\n\n\n$1,000,000\n\n\nNJ\n\n\nARS TECHNOLOGIES INC.\n\n\nNew Brunswick\n\n\n16\n\n\n0\n\n\n$400,000\n\n\nNJ\n\n\nBabb & Smith dba Dunkin   Donuts\n\n\nLong Valley\n\n\n0\n\n\n0\n\n\n$730,000\n\n\nNJ\n\n\nBLEEDING DISORDERS RESOURCE NE\n\n\nRiverdale\n\n\n14\n\n\n0\n\n\n$300,000\n\n\nNJ\n\n\nChatter Box Communications\n\n\nRiverton\n\n\n1\n\n\n0\n\n\n$225,000\n\n\nNJ\n\n\nDunkin Donuts and Baskin Robbi\n\n\nParamus\n\n\n2\n\n\n15\n\n\n$1,530,000\n\n\nNJ\n\n\nElizabeth Ramirez MD LLC\n\n\nJersey City\n\n\n1\n\n\n3\n\n\n$176,000\n\n\nNJ\n\n\nEntity (EPC) and Send 'em Pack\n\n\nBayville\n\n\n0\n\n\n0\n\n\n$550,000\n\n\nNJ\n\n\nEntity to be Formed\n\n\nClementon\n\n\n2\n\n\n2\n\n\n$800,000\n\n\nNJ\n\n\nEntity to be Formed\n\n\nMays Landing\n\n\n5\n\n\n8\n\n\n$900,000\n\n\nNJ\n\n\nEXIGENT TECHNOLOGIES, LLC\n\n\nMount Arlington\n\n\n30\n\n\n0\n\n\n$350,000\n\n\nNJ\n\n\nFuddruckers\n\n\nParsippany\n\n\n35\n\n\n30\n\n\n$529,000\n\n\nNJ\n\n\nGenesis Associates Inc.\n\n\nMidland Park\n\n\n4\n\n\n0\n\n\n$50,000\n\n\nNJ\n\n\nHorizon Marine Group\n\n\nToms River\n\n\n1\n\n\n3\n\n\n$698,000\n\n\nNJ\n\n\nJEDH LLC\n\n\nHazlet\n\n\n22\n\n\n0\n\n\n$377,000\n\n\nNJ\n\n\nJEMC Corp.\n\n\nManasquan\n\n\n8\n\n\n4\n\n\n$500,000\n\n\nNJ\n\n\nJohn J. Royce, Jr.\n\n\nCedar Grove\n\n\n2\n\n\n6\n\n\n$900,000\n\n\nNJ\n\n\nMark Conca\n\n\nNutley\n\n\n4\n\n\n4\n\n\n$500,000\n\n\nNJ\n\n\nMARY'S LITTLE LAMBS, LLC\n\n\nMillville\n\n\n1\n\n\n5\n\n\n$20,000\n\n\nNJ\n\n\nMax Alan Beauty L.L.C.\n\n\nBridgewater\n\n\n1\n\n\n7\n\n\n$229,000\n\n\nNJ\n\n\nMELILLO ARCHITECTURE ASSOCIATE\n\n\nSpring Lake Heights\n\n\n5\n\n\n0\n\n\n$50,000\n\n\nNJ\n\n\nMOORE CONSULTING ENGINEERS, LL\n\n\nTabernacle\n\n\n6\n\n\n0\n\n\n$150,000\n\n\nNJ\n\n\nNJ Spice Merchants LLC\n\n\nUnion\n\n\n2\n\n\n2\n\n\n$150,000\n\n\nNJ\n\n\nPrecise Continental\n\n\nCarlstadt\n\n\n40\n\n\n15\n\n\n$1,332,000\n\n\nNJ\n\n\nRichard & Terry Anderson   (EPC)\n\n\nLambertville\n\n\n2\n\n\n0\n\n\n$1,500,000\n\n\nNJ\n\n\nShamy Smoothies, LLC DBA Smoot\n\n\nFlemington\n\n\n13\n\n\n13\n\n\n$150,000\n\n\nNJ\n\n\nSomerset Rehabilitation Service\n\n\nRaritan\n\n\n7\n\n\n4\n\n\n$400,000\n\n\nNJ\n\n\nVenice Bakery\n\n\nGarfield\n\n\n25\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a8777dc0-1810-44fc-92d1-5ba5ec75294b,\"Menendez Statement on Latest Mass Transit Tunnel Developments\n                    \n                      October 8, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today released the following statement on the planned mass transit tunnel across the Hudson River:\n\n“The reason this tunnel has a fighting chance at survival is because the governor giving up on it seemed like a rash and unproductive decision to most New Jersey residents. New Jersey taxpayers don’t want to own a $600 million Hole to Nowhere. They’d rather have a fully functioning tunnel that brings relief to their commutes, creates tens of thousands of jobs and is supported by a major, $3 billion investment from the federal government. \n“As I said when the governor initially cancelled the tunnel, taking a deep breath and working cooperatively with all parties to control costs, look at options and build the tunnel is the best way forward for New Jersey’s commuters, workers and taxpayers. It didn’t make much sense that the governor would lament the costs of the tunnel when his administration is in control of those costs and when Recovery Act transportation projects are coming in well under budget. I hope these two weeks are more than window-dressing and will constitute a good faith effort to get the tunnel built once and for all, to create tens of thousands of jobs, protect the environment and ease commutes.”\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dedb1ae5-83f7-477c-ac2c-f6a5f37eb363,\"Menendez Statement on Mass Transit Tunnel\n                    \n                            Senator says: Instead of jobs, less traffic, “NJ taxpayers are now the owners of a brand new, $600 million Hole to Nowhere”. Menendez says $3 billion from feds can’t simply be used for other NJ needs, as governor suggests.\n                    \n                      October 7, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) released the following statement on the mass transit tunnel across the Hudson River:\n\n“At a time when the job market is brutal, giving up on the tunnel kills 6,000 immediate jobs for local workers, the tens of thousands of local jobs that would be supported upon its completion and the chance to significantly ease the horrendous traffic congestion crossing the river. Giving up on the tunnel will also fumble away a $3 billion guaranteed investment in our state from the federal government, which is on top of the $400 million in federal education funding that our state has already forfeited. Remember those lost investments the next time someone trots out the age-old complaint that New Jersey’s taxpayers do not get back enough funding from the federal government. Not only is this important and significant return on New Jersey’s tax dollars gone, this action puts our state’s credibility for future federal transportation investments at serious risk – and that will rob us of jobs, funding and transportation improvements for years to come. \n“Upon media reports that the governor planned to kill the tunnel, I spoke with U.S. Department of Transportation officials about governor’s suggestion that the $3 billion for the tunnel could go to various other transportation projects in the state. The Department of Transportation reiterated that the tunnel was a high-priority New Starts project and that this funding was dedicated for that purpose and can only go to a New Starts project, not to other state transportation projects in our state.\n“Instead of getting a major investment from the federal government, New Jersey taxpayers now owe the federal government $300 million plus interest and penalties as a result of the governor giving up on the tunnel. That’s on top of the $300 million our state has already spent. New Jersey taxpayers are now the owners of a brand new, $600 million Hole To Nowhere.\n“It would seem that a more sensible and level-headed approach on behalf of New Jersey workers, commuters and taxpayers would be to take a deep breath, work with all of the parties involved to identify ways to reign in the costs and get the tunnel built. The governor is contradicting his unequivocal letter to the federal government in April, which affirmed his commitment to the project. He was apparently intent on killing the tunnel in the months since that letter and jumped at the opportunity to use state money to bail out the mismanaged transportation trust fund. The governor’s public statements portray surprise and uncertainty about costs estimates, but it’s hard to understand how he has so little control of and information about a project that is directed by his own administration.\n“The state botched this golden opportunity to create jobs and significantly upgrade the mass transit system by paying higher prices and higher professional costs at a time when prices are down and Recovery Act projects have come in under budget. Knowing that, it is particularly disappointing that the governor hasn’t even tried to make this work. Giving up on the tunnel is a loss for New Jerseyans looking for a job, a loss for New Jersey families that want a meaningful return on their tax dollars and a loss for New Jersey commuters who are sick of wasting precious time and money sitting in traffic.”\n\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5ea81d7e-cd7e-4ae2-82ff-381e3151ec07,\"Menendez Hails Additional $188 Million from Feds to Assist Laid Off NJ Workers on Verge of Foreclosure\n                    \n                            Senator also takes action to support those caught up in growing “rubber-stamp” foreclosure scandal\n                    \n                      October 5, 2010\n                     TEANECK – Standing with a local homeowner facing unemployment and mortgage concerns, U.S. Senator Robert Menendez (D-NJ) today announced dual actions meant to address the foreclosure crisis. Menendez hailed a new allocation of $188 million for New Jersey from the federal government’s “Hardest Hit Fund,” meant to assist families with unemployed workers who are also on the verge of foreclosure. This federal investment is part of $300 million total that will come to New Jersey from the program.\nIn addition, as Chairman of the Senate Banking Subcommittee on Housing, Transportation and Community Development, Menendez today demanded answers from banks and mortgage service companies about the growing flawed “rubber-stamp” foreclosure scandal. Major banks have halted foreclosures in 23 states, including New Jersey, upon revelations that at least tens of thousands of foreclosures per month were authorized in large batches without proper due diligence.\n\nOn the Hardest Hit funding, Menendez said: “This mortgage safety net will be available to those who need it the most in these tough times: laid off workers on the brink of losing their homes. They are confronted by a job lost through no fault of their own and a home on the verge of being taken away -- that's just about the hardest one-two punch a tough economy like this can throw at a family. We're delivering this assistance to soften that blow, so that families can stay standing as their breadwinners look for new jobs, and so that our economy can fully recover without more setbacks.”\nOn the flawed foreclosure letters, Menendez said: “To learn that some financial institutions have treated foreclosures as a rubber-stamp process is deeply troubling. After all that has transpired in our economy, Wall Street should act responsibly toward and cooperatively with Main Street families. This rushed and bureaucratic approach to actions as significant as foreclosures would suggest otherwise. I want to know how deep this problem goes and what safeguards are now in place to prevent unjustified rubber-stamp foreclosures from happening in the future.”\n\nThe Hardest Hit investment will help fund the NJ Home Keeper program, to be administered by the New Jersey Housing and Mortgage Finance Agency in the coming months. That program will provide interest free loans to unemployed and underemployed homeowners for up to two years and $48,000. They are deferred generally until the homeowner is in good enough employment standing to repay the loans.\nOn the rubber-stamp foreclosure issue, Menendez wrote to JP Morgan Chase, Bank of America and Ally Financial, all of which have announced foreclosure freezes, asking for details on what those banks are doing to determine which foreclosures were flawed and how they are rectifying those situations. In addition, Menendez also wrote to 117 mortgage servicing companies, asking whether they have reviewed their foreclosure process, whether measures have been taken to address flaws and if statistics about potentially flawed foreclosures have been compiled. In addition, Menendez and Senator Al Franken (D-MN) requested that the Government Accountability Office investigate whether shortcomings in federal regulators’ oversight had any role in allowing flawed foreclosure processes to occur.\nPDFs of letters:\nJP Morgan Chase: http://menendez.senate.gov/imo/media/doc/20101005ltr_JPMorgan.pdf\nBank of America: http://menendez.senate.gov/imo/media/doc/20101005ltr_BoA.pdf\nAlly Financial: http://menendez.senate.gov/imo/media/doc/20101005ltr_Ally.pdf\nMortgage Servicers (identical letter sent to 117 companies): http://menendez.senate.gov/imo/media/doc/20101005ltr_MortgageServicers.pdfGAO: http://menendez.senate.gov/imo/media/doc/20101005ltr_GAOMortgages.pdf\nText of letters:\nLETTER TO MORTGAGE SERVICE COMPANIES (IDENTICAL LETTER SENT TO 117 COMPANIES):\nOctober 4, 2010\n[Name of Mortgage Servicer]\nDear [CEO]:\nI write to you today regarding several recent news reports detailing flawed foreclosure proceedings and lax servicer oversight.\nAs you are well aware, Ally Financial, J.P. Morgan Chase and Bank of America have halted their foreclosure proceedings after flawed paperwork and careless oversight procedures were discovered.  While Ally Financial has declined to comment on the number of homeowners that may be affected, J.P. Morgan Chase’s decision will affect 56,000 borrowers in 23 states, after it was revealed that approximately 18,000 foreclosures per month had been approved by the company without the necessary due diligence.  Bank of America will also halt foreclosures in the same 23 states.\nIt is simply inexcusable that proper oversight proceedings were not in place, especially when dealing with matters as monumental as the seizure of a family’s home. At least one credit rating agency, Fitch, states that it believes this problem is widespread among banks and servicers, which raises the question of whether other banks should impose a moratorium until this lack of oversight is corrected.\nAs Chairman of the Senate Subcommittee on Housing, Transportation, and Community Development, I have several inquiries regarding your company’s foreclosure processes:\n•    Have you reviewed your own foreclosure processes in light of these revelations? If so, please detail this review.\n•    What steps have you taken to ensure that your own foreclosure processes will not experience the same problems exhibited by Ally Financial, J.P. Morgan Chase and Bank of America?  Have you devoted sufficient resources toward this goal given the scope of the problem?  Please provide specifics.\n•    If you have discovered problems with your foreclosure proceedings, what steps have you taken to make whole homeowners who have been adversely affected?\n•    Please provide statistics detailing your own foreclosure proceedings, including the number of foreclosures that have been investigated, the number that have shown mistakes, and what kind of mistakes those were.\nUnfortunately, I continue to hear numerous experiences of New Jerseyans expressing their frustration with the mishandling of bank foreclosure proceedings, and this recent disclosure will bring even more public outrage.  I strongly believe that a full accounting and public transparency concerning this revelation is in the best interest of all parties.\nThank you for your attention to this matter.  I look forward to your response.\nSincerely,\nROBERT MENENDEZUnited States Senator\nLETTER TO JP MORGAN CHASE:\nOctober 4, 2010\nMr. Jamie DimonChief Executive OfficerJ.P. Morgan Chase270 Park Ave.New York, NY 10017-2070\nDear Mr. Dimon:\nI write to you today regarding J.P. Morgan Chase’s foreclosure procedures.  I have read with great interest and concern the troubling recent press reports detailing the flawed handling of homeowner paperwork and lax oversight, which may have broad ramifications for thousands of Americans who unfortunately have lost their home already or currently find themselves in foreclosure proceedings.\nAs you are well aware, a company executive testified in a sworn deposition that she and her team had approved approximately 18,000 foreclosures per month without completing proper due diligence to ensure these proceedings were justified.  While I applaud your decision to halt foreclosure proceedings in light of these findings, and while your company is certainly not solely to blame for the country’s foreclosure problems, it is inexcusable that proper oversight procedures were not in place, especially when dealing with matters as monumental as the seizure of a family’s home.  According to published reports, your decision to halt foreclosure proceedings will affect 56,000 borrowers in 23 states, including my state of New Jersey.  Obviously, this will cause greater uncertainty in a market that is showing signs of a rebound, but still struggling to find its footing.\nJ.P. Morgan Chase officials have said that while the firm “does not expect to find any factual problems” or cases of “customers [being] harmed,” it will “take appropriate action” if problems or customer harm is indeed uncovered.  Given the scope of the admissions, however, it seems extraordinarily difficult to believe that no customers have been foreclosed on who should not have been.\nAs Chairman of the Senate Subcommittee on Housing, Transportation, and Community Development, I ask that you fully document, both to me and to the general public, your efforts to re-evaluate all homes that have already been foreclosed, and make whole those homeowners whose houses have been unjustly foreclosed.  Quite simply, the owners of these homes deserve no less.\nUnfortunately, I continue to hear numerous experiences of New Jerseyans expressing their frustration with the mishandling of bank foreclosure proceedings, and this recent disclosure will bring even more public outrage.  I strongly believe that a full accounting and public transparency concerning this revelation is in the best interest of all parties.\nThank you for your attention to this matter.  I look forward to your response.\nSincerely,\nROBERT MENENDEZ\nLETTER TO BANK OF AMERICA:October 4, 2010\nKenneth LewisChief Executive OfficeBank of America100 North Tyron StreetCharlotte, NC 28202\nDear Mr. Lewis:\nI write to you today regarding Bank of America’s foreclosure procedures.  I have read with great interest and concern the troubling recent press reports detailing the flawed handling of homeowner paperwork and lax oversight, which may have broad ramifications for thousands of Americans who unfortunately have lost their home already or currently find themselves in foreclosure proceedings.\nAs you are well aware, a company executive testified in a sworn deposition that she had approved approximately 8,000 foreclosures per month without completing proper due diligence to ensure these proceedings were justified.  While I applaud your decision to halt foreclosure proceedings in light of these findings, and while your company is certainly not solely to blame for the country’s foreclosure problems, it is inexcusable that proper oversight procedures were not in place, especially when dealing with matters as monumental as the seizure of a family’s home.  According to published reports, your decision to halt foreclosure proceedings will affect borrowers in 23 states, including my state of New Jersey.  Obviously, this will cause greater uncertainty in a market that is showing signs of a rebound, but still struggling to find its footing.\nThe employee in question pointedly was quoted under oath as saying, “I typically don’t read [foreclosure documents] because of the volume we sign.”  This revelation is simply indefensible.\nAs Chairman of the Senate Subcommittee on Housing, Transportation, and Community Development, I ask that you fully document, both to me and to the general public, your efforts to re-evaluate all homes that have already been foreclosed, and make whole those homeowners whose houses have been unjustly foreclosed.  Quite simply, the owners of these homes deserve no less.\nUnfortunately, I continue to hear numerous experiences of New Jerseyans expressing their frustration with the mishandling of bank foreclosure proceedings, and this recent disclosure will bring even more public outrage.  I strongly believe that a full accounting and public transparency concerning this revelation is in the best interest of all parties.\nThank you for your attention to this matter.  I look forward to your response.\nSincerely,\nROBERT MENENDEZ\nLETTER TO ALLY FINANCIAL:October 4, 2010\nMichael A. CarpenterChief Executive OfficerAlly Financial200 Renaissance DriveDetroit, MI 48201\nDear Mr. Carpenter:\nI write to you today regarding Ally Financial’s foreclosure procedures.  I have read with great interest and concern the troubling recent press reports detailing the flawed handling of homeowner paperwork and lax oversight, which may have broad ramifications for thousands of Americans who unfortunately have lost their home already or currently find themselves in foreclosure proceedings.\nAs you are well aware, a foreclosure specialist at your own company testified in a sworn deposition that he signed off on hundreds of foreclosures per day without completing proper due diligence to ensure these proceedings were justified.  While I applaud your decision to halt foreclosure proceedings in light of these findings, and while your company is certainly not solely to blame for the country’s foreclosure problems, it is inexcusable that proper oversight procedures were not in place, especially when dealing with matters as monumental as the seizure of a family’s home.  According to published reports, your decision to halt foreclosure proceedings will affect 56,000 borrowers in 23 states, including my state of New Jersey.  Obviously, this will cause greater uncertainty in a market that is showing signs of a rebound, but still struggling to find its footing.\nAs Chairman of the Senate Subcommittee on Housing, Transportation, and Community Development, I ask that you fully document, both to me and to the general public, your efforts to re-evaluate all homes that have already been foreclosed, and make whole those homeowners whose houses have been unjustly foreclosed.  Quite simply, the owners of these homes deserve no less.\nUnfortunately, I continue to hear numerous experiences of New Jerseyans expressing their frustration with the mishandling of bank foreclosure proceedings, and this recent disclosure will bring even more public outrage.  I strongly believe that a full accounting and public transparency concerning this revelation is in the best interest of all parties.\nThank you for your attention to this matter.  I look forward to your response.\nSincerely,\nROBERT MENENDEZ\nLETTER TO GAO:\nOctober 5, 2010\nThe Honorable Gene L. DodaroActing Comptroller GeneralU.S. Government Accountability Office441 G Street NWWashington, D.C. 20548\nDear Mr. Dodaro,\nWe are writing to request that the GAO conduct an investigation into the reports of misconduct by Ally Financial (formerly GMAC Mortgage), JPMorgan Chase, Bank of America and all other mortgage servicing companies and affiliated banks.  We are concerned that shortcomings in policies and procedures at these companies may have resulted in routine filing of false affidavits in foreclosure proceedings.  Such actions may have resulted in numerous illegal foreclosures nationwide.  As you know, our country is in the midst of a historic foreclosure crisis and the impact of foreclosures on American families is devastating.  In light of this crisis, the alleged misconduct by these banks is all the more troubling. \nSpecifically, we request that the GAO investigate the role of all government entities, including federal regulators, involved in overseeing mortgage servicing companies and affiliated banks, identify any regulatory problems that may have permitted this misconduct to occur without detection until now, and give recommendations on whether the agencies should be given additional authority to remedy these problems.  In addition to the broader industry’s foreclosure problems, we are especially interested in the actions of GMAC, specifically because of the equity stake taxpayers currently own in the company.\nAlso, as federal agencies pursue their own inquiries into this matter, we ask that the GAO carefully monitor their efforts and report on any potential gaps in the regulators’ current and future investigations of this problem.  It is imperative that these investigations are comprehensive.  All Americans who have been adversely affected by this wrongdoing should receive proper compensation and restitution.\nIf you have any questions regarding this request, please don’t hesitate to contact Lauren Gilchrist on Senator Franken’s staff at (202) 224-5641 or Michael Passante on Senator Menendez’ staff at (202) 224-3551.  Thank you in advance for your prompt response.\nSincerely,\nAl Franken                                                                                           Robert Menendez        United States Senator                                                                           United States Senator\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e579fe6b-ea97-4557-b28b-8bb04373d87e,\"Senate Housing Subcommittee Chair Demands Answers About \"\"Rubber-Stamp\"\" Foreclosures\n                    \n                            Menendez sends letters to JP Morgan, BoA, Ally and top mortgage service companies asking for details and plans to address the problem; also requests GAO investigation with Franken\n                    \n                      October 5, 2010\n                     WASHINGTON – In the wake of revelations about flawed “rubber-stamp” foreclosures, the chairman of the Senate Banking Subcommittee on Housing, Transportation and Community Development today called for answers from banks and mortgage servicing companies. Senator Robert Menendez (D-NJ) wrote to JP Morgan Chase, Bank of America and Ally Financial, all of which have announced foreclosure freezes, asking for details on what those banks are doing to determine which foreclosures were flawed and how they are rectifying those situations. In addition, Menendez wrote to 117 mortgage servicing companies, asking whether they have reviewed their foreclosure processes, whether measures have been taken to address flaws and if statistics about potentially flawed foreclosures have been compiled. In addition, Menendez joined with Senator Al Franken (D-MN) today to request that the Government Accountability Office investigate whether shortcomings in federal regulators’ oversight had any role in allowing flawed foreclosure processes to occur.\n\n“To learn that some financial institutions have treated foreclosures as a rubber-stamp process is deeply troubling,” said Menendez. “After all that has transpired in our economy, Wall Street should act responsibly toward and cooperatively with Main Street families. This rushed and bureaucratic approach to actions as significant as foreclosures would suggest otherwise. I want to know how deep this problem goes and what safeguards are now in place to prevent unjustified rubber-stamp foreclosures from happening in the future.” PDFs of letters:\n\nJP Morgan Chase: http://menendez.senate.gov/imo/media/doc/20101005ltr_JPMorgan.pdf\nBank of America: http://menendez.senate.gov/imo/media/doc/20101005ltr_BoA.pdf\nAlly Financial: http://menendez.senate.gov/imo/media/doc/20101005ltr_Ally.pdf\nMortgage Servicers (identical letter sent to 117 companies): http://menendez.senate.gov/imo/media/doc/20101005ltr_MortgageServicers.pdf\nGAO: http://menendez.senate.gov/imo/media/doc/20101005ltr_GAOMortgages.pdf \nText of letters:\nLETTER TO MORTGAGE SERVICE COMPANIES (IDENTICAL LETTER SENT TO 117 COMPANIES):\nOctober 4, 2010\n[Name of Mortgage Servicer]\nDear [CEO]:\nI write to you today regarding several recent news reports detailing flawed foreclosure proceedings and lax servicer oversight.\nAs you are well aware, Ally Financial, J.P. Morgan Chase and Bank of America have halted their foreclosure proceedings after flawed paperwork and careless oversight procedures were discovered.  While Ally Financial has declined to comment on the number of homeowners that may be affected, J.P. Morgan Chase’s decision will affect 56,000 borrowers in 23 states, after it was revealed that approximately 18,000 foreclosures per month had been approved by the company without the necessary due diligence.  Bank of America will also halt foreclosures in the same 23 states.\nIt is simply inexcusable that proper oversight proceedings were not in place, especially when dealing with matters as monumental as the seizure of a family’s home. At least one credit rating agency, Fitch, states that it believes this problem is widespread among banks and servicers, which raises the question of whether other banks should impose a moratorium until this lack of oversight is corrected.\nAs Chairman of the Senate Subcommittee on Housing, Transportation, and Community Development, I have several inquiries regarding your company’s foreclosure processes:\n•    Have you reviewed your own foreclosure processes in light of these revelations? If so, please detail this review.\n•    What steps have you taken to ensure that your own foreclosure processes will not experience the same problems exhibited by Ally Financial, J.P. Morgan Chase and Bank of America?  Have you devoted sufficient resources toward this goal given the scope of the problem?  Please provide specifics.\n•    If you have discovered problems with your foreclosure proceedings, what steps have you taken to make whole homeowners who have been adversely affected?\n•    Please provide statistics detailing your own foreclosure proceedings, including the number of foreclosures that have been investigated, the number that have shown mistakes, and what kind of mistakes those were.\nUnfortunately, I continue to hear numerous experiences of New Jerseyans expressing their frustration with the mishandling of bank foreclosure proceedings, and this recent disclosure will bring even more public outrage.  I strongly believe that a full accounting and public transparency concerning this revelation is in the best interest of all parties.\nThank you for your attention to this matter.  I look forward to your response.\nSincerely,\nROBERT MENENDEZUnited States Senator\nLETTER TO JP MORGAN CHASE:\nOctober 4, 2010\nMr. Jamie DimonChief Executive OfficerJ.P. Morgan Chase270 Park Ave.New York, NY 10017-2070\nDear Mr. Dimon:\nI write to you today regarding J.P. Morgan Chase’s foreclosure procedures.  I have read with great interest and concern the troubling recent press reports detailing the flawed handling of homeowner paperwork and lax oversight, which may have broad ramifications for thousands of Americans who unfortunately have lost their home already or currently find themselves in foreclosure proceedings.\nAs you are well aware, a company executive testified in a sworn deposition that she and her team had approved approximately 18,000 foreclosures per month without completing proper due diligence to ensure these proceedings were justified.  While I applaud your decision to halt foreclosure proceedings in light of these findings, and while your company is certainly not solely to blame for the country’s foreclosure problems, it is inexcusable that proper oversight procedures were not in place, especially when dealing with matters as monumental as the seizure of a family’s home.  According to published reports, your decision to halt foreclosure proceedings will affect 56,000 borrowers in 23 states, including my state of New Jersey.  Obviously, this will cause greater uncertainty in a market that is showing signs of a rebound, but still struggling to find its footing.\nJ.P. Morgan Chase officials have said that while the firm “does not expect to find any factual problems” or cases of “customers [being] harmed,” it will “take appropriate action” if problems or customer harm is indeed uncovered.  Given the scope of the admissions, however, it seems extraordinarily difficult to believe that no customers have been foreclosed on who should not have been.\nAs Chairman of the Senate Subcommittee on Housing, Transportation, and Community Development, I ask that you fully document, both to me and to the general public, your efforts to re-evaluate all homes that have already been foreclosed, and make whole those homeowners whose houses have been unjustly foreclosed.  Quite simply, the owners of these homes deserve no less.\nUnfortunately, I continue to hear numerous experiences of New Jerseyans expressing their frustration with the mishandling of bank foreclosure proceedings, and this recent disclosure will bring even more public outrage.  I strongly believe that a full accounting and public transparency concerning this revelation is in the best interest of all parties.\nThank you for your attention to this matter.  I look forward to your response.\nSincerely,\nROBERT MENENDEZ\nLETTER TO BANK OF AMERICA:October 4, 2010\nKenneth LewisChief Executive OfficeBank of America100 North Tyron StreetCharlotte, NC 28202\nDear Mr. Lewis:\nI write to you today regarding Bank of America’s foreclosure procedures.  I have read with great interest and concern the troubling recent press reports detailing the flawed handling of homeowner paperwork and lax oversight, which may have broad ramifications for thousands of Americans who unfortunately have lost their home already or currently find themselves in foreclosure proceedings.\nAs you are well aware, a company executive testified in a sworn deposition that she had approved approximately 8,000 foreclosures per month without completing proper due diligence to ensure these proceedings were justified.  While I applaud your decision to halt foreclosure proceedings in light of these findings, and while your company is certainly not solely to blame for the country’s foreclosure problems, it is inexcusable that proper oversight procedures were not in place, especially when dealing with matters as monumental as the seizure of a family’s home.  According to published reports, your decision to halt foreclosure proceedings will affect borrowers in 23 states, including my state of New Jersey.  Obviously, this will cause greater uncertainty in a market that is showing signs of a rebound, but still struggling to find its footing.\nThe employee in question pointedly was quoted under oath as saying, “I typically don’t read [foreclosure documents] because of the volume we sign.”  This revelation is simply indefensible.\nAs Chairman of the Senate Subcommittee on Housing, Transportation, and Community Development, I ask that you fully document, both to me and to the general public, your efforts to re-evaluate all homes that have already been foreclosed, and make whole those homeowners whose houses have been unjustly foreclosed.  Quite simply, the owners of these homes deserve no less.\nUnfortunately, I continue to hear numerous experiences of New Jerseyans expressing their frustration with the mishandling of bank foreclosure proceedings, and this recent disclosure will bring even more public outrage.  I strongly believe that a full accounting and public transparency concerning this revelation is in the best interest of all parties.\nThank you for your attention to this matter.  I look forward to your response.\nSincerely,\nROBERT MENENDEZ\nLETTER TO ALLY FINANCIAL:October 4, 2010\nMichael A. CarpenterChief Executive OfficerAlly Financial200 Renaissance DriveDetroit, MI 48201\nDear Mr. Carpenter:\nI write to you today regarding Ally Financial’s foreclosure procedures.  I have read with great interest and concern the troubling recent press reports detailing the flawed handling of homeowner paperwork and lax oversight, which may have broad ramifications for thousands of Americans who unfortunately have lost their home already or currently find themselves in foreclosure proceedings.\nAs you are well aware, a foreclosure specialist at your own company testified in a sworn deposition that he signed off on hundreds of foreclosures per day without completing proper due diligence to ensure these proceedings were justified.  While I applaud your decision to halt foreclosure proceedings in light of these findings, and while your company is certainly not solely to blame for the country’s foreclosure problems, it is inexcusable that proper oversight procedures were not in place, especially when dealing with matters as monumental as the seizure of a family’s home.  According to published reports, your decision to halt foreclosure proceedings will affect 56,000 borrowers in 23 states, including my state of New Jersey.  Obviously, this will cause greater uncertainty in a market that is showing signs of a rebound, but still struggling to find its footing.\nAs Chairman of the Senate Subcommittee on Housing, Transportation, and Community Development, I ask that you fully document, both to me and to the general public, your efforts to re-evaluate all homes that have already been foreclosed, and make whole those homeowners whose houses have been unjustly foreclosed.  Quite simply, the owners of these homes deserve no less.\nUnfortunately, I continue to hear numerous experiences of New Jerseyans expressing their frustration with the mishandling of bank foreclosure proceedings, and this recent disclosure will bring even more public outrage.  I strongly believe that a full accounting and public transparency concerning this revelation is in the best interest of all parties.\nThank you for your attention to this matter.  I look forward to your response.\nSincerely,\nROBERT MENENDEZ\nLETTER TO GAO:\nOctober 5, 2010\nThe Honorable Gene L. DodaroActing Comptroller GeneralU.S. Government Accountability Office441 G Street NWWashington, D.C. 20548\nDear Mr. Dodaro,\nWe are writing to request that the GAO conduct an investigation into the reports of misconduct by Ally Financial (formerly GMAC Mortgage), JPMorgan Chase, Bank of America and all other mortgage servicing companies and affiliated banks.  We are concerned that shortcomings in policies and procedures at these companies may have resulted in routine filing of false affidavits in foreclosure proceedings.  Such actions may have resulted in numerous illegal foreclosures nationwide.  As you know, our country is in the midst of a historic foreclosure crisis and the impact of foreclosures on American families is devastating.  In light of this crisis, the alleged misconduct by these banks is all the more troubling.  \nSpecifically, we request that the GAO investigate the role of all government entities, including federal regulators, involved in overseeing mortgage servicing companies and affiliated banks, identify any regulatory problems that may have permitted this misconduct to occur without detection until now, and give recommendations on whether the agencies should be given additional authority to remedy these problems.  In addition to the broader industry’s foreclosure problems, we are especially interested in the actions of GMAC, specifically because of the equity stake taxpayers currently own in the company.\nAlso, as federal agencies pursue their own inquiries into this matter, we ask that the GAO carefully monitor their efforts and report on any potential gaps in the regulators’ current and future investigations of this problem.  It is imperative that these investigations are comprehensive.  All Americans who have been adversely affected by this wrongdoing should receive proper compensation and restitution.\nIf you have any questions regarding this request, please don’t hesitate to contact Lauren Gilchrist on Senator Franken’s staff at (202) 224-5641 or Michael Passante on Senator Menendez’ staff at (202) 224-3551.  Thank you in advance for your prompt response.\nSincerely,\nAl Franken                                                                                          Robert Menendez        United States Senator                                                                           United States Senator\n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=98641d6e-1e8f-4481-a7a4-f632f93db178,\"Menendez Applauds Confirmation of Raul Yzaguirre as Ambassador to the Dominican Republic\n                    \n                      October 1, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, today applauded the Senate confirmation of Raul Yzaguirre as U.S. Ambassador to the Dominican Republican and released the following statement:\n\n“Having worked with him closely for many years as a leader of the Hispanic community, I have no doubt that Raul Yzaguirre will do a superb job as US Ambassador to the Dominican Republic. He is an experienced public servant whose knowledge, talent, and insight will only help strengthen US-DR relations. Throughout his entire career he has distinguished himself with his ability to build alliances and consensus and to address and solve problems, as well as for his unbending passion for public service. These are skills that will serve him well as a diplomat and a representative of the United States, and I look forward to seeing the results of his efforts to advance our interests abroad and bolster our bilateral relationship with the Dominican Republic.”\n\n                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=52c0d088-e8cf-47a3-b682-21d65f482d08,\"Menendez Introduces Comprehensive Immigration Reform Bill\n                    \n                            Legislation, co-sponsored by Judiciary Chairman Leahy, addresses range of issues – from border security and worksite enforcement to pathway to legalization\n                    \n                      October 1, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today introduced comprehensive immigration reform legislation aimed at finally addressing the broken immigration system with tough, smart and fair measures. The bill, co-sponsored by Judiciary Committee Chairman Patrick Leahy (D-VT), addresses long-standing, wide-ranging flaws in the immigration system that have been priorities of groups on each side of the immigration reform debate. Measures include strengthening border security, enhancing worksite enforcement of immigration laws and requiring the estimated 11 million undocumented immigrants present in the U.S. to register with the government, pay their taxes, learn English, pay a fine, pass a background check and wait in line for permanent residence.\n\n“The American people are united in their understanding that our immigration system is broken,” said Menendez. “They don’t want partisan bickering and demonizing, they want a commonsense solution that addresses the realities of the situation, stops the flow across our borders and protects our economy. If we can put political grandstanding aside and work together on a comprehensive, middle-of-the-road bill like this one, we can bring all sides to the table. We can finally take action on a problem that has generated a lot of talk over the past decade but few results.”\n“The legislation Senator Menendez and I have introduced is an important starting point for this debate,\"\" said Leahy.  \"\"It protects the rights and opportunities of American workers, while ensuring that American farmers and employers have the help they need.  It promotes jobs to help spur our economy, it supports families, it helps to bring undocumented workers out of the shadows, and it enhances our border security.  These are goals we can all share.”\n\nSummary of legislation:\nSmart, effective border enforcement including: 1) triggers that must be met before any unauthorized immigrants can apply for permanent residency; 2) expanded staffing for Border Patrol; 3) involving border communities in developing enforcement policy and 4) more resources for the Border Patrol.\nEffective and accountable immigration enforcement inside the United States, including: 1) heightened penalties for criminal offenses; 2) expanded penalties for passport and document fraud; 3) requirements for DHS to track entries and exits at the border and 4) common sense rules governing detention to ensure U.S. citizens are not unlawfully detained and detention conditions meet basic standards\nWorksite enforcement including: 1) an employment verification system to ensure employers no longer hire undocumented workers that will be mandatory for all employers within 5 years; 2) criminal penalties for fraud and misuse of Social Security numbers;  3) protections for workers to prevent fraudulent use of social security numbers, correct government database errors, and combat employment discrimination and 4) a voluntary pilot program that allows individuals to submit biometric identifiers to demonstrate work authorization. \nThe establishment of a commission on Immigration, Labor Markets, National Interest  to evaluate labor and economic conditions and link employment visa numbers to need.\nPolicies that put American workers first and protect labor rights by significantly expanding labor protections in the current H-2A, H-2B, H-1B, L-1 visa programs.\nCreates the structure for a new nonimmigrant visa program (H-2C), with portability and a path to permanent residency, that addresses gaps in existing worker programs that have lead to undocumented migration and undermined labor rights.\nReunification of families separated by outdated immigration laws.\nA registration program that requires undocumented immigrants in the U.S. as of September 30, 2010 to register with the government, learn English, and pay fines and taxes on their way to becoming Americans (the Lawful Prospective Immigrant Program).\nPrograms to promote integration and English-language learning among immigrants.\nThe Dream Act, AGJOBS and UAFA (the permanent partners bill.)\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f2bd9f21-0017-407a-b5c4-b82d3dfa7cb5,\"Menendez Hails House Passage of Legislation to Properly Handle Concussions in School Sports\n                    \n                            Menendez originally introduced the Senate version of the ConTACT Act in 2009\n                    \n                      September 30, 2010\n                     WASHINGTON – Today, the U.S. House of Representatives approved the Concussions Treatment and Care Tools (ConTACT) Act to establish a set of best practices and create a 5-year grant program that would help ensure proper diagnosis and treatment of sports-related concussions in U.S. schools. Specifically, the bill would require the Department of Health and Human services to convene a conference of medical and athletic experts within two years of enactment to establish a set of standard concussion management guidelines. Grants would be awarded to states to implement best practices in concussion management for school-sponsored sports and fund schools’ implementation of baseline and post-concussion neuropsychological testing technologies. \nU.S. Senator Robert Menendez (D-NJ), original author of the ConTACT Act in the Senate, hailed this important initiative and called for its final passage in the Senate:  \n\n“This bill will facilitate and make available for high school and middle school athletes the most advanced strategies available to prevent, diagnose and treat sports concussions. It will finally address this long neglected issue that jeopardizes our school athletes’ health and well-being, both on and off the field. I applaud the action in the House of Representatives, and I urge my colleagues in the Senate to do the same and pass this important measure to ensure the safety of young athletes.”\n\nThe ConTACT Act was proposed in the U.S. House of Representatives by Rep. Pascrell in 2009 after two accidents in New Jersey, one of which resulted in the victim’s death.\nFacts on Concussions \n•    Baseline testing has become common in professional and college sports but is far less common in high school sports.•    Concussions are mild traumatic brain injuries (mTBI)•    As many as 3.8 million concussions related to sports and recreation are estimated to occur in the U.S. each year.•    As many as 41% of concussed high school athletes may be returning to play too soon.•    A repeat concussion—one that occurs before the brain recovers from a previous concussion—can slow recovery or increase the likelihood of having long-term problems.•    In rare cases, repeat concussions can result in second impact syndrome, which can be marked by brain swelling, permanent brain damage, and death.•    Many national organizations—including the American Academy of Neurology, the National Football League, the American Academy of Family Physicians, and the Brain Injury Association of America—have adopted concussion management guidelines, but multiple directives have created confusion.\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a1ac7a1a-7d41-47ae-b6e2-810c5bd3f325,\"Bipartisan Bill to Ensure Housing for People with Disabilities Advances in Senate\n                    \n                            Sens. Menendez and Johanns hail approval of much-needed Frank Melville Act\n                    \n                      September 30, 2010\n                     WASHINGTON – Today, the U.S. Senate Banking Committee unanimously approved bipartisan legislation that will expand affordable housing options for Americans with disabilities. The Frank Melville Supportive Housing Investment Act, sponsored by Senators Robert Menendez (D-NJ) and Mike Johanns (R-NE), would quadruple the number of new affordable rental units built each year for people with disabilities by the U.S. Department of Housing and Urban Development's main program to provide affordable housing for people with disabilities.  The bill accomplishes this while maintaining the current level of appropriations for that program by allowing non-profit housing developers to use the same financing options that most other HUD programs already use.\n\n“People with disabilities often struggle to access affordable housing that allows them to live independently, and that problem is worse in tough economic times,\"\" said Menendez, who is Chairman of the Banking Subcommittee on Housing, Transportation and Community Development. \"\"The demand for this is huge at a time when more than 1.3 million Americans with disabilities spend more than 50% of their income on rent.  This bill will ensure that people with disabilities can keep a roof over their heads. Today’s important step brings us closer to increasing the availability of that badly-needed housing for people with disabilities, and we are working to make it law.\"\"\n\"\"Affordable housing is crucial to the independence of our fellow Americans with disabilities,\"\" Johanns said. \"\"Exploring ways to redesign housing options available to them without adding to the budget deficit is part of our responsibility to create the most efficient and effective federal programs. I look forward to this legislation being approved by the full Senate.\"\"\n\nThe legislation would improve HUD's Section 811 program by:\n•    Approximately quadrupling the number of new rental homes to low-income people with disabilities using the same level of appropriations.\n•    Allowing people with disabilities to live independently rather than in more expensive institutions\n•    Allowing people with disabilities to live in developments that are integrated with people who do not have disabilities rather than being segregated\n•    Modernizing and integrating the financing of Section 811 housing with other affordable housing tools, including the Low Income Housing Tax Credits, HOME program funds, Community Development Block Grants, and bond financing.\n•    Creating a 5 year project-based supportive housing assistance Demonstration Program that will provide new housing units for people with disabilities using the above financing mechanisms and create equally needed construction jobs.\nThe bill has been endorsed a broad coalition of advocacy groups including:\nConsortium for Citizens with Disabilities (CCD), American Association on Intellectual and Developmental Disabilities, American Network of Community Options and Resources, Association of University Centers on Disabilities, Autism Society of America, Bazelon Center for Mental Health Law, Burton Blatt Institute, Easter Seals, Lutheran Services in America, Mental Health America, National Alliance on Mental Illness, National Association of Councils on Developmental Disabilities, National Association of County Behavioral Health and Developmental Disability Directors, National Council for Community Behavioral Healthcare, National Disability Rights Network, National Multiple Sclerosis Society, National Spinal Cord Injury Association, The Arc of the United States, United Cerebral Palsy, United Jewish Communities, and United Spinal Association.\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bba995f2-2ba8-48b1-bc2f-ee450c93cabe,\"Menendez Hails House Passage of 9/11 First Responder Health Bill\n                    \n                            Menendez originally introduced the James Zadroga Act in the Senate in 2006\n                    \n                      September 29, 2010\n                     WASHINGTON – Today, the U.S. House of Representatives passed the James Zadroga 9/11 Health and Compensation Act to guarantee medical monitoring and treatment for first responders and volunteers who worked in and around Ground Zero following the 9/11 attacks and have become ill as a result. The bill passed, despite almost lock-step opposition from Republicans.\nU.S. Senator Robert Menendez (D-NJ), who was the original author of the Zadroga Act in the Senate, today hailed this important step in preserving the health of those who responded to the attacks. He also called for swift final passage in the Senate when it reconvenes in November.\n\n“This bill is the embodiment of our national rallying cry from the days and weeks after the 9/11 attacks: ‘Never forget.’ The men and women who rushed to the scene, helped the recovery and have become ill through no fault of their own should not be left to fend for themselves. The very least we can do for them is to help diagnose their illnesses and guarantee them the treatment they need. It is frankly embarrassing that, more than nine years after the fact, we as a nation have yet to make that very simple gesture. I applaud the action in the House of Representatives and I urge my colleagues in the Senate to unify and quickly pass this critical first responder health care measure when we reconvene.”\n\nJames Zadroga was a New Jersey resident and New York City police officer whose death was the first to be officially linked to toxins in the air around Ground Zero.\n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c966cd8a-56db-4a9c-8475-959666ead690,\"Menendez Opening Statement at Senate Hearing on Pan Am Flight 103 Bomber's Release\n                    \n                      September 29, 2010\n                     WASHINGTON – Today, US Senator Robert Menendez chaired a Senate Foreign Relations Committee hearing on the circumstances surrounding the release of convicted Pan Am Flight 103 bomber Abdelbasset al-Megrahi from a Scottish prison more than one year ago. The hearing featured testimony from U.S. government officials with knowledge of the diplomatic and legal issues surrounding al-Megrahi’s release. Medical and international political also experts provided insight into new medical evidence and the influence of commercial interests on diplomatic relations. Menendez is also spearheading an investigation into al-Megrahi’s release, which will be completed in the coming weeks. \nSenator Menendez’s opening statement, as prepared for delivery: I’d like to thank our witnesses for being here today and participating in this critical hearing to shed some light on the troubling circumstances surrounding the early release of Abdelbasset al-Megrahi, the convicted Pan Am 103 Lockerbie bomber.There are those within my own government, and certainly within the Scottish and British Governments – even some of my colleagues on this Committee who wonder why I have collectively pursued today’s hearing……why I am pushing – and have been pushing – for an investigation into the early release of al-Megrahi.My staff and I have heard from many people who say you will never get Mr. al-Megrahi to return to prison, so why bother?Why, they ask, would we test the strong relationship between the United Kingdom and the United States?Why, when we have so many other important issues to worry about – like Afghanistan, Iran, and climate change -- would you go down this road?Why? I’ll tell you why… because on December 21st, 1988, 270 innocent people were sent to their deaths at the hands of a Libyan terrorist, a mass murderer named Abdelbasset al-Megrahi – 189 of the victims were from the United States of America – 34 from New Jersey, and 53 from New York……All told we lost citizens from 21 states and the District of Columbia.We are here today because it matters to them… And it matters to their families.It matters also in terms of the standards we set in our fight against terrorism…Do we send a message that a convicted terrorist, a mass murderer, can -- ultimately, after a period of time -- be free and live in the lap of luxury?Is that the message we want to send to other would-be terrorists around the world? So it matters to our national security as well.And to the families of the victims…we will never forget, nor should we.And I’m so, so sorry that we are inconveniencing those who would rather sweep this away into the dust bin of history.We are here today because the terms of the 1998 Lockerbie Justice Agreement clearly state that any sentence imposed on those convicted of this horrific act must be served in the UK.In the letter of agreement from the UK and the US Acting Permanent Representative to the United Nations formally approved by the UN Security Council Resolution 1192 -- it states:“For the purpose of the trial, we shall not seek their transfer to any jurisdiction other than the Scottish court sitting in the Netherlands. If found guilty, the two accused will serve their sentence in the United Kingdom.”The language of the agreement could not be any clearer—“they would serve their sentence in the United Kingdom.”We are a nation founded on the rule of law, and when the rule of law and our notion of justice is turned on its head, for whatever reason, it is our obligation to turn it back again.It is our obligation to ask the hard questions. To demand answers… To get to the truth no matter where it leads or who might be inconvenienced by it.\nThe fact is the Scottish Government claims to have released Mr. al-Megrahi from prison because he was dying of prostate cancer and had just 3 months to live.They offered him compassionate release, something that clearly is permissible under Scottish law and precedent provided that certain conditions are met…Had those conditions been met, had laws and precedent been appropriately followed, I would still vehemently disagree with the decision, I would respect the right of the Scottish government to exercise its jurisdiction.But, as we will see later, the release on compassionate grounds was deeply, deeply flawed and perhaps even intentionally skewed to allow for al-Megrahi’s release.Scottish law allows prisoners who are suffering and have three months or less to live to receive consideration for compassionate release.As Scottish authorities said on August 20th of 2009, Mr. al-Megrahi had only three months or less to live, so they sent him home to die…\nLet’s play the video clip of Mr. al-Megrahi’s trip back to Libya. \nThe video is important for two reasons.  First, we’ll hear testimony about how someone who has been given a prognosis of 3 months or less to live would not likely be able to walk up and down a flight of stairs as Mr. al-Megrahi was able to in this video.Second, the images at the end of al-Megrahi receiving a hero’s welcome in Tripoli -- flags waving, admirers shouting his name. Praising him. Celebrating his return… …A man who was supposedly dying, and here we are – 13 months after he landed back in Libya -- and Mr. al-Megrahi is still alive -- living in freedom.That’s why we’re here today -- to get to the bottom of this miscarriage of justice.Obviously, the three month prognosis was wrong.Yet, shockingly, Scottish authorities still – to this day – insist the initial prognosis was correct...Well, Mr. al-Megrahi is alive.Instead of living 3 months, he’s lived 13 months and counting -- which clearly means someone was wrong, or worse…This Committee and the families of the victims want to understand how and why the decision to release was made.What were the circumstances behind it? Who made the medical judgments that led to it?Whose interests were served by his release, and were those interests discussed in advance of his release?We have tried to get answers in a more comprehensive way.We’ve asked for the cooperation of numerous representatives from the Scottish government, from the UK government, and representatives of BP.Over 30 people were asked to cooperate with our investigation– all refused.\nNow, I understand the right of any foreign government official to choose not to participate, but these were clearly unique circumstances, in which I think the greater good, the greater cause, the greater transparency, would have led to a degree of cooperation.They include former UK Ministers of Justice; the former UK Ambassador to Libya; Scottish Secretary of Justice, Kenny Macaskill; Dr. Andrew Fraser, the Chief Medical Officer for the Scottish Prison Service……Dr. Peter Kay, Mr. al-Megrahi’s primary care physician; Dr. Zak Latif, his consulting urologist; Drs. Richard Jones and Grahame Howard, al-Megrahi’s consulting oncologists, and many others.I also want to state for the record that we exchanged correspondence with Mr. al-Megrahi’s Scottish lawyer with a simple request: authorize the release of your full medical records regarding the diagnosis, treatment, and prognosis of your prostate cancer.We also asked that, if he were unwilling to do so at this time, he allow for their publication upon his death.According to the attorney, Mr. al-Megrahi declined our request.Among those from BP who refused to cooperate with this investigation were Tony Hayward, the CEO; Andy Inglis, Chief Executive of BP Exploration and Production; Felipe Posada, Chief Executive of BP North Africa……and Ian Smale, Vice President for Strategy; Sir Mark Allen, a consultant and former MI6 intelligence officer directly involved in this matter… all refused to cooperate.\nI’m most concerned about the refusal of BP to send a single representative to this hearing.I’m concerned that BP -- operating in our country, extracting resources, seeking permits for further drilling – is hiding information.\nI’m concerned – given their refusal to testify and tell us what they know about their lobbying efforts and advocacy for Mr. al-Megrahi’s release – given their pitiful early reactions to the devastating spill in the Gulf and their withholding information on the seriousness of the spill – that they are simply bad corporate citizens.Hiding information then – hiding it now from this Committee – I find reprehensible.I frankly don’t know how BP expects to continue to do business in America if this is the way they treat Americans – including the families of the victims of al-Megrahi.I don’t know why, given the circumstances, BP should get a single permit to do business in this country again, and I’ll be looking at that in a separate forum.\nNow let me go to the essence of what we hope to achieve in this hearing.  Notwithstanding the stonewalling this Committee has been subjected to, today’s hearing will thoroughly explore two central issues:  first, how such an incorrect prognosis was made……I think we will make quite clear that the basis for al-Megrahi’s compassionate release was incorrect – so incorrect that the Scottish government knew or should have known it was incorrect……And, second, if the Scottish government did know that al-Megrahi had more than three months to live, why would they release him?We are here today to do what we can to get to the bottom of this. We owe it to the victims’ families. We owe it to ourselves as a nation founded on the rule of law.So, in the absence of those witnesses, we’ve gathered experts who will testify today about Mr. al-Megrahi’s medical diagnosis.They will tell us, based on the limited medical information, about the treatment he received, and the prognosis.They have evaluated the published facts released by the Scottish Government.These medical experts will be offering their assessment of that information, and according to their written testimony, they will confirm what we have suspected all along:  no medical professional familiar with prostate cancer-- given the facts at hand – could reasonably have given a three month prognosis to Mr. al-Megrahi.\nI also want to announce at the outset of this hearing that we have uncovered new information that the medical experts have considered.  \nFirst, an official with the Scottish Government confirmed that it was a general practitioner, Dr. Peter Kay, who gave the final three month prognosis when not one of the cancer specialists was willing to say that three months was an appropriate prognosis.   We also have new information directly from a Scottish Government official concerning Mr. al-Megrahi’s treatment.The medical report released by Scottish officials does not state that al-Megrahi received chemotherapy and, in fact, al-Megrahi’s own statements in August 2009 stated that he had not received chemotherapy.But now we have information from George Burgess, a Scottish government official closely involved with al-Megrahi’s case, who now says al-Megrahi did in fact start chemotherapy in July of 2009. We have publicly released redacted medical records that say nothing about chemotherapy, but a Scottish government official who says al-Megrahi was receiving chemotherapy.I’m not sure which version of the Scottish government’s story to believe, but I do know one thing…the discrepancy raises a number of questions, including why the information was not forthcoming. \nMedical experts have said in their written testimony that when a man has prostate cancer and you believe he has less than 3 months to live – you do not give him chemotherapy……Instead, you try to allow him to live out his remaining days in as much comfort as possible.This leads to new questions.Why is it denied in official government documents that Mr. al-Megrahi received chemotherapy in July of 2009?Why are there discrepancies?\nThese questions probably will not be answered today and we will likely only find the answers if and when Scottish and British authorities finally undertake a truly independent inquiry, which I have urged the Prime Minister to do when we met with him during his visit to the United States.But the larger question, a question we will explore further in this hearing, is why were the Scottish and British governments so determined to release Mr. al-Megrahi?\nWe have an expert today who will testify about commercial concerns that may have influenced UK thinking on the merits of Mr. al-Megrahi’s release and how Libya uses its oil interests as a foreign policy tool.\nWe have a lot of ground to cover today, so I won’t take any more time…\nIf there’s no objection, let me now recognize  the Senior Senator from New Jersey, who has been in pursuit of justice for the families of the Pan Am 103 bombing since the very first days of the tragedy.I will turn to him first due to his schedule this morning.  And then I will recognize any members of the committee who want to give brief opening remarks.Before we proceed, I want to inform the Committee and our witnesses that we will leave the record open for 10 days for members to submit questions for the record.I would also ask unanimous consent to include documents into the record including the 1998 Lockerbie Justice Agreement, UN Security Council Resolution 1192, the Scotland Act of 1998, statements from victims’ families, and other documents relevant to this hearing that have been circulated.\n                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=08751252-c159-44bd-861d-0700a7323969,\"Menendez, Grassley Introduce Bipartisan Measure to Strengthen Child Support Enforcement\n                    \n                      September 28, 2010\n                     WASHINGTON, D.C. –  Senators Robert Menendez (D-NJ) and Chuck Grassley (R-IA) introduced the “Strengthen and Vitalize Enforcement of Child Support (SAVE Child Support) Act.”  This legislation will give states the tools they need to collect child support from parents who do not pay their support orders.  \n\nMenendez said, “Our bill will help states make dead-beat parents pay the child support they owe. It will help enforce interstate child support orders so that no parent can hide from their obligation to their children. It will strengthen existing child support enforcement laws by giving states more tools to enforce interstate child support orders, making existing enforcement procedures more uniform, and cracking down on the deceptive practices of private child support collection agencies.”  \nGrassley said, “Ineffective enforcement of child support orders is a serious problem that threatens children’s well-being. Oftentimes a child support payment can help keep a struggling family out of poverty and off of welfare.  The purpose of this legislation is to improve child support collections while also focusing on the fact that noncustodial parents should have regular opportunities to see their children.”\n\nUnder the senators’ proposed legislation, each state would have access to a child support lien registry so that liens placed against property because of overdue child support can be easily found.  Additionally, the bill makes it easier for states to intercept payments made to individuals in order to satisfy child support orders by requiring automated data matches with state child support agencies.  The bill strengthens the procedures by which certain licenses, permits, and passports can be revoked by requiring greater coordination between child support agencies and license-issuing agencies, as well as requiring a passport to be restored only after complete repayment of arrears.  The bill also encourages state child support agencies to coordinate with state correction agencies to assist individuals with a support order to manage and fulfill their support obligations.  \nAccording to the Health and Human Services Office of Child Support Enforcement FY 2009 Preliminary Report, over 11 million cases had child support arrears due in FY 2009. The total amount of child support due for FY 2009 was over $32 billion and 62 percent of that amount was collected and distributed. The total amount of child support due for all previous fiscal years was over $107 billion and only $7 billion of these arrearages were collected and distributed in FY 2009, a decrease of 9.2 percent in comparison with FY 2008. \nThe SAVE Child Support Act will give states the tools they need to effectively collect child support.\nThe bill: \n•    makes enforcement of child support liens more effective by requiring states to access a centralized database to check for liens placed against real property;  \n•    facilitates the interception of personal injury insurance claims by requiring all state child support agencies to either join the Child Support Lien Network, a consortium of states and insurance companies that work together to match child support obligors with insurance claims, or join a similar network; \n•    clarifies state jurisdictional rules to facilitate the collection of outstanding child support orders, expedites procedures for redirecting child support payments if the child has relocated, and streamlines and improves the ability of the courts to enforce child support orders.\n•    increases the efficacy of withholding mechanisms by strengthening existing passport denial procedures and expediting the process by which states can suspend driver and professional licenses for non-payment;\n•    encourages increased coordination between child support agencies and corrections facilities to manage child support orders; \n•    protects the right of non-custodial parents to visit with their children by requiring states to report on plans to facilitate access to and visitation of children by their parents; and\n•    protects vulnerable families from the deceptive and harassing practices of private child support collection agencies by extending federal debt protection laws to cover these companies.  \n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=de8baf2b-4c14-46f2-84b6-e6a586298aaa,\"Menendez and Lautenberg Announce Federal Funding to Improve New Jersey Airports\n                    \n                            Eight New Jersey Airports Receive More Than $13 Million. More than $4 Million to Improve Newark Liberty Airport\n                    \n                      September 24, 2010\n                     WASHINGTON, D.C. – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that the Federal Aviation Administration (FAA) has awarded $13,076,154 in federal funding to eight New Jersey airports.  The resources will be used for a wide range of safety and environmental projects, including the rehabilitation of taxiway pavement and a pilot program examining the environmental impact of airports nationwide.   \n\n“Our airports are an essential driver of our economy.  These funds will help ensure that New Jersey can safely and comfortably accommodate tens of millions of travelers each year.  By making these airport improvements, we're not only helping to ensure that flights are safe and on time, we're also creating desperately needed construction jobs,” said Menendez. “This is a win-win for travelers and for the economic development of the region.”\n“These federal resources will strengthen New Jersey’s transportation infrastructure, ensuring that our airports have the capacity to handle millions of flights each year,” said Sen. Lautenberg, a member of the Senate Commerce Subcommittee on Aviation Operations, Safety and Security.  “The modernization of New Jersey’s airports is a crucial investment that will increase safety, reduce environmental impacts, and improve air travel in our state.”\n\nThe FAA grants were awarded to the following New Jersey airports:\n•    Atlantic City International: $153,837 for environmental conservation and protection of grasslands at the airport.•    Cape May County: $1,515,361 to rehabilitate taxiways.•    Cape May County: $550,000 to modernize the airport master plan study by identifying future development needs and updating the airport layout plan.•    Essex County: $551,000 for operation and maintenance to support the safety of the runways and airport. •    Millville Municipal: $2,593,058 to rehabilitate existing taxiways. •    Newark Liberty International: $191,157 for an environmental assessment of the airport as part of a FAA pilot program on airport sustainability planning.•    Newark Liberty International: $2,440,226 to rehabilitate existing taxiways.•    Newark Liberty International: $ 1,646,515 to widen 32 taxiways allowing the airport to accommodate operations of new large aircrafts.•    Ocean City Municipal: $285,000 to rehabilitate the taxiway lighting.•    Teterboro: $109,711 for an environmental assessment of the airport as part of a FAA pilot program on airport sustainability planning.•    Trenton Mercer: $3,150,000 to rehabilitate existing taxiways.\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=56ce404d-ea52-45dc-9d9b-263fbce84518,\"Menendez Celebrates Implementation of Key Health Care Provisions on Six Month Anniversary of Health Care Reform\n                    \n                      September 23, 2010\n                     WASHINGTON –  As we mark the six month anniversary of Health Care Reform, U.S. Senator Robert Menendez (D-NJ) today announced the implementation of key provisions in the Affordable Care Act that will hold insurance companies accountable, bring down costs for everyone, and provide New Jersey families with the insurance choices and protections they need to take control of their health. Senator Menendez, who authored key provisions of the legislation including the right to an independent appeals process and the right to emergency care at in-network rates, released the following statement:\n\n“Implementation of the healthcare insurance reform law is still in its infancy, yet on this six month anniversary we are already seeing major changes begin to take place as New Jersey families take back control of their healthcare decisions. During my listening sessions in New Jersey last year, I heard from families across the state who felt that they needed more consumer protections and that is exactly what I did as part of this Patients’ Bill of Rights.” Said Senator Menendez. “The key provisions announced today will help us continue moving in this direction by extending coverage and preventive services, ending lifetime limits and arbitrary coverage decisions, and allowing young adults to access their parent’s healthcare plans.”\n\nDemocratic Policy Committee Fact Sheet : Six Months of Health Reform and a Patient's Bill of Rights \nSix months ago, Congress passed and the President signed landmark health insurance reform legislation, the Patient Protection and Affordable Care Act (P.L. 111-148) and the Health Care and Education Reconciliation Act (P.L. 111-152).  These two laws, together referred to as the Affordable Care Act, put control over health care decisions in the hands of the American people, not insurance companies.  On the six month anniversary of the Affordable Care Act’s enactment, Senate Democrats celebrate the Patient’s Bill of Rights included in the law, which ends some of the worst insurance industry abuses and takes effect for health policy or plan years beginning on or after September 23, 2010.   While Republicans continue their efforts to repeal these critical consumer protections, Senate Democrats remain committed to implementing health reform that holds insurance companies accountable, brings costs down for everyone, and provides Americans with the insurance security and choices they deserve.   No Lifetime Limits \nMillions of Americans who suffer from costly medical conditions are in danger of having their health insurance coverage vanish when the costs of their treatment hit lifetime limits imposed by their insurers and plans.  Hitting these limits can cause the loss of coverage at the very moment when patients need it most, rendering them virtually uninsured.  Over 100 million Americans have health coverage that imposes such lifetime limits. [HealthCare.gov, 6/22/10]  The Affordable Care Act prohibits the use of lifetime limits in all new and existing plans issued or renewed on or after September 23, 2010. \nAmericans Who Will Benefit from the Ban on Lifetime Limits \nEliminating lifetime limits is critical for families like the Lathrops of Illinois.  Ric and Jill Lathrop have two sons, age 12 and 14, who have severe hemophilia that requires injections of a blood clotting factor which cost about $250,000 per year for each child. [Kaiser Health News, 9/14/10]  When Ric’s employer instituted a $2 million lifetime cap on benefits for the entire family, the Lathrop’s relocated to Illinois, where Ric found a job that provided health insurance without lifetime limits. Joshua Lilienstein, a 30-year-old cancer patient and medical student, also hit his health insurance plan’s lifetime limit. [Los Angeles Times, 9/7/10]  He’d been battling cancer for four years when, in June 2009, he maxed out his plan’s lifetime benefit, leaving him uninsured and searching for options to continue his cancer treatment while trying to stay in medical school. Treatment for Edward Burke’s hemophilia costs about $900,000 per year.  The Palm Harbor, Florida, resident has hit the lifetime limit on his health insurance two times over the last seven years, and reports it would have happened more, but a series of mergers in his industry caused his health insurance to change frequently. [NPR, 9/14/10] No Arbitrary Coverage Rescissions \nBefore passage of the Affordable Care Act, insurance companies could retroactively cancel your health insurance when you became sick, required costly health care, or if you, your employer, or your insurance agent made an unintentional mistake on insurance paperwork.  With the passage of health reform, all health insurance plans issued or renewed on or after September 23, 2010, will be prohibited from rescinding your coverage except in cases of fraud or intentional misrepresentation. [HealthCare.gov, 6/22/10]    Americans Who Will Benefit from the Ban on Rescissions \nRobin Beaton, a retired registered nurse, was days away from the double mastectomy that was required to treat a very aggressive form of breast cancer, when her health insurance company retroactively cancelled her coverage. [House Energy and Commerce Committee, 6/16/09]  The insurance company claimed she had withheld information regarding previous treatment for acne.  In fact, one health insurer, WellPoint, used a complicated claims review process to automatically target women recently diagnosed with breast cancer for fraud investigations to find some reason, any reason, to drop their coverage. [Reuters, 4/23/10]   \nWhen Jerome Mitchell, then a 17-year-old college freshman, was diagnosed with HIV in 2002, he took some comfort in the fact that he had purchased his own health insurance before starting college. [Reuters, 5/17/10]  But shortly after receiving his diagnosis, Jerome’s insurance company cancelled his coverage.  Jerome sued the company, now known as Assurant Health, and won, with two courts finding Assurant Health wrongly revoked his coverage.  Records from Jerome’s case reveal another complicated claims review process in which the insurance company automatically investigated anyone recently diagnosed with HIV for any possible reason to revoke their coverage. Extended Coverage for Young Adults \nYoung adults covered under a parent’s or guardian’s policy often lose that coverage at age 19 or upon graduation from high school or college. [National Conference of State Legislatures, 4/10]  This likely contributes to this age group’s high uninsured rate; about 30 percent of young adults lack health insurance. [The White House, accessed 9/20/10]  The Affordable Care Act allows young adults up to their 26th birthday to stay on their parent’s or guardian’s policy or be added to it, for all new and existing policies or plans, with plan years beginning on or after September 23, 2010. [HealthCare.gov, 6/22/10]  Existing group plans that are grandfathered may limit the coverage extension to young adults who do not have another offer of employer-sponsored insurance.  Many insurance companies and employers have already implemented this program to avoid gaps in coverage for new graduates and other young adults.  \nAmericans Who Will Benefit from Extended Coverage for Young Adults \nSarah Posekany of Cedar Falls, Iowa, was diagnosed with Crohn's disease when she was 15 years old. [WCF Courier, 11/7/04]  During her first year of college, she ran into complications from Crohn's, which forced her to drop her classes in order to heal after multiple surgeries.  Because she was no longer a full-time student, her parents' private health insurance company terminated her coverage.  Four years later, she found herself $180,000 in debt, and was forced to file for bankruptcy.  Sarah was able to complete one semester at Hawkeye Community College, but could not afford to continue.  Because of her earlier bankruptcy, every bank she has applied to for student loans turned her down.   No Coverage Denials for Children with Pre-Existing Conditions \nNo child should go without the health insurance or health care they need, yet every year, too many American children are denied health coverage due to a medical condition they are either born with or develop as they grow. [HealthCare.gov, 6/22/10]  Uninsured children are less likely to receive preventive care, such as immunizations and well-child check-ups, which makes them more likely to miss school and at greater risk of hospitalization than their insured peers.  The Affordable Care Act prohibits health insurance plans from denying coverage to children based on pre-existing conditions.  These protections apply to all new plans issued on or after September 23, 2010, and to existing plans in the group market with policy or plan years beginning on or after September 23, 2010. \nAmericans Who Will Benefit from the Ban on Coverage Denials for Children with Pre-Existing Conditions Houston Tracy’s parents learned that pre-existing conditions can apply the moment a baby is born. [ABC News, 3/27/10]  Houston was born March 15, 2010, with a heart condition that required surgery to save his life.  Houston’s parents, Kim and Doug Tracy, cannot afford health insurance for themselves, but have individual policies for their other two children, and intended to purchase a policy for Houston, even contacting Blue Cross Blue Shield of Texas twice before Houston was born, but the insurer instructed Doug to wait until the baby was born and then complete the online application.  Doug applied for Houston’s health insurance on March 18, the first month’s premium was charged to his credit card, and six days later the insurer denied Houston’s coverage due to a pre-existing condition, when Houston was just nine days old. \nThe Demko family from Ohio experienced the same discrimination.  [Georgetown University, accessed 9/20/10]  When Emily was born with Down Syndrome, her mother, Margaret, decided to stay home to help meet Emily’s needs.  When they lost access to employer-sponsored health insurance, the Demkos were denied private insurance due to Emily’s pre-existing condition, a condition she was born with.  Restrictions on Annual Limits \nWhile less common than lifetime limits, annual dollar limits on health insurance coverage restrict many Americans’ access to necessary health care, leaving them virtually uninsured.  About eight percent of large employer plans, 14 percent of small employer plans, and 19 percent of individual market plans include annual limits on care. [HealthCare.gov, 6/22/10]  The Affordable Care Act phases out the use of annual limits over the next three years, until 2014 when such limits are banned for all employer-sponsored plans and all new plans in the individual market.  For these plans issued or renewed on or after September 23, 2010, annual limits may not be lower than $750,000; the minimum will be raised to $1.25 million for plans issued or renewed on or after September 23, 2011, and to $2 million for plans issued or renewed on or after September 23, 2012.  Plans issued or renewed beginning January 1, 2014, will be prohibited from imposing annual dollar limits on essential health benefits.  \nAmericans Who Will Benefit from Restrictions on Annual Limits \nJim Arey of Columbia, Maryland, first learned of his health plan’s annual limit when he received an $8,000 bill for two physician-administered infusions he needs to treat inflammation of the joints between his vertebrae. [Kaiser Health News, 9/13/10]  After trying to go without the medication, Jim sank deeper into medical debt as he sought treatment for side-effects stemming from the period he went untreated. Rolanda Carter of Oklahoma City, Oklahoma, thought her health plan’s annual limit of $50,000 in total care costs would be sufficient, but didn’t realize that her plan also imposed a $3,000 annual limit on care from physicians. [Kaiser Health News, 9/13/10]  After three months of treatment for lupus and other conditions, Rolanda hit the limit on physician care.  She now has a new job, and her new coverage will start soon, but she is still paying off medical debt she acquired because her previous insurance plan offered her little coverage when she really needed it. Preventive Care Without Cost-Sharing \nEnsuring that Americans have access to preventive health care is key to keeping people healthy and preventing the need for more costly care, yet Americans use preventive care at about half the recommended rate, and approximately 11 million children and 59 million adults have private insurance that does not adequately cover immunizations. [New England Journal of Medicine, 6/26/03; Institute of Medicine, 8/4/03]  The Affordable Care Act makes preventive care more accessible and affordable by requiring new health insurance plans issued on or after September 23, 2010, to cover recommended preventive services without charging a copayment, coinsurance, or deductible. [HealthCare.gov, 7/14/10]  The Administration estimates that 31 million Americans in new employer-sponsored insurance and 10 million Americans in new individual insurance will receive more accessible, affordable preventive care next year as a result of the Affordable Care Act, with 88 million Americans benefitting by 2013.  The Right to Choose Your Own Doctor \nThe Affordable Care Act is built on the idea that Americans should be able to choose and keep their doctors.  The Affordable Care Act guarantees your right to choose a primary care doctor from any available participating provider, it guarantees your right to designate any available participating pediatrician as your child’s primary care provider, and it prohibits insurers or employer-sponsored plans from requiring a referral for obstetrical or gynecological (OB-GYN) care. [HealthCare.gov, 6/22/10]  These protections apply to all new policies or plans issued on or after September 23, 2010. The Right to Emergency Care at In-Network Rates \nSome insurance plans will only pay for care, including emergency care, provided by providers in their network, or may require prior approval before you can receive care from an out-of-network provider.  These barriers can cause medical bills to pile up if you become sick away from home or are not near an in-network provider when a health care emergency strikes.  The Affordable Care Act prohibits health insurers and plans from charging patients more for out-of-network emergency care.  [HealthCare.gov, 6/22/10]  This protection applies to all new policies or plans issued on or after September 23, 2010.\nThe Right to Independent Appeals \nOne way the Affordable Care Act protects consumers and puts patients back in charge of their health care is by requiring insurance companies to implement effective internal and external appeals processes. [P.L. 111-148; P.L. 111-152]  Specifically, the Affordable Care Act requires new insurance plans, with plan or policy years beginning on or after September 23, 2010, to implement an effective internal appeals process of coverage determinations and claims and to comply with any applicable state external review process.  If a patient’s internal appeal is denied, patients in new health plans will have the right to an independent appeal by a third-party reviewer not employed by their health plan.  These eternal appeals can help consumers get the care they deserve, with one study of States that require external appeals finding that consumers won their external appeal against the insurance company 45 percent of the time. [Kaiser Family Foundation, 5/02]  The Administration estimates that, next year, approximately 31 million people in new employer plans and 10 million people in new individual plans will benefit from these new appeals protections, and that 88 million Americans will benefit by 2013. [HealthCare.gov, 7/22/10]  \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7f3e66f8-f8bd-4acf-b4d5-11e050b6e5dc,\"Menendez on Republican Obstruction of the Disclose Act\n                    \n                      September 23, 2010\n                     \nWASHINGTON – Today U.S. Senator Menendez (D-NJ) released the following statement after Republicans blocked a vote that would have allowed Senate consideration of the Disclose Act to ensure full disclosure of corporate and special interest spending in the electoral process. 59 Democrats and not a single Republican voted in favor: “It is a shame that once again Republicans blocked common sense legislation in the best interest of our nation and our democracy. It seems that Republicans are more interested in U.S. and foreign corporations determining the outcome of our elections than the American voter. The American public deserves to know which special interests or foreign countries are influencing their elections. And yet, we can’t even proceed to the bill because Republicans once again have chosen to say “no” to the majority of the American people who want to know who is engaged in this election and want to prevent corporations and foreign entities from picking winners and losers in American elections.  Clearly these corporations aren’t spending money on behalf of working families, they’re buying protection for their own special interests.\"\"\n\n                                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=09d04af0-c85e-47d5-b874-1974138492af,\"Senator Menendez Urges DOT to Increase Disclosure of Hidden Airline Fees\n                    \n                            NJ Senator and 6 colleagues join thousands in demanding an end to hidden airline fees\n                    \n                      September 23, 2010\n                     WASHINGTON –US Senator Robert Menendez (D-NJ), author of the Clear Airfares Act and champion of efforts to bring transparency to the airfare process, led a letter signed by Senators George S. LeMieux (R-FL), Charles Schumer(D-NY), Mary Landrieu (D-LA), Ron Wyden (D-OR), Benjamin Cardin (D-MD), and Mark Begich (D-AK) to the U.S. Secretary of Transportation Ray LaHood today urging him to protect consumers by requiring the full disclosure of ancillary fees on airline tickets, as recommended in the agency’s recently released proposed rulemaking, “Enhancing Airline Passenger Protections” Section 8 on “Baggage and Other Fee and Related Code-Share Issues”. The Department of Transportation released a notice of proposed rulemaking (NPRM) on a wide range of consumer-related issues in June and is now soliciting and accepting public comment until today, September 23, 2010. A petition signed by tens of thousands of people supporting the disclosure of hidden fees will be delivered and presented to the DOT today in response. \n\n“Greater disclosure of fees will give consumers the information they need to make better and more informed air travel purchases.  That is why we support the Department’s proposal “requiring sellers of air transportation to display on their websites information regarding a full price including optional fees selected by the passenger when a prospective passenger conducts a query for a particular itinerary.”  This would allow passengers to conduct queries for their specific needs—for example, air fare and 1 checked bag, or air fare and 2 checked bags and extra legroom—and then compare the full cost of their proposed trip across air carriers.  We also strongly support the Department’s view that the list of ancillary services subject to required airline disclosures should be broad and inclusive.” wrote the Senators. \n\nMenendez's Clear Airfares Act aims to bring transparency to the price of flying through a full, clear and upfront breakdown of airfares. Before a consumer purchases a ticket on the Internet, the legislation would require airlines and third-party websites to give consumers a complete and understandable breakdown of his or her particular airfare, as well as any other possible fees that might be incurred on the flight (such as baggage, seat assignments, etc.). A slightly modified version of Menendez's bill to provide such breakdowns to consumers was included in the Senate Federal Aviation Administration reauthorization legislation, but the bill is stalled pending negotiations with the version passed in the House.  \nPDF of the Letter: http://menendez.senate.gov/imo/media/doc/092310LetterLaHoodAirlineHiddenFees.pdfFULL TEXT OF THE LETTER:\nThe Honorable Ray LaHood                                                                                                 SecretaryDepartment of Transportation1200 New Jersey Avenue, S.E.Washington DC 20590\nDear Mr. Secretary:\nRe:  DOT-OST-2010-0140Enhancing Airline Passenger Protections\nWe are writing to you in connection with the June 8, 2010, Notice of Proposed Rulemaking (NPRM) concerning Airline Passenger Protections.  We applaud the Department for efforts under your leadership to protect consumers and are urging you to continue that leadership by requiring increased disclosure of ancillary fees on airline tickets as well as facilitating that disclosure by requiring the sharing of fee information by air carriers to travel agents and online travel companies.  These proposals are contained in the NPRM’s section 8 on “Baggage and Other Fees and Related Code-Share Issues.”  \nWe believe consumers are entitled to full and honest disclosure of all fees and charges associated with air travel before they purchase a ticket, whether directly from an airline or from a third-party intermediary.  That is why we supported Senator Menendez’s recent amendment to require full airline disclosure of that information.  As a result of our efforts, Section 407 of H.R.1586, which passed the Senate unanimously on March 22, includes a requirement that the Department establish rules that will allow passengers to compare airline fares and fees, and a provision stating that it is an unfair and deceptive practice for airlines and ticket agents not to provide conspicuous information on fees for ancillary services.  \nGreater disclosure of fees will give consumers the information they need to make better and more informed air travel purchases.  That is why we support the Department’s proposal “requiring sellers of air transportation to display on their websites information regarding a full price including optional fees selected by the passenger when a prospective passenger conducts a query for a particular itinerary.”  This would allow passengers to conduct queries for their specific needs—for example, air fare and 1 checked bag, or air fare and 2 checked bags and extra legroom—and then compare the full cost of their proposed trip across air carriers.  \nWe also strongly support the Department’s view that the list of ancillary services subject to required airline disclosures should be broad and inclusive.  In proposed section 14 CFR 399.85(c), the Department is proposing to require full disclosure of optional services, which “include but are not limited to the cost of a carry-on bag, checking baggage, advance seat assignments, in-flight food and beverage service, in-flight entertainment, blankets, pillows, or other comfort items, and fees for seat upgrades.”  We support this broad approach to disclosure, rather than the more limited approach that requires disclosure of only “significant” fees.   \nIn order for this level of disclosure of ancillary fees to occur, it is essential that traditional travel agencies and online travel companies—which together account for the sales of more than half of all airline tickets purchased in the United States—have easy access to fee information.  That means requiring timely and full disclosure by airlines of ancillary fees to travel agencies via the global distribution systems (GDSs) that agencies almost universally use as their source of fare information.  Indeed,  the recognition of the critical role that travel agencies play in air line ticket sales has spurred us to support an adjustment to the Menendez amendment to require airlines to share fee information with the GDSs in which they participate so that travel agencies will have timely access to fee information that can subsequently be shared with the public.  The Department states that it “is also considering requiring that carriers make all the information that must be made directly available to consumers via proposed section 399.85 available to global distributions systems (GDS) in which they participate in an up-to-date fashion and useful format.”  We could not agree more with the adoption of the described disclosure requirement, and thus urge the Department to incorporate such a requirement into its final rule.   Providing the information to the public should not be burdensome to the carriers.  We understand that all the necessary technical standards and protocols for transferring full information on ancillary services and fees have been jointly developed by the carriers and GDSs through standard industry processes, and are being readied for implementation.  Moreover, the cost to the airlines of sustaining these transfers relative to the revenue streams they have created through unbundling services, apparently is nominal.  We believe the full disclosure of ancillary fees and services to the GDSs will make it easier for consumers to shop for and purchase these services from their travel agents. \nThank you for considering our views.  We look forward to the final rule that will be published by the Department, and to working with you to ensure that consumers will be fully and fairly given access to the information they need to make better informed air travel decisions.\n                                                                                                        Sincerely,\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d52d948c-05c2-49b6-a47a-4a8d25a70df6,\"Menendez, Lautenberg, Schumer and Gillibrand Urge President to Nominate Commissioners to the Foreign Claims Settlement Commission\n                    \n                            Payments to Victime of Terrorism Remain Stalled While Commission Seats Sit Empty\n                    \n                      September 22, 2010\n                     WASHINGTON, D.C. – Today, U.S. Senators Robert Menendez (D-NJ), Frank R. Lautenberg (D-NJ), Charles Schumer (D-NY) and Kirsten Gillibrand (D-NY) called on President Obama to quickly fill empty seats on the Foreign Claims Settlement Commission (FCSC) so that victims of terror and their family members can receive the compensation they deserve.  Currently, the Commission cannot function because only one of three commissioners is in place.  As a result, more than 200 claims from victims of Libyan terrorism are pending.   The Federal Claims Settlement Commission is an independent agency within the Department of Justice.  It was created in 1954 to adjudicate claims of U.S. nationals against foreign governments.  Commissioners are nominated by the President and confirmed by the U.S. Senate.   A PDF of the Senators’ letter to President Obama can be found here: http://lautenberg.senate.gov/assets/ForeignClaims.pdf  \nText of letter: September 22, 2010 The Honorable Barack ObamaPresidentThe White House1600 Pennsylvania Avenue, N.W.Washington, D.C. 20500 Dear Mr. President,             We write to respectfully request the prompt nomination of two qualified and capable individuals to be commissioners on the Department of Justice Foreign Claims Settlement Commission.             As you know, the Foreign Claims Settlement Commission plays a critical role in ensuring U.S. victims of terrorism receive the compensation they so rightly deserve.  According to U.S. law, the Commission should be composed of a chairman and two additional commissioners.  At least two members of the Commission are needed to constitute a quorum and process any claims.               We are concerned that currently the Foreign Claims Settlement Commission has only one commissioner and thus lacks a quorum and is unable to adjudicate submitted claims.  This has completely halted the processing of any claims submitted by U.S. nationals against foreign governments.  For example, there are currently over 200 claims from victims of Libyan terrorism awaiting adjudication.  Many of the victims have waited years, even decades, to receive compensation for their injury or loss.  We must do everything we can to facilitate the adjudication process.\n            As such, we urge you to promptly nominate two qualified and capable individuals to serve as commissioners on the Foreign Claims Settlement Commission and we look forward to considering these nominations in the Senate.  Thank you for your consideration.\nSincerely,\nFRANK LAUTENBERGROBERT MENENDEZKIRSTEN GILLIBRANDCHARLES SCHUMER\nUnited States Senate                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dd5b8a2a-6a96-4375-b6a5-7539988f7cb1,\"Menendez on the Senate Floor in Strong Support of the Disclose Act and Full Disclosure of Corporate Spending in Electoral Process\n                    \n                            VIDEO: http://www.youtube.com/watch?v=cSbOJDZYaOw\n                    \n                      September 22, 2010\n                     WASHINGTON – Today, US Senator Menendez stood once again in the Senate floor in strong support of the DISCLOSE Act to ensure full disclosure of corporate and special interest spending in the electoral process. Below is a video and his full remarks as delivered:\nVIDEO: http://www.youtube.com/watch?v=cSbOJDZYaOw\nFull text of remarks as delivered:\nMr. President, I come to the floor in an effort to try to get my colleagues on the other side of the aisle to join us in preserving our democracy. I heard the Republican leader's remarks that we should be focused on jobs, and we have been, notwithstanding the constant obstruction of our colleagues on the other side of the aisle using the filibuster countless times in terms of us being able to move forward on jobs, but this legislation is about jobs. \nNow, some people might ask well, what does disclosure of campaign finance have to do with jobs? It has everything to do with it, because the murky special interests that are out there spending unlimited amounts of corporate money aren't spending it because they just want to participate in our electoral process without a purpose. They are participating because they have a purpose, and the purpose is to elect those individuals who ultimately will respond to their agenda, which is an agenda that in many cases works against the interests of working men and women in this country -- works against some of the very essence of legislation that we have passed and signed into law like equal pay for equal work works -- against the very interests of what we are trying to accomplish on food safety so none of our families will ever get ill because of a product that should have never made it to their table in the first place. Works against the interests of those in this country who want to be able to work and give a hard day's work for a fair day's wages, and at the same time work in conditions that ensure that their safety is preserved and they can go home at the end of a long day to their loved ones and come home safe and secure -- those and so many other interests.\nSo when we talk about jobs, knowing who is out there spending money, for what purpose -- particularly for what corporate purpose -- is incredibly important to how we create jobs, what do we do in terms of working conditions, what do we do in terms of wages, what do we do in terms of equity? This is about jobs, but it's also about our democracy.\nSince the Supreme Court made its ruling on allowing corporate interests and labor interests to spend money unlimitedly -- and by the way, in doing so, also allowed the possibility of foreign corporations, those controlled, many of those foreign corporations aren't just private foreign entities -- They are foreign entities controlled by a government. And the money's flowing. Don't believe me, even though we've seen since august 15 to last night $21 million already spent on Republican side of the aisle, which is why I guess we won't get independent expenditures, unknown money, no person, no face, and no name. That's why I guess we can't seem to get a vote here. But don't listen to me. Listen to Michael Toner, who's the former Republican Federal Election Commission – Election Commission Commissioner. He said -- quote -- \"\"I can tell you from personal experience, the money's flowing.”  \nFlowing. For what purpose? For what purpose? Corporations just spending their money for something other than the pursuit of their bottom line? When have you known a corporation to spend its money recklessly without trying to pursue an interest in its bottom line? I haven't seen too many of those. They may have made bad mistakes but they've never purposely spent money for the purposes of anything other than to improve their bottom line. So if they're spending money to elections, guess what? They're spending to make sure they can improve their bottom line. And this undermines the very essence of our democracy, where we want individual citizens and voters to determine the outcome of the elections, not the moneyed interests. Now, in this process, you know, this was a bipartisan effort originally when congress said we don't want corporate or labor money to be spent unlimitedly in federal elections. And we've had continuous comments since that. Here's the Republican Leader, Senator McConnell. He said -- quote -- \"\"public disclosure of campaign contributions and spending should be expedited so voters can judge for themselves what is appropriate.\"\" \nWell, we've changed that view, because all we're trying to do is say Okay, Supreme Court, you're going to allow the money to flow from the corporations, let us know who's spending it and on who they're spending it on, and for what purpose. Then the voters can judge for themselves what's appropriate. We've had others as well who are in the midst of this election process say – my counterpart, Senator John Conryn. He said -- quote -- \"\"I think the system needs more transparency so people can more easily reach their own conclusions,\"\" and what do we have here? Less transparency.So an individual who gives their money to a candidate, they get fully disclosed. A corporation or a special interest or a foreign interest gives money, they can hide behind these shadowy groups. And, you know, they have great names: Americans for this, Americans for that. The problem is, we don't even know if one of those groups that call themselves corporation. And with the loophole they'll create by virtue of allowing foreign corporations to now spend in our elections in this country, it is the ultimate erosion of our democracy. And if you don't think they will, let me give you a few examples of why they might.\nImagine if B.P. Could go ahead and influence the elections of a whole host of senators because they want to determine what our energy and drilling policy is by electing those who ultimately share their views. After what they've done in the Gulf of Mexico, after what they refuse to do in testifying before a hearing that that I’ll hold next week about the release of the Pan Am 103 bomber and -- Pan Am 103 bomber and what role they played in lobbying for the release of that terrorist, the bomber. And they can't even send a witness to our hearing. Do you think they won't spend millions in support of what they want? Do you believe the Chinese wouldn't ultimately make investments in candidates who continue to espouse a philosophy that allows our jobs to be off shored? Talk about jobs. To be off shored to countries like China, where manufacturing is dirt-cheap and rights are nonexistent and working conditions virtually don't exist and the environment's not a question?\nDo you think it's impossible for that to happen? Do you think it's impossible for Hugo Chavez in Venezuela not to be spending money here through CITGO and saying, do you know what?  Let me support those who support the type of views that I hold and who will engage in an energy policy that's much different than I can influence with Venezuelan oil? Do you think there are those in the corporate sector who has been fighting food safety -- not all, but some -- who wouldn't elect those individuals who will ensure that we can't have the food safety procedures to come into the 21st century so that we can ultimately ensure that our food is safe? No, they'd -- they'd rather have the abilities to do what they do and not have to worry about the consequence of safety, improve the bottom line.I could go on and on and on with examples of why foreign interests would very well spend in our elections to dictate policies that ultimately would inure to the detriment of the American people but to the benefit of those interests. That's what we're fighting against. That's what we're trying to undo in terms of the legislation that we are considering. \nTo disclose -- oh, what a terrible thing. To disclose. We're not even stopping the contributions because the Supreme Court said the contributions can be had by corporations. But at least let's know who's giving them and who they're giving it to and for what ostensible purpose. \nSo, Mr. President, I -- I see a continuing erosion of our democracy through the present circumstances and I see why we can't get a vote on the other side of the aisle, because overwhelmingly they are receiving the benefits of this undisclosed, shadowy money that no one knows where it comes from, no one knows who is giving, for what purposes or whom they're supporting. Is that really the American way? Is that what the average voter wants to see in terms of their democracy? I don't think so, Mr. President. And so, Mr. President, I urge my colleagues to follow the very essence of McCain-Feingold. \nYou know, Senator McCain, Senator Feingold, of course, supports this legislation. You know, all of those who have made these comments about disclosure: it's time to at least simply disclose. It's time to allow the American people to know who is engaged in this election, who is spending millions. They're talking about raising and spending nearly $300 million.\nThere's 41 days tothe election. $300 million. And we won't know where it came from, who's giving it, or what purposes. That is the ultimate corruption of our system. And so, Mr. President, I hope my colleagues will vote to proceed, let us have the debate, and, more importantly, let us cast a final vote. With that, Mr. President, I yield the floor.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6fb6eb1c-4aad-40ef-bef7-ae969a7e82e2,\"Senators Menendez and Cornyn Introduce Bipartisan Resolution to Honor Hispanic-Serving Institutions\n                    \n                            Resolution designates week beginning September 19th as \"\"National Hispanic-Serving Institutions Week\"\" and honors the work of these institutions in educating and empowering Hispanic youth\n                    \n                      September 20, 2010\n                     WASHINGTON, DC – As we celebrate Hispanic Heritage Month, U.S. Senator Robert Menendez (D-NJ) and Senator John Cornyn (R-TX) introduced a bipartisan resolution to recognize the 268 non-profit Hispanic Serving Institutions (HSIs) throughout our nation for their work, achievements, and critical role in educating and empowering Hispanic youth. HSIs play a unique role in communities in the U.S., and National Hispanic-Serving Institutions Week provides an opportunity to celebrate their accomplishments.This resolution specifically calls for the designation of the week of September 19 - 25, 2010 as National Hispanic Serving Institutions Week and calls for its observation through private activities and programs to demonstrate support for these institutions. Hispanic Serving Institutions (HSIs) are defined as colleges, universities, or systems/districts where total Hispanic enrollment constitutes a minimum of 25% of the total enrollment.  \n\n“As someone who graduated from a Hispanic Serving-Institution, I know first-hand how important these institutions are in preparing the next generation of Latino leaders for success,” Said Senator Menendez. “In fact there are 5 Hispanic Serving Institutions alone in my home state of New Jersey. As the lone Hispanic Senator and Chair of the Senate Democratic Hispanic Task Force, I am proud to introduce this resolution recognizing these institutions for the important work they do on behalf of Latino students.”\n“Hispanic Serving Institutions play a vital role not only in education but in the economic vitality of our entire nation. The contributions HSIs make to our communities and our nation are worthy of praise and deserve to be honored. As we begin the month-long celebration of National Hispanic Heritage Month, I am pleased to recognize our Hispanic Serving Institutions and the vital role they play in helping to increase the enrollment of Hispanic students in higher education, expanding opportunity and improving our nation,” said Sen. Cornyn.\n\nPresident Barack Obama has issued a Proclamation designating the week of September 19- 25, 2010 as National Hispanic-Serving Institutions (HSIs) Week and the U.S. House of Representatives also introduced and passed its version of a resolution to commemorate this week. To read the full resolution, click here: http://menendez.senate.gov/imo/media/doc/HSIResolution2010.pdf                                                                                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f1bc5020-a619-4950-9632-f0deefdddd87,\"Menendez Hails Senate Passage of Small Business Jobs Bill After Months of Republican Obstruction\n                    \n                            Senator’s bill to ensure Main Street has access to credit, which will create more than 40,000 jobs included in the final package \n                    \n                      September 16, 2010\n                     WASHINGTON - Today, after months of Republicans refusing to even allow a vote on a critical Small Business jobs bill, the Senate cleared the measure by a 61-38 vote. The bill now heads back to the House for final passage. The Small Business Jobs Act will help create an estimated 500,000 jobs by providing small businesses with access to capital, tax incentives for investment, and support for innovation and entrepreneurship. It will guarantee an estimated $300 billion in lending and $12 billion in tax cuts for small business that have been hard hit by the economic recession and lost more than six million jobs since December of 2007. \nAs part of the legislative package, Senator Menendez secured inclusion of the Full Faith and Credit in our Communities Act, legislation he authored, which will ensure communities and small businesses have access to the capital they need to grow. Specifically, this provision authorizes the U.S. government to guarantee bonds issued by qualified Community Development Financial Institutions (CDFIs) in order to decrease the cost and increase the availability of credit on Main Street.  At virtually no cost to the taxpayer, this provision will help create approximately 40,000 new jobs.\nU.S. Senator Robert Menendez (D-NJ) voted for and hailed today's vote:\n\n\"\"This legislation could been have approved much earlier if Republicans had not stood in the way, but I am pleased we were able to ensure passage and continue moving forward with our economic recovery. Giving small businesses tax relief and increased access to credit is critical to our job creation and economic recovery efforts.  With this assistance, small business entrepreneurs will be able to continue recovering, growing, and hiring, leading the way to a full economic recovery. I’m pleased that the bill included my legislation to get more investment flowing to Main Street and communities hit hardest by the economic downturn.  By investing in these communities, we will create jobs, help small businesses, and improve communities.” Said Senator Menendez.\n\nSenate Finance Committee Fact Sheet on the Small Business Jobs Act:\n?    Gives small businesses $12 billion in tax cuts?    Helps small businesses create 500,000 new jobs?    Incentivizes and increases small business lending?    Helps small business owners access private capital to finance an expansion and hire new workers?    Rewards entrepreneurs for investing in new small businesses?    Helps Main Street businesses compete with large corporations\nHelps Small Businesses Access Capital\n•    Incentivizes investors by giving 100% exclusion from capital gains taxes on small business investments.•    Creates a targeted $30 billion Small Business Lending Fund to provide small community banks with capital to increase small business lending.•    Gives $1.5 billion in grants to support $15 billion in new small business lending through already successful state programs.•    Reduces the tax burden for small businesses by allowing them to carry back general business tax credits to offset their tax burdens from the previous five years.  Small businesses will also be able to count the general business credits against the Alternative Minimum Tax (AMT), freeing up capital for expansion and job growth.  •    Increases Small Business Administration (SBA) loan limits and improves access and lowers costs for small business to access SBA loans.\nIncreases Small Businesses’ Ability to Make Investments\n•    Increases Section 179 expensing – permitting up to $500,000 in capital investments that businesses can expense.•    Extends Bonus Depreciation – allowing taxpayers to immediately write off 50 percent of the cost of new equipment.\nPromotes Entrepreneurship\n•    Increases to $10,000 the tax deduction for start-up expenditures – doubling the current levels.•    Creates new tools to help small businesses export goods, which will leverage more than $1 billion in exports.•    Establishes a new State Export Promotion Grant Program (STEP), which would increase the number of small businesses that export goods to other countries.\nPromotes Fairness in Competition\n•    Improves tax fairness by preventing small businesses from incurring large tax penalties aimed at large corporations and wealthy individuals investing in tax shelters.•    Improves small business contracting by clarifying that no single contracting program receives priority over another program when competing for federal contracts.•    Allows self-employed individuals to deduct health insurance costs for purposes of paying the self-employment tax.\nFact Sheet on Menendez’s Community Development Financial Institutions (CDFIs) provision:\n•    Amendment is estimated to create approximately 40,650 new jobs with no paygo implications.•    CDFIs are the most effective way to infuse capital in low-income communities because the capital goes directly to communities.•    CDFIs have a proven track record of job creation and community development.•    There are no paygo implications (informal CBO staff determination).•    Amendment would add provision to the bill that fosters much needed lending to small businesses and for economic development purposes.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a66cefb7-dcf9-4861-94a2-1a344fbd7cc2,\"Menendez Hails Senate Passage of Start Treaty in Senate Foreign Relations Committee\n                    \n                      September 16, 2010\n                     WASHINGTON – Today US Senator Robert Menendez (D-NJ) released the following statement after the Senate Foreign Relations Committee passed the new START treaty by a 14-4 vote:\n\n“Today we took an important step to once again renew U.S. leadership on global nuclear non-proliferation efforts, advance our national security, and strengthen our relationship with Russia. The new START Treaty renews the historic 1991 agreement that led the United States and Russia into a new era of bilateral cooperation to contain the threat of nuclear arms and that succeeded at reducing 80 percent of nuclear weapons in existence at the time. Its ratification will once again ascertain both nation’s commitment to nuclear nonproliferation efforts and demonstrate to the world the United .States’ unremitting commitment to the oversight and monitoring of nuclear weapons. I applaud Senator Kerry for his leadership in the Senate Foreign Relations Committee, and look forward to voting in favor of its final passage when it comes to the floor for consideration. “\n\n                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=634365c8-7632-475a-af6e-dfb29669428e,\"Menendez, Lautenberg Announce $96K in Federal Funding for Burlington Township Fire Department\n                    \n                      September 15, 2010\n                     WASHINGTON, D.C. – U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg today announced that the Burlington Township Fire Department will receive $96,000 in federal funding through the Department of Homeland Security’s Staffing for Adequate Fire and Emergency Response (SAFER) grant program.  The SAFER program was created to provide funding directly to fire departments and volunteer firefighter organizations in order to help them increase the number of trained firefighters available in their communities. \n\n “This federal funding will help staff the Burlington Township Fire Department with firefighters to protect the safety and security of our families,” said Lautenberg, Chairman of the Senate Appropriations Subcommittee on Homeland Security, which funds the SAFER program.  “With firefighters ready to roll at the sound of the alarm, we must be certain that our departments are sufficiently staffed to confront the challenges in our communities.”  “Communities need to be able to count on their firefighters to stay on their jobs and this federal investment will ensure that they remain ready to respond to keep Burlington Township’s families out of harm’s way,” said Menendez.  “Emergencies, fire, and security hazards come without notice and first responders depend on this equipment, training, and protective gear to keep them safe.” \n\nLautenberg, who was recently named Chairman of the Senate Appropriations Subcommittee on Homeland Security, passed a bill through the Appropriations Committee in July that would provides $420 million in funding nationwide for the SAFER grant program to continue in the upcoming fiscal year. For more information about the program, please visit: http://www.firegrantsupport.com  \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2aa90f1a-e173-4bd3-88ef-4e62bd213c12,\"Sen. Menendez Urges BP to Cooperate with Investigation of the Release of Convicted Terrorist Al-Megrahi\n                    \n                            Company has failed to offer a witness and provide requested documents on their activities in Libya or communications with government officials\n                    \n                      September 15, 2010\n                     WASHINGTON – Today, US Senator Robert Menendez(D-NJ),a member of the Senate Foreign Relations Committee, sent a letter to BP’s CEO Tony Hayward urging the company to cooperate with an ongoing investigation into the release of convicted terrorist Abdel Basset Ali Mohmed al-Megrahi. Senator Menendez has written to Hayward on several previous occasions in the hope of securing documents and testimony from BP officials to clarify the company’s public statements about al-Megrahi’s release, but, to date, Hayward has failed to offer a useful witness or provide any helpful information.\n\nSenator Menendez wrote: “In prior letters, I extended several invitations to both you and to BP consultant Sir Mark Allen to participate in the Senate Foreign Relations Committee hearing I am chairing on September 29th to fully explore the allegations surrounding the decision to release al-Megrahi.  Because you have chosen to decline my invitations to testify, I fully expect that BP will provide another witness to represent BP instead.  I believe it is critical that we hear from a senior BP official who can provide information about BP’s activities in Libya since 2007 and BP’s communications with the Libyan, UK, and Scottish governments regarding this matter.  I do not understand why BP would hesitate to provide a witness, since BP’s claims it had no role in his release.  If that is true, then this venue can serve as a way to dispel allegations to the contrary.”\n\nPDF of the letter: http://menendez.senate.gov/imo/media/doc/Ltr.%20from%20RM%20to%20Hayward%20re%20New%20Witness%20and%20Doc%20Request%20-%2009152010.pdf\nFULL TEXT OF THE LETTER:\nSeptember 15, 2010\nMr. Tony HaywardChief Executive OfficerBP PLC1 St. James’s SquareLondon SW1Y 4PDUnited Kingdom\nDear Mr. Hayward, \nI have sent you four letters to ask for your and BP’s cooperation with my investigation into the release of convicted terrorist Abdel Basset Ali Mohmed al-Megrahi last year.  I regret that I am compelled to write you yet again to get responses to my inquiries.  \nIn prior letters, I extended several invitations to both you and to BP consultant Sir Mark Allen to participate in the Senate Foreign Relations Committee hearing I am chairing on September 29th to fully explore the allegations surrounding the decision to release al-Megrahi.  Because you have chosen to decline my invitations to testify, I fully expect that BP will provide another witness to represent BP instead.  I believe it is critical that we hear from a senior BP official who can provide information about BP’s activities in Libya since 2007 and BP’s communications with the Libyan, UK, and Scottish governments regarding this matter.  I do not understand why BP would hesitate to provide a witness, since BP’s claims it had no role in his release.  If that is true, then this venue can serve as a way to dispel allegations to the contrary.  \nI am disappointed with the lack of cooperation that your company has offered to my office in its investigation.  In my last letter to you, I asked that you provide my office with a detailed timeline of BP’s activities in Libya and that you make available any BP employees who are familiar with BP’s activities in Libya so my staff could speak with them.  The document BP provided was quite general and not informative.  The employee you made available to my staff to interview was without much personal knowledge of BP’s activities in Libya or its interactions with the Libyan government.  \nFurthermore, in that same letter, I renewed a prior request by Senators Lautenberg, Gillibrand, Schumer, and myself for the following documents covering the period of January 1, 1999 to the present: \n1.    Any documents,* including communications to or from BP officials, relating to the release or negotiations for the release of Abdel Basset Ali Mohmed al-Megrahi or the Prisoner Transfer Agreement (PTA) between the UK government and Libya or negotiations about the PTA. \n2.    Any documents,* including communications to or from British Government officials, relating to BP’s interest in or negotiations for oil exploration in Libya. \n3.    Any documents,* including communications to or from British Government officials, relating to al-Megrahi’s release or transfer to Libyan custody.  \nBased on documents released by the British Government that detail communications between BP and the UK, I know that documents meeting these criteria exist.  Yet we have yet to receive any of these documents.   \nMr. Hayward, these past few months have seen BP subject America to the largest oil spill in its history.   I therefore find it very surprising that BP is not acting to restore its reputation in this country by being more helpful and forthcoming with information to aid this investigation.  I hope you realize and understand that the alleged links between BP and the release of al-Megrahi surfaced before my investigation began.  If, as you maintain, BP had no influence in this matter, then it is in BP’s interest to be cooperative and put this issue to rest.  \nIn closing, I again ask that BP provide a witness who can testify credibly and knowledgeably to BP’s activities in Libya since 2007.  I still await a more detailed timeline of BP’s activities in Libya and for BP to produce the documents that were requested over fifty days ago by Senators Lautenberg, Schumer, Gillibrand, and myself.  \nThank you, in advance, for your attention and prompt consideration. \nSincerely, \nROBERT MENENDEZUnited States Senator\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3640de99-f5db-40c4-98a8-d2b1b858a7af,\"Menendez Hails $268 Million in Funding to Help New Jersey Keep Thousands of Teachers on the Job\n                    \n                            Funding awarded will avert massive layoffs and keep classroom sizes manageable \n                    \n                      September 14, 2010\n                     WASHINGTON – Today, the U.S. Department of Education announced that New Jersey has been awarded $268 million in funding to support education and help keep approximately 3,900 teachers in the classroom in the 2010-11 school year. The funding was secured as part of the Federal Medical Assistance Percentages (FMAP) Bill, legislation meant to prevent teacher layoffs and help state budgets that passed the U.S. Senate and was signed into law earlier this year after Democrats broke a Republican obstruction attempt. The legislation is also expected to deliver an estimated $400 million in Medicaid funding, which will help keep state and local law enforcement and first responders on the job to maintain public safety.  U.S. Senator Robert Menendez (D-NJ) who was a strong supporter of the legislation released the following statement:\n\n“There is nothing more important to our long-term economic prosperity than the quality of our public schools.  This funding will help keep thousands of teachers in the classroom, avoid skyrocketing class sizes and ensure that our youth can continue having access to a quality education that allows them to reach their full potential.  It will also help ensure that our education system remains stable amid the current economic circumstances that have crippled family and state budgets.  I am proud to having helped secure this funding and look forward to the positive impact it will have on education and our economic recovery.”\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=86a87aaf-c350-4a5b-9ad7-8ffb2530c565,\"Lautenberg, Menendez, Sires Secure $1.95 Million to Improve RTE 280 in Harrison\n                    \n                      September 10, 2010\n                     WASHINGTON – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) and Rep. Albio Sires (D-NJ-13) today announced $1.95 million in federal funding they secured for the New Jersey Department of Transportation to reduce bottlenecks and improve Route 280 in Harrison.  \n\n“This federal funding is a major investment in Hudson County and an important step in alleviating bottlenecked traffic on Route 280 in Harrison,” said Lautenberg, a member of the Senate Transportation Appropriations Subcommittee that funded this project. “Upgrading Route 280 will improve highway safety, reduce commute times, and help local businesses.  This project will put people to work at good-paying jobs and boost the local economy.” “This investment in Harrison’s roadways will help alleviate traffic backups in a particularly congested area, saving valuable time and making transportation safer and more efficient for our families and businesses.” Menendez said.  “It will also help our local economy by creating jobs for local workers to complete the project.” “Federal funding is needed to improve the Interstate 280 interchange, which is located in an area vital to regional economic development in Hudson County.  This interchange improvement will produce tangible benefits including alleviating traffic congestion, creating jobs, and increasing vehicular safety,” said Sires, a member of the House Transportation and Infrastructure Committee. \n\nThe project will entail consolidating the partial ramp system at I-280 in Harrison to create a single interchange that will alleviate bottlenecks at the existing intersections.  Senators Lautenberg and Menendez recently secured an additional $1.5 million for the Harrison I-280 Interchange Improvements project in the FY 2011 Transportation, Housing and Urban Development Appropriations bill, which was approved in the Senate Appropriations Committee.  The legislation now heads to the full Senate for further consideration.                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=60aa993d-583a-4f7a-889c-5bded00097b0,\"Menendez Statement on Ninth Anniversary of Sept. 11th Attacks\n                    \n                      September 10, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), who is attending the City of Hoboken September 11th Memorial, released the following statement in remembrance of this tragic date and the thousands of Americans who lost their lives:\n\n“Today all of us in New Jersey, and Americans across the country, stand in solemn remembrance of September 11. We honor the thousands who lost their lives on this fateful day nine years ago and remain in solidarity with their families and loved ones. As we keep the victims and their families in our thoughts and prayers, it is vital that we renew our commitment to the courageous men and women in our armed forces who are have risked their lives since 9/11 to bring justice to the terrorists who brought this great tragedy to our shores. And we must look back and reflect on what that day has meant to our nation. “We rose as one -- united as a nation, indivisible as people, ready and willing to do what we could to help. Thousands selflessly assisted in the rescue and recovery efforts around Ground Zero. We should always be thankful to our first responders and military for the sacrifices they continue making every day to ensure the safety of our families and our nation. The wound still hurts, but as we continue moving forward, building on our hopes for this nation, let’s remain committed to that spirit of unity, which we experienced in the days after the tragedy, and which we embrace today. Today, as a nation, our resolve and commitment to a future of peace and prosperity for all remain unshaken.\"\"\n\n                                                                                                                                                                                                                                                                                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b65f6b57-51e8-425a-b7c0-24d1cf6dbc1c,\"Menendez, Lautenberg Applaud Nearly $12 Million in Additional Funding for NJ Communities Affected By Foreclosures\n                    \n                            Funding awarded as part of mortgage foreclosure assistance provision in Wall Street Reform Bill that the NJ Senators helped pass. Senators also applaud new initiative where foreclosed homes will be sold at a discount, fixed up, and then sold to moderate- and middle-income homebuyers.\n                    \n                      September 9, 2010\n                     WASHINGTON - New Jersey's U.S. Senators, Robert Menendez and Frank Lautenberg, today applauded the U.S. Department of Housing and Urban Development's announcement that it has awarded New Jersey communities $11,641,549 million in additional funding to help minimize the negative effects of the foreclosure crisis. This funding will be distributed through HUD’s Community Development Block Grant (CDBG) Neighborhood Stabilization Program (NSP) third round of grants. The grants will be used to help communities purchase foreclosed homes, land and property, demolish or rehabilitate abandoned property, assist low- and middle-income homebuyers with down payment or closing costs, and manage the use of vacant land. \n\n\"\"Foreclosures don't just affect the New Jersey family that loses its home, they create a ripple effect that brings down property values in the surrounding communities and harms neighboring families,\"\" said Senator Menendez. \"\"With the Wall Street reform bill we passed, we have properly regulated our financial markets and provided vital assistance to struggling homeowners. This additional funding for New Jersey will help families hold on to their homes, revitalize our communities, and change the direction of our economy.\"\"\n\"\"Homeowners across our state have felt the impact of declining home values due to nearby foreclosures and abandoned properties.  This infusion of federal funding will allow New Jersey communities to take action and rehabilitate blighted properties.  Our state, counties and cities must use this investment to help ensure that our neighborhoods remain vibrant places to live, work and raise families,\"\" Sen. Lautenberg said.   \n\nThe Dodd-Frank Wall Street Reform and Consumer Protection Act of 2010 allocated additional funding for the Neighborhood Stabilization Program (NSP), which was originally established under the Housing and Economic Recovery Act of 2008. The NSP was created with the purpose of helping stabilize communities that have suffered the impact of foreclosures and abandonment as a result of the mortgage crisis by facilitating the purchase and redevelopment of foreclosed and abandoned properties. For this third round of funding, grants were awarded to the states and local government with the greatest need for neighborhood stabilization funding – the communities with the highest rate of foreclosed and/or vacant properties and the highest concentrations of foreclosures, delinquent loans, and subprime loans. This basic allocation was adjusted to ensure that every state received at least $5 million in funding. \nFor more information about the Neighborhood Stabilization Program, please visit: http://www.hud.gov/offices/cpd/communitydevelopment/programs/neighborhoodspg/\nThe $11,641,549 million in funding for the state of New Jersey announced today will be distributed as follows: \nUNION COUNTY -  $1,574,051PATERSON - $1,196,877ESSEX COUNTY - $1,851,984NEWARK - $2,018,637NJ STATE - $5,000,000\n                                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4646d872-6612-4ceb-81af-788b82e7b218,\"Menendez, Lautenberg Announce $500,000 for Monmouth County Gang Prevention Program\n                    \n                      September 8, 2010\n                     WASHINGTON, DC – Today, U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) announced $500,000 in federal funding has been made available to support a gang prevention program at the Community YMCA in Middletown, New Jersey.   \n\n“The Middletown YMCA is doing important work to help local youth find a positive path for the future, and its efforts deserve our support,” Lautenberg said.  “Gang prevention programs like this one help to build safer communities, reduce drop-out rates and strengthen families.” “With today’s economic and social challenges, too many young people are turning to gangs as a way out. Through this investment, we can keep communities safe and assist local law enforcement in combating gang violence by using prevention programs that keep youth off the streets,” said Menendez.  \n\nThe funding was secured in the Fiscal Year 2010 Commerce, Justice, Science Appropriations bill, which Sen. Lautenberg helped craft as a member of the Appropriations Subcommittee that funds this program.  The money is being released by the U.S. Department of Justice to help the Community YMCA administer its Adolescent Intensive Outpatient Program (IOP).  The program provides Monmouth County youth and their families with a highly structured, six-month approach to address substance abuse and other high-risk behaviors that may lead to gang involvement.                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f1ca0ed0-9948-4827-b488-04d92753bd18,\"Menendez Statement on Obama's Presidential Address Regarding Iraq\n                    \n                      September 1, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today released the following statement on President Obama’s Oval office address regarding next steps in Iraq:\n\n“Last night President Obama fulfilled our commitment to end the war in Iraq, withdraw combat troops, and give the Iraqi people a chance to determine their future. \n“This is an important milestone for which many Americans, including myself, have long advocated. From my initial vote against authorizing the Iraq war, to my repeated support for bringing our troops back home, I have consistently argued that this was an ill-advised, ill-conceived, ill-timed war of choice that diverted our attention from Osama bin Laden and those who executed the 9-11 attacks on our homeland.  But I have always remained steadfast in my support for our troops who have served in Iraq. It’s because of their bravery and their sacrifice – and the sacrifice of their families – that Iraqis now have the opportunity to pursue a new future.”\n“The lessons of our engagement in Iraq, however, cannot be forgotten in our ongoing efforts to combat terrorist organizations and I still believe today that we must finish the job by capturing bin Laden and dismantling al Qaeda. That is why I support a forceful, targeted military offensive to attack and destroy Taliban and al Qaeda groups along the Afghanistan and Pakistan border. But it is also why I believe that we should resist engaging our troops in a broader, indefinite effort to act as Afghanistan’s de facto national police force.”\n\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a54f380e-7acf-45cd-9eb3-95abe8d191b3,\"Senator Menendez Applauds Audition of Pakistani Taliban on US Terrorist List\n                    \n                            Menendez was among Senators that urged Secretary Clinton and offered legislation to add organization to the official list of terrorist groups after Times Square terrorist pled guilty and warned of future terrorist attempts\n                    \n                      September 1, 2010\n                     Designation triggers counterterrorism measures including travel bans against group members that attempt to enter US, asset freezes, and criminal penalties against the group’s financial supporters\nWASHINGTON – The US Department of State announced today that the Pakistani Taliban (Tehrik-i-Taliban) has officially been added to the list of foreign terrorist organizations. Senator Menendez, who was part of a group of Senators who championed efforts in the Senate to accomplish this, applauded the designation and released the following statement:\n\n“I am pleased that Sec. Clinton responded to our requests to protect our nation and include the Pakistani Taliban on the list of foreign terrorist organizations after the Times Square bomber confessed his links to this organization and warned of future attempts. The Pakistani Taliban is a proven murderous organization that has been implicated in numerous terrorist attempts internationally and domestically, and has no shame in hiding their intentions to continue menacing the security of nations and families. Their inclusion on the official list of foreign terrorists will be an effective way of undermining their access to financial resources, logistical support, and ultimately helping to protect Americans here at home. I am pleased that our efforts in the Senate will ensure our nation justifiably penalizes an organization that jeopardizes our national and international security.”\n\nEarlier this year U.S. Senator Menendez (D-NJ) joined U.S. Senators Charles E. Schumer (D-NY), Kirsten Gillibrand (D-NY), Frank Lautenberg (D-NJ) in efforts to ensure the designation of the Pakistani Taliban as a foreign terrorist after Faisal Shahzad, the Pakistani-born U.S. national Times Square bomber, was directly linked to the organization by U.S. intelligence investigations. On May 11, the senators sent a letter to Secretary of State Hillary Clinton urging the administration to cite the group, also known as the Tehrik-i-Taliban Pakistan (TTP), as a Foreign Terrorist Organization (FTO) in order to trigger a series of counterterrorism measures. A day after the man behind the Times Square terror plot confessed to receiving training and financing from the Pakistani Taliban and warned of future terrorist attempts the Senators denounced the fact that the organization still had not been added to the list and announced legislation to require the Pakistani Taliban to be immediately designated as a terrorist group.  The designation announced today is a critical step and useful tool in combating foreign terrorist groups. It triggers a series of steps, including: freezing of assets, barring foreign nationals with ties to the group from entering the U.S., and criminalizing the act of providing any material assistance to the group.  \n                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d244a83c-65ae-4053-bf7a-e7218a6d5ffa,\"Army Releases $3 Million for NJ Technology Center\n                    \n                            Menendez, Holt, Pallone, and Lautenberg Secured Funding to Keep Fort Monmouth Jobs in NJ\n                    \n                      September 1, 2010\n                     Washington, D.C. – U.S. Senator Robert Menendez (D-NJ), Reps. Rush Holt (NJ-12) and Frank Pallone (NJ-6) and U.S. Senators Frank Lautenberg today announced that the U.S. Department of Defense has awarded $2.995 million for the newly created New Jersey Technology Center. Last year, the legislators secured the funding in the federal defense budget, but the Department of Defense needed to finalize the funding before it could reach the Center. Earlier this year, the two Representatives and two Senators met with John McHugh, Secretary of the Army, and approval of the funding was one of the issues they raised.\nThe funding will provide employment opportunities for thousands of skilled Fort Monmouth employees through contracts with the Army. At the Center, they will be able to continue to provide technical and programmatic support for the U.S. military. \n\nSaid Holt: “The funding we secured, which is now being awarded, is an investment that will put to work the talented men and women – the scientists, engineers, and acquisition specialists – who, for decades, have helped provide our troops with the communications and intelligence support they need. The New Jersey Technology Center will be a jobs center for years to come.” \nSaid Pallone: “The men and women employed at Fort Monmouth are highly skilled and dedicated workers who perform important duties in support of America’s troops and national security. “These funds will be literally ‘put to work’ by creating jobs that use their skills and serve these important needs. These are high-tech jobs that should contribute to a growing technology sector that serves the local and regional economy for years to come.”\nSaid Menendez: “This funding will help create jobs and help ensure our state retains high skilled workers that contribute to our state’s competitiveness and innovation capacity. The scientists, engineers, and technicians that the New Jersey Technology Center will employ will be among the most prepared and talented in our state and will have the important responsibility of supporting the U.S. military. I was proud to help secure this funding and look forward to the positive impact it will have on our local economy and our national security.”\nSaid Lautenberg: “This federal funding will provide good-paying jobs in New Jersey and help maintain a highly-skilled workforce in the region. This Center will create opportunities for the talented men and women at Fort Monmouth to remain involved in cutting-edge work that provides vital technology and innovation to our military and helps protect our troops.”\n\nUsing the expertise of highly-skilled former Fort Monmouth workers remaining in New Jersey and other recruited experts, the Technology Center’s mission is to keep and grow high skill, high technology jobs in New Jersey in the fields of science and engineering. Support would include, but not be limited to, intelligence and communications support to the warfighter, and other missions of Fort Monmouth employees.  The Technology Center will also use the skills of these workers to expand into the other areas such as homeland security and renewable energy.Said Amy Fitzgerald, Director of Monmouth County Economic and Workforce Development: “The award of this grant from the U.S. Army will encourage the retention and addition of high tech, high skill jobs in the Monmouth area, after the closure of Fort Monmouth.  It is critical for the region to retain the highly skilled workers who choose not to move. I thank the Representatives and Senators for their efforts to secure this funding.”\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=64ca9f91-2c20-46f1-b984-c079b5798736,\"Senators Menendez, Lautenberg Announce $4.1 Million to Support College Students in NJ\n                    \n                      August 31, 2010\n                     WASHINGTON – Today, US Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced that the U.S. Department of Education has awarded various institutions of higher education in New Jersey $4,128,469 in funding under the Student Support Services Program, to provide academic and other support to low-income, first-generation, or disabled college students. \n\n“Education is the great equalizer, which is why it is so important to struggling families that their children have access to a quality higher education,” said Menendez. “Students who have to overcome the most to get to college too often fall victim to a lack of support once they are there. This is an investment to ensure that these students reach their potential, which is important for the future of our state and our economy.”\n“This funding will help ease financial restraints and level the playing field for students with difficult circumstances that are beyond their control,” Lautenberg said.  “With New Jersey being home to so many excellent colleges and universities, this federal funding will help students overcome obstacles, excel in the classroom and earn their degree.” \n\nFunds under the “Student Support Services Program” are awarded to provide eligible students with opportunities for successful academic development, assist them with basic college requirements, and encourage them to successfully complete their postsecondary education. Only low-income, low-income and first-generation college attendees, or disabled college students can participate in the program. The program seeks to support the retention and graduation rates of these students, facilitate their transfer from two-year to four-year colleges, and foster an institutional climate supportive of the circumstances of low income and first generation college students and individuals with disabilities. \nA total of  $4,128,469 in funding will be distributed to the following institutions:\n•    Georgian Court University -- $293,864 •    New Jersey Institute of Technology  - $521,688 •    Passaic Community College -- $238,468•    Essex County College – Regular -- $422,297•    Atlantic Cape Community College, Mays Landing Main Campus -- $301,692•    New Jersey City University - $290,516•    Rutgers University, New Brunswick - $530,250•    Rutgers University, Camden Campus - $220,000•    Rutgers University, Newark - $238,496•    Rider University, Westminster Choir College Campus - $301,692•    Seton Hall University - $294,001•    Bloomfield College - $255,505 •    Ocean County College - $220,000\nFor more information about the “Student Support Services Program,” visit: http://www2.ed.gov/programs/triostudsupp/index.html                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a702cdaf-b785-4b82-b8b0-1f326ff74b02,\"Senators Menendez, Lautenberg Announce $18 Million in Recovery Act Funding for NY/NJ Harbor Expansion Project\n                    \n                      August 26, 2010\n                     WASHINGTON – Today, US Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced that the US Army Corps of Engineers has granted the NY District $17,943,400 in American Recovery and Reinvestment Act (ARRA) funding to support continuing efforts to deepen the New York-New Jersey Harbor’s main navigation channels.  The project seeks to expand the port’s capacity to provide water access for deep draft container ships entering its four major terminals. \n\n“Expanding the capacity of our port is critical to economic growth and to local businesses owners that need to move goods and stay competitive in the global economy,” said Menendez. “This major Recovery Act investment will put people to work on this project and will contribute to our state’s economic growth to help create and sustain local jobs for our families. Having a port with the capacity to handle larger ships will allow our state to take greater advantage of international and regional commercial opportunities, which will translate into greater economic activity and jobs in both the short and long term.” “This Recovery Act funding will help create job opportunities and improve commerce at the port by opening the harbor to bigger ships that hold more cargo,” said Lautenberg, who as a member of the Senate Appropriations Committee helped write the Recovery Act.  “The project will put New Jerseyans to work deepening the harbor, expand work opportunities at the port and benefit businesses across the state and region.”   \n\nThe ARRA funding announced today will specifically go toward the deepening of the Anchorage channel’s segment between the Kill van Kull and Pt. Jersey Channel. This channel is critical in providing deep draft ship access to the Global Marine Terminal in Jersey City.The original contract for this portion of the project was financed by civil works appropriations in the Energy and Water Development Act 2010. These ARRA funds will allow for the continuation and completion of the project by September 2011. The Port of New York and New Jersey is the largest port on the East Coast and it generates an estimated $20 billion in economic activity and more than 230,000 in direct and indirect jobs for the states of New Jersey and New York. Its four major terminals transport cargo to and from all parts of the United States and the rest of the world. It is connected to rail, truck, and inland waterway routes that connect to the northeast and midwestern states and serves as a connection to the Far East, the Atlantic and Gulf Coasts, the Caribbean, Africa, and the Persian Gulf. Deeper navigation channels will allow the harbor to accommodate larger ships and have a greater economic impact in the region. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=59e43a2a-0e7f-48ec-a44a-c5156f7c7608,\"Menendez, Key Sponsor of Credit Card Reform Law, Hails Full Implementation of New Consumer Protections\n                    \n                            Newest rules keep penalty fees reasonable, eliminate excessive fees, and require re-evaluation of interest rate hikes  \n                    \n                      August 24, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee who was one of the first and most ardent sponsors of credit card reform, is hailing the complete implementation of rules from the new credit card reform law. The latest and final set of rules, which went into effect this week, will do the following:\n•    Keep penalty fees reasonable by limiting them to $25 or the amount of your minimum payment, whichever is lower, with few exceptions•    Eliminate inactivity fees•    Eliminate multiple penalty fees for a single event or transaction•    Require credit card companies to re-evaluate interest rate increases every six months.\n\n“With credit card reform fully implemented, we have taken the uncertainty and unfairness out of using a credit card,” said Menendez. “These latest rules ensure that credit card companies can’t turn what should be a slap on the wrist into a punch to the gut. Families now have the security of knowing that if they use a credit card responsibly, credit card companies in turn will treat them responsibly.”\n\n            Previous to these latest rules being implemented, the following rules were set:\nTook Effect on August 20, 2009 \n•    Requires credit card companies to provide 45 days’ written notice to consumers of any increases in the interest rate or other significant changes to the terms of a credit card account;•    Requires giving consumers notice of their right to cancel the card before the rate hike goes into effect;•    Requires statements to be sent to consumers at least 21 days before the due date of any payments. \nTook Effect on February 22, 2010 •    Prohibits interest rate increases on existing balances unless customer is more than 60 days late in making payments;•    Prohibits “universal default” –the practice of raising a customer’s interest rates if they are late paying a utility or other unrelated bill—on existing balances; •    Prohibits credit card companies from charging over-limit fees unless the customer elects to allow the company to complete over-limit transactions, and also limits over-limit fees on customers who choose that option;•    Requires payments in excess of the minimum payment to be applied first to the credit card balance with the highest rate of interest;•    Prohibits credit card companies from setting early morning deadlines for credit card payments;•    Prohibits interest charges on debt paid on time (double-cycle billing ban);•    Requires credit card companies extending credit to young consumers under the age of 21 to obtain an application that contains: the signature of a parent, guardian, or other individual 21 years or older who will take responsibility for the debt; or proof that the applicant has an independent means of repaying any credit extended;•    Protects recipients of gift cards by requiring all gift cards to have at least a five-year life span, and eliminates the practice of declining values and hidden fees for those cards not used within a reasonable period of time.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=df36a36c-6494-48f7-8b9e-dd69839766ea,\"Senators Widen Scope of Inquiry into Lockerbie Bomber's Release to Include Libya, Qatar\n                    \n                            Menendez, Lautenberg, Gillibrand and Schumer call for support of independent investigation, citing suspicion over commercial influence on al-Megrahi’s release\n                    \n                      August 20, 2010\n                     WASHINGTON – On the one year anniversary of the convicted Pan Am Flight 103 bomber’s release from a Scottish prison, U.S. Senators Robert Menendez (D-NJ), Frank Lautenberg (D-NJ), Charles Schumer (D-NY) and Kirsten Gillibrand (D-NY) today widened the scope of their inquiry to include Libya and Qatar. In a letter to the leaders of those nations, as well as Scottish First Minister Alex Salmond, the senators cited various statements and documents, which have raised suspicions that commercial interests involving those countries may have influenced the decision to release Abdelbasset al-Megrahi. The senators called on Libya, Qatar and Scotland to support a full and independent investigation into the matter, which British Prime Minister Cameron has supported in previous statements.\nIn the letter, the senators cite:\n•    Communications between Libya and Scotland regarding al-Megrahi and commercial interests,\n•    Communications between British business interests and the Scottish government,\n•    Communications between the Qatari and Scottish governments regarding al-Megrahi and commercial interests, and\n•    Statements by British and Libyan officials emphasizing the need for al-Megrahi’s transfer to foster commercial relations between the nations.\n\n“Many questions have been raised as to whether the doctors who Scottish authorities consulted believed at the time Mr. al-Megrahi had only three months to live,” wrote the senators.  “Because these questions remain open, the families of the victims of Pan Am Flight 103 remain concerned that commercial concerns between Scotland, Qatar, and Libya played a role in Mr. al-Megrahi’s release. \n“To ensure that commercial considerations were not a factor in the early release of Mr. al-Megrahi, we call on each of your governments to support a comprehensive, independent investigation with subpoena authority into Mr. al-Megrahi’s release, fully supported by the UK and Scottish Governments.”\n\nPDF of letter: http://menendez.senate.gov/imo/media/doc/20100820ltr_LibyaQatarScotland.pdf\nText of letter:\nAugust 20, 2010\nRt Hon Alex Salmond MSPFirst Minister of ScotlandSt. Andrew’s House, Regent Road, Edinburgh EH13DG\nH. H. Sheikh Hamad Bin Khalifa al-ThaniEmir of QatarEmbassy of Qatar2555 M St NWWashington, DC 20037\nCol. Muammar Abu Minyar al-QadhafiHead of State of LibyaEmbassy of Libya2600 Virginia Ave NW, Suite 705Washington, DC 20037\nDear Sirs,\nFollowing the release of Libyan intelligence officer and convicted bomber Abdelbaset Ali al-Megrahi from a Scottish prison, the Scottish First Minister Alex Salmond has stressed that Mr. al-Megrahi was released strictly on the merits of a medical record that supported a likely prognosis of less than three months until death.  Indeed, Scottish Secretary for Justice Kenny MacAskill said that he made his decision to release Mr. al-Megrahi “without consideration of political, economic, or diplomatic considerations.”[1]However, Mr. al-Megrahi remains alive one year after his release.  Many questions have been raised as to whether the doctors who Scottish authorities consulted believed at the time Mr. al-Megrahi had only three months to live.  Because these questions remain open, the families of the victims of Pan Am Flight 103 remain concerned that commercial concerns between Scotland, Qatar, and Libya played a role in Mr. al-Megrahi’s release.  We note:•    On 20 October 2008, Libyan Charge d’ Affairs Omar Jelban wrote to First Minister Salmond’s private secretary, Mr. Ian Donaldson, requesting an audience with the First Minister.  After the First Minister’s office requested clarification regarding why the Libyan Government wanted an audience, Mr. Jelban replied in a letter dated 23 October that the issues were two-fold:  1) the medical condition of Mr. al-Megrahi and 2) enhancing current trade links between Libya and Scotland.[2]  •    On 17 July 2009, Lord Trefgarne of the UK House of Lords wrote to Secretary MacAskill as a member of the House of Lords and Chairman of the Libyan British Business Council (LBBC).  Lord Trefgarne noted that the LBBC had Scottish members who were anxious concerning the case of Mr. al-Megrahi.  Lord Trefgarne continued that Secretary MacAskill ought to quickly consider the prisoner transfer or compassionate release options given humanitarian concerns as well as “the shadow which may otherwise fall over the UK-Libyan relations – and especially the interests of LBBC Scottish members and indeed others.”[3]•    On 17 July 2009, Qatari Minister for International Cooperation and Acting Minister of Business and Trade Khalid bin Mohammed al-Attiyah wrote to Secretary MacAskill on behalf of Qatari Emir Sheikh Hamad Bin Khalifa al-Thani; Emir al-Thani was noted to also be the Chairman of the Arab League.  The Qatari Emir requested that Secretary MacAskill immediately remove Mr. al-Megrahi from prison into a Scottish home while appeals were pending.  This was sent via email and via diplomatic channels.•    In 2008 the Scottish Government pursued financing from the Qatari Government for public works projects.[4]•    On 21 July 2009, First Minister Salmond wrote to Qatari Ambassador Khalid Rahid al-Hamoudi al-Mansouri regarding a meeting that the First Minister had with Qatari Minister al-Attiyah on June 11.  During the meeting, First Minister Salmond and Minister al-Attiyah discussed Mr. al-Megrahi and the Prisoner Transfer Agreement (PTA).[5]   These communications are only those that have been selectively released by the Governments involved in Mr. al-Megrahi’s release to date.  We see an inherent conflict of interest in doing so, as it gives no certainty that some documents were chosen for release while others were not.  In short, it leaves us unable to tell our constituents – and the 21 other nations that experienced the death of their citizens in the bombing of Pan Am Flight 103 – that commercial interests did not influence Mr. al-Megrahi’s early release.Our concerns are further supported by statements made by UK and Libyan officials.  To the former, we know that BP lobbied the UK Government in 2007 regarding the PTA.  They are on record as saying that a delay in ratification could have a “negative impact” on BP’s exploration agreement with Libya.[6]  Moreover, former UK Ministers Miliband and Straw have both stated publically that trade issues – most especially the BP / Libya deal – was a major consideration as they and the UK government negotiated the particulars of the PTA with Libya. [7] [8]  During these same PTA negotiations, Scottish Government officials – including First Minister Salmond – were in contact with these same UK Ministers and assorted UK government officials.  We also highlight statements made by Saif al-Qadhafi, who publically noted that “the commerce and politics and deals were all with the PTA.”[9]  To ensure that commercial considerations were not a factor in the early release of Mr. al-Megrahi, we call on each of your governments to support a comprehensive, independent investigation with subpoena authority into Mr. al-Megrahi’s release, fully supported by the UK and Scottish Governments.  UK Prime Minister Cameron has already laid the groundwork for a prospective investigation, saying such could be \"\"led by a former permanent secretary or former judge,\"\" adding that “the time has come” to do so.[10]  We appreciate your consideration of our request.\nSincerely,\nROBERT MENENDEZ                                                                                        FRANK R. LAUTENBERGCHARLES SCHUMER                                                                                        KIRSTEN E. GILLIBRANDUnited States Senators\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9da950c7-b8a8-4668-9c09-537dc87c0ef5,\"Senators Press Scottish, British Governments for New Answers on Terrorist's Release\n                    \n                            Menendez, Lautenberg, Gillibrand, Schumer seek information on lead Scottish doctor’s communications with Libya, among other key issues. They renew call for independent investigation in UK.\n                    \n                      August 19, 2010\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ), Frank Lautenberg (D-NJ), Kirsten Gillibrand (D-NY) and Charles Schumer (D-NY) are seeking answers to an array of lingering questions about the circumstances surrounding the release of convicted Pan Am Flight 103 bomber Abdelbasset al-Megrahi from a Scottish prison one year ago tomorrow. In letters to Scottish First Minister Alex Salmond and British Prime Minister David Cameron, the senators outline the persisting uncertainty about medical, legal and diplomatic issues related to al-Megrahi’s release, and they request new information on those matters. \nChief areas of interest raised by the senators include:\n•    Meetings that included Dr. Andrew Fraser and Libyan envoys (Scottish Justice Secretary Kenny MacAskill has cited Dr. Fraser’s medical prognosis as the basis for al-Megrahi’s release on compassionate grounds)\n•    Assurances from Scottish officials to Libyan envoys about al-Megrahi’s primary doctor\n•    Communications between BP and the British government\n•    Full disclosure of communications between the British and Scottish governments.\nThe senators also renewed their call for an independent investigation into the matter.\n\n“The one and only goal in investigating this matter is clear:  the full disclosure of all facts surrounding the release of Abdelbaset Ali Mohmed al-Megrahi,” wrote the senators in their letter to Salmond. “Until the Scottish and UK governments launch a truly independent and comprehensive investigation, we will continue to work aggressively on behalf of the families that we represent.”\n\nPDF of letter to Salmond: http://menendez.senate.gov/imo/media/doc/20100819ltr_salmond.pdf\nPDF of letter to Cameron: http://menendez.senate.gov/imo/media/doc/20100819ltr_cameron.pdf\n\nText of letters to Salmond and Cameron below: \nAugust 19, 2010\nRt Hon Alex Salmond MSPFirst Minister of ScotlandSt Andrew’s House, Regent Road, Edinburgh EH13DG\nDear First Minister Salmond,\nWe appreciate your reply dated 15 August in relation to our request for more information, dated August 10th.  We note the suggestion by Scottish Cabinet Secretary for Justice Kenny MacAskill that Senator Menendez “appears now to be acting on his own account, rather than on behalf of the foreign relations committee.”[1]   That misses the point.  All of the undersigned Senators, including Senator Menendez, are acting on behalf of their constituents and the families of those who perished in the Lockerbie bombing.  These families deserve nothing less than a thorough investigation and, as Senate Foreign Relations Committee Chairman Sen. John Kerry made clear, a public airing of the facts.  The one and only goal in investigating this matter is clear:  the full disclosure of all facts surrounding the release of Abdelbaset Ali Mohmed al-Megrahi.  UK Prime Minister David Cameron has made it known that al-Megrahi’s release was “completely and utterly wrong.”[2]    An independent investigation with subpoena power, fully supported by both the UK and Scottish governments, is ultimately the best avenue to address the concerns that we and the families of the victims have raised.  Until such an inquiry is launched, we will not stand by as an injustice remains very much alive in a villa in Tripoli.  The American people – and, indeed, the people of 21 nations who suffered the loss of their loved ones – require nothing less.In that spirit, we asked in our letter dated August 10th for full disclosure of all medical records related to al-Megrahi so that the families of the victims could make an informed judgment about the merits of Secretary MacAskill’s compassionate release of the aforementioned terrorist.  We are disappointed that you have thus far not done so nor have you been willing to ask the Libyan Government to provide for the release of said records.  We note that al-Megrahi himself has called for the release of all documents related to his appeal.[3]  We would be most appreciative if you would reconsider your position on whether to formally ask the Libyan Government or al-Megrahi himself to authorize the release of his medical records.Though you have consistently claimed that all relevant information has been shared on al-Megrahi’s release, we believe more critical information remains undisclosed.  Below please find specific questions that we believe still need to be answered. MedicalIn September 2008, al-Megrahi was diagnosed with prostate cancer.  There was an “informal mid-estimate of 18-24 months” by specialists who estimated al-Megrahi’s remaining time before death.[4]  According to these specialists, the approximate date of death would thus be March 2010.\n•    Why did Secretary MacAskill ultimately disregard the advice of these specialists if the earliest al-Megrahi would die was March 2010?•    We again ask for the names, medical training, number of patients seen and treated with prostate cancer, for each specialists, consultants, and palliative care teams.  We also ask for the results of all laboratory tests, X-rays, scans and associated examinations, as well as accompanying notes.On November 5, 2008, First Minister Salmond replied to Libyan Secretary Al-Baghdadi Ali Al-Mahmoudi’s October 27 letter by noting the parameters around compassionate release and the prisoner trade agreement.  Salmond referenced an October 27 meeting attended by Scottish Director General for Justice and Communities Robert Gordon, Libyan Minister for Europe Abdulati Alobidi, and Libyan Foreign Minister Mousa Kousa, with Gordon commenting that it had been a “very positive meeting.”•    Why was this meeting positive?  What transpired?•    We ask that you provide us full notes of this meeting.On November 18, 2008, Mr. Gordon, Scottish Deputy Director of Criminal Justice Directorate George Burgess, and Director of Health and Care of the Scottish Prison Service Dr. Andrew Fraser met with Libyans Alobidi, Libyan Charge d’ Affairs Omar Jelban, and another official.  Mr. Alobidi expressed disappointment with a High Court ruling on November 14 regarding Al-Megrahi’s request for interim liberation; the ruling stated that Al-Megrahi had to remain in prison while his appeals were underway.  The ruling also stated the following about al-Megrahi’s physical condition:“The applicant, with the exception of some mild discomfort, remains at present symptom-free. He is sleeping and eats well. He remains independent with his daily living activities in the prison where he is held. In terms of physical support required, at this time no additional help appears to be necessary; nor has any been requested.” [5]Mr. Alobidi said that because the ruling had referred to a three month limit (of likely death), “the hands of Scottish Ministers would be tied.”[6]  He added that al-Megrahi had refused to see his doctor earlier that day, apparently unhappy that the doctor’s report had not made a sufficient case to persuade the court to grant interim liberation.  Mr. Gordon and Dr. Fraser said that it would be important for al-Megrahi’s relationship with the unnamed physician to be restored. Mr. Gordon told the Libyans that the criteria for compassionate release referred to three months but that this was not a “hard and fast rule.”[7]  He also downplayed the court’s decision on interim liberation, saying it did not restrain Ministerial decision making on compassionate release.  Moreover, Mr. Gordon said that the process for a prisoner transfer agreement could begin “even if all the conditions for transfer (eg the requirement for finality) were not met at the point the application was made.”[8]Mr. Alobidi added that al-Megrahi’s death in a Scottish prison would be bad for relations between the UK and Libya.  •    This meeting – and subsequent meetings – involving Dr. Fraser and Libyan officials show that Dr. Fraser was knowledgeable of and involved in the political dimensions of al-Megrahi’s release.  Did Dr. Fraser make a recommendation for compassionate release based on the medical facts at hand or did these political considerations play a role as well?  We believe that this is an area that should be explored in an independent inquiry.•    This meeting also shows that the Libyans, along with al-Megrahi, were frustrated by the “three month rule” and needed a doctor to show that al-Megrahi was suffering from physical symptoms regarding his ability to physically move.  •    Why was Mr. Gordon so concerned about Libyan opinion that he would seemingly downplay the court’s decision on interim liberation, noting the lack of restrictions that were actually in place on a Ministerial decision for compassionate release or a prisoner transfer?  Mr. Gordon went so far as to suggest that the Scottish Government could consider a prisoner transfer request even if all conditions for transfer were not met.•    How did Mr. Gordon and Dr. Fraser improve al-Megrahi’s relationship with the unnamed doctor?  Did the doctor feel pressured to improve the relationship?  Who was this doctor?\nIn June and July of 2009, four unnamed specialists examined al-Megrahi.  They included two consultant oncologists and two consultant urologists from the Scottish National Health Service.  Consensus among the specialists regarding al-Megrahi’s lifespan “moved to the lower end of expectations from 10 months ago;”[9] in other words, al-Megrahi would die no sooner than March 2010.  Moreover, “no specialists ‘would be willing to say’ whether or not prognosis was more or less than three months” as of late July 2009, only three weeks before al-Megrahi was released by Secretary MacAskill.[10]\n•    Were the specialists who saw al-Megrahi in June and July of 2009 the same as those who evaluated al-Megrahi in September 2008 and throughout his treatment?  How many doctors and specialists in total treated or opined on the diagnosis or treatment of al-Megrahi?\n•    Why did Secretary MacAskill give minimal consideration to the advice he was given by the clinical specialists in late July 2009 when they indeed believed that al-Megrahi was estimated to live through March 2010?  Why did he give minimal consideration to the fact that none of the specialists were willing to say whether or not al-Megrahi  had three months or less to live?\n•    Why did Dr. Fraser give minimal consideration of this same advice from the specialists who had more training on the ailment than Dr. Fraser himself?  Why bother employing the minds of specialists if their perspective would ultimately be minimized?On July 22, 2009, Mr. Gordon met with Mr. Jelban to continue with further talks regarding al-Megrahi’s release on compassionate grounds.  Also in attendance was Dr. Fraser, who said a blood test taken to assess the activity of the disease confirmed that the disease activity was rising.  Different treatment options had been discussed, and a new treatment had been embarked upon.  Mr. Burgess and Mr. Gordon later discussed timelines and logistics of a compassionate release.[11]•    What new treatment had Dr. Fraser embarked on if the disease activity was rising?  What were the treatment options discussed?  •    If Secretary MacAskill didn’t make a decision on whether he’d grant compassionate release to al-Megrahi until August 19, 2009, why were Mr. Burgess and Mr. Gordon discussing the timelines and logistics of such on July 22, 2009?On July 24, 2009, Secretary MacAskill received an application for compassionate release from al-Megrahi.  Secretary MacAskill stated, “He [al-Megrahi] was diagnosed with terminal prostate cancer in September 2008, and I have been regularly updated on the progress of his illness…”[12] •    How many regular updates did Secretary MacAskill receive?  What did they report?•    We again ask for unredacted copies of each of those updates.\nOn August 3, 2009, an unnamed individual examined al-Megrahi.  The individual found that al-Megrahi’s clinical condition had declined significantly over the week prior (period July 26– August 3).  The clinical assessment, therefore, was that a three month prognosis was then a reasonable estimate for the patient.  Al-Megrahi was told that his future treatment would be “symptom-control” and both he and his family were aware that a cure was not an option.[13] •    Why was the unnamed individual given more weight than four specialists who were trained to treat prostate cancer?  What training or clinical perspective did he or she have that the specialists did not?•    What tests or examinations did the unnamed individual order and review that the specialists did not have access to during the period of July 26– August 3 when al-Megrahi’s condition was alleged to have deteriorated?  What exactly were the symptoms of the significant deterioration?\n•    We again ask for the name, medical training, notes, and numbers of patients seen and treated with prostate cancer, for the unnamed physician.  We also ask for the results of all laboratory tests, X-rays, and associated examinations requested and considered during the period of July 26– August 3.\nOn August 4, 2009, the prison-based social work report – later included in the evaluation for al-Megrahi’s release – was completed by an unnamed Senior Social Worker at HMP Greenock.  The report was heavily redacted.\n•    We ask for a fully unredacted copy of all sections of the social work report, to include background information, family circumstances, accommodation, and potential release plans.On August 6, 2009, Secretary MacAskill met with al-Megrahi in HMP Greenock prison.  During the meeting, al-Megrahi spoke of “the likelihood that he will need to commence chemotherapy soon.”[14]  •    Which of al-Megrahi’s doctors ordered or suggested chemotherapy?  Why?•    Did Secretary MacAskill tell or ask al-Megrahi’s primary care physician, the specialists, or Dr. Fraser about the planned chemotherapy?  If indeed chemotherapy is a treatment designed to cure a patient of cancer or extend their life, why would al-Megrahi need chemotherapy if treatment was supposed to be limited to “symptom-control,” as Dr. Fraser noted in his final medical report?  Moreover, did Secretary MacAskill or any of the doctors or specialists associated with al-Megrahi’s care ask about the expected lifespan of a patient beginning chemotherapy after the failure of hormone therapy?•    We also ask for a list of people who visited al-Megrahi at HMP Greenock from September 1, 2008 to his release in August 2009.  In this list, we ask for the date of visit, purpose of visit, and duration of stay.On August 10, 2009, the medical evaluation was submitted by Dr. Fraser.  Though partially redacted, it summarized many points noted above.  Additionally, the report relayed that clinicians who had assessed al-Megrahi had commented on his relative lack of symptoms when considering the severity and stage of his underlying disease.  Also, the report highlighted that al-Megrahi’s “condition [of prostate cancer] did not restrict or remove Mr. Megrahi’s ability to carry out any particular tasks.”[15]  •    Did Minister MacAskill query any of the specialists about al-Megrahi’s relative lack of symptoms and total freedom of movement?  Did Minister MacAskill ask any of the specialists if the relative lack of symptoms and total freedom of movement suggested al-Megrahi only had three months or less to live?•    A full medical release – to include results of blood tests, x-rays, body scans, and notes – will assist us in better understanding why al-Megrahi had a relative lack of symptoms and was not restricted or removed from carrying out any particular tasks.  We again ask for a full release of al-Megrahi’s medical records.\nOn August 20, 2009, Minister MacAskill made his decision public, that he was declining the release of al-Megrahi under the prisoner transfer agreement but releasing him instead on grounds of compassion.[16]\n•    As a condition of his compassionate release, al-Megrahi is supposed to provide monthly medical reports to Scottish officials.  We ask that you provide us copies of these monthly medical reports.\nLegal\nIn July 2009, the Scottish Prison Services had obtained information on the proposed place of detention in Libya.[17] \n•    When did the SPS begin discussions with the Libyan Government on the proposed place of detention?  Who from SPS was involved?  What information or requirements did they relay to the Libyan Government?  What was promised?On August 5, 2009, the Governor of HMP Greenock, Malcolm Milennan, submitted his assessment of al-Megrahi, as required for compassionate release consideration.  Mr. Milennan believed it highly unlikely that al-Megrahi would reoffend and opined that the prisoner’s prognosis was extremely bleak.[18]•    What was the evidence used to sustain Mr. Milennan’s belief that al-Megrahi would not reoffend with physical or material support given that he was unrepentant of his crime?On August 24, 2009, during Parliamentary questioning, Secretary MacAskill said, “When Mr. al-Megrahi chose to make representations in person, clear advice was given to me that that request could hardly be denied.”[19]  •    Who gave Secretary MacAskill that “clear advice?”On August 24 2009, Secretary MacAskill said that “…Assurances were given to me by the Libyan Government, and I regret that they were not upheld” regarding the celebration al-Megrahi received upon returning to Libya.[20]  •    What assurances did MacAskill ask for?  And why did he do so if, in fact, Secretary MacAskill made his decision to release al-Megrahi “without consideration of political, economic, or diplomatic considerations?”[21]\nForeign RelationsOn June 22, 2009, Mr. Burgess wrote the unnamed head of the North Africa Team for the Foreign and Commonwealth Office requesting clarification regarding whether the UK made an agreement with the US that al-Megrahi would serve his entire sentence in the Scotland.  The letter is partially redacted.•    We again ask for a fully unredacted copy of this letter.On July 16, 2009, Minister MacAskill wrote to the UK Secretary for Foreign and Commonwealth Affairs to ask for clarification regarding whether the UK made an agreement with the US that Mr. al-Megrahi would serve his entire sentence in the Scotland.  While the UK wrote a letter on July 3rd saying no such agreement existed, Secretary MacAskill noted that the Foreign and Commonwealth Office did not provide any documentation to support this view.  The document is heavily redacted.•    We again ask for a fully unredacted version of the letter.•    What conversations were held between Scottish officials and UK Foreign and Commonwealth Office between May 5 and July 6, 2009?On July 31, 2009, Qatari Minister for International Cooperation and Acting Minister of Business and Trade Khalid bin Mohammed al-Attiyah wrote to Secretary MacAskill regarding al-Megrahi.\n•    This correspondence is missing.  We ask for a copy of this letter.\nIn closing, we highlight two final issues you raised in your letter.  First, you asked us to confirm that the allegation that BP influenced Scottish Ministerial decisions as related to al-Megrahi’s release is without foundation.  Unfortunately, the record of facts is incomplete and we are left with circumstantial evidence that shows commercial influences likely played a role in the release of al-Megrahi.  We certainly know that BP lobbied the UK Government in 2007 regarding the Prisoner Transfer Agreement (PTA), fearing that delay in ratification could have a “negative impact” on BP’s exploration agreement with Libya.[22]  Former UK Ministers Miliband and Straw have both gone on the record stating that trade – most especially the BP / Libya deal – was a major consideration as they and your government negotiated the particulars of the PTA with Libya. [23] [24]   Indeed, dozens of letters confirm that both you and Secretary MacAskill were in constant contact with these and other UK officials during the same period of time regarding the same issue – al-Megrahi and the PTA.  While we acknowledge that your government made clear your opposition to al-Megrahi being included in the agreement, we also note your March 18, 2008 letter to then-UK Minister Jack Straw.  You concluded the letter by stating that your Scottish Government would “simply have to deal with the consequences” of the failure to exclude al-Megrahi from the PTA.[25]  What is now uncertain is how your government dealt with those consequences.  Predictably, this is an outcome of releasing redacted documents and not allowing sworn testimony by critical witnesses as chosen by an independent investigator with subpoena authority who is fully supported by your and Prime Minister Cameron’s governments.  It is also an outcome of your government’s unwillingness to review whether a decision to release al-Megrahi was in fact correct when faced with the fact that he is still alive one year after release.  An admission of error of judgment and fact would be a critical step in the right direction in repairing relations with the families and in building a better precedent for future considerations of similar cases.  We call on you to do so.Finally, you noted in your last letter that Scottish Ministers are accountable only to the Scottish Parliament and people.  We absolutely concur and would find it unacceptable to suggest anything else.  Indeed, the rightful pride of the Scottish people is that they can demand accountability of their government.   However, as has been outlined above, there is an abundance of outstanding issues that you are unable to address when questioned by the Scottish people, let alone the US Senators who are representing the concerns of the families of 189 American victims.  The fact remains that the people of Scotland, the people of the UK, and indeed families in 21 nations that lost loved ones deserve to have full disclosure of all facts related to the mistaken release of al-Megrahi.  \nUntil the Scottish and UK governments launch a truly independent and comprehensive investigation, we will continue to work aggressively on behalf of the families that we represent.  Sincerely,\nROBERT MENENDEZFRANK R. LAUTENBERGCHARLES SCHUMERKIRSTEN E. GILLIBRANDUnited States Senators\nAugust 19, 2010\nThe Right Honorable David Cameron MP10 Downing StreetLondon SW1A 2AAUnited Kingdom\nDear Prime Minister Cameron,\nWe appreciate the letter dated August 18 from Mr. Dominick Chilcott, Charge d’ Affaires at the British Embassy in Washington DC.On August 20, 2010, the world will observe the one year anniversary of the release of an unrepentant terrorist, Abdelbaset Ali Mohmed al-Megrahi.  You have rightly said that the Scottish decision to release al-Megrahi was “completely and utterly wrong.”[26]  The families of the 270 victims, and those of us who represent them in their respective governments, could not agree more.  You have been firm in your resolve to correct this error of fact and judgment, saying that \"\"the time has come for an independent inquiry led by a former permanent secretary or former judge\"\"[27]  Indeed, the time has come.  We support your commitment to the full disclosure of all facts surrounding the release of al-Megrahi.  Yet, it is with deep regret that we note the passage of nearly one year since you made your demands for such an inquiry with no result, save for the release of some heavily redacted documents.  While the families in 21 countries wait for your independent inquiry to be launched, more questions arise as to the merits of al-Megrahi’s release.   For instance, the prospective role of commercial concerns influencing the UK and Scottish Governments has only become more pronounced.  We certainly know that BP lobbied the UK Government in 2007 regarding the Prisoner Transfer Agreement (PTA), fearing that delay in ratification could have a “negative impact” on BP’s exploration agreement with Libya.[28]  Then-UK Ministers Miliband and Straw have both gone on the record stating that trade – most especially the BP / Libya deal – was a major consideration as they and the UK government negotiated the particulars of the PTA with Libya. [29] [30]  Based on these public statements alone, the families of the victims are quite right to question the merits and motivation of releasing al-Megrahi and call for an independent investigation.Additionally, UK Secretary William Hague has said that during the time of negotiations with Libya on the PTA, BP held three discussions with Foreign Secretary Jack Straw between October and November 2007 and had at least two contacts between BP and Prime Minister’s Foreign Policy Advisor during the same period.  Secretary Hague also mentioned contacts between BP and the UK Ambassador to Tripoli.[31]  Unfortunately, we have yet to receive exhaustive, unredacted copies of documents, notes, and correspondence that fully disclose who was involved, what was discussed, and what was promised during these meeting.  Thus, we again ask for your government to expedite our continuing request to publically air all documentation around meetings, discussions, or correspondence between the UK and all commercial entities or representatives that were seeking business in Libya from 2003 forward.  In addition to the above request, there are several specific examples from publically released documents that call for disclosure on an expedited basis.  On June 22, 2009, Scottish Deputy Director of Criminal Justice Directorate George Burgess wrote the unnamed head of the North Africa Team for the Foreign and Commonwealth Office requesting clarification regarding whether the UK made an agreement with the US that al-Megrahi would serve his entire sentence in the Scotland.  The letter is partially redacted.We ask that your government authorize the Scottish Government to release this letter in an unredacted format.  We also ask that you provide us your government’s version of the letter to ensure we have received the same document without alterations.There is a second letter, dated July 16, 2009, which notes an exchange between Scottish Cabinet Secretary for Justice Kenny MacAskill and the UK Secretary for Foreign and Commonwealth Affairs.  Secretary MacAskill wrote to ask for clarification regarding whether the UK made an agreement with the US that al-Megrahi would serve his entire sentence in Scotland.  While the UK wrote a letter on July 3rd saying no such agreement existed, Secretary MacAskill noted that the Foreign and Commonwealth Office did not provide any documentation to support this view.  The letter in question is heavily redacted.We ask that your government authorize the Scottish Government to release this letter in an unredacted format.  We also ask that you provide us your government’s version of the letter to ensure we have received the same document without alterations.In closing, we again make clear our goals for our inquiries:  first, the families of the victims must have full disclosure of all of the facts surrounding al-Megrahi’s release.  The UK should release or authorize the release of all primary documents, notes, and correspondence that fully disclose the meetings, discussions, or correspondence between the UK, Libyan officials, and UK commercial entities or representatives that were seeking business in Libya from 2003 forward.\nSecond, we again call for a comprehensive, independent investigation with subpoena authority into al-Megrahi’s release, fully supported by the UK and Scottish Governments.  As you rightly noted nearly one year ago, \"\"I don’t think we can now trust the Government to get to the bottom of this so I think the time has come for an independent inquiry led by a former permanent secretary or former judge to find out what more papers need to be released so we can see what the British Government was doing in our name.”[32]  We thank you for your continued consideration as we faithfully and doggedly represent the interests of the 189 American victims killed by al-Megrahi’s actions.  Sincerely,\nROBERT MENENDEZ                                                                                        FRANK R. LAUTENBERGCHARLES SCHUMER                                                                                        KIRSTEN E. GILLIBRANDUnited States Senators\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bc32bb17-84cf-4325-9b15-01d708b0d947,\"Menendez Statement on Appointment of Aponte As Ambassador to El Salvador\n                    \n                      August 19, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, today released the following statement on President Obama’s appointment of Mari Carmen Aponte as U. S. Ambassador to El Salvador:\n\n“Mari Carmen Aponte is a talented, knowledgeable and dedicated public servant who will help strengthen US-Salvadorian relations. I applaud President Obama for this appointment, which will boost US diplomacy in Central America. Republicans in the Senate have deployed a strategy of broadly obstructing presidential appointments in order to grind the people’s business to a halt, and it was tremendously disappointing that they chose to delay Ms. Aponte’s confirmation as part of this strategy. Furthermore, it is shameful that they raised an issue from the distant past, which has been fully answered, to tar Ms. Aponte. If anyone in this chamber would have concerns about a nominee’s ties to and views on Cuba, it would be me. On the contrary, I wholeheartedly endorsed her nomination, and I look forward to her work as Ambassador.”\n\n                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=590161c9-a369-4eb5-a6b9-570a0ffa4f9a,\"Menendez Statement on Full Withdrawal of U.S. Combat Troops from Iraq\n                    \n                      August 19, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today released the following statement as the last U.S. combat troops left Iraq:\n\n“First and foremost, we should continue to thank and honor our troops who have served in Iraq for more than seven years, some who have made the ultimate sacrifice in service of our country. It is because of their bravery and skill that Iraq could be brought back from the brink of a full-on civil war and now has a chance for a peaceful future.\n“This is an important milestone for which many Americans, including myself, have long advocated. History will show that the Iraq War diverted our attention from those who planned the 9/11 attacks, put American sons and daughters in the crossfire of internal Iraqi warfare and is a significant cause of our nation’s record budget deficits. These are reasons that I voted against giving President Bush the authorization for the war in the first place and why I consistently voted to bring our troops back home since then.\n“The lessons of our engagement in Iraq cannot be forgotten in our ongoing efforts to combat terrorist organizations. That is why I support a forceful, targeted military offensive to attack and destroy Taliban and al Qaeda groups along the Afghanistan and Pakistan border. But it is also why I believe that we should resist engaging our troops in a broader, indefinite effort to act as Afghanistan’s de facto national police force.”\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=41e85cee-d7b7-4876-9140-4ba6a7d0a8de,\"Senators Menendez, Lautenberg Announce Nearly $800,000 for NJ Transit Rail Projects in Monmouth, Ocean, Middlesex, and Hudson County\n                    \n                      August 18, 2010\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced that the U.S. Department of Transportation has awarded the NJ Transit Corporation $771,875 in funding to support rail projects in Monmouth-Ocean-Middlesex and Hudson County.\n\n“Mass transit helps save commuters time and money, and it can be a key component to rebuilding our economy,” said Menendez.  “This investment will help NJ Transit lay the groundwork for expanded, more efficient and safer rail service in these counties.”\n “Improving mass transportation in New Jersey will create jobs and provide an environmentally-friendly option for thousands of commuters in New Jersey,” said Lautenberg.  “Modernizing our transportation infrastructure in these communities will provide safe, reliable and efficient transportation options that will attract new ridership and reduce congestion on our roads.”\n\n The $771,875 will be distributed as follows:$534,375 -- Development of an Alternatives Analysis/Draft Environmental Impact Statement for the Monmouth-Ocean-Middlesex project:\nThis funding will help finance the development of research to expand the Hudson-Bergen Light Rail (HBLR) to Route 440 in Jersey City, NJ and support plans for new residential, educational, commercial and retail development in this area approximately one-half mile west of the existing  West Side Avenue HBLR station. Projected changes in population density levels require the study of improved public transportation to support this development. This research is also expected to help in the planning of existing residential, commercial and retails developments. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=561e410c-7b02-4c3a-89bd-37c1cd7eff3f,\"Menendez, Lautenberg Announce $39.7 Million in Recovery Act Funding for New Jersey Wireless Public Safety Network\n                    \n                      August 18, 2010\n                     WASHINGTON, D.C. – U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced New Jersey will receive $39,638,152 in American Recovery and Reinvestment Act (ARRA) funding to help create an interoperable wireless public safety broadband network that will improve how first responders in New Jersey communicate during a police, fire or other emergency situation.  This dedicated network would be for use by public safety entities in New Jersey’s Urban Area Security Initiative region, which includes Bergen, Essex, Hudson, Morris, Union and Passaic counties. The funding, which will be provided by the National Telecommunications and Information Administration  (NTIA) within the Department of Commerce, is expected to improve emergency coordination between 51 public safety agencies and more than 30,000 public safety users.  \n\n“The inability of our first responders to fully communicate and coordinate with each other during an emergency was one of the key hometown security lessons we learned on 9/11,” Menendez said.  “As one of the lead sponsors of legislation to implement the 9/11 Commission’s recommendations, I have championed improvements in these communications systems to keep our communities as secure as possible. Through this Recovery Act investment, we will help ensure that our first responders will have instant information and communication during an emergency, and we will create the jobs needed to build this advanced communications network.”  “On September 11, we learned how important it is for police, firefighters and other first responders to be able to communicate with each other and across jurisdictional boundaries during an emergency situation,” said Lautenberg, who as a member of the Senate Appropriations Committee helped to write the Recovery Act.  “New Jersey is home to the most dangerous two miles in the country for a terrorist attack and it is critical that our first responders have the most advanced technology available to do their jobs safely and effectively.  This Recovery Act funding will help ensure that New Jersey emergency responders have access to the equipment and technology they need to keep us safe and secure.”  \n\nDevelopment of this interoperable broadband network in New Jersey and other states and regions is a critical step towards the deployment of a uniform nationwide interoperable network.  Interoperable broadband technology will benefit New Jersey first responders by providing robust and faster access to streaming video, digital imaging, computer-aided dispatching, mapping, remote database access and other applications.  Sens. Lautenberg and Menendez had previously joined nine members of New Jersey’s Congressional Delegation to send a letter to the Federal Communications Commission supporting the state’s petition to move forward with construction of this regional wireless broadband network.  The FCC approved New Jersey’s petition in May, making today’s grant award possible.      \n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dfe8197c-e234-4b84-ae10-3ed2e18b80cd,\"GAO: Pentagon to Blame for Delay in Cleaning Contamination at Bases, Though Progress has Been Achieved\n                    \n                            Menendez and Lautenberg, joined by Bill Nelson and Cardin, release report\n                    \n                      August 17, 2010\n                     WASHINGTON – A just-released Government Accountability Office report finds that the Department of Defense has been at fault for its lack of cooperation with the Environmental Protection Agency in cleaning up contamination at a number of military bases (link to report: http://www.gao.gov/new.items/d10348.pdf). However, since the struggle between the two departments came to light in 2008 (http://www.washingtonpost.com/wp-dyn/content/article/2008/06/29/AR2008062901977.html), a number of interagency agreements have been struck, which is important to advancing the cleanup process at a number of the sites.\nThe report is a result of a request by U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ), along with Senators Bill Nelson (D-FL) and Benjamin L. Cardin (D-MD). Their action was spurred by revelations that McGuire Air Force Base in New Jersey, Fort Meade in Maryland and Tyndall Air Force Base in Florida were three of the main contaminated installations where the interagency disagreements were slowing cleanup work.\nIn its report, GAO concluded that:\n\n“DOD and its components have environmental responsibilities to EPA as well as responsibilities to the public and the military personnel stationed at its installations. Despite some progress in the early investigative stages made by the installations we reviewed, we believe that DOD, the Air Force, and the Army are not fully upholding these responsibilities at the three installations.”\n\nHowever, GAO also reported that in 2009, interagency agreements between DOD and EPA were signed for cleanup at McGuire and Fort Meade, though such an agreement for Tyndall remains unsigned. These agreements are important, because GAO reported that:\n\n“DOD’s persistent failure to enter IAGs, despite reaching agreement with EPA on the basic terms, has made managing site cleanup and addressing routine matters challenging at these installations.”\n\nOf the 11 DOD sites on the EPA’s National Priorities List for heavily contaminated sites, interagency agreements were signed for seven of them in 2009.\n\n“It is clear that with public and Congressional attention focused on this matter, the Department of Defense dropped its resistance to the agreements that will help ensure sites like McGuire in New Jersey are cleaned thoroughly,” said Menendez. “This is important for protecting the public health of troops stationed in New Jersey and the nearby residents, and I will continue to monitor the progress there. It is also clear from the report that the Department of Defense routinely engages in unproductive bureaucratic turf battles that jeopardize cleanup efforts at some of its most contaminated sites. This is not good for the public health or the environment, and we will be examining ways to ensure that they act in a much more cooperative manner.”\n“We have an obligation to protect the health and safety of our military men and women whether they are fighting overseas or stationed here at home,” stated Lautenberg, an Army veteran and Chairman of the Environment and Public Works Subcommittee on Superfund, Toxics and Environmental Health.  “Our military men and women are trained to face threats, but there is no training that can protect them from exposure to dangerous toxic chemicals in the places where they live and work. I am encouraged that this investigation has led to better coordination between military bases and the EPA, and we will continue our work to make sure these sites are quickly cleaned up.”\n“The Department of Defense should have to comply with environmental laws, just like anybody else,” said Nelson.\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e5fef6ca-5d9f-49e8-a5d7-fefda7de7b6c,\"U.S. Senator Menendez Touts Local Job Training in Clean Energy Sector, Funded by Recovery Act\n                    \n                            Visits Bergen County site where $1 million federal investment will help train 40 workers annually\n                    \n                      August 16, 2010\n                     GARFIELD, NJ  - Today, U.S. Senator Robert Menendez (D-NJ) touted the boost the Recovery Act has given to green-job training for local workers. Appearing at the site of Bergen County Community Action Partnership’s future state-of-the-art vocational training facility, Menendez highlighted a $1 million Recovery Act investment in the organization that is training local workers to boost the energy efficiency of homes and businesses. Menendez was joined by BCCAP’s Executive Director Robert Robert F. Halsch Jr.  and Deputy Executive Director Dr. Allan DeGiulio, as well as students and graduates of the weatherization program. Somers Steelman and Raul Rodriguez, recent graduates of the program were present, as well as their employer, Richard McFarlane, President of  Mc Farlane Insulation.\n\n“This is exactly what federal stimulus funding was designed to do,” said Senator Menendez.  “A local organization receiving a federal investment, creating a training program that prepares area residents for full-time employment in green jobs which are in high demand, and assists homeowners with energy efficiency.  It takes New Jerseyans off the unemployment lines, puts food on the table, and saves energy - a win-win situation for our state.”\n“For over 40 years, Bergen County Community Action Partnership has been the leader in generating energy conservation in Bergen County,” said Bob Halsch, BCCAP Executive Director. “Community Action is excited about the Federal Government’s increased investment in weatherization and commitment to reduce energy costs for our residents.” \n\n\n“This federal effort gives Bergen County the unique opportunity to offer green technology training that includes supervised fieldwork in actual homes being weatherized, while at the same time providing Weatherization services to hundreds of Bergen County homes, thus making them more energy efficient,” added Dr. Allan DeGiulio, Deputy Executive Director.\n\nThe almost $1 million in Recovery Act funding was awarded through the Department of Energy as part of $29 million awarded nationally for Weatherization Training Centers.  This federal funding will also allow for the construction of a state-of-the-art weatherization training center at the Bergen County Community Action Partnership’s (BCCAP) facility in Garfield.  Currently, students receive training in the main building and practice insulation on mock structures in the training center where the press conference was held.  Students also acquire hands-on experience in the field by going out with professionals to area homes undergoing weatherization. An expanded state-of-the-art training facility will become functional in the Fall of 2010 at BCCAP’s facility at 535 Midland Avenue.\nThe BCCAP is currently holding 6 week training sessions.  Current students will graduate August 20.  Eight students have already enrolled for the third training session to commence on August 30. The new Weatherization Training Center will expand the current six-week program to ten weeks this Fall and will follow a nationally recognized DOE curriculum.\nSimultaneously, Bergen County Community Action Partnership (BCCAP) is investing $5 million dollars of federal funds into the local Bergen County area economy to weatherize over 600 homes.  This work is well underway with BCCAP being recognized as the top producer in the State.  Services include furnace repair/replacement, window replacement, attic, wall and foundation insulation, and safety inspections – all with the goal of reducing home fuel costs an average of 20 to 25 percent. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2db3ed65-ea88-45e6-a02b-b8368fbad1e3,\"Menendez, Lautenberg Announce $1.6 Million in Recovery Act Funds for NJ Job Training, Education Programs\n                    \n                            YouthBuild Programs in Paterson, Camden, Trenton, Newark Will Receive Grant Funding\n                    \n                      August 15, 2010\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg announced that a total of $1.6 million will be awarded to four YouthBuild programs in New Jersey to provide job and educational training for at-risk youth and low-income young adults.  The funds will be distributed by the Department of Labor as a result of the American Recovery and Reinvestment Act (ARRA), which was signed into law by President Obama in February 2009.\n\n“The YouthBuild program provides young adults in New Jersey with the opportunity to further improve their education while learning valuable job skills and providing meaningful services in their neighborhoods,” said Lautenberg, who as a member of the Senate Appropriations Committee helped write the Recovery Act.  “The skills, training and education provided by these programs will not only help individuals succeed, they will also strengthen our communities.”\n“This investment will not only help youths who have fallen astray get back on track, it will help them to take part in rebuilding our economy and to emerge as the community leaders of tomorrow,” said Menendez. “It is an investment in our state’s social and economic future.” \n\nIn total, the four organizations will receive $1,625,800 in federal funding to run these programs.  The organizations to be awarded these grants are:\n•    Isles Inc in Trenton - $412,500.•    YouthBuild Newark Inc. in Newark - $412,500.•    New Jersey Community Development Corporation in Paterson - $400,400.•    Housing Authority of the City of Camden in Camden - $400,400.\nYouthBuild programs help young adults acquire their high school diploma or General Education Development (GED) certification while also cultivating job skills by building and renovating affordable housing within their communities.  Participants in the YouthBuild program include those who have been in the juvenile justice system, youth aging out of foster care, high school dropouts and others.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5d15ad41-3196-432c-919a-3a8d2e0df3eb,\"Preventing Another Lehman: Menendez and Colleagues Urge S.E.C. to Require Better Corporate Accounting Disclosure\n                    \n                            Kaufman, Levin, Feinstein, Boxer and Brown join him in asking regulatory agency to enforce off-balance sheet activity transparency \n                    \n                      August 13, 2010\n                     WASHINGTON – U.S. Senator and Banking Committee member Robert Menendez (D-NJ) and 5 of his Senate colleagues are urging the Securities and Exchange Commission to require fuller and more accurate corporate accounting disclosure. In a letter to Commission Chairwoman Mary Schapiro, Menendez and Senators Edward Kaufman (D-DE), Carl Levin (D-MI), Diane Feinstein (D-CA), Barbara Boxer (D-CA) and Sherrod Brown (D-OH) requested that the S.E.C. use existing rulemaking authority from the Sarbanes-Oxley Act to require full disclosure of off-balance sheet activity. \nThis follows a series of incidents in which corporations concealed their debts and financial weakness, ultimately causing them to collapse and hurting investors and the economy. Most notably, Lehman Brothers used an off-balance sheet “Repo 105” transaction to hide its debts and project a more solid financial state than really existed.\n\n“Rather than relying on carefully-staged quarterly and annual snapshots, investors and creditors should have access to a complete real-life picture of a company’s financial situation,” wrote the senators. “The SEC was founded on the premise that when investors and creditors have full and accurate information about companies’ finances, they can allocate capital effectively.  But when companies use accounting gimmicks to mislead investors and creditors, capital markets malfunction.  As we attempt to recover from the latest meltdown, we hope that, in addition to aggressively investigating and prosecuting past misconduct, you will put in place these new rules that will make it harder for companies to mislead investors and creditors in the future.”\n\nPDF of letter to Schapiro: http://menendez.senate.gov/imo/media/doc/20100806ltr_schapiro.pdf\nText of letter:\nAugust 6, 2010\nThe Honorable Mary L. SchapiroChairwomanUnited States Securities and Exchange Commission100 F Street, NWWashington, DC 20549\nDear Chairwoman Schapiro:\nThe financial crisis has taught us a great deal, and we are very pleased that the Dodd-Frank Wall Street reform bill incorporates much of this new wisdom.  It will go a long way toward reducing the frequency and severity of future financial crises.As you set out to implement this new law, we write to address one area that we believe needs particular attention:  how completely and accurately companies disclose their financial information.  Without such disclosure, it is almost impossible for regulators to set appropriate capital and leverage requirements and for investors and counterparties to make wise decisions about where to put their money.\nThis, unfortunately, is a lesson that we should have learned from Enron and the corporate accounting scandals that led to the passage of the Sarbanes-Oxley Act of 2002.  Enron reportedly maintained 3,500 off-balance sheet partnerships on which the company built an elaborate fiction of earnings statements.  The Sarbanes-Oxley Act gave the Securities and Exchange Commission (SEC) the power to require reporting of off-balance sheet activities.\nWhile the SEC did issue rules on off-balance sheet activity pursuant to Sarbanes-Oxley, we are troubled that despite these rules, widespread off-balance sheet accounting arrangements allowed large financial firms to hide trillions of dollars in obligations from investors, creditors, and regulators.  As Frank Partnoy and Lynn E. Turner wrote in a recent report, “Abusive off-balance sheet accounting was a major cause of the financial crisis.  These abuses triggered a daisy chain of dysfunctional decision-making by removing transparency from investors, markets, and regulators.  Off-balance sheet accounting facilitated the spread of the bad loans, securitizations, and derivative transactions that brought the financial system to the brink of collapse.”[1]\nFor example, Citigroup reportedly kept $1.1 trillion worth of assets off its books in various financing vehicles and trusts that were used to handle mortgage-backed securities and issue short-term debt.[2]  State Street shareholders saw their investment value drop by 60% in a single day when hidden off-balance sheet conduits sustained heavy losses under credit turmoil in January 2009.[3]  Neither of these companies adequately disclosed the risks posed by their off-balance sheet activities to investors.  Had they done so, investors and creditors might have made better decisions.\nFor these reasons, we urge the SEC to use its existing authority under Sarbanes-Oxley to require that companies write detailed descriptions of all their off-balance sheet activities in their annual 10K reports (not just those that are “reasonably likely” to affect the firm’s financial condition, as the regulations currently state).  Companies should also explicitly justify why they have not brought those liabilities onto the balance sheet.  Complete disclosure of all off-balance sheet activities is particularly crucial for the largest and most interconnected companies, including both banks and non-banks.  Additionally, we also urge the SEC to encourage the Financial Accounting Standards Board (FASB) to improve financial reporting rules for all types of off-balance sheet activities and to monitor FASB’s efforts to prohibit off-balance sheet financing.\nWe urge the SEC to pay particular attention to the large market for repurchase agreements.  We are concerned by both the risks of using short-term funding for longer-term holdings and that firms may be engaging in these transactions with the intent to hide their true debt and risk levels.  For example, the Lehman Brothers use of the “Repo 105” transaction is particularly troubling.  According to the Lehman Brothers Examiner’s Report conducted by Anton Valukas, Lehman took advantage of accounting rules to temporarily book a loan as a sale, and by carefully timing this transaction just before the release of its quarterly financial report, Lehman was able to deceive the public and regulators into thinking it was much  better capitalized than it actually was.\nMoreover, this may not be limited to Lehman.  According to the Wall Street Journal, “A group of 18 banks—which includes Goldman Sachs Group Inc., Morgan Stanley, J.P. Morgan Chase & Co., Bank of America Corp., and Citigroup Inc.—understated the debt levels used to fund securities trades by lowering them an average of 42% at the end of each of the past five quarterly periods, the data show.  The banks, which publicly release debt data each quarter, then boosted the debt levels in the middle of successive quarters.”[4]\nThose who engaged in fraud in the past must be held accountable under our existing securities fraud statutes.  But we must also look forward. In order to prevent this from happening in the future, we urge the SEC to require disclosure of period end and daily average leverage ratios in quarterly and annual reports.  This would provide useful information to investors and creditors to assist their decision-making processes.  Rather than relying on carefully-staged quarterly and annual snapshots, investors and creditors should have access to a complete real-life picture of a company’s financial situation.\nThe SEC was founded on the premise that when investors and creditors have full and accurate information about companies’ finances, they can allocate capital effectively.  But when companies use accounting gimmicks to mislead investors and creditors, capital markets malfunction.  As we attempt to recover from the latest meltdown, we hope that, in addition to aggressively investigating and prosecuting past misconduct, you will put in place these new rules that will make it harder for companies to mislead investors and creditors in the future.\nSincerely,\nRobert Menendez                                                                                                           Ted KaufmanCarl Levin                                                                                                                             Dianne FeinsteinBarbara Boxer                                                                                                                   Sherrod BrownUNITED STATES SENATORS\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d77d66f9-9fe3-4b17-8870-0f9c0a748ff1,\"$22 Million Allocated to Soundproof Kearny High School\n                    \n                            New Central Air Conditioning, Windows, Doors, Heating and Ventilation \n                    \n                      August 12, 2010\n                     Washington, DC  – U.S. Senator Robert Menendez (D-NJ) joined Representative Steve Rothman (NJ-9) and Sen. Frank R. Lautenberg (D-NJ) today in thanking the Federal Aviation Administration (FAA) for working with them to finally provide the money to soundproof Kearny High School in Kearny, NJ – albeit after two years worth of delays. \n\n“From the classroom to the conference room to the dining room, the constant roar of jet engines can be tremendously disruptive. This investment will help ensure that we keep the airplane noise down around Newark Liberty, which allows the airport to be a better neighbor to the surrounding businesses, communities and families,” said Senator Menendez.\n“Students at Kearny High School need to hear their teachers, not the roar of jumbo jets flying overhead.  This critically needed funding is great news for the students and teachers at Kearny High School and will go a long way in reducing the noise they endure from Newark Liberty Airport,” said Senator Lautenberg.\n“I am so pleased to announce that the Federal Aviation Administration will be allocating $22,030,000 to finally soundproof Kearny High School.  After working with my colleagues, and the Port Authority of New York and New Jersey to ensure that the FAA fulfilled its obligations, I am now proud to announce that construction will begin this year,” said Rep. Rothman. “For far too long the students of Kearny High School have been forced to endure the deafening sound of aircraft landing at and taking off from Newark Liberty International Airport.” \n\nThe 87-year-old Kearny High School, with a student body of 2,000 children, will receive soundproofing funds under the FAA’s Airport Improvement Program. Kearny High School is located just five miles from Newark Liberty International Airport, where there have been more than one million flights since 2007. The $22,030,000 in federal funding will be used to support the ongoing efforts at the school to mitigate the impact of aircraft noise. This includes such measures as the installation of state of the art, central air conditioning, as well as the soundproofing of all windows and doors, plus new heating and ventilation. \n\n“Learning is hard enough without the roar of jet engines overhead and I thank Senator Lautenberg, Senator Menendez, the FAA, and the Port Authority for their help in making this project a reality,” said Rep. Rothman. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c5cf1ed4-e089-47b9-8879-f484decb2070,\"Senators Menendez, Lautenberg Announce Funding to Combat Gang and Drug Violence in New Jersey\n                    \n                      August 11, 2010\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced that the New Jersey Department of Law and Public Safety and the City of Trenton will receive a total of $383,551 in funding from the U.S. Department of Justice (DOJ) to finance two local law enforcement and public safety programs.  The New Jersey Department of Law and Public Safety will sponsor Project Safe Neighborhoods (PSN), a program intended to reduce gun crime and link local programs.  The City of Trenton will fund the Greater Donnelly Weed and Seed site, a neighborhood in the North Ward of Trenton that provides resources to reduce violent and drug-related crimes, prevent gang activity and improve coordination between Federal, state and local agencies.\n\n“Through this investment, we can help law enforcement crack down on gangs and crime, protecting our families and keeping communities safe,” said Menendez.  “These programs will combat gang and drug violence, increase community policing, and create safe drug-free environments, which in turn, will reduce instances of juvenile crime.”\n\n\n“This federal funding will help law enforcement throughout the state get tougher on gangs and gun crime in our neighborhoods,” stated Lautenberg.  “We are also providing continued funding for an important community initiative in Trenton that is working to reduce crime, increase services and improve neighborhoods.” \n\nThe $383,551 in funding will be distributed as follows: $ 226,551 – New Jersey Department of Law and Public Safety Project Safe Neighborhoods – Through comprehensive, coordinated and community-based initiatives, Attorney General Paula Dow will lead the project. PSN seeks to achieve heightened coordination among federal, state, and local law enforcement; and emphasizes tactical intelligence gathering, more aggressive prosecutions, and enhanced accountability through performance measures. The New Jersey Department of Law and Public Safety, which serves as the fiscal agent for the project, will use the grant to combat both gun and gang crime. The prosecutor's offices for the counties of Camden, Essex, Hudson, and Mercer will each use the grant to fund an assistant prosecutor who will spend their time dedicated to the prosecution of PSN cases. In addition, Mercer and Passaic Counties will support a juvenile PSN component, selecting high-risk juveniles (gang affiliated or violent crime offenders) to receive enhanced supervision through partnerships with police, probation, and parole officers. The targeted juveniles will be placed in an intensive case management system that provides individualized social services. $157,000 – City of Trenton The Greater Donnelly Weed and Seed Site – The North Ward Neighborhood in the City of Trenton gained official recognition in June 2006.  This is the site’s fifth and final award to implement its strategy to reduce violent and drug-related crimes in the area.  The project supports law enforcement efforts that improve coordination between Federal, state and local law enforcement agencies, while reducing gang activity.   \nAccording to the DOJ, Community policing goals include reducing residents' fears in regards to increased police involvement and activities in the neighborhood and reducing the incidence of youth crimes in the designated area. Prevention, intervention, and treatment goals include developing and expanding opportunities for youth to access a safe and secure drug-free environment within the Greater Donnelly multiservice Safe Haven. Neighborhood restoration goals include improving opportunities for homeownership, business development, and land redevelopment.                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e9591d59-0876-49c7-b2bf-e0f4e3ef2db9,\"Menendez, Lautenberg Announce $112 Million in Emergency Foreclosure Prevention for Unemployed NJ Workers\n                    \n                            NJ one of 17 states included in “Hardest Hit” program to keep struggling families in their homes\n                    \n                      August 11, 2010\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced that unemployed New Jersey workers will be eligible for a total of $112,200,638 in emergency assistance to help prevent foreclosures.  The federal Hardest Hit Fund, which makes funds available for programs to help homeowners struggling to make their mortgage payments due to unemployment, is being expanded to 17 states, and New Jersey is one of them.\n\n“Being laid off through no fault of your own and losing your home as a result is a devastating one-two punch for any family,” said Menendez, who is the Chairman of the Senate Banking Subcommittee on Housing, Transportation and Community Development. “This investment keeps families affected by layoffs afloat on an emergency basis in a tough jobs market. It also prevents an additional wave of foreclosures, which would undercut the economic recovery neighborhood by neighborhood, community by community.”\n“This critical federal funding will provide much-needed assistance to New Jerseyans who have lost their jobs and are fighting to keep a roof over their head,” said Lautenberg.  “Preventing foreclosures will keep families in their homes, benefit our local communities, and help rebuild our economy.”\n\nThis federal funding, totaling $2 billion among the 17 states and the District of Columbia, will arrive through the existing Housing Finance Agency (HFA) Innovation Fund for the Hardest Hit Housing Markets (the “Hardest Hit Fund”). Additionally, the U.S. Department of Housing and Urban Development (HUD) will soon launch a complementary $1 billion Emergency Homeowners Loan Program to provide assistance – for up to 24 months – to homeowners who are at risk of foreclosure and have experienced a substantial reduction in income due to involuntary unemployment, underemployment, or a medical condition.\nPresident Obama first announced the Hardest Hit Fund in February 2010 to allow states hit hard by the economic downturn flexibility in determining how to design and implement programs to meet the local challenges homeowners in their state are facing.  \nUnder the additional assistance announced today, states eligible to receive support have all experienced an unemployment rate at or above the national average over the past 12 months. Each state will use the funds for targeted unemployment programs that provide temporary assistance to eligible homeowners to help them pay their mortgage while they seek re-employment, additional employment or undertake job training.\nStates that have already benefited from previously announced assistance under the Hardest Hit Fund may use these additional resources to support the unemployment programs previously approved by Treasury or they may opt to implement a new unemployment program.  States that do not currently have Hardest Hit Fund unemployment programs must submit proposals to Treasury by September 1, 2010 that, within established guidelines, meet the distinct needs of their state.    \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7f55d74d-6345-4611-a2cd-b812ffdc309e,\"Menendez, Lautenberg Announce $13.5 Million in Federal Homeless Assistance Grants for New Jersey\n                    \n                      August 10, 2010\n                     WASHINGTON, D.C. – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced New Jersey will receive $13,542,890 in federal grant funding from the U.S. Department of Housing and Urban Development (HUD) to assist homeless men and women in New Jersey access housing opportunities.   \n\n“This federal funding will help homeless men and women in New Jersey with the assistance and services they need to gain access to housing,” stated Lautenberg.  “With this funding, we can help provide new opportunities to some of the state’s most hard pressed families and put more New Jerseyans in decent homes.”\n“During these tough economic times, with a tight jobs market and high foreclosure rate, it is important for our state’s families and economy that those who are struggling the most can stay afloat,” said Menendez, Chairman of the Banking Subcommittee on Housing, Transportation and Community Development.  “This investment will help these families gain stability and community-based support services to start on a path out of homelessness and into a more prosperous future.”\n\nIn all, 41 grants were awarded to agencies all across the state, including some programs receiving multiple awards.  The nearly $13.5 million in federal grants were awarded in New Jersey as follows:\n•    $420,000 to AIDS Resource Foundation for Children for the Roseville Manor Phase II project.•    $206,702 to the Cape May County Board of Social Services.•    $27,302 for the Cape May County permanent housing bonus.•    $179,400 for the Cape May County Shelter and Care project.•    $41,074 to the Center for Family Services Inc. for the Mother-Child Permanent Housing project.•    $950,020 to the city of Trenton.•    $400,000 for the Perry Street Permanent Supportive Housing project.•    $550,020 for the Housing First project.•    $2,675,943 to Collaborative Support Programs of New Jersey for efforts in Camden, Atlantic, Essex and Ocean counties.•    $276,900 for the Atlantic County Jewish Family Services program.•    $396,300 for Camden Housing First.•    $604,560 for the Essex COL Permanent Supportive Housing program.•    $805,680 for the Essex County Mental Health Association•    $228,780 for the Ocean County Jay Street Shelter Plus Care program.•    $363,723 for the Ocean County mental health services leasing program.•    $395,220 to the Monmouth County Ray of Light Extension.•    $400,000 to the Essex County Empowerment Corporation for the Essex Empowerment Supportive Housing program.•    $2,662,860 to the Bergen County Housing Authority for its Housing Works program.•    $2,082,960 to the Jersey City Housing Authority.•    $631,200 to the Live United Housing program.•    $1,136,160 for the Hoboken Shelter Plus Care program.•    $315,600 for the Youth Consultation Services Shelter Plus Care program.•    $569,880 to the Edison Township Housing Authority for the Triple C Housing First program.•    $28,904 to Making it Possible to End Homelessness for the Imani Park Graduate Leasing project.•    $829,000 to the Mental Health Association of Essex County Inc. for the Newark project.•    $1,322,820 to the Passaic County Department of Human Services for the Passaic County Housing First project.•    $30,560 to the Somerset Home for Temporarily Displaced Children for the Bridge House project.•    $575,729 to the Start Easy Eagle Development Corp. for the Sussex and Essex Cares projects.•    $30,973 to the Lester A. Behavioral Health Center Inc. for its permanent housing project.•    $79,080 to the United Way of Hudson County for its Live United Housing program.•    $241,165 to the Warren County Housing Authority for the Future Promise project.\nThe Continuum of Care Homeless Assistance competitive programs provide funding for a range of assistance to homeless persons, including transitional housing, permanent housing and a variety of supportive services.  The Continuum programs included in this grant announcement are the Supportive Housing Program (SHP) and Shelter Plus Care Program (S+C).  SHP is designed to develop housing and services that allow homeless men and women to live as independently as possible.  S+C provides rental assistance for hard-to-serve homeless persons with disabilities in connection with supportive services.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9ca6d97f-2b18-4f0f-85bb-89e895316cdd,\"Senators Request Release of Lockerbie Bomber's Medical Records\n                    \n                            Menendez, Gillibrand, Lautenberg and Schumer also write to Scottish government for list of al-Megrahi’s doctors\n                    \n                      August 10, 2010\n                     WASHINGTON – Amid growing questions about the medical prognosis given to Pan Am Flight 103 bomber Abdelbaset al-Megrahi that allowed his release from a Scottish prison on compassionate grounds, U.S. Senators Robert Menendez (D-NJ), Kirsten Gillibrand (D-NY), Frank Lautenberg (D-NJ) and Charles Schumer (D-NY) today requested the disclosure of al-Megrahi’s full medical records. In a letter to Scottish First Secretary Alex Salmond, the senators asked the Scottish government to provide the full medical information or to request al-Megrahi’s permission to release the information, if such permission is necessary. In addition, the senators asked the Scottish government for the names, medical training and specializations of the doctors who examined al-Megrahi.\n\n“We understand that an extensive medical record was used as the basis of the decision to release Mr. al-Megrahi, but only one three-page medical document with redactions has been released by the Scottish government,” wrote the senators. “Independent examination of Mr. al-Megrahi’s complete medical record is necessary in order to understand the circumstances surrounding his compassionate release.  As you know, this matter is of the utmost importance to many Americans, especially the families of the 189 American victims aboard Pam Am Flight 103.\n“A more complete medical record may help us understand exactly what Mr. al-Megrahi’s treatment options were and thereby help clarify questions about his prognosis.”\n\nIn releasing al-Megrahi from prison nearly one year ago, Scottish Justice Secretary Kenny MacAskill cited a medical prognosis that terminal prostate cancer had left al-Megrahi with three months to live. However, information subsequently released by the Scottish government implies that a team of medical specialists never agreed to that prognosis. Recent news reports have suggested that the prognosis may have been based on the opinion of a single primary care doctor at the Greenrock prison where al-Megrahi was kept.\nMenendez is leading an investigation into the release of al-Megrahi and will chair a Senate Foreign Relations Committee hearing on the matter.\nPDF of letter to Salmond: http://menendez.senate.gov/imo/media/doc/20100810ltr_alMegrahimedical.pdf\nText of letter:\n                                                                                      August 10, 2010\nRt Hon Alex Salmond MSPFirst Minister of ScotlandSt Andrew's House, Regent Road, Edinburgh EH13DGT: 0845 7741741\nDear First Minister Salmond,\nWe have received your responses to our previous letters and appreciate your willingness to answer additional questions.  Based on new reports that have raised such additional questions, we are writing today to ask for the release of all medical documentation for Abdelbaset Ali Mohmed al-Megrahi while under Scottish care and after.  We are hopeful you will be able to help and look for your assistance in fulfilling this important request.\nWe understand that an extensive medical record was used as the basis of the decision to release Mr. al-Megrahi, but only one three-page medical document with redactions has been released by the Scottish government.  Independent examination of Mr. al-Megrahi’s complete medical record is necessary in order to understand the circumstances surrounding his compassionate release.  As you know, this matter is of the utmost importance to many Americans, especially the families of the 189 American victims aboard Pam Am Flight 103.\nIf permission from Mr. al-Megrahi is required for the Scottish government to release personal medical documents, we respectfully ask that the Scottish government request his permission to release these records and the monthly updates on his condition that he provides Scottish authorities. \nIn addition, we request that the Scottish government release the full names, medical training and specialization of all of the doctors who examined Mr. al-Megrahi, as well as the details about each doctor’s role in the final medical assessment.  Without full information about the medical specialists involved in the decision, it is impossible to evaluate and understand the basis for the compassionate release decision. \nIt is clear that there was no consensus among specialists treating al-Megrahi’s prostate cancer that he had only three months to live.[1]  The medical progress report from August 10, 2009[2] reveals that “whether or not prognosis is more or less than 3 months, no specialist ‘would be willing to say.’”  The lack of consensus and clarity from any of the specialists involved is very troubling, especially the lack of confidence on the part of the treating oncologist, who was the most qualified to assess the worsening of Mr. al-Megrahi’s condition. \nIn Mr. al-Megrahi’s compassionate release application in July 2009,[3] under the section “Treatment,” he reported that he had recently consulted with an oncologist about undertaking a course of palliative chemotherapy.  However, the official Scottish medical summary has no reference to chemotherapy.  A more complete medical record may help us understand exactly what Mr. al-Megrahi’s treatment options were and thereby help clarify questions about his prognosis.\nThank you again for your cooperation and your ongoing assistance on this vitally important matter. \nSincerely,\nROBERT MENENDEZKIRSTEN E. GILLIBRAND                 FRANK R. LAUTENBERGCHARLES SCHUMERUnited States Senators\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=740548c6-c603-47a9-8747-4889932c1fbf,\"Menendez Statement on Final Passage of School, State Budget Relief Bill\n                    \n                            Legislation estimated to deliver nearly $700 million for New Jersey\n                    \n                      August 10, 2010\n                     WASHINGTON – Today, the U.S. House of Representatives gave final passage to legislation meant to prevent teacher layoffs and buoy state budgets, which  the U.S. Senate passed last week. The legislation is estimated to deliver $270 million to New Jersey schools and $400 million to the state in Medicaid funding, which will help to avoid possible cuts to services. It is fully paid-for, in large part by ending tax breaks for CEOs that ship American ship jobs overseas. It now heads to President Obama to be signed into law.\nU.S. Senator Robert Menendez (D-NJ) is a strong supporter of the legislation and released the following statement:\n\n“This is an investment meant to help keep New Jersey public school class sizes manageable and to keep good teachers in the classroom instead of the unemployment line. This will also help provide the state with broader budget relief to avoid cuts in essential services and to help keep police and firefighters on the job. By ending tax breaks for corporations that ship American jobs overseas, these crucial investments are being delivered in a manner that doesn’t burden taxpayers and that helps keep jobs in the U.S.”\n\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ba6c312d-56d8-4c30-b863-6f240c96fc1e,\"Senators Menendez, Lautenberg Announce Energy-Efficient Housing Partnership Funding for New Jersey\n                    \n                      August 9, 2010\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced that the U.S. Department of Energy (DOE) will provide funding to the Building America Retrofit Alliance (BARA) led by the New Jersey Institute of Technology (NJIT) located in Newark, New Jersey and Building Media, Inc. (BMI) of Delaware to conduct research on innovative energy efficiency strategies that brings sustainable homes within reach for all Americans. Through this partnership, NJIT and BMI will provide technical assistance to retrofit projects, create more jobs, reduce carbon pollution and help families save money on energy bills. \n\n“This investment can help cut energy costs for homeowners and create jobs while promoting cleaner air for our families,” said Menendez, a member of the Energy & Natural Resources Committee. “The NJIT team will provide training and outreach services that will in turn, create more energy-efficient communities throughout New Jersey.” “This investment will put one of New Jersey’s leading research institutions at the forefront of developing energy efficient homes that will help cut costs for families and improve the environment,” said Lautenberg, who is a member of the Senate Environment and Public Works Committee.  “The project will lay the groundwork for long-term energy savings and pollution reduction that will help families in New Jersey and across the country save money and breathe cleaner air.”\n\nThis effort will support the Department of Energy’s Retrofit Ramp-Up Initiative, announced by Vice President Joe Biden in April, which brings energy-efficiency upgrades to neighborhoods throughout the nation by creating partnerships among communities, private sector companies, nonprofit organizations and the government.\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=715aa997-2af6-42fc-9223-5f481a88c2db,\"Senators Continue Investigation into Release of Lockerbie Bomber, Pose Specific Questions to UK Foreign Minister\n                    \n                            Gillibrand, Menendez, Lautenberg, Schumer Ask Whether BP, UK Economic Interests Played Any Role in al-Megrahi’s Release\n                    \n                      August 6, 2010\n                     Washington, DC – In a letter to the Foreign Secretary of the United Kingdom, William Hague, U.S. Senators Kirsten Gillibrand (D-NY), Bob Menendez (D-NJ), Frank Lautenberg (D-NJ) and Charles E. Schumer (D-NY) continue to push for details related to the release of Abdelbaset al-Megrahi. The letter is part of an investigation the Senators have launched into whether BP and other British business interests played any role in the decision to release the convicted terrorist.\n\n“As we have previously said, our concern is due not only to our compassion for American and other nations’ victims and their loved ones, but also to our concern that if justice for victims of terrorism is undermined in this case, it may be placed at risk in future cases,” the Senators write. “Therefore, we lay out for you the facts that leave a strong public impression that trade interests won out over justice.  It would behoove all of us if you can bring greater transparency to these matters.”\n\nThe Senators’ full letter:\nThe Right Honorable William Hague, MPForeign & Commonwealth OfficeKing Charles StreetLondon SW1A 2AH\nDear Foreign Secretary,\nWhile we are disappointed with your government’s decision to not appear before the U.S. Senate Foreign Relations Committee, we appreciate your continued engagement with our offices so that we may understand the full reasoning behind the release of Mr. al-Megrahi to freedom in Libya.  As we have previously said, our concern is due not only to our compassion for American and other nations’ victims and their loved ones, but also to our concern that if justice for victims of terrorism is undermined in this case, it may be placed at risk in future cases.  Therefore, we lay out for you the facts that leave a strong public impression that trade interests won out over justice.  It would behoove all of us if you can bring greater transparency to these matters.1.    In your July 22, 2010 letter to Chairman Kerry, you state that “the final veto on any transfer or release of any prisoner in Scotland always rests with Scottish Ministers.”  However, we understand that given that foreign policy matters are specifically reserved for the United Kingdom, rather than Scotland, the UK could have prevented Mr. al-Megrahi from being transferred to Libya even if he were released from prison.  Is that true, and did the absence of a UK protest to Mr. al-Megrahi’s overseas transfer indicate that the UK favored his release? 2.    In fact, it appears that the UK government was concerned that a failure to release Mr. al-Megrahi would hurt British business interests.  Then Foreign Secretary Miliband stated “British interests, including those of UK nationals, British businesses, and possibly security co-operation, would be damaged – perhaps badly – if Megrahi were to die in a Scottish prison.”  Wouldn’t such a statement from the Foreign Secretary influence Scottish Ministers charged with the task of deciding Mr. al-Megrahi’s fate? 3.    Additional public documents also lead to the conclusion that the decision to send Mr. al-Megrahi to Libya was motivated by trade considerations.  This was made explicit in a letter from Lord Trefgarne to Minister MacAskill, which specifically urges Mr. al-Megrahi’s release, based on any process available.  Lord Trefgarne is writing both as a Member of the House of Lords and Chairman of the Libyan British Business Council, which included BP in its top level membership.  His prior involvement in the authorization of arms sales to Iraq when he had served as a Cabinet Minister – an affair that led to an inquiry by your Parliament – adds to the public pall over this entire matter.[i] Despite the fact that Minister MacAskill wrote back that the arguments posed by Lord Trefgarne would not be grounds for the Scottish decision making, isn’t the Trefgarne letter further evidence of UK pressure on Scottish authorities to release Mr. al-Megrahi based on business considerations? 4.    Furthermore, an examination of British-Libyan trade and investment interests before and after the al-Megrahi release provides a picture of increased economic cooperation.  For example, six months after his release, the Libyan Investment Authority (LIA) announced plans to invest 5 billion pounds ($8 billion) in the U.K. [ii]  Within a week of the decision, LIA opened an office in London.[iii] According to UK Trade and Investment (UKTI), the government body that promotes trade between Britain and other countries, British exports to Libya was worth £423m in 2009 – 51 per cent more than in 2008.[iv] These trends, along with BP’s $900 million drilling agreement off Libya’s coast, leave a very negative impression about motivations behind Mr. al-Megrahi’s release to Libya.  Isn’t it true that the release of Mr. al-Megrahi did, in fact, lead to further economic cooperation between British business interests and Libya?  Weren’t these the same business interests cited by then Foreign Secretary Miliband and Lord Trefgane as reasons to release Mr. al-Megrahi?  This evidence when viewed along with BP’s admitted lobbying for a Prisoner Transfer Agreement between the UK and Libya leave a clear impression that trade was a central consideration in the UK government’s efforts to influence the decision to enter the Prisoner Transfer Agreement and to influence the decision to ultimately release Mr. al-Megrahi. Is that correct?5.    Furthermore, UKTI representatives’ negotiations with Libyan army and Libyan arms procurement officials to discuss potential military equipment deals increased around the time of Mr. al-Megrahi’s release, and British arms sales to Libya increased thereafter.[v]  This suggests that in its dealings with Libya the UK government might have been motivated by the desire to sell military equipment in addition to energy interests.  Is that correct?   We hope you appreciate our request to bring more light to these decisions and events surrounding them in an effort to improve our ability to guard against potential future efforts to circumvent justice in such critical national and international security cases.\n[i]  Mark Phythian, “Hutton and Scott: A Tale of Two Inquires,” Parliamentary Affairs, Vol. 58 No. 1, 2005, pp. 124-137.\n[ii]  Robert Hutton, “Libya Plans $8 Billion Investment in U.K., Official Tells Brown,” Bloomberg News, February 22, 2010.\n[iii]  Robert Mendick, “Special Report: the Libya Investment Firm and the Release of the Lockerbie Bomber,” Telegraph, July 24 2010.\n[iv] Alistair Dawber, “Britain and Libya Become Best of Friends in Business,” The Independent, June 16 2010.\n[v] Ben Quinn, “Lockerbie Bomber's Release Linked to Surge in UK Arms Deal Talks,” The Guardian, July 15 2010.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a4085ef1-5b12-4eb4-83e9-e655be3d7d7c,\"Menendez Statement on Reports of Possible Easing of Cuba Travel Restrictions\n                    \n                      August 6, 2010\n                     WASHINGTON – Today, US Senator Robert Menendez (D-NJ) released the following statement on reports of possible easing of Cuba travel restrictions: \n\n\"\"This is not time to ease the pressure on the Castro regime -- they have made no significant concessions that should be rewarded. In the last year, a fellow American has suffered and languished in a Cuban cell for the mere fact that he promoted the free exchange of information among Cuba's repressed religious groups. To the horror of the rest of the world, the Castro regime allowed a Cuban dissident to die during his pro-democracy hunger strike. And during the past year another hunger striker has gone on life support, while the 52 political dissidents the regime said it would expelled abroad have not been freed.”\n\"\"Promoting travel and wide-spread remittances will give the regime a much-need infusion of dollars that will only allow the Castro brothers to extend their reign of oppression and human rights violations. Furthermore, the big corporate interests behind the push to relax the embargo couldn’t care less about whether the Cuban people are free or not -- they only care about padding their profits by opening up a new market. Those who lament our dependence on foreign oil because it enriches regimes in places like Iran should not have a double standard when it comes to enriching the Castro regime, simply because Cuba offers white sand beaches 90 miles from our coast.\"\"\n\n                                                                                                                                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fdec5aa9-931f-4780-a14f-4030e565ce9f,\"Menendez Hails Senate Passage of Teacher, State Budget Relief\n                    \n                            Legislation estimated to deliver nearly $700 million for New Jersey\n                    \n                      August 5, 2010\n                     WASHINGTON – Today, legislation meant to prevent teacher layoffs and buoy state budgets passed the U.S. Senate today after Democrats broke a Republican obstruction attempt yesterday. The legislation is estimated to deliver $270 million to New Jersey schools and $400 million to the state in Medicaid funding, which will help to avoid possible cuts to services. It is fully paid-for, in large part from ending tax breaks for CEOs that ship American ship jobs overseas.\nU.S. Senator Robert Menendez (D-NJ) is a strong supporter of the legislation and released the following statement:\n\n“Many New Jersey parents have expressed to me their concern that slashing teacher jobs will make class sizes unmanageable and take good educators out of the classroom. This is an investment to help address those concerns. In addition, by providing significant budget relief to our state, we are helping to prevent the need for cuts in basic services and to help keep police and firefighters on the job protecting communities. These are the types of investments that help our children fulfill their potential, that help keep our communities safe and that help avoid undercutting our economic recovery. We are not only supporting our families and communities, but we are protecting taxpayers and American jobs in doing, paying for this by ending tax breaks for corporations that ship American jobs overseas.”\n\n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a873876c-c6c4-4b1a-8cac-5cd0f1f10cab,\"Menendez Hails Confirmation of Kagan to Supreme Court\n                    \n                      August 5, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today voted to confirm Elena Kagan as the next Justice of the U.S. Supreme Court. Her nomination was approved by a 63-37 vote. After the vote, Menendez released the following statement:\n\n\"\"Today, we have added another eminently-qualified justice to the nation's highest court. Ms. Kagan’s intelligence and level-headedness will strengthen our nation’s judicial system and the rule of law, and her confirmation gives us a Supreme Court that is now even more representative of the American people as a whole. We should not allow the lack of controversy surrounding her confirmation to diminish the importance of this moment or the attention given to it. In fact, the ease of her confirmation process is a testament to her experience and abilities, and it bodes well for the contributions she will make to our judicial system.”\n\n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f2c79c15-8489-4a2d-99e9-e8642918ffbc,\"Menendez, Lautenberg Announce $6 Million for History Teachers\n                    \n                            The Teaching American History Grant program allows educators from Camden to Ridgewood to expand their knowledge of American History   \n                    \n                      August 4, 2010\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) today announced that seven New Jersey public school systems will receive a total of $5,787,203.00 for teaching American History. The U.S. Department of Education has awarded Bridgeton, Camden, Ridgewood, Linden, West Orange, Ewing, and Allamuchy the federal funding so that teachers can expand their knowledge of traditional American History and raise student achievement. \n\n“Our nation’s history is a key component to our children’s education, and these investments will ensure that New Jersey teachers can keep American history alive in their classrooms,” said Menendez. “A full understanding of our past helps ensure that our next generation of leaders can create achieve progress in the future.”\n“Keeping America’s rich history alive in our classrooms is critical to ensuring that the next generation learns from the past,” Lautenberg said.  “This federal funding will give teachers across the state access to resources that will enhance the learning experience for their students and provide new opportunities for them to excel in the classroom.”\n\nThe Teaching American History Grants program awarded by the U.S. Department of Education will be for a period of 5 years. This grant program fills in the gaps for many teachers that have had little exposure to American historical content in their educational backgrounds. The federal funding assists Local Education Associations partner  with relevant entities to help teachers develop a deeper understanding and appreciation of U.S. History resulting in improved student comprehension. \nThe following New Jersey School systems were awarded Teaching American History Grants:\nRidgewood                               $999,479.Linden                                      $951,675.West Orange                             $946,425.Ewing                                       $946,425.Allamuchy                                 $946.425.Bridgeton                                  $498,782.Camden                                    $497,994.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e8a1d85f-b9f9-4cb2-97dc-0c724f0a1ed2,\"RESULTS OF MENENDEZ'S MAJOR FORTUNE 500 DIVERSITY SURVEY: REPRESENTATION OF WOMEN AND MINORITIES ON CORPORATE BOARDS STILL LAGS FAR BEHIND NATIONAL POPULATION\n                    \n                            Minorities represent 14.5% of corporate boards; women 18%. One of most successful corporate diversity surveys ever -- 219 of Fortune 500 responded; 71 of Fortune 100.\n                    \n                      August 4, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), Chairman of the Senate Democratic Task Force and the lone Hispanic Senator, today unveiled the results of his survey on women and minority representation among the senior management of Fortune 500 companies, as well as their use of minority and women-owned businesses in the contracting and procurement process. The survey found that women and minority representation on corporate boards continues to lag far behind the national population percentages. Menendez's survey was one of the most successful of its kind, garnering input from 219 corporations on the Fortune 500 list and 71 on the Fortune 100 list.\nThe study found minorities to represent a total of 14.5% of directors on corporate boards and overall have less representation on executive teams than they do on corporate boards. Hispanics are least proportionately represented on boards and fared even worse on executive teams. They comprise 3.28% of board members and and 2.90% on executive teams, about one-fifth of the 15% they represent in the U.S. population. Among minority groups, African Americans have the highest representation on boards compared to their population, but saw greatest decline in representation from boards to executive management teams, from 8.77% to 4.23%. Women on the other hand fared better on executive teams than on corporate boards, with 18.04% and 19.87% of representation respectively, but these figures still represent less than one-half of their proportion of the national population.\nSenator Menendez and others also offered concrete recommendations, including the creation of a task force with select corporations, executive search firms, board members, and other experts to help companies move in this direction.\n“As Chair of the Senate Democratic Hispanic Task Force, one of my top priorities has always been promoting and expanding diversity at all levels of our economic, political and social sectors, and the basic understanding that has resulted from this survey will help guide us in doing so,\"\" said Senator Menendez. \"\"This report clearly confirms what we had suspected all along – that American corporations need to do better when it comes to having the board rooms on Wall Street reflect the reality on Main Street. We need to change the dynamic and make it commonplace for minorities to be part of the American corporate structure. It is not just about doing what’s right, but it’s a good business decision that will benefit both corporations and the communities they’re tapping into and making investments in. That’s why I’m offering my recommendations and to work one-on-one with companies who want to move those numbers and company executives who want to make a difference in the community.”\n“At the United States Hispanic Chamber of Commerce (USHCC) as an organization that represents more than 200 local Hispanic Chambers across the United States, and speaks for 3 million small and minority-owned businesses throughout the nation, we believe that embracing diversity is not just the right thing to do, but is a smart business decision. To us, diversity is not an abstract concept – we measure success by the qualified Hispanic employees hired, developed, advanced and flourishing with their corporate employers and we applaud Senator Menendez’s leadership in holding corporate America accountable to their commitments to diversity.” Said Javier Palomarez, President & CEO of the US Hispanic Chamber of Commerce.\n“A diverse workforce is critical to providing the best service to our global clients, supporting our business initiatives and creating a workplace environment that promotes respect and fairness,” said Jose Manuel Souto, Chief Financial Officer for Visa in Latin America.\n\"\"Our country is very rich in diversity, and our economic progress resides largely in our ability to harness that diversity. In our industry we experience first hand the enormous amount of untapped investment talent, thirsty for opportunities to prove to institutional investors its ability to compete and deliver. We commend Sen Menendez for his vision and leadership, and invite corporate America to see these efforts as an opportunity to find new competitive advantages. By exploring the utilization of fresh and capable diverse talent Corporate America wins and our country's economic progress accelerates.” Said Monika Mantilla, President & CEO of Altura Capital, and New America Alliance Board Member.\n“Ethnic diversity on public company boards is ultimately good business. When 40% or more of your customers in America are going to be minorities, companies, to be competitive, need the insights and expertise of Board members who understand how to market to those segments.  Senator Menendez is to be commended for making this issue one of public discussion and dialogue.” Said Roel Campos, former SEC Commissioner and Board member of the New America Alliance.This survey is one of the largest studies of women and minority diversity among corporate leadership with one of the highest response rates. A total of 219 Fortune 500 companies participated, including 71 Fortune 100 companies, making this one of the largest surveys on women and minority representation in corporate leadership ever. It requested the following information from corporations: 1) whether or not they have written diversity plans with targets, 2) data on diversity at the Board and executive management level, and 3) information on supplier diversity.\nClick here to view a PDF of the survey: http://menendez.senate.gov/imo/media/doc/Menendez%20Diversity%20Survey2.pdf\nClick here to read a PDF of the findings and recommendations report: http://menendez.senate.gov/imo/media/doc/CorporateDiversityReport2.pdf\nMost important findings of the survey and recommendations based on this data:\nKEY FINDINGS\nDiversity on Corporate Boards\n-Women represent 18.04% of Directors; 1 out of every 5 Board members is female. The proportional representation of women on Boards is less than one-half of their proportion to the overall U.S. population. \n-Minorities represent 14.45% of Directors; 1 out of every 7 Board members is a minority.  Minorities represent less than half of the 35% of the population they comprise overall in this country.\n-Blacks/African Americans have the highest representation at 8.77% compared to their population, reporting a Board ratio of about 69%. \n-Hispanics have one of the poorest representations on Boards.  They comprise about 3.28% of Board members, one-fifth of the 15% they represent in the U.S. population. Native Americans made up about .04% of Board members, approximately 5% of their actual population.\nDiversity on Executive Teams (CEO and direct reports) \n-Women represent 19.87 percent of Directors; 1 out of every 5 Board members is female. Although women fared slightly better on executive teams than on corporate Boards, they still represent less than one-half of their population. \n-Minorities overall have less representation on executive teams than they do on corporate Boards, representing 10.44% of executive managers, compared to 30% of their actual proportion to the U.S. population.\n-Blacks/African Americans saw the greatest decline in representation from Boards to executive management teams, 8.77% to 4.23%.  In fact, they went from about one out of every 11 Board members to one out of every 24 executive team members.  When compared to population statistics, Blacks/African Americans on executive boards represented only about one-third of their U.S. population.\n-Hispanics/Latinos fare worse on executive teams versus corporate Boards at 2.90%, Asians and Native Americans do slightly better at 2.55% and .25% respectively. \nSupplier Diversity \nOnly 98 corporations (less than half of respondents) provided some form of data on supplier diversity, whether it was by racial/ethnic category or just overall procurement with Minority Business Enterprises (MBEs).  118 corporations either chose not to answer the question or said they do not track this data at all. Of the data collected:\n•    Hispanic/Latino-owned firms represent 2.69% of total procurement.  •    Black/African American-owned firms represent 2.58% of total procurement. •    Asian-owned firms represent 3.21% of total procurement.  •    Native American-owned firms represent 0.83% of total procurement. •    Other minority-owned firms represent 3.31% of total procurement\nRECOMMENDATIONS\nThe following are recommendations that corporations can implement today if they are serious about improving diversity at the top:\n-Develop Relationships with Expert Organizations Outside of Traditional Networks.  Nominating committees should never use the excuse that they cannot find a qualified minority or a woman to nominate to their Board.  This was actually a common response over the course of this survey.  There are numerous organizations that may be outside of the traditional network but have extensive contacts, resources and expertise in different communities and know who the right people are.  Those organizations should be engaged to the fullest extent.\n-Do Not Recruit Solely at the Ivy League Schools. Expanding recruitment from Ivy League schools to other top schools can be another way to get qualified diverse candidates into the corporate pipeline. Also, developing relationships with professional organizations that can help identify qualified people through their memberships.\n-Utilize Executive Search Firms with Expertise in Diverse Communities or Require Them to Seriously Consider Diversity.  The survey showed that a discussion of diversity when using executive search firms did not necessarily correlate with improved diversity. Therefore, steps should be taken beyond just a simple discussion.  All search firms should be obligated to look for and provide companies with diverse, qualified candidates rather than simply pulling from traditional pools of candidates.  For example, diverse candidates who have experience running large non-profits or government agencies should not be ruled out, especially if their issue expertise aligns with the company mission. A search firm should be able to provide detailed information on what they are doing proactively to recruit diverse candidates.  In addition, search firms that have unique expertise with diverse communities should be recruited to help identify candidates for Board and executive management positions.  Insight into diverse communities can create a lot of business for a search firm that is effective in a niche space.\n-Interview at Least One Diverse Candidate When Filling Board or Leadership Positions.  Similar to the National Football League’s self-imposed “Rooney Rule,” where at least one minority candidate is interviewed for head coaching and senior football operations opportunities, nominating committees, CEOs and Human Resources personnel should aim to interview at least one minority candidate when looking to fill leadership positions.  These interviews should be done in a serious and meaningful manner, not simply to check a box.\n-Link Success with Diversity to Bonuses. Corporations should link diversity among each business department to the bonuses and annual performance reviews of business leaders.  The survey found that corporations that do this tend to have better diversity among their workforce and among the top leadership.  \n-Hire Chief Diversity Officers from Diverse Communities.  It is crucial that diversity chiefs at a company come from the communities they are recruiting from and working with.  These individuals are more likely to have ties to the communities they represent and can use those relationships to recruit diverse candidates for positions at all levels.\n-Hold More than Human Resources and Chief Diversity Officer Accountable for Diversity. Diversity should be a goal in every aspect of a company’s operations not only in the areas of procurement, Board and senior management levels, but also in a company’s treasury office where financial oversight lies.  Diversity should be considered among brokerage fees that extend to professional services like legal fees, mergers and acquisitions, pension fund management, and other services.  Many times the budget for these types of services significantly exceeds that for suppliers.  These areas should be part of a corporation’s diversity plan. While this particular survey did not ask questions related to brokerage fees and professional services, the next one will.\n-Create External Advisory Councils to Assist with Diversity.  Forming an external advisory council to focus on diversity is a good step to developing relationships within specific communities and identifying potential candidates for positions.  These Councils should not be formed only when there is a crisis.  There should be a separate council for each diverse group, i.e. women, Asians, etc, and each should report to the CEO.  These councils should be composed of outside community leaders that do work and have extensive networks with these communities. \n-Be Clear on the Difference Between U.S. Employees and Foreign Employees When Filling Directorships and Other Leadership Positions. Although this survey did not ask corporations to differentiate between U.S. and foreign employees, future surveys will.  Foreign Nationals should be considered separately from the levels of diversity for U.S. employees.\n-Groom Senior Employees for Top Positions.  It is critical that corporations implement meaningful succession planning, whether in the form of a mentoring program or other similar mechanism, for senior employees of a company who can be groomed for top leadership positions in the future.  Such a program should require a significant time investment from the CEO and his or her leadership team.  These programs help identify people who not only could be future leaders of the company, but could be tapped for Director positions on other corporate Boards.\n-Track Supplier Diversity So It Becomes a Priority. The lack of data shared regarding diverse suppliers, specifically in terms of a breakdown by ethnic/racial category, proves that this is an area that needs work.  According to the latest census figures, there are more than 7.8 million women-owned businesses and 5.8 million minority-owned businesses.  It is important to make an effort to procure with diverse suppliers and track this progress over time. If a corporation does not know where it stands, it cannot take action to improve.\n-Philanthropy is Good, but Not Enough. This survey showed two things, among others: that there is much philanthropy, but less diversity.  Although philanthropy is good and should be part of a corporation’s diversity plan, philanthropy alone is simply not enough. Diversity at all levels should be made a priority not only because it is the right thing to do, but because it is a good business decision.\n-Opportunities for Board Diversity When Companies Go Public.  Some companies have been bought by private equity firms that will take them public very soon.  In the process, companies will have to rename an entirely new Board of Directors.  This provides a prime opportunity to seek the most diverse, qualified candidates for Director positions and can have the quickest impact on improving Board diversity.  Corporations that fall into this category will be watched closely over the coming year.\n-Do Not Rely Solely on Written Diversity Plans. While corporations with written plans are more likely to have better diversity among their leadership as well as with suppliers, the gains were only slight. Therefore, corporations should not rely solely on written diversity plans, but should also implement more far-reaching changes that can have an even greater impact.  Implementing some of the aforementioned recommendations should provide corporations a good step in the right direction.\n                                                                                                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=65ebf61a-7b43-4cd6-97dd-694494630a5f,\"Menendez, Pallone Introduce Legislation to Combat Gang Violence\n                    \n                      August 4, 2010\n                     WASHINGTON – Senator Robert Menendez and Congressman Frank Pallone, Jr., (NJ-06) jointly introduced the Fighting Gangs and Empowering Youth Act of 2010, legislation that increases coordination amongst government and community organizations at all levels with programs that combat gang violence and recruitment. The bill funds community and after school programs that educate young adults on the dangers of gangs and improves prison to community transition programs to reduce recidivism.\n\n “From our cities to our suburbs and beyond, families, police, prosecutors are at war with gangs, and we need to give them full support from the federal level. That means not only giving them the tools to crack down harder on gang activity, but also developing the activities, mentoring and job opportunities to steer youth and ex-gang members away from that destructive lifestyle,” said Menendez.  “This has become a pervasive problem in need of a comprehensive solution, and that’s what we want to help deliver.”\n “I think the perception is that gang recruitment and gang violence only take place in major cities, but gang violence is becoming more prevalent in communities throughout New Jersey and across the country,” said Pallone. “Better education programs and community involvement aim to prevent young people from joining gangs early on, and hearing the same message about the danger of gangs from multiple sources will further reinforce that message.”\n\nThe legislation reauthorizes important after-school programs like the Safe and Drug-Free Schools and Communities Act and the National Coordinator Initiative, and brings together law enforcement, educators, non-profits, housing authorities and parents for improving public safety and violence prevention.\nConsolidating and standardizing crime data as directed by the legislation of the US Attorney General will improve data accessibility and be helpful in targeting likely areas of gang recruitment.  \nThe introduction of the legislation in the Senate comes prior to the Annual National Night Out, a community and nationwide effort to bring attention to crime problems in our neighborhoods. As part of the National Night Out, New Jerseyans are participating in neighborhood walks passing out educational fliers with crime reporting information, and suggestions on how to talk to young people about gang activity.\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e10fbbaf-8df3-4657-b296-1097f92eeed7,\"Camden City School District Receives Almost Half A Million Dollar Grant from the U.S. Department of Education\n                    \n                      August 3, 2010\n                     CAMDEN – Mayor Dana L. Redd, Senators Robert Menendez and Frank R. Lautenberg, and Congressman Robert Andrews today announced the City of Camden School District received nearly $500,000 in “Teaching American History Grant” funding from the U.S. Department of Education.\n\n“Educating our future leaders is a critical component in our continued efforts to move Camden forward,” Mayor Redd said.  “Any assistance that will help improve student achievement in Camden is welcomed news.  I am glad that City of Camden has Senators Menendez and Lautenberg and Congressman Andrews fighting for our students and their future.”\n“This is an investment that will help Camden City's youth fulfill their potential, and will support the teachers that work with them every day,” said Senator Menendez.  “Education is the key that unlocks social mobility and economic opportunity.  As the first in my family to graduate from college and law school, I know the power that an education can have on a young person’s life. That is why the education of our younger generations has to always be a top priority and why investments like this are investments in our future.”\n“Keeping America’s rich history alive in our classrooms is critical to ensuring that the next generation learns from the past,” Senator Lautenberg said.  “This federal funding will give Camden’s teachers access to resources that will enhance the learning experience for their students and provide new opportunities for them to excel in the classroom.”\n“This boost in federal aid will allow students in the City of Camden to achieve a more well-rounded education without placing added pressure on the school district’s budget,” said Congressman Andrews. “By implementing these history education funds into our schools, students will benefit from a more enhanced learning environment, improve their ability to think critically, and gain a better understanding of our nation’s past.” \n\nThe full amount of the grant is $497,994 and will run from September 1, 2010 through August 31, 2013.  The goal of the Teaching American History Grant program is to support programs that raise student achievement by improving teachers' knowledge, understanding, and appreciation of American history. The program supports competitive grants to local educational agencies, in partnership with institutions of higher education, nonprofit history or humanities organizations, libraries, or museums.  For more Information, please visit the U.S. Department of Education’s website at www2.ed.gov/programs/teachinghistory/index.html. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7c4b2805-1ac3-4d4d-9654-1b43a2ddbb03,\"Menendez Hails NJ Signing Health Care \"\"High-Risk Pool\"\" Agreement for Residents With Pre-Existing Conditions\n                    \n                            Senator’s office worked with Obama administration and state government on $141 million agreement\n                    \n                      August 2, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today hailed the State of New Jersey signing a “high-risk pool” agreement with the federal government, on which his office worked with both parties. The new health insurance reform law has created state-by-state insurance pools to lower costs for residents who are uninsured because of pre-existing conditions. These pools are fully funded by the federal government and last until 2014, as a bridge until the new health insurance exchange is operative. States have the option to shape their own high-risk pools or allow the federal government to run it completely. The agreement signed by New Jersey allows the state to run its own pool, which will total $141 million, paid for by the federal government.\nSenator Menendez released the following statement:\n\n“One of the main principles at the heart of the health insurance reform law is that insurance must be affordable not just for the healthy, but for those with pre-existing conditions as well. This agreement helps deliver on that front by creating an insurance pool for New Jersey residents who struggle to find affordable insurance because of a medical condition. In these tough times, that sort of health coverage means more than ever. This will help save and improve lives of those who access the program. The result will be a healthier and wealthier families and a more prosperous state.”\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5a8b4137-0047-47c1-95d7-8613d541c7d5,\"Menendez, Lautenberg Press Ahead with Efforts to get Answers about Release of Lockerbie Bomber\n                    \n                            Senators outline investigation to take place ahead of rescheduled hearing, send first in series of follow up letters to Scottish government\n                    \n                      August 2, 2010\n                     NEWARK – Today at a new conference at Newark Liberty International Airport, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) outlined the investigative portion of their new plan to get full information about the circumstances surrounding the release of Pan Am Flight 103 bomber Abdelbaset al-Megrahi from a Scottish prison nearly one year ago. They also released the first in a series of letters to the Scottish government requesting new information.\nMenendez will chair a Senate hearing on the matter in the coming months, which was originally scheduled for July 29 but postponed when key witnesses from BP and the Scottish and British governments declined to testify on that date. He has announced a new plan to gather information, which includes an investigation that his office will spearhead and that will help inform the Foreign Relations Committee’s hearing. Today, Menendez and Lautenberg announced that the investigative phase will include:\n•    A thorough review of all documents already made public by the British and Scottish governments and all documents newly released to Senator Menendez by the British government\n•    Requests for specific additional documents from sources potentially including the British, Scottish, Libyan and US governments, as well as BP\n•    Requests to interview key individuals, with the possibility of conducting such interviews outside of the U.S. \nIn addition to outlining the scope of the investigation, Menendez and Lautenberg today also released a letter requesting answers about the Scottish Parliament and Parliament Justice Committee’s inquiry into the release of al-Megrahi. Scottish officials commonly cite the inquiry as having produced comprehensive information on the matter, however the inquiry focused on the process of releasing al-Megrahi instead of the decision, and the list of witnesses interviewed was limited.\n\n“One of your stated reasons for not participating in our hearing process is that you judge that the inquiry by the Scottish Parliament and the Scottish Parliament Justice Committee was sufficient,” wrote the senators to Salmond. “In reviewing the documents available from your inquiry in the absence of direct testimony, it seems that the inquiry was quite limited, which leads me to the first series of questions we would appreciate your help in answering.”\n\nIn declining requests for Scottish officials to testify at the July 29 Senate hearing, Scottish First Secretary Alex Salmond wrote that the “Scottish Government would also be happy to answer, formally and in writing, any additional questions that may arise around the hearing.” To that end, the senators plan to follow up with a series of letters asking specific questions.\nPDF of letter to Salmond: http://menendez.senate.gov/imo/media/doc/20100802ltr_Salmond.pdf \nText of letter:\nAugust 2, 2010\nRt Hon Alex Salmond MSPFirst Minister of ScotlandSt Andrew's House Regent RoadEdinburgh EH1 3DG\nDear First Minister Salmond,\nThe circumstances surrounding the release of Abdelbaset Ali Mohmed al-Megrahi are of immense importance in the United States, where our citizens want fundamental justice in the murder of 189 Americans and want to ensure our national security is not compromised by future terrorists who see this case and believe that they too can escape punishment for killing scores of Americans.\nYou wrote in a letter to Foreign Relations Committee Chairman Kerry dated July 22, 2010 and reiterated in a letter to Senator Menendez that the “Scottish Government would also be happy to answer, formally and in writing, any additional questions that may arise around the hearing.” While we do not believe this is a fully adequate replacement for testimony before the committee, we appreciate the offer and intend to pursue it.\nOne of your stated reasons for not participating in our hearing process is that you judge that the inquiry by the Scottish Parliament and the Scottish Parliament Justice Committee was sufficient.  In reviewing the documents available from your inquiry in the absence of direct testimony, it seems that the inquiry was quite limited, which leads me to the first series of questions we would appreciate your help in answering.  \n•    Why was there no inquiry by an independent, professional investigator with the power to compel testimony and the production of documents?  The only way to be sure all the facts are brought to light is to have a truly independent and thorough investigation.    •    Why was the inquiry only on the process underlying the release of al-Megrahi, but not the decision itself?  The Justice Committee wrote that the “Committee agreed, by division, to undertake a short inquiry into the way in which the compassionate release application, and the application for prisoner transfer, were handled, rather than the merits of the final decision to release on compassionate grounds.”[1]•    Why wasn’t an effort made to question more witnesses?  The record seems to show that the only persons questioned, and for a limited time, were Cabinet Secretary Kenneth MacAskill, Director General for Justice and Communities Robert Gordon, and Head of Criminal Law and Licensing Division George Burgess.  Has a transcript of those interviews been released?  Was an interview of Mr. Burgess’s colleague Linda Miller conducted?  Were interviews of the medical professionals who examined Mr. al-Megrahi conducted?  If not, why not? If so, please provide the records of these interviews. \n•    Did an independent investigator have the opportunity to review government records and choose which ones to make available or was this simply an internal process by the government itself?  Documents are valuable, of course, but they can be misleading if one interested party is able to decide which documents to release.  Thank you in advance for your answers to our questions.  Without a meaningful Scottish Government witness at our upcoming hearing, we see no other way to get the facts surrounding the al-Megrahi release from your government’s perspective than to submit these and future specific questions for your response.\n                                                                  Sincerely,\n____________________                                                        _______________________ROBERT MENENDEZ                                                            FRANK R. LAUTENBERGUnited States Senator                                                        United States Senator\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=70beefa9-6be7-466b-bddb-7a1ee069af76,\"ONE DAY LEFT TO ENSURE YOU ARE INCLUDED IN 2010 CENSUS\n                    \n                            Telephone Assistance Line Closes tomorrow July 30\n                    \n                      July 29, 2010\n                     \n\n\n\n\n\n\n\n\n\nWASHINGTON - U.S. Senator\nRobert Menendez (D-NJ) is urging New Jersey residents who did not complete a\n2010 Census form to call the U.S. Census Bureau's toll-free assistance line at\n1-866-872-6868 by July 30.  A census enumerator will help individuals\ncomplete the 2010 questionnaire quickly over the phone. \n \"\"More\nthan 130,000 interviews have been completed through the Census Bureau's toll\nfree line,\"\" said Menendez. \"\"The Census is an important step to determining\nfuture funding of our communities for the next ten years. Everyone across\nAmerica and in New Jersey who cares about their schools, hospitals and the\nroads they drive on should stand up and be counted.\"\"\n Tomorrow is the last day to complete the\ninterview over the toll free line so that Census Bureau professionals have\nenough time to process the data by December, 31, 2010.  The line will be\nopen from 8 AM to 9 PM and interviews can be conducted in either English,\nSpanish, Chinese, Korean, Vietnamese or Russian.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e4e8b508-c4ae-4237-b260-45bcaf4d3ba8,\"Menendez Renews Requests for Key Witnesses at Hearing on Lockerbie Bomber Release\n                    \n                            Scottish, British, US governments and BP asked to provide acceptable dates in September. Menendez will lead investigation in preparation for rescheduled hearing\n                    \n                      July 29, 2010\n                     WASHINGTON – On the day that the U.S. Senate Foreign Relations Committee was originally scheduled to hold a hearing on the release of the Pan Am Flight 103 bomber, the hearing’s chair is asking key witnesses who had declined to appear today to provide acceptable dates in September on which they would be able to testify. U.S. Senator Robert Menendez (D-NJ) intends to hold the hearing in conjunction with results of an investigation into the circumstances surrounding the release of Abdelbasset al-Megrahi that he will lead.\nMenendez sent letters to Scottish, British and U.S. government officials today, as well as to BP.\n\n“A number of key witnesses indicated that they would not testify at a hearing that would have been held today, which is why we refocused our efforts and announced a new plan for getting to the bottom of al-Megrahi’s release,” said Menendez. “The plan includes an investigation  and a rescheduled hearing. The presence of these key witnesses continues to be requested in order to provide answers to the questions that remain over the decision to release al-Megrahi. My hope is that giving these witnesses a longer lead time will allow them to reconsider participating and to work the hearing into their schedules.”\n\nLetters sent by Menendez today:\nBP CEO Tony Hayward: http://menendez.senate.gov/imo/media/doc/20100729ltr_Hayward.pdf\nIncoming BP CEO Robert Dudley: http://menendez.senate.gov/imo/media/doc/20100729ltr_Dudley.pdf\nBP Consultant Sir Mark Allen: http://menendez.senate.gov/imo/media/doc/20100729ltr_Allen.pdf \nScottish First Secretary Alex Salmond (request is for Justice Secretary Kenny MacAskill and Dr. Andrew Fraser): http://menendez.senate.gov/imo/media/doc/20100729ltr_Salmond.pdf\nFormer British Justice Secretary Jack Straw: http://menendez.senate.gov/imo/media/doc/20100729ltr_Straw.pdf\nU.S. Attorney General Eric Holder: http://menendez.senate.gov/imo/media/doc/20100729ltr_Holder.pdf\nU.S. Secretary of State Hillary Clinton: http://menendez.senate.gov/imo/media/doc/20100729ltr_Clinton.pdf\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=06cd48d9-81f5-49f7-a9e2-d1f4d1d3c5d0,\"REID, STABENOW, MENENDEZ JOIN RENEWABLE ENERGY ADVOCATES TO DISCUSS DEMOCRATS’ PLAN TO CREATE JOBS AND REDUCE OUR DEPENDENCE ON OIL \n                    \n                      July 28, 2010\n                     \nWashington,\nDC- Senate\nMajority Leader Harry Reid and Senators Debbie Stabenow and Bob Menendez joined\nLarry Laseter of the Home Star Coalition and Marilyn Heiman of Pew Environment\nGroup at a press conference earlier today to discuss the clean energy jobs and\noil spill accountability plan that Senator Reid introduced yesterday. The bill\nwill create clean energy jobs, hold BP accountable and invest in cleaner\nvehicles that do not rely on oil.\n\"\"There\nare many ways to end our addiction to oil and this bill is one of them,\"\" said\nSenator Reid.  \"\"This bill creates jobs that can never be outsourced by\nstrengthening companies that make energy efficiency products. It also saves\nconsumers money - about $1 billion a year over the next 10 years - by cutting\nenergy costs and giving them incentives to make their homes more energy\nefficient. And it changes the law to make it crystal clear that polluters - not\nthe taxpayers - are going to be held responsible for cleaning up the Gulf.\"\"\n\"\"While\nthe GOP stands in the way of a comprehensive energy package, we must move\nforward to create jobs and hold BP accountable,\"\" said Senator Stabenow. \n\"\"This bill will help protect our environment and invest in the development of\nalternative energy jobs and technology. The Clean Energy Jobs and Oil\nAccountability Act is an important step to reduce American dependence on oil\nand lower energy costs through programs like Home Star.  It will also hold\nBP responsible for the devastation it has caused in the Gulf region. I am\ncommitted to passing this legislation because it will create good-paying clean\nenergy jobs and lead the way for more comprehensive energy reforms.\"\"\n\"\"Does\nanyone who has been watching the images coming in from the Gulf believe that we\nshould be protecting multi-billion dollar oil companies instead of the small\nbusinesses, fisheries and coastal residents who are losing their livelihoods?\n It is time that we stood up to Big Oil and make them pay for their own\nmess and not taxpayers, small business owners, states, or the federal\ngovernment,\"\" said Senator Menendez.\n\"\"The\n2,600 members of the HOME STAR Coalition stand together in support of the bi-partisan\nHOME STAR program, which will deliver a rare triple win for the American people\nin the form of jobs, savings for consumers, and a positive impact on energy\nindependence and the environment,\"\" said Larry Laseter of WellHome. \n\"\"Rarely is there an initiative with a near-universal benefit, but that is\nexactly what we have with the HOME STAR program and we applaud this bi-partisan\nbill and the Senate leaders for championing this cause.\"\"\n\"\"It's\nbeen over 30 years since we have amended our offshore drilling laws.\nAdvancements with drilling technology has  outpaced advancements in\nsafety, as well as the prevention of and response to spills. We need to plug\nthe leaks in the law now,\"\" said Marilyn Heiman of Pew Environment Group. \n\"\"The Pew Environment Group commends the Senate's bipartisan approach for taking\nprompt action to make these needed reforms so that as future offshore\ndevelopment off America's coasts is science based and ensures use of the best\navailable technology and environmental review. There is too much at stake to do\nbusiness without these protections in place.\"\"\nThe\nfollowing groups joined the Senators and participants at today's press\nconference:\nAmerican\nFly Fishing Trade Association\nAmerican\nOutdoors Association\nAssociation\nof Fish and Wildlife Agencies\nBoone\nand Crockett Club\nBoone\nand Crockett Club\nConservation\nPathway\nDucks\nUnlimited\nNational\nParks Conservation Association\nNational\nParks Conservation Association\nNational\nShooting Sports Foundation\nTeddy\nRoosevelt Conservation Partnership\nThe\nCongressional Sportsmen's Foundation\nThe\nCongressional Sportsmen's Foundation\nThe\nNature Conservancy\nThe\nNature Conservancy\nThe\nNature Conservancy\nThe\nTrust for Public Land\nThe\nWilderness Society\nThe\nWilderness Society\nTrout\nUnlimited\nTrust\nfor Public Lands\nWildlife\nForever\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=27ce130f-9b0f-4829-a7b5-2cb5a2694a77,\"Menendez, Lautenberg Announce $24.1 Million for New Jersey Housing and Community Development Programs\n                    \n                      July 28, 2010\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that counties and municipalities across New Jersey will receive $24,195,998 for various housing and community revitalization programs. The grants, administered through the Department of Housing and Urban Development (HUD), are part of four initiatives: The Community Development Block Grant (CDBG) program, the HOME Investment Partnership, the Emergency Shelter Grants (ESG) program, and the Housing Opportunities for Persons With AIDS (HOPWA) program.\n\n\"\"Investing in these programs marks an important commitment to our communities,\"\" said Lautenberg.  \"\"By working to provide federal funds for local housing programs and development initiatives, we can help create new opportunities for New Jersey families and make improvements to neighborhoods throughout the state.\"\"\n\"\"This funding will help revitalize our communities and help ensure everyone in New Jersey, including the most vulnerable, have access to housing within their means,\"\" said Menendez.  \"\"It is also an investment that will help create additional jobs and economic opportunities for our families in these difficult economic times.\"\"\n\nThe nearly $24.1 million in federal grants were awarded as follows:\nBurlington      County - $1,723,823 in CDBG funds.\nBurlington      County - $1,061,687 in HOME funds.\nCamden      City - $3,029,415 in CDBG funds.\nCamden      City - $123,144 in ESG funds.\nCamden      City - $1,207,505 in HOME funds.\nCamden      City - $713,814 in HOPWA funds.\nCamden      County - $2,851,935 in CDBG funds.\nCamden      County -  $115,635 in ESG funds.\nCamden      County - $1,324,643 in HOME funds.\nBayonne      - $2,081,135 in CDBG funds.\nBayonne - $83,964 in ESG funds.\nBrick      Township - $383,243 in CDBG funds.\nBridgeton - $445,836 in CDBG funds.\nToms      River Township - $490,574 in CDBG funds.\nHudson      County - $4,083,473 in CDBG funds.\nHudson      County - $165,103 in ESG funds.\nHudson County - $4,311,069 in HOME funds.\nThe CDBG and HOME programs provide funding to develop decent and affordable housing, enhance infrastructure and develop economic opportunities primarily in communities with large populations of low and moderate-income families.  HOPWA funding provides housing assistance and related support services to meet the special needs of people with HIV and AIDS.  The ESG program provides homeless people with basic shelter and other services.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=790d4375-bb15-4650-94e8-c1f60ad30e95,\"Menendez- Joined by Lautenberg, Gillibrand and Schumer - Announces New Plan to Get Answers About Lockerbie Bomber Release\n                    \n                            Investigation will be launched to gather new information, Senate hearing date will be re-set  \n                    \n                      July 27, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), who will chair a Foreign Relations Committee hearing on the release of the Pan Am Flight 103 bomber, today was joined by Senators Frank Lautenberg (D-NJ), Kirsten Gillibrand (D-NY) and Charles Schumer (D-NY) in announcing a new plan to gather critical information on the issue. Because the key Scottish government, British government and BP witnesses declined to testify at the hearing scheduled for Thursday, Menendez and his colleagues announced that the hearing date will be re-set and that they will work with the Foreign Relations Committee to launch an investigation into the matter and provide the basis for the re-scheduled hearing.\n\nSenator Menendez explained the new plan: “We are at a place where no witness of consequence has the courage to step forward and clear the air – they would prefer to sweep this under the rug. Because of this stonewalling, we are shifting our efforts to a longer-term, multi-dimensional inquiry into the release of al-Megrahi. The hearing will be postponed and rescheduled, and it will be coupled with an investigation into al-Megrahi’s release. In declining our witness request, the Scottish government did offer to provide answers to further questions we may have. We appreciate that, and will take them up on that offer. We will work with the Foreign Relations Committee to launch the investigation into this matter – asking the pointed questions that we would have in person, and requesting additional documents. Our requests will be frequent and public – we don’t intend for this issue to be forgotten or swept under the rug. When our information is more complete, we will release it publicly, hold the hearing and discuss what we have found.”Senator Lautenberg said: \"\"I will not rest until there is a clear and credible record of what led to the early release of the Lockerbie bomber. In the last year, troubling questions surrounding the circumstances of al-Megrahi’s release have come to the surface. The families of the victims of Pan Am 103 have already suffered so much, and the release of this convicted terrorist has only amplified their anguish and grief. For their sake, we must get to the bottom of these questions.  Those who commit vicious acts of terrorism have to know that they will be punished without compassion, and a rigorous investigation will help send that message.\"\"\nSenator Gillibrand said: “It has become clear that there is a great deal of information already in the public domain that has not been fully investigated. Already we have seen an abundance of circumstantial evidence that justice and the international fight against terror were compromised to serve the interests of BP and possibly other companies. The only independent review of this matter was done by the Scottish Parliament, which said they were ‘extremely concerned’ about the basis on which compassionate release was granted. The Scottish review was also limited in scope and did not examine the external influences on Al-Megrahi’s release. Our investigation will review past evidence and new information that we intend to gather in a new light, so that we can answer questions about whether BP tried to free Al-Megrahi. What has happened here is a total miscarriage of justice.  Al-Megrahi should never have been released, and we must answer exactly why this happened.”\nSenator Schumer said: “It is time for the UK and Scottish Governments to prove they are part of the solution here and not part of the problem. Day after day, week after week, more and more questions get raised and we need all parties to this controversy involved in answering them. We will continue in our quest for the truth so that justice can be served and the families of the victims can have their faith in the legal process restored.”\n\n            Invited to the hearing, but declining to appear were: Scottish Justice Secretary Kenny MacAskill (made the decision to release al-Megrahi), Dr. Andrew Fraser (Scottish prison system doctor cited by MacAskill as responsible for the medical prognosis that led to the release), Jack Straw, the former British Justice Secretary (has acknowledged that his government pushed for al-Megrahi’s release as part of a prisoner transfer agreement), BP CEO Tony Hayward (directly involved in negotiations with Libya), and Sir Mark Allen (former British MI6 hired by BP and acted as a liaison between the company and the Libyan and British governments).\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f492981c-f82d-4fb0-bdfb-1ecbefcfe1d4,\"MENENDEZ STATEMENT ON N.J. CONGRESSIONAL DELEGATION MEETING WITH GOVERNOR\n                    \n                      July 27, 2010\n                     \nWASHINGTON - Today, the New Jersey\ncongressional delegation met with Governor Chris Christie in Washington to\ndiscuss federal issues affecting the state. Issues raised by Menendez and other\nmembers of the delegation included New Jersey's continuing use of federal\nRecovery Act investments and other major federal investments delivered to the\nstate, such as the hundreds of millions of dollars for the new mass transit\ntunnel across the Hudson. In addition, the governor committed to the delegation\nthat he would approve the health care high-risk pool for New Jersey, created\nthrough the new health insurance reform law. After the meeting, Menendez\nreleased the following statement:\n\"\"There are a number\nof key economic issues affecting New Jersey families that are best addressed\nwhen our state's representation in Congress and the state government share a\ncommon focus. It was important to discuss as a group how we have been and will\ncontinue to help create jobs in New Jersey by affecting policy on the federal\nlevel. We discussed how the state continues to utilize key Recovery Act\ninvestments and programs, which create jobs and help alleviate the state's\nbudget crunch. We also had a chance to discuss some of the other major federal\ninvestments that we've been working hard to deliver. Included on that list is\nthe new mass transit tunnel, which is expected to support tens of thousands of\njobs, as well as federal support for state Medicaid payments. I was pleased\nthat the governor committed to us that he will approve the health care\nhigh-risk pool for the most vulnerable patients in New Jersey, which we created\nin the new health insurance reform law.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cc240edf-f07b-413e-afad-b4b764475697,\"SENATOR MENENDEZ REMARKS ON THE SENATE FLOOR IN STRONG SUPPORT OF THE DISCLOSE ACT\n                    \n                      July 27, 2010\n                     WASHINGTON - Today, US Senator\nMenendez stood in the Senate floor to speak in strong support to the Disclose\nAct and encourage his Republican colleagues to do the same. The motion to\nproceed to the bill was defeated by a 57-41 vote. Below is a video and his full\nremarks as prepared for delivery:\n \nVideo: http://www.youtube.com/watch?v=hMWeu6MhxJU\nFull text of remarks as prepared for delivery:\nMr. President, I have come\nto this floor countless times in the last few months to speak out for common\nsense legislation that is in the best interest of this nation.\nI am compelled to come\nto the floor again to ask my Republican colleagues to stand up for what they\nknow is right, to put aside the right-wing politics of vociferous minority in\nthis country and say YES to reason, common sense, and good governance...\n...and at least allow us\nto proceed.\nBut once again, they\nare not satisfied to come to the floor to vote against a bill. They will not\neven allow this body to consider the bill.\nThey will not even say\nYES to proceeding to the bill itself...\n...a bill that would\nprevent foreign corporations from financing American political campaigns.\nWe\nall know that the Roberts Supreme Court and its activist conservative majority\noverruled, wrongly in my view, restrictions on spending by corporations and\nunions.\n\nMy colleagues on the\nother side are well aware that - as a result of a perceived loophole in current\nlaw, foreign corporations would now be allowed to fund American election\ncampaigns - pick their candidates, candidates that would reflect their interests if elected - or defeat candidates who would not reflect their\ninterest --- all without any meaningful mechanism for disclosure.\nMr. President, this is\nabsurd on its face...\n...Nothing could be more\nill-advised or misguided...\n...but here we are, once\nagain, unable to proceed even to consider a bill that would remedy the\nsituation.\nOnce again my\nRepublican friends are standing in the way of even proceeding to the bill...\n...standing in the way of\nwhat I consider to be good governance...\n...all in the name of\nthose in their Party who hold to some misguided attempt to twist first\namendment rights to suit an ideologically based argument that somehow a requirement\nto disclose contributions would violate the first amendment -- but avoiding\ntransparency is not a first amendment right...\n...it is the right of the\nAmerican public to receive the information required by these proposed\ndisclosure laws.\n...And then they twist it\neven further - virtually saying that all money anywhere, even foreign money is\nsomehow free speech in American elections.\nI think the American\npeople know that that is simply ludicrous on its face.\nI\ndo not believe that is what the people of New Jersey want...\nThey do not want\nforeign corporations influencing New Jersey elections.\nIt's not what the\nAmerican electorate believes is right. It's not what they think is fair.\nThey do not want\nforeign corporate interests dumping money into a campaign to elect or defeat\nthose who do not serve their foreign interest.\n\nAllowing foreign\ncorporations - which could potentially, directly or indirectly, include\ncontributions from a foreign government - to influence our elections is not\nwhat any American believes is acceptable in our political process.\nAnd yet, we can't even\nproceed to the bill.\nWe can't even get to\nvote on this legislation because Republicans once again have chosen to come to\nthis floor, as they have on numerous occasions to say NO...\n...NO to common sense...\n...NO to the majority of\nthe American people.\n...NO: We won't even let\nthe Senate consider legislation that would prevent foreign entities from\npicking winners and losers in American elections.\nI am incredulous that our\ncolleagues would say NO to proceeding to a bill that would stop foreign\nnationals, foreign corporate executives - and, conceivably, foreign governments\nfrom helping defeat or elect political candidates in American elections...\nThey are saying NO to\nthat.\nI do not know how my\nRepublican colleague, the standard-bearer for the Republican Party in the last\npresidential election, will vote...\n...but I do know that\nthis is not what he came to this floor on countless occasions to fight for...\nHe did not come to see reform that would leave American elections open to\ninternational campaign finance intrigue.\nBut now he too may vote\nNO to the kind of campaign reform that he - himself - championed.\nMr.\nPresident, our elections and our democracy, more than anything else, should\nalways be 100 percent American.\nIt's bad enough that\nthe true voice of the American people can be drowned out by big corporations\nnow that the Supreme Court has made its misguided ruling...\nBut to now allow the\nvoice of the American people to be drowned out by foreign corporations,\nforeign interests, foreign advocacy groups, is not only outrageous but a\nfundamental threat to our democratic process.\nThe door has been\nopened a crack for outside exploitation and influence over the direction of our\nnation.\nI am at a loss to\nbelieve that my colleagues on the other side do not agree with us that we need\nto close the door and lock it...\n...that the direction of\nour country, the decisions within our democracy, the sacredness of our\nelectoral process must be decided and influenced by Americans and Americans\nonly.\nMr. President, this is\nnot a time for pure political obstructionism that plays to the extremes...\n...this is not the time\nto stand in the way of good governance and common sense to score political\npoints.\nThe\nSupreme Court decision left voters facing the possibility of corporations and\nadvocacy groups spending hundreds of millions of dollars picking who they want\nto target - who they want to win and who they want to defeat - in the 2010\ncongressional races.\nIt provides for no\nmeaningful disclosure of campaign expenditures or who's giving the money - even\nif it's a foreign corporation seeking to influence an American election.\nWe need to correct it.\nThe Disclose Act does\njust that. It fills the gap.\nIt does not favor\nanyone. It simply establishes reasonable, responsible, disclosure requirements\nfor everyone.\nI\nask my friends on the other side, what could be wrong with knowing who is\ninfluencing our elections?\nWhat's wrong with\nallowing us to even proceed to the bill that would prevents foreign\ncorporations form picking winners and losers in American elections?\nWhat's could be wrong\nwith ensuring the integrity of our electoral process and protect it from\nforeign influence...\nWhat could be wrong\nwith that?\nThank you Mr.\nPresident. I yield the floor.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1a949315-5adc-4eea-ab03-9e255c2717d7,\"Lautenberg, Menendez: Senate Panel Approves $200 Million for ARC Tunnel\n                    \n                            Bill Would Invest in Multiple Transportation Improvements, Community Developments Projects\n                    \n                      July 23, 2010\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Senate Appropriations Committee approved legislation that includes $206 million to help fund a new rail tunnel under the Hudson River and advance other transportation and development projects in New Jersey.  The funds are included in the FY 2011 Transportation, Housing and Urban Development Appropriations bill, which must next be considered by the full Senate.  \nThe measure sets the budget for Amtrak, public transit and the entire U.S. Department of Transportation, which includes agencies such as the Federal Highway Administration (FHA) and the Federal Aviation Administration (FAA).  It also funds the Department of Housing and Urban Development (HUD), which works to support community development and increase access to affordable housing.\n\n\"\"The funding in this bill will continue our commitment to advancing the tunnel project and make mass transportation a more appealing option for millions of commuters,\"\" stated Lautenberg, who as a member of the Transportation, Housing and Urban Development Appropriations Subcommittee helped craft the legislation.  \"\"By investing in our roadways and bridges, we can relieve traffic, improve safety and improve our communities.  This bill would also help provide basic housing and community services for at-risk youth and victims of domestic violence and sexual abuse.\"\" \n\"\"This latest major investment in the new mass transit tunnel will help create and support thousands of jobs while improving public transportation options that save families time and money,\"\" stated Menendez.  \"\"The multiple investments in transportation projects will help create construction jobs, reduce traffic congestion and bolster our public transportation system. In addition, we have secured investments to help protect some of our state's youngest and most vulnerable crime victims.\"\"\n\nThe projects for New Jersey include:\nTransportation\nNJ      Transit - $200 million for the ARC Tunnel project.\nHarrison      - $1.5 million to consolidate the partial ramp system at I-280 in      Harrison and construct a single interchange.\nHoboken      - $1 million to rebuild the collapsed portions of the Hudson River      waterfront walkway along 5th and 7th Streets.\nGloucester      County - $1 million for the reconstruction of the Hunter Street Bridge      over the CSX/Norfolk Southern Rail Line in Woodbury.\nCamden      - $500,000 for the design and construction of improvements to 7th Street from Linden Street to Elm Street.\nUnion      City - $500,000 to repair and repave New York Avenue from 32nd to 48th Street.\nGlassboro      - $500,000 to purchase buses and capital items to start a local      bus system in Glassboro to serve the community and Rowan University.\nBloomfield      Township - $500,000 for streetscape upgrades and traffic flow and      pedestrian safety improvements at Bloomfield's Six Points intersection.\nCommunity Services and Development\nPuerto      Rican Action Board in New Brunswick - $260,000 to      repair facilities that house economic empowerment programs for low-income      individuals and families.\nBonnie      Brae Residential Treatment Center for Adolescent Boys in Somerset County -      $200,000 to renovate facilities that house and provide services      for at-risk youth.\nCommunity      Foundation of New Jersey - $500,000 for the renovation and      build-out costs of the Essex County Family Justice Center for domestic      violence victims.\nUnion      County Child Advocacy Center - $200,000 for the construction      and renovation of a new child advocacy center for sexually abused children      in Union County.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=13361f96-630d-4f6f-a0cd-e1d1dd148fb0,\"Lautenberg, Menendez: Senate Panel Approves $7 Million for New Jersey Public Safety and Crime Prevention Programs\n                    \n                      July 23, 2010\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Senate Appropriations Committee approved legislation that would provide federal funds to help New Jersey's police and emergency first responders improve their technology, and to help reduce gang violence and crime by providing after-school mentoring programs.  The funds are included in the FY 2011 Commerce, Justice and Science (CJS) Appropriations bill, which must next be considered by the full Senate.\n\n\"\"The funding in this bill would make communities across New Jersey safer by investing in our police and first responders and by providing young people with programs to keep them away from gangs, guns and a life of crime,\"\" said Lautenberg, who as a member of the CJS Appropriations Subcommittee helped craft the legislation.  \"\"This bill would also give researchers the support they need to help protect New Jersey's coastal ecosystems and fishing economy.\"\"    \n\"\"By securing investments that ensure our law enforcement is equipped with up-to-date technology and that help New Jersey's youth reject violence and crime, we are helping to create safer communities for our families,\"\" said Menendez.  \"\"We are also supporting the economic security of our coastal communities with investments to help protect our coastal waters and the wildlife that inhabits it.\"\" \n\nThe $7 million in funding would be divided as follows:\nLaw Enforcement\nAtlantic      County Sheriff's Office - $250,000 for the      purchase of law enforcement equipment.\nMercer      County - $300,000 for the purchase of public safety      equipment.\nBorough      of Cliffside Park - $300,000 for the purchase of public safety      interoperability equipment\nCherry      Hill Township - $100,000 for the purchase of equipment for      the Cherry Hill Police Department.\nCity of      Bayonne - $150,000 for the purchase of technology and      equipment for law enforcement.\nElizabeth      Police Department - $375,000 for the purchase of gunshot location      technology to help locate the origin of gunshots and weapons-related      incidents. \nJersey      City - $350,000 for the purchase of law enforcement equipment.\nRed      Bank Police Department - $100,000 for equipping a communications and      dispatch center at the Red Bank Police Department.\nHammonton - $200,000 for the purchase of law enforcement equipment.\nMaplewood - $300,000 for the purchase of law enforcement equipment.\nNutley - $275,000 for the purchase of public safety equipment\nUnion      City - $400,000 for the purchase of law enforcement technology.\nVineland - $375,000 for the purchase of a gunshot location technology to help locate the      origin of gunshots and weapons-related incidents.\nNew      Jersey Institute of Technology - $350,000 for the      development of technology that will safeguard handguns from unauthorized      use.\n\nJuvenile Mentoring and Violence Prevention Programs\n\n180      Turning Lives Around Inc. in Hazlet - $400,000 for      teen violence reduction and treatment expansion.\nBergen      Community College - $100,000 for the Center for Suburban      Criminal Justice, a drug prevention consortium of criminal justice,      educational and community-based organizations.\nBig      Sisters of Essex, Hudson and Union counties - $400,000 for      youth mentoring programs.\nBoys      and Girls Clubs of New Jersey - $250,000 for a gang prevention      program for at-risk youth.\nNew      Jersey Association of School Resource Officers - $250,000 for      the implementation of the SPEAK UP hotline to prevent weapons-related      threats in local school districts.\nPemberton      Township - $200,000 for a gang prevention program for at-risk youth.\nIrvington      - $300,000 for a youth mentoring and violence prevention program.\n\nScience and Environmental Sustainability Programs\nMonmouth      University - $750,000 for a coastal ecosystem monitoring program.\nPartnership      for Mid-Atlantic Fisheries Science - $525,000 to      develop an improved data collection method to support and assess fish      populations.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f30dee94-7607-47e6-bc9d-f7b90ea34d16,\"Lautenberg, Menendez: Senate Committee Approves $140.5 Million for Energy and Water Projects in New Jersey\n                    \n                      July 23, 2010\n                     WASHINGTON, D.C. - U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Senate Appropriations Committee approved the FY 2011 Energy and Water Development Appropriations bill, which would bring New Jersey more than $140 million for clean energy, beach replenishment, flood mitigation and harbor maintenance projects across the state.  The bill now heads to the full Senate for further consideration.\n\n\"\"This measure would strengthen New Jersey's water infrastructure, protect our communities from flooding and invest in clean energy sources,\"\" said Lautenberg, a member of the Senate Appropriations Subcommittee on Energy and Water Development.  \"\"Investing in storm damage protection and beach restoration will help protect our coastal communities and ensure that New Jersey's shore economy remains vibrant.  This bill also holds critical funding for projects that will help make sure New Jersey remains at the forefront of clean energy innovation.\"\"\n\"\"By protecting our Shore and helping it to recover from recent severe storms, these investments will support New Jersey families and business who rely on our coastline for their livelihood,\"\" Menendez said.  \"\"The investments to prevent and prepare for flooding will help New Jerseyans in flood prone areas to protect their families and properties. The investments in infrastructure and renewable energy will help create jobs and rebuild our economy for the 21st Century.\"\"\n\nNew Jersey would receive $140.5 million in funds for projects including:\nBeach Replenishment\nThese funds will go to the U.S. Army Corps of Engineers for beach renourishment and storm damage reduction projects in the following communities:\nLong Beach Island (Barnegat Inlet to Little Egg Inlet) - $7.6 million\nOcean City, Upper Township and Sea Isle City (Great Egg Harbor Inlet to Townsends Inlet) - $2 million\nCape May (Lower Cape May Meadows) - $8.92 million\nPort Monmouth (Raritan and Sandy Hook Bay) - $1.5 million\nSouthern Long Branch (Sandy Hook to Barnegat Inlet) - $2 million\nStone Harbor and Avalon (Townsends Inlet to Cape May Inlet) - $2 million\nNew Jersey Alternative Long-Term Beach Nourishment Study - $200,000 to evaluate methods to manage New Jersey's coastal projects on a regional basis to increase benefits from Federal investments and to ultimately reduce long-term nourishment costs.\nHarbor Maintenance\nThese funds will go to the U.S. Army Corps of Engineers for regional harbor maintenance projects:\nNew York and New Jersey Channel Maintenance - $6.15 million\nNew York Harbor Drift Collection - $7.2 million\nNew York Harbor Prevention of Obstructive Deposits - $1.045 million\nFlood Mitigation\nThese funds will go to the U.S. Army Corps of Engineers for flood mitigation and water infrastructure projects: \nPassaic River Flood Warning System - $570,000 for a flood warning and response system\nPassaic River Flood Management (Floodway Buyout) - $500,000 to prepare houses in the floodplain for future buyouts\nRaritan River Basin, Green Brook Sub-basin - $1 million to initiate planning for construction of flood mitigation projects in Middlesex borough and Green Brook Township\nJoseph G. Minish Historic Waterfront Park, Newark - $3 million for shoreline infrastructure development along the Passaic riverfront\nEnergy\nThese funds will be used for energy efficiency research and building and for the development of clean energy technology:\nRutgers University Livingston Campus Geothermal Energy System - $750,000 to install energy efficient geothermal technology to support the redevelopment of Livingston Campus.\nTownship of Brick - $650,000 for the transformation of a landfill into a renewable energy solar farm.\nRowan University Renewable Fuel Initiative - $750,000 for a renewable fuel research and development initiative.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=13a222de-63fa-49bf-a3cf-878bec48919a,\"MENENDEZ HEALTH REFORM PROVISION TO PROTECT CONSUMERS AGAINST INSURANCE DENIALS IMPLEMENTED\n                    \n                      July 23, 2010\n                     \nWASHINGTON - The Obama Administration has\nannounced new consumer protection regulations and $30 million in grants to\nfacilitate consumers' appeal of health insurance coverage decisions, a\nprovision in the health insurance reform law authored by U.S. Senator Robert\nMenendez (D-NJ). The new regulations and funding will help guarantee consumers\nhave the right and access to the necessary resources to appeal decisions made\nby their health plan, including claims denials, through the plan's internal\nprocess. Consumers will also be able to appeal decisions through an outside,\nindependent decision-maker regardless of where they live or what type of\ncoverage they have, if necessary.\nThese new appeals rules are based on a provision authored by Senator\nMenendez to require each health insurance issuer to provide an internal claims\nappeal process and each state to provide an external review process for plans\nin the individual and small group markets. The consumer assistance grants will\ngo towards helping states establish or strengthen consumer assistance programs\nto educate consumers about their health coverage options and rights as\npatients, including their right to appeal health insurance coverage decisions\nand defend themselves from insurance companies abuses.  \nSenator Menendez said: \"\"When I held health insurance reform listening sessions\nin New Jersey, a constant theme I heard from families was the feeling of\npowerlessness against insurance company claims denials. I authored this\nprovision to give families the power to help ensure that their legitimate\ninsurance claims are covered. Aside from giving patients this new right,\ninsurance companies will be discouraged from arbitrarily denying responsible\nclaims, knowing that consumers have a recourse. This will help guarantee more\ncomprehensive health coverage and lower health care costs for families.\"\" \n Ron Pollack, Executive Director of Families USA said, \"\"Thanks to the\nefforts of Senator Menendez and his colleagues, American consumers have won\nnew rights under the rules issued today.  Regardless of the plan they\nare in, consumers across the nation will be able to appeal\nadverse decisions made by a health plan to an objective and\nunbiased decision-maker.\"\"\nWhite House Information on New Regulations and Grants:\nNew Regulations To Help Consumers Appeal\nDecisions By Their Health Plans \nThe new rules issued by the\nDepartments of Health and Human Services, Labor, and the Treasury will\nstandardize both an internal process and an external process that patients can\nuse to appeal decisions made by their health plan.\nToday, if your health plan\ntells you it won't cover a treatment your doctor recommends, or it refuses to\npay the bill for your child's last trip to the emergency room, you may not know\nwhere to turn. Most health plans have a process that lets you appeal the\ndecision within the plan through an \"\"internal appeal\"\" - but depending on your\nState's laws and your type of coverage, there's no guarantee that the process\nwill be swift and objective. Moreover, if you lose your internal appeal, you\nmay not be able to ask for an \"\"external appeal\"\" to an independent reviewer.\nThe\nrules issued today will end the patchwork of protections that apply to only\nsome plans in some States, and simplify the system for consumers. And they will\nensure that all consumers in new health plans have access to internal and\nexternal appeals processes that are clearly defined, impartial, and designed to\nensure that, when health care is needed and covered, consumers get it.\nInternal Appeals \nThe internal appeals process\nwill guarantee a venue where consumers may present information their health\nplan might not have been aware of, giving families a straightforward way to\nclear up misunderstandings. Under the new rules, new health plans beginning on\nor after September 23, 2010 must have an internal appeals process that:\n Allows consumers to appeal\nwhen a health plan denies a claim for a covered service or rescinds coverage; \n Gives consumers detailed\ninformation about the grounds for the denial of claims or coverage; \n Requires plans to notify\nconsumers about their right to appeal and instructs them on how to begin the\nappeals process; \n Ensures a full and fair\nreview of the denial; and \n Provides consumers with an\nexpedited appeals process in urgent cases.\nExternal Appeals \nIf a patient's internal appeal\nis denied, patients in new plans will have the right to appeal to an\nindependent reviewer. External appeals have helped consumers get the care they\ndeserve: one study found that - in States that had external appeals - consumers\nwon their external appeal against the insurance company 45% of the time.2\n2 Kaiser Family Foundation, Assessing State External\nReview Programs and the Effects of Pending Federal Patients' Rights Legislation,\n2002. http://www.kff.org/insurance/externalreviewpart2rev.pdf.\nWhile 44 States provide for\nsome form of external appeal, the laws governing these processes vary greatly\nand fail to cover millions of Americans. The new rules will ensure that\nconsumers\nwith\nnew health coverage in all States have access to a standard external appeals\nprocess that meets high standards for full and fair review.\nThese\nstandards were established by the National Association of Insurance\nCommissioners (NAIC). States are encouraged to make changes in their external\nappeals laws to adopt these standards before July 1, 2011. The NAIC standards\ncall for:\n External\nreview of plan decisions to deny coverage for care based on medical\nnecessity, appropriateness, health care setting, level of care, or\neffectiveness of a covered benefit. \n Clear\ninformation for consumers about their right to both internal and external\nappeals - both in the standard plan materials, and at the time the company\ndenies a claim. \n Expedited\naccess to external review in some cases - including emergency situations,\nor cases where their health plan did not follow the rules in the internal\nappeal. \n Health\nplans must pay the cost of the external appeal under State law, and States\nmay not require consumers to pay more than a nominal fee. \n Review\nby an independent body assigned by the State. The State must also ensure\nthat the reviewers meet certain standards, keep written records, and are not\naffected by conflicts of interest. \n Emergency\nprocesses for urgent claims, and a process for experimental or\ninvestigational treatment. \n Final decisions must be\nbinding so, if the consumer wins, the health plan is expected to pay for\nthe benefit that was previously denied.\nIf\nState laws don't meet these standards, consumers in those States will be protected\nby comparable Federal external appeals standards. In addition, people in health\nplans that are not subject to State law - including new self-insured employer\nplans - will be protected by the new Federal standards.\nNew\nConsumer Assistance Grants \nThe\nAffordable Care Act provides consumers with significant new protections\nincluding the ability to choose a health plan that best suits their needs, to\nappeal decisions by plans to deny coverage of needed services, and to select an\navailable primary care provider of their choosing. The new Consumer Assistance\nGrants program will provide nearly $30 million in new resources to help States\nand Territories educate consumers about their health coverage options, empower\nconsumers, and ensure access to accurate information. Grants will be made\navailable to support States' efforts to establish or strengthen consumer\nassistance programs that provide direct services to consumers with questions or\nconcerns regarding their health insurance.\nAll States and Territories may apply\nfor these grants, which will help expand consumer assistance efforts on the\nState level, including:\n Helping consumers enroll in\nhealth coverage; \n Helping consumers file\ncomplaints and appeals against health plans; \n Educating consumers about their\nrights and empowering them to take action; and \n Tracking consumer complaints\nto help identify problems and strengthen enforcement.\nEligible\napplicants include State insurance departments, State attorneys general\noffices, independent State consumer assistance agencies, and other State\nagencies. States and Territories may also partner with non-profit organizations\nthat have a track record of working with consumers. Applications are available\nnow by visiting www.Grants.gov and searching for CFDA number 93.519\nWhat\nWill This Mean for You? \n Under these rules, if your\nhealth plan denies coverage of a test - for example an MRI - you and your\ndoctor can appeal that decision to the plan and, if the plan still refuses to\ncover the test, to an external reviewer. If the external reviewer agrees with\nyou, your plan must pay for the test.\n If your plan decides to\nrescind your coverage altogether based on the fact that information on your\napplication for coverage was not accurate, you can appeal that decision. If\nyour appeal is successful, the plan must reinstate your coverage.\n If you go to the emergency\nroom and your plan won't pay the bill, you'll have the chance to provide\ninformation to the plan about why you needed emergency care - and take your\nrequest to an external reviewer if your appeal to the plan is denied.\nConsumer Assistance Grants have\nthe potential to benefit millions of Americans. These grants will fund programs\nthat will support consumers both now as we transition to a more competitive,\npatient-centered health insurance marketplace in 2014 and once that new\nmarketplace is established. \n If you learn that your\nemployer is cancelling coverage, and you know it will be hard to find coverage\nfor your family on the individual market, you may need someone to help explain\nyour options. A State consumer assistance program will provide that support,\nhelping you figure out what you need, describing ways you can get coverage, and\nultimately helping you enroll in coverage.\n Just last year, one State's\nexisting consumer assistance program helped nearly 3,000 residents and\nrecovered over $7 million in benefits on behalf of consumers. In another State,\na similar program assisted about 13,000 residents and helped nearly 8,000 of\nthem enroll in coverage.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ff3a6b84-553f-4f04-9a4a-ee94dd90d0ff,\"Senators Menendez, Lautenberg Announce $12 Million in Funding for New Jersey Department of Law and Public Safety Programs\n                    \n                            Funding will go towards victim assistance, underage drinking laws enforcement, and youth Internet safety programs\n                    \n                      July 23, 2010\n                     WASHINGTON - US Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced New Jersey's Department of Law and Public Safety will receive $12,003,625 in funding from the US Department of Justice to finance local law enforcement and public safety programs. The largest share of the funding  --$11,267,498 in total - will be awarded through the Department of Justice Crime Victims Fund and go towards crime victims assistance and to enhance the state's services for crime victims. The rest of the funding will be awarded through the Department of Justice Office of Juvenile Justice and Delinquency Prevention programs Internet Crimes Against Children Task Force Program and Enforcing Underage Drinking Laws Block Grants Program to support efforts towards these purposes.\n\n\"\"This is a substantial investment toward protecting our children and families and keeping our communities safe,\"\" said Menendez. \"\"It will help victims of crimes gain support and will help protect our children from online predators and underage drinking.\"\"\n\"\"Keeping our children and communities safe is our top priority,\"\" Lautenberg said.  \"\"This funding will help law enforcement stop the exploitation of children on the Internet and curb underage drinking in New Jersey.  Significant funding will also be invested to help protect crime victims in New Jersey and ensure they have access to basic support services.\"\"\n\nThe $12,003,625 in funding will be distributed as follows:\n$11,267,498 - Assistance for victims of crime through Crime Victims Fund: \nAwarded through the FY2009 Crime Victims Fund (the Fund), a major funding source for victim services nationwide, these funds will go towards supporting and enhancing local services in New Jersey for victims of crime such as crisis intervention, emergency shelter, emergency transportation, and counseling. Reimbursement for certain expenses like funeral costs, mental health counseling, and lost wages/support compensation may also be available for victims.\n$356,400 -- Enforcing Underage Drinking Laws Block Grants Program: \nThe goal of the Enforcing Underage Drinking Laws (EUDL) Program is to support state efforts, to enforce laws prohibiting the sale of alcoholic beverages, or the consumption of alcoholic beverages by minors under 21 years of age. These funds will help the State of New Jersey implement a multifaceted initiative - in joint efforts with local agencies and organizations-- to limit the availability of alcohol to persons under 21, track the number who try to purchase alcohol or individuals that purchase alcohol for them, and educate parents and teachers on the risks of underage drinking, and promote parental involvement in these type of cases.\n$379,727  -- Internet Crimes Against Children Task Force Program:\nThese funds will help support New Jersey Department of Law and Public Safety (specifically the New Jersey State Police) efforts to provide a rapid and effective response to technology facilitated children exploitation in New Jersey. The New Jersey Internet Crimes Against Children (NJ ICAC) Task Force will continue its work to prevent the exploitation of children facilitated by online technologies by developing innovative ways of tracking social networking sites, file sharing systems, games and other online activities. It will also continue, and enhance, community outreach efforts to educate parents, children and other individuals concerned with the protection of minors.\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=282b9a44-2849-4188-ac4a-faabb19ebb97,\"Twelve Senators Outline Principles for Comprehensive Climate and Energy Legislation to Majority Leader Reid\n                    \n                            Letter Outlines Items They Will Work to Include in Upcoming Legislation\n                    \n                      July 22, 2010\n                     \nWashington, DC - A group of twelve Senators today\ndetailed key principles they will work to include in energy and climate\nlegislation expected to be considered in the coming weeks.  In a letter to\nMajority Leader Harry Reid (D-NV), the Senators urged him to include these\nbaseline principles in legislation he may bring to the floor.\nThe letter was signed by Senators Sheldon Whitehouse (D-RI),\nBen Cardin (D-MD), Patrick Leahy (D-VT), Jack Reed (D-RI), Frank Lautenberg\n(D-NJ), Robert Menendez (D-NJ), Bernie Sanders (I-VT), Jeff Merkley (D-OR),\nJeanne Shaheen (D-NH), Ted Kaufman (D-DE), Kirsten Gillibrand (D-NY), and Al\nFranken (D-MN).\nIn the letter, the senators wrote the following:\n\"\"In the wake of the disastrous and\nongoing oil spill in the Gulf of Mexico, it is even more essential that the\nSenate act quickly to reform our nation's energy policy to end our dependence\non foreign oil, make a significant commitment to clean, renewable energy, and\nensure that polluters pay for the cost of these investments by establishing a\nprice on pollution from traditional fossil fuels.   A strong bill\nthat includes these priorities will sufficiently drive the necessary investment\nin clean energy technology to create the well-paid jobs that will revitalize\nour economy and sustain it for generations to come.\"\"\nThe letter outlined the following four principles:\nOil Spill Response and Prevention\nReducing our Dependence on Foreign Oil\nClean Energy Jobs\nMaking Polluters Pay\n\nFull text of the letter:\n\nDear Majority Leader Reid,\nThank you for your continued work to bring comprehensive\nclean energy and climate legislation to the Senate floor.  As you work to assemble\na comprehensive bill we wanted to share with you some of our key principles for\nthis legislation. \nIn the wake of the disastrous and ongoing oil spill in the\nGulf of Mexico, it is even more essential that the Senate act quickly to reform\nour nation's energy policy to end our dependence on foreign oil, make a\nsignificant commitment to clean, renewable energy, and ensure that polluters\npay for the cost of these investments by establishing a price on pollution from\ntraditional fossil fuels.   A strong bill that includes these\npriorities will sufficiently drive the necessary investment in clean energy\ntechnology to create the well-paid jobs that will revitalize our economy and\nsustain it for generations to come.  This will also give American businesses\nthe certainty they need to make investment decisions that will allow them to\ncompete in and win the global race for clean energy technology\nleadership. \nThe attached principles also reflect priorities President\nObama has consistently supported as essential components of comprehensive clean\nenergy legislation.  We look forward to working with you to assemble and\npass a strong bill that will establish the United States as a world leader in\nthe rapidly emerging clean energy economy.\nFull text of the principles:\n\nPrinciple I:  Oil Spill Response and Prevention\nWe need to pass legislation to ensure that BP and its\ncontractors, not the American people, pay the full cost of the Deepwater\nHorizon disaster, and that oil spill liability laws work to deter future spills. \nWe also need to prevent future oil spills with provisions that reform\nregulation of offshore oil and gas production, increase penalties for\nviolations of environmental and worker safety standards on the outer\ncontinental shelf, and prohibit drilling in certain coastal areas. \nPrinciple II:  Reducing our Dependence on Foreign\nOil\nThe United States imports 57% of the oil we use, and 70% of\nthose imports come from outside North America.  All told, we send $1\nbillion overseas every day to feed our oil addiction.  Those funds\noften go to countries that do not have our best interests at heart.  To\nreduce this dependence, we should set a national target to eliminate imports\nfrom OPEC nations in 20 years, and enact a national plan to meet that goal. The\nplan will start by building on the recent agreement to improve fuel efficiency\nstandards through 2016 by driving demand for electric vehicles, investing in\nalternative fuels, and improving access to public transportation. We can pay\nfor these new initiatives by rolling back wasteful subsidies for the\nworld's largest energy companies or with revenue from a price on oil\ncompanies' carbon pollution.  In just the first quarter of this year, the\nfive largest oil companies reaped over $23 billion in profits. \nPrinciple III:  Clean Energy Jobs\nInvestments in renewable energy and energy efficiency\ngenerate more jobs per dollar invested than conventional energy\ntechnologies.   According to the Pew Charitable Trusts, jobs in these\nsectors grew two and a half times faster than jobs in the economy as whole\nbetween 1998 and 2007.  This is just the tip of the iceberg - according to\nan analysis by the University of Massachusetts, Amherst, investments in clean\nenergy could create 1.7 million net new jobs in the next ten years,\nsignificantly increasing our industrial and manufacturing\ncompetitiveness.  \nTo drive clean energy job growth, while cutting emissions\nand saving consumers money on their energy bills, clean energy legislation should\ninclude a more ambitious renewable energy and energy efficiency standard than\nthe one currently proposed in ACELA.  In addition, legislation should\ninclude a significant investment in the research, development, and deployment\nof renewable energy and energy efficiency technologies, worker training, \nand clean energy financing.  To lower the cost of emissions reductions and\nhelp achieve pollution reduction targets, legislation should allow for domestic\noffsets from agriculture and forestry projects.          \nPrinciple IV:  Make Polluters Pay\nThe single most important action we can take to reform our\nenergy policy and make the United States a leader in the global clean energy\neconomy is to make polluters pay for the pollution they emit.  President\nObama has consistently called for establishing a price on carbon as part of any\ncomprehensive clean energy legislation Congress passes.\nPutting an effective price on carbon will drive investment\nin clean energy technology and create the well-paid jobs that will revitalize\nour economy and sustain it for generations to come.  A carbon price will\nalso provide certainty in the energy market, and allow American businesses to\nmake the investment decisions that will allow them to compete in and win the\nglobal race for clean energy technology leadership. \nA price on carbon can be achieved in a number of different\nways, but should include the following characteristics:\nA target of at least a 10% reduction in greenhouse gas\n     pollution from 2009 levels by 2020, and an 83% reduction by 2050. \n     This 1% reduction per year through 2020 is consistent with President\n     Obama's goal of a 17% overall reduction in greenhouse gas pollution by\n     2020.  \nEqual or greater investment in energy efficiency and\n     renewable energy as for subsidies given to traditional, non-renewable\n     fuels from revenues raised by establishing a price on carbon. \nProtect consumers by returning a majority of the\n     revenue generated from pricing carbon directly to American\n     households.  \nRetain all existing authorities related to conventional\n     pollutants.  We should not weaken existing pollution laws that\n     protect public health and the environment in exchange for establishing a\n     price on carbon.  \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1294a50b-19aa-4711-ba2e-aca2d5037d8f,\"MENENDEZ STATEMENT AFTER MEETING WITH BRITISH PM CAMERON\n                    \n                      July 20, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee who will chair a July 29 hearing on the release of the Lockerbie bomber, released the following statement after he and three senate colleagues met with British Prime Minister David Cameron this evening at the British Ambassador’s residence:\n“I appreciate Prime Minister Cameron’s willingness to meet with us on this important national security matter. We are in absolute agreement that the convicted terrorist who killed 270 people over Lockerbie should never have been allowed to taste freedom. Our agreement on that matter alone, however, does not mean ‘Case closed.’ It does not fully explain the factors that caused such a mistake in the first place. Only with complete information about the circumstances surrounding al-Megrahi’s release can we get the full understanding that is needed to determine the next steps. In addition to Prime Minister Cameron’s action to release additional information on al-Megrahi’s release, we hope he will reflect upon the request we brought him tonight for his government to launch a full investigation. Next week, I will chair a Senate Foreign Relations Committee hearing on this matter, which could provide us with additional answers. The Prime Minister agreed  to ensure that his government cooperates with committee requests in connection to the hearing, which I also appreciate.”  \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dc04e902-63f4-4c90-9aad-0e9b22922343,\"MENENDEZ HAILS CLOTURE FOR UNEMPLOYMENT INSURANCE EXTENSION AFTER WEEKS OF REPUBLICAN OBSTRUCTION\n                    \n                            Republican delay of extension affected 52,800 laid off workers in New Jersey\n                    \n                      July 20, 2010\n                     \n\n\n\n\n\n\n\n\n\nWASHINGTON - Today, after weeks\nof Republicans filibustering and blocking legislation to extend unemployment\ninsurance for laid-off workers during the worst economy in generations, the\nU.S. Senate advanced an extension through the end of November. By a 60-40 vote,\nthe legislation overcame a Republican filibuster and heads toward final\npassage. Under the extension, the federal government would continue to provide\nassistance for up to 99 weeks of unemployment insurance for laid off workers.\nAccording to U.S. Department of Labor statistics, the obstruction of the\nunemployment insurance extension was affecting 52,800 laid off workers in New\nJersey. In total, 463,800 New Jerseyans are receiving unemployment insurance.\nU.S. Senator Robert\nMenendez (D-NJ) voted for and hailed today's vote:\n\"\"For New Jersey's\nlaid off workers desperately looking for new employment in the toughest job\nmarket in generations, this emergency assistance is critical to putting food on\nthe table and keeping a roof over head. By helping these families to stay\nafloat, we are helping to ensure that our economic recovery is not cut short.\"\"\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=17b3f41b-a409-4155-87e0-96ead0895be4,\"NY, NJ SENATORS REQUEST MEETING WITH UK PM CAMERON TO DISCUSS LOCKERBIE CASE DURING WASHINGTON VISIT THIS WEEK \n                    \n                            Senators Want UK to Launch Full Investigation into Release of al-Megrahi and Potential Involvement of BP Secretary Clinton Intends to Encourage UK Officials to Undergo Further Review\n                    \n                      July 19, 2010\n                     \n\n\n\n\n\n\n\n\n\nWashington, DC - With growing concerns\nabout the circumstances surrounding the release of convicted terrorist\nAbdelbaset al-Megrahi, U.S. Senators Kirsten Gillibrand, Charles E.\nSchumer, Frank Lautenberg, and Bob Menendez are requesting a formal meeting\nwith British Prime Minister David Cameron during his visit to the United States\nthis week. Prime Minister Cameron is scheduled to meet with President Barack\nObama on Tuesday at the White House.\n\"\"The discrepancy in Mr. al-Meghrahi's\nlife expectancy has brought back into focus the concerns that we and others\nexpressed last year when he was released,\"\" the Senators wrote in their\nletter. \"\"We have read the reports of the correspondence between the former\nBritish government and the Scottish government with respect to negotiations\nwith the Government of Lybia, particularly whether the Prisoner Transfer\nAgreement (PTA) would include Mr. al-Meghrahi.  We have also been dismayed\nto hear from a BP representative that the company actively lobbied the previous\ngovernment on behalf of the PTA, and media reports suggest BP even tried to\naddress the release of this individual.\"\"\nIn response to an\ninquiry from the four Senators, Secretary of State Hillary Clinton\nindicated that she is also requesting the British government to review the\nfacts and circumstances leading to the release of al-Meghrahi.  \nAt the Senators urging, the US Senate\nForeign Relations Committee is set to hold a hearing on July 29 to investigate\nall the circumstances surrounding the release of al-Megrahi, including the\npotential role BP played. Senators Gillibrand and Menendez serve on the Foreign\nRelations Committee. Senator Menendez will chair the hearing.\n\nFull\nletter is included below:\n\nThe\nRight Honorable The Prime Minister and First Lord of the Treasury\n10\nDowning Street\nLondon,\nSW1A\n2AA\nUnited\nKingdom\n \nDear\nPrime Minister,\n \nWe\nwelcome you on your first visit to Washington, D.C. as the Prime\nMinister.  We would greatly appreciate the opportunity to meet with you\nwhile you are here.\n \nWe\nvalue the historic and close friendship and alliance between our two\ncountries.  Considering our many ties and common interests, we are certain\nyou appreciate the considerable concern that we have that a terrorist convicted\nfor the death of 270 people, most of them our countries' citizens, continues to\nlive in freedom and comfort eleven months after release because he was judged\nto be near death.\n \nThe\ndiscrepancy in Abdelbaset al-Megrahi's life expectancy has brought back into\nfocus the concerns that we and others expressed last year when he was released.\nWe have read the reports of the correspondence between the former British\ngovernment and the Scottish government with respect to negotiations with the\nGovernment of Lybia, particularly whether the Prisoner Transfer Agreement (PTA)\nwould include Mr. al-Megrahi.  We have also been dismayed to hear from a BP\nrepresentative that the company actively lobbied the previous government on\nbehalf of the PTA, and media reports suggest BP even tried to address the\nrelease of this individual.\n \nConsidering\nthat you, likewise, raised concerns last year about the release, we hope to\nhave the opportunity to speak to you about this matter, and what we can all do\nto provide greater transparency into the circumstances surrounding the release,\naddress the injustice, and ensure that a similar mistake is not repeated.  \n \nWe\nhave been advised by Secretary of State Clinton that she has likewise requested\nyour government to review the facts and circumstances leading to the release of\nal-Meghrahi.  We believe that doing so is in the best interest of both of\nour countries and in the service of justice.\n \nAgain,\nwe respectfully request to meet with you this week while you are in\nWashington.  \n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f80cff4b-20d1-40d0-a50d-043917556421,\"MENENDEZ RESPONDS TO BRITISH P.M. CAMERON DECLINING MEETING ON LOCKERBIE BOMBER RELEASE\n                    \n                            Senator says Cameron should ensure full cooperation of British government with Foreign Relations Committee hearing he will chair next week\n                    \n                      July 19, 2010\n                     \nWASHINGTON - According to news\nreports, British Prime Minister David Cameron has declined a request by\nSenators Robert Menendez (D-NJ), Kirsten Gillibrand (D-NY), Frank Lautenberg\n(D-NJ) and Charles Schumer (D-NY) to meet to discuss the circumstances\nsurrounding the release of Lockerbie bomber Abdelbasset al-Megrahi from a\nScottish prison last year (click here for text of request: http://menendez.senate.gov/newsroom/press/release/?id=17b3f41b-a409-4155-87e0-96ead0895be4).\nCameron will be in Washington this week as questions mount about the inaccurate\nmedical prognosis that allowed al-Megrahi to be released on compassionate\ngrounds and the possible influence of a BP oil deal with Libya on the decision\nto release him.\nSenator Menendez will\nchair a July 29 Foreign Relations Committee hearing on the matter (click here\nfor announcement: http://menendez.senate.gov/newsroom/press/release/?id=ef3930bc-0d8c-4bbb-b403-b62f0a55c3e2).\nHe released the following statement:\n\"\"It is\ndisappointing that the Prime Minister will not agree to our meeting request, because\nit is critical for us to get the full story from the British government about\nthe release of al-Megrahi. Since he will not discuss this with us in person,\nthe Prime Minister should ensure that current and former British government\nofficials cooperate fully with our Foreign Relations Committee hearing next\nweek, including providing testimony if they are asked.\"\"\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b7e425f7-d374-423f-9779-5836111478db,\"MENENDEZ LETTER TO CLINTON URGING COMPLETION OF REPORT ON U.S. ASSISTANCE TO PAKISTAN\n                    \n                            Report was due to Congress on April 15, as a result of legislative provision Menendez passed last year\n                    \n                      July 19, 2010\n                     \nWASHINGTON - In the lead-up to\nSecretary of State Hillary Clinton current diplomatic trip to Pakistan, U.S.\nSenator Robert Menendez (D-NJ), a member of the Foreign Relations Committee,\nsent her a letter urging the completion of a Congressionally-mandated report on\nthe effectiveness of U.S. assistance to Pakistan. The report, mandated by a\nMenendez provision in last year's Enhanced Partnership with Pakistan Act,\nwas due to Congress on April 15, 2010.\nWith much of al\nQaeda's leadership believed to reside in the tribal areas along the\nPakistan-Afghanistan border, Pakistan has received more than $13 billion in\nU.S. taxpayer funds since the 9/11 attacks, $7.2 billion of which has been\nreimbursements to Pakistan's military. A recent RAND Corporation study\ncriticized the ineffectiveness of U.S. policy toward Pakistan as a reason that\nmilitants in that country still pose a significant threat to both Pakistan and\nthe U.S. (click here for study: http://www.rand.org/pubs/monographs/2010/RAND_MG982.pdf).\nMenendez was a lead requester of a 2008 Government Accountability Office report\nthat also cited ineffectiveness in the U.S. strategy with relation to Pakistan\n(click here for report: http://menendez.senate.gov/newsroom/press/release/?id=af906cd4-b23a-46f5-a00a-e12631c3138c).\n\"\"Analysis from\nindependent observers like RAND and new threats from those like Faisal Shahzad\nreaffirm the necessity to define, revisit, and if necessary, reassess our\nstrategy,\"\" wrote\nMenendez. \"\"That is why in the U.S. Senate, I have been an advocate for a\nsmart and comprehensive strategy-one with quantifiable metrics and regular\nmonitoring to ensure not only accountability, but to provide a framework for\nconstant improvement. There is no doubt that we are dealing with complicated\nissues in a volatile region; the threat of terrorism originating from Pakistan\nis no less complex and challenging. It calls for a plan utilizing all elements\nof U.S. national power, which is why I urge the prompt completion of the\ncomprehensive strategy and monitoring reports on security and foreign\nassistance in the region.\"\"\n\n           \nPDF of letter to Clinton: http://menendez.senate.gov/imo/media/doc/20100702ltr_Pakistan.pdf\n\n           \nText of letter:\n\nJuly\n2, 2010\n\nThe Honorable Hillary Clinton\nSecretary of State\nU.S. Department of State\n2201 C Street, NW\nWashington DC, 20520\n\nDear Secretary Clinton:\n\nI appreciate the efforts you and\nthe State Department have made to build a comprehensive relationship with the\nGovernment of Pakistan, and note positive outcomes of the recent Strategic\nDialogue held with Pakistan.  I certainly appreciate the complexity of the\nU.S. relationship with Pakistan and the important role it plays in our regional\nstrategy, particularly with respect to Afghanistan.  However, despite all\nof this, democracy and institutions of civil society in Pakistan are as fragile\nas ever, allowing the Taliban to expand its reach. \nAs you know, Faisal Shahzad\npleaded guilty last week to the failed act of terrorism in Times Square,\nconfirming that the Tehrik-i-Taliban Pakistan (TTP) helped train and finance\nhim. Last month, I urged you to place the TTP on the list of Foreign Terrorist\nOrganizations, and I have committed to joining fellow Senators in advancing\nlegislation that designates the TTP as an FTO.  These recent events have\nmade clear that we must do more to assess the progress of our counter-terrorism\nefforts in Pakistan.  In the interest of strengthening our national\nsecurity and protecting the American people, I am writing to urge you to\nprovide several outstanding, Congressionally-mandated updates on the effectiveness\nof U.S. assistance to Pakistan and on that government's efforts to cease\nsupport for terrorist groups.\nAlthough\nthe recent failed attack in New York serves as another wake-up call, the ties\nto Pakistan come as no surprise. As early as February 2008, I co-requested a\nseries of reports from the Government Accountability Office to assess controls\nand counter-terrorism efforts along the Afghanistan-Pakistan border.  Among\ntheir findings was that the U.S. lacked a comprehensive plan to combat the terrorist threat in the FATA, and that congressional\noversight and agency monitoring efforts were needed to ensure U.S. funds were\nused as intended. \nTo address these critical needs, Congress passed the\nEnhanced Partnership with Pakistan Act of 2009, which was signed into law\non October 15, 2009. As the chairman of the Senate Foreign Relations\nsubcommittee in charge of foreign assistance, I secured provisions in Section\n302(a) of the legislation mandating an\nassessment of the effectiveness of assistance provided in achieving desired objectives\nand outcomes.  Section 302(a) of the Act also requires the State\nDepartment, in consultation with the Secretary of Defense, to provide an\nevaluation of efforts undertaken by the Government of Pakistan to disrupt,\ndismantle, and defeat al Qaeda, the Taliban, and other extremist and terrorist\ngroups in the FATA and settled areas. This report was due to Congress on June\n15, 2010, and has not yet been received.\nAdditionally,\nsection 301(b) of the Act mandates that the President produce a\ncomprehensive interagency regional security strategy to eliminate terrorist\nthreats and close safe havens in Pakistan. I understand this security strategy\nis still being cleared by the State Department. Similarly, section 301(c) of\nthe Act mandates that the Secretary of State provide a comprehensive\nsecurity-related assistance plan, but that has also not been received. Both\nreports were due by April 15, 2010, and I urge the prompt completion there\nimportant reports.\nAbsent these reports, my concern\nabout our lack of a comprehensive plan to combat the terrorist threat in the\nFATA was amplified by new findings from the RAND Corporation.  RAND\ndetermined that the rising number of terrorist plots\nin the U.S. with links to Pakistan is partly a result of an unsuccessful\nstrategy by Pakistan and the U.S. to weaken the range of militant groups\noperating in Pakistan. It further suggested that \"\"currently, U.S. assistance focuses too little\non conditioning aid on verifiable progress.\"\"\nSince September 11, 2001, the U.S. has sent more than $13\nbillion in military and economic foreign assistance to Pakistan, including $7.2\nbillion in Coalition Support Funds intended to aid in Pakistan's fight against\nterrorists. Now that the Enhanced Partnership with Pakistan Act has tripled\nnon-military aid to $1.5 billion annually until FY 2014, it is more critical\nthan ever that oversight and accountability controls\nare abided by to ensure that American taxpayer money is used effectively and\nresponsibly.\n\nAnalysis\nfrom independent observers like RAND and new threats from those like Faisal\nShahzad reaffirm the necessity to define, revisit, and if necessary, reassess\nour strategy. That is why in the\nU.S. Senate, I have been an advocate for a smart and comprehensive strategy-one\nwith quantifiable metrics and regular monitoring to ensure not only accountability,\nbut to provide a framework for constant improvement.\nThere is no doubt that we are\ndealing with complicated issues in a volatile region; the threat of terrorism\noriginating from Pakistan is no less complex and challenging. It calls for a\nplan utilizing all elements of U.S. national power, which is why I urge the\nprompt completion of the comprehensive strategy and monitoring reports on\nsecurity and foreign assistance in the region. I look forward to the\nassessments of the State Department, and to continuing to work together in\nkeeping America safe.\n\nSincerely,\n\n\nRobert Menendez\nUnited States\nSenator\n\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fa37dc61-f010-4989-b555-e1ef7421f07c,\"MENENDEZ REMARKS ON THE SENATE FLOOR AGAINST LIFTING OF CUBA TRAVEL RESTRICTIONS \n                    \n                      July 16, 2010\n                     \nWASHINGTON - U.S. Senator\nRobert Menendez (D-NJ) spoke on the floor today in strong opposition of lifting\ntravel restrictions to Cuba. Below is a video and the full text as prepared for\ndelivery of his remarks:\n\nVideo: http://www.youtube.com/watch?v=0D_hwusHDKY\n\nFull text of remarks, as prepared for delivery:\nMr. President, I have come to the floor many times to speak out about Cuba, and\ntoday I come to the floor once again -- this time in strong opposition to any attempt in this Chamber to pass any bill that in any way lifts or\nlessens the travel ban on Cuba -- any bill that eases regulations on the\nsale of U.S. products to the island.\nI want to make it\nabsolutely clear that I will oppose - and filibuster if need be -- any effort\nto ease regulations that stand to enrich a regime that denies its own people\nbasic human rights.\nMr. President, I do not\nwish to obstruct the business of this Chamber, but I know my colleagues on both\nsides of the aisle are well aware of how deeply I feel about freeing the people\nof Cuba from the repressive regime under which they have suffered for too long.\nThe fact is the big\ncorporate interests behind this misguided attempt to weaken the travel ban\ncould not care less whether the Cuban people are free. They care only about\nopening a new market and increasing their bottom line.\nThis is about the color\nof money, not the desire for freedom.\n\nThe very fact that a\ntravel bill has moved through the House Agriculture Committee makes one wonder\nwhy American agricultural interests would even care about travel to Cuba.\nOne can only assume\nit's about generating increased tourism dollars for the Castro regime to buy\nmore agricultural products.\nThat will serve only to\nenrich the regime and do absolutely nothing to bring democracy to the island.\nLet's be clear, those\nwho believe that increasing travel will magically breed democracy in Cuba are\nsimply dead wrong.\nFor years, the world\nhas been traveling to Cuba and nothing has changed.\nMillions of tourists from\ndemocratic nations have visited Havana and the Castro regime has not loosened\nits iron grip on its people...\n...it has not ended its\nrepressive policies...\n...and it has not stopped\nimprisoning and brutally abusing pro-democracy forces.\nThose who lament our dependence\non foreign oil because it enriches regimes in terrorist states like Iran,\nshould not have a double standard when it comes to enriching a brutal\ndictatorship like Cuba right here in our own backyard.\nPrisoner Release in\nContext\nHow coincidental that\nsuddenly, now that Congress is considering lifting a travel ban, the Castro\nregime is hoping the world will believe that it will release 52 prisoners of\nconscience.\nLet's set the record\nstraight.\nMany people are wrongly\nunder the impression - reading and watching media reports - that the 52\nprisoners have already been released and are free in Cuba.\nThe fact is only 7 have\nbeen released and forcibly deported from their country - another human rights\nviolation - instead of allowing them to stay and peacefully advocate for\nchange.\n...The remaining 47\nprisoners are set to be released but not now, not tomorrow, not next week, not\nnext month, but sometime during the next 3 to 4 months - or so the regime says.\nAccording to reports in\nthe Miami Herald, 9 of them have said they will refuse to leave for Spain if\nreleased, and the 7 who arrived in Madrid have vowed to continue their activism\nin exile.\nThey have told\nreporters they feel the shock of being forced to leave their country.\nOmar Rodriguez Saludes told\na reporter he feels \"\"like I was still in prison. I left behind part of my\nfamily. I still feel like I have the cuffs on my hands.\"\"\nThe released men said\nconditions in the prison were horrendous. They shared their cells with rats.\nDiseases infested the\nprison, they said - and told of inmates trying to kill themselves or do\nthemselves harm because of the squalid prison conditions they were forced to\nendure.\nJulion Cesar Galvez,\none of the dissidents told reporters: \"\"the hygiene and health conditions in\nprisons in Cuba are not terrible - they're worse than terrible. We had to live\nwith rats and cockroaches and excrement. It's not a lie.\"\"\nGalvez, a 66 year old\njournalist who was sentenced to 15 years in these horrible prisons said: \"\"There\nwere outbreaks of dengue fever and tuberculosis.\"\"\nHe said there were more\nthan 1,500 prisoners in the prison in Villa Clara - 40 prisoners to a cell\nmeasuring 32 square feet.\nAnother prisoner,\nNorman Hernandez said, \"\"The prisoners are tired of demanding their rights...\"\"\nThey lose all hope. They lose their desire to live and the try to hurt\nthemselves so they will get attended to.\nThese men were lucky to\nbe released, but they will not give up. They will tell their stories and they\nwill continue to fight for freedom for all Cubans.\nMr. President, it took\nthe regime only one night in March to arrest these 52 people. So we might ask\nourselves: Why will it take 4 months to release all of them?\nIt's not a coincidence\nthat during the next 3 or 4 months there will be members of this Chamber and\nmembers in the other body who will be looking to provide the Castro regime with\nbillions of dollars of added tourism revenue...\nIt's not a coincidence\nthat in September the EU will once again deliberate the wisdom of its remaining\nsanctions.\nThe nagging question\nthat lingers in my mind is: Will the 47 ever see the light of day or will they\nbe forcibly deported from their country and another 52 arrested overnight to\ntake their place?\nIt's possible the\nregime will never release them, because they don't want the world to see them\nbecause of the torture they've been subjected to...\nLast month, a man named\nAriel Sigler was released from a Cuban prison on the verge of death -- a 100\npound paraplegic who was arrested in 2003 as a 250 pound amateur boxer.\nAlso last month, the\nregime - once again - refused to let the U.N.'s Special Rapporteur on Torture\nvisit the island which, in my view, speaks volumes about the condition of the\nthousands of Cubans who have been imprisoned for \"\"dangerousness\"\" and other\ntrumped-up political charges.\nIf that is what's\nhappening to the 200 internationally recognized and known political prisoners,\nthen how much worse must it be for the thousands of anonymous political\nprisoners who have not been reported?\nAccording to the State\nDepartment, \"\"the total number of detainees is unknown because the government\ndoes not disclose such information and keeps its prisons off-limits to human\nrights organizations and international human rights monitors.\"\"\nAccording to the State\nDepartment, \"\"One human rights organization lists more than 200 political\nprisoners currently detained in Cuba in addition to as many as 5,000 people\nsentenced for ‘dangerousness.'\"\"\nYet, in the face of\nthis repression, some Members want to provide with its number one source of\nincome - tourism.\nMr. President, this is\nnot about travel.\nThis is about rewarding\na repressive regime.\nHundreds of thousands\nof Americans travel to Cuba for family, educational, or humanitarian reasons.\nTourism to Cuba is a\nnatural resource, akin to providing refined petroleum products to Iran.\nIt's reported that 2.5\nmillion tourists visit Cuba - 1.5 million from North America...\n...1 million Canadians...\nMore than 170,000 from England... More than 400,000 from Spain, Italy, Germany,\nand France combined - All bringing in $1.9 billion in revenue to the Castro\nregime - that's 765 convertible pesos per tourist.\nAnd yet nothing has\nchanged in Cuba except the amount of tourism dollars the regime has at its\ndisposal...\n...and while the money\nstill comes in, he still rations food keeping Cubans waiting in long lines for\na subsistence meal.\n\nThat's an irreversible\nconcession to a regime that, this week, arrested a Cuban-American for providing\nlaser printers and ink cartridges to a rural woman's opposition movement in Santiago.\nHe was interrogated,\nthe head of the movement's home raided by a dozen state security agents, the\nprinter and cartridges confiscated.\nHe was subsequently\nreleased and put on a plane back.\nMeanwhile an American\nremains imprisoned for helping the island's Jewish community connect to the\nInternet - after six months in jail -- still no trial or charges.\nThey were looking to\nhelp the Cuban people, but the regime doesn't want anyone helping. They want\ntourists to provide only one thing - hard currency.\nWomen in White - Zapata\n- Farinas\nVisiting the beaches of\nVaradero and sipping a Cuba Libre - an oxymoron - provides money to continue\nrepression but won't let the Cuban people sip the sweetness of freedom.\nIt won't change the\nplight of the Women in White - mothers and sisters who - every week - march for\nfreedom carrying white gladiolas who are beaten and repressed.\nIt won't change their\nfate of being imprisoned by the regime, released - only to be re-arrested over\nand over again.\nIt won't change the\ntragic fate of Orlando Zapata Tamayo- deemed a prisoner of conscience Amnesty\nInternational -- who died in February after being on a hunger strike for 85\ndays protesting horrific prison conditions.\n\nIt won't end the desire\nfor freedom or change conditions in Cuba for men like Guillermo Farinas who\nbegan his hunger strike after the death of Zapata, ending it after he heard of\nthe prisoner release, but vowing that he and other courageous Cubans would join\ntogether in yet another hunger strike if the 52 prisoners are not released and\nback in their own homes by November 7th.\nLifting the travel ban,\nallowing tourist dollars to flow to the regime will not end any of it. It will\nnot free the people of Cuba.\nIt will not change the\nfate of the Women in White or the desire for freedom of Guillermo Farinas.\nIt will only enrich the\nregime.\nReports this week have\npointed out the economic impact opening travel to Cuba will cause to the Gulf\nstates, Puerto Rico, the Virgin Islands, and our democratic neighbors in the\nCaribbean.\nThe dollars that will\nbe transferred from those tourism economies should be for the benefit of a\ndemocratic government in a free Cuba - not to bailout the brutal Cuban regime.\nThe Castros don't\ndeserve it and the U.S. Gulf states and our Caribbean friends can't afford it.\n\nAccording to the\nJamaica Daily Gleaner - \"\"The results of various studies of the likely impact\non the Caribbean of the lifting of the US travel ban suggest that Cuba's\ntourism arrival would surge to full capacity at the expense of other Caribbean\ndestinations...\n\"\"...Apart from Puerto\nRico and The U.S. Virgin Islands, the most heavily dependent Caribbean\ndestinations on the U.S. and the most vulnerable should the legislation to lift\nthe travel pass include The Bahamas, The Cayman Islands, Cancun, Bermuda,\nJamaica, and Belize.\"\"\nIt seems to me, Mr.\nPresident, we should be promoting tourism to the beaches along the Gulf Coast\n-- not to the apartheid beaches of Castro's Cuba.\n Conclusion - Against All Hope\nAllowing\nthe regime to benefit from increased tourism will not change a thing in Cuba.\nIt\nwill not bring democracy to Cuba.\nIt\nwill not make conditions for the Cuban people any better or change the history\nof brutality of the Castro regime - a brutality that continues to this day.\nWe\nwould do well to recall the words of Armando Valladeres, who wrote the\nprize-winning book Against All Hope.\nHe\nwas imprisoned in the infamous Isla de Pinos in 1960 for his opposition to\ncommunism.\nHe\nlived through the hell of Castro's jail, suffering violence, forced labor, and\nsolitary confinement.\nHis\nwritings were smuggled out, read throughout the world, and he was finally\nreleased after intense international pressure, twenty-two years after he was taken\nprisoner.\nHere\nare some of his memories of captivity at the hands of Castro:\n \n\"\"I\nrecalled the two sergeants, Porfirio and Matanzas, plunging their bayonets into\nErnesto Diaz Madruga's body....Boitel, denied water, after more than fifty days\non a hunger strike, because Castro wanted him dead; Clara, Boitel's poor\nmother, beaten by Lieutenant Abad in a Political Police station just because\nshe wanted to find out where her son was buried.... Officers...threatened family\nmembers if they cried at a funeral.\n\"\"I\nremember Estebita and Piri dying in blackout cells, the victims of biological\nexperimentation...So many others murdered in the forced-labor fields, quarries\nand camps.  A legion of specters, naked, crippled, hobbling and crawling\nthrough my mind, and the hundreds of men mutilated in the horrifying searches.\n\"\"Eduardo\nCapote's fingers chopped off by a machete.  Concentration camps, tortures,\nwomen beaten...\nAnd\nin the midst of that apocalyptic vision of the most dreadful and horrifying\nmoments in my life, in the midst of the gray, ashy dust and the orgy of\nbeatings and blood, prisoners beaten to the ground, a man emerged...\n\"\"...the\nskeletal figure of a man wasted by hunger with white hair, blazing blue eyes,\nand a heart overflowing with love,  raising his arms to the invisible\nheaven and pleading for mercy for his executioners.\n\"\"‘Forgive\nthem, Father, for they know not what they do.'  And a burst of machine-gun\nfire ripping open his chest.\"\"\nLet us remember these\nmemories of Armando Valladeres before we think about rewarding the Cuban regime\nin any way.\nTheir sins are too\ngreat and they are not a thing of the past. The brutality and repression have\nbeen going on since 1959...\n...It has never stopped.\nIt has never gotten better. It has never changed, and it never will until Cuba\nis free.\nWhen I hear my\ncolleagues come to the floor and talk about lifting the travel ban, I'm\ncompelled to ask: why is there such an obvious double standard when it comes to\nCuba?\nWhy are the gulags of\nCuba so different from the gulags of the old Soviet Union?\nWhy are we willing to\ntighten sanctions against Iran but loosen them when it comes to an equally\nrepressive regime in Cuba - in effect rewarding them?\nWhen it comes to Cuba,\nwhy are we so willing to throw up our hands and say: it's time to forget?\nMr. President, it is not time to forget. We can never forget those who have suffered and died at\nthe hands of dictators - whether in Iran, Cuba, or anywhere.\n\nIt is clear the\nrepression in Cuba continues unabated, notwithstanding the embargo, notwithstanding\ncalls by those who want us to ease travel restrictions, ease sanctions -\nnotwithstanding calls to step back and - in affect - let bygones be bygones....\nIn good conscience, I\ncannot do that. I cannot and will not step back.\nAs I said at the\noutset, I will come to this floor and oppose any attempt in this Chamber to\npass any bill that in any way lifts or lessens the travel ban on Cuba -- any\nbill that eases regulations on the sale of U.S. agricultural products to the\nisland.\nAs long as I have a\nvoice I will speak out in opposition to any such legislation.\nAs long as I have a\nvoice I will speak out against the Castro regime until Cuba is free.\nThank you, Mr. President, and with that\nI yield\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=da080bc0-d5ee-40b0-b514-86f79dcd80b6,\"Menendez, Lautenberg Announce Recovery Act Funding for Atlantic County Farm Workers\n                    \n                      July 16, 2010\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that American Reinvestment and Recovery Act (ARRA) grant funding will be awarded for employment-related services to assist blueberry farm workers in Atlantic County affected by layoffs.  The $1,656,673 grant, awarded by the Department of Labor (DOL) to PathStone Corp., will also provide employment-related services to affected farm workers in areas of New York, Ohio, Pennsylvania and Puerto Rico.\n\n\"\"From our farms to our factories, workers are struggling to find jobs and need our help,\"\" said Lautenberg who helped write the Recovery Act as a member of the Appropriations Committee.  \"\"This timely Recovery Act funding will offer critical support, training and employment services for dislocated farm workers in Atlantic County.\"\"\n\"\"New Jersey is called the Garden State for a reason, but like every other industry, our agricultural workers have suffered the effects of the Great Recession,\"\" said Menendez.  \"\"This investment will help ensure they have the skills and expertise to gain new, stable employment.\"\"\n\nPathStone is a not-for-profit regional community development and human service organization that provides services to farm workers, low-income families and communities throughout New Jersey, New York, Pennsylvania, Ohio, Indiana, Virginia, Vermont, and Puerto Rico.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6f7e298f-f21f-45a6-827a-e8c7358c0b01,\"Lautenberg and Menendez: Appropriations Committee Approves $35.6 Million for New Jersey Military Construction, Agriculture Projects\n                    \n                      July 16, 2010\n                     WASHINGTON, D.C. - U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that $35,658,000 in federal funds for New Jersey military construction and agriculture projects were approved in the Senate Appropriations Committee.  The projects were included in the FY 2011 Agriculture, Rural Development, Food and Drug Administration Appropriations bill and the FY 2011 Military Construction and Veterans Affairs Appropriations bill, which passed out of a key Senate committee today.  The bills now head to the full Senate for consideration.\n\n\"\"We must ensure our military bases receive the resources they need so that our troops get the best training and tools possible. These funds would help strengthen New Jersey's military infrastructure and improve facilities and equipment for our service members,\"\" said Lautenberg, who as a member of the Senate Appropriations Committee helped secure these funds. \nSenator Menendez said \"\"New Jersey's military bases play an important role in the defense of our nation, and these investments will help ensure our bases are modernized. These projects will help ensure that troops stationed here are well trained and well equipped for duty.\"\"\n\nMilitary Construction Funds for New Jersey - Total $34.9 million\n$18.4 million for the Joint      Base-McGuire Air Force Base to construct housing for enlisted personnel.\n$8.5 million for the Air      National Guard 177th Fighter Wing in Atlantic City to construct a fuel      cell maintenance dock that will provide covered and protected areas for      fuel systems maintenance.\n$8 million for the Joint      Base-McGuire Air Force Base to construct an integrated command facility.\n\n\"\"This funding bill would benefit New Jersey's farming community by providing critical research funds to develop hearty blueberry and cranberry varieties in the Garden State,\"\" stated Lautenberg.  \"\"We are also working to bring federal dollars to New Jersey to assist farmers and improve agricultural sustainability.\"\"\nSenator Menendez said: \"\"New Jersey is called the ‘Garden State' for a reason, and that is why these investments are so important. The health of our blueberries and cranberries and the sustainability of our farms help ensure economic security for New Jersey's farming families and helps our entire state prosper.\"\"\n\nAgriculture Funds for New Jersey - Total $758,000\n$522,000 for the Rutgers      University Phillip E. Marucci Center for Blueberry and Cranberry Research      in Chatsworth for the blueberry and cranberry disease and breeding      program.  The funding will be used for research to develop disease      and insect-resistant cranberries and blueberries and also to study links      between the consumption of these fruits and improved health.  New      Jersey is the second largest producer of highbush blueberries and the      third largest producer of cranberries in the country.\n$236,000 for the New      Jersey Association of Conservation Districts for conservation technical      assistance.  The funding will be used to help New Jersey farmers      develop conservation plans and assist municipal and county planners with      soil and other resource management strategies to help farms improve water      quality and increase sustainable farming.   \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ef3930bc-0d8c-4bbb-b403-b62f0a55c3e2,\"Senate Foreign Relations Committee To Hold Hearing On Lockerbie Bombing; Menendez to Chair\n                    \n                      July 16, 2010\n                     \nWashington,\nDC -Senate Foreign Relations Committee Chairman John Kerry (D-MA) today announced that\nthe Committee will hold a public hearing on\nJuly 29th  on the circumstances surrounding last year's release\nof Abdel Basset Mohamed al-Megrahi, the Libyan official who was convicted of\norchestrating the bombing of Pan Am Flight 103 in 1988.\n\"\"I opposed Megrahi's release on medical\ngrounds last year as a travesty and the details that have emerged in recent\ndays in the press have raised new concerns,\"\" said Senator Kerry. \"\"The bombing\nof Pan Am 103 was an unforgivable act of terrorism in which 189 Americans, including\nnine from Massachusetts, lost their lives. On behalf of those victims and their\nfamilies, we must get to the bottom of what led to the mistaken release of the\nonly person ever convicted for that terrible crime.\"\"\nSenator Robert Menendez, who will chair\nthe hearing, said: \"\"For\nour national security and for fundamental justice, we need answers about the\ncircumstances of this convicted terrorist's release, and we intend to get\nanswers at this hearing. The more it seems that this was a miscarriage of\njustice, the more it emboldens would-be terrorists who realize they can get\naway with murder. The more it seems like a rigged decision, the bigger an\ninsult it is to the families of 189 murdered Americans - 38 of whom lived in\nNew Jersey. Among those we will ask to testify are government experts and BP.\"\"\nMegrahi, a Libyan intelligence officer,\nwas sentenced to life in prison by a Scottish court for his role in the bombing\nover the Scottish village of Lockerbie. He was allowed to return to Libya last\nAugust after doctors told the Scottish government that he was likely to die of\ncancer within three months.\nAt the time, Senator Kerry was one of\nseven senators who tried to persuade the Scottish government not to release\nMegrahi. He said there should be no compassion for the man responsible for the\ndeaths of 270 people.\nIn recent days, questions have been\nraised about the release and whether Megrahi, who is still alive, was suffering\nas seriously as described by doctors at the time.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c9e1f200-17ee-4efb-91c7-148a8d3af3b9,\"Menendez Hails Final Senate Passage of Landmark Wall Street Reform Legislation\n                    \n                            Bill contains a number of provisions championed by Menendez (LIST INCLUDED)\n                    \n                      July 15, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee who helped craft landmark Wall Street reform legislation, today hailed its final passage in the Senate by a 60-39 vote. The legislation will set in place common sense accountability rules for Wall Street that will rein in risky activities and end the need for big bank bailouts, while also establishing strong new consumer protections (complete summary of the legislation available here: http://banking.senate.gov/public/_files/070110_Dodd_Frank_Wall_Street_Reform_comprehensive_summary_Final.pdf). Menendez authored and successfully included a number of consumer protection and Wall Street accountability provisions in the bill.\n\n“As a result of this landmark bill, accountability is coming to Wall Street, which means that greater economic security is coming to Main Street,” said Menendez. “Had these common sense rules and consumer protections been in place before the recession, they would have saved millions of lost jobs, prevented millions of home foreclosures, and protected trillions of dollars in lost savings. At the heart of these vital reforms is the common sense idea that our economy should be rooted in a free market, not a free-for-all market. We are helping to ensure that simple truth is realized.”\n\nProvisions in the final bill that Menendez helped to include:\n“Honest Broker” provision: guarantees that stockbrokers and other providers of investment advice act in the best interest of their clients and disclose all potential conflicts of interest. (Authored Senate amendment on this with Sen. Akaka)\nDisclosure of CEO-to-worker pay ratio: requires publicly-listed companies to disclose in their annual SEC filing the amount of CEO pay, the amount of the median company worker pay, and the ratio of the two. (Drawn from Menendez’s “Corporate Executive Accountability Act,” included during Banking Committee work)\nAvoiding systemic risk: requires financial regulatory agencies to produce regular reports on how they are using capital and liquidity standards to avoid systemic risk. (Included during Banking Committee work)\nPermanent financial education program: Creates a permanent Financial Education and Counseling Program that makes grants available to community groups to provide education. (Included during Banking Committee work)\nExpanded whistleblower protections: more protections for whistleblowers against employer retaliation at subsidiaries and affiliates of companies. (Included during Banking Committee work)\nGreater derivatives trades oversight: Requires all trades (both cleared and uncleared) to be reported to repositories. (Authored Senate amendment on this that was added in conference committee)\nOffice of Minority and Women Advancement: Creates Offices of Minority and Women Advancement at all the major financial regulatory agencies, which will be responsible for all matters of diversity in agency employment and contracting. (Authored Senate amendment on this, modified version added in conference committee)\nProhibiting brokers from voting client shares on key compensatory issues: prohibits brokers from voting clients’ shares without their consent in votes on “say on pay” and other significant decisions. (Drawn from Menendez’s “Corporate Executive Accountability Act,” included during Banking Committee work)\nMunicipal bond ratings:  helps local governments finance job-creating projects by requiring credit rating agencies to use a universal standard for corporate and municipal bonds. (Included during Banking Committee work)\nGreater disclosure of stock exchange rules (Included during Banking Committee work)\nFDIC remains regulator for community banks (Included during Banking Committee work)\nOff-sheet balance activity (relates to the type of accounting gimmicks Lehman Brothers used): requires regulators to take all off-balance sheet activities into account when calculating capital and other requirements. (Included during Banking Committee work)\nShareholders say on executive pay: gives shareholders the right to a nonbinding vote on companies’ executive pay policies. (included in Menendez’s “Corporate Executive Accountability Act,” included during Banking Committee work)\nExecutive pay for performance:  requires public companies to have a policy to recover incentive compensation that they erroneously paid to executives because they didn’t follow accounting rules, and gives FDIC power to claw back compensation when winding down big companies. (advocated this in Banking Committee)\nBanning steering payments to mortgage brokers:  payments that steered borrowers into subprime mortgages (co-sponsored amendment with Senator Merkley)\nDisclosure of remittance fees:  upfront disclosure of fees charged when consumers send money. (co-sponsored amendment with Senator Akaka)\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e76461b3-8432-436d-a6a7-7e639b563094,\"OFFICIAL GOVERNMENT REPORT ON AIRFARES HIGHLIGHTS NEED FOR MENENDEZ’S “CLEAR AIRFARES ACT”\n                    \n                            GAO report found that air travelers are kept in the dark about added fees and recommended new rules to increase transparency\n                    \n                      July 14, 2010\n                     \nWASHINGTON - The Government\nAccountability Office today released a report on airline fares, which\nhighlighted the need for U.S. Senator Robert Menendez's (D-NJ) Clear\nAirfares Act. The GAO found that a lack of information at the time of\nairline ticket purchase often keeps air travelers in the dark about fees they\nwill end up paying, and the GAO's recommendations include an increase in\nairline fee transparency when consumers search for a ticket (report available\nhere: http://www.gao.gov/new.items/d10785.pdf).\nMenendez's Clear\nAirfares Act aims to bring transparency to the price of flying through a full,\nclear and upfront breakdown of airfares. Before a consumer purchases a ticket\non the Internet, the legislation would require airlines and third-party\nwebsites to give consumers a complete and understandable breakdown of his or\nher particular airfare, as well as any other possible fees that might be\nincurred on the flight (such as baggage, seat assignments, etc.). A slightly\nmodified version of Menendez's bill to provide such breakdowns to consumers was\nincluded in the Senate Federal Aviation Administration reauthorization\nlegislation, which is in the process of being merged with the House-passed\nbill.\n\"\"This report confirms\nwhat most families who have flown recently can tell you: hidden airline fees\nhave gotten ridiculous,\"\" said Menendez. \"\"Families are watching every last\npenny during these tough times, and it doesn't help that they get blindsided by\nadditional fees when they show up to the airport. Whether it's a surcharge or\nbaggage fee, families should at the very least be given a clear listing of everything\nthey are expected to pay before they book their tickets. That's what the Clear\nAirfares legislation would do, and that's why I am pushing to ensure that\nit remains in the final version of the Federal Aviation Administration bill.\"\"\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=128e47fc-d8df-4a71-8d63-c92abbe0c610,\"SENATOR MENENDEZ HAILS ANNOUNCEMENT OF FREE PREVENTIVE HEALTH CARE COVERAGE AS PART OF HEALTH INSURANCE REFORM LAW \n                    \n                            New guaranteed coverage will remove financial barriers to preventive services such as mammograms and colonoscopies, and will reduce onset of common preventable diseases\n                    \n                      July 14, 2010\n                     \nWASHINGTON - The White House and the Department\nof Health and Human Services announced today new free preventive health care\ncoverage under the Affordable Care Act (Section 2713), that will help remove\nfinancial barriers for many New Jersey families to preventive services, such as\nmammograms, colonoscopies and immunizations. Beginning September 23, 2010, new\ninsurance plans issued on or after this date will be required to provide\ncoverage and not impose any cost-sharing requirements on a set of specific\npreventive health services. U.S. Senator Robert Menendez (D-NJ), who helped\ncraft various patient and family protection portions of the health insurance\nreform law, hailed the establishment of these new rights for consumers.\n\"\"Guaranteeing families access to free\npreventative health care services that will help cut down on preventable\ndiseases is yet another important health care right that is being delivered by\nthe health insurance reform law,\"\" said Menendez. \"\"There is a special focus in\nthese new common sense rules on services for women and children, who often\nrequire unique medical attention. The fact is that a staggering 70 to 75\npercent of annual deaths and health care costs can be reduced by simply\nfocusing our efforts on preventable diseases, which is exactly what this rule\nwill help to accomplish. Health care services that will help New Jerseyans\navoid or delay the onset of common diseases, such as obesity and heart disease,\nwill allow them to lead healthier and more productive lives and to save money.\nWe are also strengthening local economies by helping state governments reduce\ntheir spending associated with these types of diseases.\"\"\nThis new rule seeks to help prevent the onset\nof common and often preventable diseases such heart disease, cancer, and\ndiabetes and reduce health care costs nationwide by extending benefits to up to\n88 million Americans. In addition, it builds on other national initiatives to\npromote the prevention of these diseases. It is estimated that this type of\ndisease is accountable for 70 percent of deaths among Americans every year and\nfor almost 75 percent the nation's current health spending. Specific preventive\nhealth services covered and demographic groups targeted such as women and\nchildren, were determined based on the  recommendations of the United\nStates Preventive Task Force (http://www.ahrq.gov/clinic/uspstfix.htm),\nthe CDC Advisory Committee on Immunization Practices (http://www.cdc.gov/vaccines/recs/acip/),\nand Brighfutures -- HRSA Infant, Child and Adolescent Health\nPromotion and Disease Prevention (http://brightfutures.aap.org/about.html). \n\nWhite House Facts on the Affordable Care Act's New\nRules on Preventive Care\nCovering High-Value Preventive Services Including New Services for Women\nand Children \nPlans covered by these rules must\noffer coverage of a comprehensive range of preventive services that are\nrecommended by physicians and other experts without imposing any cost- sharing\nrequirements. Specifically, these recommendations include:\n Evidence-based preventive\nservices: The U.S. Preventive Services Task Force, an independent panel of\nscientific experts, ranks preventive services based on the strength of the\nscientific evidence documenting their benefits. Preventive services with a\n\"\"grade\"\" of A or B, like breast and colon cancer screenings, screening for\nvitamin deficiencies during pregnancy, screenings for diabetes, high\ncholesterol and high blood pressure, and tobacco cessation counseling will be\ncovered under these rules. \n\n Routine vaccines: Health\nplans will cover a set of standard vaccines recommended by the Advisory\nCommittee on Immunization Practices ranging from routine childhood\nimmunizations to periodic tetanus shots for adults. \n\n Prevention for children: Health\nplans will cover preventive care for children recommended under the Bright\nFutures guidelines, developed by the Health Resources and Services\nAdministration with the American Academy of Pediatrics. These guidelines\nprovide pediatricians and other health care professionals with recommendations\non the services they should provide to children from birth to age 21 to keep\nthem healthy and improve their chances of becoming healthy adults. The types of\nservices that will be covered include regular pediatrician visits, vision and\nhearing screening, developmental assessments, immunizations, and screening and\ncounseling to address obesity and help children maintain a healthy weight. \n\n Prevention for women: Health\nplans will cover preventive care provided to women under both the Task Force\nrecommendations and new guidelines being developed by doctors, nurses, and\nscientists, which are expected to be issued by August 1, 2011. \n\nGuidelines\nfor preventive services are regularly updated to reflect new scientific and\nmedical advances. As new services are approved, health plans will be required\nto cover them with no cost sharing for plan years beginning one year later. A\nfull list of the covered services is available at www.HealthCare.gov/center/regulations/prevention.html.\nWhat This Means for You \nDepending on your age and\nhealth plan type, you may gain easier access to such services as:\n Blood pressure, diabetes, and\ncholesterol tests; \n\n Many cancer screenings; \n\n Counseling from your health\ncare provider on such topics as quitting smoking, losing weight, eating better,\ntreating depression, and reducing alcohol use;\n3\n\n Routine vaccines for diseases\nsuch as measles, polio, or meningitis; \n\n Flu and pneumonia shots; \n\n Counseling, screening and\nvaccines for healthy pregnancies; and \n\n Regular well-baby and\nwell-child visits, from birth to age 21. \n\nRemoves Financial Barriers to Preventive Care \nThe new rules - which eliminate\ncost sharing for preventive services - will bring peace of mind to many\nAmericans who delay or skip important preventive care because of costs.2\nNationally,\nAmericans use preventive services at about half the recommended rate.3 An\nestimated 11 million children and 59 million adults have private insurance that\ndoes not cover adequately cover immunization, for instance.4 Cost sharing\n(including deductibles, coinsurance, or copayments) reduces the likelihood that\npreventive services will be used. One study found that the rate of women\ngetting a mammogram went up as much as 9 percent when cost sharing was removed.\nExtending Benefits to Up to 88 Million Americans \nNext\nyear, an estimated 31 million people in new employer plans and 10 million\npeople in new individual plans will benefit from the new prevention provisions\nunder the Affordable Care Act. The number of individuals in employer plans who\nwill benefit from the prevention provisions is expected to rise to 78 million\nby 2013, for a total potential of 88 million Americans whose prevention coverage\nwill improve due to the new policy. Many of the 98 million people in group\nhealth plans that are expected to be \"\"grandfathered\"\" and thus not subject to\nthese regulations already have preventive services coverage.\nWhile the estimated effect on premiums\nof this policy is roughly 1.5 percent on average, there are significant\nout-of-pocket savings for Americans who currently have no or limited coverage\nof preventive services. The new rules could provide significant savings for\nAmericans in greatest need of important, potentially life-saving preventive\nservices. For example, guidelines suggest that a 58-year old woman who is at\nrisk for heart disease should receive a mammogram, a colon cancer screening, a\nPap test, a diabetes test, a cholesterol test, and an annual flu shot; under a\ntypical insurance plan, these tests could cost more than $300 out of her own\npocket.\n\nThe proven\nbenefits of preventive services include short- and long-term effects on\npeople's health, productivity and the nation's health care costs:\n Improved\nhealth: One study found that effective delivery of just five preventive\nservices -colorectal and breast cancer screening, flu vaccines, and counseling\non smoking cessation and regular aspirin use - could avert 100,000 deaths each\nyear.7 In addition, effective cancer screening and early and sustained\ntreatment could reduce the cancer death rate by 29 percent.\n Greater\nworkplace productivity: Health problems are a major drain on the economy,\nresulting in 69 million workers reporting missed days due to illness each year,\nand reducing economic output by $260 billion per year.9 Some of this can be\naverted by increasing the use of proven preventive services.\n Reduced\nhealth care costs: One of the major health care cost drivers in the U.S. is\nthe rise of obesity and its related illnesses. Obese individuals have health\ncare costs 39 percent above average. Providing obesity reduction services and\nreducing disease related to obesity could lower premiums overall by 0.05 to 0.1\npercent. Other studies have found cost savings associated with other preventive\nservices: for example, every dollar spent on immunizations could save $5.30 on\ndirect health care costs and $16.50 on total societal costs of disease.10 A\nreview of preventive services by the National Commission on Prevention\nPriorities found that, in addition to childhood immunizations, two of the\nrecommended preventive services - discussing aspirin use with high-risk adults\nand tobacco use screening and brief intervention - are cost-saving in populations\nunder 65. By itself, tobacco use screening with a brief intervention was found\nto save an average of more than $500 per smoker.\n\nBuilds on Other Initiatives to Promote Prevention \n \nPrevention\nand Public Health Fund: The\nAffordable Care Act makes an unprecedented investment - $15 billion over 10\nyears - in health care programs and providers to prevent disease, detect it early, and manage\nconditions before they become severe. For fiscal year 2010, $500 million is\ndedicated to improving community and clinical prevention efforts, improving\nresearch and data collection and increasing the number of primary care\nprofessionals.\nPrevention and Wellness in Medicare and Medicaid: The Affordable Care Act also provides\nfor prevention without cost sharing under Medicare. On June 25, HHS issued new\nrules to eliminate cost sharing for recommended preventive services delivered\nby Medicare and to provide Medicare coverage - with no copayment or deductible\n- for an annual wellness visit that includes a comprehensive health risk\nassessment and a 5 to 10 year personalized prevention plan, starting in 2011.\nThe new law will also provide enhanced Federal Medicaid matching funds to\nStates that offer evidence-based prevention services.\nPrevention and Public Health Council: The Affordable Care Act creates a\nNational Prevention, Health Promotion, and Public Health Council, composed of\nsenior government officials, to\ncoordinate Federal prevention activities and design a National Prevention and\nHealth Promotion Strategy with input from stakeholders and communities across\nthe country to promote the nation's health.\nLet's\nMove: The First Lady's Let's Move\ninitiative gives parents the support they need to keep their kids healthy and\nhappy by providing healthier food in schools, helping our kids to be more\nphysically active, and making healthy, affordable food available in every part\nof our country.\nRecovery Act: Provides $1 billion for community-based initiatives,\ntobacco cessation activities, chronic disease reduction program, and efforts to\nreduce health-care-acquired infections.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=78b6ea23-0145-4897-a646-fdb62a5dd0a4,\"STABENOW, MENENDEZ DISCUSS THE REPUBLICAN JOB-KILLING AGENDA\n                    \n                      July 14, 2010\n                     \nWashington,\nDC-Senate\nDemocratic Steering Committee Chair Debbie Stabenow and Senator Bob Menendez\nheld a press conference this afternoon to discuss how Republicans have tried to\nstop the creation of millions of American jobs. From opposing tax cuts for small\nbusinesses to opposing clean energy jobs to protecting tax loopholes for CEOs,\nSenate Republicans have tried to kill policies that are creating jobs across\nthe country. Democrats are standing up for the middle class, and will continue\nto work to create jobs and get our economy back on track.\n\"\"Senate\nDemocrats have passed legislation that is helping our economy recover- creating\nmillions of jobs- yet our Republican colleagues have tried to block these\nmeasures at every opportunity along the way,\"\" said Senator Stabenow. \"\"From\nopposing tax cuts to help small businesses to blocking the extension of\nunemployment benefits for millions of American families struggling to find\nwork, Republicans continue their attempt to cut off our economic recovery, so they\ncan take us back to the policies that got us into this economic downturn in the\nfirst place. It's time Republicans quit trying to block efforts that are\nputting Americans back to work.\"\"\n\"\"Republicans\nhave a clear record of opposing job creation legislation, but they still have\nsought to create the impression that lingering softness in the jobs market is\nthe fault of Democrats,\"\" said Senator Menendez.  \"\"They should look in the\nmirror. If you enthusiastically supported the policies that devastated the jobs\nmarket in the first place, and you enthusiastically work to block a range of\njob creation legislation during the recovery, then it is fair to say that you\nhave adopted a Job Killer Agenda.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=feac3e18-9ec8-4988-a8d7-979c936f3ba7,\"Menendez, Schumer, Lautenberg and Gillibrand Call on BP to Suspend Drilling Activity in Libya\n                    \n                            Senators want full information on BP’s alleged involvement in gaining release of convicted Lockerbie bomber al-Megrahi\n                    \n                      July 14, 2010\n                     WASHINGTON - At a news conference today, U.S. Senators Robert Menendez (D-NJ), Charles Schumer (D-NY), Frank Lautenberg (D-NJ) and Kirsten Gillibrand (D-NY) called on BP to suspend its oil drilling plans in Libya until its role in the freeing of the Pan Am Flight 103 bomber is fully known. Before BP makes money off of drilling there, the senators want to know to what extent BP helped to facilitate the release of Abdelbaset al-Megrahi from a Scottish prison in order to finalize and expedite a $900 million offshore drilling deal with Libya. BP has admitted to pressuring the British government to complete a prisoner transfer agreement with Libya in 2007 in order to facilitate the oil drilling deal, though it has yet to acknowledge pressuring specifically on the release of al-Megrahi.\n\nMenendez said: \"\"The reports about BP's involvement in freeing this killer are more than just a side note - they add a potentially important piece to this case,\"\" said Menendez. \"\"If BP is found to have helped free this mass murderer, that would further de-legitimize the Scottish court's decision to grant him compassionate release. If BP is found to have gained access to Libyan oil reserves by using a mass murderer as a bargaining chip, then make no mistake, any money it makes off of that oil is blood money, pure and simple.\"\"\nSchumer said: \"\"Until BP's deal with Libya is properly investigated, this project off the coast of Libya should not break ground. If BP is truly dealing in good faith and has nothing to hide, it should cooperate with such an investigation. It almost too disgusting to fathom that BP had a possible role in securing the release of the Lockerbie terrorist in return for an oil drilling deal. The evidence may be circumstantial but if I were a prosecutor, I'd love to take this case to a jury.\"\"\nLautenberg said: \"\"The American people deserve to know how the Lockerbie Bomber got his ‘get out a jail free card. Today, I am calling on BP to make public all of its correspondence with British officials regarding the release of Libyan prisoners in the U.K.  While Megrahi was sent home to his family, 189 American victims never made it home to theirs.  Those families deserve to know if justice took a back seat to commercial interests.\"\"\nGillibrand said: \"\"The mystery surrounding Al Megrahi's medical diagnosis and the abundance of circumstantial evidence that BP played a role here is outrageous and demands immediate attention. What has happened here is a total miscarriage of justice. Al-Megrahi should never have been released - period. All Americans are well aware of the dangerous behavior that BP is willing to engage in the pursuit of profits. We've seen the results down in the Gulf. Now we are learning that they may have had a role in letting an international terrorist, who was convicted of murdering 270 innocent people, go free.\n\nIn 2001, al-Megrahi was convicted in the 1988 bombing over Lockerbie, Scotland that killed 270 people, including 189 Americans. He was released ten months ago on compassionate grounds after a medical prognosis estimated that he had three months to live. In recent days, a doctor involved in making that prognosis - who had been paid by the Libyan government - acknowledged that al-Megrahi could live another decade and that the Libyan government specifically pressed for a three month prognosis to satisfy Scottish judicial requirements for compassionate release.\nYesterday, the group of senators requested a full State Department investigation into BP's involvement in the al-Megrahi release (http://menendez.senate.gov/newsroom/press/release/?id=cbbb2f2e-0578-486f-bf92-4736e6ebd182).\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cbbb2f2e-0578-486f-bf92-4736e6ebd182,\"NJ, NY SENATORS WANT STATE DEPARTMENT INVESTIGATION INTO BP’S INVOLVEMENT IN LOCKERBIE BOMBER’S RELEASE\n                    \n                            Menendez, Lautenberg, Schumer and Gillibrand send letter to Sec. Clinton\n                    \n                      July 13, 2010\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ), Frank Lautenberg (D-NJ), Charles Schumer (D-NY) and Kirsten Gillibrand (D-NY) called on the State Department to investigate reports that oil giant BP helped secure the release of convicted terrorist Abdelbaset al-Megrahi in order to finalize and expedite a $900 million offshore oil drilling deal with Libya. Evidence continues to mount indicating that al-Megrahi’s release ten months ago constituted a gross miscarriage of justice. At the time, a medical team determined al-Megrahi had three months to live, which paved the way for his release; however, ten months later, it has been revealed that the doctors who made the prognosis received money from the Libyan government.\n“Evidence in the Deepwater Horizon disaster seems to suggest that BP would put profit ahead of people – its attention to safety was negligible, and it routinely underestimated the amount of oil gushing into the Gulf,” wrote the senators. “The question we now have to answer is, was this corporation willing to trade justice in the murder of 270 innocent people for oil profits? Answering this crucial question will help complete our understanding of the Scottish court’s decision to release this murderer and will help us understand if BP might use blood money to pay claims for damage in the Gulf of Mexico.”\nPDF of letter to Secretary Clinton: http://menendez.senate.gov/imo/media/doc/20100713ltr_BPLibya.pdf \nText of letter:\nJuly 13, 2010\nThe Honorable Hillary Rodham Clinton                     Secretary of State                                                       U.S. Department of State                                           Washington, DC 20520\nDear Secretary Clinton:\nWe write to urge the State Department to fully investigate the disturbing news reports linking BP to the deal that allowed for the release of convicted Pan Am Flight 103 bomber Abdelbaset al-Megrahi on compassionate grounds. The information that such an investigation would yield is important to fully determine the legitimacy of the decision to release this mass murderer and to fully understand the source of revenue streams for this corporation, which owes American taxpayers and coastal families billions of dollars.\nAs you may know, in 2007, BP and the Libyan government agreed upon a $900 million oil exploration deal, following two visits to Libya over the course of three years by then-British Prime Minister Tony Blair. It was reported in September of last year that BP communicated to the British government concerns that possible delays in the release of al-Megrahi could throw the oil deal into jeopardy. Further raising suspicions about circumstances surrounding al-Megrahi’s release, the son of Libyan leader Moammar Gadhafi has made statements alluding to the fact that oil interests were part of the discussions.\nInformation about the release has become even more outrageous in recent days. Not only has this terrorist lived long past the three-month death prognosis that cleared the way for his release, but it has been revealed that doctors who gave the prognosis were paid by the Libyan government.\nEvidence in the Deepwater Horizon disaster seems to suggest that BP would put profit ahead of people – its attention to safety was negligible, and it routinely underestimated the amount of oil gushing into the Gulf. The question we now have to answer is, was this corporation willing to trade justice in the murder of 270 innocent people for oil profits?\nAnswering this crucial question will help complete our understanding of the Scottish court’s decision to release this murderer and will help us understand if BP might use blood money to pay claims for damage in the Gulf of Mexico.\nThank you for your prompt consideration of this important request. Please do not hesitate to contact our offices if we can be of any assistance. Sincerely,\nROBERT MENENDEZ                                                                                        FRANK LAUTENBERGKIRSTEN GILLIBRAND                                                                     CHARLES SCHUMERUnited States Senate\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3b76eb85-fd78-4dd3-af81-4ce57f563446,\"Big Step Forward For  Menendez Bill To Help Law Enforcement  Quickly Locate Missing Persons\n                    \n                            Senate Judiciary Committee approves bipartisan bill, co-sponsored by Hatch, to support “A Child is Missing” program\n                    \n                      July 13, 2010\n                     WASHINGTON - The Senate Judiciary Committee today approved bipartisan legislation sponsored by Senator Robert Menendez (D-NJ) and co-sponsored by Senator Orrin Hatch (R-UT) to support the non-profit organization, A Child Is Missing. Under the legislation, the federal government would invest $25 million over five years into the program, which assists law enforcement efforts to locate missing persons quickly by generating 1,000 calls every 60 seconds to phone numbers in the immediate area where a missing person was last seen. The organization also provides missing persons training to law enforcement at no charge. The legislation now heads to the full Senate for consideration.\n\n\"\"Every single second during which a child is missing seems like an agonizing eternity to a parent,\"\" said Menendez. \"\"We want to ensure that parents and law enforcement have access to the tools that can most quickly and efficiently locate a missing person.  With state and local budget cuts threatening to overextend our community police departments, this legislation is needed now more than ever.  Today, we are one step closer to helping bolster a proven program that has helped ensure that hundreds of missing person horror stories had happy endings.\"\"\n\n\n\"\"For the parents and loved ones of the missing, the Senate took a bipartisan step forward today to better protect our children and elderly,\"\" said Hatch.  \"\"This legislation will provide much-needed resources to state and local law enforcement to help find and recover not only missing children, but college-age kids and the elderly with severe health issues.  By giving officers the tools to work a crime scene and to determine if the missing person is a victim of a crime, those missing can more easily be tracked down and returned home to their loved ones.\"\"\n\nThrough its efforts, A Child Is Missing has been credited with assisting law enforcement in the successful recovery of more than 700 missing persons since it was established in 1997. This system can often be initiated quicker than Amber Alert, which requires a confirmation that the missing person has been abducted. \nA Child Is Missing (ACIM) is the only program of its kind that assists in all missing cases involving abduction, children who are lost, wander or run away, the elderly (including those who suffer from Alzheimer's Disease), and mentally and physically challenged individuals.  When a person is reported missing to the police, ACIM utilizes the latest technology to place 1,000 emergency calls every 60 seconds to residents and businesses in the area where the person was last seen.  ACIM works in concert with the Amber Alert and all child safety programs, and has the support of law enforcement agencies all across the country, including the National Sheriff's Association and the National Chief's Association.\nA Child Is Missing also fills a critical gap in time.  Although the Amber Alert has been an extremely successful program, there is still a crucial void from when a child is first reported missing and when an Amber Alert, which is activated only in cases of abduction, can be issued.   Moreover, many local law enforcement agencies have scant resources and manpower to conduct searches that can cost as much as $400,000 over twelve hours.\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9508e589-26fb-482e-adbc-147ab294035a,\"MENENDEZ LETTER TO TIME ON JOEL STEIN’S ESSAY ABOUT INDIAN-AMERICANS IN NJ\n                    \n                      July 12, 2010\n                     WASHINGTON - In response to\nJoel Stein's essay in Time on the Indian-American community in Edison,\nNew Jersey (http://www.time.com/time/magazine/article/0,9171,1999416,00.html),\nU.S. Senator Robert Menendez (D-NJ) has submitted the following letter to the\neditor:\n\nTo the Editor: Joel Stein's attempt at humor at the expense of Edison, New Jersey's vibrant\nand productive Indian-American community (\"\"My Own Private India,\"\" July 5) not\nonly fell terribly flat but crossed the line of offensiveness toward a\nparticular community that has dealt with violent hate crimes in the past. Mr.\nStein's mocking allusions to revered deities in the Hindu religion are\nparticularly reprehensible. \nNew Jersey's Indian-American\ncommunity is one of our nation's many great immigration success stories. Those of\nIndian descent have introduced New Jersey to a rich and deep cultural tradition\nand have helped to spur prosperity and innovation. Unfortunately, our state's\nIndian-Americans have also contended with aggressive discrimination. In the\nlate 1980s, a New Jersey street gang calling itself \"\"The Dotbusters\"\" engaged in\nattacks, vandalism and threats directed at the burgeoning Indian-American\ncommunity. I am very familiar with the circumstances surrounding that sad\nepisode - it is a reason that I authored New Jersey's bias crimes law while in\nthe State Assembly. Words are more powerful than just a grouping of letters on\na page, and unfortunately, they are often misused to spur hatred.\nThe beliefs shared by many of our\nproductive, patriotic Indian-Americans may be comic fodder for Mr. Stein, but\nthey are sacred to hundreds of millions of Hindus worldwide, a number of whom\nhave contacted me to express their dismay. This type of ridicule can foster\nmisunderstanding about our differences and marginalize a vibrant segment of our\ncommunity. While I believe that Mr. Stein's purpose in his essay ultimately was to embrace\nthe burgeoning diversity in his hometown, I hope he understands that he\noffended a large number of its residents and, to some extent, opened old\nwounds. I also hope he will engage in a dialog with members of the local Hindu\ncommunity to learn more about their heritage and why the language he used is\nunacceptable. Sincerely,\nRobert Menendez\nUnited States Senator\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6f3a48fd-e09f-406c-9ba7-5f8b89d48b5d,\"SCHUMER, MENENDEZ CALL ON STATE DEPARTMENT TO PRESSURE LONDON TO RETURN LOCKERBIE BOMBER TO PRISON; AL-MEGRAHI WAS GIVEN ‘THREE MONTHS TO LIVE’ – REPORTS SAY TERRORIST COULD LIVE ANOTHER TEN\n                    \n                            Al-Megrahi Given Early Release Based on ‘Three Months to Live’ Diagnosis; Almost a Year Later, Convicted Terrorist Alive and Well and English Doctor Who Examined Him Said  He May Live Another Ten Years.   Scottish Government Refusing to Reinvestigate; New Evidence Strengthens Suggestion that Terrorist Was Released In Exchange for Oil Deal. \n                    \n                      July 12, 2010\n                     Almost a year after the release of Abdul Al-Megrahi, U.S. Senators Charles E. Schumer (D-NY) and Robert Menendez (D-NJ) today called on the US State Department to pressure London to immediately seek the return of convicted terrorist,  Abdelbaset al-Megrahi to Scottish prison. This past Friday, the Scottish government refused to reinvestigate the release of the Lockerbie bomber. Schumer and Menendez noted the release of al-Megrahi was predicated on his only have three months to live, yet the doctor who examined him now suggests the bomber of Pan Am flight 103 may well live for another ten years.\nAl-Megrahi, the only man convicted for taking part in the bombing of Pan Am flight 103 on December 21, 1988, was released by the Scottish Government in August 2009 as a compassionate gesture given al-Megrahi’s failing health. Al-Megrahi has now lived a full 8 months beyond the 3 months given for his compassion release. \nIn a letter sent last week to the British Ambassador to the United States, Schumer and Menendez, along with Senators Kirsten Gillibrand and Frank Lautenberg, raised concern that the doctors who consulted with the Justice Secretary had been paid by the Libyan government and were encouraged to provide a life expectancy of three months - a life expectancy estimate that is critical to satisfy Scottish guidelines for compassionate release.  According to news reports, Professor Karol Sikora, one of the Libyan-commissioned doctors, recently revealed that “the figure of three months was suggested as being helpful [by the Libyans].”  He explained that while he thought it was “impossible” to give a three-month life expectancy, he found he could do it, despite the fact that other doctors would not commit to such a short estimate. The doctor has since said al-Megrahi could live another ten years.\nDespite the request of Senators Schumer, Menendez, Gillibrand and Lautenberg, the Scottish government on Friday rejected reinvestigating al-Megrahi’s release, claiming due process had been followed and there was no further need to investigate the decision any further. The senators are demanding the US State Department pressure London to have him returned to prison immediately.\n“The decision by the Scottish government to reject our request to reinvestigate the decision to release this terrorist raises more suspicions as to whether there was a rotten deal between the United Kingdom and the Libya government,” said Schumer. “So we’re calling on the State Department to put a full court press on the United Kingdom to return this terrorist to prison.”\n\"\"The families of the 270 people who were murdered have already once lived through an unthinkable, real-life horror story. It’s as if they now are being forced to live through a sequel. They believed that justice had found the man who killed their loved ones, only to see that the system was rigged and that this terrorist is having the last laugh. This is outrageous and cruel. There are many reasons why the administration needs to use its weight in this situation – for the families whose loved ones were murdered, for national security, and for fundamental justice.\"\"\nWhile the Scottish government has claimed its decision to release al-Megrahi was wholly  independent of outside influence, several reports has suggested that under pressure from British authorities, the Scottish government facilitated al-Megrahi’s release to assist the UK with an oil deal with Libya.\nIn their letter to Secretary Clinton, Schumer, Menendez, Gillibrand, and Lauenberg stated the US Government must do everything in its power to pressure London to put a facilitate a  return of this convicted mass murderer of 270 people, 189 of whom were Americans, to Scotland to serve out the remainder of his prison sentence.\n###\nThe Honorable Hillary Rodham ClintonSecretary of StateUnited States Department of StateWashington, DC 20520\nDear Secretary Clinton:\nWe write to respectfully ask that the State Department work with the government of the United Kingdom to secure the return of Lockerbie bomber Abdelbaset al-Megrahi, the convicted mass murderer of 270 people including 189 Americans, to Scotland to serve out the remainder of his life prison sentence. On August 20, 2009, Scottish Justice Secretary Kenny MacAskill granted al-Megrahi a license of release based on compassionate grounds in accordance with the powers granted in section 3 of the Prisoners and Criminal Proceedings (Scotland) Act of 1993.  Based on the advice of doctors, Secretary MacAskill apparently believed that his decision was justified.  However, with the recent reports contradicting the veracity of these medical reports, we have serious concerns that this decision was based on inaccurate information. As we wrote in a recent letter to the British Ambassador to the United States, we were very troubled by the news that a doctor who provided medical analysis at the time of the release had been paid by the Libyan government.  This doctor was encouraged to provide a life expectancy of three months - a life expectancy estimate that is critical to satisfy Scottish guidelines for compassionate release.  According to news reports, Professor Karol Sikora, one of the Libyan-commissioned doctors, recently revealed that “the figure of three months was suggested as being helpful [by the Libyans].”  He explained that while he thought it was “impossible” to give a three-month life expectancy, he found he could do it, despite the fact that other doctors would not commit to such a short estimate. Despite our appeal to investigate this matter in light of the relevance of these new reports, we were disappointed to learn that the Scottish government rejected our request on Friday, July 9, claiming due process had been followed and there was no need to investigate the decision any further. Notwithstanding the Scottish authorities’ conclusions, it remains our position that the grounds for release are not justified and al-Megrahi should be sent back to Scotland to serve out the remainder of his prison term. In addition to a state-sponsored welcome home celebration authorized by Libyan leader Muammar al-Qadhafi, al-Megrahi has enjoyed ten months of freedom, reportedly living in the lap of luxury and working on an autobiography that would permit him to profit from his case.  Meanwhile, the families of 270 of his victims continue to suffer from the tragic loss of their loved ones.  The international community should not allow this terrorist to make a mockery of the justice system.           We believe that the administration should use its diplomatic leverage to secure the immediate return of this convicted mass murderer to Scotland to serve out the remainder of his prison sentence.\nThank you for your consideration of this important request. Please do not hesitate to contact our offices if we can be of any assistance. Sincerely,\nU.S. Senator Charles E. Schumer\nU.S. Senator Robert Menendez\nU.S. Senator Kirsten E. Gillibrand\nU.S. Senator Frank L. Lautenberg\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0793bdd0-f6c0-4c97-b601-452cb651154d,\"MENENDEZ STATEMENT ON CUBA’S PLANNED RELEASE OF 52 POLITICAL PRISONERS\n                    \n                      July 8, 2010\n                     \nWASHINGTON - With the announcement that the\nCuban government intends to release 52 political prisoners, US Senator Menendez\n(D-NJ) released the following statement today: \n \"\"While the news of an intended release of political prisoners is\ncertainly welcome for these prisoners, their families, and their followers,\nhistory has shown that these intentions may not be realized for some time, if\never.  Such statements should not be mistaken for an unclenching of the\niron first by which the Castro regime rules. We should not throw a parade for a\nregime that often says one thing and then does another, to include rearresting\nindividuals it has previously made a great show of freeing.  This is the\nsame regime that imprisoned these 52 individuals for seven years simply because\nthey exercised free speech, the same regime continues to incarcerate many more\nfor exercising their basic human rights, and the same regime that denies all\nCuban people the everyday freedoms that we take for granted in our country. We\nshould not believe that anything fundamental has changed when a U.S. citizen\nremains behind bars in Cuba, and when this action is suspiciously timed to\ncoincide with a new corporate-backed effort in Congress to loosen trade and\ntourism restrictions. The only way that the Castro regime can show that it\nfinally believes in freedom would be to free all political prisoners, to grant\nfull human rights to all Cuban people, and to allow the Cuban people to\ndetermine their own destiny.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=73e51c37-f4b6-441c-bd36-9c5fe4de9f92,\"MENENDEZ LAUNCHES “KITCHEN TABLE ECONOMICS” WEBPAGE\n                    \n                            Senator brings focus to economic issues faced by individual families\n                    \n                      July 8, 2010\n                     \nWEEHAWKEN - Today, at a \"\"kitchen\"\"\nround table economic discussion with New Jersey residents in Weehawken, U.S.\nSenator Robert Menendez (D-NJ) launched his new \"\"Kitchen Table Economics\"\"\nwebpage (click here: http://menendez.senate.gov/kitchen/).\nThe page is meant to focus attention on the economic and financial issues that\nare weighing on individual families and to create another direct line of\ncommunication about these issues between New Jersey families and Senator\nMenendez. Webpage features include:\n A\nbutton that residents can click to share the stories of what they discuss at\ntheir kitchen table with Senator Menendez. With their consent, some of these\nstories will be posted on the site. \n Senator\nMenendez will offer a response to some of the stories that are posted on the\nsite.\n An\ninformational resource for New Jersey residents detailing actions Senator\nMenendez has taken to address a wide range of Kitchen Table economic issues.\n\"\"The economics that\nfamilies care most about are their own household economics that are discussed\nat the kitchen table,\"\" said Menendez. \"\"It's important to understand monthly\njob creation numbers, housing starts and the consumer price index, but it is\nequally important to understand how individual families are confronting their\nindividual economic challenges. Creating a webpage to share individual stories,\nconcerns and hopes helps me stand up for New Jersey families in the Senate and\ngives New Jerseyans more information about my work to address their kitchen\ntable economic concerns.\"\"\n\nJoining Senator\nMenendez today at the \"\"kitchen\"\" round table discussion, which took place in the\nkitchen of the Potter Place Apartments, was a group of New Jersey residents\nwith individual economic concerns, including:\nCameron Michael and Anna Kruger - A New Jersey couple\n     expecting their first child; their health insurance considers her\n     pregnancy a pre-existing condition \nFrank Trombetta - An unemployed NJ resident who has\n     exhausted his unemployment benefits, is trying to start his own business\n     and has had difficulty securing a loan\nStephanie Jones - An unemployed NJ resident and married\n     mother of three currently receiving unemployment benefits, struggling to\n     keep her home, the family's retirement savings and considering bankruptcy \nTara Bakalian - An unemployed mother of two who has not\n     been able to get a job since September of 2009 and is trying to open her\n     own business\nWarren Becker - An unemployed union construction worker\n     and married father who will struggle to make ends meet without\n     unemployment benefits.\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=664efc2e-03a1-415b-be1e-7f59cec6f060,\"Senators Menendez, Lautenberg and Mayor Burzichelli Announce $1.5 Million for Port Infrastructure Development in Paulsboro\n                    \n                      July 8, 2010\n                     WASHINGTON - Today, US Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced that the U.S. Department of Commerce Economic Development Administration has awarded the Borough of Paulsboro $1,541,200 million in funding for port infrastructure development at what was previously the brownfield site of a closed oil refinery complex. This grant will be used to complete the first phase of the Water Services Infrastructure Project, part of the Paulsboro Port Development Program, with the construction of a new water tower. The second phase will direct resources towards the construction of upland facilities, including the construction of a water storage tank, which will represent an estimated additional $250 million in private investment. \n\n\"\"This is a major investment that will help create a state of the art port facility that will contribute to our state's economic competitiveness and help create local jobs for local families.\"\"  said Menendez. \"\"The construction of this port, the first new one on the Delaware River in the last 35 years, will help our state take increasing advantage of international and regional commercial opportunities. In these difficult economic times, this is precisely the type of project we need to help ensure economic growth and competitiveness for our state, now and in the future.\"\" \"\"This project is going to help strengthen Paulsboro's economy by expanding the regional port industry, creating good jobs and generating new revenue,\"\"  said Lautenberg, who serves on the Senate Appropriations subcommittee that funds the Department of Commerce.  \"\"Investing in our infrastructure is a proven way to create jobs and I am proud to help this critical South Jersey development project move forward.\"\"\n\"\"I want to extend a thank you to the Senators for their efforts to help secure this funding, which will both put people to work and allow our infrastructure to accommodate the new port.\"\"   said Paulsboro Mayor John J. Burzichelli. \"\"In the end, the investment in this project will create multiples of jobs. As Paulsboro works to reinvent itself, the Senators' role is incredibly vital because without their support for infrastructure, we cannot build a port and make way for permanent jobs and economic viability for the region.\"\"\n\n The Paulsboro Port Development Program will create new economic and employment opportunities for the Borough and the surrounding region. The result will be an improved site with the first new public port on the Delaware River in 35 years that will feature a modern portal facility, a solar power facility, and an industrial park, all contributing to the long-term economic recovery of the region.  In addition, this project will enable the State of New Jersey to become a prominent player in port business, and maintain a competitive position by providing state-of-the-art facilities and services to the region and internationally. It will allow the South Jersey Port Corporation, which lacks adequate space for future expansion of its Camden facilities, to double the level of port activity and maintain a competitive edge for New Jersey and other port facilities in the Region. \n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=136ef4ad-d8d2-48d7-9c32-df200b772f69,\"After New Reports That Lockerbie Bomber Still Alive, Gillibrand, Schumer, Lautenberg, Menendez Urge British Government to Investigate Release of Libya's Convicted Terrorist\n                    \n                            Senators: ‘Lockerbie Bomber Should Spend Rest of His Days in Prison’\n                    \n                      July 7, 2010\n                     Washington, DC – With new reports that Lockerbie bomber Abdelbaset Al-Megrahi is still alive nearly a year after the cancer-stricken terrorist was released on compassionate grounds based on medical evaluation that he had only three months left to live, U.S. Senators Kirsten Gillibrand (D-NY), Charles E. Schumer (D-NY), Frank Lautenberg (D-NJ), and Bob Menendez (D-NJ) are urging the British government to conduct a full investigation into the Scottish court’s decision to release the convicted terrorist. The Senators expressed concern directly to the British Ambassador to the United States that the Lockerbie bomber, who only served eight years of a life sentence and could now live for another decade, may have been released based on fraudulent medical evidence. \n\n“The latest reports are extremely troubling,” said Senator Gillibrand. We, in the United States, opposed the decision by the Scottish court to release Abdelbaset Al-Megrahi. Justice was not served and the families of Pan Am Flight 103 were forced to relive the horrific loss of their loved ones. Megrahi should serve his full sentence and spend the rest of his days in prison.”\n“There is clear reason to believe that this terrorist was released based on false information about his health,” said Senator Schumer. “This is especially galling to those of us who believed he shouldn't have been released even if it had been true that his death was imminent.”\n“I was outraged when Mr. al-Megrahi was released from prison and it is sickening that this convicted terrorist may have been released under false pretenses,” said Senator Lautenberg.  “This terrorist belongs in prison and these allegations must be investigated promptly.  As always, my thoughts remain with the families of the victims of Pan Am 103 as they relive this tragedy.”\n“When Abdelbaset Al-Megrahi was released a year ago we decried the fact that a convicted terrorist, who took the lives of hundreds of American citizens, had been set free under questionable circumstances concerning his health.” said Senator Menendez. Now, claims that he is still alive, looking like he may well live for many years to come, make it clear that British authorities need to fully investigate the evidence and circumstances surrounding his release. This is a matter not only of serving justice for the innocent individuals who lost their lives in Pan Am Flight 103, but also of protecting the international community from the threat of terrorists like him.”\n\nIn their letter to British Ambassador to the United States Nigel Sheinwald, the Senators noted the public allegations that the Lockerbie bomber’s release was motivated by business and political factors.  News reports have also alleged that the Libyan government commissioned one of the doctors to make the inaccurate three-month prognosis of the Lockerbie bomber in order to secure his freedom.  In 2001, Abdelbaset Al-Megrahi was convicted of murder and sentenced to life imprisonment for the 1988 bombing of Pan Am Flight 103, which killed 11 on the ground and all 259 on board, including 189 Americans, many of whom were New Yorkers and New Jersey residents.\nOn August 20, 2009, the Scottish Government released Al-Megrahi, based on grounds that he was diagnosed with prostate cancer and only had three months to live. Upon his return to Libya, the terrorist received a hero’s welcome. Senators Gillibrand, Schumer, Lautenberg, and Menendez condemned his release and demanded an apology from the Libyan government in a Senate resolution passed last year.\nRecent reports now reveal that the Lockerbie bomber outlived his three-month prognosis and, according to one of the doctors, could live for another 10 years or more.\nFull text of the letter is below: \nJuly 7, 2010\nHis Excellency Sir Nigel SheinwaldAmbassador of the United Kingdom3100 Massachusetts Avenue NorthwestWashington, DC 20008\nExcellency:\nWe are very troubled by the press reports this weekend that the 2009 release from jail by a Scottish justice on compassionate grounds of Lockerbie bomber, Abdelbaset Al-Megrahi, was based on potentially fraudulent evidence.  Our governments share a concern for the increased incidence of terrorist attacks against our countries and citizens. We are certain that we would all be concerned if it turns out that a convicted terrorist were released based on inaccurate evidence.\nAs you know, Mr. Al-Megrahi was the only one sentenced in connection with a shocking terrorist attack, impacting both of our countries. A number of our constituents continue to bear the emotional scars and financial burden of losing their loved ones in that attack on Pan Am 103 twenty-two years ago. It was of some consolation to them that at least one culprit was brought to justice.\nClose to one year ago, the Scottish court released Mr. Al-Megrahi on the basis of a doctor’s opinion that the Libyan attacker had only 3 months left to live. He had served only eight years of a life sentence. We raised concerns at the time of his release, specifically Libya’s unseemly reception for a convicted murderer and his lack of remorse for his actions.\nMr. Al-Megrahi is still alive and reportedly living in luxury. Furthermore this week, the doctor responsible for the key medical opinion has told the media that not only could Mr. Al-Megrahi live another 10 years, but that the Libyan government had commissioned the doctor to make his assessment, expressly because the Libyan government hoped for a 3-month prognosis. This is outrageous.\nThese newly revealed details threaten to undermine public trust in due process and justice for the victims of terrorism. Unfortunately, allegations are circulating in the media that the release may have been motivated by political and business considerations. If true, this would significantly undermine the ability of countries that practice the rule of law to bring future terrorists to justice.\nWe urgently request that a full, transparent and appropriate investigation be conducted into whether all appropriate judicial steps were followed, and whether any inappropriate considerations were part of the judicial decision to release Mr. Al-Megrahi.\nWe appreciate the concern that this must raise for both of our governments and our constituents and hope to hear from you soon about this matter.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=47e39176-9d79-4c9c-9384-89cb80d8bf81,\"MENENDEZ, LAUTENBERG ANNOUNCE $5.1 MILLION IN RECOVERY ACT FUNDING FOR  NEW JERSEY LIBRARIES\n                    \n                            FEDERAL INVESTMENT ANNOUNCED AS NEW JERSEY LIBRARY SERVICES ARE CUT\n                    \n                      July 7, 2010\n                     \nWASHINGTON, D.C. - U.S.\nSenators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) announced today\nthat Thomas Edison State College will receive $5,104,914 in American Recovery\nand Reinvestment Act (ARRA) funds to add computer workstations and upgrade\nconnectivity at nearly 125 libraries across the state.  The funding will\nalso provide job search assistance and workforce development programs at 365\nNew Jersey libraries.\n\"\"At a time when New\nJersey's libraries are facing severe budget cuts, this timely investment will\nhelp libraries throughout the state continue providing important public\nservices,\"\" said Lautenberg, who as a\nmember of the Senate Appropriations Committee helped write the Recovery Act. \"\"With\nso many employers requiring job applications to be submitted electronically,\nthis funding will help ensure the public can visit the library to access\ncomputers, the Internet and other job search assistance.\"\"\n\"\"Oftentimes our community libraries\nprovide individuals with access to technological resources they would otherwise\nnot be able to access through other means,\"\" said Menendez.  \"\"This funding will help ensure our youth and\nworkers have access to modern state of the art computer facilities to take\nadvantage of all the educational and professional resources available\nelectronically today.  It will also bolster job search assistance programs\nso that laid off workers not only have access to a fast and efficient computer\nwhere they can look for job opportunities, but also the necessary support to\nensure they take full advantage of job opportunities that may be available to\nthem.\"\"\nThe New Jersey State Library,\nan affiliate of Thomas Edison State College, will administer the grant award.\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7c685009-e7e3-409b-a56d-34f6c0ce202a,\"Administration Heeds Menendez Request to Generate Official Long-Term Projections of Oil from BP Spill\n                    \n                            NOAA announced long-term projections today, including probabilities of oil affecting areas along Atlantic Coast \n                    \n                      July 2, 2010\n                     WASHINGTON - In June, 22 Atlantic Coast senators, led by Senator Robert Menendez (D-NJ), requested that the National Oceanic and Atmospheric Administration begin producing science-based, long-term projections of the direction of the oil from the BP spill, including probabilities that the oil will affect areas along the Atlantic Coast: http://menendez.senate.gov/newsroom/press/release/?id=e9a8be66-1ade-4b5b-b807-029194f7bbe5. Today, NOAA announced that it has, in fact, begun to generate such long-term probabilities: http://response.restoration.noaa.gov/deepwaterhorizon/longterm_outlook.\n\n\"\"Coastal communities up and down the Atlantic, including many on the Jersey Shore, have raised concerns over the BP spill getting caught in the Loop Current and affecting the East Coast,\"\" said Menendez. \"\"Science-based probabilities like these help these communities understand the current threat of oil reaching their shores and will help ensure full preparedness. As NOAA told me in a briefing this week, severe weather, such as a hurricane, has the chance to change the course of the spill, which is why these projections need to be routinely updated. I applaud the administration for acting on our request and equipping our Atlantic Coast communities with important information.\"\"\n\nEarlier this week, Menendez convened a meeting of Coast Guard and NOAA officials and other members of the New Jersey congressional delegation to receive an update on predictions for the spill and preparedness: http://menendez.senate.gov/newsroom/press/release/?id=64c27dbb-0125-4e5b-9aa2-a2746e205e9f.\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4fc7b8a4-6b61-420f-980e-d782f06a7a0b,\"MENENDEZ HAILS LAUNCH OF NEW HEALTH CARE WEBSITE, URGES NEW JERSEYANS CONCERNED ABOUT THEIR INSURANCE TO VISIT\n                    \n                            Website gives families state-specific information and tools to easily find insurance options, access health care, and understand full range of new rights under the health insurance reform law\n                    \n                      July 1, 2010\n                     \nWASHINGTON - U.S. Senator Robert Menendez\n(D-NJ) today hailed the U.S. Department of Health and Human Services's launch\nof a new website -- healthcare.gov - which finally provides families with a\none-stop-shop for state-specific information about the range of insurance\noptions available to them. Menendez is urging New Jerseyans who are concerned\nabout their current insurance or lack of insurance to visit the site. On the\nsite, families can input specifics about their health insurance status and\ntheir location in order to receive a breakdown of available health insurance\noptions and new rights given to them under the health insurance reform law.\n\"\"For too long, it has been far too complicated for families to figure out\nall of their health insurance options,\"\" said Menendez. \"\"Families have a right to learn about and access all of\ntheir health insurance options in one easy-to-navigate, easy-to-understand\nlocation, and the health insurance reform law has made this a reality. With a\nfew clicks on this website, families will receive information that is local and\ntailored to their particular circumstances. Healthcare.gov empowers families to\ntake full control of their health insurance situation by providing them with\nthe tools and information they need to make fully-informed decisions about\ntheir health care coverage.\"\"\nCreated\nby the Affordable Care Act, HealthCare.gov will be the first website to\nprovide individuals and private businesses with both public and private health\ninsurance options tailored specifically for their needs in a single,\neasy-to-use insurance finder tool -- including options\navailable specifically in New Jersey. Among the public insurance options will\nbe the new Pre-existing Condition Insurance Plan (PCIP), which offers\naffordable coverage to uninsured individuals who have been denied health\ncoverage because of a pre-existing condition and which will serve as a program\nbridge until 2014 when significant market reforms take place.  The\nwebsite's insurance finder tool sorts through the catalog of options available,\nfrom Medicaid to the more than 1,000 private insurance plans available, to\nidentify the options for which the consumer qualifies. In addition, the website\nprovides extensive information about the new Patient's Bill of Rights to protect\nconsumers in the health insurance market, guidelines to easily navigate the\ncomplex health insurance and care system, tips on preventive practices to stay\nhealthy, and information about how\nthe Affordable Care Act will benefit Americans.\nThe new website was developed with consumer feedback\nwhich makes it an easy to use, easy to navigate tool despite the volume of information available for users: 500 pages of\nnew content, thousands of coverage options, information on every hospital\nnationwide, and billions of potential insurance scenarios. As the health care\nsystem evolves, the site will grow as well based on ongoing user feedback to\nensure consumers continue accessing information on the new resources easily.\nand with its resources take control of their health care.  Highlights of the new healthcare.gov include:\n Easy to find, easy to use buttons to access public and private health\ninsurance coverage options tailored for individual needs and circumstances\n\nInformation on the recently announced Pre-existing Condition Insurance Plan\n(PCIP), which will offer coverage to uninsured Americans who can't access\nhealth care insurance because of a pre-existing condition\n \n\nInformation about the new Patient's Bill of Rights for consumers in the\nhealth insurance market\n \n\n\n \n Quality rankings for local hospitals\n\n Tips and information on preventive practices to stay healthy \n • Details about the new Affordable Care Act and how it will benefit families\nand small businesses\n• Consumer oriented: Easy to use, easy to navigate, developed with consumer\nfeedback\n• Feature to provide \"\"user-feedback\"\" on which pages and features were\nhelpful/unhelpful\n\n                                                             \n        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=05982712-7f79-4c6d-9d90-6e4ecbcfb16c,\"MENENDEZ STATEMENT ON GAO REPORT ASSESSING USAID HIRING PRACTICES\n                    \n                      July 1, 2010\n                     \nWASHINGTON - U.S. Senator\nRobert Menendez (D-NJ), Chairman of the Foreign Relations Subcommittee that\noversees US foreign assistance, released the following statement today on the\nnewly released Government Accountability Office (GAO) report \"\"USAID Needs to\nImprove Its Strategic Planning to Address Current and Future Workforce Needs\"\":\n\"\"This report is the culmination of an\nin-depth investigation launched by concerns I raised that USAID was not\nadequately postured to plan and execute staffing functions that are critical to\nthe Agency's ability to effectively carry out its mission. An effective\nUSAID will help deliver stronger national security and expanded economic\nmarketplaces to us back home. As Chairman of the Senate Foreign Relations\nCommittee Subcommittee that oversees USAID, I firmly believe that in order for\nthe Agency to effectively address critical development needs and deliver these\nbenefits to the American people, the Agency requires a sufficient workforce\nthat is capable, flexible, and properly trained.  Yet as the GAO report\nhighlights, this is currently lacking.  USAID needs a more strategic and\ncomprehensive approach to its workforce planning process.  Without taking\nto heart the recommendations highlighted in this report, USAID runs the risk of\nnot deploying a workforce with the right skills, to the right places, at the\nright time, to support the current and future assistance programs.\n\"\"I look forward to\nworking closely with USAID Administrator Dr. Rajiv Shah and Agency\nrepresentatives to ensure that the GAO recommendations are taken to heart and\nthat USAID takes steps necessary to reorient its hiring practices in order to\nexecute its development mission as effectively as possible.\"\"\nThis report was the\nresult of Senator Menendez's efforts in the Senate to bring attention to and\nthoroughly investigate USAID's workforce planning and management practices in\nlight of a 2003 GAO report titled \"\"USAID Needs to Improve its Workforce Planning\nOperating Expense Accounting.\"\" The 2003 report found USAID to have a mostly ad\nhoc approach to workforce planning that limited its ability to oversee\nforeign assistance activities. Another report, \"\"Beyond Assistance,\"\" issued in\n2007 by the HELP Commission, noted that USAID planning efforts were largely\nfocused on the Foreign Service personnel system and based on the expectation\nthat individuals enter and remain in a closed bottom-entry entity until they\nretire. This is a model that is unsuitable for today's mobile and flexible\nworkforce. \n            In light of these\nfindings and new developments in the field of international development,\nSenators Menendez, Biden, and Lugar wrote GAO in 2008 asking them to revisit\nthese issues and undertake a new investigation. To address their concern, the\nGAO examined: (1) USAID's workforce and foreign assistance program funding\nsince 2004; (2) USAID efforts to develop a strategic workforce plan; (3)\nUSAID's implementation of primary human capital initiatives; and (4) challenges\nand constraints that affect USAID's workforce planning and management. The most\nimportant findings and recommendations of the report were:\nFINDINGS:\n 1.         USAID's growth in program\nfunding (up 92% since 2004) and shifts in foreign assistance require a\nsufficient workforce that is capable, flexible, and properly trained.\n2.        \nUSAID has established a Workforce Planning Model and expansion of its Foreign\nService to address challenges faced in meeting its mission, but it needs to be\nmore strategic and comprehensive in their implementation and evaluation of\nthese initiatives.\n3.        \nUSAID runs the risk of not deploying a workforce with the right skills, to the\nright places, at the right time, to support current and future assistance\nprograms.\n\nRECOMMENDATIONS:\n1.        \nDevelop a comprehensive workforce plan that takes into account total workforce\nand includes an analysis of overall workforce and competency gaps.\n2.        \nDevelop a documented implementation plan with timeframes to execute the\nworkforce planning model initiative; this should include steps to communicate\ninformation about the model and projections to all missions.\n3.        \nDevelop a documented, comprehensive implementation model to execute USAID's\ninitiative for hiring foreign service officers that includes timeframes,\nresource requirements, and specify 1) steps to meet overall hiring targets and\nthose for specific occupations, 2) a process for determining the number,\nlocation, and timeframes for new overseas hires, and 3) develop a workforce\ndata system to consistently collect, maintain, and analyze sufficiently\nreliable data for all staff. \n\nClick\nHERE to\nread the full report, and HERE for a summary.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a594337f-a6a5-4b6e-af6f-b50f26181501,\"VIDEO: SENATOR MENENDEZ DEMONSTRATES NEW, EASY TO USE www.HEALTHCARE.gov\n                    \n                      July 1, 2010\n                     \n \nWASHINGTON - U.S. Senator Robert Menendez today\nhailed the U.S. Department of Health and Human Services's launch of its new\nwebsite -healthcare.gov. In this video, Menendez demonstrates for New Jerseyans\nhow easy it is to use and the many tools they can take advantage to easily find\ninsurance options and health care providers, learn their new rights under the\nNew Patient's Bill of Rights, and understand the new Affordable Care Act. To\nview the video, click here:\nhttp://www.youtube.com/watch?v=PFMrQW0hWDQWASHINGTON\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=64c27dbb-0125-4e5b-9aa2-a2746e205e9f,\"Menendez Hosts NJ Oil Spill Preparedness Meeting with Coast Guard and NOAA\n                    \n                      June 30, 2010\n                     WASHINGTON - Today, U.S. Senator Robert Menendez (D-NJ) convened a meeting to discuss New Jersey's oil spill preparedness with officials from the Coast Guard and National Oceanic and Atmospheric Administration, along with five other members of the New Jersey Congressional delegation - Senator Frank Lautenberg (D-NJ), Rep. Frank Pallone (NJ-6), Rep. Rush Holt (NJ-12), Rep. Albio Sires (NJ-13) and Rep. Leonard Lance (NJ-7).\nWith Jersey Shore communities expressing increasing concern over prediction models that have shown that the BP oil spill is likely to enter the Atlantic Ocean, the primary purpose of the meeting was to ascertain the current probability of oil hitting the Jersey Shore and whether the federal and state response agencies are fully prepared and coordinated for the worst case scenario. In the meeting, the Members of Congress were told the following by the federal agencies:\n Oil from the BP spill has yet to reach the Gulf's Loop Current, which would carry it into the Atlantic. \n The federal government does not believe that significant quantities of oil will reach the Jersey Shore under current conditions, but noted that the introduction of severe weather - such as a hurricane - could alter those predictions.\n The federal government believes New Jersey would have a four month warning period between the time that oil entered the Loop Current and when tar balls might wash on to the Jersey Shore.\n The Coast Guard, in response to a direct question from Senator Menendez, said that it is fully prepared for the possibility of oil reaching New Jersey.\nMenendez released the following statement:\n\n\"\"We've heard from residents, business owners and officials along the Jersey Shore who are increasingly concerned that the BP spill will reach us. It was important to get the latest science-based information about where the oil is predicted to go and to be able to ask directly about our level of preparedness in the event that the oil enters the Atlantic. The federal scientists told us that, as of today, our threat remains low, and the Coast Guard told us that it is fully prepared. We were also told that factors like hurricanes could quickly change these predictions, which is why we cannot keep our eye off of this situation. I plan to continue my contact with the Coast Guard and NOAA until we know that the threat is fully gone.\"\" \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f7d34088-4122-4d27-af29-7eee246a07bc,\"MENENDEZ STATEMENT ON HOUSE AGRICULTURE COMMITTEE CONSIDERATION OF CUBA TRAVEL BILL\n                    \n                      June 30, 2010\n                     \nWASHINGTON - U.S. Senator\nRobert Menendez (D-NJ) released the following statement today on the House\nAgriculture Committee's markup of legislation to lift the Cuba travel ban (H.R.\n4645):\n\"\"The legislation\nbeing considered today in the House Agriculture Committee would enrich a regime\nthat denies its own people basic human rights. So let me make this clear: I\noppose and will filibuster any attempt to pass the bill in the Senate. The big\ncorporate interests behind this bill couldn't care less about whether the Cuban\npeople are free or not -- they only care about padding their profits by opening\nup a new market. The very fact that a travel bill is going through an\nagriculture committee makes one wonder why agriculture interests even care\nabout travel to Cuba, unless it is to generate money for the Castro regime to\nbuy agricultural goods. The rest of the world travels to and invest in Cuba,\nnone of which has brought democratic change. In fact, the Castro regime\ncontinues its abuse of pro-democratic forces and allows dissidents to die from\nfutile hunger strikes in the face of one of the world's harshest dictatorships.\nThose who lament our dependence on foreign oil because it enriches regimes in\nplaces like Iran should not have a double standard when it comes to enriching\nthe Castro regime, simply because Cuba offers white sand beaches 90 miles from\nour coast.  Repression is repression and dictatorships are dictatorships,\nno matter where they are located or whether you want to use their resorts.\"\"\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a400fe07-9b09-40f6-8daf-fe87d060b60e,\"MENENDEZ AND LAUTENBERG ANNOUNCE $1.5 MILLION TO HELP LAID OFF WORKERS WITH ON-THE-JOB TRAINING OPPORTUNITIES\n                    \n                      June 30, 2010\n                     \nWASHINGTON - Today, U.S.\nSenators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced\n$1,477,396 from the federal Recovery Act to provide workers that have lost\ntheir jobs with on on-the-job training to help them get back into the\nworkforce. This is part of the $75 million in Recovery Act funds and National\nEmergency Grants for these purposes awarded by U.S. Labor Secretary Hilda\nSolis. This funding is focused at regions throughout the United States that\nhave been disproportionately impacted by the economic recession. \nSenator Menendez said: \"\" This investment will help our state's workforce\nprepare to get quality jobs that require additional training. It will also help\nour state's businesses by providing them with resources to hire workers they\nknow are trained and well-qualified to be highly productive. By strengthening\nour workforce, we strengthen our businesses, and we pave the way for economic\nrecovery and growth.\"\"  \"\"These federal funds will help provide dislocated\nworkers in New Jersey with the tools and training they need to\ntransition to new work opportunities,\"\" said Lautenberg, who as a\nmember of the Senate Appropriations Committee helped write the Recovery Act.  \"\"Providing\nresources to train and employ new workers is a win for New Jersey's businesses\nand families, and a new opportunity to help grow our economy.\"\"\n On-the-Job Training Grants will finance projects to promote the re-employment\nof dislocated workers that have been off the workforce for an extended period\nof time by facilitating training. Unemployed\nworkers that participate will have the opportunity to \"\"earn and learn\"\" -\ndevelop new occupational skills while earning a paycheck, while employers\nparticipating will be partially reimbursed for training costs incurred. The\nprojects will help workers obtain and become proficient in the skills they need\nto reenter the workforce, and in turn encourage employers to hire workers they\nknow have the necessary skills sooner than may have been initially expected. This will promote the private sector hiring of\nqualified individuals which will contribute to their bottom line and spur\neconomic recovery at a local and national level.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=80a11a9b-90bb-45c3-ab04-a454e3fe96f5,\"MENENDEZ OIL COMPANY LIABILITY BILL PASSES COMMITTEE, HEADED TO FULL SENATE\n                    \n                            Big Oil Bailout Prevention Act would remove $75 liability limit enjoyed by oil companies\n                    \n                      June 30, 2010\n                     \nWASHINGTON - This morning, the\nSenate Environment and Public Works Committee approved Senator Robert\nMenendez's (D-NJ) Big Oil Bailout Prevention Act, which would remove the\n$75 million liability limit enjoyed by oil companies that spill. The bill would\nretroactively remove the cap for BP and the Deepwater Horizon disaster. The\nbill survived an attempt by Senator Inhofe to gut it with an amendment that\nwould put the president in charge of setting liability caps on a rig-by-rig\nbasis - all Democrats voted against that amendment and all but one Republican\nvoted for it. The bill now heads to the full Senate for consideration.\n\"\"I applaud Chairman\nBoxer and the other supportive members of her committee - including Senator\nLautenberg, a lead co-sponsor - for their swift action on this important\nlegislation. This bill is simple and common sense - it asserts that we want to\nprotect coastal families, not oil company profits. It asserts that oil companies\nshould bear the burden of the economic damage their spills cause, not\ntaxpayers. As we see the images and read the stories from the Gulf Coast night\nafter night, it could not be clearer that coastal families and taxpayers are\nthe ones who need protection, not oil companies. I look forward to this bill\npassing the Senate in the near future, and I hope that we will have more than\none Republican join us in preserving this bill as it moves forward.\"\"\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a76e2aa5-c708-4d2d-b6cc-20af3905b442,\"AFTER 100 YEARS, A NEW FIREHOUSE FOR PATERSON:  SENS. LAUTENBERG, MENENDEZ, REP.  PASCRELL AND PATERSON MAYOR TORRES ANNOUNCE $4.5 MILLION FOR THE CONSTRUCTION OF A NEW FIREHOUSE IN PATERSON\n                    \n                            Federal funding for the new firehouse, through the Assistance to Firefighters Fire Station Construction Grant program is one of three awarded in the nation\n                    \n                      June 28, 2010\n                     \nPaterson, New Jersey - After 100 years in\na firehouse that posed challenges to current Paterson firefighters, Mayor Jose\n\"\"Joey\"\" Torres, was proud to announce that federal funding will provide for the\nbuilding of a facility that will house and protect, not only necessary fire\nequipment and fire trucks; it will allow the brave men and women of the\nPaterson Fire Department to enjoy a space that is prepared to house all of its\nmembers. Senators Lautenberg and Menendez as well as Congressman Bill Pascrell\nJr. were instrumental in securing the stimulus funding for the Assistance to\nFirefighters Fire Station Construction Grant program.  The $4.5 million\ncompetitive grant is one of three awarded in the nation.\n\"\"I'm am pleased that this grant award will\nnot only allow our brave men and women of the Fire Department to operate from a\nmodern facility; the construction will be providing much needed jobs,\"\" \nsaid Paterson Mayor Jose \"\"Joey\"\" Torres. \"\"The facility will serve the community\nand be better prepared to operate in conjunction with the Department of Homeland\nSecurity, and the federal funding will provide the necessary tools and\nequipment to maintain the integrity of that neighborhood, as well as the safety\nof the entire city. I'm very grateful that we were able to receive this grant.\"\"\n Under the administration of Mayor Jose\n\"\"Joey\"\" Torres, and the direction of Fire Director Glen Brown and Fire Chief\nMichael Postorino, the Paterson Fire Department has been awarded in excess of\n$15 million in federal grants.  These grants have enabled the Department\nto procure personnel, apparatus, and equipment necessary to provide an\nall-hazard response capability and enhance the safety of its members and the\ncommunity which it serves.\n           \nAlso in attendance were Steve Coppa of Comerro Coppa Architects, and Daniel\nHernandez, of H & S Construction & Mechanical Inc., who described the\nfuture facility. The total area of the two floors will have approximately\n26,500 square feet of habitable area. The plan includes: Apparatus Storage for\nfour full size aerial ladders with a vehicle exhaust system, 8\"\" thick concrete\nslabs with floor drains and grease interceptor, Dormitory / sleeping quarters\nfor both male and female firefighters,\nLocker room facility, toilets, and showers, dayroom with dining, kitchen, food\nstorage, lounge seating, and audio visual communications, gear storage, and\nequipment storage.\n           \nThe Assistance to Firefighters Fire Station Construction Grants (FSC) provide\nfinancial\nassistance\ndirectly to fire departments on a competitive basis to build new or modify\nexisting fire stations in order for departments to enhance their response\ncapability and protect the community they serve from fire and fire-related\nhazards. The authority for FSC is derived from the American Recovery and\nReinvestment Act (ARRA) of 2009.  Congress appropriated a total of $210\nmillion for this Fiscal Year (FY) 2009 program. Our primary goal is to help\nfire departments meet their firefighting and emergency response needs. FSC\nseeks to support organizations lacking the tools and resources necessary to\neffectively protect the health and safety of the public and their emergency\nresponse personnel with respect to fire and all other hazards.\n\"\"This investment in the Paterson Fire\nDepartment will provide firefighters with the facility they need to best\nprotect the community create jobs and help boost the local economy,\"\" said\nLautenberg, who as a member of the Senate Appropriations Committee helped to\nwrite the Recovery Act. \"\"Investing in this firehouse construction project for\nthe Silk City's bravest lays the foundation for a safer, stronger community in\nmy hometown city of Paterson.\"\"  \nThe construction of this new, state-of-the\nart facility will help Engine Company #7 respond to emergencies even more\neffectively and efficiently than they already do, and it will employ local\nworkers at a time when unemployment is high and so many people are looking for\njobs,\"\" said U.S. Senator Robert Menendez.  \"\"This is exactly the type of\nRecovery investment project that boosts the economy, makes us more secure, and\nrebuilds our public safety infrastructure.\"\"\n \"\"I fought hard to ensure fire station\nconstruction money was included in the Recovery Act. It just makes sense to\ncreate construction jobs through projects that are vital to public safety,\"\"\nsaid Pascrell, an original member of the House Homeland Security Committee and\na member of the House Ways and Means Committee who voted in favor of the\nRecovery Act in February 2009. \"\"We've had a lot of success in the FIRE Act's\nfirst 10 years, providing fire departments with the equipment they need to\nprotect their communities. This grant through the Recovery Act is particularly\nsatisfying because it will bring a new, much-needed fire station to the people\nin my hometown, the city of Paterson.\"\"\n A group of firefighters from Engine\nCompany No. 7 flanked Paterson Fire Chief Michael Postorino, who described the\nneed for the new facility and expressed his gratitude: \"\"I want to thank\nCongressman Pascrell, Senator Lautenberg and Senator Menendez for their support\nof all our grants. Without federal funding, we would not be able to accomplish\nthis,\"\" said Postorino.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7be613dd-30ee-45b4-9101-369bac14db67,\"MENENDEZ SPEECH IN STRONG SUPPORT OF IRAN SANCTIONS ACT \n                    \n                            Menendez was member of conference committee that developed final bill aimed at Iran’s energy and banking sector, which passed this week \n                    \n                      June 25, 2010\n                     WASHINGTON -\nU.S. Senator Robert Menendez (D-NJ), spoke on the floor yesterday in support of\nlegislation he helped to craft to implement strong sanctions against Iran.\nMenendez was a member of the House-Senate conference committee that developed\nthe final bill. It passed both the House and the Senate and now awaits\nPresident Obama's signature into law.\nBelow are Menendez's\nremarks, as prepared for delivery:\nVideo: http://www.youtube.com/watch?v=jut1RN7u2LQ \nFull\ntext of remarks, as prepared for delivery:\nMr. President, I rise today\nin strong support of this Conference Report for robust sanctions against\nIran.  I was proud to serve with my colleague, Sen. Dodd, on the\nconference committee, and want to recognize the hard work he has done to create\nsuch a strong sanctions bill.\n\nThese sanctions will deter\nthe threat Iran poses to U.S. national security because of its suspected\nnuclear weapons program.\n\nI've been eager for these\nsanctions and, during the process, have advocated for the strongest sanctions\npossible.\n\nI believe deeply that we\nmust apply maximum pressure to the Iranian regime -- that it is a growing threat\nto the region, the world, and a threat to its own people.\n\nIn my view, tightening the\nscrews on the Iranian regime genuinely advances the cause of stability and\npeace in the Middle East.\n\nThese sanctions are an\nessential means to that end.\n\nThe Sanctions\nIn my view, it's essential\nthat we freeze the assets of Iranian officials who have supported terrorism...\n...that we impose sanctions\nagainst companies that engage in oil-related business with the regime...\n...that we monitor Iran's\nusage of energy-related resources other than refined petroleum, especially\nethanol, to ensure Iran is not allowed to replace its current petroleum needs\nwith ethanol - which would severely undercut the intent behind these sanctions.\n\nWe need the ban on trade\nwith Iran to be strong, significant, and air-tight.\n\nWe need to press the Iranian\ngovernment to respect its citizens' human rights and freedoms, to identify\nIranian officials responsible for violating those rights, and impose financial\npenalties and travel restrictions on these human rights abusers.\n\nWe need to prohibit the U.S.\ngovernment from contracting with those companies that export communication\njamming or monitoring technology to Iran...\n\n...We simply cannot allow the\nregime to restrict communications between Iranians and between Iran and the\noutside world as happened during the post-election protests.\n\nWe need to ban trade with\nIran with exceptions for the export of food, medicines, humanitarian aid, and\nthe exchange of informational materials...\n\nAnd we need the targeted\nsanctions against the Iranian Revolutionary Guard Corps, its supporters and\naffiliates, and any foreign governments that provide them support.\n\nI'm pleased to see that this\nConference Report will ban U.S. banks from engaging in financial transactions with\nforeign banks that do business with the Revolutionary Guard or facilitating\nIran's illicit nuclear program.\n\nThe Revolutionary Guard is\nnow spread like a cancer through Iranian society and is involved in almost\neverything in Iran - and we needed to specifically target the IRGC.\n\nConclusion\nMr. President, the robust\nsanctions against the Iranian regime I will vote for today are a positive and\nnecessary step to increase pressure on Iran so the regime fully understands\nthat the world will not tolerate its deceit and deceptions any longer.\n\nI will vote for these\nsanctions because they are robust, and in our national security interest and in\nthe interest of the region and the world.\n\nWith that Mr. President, I\nyield the floor.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a8c647a9-701d-4d25-bd7f-0d2b54d1b0bf,\"ADMINISTRATION ANNOUNCES REGULATIONS TO IMPLEMENT MENENDEZ-AUTHORED PROVISION TO IMPROVE INSURANCE COVERAGE OF EMERGENCY ROOM VISITS\n                    \n                            New Patients’ Bill of Rights regulations, stemming from health insurance reform law, announced this week\n                    \n                      June 25, 2010\n                     WASHINGTON - 90\ndays after signing into law of the health insurance reform law, President Obama\nthis week announced a new regulation based on the provision authored by U.S.\nSenator Robert Menendez (D-NJ) to help guarantee insurance coverage of\nemergency room visits. The new rule, which will go into effect as soon as\nSeptember, makes emergency services more accessible to consumers by: 1)\neliminating requirements for prior approval to access emergency services\noutside insurers' network and higher cost-sharing (copayments or coinsurance)\nif services are obtained outside the network; and 2) setting new requirements\non how health plans should reimburse out-of-network providers. This policy will\napply to all individual market and group health plans except those that are\ngrandfathered. The new Patients' Bill of Rights created by in Affordable Care\nAct. \n\"\"In a health emergency, patients need to get to the closest emergency room, not\nwaste time trying to figure out if it is in-network or not,\"\" said Menendez.\n\"\"This would seem to be a commonsense notion, yet it wasn't a guaranteed in our health\ninsurance system until now. I am proud to have authored this portion of the new\nlaw, which will help ensure that patients can focus on their emergency medical\nneeds without having to weigh them against financial considerations.\"\" \nWhite House Fact\nSheet  : The Affordable Care\nAct's New Patient's Bill of Rights: \nA major goal of the Affordable\nCare Act - the health insurance reform legislation President Obama signed into\nlaw on March 23 - is to put American consumers back in charge of their health\ncoverage and care. Insurance companies often leave patients without coverage\nwhen they need it the most, causing them to put off needed care, compromising\ntheir health and driving up the cost of care when they get it. Too often,\ninsurance companies put insurance company bureaucrats between you and your\ndoctor. The Affordable Care Act cracks down on the some of the most egregious\npractices of the insurance industry while providing the stability and the\nflexibility that families and businesses need to make the choices that work\nbest for them.\nToday, the Departments of\nHealth and Human Services (HHS), Labor, and Treasury issued regulations to\nimplement a new Patient's Bill of Rights under the Affordable Care Act - which\nwill help children (and eventually all Americans) with pre-existing conditions gain\ncoverage and keep it, protect all Americans' choice of doctors and end lifetime\nlimits on the care consumers may receive. These new protections apply to nearly\nall health insurance plans.1\n1 Limits on pre-existing conditions and annual limits\nwill not apply to existing \"\"grandfathered\"\" plans offering individual coverage.\nFor details, see the Fact Sheet and interim final regulations released on the\ntopic on June 14.\nHow\nThese New Rules Will Help You \n Stop insurance companies\nfrom limiting the care you need. For most plans starting on or after\nSeptember 23, these rules stop insurance companies from imposing pre-existing\ncondition exclusions on your children; prohibit insurers from rescinding or\ntaking away your coverage based on an unintentional mistake on an application;\nban insurers from setting lifetime limits on your coverage; and restrict their\nuse of annual limits on coverage. \n\n Remove insurance company\nbarriers between you and your doctor. For plans starting on or after\nSeptember 23, these rules ensure that you can choose the primary care doctor or\npediatrician you want from your plan's provider network, and that you can see\nan OB-GYN without needing a referral. Insurance companies will not be able to\nrequire you to get prior approval before seeking emergency care at a hospital\noutside your plan's network. These protections apply to health plans that are\nnot grandfathered. \n\nBuilds\nOn Other Affordable Care Act Policies \nThese\nnew protections complement other parts of the Affordable Care Act including:\n Reviewing Insurers'\nPremium Increases. HHS recently offered States $51 million in grant funding\nto strengthen review of insurance premiums. Annual premium hikes can put\ninsurance out of reach of many working families and small employers. These grants\nare a down-payment that enable States to act now on reviewing, disclosing, and\npreventing unreasonable rate hikes. Already, a number of States, including\nCalifornia, New York, Maine, Pennsylvania and others are moving forward to\nimprove their oversight and require more transparency of insurance companies'\nrequests to raise rates. \n2\n\n Getting the Most from Your\nPremium Dollars. Beginning in January, the Affordable Care Act requires\nindividual and small group insurers to spend at least 80% and large group\ninsurers to spend at least 85% of your premium dollars on direct medical care\nand efforts to improve the quality of care you receive - and rebate you the\ndifference if they fall short. This will limit spending on overhead and\nsalaries and bonuses paid to insurance company executives and provide new\ntransparency into how your dollars are spent. Insurers will be required to\npublicly disclose their rates on a new national consumer website -\nHealthCare.gov. \n\n Keeping Young Adults\nCovered. Starting September 23, children under 26 will be allowed to stay\non their parent's family policy, or be added to it. Group health plans that are\ngrandfathered plans can limit this option to adult children that don't have\nanother offer of employment-based coverage. Many insurance companies and\nemployers have agreed to implement this program early, to avoid a gap in\ncoverage for new college graduates and other young adults. \n\n Providing Affordable\nCoverage to Americans without Insurance due to Pre-existing Conditions: Starting\nJuly 1, Americans locked out of the insurance market because of a pre-existing\ncondition can begin enrolling in the Pre-existing Condition Insurance Plan\n(PCIP). This program offers insurance without medical underwriting to people\nwho have been unable to get it because of a preexisting condition. It ends in\n2014, when the ban on insurers refusing to cover adults with pre-existing\nconditions goes into effect and individuals will have affordable choices\nthrough Exchanges - the same choices as members of Congress. \n\nNew\nConsumer Protections Starting As Early As This Fall \nThe\nnew Patient's Bill of Rights regulations detail a set of protections that apply\nto health coverage starting on or after September 23, 2010, six months after\nthe enactment of the Affordable Care Act. They are:\n No Pre-Existing Condition\nExclusions for Children Under Age 19. Each year, thousands of children who\nwere either born with or develop a costly medical condition are denied coverage\nby insurers. Research has shown that, compared to those with insurance,\nchildren who are uninsured are less likely to get critical preventive care\nincluding immunizations and well-baby checkups. That leaves them twice as\nlikely to miss school and at much greater risk of hospitalization for avoidable\nconditions. \n\no A Texas insurance company denied coverage for a baby\nborn with a heart defect that required surgery. Friends and neighbors rallied\naround the family to raise the thousands of dollars needed to pay for the\nsurgery and put pressure on the insurer to pay for the needed treatment. A week\nlater the insurer backed off and covered the baby.2\n\n2 Jarvis, Jan, \"\"Under Fire, Blue Cross Blue Shield of Texas Offers to\nCover Medical Expenses for Crowley Baby,\"\" Houston Star-Telegram, (March\n31, 2010).  3\nThe\nnew regulations will prohibit insurance plans from denying coverage to children\nbased on a pre-existing conditions. This ban includes both benefit limitations\n(e.g., an insurer or employer health plan refusing to pay for chemotherapy for\na child with cancer because the child had the cancer before getting insurance)\nand outright coverage denials (e.g., when the insurer refuses to offer a policy\nto the family for the child because of the child's pre-existing medical\ncondition). These protections will apply to all types of insurance except for\nindividual policies that are \"\"grandfathered,\"\" and will be extended to Americans\nof all ages starting in 2014.\n No Arbitrary Rescissions\nof Insurance Coverage. Right now, insurance companies are able to\nretroactively cancel your policy when you become sick, if you or your employer\nmade an unintentional mistake on your paperwork. \n\no In Los Angeles, a woman undergoing chemotherapy had\nher coverage cancelled by an insurer who insisted her cancer existed before she\nbought coverage. She faced more than $129,000 in medical bills and was forced\nto stop chemotherapy for several months after her insurance was rescinded.3\n\n3 Girion, Lisa \"\"Health Net Ordered to Pay $9 million after Canceling\nCancer Patient's Policy,\"\" Los Angeles Times (2008), available at: http://www.latimes.com/business/la-fi-insure23feb23,1,5039339.story.\n4 Murphy, Tom. \"\"Patients struggle with lifetime health\ninsurance benefit caps,\"\" Los Angeles Times, July 2008.\nUnder\nthe regulations, insurers and plans will be prohibited from rescinding coverage\n- for individuals or groups of people - except in cases involving fraud or an\nintentional misrepresentation of material facts. Insurers and plans seeking to\nrescind coverage must provide at least 30 days advance notice to give people\ntime to appeal. There are no exceptions to this policy.\n No Lifetime Limits on\nCoverage. Millions of Americans who suffer from costly medical conditions\nare in danger of having their health insurance coverage vanish when the costs\nof their treatment hit lifetime limits set by their insurers and plans. These\nlimits can cause the loss of coverage at the very moment when patients need it\nmost. Over 100 million Americans have health coverage that imposes such\nlifetime limits. \n\no A teenager was diagnosed with an aggressive form of\nleukemia requiring chemotherapy and a stay in the intensive care unit. He\nreached his family's plan's $1 million lifetime limit in less than a year. His\nparents had to turn to the public for help when the hospital informed them it\nneeded either $600,000 in certified insurance or a $500,000 deposit to perform\nthe bone marrow transplant he needed.4\n\nThe regulation released today\nprohibits the use of lifetime limits in all health plans and insurance policies\nissued or renewed on or after September 23, 2010.\n Restricted Annual Dollar\nLimits on Coverage. Even more aggressive than lifetime limits are annual\ndollar limits on what an insurance company will pay for health care. Annual\ndollar limits are less common than lifetime limits, involving 8 percent of\nlarge employer \n4\n\nplans, 14 percent of small\nemployer plans, and 19 percent of individual market plans. But for people with\nmedical costs that hit these limits, the consequences can be devastating.\n\no One study found that 10 percent of cancer patients\nreached a limit of what insurance would pay for treatment - and a quarter of\nfamilies of cancer patients used up all or most of their savings on treatment.5\n\n5 See \"\"National Survey of Households Affected by Cancer.\"\" (2006) accessed\nat http://www.kff.org/kaiserpolls/upload/7591.pdf\n\nThe rules will phase out the\nuse of annual dollar limits over the next three years until 2014 when the\nAffordable Care Act bans them for most plans. Plans issued or renewed beginning\nSeptember 23, 2010, will be allowed to set annual limits no lower than\n$750,000. This minimum limit will be raised to $1.25 million beginning\nSeptember 23, 2011, and to $2 million beginning on September 23, 2012. These\nlimits apply to all employer plans and all new individual market plans. For\nplans issued or renewed beginning January 1, 2014, all annual dollar limits on\ncoverage of essential health benefits will be prohibited\nEmployers and insurers that\nwant to delay complying with these rules will have to win permission from the\nFederal government by demonstrating that their current annual limits are\nnecessary to prevent a significant loss of coverage or increase in premiums.\nLimited benefit insurance plans - which are often used by employers to provide\nbenefits to part-time workers - are examples of insurers that might seek this\nkind of delay. These restricted annual dollar limits apply to all insurance\nplans except for individual market plans that are grandfathered.\n\n Protecting Your Choice of\nDoctors. Being able to choose and keep your doctor is a key principle of\nthe Affordable Care Act, and one that is highly valued by Americans. People who\nhave a regular primary care provider are more than twice as likely to receive\nrecommended preventive care; are less likely to be hospitalized; are more\nsatisfied with the health care system, and have lower costs. Yet, insurance\ncompanies don't always make it easy to see the provider you choose. One survey\nfound that three-fourths of OB-GYNs reported that patients needed to return to\ntheir primary care physicians for permission to get follow-up care. \n\nThe\nnew rules make clear that health plan members are free to designate any\navailable participating primary care provider as their provider. The rules\nallow parents to choose any available participating pediatrician to be their\nchildren's primary care provider. And, they prohibit insurers and employer\nplans from requiring a referral for obstetrical or gynecological (OB-GYN) care.\nAll of these provisions will improve people's access to needed preventive and\nroutine care, which has been shown to improve the health of those treated and\navoid unnecessary health care costs. These policies apply to all individual market\nand group health insurance plans except those that are grandfathered.\n Removing Insurance Company\nBarriers to Emergency Department Services. Some insurers will only pay for\nhealth care provided by a limited number or network of providers - including\nemergency health care. Others require prior approval before receiving emergency\ncare at hospitals outside of their networks. This could mean financial hardship\nif you get sick or injured when you are away from home or not near a network\nhospital. \n5\nThe\nnew rules make emergency services more accessible to consumers. Health plans\nand insurers will not be able to charge higher cost-sharing (copayments or\ncoinsurance) for emergency services that are obtained out of a plan's network.\nThe rules also set requirements on how health plans should reimburse\nout-of-network providers. This policy applies to all individual market and\ngroup health plans except those that are grandfathered.\nBenefits\nof Consumer Protections \nThe\nnew rules will bring immediate relief to many Americans and provide peace of\nmind to millions more who are only one illness or accident away from medical\nand financial chaos.\nThe new ban on lifetime limits\nwould affect group premiums by 0.5% or less and individual market premiums by\n0.75% or less. The restricted annual limit policy would affect group and\nindividual markets by roughly 0.1% or less (grandfathered individual market\nplans are exempt). And, the prohibition of preexisting conditions exclusions\nfor children would affect group health plans by just a few hundredths of a\npercent. For new plans in the individual market, this impact would be roughly\n0.5% in many states. In states with community rating, (roughly twenty states),\nthe impact could be up to 1.0%. These costs are before taking into account\nbenefits.\nIn\naddition, the rules will achieve greater cost savings by:\n Reducing the\"\"hidden tax\"\"\non insured Americans: By making sure insurance covers people who are most\nat risk, there will be less uncompensated care and the amount of cost shifting\namong those who have coverage today will be reduced by up to $1 billion in\n2013. \n\n Improving Americans'\nhealth: By making sure that high-risk individuals have insurance, the rules\nwill reduce premature deaths.6 Insured\nchildren are less likely to experience avoidable hospital stays than uninsured\nchildren7 and, when hospitalized, insured children are at less risk of dying.8 \n\n6 See, for example, Almond, Doyle, Kowalski, Williams (2010), Doyle\n(2005), and Currie and Gruber (1996).\n7 Keane, Christopher et al. \"\"The Impact of Children's Health Insurance\nProgram by Age.\"\" Pediatrics 104:5 (1999), available at: http://pediatrics.aappublications.org/cgi/reprint/104/5/1051..\n8 Bernstein, Jill et al. \"\"How Does Insurance Coverage Improve Health\nOutcomes?\"\" Mathematica Policy Research (2010), available: http://www.mathematica-mpr.com/publications/PDFs/Health/Reformhealthcare_IB1.pdf\n9 David Himmelstein et al, 2009.\n10 Gruber, J. and B. Madrian. \"\"Health Insurance, Labor\nSupply, and Job Mobility: A Critical Review of the Literature.\"\" (2001).\n Protecting Americans'\nsavings: High medical costs contribute to some degree to about half of the\nmore than 500,000 personal bankruptcies in the U.S. in 2007.9 These costs\nborne by individuals might be assumed by insurance companies once rescissions\nare banned, annual limits are restricted, lifetime limits are prohibited, and\nmost children have access to health insurance without pre-existing condition\nexclusions. \n\n • Enhancing\nworkers' productivity: Making sure that kids with health problems have\ncoverage will reduce the number of days parents have to take off from work to\ncare for family members. Parents will also be freed from \"\"job lock,\"\" which occurs\nwhen people are afraid to take a better job because they might lose coverage\nfor themselves or their families.10\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3be4c598-7a3a-4823-bc12-929be07d25e2,\"SENATOR MENENDEZ, LAUTENBERG ANNOUNCE FUNDING FOR CAMDEN CITY BOARD OF EDUCATION SCHOOL BASED YOUTH SERVICES\n                    \n                      June 24, 2010\n                     WASHINGTON - Today, US Senators\nRobert Menendez and Frank Lautenberg (D-NJ) announced that Camden City Board of\nEducation has received $389,200 in funds over two years as part of the U.S.\nDepartment of Education Grants for the Integration of Schools and Mental Health\nSystems Program. The purpose of this program is to increase student access to\nquality mental health care by developing innovative programs to integrate local\nschool and mental health systems. These funds will help the implementation of a\nproject proposed by Camden City public schools earlier this year  to\nenhance access to mental health services to students district-wide.\n\"\"Our youth is our future, and we need to ensure they have the health\nand support structure necessary to develop and reach their potential,\"\" said\nMenendez. \"\"This investment in the mental health of Camden's students will help\nensure that children and adolescents vulnerable to mental health conditions, as\nwell as their parents, have access to the valuable services and\nresources.\"\"  \n\"\"This grant will help provide\nCamden's students with better access to mental health care services,\"\"  said Lautenberg. \"\"Providing this assistance will\nhelp our students achieve in the classroom and make the most of their\neducation.\"\"\nTo\nachieve the goal of expanded mental health services, partners in the education\nand health system will collaborate to ensure the design and implementation of\ndetailed protocols that facilitate the referral and coordination process with\ncommunity-based mental health service providers. These resources will also be\nused to strengthen the capacity of schools personnel and student family members\nto identify the signs of mental health problems, make referrals, connect\nstudents with appropriate services, as well as promote students healthy\ndevelopment. Training will also be provided to mental health providers to\nstrengthen their planning and implementation skills in the prevention and\ntreatment to address student needs.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3b988f07-6cfa-42db-a417-4a9669c3fe71,\"MENENDEZ FINDS THAT MMS’S OIL SPILL RESPONSE RESEARCH TANK IS INOPERABLE\n                    \n                            Senator writes Salazar, urging quick action to fix tank in Leonardo, NJ\n                    \n                      June 22, 2010\n                     WASHINGTON - The Minerals\nManagement Service's Oil and Hazardous Materials Simulated Environmental Test\nTank (OHMSETT) is touted on its website as \"\"The National Oil Spill Response Research\n& Renewable Energy Test Facility\"\" (click here: http://www.ohmsett.com/). Interior Secretary\nKen Salazar mentioned the Leonardo, NJ facility during testimony before the\nSenate Energy and Natural Resources Committee on June 9. However, when U.S.\nSenator Robert Menendez (D-NJ) contacted the facility to arrange a tour, his\nstaff was told that the tank had previously developed a leak and wouldn't be\noperable again until sometime in July.\nAs a result, Menendez\nhas written to Secretary Salazar, seeking answers about the problem with the\ntank and urging quick action to fix it. Menendez has been a leader on\nlegislation to protect coastal communities from oil spills, having introduced\nbills to reform MMS (click here: http://menendez.senate.gov/newsroom/press/release/?id=febbc0ca-c98d-412a-bd72-8116f86b4a97)\nand to ensure that oil companies are fully accountable for damage they cause\n(click here: http://menendez.senate.gov/newsroom/press/release/?id=21783e4e-d5a9-4363-a092-7feebbed51fe).\n\"\"The industry and\neven the government has substantially invested in new technologies to drill in\ndeeper water and deeper into the Earth, but little has been invested in safety\nor oil spill response and clean-up,\"\" wrote Menendez. \"\"Apparently not even\nenough to keep water in OHMSETT's testing tank. I ask you to direct your\nDepartment to make all necessary repairs to the OHMSETT facility without\ndelay.  I also ask that you seriously consider what new investment is\nneeded so we are not cleaning up oil spills with technology from the 1950's.\"\"\nPDF of letter to\nSalazar: http://menendez.senate.gov/imo/media/doc/20100621ltr_OHMSETT.pdf\n\nText of letter:\n\nJune 21, 2010\n\nThe Honorable Ken Salazar\nSecretary\nDepartment of the Interior\n1849 C Street, NW\nWashington, DC 20240\n\n\nDear Secretary Salazar:\n\nDuring your recent testimony you mentioned the research your\ndepartment is conducting on oil spill response technology at the Oil and\nHazardous Materials Simulated Environmental Test Tank (OHMSETT), located in\nLeonardo, New Jersey.  Your testimony prompted me to ask my staff to try\nto arrange a tour of the facility for me.  My staff was informed there was\n\"\"a hole in the tank,\"\" that the facility was not operational, and that\nit would not be up and running again until July.  As the BP Deepwater\nHorizon oil spill continues to spill up to 2.5 million gallons of oil per day\ninto the Gulf of Mexico, I was shocked to learn that the facility the Interior\nDepartment uses to research how to respond to oil spills is out of\ncommission.  I would like to know how this happened and what the Interior\nDepartment's plan is to get this facility back in operating order as soon as\npossible.\n\nAs you know, the OHMSETT facility is the federal\ngovernment's only facility to test equipment and different strategies to\nrespond to oil spills in a controlled marine environment.  At least it was\nwhen its water tank had water in it.\n\nI believe that the fact that this facility is inoperable\nduring the nation's largest oil spill is indicative of a complacency and lack\nof investment in oil spill response technologies.  In 1989, after the\nExxon Valdez disaster, a witness representing the American Petroleum Institute,\nMichael Kinworthy, testified to the House Subcommittee on Natural Resources,\nAgriculture Research, and Environment that \"\"a realistic appraisal of the U.S.\nresponse to catastrophic spills recognizes that no effective containment of\nsuch spills has been accomplished.\"\"  On Tuesday, Rex Tillerson, CEO of\nExxon Mobil, testified that \"\"when these things [oil spills] happen, we are not\nwell-equipped to deal with them.\"\"  Over the last 20 years nothing has\nchanged.  The industry and even the government has substantially invested\nin new technologies to drill in deeper water and deeper into the Earth, but\nlittle has been invested in safety or oil spill response and clean-up. \nApparently not even enough to keep water in OHMSETT's testing tank.\n\nI ask you to direct your Department to make all necessary\nrepairs to the OHMSETT facility without delay.  I also ask that you\nseriously consider what new investment is needed so we are not cleaning up oil\nspills with technology from the 1950's.\n\nSincerely,\n\n\nROBERT MENENDEZ\nUnited States Senator\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4002cae3-e0d4-4dd9-8cba-356e1cb805e0,\"MENENDEZ HAILS SENATE APPROVAL OF COSCIA FOR AMTRAK BOARD\n                    \n                      June 22, 2010\n                     WASHINGTON - Today, the U.S. Senate\nunanimously approved Port Authority Chairman Anthony Coscia for the Amtrak\nBoard of Directors, as nominated by President Obama and supported by U.S.\nSenator Robert Menendez (D-NJ). Menendez released the following statement:\n\"\"Few people know our\nstate or its transportation needs better than Tony Coscia. I look forward to\nworking with him in his capacity on Amtrak's board to ensure that passenger\nrail service remains modern, efficient and easily accessible. I congratulate\nTony Coscia and look forward to his work to help keep Amtrak strong for the 21st Century.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2f7964a7-7e7a-4c1f-9ce0-37ac61a84910,\"SCHUMER, GILLIBRAND, LAUTENBERG, MENENDEZ: PAKISTANI TALIBAN BANKROLLED & TRAINED TIMES SQUARE BOMBER, BUT GROUP STILL HAS NOT BEEN ADDED TO TERRORIST LIST—SENATORS ANNOUNCE BILL TO AUTOMATICALLY DESIGNATE THEM TERRORISTS\n                    \n                            State Dept.’s Terrorist List Includes 45 Groups, But Still Does Not Include Group That Funneled $12K To Shahzad And Taught Him How To Use Explosives\n                    \n                      June 22, 2010\n                     Move Would Trigger Counterterrorism Measures, Including Criminal Penalties Against Group’s Financial Backers And Ban on Group Members From Entering US \nSenators Sent Letter Last Month To Secretary Clinton Urging Pakistani Taliban To Be Added To List—Say Legislation Needed Because Designation Cannot Wait Any Longer\nWASHINGTON, DC—A day after the man behind the Times Square terror plot confessed to receiving training and financing from the Pakistani Taliban, U.S. Senators Charles E. Schumer (D-NY), Kirsten Gillibrand (D-NY), Frank Lautenberg (D-NJ) and Robert Menendez (D-NJ) revealed Tuesday that the U.S. State Department still has not added the organization to the official list of terrorist groups. The senators announced they would offer legislation to require the Pakistani Taliban to be immediately designated as a terrorist group. The designation is a critical step in combating foreign terrorist groups. It triggers a series of steps, including: freezing of assets, barring foreign nationals with ties to the group from entering the U.S., and criminalizing the act of providing any material assistance to the group.\n“Now that the Times Square terrorist has pled guilty in court, it is time to take the next step by confronting the organization that aided and abetted him. Even as Shahzad pled guilty, he vowed that he and others from the Pakistani Taliban would be back to carry out more attacks on the U.S. We cannot wait any longer to go after this group with everything we’ve got. This organization poses an existential threat to the safety of not only our soldiers fighting abroad, but also Americans here at home. It’s time we dealt them with every tool at our disposal,” Schumer said.\n“The Times Square incident is by no means the first time that the TTP has tried to kill innocent people.  This group has been implicated in domestic terrorism in Pakistan for years.  The group has reputedly been linked to al Qaida, and now has apparently set its sights on the U.S.  The Times Square incident showed that law enforcement and everyday Americans stand ready to do what's necessary to keep America safe. Now Washington needs to do its part to prevent this type of near-disaster from ever happening again,” Gillibrand said.\n“If the Pakistani Taliban is not a terrorist group, then what is?  The Pakistani Taliban is a dangerous organization that has proven its determination to attack America.  The State Department must act without hesitation to put this murderous group on its list of terrorist organizations and use every resource to isolate it from any political or financial support,” Lautenberg said.   \n“The only thing that stopped this group from having blood on its hands was an incompetent agent of terror, who carried out the attack poorly and pled guilty yesterday to terrorism charges. It’s not theoretical that they’d attack us on our soil -- they have already done so. There is no clearer case than that to put them on the list,” Menendez said.\nAccording to the Justice Department’s indictment of Shahzad, the 30-year-old naturalized U.S. citizen received training in explosives from the Pakistani Taliban while he was in Pakistan in 2009. Then, in February of this year, he received a $5,000 cash payment mailed to him from a Pakistani national who Shahzad believed was connected to the group. Shahzard later received an additional $7,000 from the same individual.\nOn May 11, the senators sent a letter to Secretary of State Hillary Clinton urging the administration to cite the group, also known as the Tehrik-i-Taliban Pakistan (TTP), as a Foreign Terrorist Organization (FTO) in order to trigger a series of counterterrorism measures.\nCurrently, 45 different organizations are named on the list, including Al Qaeda, Hamas, and the Real Irish Republican Army (RIRA). Designations, which last for two years and must be renewed, are made following an interagency process involving the State, Justice, Homeland Security, and Treasury Departments. By law, the designation requires three conditions are met:1. The organization is foreign; 2. The organization engages in terrorist activity; 3. The terrorist activity threatens the security of U.S. citizens or the national security of the U.S.The senators said that the TTP clearly meets all three criteria. In addition to the evidence linking the group to the Times Square incident, the senators pointed in their letter to an April 2010 video in which TTP representative indicated the group would be targeting U.S. cities. The group has also been implicated in the 2007 assassination of former Pakistani Prime Minister Benazir Bhutto, and, according to reports, has partnered with Al Qaeda.\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=18d9ffbc-9978-44ff-88c6-760113c29009,\"MENENDEZ, LAUTENBERG ANNOUNCE OVER $1.7 MILLION FOR RUTGERS OCEAN RESEARCH\n                    \n                            GRANT WILL HELP RUTGERS CONDUCT OCEAN RESEARCH ON ENVIRONMENT, ECONOMY, SAFETY IMPACTS ON MID-ATLANTIC \n                    \n                      June 21, 2010\n                     WASHINGTON, D.C. – U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the National Oceanic & Atmospheric Administration (NOAA) has awarded $1,786,000 in federal funding to Rutgers University for coastal ocean observation in the Mid-Atlantic. “This funding will help ensure that Rutgers continues to lead in researching the environmental conditions, economic benefits and safety of our coastlines and coastal communities,” Lautenberg said.  “Our ocean is a treasure, and the devastating impact the Gulf Coast oil spill has had on the ecosystem underscores the need to manage and monitor our coastline.  This grant will provide Rutgers with valuable resources that will support regional fisheries and help protect New Jersey’s coastline. ” “Through this investment, Rutgers researchers will help protect our coastal communities and the economy that our coastal waterways support,” said Menendez. “The oil spill disaster in the Gulf of Mexico has once against reminded us of the importance of our own coastline here in New Jersey, and it is through programs like this that we will keep the Jersey Shore thriving.” The Mid-Atlantic Regional Coastal Ocean Observing System (MARCOOS) is a joint effort of 20 academic, governmental and private institutions, led by Rutgers, that seeks to generate quality controlled and sustained ocean observation and forecast information for the Mid-Atlantic region.  This grant helps Rutgers operate MARCOOS, which focuses on delivering real-time information to improve safety at sea, search and rescue, and ecosystem-based management of fisheries on the Mid-Atlantic Bight.  MARCOOS has established two primary sets of observing assets: an operational array of current radars covering the entire Mid-Atlantic Bight and a set of ocean forecast models based on data from a fleet of ocean gliders and satellite sensors.  Using regionally distributed scientific and operational expertise to coordinate data, MARCOOS will generate and disseminate real-time data, nowcasts and forecasts of the Mid-Atlantic coastal ocean. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f42c07e7-410f-45ba-acd4-12bf4d6849ae,\"SENATOR MENENDEZ CO-SPONSORS RESOLUTION TO RECOGNIZE THE NATIONAL MUSEUM OF AMERICAN JEWISH HISTORY\n                    \n                      June 17, 2010\n                     WASHINGTON -\nToday, US Senator Robert Menendez (D-NJ) co-sponsored a resolution introduced\nby Senator Arlen Specter (D-PA) and cosponsored by Senator Robert Casey (D-PA)\nto recognize the National Museum of American Jewish History and acknowledge the\nimportance of studying and preserving the Jewish experience in America (S.Res.\n546). The National Museum of American Jewish History is the only museum\ndedicated to helping educate about the Jewish experience in America. In\nNovember of 2010, the Museum will open its new state-of-the-art facility with more than 29,000 square feet of\nexhibition space across from the Liberty Bell on Philadelphia's historic\nIndependence Mall.\n \"\"Jewish Americans have been integral in weaving the\nfabric of our great nation, and that is a story that is important to share with\neveryone. This museum honors the history of a vibrant and important community\nwhose experience underscores the values of freedom and opportunity that make\nours such a great nation. Through this museum, we celebrate the diversity of\nour nation and highlight the rich history and contributions of the Jewish\nAmerican community to American life.\"\" said Senator Menendez.\n Click HERE to view a PDF of the resolution. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b3dd9199-f9d7-42fc-905a-4dfd088156c2,\"Senators Want Justice to Investigate Whether BP Willfully Low-Balled Oil Spill Estimates\n                    \n                            Menendez joined by 6 colleagues in letter to Holder, want inquiry to find out why spill estimates have risen 60-fold\n                    \n                      June 17, 2010\n                     WASHINGTON - With the amount of oil spilling into the Gulf of Mexico now estimated at as much as 60,000 barrels per day, seven senators, led by Senator Robert Menendez (D-NJ), today urged U.S. Attorney General Eric Holder to ensure that his criminal investigation into the spill includes a focus on BP's incorrect estimates of the spill rate and its alleged withholding of information necessary to determine the spill rate. Estimates have been consistently revised upward, from BP's original estimate of 1,000 barrels per day. Recent news reports indicate that BP had internally estimated a month ago that the spill rate was as much as 40,000 barrels per day, though it publicly claimed the rate was only 5,000 per day. BP has a financial stake in underestimating the amount of oil spilled - it could be fined up to $4,300 per barrel.\nThe letter was sent by Menendez and Senators Charles Schumer (D-NY), Patty Murray (D-WA), Frank Lautenberg (D-NJ), Kirsten Gillibrand (D-NY), Bill Nelson (D-FL) and Sheldon Whitehouse (D-RI).\n\n\"\"We cannot overstate the importance of knowing how much oil has been and is being spilled,\"\" wrote the senators. \"\"In addition to holding BP accountable for Clean Water Act fines, for lost royalty payments, and for all damages, knowing the amount of oil spilled is important for NOAA to understand the volume of oil that could hit the nation's coasts, including Atlantic Coast locations, and to ensure that all states are properly equipped for the worst-case scenario.  And if BP is shown to have misled the government in estimating the size of the spill, it may have compromised response efforts.\n\"\"BP's potentially criminal withholding and distortion of information has hampered the government's ability to ensure that all costs are paid by the polluters, not taxpayers.  An investigation by your office of BP's withholding of information and misinformation should be an important focus alongside other aspects of your investigation.  Thank you for your hard work to investigate this ongoing disaster.\"\"\n\nPDF of letter to Holder: http://menendez.senate.gov/imo/media/doc/20100617ltr_SpillRate.pdf\nText of letter:\n\n \nJune 17, 2010\n\nAttorney General Eric Holder\nU.S. Department of Justice\n950 Pennsylvania Avenue, NW\nWashington, DC 20530-0001\n\nDear Attorney General Holder:\nWe applaud you for opening an investigation into the Deepwater Horizon disaster, but as United States Senators we are deeply concerned about reports that BP has withheld and distorted information regarding the amount of oil flowing into the Gulf of Mexico.  We are writing to ensure that your criminal inquiry thoroughly investigates these allegations. \nBP has an obvious incentive to downplay the size of this spill, as their liability could change by billions of dollars depending on the final official tally.  As President Obama said on May 27: \"\"Their interest may be to minimize the damage and, to the extent that they have better information than anybody else, to not be fully forthcoming.\"\"  Under the Clean Water Act, depending on BP's culpability, the company could be fined up to $4,300 per barrel of oil spilled.  BP's original, obviously understated estimate of 1,000 barrels per day would mean a fine of less than $300 million.  But if the flow rate turns out to have been up to 60,000 barrels per day, as experts now estimate, then BP's fines could approach $15 billion.  Even for a company as large as BP, $15 billion is powerful incentive to withhold or distort information.[1]    \nIf BP is shown to have misrepresented or suppressed critical information, these acts would be punishable under federal law.  Under the Federal Fraud and False Statements statute,[2] it is a crime to make any \"\"materially false, fictitious, or fraudulent statement or representation\"\" in connection with \"\"any matter within the jurisdiction of the federal government.\"\"  In addition, BP may be liable for false statement penalties under the Clean Water Act[3] and other appropriate laws.  You have the statutory authority to fully investigate these allegations and punish BP if they hold true. \nAnd there is much to investigate.  The record is quite clear that BP withheld information.  Within a matter of days BP had robot-operated cameras at the source of the spill but it took a month for the company to release a live feed from those cameras to the public.  It took almost three weeks more, until June 8, an astounding 50 days after the explosion, for BP to provide the appropriate high resolution video needed for accurate scientific assessment of the flow rate.  In the meantime, BP senior officials claimed that \"\"there's just no way to measure it.\"\"[4]  In addition, the substantial video archives of these recordings have not been released in their entirety so that they can be analyzed by experts.  To date BP has also failed to provide the video archives in a readily accessible form, which has made it difficult for the government-convened panel of scientific experts charged with evaluating the flow rate of the spill to fulfill their responsibilities.\nBP also allegedly withheld critical data from scientists, including government scientists, who are best equipped to estimate the spill flow rate.  A BP spokesman claimed the company was sharing data with \"\"legitimate interested parties,\"\"[5] while in reality, some scientists said that they were left in the dark.  Woods Hole Oceanographic Institute experts were poised to fly to the Gulf soon after the spill to conduct volume measurements, but BP told them not to come.  And when the National Institute for Undersea Science and Technology team, funded by NOAA and with the government's support, first discovered the oil plume and began gathering data on its extent, BP denied that a plume existed and disrupted data collection.[6]\nIn addition to withholding information and blocking data collection, BP has seemingly misrepresented the magnitude of the spill.  Astoundingly, at first, after the Deepwater Horizon burst into flames and then sunk to the ocean floor, BP claimed that there was no spill.  The next day they estimated an absurdly low flow rate of 1,000 barrels per day.  On May 20, BP said they were siphoning off 5,000 barrels of oil a day from what they then claimed was a 5,000 barrel a day spill.  Video feed released under pressure from Congress on May 21 showed a very different story, with a heavy flow of oil still spewing from the well.  In response, the company adjusted their siphon estimate down to 2,200 barrels a day to explain why oil was still flowing.  We now know that what the video actually showed was a much, much heavier flow rate. \nOnly recently have experts begun to have access to some of the data they need to make more credible estimates.  On June 15, Secretary of Energy Steven Chu, Secretary of the Interior Ken Salazar, and Marcia McNutt, Director of the USGS and the government convened Flow Rate Technical Group, estimated that the flow may be as high as 60,000 barrels a day, which means that an estimated 3 million barrels may have spilled so far.  That would amount to more than 13 Exxon Valdez spills.\nWe cannot overstate the importance of knowing how much oil has been and is being spilled.  In addition to holding BP accountable for Clean Water Act fines, for lost royalty payments, and for all damages, knowing the amount of oil spilled is important for NOAA to understand the volume of oil that could hit the nation's coasts, including Atlantic Coast locations, and to ensure that all states are properly equipped for the worst-case scenario.  And if BP is shown to have misled the government in estimating the size of the spill, it may have compromised response efforts.\nBP's potentially criminal withholding and distortion of information has hampered the government's ability to ensure that all costs are paid by the polluters, not taxpayers.  An investigation by your office of BP's withholding of information and misinformation should be an important focus alongside other aspects of your investigation.  Thank you for your hard work to investigate this ongoing disaster. \n                                                            Sincerely,\n\n\nROBERT MENENDEZ                                                                       \nCHARLES SCHUMER                                                                       \nPATTY MURRAY                                                                               \nFRANK R. LAUTENBERG                                                                \nKIRSTEN E. GILLIBRAND                                                                \nBILL NELSON                                                                                     \nSHELDON WHITEHOUSE\nUnited States Senators\n\n\n# # #\n\n[1] This does not include what BP owes the federal government for lost royalty revenue, which could top $50 million.\n[2] 18 U.S.C. § 1001 (2009) \n[3] CWA 33 U.S.C. § 1319(c)(4)\n[4] BP SVP Ken Wells statement on NPR May 12, 2010.  Similarly, BP COO Doug Suttle testified before Congress on May 11, 2010 that \"\"you can't measure what's coming out of the seabed.\"\"\n[5] Toby Odone, a BP spokesman in mid-May, 2010, reported in multiple news outlets.\n[6] Over 300,000 gallons of dispersant have been used under the surface of the water, an action that seems less about protecting the environment than about making the spill seem smaller.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=21783e4e-d5a9-4363-a092-7feebbed51fe,\"VIDEO: MENENDEZ ATTEMPTS TO PASS UNLIMITED OIL COMPANY LIABILITY ON THE SENATE FLOOR THIS MORNING\n                    \n                            Republicans have now blocked the Big Oil Prevention Bill four times \n                    \n                      June 17, 2010\n                     WASHINGTON -\nToday U.S. Senator Robert Menendez (D-NJ) asked his colleagues for unanimous\nconsent to pass his legislation that would remove all limits on oil liability,\nthe Big Oil Bailout Prevention Act. Republicans blocked the bill for the\nfourth time. A video of his remarks is available below:\n\nVIDEO: http://www.youtube.com/watch?v=_25IUN4RCrY\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7d829e4c-09ad-436f-8502-e9e6eaa21fa6,\"Menendez, Author of Oil Liability Bill, Says B.P. Escrow Account is Only First Step Toward Ensuring Full Accountability \n                    \n                            BP has reportedly agreed to request from WH, Senate Dems to put aside initial $20 billion\n                    \n                      June 16, 2010\n                     WASHINGTON – According to news reports, BP has agreed to White House and Senate Democrat demands that it put an initial $20 billion into an independently-administered escrow account to help guarantee it will have the capital available to cover damages along the Gulf Coast. U.S. Senator Robert Menendez (D-NJ), author of the Big Oil Bailout Prevention Act to do away with the oil company liability limit, released the following statement:\n\n\"\"This is the very least BP must do to start making the coastal communities devastated by its recklessness whole again. This fund helps ensure BP will have the capital available to pay for the damages it causing, but it should not be mistaken for an acceptance of full accountability or as a removal of the liability cap. We absolutely need to continue our work to guarantee that BP is bound to cover all economic and environmental damage. To remove all legal wiggle-room BP may have, and to guarantee full protection of coastal communities in the event of future spills, we need to pass the Big Oil Bailout Prevention Act.\"\"\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=32cfc6a8-7f0c-4b08-960f-3e04619b7a67,\"MENENDEZ APPLAUDS LATEST CREDIT CARD RULE, WHICH HE HELPED TO CRAFT\n                    \n                            Menendez was champion of credit card reform and pushed the Fed to prohibit credit card companies from circumventing the new law\n                    \n                      June 15, 2010\n                     WASHINGTON - Today,\nthe Federal Reserve Board finalized its latest new rule for credit card companies,\nas directed by the credit card reform law passed in May 2009 and to help crack\ndown on credit card companies attempting to circumvent the law. The new rule\nrepresents the third stage of implementation of the Credit Card Accountability\nResponsibility and Disclosure Act. When it goes into effect in August 2010, the\nnew rule will:\nRequire issuers that have increased rates since January\n     1, 2009 to evaluate whether the reasons for the increase have changed and,\n     if appropriate, to reduce the rate. \nProhibit credit card issuers from charging penalty fees\n     that exceed the dollar amount associated with the consumer's violation.\n     For example, card issuers will no longer be permitted to charge a $39 fee\n     when a consumer is late making a $20 minimum payment. Instead, the fee\n     cannot exceed $20. \nProhibit credit card issuers from charging a penalty\n     fee of more than $25 for paying late or otherwise violating the account's\n     terms unless the consumer has engaged in repeated violations or the issuer\n     can show that a higher fee represents a reasonable proportion of the costs\n     its incurs as a result of violations.\nBan \"\"inactivity\"\" fees, such as fees charged\n     when a consumer does not use their credit card over a certain period of\n     time for new purchases. \nPrevent issuers from charging multiple penalty fees\n     based on a single late payment or other violation of the account terms. \nU.S. Senator Robert\nMenendez (D-NJ) authored one of the first pieces of credit card reform\nlegislation and helped craft the final reform bill that passed Congress.\nEarlier this year, he wrote the Federal Reserve to ask that it issue rules that\nprevent credit card companies from circumventing the new law: http://menendez.senate.gov/newsroom/press/release/?id=860f4c0a-b2d9-4ac9-bdda-2d18ab9cfc43.\nHe released the following statement today:\n\"\"The\ncredit card reform law is doing away with the tricks and traps that credit card\ncompanies have long used to squeeze hard-earned money out of responsible\nfamilies. This latest common sense rule will help end the credit card company\npractice of charging outlandish penalty fees that don't fit the infraction. It\nwill finally force credit card companies to take a hard look at why they\nincreased interest rates on so many unsuspecting consumers over the past year\nprior to this landmark law going into effect. It will also curb the attempts by\nsome companies to circumvent the law with new ways to charge their cardholders.\nAs one of the original authors of credit card reform legislation and as a\nsenator who has called on the Federal Reserve to stop companies from\ncircumventing the law, I wholeheartedly applaud this badly-needed rule, which\nwill help responsible families better achieve financial security.\"\"\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=72e0dd9d-84f9-41ca-b1fa-da35f810994e,\"MURRAY, MENENDEZ CALL ON REPUBLICANS TO STOP PROTECTING BIG OIL \n                    \n                      June 14, 2010\n                     Washington,\nDC- Democratic\nConference Secretary Patty Murray joined Senator Bob Menendez on a conference\ncall this morning to discuss Democrats' efforts to ensure that American\ntaxpayers are not on the hook for the negligence of BP and to call on\nRepublicans to stop shielding oil polluters from accountability for current and\nfuture oil spills.   In recent weeks, Democrats have tried repeatedly\nto raise the liability cap on oil polluters like BP to protect American\ntaxpayers but Republicans have blocked those efforts every time. \nDemocrats will continue to call on Republicans to hold big oil\naccountable.  Today, Senate Democrats released\na letter to BP CEO Tony Hayward calling on the company to put aside $20\nbillion in a special account to ensure repayment to victims of the BP oil spill\nin the Gulf of Mexico.\n\"\"Senate\nDemocrats' legislation would make sure taxpayers won't have to pay to clean up\nspills - and that oil companies like BP are held accountable for the economic\ncosts resulting from their accidents,\"\" said Senator Murray.  \"\"To me, this\nis a simple issue of fairness.  If an oil company causes a spill, they\nshould have to pay to clean it up.  But Senate Republicans have blocked\nour bill three times.  The debate over this issue demonstrates clearly who\nis standing up for working families and taxpayers, and who is not.\"\"\n\"\"Republicans\nknow that defending oil companies and their profits is about as popular as BP\nitself,\"\" said Senator Menendez.  \"\"They know that they can't win an\nargument against ensuring full accountability for oil companies that spill.\nThey have attempted to give the illusion of being tough on oil companies, but\ntheir proposals have loopholes big enough to navigate an oil tanker through. In\ncontrast, the actions we are pursuing - like our unlimited liability\nlegislation - would unequivocally protect taxpayers, coastal families and\ncoastal businesses, not oil companies.\"\"\nLast\nmonth, the DPC released a research document detailing the profits and\ninvestments of some of the largest oil companies.  The report can be found\nHERE.\n\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3448e717-d8e4-4de5-a09d-1a8741ad3fc7,\"SENATORS MENENDEZ, LAUTENBERG ANNOUNCE $1 MILLION IN RECOVERY ACT FUNDS FOR GREEN JOBS TRAINING CENTER IN NEW JERSEY\n                    \n                      June 11, 2010\n                     WASHINGTON, D.C. – Today, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced that the U.S. Department of Energy has awarded the Bergen County Community Action Partnership $999,567 in federal funds to provide green job training to local workers in energy efficiency retrofitting and weatherization services.  A total of 34 projects in 27 states were selected to receive $29 million under the American Recovery and Reinvestment Act (ARRA) as part of efforts to develop and increase the number of weatherization training centers nationwide.  Using innovative approaches to training, including a combination of classroom, online and hands-on learning tools, these projects will help prepare weatherization workers, supervisors, and inspectors to work in the growing industry and will help ensure the successful implementation of high quality weatherization projects.“This funding will help strengthen our state’s workforce to ensure it can harness the power of a 21st Century clean energy economy,” Menendez said. “It will also facilitate the type of work that helps our businesses and families cut their energy costs in the short term. With this type of investment we ensure our long term competitiveness and growth, while helping our families and businesses save money in these difficult times.” “Not only will this Recovery Act funding help families and businesses reduce energy costs, it will also prepare American workers for the 21st Century,” said Lautenberg, who as a member of the Senate Appropriations Committee helped write the Recovery Act. “Building a well-trained clean energy workforce will create green jobs in our state and help New Jersey families and businesses cut energy costs and increase efficiency.” These funds will build on previous efforts to expand the nation’s green workforce and build a self-sustaining energy retrofit industry that creates high-quality jobs that help improve the environment and save energy.  The weatherization training programs will support a wide range of government energy efficiency efforts, including the Energy Department’s Weatherization Assistance Program, which has already funded the weatherization of nearly 200,000 homes since earlier this year. These training centers are part of a broader Energy Department’s Training and Technical Assistance initiative for weatherization, which includes broader national training efforts, certification and accreditation, a wide range of online tools, program evaluations, quality reviews, and mentoring. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5eca9f06-c137-48a7-bd4c-b96be66f93d3,\"MENENDEZ: BOEHNER COMMENTS ON OIL COMPANY LIABILITY “TELL US ALL WE NEED TO KNOW ABOUT WHO REPUBLICANS STAND WITH”\n                    \n                            House Minority Leader today agreed with Chamber of Commerce that taxpayers need to pay for BP’s spill \n                    \n                      June 10, 2010\n                     WASHINGTON – Today, House Minority Leader John Boehner was asked if he agreed with the U.S. Chamber of Commerce’s CEO, who said, “We are going to have to get the money from the government and from the companies” to pay for BP’s oil spill in the Gulf of Mexico. Boehner responded, “I think the people responsible in the oil spill – BP and the federal government – should take full responsibility for what's happening there.” In a follow-up statement to a reporter, Boehner’s office avoided the issue of whether BP should pay for all economic damages from the spill, stating merely that BP is responsible for “the costs of the cleanup” – which is already required by law.\nU.S. Senator Robert Menendez (D-NJ) is the author of the Big Oil Bailout Prevention Act, which would implement unlimited liability for oil companies that spill and cause economic damage. He released the following statement:\n“At the same time Senate Republicans were angling to protect Big Oil from vehicle fuel efficiency standards, the leader of the House Republicans was angling to protect BP from paying for the economic damage it is causing. This tells us all we need to know about who Republicans stand with. They don’t stand with the taxpayers, who they would have pay for the economic damage from oil spills. Instead, they stand with oil companies who want all the profits from drilling, but want taxpayers to pay for spills.  The surest way to protect the taxpayers, coastal families and coastal small businesses is to ensure that oil companies that spill are fully accountable for the economic damage they cause. We need to pass the Big Oil Bailout Prevention Act now.”\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b54b6538-f9ec-4b51-bf71-1ca1f8178150,\"MENENDEZ HELPS DEFEAT MURKOWSKI RESOULTION THAT WOULD HAVE PROTECTED BIG OIL \n                    \n                            Video available here: http://www.youtube.com/watch?v=G3npcpt-bYY \n                    \n                      June 10, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), author of the Big Oil Bailout Prevention Act which would remove the oil company liability limit, today helped defeat an oil company protection resolution offered by Senator Lisa Murkowski (R-AK). It would have tied the Environmental Protection Agency’s hands when it comes to stopping pollution, including limiting its ability to set vehicle fuel efficiency standards. Senator Menendez spoke on the Senate floor in opposition to the resolution.\nVideo: http://www.youtube.com/watch?v=G3npcpt-bYY\nMr. President, I come to the floor in strong opposition to Senator Murkowski’s resolution because it means that we will needlessly use more oil.That’s why the oil industry supports this resolution – because this resolution would increase demand for their product. \nAnd in turn that’s why my Republican friends support this resolution. Whenever Big Oil wants something my colleagues on the other side of the aisle line up to support it.When the Republicans were in charge of MMS, they stripped the government’s ability to regulate oil drilling.Anyone who has turned on the news in the last 52 days can see exactly what the policy of allowing industry to police itself has gotten us. Now they want to go even further and strip the government’s ability to reduce our oil consumption and regulate pollution.This is simply a wrong-headed approach at the wrong time.This is not the time to increase oil consumption by more than 450 million barrels -- which this resolution would do. This is not the time to prop-up Big Oil, make ourselves less energy secure, and put our coastlines in further peril.The events unfolding in the Gulf have vividly shown us that we should not be doubling down on 19th century dirty fuels, but should instead move to clean technologies of the 21st century that will reinvigorate our economy, allow our businesses to compete internationally, improve our energy security, and preserve the environment.\nThe resolution is regressive on its face.For my home state of New Jersey alone it would increase dependence on oil by more than 14 million barrels in 2016 and cost New Jerseyans an additional $39 million at the gas pump in 2016.  The federal government gives Big Oil tax breaks, it gives Big Oil subsidies, the government even gives Big Oil a cap on damages stemming from oil spills.This resolution is just one more windfall for Big Oil at the expense of American taxpayers.\nMr. President, the choice is clear.We can keep protecting big oil from regulation, or we can do what reason, common sense, and good governance dictate.In light of the facts…in light of the need to reduce pollution…in light of the need to move toward new, smarter, greener energy for the future…in light of what we are seeing in the Gulf…In light of the fact that this resolution would cost consumers as much as $47 billion in additional fuel costs. I ask the Senate to soundly defeat the Murkowski resolution.With that, Mr. President, I yield the floor.\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e9a8be66-1ade-4b5b-b807-029194f7bbe5,\"ATLANTIC SENATORS SEEK PREPAREDNESS IN CASE BP OIL SPILL HITS EAST COAST\n                    \n                            Menendez and bipartisan group of 21 colleagues send letter requesting communication between federal response agencies and states, as well as development of long-term prediction models\n                    \n                      June 10, 2010\n                     WASHINGTON – With some communities along the eastern seaboard concerned that the BP oil spill could reach their waters, a bipartisan group of Atlantic Coast U.S. Senators wants to coordinate preparedness between their states and federal response agencies. In a letter to the heads of the relevant federal departments, Senator Robert Menendez (D-NJ) and 21 of his East Coast colleagues asked specifically for:\n•    Immediate communication with all Atlantic Coast state emergency preparedness agencies to ensure that they can be fully prepared and equipped for the worst case scenario, and\n•    New science-based, long-term projection models that can help determine the statistical probabilities of oil affecting various parts of the Atlantic Coast.\nMenendez was joined on the letter by Senators Barbara Mikulski (D-MD), Kirsten Gillibrand (D-NY), Jim Webb (D-VA), Richard Burr (R-NC), Charles Schumer (D-NY), Ted Kaufman (D-DE), Saxby Chambliss (R-GA), Scott Brown (R-MA), Mark Warner (D-VA), Johnny Isakson (R-GA), Jeanne Shaheen (D-NH), John Kerry (D-MA), Sheldon Whitehouse (D-RI), Tom Carper (D-DE), Frank Lautenberg (D-NJ), Christopher Dodd (D-CT), Susan Collins (R-ME), Kay Hagan (D-NC), Jack Reed (D-RI), Olympia Snowe (R-ME), Benjamin Cardin (D-MD).\n“Our states’ beaches are fully open for the summer season, and at this time, the oil spill does not pose an imminent threat to them,” wrote the senators. “However, the health of our shores is too important to be left to chance – not only are they natural treasures, but they are also how many families in our coastal communities earn a living. They add billions of dollars to our states’ economies, support millions of jobs and bring enjoyment to millions more families from nearby and across the nation. If there is any real risk to these communities from a spill that right now remains thousands of miles away, we need to know as soon as possible. Furthermore, our state agencies that will partner with federal agencies to protect our shores need to be fully prepared with the information and equipment needed to combat the worst case scenario. Such an effort should begin immediately. Thank you for your hard work to protect the Gulf Coast, and we look forward to collaborating with you.”\nText of letter:\nJune 10, 2010\nAdmiral Thad W. AllenCommandantUnited States Coast Guard2100 Second Street, SWWashington, DC 20593\nThe Honorable Janet NapolitanoSecretaryUnited States Department of Homeland SecurityWashington, DC 20528\nThe Honorable Gary LockeSecretaryUnited States Department of Commerce1401 Constitution Avenue NWWashington, DC 20230\nDear Admiral Allen, Secretary Napolitano, and Secretary Locke:\nAs United States Senators representing coastal states along the Atlantic seaboard, we are keeping close watch on the oil spill in the Gulf of Mexico, not only so we can help the residents of that region, but also to assess whether the oil and chemical dispersants might affect the beaches and fisheries in our home states. Some widely-viewed but unofficial projections indicate that parts of the spill could get caught in the Loop Current, which would bring the oil up along the East Coast. This outcome is less than a certainty – it may even be highly unlikely. Nevertheless, we have spoken with residents in our coastal communities who are concerned about the oil and chemical dispersants, and these communities should at the very least be fully prepared for the worst case scenario.\nTo this end, we want the federal government to proactively work to ensure coastal states along the Atlantic seaboard are prepared and to ensure that the public and local governments are given the best science-based information about where the spill might be headed. Specifically, we have two requests:\n•    We ask that the Department of Homeland Security immediately begin coordinating with all state emergency preparedness agencies along the Atlantic Coast, providing full information about how best to prepare for managing an oil spill and ensuring that these states are properly equipped for the worst-case scenario.\n•    We ask that the National Oceanic and Atmospheric Administration begin developing and disseminating official, science-based predictions about the long-term direction of the oil spill and chemical dispersants, that NOAA make frequent updates to these projections and that they be publicly available. We appreciate the current projections NOAA develops and posts on its website, but these estimates are limited to a 72-hour period. We fully understand that projecting the spill’s direction weeks or months in advance is extremely difficult, but it would be helpful to know the statistical probabilities of oil hitting various Atlantic Coast locations.\nOur states’ beaches are fully open for the summer season, and at this time, the oil spill does not pose an imminent threat to them. However, the health of our shores is too important to be left to chance – not only are they natural treasures, but they are also how many families in our coastal communities earn a living. They add billions of dollars to our states’ economies, support millions of jobs and bring enjoyment to millions more families from nearby and across the nation. If there is any real risk to these communities from a spill that right now remains thousands of miles away, we need to know as soon as possible. Furthermore, our state agencies that will partner with federal agencies to protect our shores need to be fully prepared with the information and equipment needed to combat the worst case scenario. Such an effort should begin immediately. Thank you for your hard work to protect the Gulf Coast, and we look forward to collaborating with you.\n                                                            Sincerely,                                                                                    ROBERT MENENDEZBARBARA MIKULSKIKIRSTEN E. GILLIBRANDJIM WEBB     RICHARD BURRCHARLES SCHUMERTED KAUFMANSAXBY CHAMBLISSSCOTT BROWNMARK WARNERJOHNNY ISAKSONJEANNE SHAHEEN            JOHN F. KERRYSHELDON WHITEHOUSETOM CARPERFRANK LAUTENBERGCHRISTOPHER J. DODDSUSAN COLLINSKAY HAGANJACK REEDOLYMPIA SNOWEBENJAMIN CARDIN\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c30cc4ea-3f8c-483b-ac2b-d7287ebbd0e7,\"MENENDEZ REMARKS ON OIL COMPANY LIABILITY BEFORE ENVIRONMENT AND PUBLIC WORKS COMMITTEE\n                    \n                      June 9, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), author of the Big Oil Bailout Prevention Act which would remove the oil company liability limit, today testified on his bill before the Senate Committee on Environment and Public Works. Below are his remarks, as prepared for delivery:                                                                           Chairman Boxer, Ranking Member Inhofe, I want to thank you for holding this important hearing on S.3305, the Big Oil Bailout Prevention Liability Act.  We need to act quickly to make sure oil companies are held fully accountable for all damages related to an oil spill.\nWe have all come a long way since I introduced this legislation a month ago. The Administration has moved to embrace the idea of unlimited liability for drilling in deep waters for all future drilling operations. Senators Vitter and Murkowski have introduced legislation that they say would hold BP accountable for unlimited damages for this incident, but is silent on future spills.\nAnd my proposal has changed as well. When this disaster first occurred, a $10 billion liability cap not only seemed adequate to compensate all those impacted by this spill, but it represented a sizable increase from the ridiculously low current level. But this spill is larger in scale than anything we have seen before in U.S. waters. It has forever changed our understanding of the potential size of oil disasters – even for someone like me, who had long warned about the danger of rig blowouts.  For that reason I, along with the 20 cosponsors of S.3305, have today introduced new legislation allow for unlimited liability.\nSo we have come a long way, but we still have a ways to go. One of the objections I have heard to removing the liability cap is that it will cause “Mom and Pop” drillers to go out of business. But this is not a question of small versus big companies.  This is about safe versus unsafe companies.\nIf you are drilling in the Gulf and are cutting corners the way BP allegedly has, then there is no doubt that insurers will be charging you more because you are a risky company. And if you are an unsafe company I am sure regulators are going to force you to overhaul your operations and use better equipment. That will definitely cost an unsafe company some money to get its operations into compliance.\nBut a company with a higher safety standard should not have those same issues to worry about. The insurers and regulators alike should be able to see that you are operating safely, and in turn, you should be able to continue your operations without the fear of major cost increases.\nHowever, if you are an unsafe company that is also small, then we should all be concerned. According to a recent analysis by Credit Suisse, BP’s clean up costs, economic damages and other related costs could total 37 BILLION Dollars. That is a shockingly high number but one BP will likely be able to absorb since the company is worth well over $100 billion dollars. But what if a similarly unsafe, but smaller company had caused this leak?\nAs you can see from the bar chart I have brought and the report I have provided, there is a company worth less than $500 million drilling in over 4,000 feet of water in the Gulf.  If a $500 million company had been the operator and had a spill causing $37 billion in costs and damages, I think it is clear that the residents of the Gulf and the American taxpayer would be holding the bag for over $36 billion dollars.\nSo, unsafe companies that are not so big that they could pay for their catastrophic mistakes might have reason to worry. But small, safe companies should be able to continue operating in the Gulf without fear.\nWe need to embrace unlimited liability for damages stemming from this spill, and we need to change the law for all potential future spills as well so the American taxpayer knows oil companies will pay for what they spill.\nBut I do not believe the Vitter approach will survive judicial scrutiny because it attempts to form a contract without the consent of the parties and because it is an unconstitutional Bill of Attainder. By contrast the Department of Justice and the Congressional Research Service have both testified that my bill would survive constitutional challenge. We need to pass legislation that will hold all oil companies accountable and hold up in court.\nIt is time we finally start treating oil companies like we do everyone else. The average taxpayer does not enjoy a liability cap, the guy installing solar panels on your roof does not have a liability cap and neither should oil companies.\nMadame Chairman, the “mom and pops” we should be worried about are not oil companies, but “mom and pop” taxpayers who should not have to pay to clean up oil spills. Thank you again for the opportunity to testify about this important issue.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8855f26f-acde-4f1f-9da5-04aca59de09a,\"MENENDEZ AND LAUTENBERG: SOUTH JERSEY HEALTH CENTERS TO RECEIVE $3 MILLION FOR ELECTRONIC RECORD TECHNOLOGY\n                    \n                            Recovery Act Grant to Assist Medical Centers that service Atlantic, Burlington, Salem counties\n                    \n                      June 8, 2010\n                     WASHINGTON, D.C. – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Southern Jersey Family Medical Centers in Hammonton has been awarded $3 million in federal funding from the American Recovery and Reinvestment Act (ARRA) to invest in electronic health record technology. The Recovery Act, which Lautenberg helped author as a member of the Senate Appropriations Committee, was signed into law by President Obama in February of 2009. “This Recovery Act funding will help improve access to quality health care service for South Jersey families and individuals,” Lautenberg said.  “Investing in electronic health records will help stem growing health costs, reduce medical errors, and improve patient care. With this funding, New Jersey’s health care system will take an important step forward into the 21st century.”\n“Ensuring that our family and community doctors can digitally organize our medical histories in order to better coordinate care makes our health care more accurate, efficient, and affordable. It also makes it easier to navigate for patients that often get lost in the maze of the system,” said Menendez. “This is the type of investment that will help our health care system successfully transition into the 21st century and will create the high-tech jobs necessary to carry out that transition.”\nElectronic health records will improve the quality of health care for New Jersey residents by making it easier for physicians, nurses, and patients to access information they need to make decisions about the care they provide.  The Southern Jersey Family Medical Centers provide primary health care services to low-income families and individuals and the uninsured in local communities at eight centers in Atlantic, Burlington and Salem counties.\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3c748697-d871-440b-b2d0-0eae30fe6f9c,\"SENATORS FIGHT FOR SUBPOENA POWER FOR BP OIL SPILL INVESTIGATION\n                    \n                            Legislation granting Presidential Commission subpoena power would facilitate complete, accurate investigation into BP oil spill\n                    \n                      June 8, 2010\n                     WASHINGTON, DC —U.S. Senator Jeanne Shaheen (D-NH), along with nine Senate colleagues, today introduced legislation to grant subpoena power to the bipartisan National Commission on the BP Deepwater Horizon Oil Spill and Offshore Drilling, which President Obama created by executive order on May 22.  Congress has previously granted subpoena power to presidential commissions investigating national crises, including the Warren Commission and the Three Mile Island Commission.  Joining Shaheen on this legislation are Senators John Kerry (D-MA), Byron Dorgan (D-ND), Patty Murray (D-WA), Mary Landrieu (D-LA), Bob Menendez (D-NJ), Bob Casey (D-PA),  Amy Klobuchar (D-MN), Mark Begich (D-AK), and Kirsten Gillibrand (D-NY). The Senators strongly believe that the BP Commission must have subpoena power to ensure access to all the evidence it needs to undertake a complete investigation on the causes of the spill and make meaningful recommendations on how to prevent similar disasters. Today, Representatives Lois Capps (D-CA) and Ed Markey (D-MA) plan to introduce similar legislation in the House. \n“BP and the other companies responsible for this devastating oil spill must not be allowed to stonewall the American people,” said Shaheen.  “Subpoena power is absolutely necessary to make sure that all responsible parties provide us with the information and evidence we need in order to prevent an economic and environmental disaster of this magnitude from ever happening again.”  \n“We need to know what went wrong so it never happens again, and that means the President’s commission needs the facts and they need access to information when they request it,” said Kerry. “As someone who has led investigations of everything from money laundering to the fate of American POW’s missing in action, I can tell you that subpoena power is essential. Without it, a commission is just window dressing.” \n“Taking this action is not only appropriate, it is the responsible thing to do, given the magnitude of this disaster,” said Dorgan. “It is also consistent with federal commission investigations that followed previous disasters, such as Three Mile Island. The American people deserve to know the complete facts. Those who caused this disaster to happen must be held fully accountable. Subpoena power is essential to meeting both of those goals.”\n“We need answers to make sure a disaster like this never happens again, and we can’t count on the oil company executives to show up voluntarily to provide them,” said Murray. “The Presidential Commission needs this extra legal tool to get to the bottom of this disaster that killed 11 workers and devastated the Gulf of Mexico’s environment and economy.” \n“The White House Commission tasked with investigating this terrible accident must have every available tool to examine what went wrong and recommend appropriate steps to ensure it never happens again,” said Landrieu. “Subpoena power will give the Commission the teeth needed to get this job done right so that offshore energy production can resume quickly and safely. The people of the Gulf Coast cannot afford to sit by and wait out any stonewalling by the people responsible for this disaster.”\n“Oil drilling is never without risk, but if we are going to make it as safe as possible, we need to provide the commission with every tool available to find out what caused the Deepwater Horizon disaster,” said Menendez.  “Unlike the gush of oil, BP has tightly controlled the flow of information following this spill. The only way to get the information we all need is for the commission to have the power to compel its disclosure.”\n“BP’s behavior so far raises major doubts about its willingness to provide a full accounting of what went wrong,” said Casey.  “As we witness the continued destruction affecting the livelihood of Gulf residents and the environment, a full and thorough investigation must be conducted.”\n“As a former prosecutor, I understand that the American people want answers from those responsible for the devastating Gulf oil spill,” said Klobuchar. “Providing subpoena power to the President’s Commission will ensure that no stone goes unturned and will enable the American people to get the full truth about how and why this disaster occurred.”\n“Alaskans understand firsthand the damaging results of an oil spill and the importance of getting to the bottom of what caused it,” said Begich. “It is vital that we commit all appropriate resources to identifying the cause of this spill and determining recommendations to ensure the safe development of future oil and natural gas reserves. Arming the Presidential Commission with subpoena power will help us accomplish these goals and help the affected communities recover.”\n\"\"Our investigations must have real teeth with subpoena power that allow us to get to the bottom of this catastrophe,” said Gillibrand. “Subpoena power is critical to hold all parties accountable, protect taxpayers and successfully clean up the disaster in the Gulf.\"\"  \n                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=46c22ded-f1f5-4b16-8073-fc422fc71c52,\"SENATE PASSES MENENDEZ RESOLUTION TO RECOGNIZE MAY AS NATIONAL PRADER-WILLI SYNDROME AWARENESS MONTH\n                    \n                      June 8, 2010\n                     WASHINGTON – Today US Senator Robert Menendez (D-NJ) praised the Senate passage of a resolution he introduced earlier this year to designate May as National Prader-Willi Syndrome Awareness Month (S.RES.543), raise public awareness, and support scientific research on the disorder. Prader-Willi Syndrome (PWS) is a complex genetic disorder and debilitating condition that distorts hunger and satiety cues, causing individuals to overeat and often resulting in morbid obesity if not closely monitored. In addition to obesity, PWS usually causes mild to moderate intellectual disabilities, speech abnormalities, short stature, scoliosis, sleep disturbances with excessive daytime sleepiness, an abnormally high pain threshold, and infertility. The resolution was co-sponsored by Senators Benjamin Cardin (D-MD) and Patrick Leahy (D-VT). \n “Prader-Willi is a devastating but rarely-known condition that disrupts 1 in every 15,000 lives, including the lives of more than 200 New Jerseyans,” said Menendez. “With passage of this resolution, the U.S. Senate has officially established May as National Prader-Willi Syndrome (PWS) Awareness Month, and I am proud to have led that effort. Our hope is that this resolution will bring awareness and education about PWS and encourage continued research of this syndrome.”\nWhile PSW  is a rare disorder that affects only 1 in 15,000 newborns, studies have shown that affected individuals have a high mortality rate, require early intervention, in addition to close and constant monitoring of their health. Given that most of its causes and symptoms remain widely misunderstood and therefore untreated, this resolution will help promote the necessary research to further understand the disorder and improve the quality of life for individuals that suffer the condition. \nClick here to read the full resolution: http://menendez.senate.gov/imo/media/doc/PraderWilliResolution.pdf\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d69a6351-be17-494f-8d61-d0fbc0162de5,\"Senator Menendez Fights To Close Big Oil Tax Loopholes \n                    \n                            The Close Big Oil Tax Loopholes Act Would Save Over $20 billion Over Ten Years; at least $750 million for NJ taxpayers\n                    \n                      June 7, 2010\n                     HOBOKEN, NJ – U.S. Senator Robert Menendez today stood across the street from a BP gas station to highlight legislation that will close a number of loopholes that allow oil companies to avoid paying billions of dollars in taxes.  The Close Big Oil Tax Loopholes Act, co-sponsored by Senators Bill Nelson (D-FL) and Jeff Merkley (D-OR), targets a series of tax breaks related to drilling activities and revenues, as well as foreign tax schemes. Menendez estimates that closing these loopholes will amount to more than $20 billion over ten years for the taxpayers.  Senator Menendez was flanked by NJ Citizen Action representative Adam Sherman and concerned citizen JD Capuano, as well as citizens who don’t want to see a hugely profitable, polluting industry enjoy tax breaks while most American taxpayers struggle.\n\n“There’s no valid reason for these multi-billion dollar international corporations to shortchange the American taxpayer,” said Senator Menendez”. Look at those gas prices. They certainly aren’t using the extra money they get from exploiting tax loopholes to help bring down the price of a gallon of gas for New Jersey families. Unlike the oil gushing into the Gulf, we can immediately stop the flow of government subsidies flowing to Big Oil and plug these loopholes when we pass this legislation. We could certainly use the billions of dollars lost in Big Oil giveaways to help balance the budget or reduce taxes paid by middle class families.”\n\n\n\"\"Despite experiencing a near collapse of our economy, giant oil companies have made record profits in recent years at the same time that many people in New Jersey have lost their job or have seen their  wages cut or frozen,\"\" said NJ Citizen Action Organizer Adam Sherman.  \n\n\n\"\"Citizen Action talks to working families and seniors every day through our door to door canvass and every day we talk to folks who are struggling to make ends meet and hope for a better life for their children.  And they pay their taxes.  As we all know, New Jersey is facing a critical budget shortfall, unemployment is stuck at dangerously high levels and we are looking at cutting support for our state’s schools and critical safety net programs.   More money coming to New Jersey by eliminating tax breaks for big oil companies is just the kind of help we need from Washington.\"\"\n\n\n“Let's be clear on what this legislation means.  This isn't a punishment for big oil.  It isn't even asking these corporations to sacrifice,” said JD Capuano, a member of the Quality of Life Coalition. “What it does is simple.  It requires big oil to pay their fair share.  How can ordinary Americans continue to get squeezed while these companies make money hand over fist at the same time they exploit tax loopholes?”\n\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7f84bdde-72aa-4a7b-8c25-81d1368a387c,\"MENENDEZ APPLAUDS WHITE HOUSE ENDORSEMENT OF UNLIMITED LIABILITY FOR OIL COMPANIES THAT SPILL\n                    \n                            Administration says it supports legislation to remove liability cap\n                    \n                      June 7, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), the author of the Big Oil Bailout Prevention Act who has led the charge to ensure oil companies that spill are fully accountable for all economic damage, today applauded a White House statement signaling its support for his legislative effort. In a report posted on Huffington Post (http://www.huffingtonpost.com/2010/06/07/white-house-endorses-unli_n_603592.html), White House spokesman Ben LaBolt said: \"\"The president supports removing caps on liability for oil companies engaged in offshore drilling. Oil companies should have every incentive to maximize safety and arbitrary caps on liability create a disincentive to achieve that goal.\"\"\nMenendez released the following statement:\n“Under current law, corporations that submerge entire communities in oil are shielded from full accountability. Devastated small businesses, local families and taxpayers are left holding the bill, while corporations can protect their profits. Our focus should be on protecting families and taxpayers, not wealthy oil companies, and the White House has shown that it fully agrees. Taxpayers and coastal communities need our Republican colleagues to join us in ensuring that oil companies are held fully accountable for economic damage caused by their spills. The Republican proposals to this point have been all for show – they either retain protections for much of the oil industry or have loopholes big enough to navigate an oil tanker through. There should never be an instance in which an oil company is shielded from accountability for economic damage it causes, and the only way to ensure full accountability is to remove the liability limit, period.”\n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=928e785e-0100-4404-8a95-5414e9d15b61,\"MENENDEZ STATEMENT ON TERROR ARRESTS  \n                    \n                      June 6, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) released the following statement today on the arrests of two New Jersey men boarding a plane in New York, allegedly on their way to join a terrorist organization in Somalia:\n“Of the numerous terror-related arrests made across the nation over the past year, this one hits closest to home for us in New Jersey. I applaud our law enforcement for its focus on disrupting potential threats to Americans at home and abroad and for acting decisively in carrying out these arrests. This development serves as yet another reminder that we face a continuing terrorist threat in our state and nation and that we must all stay vigilant. This case underscores the importance of intelligence sharing, an issue I championed as a leader on legislation to implement the 9/11 Commission recommendations. More broadly speaking, it is crucial that our military mission overseas centers on disrupting and dismantling terrorist organizations plotting to attack Americans and does not stray from that objective. I will continue my work in the U.S. Senate to ensure that our resources in Pakistan are being used expressly to disrupt militants and to ensure that our mission in Afghanistan zeroes in on al Qaeda.”\n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2b2a060e-bdd3-4db5-a0fb-f2c09cc47691,\"SENATORS MENENDEZ AND LAUTENBERG ANNOUNCE $4 MILLION FOR RUTGERS’ NATIONAL TRANSIT INSTITUTE\n                    \n                      June 3, 2010\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced that the Department of Transportation has awarded $4,300,000 in funds to the National Transit Institute (NTI). The Institute was established in 1991 under the Intermodal Surface Transportation Efficiency Act (ISTEA) with the objective of developing, promoting, and delivering quality training, education, and clearinghouse services for the public transit industry. Its primary objective is to develop, deliver, and promote quality programs and materials via cooperative partnerships with industry, government, institutions, and associations around the country. “As we know well in New Jersey, public transit helps families save time and money and helps clear the air we breathe,” said Menendez. “An emphasis on public transit will be critical to rebuilding our economy because of its potential to create new jobs, cut energy costs and traffic congestion and reduce pollution. This federal investment will not only help support a renewed focus on public transit, but it will help New Jersey and Rutgers continue to lead the way.” “As more people across the country are taking mass transit than ever before, it’s critical that we have the most up to date research to keep our transit systems moving safely and efficiently,” Lautenberg said. “This federal funding will continue the vital research that the National Transit Institute has been conducting since 1991.”  Since its founding in 1991, NTI has developed 149 courses and other training materials in collaboration with the Federal Transit Administration (FTA) and the public transit industry in response to their needs. New courses are developed every year to adapt to changes in the industry. In recent years, NTI modernized its educational approach to include the use of visual digital resources outside the classroom. Including the current fiscal year, NTI has been awarded a total of $79.7 million in federal funds since it was established in 1991. For more information about the National Transit Institute, click here: http://www.ntionline.com/index.asp                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f0607e98-f08c-4189-b100-9c2fa2a7c8d3,\"SENATOR MENENDEZ ON FLOODINGS AND MUDSLIDES IN CENTRAL AMERICA\n                    \n                      June 3, 2010\n                     WASHINGTON – Following Tropical Storm Agatha, widespread floods and mudslides have buried entire communities, caused the collapse of buildings and other infrastructure, left hundreds dead or missing, and forced the evacuation of thousands in Guatemala and El Salvador. Today, US Senator Menendez (D-NJ), Chairman of the Foreign Relations Subcommittee that oversees U.S. foreign assistance, released the following statement:\n“Our thoughts and prayers are with the people of Guatemala and El Salvador, who are suffering the devastating after-effects from the tropical storm that hit the region last week. The floods and mudslides that resulted from the storm have been catastrophic for these countries, which in many areas lack the infrastructure and resources to successfully confront this type of disaster. Entire communities have been completely buried, hundreds have died or disappeared, and thousands are displaced. The United States has stood in solidarity and mobilized resources to help our Central American neighbors in this difficult moment. I applaud the Administration and USAID for their immediate response to this tragedy, and as Chairman of the Foreign Relations subcommittee for foreign assistance, I will work to ensure our nation swiftly responds to requests from Guatemala and El Salvador in the rescue and recovery process.”\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=430e28e1-4593-47fb-a552-163a72aeadc3,\"LAUTENBERG, MENENDEZ AND HOLT JOIN HUD SECRETARY DONOVAN AND MAYOR PALMER TO ANNOUNCE $22 MILLION FOR TRENTON REDEVELOPMENT\n                    \n                             HOPE VI GRANT FOR MILLER HOMES REDEVELOPMENT WILL CREATE 309 HOMES\n                    \n                      June 2, 2010\n                     TRENTON, NJ – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) and Rep. Rush D. Holt (D-12) joined Housing and Urban Development (HUD) Secretary Shaun Donovan and Trenton Mayor Douglas H. Palmer in announcing $22 million in federal HOPE VI funding for the Miller Homes revitalization effort.  The existing buildings will be demolished and will be replaced with 309 units – both on and off site.  The project is estimated to create approximately 120 construction jobs and 20 permanent jobs.  \n“We are proud to be working with President Obama and Secretary Donovan to help rebuild Trenton,” said Lautenberg, a member of the Appropriations Subcommittee on Transportation and Housing and Urban Development. “These federal funds will provide New Jersey’s capital city with an opportunity to tear down the Miller Towers and build up a stronger neighborhood.  By working together, we can help neighborhoods, families and children down the path of a brighter future.”\n“Just as the housing crisis had devastating ripple effects, bringing stability to the housing sector can have many positive ripple effects for families, communities and economy,” said Menendez, Chairman of the Banking Subcommittee on Housing, Transportation and Community Development. “For the families who will occupy the residences of the new Miller Homes, this investment means an affordable, quality roof overhead. To the Trenton community, this investment means part of the economic rebuilding process, with ripple effects including housing security, community development and new jobs.”\n“For well over a decade, the empty Miller Homes towers have loomed over the neighborhood as symbols of decay and abandonment -- and reminders of what could be,” Holt said. “With extensive planning, community involvement, and now $22 million in federal funding, we look forward to the day when this area is a bustling center of affordable housing with easy access to retail, public transportation, and green spaces.”\n“The plan is to leverage this $22 million grant to more than $100 million, which truly will transform this neighborhood for homeownership and modern rental housing,” said Palmer.  “In addition to helping hundreds of residents, the revitalization here will enhance the marketability and feasibility of the entire area surrounding our newly renovated Trenton Transit Center.  This is a triumph for Trenton – and is testimony to the importance of intergovernmental partnerships across all levels of government – especially with the late Trenton Housing Authority leader Wayne Lartigue, Secretary Shaun Donovan and the Obama administration, Senator Lautenberg and our entire congressional delegation, and so many more who work steadily, quietly, and effectively on behalf of working families.”\nNew Jersey has received two of the six national HOPE VI revitalization grants announced this week for a total of $31.7 million. In addition to the $22 million in funding for Trenton, Jersey City received $9.7 million for the A. Harry Moore public housing development.  The money for Jersey City will go toward demolition and the construction of 299 new units.\nSince 1993, HUD has awarded HOPE VI grants to public housing authorities across the country to encourage public-private partnerships to transform severely distressed public housing into mixed-income communities that assist residents in becoming self-sufficient. The program was created in 1992 when it was determined there were 86,000 public housing units in the U.S. in need of revitalization.  HOPE VI Revitalization grant funds are used for an array of activities, including demolition of severely distressed public housing, acquisition of sites for off-site construction, new construction, and costs for counseling and relocation. Since the program’s inception, New Jersey has received nearly $385 million for HOPE VI redevelopment projects around the state.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ef51ab0a-1979-4ead-85f8-f70e85bf6873,\"MENENDEZ, LAUTENBERG, SIRES, HUD SECRETARY DONOVAN AND MAYOR HEALY ANNOUNCE $9.7 MILLION FOR JERSEY CITY REDEVELOPMENT\n                    \n                            HOPE VI GRANT FOR A. HARRY MOORE REDEVELOPMENT WILL CREATE 299 HOMES, MARKS THIRD AWARD FOR JERSEY CITY\n                    \n                      June 2, 2010\n                     JERSEY CITY, NJ – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ), Rep. Albio Sires (D-13), Housing and Urban Development (HUD) Secretary Shaun Donovan and Jersey City Mayor Jerramiah Healy today announced $9.7 million in federal HOPE VI funding for the A. Harry Moore revitalization effort.  The existing buildings will be demolished and will be replaced with 299 units – both on and off site. This will be Jersey City’s third HOPE VI grant, with the previous two totaling more than $65 million.\n“We are proud to be working with President Obama and Secretary Donovan to help rebuild Jersey City,” said Lautenberg, a member of the Appropriations Subcommittee on Transportation and Housing and Urban Development. “These federal funds will provide Jersey City with an opportunity to tear down the A. Harry Moore development and build up a stronger neighborhood.  By working together, we can help neighborhoods, families and children down the path of a brighter future.”\n“Just as the housing crisis had devastating ripple effects, bringing stability to the housing sector can have many positive ripple effects for families, communities and economy,” said Menendez, Chairman of the Banking Subcommittee on Housing, Transportation and Community Development. “For the families who will occupy the residences of the new Miller Homes, this investment means an affordable, quality roof overhead. To the Trenton community, this investment means part of the economic rebuilding process, with ripple effects including housing security, community development and new jobs.”\n“This grant awarded by HUD will assist the JCHA to move forward in its efforts to revitalize its public housing developments into safe, livable communities for the benefit of its residents,” said Sires.\n“Our housing authority has established itself as a model for others throughout the country, from its Section 8 program to its green building practices to its award-winning redevelopments,” said Healy. “We can’t thank President Obama and Secretary Donovan enough for this funding, which will ensure that the distressed housing at A. Harry Moore becomes yet another project that Jersey City can be proud of.”\nNew Jersey has received two of the six national HOPE VI revitalization grants announced this week for a total of $31.7 million.  In addition to the $9.7 million in funding for Jersey City, Trenton received $22 million for the Miller Homes public housing development.  The money for Trenton will go toward demolition and the construction of 309 new units.\nSince 1993, HUD has awarded HOPE VI grants to public housing authorities across the country to encourage public-private partnerships to transform severely distressed public housing into mixed-income communities that assist residents in becoming self-sufficient. The program was created in 1992 when it was determined there were 86,000 public housing units in the U.S. in need of revitalization.  HOPE VI Revitalization grant funds are used for an array of activities, including demolition of severely distressed public housing, acquisition of sites for off-site construction, new construction, and costs for counseling and relocation. Since the program’s inception, New Jersey has received nearly $385 million for HOPE VI redevelopment projects around the state.\n                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8dd752f4-55e8-4893-b403-9ca509ff247b,\"MENENDEZ MEMORIAL DAY STATEMENT\n                    \n                      May 31, 2010\n                     WASHINGTON - Today, Senator Robert Menendez (D-NJ) released the following statement in honor of American servicemen and women, past and present:\n\"\"As we all spend Memorial Day celebrating with friends and family, let us remember the meaning behind this day: the men and women of our Armed Forces who have made the ultimate sacrifice serving our country. They are the reason we have the freedom that we all cherish. A grateful nation honors them not only with the parades and remembrances this weekend, but with gratitude in our words and deeds every day of the year. This is particularly important with our military currently engaged in two wars overseas. In the Senate, I have and will always work to ensure that our state and nation's veterans are not forgotten upon their return home -- from fighting for improved veterans health care to championing the federal investment in state veterans cemeteries. Implementing these types of policies to assist our veterans and their families is the least we can do to say, 'Thank You.'\"\"\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e3dc0775-85bb-4f5b-ab5c-be5a6aba27d4,\"MENENDEZ PREVAILS IN STOPPING VIRGINIA DRILLING\n                    \n                            NJ Senator authored letter to Obama urging cancellation of East Coast drilling plans\n                    \n                      May 27, 2010\n                     WASHINGTON – Today, President Obama announced a number of actions in response to the oil spill in the Gulf of Mexico, including cancelling the drilling lease sale along the Virginia coast. The drilling site in question included areas less than 100 miles from the Jersey Shore.\nU.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee, has led the fight against expanded coastline drilling. He authored a letter to President Obama after the Deepwater Horizon disaster urging that East Coast drilling plans be reversed (http://menendez.senate.gov/newsroom/press/release/?id=4f44a3d0-6b65-43dd-a41a-bddfb9fc5a54). Today, he applauded the administration’s decision as a step toward fully protecting the Jersey Shore from risk and implementing smarter energy policy.\n“Small businesses preparing for the beach season have no doubt wondered how they would survive if oil started washing up on the Jersey Shore,” said Menendez. “We can all breathe easier that our shore will not be put at risk from a nearby oil rig in the foreseeable future. The Jersey Shore is part of our lives, and for many New Jersey families, it is the source of their livelihoods. This action will protect us in the near term, but we ultimately need to go a number of steps further and ensure that the East Coast will never be subject to oil rigs. Now is the time to put our muscle behind finally transitioning from the fossil fuels of the past to the clean, limitless energy sources of the future.”\nIn the wake of the Deepwater Horizon disaster, Menendez has led the way in the fight to ensure that oil companies are fully accountable to coastal communities facing economic damages from current and future oil spills. The latest version of his Big Oil Bailout Prevention legislation would establish unlimited liability for oil companies that spill.\nMenendez also continues to lead the efforts to end the close ties between federal regulators and the oil industry, which allows oil companies to escape close scrutiny of safety precautions. His Stop Cozy Relationships With Big Oil Act (http://menendez.senate.gov/newsroom/press/release/?id=febbc0ca-c98d-412a-bd72-8116f86b4a97) would shut the revolving door between the regulatory agencies and the industry and crack down on gifts and financial incentives.\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cbb5b390-86f7-4f3d-a405-de934d29c3da,\"Menendez, Nelson, Lautenberg, Shaheen Discuss Economic Impact of BP Oil Spill and the Need for Accountability\n                    \n                      May 27, 2010\n                     WASHINGTON —Senators Robert Menendez, Bill Nelson, Frank Lautenberg and Jeanne Shaheen held a press conference this morning to discuss the economic effects of the BP oil spill and the need to hold oil polluters like BP fully accountable for the cost of the spills they cause.\nThe Democratic Policy Committee (DPC) released a report this morning detailing the destructive economic impacts being felt across states and industries as a result of BP’s negligence.  The Senators called on Republicans to stop protecting BP and join Democrats to ensure that BP – not the American taxpayer – pays for its negligence, no matter what the cost.\n\n“People understand the ridiculousness of the claims some have made that it is ‘un-American’ to hold a multi-billion dollar foreign corporation accountable for the disaster it caused,” said Senator Menendez.  “This is a chance to show if we stand with big oil companies or with small businesses, fisheries, and coastal communities. There should be no legal wiggle-room for oil companies that devastate coastal businesses and communities now or in the future.”\n“Right now, our top priorities are capping the well and protecting and cleaning up the Gulf and Gulf coast,” said Senator Bill Nelson.  “The cost of all this is going to be astronomical.  This is why we must hold BP accountable.”\n“BP has committed an act of treachery in the Gulf that will go down as one of the most deplorable catastrophes in American history,” said Senator Lautenberg.  “It’s clear that a $75 million liability cap won’t come close to covering the economic damages caused by this disaster in the Gulf.  Whether it is fishermen, hotel workers or shop owners, our nation depends on an unspoiled coastline.  Taxpayers shouldn’t be the ones paying to take care of the people and communities hurt by BP’s pollution.”\n“It is unacceptable that while BP made more than $16 billion in profits last year, they are currently only responsible for $75 million of the expected billions in economic damages from this catastrophic oil spill,” said Senator Shaheen.  “BP and the contractors it hired are to blame for this disaster.  They should be on the hook for the economic damages caused by this mess – not taxpayers.”\n\n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9ad560af-a196-4d25-b4f9-bad0f6f7bc7c,\"MENENDEZ, LAUTENBERG, PALLONE, HOLT STATEMENT ON  PRODUCTIVE MEETING WITH ARMY SECRETARY ABOUT FORT MONMOUTH\n                    \n                      May 26, 2010\n                     WASHINGTON – U.S. Senators Frank Lautenberg and Robert Menendez and U.S. Representatives Frank Pallone (NJ-6) and Rush Holt (NJ-12) today issued the following joint statement, following their meeting with John McHugh, Secretary of the Army. The Senators and Representatives requested the meeting to discuss their concerns surrounding the pending closure of Fort Monmouth and the impact of that closure on the military and New Jersey.\n “We had a productive meeting with Secretary McHugh. Our greatest concern is ensuring that the Army maintains the ability to continue to provide the intelligence and communications support essential to our troops – including service members from New Jersey – on the battlefields of Iraq and Afghanistan. As Secretary McHugh acknowledged, the Army still projects that only half of the existing workforce is likely to move to Maryland, and that the Army is open to executing a Memorandum of Understanding with the State and the New Jersey Technology Solutions Center as one way to ensure mission support continues. The Secretary expects to have an announcement about funding for the Center in the near future, possibly as early as next week. We look forward to continuing to work with the Secretary to ensure that we meet the needs of deployed troops, military retirees, and veterans living in New Jersey.”\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=37c92764-0045-4f66-899a-ae9c6a352eb2,\"SENS. LAUTENBERG AND MENENDEZ INTRODUCE EMERGENCY TRANSIT FUNDING MEASURE TO HELP STEM FARE HIKES AND SERVICE CUTS\n                    \n                            Legislation would deliver an estimate $125 million for NJ transit\n                    \n                      May 26, 2010\n                     WASHINGTON - Today U.S. Sens. Frank Lautenberg (D-NJ) and Robert Menendez (D-NJ) joined Senate Banking, Housing, and Urban Affairs Committee Chairman Chris Dodd (D-CT) to introduce a bill that would authorize emergency funding for transit agencies to help reverse fare increases and service cuts. “This measure would provide critical relief to New Jersey’s commuters and transit riders across the country when they need it most.  Investing in transit will help stem fare hikes and improve service so that working class families can get to work on time and without breaking the bank,” Lautenberg, a member of the Senate Commerce, Science and Transportation Committee said. “Cutbacks at NJ Transit has made transit service for New Jerseyans more expensive and less accessible. This is a moment in which we should be investing in our public transportation, not undermining it. Emphasizing mass transit helps rebuild our economy through lower commuting costs, new jobs and cleaner air.” Senator Menendez, who is chairman of the Banking, Housing and Urban Affairs Subcommittee with jurisdiction over mass transit said. “While families continue to struggle to make ends meet the last thing we should do is make it harder and more expensive for people to get to work.  This bill will prevent disruptive service cuts and help put money back in the pockets of families when they need it most,” Chairman Dodd said. \nState and local governments have been hit hard by the downturn in the economy and public transportation systems nationwide are experiencing major budget cuts as a result.  The American Public Transportation Association reports that since January 1, 2009, 84 percent of public transit systems have either raised fares, cut service or are considering those options. This bill will authorize $2 billion for transit agencies nationwide to help close funding gaps in operating costs.  Transit agencies would be able to use these funds to reduce fare increases and restore services that were cut after January 2009 or to prevent future service cuts or fare increases through September 2011.  Agencies that have not increased rates or cut services and do not plan to do so may use the funds for infrastructure improvements.  NJ Transit would receive an estimated $125 million under this bill. The legislation is also cosponsored by Senators Dick Durbin (D-IL), Charles Schumer (D-NY), Sherrod Brown (D-OH), Jack Reed (D-RI), and Kirsten Gillibrand (D-NY).\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=63f8a4d1-2770-425c-adc8-b57de3fd82cd,\"LAUTENBERG AND MENENDEZ ANNOUNCE MORE THAN $400,000 FOR CAMDEN FIREFIGHTERS \n                    \n                      May 26, 2010\n                     WASHINGTON — U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the Camden Fire Department will receive $404,424 in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  The AFG funding being awarded to Camden can be invested in training, equipment, personal protective equipment, wellness programs, and other support for stations and facilities.\n“For more than 140 years, the Camden Fire Department has served its community and provided emergency services that keep our families safe,” Sen. Lautenberg said. “This grant recognizes the value of Camden’s firefighters, and makes the investment needed to provide them with the best resources to do their job.”    \n“Camden’s firefighters risk their lives to protect ours -- the very least we can do is ensure that they are fully prepared and protected themselves.  This investment will provide them with the equipment and training to needed to safeguard families and homes.” said Sen. Menendez. \nThe AFG program is an important component of the larger, coordinated effort to strengthen America’s overall level of preparedness and ability to respond to fire and related hazards.  The purpose of the program is to award grants directly to fire departments and EMS organizations to enhance their ability to protect the health and safety of the public, as well as that of first-responder personnel. \nFor more information about the program, please visit: http://www.firegrantsupport.com/                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d5794a47-43a5-4afc-85a3-9e09293b1094,\"MENENDEZ STATEMENT ON TROOPS TO BORDER\n                    \n                      May 26, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) released the following statement on the Obama administration’s decision to send 1,200 National Guard troops to the U.S.-Mexico border:\n“As Senator McCain himself said many times in Senate speeches when he was a maverick, the solution to our broken immigration system has to be comprehensive. Border enforcement is a part of realistic, commonsense reform, but it alone is far from the answer. The Obama administration’s militarization of the border amounts to a submission to the political forces brought by the Republican Party. If there is a greater border presence necessary, it should be in the form of additional regular border patrol agents.”\n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=febbc0ca-c98d-412a-bd72-8116f86b4a97,\"Lawmakers: It's Time to Close the Revolving Door Between Regulators and Big Oil Once-And-For-All\n                    \n                      May 26, 2010\n                     WASHINGTON - Two U.S. senators filed legislation today to once-and-for-all end the cozy relationships between the oil industry and the federal agency that regulates drillers.\nRecent investigations at the Minerals Management Service of the U.S. Interior Department have shown that employees there engaged in sexual relationships with oil industry representatives, accepted gifts and trips from them and easily won jobs with the companies.  An inspector general’s recent report issued just yesterday revealed there was a revolving door between MMS employees and the oil industry; MMS employees accepted gifts from companies they regulate; and, some of the employees falsified inspection forms.  http://www.billnelson.senate.gov/news/IGreport.pdf\nSuch activities would be treated harshly under the legislation by U.S. Sens. Robert Menendez of New Jersey and Bill Nelson of Florida.  A drilling regulator who made any kind of false statement, for instance, could face up to 15 years in prison under their bill.\n\nSaid Menendez: “The more we learn about the safety oversight of oil drilling, the more it becomes clear that for many years the federal regulators have been a wholly-owned subsidiary of Big Oil. When a regulator is lured by immediate or future financial gain, the industry is able to ignore safety rules. The only foolproof way to prevent oil spills is to transition ourselves off of our dependence on oil, but until that day, we have to make sure the cop on the beat isn’t actually on the take.”\nSaid Nelson: “We don’t need our public servants serving Big Oil.  The conduct in this agency is at least indirectly responsible for what is becoming one of the country’s worst disasters.”\n\nThe Menendez-Nelson legislation – called the Stop Cozy Relationships With Big Oil Act - would ban public employees at Interior from taking oil industry jobs for two years after leaving the government.  It also would make it a felony for oil and gas regulators to knowingly accept a gift from industry.  And it would increase the penalties to 15 years in prison for oil and gas regulators making fraudulent statements or false representations.  \nA summary of legislation follows, as does the lawmakers’ letter today to Interior Secretary Ken Salazar, which also is attached in pdf form: \nThe Stop Cozy Relationships With Big Oil Act would:\n•       Prohibit regulators from simultaneously doing work for the oil and gas industry.  •       Make it a felony for regulators to work for the industry within two years of leaving their government job.  •       Make it a felony for an oil and gas regulator to knowingly accept a gift from industry.•       Require financial disclosure for senior oil and gas regulators (GS-13 or higher).•       Prohibit regulators from owning stock or other interests in the oil and gas industry.•       Increase the penalties for oil and gas regulators making fraudulent statements or false representations, to 15 years in prison from the current 5 years in prison.\nMay 26, 2010\nThe Honorable Ken Salazar                                                    Secretary                                                                                 Department of Interior                                                            1849 C Street NW                                                                  Washington, DC  20240                                                         Dear Secretary Salazar:After a review of the most recent inspector general’s report we have concluded the public interest is no longer best served by the Minerals Management Service. \nThe report, released yesterday, comes in the wake of the Gulf of Mexico oil spill and similar findings in an inspector’s report two years ago.  In a nutshell, it found MMS inspectors accepted free trips paid for by an oil company, conducted inspections while looking for jobs in the oil industry, submitted forms detailing inspections of oil and gas platforms that had been filled out by the company’s personnel, and engaged in other inappropriate conduct including hundreds of instances of exchanging pornographic images on government e-mail.  This conduct – illustrating a cozy relationship between drilling regulators and Big Oil – has indirectly contributed to the most disastrous environmental accident in our nation’s history.In light of these findings, we understand you are placing employees on administrative leave and instituting new ethical standards.\nMeantime, we wish to inform you we’re filing a tougher version of legislation originally introduced two years ago aimed at once-and-for-all closing the revolving door in the regulatory offices of the Interior Department.  More specifically, our bill would ban public employees at Interior from taking oil industry jobs for two years after leaving the government.  It would make it a felony for oil and gas regulators to knowingly accept a gift from industry.  And it would increase the penalties to 15 years in prison for oil and gas regulators making fraudulent statements or false representations.   We are hopeful the U.S. Senate will act quickly to pass this legislation aimed at stopping this incestuous relationship between the oil industry and the regulators.  We want to etch this into law so there are no questions about the ethical standards for our public servants.\nA copy of the legislation is attached.\nSincerely,\nRobert Menendez and Bill Nelson\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=10511367-4bd3-42b4-beb0-9f4667012b50,\"“TOUCHDOWN, NEW JERSEY!”: MENENDEZ CELEBRATES NFL’S DECISION TO HOLD SUPER BOWL XLVIII IN NJ\n                    \n                            Menendez sent letter to commissioner yesterday urging approval of bid by Giants and Jets\n                    \n                      May 25, 2010\n                     WASHINGTON – Today, The National Football League owners voted to hold the 2014 Super Bowl at New Meadowlands Stadium in East Rutherford, NJ. U.S. Senator Robert Menendez (D-NJ), who led a letter to NFL Commissioner Roger Goodell advocating for the bid submitted by the Giants and Jets (http://menendez.senate.gov/imo/media/doc/20100524ltr_SuperBowl.pdf), hailed the league’s decision. He released the following statement:\n“Touchdown, New Jersey! At long last, the biggest, most famous and most vibrant region in the world has scored the world’s biggest sporting event. Hosting the Super Bowl will allow us to showcase New Jersey and to reap the economic benefits that a week’s worth of events and thousands of visitors will bring. I congratulate the Giants and Jets for putting together a compelling bid that centered around the masterpiece of a new stadium in New Jersey. It’s going to be an event to remember.”\nPDF of letter to Commissioner Goodell: http://menendez.senate.gov/imo/media/doc/20100524ltr_SuperBowl.pdf \nText of letter:\nMay 24, 2010\nMr. Roger S. GoodellCommissionerNational Football League, Inc.280 Park AvenueNew York, New York 10017\nDear Commissioner Goodell:\nWe are writing to wholeheartedly support the bid submitted by the Giants and Jets to host Super Bowl XLVIII. As someone who lives and works in the New York City/New Jersey area, you are well aware that ours is the greatest region in the world, which would make it a natural fit for the world’s greatest sporting spectacle.\nThere is no greater stage on the planet than the New York City/New Jersey metropolitan area to showcase the world class athleticism, determination and competition that makes the Super Bowl the preeminent single event in all of sport.  New Jersey and New York City are simply unmatched for entertainment and sporting venues.  As the nation’s most populous metro area with more than 19 million people, and as the nation’s top media market, the fanfare of the Super Bowl would be uniquely enhanced by the vibrancy that the region has to offer.  The City of New York is world famous for its arts, entertainment, cultural and culinary venues. The Jets and Giants each have state-of-the-art training facilities in New Jersey, perfect for Super Bowl Week practices that will fully prepare the NFC and AFC Champions for the big game. Liberty State Park on the Hudson River is one of the most picturesque public spaces in the nation – perfect for a pre-game celebration. Northern New Jersey communities – from Newark to Hoboken to Jersey City – are also home to some of the nation’s top restaurants and entertainment venues, as well as one of its most culturally diverse populations.  It is also worth noting that the New York City metro area is no stranger to other major sporting events, having hosted 7 World Series, 5 Stanley Cup finals, 4 NBA Finals, the NCAA Men’s Basketball Championship, and the FIFA World Cup over the last 20 years.\nAs for the game itself, New Meadowlands Stadium in East Rutherford is a masterpiece, ideally suited for an event of such prestige as the Super Bowl.  With the third largest capacity of all NFL venues at 82,500, including 10,005 club seats and 218 luxury suites, the venue will certainly prove to be an exciting experience for players and fans alike.  Additionally, New Meadowlands Stadium’s access to public transportation will provide unprecedented access and convenience to the big game, as well as surrounding events and entertainment for travelers – whether from across town, across the country or across the ocean.\nWe understand that the main hesitation regarding a Super Bowl in our region may be the weather. We do not think this is reason alone to forgo the nation’s most dynamic area. Football players and fans have proven time and time again that they embrace the elements as part of an exciting football atmosphere.  Furthermore, even when warm-weather locations are chosen, there is the risk of bad weather, such as the torrential downpour that occurred during the 2007 Super Bowl in Miami.\nThe 2014 Super Bowl at New Meadowlands Stadium would surely prove to be a history-making event of unmatched excitement. It would take the game to a whole new level.   The fans of New Jersey and New York have shown to be the most enthusiastic and dedicated in the world, and they truly deserve their own opportunity to finally host the entire league and its fans for football’s premier event.  Please do not hesitate to contact us if we may be of any additional assistance and thank you for your earnest consideration.\n                                                                                Sincerely,\nROBERT MENENDEZCHARLES E.SCHUMERFRANK R. LAUTENBERGKIRSTEN E. GILLIBRAND                                                                 United States Senators\n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fdd03312-20d3-418d-bbcf-00f24edff261,\"New Menendez Bill Would Close Tax Loopholes Enjoyed By Big Oil\n                    \n                            Bill Nelson and Merkley co-sponsor legislation announced today; estimated to save taxpayers more than $20 billion over ten years\n                    \n                      May 24, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today announced legislation that will close a number of corporate tax loopholes that allow oil companies to avoid paying billions of dollars in taxes. The Close Big Oil Tax Loopholes Act, co-sponsored by Senators Bill Nelson (D-FL) and Jeff Merkley (D-OR), targets a series of tax breaks related to drilling activities and revenues, as well as  foreign tax schemes. Menendez estimates that closing these loopholes will amount to more than $20 billion over ten years for the taxpayers.\n\n“The flow of revenues to oil companies is like the gusher at the bottom of the Gulf of Mexico: heavy and constant,” said Menendez. “There is no reason for these corporations to shortchange the American taxpayer. They certainly aren’t using the extra money they get from exploiting these loopholes to help bring down the price of gas for our families. Unlike the underwater geyser in the Gulf, we can shut down these loopholes quickly and permanently when we pass this legislation.”\n\n\n“I’d like to see us pay for an accelerated alternative-fuels program by ending the billions of dollars in giveaways to Big Oil,” said Nelson.  “Previous attempts to close these loopholes were dead-on-arrival, because of the industry’s clout.  Maybe that won’t be the case this time.”\n“At a time when millions of Americans are struggling to find work, oil companies that are making billions in profit are still receiving billions more in government subsidies,” Merkley said.  “It’s time that we stop handing over cash to the big oil companies and start investing in clean energy solutions that will strengthen our national security and create American jobs.”\n\nAmong its provisions, the legislation would accomplish the following:\n•    Recoup royalties that oil companies avoided paying for oil and gas production on public lands•    Prevent oil companies from manipulating the rules on foreign taxes to avoid paying full corporate taxes in the U.S.•    End a number of tax deductions and relief afforded to the oil industry, such as the deductions for classifying oil production as manufacturing, for the depletion of oil and gas through drilling and for costs associated with preparing to drill.\nOil companies make up four of the top ten spots on the Fortune 100 list of largest corporations. In the first three months of this year alone, the top 5 oil companies made over $23 billion in profits.\nThe Close Big Oil Tax Loopholes Act is based upon provisions in President Obama’s Budget in which he signaled the need to stop subsidizing polluting industries. The bill does contain important safeguards to allow refineries and oil companies with yearly revenues of less than $100 million to retain certain tax credits and deductions.\nBackground on legislation:\n•    Recoup Royalty Revenue Lost to Contract Loopholes: This proposal would create an excise tax on oil and gas produced on federal lands on the Outer Continental Shelf (OCS) in order to pay back American taxpayers for contract loopholes whereby oil and gas companies avoided paying royalties on certain oil and gas produced in the Gulf of Mexico.  This would save an estimated $5.3 billion.\n•    End Oil Companies Abuse of Foreign Tax Credits: Would require that a dual capacity taxpayer establish that the foreign country generally impose an income tax to be able to claim a foreign levy as a creditable tax, saving $8.2 billion.\n•    Repeal Expensing of Intangible Drilling Costs: Would repeal the deduction for IDCs and require such costs be capitalized as a cost of the well or tangible property and recovered through depreciation or depletion, as applicable.  Oil companies with yearly revenues of less than $100 million would retain the use of this deduction. In the President’s Budget this provision saved $10.9 billion, but the grandfathering of smaller companies will lower that score.\n•    Repeal Percentage Depletion for Oil and Gas Wells: This proposal would repeal percentage depletion for oil and gas properties. Oil companies with yearly revenues of less than $100 million would retain the use of this deduction. In the President’s Budget this provision saved $9.6 billion, but the grandfathering of smaller companies will lower that score.\n•    Repeal Deduction for Tertiary Injectants: The proposal would repeal the current deduction and instead allow oil companies to capitalize and depreciate or deplete costs for tertiary injectants.  For example, supply costs would be capitalized and deducted when consumed or as part of cost of goods sold. Oil companies with yearly revenues of less than $100 million would retain the use of this deduction.  In the President’s Budget this provision saved $57 million, but the grandfathering of smaller companies will lower that score.\n•    Repeal Exemption of Passive Loss Limitations for Interests in Oil and Gas Properties:  The proposal would end the exemption from passive loss rules for oil companies so they must operate under the same tax rules as other corporations.  Oil companies with yearly revenues of less than $100 million would retain the use of this exemption. In the President’s Budget this provision saved $217 million, but the grandfathering of smaller companies will lower that score.\n•    Repeal Domestic Manufacturing Deduction for Oil and Gas Production: This proposal would repeal the ability of oil and gas companies to claim oil and gas production as manufacturing, thus making the production activities ineligible for the domestic production activities deduction.  Oil companies with yearly revenues of less than $100 million would retain the use of this deduction.  The deduction would also be retained for oil refining and natural gas processing. This exact proposal has not been scored, but could easily save billions.\n•    Match Geological and Geophysical Amortization Periods for All Oil and Gas Companies: This proposal would create more uniform amortization rules for geological and geophysical costs.  G&G costs are costs incurred in obtaining and accumulating data that serves as the basis for acquiring and retaining oil and gas properties.  Oil companies with yearly revenues of less than $100 million could amortize geological and geophysical costs over two years.  All others would amortize these costs over 7 years. In the President’s Budget this provision saved approximately $1 billion, but the grandfathering of smaller companies will lower that score.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=78fed91b-a3c7-415a-be8f-6051641dd1f6,\"NEW JERSEY AND NEW YORK’S U.S. SENATORS URGE N.F.L. TO APPROVE AREA’S BID FOR SUPER BOWL XLVIII\n                    \n                            Menendez joined by Schumer, Lautenberg and Gillibrand on letter to NFL Commissioner Goodell\n                    \n                      May 24, 2010\n                     WASHINGTON – Today, New Jersey and New York’s U.S. Senators urged the National Football League to approve the bid by the Giants and Jets to host Super Bowl XLVIII at New Meadowlands Stadium in East Rutherford, NJ. Senator Robert Menendez (D-NJ) was joined by Senators Charles Schumer (D-NY), Frank Lautenberg (D-NJ) and Kirsten Gillibrand (D-NY) in a letter to NFL Commission Roger Goodell, which highlighted the benefits of hosting the nation’s biggest annual event in the nation’s most populous, exciting and well-known region.\n“As someone who lives and works in the New York City/New Jersey area, you are well aware that ours is the greatest region in the world, which would make it a natural fit for the world’s greatest sporting spectacle,” wrote the senators. “There is no greater stage on the planet than the New York City/New Jersey metropolitan area to showcase the world class athleticism, determination and competition that makes the Super Bowl the preeminent single event in all of sport. New Jersey and New York City are simply unmatched for entertainment and sporting venues. As the nation’s most populous metro area with more than 19 million people, and as the nation’s top media market, the fanfare of the Super Bowl would be uniquely enhanced by the vibrancy that the region has to offer.”\nPDF of letter to Commissioner Goodell: http://menendez.senate.gov/imo/media/doc/20100524ltr_SuperBowl.pdf \nText of letter:\nMay 24, 2010\nMr. Roger S. GoodellCommissionerNational Football League, Inc.280 Park AvenueNew York, New York 10017\nDear Commissioner Goodell:\nWe are writing to wholeheartedly support the bid submitted by the Giants and Jets to host Super Bowl XLVIII. As someone who lives and works in the New York City/New Jersey area, you are well aware that ours is the greatest region in the world, which would make it a natural fit for the world’s greatest sporting spectacle.\nThere is no greater stage on the planet than the New York City/New Jersey metropolitan area to showcase the world class athleticism, determination and competition that makes the Super Bowl the preeminent single event in all of sport.  New Jersey and New York City are simply unmatched for entertainment and sporting venues.  As the nation’s most populous metro area with more than 19 million people, and as the nation’s top media market, the fanfare of the Super Bowl would be uniquely enhanced by the vibrancy that the region has to offer.  The City of New York is world famous for its arts, entertainment, cultural and culinary venues. The Jets and Giants each have state-of-the-art training facilities in New Jersey, perfect for Super Bowl Week practices that will fully prepare the NFC and AFC Champions for the big game. Liberty State Park on the Hudson River is one of the most picturesque public spaces in the nation – perfect for a pre-game celebration. Northern New Jersey communities – from Newark to Hoboken to Jersey City – are also home to some of the nation’s top restaurants and entertainment venues, as well as one of its most culturally diverse populations.  It is also worth noting that the New York City metro area is no stranger to other major sporting events, having hosted 7 World Series, 5 Stanley Cup finals, 4 NBA Finals, the NCAA Men’s Basketball Championship, and the FIFA World Cup over the last 20 years.\nAs for the game itself, New Meadowlands Stadium in East Rutherford is a masterpiece, ideally suited for an event of such prestige as the Super Bowl.  With the third largest capacity of all NFL venues at 82,500, including 10,005 club seats and 218 luxury suites, the venue will certainly prove to be an exciting experience for players and fans alike.  Additionally, New Meadowlands Stadium’s access to public transportation will provide unprecedented access and convenience to the big game, as well as surrounding events and entertainment for travelers – whether from across town, across the country or across the ocean.\nWe understand that the main hesitation regarding a Super Bowl in our region may be the weather. We do not think this is reason alone to forgo the nation’s most dynamic area. Football players and fans have proven time and time again that they embrace the elements as part of an exciting football atmosphere.  Furthermore, even when warm-weather locations are chosen, there is the risk of bad weather, such as the torrential downpour that occurred during the 2007 Super Bowl in Miami.\nThe 2014 Super Bowl at New Meadowlands Stadium would surely prove to be a history-making event of unmatched excitement. It would take the game to a whole new level.   The fans of New Jersey and New York have shown to be the most enthusiastic and dedicated in the world, and they truly deserve their own opportunity to finally host the entire league and its fans for football’s premier event.  Please do not hesitate to contact us if we may be of any additional assistance and thank you for your earnest consideration.\n                                                                                Sincerely,\nROBERT MENENDEZCHARLES E.SCHUMERFRANK R. LAUTENBERGKIRSTEN E. GILLIBRAND                                                                 United States Senators\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e8ef0095-07b1-4291-a00d-78fb27b139d0,\"AUTHOR OF “CLEAR AIRFARES ACT” SAYS REPORT OF HIDDEN SUMMER AIRFARE INCREASE IS MORE REASON TO SUPPORT BILL\n                    \n                            Legislation is included in Senate’s FAA bill\n                    \n                      May 24, 2010\n                     WASHINGTON – A report by FareCompare.com and The USA Today released today shows that airfares for nearly every day this summer have been quietly made subject to a $10-$30 “peak travel day” surcharge (http://www.usatoday.com/travel/flights/2010-05-24-1Aairsurcharge24_ST_N.htm). U.S. Senator Robert Menendez (D-NJ), author of the Clear Airfares Act, says that this report shows how a full and upfront breakdown of airfares is more necessary than ever. A slightly modified version of Menendez’s bill to provide such breakdowns to consumers was included in the Senate Federal Aviation Administration reauthorization legislation, which is in the process of being merged with the House-passed bill.\n“At a time when families are watching every penny, airlines are using a phony label to tack on as much as $30 to most tickets this summer,” said Menendez. “Whether it’s a surcharge or baggage fee, families should at the very least be given a clear listing of everything they are expected to pay before they book their tickets. That’s what the Clear Airfares legislation would do, and that’s why I am pushing to ensure that it remains in the final version of the Federal Aviation Administration bill.”\nMenendez’s Clear Airfares provision aims to bring transparency to the price of flying through a full, clear and upfront breakdown of airfares. Before a consumer purchases a ticket on the Internet, the legislation would require airlines and third-party websites to give consumers a complete and understandable breakdown of his or her particular airfare, as well as any other possible fees that might be incurred on the flight (such as baggage, seat assignments, etc.). The Senate and House of Representatives now must negotiate and pass a final version of the FAA bill before it goes to President Barack Obama to be signed into law.\nCurrently, consumers must click to peripheral web pages and wade through often confusing text to understand whether or not their airfare includes surcharges and what other taxes and fees may have been added.\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2edbc6a7-f8b0-4459-857f-bebf4fefbd45,\"MENENDEZ ON SENATE PASSING WALL STREET REFORM: BILL WILL BRING ACCOUNTABILITY\n                    \n                            Bill contains a number of provisions championed by Menendez (LIST INCLUDED)\n                    \n                      May 20, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, today voted in favor of Wall Street accountability legislation as it passed the Senate by a 59-39 vote. All but 3 Republicans voted against the legislation.  The legislation will set new rules for financial activity on Wall Street to rein in irresponsible behavior in order to prevent another financial meltdown, such as the one that caused the recent recession.\n“The families who have spent the past few years worried about their jobs, homes and savings have told us they want accountability on Wall Street, and accountability is what we are bringing,” said Menendez. “Americans who work for a living want the security of knowing that when they trust a bank with their money or home, it won’t be recklessly gambled away. They want a free market, not a free-for-all market. The bill we have passed tonight will implement a set of commonsense rules for Wall Street to live by – rules that were badly needed during the free-for-all years before the collapse. I am proud of having worked to include a number of provisions in this bill which cut down on risky bank activities and protect families. I look forward to a strong final bill emerging from the conference committee and to making it law in the near future.”\nProvisions in the Senate bill that Menendez requested during Banking Committee work:\n•    Company disclosure of CEO-to-average worker pay ratio: requires publicly-listed companies to disclose in their annual SEC filing the amount of CEO pay, the amount of the median company worker pay, and the ratio of the two.\n•    Off-sheet balance activity (relates to the type of accounting gimmicks Lehman Brothers used): requires regulators to take all off-balance sheet activities into account when calculating capital and other requirements.\n•    Municipal bond ratings (helps local governments finance job-creating projects): requires credit rating agencies to use a universal standard for corporate and municipal bonds, lowering financing costs for towns by billions.\n•    Expanding financial education: Creates a permanent Financial Education and Counseling Program that makes grants available to community groups to provide financial education.\n•    Avoiding systemic risk: requires financial regulatory agencies to produce regular reports on how they are using capital and liquidity standards to avoid the systemic risk that nearly brought down the financial system.\n•    Whistleblower protections:  Expand protections for whistleblowers against employer retaliation at subsidiaries and affiliates of companies. \n•    Prohibiting brokers from voting client shares for CEO compensation votes: prohibits brokers from voting uninstructed client shares in votes on “say on pay” and other decisions.\n•    FDIC remains regulator for community banks\n•    Stock exchange rules published in the Federal Register:  greater disclosure of rules to the public\n                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0ccc4c43-b9fd-4b5f-b8fc-a09c9a974d88,\"SENATE DEMOCRATIC LEADERSHIP URGES ADMINISTRATION TO ORDER IMMEDIATE INSPECTION OF ALL OFFSHORE OIL RIGS\n                    \n                            Reid, Durbin, Schumer, Murray and Menendez send letter to President Obama\n                    \n                      May 19, 2010\n                     WASHINGTON – Today, the Senate Democratic leadership urged President Obama to order “immediate and enhanced” inspections of all offshore drilling rigs and production platforms in the United States. In their letter, Senate Majority Leader Harry Reid (D-NV), Assistant Majority Leader Richard Durbin (D-IL), Democratic Conference Vice Chair Charles E. Schumer (D-NY), Democratic Conference Secretary Patty Murray (D-WA) and Democratic Senatorial Campaign Committee Chairman Robert Menendez (D-NJ) wrote that the inspections should not be conducted with taxpayer dollars and that the Department of the Interior should also undertake a full review of its inspection and testing process.\n“Together, we can help transform what you have termed a ‘cozy’ relationship between regulators and the oil industry into one in which the American people can feel confident that their safety comes first, before the oil industry’s profits,” wrote the senators.  “We believe that the first step in reestablishing this trust is an immediate inspection of offshore rigs and an overhaul of all equipment testing procedures.  Until we can ensure the safety of our offshore platforms, our nation’s coastlines will be threatened by the possibility of more man-made catastrophes.”  \nPDF of letter to President Obama: http://menendez.senate.gov/imo/media/doc/20100518ltr_DrillingInspections1.pdf \nText of letter:\nMay 19, 2010\nPresident Barack ObamaThe White House1600 Pennsylvania Avenue NWWashington, DC 20500\nDear Mr. President:\nAs the Gulf Coast continues to be threatened by the lasting effects of the Deepwater Horizon oil spill disaster, we are deeply concerned that this accident could be repeated elsewhere.   While we commend you for taking quick action to inspect deepwater rigs and production platforms in the Gulf of Mexico, we request that you order immediate and enhanced inspections of every offshore oil drilling rig and offshore oil production platform in United States waters that could pose a significant threat to the environment or the economy, no matter its location or depth.  In addition, such inspections should not be performed at taxpayer expense.  \nThe previous inspections of the Deepwater Horizon oil rig appear to have failed to reveal multiple, critical problems with the blow-out preventer (“BOP”).  As a result, we also request that you order an immediate top-to-bottom review of all inspection and testing procedures used to evaluate all offshore drilling equipment on offshore drilling rigs and production platforms.  We need foolproof testing procedures to guarantee equipment integrity, particularly when it comes to equipment like a BOP that must act as the last line of defense against disaster.\nThank you for your continued leadership in this time of crisis.  Together, we can help transform what you have termed a “cozy” relationship between regulators and the oil industry into one in which the American people can feel confident that their safety comes first, before the oil industry’s profits.  We believe that the first step in reestablishing this trust is an immediate inspection of offshore rigs and an overhaul of all equipment testing procedures.  Until we can ensure the safety of our offshore platforms, our nation’s coastlines will be threatened by the possibility of more man-made catastrophes.    \nSincerely,\nHARRY REID                                                           RICHARD DURBIN                                                CHARLES SCHUMERPATTY MURRAYROBERT MENENDEZUnited States Senators\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bf292dc2-f8c3-40c9-9ff8-ebe9c3f5102d,\"MENENDEZ STATEMENT ON REPUBLICAN OBSTRUCTION OF WALL STREET REFORM\n                    \n                            Points out that Republicans are simultaneously defending Big Banks and Big Oil in Senate this week\n                    \n                      May 19, 2010\n                     WASHINGTON – All but two Senate Republicans voted to stall Wall Street reform this afternoon by opposing the motion to limit the remaining time following weeks of debate. 60 votes were needed, and the motion fell three votes short. This action comes at the same time that Republicans have repeatedly objected to quick passage of Senator Robert Menendez’s (D-NJ) Big Oil Bailout Prevention legislation, which would raise oil company liability for spills from $75 million to $10 billion. Menendez said following today’s vote that Republicans are defending two separate big corporate interests at once this week:\n“Republicans have fought on the side of big banks time and again over the past few weeks, meeting with Wall Street behind closed doors, obstructing the beginning of this debate, and now obstructing the end. American families who have spent the past couple of years worried about their jobs, homes and savings want action on Wall Street reform, not more stalling on behalf of the banks. This week in particular has shown the American people where our Republican colleagues stand when it comes down to them and the special interests. Whether it’s protecting big oil and big banks, Republican actions leave American workers and taxpayers exposed.” \n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=42aa36cd-78dc-4a97-80ce-ddc5e831caca,\"TO ENSURE TAXPAYERS DO NOT PAY “ONE DIME,” MENENDEZ WANTS FULL ACCOUNTING OF FEDERAL OIL SPILL COSTS\n                    \n                            Senator asks Federal response agencies to provide him with dollar figures after spill is contained\n                    \n                      May 17, 2010\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee, asked the federal agencies helping in the Deepwater Horizon oil spill cleanup and containment to provide him with a full accounting of the costs they incurred once the spill is finally contained. The responsible party – British Petroleum – is legally responsible to cover all costs related to containment and clean up. Menendez wants the full accounting so that the public can be sure that B.P. pays what it owes and that taxpayers are ultimately protected.“After all is said and done, not one dime of federal taxpayer money should be spent on this spill response,” wrote Menendez. “For that reason, once the relief well has permanently halted the flow of toxic oil in to the Gulf, I am requesting a full accounting of all federal expenses incurred responding to this tragedy, so the public can be sure that BP reimburses the government for every penny spent cleaning up BP’s mess.”Menendez also believes that the corporation responsible for an oil spill that causes economic damage to coastal communities should be fully responsible for paying those damages. To address that issue, he has introduced the Big Oil Bailout Prevention legislation, which would raise the limit on liabilities for the responsible party from $75 million to $10 billion (http://menendez.senate.gov/newsroom/press/release/?id=c9ca441f-ddac-4ebb-ad3a-b044cb3c79f8).PDF of letter to federal agencies: http://menendez.senate.gov/imo/media/doc/20100517ltr_BPcosts.pdf Text of letter:May 17, 2010The Honorable Ken Salazar                                              The Honorable Janet NapolitanoSecretary                                                                           SecretaryDepartment of the Interior                                                Department of Homeland Security1849 C Street NW                                                            Washington, DC 20528Washington, DC 20240The Honorable Lisa P. Jackson                                         The Honorable Jane LubchencoAdministrator                                                                    AdministratorEnvironmental Protection Agency                                    National Oceanic and Atmospheric AdministrationAriel Rios Building                                                           1401 Constitution Avenue NW1200 Pennsylvania Avenue NW                                       Room 5128Washington, DC 20460                                                    Washington, DC 20230The Honorable Robert M. Gates                                       The Honorable Hillary ClintonSecretary                                                                           SecretaryDepartment of Defense                                                    Department of State1400 Defense Pentagon                                                    2201 C Street NW         Washington, DC 20301-1400                                           Washington, DC 20520The Honorable Kathleen SebeliusSecretaryDepartment of Health and Human Services200 Independence Avenue SWWashington, DC 20201 Dear Secretary Salazar, Secretary Napolitano, Administrator Jackson, Administrator Lubchenco, Secretary Gates, Secretary Clinton, and Secretary Sebelius:Under federal law British Petroleum (BP) is responsible for all spill response costs associated with the tragic Deepwater Horizon oil spill in the Gulf of Mexico.  That means that after all is said and done, not one dime of federal taxpayer money should be spent on this spill response.  For that reason, once the relief well has permanently halted the flow of toxic oil in to the Gulf, I am requesting a full accounting of all federal expenses incurred responding to this tragedy, so the public can be sure that BP reimburses the government for every penny spent cleaning up BP’s mess.  Existing federal law makes it clear that BP is responsible for paying for response costs.  The Oil Pollution Act of 1990 states that an oil spill’s “responsible party” is “liable for the removal costs … that result from such incident.”  Such costs include any “actions…to minimize or mitigate damage to the public health or welfare” in response to the spill.  As a “responsible party”, BP therefore must reimburse the federal government for all of its considerable efforts in the Gulf of Mexico.  As you know, I have also introduced legislation to increase oil spiller’s liability cap from $75 million to $10 billion, but current law is clear that there is no cap on liability for clean up, mitigation, and other response costs.  As Secretaries Salazar and Napolitano noted in their May 14 letter to BP CEO Tony Hayward, BP is responsible for all response costs.  These response costs include paying for all activities associated with mobilizing federal employees and resources to clean up after BP.  Your agencies have deployed personnel and resources responding to the disaster in the Gulf that would normally have been engaged in other critical activities on behalf of the American people.  BP must reimburse the U.S. government for all costs associated with that mobilization, including costs of travel, lodging, meals, and time spent working for all federal officials responding to the spill.  Failure to reimburse for these costs would mean that taxpayers would be footing part of the bill to clean up BP’s mess.  The American people will not stand for that.  Aside from the company’s legal liability for these expenses, it is clear that BP can afford to reimburse taxpayers for the federal government’s spill response.  While the company has already spent $450 million responding to the spill and compensating coastal states and the federal government for their responses, with high oil prices, that considerable sum amounts to a mere 5 days of profits for BP.  Clearly, BP can afford to meet its legal obligation to pay all expenses incurred by the taxpayers cleaning up BP’s mess.      I commend you and your agencies for sparing no expense to protect America’s beaches, marine life, wetlands, and other precious resources from the oil fouling the Gulf of Mexico.  After all is said and done, we must make sure that taxpayers are fully reimbursed for all federal resources mobilized as a result of the disaster in the Gulf.  That starts with a full and complete accounting of all the resources your agencies are deploying in this vital effort.                                                                                   Sincerely,                                                                                 ____________________                                                                                 ROBERT MENENDEZ                                                                                 United States Senator                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c1099371-b9a5-4e08-9ccf-1b7a814cd46e,\"MENENDEZ STATEMENT ON ADMINISTRATION’S LIABILITY CAP LETTER TO B.P.\n                    \n                            Senator is sponsor of Big Oil Bailout Prevention legislation\n                    \n                      May 15, 2010\n                     WASHINGTON – Today, Homeland Security Secretary Janet Napolitano and Interior Secretary Ken Salazar wrote to British Petroleum, requesting that the corporation officially commit to paying for all economic damage resulting from the Deepwater Horizon oil spill – including damage beyond the $75 million liability cap. U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee and author of the Big Oil Bailout Prevention legislation to raise the liability cap from $75 million to $10 billion, released the following statement:\n\"\"BP has been careful to use qualifying words when discussing its financial responsibility for the damage it is causing, which raises concerns that the corporation will evade paying for it in full. This is an important and welcome action by the administration to help guarantee that the responsible corporation is held accountable for damage it is causing to the coastal economy. My hope is that, not only will BP finally accept its financial responsibility without equivocation, but that our Republican colleagues will cease to obstruct quick passage of my Big Oil Bailout Prevention legislation. Regardless of what BP ends up committing to pay for this disaster, there is no such thing as a 'Too Safe To Spill' oil rig, and there should be no legal wiggle room for oil companies that devastate coastal businesses and communities -- now or in the future.\"\"\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f9b9c2a7-8d25-4d0a-9282-1b981ab548d3,\"Menendez, Nelson, Lautenberg Call on Republicans to Prevent American Taxpayers from Bailing Out Big Oil Polluters\n                    \n                      May 13, 2010\n                     WASHINGTON —Senators Robert Menendez, Bill Nelson and Frank Lautenberg held a press conference this afternoon to discuss the need to hold oil polluters like BP fully accountable for the cost of the spills they cause.  Last week the Senators introduced The Big Oil Bailout Prevention Act, a bill that would raise the liability caps for oil companies from $75 million to $10 billion to help ensure that they pay the full costs of economic and environmental disasters caused by their negligence.  Unfortunately, Republicans blocked passage of this bill today – supporting the interests of BP over that of taxpayers and industries affected by the recent oil spill.  Democrats are committed to ensuring companies like BP pay every dime it costs to clean up their mess so taxpayers across America do not foot the bill for their mistakes.\n\n\"\"This vote was as straightforward and common sense as it gets -- either you want to fully protect the small businesses and communities devastated by a man-made disaster, or you want to protect multi-billion dollar oil companies from being held fully accountable,” said Senator Menendez.  “Does anyone who has been watching the images coming in from the Gulf believe that we should be protecting multi-billion dollar oil companies instead of the small businesses, fisheries and coastal residents who are losing their livelihoods? Apparently, there are some in the Senate who prefer to protect the oil companies.\"\"\n“I’m really disappointed some of my colleagues decided to block legislation to hold BP accountable for this disaster,” said Senator Nelson.  “We still don't know how bad it will be.  But it’s certainly going to exceed the current $75-million cap on liability for drilling accidents.  I’m not even sure $10 billion would be enough.  But let’s remember BP just reported a profit of $5.5 billion in just the last three months.”\n“What we just saw on the Senate floor has to startle the American people: Republicans stood against ordinary Americans and with Big Oil,” said Senator Lautenberg. “Even children understand a basic rule: if you break it, you pay for it. But clearly there are some in the Senate who don’t think the rules of fairness should apply to Big Oil. We have to hold the oil companies like BP accountable when they make a catastrophic mistake.”\n\n                                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=71df46aa-b2bb-4021-801c-50f4627f7f27,\"MENENDEZ AND AKAKA SAY REPORTS OF BANK INVESTIGATIONS UNDERSCORE NEED TO KEEP “HONEST BROKER” PROVISION IN FINAL WALL STREET REFORM BILL\n                    \n                            Provision would require brokers to act in best interests of consumers, not just investment advisers\n                    \n                      May 13, 2010\n                     WASHINGTON – According to news reports, federal authorities have begun investigations into whether numerous major banks misled investors about and bet against mortgage derivatives that they helped create. U.S. Senator Robert Menendez (D-NJ) and Daniel Akaka (D-HI) said today that this news, on the heels of similar charges filed against Goldman Sachs, underscores the need for the “Honest Broker” provision to be a part of Wall Street reform. The provision exists in the version of the legislation passed by the House of Representatives, and Menendez and Akaka, as the Senate sponsors, intend to help ensure that it remains as part of the final bill that passes Congress. \nHonest Broker would require brokers to act in the best interests of their retail clients and fully disclose any conflicts of interest (Text of provision: http://menendez.senate.gov/imo/media/doc/20100429HonestBroker.pdf).  It would also give the SEC the power to require brokers to act in the best interests of their institutional investors, which would address cases such as those currently being investigated at the major Wall Street banks.  \nSenator Menendez said: “As consumers follow these investigations to see if there is guilt, we should at the very least give them peace of mind that their brokers are managing their hard-earned money honestly. The saying goes, ‘The customer is always right,’ not ‘The customer is an afterthought,’ and that why we think keeping this provision in the final bill is so important.”\nSenator Akaka said: “The choice is simple: we can either protect investors, or we can allow them to continue to be exploited by brokers that do not act in their best interests.  No additional study is needed, we know this is happening.  Our amendment brings about an important change to better protect investors.”\n                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=79e0db32-cf18-4d62-98a5-75a1d2fbce09,\"Lautenberg and Menendez Announce More Than $880,000 in Federal Funding for New Jersey Fire Departments\n                    \n                      May 12, 2010\n                     WASHINGTON — U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that six New Jersey fire departments will receive $880,905 in federal funding through the Federal Emergency Management Agency’s (FEMA) Assistance to Firefighters Grant (AFG) program.  AFG funding can be invested in vehicle acquisition, training, equipment, personal protective equipment, wellness programs, and other support for stations and facilities.\n\n“Our firefighters and other first responders place their lives in danger every day to protect us and keep our families and communities safe,” Sen. Lautenberg said. “This grant program makes a direct investment in New Jersey’s local firefighters so that they have the best equipment and training to do their job.”    \n“There is nothing more important than the safety of our neighborhoods and our families,” said Sen. Menendez. “It is vital that our firefighters and emergency medical services providers have the necessary resources to do their job as effectively as possible in the event of a an emergency. It is our responsibility to ensure these brave men and women have the resources they need to best protect our families.”\n\nThe $880,905 from the Assistance to Firefighters Grants Program (AFG) was distributed in New Jersey as follows:•    Cliffside Park Volunteer Fire Department - $675,000 for acquisition of a vehicle•    Byram Township Fire Department - $89,775 for operations and safety expenses•    Hillside Fire Department - $24,300 for operations and safety expenses•    East Windsor Volunteer Fire Company - $50,160 for operations and safety expenses•    Stratford Volunteer Fire Department - $22,432 for operations and safety expenses•    Independence Fire Company - $19,238 for operations and safety expenses\nThe AFG grants are awarded to fire departments and EMS organizations unaffiliated with a hospital to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies. \nFor more information about the program, please visit: http://www.firegrantsupport.com/\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=88035877-700b-41f9-a72d-03a1be2e25e1,\"MENENDEZ WELCOMES WHITE HOUSE’S COMMITMENT TO ENSURING OIL SPILLERS ARE ON THE HOOK FOR ECONOMIC DAMAGE\n                    \n                            White House oil spill response legislative package signals willingness to work with Congress to raise liability caps on companies that spill\n                    \n                      May 12, 2010\n                     WASHINGTON – Today, the White House sent to Congress an oil spill response legislative package, which includes the administration’s interest in working with Congress to raise the liability cap on companies that spill. U.S. Senator Robert Menendez (D-NJ), author of the Big Oil Bailout Prevention legislation to hold oil companies accountable for economic damage caused by spills, today said that the administration’s proposal will help efforts to pass his bill.\n“The president’s proposal adds even more momentum to our efforts to hold oil spillers accountable for the economic damage they inflict,” said Menendez. “I welcome the administration’s willingness to work together as we ensure companies that spill are kept fully on the hook and as we improve the safety net that is the Oil Liability Trust Fund. Our coastal communities must be protected against the worst-case scenario, which is why I am working hard to make polluters responsible for all of their damages. Going forward, we need to recognize that the absolute best way to protect the small businesses, fisheries and communities along our coasts is to stop the expansion of coastline drilling and focus on a transition to a 21st Century clean energy economy. There is simply no rig that is too safe to spill.”\nThe White House’s proposal does not include a dollar amount for a new responsible party liability cap but does indicate that it will work with Congress to determine that level. Menendez’s bill would increase the responsible party’s current cap of $75 million to $10 billion.\nOn the Oil Liability Trust Fund – which is the industry-funded safety net for economic damages after the responsible parties reach their caps – the administration proposes increasing the amount available per spill from $1 billion to $1.5 billion. Menendez’s bill would remove the Trust Fund limit altogether. \nMenendez’s Big Oil Bailout Prevention legislative package (S. 3305 and 3306) would:\n•    Raise the responsible party liability cap for offshore oil well spills from $75 million to $10 billion.\n•    Eliminate the $1 billion per incident cap on claims against the Oil Spill Liability Trust Fund and allow community responders to access the fund for preparation and mitigation up front, rather than waiting for reimbursement later.\n•    If damages claims exceed the amount in the Oil Spill Liability Trust Fund (currently $1.6 billion), then claimants can collect from future revenues of the fund, with interest.\n•    Eliminate the $500 million cap on natural resources damages.\nRecent oil company profits:\n\nOil Company\nQ1 2009 Oil Company Profits\nQ1 2010 Oil Company Profits\n\nQ1 2010 Profits Compared to Q1 2009\n\nBP\n$2.4 billion\n$5.6 billion\n+133%\nChevron\n$1.8 billion\n$4.6 billion\n+156%\nConocoPhillips\n$0.8 billion\n$2.1 billion\n+163%\nExxonMobil\n$4.6 billion\n$6.3 billion\n+38%\nShell\n$3.3 billion\n$4.9 billion\n+49%\nTOTAL\n$12.9 billion\n$23.5 billion\n+82%\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0570ce39-3cab-433d-b4e0-2c49a3db370e,\"SCHUMER, HAGAN, GILLIBRAND, MENENDEZ, LAUTENBERG URGE STATE DEPT. TO CITE PAKISTANI TALIBAN AS TERRORIST GROUP—FEDS HAVE YET TO ADD GROUP TO TERROR LIST DESPITE LINK TO TIMES SQUARE BOMB SCARE\n                    \n                            State Department’s Terrorist List Includes 45 Groups, But Not The One Said To Have Trained and Financed Suspect That Drove Car Bomb Into Heart of New York City. Designation By Administration Would Trigger Counterterrorism Measures, Including Criminal Penalties Against Financial Backers of TTP And Ban on Group Members From Entering US.\n                    \n                      May 11, 2010\n                     Senators Send Letter To Secretary Clinton Urging Pakistani Taliban To Be Immediately Added To List\nWASHINGTON —U.S. Senators Charles E. Schumer (D-NY), Kay Hagan (D-NC), Kirsten Gillibrand (D-NY), Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) urged the State Department on Tuesday to cite the Pakistani Taliban as a terrorist organization given that the group has been implicated in the Times Square bombing scare earlier this month. The senators announced they have sent a letter to Secretary of State Hillary Clinton urging the administration to cite the group, also known as the Tehrik-i-Taliban Pakistan (TTP), as a Foreign Terrorist Organization (FTO) in order to trigger a series of counterterrorism measures.\nAttorney General Eric Holder announced Sunday that U.S. intelligence indicates the group helped train and finance Faisal Shahzad, a naturalized U.S. citizen who allegedly drove a bomb-carrying Nissan Pathfinder into the heart of Times Square on May 1. The senators said that this linkage—together with documented threats made by TTP officials against U.S. cities, and evidence that the group has allied with the al Qaeda terrorist network—warrants the official designation from the State Department.\n“The Pakistani Taliban is a murderous organization dedicated to killing civilians, harming U.S. interests in the region, and has even taken credit for terrorist acts committed on U.S. soil,” the senators wrote. “Designating the Pakistani Taliban as a foreign terrorist organization would be an effective means of curtailing support for their terrorist activities and pressuring other groups to withdraw their logistical, financial and political support for this terrorist organization.”\nThe designation is a critical step in combating foreign terrorist groups. It triggers a series of steps, including: freezing of assets, barring foreign nationals with ties to the group from entering the U.S., and criminalizing the act of providing any material assistance to the group.\nCurrently, 45 different organizations are named on the list, including Al Qaeda, Hamas, and the Real Irish Republican Army (RIRA). Designations, which last for two years and must be renewed, are made following an interagency process involving the State, Justice, Homeland Security, and Treasury Departments. By law, the designation requires that three conditions are met:1. The organization is foreign; 2. The organization engages in terrorist activity; 3. The terrorist activity threatens the security of United States citizens or the national security of the United States.The senators said today that the TTP clearly meets all three criteria. In addition to evidence linking the group to the Times Square incident, the senators pointed in their letter to an April 2010 video in which TTP representative indicated the group would be targeting U.S. cities. The group has also been implicated in the 2007 assassination of former Pakistani Prime Minister Benazir Bhutto, and, according to reports, has partnered with Al Qaeda.\nA copy of the senators’ letter to Secretary Clinton appears below.\nMay 11, 2010\nThe Honorable Hillary ClintonSecretary, Department of State2201 C Street, NWWashington, DC 20520\nDear Secretary Clinton:\nWe write to urge you to add the Tehrik-i-Taliban Pakistan, otherwise known as the Pakistani Taliban, to the State Department’s list of Foreign Terrorist Organizations (FTO).  The Pakistani Taliban is a murderous organization dedicated to killing civilians, harming U.S. interests in the region, and has even taken credit for terrorist acts committed on U.S. soil. In a video recorded in April 2010, a representative of the Taliban in Pakistan indicated that this organization would make cities in the United States a \"\"main target.” Additionally, Attorney General Eric Holder announced on May 9th,  that U.S. intelligence indicates that the Pakistani Taliban helped train and finance Faisal Shahzad, a naturalized U.S. citizen who allegedly drove a bomb-carrying Nissan Pathfinder into the heart of Times Square on May 1.\nWe believe it is crucial that government officials use every available opportunity to highlight the importance that FTO designations play in our fight against terrorism. Designating the Pakistani Taliban as a foreign terrorist organization would be an effective means of curtailing support for their terrorist activities and pressuring other groups to withdraw their logistical, financial and political support for this terrorist organization.\nSince 2001, the Pakistani Taliban have committed atrocities aimed at NGO workers, government officials, law enforcement authorities and innocent civilians. Additionally, the Pakistani government implicated the network in the December 2007 assassination of Benazir Bhutto and, in January 2008, the U.S. Central Intelligence Agency also confirmed its belief of their involvement in the assassination.\nAccording to recent media reports, the Pakistani Taliban has made efforts to combined forces with Al Qaeda and other terrorist groups, threatening to extend their reach and murderous acts. Despite unified efforts to degrade their capabilities, the Pakistani Taliban have managed to expand their deadly influence through alliances with a number of other militant groups, terrorist organizations and independent terrorist cells under their control.\nFTO designations play a critical role in our fight against terrorism and are an effective means of curtailing support for terrorist activities and pressuring groups to get out of the terrorism business. We urge you to immediately take the necessary steps to designate the Pakistani Taliban as a foreign terrorist organization by adding it to the State Department’s FTO list. \nThank you for your consideration of this important request. Please do not hesitate to contact me if we can be of any assistance.  Sincerely, U.S. Senator Charles E. SchumerU.S. Senator Kay HaganU.S. Senator Kirsten GillibrandU.S. Senator Robert MenendezU.S. Senator Frank Lautenberg                   \n                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e06e6332-5621-407d-896c-d1339c6ea297,\"MENENDEZ STATEMENT ON ADMINISTRATION PROPOSAL TO SPLIT UP MINERALS MANAGEMENT SERVICE\n                    \n                      May 11, 2010\n                     WASHINGTON – Today, Secretary of the Interior Ken Salazar will announce that the Mineral Management Service will be split to separate its land leasing and safety enforcement functions. U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee and staunch opponent of expanded coastline drilling, released the following statement:\n“An agency responsible for both partnering with oil companies and enforcing safety rules has an obvious conflict of interest. I look forward to seeing the details of this plan and am hoping that the safety agency would be fully independent and effective. The bigger point that we can’t lose sight of is that even an improved safety enforcement system will never prevent all oil rig spills. Despite the oil company myth that new technology has made oil rigs virtually failsafe, there have been two massive rig disasters in the past year alone. There is one way and one way only to guarantee no spills: transitioning from an economy that relies on 19th Century fossil fuels to one that creates jobs with 21st Century clean energy. Furthermore, the only way the Jersey Shore will be completely protected from oil rig spills is to reverse plans for drilling along the East Coast. I will oppose any climate or energy legislation that does not include significant protections for New Jersey’s coastal communities.” \n                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1c84b786-479a-4fbe-8d3b-af99faebda65,\"Menendez Opening Statement on Big Oil Bailout Prevention Act in the Environment and Public Works Committee\n                    \n                      May 11, 2010\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ) testified before the Environment and Public Works Committee about his Big Oil Bailout Prevention legislation. He gave the following remarks:\nChairman Boxer, Ranking Member Inhofe, thank you for this opportunity to testify about my bill the Big Oil Bailout Prevention Act.  \nThe bill would increase the cap on economic damages resulting from an oil spill from the current $75 million to $10 billion. \nCompanion legislation would eliminate the $1 billion per incident cap on the Oil Spill Liability Trust Fund.  Together these bills will accomplish three main things.\nFirst and foremost, the bill will make sure that people injured by an oil spill can be compensated for their losses.\nRight now fishermen, hotel owners, and other people dependant on clean water and clean shorelines for their livelihood are collectively holding their breath hoping this spill does not destroy fisheries or make landfall again, destroy beaches or estuaries.\nAt the very least they should feel comfortable that if economic damages do hurt their businesses, they will be made whole.\nThe Second thing this bill does is ensure that claimants will be made whole quickly.\nIt is possible that other federal laws or even state law will allow some claimants to be compensated for their losses even if a $75 million cap is hit.\nBut we do not want another situation like that after the Exxon Valdez where it literally took two decades for some to get paid – and some were never compensated because they gave up.\nUnder the subsequent Oil Pollution Act, claimants can now quickly and efficiently have their claims processed up to $75 million, but by raising the cap we can ensure all victims can be compensated on time.\nFinally, this legislation will ensure that polluters are the ones compensating spill victims—not federal taxpayers.\nWe all know that when a crisis unfolds, if responsible parties cannot be made to pay for their damages, people will look to the federal government for help.\nTaxpayers should not have to pay for the misdeeds of oil companies.  Period.\nMadam Chairman, as the investigation into this matter goes forward we will see blame cast far and wide for this accident.There is no doubt that mistakes will be found, that industry and regulators alike will be criticized for their arrogance in thinking a spill could not happen.\nBut viewed from an economic perspective, the cause of this accident is quite clear.\nWhen you have an industry that does not have to pay the full costs of the damages they cause, they will automatically not invest enough in safety.\nIf they know they are only on the hook for the first $75 million in economic damages, perhaps they will not invest millions in a new valve or even a few hundred thousand for an acoustic switch.\nFor a business, decisions are simple.  How will each decision maximize their profits?  It is time for us to pass the Big Oil Bailout Prevention Act, force companies to bear the full cost of their damages, and therefore give them the economic incentive to be as safe as possible.\nSome have suggested that despite the potentially astronomical damages in the Gulf, the bill sets the cap too high.  Given the fact that BP has earned $5.6 billion in profits in the first three months of this year, I somehow think they will be OK.\nMy legislation has received wide support from both House and Senate Leadership, the White House, as well as Senator Nelson, Senator Lautenberg, Senator Whitehouse, Senator Cardin, and Senator Gillibrand among others. I hope we can pass it quickly into law.\nIn closing, I want to make one last point.  Just because this crisis will undoubtedly result in new legislation, more safety regulations, and new safety technologies does not mean that oil drilling will become completely safe.  The fact is that oil drilling is inherently dangerous and despite industry statements to the contrary, there is simply no rig too safe to spill.  \nAs we all assess these fundamental risks we need to reevaluate whether it makes sense to subject our most treasured and valuable coastal areas to such a potential disaster.\nAnd this goes beyond the Gulf – in New Jersey, we have a $50 billion economy on the Jersey Shore, which includes thousands of small businesses, fisheries and ecological treasures. Right now, as we gear up for beach season, coastal New Jersey is keeping an eye on the massive spill in the Gulf, hoping that it won’t get caught up in the currents that could bring it up the Eastern seaboard. And with the other eye, we’re looking at proposals to expand coastline drilling to the East Coast with new skepticism. This spill has taught us that there is no drilling too safe to spill and I will continue to fight to make sure there is no expansion of offshore drilling anywhere near my home state.  But for areas that already have drilling, at the very least, we owe it to coastal communities to provide a real safety net if they are damaged through the fault of someone else.\nThank you.\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=69162539-fd2b-4804-9f0b-c296cd7efe52,\"A Mother's Day Message on Postpartum Depression: Sen. Menendez Joined by Brooke Shields, Mary Jo Codey and Others to Celebrate Passage of MOTHERS Act\n                    \n                      May 10, 2010\n                     WASHINGTON – Leaders in the fight against postpartum depression, including Senator Robert Menendez (D-NJ), actress Brooke Shields, and former New Jersey First Lady Mary Jo Codey, are celebrating today as The Melanie Blocker Stokes MOTHERS Act – legislation sponsored by U.S. Senator Robert Menendez (D-NJ) to combat postpartum depression – was signed into law as part of landmark health insurance reform that passed Congress in March. The legislation will establish a comprehensive federal commitment to combating postpartum depression through new research, education initiatives and voluntarily support service programs.\n\n“Today we celebrate a victory for women everywhere – a gift for Mother’s Day for all new mothers who suffer the agony of postpartum depression.  Millions of mothers nationwide who are suffering or will suffer from postpartum depression are among the winners as a result of the new health insurance reform law,” said Senator Menendez. “These women understand that postpartum depression is serious and disabling, and that the support structure to help prepare for and overcome it is has been woefully insufficient. We will attack postpartum depression on multiple fronts – with education, support, and research – so that new moms can feel supported and safe rather than scared and alone. I applaud the incredible group of advocates and inspirational women who helped this become a reality – I am absolutely thrilled that this is the law of the land.  ”\n“There’s a lot of shame and there’s a lot of guilt associated with postpartum depression, it is so prevalent and yet nobody discusses it,” said Brooke Shields, actress and author of Down Came the Rain, a book on postpartum depression.  “I am happy that mothers in America will now be able to benefit from support services that will not only serve as comfort for her and her family, it will help to create awareness and lead the way out of this potentially devastating condition.”      \n“Finally, women all over the county are going to have access to the kinds of support services and information that women in New Jersey have had for a number of years,” said Mary Jo Codey, former First Lady of New Jersey and leading advocate in the fight against postpartum depression. And we're going to get more research into these insidious illnesses. This is what I'd worked and hoped for over a long period of time. I almost can't believe it finally happened!\"\"\n“The passage of The Melanie Blocker Stokes MOTHERS ACT is a gift to countless women who have struggled and continue to struggle with postpartum depression,” said Sylvia Lasalandra-Frodella, Legislative Director, PerinatalPro.com and author of A Daughter's Touch. “The Melanie Blocker Stokes MOTHERS ACT will help all women understand that they no longer have to suffer in shame or silence if she's confronted with feelings of depression following the birth of her newborn. Thank you Senator Robert Menendez, Congressman Bobby Rush, Senator Richard Codey and Mary Jo Codey for all of your dedication, commitment and tenacity to make this bill law!”\nSusan Dowd Stone, Chair President's Advisory Council, Postpartum Support International said, “Senator Robert Menendez, you are an unwavering champion of the women and infants you represent. Against all odds, you never once set aside this initiative. You are not just the Senator from New Jersey, you are the Senator of America’s mothers.”\n“We are so indebted to Senator Menendez and everyone on Capitol Hill who recognized that we needed to do so much more to educate women about postpartum depression, to ensure that healthcare providers are able to identify those who suffer, and to provide sufficient resources and services for recovery in every corner of our country,” said Katherine Stone, author of Postpartum Progress, the most widely-read blog on postpartum depression and other mental illnesses related to childbirth, and board member of Postpartum Support International. “We needed their help to raise awareness at the federal level and make this a healthcare priority, and they’ve done just that.  There is no doubt that this new legislation will help save the lives of many new mothers and ensure that their families have a healthier start.”\n“The American Psychological Association applauds the passage of the MOTHERS Act, which will improve the health and well being of approximately 800,000 women suffering from postpartum depression, included in health care reform legislation. The MOTHERS Act will expand research, outreach and education to mothers, families, and health care professionals on this critical issue,” states Gwendolyn Puryear Keita, PhD, Executive Director, Public Interest Directorate, American Psychological Association.\nDr. Gerald F. Joseph, President of the American Congress of Obstetricians and Gynecologists, applauds Senator Menendez's leadership in ensuring inclusion of the MOTHERS Act in health care reform, saying \"\"This will ensure that women and their health care providers have the best tools available to identify and treat all women that suffer from the very real and often severe results of postpartum depression.\"\"\n“Adoption of the MOTHERS Act is a positive development for women and their families,” said American Psychiatric Association President Alan F. Schatzberg, M.D. “Now the many women who are suffering from postpartum depression will have the support needed to get the help for this treatable condition.”\n\"\"As a nurse dedicated to caring for expectant mothers and their newborns, I applaud the passage of the MOTHERS Act.  This legislation will provide much needed support services and education to women suffering from postpartum depression,\"\" said Karen Peddicord, CEO of the Association of Women's Health, Obstetric and Neonatal Nurses.\n\"\"Midwives are particularly sensitive to the need for support for mothers in the postpartum period and have long advocated for more intensive follow-up for all new mothers. We are so pleased by the passage of the MOTHERS Act which Senator Menendez has championed,\"\"  stated Melissa Avery, CNM, PhD, FACNM, President of the American College of Nurse-Midwives.\n“The March of Dimes deeply appreciates the Senator's leadership on this important issue,\"\" said Marina L. Weiss, Ph. D, senior vice president of public policy and government affairs for the March of Dimes. \"\"Postpartum depression is a serious problem that takes a toll on women and infants as well as on their families.  The Senator’s proposal, approved by Congress last night, will ensure that necessary resources are made available to promote early diagnosis and treatment of post partum depression.  The provision holds great promise for improving birth outcomes for women and children in every state across the nation.\"\"\n\nBACKGROUND: \nThe Melanie Blocker Stokes MOTHERS Act is designed to help new mothers get through postpartum depression and to help scientist get to the bottom of it.  Education, support services and research – those are the three areas in which the MOTHERS Act will begin building what will hopefully become a long-lasting and effective federal initiative to combat this debilitating condition.\nAdditional information can also be found here: http://menendez.senate.gov/issues/issue/?id=53083415-93a2-4285-9bef-dbece337e3aa\nHere are some commonly asked questions – and answers – about the new law:\nQ: Some people still think postpartum depression is just the “baby blues.” Will this law help raise awareness of PPD – both for new mothers and the general public?A: Absolutely. It will help initiate a National Public Awareness Campaign to increase awareness and knowledge of postpartum depression and psychosis. This could include public service announcements on TV and radio that emphasize the basics of PDD and awareness about screening.\nQ: We still have a lot to learn about why women get postpartum depression and how best to help them with treatment. How will this law help get us that information?A: This law will help scientists get to the bottom of postpartum depression. The federal government will coordinate and continue research on the causes of PPD and hopefully develop new methods of treatment, which will ultimately help inform doctors and other medical professionals.\nQ: Will new support services for mothers suffering from PPD be available?A: This law encourages the creation of a program to give grants to start local support service programs – one that will hopefully grow over time as it is proven effective. Local community organizations, hospitals or even state or local governments can apply for funding to provide education and services with respect to the diagnosis and management of PPD.\nThe grants could also be used to provide education about postpartum conditions to promote earlier diagnosis and treatment. For instance, if the recipient is a medical facility, the grants could be used to educate new mothers and family members about postpartum depression before new mothers leave the health facility.\nQ: What does this new law include on screening for postpartum depression?A: It sets a path toward the most effective screening and diagnostic techniques with a new federal study over the next two years. It allows for increased awareness about screening.\nIt is also worth pointing out that the health insurance reform law requires that all new insurance plans cover comprehensive women’s preventative care and screenings.\n                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b18a53ef-ac69-4f7c-ba0e-e87703263e79,\"MENENDEZ STATEMENT ON NOMINATION OF ELENA KAGAN TO SUPREME COURT\n                    \n                      May 10, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) released the following statement today after President Barack Obama nominated U.S. Solicitor General Elena Kagan to serve as a Justice of the U.S. Supreme Court:\n“I look forward to thoroughly reviewing Elena Kagan’s record, merits and her confirmation hearing as we prepare to cast votes in the U.S. Senate. She is certainly well-respected as one of our nation’s foremost legal scholars, and I know that, like Justice Sotomayor, she possesses the depth of knowledge and temperament to match her impressive reputation. Should Ms. Kagan be confirmed, it would bring the number of women on the Supreme Court to an all-time high of three, which is an important sign of progress toward a Court that represents the overall makeup of our nation.”\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=803996a6-ecaf-4d42-93ab-d238afd7d227,\"MENENDEZ URGES M.L.B. PLAYERS ASSOCIATION TO BOYCOTT 2011 ALL-STAR GAME IN ARIZONA\n                    \n                            Lone Latino in U.S. Senate, opposed to new Arizona immigration law, points out large number of Latino and foreign born players\n                    \n                      May 10, 2010\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ), the lone Latino currently serving in the Senate, urged a Major League Baseball players’ boycott of the 2011 All Star Game over Arizona’s new immigration law. In a letter to Major League Baseball Players Association Executive Director Michael Weiner, Menendez pointed out that more than one in four major leaguers is of Latino descent, and similarly, more than one in four is foreign born. \nThe new Arizona law, SB1070, would require law enforcement to ask anyone they suspect of being in the country illegally about their immigration status – including demanding documented proof of citizenship or legal residency. In his letter, Menendez praised the union for its vocal opposition to the law. \nPDF of letter to MLB Players Association Executive Director Weiner: http://menendez.senate.gov/imo/media/doc/20100510ltr_BaseballAZ.pdf \nText of letter:\nMay 10, 2010\nMr. Michael WeinerExecutive DirectorMajor League Baseball Players Association12 East 49th Street24th FloorNew York, NY  10017\nDear Mr. Weiner:\nI first want to thank you for taking a public stand and expressing your opposition to Arizona law SB1070.  I would also respectfully ask that you and your players consider boycotting the 2011 All Star Game until SB1070 is repealed or the game is moved to an another location.  The Arizona law is offensive to Hispanics and all Americans because it codifies racial profiling into law by requiring police to question anyone who appears to be in the country illegally. \nAs you and I both know, Major League Baseball (MLB) is truly a multicultural, international sport. In fact, Latinos represent 27 percent of all MLB players and 28 percent of MLB players are foreign born. These players come to the United States legally and should not be subjected to the humiliation and harassment that SB1070 would inflict.  Imagine if your players and their families were subjected to interrogation by law enforcement, simply because they look a certain way.  Imagine if MLB fans – many of whom are Hispanic – were subjected to that same type of interrogation if they were to attend the All Star Game.  That would truly be an embarrassment and an injustice, not only to MLB, but to the values and ideals we hold as Americans.\nIn every century and generation, immigrants have contributed to the progress, prosperity and vitality of this nation.  This law undermines that shared history by promoting discrimination against one group of people. As someone who has and continues to fight for comprehensive immigration reform, I believe the Arizona law is a call to action for reform of our nation’s broken immigration system. However, while I understand the frustration about the failures of our current system, states should not be permitted to enact their own discriminatory immigration laws while the federal government works to reform our laws. The Arizona law is an embarrassment to our country and a call to action to our communities to stand up against injustice.\nFor these reasons, I ask that you consider boycotting the All Star Game in Arizona until SB1070 is repealed or the League decides to move the game to an alternate location.  Thank you for your attention to this important issue. It is my hope that we can work together now and in the future.\nSincerely,\nROBERT MENENDEZUnited State Senator\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=01c50d61-a606-4878-b5d3-e3b83f86fa64,\"SENATORS AKAKA, MENENDEZ INTRODUCE HONEST BROKER AMENDMENT  TO WALL STREET REFORM BILL\n                    \n                            Provision would require brokers to put their clients' interest before their own and prevent conflicts of interests like those the SEC is investigating in Goldman Sachs\n                    \n                      May 7, 2010\n                     WASHINGTON - U.S. Senators Daniel K. Akaka (D-Hawaii) and Robert Menendez (D-New Jersey) offered an Honest Broker amendment to the Wall Street Reform bill to obligate financial professionals to act in the best interest of their clients by imposing fiduciary duty on brokers.  \nSenator Akaka said: \"\"We have seen too many examples of brokers profiting from pushing higher commission inappropriate products.  This amendment would bring accountability to brokers by creating a legal obligation to put their clients' well being before their own.  Investors must know that their broker is acting in their best interests.\"\"\nSenator Menendez said: “The saying goes 'The customer is always right,' not 'The customer is an afterthought.'  The evidence from the Goldman Sachs case shows how some bankers have put their own interests ahead of their clients' trust.  People don’t invest their hard-earned money just to line the pockets of their stockbrokers. They should be able to invest with the peace of mind that they are dealing with trustworthy investment professionals.”\nBrokers currently have the same conflict of interest Goldman Sachs is accused of in its civil fraud case by the Securities and Exchange Commission (SEC): financial incentives to steer clients toward bad investment products that brokers make more money on.  The amendment would require brokers to act in the best interests of their retail clients, require brokers to disclose conflicts of interest, and give the SEC discretion to apply a fiduciary duty standard for all types of  investors including institutional investors who were allegedly victimized by Goldman Sachs.\nThe Honest Broker amendment is supported by AARP, Americans for Financial Reform, Consumer Federation of America, Investors’ Working Group (Council of Institutional Investors), Investment Adviser Association, National Association of Secretaries of State, North American Securities Administrators Association, and the National Governors Association.\nSenator Richard Durbin (D-Illinois) is a cosponsor of the amendment.  Senators Akaka and Menendez are members of the Senate Committee on Banking, Housing, and Urban Affairs.  The amendment was formally filed last night.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=df741584-8329-4275-b677-264ea43004c3,\"FOR TEACHER APPRECIATION WEEK, MENENDEZ SENDS OPEN LETTER TO NEW JERSEY’S TEACHERS\n                    \n                            Senator is also accepting nominations for teacher award at menendez.senate.gov\n                    \n                      May 5, 2010\n                     WASHINGTON – During National Teacher Appreciation Week, U.S. Senator Robert Menendez (D-NJ) is honoring teachers in New Jersey for their commitment to children. Today, he released an open letter to New Jersey’s teachers.  He is also inviting New Jersey students and their parents to visit his website and nominate a teacher or coach who has made a difference in their lives.  Students in grades K-12 and their parents are eligible to nominate their teacher or coach at http://menendez.senate.gov/, or by emailing TeacherAppreciation@menendez.senate.gov.  The most compelling nominees will be honored and awarded by Senator Menendez.\nPDF of Menendez’s open letter to teachers: http://menendez.senate.gov/imo/media/doc/20100504ltr_teachers.pdf \nText of letter:\nMay 4, 2010\nDear Friend,\nDuring “Teacher Appreciation Week 2010,” please accept my thanks and the thanks of a grateful nation for all you do every day for our children. There is no greater gift than to teach others, to share your skills and wisdom and, in so doing, enrich the lives of everyone in the community. \nMore than just the future of your students, the future of our great state and the country is in your hands. We rely on you, day-in and day-out to teach the next generation of Americans not only how to read and write, but to think and build a skill-set that will secure them a place in the 21st century economy as doctors, nurses, scientists, engineers, inventors, teachers, or entrepreneurs. Maybe one of them will someday create the next Microsoft or the next Google, or become a United States Senator.\nThat is why I have been fighting to pass legislation that would make critical investments in education.  Most recently, I have joined Sen. Harkin’s efforts to pass the Keep our Educators Working Act, which builds upon last year’s Recovery Act investment in education by providing another $23 billion, including approximately $628 million for New Jersey alone.  These funds will be used to keep teachers and support staff working, which will not only avoid massive layoffs in the short-term, but will also help our students learn and gain the skills needed to become successful and contribute to our economy in the long-term.   \nI grew up in a family that believed education was the key that would unlock the doors to opportunity, and I had teachers who challenged me to learn all I could.  I never thought I would be the first in my family to go to college or have the opportunity to serve as a Mayor, a Congressman, and now as a Senator.  I owe all my teachers a profound sense of gratitude for believing in me and perhaps more importantly, teaching me to believe in myself.  \nEvery single day you are tasked with opening these same doors of opportunity for all of your students and guiding them to reach their potential.  Every single day you are given the responsibility to affect a child’s life decades into the future.  As the American historian and grandson of John Quincy Adams, Henry Adams once said, “A teacher affects eternity, you can never tell where their influence stops.”\nI know that teachers, maybe more so than other professions, have good days and bad.  Days when the students just aren’t paying attention – days when you don’t feel as appreciated as you should.  On those days just remember why you entered this profession – not for wealth or fame – but rather to make a difference in the world one child at a time.\nAgain, please accept my sincere appreciation for everything that you do to make our country better.  The world needs more people like you.  \nHappy Teacher Appreciation Week!\nWith warmest wishes,\nBob\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0e1b732b-01b9-41a8-87b1-d0f7b0b6a812,\"SENATOR MENENDEZ HONORS CONTRIBUTIONS OF MEXICAN AMERICANS IN CELEBRATION OF CINCO DE MAYO\n                    \n                            Chairman of the Hispanic Task Force, lone Hispanic Senator highlights importance of economic growth and job creation for Hispanics \n                    \n                      May 5, 2010\n                     WASHINGTON - Today U.S. Senator Robert Menendez (D-NJ), Chairman of the Senate Democratic Hispanic Task Force, joined millions of Americans in celebrating Cinco de Mayo and the important contributions of Mexican-Americans to this country. Senator Menendez also highlighted the need for economic growth and job creation to address the high unemployment rate among Hispanic communities. Cinco de Mayo is holiday that marks the Mexican army's defeat over the French army in 1862 and is a symbol of cultural celebration and pride. \n\"\"We celebrate this day, not only out of respect for the rich history and culture of our neighbors in Mexico, but also in honor of the tremendous contributions and achievements of Mexican-Americans that have made ours a better nation,\"\" said Senator Menendez. \"\"Mexican-Americans have helped weave the fabric of our nation and continue to do so. This date also reminds us of the difficulties that many Latinos face during these tough economic times. As Chairman of the Hispanic Task Force, I will continue to pursue policies in collaboration with President Obama and my colleagues in the Senate to make sure Latinos and all Americans have every opportunity to succeed.\"\"\n                                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c9ca441f-ddac-4ebb-ad3a-b044cb3c79f8,\"The Big Oil Prevention Act: New Legislation Would Help Ensure Oil Companies Are Not Off the Hook for Economic Damages from Spills\n                    \n                            Menendez joined by Lautenberg, Bill Nelson on legislation to raise cap on oil company liability for spill damages from $75 million to $10 billion\n                    \n                      May 3, 2010\n                     WASHINGTON – As the Gulf Coast braces for the environmental and economic damage that the current massive oil spill is predicted to cause, U.S. Senator Robert Menendez (D-NJ) along with Senators Frank Lautenberg (D-NJ) and Bill Nelson (D-FL) today introduced legislation to ensure that oil companies are not allowed off the hook when it comes to paying for economic damages as a result of spills. Currently, the responsible party in an oil spill must cover all costs related to clean up; however, there is a $75 million cap on its liability for economic damages, such as lost business revenues from fishing and tourism, natural resources damages or lost local tax revenues. Menendez’s Big Oil Bailout Prevention Act would raise the liability cap from $75 million to $10 billion.\n\nSenator Menendez said: “The bottom line is that oil spills can leave massive holes in the economy. If you spill it, you should have to fill it. We’re glad that the costs for the oil clean up will be covered, but that’s little consolation to the small businesses, fisheries and local governments that will be left to clean up the economic mess that somebody else caused. We can’t let the burden fall on the taxpayers – we should ensure that those who cause the damage are fully responsible. There is no such thing as a ‘Too Big to Spill’ oil well, which is why we need this economic protection in place. With some predicting that this spill could potentially make its way up the eastern seaboard, and with future plans for drilling along the East Coast, I look at this bill as a safety net for our small businesses owners and fisheries on the Jersey Shore as well.”\nSenator Lautenberg said: \"\"Throughout my career, I have stood by a fundamental principle:  that polluters—and not the taxpayer—should pay to clean up contamination.  Oil spills should not be an exception to the rule. The oil companies must be held responsible for every cost related to an oil spill -- and that includes both the environmental and economic damages.  The devastation in the Gulf provides further evidence why we must protect and preserve the Atlantic from expanded oil drilling.  I remain dedicated to keeping the Jersey Shore clean and our fishing, shellfish, and tourism industries strong.\"\"\nSen. Bill Nelson said: “BP says it’ll pay for this mess. Baloney. They’re not going to want to pay any more than what the law says they have to, which is why we can’t let them off the hook.”\n\nOnce that responsible party liability cap is hit, people, businesses or governments can make claims against the Oil Spill Liability Trust Fund. The Fund is funded by an 8 cent tax for every barrel produced or imported into the United States and is projected to have $1.6 billion in it by the end of FY10.  However, there is a $1 billion per incident cap on payouts from the fund. \nThe Big Oil Bailout Prevention Act would:\nRaise the liability cap for offshore oil well spills from $75 million to $10 billion.\nEliminate the $1 billion per incident cap on claims against the Oil Spill Liability Trust Fund and allow community responders to access the fund for preparation and mitigation up front, rather than waiting for reimbursement later.\nIf damages claims exceed the amount in the Oil Spill Liability Trust Fund (currently $1.6 billion), then claimants can collect from future revenues of the fund, with interest.\nEliminate the $500 million cap on natural resources damages.\n  \nRecent oil company profits:\nOil Company\nQ1 2009 Oil Company Profits\nQ1 2010 Oil Company Profits\nQ1 2010 Profits Compared to Q1 2009\nBP\n$2.4 billion\n$5.6 billion\n+133%\nChevron\n$1.8 billion\n$4.6 billion\n+156%\nConocoPhillips\n$0.8 billion\n$2.1 billion\n+163%\nExxonMobil\n$4.6 billion\n$6.3 billion\n+38%\nShell\n$3.3 billion\n$4.9 billion\n+49%\nTOTAL\n$12.9 billion\n$23.5 billion\n+82%\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0c6035fa-982f-4823-844c-58fb143a9503,\"SENATOR MENENDEZ AND THE NATIONAL LATINO CHILDREN’S INSTITUTE CELEBRATE “EL DÍA DE LOS NIÑOS”\n                    \n                            Senators Menendez, Hatch, and Casey also introduce resolution to mark holiday \n                    \n                      April 30, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) was joined by the National Latino Children’s Institute (NLCI) and Hispanic youth from around the country to commemorate El Día de los Niños, Celebrating Our Youth.  To recognize this special day, Senators Menendez, Hatch, and Casey also introduced a resolution to mark the celebration and declare it a national holiday. During the event, Menendez highlighted the importance of giving children the tools they need to be successful, including quality early education, adequate health care and proper nutrition. After concluding his remarks, Senator Menendez read a story to children from the DC area and was given an award by a student from New Jersey for his work on behalf of our nation’s youth. Observed today April 30th and originally adapted from a Mexican Holiday, El Día de los Niños is celebrated throughout the world, particularly in the Western Hemisphere. \n“Today we commemorate El Día de los Niños and honor our children as the center of our families and the future of this great nation.  As Chair of the Hispanic Task Force, I have made it a priority to ensure our children have the resources they need to be healthy and safe, so that they can grow up to become contributing members of our society. Nothing is as important as ensuring every opportunity is available for them to reach their highest potential. Their success is our nation’s success.” \n“Utahns have long revered and cherished their youngest people. This celebration of the lives of children and young people is a poignant reminder that our future lies in very small hands.” said Senator Hatch. “America’s youth represent the hopes and dreams of our nation, and the importance of families in the economic, cultural, and physical prosperity of our democracy. I am happy to join with many families who are paying tribute on this day to the next generation.” “Our children are our greatest resource.  As a public official, I have strived to do all I can to improve the safety of our children and to ensure they have the proper care and education so that they may reach their greatest potential,” said Senator Casey. “It is my privilege to commemorate El Día de los Niños to recognize children as the heart of families and the key to the future of our country.” “With one in five public school children being Latino it is imperative that all children succeed in school; so today the National Latino Children's Institute and it's Promesa network and youth were proud to meet with Senator Menendez to bring attention to issues impacting young Latinos, to celebrate and honor children on El dia de los ninos-celebrating young americans. It is imperative that we stand together and include youth in the conversation that is going to impact them.” Said Josie F. Garza, Executive Director of the National Latino Children’s Institute (NCLI).Today, Latino children represent one in five our public school students nationally and are the fastest growing segment of any racial or ethnic group. However, they are less likely to have access to high quality early education and only 55% will complete their secondary education on time and receive a regular diploma. Hispanic children are also more likely to live in poverty and experience food insecurity than White non-Hispanic children.  And when it comes to health coverage, Hispanic children are three times more likely than non-Hispanic White children to have no form of health insurance.\nClick here to read the resolution: http://menendez.senate.gov/imo/media/doc/Dia de los Ninos 2010.pdf\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=273b3ae1-6096-4920-8b30-b80c18779e62,\"AS TEACHER APPRECIATION WEEK APPROACHES, SENATOR MENENDEZ LOOKS TO HONOR EXCEPTIONAL EDUCATORS\n                    \n                            Senator asks students, parents to nominate teachers who have gone the extra mile and made a difference in the lives of NJ’s youth\n                    \n                      April 30, 2010\n                     WASHINGTON – As Teacher Appreciation Week (May 2 to May 8, 2010) approaches, Senator Menendez is asking New Jersey students and their parents to nominate a teacher or coach who has made a difference in their lives.  Students in grades K-12 and their parents are eligible to nominate their teacher or coach on the Senator’s website: http://menendez.senate.gov.  They can also email their nominations directly to the Senator at: TeacherAppreciation@menendez.senate.gov.  The most compelling nominees will be honored and awarded by Senator Menendez.\n“Parents and students rely on our educators day-in and day-out to prepare the next generation of New Jerseyans to become the leaders of tomorrow,” said Senator Menendez. “From the basics of reading and writing, to critical thinking and skills for the 21st century economy, teachers are not only critical to our own children, but also to New Jersey’s economic future. We should honor and appreciate teachers and the sacrifices they make on behalf of their students all year long – supporting them during Teacher Appreciation Week is the least we could do. I am starting this initiative to show our educators in New Jersey how much they are valued and will encourage students to take full advantage of the opportunities for which their teachers prepare them.”\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4f44a3d0-6b65-43dd-a41a-bddfb9fc5a54,\"NJ SENATORS, CONGRESSMEN CALL ON ADMINISTRATION TO REVERSE DECISION TO DRILL ALONG EAST COAST\n                    \n                            In letter to President Obama, Menendez, Lautenberg, Pallone and Holt cite Gulf oil spill as most recent evidence of risk to shorelines\n                    \n                      April 30, 2010\n                     WASHINGTON – Today, New Jersey’s two U.S. Senators and two of the state’s Members of Congress called on the Obama administration to reverse its announced plans to open up the East Coast of the United States to oil drilling. In a letter to President Obama, Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) and Reps. Frank Pallone (NJ-6) and Rush Holt (NJ-12) said the current oil spill in the Gulf of Mexico is only the latest example of the real risk drilling poses to coastal communities and the economies they support. Under the administration’s plan, drilling along the coast of Virginia could occur within 100 miles of the Jersey Shore and, eventually, drilling along the coast of Delaware could occur within 10 miles of New Jersey.\n“In the wake of the tragic accident, loss of life, and pollution in the Gulf of Mexico from the Deepwater Horizon oil rig, we are even more steadfastly opposed to any offshore drilling that could imperil the environment or economy of coastal New Jersey,” wrote the Members of Congress. “While we appreciate the White House’s announcement that no additional offshore drilling will be authorized until a full investigation of the accident is complete, we urge you to go further and reverse your decision on proposed new offshore oil and gas drilling for the outer continental shelf. \n“The spill, and the conduct of companies like BP, raises serious concerns about expanding drilling to areas like the Atlantic seaboard.  This catastrophe demonstrates exactly why no new drilling should proceed in any U.S. waters, and certainly not in the Atlantic.  This incident exposes the many deficiencies in worker safety, blow out avoidance technology, and oil spill clean-up plans for operations in the outer continental shelf.  We simply are not prepared to make our pristine Jersey shoreline the next test case for the oil companies’ experiment in how to maximize profits and minimize regulations.” \nPDF of letter to President Obama: http://menendez.senate.gov/imo/media/doc/20100430ltr_drilling1.pdf \nText of letter:\nApril 30, 2010\nThe Honorable Barack ObamaThe White HouseWashington, DC\nDear Mr. President:\nIn the wake of the tragic accident, loss of life, and pollution in the Gulf of Mexico from the Deepwater Horizon oil rig, we are even more steadfastly opposed to any offshore drilling that could imperil the environment or economy of coastal New Jersey.  While we appreciate the White House’s announcement that no additional offshore drilling will be authorized until a full investigation of the accident is complete, we urge you to go further and reverse your decision on proposed new offshore oil and gas drilling for the outer continental shelf. \nThe spill, and the conduct of companies like BP, raises serious concerns about expanding drilling to areas like the Atlantic seaboard.  This catastrophe demonstrates exactly why no new drilling should proceed in any U.S. waters, and certainly not in the Atlantic.  This incident exposes the many deficiencies in worker safety, blow out avoidance technology, and oil spill clean-up plans for operations in the outer continental shelf.  We simply are not prepared to make our pristine Jersey shoreline the next test case for the oil companies’ experiment in how to maximize profits and minimize regulations. \nYour announcement on March 31 means that New Jersey faces the prospect of oil drilling within just a few miles from our coastline.  We believe that this action threatens New Jersey’s beautiful beaches and our substantial fishing and tourism industries with the risk of an oil spill.  Our beaches are a tremendous resource and an essential economic engine.  They are the centerpiece of tourism and fishing industries that are responsible for hundreds of thousands of jobs and tens of billions of dollars of revenue for our state each year.  The New Jersey Shore is also an environmental treasure that serves as a natural habitat for wildlife and deserves to be protected in its own right.\nDespite protestations from the industry, oil spills from offshore oil exploration and production happen all too often.  On August 21, 2009, an oil rig began leaking off the northern coast of Australia.  The rig leaked for over 10 weeks and then caught fire before finally being plugged on November 3, 2009.  On April 6, an oil spill occurred 10 miles off the coast of Louisiana that released 18,000 gallons of oil into a nearby wildlife refuge.  And as you know, an estimated 210,000 gallons per day of crude oil is currently leaking from the Deepwater Horizon rig into the Gulf and headed toward Louisiana where it may have already made landfall. \nThe Deepwater Horizon tragedy should bring a halt to any expansion of offshore drilling, including MMS’s current decision-making process with regard to seismic testing, revising the 2007 to 2012 5-year plan and scoping for the 2012 to 2017 plan. Therefore we ask that you suspend all action on expanding such exploration on the Outer Continental Shelf immediately and reverse any plans to drill off the Atlantic coast.\nSincerely,\nROBERT MENENDEZUnited States Senator\nFRANK R. LAUTENBERGUnited States Senator\nFRANK PALLONEMember of Congress\nRUSH HOLTMember of Congress\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5d27c3bb-53de-4104-ba41-57027148ad24,\"AS TEACHER APPRECIATION WEEK APPROACHES, SENATOR MENENDEZ LOOKS TO HONOR EXCEPTIONAL EDUCATORS\n                    \n                             Senator asks students, parents to nominate teachers who have gone the extra mile and made a difference in the lives of NJ’s youth\n                    \n                      April 29, 2010\n                     WASHINGTON – As Teacher Appreciation Week (May 2 to May 8, 2010) approaches, Senator Menendez is asking New Jersey students and their parents to nominate a teacher or coach who has made a difference in their lives.  Students in grades K-12 and their parents are eligible to nominate their teacher or coach on the Senator’s website: http://menendez.senate.gov.  They can also email their nominations directly to the Senator at: TeacherAppreciation@menendez.senate.gov.  The most compelling nominees will be honored and awarded by Senator Menendez.“Parents and students rely on our educators day-in and day-out to prepare the next generation of New Jerseyans to become the leaders of tomorrow,” said Senator Menendez. “From the basics of reading and writing, to critical thinking and skills for the 21st century economy, teachers are not only critical to our own children, but also to New Jersey’s economic future. We should honor and appreciate teachers and the sacrifices they make on behalf of their students all year long – supporting them during Teacher Appreciation Week is the least we could do. I am starting this initiative to show our educators in New Jersey how much they are valued and will encourage students to take full advantage of the opportunities for which their teachers prepare them.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d67da014-4551-4c5a-92ee-412bc163fdd9,\"MENENDEZ AND AKAKA ANNOUNCE PLANS FOR “HONEST BROKER” AMENDMENT TO WALL STREET REFORM\n                    \n                            Goldman Sachs case underscores need to require all brokers to act in best interests of consumers, not just investment advisers\n                    \n                      April 29, 2010\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ) and Daniel Akaka (D-HI) today said that they plan to offer the “Honest Broker Amendment” to the Wall Street reform bill, which would require brokers to act in the best interests of their clients and fully disclose any conflicts of interest. Text of amendment: http://menendez.senate.gov/imo/media/doc/20100429HonestBroker.pdf.  \nThe Senators said that the Securities and Exchange Commission case against Goldman Sachs and this week’s Senate Special Committee on Investigations hearing highlighted the vital need for brokers to be held to a  fiduciary duty standard. The Goldman Sachs case involves brokers not acting in their clients’ best interests by selling them bad investments to make more money.  The senators say it is clear the standards need to be universal so that they include retail investors as well.\nSenator Menendez said: “The evidence in the Goldman Sachs case shows that not only can ill-intentioned investment professionals at all levels gamble with your money, they can actively sell you a bad deal to line their own pockets. The rules that ensure investment professionals are looking out for their clients should be universal. It’s not just about seasoned investors, it should also be about average consumers who use a broker to invest their hard earned money. We intend to offer our ‘Honest Broker Amendment’ now that the obstruction of Wall Street reform is over, and we believe that the evidence in the Goldman Sachs case gives us momentum.”\nSenator Akaka said: “We must impose a fiduciary duty on brokers to ensure that all financial professionals, whether they are an investment advisor or a broker, have the same responsibility to act in the best interests of their clients.”\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dd82ed3b-212f-4d45-870c-ae17724e29b4,\"VIDEO: MENENDEZ SPEAKS IN SENATE ON OIL SPILL AND COASTLINE DRILLING\n                    \n                      April 29, 2010\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ) took to the floor of the Senate to discuss the ongoing oil spill in the Gulf of Mexico and its implications for expanded coastline oil drilling. \nVideo is available here: http://www.youtube.com/watch?v=u9JBBjaOXtI \n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9f956359-1a33-4146-baf6-e3e17e570c67,\"NEW BIPARTISAN SENATE BILL WOULD HELP COMMUNITIES REBUILD WATER AND SEWER SYSTEMS\n                    \n                            Menendez and Crapo introduce legislation, which could create up to 57,000 jobs. Rep. Pascrell is House sponsor.\n                    \n                      April 28, 2010\n                     WASHINGTON – With communities around the country facing the economic and safety challenges of aging water and sewer systems, U.S. Senators Robert Menendez (D-NJ) and Mike Crapo (R-ID) today introduced Senate legislation to help local governments finance these infrastructure projects. The Sustainable Water Infrastructure Investment Act, sponsored in the House of Representatives by Rep. Bill Pascrell (NJ-8), would allow greater use of tax-exempt private activity bonds by local governments to finance these projects. These bonds are currently subject to an annual cap, but the legislation would ensure that bonds for water and wastewater projects are not subject to the cap. Encouraging water and sewage projects creates jobs and generates economic growth while rebuilding critical community infrastructure. It is estimated that the legislation could create 57,000 jobs.“Part of rebuilding our economy for the 21st Century is renovating the infrastructure that helps our communities prosper,” said Menendez. “Many of our communities in New Jersey have been challenged by aging and deteriorating water and sewer systems, which not only jeopardizes the health of our families but also puts significant strain on local budgets. With this legislation, we can help local governments afford water and sewer renovations without burdening taxpayers, and we can create thousands of jobs.”“Many small communities need, and deserve, federal support to comply with federal water and wastewater guidelines,” Crapo said. “This bill would allow local communities to leverage private capital markets in combination with other financial mechanisms to finance water and wastewater infrastructure projects.  It makes financial sense for communities and will improve public health and water quality.”“It is critical that the Congress effectively and expeditiously respond to two of our nation’s most-pressing needs: jobs creation and water system upgrades,” said Pascrell, a House Ways and Means Committee member who shepherded passage of the water infrastructure legislation in the House last month as part of H.R. 4849, the Small Business and Infrastructure Jobs Tax Act of 2010.  “Our nation’s job deficit and deteriorating water systems have gotten to the point that if you randomly pick up a newspaper in any American city, there’s a good chance you find a story about a company’s job cuts or a community’s water main break – maybe both.  Taxpayers cannot be expected to foot the entire bill for all of the repairs and updates that our water infrastructure needs.  Our legislation will encourage public-private sector partnerships to secure needed resources.  I commend Senator Menendez and Senator Crapo for showing their leadership on this very important initiative.”Private activity bonds are a form of tax-exempt financing for a government entity such as a municipality or state that wants to partner with a private party to meet a public need (as defined by law).  Interest paid on bonds issued by State and local governments generally is excluded from gross income for Federal income tax purposes. Congress controls the total volume of tax-exempt bonds by limiting issuance in each state with an annual cap.  In 2009, the State volume cap was equal to $90 per resident or $273.09 million, if greater. This legislation would remove issuances of private activity bonds for water and wastewater projects from the annual volume caps. Certain bond issuances, such as bonds to finance airports, ports, certain inter-city rail projects, and solid waste projects are already exempt from the annual caps.  Why It’s Needed:•    The Environmental Protection Agency and the Government Accountability Office estimate the investment gap for infrastructure upgrades over the next 20 years to be more than $500 billion to ensure safe drinking water and wastewater treatment.•    The proposal would reduce cost of water projects, which translates into better water infrastructure, better quality water, and lower rates for customers•    According to the Joint Committee on Taxation, the cost to the Federal Government of supporting 57,000 jobs in 2010 (and at increasing levels each year thereafter) through a PAB volume cap exception is $354 million over 10 years. •    There is a tremendous economic feedback effect for dollars invested in modernizing water and sewage infrastructure.  In fact, studies show every dollar invested in water and sewer infrastructure, yields a $6.35 increase in Gross Domestic Product.                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=73e5ab12-d32c-4e1b-9dfd-86924201e21c,\"MENENDEZ ON LATEST UNANIMOUS REPUBLICAN  OBSTRUCTION OF REFORM: “The third time’s a charm only for Wall Street”\n                    \n                      April 28, 2010\n                     WASHINGTON – Today, Senate Republicans voted unanimously for the third time in three days to prevent a debate on the Wall Street reform bill from even starting. They forced a 60 vote threshold on the motion to proceed to the legislation, and without a single Republican vote in favor, it fell short.\nU.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee who has helped to craft the Wall Street reform legislation, released the following statement after the vote:\n“In this situation, the third time’s a charm only for Wall Street. As Republicans continue to employ their Wall Street protection strategy, millions of families who are facing tough times are wondering why Republicans won’t help protect them instead. They watched the Goldman Sachs hearings yesterday and wondered who could possibly defend the current free-for-all system and block beginning a debate on Wall Street reform. My colleagues and I who believe strongly that we need to implement accountability on Wall Street will continue fighting to overcome the Republican-Wall Street coalition.”\n                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=70ca774b-b756-49b2-9581-a56867f7614e,\"MENENDEZ: WALL STREET BILL OBSTRUCTION NO MATCH FOR FAMILIES CLAMORING FOR REFORM\n                    \n                            Republicans finally give up unanimous opposition to beginning debate\n                    \n                      April 28, 2010\n                     WASHINGTON – After three days and three votes in which Senate Republicans unanimously voted to block beginning the debate on Wall Street reform, they finally relented and tonight allowed the Senate to begin its work. \nU.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee who has helped craft the Wall Street reform bill, released the following statement:\n“The Republican-Wall Street obstruction strategy was no match for families back home who have had it with special interests protecting the status quo. Families enduring the worst economy in generations have been clamoring for us to begin the work of bringing accountability to Wall Street. My hope is that we can make this as strong a consumer and taxpayer protection bill as possible and that our Republican colleagues will join us in that effort instead of working to water it down.”\n                                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3eb626db-59a0-4ea6-b562-486cc9e86084,\"MENENDEZ AMENDMENT TO PROMOTE GREATER PARTICIPATION OF MINORITIES AND WOMEN IN FOREIGN SERVICE PASSES UNANIMOUSLY \n                    \n                      April 27, 2010\n                     WASHINGTON – Today, as part of the State Department Authorization Bill that passed the Senate Foreign Relations Committee, Senator Robert Menendez (D-NJ) successfully included an amendment to encourage greater participation of minorities and women in the foreign service and throughout the Department of State.  The provision, which largely replicates a similar provision that was enacted into law in 2002, mandates data collection on the recruitment of woman and minorities in the Department of State and mandates increased outreach efforts to those groups. \n“I am a big supporter of promoting and encouraging diversity at all levels of our society, and in particular, our government. This is why I am continuing the effort to ensure that the foreign service reflects the diversity that characterizes America. Our foreign service is stronger when it represents the wide range of backgrounds and experiences that Americans bring,” said Menendez.\nAs of the end of last year, women made up 44 percent of the Department of State’s workforce.  In real terms, this equals about 2000 fewer women than men. During fiscal year 2009 and 2010, the Department hired men 59 percent of the time and of the specialists hired by the Department of State during this same timeframe, only 26 percent of them were women.  Of all those who registered for the Foreign Service Written Exam in 2008 only 7.3 percent were Hispanic and in 2009, only 6.8 percent were Hispanic.  Hispanics make up about 15 percent of the U.S. population.\nClick HERE to read the amendment.                                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9fded00a-5670-4818-add6-4b6b3c38410b,\"MENENDEZ HAILS REID FOR STANDING UP FOR JUSTICE IN CASES OF FARMER DISCRIMINATION\n                    \n                      April 27, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), who has helped lead Congressional efforts to ensure a fair resolution for Hispanic, African American, women and American Indian farmers who have been subject to discrimination in obtaining USDA assistance, today released the following statement commending Senate Majority Leader Harry Reid’s strong statement in favor of a just resolution:\n“Senator Reid understands that ‘Justice For All’ should be more than rhetoric. The discrimination in all these cases is unquestioned, virtually identical to one another, and a fair resolution for all of the farmers who suffered as a result is long overdue. Senator Reid is an important ally in this cause, and I look forward to continue working with him. Sooner rather than later, all of the pending cases must be resolved together, because justice deferred is justice denied.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b308a22d-226c-4182-8254-f921a76bc4a5,\"MENENDEZ, REED, CONSUMER ADVOCATES DISCUSS HOW WALL STREET REFORM PROTECTS CONSUMERS AND CALL ON REPUBLICANS TO STOP BLOCKING DEBATE\n                    \n                      April 27, 2010\n                     WASHINGTON — Senators Jack Reed and Robert Menendez joined Jim Guest, President and CEO of Consumers Union, and Gloria McAlpin, a victim of mortgage fraud, to discuss the importance of protecting consumers from risky behavior and excess on Wall Street. Years of reckless behavior by big banks on Wall Street led to 8 million people losing their jobs and trillions of dollars being gambled away.  Senate Republicans yesterday blocked debate on legislation to reign in Wall Street and protect American consumers.  Senate Democrats are committed to holding Wall Street accountable and will continue to call on Republicans to drop their objections to reforming greed and excess on Wall Street.\n“Delaying Wall Street reform is not helping America and it is not helping the economy,” said Senator Reed.  “The American people are rightfully upset that we haven’t done more to end the recklessness that caused the financial crisis.  That is what’s at issue here: will we or won’t we even start debating Wall Street reform?  If Republicans keep blocking the bill, that’s more delay in providing consumer protection and a continuation of the practices that helped crash the economy.”\nSenator Menendez said: “Millions of families who have spent the past two years worried about their jobs, homes and savings don’t just want Wall Street accountability now, they wanted it yesterday. Which begs the question: where are our Republican colleagues? Where were they yesterday when the American people needed them to help simply start the debate that brings us closer to common sense rules for Wall Street?”\n\"\"At Consumers Union, we hear time and again from people all across the nation about financial rip-offs and greedy, unethical banking practices,” said Jim Guest. “We've collected nearly 25,000 stories from consumers who've been harmed.  It's brutally clear that the time for strong financial reform is now.”\nSaid Gloria McAlpin:  “My family’s ordeal should never have happened to us or to the millions of other families hurt by unfair mortgage lending.”\n                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b9e4d664-7c1f-4efe-9827-c926d88f2cca,\"MENENDEZ SAYS THE CONTINUING REPUBLICAN OBSTRUCTION OF WALL STREET REFORM DOESN’T MAKE SENSE TO STRUGGLING FAMILIES \n                    \n                            Republican vote unanimously to block the bill for the second time in two days\n                    \n                      April 27, 2010\n                     WASHINGTON – Today, Senate Republicans voted in lock step for the second time in two days to block work on the Wall Street reform legislation from beginning. U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee who has helped craft the reform bill, released the following statement:\n“Families who have suffered the consequences of big bank recklessness must be watching from afar and wondering who would actively block us from simply beginning the work on Wall Street accountability legislation. This just doesn’t make sense to people who have spent the past few years worried about their jobs, their homes and their savings – nor should it. Our Republican colleagues need to step out of the back rooms where they strategize with Wall Street and step on to the Senate floor to get to work protecting families.”\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fb83a552-8cbf-4e82-8953-680561c743bc,\"MENENDEZ SAYS THE CONTINUING REPUBLICAN OBSTRUCTION OF WALL STREET REFORM DOESN’T MAKE SENSE TO STRUGGLING FAMILIES\n                    \n                            Republican vote unanimously to block the bill for the second time in two days\n                    \n                      April 27, 2010\n                     WASHINGTON – Today, Senate Republicans voted in lock step for the second time in two days to block work on the Wall Street reform legislation from beginning. U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee who has helped craft the reform bill, released the following statement:\n“Families who have suffered the consequences of big bank recklessness must be watching from afar and wondering who would actively block us from simply beginning the work on Wall Street accountability legislation. This just doesn’t make sense to people who have spent the past few years worried about their jobs, their homes and their savings – nor should it. Our Republican colleagues need to step out of the back rooms where they strategize with Wall Street and step on to the Senate floor to get to work protecting families.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5ebd6b8e-0183-4fae-9c81-2fff67ffacec,\"MENENDEZ-KERRY-LUGAR BILL TO STRENGTHEN ORGANIZATION OF AMERICAN STATES PASSES SENATE FOREIGN RELATIONS COMMITTEE\n                    \n                      April 27, 2010\n                     WASHINGTON -U.S. Senators Robert Menendez (D-NJ), Chairman John Kerry (D-MA), and Ranking Member Richard Lugar (R-IN) passed legislation out of the Senate Foreign Relations Committee today to strengthen the Organization of American States (OAS).  The “Organization of American States Revitalization and Reform Act of 2010” (S.3087) would help refocus the OAS on key mission areas through reform and greater transparency in budgeting, accounting, and hiring.  \n “Our hemisphere, with few exceptions, is unified in its commitment to democracy, human rights, freedom, fairness, transparency, and justice,” said Menendez. “But there is more work to do.  All member States of the OAS would benefit from an effective and relevant multilateral forum in which to resolve disputes and build consensus around issues of mutual interest.”\n“The OAS is invaluable to cooperation on security, democracy, the environment, and other critical issues throughout our hemisphere,” said Kerry.  “To fulfill its mission in the 21st century, the OAS needs reform and modernization, and our legislation clearly moves it in that direction.”“This legislation provides bipartisan encouragement and support for the OAS to get its fiscal house in order,” Lugar said. “The OAS overspent its income by 9.6 million dollars. The majority of member-states have said that they are not about to step forward and plug this budget hole with the 12 percent increase in contributions that would be required.”The Menendez-Kerry-Lugar bill, works to focus the mission of the institution towards its natural areas of strength, adopt and implement improved accounting standards, put in place results-based budgeting processes, and adhere to transparent and merit-based human resource policies.  It also seeks to help agencies within the U.S. Government to better use the OAS as a forum to collaborate on areas of mutual interest like energy, citizen security, economic development, and trade. The core of the OAS programs consolidate democracy, monitor elections, and improve public security. \nClick  HERE for a PDF of the “Organization of American States Revitalization and Reform Act of 2010” (S. 3087)   \n                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c5b5994f-4092-4cac-ae08-1f931939464e,\"Sens. Nelson, Menendez, and Lautenberg Request Joint Hearing on Oil Rig Explosion and Spill\n                    \n                            Senators seek to examine what happened and whether Coast Guard and NOAA are equipped to contain this and future spills\n                    \n                      April 26, 2010\n                     WASHINGTON – As a result of last week’s major oil rig explosion in the Gulf of Mexico, 42,000 gallons of crude oil are being spilled into the water each day, forming a 600 square mile oil slick. Today, U.S. Senators Bill Nelson (D-FL), Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ), who represent states that could be affected by spills at current or future oil drilling sites, formally requested a joint hearing to examine this particular disaster and whether similar incidents can be prevented in the future. They wrote the Chairs and Ranking Members of the Senate Commerce, Science and Transportation Committee and the Senate Energy and Natural Resources Committee to request the hearing.\n“Last Tuesday’s explosion of the Deepwater Horizon oil rig in the Gulf of Mexico is a tragedy for the families and friends of the missing and injured workers, and also a sobering reminder of the real risk from oil drilling,” wrote the senators. “The explosion, ensuing fire, and continuing spill raise serious concerns about the industry’s claims that their operations and technology are safe enough to put rigs in areas that are environmentally sensitive or are critical to tourism or fishing industries. This may be the worst disaster in recent years, but it’s certainly not an isolated incident.”\nPDF of letter to committee heads: http://menendez.senate.gov/imo/media/doc/20100426ltr_OilSpillHrg.pdf \nText of letter: \nApril 26, 2010\nThe Honorable John D. Rockefeller                           The Honorable Kay Bailey HutchisonChairman                                                             Ranking MemberSenate Committee on Commerce, Science                 Senate Committee on Commerce, Science & Transportation                                                  & Transportation508 Dirksen Senate Office Building                          508 Dirksen Senate Office BuildingWashington, DC 20510                                          Washington, DC 20510\nThe Honorable Jeff Bingaman                                   The Honorable Lisa A. Murkowski Chairman                                                              Ranking MemberSenate Committee on Energy &                                Senate Committee on Energy &      Natural Resources                                                  Natural Resources304 Dirksen Senate Office Building                            304 Dirksen Senate Office BuildingWashington, DC 20510                                            Washington, DC 20510\nDear Chairman Rockefeller, Chairman Bingaman, Ranking Member Hutchison, and Ranking Member Murkowski: \nLast Tuesday’s explosion of the Deepwater Horizon oil rig in the Gulf of Mexico is a tragedy for the families and friends of the missing and injured workers, and also a sobering reminder of the real risk from oil drilling.  The explosion, ensuing fire, and continuing spill raise serious concerns about the industry’s claims that their operations and technology are safe enough to put rigs in areas that are environmentally sensitive or are critical to tourism or fishing industries.\nThis may be the worst disaster in recent years, but it’s certainly not an isolated incident.  Before the explosion Tuesday, the Minerals Management Service (MMS) reported 509 fires resulting in at least two fatalities and 12 serious injuries on rigs in the Gulf of Mexico since 2006.  Three federal entities -- the Coast Guard, MMS, and the National Oceanic and Atmospheric Administration (NOAA) -- are integrally involved in the response, recovery and restoration operations.  We therefore request a joint hearing by the committees that oversee those agencies: the Senate Commerce, Science & Transportation Committee and Senate Energy & Natural Resources Committee. We must also examine whether the Coast Guard and NOAA have the resources available to respond to this and future spills. Thank you for your consideration of this request. \nSincerely,Bill NelsonUnited States Senator\nRobert MenendezUnited States Senator\nFrank R. LautenbergUnited States Senator\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=548b38f5-af87-4ce2-b0a4-800133f9e919,\"MENENDEZ ON OBSTRUCTION OF WALL STREET REFORM: WE WILL NOT STOP FIGHTING THE SPECIAL INTERESTS THAT WANT TO KILL THE BILL\n                    \n                      April 26, 2010\n                     WASHINGTON – Today, Republicans blocked the U.S. Senate from working on Wall Street reform legislation, voting unanimously against even beginning debate on the bill. Senate Republicans required the motion to proceed to the reform bill to garner 60 votes, and with all 41 Republicans voting “No,” it was defeated 57-41.\nU.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee who has helped to craft the reform bill, said after the vote that Democrats will fight special interests opposed to reform until it is law:\n“Millions of families across New Jersey who have spent the past two years worried about their jobs, homes and savings don’t just want Wall Street accountability now, they wanted it yesterday. The special interests are doing everything they can to kill Wall Street reform, but we will not stop fighting until there are new common sense rules that protect your money. It’s time for our Republican colleagues to stop the back room strategy sessions with Wall Street and start getting down to the business of bringing accountability to Wall Street.”\n                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f26c3749-7368-4974-b6a6-f2a9d6457494,\"SENATOR MENENDEZ CONGRATULATES NJ WINNERS OF 2010 EPA ENVIRONMENTAL AWARD\n                    \n                            EPA marks the 40th anniversary of Earth Day by honoring environmental leaders in NJ and throughout the country\n                    \n                      April 26, 2010\n                     WASHINGTON – In the spirit of the 40th anniversary of Earth Day, the US Environmental Protection Agency (EPA) has announced that eight individuals and organizations in New Jersey have been awarded with the Agency’s Environmental Quality Award this year. This award is presented every year to organizations that have demonstrated an outstanding commitment to protecting the environment and recipients are selected from the following categories: individual citizen, environmental education, press and media, business and industry, non-profit organization, environmental or community group, and federal, state, local or tribal agency. EPA’s annual President’s Environmental Youth Award recognizes young environmental stewards who surpass their classmates in understanding the importance of the environment. This national competition is open to students from kindergarten through 12th grade who actively participate in noteworthy environmental projects. Senator Menendez (D-NJ) congratulated the winners and released the following statement in praise of their work:\n“The people of New Jersey understand the important of this unique moment --we must address threats to the air we breathe, the water our families drink and the land we live on, and we can rebuild our economy in doing so,” said Menendez. “With eight outstanding individuals and organizations in the Garden State receiving this important award, it is clear that our state continues to be an environmental leader. We honor and thank them for their commitment to making a difference and having a lasting impact in the world we all share.” \n2010 New Jersey Environmental Quality Award WinnersEnvironmental EducationRutgers Cooperative Extension Water Resources ProgramStormwater Management in Your Backyard, New BrunswickStormwater Management in Your Backyard is a state-wide program that focuses on raingardens and rain barrels as a way to mitigate stormwater runoff. The program consists ofeducational workshops that show citizens how these simple ideas can be implemented athome. To date, 18 rain garden lectures and 13 rain barrel lectures have been presented, andapproximately 230 rain barrels have been distributed through these workshops.3\nThe Willow School, GladstoneStudents at the Willow School learn valuable lessons about environmental sustainability fromhands-on experiences, such as its garden and roof designed to collect rainwater. The NationalGeographic’s “Green Guide” ranked The Willow School as the nation’s second greenest schoolfor its progressive integration of sustainable design initiatives into the campus and thecurriculum, and it was the first educational institution in the country to design and build astructure that received U.S. Green Building Council’s Leadership in Energy and EnvironmentalDesign gold certification.\nIndividual CitizenDerrickson W. \"\"Dery\"\" Bennett (posthumous)American Littoral Society, HighlandsDery Bennett was an activist who worked to restore the New Jersey shore environment forover four decades. He was a longtime leader of the Sandy Hook-based American LittoralSociety, where he advocated for the coastal environment and helped restore the wetlands onthe east side of Cape May. He passed away last December at age 79, and will always beremembered for his dedication to the New Jersey shore.\nMary Lamielle, VoorheesMary Lamielle is the founder and president of the National Center for Environmental HealthStrategies, a non-profit that protects public health and improves the lives of people affected bychemical and environmental exposures. She initiated the award-winning New Jersey Study ofChemical Sensitivity, and influenced local adoption of a noise ordinance and an integrated pestmanagement resolution for buildings and parks.\nChristopher JageRancocas Conservancy, VincentownChristopher Jage has significantly increased Rancocas Conservancy’s land holdings throughhis ability to work with land owners and governmental agencies. He chaired the group’s landacquisition committee and assumed the treasurer’s responsibility at the same time, providing aperfect compliment. Through his efforts, the conservancy’s preservation of 300 acres hasgrown to over 1,700.\nNon-Profit Organization, Environmental or Community GroupSustainable Cherry HillAmong Sustainable Cherry Hill’s many accomplishments is helping the township adopt a 10-point Green Action Plan that guides it on incorporating renewable energy, improvingconservation efforts and recycling efforts. Since adopting the plan, the township has retrofittedthe municipal building with solar panels, and annually works with the community to plant trees.The group holds conferences and workshops to promote future sustainability efforts.4\nMichelle Doran McBeanFuture City, Inc., ElizabethLed by CEO Michelle Doran McBean, Future City, Inc. is a non-profit leader in educatingdiverse communities about sustainable development and environmental issues. Theorganization focuses on protecting the estuary, quality of life, environmental justice, and landconservancy issues in the Elizabeth area. It has dedicated its efforts to creating leadershipopportunities and educating students about the role they can play in preserving theenvironment in which they live.\nFederal, State, Local or Tribal Governmental AgencyNew Jersey Department of Environmental ProtectionClean Shores Program, TrentonClean Shores is a program under the New Jersey Department of Environmental Protection thatremoves debris such as wood, garbage, medical waste and recyclables from the tidal shorelines.Since it began in 1989, the program has successfully removed over 126 million pounds of floatabledebris and cleaned over 2,300 miles of New Jersey’s shoreline. The program also constructs dunefencing and plants dune grass along several oceanfront communities.\nFor more information about the Environmental Quality Awards in EPA Region 2, go to http://www.epa.gov/region02/eqa/.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9941544b-9878-4907-b1a0-413676d3ef6b,\"SENATOR MENENDEZ COMMENDS ARBITRON AND PPM COALITION SETTLEMENT OF OUTSTANDING DISPUTE ON RATINGS METHODOLOGY \n                    \n                            NJ Senator has been staunch advocate on behalf of ensuring that company’s rating methodology accurately reflects the populations of minority communities\n                    \n                      April 23, 2010\n                     WASHINGTON –Arbitron and the PPM Coalition have announced the settlement of outstanding disputes regarding the company’s usage of the Portable People Meter (PPM) ratings system under the guidance of the House Oversight and Government Reform Committee Chairman. \nThe PPM ratings system has drawn significant criticism because of the methodology’s tendency to under-represent the listenership of minority-owned and minority-focused radio stations.  The low ratings driven by a flawed PPM methodology lead to plummeting revenues that ultimately can force these stations out of business. As part of the agreement announced today, Arbitron, the PPM Coalition, and the Media Rating Council (MRC), will undertake a series of steps designed to enhance the recruitment and data collection methodology of Arbitron’s PPM ratings service. Senator Menendez, who has been a strong advocate on behalf of these stations and the communities they serve, called on Arbitron on various occasions last year to adopt appropriate standards to ensure the ratings measurement system provides the highest level of accuracy.  He issued the following statement:\n“I am pleased to see that after so much effort expended on the matter by so many, Arbitron and the PPM Coalition have agreed to a settlement that will allow all parties involved in this matter to move forward in a collaborative manner to ensure minority owned stations and minority focused stations are fairly represented in ratings. These stations are vital for the communities they serve, but the dramatic financial storm created by the combination of the economic downturn and the implementation of a flawed PPM ratings methodology forced many to the edge of bankruptcy.  I look forward to seeing the results of Arbitron’s efforts to improve its ratings methodology and to continue working with my colleagues in Congress and minority stakeholders to ensure fair standards for the PPM methodology are implemented in all markets nationwide. \n                                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fdaf8603-e7a2-4e7d-8e4f-7f6d5be9e0f8,\"SENATORS MENENDEZ, LAUTENBERG ANNOUNCE $1 MILLION TO HELP NEW JERSEY FAMILIES KEEP THEIR HOMES\n                    \n                            Funding will go toward providing counseling to families facing foreclosure \n                    \n                      April 23, 2010\n                     WASHINGTON – Today, U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ)  announced nearly $1 million in funding for two New Jersey organizations to provide counseling to families and individuals facing foreclosure.  The grants were awarded to the New Jersey Housing and Mortgage Finance Agency ($966,407) and Brand New Day, Inc. ($25,020). A total of $59.5 million were awarded to 35 state housing finance agencies (HFAs), 15 Housing and Urban Development-approved housing counseling intermediaries, and 81 community-based NeighborWorks organizations.  \n“Investing in foreclosure-prevention support and education is about helping New Jersey families stay in their homes and producing a broader economic recovery for everyone,” said Sen. Menendez. “Despite the progress we’ve made at rebuilding our economy, foreclosures were the root cause of the recession, and they continue to be a threat to our families. By helping families keep a roof over their heads, we can also keep property values up, which means entire neighborhoods will reap the economic benefits.”\n“Keeping New Jerseyans in their homes is a critical priority,” said Sen. Lautenberg. “These federal funds will provide guidance for homeowners struggling to make their next mortgage payment and relief to communities suffering from the effects of the foreclosure crisis.”\nThe need for these funds is critical at a time when foreclosures continue to mount and the challenges of unemployment and falling home values remain. \nAbout the National Foreclosure Mitigation Counseling Program\nThis $475-million program was launched in December of 2007 with funds appropriated by Congress to increase the availability of foreclosure counseling services across the country. The grants are offered to fund foreclosure counseling and provide legal assistance to homeowners at risk of foreclosure. They are also awarded to housing counseling intermediaries approved by the U.S. Department of Housing and Urban Development, qualifying state housing finance agencies (HFAs) and to NeighborWorks organizations.  NeighborWorks is a national nonprofit organization created by Congress to provide financial support, technical assistance, and training for community-based revitalization efforts. \nFor more information about the program, please visit: http://www.nw.org/\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f7857db8-a0bf-4dfb-9804-2746d18ce81d,\"Menendez, Co-Creator Of Energy Efficiency Program, Hails Announcement Of $452 Million To Cities, States on Eve Of Earth Day\n                    \n                            Menendez’s Energy Efficiency and Conservation Block Grants program was funded with $3.2 billion in the Recovery Act\n                    \n                      April 23, 2010\n                     WASHINGTON – Today, on the eve of Earth Day, U.S. Senator Robert Menendez (D-NJ) hailed the Obama administration’s announcement of the 25 recipients of $452 million in competitive grants through the Energy Efficiency and Conservation Block Grants (EECBG) program. Menendez created the program, along with Senator Bernie Sanders, through 2007 legislation. Cities and states across the country were selected to receive funding as part of the EECBG’s competitive grant program (list below), from which communities, governments, private sector companies and non-profit organizations will work together on pioneering programs to retrofit neighborhoods and towns – and eventually entire states.\n\n“Investments in making our communities more energy efficient help cut energy costs, protect the air we breathe and save local taxpayers money for years to come,” said Menendez. “This is the type of investment that rebuilds our communities for the 21st Century helps create jobs in the short term and greater economic security in the long term. I am proud to have created the program with Senator Sanders that made these opportunities available, and I am thrilled that these selected communities had the foresight to understand the importance of an energy-efficient community and to develop the plans that helped them win these awards.”\n\nMenendez and Sanders created the Efficiency and Conservation Block Grants (EECBG) program in the 2007 Energy Bill and fought to fund it in the Recovery Act. It provides municipalities and counties with the resources to support energy-saving initiatives and improve energy efficiency in transportation, buildings, and other sectors. In total, the Recovery Act provided $3.2 billion to communities across the country for energy efficiency and conservation activities. \nThe following governments and non-profit organizations have been selected for EECBG competitive grant program awards.  These projects are planned to begin in fall 2010.  Final award amounts are subject to negotiation:\nAustin, Texas - $10 millionBoulder County, Colorado - $25 millionCamden, New Jersey - $5 million Chicago Metropolitan Agency for Planning - $25 million  Greater Cincinnati Energy Alliance, Ohio - $17 million Greensboro, North Carolina - $5 million  Indianapolis, Indiana - $10 millionKansas City, Missouri - $20 millionLos Angeles County, California - $30 millionLowell, Massachusetts - $5 millionState of Maine - $30 millionState of Maryland - $20 millionState of Michigan - $30 millionState of Missouri - $5 millionOmaha, Nebraska - $10 millionState of New Hampshire - $10 millionNew York State Research and Development Authority - $40 millionPhiladelphia, Pennsylvania - $25 millionPhoenix, Arizona - $25 million Portland, Oregon - $20 millionSan Antonio, Texas - $10 millionSeattle, Washington - $20 millionSoutheast Energy Efficiency Alliance - $20 millionToledo-Lucas County Port Authority, Ohio - $15 millionWisconsin Energy Conservation Corporation  - $20 million \nFor more information on the selected projects, visit HERE.  A map of the selected projects is available HERE.\nRetrofit By the Numbers\n•    Residential and commercial buildings consume 40 percent of the energy and represent 40 percent of the carbon emissions in the United States.  Building efficiency represents one of the easiest, most immediate and most cost effective ways to reduce carbon emissions and save money on energy bills while creating new jobs:\n•    Existing techniques and technologies in energy efficiency retrofitting can reduce energy use by up to 40 percent per home and lower total associated greenhouse gas emissions by up to 160 million metric tons annually.  \n•    Residential and commercial retrofits also have the potential to cut energy bills by $40 billion annually.  \n\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8945cd1d-2aac-4d2d-94f6-d007f0b41620,\"ON EARTH DAY, SENS LAUTENBERG AND MENENDEZ ANNOUNCE $2.3 MILLION IN FEDERAL FUNDING TO CLEAN NEW JERSEY BROWNFIELDS\n                    \n                            Newark, New Jersey, Trenton and Camden to receive grants \n                    \n                      April 22, 2010\n                     WASHINGTON – U.S. Sens. Robert Menendez and Frank R. Lautenberg (D-NJ) today announced four New Jersey cities will be awarded $2.3 million in federal grants awarded by the Environmental Protection Agency (EPA) in an effort to clean and redevelop a number of abandoned and contaminated brownfields sites.\n“For years, our cities have suffered with contaminated sites in dire need of cleanup,” said Sen. Lautenberg, Chairman of the Senate Subcommittee on Superfund, Toxics and Environmental Health. “This federal funding will go a long way toward turning brownfields into clean fields and revitalizing New Jersey’s urban centers.”\n\"\"This type of investment means healthier families, and it means rebuilding our communities to spur economic growth,” stated Sen. Menendez.  “It will help put some of our state's biggest and most vibrant communities on solid footing to prosper in the 21st Century.\"\"•    Newark was awarded $600,000 to assist with cleaning portions of the former Pittsburgh Plate Glass Company and Synfax Manufacturing sites.  For more information, click here. •    Jersey City was awarded $600,000 to help with remediation efforts at three locations in the Berry Lane Park site.  For more information, click here.•    Trenton was awarded $500,000 to use toward efforts to remediate a former gas station on North Clinton Avenue and two other properties.  For more information, click here.•    Camden was awarded $600,000 to help with the clean-up effort at three properties on Penn, North Second and North Front streets.  For more information, click here. More information on the Fiscal Year 2010 grant recipients and the brownfields program can be found at www.epa.gov/brownfields/.                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bb3dd002-5b7d-48e2-87e0-2442090c1f36,\"MENENDEZ AND LAUTENBERG: LATEST OIL RIG DISASTER IS A SOBERING REMINDER OF THE DANGERS OF COASTAL DRILLING\n                    \n                            Senators call on President, Congress to Reconsider Coastline Drilling Plans. Rig explosion off the coast of Louisiana is the latest of 509 oil rig fires in Gulf of Mexico since 2006\n                    \n                      April 22, 2010\n                     WASHINGTON – A massive oil rig explosion along the coast of Louisiana has left 11 workers missing and sent the Coast Guard scrambling to contain any potential environmental impact. It is reported that the rig has now sunk and is leaking 8,000 barrels – or 336,000 gallons – of oil per day. This comes shortly after the Obama administration announced plans to expand drilling along the U.S.’s East Coast and as senators work on a climate change bill that could include expanded drilling as well. It is the 509th known fire aboard Gulf of Mexico oil rigs since 2006: http://www.chron.com/disp/story.mpl/business/energy/6969813.html U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) today said that this disaster underscores the need to abandon the rush to expand coastline drilling. They released the following joint statement: “Our thoughts and prayers are with the oil rig workers and their families.  We all remain united in hope that the missing will be found and that everyone will fully recover from their injuries. “Big Oil has perpetuated a dangerous myth that coastline oil drilling is a completely safe endeavor, but accidents like this are a sober reminder just how far that is from the truth. The fact is that 509 oil rig fires have broken out in the Gulf of Mexico since 2006. This particular disaster is leaking 336,000 gallons of oil a day along the coast of Louisiana, and the Coast Guard cannot protect the coastline until the fire is out. The bottom line is that when you drill for oil, there is always a risk that not only puts lives on the line, but a risk that puts miles of coastline and the economy on the line as well. “In our state, the Jersey Shore is far too important to our economy and our way of life to put at risk just to pad oil company profits. These mega-wealthy corporations already have more coastline area under their control than they know what to do with, and expanded coastline drilling is estimated to have zero effect on the price at the pump. This latest incident should give the administration and our fellow Members of Congress pause in their effort to expand oil drilling along the East Coast. We plan to oppose any climate or energy legislation before the U.S. Senate that does not include significant safeguards for the Jersey Shore.” Menendez is a member of the Energy and Natural Resources committee who last year voted against the committee’s energy bill in part because of its expanded drilling provisions. Lautenberg is a member of the Environment and Public Works Committee and a long time opponent of coastal drilling. # # # – A massive oil rig explosion along the coast of Louisiana has left 11 workers missing and sent the Coast Guard scrambling to contain any potential environmental impact. It is reported that the rig has now sunk and is leaking 8,000 barrels – or 336,000 gallons – of oil per day. This comes shortly after the Obama administration announced plans to expand drilling along the U.S.’s East Coast and as senators work on a climate change bill that could include expanded drilling as well. It is the 509th known fire aboard Gulf of Mexico oil rigs since 2006: http://www.chron.com/disp/story.mpl/business/energy/6969813.html U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) today said that this disaster underscores the need to abandon the rush to expand coastline drilling. They released the following joint statement: “Our thoughts and prayers are with the oil rig workers and their families.  We all remain united in hope that the missing will be found and that everyone will fully recover from their injuries. “Big Oil has perpetuated a dangerous myth that coastline oil drilling is a completely safe endeavor, but accidents like this are a sober reminder just how far that is from the truth. The fact is that 509 oil rig fires have broken out in the Gulf of Mexico since 2006. This particular disaster is leaking 336,000 gallons of oil a day along the coast of Louisiana, and the Coast Guard cannot protect the coastline until the fire is out. The bottom line is that when you drill for oil, there is always a risk that not only puts lives on the line, but a risk that puts miles of coastline and the economy on the line as well. “In our state, the Jersey Shore is far too important to our economy and our way of life to put at risk just to pad oil company profits. These mega-wealthy corporations already have more coastline area under their control than they know what to do with, and expanded coastline drilling is estimated to have zero effect on the price at the pump. This latest incident should give the administration and our fellow Members of Congress pause in their effort to expand oil drilling along the East Coast. We plan to oppose any climate or energy legislation before the U.S. Senate that does not include significant safeguards for the Jersey Shore.” Menendez is a member of the Energy and Natural Resources committee who last year voted against the committee’s energy bill in part because of its expanded drilling provisions. Lautenberg is a member of the Environment and Public Works Committee and a long time opponent of coastal drilling.                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0b416e33-3f89-4535-9e2e-57b35e57f0f3,\"MENENDEZ, LAUTENBERG ANNOUNCE $2 MILLION IN FEDERAL FUNDING FOR COMMUNITY DEVELOPMENT AND HOUSING ASSISTANCE IN ATLANTIC CITY\n                    \n                      April 21, 2010\n                     WASHINGTON  – U.S. Senators Robert Menendez and Frank R. Lautenberg (D-NJ) today announced Atlantic City received a combined $2 million in Community Development Block Grant (CDBG) and HOME program funding through the U.S. Department of Housing and Urban Development (HUD).\n“This federal funding will enhance neighborhoods and improve affordable housing options for Atlantic City families,” said Sen. Lautenberg. “Investing in local development initiatives strengthens communities and lifts the public spirit.”\n“This is the type of investment that will help families stay afloat during these tough times and help rebuild our communities for the 21st Century economy,” said Menendez. “By creating affordable housing for working families, supporting small business owners and community development, we can help create jobs and long-term economic security for local families.”\nThe CDBG and HOME programs provide funding to states and municipalities to develop decent and affordable housing, enhance infrastructure and develop economic opportunities primarily in communities with large populations of low- and moderate-income families. HUD is the nation’s housing agency and is committed to sustaining community development, access to affordable housing and homeownership.                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ef4052e3-f404-4587-958e-aeab9a2c3f1f,\"Senators Menendez and Lautenberg Announce $1.3 Million for New Jersey Fire Departments and Emergency Medical Services\n                    \n                      April 20, 2010\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced a federal investment of $1.3 million for New Jersey fire departments and emergency medical services via FY2009 Department of Homeland Security competitive grants.  Awarded by the Federal Emergency Management Agency (FEMA), the Assistance to Firefighters Grants Program (AFG) will be used to strengthen fire departments and emergency medical services organizations’ capacity to respond to and protect the public from fire related emergencies and hazards. \n\n“There is nothing more important than the safety of our neighborhoods and our families,” said Senator Menendez. “It is vital that our firefighters and emergency medical services providers have the necessary resources to do their job as effectively as possible in the event of a an emergency. It is our responsibility to ensure these brave men and women have the resources they need to best protect our families.” \n\"\"This federal investment in New Jersey’s first responders will help protect the safety and security of communities across the state,\"\" Senator Lautenberg said.  \"\"To ensure our firefighters are ready to roll at the sound of the alarm, they need to be properly trained and equipped.  This latest round of federal firefighter grant funding will continue to help New Jersey's firefighters keep our families safe.\"\"\n\nThe $1,328,343 in funding will be distributed as follows: Cherry Hill, NJ•       $85,080 awarded to Cherry Hill Fire Department\nKearny, NJ•       $2,606 awarded to the Kearny Fire Department\nToms River, NJ•       $125,000 awarded to the Toms River Board of Fire Commissioners District #2\nHopatcong, NJ•       $118,750 awarded to the Hopatcong Ambulance Squad Inc.\nAsbury, NJ•       $16,150 awarded to the Pattenburg Volunteer Fire Company\nMoorestown, NJ•       $169,575 awarded to the Moorestown Fire District No.1\nWrightstown, NJ•       $60,051 awarded to the Jacobstown Volunteer Fire Company\nClayton, NJ•       $91,913 awarded to the Clayton Volunteer Fire Department #1\nWeehawken, NJ•       $22,205 awarded to the Weehawken Volunteer First Aid Squad\nMadison, NJ•       $38,000 awarded to the Madison Volunteer Ambulance Corps\nNorth Plainfield, NJ•       $112,500 awarded to the North Plainfield Rescue Squad\nRiverdale, NJ•       $55, 676 awarded to the Riverdale Volunteer Fire Department\nHackettstown, NJ•       $261, 250 awarded to the Hackettstown Fire Department\nGibbsboro, NJ•       $44,065 awarded to the Gibbsboro Fire Company #1\nMt Ephraim, NJ•       $53,153 awarded to the Mt. Ephraim Fire Department\nPrinceton Junction, NJ•       $13,662 awarded to the Princeton Junction Volunteer Fire Company #1\nWest Paterson, NJ•       $58,707 awarded to the West Paterson Fire Department\nAbout the Assistance to Firefighters Grants Program (AFG):\nThe AFG grants awards to fire departments and EMS organizations unaffiliated with a hospital to improve their capacity to protect the health and safety of the public, as well as that of first-responder personnel in fire related emergencies. During FY2009, AFG will award approximately a total of $565 million in competitive grants to fire departments and EMS organizations whose activities best match the priorities of the AFG program. The application period for FY2009 process was from April 15, 2009 to May 20, 2009.\nFor more information about the program, please visit: http://www.firegrantsupport.com/ \n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f9e3cd59-c776-4174-8477-fbad0d4568ef,\"MENENDEZ MOURNS LOSS OF CIVIL RIGHTS LEADER DOROTHY HEIGHT\n                    \n                      April 20, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today released the following statement on the loss of Dorothy Height, the civil rights leader and longtime president of the National Council of Negro Women:\n“The life’s work of Dorothy Height showed us how a single principled and courageous woman can help change a nation and touch millions of lives. Ms. Height’s leadership paved the way for an African American to reside in the White House, a Latino son of immigrants to represent New Jersey in the U.S. Senate and, certainly, for brilliant Jewish and Latina women to preside in the U.S. Supreme Court. Most importantly, she improved the daily lives of millions of Americans, helping to bring our nation out from the shadow of segregation, to a place where we are closer to true racial and ethnic equality. My thoughts and prayers are with her family and loved ones as our nation mourns her passing.”\n                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=233fdfda-b12e-41a8-ad24-cc2cfedef7b7,\"MENENDEZ PRESSES ADMINISTRATION FOR PROMISED INVESTIGATION INTO OIL DRILLING AND SPILLING CORPORTATION\n                    \n                            NJ Senator has been promised Dept. of Interior examination into SeaDrill oil spill record as company expands U.S. operations\n                    \n                      April 20, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee, today pressed the Obama administration to carry out a promised investigation into the oil production activities of SeaDrill Limited. A drill built by the Norway-based corporation caused one of the worst oil spills in Australian history last year, and it is planning to expand its presence in U.S waters with its planned acquisition of a Texas-based drilling company called Scorpion Offshore Limited (article on planned SeaDrill expansion: http://www.marketwatch.com/story/seadrill-eyes-fresh-deals-after-nyse-listing-2010-04-15?reflink=MW_news_stmp). \nMenendez first called for a Department of the Interior investigation into SeaDrill last November (PDF of letter: http://menendez.senate.gov/imo/media/doc/20091118ltr_OilRigs.pdf) and received a written response in January promising it would be done promptly (PDF of letter: http://menendez.senate.gov/imo/media/doc/20100107ltr_MMSresponse.pdf). He also received verbal assurances from Interior Secretary Salazar at a March hearing. However, Interior has yet to provide any further information.\n“As the Obama Administration plans to expand oil and gas development along the East Coast and in the Gulf (a position I oppose), I am further concerned about the safety standards of this company and any others operating in our waters,” wrote Menendez. “Our beaches are a tremendous resource and an essential economic engine…. Despite protestations from the industry, oil spills from offshore oil exploration and production happen all too often…. It is imperative that we fully understand the extent of SeaDrill’s operations here in the United States and ensure they are operating as safely as possible.”\nPDF of letter to D.O.I.: http://menendez.senate.gov/imo/media/doc/20100420ltr_SeaDrill2.pdf\nText of letter:\nApril 20, 2010\nThe Honorable Ken SalazarSecretaryDepartment of the Interior1849 C Street, NWWashington, DC 20240\nDear Secretary Salazar:\nLast November I wrote you requesting that a full investigation be conducted into the domestic offshore energy production activities of the Norwegian-based multinational drilling company called SeaDrill Limited (“SeaDrill”).  I made this inquiry in the wake of one of the worst oil spills in Australian history, a disaster caused by a SeaDrill drilling rig in the East Timor Sea.  In January of this year I received a letter from your agency stating that such an investigation would be undertaken promptly, and was personally assured by you later in a March 3rd hearing of the Senate Energy and Natural Resources Committee that the results of my inquiry would be answered soon.  I appreciate your responses, but to date, I have received no new information.\nThis issue has become increasingly crucial in light of news from SeaDrill that the company plans to expand its drilling operation in U.S. waters by acquiring a new Texas-based drilling company, Scorpion Offshore Ltd (“Scorpion”).  It appears that SeaDrill has continued to grow and expand its drilling activities without the thorough investigation that I requested, and was assured would be completed.  As the Obama Administration plans to expand oil and gas development along the East Coast and in the Gulf (a position I oppose), I am further concerned about the safety standards of this company and any others operating in our waters.\nOur beaches are a tremendous resource and an essential economic engine.  They are the centerpiece of tourism and fishing industries that are responsible for hundreds of thousands of jobs and tens of billions of dollars of revenue each year.  Our shoreline is also an environmental treasure that serves as a natural habitat for wildlife and deserves to be protected in its own right.\nDespite protestations from the industry, oil spills from offshore oil exploration and production happen all too often.  As recently as April 6, an oil spill occurred 10 miles off the coast of Louisiana that released 18,000 gallons of oil into a nearby wildlife refuge.  Incidents like this, and the disaster in Australia, are all too common and create the potential of incalculable damage to our coastal communities. \nIt is imperative that we fully understand the extent of SeaDrill’s operations here in the United States and ensure they are operating as safely as possible.  That is why I respectfully request a briefing on the details of your office’s investigation into this firm and their compliance with American safety standards.  I remain committed to taking all steps necessary to ensure that another incident does not threaten our waters, and would like to set up a meeting with you or between our staffs this month to discuss the findings of your review.\nSincerely,\nROBERT MENENDEZUnited States Senator\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cdc73d89-ea71-4084-9090-075e7a886224,\"Menendez, State Officials Tout Proposed Federal Fund With More Than $600 Million To Keep NJ Teachers In The Classroom\n                    \n                            Legislation would create fund to shore up education jobs that could be in jeopardy due to tough economic times \n                    \n                      April 19, 2010\n                     South Hackensack, NJ – Today, U.S. Senator Robert Menendez and New Jersey educators discussed legislation that would help ensure that thousands of teachers can remain in the classroom.  The “Keep Our Educators Working Act” would create a $23 billion Education Jobs Fund to prevent teacher and education job losses – the fund would include more than $600 million for New Jersey teachers. The press conference was held at Memorial Elementary School in South Hackensack, a school that will see a significant reduction in its budget for the next school year. Senator Menendez was joined by South Hackensack Mayor James Anzevino and Dr. William DeFabiis, Memorial Elementary's Chief School Administrator. \n\n“Although Recovery Act funding and other financial assistance for schools have softened the blow of the recent recession, our children's teachers are still in jeopardy,” said Senator Menendez.  “An education jobs fund would provide federal investments to retain local teachers and employees who help prepare our children with a quality education.  Principals, teachers, librarians, and school personnel are important components of a child's development, and layoffs would only hurt our children's immediate future and the long-term future of our state.  This bill takes a proactive approach to ensuring that our education system remains stable in the whirlwind created by millions of foreclosures that made parents relocate, and crippled family budgets due to unemployment.”\n\nThe “Keep Our Educators Working Act”, introduced by Senator Tom Harkin (D-IA) and co-sponsored by Senator Menendez, would bring $627,820,000 to New Jersey schools and $1,430,388,000 to New York for compensation, benefits, and other expenses necessary to retain existing employees, for the hiring of new employees to provide early childhood, elementary, secondary, or postsecondary educational and related services.  It would also provide for on-the-job training activities for education-related careers.\nSenator Menendez is a strong supporter of programs to guarantee a quality public education for all children. Recently Senator Menendez was recognized by Rutgers University students for supporting student loan reform legislation signed by the President, which will establish a Direct Loan program that will make college more affordable.  That law also eliminates huge subsidies for big banks and private lenders and allowing for the reinvestment of those savings into education programs. It provides a boost in the maximum available Pell Grants by investing $36 billion over 10 years in the program. Students will have increased access to higher education making the nation more economically competitive.\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=da2d2e90-a665-4b72-8367-de1c972fd01e,\"MENENDEZ, LAUTENBERG: RECOVERY ACT CREATES NEW VETERANS AFFAIRS JOBS IN NEWARK REGIONAL OFFICE  \n                    \n                            NEW STAFF WILL EXPEDITE BENEFITS CLAIMS FOR NEW JERSEY VETS\n                    \n                      April 19, 2010\n                     NEWARK – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Newark Veterans Affairs regional office will hire 24 new employees with federal funding from the American Recovery and Reinvestment Act (ARRA). The new hires will enhance services for New Jersey’s veterans by expediting the processing of veterans’ claims for VA benefits.  \n“This funding will help ensure that New Jersey’s brave veterans get better service and faster access to the benefits they earned,” stated Lautenberg, an Army veteran.  “With so many new veterans returning home from Iraq and Afghanistan, it is critical that VA regional offices be adequately staffed and prepared to work for the men and women who have served and sacrificed for our country.”      \n“Thousands of brave men and women who serve our nation on the battlefield are returning from Iraq and Afghanistan to tough economic times here at home,” said Menendez. “As a grateful nation, we have to ensure there is an adequate support structure for them in their return to civilian life, as this important Recovery Act investment will help to do.”\nAs a member of the Senate Appropriations Committee, Lautenberg helped write ARRA, which was signed into law by President Obama in February 2009.  The legislation has provided $150 million for this program to hire and train new VA staffers across the country.\nThe facility is located at 20 Washington Place in Newark. More information about VA benefits is available here: www.va.gov or veterans may contact one of VA’s Call Center representatives at 1-800-827-1000. \n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=58413b18-7217-4c09-ab13-0ec744b1cf15,\"SENATORS MENENDEZ, REID HOST HISPANIC TASK FORCE MEETING WITH HISPANIC LEADERS FROM ACROSS THE COUNTRY\n                    \n                            At meeting, they discussed economic challenges facing Hispanic communities nationwide\n                    \n                      April 16, 2010\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), Chairman of the Hispanic Task Force, and Senate Majority Leader Harry Reid (D-NV) hosted a Hispanic Task Force meeting yesterday with Latino state and local elected official from across the country. They discussed the economic challenges Latino communities throughout the country are facing. Senate Assistant Majority Leader Dick Durbin (D-IL), Senator Frank Lautenberg (D-NJ), Senator Jack Reed (D-RI), Senator Sheldon Whitehouse (D-RI), Senator Michael Bennett (D-CO), and Senator Benjamin Cardin (D-MD) also participated in the meeting. This forum served as an opportunity for leaders at the national and state levels to express their concerns and ideas to ensure ongoing job creation and economic recovery efforts that can successfully provide relief to Latino communities across the nation. \n\"\"This was a great opportunity to hear first-hand from Hispanic leaders from across the country. They spoke with powerful voices about the economic realities of Latinos in their home state and the tough challenges their communities face”, said the Chairman of the Task Force, Senator Menendez. “All of us recognize that the economic challenges that all people who work for a living are facing disproportionately affect the Hispanic community. We discussed the need for strong policies to help support job creation, education and small businesses in order to rebuild our communities for the 21st Century economy. Senate Democrats plan to continue working together with Hispanic leaders at the federal, state and local levels to meet these challenges.\"\"\n“We have been working hard to bring the country back from the brink of financial disaster, and one of the communities that has most been impacted by the downward spiral is the Hispanic community. I thank the Latino local and state leaders who came to bring us an assessment of the current economic difficulties Latinos face across the country, so that we can properly address these issues in Congress through targeted legislation,” said Senate Majority Leader Harry Reid. “I look forward to continue receiving input from the community through the Hispanic Task Force meetings so we better meet the needs and address the concerns of our Latino populations throughout the country.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=97ef8ca9-81b5-4e24-8496-0e54c9c003ce,\"LAST DAY TO MAIL CENSUS FORM: SENATOR MENENDEZ EXHORTS PEOPLE IN NEW JERSEY TO COMPLETE AND SEND BACK THEIR FORM TO ENSURE OUR COMMUNITIES RECEIVE FAIR SHARE OF RESOURCES\n                    \n                            Households that send their forms after today will be visited by Census Bureau’s workers who will be collecting data door to door beginning May 1\n                    \n                      April 16, 2010\n                     WASHINGTON – On the last day to send in Census forms, US Senator Robert Menendez (D-NJ) is making a call everyone to mail back their questionnaire if they have not already done so. Beginning May 1st, Census officers will begin visiting households to collect forms that have not been sent in.\n“It takes less than 10 minutes to complete the Census questionnaire, which perhaps is the most important step to determining future funding of our communities for the next ten years. Everyone across America and in my great State of New Jersey who cares about their schools, hospitals and the roads they drive on should stand up and be counted. Let us all, individually and as members of the communities we share with others, choose to be present.” \nFor more information about the 2010 Census, please visit: http://www.2010census.gov/\n                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8d0bbd76-ca02-4d10-9027-b4af1d46f2e2,\"MENENDEZ OBSERVES YOM HASHOAH, CONDEMNS REPORTED WORLDWIDE RISE IN ANTI-SEMITISM\n                    \n                      April 16, 2010\n                     WASHINGTON – This week, U.S. Senator Robert Menendez (D-NJ) is observing Yom Hashoah, the annual remembrance of the Holocaust. In honoring the memory of those murdered in one of history’s darkest periods, celebrating survivors and their liberators, heeding the lessons the world has learned from that horrific tragedy, Menendez also warned that evidence of a recent worldwide rise in anti-Semitism must be addressed before it spreads further.\n“This week, we remember one of history’s darkest hours,” said Menendez. “By observing this solemn occasion, we honor the six million Jews and countless others who were brutally murdered not because of what they did, but because of who they were. We also celebrate the lives of those who survived and remind ourselves that we can never allow atrocities to befall our fellow human beings by sitting silent. Genocide is the vilest of evils, and wherever we see it, we must do everything we can to stop it.  \n“We also cannot sit silent when we see evidence of ethnic or racial intolerance, which is not only hurtful, but also creates the kind of toxic atmosphere in which hate crimes can occur. Specific to my friends in the Jewish community, I am unsettled by reports of increasing international instances of anti-Semitism. These actions must be condemned as soon as they happen. Let us all envision a world in which the lessons of atrocities like the Holocaust are fully heeded – a world in which universal respect for our fellow human beings brings universal tolerance and peace.”\nMenendez is a member of the Foreign Relations Committee. He is a leading advocate of a strong U.S.-Israel alliance and a leader in legislation to prevent hate crimes. He has also taken a prominent role in pressing U.S. engagement in helping to end the genocide in Darfur and to secure an official U.S. acknowledgement of the Armenian genocide of the early 20th Century.\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0fb8965b-2f8a-4b77-9609-f6a606089ae7,\"NO MORE BAGGAGE FEE BLINDSIDING:  MENENDEZ URGES F.A.A. BILL LEADERS TO RETAIN “CLEAR AIRFARES” PROVISIONS\n                    \n                             Schumer, Wyden, Landrieu and Webb join letter in effort to give consumers a clear and upfront breakdown of airfare and potential additional airline fees\n                    \n                      April 16, 2010\n                     WASHINGTON – Today, the author of the Clear Airfares Act and four of his Senate colleagues sent a letter to the leaders of the Congressional committees with jurisdiction over the Federal Aviation Administration reauthorization bill conference negotiations, urging them to retain the Clear Airfares provisions from the Senate passed-bill. U.S. Senator Robert Menendez (D-NJ) introduced the legislation to bring transparency to the price of flying through a full, clear and upfront breakdown of airfares and potential fees, including baggage fees. He was able to get a slightly-modified version of his bill accepted in the Senate FAA bill as an amendment that was co-sponsored by the additional signers of the letter: Senators Charles Schumer (D-NY), Ron Wyden (D-OR), Mary Landrieu (D-LA) and Jim Webb (D-VA).\n“The practice of ‘unbundling’ fees for airline travel is making it exceedingly difficult for consumers to know in advance what they will pay for air travel or how to compare ticket prices,” wrote the senators. “One airline’s recent announcement of its intention to charge $45 each way per carry-on bag is just the latest example of airlines imposing fees of differing amounts for different services.  Consumers often discover these extra fees—which can add up to a significant proportion of the total cost of air travel—late in the purchase process or even at the airport or on the plane after they’ve purchased their ticket…. At a time when family budgets are tight, we believe it is critical to ensure that consumers have the necessary information to make the best possible purchasing decisions.  We hope you agree and will support these provisions in the final version of the legislation.”\nThe Menendez Clear Airfares provision would require that, before a consumer purchases a ticket on the Internet, airlines and third-party websites display a complete and understandable breakdown of his or her particular airfare, as well as any other possible fees that might be incurred on the flight (such as baggage, seat assignments, etc.).\nPDF of letter to FAA bill conferees: http://menendez.senate.gov/imo/media/doc/20100416ltr_ClearAirfares1.pdf\nText of letter:\nApril 16, 2010                                                                                      The Honorable John D. Rockefeller                                  The Honorable James L. OberstarChairman                                                                           Chairman   Senate Committee on Commerce, Science, &                   House Committee on Transportation and Transportation                                                                                          Infrastructure        508 Dirksen Senate Office Building                                  2165 Rayburn House Office Building       Washington, DC 20510                                                     Washington, DC 20515\nThe Honorable Kay Bailey Hutchison                              The Honorable John L. MicaRanking Member                                                               Ranking MemberSenate Committee on Commerce, Science, &                   House Committee on Transportation and Transportation                                                                                          Infrastructure508 Dirksen Senate Office Building                                  2165 Rayburn House Office BuildingWashington, DC 20510                                                     Washington, DC 20515\nDear Chairmen Rockefeller, Hutchison, Oberstar, and Mica:\nAs you begin deliberations on the final version of the FAA Reauthorization bill, we respectfully request your support for the inclusion of the Menendez Amendment promoting disclosure and transparency in airline fees.  By unanimous consent, the Senate included in its version of the bill these provisions requiring airlines to clearly display all fees and surcharges associated with a given ticket, and we urge you to preserve them in the final version of the legislation.  \nThe practice of “unbundling” fees for airline travel is making it exceedingly difficult for consumers to know in advance what they will pay for air travel or how to compare ticket prices.  One airline’s recent announcement of its intention to charge $45 each way per carry-on bag is just the latest example of airlines imposing fees of differing amounts for different services.  Consumers often discover these extra fees—which can add up to a significant proportion of the total cost of air travel—late in the purchase process or even at the airport or on the plane after they’ve purchased their ticket.  Comparing ticket prices based on airfare alone thus gives consumers a misleading impression of what they may ultimately pay for air travel, leaving budget-minded consumers susceptible to purchasing the more expensive of two airline tickets.  \nOne way to rectify this problem is to introduce more transparency in airline ticket pricing.  We were proud to support the Menendez Amendment in the Senate bill to require airline websites and third-party travel websites to clearly display all fees and surcharges associated with a given ticket, before a consumer is required to provide personal information such as a name, address, and credit card information.  Providing consumers with fee information early in the purchase process will facilitate apples-to-apples price comparisons between airline tickets.  \nAt a time when family budgets are tight, we believe it is critical to ensure that consumers have the necessary information to make the best possible purchasing decisions.  We hope you agree and will support these provisions in the final version of the legislation.  In addition, we have communicated to the Senate Commerce Committee helpful technical changes to the Menendez Amendment that we have received from the Department of Transportation and travel agent industry groups, which we hope you will include.  Thank you for considering this request.  \n                                                            Sincerely,\n                                                                                                            ____________________                                               ____________________     ROBERT MENENDEZ                                               CHARLES SCHUMERUnited States Senator                                                     United States Senator\n  ____________________                                               ____________________RON WYDEN                                                              MARY LANDRIEUUnited States Senator                                                     United States Senator\n____________________JIM WEBBUnited States Senator\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=853d9844-0762-4585-a45b-052ba0ef13bd,\"MENENDEZ INTRODUCES BILL TO SPUR HOUSING SECTOR AND CREATE MORE LIVABLE COMMUNTITIES \n                    \n                            Green Building Tax Credit would help create jobs, lower energy costs and protect clean air\n                    \n                      April 16, 2010\n                     WASHINGTON – In order to create jobs, spur construction and protect clean air, U.S. Senator Robert Menendez (D-NJ), a member of the Finance Committee, today introduced legislation to provide tax incentives for the construction of green buildings. The Green Building Tax Credit would offer a refundable 30 percent tax credit for the construction of buildings that are energy-efficient and are location-efficient by being situated in an area conducive to walking and public transportation. The legislation is supported by the non-profit Reconnecting America.\n“Part of rebuilding America for the 21st Century is helping people save money on energy and cleaning the air we breathe,” said Menendez. “By providing tax incentives for the construction of green buildings, we can create jobs through construction while also increasing energy-efficiency and create healthier communities.” \n\"\"In communities large and small, urban and rural, Americans are seeking housing options in walkable, transit-served communities where they can own fewer automobiles, drive fewer miles, and reduce their energy use,” said John Robert Smith, President and CEO of Reconnecting America “The legislation introduced today by Senator Menendez will help to meet this growing demand by households of all income levels for living a lower-carbon lifestyle. I support the bill's provisions to ensure that low-income households and those who live in smaller towns can also realize the benefits of living in energy-efficient communities near public transportation.\"\" \nBackground on legislation:\nProjects meeting the following criteria would qualify:•    Green:  projects that are majority residential, must be 25% more energy efficient than the ASHRAE energy code from 2001 (this is similar to a Silver LEED standard); projects that are majority commercial, must be 50% more energy efficient than the 2001 standard.•    Transit-oriented:  within ½ mile of public transportation, such as a train station, ferry or bus rapid transit.  •    For Rural States, projects would need to be near town centers on previously developed land.•    Mixed-income:  at least 5% of any apartments must be affordable to households at or below 60% of the area median income.•    High Density:  floor-area-ratio of at least 3.0 net of streets and public spaces.•    Large projects:  greater than 150,000 square feet in size.o    For Rural states, projects greater than 50,000 square feet in size would qualify•    Construction start:  within 36 months; but to secure a tax credit reservation projects must be ready to proceed.\nEconomic Stimulus:The GBTC will create jobs now and foster the green construction industry:  •    Projects developed under the GBTC program are expected to create approximately 255,000 jobs including 120,000 good paying construction jobs, paying construction workers over $7 billion.   •    The tax credit can’t be claimed until the projects are completed, so there will be no cost to the Treasury this year.   \nPrecedents:The proposed GBTC would be structured similarly to the federal Historic Tax Credit program and the Low Income Housing Tax Credit program. The federal Historic Tax Credit program is a 20% tax credit that is earned the year the building is completed and placed in service.  The Low Income Housing Tax Credit program typically funds over 50% of development costs and is earned over 10 years starting the year the building is completed and placed in service. The GBTC proposal is comparable to these programs: a 30% tax credit that is earned the year the project is completed and placed in service.  \n                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=821b717b-9c17-4b24-8dd4-5399fb19df60,\"MENENDEZ PROPOSES PROTECTION FOR TAXPAYERS AGAINST SUBSIDIZING BIG BUSINESSES IN U.S. TERRITORIES\n                    \n                            New legislation aims to ensure funds collected from rum tax are used for reinvesting in the territories than paying off corporations\n                    \n                      April 15, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today introduced legislation to ensure that more taxpayer money for the U.S. territories is used to reinvest in the territories instead of subsidizing big businesses. The Reinvesting in U.S. Territories, Not Foreign Corporations Act would cap at 10 percent the amount of money garnered from the rum tax that territories would be able to use to subsidize private liquor producers. Recently, the U.S. Virgin Islands agreed to shift up to $2.7 billion dollars of taxpayer money from the rum tax to British multi-national liquor conglomerate Diageo. The taxpayer money from the rum tax is typically used by the territories to rebuild roads and bridges, hire teachers and improve schools and to help guarantee health care services for the working class.\n“We need to assure U.S. taxpayers that the vast majority of taxpayer dollars going to the territories under this program are being used to rebuild schools, roads and hospitals and protecting the environment, instead of being passed off to multi-national corporations,” said Menendez. “This is about ensuring that taxpayer money is reinvested in the working people of the territories, not foreign corporations.”\n            Background\nUnder current law, most of the revenue generated from the federal excise tax on rum sold in the U.S. is given—“covered over”—to the treasuries of Puerto Rico and the U.S. Virgin Islands.  The purpose of the cover-over program is to provide budgetary support to the territories for essential public infrastructure and services.\nThe deal that the United States Virgin Islands (USVI) brokered with Diageo, through certain guarantees and tax breaks, shifts between 40 and 50 percent of cover-over revenues, totaling $2.7 billion over 30 years, from the treasuries of the territories to Diageo. While decisions by companies to move operations to and from jurisdictions happen routinely as the order of regular business, the immense size of the subsidies given over to Diageo as a prerequisite for this deal illustrates a tremendous loophole in the cover over program.\nThis bill would protect the integrity and effectiveness of the rum cover over program by placing a reasonable cap of 10 percent on the amount of money the territories could use to subsidize private liquor producers. The bill doesn’t play favorites or pick winners or losers; it simply requires the territories to use more than 90 percent of the taxpayer dollars they receive through the cover over program for the welfare of the people and general economic development efforts.  \n•    If a territory exceeds 10 percent, their cover over revenue in the next tax year would be reduced by the amount that they exceed the cap.  \n•    If the subsidies are so great that they exceed the entire cover-over payments in a year, then the rest of the subsidy will be carried forward to offset future cover-over payments. \n•    In addition, this bill gives the Secretary of the Treasury authority to require documentation of the uses of cover over revenues to ensure transparency in the program.  \nUnless action is taken, excessive subsidies paid out of cover over revenues could siphon off billions of dollars that would otherwise go to funding for vital public services.  This is a tremendous opportunity cost for the territories as this is money that is currently going to such services as building roads and infrastructure, hiring teachers and improving schools, and providing funding for Medicaid.  \nThe Diageo deal sets a precedent for the territories and long-term could be devastating to both territories.  The precedent has clearly been set; without action, the substantial financing of the rum industry by American taxpayer dollars will become the standard, not the exception.   \nThis deal does not create a net increase in jobs or economic activity in the territories; the only real change is that the USVI is basically paying $3 billion dollars to Diageo to shift American taxpayer dollars from one territory to the other.  By placing reasonable limits on the amount of cover over revenues the territories can use for subsidies of liquor companies, Congress can ensure that taxpayer dollars are being used for their intended purpose: real economic development that benefits the people of the territories.  \n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bed17675-968a-4786-bfc8-9d4e867fcd70,\"MENENDEZ, LAUTENBERG ANNOUNCE $23 MILLION IN RECOVERY ACT FUNDS TO SUPPORT HEALTH IT ROLLOUT\n                    \n                            New Jersey institute of technology in Newark receives Department of Health and Human Services Grant Award \n                    \n                      April 15, 2010\n                     WASHINGTON – U.S. Senators Robert Menendez (D - NJ) and Frank R. Lautenberg (D-NJ) today announced that the New Jersey Institute of Technology has been awarded $23,048,351 in federal funding from the American Recovery and Reinvestment Act (ARRA) to establish a Health Information Technology Regional Extension Center (REC).  The Center will advance the use of electronic health records by offering technical support and guidance to local health care providers.\n“These resources will help New Jersey create an electronic medical network that improves patient care, reduces costs, and allows for the seamless exchange of information,” said Lautenberg, who as a member of the Senate Appropriations Committee helped author the Recovery Act.  “Establishing tech support centers throughout the country will ensure doctors have the help they need to move our health care system into the 21st century.” \n“Ensuring that our family doctors can digitally organize our medical histories in order to better coordinate our care with our other providers makes our health care more accurate and efficient,” said Senator Menendez. It also creates high-tech jobs. This is exactly the type of investment to help rebuild America that we had in mind when we passed the Recovery Act.”\nFunded by the ARRA, this grant award is part of the Department of Health and Human Service’s $2 billion effort to achieve widespread use of health IT by the year 2014.\nFor additional information about Health IT Regional Extension Centers, click here: http://healthit.hhs.gov/portal/server.pt?open=512&objID=1495&mode=2   \nInformation about other health IT programs funded through the American Recovery and Reinvestment Act of 2009 can be found here: http://HealthIT.HHS.gov\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=098c10f0-d61d-4286-901c-154f2f2b98e5,\"AFTER REPUBLICAN DELAY OF MORE THAN TWO WEEKS, MENENDEZ HAILS FINAL PASSAGE OF EXTENSION TO UNEMPLOYMENT INSURANCE, FLOOD PROGRAM\n                    \n                      April 15, 2010\n                     WASHINGTON – After Republican obstruction forced the expiration of the unemployment insurance and flood insurance programs for more than two weeks, the U.S. Senate today passed an extension to those programs through the end of May. Without an extension, 1 million Americans were at risk to lose their unemployment safety net in April and more than 200,000 would prematurely exhaust their benefits per week. In addition, each day that the National Flood Insurance Program, was not extended, the policies of an estimated 12,600 renewal customers in good standing would lapse, leaving them without coverage. This short-term extension was necessary as Congress works on a longer-term extension.\nU.S. Senator Robert Menendez (D-NJ) said following the vote that the overdue extension of these programs will help working families stay afloat during tough times:\n“People who have lost their jobs or have been flooded out of their homes were placed in limbo for more than two weeks by Republican obstruction in the Senate. These families fully understand how political games played with serious issues can have a real impact on people's lives. The overdue renewal of these programs will help restore badly needed insurance to families who are facing particularly tough times.\n“The unemployment insurance program is critical for the many New Jersey workers who have lost their jobs through no fault of their own and hope to keep their families afloat. In addition, economists say that it is one of the most effective stimulus programs at our disposal, and it is tremendously important that it has been renewed. Meanwhile, during the two weeks in which the flood insurance program was forced to expire, thousands of New Jersey families suffered through torrential rains that damaged their homes. With the program finally renewed, families can have their insurance claims processed, renew their policies and buy homes in flood plains.”\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8103aaa5-669e-47ad-a556-049453baa296,\"MENENDEZ JOINED BY REV. JESSE JACKSON, LABOR AND CIVIL RIGHTS GROUPS TO ANNOUNCE WORKERS’ RIGHTS LEGISLATION\n                    \n                            POWER Act would raise standards for all workers by protecting those at the bottom of the ladder\n                    \n                      April 14, 2010\n                     WASHINGTON – Today at a Capitol Hill news conference, U.S. Senator Robert Menendez (D-NJ) was joined by Rev. Jesse Jackson and other major labor and civil rights leaders to introduce the Protect Our Workers from Exploitation and Retaliation (POWER) Act, which aims to improve workers’ rights across the board by protecting those at the bottom of the ladder. Specifically, the legislation, cosponsored by Sen. Kirsten Gillibrand (D-NY), would offer protections for whistleblower workers who expose workplace abuses by their employers. Also joining the announcement today were Daniel Castellanos, of the Alliance of Guestworkers for Dignity; Arturo Rodriguez, president, United Farm Workers of America; and Marielena Hincapié, executive director of the National Immigration Law Center.\nSenator Menendez said: “When it comes to making sure people who work for a living are treated fairly by their employers, we are reminded of what John F. Kennedy meant when he said ‘A rising tide lifts all boats’. When the most vulnerable workers are able to freely report employer abuses, all workers are given more rights. This is an especially powerful message in these tough times, when folks in our country are working harder then ever to provide for their families, even though their wages remain flat.”\nCastellanos said: \"\"The POWER Act will allow millions of immigrant workers to organize, to hold bad employers accountable, and to lift the standards in the worst workplaces in the country.  When workers in the worst circumstances are given the protection to transform their workplaces, the standards rise for all workers.\"\"\nHincapié said: “For far too long, exploitative employers have abused the immigration system to circumvent their obligations under labor and employment law by retaliating against courageous workers who have stood up for their rights. The POWER Act will provide workers with an important tool to finally be able to fully exercise their labor rights without fear of retaliation thereby improving the working conditions for all workers.”\nBackground on legislation:\nUnscrupulous employers have the power and ability to threaten workers for exercising their labor rights and are infrequently held liable for labor law violations. For example, if workers do file a labor complaint or join with their fellow workers to form a union, employers can either threaten workers with violence or deportation. These actions have resulted in the depression of wages and working conditions of all workers. Immigrant workers who are under the constant threat of deportation are forced to accept diminished working conditions. This, in turn, undermines the broader labor market. When some workers are easy to exploit, the conditions of all workers suffer because employers “race to the bottom” and because opportunities for collective action by workers are undermined. This bill would raise the bar for treatment of all workers.\n            As such, the bill would:\n•    Provide temporary protection for immigrant victims of crime and labor retaliation so that employers who are guilty of labor violations may be held accountable. It would allow federal, state or local law enforcement officials and federal labor officials to permit a worker to stay in the country temporarily if the person has filed a workplace claim or is a material witness in any pending or anticipated workplace claim. A worker who has been the victim of a labor violation and who is working with law enforcement may receive a stay of removal.\n•    Provide U-Visas for victims of labor retaliation who cooperate with law enforcement.  It would expand the “U” visa that is available under current law to include civil labor violations when: 1) workers are threatened with retaliation or abuse for exercising their labor rights or actually experience retaliation; 2) the worker is cooperating with law enforcement and 3) the worker suffered severe abuse or would suffer harm if deported.\n•    Preserve labor law enforcement opportunities.  When an agency conducts a worksite enforcement action and 1) there is a labor dispute in progress or 2) the agency received information as a means to retaliate against workers for enforcing their labor rights, DHS must ensure that workers arrested or detained aren’t deported before the appropriate labor agency is notified and has a chance to interview the workers.\n                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=acdbbe5b-9049-4151-951a-ce4587a9b25d,\"SENATORS ANNOUNCE LEGISLATION TO COMBAT FEES ON CARRY-ON BAGGAGE ANNOUNCED BY MAJOR AIRLINE LAST WEEK\n                    \n                            Airline’s Recent Decision to Charge Passengers A Whopping $45 for Carry-on Baggage Exploits Unintended Tax Loophole\n                    \n                      April 14, 2010\n                     WASHINGTON, DC—U.S. Senators Charles E. Schumer (D-N.Y.), Robert Menendez (D-N.J.), Ben Cardin (D-MD), Frank Lautenberg (D-NJ), Blanche Lincoln (D-AR), Amy Klobuchar (D-MN) and Jeanne Shaheen (D-N.H.) announced new legislation Wednesday to confront airlines that are socking travelers with new fees for carry-on luggage.\nThe legislation comes after Spirit Airlines announced last week that it would begin charging customers a whopping $45 for carry-on luggage. The policy could spur other airlines to follow suit and impose a similar fee. The senators’ legislation is designed to rein in this new practice and restore basic fairness to airline travel.\nThe bill is called the Block Airlines' Gratuitous (BAG) Fees Act, or the BAG Fees Act.\n“Airline passengers have always had the right to bring a carry-on bag without having to worry about getting nickel and dimed by an airline company,” Senator Schumer said. “This latest fee crosses the line and is a slap in the face to travelers. Our legislation will rein in the airlines and keep air travelers from being gouged every time they board a plane.”\nSenator Menendez said: “The way this is going, one day they’ll want to make your seat’s recline coin operated. It seems that air carriers are crossing a line that will end of pricing middle class families right out of being able to fly, and that’s not right. While airlines have a right to set prices, families should have the right to bring a change of clothes with them and not be gouged for it.”\n“Carry-on luggage is where people keep items essential to their health, work, and safety like laptop computers, medications, food to eat on the plane, baby formula, eye glasses and other items that need to be kept close at hand. These are personal items that airline passengers should not be charged to keep with them in the cabin.  When we tried to include such a ban in the FAA Reauthorization last month, we were blocked and told it was improbable airlines would ever charge for carry-on bags. Well, so far one airline has announced their intention to make fees for carry-on bags a reality. We cannot allow these flood gates to open.” said Senator Cardin, who has also authored another legislation that would impose an outright ban on carry-on fees.\n“As airlines continue to pile on fees for even the most basic services, the rights of passengers are being left at the curb,” said Senator Lautenberg.  “Airlines are taking advantage of a tax loophole and reaping financial benefits at the expense of travelers.  It’s time to say enough is enough.  Let's put an end to passenger mistreatment and restore consumer protections.”\n“In airline travel, ‘service with a smile’ has been replaced by ‘service with a cash register,’” said Senator Klobuchar.\n“Charging consumers for overhead carry-on luggage is skyway robbery,” said Senator Shaheen.  “It is outrageous that American families, who are already feeling the squeeze in this economy, are now being punished for something that is completely beyond their control.  I am hopeful this legislation will prevent airlines from forcing more unreasonable and unfair fees onto their customers.”\nDuring this tough economic time, the airline industry has sought to keep ticket prices low while maintaining their bottom line by adding supplemental fees to airline travel. In the past year, some airlines have added fees for checked baggage, extra legroom, seat assignments, peanuts, and event trips to the bathroom. For the most part, passengers have begrudgingly accepted these new fees. But the latest fee that the airline industry is seeking to impose on travelers breaks with a longstanding practice of allowing travelers to carry luggage onto the plane for free.\nSince the inception of commercial air travel, customers have always been given the opportunity to bring one carry-on bag with them to store in the overhead compartment without fear of being slapped with an additional fee. Carry-on luggage is particularly essential for weekend travelers, day trippers, and overnighters. The new fee will greatly add to the cost of travel for both business and leisure travelers. Families with children will also be hurt, as parents almost always need a carry-on item in order to store vital items like medicine, baby formula, or diapers.\nThe timing of the fee will also likely impact those trying to take their family on a summer vacation.\nThe senators’ legislation would confront this proposed fee by designating carry-on baggage as a necessity for air travelers. Airlines currently pay a 7.5-cent tax to the federal government for every dollar they collect in fares, but no tax is imposed on fees collected for non-essential services. Last January, the Treasury Department issued a ruling that deemed carry-on bags as non-essential for air travel. As a result, airlines can impose fees on these bags without paying any tax to the federal government on the revenues they collect. This creates a tax incentive for airlines to try to bilk consumers in the form of fees rather than by increasing the fares. The senators said Wednesday that if this tax loophole regarding carry-on bags did not exist, the airlines would likely not seek to charge travelers for this baggage. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4833ee5c-054d-49e0-b7df-303c0feb7c88,\"NO MORE TAXPAYER BAILOUTS: U.S. SENATOR MENENDEZ, CONSUMER GROUPS URGE PASSAGE OF BAILOUT PREVENTION FUND\n                    \n                             As part of Wall Street reform legislation, fund championed by Menendez would be pre-paid by corporations, not taxpayer money\n                    \n                      April 12, 2010\n                     Hoboken, NJ – U.S. Senator Robert Menendez (D-NJ) a member of the Senate Banking Committee, who will soon be debating Wall Street reform on the floor, has proposed an increase of a proposed fund in the current legislation from $50 billion to  $150 billion.  The fund will be created to avoid future big bank bailouts paid for with taxpayer money.\nSenator Menendez held a press conference today in Hoboken to urge support for his amendment.  Menendez was joined by representatives from NJ Citizen Action and Consumers Union, as well as New Jersey resident Edward Heaton, who as a taxpayer has contributed to the big bank bailout but is still waiting for permanent loan modification to save his home currently in foreclosure.  “Simply put: we can’t have a system where big Wall Street banks take huge gambles, knowing that they can keep the gains if they win, but that we will pay the costs if they lose,” said Senator Robert Menendez.  “We need to require the big banks to pay up-front to insure against any future failures, and shore up our financial system so that American families’ lives are not devastated by another foreclosure crisis, and on top of that are left footing the bailout bill. This fund will not be used for bailouts; it will only be used to dissolve failing institutions. If Wall Street banks behave recklessly they should gamble with their own money, not the hard earned cash of the American taxpayer.”   Senator Menendez wants to prevent taxpayers ever being a potential source for a “too big to fail” Wall Street big firm bailout.  These funds would not save companies from folding; it would be used to wind them down so their sudden demised does not cause the even deeper financial crisis that was feared if firms like AIG, and Citibank were not shored up a year ago.  U.S. Senator Robert MenendezNO MORE TAXPAYER BAILOUTSPage 2\nThe Depression-like financial crisis that Americans have endured as a result of  banking industry shortfalls, resulting in severe strain to the housing market, businesses and personal wealth, have deeply affected  Americans like Springfield, New Jersey resident Edward Heaton.  Heaton lost his job in early 2009, and his home went into foreclosure.  Mr. Heaton has been waiting for months to hear if he and his wife will be approved for loan modification.  The Heatons are an example of the American taxpayer bailing out big banks, while not being bailed out themselves, and remain at risk of losing their home.   \nConsumer advocacy groups joined Senator Menendez to ask the Senate to support the increase the size of the Orderly Liquidation Fund:\n  Being \"\"too big to fail\"\" means being able to make crazy and risky business decisions and not suffer any pain when failure results,” said Leslie Schlesinger, CRA Organizer of NJ Citizen Action.  “We support Senator Menendez’s proposed $150 billion “gambler-pays” system that forces systemically risky firms to bear the cost that their gambling places on the financial system. It is no surprise that the bank lobby wants as small an Orderly Liquidation Fund as possible since they are the ones who will be paying into it.”\n\"\"The recent financial meltdown has squarely demonstrated the need for strong public oversight of large financial institutions,” said Chuck Bell, Programs Director of Consumers Union, nonprofit publisher of Consumer Reports.  \"\"Consumers want smart reforms that dramatically reduce the risk of future bailouts, and protect taxpayers from having to foot the bill.  We applaud the efforts of Senator Robert Menendez to fight for the proposed bailout prevention fund, which would be financed by assessments on the largest banks and financial institutions.  Sen. Menendez's plan gets the incentives right to keep banks healthy, provide early warning of potential signs of trouble, and protect the taxpayer's wallet against costs that the industry itself should pay.\"\"\nThe Senate will begin to debate Wall Street reform in the coming weeks. \n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=eddb81a7-f4a2-45e0-a3d5-dfcd4112d324,\"MENENDEZ STATEMENT ON PASSING OF CONGRESSMAN FRANKS\n                    \n                      April 12, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) released the following statement on the passing of former New Jersey Congressman Bob Franks:\n“New Jersey has lost a dedicated public servant. I knew Bob Franks since we served in the State Assembly together in the mid-1980's. Even though we disagreed at times, Bob was a gentleman, in the truest sense of the word. He loved our state and served it well. I was proud to find opportunities to collaborate together. His untimely death is a loss to all of us who knew him and to our state. My thoughts and prayers are with his family and loved ones.”\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=af909a3e-91b5-4698-a153-919d10ecfcb1,\"LAUTENBERG AND MENENDEZ ANNOUNCE FEDERAL APPROVAL OF $200 MILLION FOR TRANS-HUDSON EXPRESS TUNNEL PROJECT\n                    \n                            Latest step signals continuing federal support, keeps project on track\n                    \n                      April 9, 2010\n                     WASHINGTON – U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the Federal Transit Administration (FTA) has approved committing an additional $200 million for the Trans-Hudson Express Tunnel, funding that will be used to begin digging on the New Jersey side of the river, creating hundreds of new jobs.  Senators Lautenberg and Menendez have long fought to obtain both federal commitments and appropriations funding for this project.   This new funding has been committed through an “Early Systems Work Agreement” approved by FTA, which will allow NJ TRANSIT and the Port Authority of New York and New Jersey to begin digging the tunnel segment under the Palisades Mountain in Hudson County. The agreement also encompasses funding for property acquisition and other project costs.  “This agreement with the federal government shows that Secretary LaHood and the Obama Administration’s commitment to the Trans-Hudson Express Tunnel is long-term and rock-solid,” stated Lautenberg, a member of the Senate Appropriations Committee.  “The tunnel project is going to create jobs, get cars off of our congested roads and improve transportation across our entire region.  We are pleased to have the Administration’s strong support for this historic project and will continue working in Congress to obtain the necessary funding.” “This is another important signal that the federal funding we have secured continues to roll in, keeping the project chugging forward on time. It is on track to create thousands of jobs both in the short term and permanently, while making commutes more efficient,” stated Menendez.  “I hope and expect that, by the fall, the Federal Transit Administration and NJ Transit will come to an accord on a full funding grant agreement to guarantee the $3 billion in total funding that we have ensured the federal government is ready to commit.” The Trans-Hudson Express Tunnel project will create 6,000 construction and related jobs a year during its peak, and when complete, the new tunnel will take 22,000 cars off the road daily and create 44,000 permanent professional, service and other jobs. Once completed, the tunnel will double service capacity to 48 trains per hour during peak periods from the current 23 trains. Twice as many passengers will be accommodated, from 46,000 each morning peak period now to 90,000 in the future.  The project also will also create transfer-free, one-seat rides for travelers on 11 of NJ Transit’s 12 rail lines.  In June of 2009, Lautenberg and Menendez joined FTA Administrator Peter Rogoff, and federal, state and local officials to break ground on the Trans-Hudson Express Tunnel project, the largest transit public works project in America. Work on a right-of-way issue at Tonnelle Avenue in North Bergen has been progressing steadily since last summer.                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3dc62d74-68d5-4cda-866a-59d5f50996d6,\"MENENDEZ STATEMENT AFTER SPEAKING WITH CUBAN PRO-DEMOCRACY LEADER GUILLERMO FARIÑAS\n                    \n                      April 7, 2010\n                     WASHINGTON -  U.S. Senator Robert Menendez spoke yesterday via telephone with Cuban pro-democracy leader and hunger striker Guillermo Fariñas.  Menendez expressed his continued commitment to the struggle of Cuba's pro-democracy movement and prisoners of conscience.  After the call to a hospital in Santa Clara, he released the following statement: \n“We have to continue to shine a light on the brutal treatment by the Castro regime of political prisoners in Cuba.  As long as I am a U.S. Senator, I will continue to use my voice and my vote to stand with individuals like Guillermo Fariñas, who have undertaken tremendous personal risk and sacrifice to simply expose the ongoing human rights abuses in Cuba. Guillermo was resolute in his position that the rights of Cuba's political prisoners must be honored.” \nGuillermo Fariñas has been on a hunger strike in Cuba since February 26th to protest the death of fellow dissident Orlando Zapata Tamayo.  He said that he will remain on strike until twenty-six other seriously ill prisoners of conscience are set free.  He is receiving fluids intravenously since collapsing on March 11. \n“Individuals like Guillermo Fariñas and Orlando Zapata Tamayo are evidence of the unbearable brutality of the Castro regime and the tragic state of political prisoners in Cuba.  They are also part of a growing number of human rights activists willing to put their life on the line for freedom. The world community must raise their voices so that these rights are honored and Guillermo Fariñas can live. My thoughts and prayers are with Mr. Fariñas and all of Cuba's prisoners of conscience.”\n                                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8826717c-acc7-4e71-a156-0d1c7aaef382,\"MENENDEZ SAYS NEW AIRLINE FEE FOR CARRY-ON LUGGAGE UNDERSCORES THE NEED FOR HIS “CLEAR AIRFARES” LEGISLATION\n                    \n                            NJ Senator insists on importance of up front disclosure of additional charges\n                    \n                      April 7, 2010\n                     WASHINGTON – Spirit Airlines has announced a new surcharge of $45 each way per carry-on bag. U.S. Senator Menendez (D-NJ) is the author of the Clear Airfares Act, which would direct airline and travel websites to provide consumers with a clear and upfront breakdown of all surcharges and fees they might have to pay and which was included in the Senate-passed Federal Aviation Administration reauthorization bill. He released the following statement in response to the carry-on fee announcement: \n“This is getting absurd. What will the airlines think up next, a fee for reclining your seat?,” said Menendez.  “Just as families are ready to board their flight, they are blindsided by extra fees that substantially increase their total cost of travel. I am concerned that middle-class families are getting priced out of flying. The way it’s going, unless you’re willing to pack only a toothbrush, bringing a bag for a week at grandma’s house is going to cost you an arm and a leg. This is the last thing consumers need in these tough times when money is already tight. \n“If airlines insist on hitting consumers with these fees, then they should disclose all of them up front. I authored the Clear Airfares Act, so consumers have a complete and understandable breakdown of their total airfare before purchasing their ticket, and I was pleased to get a version of my legislation included in the Federal Aviation Administration reauthorization bill that the Senate passed in March. I am working to ensure that this provision survives in conference, so clear and straightforward airfares can be the law of the land.” \nA version of S. 2823, the Clear Airfares Act, was included in the Federal Aviation Administration reauthorization bill in the Senate. The Senate and House of Representatives now must negotiate and pass a final version of the FAA bill before it goes to President Barack Obama to be signed into law. The Menendez Clear Airfares provision would direct the Department of Transportation to formulate rules that require airlines or third-party websites to clearly and conspicuously disclose any fees, charges or surcharges, including holiday fees, for consumers to be able to clearly view before having to input their name and credit card information. \nThis provision was co-sponsored by Senators Charles Schumer (D-NY), Mary Landrieu (D-LA), Jim Webb (D-VA) and Ron Wyden (D-OR). It gained the support of major consumer groups including:\n•    Consumer Federation of America: http://menendez.senate.gov/imo/media/doc/ConsumerFederationClearAirfares.pdf\n•    Consumer Travel Alliance: http://menendez.senate.gov/imo/media/doc/ConsumerTravelAllianceClearAirfares.pdf\n•    FlyersRights.org: http://menendez.senate.gov/imo/media/doc/FlyersRightsClearAirfares.pdf\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=64b83835-95c2-434d-ac57-7084b8296386,\"LAUTENBERG, MENENDEZ APPLAUD PRESIDENT OBAMA FOR SWIFT DISASTER DECLARATION FOLLOWING MARCH FLOODING \n                    \n                            DISASTER FUNDING WILL PROVIDE DIRECT ASSISTANCE TO NEW JERSEY FAMILIES, BUSINESSES.  RESIDENTS AND BUSINESS OWNERS WHO SUSTAINED DAMAGE CAN BEGIN APPLYING FOR ASSSISTANCE TODAY.\n                    \n                      April 3, 2010\n                     NEWARK - Today, U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) applauded President Obama for declaring a major disaster and releasing federal resources to help New Jersey recover from last month’s devastating rain storms and flooding.  With the federal disaster declaration, emergency funds will become available to reimburse individual families and businesses, the state and municipal agencies and help in recovery and rebuilding efforts.\n“President Obama took an important step today to help New Jersey recover from the crippling storm that destroyed roadways, closed businesses and damaged homes last month,” said Sens. Lautenberg and Menendez.  “Emergency funding will provide direct assistance to individual families, help municipalities across the state preserve their budgets, and advance statewide hazard mitigation efforts.  We applaud the President for moving quickly to make emergency assistance available and help families, communities and the state rebuild and recover from the destruction  left in the wake of the recent storms.”  \nDuring the weekend of March 12, 2010, strong winds and heavy rainfall caused widespread damage throughout the state and resulted in some of the worst flooding New Jersey has seen in more than two decades.  Senators Lautenberg and Menendez, along with the rest of the New Jersey congressional delegation, sent a letter to President Obama on March 29, 2010, in support of the state’s request for federal assistance.\nThe President's action makes federal funding available for affected individuals in Atlantic, Bergen, Cape May, Essex, Gloucester, Mercer, Middlesex, Monmouth, Morris, Passaic, Somerset, and Union Counties.\nAssistance can include grants for temporary housing and home repairs, low-cost loans to cover uninsured property losses, and other programs to help individuals and business owners recover from the effects of the disaster.\nFederal funding is also available for statewide hazard mitigation measures and to help the State and eligible local governments and certain private nonprofit organizations on a cost-sharing basis for emergency work and the repair or replacement of facilities damaged by the severe storms and flooding in the counties of Atlantic, Bergen, Cape May, Essex, Mercer, Middlesex, Monmouth, Morris, Passaic, and Somerset.\nResidents and business owners who sustained losses in the designated counties can begin applying for assistance today by registering online at   http://www.DisasterAssistance.gov or by calling 1-800-621-FEMA(3362) or 1-800-462-7585 (TTY) for the hearing and speech impaired. The toll-free telephone numbers will operate from 7 a.m. to 10 p.m. seven days a week until further notice.                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3bd13a5e-c9ec-4bee-bd57-f224c01ff853,\"IN HONOR OF AUTISM AWARENESS MONTH  MENENDEZ, PALLONE, PARENTS, EDUCATORS, ADVOCATES, HIGHLIGHT CONTINUED NEED FOR RESEARCH, FUNDING, AND ASSISTANCE FOR FAMILIES \n                    \n                            Senator Menendez highlighted legislation he included in Health Care Insurance Reform that will provide coverage for behavioral health treatments\n                    \n                      April 1, 2010\n                     New Brunswick, NJ- Today, U.S. Senator Robert Menendez, a staunch advocate for those with Autism and their families, was joined by U.S. Congressman Frank Pallone, Jr., Dr. Sandra Harris, Founder and Executive Director of the Douglass Developmental Disabilities Center, advocates, and parents, to commemorate the beginning of Autism Awareness Month.   The event took place at the Rutgers Douglass Developmental Disabilities Center on Gibbons Circle, where Rutgers University President Richard McCormick also welcomed valued advocacy organization representatives Peter Bell, Executive Vice President for Programs and Services for Autism Speaks, Linda Meyer, Executive Director of Autism New Jersey, and Linda Fiddle, Founder and Executive Director of the Daniel Jordan Fiddle Foundation.  Participants highlighted the need for continued awareness and sensitivity toward persons with Autism and their families, enhanced educational opportunities such as Applied Behavior Analysis, adult services, research, and funding.“We’re here today on the first day of Autism Awareness Month because there’s nothing more important than the health, well-being, and hope for families who live with autism every day,” said Senator Menendez.  “I’ve heard from so many parents who have shared their heart-wrenching struggles -- not only with the disease -- but with the complexities of a health care system that often leaves them feeling lost. It’s time we do more to help these families and that’s exactly what I’m committed to doing.”            Senator Menendez, a member of the Senate Finance Committee gained inclusion of over a dozen of his amendments to reduce costs and protect families, including an amendment that requires health insurance plans in the state-based insurance exchanges to cover behavioral health treatments as part of the minimum benefits standard. Unless behavioral health treatment is explicitly included as a covered benefit, people with autism are not likely to receive comprehensive health care.  Autism is a complex, typically lifelong, developmental brain disorder that impairs a person’s ability to communicate with others and is associated with rigid routines and repetitive behaviors. Today, it is estimated that one in every 110 children is diagnosed with autism, making it more common than childhood cancer, juvenile diabetes and pediatric AIDS combined. An estimated 1.5 million individuals in the U.S. and tens of millions worldwide are affected by autism. New Jersey has the third highest rate of autism in the country at an astounding one in every 94 children.“The prevalence of autism in this country has increased significantly in the past 10 years, but providers are still unaware of the best methods to treat the disorder,” said Congressman Pallone, Chairman of the Health Subcommittee of the House Energy and Commerce Committee.  “It is my hope that the recent passage of health care reform which significantly improves and protects coverage for behavioral health will help people with Autism to lead healthier lives as well as raise awareness.” “A way to celebrate April as Autism Awareness Month is by reflecting on how far we have come in the past year and where we are going in the coming year,” said Dr. Sandra Harris. “The Douglass Developmental Disabilities Center has been using the principles of ABA (Applied Behavior Analysis) to serve people with autism spectrum disorders since 1972.  We have seen major progress over the years in these treatment methods and understanding of the biology of autism spectrum disorders.  We are also delighted by legislative action at the state and national level which will help make the methods of Applied Behavior Analysis more accessible to individuals with autism spectrum disorders.”“Autism Speaks would like to thank Senator Menendez for his tremendous effort to include behavioral health treatment as part of the essential health benefits package required for certain health plans in the Health Care Education and Affordability Reconciliation Act of 2010,” said Peter Bell, Executive Vice President of Programs and Services. “Once again, the Senator has demonstrated his strong commitment to improving the lives of families living with autism.”  \"\"While we must all become more aware of the unique needs challenges faced by those touched by autism, we must also respond with policies and supports that address those challenges,” said Linda S. Meyer, Executive Director, Autism New Jersey.  “Families need access to evidence-based treatments based upon the principles of applied behavior analysis, and Senator Menendez responded by ensuring that it was an essential health benefit in the reform bill.    We applaud him for his extraordinary work and continued commitment to families impacted by autism.\"\"   “Senator Menendez has championed the recognition that Applied Behavior Analysis and other behavioral treatments are vital  for individuals challenged by Autism and that when these treatments are initiated in childhood adult outcomes are greatly improved,” said Linda Walder Fiddle, Executive Director of the Daniel J. Fiddle Foundation.  “In fact, many adults affected by Autism require behavioral treatments throughout their lives to help them function and participate in community life, and the expansion of healthcare coverage for behavioral health treatments is essential to their success and well-being.”Senator Menendez reintroduced Helping Hands for Autism in the 111th Congress, legislation that will increase housing, awareness, and navigation demonstration services for individuals with autism spectrum disorders. Senator Menendez is also lead cosponsor on Senator Durbin’s The Autism Treatment Acceleration Act, that requires health insurers to provide coverage for the diagnosis and treatment of autism, and authorizes federal funding for a wide range of service, treatment, support, and research initiatives; and cosigned a letter by Senator Lautenberg asking for $10 million for autism research in the FY 2011 Department of Defense Appropriations Bill.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=02dfa04c-0a8e-4b70-aaa7-930e2773fb67,\"AS FLOODING CONTINUES TO SWAMP N.J. COMMUNITIES, MENENDEZ IMPLORES SENATE REPUBLICANS TO CEASE OBSTRUCTING EXTENSION OF NATIONAL FLOOD INSURANCE PROGRAM\n                    \n                            Senate Republican blockage of package including unemployment insurance has caused flood program to run out\n                    \n                      April 1, 2010\n                     NEWARK - As New Jersey families this week have seen homes submerged by heavy rains for the second time in less than a month, they are also confronted by the fact that Republican obstruction in the U.S. Senate has forced the National Flood Insurance Program to expire. As a result, families looking to close on houses located in floodplains cannot do so and a long term expiration of the program could prevent flooded homeowners from filing insurance claims or purchasing affordable insurance.\nU.S. Senator Robert Menendez (D-NJ), Chairman of the Banking Committee's housing subcommittee, today blasted the partisan obstruction of this program:\n\"\"Families care about their homes and their ability to recover from disasters like these floods, not partisan maneuvers in Washington. This is a prime example of how political games played with serious issues can have a real impact in people's lives. I voted for us to stay in session until we extend vital programs like this, and the rampant flooding this week makes such an extension all the more crucial. I hope our colleagues on the other side of the aisle will recognize this and help us extend the flood insurance program.\"\"\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=792dc293-7950-4495-8d2e-1be26aebca2a,\"AMID REPUBLICAN OBSTRUCTION, SENATOR MENENDEZ HONORS BIRTHDAY AND LEGACY OF CESAR ESTRADA CHAVEZ \n                    \n                      March 31, 2010\n                     WASHINGTON -  In commemoration of Cesar Estrada Chavez’s 83rd birthday anniversary today, US Senator Menendez has introduced a resolution once again to honor him as one of the country’s most important civil rights and labor leaders. However, for the fourth year in a row Republicans blocked this resolution from being adopted by Unanimous Consent, preventing an official honor for Chavez in the Senate.  \n“Today we celebrate the life and legacy of one of the most important leaders of the Hispanic community and for all working Americans – Cesar Chavez,” said Menendez. “As the only Hispanic Senator serving in the United States Senate, I am disheartened that Republicans chose yet again to play politics with the legacy of an honorable and courageous man who paved the way for social progress and respect for all hardworking Americans. Chavez always said: ‘The fight is never about grapes or lettuce; it’s always about people’. That fight continues today. Chavez’s legacy serves as a source of inspiration to me and many others who seek to continue the fight on behalf of justice and dignity for every American worker.”\nBorn on March 31, 1927 in Arizona, Cesar Chavez was a Mexican American farm worker whose life circumstances showed him firsthand the injustices and hardships of farm workers that led him to dedicate his life helping those who spent their lives picking the food that Americans eat and ensuring they received the respect and benefits they deserved. His efforts led to equality, justice, and dignity for not only Hispanic farm workers, but for all people in the United States  -- a success that can be measured by the lasting impact he made toward ending workplace discrimination, unsafe and unfair working conditions, low wages, and child labor. \nClick HERE to view a copy of the resolution. \n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=88b27418-07c2-4816-bbcb-1a3d30acbd31,\"Menendez Reponds to President's Coastline Drilling Plan\n                    \n                            NJ Senator calls for comprehensive environmental and economic impact review and review of effect on critical military training and testing area\n                    \n                      March 31, 2010\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ), a leading proponent of transitioning America to alternative, domestic fuels and a staunch defender of the coastline released the following statement: \n\n\"\"I have let the administration know that if they do not protect New Jersey from the effects of coastal drilling in the climate change bill, then my vote is in question. I am deeply concerned about the threat coastline drilling poses to the Jersey Shore's economy and to the potential for new jobs and energy savings that can be harnessed in a clean energy economy. If issues like coastline drilling are being promoted to gain Republican votes and support from oil companies, then we need to know exactly how much support it will actually deliver -- this can't be a case of giving up something for nothing. \n\"\"While I am pleased that the Administration will be conducting an environmental review before proceeding on lease sales potentially close to the Jersey Shore, I am concerned that it has not taken this area out of its five year plan pending an environmental review -- as it is doing for the Chukchi and Beaufort Seas in Alaska. I expect a serious and thorough review. If it turns out to be nothing more than a rubber stamp, then this announcement will amount to yet another no-questions-asked handout for rich oil companies. In that scenario, the lease sales will go forward and the coastlines of Maryland, Delaware and New Jersey will be under threat. Even Virginia will not be happy because it gets drilling in its waters, but not any revenue sharing. Only big oil companies would win.\n\"\"I look forward to working with the Administration to make sure this environmental review is done comprehensively, but I will also be asking for an economic impact review. Drilling in Virginia waters is less than 100 miles from the New Jersey coastline. Approximately 60 percent of New Jersey’s $38 billion tourism industry comes from the Jersey Shore and the state’s multi-billion dollar fishing industry would also be threatened by the specter of a potential oil spill. At the very least New Jersey deserves a 125 mile buffer from drilling, just like Florida received in the announced deal.\n\"\"I am also concerned that the Administration will be doing studies to determine whether further exploration should happen all along the Mid and Southern Atlantic.  That raises the possibility of drilling in Delaware waters, just 10 miles away from New Jersey.\n\"\"Instead of expanding coastline drilling, we should be focused on developing a 21st century green economy. We cannot drill our way out of this problem. Even the Bush Administration’s Energy Information Administration estimated opening all out-shores to drilling would have no effect on gas prices. Instead of making rich oil companies richer we should be competing with Europe, Japan and China to win the competition to supply the world with next generation green technologies. Buying hybrids for the federal government and raising fuel economy standards is a start but we could and should do more.\n\"\"It is also troubling that it appears the lease sales in Virginia could go forward and interfere with the Navy’s Virginia Capes Operating Area, a critical military training and testing area. At a time when we are fighting two wars we should not be compromising military readiness no matter what oil companies want.”\n\nClick here for a letter from the Department of the Navy to the Department of the Interior expressing their opposition to the Virginia lease sale: http://menendez.senate.gov/imo/media/doc/NavyOCSLetter.pdf\nExpanded Coastline Drilling is a Threat to New Jersey and the Nation\nCoastal Economic Impact\nFrom fisheries to tourism, our coasts provide sustainable jobs for millions of Americans and contribute approximately $11.4 trillion to the nation's economy.\nCoastline drilling is bad for New Jersey’s tourism industry\n•    When medical waste washed up on New Jersey’s beaches in 1988, there were 22% fewer visitors to the shore in 1988 versus 1987, which resulted in an estimated drop in revenue of more than $1 billion. And that was waste that could be fully cleaned up—unlike an oil spill. For example, as a result of the 1989 Exxon Valdez oil spill off the coast of Alaska, 21,000 gallons of crude still linger in the areas where the spill occurred, and oil-stained sand can still be found on the beaches nearby. In the event of an oil spill the Jersey Shore could be damaged permanently.\n•    The New Jersey tourism industry in 2007 generated $38 billion in revenues (and $4.2 billion in state and local taxes), and has more than 466,000 workers (11.4% of total NJ workers) earning salaries totaling $16 billion -- providing hospitality to more than 75 million visitors to the Garden State.  The Atlantic City area (36.0%) and the rest of the Jersey Shore (Ocean/Monmouth/Cape May/Cumberland Counties, 28.6%) makes up 64.6% of New Jersey's tourism industry. Just think about how damaging an oil spill would be to our state’s economic health.\nCoastline drilling is bad for New Jersey’s fishing industry\nAs of 2003, the NJ fishing industry brings in $4.5 billion annually from fisheries, aquaculture and recreational fishing. New Jersey's commercial ports rank fourth in the nation in the value of their catch and 1.3 million recreational fishermen enjoy the Jersey Shore’s rich saltwater fisheries. In fact, New Jersey's most valuable commercial port (the nation's third most valuable) is less than 100 miles from proposed Virginia offshore drilling.\nNational Security\nToday’s announced drilling was made contrary to the Department of Defense’s long opposition to the encroachment of offshore drilling on the Navy’s Virginia Capes Operating Area (VACAPES).  VACAPES is a critically important test and training range, as well as an essential operating area.  The Navy has been training in this area for nearly a century because it is an optimal place to operate in a safe and controlled environment.  Realistic training is the single greatest asset the military has in preparing its personnel for combat.  In addition, VACAPES is the Navy's primary area for testing certain kinds of weapons and ship technologies.  Specifically, VACAPES is the designated area for the evaluation missile launches which requires wide areas clear of development to allow these missiles to land safely. It is also the Navy's primary area to test autonomous underwater vehicles. Offshore oil drilling in the area could severely impair the Navy’s ability to develop and maintain critical combat technologies. Any interference with these training activities risks jeopardizing our military readiness.\nCoastline drilling is bad for the environment\nDrilling for oil and gas causes water pollution, damages fragile eco-systems, and harms marine life. And that’s the case even without an oil spill occurring.  As a result of Hurricane Katrina, the Environmental Protection Agency, the US Minerals Management Service, the National Oceanic and Atmospheric Administration and the Coast Guard all agree that the storms caused 700,000 gallons of oil to spill into the Gulf of Mexico and over 9 million gallons of oil to leak onshore from the infrastructure that supports offshore drilling.\nWhy open up new off-shore areas when so many areas leased for drilling are going unused?\nThe Minerals Management Service estimates that 79 percent of the proven oil and gas reserves left in the United States are in areas already opened for oil and gas drilling – mainly on land and in the central and western Gulf of Mexico.All told 68 million acres of federal land and water has been leased by oil companies, but have yet to produce any oil or natural gas.  \nDrilling our coasts will not do anything to lower gas prices\nThe Department of Energy’s Energy Information Agency projects that even if we opened up the entire Outer Continental Shelf to drilling—off the East Coast, off the West Coast, and opened up the entire Eastern Gulf of Mexico—nothing would happen to gas prices. Not today, not tomorrow, not ever. That’s because oil is a global commodity whose price is set by global supply and demand. The best-case scenario is that American coastline drilling could produce 2-4 million barrels per day, which would have little effect on global oil prices in a world that today consumes 80 million barrels per day.\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a998b32e-d79f-4435-a334-c6ee2eeaa225,\"MENENDEZ AND LAUTENBERG ANNOUNCE FEDERAL INVESTMENTS OF $7.23 MILLION TO MAINTAIN N.J. AIRPORTS AND CREATE JOBS\n                    \n                            Newark Liberty, Teterboro, Ocean City and Lakewood airports to benefit from investments\n                    \n                      March 26, 2010\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) today announced a total of $7.23 million for four projects at New Jersey airports that will help ensure air travel is safe and efficient and help create jobs. “By making these airport improvements, we’re not only helping to ensure that flights are safe and on time, but we’re creating jobs required to do the work involved.,” said Menendez. “This is the type of investment that delivers benefits to New Jersey families on a number of fronts, which is particularly important in these tough times.” “We need to make New Jersey’s airports as safe, modern and reliable as possible so travelers get to their destinations safely—and on time,” stated Lautenberg, a member of the Senate Subcommittee on Aviation Operations, Safety and Security. “These funds will help improve, secure and modernize airport runways across the state so that out airports can meet future travel and public safety demands.” The investments include: •         Newark Liberty International Airport -- $4,219,283 to rehabilitate Runway 11/29•         Teterboro Airport -- $ 2,920,193 to improve runway safety area•         Ocean City Municipal Airport -- $66,856 to rehabilitate Runway 6/24•         Lakewood Airport -- $25,888 for perimeter fencing Earlier this week, the Senate approved a measure that will reauthorize programs within the Federal Aviation Administration (FAA).  The FAA reauthorization bill included provisions authored by Sen. Lautenberg that would require the FAA to issue a plan to reduce runway incursions with a requirement for the plan to be integrated into the FAA’s modernization plan.  It would also require the FAA to develop a plan to reduce runway incursions through various airport runway improvements and requires the FAA to develop a tracking system of operational errors and runway incursions.\nAlso as part of the FAA reauthorization bill, Menendez included a provision that will require a study of air noise as a result of the airspace redesign in the New Jersey/New York/Philadelphia regions. The FAA’s air noise estimates have been based on computer models and not actual data to this point.\n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6d35b0b4-c2d5-45a1-be2e-1ae62b2d1cf2,\"MENENDEZ-KERRY BILL TO STRENGTHEN COUNTERNARCOTICS COOPERATION IN THE AMERICAS\n                    \n                      March 26, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, and Committee Chairman John Kerry (D-MA), introduced legislation today directing a more focused approach to regional counternarcotics efforts. The “Counternarcotics and Citizen Security for the Americas Act of 2010” (S.3172) reflects a more nuanced approach to counternarcotics efforts in the region and emphasizes the building of civilian institutions, less military involvement in enforcing the law, more effective local, regional, and federal law enforcement institutions to deal with the challenge, and improvements in the judicial institutions, the rule of law, and viable and licit alternatives to the drug trade.\n“Developing a comprehensive and balanced approach to combating the drug trade in our Hemisphere will directly help improve security here at home and keep drugs off of our streets,” said Menendez. “The drug trade spreads corruption and money laundering, while eroding the institutional capacity of Latin America’s relatively new and sometimes fragile democracies. The United States counternarcotics programs in the region are therefore crucial in helping our partners build law enforcement institutions, prosecute traffickers, and seize their assets.  These programs must be viewed in a comprehensive, coordinated manner in order to thwart the ‘balloon effect.’ Bolstering our regional partnerships and improving cooperation in order to effectively improve citizen security, generate economic and social opportunities, and professionalize the law enforcement and judicial elements of partner nations is in the best interest of the health and safety of the American people.”\n\"\"Our counternarcotics strategies in Latin America have to reflect the changing conditions in the region, including the need for a focus on citizen safety and civilian institution building, and the growing desire for partnership against common threats. The producers and traffickers of illegal drugs adapt fast to our pressures on them, so our emphasis has to be on agile, intelligence-aided approaches that include many partners,\"\" said Kerry.\nCounternarcotics programs in the Western Hemisphere are managed and implemented across several government agencies and departments.  As a result, program effectiveness can be limited due to fragmented management, unclear reporting chains, and duplicative and overlapping agenda.  Sub-regional initiatives have expanded in recent years but the strategic thinking for these initiatives has not yet caught up with the resources that are being provided.  The Menendez-Kerry bill works to calibrate efforts by standardizing metrics and monitoring protocols for counternarcotics and public security programs throughout the region; putting the authority for counternarcotics and anti-crime foreign assistance-related activity into the hands of the Secretary of State; and mandating a coordinated report outlining a regional counternarcotics strategy for the Latin American and Caribbean region that takes into consideration the so-called “balloon effect.”\nClick http://menendez.senate.gov/imo/media/doc/20100326CounternarcoticsBill.pdf for a PDF of the “Counternarcotics and Citizen Security for the Americas Act of 2010” (S.3172)\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d578e89a-7649-4dd3-9053-426f46c31280,\"Senate Completes Work on Health Insurance Reform; Menendez Hails Protections for N.J. Families, Seniors, Small Businesses, State Gov't and Federal Budget\n                    \n                            BELOW: N.J. statistics for final reform law, list of Menendez provisions included in law\n                    \n                      March 25, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today helped complete the Senate’s work on the new health insurance reform law, voting to help pass a set of improvements that will make insurance even more affordable for middle class families and will produce greater federal deficit reduction. Highlights of benefits of the final law for New Jerseyans include (EXPANDED LIST OF N.J. IMPACT LATER IN RELEASE):\n•    Ensuring affordable coverage options for 1.5 million New Jerseyans who are uninsured and 326,000 New Jerseyans who purchase health insurance through the individual market. •    Immediate, guaranteed insurance coverage for an estimated 130,793 uninsured New Jersey adults who have a pre-existing condition.•    Elimination of the Medicare Part D prescription drug coverage “donut hole” for 1.3 million New Jersey seniors and lower Medicare premiums for 1.1 million New Jersey seniors not enrolled in Medicare Advantage.•    Tax credits for up to 854,000 New Jerseyans to help make health insurance more affordable, bringing $13.9 billion  in tax credits for working families to purchase health insurance into New Jersey during the first five years of the health insurance Exchange.•    Tax credits for up to 107,000 New Jersey small businesses to help them afford insurance coverage for their employees.•    The federal government will cover all of the state government’s costs for adding low-income, childless adults to Medicaid over the first three years and never less than 90% of those costs after that.•    Federal budget deficit reduction of $143 billion over the first ten years of the law and $1.3 trillion over the next ten, as estimated by the non-partisan Congressional Budget Office\n\n“What was already an important and historic new law to establish common sense in the health insurance system has been made even better by lowering costs further for families, seniors and the nation,” said Menendez. “New Jersey families should know that the new protections will ensure that their insurance will be there when they need it most. New Jersey seniors should know that the prescription drug coverage shortfall will be filled and that preventative care will be free. Small businesses should know that tax credits will be available for them to provide relief for the cost of insuring their employees. We will fight tooth and nail to ensure that these new rights, protections and cost-savings will not be taken away from middle class families, seniors and small businesses.”\n\nThe Benefits of Health ReformIn New Jersey\nTogether, the Patient Protection and Affordable Care Act and the Health Care and Education Reconciliation Act will ensure that all New Jerseyans have access to quality, affordable health insurance. The Congressional Budget Office has determined that these two bills are fully paid for, will bend the health care cost curve, and will reduce the deficit by $143 billion over the next ten years with further deficit reduction in the following decade. The Patient Protection and Affordable Care Act and the Health Care and Education Reconciliation Act will reduce the cost of health care for the middle class, ensure health security to seniors, and provide tax credits to small businesses and individuals to further reduce the cost of health coverage. \nKey Benefits for New Jersey \n•    Provide tax credits for up to 107,000 New Jersey small businesses to help make coverage more affordable. [HealthReform.gov, accessed 3/20/10] •    Prohibit insurance companies from excluding coverage of pre-existing conditions for the 2 million children in New Jersey, starting this year. [U.S. Census Bureau, 1/7/10] •    Close the “donut hole” and improve other Medicare benefits for 1.3 million New Jersey seniors. [HealthReform.gov, accessed 3/20/10] •    Reduce Medicare premiums for the 1.1 million New Jersey seniors who are not enrolled in Medicare Advantage and will no longer subsidize these private insurance plans. [Senate Finance Committee] •    Ensure affordable coverage options for 1.5 million New Jerseyans who are uninsured and 326,000 New Jerseyans who purchase health insurance through the individual market. [HealthReform.gov, accessed 3/20/10] o    Ensure immediate access to affordable insurance options for as many as 130,793 uninsured New Jerseyans who have a pre-existing condition. [staff estimate using Agency for Healthcare Research and Quality (AHRQ), 4/09 and HealthReform.gov, accessed 3/20/10] o    Provide tax credits for up to 854,000 New Jerseyans to help make health insurance more affordable, bringing $13.9 billion in premium and cost-sharing tax credits into New Jersey during the first five years of the health insurance Exchange. [HealthReform.gov, accessed 3/20/10; Senate Finance Committee]o    Reduce family health insurance premiums by $1,860 - $2,660 for the same benefits, as compared to what they would be without health reform by 2016. [Senate Finance Committee estimate based on CBO, 11/30/09]o    Provide access to Medicaid for 476,277 newly-eligible New Jerseyans, and provide $9 billion in federal funding for the cost of their coverage. [Urban Institute, 1/25/10; Senate Finance Committee] \n•    Create 16,200 - 25,900 jobs by reducing health care costs for employers. [U.S. Public Interest Research Group, 1/20/10] •    Allow 758,000 young adults to stay on their parents’ insurance plans. [U.S. Census Bureau, 1/7/10] •    Provide more federal funding for 134 Community Health Centers in New Jersey. [National Association of Community Health Centers, 2009] \nAffordable Coverage Options for New Jersey Small Businesses Small businesses make up 80.3 percent of all New Jersey businesses, yet just 59.6 percent of these small businesses are able to offer health insurance to their employees. [AHRQ, accessed 3/20/10; AHRQ, accessed 3/20/10] Starting this year, up to 107,000 New Jersey small businesses will be eligible for tax credits for a percentage of their contribution to their employees? health insurance. [HealthReform.gov, accessed 3/20/10] Small businesses of the size that qualify for these tax credits employ 617,783 New Jerseyans. [AHRQ, accessed 3/20/10] \nProtecting Children Recognizing the special vulnerability of children, health reform prohibits insurance companies from excluding coverage of pre-existing conditions for the 2 million children in New Jersey. This takes effect six months after enactment and applies to all new plans. [U.S. Census Bureau, 1/7/10] \nStrengthening Medicare for New Jersey Seniors Health reform improves Medicare benefits for the 1.3 million Medicare beneficiaries in New Jersey. [HealthReform.gov, accessed 3/20/10] Each year, 227,000 New Jersey seniors hit the Medicare Part D „donut hole.? [HealthReform.gov, accessed 3/20/10] Starting this year, seniors who hit this gap in their prescription drug coverage will receive a $250 check, and the „donut hole? will be completely closed by 2020. The 1.3 million Medicare beneficiaries in New Jersey will see other improvements to the program, including a free, annual wellness visit and no cost-sharing for prevention services. Finally, by gradually moving to a more fair payment system for private insurance companies who participate in Medicare Advantage, health reform will lower Medicare costs for the 1.1 million New Jersey seniors not enrolled in Medicare Advantage, by as much as $45 in premium costs each year. [Senate Finance Committee] \nAffordable Coverage Options for New Jerseyans The Patient Protection and Affordable Care Act and the Health Care and Education Reconciliation Act contain several provisions to expand affordable coverage options for millions of Americans. First, health reform will provide immediate access to quality, affordable health insurance for as many as 130,793 uninsured New Jerseyans who are unable to obtain health insurance because of a pre-existing condition. [staff estimate using AHRQ, 4/09 and HealthReform.gov, accessed 3/20/10] This new $5 billion program will take effect 90 days after enactment of health reform. Second, health reform will ensure that the 1.5 million uninsured New Jerseyans and 326,000 New Jerseyans who purchase health insurance through the individual market have access to affordable health insurance options through state-based health insurance Exchanges. [HealthReform.gov, accessed 3/20/10] By reforming the insurance market and forcing insurance companies to compete for business through the Exchange, health reform will reduce family health insurance premiums by $1,860 - $2,660 for the same benefits. [Senate Finance Committee estimate based on CBO, 11/30/09] In addition, 854,000 New Jerseyans will receive premium tax credits to help make health insurance even more affordable. [HealthReform.gov, accessed 3/20/10] During the first five years that the health insurance Exchange is operational, New Jerseyans will receive $13.9 billion in premium and cost-sharing tax credits to further reduce the cost of health insurance. [Senate Finance Committee] Finally, health reform will open access to Medicaid for 476,277 newly eligible New Jerseyans, by expanding eligibility to non-elderly parents, childless adults, children and pregnant women with income up to 133 percent of the federal poverty level. [Urban Institute, 1/25/10] The federal government will fully fund the cost of covering these newly eligible individuals for three years and will pay 90 percent of these costs after 2020, compared to the current contribution in New Jersey of 50 percent of costs. In total, New Jersey could receive $9 billion in federal funding during just the first five years of this coverage expansion. [Senate Finance Committee] \nAffordable Coverage Options for New Jersey Young Adults According to the National Conference of State Legislatures, “Young adults often lose their health insurance if covered under a parent?s or guardian?s policy at age 19 or upon graduation from high school or college.” [NCSL, accessed 3/20/10] Starting this year, 758,000 young adults in New Jersey will be able to remain covered by their parent?s insurance policy until age 26. [U.S. Census Bureau, 1/7/10] In addition, once the health insurance Exchanges are operational in 2014, 1.2 million New Jerseyans under age 30 will have access to less costly catastrophic-only health insurance plans. [U.S. Census Bureau, 1/7/10] These plans will also be available to others who are exempt from the individual responsibility policy. \nJob Creation A recent analysis found that slowing the growth rate of health care costs will make it more profitable for businesses to expand employment, leading to estimated job gains nationwide of 250,000 – 400,000 per year for the next decade as a result of health reform. [Center for American Progress, 1/10] For New Jersey, this could mean 16,200 - 25,900 new jobs each year. [U.S. Public Interest Research Group, 1/20/10] \nSupport for New Jersey Community Health Centers Community health centers provide critical health care to New Jerseyans, regardless of their ability to pay. Health reform makes an immediate and substantial investment in the 134 federally-funded health centers in New Jersey. [National Association of Community Health Centers, 2009]\nMENENDEZ PROVISIONS INCLUDED IN THE LEGISLATION\n                Provisions included during Finance Committee work•    Medicare reimbursement costs sharing for hospitals – will generate approx. $70 million per year in savings for New Jersey hospitals (top priority of the New Jersey Hospital Association). Current law ensures that hospitals in highly-urban states, like New Jersey, are protected from receiving unfairly low Medicare reimbursements. Provision would ensure that the costs associated with this protection are shared fairly by hospitals nationwide. \n•    AUTISM – Requiring insurance plans to provide behavioral health treatments. Plans in the exchange must cover behavioral health treatments as part of the minimum benefits standard. For example, applied behavior analysis is a behavioral health treatment for people with autism. Unless behavioral health treatment is explicitly spelled out as a covered benefit, people with autism are not likely to receive comprehensive healthcare. \n•    Support, education, and research for postpartum depression. Provides support services to women suffering from postpartum depression and psychosis and helps educate mothers and their families about these conditions.  In addition, supports research into the causes, diagnoses and treatments for postpartum depression and psychosis. \n•    Tax credit for critical biotechnology research performed by small firms. Creates a credit that would encourage investments in new therapies to prevent, diagnose, and treat acute and chronic disease, lower health care costs. \n•    Out-of-pocket cost limit for families between 300-400 percent of the federal poverty level – IMPORTANT FOR HIGH COST OF LIVING STATES. For those between 300-400 percent of FPL, within the same actuarial value, the benefit will include an out-of-pocket limit equal to two-thirds of the Health Savings Account (HSA) current law limit. \n•    Excluding more middle-class families, seniors from excise tax on high-value insurance plans – IMPORTANT FOR HIGH COST OF LIVING STATES (joined Sen. Kerry on amendment). Successfully fought to raise tax thresholds for retirees and high-risk workers so that their additional health needs could be recognized. Successfully fought to raise the indexing of the high premium excise tax threshold to save millions of family policies from being hit.\n•    Urban Medicare Hospitals. Some urban hospitals are highly dependent on Medicare payments because they serve high proportions of Medicare patients, but, unlike many otherwise similar hospitals, they do not receive any special add-on payments. This would provide for a study for a special add-on payment to be afforded this select group of hospitals that could be designated as urban Medicare-dependent hospitals. \n•    Guaranteeing consumers a fair appeal for a denial of coverage. Requires that each health care plan and health care insurance issuer offering coverage in the exchange must provide an internal claims appeal process and each state must provide an external review process for plans in the individual and small group markets. \n•    Require private insurers to fully reimburse Federally-Qualified Health Centers in the exchange (offered amendment with Sen. Lincoln). This amendment would ensure that FQHCs, which are a primary health care option for millions, would not lose revenue when treating newly insured patients gaining coverage through the new health insurance exchanges. \n•    Women’s Medical Home (included in bill prior to markup). Legislation creates an Innovation Center within CMS to test and evaluate different structures to increase patient care and lower cost. The center is required to test a number of different models, including a “medical home that addresses women’s unique health care needs.”  \n•    Child-only insurance option and subsidies in the exchange.  Ensures that minor children qualify as exchange eligible individuals and would also provide for the availability of child-only health insurance coverage in the exchanges. \n•    Consumer protection for emergency services. Requires that each health care plan and insurance issuer offering coverage in the exchange must provide enrolled individuals coverage for emergency services without regard to prior authorization.  •    Ombudsman assistance with internal appeals. Allows policyholders to access the ombudsman created in the legislation for help with internal appeals. \n•    Ombudsman assistance with tax credit appeals. Allow policyholders to access the ombudsman for assistance in resolving problems with their premium and cost-sharing credits, and with assistance in filing appeals as needed. \n•    Value-Based Purchasing for Hospital Acquired Infections. This measure includes healthcare-associated infections, as measured by the prevention metrics and targets established in the Department of Health and Human Services’ HHS Action Plan to Prevent Healthcare-Associated Infections or any successor plan. \nProvisions included during full Senate debate\n•    Clarification and strengthening of provision guaranteeing consumers a fair appeal for a denial of coverage. All health insurers would be required to implement an internal appeals process for coverage denials, and states will ensure the availability of an external appeals process that is independent and holds insurance companies accountable. \n•    Clarification and strengthening provision expanding access to health care through community health centers. Private insurers would be required to fully reimburse Federally-Qualified Health Centers in the insurance exchange. This amendment would ensure that FQHCs, which are a primary health care option for millions, would not lose revenue when treating newly insured patients gaining coverage through the new health insurance exchanges. \n•    Holding health insurance companies accountable. The Government Accountability Office would conduct a study on the rate of denial of coverage and enrollment by health insurance issuers and group health plans. \n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2875f649-5467-4913-8368-4627caee8a6f,\"MENENDEZ: REPORT SHOWING CHINA SURPASSING U.S. IN CLEAN ENERGY INVESTMENT SHOULD BE A WAKEUP CALL\n                    \n                            Member of Energy Committee says Congress has golden opportunity this year to again make clean energy jobs and competitiveness a priority\n                    \n                      March 25, 2010\n                     WASHINGTON – A new report from the Pew Charitable Trust shows that the United States has fallen to a distant second place behind China in clean-energy investments (http://www.pewtrusts.org/news_room_detail.aspx?id=57972). Last year, the U.S. invested $18.6 billion in renewable energy sources, while China’s investments amounted to $34.6 billion. The report suggests that in addition to the recession, the lack of strong governmental policy is a significant reason for the U.S. falling behind.\nU.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee and author of bipartisan solar manufacturing tax credit legislation, today said this report should be a wakeup call. He said it stands as ample evidence for a stronger renewable energy standard as part of upcoming energy legislation.\n“This report should be a wakeup call for anyone who thinks we can lose the clean energy race and still create the jobs and economic activity needed to compete globally in the 21st Century,” said Menendez. “At this moment, we have a golden opportunity to harness the job-creating, cost-saving potential clean energy has to re-charge our economy. If China does it in a better, bolder and faster way, we will miss out on many thousands of jobs and slip further in global competitiveness. This is the reason I have authored the bipartisan solar manufacturing tax credit bill and was a main supporter of clean energy manufacturing tax credits in the Recovery Act. It is also a prime reason that I was not satisfied with the energy bill we have passed out of the committee – the renewable energy standard needs to be stronger in order to create the type of jobs and economic benefits we need. Ours is a more purely market-driven economy, which means that in order to unleash clean energy growth we need to send the right market signals.  That’s what needs to happen if we are to remain economically competitive in the 21st Century.”\nMenendez’s solar manufacturing legislation would boost the manufacturing of solar power equipment and the job creation that accompanies it. Currently, a 30 percent Solar Investment Tax Credit (SITC) exists for the purchase or installation of solar power technology. Under the Solar Manufacturing Jobs Creation Act, equipment and facilities used to manufacture solar power technology would be added to the eligible property list for the SITC. Menendez is a member of the Finance Committee, which has jurisdiction over this bill.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8f89ac02-f937-4f6d-aa98-c9901b4ef3b6,\"SENATOR MENENDEZ JOINS WITH MILLIONS OF GREEK-AMERICANS TO CELEBRATE THE 189TH ANNIVERSARY OF GREEK INDEPENDENCE DAY\n                    \n                      March 25, 2010\n                     WASHINGTON -  Today Senator Robert Menendez (D-NJ) issued the following statement on the 189th Anniversary of Greek Independence Day: \n“On March 21, 1821, Bishop Germanos of Patras boldly raised the Greek flag over the monastery of Agia Labras and declared the independence of the Greek people from the Ottoman Empire.  Today, 189 years later, I am proud to join people of Greek descent in New Jersey, the United States and all over the world as they celebrate this holiday.  This is more than just a celebration of Greek independence – it is also a celebration of Greece itself.  From democracy and philosophy to mathematics and astronomy; from drama and art to history and medicine, Greece has contributed so much to our understandings of civilization and society.  These ideas have had a great influence on our nation – from the time of our Founding Fathers to the present day.  And the continuing contributions of Greek-Americans to the culture, science, politics, and economics of the United States are indispensible.  The Greek-American community in my state of New Jersey and across the United States is an important part of our national fabric.  These are tough times for the nation of Greece, and it is more important than ever to stand with people of Greek descent around the world.  I’m honored to stand up for the Hellenic community in the United States Senate, and I am proud to call myself a Philhellene.  Ζητω η Ελλαδa!” \n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=91480b66-5e4d-4166-96ed-416c7aee8279,\"MENENDEZ HAILS PASSAGE OF LANDMARK STUDENT LOAN REFORMS TO MAKE EDUCATION MORE AFFORDABLE, THE NATION MORE ECONOMICALLY COMPETITIVE\n                    \n                            Senate passed reform that would establish the Direct Loan program, increase amount of available Pell Grants\n                    \n                      March 25, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today hailed the Senate passage of student loan reform legislation, which will establish a Direct Loan program to eliminate huge subsidies for big banks and private lenders and reinvest those savings into education programs that make college more affordable.  Specifically, it will provide a boost in the maximum available Pell Grants by investing $36 billion over 10 years in the program. Menendez, a recipient of Pell Grants during his educational career, said following the vote that the reforms to and increased support for student loan programs will give more New Jersey students access to a higher education and will make the state and nation more economically competitive.\n“There are two main reasons that I was able to become a member of the United States Senate and cast a vote in favor of this landmark student loan bill today,” said Menendez. “One was a caring family that instilled in me the importance of getting a quality education. The second was the existence of Pell Grants. There is an entire new generation of New Jersey leaders in the sciences, business, the arts and government that will be able to receive a higher education as a result of this landmark reform. A good education should be a right, not a privilege for the wealthiest among us. In the face of rising tuition and a tough economy, we are making it more affordable to receive a full education. This will allow for more young New Jerseyans to prosper and it will spur the ideas and innovation that create jobs and economic competitiveness.”\nNew investments in Pell Grants increase the maximum scholarships available to $5,550 in 2010 and $5,975 by 2017.  Also, all new federal student loans will be originated through the Direct Loan program instead of through the federally?guaranteed student loan program beginning in July 2010.  The Direct Loan program provides the same services to students, but saves $61 billion that would otherwise be wasted on subsidies to big banks and private lenders. \n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=301d69fa-2023-48a9-b52b-780fb4421f18,\"SENATE DEMOCRATS JOIN SENIOR ADVOCATES TO DISCUSS HOW HEALTH REFORM SUPPORTS AMERICA’S SENIORS\n                    \n                      March 24, 2010\n                     WASHINGTON — Senate Majority Leader Harry Reid, Senate Finance Committee Chairman Max Baucus, Senate HELP Committee Senior Member Chris Dodd, Senate HELP Committee Chairman Tom Harkin and Senator Robert Menendez joined Bonnie Cramer of the AARP and Dr. Fred Turton of the American College of Physicians at a press conference this morning to discuss how a simple up-or-down vote on adjustments to health reform legislation will help America’s seniors.  Senate Democrats want to make this good law even better by closing the ‘donut hole’ to make prescription drugs more affordable for seniors.  \n“Among the biggest winners from the passage of health reform are seniors in Nevada and across America,” said Senate Majority Leader Harry Reid.  “The bill that the President signed yesterday cracks down on waste, fraud and abuse in Medicare and stops insurers from charging higher premiums because of age or pre-existing conditions.  With the improvements that we’re trying to make on this already good legislation, we’ll start to completely close the ‘donut hole’ that raises prescription costs for nearly 60,000 Nevada seniors and millions more nationwide.”\nSenator Baucus said: “Health care reform is a victory for seniors, in Montana and across the country, and this week, we are working to make that victory even sweeter. The new law provides free preventive care and annual wellness visits in Medicare to keep our seniors healthy, and it improves the financial stability of Medicare for years to come.  The law will also cover half of the costs of brand name drugs in the Medicare Part D donut hole, where, before now, millions of seniors were forced to pay the full cost of expensive medicines they needed.  This week, we will make this good bill even better by closing the donut hole completely and providing seniors with an extra $250 when they reach the coverage gap this year.”\n“Health care reform will bring real and immediate benefits to seniors in Connecticut and across America,” said  Senator Dodd. “For 547,000 seniors in Connecticut, it means extending the solvency of the Medicare they rely on for their care.  It means they’ll be able to get free preventive care.  And it means finally closing the ‘donut hole’ that leaves too many seniors – 97,000 each year in Connecticut – stuck paying more than they can afford for the medicine they need.”\nSenator Harkin said: “It’s been a long, hard-fought battle, but the hundred year struggle to provide affordable, quality health care coverage is over.  And the unsung heroes of that battle are the doctors, nurses, seniors and advocates who stood up for reform.  I am so proud to be here today with Americans who saw through the special interests’ distortions and weighed in on the side of truth.”\n\"\"With a simple up-or-down vote this week, we will have improved on the historic new health insurance law to deliver full prescription drug coverage to seniors, among other important benefits,” said Senator Menendez. “Our colleagues on the other side of the aisle want to take that away from seniors, and we are fighting to ensure seniors will be able to keep it.\"\"\nBonnie Cramer said: “We’re so close today to providing millions of older Americans the security of knowing that they can count on taking the prescription drugs they need without skipping days, splitting pills or missing meals.  We need the Senate to now act and pass legislation that includes key priorities of AARP members and all older Americans, including closing the doughnut hole.”\n“I am so proud to stand with you today as the Senate begins the work of putting the final finishing touches on legislation that preserves and strengthens the security that Medicare provides America’s seniors, while extending this core principle to their children and grand-children,” said Dr. Fred Turton.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6dd3dc50-dffc-4b33-bf5e-5a15071994fe,\"MENENDEZ AND LAUTENBERG APPLAUD PRESIDENT OBAMA FOR DISASTER DECLARATION RELATED TO FEBRUARY BLIZZARD\n                    \n                            Declaration frees up emergency federal funding for eight NJ counties\n                    \n                      March 23, 2010\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg today applauded President Obama for approving a federal disaster declaration related to the massive snow storms that hit large parts of the state beginning on  February 5, 2010. The declaration frees up emergency federal funding to reimburse state emergency management agencies and for recovery and rebuilding programs. The request covers eight counties that received, in some cases, more than two feet of snow: Atlantic, Burlington, Camden, Cape May, Cumberland, Gloucester, Ocean, and Salem.\nMenendez and Lautenberg had urged the president to approve the declaration request in a March 11 letter: http://menendez.senate.gov/imo/media/doc/20100311ltr_DisasterDeclaration.pdf\n“We applaud President Obama for recognizing the extent of the blizzard, the economic damage it left in New Jersey communities and the need to make these resources available on an emergency basis,” said the senators in a joint statement. “This will help the economy in the affected communities rebound as soon and fully as possible. While we welcome this opportunity to help our communities recover, it is clear that New Jersey neighborhoods, families and businesses will need additional assistance to recover from the rain storms that recently flooded communities across the state.  As the damage assessment continues, we stand ready to work with the state for more disaster relief.”   \n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=50d962ab-6609-45c3-8220-9865b3b1356e,\"MENENDEZ ON NEW HEALTH INSURANCE LAW: BENEFITS TOUCH EVERY GROUP THAT HAS STRUGGLED WITH INSURANCE COSTS AND DENIALS\n                    \n                             NJ Senator touts benefits for middle class families, seniors, small businesses, laid off workers, state government, federal budget\n                    \n                      March 23, 2010\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ) hailed historic health insurance reforms that President Barack Obama signed into law. The law will establish new protections for families from health insurance company abuses, implement programs to make insurance more affordable for middle class and working families and finally provide quality, affordable health coverage through insurance choice and competition for more than a million New Jerseyans who have been laid off or do not receive insurance through their employer. The Senate will now consider a set of improvements to the bill this week.\nMenendez, a member of the Finance Committee who helped craft the bill and gained inclusion of at least 16 of his amendments (list below), said today that the new law will make New Jerseyans healthier while protecting the economic security of families, seniors, small businesses, state governments and the nation.\n“The days of insurance company bureaucrats imposing on the health and financial security of our families are over,” said Menendez. “For too many years, too many families have wondered why something so basic as health insurance takes so much out of their paychecks and why their insurance is unreliable when they need it the most. This is the reason presidents and Congresses for decades have tried to establish affordability and common sense in our health insurance system. It is the reason that what this president and this Congress have achieved is so historic and so important to the health and wealth of our families, state and nation.\n“From middle class families to seniors, from small businesses to laid off workers, from the state government to the national budget – there are benefits in this law for every group in New Jersey that has paid too much and gotten too little in return from the insurance system. The more New Jerseyans learn about what is in this law for them, the more they will realize that the fear and fabrications were based on falsehoods. They will understand that this law is about instituting common sense protections and badly-needed affordability in the insurance market, which are goals we can all support.”\nKEY REFORMS SIGNED INTO LAW TODAY (Final numbers will be available after passage of reconciliation bill)Protections for families:\nNo insurance denials because of pre-existing conditions\nCannot lose their insurance if they get sick\nNo lifetime limits on coverage\nCan keep their children on their insurance policy until the age of 26\nMaking insurance more affordable:\nSubsidies and tax credits for eligible middle class and working families, which will constitute the greatest tax relief for health care in history\nNew insurance exchange to establish choice and competition\nInsurance companies will be required to spend more of their revenue on actual medical services, which is expected to help rein in costs\nSeniors:\nIncreased prescription drug coverage\nFree preventive services\nSmall businesses: \nImmediately eligible for tax credits to afford providing insurance for their employees\nLaid off workers and those who don’t receive insurance through their employer: \nAccess to good, affordable health insurance through the choice and competition on the new insurance exchange.\nState governments:\nSignificant budget relief related to Medicaid expenses\nCoverage of the uninsured reduces the burden of covering emergency care\nThe federal budget: \nSignificant deficit reduction, as estimated by the non-partisan Congressional Budget Office.\nMENENDEZ PROVISIONS INCLUDED IN THE LEGISLATION\nProvisions included during Finance Committee work\n•    Medicare reimbursement costs sharing for hospitals – will generate approx. $70 million per year in savings for New Jersey hospitals (top priority of the New Jersey Hospital Association). Current law ensures that hospitals in highly-urban states, like New Jersey, are protected from receiving unfairly low Medicare reimbursements. Provision would ensure that the costs associated with this protection are shared fairly by hospitals nationwide.\n•    AUTISM – Requiring insurance plans to provide behavioral health treatments. Plans in the exchange must cover behavioral health treatments as part of the minimum benefits standard. For example, applied behavior analysis is a behavioral health treatment for people with autism. Unless behavioral health treatment is explicitly spelled out as a covered benefit, people with autism are not likely to receive comprehensive healthcare.\n•    Support, education, and research for postpartum depression. Provides support services to women suffering from postpartum depression and psychosis and helps educate mothers and their families about these conditions.  In addition, supports research into the causes, diagnoses and treatments for postpartum depression and psychosis.\n•    Tax credit for critical biotechnology research performed by small firms. Creates a credit that would encourage investments in new therapies to prevent, diagnose, and treat acute and chronic disease, lower health care costs.\n•    Out-of-pocket cost limit for families between 300-400 percent of the federal poverty level – IMPORTANT FOR HIGH COST OF LIVING STATES. For those between 300-400 percent of FPL, within the same actuarial value, the benefit will include an out-of-pocket limit equal to two-thirds of the Health Savings Account (HSA) current law limit.\n•    Excluding more middle-class families, seniors from excise tax on high-value insurance plans – IMPORTANT FOR HIGH COST OF LIVING STATES (joined Sen. Kerry on amendment). Successfully fought to raise tax thresholds for retirees and high-risk workers so that their additional health needs could be recognized. Successfully fought to raise the indexing of the high premium excise tax threshold to save millions of family policies from being hit.\n•    Urban Medicare Hospitals. Some urban hospitals are highly dependent on Medicare payments because they serve high proportions of Medicare patients, but, unlike many otherwise similar hospitals, they do not receive any special add-on payments. This would provide for a study for a special add-on payment to be afforded this select group of hospitals that could be designated as urban Medicare-dependent hospitals.\n•    Guaranteeing consumers a fair appeal for a denial of coverage. Requires that each health care plan and health care insurance issuer offering coverage in the exchange must provide an internal claims appeal process and each state must provide an external review process for plans in the individual and small group markets.\n•    Require private insurers to fully reimburse Federally-Qualified Health Centers in the exchange (offered amendment with Sen. Lincoln). This amendment would ensure that FQHCs, which are a primary health care option for millions, would not lose revenue when treating newly insured patients gaining coverage through the new health insurance exchanges.\n•    Women’s Medical Home (included in bill prior to markup). Legislation creates an Innovation Center within CMS to test and evaluate different structures to increase patient care and lower cost. The center is required to test a number of different models, including a “medical home that addresses women’s unique health care needs.” \n•    Child-only insurance option and subsidies in the exchange.  Ensures that minor children qualify as exchange eligible individuals and would also provide for the availability of child-only health insurance coverage in the exchanges.\n•    Consumer protection for emergency services. Requires that each health care plan and insurance issuer offering coverage in the exchange must provide enrolled individuals coverage for emergency services without regard to prior authorization.  •    Ombudsman assistance with internal appeals. Allows policyholders to access the ombudsman created in the legislation for help with internal appeals.\n•    Ombudsman assistance with tax credit appeals. Allow policyholders to access the ombudsman for assistance in resolving problems with their premium and cost-sharing credits, and with assistance in filing appeals as needed.\n•    Value-Based Purchasing for Hospital Acquired Infections. This measure includes healthcare-associated infections, as measured by the prevention metrics and targets established in the Department of Health and Human Services’ HHS Action Plan to Prevent Healthcare-Associated Infections or any successor plan.\nProvisions included during full Senate debate\n•    Clarification and strengthening of provision guaranteeing consumers a fair appeal for a denial of coverage. All health insurers would be required to implement an internal appeals process for coverage denials, and states will ensure the availability of an external appeals process that is independent and holds insurance companies accountable.\n•    Clarification and strengthening provision expanding access to health care through community health centers. Private insurers would be required to fully reimburse Federally-Qualified Health Centers in the insurance exchange. This amendment would ensure that FQHCs, which are a primary health care option for millions, would not lose revenue when treating newly insured patients gaining coverage through the new health insurance exchanges.\n•    Holding health insurance companies accountable. The Government Accountability Office would conduct a study on the rate of denial of coverage and enrollment by health insurance issuers and group health plans.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ff34c727-1c0c-4c50-a84b-63879ff87d62,\"MENENDEZ HELPS WALL STREET ACCOUNTABILITY LEGISLATION PASS BANKING COMMITTEE\n                    \n                            Bill contains a number of provisions championed by Menendez (LIST INCLUDED)\n                    \n                      March 22, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, today voted in favor of Wall Street accountability legislation as it passed the committee by a 13-10 vote. No Republicans voted in favor of the legislation, which would set new rules for financial activity on Wall Street to rein in irresponsible behavior in order to prevent another financial meltdown such as the one that caused the recent recession.\n“We are one step closer to the type of accountability on Wall Street that families on Main Street have been waiting for during these tough economic times,” said Menendez. “The bill we passed is a good starting point from which we can work in the full Senate, and I applaud Chairman Dodd for including a number of family protection provisions that I championed. When all is said and done, I expect that we will pass legislation that reins in the type of reckless financial behavior that has cost millions of Americans their jobs, homes and nest eggs.”\nProvisions in the Dodd bill that Menendez requested:\n\nMunicipal bond ratings (helps local governments finance job-creating projects): requires credit rating agencies to use a universal standard for corporate and municipal bonds.\nOff-sheet balance activity (relates to the type of accounting gimmicks Lehman Brothers used): requires regulators to take all off-balance sheet activities into account when calculating capital and other requirements.\nAvoiding systemic risk: requires financial regulatory agencies to produce regular reports on how they are using capital and liquidity standards to avoid systemic risk.\nFDIC remains regulator for community banks\nDisclosure of CEO-to-worker pay ratio: requires publicly-listed companies to disclose in their annual SEC filing the amount of CEO pay, the amount of the median company worker pay, and the ratio of the two.\nProhibiting brokers from voting client shares on key compensatory issues: prohibits brokers from voting uninstructed client shares in votes on “say on pay” and other significant decisions as determined by the SEC.\nPermanent financial education program: Creates a permanent Financial Education and Counseling Program that makes grants available to community groups to provide education.\nProvisions in the Dodd bill that partially address Menendez requests:\n\nPre-funded crisis fund (ends need for future taxpayer bailouts – Menendez is author of the Ending Taxpayer Bailouts by Making Wall Street Pay Act, http://menendez.senate.gov/newsroom/press/release/?id=546dc612-a624-4ab5-9f22-a50aa98413cd: Requires risky firms to pay into a fund that would be available to wind down any risky firm that fails. Assessments would be based on the risk posed to the system.  In the case of failure, shareholders would pay first; the fund would be used only to prevent spillover effects of a failure and wind down the firm, not to bail out a firm or keep it going.  \nInspector General reform at federal financial regulatory agencies: Requires Presidential appointments and Senate confirmation of Inspectors General at financial regulatory agencies; requires financial regulators to respond when Inspectors General identify deficiencies – either by taking corrective action or explaining to Congress why they are not; requires Inspectors General to report to the board of the organization rather than the head of the organization; requires publication of any negative recommendations from the Inspectors General’s peer review of other Inspectors General’s work.\nWhistleblower protections: Amends the Sarbanes-Oxley Act to improve anti-retaliation protections for whistleblowers by expanding protection to cover whistleblowers at subsidiaries and affiliates of companies.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2beca97e-89a8-427c-b41f-502c96292ddf,\"VICTORY FOR AIR TRAVELERS: MENENDEZ “CLEAR AIRFARES” LEGISLATION INCLUDED IN SENATE AVIATION BILL\n                    \n                            When law, it will require airlines and travel sites to display all potential fees, charges and taxes in a clear and upfront manner\n                    \n                      March 22, 2010\n                     WASHINGTON – As part of the Federal Aviation Administration reauthorization bill, which passed the U.S. Senate by a 93-0 vote today, Senator Robert Menendez (D-NJ) successfully included a slightly-modified version of his Clear Airfares Act as an amendment to the legislation. Menendez’s provision aims to bring transparency to the price of flying through a full, clear and upfront breakdown of airfares. Before a consumer purchases a ticket on the Internet, the legislation would require airlines and third-party websites to give consumers a complete and understandable breakdown of his or her particular airfare, as well as any other possible fees that might be incurred on the flight (such as baggage, seat assignments, etc.). The Senate and House of Representatives now must negotiate and pass a final version of the FAA bill before it goes to President Barack Obama to be signed into law.\nCurrently, consumers must click to peripheral web pages and wade through often confusing text to understand whether or not their airfare includes surcharges and what other taxes and fees may have been added.\n“Money is tight, and families more than ever need to know what they are paying for, ” said Menendez. “Too often, trying to decipher your airfare is like trying to land a jet in a thunderstorm with no instruments – technically possible, but difficult. Families deserve an honest transaction, including a clear and upfront breakdown of what they are paying for and what they might have to pay when they get to the airport. I am pleased that this has been included in the legislation, and I am eager to see it become law.  As with all legislation, to be effective, the Executive Branch will need to enforce this law in order for it to be effective, so I look forward to working with the Department of Transportation as they implement these provisions.”\nThis provision is co-sponsored by Senators Charles Schumer (D-NY), Mary Landrieu (D-LA), Jim Webb (D-VA) and Ron Wyden (D-OR). It has gained the support of major consumer groups including:\n•    Consumer Federation of America: http://menendez.senate.gov/imo/media/doc/ConsumerFederationClearAirfares.pdf\n•    Consumer Travel Alliance: http://menendez.senate.gov/imo/media/doc/ConsumerTravelAllianceClearAirfares.pdf\n•    FlyersRights.org: http://menendez.senate.gov/imo/media/doc/FlyersRightsClearAirfares.pdf \nThe Menendez Clear Airfares provision would direct the Department of Transportation to formulate rules that require airlines or third-party websites to clearly and conspicuously disclose any fees, charges or surcharges, including holiday fees, for consumers to be able to clearly view before having to input their name and credit card information.\n                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=46b0f58b-eb7f-4ca8-9f79-e89a8246341c,\"Major Initiative to Combat Postpartum Depression to be Signed into Law As Part of Health Insurance Reform\n                    \n                            MOTHERS Act, sponsored by Sen. Menendez, will establish support, educational and research programs\n                    \n                      March 22, 2010\n                     WASHINGTON – Leaders in the fight against postpartum depression are celebrating today as The Melanie Blocker Stokes MOTHERS Act – legislation sponsored by U.S. Senator Robert Menendez (D-NJ) to combat postpartum depression – will become law as part of landmark health insurance reform that passed Congress last night. The legislation will establish a comprehensive federal commitment to combating postpartum depression through new research, education initiatives and voluntarily support service programs.\n\n“Millions of mothers nationwide who are suffering or will suffer from postpartum depression are among the winners as a result of the new health insurance reform law,” said Senator Menendez. “These women understand that postpartum depression is serious and disabling, and that the support structure to help prepare for and overcome it is has been woefully insufficient. We will attack postpartum depression on multiple fronts – with education, support, and research – so that new moms can feel supported and safe rather than scared and alone. I applaud the incredible group of advocates and inspirational women who helped this become a reality, I applaud Rep. Bobby Rush and Senator Richard Durbin for helping to champion this cuase, and I am absolutely thrilled that this will be the law of the land.”\n“Finally, women all over the county are going to have access to the kinds of support services and information that women in New Jersey have had for a number of years,” said Mary Jo Codey, former First Lady of New Jersey and leading advocate in the fight against postpartum depression. And we're going to get more research into these insidious illnesses. This is what I'd worked and hoped for over a long period of time. I almost can't believe it finally happened!\"\"\n “We are so indebted to Senator Menendez and everyone on Capitol Hill who recognized that we needed to do so much more to educate women about postpartum depression, to ensure that healthcare providers are able to identify those who suffer, and to provide sufficient resources and services for recovery in every corner of our country,” said Katherine Stone, author of Postpartum Progress, the most widely-read blog on postpartum depression and other mental illnesses related to childbirth, and board member of Postpartum Support International. “We needed their help to raise awareness at the federal level and make this a healthcare priority, and they’ve done just that.  There is no doubt that this new legislation will help save the lives of many new mothers and ensure that their families have a healthier start.”\n“The American Psychological Association applauds the passage of the MOTHERS Act, which will improve the health and well being of approximately 800,000 women suffering from postpartum depression, included in health care reform legislation. The MOTHERS Act will expand research, outreach and education to mothers, families, and health care professionals on this critical issue,” states Gwendolyn Puryear Keita, PhD, Executive Director, Public Interest Directorate, American Psychological Association. \nSusan Dowd Stone, Chair President's Advisory Council, Postpartum Support International said, “Senator Robert Menendez, you are an unwavering champion of the women and infants you represent. Against all odds, you never once set aside this initiative. You are not just the Senator from New Jersey, you are the Senator of America’s mothers.”\nDr. Gerald F. Joseph, President of the American Congress of Obstetricians and Gynecologists, applauds Senator Menendez's leadership in ensuring inclusion of the MOTHERS Act in health care reform, saying \"\"This will ensure that women and their health care providers have the best tools available to identify and treat all women that suffer from the very real and often severe results of postpartum depression.\"\" \n“Adoption of the MOTHERS Act is a positive development for women and their families,” said American Psychiatric Association President Alan F. Schatzberg, M.D. “Now the many women who are suffering from postpartum depression will have the support needed to get the help for this treatable condition.”\n\"\"As a nurse dedicated to caring for expectant mothers and their newborns, I applaud the passage of the MOTHERS Act.  This legislation will provide much needed support services and education to women suffering from postpartum depression,\"\" said Karen Peddicord, CEO of the Association of Women's Health, Obstetric and Neonatal Nurses.\n\"\"Midwives are particularly sensitive to the need for support for mothers in the postpartum period and have long advocated for more intensive follow-up for all new mothers. We are so pleased by the passage of the MOTHERS Act which Senator Menendez has championed,\"\"  stated Melissa Avery, CNM, PhD, FACNM, President of the American College of Nurse-Midwives.\n“The March of Dimes deeply appreciates the Senator's leadership on this important issue,\"\" said Marina L. Weiss, Ph. D, senior vice president of public policy and government affairs for the March of Dimes. \"\"Postpartum depression is a serious problem that takes a toll on women and infants as well as on their families.  The Senator’s proposal, approved by Congress last night, will ensure that necessary resources are made available to promote early diagnosis and treatment of post partum depression.  The provision holds great promise for improving birth outcomes for women and children in every state across the nation.\"\"\n\nBACKGROUND\nPostpartum depression is a serious and disabling condition affecting hundreds of thousands of new mothers each year. The new law will increase federal efforts to combat postpartum depression by:\n•    Encouraging Health and Human Services (HHS) to coordinate and continue research to expand the understanding of the causes of, and find treatments for, postpartum conditions.  •    Encouraging a National Public Awareness Campaign, to be administered by HHS, to increase awareness and knowledge of postpartum depression and psychosis.  •    Requiring the Secretary of HHS to conduct a study on the benefits of screening for postpartum depression and postpartum psychosis.  •    Creating a grant program to public or nonprofit private entities to deliver or enhance outpatient, inpatient and home-based health and support services, including case management and comprehensive treatment services for individuals with or at risk for postpartum conditions.  Activities may also include providing education about postpartum conditions to new mothers and their families, including symptoms, methods of coping with the illness, and treatment resources, in order to promote earlier diagnosis and treatment. \nIt is estimated that postpartum depression (PPD) affects from 10 to 20 percent of new mothers. In the United States, there may be as many as 800,000 new cases of postpartum conditions each year.  The cause of PPD isn’t known but changes in hormone levels, a difficult pregnancy or birth, and a family history of depression are considered possible factors.  \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f2a0ef55-a523-4205-b834-a6e7d034e96e,\"MENENDEZ HAILS ENACTMENT OF HEALTH INSURANCE REFORM\n                    \n                            Member of Senate Finance Committee will have at least 16 of his cost-saving and consumer protection provisions become law (LIST INCLUDED)\n                    \n                      March 21, 2010\n                     WASHINGTON – Tonight, the U.S. House of Representatives approved the health insurance reform legislation passed by the Senate in December, sending it to President Barack Obama to be signed into law. U.S. Senator Robert Menendez (D-NJ), a member of the Finance Committee who gained inclusion of at least 16 of his amendments to reduce costs and protect families, said following the House vote that the historic bill will help provide health and economic security for families for generations to come. He released the following statement:\n“From the beginning, we approached this historic legislation with one simple truth in mind: good, affordable health insurance should be a right, not a privilege for the wealthy. The health of American families should never be viewed simply as a commodity used to maximize profits. Yet, millions of families struggle every single day with health insurance that is unaffordable, unreliable or unavailable. Today, we have accomplished insurance reforms sought for generations that will protect the health and economic security of our families and our nation in three main categories. \nFirst, we will finally have common sense rules that will protect families from insurance company bureaucrats who deny claims or deny coverage to protect a corporate bottom line. Second, we are finally helping regular, hard-working families, seniors and small businesses to better afford health insurance, including the greatest middle class health care tax relief in history. Third, we are finally providing quality and affordable coverage through insurance choice and competition for 30 million Americans who have been laid off or aren’t offered insurance by their employer. What this means for the nation is a significant reduction in the budget deficit, as estimated by the impartial, non-partisan Congressional Budget Office. In the Senate, we are preparing to act on modifications to the law that will make insurance even more affordable for more middle class families, and I look forward to fully completing health insurance reform with those provisions.\n“Year after year, health insurance costs have gone up, coverage for medical treatment has been denied and emergency care for the uninsured has saddled governments with debt. All along, despite presidents and Congresses hoping to reform the health insurance system, the insurance lobby and its allies have spent many millions of dollars to deny it. This effort did not begin last year, it began decades ago.  Recently, special interests and their loyalists flooded the airwaves with more fear and fabrication than ever. But today, we can finally say that we have overcome the fearmongering and fabrications to deliver the peace of mind that comes with knowing your health insurance will be there when you need it the most.”\nThe legislation will set in place new health insurance rules to protect families and seniors, including prohibiting coverage denials because of “pre-existing conditions”, prohibiting arbitrarily denied or dropped coverage, and the elimination of lifetime coverage limits. It will make insurance more affordable with provisions including tax credits to working families, insurance choice and competition as part of a new national insurance exchange, free preventative care and greater prescription drug coverage for seniors and tax credits for small businesses. And it will help more than 30 million Americans who do not receive insurance through their employers to finally have access to quality, affordable insurance via the insurance exchange.\nThe Senate will next consider House-passed modifications to the bill that will make health insurance even more affordable for middle class families and will reduce the budget deficit by $130 billion over the first ten years and $1.2 trillion over the following ten, as estimated by the impartial Congressional Budget Office.\nMENENDEZ PROVISIONS INCLUDED IN THE LEGISLATION\n            Provisions included during Finance Committee work•    Medicare reimbursement costs sharing for hospitals – will generate approx. $70 million per year in savings for New Jersey hospitals (top priority of the New Jersey Hospital Association). Current law ensures that hospitals in highly-urban states, like New Jersey, are protected from receiving unfairly low Medicare reimbursements. Provision would ensure that the costs associated with this protection are shared fairly by hospitals nationwide. \n•    AUTISM – Requiring insurance plans to provide behavioral health treatments. Plans in the exchange must cover behavioral health treatments as part of the minimum benefits standard. For example, applied behavior analysis is a behavioral health treatment for people with autism. Unless behavioral health treatment is explicitly spelled out as a covered benefit, people with autism are not likely to receive comprehensive healthcare. \n•    Support, education, and research for postpartum depression. Provides support services to women suffering from postpartum depression and psychosis and helps educate mothers and their families about these conditions.  In addition, supports research into the causes, diagnoses and treatments for postpartum depression and psychosis. \n•    Tax credit for critical biotechnology research performed by small firms. Creates a credit that would encourage investments in new therapies to prevent, diagnose, and treat acute and chronic disease, lower health care costs. \n•    Out-of-pocket cost limit for families between 300-400 percent of the federal poverty level – IMPORTANT FOR HIGH COST OF LIVING STATES. For those between 300-400 percent of FPL, within the same actuarial value, the benefit will include an out-of-pocket limit equal to two-thirds of the Health Savings Account (HSA) current law limit. \n•    Excluding more middle-class families, seniors from excise tax on high-value insurance plans – IMPORTANT FOR HIGH COST OF LIVING STATES (joined Sen. Kerry on amendment). Successfully fought to raise tax thresholds for retirees and high-risk workers so that their additional health needs could be recognized. Successfully fought to raise the indexing of the high premium excise tax threshold to save millions of family policies from being hit.\n•    Urban Medicare Hospitals. Some urban hospitals are highly dependent on Medicare payments because they serve high proportions of Medicare patients, but, unlike many otherwise similar hospitals, they do not receive any special add-on payments. This would provide for a study for a special add-on payment to be afforded this select group of hospitals that could be designated as urban Medicare-dependent hospitals. \n•    Guaranteeing consumers a fair appeal for a denial of coverage. Requires that each health care plan and health care insurance issuer offering coverage in the exchange must provide an internal claims appeal process and each state must provide an external review process for plans in the individual and small group markets. \n•    Require private insurers to fully reimburse Federally-Qualified Health Centers in the exchange (offered amendment with Sen. Lincoln). This amendment would ensure that FQHCs, which are a primary health care option for millions, would not lose revenue when treating newly insured patients gaining coverage through the new health insurance exchanges. \n•    Women’s Medical Home (included in bill prior to markup). Legislation creates an Innovation Center within CMS to test and evaluate different structures to increase patient care and lower cost. The center is required to test a number of different models, including a “medical home that addresses women’s unique health care needs.”  \n•    Child-only insurance option and subsidies in the exchange.  Ensures that minor children qualify as exchange eligible individuals and would also provide for the availability of child-only health insurance coverage in the exchanges. \n•    Consumer protection for emergency services. Requires that each health care plan and insurance issuer offering coverage in the exchange must provide enrolled individuals coverage for emergency services without regard to prior authorization.  •    Ombudsman assistance with internal appeals. Allows policyholders to access the ombudsman created in the legislation for help with internal appeals. \n•    Ombudsman assistance with tax credit appeals. Allow policyholders to access the ombudsman for assistance in resolving problems with their premium and cost-sharing credits, and with assistance in filing appeals as needed. \n•    Value-Based Purchasing for Hospital Acquired Infections. This measure includes healthcare-associated infections, as measured by the prevention metrics and targets established in the Department of Health and Human Services’ HHS Action Plan to Prevent Healthcare-Associated Infections or any successor plan. \nProvisions included during full Senate debate\n•    Clarification and strengthening of provision guaranteeing consumers a fair appeal for a denial of coverage. All health insurers would be required to implement an internal appeals process for coverage denials, and states will ensure the availability of an external appeals process that is independent and holds insurance companies accountable. \n•    Clarification and strengthening provision expanding access to health care through community health centers. Private insurers would be required to fully reimburse Federally-Qualified Health Centers in the insurance exchange. This amendment would ensure that FQHCs, which are a primary health care option for millions, would not lose revenue when treating newly insured patients gaining coverage through the new health insurance exchanges. \n•    Holding health insurance companies accountable. The Government Accountability Office would conduct a study on the rate of denial of coverage and enrollment by health insurance issuers and group health plans. \n                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2662da93-f2ba-475b-98a6-fa95ea7fdf5f,\"MENENDEZ, CORNYN INTRODUCE FIRST-EVER RESOLUTION RECOGNIZING NOWRUZ – THE PERSIAN NEW YEAR \n                    \n                            Resolution would officially recognize the cultural and historical significance of the holiday  \n                    \n                      March 19, 2010\n                     WASHINGTON –  U.S. Senators Robert Menendez (D-NJ) and John Cornyn (R-TX) have introduced a resolution honoring and celebrating Nowruz, the Persian New Year. Together with H.Res. 267 in the House of Representative, passage of the resolution would mark the first time Congress has formally recognized this cherished holiday for people of Iranian descent. The resolution is co-sponsored by Senators Jim Webb (D-VA), Joseph Lieberman (I-CT), Robert Byrd (D-WV), Roland Burris (D-IL), Frank Lautenberg (D-NJ), Orrin Hatch (R-UT), Ted Kaufman (D-DE), Jeff Merkley (D-OR), John McCain (R-AZ), Russell Feingold (D-WI), Barbara Boxer (D-CA), Sherrod Brown (D-OH), Amy Klobuchar (D-MN) and Carl Levin (D-MI). Nowruz is celebrated at the Vernal Equinox, which this year takes place on March 20 at 1:32pm (Eastern time).\"\"Recognizing the historical and cultural significance of the Persian Nowruz holiday is an important and long-overdue milestone,” said Senator Menendez. “Nowruz is both an ancient Persian ritual and a moment of renewal that celebrates life. I am honored to represent a vibrant Iranian-American community in my home state of New Jersey, where they have contributed to our collective prosperity, cultural richness and diversity. With the coming of a new season, let us reflect on the precious humanity that we all share. I’d like to take this opportunity to wish all people of Iranian descent a healthy and prosperous new year.”“The celebration of Nowruz is an important and meaningful occasion for millions of people of Iranian descent around the world each year,” said Senator Cornyn. “Its origins and significance embody the belief that each individual’s conduct should reflect compassion for our fellow human beings—regardless of ethnicity or religion.  It is my privilege to wish Iranian-Americans and the people of Iran a new year filled with peace and hope.”“One of the many strengths of our country is the diversity of our population and our appreciation, respect, and inclusion of diverse cultures,” said Senator Webb. “Iranian-Americans have made important contributions toward our nation’s success, and I congratulate them on this culturally and historically significant day.”                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=aa322b1f-0f22-44b7-8af0-996a21693e22,\"SENATORS MENENDEZ AND LAUTENBERG ANNOUNCE $11.5 MILLION FOR NEW JERSEY TO ADVANCE HEALTH INFORMATION TECHNOLOGY \n                    \n                             Goal is to provide use of an electronic health record by every citizen by the year 2014\n                    \n                      March 18, 2010\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced that the Department of Health and Human Services has awarded the New Jersey Health Care Facilities Financing Authority $11,408,594 to help states establish health information exchanges (HIE) that advance health information technology (health IT).  These exchanges will enable eligible healthcare providers to be deemed meaningful users of health IT and receive incentive payments under the Medicare and Medicaid electronic health record (EHR) incentive program.\n“This large investment will create a more efficient and accurate health care system as well as new jobs in our state,” said Menendez. “Through the creation of a health information exchange, New Jersey will be one step closer to enabling care coordination and improving the quality and efficiency of health care. Medical histories will be available instantaneously for doctors anywhere a patient is treated. That will make treatment quicker, safer and more effective, and it will create employment opportunities as this system is implemented.”\n“These new funds will help establish the information technology infrastructure we need to improve patient care, reduce costs, and exchange critical medical information accurately and efficiently.” said Lautenberg, who as a member of the Senate Appropriations Committee helped author the American Recovery and Reinvestment Act (ARRA).  “Health information exchanges are a technological breakthrough that will help move our health care system into the 21st century and improve quality of care.”   \nFunded by the American Recovery and Reinvestment Act of 2009, this award is part of the $2 billion effort to achieve widespread meaningful use of health IT.\nAdditional information about the state HIE program may be found at http://healthit.hhs.gov/portal/server.pt?open=512&objID=1488&parentname=CommunityPage&parentid=2&mode=2&in_hi_userid=10741&cached=true and http://www.whitehouse.gov/the-press-office/sebelius-solis-announce-nearly-1-billion-recovery-act-investment-advancing-use-heal Information about other health IT programs funded through the American Recovery and Reinvestment Act of 2009 can be found here: http://HealthIT.HHS.gov\n                                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c6e471b2-5f3a-4266-9a02-b2b21d130619,\"MENENDEZ INSERTS NJ/NY/PHILLY AIR NOISE STUDY INTO SENATE AVIATION BILL\n                    \n                            Provision will require FAA to monitor and report air noise impacts as a result of airspace redesign around New Jersey, New York, Philly airports\n                    \n                      March 18, 2010\n                     WASHINGTON – As the U.S. Senate considers legislation reauthorizing the Federal Aviation Administration, Senator Robert Menendez (D-NJ) has secured an agreement to include a provision to require the FAA to monitor and report air noise impacts related to the FAA’s airspace redesign for New Jersey, New York City and Philadelphia. The FAA claims that the redesign will actually reduce air noise impacts, but many New Jersey families living along new flight paths expressed concern over the plan leading up to its implementation in 2007.  \n“The constant roar of jet engines overhead can interrupt children trying to learn in school, conversations at the dinner table, or the sleep of an infant,  ” said Menendez. “Many of us were concerned about the noise effects of the redesign plan, but the FAA insisted that air noise would actually be reduced.  The FAA’s contention was based solely on computer modeling and not measurement of air noise. My amendment will provide the data on actual air noise impacts and help us make policy decisions going forward.”\nThe Menendez provision directs the FAA to monitor the noise impacts of the redesign no later than nine months after enactment of the bill and every six months thereafter. It will report to Congress on its findings.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fb2d0e16-b15f-4575-9ac8-f5e7f2ff8027,\"SENATORS MENENDEZ AND LAUTENBERG ANNOUNCE $11.5 MILLION FOR NEW JERSEY TO ADVANCE HEALTH INFORMATION TECHNOLOGY\n                    \n                             Goal is to provide use of an electronic health record by every citizen by the year 2014\n                    \n                      March 18, 2010\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced that the Department of Health and Human Services has awarded the New Jersey Health Care Facilities Financing Authority $11,408,594 to help states establish health information exchanges (HIE) that advance health information technology (health IT).  These exchanges will enable eligible healthcare providers to be deemed meaningful users of health IT and receive incentive payments under the Medicare and Medicaid electronic health record (EHR) incentive program.\n“This large investment will create a more efficient and accurate health care system as well as new jobs in our state,” said Menendez. “Through the creation of a health information exchange, New Jersey will be one step closer to enabling care coordination and improving the quality and efficiency of health care. Medical histories will be available instantaneously for doctors anywhere a patient is treated. That will make treatment quicker, safer and more effective, and it will create employment opportunities as this system is implemented.”\n“These new funds will help establish the information technology infrastructure we need to improve patient care, reduce costs, and exchange critical medical information accurately and efficiently.” said Lautenberg, who as a member of the Senate Appropriations Committee helped author the American Recovery and Reinvestment Act (ARRA).  “Health information exchanges are a technological breakthrough that will help move our health care system into the 21st century and improve quality of care.”    \nFunded by the American Recovery and Reinvestment Act of 2009, this award is part of the $2 billion effort to achieve widespread meaningful use of health IT. \nAdditional information about the state HIE program may be found at http://healthit.hhs.gov/portal/server.pt?open=512&objID=1488&parentname=CommunityPage&parentid=2&mode=2&in_hi_userid=10741&cached=true  and http://www.whitehouse.gov/the-press-office/sebelius-solis-announce-nearly-1-billion-recovery-act-investment-advancing-use-heal Information about other health IT programs funded through the American Recovery and Reinvestment Act of 2009 can be found here: http://HealthIT.HHS.gov\n                                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a451c07e-31c3-478c-a7c6-735e95cd8361,\"MENENDEZ HAILS FINAL PASSAGE OF FIRST PIECE TO JOBS AGENDA\n                    \n                            HIRE Act provides tax relief for businesses, supports local job-creating projects\n                    \n                      March 17, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today hailed the final passage of the HIRE Act – the first piece to the Democrats’ Jobs Agenda. This legislation, which passed the Senate by a 68-29 vote, will provide tax incentives to businesses that hire and tax relief for small businesses that purchase major equipment, and will support major local infrastructure projects. It will now be signed into law by President Obama.\n“This first piece of our Jobs Agenda brings the type of tax relief and incentives that small businesses and local governments need to create jobs and ease their budget strains,” said Menendez. “It targets sectors where jobs can be created quickly – small businesses and local infrastructure construction – and it does so in a way that is cost-effective to taxpayers. We understand the economic concerns that families throughout New Jersey and the nation are saddled with, and this is only the beginning of the job-creation legislation that we intend to champion this the year.”\nThe bill focuses on measures that would create jobs quickly and garner bipartisan support, including:\nPayroll tax holiday for businesses to encourage hiring\nTax relief for major equipment purchases to help small businesses expand\nExtension of the Highway Trust Fund allows for billions in infrastructure investment and save one million jobs\nExpansion of Build America Bonds program to allow states to borrow more for infrastructure projects\nBill is paid for by:\nForeign Account Tax Compliance Act\n3 year delay in implementation of worldwide interest allocation\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=81294ec0-7b05-4a22-b82e-0378d29fee19,\"SENATORS MENENDEZ AND LAUTENBERG ANNOUNCE FUNDING FOR PATERSON YMCA SUMMER EDUCATION AND SERVICE PROGRAMS\n                    \n                             Funding will help promote local youth community engagement through environmental education and civic service; funding awarded through 2010 Learn and Serve America Summer of Service Grant\n                    \n                      March 17, 2010\n                     WASHINTON –  Today, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced that Paterson YMCA has been awarded a $50,000 Summer of Service grant from the Corporation for National and Community Service.  \nPaterson YMCA will utilize this funding to implement ScienceFaction, a summer enrichment service program that builds upon an existing pilot program designed to address environmental issues and disaster preparedness. These financial resources will allow the organization to add a service-learning component to the program and target 100 middle school-aged youth for participation. Youth participants will engage in service projects, including river clean-up, design and creation of bio-retention filters, and the development and launch of a campaign to encourage community businesses to recycle. The service-learning component will teach and engage students on environmental issues that are not covered during the regular school year based on Paterson public school’s science curricula. “These types of education and service activities are downpayments on the development of our youth and on the strength of our communities,”  said Senator Menendez.  “I congratulate Paterson YMCA for receiving this grant and for their continued commitment to encouraging education, engagement and active participation in our communities.”\n“This investment will help Paterson’s students stay engaged in their community even after the school year is over,” stated Senator Lautenberg.  “Educating Paterson’s promising young students outside of the classroom will be a lift for the city and an exciting new way for these students to learn about the importance of community service.”     \n“These grants will help put tomorrow’s leaders to work solving American’s most pressing problems today,” said Patrick Corvington, the Corporation’s CEO. “Thousands of young people will now have an opportunity to make real and lasting impact in their communities, while starting on a lifelong path of service.”Summer of Service grants are awarded by Learn and Serve America, the nation’s leading provider of service-learning grant funding administered by the Corporation for National and Community Service. Service-learning is a method of teaching and learning that connects classroom lessons with meaningful service to the community. Students build academic skills while strengthening communities through service. \nIn 2010 the agency awarded a total of $2 million in grants to 17 nonprofit organizations, universities and schools that oversee summer service-learning programs for low-income students in grades 6 through 9.  The grants seek to support innovative projects that engage young people in addressing local environmental or disaster preparedness issues. More than 4,000 students across the country will participate in a myriad of activities including assessing local environmental issues, planting gardens, “greening” homes, preparing and distributing disaster preparedness kits, and undertaking service projects in local and national parks. In addition to the grant funding, participants in the Summer of Service program who complete at least 100 hours of service will be eligible to receive a $500 education award that can be used to pay for post-secondary education expenses. \nClick HERE to read more about the grant and program. \n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1ba99543-ef57-446c-a1db-7632a08c9bbc,\"SENATOR MENENDEZ INITIATES SURVEY OF FORTUNE 500 COMPANIES TO ASSESS MINORITY AND WOMEN REPRESENTATION IN AMERICA’S TOP BOARDROOMS\n                    \n                            Survey meant to collect aggregate information of women and minorities on corporate board, on executive management team and in procurement practices\n                    \n                      March 16, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), Chairman of the Senate Democratic Task Force and the lone Hispanic Senator in the Senate, today announced his efforts to help develop a complete understanding of diversity among the senior management of Fortune 500 companies. He has sent a survey to each Fortune 500 company, which is meant to gauge the amount of minority and women representation on their corporate boards and their management teams, as well as their use of minority and women-owned businesses in the contracting and procurement arena. The survey is meant to produce an aggregate report on the state of participation by minorities and women in corporate management, and the responses from individual companies will be kept confidential. Menendez’s office does plan to release a list of companies that refuse to participate.\n“We need a snapshot that will show us if the boardrooms high atop Wall Street look like what we see every day walking down Main Street,” said Senator Menendez. “As Chair of the Senate Democratic Hispanic Task Force, one of my top priorities has always been promoting and expanding diversity at all levels of our economic, political and social sectors, and the basic understanding that will come from this survey will help guide us in doing so. Hispanics, for instance, represent more than 15 percent of our population and encompass nearly $1 trillion in purchasing power, and I believe it is very important that our nation’s corporations reflect those realities. That is why I am asking our nation’s major corporations and firms to join me in this informational venture regarding the highest levels of their decision-making teams. I invite my Senate colleagues to join me in this effort, and hope that we will continue to make history together when it comes to improved diversity in our social, economic and political sectors.”\n“As a national organization of Latino business leaders united to advance the American Latino community, we are concerned by the dismal statistics on diversity among the top echelons of our nation’s leading corporations. That is why we applaud Senator Menendez’s initiative and encourage others to follow his leadership,” said John Guerra, President of the New America Alliance. \nIn the letter to Fortune 500 company CEOs that accompanies the survey, Senator Menendez encouraged major corporations and financial institutions to evaluate the level of minority representation, particularly Hispanics, on their corporate boards and most senior executive positions and to complete the survey by May 1st. Aggregate data compiled from companies through this survey will be publicly presented after the project is completed.\nA recently updated report by the New America Alliance (NAA), which supports this effort, cites dismal statistics on the use of Hispanic-owned money management firms in the U.S. and asks the question what are we doing about this issue. \nTo view a copy of the survey, click here: http://menendez.senate.gov/imo/media/doc/Menendez Diversity Survey2.pdf\nTo read a PDF of the letter click here: http://menendez.senate.gov/imo/media/doc/Menendez Diversity Survey Letter.pdf\nFULL TEXT OF THE LETTER:\nDear ___________\nAs Chair of the Senate Democratic Hispanic Task Force and as the only Hispanic serving in the United States Senate, one of my top priorities is promoting and expanding diversity at all levels of our economic, political and social sectors.  That is why I write to express my support for minority representation on your board and in your senior management, as well as in your company’s procurement of goods and services, and request that you fill out the attached survey detailing your progress in these areas. Given that Hispanics represent more than 15 percent of our population and encompass nearly $1 trillion in purchasing power, it is very important that our nation’s corporations – both large and small – reflect that diversity in their decision-making structures. \nAs a United States Senator, I have cast numerous votes this year to confirm a highly diverse group of nominees to federal posts in the current administration.  In fact, these nominees represent the most diverse group of any presidential administration and contain the highest number of Latino appointments ever in the history of this nation. \nHowever, for many years, I have been concerned with the poor level of Hispanic representation on corporate boards and among senior executives across major corporations and financial institutions in this country. I am encouraged that the SEC has recently adopted corporate governance and executive compensation rules that require companies to disclose whether and how their diversity policy is implemented when selecting their Board, which is an important first step to holding our corporate sector accountable but we still have more to do.  I have also been concerned with the persistent underrepresentation of Hispanic-owned businesses in the contracting and procurement arena.  According to a recent survey by the Hispanic Association on Corporate Responsibility (HACR), Hispanic businesses are still underrepresented in the procurement process. In fact, although a majority of the Fortune 100 companies who responded to HACR’s survey utilize Hispanic-owned firms, the actual dollars allocated to those firms represented a mere two percent of their spending.  For these reasons, I am conducting this survey to gain a better understanding of Hispanic participation in our corporate executive teams, board rooms and procurement practices.  \nIt is my hope that we can make history together in your corporate boardrooms and in your executive management teams by taking tangible steps to ensure qualified Hispanics and other minorities are adequately represented.  Completion of this survey will show your commitment to improving diversity among the highest ranks of your corporation.  I fully intend to have a public presentation of the data compiled from companies that participate, as well as shed light on those that do not.  My goal is not to embarrass but instead to work with you to promote our shared goals of diversity.  I would appreciate a response no later than May 1, 2010. \n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a45aa91a-70c6-450a-ab9e-430f0b73ed1e,\"MENENDEZ PLEDGES TO HELP FAMILIES, LOCAL GOVERNMENTS SECURE EMERGENCY ASSISTANCE AFTER DEVASTATING WEEKEND NOR’EASTER\n                    \n                            In order to help protect against future flooding, Menendez has already helped garner more than $38 million in federal funding this year for prevention projects  \n                    \n                      March 15, 2010\n                     WASHINGTON –  With this weekend’s Nor’Easter resulting in widespread flooding and downed trees, U.S. Senator Robert Menendez (D-NJ) today said that his constituent service operation is assisting affected New Jersey families. Members of Menendez’s office can help individuals get in touch with their local Office of Emergency Management. In the case that a federal disaster declaration that extends to individuals is eventually made, Menendez’s office would be able to help families contact the Federal Emergency Management Agency to apply for individual assistance. \nMenendez also said that he stands ready to support local government requests to secure emergency federal assistance. His office has been in contact with the Federal Emergency Management Agency, which indicated that it is monitoring the affects of the storm and will conduct quick disaster assessments when requested.\nIn addition to any emergency assistance that might be necessary to recover from this storm, Menendez highlighted more than $38 million in federal funding he helped secure for New Jersey this year alone, which will help prevent and minimize damage from future floods when the projects are complete.\n“Many thousands of our New Jersey neighbors are dealing with rising water and fallen trees in and around their homes,” said Menendez. “These can be tough economic challenges that in some cases will last long after the water has receded and the debris has been cleared. My office stands ready to help families, local emergency agencies and the state tap into the available resources that they deem necessary to advance the recovery process. My office is in contact with FEMA, and we have confirmed that it is standing ready to conduct quick disaster assessments when requested.\n“Because areas of our state are continually susceptible to flooding, I have fought for and secured tens of millions of dollars from the federal government for projects that, when completed, will help prevent and minimize damage from future floods. I will continue to fight for federal investments like those in the future.”\nNew Jersey families that seek assistance can contact Menendez’s office in the following ways:\n•    Newark office – 973-645-3030•    Barrington office – 856-757-5353•    Online: menendez.senate.gov – click on “Contact the Senator”\nFY2010 federal funding for flood control, prevention and mitigation projects in New Jersey:\nFrom the American Recovery and Reinvestment Act (supported by Senators Menendez and Lautenberg):\n•    $33 million for the Army Corps of Engineers, Flood Damage Reduction Project Raritan River, Green Brook Sub-Basin. This will fully fund the Sebrings Mills Bridge raising contract, the South Main Street Closure Gate contract, and the NJ Transit Right-of-Way Closure Gate contract.\nFY2010 Appropriations, requested and secured by Senators Menendez and Lautenberg:\n•    Army Corps of Engineers, Passaic River Basin Flood Management, New Jersey -- $5,000,000•    Delaware River Basin Commission, Delaware River Basin Enhanced Flood Warning System -- $200,000•    Army Corps of Engineers, Passaic River Flood Warning System -- $526,000\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c453fe00-eae1-4ad1-8304-13a302c185cf,\"MENENDEZ ON FINANCIAL REFORM BILL: “WALL STREET ACCOUNTABILITY MUST NOT WAIT ANY LONGER”\n                    \n                            Key provisions Menendez has championed included in bill – list included\n                    \n                      March 15, 2010\n                     WASHINGTON – As Senate Banking Committee Chairman Christopher Dodd unveiled new Wall Street accountability legislation today, U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, said that the Senate should work quickly on the bill. While Menendez said that he will work to improve the legislation in the committee, he said Chairman Dodd has provided a good starting point and applauded him for including a number of provisions that Menendez has championed to protect consumers, create jobs and ease the financial burden on local governments.\n“Since the Fall of 2008, families across the country have been expecting Congress to act to rein in the reckless schemes some on Wall Street undertake with Main Street money,” said Menendez. “Wall Street accountability must not wait any longer. This bill has a general framework for implementing accountability that represents a good starting point.  We’ve talked about this long enough, now it’s time to act. Chairman Dodd has held long and substantive bipartisan conversations in crafting this bill, and at the same time he has recognized the need for action. I am eager to get to the committee work on this bill, and I will judge it on its totality when we are ready for a final vote. One thing that is clear is that we need to start the process now. I hope that my Republican colleagues, who still resist committee action despite Chairman Dodd’s outreach and inclusion, will come to realize that this is a major priority for families that got burned by irresponsibility on Wall Street and will help move the process.”\nProvisions in the Dodd bill that Menendez requested:\n•    Municipal bond ratings (helps local governments finance job-creating projects): requires credit rating agencies to use a universal standard for corporate and municipal bonds.\n•    Off-sheet balance activity (relates to the type of accounting gimmicks Lehman Brothers used): requires regulators to take all off-balance sheet activities into account when calculating capital and other requirements.\n•    Avoiding systemic risk: requires financial regulatory agencies to produce regular reports on how they are using capital and liquidity standards to avoid systemic risk.\n•    FDIC remains regulator for community banks\nProvisions in the Dodd bill that partially address Menendez requests:\n•    Pre-funded crisis fund (ends need for future taxpayer bailouts – Menendez is author of the Ending Taxpayer Bailouts by Making Wall Street Pay Act, http://menendez.senate.gov/newsroom/press/release/?id=546dc612-a624-4ab5-9f22-a50aa98413cd): Requires risky firms to pay into a fund that would be available to wind down any risky firm that fails. Assessments would be based on the risk posed to the system.  In the case of failure, shareholders would pay first; the fund would be used only to prevent spillover effects of a failure and wind down the firm, not to bail out a firm or keep it going. \n•    Inspector General reform at federal financial regulatory agencies: Requires Presidential appointments and Senate confirmation of Inspectors General at financial regulatory agencies; requires financial regulators to respond when Inspectors General identify deficiencies – either by taking corrective action or explaining to Congress why they are not; requires Inspectors General to report to the board of the organization rather than the head of the organization; requires publication of any negative recommendations from the Inspectors General’s peer review of other Inspectors General’s work.\n•    Whistleblower protections: Amends the Sarbanes-Oxley Act to improve anti-retaliation protections for whistleblowers by expanding protection to cover whistleblowers at subsidiaries and affiliates of companies.\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8cc4dc66-bde1-4552-b2a0-10299d75ad9c,\"SENATOR MENENDEZ INITIATES SURVEY OF FORTUNE 500 COMPANIES TO ASSESS MINORITY AND WOMEN REPRESENTATION IN AMERICA’S TOP BOARDROOMS\n                    \n                            Survey meant to collect aggregate information of women and minorities on corporate board, on executive management team and in procurement practices\n                    \n                      March 15, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), Chairman of the Senate Democratic Task Force and the lone Hispanic Senator in the Senate, today announced his efforts to help develop a complete understanding of diversity among the senior management of Fortune 500 companies. He has sent a survey to each Fortune 500 company, which is meant to gauge the amount of minority and women representation on their corporate boards and their management teams, as well as their use of minority and women-owned businesses in the contracting and procurement arena. The survey is meant to produce an aggregate report on the state of participation by minorities and women in corporate management, and the responses from individual companies will be kept confidential. Menendez’s office does plan to release a list of companies that refuse to participate.\n“We need a snapshot that will show us if the boardrooms high atop Wall Street look like what we see every day walking down Main Street,” said Senator Menendez. “As Chair of the Senate Democratic Hispanic Task Force, one of my top priorities has always been promoting and expanding diversity at all levels of our economic, political and social sectors, and the basic understanding that will come from this survey will help guide us in doing so. Hispanics, for instance, represent more than 15 percent of our population and encompass nearly $1 trillion in purchasing power, and I believe it is very important that our nation’s corporations reflect those realities. That is why I am asking our nation’s major corporations and firms to join me in this informational venture regarding the highest levels of their decision-making teams. I invite my Senate colleagues to join me in this effort, and hope that we will continue to make history together when it comes to improved diversity in our social, economic and political sectors.”\n“As a national organization of Latino business leaders united to advance the American Latino community, we are concerned by the dismal statistics on diversity among the top echelons of our nation’s leading corporations. That is why we applaud Senator Menendez’s initiative and encourage others to follow his leadership,” said John Guerra, President of the New America Alliance. \nIn the letter to Fortune 500 company CEOs that accompanies the survey, Senator Menendez encouraged major corporations and financial institutions to evaluate the level of minority representation, particularly Hispanics, on their corporate boards and most senior executive positions and to complete the survey by May 1st. Aggregate data compiled from companies through this survey will be publicly presented after the project is completed.\nA recently updated report by the New America Alliance (NAA), which supports this effort, cites dismal statistics on the use of Hispanic-owned money management firms in the U.S. and asks the question what are we doing about this issue. \nTo view a copy of the survey, click here: http://menendez.senate.gov/imo/media/doc/Menendez Diversity Survey2.pdfTo read a PDF of the letter click here: http://menendez.senate.gov/imo/media/doc/Menendez Diversity Survey Letter.pdf\nFULL TEXT OF THE LETTER:\nDear ___________\nAs Chair of the Senate Democratic Hispanic Task Force and as the only Hispanic serving in the United States Senate, one of my top priorities is promoting and expanding diversity at all levels of our economic, political and social sectors.  That is why I write to express my support for minority representation on your board and in your senior management, as well as in your company’s procurement of goods and services, and request that you fill out the attached survey detailing your progress in these areas. Given that Hispanics represent more than 15 percent of our population and encompass nearly $1 trillion in purchasing power, it is very important that our nation’s corporations – both large and small – reflect that diversity in their decision-making structures. \nAs a United States Senator, I have cast numerous votes this year to confirm a highly diverse group of nominees to federal posts in the current administration.  In fact, these nominees represent the most diverse group of any presidential administration and contain the highest number of Latino appointments ever in the history of this nation. \nHowever, for many years, I have been concerned with the poor level of Hispanic representation on corporate boards and among senior executives across major corporations and financial institutions in this country. I am encouraged that the SEC has recently adopted corporate governance and executive compensation rules that require companies to disclose whether and how their diversity policy is implemented when selecting their Board, which is an important first step to holding our corporate sector accountable but we still have more to do.  I have also been concerned with the persistent underrepresentation of Hispanic-owned businesses in the contracting and procurement arena.  According to a recent survey by the Hispanic Association on Corporate Responsibility (HACR), Hispanic businesses are still underrepresented in the procurement process. In fact, although a majority of the Fortune 100 companies who responded to HACR’s survey utilize Hispanic-owned firms, the actual dollars allocated to those firms represented a mere two percent of their spending.  For these reasons, I am conducting this survey to gain a better understanding of Hispanic participation in our corporate executive teams, board rooms and procurement practices.  \nIt is my hope that we can make history together in your corporate boardrooms and in your executive management teams by taking tangible steps to ensure qualified Hispanics and other minorities are adequately represented.  Completion of this survey will show your commitment to improving diversity among the highest ranks of your corporation.  I fully intend to have a public presentation of the data compiled from companies that participate, as well as shed light on those that do not.  My goal is not to embarrass but instead to work with you to promote our shared goals of diversity.  I would appreciate a response no later than May 1, 2010. \n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=adb407d0-b9e0-45cb-ba61-c1e425c5aad2,\"Extension of Property Tax Relief Provision Originally Authored by Menendez Passes Senate\n                    \n                            400,000 New Jerseyans, 1,350,000 New Yorkers, 37 million Americans, including many fixed-income seniors, would be eligible for tax deduction of up to $1,000 for local property taxes \n                    \n                      March 15, 2010\n                     WASHINGTON – The U.S. Senate extended a property tax relief law originally authored by U.S. Senator Robert Menendez (D-NJ). Taxpayer homeowners who do not itemize deductions – many of whom are fixed income seniors – would receive an additional tax deduction of up to $1,000 for local property taxes. This tax deduction is currently in place for 2009, and under the extension, it will now apply to 2010 taxes as well.\n\n “Local property taxes are a major squeeze on household budgets in New Jersey, which is why I am working to bring as much relief as possible from the federal level,” said Menendez. “In writing this law, I focused on a group of homeowners that have a particularly tough time keeping up with rising property taxes. Extending the tax deduction by another year is critical in these tough times.\n\nUnder the law, single-filing property taxpayers who do not itemize will be able to take an additional standard deduction of up to $500 and joint filers will be able to deduct up to $1,000 for state and local property taxes paid. According to the Congressional Research Service, approximately 400,000 New Jersey residents will benefit from the initiative. Nationwide, there are 75 million owner-occupied households, but only 38 million of those taxpayers claimed an itemized deduction for real estate property taxes.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8408e825-a414-4b0e-84d2-de3f459b4518,\"2010 CENSUS: HELP BRING FEDERAL DOLLARS TO NEW JERSEY\n                    \n                      March 12, 2010\n                     Every ten years, the U.S. Census counts every resident in the United States to determine how the U.S. government will distribute more than $400 billion in federal funds, as well as to apportion congressional seats. For each New Jerseyan that does not return the 2010 Census questionnaire, New Jersey will lose up to $14,000 in federal funding per person over the next ten years. Every person counts and we all depend on your participation for a complete count, so that we can bring back the federal funding needed for our schools, hospitals and emergency services, including important programs like SCHIP and Medicare.  \nFor more information, please visit  the official 2010 Census page: http://2010.census.gov/2010census/\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=73fcc0d6-1d87-466f-b7ca-11da36e516fa,\"MENENDEZ AND LAUTENBERG ASK PRESIDENT TO GRANT DISASTER DECLARATION FOR AREAS OF N.J. HIT HARD BY FEB. BLIZZARD\n                    \n                            Approval of declaration would free up emergency resources for eight NJ counties\n                    \n                      March 11, 2010\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) today urged President Obama to approve the State of New Jersey’s request for a federal disaster declaration related to the massive snow storms that hit large parts of the state beginning on  February 5, 2010. The request covers eight counties that received, in some cases, more than two feet of snow: Atlantic, Burlington, Camden, Cape May, Cumberland, Gloucester, Ocean, and Salem.\n“With millions of dollars in damage caused by this snowstorm, New Jersey is seeking a much-needed disaster declaration to assist in the recovery of these hard-hit areas,” wrote the senators. “The devastation endured by New Jersey residents, business owners, and local governments merits a disaster declaration and emergency assistance.  This has been a very difficult winter for the state and we urge you to approve this request as soon as possible to ensure the people of New Jersey can begin to rebuild from this storm and mitigate against future disasters.”\nIf approved, the declaration would free up emergency federal funding to reimburse state emergency management agencies and counties for their recovery and rebuilding efforts.\nPDF of letter to President Obama: http://menendez.senate.gov/imo/media/doc/20100311ltr_DisasterDeclaration.pdf\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f1ed84e9-44b6-4349-b30b-8fc9411c41e0,\"MENENDEZ-KERRY BILL TO STRENGTHEN ORGANIZATION OF AMERICAN STATES, PROMOTE DEMOCRACY\n                    \n                      March 11, 2010\n                     WASHINTON - U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, and Committee Chairman John Kerry (D-MA), introduced legislation to strengthen the Organization of American States (OAS). The “Organization of American States Revitalization and Reform Act of 2010” (S.3087) would help refocus the OAS on key mission areas through reform and greater transparency in budgeting, accounting, and hiring.  \n “Our hemisphere, with few exceptions, is unified in its commitment to some of the noblest objectives in history – democracy, human rights, freedom, fairness, transparency, and justice,” said Menendez. “But there is more work to be done – as underscored by the erratic authoritarianism in Venezuela, the recent coup in Honduras, the human rights violations in Colombia, and ongoing abuses of the Castro regime.   It is in the interest of the United States to have a strong, capable and relevant multilateral forum in which to resolve disputes and build consensus around initiatives.”\n“The OAS is the primary venue for collaboration and coordination on security, democracy, the environment, and other critical issues here in our own hemisphere, from Canada to Tierra del Fuego,” said Kerry.  “To fulfill its mission in the 21st century, the OAS needs reform and modernization, and our legislation clearly moves it in that direction.”\nThe Menendez-Kerry bill works to focus the mission of the institution towards its natural areas of strength, adopt and implement improved accounting standards, put in place results-based budgeting processes, and adhere to transparent and merit-based human resource policies.  It also seeks to help agencies within the U.S. Government to better use the OAS as a forum to collaborate on areas of mutual interest like energy, citizen security, economic development, and trade. The core of the OAS programs consolidate democracy, monitor elections, and improve public security. \nClick HERE for a PDF of the “Organization of American States Revitalization and Reform Act of 2010” (S. 3087)\n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=00e6279a-9fb2-421a-9528-0a24775252db,\"MENENDEZ HAILS PASSAGE OF UNEMPLOYMENT INSURANCE EXTENSION, FEDERAL RELIEF FOR STATE BUDGET\n                    \n                            Legislation continues financial and health care assistance for laid off workers, helps NJ State budget with estimated $570 million for medical program reimbursements\n                    \n                      March 10, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today hailed the Senate passage of the American Workers, State and Business Relief Act – legislation that includes an extension of Recovery Act federal unemployment insurance and COBRA health coverage benefits for laid off workers that will run until the end of the year. At a time when the New Jersey state government is challenged by its unemployment insurance trust fund, this legislation ensures that the federal government will continue to fully pay for 73 out of the 99 total weeks of unemployment insurance for which laid off workers are eligible.\nIn addition, the legislation includes a six-month extension of Recovery Act increased federal reimbursements to states, which is estimated to deliver $570 million in additional federal Medicaid matching funds.\n“Providing a safety net for laid off workers keeps families afloat during these tough times, and economists cite it as one of the most effective recovery programs at our disposal,” said Menendez. “As we continue to work to create new jobs, we are assisting those who have lost their jobs to stay on their feet. This is not only important for families feeling the squeeze and for the larger economy, but it is also important for the state as it deals with an unemployment insurance budget crunch. Recovery Act programs have helped take a financial burden of off our state at a time when its budget is extremely tight, and extending these programs will help continue to alleviate those pressures.”\nBackground on unemployment insurance funding\nThrough the Recovery Act and other programs, the federal government provided the State of New Jersey with $3.5 billion for unemployment insurance programs between July 2008 and August 2009 – an amount that has only increased in the months since. Also as part of the Recovery Act, the state’s loan to cover its unemployment insurance trust fund shortfall was made interest free. Through his work on the Senate Finance Committee, Menendez was able to include New Jersey on a list of 22 states that qualified for full Unemployment Insurance Modernization funds, which have totaled $206.8 million for the state.\nBackground on Medicaid matching funds\nThrough Feb 5, 2010, New Jersey received an additional $1.4 billion in increased federal Medicaid matching funds through Recovery Act Medicaid provisions. Over the remainder of the original Recovery Act period, it is estimated that New Jersey will receive nearly an additional $1.0 billion for a total benefit of $2.4 billion. The extension of the federal Medicaid matching funds would add $570 million.\n                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2be86fd9-2f44-4050-b5ed-4d84bf808645,\"MENENDEZ AND LAUTENBERG ANNOUNCE DETAILS OF $52.4 MILLION FOR NJ TRANSIT IN RECOVERY ACT FUNDING\n                    \n                            Funds for Pennsauken Transit Center construction, Newark Penn Station traffic improvements, bus maintenance could create an estimated 4,000 jobs\n                    \n                      March 8, 2010\n                     WASHINGTON – In the wake of NJ Transit’s announcement of fare increases and service cuts on Friday, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg this morning announced the details of $52.4 million for NJ Transit from the federal American Recovery and Reinvestment Act. The investment, which could create an estimated 4,000 jobs, is intended to create employment, help upgrade the system and relieve budget strains by funding the following projects:\n•    $36.2 million to support construction of the new Pennsauken Transit Center•    $15.3 million to improve exterior pedestrian and traffic circulation at Newark Penn Station•    $35 million for maintenance of up to 2,148 NJ Transit buses (this will draw more than $34 million from a reallocation of previously-committed bus funding, meaning that the actual net new funding is $890,000)\n“This is a prime example of the Recovery Act at work, putting people to work and helping them get to their jobs.  Hopefully these funds will provide the state with budget relief that eventually will be passed on to public transportation riders,” said Menendez, Chairman of the Senate Banking Subcommittee on Housing, Transportation and Community Development. “On the heels of NJ Transit’s thoroughly disappointing fare hike and service cut announcement, this can help ease the state’s budget burden while creating jobs necessary to upgrade the public transportation system. When complete, these improvements will allow more New Jerseyans to save time and money by relying on public transportation. This investment helps advance three goals of the Recovery Act – jobs, long term economic security and state budget relief.”\n“This new federal Recovery Act funding will create jobs and improve mass transportation for thousands of commuters across New Jersey,” said Sen. Lautenberg, who as a member of the Senate Appropriations Committee helped write the American Recovery and Reinvestment Act. “Modernizing our transportation infrastructure will ensure we have safe, reliable and efficient transportation options that attract new riders and reduce congestion on our roads.  Together, these investments will jumpstart our economy and help us continue to build a 21st century transportation system.”\nBased on federal job-creation estimate models, this funding will create more than 360 jobs; however, these models are known by economists to be particularly conservative. In fact, based on a job creation model by Transportation for America and the Economic Policy Institute, this level of funding could create 4,000 jobs.\n          Background on projects:\nPennsauken Transit Center\nThis funding supports the construction of a new intermodal station and parking facility in Pennsauken, NJ that will allow passengers from NJ TRANSIT’s River LINE light rail service to transfer to NJ TRANSIT’s Atlantic City Line commuter rail service as well as local bus service. The scope includes construction of an approximately 280 space surface parking facility; a single low-level River LINE light rail platform; two high-level platforms on the Atlantic City Line; stairs and two elevators that will allow access to the Atlantic City Line platforms; and a bus boarding area.\nNewark Penn Station\nThis funding supports exterior pedestrian and traffic circulation improvements on the west side of Newark Penn Station. The scope includes construction of a mid-block roundabout and two-way traffic operation on Raymond Plaza West, and the realignment of Alling Street with Raymond Plaza West. Roadway improvements include crosswalks, traffic-calming speed tables, in-crosswalk warning lights, and increased drop-off and pick-up spaces with textured pavement. Pedestrian improvements include benches, way-finding signs, tree grates, pedestrian lighting, street, tree, and building uplighting, and plantings. The project scope also involves upgrading traffic signals and roadway lighting, a taxi queuing area, an intercity bus loading area and other related improvements.\nBus maintenance\nThis funding supports the rehabilitation of NJ TRANSIT’s bus fleet. The scope includes replacement of the various bus components such as engines, transmissions, pumps, motors, differentials, turbos, compressors and generators. Rehabilitation also includes major body work, structural repairs, rebuilding fare collection, radio and communication equipment, and bus repainting, as needed. There are potentially 2,148 buses involved in this project.\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=da5cfaaf-3464-460c-9c71-da3e5e87b901,\"SENATOR MENENDEZ CELEBRATES 100TH ANNIVERSARY OF INTERNATIONAL WOMEN’S DAY\n                    \n                      March 8, 2010\n                     WASHINGTON – In celebration of the 100th anniversary of International Women’s Day, US Senator Robert Menendez (D-NJ) today released the following statement:\n“Today we honor the great advancement and achievements of women from throughout the world during the last 100 years. We celebrate women making history - their invaluable contributions to our society, economy, and culture. This day also serves as a reminder of the many challenges that still lay ahead and as a source of inspiration to continue fighting for further equality, and justice for all women throughout the world. In this spirit, I look forward to continuing my work in the Senate on behalf of women’s continued progress.”\nAs an advocate on behalf of women’s rights, equality and justice, Senator Menendez, has worked on legislation to give women equal pay, help address postpartum depression, combat domestic violence, ensure health insurance reform addresses women’s needs, and defend women’s reproductive rights.\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=486caa1c-c730-4fa7-a079-26b03e64bdaa,\"HUMANE SOCIETY OF THE UNITED STATES AND HUMANE SOCIETY LEGISLATIVE FUND HONOR U.S. SENATOR MENENDEZ FOR ANIMAL WELFARE LEADERSHIP IN 2009\n                    \n                      March 5, 2010\n                     WASHINGTON— On behalf of its more than 436,000 supporters in New Jersey, The Humane Society of the United States, together with its affiliate, the Humane Society Legislative Fund, presented an award to U.S. Sen. Robert Menendez, D-NJ, for his leadership on animal protection legislation in 2009. Sen. Menendez received the Humane Champion award for earning a perfect score on the 2009 Humane Scorecard and for leadership on legislation to require the accurate labeling of fur apparel regardless of dollar value (closing a loophole in the current law which allows many fur-trimmed garments to be sold without labels disclosing the use of real fur or the species used), and legislation to establish a federal database for animal cruelty crimes. \n“We commend Senator Menendez for being an extraordinarily strong voice for animal protection policies in the U.S. Congress,” said Wayne Pacelle, President and CEO of The HSUS. “He’s been at the forefront on so many of the most pressing threats facing the health and well-being of animals, and we are enormously grateful for his compassion and tenacity.”\n\"\"It is truly an honor to receive this award for my work in the Senate to require accurate labeling of fur apparel (Truth in Fur Labeling Act of 2009 )  and the establishment of a federal database to track and crack down on animal cruelty crimes,” said Sen. Menendez.  “As a strong believer in the humane and respectful treatment of all animals, I have always made sure to stand up in support of animal welfare laws that uphold these moral values. I look forward to continuing my efforts on behalf of animal rights to uphold these standards.\"\"\nEvery year, the Humane Society Legislative Fund compiles a federal Humane Scorecard to provide a snapshot of animal protection issues considered by the U.S. Congress and give animal advocates a tool to assess the performance of their Senators and Representatives. The scorecard tracks key votes as well as co-sponsorship of important pro-animal bills and signing an annual letter seeking funds needed to enforce key animal welfare laws. For 2009, Senate ratings included votes on Endangered Species Act rules and loaded guns in national parks, and co-sponsorship of priority bills on horse slaughter, fur labeling, and overuse of antibiotics in factory farms. In total, 131 legislators – one-third of the Senate and nearly one-quarter of the House (representing 36 states and two U. S. territories) – will receive awards for their work in 2009. To see the complete list of 2009 awardees, please click here. “We’re grateful to the many Members of Congress who are helping to forge a path to a more humane future through their demonstrated leadership on animal protection legislation,” said HSLF President Michael Markarian. “Our animal welfare laws are a reflection of our basic values and attitudes shared by people across the country.”\n                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fb6b9c21-f0cd-4f32-b84f-7c35b2008a51,\"MENENDEZ CALLS ON DHS TO CONTINUE TO WORK TOWARD CARGO SCANNING BENCHMARK\n                    \n                            Menendez was lead Senate author of Congressional mandate for 100 percent scanning as part of 9/11 bill\n                    \n                      March 5, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), an original co-sponsor of the 9/11 Commission bill and a lead Senate author of the 100 percent scanning provision for cargo being shipped to U.S. ports, today called on the Department of Homeland Security to continue working toward that benchmark. In a letter to DHS Secretary Janet Napolitano, Menendez expressed concern over her testimony to a Senate committee in December and a Government Accountability Office report suggesting that there is no plan to expand scanning beyond its current level. \n“Congress created this mandate for a purpose – it is not a suggestion or an aspiration, but a law,” wrote Menendez. “The Department of Homeland Security under the Bush administration repeatedly ignored this law, and I urge this administration to change course and work to find a way to get us on the path to 100 percent scanning.  We cannot just continue to respond to the last threat; we must think ahead in order to try to prevent the next one.”\nMenendez acknowledged that the DHS faces hurdles in reaching this benchmark and that it has taken important steps to make scanning more targeted and efficient. However, he raised concerns about the GAO report showing that cargo from bigger international ports is scanned at a rate below five percent, that DHS has done little to even examine how to get to 100 percent and that it has not reached out to the law’s main authors to discuss the challenges.\nHe cites two recent pieces of information as reasons for a renewed focus on this law: a report by the Commission on the Prevention of Weapons of Mass Destruction warning of al Qaeda’s continuing determination to attack with a WMD, and the Director of National Intelligence’s testimony before Congress stating that another attempted terrorist attack in the next six months is a “certainty”.\nPDF of letter to Napolitano: http://menendez.senate.gov/imo/media/doc/20100305ltr_CargoScanning.pdf\nFull text of letter:\nMarch 5, 2010\nDear Secretary Napolitano: In recent weeks, we have been confronted with two pieces of homeland security intelligence that deserve our utmost attention and demonstrate why now, more than ever, we must not abandon the existing 100 percent mandate for port scanning. A report by the Commission on the Prevention of Weapons of Mass Destruction Proliferation and Terrorism indicated that al Qaeda is as determined as ever to attack the United States with a weapon of mass destruction. And  Director of National Intelligence Blair testified before the Senate Armed Services Committee that an attempted terrorist attack on the United States within the next six months is a “certainty.” These most recent reminders of the threats we face – and the immediacy of those threats – are also reminders about the need to make good on plans to ensure that all inbound cargo is safe. Security experts have repeatedly asserted that our seaports are viewed by terrorists as a prime point of entry for weapons or weapon materials, and we cannot get by with less than adequate security measures.   As a lead author of the provision in our 9/11 Commission legislation that mandated 100 percent scanning of inbound cargo by July 1, 2012, I am concerned with the Department of Homeland Security’s (DHS’s) apparent resignation on this matter.  A Government Accountability Office report from December 2009 states that Customs and Border Patrol “has made limited progress in scanning containers at the initial ports participating in the [Secure Freight Initiative] program”; that it “has not developed a plan to scan 100 percent of U.S.-bound container cargo by 2012”; it “has not conducted a feasibility analysis of expanding 100 percent scanning, as required by the SAFE Port Act”; and that “the lack of a decision on a clear path forward” has prevented the agency from accurately assessing the overall costs. In your testimony before the Senate Committee on Commerce, Science and Technology from the same time, you mentioned some very real and significant challenges to the 100 percent scanning mandate, as well as some positive steps that have been taken to target specific cargo based on analytical programs. However, I did not come away with the impression that DHS is actively working to find a way to meet the mandate or to increase cargo security beyond what is currently in place. The current system you described, which selects specific cargo deemed to be high-risk and relies on voluntary cooperation from industry and foreign customs administrations, may be an improvement over the pre-2001 cargo security system, but it is hard to believe that it is anywhere near comprehensive or reliable enough to provide adequate security. GAO reported that less than five percent of U.S.-bound cargo is scanned at the world’s largest ports and that DHS has not done the analysis necessary to comprehensively determine the overall costs and benefits of doing more.     The defense of our nation demands that we do more than this. We have to be right 100 percent of the time, while a terrorist only has to be right once to achieve his or her goal.   Congress created this mandate for a purpose – it is not a suggestion or an aspiration, but a law. The Department of Homeland Security under the Bush administration repeatedly ignored this law, and I urge this administration to change course and work to find a way to get us on the path to 100 percent scanning.  We cannot just continue to respond to the last threat; we must think ahead in order to try to prevent the next one.  As an author of this law, I ask for a detailed update on what DHS is doing to analyze the path forward to 100 percent scanning; for periodic detailed updates on the agency’s progress; and, if you will need to delay implementation of this law as has been indicated, I ask for a meeting to discuss exactly what can be done in the interim to make our cargo security stronger than it is currently. Thank you, and I look forward to your timely response. Sincerely,\nROBERT MENENDEZUnited States Senator\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2ed8af67-9aa7-45b6-b5b1-634f9be3a8de,\"MENENDEZ HAILS PASSAGE OF UNEMPLOYMENT INSURANCE EXTENSION, BLASTS REPUBLICAN OBSTRUCTION THAT LEFT FAMILIES OUT TO DRY\n                    \n                            Menendez says continued strong federal assistance for laid off workers helps families, economy and state budgets\n                    \n                      March 2, 2010\n                     WASHINGTON – Tonight, the U.S. Senate passed an overdue extension of Unemployment Insurance, emergency COBRA health care assistance and important highway funding, finally ending the Republican obstruction that had caused emergency assistance for laid-off workers to run out on Sunday. This assistance helps keep families afloat, is routinely cited by economists as a key stimulus measure and provides major budget relief for states like New Jersey, which are facing unemployment insurance fund shortfalls.\nU.S. Senator Robert Menendez (D-NJ), a member of the Finance Committee, hailed the passage of the extension.\n“The political stunt that cut the safety net out from under laid off-workers showed a lot about where the compassion resides in Congress,” said Menendez. “Families hit hard by the worst economy in generations should never have to be the victims of a political game. As a result of this extension, families will be able to continue putting food on the table and can keep health care coverage while they look for new work in a tough jobs market. States like New Jersey, which are facing Unemployment Insurance fund shortfalls, have benefitted greatly from the emergency assistance we provided in the recovery package, and this will allow it to continue. The extension of highway investments keeps job-creating recovery projects moving. This is an important safety net for families, for the states and for our economy, and it’s vital that it finally passed.”\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ffeaf0af-8c75-4661-bec2-88ced929502e,\"SENATOR MENENDEZ STATEMENT ON EARTHQUAKE IN CHILE\n                    \n                      March 2, 2010\n                     WASHINGTON – The Chilean government is reaching out to the international community to assistance following the devastating 8.8 magnitude earthquake that hit the country over the weekend. U.S. Senator Menendez is chairman of the Senate Foreign Relations Subcommittee on International Development and Foreign Assistance, and he made the following statement:\n“We are all devastated to see our friend and ally Chile face an unimaginable tragedy like this.  Our thoughts and prayers are with the families of the hundreds who have perished, those who have been displaced and the many Chilean-Americans worried about their loved ones. As President Obama and Secretary Clinton have made clear, the United States stands ready to assist in any way that we can. As chairman of the Senate Foreign Relations Subcommittee on International Development and Foreign Assistance, I am working with the administration to ensure that we can provide swift rescue and recovery assistance through USAID and other agencies.”\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e060a887-aa1c-492d-b7a1-851a70b675f7,\"SENATOR MENENDEZ INTRODUCES BILL TO PROMOTE APPLIANCE ENERGY EFFICIENCY STANDARDS\n                    \n                            Energy Efficient Products Act of 2010 standards would apply to portable electric spas, bottle-type water dispensers, and commercial hot food holding cabinets\n                    \n                      March 2, 2010\n                     WASHINGTON – Today, US Senator Robert Menendez (D-NJ), a member of the US Senate Committee on Energy and Natural Resources committee introduced legislation to require portable spas, bottle-type water dispensers, and commercial hot food holding cabinets to meet specific minimum energy requirements, which would help reduce energy use, consumers save money, and reduce environmental pollution. Standards for these three products have already been adopted in California, Connecticut, and Oregon, and were included in Waxman-Markey (H.R. 2454). In addition, Maryland, New Hampshire, Rhode Island, and the District of Columbia have adopted the proposed standards for bottle-type water dispensers and commercial hot food holding cabinets. A national standard will end the loopholes in state standards by adopting a uniform national standard. These standards would only apply to new product sales.\n“Reducing energy costs for families and businesses in these tough times is an important way to provide them with some financial relief,” said Menendez. “This is one more way we help move our country forward towards an efficient and clean energy economy in the 21st century. By promoting energy efficiency, we help reduce energy use and its impact on the environment.”\n\"\"Senator Menendez's bill will save substantial energy and money by expanding the federal standards program to three additional products, adopting standards for these products that half a dozen states have already shown are workable.” said Steven Nadel, Executive Director of the American Council for an Energy Efficient Economy.\nAppliances, equipment and lighting account for 85-90% of residential and over 90% of commercial energy use. Equipment efficiency standards have been one of the most successful government policies for improving energy efficiency in the United States. Typically, states have taken the lead in enacting standards, with subsequent negotiations between manufacturers and efficiency advocates that then recommended consensus standards to Congress. Adopting a national standard now will serve to end the patchwork of state standards by adopting a uniform national standard that saves energy and reduces greenhouse gas emissions nationally.\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1f81cca7-1504-4768-be97-14c42b6c9e99,\"13 Senators Call For Preserving Clean Air Act Protections In Climate Bill\n                    \n                      March 2, 2010\n                     WASHINGTON – Today, a group of Democratic Senators, led by Senator Robert Menendez (D-NJ), sent a letter to Majority Leader Harry Reid (D-NV) urging him to preserve Clean Air Act protections that require coal-fired power plants to meet modern pollution standards in any energy and climate legislation that reaches the Senate floor.  The letter was also sent to Senators John Kerry (D-MA), Lindsey Graham (R-SC), and Joseph Lieberman (I-CT), who for months have been crafting a comprehensive clean energy and climate proposal that they are reportedly unveiling as soon as this week.  The letter makes the case that preserving these protections is critical to moving the United States to clean energy at a reasonable pace and successfully curbing global warming.\n\n“As strong supporters of clean energy, we urge you to ensure that energy and climate legislation builds on the existing Clean Air Act and does not create loopholes for old, inefficient, and polluting coal-fired power plants.  The bill should require coal-fired power plants—old and new alike—to meet up-to-date performance standards for carbon dioxide that will complement an overall cap on emissions and move America to clean energy,” wrote the group of Senators.\n\nCoal-fired power plants are the nation’s largest source of global warming pollution.  The Clean Air Act requires that power plants – as well as factories, refineries and other big sources of pollution – meet source-specific performance standards.  In the landmark 2007 decision in Massachusetts vs. EPA, the Supreme Court ruled that carbon dioxide fits within the purview of the Clean Air Act as an air pollutant.  As Congress has debated energy and climate legislation this Congress, the question of global warming pollution standards for coal-fired power plants has been hotly debated.  The clean energy and climate legislation passed last year by the House of Representatives, the American Clean Energy and Security Act, rolled back the Clean Air Act requirements that existing coal plants meet performance standards for global warming pollution.  By contrast, the Senate Environment and Public Works Committee late last year reported comprehensive clean energy and climate legislation that preserved these Clean Air Act protections.  Today’s letter insists that the legislation that eventually reaches the Senate floor retain this critical authority to ensure existing coal plants clean up and make way for clean, renewable energy. The following Senators signed the letter: Senator Robert Menendez (D-NJ), Senator Christopher Dodd (D-CT), Senator Barbara Boxer (D-CA), Senator Frank R. Lautenberg (D-NJ), Senator Jeff Merkley (D-OR), Senator Ron Wyden (D-OR), Senator Patrick Leahy (D-VT), Senator Bernie Sanders (D-VT), Senator Sheldon Whitehouse (D-RI), Senator Jack Reed (D-RI), Senator Benjamin Cardin (D-MD), Senator Kirsten Gillibrand (D-NY), and Senator Al Franken (D-MN).\nRead a PDF of the letter here\n\nFULL TEXT OF LETTER BELOW:\nMarch 2, 2010\nThe Honorable Harry ReidMajority LeaderS-221, The CapitolUnited States SenateWashington, DC 20510\nDear Majority Leader Reid:\nWe strongly embrace the promise of clean energy to make America more energy independent, create millions of new green jobs, and stave off the worst effects of global warming.  In order to accomplish all of these goals, we need to begin to de-carbonize our utility sector and make the transition to clean energy.  As a result, we are writing to ask you to ensure that energy and climate legislation does not weaken the Clean Air Act’s application to existing coal-fired power plants, the nation’s biggest global warming polluters, so that they meet up-to-date technology standards for carbon dioxide.   America’s aging fleet of coal-fired power plants, more than three-fourths of which were built prior to 1980, are responsible for a disproportionate amount of the country’s air pollution, including toxic mercury, soot and smog-forming pollutants, and carbon dioxide.  Indeed, coal-fired power plants emit one-third of the nation’s total carbon dioxide emissions.    America cannot achieve the reductions in global warming pollution that science indicates are needed to protect future generations and the planet from catastrophic and irreversible global warming if we do not begin to de-carbonize the utility sector today and start the march to clean energy.  This transition will help rebuild our manufacturing base by creating jobs in clean energy technology, increase our energy security, and reduce global warming pollution. \nYet this necessary transition to clean energy could well be short-circuited if old and inefficient power plants continue to be favored in America’s electricity market.  This would crowd out any sizable move to wind and solar power and other clean energy sources, since the U.S. Department of Energy projects that electricity demand will be relatively flat over the next 20 years (an annual average growth rate of less than 1 percent). \nRegrettably, this crowding-out scenario appears all too plausible if, contrary to the Clean Air Act, a massive loophole is created for existing coal plants, such that they never have to meet performance standards for their carbon pollution.  In the absence of such performance standards, utilities may very well continue to operate—or even expand—existing plants in the early years of the program rather than invest in cleaner sources of energy.  Further, in the medium term—as the economic realities set in of an emissions cap that is increasingly tightening and allowances to pollute that are increasingly auctioned rather than given away—those utilities that have delayed transitioning to cleaner sources of energy may confront the need to abruptly shutter aging coal plants that continue to provide the bulk of America’s electricity.  In the face of potential brownouts or blackouts, tremendous political pressure would be brought to bear to weaken the cap, a result that would compromise our economic, national security, and environmental goals.     \nIn order to prevent such a scenario from coming to pass, the cap on emissions must be paired with clean energy standards and Clean Air Act or equivalent performance standards for power plants that ensure that America moves to clean technology at a reasonable pace and can achieve the needed longer term cuts in pollution.\nSuch an approach—pairing a cap on emissions with performance standards for power plants—is the path Congress took in 1990 when it enacted the highly-successful Acid Rain Program, the nation’s first cap-and-trade program.  At that time, Congress debated eliminating the Clean Air Act’s requirements that power plants meet source-specific standards, but Congress instead recognized that those standards are essential to drive technology improvements.\nAs strong supporters of clean energy, we urge you to ensure that energy and climate legislation builds on the existing Clean Air Act and does not create loopholes for old, inefficient, and polluting coal-fired power plants.  The bill should require coal-fired power plants—old and new alike—to meet up-to-date performance standards for carbon dioxide that will complement an overall cap on emissions and move America to clean energy.                                                                      Sincerely,\n____________________                                                        ______________________  ROBERT MENENDEZ                                                            BENJAMIN L. CARDIN United States Senator                                                        United States Senator\n______________________                                                    ________________________    KIRSTEN GILLIBRAND                                                        FRANR. LAUTENBERG United States Senator                                                       United States Senator\n_________________                                                              ______________________             PATRICK LEAHY                                                                  CHRISTOPHER J. DODD United States Senator                                                         United States Senator                                                                                                            \n_________________                                                              ______________________JEFF MERKLEY                                                                    JACK REEDUnited States Senator                                                         United States Senator\n__________________                                                            ________________________BERNIE SANDERS                                                                SHELDON WHITEHOUSEUnited States Senator                                                         United States Senator\n__________________                                                            ________________________BARBARA BOXER                                                                RON WYDENUnited States Senator                                                         United States Senator\n__________________AL FRANKENUnited States Senator\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=546dc612-a624-4ab5-9f22-a50aa98413cd,\"MENENDEZ SEEKS TO END NEED FOR TAXPAYER BAILOUTS OF CORPORATIONS WITH NEW BILL\n                    \n                            Legislation would require “too big to fail” corporations to “pre-pay” into a fund for times of financial instability\n                    \n                      March 1, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today introduced Wall Street accountability legislation that would effectively end the need for future taxpayer bailouts of “too big to fail” corporations.  The Ending Taxpayer Bailouts By Making Wall Street Pay Act would require huge corporations to pre-pay into a fund that, in cases of financial crisis, would help wind down failed corporations in order to minimize collateral damage to the economy.\n“Families facing tough times don’t expect huge corporations to save them, just as corporations should never again expect taxpayers to save them when they struggle,” said Menendez. “Corporations should have to pay for their own insurance policy like families do. As we implement Wall Street accountability that aims to prevent future collapses, we also need a safety net that is paid for by corporations themselves. By ensuring that corporations pay up front for this security, we can eliminate the prospect of taxpayer bailouts in the future.”\nBackground on bill:\nENDING TAXPAYER BAILOUTS BY MAKING WALL STREET PAY ACTSponsored by Senator Robert MenendezThe Ending Taxpayer Bailouts by Making Wall Street Pay Act would require very large companies that pose risks to the whole economy to insure against the possibility of their failure. Risky firms would have to pay into a fund that would be available to wind down any risky firm that fails. Assessments would be based on the risk posed to the system.  In the case of failure, shareholders would pay first; the fund would be used only to prevent spillover effects of a failure and wind down the firm, not to bail out a firm or keep it going. \nThe legislation would:•    Guarantee taxpayers will NOT be on the hook the next time a very large and risky company fails.•    Make firms pay to insure against their own demise.•    Keep  in check and discourage risky activity since bigger, riskier firms will pay the most in assessments.•    Guarantee money will be available for a wind-down, averting possible market panic\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=92c7958b-0a65-4200-b644-093cc636eef7,\"MENENDEZ APPLAUDS NEW CAMERA ALARMS AT NEWARK AIRPORT, WHICH HE HAD SUGGESTED\n                    \n                            Menendez says this measure is a first step toward better security at EWR\n                    \n                      February 26, 2010\n                     WASHINGTON – The Port Authority of New York and New Jersey has notified the office of U.S. Senator Robert Menendez (D-NJ) that it is installing alarms on security cameras at Newark Liberty International Airport to alert personnel in the event of a malfunction. The Port Authority is also conducting a comprehensive security review as a result of the January security breach in which a man slipped past security at a terminal exit point, causing major inconveniences for passengers and travel disruption.\nSenator Menendez has called for a number of upgrades to the security at Newark Airport, including the camera alarms (his letter on needed upgrades available here: http://menendez.senate.gov/imo/media/doc/20100111ltr_EWRSecurityTech.pdf). Today, he said that this upgrade will help improve security, but more steps are needed:\n“I applaud the Port Authority for considering the security technology upgrades I have suggested and acting on an important one of them. It is common sense that we need video surveillance at the airport that will actually work, and it was outrageous to learn that security personnel often had no idea when the camera system would repeatedly malfunction. This is a first step that will make Newark Airport safer. However, it is important to remember that we’re also dealing with a camera system that seems to be limited and frequently on the fritz and that there are terminal exit points that are susceptible to breaches. That’s why I certainly hope that more security upgrades will be forthcoming and that the Port Authority will consider the additional actions I have suggested to make Newark as safe as it needs to be.”\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=31b94827-e620-4459-bc89-6669415811d2,\"NEARLY 4,000 LAID-OFF NJ WORKERS COULD LOSE UNEMPLOYMENT INSURANCE IN MARCH DUE TO REPUBLICAN OBSTRUCTION IN U.S. SENATE\n                    \n                            Menendez says this action hurts struggling families and the economic recovery\n                    \n                      February 26, 2010\n                     WASHINGTON – Last night, an up-or-down vote on the extension of unemployment insurance and health care for laid-off workers was blocked by a Republican senator, meaning that those benefits are due to run out for 3,903 New Jerseyans in March. Democrats have been seeking a renewal of emergency federal assistance to states for unemployment insurance and the COBRA program, which allows laid-off workers to continue to purchase health insurance. However, Senator Jim Bunning (R-KY) blocked the Senate from proceeding to a vote on a number of occasions and continues to do so.\nU.S. Senator Robert Menendez (D-NJ), a member of the Finance Committee, released the following statement:\n“Cold-hearted obstruction is never good, but this is particularly the wrong time and the wrong issue for it. We’re trying to get things done for families hit hard by the worst economy in generations. Because of this obstructionary action, almost 4,000 New Jerseyans who have been laid off during these tough times are going to have the safety net of temporary unemployment insurance and health insurance cut out from under them and their families. This puts even more of a squeeze on struggling families and it takes away assistance that leading economists say is the most effective way to create an economic recovery. This move is uncompassionate to laid-off workers and is the ultimate anti-stimulus.”\nThis Republican obstructionism also could put an increased burden on local businesses. They will face a further-strained state Unemployment Insurance trust fund and will be on the hook for paying half of the Extended Benefits program, which has been fully federally funded during the recession. \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d5773563-01cb-4037-91b1-3b77aae0a977,\"MENENDEZ AIMS TO HOLD CORPORATE EXECUTIVES ACCOUNTABLE WITH NEW BILL\n                    \n                             Legislation would hold executives accountable for their management and fraud, help ensure long-term viability of companies  \n                    \n                      February 26, 2010\n                     WASHINGTON – Responding to the causes of the economic recession and the return of Wall Street mega-bonuses, U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, today unveiled a legislative package that could bring accountability to corporate governance. The Corporate Executive Accountability Act would:\n•    hold executives accountable for risky management, •    give shareholders a greater say over executive compensation, and•    tie executive compensation to the long-term health of a company\n“What everyone has learned all too painfully over the past year and a half is that risky behavior, excesses, and a lack of accountability on Wall Street can end up squeezing families on Main Street,” said Menendez. “We can’t afford to have short memories and allow the type of reckless corporate practices that got us into this economic mess in the first place to take root all over again. Corporate executives must be held accountable, and that is the purpose of this legislation.”\nBill summary:\nTHE CORPORATE EXECUTIVE ACCOUNTABILITY ACT OF 2010SPONSORED BY SENATOR ROBERT MENENDEZ\nThe Corporate Executive Accountability Act of 2010 would protect Main Street families by 1) giving shareholders a vote on executive pay; 2) ensuring that bad executives are held accountable for their performance and its effects on Main Street; and 3) providing incentives for executives to look out for the long-term viability of the corporation, not just short-term profits and bonuses.  A summary of these provisions is below: \nGive Shareholders a Vote on Executive Pay•    Provide shareholders a non-binding vote on whether a company’s proposed executive pay should be approved•    Requires companies to disclose the ratio of CEO pay to median company worker pay in their annual reportHold Executives Accountable for Failure or Fraud•    Provide regulators and investors authority to take back bonuses from corporate executives who engage in misconduct. •    Prohibit executives from receiving a “golden parachute” or other generous severance package when they are fired for cause.\nStructure Executive Pay to Encourage Long-Term Viability of the Company, Not Just Short-Term Profits and Bonuses•    Prevent publicly-listed company executives from cashing out all their vested equity compensation (stock options, shares, etc.) at once. Instead executives would only be allowed to cash out up to 20 percent of their vested equity compensation per year over a five-year period.\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2e3804d4-611d-42f3-8623-545236878550,\"MENENDEZ HAILS PASSAGE OF FIRST PIECE OF JOBS AGENDA\n                    \n                            Bill, which Menendez has touted in NJ, will provide tax relief for employers that hire, help small businesses expand and help municipalities finance job-creating projects\n                    \n                      February 24, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Finance Committee, today helped to pass job-creation legislation that is the first piece of the Senate’s 2010 Jobs Agenda. The bill, which Menendez has touted in public events in New Jersey and which passed by a 70-28 vote, will help create jobs through:\n•    Payroll tax relief for businesses to encourage hiring•    Tax relief for small businesses that purchase major equipment to help them expand•    Extension of the Highway Trust Fund, allowing for billions in infrastructure investment and saving one million jobs•    Expansion of Build America Bonds program to allow states to finance infrastructure projects.\n“Job creation is job number one for us, and this legislation is an important first step for our Jobs Agenda,” said Menendez. “These targeted, fiscally-responsible initiatives are going to help businesses retain employees and hire new ones and will help local governments finance the important projects that benefit communities while putting people to work. This is only the first piece of our Jobs Agenda, and we will stay focused on creating jobs as long as is necessary.”\nThe jobs bill that passed today avoids burdening taxpayers. It is fully paid for by:\n•    The Foreign Account Tax Compliance Act, and•    A 2 year delay in implementation of worldwide interest allocation.\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a7d6dfcb-f16e-4474-88dc-d01605ab2dc3,\"MENENDEZ STATEMENT OF CUBAN PRISONER OF CONSCIENCE ZAPATA\n                    \n                      February 24, 2010\n                     WASHINGTON – Orlando Zapata Tamayo, a Cuban pro-democracy activist and political prisoner, who was first incarcerated during the 2003 crackdown on dissidence known as the “Black Spring” – has died following a hunger strike protesting the Castro regime's brutal abuses. Amnesty International had recognized Tamayo as a “Prisoner of Conscience.”\nU.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, released the following statement:\n“The Castro regime has more blood on its clenched hands. The story of Orlando Zapata Tamayo is tragically symbolic of the regime’s disdain for democracy, free speech and basic human freedoms – it is so opposed to these liberties that it imprisoned and let die this peaceful and principled man. This is a vivid reminder that, though the names have changed, the oppression and suppression by which this regime rules has not. Everyone who believes in human rights is mourning the death of Zapata. He sacrificed his life for the sake Cuban freedom. His struggle and sacrifice will never be forgotten.”\n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7c9cd4d8-91e1-4305-befd-50b293bbe890,\"MENENDEZ APPLAUDS APPOINTMENT OF FORMER HIGHLAND PARK MAYOR FRANK TO UNITED NATIONS AMBASSADORSHIP\n                    \n                            Menendez had recommended her appointment to President Obama\n                    \n                      February 24, 2010\n                     WASHINGTON – Today, President Barack Obama appointed former Highland Park Mayor Meryl Frank to the position of Ambassador to United Nations Permanent Commission on the Status of Women. In that role, she will represent the U.S. in the organization, which is “dedicated exclusively to gender equality and advancement of women.”\nU.S. Senator Robert Menendez (D-NJ), who advocated for her appointment with President Obama, released the following statement:\n“Through her public service, many people in New Jersey and internationally know Meryl Frank to be an effective and tireless advocate for women around the globe. She has been at the forefront of advocacy for many of the issues that women grapple with, particularly in their family lives. In her new role at the United Nations, she will help our country lead the world in helping to improve women’s lives. I am proud to have recommended her, and I am proud to be able to call her Ambassador Frank.”\nFrank has a distinguished record of working to families and women and was appointed as the U.S. representative to the U.N. Permanent Commission on the Status of Women (not Ambassador level) in February of 2009. A respected leader on family leave issues, she has been Director of the Infant Care Leave Project at the Yale Center in Child Development and Social Policy, has served the World Health Organization in Copenhagen on issues of infant care, and has worked for the New Jersey Public Interest Research Group on the advancement of the Equal Rights Amendment. She has served in delegations promoting democracy, women in government, interfaith dialogue and sustainability in Moldova, Korea, Israel and Turkey. Frank is a National Board Member of the Women’s Leadership Forum of the Democratic National Committee and is National President of the American Jewish Congress’s Women’s Division.\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=43bcaa8c-d299-4a0b-a45d-dfc280d63550,\"MENENDEZ STATEMENT OF CUBAN PRISONER OF CONSCIENCE ZAPATA\n                    \n                      February 24, 2010\n                     WASHINGTON – Orlando Zapata Tamayo, a Cuban pro-democracy activist and political prisoner, who was first incarcerated during the 2003 crackdown on dissidence known as the “Black Spring” – has died following a hunger strike protesting the Castro regime's brutal abuses. Amnesty International had recognized Tamayo as a “Prisoner of Conscience.” \nU.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, released the following statement:\n“The Castro regime has more blood on its clenched hands. The story of Orlando Zapata Tamayo is tragically symbolic of the regime’s disdain for democracy, free speech and basic human freedoms – it is so opposed to these liberties that it imprisoned and let die this peaceful and principled man. This is a vivid reminder that, though the names have changed, the oppression and suppression by which this regime rules has not. Everyone who believes in human rights is mourning the death of Zapata. He sacrificed his life for the sake Cuban freedom. His struggle and sacrifice will never be forgotten.”\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7b8e83ab-f136-4aa8-9296-1a25f3ce72b1,\"LAUTENBERG AND MENENDEZ ANNOUNCE $2 MILLION IN RECOVERY FUNDING FOR BROADBAND INVESTMENT IN NEW JERSEY\n                    \n                            New Federal Funding Will Help State Map Broadband Services and Plan for Improvements\n                    \n                      February 23, 2010\n                     WASHINGTON -- Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced $2 million in new federal funding from the American Recovery and Reinvestment Act to provide better planning, data collection and mapping for broadband technology in New Jersey.  The funding will be provided to the New Jersey Office of Information Technology to help assess the quality of broadband access throughout the state and provide information on availability in public schools and universities, libraries, hospitals and other public buildings.  \n“We cannot expect our children to get ahead or our economy to flourish unless we ensure New Jersey has access to twenty-first century tools and technology,” stated Sen. Lautenberg, a member of the Senate Appropriations Committee who helped author the Recovery Act.  “Expanding broadband Internet access will improve services for New Jersey families and businesses and enhance technology at our schools, hospitals, libraries and other public facilities. With this funding, we will get a snapshot of broadband service in New Jersey and improve planning for better access to emergency services, online educational resources, and other technological advancements.”\n“The internet has become an integral part of our education, our communication, our commerce and our lives. It is essential that families in all New Jersey communities have an opportunity to ensure fast and reliable internet access, otherwise they are at a economic and educational disadvantage,” said Sen. Menendez. “This is an investment that in the short-term will create jobs by wiring communities and will help create long term economic security through education and communication.”\nThe grant, which is funded by the Recovery Act, is divided into two parts: approximately $1.5 million for broadband data collection and mapping activities over a two-year period and $500,000 for broadband planning activities over a five-year period.\nThe data will be displayed in the National Telecommunication and Information Administration’s national broadband map, a tool that will inform policymakers and consumers with improved information on the broadband Internet services available to them. The national map will publicly display the geographic areas where broadband service is available; the technology used to provide the service; the speeds of the service; and broadband service availability at public schools, libraries, hospitals, colleges, universities, and public buildings. The national map will also be searchable by address and show the broadband providers offering service in the corresponding census block or street segment.  The map will be available beginning in February 2011.\n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=04d0e505-f95e-43e7-9c95-e0ab6eeff0bf,\"Senator Menendez And Representative Maloney Hail Credit Card Reforms Going Into Effect Today\n                    \n                            Key Consumer Protections in CARD Act to Take Effect Feb. 22, Will Ban Retroactive Interest Rate Hikes, Due-Date Gimmicks, and Other Credit Card Tricks and Traps\n                    \n                      February 22, 2010\n                     An End to Many of the Credit Card Industry’s Most Abusive Practices NEW YORK – This afternoon, Congresswoman Carolyn Maloney (D-NY) and Senator Robert Menendez (D-NJ) joined with representatives of Consumers Union, NYPIRG, and New Jersey Citizen Action and others to hail new credit card reforms taking effect today.  The reforms are part of the Credit Card Accountability, Responsibility, and Disclosure Act, which Maloney authored in the House and Menendez helped pass in the Senate.   These tough new consumer protections include bans on interest rate hikes on existing credit card balances and other tricks and traps that have lured consumers into never-ending cycles of debt.  According to the Pew Safe Credit Cards Project, retroactive interest rate hikes and unfair penalty fees have been costing Americans upwards of $10 billion per year.\n\n“This is a great day for anyone with a credit card in their wallet,” Maloney said.  “Most of the Credit CARD Act kicks in today –halting many of the worst abuses by the credit card industry.  No longer will card companies be able to increase interest rates on existing balances, and that alone is a huge victory that will save Americans billions each year.  The CARD Act’s reforms will level the playing field for consumers and usher in a new era of fairness and transparency in the market.”\n\"\"These reforms we've fought for years to enact are a big victory for every family that tries to stick to its budget and pay their bills on time while the six largest credit card companies are raking in $7.4 billion from penalty fees,” said Senator Menendez. “Especially in these difficult economic times, it’s time to level the playing field for families who take their budgets very seriously. For too long the balance had been tipped to credit card companies who turned their billing practices into a casino game, like a crapshoot for consumers every time they used their cards.\"\"\n\"\"For far too long, credit card companies have gouged consumers with deceptive and unfair interest rate charges and fees.\"\" said Charles Bell, Programs Director for Consumers Union, the nonprofit publisher of Consumer Reports. \"\"These new rules will put an end to some of the most abusive credit card lending practices that have trapped millions of Americans in debt, and made it harder for them to make ends meet.\"\"\n\n\nSummary of the Credit CARD Act:\nP.L. 111-24The CARD Act contains three separate implementation dates, 90 days, 9 months and 15 months after the bill was signed into law. Below is a summary of the CARD Act’s reforms and when those provisions kick in:\nTook Effect on August 20, 2009                                   •        Requires card companies to provide 45 days’ written notice to consumers of any increases in the interest rate or other significant changes to the terms of a credit card account; •        Requires giving consumers notice of their right to cancel the card before the rate hike goes into effect;•        Requires statements to be sent to consumers at least 21 days before the due date of any payments. Became Effective Today, February 22, 2010 •        Prohibits interest rate increases on existing balances unless cardholder is more than 60 days late in making payments;•        Prohibits “universal default” –the practice of raising a customer’s interest rates if they are late paying a utility or other unrelated bill—on existing balances; •        Prohibits issuers from charging over-limit fees unless the cardholder elects to allow the issuer to complete over-limit transactions, and also limits over-limit fees on electing cardholders;•        Requires payments in excess of the minimum to be applied first to the credit card balance with the highest rate of interest;•        Prohibits issuers from setting early morning deadlines for credit card payments;•        Prohibits interest charges on debt paid on time (double-cycle billing ban);•        Requires issuers extending credit to young consumers under the age of 21 to obtain an application that contains: the signature of a parent, guardian, or other individual 21 years or older who will take responsibility for the debt; or proof that the applicant has an independent means of repaying any credit extended;•        Protects recipients of gift cards by requiring all gift cards to have at least a five-year life span, and eliminates the practice of declining values and hidden fees for those cards not used within a reasonable period of time. Will Become Effective August 22, 2010 •        Requires penalty fees to be reasonable and proportional to the omission or violation.•        Requires that creditors periodically review all interest rate increases since January 2009 and reduce rates when a review indicates that a reduction is warranted.•        Amends the Electronic Fund Transfer Act to limit dormancy, inactivity, and service fees associated with gift cards.                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=57307394-0ac9-4941-af81-4066e2f416d1,\"SENATOR MENENDEZ GETS PERFECT SCORE IN NATIONAL ENVIRONMENTAL SCORECARD FOR FIRST SESSION OF THE 111th CONGRESS\n                    \n                      February 22, 2010\n                     Vote Scorecard: 111th, 1st session Search Results Scores for New Jersey Sorted by Last Name \nSenateSenator     State     111th, 1st session ScoreFrank Lautenberg (DEM)     NJ     100%Robert Menendez (DEM)     NJ     100%   HouseRepresentative     District     111th, 1st session ScoreJohn Adler (DEM)     NJ-3     93%Robert Andrews (DEM)     NJ-1     100%Rodney Frelinghuysen (REP)     NJ-11     21%Scott Garrett (REP)     NJ-5     0%Rush Holt (DEM)     NJ-12     100%Leonard Lance (REP)     NJ-7     71%Frank LoBiondo (REP)     NJ-2     79%Frank Pallone (DEM)     NJ-6     100%Bill Pascrell (DEM)     NJ-8     93%Donald Payne (DEM)     NJ-10     100%Steven Rothman (DEM)     NJ-9     93%Albio Sires (DEM)     NJ-13     86%Christopher Smith (REP)     NJ-4     79%\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=75134f7a-64a4-4ca7-af4e-85a80fad9b6d,\"DODD, MENENDEZ, MIKULSKI, CARDIN INTRODUCE ADMINISTRATION RAIL TRANSIT SAFETY BILL\n                    \n                            Bill crucial to improving safety at Washington Metro, transit systems across the nation\n                    \n                      February 22, 2010\n                     WASHINGTON – Senate Banking Committee Chairman Chris Dodd (D-Ct.), along with Senators Robert Menendez (D-N.J.), Barbara A. Mikulski (D-Md.), and Benjamin L. Cardin (D-Md.), introduced new legislation today to strengthen federal safety standards for transit systems across the country.  The Public Transportation Safety Program Act of 2010 was outlined by Transportation Secretary Ray LaHood during his testimony before the Banking Committee’s Subcommittee on Housing Transportation and Community Development.  Senator Menendez is the Chairman of the Subcommittee, and Senator Mikulski also testified at the hearing.  \nEvery weekday, more than 14 million passengers rely on rail transit systems across the country. Their safety is left to a patchwork of 27 state agencies with inconsistent standards and insufficient staffing.  The legislation introduced today would ensure a high and standard level of transit safety that will better protect riders as transit systems age and revenues suffer in the economic downturn.\nThe Public Transportation Safety Program Act of 2010 would:\n•    Authorize the U.S. Secretary of Transportation to establish and enforce minimum federal safety standards for rail transit systems.\n•    Authorize the U.S. Secretary of Transportation to provide states with federal transit assistance to staff and train state oversight personnel to enforce new federal regulations.  If states chose to “opt-out” of this federal training, the Federal Transit Administration will enforce all federal safety standards.\n•    Require state agencies conducting oversight to be financially independent from the transit systems they oversee. \n“Right now, safety of our nation’s transit systems is handled by a hodgepodge of understaffed agencies, with few federal standards and little oversight,” Dodd said.  “The Obama Administration’s proposal clearly recognizes that federal intervention is long overdue.  The status quo is seriously flawed, and ignoring its problems endangers the lives of millions of Americans who ride transit systems on a daily basis.” \nSenator Menendez said: “Millions of Americans count on public transportation to be the safest, most efficient and most cost-effective way to get around. The fact that transit is the only major mode of transportation without a significant federal oversight role is ridiculous.  It is time to finally ensure that safety regulations for our nation’s transit systems are as tough as they can be.”“Fourteen million Americans rely on Metro systems across the country to get to work and school every day. That’s more daily riders than either our airlines or passenger railroads – like Amtrak and MARC. Yet, Rail transit is the only mode of transportation without federal safety standards, oversight, or enforcement. That’s got to come to an end and that’s what this bill will do. Riders and workers lives depend on it,” said Senator Mikulski, who has been an outspoken advocate for safety improvements and needed funding and resources for the Washington Metropolitan Area Transit Authority.\n“Millions of Americans rely on public transportation every day and it’s critical that we have federal safety standards instead of a patchwork of various state regulations,” said Senator Cardin, a member of the Environment and Public Works Committee.  “The Metro system has struggled with serious safety problems and this bill will put in place clear, concise regulations that will put riders and safety first.”Under the Public Transportation Safety Program Act of 2010, the Federal Transit Administration and state agencies participating in federal transit safety enforcement would be authorized to conduct inspections, investigations, audits, and examinations, as well as test public transportation systems’ equipment, facilities, rolling stock, operations, and persons engaged in the business of a public transportation system.  Agencies would also have the authority to issue reports and subpoenas, require the production of documents, take depositions, and prescribe recordkeeping and reporting requirements. Visit http://mikulski.senate.gov/_pdfs/Press/DOTFactSheet.pdf for more information about the bill. \n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=860f4c0a-b2d9-4ac9-bdda-2d18ab9cfc43,\"WITH CREDIT CARD REFORMS TO BE IMPLEMENTED NEXT WEEK, MENENDEZ URGES FED TO MAKE CREDIT CARD COMPANIES PLAY BY THE RULES\n                    \n                            Member of Banking Committee calls on Federal Reserve to issue regulations that crack down on companies that try to evade new law\n                    \n                      February 19, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee and a lead author of the new credit card reform laws that go into effect on Monday, called on the Federal Reserve today to stop credit card companies from circumventing the new rules. In a letter to Fed Chairman Bernanke sent today, Menendez cites a number of examples of new interest rate tricks credit card companies have adopted since the Credit Card Accountability Responsibility and Disclosure Act (Credit CARD Act) was passed last May and warns that this sort of activity will continue to evolve. He urges the Federal Reserve to issue additional rules giving it the flexibility to crack down on these attempts to circumvent the law.\nIn an effort to get around the effects of the new regulations, some credit card companies have: 1) ballooned interest rates and fees before the law’s enactment or; 2) devised new forms of interest rates and fees, which Menendez details in his letter.\n“Faced with a landmark consumer protection law that will prohibit credit card companies from charging consumers in unfair ways, some of these companies have, perhaps predictably, either ballooned interest rates and fees before the law’s enactment or have devised new forms of interest rates and fees in a thinly-veiled attempt to circumvent laws,” wrote Menendez. “We have already begun to see these types of evasive practices, but it is safe to assume that the months and years ahead will see additional attempts to circumvent the law. It is simply not realistic for the Federal Reserve to issue new rulemaking with each new development in the credit card industry that may be meant to exploit the law. I urge you to initiate a new rule that gives the Federal Reserve the ability and flexibility to address these practices as they evolve.”\nAmong other rules, the new credit card reforms that will be fully implemented on Monday will: 1) prevent credit card companies from raising interest rates for a full year on a new card; 2) prohibit instantaneous and surprise interest rate increases; 3) require consumer consent for exceeding a credit limit and charging the consumer for it; and 4) prevent consumers under the age of 21 from casually obtaining a card with no ability to pay.  Nevertheless, Senator Menendez raised alarm over the evasionary practices credit card companies have begun using in light of this new legislation, some of which are not addressed by the Federal Reserve’s final regulation, and joined others in urging Chairman Bernanke to address this matter.\nPDF of letter to Bernanke HERE.\nFull text of letter:\nDear Chairman Bernanke,\nI first want to applaud you for issuing final rules this week, as directed by the Credit Card Accountability Responsibility and Disclosure Act of 2009, to finally implement the fairness consumers have been looking for from their credit card companies for years.  As a champion and author of the law, I have observed its implementation closely, and I have no doubt that the rules you have set forth will bring new protections to almost every American who holds a credit card and will prevent thousands of Americans from facing bankruptcy due to unfair credit card practices. By prohibiting credit card companies from raising interest rates for a full year on a new card, by prohibiting instantaneous and surprise interest rate increases, by requiring consumer consent for exceeding a credit limit, and by preventing consumers under the age of 21 from casually obtaining a card – among other rules – this law will make families across the country more financially stable.\nFaced with a landmark consumer protection law that will prohibit credit card companies from charging consumers in unfair ways, some of these companies have, perhaps predictably, either ballooned interest rates and fees before the law’s enactment or have devised new forms of interest rates and fees in a thinly-veiled attempt to circumvent laws.  Among the evasionary practices that some credit card companies are using, not all of which have been addressed by the Federal Reserve in its final regulations, are:\n•     For consumers whose interest rates increase, the bill prohibits subsequent large increases in the minimum payment.  But some credit card companies have been reported to evade this protection by increasing the minimum payment first and threatening to increase the interest rate later.  Some credit card companies are even increasing minimum payments for customers with low interest rates to encourage them to switch to cards with lower minimum payments, but higher interest rates.\n•     The bill allows consumers who were late in paying by more than 60 days and incurred a higher “penalty” interest rate the right to “earn back” the previous lower interest rate by paying on time for six months.  Some credit card companies are reported to now be avoiding that consumer right to “earn back” a lower interest rate by threatening that the consumer must pay the balance in full after they are late.\n•     The bill stops credit card companies from charging consumers over the limit fees unless the consumer “opts in” to being charged such fees.  But credit card companies are evading this requirement by making the terms of the account worse if consumers choose not to be charged over the limit fees. \n•     The bill stops retroactive interest rate increases on existing balances unless the consumer is at least 60 days late in paying.  Credit card companies are evading this rule by charging, for example, 29% interest but saying they will refund or rebate 10% of interest if the consumer pays on time.  Then if the consumers are even one day late, they are effectively paying the higher interest rate, circumventing the rule against higher interest rates unless they are 60 days late.   \nThese are unfair practices meant to exploit loopholes in the law. As a result, fellow Members of Congress and consumer groups have urged the Federal Reserve to adopt an additional rule that would warn credit card companies that the Federal Reserve will not tolerate attempts to circumvent these vital consumer protection laws. As delineated above, we have already begun to see these types of evasive practices, but it is safe to assume that the months and years ahead will see additional attempts to circumvent the law. It is simply not realistic for the Federal Reserve to issue new rulemaking with each new development in the credit card industry that may be meant to exploit the law.\nI urge you to initiate a new rule that gives the Federal Reserve the ability and flexibility to address these practices as they evolve.  I thank you for your implementation of the Credit CARD Act, and I look forward to your response.\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ecc8856b-e1eb-4f78-a3ab-0e5ae162bc53,\"MENENDEZ AND LAUTENBERG ANNOUNCE $23 MILLION IN FEDERAL RECOVERY ACT FUNDING FOR BIKE AND PEDESTRIAN PATH LINKING CAMDEN & PHILADELPHIA\n                    \n                            TIGER Grant Will Construct Bicycle and Pedestrian Walkway, Spur Economic Growth \n                    \n                      February 17, 2010\n                     NEWARK – Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that the Camden and Philadelphia area has been awarded $23 million in Transportation Investment Generating Economic Recovery (TIGER) grant funding under the American Recovery and Reinvestment Act (ARRA) for a network of bicycle and pedestrian paths that will connect Camden and Philadelphia. The network will enhance regional economic development, spur job growth and protect the environment by getting cars off our roads.\n“This federal funding will open access to the City of Camden and help spur the local economy,” said Sen. Lautenberg, a member of the Senate Appropriations Committee who helped author ARRA.  “Creating this new pedestrian and bicycle pathway between Camden and Philadelphia will benefit the environment by reducing traffic and make Camden a better place to live and work.”\n“This grant will help make communities such as Camden, Pennsauken, and Cherry Hill more walkable, bikeable communities,” said Sen. Menendez. “This will reduce the number of cars on our roads, reduce pollution, and help create more active, healthy communities. By investing in these types of projects we help create jobs and boost economic activity, while laying the foundation for a 21st century green economy.\"\"\nThe project would construct a number of trails that would connect and enhance several bicycle and pedestrian trails in the Eastern Pennsylvania and South New Jersey region.  It would include bridge repair, enhancement and replacement; trail widening, and construction of off-road trail segments.  This set of trails, which only partially exists today, would spur job growth and connect on-going development projects in the region, including the multi-million dollar expansion of Cooper University Hospital and Campbell's Soup Corporation.\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=07d9a7aa-a8d7-4f79-a8ce-e0872a7901a5,\"ONE YEAR ANNIVERSARY OF THE AMERICAN RECOVERY AND REINVESTMENT ACT: ACHIEVEMENTS IN NEW JERSEY\n                    \n                            Creating jobs and driving economic growth in the Garden State\n                    \n                      February 17, 2010\n                     The results are in, the Recovery Act is working – it has helped keep us from the brink of the greatest economic crisis since the Great Depression, and it is laying the foundation for a new era of economic growth in the 21st century. After only one year, the Recovery Act is fully at already making a difference across the country saving and creating jobs for our families and providing growth opportunity for our businesses.\nIn New Jersey alone, more than $4 billion in funds have been awarded to finance thousands of innovative projects in the most important areas of our local economy- projects that range from transportation modernization and clean energy development to housing and urban initiatives. In addition, the federal government has awarded New Jersey’s local governments millions in tax relief to further help our families and businesses and has provided financial resources to help crucial programs like Medicaid weather the budget shortfalls they have faced as a result of this crisis.\nTo read about some of these projects and success stories accross the states, click HERE.  You can also view a complete list of grants our state has received so far HERE. Finally, I encourage you to see this video on how the Recovery Act is helping cities across the country HERE.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1dbc7f49-36cf-4685-bd91-6c3ce35881dc,\"SENATOR MENENDEZ TOUTS BOOST FOR SCHOOL CONSTRUCTION PROJECTS TO BE INCLUDED IN NEW JOBS BILL\n                    \n                            Initiative would provide incentives for local governments to issue bonds to finance school construction; invest in workers and students. Menendez appeared at Teaneck High School, a school that has recently underwent construction and is planning future additions. \n                    \n                      February 16, 2010\n                     NEWARK – As the Senate prepares to consider and vote on a targeted new job creation bill,  U.S. Senator Robert Menendez stood today at Teaneck High School in support of the Build America Bonds expansion, that would assist schools in financing construction projects and create jobs. Senator Menendez was joined by Teaneck High School Principal Angela Davis and members of the Teaneck School Board.\n“This is an investment in both our short and long-term economic security,” said Senator Menendez. “By helping spur school construction, we help create jobs that put New Jerseyans to work immediately on badly needed improvements, refurbishments and additions. We also help advance our state’s human capital by creating learning environments in which our children can focus on their education and thrive. “It is fiscally sound for our state’s economy, as our municipalities do not rely on taxpayers’ money and instead use bonds to finance this type of project.”\nThe Build America Bonds program for state and municipal governments would allow qualifying issuers of certain tax credit bonds designed to finance renewable energy and school construction projects, the option of issuing tax credit bonds as they currently do or utilizing the direct subsidy Build America Bond structure for bonds issued after the date of enactment. \nTeaneck High School, which recently added a College and Career Center, is one of the many schools in the Garden State that continues to expand and is planning additional future renovation projects.\nThe Build America Bonds Expansion includes:•           Tax credit bonds that provide the bond holder a federal tax credit in lieu of interest.  The tax credit is determined based on Treasury’s estimate of the yields on outstanding bonds from market sectors.  •           Build America Bonds provide qualifying issuers a direct payment from the Treasury for a portion (35%) of the interest paid on the bond for government works projects. •           The provision would allow eligible entities to choose which subsidy mechanism they would rather use for certain bond issuances.  They could continue using the credit  determined by Treasury or use the BAB model with a 45% credit rate (65% in rare circumstances).\nThe following are eligible bonds:•           new clean renewable energy bond •           qualified energy conservation bond •           qualified zone academy bond •           qualified school construction bond\nFor more information about the Build America Bonds and School Bonds please visit:\nhttp://www.ustreas.gov/press/releases/docs/BuildAmericaandSchoolConstructionBondsFactsheetFinal.pdf\n                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4d38f226-2981-43ac-a90f-77c405f87835,\"LAUTENBERG AND MENENDEZ ANNOUNCE MORE THAN $2 MILLION IN FEDERAL FUNDING TO SUPPORT NEW JERSEY PREVENTIVE HEALTH AND WELLNESS INITIATIVES \n                    \n                            FUNDS WILL PROMOTE TOBACCO CESSATION, PHYSICAL ACTIVITY, NUTRITION \n                    \n                      February 10, 2010\n                     WASHINGTON – Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Health and Human Services (HHS) has awarded New Jersey more than $2 million in new federal funding from the American Recovery and Reinvestment Act (ARRA) to decrease tobacco use, reduce obesity, increase physical activity and improve nutrition.  The Recovery Act, which Lautenberg helped author as a member of the Senate Appropriations Committee, was signed into law by President Obama in February of 2009.\n“Investing in preventive health and wellness services can reduce the cost of care for families and help New Jerseyans live longer, healthier lives,” stated Lautenberg, a member of the Senate Appropriations Committee.  “Exercising, eating right and quitting tobacco use can help prevent disease, stem the rising cost of health care and ultimately benefit America’s economy.”\n“This type of initiative not only makes families healthier, it makes families wealthier by cutting down on health care costs,” stated Menendez.  “Ultimately, the savings are passed around to everyone as the costs related to uninsured emergency care are reduced.”New Jersey will receive a total of $2,106,398 under the Department’s Communities Putting Prevention to Work Program, which was funded under ARRA to prevent chronic disease, promote wellness and provide positive, sustainable health opportunities in communities throughout America.    The funding New Jersey will receive is divided into two programs.  The state will receive $938,132 through a federal program designed to expand and enhance tobacco quitlines.  It will also be awarded $1,168,266 through a federal program designed to control tobacco use, promote physical activity and nutrition.  \nTo learn more about Communities Putting Prevention to Work, visit http://www.cdc.gov/chronicdisease/recovery.\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=330a432e-e1e2-49db-9522-cf5f9fa845eb,\"MENENDEZ HAILS U.S. SENATE CONFIRMATION OF JUDGE JOSEPH GREENAWAY \n                    \n                            NJ judge rises to U.S. Court of Appeals after Republicans finally end blockage of his nomination\n                    \n                      February 9, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today applauded the Senate confirmation of Judge Joseph Greenaway to the U.S. Court of Appeals for the Third Circuit by a unanimous 84-0 vote. Menendez has taken to the Senate floor on numerous occasions to speak forcefully in favor of Greenaway as Republicans blocked his nomination. Greenaway has been a District Judge on the United States District Court for the District of New Jersey since 1996.\n\"\"Judge Greenaway's record, experience and integrity will make him effective in protecting New Jersey's families by ensuring the court maintains a healthy respect for the Constitution, the rule of law and basic fairness,” said Menendez. “I was proud to recommend him along with Senator Lautenberg to President Obama, and I look forward to his service in this important post.\"\"\nAlthough his nomination was reported by the Judiciary Committee on October 1 by unanimous consent, the Republicans had delayed Senate consideration of the nomination for months by refusing to agree to consent requests for a time agreement.  Judge Greenaway becomes only the 15th of President Obama’s circuit or district court nominees to be confirmed despite more than 100 current vacancies on federal courts.  The 12 lower court nominees the Senate confirmed in 2009 were the lowest in the first year of a Presidency in more than half a century.\nPrior to his confirmation to the Federal bench, Judge Greenaway was an in-house general counsel at Johnson & Johnson (1990-96).  Before that, he served as an Assistant United States Attorney in Newark, New Jersey (1985-90) and as a litigation associate at New York law firm Kramer, Levin, Nessen, Kamin & Frankel (1981-82, 1983-85).  Judge Greenaway was a law clerk to the late Judge Vincent Broderick on the United States District Court for the Southern District of New York (1982-83).  Judge Greenaway was born in London, England to West Indian parents.  Raised in Harlem and the Bronx, New York, he currently resides in Newark.  He earned his J.D. from Harvard Law School (1981), and his B.A. from Columbia University (1978). \n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=514d896d-b811-43ae-ac54-1d584fe9d85b,\"CONGRESSMAN PASCRELL, SENATOR MENENDEZ, SPONSORS OF CONCUSSIONS BILL, KICKOFF SUPER BOWL WEEKEND AT  PASSAIC VALLEY HIGH SCHOOL\n                    \n                            Sponsors of the youth concussion bill to congratulate local school officials and students on recently adopted policies regarding sports-related concussions and student athletes\n                    \n                      February 5, 2010\n                     LITTLE FALLS – On the eve of Super Bowl weekend, U.S. Rep. Bill Pascrell, Jr. (D-NJ-8) and U.S. Sen. Robert Menendez (D-NJ) visited Passaic Valley High School to School to congratulate school officials and students for recently introducing a policy that makes pre-concussion brain testing mandatory for all student-athletes involved in school sports. The Passaic Valley board of Education will take a final vote on the measure on Feb. 9\nCongressman Pascrell first introduced the Concussion Treatment and Care Tools (ConTACT) Act in the U.S. House of Representatives in November 2008. Senator Menendez introduced identical legislation in the U.S. Senate in December. The bill has been endorsed by numerous brain injury advocacy groups, high school athletic associations, as well as N.F.L. Commissioner Roger Goodell and the NFL Players Association.\n“The wounds of the concussions sustained by these young athletes may be invisible, but the consequences are very real. This is happening everyday to our athletes in nearly every sport,” said Pascrell, who testified before the House Judiciary Committee in October during a hearing on head injuries sustained by NFL players.\n“It is for this reason that I am proud to congratulate the Passaic Valley schools for taking the first step towards requiring all their student athletes to participate in baseline and post-concussion testing,” Pascrell said. “The use of these testing technologies are commonplace in professional and college sports and have been shown to be effective tools in ensuring that we don’t return our young athletes to the field too soon.”\n“If a pro football superstar sustains a concussion in the Super Bowl this Sunday, he will have access to large medical teams, immediate care and the most advanced diagnostic equipment,” said Senator Menendez. “Meanwhile, thousands of middle school and high school athletes sustain concussions but either don’t have access to the same level of care or simply go undiagnosed. Parents want their children to be physically active, but more than anything, they want them to be healthy. While injured students caught up in the thrill of the game may want to rush back on to the field, policies must be in place that ensure that their long term health is not compromised. That is why Congressman Pascrell and I have introduced the ConTACT Act, why we have chosen to bring attention to this issue on the weekend of the Super Bowl, and why we celebrate initiatives such as the one being proposed at Passaic Valley Regional High. “ \nOn Jan. 26, the Passaic Valley board of Education heard a first reading of the schools superintendent’s recommendation to amend its policy to require all its student athletes, cheerleaders as well as those involved in other physical activities to participate in baseline neuropsychological testing. The board unanimously approved the first reading 9-0. The second reading is scheduled for Feb. 9.                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=55952037-0d82-4253-bba0-fd56ffd32d83,\"MENENDEZ, GILLIBRAND, CLARKE TO INTRODUCE LEGISLATION TO  SPEED VISAS FOR HAITIANS WITH FAMILIES IN THE U.S.\n                    \n                            Backlog Delays Applications for 55,000 Haitians with U.S. Relatives. Legislation Would Bring Haitian Families Together, Boost Needed Resources\n                    \n                      February 4, 2010\n                     \n\n<!--\n /* Font Definitions */\n @font-face\n\t{\"\"Cambria Math\"\";\n\tpanose-1:2 4 5 3 5 4 6 3 2 4;}\n@font-face\n\t{\n\tpanose-1:2 15 5 2 2 2 4 3 2 4;}\n /* Style Definitions */\n p.MsoNormal, li.MsoNormal, div.MsoNormal\n\t{\n\tmso-style-parent:\"\"\"\";\n\tmargin:0in;\n\tmargin-bottom:.0001pt;\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";\n\tmargin-left:0in;\n\tfont-:12.0pt;\"\"Times New Roman\"\",\"\"serif\"\";}\nspan.apple-style-span\n\t{}\n.MsoChpDefault\n\t{\n\tfont-:10.0pt;}\n@page Section1\n\t{:8.5in 11.0in;\n\tmargin:1.0in 1.0in 1.0in 1.0in;}\ndiv.Section1\n\t{page:Section1;}\n-->\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";\n\tmso-fareast-\"\"Times New Roman\"\";\n\tmso-bidi-\"\"Times New Roman\"\";}\n\n\nWASHINGTON– With Haiti in ruins and hundreds of thousands of\npeople left homeless by the earthquake, Senators Kirsten Gillibrand (D-NY) and Robert Menendez\n(D-NJ) announced today that they will introduce legislation that would allow an\nestimated 55,000 Haitians who already have approved immigration petitions to\njoin their relatives in the United States. The legislation would also provide\nthe opportunity to apply for work, and send money back home. The\nGillibrand-Menendez bill would speed up entrance into the U.S. for Haitian\nchildren and adults whose applications have been delayed due to the\nquake  – approximately 20,000 of whom have families in New York.\nRepresentative Yvette D. Clarke (D-Brooklyn) will introduce a similar bill in\nthe House.\nSenator Gillibrand said, “During this\ncatastrophe, it is important that we do everything we can to bring\nHaitian families together. Families here at home still fear for the safety of\ntheir relatives in Haiti, many of whom are homeless. This legislation allows\nthose with approved petitions to finally unite with their U.S. households as\nquickly as possible and send money back at a time when Haiti is so desperate\nfor help.”\nSenator Menendez said, “With this legislation, we can act with\ncompassion toward Haitians whose lives have been devastated and who have been\nwaiting in line as part of the immigration process.”\n“As a Representative of the second highest concentration of first and second\nHaitian immigrants, my office has been and continues to be inundated with\nfamilies desperately trying to reunite with their loved ones directly affected\nby the devastation in Haiti,” said Representative Yvette D. Clarke. \n“I applaud Senator Gillibrand and Senator Menendez for working with me on this\nlegislation, which would allow Haitians with approved I-30 petitions to come to\nthe US now and be with their loved ones here while they wait for their visa\nnumbers. It is imperative that we keep families together during this time of\ncrisis.”  \nThe destruction of Port-au-Prince’s infrastructure and the potential public\nhealth crisis halted the regular consular processing of Haitians with familial\nties to the United States. With U.S. Embassy staff focused on relief efforts,\nthe Gillibrand-Menendez legislation, The Haitian Emergency Life Protection\nAct of 2010, would expand resources to help expedite the backlog of\nfamily-based requests by boosting the State Department's personnel screening of\nHaitian immigrants. And because many in Haiti have lost their required\ndocumentation during the quake, the bill grants State Department and U.S.\nCitizenship and Immigration Services the authority to use the best evidence\navailable in processing applications, including secondary evidence. \nThose with approved immigrant petitions who are waiting to come to the U.S.\ninclude spouses and minor children of U.S. permanent residents, adult children\nof U.S. citizens and permanent residents, and married children, siblings, and\ntheir spouses of U.S. citizens. Visa recipients would not be eligible for\nunemployment benefits, Medicare or other federal services and must follow the\nregular process of applying for a green card.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f7dc9a1c-44fb-4548-b45f-a824f3ccabee,\"LAUTENBERG AND MENENDEZ  ANNOUNCE $200 MILLION IN PRESIDENT’S BUDGET FOR NEW HUDSON RAIL TUNNEL\n                    \n                            Budget also proposes long term federal commitment to tunnel project\n                    \n                      February 1, 2010\n                     WASHINGTON - Senators Frank R. Lautenberg and Robert Menendez today applauded President Obama’s FY 2011 budget for including $200 million to construct a new rail tunnel under the Hudson River.  The budget also prioritized the project for a Full Funding Grant Agreement (FFGA) signaling a long term commitment from the federal government. \n“President Obama’s continued commitment to the tunnel project will help us put people to work on one of the largest and most important infrastructure projects in the entire country,” stated Sen. Lautenberg.  “This project will create jobs, reduce congestion on our roads and provide new energy efficient mass transportation options for travelers.  I look forward to working with the Obama Administration and Governor Christie to advance this project that is so critical to the people and economy of New Jersey and our entire region.”      “We have worked hard on the federal level to ensure a strong commitment to this project and the thousands of local jobs it will create in the short term and permanently” stated Sen. Menendez.  “Sizable investments have been committed and the red tape has been essentially cut away. This project, which is important for the local economy, is on track, and we’re eager to see it get rolling.”\nThe construction of the Mass Transit Tunnel project will create 6,000 construction jobs a year and when complete, the new tunnel will take 22,000 cars off the road daily and create 44,000 permanent jobs.\n    Once completed, the Mass Transit Tunnel will double service capacity to 48 trains per hour during peak periods from the current 23 trains.  Twice as many passengers will be accommodated, from 46,000 each morning peak period now to 90,000 in the future.  The project also will also create transfer-free, one-seat rides for travelers on 11 of NJ Transit’s 12 rail lines.\n   In June of 2009, Lautenberg and Menendez joined then-Governor Jon Corzine, FTA Administrator Peter Rogoff, and federal, state and local officials to break ground on the Mass Transit Tunnel project, the largest transit public works project in America.  Last month, New Jersey Transit awarded the first contract for work on the New Jersey side of the Hudson River.\n                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7fabac5d-dc99-4989-aeb6-f1a7cb94c152,\"SENATOR MENENDEZ CELEBRATES START OF BLACK HISTORY MONTH\n                    \n                            Senator honors contributions of African Americans since before the founding of our nation\n                    \n                      February 1, 2010\n                     WASHINGTON - With Black History Month beginning today, US Senator Menendez released the following statement in celebration:\n\"\"We celebrate this Black History Month not only because our nation is led today by an inspiring African American, but because African Americans have helped to strengthen the fabric of our nation since before it was even founded. We are a stronger nation socially, economically and culturally because of the contributions of African Americans. From scientists to business visionaries, civil rights leaders to world leaders -- we honor the men and women who have not only made ours a more advanced and prosperous world but also a freer and more tolerant world. There are many reasons to celebrate and be thankful for this rich history.\"\"\nBlack History Month is celebrated annually in the month of February. During this month, the social, economic, artistic and cultural contributions of this community are honored.  This celebration originated in 1926, when historian Carter G. Woodson designated the second week of February to celebrate the birth of two Americans with great influence in the history of African Americans: Abraham Lincoln and Frederick Douglass.\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=927171c4-2ed6-47f9-b21d-890b799688c7,\"MENENDEZ, LAUTENBERG ANNOUNCE MORE THAN $38 MILLION IN NEW FUNDING  FOR MAJOR RAIL BRIDGE BETWEEN KEARNY AND SECAUCUS\n                    \n                            Bridge Replacement Is Critical for New Mass Transit Tunnel.  Northeast Corridor Will Receive $112 Million Overall\n                    \n                      January 28, 2010\n                     WASHINGTON – Senators Robert Menendez (D – NJ) and Frank R. Lautenberg (D – NJ) today announced $38,500,000 in new federal Recovery Act funding to complete the final design for a new rail bridge over the Hackensack River between Kearny and Secaucus.  Not only will the new bridge help improve the reliability of Amtrak and NJ Transit trains and reduce wait times for commuters, but its replacement is critical to the completion and success of the new Mass Transit Tunnel. \nThe Northeast Corridor (NEC)will receive a total of $112 million for improvements.  This investment in national intercity passenger rail and high-speed rail projects is being made through grant programs created and  authorized in Senator Lautenberg’s Passenger Rail Investment and Improvement Act, which was signed into law in 2008.\nSenator Menendez, Chairman of the Banking Subcommittee on Housing, Transportation and Community Development, said: “This investment will benefit New Jersey economically in the short term, long term and the time in between. It will help get New Jerseyans to work, create an efficient high speed rail system, and the project is critical to completing the mass transit tunnel project. All told, the Portal Bridge project and the tunnel will create and sustain thousands of new jobs in their construction, maintenance, and use.” \n“This is great news for New Jersey.  If we provide convenient, reliable rail transportation, people will choose it.  This funding for the Portal Bridge project will help improve our rail service, while creating jobs for our residents and moving us one step closer to completing the tunnel project,” Sen. Lautenberg, chair of the Commerce Committee’s Surface Transportation Subcommittee, said.  “I wrote these grant programs into law in 2008, and I commend President Obama for making them a priority and investing in high speed rail projects in New Jersey and the entire region.”  In August 2009, Lautenberg and Menendez wrote Secretary of Transportation Ray LaHood supporting New Jersey’s application to replace the Portal Bridge.  “The project will also address a major chokepoint on the Northeast Corridor and provide the expanded capacity needed to realize the full potential of the Access to the Region's Core Mass Transit Tunnel,” the Senators wrote.  A copy of the August letter is available here.                Approximately 420 passenger trains use the Portal Bridge each weekday.  The current bridge, however, is over 100 hundred years old and can no longer meet the demand of today’s commuters or rail traffic on the Northeast Corridor.  The funding would help replace the current two-track bridge with a three-track one.\nThe Mass Transit Tunnel project, being built in partnership with the Port Authority of New York & New Jersey, is expected to generate and sustain 6,000 jobs through the construction phase of two new rail tunnels under the Hudson River, reinvigorating the link between New Jersey and New York and benefiting the regional economy with improved mobility.  It is expected to create 44,000 permanent jobs. \nThe Tunnel project will double the current rail capacity by adding two new single-track tunnels.  Doubling the number of tracks for trains operating between New Jersey and New York will increase service capacity to 48 trains per hour during peak periods from the current 23 trains.  Twice as many passengers will be able to be accommodated, from 46,000 each morning peak period now to 90,000 in the future.\n                                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ebc31d71-2c1c-4b66-b80f-cc962265c639,\"President Signs Menendez, Baucus, Grassley, Nelson, Lemieux Legislation to Aid Americans Returning from Haiti\n                    \n                            Law Will Provide Critical Funding for U.S. Repatriation Program \n                    \n                      January 27, 2010\n                     WASHINGTON – Senate Finance Committee Chairman Max Baucus (D-Mont.) and Ranking Member Chuck Grassley (R-Iowa), along with Senators Bill Nelson (D-Fla.), Robert Menendez (D-N.J.) and George LeMieux (R-Fla.), today lauded President Obama for his signature of legislation to help Americans in Haiti at the time of the January 12 earthquake.  The bipartisan group of Senators introduced the Emergency Aid to American Survivors of The Haiti Earthquake Act Monday.  The legislation will provide $25 million in funding for the U.S. Repatriation Program, which is currently providing support for thousands of Americans returning from Haiti due to the devastating earthquake.   The bill became law today following passage by unanimous consent in the Senate on Monday and the House on Tuesday.\n\n“The U.S. Repatriation Program now has the funding it needs to continue bringing Americans home safely and providing the care they need after suffering this terrible tragedy in Haiti,” said Baucus.  “We thank our colleagues and President Obama for working quickly with us to ensure this program can meet its commitments.”\n “This will help Americans living in Haiti return to the United States, getting them home if they need to be and clearing the way for aid workers,” Grassley said.  “Separately, it’s important to continue the Qualifying Individual Program for the people who depend on it.”\n“This will go a long way toward helping Americans who survived the devastating earthquake in Haiti get back on their feet,” Nelson said.\nMenendez said, “These loans for Americans living in Haiti when the earthquake hit will provide a badly-needed bridge until they can get back on their feet. Many of them will return home through New Jersey, and they will need a hand in the short-term -- even with basic necessities.”\n“This will go a long way in helping the Americans living in Haiti that have lost everything. It will help them with the transition of returning to the US to begin rebuilding their lives,” LeMieux said. “We need to continue helping those that have been affected by this terrible disaster.”\n\nAlong with additional funding for the Repatriation Program, this bill also provides $65 million in funding for the Qualifying Individual Program, which helps to pay Medicare Part B premium costs for low-income seniors.   Without this funding, the program would be unable to meet its obligations to America’s seniors in 2010. \nAdditional funding for both programs in fully paid for through the Medicaid Improvement Fund.\nMore information on the Emergency Aid to American Survivors of the Haiti Earthquake Act is available on the Finance Committee website at: http://finance.senate.gov/press/Bpress/2010press/prb012510.pdf.\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=528a56e5-2354-4679-b80e-19774be390c1,\"MENENDEZ BLASTS PARTISAN REPUBLICAN GAMES BLOCKING OBAMA NOMINEE FOR FEDERAL BENCH THAT COVERS N.J. \n                    \n                            Judge Greenaway hails from NJ, is nominee for US Court of Appeals, Third Circuit\n                    \n                      January 26, 2010\n                     VIDEO OF SPEECH:\nhttp://www.youtube.com/watch?v=1U8vIe7Nf90\n\n\n<!--\n /* Font Definitions */\n @font-face\n\t{\"\"Cambria Math\"\";\n\tpanose-1:2 4 5 3 5 4 6 3 2 4;}\n@font-face\n\t{\n\tpanose-1:2 15 5 2 2 2 4 3 2 4;}\n /* Style Definitions */\n p.MsoNormal, li.MsoNormal, div.MsoNormal\n\t{\n\tmso-style-parent:\"\"\"\";\n\tmargin:0in;\n\tmargin-bottom:.0001pt;\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";\n\ttext-decoration:underline;\n\ttext-underline:single;}\na:visited, span.MsoHyperlinkFollowed\n\t{\n\tcolor:purple;\n\ttext-decoration:underline;\n\ttext-underline:single;}\n.MsoChpDefault\n\t{\n\tfont-:10.0pt;}\n@page Section1\n\t{:8.5in 11.0in;\n\tmargin:1.0in 1.0in 1.0in 1.0in;}\ndiv.Section1\n\t{page:Section1;}\n-->\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";s right, and let us vote on this eminently qualified, non-controversial nominee. It is clear that the obstruction of this nomination is not about what’s right for the nation, and it certainly is not about acting in the best interests of a badly overburdened judicial system -- in fact, oddly enough, it’s not about ideology. It’s not even about Judge Greenaway, or the other seven nominees that our friends are delaying. It’s about the politics of NO, the politics of obstruction, of stopping any progress on any issue and almost every nominee.”\nFULL TEXT AS DELIVERED:\nMr. President, I rise in support of the nomination to the United States Court of Appeals for the Third Circuit of a distinguished jurist from New Jersey, Judge Joseph A. Greenaway, Jr., which seems to be blocked by some people in this Chamber yet unknown. I know it is not from my side of the aisle because I have checked. So it is on the Republican side of the aisle. Yet Judge Greenaway fully embodies the respect for justice and the rule of law that we demand of all of our judges. He has strong bipartisan support, and his nomination could easily have been taken care of this evening but for a few Republicans blocking the vote.\nI say to my friends on the other side of the aisle: End the obstructionism. Do what is right. Let us have a vote on this eminently qualified, noncontroversial nominee. It is clear the obstruction of this nomination is not about this nominee. He is eminently qualified. I will talk about that in a moment. And it is not about what is right for this Nation. It certainly is not about acting in the best interests of a badly overburdened Federal judicial system. In fact, oddly enough, it is not about ideology. It is not even about Judge Greenaway or the other seven nominees whom our friends are delaying. It is about the politics of having this President and this Congress fail, the politics of no, the politics of obstruction, of stopping any progress on any issue and almost every nominee.\nOur friends on the other side came to the floor in the last administration, the administration of President Bush, on countless occasions to argue for an up-or-down vote. I heard that many times: ``Give us an up-or-down vote,'' demanding that a simple majority of the President's nominees is all that is needed--a simple majority of this Chamber. That is a position diametrically opposed to their position today. In fact, they went so far at that time to proclaim that filibusters of the President's nominations were unconstitutional, and they threatened what became known then as the nuclear option--to undo the right of Senators to filibuster a nominee. Well, which is it? What do my friends on the other side believe is right or is the question: What do they believe will work? Where is the call for an up-or-down vote now from our Republican colleagues? Where is the argument on the unconstitutionality of filibusters now? You can't have it both ways.\nWe can agree to disagree on some nominees on principle, and we have over the years. But the numbers this year belie any notion that the obstruction of Judge Greenaway and all the pending nominees is purely a matter of principle. In this past year, our Republican colleagues have obstructed virtually all the President's nominees, confirming only 12 Federal circuit and district court nominees, the lowest number in a half century. Let me repeat that: the lowest number in a half century. Contrast that to the 100 judicial nominees confirmed in the 17 months Chairman Leahy chaired the Judiciary Committee during the Bush administration.\nAs Chairman Leahy has pointed out on this floor, in December of 2001, the first year of George W. Bush's administration, Senate Democrats confirmed 10 of President Bush's nominees in December alone, leaving only 4 nominations on the calendar--in the first year. All four of those nominees were confirmed soon after the Senate returned the following year, in 2002. In stark contrast, this past December, our Republican colleagues left 10 judicial nominees without Senate action and insisted on returning 2 of them to the President for renomination.\nSo I urge my colleagues to reconsider, to end this obstructionism, and allow this body to exercise its constitutional authority of advice and consent and confirm the nomination of Joseph A. Greenaway to the U.S. Court of Appeals for the Third Circuit. He is eminently qualified and deserves consideration. Let me close on that. At the age of 40, Justice Greenaway was appointed by then-President Clinton to the Federal bench, where he served for over a dozen years with distinction. By the way, he got put through by unanimous consent. It was by unanimous consent of the Chamber when he was put on the Federal bench. He went through unanimously, out of the Judiciary Committee, for this position on the appellate division--unanimously out of the committee.\nJoe Greenaway earned a Bachelor of Arts from Columbia University, where he was honored in 1997 with the Columbia University Medal of Excellence and with the John Jay Award in 2003. He was an Earl Warren Legal Scholar at Harvard University. He clerked for the late Honorable Vincent L. Broderick in the U.S. District Court for the Southern District of New York. He became an assistant U.S. attorney in Newark and later received a promotion to become chief of the Narcotics Bureau. In the private sector, he was an associate with the firm of Kramer, Levin, Nessen, Kamin, and Frankel and served at Johnson & Johnson as in-house counsel. He has an incredible background. He is chair emeritus of the Columbia College Black Alumni Council and has been an adjunct professor at Rutgers Law School.\nCurrently, he is an adjunct professor at the Cardozo School of Law and at Columbia College, where he teaches courses on trial practice and a seminar on the Supreme Court.\nBut this is merely Judge Greenaway's impressive resume in one way--a distinguished resume to say the least--but it does not do justice to the man. There is an inscription over the 10th Street entrance to the Department of Justice a few blocks from here. It reads: ``Justice in the life and conduct of the State is possible only as it first resides in the hearts and souls of men.''\nThe two qualities of justice do indeed reside in the heart and soul of Joe Greenaway, and he deserves a vote.\nHe grew up in Harlem in the northeast Bronx. He is accomplished and successful, but he has always given much back. He has been instrumental in mentoring students and graduates, often taking them under his wing as law clerks or fellows. He once said:\nI tell my students to work hard and work smart. Our profession requires a drive to search for perfection; without that goal mediocrity becomes the norm.\nHe has always strived for excellence. He has always taught young lawyers to do the same.\nSo Judge Joseph Greenaway respects the law. For all that Judge Greenaway stands for--for justice served; for honor and decency; for the qualities and qualifications that have brought him to this place in his career; for his years of service and his judicial temperament; for his respect for the Constitution and precedent; for the fact that justice does, indeed, reside in the heart and soul of this man; for the fact that he was unanimously passed out of the Judiciary Committee and previously, to become a district court judge, had the unanimous consent of this body--somehow, despite all that history and all that qualification, there are colleagues on the Republican side of the aisle holding up this nominee.\nI urge my colleagues to end the obstructionism and to give us a vote up or down. I know when we get that vote, Judge Joseph A. Greenaway will be confirmed to the U.S. Court of Appeals for the Third Circuit. I will continue to come to the floor to dramatize this challenge. We cannot have a set of circumstances under which the judiciary labors, especially with eminently qualified, bipartisan candidates, because there are those who want to see this President or this Congress fail. It is about the Nation not failing. It is about our judicial system not failing. It is not about the politics of obstructionism. With that, I yield the floor.\n                                                            ###\n\n\n                        \n                        \n\t\t\t\t\t\tvar addthis_pub=\"\"senatormerkley\"\";\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=83d22f1a-f004-4b50-8407-7efc226e92e1,\"Senate Unanimously Approves Bill to Aid U.S. Citizens Returning from Haiti\n                    \n                            Menendez, Baucus, Grassley, Nelson,  Lemieux Champion Bill To Provide Much-Needed Funding for U.S. Repatriation Program\n                    \n                      January 26, 2010\n                     WASHINGTON – Senate Finance Committee Chairman Max Baucus (D-Mont.) and Ranking Member Chuck Grassley (R-Iowa), along with Senators Bill Nelson (D-Fla.), Robert Menendez (D-N.J.) and George LeMieux (R-Fla.), hailed the Senate passage of legislation to provide $25 million in additional funding for the U.S. Repatriation Program, which currently provides support for thousands of Americans returning from Haiti following the devastating earthquake on January 12.  The bipartisan group of Senators introduced S. 2949, the Emergency Aid to American Survivors of the Haiti Earthquake Act, Monday and the bill, which passed the Senate by unanimous consent Monday evening, has now been sent to the House of Representatives for consideration.\n\nMenendez said, “Many American citizens in Haiti saw the life they knew crumble in the earthquake. These loans will provide a bridge until they can get back on their feet here in the U.S. Many of these Americans will return through New Jersey, and they deserve a hand in covering the basic necessities.”\n“This legislation will help the tens of thousands of U.S. citizens in Haiti at the time of the earthquake return home safely,” Baucus said.  “Increasing funding for the Repatriation Program is a common-sense solution to ensure we meet our obligations to Americans in need.  We thank our colleagues for working with us to pass this legislation swiftly and look forward to passage by the House to ensure these vital services are not delayed.”\n “This will help Americans living in Haiti return to the United States, getting them home if they need to be and clearing the way for aid workers,” Grassley said.  “Separately, it’s important to continue the Qualifying Individual Program for the people who depend on it.”\n“This will go a long way toward helping Americans who survived the devastating earthquake in Haiti get back on their feet,” Nelson said.\nMenendez said, “Many American citizens in Haiti saw the life they knew crumble in the earthquake. These loans will provide a bridge until they can get back on their feet here in the U.S. Many of these Americans will return through New Jersey, and they deserve a hand in covering the basic necessities.”\n“This will go a long way in helping the Americans living in Haiti that have lost everything. It will help them with the transition of returning to the US to begin rebuilding their lives,” LeMieux said. “We need to continue helping those that have been affected by this terrible disaster.”\n\nAlong with additional funding for the Repatriation Program, this bill also provides $65 million in additional funding for the Qualifying Individual Program, which helps to pay Medicare Part B premium costs for low-income seniors.   Without this additional funding, the program would be unable to meet its obligations to America’s seniors in 2010. \nAdditional funding for both programs is fully paid for through the Medicaid Improvement Fund.\nMore information on the Emergency Aid to American Survivors of the Haiti Earthquake Act is available on the Finance Committee website at: http://finance.senate.gov/press/Bpress/2010press/prb012510.pdf.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=876598e4-131e-46ed-bb79-9df19ee52e33,\"Menendez, Baucus, Grassley, Nelson, Lemieux Introduce Bill to Provide Support for Americans Returning from Haiti\n                    \n                            Senators’ Plan Would Raise the Cap on U.S. Repatriation Assistance Funding for 2010\n                    \n                      January 25, 2010\n                     WASHINGTON – Senate Finance Committee Chairman Max Baucus (D-Mont.) and Ranking Member Chuck Grassley (R-Iowa), joined by Senators Bill Nelson (D-Fla.), Robert Menendez (D-N.J.) and George LeMieux (R-Fla.), today introduced the Emergency Aid to American Survivors of the Haiti Earthquake Act to provide repatriation support for U.S. citizens living in Haiti during the devastating earthquake on January 13.  The Senators’ proposal would raise the $1 million annual funding limit for the U.S. Repatriation Program, which assists Americans seeking to return from foreign countries following hardship or disaster.  This legislation would provide the program with up to $25 million for 2010 in order to meet its commitment to more than 14,000 Americans who have already returned home and continue providing assistance to thousands more Americans expected to return over the coming months.\n\n“We have a solemn responsibility to protect our citizens, including those living abroad, and this proposal allows us to meet that obligation.  Thousands of Americans were living in Haiti at the time of this disaster, and we need to help bring them home safely and provide the care and resources they need to meet their immediate and basic needs,” Baucus said.  “This proposal, combined with legislation we passed to facilitate donations to the relief effort, is a critical part of our response to the crisis in Haiti and we urge our colleagues to move without delay.”\n“This will help Americans living in Haiti return to the United States, getting them home if they need to be and clearing the way for aid workers,” Grassley said.  “Separately, it’s important to continue the Qualified Individual Program for the people who depend on it.”\n“Anything we can do, we should do to help people who survived the devastating earthquake in Haiti,” said Nelson.\nMenendez said, “Our fellow American citizens living in Haiti at the time of the devastating earthquake have suffered greatly and they could benefit greatly from these temporary loans as a bridge until they are whole again. These Americans, many of whom will return through New Jersey, need a hand with even the basics, like a temporary home, food, and medical care.” “Many Americans living in Haiti have lost everything. This allows for critically important transition assistance for those Americans in Haiti facing a very difficult challenge,” LeMieux said.\n\nThe Social Security Act provides up to $1 million annually for the Department of Health and Human Services (HHS) to reimburse states for providing aid such as cash, travel expenses to come home, immediate medical care, temporary lodging and food assistance through the U.S. Repatriation Program.  Recipients are expected to repay the aid they receive except in the case of extreme hardship, and in a typical year, the program provides regular assistance to Americans and their dependents returning home after facing emergency situations abroad. \nIn the case of a large-scale crisis, as in Haiti, the mass evacuation of U.S. citizens requires additional funding for the program to fulfill its responsibilities to returning Americans.  In 2006, Congress raised the $1 million annual limit to accommodate Americans returning home from the devastation in Lebanon and during the Gulf War, the annual limit was waived entirely. \nToday’s legislation raises the $1 million funding cap to $25 million for fiscal year 2010 to provide assistance for Americans returning from Haiti.\nAdditionally, the legislation provides $65 million in additional funding for the Qualified Individual Program, which provides assistance for low-income seniors to help cover the costs of their Medicare Part B premiums.  Without this additional money, funding for the program will fall short for 2010 and states will be unable to help America’s low-income seniors.\nThe total cost of the bill, $90 million, is fully paid for through the Medicaid Improvement Fund.\nAt the time of the earthquake, more than 45,000 U.S. citizens were living in Haiti.  More than 5,000 have returned to date and the U.S. State Department expects 600 to 2,000 Americans to return daily over the coming months.  The state of Florida has already incurred nearly $1 million in costs and will need to be reimbursed soon.  Without this legislation, HHS will be unable to repay the money owed to states or provide any further assistance to Americans returning home.\nThe full text of the Emergency Aid to American Survivors of the Haiti Earthquake Act is available on the Finance Committee website at: http://finance.senate.gov/sitepages/leg/leg012310%20Haiti.pdf.\nThe Senate also passed legislation last week to help Americans seeking to provide aid to Haiti by extending the ability to deduct charitable contributions to Haiti on 2009 tax returns through March 1, 2010. More information on that legislation is also available on the Finance Committee website at: http://finance.senate.gov/press/Bpress/2010press/prb012110e.pdf.\n                                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ebc63ee6-d04e-4af5-8265-d52b2e222b40,\"MENENDEZ CALLS ON GOLDMAN SACHS TO RECONSIDER HUGE BONUSES AFTER TAKING BILLIONS IN TAXPAYER ASSISTANCE\n                    \n                            Menendez urges more emphasis on program to increase small business lending\n                    \n                      January 22, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, is calling on Goldman Sachs to reconsider its huge 2009 bonus payouts after the firm stayed afloat on billions of taxpayer dollars. Yesterday, Goldman Sachs announced $16.2 billion in bonuses and compensation in 2009, which amounts to a more than 50 percent increase over the $10.7 billion committed to bonuses and compensation in 2008. Meanwhile, the firm has received at least $24 billion in taxpayer assistance.\nIn his letter to CEO Lloyd Blankfein, Menendez also focuses on Goldman Sachs’s small business assistance program. The firm has touted its commitment of $500 million for the program, but Menendez says that it should be doing more to help Main Street after taxpayers helped put the company in position to have a highly profitable 2009.\n“I … remind you that perhaps the foremost reason our banking system nearly collapsed was a detachment between Wall Street and Main Street,” wrote Menendez. “I recognize that issues of excessive compensation are a problem across many large banks and are not limited to Goldman Sachs.  I hope you would agree that, as we try to build new and lasting economic security for our nation, Wall Street must better understand and respect Main Street.  Unfortunately, based on the levels of bonuses compared to small business assistance, I am concerned that Goldman Sachs understands this new reality in a public relations sense only.”\nPDF of letter to Blankfein: http://menendez.senate.gov/imo/media/doc/20100121ltr_goldmansachs.pdf\nFull text of letter:\nJanuary 21, 2010\nLloyd BlankfeinChief Executive OfficerGoldman Sachs85 Broad StreetNew York, NY 10004\nDear Mr. Blankfein,\nI write to you today concerning the bonuses that Goldman Sachs has announced it will be distributing and the comparatively small sum of money devoted to your new small business program.  More generally, this letter regards what lessons, if any, banks have learned from the near financial meltdown and resulting taxpayer assistance, as well as how banks can be a true partner with Main Street in this new economy.\nGoldman Sachs announced today, under your direction, that it has set aside $16.2 billion in compensation for 2009, which includes year-end bonuses – up more than 50 percent from 2008 total compensation of $10.7 billion.  These payouts come during a year in which the financial system nearly collapsed and Goldman Sachs received at least $24 billion in taxpayer support.  That assistance included $10 billion in direct taxpayer assistance through TARP; $14 billion in indirect taxpayer assistance from the bailout of AIG; the ability to raise $21.2 billion of FDIC-backed debt through the Temporary Liquidity Guarantee Program; access to the Federal Reserve’s discount window; and implicitly receiving “too big to fail” backing from the federal government.  I appreciate that Goldman Sachs is an important employer in the state of New Jersey with a record of charitable endeavors.  I also appreciate that your firm has paid back the $10 billion in direct TARP funds with interest, but let us ask ourselves if Goldman Sachs would be in a position to award such large bonuses now without the lifebuoy of taxpayer dollars.\nIn juxtaposition to this compensation is your firm’s new 10,000 Small Businesses project.  It is a tremendously worthy idea – small businesses have created nearly two-thirds of new jobs over the past 15 years, but they have been frozen out of access to loans during the credit crisis, with the 22 banks that received the most TARP funds having dropped their small business lending portfolio by $10.5 billion over the past 6 months.  On top of that, more than 160 local banks that would otherwise be a main source of capital for small businesses have closed their doors in the past 18 months.  Despite the admirable goals of your program, the amount of funding your firm has put into it – $500 million – is about three percent of the amount your firm has allotted to compensation and only about two percent of the amount the firm received in taxpayer assistance.  This raises serious questions as to whether this “charitable” initiative is merely window dressing for Goldman Sachs to otherwise continue business as usual with a pre-meltdown mentality.  I would encourage you to rethink the total amount and ask you what percent you envision going to small businesses in underserved communities.\nLooking at the comparison between your bonuses and Main Street initiatives, I want to know what has changed since your firm was kept afloat by taxpayers.\nYour announced compensation figures, including bonuses, equal approximately $500,000 per Goldman Sachs employee.  Your announced small business plan would equal $50,000 per each of the “10,000” small businesses.  As a Senator from a state with a high concentration of Wall Street employees, I fully understand that some of your employees are not millionaires, they have families to sustain, and they may depend on bonuses for most of their annual income.  But I also understand that many of these bonuses are likely to be multi-million dollar payouts to millionaire or billionaire executives. \nI remind you that the median personal income for an American employee was $39,336 in 2007.  That means half of the wage earners in our country earn less than $39,336, and many of them have had to send some of their hard-earned income to keep Goldman Sachs and the rest of the financial system from collapsing over the past year.  I also remind you that perhaps the foremost reason our banking system nearly collapsed was a detachment between Wall Street and Main Street.  I recognize that issues of excessive compensation are a problem across many large banks and are not limited to Goldman Sachs.  I hope you would agree that, as we try to build new and lasting economic security for our nation, Wall Street must better understand and respect Main Street.  Unfortunately, based on the levels of bonuses compared to small business assistance, I am concerned that Goldman Sachs understands this new reality in a public relations sense only.\nAs such, I again urge you to reconsider the proportion of funding you are putting into bonuses compared to your small business initiative, particularly in light of the amount of assistance taxpayers gave over the past year and the dire economic woes currently facing businesses in underserved communities.  And I urge you to continue with a robust small business program on a permanent basis.\nThank you for your attention to this matter.  I look forward to your response.\n                                                            Sincerely,\n                                                            ROBERT MENENDEZ                                                            United States Senator\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3b98f955-94c6-45c8-8467-f1ce1f1328f1,\"HAITI ADOPTIONS:  MENENDEZ JOINED BY BIPARTISAN GROUP OF 33 SENATE COLLEAGUES IN ASKING FEDS TO TAKE ADDITIONAL STEPS TO EXPEDITE ORPHAN ADOPTIONS\n                    \n                            In addition to expedited process, Senators call for attention to the orphans’ well being, revised documentation requirements\n                    \n                      January 22, 2010\n                     WASHINGTON – Today, a bipartisan group of 34 U.S. Senators, led by Senator Robert Menendez (D-NJ), urged the State Department and Department of Homeland Security to take additional steps to ensure the expedited adoption of Haitian orphans and to ensure that the orphans are kept safe and healthy. In their letter to Secretary of State Clinton and Homeland Secuirty Secretary Janet Napolitano, the senators called for:\n•    A continued effort to find and rescue orphans and process those with pending adoptions in an expedited manner\n•    Coordination with international governmental and non-governmental agencies to set up adoption centers that can provide safety and care for orphans\n•    Allowing secondary documentation for adoption proceedings in cases where evidence has been destroyed.\n“As you know, last Tuesday’s earthquake left orphanages without food and water, and with little access to medical care,” wrote the senators. “We are all aware of constituents who are in the process of adopting children from Haiti and who are now understandably concerned for the children’s well being.  As the supply of basic services continues to be a grave concern, many prospective parents still do not even know the whereabouts of their adopted children.  We are very appreciative of your continued efforts to rescue these orphans and urge you to expedite these efforts.”\nThe letter was signed by Senators Robert Menendez (D-NJ), Blanche Lincoln (D-AR), Byron Dorgan (D-ND), Charles Schumer (D-NY), Roland Burris (D-IL), Jack Reed (D-RI), Michael Bennet (D-CO), Jon Tester (D-MT), Richard Durbin (D-IL), Carl Levin (D-MI), Richard Lugar (R-IN), Jeff Merkley (D-OR), Max Baucus (D-MT), Tim Johnson (D-SD), Kirsten Gillibrand (D-NY), Sherrod Brown (D-OH), Joseph Lieberman (I-CT), Frank Lautenberg (D-NJ), Orrin Hatch (R-UT), Roger Wicker (R-MS), Ron Wyden (D-OR), John Kerry (D-MA), Tom Udall (D-NM), Evan Bayh (D-IN), Sam Brownback (R-KS), Jim DeMint (R-SC), Kay Hagan (D-NC), Russell Feingold (D-WI), Patty Murray (D-WA), Herb Kohl (D-WI), Al Franken (D-MN), Debbie Stabenow (D-MI), Dianne Feinstein (D-CA) and Pat Roberts (R-KS).\nPDF of letter: http://menendez.senate.gov/imo/media/doc/201001ltr_HaitiAdoptions.pdf\nFull text of letter:\nJanuary 22, 2010\nThe Honorable Hillary Rodham ClintonSecretary of StateU.S. Department of State2201 C Street N.W.Washington, DC 20520\nThe Honorable Secretary Janet NapolitanoSecretary of the Department of Homeland SecurityDepartment of Homeland SecurityWashington, DC 20528\nDear Secretary Clinton and Secretary Napolitano:\nWe would first like to commend both of you for your role in a well-coordinated U.S. Agency for International Development led but government-wide response to the devastating earthquake in Haiti.  We also want to thank you for all of your efforts to rescue victims, reunite families and provide assistance to those who are still searching for loved ones. \nWe are writing to you regarding pending adoption cases of Haitian children and how your agencies can work with the Haitian Government to further help these children.  Specifically, we write to ask that you please continue to expedite the search and rescue of orphans in Haiti so that prospective parents can proceed as quickly as possible to bring their children home.  In addition, we write to ask that the Departments work with international and non-governmental organizations to establish, to the extent possible given the multitude of pressing humanitarian needs, an adoptions center in Haiti that can provide safety, security, food, water, medical attention, immigration information, and other necessities to the children, their caretakers and their parents.\nAs you know, last Tuesday’s earthquake left orphanages without food and water, and with little access to medical care.  We are all aware of constituents who are in the process of adopting children from Haiti and who are now understandably concerned for the children’s well being.  As the supply of basic services continues to be a grave concern, many prospective parents still do not even know the whereabouts of their adopted children.  We are very appreciative of your continued efforts to rescue these orphans and urge you to expedite these efforts.\nWe are also very relieved by the Administration’s announcement that Haitian adoptive children may be paroled into the United States.  However, we are concerned that in some situations, families and children may not have easy access to all of the required documentation that would demonstrate their eligibility for parole and in these cases, we urge you to work with their parents and their caretakers to secure secondary evidence regarding the child’s pending adoption. As you know, in some cases, documentation in Haiti has been destroyed and in other cases, the child’s application was not yet completely processed. In order to bring these children into the United States as quickly as possible, we ask that both agencies work with families to locate secondary evidence and accommodate situations where a background check must be completed now because the appropriate checks were not completed prior to the earthquake.\nAgain, thank you for your leadership during this difficult time and I look forward to your responses.\nSincerely,\nMenendezLincolnDorganSchumerBurrisBennetTesterDurbinLevinLugarMerkleyBaucusJohnsonGillibrandBrownLieberman Lautenberg  Hatch WickerWydenKerry Udall BayhBrownback DeMintHaganFeingoldMurrayKohlFrankenStabenowFeinsteinRobertsReed\n                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3a8f7b2f-4a30-4648-b1de-3d337c3cb5fc,\"SENATORS MENENDEZ, LAUTENBERG ANNOUNCE MORE THAN $18 MILLION TO ASSIST LOW INCOME FAMILIES IN NEW JERSEY WITH ENERGY BILLS\n                    \n                            NJ Senators advocated for release of funding that will help reduce the burden of energy costs \n                    \n                      January 22, 2010\n                     WASHINGTON – Today, US Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced the release of an additional $18,341,081 in emergency funds to assist New Jersey’s low income families with energy costs. A total of $490 million in Low Income Energy Assistance Program (LIHEAP) contingency funding was awarded nationwide by the US Department of Health and Human Services.\nEarlier this year a group of Senators, including Senators Menendez and Lautenberg, sent a letter to President Obama urging him to make these resources available given the increased unemployment, layoffs, and participation in public programs such as food stamps. In conjunction with the block grant funding already being spent in each state, these funds will help thousands of families reduce their spending on energy so they can address other basic needs.\n“In these tough times, this crucial funding will help thousands of New Jersey families with energy costs, an expense that puts constant stress on family budget,” said Menendez. “With this relief, New Jerseyans will be able to keep their families warm this winter and use more of their limited financial resources towards other basic needs and expenses. As we rebuild our economy , these funds will provide much needed short term relief to thousands of families in our state.”\n“This important federal program will help low-income residents across New Jersey pay their energy bills and keep their families warm,” said Lautenberg.  “No family should ever have to choose between heating their home or putting food on the table.  As temperatures drop this winter, these funds will help improve living conditions for New Jersey families.”\nLIHEAP was created to help eligible low income families with costs associated with heating and insulating their homes in the winter and cooling their homes in the summer. A total of $5.1 billion was awarded to the program in fiscal year 2010, including more than $590 million in LIHEAP contingency funding. For more information on the program, please visit: http://www.acf.hhs.gov/programs/ocs/liheap/\nPDF of the letter: http://menendez.senate.gov/imo/media/doc/2010.01.07LIHEAPContingency.pdf\nFull text:\nJanuary 7, 2010\nThe PresidentThe White HouseWashington, DC 20500\nDear Mr. President:\nWe write to thank you for your support of energy assistance for low-income families and to request that you utilize funding from the recently enacted Consolidated Appropriations Act to further aid financially-strapped households in paying their energy bills. As you know, $5.1 billion was provided for the Low Income Home Energy Assistance Program (LIHEAP) in fiscal year 2010 – the highest funding level in the history of the program.  This appropriation includes more than $590 million in LIHEAP contingency funding.  We urge you to release these resources as soon as possible to address the needs of families and seniors who are struggling in the current economic crisis.  In addition, we ask that you dedicate sufficient funds for this program in your Fiscal Year 2011 budget request.\nMore families are in need of and receiving LIHEAP benefits than ever before.  According to the National Energy Assistance Directors Association (NEADA), states assisted more than 8 million households last year, nearly a one-third increase over fiscal year 2008.  Furthermore, NEADA anticipates a 20 percent increase in LIHEAP applications this year.  Even at the record appropriations levels passed by Congress the last two years, demand for the LIHEAP program continues to exceed funding.  Accordingly, states will be able to spend contingency funding immediately.\nThe Low-Income Home Energy Assistance Act of 1981 instructs that the LIHEAP contingency fund be used assist the “needs of one or more States arising from a natural disaster or other emergency.”  The law states that economic conditions, such as increased unemployment and layoffs, as well increased participation in public benefits such as food stamps, merit the release of LIHEAP contingency funds.  Clearly these conditions have been met.  The most recent USDA food stamp data indicates that, a record 37 million people – approximately one in eight Americans – received food stamps in September.  Moreover, many states have experienced unemployment rates that have exceeded the national average for several months.  In releasing these funds, we urge you to give consideration to targeting assistance based on economic conditions, as well as extreme weather events.\nReleasing emergency LIHEAP funding – supplementing block grant funding already being spent in every state – will help thousands of families and seniors with their energy bills, and in doing so, create a noticeable economic multiplier.  Less burdened by energy bills, these low-income families have more to spend on other essentials, and can avoid the choice between paying energy bills and putting food on their table. \nDue to the clear economic benefit and demonstrated need, we also urge you to include full funding for LIHEAP in your Fiscal Year 2011 Budget request, the same level that Congress has provided over the last two years.  \nFor many years, LIHEAP has been a vital safety net for low-income families and seniors.  In these tough economic times, the program is more important than ever.  As such, we respectfully request that you release LIHEAP funding to meet the immediate, emergency needs, and urge you to as maintain the federal commitment to low-income energy assistance.\nThank you for your consideration of this important issue.\nSincerely,\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c76a23c7-61f6-4aba-a0e6-ba241831dff8,\"SENATOR MENENDEZ ANNOUNCES NEARLY $9 MILLION FOR ENERGY EFFICIENT LIGHTING PROJECTS IN NEW JERSEY\n                    \n                      January 21, 2010\n                     WASHINGTON – Today, US Senator Robert announced nearly $9 million in funding for four energy-efficient lighting projects in New Jersey awarded by the US Department of Energy (DOE) as part of the American Recovery and Reinvestment Act. Solid-state lighting uses light-emitting diodes (LEDs) and organic light-emitting diodes (OLEDs) instead of incandescent bulbs and has the potential to be ten times more energy-efficient than traditional incandescent lighting. Approximately 24 percent of the total electricity generated in the United States today is used for lighting. The development and use of cost-effective solid-state lighting has the potential to reduce this number by one–third by 2030.\n“This critical funding will help ensure New Jersey remains at the forefront of energy-efficient technology innovation as we lay the foundation for a 21st century clean energy economy. By  investing in solid-state lighting and energy efficiency specifically, it will also help our state lower energy consumption, cut energy costs, and create jobs. This is a win-win for our environment and our economy.”\nFunding for the following three projects in New Jersey were announced today:\nProduct Development •           $1,794,806 -- Lightscape Materials, Inc. (Princeton, NJ)\nU.S. Manufacturing •           $4,000,000 -- Universal Display Corporation (Ewing, NJ)•           $4,000,000 -- Veeco Instruments (Somerset, NJ)\nThese funds were awarded as part of the sixth round of DOE funding for solid-state lighting core technology research and product development, and the first round of resources for solid-state lighting manufacturing projects funding.  For more information about DOE industrial energy efficiency efforts and solid state lightning, visit the Solid-State Lighting Program website.\n                                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7393fdd2-c9f0-4b0f-95c1-2fcc36688275,\"MENENDEZ HAILS PASSAGE OF BIPARTISAN PLAN TO SPUR HAITI DONATIONS, PROVIDE TAX RELIEF TO FAMILIES WHO CONTRIBUTE\n                    \n                            New law will allow 2009 tax deductions for contributions made before March 1, 2010\n                    \n                      January 21, 2010\n                     WASHINGTON – U.S. Senator Robert Menendez, a member of the Finance Committee, today hailed the Senate passage of legislation that will facilitate donations to the Haitian earthquake emergency aid and rebuilding efforts. Menendez is an original co-sponsor of the bipartisan Senate version of H.R. 4462, which will allow U.S. taxpayers to make charitable contributions to Haiti relief programs before March 1, 2010, and claim those contributions on their 2009 income tax return.\n“In the midst of unimaginable devastation on the island of Haiti, the outpouring of support for our hard hit neighbors is helping to save literally thousands of lives,” said Menendez. “We understand that despite the overwhelming desire to help the people of Haiti recover, family budgets are tight and these are not the easiest of times for many to donate. This legislation will help ensure that those who do give money and goods will receive immediate tax relief. Hopefully, this will both relieve pressure on family budgets here in the United States and help our neighbors in Haiti put their lives back together.”\nThe HAITI Act of 2010 is similar to 2005 legislation to encourage Indian Ocean tsunami relief donations and allows taxpayers to deduct cash donations made to Haiti relief efforts on their 2009 tax filings. \n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=01abdcac-735a-489b-b147-e242210731c0,\"LAUTENBERG AND MENENDEZ ANNOUNCE MORE THAN $49 MILLION IN FEDERAL RECOVERY ACT FUNDING FOR AFFORDABLE HOUSING IN NEW JERSEY\n                    \n                      January 19, 2010\n                     \n\n<!--\n /* Font Definitions */\n @font-face\n\t{\"\"Cambria Math\"\";\n\tpanose-1:2 4 5 3 5 4 6 3 2 4;}\n@font-face\n\t{\n\tpanose-1:2 15 5 2 2 2 4 3 2 4;}\n /* Style Definitions */\n p.MsoNormal, li.MsoNormal, div.MsoNormal\n\t{\n\tmso-style-parent:\"\"\"\";\n\tmargin:0in;\n\tmargin-bottom:.0001pt;\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";}\n@page Section1\n\t{:8.5in 11.0in;\n\tmargin:1.0in 1.0in 1.0in 1.0in;}\ndiv.Section1\n\t{page:Section1;}\n-->\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";\n\tmso-fareast-\"\"Times New Roman\"\";\n\tmso-bidi-\"\"Times New Roman\"\";}\n\n\nNEWARK – Sens. Frank R. Lautenberg\nand Robert Menendez today announced the U.S. Department of the Treasury\nhas awarded the New Jersey Housing and Mortgage Finance Agency (HMFA) more than\n$49 million from the American Recovery and Reinvestment Act (ARRA) to finance\nthe expansion and improvement of affordable housing in New Jersey.  The\nRecovery Act, which Lautenberg helped author as a member of the Senate\nAppropriations Committee, was signed into law by President Obama in February of\n2009.  Menendez is chairman of the Senate Banking Subcommittee on Housing.\n“In\nthese tough economic times, we need to do all we can to ensure New Jersey’s\nneediest families have a place to call home,” said Sen. Lautenberg.  “This\nfederal Recovery Act funding will help finance affordable housing in New Jersey\nwhile creating and preserving good jobs.”\nb>\n“It\nis absolutely critical in this economy that families who are struggling can\nafford to keep a roof over their heads and that we create jobs,” said Menendez.\n “This recovery package funding helps accomplish both, by providing\nemployment opportunities as we build and improve affordable housing in our state\nand by providing families with quality housing options that fit their budget.”\nb>\nNJHMFA will receive $49,073,194\nfor construction and acquisition and rehabilitation of rental housing for\nlow-income families and individuals.  The funding will also support the\ncreation and preservation of construction and non-construction jobs.\n\n\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=127074eb-6127-4d27-a849-12616b56c058,\"FOREIGN ASSISTANCE SUBCOMMITTEE CHAIR MENENDEZ RECEIVES HAITI UPDATE FROM USAID'S SHAH\n                    \n                      January 15, 2010\n                     NEWARK - U.S. Senator Robert Menendez (D-NJ), chairman of the Foreign Relations subcommittee on foreign assistance, today received a phone briefing from USAID Administrator Rajiv Shah on the assistance efforts in the aftermath of the Haiti earthquake. Menendez said that the U.S. is clearly acting robustly, decisively and in a leadership capacity, but the main challenges remain logistical. Among the updates Menendez received were:\n-The U.S. Is delivering 600,000 pallets of food and high-energy protein packets\n-The U.S. Is delivering 12,000 water containers, and is also delivering hygene kits\n-Logistical issues, including the lack of available landing points, are forcing the U.S. and non-governmental organizations to adapt. This includes the reliance on an aircraft carrier as a primary staging point.\n\"\"It is clear that the rescue and recovery operation in Haiti remains a signifcant challenge because of forces out of anyone's control, including a simple lack of space and facilities that would help the effort,\"\" said Menendez. \"\"Assistance and relief agencies are adapting as well as is humanly possible, and they are constantly thinking outside of the box to help get relief on the ground. Dr. Shah is literally in his first days on the job, and I have tremendous admiration for the organization, decisiveness, and leadership he is showing. If we can continue to send life-saving resources and to adapt to logistical limitations, literally thousands of lives can still be saved.\"\"\n                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=52c2ce62-6503-4940-baf3-037e1f77147c,\"SENATOR MENENDEZ ANNOUNCES NEW WAYS FOR NEW JERSEYANS TO GET INFO ON LOVED ONE IN HAITI\n                    \n                      January 14, 2010\n                     WASHINGTON – US Senator Menendez announced today a new Washington-based email address for use by the general public seeking information about US citizens in Haiti: Haiti-Earthquake@state.gov . Below is also an updated list of additional resources regarding the earthquake in Haiti for US Citizens and Haitian Citizens in the United States. \nADDITIONAL RESOURCES FOR US CITIZENS AND HAITIAN CITIZENS IN THE UNITED STATES - PROVIDED BY THE US DEPARTMENT OF STATE  \nFor general information, please visit the State Department’s travel.state.gov Haiti page, which is updated constantly, and will regularly provide updated travel alerts regarding the situation:  http://www.travel.state.gov/travel/cis_pa_tw/cis/cis_1134.html .U.S. Citizen InquiriesThe U.S. Embassy in Port Au Prince has set up a task force at the Embassy which is taking calls as conditions permit.  The Embassy is working to identify U.S. citizens in Haiti who need urgent assistance and to identify sources of emergency help.   U.S. citizens are urged to contact the Embassy via email (ACSPaP@state.gov) to request assistance.  U.S. citizens in Haiti can call the Embassy’s Consular Task Force at 509-2229-8942, 509-2229-8089, 509-2229-8322, or 509-2229-8672.  The State Department has also created a task force to monitor the emergency.  People in the U.S. or Canada with information or inquiries about U.S. citizens in Haiti may reach the Haiti Task Force at 888-407-4747; ca-taskforce@state.gov.   Outside of the U.S. and Canada, call 202-501-4444.  For further information and updates, please see the State Department’s Consular Affairs website.  \nWe still encourage you to reach out directly to the Department’s Haiti Task Force at 1-888-407-4747; Haiti-Earthquake@state.gov.  Note: We understand that the 888 call center number is being inundated with calls and it has been difficult to get through and the State Department is actively working to address this problem.\nHaitian Citizens in the U.S.Haitian citizens in the U.S. should call the Haitian Embassy in Washington, D.C., 202-332-4090, or the Haitian Consulate in New York City, 305-859-2003.  \nContributions/Donations\nU.S. citizens who wish to contribute to the relief effort for Haiti after the earthquake, either online or by text message, can visit www.WhiteHouse.gov.  For additional information on how to make contributions and donations to disaster relief, please visit the following links to the Center for International Disaster Information's (CIDI) Guidelines and FAQ, which will be helpful in answering questions regarding Contributions/Donations.  This website also has Guidelines available in French and Kreyol.http://www.cidi.org/guidelines/guide_ln.htmhttp://www.cidi.org/media/faq.htmVolunteer OpportunitiesPersons who wish to provide assistance or expertise in Haiti are asked to contact the Center for International Disaster Information.  The Center, operated under a grant from the United States Agency for International Development's Office of Foreign Disaster Assistance, has established a dedicated page to coordinate Haiti support at:  http://www.cidi.org/incident/haiti-10a/ .\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=51a70f5a-47f0-407d-ac98-529a340f924d,\"Lautenberg and Menendez Call on President Obama to Grant Temporary Protected Status to Haitians in Wake of Devastating Earthquake\n                    \n                      January 13, 2010\n                     NEWARK – Following the major earthquake and humanitarian disaster in Haiti, Senators Frank R. Lautenberg (D –NJ) and Robert Menendez (D-NJ) today joined Senate colleagues in calling on President Obama to grant Temporary Protected Status (TPS) to Haitian nationals currently residing in the United States.  TPS is granted to foreign nationals who cannot safely return to their native country.  \n\n“The earthquake that occurred yesterday has devastated the Haitian capital of Port-au-Prince and the chaos that has ensued puts all the citizenry of that country at risk.  Now is certainly not the time to deport Haitians into an overly burdened country,” the Senators wrote.  “Haiti clearly meets the criteria for TPS designation and extending it would be one small way to help address this catastrophe, as well as alleviate additional burdens on American assistance workers.” \n\nA complete copy of the letter is available here.  The letter is also signed by Senators Kirsten Gillibrand (D-NY), Bill Nelson (D-FL), Jeff Bingaman (D-NM), John Kerry (D-MA), Dick Durbin (D-IL), Patrick Leahy (D-VT), Dianne Feinstein (D-CA), Chris Dodd (D-CT), Paul Kirk (D-MA), Tom Harkin (D-IA), Bob Casey (D-PA),Charles Schumer (D-NY), Bernie Sanders (D-VT), Ben Cardin (D-MD), Sherrod Brown (D-OH), Tom Carper (D-DE) and Jeanne Shaheen (D-NH). The United States granted TPS to Honduras and Nicaragua in 1999, following Hurricane Mitch, and to El Salvador in 2001, following several earthquakes.  As the program is designed, TPS would only be available to Haitians already living in the United States.   Americans seeking information about family members in Haiti can call (888) 407-4747.  For more information, visit: http://www.state.gov/p/wha/ci/ha/index.htm.\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=23318761-074a-469f-8fab-7785fafafc93,\"EARTHQUAKE IN HAITI -- How to get information and how to help\n                    \n                      January 13, 2010\n                     For complete information on the devastating earthquake in Haiti, including information on how you can help or donate, please visit: http://www.state.gov/p/wha/ci/ha/index.htm.\nSenator Menendez's Newark office is happy to assist or answer questions at 973-645-3030.\nADDITIONAL RESOURCES FOR US CITIZENS AND HAITIAN CITIZENS IN THE UNITED STATES\nU.S. Citizen Inquiries\nThe U.S. Embassy in Port Au Prince has set up a task force at the Embassy which is taking calls as conditions permit.  The Embassy is working to identify U.S. citizens in Haiti who need urgent assistance and to identify sources of emergency help.   U.S. citizens are urged to contact the Embassy via email to request assistance.  U.S. citizens in Haiti can call the Embassy’s Consular Task Force at 509-2229-8942, 509-2229-8089, 509-2229-8322, or 509-2229-8672.  The State Department has also created a task force to monitor the emergency.  People in the U.S. or Canada with information or inquiries about U.S. citizens in Haiti may reach the Haiti Task Force at 888-407-4747; ca-taskforce@state.gov.   Outside of the U.S. and Canada, call 202-501-4444.  For further information and updates, please see the State Department’s Consular Affairs website. \nNote: We understand that the 888 call center number is being inundated with calls and it has been difficult to get through and the State Department is actively working to address this problem.\nHaitian Citizens in the U.S.\nHaitian citizens in the U.S. should call the Haitian Embassy in Washington, D.C., 202-332-4090, or the Haitian Consulate in New York City, 305-859-2003.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c5a333fc-aacc-48f2-8747-43981a62a917,\"MENENDEZ, DODD, KERRY, LUGAR, BIPARTISAN GROUP OF SENATORS EXPRESS SUPPORT FOR AGGRESSIVE RESPONSE TO HAITI CRISIS\n                    \n                      January 13, 2010\n                     WASHINGTON – Senator Chris Dodd (D-CT), Senate Foreign Relations Committee Chairman John Kerry (D-MA), and Committee Ranking Member Richard Lugar (R-IN)—along with a bipartisan group of Senators—today sent a letter to Secretary of State Hillary Clinton expressing support for an aggressive United States humanitarian response to the earthquake in Haiti.\nIn the letter, the senators pledged to work with Secretary Clinton, the State Department and the U.S. Agency for International Development (USAID) to speed recovery efforts in Haiti following yesterday’s earthquake.\n“An aggressive and coordinated international effort—with active leadership from the United States—is essential in order to save lives and prevent further devastation,” the senators wrote. “This tragedy presents enormous challenges, not only to the people of Haiti, but also to the international community’s efforts and ability to respond.  We want to assure you that we stand ready to assist you, Administrator Shah, and the administration in both the immediate response to the crisis and to the longer term plan for recovery.”\nThe letter, which can be found in full below, was also signed by Senators Leahy (D-VT), Bingaman (D-NM), Harkin (D-IA), Durbin (D-IL), Menendez (D-NJ), Corker (R-TN), and Barrasso (R-WY).\nDear Secretary Clinton,\nWe write to express our deep concern over the tragic loss of life and devastating destruction in the aftermath of Tuesday’s earthquake in Haiti, and to express our support for your efforts to respond quickly and aggressively to this crisis.  Our thoughts and prayers are with the people of Haiti and the thousands of Americans who have friends and family affected by this disaster.\nWe appreciate the strong public statement made today by the President as well as the efforts that you and the State Department have already taken.  An aggressive and coordinated international effort—with active leadership from the United States—is essential in order to save lives and prevent further devastation.\n This tragedy presents enormous challenges, not only to the people of Haiti, but also to the international community’s efforts and ability to respond.  We want to assure you that we stand ready to assist you, Administrator Shah, and the administration in both the immediate response to the crisis and to the longer term plan for recovery.\nPlease do not hesitate to contact us or our staff if we can be of any assistance.\nSincerely,\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=68257e90-e5e2-47d4-ae93-bfd4659ef91a,\"MENENDEZ WORKS WITH N.J. CHURCH GROUP, STATE DEPT. TO LOCATE MEMBERS ON HUMANITARIAN MISSION IN HAITI\n                    \n                            Senator Menendez contacted State Department to help in process of finding Hackettstown group\n                    \n                      January 13, 2010\n                     WASHINGTON – In the wake of a devastating earthquake that has leveled many populated parts of Haiti, U.S. Senator Robert Menendez (D-NJ), the chairman of the Foreign Relations Subcommittee on foreign assistance, has been working with a New Jersey church group and the U.S. State Department to locate members of the group currently in Haiti. 15 members of the the Trinity United Methodist Church in Hackettstown arrived in Haiti on January 9 on a humanitarian mission to deliver supplies to Grace Children’s Hospital in Port-au-Prince. Menendez’s office has been in frequent contact with representatives of the group in New Jersey and is serving as a liaison between them and the State Department.\nMenendez sent the following letter to Secretary of State Hillary Clinton on the group earlier today:\nPDF of letter – http://menendez.senate.gov/imo/media/doc/20100113ltr_stateHaiti.pdf\nFull text of letter --\nJanuary 13, 2010\nThe Honorable Hillary ClintonSecretary of StateU.S. Department of StateWashington, DC 20520\nDear Madam Secretary:\nI am writing to you regarding a group of fifteen men and women volunteers from Hackettstown, New Jersey, who are currently in Port-au-Prince, Haiti.  The volunteers range in age from teenagers to adults who arrived in Haiti on Saturday, January 9, 2010, to deliver humanitarian supplies to Grace’s Children Hospital in Port-au-Prince.  \nAs of right now, there has been no communication with the group since their arrival on January 9, 2010.  While one of the volunteers does own an international cell phone, family or church officials have been unsuccessful in making contact with the group.  I am requesting immediate assistance in locating the following individuals:\n•    [NAMES REDACTED FOR PRIVACY]\nPlease contact Deb Curto (deb_curto@menendez.senate.gov) from my staff with any developments in finding the missing volunteers.  Thank you for your help in this matter.\n                                                                        Sincerely,\n                                                                        Robert Menendez                                                                        United States Senator\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=04780c23-1f25-4efc-8da0-eff6c969b3c2,\"MENENDEZ STATEMENT ON EARTHQUAKE IN HAITI\n                    \n                            NJ Senator is Chairman of the Subcommittee on Foreign Assistance\n                    \n                      January 13, 2010\n                     WASHINGTON -  Today, U.S. Senator Robert Menendez (D-NJ), Chairman of the Foreign Relations Subcommittee that oversees U.S. foreign assistance -- including emergency aid -- released the following statement on the devastating 7.0 magnitude earthquake that hit the destitute country yesterday:\n“This is an unimaginable tragedy -- an earthquake of this magnitude hitting our neediest neighbor in the Western Hemisphere. The extent of its effects continues to emerge, but it is clear that the devastation is widespread and unprecedented, and that the Haitian people desperately need our full support and assistance. Thousands are estimated to have died, millions have been affected, and important community resources are destroyed. Our thoughts and prayers are with the people of Haiti and Haitian Americans, including the large community in New Jersey. We stand in solidarity with them and have mobilized to provide assistance.\n“As Chairman of the Foreign Relations subcommittee in charge of foreign assistance, my office is working with closely with USAID to ensure that our nation is fulfilling every request to help the rescue and recovery efforts. I applaud President Obama, USAID Administrator Shah and many members of the international community for the swift and effective mobilization of resources. In addition many communities in New Jersey have already signaled their willingness to lend a helping hand and provide resources to help Haiti recover as quickly as possible, and I applaud their commitment to helping our Haitian friends.”\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=41db9a13-7364-4700-b5dd-49746106d131,\"MENENDEZ STATEMENT ON RESIGNATION  OF ARBITRON CEO\n                    \n                            Senator calls for investigation and continuation of efforts to ensure portable people meter system does not have a negative impact on minority communities \n                    \n                      January 12, 2010\n                     WASHINGTON - Today, US Senator Robert Menendez (D-NJ) made the following statement in light of Arbitron CEO Michael Skarzynski’s forced resignation for allegations of giving false testimony during a House Committee hearing last December 2009 on the company's Portable People Meters (PPM) ratings system that examined the methodology’s impact on minority owned radio stations.\n\"\"This matter is deeply troubling,” said Menendez. “It must be thoroughly investigated to ensure that Congress was not intentionally misinformed and appropriate action must be taken based on the findings. The denial of Accreditation for PPM in 18 markets, including those covering much of my home state of New Jersey, and this disturbing incident reaffirms the critical need for a thorough investigation into the PPM methodology. I have long been concerned about the propensity for the PPM methodology to misrepresent the listenership of minority-owned and minority-focused stations. These stations are vital sources of information and culture for minority communities, but they cannot withstand the drastic reductions in revenue stemming from flawed PPM ratings. I remain committed to ensuring Arbitron adopts an accurate ratings system with acceptable standards that is fair to all radio stations. I will continue to seek a solution to these concerns by working with my colleagues in Congress and minority stakeholders to implement fair standards for the PPM methodology in all markets nationwide.\"\"\nSince its launch and use in the radio market, the PPM system has drawn significant criticism because of its tendency to under-represent the listenership of minority-owned radio stations and attribute them with lower ratings which result in lower revenues that ultimately can force these stations out of business. Senator Menendez, who has been a strong advocate on behalf of these stations and the communities they serve, urged Arbitron and Skarzynski on various occasions last year to adopt appropriate standards to ensure the ratings measurement system provides the highest level of accuracy and reliability.\nTo view Senator Menendez's most recent letter to Skarzynski: http://menendez.senate.gov/pdf/031609ReplyLetterArbitron.pdf\nText of letter:                                                                                                                                                March 16, 2009\nMichael P. SkarzynskiPresident and CEO Arbitron Inc.9705 Patuxent Woods DriveColumbia, MD 21046-1572\nDear Mr. Skarzynski,\nThank you for your letter of February 27th.  While I appreciate your letter detailing some developments, I am disappointed that it was made available to the press in a manner suggesting that this would resolve my concerns.  In view of the fact that you decided to use private correspondence to me in this public manner, I am responding likewise by releasing this letter to the press. \nI am encouraged by your efforts to hear concerns from a number of different stakeholders.  A viable solution to these issues will take a strong consensus between your company and your clients serving the minority community.  While I appreciate the fact that you are taking such productive steps as applying the terms of the settlements in New York, New Jersey and Maryland nationwide, this must not be the endgame.  The terms of the settlement simply established a legal minimum that the PPM methodology must include.  I do not believe that this is an acceptable standard of service.  It is my sincere hope that you continue your efforts working with minority stakeholders towards a comprehensive solution and work tirelessly to attain accreditation for the PPM methodology in all markets. \nI believe that Arbitron must provide a service that accurately and consistently measures listening preferences and habits of all audiences regardless of color, race, gender, culture or socioeconomic status.  There is simply too much at stake for too many underserved communities.  I look forward to being apprised of progress made with the stakeholders serving these vital communities.\n                                                                                Sincerely,\n                                                                                ROBERT MENENDEZ                                                                                United States Senator\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d45cafe6-5f89-432e-8ee7-c02156bfa2ae,\"MENENDEZ REQUESTS FUNDING TO UPGRADE NEWARK AIRPORT SECURITY TECHNOLOGY\n                    \n                            Urges President Obama to include list of specific upgrades in federal budget\n                    \n                      January 12, 2010\n                     NEWARK – Having spoken to security officials and gathered information on last week’s Newark Liberty International Airport security breach, U.S. Senator Robert Menendez (D-NJ) is requesting that President Obama include funding for specific security technology upgrades at the airport as part of his FY2011 federal budget proposal. Menendez is requesting funding for:\nInstallation of a new video surveillance system that is fully and continuously functional and is not prone to malfunctions\nNetworking the video surveillance so that it can be monitored from the Port Authority Police Department’s security center\nAdditional cameras to ensure that the entirety of the airport is under continuous video surveillance\nMotion sensor technology at secure area exit points to trigger an alarm when they areas are breached.\n“I urge the administration to help Newark Liberty undertake a crucial and overdue security technology upgrade,” wrote Menendez. “It is 2010, and there is no reason that one of our nation’s busiest international airports should rely on security technology that belongs in the last century. A series of simple but vital technology enhancements would have helped to prevent the breach, the delayed security response and the hours that it took for the airport to recover. They will help make Americans safer and will be relatively cost-effective – particularly when you consider how devastating a terrorist attack would be.”President Obama is expected to deliver his FY2011 budget request to Congress early this year.PDF of Menendez letter to President Obama: http://menendez.senate.gov/imo/media/doc/20100111ltr_EWRSecurityTech.pdf Text of letter: January 11, 2010President Barack ObamaThe White House1600 Pennsylvania Avenue, N.W.Washington, D.C. 20500Dear Mr. President:As I am sure you are aware, on Sunday January 3, 2009, a man was able to take advantage of lax security at a Newark Liberty International Airport terminal exit point and illegally enter a secure area. Thankfully, this man was not a terrorist and did not seek to do others harm, but his actions have revealed serious flaws in security at Newark Liberty – flaws that could be a valuable research tool for terrorists. As we know, our security system has to be successful 100 percent of the time, while terrorists only have to be successful once to cause untold casualties, damage and fear. Thus, it is imperative that every point of weakness we find is quickly and permanently fortified.Since last week’s incident, I and my staff have visited the airport, spoken extensively with airport security personnel, and communicated separately with officials from the Transportation Security Administration, the Port Authority of New York/New Jersey and Continental Airlines. This is a major international airport through which more than 30 million passengers per year from all corners of the nation and world travel, which is why security at Newark Liberty is an important national security issue. I have repeatedly urged TSA to undertake a series of immediate security upgrades to reinforce security at Newark Liberty and restore public confidence, but have yet to receive any response. However, it is clear to me that there are a number of quick and uncomplicated steps that can be taken in order to make this busy airport many times safer.I urge the administration to help Newark Liberty undertake a crucial and overdue security technology upgrade. It is 2010, and there is no reason that one of our nation’s busiest international airports should rely on security technology that belongs in the last century.  A series of simple but vital technology enhancements would have helped to prevent the breach, the delayed security response and the hours that it took for the airport to recover. They will help make Americans safer and will be relatively cost-effective – particularly when you consider how devastating a terrorist attack would be. I urge you to include in your FY2011 budget request to Congress the following items at Newark Liberty:•    Replacement of the current video surveillance system with a new one that is not prone to malfunctions and can automatically notify the TSA and Port Authority Police Department in the case of operational glitches.•    Networking the primary video surveillance system at Newark Liberty so that the PAPD is able to monitor the camera feeds from its main security center.•    Installation of the requisite number of additional cameras in the requisite locations to ensure that the entirety of the airport terminals are under continuous video surveillance.•    Installation of motion sensor technology at all secure area exit points to ensure that an alarm is automatically triggered should someone illegally enter a secure area.I urge you to confer with the TSA and Port Authority as to the exact cost of these particular upgrades and to include them in your budget request. The only silver lining to last week’s breach was that we are now fully aware of this gaping hole in security technology at Newark Liberty. To not act immediately and decisively would be damaging to our security and disheartening to the public, who rightly expects us to heed the lessons of every security issue that we face.Thank you for your consideration of these requests, and I look forward to continuing to work with you to make our nation as safe as possible.Sincerely,                                                ROBERT MENENDEZ                                                United States SenatorCC:Ms. Gale D. RossidesActing AdministratorTransportation Security AdministrationMr. Michael A. FedorkoSuperintendent of the PolicePort Authority of New York & New Jersey Police Department# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f64d16d1-9604-4bd8-9553-7f32a257634d,\"MENENDEZ ON AIRPORT BREACH ARREST\n                    \n                      January 9, 2010\n                     NEWARK - US Senator Robert Menendez (D-NJ), who has been pushing the Transportation Security Administration to make immediate security upgrades at Newark Liberty International Airport, released the following statement on last night's arrest of a suspect in the case of the recent security breach:\n\"\"This is a credit to our law enforcement, and it is crucial that this breach is fully prosecuted so that anyone who considers compromising security in the future fully understands that it is a serious matter with serious consequences. As our legal system works to bring justice, I am focused on ensuring that airport security at Newark Liberty is quickly imrpoved. To that end, I have been in touch with the TSA and Port Authority, I have forwarded specific recommendations, and I will continue to press them to act.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5ce263a6-1bee-45eb-95c6-9dd31dffaccd,\"MENENDEZ CHEERS SECOND TUNNELING CONTRACT FOR MASS TRANSIT TUNNEL\n                    \n                            $271 million contract expected to create hundreds of badly-needed jobs\n                    \n                      January 7, 2010\n                     NEWARK – U.S. Senator Robert Menendez (D-NJ) today cheered NJ Transit for issuing the first tunneling contract for work on the New Jersey side of the trans-Hudson mass transit tunnel project. The work from the $271 million contract is expected to create hundreds of jobs. About half the funding for the $8.7 billion project will come from the federal government - $3 billion from the Federal Transit Administration and $1.3 billion dollars from other federal sources. Menendez has helped secure hundreds of millions in federal funding for the tunnel project already.\n“This is just the beginning of the good-paying New Jersey jobs for New Jersey workers that will be created and sustained by this tunnel,” said Menendez. “This project is putting people to work immediately while laying the groundwork for thousands of permanent jobs, along with reduced transportation and energy costs. As this projects rolls along, the job creation momentum will only increase.”\nThe $8.7 billion Mass Transit Tunnel project is expected to generate and sustain 6,000 jobs through the construction phase of two new rail tunnels under the Hudson River, an expanded New York Penn Station and other key elements, reinvigorating the link between New Jersey and New York and benefiting the regional economy with improved mobility.  It is expected to create 44,000 permanent jobs. Once completed, the Mass Transit Tunnel will double service capacity to 48 trains per hour during peak periods from the current 23 trains.  Twice as many passengers will be accommodated, from 46,000 each morning peak period now to 90,000 in the future.  The project also will also create transfer-free, one-seat rides for travelers on 11 of NJ Transit’s 12 rail lines.\nIn June, Menendez joined Governor Jon Corzine, FTA Administrator Peter Rogoff, Senator Frank Lautenberg and federal, state and local officials to break ground on the Mass Transit Tunnel project, the largest transit public works project in America.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d06b2f58-b930-4403-a8f0-65b536cc6300,\"NEWARK AIRPORT SECURITY BREACH: MENENDEZ SAYS INITIAL SECURITY UPGRADES AT NEWARK ARE SOMEWHAT HELPFUL, BUT ONLY A START\n                    \n                            Menendez continues to press for a series of new security measures\n                    \n                      January 7, 2010\n                                                    LINK TO VIDEO OF BREACH: http://www.youtube.com/watch?v=Rx0ujg9Bh4Y\nNEWARK – As U.S. Senator Robert Menendez (D-NJ) today continued to push the Transporation Security Administration to make a series of assertive and immediate security upgrades at Newark Liberty International Airport, he said a handful of initial upgrades made in recent days are somewhat helpful, but not enough. As a result of a January 3 security breach (video here: http://www.youtube.com/watch?v=Rx0ujg9Bh4Y), TSA at Newark has:\n•    Added additional personnel to monitor secure area exit points in Terminal C•    Relocated barriers at exit points to make it easier for monitoring•    Begun “regular” examinations of video surveillance equipment (the frequency of these examinations is undefined)\nToday, in communications between his office and the TSA, Menendez continued to push for bolder and more concrete security enhancements at Newark Airport, including:\n•    Ensuring that the entire terminal is fully monitored by continuously functioning video surveillance•    Ensuring that the upgraded video surveillance is continuously monitored to ensure it is operational•    Preparing to install additional security layers at all secure area exit points to compensate for possible human error (such as electronic sensor equipment or one-way gates)•    Ensuring that multiple security personnel are stationed at each exit point in the airport without diminishing other security operations elsewhere\n“The breach at Newark Liberty was completely unacceptable and TSA needs to let the public know both that immediate changes are being made and that long-term security upgrades are imminent,” said Menendez. “These first few modest security changes have made Newark Liberty a somewhat safer airport than it was on Sunday, but it is going to take a number of additional swift and assertive upgrades to make it as safe as it needs to be. I have been in continuing contact with the TSA and Port Authority with my recommendations and will continue to push for further action.”\n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e6b2f304-18ce-41b0-803d-132c5e93dc53,\"NEWARK AIRPORT BREACH:  MENENDEZ, LAUTENBERG CALL ON TSA TO MAKE IMMEDIATE SECURITY UPGRADES\n                    \n                            NJ’s senators say exit point personnel, video surveillance, information-sharing must be improved\n                    \n                      January 6, 2010\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) called on the Transportation Security Administration (TSA) to make a series of immediate security upgrades to Newark Liberty International Airport in the wake of Sunday’s security breach. In their letter to the TSA, the senators call for a complete investigation into the breach and the following security measures:\n•    Reinforcement of terminal exit points with adequate personnel levels to ensure full and continuous monitoring\n•    A video surveillance system that is continuously functioning, frequently monitored and enhanced to provide complete surveillance of all secure areas\n•    Improvements to the communication and information-sharing between the TSA, Port Authority police, airlines and other law enforcement.\nPDF of the senators’ letter to TSA: http://menendez.senate.gov/imo/media/doc/20100106ltr_TSA.pdf\nText of letter to TSA:\nJanuary 6, 2010\nGale D. RossidesActing Administrator   Transportation Security Administration601 South 12th StArlington, VA 20598\nDear Acting Administrator Rossides:             We are writing to express our concerns with the serious security breach that recently occurred at Newark Liberty Airport and to urge you to investigate and implement a number of security measures to keep airline passengers safe. This breach and the slow and uncoordinated response that followed it -- particularly at a time when the Transportation Security Administration (TSA) should have been on heightened alert -- raise serious questions that the TSA must investigate and remediate immediately to help protect the lives of Americans travelling through Newark Airport and across the country.\nAs you are aware, on Sunday afternoon, a man walked through an airport terminal exit into a secure area of Newark Liberty Airport while the TSA was unaware.  The suspect had gone through no security checks or screenings and could have potentially been armed with dangerous weapons or explosives, free to board any aircraft for which he had a ticket.  While luckily this was not the case, we cannot rely on luck for our safety -- we have to be right 100 percent of the time, while those who would do harm only have to be right one time. \nThis flaw in the security system needs to be addressed immediately and thoroughly at Newark Liberty.  Such a critical area of the airport that allows direct access to the secure terminal should have additional security measures beyond a single agent, which was clearly not enough to prevent this week’s breach.  Equally as disturbing as the initial breach of security was the uncoordinated manner in which it was handled.  Video cameras, owned by the Port Authority of New York/New Jersey and operated by the TSA to help TSA agents respond to such incidents were not recording, apparently broken for some time.  As a result, TSA agents were forced to rely on Continental Airlines’s cameras, which were no longer intended for this purpose but were able to catch a glimpse of the suspect.  This simple breakdown not only cost precious response time, it also prevented authorities from tracking the suspect and ensuring he was not a threat.\nOnce a breach is noticed, it is critical to have all law enforcement authorities on the same page working together to secure the airport.  Unfortunately, it appears the TSA did not inform the Port Authority Police Department (PAPD) about the situation until over an hour after the initial breach.  We cannot allow such communications breakdowns, especially with what occurred during 9/11 and most recently in Detroit.  The PAPD could have provided much needed assistance to the TSA.\n                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=181d0e56-3747-4deb-898a-079e147203df,\"MENENDEZ STATEMENT ON NEW HEAD OF USAID\n                    \n                            Shah was confirmed just before Christmas\n                    \n                      December 29, 2009\n                     WASHINGTON – Just before Christmas, Rajiv Shah was confirmed as Administrator of the U.S. Agency for International Development (USAID). U.S. Senator Robert Menendez (D-NJ), Chairman of the Senate Foreign relations subcommittee that oversees all U.S. assistance overseas, made the following Statement about the new Administrator:\n“USAID had been waiting almost a year for new leadership, and I hope that having Dr. Shah in place will be affirmation of a new direction for USAID. Particularly in these tough times, Americans want to know that our foreign assistance is being deployed as strategically and effectively as possible, so that it benefits our economy and security here at home. Rajiv Shah comes to the job prepared to rebuild USAID, and I am pleased he has expressed a commitment to build up the Agency’s independent policy capacity and to take a more systematic look at how these programs produce results that both for Americans here at home as well as for our fellow citizens around the world. I look forward to working with Dr. Shah on a 21st century international development agency moving forward.”\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=46c556be-58c6-4ba1-a459-6fbd0ce1dc01,\"SEAN GOLDMAN ON HIS WAY HOME: MENENDEZ CHEERS REUNIFICATION OF GOLDMAN FAMILY\n                    \n                            New Jersey boy kept by Brazilian family\n                    \n                      December 24, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:10.0pt;\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - Today, Sean\nGoldman - the 9-year old New Jersey boy kept away from his father, David, by\nthe Brazilian husband of his deceased mother - has been reunited with his\nfather and is returning to New Jersey. U.S. Senator Robert Menendez (D-NJ), who\nhas helped intervene on the father's behalf, reacted to the news.\n\"\"This is such a happy\nday in which a New Jersey family kept apart for five long years has finally\nreunited,\"\" said Menendez. \"\"Anyone who has talked to David or heard him speak tearfully\nabout being apart from his son knows how determined he was to see this day and\nhow joyful he must be at this moment. I am thrilled for him and Sean. I am\npleased the Brazilian courts at last recognized the clear legal and moral path\nforward. At its heart, this case was about a father and his son being able to\nfinally unite, and I hope they can now begin to rebuild their life together.\"\"\nb>\nMenendez and his\nstaff met and spoke with David Goldman on numerous occasions and, through his\nrole on the Foreign Relations Committee, worked with the State Department on\nthis case. He and Senator Frank Lautenberg wrote the Brazilian president\nearlier this year, calling on him to follow international law in this matter (http://lautenberg.senate.gov/newsroom/record.cfm?id=307802).\nMenendez is also the co-sponsor of a Senate resolution urging Brazil to comply\nwith international law.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bb76ac27-8c40-4288-a9a5-19ae60569615,\"SENATE PASSES HISTORIC HEALTH INSURANCE REFORM: MENENDEZ SAYS IT “WILL PROTECT THE HEALTH AND WEALTH OF OUR NATION”\n                    \n                            As member of crucial Finance Committee, Menendez was able to gain inclusion of numerous amendments, many with a NJ focus\n                    \n                      December 24, 2009\n                     \n\n\n\n\n\n\n\n\nWASHINGTON - This morning, the\nU.S. Senate passed historic health insurance reform legislation in a 60-39\nvote. The legislation would institute major health insurance reforms to protect\nconsumers, cover an estimated additional 30 million Americans, bring Medicare\nback from the brink of insolvency, provide Medicare Part D prescription drug\ncost relief for seniors and cut the budget deficit by a projected $132 billion\nover the first ten years and as much as $1.3 trillion over the next ten. The\nSenate bill and House of Representatives bill will be reconciled in a\nconference committee over the next few weeks before a vote on final approval,\nlikely in January.\nU.S. Senator Robert\nMenendez (D-NJ) had a key role in helping to craft the legislation as a member\nof the crucial Finance Committee. Through his committee seat, he was able to\ngain inclusion of numerous amendments to the bill, a number of which contain\nparticular benefits for New Jersey. Today, he celebrated the passage of the\nhistoric legislation.\n\"\"This is an historic\nmoment for an historic reform that will protect the health and wealth of our\nnation,\"\" said\nMenendez. \"\"For too many years, too many families have wondered why something\nso basic as health insurance takes so much out of their paychecks and why their\ninsurance is unreliable when they need it the most. This legislation, forged\nthrough the hard work and vigorous debate of many Senators, will finally end\nthe tug-of-war between families and their insurance companies, will curb the\nballooning cost of health insurance and will significantly reduce our budget\ndeficit. For seniors, it will bring Medicare back from the brink of insolvency,\nfully preserve Medicare benefits and provide badly-needed Medicare Part D\nprescription drug cost relief.\nb>\n\"\"In our state,\nmillions of families will benefit from the cost control provisions, consumer\nprotections and expanded access to insurance that come with this reform. I\nworked hard as a member of the Finance Committee to include priority provisions\nto the bill that are focused on benefitting our state. As a result, our\nhospitals, which have experienced tough times, will save an estimated $70\nmillion per year, thousands of New Jersey families dealing with autism will\nhave guaranteed coverage for treatment, and the legislation is fairer to moderate-income\nfamilies in high cost-of-living states, like ours.\nb>\n\"\"Through the rigors\nof debate, the moments of optimism and the moments of pessimism, 59 of my\ncolleagues and I believed that we could get this done, because we knew that we\nmust get it done. Our generation is rising to the challenge that has confronted\ngenerations before us, and that will make ours a stronger nation.\"\"\nb>\nComplete information\non the legislation is available here: http://dpc.senate.gov/dpcdoc-responsiblereform.cfm\nMENENDEZ PROVISIONS\nINCLUDED IN THE LEGISLATION\nb>\nNew Jersey-focused\nprovisions:\nApprox $70 million per year in\n     savings for New Jersey hospitals (top priority of the New Jersey Hospital\n     Association). Current law ensures that\n     hospitals in highly-urban states, like New Jersey, are protected from\n     receiving unfairly low Medicare reimbursements. Provision would ensure\n     that the costs associated with this protection are shared by hospitals nationwide,\n     rather than shared exclusively within these states, as the Center for\n     Medicare and Medicaid Services is proposing. \nAUTISM - Requiring insurance\n     plans to provide behavioral health treatments. Plans in the exchange must cover behavioral health treatments\n     as part of the minimum benefits standard. For example, applied behavior\n     analysis is a behavioral health treatment for people with autism. Unless\n     behavioral health treatment is explicitly spelled out as a covered\n     benefit, people with autism are not likely to receive comprehensive\n     healthcare. \nTax credit for critical\n     biotechnology research performed by small firms. Creates a credit that would encourage investments in\n     new therapies to prevent, diagnose, and treat acute and chronic disease,\n     lower health care costs. \nNew Jersey funding for Medicare\n     Advantage transition (as part\n     of amendment by Sen. Ron Wyden). Amendment would include parts of New\n     Jersey as one of only a handful of states that will receive funding to\n     help seniors in the transition of Medicare Advantage from\n     \"\"fee-for-service\"\" reimbursements to competitive bidding. \nOut-of-pocket cost limit for\n     families between 300-400 percent of the federal poverty level - IMPORTANT\n     FOR HIGH COST OF LIVING STATES. For those between 300-400 percent of FPL, within the same actuarial value,\n     the benefit will include an out-of-pocket limit equal to two-thirds of the\n     Health Savings Account (HSA) current law limit. \nExcluding more middle-class\n     families, seniors from excise tax on high-value insurance plans - IMPORTANT\n     FOR HIGH COST OF LIVING STATES (joined\n     Sen. Kerry on amendment). Successfully fought to raise tax thresholds for\n     retirees and high-risk workers so that their additional health needs could\n     be recognized. Successfully fought to raise the indexing of the high\n     premium excise tax threshold to save millions of family policies from\n     being hit. Successfully included high-cost state transition rules which\n     would give states like New Jersey higher thresholds than the rest of the\n     country for the first three years.\nUrban Medicare Hospitals. Some urban hospitals are highly dependent on Medicare\n     payments because they serve high proportions of Medicare patients, but,\n     unlike many otherwise similar hospitals, they do not receive any special\n     add-on payments. This would provide for a study for a special add-on\n     payment to be afforded this select group of hospitals that could be\n     designated as urban Medicare-dependent hospitals. \nFull list of Menendez\nprovision in the legislation\nb>\nProvisions included during\nFinance Committee work\nb>\nGuaranteeing consumers a fair\n     appeal for a denial of coverage. Requires that each health care plan and health care insurance issuer\n     offering coverage in the exchange must provide an internal claims appeal\n     process and each state must provide an external review process for plans\n     in the individual and small group markets. \nRequire insurance plans to\n     provide behavioral health treatments. Plans in the exchange must cover behavioral health treatments as part of\n     the minimum benefits standard. For example, applied behavior analysis is a\n     behavioral health treatment for people with autism. Unless behavioral\n     health treatment is explicitly spelled out as a covered benefit, people\n     with autism are not likely to receive comprehensive healthcare. \nTax credit for critical\n     biotechnology research performed by small firms. Creates a credit that would encourage investments in\n     new therapies to prevent, diagnose, and treat acute and chronic disease,\n     lower health care costs. \nExcluding more middle-class\n     families, seniors from excise tax on high-value insurance plans (joined Sen. Kerry on amendment). Successfully fought\n     to raise tax thresholds for retirees and high-risk workers so that their\n     additional health needs could be recognized. Successfully fought to raise\n     the indexing of the high premium excise tax threshold to save millions of\n     family policies from being hit. Successfully included high-cost state\n     transition rules which would give states like New Jersey higher thresholds\n     than the rest of the country for the first three years.\nRequire private insurers to\n     fully reimburse Federally-Qualified Health Centers in the exchange (offered amendment with Sen. Lincoln). This amendment\n     would ensure that FQHCs, which are a primary health care option for millions,\n     would not lose revenue when treating newly insured patients gaining\n     coverage through the new health insurance exchanges. \nOut-of-pocket cost limit for\n     families between 300-400 percent of the federal poverty level. For those between 300-400 percent of FPL, within the\n     same actuarial value, the benefit will include an out-of-pocket limit\n     equal to two-thirds of the Health Savings Account (HSA) current law limit. \nWomen's Medical Home (included in bill prior to markup). Legislation\n     creates an Innovation Center within CMS to test and evaluate different\n     structures to increase patient care and lower cost. The center is required\n     to test a number of different models, including a \"\"medical home that\n     addresses women's unique health care needs.\"\"  \nChild-only insurance option and\n     subsidies in the exchange. \n     Ensures that minor children qualify as exchange eligible individuals and\n     would also provide for the availability of child-only health insurance\n     coverage in the exchanges. \nConsumer protection for\n     emergency services. Requires\n     that each health care plan and insurance issuer offering coverage in the\n     exchange must provide enrolled individuals coverage for emergency services\n     without regard to prior authorization. \nOmbudsman assistance with\n     internal appeals. Allows\n     policyholders to access the ombudsman created in the legislation for help\n     with internal appeals. \nOmbudsman assistance with tax\n     credit appeals. Allow policyholders to access\n     the ombudsman for assistance in resolving problems with their premium and\n     cost-sharing credits, and with assistance in filing appeals as needed. \nSupport, education, and\n     research for postpartum depression. Provides support services to women suffering from postpartum depression\n     and psychosis and helps educate mothers and their families about these\n     conditions.  In addition, supports research into the causes,\n     diagnoses and treatments for postpartum depression and psychosis. \nb>\nApprox $70 million per year in\n     savings for New Jersey hospital (top priority of the New Jersey Hospital\n     Association). Current law ensures that\n     hospitals in highly-urban states, like New Jersey, are protected from\n     receiving unfairly low Medicare reimbursements. Provision would ensure\n     that the costs associated with this protection are shared by hospitals\n     nationwide, rather than shared exclusively within these states, as the\n     Center for Medicare and Medicaid Services is proposing. \nNew Jersey funding for Medicare\n     Advantage transition (as part\n     of amendment by Sen. Ron Wyden). Amendment would include parts of New\n     Jersey as one of only an estimated 5 states that will receive funding to\n     help seniors in the transition of Medicare Advantage from\n     \"\"fee-for-service\"\" reimbursements to competitive bidding. \nUrban Medicare Hospitals. Some urban hospitals are highly dependent on Medicare\n     payments because they serve high proportions of Medicare patients, but,\n     unlike many otherwise similar hospitals, they do not receive any special\n     add-on payments. This would provide for a study for a special add-on\n     payment to be afforded this select group of hospitals that could be\n     designated as urban Medicare-dependent hospitals. \nValue-Based Purchasing for\n     Hospital Acquired Infections. This measure includes healthcare-associated infections, as measured by the\n     prevention metrics and targets established in the Department of Health and\n     Human Services' HHS Action Plan to Prevent Healthcare-Associated\n     Infections or any successor plan. \nProvisions included\nduring full Senate debate\nClarification and strengthening\n     of provision guaranteeing consumers a fair appeal for a denial of\n     coverage. All health insurers would be\n     required to implement an internal appeals process for coverage denials,\n     and states will ensure the availability of an external appeals process\n     that is independent and holds insurance companies accountable. \nClarification and strengthening\n     provision expanding access to health care through community health\n     centers. Private insurers would be\n     required to fully reimburse Federally-Qualified Health Centers in the\n     insurance exchange. This amendment would ensure that FQHCs, which are a\n     primary health care option for millions, would not lose revenue when\n     treating newly insured patients gaining coverage through the new health\n     insurance exchanges. \nHolding health insurance\n     companies accountable. The\n     Government Accountability Office would conduct a study on the rate of\n     denial of coverage and enrollment by health insurance issuers and group\n     health plans. \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8a0223ba-cf12-4406-b4a5-cf603c0a1364,\"MENENDEZ, LAUTENBERG ANNOUNCE PASSAGE OF PROJECTS FOR NJ SOLDIERS AND DEFENSE\n                    \n                            Dept. of Defense Appropriations bill includes funding to ease transition back home for NJ soldiers, enhance military health care, create jobs related to defense projects\n                    \n                      December 19, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:10.0pt;\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - This morning, the\nU.S. Senate gave final approval to the Department of Defense Appropriations\nbill, funding the department for the upcoming fiscal year. As part of the\nlegislation, Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ), a\nmember of the Appropriations Committee, secured funding for various defense\nprojects and programs in New Jersey. The bill is now on its way to President\nObama's desk to be signed into law.\nSenator Menendez\nsaid: \"\"Our state is home not only to thousands of brave men and women who\nserve our country overseas, but also to critical defense installations and\nprograms that help protect our freedom. A grateful nation helps ensure that\nthose who have been serving on the battlefield can have as smooth a transition\nback to civilian life as possible, which is why it was a particular priority to\nsecure funding for that purpose in this bill. We also fought for and secured\ninvestments in medical innovation led by Garden State universities and\nhospitals that can save lives on the battlefield and be applied to save lives\nhere at home. Projects we secured in this bill have the potential to create\njobs in this tough economy while bolstering national security.\"\"\n\"\"The funding in this\nbill will benefit New Jersey's bravest veterans, boost the economy and help\nadvance critical projects at some of our state's leading universities and\nhospitals,\"\" stated Lautenberg, a member of the Appropriations Committee.  \"\"At a\ntime when veterans are struggling to make the difficult transition from\nmilitary duty to civilian life, I am particularly pleased with the funding we\nsecured to help thousands of New Jersey veterans who are returning home from\nIraq and Afghanistan.  This bill provides an opportunity to build upon\nsome of our state's most innovative medical programs, homeland security\ninitiatives and defense projects.\"\"\nIncluded in the\nappropriations secured by the senators are:\n $3,000,000\nto the New Jersey Department of Military and Veterans Affairs to help\nsuccessfully transition over 3,300 currently deployed members of the NJ\nNational Guard back into civilian life.\n $3,600,000\nto the Bayonne Local Redevelopment Authority for the reconstruction and\nstabilization of a decaying bulkhead and eroding shoreline at the area of the\nformer Bayonne Military Ocean Terminal (MOTBY). When entire project is\ncompleted, it is expected to double functional berthing capacity on the Bayonne\nside of the Port Jersey Channel for commercial vessels, or\nmilitary/federal vessels in event of national emergency, and is expected to\ngenerate 1,750 maritime-related jobs and $150-million annually for the\nnorthern NJ regional economy. \n $2,000,000\nfor Valley Hospital in Ridgewood to build upon its successful multi-year\npartnership with the Department of Defense in studying how implementing an\noperational excellence system improves hospital efficiency and outcomes.\n $1,492,800\nto Englewood Hospital and Medical Center for The Institute for the Advancement\nof Bloodless Medicine to assist military and civilian physicians and other\nhealthcare providers willing to implement improved blood management strategies\nin their practice.\n $2,400,000\nto Robert Wood Johnson University Hospital for the Mass Casualty First Responders\nDisaster Surge Technology Program to define, exercise, and refine best\npractices for management of blast injury-related disasters and mass casualty\nevents.\n $2,000,000\nfor Rutgers to establish an integral partnership between Rutgers University and\nPicatinny Arsenal (U.S. Army ARDEC) to synergistically develop critical\nnano-based technologies for homeland defense and counter-terrorism\napplications.\n#\n# #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=611b8878-c45f-4dc3-901b-9efb1661caef,\"CHAIRMAN OF INTERNATIONAL ENVIRONMENTAL PROTECTION SUBCOMMITTEE REACTS TO CLIMATE DEAL\n                    \n                      December 18, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:10.0pt;\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - U.S. Senator\nRobert Menendez (D-NJ), the Chairman of the Foreign Relations Subcommittee on\nInternational Development and Foreign Assistance, Economic Affairs, and\nInternational Environmental Protection, released the following statement upon\nthe announcement of an initial agreement at the international climate change\ntalks in Copenhagen:\n\"\"President Obama, Secretary\nof State Clinton and the entire U.S. delegation deserve a great deal of credit\nfor bringing negotiations in Copenhagen back from the brink of collapse. This\nis a core agreement of core policies among some of the core major emitters.\nWhile many details of this deal still must be further developed and advanced,\nit represents progress toward an international treaty to comprehensively and\neffectively combat climate change. The stakes for every person in every country\naround the globe are incredibly high. This issue is about nothing less that the\nfuture of our planet. Additionally, at a time when we need an economic boost,\nit represents an opportunity for domestic job creation and increased global\ncompetitiveness for our country. I look forward to working with the\nadministration and my colleagues in the Senate to put together domestic climate\nlegislation that builds upon this first step and firmly establishes the United\nStates as a global climate leader.\"\"\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6592391a-0d69-49fc-a512-6760ffc16b97,\"Menendez Hails $4 Million For State Veterans Cemeteries, A Cause He Has Championed \n                    \n                            NJ’s state veterans cemeteries are among the nation’s busiest\n                    \n                      December 17, 2009\n                     WASHINGTON – Senator Robert Menendez (D-NJ) today announced that Congress has passed $4 million in funding for state veterans cemeteries, which he has long championed and helped secure. This funding, which is part of the FY2010 Omnibus Appropriations bill, will help maintain and construct new state veterans cemeteries across the nation and ensure our nation’s veterans have appropriate final places of rest. New Jersey’s federal veterans cemeteries are full, and as a result, it’s state veterans cemeteries are among those stretched the most thin.\n\n“The care and resources we allocate for veterans cemeteries should be a reflection of our deep gratitude for our brave servicemen and women and the sacrifice they have made on behalf of our nation. We honor them not only by keeping them in our thoughts and prayers, but by ensuring that they and their families have a quality of life and a dignified final resting place,” said Menendez. “It has been a priority of mine to secure this funding, and I applaud my Senate colleagues for recognizing its importance.”\n\nWith the aging of the WWII generation and with American troops currently fighting two wars, veterans cemetery construction and upkeep is particularly important but funding levels have not kept up with need.  Menendez has been a champion of this cause for years, having previously sought and secured the budget authority that paved the way for this funding and having authored separate legislation (S. 2934) to allow veterans’ families to be buried next to their loved ones in veterans cemeteries. Specifically, this bill (S. 2934) would authorize payments of $300 as a plot allowance to states for burial in a state cemetery of a veteran’s spouse or minor child.\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e1401c2a-6f70-4234-8c0f-1fc27a9c9ce8,\"Author Of Solar Manufacturing Tax Credit Bill Hails Administration's Push For Clean Energy Manufacturing In Jobs Bill\n                    \n                            Menendez and colleagues recently wrote President Obama and Sen. Reid urging inclusion of tax credit in forthcoming legislation\n                    \n                      December 16, 2009\n                     WASHINGTON – Today, the Obama administration unveiled plans for a boost to clean energy manufacturing in the United States through an additional $5 billion in tax credits as part of a forthcoming jobs bill. U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee, is the author of the Solar Manufacturing Jobs Creation Act (S.2755) to broaden the Solar Income Tax Credit to include solar manufacturing facilities and equipment. He recently led a letter to President Obama and Senator Reid urging inclusion of his proposal as part of the jobs bill. Today, he hailed the White House’s announcement.\n\n“We cannot afford to fall behind the clean energy race and watch as the jobs of the future continue to be outsourced overseas to nations that are more committed to building clean energy technology,” said Senator Menendez. “The president and Majority Leader know that I fully believe a broadening of solar tax credits to include manufacturing would be a tremendous job-creator, energy-saver and environment-protector. I am excited that the White House understands the importance of what I am advocating. This boost in clean energy manufacturing is an important step forward, and I will work to build upon it with lasting and effective policies to make our nation the clean energy leader.”\n\nCurrently, a 30 percent Solar Investment Tax Credit (SITC) exists for the purchase or installation of solar power technology. Under this Solar Manufacturing Jobs Creation Act, equipment and facilities used to manufacture solar power technology would be added to the eligible property list for the SITC.\nMenendez’s bill is co-sponsored by Senators Debbie Stabenow (D-MI), Michael Bennet (D-CO), Ron Wyden (D-OR) and Kirsten Gillibrand (D-NY).\nClick here to follow a link to the letter they recently sent to the President and Majority Leader on their bill.\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5c73bc4e-ecc9-48ed-856b-6d2508ed2922,\"Texting While Flying:  MENENDEZ SAYS NEW INFORMATION ABOUT DISTRACTED PILOTS ON FLIGHT 188 IS MORE REASON FOR LEGISLATION\n                    \n                            Focused Flying Act would prohibit non-essential electronics from use in cockpits during flight  \n                    \n                      December 16, 2009\n                     WASHINGTON – Information from the investigation into Northwest Airlines Flight 188 released today showed that the pilots were caught unaware when they looked up from their laptops to realize they had overshot the Minneapolis Airport on October 21.\nU.S. Senator Robert Menendez (D-NJ) has introduced the Focused Flying Act (S.2732), which would prohibit the use of non-essential electronics in the cockpit during flight. Today, Menendez said that the latest revelations underscore the need for new regulation through legislation.\n“If anything, this new information paints a picture of pilots who were even more distracted than we originally knew,” said Menendez. “Ensuring focused flying is a common sense safety measure that should be law. Passengers should be confident that the full concentration of their pilots is on getting them from Point A to Point B as safely and efficiently as possible.”\nThe bill would prohibit commercial airline pilots from using portable electronic devices during flight except for uses directly related to flight operations or safety. It would also direct the FAA to conduct a study on the broader issue of “distracted flying” and its impact on flight safety.\nThe Federal Aviation Administration currently has “sterile cockpit” rules that ban many distractions while flying below 10,000 feet, but it does not prohibit distractions like the non-essential use of portable electronic devices by pilots above 10,000 feet.  While a number of airlines have flight deck policies that prohibit those devices at all altitudes, the FAA does not mandate those prohibitions. \nThis legislation recognizes the simple reality that flight safety is not guaranteed above 10,000 feet—especially when pilots may be distracted by laptops, mobile devices, personal music players, and other portable electronic devices. It would prohibit pilots from using those devices at any point from the time the aircraft leaves the gate at the airport of origin until it arrives at the gate at the destination airport—except when those devices are used for flight operations or safety. \nPortable electronic devices may not be the only sources of distraction to cockpit crews.  As such, the bill mandates that the FAA conduct a study of “distracted flying” and recommend ways to reduce its negative impact on flight safety.   \n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=210b6b6a-fd58-453d-aca7-c6661515433d,\"SENATOR MENENDEZ SAYS FEDERAL INDICTMENT IN SHENANDOAH, PENNSYLVANIA HATE CRIME CASE WILL BEST ENSURE JUSTICE IS SERVED\n                    \n                             Senator Menendez was a strong advocate on behalf of federal involvement in alleged hate crimes; co-sponsored Matthew Shepard legislation to give federal law enforcement greater ability to become involved\n                    \n                      December 16, 2009\n                     WASHINGTON – The US Department of Justice announced that a federal grand jury returned multiple indictments for the racially-motivated fatal beating of Luis Ramirez, a Latino male, in Shenandoah, Pennsylvania committed by a group of teenagers. Senator Menendez, strong advocate on behalf of federal prosecution of alleged hate crimes and  co-sponsor of legislation that passed earlier this year to give federal law enforcement greater ability to become involved in and prosecute these types of crimes, applauded the indictment.\n“I am glad to see that our federal justice system will have a full opportunity to judge this case. There is certainly strong evidence of a hate crime in this case, and we know that the federal courts are the best venue for judgement of alleged hate crimes and for protection of civil rights. When someone is brutally killed simply because of their race or ethnicity, it’s a crime against an entire community and our nation’s values. This is why alleged hate crimes need special attention from federal law enforcement and courts, and this is why the new Matthew Shepard law is so important.”Earlier this year Senator Menendez  joined a coalition of national groups and Senators who called on the United States Department of Justice to pursue a broad and comprehensive investigation surrounding the beating and brutal murder of 25 year old, father of two, Luis Ramirez. Ramirez lost his life in July 2008, after he was knocked unconscious and kicked in the head by a group of Shenandoah teenagers who yelled racial epithets before and during the brutal beating. The first indictment charges Derrick Donchak and Brandon Piekarsky with a federal hate crime for fatally beating Luis Ramirez while shouting racial epithets at him. The indictment also alleges that, immediately following the beating, Donchak, Piekarsky and others, including members of the Shenandoah Police Department, participated in a scheme to obstruct the investigation of the fatal assault.  As a result of this alleged obstruction, Donchak is charged in three additional counts for conspiring to obstruct justice and related offenses. If convicted, Piekarsky and Donchak face a maximum penalty of life in prison on the hate crime charge.  Donchak faces 20 years in prison on each of the obstruction charges and an additional five years in prison for conspiring to obstruct justice.\nA second indictment charges Shenandoah Police Chief Matthew Nestor, Lt. William Moyer and Police Officer Jason Hayes with conspiring to obstruct justice during the investigation into the fatal beating of Ramirez.  Moyer has also been charged with witness and evidence tampering, and with lying to the FBI.If convicted, the defendants face 20 years in prison on each of the obstruction charges and an additional five years in prison for conspiring to obstruct justice.  Moyer faces an additional five years in prison for making false statements to the FBI.A third indictment charges Chief Nestor and his second-in-command, Captain Jamie Gennarini, with multiple counts of extortion and civil rights violations.  According to that indictment, from 2004 through 2007, Nestor conspired to extort cash payments from several illegal gambling operations in the Shenandoah area and obstructed the investigation of the extortion scheme.  The indictment also alleges that on May 17, 2007, Nestor and Gennarini committed extortion by demanding a $2,000 cash payment from a local businessman and his family in exchange for releasing the businessman from their custody.\n                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6cda69f7-87e6-436f-9916-5888db3f2865,\"SMALL BUSINESS LENDING:  MENENDEZ URGES PRESIDENT OBAMA, SEN. REID TO SUPPLEMENT PLAN FOR PRIVATE BANKS WITH DIRECT FEDERAL LENDING\n                    \n                            Menendez last week introduced CREATE Growth and Jobs Act to authorize $20 billion in direct federal lending to small businesses  \n                    \n                      December 14, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, today urged President Obama and Senate Majority Leader Harry Reid to supplement a program to spur private lending to small businesses with direct lending from the Small Businesses Administration. This call comes as President Barack Obama met today with bank CEOs and as the White House is reportedly working on a plan to stimulate bank lending to small businesses through an infusion of TARP funds to private banks. Last week, Senator Menendez introduced the Credit Retains Employees And Triggers Economic (CREATE) Growth and Jobs Act, which would make $20 billion in TARP funds available over two years for small businesses to borrow directly from the Small Business Administration.\n“In order to reverse this trend [of declining small business lending by private banks], the government needs to fill in the breach and use TARP funds for the purpose they were intended: to provide credit to small businesses so they can expand their operations and hire new workers.  Simply throwing money at banks and hoping that they lend to small businesses has not worked in the past and will not work in the present,” wrote Menendez. “While some community banks will accept funds under these conditions, many will not. That is why we need the SBA to fill this demand so we may reach all small businesses that need capital, regardless of where they are located. Instead of exclusively relying on banks to increase lending to small businesses, why not take out the middleman and explicitly require the SBA to lend it directly to the firms that need it the most?”  \nPDF of letter to Obama: http://menendez.senate.gov/imo/media/doc/20091214ltr_ObamaSmallBiz.pdf \nPDF of letter to Reid (identical): http://menendez.senate.gov/imo/media/doc/20091214ltr_ReidSmallBiz.pdf \nThere has been a $10.5 billion drop in small business lending over the past six months by the 22 banks that received the most TARP funds, and there is a $10 billion drop in SBA guaranteed loans projected for this year compared to the historic norm. Because of private lending drying up, less than half of small businesses that tried to get a loan in the fourth quarter of 2008 were able to get one. \nCensus statistics show that small firms with fewer than 500 workers employed more than half (60.2 million) of the 119.9 million nonfarm private sector workers in 2006. In addition, small businesses can be credited most with helping grow the workforce in recent years: according to Bureau of Labor Statistics research, firms with fewer than 500 employees accounted for nearly two thirds (14.5 million) of the 22.5 million net new jobs (gains minus losses) between 1993 and the third quarter of 2008.\nBackground on bill:\nThe CREATE Growth and Jobs Act is modeled after the Economic Injury Disaster Loan (EIDL) Program, which authorizes the SBA to provide low-cost loans to small businesses that have suffered injury as a result of a natural disaster. This legislation would make $10 billion available per year for two years to otherwise healthy small businesses with good credit that are currently unable to obtain loans elsewhere. The maximum loans amount available would be $1.5 million, with a maximum interest rate of Prime + 4.75% and a maximum repayment period of 25 years. \nBased on the rate of jobs-per-dollar-loaned in recent years under the SBA 7(a) program (the SBA’s primary loan guarantee program), this plan could save or create 1,109,399 jobs during its two year authorization. \nText of letter to Reid (letter to Obama is identical, save for the name and address):\n                                                                                December 14, 2009\nThe Honorable Harry ReidMajority Leader522 Hart Senate Office BuildingWashington, D.C. 20510\nDear Majority Leader Reid:\nI am writing in response to recent news reports indicating your support for a plan to provide TARP funds to community banks so they may increase lending to small businesses.  While I commend your efforts to give community banks the resources they need to lend to small businesses, I believe this initiative would work best if it were supplemented with direct lending by the Small Business Administration (SBA).  \nAs such, I would like to bring to your attention the Credit Retains Employees And Triggers Economic (CREATE) Growth and Jobs Act, which I introduced earlier this week.  This innovative legislation would authorize the Small Business Administration (SBA) to lend up to $20 billion to otherwise creditworthy small businesses that are unable to access credit through ordinary means.  Based on statistics compiled by the SBA on its 7(a) program, the CREATE Growth and Jobs Act could potentially save or create more than 1.1 million jobs during its two-year authorization.  With more than 15 million Americans currently unemployed, this legislation would be a perfect initiative to include in the upcoming jobs package that is being crafted.        \nAs you know, small businesses are the engine of economic growth representing more than 99 percent of all employers and generating more than half of our non-farm GDP.  They have created more than two-thirds of all new jobs over the past 15 years, including 40 percent of high-tech jobs.  Despite their continued need for affordable and accessible credit, banks continue to balk at lending to small businesses.  Indeed, the 22 banks that received the most assistance from TARP have actually reduced lending to small businesses by $10.5 billion over the last six months.  Overall, 70 percent of banks reported that they have tightened their lending standards for small firms.  As a result, fewer than half of the small businesses that tried to get a loan in the fourth quarter of 2008 were able to get one.  This rate was even worse for firms that tried to obtain a new line of credit, with only three in ten succeeding in their effort.  While the Small Business Administration’s (SBA) guaranteed loan programs are a valuable resource for small firms, they are expected to guarantee only about $10 billion in loans this year, down from their historic norm of about $20 billion per year. \nIn order to reverse this trend, the government needs to fill in the breach and use TARP funds for the purpose they were intended: to provide credit to small businesses so they can expand their operations and hire new workers.  Simply throwing money at banks and hoping that they lend to small businesses has not worked in the past and will not work in the present.  Even community banks, which would be most likely to make these important loans, have expressed serious reservations about accepting TARP funds while the current restrictions on excessive executive compensation still apply.  I believe these prohibitions on excessive salaries and bonuses are crucial to making sure the American taxpayers are protected and getting the most bang for their buck.  While some community banks will accept funds under these conditions, many will not.  That is why we need the SBA to fill this demand so we may reach all small businesses that need capital, regardless of where they are located.    \nInstead of exclusively relying on banks to increase lending to small businesses, why not take out the middleman and explicitly require the SBA to lend it directly to the firms that need it the most?  One of the SBA’s primary responsibilities is to ensure small businesses have access to credit.  The Agency already has experience in administering direct loans through its Economic Injury Disaster Loans (EIDL) Program.  With the number of small businesses filing for bankruptcy rising 54 percent from 2007 to 2008, many if not most small business owners would classify the current credit atmosphere as an emergency.  In such critical situations, it is imperative for the government to step in and do what Wall Street and the financial industry either cannot or will not do. \nIf we’re serious about creating jobs and developing policies that benefit Main Street, then we need to support the primary engine of economic growth: small businesses.  We need to encourage the entrepreneurial spirit that makes America great, by ensuring small business men and women have the credit they need to grow their businesses and thrive.  I urge you to strongly consider supporting the CREATE Growth and Jobs Act and look forward to working with you to craft a comprehensive proposal to assist small businesses and create jobs.  \nSincerely,\nROBERT MENENDEZUnited States Senator\ncc: President Barack Obama\n                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8930c406-8949-4273-891a-aab9bb6976bc,\"U.S. SENATOR ROBERT MENENDEZ ANNOUNCES $2,329,500 FOR ENERGY EFFICIENCY IN JERSEY CITY THROUGH PROGRAM HE CREATED\n                    \n                            Energy Efficiency and Conservation Block Grant program assists NJ municipalities with energy efficiency projects\n                    \n                      December 14, 2009\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ) announced that Jersey City will receive $2,329,500 for energy efficiency projects awarded from the Energy Efficiency and Conservation Block Program which he created as part of energy legislation in 2007.  This program, funded through the American Recovery and Reinvestment Act, is delivering over $75.5 million to New Jersey municipalities for energy saving initiatives.\n“Creating jobs and saving energy is a win-win, and this federal funding will do just that for Jersey City and all of the New Jersey municipalities that are receiving it,” said Sen. Menendez. “Jersey City will benefit with additional jobs, lower energy consumption and budget savings that can be passed on to taxpayers.”\n\"\"Jersey City is the second most sustainable city in the United States, and we have been on the forefront of creating green standards and green municipal practices, so it is therefore fitting that Jersey City should be the recipient of more than $2 million in federal energy efficiency grants,\"\" said Mayor Jerramiah T. Healy.  \"\"Additionally, Jersey City is the economic engine driving the state's economy and these funds will be used to create jobs and stimulate additional development.  We are grateful to Senator Menendez for his efforts in securing this funding for Jersey City.\"\"The City of Jersey City has slated the $2,329,500 for the following energy efficiency projects:\n1.    Project 1: City-wide Energy Audit: Total Requested EECBG funding $347,000Jersey City will use this EECBG funding to order an audit to assess the energy consumption of public buildings including City Hall and other key city-owned facilities.\n2.    Project 2: GREEN Revolving Loan Fund: Total Requested EECBG funding $465,000Jersey City will create a Green Revolving Loan program to assist small businesses throughout the City with the costs associated with weatherization and retrofitting. \n3.    Project 3: Police Communication Center: Total Requested EECBG funding $ 790,148The City will be using the funds obtained by the grant to furnish the Communications Center with MEP equipment, pavement, a green roof, sunshades, and other “greening” components of the building.\n4.    Project 4: Solar Compactors along the Waterfront: Total Requested EECBG funding $436,138The City will place solar compactors along the waterfront in order to reduce pollution by cutting down the frequency of trash collection trips.\n5.    Project 5: Energy Efficient Lights along MLK: Total Requested EECBG funding $291,214The City will place 45 LED street lamps along Martin Luther King Boulevard in an area that is distressed and under redevelopment.\nTo date, the U.S. Department of Energy has awarded more than 1,700 Energy Efficiency and Conservation Block Grants, totaling over $1.9 billion.\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cdc2bdc4-c94b-4611-bcfc-e1fddf5c3bef,\"LAUTENBERG, MENENDEZ ANNOUNCE SENATE APPROVAL OF MORE THAN $271 MILLION FOR NJ TRANSPORTATION PROJECTS, MEDICAL FACILITIES, SOCIAL SERVICE PROGRAMS AND OTHER VITAL INITIATIVES \n                    \n                            $200 Million Approved for New Mass Transit Tunnel. Funding Measure Heads to White House for President Obama’s Signature. \n                    \n                      December 13, 2009\n                     WASHINGTON – Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Senate approved legislation that will invest more than $271 million in New Jersey for projects and programs they requested and advocated for that will help improve our economy and benefit residents across the state.  The FY 2010 Omnibus Appropriations Conference Report, which Sen. Lautenberg helped craft as a member of the Senate Appropriations Committee, passed the House on Thursday and now heads to the President for his signature. \n“The funding in this measure is going to be a real boost for New Jersey; it will help create jobs, expand and improve our transportation infrastructure, and upgrade medical facilities across the state,” said Lautenberg.  “With an additional $200 million in funding for the mass transit tunnel, this funding package affirms the federal government’s commitment to providing commuters in our region with a new, convenient way to travel.  The new tunnel will put thousands of people to work on a project that promises to ease traffic for New Jersey commuters, strengthen our regional economy and enhance security.  This bill will also help New Jersey expand its medical capabilities with new funding for hospitals, autism programs, diabetes prevention and cancer care.  Locally, funds will be invested in law enforcement initiatives, social services for seniors and low-income families and mentoring programs to help children avoid the temptation of drugs and gangs.  New Jersey stands to make tremendous gains through this measure, and I am proud to have secured these funds for our state.”          \n“At a time when job creation is absolutely critical, these investments in our state will help spur employment, along with enhancing our public safety and improving our health care systems,” stated Sen. Menendez.  “As part of this package of investments, we have worked hard to secure continuing support for the new mass transit tunnel, which will generate thousands of jobs and double train capacity crossing the Hudson. This includes programs to help ensure that New Jersey families continue to have access to top flight medical facilities and care. The investments for military installations in our state will enhance our national security and benefit the men and women serving our country right here in New Jersey. Overall, the transportation, small business, public safety and health care investments from this package will be beneficial to families’ finances, security and health.”These funds were included as part of the FY 2010 Omnibus Appropriations bill which passed in the United States Senate this afternoon by a vote of 57-35.  The Omnibus package includes six appropriations bills: Commerce, Justice and Science; Labor, Health and Human Services, Education; Transportation, Housing and Urban Development; Financial Services; Military Construction and Veterans Affairs; and State and Foreign Operations. \nThe following is a list of New Jersey projects and programs that will receive federal funding:\nTRANSPORTATION, HOUSING AND URBAN DEVELOPMENT APPROPRIATIONS -- $214,849,800 TOTAL\nTransportation -- $212,105,000\n•    $200,000,000 for construction of the ARC Tunnel\n•    $800,000 for Passaic and Bergen County Intermodal Facility improvements\n•    $974,000 to Bergen County for a Specialized Bus Transit program\n•    $400,000 for the planning and design of the Hudson Bergen Light Rail Jersey City Bayfront Extension\n•    $300,000 for a traffic signal improvement project in Union City\n•    $1,948,000 for improvements to I-280 interchange in Harrison\n•    $1,948,000 for rail and station improvements at Newark Penn Station\n•    $487,000 to Newark for the North Broad Street Redevelopment project to include parking facilities, road improvements, bike lane developments, and streetscape improvements near the Broad Street Station and Military Park\n•    $1,250,000 for the Route 22 Sustainable Corridor Plan that would redefine an 8-mile section of Route 22 in Bridgewater Township and Somerville Borough from a high-speed arterial highway into a suburban boulevard design\n•    $300,000 to North Plainfield for downtown pedestrian and streetscape improvements\n•    $500,000 for construction of high-level platforms at the South Amboy Intermodal Station\n•    $974,000 for the Route 27 Renaissance 2000 Project to address long standing congestion and safety problems and support revitalization efforts of Franklin Township, New Brunswick and North Brunswick\n•    $500,000 for the construction of improvements at the intersection of Route 72 and East Road in Stafford Township\n•    $487,000 for the design and construction of improvements to a key North Camden gateway: 7th Street from Linden Street to Elm Street\n•    $487,000 for land planning, design, environmental remediation, and park and infrastructure development in the North Camden and Cramer Hill communities\n•    $750,000 for the rehabilitation of the Short Line Rail in Salem County\nEconomic Development and Low-Income Service Improvement -- $2,724,800\n•    $779,200 for renovations and improvements at Eva’s Village Kitchen and Recovery center in Paterson\n•    $400,000 for the remediation of a brownfield in Jersey City\n•    $194,800 for renovations of a senior citizen center in East Orange\n•    $400,000 for renovations at the Friendly Fuld Early Childhood Facility in Newark\n•    $250,000 to stabilize and rehabilitate the eroding banks of the Irvington Branch of Lightning Brook in Union Township\n•    $200,000 to 180 Turning Lives Around to construct and equip a domestic violence shelter in Monmouth County\n•    $250,000 for area renovation and remediation of the Bordentown Township Light Rail Transit Center\n•    $250,000 for the rehabilitation of buildings as part of the ongoing downtown revitalization in Hammonton\nLABOR, HEALTH AND HUMAN SERVICES, EDUCATION APPROPRIATIONS -- $14,112,000 TOTAL\nJob Training-- $375,000\n•    $275,000 to Beth Medrash Govoha to expand a job training initiative\n•    $100,000 to Covenant House New Jersey for education and job training services for formerly homeless youth in Covenant House residential centers\nHealth Care Facilities and Services-- $8,600,000\n•    $750,000 to Atlantic Health – Morristown Memorial Hospital for emergency department expansion and renovation.•    $200,000 to AtlantiCare Special Care Center for facilities and equipment\n•    $100,000 to Autism New Jersey for a patient navigator project that will develop a system to assist individuals, families, and professionals impacted by autism spectrum disorders (ASDs) navigate the service delivery system in New Jersey\n•    $250,000 to the Bacharach Institute for Rehabilitation for facility improvements and equipment for the Sleep Disorders Center\n•    $300,000 to Bergen Regional Medical Center for facility renovations and equipment\n•    $500,000 to Community Medical Center for facility improvements and equipment at the J. Phillip Citta Regional Cancer Center\n•    $200,000 to Cooper Health System for emergency department expansion at Cooper University Hospital\n•    $125,000 to Essex County for a diabetes prevention and management program for severely mentally ill adults\n•    $100,000 to the Friends of the Congressional Glaucoma Caucus Foundation for the New Jersey Mobile Eye Care Screening Initiative\n•    $500,000 to Holy Name Hospital for facility improvements and equipment for the Holy Name Hospice Care Program\n•    $300,000 to JFK Medical Center for a digital mammography system at the JFK Breast Care Center\n•    $100,000 to Meridian Health for emergency department renovations and expansion at the Ocean Medical Center\n•    $100,000 to the Metropolitan Family Health Network for equipment upgrades at the Breast Imaging Mammography Center\n•    $500,000 to Monmouth Medical Center for expansion to the emergency department\n•    $300,000 to Newton Memorial Hospital for facility improvements and equipment\n•    $350,000 to Palisades Medical Center for emergency department renovations\n•    $300,000 to Saint Barnabas Health Care System Foundation for health information technology\n•    $600,000 to Saint Clare’s Health System for facility improvements and equipment for Emergency Medical Services (EMS)\n•    $500,000 to Shore Memorial Hospital for facility improvements and equipment for the hospital’s Surgical Pavilion\n•    $600,000 to Somerset Medical Center for an electronic medical records initiative\n•    $350,000 to St. Francis Medical Center for facility improvements and equipment for the emergency department\n•    $950,000 to St. Mary’s Hospital for facility improvements and equipment\n•    $400,000 to Trinitas Health Foundation for facility improvements and equipment at the Trinitas Center for Regional Education\n•    $225,000 to Zufall Health Center for facility improvements and equipment for the Hunterdon Family Dental Center\nSocial Services -- $2,087,000\n•    $225,000 to the Jewish Family Service of Somerset, Hunterdon and Warren Counties for the Somerville Aging-In-Place program\n•    $300,000 to Jewish Family Service of Central New Jersey for their Aging-In-Place program\n•    $150,000 to SingleStop USA for the SingleStop facility in Essex County which provides tax credit access, legal assistance and financial counseling services\n•    $312,000 to Somerset Hills School District Cultural Tolerance Education Initiative\n•    $400,000 to the Somerset Home for Temporarily Displaced Children’s Bridge House transitional and permanent housing program\n•    $200,000 to UJA Federation of Northern NJ for their Aging-In-Place Demonstration Project\n•    $100,000 to United Jewish Communities for MetroWest New Jersey for their Independent Aging Initiative.\n•    $400,000 for Wynona’s House for a child sexual abuse intervention program\nEducation -- $3,050,000\n•    $300,000 to the Bloomfield Board of Education to help provide alternative education for academically-challenged students\n•    $550,000 to Caldwell College for equipment and curriculum development for Caldwell’s Autism Clinic program\n•    $500,000 to Farleigh Dickinson University for curriculum development and equipment for the Latino Education program\n•    $300,000 to the Morris Museum for their science education program\n•    $100,000 to the New Jersey State Library Talking Book and Braille Center for equipment for its awareness campaign\n•    $300,000 to St. Peter’s College for equipment and technology \n•    $400,000 to Union County College for curriculum development in clean energy jobs education and training \n•    $100,000 to Voices of September 11th for a 9/11 living memorial digital archive\n•    $350,000 to Warren County Community College Foundation for facility improvements and equipment for its Health Education and Professional Development Center\n•    $150,000 to the West New York Board of Education Alternative Fuel Education Program\nCOMMERCE, JUSTICE, SCIENCE APPROPRIATIONS -- $13,900,000 TOTAL\nLaw Enforcement Technology -- $7,950,000\n•    $1,000,000 to the New Jersey Institute of Technology to for the ongoing development of technology to safeguard handguns from unauthorized use based on biometric identification\n•    $240,000 to Pompton Lakes for police and emergency services interoperability equipment upgrades\n•    $900,000 to Bergen County for a county-wide public safety radio communication system\n•    $200,000 to Hackensack for police and emergency services communication upgrades\n•    $500,000 to East Rutherford for police communication infrastructure\n•    $500,000 to Newark for interoperability equipment at the Emergency Operations Center\n•    $400,000 to Newark for an initiative to assist returning offenders to productively integrate back into society\n•    $450,000 to Orange for public safety information technology\n•    $200,000 to Irvington Police Department for a Computer Aided Dispatch/Record Management System (CAD/RMS)\n•    $650,000 to Union City for law enforcement technology\n•    $100,000 to Bayonne for law enforcement technology\n•    $1,000,000 to Summit for a regional police and emergency management interoperable communication network and facility\n•    $500,000 to Woodbridge for an interoperable law enforcement trucked digital radio system\n•    $610,000 to Trenton for a gunshot location system, radio communication upgrade, and a youth violence and gang prevention program\n•    $200,000 to the City of Camden for equipment at the Camden Police Mobile Communication Center\n•    $500,000 to Camden County for a county-wide interoperability system\nMentoring/Youth Development -- $4,500,000\n•    $200,000 to Ohel Children’s Home and Family Services in Teaneck for a child abuse prevention program\n•    $250,000 to All Saints Community Service and Development Corporation Jubilee Center in Hoboken to support and expand programs for children touched by violence.\n•    $300,000 to Jersey City Housing Authority for a drug elimination program\n•    $250,000 to Housing Authority of Plainfield for an after school and summer gang prevention initiative\n•    $500,000 to Middlesex County Prosecutor’s Office for a SPEAK UP Hotline Outreach and Public Education program.  SPEAK UP is a national hotline (1-866-SPEAK-UP) for students to anonymously report weapon-related threats in their schools and communities\n•    $400,000 to the USA Swimming Foundation for a Regional Youth Development program in Asbury, Bayonne, Jersey City, Newark and Plainfield\n•    $500,000 to Community YMCA in Middletown for a gang prevention program\n•    $500,000 to 180 Turning Lives Around in Hazlet for a child and teen violence reduction and treatment program\n•    $400,000 for Big Brothers Big Sisters Foundation of New Jersey for a mentoring initiative\n•    $350,000 to D.A.R.E. New Jersey for a middle school drug prevention and safety program\n•    $100,000 to the New Jersey Department of Children and Families for child forensic interviews at child advocacy centers throughout the state\n•    $250,000 for the Brick Township Police Athletic League after-school and kids camp program\n•    $200,000 to Generations Incorporated in Lindenwold for a youth mentoring program\n•    $50,000 to Crossroads Program in Willingboro for a youth gang prevention program\n•    $250,000 to KidsPeace for a therapeutic foster care program in Cumberland County\nScience, Environment -- $1,450,000\n•    $250,000 to Monmouth University for the Resilient Urban Community and Ecosystem (RESCUE) Initiative to support the ongoing integration of water quality monitoring with other observations to provide relevant data that can be used by state and local environmental officials, water resource and water utility managers, recreational boaters, fishers and swimmers, coastal and estuarine managers and watershed managers\n•    $200,000 to the Delaware River Basin Commission for an enhanced flood warning system along the Delaware River\n•    $1,000,000 to the Partnership for Mid-Atlantic Fisheries for a multi-state multi-institutional partnership that will use academic, recreational and commercial fisheries resources to develop targeted science initiatives to improve the assessment and management process\nMILITARY CONSTRUCTION AND VETERANS AFFAIRS APPROPRIATIONS -- $27,800,000 TOTAL                              •    $9,700,000 for McGuire Air Force Base, New Jersey Air National Guard 108th Refueling Wing for facility improvements to the base civil engineering complex\n•    $7,900,000 for McGuire Air Force Base, United States Air Force for construction of a new base operations and command post facility\n•    $10,200,000 for Picatinny Arsenal for the second phase of the construction of a ballistic experimentation facility that will provide the capability to prepare weapons and artillery\nFINANCIAL SERVICES APPROPRIATIONS -- $1,026,050 TOTAL\n•    $205,000 to Essex County to create a Resource Center for Small, Women and Minority Owned Businesses\n•    $100,000 to the New Jersey Regional Office of the Cuban American National Council in Union City to provide financial education services to low and moderate income residents of Hudson County and the surrounding area\n•    $100,000 to the NJ Department of Community Affairs, Division on Women to help women with minimal business experience become successful entrepreneurs.\n•    $100,000 to Project Ezrah Needs in Englewood to provide financial counseling and employment services\n•    $271,050 to Rutgers University in Newark for the New Jersey Urban Entrepreneurship Development program that will help to increase the level of entrepreneurship and economic development in urban areas of NJ\n•    $250,000 to Woodbridge Township to redevelop a brownfields site on Pennval Road and establish a Green Technology Incubator\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dcc1ca27-c0bc-4244-b59f-e49177174a85,\"The Menendez Message\n                    \n                      December 10, 2009\n                     \n\n \nClick here to view Menendez Message in Web Browser\n\n--> Welcome to the Menendez Message!Volume 5, Issue 8 - December 10, 2009\n\n\n\n// -->\nVideo introduction and update from Senator Menendez\nIn this issue:\n\nHEALTH INSURANCE REFORM: CONTINUING TO WORK ON A VITALLY IMPORTANT BILL\nURGING THE ADMINISTRATION TO FOCUS AFGHANISTAN MISSION ON AL QAEDA\nMUCH NEEDED UNEMPLOYMENT INSURANCE EXTENSION PASSES SENATE \nDELIVERING FUNDING FOR KEY INITIATIVES IN NEW JERSEY\nCREATING JOBS WHILE REDUCING ENERGY COSTS\nLEADING EFFORTS AGAINST COASTLINE DRILLING\nIMPROVING AIR SAFETY WITH  NEW CONTROL TOWER FOR TETERBORO AIRPORT\nBIPARTISAN MEASURE TO HELP ENSURE MILITARY AID TO PAKISTAN IS USED AS INTENDED\nLANDMARK HATE CRIMES LEGISLATION\nPRESSING U.S. POSTAL SERVICE FOR ANSWERS ON PLANNED CLOSURE OF LOGAN TOWNSHIP FACILITY\nHONORING NJ’S NOBEL PRIZE RECIPIENTS\nBOB'S BILLS \nPROTECTING CONSUMERS FROM NEW AIRLINE HOLIDAY SURCHARGES\nPROPER CONCUSSION TREATMENT FOR HIGH SCHOOL AND MIDDLE SCHOOL ATHLETES\nLEGISLATION TO ENSURE PILOTS FOCUS ON FLYING\nLEGISLATION TO PROMOTE “GREEN GAMING”\n\n\n\nPlease\nnote that you can also follow my work in Congress via YouTube,\nFacebook, and Twitter. Click on the icons below to be directed to each\nof the sites.\n\n\n        \n\n\n   HEALTH INSURANCE REFORM: CONTINUING TO WORK ON A VITALLY IMPORTANT BILL\n\nAs a member of the Senate Finance Committee, one of the committees\nin charge of health insurance reform, I have had a hands-on role in\nhelping to shape reform legislation. Throughout the process, my focus\nhas been on reforming the system in order to reduce the burden of\nhealth care costs on families, eliminate insurance coverage denials and\nfinally provide affordable coverage to millions of Americans not\noffered insurance by an employer.\nGetting this legislation through the rigors of the Finance\nCommittee was a watershed moment in the effort to reform the health\ninsurance system, which has been too expensive and inaccessible for too\nmany families for too long. While I did not believe the Finance\nCommittee bill went far enough in many respects, I voted to move the\nbill forward because this issue is simply too important for us to fail\nand the process must continue. The bill the Senate is considering now\nis an improved reform effort that ends the tricks and traps insurance\ncompanies use to deny health coverage, includes increased choice and\ncompetition to keep health insurers honest, significantly expands\naccess to coverage, reduces premiums for the vast majority of American\nfamilies and does so while reducing the federal deficit. Through the\nremainder of the legislative process, we have to continue to improve\nthe bill so that quality health insurance is affordable and accessible\nfor everyone.\nI was pleased to get a number of amendments included in the\nbill, which will expand access to health insurance, lower costs, and\nprotect consumers. My amendment to guarantee the coverage of behavioral\nhealth treatments will help bring economic security and peace of mind\nto many families dealing with autism or other behavioral health\nconditions. Another amendment will provide a tax credit to small\nbiotechnology firms to spark medical innovation that improves the\nhealth of our families, lowers the costs of health care and creates\njobs in New Jersey. And finally, an amendment to protect consumers will\nhelp level the playing field for families fighting insurance company\nbureaucrats who deny coverage.\n» Click here to read the press release\n\n\n\n   URGING THE ADMINISTRATION TO FOCUS THE AFGHANISTAN MISSION ON AL QAEDA\n\nFrom\nthe time I voted against authorizing the Iraq War, I have said that our\nfocus should have instead remained on the base of operations for Osama\nbin Laden and al Qaeda – the terrorists who killed 3,000 people on our\nhomeland in 2001 and are eager to kill more innocent Americans. That\nbase is now the area along the Afghanistan-Pakistan border. I believe\nif we had not lost our focus by diverting troops and resources to Iraq,\nwe could have captured or killed bin Laden and exterminated al Qaeda by\nnow.\nThough we lost precious strategic advantages and\ninternational support in the years since, I still believe today that we\nmust finish the job by capturing or killing bin Laden and dismantling\nal Qaeda. I do not, however, believe that acting as a national police\nforce for Afghanistan on an indefinite basis is worthwhile – American\ntroops will be killed unnecessarily, and it will further drain our\nnational budget during an economic crunch. Therefore, my preference has\nbeen toward a targeted military operation that emphas\ncounter-terrorism and focuses on routing al Qaeda, rather than engaging\nin other flare-ups around Afghanistan. This strategy goes hand-in-hand\nwith what I have insisted upon in our Pakistan policy, which is more\npressure on the Pakistanis to go after the terrorists on their side of\nthe Afghanistan-Pakistan border.\nI am measuring the\nAfghanistan plan and the testimony I have heard in the Foreign\nRelations Committee on the basis of the principles I described above as\nI make my final assessment of the new strategy. In the committee, I had\nthe opportunity to question Admiral Mullen, Secretary Gates and\nSecretary Clinton last week, as well as General Petraeus and Ambassador\nEikenberry this week. I asked them specifically about the feasibility\nof the July 2011 troop withdrawal date, the plans to target al Qaeda\nand the efforts to target al Qaeda from Pakistan.\nIn seeking a range of informed and varied opinions and taking\nthe time to carefully work through them, it is clear that President\nObama understands the meaning of war, the lives that are at stake and\nthe impact it has on thousands of families here at home. I know that he\nthought deeply about those risks and weighed them against the risk\nposed by threats to our homeland that remain in Afghanistan before\ncoming to his decision on a new mission for our military.\nAs always, our thoughts and prayers are with our troops currently serving in harm’s way.\n» Click here to read the press release\n» Click here to read another press release\n\n\n\n   MUCH NEEDED UNEMPLOYMENT INSURANCE EXTENSION PASSES SENATE\n\nThese\nare the toughest times families across New Jersey and the country have\nfaced in generations, with far more people looking for employment than\njobs available. For the financial security of these families and for\nthe economic stability of our state as we begin to recover, it is\nimperative that we continue to provide the safety net of unemployment\ninsurance. To take it away now would be not only uncompassionate but\neconomically foolish.\nThis is why I proudly cast a vote in\nfavor of a new law to extend unemployment insurance by 14 weeks in all\nstates and by 20 weeks in states with unemployment rates of 8.5 percent\nor higher, which includes New Jersey. This is expected to assist tens\nof thousands of New Jerseyans whose benefits have expired.\nIn\naddition, the legislation included an extension of the Homebuyers Tax\nCredit, as well as tax relief for businesses facing operating losses.\nThe foreclosure crisis is a major cause of our economic troubles, and\nspurring responsible middle-class homeownership allows families to\nfulfill the American Dream, which can stabilize the economy and create\njobs. The same can be said about tax relief for businesses that are\nmaking investments to innovate, produce goods and sustain or create the\njobs that will put New Jersey families back to work.\n» Click here to read the press release\n\n\n   DELIVERING FUNDING FOR KEY INITIATIVES IN NEW JERSEY\n\nAs\nCongress evaluates and approves FY2010 appropriations bills, I have\nworked hard to secure funding for important job- creation, property-\nprotection and public safety projects in New Jersey.\n$8.4\nmillion for environment and water infrastructure-related projects in\nNew Jersey as part of the Interior, Environment, and Related Agencies\nAppropriations Bill » Click here to read the press release\n$1.3 million for public safety as part of the 2010 Department of Homeland Security Appropriations Bill\n    » Click here to read the press release\n$159\nmillion to protect the Jersey Shore and support flood control, energy\nand infrastructure projects as part of Energy and Water Appropriations\nbill » Click here to read the press release\n\n\n\n   CREATING JOBS WHILE REDUCING ENERGY COSTS\n\nIn\n2007, I led the effort to create the Energy Efficiency and Conservation\nBlock Grant (EECBG) program -- a job-creating initiative to provide\ncities, towns and counties with resources to support energy-saving\ninitiatives and improve energy efficiency in transportation, buildings,\nand other sectors. My program received $3.2 billion in the recovery\npackage, $75.5 million of which is coming to New Jersey municipalities.\nThe funding has been steadily rolling in, and includes a $14.4 million\ndollar investment for statewide programs and small municipalities. This\nprogram helps fund projects that put New Jerseyans back to work, reduce\nenergy costs, cut dirty emissions and save taxpayers money. These are\ncomponents of a clean-energy economic future that reduces the reliance\non fossil fuels and reduces strain on family budgets. This strong\ninvestment in energy efficiency helps us recover from the economic\ncrisis, while laying the foundation for long-term economic security.\n» Click here to read the press release\n\n\n\n   LEADING EFFORTS AGAINST COASTLINE DRILLING \n\nI\nrecently led the defeat of an amendment to rush Interior Secretary\nSalazar’s review of Bush Administration plans for unchecked coastline\ndrilling over a five year period. This plan is a handout to oil\ncompanies that could put the Jersey Shore at risk without providing any\nreal economic benefit to families. Secretary Salazar is undertaking a\nthorough review of this plan, and it is simply reckless to scuttle his\nevaluation. I’m proud to have led efforts in the Senate to overcome\nthis dangerous amendment, and I will continue to stand up for the\nJersey Shore, our state’s economy and forward-looking energy policy.\n» Click here to read the press release\n\n\n\n   IMPROVING AIR SAFETY WITH  NEW CONTROL TOWER FOR TETERBORO AIRPORT\n\nEarlier\nthis year, in the wake of the fatal mid-air collision over the Hudson\nand numerous other air safety concerns, I urged President Obama to\nrequest a replacement for the outdated control tower at Teterboro\nAirport. Last month, I received word from the US Secretary of\nTransportation that the federal government will, in fact, build the new\ntower. I am certainly happy that the administration responded to my\ncall in the best interests of public safety. If we are going to keep\nthe most complex airspace in the nation as safe as possible, it is\nimperative that the air traffic control system is as modern and\ntechnologically advanced as possible.\n» Click here to read the press release\n\n\n\n   BIPARTISAN MEASURE TO HELP ENSURE MILITARY AID TO PAKISTAN IS USED AS INTENDED \n\n\nWe\ncan’t lose sight of the very reason Pakistan receives U.S. assistance:\nthe funds are a reimbursement for expenses incurred fighting terrorists\nand supporting U.S.-led efforts to do the same. This fight is important\nto our national security, and we must ensure that our support is not\nbeing squandered or diverted. It is not only right for us to ensure\nthat American taxpayer money does what it is intended to do; it is our\nduty as stewards of the national security and of taxpayer money. A\nbipartisan amendment I introduced with Senator Bob Corker (R-TN) that\ngained final passage as part of the Department of Defense funding\nauthorization bill will help ensure that our assistance is used for its\nintended purpose. This provision will mandate that our government make\na determination that all payments to Pakistan are both in the national\nsecurity interests of the U.S. and will not affect the balance of power\nin the region.\n» Click here to read the press release\n\n\n\n   LANDMARK HATE CRIMES LEGISLATION \n\n\nWhen\nsomeone is harassed, assaulted or killed simply because of the type of\nperson they are, it’s a crime against an entire community and our\nnation’s values. As part of the Department of Defense funding\nauthorization bill, the U.S. Senate gave final passage to an amendment\nthat could finally provide justice in more of these cases. I am proud\nto have been a co-sponsor of this new law. The provision, mirroring the\nlate Sen. Edward Kennedy’s Matthew Shepard Act, allows federal law\nenforcement to become involved in more of these cases, whereas\ncurrently, it is does not have jurisdiction to prosecute a large number\nof them.\n» Click here to read the press release\n\n\n\n   PRESSING  U.S. POSTAL SERVICE FOR ANSWERS ON PLANNED CLOSURE OF LOGAN TOWNSHIP FACILITY\n\n\nWith\nthe U.S. Postal Service (USPS) preparing to close its Philadelphia\nLogistics and Distribution Center in Logan Township, NJ, I am pressing\nthe Postmaster General to explain how this decision was made and to\ndetail plans to assist those who will lose their jobs. This news has\ncreated serious anxiety and apprehension amongst the office’s 650\nworkers and their families, who are wondering if they will be offered\npositions in surrounding facility's. While the USPS has stated that it\nwill try to find jobs for these dislocated workers, no concrete plan\nhas been presented on this matter, which only adds to the anxiety of\nthese workers and makes it nearly impossible for them to make plans for\ntheir future.\n» Click here to read the press release\n\n\n\n   HONORING NJ’S NOBEL PRIZE RECIPIENTS \n\n\nIt\nwas an honor for our state to learn that two New Jersey scientists –\nDrs. Willard S. Boyle and George E. Smith – were awarded the Nobel\nPrize in Physics this year. Dr. Boyle and Dr. Smith invented the\ncharged-coupled device, or CCD, which revolutionized how we take\nphotographs and manipulate and transfer images, and is now found in\ndevices from digital cameras to the ground-breaking Hubble Telescope.\nThey conduct their work at Bell Laboratories in Murray Hill and have\nenriched our state’s proud tradition of scientific breakthrough and\ninnovation. We can add their names to those of Albert Einstein, who\nmade Princeton his base, and Thomas Edison, who from his lab invented\nthe incandescent light bulb that lit the world. To extend my deepest\ncongratulations on behalf of the Garden State, I submitted an official\nstatement in the Congressional Record in honor of Drs. Boyle and Smith.\n» Click here to read the press release\n\n\n\n   BOB'S BILLS:\n  \nPROTECTING CONSUMERS FROM NEW AIRLINE HOLIDAY SURCHARGES\n  \n\nThis\nyear, airlines have instituted a new holiday surcharge of as much as\n$50 per flight on the busiest travel days during the holiday season.\nFor consumers, it requires clicking to peripheral web pages and wading\nthrough often confusing text to understand whether or not their airfare\nincludes these surcharges and what other taxes and fees may have been\nadded. That’s why I introduced an updated version of my airfare\ntransparency legislation. The Clear Airfares Act would ensure that,\nbefore a customer is required to submit personal or payment\ninformation, he or she is given a full and clear breakdown of his or\nher particular airfare, as well as any other possible fees that might\nbe incurred on the flight (such as baggage, meal, and pet fees).\n» Click here to read the press release\n\n\n\n  \nPROPER CONCUSSION TREATMENT FOR HIGH SCHOOL AND MIDDLE SCHOOL ATHLETES\n  \n\nOur\nhigh schoolers playing in last weekend’s state football championships,\nand all of our children playing school sports, should be able to focus\non achieving their goals on the field without worrying about a\nconcussion that can affect them off the field. As the National Football\nLeague examines its own concussion treatment programs, many parents are\nwondering if enough attention has been devoted to concussions in school\nsports. That’s why I have introduced legislation in the Senate, similar\nto Rep. Bill Pascrell’s (NJ-8) legislation in the House of\nRepresentatives, which would establish a grant program to help local\nschool systems implement tested and effective concussion-management\nstrategies. Great strides in the prevention, diagnosis and management\nof concussions have been made in recent years. We want to make sure\nthat the most advanced strategies are being implemented for our high\nschool and middle school athletes.\n» Click here to read the press release\n\n\n\n  \nLEGISLATION TO ENSURE PILOTS FOCUS ON FLYING\n  \n\nIn\nthe wake of recent news that pilots, who overshot their destination by\n150 miles, were distracted by their laptop computers, I introduced\n“focused flying” legislation to prohibit the use of non-essential\nportable electronics in an airplane’s cockpit. This bill would require\nthe head of the Federal Aviation Administration to develop rules that\nprohibit pilots from using these devices while flying. The legislation\nwould also initiate an FAA study on distracted flying and its effect on\nsafety. With dozens or sometimes hundreds of lives in their hands, we\nneed to ensure that pilots are focused on one thing only: getting their\naircraft from point A to point B safely and efficiently.\n» Click here to read the press release\n\n\n\n  \nLEGISLATION TO PROMOTE “GREEN GAMING”\n  \n\nIn\na joint effort with popular video game makers, I introduced legislation\naimed at ensuring energy efficiency in game consoles. The Green Gaming\nAct would require the U.S. Department of Energy to conduct a study of\nvideo game console energy usage to determine whether or not energy\nefficiency standards should be set. Other home electronics and\nappliances have become more energy efficient than ever, and we need the\ninformation to assess the energy consumption of game consoles. As\nmillions of American families use video game consoles as a source of\nhome entertainment, it is increasingly important to promote “‘green\ngaming.”\n» Click here to read the press release\n\n\n\n\n\nClick here to unsubscribe\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a42c9de3-4ebb-48a9-9c50-5e52f3840f97,\"SEN. MENENDEZ MEETS WITH JERSEY CITY HIGH SCHOOL STUDENTS ON CAMPAIGN TO HAVE PRESIDENT OBAMA AS GRADUATION SPEAKER  \n                    \n                      December 9, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) met with Jersey City Superintendent of Schools Charles T. Epps Jr. and students of Jersey City Public Schools to discuss their campaign to get President Barack Obama to be next year’s high school graduation speaker. As part of this campaign, NJ school children grades K-12 have written personal letters to the President explaining the special meaning his appearance would have for them. Today, they visited their Congressional representatives to deliver more than 25,000 letters and talk about the campaign. The students also delivered several portraits of the President created by Jersey City Students. Senator Menendez’s office will ensure that the letters and portraits are received by the president. \n\"\"I was delighted to meet a group of dedicated and civically-engaged students who are the future of New Jersey.\"\" said Sen. Menendez. \"\"These children look at President Obama and they see not only an admirable President committed to the success of our nation, they also see a role model and the endless possibilities that lay ahead for them. I am proud to help them in their efforts, and look forward to continue supporting them as their graduation in 2010 nears.\n                                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e9a51ec5-1973-4f29-98cb-d7c5488f6b1c,\"WITH A FOCUS ON JOBS, MENENDEZ PROPOSES DIRECT FEDERAL LENDING TO SMALL BUSINESSES\n                    \n                            Under Menendez plan, SBA would make up for drop in loans, would create or save an estimated 1.1 million jobs\n                    \n                      December 9, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, today unveiled new legislation that would authorize the federal government to directly lend to small businesses, using TARP funds. He is urging consideration of this proposal, which could save or create an estimated 1.1 million jobs, as part of an upcoming jobs package that the White House and Congress will be crafting.\nThe Credit Retains Employees And Triggers Economic (CREATE) Growth and Jobs Act would make $20 billion in TARP funds available over two years for small businesses to borrow from the Small Business Administration. This amount would essentially fill the gap left by the $10.5 billion drop in small business lending over the past six months by the 22 banks that received the most TARP funds, combined  with the $10 billion drop in SBA guaranteed loans projected for this year compared to the historic norm. Currently, the SBA guarantees loans to small businesses but does not directly lend under normal circumstances.\n“More than half of the jobs in our country can be found in small businesses, which is why it is crucial that they can obtain loans to operate and expand at the most critical times,” said Menendez. “The concept of this legislation is simple: private banks aren’t lending to small businesses nearly as much as before the credit crisis, so it makes sense for the Small Business Administration to step up and fill the gap. From the corner store to the start-up renewable energy firm, small businesses have been a bedrock throughout our economic history, and giving them access to credit will be vital to our economic future. I will be working with my colleagues in the Senate as well as the White House to ensure this fiscally-responsible proposal is considered for the jobs package we will be putting together.”\nBecause of private lending drying up, less than half of small businesses that tried to get a loan in the fourth quarter of 2008 were able to get one. Census statistics show that small firms with fewer than 500 workers employed more than half (60.2 million) of the 119.9 million nonfarm private sector workers in 2006. In addition, small businesses can be credited most with helping grow the workforce in recent years: according to Bureau of Labor Statistics research, firms with fewer than 500 employees accounted for nearly two thirds (14.5 million) of the 22.5 million net new jobs (gains minus losses) between 1993 and the third quarter of 2008.\nBackground on bill:\nThe CREATE Growth and Jobs Act is modeled after the Economic Injury Disaster Loan (EIDL) Program, which authorizes the SBA to provide low-cost loans to small businesses that have suffered injury as a result of a natural disaster. This legislation would make $10 billion available per year for two years to otherwise healthy small businesses with good credit that are currently unable to obtain loans elsewhere. The maximum loans amount available would be $1.5 million, with a maximum interest rate of Prime + 4.75% and a maximum repayment period of 25 years.\nBased on the rate of jobs-per-dollar-loaned in recent years under the SBA 7(a) program (the SBA’s primary loan guarantee program), this plan could save or create 1,109,399 jobs during its two year authorization.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=14535491-2b49-4674-8aa3-6e16638bc048,\"WITH A FOCUS ON JOBS, MENENDEZ PROPOSES DIRECT FEDERAL LENDING TO SMALL BUSINESSES\n                    \n                            Under Menendez plan, SBA would make up for drop in loans, would create or save an estimated 1.1 million jobs\n                    \n                      December 9, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";\"\"\nBecause\nof private lending drying up, less than half of small businesses that tried to\nget a loan in the fourth quarter of 2008 were able to get one. Census\nstatistics show that small firms with fewer than 500 workers employed more than\nhalf (60.2 million) of the 119.9 million nonfarm private sector workers in\n2006. In addition, small businesses can be credited most with helping grow the\nworkforce in recent years: according to Bureau of Labor Statistics research,\nfirms with fewer than 500 employees accounted for nearly two thirds (14.5\nmillion) of the 22.5 million net new jobs (gains minus losses) between 1993 and\nthe third quarter of 2008.\nBackground\non bill:\nThe CREATE\nGrowth and Jobs Act is modeled after the Economic Injury Disaster Loan (EIDL)\nProgram, which authorizes the SBA to provide low-cost loans to small businesses\nthat have suffered injury as a result of a natural disaster. This legislation\nwould make $10 billion available per year for two years to otherwise healthy\nsmall businesses with good credit that are currently unable to obtain loans\nelsewhere. The maximum loans amount available would be $1.5 million, with a\nmaximum interest rate of Prime + 4.75% and a maximum repayment period of 25\nyears.\nBased on the rate of jobs-per-dollar-loaned in recent years under the SBA 7(a)\nprogram (the SBA's primary loan guarantee program), this plan could save or\ncreate 1,109,399 jobs during its two year authorization.\n# # #\n\n\n                        \n                        \n                        \n                            Press Contact\n                             Menendez Press Office 202-224-4744\n                        \n\t\t\t\t\t\tvar addthis_pub=\"\"senatormerkley\"\";\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1a620651-6aec-49cc-b3f2-fac3e53e3c6a,\"AFGHANISTAN HEARING: MENENDEZ ASKS GENERAL PETRAEUS ABOUT LENGTH AND COST OF U.S. COMMITMENT\n                    \n                            VIDEO HERE: http://www.youtube.com/watch?v=vKHQvK2853Y \n                    \n                      December 9, 2009\n                     WASHINGTON – Today, General David Petraeus, U.S. Central Command; Karl Eikenberry, American Ambassador to Afghanistan; and Deputy Secretary of State Jacob Lew appeared before the Senate Foreign Relations Committee to answer questions on the Obama administration’s new Afghanistan strategy.\nU.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, asked General Petraeus about the realistic length and cost of the U.S. commitment in Afghanistan, in light of Afghanistan President Karzai’s recent statement about requiring U.S. involvement for another 15 or 20 years. Menendez also asked Deputy Secretary Lew about the effectiveness of social development funding in Afghanistan. The video is available here: http://www.youtube.com/watch?v=vKHQvK2853Y\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8005315e-933c-49d4-98f3-78c973628779,\"MENENDEZ ANNOUNCES $176 MILLION FOR NEW JERSEY HOMELAND SECURITY PROGRAMS\n                    \n                            State will get $83 million directly; will share in additional $93 million\n                    \n                      December 8, 2009\n                                                             ***FULL BREAKDOWN INCLUDED BELOW*** WASHINGTON – U.S. Senator Robert Menendez announced today that the Department of Homeland Security will distribute $83 million directly to New Jersey through various Fiscal Year 2010 local homeland security programs. In additional, parts of the state will share in an additional $93 million. These funding levels are similar to the levels from FY09.\n“As we tackle various challenges facing our state and nation, we can never let our guard down when it comes to hometown security,” said Menendez. “The people of our state understand all too well the continuing need to ensure that our first responders are fully prepared to respond to security threats and emergencies. This funding is a crucial investment in the safety of New Jersey families, neighborhoods and hometowns.”\nBreakdown of homeland security funding for New Jersey:\n•    Urban Area Security Initiative (funding for the highest-risk urban areas in the country)o    Newark-Edison region - $37,292,205 (a minimum of $9,933,150 must be used for Law Enforcement Terrorism Prevention Activities)o    Philadelphia-Camden-Wilmington region - $23,335,845 (a minimum of $6,215,735 must be used for Law Enforcement Terrorism Prevention Activities)\n•    Port Security Grant Programo    Port of New York/New Jersey - $33,774,108o    Delaware Bay Port Area (includes Paulsboro, NJ; Camden, NJ; and Trenton, NJ) - $15,949,462o    Perth Amboy, NJ will also share in an undetermined amount from this program\n•    State Homeland Security Program (funding for State to distribute to first responders) - $23,804,549 (a minimum of $6,643,786 must be used for Law Enforcement Terrorism Prevention Activities)\n•    Regional Catastrophic Preparedness Grant Program - Jersey City/ Newark Area - $3,570,000\n•    Emergency Management Performance Grant Program - $8,041,432•    Interoperable Emergency Communications Grant Program - $1,349,000•    Buffer Zone Protection Program (critical infrastructure) - $1,200,000•    Driver’s License Security Grant Program - $1,046,400•    Emergency Operations Center Grant Program Noncompetitive Allocations o    City of Brigantine - $300,000o    City of Hackensack - $300,000o    City of Newark - $1,000,000o    County of Union - $500,000o    Morris County, New Jersey Office of Emergency Management - $1,000,000o    North Hudson Regional Fire and Rescue - $500,000o    Passaic County Prosecutor’s Office - $250,000o    Township of Irvington - $750,000o    Township of Old Bridge - $500,000o    Township of South Orange Village, South Orange - $247,000\n•    Citizen Corps Program - $304,403•    Metropolitan Medical Response System (awarded to Jersey City and Newark) - $634,838\n•    Intercity Passenger Rail Security Program (Amtrak) - $20,000,000 for entire Amtrak system\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dd9be423-c531-404d-a52d-301784ca0dfe,\"MENENDEZ DEFENDS WOMEN’S REPRODUCTIVE RIGHTS, HELPS DEFEAT ANTI-CHOICE AMENDMENT TO HEALTH INSURANCE REFORM BILL\n                    \n                            Video of Menendez speaking against amendment in Senate: http://www.youtube.com/watch?v=lhrrYSYInws \n                    \n                      December 8, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today spoke in strong opposition to and voted against an anti-choice amendment to the health insurance reform legislation. The Senate voted 54-45 to table (put aside) the amendment.\nThe amendment would have essentially barred any health insurance plan that is part of a newly-created insurance exchange from covering abortion services.\nVideo of Menendez speaking in opposition to anti-choice amendment: http://www.youtube.com/watch?v=lhrrYSYInws\n“This amendment would roll back the clock on a woman’s right to choose,” said Menendez. “It unfairly singles women out and takes away benefits they already have. It singles out our daughters and legislates limits on their reproductive health – their reproductive rights. If we were to do the same to men – if we were to single out men’s reproductive health in this legislation – imagine the outcry. Imagine if men were denied access to procedures. Imagine if they were denied access to prescription drugs. But that is exactly what we are doing to our daughters with this amendment – rolling back the hands of time. I personally find that offensive, as do women across this country. The language of this bill has been carefully negotiated to ensure that we are preserving a woman’s right to choose, but doing so without federal funding.  To claim otherwise is hypocritical and misleading.”\n                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2f3fbeb0-bcb0-4937-bf04-b81ebf14cb9f,\"MENENDEZ ANNOUNCES $176 MILLION FOR NEW JERSEY HOMELAND SECURITY PROGRAMS\n                    \n                            State will get $83 million directly; will share in additional $93 million\n                    \n                      December 8, 2009\n                                                           ***FULL BREAKDOWN INCLUDED BELOW*** WASHINGTON – U.S. Senator Robert Menendez announced today that the Department of Homeland Security will distribute $83 million directly to New Jersey through various Fiscal Year 2010 local homeland security programs. In additional, parts of the state will share in an additional $93 million. These funding levels are similar to the levels from FY09.\n“As we tackle various challenges facing our state and nation, we can never let our guard down when it comes to hometown security,” said Menendez. “The people of our state understand all too well the continuing need to ensure that our first responders are fully prepared to respond to security threats and emergencies. This funding is a crucial investment in the safety of New Jersey families, neighborhoods and hometowns.”\nBreakdown of homeland security funding for New Jersey:\n•    Urban Area Security Initiative (funding for the highest-risk urban areas in the country)o    Newark-Edison region - $37,292,205 (a minimum of $9,933,150 must be used for Law Enforcement Terrorism Prevention Activities)o    Philadelphia-Camden-Wilmington region - $23,335,845 (a minimum of $6,215,735 must be used for Law Enforcement Terrorism Prevention Activities)\n•    Port Security Grant Programo    Port of New York/New Jersey - $33,774,108o    Delaware Bay Port Area (includes Paulsboro, NJ; Camden, NJ; and Trenton, NJ) - $15,949,462o    Perth Amboy, NJ will also share in an undetermined amount from this program\n•    State Homeland Security Program (funding for State to distribute to first responders) - $23,804,549 (a minimum of $6,643,786 must be used for Law Enforcement Terrorism Prevention Activities)\n•    Regional Catastrophic Preparedness Grant Program - Jersey City/ Newark Area - $3,570,000\n•    Emergency Management Performance Grant Program - $8,041,432•    Interoperable Emergency Communications Grant Program - $1,349,000•    Buffer Zone Protection Program (critical infrastructure) - $1,200,000•    Driver’s License Security Grant Program - $1,046,400•    Emergency Operations Center Grant Program Noncompetitive Allocations o    City of Brigantine - $300,000o    City of Hackensack - $300,000o    City of Newark - $1,000,000o    County of Union - $500,000o    Morris County, New Jersey Office of Emergency Management - $1,000,000o    North Hudson Regional Fire and Rescue - $500,000o    Passaic County Prosecutor’s Office - $250,000o    Township of Irvington - $750,000o    Township of Old Bridge - $500,000o    Township of South Orange Village, South Orange - $247,000\n•    Citizen Corps Program - $304,403•    Metropolitan Medical Response System (awarded to Jersey City and Newark) - $634,838\n•    Intercity Passenger Rail Security Program (Amtrak) - $20,000,000 for entire Amtrak system\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3e824e52-91c4-4ff7-ad4d-b21ce51f4c99,\"MENENDEZ, LINCOLN, LAUTENBERG DISCUSS AMENDMENT TO LIMIT EXECUTIVE COMPENSATION FOR HEALTH INSURANCE COMPANIES\n                    \n                      December 4, 2009\n                     WASHINGTON — Democratic Senators Blanche Lincoln, Frank Lautenberg and Robert Menendez held a press conference this afternoon to discuss Senator Lincoln’s amendment to The Patient Protection and Affordable Care Act that will limit the deductibility of executive compensation for health insurance companies. The amendment would direct all of the revenue raised by limiting the deductibility of executive compensation for insurance companies to the Medicare Trust Fund. \n“This is a fair policy aimed at encouraging health insurance companies to put premium dollars toward lower rates and more affordable coverage, not in the pocketbooks of their executives,” said Senator Lincoln. “I am proud of this proposal, which will reassure American consumers and taxpayers that health insurance executives aren’t receiving a personal windfall – and that the companies they work for are not receiving excessive tax breaks. At the same time, this proposal protects our seniors of today and tomorrow by ensuring that the Medicare Trust Fund remains strong.”\nSenator Lautenberg said: “For too long, health insurance companies have been gouging consumers while gorging themselves with exorbitant pay. is simply unfair for American taxpayers to be forced to subsidize huge executive compensation packages.  Our amendment is the right approach to make sure that health care premiums are used to provide care to patients, while helping to shore up Medicare at the same time.” \n“While executives at health insurance companies reap increasing compensation, health coverage is being creatively denied to those who have, in good faith, paid their premiums,” said Senator Menendez. “This proposal would protect consumer health and dollars by making insurers pay their fair share while policy holders pay premiums for coverage they deserve.”\n                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9562d320-67b1-44cb-baac-8b40e095ed3d,\"MENENDEZ HELPS CRAFT LEGISLATION INTRODUCED TO SUPPORT GLOBAL CLIMATE DEAL\n                    \n                            Bill Supports U.S. Climate Finance Contribution\n                    \n                      December 4, 2009\n                     WASHINGTON – Senator John Kerry (D-Mass.), Chairman of the Foreign Relations Committee and author of S. 1733, the Clean Energy Jobs and American Power Act, today introduced the International Climate Change Investment Act of 2009.  This legislation addresses the global security risks of climate change and promotes our economic leadership and competitiveness by enhancing demand for American clean energy products.  The Act strongly supports a global agreement at the United Nations Framework Convention on Climate Change negotiations in Copenhagen, Denmark, later this month.\nThe legislation, which is co-sponsored by Foreign Relations Committee members Senators Bob Menendez (D-N.J.), Ben Cardin (D-Md.), Ted Kaufman (D-Del.), and Kirsten Gillibrand (D-N.Y.), serves as the foundation for the United States’ international financial commitment by supporting key elements of a global climate agreement: adaptation to climate change, deployment of clean energy technologies, and reduction of deforestation and forest degradation.  These provisions are intended to be incorporated into comprehensive climate change legislation.\n“As we approach the Copenhagen negotiations, this legislation demonstrates that the U.S. Senate is serious about supporting a global agreement to address climate change,” said Sen. Kerry.  “While America must lead this effort, we know it can’t be done alone – that’s why we are taking a strategic approach to addressing this issue. This legislation makes important investments in adaptation, clean energy deployment, and reducing deforestation – all critical elements of a global deal.”\n“Combating the effects of climate change is essential to our national and economic security, but it is a global problem that requires global action and coordination. As we draw closer to the start of talks in Copenhagen, I am pleased to join my colleagues in putting forward a bill that makes clear our expectations that any international agreement should contain strong verification and compliance mechanisms, along with a strong commitment to provide assistance for the developing world,” said Sen. Cardin, who also serves on the Senate Environment and Public Works Committee.\n “Climate change and its devastating results know no borders, and neither should our efforts to combat them. From the loss of forests to the population migration resulting from severe weather patterns, the effects of climate change on the other side of the world have direct consequences for our own security and economy here at home,” said Sen. Menendez.  “This is a planetary emergency, and our climate change policy must reflect that. In working with Chairman Kerry to develop this legislation, I know that we have crafted a plan that can help put our nation in a position of international leadership in the fight against climate change, and that will benefit our prosperity, stability and security. A robust international climate program in the overall legislation, such as this, is also necessary to get agreement on an international climate treaty, which is vital for the same reasons.”\n“Climate change is a global issue that requires a concerted international response,” said Sen. Kaufman.  “The right solution will give us the opportunity to lead the world in green jobs and clean energy exports. I am pleased to join the Chairman and my colleagues on this legislation, which provides key elements of the United States’ participation in an international agreement.”\n“I want to thank Chairman Kerry for his leadership on this most critical of issues,” said Senator Gillibrand.  “As the world community assembles in Copenhagen next week, it is critical that the United States be a leader in achieving global action to combat climate change.  The legislation put forward by Chairman Kerry illustrates the United States’ commitment to working with the world community to achieving success in preventing global climate change.  I am thankful that Chairman Kerry included provisions of the legislation that recognize the important role of women in adapting to climate change in their communities, as well as language that identifies the potential risk that climate change poses to our national security.”\nThe International Climate Change Investment Act of 2009 provides for a coordinated approach to addressing climate change around the world by:\n•    Establishing a “Strategic Interagency Board on International Climate Investment” to oversee multi-agency contributions to international climate finance;\n•    Establishing a detailed reporting and review system to monitor and evaluate the effectiveness and efficiency of assistance provided under this Act;\n•    Recognizing that the United States cannot act alone in a global effort to address climate change, requires the State Department to prepare a report to Congress summarizing the progress of rapidly industrializing countries in achieving low-carbon development;\n•    Authorizing funds to support key elements of the Bali Action Plan under the United Nations Framework Convention on Climate Change:\n-    Reducing Emissions from Deforestation Program: Provides assistance to conserve existing forests, reduce rates of deforestation, and build capacity in developing countries to participate in global carbon markets. Sets goal of achieving emissions reductions by at least 720 million tons of carbon dioxide equivalent in 2020 and a cumulative amount of at least 6 billion tons of carbon dioxide equivalent by 2025.\n-    Clean Technology Deployment Program: Supports U.S. export markets by establishing a clean technology deployment program to advance clean energy technologies and reduce energy poverty in developing countries.  Focuses on the role of the private sector by establishing an Expert Panel on Technology Deployment consisting of representatives of leading academic institutions, civil society, government agencies and business.  Ensures that investments are made in countries that are taking domestic action to reduce emissions and have robust compliance and enforcement with requirements for the protection of intellectual property rights. \n-    International Adaptation and Global Security Program: Provides new and additional assistance to the most vulnerable developing countries to develop and implement climate change adaptation programs. \nAttached are statements of support for the International Climate Change Investment Act of 2009.  A copy of the bill can be found at http://www.kerry.senate.gov/.\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=85923aa8-698b-4540-97a9-ae67c6d375f8,\"U. S. SENATOR ROBERT MENENDEZ ANNOUNCES ALMOST $2 MILLION FOR  NEW JERSEY RECREATIONAL TRAILS\n                    \n                            Grants will enhance the state’s open spaces as well as biking, hiking, and horseback riding opportunities, so much a part of New Jersey families’ recreational activities \n                    \n                      December 4, 2009\n                                                             Application deadline is December 15, 2009  WASHINGTON – U.S. Senator Robert Menendez announced that New Jersey will receive $1.8 million for the development and enhancement of the state’s recreational trails. This federal funding was awarded by the Federal Highway Administration under the Safe, Accountable, Flexible, Efficient Transportation Equity Act.Competitive grants will be awarded through the New Jersey Department of Environmental Protection to government agencies and non-profit organizations for the improvement of open space, enhancement of environmental resources, and the creation of urban and suburban corridors and to provide additional hiking, biking, and horseback riding opportunities.  Recipients are required to provide a 20 percent matching share for each project. “New Jersey has been nicknamed the Garden State not only for its lush landscape; our state has numerous recreational trails that millions of New Jerseyans enjoy almost year ‘round, biking, hiking, horseback riding and admiring its natural beauty,” said Senator Menendez.  “This federal funding not only serves to enhance the physical aspects of our state’s natural resources, it serves as a backdrop for family outings, exercise, or for anyone who simply enjoys the outdoors.” Previously approved projects totaling $833,109 were awarded to the following recreational trails:                                                                                                            Bergen CountyMeadowlands Conservation Trust, Richard P. Kane Natural Area: $21,880Palisades Interstate Park Commission, Southern Trails Extension: $21,070Camden CountyCooper's Ferry Development Association, Wiggins Park Trail Restoration: $25,000Merchantville Borough, Chestnut Avenue Pedestrian/Bikeway Extension: $25,000Cape May CountyCape May National Wildlife Refuge, Two-Mile Beach Unit Boardwalk Trail: $23,774Essex CountyLivingston Township, Trail Maps and Signage: $9,150South Mountain Conservancy Inc., Trail Repairs and Signage: $24,875Hudson CountyHudson County, Hudson River Waterfront Walkway: $25,000Hunterdon CountyAlexandria Equestrian Association Inc., Schick Reserve Trails: $12,500Readington Township, Trail Network: $19,600Mercer CountyFriends of Howell Living History Farm, Baldpate Mountain History Trail: $25,000Mercer County Equestrian Center, Mercer Educational Gardens Trail Linkage: $13,746Mercer County Park Commission, Signage and Mapping: $21,000Princeton Township, Quaker Road Pathway: $10,000Middlesex CountyFriends of Princeton Nursery Lands, Mapleton Preserve/Princeton Nursery Trails: $6,865Middlesex County Parks and Recreation, Trail Mapping: $2,500South Brunswick Township, Freedom Trail Improvements: $24,000Monmouth CountyAtlantic Highlands Borough, Trail Improvements 2009: $25,000Monmouth County Park System, Claypit Creek Connector: $25,000Wall Township, Capital to the Coast Trail: $1,260Morris CountyDenville Township, Muriel Hepner Park: $25,000Morris Township, Jockey Hollow Trails: $25,000Wharton Borough, West Morris Greenway Trail: $25,000Ocean CountyBrick Township, Trail Restoration and Maintenance: $17,725Double Trouble State Park, Multi-Use Trail Restoration: $7,458Passaic CountyNewark Watershed Conservation & Development Corp., Echo Lake Accessible Trail: $21,972Passaic River Coalition, Waterview and Highland Meadow Trails: $14,860Wayne Township, High Mountain Park Trails: $11,250Salem CountyParvin State Park Appreciation Committee, Trail Improvements: $25,000Somerset CountyBedminster Township, River Road Trail Restoration: $24,400Sussex CountyAndover Township, Andover Trail/Bikeway: $25,000Newton Town, Sussex Branch Trail Rehabilitation: $25,000Paulinskill Valley Trail Committee, the Park at Sparta Junction: $25,000Stokes State Forest, Trail Marker Replacement: $4,000Wawayanda State Park, Double Pond Trail: $3,072Wawayanda State Park, Livingston Trails Rehabilitation: $4,010Union CountyNew Jersey Youth Corps of Plainfield, Green Brook Park: $25,000New Providence Borough, Oakwood Park Trails: $9,000Warren CountyAllamuchy Mountain State Park, Allamuchy Pond Trail: $16,000Multiple CountiesDelaware and Raritan Canal State Park (Mercer, Middlesex, Hunterdon and Somerset), Podcast Trail Tours: $4,330 Delaware Water Gap National Recreation Area (Sussex, Warren), Trail Maintenance and Restoration: $25,000East Coast Greenway Alliance (Essex, Hudson, Mercer, Middlesex, Somerset and Union), Education and Awareness Project: $19,160Jersey Off Road Bicycle Association (Atlantic, Burlington, Mercer, Monmouth, Middlesex, Hunterdon, Morris, Somerset, Passaic, Sussex and Warren), Trail Equipment Storage and Transport: $13,000Jersey Off Road Bicycle Association (Atlantic, Burlington, Mercer, Monmouth, Middlesex, Hunterdon, Morris, Somerset, Passaic, Sussex and Warren), Trail Maintenance Equipment: $19,400Jersey Off Road Bicycle Association (Atlantic, Burlington, Mercer, Monmouth, Middlesex, Hunterdon, Morris, Somerset, Passaic, Sussex and Warren), Trail Tools and Supplies: $15,161New Jersey Audubon Society (Bergen, Cape May, Hunterdon, Ocean, Sussex and Warren), Trail Improvements: $4,395New York-New Jersey Trail Conference (Morris, Passaic, Sussex and Warren), Trail Skills Workshop Series: $24,696Passaic Valley Sewerage Commissioners (Bergen, Essex, Hudson, Morris, Passaic, Somerset and Union), Passaic River Blueway: $12,000                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d43a293e-e2fc-442a-aadc-d8acc0e00f65,\"Concussions Bill: Menendez Introduces Senate Legislation To Help Properly Handle Concussions In  School Sports\n                    \n                            Bill introduced in House by Rep. Pascrell\n                    \n                      December 4, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today introduced legislation in the Senate to create a grant program that would help ensure proper prevention, diagnosis and treatment of sports-related concussions in U.S. high schools and middle schools. The Concussion Treatment and Care Tools (ConTACT) Act establishes a five year grant program, authorized at $5 million for the first year, to be distributed to states to implement proven concussion management strategies. Rep. Bill Pascrell previously introduced this legislation in the House of Representatives.\n\n“Our high schoolers playing in the state football championships, and all of our children playing school sports, should be able to focus on achieving their goals on the field without worrying about a concussion that can affect them off the field,” said Senator Menendez. “As the National Football League bolsters its own concussion treatment programs, many parents are wondering if enough attention has been devoted to concussions in school sports. Great strides in the prevention, diagnosis and management of concussions have been made in recent years. We want to make sure that the most advanced strategies are being implemented for our high school and middle school athletes.”\n\n\n“People across the nation are becoming increasingly aware that traumatic brain injury isn’t just a concern for auto-accident victims or soldiers in the battlefield. It concerns any family with a child who is athletically active,” said Pascrell, the co-founder and co-chairman of the Congressional Brain Injury Task Force who originally introduced the ConTACT Act in November 2008. “Senator Menendez recognizes the importance of this legislation in protecting middle-school and high school athletes throughout our country. I sincerely thank him for introducing this legislation in the U.S. Senate and look forward to working with him in seeing this bill through the legislative process.”\n\nUnder the legislation, grants would be awarded to states to implement best practices in concussion management for school-sponsored sports and fund schools’ implementation of baseline and post-concussion neuropsychological testing technologies.  Best practices would be developed by a conference of medical, athletic, and education stakeholders and will be used to model grant guidelines.\nFacts on Concussions \n•    Baseline testing has become common in professional and college sports but is far less common in high school sports.\n•    Concussions are mild traumatic brain injuries (mTBI)\n•    As many as 3.8 million concussions related to sports and recreation are estimated to occur in the U.S. each year.\n•    As many as 41% of concussed high school athletes may be returning to play too soon.\n•    A repeat concussion—one that occurs before the brain recovers from a previous concussion—can slow recovery or increase the likelihood of having long-term problems.\n•    In rare cases, repeat concussions can result in second impact syndrome, which can be marked by brain swelling, permanent brain damage, and death.\n•    Many national organizations—including the American Academy of Neurology, the National Football League, the American Academy of Family Physicians, and the Brain Injury Association of America—have adopted concussion management guidelines, but multiple directives have created confusion.\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cf557613-ca21-43d0-b4e0-575b9a1c241f,\"IN AFGHANISTAN HEARING, MENENDEZ FOCUSES ON TROOP WITHDRAWAL TIMETABLE\n                    \n                            VIDEO HERE: http://www.youtube.com/watch?v=DOlQfDT1o9g\n                    \n                      December 3, 2009\n                     WASHINGTON – Today, Chairman of the Joint Chiefs of Staff Admiral Michael Mullen, Defense Secretary Robert Gates, and Secretary of State Hillary Clinton appeared before the Senate Foreign Relations Committee to answer questions on the Obama administration’s new Afghanistan war strategy.\nU.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, pressed the witnesses on the accuracy and feasibility of the administration’s stated 18-month timetable for beginning troop withdrawal. The video is available here: http://www.youtube.com/watch?v=DOlQfDT1o9g\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=87ddc358-f370-47e7-9d18-0bd9b88a92d7,\"LEADING INTERNET SAFETY GROUP STUDY: LEGALIZED, REGULATED ONLINE GAMING OFFERS “FAR BETTER PROTECTION” THAN CURRENT PROHIBITION\n                    \n                            Senator Menendez, author of online poker bill, says report shows benefits to families, gives momentum to legislation\n                    \n                      December 3, 2009\n                     LINK TO STUDY: http://www.house.gov/apps/list/hearing/financialsvcs_dem/sparrow.pdf   WASHINGTON – A study commissioned by leading internet safety non-profit WiredSafety was released today (available here: http://www.house.gov/apps/list/hearing/financialsvcs_dem/sparrow.pdf), finding that legalized, regulated online gaming “would offer far better protection against online gambling’s potential social harms than outright prohibition.” The report, authored Harvard Kennedy School of Government Professor Michael K. Sparrow, examined ten separate social risks posed by online gaming – from participation by minors to organized crime to identity theft. The report recommends that the United States implement a regulation and enforcement plan that utilizes different strategies for the different classes of risk, in combination with public education and support from outside groups.\nU.S. Senator Robert Menendez (D-NJ) is the author of the Internet Poker and Game of Skill Regulation, Consumer Protection, and Enforcement Act (S. 1597), which would legalize and regulate online games of skill. He released the following statement on the report released today:\n“Many of us have long asserted that the internet is made safer with oversight and regulation of online gaming rather than the Wild West scenario that exists currently. This report is strong proof of that.\n“Anyone who wants to play poker online can already do so, regardless of whether there is prohibition in the United States or not. With no oversight or regulation, it’s far too easy for our children to get into online poker, just as it’s too easy for players to be defrauded of their money or identities by rouge sites. What this report clearly shows us is the best way to protect our families and promote safe use of the internet is to put a cop on the beat and bring online gaming into the sunlight, where proper protections can be firmly established. Unfortunately, right now the federal government is sticking its head in the sand, as if ignoring it would make the problems go away.\n“Beyond the subject matter of this study, many of us have also made the case that regulation of online gaming could be an economic boon at a time when we badly need one. The legalization and regulation of online games of skill is about more than benefitting those who wish to participate – it is about family safety and generating economic benefits during a deep economic downturn.”\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ff71b05d-3d63-430c-9ab0-0c9c2f8f606d,\"MENENDEZ HAILS NIH AUTHORIZATION OF FIRST STEM CELL LINES FOR RESEARCH\n                    \n                      December 2, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a leading supporter of stem cell research, today released the following statement after the National Institute of Health announced that it had authorized the first lines of human embryonic stem cells for research:\n“For all of the families grappling with devastating diseases, conditions and injuries, the light of hope is shining a little brighter today. Scientists have long said that this particular research holds the most promise for the ground-breaking discoveries and cures that can save and improve millions of lives the world over. For years, many of us have worked to ensure that the federal government would throw its support behind this vital research. Our scientists can now get to the work of unlocking the potential within these stem cells.”\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=006e0a2d-af71-4683-b0bb-5ea980c044ea,\"MENENDEZ STATEMENT ON NEW AFGHANISTAN PLAN\n                    \n                      December 1, 2009\n                     WASHINGTON – After President Obama spoke to the nation tonight to outline a new plan for the U.S. military in Afghanistan, U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, released the following statement:\n“In seeking a range of informed and varied opinions and taking the time to carefully work through them, it is clear that President Obama understands the meaning of war, the lives that are at stake and the impact it has on thousands of families here at home. I know that he thought deeply about those risks and weighed them against the risk posed by threats to our homeland that remain in Afghanistan before coming to his decision.\n“I will not make a final judgment on this plan until I have had a chance to reflect upon it fully and, just as importantly, draw critical information from Admiral Mullen, Secretary Gates and Secretary Clinton, who we will have in front of the Foreign Relations Committee on Thursday. From the time I voted against authorizing the Iraq War, I have said that our focus should have instead remained on the base of operations for Osama bin Laden and al Qaeda – the terrorists who killed 3,000 people on our homeland in 2001 and are eager to kill more innocent Americans. That base is now the area along the Afghanistan-Pakistan border.  I believe if we had not lost our focus by diverting troops and resources to Iraq, we could have captured or killed bin Laden and exterminated al Qaeda by now.\n“Though we lost precious strategic advantages and international support in the years since, I still believe today that we must finish the job by capturing or killing bin Laden and dismantling al Qaeda. I do not, however, believe that acting as a national police force for Afghanistan on an indefinite basis is worthwhile – American troops will be killed unnecessarily and it will further drain our national budget during an economic recession. Therefore, my preference has been toward a targeted military operation that emphas counter-terrorism and focuses on routing al Qaeda, rather than engaging in other flare-ups around Afghanistan. This strategy goes hand-in-hand with what I have insisted upon in our Pakistan policy, which is more pressure on the Pakistanis to go after the terrorists on their side of the Afghanistan-Pakistan border.\n“I will measure the president’s plan and the testimony that will be presented before the Foreign Relations Committee on the basis of these principles, and based on that, I will make a final assessment of the plan. As always, our thoughts and prayers are with our troops currently serving in harm’s way.”\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bc168c94-7c91-4297-85f2-7ca163f025da,\"NEW CONTROL TOWER FOR TETERBORO AIRPORT BY 2016: OBAMA ADMINISTRATION HEEDS MENENDEZ REQUEST \n                    \n                            Current tower was built in 1975, too antiquated to provide maximum safety in nation’s busiest airspace\n                    \n                      December 1, 2009\n                     Letter from U.S. DOT: http://menendez.senate.gov/imo/media/doc/200911TeterboroATCT.pdf\nWASHINGTON – In response to his call for a new control tower at Teterboro Airport, U.S. Senator Robert Menendez announced today that he has receieved word from the U.S. Secretary of Transportation that the federal government will, in fact, build the new tower. In a letter to Menendez (available here: http://menendez.senate.gov/imo/media/doc/200911TeterboroATCT.pdf), Secretary Ray LaHood says that his department plans “to award a project design contract in 2011, award a construction contract in 2013, and commission a new [airport traffic control tower] in 2016.”\nMenendez had written President Obama in September calling for a new tower to be built (letter available here: http://menendez.senate.gov/pdf/09172009POTUSTeterboroairport%20tower.pdf). This came in the wake on numerous air safety issues involving Teterboro, including the fatal air collision over the Hudson River. Today, Menendez said he is grateful for the administration’s decision and that it will be important for public safety.\n“I am certainly happy that the administration responded to my call for a new tower at Teterboro in the best interests of public safety,” said Menendez. “If we are going to keep the most complex airspace in the nation as safe as possible, it is imperative that the air traffic control system is as modern and technologically advanced as possible. It shouldn’t take another air tragedy to show us that Teterboro’s control tower is antiquated.”\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3b02467f-f4ce-4ef8-ab23-f024687213a0,\"WITH NEW HOLIDAY AIRFARE SURCHARGES IN EFFECT, MENENDEZ ANNOUNCES UPDATED “CLEAR AIRFARES” LEGISLATION\n                    \n                             Today is one of the days on which holiday fees of up to $50 are in effect\n                    \n                      November 30, 2009\n                     NEWARK – This year, airlines have instituted a new holiday surcharge of as much as $50 per flight on the busiest travel days during the holiday season, including today. However, for consumers it requires clicking to peripheral web pages and wading through often confusing text to understand whether or not their airfare includes these surcharges and what other taxes and fees may have been added.\nIn response, U.S. Senator Robert Menendez (D-NJ) announced today at Newark Liberty International Airport that he will introduce an updated version of his airfare transparency legislation this week. The Clear Airfares Act would ensure that, before a customer is required to submit personal or payment information, he or she is given a full and clear breakdown of his or her particular airfare, as well as any other possible fees that might be incurred on the flight (such as baggage, meal, and pet fees).\n“For too long, it has been too difficult for airline passengers to figure out exactly what they are paying for when they buy a ticket,” said Menendez. “Trying to navigate through the different components in your airfare is like an airline pilot trying to land a plane in a thunderstorm without electronic instruments or a map – it’s technically possible, but it sure isn’t easy. What airline passengers deserve is something much simpler and clearer.\n“It is no small gesture that during this holiday season, families are shelling out their hard-earned money to visit loved ones at a time when so many are out of work or fearful that they are the next to lose their job. The least they should be able to expect from the airlines is a straight-forward transaction. The least they deserve – now more than ever – is to know exactly what they are paying for, so they can best decide how to spend their money.”\nThe legislation would require airlines or third-party websites to clearly and conspicuously disclose any fees, charges or surcharges, including holiday fees, for consumers to be able to clearly view before having to input their name and credit card information. This would include disclosure of possible fees that would be applied after the ticket is purchased.  \nLast year, in addition to pushing for greater transparency in airfares, Senator Menendez pressed airlines to cease using the “fuel surcharge” label months after fuel prices had receded from their peak (http://menendez.senate.gov/newsroom/press/release/?id=58767630-9cae-4a47-b6bd-cb18cf81c8a6). After this effort by Menendez, airlines eventually stopped using the term “fuel surcharge.” The Clear Airfares legislation includes language that requires that any fuel surcharges be correlated with the price of jet fuel.   \n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f5a21c37-22c2-465b-994e-c57a62bb4d19,\"AS CONGRESS LOOKS TO NEW JOB CREATION LEGISLATION, SENATORS ASK OBAMA AND REID TO CONSIDER SOLAR MANUFACTURING BILL\n                    \n                            Menendez, Stabenow, Bennet, Wyden and Gillibrand tout job creation benefits of Solar Manufacturing Jobs Creation Act\n                    \n                      November 30, 2009\n                     WASHINGTON – With Congress and the White House examining the possibility of new legislative measures that can help create additional jobs, the Senate sponsors of new solar power manufacturing legislation are asking President Obama and Senate Majority Leader Reid to take their bill into consideration. The bill’s sponsor, Senator Robert Menendez (D-NJ), along with its lead co-sponsors, Senators Debbie Stabenow (D-MI), Michael Bennet (D-CO), Ron Wyden (D-OR) and Kirsten Gillibrand (D-NY), today sent letters to the President and Majority Leader urging them to take up the Solar Manufacturing Jobs Creation Act (S.2755).\nCurrently, a 30 percent Solar Investment Tax Credit (SITC) exists for the purchase or installation of solar power technology. Under this bill, equipment and facilities used to manufacture solar power technology would be added to the eligible property list for the SITC.\nBackground on solar manufacturing and the legislation:\nThe U.S. is losing the global race for solar technology and manufacturing jobs. •    A decade ago, the U.S. produced more than 40% of the word’s solar photovoltaic (PV) cells.•    In 2008, the U.S. produced only 5% of the world’s solar cells. \nThe Solar Manufacturing Jobs Creation Act will spur growth and create jobs.•    Solar energy creates more jobs per megawatt of energy produced than any other form of energy.    •    The impact would be immediate with firms having an incentive to make their investments early in order to capitalize on the refundable credit.\nOther countries are providing incentives to attract solar manufacturing jobs.  •    Malaysia: 15-year income tax holiday.•    Philippines: 6-year income tax holiday.  •    Germany: Grants of 30% of investment costs for large enterprises (40%-50% for small/medium enterprises).\nARRA is a great start, but not enough to keep solar manufacturing in the U.S. •    The American Recovery and Reinvestment Act (ARRA) included a competitive tax credit capped at $2.3 billion for advanced energy manufacturing projects (new code Section 48C).  •    The credit is a good start to increase domestic solar manufacturing; however:o    Investment decisions are delayed because firms must apply and be certified for the credit.  o    The cap will cause the program to likely sunset after the first round of applications.\nPDF of letter to President Obama (NOTE: THE LETTER TO SENATOR REID IS IDENTICAL, SAVE FOR THE OMISSION OF “work with Congress to” IN THE FIRST SENTENCE): http://menendez.senate.gov/imo/media/doc/20091130ltrSolarJobs.pdf\nText of letter:\nNovember 30, 2009\nPresident Barack ObamaThe White House1600 Pennsylvania Avenue NWWashington, DC 20500\nDear Mr. President:\nAs you work with Congress to craft legislation that will spur job creation, we urge you to consider legislation that will not only create jobs but also set the stage for our long-term prosperity.  To that end, we recently introduced the Solar Manufacturing Jobs Creation Act to encourage investment in America’s solar energy manufacturing industry, which will create jobs, make us more energy secure, and reduce global warming pollution.  We know that you share these goals, so we wish to work with you to include this legislation in any jobs or clean energy bill that Congress considers in the near future. \nThe Solar Manufacturing Jobs Creation Act builds on the progress toward clean energy that was marked by the passage of the American Recovery and Reinvestment Act.  The recovery package invested more than $45 billion in programs and more than $21 billion in tax incentives to initiate a transition to a clean energy economy. \nWhile the recovery package has been a good start, there is more we can do to create jobs while positioning the United States as the leader in the technology that will power the 21st century global economy.  It is with considerable dismay that we note that the United States is falling behind other countries in this critical competition.  For example, a decade ago the United States accounted for more than 40% of the world’s solar photovoltaic (PV) cells, but in 2008 we produced just 5% of the world’s PV cells.  Countries like China, Germany, and Japan are leading the way in attracting private capital by establishing powerful incentives for investing in solar manufacturing.  It is time for those technologies and the jobs that accompany them to be found right here in America. \nOur legislation would create jobs here at home while setting the stage for economic growth for decades to come.  It would make investments in equipment used to manufacture solar energy technology eligible for the existing 30 percent tax credit for installation of residential and business solar energy systems.  The tax credit will spur investment in solar energy, which creates more jobs per megawatt of energy produced than any other form of energy.  What’s more, the impact of the legislation would be immediate, with firms having an incentive to make their investments early in order to capitalize on the refundable credit.  For these reasons, in 2010 alone our legislation is projected to create nearly 7,200 jobs in solar energy manufacturing and 2,700 construction jobs to build new plants, yielding nearly 9,990 direct jobs created.  The figure increases to 12,000 jobs when indirect jobs at upstream suppliers are included.   As solar firms create jobs and innovate, so will America move forward as the global leader in clean energy technology, improving our energy security while combating global warming.    \nAs our economy recovers, ensuring that job creation happens as soon as possible is our highest priority.  As we proceed, let us take advantage of this opportunity to position our nation as the clean energy leader for the 21st century.  Our legislation would move us in that direction.  Thank you for your consideration, and we look forward to working together to create jobs and set the stage for America’s long-term economic leadership.   \nSincerely,\n____________________                                                              ___________________ROBERT MENENDEZ                                                                 DEBBIE STABENOW    United States Senator                                                                 United States Senator\n____________________                                                              ___________________MICHAEL BENNET                                                                     RON WYDENUnited States Senator                                                                 United States Senator\n_____________________KIRSTEN GILLIBRANDUnited States Senator\n# # #\nIn their letter, the senators cite projections that, in 2010 alone, their legislation would create nearly 7,200 jobs in solar energy manufacturing, in addition to 2,700 construction jobs to build new plants. The senators also point out that the United States has fallen far behind countries like China in the manufacturing of solar power technology.\n“While the recovery package has been a good start, there is more we can do to create jobs while positioning the United States as the leader in the technology that will power the 21st century global economy. It is with considerable dismay that we note that the United States is falling behind other countries in this critical competition,” wrote the senators. “As our economy recovers, ensuring that job creation happens as soon as possible is our highest priority.  As we proceed, let us take advantage of this opportunity to position our nation as the clean energy leader for the 21st century.  Our legislation would move us in that direction.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c045fae6-92e9-4267-9d57-6556c18a262f,\"On Eve Of Thanksgiving, Menendez Brings Attention To Strain On Food Banks, Says Economic Recovery Package Is Helping\n                    \n                            Appearing at Community Food Bank of NJ, Senator discusses $350 million for food assistance programs NJ is receiving from recovery package\n                    \n                      November 25, 2009\n                     HILLSIDE – On the eve of Thanksgiving, U.S. Senator Robert Menendez (D-NJ) visited the Community Food Bank of New Jersey in Hillside to shine a spotlight on the strain food banks are facing during this economic recession. As more families have fallen on tough times but fewer businesses and individuals are able to contribute, food banks have been facing shortages. Senator Menendez cited this as a reason that the $350 million New Jersey is receiving for food assistance programs through the American Recovery and Reinvestment Act is so important.\n\n“Food banks have always been a bedrock for the neediest among us, including the poor, the working poor, the elderly and disabled,” said Senator Menendez. “During these tough times, the new face of need is a neighbor, a friend, maybe a relative. It’s an average, hard-working middle class mother or father pushed to the edge. It’s someone who always held a decent job all their lives, always paid the bills and maybe saved enough to take a vacation every now and then. Now, they sit around the kitchen table at night faced with the dilemma of either making one more mortgage payment or buying food for the holidays.\n“It is clear that this recession is showing us the real impact of the financial meltdown on thousands of families who are one check away from disaster. But it also presents us with an opportunity to do more and do better. In total, our state is receiving close to $350 million for food assistance programs through the recovery package, because if we are to recover fully from this recession, families have to stay afloat during the toughest times.”\n\nThe Community Food Bank of New Jersey has received $317,000 from the State Department of Agriculture through ARRA funding. This assistance is helping the food bank distribute food secured by the Department of Agriculture with Emergency Food Assistance Program funding as part of ARRA.\n\n“In more than three decades of food banking, I have never before seen so much need for our food services,” said Kathleen DiChiara, founder and Executive Director of the Community FoodBank of New Jersey.  “We have always served the chronically poor and now we are serving the newly poor as well.” She said, referring to those who are unemployed and underemployed.\n\nIn total, New Jersey is receiving the following food assistance funding through ARRA:\n•    $2 million for National School Lunch Program Equipment Assistance;•    $2.2 million through the Emergency Food Assistance Program;•    $296.5 million in Supplemental Nutrition Assistance Program benefits (formerly Food Stamps);•    $2.8 million for the Emergency Food and Shelter Program, which provides grants to nonprofit and faith-based organizations at the local level to supplement their programs for emergency food and shelter to provide for the immediate needs of the homeless;•    $12.8 million for Head Start to allow additional children to participate in this program, which provides development, educational, health, nutritional, social and other activities that prepare children to succeed in school;•    $27.6 million in Community Services Block Grants to local community action agencies for services to the growing numbers of low-income families hurt by the economic crisis, such as housing and mortgage counseling, jobs skills training, food pantry assistance, as well as benefits outreach and enrollment;•    $2.2 million for Senior Meals Programs to help senior meals programs cope with steep increases in food and fuel costs. Many programs are reducing meal deliveries to seniors or closing meal sites.\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6c7ee9d2-fbb0-48a7-afe1-7f9ab0efa2a6,\"New Jersey Sierra Club Awards Senator Menendez\n                    \n                      November 23, 2009\n                     PRINCETON – Yesterday the New Jersey Sierra Club awarded Senator Robert Menendez its Outstanding Achievement Award.  The award was given for the Senator’s longstanding commitment to the environment and leadership on environmental issues throughout his legislative career. It was presented in front of a packed room of Sierra Club volunteers and board members.\nThe award specifically highlighted Senator Menendez’s leadership in addressing global warming, preventing offshore drilling on the Atlantic Coast, and protecting the nation’s wild places.\n\n“To receive the Sierra Club's highest award is a tremendous honor,” said Senator Menendez.  “Never has there been a more important time to stand up for policies that help protect our environment, clear the air we breathe and secure a clean energy future. In doing so, we have the opportunity to safeguard ourselves and our children from the disastrous effects of climate change while creating new jobs and economic security.”\n\n\n“This is our highest honor, we would call it a lifetime achievement award, but we know Senator Menendez will continue his great work and fight for the environment in the years to come,” said Jeff Tittel, Director of the New Jersey Sierra Club.  “Senator Menendez not only votes the right way, he is a dedicated environmental leader and champion.”\n\nAs Congress works to pass comprehensive climate change legislation, Senator Menendez has emerged as a critical leader on environmental, public health and green jobs issues. He is widely considered a champion for reducing greenhouse gases and promoting the clean energy economy.  The climate bill being considered by Congress would bring 58,000 jobs to the state, make New Jersey energy independent, and help consumers save money through efficiency measures.\nUpon receiving the award Senator Menendez spoke about the need to reduce the country’s reliance on fossil fuels. The Senator’s record supports his words; he has consistently worked against subsidies for clean coal and supported the Environmental Protection Agency’s regulatory authority over coal plants. Time and time again he has made it clear that he will not support offshore drilling.  There have been instances when national environmental groups were willing to compromise on offshore drilling, but Menendez stood for his principles.  \n\n“When we talk to the Senator or his staff on these issues, we are not lobbying for environmental protection, we are discussing the best strategies and ideas to protect the environment,” said Tittel.  “Menendez has been a real environmental hero, a strong leader on global warming and stopping offshore drilling.”\n\nIn addition to his work on energy and climate, Menendez is a leader of protecting public lands. A co-sponsor of the Highlands Conservation Act he was a key reason why the state received $4 million for Highlands Acquisitions this year. This is the highest ever acquisitions appropriation. He supported expanding the Wallkill Refuge and designating Patterson’s Great Falls a National Park. This designation recognizes the role Patterson and the Great Falls played in the development of our country’s industrial history.  New Jersey had not received a National Park designation in thirty years prior.\n\n“Having partnered with the Sierra Club to help protect our natural treasures in the Garden State and across the nation, I know what a passionate group it is and how deeply it understands our obligation to safeguard our land for future generations,” Senator Menendez said. “I look forward to continuing this important partnership as we work to protect the Jersey Shore, safeguard the Highlands, create clean energy jobs and ensure that our children grow up in a green and safe environment,” Menendez said.\n\nSenator Menendez’s environmental and conservation leadership extend well beyond New Jersey. Around the country he is known as a champion for protecting the Alaska National Wildlife Refuge, the Tongass National Forest, Utah Lands, the Rocky Mountain Ecosystem, for cleaning up Superfund and Toxic sites, stopping air pollution from coal, and protecting our drinking water and waterways.\n                                                                                                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=33420ac5-b5ba-409d-8bbd-379dd6919d8a,\"AFTER MAJOR HEALTH INSURANCE REFORM VOTE OVER THE WEEKEND, MENENDEZ TOUTS IMMEDIATE BENEFITS OF BILL\n                    \n                            Among immediate benefits: Coverage for pre-existing conditions; increased Rx drug coverage for 227,000 NJ seniors; eliminating insurance coverage limits; tax credit to keep insurance affordable for 107,000 NJ small businesses\n                    \n                      November 23, 2009\n                     \n\n<!--\n /* Font Definitions */\n @font-face\n\t{\"\"Cambria Math\"\";\n\tpanose-1:2 4 5 3 5 4 6 3 2 4;}\n@font-face\n\t{\n\tpanose-1:2 15 5 2 2 2 4 3 2 4;}\n@font-face\n\t{\"\"Lucida Sans\"\";\n\tpanose-1:2 11 6 2 4 5 2 2 2 4;}\n /* Style Definitions */\n p.MsoNormal, li.MsoNormal, div.MsoNormal\n\t{\n\tmso-style-parent:\"\"\"\";\n\tmargin:0in;\n\tmargin-bottom:.0001pt;\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";\n\ttext-decoration:underline;\n\ttext-underline:single;}\na:visited, span.MsoHyperlinkFollowed\n\t{\n\tcolor:purple;\n\ttext-decoration:underline;\n\ttext-underline:single;}\n.MsoChpDefault\n\t{\n\tfont-:10.0pt;}\n@page Section1\n\t{:8.5in 11.0in;\n\tmargin:1.0in 1.0in 1.0in 1.0in;}\ndiv.Section1\n\t{page:Section1;}\n /* List Definitions */\n @list l0\n\t{}\n@list l0:level1\n\t{\n\ttext-indent:-.25in;}\n@list l0:level2\n\t{\n\ttext-indent:-.25in;\"\"Courier New\"\";}\n@list l0:level4\n\t{\n\ttext-indent:-.25in;}\n@list l0:level5\n\t{\n\ttext-indent:-.25in;}\n@list l0:level6\n\t{\n\ttext-indent:-.25in;}\n@list l0:level7\n\t{\n\ttext-indent:-.25in;}\n@list l0:level8\n\t{\n\ttext-indent:-.25in;}\n@list l0:level9\n\t{\n\ttext-indent:-.25in;}\nol\n\t{margin-bottom:0in;}\nul\n\t{margin-bottom:0in;}\n-->\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:10.0pt;\"\"Times New Roman\"\",\"\"serif\"\";}\n\nHOBOKEN – Late on Saturday,\nhealth insurance reform cleared a major hurdle in the U.S. Senate, as the\nSenate voted to begin the amendment process on the bill. U.S. Senator Robert\nMenendez (D-NJ), a member of the crucial Finance Committee, voted in favor of\nbeginning the debate. Today he spoke at Hoboken University Medical Center about\nthe prospects for the legislation and about the benefits of the bill that will\nbecome available to families shortly after reform is enacted into law. Included in the\nbenefits of the bill that would available quickly are a new program to ensure\nthat those with pre-existing conditions will have coverage; an elimination of\nhalf of the prescription drug cost “donut hole” for seniors, which could\nbenefit 227,000 New Jersey seniors; a prohibition of annual and life time\nlimits on insurance coverage; a prohibition of insurance companies from\ndropping existing coverage because of legitimate claims; free preventive and\nwellness benefits, such as colonoscopies for seniors; and allowing young adults\nto stay on family insurance plans until the age of 26. “Saturday’s vote was\na major milestone as we try to deliver the protections that health insurance\nreform will bring, but it won’t be the last,” said Senator Menendez. “There\nwill be more ups and downs, highs and lows – sometimes on a daily basis –\nthroughout the rest of this process, as there have been up to this point. But\nthe bottom line is that sometime early next year, we will stand with President\nObama as he signs a landmark health insurance reform bill into law, and in\ndoing so, we’ll be standing with families all across this state and country who\nno longer will have a constant, day-to-day worry about a tug-of-war with their\ninsurance company.b>“People in this state\nand across the country have heard plenty of fabrication and fear about what\nhealth insurance reform would mean. But I want them to know the facts. I want\nthem to know that there in much this bill that would be available within months\nand would bring them health insurance security and relief from skyrocketing\ncosts. Coverage for pre-existing conditions, protection against insurance companies\ndropping your coverage, an elimination of insurance coverage limits,\nprescription drug coverage for seniors – these and other crucial reforms will\ngo into effect quickly, and families can stay healthier and more prosperous\nbecause of them.” \nNEW\nJERSEY IMPACT OF HEALTH INSURANCE REFORM’S IMMEDIATE BENEFITS:\nProposals\nimplemented in 2010 and 2011 will produce real benefits for:\n·         Families: The 8.7 million residents of New\nJersey will benefit as reform: \n \nEnsures consumer protections\n      in the insurance market. Insurance companies will no longer be able to place lifetime limits on\n      the coverage they provide, use of annual limits will be restricted, and\n      they will not be able to arbitrarily drop coverage. \nCreates immediate options for\n      people who can’t get insurance today. Reform will establish a high-risk pool to enable\n      people who cannot get insurance today to find an affordable health plan. \nEnsures free preventive\n      services. 41 percent of New Jersey\n      residents have not had a colorectal cancer screening, and 22 percent of\n      women over 50 have not had a mammogram in the past two years.2 Health insurance reform will ensure that people can access preventive\n      services for free through their health plans. It will also invest in a\n      prevention and public health fund to encourage prevention and wellness\n      programs. \nSupports health coverage for\n      early retirees. An estimated 119,000 people\n      from New Jersey have early retiree coverage through their former\n      employers, but early retiree coverage has eroded over time.3 \n      A reinsurance program would stabilize early retiree coverage and provide\n      premium relief to both early retirees and the workers in the firms that\n      provide their health benefits.  This could save families up to\n      $1,200 on premiums.\n\n·         Seniors: New Jersey’s 1.3 million Medicare\nbeneficiaries4 will benefit as reform:\n \nLowers premiums by reducing\n      Medicare’s overpayments to private plans.  All Medicare\n      beneficiaries pay the price of excessive overpayments through higher\n      premiums – even the 89 percent of seniors in New Jersey who are not\n      enrolled in a Medicare Advantage plan.5 A typical couple in\n      traditional Medicare will pay nearly $90 in additional Medicare premiums\n      next year to subsidize these private plans.6 Health insurance\n      reform clamps down on these excessive payments. \nReduces prescription drug\n      spending.  Roughly 227,000\n      Medicare beneficiaries in New Jersey hit the “doughnut hole,” or gap in\n      Medicare Part D drug coverage that can cost some seniors an average of\n      $4,080 per year.7 Reform legislation will provide a 50 percent\n      discount for brand-name drugs in this coverage gap. \nCovers free preventive\n      services. Currently, seniors in\n      Medicare must pay part of the cost of many preventive services on their\n      own. For a colonoscopy that costs $849, this means that a senior must pay\n      $1978  – a price that can be prohibitively expensive.\n      Under reform, a senior will not pay anything for that colonoscopy, or for\n      any other recommended preventive service. A senior will also get free\n      annual wellness visits to his or her provider, with a personalized\n      prevention plan to remain in good health.\n\n·         Small businesses: While small businesses make up\n80 percent of New Jersey’s businesses, only 60 percent of them offered health\ncoverage benefits in 2008.9  107,000 small businesses in New Jersey\ncould be helped by a small businesses tax credit proposal that makes premiums\nmore affordable.10 And these small businesses would be exempt from\nany employer responsibility provisions. \n·         States: State budgets will be relieved from\nrising health care costs as reform:\n \nReduces state employee\n      premiums. Coverage would immediately be\n      expanded to the uninsured, decreasing the amount of uncompensated care\n      costs that gets shifted to the premiums of state employees. For states\n      that provide early retiree health benefits to their state employees, a\n      reinsurance program would provide premium relief of up to $1,200 per\n      family policy per year for all employees. \nReduces uncompensated care. Right now, providers in New\n      Jersey lose $1.1 billion in uncompensated care each year,11 which states subsidize at least in part. Instead, under reform,\n      uncompensated care would begin to be reduced immediately as more\n      uninsured people gain coverage.\n\n2Behavioral Risk\nFactor Surveillance System Survey Data. Atlanta, Georgia: U.S. Department of\nHealth and Human Services, Centers for Disease Control and Prevention, 2007.3 Kaiser Family Foundation. 2009 Employer Health Benefits Survey.4Kaiser State Health Facts. http://www.statehealthfacts.org/comparetable.jsp?ind=353&cat=7.5 Kaiser State Health Facts. http://www.statehealthfacts.org/comparetable.jsp?ind=353&cat=7.6 Rick Foster, Office of the Actuary, Centers for Medicare and\nMedicaid Services. Letter to Congressman Stark, June 25, 2009.7 Office of the Actuary. Centers for Medicare and Medicaid Services.8 Centers for Medicare and Medicaid Services.9 Center for Financing, Access and Cost Trends, AHRQ, Medical\nExpenditure Panel Survey - Insurance Component, 2008, Table II.A.2.10 Center for Financing, Access and Cost Trends, AHRQ, Medical\nExpenditure Panel Survey - Insurance Component, 2008.11 Hospital uncompensated care cost is estimated using a GAO model\nand the Hospital Cost Reports. Total uncompensated care is computed as hospital\nuncompensated care divided by 63% (Hadley and Holahan’s study on “The Cost of\nCare for the Uninsured” for Kaiser in 2004 found that hospitals account for 63%\nof total uncompensated care). Data expressed in 2009 dollars using Centers for\nMedicare and Medicaid Services, “National Health Expenditure Data.”\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=695289bf-975b-48c6-b776-2058474f3ed9,\"MENENDEZ AFTER FIRST SENATE HEALTH INSURANCE REFORM VOTE: DEBATE WILL BE REVEALING\n                    \n                            60-39 vote allows legislation to proceed to debate\n                    \n                      November 21, 2009\n                     Video of Menendez’s speech prior to vote: http://www.youtube.com/watch?v=0nYDQbvTK6o  WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Finance Committee, tonight voted in favor of proceeding to debate on the health insurance reform bill and released the following statement after the measure passed with the necessary 60 votes:\n“Each step we take toward health insurance reform brings families closer to the type of health insurance security and relief from ballooning costs that will prolong lives, protect paychecks and cut the budget deficit. Tonight was a major one of those steps, though there are a number that still lie ahead. With dozens of my colleagues not even willing to work on this bill constructively through our democratic process, this vote laid bare who is for change and who is for more of the same at any cost. The American people can look at this vote and the forthcoming debate and tell clearly who stands on the side of American families counting on their insurance to be there when they need it the most and who wants to protect the insurance companies no matter what. Some of my colleagues will seek to address their concerns about this bill with constructive ideas, but others who have no new ideas and merely want to defend the status quo will instead try to wreak havoc with the tired, old fabrication and fear tactics used for generations to protect special interests. In the end, the American people will understand who takes their struggles with insurance companies seriously and who is only serious about protecting insurance company profits. I believe the voices of families who just want for a fighting chance against insurance company bureaucrats will prevail and we will finally have health insurance reform.”\nVideo of Menendez speech prior to tonight’s vote: http://www.youtube.com/watch?v=0nYDQbvTK6o.\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=caf93929-f7b4-430e-bd9d-65677ee6f04f,\"MENENDEZ ON USDA DISCRIMINATION AGAINST HISPANIC FARMERS: NEED FOR LAWSUIT SETTLEMENT IS A MATTER OF FAIRNESS AND COMMON SENSE\n                    \n                            Video of Menendez’s floor statement in the Senate: http://www.youtube.com/watch?v=y7q055renrI\n                    \n                      November 19, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) yesterday stood on the Senate floor to urge the Administration to provide a settlement in the USDA discrimination lawsuit brought by Hispanic Farmers. Senator Michael Bennet (D-CO) stood in support of the farmers:  “Decades of indifference and discrimination in lending practices at the United States Department of Agriculture have made it difficult for minority farmers – specifically Hispanic farmers -- to make a living at what they love to do – leaving many no choice but to leave the farms and ranches they have tended all their lives.”\n “These hard-working farmers, Hispanic families -- who bought a piece of land – built a family farm -- their small piece of the American dream – were wrongly denied loans and other benefits in violation of the Equal Opportunity Act by county committees that review Farm Service Administration credit and loan applications for approval..”\n“Consequently, these farmers filed suit in the hope that it would change the discriminatory practices at the USDA – how it treated America’s minority farmers -- but under the Bush Administration nothing changed…”\nEarlier this year $1.25 billion was allocated in the Fiscal Year 2010 budget to settle similar outstanding lawsuits by African American farmers in the Pigford v Glickman suit. Earlier this year, in letter to the president (http://menendez.senate.gov/pdf/06202009USDAHispanicFarmersLetter.pdf), eight Senators reminded President Obama that the Food, Conservation and Energy Act of 2008 calls on the administration to resolve outstanding discrimination lawsuits against the USDA brought by Hispanic and other farmers in an expeditious and just manner.The video of Senator Menendez’s remarks on the Senate floor are available here: http://www.youtube.com/watch?v=y7q055renrI\nFull text of speech in the Senate floor, as prepared for delivery:\nIntroduction: The IssueMr. President, it is no secret that decades of indifference and discrimination in lending practices at the United States Department of Agriculture have made it difficult for minority farmers – specifically Hispanic farmers -- to make a living at what they love to do – leaving many no choice but to leave the farms and ranches they have tended all their lives.In 2000, one hundred and ten Hispanic farmers brought a lawsuit against the USDA for the same egregious discriminatory practices that resulted in an historic settlement with African-American farmers…\n…and for eight long years -- under the last administration thousands of Hispanic farmers who joined the suit waited and waited and waited for justice. Some of them died waiting and will never be made whole.\nAnd -- for eight long years -- the Bush administration did nothing.\nThese hard-working farmers, Hispanic families -- who bought a piece of land – built a family farm -- their small piece of the American dream – were wrongly denied loans and other benefits in violation of the Equal Opportunity Act by county committees that review Farm Service Administration credit and loan applications for approval.\nConsequently, these farmers filed suit in the hope that it would change the discriminatory practices at the USDA – how it treated America’s minority farmers -- but under the Bush Administration nothing changed…\n…The discrimination continued.\nThen, something did change. We got a new President and a new Secretary of Agriculture who described past practices at the USDA as “a conspiracy to force minority and socially disadvantaged farmers off their land.”\nConsequently, the Administration committed to appropriate $1.25 billion in the Fiscal 2010 budget to settle some of the outstanding discrimination lawsuits -- but not all of them…\nTo date, Hispanic farmers, women, and Native-Americans have not yet seen a settlement.\nMr. President, we need to remedy this situation once and for all. The new USDA Secretary needs to make these farmers whole.\nSecretary Vilsack has created a task force to review the department’s civil rights complaints and announced new efforts for the USDA to end any and all discriminatory practices, and I commend the Secretary for addressing this lingering issue. But more needs to be done.\nAs I said, along with seven of my Senate colleagues, in a letter to the President:\n“The USDA’s corrective role in this instance has been clearly laid out, and there remains no legitimate reason to delay action for any of the affected groups.”\nThe fact is, eight years of a do-nothing Republican administration -- that earned the USDA the designation of “the last plantation” -- put people’s lives and livelihoods at risk.\nMr. President, we simply cannot wait any longer.\nCertainly Alfonso and Vera Chavez cannot wait any longer.\nThe Fresno Bee reported last week that Mr. and Mrs. Chavez stopped farming seven years ago when they could not get a USDA loan.\nIn fact, they said that they not only could not get the loan, but were discouraged from applying and -- even worse – they believe they were given misinformation so they would not apply.\n“It was like they didn’t want us to have the money,” Vera Chavez told the reporter.\nMr. and Mrs. Chavez owned 300 acres. They sold off 200, shut down their packing house, and leased the remaining 100 acres to survive.\nVera said – and I quote: “It’s why we’ve been hanging on to those 100 acres, so my children and grandchildren can have a little piece of the land we worked so hard to get...\n“I’m not going to give up. But we have written so many letters and had so many meetings and nothing seems to be moving forward.”\nMr. President, we need to move this forward. It is about fairness – about doing what’s right.When we see discrimination in any form -- when those who have been wronged because of their race, gender, or heritage are forced to sell what they have worked so hard to build -- abandoned by an administration that cared more about Wall Street than Main Street – we have to make things right for them – for people like Vera and Alfonso Chavez.We need to make sure they can keep their farms and give them back their lives.\nA Matter of Fairness and Common SenseMr, President, all theses farmers are asking is a common sense solution sooner rather than later because they have waited long enough.\nMr. President, I urge Secretary Vilsack to ensure all farmers will be granted the same consideration so they can begin to rebuild their lives and their farms this year.\nDespite clear language in Section 14011 of the Food, Conservation, and Energy Act of 2008 which urges the Administration to settle lawsuits brought by Hispanic and other farmers…\n…the Administration clearly needs to assure Hispanic farmers – many of whom have come to me to ask for help -- that it fully intends to settle these cases consistent with Section 14011 of the 2008 Farm Bill.\nWe simply cannot continue down this winding road to nowhere.\nConclusion: Farmers in NeedTo ignore the plight of the thousands of Hispanic farmers – families who seek nothing more than justice – who want  only a chance to keep the farms and ranches they worked so hard for all of their lives -- is just wrong.\nMr. President, for eight years thousands of families like the Chavezes were ignored.\nNow, we need to change that. We need to move quickly to resolve what is clearly and patently unfair and unjust.\nWe will never turn the page on the past discriminatory policies within the USDA until all victims – ALL victims – every last one of them – is made whole for the loss of their land, their dignity, their hope for a decent life for themselves and their families.\nLet us move quickly to give them the chance they have waited for – the chance to rebuild their lives.\nWith that, Mr. President, I yield the floor.\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=46c8eb0e-7656-4a6f-87a5-e9d417ca5ee1,\"MENENDEZ OPENING STATEMENT ON RESTORING AMERICAN FINANCIAL STABILITY ACT IN BANKING COMMITTEE\n                    \n                            Video available here: http://www.youtube.com/watch?v=r2NJniYMNh0\n                    \n                      November 19, 2009\n                     WASHINGTON – This morning, as the Senate Banking Committee began work on the Restoring American Financial Stability Act to implement accountability on Wall Street, U.S. Senator Robert Menendez (D-NJ) delivered the following opening statement, as prepared for delivery (video: http://www.youtube.com/watch?v=r2NJniYMNh0):\nMr. Chairman, let me join my colleagues in commending you for the hard work you have done, for your perseverance -- holding over 50 hearings the last year alone, and for the bold leadership you have shown on forging a long-overdue, common sense regulatory reform package.\nIt is time to corral the Wall Street bulls who saw red and ran wild with America’s money.\nBetter accountability and reform of the SEC and other regulatory agencies will finally slap a padlock on the gate to protect American families from another stampede of greed and overindulgence that – in many ways – cost them their jobs and trampled this economy into the ground.\nThis legislation will prevent that from ever happening again. The creation of a Consumer Financial Protection Agency would protect consumers from hidden fees, abusive terms, and deceptive practices.\nA new independent agency with a board of regulators would be empowered to find abuses in the system before they metasta, and could require companies that threaten the economy to divest some of their holdings. Tough new rules for transparency and accountability from investment advisors, financial brokers, and credit rating agencies that would protect investors and businesses. Provisions that impose new capital and leverage requirements would prevent large, complex financial conglomerates from bringing the system to its knees.\nThey would require industry to provide its own capital injections, update the Fed’s lender-of-last-resort authority, and establish rigorous standards and supervision to protect consumers, investors, and businesses.\nAll of these provisions send a loud, clear message to struggling families in New Jersey – families who lost their homes, their jobs, their businesses, their health care, and what little investments they might have had – that someone will be watching out for them. It lets them know that someone is looking out for their interests.\nMr. Chairman, your proposed regulatory reforms do exactly that. They will let families in my state and every state know that there will never be another Bernie Madoff. That it will not take 16 years for regulators to recognize a Ponzi scheme when it is right in front of them. That there will be effective financial regulators and strong independent inspectors. That average hard-working families will not be taken advantage of again.\nSo many families I have spoken to in New Jersey tell me the same story. They assumed government regulators were on the job when they were told by unscrupulous mortgage lenders:\n“Congratulations, you qualify for a mortgage – no money down. We’ll get you an adjustable interest rate; but you’ll never see the adjustment – the property will appreciate and you’ll sell it long before the rate goes up. Just sign here.”\nAnd thousands did, Mr. Chairman. They signed on the dotted line believing it had to be legitimate, and the sad truth is that it was – unethical perhaps – but legal and unregulated. Hard-working families with no financial background were – in many cases – unwittingly lured into overextending themselves.\nI have heard from so many families that their only thought was: “Isn’t it great? They said we qualify.”\nThey assumed they did, that their credit was good enough if the lenders said it was. They assumed the government would not have allowed banks and financial institutions to lend them money if they did not think they could pay it back.\nThey did not know that their mortgages, their loans were being bundled, sold, and resold to hedge funds and international investment firms with no regard for them, their investment, their ability to pay back their loans or their  ability to stay in their homes.\nNow those families are facing foreclosure. They’re facing bankruptcy. They are struggling in no small part because Wall Street was allowed to take bigger and bigger risks with their money.\nTo add insult to injury, Mr. Chairman, they see those who bought their mortgages – those deemed “too big to fail” – collect millions in bonuses and billions in bailouts. I say the American people are too big to fail, and it’s time we give them the protection they need.\nThe business of business may be the bottom line, but the business of government is always protecting people, hard-working families who ask nothing more than a level playing field. An essential part of this economic recovery must be the knowledge that the bulls on Wall Street will never be let loose again to run wild on Main Street, that there will be responsibility and accountability in our financial system.\nThis legislation takes significant steps to do just that. It restores consumer confidence. It strengthens the foundations upon which the economy is built so that we can continue to grow and create jobs. It changes the regulatory culture of benign neglect and the blind-eye, wink-and-a-nod policies of previous administrations that believed all we need to do is get government off of our backs and the private sector will take care of itself.\nWell, they were right. The private sector took care of itself at the expense of thousands of families in my state of New Jersey and millions across this nation.\nIt’s time for transparency, Mr. Chairman. It’s time to increase the enforcement budget at the SEC. It’s time to help innocent victims of fraud and Ponzi schemes recoup their losses through the Security Protection Investor Corporation (SIPC) or other means. It’s time for accountability and regulations that protect American families while allowing our market based economy to run smoothly – but not run amok. These are necessary reforms and I believe they are long overdue.\nMr. Chairman, there are some structural and regulatory areas I believe need to be strengthened, as well as additional consumer and investor protections, beyond what this legislation calls for, and I will be offering amendments that I hope will make this legislation even better. I look forward to working with you and members of the Committee to finalize regulatory reform to protect American families. Again, thank you, Mr. Chairman, for your leadership and aggressive action on this issue.\n                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2dc59cd4-352b-4333-abc3-cab7404378b1,\"LAUTENBERG AND MENENDEZ ANNOUNCE MORE THAN $1.2 MILLION IN FEDERAL RECOVERY FUNDING FOR NEW JERSEY’S CLEAN ENERGY JOB MARKET\n                    \n                            Additional $3.9 Million in Regional Clean Energy Economy Program to Benefit New Jersey, Northeast Region \n                    \n                      November 19, 2009\n                     WASHINGTON – Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that New Jersey has been awarded more than $1.2 million in new federal funding from the American Recovery and Reinvestment Act (ARRA) to make clean energy jobs more accessible to New Jersey’s workforce.  The Recovery Act, which Sen. Lautenberg helped author as a member of the Senate Appropriations Committee, was signed into law by President Obama in February. “This Recovery Act funding will help New Jersey adapt to the rapidly growing clean energy industry and make green jobs more accessible to our workforce,” stated Lautenberg.  “New Jersey’s clean energy marketplace is one of the most progressive in the country and an important foundation for the future of our economy.” \n“A clean energy economy is an economy that generates new jobs, new economic sectors and helps clean the air we breathe,” stated Menendez.  “It brings tremendous potential for 21st Century economic security, and we have to ensure that people are properly prepared to get these jobs as they become available. Our state in particular is a leader in clean energy innovation, and there is tremendous potential for jobs right here in the Garden State. This is an important investment in our workforce and in long-term economic stability for our families.”\nThe New Jersey Department of Labor and Workforce Development will receive $1,249,995 in ARRA funding under the State Labor Market Information (LMI) Improvement grant program.  The funding will help job seekers identify new pathways to careers within emerging clean energy industries by supporting the collection, analysis and dissemination of labor market information and enhance the labor exchange infrastructure. \nNew Jersey will also participate in a multi-state consortium of northeastern states that has been granted $3.9 million in Labor Market Information (LMI) Improvement grants.  New Jersey along with New York, Connecticut, Rhode Island, Vermont, Maine, Massachusetts and New Hampshire will use the funding to work together and gather information that may have a regional, multi?State, or national impact.                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=23181d1c-bf9c-4c78-9120-762b25febded,\"MENENDEZ CALLS FOR FEDERAL INVESTIGATION INTO U.S. OPERATIONS OF OIL DRILLING COMPANY INVOLVED IN AUSTRALIA SPILL\n                    \n                            Energy Committee to hold hearing tomorrow on coastline drilling\n                    \n                      November 18, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee, today sent a letter to Secretary of the Interior Ken Salazar urging an investigation into the safety and extent of Seadrill Limited operations along U.S. coastline. Seadrill was the drilling contractor on the oil rig off the coast of Australia that recently failed, causing one of the worst environmental disasters in Australia’s history. According to their website, Seadrill currently has at least one rig in the Gulf of Mexico.\nIn his letter, Menendez raises concerns about the possibility of oil spills, even where the latest drilling technology is employed. Tomorrow, the Energy Committee will hold a hearing on coastline drilling.\n“We have heard much conjecture by industry that oil drilling accidents cannot happen here in the United Sates because the technology is too advanced,” wrote Menendez. “As a firm that is considered an international leader in drilling, with what is considered one of the “most modern fleets in the world” – Seadrill has proven that accidents do, in fact, happen.  It remains unclear exactly what caused the accident in the Timor Sea, and pending a comprehensive investigation being conducted by Australian authorities, it is clear that we must do all we can to ensure that this kind of tragedy is not repeated on our coasts.\n“It is imperative that we understand the extent of Seadrill’s operations here in the United States and ensure they are operating as safely as possible.  I therefore request a full investigation of this firm and a careful review of Seadrill’s compliance with American safety standards.”\nPDF of letter to Secretary Salazar: http://menendez.senate.gov/imo/media/doc/20091118ltr_OilRigs.pdf\n\nText of full letter:\nNovember 18, 2009\nThe Honorable Ken SalazarSecretary, US Department of the Interior1849 C Street, NWWashington, DC 20240\nDear Secretary Salazar:\nI am writing to inquire about the domestic offshore energy production activities of the Norwegian-based multinational drilling company called Seadrill Limited (“Seadrill”).  As you are aware, Seadrill is the operator of the Australian oil rig that blew out, spilled millions of gallons of oil for over 10 weeks, and then caught fire before finally being plugged on November 3.  This spill in the Timor Sea was one of Australia’s worst environmental disasters in history.  We know that Seadrill is operating at least one rig in the Gulf of Mexico and therefore I am requesting a full investigation of Seadrill and its activities in American waters, so that a similar accident is not repeated here at home. \nWe have heard much conjecture by industry that oil drilling accidents cannot happen here in the United Sates because the technology is too advanced.  As a firm that is considered an international leader in drilling, with what is considered one of the “most modern fleets in the world” – Seadrill has proven that accidents do, in fact, happen.  It remains unclear exactly what caused the accident in the Timor Sea, and pending a comprehensive investigation being conducted by Australian authorities, it is clear that we must do all we can to ensure that this kind of tragedy is not repeated on our coasts.\nIt is imperative that we understand the extent of Seadrill’s operations here in the United States and ensure they are operating as safely as possible.  I therefore request a full investigation of this firm and a careful review of Seadrill’s compliance with American safety standards.\nThank you and I look forward to continue working with you to protect our oceans and coasts.\nSincerely,\nRobert MenendezUnited States Senator\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e8562f1d-90ab-45e5-834e-27d1d5cc13c2,\"SEN. MENENDEZ ANNOUNCES $750,000 FOR ENERGY EFFICIENCY IN CAMDEN CITY THROUGH PROGRAM  HE CREATED\n                    \n                            Author of the Energy Efficiency and Conservation Block Grant program worked with  Camden City officials to secure funding. Economic Recovery Package funds will purchase energy-efficient LED Street Lights.\n                    \n                      November 17, 2009\n                     WASHINGTON – United States Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee, today announced that the City of Camden will receive $750,000 through an energy efficiency program he created in Congress. This funding is part of the American Recovery and Reinvestment Act-funded Energy Efficiency and Conservation Block Grants (EECBG) program, which Menendez created through legislation in 2007 and fought to fund while crafting the economic recovery package. It provides municipalities and counties with the resources to support energy-saving initiatives and improve energy efficiency in transportation, buildings, and other sectors.\nAfter the President signed the legislation in February, Sen. Menendez and staff contacted eligible communities throughout the state to inform them of the program and offer assistance in the application process.  Today, the Department of Energy released $750,000 for Camden City’s EECBG allocation. Camden City’s Public Works department plans to use the funds to install energy efficient, light emitting diode (LED) lighting in the City’s street lights. Ultimately, the City anticipates slashing utility costs related to street lighting by approximately 70%.\n“Energy efficiency is an important part of our economic recovery and long-term economic security.  This program puts families back to work, reduces energy costs and provides tax relief into the future while helping to clean the air we breathe,” said Sen. Menendez.  “As municipalities struggle with budget constraints brought about by the recession, I am pleased to deliver federal resources that helps local officials trim their budgets, while bolstering the energy efficiency sector and setting our nation on track for a clean energy future.”\n“This is a win-win for everyone.  Not only will the City of Camden reduce its energy consumption by a significant amount but the savings will also help us reduce one of the costliest items in the City’s budget,” said Camden City Mayor Gwendolyn A. Faison.\nIn total, the economic recovery package appropriated $3.2 billion to communities across the country for energy efficiency and conservation activities.  The State of New Jersey is eligible for a total of $75.5 million under the EECBG program. \n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0451bd85-4102-4293-bcac-e316291ff9f1,\"CHAIRMAN OF FOREIGN ASSISTANCE SUBCOMMITTEE APPLAUDS COMMITTEE APPROVAL OF FOREIGN ASSISTANCE REFORM BILL\n                    \n                            Menendez is an original co-sponsor of legislation\n                    \n                      November 17, 2009\n                     WASHINGTON – Upon passage of the Foreign Assistance Revitalization and Accountability Act of 2009 (S. 1524) out of the Senate Foreign Relations Committee today, U.S. Senator Robert Menendez (D-NJ), who is chairman of the subcommittee with jurisdiction over foreign assistance and a principal author of the legislation, released the following statement:\n“This is one of the most significant pieces of foreign assistance legislation that has passed out of the Senate Foreign Relations Committee in decades. I am proud that this is truly a bi-partisan bill, developed in a collaborative manner and that it includes input from a wide range of voices. These programs are critical to millions of people around the world, they contribute to our mutual economic health, and are in the direct national security interests of the United States. Furthermore, this legislation implements strong, new accountability and oversight provisions to ensure that foreign assistance is being used as intended and delivering a return on our investment.\n“I remain committed to continue to push for a strong, independent foreign assistance voice in the U.S. government and to ensure that USAID is an empowered, innovative, and first-class development agency.  “Today marks an important step, but it is just the beginning. I am committed to continue working with the Administration to build up our foreign assistance programs, not just to where they used to be, but to where they need to be.”\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a4984ea6-ae69-4c08-ab98-73b44fb5f51c,\"MENENDEZ HELPS SECURE NEARLY $10 MILLION FOR MILITARY OPERATIONS IN NJ\n                    \n                             Funding from Military Construction and Veterans Affairs Appropriations Bill finance important military complex\n                    \n                      November 17, 2009\n                     WASHINGTON – Today, the U.S. passed the Military Construction and Veterans Affairs Appropriations Bill, including $9,700,000 in funding for New Jersey Air National Guard’s 108th Air Refueling Wing, which U.S. Senator Robert Menendez (D-NJ) worked to secure. The Senate now awaits the legislation to be reconciled with the House of Representatives version before final passage.\n“This funding will help us ensure our Air National Guard is ready to serve and protect our nation, while creating jobs in our state,” said Menendez. “Our military deserves our strong support not just on the battlefield, but also where they live and train here at home. I'm proud to have helped secure this funding and thrilled to see New Jersey facilities one step closer to receiving this critical support.” \nDescription of the project that Menendez helped secure funding for include:\nBase Civil Engineering Complex -- $9,700,000\nRecipient: 108th Air Refueling Wing, Joint Base McGuire-Dix-Lakehurst, NJDescription: This project will construct properly d and adequately configured facilities to house the base civil engineering administrative, maintenance, and training functions to ensure readiness. Currently, the 108th Civil Engineering Squadron activities are scattered across six separate facilities.  Included in the six facilities are four World War II temporary wood frame structures which are inadequate to support mission requirements.\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=82490845-5acf-4ac3-9720-24503db4c74f,\"MENENDEZ SECURES SENATE APPROVAL FOR STATE VETERANS CEMETERIES FUNDING INCREASE\n                    \n                            As state veterans cemeteries are stretched thin, $4 million for construction and upkeep applauded by NJ VFW\n                    \n                      November 17, 2009\n                     WASHINGTON – With federal veterans cemeteries in states like New Jersey already at capacity and state veterans cemeteries in many cases running out of room or becoming dilapidated, U.S. Senator Robert Menendez (D-NJ) has successfully secured Senate approval of a $4 million grant to help maintain and construct new state veterans cemeteries across the nation. The funding was included as an amendment to the Military Construction and Veterans Affairs Appropriations bill, which gained passage in the Senate today.\nWith the aging of the WWII generation and with American troops currently fighthing two wars, veterans cemetery construction and upkeep is particularly important, but funding levels have not kept up with need. Menendez has been a champion of this cause, having previously sought and secured the budget authority that paved the way for this funding and having authored separate legislation to allow veterans’ families to be buried next to their loved ones in veterans cemeteries.\n“Our veterans have honored us by putting their lives on the line in service of our nation. Truly, the very least we can do for them is to ensure that they have a dignified final resting place,” said Menendez. “The care we put into veterans cemeteries should appropriately reflect our gratitude for the tremendous service and sacrifice they have made for our nation. It has been a priority of mine to secure this funding, and I applaud my Senate colleagues for recognizing its importance.”\n“Senator Menendez has been a great advocate for veterans across the country, particularly here in New Jersey,” said Al Bucchi, Legislative Director for the Veterans of Foreign Wars, Department of New Jersey and member of the national VFW legislative committee. “This is especially true when it comes to state veterans issues, such as the funding of state veterans cemeteries. This is an issue on which we have had to fight for many years, and we applaud the senator for all his work.”\nThe appropriations bill now heads to a conference between the House of Representatives and Senate before final passage. Menendez will work to ensure that the state veterans cemeteries provision stays in the legislation throughout the process.\n                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=84d62312-4df9-41ed-93be-2788995c385e,\"MENENDEZ, LAUTENBERG, LOBIONDO HAIL EMERGENCY DECLARATION FOR NJ AREAS DAMAGED BY NOR'EASTER\n                    \n                            Thousands of New Jersey residents affected; various counties to receive state aid\n                    \n                      November 16, 2009\n                     NEW JERSEY – Today, U.S. Senators Robert Menendez and Frank Lautenberg and Congressman Frank LoBiondo (NJ-2) praised Governor Jon Corzine’s swift action in issuing an emergency declaration for the areas hit by last week's Nor'easter.  \nThe Jersey Shore was hit hard, causing beach erosion, destroying beach replenishment projects, flooding homes and businesses and displacing huge mounds of sand that blanketed inland side streets, sidewalks and driveways.\n“It was evident during my visit to Cape May and Atlantic Counties on Friday that the storm would cause extensive damage along the Jersey Shore,\"\" said Senator Menendez. \"\"Families and businesses are struggling with property damage, and any significant setback to the Shore hurts our state's economy and jobs market. I applaud Governor Corzine for taking quick action. This declaration will allow municipalities to take action sooner and make their communities whole again for residents and businesses. Federal funding in the amount of $17.6 million for beach nourishment and protection had already been secured for many of the affected areas, and that will help prevent storm damage in the long term. The effects of the storm are a setback, but state funding will help in the restoration of these areas so that beach replenishment and construction projects can continue to protect area residents and the tourism industry.”\n\"\"The damage done to New Jersey by this storm was devastating. Families and businesses in the affected areas need help rebuilding their communities. The Governor's declaration is an important first step to giving the communities hit by this storm the tools they need to recover,\"\" said Sen. Lautenberg.\n“I appreciate Governor Corzine’s quick response that will enable local, state and federal resources to be immediately available for rebuilding efforts in South Jersey shore communities,” said Congressman Frank LoBiondo (NJ-02). “The recent storm has taken a significant toll on residents, property and small businesses in my district, causing millions of dollars in destruction, lost revenues and wages. For local communities and the state’s tourism-based economy, it is critical we rebuild what was lost and strengthen the existing shore protection projects to minimize damage from future storms.”\nThousands of New Jersey residents that live close to the shore as well as area businesses are regularly threatened by storms that can flood homes and damage businesses. Tourism to the Jersey Shore generates roughly 450,000 jobs and accounts for almost 11 percent of the state’s total employment.                                                                                                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=98ea20d3-b7a8-4fef-b799-f8f0de279dd8,\"CHAIRMAN OF SENATE FOREIGN ASSISTANCE SUBCOMITTEE REACTS TO NOMINATION OF USAID HEAD\n                    \n                      November 11, 2009\n                     WASHINGTON – President Barack Obama has nominated Dr. Rajiv Shah to lead the United States Agency for International Development (USAID). U.S. Senator Robert Menendez (D-NJ), Chairman of the Foreign Relations Subcommittee on International Development and Foreign Assistance, Economic Affairs, and International Environmental Protection, released the following statement:\n“For an agency sorely in need of strong leadership and independence, it was tremendously important for the president to make a nomination, and I am pleased that he has. Dr. Shah certainly has an impressive background, and as we consider his confirmation, I look forward to sitting down with him to discuss his ideas and intentions in detail.\n“Over the past 20 years, USAID has rarely been staffed with a top notch management team and has rarely been given the independence necessary to carry out its programs most effectively. In the next Administrator, not only do we have to confirm someone who can lead effectively, but that person must be given the freedom and authority to best implement USAID’s strategy. The next Administrator will be asked to run with a baton that has been dropped more often than it's been handed off successfully. I certainly hope that Dr. Shah's appointment marks the beginning of a departure from that tradition and will signal a new direction for an agency whose mission and mandate merits talent that is equal to the task.”\n                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=929850b9-4516-432f-bb21-31fca1d26165,\"ON DAY BEFORE VETERANS DAY, SENATOR MENENDEZ INTRODUCES BILL IN SUPPORT OF MILITARY FAMILY UNITY\n                    \n                            Military Families Act would adjust the status of immediate family members of active military service members to that of lawful permanent residents\n                    \n                      November 10, 2009\n                     WASHINGTON – Today, the day before Veterans Day, U.S. Senator Menendez (D-NJ) reintroduced his legislation that would grant lawful permanent residence status to the immigrant immediate family members of active members of the military and veterans. Under the Military Families Act (S. 2757), the Department of Health and Human Services would have the right to adjust the status of an individual to that of lawful permanent resident if the individual is a parent, spouse, child, son or daughter of an Armed Forces member who is serving or has served honorably in an active-duty status in the military, air or naval forces of the United States or the immediate relative of an Armed Forces member who died as a result of injury or disease incurred because of his or her service. The bill would also assist the sons and daughters of a Filipino World War II veteran who bravely served our country. The Military Families Act (S. 2757), was cosponsored by Senators Landrieu (D-La.), Inouye (D-HI), Durbin (D-IL), Gillibrand (D-NY), and Feingold (D-WI).\n\"\"We owe the men and women who risk their lives in service of our nation so much, and that should include the right to be united with their closest family members in our country on a permanent basis,” said Menendez. “A grateful nation shows gratitude for members of the military not just through statements and ceremonies on Veterans Day, which are important, but also in how we take care of military families. This bill will help ensure the families of those that have served our country with pride and valor don’t face unfair and unexpected deportation and are able to remain in this land they call home, close to their loved ones. As we prepare to celebrate Veteran’s Day, we keep in our prayers and thoughts those who have died while serving our nation and their family members. We also honor those that put their life on the life on our behalf. With this bill, we can show one measure of our appreciation for their service and sacrifice. “\n“While we can never repay the tremendous debt we owe the men and women who serve in our Armed Forces, we can certainly provide them with the opportunity to unite with their closest family members in our country on a permanent basis,” said Gillibrand. “These men and women and their families have sacrificed so much for our country.  They deserve the right to come together here on American soil.”\n“It is important that we  honor and reflect on the many sacrifices made so willingly by the brave men and women who fight and defend our freedoms.” said Medal of Honor recipient Senator Daniel K. Inouye. “Through this bill we will protect their family members and honor the sacrifices they make while their loved ones proudly serve our country. “\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=61f50129-f717-4355-bca3-d95dccb5f552,\"Bipartisan Group of Senators Condemns Brutal Attack of Dissident Blogger By Cuban Regime\n                    \n                      November 10, 2009\n                     WASHINGTON – On Friday, Cuban dissident blogger Yoani Sanchez and several colleagues were viciously attacked, beaten and thrown into waiting cars by plain-clothes state security agents as they walked to join a peaceful march against violence. Today, U.S. Senators Robert Menendez (D-NJ), George LeMieux (R-FL), Bill Nelson (D-FL), Ted Kaufman (D-DE), Chuck Grassley (R-IA), Kirsten Gillibrand (D-NY), and Frank Lautenberg (D-NJ), condemned the attacks. \n\n“I’m sure the irony of viciously beating a pacifist dissident on the way to a march for non-violence was lost entirely on the Castro regime. Once again, the dictatorship rears its ugly head in the form of physical violence and the suppression of human rights against its own people. This is yet another indication that despite all of the hope for change on the island, the regime continues to rule with an iron fist that crushes any seed of free speech or human rights. The Castro regime wants to have it both ways – they want a new relationship with the United States, but they also want to keep attacking their own people, silencing free speech and imprisoning dissidents just as they always have. This should not and cannot be. The Castro regime can’t continue to expect to get something without giving something in return, plain and simple,” said Senator Menendez.\n“This is yet another outrageous and unacceptable example that appeasing the Castro regime will not work. We cannot be silent, and we cannot ignore the actions of this oppressive regime as they continue to violate the basic human rights of its people.  We must continue standing with Cuban heroes like Yoani Sanchez and Oscar Elias Biscet and not with their oppressors,” said Senator George LeMieux.\n “The United States and the international community must stand together in support of those who peacefully exercise their basic rights and freedom of expression. We must have zero tolerance for repressive regimes and the tactics of intimidation,” said Senator Bill Nelson. “Yoani Sanchez has been a symbol of courage in one of the most dangerous press environments in the world, and I strongly condemn attempts by the government of Cuba to silence her.  If Cuba is ever to improve its standing with the community of nations, it must protect human rights for all people, including political dissidents, members of the press, and bloggers. I hope the Cuban government realizes that this act violates freedom of expression, and it is critical that the perpetrators of this crime are punished and justice is served,” said Senator Kaufman.  \n“The best judge of political freedom is for dissenting points of view to be freely expressed. Senseless acts like this make it difficult to believe that the Castro regime is willing to allow political and economic freedom for its people.  It’s time the Castro brothers allow the people of this rich nation to enjoy the civil rights and liberties that billions across the world already have,” said Senator Grassley.\n“The anti-freedom message sent by the Cuban government with last month’s denial of Ms. Sanchez’ exit request has been multiplied with the vicious physical attack on this internationally respected blogger.  Last month, I wrote to the Cuban Interests Section to ask the Cuban Government to allow Ms. Sanchez to come to the United States to accept Columbia University’s Maria Moors Cabot Prize, which is awarded for outstanding reporting on Latin America and the Caribbean.   Now, more than ever, I call on the Cuban Government to treat its journalists with respect,” said Senator Gillibrand.\n\n\n“Freedom of speech is a basic human right that Cuba must respect if it wants a future relationship with the United States.  Government-sponsored violence and intimidation cannot be tolerated and we have an obligation to speak out against these actions by the Cuban Government,” said Senator Lautenberg.\n\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ca403881-ee58-4b06-8008-6649fe088b03,\"Send a holiday greeting card to our service members\n                    \n                            Show your support for our troops through the Holiday Mail for Heroes Program\n                    \n                      November 10, 2009\n                     Now in its third year, the American Red Cross and Pitney Bowes Inc.\nhave joined forces to once again bring the Holiday Mail for Heroes\nprogram and provide Americans with the opportunity to extend holiday\ngreetings and thanks to service members, veterans and their families\nworldwide. \nLast year the program received more than 1.4 million cards for\nservice members, their families, and veterans, in communities around\nthe world. \nShare your words of support by sending a holiday greeting card to\nthe men and women who risk their lives in service of our nation through\nthe Holiday Mail for Heroes program.\nWhile we can never repay the tremendous debt we owe the men and women\nwho serve in our Armed Forces, we can certainly take the Holiday season\nas an opportunity to provide them with the support they need and\ndeserve.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a97f3e13-9139-4090-9373-c547fd36bfc2,\"LEGISLATION TO SPUR SOLAR POWER MANUFACTURING, CREATE 21ST CENTURY JOBS INTRODUCED BY SENS. MENENDEZ, STABENOW AND BENNET\n                    \n                             As U.S. slips behind China in solar manufacturing, bill would help transition to a clean energy economy\n                    \n                      November 9, 2009\n                     WASHINGTON – U.S. Senators Robert Menendez (D-NJ), Debbie Stabenow (D-MI) and Michael Bennet (D-CO) today introduced legislation to boost the manufacturing of solar power equipment and the job creation that accompanies it. Currently, a 30 percent Solar Investment Tax Credit (SITC) exists for the purchase or installation of solar power technology. Under the Solar Manufacturing Jobs Creation Act, equipment and facilities used to manufacture solar power technology would be added to the eligible property list for the SITC. Senators Menendez and Stabenow are members of the Senate Finance Committee.\n“By embracing and investing in promising clean energy technology, we have a golden opportunity to simultaneously address three of our biggest needs: job creation, lower energy costs and cleaner air,” said Senator Menendez. “This is the type of initiative that helps our economic recovery by creating new jobs, while laying the foundation for economic security in the long term. Right now, plenty of other nations, including China, are ahead of us in manufacturing solar power technology, which better positions them for economic strength in the 21st Century. We have always been a world leader in innovation, and it’s time that we grab this economic opportunity.”\n“Our companies continue to lead the way in solar manufacturing, creating good-paying jobs and laying the foundation for 21st century manufacturing,” said Stabenow. “As a member of the Senate Finance Committee, I co-authored the first-ever tax credit for manufacturers of advanced technologies in the recovery act. This bill will provide additional tax credits for solar equipment manufacturers that will help us win the global race to produce solar panels in the clean energy economy.”\n“When it comes to clean energy, America needs to lead the world, not follow in the footsteps of its foreign competitors,” said Bennet.  “We need to embrace forward-thinking policies that help American business harness the power of the sun to create new, good-paying jobs and help our economy recover.  This bill will take us one step further in building a new, clean energy economy that will power America for years to come.”\nIn the House, Rep. Mike Thompson (CA-01) plans on introducing companion legislation in the near future.\nThis legislation is needed for several reasons:\nThe U.S. is losing the global race for solar technology and manufacturing jobs. •    A decade ago, the U.S. produced more than 40% of the word’s solar photovoltaic (PV) cells.•    In 2008, the U.S. produced only 5% of the world’s solar cells. \nThe Solar Manufacturing Jobs Creation Act will spur growth and create jobs.•    Solar energy creates more jobs per megawatt of energy produced than any other form of energy.    •    The impact would be immediate with firms having an incentive to make their investments early in order to capitalize on the refundable credit.\nOther countries are providing incentives to attract solar manufacturing jobs.  •    Malaysia: 15-year income tax holiday.•    Philippines: 6-year income tax holiday.  •    Germany: Grants of 30% of investment costs for large enterprises (40%-50% for small/medium enterprises).\nARRA is a great start, but not enough to keep solar manufacturing in the U.S. •    The American Recovery and Reinvestment Act (ARRA) included a competitive tax credit capped at $2.3 billion for advanced energy manufacturing projects (new code Section 48C). \n•    The credit is a good start to increase domestic solar manufacturing; however:\no    Investment decisions are delayed because firms must apply and be certified for the credit.  o    The cap will cause the program to likely sunset after the first round of applications.\n                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b3588acf-041f-4e53-8a3d-13cc2c97b66b,\"SENATOR MENENDEZ ANNOUNCES $68,396 FOR TRAUMATIC BRAIN INJURY PROGRAM IN NJ\n                    \n                      November 6, 2009\n                     WASHINGTON – Today, US Senator Robert Menendez (D-NJ) announced that the US Department of Health and Human Services has awarded Disability Rights New Jersey, Inc. $68,396 for the assistance and advocacy related to traumatic brain injury.\"\"The impact of traumatic brain injury on a person and his or her family is devastating,” said Menendez. “This funding will help ensure that victims of this type of injury have access to basic information, legal services, and proper advocacy, empowering them and their caregivers as the navigate difficult circumstances. There is an urgent need for this type of services, particularly within the military and underserved communities where incidence runs high, and we must ensure they have access to quality, comprehensive assistance.”\nDisability Rights New Jersey (DRNJ) is New Jersey's designated protection and advocacy system for people with disabilities in the state. In partnership with individuals with disabilities and their families, DRNJ works to protect and advance the rights of people with disabilities. DRNJ provides information and referral and a broad range of advocacy services, including legal representation in numerous cases in state and federal courts.\nThis funding will help finance a distinct program (PATBI) that DRNJ has developed within the protection and advocacy framework, while recognizing that the needs of individuals with brain injury that span the entire range of agency programs and services. The program will address the issues and concerns of individuals with traumatic brain injury and their families across the lifespan. Particular emphasis will be placed on underserved populations, veterans, and preschool age children.\nPATBI program activities will encompass outreach, training and education, technical assistance, self-advocacy training, and legal representation. Goals and objectives will be achieved through outreach activities, focus groups, and meetings involving individuals with traumatic brain disorder, family members, brain injury professionals, and advocacy groups for planning and assessment.                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3021e374-25ef-4835-9d07-5b7098592b0d,\"MENENDEZ HELPS SECURE MORE THAN $7.1 MILLION FOR LAW ENFORCEMENT TECHNOLOGY AND JUVENILE JUSTICE PROJECTS IN NJ\n                    \n                             Funding from Commerce, Justice and Science Appropriations Bill to support key public safety programs\n                    \n                      November 5, 2009\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ) hailed the Senate passage of the Commerce, Justice and Science Appropriations Bill, as part of which he helped secure more than $7.1 million in law enforcement technology and youth crime prevention programs. The Senate now awaits the legislation to be reconciled with the House of Representatives version before final passage.\n“This is a substantial investment toward keep our streets safe for New Jersey’s families,” said Menendez. “These funds will also help ensure that our dedicated law enforcement officers have the tools they need to protect and serve our communities and to keep our neighborhoods safe. Investing in projects to prevent juvenile crime helps our youth reach their full potential, so they can fully participate in and contribute to our communities.”New Jersey projects that Menendez helped to secure funding include:\nJubilee Center Children's Program -- $250,000Recipient: All Saints Community Service and Development Corporation (Hoboken)Purpose: This project will provide at-risk and low-income children living in public housing with academic tutoring, computer training and access, arts and cultural activities, healthy meals and physical education, so they can succeed in school and overcome the barriers they face to grow into self-sufficient and productive individuals. It provides a safe environment for children, allowing their parents or guardians to be gainfully employed.\nCounty-Wide Public Safety Radio Communication System -- $900,000Recipient: County of BergenPurpose: To establish a new countywide-Trunked Radio System providing efficient wireless communication for all public safety/service agencies with seamless interoperability. Bergen County has an area of approximately 234 square miles and population of about 900,000.  The purpose of this system is to serve the County's Public Safety First Responders and Public Service personnel in performance of their duties to enhance the safety and security of the County constituency. \nCounty-wide Interoperability system -- $500, 000Recipient: County of CamdenPurpose: Intermittent Radio Frequency Interference (RFI) from a Northeastern television station causes periodic signal disruptions to the Camden County Public Safety Communications System.  This Public Safety Communications System is integral to the operation and coordination of all county emergency operations.  Funding is requested to upgrade the hardware, software and infrastructure of the Camden County Emergency Communications System. The upgrade requires the acquisition of the following: hardware, software and licensing for additional UHF/VHF frequencies. This project will improve county-wide communication while increasing the safety of all residents of Camden County and surrounding counties.\nUnion City Technology Project -- $300, 000Recipient: Union CityPurpose: To purchase and install 40 video surveillance cameras along Bergenline and Summit Avenues to combat a concentration and increase in homicides, armed robberies, armed assaults, and other crimes along the Avenues.  Approximately 40 PTZ (pan/tilt/zoom) cameras will be strategically placed at intersections.  Activities will be monitored by civilian personnel located in the precincts.  Retrievable data will be archived on the city's CAD/RMS system.Union City is experiencing an increase and concentration of violent and serious crime along its two major retail strips and those streets immediately perpendicular to them. The most marked violent crime concentrations are homicides, aggravated assaults and armed robberies. \nAfter School Programs and Gang Prevention Job Training Initiative -- $250,000Recipient: City of Plainfield -Housing AuthorityPurpose: To develop an after school and summer gang and drug prevention initiative that will include a job training component. Plainfield's two leading problems include crime and unemployment, which are intertwined with the growing number of ex-convicts and emerging gangs cradled between the city's promises of improved safety and economic vitality.  To address these issues, the city will develop and pilot an after school and summer gang and drug prevention initiative that provides job training and education programs targeting youth at-risk of joining gangs or seeking to leave them in order to become productive members of society.\nGang Prevention - $500,000Recipient: The Community YMCA (Middletown)Purpose: The Community YMCA provides multi-dimensional supportive services enabling each child the opportunity to fulfill his or her full potential based upon the nationally recognized Casey Life Skills Curriculum. This program focuses on youth and their individual strengths while taking control of their own lives.  The YMCA will provide an environment with expectations to remain out of trouble, in school and substance free.  Proactive youth programs prevent at-risk youth from the negative interactions with the justice system.\nYouth Mentoring Program - $200, 000Recipient: Generations IncorporatedPurpose: This program is designed to assist young people and their families in South Jersey. Services will include an after school program, as well as other character enrichment activities, including a Teen Summit, weekend activities,, and workshops. The intervention facets of the program include a mentor component, construction trades training, academic tutoring, employment readiness/placement, and victim impact training. This program will help to decrease the child abuse and neglect referrals that are generated in Southern New Jersey.  This program will help change the behavior of troubled youth and make them more productive citizens.\nReturning Offender Initiative -- $400,000Recipient:           City of NewarkPurpose:  To provide training and legal services to returning offenders. The ReLeSe program is designed to help individuals with criminal records address civil legal matters that are barriers to successful community reintegration. ReLeSe matches ex-offenders with volunteer attorneys to handle issues most commonly encountered by recently incarcerated individuals but not handled by existing legal services programs.  Any low-income Newark (or Essex County) resident who has been incarcerated in jail or prison is eligible for ReLeSe assistance.\nCamden Police Department Mobile Communications Center - $200,000Recipient: Camden City Municipal GovernmentPurpose: To equip the Mobile Communications Center with repeaters and backup IT support equipment to ensure continued services to Camden Police and other emergency agencies’ functions.  It is vital to ensure communication to and from law enforcement during small and/or large scale incidents, where the primary source of communication has been interrupted (i.e. 9-11, Katrina).  This project will ensure that public safety responses are not delayed or interrupted by the lack of communication between personnel in the field and all personnel that necessitate an exchange of communication with those individuals.\nFish Stock improvement initiative -- $1,000, 000Recipient:           Partnership for Mid-Atlantic Fisheries ScienceProject Purpose:  This project will improve the management of summer flounder and black sea bass in the Mid-Atlantic region. PMAFS will design and implement a science research program addressing the most urgent data limitations restricting improved management of summer flounder in the Mid-Atlantic. The summer flounder and black sea bass are among the most important recreational and commercial fish in the Mid-Atlantic.  PMAFS will address science issues relevant to the improved understanding of summer flounder recruitment, population demographics, and discard mortality. \nSPEAK UP Hotline Outreach and Public Education -- $500,000Recipient:           Middlesex County Prosecutor's OfficePurpose:  The Middlesex County Prosecutor’s Office seeks to implement a countywide SPEAK UP Hotline Outreach and Pubic Education program.  SPEAK UP is a national hotline (1-866-SPEAK-UP) for students to anonymously report weapon-related threats in their schools and communities.  The county believes that the SPEAK UP hotline public awareness, including teaching materials, teacher training, PSAs, and other outreach activities is an essential tool to ensuring that county residents remain safe.\nJersey City Housing Authority - Drug Elimination Program -- $300,000Recipient: City of Jersey CityPurpose: To reintroduce, at an admittedly smaller scale, the key elements of the Drug Elimination Program. The purpose is primarily two-fold; to help make the most dangerous sites safer, and to improve relationships between residents and the Jersey City Police Department.  Reintroducing off-duty cops at some sites, offering after school drug awareness workshops for the children in public housing, sponsoring parenting programs and possibly bringing back the recreational programs will give residents and members of the JCPD multiple opportunities to establish that trust and familiarity which can only lead safer communities.\nGunshot Location System (GLS) and Radio Communication Upgrade -- $300,000Recipient: City of TrentonPurpose:  To purchase the ShotSpotter Gunshot Location System (GLS) and make crucial upgrades to radio communication technology.  The implementation of the ShotSpotter GLS will enable the City of Trenton to effectively and accurately detect and locate the origin of gunshots and weapons-related incidents. Advanced radio equipment will provide officers with additional coverage in buildings and on city streets. A review of crime throughout the city shows a 5.9 square mile area that accounts for a high incidence of homicides, firearm assaults, gun possessions and recoveries and shots fired. Additionally, the police department supports the procurement of an 800 MHz P25 Digital Trunked Simulcast Network.  The new system will provide Trenton with a complete solution to its communication needs.\nYouth Gang Prevention -- $50,000Recipient: Crossroads Programs, Inc. (Willingboro)Purpose:  This program is designed to reduce the economic and societal costs of juvenile delinquency by preventing youth involvement in gangs and/or the juvenile justice system. The goal is to intervene much earlier when a young person is on a life trajectory toward delinquency and all of the associated risks.  The plan is to promote positive peer relationships and adult role models for at-risk preteens for the purpose of improving conduct and school performance, and, ultimately, steering their lives in a different direction.\nKidsPeace Cumberland County Therapeutic Foster Care Program  -- $250,000Recipient:  KidsPeacePurpose:  Kids Peace will establish a therapeutic foster care program in Cumberland County, New Jersey. This program will address critical needs by providing community-based placement to children involved with or at risk for involvement with the juvenile justice system; addressing the mental health needs of children in the social service system; and providing safe and supportive homes to children. Therapeutic foster care has been shown to reduce violent crime among adolescents with a history of chronic delinquency an average of 70%. In addition, for every dollar spent on therapeutic foster care, an estimated $14 is saved in corrections system costs.\nUser-Authenticating Personalized Weapon - $1,000,000Recipient:           New Jersey Institute of TechnologyPurpose:  NJIT has developed a unique technology for safeguarding handguns from unauthorized use based on biometric identification technology that identifies the shooter at the moment of trigger pull so that only an authorized shooter can operate the weapon. Proposed work will streamline the prototype into a commercialized version that has redesigned, compact, energy efficient printed circuit boards and support multi-shot semi-automatic operation.\nNew Jersey Regional Youth Development Program  -- $400,000Recipient:  USA Swimming Foundation (Berkeley Heights)Purpose:  This program will provide after school recreational programming for inner city, lower income youth in Newark, Bayonne, Jersey City, Plainfield and Ashbury Park, New Jersey.There is a direct correlation between after school programming and the reduction of violent crime and gang involvement. \n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0b32e9aa-f4b8-4a12-8a32-7ef8de8bdfbe,\"MENENDEZ HAILS PASSAGE OF UNEMPLOYMENT INSURANCE EXTENSION\n                    \n                            Legislation provides additional 20 weeks of benefits for laid off New Jersey workers, while aiming to spur home sales and supporting businesses\n                    \n                      November 4, 2009\n                     WASHINGTON – This evening, the U.S. Senate passed legislation to extend unemployment insurance for laid off workers. Senator Robert Menendez (D-NJ) was a co-sponsor of the legislation and voted in favor of its passage. The bill extends benefits by 14 weeks in all states and by 20 weeks in states with unemployment rates of 8.5 percent or higher, which includes New Jersey, and is expected to assist tens of thousands of New Jerseyans whose benefits have expired. The legislation also contains an extension of the Homebuyers Tax Credit, as well as tax relief for businesses facing an operating deficit and military housing assistance.\n\"\"These are the toughest times families across the country have faced in generations, with far more people looking for employment than jobs available,\"\" said Menendez. “For the financial security of these families and for the economic stability of our state as we begin a recovery, it is imperative that we provide this safety net. For so many, this is the difference between food on the table and empty stomachs; a roof overhead and homelessness; a trip to the doctor’s office and illness. To cut away the safety net now would be not only uncompassionate but economically foolish.\n“The foreclosure crisis is a major cause of our economic troubles, and measures to spur responsible middle-class homeownership help families fulfill the American Dream, stabilize the economy, and create jobs. The Homebuyers Tax Credit can be an important component of our economic recovery. The same can be said for the tax relief for businesses that is also included in this bill. Businesses that are making investments to innovate, produce goods and sustain or create jobs should be given relief.  This is particularly true now, when we need our businesses to create the jobs that will put New Jersey families back to work.”\nSummary of the legislation:\nEmergency Unemployment Benefits Extension \nThis proposal would extend unemployment insurance by up to 14 additional weeks for jobless workers and extend benefits for six additional weeks for workers in states with unemployment levels over 8.5 percent.  Additionally, the proposal would:  •    Ensure that the additional $25 per week in unemployment insurance benefits provided by the Recovery Act do not count against a family's eligibility for the Supplemental Nutritional Assistance Program, formerly known as food stamps;  •    Update the Unemployment Insurance Modernization provisions in the Recovery Act to provide that victims of sexual assault who have left their jobs have a \"\"compelling family reason\"\" for benefits; and  •    Specify that railroad workers who face expiring unemployment benefits will be eligible for the extension of benefits.\n•    Allow states to temporarily pay tier three benefits before tier two benefits in order to avoid payment delay and to ease implementation of Emergency Unemployment Compensation benefits.  Tier two and tier three benefits must be exhausted before an individual may qualify for tier four benefits.   This proposal is estimated to cost $2.4 billion over 10 years. Offset - This proposal is fully offset by an extension of the Federal Unemployment Tax Act (FUTA) until June 30, 2011.\nBusiness and Homebuyer Assistance \nHomebuyer credit - Under current law, the First-Time Homebuyer Tax Credit is a refundable tax credit available to an individual buying a principal residence for the first time.  The credit phases out for individuals with income between $75,000 and $95,000 and for joint filers with income between $150,000 and $170,000.  For purchases made on or after January 1, 2009 and before December 1, 2009 the tax credit is equal to the lesser of $8,000 or 10 percent of the purchase price of the residence.  Individuals must repay the credit only if the principal residence is disposed of within 36 months of purchase.  For purchases made on or after April 9, 2008 and before January 1, 2009, the tax credit is equal to the lesser of $7,500 or 10 percent of the purchase price of the residence.  Individuals purchasing homes in 2008 are also required to repay the credit over 15 years.  This proposal would extend the availability of a homebuyer credit to homes under a binding contract before April 30, 2010, allowing 60 days to close.\nThe other modifications are as follows: \n1) The credit is phased out for individuals with income above $125,000 and for joint filers with income about $225,000. \n2) An $8,000 credit is available to all first-time homebuyers.\n3) A $6,500 credit is available to homebuyers who have been in their current residence for the last five years or more. \n4) The credit is available only for the purchase of principal residences with a purchase price of $800,000 or less.\n5) The proposal incorporates Senator McCaskill’s proposal in the Service Members Home Ownership Tax Act of 2009 to eliminate the recapture requirement for military personnel, including members of the Foreign Service and intelligence community, forced to sell as a result of an official extended duty of service and to allow military personnel serving outside the United States for at least 90 days in 2009 or 2010 one additional year to qualify for the credit.  \n6) The proposal includes anti-fraud language.\n7) The proposal also includes math error authority for the IRS. \nThis proposal is estimated to cost $10.8 billion over 10 years. \nFive-Year Carryback of Net Operating Losses - Under current law, net operating losses may generally be carried back for two years.  In the American Recovery and Reinvestment Act of 2009, the net operating loss carryback period was extended from two to five years for tax years beginning in or ending in 2008 for small businesses with gross receipts of $15 million or less.  This proposal would allow all businesses to carryback net operating losses for up to five years for losses incurred either in 2008 or 2009, but not both (at the election of the taxpayer).  Businesses would be able to offset 50 percent of the available income from the fifth year and 100 percent of all income in the remaining four carryback years.  Small businesses who have already elected to carry back 2008 under the American Recovery and Reinvestment Act may also elect to carry back losses from 2009. This proposal is estimated to cost $10.4 billion over 10 years.     \nMilitary Homeowner Assistance Program (HAP) - Under current law, military personnel who sell a home that has declined in value as a result of a base closure can receive a HAP payment to adjust for the decline.  These payments are tax exempt.  In the 2009 stimulus bill, the HAP program was expanded to military personnel selling their home as a result of a permanent reassignment and other purposes.  Payments received as a result of the 2009 stimulus bill expansion are not tax exempt.  The proposal makes all HAP payments tax exempt.  This proposal is estimated to cost $243 million over 10 years.\nOffsets:\nDelay implementation of worldwide allocation of interest - In 2004, Congress provided taxpayers with an election to take advantage of a rule for allocating interest expense between United States sources and foreign sources for purposes of determining a taxpayer’s foreign tax credit limitation. Although enacted in 2004, this election was not available to taxpayers until taxable years beginning after 2008.  Last year, the phase-in of this rule was delayed for two years (for taxable years beginning after 2010).  This proposal would delay the phase-in of this rule for an additional seven years (for taxable years beginning after 2017).  This proposal is estimated to raise $20 billion over 10 years.    \nIncreases the penalty for failure to file a partnership or S corporation return - The bill would increase the penalties for failure to file a partnership return or an S corporation return. For taxable years beginning after 2010, the base penalty will be increased by $106 (from $89 to $195). This provision is estimated to raise $1.2 billion over 10 years.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3a432a83-d932-4ce6-8cca-d6052a826a37,\"MENENDEZ ON UNEMPLOYMENT INSURANCE EXTENSION: IT’S ABOUT REAL LIVES, NOT POLITICS\n                    \n                            Video of Menendez’s floor statement in the Senate: http://www.youtube.com/watch?v=BNqK-TTPyWM  \n                    \n                      November 2, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today stood on the Senate floor in favor of the unemployment insurance benefits extension and released the following statement:  “I rise today to say that it should come as a surprise to no one that we have a jobs crisis in America. To help fix it in the short-term we need to extend unemployment insurance benefits to help families who are suffering through the worst job market in many years – not obstruct and stonewall to score political points.”\n“People’s lives are in the balance. This is not a time for political grandstanding; not a time to once again say NO. NO to everything. NO to people who need help. This is not a time for amendments about ACORN or E-verify – amendments which have been offered and voted on time and time again.”\nThe video of those remarks are available here: http://www.youtube.com/watch?v=BNqK-TTPyWM\nFull text of speech in the Senate floor, as prepared for delivery:\nMr. President, I rise today to say that it should come as a surprise to no one that we have a jobs crisis in America.\nTo help fix it in the short-term we need to extend unemployment insurance benefits to help families who are suffering through the worst job market in many years – not obstruct and stonewall to score political points.\nPeople’s lives are in the balance. This is not a time for political grandstanding; not a time to once again say NO. NO to everything. NO to people who need help.\nThis is not a time for amendments about ACORN or E-verify – amendments which have been offered and voted on time and time again. And it’s nice that those who offer them get their paychecks direct-deposited every week.\nThis is not the time to offer them again after the job crisis this administration inherited.Unemployment in New Jersey is at 9.8 percent, just shy of double digit unemployment, and the experts tell us it will get worse before it gets better.\nThis is not the time to keep saying NO.\nThe policies of the last administration that favored the bottom line over the lives of people – Wall Street over Main Street -- sent millions of jobs overseas, leaving us vulnerable to any economic downturn, let alone one so severe as the one we were left with.When the economy sheds 263,000 jobs in one month alone – it’s a crisis…\nWhen 14.9 million Americans are unemployed and we know there are only about 3 million jobs available -- it’s not the time to say NO.\nWhen over a third of all unemployed – more than  5 million Americans -- have been jobless for 6 months or longer…\nAnd 500,000 Americans will exhaust their unemployment benefits this month -- 1.5 million by the end of the year –we have to say YES to extending unemployment benefits.\nThe Real Story\nMr. President, we could recite numbers all day. We could hold up chart after chart showing state-by-state unemployment figures.\nBut the numbers don’t tell us what this is really about.\nIt’s about people, their lives, their hopes, the look on their faces when the bills come due, the fear that they could stand to lose everything.\nEverywhere I go someone comes up to me and I see that look on their face. They lost their job after the holidays, their benefits are about to run out – they lost their health care and are behind on the mortgage -- their husband or wife is working two part time jobs to try to make up.\nThe story of these troubled times is not in the numbers; it’s in the faces of families who are looking to us for help.\nMr. President. The numbers are significant but they are merely a snapshot frozen in time.\nThe truth of joblessness in this country is an every-changing story of men and women who are one check away from ruin -- mothers and fathers who have struggled all their lives to make ends meet…\n…had a good job for years, made a decent wage…\n…then saw eight years of government policies that favored Wall Street over Main Street.\nThey watched their company down and send jobs overseas… watched their friends be laid off.\nThey went to bed at night praying they would not be next.\nThen they got the news…\nBut they had hope because of the wisdom of Franklin Roosevelt who, on August 14, 1935, 74 years ago, signed into law the Social Security Act which included the first provisions for unemployment insurance.\nAnd the Republican opposition in his day called him a socialist and they too tried everything they could to stop the New Deal notwithstanding an economy in Depression.\nFor FDR the story was not in the numbers. It was on the faces of the people in grainy black and white photographs of breadlines and old women selling apples on streetcorners.\nToday the faces of the unemployed are no different. Their need for help is the same and our duty to provide it is the same.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=07990cf8-fc97-437e-89fb-21a102ae6eb4,\"MENENDEZ, HOLT, LAUTENBERG, SECURE $500,000 TO IMPROVE WATER QUALITY IN MONMOUTH COUNTY \n                    \n                      November 2, 2009\n                     WASHINGTON – U.S. Senators Frank Lautenberg and Robert Menendez and U.S. Representative Rush Holt (NJ-12) today announced they secured $500,000 in federal funding for a Monmouth County wastewater and water quality improvement project.  The Senators and Holt requested the funding earlier this year after County officials identified it as a priority, and it was included in the Fiscal Year 2010 Interior Funding Bill, which Congress passed Thursday night and which the President has since signed into law.\nThe funding will allow Monmouth County and municipalities in the county to comply with the requirements of the New Jersey Department of Environmental Protection Stormwater Regulation (N.J.A.C. 7:14A).  As of February 29, 2009, state law no longer allows the discharge of pollutants from vehicle and equipment washing into the municipal separate storm sewer system or groundwater.  The funding will be used for the construction of a service vehicle and equipment facility that will contain all wash waters and direct them to the sanitary sewer system for treatment.  Monmouth County has a significant vehicle and equipment fleet that requires continuous maintenance to extend its usable life and preserve taxpayer funds.  The project will allow for the maintenance of this fleet in compliance with state law and protect the quality of groundwater and surface waters throughout Monmouth County.\n“Knowing the importance of this wastewater and water quality improvement project for Monmouth County, I was pleased to work with Senators Lautenberg and Menendez to secure this funding,” Holt said.  “I will continue to work with local leaders to identify areas where the federal government can provide a return investment on taxpayer dollars.”\n“Investing in this important project will improve water quality in Monmouth County,” stated Sen. Lautenberg.  “This funding will stop dangerous pollutants from being discharged into our water and provide a higher standard for public health.  I applaud Monmouth County for prioritizing water quality and am proud to have helped secure this funding.”   \nSenator Menendez said, “This is an investment in public health and in our lands.  By ensuring that wastewater in Monmouth County is properly treated, we can help keep our families, wildlife and environment healthy for generations to come.”\n\"\"Monmouth County has been at the forefront of municipal assistance shared services programs, and one of those areas involves the construction of truck wash facilities,\"\" Monmouth County Freeholder Director Barbara J. McMorrow said.  \"\"By offering this unique shared service, municipalities will be able to comply with new state stormwater regulations - at a nominal fee per wash - without incurring the high cost of building these facilities themselves.  Eventually, Monmouth County will build four truck washes around the county.\"\"  Director McMorrow thanks Congressman Holt, and Senators Menendez and Lautenberg for their assistance in obtaining this funding for Monmouth County.\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fcadbbfb-4c10-469e-b087-868049991d1b,\"SENATOR MENENDEZ ANNOUNCES NEARLY $1 MILLION FOR HIGHWAY SAFETY PROGRAMS IN NEW JERSEY\n                    \n                      October 30, 2009\n                     WASHINGTON – Today, US Senator Robert Menendez (D-NJ) announced that the US Department of Transportation has awarded New Jersey $942,233 for highway safety initiatives in New Jersey. These funds will help improve response to transportation accidents involving hazardous materials, including helping train first responders, implement security measures to meet safety challenges posed by new chemicals and alternative energy products, as well as address other highway safety problems.\n\"\"These funds will help strengthen public safety and emergency response capabilities on the road. Ensuring our roads are as safe as possible is essential for not only for our families' safety, but also for our state's economic competitiveness as we rebuild our economy. A secure transportation system gives confidence to millions of New Jersey families and businesses that they can commute and transport goods safely and efficiently every day. By investing in our roads, we invest in New Jersey's safety and economic wellbeing in the 21st Century.\nThe $942,233 in funding will be distributed as follows:\nFY 2010 Section 402 State and Community Highway Safety Grants -- Trenton/Mercer NJ -- $445,947\nSection 402 of SAFETEA-LU authorized $235,870,000 to support state highway safety programs through formula grants each year. States will received $19,940,463 through October 31, 2009 under the current continuing resolution. Section 402 formula grants will provide the States an additional $19,940,463 in FY 2010 to support highway safety programs based on identified problems.\nHazardous Materials Emergency Preparedness Grants - Sayerville, NJ -- $496,286 \nThese grants are awarded annually by the U.S. Department of Transportation to improve the nation’s response to transportation incidents involving hazardous materials. A total of $20.8 million in federal funds will be provided to states, territories and Native American tribes to help train first responders to react to incidents involving hazardous materials and to meet the safety challenges posed by new chemicals and alternative energy products such as ethanol.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fa10ee60-abe0-43a4-b5c7-a152dd0bd401,\"IN WAKE OF FLIGHT THAT OVERSHOT DESTINATION, MENENDEZ WILL PROPOSE LEGISLATION TO BAN “TEXTING WHILE FLYING”\n                    \n                            Pilots cited laptops as distraction that caused error\n                    \n                      October 30, 2009\n                     WASHINGTON – The pilots of Northwest Airlines Flight 188, which overshot its destination by 150 miles while carrying 147 passengers from San Diego to Minneapolis last week, have told authorities that they were at least partially distracted by laptop computers in the cockpit. In the wake of this incident, U.S. Senator Robert Menendez (D-NJ) today announced that he will introduce “distracted flying” legislation to prohibit the use of non-essential portable electronics in the cockpit.\nHis bill would require the head of the Federal Aviation Administration to initiate rulemaking to prohibit pilots from using portable electronic devices during flight, unless they are used for safety purposes or for the purposes of flying or navigating the aircraft. The legislation would also initiate an FAA study on distracted flying and its effect on safety.\n“With dozens or sometimes hundreds of lives in their hands, we need to ensure that pilots are focused on one thing only: getting their aircraft from point A to point B safely and efficiently,” said Menendez. “Electronic devices make our lives a lot easier, but they also can cause dangerous distractions. Anyone who drives a car knows that there are many more things to pull away your attention than there were just a few years ago. What’s true in a car is generally true in an airplane, and we need to address distracted flying just as we are addressing distracted driving. The fact that there isn’t already a prohibition on ‘texting while flying’ for airplanes seems reckless.”\nCurrently, Federal Aviation Administration rules prohibit pilots from using electronic devices at altitudes of less than 10,000 feet, however they rules above that altitude vary by air carrier. The pilots on flight that overshot the airport in Minneapolis were using their laptops at 37,000 feet.\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8065aa84-c7f8-4d3c-949c-13384cfd4e1c,\"MENENDEZ HELPS SECURE MORE THAN $8.4 MILLION FOR ENVIRONMENT RELATED PROJECTS IN NJ\n                    \n                            Funding from Interior, Environment and Related Agencies Appropriations Bill essential for New Jersey’s land, water and conservation efforts\n                    \n                      October 29, 2009\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ) hailed the final passage of the Interior, Environment and Related Agencies Appropriations bill, as part of which he secured more than $8.4 million in funding for land, water, and conservation projects. After House and Senate passage, the bill awaits the President’s signature.\n“This substantial investment is critical to safeguarding our state’s precious natural resources while protecting public health,” said Menendez. “Preserving our state’s lands, wildlife and water resources helps support our state’s vibrant tourism industry while ensuring that these natural treasures are available for generations to come. Ensuring that our sewer and water systems function properly is an issue of safety and health, and this funding will help in that effort. In addition to these benefits, these investments put people to work at a time when job creation is tremendously important.”\nNew Jersey Projects that Menendez helped to secure include:Highlands Conservation Act --$4 million\n$4 million for the Highlands Conservation Act (NJ, NY, CT, PA)Led effort in the Senate to increase funding for this critical open space project that protects valuable wildlife habitat and an important watershed for the region.\nLand Acquisition Funding -- $5.5 million\nWallkill River National Wildlife Refuge -- Sussex County, NJ -- $1,400,000Recipient:  Friends of Wallkill River National Wildlife Refugee  Purpose:  The requested funds will be used for land acquisition by the Wallkill River NWR within the refuge boundary and in the newly-approved Land Protection Plan area.  The Acquisition of these tracts by the Wallkill NWR will help implement the refuge's mission of protecting critical wildlife habitat and water resources along the Wallkill River corridor.\nCape May National Wildlife Refuge – Cape May County, NJ -- $2,000,000Recipient:  New Jersey Audubon SocietyPurpose:  The requested funds will be used for the acquisition of a 30-acre parcel, known as the Russell property, adjacent to the Cape May National Wildlife Refuge. This will help preserve this important aquifer recharge area in the rapidly developing Southern region of New Jersey and will help to provide critical habitat for rare species.\nEdwin B. Forsythe National Wildlife Refuge – Atlantic-Ocean Counties, NJ - $1,100,000Recipient:  New Jersey Audubon Society Purpose:  The requested funds will be used for the acquisition of a 28.17 acre parcel adjacent to the Edwin B. Forsythe National Wildlife Refuge in Ocean County, New Jersey, within the approved acquisition boundary.  This will help maintain the integrity of the groundwater infiltration and discharge system vital to the functioning of freshwater and tidal wetlands and estuarine waters.\nGreat Swamp National Wildlife Refuge – Morris County, NJ -- $1,000,000Recipient:  New Jersey Audubon Society Purpose:  The requested funds will be used for the acquisition of an 18 acre parcel, known as the Great Brook Property, adjacent to the Great Swamp National Wildlife Refuge, which provides critical habitat for the endangered Indiana Bat and numerous other rare species.\nNational Park Funding – Save America’s Treasures  --  $200,000\nGeorgian Court University -- Lakewood, NJ -- $200,000Project Name: Preservation of the Mansion at Georgian CourtPurpose: The requested funds will be used for exterior restoration work on some of the most prominent architectural features of George Gould's Gilded Age Mansion on the campus of Georgian Court University. The Mansion is the centerpiece of the seven historic buildings, which constituted the Gould 's winter estate. The buildings are now part of the Georgian Court University campus, all of which has been designated a National Historic Landmark by the United States Department of the Interior.\nWater and Wastewater Infrastructure -- $2.9 million\nCity of Hackensack -- Hackensack, NJ -- $300,000Project Name:  Clay Street Area Combined Sewer Overflow projectPurpose:  The requested funds will be used to separate storm and sanitary lines in the Clay Street area.  This area is a section of the larger Court and Anderson Street area which continues to experience sewage back-up into residences and flooding of streets due to insufficient capacity of the existing system to handle both sanitary and storm flows.\nCity of New Brunswick -- New Brunswick, NJ -- $300,000Project Name:  Water Pumping Stations Repair and UpgradePurpose:  To repair, replace and upgrade equipment at the City's water utility raw water pumping stations. The pumping stations are critical components of the City-owned and operated water utility that supplies treated drinking water to residential and business customers in New Brunswick and parts of Milltown and Franklin. The pump stations have old equipment in need of repair and upgrading. Failure of the pumps could curtail the City's ability to provide treated water to customers.\nCity of Orange - Orange, NJ - City of Orange -- $300,000Project Name: Water Treatment FacilityPurpose:  The requested funds will be used for the replacement of the Chestnut Street Filter Plant which was originally constructed in 1932.  This will also include various updates and improvements to existing potable water production wells and the replacement of a production well.\nCity of Perth Amboy -- Perth Amboy, NJ --$300,000Project Name:  Water Infrastructure ImprovementsPurpose:  The requested funds will be used for repairs to the 40 million gallon potable water reservoir, the replacement of well pumps, the cleaning of well laterals, and the rehabilitation of Tennants Pond Dam.\nCounty of Monmouth -- Freehold, NJ -- $500,000Project Name: Monmouth County Wastewater/Water Quality Improvement ProjectPurpose:  The requested funds will be used for a wastewater and water quality improvement project that will result in a shared services facility in Monmouth County to allow both the County and municipalities to comply with the requirements of the NJDEP Stormwater Regulation (N.J.A.C. 7:14A) adopted on January 5, 2004.  State law no longer allows the discharge of pollutants from vehicle and equipment washing to the municipal separate storm sewer system or groundwater.\nPassaic Valley Sewerage Commissioner -- Newark, NJ -- $750,000Project Name: Passaic Valley Combined Sewage Overflow ProjectPurpose:  The requested funds will be used to expand the capacity of the Wastewater Treatment plant from 368 million gallons per day (mgd) to 700 mgd which will reduce combined sewage overflows by 332 mgd in storms, reducing the amount of debris washing up on New Jersey beaches and reducing the discharge of toxic compounds in the NY Harbor.\nBorough of Hopatcong -- Hopatcong, NJ  -- $500,000Project Name: Drinking Water Infrastructure ImprovementsPurpose:  The requested funds will be used to install large diameter pipes at nine public community supply wells to improve the disinfection of the raw water before distribution to residents.\n                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=96533429-44eb-4c20-a85f-c937c4ba7199,\"MENENDEZ PRESSES U.S. POSTAL SERVICE FOR ANSWERS ON PLANNED CLOSURE OF LOGAN TOWNSHIP FACILITY\n                    \n                            Up to 650 will lose jobs\n                    \n                      October 28, 2009\n                     WASHINGTON – With the U.S. Postal Service preparing to close its Philadelphia Logistics and Distribution Center in Logan Township, NJ, U.S. Senator Robert Menendez is pressing the Postmaster General to detail plans to assist those who will lose their jobs and to explain how the closure decision was made. The Center employs 650 workers. Though they have not been given guidance as to whether they will be considered for employment in other USPS facilities, they have been told they are eligible for pre-retirement packages if they resign by November 1.\n“This news has created serious anxiety and apprehension amongst the office’s 650 workers and their families,” wrote Menendez. “Other mass layoffs in the area have made an already difficult job market even worse, as the unemployment rate for Gloucester County climbs above the national average at 10 percent. I understand the need to cut costs in this difficult economy, however sudden layoffs of this magnitude will only serve to exacerbate and lengthen the economic predicament we are in.”\n“Many if not all of these workers are understandably scared about the uncertainty of their status and are wondering if they will be offered positions in surrounding facilities.  While the USPS has stated that it will try to find jobs for these dislocated workers, no concrete plan has been presented on this matter.  This lack of timely information not only adds to the anxiety of these workers, it also makes it nearly impossible for them to make plans for their future.”\nPDF of letter to Post Master General: http://menendez.senate.gov/imo/media/doc/20091028ltr_USPS.pdf\nText of letter:\nOctober 28, 2009\nThe Honorable John E. PotterPostmaster General and CEOUnited States Post Office475 L’Enfant Plaza SWWashington D.C., 20260-0010\nDear Postmaster Potter:\nI am writing to express my concern with the Unites States Postal Service’s (USPS) decision to close the Philadelphia Logistics and Distribution Center (L&DC) located in Logan Township, New Jersey.  I would like to know what the basis behind this decision was and what is being done to help the approximately 650 employees who currently work at this facility.\nAs you know, the USPS announced earlier this month that it intends to shutter its L&DC facility located in Logan Township, New Jersey.  Needless to say, this news has created serious anxiety and apprehension amongst the office’s 650 workers and their families.  Other mass layoffs in the area have made an already difficult job market even worse, as the unemployment rate for Gloucester County climbs above the national average at 10 percent.  I understand the need to cut costs in this difficult economy, however sudden layoffs of this magnitude will only serve to exacerbate and lengthen the economic predicament we are in.\nMy primary concern is what will happen to the 650 employees stationed in the Logan L&CD.  Many if not all of these workers are understandably scared about the uncertainty of their status and are wondering if they will be offered positions in surrounding facilities.  While the USPS has stated that it will try to find jobs for these dislocated workers, no concrete plan has been presented on this matter.  This lack of timely information not only adds to the anxiety of these workers, it also makes it nearly impossible for them to make plans for their future. \nFor example, I understand the USPS has offered a pre-retirement package for employees who choose to resign before November 1.  While I am not opposed to this approach to manage costs, workers need to be fully informed of their prospects for employment before they are forced to make such an important life decision.  In light of this lack of information, I strongly urge you to extend the USPS’s deadline until an employment plan is submitted and workers have ample time to review it. \nFinally, I would like to hear from you the USPS’s reasoning behind this closure.  In such a densely populated region, it seems that such drastic downsizing could seriously jeopardize the professional service my constituents in the area have enjoyed over the years.  In addition to your response to my letter, I would like to meet with you in person and work towards a positive solution to this matter.  Thank you for your consideration.  I look forward to your prompt response.     \nSincerely,\nROBERT MENENDEZUnited States Senator\n                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cbc35bbf-987d-42ca-a0b9-19acbdce7f1f,\"CONGRESS PASSES MENENDEZ-CORKER MEASURE TO HELP ENSURE MILITARY AID TO PAKISTAN IS USED AS INTENDED\n                    \n                             Provision attached to Department of Defense Authorization bill, which gained final passage today\n                    \n                      October 22, 2009\n                     WASHINGTON – As part of the Department of Defense funding authorization bill that gained final passage in Congress today, U.S. Senators Robert Menendez (D-NJ) and Bob Corker (R-TN) established new requirements related to military assistance to Pakistan. The Menendez-Corker legislative language would mandate a determination by the U.S. Secretary of Defense, along with the Secretary of State, before Pakistan is reimbursed with Coalition Support Funds, that the payment is both in the national security interests of the U.S., and will not affect the balance of power in the region.\n“We can’t lose sight of the very reason Pakistan receives these funds: they are a reimbursement for expenses incurred fighting terrorists and supporting U.S.-led efforts to do the same,” said Menendez. “That fight is important to our own national security, and we have to ensure that our support for it is not being squandered or diverted. It is not only right for us to ensure that American taxpayer money does what it is intended to do, it is our duty as stewards of the national security and of taxpayer money.”\n“The Pakistanis should be commended for working to eliminate the terrorist safe havens within their own borders and for their role in the broader war on violent extremism,” said Corker. “This provision simply ensures that the American peoples’ tax dollars are being used for their intended purpose.”\nTo this point, the U.S. has sent approximately $7.6 Billion in Coalition Support Funds to Pakistan since 2001.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=97192612-d27b-40d4-a299-cb2e6e13fc18,\"Menendez Hails Final Passage Of Landmark Hate Crimes Legislation\n                    \n                            NJ Senator is co-sponsor of legislation to give federal law enforcement greater ability to prosecute hate crimes\n                    \n                      October 22, 2009\n                     WASHINGTON – Today, as part of the Department of Defense funding authorization bill, the U.S. Senate gave final passage to an amendment that aims to bring justice in more hate crime cases. The provision, mirroring the late Sen. Edward Kennedy’s Matthew Shepard Act, allows federal law enforcement to become involved in more of these cases, whereas currently, it is does not have jurisdiction to prosecute a large number of them.\nU.S. Senator Robert Menendez (D-NJ) is a co-sponsor of the hate crimes legislation, and he released the following statement:\n\n“When someone is harassed, assaulted or killed simply because of the type of person they are, it’s a crime against an entire community and our nation’s values,” said Menendez. “This is why hate crimes need special attention from law enforcement. If anyone thinks these unconscionable crimes are a relic of the past, they have to look no further than the murders of Luis Ramirez in Pennsylvania, Matthew Shepard in Wyoming or Stephen Tyrone Johns at the Holocaust Museum. No one cracks down on hate crimes with more focus or authority than federal law enforcement, which is why it’s so important that this legislation gives them an expanded role. Our late colleague Ted Kennedy knew the power of civil rights and justice, and I am proud that we continue to carry on his legacy.”\n\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0b213eee-f8a2-4368-b373-837f7c0e553e,\"MENENDEZ INTRODUCES RESOLUTION TO OFFICIALLY ACKNOWLEDGE ARMENIAN GENOCIDE\n                    \n                            Between 1915-1923, 1.5 million Armenians were massacred at the hands of the Ottoman Empire\n                    \n                      October 21, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, today introduced a Senate resolution that would call upon the president to officially recognize the systematic murder of 1.5 million Armenians between 1915 and 1923 as genocide.\n“Only when history’s darkest hours are acknowledged and understood can we truly learn from them and build a peaceful future upon those lessons,” said Menendez. “One and a half million Armenians experienced Hell on Earth, and to sweep their plight under the rug is to insult their memories and their descendants. It is long past time that our nation help set the historical record straight and provide a foundation of understanding that helps prevent future atrocities.”\nOver the course of eight years, the Ottoman Empire removed nearly 2,000,000 Armenians from their homeland, where they had existed for 2,500 years. Of that population, 1,500,000 men, women, and children were killed. In 1915, England, France and Russia jointly condemned this “crime against humanity,” the first ever such charge against another government.\nAfter World War I, the Turkish Government indicted the top leaders involved in the ‘‘organization and execution’’ of the Armenian Genocide and in the ‘‘massacre and destruction of the Armenians.’’ In a series of courts-martial, officials of the Young Turk Regime were tried and convicted, as charged, for organizing and executing massacres against the Armenian people.\n                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=056a49dc-cb35-4876-b6bd-540deb4321b3,\"MENENDEZ ANNOUNCES NEARLY $300,000 TO SUPPORT SOLAR ELECTRICITY IN NEW JERSEY\n                    \n                      October 20, 2009\n                     WASHINGTON - Today, US Senator Robert Menendez (D-NJ), member of the Energy and Natural Resources Committee, announced that two New Jersey businesses have been awarded $280,088 in funds by the US Department of the Treasury from the American Recovery and Reinvestment Tax Act to support solar power initiatives.\n\"\"This is the type of investment that will help promote the use of clean energy, while helping create jobs critical to our economic recovery. Every day, New Jersey transitions more to a cleaner and more efficient economy, ensuring the air we breathe is clean, cutting energy costs and reducing energy consumption. This is precisely this type of funding that will allow us to continue moving in this direction - laying the foundation for a green and secure economic future in the 21st Century.\"\"\nThe American Recovery Tax Act is part of the American Recovery and Reinvestment Act of 2009. Section 1603 appropriates funds for payments to qualified applicants who place in service specified energy property. These funds are intented to support the generation of electric, mechanical, or thermal energy from renewable resources; as well as create and preserve jobs in projects' construction and operational stages. Treasury makes payments to qualified applicants in an amount generally equal to 30% or 10% of the base cost of the property, depending on the type of renewable energy.\nThe $280,088 in funding will be distributed as follows:\n$230,088 for Paul Central Corp.in Paramus, NJ\n$50,500 for JBHVAC Inc. in Mays Landing, NJ\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6a0531dc-5117-48d1-8af8-e1034567e252,\"Democratic Senators Urge Swift Passage of Unemployment Benefits Extension\n                    \n                      October 20, 2009\n                     WASHINGTON – Fourteen Democratic Senators today called on Senate Republicans to stop playing politics and immediately help pass legislation that will provide relief to jobless workers by extending unemployment insurance for the nearly 2 million Americans who will exhaust their benefits by the end of the year.  The pending bill would extend unemployment insurance by up to 14 additional weeks for jobless workers in all states and up to 20 weeks in hard-hit states with unemployment levels at or above 8.5 percent.  According to the Congressional Budget Office, this extension would be fully offset.  Every $1 spent on unemployment benefits has been found to generate $1.61 in new economic demand.\n7.6 million Americans have lost their jobs and the deficit has grown massively since the recession began under President Bush in 2007.  Now, hundreds of thousands of Americans have exhausted unemployment insurance benefits and another million are expected to exhaust these benefits by the end of this year.\nDespite the urgent economic imperative, Republicans have held up the bill for nearly two weeks by offering amendments that have nothing to do with helping the unemployed.\n\n“This unexpected battle over unemployment insurance is putting on display the irresponsible lengths to which our Republican colleagues are willing to go in their strategy of 'No'. They said no to a job-creating economic recovery package, no to health insurance reform, and now no to a safety net for Americans who can’t find a job in the most severe economic downturn in generations.  If we want to do what is right morally, and if we want to keep our economy afloat while the job creation engine gets back up to full speed, then we can’t cut out unemployment insurance when many families need it the most,” said U.S. Senator Robert Menendez (D-NJ).\n“We can stand together now, pass this vital piece of legislation, and provide families with the means to stay in their homes and pay the bills as they look for work in these extraordinarily turbulent times.  Or, Republicans can continue to prevent thousands of their own constituents from getting desperately needed assistance,” said Sen. Jack Reed (D-RI).  “Slow-walking these benefits doesn’t just hurt individuals and families; it is bad for businesses and the broader economy.  Helping people stay afloat is not a partisan issue -- It is an urgent national issue that demands action now.   And it is time for obstructionism to stop being the philosophy of too many Republicans.”\n“The unemployment extension bill before the Senate is a great bill - one that will stimulate the economy and help unemployed workers across the country struggling to get back on their feet,” said Sen. Jeanne Shaheen (D-NH).  “Helping people who are about to lose a lifeline is the essence of what we do as public servants – that is why this delay is so disappointing.  I ask those members who are holding up this urgent legislation for political purposes to do the right thing and pass this extension immediately.”\n“The Unemployment Insurance program provides a vital safety net during times of economic hardship,” said Sen. Tom Harkin (D-IA).  “Workers have paid into the system through their hard work, so when they are out of a job they deserve support to see them through tough times.  These benefits are fundamental to helping families meet basic necessities – to provide a roof over their heads, to put food on the table, or to keep the heat on.  I urge my colleagues to support this amendment and pass it without delay.”\n“There is a general view that since much of the first stimulus package has not yet impacted the economy, a second one is not necessary.  But unemployment benefits are the quickest, most effective form of economic stimulus because the dollars can get out the door fast and will be spent quickly at a time when we need the boost to consumer demand,” said Sen. Charles E. Schumer (D-NY).\n“Michigan has the highest unemployment rate in the country,” said Sen. Debbie Stabenow (D-MI).  “Families in Michigan and across the country are struggling to put food on the table.  Soon they will be hampered by home heating bills. This extension of unemployment benefits not only provides support when families need it most, it is also one of the fastest, most effective ways to stimulate our economy.”\n“Families are hurting. In every region of every state, there are people who cannot find jobs today. Minorities are being hit even harder. Extending unemployment benefits is the right thing to do for those who can’t find employment and for our economy. We have to pass this now. There should be no obstacles put in the way of passing this bill promptly,” said Sen. Ben Cardin (D-MD).\n“More than 14,000 Ohioans will exhaust their benefits this month if we do not act now,” said Sen. Sherrod Brown (D-OH).  “Partisan delay of this legislation is a slap in the face to millions of American families. We need to pass this U.I. extension and we need to do it now. I strongly encourage my Republican colleagues to put politics aside and do the right thing.”\n“Tens of thousands of Pennsylvanians have already lost their unemployment insurance and with it a means to help pay the bills as they struggle with long-term unemployment,” said Sen. Bob Casey (D-PA).  “After previous bipartisan extensions under this Administration and the last the current obstruction is unconscionable and callous.  Americans who have exhausted their benefits can’t take an IOU to the grocery store or their mortgage lender while this extension is held up.”\n“Unemployed individuals need assistance regardless of where they reside, and this compromise represents a fair and appropriate extension of benefits for workers in need,” said Sen. Jim Webb (D-VA).  “I urge my Senate colleagues to move this legislation forward swiftly as it directly affects the livelihood of so many Americans during these difficult economic times.”\n“While the economy has begun to stabilize, we are not yet out of the woods.  We must make certain that those who have lost their jobs in Delaware and around the country will be able to put food on the table and take care of necessities for their families.  This assistance will help those most in need stay on their feet until they can find a new job,” said Sen. Ted Kaufman (D-DE).\n“1,000 Minnesotans lose their benefits every week. Our economy is making strides toward recovery, but until the job market is back, unemployment benefits are vital. It’s time for the Senate to work together to provide this needed relief as soon as possible,” said Sen. Al Franken (D-MN).\n“Unemployment benefits for 40,000 women and men in Massachusetts, and 1.3 million people across the United States, will run out by the holidays if we do not act to extend their unemployment insurance,” said Sen. Paul Kirk (D-MA). “I came to the United States Senate to try to give a voice and a vote for the people of Massachusetts during these critical painful months, and extending unemployment benefits for those who continue to look for work is exactly what we need to do, and do now.”\n\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=58869dd7-bfd1-400f-a56f-2bc378f99e33,\"MENENDEZ, BOOKER ANNOUNCE $2.8 MILLION FOR ENERGY EFFICIENCY PROGRAMS IN NEWARK\n                    \n                            Funding, distributed through program created by Menendez, will support Newark’s comprehensive Climate Prosperity Initiative\n                    \n                      October 20, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) and Newark Mayor Cory A. Booker today announced $2,836,300 for the City of Newark through the Energy Efficiency and Conservation Block Grant program, which Senator Menendez created in Congress in 2007. The funding will bolster the city’s successful Climate Prosperity Initiative.\nThis energy efficiency program will distribute a total of $73 million to New Jersey cities, towns and counties with federal funding made possible by the American Recovery and Reinvestment Act. It supports municipal energy-saving initiatives and improves energy efficiency in transportation, buildings, and other sectors.\n“New Jersey’s largest city has helped lead the state in cutting energy costs, reducing energy consumption and creating jobs through energy efficiency,” said Senator Menendez. “This is the type of activity that not only helps spur an economic recovery but also lays the foundation for economic security in the 21st Century. An energy efficient city is one that saves taxpayers money and helps clean the air we breathe. That is where Newark is headed, and I am proud to have created this program to support local governments these efforts.”\n“Every day Newark is becoming a ‘greener and cleaner’ model of urban transformation, and thanks to the leadership of Senator Menendez and further support received through this Energy Efficiency and Conservation Block Grant, Newark will harness the opportunities within the climate change challenge and expand its Climate Prosperity Initiative,” said Mayor Booker. “The funds will be used to realize financial and environmental savings which will support the long term sustainability of our city and our nation. Specifically, Newark will create a Climate Prosperity Plan to strategically guide our City wide carbon reduction efforts; as well as retrofit municipal buildings and install energy efficient building management technologies. A portion of the funding will be used to connect residents and businesses to available energy efficiency cost savings programs and support the greening of our neighborhoods.”\nBuildings account for over 60% of the City’s carbon footprint, and making them more energy efficient will create green jobs, lead to long term savings and support our local economy. \nThe City has already partnered with the NJ Clean Energy Program, its public utility PSE&G, its local weatherization providers and faith based organizations.  Working with partners, the City has distributed over 11,000 compact fluorescent light bulbs along with information connecting residents to assistance; held fairs with on-site weatherization eligibility screening; and increased publicity about available cost saving assistance programs.  The City and partners are also conducting targeted outreach to the commercial sector.  \n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=92279a76-1e95-46d1-a86c-3510559e8b0d,\"Menendez, Nelson, Gillibrand Provisions For Immigrant Widows and Orphans Gains Final Senate Passage \n                    \n                            Legislation helps reinforce the family immigration system\n                    \n                      October 20, 2009\n                     WASHINGTON – Today, provisions in the Department of Homeland Security appropriations bill to protect widows and orphans of deceased U.S. citizens and legal permanent residents who are in the family immigration system gained final passage in the U.S. Senate. The provisions, which were championed by Senators Robert Menendez (D-NJ), Bill Nelson (D-FL), Kirsten Gillibrand (D-NY) and Patrick Leahy (D-VT), among others, address the immigration-related hardships caused by the death of a sponsoring relative by allowing orphans, widows and widowers to continue their applications through the family immigration system despite the sponsor’s death. Menendez and Gillibrand are the sponsors of the Orphans, Widows and Widowers Protection Act and Sen. Nelson has championed the issue of widow and orphan immigrants for a number of years.\n\nSenator Menendez said: “This marks an important step toward strengthening our legal family immigration and ensuring that family unity remains at the heart of our immigration system. The law-abiding widows, widowers and orphans covered under this provision call America home and deserve continued access to our legal family immigration system. They should not be forced to leave this country because of the sudden death of a parent or spouse that was out of their control. I will continue to work hard to fix other parts of our broken immigration system through comprehensive immigration reform.” \n\n\n          Senator Gillibrand said: \"\"This law will be an important step towards  comprehensive immigration reform.  After experiencing the loss of a loved one, law-abiding people seeking legal citizenship in this country should not experience further punishment by losing their opportunity to become legal citizens of this country.  This important law will protect some of the families being torn apart by our immigration system.  This is a critical part of our efforts to reform America's family-based immigration system to reunite loved ones, promote family stability and foster the economic growth that immigrant families have provided throughout our history.\"\"\n\nThe orphans, widows and widowers provisions were including in an amendment to the DHS bill sponsored by Senator Orrin Hatch (R-UT) and co-sponsored by Senators Menendez, Nelson, Kent Conrad (D-ND), Gillibrand, Harry Reid (D-NV), Edward Kennedy (D-MA) and Charles Schumer (D-NY). The Hatch amendment also included immigration provisions for religious workers and physicians.\nThere are more than 200 surviving spouses of U.S. citizens fighting against immigration deportation and countless other legal immigrants, refugees and asylum seekers who have been deported or risk deportation because of the death of a loved one. This legislation offers a lasting solution for these legal immigrants impacted by the death of a loved one. In addition, the legislation assists relatives of other legal immigrants.\nCurrently, if a sponsoring relative dies, the U.S. Citizenship and Immigration Service will generally deny the petition after the sponsoring relative’s death. This bill clarifies that the government should continue to process the immigration applications of immigrants who are already waiting to receive an immigrant or other visa under certain conditions.\nOn Tuesday, June 9, 2009, the Department of Homeland Security announced that it was granting temporary relief from deportation to the spouses and minor children of U.S. citizens. This bill extends permanent relief to orphans, widows and widowers of legal immigrants including the relatives of U.S. citizens, permanent residents and refugees subject to Department of Homeland Security discretion to deny certain cases if approval is not in the public interest.\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3c0adfa2-6a66-434f-a2ac-00bc08ac8972,\"SENATOR MENENDEZ HELPS SECURE NEARLY $1.3 MILLION FOR EMERGENCY OPERATIONS IN NJ\n                    \n                            Funding part of FY2010 Department of Homeland Security  Appropriations Bill\n                    \n                      October 20, 2009\n                     WASHINGTON - Today, the U.S. Senate passed the FY2010 Department of Homeland Security Appropriations Bill, which contains funding vital to public safety, including $1.3 million for key emergency operations and pre-disaster mitigation projects in New Jersey, which Senator Robert Menendez (D-NJ) helped secure. These funds are intended to improve security on our nation's borders and in transportation systems, as well as to ensure emergency systems and first responders are properly funded and equipped.\n\"\"The security of our families and communities has to always be a top priority, no matter what other major challenges we are facing in our state and nation,” said Senator Menendez. “In New Jersey, we understand better than just about anywhere else the importance of preparedness. These security investments will help guarantee our state's first responders and public safety system are adequately prepared to coordinate and function efficiently should an emergency arise. I am proud to have helped secure this funding and look forward to continue working hard to ensure our the security of our state and nation.\"\"\nSenator Menendez helped secure a total of $1,347,000 in funding for the following projects in New Jersey from the FY2010 Department of Homeland Security Appropriations Bill:\nEmergency Operations Center--City of Hackensack --$300,000\nHackensack seeks to build a new police training and emergency services facility at the base of Johnson Park.  The location of this building will accommodate classroom and distance learning, on-site police and fire training as well as serve as an additional satellite emergency services location.  Additionally, being directly on the Hackensack River will allow the police, fire and EMS an opportunity in the future to construct a boat ramp which will allow for a point of access to the Hackensack River on the west side of the city.  Funds would be used to construct the facility.\nEmergency Operations Center --County of Union--$500,000\nUnion County is seeking to enhance the county's emergency operations center telecommunications and technology capabilities to ensure first responders can effectively coordinate any response to a man-made or natural disaster.  This project would improve communication between the county’s municipalities, utility companies and first responders.  Funds would be used to purchase and implement the equipment upgrades. \nEmergency Operations Center --Township of South Orange Village--$247,000\nSouth Orange is seeking to replace the emergency power generator in secondary emergency operations center (EOC).  Funds would be used for the replacement and installation of the generator. \nPredisaster Mitigation--City of Trenton--$300,000\nThis project is designed to prevent and protect Trenton’s water filtration plant from flood damage.  Potential flood damage to the plant could cause service interruptions and have an adverse impact on the public health of residents dependent upon the drinking water supply.  The requested funding would be used to make improvements to prevent damage to the sump pump system, install new flood doors, water proof to prevent damage and relocate instrumentation to higher ground.National homeland security funding:\n$4.17 billion, nearly $300 million above the administration’s request, in Homeland Security Grants will be awarded nationwide to first responders and partners in homeland security, including:\nState Grants -- $950 million --matching the request and 2009 funding level, for grants used to plan, equip and train local first responders to respond to terrorist attacks and catastrophic incidents, including $60 million for Operation Stonegarden. Urban Area Security Grants --$887 million --matching the request and $50 million above 2009, to help high-risk urban communities prevent, respond to, and recover from terrorist attacks. Rail/Transit Security Grants -- $300 million --$50 million above the request, to protect critical transit infrastructure, including freight rail, Amtrak and ferry systems in high-threat areas. Port Security Grants -- $300 million --$50 million above the request, to assist ports in enhancing maritime domain awareness and enhancing risk management capabilities to prevent, detect, and respond to terrorist attacks. Emergency Management Performance Grants-- $340 million --$25 million above the request and 2009, for all-hazard grants for state and local emergency managers. Fire Grants (including SAFER)-- $810 million --$220 million above the request and $35 million above 2009, to help local fire departments address communication, equipment and staffing problems. Of this total, $420 million is for SAFER, as requested, and $390 million is for fire grants. Metropolitan Medical Response System-- $41 million -- $1 million above the request, to help high-threat communities respond to mass casualty incidents. Interoperable Communications--$50 million--  matching the request and 2009, for help firefighters and emergency responders talk to each other during a crisis. Emergency Operations Centers: $60 million -- $25 million above 2009, to equip and upgrade central command facilities used by emergency personnel during disasters.\nChemical Security: $103.4 million -- for risk-based chemical facility security including $25 million above 2009 to support the coordination and management of regulating high-risk chemical facilities. The increase, combined with the conversion of contract employees to federal employees, will bring the total DHS chemical facility regulatory staffing to 246, which is 168 above 2009. The bill also includes a one year extension of DHS’s regulatory authority to secure chemical facilities.\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=222c9977-a8ea-4b4a-b88c-14deaf85033d,\"MENENDEZ HELPS SECURE MORE THAN $159 MILLION FOR NJ BEACHES, FLOOD CONTROL, ENERGY AND INFRASTRUCTURE\n                    \n                            Funding from Energy and Water Appropriations bill essential for New Jersey’s economy, safety and environment\n                    \n                      October 16, 2009\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ) hailed the final passage of the Energy and Water Appropriations bill, which authorizes more than $159 million in funding for beach replenishment, flood control, energy and infrastructure projects. After House and Senate passage, the bill awaits the President’s signature.\n“This substantial investment is critical to protecting and supporting our state’s economy while safeguarding lives and property in our state,” said Senator Menendez. “Nourishing our state’s beaches helps protect shore communities, which are home to thousands of families and which help drive the New Jersey economy. Families in our state are all too aware of the dangers that flooding poses to our safety and our property, which is why we are investing in projects to lower that risk. Funding for crucial infrastructure projects helps create jobs and ensures that our state remains competitive in the new economy . I am proud to have helped secure this important funding.”\nNew Jersey Projects include:Highlights•    $4.8 million - Barnegat Inlet to Little Egg Harbor Inlet (LBI) - Beach Replenishment Project•    $6.1 million - Great Egg Harbor Inlet and Peck Beach (Ocean City) - Beach Replenishment Project•    $1 million - Townsends Inlet to Cape May Inlet (Avalon and Stone Harbor) - Beach Replenishment Project•    $6.6 million for Raritan River Basin, Green Brook Sub-basin (flood control) – Construction Project•    $2.3 million for Joseph G. Minish Historic Waterfront Park in Newark (Bulkhead construction and Riverbank Stabilization) –Construction Project•    $90 million for NY & NJ Harbor Deepening –  ConstructionArmy Corps of Engineers\n$ 3.6 million for General Investigations                                                                                                 Hereford Inlet to Cape May Inlet   (shore protection)                                               $90,000NJ Alternative Long-Term Nourishment Study (shore protection)                              $90,000Delaware River Comprehensive (flood control)                                                        $296,000Delaware River Dredged Material Utilization PA, DE, & NJ                                      $90,000Delaware Estuary Salinity Monitoring Study (ecosystem restoration)                       $200,000Lower Saddle River (flood control)                                                                                           $327,000Hudson-Raritan Estuary, NY & NJ (ecosystem restoration)                                      $157,000HRE-Lower Passaic River Restoration Feasibility Study (Ecosystem Restoration) $170,000HRE – Hackensack Meadowlands (Ecosystem Restoration)                                    $224,000Stony Brook, Millstone River Basin (flood control)                                                    $152,000South River, Raritan River Basin (flood control)                                                        $314,000Shrewsbury River and Tributaries (flood control)                                                       $458,000Raritan Bay and Sandy Hook Bay, Union Beach (storm damage reduction)               $90,000Raritan Bay and Sandy Hook Bay, Leonardo (flood control)                                      $22,000Raritan Bay and Sandy Hook Bay (flood control)                                                                 $238,000Rahway River Basin    (ecosystem restoration)                                                       $238,000Peckman River and Tributaries (flood control)                                                          $314,000Passaic River Main Stem (flood control)                                                                 $90,000Passaic River, Harrison (flood control)                                                                    $90,000\n$122.5 million for Construction General (projects in italics indicates beach replenishment)\nBrigantine Inlet to Great Egg Harbor Inlet, Brigantine Island                                       $80,000Cape May Inlet to Lower Township                                                                          $189,000 Lower Cape May Meadows, Cape May Point                                                          $378,000Barnegat Inlet to Little Egg Harbor Inlet (LBI)                                                            $4,844,000Brigantine Inlet to Great Egg Harbor Inlet (Absecon Island)                                        $1,890,000Great Egg Harbor Inlet to Townsends Inlet                                                                $1,853,000Great Egg Harbor Inlet and Peck Beach (Ocean City)                                               $6,141,000Townsends Inlet to Cape May Inlet                                                                          $1,066,000Raritan River Basin, Green Brook Sub-basin (flood control)                                        $6,613,000Hackensack Meadowlands (flood control)                                                                 $230,000Joseph G. Minish Historic Waterfront Park (bulkhead/riverbank stabilization)               $2,350,000NY & NJ Harbor Deepening, NY&NJ                                                                        $90,000,000Raritan Bay and Sandy Hook Bay, Port Monmouth (storm damage reduction)             $921,000Raritan Bay and Sandy Hook Bay, NJ (storm damage reduction)                               $921,000Ramapo and Mahwah Rivers, Mahwah, NJ and Suffern, NY   (flood control)                 $100,000Passaic River Basin Flood Management, New Jersey    (floodway buyout)                  $5,000,000\n$30.3 million for Operations and Maintenance                                                                    Delaware River, Philadelphia to Trenton, NJ and PA (maintenance dredging)                $779,000Delaware River at Camden (maintenance dredging)                                                    $15,000Delaware River, Philadelphia to the Sea, PA (maintenance dredging)                           $18,626,000Barnegat Inlet    (maintenance dredging)                                                                   $334,000Manasquan River   (maintenance dredging)                                                                $152,000New Jersey Intracoastal Waterway    (maintenance dredging)                                      $385,000Absecon Inlet        (maintenance dredging)                                                                           $117,000Delaware Estuary Regional Sediment Management (RSM)                                          $200,000Salem River   (maintenance dredging)                                                                        $100,000Cold Spring Inlet (maintenance dredging)                                                                   $238,000NY Harbor, NY & NJ (Drift Removal)                                                                          $6,652,000NY Harbor, NY & NJ (Prevention of Obstructive Deposits)                                            $993,000Newark Bay, Hackensack and Passaic Rivers (maintenance dredging)                         $143,000Raritan River  (maintenance dredging)                                                                        $292,000Passaic River Flood Warning System                                                                        $526,000Shark River   (maintenance dredging)                                                                         $380,000Shoal Harbor and Compton Creek (maintenance dredging)                                           $80,000Inspection of Completed Works                                                                                 $195,000Raritan River to Arthur Kill Cut Off (maintenance dredging)                                           $190,000\nContinuing Authorities Program\nSeaside Park, Ocean County, NJ (Section 103 –flood control)Lincoln Park West, Ecosystem Restoration Study (Section 1135)NJIWW, Dredged Hole 35 Restoration, (Section204 – ecosystem restoration) Pennsville, Salem County, (Section 205 – flood control)Assunpink Creek, Hamilton Twp, (Section 205 – flood control)Jackson Brook, Morris County (Section 205- flood control)Musconetcong River Dam Removals, Milford  (Sec 206–ecosystem restoration)\nDepartment of Energy\nRowan University - Algae to Ethanol Research and Evaluation                                      $750,000 City of Elizabeth Solar Panels in Municipal Owned Buildings                                        $1,000,000Solar Panels on Hudson County Facilities                                                                              $550,000Trenton Fuel Works – Cellulosic Diesel Biorefinery                                                           $1,000,000\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=922a0ed8-9efe-4f32-af9a-8860db1f25e4,\"SENATOR MENENDEZ BRINGS MORE THAN $1.3 MILLION TO NJ FOR AGRICULTURE AND CONSERVATION PROJECTS; ANNOUNCES ADDITIONAL $656,610 IN GRANTS FUNDING\n                    \n                            Funding part of FY2010 Agriculture, Rural Development, Drug Administration, and Related Agencies Appropriations Act and FY2009 Specialty Crop Block Grant Program\n                    \n                      October 16, 2009\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ) announced an estimated $1.9 million in funding for key agriculture projets in New Jersey: $1.3 million from the FY2010 Agriculture, Rural Development , Drug Administration, and Related Agencies Appropriations Act and $656,610 million under the FY2009 Specialty Crop Block Grant Program. These investments are meant to promote farming and conservation efforts in New Jersey.\n“There is a reason New Jersey is the Garden State,” said Senator Menendez. “The produce from our farms is a driving force in our economy, and we cherish our open spaces and wildlife. These investments help keep our farms economically viable and help keep our families healthy with fresh food grown locally.”Senator Menendez helped secure a total of $1,286,000 in funding for the following projects in New Jersey from the FY2010 Agriculture, Rural Development, Drug Administration, and Related Agencies Appropriations Act:\n•    Blueberry and Cranberry protection -- Rutgers University, Marucci Center for Blueberry and Cranberry Research & Extension -- $550,000. The funding will be used to develop new cranberry and blueberry cultivars which enhance economic sustainability; develop environmentally sound insect and disease management technologies; identify health attributes of these native crops, and investigate new and value-added uses. Research on breeding and pest management will provide continued support for the $50 million a year industry. Past research has found bacterial anti-adherence mechanisms helping to fight urinary tract infection and dental caries, and other antioxidant properties. New Jersey is the nation’s second largest producer of high-bush blueberries and the nation’s third largest producer of cranberries.\n•    Land conservation -- New Jersey Association of Conservation Districts -- $236,000. Funds will be used for non-federal technical staff on New Jersey farms to address unique challenges associated with farms in urban settings; to develop/implement conservation practices to protect water quality in streams to benefit residents and enhance wildlife; and to retrain Conservation staff to perform conservation planning per new animal waste management rules affecting 7,000 animal owners. Controlling the erosion from agricultural lands and the nutrients from animal waste at the source is the most cost effective means to protect water quality. Federal funds will leverage state and local funds and enable more farms and animal owners to comply with animal waste management plans and environmental regulations.\n•    Gypsy Moth Pest Management -- New Jersey Department of Agriculture -- $500,000. The funds will be used to support and enhance gypsy moth control on effected communities and public lands.  Specifically, funds will go to cost share aerial treatments borne by local municipalities; for outreach in developing a web-based interactive online map showing the distribution of gypsy moth in New Jersey and proposed treatment areas; for technical support for salaries for field scouts and vehicle operation.  New Jersey has been particularly hard hit by gypsy moth devastation so this project will have statewide benefit, and the interactive online mapping tool will allow citizens to determine whether their properties are within proposed treatment areas; the mapping tool would also allow those individuals who may be pesticide-sensitive to easily identify and avoid proposed treatment areas. An additional $656,610 in funding were awarded to fund 9 projects under the FY2009 Specialty Crop Block Grant Program that will:\n•    Expand the marketing of and increase the demand for New Jersey specialty crops through the advertising and promotionof the Jersey Fresh local branding program. All recipients of the Specialty Crop Block Grant Program funded Jersey FreshMatched Funds Program grants will be limited to the promotion of specialty crops defined as fruits, vegetables, tree nuts,dried fruits, and nursery crops including floriculture.\n•    Partner with the New Jersey Nursery & Landscape Association to conduct direct consumer advertising in order to        promote the sale and use of New Jersey nursery products and related services.\n•    Partner with Garden State Wine Growers Association to redesign and develop the New Jersey Wine County Passport        Book/Wine Trail Program and promote the “Jersey Fresh Wine & Food Festival”.\n•    Partner with the New Jersey Peach Promotion Council to develop a new marketing theme that will be the foundation of        the proposed advertising and promotional campaign.\n•    Partner with the Northeast Organic Farming Association in New Jersey to provide business planning and training solely tonew farmers in the production and marketing of organic fruit and vegetable crops.\n•    Partner with the Vegetable Growers Association of New Jersey to work with the Food Innovation Center at Rutgers         University to develop product prototypes for a “Jersey Tomato Gravy” from surplus and/or non-standard grade tomatoes,         perform initial consumer response panels, and production run of the accepted prototype.\n•    Partner with the Outer Coastal Plain Vineyard Association to identify and select optimum grape growing sites and grape                varieties and develop a list of research priorities to address critical issues in optimizing high quality wine grape production.\n•    Partner with Tri-County Cooperative Auction Market Association, which only sells vegetables, fruits, ornamental flowers                and nursery stock produced in New Jersey, to create comprehensive storage and distribution efficiencies for an expanded                Community Supported Agriculture operation as well as properly store and distribute nursery stock items.\n•    Perform pre-award and post-award activities in order to administrate the Specialty Crop Block Grant Program funding and                ensure that the State Agency and sub-awardees abide by Federal and State requirements and regulations.\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=beb56575-ea9f-46d8-a6eb-c2e18834d10d,\"MENENDEZ, BOOKER ANNOUNCE $2.8 MILLION FOR ENERGY EFFICIENCY PROGRAMS IN NEWARK\n                    \n                             Funding, distributed through program created by Menendez, will support Newark’s comprehensive Climate Prosperity Initiative\n                    \n                      October 16, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) and Newark Mayor Cory A. Booker today announced $2,836,300 for the City of Newark through the Energy Efficiency and Conservation Block Grant program, which Senator Menendez created in Congress in 2007. The funding will bolster the city’s successful Climate Prosperity Initiative.\nThis energy efficiency program will distribute a total of $73 million to New Jersey cities, towns and counties with federal funding made possible by the American Recovery and Reinvestment Act. It supports municipal energy-saving initiatives and improves energy efficiency in transportation, buildings, and other sectors.\n“New Jersey’s largest city has helped lead the state in cutting energy costs, reducing energy consumption and creating jobs through energy efficiency,” said Senator Menendez. “This is the type of activity that not only helps spur an economic recovery but also lays the foundation for economic security in the 21st Century. An energy efficient city is one that saves taxpayers money and helps clean the air we breathe. That is where Newark is headed, and I am proud to have created this program to support local governments these efforts.”\n“Every day Newark is becoming a ‘greener and cleaner’ model of urban transformation, and thanks to the leadership of Senator Menendez and further support received through this Energy Efficiency and Conservation Block Grant, Newark will harness the opportunities within the climate change challenge and expand its Climate Prosperity Initiative,” said Mayor Booker. “The funds will be used to realize financial and environmental savings which will support the long term sustainability of our city and our nation. Specifically, Newark will create a Climate Prosperity Plan to strategically guide our City wide carbon reduction efforts; as well as retrofit municipal buildings and install energy efficient building management technologies. A portion of the funding will be used to connect residents and businesses to available energy efficiency cost savings programs and support the greening of our neighborhoods.”\nBuildings account for over 60% of the City’s carbon footprint, and making them more energy efficient will create green jobs, lead to long term savings and support our local economy. \nThe City has already partnered with the NJ Clean Energy Program, its public utility PSE&G, its local weatherization providers and faith based organizations.  Working with partners, the City has distributed over 11,000 compact fluorescent light bulbs along with information connecting residents to assistance; held fairs with on-site weatherization eligibility screening; and increased publicity about available cost saving assistance programs.  The City and partners are also conducting targeted outreach to the commercial sector.  \n                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2d0c0e2d-b830-479e-b724-7e1794c6c49d,\"MENENDEZ ANNOUNCES $1.3 MILLION FOR NJ MUNICIPALITIES FROM HIS ENERGY EFFICIENCY PROGRAM \n                    \n                      October 16, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today announced a total of $1,327,800 in funding for four New Jersey municipalities from the Energy Efficiency and Conservation Block Grant program, which he created as part of energy legislation in 2007. The program supports municipal energy-saving initiatives and improves energy efficiency in transportation, buildings, and other sectors. It will deliver a total of $73 million to New Jersey cities, towns and counties through the American Recovery and Reinvestment Act.\nNew Jersey municipalities receiving funding announced today include:\n•    Township of Piscataway -- $528,800•    Township of North Bergen -- $514,000•    Paterson -- $250,000•    Township of Union -- $35,000\n“These are the types of investments that help spur an economic recovery now while laying the groundwork for economic security in the long term,” said Menendez. “With this program, we are addressing multiple issues at once by creating jobs, cutting energy costs, cleaning the air we breathe and creating the conditions that save taxpayers money. That’s why I made it a top priority of mine to create this program, and it has fit well as part of the economic recovery package.”\nAmong the uses for this funding, North Bergen is planning energy-efficient HVAC upgrades in the town hall. Paterson will receive a total of $1,344,800 and is using the funding for a modernization of the hydroelectric power plant at Great Falls, to make city street and recreation facility lights more energy efficient and to study energy efficiency upgrades for city buildings.\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1d3bfa21-b865-4d8e-8f28-b7d81e2dd7a7,\"MENENDEZ ANNOUNCES $1.2 MILLION FOR HYBRID TRUCKS TO REDUCE DIESEL EMISSIONS IN NJ REGION\n                    \n                      October 14, 2009\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ), a member of the Senate Energy and Natural Resources Committee, announced that the U.S. Environmental Protection Agency has awarded the region that includes New Jersey, New York, and Puerto Rico (EPA Region 2) with $1.2 million from the economic recovery package to reduce diesel emissions, boost job creation, and promote a healthy environment. Under the management of the not for profit organization, CALSTART, the trucks belonging to three previously identified fleets operating within New York, New Jersey, and Puerto Rico will be replaced with new advance technology hybrid trucks to improve regional air quality.\n“A strong 21st century economy will be one in which we are more energy efficient and producing fewer emissions,” said Senator Menendez. “By investing in projects and jobs related to cleaning the air we breathe, we are contributing to our nation’s economic security and the health of its citizens. This funding will help ensure that the transportation sector in New Jersey will fit in that type of economy.”\nA total of 51 old delivery trucks will be replaced with diesel-electric hybrid trucks certified with EPA’s 2007 standards under this project. Funds will be provided under the American Reinvestment and Recovery Act (ARRA) 2009 National Clean Diesel Funding Assistance Program and distributed under an application by CALSTART, a not for profit organization focused on advancing clean technologies by providing technical and organizational support. This project and others have been chosen to maximize the funds’ economic impact and diesel emission reductions.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a5aaeff3-8b6d-4ddb-968f-9644b2f876aa,\"MENENDEZ TO VOTE IN FAVOR OF HEALTH INSURANCE REFORM BILL IN FINANCE COMMITTEE\n                    \n                            NJ Senator says moving the process forward is important, but also important to continue pursuing improvements on affordability, inclusion of public option. Menendez successfully includes slew of amendments to help expand access, lower costs, protect consumers.\n                    \n                      October 13, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today will vote in favor of the Finance Committee’s health insurance reform bill. Menendez says that he still has concerns about the Finance bill on the affordability of insurance for those in the new insurance exchange and on the lack of a public insurance plan option, and he believes those need to be addressed when the bill is before the full Senate. However, he also said that enough improvements were made during the committee markup to warrant moving the process forward in order to ultimately craft and enact effective landmark health insurance reform.\nDuring the committee markup, Menendez was able to successfully include a number of his amendments to the legislation, including stronger consumer protections, guaranteeing coverage for behavioral health treatments and a tax credit for start-up biotechnology firms on the cusp of medical innovation. He will work to protect those provisions throughout the remainder of the legislative process.\n“Getting this legislation through the rigors of the Finance Committee is a watershed moment in the effort to reform the health insurance system, which has long been too expensive and too inaccessible for too many families,” said Menendez. “This committee is a high hurdle to clear, but it is also vital to clear this hurdle so that, in the end, we can deliver the type of real reform that is badly needed.\n“My vote comes with the understanding that I fully expect improvements to be made to the bill as currently constituted before it becomes a final product in the full Senate. Certainly, some upgrades were made in the Finance Committee, which is a testament to Chairman Baucus, but they are not yet enough. There are remaining questions as to whether health coverage in the new insurance exchange will be affordable for all and there is a gaping hole that should be filled by a public option, among other issues. Through the remainder of the legislative process, we have to continue to improve the bill so that quality health insurance is affordable and accessible for everyone.\n“I am proud to have included a number of my amendments in the legislation, which will help lower health insurance costs, protect consumers and expand access to health coverage. My amendment to guarantee the coverage of behavioral health treatments will help bring economic security and peace of mind to many families dealing with autism or other behavioral health conditions. My amendment to provide a tax credit to small biotechnology firms can help spark medical innovation that improves the health of our families, lowers the costs of health care and creates jobs. And my amendments to protect consumers will help make things even between families and their insurance companies.”\n“At this stage, to vote against the bill before us is to do nothing. It would be a vote to stay the course and let insurance companies continue to treat the health of the American people as an investment, minimizing risk and maximizing profitability. To vote yes is to do what’s right. That being said, more work will need to be done to pass what I consider to be comprehensive health care reform that is consumer-friendly, affordable, and provides a real choice for every American.”\nVideo of Menendez’s closing remarks in Finance Committee: http://www.youtube.com/watch?v=kSUqwTCd-mc.\nMENENDEZ AMENDMENTS INCLUDED IN THE FINANCE COMMITTEE HEALTH INSURANCE REFORM BILL\n•    Require insurance plans to provide behavioral health treatments. Plans in the exchange must cover behavioral health treatments as part of the minimum benefits standard. For example, applied behavior analysis is a behavioral health treatment for people with autism. Unless behavioral health treatment is explicitly spelled out as a covered benefit, people with autism are not likely to receive comprehensive healthcare.\n•    Tax credit for biotechnology. Creates a credit that would encourage investments in new therapies to prevent, diagnose, and treat acute and chronic disease, lower health care costs.\n•    Excluding middle-class families, seniors from excise tax on high-value insurance plans (joined Sen. Kerry on amendment). Successfully fought to raise tax thresholds for retirees and high-risk workers so that their additional health needs could be recognized. Successfully fought to raise the indexing of the high premium excise tax threshold to save millions of family policies from being hit.\n•    Require private insurers to fully reimburse Federally-Qualified Health Centers in the exchange (offered amendment with Sen. Lincoln). This amendment would ensure that FQHCs, which are a primary health care option for millions, would not lose revenue when treating newly insured patients gaining coverage through the new health insurance exchanges.\n•    Out-of-pocket cost limit for families between 300-400 percent of the federal poverty level. For those between 300-400 percent of FPL, within the same actuarial value, the benefit will include an out-of-pocket limit equal to two-thirds of the Health Savings Account (HSA) current law limit.\n•    Women’s Medical Home (included in bill prior to markup). Legislation creates an Innovation Center within CMS to test and evaluate different structures to increase patient care and lower cost. The center is required to test a number of different models, including a “medical home that addresses women’s unique health care needs.” \n•    Child-only insurance option and subsidies in the exchange.  Ensures that minor children qualify as exchange eligible individuals and would also provide for the availability of child-only health insurance coverage in the exchanges.\n•    Consumer protection for emergency services. Requires that each health care plan and insurance issuer offering coverage in the exchange must provide enrolled individuals coverage for emergency services without regard to prior authorization.\n•    Internal and external claims appeal process for insurance plans. Requires that each health care plan and health care insurance issuer offering coverage in the exchange must provide an internal claims appeal process and each state must provide an external review process for plans in the individual and small group markets.  •    Ombudsman assistance with internal appeals. Allows policyholders to access the ombudsman created in the legislation for help with internal appeals.\n•    Ombudsman assistance with tax credit appeals. Allow policyholders to access the ombudsman for assistance in resolving problems with their premium and cost-sharing credits, and with assistance in filing appeals as needed.  •    Support, education, and research for postpartum depression. Provides support services to women suffering from postpartum depression and psychosis and helps educate mothers and their families about these conditions.  In addition, supports research into the causes, diagnoses and treatments for postpartum depression and psychosis.\n•    Rural Floor. The provision in current law acknowledges the costs of hospitals operating in urban states by ensuring that the wage index used in determining Medicare reimbursement in those states not fall below an \"\"imputed rural floor\"\".   The provision included in the Finance bill will ensure that the cost of those payments be distributed in a budget-neutral fashion across all hospitals nationwide and not on hospitals within a given state.\n•    Urban Medicare Hospitals. Some urban hospitals are highly dependent on Medicare payments because they serve high proportions of Medicare patients, but, unlike many otherwise similar hospitals, they do not receive any special add-on payments. This would provide for a study for a special add-on payment to be afforded this select group of hospitals that could be designated as urban Medicare-dependent hospitals.\n•    Value-Based Purchasing for Hospital Acquired Infections. This measure includes healthcare-associated infections, as measured by the prevention metrics and targets established in the Department of Health and Human Services’ HHS Action Plan to Prevent Healthcare-Associated Infections or any successor plan.\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a24ff384-e618-4a78-bba3-fc2552ed9918,\"MENENDEZ ANNOUNCES $1.5 MILLION IN COMMUNITY DEVELOPMENT FUNDING FOR TWO ORGANIZATIONS IN NJ\n                    \n                            Funds awarded by the U.S. Department of the Treasury’s Community Development Financial Institutions (CDFI) Fund\n                    \n                      October 9, 2009\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ) announced that the U.S. Department of the Treasury’s Community Development Financial Institutions (CDFI) Fund has awarded City National Bancshares Corporation and Greater Newark Enterprises Corporation, two organizations based in New Jersey, a total of $1.5 million. The CDFI Fund is a program that strengthens the capacity of private, for-profit and nonprofit financial institutions that serve low-income people and underserved communities lacking adequate access to affordable financial products and services.\n“This important investment for our communities will help us recover from the economic crisis, while laying the foundation for long term economic security,” said Menendez. “The organizations that receive this funding will help ensure that the families that need it most can access critical financing, which in turn will allow them to better face these difficult times and access basic resources vital to their children’s future. Small businesses owners will have an opportunity to increase their capital with financial institutions that can meet their needs.  These funds will help promote the financial recovery and empowerment of our families and communities for generations to come.” Description of the corporations that will receive this funding:\nCity National Bancshares Corporation (awarded $1,000,000)\nA for-profit bank holding company in operation since 1983 that provides commercial banking services to low-income target areas in the cities of Newark, Paterson, East Orange, and Irvington in New Jersey and Roosevelt, Hempstead, Brooklyn and Northern New York City in New York. The company’s banking services include: deposit accounts, business/microloans, mortgages, and real estate loan products.\nGreater Newark Enterprises Corporation (awarded $500,000)\nA certified CDFI nonprofit loan fund established in 2005. GNEC provides microloans, real estate loans, and small business training to its community partners, entrepreneurs and businesses in low income areas in Northern New Jersey. The company will use this funding as lending capital and predevelopment capital for a neighborhood commercial building and operations.\nFor more information on the Community Development Financial Institutions (CDFI) Fund, click here: http://www.cdfifund.gov/\n                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5cbbb4db-714c-4a45-872b-a5aeb430752e,\"MENENDEZ OPPOSES INTERIOR NOMINEE OVER ENVIRONMENTAL CONCERNS\n                    \n                            Questions on Pizarchik related to coal ash disposal, mountain-top mining\n                    \n                      October 8, 2009\n                     WASHINGTON – Today in the Senate Energy and Natural Resources Committee, U.S. Senator Robert Menendez (D-NJ) went on the record in opposition to the nomination of Jospeh Pizarchik to be the US Department Interior’s Director of the Office of Surface Mining Reclamation and Enforcement. Menendez released the following statement after the Committee’s business meeting, citing questions about Pizarchik’s views on coal ash disposal and mountain-top mining:\n“Transitioning to a new clean energy economy requires people who are willing to break free from the inertia of doing things the way they have always been done.  Unfortunately, I do not believe that Mr. Pizarchik is one of these people. In this position, he would be a key part of a team that will decide two vital issues: how we dispose of coal ash and how we regulate mountain top removal mining. From what I have heard from community groups in Pennsylvania, from my own questioning of him in committee, his answers to my written inquiries, and a follow up meeting with my staff, I do not believe Mr. Pizarchik is willing to look at these issues with a fresh eye.  When the matter at hand is the very health and safety of our citizens and the beauty of our landscapes, I simply cannot take the chance that our government will simply do more of the same.”\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=197eb004-4f88-4a13-b110-6822e3340b0b,\"MENENDEZ JOINS WOMEN SENATORS IN TOUTING BENEFITS OF HEALTH INSURANCE REFORM FOR WOMEN\n                    \n                            Emphasis on preventative care, ending gender discrimination in pre-existing condition denials expected to help women\n                    \n                      October 8, 2009\n                     WASHINGTON – This morning, a group of women Senators took to the floor of the U.S. Senate to tout the benefits robust health insurance reform will have for women. Following their remarks, U.S. Senator Robert Menendez (D-NJ), who has been a champion for health care issues that are specific to women, released the following statement:\n“My colleagues made a strong, unified statement this morning, which underscores the need to bring real reform to the system.  An effective health insurance system removes the obstacles that can prevent women from accessing the type of unique care they need for the unique aspects of their health. That’s the type of system this reform will build.\n“When we reform the health insurance system, we will do away with gender discrimination in insurance coverage and will put an emphasis on preventive care, which is so important for routine mammograms and maternity care. With more than half of women not eligible for employer-sponsored insurance, they will receive more insurance security through the new insurance exchange.   I am working hard to get my amendment to guarantee insurance coverage for pregnancies included in the final bill. And I have gained inclusion of a provision focused on giving women access to a ‘medical home’ attuned to their specific needs.\n“Women deserve greater protections than they have today in many areas – not the least of which is healthcare.  We owe this much to our mothers and our daughters.”\nMenendez has an amendment that would prevent basic health insurance plans from denying benefits for pregnancies, which he is working to have included in the final bill.  He was able to include in the Finance Committee bill a provision to examine a program that would gives women access to a “medical home” – for instance a physician or federally-qualified  health center – who can manage their total health care and focus on their unique health care needs.\nHow Health Insurance Reform Will Help Women(prepared by the Senate Democratic Policy Committee)\nLowering Costs for American Families\n•    Preventive Care for Better Healtho    One in five women over the age of 50 nationwide has not received a mammogram in the past two years. Maternity benefits are often not provided in health plans in the individual insurance market. By ensuring coverage of prevention and basic health services, including maternity benefits, reform will create a system that provides health care and not just sick care.\n•    Insurance Industry Reforms that Save You Moneyo    Senate health insurance reform will place a cap on what insurance companies can force you to pay in out of pocket expenses, co-pays and deductibles. Over half of women report delaying needed care because of cost and one-third of women were forced to make a difficult tradeoff such as giving up basic necessities in order to get health care.\nProtecting Choices for American Families\n•    One-Stop Shopping - Putting Families in Chargeo    Women are often the decision-makers when it comes to health care for their families. Health reform will create a health insurance exchange so you can easily compare prices, benefits and performance of health plans and decide which quality affordable option is right for you and your family. With health insurance reform, you will have increased choices and increased competition that holds private insurers accountable. It’s your choice.\n•    Insurance Securityo    Less than half of women have the option of obtaining health insurance through a job. By creating a health insurance exchange, health reform will guarantee that you will always have choices of quality, affordable health insurance if you lose your job, switch jobs, move or get sick.\n•     Strengthening the Employer System of Health Careo    Sixty million women currently have health insurance through an employer. Health reform will build upon the strong foundation of employer-based health insurance: if you like what you have, you can keep it.\nAssuring Stable, Secure Health Care for Women and American Families\n•    Ending Discrimination for Gender or Pre-Existing Conditionso    Right now, a healthy 22 year old woman can be charged premiums 150% higher than a 22 year old man. Health reform will end discrimination that charges you more because of your gender and it prevents any insurance company from denying coverage based on a person’s medical history.\n•    Quality Care for American Childreno    Health reform will require every insurance company to provide quality coverage for America’s kids. By ensuring coverage for dental and eye care, American families will have increased peace of mindand our children will be healthier.\n                                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=36202a63-a4da-44af-8edb-11e2328148ff,\"Menendez Secures Health Insurance Reform Amendment To Spur Biotechnology Innovation \n                    \n                            Tax credits to be available for emerging firms developing therapeutic discovery projects An estimates 86% of biotech companies in NJ would qualify\n                    \n                      October 7, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Finance Committee, has gained inclusion of his amendment to spur medical innovation by biotechnology companies as part of the committee’s health insurance reform bill. Menendez’s amendment will provide tax credits to small biotechnology firms (many of which are newly created) of up to 50 percent of their investments in qualified therapeutic discovery projects that have to potential to address unmet needs and lower health care costs. An estimate 86 percent of New Jersey biotech firms are emerging companies that would qualify for this credit.\n\n“Medical innovation is key to saving lives, improving health and lowering health care costs, not to mention creating jobs and new economic sectors,” said Menendez. “What today is a fledging biotechnology firm short on resources but long on ideas can tomorrow change the world, saving millions of lives and employing thousands of workers. Vital research and development could ultimately produce results that might improve health care and lower costs in the long-term. \n“In New Jersey, we have a history of leading innovation, from Thomas Edison to the medical breakthroughs of today. As a leader in biotechnology, I expect New Jersey to continue to be on the front lines with the help of this investment. I applaud Chairman Baucus and my other colleagues for recognizing the potential of this amendment, and I will work to ensure that it remains part of the reform we eventually enact into law.”\n\nJim Greenwood, CEO of the Biotechnology Industry Organization (BIO) said: “Senator Menendez’s amendment will advance the key goal of healthcare reform: that all Americans have access to quality healthcare, including innovative, high-quality therapies.  Pioneering, research-intensive small businesses would gain critical support through this amendment to continue their cutting-edge projects to develop advanced medicines and, ultimately, cures for the world’s most debilitating diseases.\n\n“Emerging research-intensive biotech companies have to raise hundreds of millions of dollars during a decade-long period to bring new treatments to the market for H1N1 (swine flu), cancer, Alzheimer’s, and many other unmet medical needs.  Due to the current financial crisis, for two years, biotech companies have faced dramatic challenges accessing the necessary capital to fund on-going research and development of promising therapies.  As a result, many companies are being forced to delay or abandon promising research projects.”\n\nUnder the Menendez amendment, businesses with 250 employees or fewer will be eligible for tax credits equal to 50 percent of investments in qualified therapeutic discovery projects. These credits will be used to fund the most promising research in areas of unmet need, reducing long-term health care costs, and advancing the goal of finding a cure for cancer.  A total of $1 billion will be allotted for this program between 2009 and 2010.\nThe Menendez amendment is supported by a diverse array of patient advocacy organizations – such as the National Multiple Sclerosis Society, Easter Seals, and the Alzheimer’s Drug Discovery Foundation.\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2c552bef-3a72-4b30-9c02-1672211d09be,\"IN HONOR OF NJ’S NOBEL PRIZE RECIPIENTS, MENENDEZ PLACES OFFICIAL STATEMENT INTO THE CONGRESSIONAL RECORD\n                    \n                      October 6, 2009\n                     WASHINGTON – Today, two New Jersey scientists – Drs. Willard S. Boyle and George E. Smith -- were awarded the Nobel Prize in Physics. Below is the official statement U.S. Senator Robert Menendez (D-NJ) has submitted into the Congressional Record in their honor.\nThe following is text of the statement:\nMr. MENENDEZ. Mr. President, I rise to extend my deepest congratulations to Drs. Willard S. Boyle and George E. Smith – two New Jersey scientists who have been awarded the Nobel Prize in Physics, an incredible honor for extraordinary ingenuity in their chosen field and fitting recognition for their outstanding achievement.\nThey have expanded the boundaries of science, inventing something most of us do not understand, but which has made a difference in our lives. The invention of the charged-coupled device, or CCD, now found in digital cameras used around the world and by NASA on the ground-breaking Hubble Telescope, revolutionized how we take photographs and manipulate and transfer images. It has given us insight into the deepest reaches of space, allowed us to see remarkable images that have made us better understand the vastness and magnificence of the universe, and better appreciate the simple images in our family photographs.\nDr. Boyle and Dr. Smith have done their work at Bell Laboratories in Murray Hill, New Jersey and now have enriched our state’s proud tradition of  scientific breakthrough and innovation. We can add their names to those of Albert Einstein, who made Princeton his base, and Thomas Edison, who from his Garden State lab invented the incandescent light bulb that lit the world. The names of Boyle and Smith will now loom large in the scientific history of our state. They have made New Jersey and the United States very proud.\nTheir contribution to science is in their remarkable discovery, but their legacy to mankind is in their pioneering spirit, their ingenuity, and their quest to look further, think harder, and discover what no one else could.\nI join with my colleagues and with every American in thanking them for making our lives better and wish them the very best as they continue careers that brought them to this place, having earned a Nobel Prize almost forty years to the day after they began their long scientific journey.\nTo Dr. Boyle and Dr. Smith, we offer the best wishes of a grateful nation.\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=73103274-3cfd-4e2a-ae2e-95ea76e58cd8,\"SENATORS MENENDEZ, BOXER, BINGAMAN MEET WITH HISPANIC SENIOR CITIZENS  ABOUT HEALTH INSURANCE REFORM \n                    \n                      October 6, 2009\n                     WASHINGTON – Senators Robert Menéndez (D-NJ) Senator Barbara Boxer (D-CA) today met with groups who represent Hispanic older adults across the country to discuss how health insurance reform will benefit this segment of the population. They also dispelled myths on how health care reform would affect seniors:\nSenator Menéndez said: “Latinos have a greater stake in health care reform than realized. They live up to five or six years longer, on average, than the rest of the U.S. population. They are also the least likely to have health insurance or access to quality healthcare. That must change. We need health care reform to provide everyone access to affordable health care. We especially need to make sure our health care system is equipped and ready to meet the needs of an aging population – by providing the care all seniors need, at the best cost, for as long as they need it.”\nSenator Boxer said: “Health insurance reform will benefit all our seniors – especially Hispanic senirors, who are fastest growing group of seniors in the country Working together, we will pass a bill that invests in preventive care, protects Medicare, improves the quality of care and seniors and lowers health care costs for all Americans.”\nSenator Bingaman said: “Clearly, the need for health insurance reform is urgent for the entire country.  But this is particularly true for Hispanics, who are more likely to be uninsured.    I hope that we can move swiftly to finalize health insurance reform legislation so that we can get it to President Obama before the end of the year.”\nYanira Cruz, President and CEO, National Hispanic Council on Aging, said: “By 2050, there will be 2 billion older people in the world, which means it will be the first time in human history, older adults will outnumber the young. Therefore, as we prepare for this population shift, we need to tackle health care reform, one the biggest pieces of legislations in decades. Affordable and quality health care is critical for all Americans, especially Hispanic older adults. That is why NHCOA is committed to working with Congress to pass comprehensive health care reform which allows all older adults to age with dignity and enjoy a good quality of life.”\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ea9d62dd-26af-403f-8fda-42a8f6e96098,\"SENS. MENENDEZ, LAUTENBERG, REP. SIRES, MAYOR SMITH ANNOUNCE $3.56 MILLION IN ECONOMIC RECOVERY FUNDING FOR CONSTRUCTION OF NEW BAYONNE FIREHOUSE\n                    \n                      October 5, 2009\n                     BAYONNE, N.J. – Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ), Rep. Albio Sires (D-NJ-13), Mayor Mark Smith and Fire Chief Greg Rogers today announced the Bayonne Fire Department will receive $3.56 million from the American Recovery and Reinvestment Act’s (ARRA) Fire Station Construction Grant (SCG) program to build a new firehouse.  Currently, one Bayonne fire station is operating out of a large temporary tent.\n“This investment in Bayonne’s public safety infrastructure will provide firefighters with the facilities they need to best protect the community,” stated Lautenberg.  “Bayonne’s bravest face a unique set of challenges on this urban peninsula and must be prepared with the resources necessary to do their jobs.  Securing one of the largest firehouse construction grants in the country will improve conditions for Bayonne firefighters and help them continue their tradition of excellence.”                    “With this badly needed investment, those who deserve our attention most are getting the help they need, and Bayonne and all of us in New Jersey are the beneficiaries,” stated Robert Menendez.  “These firefighters have had to do their jobs in temporary quarters which, needless to say, have been neither sustainable nor suitable to their needs or the city’s desires. Yet, under the most difficult circumstances, they responded to over a quarter of the city’s fire runs in 2008 with dedication, courage, and professionalism. We have nothing but admiration for their extraordinary effort and we commend them for it. But things are about to change for the better.”\n“This grant will give the city of Bayonne the financial means to finally embark on the final stages of this crucial fire project,” said Congressman Sires. “Our new station will increase the capabilities of Bayonne’s fire department to protect communities from fire hazards while at the same time creating jobs and healing the 13th district’s economy.  I am happy to have supported Bayonne’s application for this grant earlier this month.  I am pleased that the Department of Homeland Security has recognized the value of this project to our district’s security and economic growth.”\n“Sen. Lautenberg, Sen. Menendez and Congressman Sires have, once again, proven themselves to be true friends of New Jersey’s citizens by looking out for the public safety of our children, our families and our senior citizens,” said Mayor Smith.  “This important grant will allow us to build a brand new fire station to meet the needs of our community without an increase in property taxes.”\nThe SCG program is a new program created by the ARRA to award grants to local fire departments for the construction and modernization of fire stations.  Prior to this program there were no federal funding opportunities to assist local fire stations with construction needs.  The Recovery Act allocated $210 million for the construction and modernization of fire stations across the country.  The award to the Bayonne Fire Department is the sixth largest in the country.\nIn selecting grant recipients, the Federal Emergency Management Agency (FEMA) gave high priority to projects that would replace unsafe or uninhabitable structures, expand fire protection coverage and were in position to be built quickly. \nThe City of Bayonne is planning to build a new, 15,000 square foot fire station on a 1.8 acre vacant lot northeast of the current temporary location.   In addition to fire station facilities, the building will house a training room to assist in meeting the increasing educational requirements of a post 9/11 world.  The Bayonne Fire Department routinely hosts many courses for the community, U.S. Coast Guard personnel and countywide interagency and interoperable training.\nThe site of the new fire station is centrally located near a two-lane bridge that overpasses a congested four lane state highway.  Also, construction is beginning on a nearby intersection that will include a traffic light that will be controlled by the Fire Department.  This will help to reduce response times, increase the safety, health and well-being of firefighters and also help to provide better fire coverage.  The station will be staffed 24 hours a day, 7 days a week. \n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=130c8428-df89-4eca-a515-0192789f9370,\"MENENDEZ ANNOUNCES $10.8 MILLION IN EDUCATION FUNDING OVER A 5 YEAR PERIOD FOR WILLIAM PATERSON UNIVERSITY IN NJ \n                    \n                            Funding will help improve academic achievement of K-12 students in high need urban schools through recruitment, preparation and achievement of qualified teachers \n                    \n                      October 2, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today announced that the US Department of Education has awarded William Paterson University $10,810,856 in funding under the Teacher Quality Partnership Grants Program to be awarded over a five year period. \n“Our youth is our future. Investing in the teachers who help guide student development will help ensure they are able to fulfill their God-given potential and are well equipped to make valuable contributions to our society. This not only strengthens the fabric of our nation, it helps ensure we remain economically competitive. A modern educational system appropriate to the needs of our communities is essential to ensuring that we emerge successfully from this economic crisis, to our long term economic stability, and to our continued leadership in the world,” said Senator Menendez.\n“Highly qualified teachers are a critical need in urban districts throughout New Jersey,” says Edward Weil, provost and vice president for academic affairs at William Paterson University. “Through this federal grant, we will be able to work to improve the academic achievement of students in six high-need New Jersey urban school districts by recruiting and retaining highly qualified teachers. We are pleased to continue our decade-long partnership with Kean and Rowan universities in this statewide effort to improve teacher education.”\nThe Garden State Partnership for Teacher Quality (GSPTQ) will improve the academic achievement of K-12 students in high need urban schools through the recruitment, preparation and retention of highly qualified teachers in New Jersey. By reforming the Pre-Baccalaureate programs at partnering universities and establishing the Garden State Urban Teacher Residency Program, which will culminate in a teacher dual certification and master’s degree program, the project will ensure highly qualified teachers with expertise in areas of critical shortage including special education, ESL, and bilingual education. Fifteen Professional Development Schools will be established as part of the Residency Program, to support and retain teachers and educational leaders in New Jersey’s most challenging urban communities. William Parterson University will is one of the partnering institutions. Other partnering universities include the Colleges of Education and Arts and Sciences at Kean University, and Rowan University, in collaboration with high-need LEAs of Bridgeton, Camden, Jersey City, Passaic, Paterson, Passaic and Union City and the New Jersey Department of Education. It is estimated that this program will have an impact on a total of 2,500 new teachers every year and 92,000 students in the highest need school districts in our state.\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a8cdf47a-eb28-4728-b766-b0275350e4b4,\"MENENDEZ STATEMENT ON EMPIRE STATE BUILDING’S CELEBRATION OF PEOPLE’S REPUBLIC OF CHINA\n                    \n                      October 1, 2009\n                     WASHINGTON – This week, the Empire State Building has been lit in red and yellow to honor the 60th anniversary of the People’s Republic of China – a communist regime that has been associated with oppression and human rights suppression. U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, released the following statement:“I find it distasteful that one of the foremost symbols of our free nation would be draped in the colors of a government that has systematically restricted freedom for 60 years. Such a display does not deserve to share a skyline with the Statue of Liberty. It is an affront to those who have been killed, those who have been stifled and those who have been driven into exile over the past six decades. It is an affront to the ideals that our great nation was built upon.”                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9cc2bd9e-8d29-4fc3-9de4-02136691ea6e,\"UPDATED: MENENDEZ ANNOUNCEMENT OF $14 MILLION FOR STATE OF NJ FROM LATEST BATCH OF HIS ENERGY EFFICIENCY PROGRAM\n                    \n                            Funds are awarded to New Jersey State Energy Office to use at state and local levels\n                    \n                      October 1, 2009\n                     \n\n<!--\n /* Font Definitions */\n @font-face\n\t{\"\"Cambria Math\"\";\n\tpanose-1:2 4 5 3 5 4 6 3 2 4;\n\tmso-font-alt:\"\"Calisto MT\"\";}\n@font-face\n\t{\n\tpanose-1:2 15 5 2 2 2 4 3 2 4;\n\tmso-font-alt:\"\"Times New Roman\"\";}\n /* Style Definitions */\n p.MsoNormal, li.MsoNormal, div.MsoNormal\n\t{\n\tmso-style-parent:\"\"\"\";\n\tmargin:0in;\n\tmargin-bottom:.0001pt;\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";}\n@page Section1\n\t{:8.5in 11.0in;\n\tmargin:1.0in 1.0in 1.0in 1.0in;}\ndiv.Section1\n\t{page:Section1;}\n-->\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";                                                                           ### \n\n\n                        \n                        \n\t\t\t\t\t\tvar addthis_pub=\"\"senatormerkley\"\";\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f86ea9cc-967b-4355-a64f-e5c35fd53415,\"MENENDEZ ANNOUNCES MAJOR FUNDING FOR 167 MEDICAL RESEARCH INITIATIVES IN NJ\n                    \n                            New Jersey institutions awarded grants out of $5 billion from economic recovery package\n                    \n                      October 1, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today announced a total of 167 research projects in New Jersey will receive funding as part of the $5 billion in National Institutes of Health grants unveiled today by President Obama. These grants, funded through the American Recovery and Reinvestment Act, would fund key priorities and innovative projects in the medical field, including research for cancer, heart disease and other chronic conditions and terminal diseases. More than 12,000 grants were awarded nationwide.\n“Investing in biomedical innovation is an investment in our families’ health, our competitiveness, and our economic recovery.” said Menendez. “These are funds that can save lives, create jobs and ensure that New Jersey remains at the forefront of the biomedical research field.”\nClick here for a complete list of the research projects in New Jersey that will receive funding:\nhttp://report.nih.gov/recovery/arragrants.cfm\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=526b0cf7-64dd-4aae-bf4e-6b81342fafac,\"MENENDEZ LAUNCHES NEW OFFICIAL WEBSITE\n                    \n                            New menendez.senate.gov makes it easier for constituents to access services, get information about Menendez’s activities in the Senate\n                    \n                      October 1, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today launched an updated and renovated official website – menendez.senate.gov – with the focus on making it easier for constituents to access services that the Senator’s office offers. The website also includes revamped news features and multimedia capability, which makes it easier for constituents to get updates on Menendez’s work in the Senate.“We live in an increasingly digital world and New Jersey is a wired state, which is why it is so important to ensure that my constituents have easy online access to the variety of services that my office can provide,” said Menendez. “From contacting me to express your opinion to requesting a flag to applying to a service academy and more, these services are easy to find and easy to navigate on the new site. I also believe the website should give New Jerseyans a front row seat to the work I’m doing in the Senate and in the state, and the upgrade to the news features and multimedia functions help provide it. One other new feature I’m especially proud of is the ‘New Jersey Spotlight’ section. It will not only focus attention on a different New Jersey town every so often, but it’s also is a partnership with New Jersey residents – there’s a link where they can nominate their own town to be spotlighted and can submit stories and photos describing where they live.”Highlights of the new menendez.senate.gov include:• Easy to find, easy to use buttons to access constituent services• A new, web-based system by which constituents can contact Senator Menendez’s office for assistance, on a policy matter or to request a meeting• Full multimedia capability, allowing easy access to video and audio of Menendez speeches and statements• “New Jersey Spotlight” section provides a feature on a selected New Jersey town. Includes a link where New Jerseyans can nominate their town to be featured and send stories and photos about where they live• Bilingual capability• New interactive features include an opinion poll• Easy access to Menendez’s social networking pages (Twitter and Facebook) and YouTube Channel• “Press kit” with downloadable high resolution photo and biographies.                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4ff53a36-9073-44eb-add1-d90f3d10f29d,\"SENATOR MENENDEZ STATEMENT ON THE FLOODING IN THE PHILIPPINES, THE WORST IN 40 YEARS\n                    \n                      October 1, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez, Chairman of the Senate Foreign Relations Subcommittee in charge of Foreign Assistance, issued the following statement on the flooding caused by Tropical Storm Ketsana, which has killed 277 people, displaced over 100,00 residents, and devastated Greater Manila:\n“I am deeply saddened by the devastation and the loss of life that Tropical Storm Ketsana has brought to thousands of Filipino families in Manila. I share the concerns held by members of New Jersey's vibrant Filipino community,” said Senator Menendez. “As a nation, we stand ready to assist in the rescue and recovery operations. As the Chairman of the Foreign Relations Subcommittee in charge of foreign assistance, I stand ready to use my position to help. My thoughts and prayers are with these families and the families of the 23 people also killed by the storm in Vietnam. It is my hope that the displaced families and all of the affected residents begin to see a ray of hope as international relief efforts continue.” \n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e22a8032-ea1d-4fd2-8f4d-9f685ba258df,\"MENENDEZ BLASTS REPUBLICANS FOR DELAYING BILLIONS IN TRANSPORTATION FUNDING, COSTING THOUSANDS OF JOBS\n                    \n                            NJDOT stands to lose $230 million until fix is agreed upon\n                    \n                      October 1, 2009\n                     WASHINGTON – This evening, Republican obstruction on the Senate floor cost the U.S. transportation system $8.7 billion in funding, which could force an estimated 17,000 workers out of jobs. The Senate was in the process of temporarily extending transportation funding, which would have included a fix to a rescission of $8.7 billion in highway contract authority. Even though the fix was backed by the bipartisan leadership of the Environment and Public Works Committee and the bipartisan leadership of the Senate, a group of Republican senators objected, blocking the fix.\nU.S. Senator Robert Menendez (D-NJ), Chairman of the Banking Subcommittee on Housing, Transportation and Community Development, decried the obstruction, which will cost the New Jersey Department of Transportation $230 million until a fix is passed:\n“This partisan roadblock is an anti-stimulus for our economy. Delaying this federal investment will affect transportation projects that have the potential to create and sustain jobs, improve the transportation system and save families time and money. Now more than ever, it is irresponsible to deny our communities of these economic benefits. This group of Republicans needs to lift its roadblock immediately and help America get back to work.”\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d6ca44c7-daf3-4bc3-ab2b-1932271c217b,\"SENATE DEMOCRATS’ STATEMENT ON HISPANIC TASK FORCE 20th ANNIVERSARY\n                    \n                            Sen. Jeff Bingaman of New Mexico honored for leadership in establishing HTF two decades ago\n                    \n                      October 1, 2009\n                     WASHINGTON – Senate Majority Leader Harry Reid (D-NV); Senator Robert Menendez (D-NJ), chairman of the Senate Democratic Hispanic Task Force (HTF); Senator Debbie Stabenow (D-MI), chairwoman of the Senate Democratic Steering and Outreach Committee; and Senator Jeff Bingaman (D-NM) joined HTF members and Latino leaders in celebrating the group’s 20th anniversary. Senator Bingaman, who founded the HTF in 1989, was honored at the reception for his visionary leadership in addressing the needs and promoting policy issues of importance to the Hispanic community. This year marks the HTF’s highest membership since its inception with 44 members.\nSenator Reid said: “As the 2009 Hispanic Heritage Month comes to an end, Senate Democrats are proud to celebrate an important milestone in our history as a caucus. Twenty years ago, when the Senate had no Latino representation, Sen. Bingaman had the visionary foresight to create the Hispanic Task Force, designed to create a direct conduit between Democratic Senators and the Hispanic community. Throughout the years, the group has effectively addressed issues impacting Latinos across the country, and although we still have much more to do, I am proud of the working relationships and legislative work it has produced. I commend Sen. Bingaman for his vision and commitment to the Hispanic community, and I join the rest of the Hispanic Task Force members in celebrating this memorable anniversary.”\nSenator Menendez said: “I am thrilled to celebrate 20 years of continued work and achievements on behalf of the Hispanic community in the United States. As the only Hispanic Senator and Chairman of the Senate Democratic Hispanic Task Force, I am well aware how the Hispanic voice in the national dialogue continues to grow and how important it is to pay attention. I applaud Senator Bingaman for conceiving this important group and his sustained and unrelenting support of the Hispanic community.”\nSenator Stabenow said: “Twenty years ago, Democrats started an important organization to ensure that the priorities of the Hispanic community were reflected in the work of the Senate. Through the Hispanic Task Force, Senate Democrats have created and strengthened relationships with Hispanic leaders and the organizations they represent from all parts of the country,” said Sen. Stabenow.  “As the Senate moves forward in reforming the health insurance industry, building our clean-energy economy, and putting Americans back to work, we look forward to continuing these relationships to ensure the voice of the Latino community is included. On this 20th anniversary celebration, I’d like to thank Sen. Bingaman for his vision in creating this important group, and all the Democratic Senators who have joined to give the Hispanic Task Force of the 111th Congress its largest membership in history.”\nSenator Jeff Bingaman said: “Over the last 20 years the Senate Democratic Hispanic Task Force has been instrumental in helping develop and implement policies that affect the Hispanic and Latino community. There is still much to be done and I look forward to continuing to work with the task force to help address issues of importance for Hispanics and the country.”\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=675337bf-624d-4282-8298-2e7e74c1d982,\"MENENDEZ ANNOUNCES $14 MILLION FOR STATE OF NJ FROM LATEST BATCH OF HIS ENERGY EFFICIENCY PROGRAM\n                    \n                            Funds are awarded to New Jersey State Energy Office to use at state and local levels\n                    \n                      September 29, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today announced that New Jersey’s State Energy Office has been awarded a total of $14,400,700 in funding from the Energy Efficiency and Conservation Block Grant (EECBG) program, which he created as part of energy legislation in 2007 and fought to fund while crafting the economic recovery package. A portion of this funding will be used for state energy efficiency programs and a portion will be doled out to smaller municipalities that were not eligible to receive direct funding from the block grant program. Of the $3.2 billion in American Recovery and Reinvestment Act funding allocated for the program, New Jersey is eligible to receive a total of $73 million between eligible cities, towns, counties and the state.\n“This strong investment in energy efficiency helps us recover from the economic crisis, while laying the foundation for long term economic security,” said Menendez. “This projects that will receive funding will help put families back to work, reduce energy costs, cut dirty emissions and save taxpayers money. These are components of a strong green energy economic future that reduces the reliance fossil fuels and reduces strain on family budgets”\nThe EECBG program provides municipalities and counties with the resources to support energy-saving initiatives and improve energy efficiency in transportation, buildings, and other sectors. Activities eligible for EECBG funding include energy audits and building retrofits in the residential and commercial sector, the development and implementation of advanced building codes and inspections, and the creation of financial incentive programs for energy efficiency improvements.\n                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4854f8b4-dc2b-43a8-a8e8-510015c65e99,\"SENATOR MENENDEZ ANNOUNCES $11 MILLION IN RECOVERY FUNDS FOR THE HOUSING AUTHORITY OF THE CITY OF CAMDEN\n                    \n                            Funds to help jumpstart project stalled by the recession, construct  64 public housing units. Improves housing for seniors and individuals with disabilities.\n                    \n                      September 29, 2009\n                     WASHINGTON – United States Senator Robert Menendez (D-NJ), a member of the Senate Banking, Housing and Urban Affairs Committee, today announced that the Housing Authority of the City of Camden (HACC) will receive $11 million as part of the American Recovery and Reinvestment Act-funded Public Housing Capital Fund (PHCF) grant program. The U.S. Department of Housing and Urban Development’s (HUD) PHCF grant program provides housing authorities with the resources to improve housing communities in four separate categories.  PHCF Category 1 Funds address the needs of seniors and individuals with disabilities; Category 2 Funds intend to renovate blighted housing communities; Category 3 Funds finance projects stalled due to financial issues; and Category 4 Funds create more energy efficient public housing units. \nHACC will receive a $1 million grant in Category 1 funding to improve the Authority-owned Kennedy Towers and expand their assisted living program, and a $10 million grant in Category 3 funding to leverage the additional funding necessary to complete and build an additional 64 housing units on land available at the Authority’s Roosevelt Manor site.\n“This program is a critical part of our economic recovery, as it creates jobs in the short term and lays the foundation for better, more affordable housing in the long term,” said Sen. Menendez. “With this federal investment, the Housing Authority of the City of Camden can better assist the most vulnerable members of the community during trying economic times and create jobs in the process.  I am pleased to work with the Housing Authority of the City of Camden to ensure that all of Camden’s residents have a place they may proudly call home.”\nTo date, HUD has distributed nearly $4 billion from the Recovery Act to modernize public housing authorities across the nation.  The funding announced last week marks the final round of additional PHCF funding from the Recovery Act.\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=36f3381c-5cf2-4183-a400-c46b12a9ea88,\"HELP WITH LOAN MODIFICATION SCAMS AND FORECLOSURE MEDIATION\n                    \n                      September 28, 2009\n                     With mortgage loan modifications in high demand, scammers are preying on homeowners with deceptive and fraudulent practices. The following are signs you may be the potential victim of a Loan Modification Scam:\n1. You are asked to pay large, up-front fees for mortgage loan modification help\n2. Mortgage loan modification help is offered by a \"\"homeowner consultant\"\" or \"\"financial counselor\"\" and not a DOBI-licensed \"\"debt adjuster\"\"\n3. You are told not to make your mortgage payments\n4. You are told not to contact your mortgage lender or provider because the person or company offering you assistance will handle all the details; and\n5. You are told to make future payments to a new person or firm without informing your current mortgage lender or provider\nHelp is available with loan modificantion scams and foreclosure mediation...\nTo report a mortgage fraud, you can contact:\nNJ Division of Consumer Affairs (DCA)800-242-5846 (within NJ) or 973-504-6200www.njconsumeraffairs.gov\nNJ Department of Banking and Insurance (DOBI)800-466-7467www.nj.gov/dobi\nFor help with foreclosure mediation, you can contact:\nNJ Judiciary Foreclosure Mediation Program888-989-5277www.njforeclosuremediation.org\nNJ Department of Banking and Insurance (DOBI)800-466-7467www.nj.gov/dobi\n\n\n\nNJ Housing and MortgageFinance Agency (HMFA)800-466-7467www.nj.gov/hmfa\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=620a35f0-2b24-433e-9e9b-7830661293dd,\"MENENDEZ SUCCESSFULLY ADDS CHILD-ONLY INSURANCE PLAN OPTION IN FINANCE HEALTH REFORM BILL\n                    \n                            New health insurance exchange would include children-only plans for families that could not otherwise afford insurance\n                    \n                      September 28, 2009\n                     WASHINGTON – In the U.S. Senate Finance Committee’s markup of its health insurance reform bill, U.S. Senator Robert Menendez (D-NJ) has gained inclusion of his amendment to add child-only health plans to a new insurance exchange. The creation of insurance plans that are just for children would help ensure that children have coverage in many family situations that are unique because of economic reasons or otherwise. The amendment would provide a potentially more affordable option for these chidren in the exchange. Without this option, children might have been forced to purchase adult insurance or forgo health coverage altogether.\n“Our children are our nation’s most precious and vulnerable population, and they should not have to go without health coverage because of economic circumstances over which they have no control,” said Menendez. “We need to think about children from families who might not otherwise be able to afford coverage, about children aging out of the foster care system or growing up with their grandparents, and about children with parents whose employers do not offer dependent coverage. These children deserve every opportunity to reach their potential, and that includes having the coverage to ensure a healthy childhood.”\nAs the legislation is currently written, in order for children to access Children’s Health Insurance Program benefits, they must first be enrolled in private health coverage. This amendment helps enusre that coverage.\nAlso, as the legislation is currently written, tax credit and subsidy determinations are made using taxpayer information. Because of that, even if a child could access a child-only policy in the Exchange, it is unclear how children would qualify for the tax credit since they do not file income tax returns. The amendment would address this issue by directing the HHS Secretary to determine whether alternative means, such as direct subsidies to the exchanges, are necessary to provide support for the purchase of such coverage for qualified children.\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=52ffc47e-cec3-4071-9242-0d9045b31b95,\"MENENDEZ GAINS COVERAGE FOR BEHAVIORAL HEALTH IN FINANCE VERSION OF HEALTH REFORM BILL\n                    \n                            Treatments for autism, other behavioral health conditions, included as part of benefits standard in plans that are part of new insurance exchange\n                    \n                      September 25, 2009\n                     WASHINGTON – Late last night in the U.S. Senate Finance Committee, Senator Robert Menendez (D-NJ) scored a victory for families affected by behavioral health conditions, including Autism Spectrum Disorders. As part of Finance’s health insurance reform bill, Menendez gained inclusion of his amendment that will add behavioral health treatment to the minimum benefits package that all plans must provide in the new health insurance exchanges.\n“A major goal of real health insurance reform is to ensure that insurance plans won’t deny coverage for necessary and important services – and that certainly includes behavioral health treatment,” said Menendez. “With the highest rate of Autism Spectrum Disorders in the nation, the people of New Jersey certainly understand how important it is not only to have access to this type of treatment but to have insurance coverage for it. Families affected by these conditions shouldn’t have to worry about going bankrupt because of it, and we are trying to help ensure that they don’t.”\nThe new health insurance exchange that would be created under health insurance reform would be a pool of various insurance plans available to families without employer-sponsored insurance, Medicaid, Medicare or insurance through the Veterans Administration. This amendment ensures that plans in the exchange must cover behavioral health treatments as part of the minimum benefits standard.\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1b48cb8d-3546-4020-a4d5-1664f4858872,\"MENENDEZ, SIRES ANNOUNCE $3 MILLION FOR HOBOKEN TERMINAL FERRY SLIP REHABILITATION\n                    \n                            These federal funds will continue rehabilitation of historic Hoboken landmark \n                    \n                      September 24, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), and Congressman Albio Sires (NJ-13)   announced today that the U.S. Department of Transportation has awarded $3,000,000 for the third phase of the Hoboken Ferry Terminal Rehabilitation project.  This federal funding was awarded through the U.S. Department of Transportation’s Ferryboat Discretionary program. Phase III of the Hoboken Terminal Ferry Rehabilitation consists of restoring the Terminal’s original ferry slips, allowing the current operation to move from the temporary docking facility on barges on the Terminal’s south side.\n“This funding will not only further enhance the historic Hoboken Ferry Terminal, it will promote increased use of mass-transit, curbing carbon emissions and reducing traffic,” said Senator Menendez.  “This shovel-ready project will create over 200 jobs and will help in the completion of a long-awaited transportation improvement that became so necessary after the terror attacks in 2001 brought increased ridership to and from Manhattan.” \n“The Hoboken Ferry Terminal is a critical transportation link for the region, connecting thousands of passengers from buses, light rail and trains, because of this funding the area will benefit from improved transportation options and increased job opportunities,” said Congressman Sires.  “Given the ferry’s history in emergency situations – such as rescuing passengers when Flight 1549 went down in the Hudson and providing service after the 9/11 attacks – I am especially pleased that it was selected to receive this funding.” \nThe Hoboken Terminal is a multi-modal transportation hub which is listed on the National Register of Historic Places, serving over 3.5 million riders.  The Terminal connects many NJ TRANSIT commuter rail lines, buses, Hudson Bergen Light Rail, PATH, Hudson River Waterfront Walkway and ferry service.  This rehabilitation effort will replace the temporary docking facility that has been in use since the terminal’s ferry slips were placed back in service in 1989. Ferry boat handling capacity will increase by 25%, increasing travel capacity and travel options for area residents and commuters alike. \nThis federal funding will allow NJ Transit and the Port Authority of NY and NJ to complete Phase III of this project.\n                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c593ca25-3ae6-4846-ab04-25506f902302,\"Menendez Leads Effort to Overcome Coastline Drilling Amendment in Senate\n                    \n                             Vitter amendment defeated; would have scuttled Interior Sec. Salazar’s review of Bush plan that could lead to drilling along the Jersey Shore\n                    \n                      September 24, 2009\n                     WASHINGTON – Late yesterday, U.S. Senator Robert Menendez (D-NJ) led an effort that overcame an attempt to pave the way for coastline drilling – potentially including drilling along the Jersey Shore. Senator David Vitter (R-LA) was pushing an amendment to the Interior Department Appropriations bill that would have rushed Interior Secretary Salazar’s review of Bush Administration offshore drilling plans to allow for unfettered coastline drilling.\nMenendez, working with Senator Bill Nelson (D-FL), blocked the Vitter amendment. They then led the Senate in a 56-42 vote against Vitter’s attempt to send the Interior bill back to the committee level, where his amendment would be included.\n\n“In the last days of his administration, President Bush tried to give away our coastlines to oil companies,” said Menendez. “This is a plan that could put the Jersey Shore at risk without providing any real economic benefit to families. Secretary Salazar is undertaking a thorough review of this oil company handout, and it is simply reckless to scuttle that effort. I’m proud to have overcome this dangerous amendment, and I will continue to stand up for the Jersey Shore, our environment and forward-looking energy policy.”\n\nA moratorium on coastline drilling ended last year. Bush’s offshore drilling plan would let the Interior Department lease the coastlines for drilling over a five-year period, without any real restrictions. Menendez is the sponsor of the COAST Act to permanently ban drilling along the Atlantic coast from North Carolina to Maine.\n                                                                # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d736c49f-6bee-4672-b6db-3772245447aa,\"MENENDEZ ANNOUNCES 1.6 MILLION FOR NJ MUNICIPALITIES FROM LATEST ROUND OF HIS ENERGY EFFICIENCY PROGRAM \n                    \n                            Hamilton, Pert Amboy, Teaneck, Fort Lee, Pennsauken, and Galloway to receive funding\n                    \n                      September 24, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today announced a total of $1,646,100 in funding for six New Jersey municipalities from the Energy Efficiency and Conservation Block Grant (EECBG) program, which he created as part of energy legislation in 2007 and fought to fund while crafting the economic recovery package. The EECBG program provides municipalities and counties with the resources to support energy-saving initiatives and improve energy efficiency in transportation, buildings, and other sectors. A total of $73 million will be delivered to New Jersey cities, towns and counties through the American Recovery and Reinvestment Act.\nThe funding announce in this round will be distributed as follows: · Township of Hamilton -- $835,300· Perth Amboy -- $196,200· Township of Teaneck -- $160,700· Borough of Fort Lee -- $155,100· Township of Pennsauken --  $154,900· Township of Galloway -- $143,900\n|“The Energy Efficiency and Conservation Block Grant Program is an important part of our economic recovery, while helping lay  the foundation for long term economic security and a green energy future.” said Senator Menendez.. “These investments help put families back to work, reduce energy costs, cut emissions, and provide local tax relief . I am proud to have created this program, because this is the type of investment that has a direct and immediate impact on New Jersey families and moves us towards a strong 21st Century economy. “\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=45570d90-30c1-48f4-a958-cd9f3564dd73,\"MENENDEZ WORKS WITH VIDEO GAME INDUSTRY AND ENVIRONMENTAL GROUPS TO DEVELOP “GREEN GAMING ACT”\n                    \n                            With the Senate preparing to consider broad energy legislation, game console makers support legislation\n                    \n                      September 23, 2009\n                     \n\n<!--\n /* Font Definitions */\n @font-face\n\t{\"\"Cambria Math\"\";\n\tpanose-1:2 4 5 3 5 4 6 3 2 4;}\n@font-face\n\t{\n\tpanose-1:2 15 5 2 2 2 4 3 2 4;}\n /* Style Definitions */\n p.MsoNormal, li.MsoNormal, div.MsoNormal\n\t{\n\tmso-style-parent:\"\"\"\";\n\tmargin:0in;\n\tmargin-bottom:.0001pt;\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";}\n@page Section1\n\t{:8.5in 11.0in;\n\tmargin:1.0in 1.0in 1.0in 1.0in;}\ndiv.Section1\n\t{page:Section1;}\n-->\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:10.0pt;\"\"Times New Roman\"\",\"\"serif\"\";}\n\nWASHINGTON – Backed by the makers of popular video game consoles, U.S. Senator Robert Menendez (D-NJ) today introduced legislation aimed at ensuring energy efficiency in the consoles. The Green Gaming Act would require the U.S. Department of Energy to conduct a study of video game console energy usage to determine whether or not energy efficiency standards should be set. Menendez is aiming to include the legislation as part of broad energy legislation, which the Senate is expected to consider later this year.\n“As millions of American families use video game consoles as a source of home entertainment, it is increasingly important to promote ‘green gaming’,” said Menendez. “We know that other home electronics and appliances have become more energy efficient than ever, and we need the information to assess the energy consumption of game consoles. I am happy to have the support of major game console makers and to know that they are interested in making ours an energy-efficient nation.\n“The video game industry is constantly striving for more efficient and effective energy use among its product lines,” Michael D. Gallagher, President and CEO, Entertainment Software Association. “To further this ongoing effort, console manufacturers have been working cooperatively and voluntarily for some time with the Environmental Protection Agency to reduce energy usage. The industry remains dedicated to environmentally-friendly product design and energy conservation. We appreciate Senator Menendez' leadership in promoting energy efficient game consoles and look forward to working with the Secretary of Energy should this provision become law.\"\" \n“It’s vitally important to make video game consoles more energy efficient,” said Natural Resources Defense Council Sr. Scientist Noah Horowitz. “Few folks realize that an Xbox 360 or PlayStation 3 that is left on all the time can consume the same amount of energy each year as two new refrigerators.  We need to better understand how these devices work and plot a path to make sure smart technology is built into the new machines.  This Bill should make this happen.” \nIn addition to the initial study, the legislation would require a follow-up study three years later. A comprehensive study of the energy use of video game consoles in all modes will enable DOE to determine whether standards should be set for these devices. To date, no rigorous testing of consoles has been done. The Entertainment Software Association (Microsoft and Sony are members), Nintendo, and the NRDC have all written letters of support for this legislation.\n                                                                # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0ddf09bf-b679-4de0-a9a7-3b6e8db5bf7a,\"MENENDEZ ANNOUNCES $1.8 MILLION FROM HIS PROGRAM TO SPUR ENERGY EFFICIENCY IN NJ MUNICIPALITIES \n                    \n                            Passaic, Washington Township, Vineland, Woodbridge Township, Montclair Township, Howell Township and Franklin Township receive investments from latest round of energy efficiency grants \n                    \n                      September 23, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today announced a total of\n$1,772,700 in funding for seven New Jersey municipalities from the\nEnergy Efficiency and Conservation Block Grant program, which he\ncreated as part of energy legislaiton in 2007. The program supports\nmunicipal energy-saving initiatives and improves energy efficiency in\ntransportation, buildings, and other sectors. It will deliver a total\nof $73 million to New Jersey cities, towns and counties through the\nAmerican Recovery and Reinvestment Act.New Jersey municipalities receiving funding today include:\n·         The City of Passaic -- $613,800\n·         Township of Washington (Gloucester) -- $467,400\n·         Vineland (Cumberland) -- $250,000\n·         Township of Woodbridge (Middlesex) --  $250,000\n·         Township of Montclair (Essex) -- $155,000\n·         Township of Howell (Monmouth) -- $20,000\n·         Township of Franklin (Somerset) -- $16,500\n“Making\nour hometowns as energy efficient as possible is important to our\neconomic recovery and to laying the foundation for long-term economic\nsecurity,” said Menendez. “These investments will help\ncreate jobs, cut energy costs, save taxpayers money and clean the air\nwe breathe. This is a program I am proud to have created, because these\nare the types of hometown investments that make a real difference for\nNew Jersey families.”\n # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=61065b45-ec9e-4946-a1ff-0878ba531b43,\"MENENDEZ OPENING STATEMENT IN FINANCE COMMITTEE HEALTH INSURANCE REFORM MARKUP \n                    \n                            NJ Senator says real reform is vital; improvements must be made to Finance bill; Republicans shouldn't play politics\n                    \n                      September 22, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the Senate Finance Committee, said today in his health insurance reform markup opening statement that effective reform is crucial; that the Finance Chairman’s Mark needs improvements; and that Republicans shouldn’t use this issue to play politics.\n Excerpts for Menendez’s statement, as prepared for delivery:\n “To those who say our current health care system is the best we can do, to those who believe that more of the same is what the American people deserve, I say that allowing a health insurance company’s profit margin to come between a doctor and a patient is no way for a health care system to run. I say that leaving tens of millions of our fellow Americans to rely on an emergency room for their primary care is no way to treat our neighbor – and no way to control the budget deficit. There are issues with our health care system that should eat away at our national conscience every day.”\n…\n“The Chairman is well aware that my focus is not just on passing a bill called ‘reform’ but on enacting actual reform that ensures every American has access to quality and affordable health coverage. To move toward that goal, there are some changes to the Mark that I need to see.”\n…\n“I understand and respect that there are real policy differences in this debate; however, I am very concerned when members continue to create fear over so-called “death panels” when they never existed in this legislation and never will.  Or when members continue to say that this bill is a “government take-over of health care” when it’s actually a boon to the insurance industry and doesn’t even include a public plan option.  Or as I read in press reports just this morning [in Politico] that, quote, ‘The NRSC (National Republican Senatorial Committee) already has its eyes on Democrats up in 2012 — and plans to bombard Democrats who sit on the Finance Committee with attacks on their votes on controversial amendments during the Committee deliberations beginning Tuesday.’” \nAmong the improvements to the bill for which Menendez is advocating are:\nAffordability: reducing the maximum amount families receiving subsidies in the insurance exchange will have to pay out of their income for insurance premiums. In the original Chairman’s Mark, the cap is set at 3% of income at the low end and 13% at the high end. Menendez has offered an amendment that sets the cap at 1% of income at the low end and 10% at the high end.\nExcise tax: relieving the burden of the excise tax on high-valued health benefits, which has the potential to affect firefighters, police and teachers in a state like New Jersey\nPublic plan option: inclusion of a public plan option to increase accountability, choice and competition in the insurance exchange.\nMixed-status families: Ensuring that the economic status of mixed-status families is calculated accurately to ensure that American citizens and legal permanent residents receive the full tax credits they need to purchase affordable health coverage.\nFull text of Menendez’s statement, as prepared for delivery:\nMore than a half-century ago, Harry Truman said: “We should resolve now that the health of this nation is a national concern… that the health of all its citizens deserves the help of all the nation.”\nThe time has come for us to act.\nThis markup is an important step in the process that can lead to reforms delayed decade after decade after decade.\nTo those who say our current health care system is the best we can do…\nto those who believe that more of the same is what the American people deserve…\nI say that allowing a health insurance company’s profit margin to come between a doctor and a patient is no way for a health care system to run…\nthat leaving tens of millions of our fellow Americans to rely on an emergency room for their primary care is no way to treat our neighbors… and no way to control the budget deficit.\nThere are issues with our health care system that should eat away at our national conscience every day.\nMiddle class families in this country who HAVE health insurance are being bankrupt by health care costs anyway. When they need insurance coverage the most, it simply isn’t there for them.\nFor the 17 years I have been in Congress, thousands of New Jerseyans have approached me on the street, visited my office or called on the phone -- sometimes in tears -- to tell me their health insurance stories… some of the most heartbreaking stories you will ever hear.\nAnd millions of other families who may not be facing dire circumstances, are nevertheless worried that it’s costing them more and more each year to pay for their insurance… that they’ve been denied coverage for a test or a visit to the doctor’s office.\nThese stories – stories that most every family has – this is the reason we need to finally follow through with health insurance reform.\nI applaud the Chairman’s leadership in getting us to where we are today and for listening to some of our concerns and trying to make improvements. The Chairman is well aware that my focus is not just on passing a bill called “reform” but on enacting actual reform that ensures every American has access to quality and affordable health coverage. To move toward that goal, there are some changes to the Mark that I need to see.\nWe have to make the insurance exchange more affordable for average working families regardless of where you live – a big issue in a high-cost state like New Jersey.\nThat means reducing the amount families spend on health care as a proportion of their budget., helping families who sit around the kitchen table trying to stretch their paycheck to cover the mortgage, groceries, and health care costs each month.\nWe have to ensure that a tax on high-value insurance plans does not end up hitting middle class and working families in states like New Jersey, many of whom are serving the public as teachers, firefighters, and police officers.\nAnd we should not let the hysteria over immigrants block American citizens’ access to the health care they deserve and are entitled to.\nWe need to strengthen consumer protections as much as possible I have offered a number of amendments, many of which hopefully will be accepted by the Chairman, which provide protections and support to families in getting the care they need.  I have also offered amendment to protect federally qualified health centers, maternity coverage for young women and better health care for our nations’ children, including those with autism.\nWe need to ensure a level playing field for every consumer and I am proud to be a cosponsor of a strong public option.\nBut to truly level the playing field we eventually need a discussion of a public plan as part of the health insurance exchange.\nTo my less progressive friends, we need to bring transparency and accountability in the market, and to ensure real, honest, fair competition among qualified insurers.\nWe need to find a way to create a new framework to throw out the old business model that says insurers should do all they can to avoid risk rather than provide the best value at the best price to the most people.\nI understand and respect that there are real policy differences in this debate; however, I am very concerned when members continue to create fear over so-called “death panels” when they never existed in this legislation and never will.  Or when members continue to say that this bill is a “government take-over of health care” when it’s actually a boon to the insurance industry and doesn’t even include a public plan option.\nOr as I read in press reports just this morning that, quote, “The NRSC (National Republican Senatorial Committee) already has its eyes on Democrats up in 2012 — and plans to bombard Democrats who sit on the Finance Committee with attacks on their votes on controversial amendments during the Committee deliberations beginning Tuesday.  ‘If senators like bow to pressure from the White House and liberal special interest groups and think no one is watching, then we welcome that false sense of security,’ said NRSC spokesman Brian Walsh. ‘But the NRSC intends to actively inform their constituents if they put the political interests of their party’s leadership ahead of the interests of the taxpayers in their states.’” These examples lead me to wonder if this really is an ideological divide or simply political opportunism.   \nWe’ve also heard opponents of reform, and of the president, call this “Obama’s Waterloo” or his defeat.  They think that defeat of health care reform will lead to electoral victory.  What those voices fail to realize is that failing on health care reform is not about the defeat of President Obama or the Senate, it’s about failing the American people. All of us have a stake in the result. All of us want to ensure that every American family has access to the best health care system possible… All of us who believe as Harry Truman did that “the health of the nation is a national concern that deserves the help of all the nation.” Let this be the time and ours the generation that finally realizes the dream held by generations of leaders – from Harry Truman to Ted Kennedy. Let us make affordable health care for every American a national priority.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=84a1efdf-dd20-428b-8876-9839335b6000,\"U.S. SENATE PASSES MENENDEZ RESOLUTION TO RECOGNIZE AND SUPPORT “PEACE DAY”\n                    \n                            Each year, September 21st is observed internationally as the International Day of Peace\n                    \n                      September 18, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), Chairman of the Foreign Relations Subcommittee on International Development and Foreign Assistance last night passed a resolution (S. Res 274) in the U.S. Senate in recognition of Peace Day -- celebrated every year on September 21.  First established in 2002 by the United Nations, and known worldwide as the International Day of Peace, this day is dedicated to the cessation of violence and hostility. The numerous international celebrations will include peace walks, concerts, mass prayer ceremonies, and school assemblies.\n“I am proud that the U.S. Senate is joining millions throughout the world in support of this important cause – the end of global warfare and violence.  There is always a way to solve our differences without resorting to violence and hostility against our fellow human beings. We must remember this ideal not just on Peace Day, but 365 days a year. Every day we have an opportunity to keep our commitment to non-violence: by ending our conflicts with civility, taking action in our local communities, and keeping the victims of violent conflict throughout the world in our thoughts and prayers. I applaud the Peace One Day Organization for its commitment to this laudable ideal.”\nClick here to read the resolution:  http://menendez.senate.gov/pdf/09172009PeaceDayResolution.pdf\n                                                                                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0825dea4-60ca-4c2e-bbbf-c7cb43e3bd4e,\"SENATOR MENENDEZ ANNOUNCES MORE THAN $5 MILLION FOR NJ LOCAL JUSTICE SYSTEM\n                    \n                      September 17, 2009\n                     WASHINGTON - Today, U.S. Senator Robert Menendez (D-NJ) announced that the U.S. Department of Justice has awarded New Jersey's justice system $5,433,507 in funding through the economic recovery package. These funds, part of the Edward Byrne Memorial Competitive Grant Program, will be used by the New Jersey Administrative Office of the Courts to increase the efficiency of the probation system, with specific regard to cases involving mental health issues.\n“This investment in an efficient justice system, a less costly justice system and a justice system that appropriately deal with mental health conditions,” said Sen. Menendez. “By ensuring adult probationers with mental health conditions have access to suitable services and treatment, we are ensuring that cases are properly addressed while helping reduce probationer arrests and custody costs.  This funding is particularly important in these stressful economic circumstances, when individuals are more vulnerable to mental health conditions.” \n\"\"New Jersey Probation Specialized Mental Health Caseload Expansion\"\" project’s general objective is to reduce the number of adult probationer arrests and custody costs incurred, increase client access to professional mental health examination and services, and measuring compliance and outcomes in mental health caseloads.  This grant will be used to: create 30 probation officer positions to establish adult mental health caseloads, establish collaborative partnerships between probation and community agencies, and reduce the average adult caseloads  statewide. Other goals include improving the probation division's mental health supervision. \nThe Recovery Act Edwards Byrne Memorial Competitive Grant Program was created with the intention of helping communities improve the capacity of statewide and local justice systems and provide assistance and provide for training and technical assistance programs strategically targeted to address local needs.  One of its initiatives is to provide funding for neighborhood-based probation and parole officers. This grant falls under this category.\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=384007a4-2e99-4139-afda-5ae6b75cbf9d,\"AS NATIONAL HISPANIC HERITAGE MONTH COMMENCES, SENATORS INTRODUCE BIPARTISAN RESOLUTION HONORING HISPANIC SERVING INSTITUTIONS\n                    \n                            Resolution would designate week beginning September 20th as \"\"National Hispanic Serving Institutions Week\"\"\n                    \n                      September 15, 2009\n                     WASHINGTON, DC - Today, as our nation celebrates the beginning of Hispanic Heritage Month, U.S. Senator Robert Menendez (D-NJ) introduced a bipartisan resolution to recognize the work, goals, and achievements of 268 non-profit Hispanic Serving Institutions (HSIs) for their crucial role in educating and empowering Hispanic youth students, improving their local communities, and contributing to the economic vitality of the United States. This resolution specifically calls for the designation of the week of September 20, 2009 as National Hispanic Serving Institutions Week and calls for its observation through private ceremonies, activities, and programs to demonstrate support for Hispanic Serving Institutions.Hispanic Serving Institutions (HSIs) are defined as colleges, universities, or systems/districts where total Hispanic enrollment constitutes a minimum of 25% of the total enrollment.  The Resolution was co-sponsored by 10 Senators: Senator Harry Reid (D-NV), Senators Jeff Bingaman (D-NM), Kay Bailey Hutchison (R-TX), John Cornyn (R-TX), Joseph Lieberman (I-CT), Charles Schumer (D-NY), Carl Levin (D-MI), Robert Casey (D-PA), Tom Udall (D-NM), Mark Udall (D-CO), and Kirsten Gillibrand (D-NY).\"\"As the only Hispanic Senator and Chair of the Senate Democratic Hispanic Task Force, I am proud to begin Hispanic Heritage Month by introducing a resolution that honors the importance of Hispanic Serving Institutions in educating the next generation of Latino leaders,” said Menendez. “It is critical to honor those Institutions that play a crucial role in increasing the access future generations of Latinos have to a better education, a better community, and a better future.  We must continue to work to ensure Latino students have the resources they need to become contributing members of our society and economy.\"\"“Education in this country has been the most effective means of social mobility and I am a testament to that. Hispanic Serving Institutions (HSI) are therefore a key component in closing the socio-economic gap many Hispanics face. I am proud to be a co-sponsor of this resolution and I congratulate my colleague, Sen. Menendez for introducing it as it  recognizes the service HSI provide not just to Latinos, but our country as a whole.” said Sen Reid.“I am pleased to join my Senate colleagues in honoring Hispanic Serving Institutions and the essential role that they play in American higher education.  HSIs enroll the majority of Hispanic college and university students and are critical to the success of New Mexico and the nation as a whole,” said Sen. Bingaman. “As a senior member of the Senate Health, Education, Labor and Pensions Committee and a co-chair of the Senate HSI coalition, I will continue to work with my colleagues to support HSIs and the work that they do.”  “We are proud to have 16 Hispanic Serving Institutions serving and supporting our minority-majority population in New Mexico,” said Sen. Tom Udall. “These institutions deserve special recognition for their unique recruitment efforts that inspire our growing Hispanic youth to pursue higher education.”  “I am proud to join with my colleagues in honoring the outstanding contributions of Hispanic Serving Institutions to the education and empowerment of our country’s Hispanic youth.  HSIs play a crucial role in building stronger communities and promoting economic advancement for thousands of young people and their families.” said Sen. Casey. “I am pleased to join my colleagues in recognizing the exceptional work of Hispanic Serving Institutions.  These institutions provide vital services for Hispanic students through wonderful educational opportunities.  I believe that every student deserves an opportunity to achieve his or her God given potential, and this resolution applauds Hispanic Serving Institutions for making this dream a reality for Hispanic students across the nation.”said Sen. Gillibrand“I believe that strengthening our HSIs will help close the high school graduation gap for Hispanics and give them greater opportunities to continue their education at the college and graduate level,” said Sen. Kay Bailey Hutchison. “Hispanic Serving Institutions play a vital role not only in education, but in the economic vitality of our entire nation. The contributions HSIs make to our communities and our nation are worthy of praise and deserve to be honored.  As we begin the month-long celebration of National Hispanic Heritage Month today, I am pleased to join my colleagues in this bipartisan effort to recognize our Hispanic Serving Institutions and the vital role they play in helping to increase the enrollment of Hispanic students in higher education, expanding opportunity and improving our nation,” said Sen. John Cornyn.\"\"As Hispanic Heritage month is celebrated across the nation, recognizing the impact that Hispanic-Serving Institutions have made in higher education is deserving of national recognition,\"\" said HACU President and CEO Antonio Flores. \"\"In honor of the many achievements and contributions made by our nation's HSIs, we hope that Congress will pass the resolution and support National Hispanic-Serving Institutions Week.\"\"     To read the full resolution, click here: http://menendez.senate.gov/pdf/09152009MenendezHSIResolution.pdf                                                                                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c7bb6bb7-3fa8-441f-ac58-ff440695f3d3,\"MENENDEZ STATEMENT ON EIGHTH ANNIVERSARY OF SEPT. 11TH TERRORIST ATTACKS \n                    \n                      September 11, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), who is attending September 11th commemorations in West Orange and Leonia today, released the following\nstatement on the eighth anniversary of the terrorist attacks:“September 11, 2001 was a day of infamy. It was a day of tragedy. It\nwas a day of heroism. ‘Never forget’ – the rallying cry in the days and\nweeks after the attacks – still has enormous meaning eight years later. “It means we should honor those who were taken from us too soon, 700 of\nwhom were New Jerseyans. It means we have an obligation to take care of\nthose who contracted chronic and even deadly illnesses selflessly\nhelping the rescue and recovery efforts around Ground Zero. It means we\nhave to do what is necessary to make our nation as secure as it can be.\nIt means we should always be thankful for our first responders and\nmilitary and the sacrifices they make to ensure our families are safe.\nAnd it means that we should continually reaffirm the values and ideals\nthat make ours the strongest and greatest nation on Earth.\"\"“My thoughts and prayers are with the families of those who we lost as\na result of those heinous attacks. As the years elapse, we know that\nthe hurt doesn’t fade. That is why ‘Never Forget’ is as important as\never.”\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b4e22f45-b95f-4cf6-9e6a-1653129f803d,\"MENENDEZ AND BERGEN HOUSING AUTHORITY SECURE ADDITIONAL $3.7 MILLION FROM FEDS FOR HOUSING ASSISTANCE \n                    \n                            Menendez joined by Lautenberg and Rothman in helping secure funding to assist in low-income rentals during housing crisis \n                    \n                      September 11, 2009\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ) and the Housing Authority\nof Bergen County announced that they have secured an additional\n$3,730,211 in funding for Section 8 Housing Choice Vouchers for Bergen\nCounty. The Housing Authority had requested the additional funding from\nthe U.S. Department of Housing and Urban Development and Menendez was\njoined by U.S. Senator Frank Lautenberg (D-NJ) and U.S. Rep. Steve\nRothman (NJ-9) in urging HUD Secretary Shaun Donovan to accept the\nrequest. The funding was necessary to ensure that the Housing Authority\nwould not have to cut back on its housing assistance programs in the\nmidst of the economic crisis.“The\ncurrent housing crisis is at the root of the financial squeeze so many\nBergen County families are feeling, and at the root of our nation’s\neconomic crisis,” said Menendez, who is the Chairman of the Senate Banking Subcommittee on Housing, Transportation and Community Development. “More\nthan ever, it is vital that we make sure families can afford to keep a\nroof over their heads. Understandably, there are large number of\nfamilies who are struggling to afford housing, which is why this\ninvestment is so important. I’m proud to have helped deliver this\nfunding.”\n\"\"Our\nhousing authorities are on the front line working hard to provide\nopportunities for New Jersey families and individuals to live in\naffordable homes and build a better life,\"\" Sen. Lautenberg said.  “In\nthis tough economy, we’ve got to make sure they have the resources\nneeded to continue providing affordable housing in Bergen County and in\ncommunities throughout New Jersey.”   “As we face the worst economic crisis since the Great Depression, we know that families are struggling to make ends meet,” said Congressman Steve Rothman (NJ-09). “It is essential that we continue to make sure that they have access to\naffordable housing, that is why Senator Menendez, Senator Lautenberg\nand I secured this funding along with my colleagues.”\n\"\"Today's\neconomic crisis has both created an unprecedented demand for Section 8\nHousing Choice Vouchers and increased the expense of each voucher\nissued because declining incomes increases the Housing Authority's cost\nfor each voucher,\"\" said David Sivella, Executive Director of the Housing Authority of Bergen County. \n\"\"As a result of the leadership and tenacity of Senators Menendez and\nLautenberg and Congressman Rothman this challenge has been met and as a\nresult hundreds of Bergen County seniors and families have homes today.\"\"\nThe\nfunding Menendez, Lautenberg and Rothman helped secure will help\nsubsidize rental assistance for low-income seniors and families in\nBergen County. The Section 8 Housing Choice Voucher Program provides\nassistance within a range of 60 percent up to 100 percent of the cost\nof eligible tenants' rental expenses, depending upon their ability to\npay.\n\n                                                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1857fe37-4e69-450f-a0e1-485ae31f2756,\"IN HONOR OF C. VIVIAN STRINGER: MENENDEZ'S OFFICIAL STATEMENT IN THE SENATE \n                    \n                      September 11, 2009\n                     WASHINGTON – As Rutgers women’s basketball coach C. Vivian Stringer is inducted to\nthe Basketball Hall of Fame tonight, below is the official statement\nU.S. Senator Robert Menendez (D-NJ) has submitted into the\nCongressional Record in her honor. Menendez announced that he would be\nsubmitting these official remarks upon Stringer’s nomination to the\nHall of Fame in April, and he will deliver to Stringer a printed\nversion of them. Menendez is an alumnus of Rutgers Law School. The following is text of the statement:\nMr.\nMENENDEZ. M. President, I rise to extend my congratulations to C.\nVivian Stringer for her induction into the Naismith Memorial Basketball\nHall of Fame.  It is a proper tribute for such a distinguished and\ncelebrated career.  This is certainly an incredible honor which stands\ntall, even amongst her other considerable accolades.\nThe\nsuccess that Vivian Stringer has achieved in her 38 year coaching\ncareer, including the last fourteen at Rutgers University, speaks for\nitself: 825 victories; 30 seasons of twenty or more wins; 22 NCAA\nTournament appearances; four Final Fours with three different programs;\nOlympic Gold as an assistant coach with the 2004 U.S. Women’s\nBasketball team.  Her commitment to excellence is unsurpassed and\nlauded by peers and supporters alike.\nMost\nimportantly, Vivian Stringer has served, above all else, as a teacher\nto each of her players.  Her dedication to education beyond the court\nis clear, as her players traditionally graduate on par with their\nnon-athlete classmates.  The students who have walked into her program\nwalk out of it as strong and dignified women, each ready to continue\nthe legacy of achievement that Vivian Stringer has set before them,\nwhatever the arena.   Two years ago, Vivian Stringer’s leadership was\non display as the Lady Scarlet Knights, in the face of adversity and\nslander, served as shining examples of exceptional poise and grace.\nThis\n2009 Hall of Fame Class is indeed one of the most distinguished in\nmemory, and it is fitting that Vivian Stringer enters alongside other\nluminaries that share her caliber of achievement.  I applaud Vivian\nStringer’s service to Rutgers University, the entire basketball\ncommunity, and the great State of New Jersey.  I wish her luck as she\ncontinues her career and in all of her other future endeavors.\n\n\n                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d2985e73-e0f4-4f9e-87f7-1650d8af7878,\"IMPORTANT INFORMATION ON H1N1 FLU\n                    \n                             Federal website is one-stop shop for flu information\n                    \n                      September 10, 2009\n                     The federal government has created a new website, flu.gov, to be a one-stop shop for information about a variety of flu strains, including the H1N1 virus. Click on the site for the latest news and for information on prevention, symptoms and advice.\nThe New Jersey Health and Senior Services has also made available flu information on their website, http://nj.gov/health/flu/index.shtml and a State Hotline: 1-866-321-9571To locate the nearest location where you can get a flu shot in New Jersey you can visit http://web.doh.state.nj.us/apps2/flu/fluschedules.aspx.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=57221ddf-2178-423d-9d34-bd2ed6abbfcb,\"MENENDEZ ANNOUNCES MORE THAN $1 MILLION TO PREVENT, COMBAT NJ CRIME AND VIOLENCE \n                    \n                      September 10, 2009\n                     WASHINGTON -\nToday, US Senator Robert Menendez (D-NJ) announced that the U.S.\nDepartment of Justice has awarded the state of New Jersey $1,143,412 in\ngrants, to support a broad range of activities to prevent and control\ncrime based on local needs and conditions. These activities include:\nimproving the functioning of the criminal justice system, assistance\nfor victims of crime, prevention of or combating juvenile deliquency,\nand assistance for victims of domestic or sexual violence. \n \n\"\"As\nindividuals struggle to make ends meet and cope with stressful economic\ncircumstances, our communities are increasingly vulnerable to higher\nrates of crime, violence and family instability,” said Menendez. “This\ninvestment will help address and prevent New Jersey’s unique crime\nprevention needs by strengthening key prevention programs, including\nprograms to address juvenile delinquency and violence against women.\nThis will help make our streets and families safer as we go through\nalready difficult times.\"\" \n \n \nThe $1,143,412 in funding will be distributed as follows:\n \n \nJersey City\n \n$621,462\nawarded to Hudson County through the FY 2009 Edward Byrne Memorial\nJustice Assistance Grant Program to be shared with seven jurisdictions\nwithin the county to support a broad range of activities to prevent and\ncontrol crime based on state and local needs\n \n \nSalem\n \n$12,009\nawarded to Salem County through the FY 2009 Edward Byrne Memorial\nJustice Assistance Grant program to be shared with separate\njurisdictions within the county to support a broad range of activities\nto prevent and control crime based on state and local needs \n \n \nTrenton\n \n$488,727\nawarded to The Transitional Housing Assistance Program through the\nAmerican Recovery and Reinvestment Act of 2009 to support programs that\nsupport housing and services for individuals fleeing domestic violence,\ndating violence, sexual assault, or stalking\n \n \nNorth Brunswick\n \n$21,214\nawarded to the North Brunswick Township Police Department through the\nFY 2009 Gang Resistance Education and Training (G.R.E.A.T.) Program to\nprovide students the skills they need to avoid gang pressure and youth\nviolence\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6032a04d-e2d9-4391-aded-b3ae7d6df61a,\"AFTER OBAMA'S JOINT ADDRESS ON HEALTH INSURANCE REFOM, MENENDEZ SAYS IT'S TIME TO RISE ABOVE POLITICS OF FABRICATION AND FEAR \n                    \n                      September 9, 2009\n                     WASHINGTON – Following President Barack Obama’s joint address to\nCongress on health insurance reform tonight, U.S. Senator Robert\nMenendez (D-NJ), a member of the key Senate Finance Committee, released\nthe following statement:\n“President Obama stood before Congress\nand the nation tonight with the true leadership, vision and honesty\nthat the American people respect. It was important for him to explain\nwhy the status quo is unhealthy for our loved ones, our family finances\nand our nation’s budget, and how we can fix it. He did all of that with\nstrength and purpose, and we are on our way to healing the health\ninsurance system.\n“This is a serious matter that deserves an\nhonest and serious approach. It is time to rise above the politics of\nfabrication and fear that powerful, entrenched interests have used to\nturn the debate into a brawl. Americans demanded a change from the\ncynical politics that took our nation in the wrong direction, and we\nare standing up for responsible policy and politics. Together with\nPresident Obama, many of us are committed to making sure that your\nhealth insurance won’t drain your finances but will actually be there\nfor you when you need it the most. We are going to pass long overdue\nreform that makes ours a healthier and wealthier nation.”\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=06aefa65-98a7-4333-8767-676923ed1d75,\"MENENDEZ ANNOUNCES NEARLY $6 MILLION FOR NJ AS PART OF HIS ENERGY EFFICIENCY GRANT PROGRAM \n                    \n                      September 9, 2009\n                     WASHINGTON –  U.S. Senator Menendez (D-NJ), author of the Energy Efficiency and\nConservation Block Grant Program (EECBG) and member of the Energy and\nNatural Resources Committee, today announced that the U.S. Department\nof Energy (DOE) has awarded $5,928,600 to eight New Jersey local\ngovernments under the program.   The EECBG program, funded by the 2009\nAmerican Recovery and Reinvestment Act, provides cities, towns and\ncounties with resources to create green jobs, help communities improve\ntheir energy efficiency, conserve energy and lower global warming\npollution. Of the  $3.2 billion of funding for the program, New Jersey\nis eligible to receive a total of $73 million.\nThe $5,928,600 announced today will be distributed to the following local governments:\nMonmouth County - $4,225,800\nTownship of Old Bridge - $580,300\nTownship of Irvington - $501,000\nBergen County - $250,000 (due to receive a total of $7,380,500)\nLinden - $166,800\nTownship of Willingboro -$144,700\nEast Orange - $30,000 (due to receive a total of $604,300)\nUnion City - $30,000 (due to receive a total of $554,900)\n “These investments are key components of our economic recovery and economic security in the 21st Century,” said Menendez.  “By\nsupporting our local governments as they cut down on energy usage, we\ncreate jobs, reduce costs, provide local budget relief and help clean\nthe air we breathe. We have heard from mayors and county officials from\naround the state using these funds to weatherize public buildings,\ninvest in energy efficient lighting, conduct energy audits, and even\ninstall solar panels. Transforming our economy from one dependent on\ndirty fossil fuels to renewable energy and conservation requires every\nlocality to pitch in and do its part.  I hope that this program and\nthese resources will help us reach a future when thinking and acting\ngreen becomes second nature.”\n The\nprogram provides municipalities and counties with the resources to\nsupport energy-saving initiatives and improve energy efficiency in\ntransportation, buildings and other sectors. Approximately $2.7\nbillion  of the total $3.2 billion in funds will be awarded through\nformula grants to more than 2,300 cities, counties, states, and Indian\ntribes nationwide.  An additional $400 million will be  distributed\nthrough competitive grants, which will be awarded through a future\nFunding Opportunity Announcement.\n                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3c4e769e-00bc-4459-a40a-941e075898de,\"MENENDEZ STATEMENT ON SEC INSPECTOR GENERAL REPORT ON MISHANDLING OF MADOFF FRAUD \n                    \n                      September 2, 2009\n                     WASHINGTON – Today, U.S. Senator Robert Menendez, member of the Banking Committee,\nonce again advocated better accountability and reform at the Securities\nand Exchange Commission and other financial regulatory agencies after\nthe Commission released a report with details on how the Commission\nmishandled the Madoff case and ignored warning signs over 16 years that\ncould have prevented the multibillion-dollar fraud:“The SEC\nInspector General’s Report shows the urgent need for financial\nregulatory reform at every level of the system. Not only was Bernard\nMadoff’s business investigated on multiple occasions over a period of\n16 years, on each and every single one of these occasions, the case was\nmismanaged by regulators.  We need more effective financial regulators\nand strong independent inspectors to make sure those regulators are\nefficiently carrying out their responsibilities. As a member of the\nBanking Committee, I can guarantee that we will use this report as a\nresource to create strong legislation for an effective regulatory\nsystem that will help prevent a similar fraud from taking place in the\nfuture,” said Senator Menendez.\n  To prevent this type of fraud from taking place again, Senator Menendez has called in the past for: •    An increased enforcement budget at the SEC, which was inadequately funded during the Bush Administration •    Senate Finance Committee hearings on ways the federal government\ncan help innocent victims of Ponzi schemes to recoup their losses\nthrough the Securities Investor Protection Corporation (SIPC) or other\nmeans  •  \n Enactment of the Improved Financial and Commodity Markets Oversight\nand Accountability Act, legislation Senator Menendez introduced on June\n25th, 2009 (http://menendez.senate.gov/newsroom/record.cfm?id=315148)\nto strengthen the Inspectors General at five key financial regulatory\nagencies:  the Securities and Exchange Commission, the Federal Reserve,\nthe Commodity Futures Trading Commission, the National Credit Union\nAdministration, and the Pension Benefit Guarantee Corporation.  The\nlegislation would require Presidential appointments and Senate\nconfirmation of the Inspectors General, who are currently appointed by\nthe heads of the agencies they are supposed to investigate.  The\nlegislation also clarifies the subpoena powers of the Inspectors\nGeneral so they can properly oversee the financial regulators and\nrequires regulators to respond to deficiencies identified by the\nInspectors General by either taking corrective action or explaining to\nCongress why they are not taking corrective action.  Earlier\nthis year, Senator Menendez also led efforts in the Senate to look into\nways the thousands of investors who were victims of this scheme could\nbe helped, and worked with the IRS to establish and issue clear\nguidance on how they should report their losses to receive proper tax\nrelief. Read a copy of the letter Senator Menendez sent to the\nHonorable Douglas Shulman, Commissioner of the Internal Revenue Service\nhere: http://menendez.senate.gov/pdf/02202009IRSMadoffLetter.pdf\n Click here to read the SEC report online: http://sec.gov/spotlight/secpostmadoffreforms/oig-509-exec-summary.pdf\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9195975e-3fc4-476e-b97a-dabf62a1a0c5,\"U.S. SENATOR ROBERT MENENDEZ'S STATEMENT ON NJ ASSEMBLY SPEAKER JOSEPH ROBERTS \n                    \n                      September 2, 2009\n                     NEWARK - U.S. Senator Robert Menendez released the following statement on Speaker Robert’s decision not to run for re-election:\n “Speaker\nRoberts has been a champion for the causes of New Jerseyans most in\nneed and he will be missed,” said Senator Menendez.  “New Jersey\nfamilies have had a strong voice in the legislature for over two\ndecades, watching their backs when it comes to affordable housing,\nhealth care and tax reform.\"\" \n“Joe Roberts has forged his place as one of the great Speakers of the\nGeneral Assembly and will remain as an example to follow. Joe's\nunderstanding of the confluence of policy, politics and process, is a\nrare skill, one that he put to good work for the people of New Jersey. \nI salute his service and wish him well.”\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f0b4d262-92eb-4830-8de4-126bdcdc8bce,\"U.S. SENATOR ROBERT MENENDEZ, COMMITED TO HEALTH CARE INSURANCE REFORM, DISPELS MISINFORMATION, HIGHLIGHTS NEED THROUGH PATIENTS AND THEIR FAMILIES \n                    \n                            Wendell Potter, retired insurance executive, offered insight into routine company practices and attempts to kill reform\n                    \n                      September 1, 2009\n                     TEANECK – Today, U.S Senator Robert Menendez, a member of the Senate Finance\nCommittee, was joined by former insurance executive Wendell Potter and\ninsured families who exemplify so many who have suffered through hours\nof calls and endless paperwork, uncertainty, and paid thousands in\nout-of pocket expenses for life-saving treatments during periods of\nextreme need.  The event highlighted the urgent need for health care\ninsurance reform.“As a member of the committee most central to health insurance reform,\nI am working to help craft a bill that lets you keep the health\ninsurance you have if you like it, while increasing choice and\ncompetition to keep insurers honest,” said Senator Menendez.“Today, I want to focus on the voices that have gotten too little\nattention this summer. The voices that, for decade after decade, have\nbeen evidence of a health insurance system that isn’t good enough for\nour families or our nation.\"\" Senator Robert Menendez (D-NJ), who has expressed his support for\nexpanding health insurance options as part of national health care\nreform, supports including the “public option,” which would make\navailable a health insurance alternative that is currently not\navailable in the private insurance system. Senator Menendez, a member\nof the Senate Finance Committee, which is drafting a significant\nportion of the system’s reform process, emphad the importance of\nthis piece of legislation, because it ensures increased access and\naffordability in the health care system.   In 2006, New Jersey families paid $12,233 a year in insurance premiums\nand in 2016, if nothing is done will be paying $24,026.  During the\nlast two years, 2,383,000 New Jerseyans under age 65 went without\nhealth insurance for some time,  approximately 32 percent of the under\n65 population. Senator Menendez was joined by 3 families who described their\ndifficulties with their health insurance during the most difficult\ntimes of their lives: a time when they were battling illness: Kia Moore’s 21 month old child needed a kidney transplant after being\nborn with kidney failure.  After months of treatment at a Philadelphia\nhospital and having a scheduled date for the operation, her insurance\ncompany told her that her son could only have the operation at three\nhospitals, none of which performed steroid-free transplants, vital to\nthe child’s growth. It took endless paperwork, calls and investigations\nto finally get young Xavier the operation he needed.  Eleanor Hahn was a sophomore in high school when she noticed a bump on\nher arm that was diagnosed as osteosarcoma, a rare form of cancer. Her\nillness necessitated an operation to remove the cancerous bone.  Many\nof the costs for her surgery and ensuing care were not paid for by the\ninsurance company.  Eleanor who for months needed chemotherapy, could\nnot take needed anti nausea medication, because the pills were too\ncostly and not covered by insurance outside of the hospital setting.    Joyce Parseghian (deceased) blacked out while driving.   During the\nseries of medical examinations that later diagnosed her problem as a\nbrain tumor – specifically, central nervous system (CNS) lymphoma, she\nchanged insurance companies She required immediate chemotherapy\nfollowed by radiation treatments.  Without treatment, her doctors\npredicted she would only have a few months to live. Her insurance\ncompany denied the treatment because of a determination that it was a\npre-existing condition.  She was able to receive treatment through a\ngrant from a famous cancer center and lived for three more years.  Her\nsister Linda joined Senator Menendez today to tell her story. Senator Menendez was also joined by Wendell Potter, a former insurance\ncompany executive who felt the need to do the socially conscious thing\n– to leave his employment and speak out about the problems inherent in\nthe health insurance industry and the pressing need for health care\nreform.   A long time employee in the health insurance industry, when\nthe health care reform debate began, he became vocal on how insurance\ncompanies look for ways to deny coverage, are misleading in their\nadvertising and hike small businesses’ premiums after an employee\nsuffers an accident or an illness. The Senate Finance Committee, of which Menendez is a member, will start\nforging a bill once Congress goes back in session on September 8th. \n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2b836519-4a56-4623-98a9-976f0db80795,\"SENATOR MENENDEZ URGES TREASURY AND FEDERAL RESERVE TO ADDRESS RAPID DECLINE OF COMMERCIAL REAL STATE \n                    \n                      August 31, 2009\n                     \nWASHINGTON –  U.S. Senator Robert Menendez (D-NJ) is urging Treasury Secretary Geithner and \nFederal Reserve Board Chairman Bernanke to take early and forceful measures to \naddress the rapid decline of the commercial real estate market and its \npotentially devastating effects on the broader economy. This sector is currently \nfacing primarily two significant hurdles that could pose risk to the \neconomy:\n1) Increase in \ncommercial vacancy rates, mortgage defaults, and foreclosure \nrates\n2) Inability to \nfinance or refinance commercial mortgages because of insufficient lending and \nthe break-down in the secondary market for commercial mortgage-backed \nsecurities \n“We have \nalready seen the terrible consequences of increasing residential real estate \nforeclosures, and increasing commercial real estate foreclosures could very soon \npose an even bigger problem for the stability of the overall economy.’ said \nSenator Menendez in his letter.\n“The federal \ngovernment can, and must, craft solutions that help kick-start commercial \nlending and the market for commercial mortgage-backed securities.  The U.S. \nCongress Joint Economic Committee held a hearing on July 9th on commercial real \nestate and witnesses suggested a range of possible solutions.  I look forward to \nhearing what the Treasury Department’s and Federal Reserve’s positions are on \nthese proposals and what other efforts are underway at your respective agencies \nto deal with this potential crisis.”\nClick here to read \nthe letter: http://menendez.senate.gov/pdf/08272009Commercialrealestateletter.pdf\nFull text of letter \nbelow:\n August 27, \n2009\nThe Honorable \nTimothy F. GeithnerSecretary of the \nTreasuryU.S. Department \nof the Treasury1500 \nPennsylvania Avenue, NWWashington, D.C. \n20220\nThe Honorable \nBen S. Bernanke\nChairman\nThe Federal \nReserve Board\n20th Street and \nConstitution Avenue, NW\nWashington, DC \n20551\nDear Secretary \nGeithner and Chairman Bernanke:\nI write to urge \nthe Treasury Department and Federal Reserve to take early and forceful steps to \naddress the rapid decline of the commercial real estate market and its \npotentially devastating effects on the broader economy.  The authorities did not \nheed my warning when I predicted a tsunami of residential foreclosures in March \n2007.  I am now deeply concerned about a tsunami of commercial real estate \nforeclosures and what actions we are taking to avoid that.\nWe have already \nseen the terrible consequences of increasing residential real estate \nforeclosures, and increasing commercial real estate foreclosures could very soon \npose an even bigger problem for the stability of the overall economy.  The \ncommercial real estate market is currently faced with at least two significant \nproblems that pose systemic risk.\nThe first \nproblem is that vacancy rates, commercial mortgage defaults, and foreclosures \nhave increased.  Increasing unemployment and reduced consumer spending has led \nto significant declines in commercial real estate income.  Since real estate \nincome directly affects commercial property values, the reduced income has led \nto both a decline in commercial property values of more than one-third since \n2007 and to higher default rates on commercial mortgages.\nThe second \nproblem is the severe inability to finance or refinance commercial mortgages.  \nBanks are not lending enough and the secondary market for commercial \nmortgage-backed securities has fallen from a peak of $230 billion of bonds \nissued in 2007 to virtually no bonds being issued today.  Commercial real estate \ntransactions have therefore fallen about 80% from their \npeak.\nThe federal \ngovernment can, and must, craft solutions that help kick-start commercial \nlending and the market for commercial mortgage-backed securities.  The U.S. \nCongress Joint Economic Committee held a hearing on July 9th on commercial real \nestate and witnesses suggested a range of possible solutions.  I look forward to \nhearing what the Treasury Department’s and Federal Reserve’s positions are on \nthese proposals and what other efforts are underway at your respective agencies \nto deal with this potential crisis.\nSincerely,\nROBERT \nMENENDEZ\nUnited States \nSenator\n                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=907e85e9-fdac-41da-a796-d081c6878ff1,\"SENATOR MENENDEZ ANNOUNCES MORE THAN $1 MILLON FOR LAST PHASE OF HUDSON-BERGEN LIGHT RAIL PROJECT \n                    \n                      August 31, 2009\n                     WASHINGTON - Today,\nU.S. Senator Robert Menendez (D-NJ) announced that the New Jersey\nTransit Corporation has been awarded $1,092,821  for the final phase\nand completion of the Hudson-Bergen Light Rail Project’s, the\ninnovative New Jersey Rail project that will connect the communities of\nBayonne, Jersey City, Hoboken, Weekhawken, Union City and North Bergen,\nfunded by a mixture of state and federal funds. A remaining and final\ninstallment of $11,000 will be awarded in the fiscal year 2010. \n “This\nproject is important to help create jobs, support New Jersey\nbusinesses, reduce energy costs and save commuters time and money. It\nis also helps ensure clean air in New Jersey for generations to come.\nThis light rail is important to our transportation system and to the\neconomic development of the surrounding region. I have worked to\nsupport this project for years, dating back to my time as Mayor of\nUnion City, and I am thrilled to see its completion.”\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e167d77b-75f9-4d10-acef-3bc82c53f1cb,\"The Menendez Message\n                    \n                            Volume 5, Issue 7 - August 27, 2009\n                    \n                      August 27, 2009\n                     \n\n\n\nWelcome to the Menendez Message!Volume 5, Issue 7 - August 27, 2009\n \nVideo introduction and update from Senator Menendez\nIn this issue:\nMAKING HEALTH CARE MORE AFFORDABLE AND ACCESSIBLE\nAN EMINENTLY QUALIFIED SUPREME COURT NOMINEE; THE PROMISE OF AMERICA FULFILLED\nPROTECTING OUR COMMUNITIES FROM GUN VIOLENCE\nLEGISLATION TO BAN TEXTING WHILE DRIVING\nFULL SPEED AHEAD FOR THE MASS TRANSIT TUNNEL\nURGING BETTER IMPLEMENTATION OF HOME LOAN MODIFICATION PROGRAM\nPRESERVING OUR JERSEY SHORE\nMODERNIZING GREAT FALLS HYDROELECTRIC POWER PLANT\nFINANCIAL REGULATION NEEDED TO AVOID FUTURE ECONOMIC CRISES\nRELEASE OF NEW JERSEY NATIVE BEING HELD IN PAKISTAN \nHELPING ENSURE THAT U.S. MILITARY ASSISTANCE TO PAKISTAN IS USED TO FIGHT EXTREMISTS\nCONTINUING OUR FIGHT TO REUNITE SEAN GOLDMAN AND HIS FATHER\nPREVENTING A REPEAT OF THE GROUND ZERO PHOTO OP FIASCO\nSTANDING UP AGAINST POWER LINES ON OUR PROPERTY\nENDING SLOT AUCTIONS AT NEW JERSEY-NEW YORK AIRPORTS\nHONORING VIVIAN STRINGER FOR HALL OF FAME SELECTION\nHOME ENERGY EFFICIENCY\nBOB'S BILLS\nPROTECTING OUR CHILDREN & TEENS ONLINE \nENSURING HOUSING FOR THE LOW-INCOME DISABLED\nHELPING LAW ENFORCEMENT QUICKLY FIND MISSING PERSONS\nNEW LEGISLATION TO SPUR THE USE OF NATURAL GAS VEHICLES\nINCREASING ACCOUNTABILITY AT FINANCIAL REGULATORY AGENCIES\nSTRATEGIC BOOST IN ASSISTANCE TO LATIN AMERICA\nATTACKING DEADLY DRUG RESISTANT STAPH INFECTIONS\nPROVIDING WOMEN ACCESS TO HEALTH CARE FOR THEIR UNIQUE NEEDS\nHOME VISITATION PROGRAMS TO HELP BREAK THE CYCLE OF POVERTY\nNATIONAL EDUCATOR WORTHY WAGE DAY\n\nPlease\nnote that you can also follow my work in Congress via YouTube,\nFacebook, and Twitter. Click on the icons below to be directed to each\nof the sites.\n  \n\nMAKING HEALTH CARE MORE AFFORDABLE AND ACCESSIBLEIn the greatest nation on earth, access to affordable health care\ntoo often just doesn't exist. This applies not only to the 47 million\nAmericans who have no health insurance at all, but also to the millions\nof middle class families - working families - who do have health\ninsurance but find that the care they need is either too expensive or\nis denied by their insurer.\nSadly, things are getting worse. As health insurance companies\ncontinue to report record profits, insurance premiums that families pay\nkeep rising. Under the status quo, it is expected that within seven\nyears, one out of every three dollars New Jersey families earn will be\neaten up by the cost of their employer-sponsored health insurance.\nIt is also important to point out during this economic crisis\nthat health care reform is actually reform for our nation's budget as\nwell. Under the current system, not only do we all foot the bill for\nthe emphasis on emergency care instead of preventative care, but there\nis plenty of misspent money, including $177 billion that subsidizes\ninsurance companies.\nThe Senate Finance Committee is one of the committees in charge\nof health care insurance reform. As a member of that committee, I am\nworking to help create a system that reduces costs and increases choice\nin health care.\nIt is important to remember the word “choice” – as in, if you like\nwhat you have, you can keep it without being forced into any other\ninsurance plan. Another choice I support is a strong public option,\nwhich can provide real competition in the health insurance system to\nhelp drive down costs and keep insurers honest.  This would be\navailable under a newly formed health care “exchange” for those who\ndon’t have employer-provided health insurance – it would be a\nmarketplace that would allow families to choose their health insurance\nfrom a number of private insurers and a public plan option.\nReforming our health care system would be a generational achievement\nfor two reasons - it has taken generations to get this close to serious\nreform, and it would put our families and our nation on sounder footing\nfor generations to come.\n» Click to submit your ideas regarding health care reform\n \nAN EMINENTLY QUALIFIED SUPREME COURT JUSTICE; THE PROMISE OF AMERICA FULFILLEDI\napplaud President Obama for his brilliant and historic nomination of\nour newest Supreme Court Justice, Sonia Sotomayor, and I applaud my\nSenate colleagues who reviewed her tremendous record and voted to\nconfirm her. I believe that Judge Sotomayor - one of the most\nexperienced and proven nominees in our nation's history - is eminently\nqualified to successfully take on and perform her new role. Throughout\nher distinguished career, including appointments from both Republican\nand Democratic administrations, Judge Sotomayor has shown a vast\nknowledge of the law, displayed the proper temperament and gained a\nbreadth of experience that makes her an ideal nominee. I was proud to\nvote in favor of her confirmation. Judge Sotomayor's confirmation is\nthe promise of America fulfilled.\n» Click here to read the press release\n \nPROTECTING OUR COMMUNITIES FROM GUN VIOLENCEI\nwas proud to help lead efforts to defeat a Senate amendment that would\nhave allowed other states' concealed weapons laws to trump New Jersey's\nstronger gun safety laws. In a country where the second leading cause\nof death for our youth is gun violence, this amendment would have been\ndoubly dangerous. It would have benefitted criminals, not their\nvictims, by making it easier for people hiding a gun to stroll into a\nschool, a playground or a crowded stadium. And it would have trampled\nthe rights of the people in our state to make our own safety laws,\nwhich are based on a different and unique experience from states in\nwhich gun laws are lax. For families who don't want to have to worry\nabout who might be hiding a gun every time they take their kids to\nschool, go to the supermarket or go to work, this was a big victory in\nthe name of safety.\n» Click here to read the press release\n \nLEGISLATION TO BAN TEXTING WHILE DRIVINGStudies\nhave shown over and over that texting while driving is incredibly\ndangerous --even more dangerous than drunk driving-- and it's time to\ntake action to prevent the tragic accidents that result. I have joined\nwith three colleagues to introduce legislation that would ban anyone\nfrom texting on a cell phone or other personal electronic device while\noperating a moving vehicle. This includes not only people driving cars\non our roads but also people operating trains and buses for our mass\ntransit systems. The Avoiding Life-Endangering and Reckless Texting by\nDrivers Act (\"\"ALERT Drivers\"\" Act) would require states to bar the\nsending of text or email messages while operating a vehicle - or risk\nlosing federal highway funds, similar to the federal ban on drunk\ndriving.\n» Click here to read the press release\n \nFULL SPEED AHEAD FOR THE MASS TRANSIT TUNNEL I\nwas thrilled to help break ground on the new mass transit tunnel that\nwill cross the Hudson River. This project - the largest mass transit\nproject currently underway in the nation - will create jobs in these\ntough times and for years to come, help save time and money for\ncommuters, and help clean the air we breathe. I am proud to have helped\nsecure federal funding that has allowed this project to become a\nreality, I was pleased that President Obama's budget included $200\nmillion and it was exciting to be with U.S. Transportation Secretary\nLaHood as he announced the signing of the work agreement that commits\nthe federal government to full support of this important project. As\nthe chairman of the Banking Committee's Subcommittee on Housing,\nTransportation and Urban Development, I will continue to work\nvigorously with transportation officials to ensure that we have the\ninvestments necessary to get the tunnel completed.\n» Click here to read the press release\n \nURGING BETTER IMPLEMENTATION OF HOME LOAN MODIFICATION PROGRAMSuccessfully\nimplementing the administration's loan modification program should be\nat the top of our list of housing priorities. The foreclosure crisis\nhas not only devastated millions of families, but it is the root of our\nglobal financial crisis that has eliminated millions of jobs and forced\nmany more families to struggle. If we can help keep responsible\nfamilies in their homes, we can help solidify our economy and protect\ntheir neighbors' investments, as well. The low rate of participation in\nand lender cooperation with loan modification programs meant to help\nstruggling homeowners modify the terms of their mortgages is\nparticularly concerning. To address this issue, I urged both Secretary\nGeithner and the» CEO's of 20 major mortgage companies to review and revise their loan modification efforts to achieve the\nprogram's goal: To help American families and reduce the number of\nforeclosures.\n» Click here to read the press release\n \nPRESERVING OUR JERSEY SHOREMaintaining\nand replenishing the Jersey Shore is an issue of economic security for\nour state and for families in our coastal communities, not to mention\nan issue of preserving our national treasures. When the administration\nreleased its federal budget proposal earlier this year, I was pleased\nto see a policy change to allow beach replenishment projects to compete\nfor funding. It was disappointing, however, that the guidelines imposed\nby the Office of Management and Budget for these projects have allowed\ncrucial shore protection projects to go unfunded. Only $52 million were\nallocated for beach replenishment projects nationwide, an amount the\nArmy Corps of Engineers needs for beach projects here in New Jersey\nalone. In addition, only one beach replenishment project in New Jersey\nreceived funds through the budget. Together with other New Jersey\nlawmakers, I am working hard to make sure the policies preventing\nprojects from receiving funding are adjusted. To that end, we secured\napproximately $26 million for New Jersey beach replenishment projects\nin the Senate and will continue to fight to ensure that this vital\nfunding stays in the final bill that becomes law. It is imperative in\nthese difficult economic times to ensure that our local economy and\nnatural treasures are protected.\n» Click here to read the press release\n \nMODERNIZING GREAT FALLS HYDROELECTRIC POWER PLANTI\nam proud to have created the Energy Efficiency and Conservation Block\nGrants program in Congress in 2007, and to have helped secure $73\nmillion for New Jersey cities, towns and counties in the recovery\npackage. As part of that funding, I helped announce that Paterson will\nmodernize the Great Falls hydroelectric plant. These upgrades would\ninclude planning for increased electricity generation and making the\nfacilities more energy efficient with solar panels and other\nimprovements. The more we can harness the power of water, wind and the\nsun for our energy needs, the better we can lay the foundation for\neconomic security in the 21st Century. We need to continue to\naggressively look into the job creation, energy cost savings and\nenvironmental benefits of clean energy projects, like the planned\nmodernization of the hydroelectric plant at Great Falls.\n» Click here to read the press release\n \nFINANCIAL REGULATION NEEDED TO AVOID FUTURE ECONOMIC CRISESMillions\nof families are facing the toughest times they've ever experienced -\nthat is in large part a direct result of banks being allowed to conduct\nrisky transactions with little or no concern for the potentially\ndevastating consequences. We have to make sure real accountability is\nin place for Wall Street so that families don't again end up paying the\nprice for risky financial schemes. The White House's recently announced\nproposal to address this issue is certainly a good start. However, I\nthink we can provide even more accountability and protections in areas\nlike systemic risk, so that we can head off major threats to our\neconomy before they are realized. As a member of the Senate's Banking\nCommittee, I look forward to working with chairman Dodd to produce\nstrong financial accountability in any legislation that moves forward\nin Congress.\n» Click here to read the press release\n \nRELEASE OF NEW JERSEY NATIVE BEING HELD IN PAKISTANMany\nNew Jerseyans were filled with concern during the ordeal of John\nSolecki -- the head of the United Nations High Commissioner for\nRefugees and native of Demarest, who was held captive by an extremist\ngroup in Pakistan. It was a huge relief for many in our state when we\nfinally got word of his release. Having worked with his family through\nmy capacity on the Foreign Relations Committee to push for his freedom,\nI know how much they love John and how sweet their reunion must have\nbeen. When he was finally freed, it was a beautiful day for John and\nhis family.\n» Click here to read the press release\n \nHELPING ENSURE THAT U.S. MILITARY ASSISTANCE TO PAKISTAN IS USED TO FIGHT EXTREMISTSAlmost\neight years of support and more than seven billion in American taxpayer\ndollars for Pakistan's military have not prevented the Taliban and al\nQaeda from regrouping along the Pakistan-Afghanistan border. The fight\nagainst these extremists is crucial for our national security, which is\nwhy we have to certify that our support is in fact doing what we intend\nit to do and is not being used for other purposes. Beyond the national\nsecurity implications, this is also a matter of responsibility with\ntaxpayer dollars. I was proud to help successfully attach an amendment\nto the Department of Defense authorization bill that passed the Senate\nlast month to help ensure that military assistance for Pakistan is\nactually being used for its intended purpose: To fight the Taliban and\nal Qaeda.\n» Click here to read the press release\n \nCONTINUING OUR FIGHT TO REUNITE SEAN GOLDMAN AND HIS FATHERA\nBrazilian Supreme Court judge's decision surprisingly suspended a lower\ncourt order that would have reunited 9-year-old Sean Goldman with his\nfather, David Goldman, of Tinton Falls. Just when it appeared that the\nagonizing wait would finally be over and this case would reach a happy\nconclusion, yet another hurdle was put in the way. David should know\nthat those of us who have taken action to help his cause will not cease\nour advocacy - we are continuing to express to the Brazilian\nauthorities the importance of adhering to the Hague Conventions and\nallowing David to regain his rightful custody of Sean. At the heart of\nthis case is family, and this New Jersey family deserves to be reunited.\n» Click here to read the press release\n \nPREVENTING A REPEAT OF THE GROUND ZERO PHOTO OP FIASCOIn\nresponse to the mishandled photo opportunity involving Air Force One\nflying near Newark, Jersey City, the Statue of Liberty and Lower\nManhattan, I called on the relevant federal agencies to improve their\nsystem of notification to local law enforcement, governors and\ncongressional delegations. The exercise, which caused unnecessary alarm\nand anxiety, was not only reckless and insensitive to those of us who\nlive in this area, it also revealed a serious lack of national security\nprotocols required to respond to a real attack or natural disaster. On\nbehalf of all workers and residents in Lower Manhattan and here in New\nJersey, I insisted on answers about the notifications given to local\nofficials in a letter to Defense Secretary Gates, then White House\nMilitary Office Director Louis Caldera, Acting Federal Aviation\nAdministration chief Lynne Osmus and Homeland Security Secretary Janet\nNapolitano.\n» Click here to read the press release\n \nSTANDING UP AGAINST POWER LINES ON OUR PROPERTYNew\nJersey has been eyed as prime territory for new transmission lines\ncoming from coal country to New York City, the Northeast and the Mid\nAtlantic regions. Under this legislation, a New Jersey family could be\nhelpless to fight new high-powered transmission lines that are proposed\nfor placement in their backyard or other protected areas. Furthermore,\ntransmission lines would be used to transmit electricity generated from\ndirty fossil fuel sources instead of being used expressly for\nelectricity from clean renewable energy sources. As a member of the\nEnergy and Natural Resources Committee, I have been a strong opponent\nof electricity transmission policy that would deny local residents and\nproperty owners a say in the process, and I will continue to fight it.\n» Click here to read the press release\n \nENDING SLOT AUCTIONS AT NEW JERSEY-NEW YORK AIRPORTSRecently,\nthe Obama Administration decided to end the plan to auction slots for\nthe prime flight departure times at airports in the New Jersey-New York\narea. I had fought against these auctions, and this was welcome news\nfor our state and our region. I commend Secretary LaHood and President\nObama for their work to end this misguided experiment.\nFrom the time President Bush announced his plan to withdraw flight\nslots from airlines flying in the region and auction them to the\nhighest bidder, I denounced the plan as counterproductive and\npotentially very expensive for families in our region. The FAA should\ninstead modernize its equipment, adequately staff its control towers,\nand expedite new technology to increase airport capacity. I look\nforward to working with President Obama and Secretary LaHood on what\nwill hopefully be more sensible air travel policy that will make air\ntravelers a priority.\n» Click here to read the press release\n \nHONORING VIVIAN STRINGER FOR HALL OF FAME SELECTIONI\nwas thrilled to learn of the selection of Rutger's women's basketball\ncoach, Vivian Stringer, for induction into the basketball hall of fame\nand pleased to place an official statement in the Congressional Record\nhonoring her. During her 38-year coaching career (14 at Rutgers),\nStringer has amassed 825 victories, 30 seasons with 20 or more wins, 22\nNCAA tournament appearances, four Final Fours, and an Olympic gold\nmedal as an assistant coach. But Vivian Stringer has served, above all\nelse, as a teacher to each of her players and role model for young\nwomen. Her life and legacy is a source of pride and inspiration for all\nNew Jerseyans.\n» Click here to read the press release\n \nHOME ENERGY EFFICIENCYAs we work\ntoward stabilizing our economy and cleaning the air we breathe,\nincreasing energy efficiency can play an important role. Together with\nSenators Sheldon Whitehouse (D-RI) and Charles Schumer (D-NY), I was\nproud to help announce the introduction of new legislation encouraging\nfamilies and property owners to improve their homes' energy efficiency.\nThe Energy Efficiency in Housing Act would help consumers save money on\nhome energy costs, create jobs for local contractors, and limit\npollution that contributes to global warming.\n» Click here to read the press release\n \nBOB'S BILLS:\nPROTECTING OUR CHILDREN & TEENS ONLINE\n\nAs\nthe Internet and wireless devices play increasingly important roles in\nthe lives of everyone, including children and teens, dangers such as\n\"\"sexting\"\" and \"\"cyberbullying\"\" become increasingly prevalent. Together\nwith Congresswoman Debbie Wasserman Schultz (D-FL), I introduced\nlegislation that would support and develop programs nationwide to\neducate schoolchildren, teachers and parents about keeping the Internet\nsafe for children and teens. The School and Family Education about the\nInternet (SAFE Internet) Act will create a grant program to support\nexisting and new Internet safety education programs that meet\nguidelines based on the cybersafety strategies found to be most\neffective.\n» Click here to read the press release\n  \nENSURING HOUSING FOR THE LOW-INCOME DISABLED\n\nI\nintroduced legislation with Senator Mike Johanns (R-IN) aimed at\nensuring that low-income disabled Americans have access to affordable\nhousing options. The Frank Melville Supportive Housing Investment Act\nwould bolster the U.S. Department of Housing and Urban Development's\nprogram that increases the availability of affordable housing for\npersons with disabilities and helps provide them with rental\nassistance. It is often hard for those who are disabled to find\naffordable housing that allows them to live independently, and that is\nparticularly true during these tough times. We are working to help\nensure that disabled members of our communities can keep a roof over\ntheir heads and can get some relief for their personal finances. We can\ndo this by helping to increase the availability and reduce the cost of\ntheir housing.\n» Click here to read the press release\n  \nHELPING LAW ENFORCEMENT QUICKLY FIND MISSING PERSONS\n\nAll\nparents know that being unable to find your child for even a few\nseconds is terrifying, and we can only imagine the dread that\naccompanies having to report a missing person. We need to give parents\nand law enforcement every tool available to locate and safely recover\nmissing persons as quickly as possible. Along with Senators Orrin Hatch\n(R-UT), Edward Kennedy (D-MA), Richard Durbin (D-IL), Mel Martinez\n(R-FL), Bill Nelson (D-FL), Frank Lautenberg (D-NJ) and 10 other\ncolleagues, I introduced legislation (S. 1301) that would make a\nfederal investment in the A Child is Missing program, which assists law\nenforcement efforts with locating missing persons quickly by generating\n1,000 calls every 60 seconds to phone numbers in the immediate area.\nWith this legislation, we can help ensure more missing person cases\nultimately have happy endings.\n» Click here to read the press release\n  \nNEW LEGISLATION TO SPUR THE USE OF NATURAL GAS VEHICLES\n\nWe\nsaw last summer how the wild fluctuations in oil prices helped to wreck\nour economy, and we've seen how pollutants from dirty fuels are\nwrecking our planet. Our economic crisis has shined a spotlight on the\nurgent need for alternative, cleaner and cheaper sources of energy that\nwe don't have to import. By making it easier and less expensive to own\na vehicle that runs on natural gas, we can help families save money on\nenergy, create new manufacturing jobs and clean our air. To help reach\nthis goal, I was joined by energy-independence advocate T. Boone\nPickens to introduce new legislation that would boost the use of\nvehicles running on natural gas by extending and increasing tax credits\nfor natural gas vehicles and refueling stations. The bill is\nco-sponsored by Senate Majority Leader Harry Reid (D-NV) and Senator\nOrrin Hatch (R-UT).\n» Click here to read the press release\n  \nINCREASING ACCOUNTABILITY AT FINANCIAL REGULATORY AGENCIES\n\nWith\nlegislation to implement stronger financial regulations on the horizon\nin Congress, I introduced a bill that would increase accountability at\nthe financial regulatory bodies through stronger inspector generals. We\nnot only need to make sure that we have stronger financial regulatory\nagencies to act as cops on the beat for consumers, we also have to make\nsure that those cops on the beat are doing their job.\n» Click here to read the press release\n  \nSTRATEGIC BOOST IN ASSISTANCE TO LATIN AMERICA\n\nI\nwas proud to introduce legislation that will provide $2 billion in\nassistance over a five-year period to the countries of Central America,\nSouth America, the Caribbean, and Mexico. This funding, which is in\naddition to current U.S. assistance programs in the region, will be\nspecifically directed toward building the institutions of governance to\nimprove economic conditions, reduce poverty, and develop renewable\nsources of energy to strengthen the social and economic infrastructure\nof countries in the region.\n» Click here to read the press release\n  \nATTACKING DEADLY DRUG RESISTANT STAPH INFECTIONS\n\nThe\ndevastating drug-resistant staph infection known as MRSA has affected\nhospital patients, first responders, schoolchildren and other\nindividuals in public places across the country. In response, I have\nupdated and reintroduced legislation to combat the spread of the\ninfection. The Worker Infection Protection Act would create a new\nOccupational, Safety and Health Administration (OSHA) standard to\nprotect employees who are exposed to drug resistant infections, such as\nMRSA.\n» Click here to read the press release\n  \nPROVIDING WOMEN ACCESS TO HEALTH CARE FOR THEIR UNIQUE NEEDS\n\nWith\nhealth care reform taking center stage in Congress, I introduced\nlegislation intended to ensure that women have access to health care\nproviders who understand and are focused on health issues unique to\nwomen. The Women's Medical Home Demonstration Act would establish an\nunprecedented program that gives women access to a \"\"medical home\"\" - for\ninstance a physician or federally-qualified health center - that can\nmanage their total health care and focus on their unique health care\nneeds.\n» Click here to read the press release\n  \nHOME VISITATION PROGRAMS TO HELP BREAK THE CYCLE OF POVERTY\n\nHome\nvisitation programs provide care and information to families, help\nbreak the cycle of poverty and improve the health and well-being of low\nincome children and families. Together with Sen. Robert Casey (D-PA), I\nintroduced legislation to expand proven home visitation programs. The\nEvidence-Based Home Visitation Act would provide states and public and\nprivate entities with funding to establish or expand home visitation\nprograms proven effective through rigorous testing.\n» Click here to read the press release\n  \nNATIONAL EDUCATOR WORTHY WAGE DAY\n\nSixty\npercent of children under the age of six spend at least part of the day\nin non-parental care, but early educators earn an average annual salary\nof less than $19,000, and only one-third have health insurance. On\nbehalf of these important individuals who help in our children's\ndevelopment, I authored a resolution that would acknowledge the tough\ncompensation situation they face and would put the US Senate on record\nin support of the goals and ideals of National Early Educator Worthy\nWage Day. If we can improve early educators' pay, it helps the\ndevelopment of our children and helps lay the foundation for\nlong-lasting economic security in the 21st Century.\n» Click here to read the press release\n \n\nhttp://menendez.senate.gov | Click here to unsubscribe\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8f5c14ff-7a5a-40f7-8338-cd3057998926,\"MENENDEZ ANNOUNCES MORE THAN $103 MILLION IN CASH FOR CLUNKERS REBATES REQUESTED IN NJ \n                    \n                            As program comes to an end, Menendez hails the benefits to NJ consumers, businesses and environment\n                    \n                      August 27, 2009\n                     WASHINGTON – After the “Cash for Clunkers” program came to a close last night,\nU.S. Senator Robert Menendez (D-NJ) announced today that a total of\n$103,375,500 in rebates was requested at New Jersey dealerships. New\nJerseyans took advantage of the program at a greater rate than the\nnational average -- $12.29 in rebates were requested per New Jerseyan,\nwhich is higher than the national average of $10.48. The Cash for\nClunkers program offered rebates of up to $4,500 for consumers who\ntraded in gas guzzlers for more fuel efficient new cars.“At a time when initiatives to spur economic activity is needed, this\nprogram was a tremendous success, particularly in New Jersey,” said\nMenendez. “As a result of it, hundreds of millions of dollars have been\npumped into local businesses, thousands of jobs have been supported,\nand thousands of New Jersey families will be saving money at the pump.\nThis also helps us clean the air we breathe and reduce our dependence\non foreign oil from oil-rich dictators. ‘Cash for Clunkers’ has helped\nmove us toward an economic recovery and economic security in the 21st Century.“The tremendous popularity of the program has led to some delays along\nthe way, but I have been working closely with dealers, customers, and\nthe Department of Transportation to make sure every New Jersey\napplication is handled as efficiently as possible.  In response to\ninquiries from our office and others, the National Highway\nTransportation Safety Administration has tripled the number of staff\nprocessing inquiries. I have been assured that every dealer who has\nlegitimately requested a rebate will soon receive one.” Background on the Cash for Clunkers program:\n \nb>\nC.A.R.S. Program Statistics\nWednesday, August 26th, 2009\nb>\nDealer Transactions\nNumber Submitted:  690,114\nDollar Value:  $2,877.9M\nb>\nTop 10 New Vehicles Purchased\nToyota Corolla \nHonda  Civic \nToyota Camry \nFord Focus FWD \nHyundai Elantra \nNissan  Versa \nToyota Prius \nHonda  Accord \nHonda  Fit\nFord Escape FWD\n \n \nNew Vehicles Manufacturers\nToyota                         19.4%\nGeneral Motors            17.6%\nFord                             14.4%\nHonda                          13.0%\nNissan                             8.7%\nHyundai                          7.2%\nChrysler                          6.6%\nKia                                  4.3%\nSubaru                            2.5%\nMazda                             2.4%\nVolkswagen                    2.0%\nSuzuki                             0.6%\nMitsubishi                        0.5%\nMINI                                 0.4%\nSmart                              0.2%\nVolvo                              0.1%\nAll Other                      <0.1%\nb>\n \n \n\nb>\nTop 10 Trade-in Vehicles\nFord Explorer 4WD \nFord F150 Pickup 2WD \nJeep Grand Cherokee 4WD \nFord Explorer 2WD \nDodge  Caravan/Grand Caravan 2WD\nJeep Cherokee 4WD \nChevrolet Blazer 4WD \nChevrolet C1500 Pickup 2WD\nFord F150 Pickup 4WD \nFord Windstar FWD Van\nb>\nVehicles Purchased by Category\nPassenger Cars:    404,046\nCategory 1 Truck:   231,651\nCategory 2 Truck:    46,836\nCategory 3 Truck:      2,408\nb>\nVehicle Trade-in by Category\nPassenger Cars:      109,380\nCategory 1 Truck:    450,778\nCategory 2 Truck:    116,909\nCategory 3 Truck:        8,134\nb>\n84% of trade-ins under the program are trucks, and 59% of new vehicles purchased are cars. The program worked far better than anyone anticipated at moving\nconsumers out of old, dirty trucks and SUVs and into new more\nfuel-efficient cars.\n \nAverage Fuel Economy\nNew vehicles Mileage:  24.9 MPG\nTrade-in Mileage:  15.8 MPG\nOverall increase:  9.2 MPG, or a 58% improvement\n \nCars\npurchased under the program are, on average, 19% above the average fuel\neconomy of all new cars currently available, and 59% above the average\nfuel economy of cars that were traded in. This means the program raised the average fuel economy of the fleet,\nwhile getting the dirtiest and most polluting vehicles off the road.\n \n \n \n \n \n \n \n \n\nRequested Voucher Dollar Amount by State:\n\nALABAMA\n\n\n$31,251,500\n\n\nALASKA\n\n\n$4,868,500\n\n\nARIZONA\n\n\n$39,542,500\n\n\nARKANSAS\n\n\n$23,402,500\n\n\nCALIFORNIA\n\n\n$326,822,000\n\n\nCOLORADO\n\n\n$37,676,500\n\n\nCONNECTICUT\n\n\n$40,114,000\n\n\nDELAWARE\n\n\n$11,235,000\n\n\nDISTRICT OF COLUMBIA\n\n\n$67,500\n\n\nFLORIDA\n\n\n$146,565,000\n\n\nGEORGIA\n\n\n$70,496,000\n\n\nGUAM\n\n\n$675,000\n\n\nHAWAII\n\n\n$7,333,500\n\n\nIDAHO\n\n\n$11,655,000\n\n\nILLINOIS\n\n\n$143,613,000\n\n\nINDIANA\n\n\n$65,797,000\n\n\nIOWA\n\n\n$37,728,000\n\n\nKANSAS\n\n\n$31,496,500\n\n\nKENTUCKY\n\n\n$40,246,500\n\n\nLOUISIANA\n\n\n$33,376,500\n\n\nMAINE\n\n\n$16,579,500\n\n\nMARYLAND\n\n\n$74,903,000\n\n\nMASSACHUSETTS\n\n\n$64,855,000\n\n\nMICHIGAN\n\n\n$132,407,500\n\n\nMINNESOTA\n\n\n$73,160,500\n\n\nMISSISSIPPI\n\n\n$12,463,500\n\n\nMISSOURI\n\n\n$61,271,500\n\n\nMONTANA\n\n\n$6,461,000\n\n\nNEBRASKA\n\n\n$21,784,500\n\n\nNEVADA\n\n\n$14,582,000\n\n\nNEW HAMPSHIRE\n\n\n$23,045,500\n\n\nNEW JERSEY\n\n\n$103,375,500\n\n\nNEW MEXICO\n\n\n$13,941,500\n\n\nNEW YORK\n\n\n$156,292,000\n\n\nNORTH CAROLINA\n\n\n$78,601,500\n\n\nNORTH DAKOTA\n\n\n$8,938,000\n\n\nOHIO\n\n\n$136,267,000\n\n\nOKLAHOMA\n\n\n$37,422,000\n\n\nOREGON\n\n\n$37,531,500\n\n\nPENNSYLVANIA\n\n\n$138,651,500\n\n\nPUERTO RICO\n\n\n$2,252,000\n\n\nRHODE ISLAND\n\n\n$10,690,500\n\n\nSOUTH CAROLINA\n\n\n$37,207,500\n\n\nSOUTH DAKOTA\n\n\n$10,367,500\n\n\nTENNESSEE\n\n\n$50,949,000\n\n\nTEXAS\n\n\n$183,776,500\n\n\nUTAH\n\n\n$24,102,500\n\n\nVERMONT\n\n\n$9,879,000\n\n\nVIRGIN ISLANDS\n\n\n$1,553,000\n\n\nVIRGINIA\n\n\n$98,523,500\n\n\nWASHINGTON\n\n\n$55,927,500\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=51446375-11e4-4fd6-9cfd-ddccefb37db6,\"SENATOR MENENDEZ ANNOUNCES NEARLY $5 MILLION IN FUNDING FOR NJTRANSIT BUSES, FACILITIES \n                    \n                      August 27, 2009\n                     WASHINGTON - Today,\nU.S. Senator Robert Menendez (D-NJ) announced that the New Jersey\nTransit Corporation has been awarded nearly $5 Million dollars,\nprimarily in Economic Recovery funding, to enhance NJ Transit’s bus\nservice. The funds will be used to replace 32 buses and add nine new\nones. Additional funds will support Camden's Pennsauken Transit Center\nintermodal bus facility, including project administration expenses and\nits environmental assessment. \n\"\"This\nfunding will help ensure that New Jersey families continue to have\naffordable and efficient day-to-day transportation options,” said\nMenendez. “It will also enhance New Jersey's economic competitiveness\nand air quality for generations to come. By investing in public\ntransportation, we are working to spur and our economic recovery and\nlay the foundation for economic security in the 21st century.”  \n \nThe $5 million in funding will be distributed as follows:\n \n·         $4,838,468\nin Economic Recovery funding to purchase vehicle equipment for 18\noperators of rural services and one intercity operator. Funds in the\namount of $3,980,000 will be used to purchase six 30ft. and 26 buses\nshorter than 30ft. for replacement. Funds will also be used to purchase\ntwo 40ft. and seven buses shorter than 30ft. for expansion.\n \n·         $200,640 for the continuation of site analysis and design work at the Pennsauken Transit Center, located in Camden County.\n\n\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d69f4bf5-a124-4d03-9490-53659afc8681,\"MENENDEZ STATEMENT ON SENATOR KENNEDY \n                    \n                      August 26, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) released the following statement on the passing of Senator Edward M. Kennedy:\"\"We\nhave lost one of the greatest public servants in our nation's history –\na man who affected as much progress from his position in the Senate as\nanyone ever has. Ted Kennedy's causes were the causes that make a real\ndifference in the lives of American families. From health care to\neducation, workers' rights to civil rights, his record of\naccomplishment was prolific and profound. Our colleague is now gone;\nmay we be able to carry the torch with the strength, determination and\nwisdom for which we admired him so greatly.\"\"I\nconsider it an honor and a privilege to have served in the Senate\nside-by-side with Senator Kennedy. To have collaborated closely with\nhim at the negotiating table and in Senate debate on legislation to\nprotect our nation's workers and reform our immigration system was an\ninspiring experience for a new Senator. I will always cherish that work\nand will never forget what I learned from joining with Senator Kennedy\nto move our nation forward. I considered him not only a colleague, but\na true friend in the Senate.\"\"Today,\nmillions of our nation's Latinos are mourning the loss of one of their\ngreatest champions. Senator Kennedy will always have a place of honor\nin the Latino community as someone who stood up and fought for the\nrights of immigrants and the issues that affected the community at a\ntime when few others would. From farm worker legislation to voting\nrights and civil rights that impacted the Latino community, we saw the\nstrength of Senator Kennedy's beliefs. For this, Latinos across the\ncountry will always remember him.\"\"As\nmillions of Americans mourn Senator Kennedy's passing, may his life's\nwork be an inspiration. May we always seek to form a more perfect\nunion, as he did. My thoughts and prayers are with Senator Kennedy's\nbeloved wife Vicki, his children and the entire Kennedy family. The\nLion of the Senate will be deeply missed.\"\"\n\n                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0b576a45-0e3f-4916-aadc-18ea1dbc0baf,\"DECLARACIONES DEL SENADOR ROBERT MENENDEZ TRAS EL FALLECIMIENTO DEL SENADOR EDWARD KENNEDY \n                    \n                      August 26, 2009\n                     WASHINGTON – El\nsenador estadounidense Robert Menendez (D-NJ) dio a conocer las\nsiguientes declaraciones tras el fallecimiento del senador Edward M.\nKennedy: \n “Hemos\nperdido a uno de los servidores públicos mas grandes en la historia de\nnuestra nación – un hombre que posiblemente efectuó más progreso que\nnadie desde su silla en el Senado.  Las causas de Ted Kennedy fueron\nlas causas que hacían la verdadera diferencia en las vidas de las\nfamilias norteamericanas.  Desde el cuidado médico hasta la educación;\ndesde los derechos de los trabajadores hasta los derechos civiles.  Su\nrécord de logros fue prolífico y profundo.  Nuestro colega se ha ido.\nQue podamos llevar la antorcha con la fortaleza, la determinación y la\nsabiduría que tanto admirábamos en él.\n \n“Lo\nconsidero un honor y un privilegio el haber servido en el Senado hombro\na hombro con el senador Kennedy.  El haber colaborado de cerca con él\nen la mesa de negociaciones y en debates en el Senado sobre legislación\npara proteger a los trabajadores de nuestra nación y reformar el\nsistema de inmigración, fue una experiencia llena de inspiración para\neste servidor, un entonces nuevo Senador. Siempre habré de valorar esa\nlabor y nunca olvidaré lo que aprendí al unirme al senador Kennedy para\nmover a nuestra nación hacia adelante.  No sólo lo consideré un colega;\nfue un verdadero amigo en el Senado.\n “Hoy\nmillones de latinos en nuestra nación están de luto por la muerte de\nuno de sus grandes campeones.  El senador Kennedy siempre tendrá un\nlugar de honor dentro de la comunidad latina como alguien que defendió\ny lucho por los derechos de los inmigrantes y los temas que afectaban a\nla comunidad cuando pocos lo hacían.  Desde legislación para defender a\nlos labradores hasta los derechos de los votantes y los derechos\nciviles que impactaban a la comunidad latina, vimos la fortaleza de la\nconvicción del senador Kennedy.  Por esto, los latinos de nuestra\nnación siempre lo recordaremos.\n “Que\nlos millones de norteamericanos que lloran la muerte del senador\nKennedy, reciban el alivio de la inspiración que nos dio su labor. Que\nsiempre persigamos la formación de una unión más perfecta, como el\npersiguió. Mis pensamientos y mis oraciones están con Vicky, la esposa\nel senador Kennedy, sus hijos y toda la familia Kennedy.  Extrañaremos\nprofundamente al “León del Senado”.\n \n \n                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=85240bc1-70fb-4a59-8e94-1bac250d1109,\"MENENDEZ JOINS CALL FOR STATE DEPARTMENT TO KEEP GADHAFI OUT OF N.J. \n                    \n                            In letter to Sec. Clinton, NJ Senator urges a restricted visa for Gadhafi \n                    \n                      August 26, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) is urging the State Department to\nhelp keep Libyan leader Moammar Gadhafi out of New Jersey when he\nvisits the United Nations General Assembly meeting in September. In a\nletter to Secretary of State Clinton, Menendez requested that Gadhafi\nbe issued a visa that restricts him to the U. N. Headquarters District\nin New York City. Gadhafi recently helped arrange for the release of the man convicted in\nthe bombing Pan Am Flight 103 and helped give him a hero’s welcome in\nLibya. The Libyan government owns a mansion in Englewood where it has\nbeen speculated that Gadhafi would stay.\n \nPDF of letter to Clinton: http://menendez.senate.gov/pdf/08252009SecClintonltrreGadhafivisittoUN.pdf\n \nText of letter:\n \nAugust 25, 2009\n \n \nThe Honorable Hillary Clinton\nSecretary of State\nU.S. Department of State\nWashington, DC 20520\n \n \nDear Madam Secretary:\n \nI\nwrite to you regarding Libyan leader Moammar Gadhafi’s visit to the\nUnited Nations (U.N.).  I am extremely concerned, as are many of my\nconstituents in New Jersey, about media reports that Moammar Gadhafi\nintends to set up a tent on the front lawn of a house owned by the\nLibyan Mission in Englewood, New Jersey when he attends the United\nNations General Assembly meeting in September. \n \nI\nwrite on behalf of these constituents who reside in New Jersey, and I\nstrongly urge the Department of State to limit Mr. Gadhafi’s visa to\nthe United Nations Headquarters District in New York City.  Given\nrecent events and the “welcome celebrations” that were thrown for\nconvicted terrorist Abdel Baset al-Megrahi, I believe that it is only\nappropriate that Mr. Gadhafi’s visit to the United States be limited\nsolely to the U.N. and only for official U.N. business. \n \nThank you for your consideration of this matter and I look forward to your response.\n \n \nSincerely,\nRobert Menendez United States Senator\n\n\n                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c1491f2d-3173-435c-acdb-024d7b9c81dc,\"SENATOR MENENDEZ ANNOUNCES NEARLY $9 MILLION IN REBATES FOR ENERGY EFFICIENT APPLIANCES IN NEW JERSEY \n                    \n                      August 25, 2009\n                     WASHINGTON – Today,\nUS Senator Robert Menendez announced that the state of New Jersey has\nbeen awarded nearly $9 million dollars as part of an innovative U.S.\nDepartment of Energy program to encourage the use of energy efficient\nENERGY STAR appliances. These federal funds will be awarded through\nrebates to reduce the cost of higher-efficiency appliances and help\nfoster greater public awareness of the benefits of using ENERGY STAR\nproducts. The rebate program will also encourage the increased demand\nand help retain associated manufacturing, retailing, and recycling\njobs. Funding will be awarded to New Jersey’s energy offices, based on\na formula created in the Energy Policy Act of 2005.  Through September\n4, the program will be awarding 10% ($833,500) of these rebates; the\nremaining 90% will be delivered following approval of the application\nand program plan.   “This program will help us jumpstart our\neconomy – a green economy that protects the environment, lowers energy\nbills and increases energy security. ENERGY STAR appliances pay for\nthemselves in reduced energy costs, but many consumers just see the\nslightly higher sticker price.  These rebates help overcome that\nbarrier and will also immediately bolster appliance sales and create\njobs.  \n\n                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dc7e3f48-6396-4834-8ea6-6f7ff519001d,\"SENATOR MENENDEZ ANNOUNCES NEARLY $4.5 MILLION IN FUNDS FOR HEALTH CARE AND OTHER FACILITIES IN NEW JERSEY \n                    \n                      August 21, 2009\n                     WASHINGTON – Today, U.S. Senator Menendez announced that the Department of Health\nand Human Services has awarded nearly $4.5 million in federal funds for\nkey health care facilities in New Jersey.  “This\nfunding helps keep key health care services running efficiently in\ndifficult economic times so New Jerseyans have continued access to\nquality and affordable health care. With current economic conditions\nputting an additional stress on our communities’ health care\nfacilities, it is essential to invest in them.” said Senator Menendez. “Funding for health care services helps ensure our families’ well-being now and into the future, while helping save and create jobs in the health care sector during these tough times.”                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a7e2894c-96b3-4240-ab71-a811f1435a88,\"SENATOR MENENDEZ ANNOUNCES $705,122 IN ASSISTANCE FOR NEW JERSEY FIREFIGHTERS \n                    \n                      August 21, 2009\n                     WASHINGTON -\nToday, U.S. Senator Menendez announced that the Department of Homeland\nSecurityhas awarded $705,122 in competitive grants to three New Jersey\nfire departments. Awarded by the Federal Emergency Management Agency\n(FEMA) and administered in cooperation with the U.S. Fire\nAdministration, these grants will be used by the departments to enhance\ntheir capacity to protect the public and first responders from fire\nrelated hazards and support their emergency response needs. These funds\nare part of round 42 of the competitive FY 2008 Fire Grant\nannouncements.  “Everyday our firefighters are willing to\nrisk their lives for our families, our homes, and our communities.”\nsaid Senator Menendez. “It\nis our responsibility to provide them with the necessary support and\nresources to ensure that they can protect themselves and do their job\nas effectively as possible. These investments are vital to safety in\nour neighborhoods and for our first responders.” \n \nThe $705,122 in funding will be distributed as follows:   Bridgeton, NJ •       $74,813 awarded to Fairfield Volunteer Fire Company #2 (Gouldtown)\nEast Rutherford, NJ •       $388,960 awarded to the East Rutherford Fire Department\nHi-Nella, NJ •       $241,349 awarded to the Hi-Nella Fire Company #1                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bc681895-7434-4033-b116-3a9102799df8,\"AS ABDEL BASSET AL-MEGRAHI IS RELEASED, MENENDEZ ISSUES STATEMENT \n                    \n                      August 20, 2009\n                     WASHINGTON – Abdel Basset al-Megrahi, who was convicted in the 1988 bombing of Pan\nAm Flight 103 over Lockerbie, Scotland, was released from prison today\nto return to Lybia. U.S. Senator Robert Menendez (D-NJ) issued the\nfollowing statement:“Today,\na convicted terrorist who brought down an airplane and sent 270\ninnocent people to their deaths was able to take off to freedom in a\nprivate jet. I’m sure the tragic irony was lost on few. The question\nthat comes to mind when assessing this outcome is, where is the\njustice? My thoughts are with victims’ families. They deserve to know\nthat there are severe and lasting consequences for those who murdered\ntheir loved ones.”Menendez\nhas helped lead efforts to bring measures of justice and compensation\nto the families of the victims. Earlier this week, he joined with six\ncolleagues in a letter urging the Scottish government not to release\nAl-Megrahi.\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=739e0428-47fb-4260-9e2d-0fa731160933,\"MENENDEZ DENOUNCES RELEASE OF ABDEL BASSET AL-MEGRAHI \n                    \n                      August 19, 2009\n                      WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today released the following\nstatement on the Scottish government’s reported decision to release\nfrom prison Abdel Basset al-Megrahi, who was convicted in the 1988\nbombing of Pan Am Flight 103 over Lockerbie, Scotland: “A convicted terrorist who helped to murder 270 innocent people\ndeserves neither leniency nor compassion. His heinous actions\ndevastated hundreds of families and still haunt those who knew and\nloved the innocent victims. In the name of justice, this convicted\nterrorist should never be permitted to taste freedom. His reported\nimpending release is tremendously disappointing.”\n Menendez has helped lead efforts to bring measures of justice and\ncompensation to the families of the victims. Earlier this week, he\njoined with six colleagues in a letter urging the Scottish government\nnot to release Al-Megrahi.\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=931be366-c6e6-401e-b49e-239153120804,\"MENENDEZ REMINDS CONSUMERS OF NEW CREDIT CARD PROTECTIONS TAKING EFFECT TOMORROW \n                    \n                             Member of Banking Committee also sends letter to Fed urging effective adoption of his \"\"ability to pay\"\" provision\n                    \n                      August 19, 2009\n                     \nMenendez was leading proponent of credit card reform legislation, which passed earlier this year\n \n WASHINGTON – U.S. Senator Robert Menendez (D-NJ), author of the Credit Card Reform Act and a lead co-sponsor of landmark credit card legislation that passed\ninto law this year, issued a reminder to consumers today of the new\nprotections that will take effect tomorrow as a result of the new law.\nHe also sent a letter to Federal Reserve Chairman Ben Bernanke urging\nthat the Federal Reserve effectively issue regulations in accordance\nwith a Menendez provision requiring credit card companies to consider a\nconsumer’s ability to pay when opening or increasing a line of credit.The protections that will go into effect tomorrow are the first of the various new regulations to be implemented. They include:\n \n·         Allowing credit card holders to cancel their accounts rather than accept interest rate or fee hikes\n·         Requiring\ncredit card companies to notify cardholders at least 45 days in advance\nof changes in interest rates or fee or finance charge increases\n·         Ensuring\ncardholders are not trapped into late fees by prohibiting companies\nfrom treating a payment as late if the credit card statement was sent\nless than 21 days prior to the payment due date (the current rule is 14\ndays).\n “This\nis the beginning of the end for the credit card tricks and traps that\nhave squeezed far too many families for far too long,” said Menendez.\n“We fought for and passed these reforms to help make things even\nbetween consumers and credit card companies, and these new rules are\ngoing to help accomplish that. I look forward to the implementation of\nthe entire bill over the next few months so that families will no\nlonger have to worry if a trap door will open beneath them every time\nthey swipe a card.”\nThe entirety of the credit card bill will be implemented by February, and the summary is available here: http://banking.senate.gov/public/_files/051909_CreditCardSummaryFinalPassage.pdf  PDF of Menendez letter to Bernanke: http://menendez.senate.gov/pdf/08182009LetterBernanke.pdf  Text of letter:\n \nAugust 18, 2009\n \n \n \nThe Honorable Ben S. Bernanke\nChairman\nThe Federal Reserve Board\n20th Street and Constitution Avenue, NW\nWashington, DC 20551\n \nDear Chairman Bernanke:\n \n           \nI write to urge the Federal Reserve Board to issue effective\nregulations under the Credit Card Accountability Responsibility and\nDisclosure Act of 2009, signed into law on May 22, 2009. \n \nAs\nyou may know, the credit card bill included an amendment that I\nintroduced (which became Sec. 150 of the bill) regarding a consumer’s\nability to pay credit card debt.  This provision requires credit card\ncompanies to consider a consumer’s ability to pay when opening a line\nof credit or increasing a line of credit.  If properly written, such a\nregulation would help avoid further bailouts by alleviating the\nsystemic risk that results from the provision of credit to people who\nhave no ability to pay, which could result in defaults on a large\nscale.  I urge the Federal Reserve to write ability to pay regulations\nthat require credit card companies to take into account, at a minimum,\na consumer’s income and other liabilities before issuing credit.  \n \nI\nshould also note that I have received reports of credit card companies\nusing this interim period as an excuse to raise their customers’\ninterest rates in a shameful effort to “beat the deadline” and\ncircumvent the spirit of the legislation.  \n \nI look forward to your response on the status of these credit card regulations and the ability to pay regulation in particular.\n \n \n Sincerely,\n                 ROBERT MENENDEZ              United States Senator\n \n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9da4f2a6-eeb0-4f1d-a643-b5f60382f113,\"MENENDEZ ANNOUNCES $463,399 IN FUNDING FOR CHILDREN INTERNET EDUCATION \n                    \n                            A leading internet education advocate, Menendez recently proposed new initiative to support effective internet education programs \n                    \n                      August 19, 2009\n                     WASHINGTON – Today,\nU.S. Senator Robert Menendez announced $463,000 in federal funds for\nthe New Jersey Department of Law and Public Safety to help finance the\ncontinuation of key statewide programs to promote responsible internet\nusage amongst children.  The federal funds were awarded as part of the\nnational ICAC program to, amongst other things, continue and enhance\ncommunity outreach initiatives and provide an increased number of\nInternet Education presentations.  Senator Menendez, leading proponent\nof internet and wireless education programs to protect children and\nteens, made the following statement:“While internet\nand wireless technology innovations have opened a world of\nopportunities, they have also created another medium for potential\nmisuse, enabling children to hurt themselves and others.  These funds\nwill help ensure that our children are able to continue using the\ninternet productively, while protecting the most vulnerable in our\nsociety from potential threats” said Senator Menendez. \"\"Just like we teach our kids to look both ways before they cross the\nroad and not to talk to strangers, we must also give them the tools to\nmake responsible decisions online so they may take full advantage of\neverything the internet has to offer. I will continue working in\nCongress to help support the most effective internet education\nprograms.” Earlier this year, Senator Menendez introduced the the School And\nFamily Education about the Internet (SAFE Internet) Act, which would\nsupport educational initiatives to help combat cyberbullying, sexting and other internet threats. This legislation would:\n• Establish\nan Internet safety education grant program.  It would initially fund\nresearch to determine best practices in Internet safety education and\ncreate guidelines for the grants. Then, using those guidelines, grants\nwould be awarded to the following eligible recipients: 1. a partnership between a State Educational Agency (SEA) and one or more Local Education Agencies (LEA); or 2. a LEA of a State; or 3. a non-profit organization; or  4. a partnership between a nonprofit organization and – a. one or more SEAs; or b. one or more LEAs; or  c. a consortium of schools.                                                                                                                                              \n                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c6814f7d-213c-48c3-bdd2-b07610755e17,\"MENENDEZ STATEMENT HONORING THE LIFE OF BILL CAHIR \n                    \n                      August 17, 2009\n                     WASHINGTON – Upon word that Marine Sgt. Bill Cahir – a former Congressional\nstaffer, correspondent for Newhouse Newspapers and Congressional\ncandidate – was killed serving his country in Afghanistan, U.S. Senator\nRobert Menendez (D-NJ) released the following statement:“Sgt.\nBill Cahir was a shining example of what makes ours the greatest and\nproudest nation in the world. He had a deep desire to serve his\ncountry, and he did so as a Congressional aide, with a reporter’s\nnotebook, with aspirations to represent his community in government and\non the front lines of the battle against extremists who would do us\nharm. I knew Bill best from his days covering the New Jersey\nCongressional delegation. He was well-respected and dedicated to\ninsightful and trust-worthy journalism. More than that, he was a good\nman. I honor Bill for his service to our nation and will always\nremember him as a human example of the greatness of the United States\nof America. My heartfelt thoughts and prayers are with his family and\nfriends, particularly his wife and his daughters who will soon be born.\nI hope they will grow to understand what a fine man their father was.”\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1c91c4ba-49f8-4982-9424-ecd664de4361,\"LAUTENBERG, MENENDEZ REQUEST FEDERAL DISASTER DECLARATION FOR SIX NEW JERSEY COUNTIES AFFECTED BY TORNADO AND SEVERE WEATHER \n                    \n                            Storms Had Significant Impact On State's Farmers\n                    \n                      August 14, 2009\n                     NEWARK, NJ – U.S.Senators\nFrank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today urged the\nU.S. Department of Agriculture to declare a natural disaster\ndesignation for six New Jersey counties – and possibly more – that have\nbeen affected by severe weather, including a tornado, since July 2009. \nThe affected area includes local farms, many of which suffered\nsignificant crop loss and property damage.  Food and agriculture\ncontribute $82 billion dollars every year to the state’s economy.\n \n“Serious weather conditions this growing season have hampered agricultural production throughout the state of New Jersey,” the Senators wrote to Agriculture Secretary Tom Vilsack. “This designation will enable farmers to recover losses, rebuild\ninfrastructure and continue productive agricultural practices after the\nharmful effects of this growing season’s weather conditions.”\n \n            A copy of the Senators’ letter is attached.\n \nThe\nSenators’ request is supported by Governor Corzine and the U.S.\nDepartment of Agriculture’s State Emergency Board, which has\nunanimously recommended a U.S. Department of Agriculture Secretarial\nNatural Disaster Designation.\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=71a4c8f5-1fdf-4f15-abcf-427c627b5e01,\"Menendez Announces $996,658 for NJ Emergency Energy Preparedness\n                    \n                            Funding will improve state emergency preparedness plans and ensure quick recovery and restoration from any energy supply disruptions \n                    \n                      August 14, 2009\n                     WASHINGTON – Today, U.S. Senator Robert Menendez (D-NJ) announced that the U.S. Department of Energy has awarded $996,658 to the state of New Jersey under the American Recovery and Reinvestment Act to improve New Jersey’s emergency preparedness plans to prevent and ensure quick recovery from energy supply disruptions. Specifically, agencies will use the funds to hire or retrain staff and expand their capacity to address challenges to the country’s energy systems, including emergency situations such as blackouts, hurricanes, ice storms, and disruptions to heating supplies.\n\n “A reliable modern and reliable energy system is important for our economy and our quality of life,” said Menendez. “Disruptions from blackouts and natural disasters have the potential to bring economic activity to a halt and threaten the health and safety of our families. These funds will help ensure that energy disruptions are prevented and responded to efficiently and effectively.”\n\nThe goal of this funding is for states to plan for energy supply disruption risks and vulnerabilities and in this way lessen the devastating impact that such incidents can have on the economy and the health and safety of the public. Each state will be required to track energy emergencies to assess the restoration and recovery times of any supply disruptions; to train appropriate personnel on energy infrastructure and supply systems; and conduct and participate in state and regional energy emergency exercises to evaluate the effectiveness of their energy assurance plans. The awards for energy assurance capabilities will also help states address cyber security concerns and prepare for the challenges of integrating smart grid technologies and renewable energy sources into the transmission network.  As part of the program, states are also encouraged to coordinate and communicate best practices with one another, in order to build both state-level and regional resiliency.                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0c39a27c-a8fc-4c62-951f-677711ea790e,\"U.S. TRANSPORTATION SECRETARY LAHOOD ANNOUNCES $298.7 MILLION IN FEDERAL RECOVERY ACT FUNDS FOR NEW JERSEY TRANSIT PROJECTS\n                    \n                            Includes $130 Million for the Mass Transit Tunnel Project\n                    \n                      August 14, 2009\n                     U.S.\nTransportation Secretary Ray LaHood today announced $298.7 million in\nAmerican Recovery and Reinvestment Act dollars to NJ TRANSIT for 13\nprojects that will improve aging infrastructure, help ease daily\ncommutes and generate jobs across the region. \n“This\nis what the Recovery Act is all about – putting people to work on\nprojects that will help jump-start our economy and modernize our public\ntransportation systems at the same time,” Secretary LaHood said during\na press conference at Metropark Station in Woodbridge, New Jersey.          Governor Jon Corzine applauded the announcement.  “I want to thank\nSecretary LaHood and the Obama Administration for their commitment to\naction by providing these American Recovery and Reinvestment Act funds”\nsaid Governor Corzine. “As a result, we’ll be able to kick-off a new\nslate of shovel-ready projects to make necessary infrastructure\nimprovements that will help to stimulate our economy, save jobs and\ncreate new jobs for New Jersey residents.” \n“Mass\ntransit in New Jersey is getting a massive boost today.  As more\nresidents and commuters search for ways to escape congestion and\ntraffic on our roads, this funding will help ensure that New Jersey has\nreliable and safe mass transit as an alternative to driving,” said\nSenator Frank R. Lautenberg.  “This major investment of nearly $300\nmillion will help modernize our state's transit infrastructure, improve\nreliability and create jobs.\"\"     \"\"This is a day to focus\non renewal and hope, a day when New Jersey stands proudly at the center\nof America’s economic recovery,\"\" said Senator Robert Menendez.  \"\"These\nprojects will not only revitalize our transit system, but allow hard\nworking men and women to proudly provide for their families and\nstrengthen our community. As the centerpiece of this investment, the\nnew mass transit tunnel will create thousands of jobs now and into the\nfuture while saving commuters time and money and cleaning the air we\nbreathe.\"\" \nIn\naddition to the Mass Transit Tunnel Project, which consists of two new\ntunnels under the Hudson River and a new rail station underneath 34th\nStreet in midtown Manhattan, this recovery money will also pay for bus,\nvan, and railcar purchases, as well as facility, track, and safety and\nbridge improvements throughout the system. \nTo\ndate, the U.S. Department of Transportation has made $24.1 billion in\nRecovery Act funds available nationwide for over 7,400 projects. \n       NJ TRANSIT $298.7 Million Recovery Grant, Breakdown by Project \nAccess to the Region’s Core (ARC)/Mass Transit Tunnel - $130 Million \nFunds\nfor the nine-mile commuter rail Mass Transit Tunnel project connecting\nNew Jersey and Manhattan will be used for the following:     * $110 million for design and engineering expenses, as well as costs\nassociated with construction and project management activities.  *\n$20 million for a new underpass structure to carry Route 1& 9 over\nthe new ARC Core tracks and modifications to the building located at\n2001 Tonnelle Ave. \nBus Rehabilitation - $35.0 Million \nRehabilitation\nof NJ TRANSIT’s bus fleet includes replacement of various bus\ncomponents such as engines, transmissions, pumps, motors, and other\nparts, as well as major body work and structural repairs. \nLower Hack Drawbridge Rehabilitation (Phase II) - $30 Million           Lower Hack drawbridge is a three-track bridge that carries NJ TRANSIT’s\nMorris & Essex and Montclair-Boonton Line trains over the\nHackensack River between Kearny and Jersey City in Hudson County.\nRehabilitation will include concrete and structural steel repairs. \nMorristown Line Bi-Directional Signal Improvements - $25 Million             This project involves installation of a train traffic control system on\nthe Morristown Line of NJ TRANSIT’s Morris & Essex Lines. This\nsystem allows for bi-directional train operation on a two-track segment\nbetween Summit and Denville, providing increased capacity and\nflexibility on NJ TRANSIT’s commuter rail system. \nRiver LINE Cab Signal System - $24 Million                      Funds will be used for the design, purchase and installation of an\nAutomatic Train Control (ATC) signal system for NJ TRANSIT’s 34-mile\nRiver LINE light rail system, which provides service between Camden and\nTrenton, NJ. An ATC system will permit the train operator to view the\ncurrent signal restrictions from the cab of the light rail vehicle,\nrather than relying on wayside signals along the right-of-way. In\naddition to providing a significant enhancement in managing train\nmovements, an ATC system satisfies the requirement of the Rail Safety\nImprovement Act of 2008 to install “Positive Train Control” by December\n2015. \nPlauderville Station/High-Level Platform - $15 Million \nFunds\nwill be used to install high-level platforms, canopies, heated\nshelters, and ramps at the Plauderville Station, which serves the\nBergen County Commuter Rail Line and local bus service in Garfield, NJ,\nallowing boarding for persons with disabilities. \n ACCESS LINK and Atlantic City Jitney Vehicle Purchases - $16 Million \nACCESS\nLINK is NJ TRANSIT’s paratransit service that is available for\nindividuals who cannot use NJ TRANSIT’s regular bus service. Funds will\nbe used as follows: \n* $10.8 million to purchase 137 minibuses, 47 of which will replace aging vehicles.  * $1.3 million to purchase 24 vans.  * $1.6 million to purchase 57 sedans.  * $2.3 million for replacement of 30 minibuses to provide feeder bus\nservice to the Atlantic City Rail station from destinations throughout\nAtlantic Cit \nEdison Station Park and Ride - $11 Million                     This project involves the construction of a supplemental parking\nfacility to serve the increased commuter needs at NJ TRANSIT’s Edison\nStation, including construction of an approximately 475-space surface\nparking lot with new daily and monthly permit spaces on the outbound\nside of the existing station. \nVarious Other Projects - $12.7 Million \n*\n$4.7 million for the Enhanced Track Rehabilitation Project, which\ninvolves replacement of ties, rails and switches along various rail\nlines throughout the system.  * $2.5 million for 175 bus\nshelters, as well as improvements to bus signage, passenger information\ndisplay installation, and lighting in bus boarding areas throughout New\nJersey.  * $2.0 million for construction of an intermodal transit center and parking facility in Pennsauken, New Jersey.  * $2.0 million for exterior pedestrian traffic and circulation improvements on the west side of Newark Penn Station.  * $1.5 million for rehabilitation of commuter rail rolling stock,\nincluding repair and replacement of major system components of commuter\npassenger rail cars and locomotives. \n                                                               #  #  #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5db60f99-c542-4373-8963-4b322e9314b5,\"U.S. SENATOR ROBERT MENENDEZ ANNOUNCES CHILDREN'S HEALTH DAYS ACROSS NEW JERSEY \n                    \n                             Sen. Menendez partners with the New Jersey Primary Care Association and Federally Qualified Health Centers to ensure children receive vision and dental screenings and have access to immunizations\n                    \n                      August 14, 2009\n                     \n***New Date Added***\n New Jersey – In what has become a yearly tradition, United States Senator Robert Menendez will host his 3rd Annual “Children’s Health Days,” an opportunity for children who are\nuninsured, underinsured or enrolled in Medicaid, to receive the\nvaccinations they need. Vision and dental screenings will also be\navailable.\n This year’s Children’s Health Days will be held on multiple days in\nnumerous New Jersey locations during August and September. Children must be accompanied by a parent or legal guardian and must bring up-to-date immunization records.\nClick here for event FLYER \n CHILDREN’S HEALTH DAYS WILL BE HELD ON THE FOLLOWING DAYS AND LOCATIONS:\n \nCAMDEN - Click here for event flyer\nSaturday, August 15, 2009\n10:00 am – 2:00 pm\nCAMcare Health Corporation\n2610 Federal Street\nCamden, NJ 08105\n \nHAMMONTON - Click here for event flyer\nFriday, August 28, 2009\n4:00 pm – 8:00 pm\nSouthern Jersey Family Medical Centers & Hammonton Farmer’s Market\nFront Street at 12th Street\nHammonton, NJ 08037\n \nMILLVILLE - Click here for event flyer\nSaturday, August 29, 2009\n10:00 am – 2:00 pm\nCommunity Health Care, Inc. & Bethel AME\n113 South 5th Street\nMillville, NJ 08332\n \nGARFIELD - Click here for event flyer\nSaturday, September 5, 2009\n10:00 am – 2:00 pm\nNorth Hudson Community Action Corporation\n535 Midland Avenue\nGarfield, NJ 07026\n \nJERSEY CITY - Click here for event flyer\nSaturday, September 12, 2009\n9:00 am – 1:30pm\nMetropolitan Family Health Network\n935 Garfield Avenue\nJersey City, NJ 07604\n \nNEW BRUNSWICK - Click here for event flyer\nSaturday, September 26, 2009\n9:30 am – 12:30 pm\nEric B. Chandler Health Center\n277 George Street\nNew Brunswick, NJ 08901LONG BRANCH - Click here for event flyer\nSaturday, October 3, 2009\n10:30 am – 2:30 pm\nMonmouth Family Health Center\n270 Broadway\nLong Branch, NJ 07740\n\n \n \nFor more information, please call Sen. Menendez’s offices in Barrington at (856) 757-5353, and Newark at (973) 645-3030.\n \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bb0bd013-8b30-43f2-a433-46ae931779f2,\"MENENDEZ HAILS $19.5 MILLION FOR NJ TRANSPORTATION AND INFRASTRUCTURE PROJECTS \n                    \n                            35 projects to receive funding in part from economic recovery package - LIST INCLUDED                                                                                                                               ###\n                    \n                      August 13, 2009\n                     NEWARK – U.S. Senator Robert Menendez (D-NJ) today hailed more than $19.5\nmillion, in part from the economic recovery package, that will help\nfund 35 separate transportation and infrastructure projects in New\nJersey. The projects have been selected by the State Department of\nTransportation for funding as part of the Transportation Enhancement\nProgram. Menendez highlighted the benefits of this funding for job\ncreation and quality of life.\n \n“Creating\njobs is the most important thing we can do right now,” said Menendez.\n“This funding and these projects will put people to work now and when\ncompleted, these projects will enhance our transportation network to\nmake New Jersey more competitive economically.  Modernizing our\nstreets, rehabilitating rail stations and enhancing bike paths will\nhelp reduce traffic, reduce energy costs and clean the air we breathe.\nThose are results that will help lay the foundation for economic\nsecurity in the 21st Century.”\n \nLink to list of projects funded: http://www.nj.gov/governor/news/news/2009/approved/20090813b.html\nTransportation Enhancement Grants\n\nRecipient\n\n\nCounty\n\n\nMunicipalities\n\n\nProject Name\n\n\nAmount\n\n\nAbsecon City\n\n\nAtlantic County\n\n\nAbsecon City\n\n\nCentral Business District Streetscape Improvements\n\n\n$529,000.00\n\n\nDemarest Borough\n\n\nBergen County\n\n\nDemarest Borough\n\n\nDemarest Railroad Depot (Phase 3)\n\n\n$320,000.00\n\n\nNorth Arlington Borough\n\n\nBergen County\n\n\nNorth Arlington Borough\n\n\nRidge Road (Route 17) Streetscape Improvement Project\n\n\n$460,000.00\n\n\nRidgewood Village\n\n\nBergen County\n\n\nRidgewood Village\n\n\nVillage of Ridgewood Historic Train Station Roof Replacement\n\n\n$226,000.00\n\n\nBeverly City\n\n\nBurlington County\n\n\nBeverly City\n\n\nCooper Street Gateway Project\n\n\n$228,000.00\n\n\nMount Holly Township\n\n\nBurlington County\n\n\nMount Holly Township\n\n\nPedestrian Safety and Beautification Improvements\n\n\n$160,000.00\n\n\nPalmyra Borough\n\n\nBurlington County\n\n\nPalmyra Borough\n\n\nMarket Street Gateway Improvement Project\n\n\n$260,000.00\n\n\nCooper's Ferry Development Association, Inc.\n\n\nCamden County\n\n\nCamden City\n\n\nMartin Luther King Boulevard Project\n\n\n$750,000.00\n\n\nGloucester City\n\n\nCamden County\n\n\nGloucester City\n\n\nStreetscape Project on Broadway Street (between Monmouth and Hudson Streets).\n\n\n$270,000.00\n\n\nHaddonfield Borough\n\n\nCamden County\n\n\nHaddonfield Borough\n\n\nMechanic Street and Clement Street Historic Preservation and Streetscape Improvements\n\n\n$570,000.00\n\n\nMerchantville Borough\n\n\nCamden County\n\n\nMerchantville Borough\n\n\nChestnut Avenue Pedestrian/ Bikeway Extension\n\n\n$150,000.00\n\n\nWoodbine Borough\n\n\nCape May County\n\n\nWoodbine Borough\n\n\nThe Woodbine Town Center Streetscape Improvement and Pedestrian Safety Program\n\n\n$450,000.00\n\n\nBayshore Discovery Project\n\n\nCumberland County\n\n\nCommercial Township\n\n\nBivalve Center\n\n\n$1,250,000.00\n\n\nNewark City\n\n\nEssex County\n\n\nNewark City\n\n\nBroad Street Streetscape Phase III Construction\n\n\n$2,000,000.00\n\n\nGlassboro Borough\n\n\nGloucester County\n\n\nGlassboro Borough\n\n\nRebuilding Glassboro's Historic Train Station\n\n\n$250,000.00\n\n\nWoodbury City\n\n\nGloucester County\n\n\nWoodbury City\n\n\nPedestrian Safety and Way-Finding Signage\n\n\n$194,000.00\n\n\nNJ Department of Environmental Protection\n\n\nHudson County\n\n\nJersey City\n\n\nConstruction of Hudson River Waterfront Walkway and Park at Morris Canal Little Basin, Jersey City\n\n\n$1,000,000.00\n\n\nNJ Department of Environmental Protection\n\n\nHunterdon County\n\n\nAlexandria Township, Holland Township, Milford Borough\n\n\nAcquisition of Railroad Right of Way for Multipurpose Trail\n\n\n$650,000.00\n\n\nHightstown Borough\n\n\nMercer County\n\n\nHightstown Borough\n\n\nStockton Street Historic District Streetscape Infrastructure Project\n\n\n$1,690,000.00\n\n\nHopewell Borough\n\n\nMercer County\n\n\nHopewell Borough\n\n\nHopewell Borough Streetscape Improvements Project Phase II\n\n\n$917,000.00\n\n\nMiddlesex County\n\n\nMiddlesex County\n\n\nEdison Township, Metuchen Borough, Woodbridge Township\n\n\nMiddlesex Greenway\n\n\n$1,000,000.00\n\n\nFair Haven Borough\n\n\nMonmouth County\n\n\nFair Haven Borough\n\n\nRiver Road Streetscape West\n\n\n$477,000.00\n\n\nWharton Borough\n\n\nMorris County\n\n\nWharton Borough\n\n\nMorris Canal Lock 2 East Restoration - Phase One\n\n\n$582,000.00\n\n\nLavallette Borough\n\n\nOcean County\n\n\nLavallette Borough\n\n\nGrand Central Avenue Sidewalk Beautification Project\n\n\n$488,000.00\n\n\nClifton City\n\n\nPassaic County\n\n\nClifton City\n\n\nLakeview Avenue Streetscape Improvements\n\n\n$266,000.00\n\n\nNew Jersey Community Development Corporation\n\n\nPassaic County\n\n\nPaterson City\n\n\nWilliam Carlos Williams Community Plaza\n\n\n$120,000.00\n\n\nTotowa Borough\n\n\nPassaic County\n\n\nTotowa Borough\n\n\nBorough of Totowa Union Boulevard Streetscape Project, Phase II\n\n\n$400,000.00\n\n\nElmer Borough\n\n\nSalem County\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b7116bc1-8f1a-4b20-ab43-8ea478f2dc94,\"IN COMMEMORATION OF NATIONAL HEALTH CENTERS WEEK, MENENDEZ RECOGNIZES THE IMPORTANCE OF CENTERS IN PROVIDING ACCESS TO AFFORDABLE, QUALITY HEALTH CARE \n                    \n                            NJ Senator has introduced resolution to recognize the importance of health safety-net providers, such as community health centers, and ensure they are supported in the health insurance reform process \n                    \n                      August 13, 2009\n                     WASHINGTON - This\nweek, health centers and medical practitioners nationwide celebrate\nNational Health Centers week, which every year honors the services and\ncontributions of health centers to increase access to quality\nhealthcare for underserved people in the United States. This year's\ncommemoration centers on the national \"\"ACCESS for All America\"\" plan to\nserve 30 million people by 2015.\nJoining\nin the recognition, U.S. Senator Robert Menendez (D-NJ) applauded the\ndaily efforts of these health providers and contributions to\nunderserved population. Senator Menendez, member of the Senate Finance\nCommittee, which is drafting a significant portion of the system's\nreform process, also emphad the importance of supporting community\nhealth centers in the health care reform process. \n“Health\nsafety-net providers, such as community health centers, are vital to\nensuring that quality and affordable health care is widely accessible.\nThey deserve our acknowledgement and applause for their service to\nAmerica's most vulnerable populations,\"\" said Senator Menendez. “These centers provide important health services for underserved\nfamilies, which is not only a moral imperative, but also helps drives\ndown health care costs and reduces strain on hospitals’ emergency\nservices. As we look to reform the health insurance system, we must\nensure these centers are a key part of the reform process with adequate\nfunding, and a fair reimbursement system.”\nEarlier\nthis year, Senator Menendez introduced a piece of legislation\nco-sponsored with Senator Debbie Stabenow (D-MI) to recognize the\nimportance of health safety-net providers, such as community health\ncenters, in the reform process.\nThe piece of legislation would put Congress on the record in support of the following sentiments:\n•\nAll individuals should have the choice of a community health center as\ntheir health care home and every health center should be appropriately\nreimbursed for the high-value preventive and primary care they provide;\n•\nHealth care reform should include measures to expand community health\ncenters in order to reach more individuals who need a health care home;\n•\nThe current payment mechanisms for Federally-qualified health centers\nthrough Medicaid and the Children’s Health Insurance Program are\nessential to ensuring access to affordable and high-quality preventive\nand primary care services for beneficiaries of such programs; and\n•\nAny expansion of private insurance must include mechanisms to ensure\nthe full participation of, and appropriate reimbursement to, federally-qualified\nhealth centers and other safety net providers in order to ensure\nadequate access to care for those individuals who are medically\nunderserved or disenfranchised.\n•\nEnsuring access to all safety net providers - including\nFederally-qualified health centers - will be vital to ensuring that\nhealth care reform is successful in expanding access, improving\nquality, and reducing cost.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=51217f7d-4d7b-4574-999f-af227348dfec,\"MENENDEZ STATEMENT ON TAIWAN TYPHOON \n                    \n                      August 11, 2009\n                     WASHINGTON – Typhoon Morakot has unleashed the worst flooding in Taiwan in 50\nyears, killing at least 70 and possibly hundreds more. U.S. Senator\nRobert Menendez (D-NJ), co-Chair of the Senate Taiwan Caucus, released\nthe following statement in solidarity with the people of Taiwan:“The\ntragic devastation we have seen in Taiwan is simply heart-breaking. The\nTaiwanese people should know that millions of Americans are filled with\nsympathy over their plight. As a nation, we stand ready to assist our\nfellow human beings who are suffering, should the Taiwanese government\nrequest help in the rescue and recovery efforts. My thoughts and\nprayers are with the loved ones of the victims of this disastrous\nstorm.”\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=eb28bcdf-2a6a-4fc4-84a1-1f375477eada,\"SEN. MENENDEZ STATEMENT ON PASSING OF EUNICE KENNEDY SHRIVER\n                    \n                      August 11, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:11.0pt;\n\tfont-family:\"\"Calibri\"\",\"\"sans-serif\"\";\n\tmso-ascii-font-family:Calibri;\n\tmso-ascii-theme-font:minor-latin;\n\tmso-fareast-font-family:\"\"Times New Roman\"\";\n\tmso-fareast-theme-font:minor-fareast;\n\tmso-hansi-font-family:Calibri;\n\tmso-hansi-theme-font:minor-latin;\n\tmso-bidi-font-family:\"\"Times New Roman\"\";\n\tmso-bidi-theme-font:minor-bidi;}\n\n\nWASHINGTON - Early this\nmorning, Eunice Kennedy Shriver, founder of the Special Olympics, passed away\nat the age of 88. U.S. Senator Robert Menendez (D-NJ) released the following\nstatement in her honor:\n\"\"Today, our nation\nlost one of its great humanitarians. Eunice Kennedy Shriver's life's work of\nempowering those with intellectual disabilities has made ours a stronger, more\naccepting nation. Through her tireless efforts, she helped make sure that every\nmember of our community is valued.  In addition to her humanitarianism, it\nis clear that she was one of the most beloved and respected members of the\nKennedy family. My thoughts and prayers are with Mrs. Kennedy Shriver's family\nand friends.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5eae649c-dfc9-4b89-aebf-116d4644c9e5,\"MODERNIZING GREAT FALLS HYDROELECTRIC POWER PLANT: MENENDEZ, PASCRELL, TORRES ANNOUNCE PATERSON'S PLANS FOR ENERGY EFFICIENCY FUNDING \n                    \n                            Menendez created energy efficiency program, helped get $73 million for NJ cities, towns and municipalities in economic recovery package \n                    \n                      August 10, 2009\n                     PATERSON – U.S. Senator Robert Menendez (D-NJ), U.S. Rep. Bill Pascrell (NJ-8),\nPaterson Mayor Jose “Joey” Torres, and Board of Public Utilities\nCommissioner Joseph Fiordaliso announced today that Paterson is\nplanning a modernization of the hydroelectric power plant at Great\nFalls with energy efficiency funding from the economic recovery\npackage. Today is the deadline for cities, towns and counties to apply\nfor their share of the funding. The power plant upgrades would include\nplanning for increased electricity generation and making the facilities\nmore energy efficient with solar panels and other improvements.\n \nMenendez\ncreated the Energy Efficiency and Conservation Block Grants program in\nCongress in 2007, and he helped secure $73 million for New Jersey\ncities, towns and counties in the recovery package. Paterson will\nreceive a total of $1,344,800 and will also use funds to make city,\nstreet, and recreation facility lights more energy efficient and study\nenergy efficiency upgrades for city buildings. The program is meant to\nsupport municipal energy-saving initiatives and improves energy\nefficiency in transportation, buildings, and other sectors.\n \n“The\nmore we can harness the power of water, wind and the sun for our energy\nneeds, the better we can lay the foundation for economic security in\nthe 21st Century,” said Menendez. “We need to aggressively look into\nthe job creation, energy cost savings and environmental benefits of\nclean energy projects, like the possibility of modernizing the\nhydroelectric plant at Great Falls. Through investments in energy\nefficiency projects, we can create employment in these tough times,\nsave families money and clean the air we breathe. This program in\nparticular will also help cash-strapped local governments realize\nsavings, allowing them to sustain jobs and local services for their\nresidents.”\n \n“At\na time when there is renewed national appreciation for the historic\nsignificance and natural beauty of Paterson’s Great Falls, I am proud\nto stand here today on the cusp of a project that seeks to tap into the\npower surging through these caverns,” said U.S. Rep. Bill Pascrell, Jr.\n(D-NJ-8), a former Paterson mayor and member of the House Ways and\nMeans Committee.“The investigation of the Great Falls as a potential\nsource of hydroelectric and solar power is a renaissance in itself of\nthe hope and vision Alexander Hamilton had when he looked upon this\ngreat waterway more than 200 years ago.”\n \n“The\ninflux of federal funding from the Energy Efficiency and Conservation\nBlock Grant program will allow the City of Paterson to explore energy\nsavings that in the long run, will protect our environment and save\nmoney,” said Paterson Mayor Jose Torres.  “The Great Falls\nHydroelectric Power Plant can provide energy for up to 11,000 homes,\nand creating this energy with a natural resource, is already a step in\nthe right direction. I look forward to implementing the projects that\nwe have delineated and will receive federal funding for, and will\ncontinue to explore new avenues towards energy efficiency.”     \nThe\nGreat Falls Power Plant was built in 1914, and it generates 11,000\nkilowatts of clean energy per hour, which it sells to PSE&G. The\nbuilding is old and energy inefficient, and there may be potential for\nmore power generation in the waterways around the Falls.\n \nPaterson’s planned use for its energy efficiency funding includes:\n \n·        \nEvaluation the potential for increased power generation at Great Falls\nthrough the installation of “micro turbines” in the waterways around\nthe Falls (the Great Falls Raceway System)\n \n·         Installation of solar power panels on the existing power plant building and the grounds of the plant complex\n \n \n·         A study on the energy efficiency of the power plant complex and other city buildings\n \n \n·         An upgrade to more energy efficient lighting on city streets and recreation facilities.\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=08cf8b56-7979-439a-be48-4b9513252328,\"MENENDEZ STATEMENT IN CELEBRATION OF JUSTICE SONIA SOTOMAYOR\n                    \n                            First Latina Justice sworn in today\n                    \n                      August 8, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:11.0pt;\n\tfont-family:\"\"Calibri\"\",\"\"sans-serif\"\";\n\tmso-ascii-font-family:Calibri;\n\tmso-ascii-theme-font:minor-latin;\n\tmso-hansi-font-family:Calibri;\n\tmso-hansi-theme-font:minor-latin;}\n\n\nWASHINGTON - U.S. Senator Robert Menendez (D-NJ), one of\ntwo Hispanic Senators who voted to confirm new Supreme Court Justice Sonia\nSotomayor, released the following statement today upon her swearing in:\n\"\"I congratulate Justice Sotomayor on this remarkable\nachievement, which was made possible by the extensive record of accomplishment,\nfidelity to the law and intellect that she had compiled. Today, it is official\nthat an eminently-qualified member of the Latino community has risen to the\nhighest court in the land, which makes this is a day of pride, hope and\naffirmation for Latinos. As someone, who was born the same year as Justice\nSotomayor and grew up in similar circumstance on different sides of the Hudson\nRiver, to me this is another breathtaking fulfillment of the promise of\nAmerica. I fully believe Sonia Sotomayor will be one of the great and most\nrespected Justices in our nation's history, and I look forward to witnessing\nher career on the bench.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=308b86c8-2727-4498-9a5f-abe74dce1202,\"SENATOR MENENDEZ ANNOUNCES $28.4 MILLION FOR NJ-OWNED BUSINESS TO HELP INCREASE VEHICLE FUEL EFFICIENCY BUILD BATTERIES FOR ELECTRIC CARS \n                    \n                            Senator Menendez instrumental in securing funds that will allow New Jersey company to play key role in administration's efforts to wean America off fossil \n                    \n                      August 7, 2009\n                     WASHINGTON – Today,\nUS Senator Menendez (D-NJ) announced that a New Jersey-owned company\nhas received $28.4 in federal funding he helped to secure in order to\nimprove battery technology for fuel-efficient vehicles. Princeton-based\nRockwood Holdings, through its subsidiary Chemetall Foote, is the\nworld’s largest producer of lithium specialty chemicals and lithium\ncompounds. . It will receive the funding through the economic recovery\npackages’ Electric Drive Vehicle Battery and Component Manufacturing\nInitiative for the financing of two projects that will 1) help it\nexpand its lithium carbonate production capacity and 2) produce battery\ngrade lithium metal. Companies use this metal to produce battery cells\nthat have the potential to produce as much as twofold increase in\ndriving distance for hybrid and electric vehicles.  Senator Menendez\nsupported Rockwood’s  grant application in a letter earlier this year\nto the Secretary of Energy.\n“This\ngrant is important for several reasons.  First, by helping the United\nStates ability to build advanced batteries we are creating jobs and\nenhancing our competitiveness.  Second, by securing a domestic source\nof lithium we ensure we are not trading one energy security problem for\nanother.  Lastly, enhancing lithium ion battery manufacturing will\nenable us to commercialize plug-in hybrids and electric cars.  This\nwill allow us to fill our cars on electricity generate by the sun or\nthe wind.  When this happens we will truly be on the road to energy\nindependence and toward greening our transportation fleet.” Chematall Foote is the world’s largest producer of lithium specialty\nchemicals and lithium compounds, and a subsidiary of Rockwood Holdings\nbased in Princeton. It seeks to expand its lithium carbonate\nmanufacturing facility in Silver Peak, NV, and convert it to geothermal\n–based electricity, which will increase its competitiveness relative to\nforeign producers of lithium carbonate. The company also seeks to\ninstall a lithium metal purification plant in Kings Mountain, NC, to\nproduce battery grade lithium metal, which multiple companies are\nutilizing to produce battery cells that could provide as much as a\ntwofold increase over the current lithium ion battery cells in terms of\nincreased driving distance of hybrid and all electric vehicles.\n \nClick here to read the full letter: http://menendez.senate.gov/pdf/08062009LetterSecChuElectric.pdf                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e95fb3ba-b26f-4716-a0f7-518b2ae76f06,\"MENENDEZ INTRODUCES LEGISLATION TO REGULATE ONLINE POKER AND GAMES OF SKILL \n                    \n                            Would bring billions in revenue, protect families \n                    \n                      August 6, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today introduced\nthe Internet Poker and Games of Skill Regulation, Protection and\nEnforcement Act, legislation that would allow federally-regulated\nonline poker and other games of skill. The legislation is designed to\nraise revenue while protecting families through a crackdown on\npredatory internet gaming sites that target minors and fleece their\ncustomers. Estimates have shown that more than $3 billion in annual\nrevenue can be raised by licensing and regulating Internet poker. \n“Pulling\nInternet poker out of the shadows and into the light of the law, we\nhave the opportunity to help our economy while protecting our\nfamilies,” said Menendez. “By bringing these games of skill into the\nmainstream, we can generate billions in revenue for businesses and the\nTreasury during these tough times. The safety benefits of the bill are\nparticularly crucial. Parents are worried about their children falling\nprey to illegitimate gaming sites and thousands of Americans have been\nfleeced of millions of dollars by these sites. With proper regulation,\nwe can prevent minors from playing poker online, crackdown on predatory\noperations, and sanction the legitimate ones.”\nDetails of legislation:\nSUMMARY: This legislation provides a licensing, regulatory and taxation\nframework to establish a legitimate online skill game industry in the\nUnited States, while creating enhanced enforcement against those who\naccept illegal Internet gambling from the United States. \nLICENSING: • Require applicants to undergo a thorough review by the Department\nincluding the financial condition of applicant, business record, and\nbackground checks • In addition to any further documentation\nrequested by the Department, the applicant must submit a full financial\nstatement, corporate structure documentation, and a certification that\napplicant agrees to be subject to US gambling laws. • The burden of\nproof is on the licensees.  The Department has wide latitude to deny\nlicenses for anybody who they do not feel meets the criteria set by the\nDepartment for honesty, integrity, business probity, and experience,\nand financial capabilities facility. • Automatic denial to anybody previously convicted anywhere in the world of gambling, financial, or information security law. • License term will be five years in length; renewal subject to same requirements • License will be revoked for failure to comply with any provision in\nthis legislation, or conviction of a crime that would lead to denial of\nlicense.\n REGULATION: • Any state or Indian tribe can\nopt out of regulations, and it will be illegal to accept bets from\nindividuals residing in these jurisdictions. • Treasury must\nrequire periodic financial reports from each licensees; and in turn\nsubmit an annual report to Congress on the status of the online skill\ngame industry. • Violations of this legislation will be punished by fines and prison terms of a maximum of 5 years. \nCONSUMER PROTECTION: This legislation directs the Department of the Treasury to develop the\nfollowing regulations that licensess must follow in order to retain\ntheir license: • Appropriate Safeguards to ensure age verification • Ensure bettors are physically located in a jurisdiction where gambling is legal. • Ensure all taxes due are collected • Safeguards to combat fraud and money laundering. • Safeguards to ensure games are fair.  • Safeguards to combat compulsive internet gambling • Privacy safeguards for bettors • Any other safeguards the Director of FCEN believes necessary\nTAXATION: This legislation imposes appropriate taxes on providers of Internet\ngames of skill, which can yield billions of needed dollars state and\nFederal government. • Licensed sites must pay a 10% tax on all\ndeposits into playing accounts, the proceeds of which are split evenly\nbetween the federal government and the government of the state where\nthe player is situated. • Appropriate witholding of taxes on the net winnings of players. • Appropriate payment of corporate taxes by licensed companies.\n # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7f767be7-c6e6-40e6-8f26-27e301e36ee4,\"MENENDEZ ANNOUNCES $95,000 IN FUNDING FOR THE BERGEN PERFORMING ARTS CENTER \n                    \n                            Funds will finance creation of model arts education plan \n                    \n                      August 6, 2009\n                     WASHINGTON –  Today, US Senator Robert Menendez (D-NJ) announced that\nthe Bergen Performing Arts Center has been granted $95,000 in federal\nfunding for an innovative project to create a arts education plan that\ncan serve as a model for the state and rest of the country. Awarded\nthrough the Department of Education’s “Fund for the Improvement of\nEducation”, bergenPAC’s plan for creating a model arts education\nprogram utilizes traditional arts partnerships and internet based\ntechnologies to ensure equal access to the arts and culture for young\npeople in the community. The plan will then be replicated and shared\nvia the internet in other performing arts centers throughout the\ncountry.  “An arts education helps the development of our\nchildren, which is important for our economic and cultural future. At\ntimes, youth from families of modest means find it difficult to access\nan arts education, which is why it is important that this program will\nbenefit youth regardless of socio-economic background. By ensuring our\nyouth has access to this kind of educational initiative, we are not\nonly fostering their future, we are also helping ensure our arts sector\nremains alive and continues thriving.” The Fund for the\nImprovement of Education (FIE) provides authority for the Secretary of\nEducation to support nationally significant programs to improve the\nquality of elementary and secondary education at the state and local\nlevels and to help all students meet challenging state academic content\nstandards and student achievement standards. FIE also supports grants\nto nonprofit organizations that have been identified by the Congress in\nappropriations legislation.                                                                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0933543f-078d-403a-a6ff-6c4626af5d1c,\"SEN. MENENEDEZ ANNOUNCES $200,000 FOR ENERGY EFFICIENCY IN BURLINGTON COUNTY \n                    \n                            Author of the Energy Efficiency and Conservation Block Grant program worked with Burlington County officials to secure funding. Economic Recovery Package funds will perform energy audits on all county buildings \n                    \n                      August 6, 2009\n                     WASHINGTON – United States Senator Robert Menendez (D-NJ), a member of\nthe Energy and Natural Resources Committee, today announced that\nBurlington County will receive $200,000 as part of the American\nRecovery and Reinvestment Act-funded Energy Efficiency and Conservation\nBlock Grants (EECBG) program.  The EECBG program, which Menendez\ncreated through legislation in  2007 and fought to fund while crafting\nthe economic recovery package, provides municipalities and counties\nwith the resources to support energy-saving initiatives and improve\nenergy efficiency in transportation, buildings, and other sectors. After the President signed the legislation in February, Sen. Menendez\nand staff contacted eligible communities throughout the state to inform\nthem of the program and offer assistance in the application process. \nToday, the Department of Energy released $200,000 for planning and\nimplementation of the county’s EECBG allocation. Ultimately, the County\nanticipates receiving $3,051,700 to perform a comprehensive energy\naudit of all county-owned buildings to save energy and tax payer\ndollars.“The Energy Efficiency and Conservation Block Grant\nProgram is an important part of our economic recovery.  Today’s\nannouncement puts families back to work, reduces energy costs, cuts\nemissions and helps relieve county budget constraints brought about by\nthe recession,” said Sen. Menendez.  “I am pleased to have worked with\nthe Burlington County Board of Chosen Freeholders to secure funds that\nwill help the county adopt an energy policy which benefits the\nenvironment and the taxpayer.”   Burlington County has been\nactive in formulating a comprehensive energy plan which emphas\nenergy conservation and efficiency, including applying to the New\nJersey Board of Public Utilities’, Office of Clean Energy, Local\nGovernment Energy Audit program.  Freeholder Mary Anne Reinhart, who\nhas been spearheading green energy efforts on behalf of the county,\nadded the following about today’s announcement: “These monies will\noffset the expense of conducting an energy audit of all the county\nowned buildings. The audit will help the county identify facilities\nthat are wasting energy at a high cost to the taxpayer and to the\nenvironment. Ultimately, the county will use this information to create\nan energy plan which reduces our carbon foot print and provides relief\nfor the taxpayer.” In total, the economic recovery package\nappropriated $3.2 billion to communities across the country for energy\nefficiency and conservation activities.  The State of New Jersey is\neligible for a total of $75.5 million under the EECBG program. \nBurlington County is among 10 counties and 21 cities nationwide to be\nawarded funding today.                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a5fac043-7db6-44ad-a145-c4b76edfa32e,\"Dodd, Menendez, Merkley, Bennet Announce Initiative to Coordinate Housing, Transportation, and Environmental Policies\n                    \n                            Introduce Livable Communities Act to Make Communities Better Places to Live, Work, and Raise Families through Sustainable Development \n                    \n                      August 6, 2009\n                     WASHINGTON – Senate Banking, Housing, and Urban Affairs Committee Chairman Chris Dodd (D-CT), along with fellow Committee members Robert Menendez (D-NJ), Jeff Merkley (D-OR), Michael Bennet (D-CO), and Dan Akaka (D-HI), today introduced legislation to help towns and regions across the country plan and implement development projects that integrate their community’s needs for transportation, housing, land use, and economic development. \nBy encouraging sustainable development at the local, regional, and federal level, the Livable Communities Act will help communities cut traffic congestion, reduce greenhouse gas emissions and fuel consumption, protect green spaces, create more affordable housing, and revitalize existing Main Streets and urban centers. \n“As our communities grow, people are commuting longer distances on more crowded roadways,” said Dodd.  “Those are precious hours they could be spending with their families, and precious dollars wasted on gas.  We must change the way we plan for the future of our communities and tackle these challenges with a coordinated strategy.”     \n“Part of the foundation for economic security in the 21st Century will be the development of communities that help families save time and money when they commute to work or school,” said Menendez. “As people live closer to work and school and use mass transit, the more we will cut energy costs, ease traffic, reduce the dependence on foreign oil and clean the air we breathe. For our economy and for our quality of life, this is worthy legislation.”\n“Building communities where Americans have better access to public transportation and affordable housing benefits working families, businesses and our environment,” said Senator Merkley.  “The Livable Communities Act will save families money, cut down on traffic, and provide more choices in the ways people can live, work, and play.  When you develop communities with sustainable principles in mind, even everyday tasks like a trip to the grocery store become more convenient.”\n“This legislation will incentivize communities to develop smart, forward-thinking development policies that will improve people’s quality of life,” Bennet said. “Communities throughout Colorado have been at the forefront of efforts to encourage sustainable, practical growth and this bill will give them an even greater opportunity to continue their innovative work.”\nThe Livable Communities Act will:\nCreate competitive planning grants that towns and regions can use to create comprehensive long-term plans that integrate transportation, housing, land use, and economic development.\nCreate challenge grants that towns and regions can use to implement these long-term plans through investments in public transportation, affordable housing, complete streets, transit-oriented development, and brownfield redevelopment.\nEstablish a federal Office of Sustainable Housing and Communities at the Department of Housing and Urban Development to administer and oversee the Livable Communities grant programs;\nEstablish a federal Interagency Council on Sustainable Communities that will include representatives from the Department of Housing and Urban Development, the Department of Transportation, the Environmental Protection Agency, and other federal agencies to coordinate federal sustainable development policies.\nLast month, Dodd chaired a hearing at which Transportation Secretary Ray LaHood, Housing and Urban Development Secretary Shaun Donovan and Environmental Protection Agency Administrator Lisa Jackson announced a new interagency Partnership for Sustainable Communities that will help improve access to affordable housing, expand transportation options, and lower transportation costs while protecting the environment and combating climate change in communities nationwide.  The three departments will be working together to create a coordinated approach to transportation, housing, energy and environmental policies.  In February, Chairman Dodd sent a letter to President Obama calling for the creation of such an entity.      \nA summary of the Livable Communities Act is attached. \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=60c0db6e-6e87-4645-96a7-fa7ce46191f8,\"MENENDEZ, MARTINEZ BILL WOULD PROVIDE STRATEGIC BOOST IN DEVELOPMENT ASSISTANCE TO LATIN AMERICA\n                    \n                            Provides $2 billion to improve stability, reduce poverty, increase economic opportunity, and promote the use of renewable energy in the region\n                    \n                      August 6, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:10.0pt;\n\tfont-family:\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - U.S. Senators\nRobert Menendez (D-NJ) and Mel Martinez (R-FL), joined by Senator Christopher\nDodd (D-CT), today introduced legislation that will provide $2 billion in\nassistance over a five-year period to the countries of Central America, South\nAmerica, the Caribbean, and Mexico.  This funding, which is in addition to\ncurrent U.S. assistance programs in the region, will be specifically directed\ntoward building the institutions of governance to improve the economic conditions,\nreduce poverty, and develop renewable sources of energy to strengthen the\nsocial and economic infrastructure of countries in the region.\n\"\"This is more than\ngood neighbor policy, this is good economic, national security and environmental\npolicy for us here at home,\"\" said Menendez. \"\"On so many issues, we are\nclosely tied to the other nations of our Hemisphere. The development of a\nstrong middle class in Latin American countries helps create a vibrant\nmarketplace for American businesses, help reduce the demand for undocumented\nmigration to the United States and helps create economic stability that matters\nto us here at home. For too long, we have been disengaged from our neighbors in\nthis region and this is the type of investment that would foster benefits for\nus in both domestic policy and foreign policy.\"\"\n\"\"The U.S. remains\ncommitted to strong and cooperative relationships with our neighbors in the\nAmericas,\"\" said Martinez. \"\"Continuing support of social, economic, and democratic\nprograms will provide a positive investment in the people of those nations and\nfoster productive dialogues,\"\" Senator Martinez said. \"\"This important effort\nwill improve the security of the U.S. and the entire hemisphere and I urge all\nof my colleagues to support this initiative.\"\"\nTo help sustain\neconomic growth in the region over the long term, the bill also directs the\ngovernment to consider establishing a Social Investment and Economic\nDevelopment Fund for Latin America.  The proposed fund, which would be\nunder the direction of an independent board, would pool contributions from the\nU.S., other governments, foundations, and the private sector, and would\nencourage collaboration between the public and private sectors on development\nprojects in the region.\nRecognizing that the\nUnited States and the countries of Latin America have common economic,\nsecurity, and environmental interests in reducing their dependence on fossil\nfuels, the bill provides funding to encourage the development and use of\nrenewable sources of energy in the region. Significant assistance is also\nprovided to programs that promote the sustainable management of forests in the\nregion, as the destruction of tropical forests and rain forests has been\nrecognized as a major contributing factor in global climate change.\nSOCIAL INVESTMENT AND ECONOMIC DEVELOPMENT FOR THE\nAMERICAS ACT OF 2010\nThe Social Investment and Economic Development for the\nAmericas Act of 2010 is a bipartisan initiative that will provide a total of $2\nbillion over a five-year period to reduce poverty and expand the middle class\nin the countries of South America, Central America, the Caribbean and\nMexico.  The Act provides funding for key institution-building initiatives\nin the region, and funding to advance cooperation on renewable energy.\nAt the 2009 Summit of the Americas, President Obama told the\nleaders of the Americas that the United States is \"\"committed to combating\ninequality and creating prosperity from the bottom up...  this is by no\nmeans charity. Together, we can create a broader foundation for prosperity that\nbuilds new markets and powers new growth for all peoples in the\nhemisphere.\"\"  The assistance provided by this legislation is intended to\nput that foundation for prosperity firmly in place, so that democratic values\nand economic progress can flourish throughout the Americas.\nA new approach:  Investments that benefit the United\nStates\n Assistance\nprovided in this act is in addition to assistance programs currently in place\nin the region;\n Supports\nthe security and economic interests of the United States by addressing the root\ncauses of instability in the region. Economic growth will help reduce the\nflow of illegal migration and expand the middle class, which will mean an\nincreased demand for U.S. exports; \n Recipient\ncountries are required to take responsibility for projects by contributing at\nleast 10 percent of the costs;\n Establishes\nrigorous evaluation and accountability for development projects through impact\nassessments;\n Recognizes\nshared interest of U.S. and Latin America in working together on the\ndevelopment and use of renewable sources of energy. \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3585c20f-d681-4faf-99aa-006d7b425b3b,\"MENENDEZ VOTES TO EXTEND SUCCESSFUL ‘CASH FOR CLUNKERS’ PROGRAM\n                    \n                            NJ Senator says program provides economic boost while making this a more fuel efficient country\n                    \n                      August 6, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:11.0pt;\"\"Calibri\"\",\"\"sans-serif\"\";\n\tmso-bidi-\"\"Times New Roman\"\";}\n\n\nWASHINGTON - This evening, the\nU.S. Senate passed legislation to extend the successful \"\"Cash for Clunkers\"\"\nprogram through an infusion of $2 billion. The program gives families rebates\nof up to $4,500 when they trade a fuel-inefficient car for a new fuel-efficient\none. The program exceeded all expectations, running out of its initial $1\nbillion in a matter of days.\nU.S. Senator Robert\nMenendez (D-NJ) voted in favor of the extension and released the following\nstatement:\n\"\"This program has\ngiven a boost to our economy at a time when boosting our economy is\ntremendously important. Continuing that momentum while making this a more fuel\nefficient nation is important for immediate and long-lasting economic security.\nJob creation, commerce, energy cost savings and cleaner air - these are all\ngoals for our economic recovery, and they are all benefits of this program.\"\"\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9d0a43b2-4f79-4297-969e-961dd9286ffa,\"MENENDEZ ON CONFIRMATION OF JUSTICE SONIA SOTOMAYOR: “THE PROMISE OF AMERICA FULFILLED”\n                    \n                            Video of Menendez’s closing remarks in Senate: http://www.youtube.com/watch?v=qbEguRhFQe8\n                    \n                      August 6, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:11.0pt;\n\tfont-family:\"\"Calibri\"\",\"\"sans-serif\"\";\n\tmso-ascii-font-family:Calibri;\n\tmso-ascii-theme-font:minor-latin;\n\tmso-fareast-font-family:Calibri;\n\tmso-fareast-theme-font:minor-latin;\n\tmso-hansi-font-family:Calibri;\n\tmso-hansi-theme-font:minor-latin;\n\tmso-bidi-font-family:\"\"Times New Roman\"\";\n\tmso-bidi-theme-font:minor-bidi;}\n\n\nWASHINGTON - U.S. Senator\nRobert Menendez (D-NJ), one of two Hispanic Senators, today voted to confirm Sonia\nSotomayor as a Justice of the Supreme Court. Following the vote, he released\nthis statement:\n\"\"Sonia Sotomayor\nand I were born in the same year and grew up in similar circumstances on\ndifferent sides of the Hudson River. Today, a man raised in a Union City\ntenement was able to stand as one of 100 United States Senators and cast a vote\nto confirm to the nation's highest court an eminently-qualified woman, raised\nin a Bronx housing project. That is more than a coincidence - in the United\nStates of America, it is anything but. It is the American Dream. It is the\npromise of America fulfilled.\"\"\n \n\"\"This is a moment at\nwhich a young Latina, sitting in an elementary school classroom, will fully\nunderstand that anything is possible in this amazing country. This is a moment\nat which the Latino community feels pride, hope and affirmation. This is a\nmoment at which you can see America coming of age.\"\" \nShortly before the\nvote, Menendez delivered remarks in favor of Justice Sotomayor's confirmation.\nThe video of those remarks are available here: http://www.youtube.com/watch?v=qbEguRhFQe8\nFull\ntext of speech, as prepared for delivery: \nMr. President, the Senate will vote to confirm Judge Sonia\nSotomayor.\nIn doing so, we will not only make history, but we will\nstand witness to a coming of age of America.\nOur founders devised a unique experiment in a new form of\ngovernment built on tolerance, equal rights, justice, and a constitution that\nprotected us from the mighty sword of tyranny.\nIt was a revolutionary notion that in this new nation, no\none - no one -- would be bound by an accident of birth...\nNo one would be limited by their economic or social\ncircumstances.\nIn America we have come to believe that all is possible.\nMr. President, today - on the anniversary of the signing of\nthe Voting Rights Act -- at the other end of Pennsylvania Avenue an\nAfrican-American sits in the Oval Office.\nThis is America.\nAcross the street, in that magnificent symbol of Equal Justice\nUnder Law, a woman -- a Latina -- will take a seat on the United States Supreme\nCourt.\nThis is America.\nIn this chamber, this Senator respectfully stands before\nyou, born in the same year as Judge Sotomayor, and in similar circumstances --\nraised in a tenement in an old neighborhood in New Jersey, the son of\nimmigrants, first in my family to go to college.\nI never dreamed I would stand on this floor - on this day --\nto rise in support of an eminently qualified Hispanic woman who grew up in a\nhousing project in the Bronx, as I was growing up in that old tenement in Union\nCity.\nYes, this is America; it is the America our founders\nintended it to be.\nMr. President, I said on this floor earlier in this debate\nthat when Judge Sotomayor takes her seat on the United States Supreme Court, we\nwill need only to look at the portrait of the Justices of the new Supreme Court\nto see how far we have come as a nation - to understand who we really are as a\npeople.\nIt is true that we are often divided by deeply-held individual\nbeliefs that too often prevent us from reaching compromise on the complex\nissues and challenges facing this nation.\nBut in America we are entitled to our individual beliefs.\nWe are entitled to hold them firmly, passionately, with\nresolve, reason, and fairness.\nWe are free to fight for them with every fiber of our being\n-- to express them - shout them from the rooftops if we like...\nPut simply, all of us see the world differently. All we can\nask of ourselves - all any of us can ask -- is that wisdom, intelligence,\nreason, and logic will always prevail in every decision we make.\nI have said before on this floor and I will say again: Who\nwe are is not a measure of how we judge; it is merely one part of the many\nfaceted prism through which we see and analyze the facts.\nThe real test is how we think and what we do, and I know --\nin my heart and in my head -- Judge Sotomayor will do what is right for\nAmerica.\nMr. President, the worst her opponents have accused her of\nis an accident of geography that gave her the unique ability to see the world\nfrom the street view, from the cheap seats.\nI know that view well. I know it very well. It gives us a\nunique perspective on life.\nIt allows us to focus a clear lens on the lives of those\nwhose struggles are more profound than ours, and whose problems run far deeper\nthan our own.\nThat view of the world from a tenement in Union City remains\nwith me today, and it will remain with me all of my life... just as the view from\na housing project in the Bronx will remain with Judge Sotomayor.\nIt is part of who she is. But, let us be clear, it is not\nwhat she will do or how she will judge.\nIt is the long view of America - a wide, inclusive view -\noften profoundly moving, sometimes heart-breaking -- and it gives her an edge,\nfor she may see what others cannot, and I truly believe that is a gift that\nwill benefit this nation as a whole.\nSo I call on my colleagues to step back -- take the long\nview - think of what our founders hoped for this nation - and then let us vote.\nHistory awaits.\nI have made my decision, and will proudly stand in the well\nof this Chamber to cast my vote to confirm Judge Sotomayor as the next Justice\nof the United States Supreme Court.\nWhen she places her hand on the Bible and takes the oath of\noffice -- the new portrait of the Justices of the Supreme Court will more\nclearly reflect who we are as a nation and what we stand for as a fair, just,\nand hopeful people.\nLet that be the legacy of our generation, for this is\nAmerica - the America our founders intended it to be.\nThank you, Mr. President, and with that I yield the floor.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9829d084-e545-4aef-b7bd-1346795f3fd6,\"MENENDEZ, GILLIBRAND REACT TO ADMINISTRATION’S DETENTION SYSTEM ANNOUNCEMENT\n                    \n                      August 6, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:10.0pt;\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - Today, the\nDepartment of Homeland Security announced that it would increase staffing\nrelated to oversight of the immigrant detention system. DHS is adding new\nnational and regional officials who will help monitor the detention centers and\nreport potential issues. This comes in response to a series of illegal\ndetentions - and even deportations - of U.S. citizens and legal permanent\nresidents, as well as the lack of basic medical care in detention facilities.\nU.S. Senators Robert\nMenendez (D-NJ) and Kirsten Gillibrand (D-NY) have introduced legislation meant\nto reform detention policies, protect citizens and permanent residents and ensure\nbasic medical care for detainees (more info: http://menendez.senate.gov/newsroom/record.cfm?id=316567&).\nToday, they said that the announcement signals good first steps, but that\nfundamental changes to the detention system are still urgently needed.\n\"\"I certainly welcome\nthese first steps toward more effective oversight of our detention system,\"\" said Menendez. \"\"Still,\na dramatic overhaul of detention policy is needed to ensure the elimination of\nthe egregious abuses that we've seen. The quickest and surest way to stop the\ndetention and deportation of U.S. citizens and to stop the inhumane treatment\nof our fellow human beings in detention is with new rules that ensure due\nprocess, and I hope to see those either from DHS or through legislation.\"\"\n \"\"I commend the\nAdministration for taking initial steps to reform the immigration detention\nsystem, which has had a number of lapses in due process and humane treatment\nthat have resulted in deaths due to untreated medical conditions,\"\" said Gillibrand. \n\"\"I have worked with Dr. Schriro, who has been tapped to lead the new Office of\nDetention Policy and Planning (ODPP).  She is enthusiastic and deeply\nengaged in improving due process and focusing on vulnerable cases, such as\npregnant women, nursing mothers, and children. I am hopeful that the Department\nwill implement all the necessary improvements, and I will continue to work in\npartnership with Secretary Napolitano and her team, as well as Senator\nMenendez, in providing oversight and appropriate legislation to ensure that the\nU.S. immigration detention system complies with the standards that we expect in\nAmerica.\"\"\nMenendez believes DHS\nshould institute new policies to bring the detention system into the 21st\ncentury by:\nimplementing cost-saving community-based alternatives\n     to detention programs that provide community supervision to ensure\n     individuals show up to their immigration hearings\nensuring that U.S. citizens and other vulnerable\n     populations such as the seriously ill and pregnant women who don't pose a\n     danger to the community are quickly informed of their rights and\n     considered for release by a judge \ncreating enforceable detention conditions regulations\n     to ensure detainees are treated humanely and\ncutting contracts with facilities that don't comply\n     with minimum standards.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1126fa84-b2c7-4241-8a29-be017e89cf31,\"MENENDEZ SPEECH IN U.S. SENATE IN FAVOR OF CONFIRMATION FOR JUDGE SOTOMAYOR \n                    \n                      August 5, 2009\n                     Video of speech: http://www.youtube.com/watch?v=mXX-oEIb_ls\nWASHINGTON – U.S. Senator Robert Menendez (D-NJ), the lone Democratic Latino Senator, delivered a speech in the Senate last night in favor of confirming Judge Sonia Sotomayor as a Justice of the Supreme Court.“I rise in proud support of the confirmation of Judge Sonia Sotomayor,” said Menendez. “We are not only about to cast a vote that will make history, but we are about to stand witness – in some small way -- to the coming of age of America. The great founders of this democracy built a nation on an idea and an ideal. They forged a community from shared values, common principles, yet preserved the freedom of every citizen to pursue happiness and reach for the stars no matter their position, no matter their circumstance at birth. It was a revolutionary notion that, in America, one is not bound by his or her economic or social status – that, if we work hard, reach further, aim higher, everything – anything -- is possible.”Full text of speech, as prepared for delivery, below: Mr. President, I rise in proud support of the confirmation of Judge Sonia Sotomayor.We are not only about to cast a vote that will make history, but we are about to stand witness – in some small way -- to the coming of age of America.The great founders of this democracy built a nation on an idea and an ideal.They devised a unique experiment in a new form of government built on tolerance, equal rights, justice, and a constitution that protected us from the mighty sword of tyranny.They forged a community from shared values, common principles, yet preserved the freedom of every citizen to pursue happiness and reach for the stars no matter their position, no matter their circumstance at birth.It was a revolutionary notion that, in America, one is not bound by his or her economic or social status – that, if we work hard, reach further, aim higher, everything – anything -- is possible.Unlike other nations -- united by common history, common language, and common culture -- America prides itself on its motto, E pluribus Unum – out of many, one.In our blind rush to one side of the political spectrum or the other, we too often forget those words.We too often forget that we are united in our differences in a vast melting pot forged from common values and an ideal of freedom that is the envy of the world.Today, as we prepare to confirm Judge Sotomayor, the full realization of that ideal is closer than it has ever been.I know it; I feel it; for I have lived it.I stand here, someone who himself came from humble beginnings – raised in an old tenement house in an old neighborhood in Union City, New Jersey -- the son of immigrants, first in my family to go to college, and now – in a nation of 300 million people -- one of one hundred members of the United States Senate…I never dreamed growing up that -- one day -- I would have the distinct honor to come to the floor of the Senate to rise in favor of the confirmation of an eminently qualified Hispanic woman who grew up in the Bronx, across the river from that old tenement in Union City.I never dreamed that, as a Senator of Hispanic heritage, I would have the privilege of standing in the well of this chamber to cast an historic vote for the first Hispanic woman on the highest court in the land.For me – personally – my vote for Judge Sonia Sotomayor will be a proud moment, one I will always remember as a highlight of my time here in the Senate.When Judge Sotomayor takes her seat on the United States Supreme Court, America will have come of age.We will need only to look at the portrait of the Justices of the new Supreme Court to see how far we have come as a nation -- who we really are as a people, what we stand for, and what our founders intended us to be.It will be a striking portrait – one of strength, diversity, spirit, and wisdom… a portrait of a nation united by common concerns, yet still too often divided by deeply-held individual beliefs.There are those in this chamber who, because of those deeply-held beliefs, will vote for Judge Sotomayor, and those who will not, each for their own reasons, each – in part -- because of who they are, where they grew up, how their perspective has been uniquely shaped by their individual circumstances and experiences.Their vote will be based on their own logic, their own reasoning – how they interpret the facts and testimony before them.Each of us will analyze and debate those facts from our own perspective. We will hold to our intellectual positions. We will disagree. Some will find fault with Judge Sotomayor’s choice of words.Some will interpret her statements and rulings differently than she may have intended.Some will question her temperament, her judgment, the details of her decisions, but, in this debate – and ultimately in the final analysis -- none of us can deny the role our experience will play in our decision…None of us can deny our backgrounds, our upbringing -- the seminal events that shaped our life.We cannot deny who we are.All we can ask of ourselves – of any of us -- is that wisdom, intelligence, reason, and logic will always prevail in the decisions we make.Those who would say a United States Senator or a Justice of the United States Supreme Court does not carry something with them from their experience are simply out of touch with reality.But, let us remember that who we are is not a measure of how we judge; it is merely the prism through which we analyze the facts. The real test is how we think and what we do.Let’s be clear. Given the facts, given the evidence before us, Sonia Sotomayor is one of the most qualified and exceptionally experienced nominees to come before the Senate……And I am proud to stand in favor of her confirmation not because of where she came from – not because we share a proud ethnicity -- but because of Judge Sotomayor’s experience and vast knowledge of the law.I am proud to stand in favor of her nomination not because she is an Hispanic woman – but because of her commitment to the rule of law and her respect for the Constitution……not only because of the depth of her theoretical knowledge and respect for precedent, but because of her practical experience fighting crime……not because of one statement she may have made a long time ago, but because of a career-long, proven record of dedication to “Equal Justice Under Law.” Nothing – I repeat – nothing should be more important to any nominee than a dedication to those simple words chiseled above the entrance to the Supreme Court: “Equal Justice Under Law.”These are the reasons I am proud to stand in support of her confirmation...And these are the reasons Judge Sotomayor should, in my view, be unanimously confirmed by this Senate. But I know that will not be the case. I know there will be few on the other side of the aisle who will cast their vote in support of her.I know some of my colleagues have suggested Judge Sotomayor may not have the judicial temperament necessary to serve on the Supreme Court.To those senators I can only say: watch the hearings again. Watch them closely.Listen to what was asked. Watch her responses. Take note of the depth, dignity, and clarity of her answers.Be aware of the deference she showed every Senator on the Committee, her tone, the tenor of her responses, her rebuttals – and then tell me she does not have the proper judicial temperament.I think most Americans who watched her, who listened to her, would respectfully disagree.Most Americans do not care about one specific statement out of hundreds of statements.They care about the person.They care about her experience.They care about honor, decency, dignity, and fairness.They care about who she is and what she has accomplished in her long judicial career.Put simply, they care about the record.And the record is clear:It shows that she has a deep respect for the Constitution.It shows that the leaders of prominent legal and law enforcement organizations who know her best – those who have actually seen her work – say she is an exemplary, fair, and highly qualified judge.It shows a crime fighter who, as a prosecutor, put the “Tarzan Murderer” behind bars.It shows a judge who has upheld the convictions of drug dealers, sexual predators, and other violent criminals……And it highlights a deep and abiding respect for the liberties and protections granted by the Constitution – including the First Amendment rights of those with whom she strongly disagrees.Judge Sotomayor’s credentials are impeccable.Set aside for a moment the fact that she graduated at the top of her class at Princeton…Set aside her tenure as editor of the Yale Law Review…Her work for Robert Morgenthau in the Manhattan District Attorney’s Office…Her successful prosecution of child abusers, murderers, and white collar criminals…Set aside her courtroom experience and practical hands on knowledge of all sides of the legal system.Even set aside her appointment by George H. W. Bush to the U.S. District Court in New York, and her appointment by Bill Clinton to the U.S. Court of Appeals……and the fact that she was confirmed by both a Democratic majority Senate and a Republican majority Senate – which alone tells this Senator: if she was qualified then; she must be qualified now.Set all that aside and you are still left with someone who would bring more judicial experience to the Supreme Court than any Justice in the last 70 years -- more Federal judicial experience than anyone in the last century.Mr. President, the record clearly shows that someone so experienced, so skilled, so committed, so focused on the details of the law can be an impartial arbiter who follows the law -- and still have a deep and profound understanding of the affect her decisions will have on the day to day lives of everyday people.With all due respect to my colleagues who plan to vote against this nominee, what speaks volumes about Judge Sotomayor’s temperament…What speaks volumes about her experience…What speaks volumes about her record is that the worst – the very worst -- her opponents can accuse her of is an accident of geography that gave her the unique ability to see the world from the street view, from the cheap seats.I know that view well. I knew it growing up.I can tell you with certainty, it gives you a unique perspective on life.It engenders compassion. It engenders pathos…It focuses a clear lens on the lives of those whose struggles are more profound than ours, and whose problems run far, far deeper…Yes, Mr. President, I know that view well; and it remains with me today, and will remain with me all of my life.I dare say, there may be no greater vantage point from which to view the world --to see the whole picture -- than a tenement in Union City or a housing project in the Bronx.Thomas Jefferson, in his First Inaugural Address, said: “I shall often go wrong through defect of judgment. When right, I shall often be thought wrong by those whose positions will not command a view of the whole ground.”Mr. President, Judge Sonia Sotomayor surely commands a full, wide, expansive view of the whole ground.It is a strength, not a weakness.It is who she is, not what she will do or how she will judge.It is the long view – and it gives her an edge, for she may see what others cannot…And that is a gift that will benefit this nation as a whole.I ask my colleagues to take the long view and see what this nomination means in the course of this nation’s glorious history.For me, the ideal, the idea of America, the deep and abiding wisdom of our founders, will have come of age when Judge Sonia Sotomayor raises her right hand, places her hand on the Bible, and takes the solemn oath of office.With it, the portrait of the Justices of the Unites States Supreme Court will more clearly reflect who we are as a nation, what we have become, and what we stand for as a fair, just, and hopeful people.Let that be our charge.Let that be our legacy.I am proud and honored to support the confirmation of Judge Sonia Sotomayor as the next Justice of the United States Supreme Court.Mr. President, I would ask Unanimous Consent that letters of support from the following Latino and law enforcement organizations supporting Judge Sotomayor’s nomination be entered into the record:Mexican American Legal Defense and Education Fund;National Hispanic Leadership Agenda;National Puerto Rican Coalition;National Fraternal Order of Police;National Organization of Black Law Enforcement Executives;Federal Hispanic Law Enforcement Officers Association;United States Hispanic Chamber of Commerce;Arizona Hispanic Chamber of Commerce;And the Fort Worth Hispanic Chamber of Commerce.Thank you Mr. President, and with that I yield the floor.                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=72e4a72b-ea3a-4260-afec-c580d4384497,\"MENENDEZ ANUNCIA $415,000 PARA PROGRAMAS HEAD START EN JERSEY CITY \n                    \n                            Estos fondos federales otorgados a través del paquete de recuperación económica, aportan a las necesidades básicas de niños en edad pre-escolar y familias de bajos ingresos \n                    \n                      July 31, 2009\n                     WASHINGTON – Elsenador federal Robert Menendez anunció la distribución de $415,405 en fondos federales para los ‘Jersey City Child Development Centers, Inc.; o centros de desarrollo infantil, un programa local de Head Start. \nEste subsidio es parte del paquete de recuperación económica, que  \nayudará a los niños en edad pre-escolar y a sus padres con servicios de\neducación y salud, nutrición, servicios sociales y de discapacidad.\n \n“Todo\npadre quiere que su hijo tenga la oportunidad de alcanzar su máximo\npotencial y el  desarrollo infantil a una temprana edad es crucial para\nesto\"\", dijo el senador Menéndez. \"\"La difícil situación económica que\nvivimos hace que sea aun más evidente que una inversión como esta en el\ndesarrollo infantil y en la educación de nuestros niños, no solo ayuda\na nuestros hijos; ayuda a nuestra nación a prosperar dentro de la\neconomía global.” \n Los Jersey City Child Development Centers, Inc. o centros de desarrollo infantil (Proyecto Head Start), un programa que recibe fondos federales; sirve a niños en edad pre-escolar y a familias de bajos ingresos. Jersey City Child Development Centers, Inc., cuenta con 13 oficinas que sirven a cientos de niños en la ciudad de Jersey City.  El Programa Head Start de Jersey City forma parte del programa nacional de Head Start, que existe en casi todo el país, incluyendo Puerto Rico y las Islas Vírgenes. Head Start es un programa de desarrollo familiar, diseñado para complementar las necesidades básicas de niños y familias.\n\n\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=13fe3aba-d011-464b-936c-1892cd88e450,\"SENATOR MENENDEZ HAILS MORE THAN $66 MILLION FOR NJ TRANSIT FROM ECONOMIC RECOVERY PACKAGE \n                    \n                            Chairman of subcommittee that sets transit policy will host NJ TRANSIT's Sarles at hearing next week on transit equipment and system upgrade needs, such as these \n                    \n                      July 31, 2009\n                     WASHINGTON - Today, U.S. Senator Robert Menendez (D-NJ) announced more than $66\nmillion for NJ TRANSIT from the economic recovery package. The\ninvestment  will help maintain, modernize and improve NJ TRANSIT’s\ninfrastructure and rail cars. \n \nMenendez\nis Chairman of the Senate Banking Subcommittee on Housing,\nTransportation and Urban Development, which helps set transit policy,\nand he will be holding a hearing next week on transit upgrade needs,\nsuch as the ones addressed with this funding. NJ TRANSIT head Richard\nSarles will be in Washington to testify at Menendez’s hearing.\n \n\"\"In\nNew Jersey, more than in just about any other state, we understand how\nmass transit is crucial for economic development and for our families’\nquality of life,” said Menendez. “Investment\nin NJ TRANSIT such as this will help create jobs, cut energy costs and\nclean the air we breathe while saving commuters both time and money.\nThis is about both our economic recovery and laying the foundation for\neconomic security in the 21st Century. I look forward to\nhaving Richard Sarles before my subcommittee next week to discuss how\nthese upgrades benefit commuters and our economy.”\n \nThe following projects will be funded:\n \nEnhanced Track Rehabilitation Project -\nThe\nproject involves installation of ties on NJ TRANSIT’s Atlantic City,\nMontclair and Main Lines; Replacement of rail on NJ TRANSIT’s\nMorristown Line; Replacement of switches in Hoboken Terminal; and\nsystem-wide track improvements. \n \nCommuter\nRail Rolling Stock Rehabilitation Project - Repairs and replacement of\nmajor systems within NJ TRANSIT’s passenger car fleet as well as the\ndiesel and electric locomotive fleet. The car system rehabilitation\nincludes electric propulsion, HVAC, cab signal, air brake, wheel axle,\ntruck overhaul, electric door controls, toilets, display unit and other\nelectric components. Locomotive systems rehabilitation includes main\nengines, head end power units, air compressors, generators,\nalternators, brake assemblies, pantographs, transformers, terminal\nboards, electric switches gears, cooling fans and unit cylinder power\nassemblies. This will all be done at their Maintenance Meadows Complex\nfacility Rail Yard in Kearny, NJ.\n \nHudson-Bergen\nLight Rail Danforth Interlocking Project - Construction of additional\ntrack, switches, catenary and signals along the Bayonne Branch of NJ\nTRANSIT’s Hudson-Bergen Light Rail System in Jersey City and Bayonne.\nThe work will allow NJ TRANSIT to provide additional capacity and\nflexibility in Hudson-Bergen Light Rail operations.                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6a4f2535-f227-49c6-89e4-f50b9dfa90bb,\"SENATORS MENENDEZ, GILLIBRAND UNVEIL DETENTION REFORM LEGISLATION \n                    \n                            Menendez-Gillibrand bills require immigration authorities to follow appropriate due process when detaining individuals and to treat detainees humanely \n                    \n                      July 30, 2009\n                     WASHINGTON - In light of the alarmingly high number of cases in\nwhich U.S. citizens, immigrants and other vulnerable individuals are\nmistakenly and unlawfully detained by the U.S. Immigration and Customs\nEnforcement and in which detainees are exposed to inhumane conditions,\nU.S. Senators Menendez (D-NJ), and Kirsten Gillibrand (D-NY) today\nunveiled a package of legislation to reform our country's detention\nsystem.  This legislation comes in the wake of the issue of a report by\nthe Cardozo School of Law which found a pattern of ICE agents\ndeliberately breaking their way into private homes in direct violation\nof the Fourth Amendment of the Constitution and a significantly higher\ndisproportion of Latino residents are arrested without an articulated\nreason.\n The two-bill proposal include: the Protect\nCitizens from Unlawful Detention Act , which would establish minimum\nstandards of procedure and treatment for U.S. citizens, lawful\npermanent residents and immigrants who are impacted by immigration\nenforcement and detention operations. It also includes the Strong\nSTANDARDS Act, which sets minimum detention standards and requires the\nSecretary of Homeland Security to ensure that laws concerning the\ntreatment of detainees are properly enforced. The Protect Citizens from\nUnlawful Detention is also co-sponsored by Senator Edward M. Kennedy\n(D-MA).\n“No American citizen ever deserves to be thrown into\ndetention and have their freedom taken away for no reason, but this\nsort of thing is happening far too often,” said Senator Menendez.\n“People who were born right here in the United States of America have\nbeen taken into custody without knowing why, and in some cases, kicked\nout of the land they call home to countries completely foreign to them.\nAt the same time, people who are thrown into detention are being\nrefused basic medical treatment for conditions that can become deadly.\nThese are fellow human beings who haven’t committed any sort of violent\ncrime, yet they are being treated as subhuman, even in the United\nStates of America. Let’s make it clear – a detention should never\namount to a death sentence. These legislative initiatives will help\nreinforce what our great country has always stood for: liberty, the\nrule of law and basic human rights.” “All New Yorkers deserve\nthe protections that our rule of law provides,” Senator Gillibrand\nsaid. “This legislation will correct the injustices in our system,\nmaking sure that U.S. citizens and legal residents are not wrongfully\ndetained and protecting those fleeing torture.  As I travel across New\nYork, I have met families that have experienced horrible injustices and\nfarmers that see their communities under threat.  This bill begins to\naddress these systemic challenges, providing access to counsel, the\nright to proper Miranda warnings, and appropriate protections for\npregnant women, nursing mothers, and New Yorkers with serious health\nconditions. ” Among others, American Civil Liberties Union,\nAmerican Immigration Lawyers Association, Amnesty International, Asian\nAmerican Justice Center, the Episcopal Church, Lutheran Immigration and\nRefugee Service, Human Rights First, Human Rights Watch, National\nCouncil of La Raza, National Immigration Forum, Rights Working Group\nand the Women’s Refugee Commission have endorsed these pieces of\nlegislation. Bill summaries Protect Citizens and Residents from Unlawful Detention Act Senators Menendez (D-NJ) and Gillibrand (D-NY) Inadequate due process protections in our current law and a failure by\nthe federal government to guarantee protections have led to a crisis\nwhere U.S. citizens and other vulnerable individuals who should not be\nin ICE custody have been mistakenly detained. Mistaken identities,\nbureaucratic mix-ups, and discriminatory attitudes have contributed to\nunconstitutional actions against US citizens, lawful permanent\nresidents, and others with legal immigration status. US citizens should\nnot be mistakenly or unlawfully detained, deported, or mistreated by\ngovernment agents and no one should be subject to government actions\nthat overstep basic constitutional rights.\nThis bill would\nestablish minimum standards of treatment for U.S. citizens, lawful\npermanent residents and immigrants who are impacted by immigration\nenforcement operations.\nProtections Against Unlawful Detention\nof United States Citizens: The proposal would ensure detainees are\nadvised of basic legal rights and legal resources including the\navailability of free legal services from non-profit service providers\nand the right to access counsel at no cost to the government. The\nDepartment of Homeland Security would be required to provide a notice\nof charges and other information about the enforcement action upon\ndetaining an individual. The bill requires appropriate access to\ntelephones to call counsel. It restricts the transfer of detainees to\nfacilities far away from the point of arrest if the transfer would\nimpact the attorney-client relationship, among other provisions.\nDepartment officials would be trained regarding due process protections\navailable under current law.\nBasic Protections for Vulnerable\nPopulations: The bill would establish procedures for U.S. citizens and\nvulnerable populations encountered during immigration enforcement\nactions to be considered for release.  An initial decision on whether\nto detain an individual would be made by DHS within 72 hours of the\nnoncitizen’s detention and an Immigration Judge could review the\ndetention. In deciding whether to detain the individual, DHS and the\nImmigration Judge would consider whether the person poses a flight risk\nor risk to public safety or national security; and whether he/she is\nlikely to appear for immigration proceedings. Government\nAccountability: The bill would require reporting on current enforcement\npractices and the harmful impact on U.S. citizens, lawful permanent\nresidents and immigrant communities.  The bill also creates an ICE\nOmbudsman to investigate complaints, assist constituents in resolving\ncomplaints and recommend personnel actions to DHS.                  Strong Safe Treatment, Avoiding Needless Deaths, and Abuse Reduction in the Detention System (STANDARDS) Act Senator Robert Menendez and Senator Kirsten Gillibrand The bill provides minimum requirements that the Secretary of Homeland\nSecurity must meet to ensure that all persons detained are treated\nhumanely and the security of the facility is guaranteed. The Department\nof Homeland Security has performance-based detention standards that\nrequire DHS officers to meet requirements for humane treatment however\nthe detention standards have not been consistently enforced. Over 80\ndetainees have died in custody in recent years and myriad reports by\ngovernment agencies and non-governmental organizations have found\nwidespread abuse within detention facilities. This bill codifies the\nmost critically important detention standards and requires the\nSecretary of Homeland Security to ensure that laws relating to the\ntreatment of immigration detainees are enforced. The bill includes the\nfollowing minimum requirements: •    Given that detainees are not\npermitted to access outside medical care, the bill would ensure\ndetainees receive adequate medical and mental health, and dental care,\nincluding comprehensive intake screenings •    Provides an administrative process for handling appeals of denials of medical treatment •    Restricts transfers of detainees to another facility if such\ntransfer would impair an attorney-client relationship, prejudice the\ndetainee’s legal case, or negatively impact the detainee’s health •    Ensure detainees have adequate access to telephones •    Prevent physical and sexual abuse of detainees •    Limit the use of solitary confinement and strip searches to\nsituations where it is necessary for security and eliminates the use of\nthese techniques on children •    Require detention facilities to be acquired in locations where free or low-cost legal representation is available  •    Provide adequate translation services to ensure the safety and security of the facility •    Provide detainees with access legal information, including an on-site law library •    Allow legal, family and religious visitors in detention facilities •    Ensure detainees get an hour of recreation per day •    Require that all personnel in detention facilities and short-term detention facilities receive comprehensive training  •    Ensure the safe transport and deportation of each individual detained   •    Require that detainees in short term facilities receive water,\nfood, toiletries, access to bathrooms, and ensures protections for\nchildren in short-term detention  •    Require that detention facilities accommodate the unique needs of vulnerable populations and children.  To ensure these provisions are enforced, the bill requires the\npromulgation of regulations that would ensure compliance with above\nrequirements; creates a Detention Commission comprised of government\nofficials and independent experts responsible for investigations of\ndetention facilities and reporting to Congress; and requires immediate\nreporting of the death of any individual in DHS custody or en route to\nor from DHS custody.                                                                                                                                                                                           \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d41d357b-28e9-4aab-8452-ba2e47641ff3,\"MENENDEZ HELPS SECURE $142 MILLION FOR NEW JERSEY BEACHES, FLOOD CONTROL AND OTHER INFRASTRUCTURE PROJECTS \n                    \n                            Appropriations bill passed U.S. Senate last night \n                    \n                      July 30, 2009\n                     WASHINGTON – Last night, the U.S. Senate passed the Energy and Water\nAppropriations bill, which funds major infrastructure, natural\nresources and energy projects. U.S. Senator Robert Menendez (D-NJ)\nhelped secure the inclusion of more than $142 million in projects for\nNew Jersey. Those include beach nourishment, flood control, waterway\ninfrastructure and energy projects (list below). “These are\nmajor investments in the Garden State that will create jobs while\nprotecting our families, property and natural treasures,” said\nMenendez. “Replenishing our beaches is about safeguarding coastal\ncommunities and preserving the Jersey Shore for millions of families\nand the economic activity it supports. Many of our flood-prone\ncommunities are too familiar with the devastation that can be done when\nwater levels rise, which is why it was important to protect lives and\nproperty through investments in flood control. The investments in our\nharbors and waterways are important to help keep our state’s economic\nengine running.” The legislation will be reconciled with the\nversion that the House of Representatives passes, then will proceed to\nfinal passage to be signed into law. Highlights of the funding Menendez helped secure include: •    $5 million for Long Beach Island beach replenishment -- Barnegat Inlet to Little Egg Harbor Inlet •    $6.5 million for Ocean City beach replenishment -- Great Egg Harbor Inlet and Peck Beach •    $2 million for Avalon and Stone Harbor beach replenishment -- Townsends Inlet to Cape May Inlet (Avalon and Stone Harbor) •    $7 million for flood control in the Raritan River Basin, Green Brook Sub-basin •    $3 million for Joseph G. Minish Historic Waterfront Park in Newark (bulkhead construction and riverbank stabilization) List total of project funding for New Jersey: $97 million for Army Corps of Engineers general construction (projects in italics indicates beach replenishment)   Brigantine Inlet to Great Egg Harbor Inlet, Brigantine Island, NJ -- $80,000 Cape May Inlet to Lower Township, NJ -- $200,000 Lower Cape May Meadows, Cape May Point, NJ -- $400,000 Barnegat Inlet to Little Egg Harbor Inlet (LBI), NJ -- $5,000,000 Brigantine Inlet to Great Egg Harbor Inlet (Absecon Island), NJ -- $2,000,000 Great Egg Harbor Inlet to Townsends Inlet, NJ -- $3,500,000 Great Egg Harbor Inlet and Peck Beach (Ocean City), NJ -- $6,500,000 Townsends Inlet to Cape May Inlet, NJ -- $2,000,000 Raritan River Basin, Green Brook Sub-basin, New Jersey -- $7,000,000 Hackensack Meadowlands, New Jersey (flood control and environmental restoration) -- $500,000 Joseph G. Minish Historic Waterfront Park, NJ -- $3,000,000 NY & NJ Harbor Deepening, -- $60,000,000 Sandy Hook to Barnegat Inlet, New Jersey -- $2,000,000 Raritan Bay and Sandy Hook Bay, Port Monmouth, New Jersey -- $2,000,000 Raritan Bay and Sandy Hook Bay, NJ -- $2,000,000 Ramapo and Mahwah Rivers, Mahwah, NJ and Suffern, NY (flood control) -- $200,000 Passaic River Basin Flood Management, New Jersey -- $1,000,000                          $37 million for Army Corps of Operations and Maintenance (waterway infrastructure) Delaware River, Philadelphia to Trenton, NJ and PA -- $820,000 Delaware River at Camden -- $15,000 Delaware River, Philadelphia to the Sea, PA -- $19,600,000 Barnegat Inlet, NJ -- $225,000 Manasquan River, NJ -- $150,000 New Jersey Intracoastal Waterway, NJ -- $250,000 Absecon Inlet, NJ -- $250,000 Delaware Estuary Regional Sediment Management (RSM) --  $200,000 Salem River, NJ -- $100,000 Cold Spring Inlet -- $250,000 New York and New Jersey Channels, Arthur Kill Reach, NJ -- $4,100,000 New York Harbor, NY & NJ (Drift Removal) --  $7,000,000 New York Habor, NY & NJ (Prevention of Obstructive Deposits)  -- $1,045,000 Newark Bay, Hackensack and Passaic Rivers -- $150,000 Raritan River, New Jersey -- $500,000 Passaic River Flood Warning System -- $553,000 Project Condition Surveys, NJ -- $1,653,000 Shark River -- $400,000 Shoal Harbor and Compton Creek -- $80,000 Inspection of Completed Works -- $205,000 Raritian River to Arthur Kill Cut Off, NJ -- $200,000 $4 million for Army Corps of Engineers General Investigations (studies and assessments of projects) Hereford Inlet to Cape May Inlet, NJ -- $130,000 New Jersey Alternative Long-Term Nourishment Study -- $110,000 Delaware River Comprehensive, NJ -- $290,000 Delaware Estuary Salinity Monitoring Study -- $200,000 Floodplain maps for Manalapan and Matchaponix Brooks, NJ -- $500,000 Lower Saddle River, New Jersey -- $225,000 Hudson-Raritan Estuary, NY & NJ -- $170,000 HRE-Lower Passaic River Restoration Feasibility Study, New Jersey -- $200,000 HRE – Hackensack Meadowlands, NJ -- $200,000 Stony Brook, Millstone River Basin, NJ -- $110,000 South River, Raritan River Basin, New Jersey -- $215,000 Shrewsbury River and Tributaries, NJ -- $511,000 Raritan Bay and Sandy Hook Bay, Union Beach, NJ -- $110,000 Raritan Bay and Sandy Hook Bay, Leonardo, New Jersey -- $25,000 Raritan Bay and Sandy Hook Bay, Highlands, NJ -- $255,000 Rahway River Basin, NJ -- $255,000 Peckman River and Tributaries, New Jersey -- $300,000 Passaic River Main Stem, New Jersey -- $215,000 Passaic River, Harrison -- $215,000                          Continuning Authorities Program (projects only listed not provided funding amount) Pennsville, Salem County, NJ (Section 205) Assunpink Creek, Hamilton Twp, NJ (Section 205) Jackson Brook, Morris County, New Jersey  Lincoln Park West, Ecosystem Restoration Study, NJ  NJIWW, Dredged Hole 35 Restoration, NJ Musconetcong River Dam Removals, Milford, NJ (Section 206) Department of Energy  $750,000 for Rowan University - Algae to Ethanol Research and Evaluation $1,000,000 for the City of Elizabeth Solar Panels in Municipal Owned Buildings $1,000,000 for Trenton Fuel Works – Cellulosic Diesel Biorefinery # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7baee5f4-c84d-416f-b2bf-e75362030773,\"AS TEMPORARY HIGHWAY TRUST FUND RESCUE PASSES SENATE, SEN. MENENDEZ REITERATES NEED TO GIVE TRANSIT ITS FAIR SHARE\n                    \n                            Menendez has helped introduce transportation trust fund legislation that would provide $4.8 billion for Mass Transit Account\n                    \n                      July 30, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:10.0pt;\n\tfont-family:\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - The U.S. Senate\ntoday approved a $7 billion, short-term rescue for the Highway Trust Fund,\nwhich would run out of money in August without new funding. This rescue will\nallow road and highway projects to continue. This particular rescue does not\ninclude funding for the Mass Transit Account.\nU.S. Senator Robert\nMenendez (D-NJ), Chairman of the Banking Subcommittee on Housing,\nTransportation and Urban Development and a leading proponent of investments in\ntransit, today acknowledged the pressing need for a highway trust fund rescue,\nbut also reiterated the continuing need for transit to get its fair share.\n\"\"We cannot let the\nHighway Trust Fund run dry, or else we face job losses, stalled projects and\nanother hit to our economy,\"\" said Menendez. \"\"That being said, we need to ensure\ngoing forward that the customary 80 percent-20 percent ratio of funding for the\nhighway and transit trust funds is upheld. Transit holds the potential to\ncreate jobs, lower energy costs, strengthen national security and clean the air\nwe breathe while saving commuters time and money. It should be a key part of\nnot only our economic recovery but of the foundation for economic security in\nthe 21st Century. I look forward to working toward a robust infusion\nof funding for the Mass Transit Account.\"\"\nMenendez has joined\nwith Finance Committee Chairman Max Baucus (D-MT) in introducing longer-term\nlegislation to fund the transportation trust funds that would provide the Mass\nTransit Account with $4.8 billion: http://menendez.senate.gov/newsroom/record.cfm?id=315981.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8a0c449c-6030-4bba-83f5-7b739a682d9e,\"MENENDEZ ANNOUNCES $6 MILLION FOR MAJOR NJ SOLAR POWER PROJECTS\n                    \n                            2 NJ companies among 5 companies nationwide receiving federal investments to facilitate generation and use of solar power\n                    \n                      July 29, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:10.0pt;\n\tfont-family:\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - U.S.\nSenator Robert Menendez (D-NJ) today announced that two New Jersey companies\nwill receive almost $6 million total from the U.S. Department of Energy for\nmajor solar power projects:\nPetra Solar of South Plainfield will receive up to $2.9\n     million. The company will work with the University of Central Florida\n     (Orlando, FL) and Fifteen Electric Utilities with service in NJ, PA, OH,\n     DE, MD, DC, FL, TX:  This project complements the mission of the\n     Solar Program to achieve the widespread adoption of solar energies. It\n     supports improving reliability and resiliency so that high levels of PV\n     integration can be adapted. \nPrinceton Power of Princeton will receive up to $2.8\n     million. The company will work with Transistor Device Inc (TDI), LaGuardia\n     Community College (New York, NY), Idyllwild Municipal Water District (San\n     Diego, CA), National Oceanographic and Atmospheric Administration\n     (Princeton, NJ), Princeton Plasma Physics Laboratory (Princeton, NJ),\n     Premier Power, SPG Solar (Novato, CA), and Spire (Bedford,\n     MA).   This project focuses on lowering manufacturing costs\n     through integrated controls for energy storage and develops new inverter\n     designs. \n\"\"Our\nstate has always been at the leading edge of innovation, and today, we are at\nthe leading edge of the solar power boom,\"\" said Menendez. \"\"Solar power is a\nclean alternative with the potential to lower the price of energy, create new\njobs and clean the air we breathe. It's a key part of our economic recovery and\nwill help lay the foundation for economic security in the 21st Century. This is also an important investment for our environment, and I am\nplease that New Jersey companies were chosen to help lead the way.\"\"\nThe\nfederal funding announced today was given to projects designed to advance the\nnext stage of development of solar energy grid integration systems (SEGIS).\nInitiated in 2008, the SEGIS activity is a partnership that includes DOE,\nSandia National Laboratories, industry, utilities, and universities and\nemphasizes complete system development.  The selected projects focus on\nthe most promising technology advances and include development of intelligent\nsystem controls. These projects ultimately seek to maintain or improve power\nquality and reliability, as well as return economic value, while increasing\nintegration of solar technologies into the U.S. electrical grid.\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c824e7a5-6ed1-4e6c-87bc-8f35ca83a7ef,\"Menendez, Colleagues Unveil First-Ever Legislation To Ban All Drivers From Texting While Operating A Vehicle\n                    \n                            Recent Virginia Tech Study Found Drivers Who Send Texts Are 23 Times More Likely To Get into an Accident; Other Research Concluded Practice Is More Dangerous Than Drunk Driving\n                    \n                      July 29, 2009\n                     Texting Ban Applies To Anyone Operating Cars, Trucks Or Most Mass Transit; States Would Risk Losing Federal Highway Funds If Fail To Comply\nWASHINGTON - Today, U.S. Senators Charles E. Schumer (D-N.Y.), Robert Menendez (D-N.J.), Mary Landrieu (D-L.A.) and Kay Hagan (D-N.C.) unveiled new legislation that will ban anyone from texting on a cell phone or other personal electronic device while operating a moving vehicle. This legislation comes in the wake of a rash of mass transit accidents caused by distracted operators and a study by Virginia Tech researchers yesterday that revealed that drivers are 23 times more likely to get into an accident when texting on their phones. Another study, published in June by Car and Driver Magazine, indicated that texting while driving is more dangerous than driving intoxicated.\nThe senators' bill-known as the Avoiding Life-Endangering and Reckless Texting by Drivers Act (\"\"ALERT Drivers\"\" Act)-would require states to bar the sending of text or email messages while operating a car or truck, or else risk losing federal highway funds. Within six months of the bill's passage, the U.S. Department of Transportation (DOT) will establish minimum penalties that must be contained within the state law. States then have two years to pass compliant bans or else risk losing 25% of their annual federal highway finding per year that they fail to comply with the law.  States that comply after the two-year deadline can retroactively recover lost highway funds.\n\n\"\"Studies have shown over and over that texting while driving is dangerous and it's time to take action to prevent the tragic accidents that result from this activity,\"\" said Schumer. \"\"We have seen too many lives ruined due to drivers recklessly using their cell phones. With this new legislation, drivers will finally be held responsible for dangerous behavior that puts the public at risk.\"\"\n\n\n\"\"iPhones, Sidekicks and Blackberries are ingenious, indispensible devices. But while they make our lives so much easier, they make driving that much harder,\"\" said Menendez. \"\"Texting while driving should be illegal on every road, every railway, in every state. Anything we can do at every level of government to raise awareness and stop texting while driving will save lives - particularly the lives of those new drivers who are accustomed to texting anywhere, anytime. They are at risk, and they put our families at risk.\"\"\n\n\n\"\"This legislation addresses a growing problem on our nation's highways: distracted drivers,\"\" Sen. Landrieu said. \"\"Studies show that texting while driving increases the chances of a high-speed collision and has been found to be even more dangerous than driving drunk. This activity places millions of drivers at an unnecessary risk of potentially deadly accidents.  By enforcing a minimum standard for states, Congress can ensure that both interstate commerce and private in-state travel remains as safe as possible, while allowing states to enact stricter standards if they choose. Fourteen states, including Louisiana, have already passed laws addressing this issue - it is time for the other 36 states to follow suit.\"\" \n\n\n\"\"Research shows that texting while driving is as dangerous as drunk driving. North Carolina wisely passed a law in June preventing drivers from texting or e-mailing. If every state chose to enact similar laws, it would keep motorists, passengers and the public safer on our roads across the country,\"\" Sen. Hagan said.\n\nAmericans have been using cell phones and other electronic devices to send text messages and emails with increasing frequency in recent years. According to the New York Times, over 110 billion text messages were sent in the United States in the month of December 2008 alone, a tenfold increase over just three years. A 2008 study by Nationwide Insurance found that 20% of American drivers send text messages while driving.  And while texting and e-mails are extremely valuable to individuals throughout the country, these services are incredibly risky when used by a motor vehicle operator. Recently there have also been major mass transit accidents in Massachusetts and California that were caused by distracted operators who were texting on their cell phones while operating the vehicles. There were 25 deaths as a result of these accidents alone.\nIn a study released yesterday, the Virginia Tech Transportation Institute found operators of motor vehicles had a collision risk 23 times greater when they were texting than when they were not texting. Another study by the University of Utah found that college students using a driving simulator were eight times more likely to have an accident when texting.\nRecently, the American Medical Association identified texting while driving as a public health risk and cited a study that found that texting while driving causes a 400% increase in time spent with eyes off the road. However, texting doesn't just affect car operators; it affects train conductors and bus drivers as well. In September 2008, the worst train crash in 15 years took place in Los Angeles, California when a train conductor receiving and sending text messages went through a red light and collided with a freight train, killing 25 people and injuring 135. In May 2009, a MBTA trolley in Boston ran a red light and crashed into another trolley. The conductor admitted to texting when the accident took place. Forty-nine people were injured. Earlier this year, a San Antonio bus driver was caught on video driving through rush hour traffic while texting on his cell phone. The bus later crashed into an SUV.\nThe problem of texting while driving has been recognized across the country.  Currently, fourteen states and the District of Columbia ban all drivers from texting while operating motor vehicles.  In addition, eleven other states have a modified ban on texting while driving. The Federal Railroad Administration (FRA), part of the DOT,  issued an emergency order in October 2008 to restrict on-duty railroad operating employees from using cell phones and other electronic devices. The decision to issue the order came after a Los Angeles crash that killed 25 people, which raised serious concerns within FRA and DOT over the safety of rail transportation when electronic devices were used by conductors. But these rules do not reach far enough since they only apply to heavy-rail operators.\nThe bill introduced today would apply to anyone operating a personal car, truck, bus and most other mass transit systems, including light rail. The legislation would not apply to individuals using mobile devices while their vehicle is stopped, nor would it apply to passengers.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d56f8080-5a78-4b77-b9ab-638eed8d0d3c,\"MENENDEZ ANUNCIA $415,000 PARA PROGRAMAS HEAD START EN JERSEY CITY \n                    \n                            Estos fondos federales otorgados a través del paquete de recuperación económica, aportan a las necesidades básicas de niños en edad pre-escolar y familias de bajos ingresos \n                    \n                      July 29, 2009\n                     WASHINGTON – El senador federal Robert Menendez anunció la distribución\nde $415,405 en fondos federales para los ‘Jersey City Child Development\nCenters, Inc.; o centros de desarrollo infantil, un programa local de\nHead Start.  Este subsidio es parte del paquete de recuperación\neconómica, que   ayudará a los niños en edad pre-escolar y a sus padres\ncon servicios de educación y salud, nutrición, servicios sociales y de\ndiscapacidad. “Todo padre quiere que su hijo tenga la\noportunidad de alcanzar su máximo potencial y el  desarrollo infantil a\nuna temprana edad es crucial para esto\"\", dijo el senador Menéndez. \"\"La\ndifícil situación económica que vivimos hace que sea aun más evidente\nque una inversión como esta en el desarrollo infantil y en la educación\nde nuestros niños, no solo ayuda a nuestros hijos; ayuda a nuestra\nnación a prosperar dentro de la economía global.”  Los\nJersey City Child Development Centers, Inc. o centros de desarrollo\ninfantil (Proyecto Head Start), un programa que recibe fondos\nfederales; sirve a niños en edad pre-escolar y a familias de bajos\ningresos. Jersey City Child Development Centers, Inc., cuenta con 13\noficinas que sirven a cientos de niños en la ciudad de Jersey City.  El\nPrograma Head Start de Jersey City forma parte del programa nacional de\nHead Start, que existe en casi todo el país, incluyendo Puerto Rico y\nlas Islas Vírgenes. Head Start es un programa de desarrollo familiar,\ndiseñado para complementar las necesidades básicas de niños y familias.\n\n                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8b780d6e-415e-45ff-8e95-58677c319a14,\"KERRY, LUGAR, MENENDEZ, CORKER INTRODUCE LEGISLATION TO REFORM FOREIGN AID \n                    \n                      July 28, 2009\n                     Senate Foreign Relations Committee Chairman John Kerry (D-MA) and\nRanking Member Dick Lugar (R-IN), along with Senators Robert Menendez\n(D-NJ) and Bob Corker (R-TN) today introduced legislation aimed at\ninitiating the foreign aid reform process.  Senators James Risch (R-ID)\nand Ben Cardin (D-MD), also members of the Committee, joined as\noriginal cosponsors. The Foreign Assistance Revitalization\nand Accountability Act of 2009, S.1524, is an important first step\ntoward comprehensive foreign aid reform.  It will ensure that the\nUnited States is appropriately equipped to meet the challenges of the\n21st century.  More importantly, the legislation focuses on increasing\nthe capacity of the United States Agency for International Development\n(USAID) to deliver effective and accountable programs and the broader\ncapacity of all our foreign aid programs.   “I believe this\nlegislation will go a long way toward improving our immediate ability\nto deliver foreign aid in a more accountable, thoughtful and strategic\nmanner,” said Chairman Kerry.  “We need cutting edge programs that will\npush the envelope on ending chronic poverty, combating global climate\nchange, reducing hunger, supporting democracies, and offering\nalternatives to extremism.”  “The issues that we face today\n– from chronic poverty and hunger to violent acts of terrorism –\nrequire that we work seamlessly toward identifiable goals. The U.S. has\nincreased development funding and elevated its priority. Yet USAID has\nbeen allowed to atrophy. Many new programs are located outside USAID in\nroughly two dozen departments and agencies. We don’t really know\nwhether these programs are complementary or working at cross-purposes,”\nLugar said. “Our bill seeks to better evaluate programs, improve\ncoordination among agencies and enhance staff development and\ntraining,” said Ranking Member Dick Lugar.   “Our investments\nin foreign assistance are investments in our own economic and national\nsecurity,” said Menendez, Chairman of the Subcommittee on International\nDevelopment and Foreign Assistance, Economic Affairs, and International\nEnvironmental Protection.  “Over the years, foreign assistance has been\npulled in too many directions.  This reform initiative is a way to help\nfocus our programs in a smarter and more effective way.  This will help\nthe U.S. contribute to greater stability and prosperity both around the\nworld and here at home.” “I’ve been able to see our foreign\nassistance dollars in action and am proud of the role we play in\nproducing positive change in the lives of millions around the world,”\nsaid Senator Corker, Ranking Member of the Subcommittee on\nInternational Development and Foreign Assistance. “At the same time I\nshare the frustration of many Americans that our foreign assistance\nefforts have often lacked transparency, coordination, monitoring and\nevaluation. This bill begins to reinvigorate USAID to improve the\ncoordination, execution and efficiency of U.S. assistance so we can\nmake each dollar go farther. The bill also establishes a body capable\nof evaluating the impact of our investments to make sure we are truly\nmeeting our foreign policy objectives.” The Foreign Assistance Revitalization and Accountability Act of 2009:    •     restores strategic thinking to USAID by reestablishing a bureau for policy and strategic planning;  •    calls for strengthening the coordination of U.S. foreign aid in\nthe field under the guidance of the USAID mission director;   •    increases accountability and transparency of U.S. foreign aid\nprograms by establishing an independent Council in the executive branch\n– the Council on Research and Evaluation of Foreign Assistance (CORE) –\nto objectively evaluate the impact and results of all development and\nforeign aid programs undertaken by the U.S. Government;   •  \n strengthens personnel at USAID by mandating a comprehensive review of\nall aspects of human resources and establishing a high-level task force\nto advise on critical personnel issues.  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a86d42d1-67f8-4ddb-9c18-4751c66199b5,\"SENATOR MENENDEZ HAILS NEARLY $27 MILLION IN FUNDING TO PROTECT POLICE JOBS AND PROTECT OUR FAMILIES \n                    \n                      July 28, 2009\n                     WASHINGTON - Today Vice President Joseph Biden announced that nearly\n$27 million has been awarded through the economic recovery package to\n18 New Jersey law enforcement agencies to hire and retain career law\nenforcement officers and sustain community policing and crime\nprevention efforts.  U.S. Senator Robert Menendez (D-NJ), a leading\nfirst responder and homeland security advocate, applauded these funds\nand the economic and security benefits they will help to bring.  \"\"No matter the economic climate, we cannot let our guard down when it\ncomes to protecting our families and securing our communities,” said\nMenendez. “In tough economic times, our communities often see a surge\nin crime rates, and local budget strains can cost law enforcement their\njobs. By investing in job security for our law enforcement, we are\ninvesting in security for our families.”  Nationwide, $1\nbillion in these grants have been awarded for 1,046 law enforcement\nagencies. The grants are part of the Department of Justice’s Office of\nCommunity Oriented Policing Services (COPS), COPS Hiring Recovery\nProgram (CHRP). CHRP provides funding to address the full-time sworn\nofficer needs of state, local, and tribal law enforcement agencies\nnationwide. CHRP grants will fund 100 percent of approved entry-level\nsalaries and benefits for three years for newly-hired, full-time sworn\nofficer positions (including filling existing unfunded vacancies) or\nfor rehired officers who have been laid off, or are scheduled to be\nlaid off on a future date.\nThe $26,813,422 in funding is allocated as follows: Asbury Park Police Department       5 officers                              $1,376,100 Brooklawn Police Department-        1 officer                                 $350,081 East Orange                                         14 officers                             $3,246,950 City of Elizabeth                                  17 officers                             $4,961,943 Fairfield Police Department              2 officers                               $485,024 Borough of Fairview                           2 officers                               $343,322 Borough of Frenchtown                     1 officer                                 $204,618 Township of Hamilton                        4 officers                               $1,059,000 Township of Irvington                         9 officers                               $1,801,872 City of Orange Township                   5 officers                               $964,875 City of Paterson                                   25 officers                             $3,747,375 Borough of Paulsboro                        1 officer                                 $206,900 Township of Pennsauken                  4 officers                               $1,002,720 Pleasantville Police Department      3 officers                               $834,531 Salem Police Department                 1 officer                                 $240,419 City of Trenton                                     18 officers                             $2,959,308 Union City                                             8 officers                               $2,209,264 Wildwood Police Department           3 officers                               $819,120 For more information please visit the COPS website at www.cops.usdoj.gov\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=642f0b03-029d-44bc-ac9a-7469fa52299f,\"MENENDEZ, LAUTENBERG ANNOUNCE $415,000 FOR JERSEY CITY HEAD START PROGRAM \n                    \n                            Federal funding through economic recovery package would go towards the basic needs of pre-schoolers and low income families\n                    \n                      July 27, 2009\n                      WASHINGTON - U.S.\nSenators Robert Menendez and Frank Lautenberg today announced $415,405\nin federal funding for the Jersey City Child Development Centers, Inc.,\na local Head Start program.  This discretionary grant, awarded from the\nAmerican Recovery and Reinvestment Act, will assist children of\npre-school age and their parents with educational and health services,\nnutrition, and social and disabilities services. \n “Parents\nwant their children to have the opportunity to reach their full\npotential, and early childhood development is a crucial part of that,” said Senator Menendez.  “These\ntough times have made it even clearer that investments in childhood\ndevelopment and education like this not only help our children thrive\nbut also help our nation prosper in the global economy.”\n “Head\nStart is one of the great success stories in American education,” Sen.\nLautenberg said.  “This funding will help level the playing field in\nJersey City and make sure that all kids, regardless of income, can\ndevelop the skills they need to succeed in elementary school and\nbeyond.”\n Jersey\nCity Child Development Centers, Inc. (Project Head Start) is a\nfederally funded program for pre-school children from low income\nfamilies with 13 offices that serve hundreds of children in Jersey\nCity. the Jersey City Head Start is a part of the National Head Start\nPrograms which are operated in almost every county in the country with\nthe inclusion of Puerto Rico and the Virgin Islands. Head Start is a\nFamily Development Program which is designed to meet the basic needs of\nindividual children and families.                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7760f63a-b3c4-4083-aba4-6142ec5a34c0,\"SENATOR MENENDEZ, LAUTENBERG HAIL NEARLY $10,000,000 IN HEALTH CARE FUNDS FOR NEW JERSEY \n                    \n                      July 27, 2009\n                     WASHINGTON - U.S. Senators Robert Menendez (D-NJ) and Frank R.\nLautenberg (D-NJ) today announced that the U.S. Department of Health\nand Human Services has awarded nearly $10,000,000 in federal funding\nfor various research initiatives and health care improvements in the\nstate of New Jersey.  “Funding for health care services and\nresearch initiatives helps ensure our families well-being now and into\nthe future and helps keep our state at the leading edge of medical\ninnovation,” said Senator Menendez.  “This funding helps keep key\nhealth care services running efficiently in difficult economic times so\nNew Jerseyans have continued access to quality and affordable health\ncare. It also helps save and create jobs in the health care sector\nduring these tough times.”  “With tough economic conditions\nstraining hospital budgets and New Jersey’s major research\ninstitutions, it is critical that the federal government help fund\nmedical studies and provide basic health care services.  Investing in\nresearch programs at New Jersey’s leading medical universities will\nhelp the Garden State remain at the forefront of scientific advancement\nfor generations to come,” stated Sen. Lautenberg.    The $9,332,537 in funding is allocated as follows:   City of East Orange •       $300,000 awarded to VA New Jersey Health Care System for\nresearch on the interplay of illness, race, age, and sex in glycemic\ncontrol\nCity of Hoboken •       $191,250 awarded to Stevens\nInstitute of Technology for research on intracellular radiation as a\nnovel approach for infection treatment  City of Mountainside •       $188,100 awarded to Children’s specialized hospital for health care and facilities  City of New Brunswick •       $13,728 awarded to the Robert Wood Johnson Medical School for public health traineeship programs\n•      \n$404,201 awarded to Rutgers University, New Brunswick for research on\nthe biology of the NK cell cytolic activity rhythm programs City of North Bergen •       $282,150 awarded to Palisades Medical Center for health care and facilities  City of Newark •       $2,881,118 awarded to the New Jersey Family Planning League for health care services •       $344,280 awarded to the University of Medicine/Dentistry for\nresearch on plasticity and regeneration of retinal synapses •       $195,000 awarded to the University of Medicine/Dentistry for\nresearch on computational and experimental analysis of RNA structures\nin mRNA •       $205,920 awarded to the University of\nMedicine/Dentistry for research on the role of neuropeptide Y-glucose\ninhibited (NPY-GI) neurons  •      $326,102 awarded to Rutgers University for research on mental health City of Piscataway •       $195,000 awarded to the Robert Wood Johnson Medical School for\nresearch on the control of fatty acid release in adipocytes •       $429,000 awarded to the Robert Wood Johnson Medical School for\nresearch on novel lysosomal enzyme deficient in batten disease •       $428,960 awarded to the Robert Wood Johnson Medical School for\nresearch on molecular control of Shh-Gli signaling in vertebrate CNS\n•       $390,000 awarded to the Robert Wood Johnson Medical School for research on tobacco cessation products •       $296,400 awarded to the Robert Wood Johnson Medical School for\nresearch on the mechanism of ECM regulation of actin nucleation during\nmorphogenesis •       $311,136 awarded to the Robert Wood\nJohnson Medical School for research on pharmacology, physiology, and\nbiological chemistry research City of Red Bank •       $235,620 awarded to the Visiting Nurse Association of Central Jersey for health care and facilities  City of Trenton •       $1,872,822 awarded to New Jersey State Dept of Health and Senior Services for family planning services\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8b463a7c-25dd-421e-8f41-99760322a14b,\"U.S. SENATOR ROBERT MENENDEZ URGES CONSUMERS TO APPLY FOR COUPONS BEFORE JULY 31 DEADLINE \n                    \n                            The Department of Commerce TV Converter Box Coupon program provides up to two $40 coupons\n                    \n                      July 27, 2009\n                     WASHINGTON – With\nanalog TV transmission signals a thing of the past and digital signals\nthe only way Americans can watch the programming of their choice, U.S.\nSenator Menendez urges consumers to apply for converter box coupons. \nThe coupons, worth $40.00 toward the purchase of a digital TV converter\nbox will no longer be available after July 31, 2009.\n “Although\nmany households subscribe to the various paid services that allow\nconsumers to watch TV without a converter box, millions more have lost\ntheir TV signals to the digital switch,” said Senator Menendez.  “These\ncoupons can greatly assist consumers that might not have the means to\npay for these services or to buy a new TV set, making it impossible to\nget news and emergency information or simply enjoy their favorite\nprogramming.”    I urge these consumers to take advantage of the coupon\nprogram before it expires on July 31 so that these Americans can watch\nfree over-the-air TV.”\n \n            \nFull-power television stations in the United States shut down their\nanalog broadcast systems by June 12, 2009, and now have completely\ndigital broadcasts. The Department of Commerce's TV Converter Box\nCoupon Program provides up to two $40 coupons per eligible household\ntoward the purchase of converter boxes to help consumers who rely on\nfree over-the-air broadcasting with the digital transition. The\ntransition to digital television frees up airwaves for better\ncommunications among emergency first responders and offers a clearer\npicture and more programming choices for many consumers. Consumers\nshould call ahead to confirm availability of coupon-eligible converter\nboxes on the day they plan to shop.               For more information about the switch to digital broadcasting, visit www.dtv2009.gov.\nTo request converter box coupons, call 1-888-DTV-2009. Consumers who\ncontinue to experience reception problems can call the Federal\nCommunications Commission hotline at 1-888-CALL-FCC. \n \n     \n      New Jersey constituents can also call Senator Menendez’s state\noffices for additional assistance: (973) 645-3030, or (856) 757- 5353. \n \n                                                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9b648539-914e-4a50-89cf-0eaeeb7cb397,\"MENENDEZ, LAUTENBERG ANNOUNCE $4.8 MILLION IN FEDERAL FUNDING TO CLEAN UP LAND AND WATER IN NEW JERSEY \n                    \n                            Recovery Act Funds to address problem of underground petroleum leaks in New Jersey \n                    \n                      July 24, 2009\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank R.\nLautenberg (D-NJ) announced that the Environmental Protection Agency\n(EPA) has awarded New Jersey $4.8 million from the economic recovery\npackage to help assess and clean sites that have been contaminated by\nunderground storage tank petroleum leaks. The federal funds are part of\nthe $197 million that the American Recovery and Reinvestment Act of\n2009, which was signed by President Obama in February of this year, has\nappropriated to EPA Regional Underground Storage Tank Programs.  “When the land we live on and the water we drink are clean, our public\nhealth is stronger,” said Senator Menendez. “When the health of our\nresidents, our land and our water are protected, our state and its\nresidents can properly develop and thrive. This funding will help us in\nthat effort.”  “We must do all we can to eliminate the\nthreat that hazardous chemicals pose to our communities,” said Senator\nLautenberg. “This funding will help ensure the land and groundwater\naround compromised storage tanks is cleaned to a higher standard so\nthat New Jersey families can live without the fear of dangerous\nchemicals in their communities.” The EPA Regional Underground\nStorage Tank Programs is beginning cooperative agreements with the New\nJersey Department of Environmental Protection this month, which\nincludes providing a detailed description of the state’s spending\nplans. The necessity of starting cooperative agreements as quickly as\npossible is due in part to the potential hazards that leaking\nunderground storage tanks cause. When petroleum and other hazardous\nsubstances seep into the soil and contaminate the groundwater, it then\njeopardizes the source of drinking water for one-third of all\nAmericans.  The federal funding will include overseeing\nassessment and cleanup of leaks, as well as directly paying for\nassessment and cleanup of leaks from federally regulated tanks where\nthe responsible party is either unknown, unwilling, or financially\nunable to do so themselves, or as an emergency response.                                                                                                                                  \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f7e33f96-9b97-4c9c-a728-3cc9e557e1e4,\"MENENDEZ, CORKER HELP ENSURE THAT U.S. MILITARY ASSISTANCE TO PAKISTAN WILL BE USED TO FIGHT EXTREMISTS \n                    \n                            Senators successfully attach amendment to Defense authorization bill\n                    \n                      July 24, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:10.0pt;\n\tfont-family:\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - U.S. Senators\nRobert Menendez (D-NJ) and Bob Corker (R-TN) successfully attached an amendment\nto the Department of Defense authorization bill that passed the Senate late\nlast night in order to help ensure that military assistance for Pakistan is\nactually being used for its purpose: to fight the Taliban and al Qaeda. The\nMenendez-Corker legislative language would mandate a certification by the U.S.\nSecretary of State and Secretary of Defense, before Pakistan is reimbursed with\nCoalition Support Funds, that the payment is both in the national security\ninterests of the U.S., and will not affect the balance of power in the region.\n\"\"To this point,\nalmost eight years and more than seven billion in American taxpayer dollars for\nPakistan's military have not prevented the Taliban and al Qaeda from regrouping\nalong the Pakistan-Afghanistan border,\"\" said Menendez. \"\"The fight against these\nextremists is crucial for our own security, which is why we have to certify\nthat our support is in fact doing what we intend it to do and is not being used\nfor other purposes. This is an issue of national security and of responsibility\nwith taxpayer dollars, and it is important that passed the Senate.\"\"\n\"\"We appreciate the\nimportant role Pakistan has played in our fight to eliminate the terrorist safe\nhavens within their borders, but we also owe it to our service members and the\nAmerican taxpayer to ensure that the funds provided to Pakistan out of the\nCoalition Support Funds are in fact being directed toward those efforts and not\nmisdirected,\"\" said Corker.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c0010651-07a9-4a70-8d6a-c07e10cd2f66,\"MENENDEZ, SANDERS HAIL FIRST ALLOCATION OF ENERGY EFFICIENCY FUNDING FOR CITIES, TOWNS AND COUNTIES \n                    \n                            Senators created program in 2007 Energy Bill\n                    \n                      July 24, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:10.0pt;\n\tfont-family:\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - The Department of\nEnergy today announced the first allocation of funding to cities, towns and\ncounties for energy efficiency programs as part of the Energy Efficiency and\nConservation Block Grant program. U.S. Senators Robert Menendez (D-NJ) and\nBernie Sanders (I-VT) created the program with a legislative provision as part\nof energy legislation in 2007. The $4 million distributed today is part of the\n$3.2 billion that will come through the program from the economic recovery\npackage. This funding supports municipal energy-saving initiatives and improves\nenergy efficiency in transportation, buildings, and other sectors.\n\"\"Improving energy\nefficiency helps create jobs, reduce energy costs and clean the air we\nbreathe,\"\" said Menendez. \"\"It is an important part of our economic recovery and of the\nfoundation for 21st Century economic security. When local governments\nare able to save money on energy, it provides relief for their strained\nbudgets, helping them retain employees and continue services for the public. I\nam proud to have worked to create this program and thrilled to see the funding\nbeginning to arrive.\"\"\n\"\"Helping states, cities and towns go forward\nwith energy efficiency and sustainable energy projects will reduce carbon\ndioxide emissions, lower energy costs and create good-paying jobs,\"\" Sanders said. \"\"This\nfunding provides federal recognition of grassroots efforts and supports their\npursuit of innovative solutions that move us towards a revolution in the way we\nuse energy. I truly believe that there is infinite potential in the program.\"\"\nThe following\ncities and counties are receiving awards today:\n\nApplicant\n\n\nState\n\n\nApplicant Type\n\n\nAward\n\n\nTotal Allocation\n\n\nLos Angeles\n\n\nCA\n\n\nCity\n\n\n$250,000\n\n\n$37,017,900\n\n\nSan Diego\n\n\nCA\n\n\nCity\n\n\n$250,000\n\n\n$12,541,700\n\n\nFort Lauderdale\n\n\nFL\n\n\nCity\n\n\n$100,000\n\n\n$2,036,400\n\n\nJacksonville\n\n\nFL\n\n\nCity\n\n\n$250,000\n\n\n$7,891,500\n\n\nLake\n\n\nFL\n\n\nCounty\n\n\n$200,000\n\n\n$2,807,500\n\n\nSeminole\n\n\nFL\n\n\nCounty\n\n\n$250,000\n\n\n$2,925,100\n\n\nSt. Clair\n\n\nIL\n\n\nCounty\n\n\n$80,000\n\n\n$2,040,800\n\n\nWill\n\n\nIL\n\n\nCounty\n\n\n$250,000\n\n\n$3,009,700\n\n\nSt. Louis\n\n\nMO\n\n\nCity\n\n\n$250,000\n\n\n$3,717,500\n\n\nSt. Louis\n\n\nMO\n\n\nCounty\n\n\n$225,000\n\n\n$8,488,900\n\n\nOmaha\n\n\nNE\n\n\nCity\n\n\n$250,000\n\n\n$4,331,500\n\n\nMorris\n\n\nNJ\n\n\nCounty\n\n\n$250,000\n\n\n$4,228,300\n\n\nMonroe\n\n\nNY\n\n\nCounty\n\n\n$250,000\n\n\n$2,063,200\n\n\nOnondaga\n\n\nNY\n\n\nCounty\n\n\n$250,000\n\n\n$2,459,000\n\n\nRochester\n\n\nNY\n\n\nCity\n\n\n$250,000\n\n\n$2,199,800\n\n\nTown of Hempstead\n\n\nNY\n\n\nCity\n\n\n$250,000\n\n\n$4,577,700\n\n\nTulsa\n\n\nOK\n\n\nCity\n\n\n$250,000\n\n\n$3,883,500\n\n\nCumberland\n\n\nPA\n\n\nCounty\n\n\n$100,000\n\n\n$2,207,300\n\n\nPrince William\n\n\nVA\n\n\nCounty\n\n\n$150,000\n\n\n$3,226,400\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=65f35866-e8d3-4c29-8c85-842ec94af01f,\"TO ENSURE HOUSING FOR THE LOW-INCOME DISABLED, MENENDEZ AND JOHANNS INTRODUCE NEW LEGISLATION\n                    \n                            TO ENSURE HOUSING FOR THE LOW-INCOME DISABLED, MENENDEZ AND JOHANNS INTRODUCE NEW LEGISLATION\n                    \n                      July 23, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:10.0pt;\n\tfont-family:\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - U.S.\nSenators Robert Menendez (D-NJ) and Mike Johanns (R-NE) - both members of the\nSenate Banking, Housing and Urban Affairs Committee - today introduced\nlegislation aimed at ensuring that low-income disabled Americans have access to\naffordable housing options. The Frank Melville Supportive Housing Investment\nAct would bolster the U.S. Department of Housing and Urban Development's\nprogram that increases the availability of affordable housing for persons with\ndisabilities and helps provide them with rental assistance.\n\"\"It is\noften hard for those who are disabled to find affordable housing that allows\nthem to live independently, and that is particularly true during these tough\ntimes,\"\" said Menendez, who is Chairman of the Banking Subcommittee on Housing,\nTransportation and Community Development. \"\"We are working to help ensure that\ndisabled members of our communities can keep a roof over their heads and can\nget some relief for their personal finances. We can do this by helping to\nincrease the availability and reduce the cost of their housing, and we look\nforward to working with our colleagues to get this done.\"\"\n\"\"I take\nvery seriously our responsibility to ensure people with disabilities have the\nopportunity to contribute to our communities and this legislation is an\nimportant step,\"\" Johanns said. \"\"In a time when many are facing difficult\nstruggles, it is our duty to see that no one is overlooked.  This\nlegislation helps people with disabilities to find affordable paces to live,\nwhich is often key to their independence.\"\"\nThe\nlegislation would improve and expand HUD's Section 811 program by:\n Increasing the number of available housing vouchers for people\nwith disabilities and ensuring that vouchers continue to be used to help people\nwith disabilities.\n Encouraging the integration of mixed-used developments into the\nprogram and allowing funds from Low Income Housing Tax Credits and the HOME\nprogram to be used.\n Extending the length of rental assistance contract terms from 20\nyears to 30 years for projects using Low Income Housing Tax Credits.\nThe bill\nhas been endorsed by:\nConsortium\nfor Citizens with Disabilities (CCD), American Association on Intellectual and\nDevelopmental Disabilities, American Network of Community Options and\nResources, Association of University Centers on Disabilities, Autism Society of\nAmerica, Bazelon Center for Mental Health Law, Burton Blatt Institute, Easter\nSeals, Lutheran Services in America, Mental Health America, National Alliance\non Mental Illness, National Association of Councils on Developmental\nDisabilities, National Association of County Behavioral Health and\nDevelopmental Disability Directors, National Council for Community Behavioral\nHealthcare, National Disability Rights Network, National Multiple Sclerosis\nSociety, National Spinal Cord Injury Association, The Arc of the United States,\nUnited Cerebral Palsy, United Jewish Communities, and United Spinal\nAssociation.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b67f655e-a2ab-4d47-b687-e2a29733dfc2,\"MENENDEZ HAILS SENATE DEFEAT OF HIDDEN GUNS AMENDMENT\n                    \n                            Video of Menendez speaking in Senate before the vote: http://www.youtube.com/watch?v=CU4hDRXe9V0 \n                    \n                      July 22, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:10.0pt;\n\tfont-family:\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - This afternoon, an\namendment in the U.S. Senate that would have allowed a state's concealed\nweapons laws to trump stronger gun safety laws in other states was defeated\nwhen it fell short of the 60 votes needed to pass. U.S. Senator Robert Menendez\n(D-NJ) was a leading opponent of the Thune amendment to the Department of\nDefense authorization bill, and he released the following statement upon the\namendment's defeat:\n\"\"We should dedicate\nthis victory for gun safety to Jersey City police officer Marc DiNardo, who\npassed away yesterday from gunshots fired by a heavily-armed suspect. Our brave\nlaw enforcement officers already have enough danger to deal with as they keep\nour families safe. Had this amendment passed, those officers would have another\nconcern on their minds -- every time they stopped a car, they would have to\nworry even more about whether the person in the driver's seat is armed with a\nhidden weapon.\n \n\"\"This is one of those\ntimes when the defeat of legislation is actually a victory. For families who\ndon't want to have to worry about who might be hiding a gun every time they\ntake their kids to school, go to the supermarket or go to work, this is a big\nvictory in the name of safety.\"\"\n \n\"\"In a country where\nthe second leading cause of death for our youth is gun violence, this amendment\nwould have been doubly dangerous. It would have benefitted criminals, not their\nvictims, by making it easier for people hiding a gun to stroll into a school, a\nplayground or a crowded stadium. And it would have trampled the rights of the\npeople in our state to make our own safety laws, which are based on a different\nand unique experience from states where gun laws are lax. We don't expect this\nto be the last attempt to weaken gun safety laws where they are strong, but each\nand every time, we will stand up for the safety of our families.\"\"\nVideo of Menendez\nspeaking against the Thune amendment prior to vote: http://www.youtube.com/watch?v=CU4hDRXe9V0\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fa88e046-4be5-40ad-9a4d-6aede51360e1,\"LAUTENBERG AND MENENDEZ ANNOUNCE MORE THAN $7.5 MILLION IN FEDERAL FUNDING TO IMPROVE NEW JERSEY AIRPORTS \n                    \n                            Funding Will Help Improve Runway Safety and Protect Travelers at Airport\n                    \n                      July 22, 2009\n                     WASHINGTON, DC – Senators Frank R. Lautenberg (D-NJ) and Robert\nMenendez (D-NJ) today announced that the U.S. Department of\nTransportation has awarded more than $7.5 million in new federal\nfunding for four airports in New Jersey. The funding will help improve\nairport infrastructure and protect traveler safety.  “Investing in capital improvements at New Jersey’s busiest airport and\nhubs across the state will reduce delays and make air travel safer and\nmore reliable.  The thousands of travelers who pass through Newark\nLiberty International Airport every day stand to benefit tremendously\nfrom this federal investment.  In addition, it will help enhance air\ntravel options from a number of airports in less accessible regions of\nthe state,” stated Sen. Lautenberg, a member Transportation\nSubcommittee on Aviation Operations, Safety and Security\nSubcommittee.        Senator Menendez said: “Safe and\nefficient air travel helps protect our families and our economy. This\ntype of investment will work to modernize our airports in order to keep\naircraft moving and will help create jobs to complete these projects.\nThis is part of the process of ensuring that New Jersey's air travel\nsystem is as modern and efficient as possible.” The $7,584,097 will be allocated as follows: •    $5,428,392 to Newark Liberty International Airport to rehabilitate runways.  •    $1,729,200 to the Trenton-Mercer Airport in Trenton to improve runway safety.  •    $408,505 to the Morristown Municipal Airport in Morristown to remove obstructions near a runway.  •    $18,000 to the Woodbine Municipal Airport in Woodbine to install a\nperimeter fence to aid and stop wildlife from entering the airport.  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0f7428d3-d818-488f-a300-ff33f4a5e72d,\"VIDEO AND TEXT: MENENDEZ INTRODUCES CORZINE AT SENATE HEARING, TOUTS NJ’S LEADERSHIP ON CLEAN ENERGY\n                    \n                            Video here: http://www.youtube.com/watch?v=YJMNJnsSU_0\n                    \n                      July 21, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:10.0pt;\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - This morning, U.\nS. Senator Robert Menendez (D-NJ) introduced New Jersey Governor Jon Corzine\nbefore his testimony at a U.S. Senate Environment and Public Works Committee\nhearing on clean energy and jobs. Menendez's introduction highlighted New\nJersey's national leadership in clean energy development and related job\ngrowth.\nMenendez said that\nprograms Gov. Corzine has initiated \"\"will not only create jobs, but reduce\ngreenhouse gas emissions, and improve the quality of life for millions of New\nJersey's citizens. He is leading my home state out of this deep recession by\ncreating jobs, saving energy, and building the foundations of a green energy\neconomy that will serve New Jersey for decades to come.  And so I can't\nthink of anyone better to be before the committee to help you as you deal with\nthis issue.\"\"\nVideo available here:\nhttp://www.youtube.com/watch?v=YJMNJnsSU_0\nText of introduction,\nas prepared for delivery:\nM. Chairman,\nRanking Member Inhofe and Members of the Committee... It is my sincere honor\ntoday to help introduce Governor Jon Corzine at this hearing on clean energy\njobs and economic growth.\nAs Governor\nCorzine himself has said \"\"a healthy economy and a healthy environment are\ninextricably linked.\"\"  By leveraging existing industries and creating new\nones, New Jersey is paving the way for a clean economy and a healthy economy.\nThe Governor's\npast experience in finance and as a United States Senator has allowed him to\nappreciate how important it was to embrace the Recovery Act and use its\nresources as quickly and effectively as possible. \nThe Council of\nEconomic Advisers has estimated that New Jersey's use of funds from the\nRecovery Act has created or saved 100,000 jobs over the next 2 years. Many of\nthese jobs are in the clean energy and environmental protection sectors.\nFor example, New\nJersey is distributing $20 million in competitive grants for innovative energy efficiency\nand renewable energy projects at state facilities, including public colleges\nand universities. The Governor also recently announced that the state will use\nRecovery Act funds for a much needed wetlands restoration project that in turn\nwill create 100 new construction related jobs.\n               \nThe Governor is also working with businesses to close the skills gaps in the\nemerging green economy. The New Jersey Green Job Training Partnership Program\nbuilds on existing partnerships between industry and educational institutions,\nand offers apprenticeship opportunities for a 21st century energy\nindustry.  Over the past three years, nearly two thousand New Jersey\nworkers have been trained in the clean energy sector.\nI could go on\nand on about Governor Corzine's statewide energy efficiency program, his Clean\nEnergy Manufacturing Fund, his groundbreaking Energy Master Plan, or his\ncontinued efforts to finance mass transit and smart growth policies.\nAll of these\nimpressive programs will not only create jobs, but reduce greenhouse gas\nemissions, and improve the quality of life for millions of New Jersey's\ncitizens.\nHe is leading my\nhome state out of this deep recession by creating jobs, saving energy, and\nbuilding the foundations of a green energy economy that will serve New Jersey\nfor decades to come. \nAnd so I can't\nthink of anyone better to be before the committee to help you as you deal with\nthis issue. Thank you.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=68784096-5e4b-47b3-953d-4b9d2b261036,\"SENATE HOUSING SUBCOMMITTEE CHAIR URGES TREASURY TO BETTER ENFORCE HOME LOAN MODIFICATION PROGRAM\n                    \n                            Senator Menendez writes Geithner on concerns stemming from hearing last week\n                    \n                      July 21, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:10.0pt;\n\tfont-family:\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - U.S. Senator\nRobert Menendez (D-NJ) today urged Treasury Secretary Timothy Geithner to more\neffectively bring mortgage servicers and lenders in line with the\nadministration's loan modification program meant to prevent millions of home\nforeclosures. In his letter to Geithner, Menendez listed a number of concerns\nthat were raised during a hearing on the loan modification program, which he\nhelped chair last week. Menendez is the Chairman of the Banking Subcommittee on\nHousing, Transportation and Community Development.\n\"\"The foreclosure\ncrisis has not only devastated millions of families, but it is the root of our\nglobal financial crisis that eliminated millions of jobs and forced millions\nmore families to struggle,\"\" wrote Menendez. \"\"If we can help keep responsible\nfamilies in their homes, we can help solidify our economy.  Successfully\nimplementing the administration's loan modification program should be at the\ntop of our list of housing priorities.\"\"\nPDF of letter to Geithner:\nhttp://menendez.senate.gov/pdf/07212009CreditCardGeithner.pdf\nText of letter:\nJuly 21, 2009\n \nThe Honorable\nTimothy F. Geithner\nSecretary of the Treasury\nU.S. Department of the Treasury\n1500 Pennsylvania Avenue, NW\nWashington, D.C. 20220\nDear Secretary Geithner:\nI write to you regarding a number\nof disturbing foreclosure modification problems that were raised by witnesses\nat last week's Senate Banking Committee hearing on the issue.  As you\nknow, Assistant Secretary for Financial Stability Herbert Allison, Jr.\ntestified at that hearing.\nThe foreclosure crisis has not\nonly devastated millions of families, but it is the root of our global financial\ncrisis that eliminated millions of jobs and forced millions more families to\nstruggle. If we can help keep responsible families in their homes, we can help\nsolidify our economy.  Successfully implementing the administration's loan\nmodification program should be at the top of our list of housing\npriorities. \nI know that the Treasury\nDepartment and the Department of Housing and Urban Development have increased\nefforts to improve the rate of sustainable loan modifications, but much more\nneeds to be done.  In particular, servicers and lenders need to be held\naccountable for their compliance with the agreements they have signed and with\nHome Affordable Modification Program (\"\"HAMP\"\") guidelines.  I am asking the\nTreasury Department to ensure that there are serious consequences for servicers\nnot complying with their agreements.  \nThe witnesses at the hearing\nraised several very important concerns that I would like you to address:\nServicers receive money\n     for loan modifications that don't comply with HAMP guidelines\nServicers steer\n     homeowners into non-HAMP modifications that might be more lucrative for\n     servicers but not as good for homeowners\nServicers require that\n     homeowners waive all legal claims or all rights to HAMP review in order to\n     apply for a loan modification\nServicers require\n     additional down payments to be considered for HAMP modifications\nServicers advise\n     homeowners that they need to be delinquent on their mortgages to qualify\n     for HAMP or other government loan modification programs\nServicers are sometimes\n     putting loan modifications \"\"on hold\"\" until they have loan modification\n     systems in place \nForeclosures proceed\n     even for homeowners who have applied for loan modifications\nLack of transparency,\n     particularly with respect to the Net Present Value test not being made\n     public.  Without such information, borrowers don't know if servicers\n     are either lying or mistaken about whether their application for loan\n     modification meets HAMP guidelines\nLack of a good appeals\n     process for homeowners whose loan modification applications may not have\n     been calculated correctly \nI look\nforward to your prompt response indicating how the Treasury Department is\naddressing each of these problems and what penalties have been levied on\nservicers for failing to comply with HAMP guidelines.  I also look forward\nto working together to achieve our mutual goal of restoring stability to our\nnation's housing market, and thus our economy, while also ensuring adequate\nprotections for consumers.  \nSincerely,\n                                                                               \nROBERT MENENDEZ\n                                                                               \nUnited States Senator\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6beb2df3-a1cb-4257-922e-00864efada52,\"U.S. SENATOR ROBERT MENENDEZ INTRODUCES RESOLUTION HONORING HOCKEY IN NEWARK AND THE EAST SIDE HIGH SCHOOL HOCKEY TEAM\n                    \n                            Senator Menendez lauds the New Jersey Devils for their support for the non-profit organization and local team\n                    \n                      July 21, 2009\n                     WASHINGTON – Today, U.S. Senator Robert Menendez introduced a\nresolution in the Senate to honor Hockey in Newark and the New Jersey\nDevils for their important work in providing a solid foundation for\ndozens of Newark students through youth hockey programs.  The\nNewark-based National Hockey League team has helped give dozens of\nyoung Newark residents an opportunity to play hockey at the Prudential\nCenter, allowing students, like the members of the Newark East Side\nHockey Team, to trade downtime for sports and stay out of situations\nthat could put their future in jeopardy.\n“Inner-city students\ntoo often face challenges in their afterschool hours, which put their\nacademic performance and development at risk. Sports can be a valuable\nafterschool activity that keeps students focused on realizing their\npotential in and outside of the classroom,” said Senator Menendez.\n“Before the New Jersey Devils made Newark their home, hockey was not\nseen as an option for Newark students.  Today, thanks to Devils, the\nNHL and their support for Hockey in Newark, there are dozens of young\nstudents who have not only become devoted to the sport, but also stay\nout of trouble so they can fulfill their potential.”           \nThe\nEast Side Hockey Team, which barely existed with 5 players in 2003, has\ngrown to have over 100 players with the help and support of its coaches\nKeith Veltre and Dennis Ruppe and the sponsorship of the New Jersey\nDevils and the East Side High School Hockey team.  \nHockey in\nNewark is a non-profit organization created from the need to support\nyoung Newark hockey players, offers education-based programs,\nhighlights academic achievement and promotes teamwork.\nResolution Honoring Hockey in Newark and East Side High School Hockey Team\n-Whereas\nadolescents that do not have a structured environment after school are\nat higher risk of delinquency, poor academic performance, and illicit\nbehavior; -Whereas this issue is especially prevalent within inner cities; -Whereas athletic organizations provide a safe after school environment\nwhere adolescents learn about commitment, dedication, and teamwork; -Whereas East Side High School in Newark, New Jersey began calling Prudential Center its home ice in 2007; -Whereas the players of East Side High School have shown resilience\n--Whereas the New Jersey Devils have offered assistance to the East\nSide High School hockey team including access to their practice rink; -Whereas the nonprofit organization, Hockey in Newark, has joined with\nthe New Jersey Devils and the National Hockey League to collect and\ndistribute $85,000 worth of donated hockey equipment and uniforms to\nlow-income children in Newark, New Jersey and include over 100 young\nplayers who live in Newark; -Therefore, let it be resolved that the\nUnited States Senate commends the New Jersey Devils for immersing\nitself in the local community and helping low-income, at-risk children\nhave the opportunity to play hockey; -Let it further be resolved\nthat the United States Senate commends the East Side High School hockey\nplayers, coaches, and entire organization for their dedication and\nwishes them many successful seasons ahead.\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0a0dbb47-f176-4303-b3dc-ad3e9ea7e1bb,\"U.S. SENATORS MENENDEZ, LAUTENBERG ANNOUNCE $700,000 TO SUPPORT RUTGERS STUDENTS CONTINUING ADVANCED EDUCATION \n                    \n                            The Graduate Assistance in Areas of National Need Program provides fellowships to assist students in financial need who wish to attain advanced degree \n                    \n                      July 21, 2009\n                     Federal funding to help 19 graduate students achieve their academic goals\nWASHINGTON\n- U. S. Senators Robert Menendez and Frank Lautenberg announced today\nannounced $696,832 in federal funding for the Graduate Assistance in\nAreas of National Need or GAANN Program at Rutgers, The State\nUniversity of New Jersey.  This will help 19 graduate students in\nfinancial need over three years continue their education in pursuit of\nadvanced degrees. The grants are being awarded in the areas of Physics\nand Astronomy, Chemistry and Chemical Biology, Computational Biology\nand Molecular Biophysics, and Pharmaceutical Engineering. \n“This\nis the kind of assistance that supports outstanding students who have\nlimitless potential but might not be able to afford continuing their\neducation,” said Senator Menendez.  “These federal funds not only\nbenefit worthy students, but they benefit our state’s economy. New\nJersey has always been at the forefront of innovation, and the more\nwell-educated professionals we produce, the more innovation and job\ncreation we produce.”   \n“The GAANN program provides some of\nthe best and the brightest students in New Jersey with the opportunity\nto continue their education and pursue their dreams of graduate\nschool,” Sen. Lautenberg said.  “The skills, training and education\nprovided by these funds will benefit our most hard-pressed students and\nstrengthen New Jersey’s workforce and communities for years to come.” GAANN Grants will be awarded to the following departments:\n• Department\nof Physics and Astronomy – $174,208 for the period 08/15/2009 through\n08/14/ 2010. This federal funding will provide for graduate fellowships\nto four graduate students over three years. These fellowships will be\nmatched by one fellowship from the Graduate School New Brunswick.\n• Rutgers\nDepartment of Chemistry and Chemical Biology - $174,208. This proposed\nproject will provide federal fellowship support for five students\nenrolled in the Doctoral Program in Chemistry and Chemical Biology.\nRutgers will provide a 25% matching contribution allowing for an\nadditional fellowship.  • BioMaps Institute for Quantitative\nBiology and Graduate Program in Computational Biology and Molecular\nBiophysics - Computational Biology and Molecular Biophysics - $174,208\nfor the period 08/15/2009 through 08/14/2010. This grant will provide\nsix graduate students the opportunity to pursue doctoral work in\nComputational Biology and Molecular Physics.  The field of quantitative\nbiology in an area of urgent national need arising out of the extensive\nand detailed biological information obtained through the use of the use\nof molecular and structural biology, especially the successes of genome\nsequencing and the field of proteomics, or the large-scale study of\nproteins.   Particular effort will be devoted to recruiting and\nmentoring women and underrepresented minorities.  • Department of Chemical and Biochemical Engineering in the School of\nEngineering - Pharmaceutical Engineering - $174.208 for the period\n08/15/2009 through 08/14/2010. This federal funding provides\nfellowships to four graduate students at the doctoral level that are\nenrolled full time to pursue a PH.D. In chemical engineering.  New\nJersey has the largest number of multinational pharmaceutical\nmanufacturers in the nation.  The proposed program will enhance the\ncapacity for research in New Jersey and the nation by providing the\nU.S. pharmaceutical industries with skilled researchers needed for\npharmaceutical product and process development and design.\n                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=50c42f2d-9109-4b74-8309-3378bee2e50c,\"Senators, NJ Governor Denounce Dangerous Amendment That Would Put Communities At Risk For More Gun Violence\n                    \n                            Amendment Would Allow Criminals To Carry Concealed Weapons Across State Lines \n                    \n                      July 21, 2009\n                     WASHINGTON – Trying to prevent an increase of gun violence in America’s communities, Senators Frank R. Lautenberg (D-NJ), Robert Menendez (D-NJ), Charles E. Schumer (D-NY), Dianne Feinstein (D-CA), Jack Reed (D-RI), Sheldon Whitehouse (D-RI) and Governor Jon Corzine (D-NJ) today denounced a proposed amendment by Republican Senator John Thune (R-ND) that would allow people, including some criminals and mentally ill individuals, to carry concealed weapons across state lines – even if the state prohibits that person from carrying a gun.  The Thune amendment has the potential to increase gun violence in communities, put more police officers at risk and nullify state gun laws. \n\n“Trumping state laws to allow concealed weapons to be carried by almost anybody in any state is an egregious threat to communities across the country.  This amendment is another attempt by the gun lobby to put its radical agenda ahead of safety and security in our communities.  We are going to fight to make sure New Jersey and other states have the right to protect their residents with common-sense laws and regulations,” stated Sen. Lautenberg, one of the Senate’s leading advocates in preventing gun violence.   \n\n\n“Too many times, for too long we have seen blood in our streets from senseless, pointless, lethal gun violence. Our charge is to end that violence, not add to it. There are too many guns on the street as it is, but there are also too many people too willing to use them. Let’s not make it easier for those who feel the need to conceal a weapon to carry it across state lines and into your neighborhood or my neighborhood,” stated Sen. Menendez. “To gut the ability of individual states to determine who should be able to carry a concealed weapon makes no sense. It could reverse the dramatic success we’ve had in reducing crime in most all parts of America. Whether you are pro-gun or pro-gun control, this measure deserves to be defeated. We will do everything we can to stop this poisonous amendment from being enacted,” Schumer said.\n\n\n“This amendment would obliterate all tough state standards that govern the right to carry a concealed weapon, and it would allow dangerous individuals to tote loaded weapons across state lines.  It would even allow a person who has been denied a concealed weapons permit in their own state to go to another state, get a permit, and return to their state of origin with the right to carry concealed weapons. Public safety will be jeopardized if  we allow the proliferation of loaded, concealed guns on our streets,” stated Sen. Dianne Feinstein. \n\n\n“The Defense Authorization bill is about making our country safer and more secure.  The Thune amendment has the potential to do just the opposite: increase gun violence and make it easier for criminals to carry concealed weapons.  Police chiefs and sheriffs across the country oppose Senator Thune’s amendment because it would undermine public safety and open up new loopholes for criminals to exploit,” said Reed, a former Army Ranger.\n\n\n“As a former Attorney General for Rhode Island, I’m deeply concerned that this amendment would undercut common-sense standards enacted in many states, and would create a danger to the public as well as substantial difficulties for local law enforcement officials,” said Sen. Sheldon Whitehouse.\n“Throughout New Jersey as in other states across our nation, we have been fighting a war against violent crime.  More guns on our streets, especially in the hands of potential criminals, do not make us safer. We must remain vigilant in our efforts to reduce violence. This proposed federal law would effectively nullify years of hard work aimed at curbing firearm possession by individuals who pose a threat to our society,” said Governor Jon S. Corzine.\n\nSenator Thune’s amendment would allow anyone who has a permit to carry concealed firearms in any one state to bring those concealed firearms into 47 other states, even if that person cannot legally possess a gun in the state they are entering.  The Thune amendment would not affect Wisconsin or Illinois because those states do not allow concealed carry under any circumstances.  Currently, each state has the ability to make its own decisions about what standards and rules should apply to concealed firearms:\n• 12 states give law enforcement agencies discretion about whether to issue a permit to a particular applicant who may be dangerous.\n• 18 states prohibit alcohol abusers from obtaining a concealed carry permit;\n• 19 states require the completion of a gun safety program prior to issuing a permit; and\n• 24 states prohibit persons convicted of certain misdemeanor crimes from carrying concealed firearms, including Pennsylvania, which bars carrying by those who have been convicted of impersonating a law enforcement officer.\nThe Thune amendment would nullify those standards and take away the rights of states to set their own standards for obtaining permits to carry concealed weapons. \nConsequently, the Thune amendment would have a dramatic effect on the nation’s safety.  It would allow people to find the state with the lowest standards for gun purchases, get a license to carry concealed weapons there and then travel the country with loaded hidden guns.  It would help gun traffickers transport weapons across state lines.  It would also hamper law enforcement in many states by exposing police to a new population of concealed carry permit holders, despite the fact that local law enforcement know nothing about these individuals, had no role in issuing their permits and have no mechanism to verify their permits. \nFrom May 2007 to April 2009, individuals licensed to carry concealed handguns have committed 51 homicides, including the killings of 7 police officers.\n                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=792b9e2d-2a36-4457-a7ba-9ee781f0a305,\"MENENDEZ HELPS INTRODUCE MAJOR TRANSPORTATION FUNDING LEGISLATION\n                    \n                            Funding fix would ensure safer roads, job security, restore disaster aid and interest accrual\n                    \n                      July 20, 2009\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n\n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-tstyle-rowband-size:0;\n\tmso-tstyle-colband-size:0;\n\tmso-style-noshow:yes;\n\tmso-style-priority:99;\n\tmso-style-qformat:yes;\n\tmso-style-parent:\"\"\"\";\n\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\n\tmso-para-margin:0in;\n\tmso-para-margin-bottom:.0001pt;\n\tmso-pagination:widow-orphan;\n\tfont-size:10.0pt;\n\tfont-family:\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWashington, DC - Senate Finance\nCommittee Chairman Max Baucus (D-Mont.) today proposed legislation to replenish\nthe nation's Highway Trust Fund in order to finance urgent maintenance of\nAmerica's rails, roads and bridges, and to save or create millions of\ngood-paying infrastructure jobs.  The Baucus bill entitled, \"\"The\nTransportation Preservation and Improvement Act,\"\" would restore the Fund's\nability to earn interest on its balance - a benefit eliminated in 1998 as part\nof the Surface Transportation Revenue Act - and would reimburse the Fund by\n$19.5 billion for interest earnings lost since that time.  Of the $19.5\nbillion, $14.7 billion would accrue to the Highway Account, while $4.8 billion\nwould be directed to the Mass Transit Account.  The Highway Account would\nalso be replenished by an additional $7.3 billion paid out between 1989 and\n2004 for emergency spending.  Original cosponsors of the bill include\nSenators Jay Rockefeller (D-WV) and Robert Menendez (D-NJ).  \n\"\"We are faced with the difficult question of how to beat\nthe clock and restore the solvency of the Highway Trust Fund to avoid stalled\ninfrastructure projects, job losses and an unsafe highway system.  This\nproposal represents a clear way to address the projected shortfalls we face,\"\" said\nBaucus.  \"\"I will work with my colleagues to move this bill forward in\nthe coming days and weeks, to improve our transportation system and to help\nensure the job security of millions of American workers.\"\"\n\"\"A strong and robust Highway Trust Fund is absolutely\nnecessary if we want West Virginians - and all Americans - to drive on safe\nroads and bridges,\"\" Rockefeller said. \"\"Just as crucial, building roads\nand bridges in our state puts millions of people and our construction companies\nto work and that is extremely important.\"\"\nSenator Menendez said, \"\"This legislation ensures that\ntransportation investments can continue to help keep our economy moving with\njob creation in the short term and will serve as a down payment on a more\nefficient transportation system into the future. This robust investment in mass\ntransit amounts to an investment in the foundation for 21st Century\neconomic security. It is not only a sector that creates jobs, but it helps\nlower energy costs, cleans the air we breathe and saves commuters time and\nmoney. It is tremendously important to ensure that when we replenish the\ntransportation trust funds, transit gets its historical share, and this\nlegislation accomplishes that. This positions us to make significant\ninvestments in transit projects in the forthcoming transportation\nreauthorization bill. I appreciate working with Chairman Baucus on this\nlegislation, and I thank him for his leadership and for recognizing the\neconomic benefits of structuring the legislation in this manner. I also want to\nhail the work that Banking Committee Chairman Dodd and Senator Schumer have\ndone to support transit funding.\"\"\nThe Department of Transportation (DOT) estimates the Fund\nwill be insolvent by late August 2009 without legislative action.  The\nHighway Trust Fund is one of several federal transportation trust funds,\nincluding the Airport and Airways Trust Fund and the Harbor Maintenance Trust\nFund.  These trust funds were structured to earn interest on their balance\nas a way to help ensure solvency.  The Highway Trust Fund has been the\nexception since 1998. \nSenator Baucus has successfully fought to replenish the\nHighway Trust Fund in recent years, as fund receipts have declined and the\nbalance has fallen to dangerously low levels.  In September 2007, he\nproposed a $5 billion highway fix as part of the Finance-passed FAA bill, which\nwas blocked in late April 2008.  On June 26 of last year, in light of news\nthat the Trust Fund deficit was worsening, Senator Baucus was joined by Senator\nReid in an effort to move an $8 billion Highway Trust Fund fix.  In\nSeptember 2008, Senator Baucus was successful in advancing the $8 billion\nHighway Trust Fund fix that became Public Law 110-318.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=645e9ada-4fcb-48a9-83a0-dd49fa462f55,\"BAUCUS OFFERS FIX FOR HIGHWAY TRUST FUND \n                    \n                            Finance Chair's funding fix would ensure safer roads, job security, restore disaster aid and interest accrual \n                    \n                      July 20, 2009\n                     Washington, DC – Senate Finance Committee Chairman Max Baucus (D-Mont.)\ntoday proposed legislation to replenish the nation’s Highway Trust Fund\nin order to finance urgent maintenance of America’s rails, roads and\nbridges, and to save or create millions of good-paying infrastructure\njobs.  The Baucus bill entitled, “The Transportation Preservation and\nImprovement Act,” would restore the Fund’s ability to earn interest on\nits balance – a benefit eliminated in 1998 as part of the Surface\nTransportation Revenue Act – and would reimburse the Fund by $19.5\nbillion for interest earnings lost since that time.  Of the $19.5\nbillion, $14.7 billion would accrue to the Highway Account, while $4.8\nbillion would be directed to the Mass Transit Account.  The Highway\nAccount would also be replenished by an additional $7.3 billion paid\nout between 1989 and 2004 for emergency spending.  Original cosponsors\nof the bill include Senators Jay Rockefeller (D-WV) and Robert Menendez\n(D-NJ).   “We are faced with the difficult question of how to\nbeat the clock and restore the solvency of the Highway Trust Fund to\navoid stalled infrastructure projects, job losses and an unsafe highway\nsystem.  This proposal represents a clear way to address the projected\nshortfalls we face,” said Baucus.  “I will work with my colleagues to\nmove this bill forward in the coming days and weeks, to improve our\ntransportation system and to help ensure the job security of millions\nof American workers.” “A strong and robust Highway Trust Fund\nis absolutely necessary if we want West Virginians – and all Americans\n– to drive on safe roads and bridges,” Rockefeller said. “Just as\ncrucial, building roads and bridges in our state puts millions of\npeople and our construction companies to work and that is extremely\nimportant.” Senator Menendez said, “This legislation ensures\nthat transportation investments can continue to help keep our economy\nmoving with job creation in the short term and will serve as a down\npayment on a more efficient transportation system into the future. This\nrobust investment in mass transit amounts to an investment in the\nfoundation for 21st Century economic security. It is not only a sector\nthat creates jobs, but it helps lower energy costs, cleans the air we\nbreathe and saves commuters time and money. It is tremendously\nimportant to ensure that when we replenish the transportation trust\nfunds, transit gets its historical share, and this legislation\naccomplishes that. This positions us to make significant investments in\ntransit projects in the forthcoming transportation reauthorization\nbill. I appreciate working with Chairman Baucus on this legislation,\nand I thank him for his leadership and for recognizing the economic\nbenefits of structuring the legislation in this manner. I also want to\nhail the work that Banking Committee Chairman Dodd and Senator Schumer\nhave done to support transit funding.” The Department of\nTransportation (DOT) estimates the Fund will be insolvent by late\nAugust 2009 without legislative action.  The Highway Trust Fund is one\nof several federal transportation trust funds, including the Airport\nand Airways Trust Fund and the Harbor Maintenance Trust Fund.  These\ntrust funds were structured to earn interest on their balance as a way\nto help ensure solvency.  The Highway Trust Fund has been the exception\nsince 1998.   Senator Baucus has successfully fought to\nreplenish the Highway Trust Fund in recent years, as fund receipts have\ndeclined and the balance has fallen to dangerously low levels.  In\nSeptember 2007, he proposed a $5 billion highway fix as part of the\nFinance-passed FAA bill, which was blocked in late April 2008.  On June\n26 of last year, in light of news that the Trust Fund deficit was\nworsening, Senator Baucus was joined by Senator Reid in an effort to\nmove an $8 billion Highway Trust Fund fix.  In September 2008, Senator\nBaucus was successful in advancing the $8 billion Highway Trust Fund\nfix that became Public Law 110-318.  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b9c4ff3c-c26c-4f4a-8658-2927c9fa56cb,\"MENENDEZ STATEMENT ON JERSEY CITY POLICE OFFICERS SHOT IN THE LINE OF DUTY \n                    \n                      July 17, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) released the following\nstatement on the Jersey City policy officers who were shot in the line\nof duty yesterday: “First and foremost, my thoughts and\nprayers are with the two officers who remain in critical condition, and\nwith their families. They are in the hands of excellent medical\nprofessionals, but they obviously have significant health challenges\nahead, and I’m hoping for the best. I am certainly relieved to hear\nthat the other officers who were struck seem to be on their way to full\nrecoveries. “This incident is another reminder of the\nsacrifice that our brave law enforcement officers make each and every\nday, putting the safety of our families ahead of their personal safety.\nWe owe them so much in the way of support and gratitude for their\nservice. While it is disturbing to know that there are those in our\nsociety who would brazenly open fire on law enforcement, it is also\ncomforting to know that our law enforcement is doing everything it can\nto get criminals like these off of our streets. They deserve our\ndeepest gratitude.” \"\"Too many times - for too long we have\nseen blood in our streets from senseless, pointless, lethal gun\nviolence. This violence must end. It is not who we are nor what we want\nto be. There are too many guns on the street but there are also too\nmany people too willing to use them.\"\" # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=50a6f96f-8042-4a26-bf4b-4b26bb3c2ee6,\"MENENDEZ HAILS SENATE PASSAGE OF MAJOR HATE CRIMES AMENDMENT \n                    \n                             NJ Senator is co-sponsor of legislation that would give federal law enforcement greater ability to prosecute hate crimes\n                    \n                      July 17, 2009\n                      WASHINGTON – Late last night, the U.S. Senate passed an amendment that\naims to bring justice in more hate crime cases. The legislation would\nallow federal law enforcement to become involved in more of these\ncases, whereas currently, it is does not have jurisdiction to prosecute\na large number of them. These provisions were successfully attached to\nthe Department of Defense authorization bill, which is expected to gain\nfinal Senate passage next week. U.S. Senator Robert Menendez (D-NJ) is a co-sponsor of the hate crimes legislation, and he released the following statement: “When someone harasses, beats or murders another fellow human being for\nthe type of person they are, it is more than a vicious crimes against\nan individual. It is a crime against an entire communitie and against\nthe underlying values we cherish in the United States of America. It is\na crime against humanity. “Even in our great society, even in\nthe 21st Century, there is hate, and there are hate crimes. We’ve read\nabout the murder of Luis Ramirez in Shenandoah, Pennsylvania and the\nrecent spike in hate crimes against Latinos. We all watched the\ncoverage following the deadly shooting at the Holocaust Museum in\nWashington, D.C. And we all know the story of Matthew Shepard – the\nnamesake of the original hate crimes legislation – who was beaten to\ndeath because of his sexual orientation. “We cannot eliminate\nhate with one piece of legislation, but we can make sure that justice\nis served more often. We can send a strong message about tolerance to\nthose who would lash out in hate. These are the reasons this\nlegislation is so meaningful, and these are the reasons that the Senate\ntook such important action.” # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=67e5317d-698d-45ed-b337-8fc62a96b090,\"SENATORS MENENDEZ, LAUTENBERG ANNOUNCE CLOSE TO $3 MILLION DOLLARS FOR JUVENILE JUSTICE AND DELINQUENCY PREVENTION IN NJ \n                    \n                      July 16, 2009\n                     WASHINGTON –Today, U.S. Senators Robert Menendez and Frank Lautenberg\nannounced that the New Jersey Department of Law and Public Safety has\nbeen awarded $2,840,186 in funds for juvenile delinquency justice and\nprevention programs.  This funding will finance three separate grant\nprograms aimed at: •    Treating at-risk youth and preventing first-time and non-serious offenders from entering the juvenile justice system •    Reducing juvenile offenses  •    Strengthening local prevention and intervention efforts, including\nthrough the improvement of local juvenile justice systems.  “The unfortunate reality in these difficult times is that families can\nbe susceptible to stresses and strains,” said Menendez. “We have to\nwork to prevent our children from falling prey to juvenile delinquency\nand the downward spiral of violence that is so destructive. This\nfunding is an investment in our youth and the strength and prosperity\nof our communities. Preventing and effectively treating juvenile\ndelinquency will ensure that our children can fulfill their potential\nand help our state flourish in the 21st century.” “We must\nwork to ensure that New Jersey’s youth are given every opportunity and\nresource available to lead safe, productive lives free from the\ninfluence of crime and violence,” said Sen. Lautenberg.  “Our children,\nour economy and our state all benefit from programs like these that\nbreak the cycle of crime and poverty and teach our kids to make better\ndecisions.  These funds will help protect our children and strengthen\nour communities.” The three programs to receive funding are: Title II Formula Grants Program ($1,599,000): To support State and\nlocal delinquency prevention and intervention efforts and juvenile\njustice system improvements.  FY09 Juvenile Accountability\nBlock Grants Program ($1,207,700): To reduce juvenile offending through\naccountability-based programs focused on both the juvenile offender and\nthe juvenile justice system. FY09 Title V Community\nPrevention Grants Program ($33,486): To reduce risks and enhance\nprotective factors to prevent at risk youth from entering the juvenile\njustice systems and to intervene with first time and non-serious\noffenders to keep them out of the juvenile justice system.                                                                                                                                                        \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9a391027-c087-4178-91d9-1a32f03aa1f0,\"MENENDEZ HONORS NAACP ON THE 100TH ANNIVERSARY OF ITS FOUNDING \n                    \n                      July 15, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) today released the\nfollowing statement celebrating the 100th anniversary of the founding\nof the NAACP:   “Over the past century, Africans Americans\nhave torn away the bigotry of Jim Crow laws and pushed past the\ninequality of segregation – and now an African American is our nation’s\nleader. It is more than mere chance that these barrier-breaking\nachievements have coincided with the existence of the NAACP. We honor\nthis strong and inspiring organization for the change is has affected\nin our society and the measures of equality it has helped to forge.   “Though African Americans and all minorities have come this far, our\ngreat society is not without remaining inequality, soft bigotry and\nmore overt racial tensions manifested in hate crimes. In other words,\nthe work of the NAACP is not done. We applaud its achievements over the\npast 100 years and look forward to its continued advocacy, in constant\npursuit of a more perfect union.”   # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=914a8758-d29d-4ca0-980f-2669c44a10a0,\"SENATE FINANCE DEMOCRATS SUGGEST MAKING PROFIT-HUNGRY HEALTH INSURERS PAY FEE TO HELP COVER COST OF HEALTH CARE REFORM \n                    \n                            Schumer, Menendez, Stabenow Say Congress Must Rein In Insurers By Tightening Regulation, Increasing Market Competition. Also Endorse New Fees On Insurers To Help Defray Cost Of Health Care Reform—Industry Has Been Big Part of Problem, Now Must Be Part Of Solution. Since '01, Health Insurance Industry Profits Have Soared 428% While Premiums Have Doubled.\n                    \n                      July 15, 2009\n                     WASHINGTON, DC—U.S. Senators Charles E. Schumer (D-NY), Robert Menendez\n(D-NJ), and Debbie Stabenow (D-MI) today demanded that the private\nhealth insurance industry accept tighter regulation, increased\ncompetition and new fees in order to ensure a successful overhaul of\nthe health care system.  While many of the proposed\nsolutions are already incorporated in the bill set to emerge from the\nSenate Finance Committee, the idea of imposing fees on health insurers\nis under consideration, but unresolved. Schumer, Menendez and Stabenow\nendorsed the approach Wednesday, saying it was a worthwhile option that\nwould ensure that the health insurance industry contributed to the cost\nof reform. The senators said they were not drawing lines in the sand\nover the design of the fee, but suggested that, depending on how it was\ndesigned, it could raise potentially $100 billion. The senators said\nthat since private insurers stand to gain the most from the influx of\nmillions of consumers that would be generated by health care reform\nlegislation, the industry should kick in for part of the cost.    “Our broken health care system is working all too well for many private\nhealth insurers,” Schumer said. “They need to become a better partner\nas we work to enact a health care reform bill without adding to the\ndeficit. It only makes sense that the health insurance industry, which\nstands to gain over 40 million new consumers under a reformed system,\nshould pay its fair share.” \"\"It’s clear, and disturbing, that\nprivate insurers have used the market power they have gained to boost\ntheir bottom line, regardless of the cost to our families. Meanwhile\nAmericans find themselves with fewer and fewer health insurance options\nat higher and higher costs. The time has come for insurance companies\nto step up to our health care challenge. It is time for them to be part\nof the solution,” Menendez said. “Insurance companies have\nmade a lot of money off the current system while too many families have\nbeen unable to afford the health care they need,” said Stabenow.\n“That’s why I’m working with my colleagues in the Senate Finance\nCommittee to rein in consumer costs, tighten regulation and increase\nmarket competition as we finish health care reform. Health care needs\nto be for patients, not profits. We need a uniquely American health\ncare system that guarantees insurance companies pay their fair share,\nso families get the health care they need at a price they can afford.” Since 2001, profits at the top 10 health insurers rose 428 percent,\naccording to Securities and Exchange Commission filings compiled by the\nadvocacy group, Health Care for America Now. Over that same span, the\naverage premium has doubled to $12,680. Based on that data, the\nsenators suggested health insurance companies have an interest in\npreserving the status quo. While the pharmaceutical and hospital\nindustries have announced cost-cutting agreements with the White House\nand Senate Finance Chairman Max Baucus, health insurers have not yet\nstepped forward in a similar way, even though they stand to gain 40\nmillion potential new customers under the proposed health care bill.  The senators demanded that the health insurance industry become a\nstronger partner in the effort to enact comprehensive reform. Besides\nsubmitting to the fees, the senators reiterated their support for other\nmeasures that would compel insurers to abandon the types of practices\nthat put profits ahead of patients. They endorsed, as a way to crack\ndown on insurers, new requirements such as “community rating”, which\nwill prevent insurance companies from charging some consumers more\nbased on health status and “guaranteed issue,” which means anyone\nseeking insurance must be made an offer. The senators also touted the\nproposed insurance exchange that would exert competitive pressures on\nall insurers.   # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f8191330-a766-46dc-b2cb-77e9225372f7,\"MENENDEZ APPLAUDS BOXER AND LAHOOD FOR LEADERSHIP ON TRANSPORTATION AND CLIMATE CHANGE \n                    \n                            Menendez held hearing in his subcommittee last week on importance of transportation policy for climate change bill \n                    \n                      July 14, 2009\n                     WASHINGTON\n– Today, U.S. Senate Committee on Environment and Public Works held a\nhearing to examine the need for transportation policy as part of the\neffort to combat climate change, which included U.S. Transportation\nSecretary Ray LaHood as a witness.Last\nweek, Senator Robert Menendez (D-NJ), who chairs the Senate Banking\nSubcommittee on Housing, Transportation and Community Development, held\na hearing to highlight the need to include significant public\ntransportation funding in any comprehensive climate change\nlegislation--something the House of Representatives failed to do.\nToday, he praised EPW Committee Chairman Boxer and Secretary LaHood for\nbeginning this process:“As\nsomeone who is obviously concerned that House legislation failed to\nproperly address the role of transportation in climate change, today’s\nhearing was a good start toward a better bill here in the Senate.\nThroughout this effort, we have to remember that transportation is\nresponsible for nearly one third of our emissions. We need to lower the\nnumber of miles people travel by car and, in turn, lower emissions. I\nam encouraged by and applaud Chairman Boxer’s leadership, which will\nhopefully result in a significant public transportation investment\nthrough the Senate climate bill. I am also pleased to see Secretary\nLaHood join in this conversation, and it is my hope that we can all\nwork together for a stronger climate change bill to heal our\nenvironment and boost the economy.”\n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=997a82b9-a61c-4e00-8ab0-19b7c13c46d9,\"CHAIRMAN OF SENATE HOUSING SUBCOMMITTEE URGES MORTGAGE COMPANIES TO PICK UP PACE OF LOAN MODIFICATIONS \n                    \n                            With Banking Committee set to conduct loan modification hearing Thursday, Menendez letter follows up Geithner-Donovan letter\n                    \n                      July 14, 2009\n                     WASHINGTON – In a letter to the CEOs of 20 major mortgage companies,\nthe Chairman of the Senate Banking Subcommittee on Housing,\nTransportation and Community Development today raised concerns about\nthe rate of participation in and cooperation with the program meant to\nhelp struggling homeowners modify the terms of their mortgages. The\nletter by U.S. Senator Robert Menendez (D-NJ) follows up on a July 9\nletter by Treasury Secretary Timothy Geithner and Housing and Urban\nDevelopment Secretary Shaun Donovan to the same CEOs, raising similar\nconcerns. Menendez urged the mortgage companies to review and revise\ntheir loan modification efforts to help achieve the goals of the\nprogram. “Our nation’s housing crisis is the root of the\nglobal economic crisis that we are faced with. Preventing foreclosures\nhelps keep families in their homes, helps the surrounding communities\nmaintain property values and helps lift the economy, which are results\nthat I believe we can all support,” wrote Menendez. “I fully expect you\nto review your company’s policies and procedures regarding loan\nmodifications to find a balanced approach that not only ensures the\nfinancial viability of your company, but also achieves the goal of the\nprogram, which is to reduce consumers’ foreclosures on their\nmortgages.  I look forward to hearing the steps your company is taking\nto achieve more loan modifications.” Menendez will help to\nchair a Senate Banking Committee hearing on Thursday entitled\n“Preserving Homeownership: Progress Needed to Prevent Foreclosures,” at\nwhich representatives of the U.S. Department of Treasury, the U.S.\nDepartment of Housing and Urban Development and representatives from\nmortgage lenders and consumer groups will testify. The letter\nwas sent to: James Dimon of JPMorgan Chase; Alvaro G. de Molina of GMAC\nFinancial Services; Kenneth D. Lewis of Bank of America Corporation;\nVikram Pandit of Citigroup Inc.; Ellen Alemany of Citizens Financial\nGroup; Bruce Rose of Carrington Mortgage Services; Tom Wind of Aurora\nLoan Services LLC; Derrick D. Cephas of Amalgamated Bank; David Ertel\nof Bayview Loan Servicing, LLC; Darren Williams of Wescom Central\nCredit Union; John G.    Stumpf of Wells Fargo Bank, NA; Robert Shafir\nof Credit Suisse Americas; Rolando Rodriguez of RG Mortgage\nCorportation; John J. Mack of Morgan Stanley; Dennis Stowe of\nResidential Credit Solutions; William C. Erbey of Ocwen Financial\nCorporation, Inc.; Anthony Barone of Nationstar Mortgage LLC; Keith A.\nAnderson of Green Tree Financial Corporation; Karen L. McCormick of\nFirst Federal Savings and Loan; and Donald H. Layton of E*TRADE\nFinancial Corporation. PDF of letter to mortgage companies\n(this is one example out of 20 identical letters that were sent):\nhttp://menendez.senate.gov/pdf/07142009LetterJDimonJPMorganChase.pdf  Text of letter: July 14, 2009 [CEO Address] Dear [CEO name],\nI\nwrite in my capacity as Chairman of the Senate Banking Subcommittee on\nHousing, Transportation, and Community Development to urge you to\nexpand loan modifications under the Home Affordable Modification\nProgram (HAMP) and to work cooperatively with the Administration’s\nefforts to reduce foreclosures.   As you might know, the\nSenate Committee on Banking, Housing, and Urban Affairs will examine\nthese and other loan modification issues at a hearing next Thursday,\nJuly 16th entitled “Preserving Homeownership: Progress Needed to\nPrevent Foreclosures.”  In preparing for that hearing, I have become\neven more concerned about the progress that lenders, loan servicers,\nand the federal government are making toward modifying loans to help\nthe national foreclosure crisis.   Our nation’s housing\ncrisis is the root of the global economic crisis that we are faced\nwith. Preventing foreclosures helps keep families in their homes, helps\nthe surrounding communities maintain property values and helps lift the\neconomy, which are results that I believe we can all support. However,\nthe Office of the Comptroller of the Currency and Office of Thrift\nSupervision estimate that servicers implemented about 185,000 new loan\nmodifications in the first quarter of 2009, which is dwarfed by the\nestimated 2.4 million foreclosures in 2009 according to the Center for\nResponsible Lending.  It is also not clear how effective these\nmodifications are in preventing foreclosures.  I understand that\nTreasury Secretary Timothy F. Geithner and Department of Housing and\nUrban Development Secretary Shaun Donovan also sent you a letter to\nthat effect on July 9th.   It has been widely reported that\nlenders and servicers have generally been overwhelmed by requests for\nloan modifications and have not always succeeded in implementing good\nsystems to deal with those requests with well-trained loan\nprofessionals who can provide accurate information for borrowers. \nAnother problem I hear repeatedly is that the loan modifications being\noffered are sometimes not generous enough to meet the needs of\nfamilies, many of whom have experienced recent unemployment.   In light of these and other problems, I fully expect you to review your\ncompany’s policies and procedures regarding loan modifications to find\na balanced approach that not only ensures the financial viability of\nyour company, but also achieves the goal of the program, which is to\nreduce consumers’ foreclosures on their mortgages.  I look forward to\nhearing the steps your company is taking to achieve more loan\nmodifications.                                                                                             Sincerely,                                                                                           ROBERT MENENDEZ                                                                                           United States Senator # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a33ef2ad-7d59-4f4d-9040-e88326810d51,\"MENENDEZ, LAUTENBERG ANNOUNCE FEDERAL FUNDING TO HELP SCHOOLS IN BERGEN AND BURLINGTON COUNTIES PREPARE FOR EMERGENCIES \n                    \n                            Federal funding to strengthen and improve emergency response and crisis management plans in New Jersey school systems \n                    \n                      July 14, 2009\n                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank R.\nLautenberg (D-NJ) announced that school districts in Bergen and\nBurlington counties will receive federal funding for safety. Bergen\nCounty Special Services School District will receive $250,000, Teaneck\nPublic School District will receive $91,000, and Burlington Township\nSchool District will receive $98,500 for a two-year period as part of\nthe Readiness and Emergency Management For Schools (REMS) discretionary\ngrant program to help strengthen and improve their emergency management\nplans.  “Parents entrust their children to their schools\neach day, and we have to make sure that the schools are able to\neffectively protect them in an emergency situation. As the recent swine\nflu epidemic shows us today, and as 9/11 showed us eight years ago, our\nschool systems must have the capacity to respond as quickly,\nefficiently, and effectively as possible to all crises,” said Senator\nMenendez. “With this federal investment, school districts will be able\nto get the support they need to provide the safest environment possible\nfor our schoolchildren.” “When there's an emergency, our\nschools must be prepared to ensure the safety of every student.  These\nfunds will help safeguard our children by providing schools with the\ntools and resources they need to prepare for and respond to emergency\nincidents.  Investing in these preparedness initiatives will further\nsecure New Jersey’s schools and improve public safety in our\ncommunities,” said Sen. Lautenberg. Local Educational\nAgencies will be able to use the federal funding given by the REMS\ndiscretionary grant program to develop superior plans that deal with\nall four phases of emergency management: Prevention-Mitigation,\nPreparedness, Response, and Recovery. School districts will review and\nrevise existing emergency management plans by conducting vulnerability\nassessments of their schools and district facilities, providing\ntraining, organizing tabletop exercises, obtaining emergency supplies,\nand engaging in crisis simulation drills. School districts are required\nto work with community partners, such as local law enforcement, create\na plan to sustain local partnerships after the two year period, and\ncommunicate emergency management policies and reunification procedures\nto parents. More specifically, districts are also required to support\nthe implementation of the National Incident Management System, commit\nto developing plans regarding special needs populations, and develop a\ninfectious disease plan in case of an infectious disease outbreak.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=87746e56-213b-4762-bc27-b93e8eaecfeb,\"MENENDEZ STATEMENT ON CENSUS DIRECTOR VOTE \n                    \n                      July 13, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez today released the\nfollowing statement on the Senate’s procedural vote to allow Census\nBureau Nominee Dr. Robert Groves to proceed to final confirmation,\nwhich passed 76-15:\n“Gearing up for massive 2010 Census\neffort has been impaired by years of inattention and\npolitically-motivated delays on the part of Republicans. With Dr.\nGroves finally on the road to confirmation, we can be more confident\nthat the Bureau will accelerate its preparations and overcome the many\nchallenges that might impact an accurate count next year.\n“Ensuring\na full and accurate census count next year is about more than numbers.\nIt is about ensuring that the federal government can best make a\npositive difference in the lives of the people it serves. An accurate\nCensus means that people are fully represented in the Halls of Congress\nand that the more than $300 billion in government spending each year is\ninvested in ways that will improve the lives of as many families as\npossible. The Census shapes business and government decisions with\nenormous economic and social impacts.\"\"\n“For traditionally\nundercounted populations, there’s even more at stake. Their ability to\naccess key resources and benefits that have a direct impact on their\nsocial and economic prospects is directly contingent on an accurate\nCensus. I am confident in Mr. Groves’s capacity to lead these efforts\nswiftly and efficiently, and I look forward to working with him and\nPresident Obama to ensure an accurate count in 2010.”\n                                                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6ab09486-7906-42f4-a768-7f9ca9b30e04,\"MENENDEZ, LAUTENBERG APPLAUD $47 MILLION TO HELP NEW JERSEY FAMILIES REDUCE ENERGY COSTS \n                    \n                            Weatherization Funds Will Allow Residents To Make Homes More Energy Efficient \n                    \n                      July 10, 2009\n                     WASHINGTON, DC – Senators Frank R. Lautenberg (D-NJ) and Robert\nMenendez (D-NJ) today applauded a $47 million award by the U.S.\nDepartment of Energy to New Jersey to help the state’s homeowners make\ntheir homes more energy efficient.  The funding will help weatherize\nmore than 12,700 homes, save consumers money, reduce greenhouse gas\nemissions and create green jobs for New Jersey residents. “For every dollar we invest in making our homes more energy efficient,\nwe do three things – save our families money on energy bills, create\njobs and clean the air we breathe,” said Menendez, a member of the\nSenate Energy and Natural Resources Committee who also created the\nEnergy Efficiency and Conservation Block Grants program for cities,\ntowns and counties. “It pays to be able to comfortably keep the air\nconditioning and heating in our homes turned off for longer. In these\ntough times, this is exactly the type of investment that will\ncontribute to our economic recovery and lay the foundation for economic\nsecurity.” “This funding will save our residents money,\nreduce energy use and create jobs across the state – it’s exactly the\ntype of investment we need to help protect the environment and\njumpstart the economy,” Sen. Lautenberg said.  “These funds are part of\nthe forward-looking energy policy our country needs and we will\ncontinue to secure resources for New Jersey to improve energy\nefficiency and create jobs.” New Jersey will receive\n$47,500,000 from the U.S. Department of Energy (DOE) to complete the\nweatherization as part of the federal Weatherization Assistance\nProgram.  Weatherization projects allow low-income families to save\nmoney by making their homes more energy efficient, which results in\naverage savings of 32 percent for heating bills and savings of hundreds\nof dollars per year on overall energy bills. The funds will\nbe distributed by DOE as a result of the Economic Recovery Act, which\nwas signed into law by President Obama in February. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5bfe61bd-86bf-40d9-bdb7-3a5146a5e412,\"LAUTENBERG, MENENDEZ ANNOUNCE NEARLY $3 MILLION FOR TEACHING AMERICAN HISTORY PROGRAMS ACROSS NJ \n                    \n                      July 10, 2009\n                     WASHINGTON, D.C. – Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert\nMenendez (D-NJ) today announced that several New Jersey schools will\nreceive nearly $3 million in federal funding through the Teaching\nAmerican History grant program to further train teachers and help\nstudents better grasp the subject. “American history is a\nvital part of our children’s education,” said Sen. Lautenberg.  “These\nfederal funds will provide our teachers with additional tools to\nenhance the learning experience for New Jersey students in a way that\nis engaging and meaningful.” “Giving our schoolchildren a\nfull understanding and appreciation of our nation’s history helps equip\nthem to be able to make sound judgments and decisions about our\nnation’s future,” said Sen. Menendez. “Investments in our schools and\nteachers like these help the development of our children and help lay\nthe foundation for long term economic security.” The following communities will receive federal funding: •    $499,995 for Washington Township Board of Education •    $999,998 for Bergen County Technical Schools •    $954,136 for Moorestown Township Public Schools •    $499,995 for Woodbury Public School District The Teaching American History Grant Program, distributed through the\nU.S. Department of Education, provides teachers with an opportunity to\nenhance their knowledge, understanding, and appreciation of traditional\nAmerican history.  It provides new resources for course instruction to\nraise student interest and achievement in the subject.  The instruction\nprovided to these teachers by experts in America history will help them\nteach the subject in an exciting way that will help students better\nconnect with the nation’s past.  The grant is distributed to local\neducation agencies on a competitive basis.  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e8a31a1f-f84f-4f14-aefd-1c1edad136bd,\"MENENDEZ HAILS $17 MILLION FOR CLEAN DIESEL PROGRAMS IN PORT OF NJ/NY \n                    \n                            Funding from economic recovery act will help modernize vessels, vehicles and rail \n                    \n                      July 9, 2009\n                     WASHINGTON – The U.S. Environmental Protection Agency has awarded the\nregion that includes New Jersey, New York and Puerto Rico (EPA Region\n2) with $17 million from the economic recovery package for clean diesel\nprojects related to port activity, U.S. Senator Robert Menendez (D-NJ)\nsaid today. Menendez, a member of the Senate Energy and Natural\nResources Committee, hailed this funding as an action that will\ncontribute to an economic recovery, long-term economic stability and a\nhealthier environment. “When we can put people to work on\nprojects that clean the air we breathe, that’s a win-win,” said\nMenendez. “This funding and these projects help contribute to an\neconomic recovery and help lay the foundation for long-term economic\nsecurity. A strong 21st century economy will be one in which we are\nmore energy efficiency and are producing fewer emissions. This funding\nwill help ensure that activity in and around our busy port will fit in\nthat type of economy.” The awards announced today were chosen to both maximize economic impact and emissions reductions. These projects include: Northeast States for Coordinated Air Use Management (NESCAUM) – Marine Ferry Repower and McAllister Sisters Marine Tug Repower Project ($2,800,000)\n: Under the Marine Ferry Repower project, NESCAUM will repower four\nmarine vessels, including ferries that operate in the Hudson River and\ntugs operating at the Port of San Juan, by replacing 13 pre-regulation\nengines with new engines. Under the McAllister Sisters project, NESCAUM\nwill repower one marine vessel that operates in the New York Harbor,\nLong Island Sound, and the Delaware River by replacing four\npre-regulation engines with new engines. New York State\nDepartment of Transportation – Switch Locomotive Repower with\nGensetTechnology ($1,050,000): This project will repower one switch\nlocomotive operating at CSX’s Selkirk Yard (near Albany, NY) by\nreplacing the existing pre -regulation engine with cleaner engines. Columbia University – Voluntary Construction Retrofit Program\n($1,997,279): This project will retrofit up to 78 pieces of\nconstruction equipment used on the Manhattanville campus expansion\nproject with diesel particulate filters. The University will partner\nwith equipment rental companies. Port Authority of New York & New Jersey – Regional Truck Replacement Program ($7,000,000): This project will replace up to 636 model year 1993 and\nolder drayage trucks that service Port Authority facilities with\ncleaner, 2004 and newer model year trucks by offering truckers 25% off\nthe cost of the newer truck. Port Authority of New York &\nNew Jersey – Shore Power Installation at the Brooklyn Cruise Terminal\n($2,858,200): This project will install the land-side electrical\ninfrastructure necessary for cruise vessels calling at the Brooklyn\nCruise Terminal to hook up to shore power while docked, eliminating the\nneed to operate on-board generators. Carnival Cruise Lines has\ncommitted to use the facility. New York City Department of Transportation –Staten Island Ferry Marine Engine Repower ($1,275,000): This project will repower the Staten Island Ferry\nvessel John H. Noble by replacing four pre-regulation engines with new\nengines.  In addition to helping create and retain jobs, the\nclean diesel projects would help to reduce premature deaths, asthma\nattacks and other respiratory ailments, lost work days, and many other\nhealth impacts every year.  The Recovery Act allotted the\nNational Clean Diesel Campaign (NCDC) a total of $300 million, of which\nthe National Clean Diesel Funding Assistance Program received $156\nmillion to fund competitive grants across the nation. The Recovery Act\nalso included $20 million for the National Clean Diesel Emerging\nTechnology Program grants and $30 million for the SmartWay Clean Diesel\nFinance Program grants. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b8be1f78-6a45-4cfe-8a41-05c641dd17d6,\"Menendez, Nelson, Gillibrand Provisions for Immigrant Widows and Orphans Set for Senate Passage\n                    \n                            Legislation helps reinforce the family immigration system \n                    \n                      July 9, 2009\n                     WASHINGTON – Today, legislation to protect widows and orphans of deceased U.S. citizens and legal permanent residents who are in the family immigration system gained inclusion in the Department of Homeland Security appropriations bill, which is expected to gain final passage in the U.S. Senate tonight. The provisions, which were championed by Senators Robert Menendez (D-NJ), Bill Nelson and Kirsten Gillibrand (D-NY) address the immigration-related hardships caused by the death of a sponsoring relative by allowing orphans, widows and widowers to continue in the family immigration system. Menendez and Gillibrand are the sponsors of the Orphans, Widows and Widowers Protection Act and Nelson has championed the issue of widow and orphan immigrants for a number of years.\n\nSenator Menendez said: “The law-abiding loved ones covered under this provision call the United States home and have done everything right. They should not be kicked out of line solely because of the death of a parent or spouse. This legislation is vital to give these widows, widowers and orphans continued access to our legal family immigration system. Today’s action is one important step toward solving the crisis in our legal family immigration system and toward reinforcing family unity as the core of our immigration system. I look forward to fixing our broken immigration system through comprehensive immigration reform legislation later this year.” Gillibrand said: “This legislation marks another important step towards  comprehensive immigration reform.  After experiencing the loss of a loved one, law-abiding people seeking legal citizenship in this country should not experience further punishment by losing their opportunity to become legal citizens of this country.  This important legislation will protect some of the families being torn apart by our immigration system.  This is a critical part of our efforts to reform America's family-based immigration system to reunite loved ones, promote family stability and foster the economic growth that immigrant families have provided throughout our history.\"\"\n\n The orphans, widows and widowers provisions were including in an amendment to the DHS bill sponsored by Senator Orrin Hatch (R-UT) and co-sponsored by Senators Menendez, Nelson, Kent Conrad (D-ND), Gillibrand, Harry Reid (D-NV), Edward Kennedy (D-MA) and Charles Schumer (D-NY). The Hatch amendment also included immigration provisions for religious workers and aid workers. There are more than 200 surviving spouses of U.S. citizens fighting against immigration deportation and countless other legal immigrants, refugees and asylum seekers who have been deported or risk deportation because of the death of a loved one. This legislation offers a lasting solution for these legal immigrants impacted by the death of a loved one. Currently, if a sponsoring relative dies, the U.S. Citizenship and Immigration Service will generally deny the petition after the sponsoring relative’s death. This bill clarifies that the government should continue to process the immigration applications of immigrants who are already waiting to receive an immigrant or other visa under certain conditions. On Tuesday, June 9, 2009, the Department of Homeland Security announced that it was granting temporary relief from deportation to the spouses and minor children of U.S. citizens. This bill extends permanent relief to orphans, widows and widowers of legal immigrants including the relatives of U.S. citizens, permanent residents and refugees subject to Department of Homeland Security discretion in certain cases. \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7c6de889-7de7-4fb3-aeb1-4efa312115ea,\"WHITEHOUSE, SCHUMER, MENENDEZ INTRODUCE LEGISLATION PROMOTING HOME ENERGY EFFICIENCY \n                    \n                      July 8, 2009\n                     Washington, D.C. – U.S. Senators Sheldon Whitehouse (D-RI), Charles\nSchumer (D-NY), and Robert Menendez (D-NJ) announced the introduction\nof new legislation encouraging families and property owners to improve\ntheir homes’ energy efficiency.  The Energy Efficiency in Housing Act\nof 2009 (S. 1379) would help consumers save money on home energy costs,\ncreate jobs for local contractors, and limit pollution that contributes\nto global warming.   “As we work toward stabilizing our\neconomy and reducing our reliance on foreign energy sources, increasing\nthe energy efficiency of our homes will become more important than\never,” said Whitehouse.  “This legislation will help save consumers\nmoney on their energy bills and jump-start the market for renewable\nenergy in Rhode Island and throughout the country.” “Lowering\nthe burden of energy costs on family budgets is an important part of\nour economic recovery and helps lay the foundation for 21st Century\neconomic security. By encouraging energy efficiency in our homes, we\ncan help bring this financial relief to our families while working to\nclean the air we breathe. For our economic and environmental future,\nthis is the type of program we need to pursue,” said Menendez. The Energy Efficiency in Housing Act of 2009 (EEHA) would require the\nDepartment of Housing and Urban Development (HUD) to develop mortgage\nincentives for homebuyers – such as waived fees, higher permitted loan\nprincipal, and lower interest rates – to finance purchases of energy\nefficient homes and home improvements.  The bill would also create a\nnew market for leased renewable energy systems by encouraging third\nparty investors to purchase renewable energy systems – such as solar\nelectric systems – and lease them to homeowners, eliminating upfront\ncosts and allowing homeowners to share in the energy savings.  In\naddition, the EEHA would require the HUD Secretary to implement\nincentives to encourage energy efficiency in public housing and would\nauthorize funding for a 50,000-unit energy efficiency pilot program\nwith the cost savings to be shared between tenant and landlord. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e148bf13-b108-4bbd-9cdd-cf05d46e3b3d,\"SENATORS MENENDEZ, LAUTENBERG ANNOUNCE $80 MILLION FOR NEW JERSEY SCHOOLS FROM RECOVERY PACKAGE \n                    \n                             Federal Funding to provide budgetary relief pressures on New Jersey educational system\n                    \n                      July 8, 2009\n                     \nWASHINGTON\n– Today U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg\n(D-NJ) announced that the Department of Education has distributed an\ninitial $79.9 million from the recovery package to provide relief for\nthe New Jersey educational system. This is part of $2.4 billion that\nthe federal government is making available early through the State\nFiscal Stabilization Fund to forty states that have already completed\nthe Phase I applications.  “As we recover from this economic\ncrisis, we must lay the foundation to compete in a 21st century economy\nand that begins by providing a quality education to our\nschoolchildren,” said Menendez. “This funding will help our schools\nretain more quality teachers and ensure that our students have every\nopportunity to reach their full potential.  It will also relieve budget\npressures on our state and enable vital public services to continue.” “As we work to revitalize our economy, we must continue working to\nensure our schools, colleges, students and teachers have the resources\nnecessary to compete and succeed in a global economy,” Sen. Lautenberg\nsaid.  “These new federal funds will provide New Jersey schools with\nthe support they need to educate our students and get through these\ntough economic times.” This $79.9 million is part of the $1.3\nbillion total New Jersey is scheduled to receive in State Stabilization\nFunds from the recovery package. This portion of funding was\noriginally intended to be made available after Phase II applications\nhad been completed, but due to economic and budgetary struggles in many\nstates the funding has been released after the completion of Phase I\napplications. The State Fiscal Stabilization Funds represent almost\nhalf of the $100 billion set aside for the Department of Education as\npart of the recovery bill.                                                                                                                                                                                                       \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=051af122-0668-46b3-85f6-c9a58298b571,\"Menendez, Reid and Hatch Joined By T.Boone Pickens To Tout New Legislation That Would Spur Use Of Natural Gas Vehicles\n                    \n                            Natural gas vehicles emit fewer pollutants and run on energy source that is abundant domestically\n                    \n                      July 8, 2009\n                     WASHINGTON – U.S. Senate Majority Leader Harry Reid (D-NV) and Senators Orrin Hatch (R-UT) and Robert Menendez (D-NJ) were joined today by energy-independence advocate T. Boone Pickens to tout new legislation that would boost vehicles that run on clean natural gas. The NAT GAS Act, introduced today by Menendez and co-sponsored by Reid and Hatch, would extend and increase tax credits for natural gas vehicles and refueling.\n\n“We saw last summer how the wild fluctuations in oil prices helped to wreck our economy and we’ve seen how pollutants from dirty fuels are wrecking our planet,” said Menendez. “Our economic crisis has shined a spotlight on the urgent need for alternative, cleaner and cheaper sources of energy that we don’t have to import. By making it easier and cheaper to own a vehicle that runs on natural gas, we can help families save money on energy, create new manufacturing jobs and clean our air.” “Each day, our nation consumes about 21 million barrels of oil- more than 25 percent of the world’s oil supply. Nearly 70% is imported from outside our borders.  With only 3% of the world’s oil reserves, we cannot produce our way to a safe and secure energy future,” Reid said. “I’m proud to join with Senators Menendez and Hatch in introducing legislation that will help encourage the development of natural gas vehicles to help save consumers and operators thousands of dollars per year, protect our environment, and decrease our dependence on foreign energy. We must get serious about using cleaner burning natural gas and renewable energy, and this legislation is a strong step in the right direction.\"\" Hatch said, \"\"Natural gas is an important alternative fuel to help pave the way to energy independence, which will not only help keep us safer, but will also help reduce the high cost of fuel and, thus, high utility bills across the board. In our current economic downturn, its crucial to provide appropriate incentives that lead to lower prices for all Americans. This piece of legislation does just that while also helping clean up our environment; I am a proud cosponsor.\"\" “I am proud to stand with Senator Menendez and co-sponsors Senate Majority Leader Reid and Senator Hatch in support of this important natural gas legislation,” said Mr. Pickens. “This bipartisan legislation does more to reduce our foreign oil dependency crisis than any other piece of legislation in the past 40 years. As I have said many times before and will continue to say, natural gas is cleaner, cheaper, it’s abundant and it’s American. This bill will accelerate the use of natural gas in vehicles and is the only way I know to quickly and effectively reduce our dependence on foreign oil. For too long, our dependence on foreign oil has been one of the factors influencing our foreign policy and if we can eliminate that issue by using our own domestic natural gas resources I am confident that it will benefit our national security, our economy and the environment.”\n\nBackground on legislation •    Extends for 10 years the alternative fuel credits for natural gas used as a vehicle fuel, the purchase of natural gas-fueled vehicle, and the installation of natural gas vehicle refueling property credit •    Expands and modify the alternative fueled vehicle and refueling property tax credits as follows: o    Makes all dedicated natural gas-fueled vehicles eligible for a credit equal to 80% of the vehicle’s incremental cost. Only some dedicated natural gas vehicles currently can qualify for an 80% federal tax credit o    Makes all bi-fuel natural gas-fueled vehicles eligible for a credit equal to 50% of the vehicle’s incremental cost.  This is the first time bi-fuel vehicles would be eligible for a federal tax credit o    Increase the allowable incremental cost limits to more accurately reflect the cost of producing or converting natural gas vehicles: o    For light-duty vehicle, the purchase tax credit cap would be increased by to $12,500 (currently $5,000) o    For all other vehicle weight classes, the purchase tax credit cap would be doubled o    Increases the refueling property tax credit from $50,000 to $100,000 per station •    Allows the natural gas vehicle and natural gas fueling infrastructure credits  to be transferred by the taxpayer back to the seller or to the lessor •    Allows state and local governmental entities to issue tax exempt bonds in order to finance natural gas vehicle projects •    Allows 100% of the cost of a natural gas vehicle manufacturing facility that is placed in service before January 1, 2015 to be expensed and to be treated as a deduction in the taxable year in which the facility was placed in service.  This decreases to 50% after December 31, 2014 and is phased out by January 1, 2020 •    Requires that when complying with mandatory federal fleet alternative fuel vehicle purchase requirements, federal agencies shall purchase dedicated alternative fuel vehicles unless the agency can show that alternative fuel is unavailable or that purchasing such vehicles would be impractical •    Provides for grants for light- and heavy-duty natural gas engine developmentBackground on natural gas  •    According to the EPA, cars running on natural gas cut overall toxic emissions by 93-95 percent •    Natural gas is an abundant resource, with 98% of natural gas used in the U.S. originating right here in North America •    There are nearly 10 million natural gas vehicles in the world •    Natural gas has the ability to displace 100 percent of the petroleum used in heavy-duty vehicles.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=67529b60-7593-4db9-a27d-69063e2e5a66,\"SENATORS MENENDEZ, LAUTENBERG ANNOUNCE NEARLY $16 MILLION IN FEDERAL FUNDING FOR ECONOMIC DEVELOPMENT AND AFFORDABLE HOUSING \n                    \n                            FUNDING WOULD CREATE ECONOMIC AND HOUSING OPPORTUNITIES FOR LOW AND MODERATE INCOME FAMILIES AND INDIVIDUALS AT RISK OF LOSING THEIR HOMES \n                    \n                      July 6, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ) and Senator Frank R.\nLautenberg (D-NJ) today announced that the U.S. Department of Housing\nand Urban Development has awarded nearly $16 million dollars in funding\nfor New Jersey through the Community Development Block Grant (CDBG),\nEmergency Shelter Grant (ESG), HOME, and Housing Opportunities for\nPersons with AIDS (HOPWA) community programs. These programs in turn\nprovide grants and other assistance to State, local and private\nentities aimed at providing and expanding affordable housing, services\nand economic opportunities for low and moderate income people,\nincluding programs that serve families and individuals in particularly\nprecarious circumstances.  “In these difficult times, we\nhave to help ensure that New Jersey families have a place to call home\nand economic opportunities to keep food on the table,” said Menendez.\n“These funds will help families and communities in New Jersey that are\nstruggling have the opportunities necessary to stay afloat.” “This troubled economy hinders the ability of local governments to\nprovide the essential services our communities need. Whether providing\nhousing assistance, helping revitalize neighborhoods, or rebuilding\ncrumbling infrastructure, these funds will help New Jersey communities\nduring these difficult times,” said Lautenberg. The Community\nDevelopment Block Grants program provides annual grants to States and\nlocal governments to develop viable urban communities by providing\ndecent housing and a suitable living environment, and by expanding\neconomic opportunities, principally for low and moderate income people. The Emergency Shelter Grants program provides annual grants to State,\nlocal, and private entities to improve the quality and number of\nemergency homeless shelters. The Home program helps to expand\nthe supply of decent, affordable housing to low and very low income\nfamilies by providing grants to States and local governments to fund\nhousing programs that meet local needs and priorities. The\nHOPWA program provides housing assistance and related support services\nto local units of government, States and non-profit organizations for\nprojects that benefit low income persons medically diagnosed with\nHIV/AIDS and their families. Grant breakdown by city and grant type: Atlantic City, NJ:  CDBG - $1,352,623                              HOME - $534,605 Jersey City, NJ: CDBG - $6,535,418                          ESG - $286,984                          HOME - $3,277,133                          HOPWA - $2,358,602 Perth Amboy, NJ:  CDBG - $701,591                               HOME -$509,834 Wayne Township: CDBG - $195,002 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=01a4217d-8320-407b-917b-613ff1223ede,\"MENENDEZ CALLS FOR REFORM OF THE SECURITIES AND EXCHANGE COMMISSION AFTER MADOFF SENTENCING \n                    \n                      June 30, 2009\n                     Washington – U.S. Senator Robert Menendez (D-NJ) today called for\naccountability and reform at the Securities and Exchange Commission and\nother financial regulatory agencies in the wake of the Bernard Madoff\nsentencing.  U.S. District Court Judge Denny Chin sentenced Bernard\nMadoff to 150 years in prison for his role in orchestrating the massive\nfraud that cheated investors, pension funds, and foundations of their\nlife savings.  The SEC was repeatedly warned in detail by whistleblower\nand independent fraud investigator Harry Markopolos that Madoff was\nrunning a massive Ponzi scheme, but the SEC ignored the clear warnings\nand failed to conduct a thorough investigation.          To stop such frauds from bilking middle class Americans again, Senator Menendez has called for: •    An increased enforcement budget at the SEC, which was inadequately funded during the Bush Administration •    Senate Finance Committee hearings on ways the federal government\ncan help innocent victims of Ponzi schemes to recoup their losses\nthrough the Securities Investor Protection Corporation (SIPC) or other\nmeans  •    Enactment of the Improved Financial and Commodity\nMarkets Oversight and Accountability Act, legislation Senator Menendez\nintroduced on June 25th, 2009\n(http://menendez.senate.gov/newsroom/record.cfm?id=315148) to\nstrengthen the Inspectors General at five key financial regulatory\nagencies:  the Securities and Exchange Commission, the Federal Reserve,\nthe Commodity Futures Trading Commission, the National Credit Union\nAdministration, and the Pension Benefit Guarantee Corporation.  The\nlegislation would require Presidential appointments and Senate\nconfirmation of the Inspectors General, who are currently appointed by\nthe heads of the agencies they are supposed to investigate.  The\nlegislation also clarifies the subpoena powers of the Inspectors\nGeneral so they can properly oversee the financial regulators and\nrequires regulators to respond to deficiencies identified by the\nInspectors General by either taking corrective action or explaining to\nCongress why they are not taking corrective action.  Earlier\nthis year Senator Menendez also led efforts in the Senate to look into\nways the thousands of investors that were victim of this scheme could\nbe helped, and worked with the IRS to establish and issue clear\nguidance on how they should report their losses to receive proper\nrelief during the taxpaying season. Read a copy of the letter Senator\nMenendez sent to the Honorable Douglas Shulman, Commissioner of the\nInternal Revenue Service here:\nhttp://menendez.senate.gov/pdf/02202009IRSMadoffLetter.pdf          “The largest fraud in American history extended well beyond Wall Street\nto devastate families, seniors and charities across the nation. The\nvictims can feel some measure of gratification that Bernard Madoff will\nspend the rest of his life behind bars for the financial devastation he\ncaused. We must also ensure that the victims of this scheme have\nadequate remedies.” \"\"This theft became emblematic of a time\nin which Wall Street was far too irresponsible with people's money, as\nwell as a time in which the Securities and Exchange Commission\nrepeatedly failed to act as a cop on the beat. The testimony about the\nSECs incompetence in its failure to catch Madoff was stunning and\ntremendously concerning. We need financial regulators that are more\neffective cops on the beat to protect consumers, and we need strong\nindependent inspectors to make sure those regulators are carrying out\ntheir duties. In the Banking Committee we will work to pass strong\nreform legislation that holds regulators’ feet to the fire and enacts\nreforms quickly so that this incompetence doesn't happen on such a\nmassive scale ever again,” said Menendez.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=428177df-1ab0-4bba-b1d5-6e3eee6e44bb,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $10 MILLION IN NEW FEDERAL FUNDING FOR WETLANDS RESTORATION OF HACKENSACK RIVER BASIN \n                    \n                            Grant Award to NJ Is Largest Award In Country for Restoration Project\n                    \n                      June 30, 2009\n                     WASHINGTON, D.C. – Senators Frank R. Lautenberg (D-NJ) and Robert\nMenendez (D-NJ) today announced that the National Oceanic and\nAtmospheric Administration (NOAA) has awarded more than $10 million in\nnew federal funding to New Jersey to restore 30 acres of wetlands in\nLincoln Park in the Hackensack River Basin in Jersey City.  The grant\nis the single-largest award from NOAA under the Economic Recovery Law\nsigned by President Obama in February.\n“This grant from our\neconomic recovery law will put people to work cleaning up polluted\nsites and restoring our wetlands in New Jersey.  This is the largest\ngrant of its kind in the nation, and it will improve the health of New\nJersey’s environment and economy at the same time,” Sen. Lautenberg\nsaid.\n“These funds will help ensure the future of one of the\nGarden State's most important natural resources -- our coastal\nwetlands,” said Sen. Menendez.  “By helping improve the condition of\nour state's coasts, we are not only protecting our state's precious\nnatural resources, we are also helping guarantee our families continue\nhaving access to these beautiful surroundings well into the future.”                \nThe\n$10,596,006 in funding will allow the New Jersey Department of\nEnvironmental Protection to clean up and restore part of a former\nindustrial and landfill site.  This project will help restore wetlands\nand will create 4,500 feet of creeks.  NOAA estimates the grant will\ncreate 41 new jobs.\nThe Lincoln Park Wetland Restoration is a\nproject to restore an 80-acre coastal wetland in the urban\nindustrialized area of the Hackensack River basin.  This project will\nrestore the area’s native salt marsh, improve the overall ecological\nhealth of the Hackensack River ecosystem and increase public access to\nthe site.  Over time, the restoration should increase fish populations\nand open migratory paths for alewife and blueback herring. More information and a map of the site can be found at\nhttp://www.nmfs.noaa.gov/habitat/restoration/restorationatlas/recovery_map.html. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8e8f3259-fff8-4b12-bf8a-f6c863a4ea9a,\"STATEMENT FROM SENATOR MENENDEZ ON THE SUPREME COURT'S DECISION IN RICCI VS DeSTEFANO \n                    \n                      June 29, 2009\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today released the\nfollowing statement in response to The Supreme Court’s 5-4 decision in\nRicci v. DeStefano:\n“The Supreme Court itself acknowledged that\ntoday's decision established a brand new interpretation of the law. The\nCourt exercised its unique prerogative to change law, and as the 5-4\ndecision illustrates, this was a very close and tough case. In no way\nis the decision evidence that the Second Circuit’s ruling deviated from\nthe rule of law, strayed from established decrees, or failed to uphold\nthe lower court’s findings of facts. Furthermore, it is notable that\nfour justices would have upheld the Second Circuit’s ruling, including\nJustice Souter, whom nominee Judge Sonia Sotomayor would replace.”\n“The\nfact remains that Judge Sonia Sotomayor’s decision as part of a panel\nthat included judges appointed by both Democratic and Republican\npresidents upheld the lower court’s decisions and past precedents by\nmajority ruling. Judge Sotomayor’s deliberation and decision-making on\nthis case remains an example of her level-headed respect for the rule\nof law in a lengthy and stellar career that is full of such examples.\nHer strict adherence to the rule of law and to past precedents in this\ncase also remains an example of how those who try to label her an\n'activist judge' have little ground on which to stand.”\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3e5c79fd-e854-46be-ad1c-06458dbe9b5e,\"MENENDEZ INTRODUCES LEGISLATION TO STRENGTHEN INSPECTORS GENERAL AT FINANCIAL REGULATORY AGENCIES \n                    \n                            Member of Banking Committee looks to include provisions in forthcoming regulatory reform legislation \n                    \n                      June 26, 2009\n                     WASHINGTON – With legislation to implement stronger\nfinancial regulations on the horizon in Congress, U.S. Senator Robert\nMenendez (D-NJ) has introduced a bill that would increase\naccountability at the financial regulatory bodies through stronger\ninspectors general. The Improved Financial and Commodity Markets\nOversight and Accountability Act would:\n•Require Presidential\nappointments and Senate confirmations for the Inspectors General at\nfive key regulatory agencies:  the Federal Reserve, the Securities and\nExchange Commission, the Commodity Futures Trading Commission, the\nNational Credit Union Administration, and the Pension Benefit Guarantee\nCorporation\n•Clarify the subpoena powers of those Inspectors General so they can properly oversee the financial regulators\n•Require\nthe financial regulators to respond to deficiencies identified by the\nInspectors General by either taking corrective action or explaining to\nCongress why they are not taking corrective action.\n“We not\nonly need to make sure that we have stronger financial regulatory\nagencies to act as cops on the beat for consumers, we also have to make\nsure that those cops on the beat are doing their job,” said Menendez.\n“It’s clear this wasn’t always the case before the financial crisis –\nthe stories of incompetence that prevented the Securities and Exchange\nCommission from catching Bernie Madoff are proof. As we move forward\nwith comprehensive regulatory reform legislation, I look forward to\nworking with Chairman Dodd to include these provisions.”\nThis legislation mirrors legislation passed in the House of Representatives by Rep. John Larson (D-CT), H.R. 885.\n                                                      # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dc93dbdb-1b48-475e-81a8-2d9954683c99,\"AS LEASE-BACK DEALS ARE RAISED AS ISSUE IN METRO CRASH, MENENDEZ SAYS LEGISLATION CAN HELP UNWIND DEALS \n                    \n                            NJ Senator has introduced legislation that would block banks from pursuing windfalls off of deals \n                    \n                      June 26, 2009\n                     WASHINGTON – Yesterday, U.S. Senator Charles Grassley (R-IA) raised the issue of\nlease-back deals between banks and transit agencies with respect to the\nrecent crash on Washington’s Metrorail system in a letter to House of\nRepresentatives Majority Leader Steny Hoyer (D-MD). Today, U.S. Senator\nRobert Menendez (D-NJ) wrote Rep. Hoyer to offer to suggest that the\npassage of Menendez’s Close the SILO/LILO Loophole Act (S.1341) would remove the ability of banks to seek windfalls off of\nthese deals and increase the incentive for transit agencies and banks\nto unwind the deals. “I believe this legislation could help protect WMATA and other transit\nagencies who are being threatened by banks seeking to gain a windfall\nfrom the current economic climate while potentially putting transit\nagencies at risk,” wrote Menendez. “The\nbottom line is that, in order to help prevent such a tragedy in the\nfuture, we must ensure that transit agencies have adequate resources to\nkeep passengers safe.  As part of that, I strongly believe that we must\nprotect transit agencies from banks who are seeking to exploit a\ntechnicality that would result in agencies having to pay banks millions\nof dollars that could otherwise be used to shore up equipment and\nensure safe operations, even though they have not missed a single\npayment to the bank.  Once we remove this threat, the door will be open\nto terminating these transactions in a fair and equitable manner.” The Close the SILO/LILO Loophole Act would levy a 100 percent excise tax on windfall proceeds that banks are demanding from these agencies. Background The lease deals in question are known as Sale-in/Lease-out (SILO) and\nLease-in/Lease-out (LILO) deals. They involve transit other public\nagencies selling equipment or infrastructure (such as rail cars) to\nbanks to raise quick capital, then immediately leasing that equipment\nor infrastructure back from the banks. In these deals, a third party\nguarantor with a AAA credit rating, such as AIG at the time, was\nrequired to guarantee the lease payments. Banks also would derive tax benefits from these deals, writing off the\ndepreciation of the equipment or infrastructure they had purchased.\nHowever, in 2003, Congress found this to be a tax avoidance scheme, and\nthe tax benefits were ended, though the lease deals remained in place. Now that AIG and other guarantors have lost their AAA ratings, banks\nare claiming their contracts with public agencies are in “technical\ndefault” and are demanding that the agencies compensate them\nimmediately with the cost of future tax benefits they would receive\nthrough these deals, even though those benefits have been prohibited. This threatens agencies with large payments – the head of NJ Transit\nhas said his agency would owe $150 million, which would disrupt\nservice, cause fare hikes and put future projects in jeopardy.\n \nPDF of letter from Menendez to Hoyer, plus attachments: http://menendez.senate.gov/pdf/06262009SILOLIO&WMATA.pdf\n \nText of letter:\n \nJune 26, 2009\n \nThe Honorable Steny H. Hoyer\nMajority Leader\nU.S. House of Representatives\nH-107, The Capitol\nWashington, DC 20515\n \nDear Majority Leader:\n \nI\nwrite to offer my help and to extend my sincere condolences on the Red\nLine Metro crash Monday.  I know it must be a difficult time for you\nand your constituents, and my thoughts are with the victims of this\ntragedy.\n \nI\nalso wanted to offer my support in funding improvements to the\nWashington Metropolitan Area Transit Authority (WMATA) system to help\nensure that this accident is not repeated.  To that end, I wanted to\nalert you to legislation I introduced yesterday called the Close the\nSILO/LILO Loophole Act (S.1341).  I believe this legislation could help\nprotect WMATA and other transit agencies who are being threatened by\nbanks seeking to gain a windfall from the current economic climate\nwhile potentially putting transit agencies at risk.\n \nAs\nyou know from the letter you received from my esteemed colleague,\nSenator Grassley, he has expressed concerns that this accident may have\nbeen caused by implications from a SILO/LILO transaction and not\ndecades of federal neglect of public transportation and inadequate\nfederal funding of our nation’s transit systems.  The bottom line is\nthat, in order to help prevent such a tragedy in the future, we must\nensure that transit agencies have adequate resources to keep passengers\nsafe.  As part of that, I strongly believe that we must protect transit\nagencies from banks who are seeking to exploit a technicality that\nwould result in agencies having to pay banks millions of dollars that\ncould otherwise be used to shore up equipment and ensure safe\noperations, even though they have not missed a single payment to the\nbank.  Once we remove this threat, the door will be open to terminating\nthese transactions in a fair and equitable manner.\n \nPlease\nfind attached a copy of my legislation as well as a short document\nexplaining how the legislation works.  I commend you for rising to the\nchallenge this tragic accident has posed and for marshalling federal\nresources to protect your constituents and the residents of the\nDistrict.  Do not hesitate to enlist my help in this endeavor.\n \nSincerely,\n \n \n \nROBERT MENENDEZ\nUnited States Senator\n \n \n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=79c3084b-df24-4984-a8cc-0dbcfbe1c45b,\"TATEMENT FROM SEN MENENDEZ ON WHITE HOUSE MEETING WITH MEMBERS OF CONGRESS TO DISCUSS IMMIGRATION REFORM \n                    \n                      June 25, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), today released the\nfollowing statement after the meeting on immigration reform hosted by\nPresident Obama to start discussions regarding our nation's immigration\nsystem:    \"\"Today's meeting started us on the right foot down\nthe path toward comprehensive immigration reform legislation. I was\nencouraged by the president’s strong statements both in public and\nbehind closed doors about making this issue a priority and his desire\nto pass legislation in the near future. The President’s decision to\ncharge a member of his cabinet with the creation of a working group\ncomposed of key members of Congress that will craft comprehensive\nlegislation is another sign of his commitment. We have the momentum and\nwillingness to get something done this year.”                                                                                                                                                                        \n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e2df781f-bb2f-4551-a03b-200be21204ca,\"Bipartisan Legislation Introduced to Boost Program that Helps Law Enforcement Quickly Find Missing Persons\n                    \n                            Menendez, 16 colleagues seek more resources to support \"\"A Child is Missing\"\" program \n                    \n                      June 23, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), along with Senators Orrin Hatch (R-UT), Edward Kennedy (D-MA), Richard Durbin (D-IL), Mel Martinez (R-FL), Bill Nelson (D-FL), Frank Lautenberg (D-NJ) and 10 other colleagues have introduced legislation (S. 1301) that would make a federal investment in an effective program that assists law enforcement efforts to locating missing persons quickly. They are seeking $5 million per year for six years for the non-profit organization A Child Is Missing, which generates 1,000 calls every 60 seconds to phone numbers in the immediate area where a missing person was last seen.  Through its efforts, A Child Is Missing has been credited with assisting law enforcement in the successful recovery of more than 500 missing persons since it was established in 1997.  This system can often be initiated quicker than Amber Alert, which requires a confirmation that the missing person has been abducted.   “All parents know that being unable to find your child for even a few seconds is terrifying, and we can only imagine the dread that accompanies having to report a missing person,” said Menendez. “We need to give parents and law enforcement every tool available to locate and safely recovery missing persons as quickly as possible. With this legislation, we can help ensure more missing person cases ultimately have happy endings.” “I have supported and observed this program for years,” said Hatch. “A Child Is Missing is an invaluable tool to law enforcement with a proven track record of over 500 recoveries since its inception. I am proud to be a cosponsor of this important legislation that has reunited missing children and persons with special needs with their families.” “In my state of Illinois, the ‘A Child Missing’ program has helped reunite 21 missing individuals with their families,” said Durbin.  “When a child or loved one goes missing, we expect that law enforcement will do everything possible to bring that person home safely.  It is our responsibility in Congress to make sure that local agencies and organizations have access to the best available resources to do just that.” “In the case of a missing person, a short amount of time is the difference between finding or forever losing a loved one,” said Nelson.  “That is why I’m supporting this legislation that would give law enforcement some extra help when someone is reported missing.” “The first minutes and hours after a child or other loved one goes missing are crucial,” Martinez said “The quicker we get information out about the person, the better chance there is of a safe recovery. This provides the resources to conduct immediate search efforts to locate missing persons and fills the gaps that other rapid response systems do not cover.” “Time is of the essence when searching for a missing child,” said Sen. Lautenberg.  “With this program, we can help bring families, law enforcement, and other organizations together to improve the chances of finding missing persons and getting them back home safely.”    “A Child Is Missing Alert Program is simple and easy to use 24/7 by all law enforcement nationwide. It is presently being used by over 3500 departments nationwide.  With this bill, so many more agencies will know about the program and will use it for emergencies immediately,” according to Sherry Friedlander, Founder/Executive Director, ACIM. A Child Is Missing (ACIM) is the only program of its kind that assists in all missing cases involving abduction, children who are lost, wander or run away, the elderly (including those who suffer from Alzheimer's Disease), and mentally and physically challenged individuals.  When a person is reported missing to the police, ACIM utilizes the latest technology to place 1,000 emergency calls every 60 seconds to residents and businesses in the area where the person was last seen.  ACIM works in concert with the Amber Alert and all child safety programs, and has the support of law enforcement agencies all across the country, including the National Sheriff’s Association and the National Chief’s Association.  A Child Is Missing also fills a critical gap in time.  Although the Amber Alert has been an extremely successful program, there is still a crucial void from when a child is first reported missing and when an Amber Alert, which is activated only in cases of abduction, can be issued.   Moreover, many local law enforcement agencies have scant resources and manpower to conduct searches that can cost as much as $400,000 over twelve hours. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b817657b-5926-4456-b9d3-943ec3c6e286,\"MENENDEZ, LAW ENFORCEMENT, AND HISPANIC NATIONAL BAR ASSOCIATION PRAISE SOTOMAYOR Record \n                    \n                      June 23, 2009\n                     WASHINGTON (Tuesday, June 23, 2009) – At a press conference on Capitol\nHill Tuesday, Senator Robert Menendez (D-N.J.) joined with\nrepresentatives from the National Latino Peace Officers Association\n(NLPOA) and the Hispanic National Bar Association (HNBA) in support of\nJudge Sonia Sotomayor to be the next Associate Justice of the Supreme\nCourt.“Judge Sotomayor’s nomination is proof that the\nAmerican dream is in reach for everyone willing to work hard, play by\nthe rules and give back to their communities, regardless of their\nethnicity, gender or socioeconomic background,” Menendez said.  “It’s\nfurther proof of the deep roots the Hispanic community has in this\ncountry. But let’s be clear: we get to be proud of this nominee because\nshe is exceptionally qualified. We get to be proud because of her vast\nknowledge of the law, her practical experience fighting crime, and her\nproven record of dedication to equal justice under law. Those are the\nreasons we’re proud, and they’re the reasons she should be confirmed\nwithout delay.”Sotomayor is a 17-year veteran of the\nfederal bench, serving for six years as a trial judge in New York’s\nfederal district court, and for 11 years on the Second Circuit Court of\nAppeals.  A graduate of Princeton University and Yale Law School,\nSotomayor has a long career in law enforcement, and was described as a\n“fearless and effective prosecutor” by former New York City District\nAttorney Robert Morgenthau.  Sotomayor’s nomination has received broad,\nbipartisan support since it was announced on May 26.  The National\nLatino Peace Officers Association is one of several law enforcement\ngroups supporting her nomination. “The NLPOA supports Judge Sonia\nSotomayor because she has a long and distinguished career on the\nfederal bench as well as having the depth and breadth of legal\nexperience of all levels of the judicial system,” wrote Art Acevedo,\nthe National President of NLPOA, in a letter to President Obama.  “She\nbrings a lifelong commitment to equality, justice, and opportunity, and\nearned the respect of all her colleagues…in one of the most demanding\nappeals circuits in America.” Acevedo is the Chief of the Austin,\nTexas, Police Department, and attended the Tuesday press conference\nwith NLPOA members Enrique Chavez of the Miami Police Department,\nJohnny Palermo of the Omaha, Nebraska, Police Department, and Hector\nRamos of the New Jersey State Police Department. The President of\nthe HNBA, Ramona Romero, also offered strong words of support for\nSotomayor’s nomination at Tuesday’s press conference. “Through both\nher life history and her legal career, Judge Sotomayor has demonstrated\nintelligence, integrity, strength of character and a commitment to\nexcellence.  If confirmed, she will bring these same qualities to her\nrole as a Supreme Court Justice.  The confirmation of Judge Sotomayor\nwill be an historic moment for all Americans to celebrate.” Hearings to consider Sotomayor’s nomination are scheduled to begin on July 13. # # # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=23927b35-5d9c-498b-940a-da7bbbcbc38c,\"SENATORS URGE SETTLEMENT IN USDA DISCRIMINATION LAWSUIT BY HISPANIC FARMERS \n                    \n                            Senators applaud settlement of similar suit by black farmers, say it is time to settle with Hispanic farmers \n                    \n                      June 20, 2009\n                      Washington, DC –U. S. Senator Menendez (D-NJ) and seven Senate\ncolleagues are urging President Obama to settle outstanding\ndiscrimination lawsuits by Hispanic farmers who have been denied access\nto United States Department of Agriculture loans and programs for more\nthan a decade (a news report on this issue is available here:\nhttp://www.elpasotimes.com/ci_12532653?source=most_emailed).  Earlier\nthis year $1.25 billion was allocated in the Fiscal Year 2010 budget to\nsettle similar outstanding lawsuits by black farmers in the Pigford v\nGlickman suit, which the senators applauded. In their letter to the\npresident, they reminded President Obama that the Food, Conservation\nand Energy Act of 2008 calls on the administration to resolve\noutstanding discrimination lawsuits against the USDA brought by\nHispanic and other farmers in an expeditious and just manner. “Indeed, we will never be able to close the entire book of\ndiscrimination within the USDA until all victims receive fair and just\nsettlements as compensation for the losses they suffered and the USDA\nis reformed,” wrote the senators. “To date, approximately $2.25 billion\nwill have been set aside to resolve USDA discrimination against black\nfarmers, yet thousands of Hispanic farmers and ranchers, many of whom\nare our constituents, continue to suffer from precisely the same\ndiscrimination and have seen no recourse thus far.  The USDA’s\ncorrective role in this instance has been clearly laid out, and there\nremains no legitimate reason to delay action for any of the affected\ngroups.” Signing the letter to the president were: Senators Robert\nMenendez (D-NJ), Patty Murray (D-WA), Barbara Boxer (D-CA)), Maria\nCantwell (D-WA), Arlen Specter (D-PA), Tom Udall (D-NM), Mark Udall\n(D-CO) and Michael Bennet (D-CO). Click here to read letter: http://menendez.senate.gov/pdf/06202009USDAHispanicFarmersLetter.pdf Text of letter below: June 17, 2009 President Barack H. Obama The White House 1600 Pennsylvania Avenue, NW Washington, D.C. 20500 Dear Mr. President: We applaud your recent commitment to appropriate $1.25 billion in the\nFiscal Year 2010 budget to settle outstanding discrimination lawsuits\nby black farmers who missed the initial filing deadline in the Pigford\nv. Glickman lawsuit.  In your statement on Wednesday, May 6, 2009, you\nsaid that “I am pleased that we are now able to close this chapter in\nthe agency’s history” and that you “hope[d] . . . that the farmers and\ntheir families who were denied access to USDA loans and programs will\nbe made whole and will have the chance to rebuild their lives and\nbusinesses.”  Indeed, we share your desire to bring this ugly chapter\nto a close by restoring justice and fairness to those who were\ndiscriminated against based on their race, ethnicity, or gender.   Unfortunately, the settlement of the Pigford case merely closes a\nsingle chapter of a long narrative of discrimination within the USDA. \nIndeed, we will never be able to close the entire book of\ndiscrimination within the USDA until all victims receive fair and just\nsettlements as compensation for the losses they suffered and the USDA\nis reformed.  To date, approximately $2.25 billion will have been set\naside to resolve USDA discrimination against black farmers, yet\nthousands of Hispanic farmers and ranchers, many of whom are our\nconstituents, continue to suffer from precisely the same discrimination\nand have seen no recourse thus far.  The USDA’s corrective role in this\ninstance has been clearly laid out, and there remains no legitimate\nreason to delay action for any of the affected groups.   Moreover,\ndespite language in Section 14011 of the Food, Conservation and Energy\nAct of 2008 urging the Administration to settle the outstanding\ndiscrimination suits brought by Hispanic and other farmers, as well as\nencouraging words from Secretary Vilsack himself, we are not aware that\nUSDA has begun working to settle these cases.  Lawyers representing\nHispanic farmers and ranchers have met with members of Secretary\nVilsack’s staff and have offered potential solutions to resolve the\npending lawsuits and reform USDA policies to ensure the agency will\nnever discriminate again.   Accordingly, we urge you to work to\nensure Hispanic farmers and ranchers, like black farmers with whom you\nhave already settled, can begin to rebuild their lives and businesses. \nFundamental fairness requires nothing less, and inconsistent\napplications of justice only serve to threaten the foundations of this\ngreat nation.  The sooner we can resolve this issue once and for all,\nthe sooner we can look forward to an agency that serves all Americans\nequally.                                                                                                   Sincerely,                                                                                  ROBERT MENENDEZ                                                                                        United States Senator                                                                                    PATTY MURRAY United States Senator BARBARA BOXER                                                                                               United States Senator                                                                                    MARIA CANTWELL United States Senator ARLEN SPECTER                                                                                                 United States Senator                                                                                    TOM UDALL United States Senator MARK UDALL                                                                                                     United States Senator                                                                                    MICHAEL BENNET United States Senator\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7ec389a3-04a3-4ede-969f-bc9faf7c3a2a,\"AHEAD OF 144th JUNETEENTH CELEBRATION, MENENDEZ CO-SPONSORS, HELPS PASS SENATE RESOLUTION TO APOLOGIZE FOR SLAVERY AND SEGREGATION \n                    \n                      June 19, 2009\n                     WASHINGTON – Yesterday, a day before the 144th Juneteenth celebration,\nthe United States Senate passed a resolution officially apologizing for\nslavery and racial segregation. U.S. Senator Robert Menendez (D-NJ) co-sponsored the legislation, and he released the following statement: “It is an awe-inspiring testament to the greatness of our nation that\non issues of race, we have risen from the depths of slavery to the\nplace where we are now, with our unifying, barrier-breaking president.\nOurs is a great society, but despite the civil rights that our citizens\nhave, it is true that not all the wounds from past issues of race have\nfully healed. There are unconscionable parts of our history that we\nshould fully come to terms with if we are to ever fully move past them.\nSlavery and segregation represent the worst of our nation’s history,\nand it is our hope that this action not only acknowledges misdeeds of\nthe past but can also help unite the American people even further. It\nis all the more poignant that we passed this the day before the\nanniversary of Juneteenth.” # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4dc2b93c-8e19-4d2c-b3ca-6437468e7bd3,\"MENENDEZ REINTRODUCES PACKAGE OF LEGISLATION TARGETING DRUG-RESISTANT STAPH INFECTION \n                    \n                      June 19, 2009\n                     WASHINGTON – The devastating drug-resistant staph infection known as\nMRSA has affected patients in hospitals, first responders such as\npolice, firefighters and emergency medical personnel, schoolchildren\nand other individuals in public places across the country. In response,\nU.S. Senator Robert Menendez (D-NJ) has updated and reintroduced a\npackage of legislation to combat the spread of the infection. The\nWorker Infection Protection Act would create a new Occupational, Safety\nand Health Administration (OSHA) standard to protect employees who are\nexposed to drug resistant infections, such as MRSA. The MRSA Infection\nPrevention and Patient Protection Act would create a MRSA prevention\nprogram for hospitals and would require hospitals to screen high-risk\npatients for the infection.  The Centers for Disease Control\nand Prevention has calculated that 19,000 Americans are dying of staph\ninfections each year and that MRSA is killing more people annually than\nAIDS, emphysema or homicide.             “This infection is\ndeadly and it sneaks up on a wide variety of people in a wide variety\nof places,” said Menendez. “Whether you are hospital patient, a health\ncare worker, a first responder or a child in school, you should have\nthe peace of mind of knowing that the federal government is doing\neverything it can to educate about and prevent the spread of this\ninfection. I will work with my colleagues to help take these important\nsteps in the battle against MRSA.” Worker Infection Protection Act:  The bill would create a new Office of Safety and Health Administration\nstandard to protect health care workers and first responders, including\npolice, firefighters, emergency medical personnel, and other workers at\nrisk of workplace exposure to drug resistant infections, such as MRSA.  MRSA Infection Prevention and Patient Protection Act: The bill would require hospitals to screen all patients entering\nintensive care units and other high risk units for MRSA, and eventually\nall admitted patients.  The bill also requires public disclosure of the\ninfection rate within each hospital, and would encourage best hospital\npractices, such as hand hygiene and contact precautions, in order to\nprevent the spread of MRSA. Rep. Jackie Speier (CA-12) introduced a\ncompanion bill in the House. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1ac724a0-fbda-4126-bd8a-3c99c37f865b,\"SENATOR MENENDEZ INTRODUCES LEGISLATION TO HELP ENSURE WOMEN HAVE ACCESS TO HEALTH CARE PROVIDERS ATTUNED TO THEIR UNIQUE HEALTH ISSUES \n                    \n                      June 18, 2009\n                      WASHINGTON –Today, Senator Menendez introduced legislation intended to\nensure that women have access to health care providers that understand\nand are focused on health issues unique to women. With health care\nreform taking center stage in Congress, Menendez hopes that the program\ncan be included as part of a broader health care reform package and can\nultimately help demonstrate ways to provide more effective care that\nfits women’s unique health issues. The Women’s Medical\nDemonstration Act would establish an unprecedented program that gives\nwomen access to a “medical home” – for instance a physician or\nfederally-qualified  health center – who can manage their total health\ncare and focus on their unique health care needs.  The specificity and\nvolume of services associated with women’s health care delivery, such\nas routine preventative care, pregnancy, menopause, and gynecologic and\nbreast health, make this a compelling area within which a pilot program\ncan be tested. This project would inform the redesign of the health\ncare delivery system for women to provide targeted, accessible,\ncontinuous, coordinated, confidential and comprehensive care with a\nparticular focus on preventing, treating and managing conditions that\nuniquely affect women.   “With unique health needs, women\nrequire unique health care,” said Menendez.  “Throughout the different\nstages of a woman’s life and the changes that accompany each stage, it\nis essential for her to have access to comprehensive medical care that\nattends to her needs. This program will promote quality and targeted\nhealth care for every woman, regardless of social or economic\nbackground.” Rooted in the principles of increasing access to\nquality and affordable health care, patient-provider communication and\ncollaborative care, medical homes are emblematic of a shift that must\noccur in our health care system -- toward one focused on preventive\ncare, better recognition of medical programs, early intervention, and\ncare coordination between various providers. As such, it is as a\ncompelling area within which to expand and improve women’s health care\ndelivery and an excellent model to assess for larger and broader\nreforms in this area.  The program would extend for an initial\nperiod of 3 years and would be carried out in eight states in diverse\ngeographic areas and a mix of practice settings. A representative\nsample of health care providers -- including physicians, certified\nnurses and midwives and physician assistants – and patients that are\ncurrently Medicaid and SCHIP beneficiaries will be eligible to\nparticipate. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ef1c235b-95f2-48ed-b511-8388909fe878,\"LAUTENBERG, MENENDEZ: $900,000 FOR EMERGENCY OPERATIONS CENTERS IN NEW JERSEY INCLUDED IN SENATE FUNDING BILL \n                    \n                            Hackensack, South Orange and Union County Would Receive Homeland Security Funds \n                    \n                      June 18, 2009\n                     WASHINGTON, D.C. – Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert\nMenendez (D-NJ) today announced the Senate Appropriations Committee\napproved legislation to give three emergency operations centers in New\nJersey $900,000 in new federal funds.  The funds are included in the\nFiscal Year 2010 Homeland Security Appropriations bill, which the\nSenate Appropriations Committee approved today and will next be\nconsidered by the full Senate.   “A coordinated effort from\nour first responders is the most effective and efficient way to protect\nour residents.  These funds would help our police, firefighters and\nother emergency personnel operate as a team to protect local\nresidents.  Funding for emergency operations centers improves public\nsafety and helps save lives,” said Sen. Lautenberg, a member of the\nSenate Appropriations Committee’s Homeland Security Subcommittee which\nwrote the legislation that includes these funds. Sen.\nMenendez said: “Even with all the challenges families in our state are\nfacing, we have to ensure that their security remains a top priority.\nWe know that coordination among first responders and authorities is\nessential for an effective response to save lives during an emergency.\nThe operations centers that will be bolstered by these funds will help\nensure a high level of coordination and enhance public safety.” Union County would receive $353,000 for emergency operations center\nenhancements.  Hackensack would receive $300,000 for its emergency\nservices facility, and South Orange would receive $247,000 for the\nreplacement of emergency generators in its emergency operations center. Emergency operations centers (EOCs) are central command and control\nfacilities responsible for carrying out the principles of emergency\npreparedness and emergency management or disaster management functions\nat a strategic level in an emergency situation. An EOC is\nresponsible for the strategic overview of a disaster.  The common\nfunction of all EOCs is to collect, gather and analyze data, make\ndecisions that protect life and property and disseminate those\ndecisions to all concerned agencies and individuals.  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=86825b56-ae59-42f7-949f-2eaa2099df6c,\"NEW JERSEY BENEFITS FROM RECOVERY ACT: SENATOR ROBERT MENENDEZ HAILS PROGRESS OF RECOVERY ACT \n                    \n                            American Recovery and Reinvestment Act investments in New Jersey underway, new report details some of the early highlights\n                    \n                      June 17, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez, (D-NJ) today released a\nreport showing some of the early highlights of the investments being\nmade in New Jersey through the economic recovery package passed earlier\nthis year. The American Recovery and Reinvestment Act has swiftly\ntargeted areas in which federal investments are essential to avoid more\njob losses, promote the rehiring of employees, start projects that put\nNew Jerseayns to work, and lay the foundation for a stronger economy.\nThe legislation, a top priority of the Congress and President Obama,\nwas signed into law in February in order to proactively address the\nworst since the Great Depression, which has forced companies and\nbusinesses into bankruptcy, eliminated thousands of jobs, and cost\nmillions of American families their homes. “With many New\nJersey families enduring the toughest times they’ve ever faced, it was\ntremendously important for Congress, working with President Obama, to\nbe proactive,” said Menendez. “The economic recovery package focuses\nfirst and foremost on creating jobs, while spurring economic activity\nand laying the groundwork for economic security. In our state, we’ve\nalready seen millions of dollars begin to flow, putting people to work\non construction projects, providing a safety net for people who have\nbeen laid off and creating savings on energy costs. This is just the\nbeginning of what we hope can lead to a badly needed recovery.” For a breakdown of American Recovery and Reinvestment Act allocations\nin New Jersey click on link:\nhttp://dpc.senate.gov/docs/states-fs-111-1-84/nj.pdf  Last\nmonth, over 800 municipal officials attended a stimulus application\nbriefing in Trenton that guided them to the access of Recovery Act\nfunding, so they can request federal funding for their cities and towns\nthat in turn will benefit New Jersey families that struggle day to day\nto create a better life for their loved ones.                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bdf100b9-7f72-4348-9e11-b41ef3dc4184,\"MENENDEZ VOTES AGAINST ENERGY BILL \n                    \n                            Bill threatens NJ with coastline drilling and unwanted power lines. Does not do enough to promote clean energy.\n                    \n                      June 17, 2009\n                     WASHINGTON – U.S. Senator Robert Menendez (D-NJ), a member of the\nEnergy and Natural Resources Committee, today voted against the energy\nbill in committee, citing its failure to go far enough to go far enough\nin spurring the production of clean energy. Menendez cited a few issues\nwith the legislation, including: •    Setting a renewable\nenergy standard that amounts to less than 9% by 2021.  The National\nRenewable Energy Laboratory has found it would be below business as\nusual. President Obama had called for a standard of 25 percent by 2025.\nThis standard represents the percentage of energy generated by\nutilities that must come from renewable sources. •  \n Allowing expanded coastline drilling in the eastern Gulf of Mexico and\nsetting a narrow buffer zone of only 45 miles from the coast. Oil\ncompanies already have access to 68 million acres that they are not\nusing. In addition, the narrow buffer zone could set a risky precedent\nfor states like New Jersey, which could be affected by coastline\ndrilling off of nearby states. •    Electricity transmission\nprovisions that would encourage new lines to be built from coal\ngenerators into New Jersey and would make it difficult for homeowners\nto prevent lines from being sited in their back yards.  “I\nappreciate Chairman Bingaman’s fair and open process on this\nlegislation, but I have strong reservations about the legislation that\nwas produced,” said Menendez. “In the last election, the prevailing\nmessage coming from both political parties and ultimately the voters\nwas a simple one:  change.  But to me this bill has too much\ntraditional thinking that will not point us in a direction that creates\nenough jobs, lowers energy costs enough or produces enough clean\nenergy.  “I also have strong concerns about this bill’s\npotential effects on families in New Jersey. It lays the groundwork for\nunwanted power lines running through personal property in our state and\nit sets a precedent that could bring oil rigs close to the Jersey\nShore. I am standing up in strong opposition to those provisions. “I certainly support important provisions in this bill to improve\nefficiency in buildings, appliances and throughout the Federal\ngovernment, to cut energy costs to consumers and reduce some emissions.\nI also support important measures to make our oil markets more\ntransparent and less vulnerable to manipulation.   “However,\nat the end of the day, I do not think this bill in its current form\ndoes enough yet to change our energy paradigm, to create green jobs, to\nmake us a stronger more independent nation, or to address our climate\ncrisis. I look forward to working closely with Chairman to improve this\nbill on the floor.” # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9f639014-6e2e-426f-864b-755338fbd111,\"MENENDEZ APPLAUDS FINANCIAL REGULATIONS PROPOSAL FROM ADMINISTRATION, SAYS CONGRESS CAN PASS EVEN STRONGER PROTECTIONS FOR CONSUMERS \n                    \n                             NJ Senator is member of Banking Committee\n                    \n                      June 17, 2009\n                     WASHINGTON – Today, President\nObama unveiled new financial regulations meant to protect consumers,\nsolidify financial markets and prevent a repeat of the collapse that\nhelped cause a global economic crisis. Highlights from his proposal\ninclude:\n• A new consumer protection agency\n• New\nstandards to ensure that the largest corporations hold a certain level\nof capital at all times to avoid catastrophic collapses\n• A council of regulators to monitor systemic risk in the financial markets\n• Merging the Office of Comptroller of the Currency and Office of Thrift Supervision, which monitor banks\nU.S.\nSenator Robert Menendez (D-NJ), a member of the Banking Committee,\ntoday said that the proposal represents a good first step that is\nnecessary in the wake of one of the nation’s worst financial collapses.\nHe added that even stronger regulations can be adopted, which he will\nhelp work toward in the committee.\n“Millions\nof families are facing the toughest times they’ve ever experienced –\nthat is in large part a direct result of banks being allowed to take\nrisky action with little or no concern for the potentially devastating\nconsequences,” said Menendez. “We have to make sure real accountability\nis in place for Wall Street so that families don’t again end up paying\nthe price for risky financial schemes. This new proposal from the White\nHouse is certainly a good start – establishing a watchdog that stands\nup for consumers and making sure our largest corporations are on solid\nfinancial footing will help bring stability to our economic system. I\nthink we can provide even more accountability and protections in areas\nlike systemic risk, so that we can head off major threats to our\neconomy before they are realized. I look forward to working with\nChairman Dodd to produce strong financial accountability in the\ncommittee.”\n                                  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ab5d7f58-f96d-4348-89e6-87a8a467356b,\"MENENDEZ APPLAUDS FINANCIAL REGULATIONS PROPOSAL FROM ADMINISTRATION, SAYS CONGRESS CAN PASS EVEN STRONGER PROTECTIONS FOR CONSUMERS \n                    \n                            NJ Senator is member of Banking Committee\n                    \n                      June 17, 2009\n                     WASHINGTON – Today, President\nObama unveiled new financial regulations meant to protect consumers,\nsolidify financial markets and prevent a repeat of the collapse that\nhelped cause a global economic crisis. Highlights from his proposal\ninclude:\n• A new consumer protection agency\n• New\nstandards to ensure that the largest corporations hold a certain level\nof capital at all times to avoid catastrophic collapses\n• A council of regulators to monitor systemic risk in the financial markets\n• Merging the Office of Comptroller of the Currency and Office of Thrift Supervision, which monitor banks\nU.S.\nSenator Robert Menendez (D-NJ), a member of the Banking Committee,\ntoday said that the proposal represents a good first step that is\nnecessary in the wake of one of the nation’s worst financial collapses.\nHe added that even stronger regulations can be adopted, which he will\nhelp work toward in the committee.\n“Millions\nof families are facing the toughest times they’ve ever experienced –\nthat is in large part a direct result of banks being allowed to take\nrisky action with little or no concern for the potentially devastating\nconsequences,” said Menendez. “We have to make sure real accountability\nis in place for Wall Street so that families don’t again end up paying\nthe price for risky financial schemes. This new proposal from the White\nHouse is certainly a good start – establishing a watchdog that stands\nup for consumers and making sure our largest corporations are on solid\nfinancial footing will help bring stability to our economic system. I\nthink we can provide even more accountability and protections in areas\nlike systemic risk, so that we can head off major threats to our\neconomy before they are realized. I look forward to working with\nChairman Dodd to produce strong financial accountability in the\ncommittee.”\n                                  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f478c18f-9994-4390-96bf-43bf6362b1ec,\"MENENDEZ AND CASEY FIGHT TO SUPPORT PROVEN HOME VISITATION PROGRAMS THAT BREAK THE CYCLE OF POVERTY AND IMPROVE THE HEALTH OF LOW-INCOME CHILDREN \n                    \n                            With health care reform on the table, Menendez and Casey introduce legislation that would bolster proven home visitation programs \n                    \n                      June 16, 2009\n                     WASHINGTON – United States Senators Robert Menendez (D-NJ) and Robert\nCasey (D-PA) have introduced legislation to expand proven home\nvisitation programs that provide care and information to families, help\nbreak the cycle of poverty and improve the health and well-being of low\nincome children and families. The Evidence-Based Home Visitation Act\nwould provide states and public and private entities with $2 billion\nover five years to establish or expand home visitation programs proven\nthrough rigorous testing. With health care reform in focus in Congress,\nthe senators are working to ensure that home visitation programs are\nincluded in reform efforts. Theirs is the first legislation known to\nrequire that services meet rigorous scientific standards proving\neffectiveness.  Senator Menendez said: “American families\nlook to Congress to enact sound policies that work and save money. \nScience and practice tell us that evidence-based home visitation\nimproves the prenatal health, development, education and economic\nself-sufficiency of low-income children and families.  This legislation\nwill help transform the lives of hundreds of thousands of families in\npoverty so that they are healthy and productive.  The time to act to\nimprove their lives is now with what we know will work.” Senator Casey said: “I know first-hand the value of these services to\nhelp children and families lift themselves out of poverty.  Low income\nfamilies living in poverty are the greatest in need of these types of\nservices, which can empower parents with the resources and knowledge to\nchange their family’s life course trajectory and help their children to\nreach their full potential.  This legislation will make it possible for\nmore needy families to benefit from high quality services that have\nbeen proven to make a difference.” The Evidence-Based Home\nVisitation Act would create an innovative, competitive grant program to\npromote a wide array of home visitation programs with the strongest\nevidence of effectiveness in producing multi-generational improvements\nin the lives of low-income children and families.  The legislation\nwould also fund and foster improvements in evidence-based programs that\nshow significant promise of meeting the highest standards of\neffectiveness, but that do not currently meet the highest standards of\neffectiveness.  This legislation is one of the only initiatives that\nincentivizes programs to continually improve their effectiveness.  This\nlegislation fulfills one of President Obama’s core initiatives to\npromote the early health and development of children with proven\nprograms designed to achieve results.   The Evidence-Based\nHome Visitation Act would provide critical funding for a variety of\nhome visitation programs that have been proven effective and show\nsignificant promise of achieving results. Both New Jersey and\nPennsylvania have strong home visitation programs which have achieved\nsuccess at breaking the cycle of poverty and improving the health and\ndevelopment of vulnerable families. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f18e2f69-9f2c-4dfd-b67d-11c3b1c8bc14,\"MENENDEZ ANNOUNCES MORE THAN $67 MILLION FOR NEW JERSEY HOMELAND SECURITY PREPAREDNESS \n                    \n                            State gets $26 million in general security grants, Jersey City/Newark gets more than $41 million as high-risk area \n                    \n                      June 16, 2009\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today announced that New\nJersey will receive more than $67 million in homeland security\npreparedness grants for first responders and safety programs. Included\nin the total is $26 million in grants for the state and more than $41\nmillion for the Jersey City-Newark area as a region in the top tier of\nthe Urban Area Security Initiative. Menendez was a champion\nof legislation to implement the recommendations of the 9/11 Commission,\nwhich included an improvement of the homeland security grant process to\na system based more on risk. “Our nation is facing many\nchallenges, but we can never be distracted from ensuring the safety of\nour families,” said Menendez. “That is why this funding for New Jersey\nis so crucial. In our state, we know better than most about the\nimportance of preparedness in areas with concentrated population and\ncritical infrastructure, and this funding helps our first responders\nachieve that. The overall improvements we have made to the funding\nprocess have helped our state receive doses of security funding that\nare much steadier, more substantial and more proportionate to the\nsecurity challenges we face. “The exclusion of Southern New\nJersey communities from the Philadelphia’s Urban Area Security\nInitiative region has been a concern of mine. Philadelphia officials\nhave been cooperating with our state on this issue recently, and I will\nwork to ensure that this cooperation continues so that families in\nSouthern New Jersey communities are properly secure.” Breakdown of homeland security grants: •    State Homeland Security Grant Program -- $25,547,000 •    Urban Area Security Initiative -- $35,298,150 (for Jersey City and Newark) •    Metropolitan Medical Response System -- $642,442 (for Jersey City and Newark) •    Citizen Corps Program -- $357,481 •    Regional Catastrophic Preparedness Grant Program -- $3,617,000 (for Jersey City and Newark) •    Urban Areas Security Initiative Nonprofit Security Grant Program -- $1,667,289 (for Jersey City and Newark) # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=31395874-5108-485c-948b-2552cd56eb78,\"AS HEALTH CARE REFORM TAKES CENTER STAGE IN CONGRESS, SENATOR MENENDEZ STANDS IN FAVOR OF EXPANDING INSURANCE OPTIONS \n                    \n                            At Passaic health center, Menendez says inclusion of \"\"public plan\"\" option would help drive costs down in private insurance market, making health insurance more accessible and affordable\n                    \n                      June 12, 2009\n                     PASSAIC, NJ– Today, U.S. Senator Robert Menendez (D-NJ), stood in\nsupport of expanding health insurance options as part of national\nhealth care reform, which is taking center stage in Congress. Menendez\nsupports including the “public plan” option, which would make available\na variety of health insurance alternatives that are currently not\navailable in the private insurance system. Senator Menendez, a member\nof the Senate Finance Committee, which is drafting a significant\nportion of the system’s reform process, emphad the importance of\nthis piece of legislation, because it ensures increased access and\naffordability in the health care system.  The “public plan” option\nprovides consumers and small businesses with more choices as well as\ncreates competition for private insurance companies that would drive\nprices down. Senator Menendez was joined by New Jersey union leaders\nand workers, as well as small business owner Jacqueline Germany, who\nhas only been able to offer one employee health insurance benefits and\nexclude the other four because of high insurance costs.  “In the\nstrongest nation on earth, access to quality and affordable health care\ntoo often just doesn’t exist,” said Menendez. “I’m not just talking\nabout for the 47 million Americans who have no health insurance at all.\nI’m talking about the millions of middle class families – working\nfamilies – who have health insurance but simply don’t have adequate\nhealth care. Expanding health insurance options gives us the\nopportunity to bring down costs by bringing competition to the\nindustry. It would expand the marketplace, so employers and families\ncan shop and select a benefits plan that works for them.” U.S. Rep. Bill Pascrell, Jr. (D-Paterson), who was unable to attend the\nconference, made the following statement in support of a public option,\n\"\"A public health insurance option is about bringing competition to the\nhealth insurance marketplace, providing Americans with a choice, and\nultimately making health care more affordable. Families will never\nagain have to choose between going to the doctor and paying their\nmortgage.\"\" Pascrell is a member of the Health Subcommittee of the Ways\nand Means Committee, the House counterpart to the Senate Finance\nCommittee.  Standing alongside in support, union leaders and\nworkers called attention to the importance of keeping working families\nand individuals at the center of this debate and protecting their right\nto choose between the public affordable insurance option and those\noffered by for-profit private companies:  \"\"Having the choice of a\npublic plan will help make health care more affordable for patients\nincluding our members, foster greater competition in the insurance\nmarket, and guarantee that quality, affordable coverage will be there\nfor everyone no matter what happens. We believe that by seizing the\nmoment and reforming our broken system, working families will be the\nreal winners,” said Eric Scherzer, Executive Director of The Committee\nof Interns and Residents, which is part of the 40,000 member NJ SEIU\nState Council. Jacqueline Germany, owner of Nina’s Nuances in\nMontclair, NJ, joined Senator Menendez’s press conference.  In business\nfor eight years, Jacquie was able to hire five employees, but because\nhealth care costs were too high was only able to offer coverage to one\nof them. The downturn in the economy took its toll on Jacquie’s\ninterior design business, and last November she was forced to start\nletting go of her employees until she was left with none. Jacquie\nexpressed being in strong support of the public health insurance option\nand would be willing to pay her fair share to cover health care\nbenefits for future employees.  She believes that fixing the health\ncare crisis will be a major step toward reviving our economy.  “As a\nsmall business owner, self-employed person and a citizen I have a\nvested interest in having a healthcare plan that is affordable and\nallows the freedom of choice\"\" The “public plan” option has\nbeen endorsed by President Obama and by Senate Finance Committee\nChairman Max Baucus. The plan would provide Americans with the option\nof choosing an affordable public insurance plan (similar to Medicare)\nin addition to the choices offered through their employers. Small\nbusiness would also be able to save costs by offering this health\ninsurance option to their employees.                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=46b289ee-c459-4af5-a723-eed95c78d201,\"SENATOR MENENDEZ, LAUTENBERG ANNOUNCE $300,000 FOR OCEAN CITY AIRPORT SAFETY AND CAPACITY \n                    \n                      June 12, 2009\n                     WASHINGTON – Today, US Senators Robert Menendez (D-NJ) and Frank\nLautenberg (D-NJ) announced the Ocean City Municipal Airport will\nreceive $300,000 in funds under the Airport Improvement Program (AIP). \nAwarded by the U.S. Department of Transportation Federal Aviation\nAdministration, these funds will be used for the rehabilitation of\nairport’s runway and taxiway lightning and all other associated\nelectrical equipment, and an update of the airport’s Master Plan to\ndetermine the needs of the facility to accommodate future aviation\ndemand.  The Ocean City Municipal Airport will receive these funds in\naddition to the $2.5 million airport received as part of the Economic\nRecovery Act, which was signed into law by President Obama in February\nearlier this year: “We want to ensure that Ocean City Airport is as\nsafe, modern and reliable as possible,” said Senator Menendez.\n“Reliable air travel bolsters the area’s economic competitiveness, and\nthese funds will help ensure safety for travelers and added capacity to\naccommodate future demand increases.” “We need to ensure New\nJersey’s airports are safe and that travelers get to their destinations\non time,” Senator Lautenberg said.  “These funds will help improve and\nmodernize Ocean City’s Airport so it can meet future travel and public\nsafety demands.” Existing lightning at the airport was\ninstalled back in 1997 under a similar AIP grant.  Exposure to the\nharsh salt environment in the area since its installation has resulted\nin considerable corrosion and deterioration. Updates to the airport’s\nMaster Plan to determine the facilities’ future aviation demand will be\ntechnically sound, practical, economically feasible, and\nenvironmentally sound.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ff5defcd-8557-4a99-a500-6401656538ed,\"MENENDEZ AND GILLIBRAND INTRODUCE LEGISLATION TO BUILD UPON NEW IMMIGRATION RULES FOR WIDOWS AND ORPHANS \n                    \n                            Senators applaud this week's administration action as a first step, say that legislation is needed to allow all orphans, widows and widowers of citizens and legal immigrants to continue in the family immigration system \n                    \n                      June 11, 2009\n                     WASHINGTON – Following the Department of Homeland\nSecurity’s announcement of new immigration rules for widows, widowers\nand minor children of deceased US citizens, US Senators Robert Menendez\n(D-NJ) and Kirsten Gillibrand (D-NY) today introduced legislation that\nwould build upon those rules. This week, the administration announced\nthat widows and widowers of US citizens and their children under the\nage of 18 who are living in the US will be granted temporary deferred\naction for two years. DHS also announced that legislation is needed to\naddress this issue permanently.\nMenendez and Gillibrand praised\nthe rules as a first step but agree that legislation is needed to go\nfurther and provide a long-term solution. Their legislation would allow\nwidows, widowers and orphans of sponsoring US citizens, refugees and\nother legal immigrants to continue their applications through the legal\nimmigration system despite the death of their sponsoring relative.\nTheir bill offers a lasting solution for these legal immigrants\nimpacted by the death of a loved one.\nSenator Menendez said: “The\nObama administration showed compassion for legal immigrant families\nthis week with its action. Secretary Napolitano has recognized the\nimportance of family as a basis for our immigration system and avoided\nunfair punishment of those legally waiting in line who have suffered\nthe death of a loved one. However, that was just a first step in the\nright direction. Our legislation is needed to give these widows,\nwidowers and orphans continued access to our legal family immigration\nsystem. These families call the United States home and have done\nnothing wrong to be kicked out of line – they are only in jeopardy\nbecause of the death of a loved one. This reality is reflected in our\nlegislation, and it is important to ensure that it is included in\ncomprehensive immigration reform legislation that we hope will be\nconsidered later this year.”\n\"\"I applaud the Obama\nAdministration for taking an important first step to help families that\nhave lost loved ones, but Congress must act in order to ensure a\nlasting solution for widows, widowers, and orphans as well,” Senator\nGillibrand said.  “I am hopeful that in the weeks and months ahead, we\ncan take action on this legislation and make additional progress to\nprotect families being torn apart by our immigration system.  This is\nan important part of our efforts to reform America's family-based\nimmigration system to reunite loved ones, promote family stability and\nfoster the economic growth that immigrant families have provided\nthroughout our history.\"\"\n                                                     # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b1effd69-7415-41c7-bfb2-54cfe4cfee0b,\"MENENDEZ STATEMENT ON SHOOTING AT HOLOCAUST MUSEUM \n                    \n                      June 10, 2009\n                     WASHINGTON – US Senator Robert Menendez (D-NJ)\nreleased the following statement after a known white supremacist and\nneo-Nazi entered the Holocaust Museum in Washington, DC and opened\nfire, claiming the life of a museum security guard:\n“This\nwas a horrifying act of pure evil by a killer who has made his hatred\nof religious and racial minorities well known. My thoughts and prayers\ngo out to the family of the innocent victim of this unconscionable\nattack. This tragic event is a reminder that, unfortunately, in our\ncountry there do remain isolated groups and individuals that are fueled\nby intolerance. In its most extreme form, this intolerance manifests\nitself in deadly violence. This despicable act is made even more\ndeplorable by the fact that it seems that the killer chose this\nparticular location – a solemn memorial to the victims of one of\nhistory’s darkest episodes. In addition to striking down a noble guard\nin the line of duty, this seems to have been an attack targeted against\nthe Jewish community, and it is reprehensible.”\n                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f4c7a485-8a1c-41af-ac88-3d94d763febf,\"SENATOR MENENDEZ ANNOUNCES MORE THAN $10 MILLION IN RECOVERY PACKAGE FUNDS FOR PATCO LINE IMPROVEMENTS \n                    \n                             Federal funding will provide safety to PATCO High Speed Rail Line passengers with power pole replacement, City Hall station lighting\n                    \n                      June 10, 2009\n                     Camden, NJ - U.S. Senator Robert Menendez today\nannounced that the Federal Transit Administration has provided a total\nof $10,518,495 for the replacement of power poles along the PATCO High\nSpeed Line, and renovations to the 40 year-old PATCO Camden City Hall\nStation lighting system.  These grants, funded under the American\nRecovery and Reinvestment Act of 2009, will bring much needed upgrades\nthat will ensure the safety of PATCO ridership.    \n“This\nfederal funding will provide a safer and more efficient ride for\npassengers by replacing deteriorated PATCO power lines and enhancing\nits signal system” said Senator Menendez.  “Upgrades\nto the City Hall Station lighting will also insure safety to the\nthousands of families that use this rail system to enjoy the Camden\nWaterfront and Campbell’s Field baseball games, as well as to commuting\nworkers and college students that depend on it every day. This funding\nwill also provide jobs and work that will inject money into the Camden\neconomy, providing some economic security in these troubled economic\ntimes.”      \nThese ARRA funds, awarded to the\nDelaware River Port Authority (DRPA) will be used to replace aging\nwooden poles and cables, most of the dating back to the original\nconstruction of the PATCO Line in 1969.   The PATCO pole line transmits\ntraction power and signal power along the PATCO High Speed Line to\npower substations throughout the system from a single power source.\nPoles and cables, which exhibit varying degrees of deterioration, will\nbe replaced with a combination of new more durable fiberglass poles and\nan underground duct-bank and manhole system. Aging fiber-optic and\nother communication and signaling cables will be replaced as required,\nto provide more efficient collision avoidance for the safe movement of\ntransit cars.     The total cost of the post replacement project is\n$36,000,000. The remaining funding   will be provided by DRPA.\n                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=36f6d74f-2c76-4f7c-8055-66f8881ba999,\"Menendez Works to Ensure Community Health Centers are Supported in Health Care Reform\n                    \n                            NJ Senator introduces resolution recognizing the important role of safety net providers \n                    \n                      June 9, 2009\n                     WASHINGTON – As health care reform transitions from the discussion phase to the legislative phase in Congress, US Senator Robert Menendez (D-NJ), a member of the Finance Committee, today introduced a resolution that would recognize the importance of health safety-net providers, such as community health centers, in the reform process. The resolution, co-sponsored by Senator Debbie Stabenow (D-MI), would put Congress on the record in support of the following sentiments:\n• All individuals should have the choice of a community health center as their health care home and every health center should be appropriately reimbursed for the high-value preventive and primary care they provide;\n• Health care reform should include measures to expand community health centers in order to reach more individuals who need a health care home;\n• The current payment mechanisms for Federally-qualified health centers through Medicaid and the Children’s Health Insurance Program are essential to ensuring access to affordable and high-quality preventive and primary care services for beneficiaries of such programs; and\n• Any expansion of private insurance must include mechanisms to ensure the full participation of, and appropriate reimbursement to, Federally-qualified health centers and other safety net providers in order to ensure adequate access to care for those individuals who are medically underserved or disenfranchised.\n• Ensuring access to all safety net providers - including Federally-qualified health centers - will be vital to ensuring that health care reform is successful in expanding access, improving quality, and reducing cost.\n\n“Health safety-net providers, such as community health centers, are vital to ensuring that quality and affordable health care is widely accessible, and they should be a key part of our health care reform plans,” said Menendez. “These centers provide important health services for underserved families, which is not only morally important, but it helps drives down health care costs and reduces strain on hospitals for everyone. We need to make sure that these centers are sustained through a fair reimbursement system.”\n\n                                                       # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d912e1aa-0b12-44a4-be85-262268990fee,\"MENENDEZ STATEMENT ON 65TH ANNIVERSARY OF D-DAY \n                    \n                      June 7, 2009\n                     WASHINGTON – US Senator Robert Menendez (D-NJ) today released the following statement on the 65th anniversary of D-Day:\n“65\nyears ago today, our nation’s Greatest Generation swept in with the\ntide on the beaches of Normandy and turned the tide against the forces\nof fascism and hate. In doing so, they changed the course of World War\nII and world history. We owe those veterans, many of whom made the\nultimate sacrifice, so much, and we honor them today and every day.\nTheir contribution to freedom across the globe will never be forgotten.\"\"\n“It\nis tremendously important to me in ensure that our nation continues to\nhonor and care for World War II veterans. In Congress, we have\nsuccessfully fought to increase the Veterans budget, which had been\nshort-changed. I have championed legislation to properly fund State\nVeterans Cemeteries, because these American heroes deserve dignified\nfinal places of rest. I will continue to work on their behalf in the US\nSenate.”\n                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ecd37195-0235-48cd-8208-b3f476a912eb,\"SENATOR MENENDEZ STATEMENT AFTER MEETING WITH SUPREME COURT JUSTICE NOMINEE JUDGE SONIA SOTOMAYOR TO DISCUSS HER NOMINATION \n                    \n                      June 5, 2009\n                     Washington,DC – After meeting with Supreme Court Justice nominee Judge Sonia\nSotomayor yesterday as she tours Congress to meet privately with key\nmembers of the Senate, Senator Menendez made the following statement:“I\nwas thrilled to meet with Judge Sotomayor to talk about her nomination\nto the Supreme Court. It was once again clear that she is a person of\nincredible intellect, thoughtfulness and respect for the law, as is\nalso reflected her academic and judicial record. She is an\nextraordinary woman who has all the qualifications and qualities\nnecessary to be an outstanding Supreme Court Justice. As a Latino, it\nis personally moving to have a chance to cast a vote on this historic\nnomination of a tremendously experienced and eminently qualified Latina\nnominee.”\n                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7221d723-f884-4adb-bae6-5d0cbe859d30,\"Dear Mr. President: Don't Allow Censorship\n                    \n                      June 4, 2009\n                     WASHINGTON – U.S. Senator Mel Martinez (R-FL), along with Florida colleague Bill Nelson (D-FL), Senator Joe Lieberman (I-CT), and Senator Robert Menendez (D-NJ) this week sent a letter to President Obama asking him to clearly stipulate that U.S. telecommunications firms cannot engage in any activities that would suppress or violate the human rights of the Cuban people. \n\n “Unfiltered information and privacy are fundamental components of freedom,” said Senator Martinez. “We have already seen complicity between U.S. companies and the Chinese government in restricting Web access and identifying Internet-using government critics. Let’s lay the groundwork now so that the same can’t happen in Cuba.”\n“History has taught us that repressive governments have used new technology to suppress freedoms,” said U.S. Senator Bill Nelson.  “We need to make certain Cuba’s officials won’t monitor and police the Cuban people when they use the Internet, for example.”\n“In any new telecommunications regulations related to Cuba, the administration must make it clear that profiting off the continued oppression of others cannot be allowed,” said Senator Menendez. “Compliance by telecommunications firms in censorship or suppression of information merely tightens the Castro regime’s iron stranglehold on basic human rights that the Cuban people deserve.”\n\nThe letter to President Obama notes that on August 8, 2006, a Human Rights Watch report detailed how U.S. telecommunications companies have provided the identity of Internet users to Chinese authorities, resulting in the imprisonment of four Chinese government critics.    The Administration is currently writing new regulations pursuant to the 1992 Cuba Democracy Act. The senators request that regulations authorizing telecommunications links with Cuba include a list of prohibited activities including providing the Cuban government with data or IP-address information that could reveal the identity of individual users, creating a separate infrastructure for tourists, and providing any equipment, software, or technical expertise that would enable the Cuban government to block Internet applications or content.  Click here to read the letter.                                                     ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=df2d7943-01dc-46d6-9778-e4e52a5bc884,\"N.J. SENATORS REACT TO DECISION BY BRAZILIAN JUDGE TO DELAY REUNITING SEAN GOLDMAN AND HIS FATHER \n                    \n                      June 3, 2009\n                     \nWASHINGTON, DC – Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today\nreacted to a decision by the Brazilian Supreme Court judge that\nsuspended a lower court order that would have reunited 9-year-old Sean\nGoldman with his father, David Goldman, of Tinton Falls, New Jersey. \nSean and his father were scheduled to be reunited in Brazil today.\n“Justice has been delayed for the Goldman family too long already,” Sen. Lautenberg said.  “Just\nwhen it appeared that the agonizing wait would finally be over, yet\nanother hurdle was put in the way.  This case deserves prompt\nresolution and we will continue our work until David Goldman and his\nson are reunited.” \nSenator Menendez said: “This\nis a heartbreaking development and an injustice. No one is hurting more\nthan David Goldman, and my thoughts are with him as he fights for his\nson in Brazil. David should know that those of us who have taken action\nto help his cause will not cease our advocacy – we will continue to\nexpress to the Brazilian authorities the importance of adhering to the\nHague Conventions and allowing David to regain his rightful custody of\nSean. At the heart of this case is family, and this New Jersey family\ndeserves to be reunited.”\nSens. Lautenberg and\nMenendez have fought for months to reunite Sean with his father.  Sens.\nLautenberg, Menendez and Russ Feingold (D-WI) were the prime authors of\na Senate Resolution that passed in March calling for Sean Goldman’s\nreturn to the U.S.  In February, Sens. Lautenberg and Menendez sent a\nletter to Brazilian President Luiz Inácio Lula da Silva calling on him\nto follow international law and assist in the return of Sean Goldman to\nhis father.  In January, Sen. Lautenberg met with David Goldman and\nU.S. Ambassador to Brazil, Clifford Sobel, in separate meetings about\nthe abduction case.  Lautenberg also personally urged Brazilian\nAmbassador to the U.S., Antonio Patriota, to press his government to\nfollow international law and return the boy.\n                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=947d59a8-1ca1-48eb-b731-6b271907d235,\"MENENDEZ STATEMENT ON OAS'S CUBA RESOLUTION \n                    \n                      June 3, 2009\n                     WASHINGTON – US Senator Robert Menendez (D-NJ)\ntoday released the following statement on the Organization of American\nStates General Assembly’s resolution on Cuba:\n“This\nweak resolution undermines the OAS’s foundation by only paying lip\nservice to the principles upon which the Democratic Charter stands. It\nallows for loose interpretation of what should be a clear set of\nfundamental democratic principles and standards regarding human rights,\nand we are already seeing this interpretation play out. The member\nstates of the OAS could have used this as an opportunity to reaffirm a\ncommitment to democracy and human rights by defining an unambiguous\npath by which Cuba would be readmitted. It would be a path guided by\nthe fundamental principles of the OAS, including those outlined in the\nInter-American Democratic Charter and the OAS Charter, and including\nthe release of political prisoners, the adoption of basic human rights\nand democratic reforms. I will closely watch how this process unfolds,\nbut a lack of commitment to democracy and human rights at the OAS will\nbring a debate into the U.S. Congress about how much we are willing to\nsupport the OAS as an institution.\"\"\n“This is a\nsad day for the human rights activists, political prisoners and\nindependent journalists who are struggling inside of Cuba to promote\npeaceful democratic change. It is also a sad day for the U.S., in which\nit has become evident that our leadership in the Hemisphere has ebbed\nto this low. This is the result of a long-standing absence of U.S.\nleadership in the Hemisphere and the continuing lack of a relevant\nLatin America agenda. Unless the Obama administration has a more\nexpansive plan of engagement in the region, Cuba will continue to\ndominate the discussion and democratic principles will continue to\nerode. We could have used the General Assembly in Honduras to discuss\nenergy, public security, and economic and social development. Instead,\neven after the unprecedented gestures of goodwill sent by the Obama\nadministration, we fought for three days over absurdly vague language\nthat we can expect will be the source of constant disagreement moving\nforward. Only by the administration having a hemispheric plan of action\nand a real engagement in Latin America will we avoid this in the\nfuture.”\n                                                       # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=82b52ff2-2fae-4e7e-84c1-284ea623ecf9,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $8 MILLION FOR HEALTH CARE AND RESEARCH PROJECTS IN NEW JERSEY\n                    \n                      June 2, 2009\n                     WASHINGTON, DC - U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Health and Human Services has awarded more than $8 million in federal funds to seven New Jersey Research institutions and one provider of neighborhood-based health care to conduct health care research and expand community-based care in New Jersey. The funds will support research in variety of areas, including mental health, cancer treatment and neurological disorders, and help families get medical care close to home.\n\"\"In this tough economy, we need to do all we can to help families afford to see doctor and get the health care they need,\"\" Sen. Lautenberg said. \"\"These funds will help keep our residents healthy and can lead to the breakthroughs that will help people live longer, healthier lives.\"\" \"\"In these times of economic difficulty and vulnerability, we must ensure access to quality health care is easy and affordable. These funds will help expand neighborhood-based care throughout New Jersey, while spurring development of life-saving breakthroughs and maintaining New Jersey leadership in key areas of medical research,\"\" said Senator Menendez.\nThe $8,255,309 will be divided as follows:\nNeighborhood Health Services Corporation, Inc. • $2,227,725 for neighborhood health centers\nUniversity of Medicine and Dentistry New Jersey, New Jersey Medical School • $1,343,464 to analyze drug resistance strains of tuberculosis • $390,000 to study ways to immunity to the \"\"Toxoplasma\"\" infection • $351,000 to study the structure and function of biofilm agents • $195,000 to study the proteins involved in the replication of the Hepatitis C Virus • $195,000 for a sensory testing and genetic study\nUniversity of Medicine and Dentistry New Jersey, Robert Wood Johnson Medical School • $500,000 for a high-resolution mass spectrometry system • $390,000 for clinical research related to neurological disorders • $78,000 to investigate gene therapy\nRutgers the State University of New Jersey • $371,581 to study the relationship between heavy drinking and violence • $357,592 for mental health services and systems training programs • $226,214 to improve testing for ricin intoxication • $61,445 to study influences on reward-seeking behavior as it relates to drug abuse\nPrinceton University • $25,000 for research tools called \"\"LuxS Quorum-Sensing Inhibitors\"\"\nNew Jersey Institute of Technology • $281,375 for mental health research\nStevens Institute of Technology • $231,571 to study the growth of biofilm, a structured community of microorganisms • $79,000 for research related to neurological disorders\nMontclair State University • $199,356 to study eye movement to determine language comprehension\nKessler Medical Rehabilitation • $77,500 to study the quality of life of individuals with Huntington's disease\nHackensack University Medical Center • $361,673 for cancer treatment research\nVeterans Biomedical Research Institute • $312,813 for clinical research related to neurological disorders\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ecd1dac8-e566-45ab-b602-60839bef891e,\"HEALTH INSURANCE REFORM: SHARE YOUR THOUGHTS\n                    \n                      June 1, 2009\n                     As a member of the Senate Finance Committee, Senator Menendez is\nplaying an active role in drafting legislation to provide access to\ncomprehensive, affordable health care coverage. In order to best\nrepresent the views of New Jersey constituents and stakeholders,\nSenator Menendez would like to hear your thoughts and concerns about\nhealth care reform. Please feel free to share your observations and\nideas about how to improve our current system by e-mailing our office\nat ideas@menendez.senate.gov. Also, we would welcome hearing your personal stories and struggles about receiving health care in America today.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=65903624-f3b0-4753-be5c-6735736c2a5c,\"MENENDEZ ISSUES STATEMENT ON ADMINISTRATION PLANS TO RESUME MIGRATION TALKS WITH CASTRO REGIME\n                    \n                      May 26, 2009\n                     WASHINGTON - Upon word that the Obama administration plans to resume previously suspended migration talks with the Castro regime, US Senator Robert Menendez (D-NJ) released the following statement\"\"These talks have been suspended in the past by both the Clinton and Bush administrations because of a lack of goodwill on the part of the Castro regime. Such a gesture will probably be well-received by the Castro brothers, since it provides them with a perception of legitimacy and gives them the attention they seek. The 20,000 visas that the U.S. has offered in the past for Cuban nationals have proven to be a huge asset for the Castro regime in the way they control the exit of those selected by the US to receive a visa and use them as a tool for repression. \"\"Moving forward on these talks without progress on the part of the regime is inconsistent with the administration's stated interest in first seeing movement on the Castro regime's side. Instead, these talks should be conditioned on loosening the exit visa restrictions and allowing American diplomats to visit repatriated migrants to monitor whether or not they are being penalized. Right now, people are languishing in Castro's prisons for simply ‘exiting illegally.'\"\"The administration is missing opportunities to make real change in Cuba by not conditioning this type of opportunity on the regime acting to stop denying its citizens exit visas and charging exorbitant amounts of those who they chose to let exit.\"\"\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=79016b79-5d56-4ca8-9039-8c2cf37d55e6,\"MENENDEZ MEMORIAL DAY STATEMENT IN HONOR OF THE U.S. MILITARY\n                    \n                      May 26, 2009\n                     WASHINGTON - In advance of tomorrow's observance of Memorial Day, US Senator Robert Menendez (D-NJ) released the following statement:\"\"The men and women who have made the ultimate sacrifice in service of our country represent the best of our great nation, and we honor them. Whether we are attending a Memorial Day remembrance, a parade or simply spending time with friends and family, we include them in our thoughts and are thankful that their service has allowed us to lead our lives in freedom. We salute their service and their sacrifice.\"\"\"\"A grateful nation honors its veterans and active military not just on Memorial Day, which is certainly important, but also every day. And a grateful nation honors them not just in words, but also in deeds.\"\" \"\"In Congress, we are working to reverse shortcomings in our Veterans Affairs system that became painfully evident since the beginning of the wars in Iraq and Afghanistan. We are also working to implement responsible foreign policy. We have passed into law a GI Bill for the 21st Century that allows our servicemen and women to get quality educations. As part of the economic recovery package this year, we made investments in VA medical facilities and cemeteries, in a more efficient Veterans benefits and services system and in supporting Veterans and their survivors during this economic crisis. Personally, I have championed investments in State Veterans Cemeteries to ensure that the Greatest Generation has respectable final resting places. These are just some of the actions we are taking and will continue to take to support our troops and veterans. They deserve nothing less.\"\"                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3e79602d-1b5c-476e-9153-a9e977c348b0,\"LAWMAKERS DISAPPOINTED IN FUNDING FOR BEACH REPLENISHMENT PROJECTS IN NEW JERSEY\n                    \n                      May 22, 2009\n                     Washington, D.C. --- U.S. Sen. Robert Menendez and U.S. Rep. Frank Pallone, Jr. expressed disappointment today that only one beach replenishment project in New Jersey received funds through the administration's Fiscal Year 2010 budget. When the administration announced its FY10 budget earlier this month, the lawmakers were pleased with a policy change to allow beach replenishment projects to compete for funding in the budget. However, they were concerned that the budget only allocated $52 million for beach replenishment projects nationwide, an amount the Army Corps of Engineers could use for New Jersey projects alone.\"\"Maintaining and replenishing the Jersey Shore is an issue of economic security for our state and for families in our coastal communities,\"\" Menendez said. \"\"It protects these communities from storm damage and prepares for the inevitable sea rise. That is why it's particularly disappointing that the administration's budget proposal omits some of our major coastal needs. We will be working to address this through the budget and appropriations process in Congress.\"\" \"\"The guidelines imposed by the Office of Management and Budget for beach replenishment projects have allowed crucial shore protection projects to go unfunded,\"\" Pallone said. \"\"We will once again have to fight in Congress for funding through the appropriations process, which will mean fewer dollars for these important projects that spur economic growth and protect our coastal communities.\"\"The New Jersey lawmakers have been fighting to secure funding for these crucial projects since OMB made the decision to exclude shovel-ready beach replenishment projects from receiving funds through the American Recovery and Reinvestment Act.The lawmakers plan to meet with OMB to try and change this policy for the future. For now, they will concentrate on the appropriations process, which makes all funding decisions.                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=75884053-923d-45a7-98e5-c61d21622de0,\"MENENDEZ, CHAMPION OF CREDIT CARD REFORM, HAILS PASSAGE OF LANDMARK CREDIT CARD LEGISLATION IN U.S. SENATE\n                    \n                            Member of Banking Committee helped craft major provisions in bill, including protections for consumers under 21\n                    \n                      May 19, 2009\n                     WASHINGTON – The US Senate today passed landmark credit card reform legislation by a 90-5 vote. This legislation will end a number of deceptive and predatory practices, including surprise and unjustified interest rate increases and unreasonable penalties.\nUS Senator Robert Menendez (D-NJ) is a member of the Banking Committee and has been a champion of credit card reform, having authored the Credit Card Reform Act (http://menendez.senate.gov/newsroom/record.cfm?id=308071). He helped craft major provisions in this bill, including:\nProtecting college students and other consumers under the age of 21 by requiring them to proactively opt in to receiving credit card solicitations rather than automatically receiving them, as is now the case\nRequiring credit card companies to verify an applicant’s financial ability to hold the credit card before giving approval, much like new regulations in the mortgage system\nProhibiting credit card companies from giving away free merchandise on college campuses in exchange for filling out a card application and requiring public posting of deals between credit card companies and colleges that may provide the card companies with student data (Menendez joined Sen. Feinstein on this provision)\nRequiring companies that charge payments but advertise “free” credit reports to disclose, “This is not the free credit report provided for by federal law” (Menendez joined Sen. Levin on this provision).\nMenendez released the following statement:\n“Those of us who have been championing credit card reform for years have faced obstacle after obstacle, but today we may have cleared the final major hurdle. With this vote, we can confidently say that the trap doors will be sealed shut, the booby traps will be dismantled and the erasable ink will be poured down the drain.\n“Families too often feel like, while they take their own finances seriously, credit card companies treat it as a game. They feel like every time they swipe their card, a trap door will open beneath them. This legislation will finally help make things fair between cardholders and credit card companies. It will make sure that responsible cardholders are treated responsibly by the companies. As debt piles up for so many families struggling in this economic crisis, they need to know they won’t be tricked or abused by credit card companies. It is also vitally important to help prevent young consumers from being sucked in to a cycle of debt before they’ve even had a chance to get on their feet. This bill will help foster this type of economic security.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f0234d4d-3837-4eff-91cf-55af0480f3a8,\"LAUTENBERG AND MENENDEZ APPLAUD OBAMA PLAN TO END SLOT AUCTIONS AT NEW JERSEY-NEW YORK AIRPORTS\n                    \n                      May 14, 2009\n                       WASHINGTON, DC - Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today applauded a decision by the Obama Administration to end slot auctions at airports in the New Jersey-New York area airports.  Under the Administration's proposal, the Department of Transportation would halt plans announced by the Bush Administration last October to withdraw slots from airlines flying in the region and auction them to the highest bidder.            \"\"This is welcome news for our state and our region.   The slot auction plan was wrong for fliers and wrong for our residents.  I commend Secretary LaHood and President Obama for their work to end this senseless experiment,\"\" Sen. Lautenberg said.  \"\"It is time to work with the Port Authority and the airlines on a plan that will actually reduce flight delays without increasing airfares.\"\"            Senator Menendez said: \"\"I said from the time this plan was first announced that it had the potential to price middle class families in our region out of flying at desirable times, and I'm glad that President Obama is grounding it. Families in our region should not be subject to what amounts to an additional flight tax for where they happen to live. I look forward to working with President Obama and Transportation Secretary LaHood on what will hopefully be more sensible air travel policy that will make air travelers a priority.\"\"            Sens. Lautenberg and Menendez have long opposed the auction plan as counterproductive and potentially very costly to consumers. Instead, he have called on the FAA to modernize its equipment, adequately staff its control towers, and expedite new technology to increase airport capacity.  In December 2008, they welcomed a court order delaying the Bush Administration's scheme to auction off arrival and departure slots at the New York metropolitan region's airports.            In 2007, Lautenberg and Menendez helped secured into law two measures to reduce flight delays and ease congestion in New York/New Jersey airspace. One provision required the federal government to provide a plan to Congress to reduce flight delays in the region, the nation's most densely congested airspace. The other measure required the GAO to investigate the FAA's Airspace Redesign Plan, as well as the effectiveness of a variety of approaches used nationwide to reduce flight delays, including the auction plan.# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3406a624-6f26-499b-82dc-77dc6eda0e38,\"MENENDEZ STANDS UP AGAINST FORCING NJ TO ACCEPT TRANSMISSION LINES AGAINST ITS  WILL\n                    \n                            As Energy and Natural Resources Committee considers legislation on transmission of electricity, NJ senator also stands up against dirty production of energy\n                    \n                      May 13, 2009\n                     WASHINGTON - US Senator Robert Menendez (D-NJ) today made his serious concerns on new electricity transmission legislation known with an attempt to change the legislation through a major amendment in the Energy and Natural Resources Committee. Menendez is concerned that, should the bill become law, New Jersey families could find electricity transmission lines placed on or near their property or other protected areas, without having any say. Furthermore, Menendez is concerned that new transmission lines would be used to transmit electricity generated from dirty fossil fuels sources instead of being used expressly for electricity from renewables.Menendez's attempt to restrict the ability to take land for these transmission lines was voted down, as expected; however, he intends to continue making this case and attempting to change the legislation at other stages of the process.\"\"New Jersey has been eyed as prime territory for new transmission lines coming from coal country to New York City, the Northeast and the Mid Atlantic regions,\"\" said Menendez. \"\"Under this legislation, a New Jersey family could be helpless to fight new high-powered transmission lines that are proposed for placement in their backyards. It is important to me to stand up to protect New Jersey families' property and to stand up against a proposal that would encourage additional electricity production from dirty fossil fuels sources rather than only from clean renewable sources. This was only the first of my attempts to make this point and help change the bill.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2c8c04c7-8997-4efb-bbc1-e1504a865ea6,\"Keeping Children and Teens Safe Online: Sen. Menendez, Rep. Wasserman Schultz Propose National Grant Program for Internet and Wireless Safety Education\n                    \n                            They are joined by Cynthia Logan, whose daughter took her own life after \"\"sexting\"\" incident, as well as Miss Utah 2008 and national cybersafety leaders\n                    \n                      May 13, 2009\n                     WASHINGTON - As the Internet and wireless devices play increasingly important roles in the lives of children and teens, and as dangers such as \"\"sexting\"\" and \"\"cyberbullying\"\" become increasingly prevalent, U.S. Senator Robert Menendez (D-NJ) and Congresswoman Debbie Wasserman Schultz (D-FL) today unveiled legislation that would support and develop programs nationwide to educate schoolchildren, teachers and parents about keeping the Internet safe for children and teens.\nThe School And Family Education about the Internet (SAFE Internet) Act will create a grant program to support existing and new Internet safety education programs that meet guidelines based on the cybersafety strategies found to be most effective. In announcing the bill, the lawmakers were joined by Cynthia Logan, who has become a nationally-known Internet safety advocate after her daughter Jessie took her own life following a sexting incident; Miss Utah 2008, Kayla Barclay, whose platform is Internet safety; Parry Aftab, executive director of WiredSafety; and Judi Westberg Warren, CEO of Web Wise Kids.\n\nSenator Menendez said: \"\"The way to meet the challenges and opportunities the Internet presents isn't to deny our children access to this great resource but to make sure they know how to use it wisely. Just as we make sure our children know not to talk to strangers, not to bully kids on the playground, and not to give out their personal information, we have the same responsibility to teach them to apply these values online. That's why I'm introducing this bill to make Internet safety the strong federal priority it should be.\"\"\nCongresswoman Wasserman Schultz, a mother of three young children under 10, said: \"\"The Internet has opened up the world for our children, but it has also opened up our children to the world. Educating children must be our first line of defense to keep them safe from the dangers of online predators, cyber-bullies, ‘sexting,' and other online dangers. This bill will help fund high quality, engaging, and age-appropriate Internet safety education programs to teach our children how to be smart and safe online and reduce their risk of being victimized by Internet crime.\"\"\nCynthia Logan said: \"\"My daughter, Jessie, sought the help from her school when a picture meant only for her boyfriend was shared with everyone. She took her own life after no one would help her stop the harassment. The SAFE Internet law will help teach schools how to respond when one of their students is victimized online. I want to thank Senator Menendez and Rep. Wasserman Schultz for caring about our children.\"\"\nKayla Barclay said: \"\"My goal as Miss Utah is to help make our families safer online. I have become a WiredSafety Ambassador to help spread the ‘what were you thinking?' message to high school and college students. The SAFE Internet bill will make my job easier by giving schools, families and students themselves the information and tools they need to make smart choices online.\"\"\nParry Aftab, Executive Director of Wired Safety said: \"\"It takes a cybervillage to keep our kids safe online - engaged industry leaders, connected schools, empowered parents, attentive law enforcement, informed kids and responsive policymakers. The SAFE Internet law brings all stakeholders together and encourages them to collaborate to deliver effective programs. Programs with merit will finally get the support they deserve. We've waited years for this. Thank you.\"\"\nJudi Westberg Warren, CEO of Web Wise Kids, said: \"\"Web Wise Kids applauds Senator Menendez and Congresswoman Wasserman Schultz for their leadership in sponsoring this bill and recognizing the critical importance of programs to keep children safe in a cyber world. Today's digital world presents a tremendous opportunity for innovation but also significant challenges to keep children safe. Our kids' futures depend on their understanding and leveraging technology in a smart way. We urge swift passage of this legislation which will help prevent online victimization of millions of children.\"\" \nJim Steyer, CEO and founder of Common Sense Media, said: \"\"The Internet and digital media are already an integral part of our kids' lives. That means it's up to all of us - parents, educators and policymakers - to provide the best possible tools to help them become great digital citizens and to help them make smart, safe choices about the media they consume and create.  Technology is here to stay and this legislation is a great way to make sure kids have the tools they need for the future.\"\"\n\nSchool And Family Education about the Internet Act (SAFE Internet) Act\nShort summary: This bill would establish an Internet safety education grant program.  It would initially fund research to determine best practices in Internet safety education and create guidelines for the grants. Then, using those guidelines, grants would be awarded to the following eligible recipients:1. a partnership between a State Educational Agency (SEA) and one or more Local Education Agencies (LEA); or2. a LEA of a State; or3. a non-profit organization; or 4. a partnership between a nonprofit organization and -a. one or more SEAs; orb. one or more LEAs; or c. a consortium of schools.\nFor the following purposes:1. identify, develop, and distribute Internet safety education programs, including, but not limited to, educational technology, multimedia applications, online resources, and lesson plans;   2. provide professional training in Internet safety and Internet media literacy to teachers, administrators, and other staff;3. develop youth online risk prevention programs;4. train and support peer-driven Internet safety education initiatives;5. coordinate and fund research initiatives that investigate youth online risks and Internet safety education;6. develop and implement media campaigns to promote awareness of youth online risks and Internet safety education; and7. educate parents about identifying and protecting their children from online risks;\nGrant applications that have one or more of the following characteristics will be prioritized in the selection process:• are collaborative• target at-risk children• provide services at no-cost to schools• accommodate multiple languages• accommodate differing levels of technological sophistication• have a plan to continue program after grant funds run out\nFunding: Authorized at $35 million per year from FY2010 through FY2014.\nMore details:This legislation would authorize a five year grant program, under which each grant will be awarded for a two year period.  Grant guidance and awards will be administered by the DOJ, in concurrence with the Department of Education, and the Department of Health & Human Services (the applicable agency heads), and in consultation with education, Internet safety, and other relevant experts.  This grant guidance will also be in line with established principles and research-based recommendations as provided in the Act.  The applicable agency heads shall contract with an independent research organization to conduct an initial investigation of current Internet safety education programs and youth online risk.\nThis research group shall have 3 months to report the following:1. The nature and prevalence of current Internet safety education programs and any evidence-based research conducted on them already; 2. Findings regarding at risk children; and3. Any other area the applicable agency heads shall require.This research group shall also identify gaps in Internet safety education and youth online risk research.\nAs the grant administration process continues, and as the appropriation level permits, the applicable agency heads shall contract with the research organization to continue research in the identified gap areas.  The research organization shall report its findings back to the applicable agency heads and the findings shall be included in the Final Report to Congress.\nFunds appropriated under the grant program may also be used to support media awareness campaigns, which will be another way to disseminate the research and messages out to schools, parents, teachers, and kids.\nThis Final Report will use this research, grantee reports, and testimony from hearings, to further refine best practices in Internet safety.  The goal is to use independent, more comprehensive research and objective studies of the effectiveness of individual Internet safety programs to confirm what really works, and what protects children best.\n # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=16fc80d9-465f-4d07-9a54-0bc94b9c89f3,\"SENATOR MENENDEZ AND LAUTENBERG ANNOUNCE $61 MILLION IN FUNDS TO HELP ADDRESS HOUSING AND JOBS CRISES\n                    \n                            Programs will finance acquisition and construction of affordable housing for working families\n                    \n                      May 11, 2009\n                     WASHINGTON - US Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced the state of New Jersey will receive $61 million in economic recovery act funds through a program to finance the purchase and construction of affordable housing units across the state, which will help create jobs while bringing down housing costs for working families. Part of an innovative partnership between the Department of the Treasury and the Department of Housing and Urban Development, state housing agencies will receive resources from Treasury through the Recovery Act from which they can in turn provide cash assistance to developers of qualified affordable housing projects to fill gap that has been created as result of a decrease in investment through the Low Income Housing Tax Credit across the nation.Senator Menendez said: \"\"These are tough times for families who are facing foreclosure or searching for employment. These federal funds will be doubly effective in helping to ensure economic security for our families by creating jobs and affordable housing.  Jumpstarting the construction of affordable housing for moderate and low income families in itself will help create thousands of jobs across a broad range of work specialties. This is the type of comprehensive initiative we need to successfully spur an economic recovery.\"\"            \"\"In these tough economic times, we need to do all we can to help create jobs and ensure available, affordable housing across New Jersey,\"\" Sen. Lautenberg said. \"\"These funds will go a long way toward creating jobs and ensuring families across our state have a place to call home.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=755636d2-11e1-41ad-9ddd-991e26fb9d2e,\"MENENDEZ, MARY JO CODEY, ADVOCATES JOIN IN A MOTHER'S DAY PUSH FOR LEGISLATION TO COMBAT POSTPARTUM DEPRESSION\n                    \n                            Menendez's MOTHERS Act needs final push for passage in Congress\n                    \n                      May 11, 2009\n                     WASHINGTON - US Senator Robert Menendez (D-NJ), former New Jersey First Lady Mary Jo Codey, other advocates and health professionals today gathered at Valley Hospital in Ridgewood to push for the passage of Menendez's legislation that would increase the federal commitment to combating postpartum depression. The MOTHERS Act has wide support in Congress, but has been blocked primarily because of the opposition of a singular senator, Sen. Tom Coburn (R-OK). Codey has been public about her battle with postpartum depress and in support of the legislation.Senator Menendez said: \"\"Mother's Day was not only a day to celebrate our mothers, but also to reflect on the burdens and challenges many of them face because of their enormous responsibility. Millions of mothers know all too well that postpartum depression is not only a real and debilitating condition, but that the education and support system is lacking. A federal commitment to educating and supporting new and expectant mothers can go a long way toward protecting women's health and maintaining strong families.\"\"Mary Jo Codey said: \"\"I would pray to St.Jude, the Patron Saint of Hopeless Cases, that if I could get out of this very dark and devastating depression, I would make it my mission to help all women and families suffering with this horrible illness called postpartum depression. I would make sure that these women and families wouldn't have to suffer the same pain as I did. This is why I am so committed to seeing the MOTHERS Act passed into law.\"\"Susan Stone Chair of the President's Advisory Council for Postpartum Support International said: \"\"The Melanie Blocker Stokes MOTHERS Act, with its multifaceted and prosocial initiatives, will unite the pivotal communities of education, medicine, psychiatry, research and social support to better protect our nation's most critical social dyad of mother and child from the devastation of maternal mood disorders. We salute Senator Robert Menendez for continuing to champion this life-saving legislation for the betterment of maternal, infant and family health.\"\"Sylvia Lasalandra Frodella, a New Jersey-based postpartum depression advocate and author, said: \"\"The Melanie Blocker Stokes MOTHERS ACT will inform all women that, they don't have to suffer in shame or silence, if she's confronted with feelings of depression following the birth of her newborn. It will help alter this nation into one that recognizes that postpartum depression is not a badge of dishonor but, rather, an obstacle that can be overcome by new mothers with support, education, counseling, and the early intervention of their family and loved ones.\"\"Postpartum depression is a serious and disabling condition affecting hundreds of thousands of new mothers each year. The new legislation would increase federal efforts to combat postpartum depression by:• Encouraging Health and Human Services (HHS) to coordinate and continue research to expand the understanding of the causes of, and find treatments for, postpartum conditions.  • Encouraging a National Public Awareness Campaign, to be administered by HHS, to increase awareness and knowledge of postpartum depression and psychosis.  • Requiring the Secretary of HHS to conduct a study on the benefits of screening for postpartum depression and postpartum psychosis.  • Creating a grant program to public or nonprofit private entities to deliver or enhance outpatient, inpatient and home-based health and support services, including case management and comprehensive treatment services for individuals with or at risk for postpartum conditions.  Activities may also include providing education about postpartum conditions to new mothers and their families, including symptoms, methods of coping with the illness, and treatment resources, in order to promote earlier diagnosis and treatment.It is estimated that postpartum depression (PPD) affects from 10 to 20 percent of new mothers. In the United States, there may be as many as 800,000 new cases of postpartum conditions each year.  The cause of PPD isn't known but changes in hormone levels, a difficult pregnancy or birth, and a family history of depression are considered possible factors. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e7f24876-651a-4d3d-aa79-048ca1e34513,\"MENENDEZ URGES A.G. HOLDER TO HELP WORK OUT ISSUES BARRING NEWARK AND CAMDEN POLICE FROM RECEIVING FEDERAL FUNDS\n                    \n                            Past mistakes have made Newark, Camden ineligible for funding from econ. recovery package\n                    \n                      May 8, 2009\n                     WASHINGTON - Upon the revelation that the police departments in Newark and Camden will be ineligible to receive COPS program funding from the economic recovery package because of mistakes dating back to previous leadership, US Senator Robert Menendez (D-NJ) is urging US Attorney General Eric Holder to work with these departments to find a way to address the mistakes and make them eligible for the new funding. In his letter to Holder, Menendez says that the mistakes shouldn't be ignored, but that the safety of families in those communities should not suffer because of bureaucratic mistakes. Newark and Camden have the two largest police departments in the state.Menendez wrote: \"\"Public safety must always be a top priority, and families in these communities should not have their safety compromised because of bureaucratic mistakes that were not their fault. These police departments should not get a free pass, but they should be given a sincere opportunity to address prior mistakes and continue to enhance public safety through the use of federal investments.\"\"PDF of letter to Holder: http://menendez.senate.gov/pdf/05072009CamdenNewarkCOPSfundingfinal.pdfText of letter:May 7, 2009Attorney General Eric HolderUnited States Department of Justice 950 Pennsylvania Avenue, NW Washington, DC 20530-0001Dear Attorney General Holder:I am writing to express my concern about recent reports listing two of New Jersey's largest police departments among 26 police agencies in 16 states that are barred from receiving federal economic recovery package funds for Community Oriented Policing programs due to alleged past grant violations. Specifically, I would ask that you work with these New Jersey departments to review their particular situations and explore all possible arrangements with these Police Departments to ensure they have access to federal recovery investments for public safety programs.The Police Departments in Newark and Camden are among the largest departments barred from receiving stimulus funds.  It is vitally important to New Jersey families that we ensure our communities have adequate police protection. Given the severity of the economic recession, the cities' severe financial distress, higher than average crime rates in these cities and the fact that any noncompliance occurred during a previous administration, I believe their situations merit review. In the case of the Newark Police Department, there is not only a new city administration but also new leadership at the Police Department. With regard to the Camden Police Department which is now under the direction of the New Jersey Attorney General, new financial controls are being implemented in conjunction with the State Attorney General's Office.I ask that you please review documentation of any past funding violations and explore all options that might exist to allow the Police Departments to repay debts over an extended period of time.  An extended repayment plan could allow these departments to protect public safety during this current economic crisis. To ensure that all federal funds are appropriately managed, new financial arrangement should include new financial and program management controls. Public safety must always be a top priority, and families in these communities should not have their safety compromised because of bureaucratic mistakes that were not their fault. These police departments should not get a free pass, but they should be given a sincere opportunity to address prior mistakes and continue to enhance public safety through the use of federal investments.Thank you for your consideration and I look forward to working with you on this important matter.Sincerely,Senator Robert Menendez  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=feec8778-de19-4504-bdab-8880f12cf951,\"LAWMAKERS STRESS CONCERN OVER FUNDING LEVELSFOR BEACH REPLENISHMENT IN ADMINISTRATIONS' BUDGET\n                    \n                      May 8, 2009\n                     Washington, D.C. --- U.S. Sen. Robert Menendez and U.S. Rep. Frank Pallone, Jr. applauded the administration's policy change to allow beach replenishment projects to compete for funding in the budget. However, they expressed concern that the administration's Fiscal Year 2010 budget only allocated $45 million for beach replenishment projects nationwide, an amount the Army Corps of Engineers' could use for New Jersey projects alone.The Office of Management and Budget (OMB) has established strict guidelines for funding beach replenishment projects, which effectively eliminate most of the ongoing beach replenishment projects around the country, including in New Jersey.            \"\"The policy change reflected in the President's budget does not go far enough to ensure that we get the dollars we need for shore protection,\"\" Pallone said. \"\"By applying arbitrary budget criteria, OMB is allowing projects, like those in New Jersey that have been prioritized by the Army Corps, to go unfunded.\"\"\"\"Preserving the Jersey Shore is essential to protect our economy, to save families' property and to defend our state against dangers of global warming,\"\" Menendez said. \"\"Working toward these goals is important for an economic recovery and long-term economic security for our families. This level of beach replenishment funds is concerning, and we will work in Congress to secure the necessary investment in our Shore communities.\"\"            The New Jersey lawmakers have been fighting to secure funding for these crucial projects since OMB made the decision to exclude shovel-ready beach replenishment projects from receiving funds through the American Recovery and Reinvestment Act.            \"\"Beach replenishment projects spur economic growth by creating jobs and promoting tourism in coastal communities,\"\" Pallone said. \"\"The projects are also important for protecting communities from weather disasters and rising sea levels. We should leave it up to the experts at the Army Corps to decide which projects are the most important, instead of allowing arbitrary OMB criteria decide for us.\"\"            The lawmakers plan to meet with OMB in the upcoming weeks to try and change this policy for the future. For now, they will concentrate on the appropriations process, which makes all funding decisions.          \"\"Once again, it looks like we will have to fight in Congress to fund beach replenishment in our district based on the Army Corps' priorities,\"\" Pallone said. \"\"This will likely mean fewer dollars, but it is the best we can do for the next fiscal year.\"\" ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=558ee2b8-ba22-4264-96ea-797cb4ddf511,\"Menendez Announces A Federal Commitment To The New Hudson Mass Transit Tunnel\n                    \n                            President's FY2010 budget includes priority designation for tunnel, along with $200 million\n                    \n                      May 7, 2009\n                     WASHINGTON - President Obama's FY2010 budget, to be released today, will include a firm commitment from the federal government to the mass transit tunnel across the Hudson along with $200 million for the project, according to U.S. Senator Robert Menendez (D-NJ). In a conversation with US Transportation Secretary Ray LaHood today, Menendez was informed that the budget provides for an Early Systems Work Agreement, signaling full federal support of the project, and will receive the $200 million under the pool of money for high priority transit projects included in the economic recovery package passed earlier this year.\nMenendez, who has helped secure millions of federal dollars for this project, is the Chairman of the Banking Committee's Subcommittee on Housing, Transportation and Urban Development, which oversees mass transit funding issues. He had personally pressed Secretary LaHood before was confirmed by the Senate for funding and an Early Systems Work Agreement. He has also discussed this issue with the nominee to head the Federal Transit Administration, whose nomination is currently before the Banking Committee.\n\n\"\"A firm commitment from the administration on this project means that it's going forward, full speed ahead,\"\" said Senator Menendez. \"\"This is a project that will create jobs in this tough employment environment, will help save time and money for commuters and will help clean our air. These are all components for an economic recovery and for laying the foundation for our families' economic security. Having pressed administration transportation officials for this designation, they know that I think this was a wise move, and I look forward to continuing to work with them to ensure that we have the investments necessary to get this tunnel completed.\"\"\n\nMenendez, who while in the US House of Representatives represented the Congressional District through which this tunnel will run, has been a long-time proponent of the tunnel and has pressed the federal government for its support. Background:The tunnel is expected to create 44,000 permanent jobs, in addition to 6,00 construction jobs. With train traffic into New York at maximum capacity, the tunnel project would double commuter rail capacity between New Jersey and New York and improve rail service across the Garden State and reduce congestion on roadways.  The existing 100-year-old commuter rail tunnel under the Hudson River only has two tracks that are pushed to their functional limits each rush hour with NJ TRANSIT and Amtrak trains.  The Mass Transit Tunnel will more than double peak capacity from 23 trains per hour to 48. In addition to two new side-by-side single-track tunnels, the project will create new station capacity in Manhattan designed specifically for commuter rail service with wider platforms and more escalators. The new tracks will provide direct access to NYC subway lines, PATH trains and existing Penn Station services.The project will also create one-seat (direct) commutes to New York for NJ TRANSIT customers on seven commuter rail lines - Main/Bergen County, Port Jervis, Pascack Valley, Montclair-Boonton west of Montclair State University, Morris & Essex west of Dover, Raritan Valley, and North Jersey Coast south of Long Branch, as well as future rail expansion lines.\n\n                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ce557455-a16d-4d3c-b62e-74cd0204f149,\"SENATOR MENENDEZ HONORS CONTRIBUTIONS OF MEXICAN AMERICANS IN CELEBRATION OF CINCO DE MAYO\n                    \n                      May 6, 2009\n                               Washington, DC - Today US Senator Robert Menendez (D-NJ), chairman of the Senate Democratic Hispanic Task Force a champion for issues faced by the Latino community, joined millions of Americans in celebrating Cinco de Mayo and the important contributions of Mexican-Americans to the United State. This holiday marks the Mexican army's defeat over the French army in 1862 and is a symbol of cultural celebration and pride.    \"\"We celebrate this day not only out of respect for the rich history and culture of our neighbors in Mexico, but also in honor of the tremendous contributions and achievements by Mexican-Americans that have made ours a better nation,\"\" said Senator Menendez. \"\"From Cesar Chavez and Dolores Huerta to Janet Murguia, from Romualdo Pacheco to Ken Salazar, from Anthony Quinn to Salma Hayek, Mexican-Americans have helped weave the fabric of our nation and continue to do so. Many Mexican-Americans, like other Americans of Latino descent, face real challenges in the areas of health care coverage, education, housing and jobs, and I will continue to pursue policies in collaboration with my colleagues in the Senate and President Obama to make sure they have every opportunity to succeed and thrive.\"\"                                                                                                                                                                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=af91cda9-e09e-4730-a546-e0bc4e671bb2,\"MENENDEZ, AUTHOR OF SENATE RESOLUTION, CELEBRATES NATIONAL EARLY EDUCATOR WORTHY WAGE DAY\n                    \n                            NJ Senator says early educators help lay the foundation for prosperity in our nation\n                    \n                      May 1, 2009\n                     WASHINGTON - Today, US Senator Robert Menendez (D-NJ) celebrated National Early Educator Worthy Wage Day, which honors the work of early educators and calls on public officials to work to resolve compensation unfairness issues. 60 percent of children under the age of six spend at least part of the day in non-parental care, but early educators earn an average annual salary of less than $19,000 and only one-third have health insurance. Menendez's resolution would acknowledge the tough compensation situation early educators face and would put the US Senate on record in support of the goals and ideals of National Early Educator Worthy Wage Day.\"\"The better our children are nurtured and educated in their early years, the better chance they have to unlock their potential and build a prosperous future for themselves and our nation,\"\" said Senator Menendez. \"\"A major part of that early development is the nation's early educators, but too often their compensation does not reflect their important role. Low wages and insufficient benefits not only are unfair, they also force talented early educators into other lines of work. The goals and ideals of National Early Educator Worthy Wage Day deserve our full support, so that we can improve early educators' quality of life and help lay the foundation for long-lasting economic security in the 21st Century.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4a24a29f-ea65-45d3-9712-1a8f25efb47a,\"IN WAKE OF AIR FORCE ONE PHOTO-OP NEAR GROUND ZERO, MENENDEZ CALLS ON FEDERAL AGENCIES TO BETTER NOTIFY LOCAL OFFICIALS\n                    \n                            NJ Senator says law enforcement, governors, congressional delegations should be given heads up when military operations not essential to national security may unsettle local residents\n                    \n                      April 28, 2009\n                     WASHINGTON - In the wake of yesterday's mishandled photo opportunity involving Air Force One flying near Newark, Jersey City, the Statue of Liberty and Lower Manhattan, US Senator Robert Menendez (D-NJ) is calling on the relevant federal agencies to improve their system of notification to local law enforcement, governors and congressional delegations. In a letter to Defense Secretary Gates, White House Military Office Director Louis Caldera, Acting Federal Aviation Administration chief Lynne Osmus and Homeland Security Secretary Janet Napolitano today, Menendez is seeking answers about the notifications given to local officials and is urging the agencies to adequately notify relevant law enforcement, governors and Members of Congress when the military undertakes a operation or exercise that may cause public unease. Workers and residents in Lower Manhattan and across the river in New Jersey were startled and even evacuated office buildings yesterday by the site of a Boeing 747 and military fighter jet flying so close to Ground Zero.\"\"The exercise, which caused unnecessary alarm and anxiety, was not only reckless and insensitive to those of us who lived through the terror attacks on September 11, 2001, it also revealed a serious lack of national security protocols required to respond to a real attack or natural disaster,\"\" wrote Menendez. \"\"As we learned all too clearly on September 11, 2001, lack of communication and poor coordination can be a serious national security issue that costs lives. While this failure fortunately did not threaten lives, we should examine this situation and learn from the mistakes made so we are more prepared to respond to a real disaster.  Members of Congress and their staff have the luxury of being notified the moment there is any information regarding a safety risk or security test that would cause alarm.  The American people deserve no less.\"\"PDF of letter to the Pentagon: http://menendez.senate.gov/pdf/04282009LetterSecGatesAerialPhoto.pdfText of letter:April 28, 2009The Honorable Robert M. Gates                    The Honorable Louis E. CalderaSecretary                                                         DirectorUnited States Department of Defense           White House Military Office1400 Defense Pentagon                                  1600 Pennsylvania Avenue, N.W.Washington, D.C. 20301                                 Washington, D.C. 20500The Honorable Lynne A. Osmus                     The Honorable Janet A. NapolitanoActing Administrator                                      SecretaryFederal Aviation Administration                     United State Department of Homeland Security800 Independence Avenue, S.W.                    Washington, D.C. 20528Washington, D.C. 20591Dear Secretary Gates:I am writing to express my concern over the failure by the Department of Defense, White House Military Office, Federal Aviation Administration and the Department of Homeland Security to properly notify appropriate law enforcement and state and federal officials as to yesterday's planned aerial photo-op over Northern New Jersey and lower Manhattan.  The exercise, which caused unnecessary alarm and anxiety, was not only reckless and insensitive to those of us who lived through the terror attacks on September 11, 2001, it also revealed a serious lack of national security protocols required to respond to a real attack or natural disaster.  On that fateful Tuesday morning in 2001, approximately 3,000 Americans were killed, with the majority of these losses occurring at Ground Zero, the former site of the World Trade Center.  New Jersey alone lost nearly 700 of its residents at the site of the twin towers, and countless others became afflicted with emotional and psychological scars.  More than seven years have passed since that tragic morning, and for many, the wounds are still fresh.  This tactless event has only served to reopen these wounds and cause heartache for those whose lost friends or loved ones at Ground Zero.That is why I was shocked and disturbed to learn about the failure to properly notify law enforcement and government officials about the aerial photo-opportunity conducted during the morning of April 28, 2009.  This poorly-conceived exercise created an atmosphere of fear and insecurity for many of the approximately 140,000 New Jerseyans who commute to Manhattan for work every morning, as well as many more residents who could clearly see the aircraft from the New Jersey side of the Hudson.  Workers from Manhattan to Queens to across the river in Jersey City and Newark, New Jersey looked out their office windows in horror as a Boeing 747, trailed by an F-16 fighter jet, flew precariously close to the New York skyline, conjuring up the horrifying images of September 11.  Thankfully, residents of our region are resilient and did not allow panic to take over.In light of this communication breakdown, I urge you to improve the process by which you notify officials and the public at large regarding public exercises that have the potential to alarm residents, and to ensure that your notification protocols in the case of a more serious national security event are sound. Specifically, I urge you to notify the relevant law enforcement, governors and Members of Congress of both planned exercises and more serious national security events as a matter of routine. Furthermore, in cases involving planned exercises, I urge you to confirm that the relevant law enforcement and elected officials have acknowledged notification the exercises and have an opportunity to voice any concerns.I also have several questions that need to be addressed to ensure we are adequately prepared to respond to a real disaster:1) Which public officials from New York or New Jersey did you notify regarding this flyover, and at what time did you do so?2) What other Federal Departments were made aware of this flyover?  If multiple Departments or agencies were involved, was there any coordination or communication between them?3) Why was this information not shared with the public?4) Looking forward, how do you plan to inform the public and officials if similar circumstances arise?As we learned all too clearly on September 11, 2001, lack of communication and poor coordination can be a serious national security issue that costs lives.  While this failure fortunately did not threaten lives, we should examine this situation and learn from the mistakes made so we are more prepared to respond to a real disaster.  Members of Congress and their staff have the luxury of being notified the moment there is any information regarding a safety risk or security test that would cause alarm.  The American people deserve no less. Thank you for considering my thoughts and recommendations.  I look forward to your prompt response.                                                                               Sincerely, ROBERT MENENDEZUnited States Senator# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0d521bf7-83dd-46ef-9018-aa7dd98f258d,\"LAUTENBERG, MENENDEZ, SCHUMER, GILLIBRAND INTRODUCE BILL TO IMPROVE SECURITY AT NATION'S 361 SEAPORTS\n                    \n                      April 28, 2009\n                     WASHINGTON, D.C. - Senators Frank R. Lautenberg (D-NJ), Robert Menendez (D-NJ), Charles Schumer (D-NY) and Kirsten Gillibrand (D-NY) today introduced legislation to increase security at the nation's 361 ports.  Their bill would, for the first time, create minimum security standards for all containers entering the United States.\"\"It's been eight years since 9/11 and our ports are still not yet secured.  Port security is essential to protect our residents from a possible terrorist attack.  This bill would set minimum security standards for every container coming into our country and help ensure port security grants are awarded based on risk.  It is vital we take every possible step to make our ports safe,\"\" said Sen. Lautenberg.Senator Menendez said: \"\"Securing our ports is essential for the security of our hometowns and our families.  We have been told repeatedly, by the 9/11 Commission and by other security experts, that our ports are vulnerable and time is of the essence.  We have to work to ensure that this critical legislation gets passed into law and that the provision I sponsored in 2006 mandating 100% cargo scanning remains the goal that we are working toward.\"\"\"\"It's been over eight years since 9/11 and despite the widespread knowledge that our ports are a favorite target for terrorists, our ports are still not as secure as they should be,\"\" Sen. Schumer said. \"\"Port security is vital in protecting our nation from a dangerous terrorist attack. When you think about the nightmare consequences of allowing a nuclear device to slip through our ports, it's clear that our port security measures deserve a lot more effort and focus and this bill does just that.\"\"\"\"Securing our cargo and ports must be a national priority,\"\" said Senator Gillibrand. \"\"The security of our families and communities depends on having safety standards for every container and shipment that enters our country. This legislation is critical - we need to take every step we can to make our ports safe.\"\"The legislation would require cargo be monitored from the moment it is packed into containers abroad until it reaches its destination in the United States.  Containers that do not meet the standards would be refused entry into the country.The bill also calls for:•       Minimum security standards for essential port services such as supply and launch vessels, and bunker and fuel deliveries, which are largely unregulated;•       Each of the nation's port regions to have a response and recovery plan in case of a major terrorist incident or emergency; •       The ability for law enforcement officials to confiscate a fraudulent or altered Transportation Workers Identification Credential (TWIC); and•       Creates new standards to more accurately determine port security risks and identify funding needs.  In 2006, Sen. Lautenberg wrote a law requiring all port security grants to be awarded based on risk. A fact sheet on the bill is below.The Senators' bill is based on recommendations of a task force of government and business officials created by the Port Authority of New York and New Jersey Chairman Anthony R. Coscia in 2006. The purpose of the task force was to foster public discussion of port security issues and to explore gaps in port and supply-chain security. The Port of New York and New Jersey is the largest port on the East Coast and the second-busiest container port in the country.  It supports approximately 230,000 jobs and is responsible for generating $20 billion in economic activity.Port Authority of New York and New Jersey Port Security Task Force Implementation Act of 2008Fact SheetThis bill, the Port Authority Implementation Act of 2008 (S.3174), was introduced by Senators Frank Lautenberg (D-NJ), Robert Menendez (D-NJ), Charles Schumer (D-NY) and Kirsten Gillibrand (D-NY).  The bill is based on the findings of a task force on port security established in 2006 by Port Authority of New York and New Jersey Chairman Anthony R. Coscia.The Port Security Task Force (PSTF) is a group of nonpartisan independent business and government officials concerned with identifying and solving critical port and supply chain security issues that still remain nearly eight years after 9/11.Key provisions of the port security bill include:•       Mandatory Container Security Standards: Required for international cargo containers entering the U.S.  Current security policy relies on shippers taking voluntary measures to improve security. Container shipments that fail to meet these new minimum standards will be denied entry into the U.S. •       Regional Response and Recovery Plans: Required for each port, so that there is a process to restore order to the commerce in our region after a major incident or disruption occurs. •       Standardized Risk Assessment Tools: Requires the use of a standardized risk assessment tool so that the Department of Homeland Security (DHS) can more accurately determine risks to ports and surrounding communities and businesses areas thereof, and port security grants can be prioritized accordingly. •       Authorizes Law Enforcement to Confiscate Falsified IDs: Provides authority for any federal, state or local law enforcement official to confiscate a suspected fraudulent or otherwise tampered with federal Transportation Worker Identification Credential (TWIC) at locations where there is no Coast Guard presence (such as the Port Authority's airports, bridges and tunnels). •       Designated Security Officials on Foreign Ships: Requires each foreign vessel entering a U.S. port to designate a \"\"Security Individual\"\" who would be responsible for responding to a transportation security incident while it is docked at a U.S. port, on behalf of the ship's owner/operator. •       Includes Unregulated Ships in Federal Security Regime: Brings ships that are largely unregulated today, such as those used in essential port services like supply vessels, launch vessels, and bunker and fuel delivery ships, under federal security requirements.  These ships have been identified to pose some a risk to maritime security.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0a21d86e-d59b-4092-90a7-1a12035aa2e8,\"MENENDEZ URGES NJ FAMILIES SEEKING INFO ON SWINE FLU TO VISIT CDC WEBSITE FOR UP-TO-DATE INFORMATION\n                    \n                            Menendez urges caution but calm as health officials continue to address cases in the US\n                    \n                      April 27, 2009\n                     WASHINGTON - As health officials continue to monitor and address cases of swine flu in the United States, US Senator Robert Menendez (D-NJ) is urging New Jersey residents who are seeking information on the illness to visit the Centers for Disease Control's special web page at http://www.cdc.gov/swineflu/ (can also be accessed from Menendez's website at http://menendez.senate.gov/). That site includes a useful \"\"Swine Flu and You\"\" page, which answers a number of frequently asked questions about swine flu. Information is also available on the New Jersey Department of Health and Senior Service website at http://www.nj.gov/health/.Senator Menendez said that the situation requires a balance of caution and calm:\"\"This is a situation in which we all need to balance concern and caution with calm. It is certainly important to recognize that this is a serious illness and to understand the symptoms and preventative steps we can take. However, health officials continue to closely monitor this situation and work to contain it, and we should have full confidence in the doctors and scientists who best understand this outbreak. They will continue to help us understand the situation and what we need to do to keep our families healthy. The Centers for Disease Control's website is a great resource to stay informed and best understand what we can do to stay healthy, and I urge anyone who wants to know more about the illness to visit that site.\"\"                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=710724ae-c2bf-45bd-9e52-45e3455ed280,\"FOREIGN ASSISTANCE REFORM: MENENDEZ ANNOUNCES RELEASE OF GOVERNMENT REPORT ON REFORM PROCESS\n                    \n                            Chairman of Foreign Relations Subcommittee overseeing foreign assistance was a lead requester of GAO report\n                    \n                      April 23, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), Chairman of the Foreign Relations Subcommittee in charge of foreign assistance today announced the release of a Government Accountability Office report on the foreign assistance reform process, for which he was a lead requester. The report outlines some successes and shortcomings in the process undertaken by the State Department's Office of Foreign Assistance (known as State/F). Among the success, the GAO cited:•    Positive developments in the organizational transformation•    A streamlined process for budgeting and planning•    Creating a workforce integrated with USAID and State personnelAmong the shortcomings, the GAO cited:•    A lack of time frames goals and benchmarks•    An unclear communication strategy•    Remaining challenges in yearly and long-term planning strategies, the budget process and workforce managementSenator Menendez said: \"\"There's no question that the foreign assistance system is badly in need of reform. When I look at USAID, I see a decimated agency that needs to be rebuilt from the inside out, by strategically building-up the staff and increasing accountability to ensure results. The good news is that we have change at the very top -- the Obama administration clearly understands the necessity of effective and efficient foreign assistance, not just for humanitarian reasons, but also for our national security and economic well-being.  I plan to work together with the administration to implement a bold and long-lasting reshaping of the foreign assistance system.\"\"Link to GAO report: http://menendez.senate.gov/pdf/04232009GAOForeignAidReform.pdf Link to report on official GAO site (will not be available until the afternoon of April 23, 2009): http://www.gao.gov/new.items/d09192.pdf\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0696336d-5317-41d5-a277-a3df2b81eaef,\"AFTER OBAMA MEETING WITH CREDIT CARD CEOs, MENENDEZ SAYS CREDIT CARD REFORM HAS COME DUE\n                    \n                            Member of Banking Committee wrote letter to Geithner this week urging rate-hike restrictions for TARP recipients, has urged credit card companies to immediately adopt new regulations and is author of Credit Card Reform Act\n                    \n                      April 23, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee who has been a leading champion for credit card reform, today applauded the case for reform that President Obama laid out in his meeting with credit card company CEOs and said that credit card reform is closer than ever.\nEarlier this week, Menendez wrote Treasury Secretary Geithner, urging him to restrict such practices as unilateral rate increases by credit card companies that have received taxpayer money (http://menendez.senate.gov/newsroom/record.cfm?id=311688). In December, he urged the top credit card companies to immediately adopt the new credit card regulations that are scheduled to go into effect in July 2010 (http://menendez.senate.gov/newsroom/record.cfm?id=306131&). Menendez is the author of the Credit Card Reform Act (http://menendez.senate.gov/newsroom/record.cfm?id=308071), and he released the following statement today:\n\"\"Credit card reform has come due. Credit card holders need to be on even ground with their credit card companies, and that is even more urgent now, as debt piles up during this economic crisis. From the read-out of President Obama's meeting with the companies today, it is clear that we in Congress and the White House are working on the same track to bring fairness to consumers. Families should no longer feel like a trap door is going to open up beneath them every time they swipe their card, and that's the goal of legislation we are working to pass. This is an idea that has been badly needed for years, and we have a golden opportunity now to make it reality.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1e80be0a-0859-49a3-83df-bd996b408e27,\"MENENDEZ, LAUTENBERG ANUNCIAN $130,000 PARA SERVICIOS DE EMERGENCIAS MEDICAS PARA NI?OS EN NUEVA JERSEY\n                    \n                            El programa protege a los ni?os de Nueva Jersey a trav?s de la educaci?n y recursos para familias y escuelas\n                    \n                      April 22, 2009\n                     WASHINGTON - El senador de Robert Menendez (D-NJ) y el senador Frank R. Lautenberg (D-NJ) anunciaron hoy que el Departamento de Salud y Recursos Humanos ha otorgado $130,000 al Programa de Servicios de Emergencia para Niños de Nueva Jersey (EMSC por sus siglas en inglés). La Junta Asesora del EMSC y el Departamento de Salud de Nueva Jersey utilizarán este subsidio principalmente para proyectos de adiestramiento en emergencias pediátricas para padres y efectivos de emergencias.\"\"El bienestar de nuestros niños es la primera prioridad de todo padre,\"\" dijo el Senador Menéndez. \"\"Es de suma importancia que familias, el personal de emergencias y las escuelas tengan acceso a los recursos que necesitan para proteger a los niños durante una emergencia médica - ese es el objetivo de este subsidio.\"\"\"\"Debemos asegurarnos que tanto los padres como los efectivos de emergencias sepan lo que tienen que hacer cuando es un niño el que tiene una emergencia,\"\" dijo el Senador Lautenberg. \"\"Estos fondos ayudarán a proveer educación y adiestramiento para que nuestros niños reciban el mejor cuidado posible en las situaciones que más lo necesitan,\"\" añadió el Senador Lautenberg.El Programa de Servicios de Emergencias Médicas para Niños de Nueva Jersey, una oficina del Departamento de Salud y Servicios para Envejecientes de Nueva Jersey, es parte de una iniciativa nacional cuyo fin es reducir la discapacidad y muerte juvenil e infantil como resultado de enfermedades y lesiones graves. Este programa sirve a los niños del estado a través de la educación y otros recursos libres de costo para familias y personal médico tales como: adiestramiento clínico para enfermeras escolares, distribución de panfletos informativos e instrucciones a efectivos de emergencias como paramédicos, bomberos policías y demás personal potencialmente proveedor de servicios médicos durante una emergencia; además de simulacros de catástrofes en centros de cuidado infantil. Una junta asesora compuesta de 14 miembros ofrece recomendaciones a la Oficina de Servicios Médicos de Emergencia y al Departamento de Salud y Servicios Humanos.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=32bfc6d7-60cd-449a-be18-59c7d3cc8134,\"MENENDEZ CELEBRATES EARTH DAY\n                    \n                            NJ Senator is member of Energy Committee and Chairman of Foreign Relations subcommittee overseeing international environmental agreements\n                    \n                      April 22, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee and Chairman of the Foreign Relations subcommittee in charge of international environmental agreements, today is celebrating Earth Day. Menendez has an extensive record of initiating and supporting green policy, including:• Creation of the Energy Efficiency Block Grant Program in 2007, which assists cities, towns and counties with energy efficiency projects and programs related to buildings, transportation and other sectors. This program recently delivered $3.2 billion to local governments nationwide through the economic recovery package.• Authoring provisions in the economic recovery package to boost use of solar power and manufacturing of LED lighting. The provisions create a nationwide program that supports local governments wishing to help homeowners install solar panels and incentivize the production of the next generation of energy efficient lighting.• Leading Senate efforts to prevent coastline drilling along the Jersey Shore, arguing that it would provide no real relief for energy prices while exposing the coast to the risk of oil spills.Menendez released the following statement today:\"\"Earth is our one and only home, and we need to do everything we can to heal it. Our planetary emergency continues to be a growing challenge to our safety, our quality of life and our children, and we must affirmatively address it. In fact, during this economic crisis, we have a perfect opportunity to tackle economic and environmental issues together by developing a green economy.\"\"Innovations like renewable energy, energy efficiency and emissions reduction can create new jobs, spur domestic manufacturing and sprout new economic sectors, while saving money for families. That leads to greater economic security. On this Earth Day, it is encouraging that this Congress and President Obama are bringing change to our environmental and energy policies. Rather than denying or ignoring the existence of climate change, we are on a path that can ultimately result in a significant reduction of emissions, breaking the shackles of foreign oil and a boost in renewable energy.\"\"In New Jersey, we don't have to look far to understand how climate cha\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6581cf8c-b37a-4adf-b7cf-6241186baabf,\"MENENDEZ STATEMENT ON RAUL CASTRO'S COMMENTS\n                    \n                      April 22, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today released the following statement reacting to Raul Castro's comments about talks with U.S.:\"\"It is tragically ironic that as Raul Castro says he is willing to talk about human rights, he has his state police surrounding peaceful human rights activists on a hunger strike. In fact, I just received a letter from the activist Jorge Luis García Pérez -- \"\"Antúnez\"\" -- in which he describes vicious beatings by the state police and the denial of medical attention for activists whose health is in grave condition. Some like to cling to a romantic notion of the Castros, but we cannot lose sight of these brutal facts. There is no indication that political prisoners are being released, free speech is being allowed or Cubans are being granted basic liberties that we take for granted. For the OAS to readmit a regime that engages in this type of systematic suppression of human rights, it would have to rip up its Democratic Charter as a farce.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=090cd3a5-7e06-4639-8cc4-28f3389f43a9,\"Menendez, Author of Legislation to Combat Postpartum Depression, Applauds Grassroots Show of Force on Blog Day\n                    \n                            In November, Menendez had urged Paulson and Melanie Blocker Stokes MOTHERS Act has broad support in Congress, needs public pressure to overcome procedural obstacles\n                    \n                      April 20, 2009\n                     WASHINGTON - As bloggers around the country today advocate for passage of federal legislation to combat postpartum depression, U.S. Senator Robert Menendez (D-NJ), the Senate sponsor of the Melanie Blocker Stokes MOTHERS Act, applauded the effort as necessary to enact the bill into law. The legislation has broad support in Congress and was able to pass the House of Representatives earlier this year, but has been stalled in the Senate because of objections by Sen. Tom Coburn (R-OK). Senator Coburn commonly uses senatorial \"\"holds\"\" to stall disease-specific legislation, and indications are that he would do so with the MOTHERS Act.\n\n\"\"Postpartum depression is a condition that is not only more widespread than most realize but also more debilitating than most realize,\"\" said Menendez. \"\"We need to make sure these mothers are fully supported and informed, rather than scared and alone. Working together with a nationwide community of mothers, we are so close to enacting this important legislation into law. What we need is an intense dose of public pressure. This Blog Day helps reinforce the type of grassroots movement that will create the pressure that is needed, and I commend the participants. I invite mothers, fathers and anyone else who believes we need to better support those with postpartum depression to contact their Senators and urge them to vocally support S. 324.\"\"\n\nThe legislation would increase federal efforts to combat postpartum depression by:\n• Encouraging Health and Human Services (HHS) to coordinate and continue research to expand the understanding of the causes of, and find treatments for, postpartum conditions.  • Encouraging a National Public Awareness Campaign, to be administered by HHS, to increase awareness and knowledge of postpartum depression and psychosis.  • Requiring the Secretary of HHS to conduct a study on the benefits of screening for postpartum depression and postpartum psychosis.  • Creating a grant program to public or nonprofit private entities to deliver or enhance outpatient, inpatient and home-based health and support services, including case management and comprehensive treatment services for individuals with or at risk for postpartum conditions.  Activities may also include providing education about postpartum conditions to new mothers and their families, including symptoms, methods of coping with the illness, and treatment resources, in order to promote earlier diagnosis and treatment.\nIt is estimated that postpartum depression (PPD) affects from 10 to 20 percent of new mothers. In the United States, there may be as many as 800,000 new cases of postpartum conditions each year.  The cause of PPD isn't known but changes in hormone levels, a difficult pregnancy or birth, and a family history of depression are considered possible factors. \n # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bfcc370f-2a35-482f-b8ac-26c817ef2e33,\"MENENDEZ URGES RESTRICTIONS ON INTEREST RATE HIKES BY CREDIT CARD COMPANIES RECEIVING TAXPAYER MONEY\n                    \n                            In November, Menendez had urged Paulson and Bernanke to prohibit unilateral rate increases by these credit card companies\n                    \n                      April 20, 2009\n                     WASHINGTON - With credit card holders increasingly upset over interest rate hikes by credit card companies that are receiving taxpayer dollars, U.S. Senator Robert Menendez today sent a letter to the Department of the Treasury, urging the administration to restrict these companies from undertaking unilateral interest rate increases and other consumer-unfriendly practices. During the previous administration, Menendez, a member of the Senate Banking Committee, had called on then-Treasury Secretary Henry Paulson and Federal Reserve Chairman Ben Bernanke to do the same (http://menendez.senate.gov/newsroom/record.cfm?id=305251).\n\"\"As families tighten their belts and stretch every dollar during these tough economic times, the last thing they need to deal with is more tricks and deceptive practices from their credit card company,\"\" wrote Menendez. \"\"Stronger consumer protections, such as prohibiting unilateral rate increases, ending universal default, and requiring that penalty rates and fees be reasonably tied to cost, should be prerequisites for any issuers who wish to benefit from government assistance.  These commonsense reforms will not only relieve some of the pressure on consumers, they will also end some of the most egregious practices that have forced so many people to the brink of bankruptcy.\"\"\nPDF of letter to Treasury: http://menendez.senate.gov/pdf/042009GeithnerCreditCardLetter.pdfText of letter:April 20, 2009\nThe Honorable Timothy F. GeithnerSecretary of the TreasuryU.S. Department of the Treasury1500 Pennsylvania Avenue, NWWashington, D.C. 20220\nDear Secretary Geithner:\nIn November, when your predecessor and Federal Reserve Chairman Ben Bernanke announced a plan to use federal money to purchase credit-card backed securities, I urged them to attach consumer-protection requirements to these funds (see attached letter), including prohibiting unilateral interest rate increases and requiring penalties and fees be reasonably tied to cost incurred by the card issuer.\nUnfortunately, my office has recently been inundated by calls and letters from New Jersey residents who have seen their interest rates shoot up even though they continue to make their payments on time every month.  They are very angry about this and have every right to be.   This is not risk-based pricing; rather, it is merely a way for issuers to recover losses they are incurring at the expense of consumers.  As families tighten their belts and stretch every dollar during these tough economic times, the last thing they need to deal with is unexpected and unjustified practices from their credit card company.\nTo add further insult to injury, many of these same credit card issuers have received billions of taxpayer dollars in emergency assistance.  For these same companies to turn around and exploit the very taxpayers who rescued them from the brink of insolvency is outrageous and offensive.\nI am certainly encouraged by the reports that the Obama administration will soon be aggressively tackling credit card issues, and I look forward to those actions. I strongly believe that any government intervention must make helping consumers its central focus and ultimate objective. Stronger consumer protections, such as prohibiting unilateral rate increases, ending universal default, and requiring that penalty rates and fees be reasonably tied to cost, should be prerequisites for any issuers who wish to benefit from government assistance.  These commonsense reforms will not only relieve some of the pressure on consumers, they will also end some of the most egregious practices that have forced so many people to the brink of bankruptcy.\nWith default rates skyrocketing, and Americans holding almost $1 trillion in credit card debt, it is now more urgent than ever that we protect consumers from egregious and unfair practices.  The American people cannot afford to wait over a year for the Federal Reserve regulations to take effect - they need to be protected immediately.  That is why I again urge you to attach consumer protections as a condition for firms that accept taxpayer assistance.  Thank you for your consideration.  I look forward to hearing your response.\nSincerely,\n\nROBERT MENENDEZUnited States Senator\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ab25f38e-3fee-46e4-9fb9-fb2965add8be,\"SENATOR MENENDEZ, LAUTENBERG ANNOUNCE $1.5 MILLION FOR PROGRAM CRUCIAL TO NEW JERSEY'S MANUFACTURING INDUSTRY COMPETITIVENESS\n                    \n                            PROGRAM  PROMOTES JOB CREATION THROUGH SUPPORT OF CENTERS THAT PROVIDE MANUFACTURERS WITH SERVICES  THAT FOCUS ON GROWTH , PRODUCTIVITY AND EFFICIENCY\n                    \n                      April 20, 2009\n                     WASHINGTON - Today, US Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) announced that the New Jersey Manufacturing Extension Partnership Program (NJMEP) has been awarded $1.5 million from the Department of Commerce to support centers across the state that assist manufacturers by offering a wide range of manufacturing and business expertise services focused on growth, productivity, and efficiency.  It is estimated that every dollar the Federal government invests in this program, there is a return of $137 in economic impact. In 2007 alone, NJMEP generated approximately $41B in economic output. Since the year 2000, the program has created an estimated 1,699 jobs.\"\"The manufacturing industry is crucial to New Jersey families and our state's economic well being. With 12,000 manufacturing facilities that employ more than 300,000 workers, it helps create jobs and economic activity, and we need to support it through programs like this. We are living in a global age when our local manufacturing companies and workers face fierce and skilled competition from low-wage countries like China, Malaysia and India. This funding will ensure this crucial industry has access to modern tools and resources that enable them to compete, thrive and continue generating jobs in the short term and well into the 21st century.\"\" said Senator Robert Menendez. \"\"The manufacturing industry in New Jersey provides thousands of families with an opportunity to earn a living,\"\" said Senator Lautenberg.  \"\"These funds will enable manufacturers to take the necessary steps to keep their industry growing and prosperous.  In these tough economic times, it is vital we do everything in our power to ensure our workers are receiving the training they need to stay competitive in a rapidly changing, global economy.\"\" Started in 1996, the New Jersey Manufacturing Extension program is one of 59 MEP's across the 50 states and Puerto Rico that provide manufacturers with technical and business assistance to strengthen this sector's productivity, profitability and global competitiveness.  NJMEP has worked with more than 1,550 small and medium sized companies across New Jersey and completed more than 3,050 projects with them.  Numbers prove the program's effectiveness, which has consistently had a direct and positive impact on its client's increased sales; cost savings; and equipment, systems and workforce investments.                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=02d512de-0d85-422e-b921-67f6ac7a2ac6,\"LAUTENBERG, MENENDEZ ANNOUNCE $2.5 MILLION IN NEW FEDERAL FUNDING FOR OCEAN CITY AIRPORT\n                    \n                            Funding Will Help Improve Runway Safety and Protect Travelers at Airport\n                    \n                      April 17, 2009\n                     WASHINGTON, D.C. - U.S. Sens. Frank Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the Federal Aviation Administration has awarded $2.5 million in new federal funding to the Ocean City Municipal Airport from the Economic Recovery Act which was signed into law by President Obama in February.   The funds will help pay for upgrades to Ocean City's runway and protect traveler safety. \"\"We need to make New Jersey's airports as safe, modern and reliable as possible so travelers get to their destinations safely—and on time,\"\" Sen. Lautenberg said.  \"\"These funds will help improve and modernize Ocean County's Airport so it can meet future travel and public safety demands.\"\"\"\"As we rebuild our economy, it is crucial that we lay the appropriate groundwork by investing in projects that create jobs and spur economic activity. These funds will help ensure New Jerseyans have access to safe and efficient transportation, while putting people to work and keeping the economy of Ocean City going,\"\" said Senator Menendez.The new federal funding will help complete the third phase of Ocean City's airport drainage improvement project, which includes replacing the existing drainage pipes with high-density polyethylene pipes and resurfacing the existing airport runways and taxiways associated with the drainage improvements.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=16c17dc8-5a4a-4e17-8082-c74fec31411c,\"MENENDEZ TO PROPOSE NEW INITIATIVES TO ENHANCE INTERNET AND WIRELESS SAFETY FOR CHILDREN AND TEENS\n                    \n                            Grant program and task force would be established as activities such as cyberbullying and sexting become more prevalent\n                    \n                      April 15, 2009\n                     WASHINGTON - As computers and mobile devices continue to play an increasingly important role in the lives of children and teens, U.S. Senator Robert Menendez (D-NJ) announced he will soon propose new legislation to promote Internet and wireless technology safety for our nation's youth. He plans to introduce the Internet Safety Education and Cybercrime Prevention Act, which would:• Create a competitive grant program for partnerships between state and local educational agencies and nonprofit organizations to develop, distribute, and implement Internet safety education programs in schools and communities.• Establish an Internet Safety Education Task Force that will facilitate research and the development of best practices in Internet safety education, produce practice guidelines for professional development and integration of Internet safety education programs in schools, and assess data on the effectiveness of programs that have been implemented under the legislation.\"\"If we're serious about providing age-appropriate Internet safety education to our children, training to teachers, and the right measure of control to parents, the federal government has to be a partner, which is the purpose of these initiatives,\"\" said Menendez. \"\"The way to meet the challenges while preserving the opportunities that the Internet presents isn't to deny our children access to this great resource but to make sure they know how to use it wisely. Just as we make sure our children know not to talk to strangers, not to bully kids on the playground, and not to give out their personal information, we have the same responsibility to teach them to apply these values online.\"\"Menendez has worked toward achieving national Internet media literacy and safety by sponsoring bills in 2007 and 2008 that would create grants for Internet safety education programs and set higher standards for members of the Internet industry.In a national poll on children's health, parents ranked Internet safety fifth among their top health concerns for children. The problem of online harassment of minors is widespread, with up to 85 percent of middle school children reporting being \"\"cyberbullied\"\" at least once, most often by other minors. Most teens and older pre-teens have also been exposed to unwanted sexually explicit content or communication. And now, an increasing number of teens and older preteens are generating their own inappropriate content by taking and sharing with their peers sexual images of themselves, in an activity called \"\"sexing.\"\"The widespread use of the Internet, cell phones, interactive gaming, Web 2.0 applications, and other electronic communication devices by children both inside and outside of schools suggest that acceptable use policies and filtering alone cannot resolve Internet safety problems.                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=87f3f127-4966-440d-adef-bb57f48ab9d3,\"MENENDEZ STATEMENT ON DEVASTATING EARTHQUAKE IN ITALY\n                    \n                            NJ Senator chairs subcommittee in charge of foreign assistance\n                    \n                      April 9, 2009\n                     WASHINGTON - US Senator Robert Menendez (D-NJ), Chairman of the Foreign Relations Subcommittee that oversees US foreign assistance, today released the following statement on the devastating Italian earthquake that has killed more than 200, injured thousands more and has partially or fully destroyed many historic buildings:\"\"The scope and devastation of this disaster are simply horrific, and the Italian people deserve our full support. The United States stands ready to lend a helping hand where we might be needed in the rescue and recovery process, and I pledge to do whatever might be asked of me as the chairman of the Foreign Relations subcommittee in charge of foreign assistance. Our thoughts and prayers are with the victims and their families in Italy during these trying times. There are many Italian-American families and friends in New Jersey and our thoughts and prayers are with them as well.\"\"                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bc94792d-d597-4b65-a3c9-f08289462523,\"PROGRAMS TO COMBAT DOMESTIC VIOLENCE STRENGTHENED WITH MENENDEZ PROVISION IN BUDGET\n                    \n                            Senate passed budget resolution last week\n                    \n                      April 9, 2009\n                     WASHINGTON - Violence Against Women Act programs and Family Violence Prevention and Service Act programs are primed for a federal funding boost because of a provision attached to the Senate budget resolution by U.S. Senator Robert Menendez (D-NJ). The provision, which passed the Senate last week as part of the resolution, creates the room in the budget to ensure that these programs are adequately funded.\"\"Violence against women and domestic violence in general continue to hurt millions of Americans and tear families apart, which is why these groundbreaking prevention and support programs continue to need adequate resources,\"\" said Menendez. \"\"They are especially relevant in these economic times, when anxiety is high and family instability may be as well. I am proud to have included this provision in the budget, and I look forward to ensuring that proper funding follows.\"\"Domestic violence, dating violence, sexual assault and stalking affect an estimated one in four women in the United States. Since 1994, VAWA has made substantial progress toward ending domestic and sexual violence, with domestic violence rates down and victims more confident to report abuse. It is also estimated that VAWA saved nearly $14.8 billion in net averted social costs in its first six years alone.FVSPA, enacted over two decades ago, was the first federal legislation to support domestic violence shelters and programs. FVSPA-funded programs provide lifesaving services to thousands of adults and children fleeing abusive situations through services including emergency shelter, crisis intervention, hotlines, legal assistance and case management.According to the National Census of Domestic Violence Services, on just one day in 2008, over 60,000 adults and children were served by local domestic violence programs and shelters. These programs served 747 adults and 365 children in New Jersey alone. Unfortunately, on that same day, nearly 9,000 requests for services went unmet due to inadequate funding, resources, and staff. Victims of domestic violence remain critically underserved nationwide.                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3bad5ee3-5091-4d75-b805-9ee6e962b2ff,\"C. VIVIAN STRINGER TO BE HONORED FOR HALL OF FAME SELECTION BY MENENDEZ IN U.S. SENATE \n                    \n                            NJ Senator sends Rutgers women's basketball coach congratulatory letter, text of statement he will place in the official Congressional Record \n                    \n                      April 8, 2009\n                     Wednesday, April 8, 2009\n\n\nWASHINGTON\n– US Senator Robert Menendez (D-NJ) today congratulated Rutgers women’s\nbasketball coach C. Vivian Stringer on her selection for induction into\nthe basketball hall of fame and announced that he would be placing a\nstatement from him honoring Stringer for printing in the Congressional\nRecord, the official record of the proceedings and debates of the\nUnited States Congress.\nCoach Stringer’s selection for\ninduction was announced this week, along with the selection of such\nbasketball icons as Michael Jordon, David Robinson, John Stockton and\nJerry Sloan. During her 38-year coaching career (14 at Rutgers),\nStringer has amassed 825 victories, 30 seasons with 20 or more wins, 22\nNCAA tournament appearances, four Final Fours, and an Olympic gold\nmedal as an assistant coach. In his statement for the Congressional\nRecord, Menendez says that Stringer’s accomplishments as a teacher and\nrole model for young women equal her basketball brilliance.\n“Vivian\nStringer has served, above all else, as a teacher to each of her\nplayers,” says Menendez’s statement for the Congressional Record. “Her\ndedication to education beyond the court is clear, as her players\ntraditionally graduate on par with their non-athlete classmates.  The\nstudents who have walked into her program walk out of it as strong and\ndignified women, each ready to continue the legacy of achievement that\nVivian Stringer has set before them, whatever the arena. Two years ago,\nVivian Stringer’s leadership was on display as the Lady Scarlet\nKnights, in the face of adversity and slander, served as shining\nexamples of exceptional poise and grace.”\nPDF of letter and statement: http://menendez.senate.gov/pdf/04082009VStringerBasketballHOFCongratLetter.pdf\n            Text of letter and statement:\nApril 8, 2009\n Mrs. C. Vivian Stringer Head Coach Rutgers University Women’s Basketball Louis Brown Athletic Center 83 Rockafeller Road Piscataway, New Jersey 08854\nMrs. Stringer:\nI\nwould like to wholeheartedly congratulate you for your selection for\ninduction into the Naismith Memorial Basketball Hall of Fame. It is a\nmuch deserved honor for your 40 years of hard work, sacrifice and\ndiligence.  You are certainly a fine example of success, not only for\nthe Rutgers Community and New Jersey, but for Americans everywhere.\nI\nhave enclosed the text of remarks that I intend to submit for the\nofficial Congressional Record in tribute to this recent honor, when the\nU.S Senate returns to session on April 20, 2009.  Once this becomes\npart of the Record, I will present you with an official copy.\n                                                                                 Sincerely,\n                                                                                ROBERT MENENEDEZ                                                                                 United States Senator\n Enclosure:\n    \nMr. MENENDEZ. M. President I rise to extend my congratulations to C.\nVivian Stringer for her selection for induction into the Naismith\nMemorial Basketball Hall of Fame.  It is a proper tribute for such a\ndistinguished and celebrated career.  This is certainly an incredible\nhonor which stands tall, even amongst her other considerable accolades.\n    \nThe success that Vivian Stringer has achieved in her 38 year coaching\ncareer, including the last fourteen at Rutgers University, speaks for\nitself: 825 victories; 30 seasons of twenty or more wins; 22 NCAA\nTournament appearances; four Final Fours with three different programs;\nOlympic Gold as an assistant coach with the 2004 U.S. Women’s\nBasketball team.  Her commitment to excellence is unsurpassed and\nlauded by peers and supporters alike.\n     Most importantly,\nVivian Stringer has served, above all else, as a teacher to each of her\nplayers.  Her dedication to education beyond the court is clear, as her\nplayers traditionally graduate on par with their non-athlete\nclassmates.  The students who have walked into her program walk out of\nit as strong and dignified women, each ready to continue the legacy of\nachievement that Vivian Stringer has set before them, whatever the\narena.   Two years ago, Vivian Stringer’s leadership was on display as\nthe Lady Scarlet Knights, in the face of adversity and slander, served\nas shining examples of exceptional poise and grace.\n     This\n2009 Hall of Fame Class is indeed one of the most distinguished in\nmemory, and it is fitting that Vivian Stringer will enter alongside\nother luminaries that share her caliber of achievement.  I applaud\nVivian Stringer’s service to Rutgers University, the entire basketball\ncommunity, and the great State of New Jersey.  I wish her luck as she\ncontinues her career and in all of her other future endeavors.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f5238c64-0e3a-4700-8878-1beb6863a32c,\"C. VIVIAN STRINGER TO BE HONORED FOR HALL OF FAME SELECTION BY MENENDEZ IN U.S. SENATE\n                    \n                            NJ Senator sends Rutgers women's basketball coach congratulatory letter, text of statement he will place in the official Congressional Record\n                    \n                      April 8, 2009\n                     WASHINGTON - US Senator Robert Menendez (D-NJ) today congratulated Rutgers women's basketball coach C. Vivian Stringer on her selection for induction into the basketball hall of fame and announced that he would be placing a statement from him honoring Stringer for printing in the Congressional Record, the official record of the proceedings and debates of the United States Congress.Coach Stringer's selection for induction was announced this week, along with the selection of such basketball icons as Michael Jordon, David Robinson, John Stockton and Jerry Sloan. During her 38-year coaching career (14 at Rutgers), Stringer has amassed 825 victories, 30 seasons with 20 or more wins, 22 NCAA tournament appearances, four Final Fours, and an Olympic gold medal as an assistant coach. In his statement for the Congressional Record, Menendez says that Stringer's accomplishments as a teacher and role model for young women equal her basketball brilliance.\"\"Vivian Stringer has served, above all else, as a teacher to each of her players,\"\" says Menendez's statement for the Congressional Record. \"\"Her dedication to education beyond the court is clear, as her players traditionally graduate on par with their non-athlete classmates.  The students who have walked into her program walk out of it as strong and dignified women, each ready to continue the legacy of achievement that Vivian Stringer has set before them, whatever the arena. Two years ago, Vivian Stringer's leadership was on display as the Lady Scarlet Knights, in the face of adversity and slander, served as shining examples of exceptional poise and grace.\"\"            PDF of letter and statement: http://menendez.senate.gov/pdf/04082009VStringerBasketballHOFCongratLetter.pdf            Text of letter and statement:April 8, 2009Mrs. C. Vivian StringerHead CoachRutgers University Women's BasketballLouis Brown Athletic Center83 Rockafeller RoadPiscataway, New Jersey 08854Mrs. Stringer:I would like to wholeheartedly congratulate you for your selection for induction into the Naismith Memorial Basketball Hall of Fame. It is a much deserved honor for your 40 years of hard work, sacrifice and diligence.  You are certainly a fine example of success, not only for the Rutgers Community and New Jersey, but for Americans everywhere.I have enclosed the text of remarks that I intend to submit for the official Congressional Record in tribute to this recent honor, when the U.S Senate returns to session on April 20, 2009.  Once this becomes part of the Record, I will present you with an official copy.                                                                                Sincerely,                                                                                ROBERT MENENEDEZ                                                                                United States SenatorEnclosure:     Mr. MENENDEZ. M. President I rise to extend my congratulations to C. Vivian Stringer for her selection for induction into the Naismith Memorial Basketball Hall of Fame.  It is a proper tribute for such a distinguished and celebrated career.  This is certainly an incredible honor which stands tall, even amongst her other considerable accolades.     The success that Vivian Stringer has achieved in her 38 year coaching career, including the last fourteen at Rutgers University, speaks for itself: 825 victories; 30 seasons of twenty or more wins; 22 NCAA Tournament appearances; four Final Fours with three different programs; Olympic Gold as an assistant coach with the 2004 U.S. Women's Basketball team.  Her commitment to excellence is unsurpassed and lauded by peers and supporters alike.     Most importantly, Vivian Stringer has served, above all else, as a teacher to each of her players.  Her dedication to education beyond the court is clear, as her players traditionally graduate on par with their non-athlete classmates.  The students who have walked into her program walk out of it as strong and dignified women, each ready to continue the legacy of achievement that Vivian Stringer has set before them, whatever the arena.   Two years ago, Vivian Stringer's leadership was on display as the Lady Scarlet Knights, in the face of adversity and slander, served as shining examples of exceptional poise and grace.     This 2009 Hall of Fame Class is indeed one of the most distinguished in memory, and it is fitting that Vivian Stringer will enter alongside other luminaries that share her caliber of achievement.  I applaud Vivian Stringer's service to Rutgers University, the entire basketball community, and the great State of New Jersey.  I wish her luck as she continues her career and in all of her other future endeavors.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3be83cbc-4932-4988-91a2-8f3dbf7b7266,\"MENENDEZ THRILLED OVER RELEASE OF SOLECKI, THE U.N. OFFICIAL AND NEW JERSEY NATIVE HELD CAPTIVE IN PAKISTAN \n                    \n                            Menendez, member of Senate Foreign Relations Committee, worked with family, pressed Pakistani ambassador \n                    \n                      April 6, 2009\n                     WASHINGTON – The United Nations has confirmed the release of John\nSolecki, the head of the United Nations High Commissioner for Refugees\nand native of Demarest, New Jersey who was being held captive by an\nextremist group in Pakistan.\nUS Senator Robert Menendez (D-NJ),\na member of the Senate Foreign Relations Committee, worked with the\nSolecki family during this ordeal and was in touch with the Pakistani\nambassador through his position on the committee. Today, he released\nthe following statement:\n“First and foremost, this is a\nbeautiful day for John Solecki and his family in New Jersey, and I am\nthrilled for them. In working on behalf of the Solecki family, it was\nevident that John has a strong and loving family back here at home, and\nit is absolutely wonderful that they will be reunited.\n”This\nharrowing episode is another reminder that there are militant groups in\nour world who seek to destroy freedom. John is doing terrific work for\nsome of the most helpless people on Earth, and to target him is a sign\nof an extreme and disturbed group. Organizations like the United\nNations High Commissioner for Refugees are helping make this a freer,\nmore peaceful world – the type of work that can one day help make\nmilitant organizations like the one that detained John obsolete.”\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6c889081-9f64-43cf-832a-305a6b877474,\"MENENDEZ THRILLED OVER RELEASE OF SOLECKI, THE U.N. OFFICIAL AND NEW JERSEY NATIVE HELD CAPTIVE IN PAKISTAN\n                    \n                            Menendez, member of Senate Foreign Relations Committee, worked with family, pressed Pakistani ambassador\n                    \n                      April 6, 2009\n                     WASHINGTON - The United Nations has confirmed the release of John Solecki, the head of the United Nations High Commissioner for Refugees and native of Demarest, New Jersey who was being held captive by an extremist group in Pakistan.US Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, worked with the Solecki family during this ordeal and was in touch with the Pakistani ambassador through his position on the committee. Today, he released the following statement:\"\"First and foremost, this is a beautiful day for John Solecki and his family in New Jersey, and I am thrilled for them. In working on behalf of the Solecki family, it was evident that John has a strong and loving family back here at home, and it is absolutely wonderful that they will be reunited.\"\"This harrowing episode is another reminder that there are militant groups in our world who seek to destroy freedom. John is doing terrific work for some of the most helpless people on Earth, and to target him is a sign of an extreme and disturbed group. Organizations like the United Nations High Commissioner for Refugees are helping make this a freer, more peaceful world - the type of work that can one day help make militant organizations like the one that detained John obsolete.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2edbd8dd-e97d-4f85-900c-021254e76c51,\"SENATORS MENENDEZ, LAUTENBERG ANNOUNCE $479,325 FOR HIV PREVENTION AND TREATMENT RESEARCH IN NJ \n                    \n                            Project focuses on developing strategies to block initial HIV infection and early replication of the virus \n                    \n                      April 3, 2009\n                     WASHINGTON, DC – U.S. Senators Robert Menendez (D-NJ) and Frank R.\nLautenberg (D-NJ) today announced that Hackensack University Medical\nCenter will receive $479,325 in federal funds for its HIV prevention\nand treatment research program, called the B-Cell Presentation of HIV\nProject. The grant, awarded by the National Institute of Allergy and\nInfectious Diseases, will fund research focused on investigating the\ncharacteristics of human immune function to develop prevention and\ntreatment strategies to block initial HIV infection and replication of\nthe HIV virus during its early stages.\n               “With\nmore that 1 million Americans living with HIV and AIDS, including over\n50,000 cumulative AIDS cases in New Jersey, we still have a long way to\ngo to eradicate this disease,” said Senator Menendez. “This funding\nwill help scientists find an innovative way to prevent this disease\nfrom spreading. New Jersey has always been a leader in science and\nhealth care innovation, which helps us most importantly save lives,\nwhile at the same time creating jobs and economic activity.”\n               \n“We need to do all we can to fight the spread of HIV and AIDS in New\nJersey and across the nation.  Investments in valuable research\nprograms like the one at Hackensack University Medical Center help us\nbetter understand prevention and treatment,” said Sen. Lautenberg.\n              \nThe Allergy, Immunology and Transplantation Research seeks to help\ninvestigators better understand the role of the immune system’s “B\ncells” – a type of cell that produces antibodies to guard against HIV\nand other infections – in HIV infection by investigating whether these\ntype of cells actually play a role as a transporter of the virus to\ndistant locations within the human body. Therapies to counteract this\neffect may also result from this research project.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=95a3b299-1ee6-4e60-abe9-6895f50b73ad,\"ENERGY EFFICIENCY FOR CITIES, TOWNS, COUNTIES GETS ANOTHER BOOST WITH MENENDEZ PROVISION IN BUDGET \n                    \n                            Budget resolution passed Senate last night \n                    \n                      April 3, 2009\n                     WASHINGTON – The Energy Efficiency Block Grants program, which\nprovides federal funding to cities, towns and counties for projects and\nprograms to reduce energy usage, is getting another boost through a\nprovision attached to the Senate budget resolution by U.S. Senator\nRobert Menendez (D-NJ). The provision signals support for continued\nfunding of the energy efficiency program, which Menendez created in\n2007 and supports energy-saving initiatives and improved energy\nefficiency in transportation, buildings, and other sectors.\n“The\nmore we assist our hometowns in energy efficiency projects, the more we\ncan create jobs, reduce energy costs, cut down on emissions and relieve\nlocal budgets,” said Menendez. “Supporting this program has been a\npriority of mine since I authored the law that created it in 2007, and\nit can be an important part of our economic recovery.”\nThe\nSenate budget resolution passed last night. Recently, the Department of\nEnergy doled out $3.2 billion to local governments nationwide in block\ngrants funded through the economic recovery package.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e9a27578-3978-49a5-a8bd-6cecbf5a6e24,\"MENENDEZ MARKS WORLD AUTISM AWARENESS DAY\n                    \n                            NJ Senator is author of legislation providing support for families affected by autism; NJ has highest rate of autism in U.S.\n                    \n                      April 3, 2009\n                      WASHINGTON - Today is the second annual World Autism Awareness Day. U.S. Senator Robert Menendez (D-NJ) is the author of the Helping HANDS for Autism Act (http://menendez.senate.gov/newsroom/record.cfm?id=310628) and co-sponsor of the Autism Treatment Acceleration Act, being introduced today with Senators Richard Durbin (D-IL) and Bob Casey (D-PA). Today, Menendez marked this occasion with a call for increased support for families affected by Autism Spectrum Disorders.\"\"Families affected by autism too often face setbacks because of a lack of awareness and understanding of autism in our society,\"\" said Menendez. \"\"This day is so important, because if we can increase awareness of autism, it will make a real difference in the lives of these families. In Congress, we have an opportunity to improve the support system for families, improve insurance coverage and increase awareness of autism. I am proud to have proposed these programs, and I am hoping that we can make this issue a part of health care reform.\"\"The Helping HANDS for Autism Act, which was reintroduced last week, is a three-part legislative package that includes a program to guide families seeking services and care, increased awareness among first responders and housing for adults with ASD. At 1 in 94 children diagnosed with ASD, New Jersey has the highest rate in the nation.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=28d98349-87fc-4fdf-96c4-23790acd1ef9,\"MENENDEZ, LAUTENBERG ANNOUNCE $130,000 FOR CHILDREN'S EMERGENCY MEDICAL SERVICES IN NJ\n                    \n                            Program protects NJ children through preparedness education and resources for schools and families\n                    \n                      April 3, 2009\n                     WASHINGTON - U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that the US Department of Health and Human Services has awarded $130,000 to the New Jersey Emergency Medical Services for Children Program (EMSC).  The EMSC Advisory Council and the New Jersey Department of Health will use the grant primarily to fund pediatric-emergency education for parents and first responders.\"\"The well-being of our children is every parent's top priority,\"\" Sen. Menendez said.  \"\"It is so important to provide families, first responders and schools with the resources they need to protect our children in emergency medical situations, and that is the goal of this funding.\"\"\"\"We must make sure parents and first responders know what to do when there is an emergency that involves a child,\"\" said Sen. Lautenberg.  \"\"These funds will help provide education and training resources so children get the best possible care when they need it most. \"\" said Sen. LautenbergThe New Jersey Emergency Medical Services for Children Program, an office of the Department of Health and Senior Services, is part of a national initiative to reduce child and youth disability and death due to severe illness and injury.  The program serves the state's children through offering free education and resources for families and medical personnel, such as clinical training for school nurses, distribution of an extensive newsletter and pediatric instruction for pre-hospital providers and disaster simulation for childcare centers.  A 14-member EMSC Advisory Council advises the Office of Emergency Medical Services and the Department of Health and Senior Services.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0c321a91-4d37-43ca-8df0-1315acbeb814,\"SENATORS MENENDEZ, LAUTENBERG ANNOUNCE $479,325 FOR HIV PREVENTION AND TREATMENT RESEARCH IN NJ\n                    \n                            Project focuses on developing strategies to block initial HIV infection and early replication of the virus\n                    \n                      April 3, 2009\n                      WASHINGTON, DC - U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that Hackensack University Medical Center will receive $479,325 in federal funds for its HIV prevention and treatment research program, called the B-Cell Presentation of HIV Project. The grant, awarded by the National Institute of Allergy and Infectious Diseases, will fund research focused on investigating the characteristics of human immune function to develop prevention and treatment strategies to block initial HIV infection and replication of the HIV virus during its early stages.               \"\"With more that 1 million Americans living with HIV and AIDS, including over 50,000 cumulative AIDS cases in New Jersey, we still have a long way to go to eradicate this disease,\"\" said Senator Menendez. \"\"This funding will help scientists find an innovative way to prevent this disease from spreading. New Jersey has always been a leader in science and health care innovation, which helps us most importantly save lives, while at the same time creating jobs and economic activity.\"\"                \"\"We need to do all we can to fight the spread of HIV and AIDS in New Jersey and across the nation.  Investments in valuable research programs like the one at Hackensack University Medical Center help us better understand prevention and treatment,\"\" said Sen. Lautenberg.               The Allergy, Immunology and Transplantation Research seeks to help investigators better understand the role of the immune system's \"\"B cells\"\" - a type of cell that produces antibodies to guard against HIV and other infections - in HIV infection by investigating whether these type of cells actually play a role as a transporter of the virus to distant locations within the human body. Therapies to counteract this effect may also result from this research project.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e98b08c5-1e9e-4bf4-bfbf-2c67c3a3a2ae,\"ENERGY EFFICIENCY FOR CITIES, TOWNS, COUNTIES GETS ANOTHER BOOST WITH MENENDEZ PROVISION IN BUDGET\n                    \n                            Budget resolution passed Senate last night\n                    \n                      April 3, 2009\n                     WASHINGTON - The Energy Efficiency Block Grants program, which provides federal funding to cities, towns and counties for projects and programs to reduce energy usage, is getting another boost through a provision attached to the Senate budget resolution by U.S. Senator Robert Menendez (D-NJ). The provision signals support for continued funding of the energy efficiency program, which Menendez created in 2007 and supports energy-saving initiatives and improved energy efficiency in transportation, buildings, and other sectors.\"\"The more we assist our hometowns in energy efficiency projects, the more we can create jobs, reduce energy costs, cut down on emissions and relieve local budgets,\"\" said Menendez. \"\"Supporting this program has been a priority of mine since I authored the law that created it in 2007, and it can be an important part of our economic recovery.\"\"The Senate budget resolution passed last night. Recently, the Department of Energy doled out $3.2 billion to local governments nationwide in block grants funded through the economic recovery package.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f8e1db6d-9945-4dee-9481-a3ce868ea7fa,\"ON WORLD AUTISM DAY, DURBIN, CASEY, MENENDEZ, INTRODUCE BILL TO ESTABLISH A NATIONAL COMPREHENSIVE AUTISM STRATEGY\n                    \n                            Legislation would require insurers to cover autism diagnosis and treatment\n                    \n                      April 3, 2009\n                     [WASHINGTON, D.C.] - On a day designated by the United Nations to highlight the growing global health crisis of autism, Assistant Senate Majority Leader Dick Durbin (D-IL) and U.S. Senators Bob Casey (D-PA) and Robert Menendez (D- NJ) today introduced legislation that would create a comprehensive strategy to address the needs of families affected by autism spectrum disorder.  The Autism Treatment Acceleration Act requires health insurers to provide coverage for the diagnosis and treatment of autism and authorizes federal funding for a wide range of service, treatment, support and research initiatives.            \"\"Almost 26,000 families in Illinois struggle with autism,\"\" said Durbin.  \"\"Because the cost of autism-related services is so overwhelming for these families, Illinois passed legislation last year requiring health plans to provide coverage for the diagnosis and treatment of autism.  It's time now for the federal government to renew and build upon the commitments it has already made in helping the millions of families across the nation struggling with autism.  Our legislation would do that.\"\"            \"\"Children and adults with autism spectrum disorders and their families have long struggled to get the services and treatment they need to lead rich and productive lives,\"\" said Casey.  \"\"Today, we launch a momentous effort to change an unacceptable status quo for the 18,500 children who are diagnosed in Pennsylvania each year with autism spectrum disorders and the hundreds of thousands of additional individuals across the country.  This bill will help children get the services and treatment they need for the most positive life outcomes, for young adults and adults to have the support they need for satisfying and independent lives, and for families to have the peace of mind to provide and afford the proven treatments that will allow their children and loved ones to reach their fullest potential.\"\"             \"\"With the growing reach of this disorder, millions of families are personally affected by autism and millions more new families are wondering if they will be too. Nowhere is this felt more than in my home state of New Jersey, where we have the highest rate of autism in the country at an astounding one in every 94 children. We badly need a national strategy that will ensure families affected by autism not only have a strong support structure but also are not left to drown in the financial costs of caring for their loved ones. From services to insurance coverage to public awareness, this legislation would make a real difference in the lives of these families, and we are hopeful that we can get it passed into law,\"\" said Menendez.Today's legislation builds on the Combating Autism Act, signed into law in December 2006.  That bill called on the federal government to increase research into the causes and treatment of autism, and to improve training and support for individuals with autism and their caretakers.   This bill demonstrated the commitment of Congress to begin to delve deeper into this critically important issue for millions of families. The Centers for Disease Control (CDC) estimate that approximately 1 in 150 people in the United States has autism or autism spectrum disorder.  Individuals with autism often need assistance in the areas of comprehensive early intervention, health, recreation, job training, employment, housing, transportation, and early, primary, and secondary education.  Greater coordination within these service delivery systems will enable individuals with autism and their families to access the best and most current treatment, services and research for their individualized needs - and to do so throughout the lifespan of individuals. The Autism Treatment Acceleration Act aims to meet the comprehensive needs of, and improve the quality of life for, individuals with autism and their families by:• Requiring that insurers provide coverage for the diagnosis and treatment of autism including Applied Behavioral Analysis therapy and assistive communication devices; • Creating a demonstration project to develop Autism Care Centers. These centers would provide a full array of medical, behavioral, mental health, educational and family care services to individuals and families in a single location.  These comprehensive treatment facilities would increase access to quality health care services and communication among health care providers, educator and other providers of services;• Creating a demonstration project to provide a full array of services to adults with autism to improve their quality of life and enable them to live as independently as possible;• Establishing a voluntary population-based autism case registry to help understand the root causes, rates, and trends of autism;• Developing a national multimedia campaign to increase public education and awareness about healthy developmental milestones and autism throughout the lifespan;• Establishing an Interdepartmental Coordinating Committee - consisting of representatives from relevant governmental agencies, researchers and the public - to coordinate government activities relating to autism;• Establishing a national autism network to strengthen linkages between research and service initiatives at the federal, regional, state and local levels and facilitate the translation of research on autism into services and treatments that will improve the quality of life for individuals with autism and their families;• Creating a national training initiative on autism and a technical assistance center to develop and expand interdisciplinary training and continuing education on autism.\"\"Autism Speaks is proud to have worked with Senators Durbin, Casey and Menendez on this legislation, which represents a remarkable leap forward in the federal government's commitment to addressing the challenges faced by individuals with autism and their families,\"\" said Elizabeth Emken, Autism Speaks vice president of Government Relations.  \"\"The insurance reform section of the bill, in particular, will have an enormous impact by finally requiring insurers to cover therapies that are literally causing families across the country to go broke as they try to provide their children with the services they need and deserve.\"\" \"\"This is the bill we have been waiting for for generations,\"\" said Lee Grossman, President and CEO of the Autism Society of America. \"\"The adult services focus, care centers, national teacher training, and insurance components of this bill will complement and strengthen the important research currently underway.  Moreover, this bill creates opportunities for states to develop solutions that are locally driven and relevant.  As an advocate, and as a father, my heartfelt thanks to Senators Durbin, Casey, and Menendez for their efforts to help the millions of Americans affected by autism today.\"\"Children and adults with autism spectrum disorders can show difficulties in verbal and nonverbal communication, social interactions, and sensory processing.  Symptoms and behaviors may range from mild to significant, and require varying degrees of support from friends, families, service providers, and communities.  There is strong consensus within the research community that intensive treatment as soon as possible following diagnosis not only can reduce the cost of lifelong care by two-thirds, but also yields the most positive life outcomes for children with autism spectrum disorders.  These individuals have a right to live lives that are as full, productive and independent as possible - and with the right services, support, and treatments, they can do just that.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4c7738a4-77da-4977-b04c-c10812375bf7,\"MENENDEZ HAILS PASSAGE OF SENATE BUDGET RESOLUTION\n                    \n                            Menendez attached provisions on energy, children, veterans, emergency preparedness and combating violence against women\n                    \n                      April 3, 2009\n                     WASHINGTON - Last night, the U.S. Senate passed its budget resolution, establishing a budgetary framework that encompasses priorities of the Obama administration and the majority in Congress. That includes health care reform, renewable energy and education, as well cutting the Bush budget deficit in half in five years. U.S. Senator Robert Menendez (D-NJ), a member of the Budget Committee, voted in favor of the budget and added a number of provisions on issues including energy, children, veterans, emergency preparedness and combating violence against women. He praised the budget for the priorities is establishes.\"\"If we are to create economic opportunity for families today and economic stability for families in the long term, it is vital that we put in place this bold and badly-needed budget,\"\" said Menendez. \"\"A budget reflects our priorities, and this budget prioritizes quality and affordable health care, quality and affordable education and affordable renewable energy. It also puts us back on the path to fiscal responsibility by cutting the Bush annual budget deficit in half in five years. This is a distinct and needed change from budgets over the past eight years, which failed to emphasize the issues that make a difference in the lives of middle class Americans. I am proud to have gained passage of a number of provisions that will help provide for the economic well-being and safety of families. I look forward to working to make this budget's priorities a reality.\"\"Provisions attached to the budget by Menendez in both the Budget Committee and on the Senate floor include:• Energy - signaling support for increased funding of Energy Efficiency Block Grants, a program created by Menendez in 2007 to help municipalities undertake programs and projects to become more energy efficient• Children - moving toward the creation of a \"\"children's budget\"\" analysis of overall federal spending on children's programs • Veterans - supporting increased funding for State Veterans Cemeteries, with the aging of the WWII generation• Emergency preparedness - supporting funding for additional Urban Search and Rescue Teams for high-density urban areas under the Federal Emergency Management Agency• Combating violence against women - ensuring funding for the Violence Against Women Act and the Family Violence Prevention and Services Act.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7b524db1-0f37-49e9-af4a-4eb57b7ea35c,\"MENENDEZ ATTACHES PROVISIONS ON ENERGY, CHILDREN, VETERANS AND EMERGENCY PREPAREDNESS TO BUDGET\n                    \n                            Budget resolution to be voted on in Senate this week\n                    \n                      April 1, 2009\n                     WASHINGTON - As the federal budget resolution comes to the Senate floor this week, it will include several provisions attached by U.S. Senator Robert Menendez (D-NJ) during the Budget Committee session last week. Menendez's provisions include:• Energy - signaling support for increased funding of Energy Efficiency Block Grants, a program created by Menendez in 2007 to help municipalities undertake programs and projects to become more energy efficient• Children - moving toward the creation of a \"\"children's budget\"\" analysis of overall federal spending on children's programs • Veterans - supporting increased funding for State Veterans Cemeteries, with the aging of the WWII generation• Emergency preparedness - supporting funding for additional Urban Search and Rescue Teams for high-density urban areas under the Federal Emergency Management Agency.\"\"This a bold budget that not only helps create economic opportunity for families today, but helps lay the foundation for prosperity and economic security. A budget reflects our priorities, and this budget emphasizes job creation, quality and affordable health care, reduced energy costs and top-notch education. I have been working on pieces of legislation to boost energy efficiency, support our children, assist our veterans and increase emergency preparedness, which I believe have a place in this budget, and I am proud to be able to include them.\"\"On energy provision:\"\"The more we assist our hometowns in energy efficiency projects, the more we can create jobs, reduce energy costs, boost renewable energy and relieve local budgets. Supporting this program has been a priority of mine since I authored the law that created it in 2007, and it can be an important part of our economic recovery.\"\"On children provision:\"\"When we talk about laying the foundation for a new, stronger economy, our most important investment should be in our children. There are various programs through a number of federal departments that invest in children - creating a yearly analysis of how children fit in the overall federal budget will help us make the best investments possible.\"\"On veterans provision:\"\"A grateful nation takes care of its brave military veterans, and that includes ensuring that members of the Greatest Generation have respectable final resting places. This is the least we can do for them.\"\"On emergency preparedness provision:\"\"Emergency preparedness must always be a priority - it cannot be a casualty of the economic crisis, and should always be treated with a sense of urgency. New Jerseyans fully understand how important first responder preparedness continues to be. Our best and bravest must have all the resources they need to save lives and do their jobs to the best of their abilities.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=074e3e8d-8df6-40ff-95e7-3e405147cb59,\"MENENDEZ SUCCESSFULLY ATTACHES ENERGY EFFICIENCY PROVISIONS TO APPLIANCE LEGISLATION\n                    \n                            Menendez's legislation would tighten efficiency standards on common \"\"reflector lamp\"\" lighting\n                    \n                      March 31, 2009\n                     WASHINGTON - Today, as the Senate Energy and Natural Resources Committee considered the Appliance Standards Improvement Act, U.S. Senator Robert Menendez (D-NJ) successfully attached provisions to increase the efficiency of light sources and to recognize the most efficient appliances. The Menendez provisions include:• Closing the \"\"Reflector Lamp Loophole\"\" - for 17 years certain reflector lamps have been exempted from lighting efficiency standards.  As a result these \"\"bulged reflector\"\" (BR) and \"\"elliptical reflector\"\" (ER) lamps have gone from a niche product to a significant portion of the reflector lamp market. Congress narrowed this loophole in 2007, but did not close it completely.  This amendment will once and for all fix this loophole and some have calculated it could save consumers over $2 billion in electricity costs over the next 30 years.• \"\"Superstar\"\" special recognition for the most energy efficient appliances - the provision would direct the Secretary of Energy and the Administrator of the EPA to conduct a study to determine whether or not an \"\"Energy Superstar tier\"\" should be added to the Energy Star program. \"\"Superstar\"\" would recognize the top-performing products and buildings, e.g. the top 5-10% of a category.In working on his reflector lamp provision, Menendez was able to forge a compromise between the National Electrical Manufacturers Association (NEMA) and efficiency groups, including the American Council for an Energy-Efficient Economy ACEEE, the Alliance to Save Energy and the Natural Resources Defense Council.Senator Menendez said: \"\"This is vital legislation that will lower energy costs for American families. It was important to me to include these two particular provisions, which will further help save money and reduce energy consumption. Reflector lamps have been a growing segment of the lighting market but are causing a significant drain of energy and hard-earned money. It is important to bring them in line with reasonable efficiency standards. In addition, by creating a new tier of ‘Energy Superstar' appliances, consumers would be made fully aware of which products will best protect their household budgets.\"\"Steven Nadel, Executive Director of the American Council for an Energy-Efficient Economy said: \"\"The Menendez amendment closes a large loophole in current federal lamp regulations; closing the loophole will save enough electricity each year to serve about 300,000 average American homes.  We thank Senator Menendez for leading this important effort.\"\"                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8be3b3b0-c3d1-49d3-844d-ad644b725dfb,\"MENENDEZ INTRODUCES RESOLUTION HONORING CESAR CHAVEZ ON 82nd ANNIVERSARY OF HIS BIRTH\n                    \n                            Senate Republicans blocked previous attempts to pass resolution to honor Latino civil rights leader's life and work\n                    \n                      March 31, 2009\n                     WASHINGTON - Today marks the 82nd anniversary of the birth of Latino leader, labor champion and civil rights activist Cesar Chavez. U.S Senator Robert Menendez (D-NJ) today introduced a Senate resolution to honor Chavez (http://menendez.senate.gov/pdf/03312009CesarChavezResolution.pdf) - similar versions have been repeatedly blocked in previous years by Senate Republicans.\"\"As we saw in Barack Obama's historic and uplifting campaign, Cesar Chavez's rallying cry of Si Se Puede - Yes We Can - remains as powerful and inspiring for working Americans today as it was when Chavez was securing basic workers rights, defending civil rights and improving education,\"\" said Menendez. \"\"We honor this great American's life and work, which put the needs of the people ahead of powerful interests and which ultimately improved the quality of life for millions of Americans. Cesar Chavez and his legacy deserve official recognition in the United State Senate. We must pass this long-overdue resolution to honor this great American and the progress he spurred for our great nation.\"\"                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=98b2b041-04a7-4435-a97f-07c0d386a97c,\"LEGISLATION DESIGNATING GREAT FALLS IN PATERSON A NATIONAL HISTORIC LANDMARK BECOMES LAW\n                    \n                            President Signs Bill Sponsored by Lautenberg, Menendez, Pascrell\n                    \n                      March 30, 2009\n                     WASHINGTON, D.C. - Legislation authored by Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) and Rep. Bill Pascrell, Jr. (D-NJ-08) to designate the Great Falls in Paterson, New Jersey a National Historic Park was signed into law today by President Obama.\"\"Great Falls and my hometown of Paterson are finally getting the recognition they deserve.  Today brings long-deserved attention to one of our nation's most beautiful and historic landmarks.  This new national park will showcase the majesty of the falls and stimulate our region's economy by encouraging tourism, creating jobs and making the investments to preserve it for future generations,\"\" Sen. Lautenberg said.Senator Menendez said: \"\"This official recognition brings us close to the day when the natural and historic treasures that we have in Great Falls will be preserved for generations to come. New Jerseyans have always known how important and breathtaking this Garden State treasure is, but this designation confirms its importance to our great nation. No other site in the country more richly represents the remarkable transformation of our rural agrarian society based in slavery into a modern global economy based in freedom. I am proud to have worked in the Senate Energy and Natural Resources Committee to help this come to fruition. I look forward to working with Interior Secretary Salazar to create a national park at Great Falls.\"\"\"\"We have finally done it.  Beginning today, Paterson, New Jersey will finally be fully recognized for the seminal role it has played in shaping American history.  The establishment of this national park marks an historic moment for the city of Paterson and the state of New Jersey.  This unique urban national park signals a new beginning for the American cities that have been neglected by the previous administration.  It represents a new opportunity for Paterson to embrace its history, grow its economy and become a safer, stronger community,\"\" stated Rep. Pascrell. The Senate and House of Representatives recently approved the bill overwhelmingly.  The measure will designate the Great Falls in Paterson as a National Historic Park, which would enable the park to receive federal funding.  The Great Falls is the second-highest waterfall in the eastern United States. Paterson was America's first planned manufacturing city and was Alexander Hamilton's vision of what the American industrial economy should look like.                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=43d982cf-1329-49ba-86c5-8e808dd976f6,\"HOUSE OF REPS APPROVES PATERSON GREAT FALLS NATIONAL PARK\n                    \n                            LEGISLATION ADVANCES TO PRESIDENT'S DESK\n                    \n                      March 30, 2009\n                     WASHINGTON—U.S. Rep. Bill Pascrell, Jr. (D-NJ-08) and U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today praised Congressional approval of legislation that would designate about 35 acres of the Paterson Great Falls Historic District as a new unit of the National Park System. The Paterson Great Falls National Historical Park Act was approved as part of the Omnibus Public Lands Act by a vote of 285-140, clearing the park's final hurdle in Congress and advancing it to President Obama's desk where it is expected to be signed as early as next week. \"\"We have finally done it.  Beginning today, Paterson, New Jersey will finally be fully recognized for the seminal role it has played in shaping American history.  The approval of this national park by Congress clears the way for President Obama's signature and marks an historic moment for the city of Paterson and the state of New Jersey.  The establishment of this unique urban national park signals a new beginning for the American cities that have been neglected by the previous administration.  It represents a new opportunity for Paterson to embrace its history, grow its economy and become a safer, stronger community,\"\" stated Rep. Pascrell. \"\"The Great Falls in Paterson is a landmark that deserves recognition as a national historic park.  Giving the Great Falls this designation would go a long way toward recognizing the beauty and history of the site and helping preserve it for future generations,\"\" Sen. Lautenberg said.\"\"We in New Jersey already know that the Great Falls Park is one of our state's treasures, but it is also a national treasure and should be designated as such. Not only are the falls stunningly picturesque, but the park is a powerful representation of Alexander Hamilton's unique vision of America come true.  No other site in the nation more richly represents the remarkable transformation of our rural agrarian society based in slavery into a modern global economy based in freedom.  It is important to make sure these natural and historic resources are preserved for generations to come. I was proud to work toward this goal in the Senate Energy and Natural Resources Committee and am thrilled that we are nearing the day when this will be a reality,\"\"  Senator Menendez said. The Paterson Great Falls National Historical Park will cover about 35 acres of the Great Falls Historic District including the upper, middle and lower raceways, a portion of Upper Raceway Park, the Ivanhoe Wheelhouse, the Society for Establishing Useful Manufacturers Gatehouse, Overlook Park and the S.U.M Hydroelectric Plan, Allied Textile Printing including the Colt Gun Mill ruins, Mallory Ruins, Waverly Mill Ruins and Todd Mill Ruins, the Rogers Locomotive Company Erecting Shop, the Paterson Museum and the Great Falls Visitor Center. Accounting for historic features that surround the district, the legislation requires that the Interior Department conduct a study regarding the preservation and interpretation of Hinchliffe Stadium.  The study will consider listing the stadium as a National Historic Landmark and consider options for maintaining the stadiums historic integrity.In order to ensure the park is managed from the most local perspective, the legislation creates the Great Falls National Historical Park Advisory Commission to advise the Interior Secretary in the development, implementation and management of the park.  The Commission will be made up of 9 members appointed by the Interior Secretary with recommendations from New Jersey's Governor, the Paterson City Council and the Passaic County Board of Chosen Freeholders.  Commissioners will serve three year terms free of compensation.Rep. Pascrell brought the Great Falls National Park initiative to Congress in 2001 when the House approved legislation that directed the Secretary of the Interior Department to study the suitability of designating the Great Falls Historic District as part of the national park system.  The NPS study which was completed in 2006 noted the exceptional natural, cultural and historic significance of the Great Falls National Historic District, prompting Congress to begin advancing the Great Falls National Historical Park Act.The National Park System includes 391 diverse units administered by the National Park Service (NPS) of the Department of the Interior. Units generally are added to the National Park System by act of Congress, although the President may proclaim national monuments on land that is federally managed for inclusion in the system. Before enacting a law to add a unit, Congress might first enact a law requiring the NPS to study an area, typically to assess its national significance, suitability and feasibility, and other management options.  As of December 31, 2007, the National Park System encompassed 84.3 million acres of land.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ea152843-92b2-4389-9027-69edea6cefa0,\"MENENDEZ ANNOUNCES LIST OF NJ CITIES, TOWNS, COUNTIES RECEIVING TOTAL OF $75.5 MILLION IN ENERGY EFFICIENCY FUNDING FROM RECOVERY PACKAGE\n                    \n                            Menendez created national energy efficiency program for municipalities in 2007***List included***\n                    \n                      March 27, 2009\n                      WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee, today announced the list of New Jersey cities, towns and counties that will receive a total of $75.5 million from the economic recovery package for energy efficiency projects and programs. The money is being distributed through the Energy Efficiency Block Grants program, which Menendez created with legislation in 2007. The money will be used by the municipalities to support energy-saving initiatives and improve energy efficiency in transportation, buildings, and other sectors.\"\"This funding is a job-generator, a cost-saver and a renewable energy-producer, all of which are key components to an economic recovery for families in our state,\"\" said Menendez. \"\"New Jersey is leading the way to a new, stronger economy with our development, manufacturing and use of solar power, LED lighting and other forms of cutting-edge, green technology. This program is going to help spur those New Jersey industries, while boosting our local economies. I have worked closely with mayors like Doug Palmer, who testify to the importance of energy efficiency projects for their local economy, and we will continue to work together to make this program a big part of our energy policy.\"\"Allocations For New Jersey\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b09ebd93-f3b5-4aff-8f3f-0a28300ca684,\"IN PREPARATION FOR AUTISM AWARENESS MONTH, MENENDEZ REINTRODUCES LEGISLATION TO SUPPORT FAMILIES DEALING WITH AUTISM\n                    \n                            At 1 in 94 children, New Jersey has highest incidence of autism\n                    \n                      March 27, 2009\n                     WASHINGTON - With Autism Awareness Month beginning next week, U.S. Senator Robert Menendez (D-NJ) today reintroduced his legislation that would support families dealing with Autism Spectrum Disorders. The Helping HANDS for Autism Act, which is hailed by autism advocacy organizations, is a three-part legislative package that includes a program to guide families seeking services and care, increased awareness among first responders and housing for adults with ASD. At 1 in 94 children diagnosed with ASD, New Jersey has the highest rate in the nation.\"\"If a family that has been touched by autism seeks support or guidance, it should be readily available,\"\" said Menendez. \"\"This legislation is meant to strengthen the Autism Spectrum Disorder support structure, which can make a real difference in the lives of autistic citizens and their families. I will work to make sure that this issue and these proposals are in the mix as we tackle health care reform.\"\"\"\"Nothing is more important to families touched by autism than timely access to the information and services they need to meet their daily challenges,\"\" said Leslie Long, Director of Public Policy for Autism New Jersey. \"\"This legislation directly responds to the needs of the autism community and will make a tangible difference in people's lives.\"\"  \"\"Each of the three titles included in this legislation offers an important opportunity to address an area of concern for families affected by Autism,\"\" said Elizabeth Emken, Vice President of Government Relations for Autism Speaks. \"\"Autism Speaks thanks Senator Menendez for his leadership in helping families face the challenges associated with autism.\"\"\"\"Senator Menendez has taken the time to listen to the concerns of individuals with Autism and their families and the need to offer those affected by this lifelong challenge a helping hand in attaining the support, resources and opportunities to live as independently as possible in the community,\"\" said Linda Walder Fiddle, Executive Director of The Daniel Jordan Fiddle Foundation. \"\"The Daniel Jordan Fiddle Foundation fully endorses the Helping Hands for Autism Act, and looks forward to working with Senator Menendez to assure the fulfillment of its goals.\"\"\"\"The National Autism Center recognizes the importance of the Helping HANDS for Autism Act and its potential positive impact on families,\"\" said Dr. Susan M. Wilczynski, Executive Director of the National Autism Center. \"\"This comprehensive autism legislation encourages enhanced access to autism services, a more prepared community of first responders, and increased independence through housing opportunities for adults -- all vital to the health and well being of individuals with Autism Spectrum Disorders.Background of legislation:HELPING HANDS FOR AUTISM ACT OF 2009SPONSORED BY SENATOR ROBERT MENENDEZAn Act to Increase Housing, Awareness, and Navigation Demonstration Services (HANDS) for Individuals with Autism Spectrum DisordersTITLE I: AUTISM NAVIGATORThe Helping HANDS for Autism Act creates a grant program to provide autism navigator services to help families of individuals with autism spectrum disorders ‘navigate' the complex, fragmented, and often confusing web of services and care that they need.  Navigators will help guide families to current health, education, housing and social services that are often available to individuals in the autism spectrum.  Too often families feel overwhelmed after diagnosis and often lost as to where to turn for help.  For example, this program will help connect families to important treatment options soon after diagnosis, help families identify education options, help coordinate individuals' care and community support.  This program would provide a trained, knowledgeable hand to help families from the moment of diagnosis throughout their child's development.TITLE II: AUTISM AWARENESSThis bill provides for the development, demonstration and dissemination of a standard curriculum for the training of first responders (police, fire departments, emergency medical technicians and other volunteers) in assisting individuals with autism and other cognitive behavioral disabilities.  It provides grants to states and local government to support training of first responders.  People with developmental disabilities, including autism, have up to seven times more contact with law enforcement officers than others, according to an article in the F.B.I. Law Enforcement Bulletin in April 2001.  That is why training is so important.  Something as simple as first responders turning off flashing lights and sirens on a police car could make the difference between a peaceful or chaotic encounter. TITLE III: HOME OF THEIR OWNThis bill creates a HUD task force comprised of appropriate national and state autism advocacy groups, community-based organizations and parents who are charged with developing a housing demonstration grant program for adults with autism.  The goal of the grant program is to provide individualized housing and services to adults with autism spectrum disorders. SUPPORTERSAutism SpeaksAutism New JerseyThe Daniel Jordan Fiddle FoundationNational Autism CenterAutism Society of AmericaProfessional Firefighter Association of New Jersey (PFANJ)\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e41fdbee-71c7-4ff6-b735-950895345d01,\"SENATE UNANIMOUSLY PASSES RESOLUTION CALLING FOR SEAN GOLDMAN TO BE REUNITED WITH FATHER\n                    \n                            Senate Calls on Brazilian Authorities and CourtsTo Comply with International Law\n                    \n                      March 27, 2009\n                     WASHINGTON, D.C. - The Senate last night passed a resolution authored by Sens. Frank R. Lautenberg (D-NJ), Robert Menendez (D-NJ), Russ Feingold (D-WI), Bob Casey (D-PA) and Mel Martinez (R-FL) urging Brazil to comply with the requirements of the Hague Convention on the Civil Aspects of International Child Abduction and reunite Sean Goldman with his father in the United States. \"\"For nearly five years, David Goldman has been fighting to be reunited with his son Sean,\"\" Lautenberg said.  \"\"Passing this resolution puts the United States Senate on record urging Brazil to comply with international law.  Sean belongs at home with his father and I will keep working until Sean returns to the United States.\"\"\"\"This has been a heartbreaking story of a New Jersey family torn apart, but we want to help ensure that it has the best ending possible,\"\" Menendez said. \"\"Amidst the international legal and diplomatic wrangling that is ongoing, there is one fact at the core of this case that cannot be forgotten - a young boy and his father have been kept apart for years and prevented from reuniting. The Brazilian authorities must realize that there are basic issues of family at the heart of this matter and that Sean rightfully belongs with his father.\"\"\"\"By passing this resolution, the Senate recognizes Mr. Goldman's courage and perseverance in his fight for the custody of his son, as well as the incredible support from not only friends and family, but people whom he has never met but who are no less troubled by this injustice,\"\" Feingold said.  \"\"I urge the Obama administration to continue to push for the swift reunification of Mr. Goldman and his son.\"\"\"\"No parent should have to wake up to find that their child has been abducted and they shouldn't have to face these obstacles to get them back,\"\" said Casey.  \"\"I am pleased that the Senate passed this resolution and I continue to urge the Brazilian authorities to expedite cases like David's.\"\"\"\"Mr. Goldman deserves to be reunited with his son as his rightful guardian. He has diligently worked through all of the proper channels to ensure that he regains custody of his son legally. I call on the Government of Brazil, especially the federal courts, to live up to its commitment under the Hague Convention agreement and international law and return Sean to his biological father. Instances like this are far too common and we need to work to resolve them as quickly as possible.\"\"Sean Goldman, who is eight years old, was taken to Brazil by his mother, Bruna Goldman, in 2004 and kept in Brazil without the consent of his father - David Goldman.  David Goldman has since waged a legal battle to get his son back. Bruna Goldman passed away in 2008.  Sean Goldman is currently in Brazil with his stepfather.  Only recently was David Goldman allowed by Brazilian authorities to visit with Sean for the first time since he was taken to Brazil.In January, Sen. Lautenberg personally met with David Goldman and U.S. Ambassador to Brazil Clifford Sobel in separate meetings about the abduction case.  In addition, Sen. Lautenberg and Sen. Menendez earlier this year sent a letter calling on Brazilian President Luiz Inácio Lula da Silva to follow international law and assist in the return of Sean Goldman to his father.Under the Hague Convention on the Civil Aspects of International Child Abduction to which both the U.S. and Brazil are signatories, a child who is a habitual resident in one party country, and who has been removed to another party country in violation of a parent's custodial rights, is to be returned to the country of habitual residence.  However, Sean Goldman was not returned to the U.S. and instead has been in Brazil for more than four years.  The Senators' resolution urges Brazilian authorities to comply with international law.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=618e6ed3-1e3c-47f9-8c52-ebbce1c33679,\"AFTER MEETING WITH GEITHNER, MENENDEZ SIGNALS INITIAL SUPPORT FOR NEW FINANCIAL REGULATORY REFORM PLANS\n                    \n                      March 27, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, today participated in a meeting with Treasury Secretary Timothy Geithner on the Obama administration's new plan for regulatory reform related to systemic risk in the financial system. After the meeting, Menendez signaled his initial support for the direction of the plan.\"\"Families are struggling today in no small part because Wall Street was allowed to take bigger and bigger risks with Americans' money,\"\" said Menendez. \"\"Part of our economic recovery is implementing the accountability and regulation that protect American families while allowing our market-based economy to run smoothly, as it largely did before the systematic deregulation we've seen over the past decade. In general, the types of checks and balances being outlined by the Obama administration - from ensuring the stability of the largest companies to increasing oversight of potentially risky financial activities to protecting money market funds - are not only sensible, they are necessary in the face of this crisis. I look forward to working with the Obama administration to implement a plan that will help lay the foundation for a new, stronger, 21st Century economy.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d3ee35c2-a278-481b-b3a7-b4d936271d33,\"Menendez Hails $2 Billion In School and Education Funding For NJ Which Helps Economic Recovery, Lays Foundation For Economic Future\n                    \n                            Joined by local teacher and student at Ridgefield school to talk about how funds will help build new, stronger 21st Century economy\n                    \n                      March 23, 2009\n                     Ridgefield, NJ - Today U.S. Senator Robert Menendez (D-NJ) visited Ridgefield Memorial High School to announce that more than $2 billion in school and education funding for New Jersey is available as part of the economic recovery package. Menendez, joined by a local teacher and student, as well as school officials, teacher advocates and Ridgefield Mayor Anthony Suarez, said that these funds will come from a number of programs in the recovery package that will help retain teachers, update classroom technology, increase access to nutrition and support early education and education for disadvantaged and disabled students.\n\n\"\"As we rebuild our economy, we must ensure we lay the foundation for a stronger economic future,\"\" said Menendez. \"\"Investing educational tools and programs as well as the teachers who will help students reach their potential is what will ensure not only that our children prosper, but that our nation stays at the apex of the innovation curve. A modern and effective education system is crucial to emerge from this crisis stronger and positioned to continue leading the world economy. New Jersey was home to Thomas Edison and has always been a place where big thinkers can make the innovations that create jobs and economic activity. These are the type of investments that will help it stay that way.\"\"\n\n\nJoyce Powell, New Jersey Education Association President said: \"\"NJEA applauds the vision and courage of President Obama, Senator Menendez and all those in Congress who made the bold decision to invest in our future by passing the American Recovery and Reinvestment Act.\nI am particularly pleased that the bill clearly recognized the importance of investing in public education.  By designating funds to each state specifically to prevent layoffs in our public schools, the bill sent a strong message that the education of our children should remain a high priority even in the most challenging economic circumstances.That is appropriate, because education is our best hope for emerging from this current crisis stronger and better positioned to lead in the world economy.\"\"\n\nBelow is a breakdown of funding coming to New Jersey by program type:\nAmerican Recovery and Reinvestment Act\nEducation Funding to New Jersey\n \n \nState Fiscal Stabilization Fund:                   $1.3 billion\nFunds can be used on local school districts, public colleges and universities, and other high-priority needs such as public safety and other critical services, which may include education. (82 percent of money must go to education funding. The remainder may as well, though that has yet to be determined.)\nIndividuals with Disabilities Act (IDEA):   $361.5 million \nFunds are to help improve educational outcomes for individuals with disabilities.\nTitle I Education for the Disadvantaged: $253.3 million \nFunds will help close the achievement gap and enable disadvantaged students to reach their potential.\nPell Grants:                                                                     $146 million \nFunds will increase assistance for the 136,000 Pell Grant recipients in New Jersey.\nHead Start:                                                                     $12.8 million\nWill allow additional children to participate in this program, which provides development, educational, health, nutritional, social and other activities that prepare children to succeed in school.\nEducation Technology:                                $12.7 million \nFunds will purchase up-to-date computers and software and provide professional development to ensure the technology is used effectively in the classroom.\nNational School Lunch Program:                             $2 million\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=61e6efff-60e4-4c2d-b66a-95dbe44cc590,\"In Preparation For Hearing On Appliance Energy Efficiency Standards, Menendez Details Amendments He May Pursue In Legislation\n                    \n                            Member of Energy Committee encouraged by DOE-EPA announcement of forthcoming agreement on solid-state lighting\n                    \n                      March 20, 2009\n                      \n \nWASHINGTON - With the Senate Energy and Natural Resources Committee set to examine the Appliance Standards Improvement Act in a hearing tomorrow, U.S. Senator Robert Menendez (D-NJ) today detailed amendments to the bill that he may pursue and that he will raise during the hearing. Among other issues, Menendez's prospective amendments would help ensure enforcement of energy-efficiency standards, help states implement higher appliance energy efficiency standards and ensure that efficiency standards are as accurate as possible. These efforts are being hailed by energy and environmental groups.\nMenendez also expressed encouragement at a joint Department of Energy-Environmental Protection Agency announcement today that they would soon come to a joint decision as to which agency will be in charge of energy efficiency standards for solid-state lights (such as LED lighting).\nMenendez's possible amendments include:\n· Giving states the authority to enforce federal minimum efficiency standards - the DOE's appliance efficiency program suffers greatly from a lack of resources and this includes a lack of resources to enforce the law. This amendment would allow state attorneys general to go to federal court and enforce these standards.  By sharing the burden with the states, the law will be enforced more rigorously and with no additional cost to the federal government.\n· Facilitating state waivers for stronger energy-efficiency standards - manufacturers often have the data states need to prove their case to receive a waiver for stronger standards, and they refuse to divulge it. The amendment would prohibit the DOE from denying states waivers on the basis of not providing data in the sole control of manufacturers. This will provide a strong incentive for manufacturers to share data and allow a more realistic chance for states that want stronger standard.\n· Ensuring the most accurate appliance efficiency standards - several products (such as clothes and dish washers) have standards for both energy and water use.  Others have multiple metrics for different components (ceiling fans) or different product qualities (residential boilers). Yet the Bush DOE and some manufacturers maintain that DOE does not have the authority to require standards with multiple metrics.  This amendment would finally put this debate to rest by allowing DOE to use multiple metrics.\n· Closing the \"\"Reflector Lamp Loophole\"\" - for 17 years certain reflector lamps have been exempted from lighting efficiency standards.  As a result these \"\"bulged reflector\"\" (BR) and \"\"elliptical reflector\"\" (ER) lamps have gone from a niche product to a significant portion of the reflector lamp market. Congress narrowed this loophole in 2007, but did not close it completely.  This amendment will once and for all fix this loophole and some have calculated it could save consumers over $2 billion in electricity costs over the next 30 years.\n· Providing clearer guidance on information reporting - currently, the DOE does not have a systematic or consistent way of collecting the data it needs to make standards. In addition, manufacturers and retailers sometimes refuse to provide the data the DOE needs. In order to make fact-based rulemakings, the DOE must promulgate a rule spelling out what data it needs, how often it needs it, and how manufacturers and retailers can report this data.  Such a uniform requirement will also give manufacturers more notice and predictability on reporting data, rather than doing it on an ad hoc basis.\n\n\"\"This is important legislation that will ultimately result in lower energy bills for American families who are already watching every penny in these tough economic times,\"\" said Menendez. \"\"We know that had energy efficiency standards just for refrigerators not been adopted in the 1970s, our nation would be using four percent more energy today. The appliances and electronics in our homes are a large part of our energy usage - the more efficient we require them to be made, the better it is for our family budgets, our national economy and our planet.\n\n\n\"\"As a proponent of efficient solid-state lighting and as a senator from the state that is leading the way in LED lighting manufacturing, it was encouraging to see the Department of Energy and Environmental Protection Agency commit to an agreement by April. It is important to clarify the development of energy-efficiency standards for this cutting-edge technology, and I will hold those agencies to this timeline.\"\"\n\nSteven Nadel, Executive Director of the American Council for an Energy-Efficient Economy, said: \n\n\"\"Some provisions of appliance standards law are very restrictive and prevent the U.S. Department of Energy and states from undertaking actions that can save energy without burdening manufacturers.  We appreciate Senator Menendez's interest in sponsoring several amendments to ease these restrictions so that more energy can be saved while manufacturer's core interests are protected.\"\"\n\nLane Burt, Energy Policy Analyst at the Natural Resources Defense Council, said: \n\n\"\"Senator Menendez is working to improve one of the nation's most effective energy efficiency policies. His proposal to close loopholes, give the Department of Energy more flexibility in setting standards, and empower states to become players in the process is a common sense approach that will save both money and energy.\"\"\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5d2e9a68-a2bc-429a-b4ad-0cf76848708b,\"SEN. MENENDEZ URGES GEITHNER TO ALSO STOP $3 BILLION IN MORGAN STANLEY \"\"RETENTION\"\" BONUSES\n                    \n                            Menendez first raised concerns about these bonuses earlier this month, says they are similar to AIG bonuses that have sparked outrage\n                    \n                      March 17, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), who earlier this month asked Treasury Secretary Geithner to examine a reported $3 billion in retention bonuses that Morgan Stanley was planning to pay out (http://menendez.senate.gov/newsroom/record.cfm?id=309016), today urged Secretary Geithner to undertake the same kind of effort to stop those bonuses that he is undertaking to stop the AIG retention bonuses that have been the subject of justified public outrage. In a letter to Geithner, Senator Menendez, a member of the Banking and Finance committees, pointed to similarities between retention bonuses at AIG and the payouts that Morgan Stanley insisted on calling \"\"retention awards\"\" (http://www.huffingtonpost.com/2009/02/11/bailout-recipients-giving_n_165624.html). Both AIG and Morgan Stanley have received TARP funding.\"\"The retention payments at AIG and Morgan Stanley are both essentially the same form of extra compensation, and they are not fully necessary to retain executives in this tough financial market,\"\" wrote Senator Menendez. \"\"These payouts constitute misuse of taxpayer money and are an insult to hardworking families who are saving every penny and changing their way of life just to get through this financial crisis. Some on Wall Street don't understand that they, more than anyone, cannot be permitted to carry on with business as usual. These times demand shared sacrifice, and since it seems that they will never take it upon themselves, we have to bring them to such an understanding.\"\"PDF of today's letter to Geithner: http://menendez.senate.gov/pdf/031709-AIGMorganBonusLettertoGeithner.pdf Text of letter:March 17, 2009The Honorable Timothy F. Geithner                 SecretaryDepartment of Treasury1500 Pennsylvania Avenue, NWWashington, D.C. 20220Dear Secretary Geithner:As you recall from my letter of March 3, 2009, I am concerned about reports of creatively-titled bonus payments at firms that have received taxpayer money through TARP.  I am writing you to point out the similarities between the $3 billion in so-called \"\"retention award\"\" payments announced last month by Morgan Stanley and the retention payments for which AIG is now under well-justified scrutiny and to urge you to undertake the same type of effort to stop the payouts at Morgan Stanley as you are at AIG. This week's public outrage over AIG's announcement of $165 million in retention bonuses is entirely warranted.  I am glad to know that you are examining every legal means at your disposal to stop these payments from being made, and I fully support those efforts.As I explained in my previous letter, Morgan Stanley plans to pay out $3 billion in retention awards and went to great lengths to ensure that such payouts are not labeled as \"\"bonuses,\"\" presumably because of the negative connotations associated with that title (\"\"Bailed-Out Firms Distributing Cash Rewards: ‘Please Do Not Call It A Bonus', February 11, 2009).  The retention payments at AIG and Morgan Stanley are both essentially the same form of extra compensation, and they are not fully necessary to retain executives in this tough financial market.  I urge you to use every legal means available to stop these retention awards at Morgan Stanley, so long as those firms are in receipt of taxpayer dollars.These payouts constitute misuse of taxpayer money and are an insult to hardworking families who are saving every penny and changing their way of life just to keep their heads above water.  Some on Wall Street don't understand that they, more than anyone, cannot be permitted to carry on with business as usual.  These times demand shared sacrifice, and since it seems that they will never take it upon themselves, we have to bring them to such an understanding.I look forward to your response and to action by the administration.  I thank you for the strong action on the AIG situation that you announced yesterday and for your continued work toward creating an economic recovery for American families.  I look forward to continuing our work together.Sincerely,ROBERT MENENDEZUnited States Senator# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=aa1b9dac-eeca-485e-b7a1-8ea11f79d2f8,\"AIG BONUSES \"\"ARE AN INSULT TO FAMILIES TRYING TO SURVIVE THE ECONOMIC CRISIS\"\", SAYS SEN. MENENDEZ\n                    \n                            Member of Banking Committee in favor of efforts to legally reclaim the bonus money\n                    \n                      March 16, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee who has been a vocal critic of bonuses by banks receiving TARP funds (http://menendez.senate.gov/newsroom/record.cfm?id=309016), today released the following statement on bonuses paid out by AIG, the insurance giant that also has benefitted from a government rescue plan:\"\"These bonuses are an insult to families who are trying to survive the economic crisis by saving every penny and changing their way of life. They have every right to be furious that AIG is taking their tax dollars while carrying on with what can only be described as business as usual - particularly when business as usual helped put us in this mess.\"\"President Obama is right to have his administration search every legal means available to try to block these bonuses, and I will help push similar efforts in the Senate. The question must be asked: If unions can be expected to renegotiate contracts to help save companies or industries, then why can't companies do the same with their executives during this crisis?\"\"We have to make sure that Wall Street is using taxpayer money in a responsible manner. Perhaps equally as important, we have to make sure that some on Wall Street don't further erode the confidence of the American people by failing to recognize the need for shared sacrifice. There is a fundamental and troubling disconnect between the realities that families across this country are living through and how some on Wall Street are acting like there is no crisis.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b707e09b-bda7-4e67-b530-dbd711b9cfe1,\"SEN. MENENDEZ HELPS DELIVER $257 MILLION TO NEW JERSEY TO HELP CREATE JOBS, IMPROVE HEALTH CARE, PUBLIC SAFETY AND EDUCATION\n                    \n                            Omnibus appropriations bill includes $48 million for trans-Hudson mass transit tunnel, among other necessary funding\n                    \n                      March 13, 2009\n                     WASHINGTON - Last night, the U.S. Senate passed the omnibus appropriations bill, funding the federal government in key areas and bringing funding for critical and necessary projects back to the state of New Jersey. Among the funding in the bill, Senator Robert Menendez (D-NJ) was able to help deliver more than $257 million to the Garden State for projects that will help create jobs, improve health care, bolster education, combat flooding, protect the Jersey Shore and support law enforcement.\"\"Our state will receive funding for necessary projects that create jobs, stimulate economic activity and keep New Jersey families healthy and safe,\"\" said Senator Menendez. \"\"Families are struggling across our state, and the types of job opportunities funded through this bill, as well as the improvements in health care, education and public safety are a part of our economic recovery. I am proud to have helped deliver federal funding for projects that can help make a difference in the lives and economic situations of New Jersey families.\"\"Major projects, like the mass transit tunnel across the Hudson, are receiving a boost through this bill. That project will put people to work, help save commuters time and money and help us break our dependence on foreign oil - all of which are key for an economic recovery. This bill also brings funding for smaller-scale but critically important projects that benefit our families. It includes programs to modernize hospitals, police departments and educational institutions and projects to protect lives and property from flooding and beach erosion.\"\"Below is a list of some of the key projects for which Senator Menendez helped secure funding through the omnibus bill:TRANSPORTATION/REDEVELOPMENT/ENERGY• ARC trans-Hudson mass transit tunnel - $48,000,000• New York/New Jersey Harbor deepening - $86,127,000• Interstate 295/ Route 42/Interstate 76, Direct Connection - Camden County -$2,850,000• Joseph G. Minish Historic Waterfront Park - Essex County - $3,000,000• Bloomfield Intermodal Station Improvements - Essex County - $1,900,000• College Avenue Redevelopment - New Brunswick - $950,000• Short Line Rehab - Salem County - $950,000• Redevelopment of Koppers Coke Site - Hudson County -  $380,000• Trenton Fuel Works Biofuels Plant Re-Construction - Mercer County - $475,750HEALTH CARE• Newark Beth Israel Medical Center, Emergency Department Expansion - $381,000• Christ Hospital, Emergency Department Renovation/Equipment Project -Hudson County - $ 571,000• AtlantiCare, Cancer Care Institute - Atlantic County $381,000• Lourdes Health System, Computerized Provider Order Entry and Documentation System - Camden County - $381,000• West Jersey Hospital Neonatal Intensive Care Unit, Electronic Medical Record - Camden County - $190,000 • Newton Memorial Hospital, Health Information Technology Initiative - Sussex County - $190,000EDUCATION• Police Athletic League of New Jersey State-Wide After-School Program - $1,500,000PUBLIC SAFETY• Law Enforcement Techologies Equipment - City of Camden - $1,000,000• Edgewater Police and Emergency Services Equip. Upgrade Project - Bergen County - $500,000 • Passaic County Prosecutor's Office, Fiber Optic/Interoperable Communications Network - $200,000• The Generations, Inc. Youth Anti-Violence Program - Camden County - $150,000• Crime Victim Pro Bono Legal Advocacy Project - Sussex County - $150,000FLOOD CONTROL• Raritan River Basin, Green Brook Sub-basin - Somerset County - $10,000,000• Passaic River Flood Management - Passaic County - $1,000,000• Elba Point Water Restoration Project - Sussex County -  $500,000• Ramapo and Mahwah Rivers - Bergen County - $ 191,000JERSEY SHORE • Barnegat Inlet to Little Egg Inlet (Long Beach Island) (Army Corps of Engineers project) - Ocean County - $11,700,000• Great Egg Harbor Inlet and Peck Beach (Army Corps of Engineers project) - Cape May County - $2,967,000• Raritan Bay and Sandy Hook Bay, Port Monmouth (Army Corps of Engineers project) - Monmouth County - $957,000AGRICULTURE/CONSERVATION• Blueberry and Cranberry Research (Rutgers University) - Burlington County - $451,000• Summer Flounder Initiative (fisheries) - Ocean County - $1,000,000• Supawana Meadows National Wildlife Refuge - Salem County - $1,500,000• Highlands Conservation Act - Morris County - $1,500,000                                                    # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=58ed1a41-d69e-407b-88b9-ced0daf4647d,\"MENENDEZ, LAUTENBERG ANNOUNCE $1,424,603 FOR ATLANTIC CITY INTERNATIONAL AIRPORT\n                    \n                            Grant to update the airport master plan study and help expand terminal building\n                    \n                      March 13, 2009\n                     WASHINGTON, D.C. - Today, U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) announced that the U.S. Department of Transportation (DOT) has awarded a $1,424,603 grant to the South Jersey Transportation Authority for projects to improve Atlantic City International Airport's safety and efficiency.\"\"Safe, efficient transportation is a key to our economic competitiveness. This is another step toward making New Jersey airports as secure, efficient, and modern as possible. As we rebuild our economy, it is crucial that we lay the appropriate groundwork by investing in improvements like this.\"\" said Senator Menendez.\"\"We need to make New Jersey's airports as safe, modern and reliable as possible so travelers get to their destinations safely—and on time.  These funds will help improve and modernize Atlantic City International Airport so it can meet future travel and public safety demands,\"\" said Senator Lautenberg.The grant will be used to update the airport master plan study and to design an expansion of the airport's terminal building, two projects key to improve the airport's safety and efficiency. The update to the master plan study will determine the airports aircraft rescue and fire fighting facility needs to meet current and future requirements. Additional space in the airport's terminal will house a new Federal Inspection Service for the movement of international arrival passengers and baggage that currently does not meet Customs and Border Patrol guidelines.Senator Menendez and Senator Lautenberg have long been advocates of airport security and modernization. More than $12.4 million in federal funds to bolster projects of critical importance to the New Jersey aviation community were announced in 2008.                                                    # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7f563ca2-3adb-4ce5-9ec4-d0424208b8a4,\"SEN. MENENDEZ CALLS FOR FUNDS TO BOLSTER SECURITIES AND EXCHANGE COMMISSION\n                    \n                            Member of Banking Committee urges Senate Appropriations Committee to allow SEC to use $17 million that was previously unspent\n                    \n                      March 13, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, today called for the Securities and Exchange Commission to have access to $17 million that was appropriated to it in prior years but went unspent. Senator Menendez wrote Senators Richard Durbin (D-IL) and Susan Collins (R-ME), the Chairman and Ranking Member of the Appropriations Subcommittee on Financial Services and General Government, maintaining that the SEC must be fully prepared to provide oversight of the financial markets, particularly in light of past failings and the current economic crisis. SEC Chairwoman Schapiro testified to a House Appropriations Subcommittee yesterday that her agency would have to make cuts without more funding and requested the ability to use the unspent $17 million from previous years.\"\"As the securities markets continue to operate in a state of turmoil, it is more critical now than ever that we provide all the resources necessary for the SEC to reestablish itself as an effective and vigilant protector of investors and the integrity of our capital markets,\"\" wrote Senator Menendez. \"\"As the past year has shown us all too vividly, the SEC was fundamentally unprepared to meet the challenges it was charged to address.  From inadequate regulation of investment banks like Bear Stearns and Lehman Brothers, to the massive Ponzi scheme implemented by Bernard Madoff, the SEC failed to protect investors and the American people as a whole from fraudulent and unscrupulous practices that should have never been allowed. \"\"While it's clear that ideology contributed to the SEC's lax enforcement during the Bush Administration, it also seems to be the case that the Commission is currently suffering from a lack of resources needed to implement the necessary changes proposed by Chairwoman Schapiro.\"\"PDF of letter to Appropriations Committee: http://menendez.senate.gov/pdf/03122009DurbinSEC.pdfText of letter:                                                                                March 12, 2009The Honorable Richard Durbin   Chairman             Senate Appropriations CommitteeSubcommittee on Financial Services and General GovernmentWashington, D.C. 20510 The Honorable Susan CollinsRanking MemberSenate Appropriations CommitteeSubcommittee on Financial Services and General GovernmentWashington, D.C. 20510Dear Chairman Durbin and Ranking Member Collins:I am writing to urge you to reprogram $17 million dollars appropriated to the Securities and Exchange Commission (SEC) but not spent in the years prior to Fiscal Year 2009, so that the SEC has that money available this year for much-needed enforcement activity.  As the securities markets continue to operate in a state of turmoil, it is more critical now than ever that we provide all the resources necessary for the SEC to reestablish itself as an effective and vigilant protector of investors and the integrity of our capital markets. As the past year has shown us all too vividly, the SEC was fundamentally unprepared to meet the challenges it was charged to address.  From inadequate regulation of investment banks like Bear Stearns and Lehman Brothers, to the massive Ponzi scheme implemented by Bernard Madoff, the SEC failed to protect investors and the American people as a whole from fraudulent and unscrupulous practices that should have never been allowed. While it's clear that ideology contributed to the SEC's lax enforcement during the Bush Administration, it also seems to be the case that the Commission is currently suffering from a lack of resources needed to implement the necessary changes proposed by Chairwoman Schapiro.  Indeed, as Chairwoman Schapiro noted in her March 11, 2009 testimony before the House Appropriations Subcommittee on Financial Services, years of flat or declining budgets forced the SEC to lose 10 percent of its employees from 2005 to 2007 alone.  During this time, critical operations were gutted.  Most notably, the Agency's Division of Corporation Finance lost 13 percent, its examination staff fell by 7 percent, and the enforcement workforce saw a cut of 10 percent. Perhaps most troubling is the fact that as the SEC was cutting its staff, the securities market it was charged with overseeing was growing dramatically.  Indeed, since 2005, the number of investment advisers registered with the SEC increased by 32 percent, with the number of broker-dealer branch offices rising by 67 percent.  In this decade alone, the amount of outstanding asset-backed securities more than doubled, to almost $2.5 trillion by 2007 with collateralized debt obligations increasing by threefold in just two years.  This massive increase in the SEC's workload demands an equally large commitment by Congress to ensure they have the resources to address these challenges.       Reprogramming this $17 million in unexpended funds will not come at any additional cost to the taxpayers.  This money was appropriated in past years so the SEC would be fully staffed and capable of properly overseeing our securities markets.  Unfortunately, the previous Administration chose to decline these resources, which left the SEC understaffed and unprepared to do its job.  As our Nation confronts the greatest economic challenge we've seen in generations, we need the SEC to be a vigilant cop on the beat, proactively looking for potential securities fraud in all its forms.    While the topic of funding our regulatory agencies might seem like an academic exercise, the effects of a failed SEC have real and disastrous consequences for our economy and the American people.  I can't think of a better example in which an ounce of prevention would have been worth a pound of cure.  That is why I urge you to reprogram the $17 million in unspent funds for the SEC to utilize in Fiscal Year 2009 so it can effectively protect investors and restore integrity in our capital markets. Sincerely,ROBERT MENENDEZUnited States Senator                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8242a814-60e5-4c19-a78b-2b9634c91eab,\"SEN. MENENDEZ SAYS NEW STEM CELL POLICY USHERS IN NEW ERA OF HOPE AGAINST DISEASE AND DISABILITY\n                    \n                            Menendez hails President Obama's reversal of ban on embryonic stem cell research and order to ensure scientific integrity\n                    \n                      March 9, 2009\n                     WASHINGTON - President Obama today reversed a Bush-administration ban on embryonic stem cell research, a type of research that scientists say has the potential to bring about tremendous medical advancements. He also ordered federal agencies to base scientific decisions on scientific fact instead of ideology. U.S. Senator Robert Menendez (D-NJ), a leading Senate proponent of embryonic stem cell research, today released the following statement:\"\"I have watched Alzheimer's Disease take over my strong and proud mother, and I want no family to have to go through in the future what our family has gone through over the past few years. Today ushers in a new era of hope against disease and disability. Millions upon millions of Americans who watch helplessly as a loved one becomes debilitated or are themselves suffering can now be more confident that there is a light at the end of the tunnel. Diabetes, paralysis, Alzheimer's, Parkinson's and, hopefully one day, cancer - these are diseases and disabilities against which we now have more of a fighting change. As someone who has been working my hardest to make this day possible, seeing President Obama help deliver this change in our fight against disease and disability was a heartwarming moment of optimism.\"\"President Obama's order to restore scientific integrity also marks a vital step forward for public health, energy and environmental policy in our nation. Good, sound science should be the basis of our medical, technological and environmental decisions. By rooting our scientific decisions in facts and not ideology, we can act in the best interests of humankind.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d37b725f-2cdd-4221-8193-ec93feafa278,\"SCHUMER, CANTWELL, MENENDEZ CALL FOR FIRST CONGRESSIONAL HEARINGS INTO WAYS VICTIMS OF PONZI SCHEMES CAN BE HELPED\n                    \n                            Families, Small Businesses, Charities, and Pension Funds Among Innocent Victims of Ponzi Schemes - Madoff Scheme Cost Investors $50 Billion, $350 Million Scheme Recently Uncovered on LI\n                    \n                      March 4, 2009\n                     Schumer, Cantwell, Menendez Call for Senate Finance Hearing to Examine Ways the Federal Government Can Help Institutions Recoup Losses, Protect Against Future ScamsWASHINGTON - Today, U.S. Senators Charles E. Schumer (D-NY), Maria Cantwell (D-WA) and Robert Menendez (D-NJ) announced they have requested that the Senate Finance Committee conduct a first ever hearing in to ways the federal government can help innocent victims of the recent rash of multi-million ponzi schemes recoup their losses. The Senators said that families, small businesses, charities, and pension funds were just some of the countless innocent victims of massive ponzi scheme involving billions of dollars. The largest ponzi scheme, run by disgraced financier Bernie Madoff, cost investors more than $50 billion. The Senators however pointed out that there are many other similar schemes that have been uncovered including one on Long Island that robbed investors of more than $350 million.\"\"Virtually overnight, entire savings, retirements, and pension accounts were wiped out, leaving the financial well-being of thousands of families and institutions in peril.  These victims were not only sophisticated financial professionals, but also ordinary people who believed they were making safe, responsible investments for their future,\"\" Schumer said.\"\"The financial security and future for the thousands of victims of these unprecedented schemes is now up in the air,\"\" said Cantwell. \"\"The Finance Committee has a duty to have an open discussion as to how these victims were duped and whether they can recover any of what was stolen from them.\"\"\"\"Families, charities and retirees - people who live and work far away from Wall Street - have been utterly devastated by the collapse of this house of cards,\"\" said Menendez. \"\"Many have been left with nothing in the midst of the worst economic crisis of their lifetime. They are now also coming to the realization that, for years, they've been paying taxes on phantom investments. It is their right to know if there is a remedy for what seems to be an injustice.\"\"In their letter to Senate Finance Committee Chairman Max Baucus (D-MT) and Ranking Member Charles Grassley (R-IA), the Senators wrote that the Madoff affair as well as other ponzi schemes have brought to light several complicated issues that lie within the jurisdiction of the Finance Committee. The Senators outlined five different areas the committee should examine during the hearing:1) At time since Mr. Madoff's arrest, as former clients attempt to assess and make sense of the massive fraud, several questions have arisen about provisions of the tax code that apply to victims of theft, including when the Madoff victims could avail themselves of that relief.  The Internal Revenue Code's \"\"theft loss\"\" deduction could allow Madoff's victims to recoup a substantial share of what they lost—the deduction is equal to the full loss less 10 percent of Adjusted Gross Income and a $100 fee.  So if an individual investor lost $750,000 with Madoff and has an annual income of $100,000, he or she would be able to claim a loss of $739,900. However, while a theft loss typically is claimed in the year it is discovered, the Code stipulates that a loss cannot be claimed until it has been determined with \"\"reasonable certainty\"\" that the claimant will not be able to recover any of the loss. Given that the investigation of Madoff is ongoing and is unlikely to be resolved for several years, there is a great deal of uncertainty among investors about whether and when it is appropriate for them to claim the deduction. 2) Madoff's clients were sent bogus earnings statements showing \"\"phantom income\"\" on dividends that were reinvested with Madoff's fund. These taxpayers paid the taxes they thought were due, but in reality there was no income.  There is tremendous uncertainty about whether these individuals can file amended returns to recoup those taxes paid in past years.  For instance, several of their constituents have asked whether the IRS will allow this procedure, under what circumstances, and for how many past years. 3) There are potential tax implications for investors who cashed out before the alleged Ponzi scheme was revealed.  Based on the legal principle of \"\"fraudulent conveyance\"\" and the precedent set by the Bayou Group fraud, there is an open question about whether this group of investors may have to return some or even all of the amount they received by cashing out portions of their investments before the fraud was revealed. 4) There are issues involving the Securities Investment Protection Corporation (SIPC), a nonprofit organization created by Congress in 1970 and funded by the securities industry.  Ostensibly, SIPC covers losses up to $500,000 resulting from securities fraud.  SIPC is within the jurisdiction of the Banking Committee, but it is unclear whether it covers individuals who invested with Madoff indirectly, such as the many Taft-Hartley union pension plans in our states that invested millions with Madoff's funds and are now in serious financial trouble as a result. 5) The Madoff scheme has impacted more than 150 private foundations.  It is unclear whether these foundations will be forced to pay onerous excise taxes as a result of the fraud. A sizeable tax hit would be especially problematic for foundations that are already in dire financial straits.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8e7b12c9-05b8-4258-ba09-0cafee0dd4a7,\"MENENDEZ, LAUTENBERG ANNOUNCE ALMOST $2 MILLION FOR COMMUNITY HEALTH CENTER\n                    \n                            Grant will fund crucial primary care services for low income and uninsured individuals that lack access to affordable health care\n                    \n                      March 4, 2009\n                     WASHINGTON DC - U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that the U.S. Department of Health and Human Services has awarded the University of Medicine and Dentistry of New Jersey, Eric B. Chandler Health Center (EBCHC)an estimated $1,898,490 in federal funds for its operations. Half of the funds will be disbursed now, and the rest will be issued after the FY09 appropriation bills are passed by Congress. EBCHC serves low-income, underinsured and medically indigent individuals in the Greater New Brunswick area and the Center offers crucial primary care pediatric, obstetrics and gynecology, geriatric, dentistry and HIV counseling /testing services.  \"\"The more people lose their jobs in this harsh economy, the more health care services like these are essential to keeping families healthy,\"\" said Senator Menendez. \"\"All Americans regardless of economic status, age or race, should have access to affordable comprehensive health care. While we work with President Obama to help make health care affordable for all Americans, this grant will help ensure individuals in the most difficult economic circumstances in our state continue having access to the primary care health resources they need.\"\" \"\"In these tough economic times, we should be doing all we can to provide health care for New Jersey children and families.  These grants will go a long way toward keeping our children healthy by making sure they can see doctors and get the medicines they need,\"\" Senator Frank R. Lautenber said.   EBCHC provides services to an estimate of 60,000 persons annually. Since 1990 its active patient population has grown from 2,500 to 13,138 users.  This number is expected to continue rising as the number of uninsured patients in the area increases as a result of recent changes in Federal Medicaid legislation. Federal funding for this Center is crucial for it to continue expanding its services and providing appropriate health care to underserved groups.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2e438687-d541-4795-aaea-015079891d88,\"SEN. MENENDEZ PRESSES DEPARTMENT OF HOMELAND SECURITY ON CRUCIAL PORT SECURITY GOAL\n                    \n                            Menendez was author of 100% cargo scanning amendment, which DHS Secretary Napolitano backed away from in hearing last week\n                    \n                      March 4, 2009\n                       WASHINGTON - After Department of Homeland Security Secretary Janet Napolitano last week proclaimed that the Department cannot reach the Congressionally-mandated deadline of scanning 100 percent of cargo that comes to U.S. ports by 2012, U.S. Senator Robert Menendez (D-NJ) today urged her to not give up in that effort. Senator Menendez was an original Senate author of the amendment to the 2007 9/11 Commission legislation that set the deadline. \"\"Our ports serve as the gateway to our nation, our commerce, and our economy,\"\" wrote Senator Menendez. \"\"As daunting as the task is before us, the consequences of inaction are unimaginable. That is why I hope to work with you to ensure DHS has all the resources it needs to do everything possible to meet this 2012 deadline and fully secure our ports. If we simply resign ourselves to failure and refuse to take steps toward our ultimate goal out of the fear that the road ahead is too long and arduous, then we will never be capable of scanning all container ships, regardless of how far the deadline is from now.\"\" Napolitano made her comments in testimony before the House Homeland Security Committee last Wednesday. PDF of letter to Homeland Security Secretary Napolitano: http://menendez.senate.gov/pdf/03042009NapolitanoUSPortCont.pdf  Text of letter: March 4, 2009 The Honorable Janet NapolitanoSecretaryDepartment of Homeland SecurityWashington, D.C. 20528Dear Secretary Napolitano: I am writing to express my concern regarding your testimony before the House Homeland Security Committee where you expressed doubt that the Department of Homeland Security (DHS) would be able to meet the July 2012 deadline mandated by Congress to scan 100 percent of all containers entering U.S. ports.  I urge you to do everything you can to either ensure this deadline is fully met or at least make significant progress towards fulfilling this Congressional mandate. As you know, pursuant to the Implementing Recommendations of the 9/11 Commission Act of 2007 (P.L. 110-53, section 1701), Congress mandated that DHS scan all imported containers by nonintrusive imaging equipment and radiation detection equipment at foreign loading ports by July 1, 2012.  The purpose of this requirement is to protect the American people from terrorist attacks on our ports and transportation infrastructure, which the 9/11 Commission deemed to be at risk.  As the original sponsor of this provision and the Senator from a state that is home to the largest seaport on the East Coast, I strongly believe we must do everything within our power to meet this deadline in order to provide the American people with the safety and peace of mind they deserve. Over seven years have passed since that fateful day of September 11th, 2001.  During this time, the Bush administration has dragged its heels on port security.  As a result, we now find ourselves behind the curve - and as long as we fail to adequately invest in port security, our Nation will remain vulnerable to attack. The fact remains that until we know what is inside every cargo container entering our ports, we cannot definitively say that we are secure.  Our ports serve as the gateway to our nation, our commerce, and our economy.  They are attractive targets because an attack could result not just in physical damage and lives lost, but unimagined loss to the economy and global supply chain.  Simply put, improving our efforts to better secure the cargo coming into our ports cannot wait.  These security vulnerabilities did not appear overnight and there will be no shortcut to fully securing our Nation's ports.  But as daunting as the task is before us, the consequences of inaction are unimaginable.  That is why I hope to work with you to ensure DHS has all the resources it needs to do everything possible to meet this 2012 deadline and fully secure our ports.  If we simply resign ourselves to failure and refuse to take steps toward our ultimate goal out of the fear that the road ahead is too long and arduous, then we will never be capable of scanning all container ships, regardless of how far the deadline is from now.  Thank you for your attention to this matter.  I look forward to working with you to ensure that all containers entering the U.S. are scanned in order to protect the American people from possible future attack.                                                                                  Sincerely,                                                                                 ROBERT MENENDEZ                                                                                United States Senator\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=91929bea-45df-4eb4-8905-30401ea6421a,\"SEN. MENENDEZ URGES OBAMA ADMINISTRATION TO INVESTIGATE DEFERRED BONUSES BY BANKS RECEIVING TAXPAYER MONEY\n                    \n                            Economic recovery plan provision banning bonuses for TARP recipients may also apply to deferred bonuses\n                    \n                      March 3, 2009\n                     WASHINGTON - In order to ensure that taxpayer money is not being used to pay Wall Street bonuses, U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, today urged the Obama administration to examine recent reports of bank executive bonus deferrals and other creatively-titled reward payments. In his letter to Treasury Secretary Timothy Geithner, Senator Menendez is specifically interested in determining if these bonuses are legal - the economic recovery package included language prohibiting bonuses, which seemingly also prohibits deferred bonuses and other similar payments.In his letter, Senator Menendez wrote: \"\"The intent of Congress on behalf of the American people was to use TARP funds to free up lending, prevent foreclosures, and stimulate the economy.  If used correctly, they will help students pay for college, families get auto loans, homeowners modify mortgages, and small businesses stay open and keep their employees on the payroll.  On the other hand, if the money is used for the personal comfort and financial well-being of executives, then this rescue package will be transformed into merely a give-away to banks, to the detriment of taxpayers.\"\" PDF of letter to Treasury Secretary Geithner: http://menendez.senate.gov/pdf/03032009LettertoSecretaryGeithner.pdfText of letter:March 3, 2009The Honorable Timothy F. Geithner                SecretaryDepartment of Treasury1500 Pennsylvania Avenue, NWWashington, D.C. 20220Dear Secretary Geithner: I am writing to express my concern regarding reports of financial firms that have accepted government loans adopting compensation policies that may circumvent restrictions on executive compensation.  I urge you to investigate these reports and ensure that companies accepting taxpayer dollars comply with both the letter and spirit of the law.As you know, Section 111(b)(3)(D)(i) of the American Recovery and Reinvestment Act (ARRA) (P.L. 111-5) prohibits any \"\"…TARP recipient [from] paying or accruing any bonus, retention award, or incentive compensation during the period in which any obligation arising from financial assistance provided under the TARP remains outstanding…\"\"  This provision was enacted in order to stop firms from using taxpayer funds to pad their executives' wallets and ensures that government assistance is being used to stimulate lending to families and businesses to restart our economy. Despite this clear statutory mandate, I have read news reports of firms that receive TARP funds devising alternative plans to distribute bonuses, which might circumvent these restrictions and deserve examination.   According to the Financial Times, Bank of America has decided to defer bonuses awarded for 2008, to be paid out over the next several years (\"\"BofA Bonus Deferral Anger,\"\" January 28, 2009).  It seems that this practice would be prohibited by ARRA which bans the accrual of any bonus, retention award, or incentive compensation while TARP funds are still owed to the government.  Any work that was done in 2008 or anytime when the firm had taxpayer funds cannot be used to justify bonuses, regardless of when they are paid.     Furthermore, I anticipate that a bank may argue that by deferring these reward payments, they are ensuring the bonuses will be paid out only after they have stopped receiving taxpayer money. However, I am concerned that it may be impossible to differentiate taxpayer money that the bank receives today from money that will be used to pay bonuses in the future. By essentially guaranteeing those bonuses now, the bank may be, in essence, committing taxpayer money for those bonuses and detracting from its ability to jumpstart lending. I believe it is important to examine whether these bonus deferrals embody both the letter and spirit of the law.    In addition, according to the Huffington Post, Morgan Stanley and Citigroup's Smith Barney - which have received at least $60 billion in TARP funds - still plan to hand out exorbitant bonuses to their top executives and will attempt to circumvent the law by simply not calling the payments \"\"bonuses\"\" (\"\"Bailed-Out Firms Distributing Cash Rewards: ‘Please Do Not Call It A Bonus', February 11, 2009).  As the title states, these reports also indicate that employees receiving these bonuses are being told not to call them bonuses.  In an excerpt taken from a conference call to employees, James Gorman, co-president of Morgan Stanley said:  \"\"There will be a retention award.  Please do not call it a bonus.\"\" Awarding excessive bonuses to executives who have driven their companies to the brink of collapse would seem to be fundamentally backwards.  Using taxpayer funds to make these payments would be offensive and illegal.  This game of semantics has no place in our financial markets and is unacceptable - I urge you to examine whether this action is in fact an attempt to circumvent the law and public scrutiny. The intent of Congress on behalf of the American people was to use TARP funds to free up lending, prevent foreclosures, and stimulate the economy.  If used correctly, they will help students pay for college, families get auto loans, homeowners modify mortgages, and small businesses stay open and keep their employees on the payroll.  On the other hand, if the money is used for the personal comfort and financial well-being of executives, then this rescue package will be transformed into merely a give-away to banks, to the detriment of taxpayers.I urge you to investigate these troubling reports and ensure that firms receiving government assistance comply with both the letter and spirit of the law.                                                                                  Sincerely,                                                                                                                                                               ROBERT MENENDEZ                                                                                 United States Senator\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=495a4ec4-c28b-4a25-ae08-3f933dd989e8,\"MENENDEZ, LAUTENBERG, PALLONE ANNOUNCE $2.6 MILLION FOR NJ HEALTH CARE CENTERS AS RECOVERY PACKAGE FUNDS BEGIN ARRIVING IN NJ\n                    \n                            Community health centers in Lakewood and Long Branch to receive federal funding, strengthen health safety net, create up to 180 jobs\n                    \n                      March 3, 2009\n                     WASHINGTON - As part of the initial funding coming to New Jersey from the economic recovery package passed two weeks ago, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) and Rep. Frank Pallone (NJ-6) today announced $2.6 million to increase access to affordable health care for New Jerseyans and create jobs through community health centers. The Lakewood Resource and Referral Center in Lakewood and the Monmouth Family Health Center in Long Branch will receive support from this funding to strengthen the health care safety net for the growing number of New Jerseyans in need.\"\"The more New Jersey families feel their budgets tighten in these tough economic times, the more important it is to guarantee that quality, affordable health care is available,\"\" said Senator Menendez. \"\"The health of our families cannot be another casualty of this economic crisis. Community health centers are health care pillars that help ensure New Jerseyans have access to affordable health care, and the number of families who will rely on these centers will grow in this deep economic recession. Keeping New Jerseyans healthy and reducing health care costs are important pieces of an economic recovery, and they were important parts of the recovery package we worked with President Obama to enact.\"\"\"\"In these tough economic times, we should be making it easier for states to provide health care for our families--not harder,\"\" Sen. Lautenberg said. \"\"This funding for Lakewood and Long Branch will go a long way toward keeping our communities healthy by making sure our residents can see a doctor and get the medicines they need close to home.\"\"\"\"Today, we are seeing how the American Recovery and Reinvestment Act will help thousands of families here in New Jersey,\"\" Pallone said.  \"\"The community health centers in Long Branch and Lakewood provide essential preventive and primary health care services to those most in need of assistance, including many with no health insurance.  I commend the Obama administration for approving this funding quickly, so that it can be put to good use on behalf of New Jersey families hit hard by the economic recession.\"\"These health centers will help people in need - many with no health insurance - obtain access to the comprehensive primary and preventive health care services and create 180 jobs in New Jersey, according to the White House.U.S. Department of Health and Human Services' Health Resources and Services Administration's (HRSA), nationwide network of 1,100 health center grantees across the nation provide health care at more than 7,000 sites, ranging from large medical facilities to clinics and mobile vans. In 2007, health centers served 16.1 million patients, regardless of their ability to pay. Charges for services are set according to income, and only nominal fees are collected from the poorest patients.  Nationally, about 39 percent of health center patients have no health insurance.                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c1aabf37-0b4b-4c2c-834f-27366d19e67c,\"SEN. MENENDEZ STATEMENT ON PRESIDENT OBAMA'S IRAQ PLAN\n                    \n                            Member of Foreign Relations Committee voted against original war authorization, has consistently pushed to bring troops home\n                    \n                      March 2, 2009\n                     WASHINGTON -U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee who voted against the original war authorization in 2002 and has consistently pushed to transition the troops home, released the following statement today after President Obama announced a new Iraq plan:\"\"For six years, the Iraq War has cost our nation thousands of sons and daughters, upward of a trillion taxpayer dollars and a significant amount of our national security. This plan constitutes a badly-needed new direction to our costly engagement in Iraq, but there are some questions as to whether it forges that new direction quickly enough.\"\" \"\"Without a doubt, as someone who voted against the original authorization to begin the war and who has consistently supported measures that would help bring our troops home, a real change in our Iraq policy like this one has been a long time coming. I do have concerns that the residual forces left in Iraq after combat operations have ended will be larger than may be necessary. Going forward, I will look to the Department of Defense to provide justification for the troop level timetable and, at the very least, to prevent this timetable from slipping.\"\"                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=19106aea-6ee0-4929-a536-ea999f9eb62e,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $1.9 MILLION TO IMPROVE HEALTH CARE, PROMOTE MEDICAL RESEARCH IN NEW JERSEY\n                    \n                            Funds Will Support Community Health Centers, New Research On Human Genome, Breast Cancer\n                    \n                      February 25, 2009\n                      Newark, NJ - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Department of Health and Human Services awarded more than $1.9 million in federal funds to three New Jersey research institutions to provide health services to state residents and increase their medical research.   The funding will expand community health care centers at UMDNJ's Robert Wood Johnson Medical School and fund new research on the human genome, sepsis and breast cancer. \"\"By funding this critical research, we are creating jobs and helping our residents avoid life-threatening diseases,\"\" Sen. Lautenberg said.  \"\"These awards will go a long way to protecting the next generation and helping them build a healthy future.\"\" \"\"Our state has always been a leader in innovation, which expands the job market and makes a difference in our lives,\"\" said Senator Menendez. \"\"These federal funds will not only advance the search for cures, they help produce the groundbreaking discoveries that benefit patients in need as well as our state's economy.\"\" University of Medicine and Dentistry New Jersey, New Jersey Medical School ·         $949,245 to fund health centers.·         $553,800 to study the shock, trauma, and origin of sepsis. Rutgers·         $266,859 for continuation of research into the human genome through creating of chromatin structures.·         $168,521 to work on cancer detection and diagnosis research for breast cancer.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=24ec2d99-4978-4650-831e-d2b13daedff5,\"FINAL VERDICT ON BUSH ADMINISTRATION'S PAKISTAN POLICY SHOWS FAILURE, ACCORDING TO NEW GOVERNMENT REPORT UNVEILED BY SENS. MENENDEZ AND HARKIN\n                    \n                            Despite $12.3 billion spent since 9/11, U.S. \"\"has not met its national security goals\"\" and \"\"lacked a comprehensive plan\"\"\n                    \n                      February 23, 2009\n                     WASHINGTON - Today, U.S. Senators Robert Menendez (D-NJ)and Tom Harkin (D-IA) unveiled a new Government Accountability Office report showing failure in U.S efforts to root out terrorists in Pakistan's border region through the end of the Bush administration (LINK TO REPORT: http://www.gao.gov/products/GAO-09-263SP). Despite more than $12.3 billion in U.S. assistance to Pakistan since 9/11, almost $8.7 billion of which was in reimbursements for Pakistani military operations, the independent GAO found the following over the course of 2008: ·         The United States had not met its national security goals to destroy terrorist threats and close the safe haven in Pakistan's FATA [Federally Administered Tribal Areas];·         The United States lacked a comprehensive plan to meet those goals that included all elements of national power - diplomatic, military, intelligence, development assistance, economic, and law enforcement support - called for by various national security strategies and Congress, as well as key components we have previously reported as being needed to improve the effectiveness of plans involving multiple departments; and·         Increased oversight and accountability was needed over Pakistan's reimbursement claims for Coalition Support Funds (CSF). [Pg. 2] The GAO cites some efforts last year within the Department of Defense and the State Department to increase coordination of U.S. agencies with respect to Pakistan and within the Department of Defense to increase oversight of military reimbursements, but still raises questions as to the effectiveness and scope of those efforts.  \"\"By just about every measure that matters - falling short of national security goals, inefficient use of taxpayer money and failure to adapt - it's clear that the strategy in place over the past seven years must be rethought if we are to improve our security,\"\" said Senator Menendez. \"\"Without a doubt, this involves complicated issues in a volatile region, but results are what matter, and the result of the previous policy is that our nation's top enemy is revitalized. As the chairman of the Foreign Relations subcommittee in charge of international assistance programs, I look forward to working on a policy that focuses assistance on institutions that help ensure long-term stability and minimize the threat in Pakistan.\"\"\"\"The Bush Administration has thrown billions of taxpayer dollars down a rabbit hole and failed to close the terrorist safe haven along Pakistan's border with Afghanistan - one of our nation's key national security goals,\"\" said Harkin. \"\"And now we learn that the Taliban and al Qaeda are more able than ever to attack the United States. This colossal foreign policy and national security failure is yet another legacy item of the Bush Administration - one that we will work to turn around with President Obama and the new Congress.\"\"Senators Menendez and Harkin were the Senate requesters of this GAO report.According to the GAO, of the $12.3 billion in assistance to Pakistan since 9/11, 70.4 percent ($8.7 billion) has been in the form of Coalition Support Fund reimbursements for military activity; 26.7 percent ($3.3 billion) has been in the form of development and economic support; 2.6 percent ($318 million) has been in the form of law enforcement; and 0.3 percent ($39.5 million) has been in the form of diplomacy.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6853160b-2098-476d-bd4d-2ab0c981a063,\"AS PART OF ECONOMIC RECOVERY PACKAGE, SEN. MENENDEZ SECURES $70 MILLION FOR SCHOOLCHILDREN UPROOTED BY FORECLOSURE CRISIS\n                    \n                            NJ Senator has been main proponent of funding help children remain in their schools after families have lost their homes\n                    \n                      February 20, 2009\n                     ELIZABETH, NJ - In the economic recovery package passed on Friday, U.S. Senator Robert Menendez (D-NJ), with the support of Senator Edward Kennedy (D-MA) and Senator Patty Murray (D-WA), secured $70 million in federal funding for a program to help schoolchildren uprooted by foreclosures to remain in their schools and receive educational assistance. As a result of the nationwide foreclosure crisis, potentially millions of students, including 50,000 in New Jersey, will see their families lose their homes, and many have already found themselves floating from school to school. In July, in the Housing and Economy Recovery Act, the U.S. Senate approved an amendment authored by Senators Robert Menendez (D-NJ) and Edward Kennedy (D-MA) that authorized funding.  This funding bolsters the McKinney-Vento Homeless Education program.  \"\"Not only do we have moral obligation to extend a helping hand to our nation's children who are in tough situations through no fault of their own, but part of our economic recovery process is laying the groundwork for our economic future through education,\"\" said Senator Menendez. \"\"This is a necessary part of our response to the foreclosure crisis that has uprooted millions of families. One of the most devastating pieces of collateral damage has been the effect it can have on our nation's children. When abruptly uprooted from schools where they've formed connections, they are put at risk for poor academic performance and behavioral problems. It's unfair to let them float from one unfamiliar school to another, against the will of their parents, and through no fault of their own.\"\"\"\"We are all aware of the drastic increase in homeless students as a result of the foreclosure crisis. Thankfully, Senator Menendez has been an unwavering champion for these children, ensuring that the economic recovery package addresses this issue with substantial funding,\"\" said Bruce Lesley, President of First Focus, a bipartisan children's advocacy organization. \"\"Senator Menendez's push to provide resources for the Education for Homeless Children and Youth program will ensure that although children lose their homes, they will not lose their schools as well.  Now more than ever, we need to provide students with those supports so that they need will grow and succeed. We are thankful that Senator Menendez has stepped up for these vulnerable children.\"\"\"\"This critical funding comes at a time when schools are struggling to meet the needs of record numbers of homeless students.  As a result of these dollars, we will be able to reach many more children and youth whose lives, and education, have been upended by loss of housing. The funding will provide essential services such as transportation, school supplies, enrollment assistance, and counseling.  It will help make school a place of hope in the midst of the upheaval caused by the economic crisis.\"\"  Tim Stalhke, President, National Association for the Education of Homeless Children and YouthAbrupt, and in some cases frequent, changes of school can affect a child's ability to learn and puts strain on school districts. An analysis by the group First Focus and the Brookings Institution has estimated that up to two million schoolchildren will be affected by the foreclosure crisis.Senator Menendez has previously worked in partnership with Senator Edward Kennedy (D-MA) in getting funding for the program. Their previous effort have been supported by the following national organizations: Alliance for Children and Families Alliance for Excellent Education, American Humane Association, Break the Cycle. Camp Fire USA, Child Welfare League of America, Communities In Schools, First Focus, National Association for the Education of Homeless Children and Youth, National Association of Elementary School Principals, National Association Secondary School Principalsm National Collaboration for Youth, National Education Association, National PTA, National School Boards Association, Public Education Network, School Social Work Association of America, The Rebecca Project for Human Rights, United Neighborhood Centers of America, Voices for America's Children, YMCA of the USA, and YouthBuild USA.The following summary and fact sheet was prepared by Focus First MENENDEZ AMENDMENTMeeting the Needs of Children Impacted by the Foreclosure Crisis  BACKGROUNDFirst Focus and the Brookings Institution estimate that nearly two million children will be directly impacted by the mortgage crisis.[1] Research shows that these children are at higher risk of doing poorly in math and reading, being held back, and eventually dropping out: Data from the National Assessment of Educational      Progress (known as the Nation's Report Card) has found that students with      two or more school changes in the previous ear are half as likely to be      proficient in reading as their stable peers.     A GAO study found that third-graders who have changed      schools frequently are 2.5 times more likely to repeat a grade than their      peers.Other researchers have found      that school and residential changes can reduce the chances that a student      will graduate by more than 50 percent.These children and youth are also at higher risk of behavioral and health problems:One study found that frequent      movers were 77 percent more likely than children who have not moved to      have four or more behavior problems.     Another study found that      attending several different elementary schools increased the likelihood of      violent behavior in high school by 20 percent.    Working families spending more      than half of their income on housing have less money available than other      families to spend on such crucial items as health care and health      insurance.  SERVICES PROVIDED BY MCKINNEY-VENTOMcKinney-Vento allows homeless students to stay in their schools even if they are forced to move outside the school district. In addition, the program provides homeless students with a variety of supports, such as tutoring, school supplies, and counseling, among others, to help stabilize their education even though the rest of their lives are fraught with uncertainty.Loss of housing can have devastating emotional consequences for children and youth. Social networks are disrupted, belongings are lost, and the stress and anxiety of not knowing where or when new permanent housing will be found prevent children from being able to focus on their education. More McKinney-Vento funding will enable school districts to provide the counseling and other assistance necessary to help children and youth with the emotional trauma caused by homelessness.CHALLENGES FACING FAMILIESMany families are facing the combined challenge of the foreclosure crisis, the downturn in the economy, the spike in food and gas prices, and the nation's lack of affordable housing. For example, a school district in Alabama discovered a family who was homeless due to foreclosure only when the mother's car broke down. The mother did not want her autistic elementary-age child to suffer the dual trauma of losing her home and her school; therefore, she used what little money she had on gas to drive her daughter to and from school.The mother had not informed the school about her situation because she did not know she qualified under the McKinney-Vento Act and that services were available. She had been depleting the family's scare resources on gas to get her child to school, thus hampering the family's efforts to save money to get out of the motel and into rental housing. Unfortunately, the mother's car broke down and the child was no longer able to go to school. The school district then identified the family as homeless and is now working to provide transportation so the child can go to school, and other services so the family can get back on its feet.  Additional McKinney-Vento funding would assist school districts to identify homeless families, and provide them with gas vouchers or other transportation assistance so they do not have to further deplete their savings in order to provide educational stability for their children.CHALLENGES FACING SCHOOL DISTRICTSAs a result of the foreclosure crisis and economic downturn, school districts are identifying more children and youth who are homeless, adding to the already large and growing population of children and youth who do not have stable housing. These increased numbers are straining school district transportation budgets, as well as other resources necessary to ensure school stability and support for academic success. Families who have lost their housing due to foreclosure need assistance navigating social services, housing, and other systems of community aid with which they are often unfamiliar. The responsibility for providing these referrals and \"\"navigation\"\" assistance belongs to McKinney-Vento school district liaisons. With increased caseloads, liaisons are struggling try to provide comprehensive assistance to all impacted families - those homeless due to foreclosure and those homeless for other reasons - and to ensure that children and youth are connected to the full range of educational supports. At the current funding level, only 5% of school districts nationwide receive these subgrants. The emergency grants that are authorized by the Menendez amendment would allow States to provide supplemental funding to any school district that has demonstrated need due to increased foreclosures, thus allowing more school districts to provide assistance to more children and youth who are homeless due to foreclosure.  [1] For additional information on the impact of the mortgage crisis on children, see The Impact of the Mortgage Crisis on Children and their Education by Phillip Lovell and Julia Isaacs, available at www.firstfocus.net. The estimated number of children impacted by the crisis in each state is available on page 2.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c50b0f84-15bc-4394-aa00-10eb77a30d8b,\"SEN. MENENDEZ SAVES MORE THAN 1.6 MILLION NEW JERSEYANS FROM UNEXPECTED TAX HIKE\n                    \n                            In economic recovery package, Menendez secured one-year fix for Alternative Minimum Tax, which threatens middle-class taxpayers. NJ has highest rate of taxpayers subject to AMT.\n                    \n                      February 19, 2009\n                     WASHINGTON - In the economic recovery package that passed on Friday, U.S. Senator Robert Menendez (D-NJ) was able to save up to an estimated more than 1.6 million New Jersey taxpayers from facing an unexpected tax hike. In the Senate Finance Committee, Senator Menendez was able to pass a one-year patch to the Alternative Minimum Tax - a tax unintentionally threatens millions of middle class taxpayers. New Jersey taxpayers would have to pay up to $5,600 in additional taxes under the AMT. The Congressional Research Service estimates that approximately 1,742,000 New Jerseyans would be protected from the Alternative Minimum Tax in 2009. Total savings for New Jersey taxpayers from the AMT patch in 2009 will be an estimated $4.4 billion.\"\"Part of economic recovery for middle class families who have tight budgets is tax relief,\"\" said Senator Menendez. \"\"It was important to me to make sure that over a million middle class taxpayers in our state don't get hit with an unexpected tax hike, which would be particularly damaging now, when families are mindful of every last dollar. This tax was never meant to burden middle class taxpayers, and this fix will allow them to in many cases keep thousands of dollars in their pockets. I was proud to use my seat on the Senate Finance Committee to get this done, and I am glad to see it become law.\"\"The Alternative Minimum Tax was originally created to prevent the wealthiest Americans from skirting higher tax rates, but it was not indexed to inflation and now threatens to raise taxes for millions of middle class Americans.Before a patch was passed last year, joint taxpayers earning $74,660 or more could have been subject to the paying the higher AMT. In total, more than 1.6 million New Jerseyans faced the higher tax last year before the patch, and many of those were middle class taxpayers. This represented the highest percentage of taxpayers in any state that would have been subject to the AMT.                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9a75b78c-c1e3-4ef6-9e50-bfc5cc28b274,\"AS PART OF ECONOMIC RECOVERY PACKAGE, SEN. MENENDEZ SECURES $70 MILLION FOR SCHOOLCHILDREN UPROOTED BY FORECLOSURE CRISIS\n                    \n                            NJ Senator has been main proponent of funding help children remain in their schools after families have lost their homes\n                    \n                      February 19, 2009\n                     ELIZABETH, NJ - In the economic recovery package passed on Friday, U.S. Senator Robert Menendez (D-NJ), with the support of Senator Edward Kennedy (D-MA) and Senator Patty Murray (D-WA), secured $70 million in federal funding for a program to help schoolchildren uprooted by foreclosures to remain in their schools and receive educational assistance. As a result of the nationwide foreclosure crisis, potentially millions of students, including 50,000 in New Jersey, will see their families lose their homes, and many have already found themselves floating from school to school. In July, in the Housing and Economy Recovery Act, the U.S. Senate approved an amendment authored by Senators Robert Menendez (D-NJ) and Edward Kennedy (D-MA) that authorized funding.  This funding bolsters the McKinney-Vento Homeless Education program. \"\"Not only do we have moral obligation to extend a helping hand to our nation's children who are in tough situations through no fault of their own, but part of our economic recovery process is laying the groundwork for our economic future through education,\"\" said Senator Menendez. \"\"This is a necessary part of our response to the foreclosure crisis that has uprooted millions of families. One of the most devastating pieces of collateral damage has been the effect it can have on our nation's children. When abruptly uprooted from schools where they've formed connections, they are put at risk for poor academic performance and behavioral problems. It's unfair to let them float from one unfamiliar school to another, against the will of their parents, and through no fault of their own.\"\"\"\"We are all aware of the drastic increase in homeless students as a result of the foreclosure crisis. Thankfully, Senator Menendez has been an unwavering champion for these children, ensuring that the economic recovery package addresses this issue with substantial funding,\"\" said Bruce Lesley, President of First Focus, a bipartisan children's advocacy organization. \"\"Senator Menendez's push to provide resources for the Education for Homeless Children and Youth program will ensure that although children lose their homes, they will not lose their schools as well.  Now more than ever, we need to provide students with those supports so that they need will grow and succeed. We are thankful that Senator Menendez has stepped up for these vulnerable children.\"\"\"\"This critical funding comes at a time when schools are struggling to meet the needs of record numbers of homeless students.  As a result of these dollars, we will be able to reach many more children and youth whose lives, and education, have been upended by loss of housing. The funding will provide essential services such as transportation, school supplies, enrollment assistance, and counseling.  It will help make school a place of hope in the midst of the upheaval caused by the economic crisis.\"\"  Tim Stalhke, President, National Association for the Education of Homeless Children and YouthAbrupt, and in some cases frequent, changes of school can affect a child's ability to learn and puts strain on school districts. An analysis by the group First Focus and the Brookings Institution has estimated that up to two million schoolchildren will be affected by the foreclosure crisis.Senator Menendez has previously worked in partnership with Senator Edward Kennedy (D-MA) in getting funding for the program. Their previous effort have been supported by the following national organizations: Alliance for Children and Families Alliance for Excellent Education, American Humane Association, Break the Cycle. Camp Fire USA, Child Welfare League of America, Communities In Schools, First Focus, National Association for the Education of Homeless Children and Youth, National Association of Elementary School Principals, National Association Secondary School Principalsm National Collaboration for Youth, National Education Association, National PTA, National School Boards Association, Public Education Network, School Social Work Association of America, The Rebecca Project for Human Rights, United Neighborhood Centers of America, Voices for America's Children, YMCA of the USA, and YouthBuild USA.                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=869058f3-19bb-4231-b797-9d86dfdefaf3,\"SENATOR MENENDEZ REACTS TO PRESIDENT BARACK OBAMA'S PLAN TO FIGHT HOME FORECLOSURES\n                    \n                      February 19, 2009\n                     WASHINGTON - Today, President Barack Obama unveiled a $75 billion program to help up to 7 to 9 million families restructure or refinance their mortgages to avoid foreclosure. U.S. Senator Robert Menendez (D-NJ), Chairman of the Senate Banking Committee's Subcommittee on Housing, Transportation and Community Development, reacted to the President's foreclosure relief plan:\"\"Since March of 2007, when I first suggested that a tsunami of foreclosures was about to hit, I had been asking the previous administration to take greater steps to help families avoid foreclosure—and those requests fell on deaf ears,\"\" said Senator Menendez.  \"\"I am glad to see President Obama take some important steps to provide real relief to American families.  Foreclosures are in no one's interest—not the family's, not the bank's, and certainly not the community's.  There have been 8,000 new foreclosures in New Jersey since January 1st.  Now is the time to help stabilize the housing market and keep families in their homes.  As the new Chairman of the Banking Committee's Housing Subcommittee I look forward to reviewing the details of the President's proposal and working with the administration to revitalize our economy.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a79e7ac3-648a-4249-ab0e-a350761004b1,\"IN ECONOMIC RECOVERY PACKAGE, SEN. MENENDEZ BRINGS $73 MILLION TO NJ CITIES AND COUNTIES FOR ENERGY EFFICIENCY PROJECTS\n                    \n                            Menendez created the program that received $2.8 billion in nationwide funding through recovery package***BREAKDOWN OF FUNDING BY NJ TOWN/CITY/COUNTY INCLUDED BELOW***\n                    \n                      February 17, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) has helped to bring an estimated $73 million from the economic recovery package passed on Friday to New Jersey cities, towns and counties for energy efficiency projects. The federal funding is coming via the Energy Efficiency and Conservation Block Grant program, which Senator Menendez created in 2007. By helping communities invest in energy efficiency and renewable energy, the funding will create green jobs and assist communities struggling with energy expenses. It can provide relief to municipal budgets, helping ensure continuation of local services and helping alleviate the need for tax increases.\"\"By assisting the towns we live in with energy efficiency projects, we are creating green collar jobs, lowering energy expenses and making sure that the burden of high energy costs isn't eventually shifted onto the residents,\"\" said Senator Menendez. \"\"Each of these results helps along our economic recovery. $73 millions for municipalities in New Jersey - and $2.8 billion nationwide - is an important hometown investment.\"\"Below is a U.S. Conference of Mayors estimate of New Jersey funding by individual town, city and county:Estimates of Local Formula GrantsCity/County            Type            Population (2000)            Conference Report        Kearny            Town            40,513            $182,009        West New York            Town            45,768            $205,619        Atlantic            County            182,645            $820,553        Bergen            County            714,720            $6,421,931        Burlington            County            356,934            $3,207,141        Camden            County            237,468            $2,133,709        Essex            County            267,005            $2,399,067        Gloucester            County            178,980            $804,089        Hudson            County            143,410            $644,288        Mercer            County            350,761            $3,151,672        Middlesex            County            302,194            $2,715,287        Monmouth            County            375,962            $3,378,105        Morris            County            347,617            $3,123,423        Ocean            County            250,782            $2,253,337        Passaic            County            489,049            $4,394,224        Somerset            County            207,028            $1,860,199        Union            County            277,413            $2,492,623        Atlantic City            City            40,517            $182,028        Bayonne            City            61,842            $555,665        Camden            City            79,904            $717,957        Clifton            City            78,672            $706,887        East Orange            City            69,824            $627,385        Elizabeth            City            120,568            $1,083,332        Fort Lee            City            35,461            $159,313        Hackensack            City            42,677            $191,732        Hoboken            City            38,577            $173,312        Jersey City            City            240,055            $2,156,952        Linden            City            39,394            $176,983        New Brunswick            City            48,573            $218,220        Newark            City            273,546            $2,457,877        Passaic            City            67,861            $609,748        Paterson            City            149,222            $1,340,796        Perth Amboy            City            47,303            $212,515        Piscataway            City            50,462            $453,413        Plainfield            City            47,829            $214,877        Sayreville            City            40,377            $181,399        Trenton            City            85,403            $767,367        Union City            City            67,088            $602,801        Vineland            City            56,271            $505,608        State of New Jersey (approximate)            State                         $18,666,667        Total                         6,549,675            73,150,111          *This is a partial list of communities that will receive grants.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=566f83d8-2989-45a6-a547-c3132d02c441,\"SEN. MENENDEZ STATEMENT ON FLIGHT 3407\n                    \n                            Menendez has spoken with Transportation Secretary LaHood\n                    \n                      February 13, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today released the following statement after speaking with Transportation Secretary Ray Lahood about Continental Flight 3407:\"\"First and foremost our thoughts and prayers are with those who lost loved ones in this horrific accident. The grief they must be feeling today is unimaginable, and we will be there for them if they need us.\"\"I spoke with Transportation Secretary Ray LaHood a short time ago, and I appreciate the update he gave me as well as his team's quick response to the scene. He confirmed that the two ‘black boxes' had been successfully recovered from the site, as the National Transportation Safety Board has announced. They are en route to Washington, which is tremendously important to gain a full understanding of exactly what happened. Secretary LaHood believes at this point that the aircraft was a year old, and that at 5,000 feet it made a 180 degree turn before crashing. Additional details are still incoming.\"\"Whatever the cause and whatever the circumstances, this was a tragedy that hit particularly close to home for us here in New Jersey. My office stands ready to help the families of anyone aboard Flight 3407 if they require assistance related to the federal response to this tragedy.\"\"                                                       # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a8a6743a-8ae8-42e4-84cc-ea6aa88b3acb,\"LAUTENBERG, MENENDEZ, PASCRELL WIN HARD-FOUGHT FUNDING BATTLE FOR TRANSIT, RAIL INVESTMENTS IN ECONOMIC RECOVERY BILL\n                    \n                            Bill Clears Way for a Major Federal Down-Payment for New Mass Transit Tunnel, Amtrak Northeast Corridor Improvements\n                    \n                      February 13, 2009\n                     Washington - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) and Rep. Bill Pascrell (D-NJ-08) today announced that the final version of the Economic Recovery Act negotiated by the Senate and House of Representatives and expected to be voted on today includes provisions which would allow up to a $1.5 billion federal commitment towards the new rail tunnel connecting New Jersey and New York under the Hudson River—the largest transit project in the country—and more than $17 billion for other rail and transit projects nationwide. \"\"This recovery package provides sorely-needed funding to modernize Amtrak, develop high-speed rail and break ground on major public works projects, such as the new Hudson River rail tunnel,\"\" Sen. Lautenberg said.  \"\"Not only will this package serve as an engine for job creation, but these investments will pay off in the years to come by reducing congestion on our roads and providing new, energy-efficient options for travelers. The rail funding in this bill makes a major commitment towards the development of a nationwide high-speed rail network.  Together, these investments will stimulate our economy and help create a 21st-century transportation system.\"\"\"\"This much-needed rail tunnel embodies what we're trying to do with this recovery package - we're jumpstarting a ready-to-go project that creates jobs now and lays the groundwork for a more secure economic future,\"\" Menendez said.  \"\"Improving our mass transit system helps give New Jerseyans better options for commuting so they can save time and money. This rail tunnel contributes to an economy in which energy expenses will be decreased, green collar jobs will be increased and in which we can break free from the shackles of foreign oil. It's taken a lot of hard work to lay the foundation for this project, but this recovery package is going to get it started.\"\"\"\"This level of robust funding for transit is long-overdue,\"\" stated Pascrell.  \"\"Transit investment is a recession buster.  It puts people to work on railways and in factories throughout New Jersey.  Most importantly for the future of our state's economy, we hope to use this funding to improve the busiest rail corridor in America by providing for new transportation alternatives like the ARC tunnel project.\"\"Specifically, the bill provides $750 million for a nationwide competitive grant program administered by the Federal Transit Administration (FTA).  Federal officials can use this funding towards capital transit projects around the country; in addition, the bill provisions allow FTA to commit an additional $1.5 billion towards projects like the tunnel.  FTA has given the tunnel project one of the nation's highest ratings among all shovel-ready transit projects.  Without such a commitment, the tunnel project could have been subject to delays.  Lautenberg, Menendez and Pascrell began pushing for extra funding last year and secured it in the economic recovery package. Last month, Lautenberg and Menendez and New Jersey Gov. Jon Corzine announced that the Federal Transit Administration (FTA) has completed its environmental review process for the Hudson River Mass Transit Tunnel project, which is expected to create 44,000 permanent jobs throughout the New Jersey—New York region.  With train traffic from New Jersey to New York at maximum capacity, the tunnel project would double commuter rail capacity between the two states and improve rail service across the Garden State and reduce congestion on roadways. The bill also contains more than $9 billion for Amtrak and intercity passenger rail programs to improve the Northeast Corridor and begin to develop a network of high-speed trains nationwide.  At least $510 million will be used for additional rail improvements in Amtrak's Northeast Corridor, outside of Amtrak's regular capital budgets for the next 19 months.  These rail programs were created by Sen. Lautenberg's rail law enacted by Congress last October (Passenger Rail Investment and Improvement Act of 2008, cosponsored by Sen. Menendez).  Sen. Lautenberg's 1999 High Speed Rail Investment Act proposal was the first major proposal for a multi-billion dollar nationwide high-speed rail network.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bdcbc493-6d06-43da-b0ab-d79ad96ea600,\"LAUTENBERG, MENENDEZ, FEINGOLD INTRODUCE RESOLUTION TO REUINITE SEAN GOLDMANWITH FATHER\n                    \n                            Senators Call on Brazilian Authorities and Courts to Complywith International Law\n                    \n                      February 12, 2009\n                     WASHINGTON, D.C. - Sen. Frank R. Lautenberg (D-NJ), Sen. Robert Menendez (D-NJ), and Sen. Russ Feingold (D-WI) recently introduced a resolution urging Brazil to comply with the requirements of the Convention on the Civil Aspects of International Child Abduction and reunite Sean Goldman with his father in the United States. Sean Goldman, who is eight years old, was taken to Brazil by his mother, Bruna Goldman, in 2004 and kept in Brazil without the consent of the boy's father - David Goldman.  David Goldman has since waged a legal battle to get his son back. Bruna Goldman passed away in 2008.  Sean Goldman is currently in Brazil with his stepfather.  Only recently was David Goldman allowed by Brazilian authorities to visit with Sean for the first time since he was taken to Brazil.In January, Sen. Lautenberg personally met with David Goldman and U.S. Ambassador to Brazil Clifford Sobel in separate meetings about the abduction case.  Sen. Lautenberg also joined with Sen. Menendez earlier this month to call on Brazilian President Luiz Inácio Lula da Silva to follow international law and assist in the return of Sean Goldman to his father. Under the Hague Convention on the Civil Aspects of the International Abduction of Children, to which both the U.S. and Brazil are signatories, a child who is a habitual resident in one party country, and who has been removed to another party country in violation of a parent's custodial rights is to be returned to the country of habitual residence.  However, Sean Goldman was not returned to the U.S. and instead has been living in Brazil for more than four years.  The Senators' resolution would urge Brazilian authorities to comply with international law.A copy of the Senate Resolution is attached.                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3c5639f1-f4ab-4be6-9654-5254dd45e85d,\"ECONOMIC RECOVERY PACKAGE IMPACT ON NJ: SEN. MENENDEZ SAYS PACKAGE MEANS 100,000 JOBS FOR NJ\n                    \n                            Menendez releases jobs, tax, educational, impact of package**NJ-specific numbers included below**\n                    \n                      February 12, 2009\n                     WASHINGTON - As Congress prepares to take final votes to send the economic recovery package to President Obama's desk, U.S. Senator Robert Menendez is hailing estimates of what it will bring to New Jersey families in jobs, tax relief, provisions for laid-off workers and education.\"\"First and foremost, this package is going to help start creating and saving jobs in our state,\"\" said Senator Menendez. \"\"Jobs are the most essential piece of any family's economic situation, and that's the main focus of this package. We will also help bring economic change that affects the lives of New Jerseyans through relief on their taxes, education for their children and assistance to sustain those who have been laid off.\"\"I am proud to have been able to contribute measures to this package that I believe will improve the economic situation of New Jersey families. These include the protection of 1.7 million taxpayers in our state from an unexpected tax hike that would have come with the Alternative Minimum Tax. They include assisting cities and towns with energy efficiency and helping families plug into solar energy to create green jobs, lower energy expenses and remove the shackles of foreign oil. And they include increasing education assistance for schoolchildren left homeless by the foreclosure crisis, the silent victims of this recession.\"\"I am looking forward to casting a vote in favor of this jobs and economic recovery package in the new few days so it can get to work putting New Jerseyans to work.\"\"Below is an estimate of the economic impact of the recovery package on New Jersey:• Creating or saving 100,000 jobs over the next two years. Jobs created will be in a range of industries from clean energy to health care, with over 90% in the private sector. [Source: White House Estimate based on Romer and Bernstein, \"\"The Job Impact of the American Recovery and Reinvestment Plan.\"\" January 9, 2009.]• Providing a making work pay tax cut of up to $800 for 3,150,000 workers and their families. The plan will make a down payment on the President's Making Work Pay tax cut for 95% of workers and their families, designed to pay out immediately into workers' paychecks. [Source: White House Estimate based on IRS Statistics of Income]• (MENENDEZ PROVISION) Protecting 1,742,000 New Jerseyans from an unexpected tax raise of up to $5,600. Senator Menendez offered and successfully included a one-year patch for the Alternative Minimum Tax in the recovery plan. The AMT was created years ago to prevent high-income taxpayers from avoiding paying higher taxes, but it was never indexed to inflation and now threatens to hit millions of middle class tax payers. The Menendez provision saves these taxpayers from paying higher taxes. [Source: Democratic Policy Committee estimate: http://dpcvotes.senate.gov/dpcpub/ileaf/fs-111-1-14/states/nj.pdf]• Making 77,000 families eligible for a new American Opportunity Tax Credit to make college affordable. By creating a new $2,500 partially refundable tax credit for four years of college, this plan will give 3.8 million families nationwide - and 77,000 families in New Jersey - new assistance to put college within their reach. [Source: Center on Budget and Policy Priorities analysis of U.S. Census data]• Offering an additional $100 per month in unemployment insurance benefits to 731,000 workers in New Jersey who have lost their jobs in this recession, and providing extended unemployment benefits to an additional 148,000 laid-off workers. [Source: National Employment Law Project]  • Providing funding sufficient to modernize at least 205 schools in New Jersey so our children have the labs, classrooms and libraries they need to compete in the 21st century economy. [Source: White House Estimate]• Bringing the State of New Jersey $2.22 billion for Medicaid reimbursement. This is $86 million higher than the amount New Jersey would have received in the compromise Senate version of the package. Senator Menendez led the fight against amendments in the Senate that would have further lowered New Jersey's allocation of these funds.                                                       # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5ff24eb2-4dc3-4e31-9b66-7a5cbc44adc1,\"Senator Menendez Joins President Obama  As Landmark Children's Health Legislation Is Signed Into Law\n                    \n                            Bill to help cover up to 100,000 additional NJ kids becomes law in White House ceremony\n                    \n                      February 11, 2009\n                     WASHINGTON - Today, President Barack Obama held a ceremony in the East Room of the White House to sign into law major legislation reauthorizing and expanding state children's health insurance programs. U.S. Senator Robert Menendez (D-NJ), a member of the Finance Committee who was a leading proponent of the bill and helped project New Jersey's strong FamilyCare program against a slew of targeted amendments, attended the ceremony and spoke about the significance of the legislation after the ceremony.\n\n\"\"Knowing that this action will help ensure health coverage for some of our most vulnerable children, it was simply an uplifting and renewing moment. We are helping to pull many more children from the health care black hole that exists between Medicaid and expensive private insurance, and that's a major step forward for our health care system. To get to today, it took a lot of blood, sweat and tears - particularly in defense of New Jersey's children, who were repeatedly the focal point of attacks on the program. With the enactment of this law, we can help ensure that as many as 100,000 additional children in our state and almost 4 million across the country have a fighting chance to reach their full potential.\"\"\n\nState children's health insurance programs cover children from working families who fall in the health care void between Medicaid and private insurance. 130,000 children in New Jersey and almost 7 million nationwide are currently covered under these programs, and the expansion will provide coverage for up to an additional 100,000 New Jersey children and almost 4 million nationwide.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=430ec6a7-d062-46a9-983a-5f202cd0dac3,\"AS ECONOMIC RECOVERY PACKAGE PASSES KEY SENATE VOTE, SEN. MENENDEZ SAYS CONGRESS NOW MUCH CLOSER TO DELIVERING ECONOMIC CHANGE FOR FAMILIES\n                    \n                            In 61-36 vote, package achieves more than 60 votes necessary to move forward to final Senate passage tomorrow\n                    \n                      February 10, 2009\n                     WASHINGTON - This evening the economic recovery package passed a key vote in the U.S. Senate, achieving the 60 votes necessary to cut off debate and set the table for final Senate passage expected around noon tomorrow. U.S. Senator Robert Menendez (D-NJ), a strong proponent of President Obama's economic recovery legislation, said after the vote that though he would like to see certain provisions restored to the package during negotiations with the House of Representatives, it was vital to advance the process and move closer to enactment of badly-needed economic measures for American families:\"\"Families all across New Jersey and the country are looking to us to help spark the economic change that will make a real difference in their lives. This was a big hurdle that we cleared, and now we are much closer to enacting a package that will create millions of jobs, low-cost energy options and significant tax relief.\"\"While I believe that the original version of the bill could do even more for working families than its current form, this was a vote that allows us to continue working with President Obama to put people to work again and get our economy going. I believe that we have a chance to improve this package during negotiations with the House, and ultimately, we will deliver a package focused on job creation, job security and the foundation for future economic success.\"\"                                                           # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b67114c2-58de-42ea-832a-1a137825793f,\"WITH JANUARY JOB LOSSES AT 35 YEAR HIGH, MENENDEZ AND LAUTENBERG ANNOUNCE UP TO $22 MILLION IN SERVICES FOR LAID OFF WORKERS IN TRI-STATE AREA\n                    \n                            NJ Senators pushed for the funds, which will benefit workers laid off in NJ, NY and Conn. as a result of financial industry turmoil\n                    \n                      February 10, 2009\n                     WITH JANUARY JOB LOSSES AT 35 YEAR HIGH, MENENDEZ AND LAUTENBERG ANNOUNCE UP TO $22 MILLION IN SERVICES FOR LAID OFF WORKERS IN TRI-STATE AREANJ Senators pushed for the funds, which will benefit workers laid off in NJ, NY and Conn. as a result of financial industry turmoilWASHINGTON - U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) today announced that the New Jersey Department of Labor and Workforce Development, the New York State Department of Labor and the Connecticut Department of Labor have initially received $10.93 million - and will ultimately receive up to $22 million - for services for workers laid off in the tri-state area as a result of the financial industry collapse. These emergency funds, which the senators pushed for, are part of the U.S. Department of Labor's Workforce Investment Act and they come on a day when it was announced that 598,000 jobs were lost nationwide in January and the unemployment rate has reached 7.6%.\"\"In our region more than any other, the turmoil in the financial markets hits home and devastates a broad spectrum of families,\"\" said Senator Menendez. \"\"So much of our regional economy is tied to the financial industry that the ripple effects create struggles for families in all walks of life. Today we learned that January was another brutal month, which is why we have to make sure workers who unexpectedly find themselves unemployed have access to resources that help them prepare for and find new employment. There is nothing more vital or significant to someone's economic well being than their job, and this funding can help promote job security.\"\"\"\"Unemployment is up, consumer confidence is at an all-time low and too many of our residents are losing their homes and their jobs.  These funds will go a long way toward helping people who need it most by providing them with the services and training they need to get back to work.  The economic recession is deepening and funds like these help provide needed security for many in our state and across the region,\"\" said Sen. Lautenberg.The New Jersey Senators wrote then-Labor Secretary Elaine Chao to push for these funds: http://menendez.senate.gov/pdf/111408NEGsupportletter.pdf. They also wrote a separate letter to Secretary Chao in support of the funds together with the other tri-state senators.These Workforce Investment Act (WIA) funds will primarily be used to provide dislocated workers with services that may include skills assessment, individual career counseling, and occupational skills training.                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1a75eb84-7bf6-450c-83df-3c22a5c371af,\"WITH NEW REPORT SHOWING GANGS A GROWING SUBURBAN PROBLEM, SEN. MENENDEZ STRESSES NEED FOR LEGISLATION, GREATER US ATTY INVOLVEMENT\n                    \n                            FBI assessment shows 57 percent of state and local law enforcement in East region reported criminal gang activity in their jurisdiction\n                    \n                      February 10, 2009\n                     WASHINGTON - The Federal Bureau of Investigation has released its 2009 National Gang Threat Assessment (available here: http://www.fbi.gov/publications/ngta2009.pdf). Among its findings is that gangs in the East region (an area that includes New Jersey, six other states and Washington, D.C.) \"\"very likely will continue to expand their operations from urban communities into suburban and rural locations.\"\" The FBI estimates that there are more than 2,900 gangs with approximately 73,650 members operating in this region. 57 percent of law enforcement in the region reported gang activity in their jurisdiction, whereas 37 percent did so in 2004.U.S. Senator Robert Menendez, in the previous session of Congress, was the sponsor of the Fighting Gangs and Empowering Youth Act (details here: http://menendez.senate.gov/newsroom/record.cfm?id=271326), which focused on combating  gangs and steering youths away from gangs. He released the following statement on the Gang Threat Assessment today:\"\"Gang activity is a threat to our families, not just in our cities, but in our suburbs and beyond. We need to stand up to these gangs with the types of strong initiatives on the national and state levels that combat them directly and undercut them at their roots for the future. That is why, this year, I plan to introduce a stronger and more effective version of my anti-gang legislation, designed not only to stop existing Gang activity but to also steer our children away from gangs and toward productive futures.\"\"In New Jersey, it is incumbent on our U.S. Attorney's office to become a true partner in ending gang violence. I will be urging the next U.S Attorney in New Jersey to create a ‘tiger team' of prosecutors who come together across the state to prosecute cases involving gangs swiftly and effectively. This is an all-hands-on-deck problem.  We need to work together, share intelligence, and protect our communities.  This is a top priority for the security of New Jersey families, and it should be a top priority for our top law enforcement.\"\"                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6f5ee7a4-c2c9-4f50-a5c5-b3a6f7a315f3,\"SEN. MENENDEZ CHOSEN AS CHAIRMAN OF HOUSING AND TRANSPORTATION SUBCOMITTEE IN SENATE BANKING COMMITTEE\n                    \n                            New responsibility puts him at center of vital economic issues\n                    \n                      February 10, 2009\n                     WASHINGTON - Today, U.S. Senator Robert Menendez (D-NJ) assumed the chairmanship of the Housing, Transportation and Community Development Subcommittee in the Senate Banking Committee. In this position, the Senator will chair hearings and help direct policy on these vital issues for families in this economy.\"\"With this new responsibility, I will be able to more directly help effect change on some major economic issues that impact the lives of New Jersey families on a daily basis. The housing crisis is the root of our economic struggles. It continues to affect families who lose their homes as well as their neighbors who face plummeting property values and begin to worry about their own financial situation. I'm going to work closely with President Obama to deliver real economic security to families who are worried about how they can continue to afford their mortgage payments.\"\"This subcommittee also oversees transportation issues, especially mass transit. New Jerseyans rely heavily on mass transit to get to work and school, and they know how it useful can be to cut down on energy costs and commute times. I believe that we should be doing everything we can to support mass transit in our state and around the country to help people reduce their expenses and break our reliance on foreign oil.\"\"In addition to this subcommittee chairmanship and his membership in the Banking Committee, Senator Menendez is also a member of the powerful Senate Finance Committee; a member of the Senate Foreign Relations Committee and chair of the subcommittee that oversees foreign assistance; a member of the Senate Energy and Natural Resources Committee; a member of the Senate Budget Committee; and the Chairman of the Senate Democratic Hispanic Task Force.                                                     # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7e7e4997-8f92-4643-9335-baae21c7aad6,\"SEN. MENENDEZ REACTS TO INTERIOR SECRETARY'S ANNOUNCEMENT OF COASTLINE DRILLING POLICY REVIEW\n                    \n                            NJ Senator was sponsor of legislation to permanently ban drilling in the Outer Continental Shelf in the 110th Congress\n                    \n                      February 10, 2009\n                     WASHINGTON - Interior Secretary Ken Salazar today outlined a review and examination of energy policy with regard to drilling in the Outer Continental Shelf off the east and west coasts. He has put Bush administration's 2010-2015 five year plan for drilling up and down the coasts on hold for 180 days pending review. However, he is keeping in place the 2007-2012 plan that contains drilling off the coast of Virginia, which includes areas less than 100 miles from the Jersey Shore.U.S. Senator Robert Menendez (D-NJ), who is a staunch defender of the Jersey Shore and introduced legislation in the 110th Congress that would permanently ban drilling in the OCS, released the following statement:\"\"Secretary Salazar's is doing the right thing by fully examining the prospect of unfettered coastline drilling issue before making any determinations. This is a departure from the previous administration, which seemed intent on rubber stamping the oil companies' agenda. However, I still have serious concerns about the prospect of drilling off the coast of Virginia, less than 100 miles from New Jersey, because those plans remain in effect.\"\"I am only interested in energy policy that looks out for New Jersey families, not oil companies. Every reasonable study to date has shown that the oil along our coastline is years away from delivery and simply is not plentiful enough to significantly lower our energy costs. By bringing real change to our energy policy and emphasizing renewable energy instead of oil, we can create jobs, provide families with low-cost energy options and free ourselves from the shackles of foreign oil. On top of that, we can protect our shoreline, which is a state treasure for New Jersey families. I am hoping that the administration, after careful study of the issue, agrees with these conclusions and helps put us on a path to a new, more economical energy future.\"\"                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6c9826a0-8f45-40a8-ad58-d5c1b7c4b8f8,\"MENENDEZ, LAUTENBERG ANNOUNCE $3.6 MILLION FOR EARLY CHILDHOOD DEVELOPMENT IN MONMOUTH COUNTY\n                    \n                            Head Start Program provides educational, health, nutritional, social and other services\n                    \n                      February 6, 2009\n                     WASHINGTON - U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today announced that the US Department of Health and Human Services has awarded $3.6 million for the Head Start early childhood development program in Monmouth County. The Head Start programs that this grant will fund will be managed by Acelero Learning Monmouth County.\"\"Investing in the development of our young children is an investment in our state's future, and is key to our competitiveness in the global economy.\"\"  Sen. Menendez said.  \"\"Research indicates that all children, and disadvantaged children in particular, benefit from quality early childhood education and care. We are excited about the enhancement of this Head Start program for children and families in Monmouth County.\"\"\"\"Investing in our children's education means investing in their future,\"\" Sen. Lautenberg said. \"\"By funding Head Start programs in New Jersey, we're giving our children the chance to learn the skills they need to succeed throughout their lives.\"\"Head Start is a national program that promotes school readiness by enhancing the social and cognitive development of children through the provision of educational, health, nutritional, social and other services to enrolled children and families. The Head Start program provides grants to local public and private non-profit and for-profit agencies to provide comprehensive child development services to economically disadvantaged children and families, with a special focus on helping preschoolers develop the early reading and math skills they need to be successful in school.                                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f54e13ff-d5fa-4d4a-ab07-f43d75fa8983,\"LAUTENBERG, MENENDEZ ANNOUNCE EPA TO GIVE $200K TO NEWARK GROUP TO CLEAN-UP BROWNFIELDS\n                    \n                            Federal Funds to Train Newark Residents\n                    \n                      February 6, 2009\n                     WASHINGTON, D.C. - Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert Menendez (D-NJ) today announced the U.S. Environmental Protection Agency (EPA) has given the New Jersey Institute for Social Justice (NJISJ) $200,000 to train more than 80 underemployed or unemployed Newark residents in environmental assessment and cleanup skills.  The program is designed to cleanup brownfields and abandoned and underused properties in Newark. \"\"This Brownfields program encourages the redevelopment of contaminated, abandoned and underused sites.  These federal funds will help Newark revitalize these sites and give local residents the skills to attain lucrative, permanent jobs in the environmental sector,\"\" said Sen. Lautenberg, who serves on the Senate Environment and Public Works Committee and has made the environment one of his top priorities.\"\"Many New Jerseyans are looking for jobs, and this program will put Newark residents to work while improving their community,\"\" said Sen. Menendez.  \"\"This training will not only empower workers, it will help improve neighborhoods and address environmental issues for the benefit of ours and future generations.  This is an important first step in creating jobs as well as a healthier economy and environment for us all.\"\"NJISJ plans to train 87 students and place many of those students in environmental technician jobs and track their progress for one year.  The training program will consist of 100-hour training cycles that include coursework in lead abatement, asbestos removal, the Occupational Safety and Health Act, and other issues involving brownfields.  Upon completion of the training program, NJISJ will work with the Workforce Investment Board and the Essex County Building Trades Council to help place graduates in permanent environmental jobs.NJISJ is a Newark-based urban research and advocacy organization dedicated to the advancement of New Jersey's urban areas and residents.  Established in 1999 by the Alan V. and Amy Lowenstein Foundation, the Institute provides a dynamic and independent voice for change necessary to create just, vibrant and inclusive urban communities throughout New Jersey.                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f9223808-952c-4e7c-bc1b-35d57d401d25,\"SEN. MENENDEZ HAILS PRESIDENT OBAMA'S REVERSAL OF BUSH POLICY TO LIMIT CHILDREN'S HEALTH INSURANCE IN STATES LIKE NJ\n                    \n                            Bush administration had issued directive to make it harder for states with robust children's health programs to keep children covered\n                    \n                      February 5, 2009\n                     WASHINGTON - President Barack Obama has reversed a Bush administration directive that would have effectively limited state children's health insurance programs and would have resulted in health coverage being taken away from thousands of children in states with robust programs, like New Jersey. U.S. Senator Robert Menendez (D-NJ), a member of the Finance Committee, was a leading opponent of the directive, which was originally issued on August 17, 2007, and today praised President Obama's move.\"\"The Obama administration is demonstrating that it understands the financial realities for families in high-cost of living states like ours, particularly during this economic crisis,\"\" said Senator Menendez. \"\"This was a cold-hearted directive that would have tossed thousands of children back into the health care black hole between Medicaid and private insurance. President Obama and the new Congress are bringing about change in our health care system that will help ensure that no child goes to sleep at night without health insurance in the greatest country in the world.\"\"The Bush administration's rule change would have altered federal policy by issuing a new directive to states that effectively prevents the coverage of uninsured children if their family income is more than 2.5 times the federal poverty limit. New Jersey, which covers children up to 3.5 times the federal poverty limit would have been included.                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cf0c03e2-006e-4598-9cbd-170826f74e58,\"SEN. MENENDEZ STATEMENT IN SUPPORT OF PRESIDENT OBAMA'S NEW RULES TO PREVENT CEOs FROM ABUSING TAXPAYER MONEY\n                    \n                      February 5, 2009\n                     WASHINGTON - Today, President Barack Obama announced new rules regarding the taxpayer money that banks will receive as part of the Troubled Asset Relief Program. Included in those rules is a cap on executive compensation at $500,000 per year - CEOs of banks that have been receiving taxpayer money have drawn significant criticism for taking multi-million dollar bonuses last year.U.S. Senator Robert Menendez (D-NJ) today applauded the new rules:\"\"By giving themselves mega bonuses while their corporations are being propped up by taxpayer money, bank CEOs have done more than just draw the ire of taxpayers - they have shown tremendous irresponsibility in the stewardship of their companies during these tumultuous times. Capping their compensation and ending these ridiculous bonuses not only sends the right message to families who are watching every penny, it helps ensure that government funds are truly being used to rescue the banking sector and not just being wasted on bigwig bonuses. President Obama has emphasized the need for all of us to take responsibility, and it's time that these corporate executives join in.\"\"                                                                      # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dfb4c297-d8c5-4555-8b08-ad60b7ed6424,\"WITH UNEMPLOYMENT IN NJ AT 15 YEAR HIGH, SEN. MENENDEZ TOUTS SUPPORT FOR LAID OFF WORKERS AS PART OF ECONOMIC RECOVERY PACKAGE\n                    \n                            Menendez appeared at NJ one stop career center today to discuss worker training, unemployment insurance, emergency health care programs\n                    \n                      February 4, 2009\n                     Hackensack, NJ - Today, U.S. Senator Robert Menendez (D-NJ) appeared at a New Jersey one stop career center in Hackensack to discuss the urgent need for support for recently-unemployed workers as part of the economic recovery package currently making its way through Congress. New Jersey's unemployment rate has hit 7.1 percent, a 15 year high, and jobless claims nationally hit a new record high last week. The recovery package will be up for debate and a vote in the Senate this week.\"\"It's not only our responsibility to create new jobs—we also have a responsibility to the many thousands of workers who've lost their old jobs,\"\" said Senator Menendez. \"\"As grim as the numbers are by themselves, they can't begin to tell the story of the stress and strain a lost job puts both on laid-off workers and their families. All of a sudden they have to get by without a badly needed source of income. It's a heavy burden, financially and emotionally.\"\"We understand that a major part of helping the economy recover is allowing workers who've lost their jobs to keep their families afloat, develop the skills necessary to maintain long-term employment and find new jobs. In the economic recovery package I helped craft in the Senate Finance Committee, we're making exactly this type of bold investment.\"\"The Senate version of the recovery package includes $72 million for worker training and services in New Jersey through a variety of programs; $214 million for unemployment insurance to help laid off New Jersey workers and their families stay afloat; $200 million for emergency food assistance programs in New Jersey and $193 million for emergency housing programs in New Jersey to help the hardest-hit workers; and Continuation of Health Coverage for the recently unemployed (no NJ estimate available yet).ECONOMIC RECOVERY PACKAGE - PROGRAMS FOR THE RECENTLY UNEMPLOYEDEstimated New Jersey funding and descriptions for selected programs in current U.S. Senate version of the billWorker training and services-$72 million for New Jersey through a variety of programsExamples: Workforce Investment Act (Adults and Dislocated Workers Program) - designed to provide quality employment and training services to assist eligible individuals in finding and qualifying for meaningful employment, and to help employers find the skilled workers they need to compete and succeed in business.Career centers - the Wagner-Peyser Act of 1933 established a nationwide system of public employment offices known as the Employment Service. The One Stop delivery system provides universal access to an integrated array of labor exchange services so that workers, job seekers and businesses can find the services they need in one stop and frequently under one roof in easy-to-find locations.Unemployment Insurance-$214 million for New Jersey for unemployment insurance modernizationThe program helps cushion the impact of economic downturns and brings economic stability to communities, states, and the nation by providing temporary income support for laid off workers.Continuation of Health Coverage - COBRA -No estimate yet for NJ, nationwide estimate is $25 billion over 10 yearsThe Consolidated Omnibus Budget Reconciliation Act (COBRA) gives workers and their families who lose their health benefits the right to choose to continue group health benefits provided by their group health plan for limited periods of time under certain circumstances such as voluntary or involuntary job loss, reduction in the hours worked, transition between jobs, death, divorce, and other life events.                                                   # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=abf746b2-7505-4087-be51-57bbe0d7936d,\"Equal Pay Legislation, Co-Sponsored By Menendez, Is Signed Into Law\n                    \n                      January 30, 2009\n                     WASHINGTON - Today, President Barack Obama signed into law the Lilly Ledbetter Fair Pay Act, which was co-sponsored by U.S. Senator Robert Menendez (D-NJ). The law will help ensure all Americans are paid the same wage regardless of their age, gender, race or ethnicity.\nSenator Menendez released the following statement upon the bill's signing:\n\n\"\"As a father and an American of Latino descent, it is tremendously meaningful to help ensure that my daughter and my son are paid based on their work, not their gender or ethnicity. Pay discrimination is a relic of an outdated and unconscionable way of thinking, and hopefully this new law will put a nail in its coffin. Equal pay for equal work should be a right, not just with family budgets extra tight in this economy, but always. I was proud to co-sponsor this legislation, and I was proud to see President Obama sign it into law today.\"\"\n\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6ef2c808-fbdd-40a7-a4e0-802a55547273,\"Senate Passes Legislation Lautenberg and Menendez Cosponsored to Give Women Equal Pay\n                    \n                      January 30, 2009\n                     WASHINGTON, D.C. - The Senate today approved legislation Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) cosponsored to give women and other victims of workplace discrimination equal pay for equal work.  The Lilly Ledbetter Fair Pay Act of 2009 -- named after a woman who worked for Goodyear Tire Co. for two decades and sued her employer after she discovered she was paid less than her male counterparts for similar work -- would reverse a Supreme Court decision that said Ledbetter filed her suit too late.\n\n\"\"A woman makes only 78 cents for every dollar a man makes and a recent study showed the pay gap widening in New Jersey.  In these times of recession, with many families relying solely on a mother's income, this persistent inequality is making things harder for families across the country.  It is time women receive the same pay as their male counterparts and that we eradicate all pay discrimination,\"\" said Sen. Lautenberg.\nSen. Menendez said: \"\"Equal pay for equal work should be an absolute given under any circumstances, but it is even more important with so many people struggling in this economy.   Pay discrimination is a relic of an outdated and unconscionable way of thinking and should have been abolished long ago.   This is a momentous and long overdue step, and I am proud to have strongly supported it.\"\"\n\nLedbetter sued her employer in 1998 when she found out her employer was engaging in pay discrimination.  But she did not learn of the discrimination until years later because Goodyear Tire Co. employees were not allowed to discuss their salaries.  A jury awarded Ledbetter more than $3 million in damages but the Supreme Court overruled that decision because it said she waited too long to file her case.  The Lilly Ledbetter Fair Pay Act would give women and other victims of pay discrimination 180 days after the last discriminatory paycheck to file suit.\nThe measure is sponsored by Sen. Barbara Mikulski (D-MD) and cosponsored by 53 Senators.  The legislation passed by a vote of 61 to 36. \n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a327fd33-a6e0-452a-80f2-6d9578cc9177,\"TRAS RECORRIDO CON EL SECRETARIO DEL INTERIOR,  EL SENADOR ROBERT MENENDEZ EXPRESA OPTIMISMO SOBRE LA REAPERTURA DE LA CORONA DE LA ESTATUA DE LA LIBERTAD Y LA RESTAURACI?N DE ELLIS ISLAND\n                    \n                            Al visitar estos lugares, el secretario Salazar cumpli? con el compromiso que hizo con el senador Menendez durante sus audiencias de confirmaci?n\n                    \n                      January 28, 2009\n                     Jersey City - El nuevo secretario del interior Ken Salazar hizo un recorrido por la Estatua de la Libertad y la Isla Ellis con el senador Robert Menendez (D-NJ),  para examinar la posibilidad de reabrir la corona de la Estatua de la Libertad y restaurar partes de la Isla Ellis.  Durante el recorrido, subieron a la corona de la estatua y vieron las partes dilapidadas de la isla Ellis, que antiguamente albergaba instalaciones de salud donde los inmigrantes eran revisados.Tras el recorrido, el senador Menendez se expresó agradecido del interés del secretario Salazar y de su optimismo por la posibilidad de la reapertura de la corona y la total restauración de la Isla Ellis:\"\"El Secretario Salazar demostró que es un hombre de palabra al visitar estos tesoros nacionales una semana después de que se comprometiera conmigo durante sus audiencias de confirmación,\"\" dijo el senador Menendez.  \"\"Una cosa es escuchar a la distancia las razones por las cuales debemos reabrir estos lugares, pero otra es estar aquí en persona donde puede realmente apreciar lo que una visita sin restricciones significa para todos los norteamericanos.  De esta forma se puede apreciar el impacto que tiene sobre los norteamericanos y su sentir por la patria.\"\"Subimos a la corona de la Estatua de la Libertad donde pude hablar de la importancia de su reapertura - es un lugar emocionante y poderoso donde tener esta conversación.  En la isla Ellis, quedó claro que el Secretario se conmovió durante nuestra visita a estos edificios deteriorados que permanecen cerrados y por la historia que conservan entre sus paredes.\"\"El secretario  ahora debe asegurarse de realizar un examen completo del proceso de reapertura y restauración y debe reunir más información.  Me siento optimista de que el buscará una solución que permita la reapertura de la corona de la Estatua de la Libertad al tiempo que se proteja a los visitantes.  Me siento optimista además de que buscara la posibilidad dentro de su presupuesto para ayudar a completar la restauración de la isla Ellis.\"\"La Estatua de la Libertad fue cerrada después del 11 de septiembre del 2001; sin embargo, la base y el pedestal fueron reabiertos a visitantes en el 2004.  La corona permanece cerrada.La parte sur de Ellis island contiene edificios dilapidados que una vez fueron hospitales donde los inmigrantes eran requeridos a someterse a revisiones de salud  antes de que les fuera permitido proceder.  Una sociedad pública y privada ha sido formada para restaurar la Isla Ellis; sin embargo, esta parte de la isla continúa sin ser restaurada y por ende cerrada.La semana pasada, durante la audiencia de confirmación del senador Salazar ante el Comité de Energía y Recursos Naturales, el senador Menendez hablo de la reapertura de estos monumentos y el Secretario se comprometió a visitarlos, cumpliendo hoy con este compromiso.                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5117c3a0-4978-4814-b1e2-5f885187cece,\"SEN. MENENDEZ STRONGLY DEFENDS NJ CHILDREN'S HEALTH INSURANCE PROGRAM IN SENATE\n                    \n                            Member of Finance Committee fighting against amendments targeting NJ's strong programVideo available here: http://www.youtube.com/watch?v=ZOWNbFN-2Rc\n                    \n                      January 28, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today in a Senate speech offered a spirited defense of New Jersey's strong children's health insurance program, which has been the primary target for those looking to scale back the children's health insurance program legislation. Senator Menendez showed concrete examples of how a working family earning more in New Jersey than other states still cannot fully afford health insurance for its children.130,000 New Jersey children (and close to 7 million children nationwide) are currently enrolled in FamilyCare, the state's children's health insurance program. The legislation before the Senate could cover up to an estimated 100,000 additional New Jersey children (close to 4 million nationwide) whose families fall in the gap between Medicaid and private insurance. FamilyCare covers children whose families make up to 3.5 times the federal poverty limit, but Republican lawmakers are trying to cut off federal support for state programs at 3 times the federal poverty limit, or even lower amounts.Video of Senator Menendez's speech is available here: http://www.youtube.com/watch?v=ZOWNbFN-2Rc.Below are excerpts from and the full text of his speech:Defending New Jersey's program[6:41 of video]\"\"Some of my colleagues have also objected to how New Jersey is treated under this legislation. They object to my home state's ability to cover children whose parents' salaries are up to 350% of the federal poverty level.\"\"I want to give a rounded estimate of the monthly costs facing a family living at 250% of the poverty level—or $4,594 per month—in one of our counties, Middlesex, New Jersey. When you look at that monthly income and then you look at the costs - for housing, for food, for childcare so that you can go to work, for transportation, for the taxes that are paid there, and then what it costs for health insurance - the reality is that you have a set of circumstances where that family has a monthly deficit - a debt - of $898.\"\"Which means they don't have the wherewithal to do all of this, and these are the basics, these are no frills here. So they find themselves in debt. And on top of that, comparable private health insurance in my state can almost cost about $1,800 a month. So what does a family have left at the end of the month? The answer is: a staggering load of debt.....[10:07 of the video]\"\"Now let's just compare, state by state. I understand that 350% of the federal poverty level sounds somewhat high if you don't see the numbers. But compared to what it takes to meet that amount in New Jersey, it takes a much less amount in all of these states - in Kentucky, in Arizona, in Oklahoma, in Georgia, in Tennessee, in Utah, in Missouri, in North Carolina. Much less. Much less to meet the same level of the federal poverty level.\"\"So the bottom line is, we simply have a higher cost of living—one size does not fit all.  Now, I wish that our citizens could get the same quality of life, in terms of the essentials, for much less money, but that is not the reality. So it makes perfect sense for different states to cover children up to different levels of income in order to accomplish the same goal, which is ensuring that children at the end of the day are covered.General defense of SCHIP[13:36 of video]For all of us, this is a matter of values. Do we value our children, and do our actions match our values?For those who value life, who have spoken very eloquently in this chamber about its sanctity—and for those who value family, who consider it the bedrock of our lives and of our country—now is the time to show the depth of that belief. Because if children's health isn't about protecting life, I don't know what is. If this bill isn't pro-family, I don't know what is.Now is the time to give new security to millions of young lives, to help America's children achieve their God-given potential, and to replace fear in millions of minds with hope for a better day.Full text of speech, as prepared for deliveryM. President,Today this Congress is facing a fundamental test of our values: whether to reauthorize the state children's health insurance program and expand it to cover millions of children who would otherwise be uninsured.  And we must ask ourselves, is this good for our nation's children?  And the answer is clearly—yes.I say this as a father: there's nothing more important to parents than the health of their children.And there's nothing more important to helping them grow up to achieve their potential, and contribute all they can to our society.It's no secret what a major financial burden health care can be. We're reminded of the costs every time we go to the doctor or fill a prescription at the pharmacy. There are parents who work every day, in some of the toughest jobs in the country, but their jobs don't offer health insurance and their paychecks don't cover the cost of private coverage.They're not the only ones whose health is at serious risk because of their lack of insurance—it's also a major risk for their kids.Parents stay up at night, worrying about whether that hard cough they hear coming from their daughter's room means she's got asthma, hoping that the pain in their son's stomach doesn't mean he's going to need surgery, wondering how they're going to pay for a routine checkup—and just praying that everyone stays healthy until they can afford to get the care they need.Here's one story:A boy named Jonathan took a trip to the New Jersey shore with his family. His head started to throb on the ride from his home in New Hampshire. Finally, the pain became unbearable.I want to read what Jonathan wrote about his experience. He wrote, \"\"The pain was so bad; I had to crawl on the ground. My mom drove me to the medical center. I remember my mom calling my dad…and asking the question, ‘do we still have medical insurance?'\"\"I remember being really scared. The doctor…explained that I had an Arachnoid Cyst about the size of an ice cube growing on the left hand side of my brain. My mother stated to cry again.\"\"There was another problem: our insurance coverage had ended. Going to the hospital and having all of the CAT scans and MRI testing was super expensive. Suddenly, insurance was a huge issue.\"\"Friends told us about a program called New Hampshire Healthy Kids. My parents had to act quickly and register my brothers and me for the program. The people at N.H.H.K. were really helpful. I was able to get the medical attention I needed.\"\"Thank goodness Jonathan was okay. Stories like his are why the federal government and the states teamed up to start the State Children's Health Insurance Program. It's been a great success across the country, covering almost 7 million American children. Today in New Jersey, it covers almost 130,000 children.This year Congress has an opportunity to make children's health even more inclusive, to pass a bill that will continue to provide health care to the almost 7 million children already enrolled, and expand the program to include 4 million more children across America. That includes over 100,000 kids in my home state of New Jersey. As we're considering whether to reauthorize and expand children's health, we all have to ask ourselves two questions: One, would we want Jonathan's story to have turned out differently? And two, are we going to sit back as millions of other stories don't end as happily?The decisions we make today have very clear implications for hard-working families around this country. The difference here between no and yes can mean, for millions of children, the difference between helplessness, suffering and pain—and opportunity, health, and a better quality of life. That's how high the stakes are.COST OF LEGISLATION [4:46 of video]Some in this chamber may question whether we can afford more health care for our children. Well, let's look at the facts. First of all, this legislation won't cost us a dime—it's completely paid for.Second, making sure kids can get regular checkups and focus on preventive care has the potential to reduce emergency room visits and save costs down the line.We also need to be very clear: public health insurance does not mean free health insurance. Many families across America—and in New Jersey—are responsible for co-pays and have to pay a premium every month.But all that aside: let's look at the bigger budgetary picture, at where our priorities have been for the last several years. The War in Iraq is currently costing us $5000 every second. With what's spent on the war in Iraq in forty days, we could insure over 10 million children in America for one year. In fact, with the amount that's been spent on the war, we could provide two years of health coverage for all of the 47 million Americans who don't have health insurance, who play Russian Roulette every day with their lives and their wallets—and even after providing all that health care, we'd still have $30 billion left over. If we're willing to look at our priorities, and choose our children, tackling America's health care crisis is something we absolutely can do, within the reasonable constraints of our budget. NEW JERSEY [6:41 of video]Some of my colleagues have also objected to how New Jersey is treated under this legislation. They object to my home state's ability to cover children whose parents' salaries are up to 350% of the federal poverty level.I want to give a rounded estimate of the monthly costs facing a family living at 250% of the poverty level—or $4,594 per month—in one of our counties, Middlesex, New Jersey. When you look at that monthly income and then you look at the costs - for housing, for food, for childcare so that you can go to work, for transportation, for the taxes that are paid there, and then what it costs for health insurance - the reality is that you have a set of circumstances where that family has a monthly deficit - a debt - of $898.Which means they don't have the wherewithal to do all of this, and these are the basics, these are no frills here. So they find themselves in debt. And on top of that, comparable private health insurance in my state can almost cost about $1,800 a month.So what does a family have left at the end of the month? The answer is: a staggering load of debt.If they're making 250% of the poverty level, they're going to be in debt almost $900 dollars. It's the same in other parts of the state as well. If they're living at that income level, in Trenton, New Jersey, they're going to be in debt of $856 dollars, every single month. The federal poverty level doesn't reflect the differences in cost of living between states.If you're a family making 250% of the poverty level in Phoenix, Arizona, after all is said and done you'd have more than $1,347 left over at the end of the month, because the cost of living is lower. In Salt Lake City, Utah you'd have almost $1,469 extra.Now let's just compare, state by state. I understand that 350% of the federal poverty level sounds somewhat high if you don't see the numbers. But compared to what it takes to meet that amount in New Jersey, it takes a much less amount in all of these states - in Kentucky, in Arizona, in Oklahoma, in Georgia, in Tennessee, in Utah, in Missouri, in North Carolina. Much less. Much less to meet the same level of the federal poverty level.So the bottom line is, we simply have a higher cost of living—one size does not fit all. Now, I wish that our citizens could get the same quality of life, in terms of the essentials, for much less money, but that is not the reality.So it makes perfect sense for different states to cover children up to different levels of income in order to accomplish the same goal, which is ensuring that children at the end of the day are covered.George W. Bush understood that, and that's why he approved New Jersey's waiver to continue insuring kids at up to 350% of the federal poverty level, as we have done for a long time.Even then, I'd like to point out that the number of New Jersey children who fall into that category is just over 3,300—a tiny fraction of those enrolled nationally.   So only about 2.5% of our children are covered above 300% of the federal poverty level.                LEGAL PERMANENT RESIDENT CHILDREN [11:29 of video]            M. President,The last time legislation to expand children's health came up, hundreds of thousands of children were left out.  Children who are legal permanent residents of the United States, who follow our laws every step of the way, whose parents work hard and pay taxes—these children are eventually eligible for Medicaid or CHIP, but the law says we have to bar them from coverage for five years, first.To a young child, five years is a lifetime. Here's what it means to bar legal permanent resident children and pregnant mothers from affordable public health care for that long:As it stands, a girl with asthma has to go through 5 years of attacks before she can get an inhaler. A boy whose vision gets so blurry he can't see the chalkboard in 4th grade has to wait till he's in high school before getting glasses. A pregnant woman who urgently needs prenatal care can't get it until her child would be ready for kindergarten.I haven't met anyone who isn't outraged when they hear that kids with cancer have to wait 5 years for chemotherapy. Most people can't believe that's the law—and it shouldn't be. Kids shouldn't have to wait a single day to get the care they need to save and improve their lives. Good health care is essential for them to be able to realize their full potential.And children, whether they're in the classroom or the playground, a child with an illness can be contagious. Whether they're a legal permanent resident or a citizen. So there's a legitimate public health interest.So we have an opportunity here today to lift the 5-year bar, and take a major step toward making sure no child goes to bed at night without healthcare in the greatest nation on earth. This legislation would bring half a million kids nationwide into state health insurance programs.                CONCLUSION [13:36 of video]M. President,For all of us, this is a matter of values. Do we value our children, and do our actions match our values?For those who value life, who have spoken very eloquently in this chamber about its sanctity—and for those who value family, who consider it the bedrock of our lives and of our country—now is the time to show the depth of that belief. Because if children's health isn't about protecting life, I don't know what is. If this bill isn't pro-family, I don't know what is.Now is the time to give new security to millions of young lives, to help America's children achieve their God-given potential, and to replace fear in millions of minds with hope for a better day.Thank you, I yield the floor.                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a723dfaf-c8e9-4f90-ab7a-7be2d7d94fd0,\"SEN. MENENDEZ'S ONE-YEAR ALTERNATIVE MINIMUM TAX FIX INCLUDED AS PART OF ECONOMIC RECOVERY PACKAGE\n                    \n                            NJ Senator used seat on powerful Finance Committee to stand up for Garden State taxpayers, who are subject to AMT at highest rate in nation\n                    \n                      January 27, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today used his seat on the powerful Finance Committee to successfully attach to the economic recovery package a one-year patch to the Alternative Minimum Tax that threatens to unfairly and unexpectedly raise taxes on middle class taxpayers. New Jersey has been the state with the highest rate of taxpayers who would be subject to paying the higher Alternative Minimum Tax if no patch is passed.\"\"This tax was never meant to burden middle class taxpayers, and we are making sure they are not hit with an unexpected tax increase, particularly during this economic crisis,\"\" said Senator Menendez. \"\"By approving this fix, we can ensure that millions of middle class Americans can keep more than $3,000 in their pockets at a time when family budgets are extremely tight. In New Jersey, we have the highest proportion of taxpayers facing an unfair tax hike, and they need relief from this additional burden. It was important for Garden State taxpayers that I use my seat on the Finance Committee to remedy this looming problem. I appreciate the support of the Chairman and my colleagues on the Finance Committee and look forward to seeing this through the full Senate.\"\"The Alternative Minimum Tax was originally created to prevent the wealthiest Americans from skirting higher tax rates, but it was not indexed to inflation and now threatens to raise taxes for millions of middle class Americans.Before a patch was passed last year, joint taxpayers earning $74,660 or more could have been subject to the paying the higher AMT. In total, more than 1.6 million New Jerseyans faced the higher tax last year before the patch, and many of those were middle class taxpayers. This represented the highest percentage of taxpayers in any state that would have been subject to the AMT.                                                 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5d38ae0b-ebaa-4bb7-ba42-43f8838255e4,\"IMPORTANT WEEK IN SENATE FOR CHILDREN'S HEALTH BEGINS, SEN. MENENDEZ READY TO PROTECT NJ CHILDREN\n                    \n                            Republican lawmakers have specifically targeted strong NJ program in past\n                    \n                      January 27, 2009\n                     WASHINGTON - The U.S. Senate is beginning consideration of legislation to reauthorize and strengthen the State Children's Health Insurance Program, helping to ensure that children of lower-income families do not fall in the void between Medicaid and expensive private insurance. U.S. Senator Robert Menendez (D-NJ) has led efforts over the past two years to ensure that the federal government continues to support New Jersey's strong FamilyCare program. He is preparing to support the overall legislation and defend New Jersey children against the types of targeted amendments aimed at stripping away federal support for FamilyCare that Senator Menendez has helped defeat over the past two years.\"\"Millions of children across the country and thousands here in our state deserve better than to be left in the health coverage black hole between Medicaid and expensive private insurance, particularly in this economy,\"\" said Senator Menendez. \"\"I am braced for the same types of attacks on our state's program as we've seen before, and I will stand up again to keep New Jersey children from falling into that health care abyss. Some in the Senate still don't realize that, in a high cost-of-living state like ours, working families that earn a bit more than they would in another state still have trouble affording health coverage for their children. I am confident that we will pass a bill that will help ensure coverage for upward of 11 million kids nationwide and that President Obama will proudly sign into law.\"\"Over the last two years, Republican senators have sought to pass amendments preventing federal support of health coverage for families that make more than three times the federal poverty limit, which was a clear shot at New Jersey, the only state to do so until recently. Senator Menendez successfully worked to defeat those efforts. FamilyCare helps provide coverage for children from families that make up to 3.5 times the federal poverty limit, which in a high cost-of-living state like New Jersey, constitutes working and low-income families that don't qualify for Medicaid but cannot afford private health insurance.Summary of legislationThe Children's Health Insurance Program Reauthorization Act of 2009:KEEPING AMERICA'S CHILDREN HEALTHYThe Children's Health Insurance Program provides health coverage to children of workingparents who don't qualify for Medicaid, but who can't afford private health insurance. TheChildren's Health Insurance Program Reauthorization Act will renew the program and enactthe significant improvements detailed below.Investing in Health Coverage for Uninsured, Low-Income American Children• The bill provides $31.5 billion in additional funding over four and a half years.Keeping Covered Kids Covered, Reaching More Low-Income Kids• All 6.7 million children currently covered by CHIP will keep their coverage.• 3.9 million additional uninsured, low-income children will receive coverage.• Investment in outreach efforts will help states find and enroll additional children eligible for public health programs but not enrolled in them.State Flexibility Lets CHIP Reach Families in Need• States will retain the flexibility to set eligibility levels based on cost of living.• States offering new coverage above 300 percent of the Federal poverty level will receive lower Medicaid match for that coverage.Expanding Coverage Options for Low-Income Families• States may designate CHIP funds to help families afford private coverage offered by employers or other sources.Responsibly Funding Children's Health• Will include 61-cent increase in Federal tax on cigarettes, with proportional increases for other tobacco products.                                                      # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=da25577e-7833-481c-814c-ad8f25d835f2,\"MENENDEZ SOLAR POWER PROPOSALS INCLUDED IN INITIAL VERSION OF ECONOMIC RECOVERY BILL\n                    \n                            Programs would assist homeowners in solar panel installation, manufacturers of solar panels\n                    \n                      January 27, 2009\n                     WASHINGTON - Solar power initiatives proposed by U.S. Senator Robert Menendez (D-NJ) have been included in the initial version of the economic recovery package unveiled today by the Senate Finance Committee, of which Senator Menendez is a member.The American Recovery and Reinvestment Act will include Menendez provisions to:• Support new, innovative solar financing strategies being adopted by local governments around the nation by allowing home and business owners to participate in these local programs while still receiving a full solar federal energy tax credit. Would allow communities to finance solar panels without forcing their residents' to forgo federal tax incentives. Instead of incurring upfront costs of up to $40,000, residents would be able to get solar panels for less than $200 per month by taking full advantage of a solar energy tax credit.  New Jersey communities are considering adopting such a funding mechanism that was adopted by Berkeley.  See the following for details: http://www.berkeleyfirst.renewfund.com/• Provide a manufacturing tax credit for solar equipment so solar panels can be made affordably right here in America.\"\"The power of solar to ease family budgets, create jobs and reduce carbon emissions is undeniable, which is why initiatives like these have a rightful place in the economic recovery package. It is my hope that these programs will increase the number of households and businesses plugged in to solar power and boost manufacturing of solar panels right here in the United States. I want to thank Finance Committee Chairman Max Baucus for recognizing the importance of alternative energy and including this in the underlying bill.\"\"                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3e4040e0-d452-45f4-8dea-b9f8ea19c4f5,\"AFTER TOUR WITH INTERIOR SECRETARY, SEN. MENENDEZ EXPRESSES OPTIMISM ON REOPENING OF LADY LIBERTY'S CROWN, RESTORATION OF ELLIS ISLAND\n                    \n                            Sec. Salazar fulfilled commitment he gave to Sen. Menendez during confirmation hearing by visiting the sites\n                    \n                      January 27, 2009\n                     NEWARK - New U.S. Interior Secretary Ken Salazar today toured the Statue of Liberty and Ellis Island today with U.S. Senator Robert Menendez (D-NJ) in order to examine the possibility of reopening Lady Liberty's crown and restoring the closed portions of Ellis Island. On the tour, they climbed to the statue's crown and viewed the dilapidated portions of Ellis Island, which used to contain a health facility in which immigrants were screened.After the tour, Senator Menendez was appreciative of Secretary Salazar's interest and optimistic about the prospects for a reopening of the crown and a full restoration of Ellis Island.\"\"Secretary Salazar showed that he is a man of his word by visiting these national treasures a week after he committed to me during his confirmation hearing that he would do so,\"\" said Senator Menendez. \"\"It's one thing to listen to the arguments for why we should reopen these national treasures from afar, but it's another thing to be here in person, where you can fully appreciate what an unrestricted visit to these landmarks means to all of us as Americans. It really has an impact on you and your sense of country.\"\"We climbed to the top of Lady Liberty's crown, where I helped make the case that it should be reopened - it's a very moving and powerful setting in which to have that discussion. On Ellis Island, it was clear that the Secretary was moved by our visit to the dilapidated buildings which remain closed and the history that they hold within their walls.\"\"The Secretary must now make sure he does a thorough examination into the reopening and restoration process, and he has some further information to gather. I am optimistic that he will look for a management solution that allows Lady Liberty's crown to reopen while ensuring the safety of its visitors. I am also optimistic that he will look for the ability within his upcoming budgets to help complete the full restoration of Ellis Island.\"\"The Statue of Liberty was closed after 9/11, but the base and the pedestal were reopened to visitors in 2004. The crown has remained closed.The southern part of Ellis Island contains dilapidated hospital buildings where immigrants were required to undergo health screenings before being allowed to proceed. A public/private partnership has been formed to restore Ellis Island, but this part of the island remains un-restored and closed.Last week, during Secretary Salazar's confirmation hearing before the Senate Energy and Natural Resources Committee, Senator Menendez raised the issue of reopening these landmarks and received a commitment from the Secretary for the visit that took place today (view the segment from the hearing here: http://www.youtube.com/watch?v=0EK6wEmErJs).                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7f73d6aa-4e70-443b-aa39-08c5a92fee40,\"COMBATING POSTPARTUM DEPRESSION: SEN. MENENDEZ BEGINS PUSH IN 111TH CONGRESS\n                    \n                            MOTHERS Act reintroduced in Senate, was close to passage last year\n                    \n                      January 26, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today officially kicked off his efforts to secure an increased federal commitment to combating postpartum depression by reintroducing the Melanie Blocker Stokes MOTHERS Act in the Senate. The legislation, which is co-sponsored by Sens. Richard Durbin (D-IL) and Olympia Snowe (R-ME), has support from Senate leadership. It was nearing passage last year, despite being blocked from a vote on the Senate floor by Senator Tom Coburn (R-OK), who has objected to this and other bills targeting specific diseases on ideological grounds.\"\"We gained significant support for this effort to combat postpartum depression over the last two years, which makes me optimistic that we will be able to deliver this gift to new mothers,\"\" said Senator Menendez. \"\"Increasingly, my colleagues in the Senate are learning about the vicious, debilitating nature of postpartum depression and how it affects families, and they understand why this initiative is so important. We have to attack postpartum depression on all fronts - with education, support, and research - so that new moms can feel supported and safe rather than scared and alone.\"\"Postpartum depression is a serious and disabling condition affecting hundreds of thousands of new mothers each year. The new legislation would increase federal efforts to combat postpartum depression by:• Encouraging Health and Human Services (HHS) to coordinate and continue research to expand the understanding of the causes of, and find treatments for, postpartum conditions.  • Encouraging a National Public Awareness Campaign, to be administered by HHS, to increase awareness and knowledge of postpartum depression and psychosis.  • Requiring the Secretary of HHS to conduct a study on the benefits of screening for postpartum depression and postpartum psychosis.  • Creating a grant program to public or nonprofit private entities to deliver or enhance outpatient, inpatient and home-based health and support services, including case management and comprehensive treatment services for individuals with or at risk for postpartum conditions.  Activities may also include providing education about postpartum conditions to new mothers and their families, including symptoms, methods of coping with the illness, and treatment resources, in order to promote earlier diagnosis and treatment.It is estimated that postpartum depression (PPD) affects from 10 to 20 percent of new mothers. In the United States, there may be as many as 800,000 new cases of postpartum conditions each year.  The cause of PPD isn't known but changes in hormone levels, a difficult pregnancy or birth, and a family history of depression are considered possible factors.                                                    # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=19ef23e8-3ba3-4dac-85fa-4489326417ee,\"NEW JERSEY SENATORS APPLAUD AGREEMENT TO KEEP CHOP IN HORIZON BLUE CROSS BLUE SHIELD NETWORK\n                    \n                            Senators Menendez and Lautenberg had sent letter to Horizon Blue Cross Blue Shield of NJ in October after CHOP had been dropped from network\n                    \n                      January 21, 2009\n                     WASHINGTON - New Jersey's U.S. Senators, Robert Menendez and Frank Lautenberg, are applauding the agreement between Children's Hospital of Philadelphia and Horizon Blue Cross Blue Shield of New Jersey to keep CHOP in Horizon's network. The agreement came last week after Horizon canceled its contract with the hospital in September, affecting tens of thousands of New Jersey children who seek treatment - particularly specialized treatment - at CHOP and its affiliates. Senators Menendez and Lautenberg had written the CEO of Horizon in October (http://menendez.senate.gov/pdf/103108RMFRLLettertoHorizononCHOP.pdf), urging him to reengage in negotiations with CHOP.\"\"The bottom line of having the CHOP affiliates removed from the Horizon network was that thousands of New Jersey families would have a much harder time finding the specialized care they need for their children,\"\" said Senator Menendez. \"\"For the sake of New Jersey families, I am thrilled that the two sides agreed to revisit the negotiating table and were able to come to terms. This is an agreement that improves the quality of accessible health care in our state and helps family budgets during these hard economic times.\"\"\"\"Our children deserve accessible, affordable, quality health care.  Hundreds of kids across Southern New Jersey depend on the Children's Hospital of Philadelphia for specialized care.  Horizon's new agreement with the hospital will ensure the health and well-being of our children for years to come,\"\" said Sen. Lautenberg.    Many New Jersey families, especially in Southern New Jersey, rely on CHOP for specialized pediatric care. CHOP serves 45,000 patients from NJ, including 30,325 patients covered by Horizon.  In fact, approximately one quarter of children admitted at CHOP's Main Campus in Philadelphia come from New Jersey.CHOP's healthcare network includes Specialty Care Centers, Ambulatory Surgery Centers, Kids First Pediatric and Adolescent Practices, Home Care and pediatric services in community hospitals throughout New Jersey.  Specifically:• Kids First Practices located in Cape May County, Mt. Laurel, Salem Road in Burlington Township, Smithville and Somers Point; • Specialty Care Centers in Mays Landing-Atlantic County, Princeton, Voorhees, and the Pediatric Cardiology Division at Saint Peter's University Hospital; • The CHOP Connection Program at Shore Memorial Hospital in Somers Point; • The Children's Intensive Emotional and Behavioral Program located at the Specialty Care Center in Mays Landing-Atlantic County.                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=57d3a60f-20df-4f27-abe7-3313693055b0,\"NEW LEGISLATION FROM SEN. MENENDEZ PROVIDES INCENTIVES FOR PRODUCTION OF SOLAR ENERGY\n                    \n                            Federal and local incentives could allow homeowners to purchase solar panels with no upfront cost\n                    \n                      January 21, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today introduced legislation that would help encourage the use of solar energy by homeowners and small businesses. The initiative would support new, innovative solar financing strategies being adopted by local governments around the nation by allowing home and business owners to participate in these local programs while still receiving a full solar federal energy tax credit. In addition, the bill would help spur the manufacturing of solar panels here in the United States and would boost the use of solar power in federal buildings.\"\"Solar power can save people money, create jobs, and help lower greenhouse gas emissions, which is why it needs to be a key part of our green economic recovery,\"\" said Senator Menendez. \"\"This legislation would allow homeowners to take full advantage of programs to help harness solar power and encourage the manufacturing of solar power in our country. These are the sorts of programs with short and long term economy benefits that should be considered for an economic recovery package.\"\"\"\"We applaud Sen. Menendez's ongoing efforts to help the solar industry to continue to flourish.  This bill will help the solar industry produce 440,000 jobs by 2016 and truly repower our economy,\"\" said Rhone Resch, President and CEO of the Solar Energy Industry Association.Senator Menendez's bill is a companion to legislation introduced in the House of Representatives by Rep. Mike Thompson (D-CA). It would do the following:• Allow communities to finance solar panels without forcing their residents' to forgo federal tax incentives. Instead of incurring upfront costs of up to $40,000, residents would be able to get solar panels for less than $200 per month by taking full advantage of a solar energy tax credit.  New Jersey communities are considering adopting such a funding mechanism that was adopted by Berkeley.  See the following for details: http://www.berkeleyfirst.renewfund.com/• Provide a manufacturing tax credit for solar equipment so solar panels can be made affordably right here in America.• Allow federal buildings to enter into long term solar power purchase agreements. This will mean federal buildings can contract with firms to get power at a fixed rate long period of time. This could result in an immediate savings for taxpayers and the expansion of solar installations.                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dc343cae-a363-444c-816a-15f31fb3d563,\"SENATE PASSES BILL DESGINATING GREAT FALLS IN PATERSON A NATIONAL HISTORIC PARK\n                    \n                            Bill Sponsored by Lautenberg, Menendez, Pascrell Would MakeN.J. Natural Treasure a Historic Landmark\n                    \n                      January 15, 2009\n                     WASHINGTON, N.J. - The Senate today approved legislation authored by Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) and Rep. Bill Pascrell, Jr. (D-NJ-08) to designate the Great Falls in Paterson, New Jersey a National Historic Park.\"\"The Great Falls in Paterson is a landmark that deserves recognition as a national historic park.  Giving the Great Falls this designation would go a long way toward recognizing the beauty and history of the site and helping preserve it for future generations,\"\" Sen. Lautenberg said.Sen. Menendez said, \"\"The Great Falls Park is a Garden State jewel -- it has one of the most impressive and picturesque falls in the country and also represents Alexander Hamilton's unique vision of America come true.  No other site in the nation more richly represents the remarkable transformation of our rural agrarian society based in slavery into a modern global economy based in freedom.  We want to make sure these natural and historic resources are preserved for generations to come.\"\"\"\"As a lifelong Paterson resident, I am proud that the Senate approved a national park at the Great Falls among its first acts in this new legislative session.  The creation of a national park in Paterson would signal an important return of resources to the urban areas that have been shortchanged for the past eight years.  I applaud my Senate colleagues and am eager to move this legislation through the House of Representatives as early as possible,\"\" stated Pascrell. The Senate approved the bill overwhelmingly, by a vote of 73 to 21.  The companion bill, sponsored by Rep. Pascrell, is awaiting action in the House of Representatives.The measure would designate the Great Falls in Paterson as a National Historic Park, which would enable the park to receive federal funding.  The Great Falls is the second-highest waterfall in the eastern United States.                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=276743ae-568f-4899-be06-e505d34c5917,\"COASTLINE OIL DRILLING: SEN. MENENDEZ GETS COMMITMENT FROM INTERIOR SECRETARY NOMINEE TO INCLUDE COASTAL STATES IN DELIBERATIONS\n                    \n                            Menendez raises issue at Salazar's confirmation hearing\n                    \n                      January 15, 2009\n                     WASHINGTON - Today at the Senate confirmation hearing for Interior Secretary Nominee Ken Salazar, U.S. Senator Robert Menendez (D-NJ) secured a commitment to give coastal states, like New Jersey, a seat at the table as plans for potential drilling in the Outer Continental Shelf along the U.S. coasts are considered.In response to Senator Menendez's questioning, Salazar said: \"\"We need to make sure... that those communities and those states that are going to be most affected certainly have a voice and are at the table.\"\"The video of the question and answer on coastline drilling can be found here, beginning at the 5:10 mark: http://www.youtube.com/watch?v=0EK6wEmErJs.                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cd84411b-556d-427b-a1df-12c4fbf8235d,\"SEN. MENENDEZ HELPS INTRODUCE EPA NOMINEE LISA JACKSON AT SENATE CONFIRMATION HEARING\n                    \n                            \"\"I believe she will be the best Environmental Protection Administrator\"\"\n                    \n                      January 14, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today had the opportunity to help introduce New Jersey's Lisa Jackson, the Environmental Protection Agency Administrator nominee, at her confirmation hearing before the Senate Environment and Public Works Committee.\"\"She will not only be the first African-American Environmental Protection Agency Administrator, I believe she will be the best Environmental Protection Agency Administrator we have seen in this history of that department,\"\" said Senator Menendez before the committee.Senator Menendez's introduction of Lisa Jackson can be viewed here: http://www.youtube.com/watch?v=cZ6y_Z98RwY.                                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f63ac7ea-6986-4e9a-9318-0b8f8e3a3ea8,\"FIRST MENENDEZ BILL INTRODUCED IN 111TH CONGRESS: HELP FOR HOMEOWNERS ON THE VERGE OF FORECLOSURE\n                    \n                            Member of Banking Committee reintroduces legislation to provide foreclosure \"\"timeout\"\" for responsible homeowners stuck in bad loans\n                    \n                      January 14, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Senate Banking Committee, today introduced his first piece of legislation in 111th Congress: the Home Retention and Economic Stabilization Act, which would defer foreclosure activity for up to nine months for certain responsible homeowners who are struggling with bad home loans. The bill, which was introduced in the House of Representatives by Rep. Doris Matsui (D-CA), would apply to homeowners making less than a certain income and would require them to continue to make mortgage payments and remain responsible during their deferment period.\"\"Among all of our efforts to stabilize the economy, we can't forget that the root of this crisis is the tsunami of foreclosures that has hit American homeowners,\"\" said Senator Menendez. \"\"Homeowners who see their homes slipping away deserve to finally have a real helping hand extended to them. This is not only about keeping families in their homes, this is about stabilizing the economy. The ripple effects of a foreclosure spread to neighborhood property values, to local government budgets, to Wall Street and eventually to the national and global economies. We need to stop this where it begins.\"\"Center for Responsible Lending president Michael Calhoun said: \"\"A timeout on foreclosures is a necessary, common-sense stop-gap measure that will give lawmakers, regulators and homeowners some breathing space while everyone works to craft a fair, sensible and lasting solution to the foreclosure crisis at the heart of the economic meltdown.\"\"Alys Cohen of the National Consumer Law Center said: \"\"A temporary stop on foreclosures is essential.  As defaults and foreclosures escalate, policymakers need time to pass further foreclosure prevention measures.  Foreclosure deferment will ensure that homeowners don't unnecessarily lose their homes when help is on the way.\"\"Hilary O. Shelton, the NAACP Vice President for Advocacy and the Director of the NAACP Washington Bureau, said: \"\"Home foreclosures are distressing American individuals, families and neighborhoods. The fact that African Americans and other racial and ethnic minorities were targeted by the nefarious peddlers of sub-prime loans means that our communities are being especially hard hit by the unprecedented wave of foreclosures that is threatening the very well-being of our nation.  That is why the NAACP called for a moratorium on home foreclosures as far back as April of 2007, and why we whole-heartedly support the reintroduction of this vital legislation by Congresswoman Matsui and Senator Menendez in the 111th Congress.\"\"Summary of the Home Retention and Economic Stabilization Act:To qualify for the nine month deferment period, the homeowner must: 1) Have an owner-occupied mortgage, including a Sub-prime or Payment Option Arm Mortgage. Investors are excluded.2) Earn 200% or below Area-Medium Income. 3) Must have hit an interest rate reset or 60 days or more in default on their mortgage.If the homeowner qualifies, they must:1) Continue making their monthly payment amount that was due during the introductory period of the mortgage.2) Must stay in contact with their lender or servicer during deferment period.3) Continue to maintain their property.If homeowner fails to do any of the above three requirements, they are out of the deferment period.If homeowner and lender or servicer reach an agreement on new, affordable mortgage terms, that is deemed acceptable by the Chair of the FDIC, then the deferment period ends for homeowner.Foreclosure statistics:• It is projected that that U.S. home foreclosures will reach 8.1 million in the four years, up from the previous forecast of 6.5 million (Credit Suisse)• To date there are 53,091 New Jersey foreclosure properties. (RealtyTrac)Groups in support of Home Retention and Economic Stabilization Act:The Center for Responsible Lending, AARP, National NeighborWorks Association, Consumer Federation of America, American Federation of Government Employees, AFL-CIO, AFSCME, American Federation of Teachers (AFT), IBEW, UAW, Communications Workers of America (CWA), National Education Association (NEA), SEIU, United Steelworkers, Brotherhood of Railroad Signalmen, Leadership Conference on Civil Rights, National Council of La Raza, NAACP, Black Leadership Forum, National Fair Housing Alliance,  Jewish Labor Committee, Jewish Council for Public Affairs, Asian American Justice Center, Community Action Partnership, and National Rural Housing Coalition.                                                                  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=734d4979-1a93-4897-a442-420e997d4e92,\"MENENDEZ, LAUTENBERG, CORZINE ANNOUNCE FEDERAL ENVIRONMENTAL APPROVALS FOR HUDSON RIVER RAIL TUNNEL\n                    \n                            Major Milestone Reached in Country's Largest Transit Infrastructure Project;NJ Sens. Have Vowed to Secure More Funding for Completion of Project\n                    \n                      January 14, 2009\n                     Washington, D.C. - Sens. Robert Menendez (D-NJ), Frank R. Lautenberg (D-NJ) and Gov. Jon Corzine (D-NJ) today announced that the Federal Transit Administration (FTA) has completed its environmental review process for the Hudson River Mass Transit Tunnel project, which is expected to create 44,000 permanent jobs throughout the New Jersey—New York region.\"\"I am working for federal funding for the Mass Transit Tunnel project because it provides a path to short- and long-term economic benefits and helps us advance toward our national objective of reducing our reliance on fossil fuels. The tunnel is central to our region's strategy to create jobs, reduce traffic, and lower emissions,\"\" said Senator Menendez. \"\"We fought hard to secure this approval because the new tunnel will be critical to our region's future.  This new tunnel will help ensure that New Jersey commuters have reliable, convenient and energy-efficient transit options for years to come,\"\" Sen. Lautenberg said.  \"\"We will keep fighting to reduce congestion and modernize public transit.  Our work to secure this approval is a significant step in the right direction.\"\"\"\"We welcome today's action by the FTA, as the Mass Transit Tunnel project is a major component of New Jersey's economic stimulus strategy,\"\" said Governor Corzine. \"\"By putting boots on the pavement and shovels in the dirt, this project will employ thousands of workers and help jumpstart the economy in the present, and will pay dividends toward regional economic growth for decades to come.\"\"\"\"This federal approval marks a giant step forward for this transit project of regional and national significance,\"\" said Anthony Coscia, chairman of the Port Authority of New York and New Jersey.  \"\"With this approval in place we now look forward to receiving the federal funds necessary for putting shovels in the ground in 2009 and helping our regional economy in this critical time.\"\"\"\"This Record of Decision culminates a comprehensive process of planning, public input and preliminary engineering that puts us in position to advance a project that is crucial for us to meet our long-term commitment of providing convenient public transportation to the residents of New Jersey,\"\" NJ TRANSIT Chairman and Transportation Commissioner Stephen Dilts said.\"\"Our customers are eager for us to get started because they understand the impact of this project on their lives and the lives of future generations,\"\" NJ TRANSIT Executive Director Richard Sarles said.  \"\"More than doubling train capacity to and from New York in peak periods translates into time-savings, increased service reliability, more travel options and convenience. And not just for those traveling to New York.  Those taking the trains within New Jersey will share in the benefits of more trains, more express trains and enhanced reliability.\"\"The release of a \"\"Record of Decision\"\" by the FTA officially completes the project's environmental review process.  Sens. Lautenberg and Menendez worked to ensure that FTA agency officials considered the project fairly and in a timely fashion.The local financing share of $5.7 billion for the tunnel project is already committed, including $3 billion from the Port Authority of New York and New Jersey.   New Jersey is now looking for a federal funding commitment to complete the project from the Obama Administration, which Sens. Lautenberg and Menendez are working to secure. With train traffic into New York at maximum capacity, the tunnel project would double commuter rail capacity between New Jersey and New York and improve rail service across the Garden State and reduce congestion on roadways.  The existing 100-year-old commuter rail tunnel under the Hudson River only has two tracks that are pushed to their functional limits each rush hour with NJ TRANSIT and Amtrak trains.  The Mass Transit Tunnel will more than double peak capacity from 23 trains per hour to 48. In addition to two new side-by-side single-track tunnels, the project will create new station capacity in Manhattan designed specifically for commuter rail service with wider platforms and more escalators. The new tracks will provide direct access to NYC subway lines, PATH trains and existing Penn Station services.The project will also create one-seat (direct) commutes to New York for NJ TRANSIT customers on seven commuter rail lines - Main/Bergen County, Port Jervis, Pascack Valley, Montclair-Boonton west of Montclair State University, Morris & Essex west of Dover, Raritan Valley, and North Jersey Coast south of Long Branch, as well as future rail expansion lines.                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=48543ec0-c3d0-4616-8b70-709bfc07ce37,\"FOLLOWING CONFIRMATION HEARING, SEN. MENENDEZ SIGNALS SUPPORT FOR HOUSING AND URBAN DEVELOPMENT NOMINEE DONOVAN\n                    \n                            Member of Banking Committee says housing crisis must be addressed to combat overall economic crisis\n                    \n                      January 13, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) had the opportunity to question the nominee for Housing and Urban Development Secretary, Shaun Donovan, today during his confirmation hearing before the Senate Banking Committee. Following the hearing, Senator Menendez expressed his support for Donovan:\"\"I fully agree with the sentiment that the Department of Housing and Urban Development has been at the kids table compared to other federal agencies, and it's time for that to change. Now more than ever, with American families losing their homes at an alarming rate, the department must fulfill its promise to help Americans have a place to call home. Shaun Donovan is the right person to lead the department in this crisis. He has shown that he fully understands the housing problems that sparked our economic crisis, and his work in New York shows that he has the right vision for how to expand housing opportunities in a responsible manner. I look forward to working closely with him once he is confirmed.\"\"                                                    # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7d779f6d-7516-48b6-b318-7253c6f41d40,\"SEN. MENENDEZ ISSUES STATEMENT IN SUPPORT OF SECRETARY OF STATE NOMINEE CLINTON AFTER PARTICIPATION IN CONFIRMATION HEARING\n                    \n                            Member of Foreign Relations Committee hearing calls Clinton \"\"exactly the person we need to lead the diplomatic effort\"\"\n                    \n                      January 13, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee and Chairman of the subcommittee that oversees foreign assistance, today had the opportunity to question Secretary of State nominee Hillary Clinton during her confirmation hearing before the committee. Following his round of questioning, he released the following statement in support of her nomination:\"\"Since 9/11, the United States has lost stature in the world. As a result, our ability to gather our international partners to fight terrorism, resist dictators and combat global warming has been dramatically weakened. Hillary Clinton is a woman of remarkable intellect, experience and judgment on matters involving our nation's leadership role in the global community. She is exactly the person we need to lead the diplomatic effort it will take to return the United States to its place as a beacon of freedom and democracy. If we can restore our credibility and authority internationally, we can create greater security at home, and Hillary Clinton can help us achieve that.\"\"As the chairman of the subcommittee that oversees our foreign assistance programs and international climate change agreements, I look forward to working closely with Hillary Clinton to ensure that our assistance programs are fully effective and that the United States is fully committed to a post-2012 climate change protocol. I have high hopes for the State Department on these issues.\"\"                                                     # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0450fe41-887a-49ec-b6d8-8d2134d28f9d,\"SENATOR MENENDEZ APPLAUDS NY AND NJ SETTLEMENTS WITH ARBITRON; URGES FCC AGAIN TO ENSURE FAIR RATING METHODOLOGY IS USED\n                    \n                            Agreements require Arbitron to fix flawed data gathering methodology in Portable People Meter ratings system that has negative impact on minority owned stations\n                    \n                      January 13, 2009\n                     Washington DC - New York Attorney General Mario Cuomo and New Jersey Attorney General Anne Milgram announced this week settlement agreements to resolve lawsuits filed against Arbitron in October 2008 for its use of the Portable People Meter (PPM) ratings system, despite being denied proper accreditation by local regulatory agencies and evidence of its adverse effect on minority broadcasters.    The settlements require Arbitron to fix its flawed data gathering methodology and allows for ongoing oversight by the Attorney Generals to make sure the company fulfills the terms of the agreement.While U.S. Senator Robert Menendez (D-NJ) was pleased with this announcement, he once again urged the Federal Communications Comission to take an active role in ensuring an accurate and fair methodology is used to gather ratings data. In early December 2008, Senator Robert Menendez and Senator Ken Salazar, Chairmen of the Senate Hispanic Task Force and strong advocates on media diversity, sent a letter to FCC Chairman Kevin Martin to encourage the FCC to launch a formal investigation into Arbitron's commercialization of PPM.PDF of Letter to FCC Chairman Kevin Martin:http://menendez.senate.gov/pdf/12032008ArbitronLetter.pdf \"\"This is confirmation that our concerns regarding PPM and its negative impact on minority broadcasters are well founded.\"\" said Senator Menendez. \"\"Minority-focused stations not only provide news and entertainment, they can deliver critical emergency information that communities depend on. PPM is a flawed data gathering methodology that should not have been allowed to rollout in the first place. We applaud Attorney General Cuomo and Attorney General Milgram's leadership in taking up this issue and their hard work to make sure Arbitron is not allowed to continue using this product in the New York and New Jersey area. However, I continue to insist that the FCC launch a formal inquiry into Arbitron's implementation of this system and make sure it utilizes a suitable data measurement system.\"\"Both of these cases set a very important precedent that other jurisdictions throughout the country can follow.  However, Senator Menendez underscored the importance of federal action to have an effect nationwide.\"\"While the New York and New Jersey's attorney general decisions are important and unprecedented, we can't wait and can't expect this problem to be solved on a state by state basis. It is unacceptable that no action by the Federal Communications Commission has been taken to address this issue.\"\" said Senator Menendez.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2de229d1-dd91-4953-91ea-86992c2ab9a1,\"SEN. MENENDEZ MEETS WITH U.N. NOMINEE RICE\n                    \n                            Member of Foreign Relations Committee issues statement, states hope for greater engagement with partners in world community\n                    \n                      January 9, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee and Chairman of the subcommittee in charge of foreign assistance, met today with Susan Rice, the nominee for U.S. Ambassador to the United Nations, in his office. He released the following statement after the meeting:\"\"The United Nations is an imperfect institution, but it can be an important instrument for our engagement around the world. Now more than ever, we need to engage the global community, not retreat from it.  It is important to work cooperatively with our partners around the world to fight terrorism, combat global warming and address the worldwide economic crisis.\"\"Susan Rice is impressive and insightful, and I was glad to be able to meet with her today to discuss her vision for the U.S. role in the United Nations. We discussed U.S. foreign assistance - for which I have a great deal of interest in my capacity as the subcommittee chair - as well as United Nations reform, human rights and Darfur, among other issues. I look forward to getting further into these issues during her confirmation hearing before the committee.\"\"                                                      # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f05f9113-353d-41e4-8368-cde7bc406e89,\"SEN. MENENDEZ SIGNALS STRONG SUPPORT FOR ISRAEL'S SELF-DEFENSE\n                    \n                            Senate Foreign Relations Committee member says any potential cease fire should be incumbent on end to Hamas missile attacks\n                    \n                      January 8, 2009\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, released the following statement in support of Israel's right to self defense:\"\"For months - even before it officially violated the so-called cease-fire - the terrorist organization Hamas has been relentlessly firing missiles into Israel from Gaza, spreading terror, inflicting damage, and killing innocent civilians. No country would be expected to sit on its hands and simply allow its citizens to endure these kinds of vicious attacks without retaliating against the responsible party. I strongly support Israel's right to self-defense and its decision to go after Hamas in response to the unyielding and increasingly far-reaching missile attacks. We all want peace in Gaza and hope that it will come very soon, but peace cannot be achieved so long as Hamas continues missile attacks. If a just and lasting cease-fire is to occur, it is incumbent upon Hamas to immediately and permanently halt all attacks against the Israeli people. As for the humanitarian situation in Gaza, I believe the United States and other countries can and should play a role in helping civilians in Gaza meet their basic needs through international assistance - without interference from Hamas - and I believe Israel has taken the right action with temporarily halts in military operations and creation of a humanitarian corridor to allow civilian aid into Gaza.\"\"                                                                    # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=559f2c11-10ea-4826-a764-1d6f2ccc77a3,\"SEN. MENENDEZ ISSUES STATEMENT ON U.S. EMERGENCY AID TO DARFUR\n                    \n                            Chairman of Senate foreign assistance subcommittee says despite late timing, help for peacekeeping effort is welcome action\n                    \n                      January 6, 2009\n                     WASHINGTON - President Bush has announced that the U.S. will immediately airlift equipment and supplies into Darfur to assist the international peacekeeping effort in that genocide-ravaged region. U.S. Senator Robert Menendez (D-NJ), who is Chairman of the Foreign Relations subcommittee that oversees foreign assistance and has worked to facilitate this type of assistance, released the following statement welcoming the aid:\"\"It is welcome news that President Bush has finally gotten the Department of State, Department of Defense, and the United Nations to coordinate on a basic level of support to help facilitate the deployment of long-delayed peacekeepers to Darfur. While it certainly would have been more helpful had he made this decision when I and others first called for it, this will hopefully improve the situation on the ground, strengthen the international peacekeeping force and help save lives.\"\"I know President-elect Obama and Vice President-elect Joe Biden are acutely aware that the United States must take more of a world leadership role in helping to end the genocide in Darfur. To that end, I hope they will continue along the lines of this action to help ensure that the peacekeeping forces are successful.\"\"                                                                # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6deb9d72-9ecf-4395-963f-143382e94fc1,\"SEN.MENENDEZ MOURNS THE PASSING OF TASSOS PAPADOPOULOS\n                    \n                      December 15, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today released the following statement on the passing of former Cypriot president Tassos Papadopoulos:\"\"President Papadopoulos was a historic figure for the Greek Cypriots and served them with passion and dedication throughout his life.\"\"The loss of a beloved leader is a tragic moment for any community.  President Papadopoulos' commitment and bravery will be remembered for generations both in Cyprus and around the world.\"\"My thoughts and prayers are with all Cypriots as we mourn the passing of a distinguished leader who fought tirelessly for a just solution to a free Cyprus.\"\"                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=976fd4af-bc3b-4fda-8cd8-2d609323fa7a,\"AIRLINE HIDDEN FEES AND SURCHARGES: SEN. MENENDEZ OFFICIALLY INTRODUCES LEGISLATION TO ENSURE TRANSPARENCY AND FAIRNESS\n                    \n                            Fuel surcharges would have to correlate to actual fuel prices and airlines would be required to fully display taxes and fees\n                    \n                      December 15, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today officially introduced legislation that will help ensure transparency and fairness in airline fees and surcharges. The bill would require that fuel surcharges actually correlate to fuel costs, and that airlines provide consumers with a full, detailed breakdown of taxes and fees when they search for a ticket.With jet fuel prices plummeting over the past few months, Senator Menendez has taken a series of actions to urge a rollback in airline fees and institute greater transparency. The spot price for jet fuel in New York Harbor, a major price indicator, was $4.34 per gallon on July 2. As of Tuesday, it was $1.47 per gallon.\"\"Money is tight and American families deserve to know exactly what they're paying for and that it is justified,\"\" said Senator Menendez. \"\"Unfortunately, with hidden fees and questionable surcharges, airfares are too often cloudy. Airlines should to be totally upfront with passengers, and a surcharge should correlate to an actual cost - it's basic fairness and common sense. Americans are dealing with hard economic times, and they shouldn't feel like they are getting hit with hidden fee after hidden fee.\"\"The legislation includes provisions to ensure that airlines:•Provide the amount and description of each tax and surcharge up front when they first display the airfare,•Provide up front information on additional fees - including checked baggage and seat assignment fees, and•Will not impose fuel surcharges that are not correlated to the actual price for fuel that the airline paid.In October, Senator Menendez wrote the CEOs of the major US airlines to call for a rollback of fuel surcharges and more transparency in airfares ( http://menendez.senate.gov/newsroom/record.cfm?id=304436). He also wrote a letter to Department of Transportation Secretary Mary Peters, asking that the department investigate why surcharges continue to be based on high fuel prices that have since come down significantly, and why the airlines do not post total charges on their websites in a way the consumer can understand what the total price of their airfare will be (http://menendez.senate.gov/newsroom/record.cfm?id=304765&).                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8eaf9dc6-088d-40b5-b540-86ec1bfcb8c4,\"SEN. MENENDEZ INTRODUCES LEGISLATION TO PROVIDE A TIMEOUT ON FORECLOSURES FOR UP TO NINE MONTHS\n                    \n                            Responsible homeowners stuck in bad loans would be eligible\n                    \n                      December 15, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Senate Banking Committee, today introduced legislation in the Senate that would defer foreclosure activity for up to nine months for certain responsible homeowners who are struggling with bad home loans. The Home Retention and Economic Stabilization Act would apply to homeowners making less than a certain income who are stuck in predatory subprime or Payment Option ARMs and would require them to continue to make mortgage payments and remain responsible during their deferment period.\"\"The tsunami of foreclosures is devastating our country, from the family that loses its home, to the neighborhood that sees property values decline, to our national economy,\"\" said Senator Menendez. \"\"This legislation represents the type of helping hand for homeowners that the Bush administration just won't give. With eight million foreclosures expected over the next few years, we have to start getting to the root of the economic crisis by focusing on homeowner relief and support.\"\"Menendez's bill is the companion to legislation introduced by Rep. Doris Matsui (D-CA) in the House of Representatives.\"\"A short-term delay in processing foreclosures will allow time for lenders and servicers to increase their capacities to meet current need, for credit markets to stabilize, and for legislative and government solutions to reach full capacity,\"\" said Rep. Matsui. \"\"I look forward to working with Senator Menendez, and our colleagues, to provide struggling homeowners with immediate and responsible relief. Senator Menendez is an active Member on the Senate Banking Committee and will be a great advocate for this bill in the Senate.\"\"Center for Responsible Lending president Michael Calhoun said: \"\"A timeout on foreclosures is a necessary, common-sense stop-gap measure that will give lawmakers, regulators and homeowners some breathing space while everyone works to craft a fair, sensible and lasting solution to the foreclosure crisis at the heart of the economic meltdown.\"\"Summary of the Home Retention and Economic Stabilization Act:To qualify for the nine month deferment period, the homeowner must:• Have an owner-occupied (Subprime or Payment Option Arm) mortgage. Investors are excluded.• Earn 200% or below Area-Medium Income. • Must have hit a interest rate reset; or 60 or more in default on a subprime mortgage or a payment option mortgageIf the homeowner qualifies, they must:• Continue making market rate monthly payment• Must stay in contact with their lenders or servicers during deferment period.• Continue to maintain their propertyIf homeowner fails to do any of the above three requirements, they are out of the deferment periodIf homeowner and lender or servicer reach an agreement on new, affordable mortgage terms then the deferment period ends for homeowner.Foreclosure statistics:National• Foreclosure filings, default notices, auction sales notices, and back repossessions rose to 279,561 (increase of 5%) from September to October. (RealtyTrac)• It is projected that that U.S. home foreclosures will reach 8.1 million in the four years, up from the previous forecast of 6.5 million (Credit Suisse)New Jersey• To date there are 56,285 New Jersey foreclosure properties. (RealtyTrac)• There have been 4,030 new foreclosures as of November 2008. (RealtyTrac)• In Essex County there are 1,158 foreclosure properties or 1 in every 266 housing unit.• 9.2% of homeowners in New Jersey — were either in foreclosure or delinquent on their payments.  (Mortgage Bankers Association)Groups in support of Home Retention and Economic Stabilization Act:The Center for Responsible Lending, AARP, National NeighborWorks Association, Consumer Federation of America, American Federation of Government Employees, AFL-CIO, AFSCME, American Federation of Teachers (AFT), IBEW, UAW, Communications Workers of America (CWA), National Education Association (NEA), SEIU, United Steelworkers, Brotherhood of Railroad Signalmen, Leadership Conference on Civil Rights, National Council of La Raza, NAACP, Black Leadership Forum, National Fair Housing Alliance,  Jewish Labor Committee, Jewish Council for Public Affairs, Asian American Justice Center, Community Action Partnership, and National Rural Housing Coalition.                                                           # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e5b26698-937d-4a1b-ab39-29b6f2c4bbd0,\"SEN. MENENDEZ URGES FEDERAL COMMUNICATIONS COMISSION TO INVESTIGATE IMPLEMENTATION OF PORTABLE PEOPLE METER RATING SYSTEMS\n                    \n                            Minority radio broadcasters annual revenues could decrease as much as $500 million if the rating system is allowed to move forward\n                    \n                      December 9, 2008\n                     WASHINGTON - Due to concerns about the negative impact of the Portable People Meter (PPM) ratings system on minority radio broadcasters, US Senators Robert Menendez (D-NJ) and Ken Salazar (D-CO), Co-Chairs of the Senate Democratic Hispanic Task Force, are encouraging the Federal Communications Commission (FCC) Chairman Kevin J. Martin to launch a formal inquiry into Arbitron's implementation of the system.\"\"Noting that Arbitron is the primary provider of this ratings service that functions as currency for the entire broadcast industry, we are troubled by the ongoing commercialization of PPM despite being denied accreditation by the Media Ratings Council in both Philadelphia and New York,\"\" wrote Senators Menendez and Salazar. \"\"Minority themed radio stations are providers of important news and critical information about issues that are vital to the people in our communities.  Stations that broadcast into minority communities provide a window into their languages, views, and values that might otherwise be ignored. When we talk about these outlets, we're not just talking about broadcasters, we're talking about advocates—advocates our communities depend on. Unfortunately, the PPM rollout is putting the viability of many minority radio broadcasters at risk.\"\"The Minority Media and Telecommunications Council predicts minority radio stations annual revenues could decrease by as much as $500 million if Arbitron is allowed to continue moving forward with the commercialization of PPM.  This substantial decrease in advertising revenues jeopardizes the viability of radio broadcasters of critical importance to the communities they serve.  PDF of Letter: http://menendez.senate.gov/pdf/12032008ArbitronLetter.pdf Text of Letter:December 3, 2008The Honorable Kevin J. MartinChairmanFederal Communications Commission445 12th Street SWWashington, DC 20554Dear Chairman Martin:We are writing today to express our support for Commissioner Adelstein's call to open a formal investigation surrounding Arbitron's implementation of the Portable People Meter (PPM) ratings system. As Co-Chairs of the Senate Democratic Hispanic Task Force, we have serious concerns about the impact that commercialization of PPM will have on minority broadcasters. Noting that Arbitron is the primary provider of this ratings service that functions as currency for the entire broadcast industry, we are troubled by the ongoing commercialization of PPM despite being denied accreditation by the Media Ratings Council in both Philadelphia and New York. Minority themed radio stations are providers of important news and critical information about issues that are vital to the people in our communities.  Stations that broadcast into minority communities provide a window into their languages, views, and values that might otherwise be ignored. When we talk about these outlets, we're not just talking about broadcasters, we're talking about advocates—advocates our communities depend on. Unfortunately, the PPM rollout is putting the viability of many minority radio broadcasters at risk.  Radio stations serving minority groups saw precipitous drops in their ratings using PPM numbers according to Arbitron's Spring diary.  In New York, for instance, La Kalle 105.9 fell from seventh using diary ratings to twenty first with PPM.  In Chicago, Que Buena WOJO fell from fourth to eleventh.   The Minority Media and Telecommunications Council (MMTC) predicts minority radio stations' annual revenues could decrease by as much as $500 million, constituting the greatest loss of value in the history of minorities in broadcasting. Given the radio industry's lack of a competitive alternative for quantitative measurement data and the fact that both Congress and the Commission itself presently rely on Arbitron's audience measurement data in the application of Commission rules, we support the Commission's action in opening a proceeding on this matter.  While we support continued dialogue between the Commission and all stakeholders in the radio industry, assurance regarding the validity and reliability of Arbitron's data should be of paramount concern to the Commission and to the public.  Therefore, we encourage the agency to launch a formal inquiry into the problems surrounding the implementation of PPM.Sincerely,ROBERT MENENDEZCo-Chair Hispanic Task ForceKEN SALAZARCo-Chair Hispanic Task Force                                                                    # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fc2eb873-8c94-4ccd-8339-fba7990183be,\"NY & NJ SENATORS HAIL COURT RULING AGAINST FAA'S AIRPORT AUCTION PLAN\n                    \n                            Scheme Could Lead to Higher Fares and Longer Delays Without Easing Congestion\n                    \n                      December 9, 2008\n                     WASHINGTON, DC - The U.S. Senators from New York and New Jersey, Hillary Rodham Clinton, Charles E. Schumer, Frank Lautenberg, and Robert Menendez today welcomed a court order delaying the Bush Administration's scheme to auction off arrival and departure slots at the New York metropolitan region's airports. The senators underscored their opposition to the plan, which could lead to higher fares and longer delays while doing nothing to ease congestion, and urged the Bush Administration to abandon it altogether.\"\"The millions of travelers who rely on New York's airports deserve real solutions to reduce congestion and delays. This ruling underscores that the Bush Administration should abandon this scheme once and for all,\"\" Senator Clinton said.\"\"This decision is exactly what the doctor ordered. Slot auctions will cause chaos in the skies and on the ground, and must not be bum-rushed through by a lame duck Administration. This decision should buy enough time for the next administration and Congress to put slot auctions on the shelf for good; and then craft a new, workable plan to reduce flight delays and give New York's airspace and airports the upgrade they need and deserve,\"\" Senator Schumer said.\"\"This ruling is a victory for travelers in our region.   The Bush Administration's plan is wrong for fliers and wrong for our residents.  We called on President Bush to stop this illegal effort at once—and now the courts agree,\"\" Senator Lautenberg said.  \"\"It's time to work with the Port Authority and airlines on a real plan that will actually reduce flight delays without increasing airfares.\"\"  \"\"This illegal plan could price-out middle class families at the best and most convenient times of day, and it essentially would levy an additional tax on people in our region simply for living here. It's a plan that should never take off, particularly as more and more families struggle in these hard economic times. This ruling is certainly welcome, and we will work to have this plan permanently grounded,\"\" Senator Menendez said.The Court of Appeals for the District of Columbia delayed the auction plan so it can hear arguments in a case brought by the Port Authority of New York and New Jersey on the auctions' legality. In an October legal opinion, the Government Accountability Office concluded that the FAA, \"\"lacks authority to auction arrival and departure slots, and thus also lacks authority to retain and use auction proceeds.\"\" GAO said it would challenge the FAA if it sought to proceed with the plan. The full legal opinion is available here: http://www.clinton.senate.gov/documents/news/09_31_08_GAO.pdf. The New York and New Jersey senators have long opposed the auction plan as counterproductive and potentially very costly to consumers. Instead, the senators have called on the FAA to modernize its equipment, adequately staff its control towers, and expedite new technology to increase airport capacity.Last year the senators secured into law two measures to reduce flight delays and ease congestion in New York/New Jersey airspace. One provision required the federal government to provide a plan to Congress to reduce flight delays in the region, the nation's most densely congested airspace. The other measure required the GAO to investigate the FAA's Airspace Redesign Plan, as well as the effectiveness of a variety of approaches used nationwide to reduce flight delays, including the auction plan.                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b0aecfa6-7431-40dd-946c-5d9c7316035b,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $1 MILLION TO EXPAND HEALTH EDUCATION IN NEW JERSEY\n                    \n                            Award Will Fund 5-Year Program for Middle-School Students On Importance of Healthy Eating and Exercise\n                    \n                      December 8, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that Montclair State University received a $1.3 million grant from the National Institutes of Health (NIH) to fund a five-year program to educate middle school students about the importance of healthy eating and exercise.\"\"By teaching our children to eat right and exercise, we can help them avoid chronic diseases such as diabetes and heart disease,\"\" Sen. Lautenberg said.  \"\"This award will go a long way to protecting future generations by helping them build a healthy future.\"\"\"\"Educating our children on the importance of healthy eating allows them to live longer, more productive lives and even helps our economy through decreased health care costs,\"\" said Senator Menendez.  \"\"The abundance of fast food and junk food options coupled with video games and television that cut into exercise into have exacerbated this issue.  This timely funding will help New Jersey students better understand how they can develop into healthy, life changing habits.\"\" Run at Montclair State University, the project will ensure that students understand the benefits of diet and exercise, and study how healthy eating and physical activity improves students' abilities in the sciences, and increases their interest in public health and science careers.                                                      # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9b1195fa-adea-4d9d-8ca5-6a10c33b95bd,\"SEN. MENENDEZ URGES AVAILABILITY OF EMERGENCY LOANS FOR SMALL BUSINESSES\n                    \n                            Member of Banking Committee calls on Small Business Administration to make businesses hurt by recession eligible for disaster loans\n                    \n                      December 5, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) is asking the U.S. Small Business Administration to make emergency Economic Injury Disaster Loans available for small businesses hurt by the meltdown on Wall Street. In his letter to SBA chief Sandy Baruah, Senator Menendez, a member of the Senate Banking Committee, says that the loans normally reserved for small businesses affected by disasters are appropriate and necessary for struggling businesses and the overall economy.\"\"While the meltdown on Wall Street would not technically qualify as a ‘natural disaster', the impact is indistinguishable when one considers the sheer magnitude and widespread effect it is having on small businesses and our economy as a whole,\"\" wrote Senator Menendez. \"\"Over the past several months, the Administration has taken unprecedented action to intervene in the economy, lending hundreds of billions of dollars to firms on Wall Street.  While I support efforts to do everything possible to stabilize our economy, I believe not enough attention is being paid to average Americans and small businesses on Main Street. Expanding the EDIL program will not only provide much needed assistance to middle class Americans being squeezed, but it will also be a good step towards stabilizing our economy and promoting growth.PDF of letter: http://menendez.senate.gov/pdf/12308SBAEIDLletter.pdf Text of letter:December 3, 2008Sandy K. BaruahAdministratorU.S. Small Business Administration 409 3rd Street, SWWashington, D.C. 20416Dear Mr. Baruah:I am writing to urge you to expand eligibility and allow small businesses impacted by the recent credit market turmoil to apply for the Small Business Administration's (SBA) Economic Injury Disaster Loans (EIDL).  Small businesses in New Jersey and all around the country are suffering from significant economic injury as a result of the tightening of credit, making this emergency assistance essential for our economic recovery.  As you know, our nation is currently experiencing an economic crisis unprecedented since the Great Depression.  The collapse on Wall Street has turned our credit markets into a state of chaos, causing ripple effects to reverberate through the entire economy.  As a result, small businesses are finding it increasingly difficult and often impossible to access the capital they need to continue operating.  This lack of access to capital has forced many businesses to lay off workers and reduce inventory purchases, both of which exacerbate the economic downturn.In order to reverse this trend, we need to ensure small businesses are able to obtain affordable credit.  Designed to assist small businesses that suffer economic injury due to disasters, the SBA's EIDL program is the appropriate vehicle to deliver the assistance that is so needed.  While the meltdown on Wall Street would not technically qualify as a \"\"natural disaster\"\", the impact is indistinguishable when one considers the sheer magnitude and widespread effect it is having on small businesses and our economy as a whole.  That is why I urge you to expand the eligibility for the EIDL program to allow small businesses that have suffered significant injury as a result of the credit market turmoil to apply for EIDL assistance.  The SBA has the authority, resources, and prerogative to make such a determination.  Just last month, Congress greatly increased the lending capacity of the SBA's disaster loan program providing almost $500 million in additional funding.  This gave the agency the potential to lend more than $56.8 billion in emergency loans this year, with $6 billion still available.  With its extensive experience in assisting small businesses after natural disasters, the SBA is well suited to perform this function.  Over the past several months, the Administration has taken unprecedented action to intervene in the economy, lending hundreds of billions of dollars to firms on Wall Street.  While I support efforts to do everything possible to stabilize our economy, I believe not enough attention is being paid to average Americans and small businesses on Main Street.  Expanding the EDIL program will not only provide much needed assistance to middle class Americans being squeezed, but it will also be a good step towards stabilizing our economy and promoting growth.  Thank you for taking the time to consider this proposal.  I look forward to your prompt response on this matter.Sincerely,ROBERT MENENDEZUnited States Senator                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dd09906b-697d-46f8-a2e1-e78fb129e007,\"FED CHAIRMAN BERNANKE CONFIRMS TO SEN. MENENDEZ THAT COMMUNITY REINVESTMENT ACT IS NOT TO BLAME FOR FORECLOSURE CRISIS\n                    \n                            Member of Banking Committee had written Bernanke for clarification to dispel accusations about the CRA\n                    \n                      December 2, 2008\n                     WASHINGTON - In response to U.S. Senator Robert Menendez's (D-NJ) request for clarification, Federal Reserve Chairman Ben Bernanke has confirmed that a homeownership program for low-income Americans is not to blame for the U.S.'s housing crisis. Bernanke points to safeguards within the Community Reinvestment Act as well as the Fed's own research as evidence that debunks recent attempts to pin the crisis on the CRA (http://menendez.senate.gov/pdf/112508ResponsefromBernankeonCRA.pdf).In his response, Chairman Bernanke writes: \"\"Our own experience with CRA over more than 30 years and recent analysis of available data, including data on subprime loan performance, runs counter to the charge that was at the root of, or otherwise contributed in any substantive way to, the current mortgage difficulties.\"\"Today, Senator Menendez said: \"\"Let the blame directed at the Community Reinvestment Act end now. It has been a positive program that has helped millions of low-income Americans realize the American Dream in a responsible manner. Patently false attempts to pin the housing crisis on this worthwhile program are not only cynical, but they also distract from the important task of getting to the root of the problem and preventing a repeat. I was confident that the people who know our economy best, starting with Chairman Bernanke, would see these false accusations for what they are, and I am glad that the Chairman has repudiated them in no uncertain terms.\"\"Senator Menendez, a member of the Senate Banking Committee, had written Bernanke last month requesting this clarification (http://menendez.senate.gov/pdf/102408MenendezLetteronCRA.pdf).                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e64849e3-329b-4aa5-aff0-7b0a3a33e163,\"STATEMENT FROM SEN. MENENDEZ ON TERRORIST ATTACKS IN INDIA\n                    \n                      December 1, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, today released the following statement on the terrorist attacks in Mumbai, India that have left more than 140 dead:\"\"The horrific and despicable terrorist attacks in Mumbai represent an unconscionable assault on India and the international community, and we stand in solidarity against the terrorists. The situation is still unresolved, and I support any and all assistance that we can provide to the Indian government. We must back the Indian authorities as they work to bring about a peaceful end to this awful situation and bring the cold-blooded killers to justice. My thoughts and prayers are with the victims and their families. In New Jersey, we have a strong and proud Indian community, and I am also thinking of them during this international tragedy.                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9c53d38c-4f8d-48f6-8af6-787dfe5b7170,\"AIRLINE HIDDEN FEES: SEN. MENENDEZ UNVEILS LEGISLATION TO ENSURE AIRLINE FEES ARE CLEAR AND FAIR\n                    \n                            Airline websites often don't show full tax/surcharge breakdown or potential additional fees\n                    \n                      November 26, 2008\n                     WASHINGTON - Today, U.S. Senator Robert Menendez (D-NJ), unveiled legislation that would increase airfare transparency when the flying public searches for a ticket. The legislation would require airlines to post up front the amount of each tax and surcharge that accompanies a ticket as well as potential additional fees that may apply and would prohibit airlines from adding a fuel surcharge that does not correlate to the actual amount they paid for fuel.\"\"We are living in hard economic times, and Americans are being mindful of every penny they spend,\"\" said Senator Menendez. \"\"Airlines should be upfront with passengers. Extra costs and surcharges should be plain to see and easy to figure out. Whether we think these extra costs make sense or not, there is no debating that hiding them or obscuring them is simply unfair.\"\"This legislation represents a simple change and a simple concept, but it's one that would mean a lot to the flying public, which too often feels like its being taken advantage of when they try to book a flight. Now more than ever, it's time to give consumers a break.\"\"The legislation includes provisions to ensure that airlines:•    Provide the amount and description of each tax and surcharge when they first display the airfare,•    Provide information on additional fees - including checked baggage and seat assignment fees, and•    Will not impose fuel surcharges that are not correlated to the actually price for fuel that the airline paid.This is not Senator Menendez's first action to protect airline passengers. In October, he wrote the CEOs of the major US airlines to call for a roll back of fuel surcharges and more transparency in airfares (http://menendez.senate.gov/newsroom/record.cfm?id=304436). Also last month, he wrote a letter to Department of Transportation Secretary Mary Peters, asking that the department investigate why surcharges continue to be based on high fuel prices that have since come down significantly, and why the airlines do not post total charges on their websites in a way the consumer can understand what the total price of their airfare will be. A copy of the letter sent to Secretary Peters can be accessed following this link: http://menendez.senate.gov/newsroom/record.cfm?id=304765& Senator Menendez will formally introduce the legislation the next time Congress is back in session, possibly in December.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e063fc02-554d-451b-a803-2224f36d34a2,\"NY, NJ & CT SENATORS CALL FOR EMERGENCY AID TO HELP TRI-STATE WORKERS IMPACTED BY ECONOMIC CRISIS\n                    \n                            Unemployment Rate Rising Across Region\n                    \n                      November 26, 2008\n                     WASHINGTON, DC - The U.S. Senators from New York, New Jersey and Connecticut urged the Bush Administration to approve a National Emergency Grant to provide much-needed assistance to workers in the New York City metropolitan region who have lost their jobs as a result of the worsening economic crisis. In a letter to Secretary of Labor Elaine L. Chao, Senators Hillary Rodham Clinton (D-NY), Charles E. Schumer (D-NY), Frank R. Lautenberg (D-NJ), Robert Menendez (D-NJ), Christopher J. Dodd (D-CT) and Joseph I. Lieberman (ID-CT) requested $48 million to help their states provide a coordinated response to aid the hundreds of thousands of workers already bearing the brunt of the deepening recession.  \"\"It is imperative that our states have the resources to cope with this rising wave of unemployment and to help transition these individuals to new jobs,\"\" the Senators wrote. \"\"This grant will provide our states with the crucial resources they need to support the extraordinary number of workers in our region left jobless and at risk in the midst of this recession.\"\"The Tri-State region's unemployment rate has already risen by 1.3 percent from April 2008 to September 2008 alone, a loss of more than 140,000 jobs.  Analysts estimate that the tri-state region will lose an additional 160,000 private sector jobs by the end of 2008. The text of the Senators' letter follows:The Honorable Elaine L. ChaoU.S. Secretary of LaborUnited States Department of Labor200 Constitution Avenue, NWWashington, D.C. 20210Dear Madam Secretary:We are writing to ask you to favorably consider the grant submitted by the states of New York, New Jersey and Connecticut for a National Emergency Grant to provide much-needed assistance to workers losing their jobs as a result of the recent crises in the financial sector. As you know, the tri-state region is at the very center of the financial crises of the last several months.  The downturn is having a profound impact on workers in the region, and is spreading beyond the financial sector to workers in the food and restaurant industry, the retail trade, and hospitality industries, and those performing administrative and computer support functions.  The region's unemployment rate has already risen by 1.3 percent from April 2008 to September 2008 alone, a loss of more than 140,000 jobs.  Analysts estimate that the tri-state region will lose an additional 160,000 private sector jobs by the end of 2008.  It is imperative that our states have the resources to cope with this rising wave of unemployment and to help transition these individuals to new jobs.  That is why we ask you to swiftly approve the National Emergency Grant request submitted by the Governors of our three states.  Our states are seeking $48 million to provide a coordinated response that is tailored to assist the hundreds of thousands of workers facing dislocation as a result of the crises.  This grant will provide our states with the crucial resources they need to support the extraordinary number of workers in our region left jobless and at risk in the midst of this recession.  Our states are ready to take emergency action to address the considerable workforce challenges which lie ahead.  They have proposed collaborative market analysis and forecasting projects, the creation of specialized service centers for white-collar professionals, and  other initiatives to identify those sectors of the economy with job creation opportunities for high-wage, skilled workers and lower-skilled workers alike.  They are prepared to implement strategies to aid companies in averting layoffs and to identify and assist small businesses in danger of closure. But in a time of budget shortfalls and declining revenues, they desperately need assistance to help those impacted most by the financial crisis.We ask you to support this unified effort to assist and align displaced workers with the demands of the marketplace and get our states working again. Sincerely,Hillary Rodham Clinton                                                    Charles E. SchumerFrank Lautenberg                                                              Robert MenendezChristopher Dodd                                                              Joseph Lieberman                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=69313d0f-1aa4-4bcc-b642-01a36ae15cbf,\"FANNIE/FREDDIE FORECLOSURE MORATORIUM NOT NEARLY BROAD ENOUGH, SAYS SEN. MENENDEZ\n                    \n                            Plan is estimated to potentially help only 16,000 homeowners\n                    \n                      November 24, 2008\n                     WASHINGTON - Today, government-controlled mortgage giants Fannie Mae and Freddie Mac announced a plan to freeze some foreclosures between November 26 of this year and January 9, 2009. It is estimated that the plan would only prevent up to 16,000 foreclosures. In October there were 279,561 foreclosure filings — if this keeps pace there will be more than a half million foreclosure filings by the end of the Bush administration.U.S. Senator Robert Menendez (D-NJ), a member of the Senate Banking Committee who has consistently pushed the Bush administration to take more assertive action to stem foreclosures, said the plan would not save nearly enough families from losing their homes. He released the following statement:\"\"Once again, the Bush administration is like a fire department showing up late with only a garden hose. Preventing up to 16,000 foreclosures is better than nothing, but at least half a million families will join those already facing foreclosure if stronger action isn't taken between now and the Obama administration. Last week, the Bush administration announced a plan to modify mortgages for only a small segment of struggling homeowners, and now we see a freeze on an extremely limited number of foreclosures. Clearly, if they don't understand by now that stabilizing the housing market helps stabilize the entire economy, they never will. It is time for this administration to listen to these struggling homeowners and take Shelia Bair's plan seriously.\"\"                                                     # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=16b87fb9-7e59-4a87-8189-b7cc20386ff9,\"AUTHOR OF CREDIT CARD REFORM ACT CALLS FOR STRINGS ATTACHED TO RESCUE FUNDS FOR CREDIT CARD ISSUERS\n                    \n                            Senator Menendez urges Paulson and Bernanke to attach consumer-friendly conditions to rescue funds used to purchase credit card backed securities\n                    \n                      November 24, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), author of the Credit Card Reform Act (http://menendez.senate.gov/newsroom/record.cfm?id=294654), is calling on Treasury Secretary Henry Paulson and Federal Reserve Chairman Ben Bernanke to protect consumers if they use rescue funds used to purchase credit card backed securities. Recently, credit card issuers have been unilaterally increasing interest rates on cardholders, which Senator Menendez says will cause additional hardship during these already difficult economic times. In a letter to Paulson and Bernanke, he urges them to only buy these securities under certain preconditions, including: •    the card issuers refrain from unilateral rate increases,•    the card issuers refrain from the tactic known as \"\"universal default\"\", in which rates are increased based on a consumer's credit issues completely unrelated to the credit card, and•    the requirement that penalties rates and fees are reasonably tied to costs.\"\"Unfortunately, at a time when consumers are most vulnerable, several major credit card companies are exacerbating the situation by unilaterally raising interest rates, even on consumers who have never been late on payments,\"\" wrote Senator Menendez. \"\"This is not risk-based pricing; rather, it is merely a way for issuers to recover losses they are incurring at the expense of American families.  Forcing consumers to pay for the mistakes of credit card executives is not only unfair, it also threatens to push many more people into default and even bankruptcy.   PDF of letter: http://menendez.senate.gov/pdf/111708FEDTreasuryCreditCardLetter.pdfText of letter: The Honorable Henry M. Paulson, Jr.Secretary of the TreasuryU.S. Department of the Treasury1500 Pennsylvania Avenue, NWWashington, DC 20220The Honorable Ben S. BernankeChairmanThe Federal Reserve Board20th Street and Constitution Avenue, NWWashington, DC 20551Dear Secretary Paulson and Chairman Bernanke:I am writing to express my concern regarding new developments in the credit card industry.  I am troubled by reports of major credit card issuers arbitrarily raising interest rates for many of their customers, even as the federal government considers taking unprecedented action to intervene in the consumer credit sector.When the Federal Reserve issued its proposed rulemaking on credit cards this summer, I praised these actions as a good first step, but urged them to do more to ensure consumers are given a fair deal.  Since then, the situation has become even more dire as mortgage foreclosures, economic contraction, and skyrocketing unemployment have come together to form a perfect storm that is battering the American people.  With default rates skyrocketing, and Americans holding almost $1 trillion in credit card debt, it is now more urgent than ever that we protect consumers from egregious and unfair practices.Unfortunately, at a time when consumers are most vulnerable, several major credit card companies are exacerbating the situation by unilaterally raising interest rates, even on consumers who have never been late on payments.  This is not risk-based pricing; rather, it is merely a way for issuers to recover losses they are incurring at the expense of American families.  Forcing consumers to pay for the mistakes of credit card executives is not only unfair, it also threatens to push many more people into default and even bankruptcy.   Last week, Secretary Paulson announced that the Treasury Department is considering giving tens of billions of dollars to the Federal Reserve to purchase credit card-backed securities.  While I'm not necessarily opposed to this kind of direct action, I strongly believe that any government intervention must make helping consumers its central focus and ultimate objective.  Stronger consumer protections, such as prohibiting unilateral rate increases, ending universal default, and requiring that penalty rates and fees be reasonably tied to cost, should be prerequisites for any issuers who wish to benefit from government assistance.  These commonsense reforms will not only relieve some of the pressure on consumers, they will also end some of the most egregious practices that have forced so many people to the brink of bankruptcy. Much of the current economic predicament we are now in can be traced back to irresponsible lending that was enabled by an ineffective and weak regulatory structure, and the American people are paying the price.  Secretary Paulson and Chairman Bernanke, I urge you to focus your attention and efforts on helping Americans who have been caught in the crossfire by strengthening credit card protections.     Sincerely,ROBERT MENENDEZUnited States Senator                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f3a58d03-0a64-4816-a53a-832dd69aef31,\"SENATE PASSES EXTENSION OF UNEMPLOYMENT INSURANCE, SEN. MENENDEZ APPLAUDS VOTE\n                    \n                            NJ Senator says additional stimulus provisions opposed by Bush administration would have helped spur economy even more\n                    \n                      November 20, 2008\n                     WASHINGTON - Today, the United States Senate approved an extension of unemployment insurance for out-of-work Americans in these tough economic times. Those who have used up their unemployment benefits will receive seven additional weeks in most states and 13 weeks in states with the highest rates of unemployment. Democrats also favored additional economic stimulus measures, such as ready-to-go infrastructure projects, Medicare-costs assistance for states and food stamp assistance, but the Bush administration and Senate Republicans would not accept those provisions.U.S. Senator Robert Menendez (D-NJ) today applauded the unemployment insurance extension:\"\"The loss of a job not only hurts people's wallets, it also takes an emotional toll on families struggling just to get by during these tough economic times and further devastates the economy. This is readily evident in New Jersey, where the unemployment rate has now reached six percent, up almost 50 percent from the 2007 average.  With Americans losing their jobs at an alarming pace, this extension of unemployment insurance is urgently needed to keep families afloat and prevent an even deeper economic downturn.\"\"Even beyond this extension of unemployment insurance, there is much more that we can and should do to get our economic engine running at full speed again, but the president's objections are unhelpful. We can create jobs by approving ready-to-go infrastructure projects, we can lift a burden off of struggling states by assisting with Medicare costs, and we can lend a hand to those who have fallen on hard times by bolstering the food stamp program. I know that Congressional leaders are committed to revisiting these and other economic stimulus measures, and I look forward to being a big part of that effort.\"\"                                                       # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1ecfc501-1dd2-4604-9418-0a71b5b83018,\"LAUTENBERG, MENENDEZ ANNOUNCEMORE THAN $237 MILLION FOR PORT, RAIL,INFRASTRUCTURE SECURITY IN N.J. REGION\n                    \n                            N.J. Region Receives Largest Grant in Nation for Port Security,Substantial Increase in Funding to Protect Chemical Plants\n                    \n                      November 19, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the U.S. Department of Homeland Security (DHS) awarded New Jersey and its neighboring areas more than $237 million in federal funds for passenger and freight rail, port, bus and infrastructure security.\"\"This funding is critical to protect New Jersey's ports, trains, buses and transportation infrastructure.   Whether it's requiring homeland security grants to be distributed based on risk, not politics, or fighting for the funding our state needs to keep our communities safe, we will continue working to better protect New Jersey and the surrounding region,\"\" Sen. Lautenberg said.Senator Menendez said: \"\"These are tremendously important funds that can help bring security to many of the potential targets in our state. We have a bustling transit and rail system, tons of cargo flowing through our ports, busy chemical facilities and high-profile financial institutions. To make our state as secure as possible, that infrastructure must be fully protected, and this is another step in that direction.\"\"DHS announced $237,918,637 in security funding for New Jersey and neighboring states.  The grants were broken up into three separate programs:•    Transit Security Grant Program: The New Jersey, New York and Connecticut region will share $153,256,664 for securing transit and rail systems.  In addition, the Southern NJ-Philadelphia region will receive $18,550,000.   A total of $25 million will be awarded to Amtrak for security needs and $15 million to freight rail security.  In addition to this funding, a bill written by Sen. Lautenberg and cosponsored by Sen. Menendez to increase Amtrak's funding and improve rail safety across the country became law last month.•    Port Security Grant Program: New funding totaling $62,511,973 will aid in port and maritime security operations in the state:o    $43,397,694 for port security improvement projects in the Port of New York & New Jersey, which is the largest award nationwide;o    $19,114,279 for projects in the Delaware River and Bay port system; ando    Perth Amboy will be eligible, along with 35 other ports, for a share of a $17 million allocation under the port security tier system.•    Buffer Zone Protection Program: New Jersey will receive $3.6 million from this program that allocates funds for protecting sites like chemical facilities, financial institutions, nuclear and electric power plants, dams, stadiums and other high-risk/high-consequence facilities.  This is a substantial increase from FY 2008's allocation of $995,000.Increasing homeland security funding for our nation's most vulnerable areas was one of the highest priorities of the incoming Democratic majority in the U.S. Senate and House in 2007.  Sen. Lautenberg wrote the law that required port security funding to be based on risk.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0e4f11df-9204-451b-b2e7-93467222ab48,\"FLIGHT DELAYS: SEN. MENENDEZ REACTS TO BUSH ANNOUNCEMENT OF HOLIDAY AIR TRAFFIC PLANS\n                    \n                            NJ Senator has battled administration on its unwillingness to address root of flight delay issues\n                    \n                      November 18, 2008\n                     WASHINGTON - This morning, President Bush announced air traffic modifications for the days around Thanksgiving and Christmas. The president also touted his administration's plan to auction off flight slots at the three major New York City area airports as a way to reduce delays.U.S. Senator Robert Menendez has consistently pushed the Bush administration to take action to systemically address flight delays, particularly in the nation's most congested airspace around New York City. He has placed a hold on the nominee for Federal Aviation Administration chief over flight delays and a number of other issues (http://menendez.senate.gov/newsroom/record.cfm?id=292402). He has also strongly opposed the airport slot auctions plan over its potential to significantly raise airfares for New Jerseyans (http://menendez.senate.gov/newsroom/record.cfm?id=304397).Senator Menendez released the following statement in response to President Bush's announcement:\"\"While this a welcome move that will hopefully bring at least a bit of relief around the holidays, millions of Americans who have flown since President Bush implemented the previous version of this temporary plan can tell you that flight delays are still persistent, widespread and maddening all year long. The Bush administration will leave office having never addressed the bigger issues clogging up our air traffic system, instead resorting to stopgaps and baby steps. If they wanted to systematically deal with flight delays, they would make sure there are enough experienced air traffic controllers on the job and would help Congress bring the air traffic control system into the 21st Century.\"\"I am also strongly opposed to the president's insistence on proceeding with an illegal plan to auction off flight slots at the major New York City-area airports. It equates to levying an additional tax on people in our area for where they live and for when they want to fly. Pricing our region's middle-class families out of flying at the best times is unfair and is particularly absurd in these economic times.\"\"                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e6af836e-edac-4f96-9393-d4d209a93e0e,\"SEN. MENENDEZ STATEMENT IN HONOR OF VETERANS DAY\n                    \n                      November 12, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) released the following statement on Veterans Day:\n\"\"Today, we honor those who have bravely served our nation in days past, as well those who are currently wearing the uniform. A grateful nation shows its gratitude not just by commemorating Veterans Day, which is important, but also in the health care we provide our veterans, in how we how we take care of their disabilities, and how we take care of the survivors of those who make the ultimate sacrifice. Remembering their service to our country helps guide me in working for our nation's veterans in the U.S. Senate.\n\"\"Over the past year, I have had the distinct honor of visiting the sons and daughters of America who are serving in both Iraq and Afghanistan. They are doing our nation proud, and they are following in a long line of American veterans who have served the country they love with valor. Today and always, we hold all of them and their families in our hearts and prayers.\"\"\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c947b25d-ad0d-4655-83fa-34ee4df68aa8,\"SEN. MENENDEZ CRITICIZES ADMINISTRATION'S LATEST ANNOUNCEMENTS ON HOME LOANS, BANKS\n                    \n                            Member of Banking Committee says mortgage modification plan and lending guidelines for capital infusions are insufficient\n                    \n                      November 12, 2008\n                     WASHINGTON - Yesterday, the Bush administration announced a plan to modify a select group of home loans on the verge of foreclosure. Today, federal regulators issued limited guidelines for capital infusions being given to banks as part of the economic rescue plan. U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, has called on the Bush administration to take more affirmative and forward-looking action to stem the foreclosure crisis for more than a year and a half. He has also joined with colleagues in calling for stronger guidelines for capital infusions to help ensure that the program will stimulate lending (http://menendez.senate.gov/newsroom/record.cfm?id=304850). Today, he said that the mortgage modification plan and the guidelines are insufficient:\"\"Unfortunately, the Bush administration has not broken from its frustrating too-little-too-late pattern throughout this foreclosure crisis. They are like a fire department that shows up late and brings only a garden hose. Our goal should be to prevent millions of Americans from losing their homes, and that means we must have much better foresight and a more aggressive program. If someone as independent and respected as Sheila Bair is adamant in her concern over the mortgage modification plan, I would hope that Treasury is listening.\"\"As for the lending guidelines announced today, we must remember that the goal of infusing banks with money is to stimulate lending. These new guidelines seem to be too limited and weak to ensure lending and protect taxpayers. Stronger guidelines, such as the ones we have called for, will make sure banks are using the public money to stimulate the economy and make it easier for people to get auto loans, student loans and small business loans.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=daafbb64-5f4b-4035-b7cd-8bc72285eb7d,\"AIRLINES HEED SEN. MENENDEZ'S CALL FOR MORE TRANSPARENCY IN AIRFARES, BUT MENENDEZ SAYS SAVINGS SHOULD STILL BE PASSED ON TO CONSUMERS\n                    \n                            Menendez has written major airline CEOs and Dept. of Transportation regarding fuel surcharges, transparency in airfares\n                    \n                      November 12, 2008\n                     WASHINGTON - An analysis of airfares in today's USA Today shows that many airlines have eliminated fuel surcharges from domestic flights and have instead folded the amount of those surcharges into base airfares. As a result, the price of flying has generally not decreased, but consumers are given more accurate information about the amount they will pay to fly when they search for a ticket.This increased transparency was something that U.S. Senator Robert Menendez (D-NJ) called for last month. He wrote the CEOs of 11 major U.S. airlines urging them to roll back fuel surcharges and extra costs and to provide consumers with a more accurate representation of what they will actually be paying when they search for a ticket (letter to CEOs: http://menendez.senate.gov/newsroom/record.cfm?id=304436). In addition, he wrote U.S. Transportation Secretary Mary Peters late last month, urging her to initiate an investigation into the basis for fuel surcharges and whether consumers are given accurate information about the actual price they will be paying to fly (letter to Peters: http://menendez.senate.gov/newsroom/record.cfm?id=304765).\"\"As someone who called for airlines to be more up front with the public about the cost of flying, this increased transparency is certainly welcome news,\"\" said Senator Menendez. \"\"There is still more transparency that can be instituted, as travelers too often are not made adequately aware of checked baggage fees and other extra charges. Airlines can't expect to pull a fast one on American families by surprising them with additional costs.\"\"Unfortunately, as fuel costs have dramatically decreased, we still have yet to see airfares come down across the board. Jet fuel cost $4.34 per gallon on July 2, and as of last Tuesday, it cost $2.24 per gallon. As Americans look to spend the holidays with their families, it's time the airlines pass some of their fuel savings on to the flying public.\"\"The spot price of Kerosene-Type Jet Fuel in New York Harbor, a major jet fuel price indicator, was $4.34 per gallon on July 2. Last Tuesday, the most recent day for which data is available, it was $2.24 per gallon (http://tonto.eia.doe.gov/dnav/pet/hist/rjetnyhd.htm).                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=71753c80-276a-421a-af4a-523a708fbb4d,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $75 MILLION IN HOMELAND SECURITY GRANTS FOR NEW JERSEY\n                    \n                            N.J. Senators Continue To Urge That All Federal Security Grants Be Risk-Based\n                    \n                      November 12, 2008\n                     NEWARK, N.J. - Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert Menendez (D-NJ) today announced that New Jersey will receive more than $75 million in homeland security grants from the U.S. Department of Homeland Security (DHS).  However, the Senators reiterated their call for all federal security funds to be based on risk—not subject to formulas that guarantee state minimums regardless of risk.\"\"New Jersey is home to the two-mile stretch most at risk to terrorism in America and we need sufficient security funds to keep our residents safe. Federal homeland security funds should be doled out based only on risk, not politics.\"\"  Sen. Lautenberg said. \"\"I look forward to working with President-elect Obama and the new Congress to make sure all homeland security funds are distributed based on risk so New Jersey receives the funds it needs to stay secure.\"\"Senator Menendez said: \"\"We all know that our state needs to be fully prepared for homeland security emergencies, which makes these programs so important for us, year-in and year-out. These resources will help ensure New Jersey's brave first responders have what they need to protect our families and our communities. Ever since these homeland security programs began in the aftermath of 9/11, our state has been subjected to a yo-yo of inconsistent distribution levels. It also concerns me that the areas of Southern New Jersey -- a stone's throw from Center City Philadelphia -- are not fully integrated into the system that distributes funding for urban areas. Regions with large concentrations of people and critical infrastructure, like our state, should never have to worry if we are going to have the homeland security resources we need to be prepared. Congress has improved the process over the past two years, but I also look forward to working with the Obama administration to make sure our state receives consistent and ample homeland security resources in the future.\"\"New Jersey will receive $75.2 million in federal funds for seven homeland security programs:•    $35,298,150 for the Urban Area Security Initiative (UASI), which is a $310,150 increase from last year's funding level.  UASI is a risk-based program that helps protect high-density and high-threat urban areas, such as Newark and Jersey City, by helping them prevent, respond to and recover from acts of terrorism.  •    $26,391,000 to the State Homeland Security Program, which helps municipalities in New Jersey plan, equip and train emergency first responders and other personnel to respond to acts of terrorism.                  •    $7,504,254 to assist state and local governments in improving their emergency management capabilities. •    $3,617,000 to the Regional Catastrophic Preparedness Grant Program, which helps law enforcement prevent terrorism by coordinating with individuals in non-law enforcement, government agencies and the private sector. •    $1,433,469 to improve interoperable emergency communications, including communications in response to natural disasters, acts of terrorism and other man-made disasters. •    $642,442 to Metropolitan Medical Response System, which helps towns and cities prepare for and respond to mass casualty events. •    $357,481 to the Citizens Corps Program, which involves residents in prevention, preparedness and response to terrorism, natural disasters and other threats, such as crime and public health. Increasing homeland security funding for New Jersey is a top priority for Senators Lautenberg and Menendez.  Lautenberg was one of the first senators to oppose funding formulas not based on risk and call on DHS to distribute grants based on vulnerability and threat.  In 2007, Congress passed the Implementing Recommendations of the 9/11 Commission Act (P.L. 110-53) dramatically reducing the state minimum allocation from .75 percent to.35 percent by 2012, allowing more security funding to go to areas that need it most.Senator Menendez was one of the leaders in the effort to act on the 9/11 Commission report, helping to introduce legislation in the House of Representatives to enact its recommendations, including risk-based homeland security funding. He has also been leading the charge to ensure that areas of Southern New Jersey just outside of Philadelphia are included as part of the Philadelphia region that receives UASI funding, pressing DHS on the matter and convening a meeting of local officials last year.                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ec9b2a4b-6833-4e58-bad4-2cb722b6e295,\"SENS. MENENDEZ AND SCHUMER CALL ON PAULSON TO PREVENT BANKS FROM USING CAPITAL INFUSIONS TO AQUIRE HEALTHY BANKS OR PROVIDE DIVIDENDS\n                    \n                            Senators say new guidelines are necessary to ensure that increased lending and economic growth are achieved\n                    \n                      November 7, 2008\n                     WASHINGTON - U.S. Senators Robert Menendez (D-NJ) and Charles E. Schumer (D-NY) are calling on Treasury Secretary Paulson to issue new guidelines for capital infusions being provided to banks as part of the economic rescue plan. The members of the Senate Banking Committee are concerned about reports that banks may use these public funds to purchase other healthy banks or increase dividends to shareholders rather than increasing lending, which was the goal of the Capital Purchase Program.\"\"People and businesses on Main Street are counting on banks to use this capital to free up lending, prevent foreclosures, and stimulate the economy,\"\" the senators wrote.  \"\"If used correctly, they will help students pay for college, families get auto loans, homeowners modify mortgages, and small businesses stay open and keep their employees on the payroll.  On the other hand, if the money is used to acquire healthy banks and create a financial empire or to increase dividends, then this rescue package will be transformed into merely a give-away to banks, which is not in the taxpayers' best interest.\"\"PDF of letter: http://menendez.senate.gov/pdf/110708SOTLettertoPaulson.pdf Text of letter:November 7, 2008The Honorable Henry M.  Paulson, Jr.U.S. Secretary of the TreasuryUnited States Department of Treasury1500 Pennsylvania Avenue, NWWashington, D.C. 20220Dear Secretary Paulson:In light of recent and disturbing reports about the Capital Purchase Program, we are writing to express our concern about its implementation.  While we support efforts to thaw the credit freeze that has gripped our markets, we believe such efforts should be focused on inducing financial firms to offer more loans to businesses and individual Americans.  These loans must not be used to acquire healthy banks, hoard in their coffers, or pay shareholder dividends.  When Congress authorized the Capital Purchase Program through the Emergency Economic Stabilization Act of 2008, the expectation was for banks to use capital infusions to make new loans and spur economic growth, not to use the funds to acquire other healthy banks and continue or even increase dividends to their shareholders.We are also troubled by the fact that the Treasury Department appears to be taking a \"\"hands off\"\" approach to this issue, preferring instead to leave decisions solely up to the discretion of senior bank executives.  After seeing the consequences of years of deregulation, we can no longer afford to sit back and hope that lenders do the right thing.  Banks must understand that these funds aren't a gift and if they don't want to play by our rules, they don't need to cash the check.People and businesses on Main Street are counting on banks to use this capital to free up lending, prevent foreclosures, and stimulate the economy.  If used correctly, they will help students pay for college, families get auto loans, homeowners modify mortgages, and small businesses stay open and keep their employees on the payroll.  On the other hand, if the money is used to acquire healthy banks and create a financial empire or to increase dividends, then this rescue package will be transformed into merely a give-away to banks, which is not in the taxpayers' best interest.  Over the past several months, the federal government has taken unprecedented steps as it risks hundreds of billions of taxpayer dollars in order to stabilize the financial markets and prevent further economic damage.  The American people deserve to know that their money is being used to provide maximum benefit for our economy and the public as a whole and not to create banking empires or reward players on Wall Street. We urge you to issue guidelines or best practices to ensure that the Capital Purchase Program effectively addresses the needs of Main Street and protects taxpayers.  Thank you for your attention to this matter.  We look forward to your prompt response.Sincerely,ROBERT MENENDEZ                                                         CHARLES E. SCHUMERUnited States Senator                                                             United States Senator                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0e3d6a0b-3d89-4a7c-9df6-7bf0fbeeaa80,\"SEN. MENENDEZ CALLS ON DEPARTMENT OF TRANSPORTATION TO INVESTIGATE AIRLINE FUEL SURCHARGES\n                    \n                            With jet fuel declining $2.23 per gall since July, NJ Senator has also urged 11 airline CEOs to roll back extra fees\n                    \n                      October 31, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) is increasing the pressure on airlines regarding fuel surcharges that remain in place despite drastically lower jet fuel prices. Today, he called on U.S. Transportation Secretary Mary Peters to investigate why there does not appear to be a strong correlation between fuel surcharges and actual fuel costs and whether consumers searching for a ticket online are being giving full and accurate information about the total fares they will pay.Senator Menendez wrote: \"\"We were told repeatedly how these surcharges were simply a necessity in light of sky high fuel prices. But the situation with regard to oil and fuel prices has changed dramatically.... And yet most fuel surcharges are as high as ever, demonstrating that these ‘fuel surcharges' are not determined by the price of fuel.\"\"Regarding transparency in online airfares, Senator Menendez wrote: \"\"The myriad of fees that the airlines now charge often make it difficult or even impossible for consumers to find the best deal.  Depending on the airline, travelers are charged varying fees for the first bag they check, the second bag they check, for selecting a seat assignment, for having a snack, for checking bags curbside, or for changing a flight.... The flying public expects to be able to go to their computer and simply and easily compare ticket prices, but as it stands, that is simply impossible.\"\"The spot price for Kerosene-Type Jet Fuel in New York Harbor - a major jet fuel price indicator - has fallen from $4.34 per gallon in early July to $2.11 per gallon this past Tuesday, the most recent spot price available from the Energy Information Administration (http://tonto.eia.doe.gov/dnav/pet/hist/rjetnyhd.htm).On October 20, Senator Menendez wrote the CEOs of 11 major U.S. airlines, urging them to roll back surcharges and extra fees and to make the fares more transparent (http://menendez.senate.gov/newsroom/record.cfm?id=304436&). As of today, only one airline, Southwest Airlines, has responded.PDF of letter to Secretary Peters: http://menendez.senate.gov/pdf/103108DOTSurcharges.pdf Text of letter:October 31, 2008The Honorable Mary Peters Department of Transportation1200 New Jersey Avenue SEWashington, DC 20590Dear Secretary Peters:I am writing in regard to potentially deceptive fees and surcharges airlines have been charging passengers.  I ask that you use your authority under 49 U.S.C. § 41712 to investigate these practices and issue clearer guidelines so that passengers can more easily compare ticket prices between carriers and are not surprised by hidden fees. There are two practices in particular that that I find particularly troublesome.  First, I understood why the airlines found it necessary to put large fuel surcharges in place when oil was close to $150 per barrel in June and July. We were told repeatedly how these surcharges were simply a necessity in light of sky high fuel prices. But the situation with regard to oil and fuel prices has changed dramatically.  Between July 2nd and last week, the spot price of Kerosene-Type Jet Fuel in the United States fell by over $2.00 (46 percent), to its lowest level in a year.  And yet most fuel surcharges are as high as ever, demonstrating that these \"\"fuel surcharges\"\" are not determined by the price of fuel.  Moreover, these surcharges appear to be only loosely correlated with how much fuel is actually used during a flight, being instead controlled by factors such as whether one flies economy, business, or first class, how far in advance one buys a ticket, and the amount of competition on a given route.  I ask the Department of Transportation to investigate whether these \"\"fuel surcharges\"\" have any basis in reality, or if they are being used to mislead travelers, reduce competition, and covertly increase fares.  Second, the myriad of fees that the airlines now charge often make it difficult or even impossible for consumers to find the best deal.  Depending on the airline, travelers are charged varying fees for the first bag they check, the second bag they check, for selecting a seat assignment, for having a snack, for checking bags curbside, or for changing a flight.  I hope airlines are in compliance with your May 19, 2008 guidance on the disclosure of checked baggage fees, but this requirement to just post fees on an airline's website is simply not good enough.  My staff has gone to several airline websites and attempted to figure out what fees they are being charged and often what pops up is a dollar figure said to represent \"\"taxes and fees\"\" without any way to figure out to what specific fees or taxes these charges correspond.  United Airlines, for instance, explains that fees and taxes may include a \"\"Carrier-imposed fuel surcharges (YQ) of up to $250 per direction of travel,\"\" but does not breakdown the charges on any given fare.Even in cases where it is possible to tease out some of these fees, air travelers are often left to decipher tables of hidden fees.  The attached table shows how difficult it is for a consumer to figure out just what they will wind up paying for their flight.The flying public expects to be able to go to their computer and simply and easily compare ticket prices, but as it stands, that is simply impossible.  I ask that you use your authority under 49 U.S.C. § 41712 to better regulate the airlines so that travelers are not victimized by misleading fuel surcharges or by hidden fees.  Specifically I ask that you:•    investigate to determine whether \"\"fuel surcharges\"\" actually have anything to do with fuel use or fuel costs; ando    if there is little or no correlation I ask that you issue guidelines to ensure there is a strong correlation, because airlines should not be able to use a surcharge structure in an attempt to hide the true price of a ticket from customers or mislead them into thinking fuel costs are unrealistically high.•    investigate whether customers can determine the exact breakdown of fees, taxes, and surcharges, and whether they can do this without inputting any information like their name, address, or credit card number; ando    if customers cannot readily access this information I ask that you issue guidelines to require airlines to have these capabilities at their websites.  Customers should not have divulge personal information before determining the true cost of their airline ticket.•    investigate the extent to which using \"\"fuel surcharges\"\" instead of increased base fares results in savings for the airlines by reducing taxes, increasing frequent flier revenues, or avoiding corporate or bundling discounts.Thank you for your attention to this important matter.  I look forward to your prompt reply.                                                                                Sincerely,                                                                                ROBERT MENENDEZ                                                                                United States Senator                                                                 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3f4c2b75-9a95-43a0-bf13-ee2f7966e4bd,\"NEW JERSEY SENATORS CALL ON HEALTH INSURER TO NEGOTIATE IN GOOD FAITH FOR NEW CONTRACT WITH CHILDREN'S HOSPITAL OF PHILADELPHIA\n                    \n                            Senators Menendez and Lautenberg send letter to Horizon Blue Cross Blue Shield of NJ\n                    \n                      October 31, 2008\n                     WASHINGTON - Due to concerns about New Jersey's largest health insurer terminating its contract with the Children's Hospital of Philadelphia and the effect it will have on children's health care, U.S. Senators Robert Menendez and Frank Lautenberg today called on the CEO of Horizon Blue Cross Blue Shield of New Jersey to actively and in good faith negotiate a new contract with CHOP. In September, Horizon canceled its contract with the hospital and its health care network, meaning that tens of thousands of New Jersey children who seek treatment - particularly specialized treatment - would no longer be covered at CHOP or its affiliates.\"\"We are very concerned about this termination since a number of children living in New Jersey may lose the access to pediatric subspecialty care they have come to depend upon,\"\" wrote Senator Menendez and Lautenberg. \"\"Accordingly, we strongly urge you to reassure us, as well as parents and children in New Jersey, that Horizon will continue to negotiate vigorously and in good faith in order to reach a contract with CHOP.  The children of New Jersey deserve no less.\"\"The senators also urged Horizon, if it is unable to come to a new contract agreement with CHOP, to provide accurate information about patients' \"\"right to access CHOP in New Jersey and Pennsylvania, including any limitations, increased deductibles and co-pays.\"\" Parents have reported receiving confusing information about their access to CHOP since the contract was canceled.Many New Jersey families, especially in Southern New Jersey, rely on CHOP for specialized pediatric care. CHOP serves 45,000 patients from NJ, including 30,325 patients covered by Horizon.  In fact, approximately one quarter of children admitted at CHOP's Main Campus in Philadelphia come from New Jersey. CHOP's healthcare network includes Specialty Care Centers, Ambulatory Surgery Centers, Kids First Pediatric and Adolescent Practices, Home Care and pediatric services in community hospitals throughout New Jersey.  Specifically:•    Kids First Practices located in Cape May County, Mt. Laurel, Salem Road in Burlington Township, Smithville and Somers Point; •    Specialty Care Centers in Mays Landing-Atlantic County, Princeton, Voorhees, and the Pediatric Cardiology Division at Saint Peter's University Hospital; •    The CHOP Connection Program at Shore Memorial Hospital in Somers Point; •    The Children's Intensive Emotional and Behavioral Program located at the Specialty Care Center in Mays Landing-Atlantic County. PDF of letter: http://menendez.senate.gov/pdf/103108RMFRLLettertoHorizononCHOP.pdf Text of letter:October 31, 2008Mr. William J. Marino, President and Chief Executive OfficerHorizon Blue Cross Blue Shield of New JerseyThree Penn Plaza EastNewark, New Jersey 07105-2200Dear Mr. Marino:It has come to our attention that Horizon Blue Cross Blue Shield of New Jersey (\"\"Horizon\"\") has terminated its contract with The Children's Hospital of Philadelphia (\"\"CHOP\"\").  We are very concerned about this termination since a number of children living in New Jersey may lose the access to pediatric subspecialty care they have come to depend upon.Accordingly, we strongly urge you to reassure us, as well as parents and children in New Jersey, that Horizon will continue to negotiate vigorously and in good faith in order to reach a contract with CHOP.  The children of New Jersey deserve no less.  If for some reason, however, a contract with CHOP cannot be entered into promptly, then Horizon must ensure that the public receive accurate information about their right to access CHOP in New Jersey and Pennsylvania, including any limitations, increased deductibles and co-pays.  It is our understanding that some of the information provided by Horizon has been confusing and, at times, incomplete regarding these issues.  We look forward to hearing from you directly so that we may learn more about your intentions to negotiate a resolution to this matter, as well as to hear more about how Horizon intends to provide full and accurate information to families about the implications of this termination.   Sincerely,Senators Menendez and Lautenberg                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=38b23317-45bb-4d97-83e2-f3e322ac8737,\"UPON REPORT RENEWING QUESTIONS ABOUT THE CHEMICAL BPA, SEN. MENENDEZ AGAIN CALLS ON FDA TO PROVIDE PUBLIC WITH GUIDANCE\n                    \n                            NJ Senator initially wrote FDA in April, says he is considering legislative options\n                    \n                      October 29, 2008\n                     WASHINGTON - Today, a Science Board subcommittee of government scientists and outside experts released a report citing major flaws in the Food and Drug Administration's determination that the chemical Bisphenol A (BPA) is not harmful when used in a variety of everyday products, from baby bottles to cans. This report underscores numerous scientific studies that have raised concerns about the potential link between BPA and health issues, such as cancer, behavioral changes and early onset of puberty in girls.In the wake of a National Toxicology Program draft report raising these concerns in April, U.S. Senator Robert Menendez (D-NJ) wrote the FDA, calling on it to communicate with the public (http://menendez.senate.gov/newsroom/record.cfm?id=296419&). Today, Senator Menendez said the Science Board report is another reason for the FDA to increase public communication on BPA. He indicated that he is considering legislative options on the issue. He released the following statement:\"\"The Food and Drug Administration has avoided serious consideration of and communication on the potential dangers of BPA, apparently to the point of conducting a seriously flawed study. There is a lot of information out there about the potentially harmful effects of this product, which is creating a lot of public concern. It is the FDA's responsibility to protect our health with accurate studies and to communicate with the public in a frank and frequent manner. It appears that the FDA has failed to do so. I am considering legislative options on this issue.\"\"                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1303796e-0cca-470f-8dd4-1b03930463f7,\"PREVENTING A PUBLIC TRANSIT CRISIS: SENATORS CALL ON TREASURY TO STOP LOOMING FISCAL DISASTER FOR TRANSIT AGENCIES\n                    \n                            AIG's problems have allowed banks to potentially demand billions from transit agencies\n                    \n                      October 28, 2008\n                     WASHINGTON - Today, U.S. Senator Robert Menendez, along with Senators Richard Durbin (D-IL), Frank Lautenberg (D-NJ) and Barbara Boxer (D-CA) are calling on Treasury Secretary Henry Paulson and Federal Reserve Chairman Ben Bernanke to prevent a potentially crippling financial situation that transit agencies are facing as a result of the credit crisis. The collapse of insurance giant AIG has caused deals between banks and transit agencies to fall apart, allowing banks to demand billions of dollars from the agencies. \"\"Any reduction or degradation in transit service could mean that our constituents will struggle getting to work or school, squeezing our state economies and family budgets even further,\"\" wrote the senators. \"\"This is a time when we should encourage mass transit use and a financial blow to our transit agencies such as this one is a major setback to that effort\"\"The senators, who represent states with major public transit systems, called on the Treasury and Federal Reserve to each appoint senior officials to work with the Department of Transportation and large transit agencies in developing a solution that will avoid a fiscal crisis for the agencies. The issue stems from leasing arrangements between transit agencies and banks in which the banks purchased transit infrastructure and leased it back to the agencies. AIG served as an intermediary in these transactions. The collapse of AIG left its credit rating in tatters, which banks have exploited to invalidate the deals and demand full payment up front from the transit agencies.Text of letter:October 24, 2008The Honorable Henry PaulsonSecretary of the TreasuryU.S. Department of the Treasury1500 Pennsylvania Avenue, NWWashington, DC 20220                                                                        The Honorable Ben BernankeFederal Reserve ChairmanFederal Reserve SystemTwentieth and Constitution Avenue, NWWashington, DC 20551Dear Secretary Paulson and Chairman Bernanke:We are seeking your assistance to address a critical issue facing many of the nation's large public transit agencies in the wake of the current financial crisis.  As discussed in yesterday's hearing before the Senate Committee on Banking, Housing and Urban Affairs, if the Treasury and Federal Reserve do not act quickly, public transit agencies around the nation could become financially crippled and several banks could enjoy unjustified windfalls.As you may know, from the late 1980's to 2003 mass transit agencies (and other public agencies) entered into Lease-In/Lease-Out and Sale-in/Lease Out (LILO/SILO) Transactions with several banks.  The transactions provided these agencies with much needed resources for capital intensive projects and the banks were able to gain tax benefits.  In 2003, the tax benefits from these transactions were prohibited.  AIG was used as a go between in many of these transactions.  Now the banks that are parties to these transactions are using AIG's credit downgrading to terminate these transactions in terms favorable to them.   As a result, the banks may have the opportunity to gain 100 percent of the tax benefits which have been disallowed, and in turn devastate transit agencies.  Any reduction or degradation in transit service could mean that our constituents will struggle getting to work or school, squeezing our state economies and family budgets even further. This is a time when we should encourage mass transit use and a financial blow to our transit agencies such as this one is a major setback to that effort. We believe such dire consequences can be avoided without significant cost or risk to the bailout program and we urge you to take measures to address this critical issue.  In particular, we ask you to immediately delegate a senior Treasury and a senior Federal Reserve official to work with the Department of Transportation and a small number of the large transit agencies to develop a solution to this pressing problem thus avoiding a financial catastrophe for those least able to pay.Thank you in advance for your consideration.Sincerely,ROBERT MENENDEZ                                                                         RICHARD J. DURBINUnited State Senator                                                                                     United State SenatorFRANK R. LAUTENBERG                                                                    BARBARA BOXERUnited States Senator                                                                                   United States Senator                                                                   # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=585dc84c-96a8-458d-bdae-3368e382b43c,\"SCHUMER, REED & MENENDEZ URGE TREASURY TO SET LENDING GOALS FOR BANKS RECEIVING CAPITAL INJECTIONS\n                    \n                            Senators Express Concern Based On Reports That Participating Banks May Hoard Cash from $700B Rescue Plan Rather Than Using It To Loosen Credit MarketsIn Letter To Paulson and Kashkari, Senators Say Treasury Should Propose Lending Goals Based On Activity Levels Before Credit Crunch Hit\n                    \n                      October 23, 2008\n                     WASHINGTON, DC—On the eve of Congress' first oversight hearing on the Bush administration's $700 billion economic rescue plan, U.S. Senators Charles E. Schumer (D-NY), Jack Reed (D-RI) and Robert Menendez (D-NJ) demanded that Treasury officials push banks receiving capital injections to use the funds to restore their lending activities to previous levels.Senator Schumer said: \"\"This plan will only be effective if these funds are used to increase lending by banks, and it is Treasury's obligation to ensure that. The last thing these banks should be doing is stuffing this money under the proverbial mattress.\"\"Senator Reed said: \"\"We need to ensure that taxpayers are protected and that Treasury is using this money wisely.  Complementary efforts to assist homeowners as well as financial markets will increase our chances for success, and hopefully accelerate economic recovery.\"\"Senator Menendez said: \"\"Banks must understand that these funds aren't a gift -- people and businesses on Main Street are counting on them to use this capital to free up lending, prevent foreclosures and stimulate the economy. If used correctly, they will help small businesses stay open and keep their employees on the payroll, students pay for college, families get auto loans and homeowners modify mortgages. The Treasury should be ensuring that this is part of the deal.\"\"Last week, some executives from the nine financial institutions initially tapped to participate in the government's equity-purchase plan signaled publicly for the first time that they may not fulfill the main goal of the Treasury program, which was to increase lending activities in order to unfreeze the credit markets. In published comments last week, U.S. Comptroller of the Currency John Dugan admitted that the capital injections planned by the government come with no requirements that banks use the funds to increase lending. But Dugan did note it was in their \"\"economic interest\"\" to do so. In their letter, Schumer, Reed and Menendez urged Treasury officials to make this preference explicit by issuing guidelines for the use of funds received through capital injections by the government. The senators suggested that lending goals be set by Treasury, adding that they could be based on each participating bank's previous lending levels.The letter also urged Treasury to specify guidelines on the types of lending from which participating banks should refrain; executive compensation; and loan modifications for troubled borrowers.A copy of the letter from Schumer, Reed and Menendez appears below.October 22, 2008Henry M. Paulson Jr.                                        Neel KashkariSecretary                                                          Assistant Secretary for Financial Stability Department of the Treasury                               Department of the Treasury1500 Pennsylvania Ave NW                             1500 Pennsylvania Ave NWWashington, DC 20220                                    Washington, DC 20220Dear Secretary Paulson and Assistant Secretary Kashkari,We write to you today regarding the implementation of the Emergency Economic Stabilization Act of 2008 through the Capital Purchase Program announced last week. Although we are supportive of your efforts to restore stability to the financial system through direct capital injections into financial institutions, we are concerned that if the program is not implemented correctly, its effectiveness will be limited. While we recognize the need to encourage participation from financial institutions, there are certain minimum standards regarding the use of the funds, executive compensation, loan modifications and warrants that the institutions should be required to meet. We urge you to issue guidelines or best practices to ensure that the institutions meet minimum standards in five areas. These are: a)    Amount of Lending - The institutions should use this capital to restart lending and begin restoring stability to the credit markets rather than hoarding it. So far, it does not appear that there are standards to assure that banks put this capital to good use in the lending markets. Treasury could suggest goals based on previous lending activity that institutions should aspire to; b)    Types of Lending - The institutions should not be allowed to use this capital to do the types of inappropriate lending or leverage with the exotic instruments that fueled this crisis in the first place. Treasury, in conjunction with the primary regulators, should issue additional guidance for institutions that participate in this programc)    Executive Compensation - The compensation committees have a fair degree of discretion in implementing the Treasury regulations on incentive pay. Treasury should issue guidelines to the compensation committees on this implementation and conduct appropriate oversight to ensure that the regulations are implemented correctly; d)    Loan Modifications - Treasury should promulgate guidelines on loan modifications for institutions participating in the capital purchase program that are modeled on the FDIC's existing loan modification program. This systemic approach will maximize the number of homeowners who are assisted; ande)    Warrants under TARP - As you move forward with the TARP for purchasing troubled assets, warrants should be fully utilized in a manner that ensures the fullest possible protection and risk mitigation for the taxpayer. Responsible institutions should have no difficulty meeting minimum standards in these areas, so the standards should not be a disincentive to participation for any of the institutions that you are seeking to assist. Thank you for your prompt attention to these issues. If you or your staffs have any questions, please don't hesitate to contact us.Sincerely,Charles Schumer                                         Jack Reed                                                 Robert MenendezUnited States Senator                                 United States Senator                                 United States Senator\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=752f8677-4d1c-495a-a2e5-7c379e6a6b64,\"LAUTENBERG, MENENDEZ ANNOUNCE $100KFOR ECONOMIC DEVELOPMENT PROGRAM\n                    \n                            Grant Will Help Fund Rutgers Program to Spur Job Creation, Economic Growth\n                    \n                      October 23, 2008\n                     NEWARK, N.J. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the U.S. Economic Development Administration (EDA) has awarded $100,000 to the Rutgers University Technical Assistance Program (RUTAP).This grant will help fund the first year of Rutgers' three-year University Center program, which is a collaboration between EDA and RUTAP to increase long-term regional competitiveness and economic diversification in New Jersey's most distressed areas. \"\"It is critical that we give businesses and communities struggling in this economic crisis the resources they need to create jobs and continue to grow,\"\" Sen. Lautenberg said.  \"\"These funds will help Rutgers continue its excellent work helping organizations and companies in New Jersey become more competitive and better equipped for a global economy.\"\"            \"\"With 800,000 American jobs lost this year, job creation and competitiveness are perhaps more important than ever,\"\" said Sen. Robert Menendez.  \"\"I am pleased that this funding can help New Jersey communities where it can really make a difference in people's lives.  Ensuring that businesses, organizations and individuals are up to date with new technologies helps them keep pace in a global economy.\"\"RUTAP provides technical assistance and research and development tools for non-profit groups and community based organizations to increase productivity, stimulate innovation and create sustainable jobs in economically distressed regions.  The program aims to provide access to specialized expertise and training in the use of the Internet and other new technologies for the expansion of economic growth.Earlier this year, Sens. Lautenberg and Menendez announced another $100,000 grant from the EDA for economic development programs across New Jersey's southern counties.                                                        # # #?\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=13b0c999-0117-40c9-b8f9-8de2666bcb90,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $1 MILLION FOR TRAFFIC SAFETY PROGRAMS IN NEW JERSEY\n                    \n                            Grants Will Help Improve Driver and Passenger Safety\n                    \n                      October 23, 2008\n                     NEWARK, N.J. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the Nation Highway Traffic Safety Administration awarded more than $1 million in federal funds for programs to enhance traffic safety in New Jersey, particularly programs that protect children. \"\"With more and more cars on New Jersey's roads, we need to do all we can to ensure the safety of drivers and passengers,\"\" Sen. Lautenberg said.  \"\"These grants are an important step to make child and traffic safety a priority, and I will continue to fight for funding that makes our roads safer and more secure.\"\" \"\"These federal funds will help make our crowded roadways safer for drivers, passengers and pedestrians,\"\" said Sen. Menendez.  \"\"Our children face a greater risk if not properly secured, and these funds will help make sure parents are not only able to acquire appropriate safety restraints but can also properly install and use them.  With initiatives such as these, we can help drivers protect themselves and their families and increase awareness of the dangers on our roads.\"\"The $1,065,464 in federal funds will be used to implement two traffic safety initiatives:•    $587,556 will be used to improve the accuracy, accessibility and uniformity of state traffic safety information systems; and•    $477,908 to support child passenger safety initiatives, which include the purchase and distribution of child restraints to low-income families, enforcement of child restraint laws and public education and training on the proper use and installation of child restraints.Last month, Sens. Lautenberg and Menendez also announced more than $450,000 in federal grants for upgrades to roads in Bergen and Essex Counties as part of the ongoing effort to make New Jersey's roads and highways safer and to reduce traffic for the state's drivers.                                                           # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3d85768b-ad39-47fb-9960-535c15ab4309,\"IN REACTION TO BUSH SPEECH ON FOREIGN ASSISTANCE, SEN. MENENDEZ LAMENTS CUT IN ASSISTANCE TO LATIN AMERICA AND THE CARIBBEAN\n                    \n                            Bush administration requested a $37 million reduction in core development accounts for Latin American and Caribbean for 2009.Menendez chairs subcommittee in charge of foreign assistance.\n                    \n                      October 23, 2008\n                     WASHINGTON - Today, President Bush delivered a speech at the White House Summit on International Development in which he said the United States must still give foreign assistance to poorer nations despite the U.S.'s current economic struggles. He also applauded his administration's foreign assistance programs for the U.S.'s neighbors in Latin America and the Caribbean.In reaction to the speech, U.S. Senator Robert Menendez, Chairman of the Senate Foreign Relation Committee's Subcommittee on International Development and Foreign Assistance, Economic Affairs, and International Environmental Protection, said that the administration's levels of Latin American and Caribbean assistance have not served U.S. interests in the region.\"\"It would have been helpful for our economic and national security interests had President Bush lived up to the sentiment he voiced today while he had the power to do something over the past eight years,\"\" said Senator Menendez. \"\"When I look particularly at areas like Latin America and the Caribbean - areas where anti-American dictators have been permitted to fill the void left by the Bush administration's disengagement - I see huge opportunities that were squandered. \"\"Foreign assistance to Latin America and the Caribbean is more than a good neighbor policy. It benefits our country by helping create a more secure hemisphere, a wealthier and more receptive marketplace for our goods and businesses, a reduction in the flow of undocumented workers and a reduction in drugs on our streets. In a time where rhetoric in the region comes with consequences, we should make sure that our rhetoric matches the facts, and in the case of assistance for helping the poor in the Western Hemisphere, the President's rhetoric doesn't match the facts.\"\"Speaking specifically about foreign assistance to Latin America and the Caribbean under his administration, Bush said: \"\"I believe it's in our interest that we have a good, sound neighborhood. It's in our interest [that] our neighborhood prosper and get along… Since I took office -- with support from the Congress -- the United States has provided nearly $15 billion to the region with a special focus on helping the poor.\"\"  A closer look at the numbers reveals that the President in fact requested a $37 million decrease in the core development accounts in 2009 compared to 2008 estimated levels. Despite the president's claims, only 39 percent of all the funds requested are focused on helping the poor.                                                                 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=58767630-9cae-4a47-b6bd-cb18cf81c8a6,\"WITH JET FUEL PRICES DROPPING, SEN. MENENDEZ CALLS ON AIRLINE CEOs TO ROLL BACK FUEL SURCHARGES, EXTRA FEES\n                    \n                            Menendez also urges airlines to make base fares more reflective of total cost. Jet fuel price indicator was $4.34 per gallon in July, $2.34 per gallon last week.\n                    \n                      October 20, 2008\n                     NEWARK, NJ - U.S. Senator Robert Menendez (D-NJ) today pressed airlines on the fuel surcharges and extra costs for flying that they have implemented over the Spring and Summer. In a letter to the CEOs of the major U.S. air carriers, Senator Menendez pointed out that airlines cited exorbitant oil and jet fuel prices as the reason for surcharges and fees, such as those for checked baggage, but that the cost of jet fuel has dropped precipitously over the past few months. The spot price for Kerosene-Type Jet Fuel in New York Harbor - a major jet fuel price indicator - has fallen from $4.34 per gallon in early July to $2.34 per gallon last week.. Senator Menendez urged the CEOs to roll back the extra charges and to make the base fares that consumers see online more reflective of the actual price they will pay to fly.\"\"It seems to me that the extra costs of flying imposed over the summer are less relevant as fuel prices have declined,\"\" wrote Senator Menendez. \"\"If the price of jet fuel, which reached $4.34 per gallon in July, prompted fare increases and schedule reductions, then it should also spur a roll back of surcharges and fees, with price per gallon having dropped to $2.34 last week. Americans are having a hard enough time keeping up with their bills these days. To keep many of them priced out of flying altogether is not only devastating to many families, it also slows the engine of commerce that helps propel our economy.\"\"\"\"I urge you to pass the savings from lower jet fuel prices on to the American public by rolling back fuel surcharges and extra fees. If you tell the public that you need long-term higher prices to survive, I urge you at the very least to do it directly through fares rather than a collection of confusing and hidden fees.\"\"Senator Menendez sent the letter individually to each of the following major airline CEOs:Robert Fornaro, CEO, AirTranWilliam S. Ayer, President and CEO, Alaska AirlinesGerard J. Arpey, Chairman, President, and CEO, American AirlinesLarry Kellner, Chairman and CEO, Continental AirlinesRichard H. Anderson, CEO, Delta AirlinesSean Menke, President and CEO, Frontier AirlinesDavid Barger, President and CEO, Jet Blue AirwaysDouglas M. Steenland, President and CEO, Northwest AirlinesGary Kelly, CEO, Southwest AirlinesGlenn Tilton, Chairman, President and CEO, United AirlinesDoug Parker, Chairman and CEO, US AirwaysBelow is text of the letter:October 20, 2008Dear [Airline CEO]:            We all know that these are difficult economic times across the board - for airline companies, for the average family of four who wants to visit relatives this coming holiday season and for most everyone in between. Perhaps the only silver lining from the recent economic turmoil has been the plummeting price of oil, which now hovers around $70 per barrel, its lowest level in more than a year. As a result, motorists have seen gasoline prices at the pump continue to fall, and along with them has come down the price of the jet fuel that your industry relies upon.             I understand the budgetary pressures that your companies have been feeling, particularly when oil was close to $150 per barrel in June and July. We were told repeatedly how the surcharges, fee increases and flight reductions you implemented at the time were necessary in the light of sky high fuel prices.             The situation with regard to oil and fuel prices has changed since then. Between July 2nd and last week, the spot price of Kerosene-Type Jet Fuel in the United States fell by $2.00 (46 percent), to its lowest level in a year. Commodities prices are still falling, and jet fuel should continue to follow the continued decline in the prices of crude oil and gasoline.             Such a precipitous decrease in your fuel expenses has no doubt helped your bottom line. Just last week, it was reported that airlines have benefitted in the markets because of the higher airfares they are charging and the lower price they pay for fuel (\"\"Southwest, Continental Gain as Fares Rise, Fuel Falls,\"\" Bloomberg News, October 16, 2008).            As we all know, American families are struggling, dealing with job losses, falling home values, and a financial market that is erasing their retirement savings. It is crucial that you pass on the savings seen from falling fuel prices as quickly as possible. Now is not the time for Americans to be priced out of traveling - that is simply unfair to families who want to spend the holidays with their loved ones and it is bad for our economy in need of a boost.            To this point, the only rollback in fees or surcharges that I am aware of is the discontinuation of fuel surcharges on some flights between the U.S. and Europe. That represents only a fraction of the flights Americans take and only a fraction of the extra money Americans have been shelling out to fly. All domestic and many international surcharges remain in effect. Checked baggage fees, even on the first bag, remain in effect. Fee increases, such as those on unsupervised minors, pets and overweight baggage, remain in effect. Some airlines charge fees for flying standby, for travelling with an infant on their lap, or even for choosing a seat in advance. There has been no indication that these will be reduced or lifted at anytime in the foreseeable future, regardless of how low fuel costs go.            As such, I would like to know your plans for these new and increased fees and surcharges.  Are they intended to be permanent? At what price for fuel will you roll them back? Can Americans expect relief anytime soon?             This is a larger issue than simply high travel costs. The plethora of fees and surcharges one must pay to fly distorts the marketplace and is fundamentally anti-consumer. The flying public should be able to directly compare flights and airports without having to sift through a pile of excess \"\"fees\"\".  People want a simple number so they know what they will be paying, not a complex formula that makes it difficult to make an informed choice.            It seems to me that the extra costs of flying imposed over the summer are less relevant as fuel prices have declined. If the price of jet fuel, which reached $4.34 per gallon in July, prompted fare increases and schedule reductions, then it should also spur a roll back of surcharges and fees, as the price per gallon dropped to $2.34 last week. Americans are having a hard enough time keeping up with their bills these days. To keep many of them priced out of flying altogether is not only devastating to many families, it also slows the engine of commerce that helps propel our economy. I urge you to pass the savings from lower jet fuel prices on to the American public by rolling back fuel surcharges and extra fees. If you tell the public that you need long-term higher prices to survive, I urge you at the very least to do it directly through fares rather than a collection of confusing and hidden fees.            I thank you for your consideration and look forward to your response.                                                                                    Sincerely,                                                                                    ROBERT MENENDEZ                                                                                    United States Senator                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2ad05347-4340-495b-84ae-5bd154353f0f,\"LAUTENBERG, MENENDEZ ANNOUNCE NEARLY $4 MILLION FOR CLIMATE RESEARCHPROGRAMS AT PRINCETON\n                    \n                      October 17, 2008\n                     NEWARK, N.J. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the National Oceanic & Atmospheric Administration (NOAA) has awarded more than $4 million in federal funds to Princeton University for its climate research programs.  The funds will be used to help predict future climate trends the impacts of those trends.\"\"Our changing climate poses a real environmental, economic and national security threat to the country.  Understanding these changes in our climate is a vital part of taking real action to reverse global warming.  Princeton University has a history of doing innovate climate research.  These funds will keep the university—and New Jersey—leading the way,\"\" Sen. Lautenberg said.Sen. Menendez said, \"\"Our planet is in peril, and that not only has affected our quality of life, our wallets and our security, but it will even more adversely affect the lives of our children.  These funds will help Princeton stay at the forefront of the research that will help us leave a more stable planet to future generations.\"\"The nearly $4 million in federal money is broken into two separate grants:•    $3,791,921 for Princeton's Cooperative Institute of Climate Science (CICS); and•    $139,485 to improve climate predictions by reducing uncertainties about the amount of carbon dioxide in the atmosphere.The CICS was founded in 2003 to foster research collaborations between Princeton University and the Geophysical Fluid Dynamics Laboratory (GFDL) at NOAA.  The goal of the CICS is to be a world leader in understanding and predicting climate and the relationship between people and the environment, and in training the next generation to deal with these issues.Since May, Sens. Lautenberg and Menendez have announced more than $5.7 million for environmental, coastal and ocean research in New Jersey.                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c8154758-2e44-4e0c-9b6c-5deb9721f52e,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $2.3 MILLION FOR NEWARK, TETERBORO AIRPORTS\n                    \n                            Grants Will Help Improve Runway Safety and Protect Travelers at the Airports\n                    \n                      October 16, 2008\n                     NEWARK, N.J. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the U.S. Department of Transportation (DOT) has awarded the Port Authority of New York and New Jersey (PANYNJ) more than $2.3 million in federal funds for upgrades at Newark Liberty International and Teterboro Airports.\"\"We need to make New Jersey's airports as safe, modern and reliable as possible so travelers get to their destinations safely—and on time,\"\" Sen. Lautenberg said.  \"\"These funds will help improve and modernize Newark Liberty and Teterboro so they can meet future travel and public safety demands.\"\"Sen. Menendez said, \"\"The flying public has a high level of frustration and concern about our air traffic system, which makes these airport modernizations particularly timely.  The improvements at Newark and Teterboro airports will help pave the way toward safe and more efficient travel for New Jersey families.\"\"In total, PANYNJ will receive three separate grants totaling $2,349,405:•    Newark Liberty International Airport will receive $1,996,011 to rehabilitate the pavement on one of its three runways (Runway 11/29); and•    Teterboro Airport will receive one grant of $258,394 to rehabilitate the pavement on Taxiway A.  Another grant of $95,000 will be used to conduct a Safety Management System (SMS) study, which helps airports detect and correct safety problems to prevent aircraft accidents or incidents.Sen. Lautenberg is a leader on aviation safety in Congress.  In April, he introduced a bill that would require the Federal Aviation Administration (FAA) to develop and coordinate a national strategic runway safety plan.  It would also authorize federal spending on technology and infrastructure improvements, such as modern surface detection systems and lower-cost tools like runway status lights.  The bill, the Runway Safety Improvement Act of 2008 (S. 2941), reinforces a 2005 law authored by Lautenberg that mandates runway end buffer zone protections at the nation's major airports by 2015.Earlier this year, Sens. Lautenberg and Menendez announced $400 million in federal funding for new baggage screening systems at the major New Jersey/New York area airports, including Newark Liberty.  Since May, the New Jersey Senators have announced more than $17 million for upgrades and repairs at airports across the state.                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6f43f08d-a516-4fd0-ab71-fbbe1c52ef1c,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN$2.5 MILLION FOR COASTAL MANAGEMENT RESEARCH\n                    \n                      October 15, 2008\n                     NEWARK, N.J. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the National Oceanic & Atmospheric Administration (NOAA) has awarded more than $2.5 million in federal funds to the New Jersey Department of Environmental Protection (NJDEP) for its Coastal Management Program.\"\"These funds will help ensure that New Jersey's Coastal Management Program will continue to provide environmental, educational and safety benefits to our coastal communities,\"\" Sen. Lautenberg said.  \"\"We need to continue supporting New Jersey's history of innovative coastal research and this grant will further that effort.\"\"Sen. Menendez said, \"\"The Jersey Shore is a treasure of the Garden State, both environmentally and economically.  This type of investment into research and protection is important to help our shore and the communities along it continue to thrive.\"\"The $2,545,000 grant will help NJDEP administer the Coastal Management Program and provide support for the review of proposed development and enforcement on coastal lands.  The funds will be used to support the Coastal and Ocean Protection Council, which was established this year to prevent the depletion of New Jersey's marine resources.  Funds will also be used to:•    Improve habitat management in the Delaware River estuary;•    Map potential storm damage and rising sea levels; and•    Expand and evaluate the state's Clean Marina Program, which helps prevent harmful environmental practices through education and outreach to marina owners and boaters.The Coastal Management Program oversees New Jersey's coastal area, which includes portions of eight counties and 126 municipalities.  The program was established to ensure that coastal resources are preserved to enhance the environment and economy of coastal communities.Since May, Sens. Lautenberg and Menendez have announced more than $5.7 million for environmental, coastal and ocean research in New Jersey.                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f471bb1b-d7d3-470a-9406-7a8e9d55a82b,\"NY & NJ SENATORS DECRY BUSH ADMINISTRATION PLAN TO PROCEED WITH ILLEGAL AIRPORT AUCTIONS\n                    \n                            Scheme Could Lead to Higher Fares and Does Nothing to Ease Congestion\n                    \n                      October 9, 2008\n                     WASHINGTON, DC - The U.S. Senators from New York and New Jersey, Hillary Rodham Clinton, Charles E. Schumer, Frank Lautenberg, and Robert Menendez today decried the decision by the Bush Administration to go ahead with its scheme to auction off arrival and departure slots at the New York metropolitan region's airports despite a legal finding by the Government Accountability Office (GAO) that such a move would be illegal. In a letter to President Bush, the four senators underscored their opposition to the plan and urged the administration to reverse course.\"\"This unlawful, untried and untested plan put forward by the USDOT will have drastic consequences for the travelers and residents of New Jersey and New York,\"\" the senators wrote to the President. \"\"We are disappointed that instead of working with the Port Authority, the DOT has instead chosen to force clearly unwanted actions—such as this slot auction—onto our local airports, in what appears to be an economic experiment pushed by ideologues within your Administration. We ask that you immediately direct your Secretary of Transportation to cease any and all actions to implement an auction system at New York/New Jersey airports.\"\"In a legal opinion released earlier this month, the GAO concluded that the Federal Aviation Administration (FAA), \"\"lacks authority to auction arrival and departure slots, and thus also lacks authority to retain and use auction proceeds.\"\" GAO said it would challenge the FAA if it sought to proceed with the plan. The full legal opinion is available here: http://www.clinton.senate.gov/documents/news/09_31_08_GAO.pdf.The New York and New Jersey senators have opposed the auction plan as counterproductive and potentially very costly to consumers. Instead, the senators have called on the FAA to modernize its equipment, adequately staff its control towers, and expedite new technology to increase airport capacity.Last year the senators secured into law two measures to reduce flight delays and ease congestion in New York/New Jersey airspace. One provision required the federal government to provide a plan to Congress to reduce flight delays in the region, the nation's most densely congested airspace. The other measure required the GAO to investigate the FAA's Airspace Redesign Plan, as well as the effectiveness of a variety of approaches used nationwide to reduce flight delays, including the auction plan.The text of the senators' letter to President Bush follows.October 9, 2008The Honorable George W. BushThe White HouseWashington, D.C. 20500Dear Mr. President:We are deeply concerned about the latest action by the U.S. Department of Transportation (USDOT), which has chosen to disregard the Congress, the Government Accountability Office (GAO) and the rule of law to implement an auction system at New York area airports.  An auction system will lead to higher fares, as airlines paying for takeoff and landing rights through this non-traditional process will be forced to pass along any additional costs to consumers in the form of higher fares.  Specifically, such a system will likely make flights at reasonable times during the day entirely too expensive for middle class families.  Further, the decision by the USDOT is without authority from Congress.  A recent report by the Government Accountability Office found USDOT to be lacking authority to conduct the auction plan. Congress did not give the USDOT unbridled property rights to our nation's air space, nor did Congress give the USDOT authority to assign flights by auction.  This unlawful, untried and untested plan put forward by the USDOT will have drastic consequences for the travelers and residents of New Jersey and New York.The USDOT's plan neglects entirely the regional planning undertaken by the bi-state Port Authority of New York and New Jersey, one of the world's largest transportation agencies.  This agency has a long history of hands-on operations of four of the busiest airports in the entire country.  Its coordinated planning processes reflect the local needs of our state and region and its management and experience should be embraced by the FAA, not dismissed.  We are disappointed that instead of working with the Port Authority, the DOT has instead chosen to force clearly unwanted actions - such as this slot auction - onto our local airports, in what appears to be an economic experiment pushed by ideologues within your Administration.In light of these concerns, we ask that you immediately direct your Secretary of Transportation to cease any and all actions to implement an auction system at New York/New Jersey airports.  We request that you direct the Secretary to work with the Port Authority and other stakeholders to implement policies that will reduce flight delays and not unnecessarily raise airfares for travelers in our region.Sincerely,Hillary Rodham Clinton                                  Charles E. SchumerFrank Lautenberg                                        Robert Menendez                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4aa7a781-f79e-4bc6-a46a-b74885da2c91,\"LESS THAN A WEEK LEFT TO CLAIM TAX REBATE CHECK, SEN. MENENDEZ REMINDS NEW JERSEYANS\n                    \n                            As of July, 157,000 resident had left $47 million unclaimed. October 15 - Wednesday - is deadline to file a tax return for this year\n                    \n                      October 9, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) is reminding New Jerseyans who are eligible for a tax rebate check that this coming Wednesday, October 15, is the deadline to claim it this year. At the end of July, it was reported an estimated 157,000 New Jerseyans had yet to file a tax return, which would make them automatically eligible for a rebate check made available as part of the economic stumulus package passed earlier this year. A total of $47 million had been unclaimed by New Jersey residents. Nearly 70 percent (more than 108,000) of those eligible who had yet to file were over the age of 65 - fixed-income seniors and disabled veterans are not required to file an annual income tax return and may have not realized that they could receive a rebate check if they filed a form this year. Senator Menendez was part of the effort in the Senate to include fixed-income seniors and disabled veterans in the tax rebate program.\"\"Many in our state and across the country are struggling to keep up with their daily expenses in this economy, and I want them to be able to take advantage of these rebates,\"\" said Senator Menendez. \"\"Many New Jerseyans who have yet to claim their checks aren't normally required to file tax returns, so it's important to get the word out that the process to claim their checks is simple. Now more than ever, these tax rebates are necessary for those who are struggling and for our economy.\"\"Senator Menendez has been working to spread the word about the unclaimed checks since it was reported that so many checks had gone unclaimed in New Jersey. Most recently, he has joined AARP for two telephone town hall meetings reaching tens of thousands of New Jersey seniors and has appeared at a local senior center for a news conference publicizing the deadline.To receive a rebate check, those eligible only have to file a standard 1040A tax return form - known as the short form. Rebates are at least $300 and up to $600 per individual, and more for families. Eligibility is based on at least $3,000 in qualifying income from, or in combination with, Social Security benefits, Veterans Affairs benefits, Railroad Retirement benefits and earned income. Supplemental Security Income (SSI) does not count as qualifying income for the stimulus payment. A short form is available on the web at http://menendez.senate.gov/ or http://www.irs.gov/pub/irs-pdf/k1040a3.pdf or by calling Senator Menendez's office at 973-645-3030 (Newark) or 856-757-5353 (Barrington). # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=62c301ac-931f-4505-86b4-69a49791003e,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $10 MILLION FOR TRANSPORTATION IMPROVEMENTS IN RIDGEWOOD\n                    \n                            Grants Will Help Improve Access and Safety at Ridgewood Station, Purchase New Vehicle for Valley Hospital\n                    \n                      October 7, 2008\n                     NEWARK, N.J. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the U.S. Department of Transportation (USDOT) has awarded New Jersey Transit more than $10 million in federal funds for transportation upgrades in Ridgewood.  The funds will be used to make improvements at the Ridgewood Intermodal Station and to purchase a new bus for Valley Hospital. \"\"With record number of passengers traveling by train, we must continue to upgrade our stations so all travelers have easy access to the train and are able to get to destinations safely, comfortably and on time,\"\" Sen. Lautenberg said.  \"\"These funds go a long way in the effort to modernize our public transit systems, giving commuters options, helping keep cars off the road and reducing our reliance on oil.\"\"\"\"These timely transportation improvements will help encourage area residents to use mass transit, which aids in the conservation of energy and protects their pocketbooks in these tough economic times,\"\" said Sen. Menendez.  \"\"I am pleased that a substantial amount of this funding will be used to enhance the lives of disabled New Jerseyans - vital members of our society who deserve easy access to various transportation options.\"\"NJ Transit will use $74,250 in funds to purchase a 13-passenger bus for Valley Hospital patients.  The bus will be lift equipped and handicap accessible.  NJ Transit will also receive two separate grants totaling 10,376,232 as part of the major upgrades project at Ridgewood Station.  Improvements to the station include:•    Upgrading and raising passenger platforms to meet disability access standards required by the Americans with Disabilities Act;•    Installing two elevators to provide access to the inbound and center platforms;•    Widening the center platform, including relocation of train tracks;•    Installing new lamp posts, benches, PA speakers, cameras and station signs on the platforms and station canopies; and•    Modifying the station's interior by widening doorways and making the bathrooms wheelchair accessible.Sens. Lautenberg and Menendez have long supported funding for New Jersey to improve its public transportation systems.  Last month, the New Jersey Senators announced more than $2.9 million for the purchases of new buses in Burlington County, Lakewood and Atlantic City.  Earlier this year, they announced three separate grants totaling more than $5.2 million for improvements at Newark Penn, Metropark and Morristown Stations.                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4ae78cb0-9c4e-473a-804b-27897f693aad,\"ECONOMIC RESCUE PLAN PASSED INTO LAW, SEN. MENENDEZ REACTS\n                    \n                            Member of Banking Committee previously voted in favor of legislation in the Senate\n                    \n                      October 3, 2008\n                     WASHINGTON - Today, the U.S. House of Representatives gave final approval to the rescue plan meant to respond to the current economic crisis. U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, voted in favor of the plan in the Senate on Wednesday, and today he released the following statement:\"\"This was not about Wall Street, it was about keeping small businesses running, keeping people in their jobs, and making sure loans for a car, an education or a home are available. Nobody in Congress is happy about the dismal position our economy is in or the distasteful choices that we have been forced to make, but doing nothing was not an option. We were able to turn the Bush administration's original unacceptable blank check for Wall Street into a plan that focuses on middle class taxpayers. The economy will not be revived overnight, but it now has the opportunity to stay afloat and avoid a catastrophic Main Street meltdown, paving the way for recovery.\"\"We must now look toward the policies that will prevent another meltdown and help spur the economy. Those will include new regulations to institute accountability in our financial systems. We also need a new economic stimulus package, which I believe should include support for small businesses, ready-to-go infrastructure projects and an unemployment insurance extension, to help create new jobs and give a hand to those who have recently lost jobs. I will continue to pressure for these additional and necessary actions.\"\"                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4078cbb1-03a6-48ba-a4ed-27f18a356830,\"SEN. MENENDEZ APPLAUDS PASSAGE OF LEGISLATION TO BOLSTER AMTRAK, IMPROVE RAIL SAFETY\n                    \n                      October 1, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today applauded the Senate passage of legislation that will increase federal support for Amtrak and will help improve rail safety. Support for Amtrak also aids NJ Transit, which relies on Amtrak infrastructure. Senator Menendez voted in favor of the bill, which passed by a 74-24 vote.\"\"Rail travel is, in many ways, the lifeblood of our state and its economy,\"\" said Senator Menendez. \"\"Perhaps never has that been truer than now in this time of high gas prices, high air fares and maddening congestion on the roads. Rail is how many of us get to work and travel up and down the east coast for business or personal reasons. It also provides a vital transportation outlet in times of emergency, as we can all remember when aviation was shut down following the September 11th attacks.\"\"In New Jersey, we know the importance of Amtrak, but for too long, it has had to scrape by and continue operations on a yearly basis without adequate funds to maintain the rail system over the long haul. Amtrak itself is a vital mode of transportation for New Jerseyans, and because NJ Transit uses Amtrak's lines, it is also highly important to New Jersey commuters.\"\"In addition, the tragic, deadly commuter train crash in Los Angeles earlier this month is a sobering reminder that there is work to do to ensure that our rail systems are as safe as possible. With this long overdue investment in Amtrak and in the programs that will help protect those who commute and travel by rail, we help keep transportation in New Jersey flowing and the economy running. I applaud my partner in the Senate for New Jersey, Senator Lautenberg -- he is a champion for our rail system, he has been a driving force for this legislation, and he is delivering yet another important accomplishment for our state.\"\"The portion of the bill for Amtrak contains $13 billion for provisions that include:Funding for Amtrak's operations,    Amtrak capital improvement grants and a new state capital grant program,    Operational reforms to reduce operating costs by up to 40 percent,    Repairs and improved governance for the Northeast Corridor, and    Improved rail security.The portion focused on rail safety will help deploy modern safety technology, ensure that train crews and signal employees are not overworked to a level that affects their performance and would enhance the Federal Railroad Authority's ability to enforce railroad safety standards, among other provisions.                                                                # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=316d07bd-a37a-4382-b3a5-5093cd05d5aa,\"SEN. MENENDEZ SPEAKS ON SENATE FLOOR ABOUT ECONOMIC RESCUE PACKAGE: \"\"DOING NOTHING IS NOT AN OPTION\"\"\n                    \n                      October 1, 2008\n                     WASHINGTON - As the U.S. Senate prepares to vote on the economic rescue package, Senator Robert Menendez (D-NJ), a member of the Senate Banking Committee, spoke in favor of the legislation on the Senate floor this afternoon.Excerpt of Menendez's remarks:\"\"As we all know, we're in an economic crisis, and doing nothing is not an option.  If we don't get credit flowing again, businesses won't be able to operate, people in our neighborhoods will lose their jobs, and getting a loan for a car, an education or a home will become increasingly difficult, if not impossible. The American Dream itself is facing one of the greatest risks in recent history. \"\"What we have before us is an economic stabilization plan. It's not perfect. But it will help protect and create jobs by restoring stability and confidence to our economy.\"\"We've taken the plan the Administration sent us, rejected it and reworked it. George Bush first sent us a plan with no accountability, a plan where the idea of checks and balances was: We write the check, and they fill in the balance. But we've changed that plan, made vast improvements, and put taxpayers first.\"\"Full text of Menendez's remarks, as prepared for delivery:M. President,As we all know, we're in an economic crisis, and doing nothing is not an option.  If we don't get credit flowing again, businesses won't be able to operate, people in our neighborhoods will lose their jobs, and getting a loan for a car, an education or a home will become increasingly difficult, if not impossible. The American Dream itself is facing one of the greatest risks in recent history. What we have before us is an economic stabilization plan. It's not perfect. But it will help protect and create jobs, by restoring stability and confidence to our economy.We've taken the plan the Administration sent us, rejected it and reworked it.George Bush first sent us a plan with no accountability, a plan where the idea of checks and balances was: We write the check, and they fill in the balance.But we've changed that plan, made vast improvements, and put taxpayers first.The plan provides for oversight and accountability, with an oversight board and a special inspector general.This plan makes sure there's Congressional review and approval for any funding above $350 billion.In this plan, taxpayers will be treated like investors. If we take on a risk, we will be given warrants—we'll be the equivalent of a shareholder—given a stake in any future profit that might lie ahead for that company. If we step in during the decline, taxpayers must be allowed to share in the profit.So the plan is structured to reward taxpayers with profits while protecting them from losses.This plan says there will be no more golden parachutes. The people who led us into this mess cannot be rewarded for failure.Besides strengthening our economy's foundation, it creates jobs, provides relief for struggling homeowners and will help small businesses access credit—the small businesses that create 75% of America's jobs.Tonight's vote also provides tax relief for the middle class, by patching the AMT.It pushes for loan modifications to help struggling homeowners stay in their homes, and stop property values from falling in our neighborhoods.And this vote tonight invests in American energy, to drive down gas prices, and create American jobs that can't be outsourced.This plan isn't perfect—but it is necessary.We still have a long way to go toward tackling the root of this crisis, which is the housing market. I'd like to see us set the goal of saving at least 1 million families from foreclosure.And we still have a long way to go to establish a strong regulatory enforcement that I have called for in the past that prevents the kinds of abuses that got us into this situation in the first place.But again, doing nothing is not an option.  Jobs are on the line. People's cars, houses and educations are on the line. And those who would reject this plan tonight out of ideology will be punishing not the CEOs but hundreds of thousands of Americans who will lose their jobs.M. President,I'm going to heed the call of Senator Obama. It is time for us to come together and act in the best interests of the country.Clearly, we're experiencing unprecedented times.  I along with some of my colleagues warned many times in the past about the gathering specter that irresponsible lending posed, but were dismissed as alarmists.  This is one instance where I wish I had been wrong.But tonight is not about looking back and pointing fingers.  Tonight is about looking forward, and preventing even further damage to our economy, before it really is too late. Tonight is about keeping the American Dream stable enough, so we can make a solid promise for tomorrow. And that's why I will be voting \"\"Yes.\"\"                                                                 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d9c34a4e-9bdb-4db5-b1d6-ecf515fd416f,\"MENENDEZ, LAUTENBERG APPLAUD $64 MILLION FOR NJ COMMUNITIES AFFECTED BY FORECLOSURES\n                    \n                            Funding was included in bill responding to mortgage crisis that the NJ Senators helped pass in July\n                    \n                      September 29, 2008\n                      WASHINGTON - New Jersey's U.S. Senators, Robert Menendez and Frank Lautenberg, today applauded the U.S. Department of Housing and Urban Development's announcement that it will distribute $64 million to New Jersey communities to help minimize the negative effects of the foreclosure crisis. The Senators helped secure the funding for the Community Development Block Grant Program's Neighborhood Stabilization Program as part of the landmark housing bill passed in July in response to the mortgage crisis. The grants will be used to help communities purchase foreclosed homes, land and property, demolish or rehabilitate abandoned property, assist low- and middle-income homebuyers with downpayment or closing costs, and manage the use of vacant land.\"\"Foreclosures don't just affect the New Jersey family that loses its home, they create a ripple effect that brings down property values in the surrounding communities and eventually results in a tsunami that devastates the overall economy,\"\" said Senator Menendez. \"\"With the landmark housing bill we passed, we recognized that addressing the root cause of our economic crisis helps the entire country, from financial markets all the way down to individual New Jersey families. The $64 million for New Jersey communities we helped provide is one part of the overall solution to help families hold on to their homes and to change the direction of our economy.\"\"\"\"It is critical we give the Community Development Block Grant program the resources it needs to provide economic support for communities struggling to recover from this mortgage crisis,\"\" Sen. Lautenberg said.  \"\"These grants go a long way in the effort to rehabilitate neighborhoods and ensure that safe and affordable housing is available during these tough times.  I will continue to fight for grants like these that make sure New Jersey families have a place to call home.\"\"The $64 million will be split between portions for the state government and for certain New Jersey communities:             State                                    Grant Type                                    Recipient                                    Amount                                NJ                                    NSP                                    BERGEN COUNTY                                    $2,096,194.45                                NJ                                    NSP                                    JERSEY CITY                                    $2,153,431.07                                NJ                                    NSP                                    NEW JERSEY STATE PROGRAM                                    $51,470,620.45                                NJ                                    NSP                                    NEWARK                                    $3,406,848.62                                NJ                                    NSP                                    PATERSON                                    $2,266,640.83                                NJ                                    NSP                                    UNION COUNTY                                    $2,601,754.89                                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=459208bc-9106-4747-b730-387338cf9dfb,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $2.9 MILLION FOR SOUTH JERSEY BUS IMPROVEMENTS\n                    \n                            Grants Will Help Burlington County, Lakewood, Atlantic City to Purchase New Vehicles\n                    \n                      September 26, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the U.S. Department of Transportation (USDOT) has awarded New Jersey Transit nearly $3 million in federal funds to improve bus service in the southern part of the state.  NJ Transit will use the funds to purchase new buses in Burlington County, Lakewood and Atlantic City.\"\"Putting these new buses in service gives commuters options, helps keep cars off the road and reduces our reliance on foreign oil,\"\" Sen. Lautenberg said.  \"\"Our communities need to continue to provide accessible and dependable mass transit options for residents, and these grants help achieve that goal.\"\"Sen. Menendez said, \"\"With oil prices sky-high, we need to do all we can to promote mass transit and end our dependence on foreign oil.  Making this investment will help give New Jerseyans reliable, money-saving transportation options.\"\"NJ Transit will receive three separate grants totaling $2,984,481 for the new bus purchases:Burlington County will receive $1,563,989 to purchase 24 new buses for the Burlington County Transportation Service (BCTS) and BurLink service.  In 2006, BCTS, which is the main source of transportation for the county's seniors and disabled residents, carried more than 90,000 passengers;Lakewood will receive $1,172,992 to purchase up to nine new buses that will carry approximately 1,600 passengers a week; andAtlantic City will receive $247,500 to purchase two diesel-powered, 25-passenger buses for the AtlantiCare Regional Medical Center (ARMC).  The new buses will operate seven days a week and run between the Pleasantville Bus Terminal, the Atlantic City Marina area and ARMC.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0c88289d-e471-4f3e-a86c-9624961516a3,\"FOCUSING THE GOVERNMENT ON PUBLIC HEALTH: SEN. MENENDEZ INTRODUCES TWO LEGISLATIVE INITIATIVES\n                    \n                            Bills would help assess and improve the impact government programs and agencies have on public health\n                    \n                      September 26, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) this week introduced two pieces of legislation to improve the relationship between the federal government and public health in the United States. The Health Impact Assessment Act and the Public Health Coordinating Council Act would study, reform and help improve the way in which the federal government understands the impact of its programs on public health and would help the government design programs that avoid negative impacts on public health.\"\"When we talk about public health, we are talking not only about potential injury and illness in our own families, but the collective health of our communities, environment and economy,\"\" said Senator Menendez. \"\"Too often, when a federal program is implemented or when an agency acts, the focus is too narrow and the impact on public health is ignored. We need to give federal agencies, lawmakers and the public better information about how federal programs impact public health and the tools to make sure they can work to avoid harming the public's health.\"\"\"\"Government officials too often make health-related policy decisions without realizing it,\"\" said John Clymer, President of Partnership for Prevention. \"\"Measures related to agriculture, transportation, housing or other areas frequently contain provisions that can either contribute to or prevent chronic disease and health disparities.  It takes more than medicine to protect a community's health, and health impact assessments would help arm our decision-makers with the information they need to avoid causing inadvertent harm.\"\"The Health Impact Assessment Act would do the following:Through two GAO studies, the bill would identify best practices for assessing planning and impact of land use and building design, and social policy on community health.Directs a GAO study to research best practices, standardized tools and models for health impact assessments as a method to promote health and reduce health disparities through social policy process, land use and the built environment.    Directs the GAO to review the positive and negative health consequences of federal policies and programs, and how to consider HIAs for any federally-funded project, at the federal, state or local level.The bill would also create a national clearinghouse and demonstration program to improve the built environment and promote health.The grant program will fund state and local health or planning departments to manage an HIA project in their state or municipality.    The clearinghouse will disseminate best practices, and provide technical assistance and training about the scope and uses of HIAs related to community planning and policy making. The bill would also build CDC capacity to promote the HIA processes by developing guidance for potential health effects of social policy, land use and design, housing, and transportation policy and plans.The Public Health Coordinating Council Act would do the following:It proposes to create a National Public Health Interagency Coordinating Council (NPHICC) to facilitate and strengthen sustained communication and coordination across federal agencies.   All federal agencies and departments with a program related to improving the public's health are included on the council.  The council will recommend strategies to improve interagency collaboration such as:Reviewing existing federal health programs and policies    Assuring efficiency and adequate funding    Sharing information, knowledge and data, and identifying gaps in comparable data and knowledge    Facilitating new partnerships and enhancing networks across federal agencies.                                                                # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=27a63b63-3145-4597-9bf3-22648b9f1f55,\"LAUTENBERG, MENENDEZ, PASCRELL AND SIRES SECURE $430K TO BOOST ESSEX COUNTY JUVENILE JUSTICE PROGRAM\n                    \n                      September 25, 2008\n                     WASHINGTON—U.S. Senators  Frank R. Lautenberg (D-NJ), Robert Menendez (D-NJ) and U.S. Reps. Bill Pascrell, Jr. (D-NJ-08) and Albio Sires (D-NJ-13) today announced that Essex County has been awarded over $429,000 to help reintegrate youthful offenders back into their communities and reduce the rate of recidivism at the county Juvenile Detention Center (JDC).  The New Jersey Senators, along with Pascrell and Sires specifically designated the project funding for Essex County's justice initiative in the 2008 congressional budget. \"\"These funds will help provide juvenile offenders who have served their sentences a safe, secure and productive reentry into the community,\"\" Sen. Lautenberg said.  \"\"Too often, young people released from juvenile detention return to the same influences that got them in trouble in the first place.  Our residents, our economy and our state all benefit from programs like these that break that cycle and teach individuals to make better decisions.\"\"\"\"At a time when our economy is hurting deeply, we need to do all we can to help young people play a productive role in our society,\"\" stated Senator Menendez.  \"\"This funding will go a long way toward preventing juvenile offenders from falling back into a life of crime, and will support the education and training they need to get back on the right track.\"\"\"\"I am proud to have worked with my Congressional colleagues and county officials to secure federal funding that will help address the alarming rate of juvenile detentions in Essex County,\"\" stated Pascrell.  \"\"Juvenile reentry should be utilized as an opportunity to help misguided young people realize they can choose a lifetime of positive opportunities instead of a lifetime of jail sentences.  This grant gives Essex County the tools to provide new hope for troubled young people and improve communities by reducing delinquent behavior.\"\"\"\"I am pleased to have worked with my colleagues in the House to secure funding for the Essex County juvenile justice program,\"\" stated Sires. \"\"Our youth must address numerous pitfalls on a daily basis and I believe that this program will give them an alternative to a better life prior to re-entering the community.\"\"\"\"Literacy and education are the first steps to building a positive and productive adulthood, and we will continue to focus on this area in our Juvenile Detention Center,\"\" said Essex County Executive Joseph N. DiVincenzo, Jr. \"\"We greatly appreciate the help of Senators Menendez and Lautenberg, along with Representatives Pascrell and Sires, in obtaining this funding. Their support will allow us to add to our 8,000 book library, and maintain our position as the only juvenile detention facility in the State to offer a full 6-hour school day. The grant will also enable us to create new alternatives to incarceration, as we work to prepare our youth for the time they leave our facility and rejoin their community,\"\" DiVincenzo added. The target population for the initiative is youths aged 12-17 who are housed in the JDC while awaiting trial or as the result of legal adjudication.  Essex County has identified four key activities to reduce the JDC's 65 percent rate of recidivism and improve the reintegration of juveniles into their communities.  The activities include the assessment of juvenile participants, linkage with literacy and educational resources, the creation of a detailed, individualized reentry-discharge plan and establishment of the Essex County Youth Council (YAC). The Essex County Youth Advisory Council will ensure that young people participate in the process of decision making by contributing their thoughts and insights on county youth programs.  It will reduce the likelihood of a return to delinquent behavior and enable juveniles to engage in constructive positive activities.  Under the program, juveniles will have an opportunity to receive support from the community that will guide them during a transition back into their respective neighborhoods.Nearly 25 percent of all juveniles detained in JDCs in the State of New Jersey are detained in the Essex County JDC, but only 10 percent of all New Jersey residents live in Essex County.                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e0e101d9-0720-4204-8051-49b4a9f05315,\"BUSH MAKES CONTROVERSIAL NOMINATION OF CHENEY AIDE TO ENERGY POST, SENS. MENENDEZ AND SANDERS REACT\n                    \n                            Menendez and Sanders called on Bush to refrain from nomination earlier this month\n                    \n                      September 25, 2008\n                     WASHINGTON - President Bush today officially nominated a controversial aide to Vice President Dick Cheney to a top Department of Energy post. Cheney aide F. Chase Hutto III has a documented history of favoring oil companies and backing big corporations against measures to protect public health, but has now been appointed to the DOE's Assistant Secretary of Energy for Policy and International Affairs position.U.S. Senators Robert Menendez (D-NJ) and Bernie Sanders (I-VT), both members of the Energy and Natural Resources Committee, earlier this month called on Bush to refrain from making the Hutto nomination (http://menendez.senate.gov/newsroom/record.cfm?id=303110&). Today they reacted to the news.\"\"Talk about the fox guarding the henhouse,\"\" said Senator Menendez. \"\"A Cheney aide who represents everything that is wrong with the direction of our energy and environmental policies is now helping lead the Department of Energy. This is highly concerning to those of us who want to end our addiction to oil, create jobs, lower energy prices, and reduce global warming pollution. It is disheartening, but I guess it is not surprising when you have two oil men in the White House.\"\"Sanders said: \"\"Even in its final days, the Bush administration continues to send nominees to the Hill who represent its failed, pro-corporate, anti-environmental policies.  It is my hope that the Senate would take no action on Hutto's nomination.  If it were to move, I would certainly put a hold on it.\"\"                                                           # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d1bb0fee-0581-4bc7-90fb-45666917b631,\"SEN. MENENDEZ APPLAUDS PASSAGE OF LEGISLATION TO SPUR RENEWABLE ENERGY, PROVIDE TAX RELIEF FOR MIDDLE CLASS\n                    \n                            Republicans had obstructed even stronger legislative package eight times\n                    \n                      September 24, 2008\n                     WASHINGTON - The U.S. Senate yesterday evening overwhelmingly passed legislation aimed at spurring renewable energy through a series of tax breaks and credits and providing a temporary fix to the Alternative Minimum Tax that unfairly forces middle class Americans to pay much higher taxes. The legislation also includes an extension for a property tax relief provision that was first proposed by Senator Robert Menendez (D-NJ) in 2006. Senator Menendez, who supported the legislation and helped push for solar power provisions in it, said the bill will help families both immediately and in the future.\"\"This is legislation to bring tax relief immediately and relief from high energy costs well into the future,\"\" said Senator Menendez. \"\"If we are going to secure a low-cost, advanced energy future free from the shackles of oil, this is the type of legislation that is going to get us there. I am proud to have worked on this legislation and to have helped make sure solar power was a priority within it. It is unfortunate that Republicans stalled this bill eight separate times and forced the inclusion of another $8 billion dollar handout to their oil company buddies, but the type of energy that this legislation will spur is too important not to take action.\"\"This legislation is also vital for millions of middle class Americans who are already getting slammed in this bad economy and should not be subject to the unfair Alternative Minimum Tax. We want to make sure they will not pay exorbitant tax rates. Through this legislation, we will also ensure that taxpayers taking the standard deduction will continue to receive relief for the property taxes they pay. This was an idea I was proud to spearhead first in 2006, and it continues to be worthwhile as homeowners feel the squeeze in this economy.\"\"The property tax deduction benefits homeowners who do not itemize on their Federal tax returns. Under the law, single-filing property taxpayers will be able to take an additional standard deduction of $500 and joint filers will be able to deduct $1,000 for state and local property taxes paid.  According to the New Jersey Department of Taxation, nearly 600,000 New Jersey residents will benefit from the initiative.The legislative package, which passed in a 93-2 vote, is a fully offset energy package that extends credits for wind, solar and other technologies. It also supports an array of other technologies, such as plug-in hybrid cars. It includes a one-year extension of the production tax credit for wind and geothermal power, and it adds eight years to the investment tax credit for commercial solar projects. Residential solar tax credits are extended for two years, and a $2,000 annual credit cap is removed.                                                           # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=11c84b03-a518-4a85-a054-cbee88a5a37b,\"REPUBLICAN SENATOR COBURN DENIES MOTHERS ASSISTANCE FOR POSTPARTUM DEPRESSION\n                    \n                            Sen. Menendez, author of MOTHERS Act, decries obstruction\n                    \n                      September 24, 2008\n                     WASHINGTON - Today, U.S. Senator Robert Menendez took to the Senate floor to attempt to break a Republican blockade of his legislation that would combat postpartum depression, but a Republican Senator working as a surrogate for Sen. Tom Coburn (R-OK) raised an objection, thus denying relief for hundreds of thousands of mothers who suffer from the condition each year. Sen. Coburn has used his Senatorial prerogative to place legislative holds on hundreds of bills, including the MOTHERS Act.\"\"Hundreds of thousands of women across the country suffer at the hands of postpartum depression every year, and they deserve better than the ideological games being played with legislation intended to bring them relief,\"\" said Senator Menendez. \"\"This is a cause I am committed to seeing through, and I will continue to stand up on behalf of mothers suffering from this condition until the blockade is cleared.\"\"Among the MOTHERS Act's champions is former New Jersey First Lady Mary Jo Codey, a leading advocate for postpartum depression awareness and treatment.The legislation would increase federal efforts to combat postpartum depression by:Coordinating and continuing research to better understand the causes of, and treatment for, postpartum conditions.  Also, supports a National Public Awareness Campaign to increase awareness and knowledge of postpartum depression and psychosis.Creating a grant program for the delivery of essential services to individuals with postpartum depression.Conducting a study on the benefits of screening for postpartum depression and postpartum psychosis. It is estimated that postpartum depression (PPD) affects from 10 to 20 percent of new mothers. In the United States, there may be as many as 800,000 new cases of postpartum conditions each year.  The cause of PPD isn't known but changes in hormone levels, a difficult pregnancy or birth, and a family history of depression are considered possible factors. Groups supporting the legislation:Postpartum Support InternationalAssociation of Women's Health, Obstetric and Neonatal Nurses American Psychological AssociationAmerican Psychiatric AssociationChildren's Defense FundAmerican College of Obstetricians and GynecologistsMarch of DimesMental Health AmericaAmerican College of Nurse MidwivesNational Council for Community Behavioral Healthcare Depression and Bipolar Support AllianceSuicide Prevention Action Network USANational Alliance on Mental IllnessAssociation of Maternal and Child Health ProgramsNational Partnership for Women & FamiliesOWL- The Voice of Midlife and Older WomenNational Women's Law Center                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3e0241f9-600e-41cb-94b2-df526edb89f7,\"SEN. MENENDEZ RESPONDS TO BUSH'S ADDRESS ON WALL STREET BAILOUT PLAN\n                    \n                      September 24, 2008\n                     WASHINGTON - In response to President Bush's address to the nation on the economic meltdown and Wall Street bailout proposal, U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, released the following statement:\"\"Since last weekend, the American people and we in Congress have sent a strong message to President Bush, rejecting a no-strings-attached, blank-check Wall Street bailout. It seems as if that message has at least partially been received, judging by the president's speech and our meeting with Secretary Paulson and Chairman Bernanke earlier. While I am somewhat more optimistic that we can pass the right kind of legislation than I was after yesterday's Banking Committee hearing, it is clear that there are a few issues of great interest to taxpayers and homeowners that the president still is not addressing. Oversight to protect taxpayers and limitations on CEO compensation are steps forward, but I didn't hear any mention of helping homeowners or additionally protecting taxpayers by having equity in the companies we help. As I have said before, we cannot be stampeded into passing a $700 billion plan without first ensuring that it is the right plan for taxpayers and homeowners, and we are not there yet.\"\"I would also add that while there are some constructive ways in which the presidential candidates can be helpful, injecting presidential politics into the heat of these negotiations at this late hour would only serve to distract from the critical task at hand. Senator McCain simply cannot expect to swoop in at the last minute without any real knowledge of the negotiations and expect to take credit for any potential deal that may be struck.\"\"                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=588c592c-d615-4d1e-9284-3e7c3ee1b15e,\"SENS. MENENDEZ AND NELSON INTRODUCE LEGISLATION TO HELP BREAK OIL COMPANY INFLUENCE OVER FEDERAL GOVERNMENT\n                    \n                            They ask Reid to consider it as part of energy legislation\n                    \n                      September 23, 2008\n                     WASHINGTON - U.S. Senators Robert Menendez (D-NJ) and Bill Nelson (D-FL) today introduced legislation aimed at breaking the grip oil companies have on the federal government and asked Majority Leader Harry Reid to bring it up for consideration as part of any energy legislation that comes before the Senate (http://menendez.senate.gov/pdf/092308MMS-ReidLetter.pdf). The Integrity in Offshore Energy Resources Act would impose dramatically tougher ethics rules for the Minerals Management Service - the federal agency at the center of a major corruption scandal stemming from its employees' relationships with oil company representatives.\"\"If American taxpayers are furious that they are paying sky high gas prices while their government is literally and figuratively in bed with the oil companies, they have every right to be,\"\" said Senator Menendez. \"\"Oil companies need to be on notice: their grip on our government has to end now.\"\"\"\"The influence big oil has over this administration needs to be stopped,\"\" said Nelson.  \"\"There is no room for hanky-panky when it comes to taxpayer money and the responsibility that comes with drilling off our coastlines.\"\"Three reports released this month by Interior Department investigators revealed widespread corruption and unethical dealings in the agency, including federal employees accepting gifts from oil companies, steering lucrative government contracts toward retiring co-workers and engaging in drug use and sexual activity with representatives of oil companies and with fellow co-workers.MMS oversees oil company use of federally-leased lands and runs the Royalty-in-Kind program, by which oil companies compensate the federal government for use of public lands with oil and gas, which is then sold on the market.  The Government Accountability Office has reported that it is unclear whether the federal government is even receiving adequate royalties from the oil companies in the first place.Summary of Menendez-Nelson legislation:Employee Ethical StandardsWould ban the acceptance of all gifts from the industry. Any gifts that are received will be presumed to be at least an illegal gratuity unless proven otherwise.  An illegal gratuity is a felony punishable by 2 years in prison.    Would increase number of MMS employees required to file public financial disclosure forms and forms revealing past employment.  Those who earn incomes at the base level of a GS-13 (currently $82,961) employee or higher will now have to reveal this information (currently, employees compensated at 120% of GS15 level, $138,380 or more, must disclose).    Would require MMS employees to divest all industry investments before working at MMS (Current law requires employees to recuse themselves from working on a matter specifically having to do with a particular company if they own $15,000 or more in that company's stock).    Would hold MMS employees under the same standards as federal procurement officials (one year \"\"revolving door\"\" ban extends to all private sector jobs for companies they worked on major deals with while a federal employee and not just \"\"representational activities\"\", such as lobbying).MMS Review of PracticesThe Royalty-In-Kind Program would be suspended until the following conditions are met:    MMS conducts a comprehensive review to determine if it has been accurately collecting royalties and reports its findings to Congress.        MMS conducts a thorough review to ensure that metering equipment properly measures what royalties are owed to the federal government and reports these findings to Congress.        MMS conducts a robust training program ending with a signed certification that MMS employees understand the ethics laws and regulations.        MMS creates an ombudsman position that monitors MMS's progress in carrying out its reforms.  The ombudsman is hired by and reports exclusively to the DOI IG.    Would require MMS to conduct extensive audits of Royalty-In-Kind program to ensure government is receiving fair compensation for use of public lands.                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e2f617d9-2c17-422d-9d8f-7596068d74dd,\"LATEST VERSION OF PAULSON PLAN: SEN. MENENDEZ REACTS\n                    \n                      September 21, 2008\n                     WASHINGTON - After the Department of the Treasury submitted an updated Wall Street bailout proposal today, U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, released the following statement:\"\"I was concerned about Treasury's initial proposal because it ignored struggling homeowners and lacked protections for taxpayers, who will bear the burden of a bailout. The revised proposal does not address these concerns and in fact gives the Treasury additional authority that could add to the burden on taxpayers. When we start talking about giving the administration free range for a wide scope of unchecked actions that include buying foreign companies' debts, it is cause for concern. I will reiterate that there must be relief for struggling homeowners, accountability to protect taxpayers and we must also work on new measures to stimulate the economy.\"\"                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=08548a80-3023-47fe-8f82-4e40a3d052d9,\"SEN. MENENDEZ ISSUES STATEMENT ON PAULSON PLAN\n                    \n                            Member of Banking Committee says rescue plan must not forget Main Street\n                    \n                      September 20, 2008\n                     WASHINGTON - Today, the Bush administration unveiled its proposal to address the economic crisis - a $700 billion plan centered around giving the Department of the Treasury authority to buy mortgage-related assets.U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee who in a major economic speech in Newark yesterday outlined his proposals to help homeowners along with Wall Street, released the following statement:\"\"Major action to help rescue our economy is certainly necessary, but what disappoints me about this proposal is that it's all Wall Street and no Main Street. We can't ignore the millions of Americans who may lose their homes, and there must be accountability to protect the taxpayers. It is both unfair and unwise to throw a lifeline to banks that were irresponsible without so much as offering a hand to homeowners and some real limits on risks for the taxpayers.\"\"                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=80fabd08-e207-4ab8-bfac-4c4b1211a6fd,\"IN MAJOR ECONOMIC SPEECH, SEN. MENENDEZ REACTS TO PAULSON ANNOUNCEMENT, OUTLINES PROPOSALS TO ADDRESS ECONOMIC CRISIS\n                    \n                            Member of Banking Committee says Main Street, not just Wall Street, must be helped\n                    \n                      September 19, 2008\n                     NEWARK, NJ - Today, U.S. Senator Robert Menendez (D-NJ), a member of the Senate Banking Committee, delivered a major speech on the economy, reacting to Treasury Secretary Henry Paulson's remarks from earlier in the day and laying out proposals geared toward helping Main Street in this economic crisis. Senator Menendez said that he is pleased that the Bush administration is finally looking at long-term solutions but said there are big questions about the costs and benefits to taxpayers that must be answered. He also stressed the vital need to help homeowners along with financial institutions and to stimulate the economy. His proposals include bankruptcy loan modifications, freezing foreclosures on mortgages owned by Fannie Mae and Freddie Mac, small business loan programs, and a new economic stimulus package. He also proposed programs to help those who have lost jobs, including many in New Jersey, as they search for and transition to new employment.On Paulson's announcement:\"\"We're still waiting for details, but I am pleased to see the Administration finally looking past the next short-term crisis and looking to a solution to help in this difficult time.  I do, however, have some concerns about how priorities will be made and where Main Street and homeowners will be on that list.\"\"So while this proposal is an interesting idea, and it's clear there needs to be leadership, the stakes are incredibly high. In this unprecedented situation, there are some serious questions that need to be asked. We have to be extremely careful if we start to create a system where gains are private, and losses are public, where businesses can keep their profits but the taxpayers have to pay for their debts. Big institutions that made bad decisions should not be immune from the consequences of those actions—they shouldn't be able to avoid the consequences of their greed when the value of everyone's home has suffered as a result—especially when my Republican friends in Congress were arguing months ago that homeowners should suffer the consequences of any bad decisions.\"\"Here are some other questions: will a new institution be set up?  Worst case, scenario, how much could this cost the taxpayers?  Saying that hundreds of billions of dollars are needed to be infused into the system is not the same as saying hundreds of billions of dollars are going to be the cost to the taxpayers. They are the bystanders in this crash and they will get hurt the most.\"\"Who would qualify—just companies that pose systemic risk or any company with a large amount of troubled assets? How will the government value the assets it takes onto its books?  Even if this plan stabilized the situation, what would its long-term effects be? \"\"And most, importantly, what do the taxpayers get in return?  The proposal could result in the most direct commitment of taxpayer funds that our country has seen—there has to be a balance, a fair tradeoff, and taxpayer protections.Some people blame homeowners for signing loans they couldn't afford or didn't understand but want to tell them ‘tough luck' when they look to the government for help.  But when the institutions that bought these loans—loans they knew were either overleveraged or deceptive—start to lose their roofs, we bail them out.  From a homeowners perspective, how is that fair?\"\"Menendez on his own proposals:\"\"We have to put people first—not just companies—we have to put people first.\"\"To that end, there's other legislation we should consider that will in fact put people first as it shores up the housing market. Our goal should be to save a million homes from foreclosures—the goal of 400,000 in the Hope for Homeowners plan just simply doesn't cut it anymore.  I also want to quickly mention three steps that can get us there: changing the bankruptcy rules, loans for small businesses, and a new economic stimulus package.• \"\"First, the best way to not only stem this crisis but help those on Main Street is to help prevent foreclosures.  Changing the bankruptcy law to give judges the discretion to modify loan terms for primary residences. Right now, the law allows for modifying loan terms for secondary residences like vacation homes but not primary residences.  We tried to make this change in Congress earlier this year, but were blocked—we cannot wait any longer. This provision is the only way to help a significant number of homeowners without costing taxpayers a dime.  It would help more than 600,000 families stuck in bad loans keep their homes.\"\"Preventing foreclosure also means loan modifications. Fannie Mae and Freddie Mac should temporarily freeze foreclosures on loans they hold for 90 days. With the government in control, they can freeze foreclosures and turn them into performing mortgages that limit taxpayer exposure.• \"\"Second, we should institute a loan program to help jumpstart one of the most important economic engines in America: small businesses. Because of this severe credit crunch, many small businesses that are just starting out and even many well-established businesses are having trouble finding credit on the private market. Emergency loans should be available for small businesses along the lines of what we provide during a natural disaster.  This is a pretty big financial storm, and temporary relief can make a big difference.• \"\"Third, it's time for a second economic stimulus package, targeted to create hundreds of thousands of good-paying jobs and prevent cuts in critical services for millions of Americans. The Democratic package currently being discussed would fund infrastructure projects, an energy aid program, as well as some form of unemployment insurance extension.• \"\"I also think we need to think about those on Wall Street who have are going to lose their jobs.  In New Jersey alone, between a quarter and a third of New Jersey's economy depends on Wall Street, either directly or indirectly. \"\"Many of these families are going to be living on severance pay, at best, for a while. So we should consider providing some form of tax relief for COBRA and severance pay to tide people over. Many families are going to lose health insurance as a result of this downturn—many families with children are going to be grateful that they live in a state that provides health insurance for many children.  But we have to help—this economic storm is crossing America but it made landfall in New York and New Jersey, and we must provide relief.\"\"Full text of speech:Thank you Bill, and thanks to all of you for having me here.I'm confident that I would not be speaking here today—I wouldn't have been able to go from the small tenement apartment I grew up in to the halls of the United States Senate—if it weren't for our federal government's commitment to educating our young people, no matter what neighborhood they grow up in, no matter how much money their parents make, no matter what their ethnicity or the color of their skin.I was the first person in my family to attend college, and then law school, thanks to Pell Grants and Perkins loans.The idea was, if you worked hard, played by the rules, applied your God-given talent to the fullest, then you would succeed. That's more than just the idea behind our system of education—it's the fundamental definition of the American Dream.ECONOMYUnfortunately, the doors to achievement are in serious danger of being locked—not just sometime down the line: immediate danger.So today, I have to speak about something else besides education. I have to speak about our economy—because in order for the next generation to have the chance to study and the chance to succeed, we have to act fast to prevent a major collapse.Right now, we're faced with the one of the most perilous economic times any of us have ever seen. Over the past several months, major financial institutions have fallen, the stock market has seen its biggest drop since September 11th, 2001, home foreclosures are rising at the fastest rate since the Great Depression, and since the beginning of the year, more than 600,000 Americans have lost their jobs.Students graduate with higher degrees and find they have trouble finding a job, have trouble getting a loan to start a business, find homeownership out of reach and hope for the future in short supplyThe state of our economy is more than unfortunate—but how it got this way wasn't an accident. It all comes back to the highest levels of government, and what this administration's attitude has been toward the financial services industry and the markets in general.For eight years, the Bush Administration has turned its back on regulation and oversight. Instead of being a cop on the beat, patrolling corporate accounting, the Administration disastrously allowed Wall Street to police itself. Instead of oversight of mortgage lenders, the Federal Reserve looked the other way—so much so, that even though they've had the power to stop predatory lending for 14 years, they didn't use that power until this July. In short, instead of keeping an eye on the regulatory system that had kept our financial system on sound footing for seventy years, the administration and its Republican allies recklessly dismantled it. They passed it off as trusting capitalism—but really what they were doing was capitalizing on our trust. It was a level of incompetence that has left us on the brink of an economic meltdown.Today, to cover up for eight years of cronyism, criminality and neglect, the standard-bearer of the Republican Party, Senator John McCain, is still claiming that, quote, \"\"the fundamentals of the economy are strong.\"\"While housing foreclosures are defying gravity, he continues to make statements that defy reality.You can't have over 6% unemployment—8% among Latinos—and say the fundamentals of the economy are strong.You can't see the millions of Americans in foreclosure, the 9,000 who are at risk of losing their homes every single day, and tell them that the fundamentals of the economy are strong.You can't look at the greatest deficit and the greatest debt the nation has ever had, the highest prices for gas and groceries we've ever seen, a price tag of $10 billion a month for a war in Iraq that should have never been waged, and look the average American in the eye and tell them, that when it comes to our economy, things are so strong that nothing needs to change.If we have any hope of fixing this crisis, we've got to recognize that the fundamentals of the economy are not where they need to be. The time for denial is over. The time for ad-hoc solutions is over. The time for real leadership is here.So today I must take this opportunity to lay out what that means—and to comment on the proposals from the Administration, including what Secretary Paulson outlined today in his remarks. Slogans won't prop up the economy and pointing fingers won't give 600,000 Americans their jobs back. What we need is a plan.Far too much needs to be done to mention it all here—in particular, getting ahead of the next crisis, and implementing credit card reform.  As a nation, we have to be better about seeing the developing storms and adjusting our regulations and plan—we cannot simply wait for the destruction and clean up the mess.And government certainly can't do it all; the heart of any economic recovery has to be the innovation and hard work that New Jerseyans and all Americans do every day. But I want to mention a few specific steps the federal government needs to take, immediately, to get the economy back on track.PLANFirst, it's time we recognized one fact: the heart of this downturn is the housing market. It's not the only problem, but I like to use the analogy of medical treatment of a patient after a car crash: first we need to stabilize the patient in order to operate.Before I mention my proposals for stabilizing the housing market and the broader economy, I want to discuss the Administration's proposal, announced today, to authorize the government to buy bad assets at deep discounts from banks and other institutions. We're still waiting for details, but I am pleased to see the Administration finally looking past the next short-term crisis and looking to a solution to help in this difficult time.  I do, however, have some concerns about how priorities will be made and where Main Street and homeowners will be on that list.So while this proposal is an interesting idea, and it's clear there needs to be leadership, the stakes are incredibly high. In this unprecedented situation, there are some serious questions that need to be asked. We have to be extremely careful if we start to create a system where gains are private, and losses are public, where businesses can keep their profits but the taxpayers have to pay for their debts. Big institutions that made bad decisions should not be immune from the consequences of those actions—they shouldn't be able to avoid the consequences of their greed when the value of everyone's home has suffered as a result—especially when my Republican friends in Congress were arguing months ago that homeowners should suffer the consequences of any bad decisions.Here are some other questions: will a new institution be set up?  Worst case, scenario, how much could this cost the taxpayers?  Saying that hundreds of billions of dollars are needed to be infused into the system is not the same as saying hundreds of billions of dollars are going to be the cost to the taxpayers. They are the bystanders in this crash and they will get hurt the most.Who would qualify—just companies that pose systemic risk or any company with a large amount of troubled assets? How will the government value the assets it takes onto its books?  Even if this plan stabilized the situation, what would its long-term effects be? And most, importantly, what do the taxpayers get in return?  The proposal could result in the most direct commitment of taxpayer funds that our country has seen—there has to be a balance, a fair tradeoff, and taxpayer protections.Some people blame homeowners for signing loans they couldn't afford or didn't understand but want to tell them ‘tough luck' when they look to the government for help.  But when the institutions that bought these loans—loans they knew were either overleveraged or deceptive—start to lose their roofs, we bail them out.  From a homeowners perspective, how is that fair? We have to make sure that after all is said and done, the taxpayers and millions of troubled homeowners get some relief.It isn't right that taxpayers bear all the losses and bear all the risk. Bailing out only the top is offering the imperfect solution of trickle-down economics. We have to make sure that in any deal, Main Street gets as much as Wall Street.Had the Administration finally woken up, when I said in March of 2007 that we faced a tsunami of foreclosures and had to act, I wonder how things might have been different.  Wall Street, there is no doubt, is in trouble and our financial stability is in the balance. And the trickledown effect from this would inevitably cause harm in almost every American home—that is why we have to act and act fast.  But while we rescue Wall Street from their profit seeking failures, we need to rescue homeowners, many of whom are in trouble through no fault of their own. Let's not forget, when there's a foreclosure in our neighborhood, it affects all our homes, and the greater economy. Foreclosures are at the core of a crisis that affects us all.And let me be very clear about this: if we plan to pursue the idea of a multi-hundred-billion-dollar federal corporation taking on these bad assets, there must be regulatory reform as well, and those regulations must be robustly enforced. We shouldn't wait, as Secretary Paulson suggests, for a debate for another day.So we have to keep all those questions in mind as we're deciding whether or not to take the big step of having the public get involved in a big way.The administration has only left us with bad choices—choices we have to make immediately to avoid a global economic meltdown. They've stoked and neglected this crisis for over 7 years—we have to choose in 7 days.As we make those choices, we have to put people first—not just companies—we have to put people first.To that end, there's other legislation we should consider that will in fact put people first as it shores up the housing market. Our goal should be to save a million homes from foreclosures—the goal of 400,000 in the Hope for Homeowners plan just simply doesn't cut it anymore.  I also want to quickly mention three steps that can get us there: changing the bankruptcy rules, loans for small businesses, and a new economic stimulus package.First, the best way to not only stem this crisis but help those on Main Street is to help prevent foreclosures.  Changing the bankruptcy law to give judges the discretion to modify loan terms for primary residences. Right now, the law allows for modifying loan terms for secondary residences like vacation homes but not primary residences.  We tried to make this change in Congress earlier this year, but were blocked—we cannot wait any longer. This provision is the only way to help a significant number of homeowners without costing taxpayers a dime.  It would help more than 600,000 families stuck in bad loans keep their homes.Preventing foreclosure also means loan modifications. Fannie Mae and Freddie Mac should temporarily freeze foreclosures on loans they hold for 90 days. With the government in control, they can freeze foreclosures and turn them into performing mortgages that limit taxpayer exposure.Second, we should institute a loan program to help jumpstart one of the most important economic engines in America: small businesses. Because of this severe credit crunch, many small businesses that are just starting out and even many well-established businesses are having trouble finding credit on the private market. Emergency loans should be available for small businesses along the lines of what we provide during a natural disaster.  This is a pretty big financial storm, and temporary relief can make a big difference.Third, it's time for a second economic stimulus package, targeted to create hundreds of thousands of good-paying jobs and prevent cuts in critical services for millions of Americans. The Democratic package currently being discussed would fund infrastructure projects, an energy aid program, as well as some form of unemployment insurance extension.I also think we need to think about those on Wall Street who have are going to lose their jobs.  In New Jersey alone, between a quarter and a third of New Jersey's economy depends on Wall Street, either directly or indirectly.  Many of these families are going to be living on severance pay, at best, for a while. So we should consider providing some form of tax relief for COBRA and severance pay to tide people over. Many families are going to lose health insurance as a result of this downturn—many families with children are going to be grateful that they live in a state that provides health insurance for many children.  But we have to help—this economic storm is crossing America but it made landfall in New York and New Jersey, and we must provide relief.CONCLUSIONThese are vital structural changes we need to make, and some of the questions we need to keep in mind, as we move forward. This is a key time to be on the Banking Committee, and I look forward to working with Chairman Chris Dodd this weekend and next week to deliver the changes we need.Apart from structural changes, our recovery depends on our power to innovate, and our economic future depends on the education our young people get today.I'm thrilled to see in this audience educators, businessmen and women, leaders from throughout our community. When there's an economic crisis, the government may sound the alarm, and send out fire engines to put out the fire, but when the smoke clears, you are the ones who are working hardest to rebuild it.John F. Kennedy liked to say that in Chinese, the word \"\"crisis\"\" is composed of two characters: one is \"\"danger\"\" and the other is \"\"opportunity.\"\"We all have before us a great opportunity, an opportunity to prepare our students and strengthen our economy so America remains a leader in the world. A nation that is united in its purpose can answer that challenge, as we have so many times throughout our history. The time has come to make a robust, national commitment to the education of our youth at all levels, from kindergarten through graduate school, from technological institutes in our inner cities to centers of agricultural research in the heartland—and a commitment to some of the more structural changes that will rebuild our economy and make that education possible.So many people are depending on all of us. If we keep up the hard work, and believe in what we're working for, then progress is always within our reach, change is always within the realm of possibility, and a better world is ours for the making.Thank you very much.                                                                  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=01da1d1e-0c73-4614-8023-87e1990cd3f0,\"SEN. MENENDEZ AND REP. HONDA WORK TO PROTECT FAMILY REUNIFICATION IN THE IMMIGRATION PROCESS\n                    \n                            Reuniting Families Act would utilize thousands of unused visas, among other provisions\n                    \n                      September 19, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) and Rep. Mike Honda (D-CA) this week introduced the Reuniting Families Act in the Senate and House of Representatives to ensure that the immigration system emphasizes family reunification in its distribution of entry visas. Four million people are currently stuck in the entry backlog, many of whom are family members of U.S. citizens and legal permanent residents and are ready to help play vital roles in the U.S. economy and in American communities. Among other provisions, the legislation would direct thousands of unused visas from previous years to close family members of U.S. citizens and legal residents, reclassify spouses and children of legal residents as immediate family and would raise the per-country cap for visas from seven percent to ten percent.\"\"We need to focus on the families.  After all, family reunification is the bedrock of our immigration system - it upholds American values and reinforces our economy,\"\" said Senator Menendez. \"\"Families are at the core of the American community. By making sure that we can reunite U.S. citizens and legal permanent residents with their parents, husbands, wives, sons or daughters, we can help promote safe and stable communities and the values that this nation was built upon. In addition, family members boost our economy with their willingness to work hard, with their propensity to pool resources to start small businesses and with their ability to help care for elderly, infirmed or infant relatives.\"\"\"\"We have an immigration system right now that penalizes families,\"\" said Rep. Honda, chair of the Congressional Asian Pacific American Caucus. \"\"Family values start with family unity and we need to put these values back into our immigration policy. This bill ensures that children and their parents, husbands and wives, get a chance to live the American dream together. This bill is right for our economy, right for our communities and right for hundreds of thousands of families.\"\"The Reuniting Families Act supports the reunification of families by:Recapturing visas unused and unclaimed due to bureaucratic delayReclassifying lawful permanent resident spouses and children as \"\"immediate relatives\"\" and exempting them from numerical caps on family immigrationIncreasing per country limits from 7% to 10% so that nations with a higher demand for workers can better equip the American economy with talentAllowing families to reunite despite the death of a petitionerRecognizing the sacrifices of our military by exempting children of World War II Filipino veterans from numerical caps; andAllowing family members to reunite despite bars to reentryReuniting Families Act organizational endorsements:American Immigration Lawyers AssociationAlliance of Filipinos for Immigrant Rights and Empowerment Asian American Justice CenterAsian American Institute, Chicago, ILAsian Law AllianceAsian Law Caucus, San Francisco, CAAsian Pacific American Legal Center, Los Angeles, CAAsian Pacific American Legal Resource Center, DCBoat People SOS, Inc.Casa de EsperanzaChurch World Service, Immigration and Refugee ProgramCoalition for Humane Immigrant Rights of Los Angeles Hmong National DevelopmentOrganization of Chinese AmericansOrganization of Chinese American, South Florida ChapterIllinois Coalition for Immigrant and Refugee RightsJapanese American Citizens LeagueKorean American Resource & Cultural Center, Chicago, ILKorean Resource Center, Los Angeles, CALutheran Immigration and Refugee ServicesMexican American Legal Defense Fund (MALDEF)Migration and Refugee Services, Diocese of TrentonNational Asian American Pacific Islander Mental Health Association National Council of La RazaNational Federation of Filipino American AssociationsNational Immigration ForumNational Immigration Law CenterNational Korean American Service & Education ConsortiumNational Lao Federation Abroad CouncilNational Organization for WomenNational Asian Pacific American Women's ForumNew York Immigration CoalitionSouth Asian Americans Leading Together Service Employees International Union Statewide Parent Advocacy Network of New JerseyUnited Chinese Association of FloridaUnited Methodist Church, General Board of Church and Society                                                                  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=40c5cdf4-9711-4559-8785-1aca166a702d,\"SEN. MENENDEZ MEETS WITH U.S. ENVOY TO SUDAN\n                    \n                            Foreign Relations Committee member expresses frustration with slow deployment of peacekeepers\n                    \n                      September 19, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee who has consistently pushed the Bush administration to become more engaged in combating genocide in Darfur, met with the U.S. envoy to Sudan, Ambassador Richard Williamson in the Senator's Washington offices this week. Senator Menendez released the following statement:\"\"I expressed to Ambassador Williamson my continuing frustration and concern over the stunningly-slow deployment pace of the essential peacekeeping forces. I also expressed the need for the Department of Defense to step up its logistical support in order to facilitate the deployment of these troops. Ambassador Williamson seems to share these concerns and have a better grasp of situation than previous Bush administration officials, and I hope that this will result in a more aggressive and focused administration Darfur policy over the next four months. We must not let Bashir off the hook as he allows more slaughter to take place. Just because this administration is coming to an end doesn't mean that it can relax in regard to Darfur - the bloodshed and misery continues.\"\"                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=61dcb1c3-9840-4a45-9bd4-46920c47beb7,\"LEGISLATION TO TAKE AIM AT BIG OIL'S INFLUENCE\n                    \n                            Lawmakers seeking strict ethics code after government workers caught with close ties to industry\n                    \n                      September 17, 2008\n                     WASHINGTON - Two U.S. senators today moved to break the close ties between government regulators and the oil industry.Sens. Robert Menendez (D-NJ) and Bill Nelson (D-FL) announced they're introducing legislation that would dramatically toughen ethics rules for employees of the federal Minerals Management Service, which is at the center of a major corruption scandal over employee relationships with oil companies. The bill is expected to be filed as early as tomorrow.Three reports released last week by Interior Department investigators revealed widespread corruption and unethical dealings in the agency, including federal employees accepting gifts from oil companies, steering lucrative government contracts toward retiring co-workers and engaging in drug use and sexual activity with representatives of oil companies and with fellow co-workers.\"\"With two oil men in the White House for the past eight years, parts of the federal government have become wholly-owned subsidiaries of Big Oil,\"\" said Menendez. \"\"American families are struggling every day with sky high gas prices while the federal government has been engaged in a wink-wink, hanky-panky relationship with oil companies. As oil companies cheerlead the drill, drill, drill calls, they need to know that their intimate relationship with the federal government is over. With these reforms, we intend to break up the cozy bond that has been allowed to develop for far too long, costing American taxpayers untold amounts of revenue.\"\"\"\"\"\"If we need to put on the books - don't take money and drugs from the oil industry - that's what we'll have to do to stop the influence peddling,\"\" said Nelson, who also has called for congressional hearings.  \"\"The whole sordid affair just shows how much sway big oil holds over the government.\"\"MMS oversees oil company use of federally-leased lands and runs the Royalty-in-Kind program, by which oil companies compensate the federal government for use of public lands with oil and gas, which is then sold on the market.  The Government Accountability Office has reported that it is unclear whether the federal government is even receiving adequate royalties from the oil companies in the first place.Outline of Menendez-Nelson legislation:Employee Ethical StandardsWould ban the acceptance of all gifts from the industry. Any gifts that are received will be presumed to be at least an illegal gratuity unless proven otherwise.  An illegal gratuity is a felony punishable by 2 years in prison.Would increase number of MMS employees required to file public financial disclosure forms and forms revealing past employment.  Those who earn incomes at the base level of a GS-13 (currently $82,961) employee or higher will now have to reveal this information (currently, employees compensated at 120% of GS15 level, $138,380 or more, must disclose).Would require MMS employees to divest all industry investments before working at MMS (Current law requires employees to recuse themselves from working on a matter specifically having to do with a particular company if they own $15,000 or more in that company's stock).Would hold MMS employees under the same standards as federal procurement officials (one year \"\"revolving door\"\" ban extends to all private sector jobs for companies they worked on major deals with while a federal employee and not just \"\"representational activities\"\", such as lobbying).MMS Review of PracticesThe Royalty-In-Kind Program would be suspended until the following conditions are met:-MMS conducts a comprehensive review to determine if it has been accurately collecting royalties and reports its findings to Congress.-MMS conducts a thorough review to ensure that metering equipment properly measures what royalties are owed to the federal government and reports these findings to Congress.-MMS conducts a robust training program ending with a signed certification that MMS employees understand the ethics laws and regulations.-MMS creates an ombudsman position that monitors MMS's progress in carrying out its reforms.  The ombudsman is hired by and reports exclusively to the DOI IG.                                                                   # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=714a9406-d9da-443a-a54c-1399f54eec63,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $1.2 MILLION TO IMPROVE SCHOOL SECURITY IN NEW JERSEY\n                    \n                            Funding from COPS Program to Help Enhance School Safety in 17 N.J. Communities\n                    \n                      September 16, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Justice Office of Community Oriented Policing Services (COPS) has awarded New Jersey more than $1.2 million in federal funds to improve security in and around schools.\"\"Parents, students and teachers shouldn't have to worry about school safety.  Schools need the resources to ensure safety throughout the day, and these funds give parents and teachers peace of mind and give our young people a chance to build their future,\"\" Sen. Lautenberg said.Sen. Menendez said, \"\"Parents should be able to send their kids to school with the confidence that they are focused on their education rather that their safety.  There are few issues as important as the education of our children, and this funding will help keep our New Jersey schoolchildren as safe as possible while they learn.\"\"This funding is part of the COPS Secure Our Schools Program, which provides schools with funds for security items such as metal detectors, locks and lighting.  Funding can also be used for security training for students and teachers and coordination between schools and local law enforcement.In total, 17 New Jersey communities will share $1,265,948 in funding from the Secure Our Schools program.  The awards under this grant include:$125,894 to Atlantic City;    $86,453 to the Belmar Police Department;    $38,450 to Deal;    $65,869 to Delran;    $30,298 to Galloway;    $23,579 to the Lodi Police Department;    $65,446 to Lyndhurst;    $43,850 to the Millville Police Bureau;    $52,100 to Neptune;    $24,179 to Point Pleasant Beach;    $13,219 to the Pompton Lakes Police Department;    $37,113 to the Rutherford Police Department;    $11,500 to the South Orange Police Department;    $180,000 to the South Plainfield Police Department;    $52,500 to the Stafford Police Department;    $280,304 to Brick; and    $135,194 to Union City.                                                                  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a2c4dc08-f460-4384-8cdc-c857efdb076b,\"SENATORS CALL ON BUSH TO REFRAIN FROM CONTROVERSIAL APPOINTMENT OF CHENEY AIDE TO ENERGY POST\n                    \n                            Menendez and Sanders point to Chase Hutto's record of favoring oil companies and opposing public health protections\n                    \n                      September 15, 2008\n                     WASHINGTON - U.S. Senators Robert Menendez (D-NJ) and Bernie Sanders (I-VT), both members of the Energy and Natural Resources Committee, today strongly urged President Bush to refrain from appointing an aide to Vice President Dick Cheney to a top Department of Energy post. Cheney aide F. Chase Hutto III has a documented history of favoring oil companies and backing big corporations against measures to protect public health, but it has recently been reported that he is  a leading candidate to be appointed to DOE's Assistant Secretary of Energy for Policy and International Affairs position.In their letter, the Senators write, \"\"While the American people are looking for leadership on renewable energy and global warming, they would instead get someone committed to partisan politics and more of the status quo failed energy policies.  Appointing Mr. Hutto to any acting capacity would be a mistake and we sincerely hope that at the end of your Presidency, you will avoid any such blatantly-confrontational actions.\"\"The Senators also assert that Hutto \"\"has an unfortunate history of opposing science-based environmental and public health regulations.\"\" They point specifically to two concerning episodes.According to a House of Representatives committee report, Hutto carried the water for the oil industry during internal the White House debate following the 2007 Supreme Court ruling that the Environmental Protection Agency can regulate greenhouse gases. Additionally, Hutto questioned the need for the EPA to regulate power plant emission of mercury that can harm public health.PDF of letter to Bush: http://menendez.senate.gov/pdf/091508POTUSHutto.pdfFull text of letter below:September 15, 2008The Honorable George W. BushThe White House1600 Pennsylvania Avenue, NWDear Mr. President:As members of the Senate Energy and Natural Resources Committee, we strongly object to the proposed appointment of F. Chase Hutto III as Assistant Secretary of Energy for Policy and International Affairs, or in any other capacity at the Department of Energy (DOE).  As a senior aide to Vice President Cheney, he has, according to numerous reports, fought efforts to provide greater protection for the public health and environment.  Mr. Hutto is simply an unacceptable candidate to lead the Department of Energy's international energy initiatives.According to the DOE, the Assistant Secretary is the \"\"primary advisor to the Secretary and the Department on energy and technology policy development\"\" in an office that delivers \"\"unbiased advice\"\" based on \"\"well-founded data and analysis\"\" to the DOE leadership on energy policy.  At this particularly important point in time, we need someone as Assistant Secretary of Energy for Policy and International Affairs who can provide the leadership needed to propel sustainable energy policies, both here and abroad, that are based on the scientific consensus surrounding the imperative to act quickly to address global warming.  Mr. Hutto, however, has an unfortunate history of opposing science-based environmental and public health regulations, thus making him unsuitable for this position.While we could provide innumerable examples of his opposition to forward-thinking energy policies, but let us briefly mention two of the most egregious ones.  According to a report by the United States House of Representatives' Select Committee on Energy Independence and Global Warming, Mr. Hutto acted as a voice for oil industry representatives (including those from the American Petroleum Institute and ExxonMobil) during internal White House deliberations in arguing against action following the Massachusetts v. EPA decision.    In another example that shows his lack of regard for science to inform policy, in 2005, Mr. Hutto questioned the need for EPA to limit power plant emissions of mercury.  There is substantial evidence demonstrating that mercury pollution from power plants is a major threat to human health, particularly pregnant women and young children.We have no reason to believe that, as Assistance Secretary, Mr. Hutto would act any differently than he has while working for the Vice President.  This means that while the American people are looking for leadership on renewable energy and global warming, they would instead get someone committed to partisan politics and more of the status quo failed energy policies.  Appointing Mr. Hutto to any acting capacity would be a mistake and we sincerely hope that at the end of your Presidency you will avoid any such blatantly-confrontational actions.Thank you for your attention to this important matter.Sincerely,_________________________                                                      _________________________ROBERT MENENDEZ                                                                 BERNARD SANDERSUnited States Senator                                                                            United States Senator                                                                 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f7375d6d-6551-4ab2-be89-ab02d14f6217,\"September is both Ovarian Cancer and Prostate Cancer Awareness Month -- learn how to lower your risk for these deadly diseases\n                    \n                      September 12, 2008\n                     September is Ovarian Cancer Awareness Month - and women can lower their risk for ovarian cancer. www.ovarian.orgwww.ovariancancer.orgSeptember is Prostate Cancer Awareness Month - and men can lower their risk for prostate cancer.  http://www.prostatecancerfoundation.org/http://www.fightprostatecancer.org/For more information, visit these and other websites, or contact your health care provider.Telephone (1-800-4-CANCER)Internet (http://www.cancer.gov) for current information.  Request factsheets at http://www.cancer.gov/publicationsAsk questions online LiveHelp at http://www.cancer.gov/cis\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d230e784-a629-413d-a451-2ef4c338f0f9,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $1.4 MILLION TO IMPROVE EMERGENCY COMMUNICATIONS IN NEW JERSEY\n                    \n                            Grant Will Help First Responders Communicate During Emergencies, Help Complete 9/11 Commission's Recommendations\n                    \n                      September 12, 2008\n                     NEWARK, N.J. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Homeland Security (DHS) has awarded New Jersey more than $1.4 million in federal funds to improve its emergency communications.This funding is part of the Interoperable Emergency Communications Grant Program (IECGP), a new federal program to help states plan and train to respond to natural disasters and acts of terrorism.  New Jersey will receive $1,443,315 for the first year of the IECGP, which was authorized after the implementation of the 9/11 Commission's recommendations.\"\"When our first responders ran into the World Trade Center on September 11, they expected their radios and communications equipment to work.  But that equipment wasn't up to the job and it made it harder for our first responders to protect themselves and others,\"\" Sen. Lautenberg said.  \"\"This funding will help provide our first responders with efficient, effective communications during emergencies to better protect our communities.\"\"Sen. Menendez said, \"\"One of the many lessons we learned from the September 11th attacks is how vitally important it is for police, firefighters and medical responders to be able communicate with each other in emergencies.  Even now, seven years after that deficiency was exposed, there is still more work to do.  These funds are important to help make sure that the heroes who help save lives at the very least have functioning equipment.\"\"The 9/11 Commission Report found that communications were so poor on September 11 that firefighters and police officers in different parts of the World Trade Center could not communicate with each other or with NYC's Emergency Management Headquarters in 7 World Trade Center.  One problem was that their communications systems were not \"\"interoperable.\"\"  The IECGP was created to help fix these problems so public safety agencies will be able to talk and exchange data across jurisdictions using radio communications systemsThe IECGP, which is funded by the FY 2008 DHS Appropriations Act, allocates funding based on risk.  Both Sens. Lautenberg and Menendez have fought hard to compel the Bush Administration to provide New Jersey with more homeland security grants based on risk.                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c5f7de89-515d-441b-8664-9172830dfc8a,\"IN SEPTEMBER 11th REMEMBRANCE, SEN. MENENDEZ SPEAKS ON SENATE FLOOR OF THE OBLIGATION TO NEVER FORGET\n                    \n                            Senator Menendez's remarks recall those who perished,  honor the heroism on display and reinforce the need to prevent a repeat of the 9/11 attacks\n                    \n                      September 11, 2008\n                     WASHINGTON - Today marks the seventh anniversary of the terrorist attacks of September 11, 2001. U.S. Senator Robert Menendez (D-NJ) took to the Senate floor this morning to speak about the importance of never forgetting those who were lost that day - including nearly 700 New Jerseyans - as well as the heroism that was on display, those who are still suffering and the security challenges that still exist.Excerpts from Sen. Menendez's remarks:\"\"That day, the families and friends of nearly 3,000 Americans got the worst news imaginable. Almost 700 were from my home state of New Jersey. They were from all walks of life. We lost mothers, fathers and children; brothers lost their sisters; neighbors lost their friends.\"\"Today in New Jersey, you can go from town to town—from Englewood to West Windsor, Toms River, Mantua and Cape May—and you can see a ceremony in each one. Families in those towns are laying flowers on gravestones and monuments, and holding tightly one more time onto pictures of the ones they lost. So many communities were affected in so many different ways.\"\".....\"\"There was a time when the events of September 11, 2001 gripped us so strongly that our minds couldn't focus on anything else.\"\"Yet, seven years later, we have to talk about the dangers of forgetting.\"\"We have to talk about the dangers of forgetting, because seven years later, our obligations have not gone away.\"\"Our obligations have not gone away to those we lost their friends and families, and to those who survived the attacks and came away injured. For them, it's been a long and heroic struggle to get by and find some sense of ‘normal.' People who ran out of burning buildings, and the firefighters, EMTs and other rescue workers who ran in, all breathed thick air as they were saving lives, and today they're reminded of what they had to face with literally every breath they take.\"\"We think about them very deeply today, but those heroes triumph every day. Their supply of courage has never run out.\"\"And we can never walk out on them.\"\"So ‘not forgetting' means remembering those we lost and their friends and families. It means caring for those who were made ill because of the attacks. Not forgetting means supporting all the heroes, paid and volunteer, who risked their lives to save others. Not forgetting means securing our ports, chemical and nuclear plants so we don't have to experience another horrendous tragedy in the future; getting federal grant money to our communities based on the risks they face, getting firefighters the funding they need for new equipment and increased personnel, making sure our first responders can talk to each other during an emergency.\"\"And let us be very clear: not forgetting means destroying the terrorist network that planned the attacks and bringing those responsible to justice.\"\"Full text of his remarks are below:M. President,I rise today to commemorate those we lost on September 11th, 2001, to remember how our nation responded to the pain we felt that day with a towering display of heroism, and to urge us to rededicate ourselves to making sure we never have to experience terror on our soil again.That day, the families and friends of nearly 3,000 Americans got the worst news imaginable. Almost 700 were from my home state of New Jersey. They were from all walks of life. We lost mothers, fathers and children; brothers lost their sisters; neighbors lost their friends.Today in New Jersey, you can go from town to town—from Englewood to West Windsor, Toms River, Mantua and Cape May—and you can see a ceremony in each one. Families in those towns are laying flowers on gravestones and monuments, and holding tightly one more time onto pictures of the ones they lost. So many communities were affected in so many different ways.Not the least of which was the American community. It felt like a day when there were no borders between us. Terrorists tried to engulf us in the smoke of fear and hatred, and for a moment, we felt like the whole world went dark.But the light of heroism burst through. Individuals rushed into burning buildings risking their lives to save others, strangers opened their homes to help people they didn't even know, men and women all over the country rushed to give whatever they could to help those in need. It was a day when we learned the meaning of Oscar Wilde's words, that \"\"where there is sorrow, there is holy ground.\"\" It was a day when it didn't matter what part of the country you came from, what your family background was, or anything else. It was a day when we all stood together as Americans. And people from all over the world said, we're all Americans today. There was a time when the events of September 11, 2001 gripped us so strongly that our minds couldn't focus on anything else.Yet, seven years later, we have to talk about the dangers of forgetting.We have to talk about the dangers of forgetting, because seven years later, our obligations have not gone away.Our obligations have not gone away to those we lost their friends and families, and to those who survived the attacks and came away injured. For them, it's been a long and heroic struggle to get by and find some sense of \"\"normal.\"\" People who ran out of burning buildings, and the firefighters, EMTs and other rescue workers who ran in, all breathed thick air as they were saving lives, and today they're reminded of what they had to face with literally every breath they take.We think about them very deeply today, but those heroes triumph every day. Their supply of courage has never run out.And we can never walk out on them.So \"\"not forgetting\"\" means remembering those we lost and their friends and families. It means caring for those who were made ill because of the attacks. Not forgetting means supporting all the heroes, paid and volunteer, who risked their lives to save others. Not forgetting means securing our ports, chemical and nuclear plants so we don't have to experience another horrendous tragedy in the future; getting federal grant money to our communities based on the risks they face, getting firefighters the funding they need for new equipment and increased personnel, making sure our first responders can talk to each other during an emergency.And let us be very clear: not forgetting means destroying the terrorist network that planned the attacks and bringing those responsible to justice.Today, September 11th, 2008, we remember what's been lost, and we find strength in what we still have. No amount of time can ultimately heal what was seared into our hearts and minds on September 11th, 2001.  But those wounds continue to drive us to make sure no New Jerseyan, no American, ever has to experience them again.If we come together now, as we did on one of the darkest days in our nation's history, then I believe our future can be filled with security, prosperity and hope—and I'm convinced that our brightest days are yet to come.Once again, my thoughts and prayers for the 700 New Jerseyans who were lost on that fateful day and for their families who live with this for the rest of their lives and for whom this day has an incredible resonance in their lives, far beyond what anyone can imagine. But for votes here in the Senate I would be in New Jersey today and I wanted to take to the floor to let them know we are one with them on this most sacred day.                                                                 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9f5fd7bd-d617-4c74-b45a-f81fabc19391,\"SCHUMER, MENENDEZ, BROWN & CASEY CALL FOR FORECLOSURE FREEZE ON FANNIE, FREDDIE LOANS\n                    \n                            Senators Urge 90-Day Timeout On Mortgages Held In Companies' Portfolios\n                    \n                      September 11, 2008\n                     Senators Say Regulators Who Urged Private Lenders in ‘HOPE NOW' Alliance to Modify Loans Should Take Own Advice And Bless Workout Program at GSEsWASHINGTON, DC—U.S. Senators Charles E. Schumer (D-NY), Robert Menendez (D-NJ), Sherrod Brown (D-OH) and Bob Casey (D-PA) today called on the newly tapped chief executives of Fannie Mae and Freddie Mac to put an immediate and temporary freeze on foreclosures on all loans held by the companies.  The freeze would serve as a stopgap measure until the two companies, which were taken over by the U.S. government in an emergency rescue plan announced by Treasury officials last weekend, can perform wholesale loan modifications allowing millions of Americans to keep their homes.\"\"These are mortgages held in their entirety by Fannie Mae and Freddie Mac, and can be modified with little or no limitation.  This action would provide immediate relief to many homeowners and, as importantly, give each GSE a further opportunity to turn these non-performing loans into performing assets to minimize losses,\"\" the senators wrote.In their letter, the senators called on Fannie Mae and Freddie Mac to declare a temporary moratorium of at least 90 days on all impending foreclosure proceedings on whole mortgages held within the firm's portfolio. This \"\"timeout\"\" would give the GSEs an opportunity to modify those troubled loans. The senators said there was precedent for the companies to undertake an aggressive workout program. Since July, FDIC Chairwoman Sheila Bair has initiated modification programs with banks that have gone into receivership; the senators said today that Fannie and Freddie, which are now under government control, should adopt a similar approach.Even prior to Bair's action, top regulators like Federal Reserve Chairman Ben Bernanke and Treasury Secretary Hank Paulson had urged private lenders and servicers to perform loan modifications to help keep families in their homes and turn mortgages into performing assets under the so-called \"\"HOPE NOW\"\" program. The senators said Thursday that the government could now act in that same spirit by urging workouts at Fannie and Freddie.\"\"A more proactive change in Fannie Mae and Freddie Mac policies regarding loan modifications would not only help homeowners and the housing market more generally, but would benefit the firms, and could limit any costs to the federal government by transforming non-performing loans into performing assets with stable, long-term cash flows,\"\" the senators said.Modifying at-risk mortgages benefits both the families facing foreclosure and maximizes the value of the mortgage asset. According to Chairwoman Bair, a foreclosed mortgage pays $0.30 on the dollar whereas a mortgage that is modified to be affordable for the homeowner typically pays $0.90 on the dollar while allowing families to remain in their homes.A copy of the senators' letter appears below.September 11, 2008Herb Allison                                                                             David MoffettChief Executive Officer                                                             Chief Executive OfficerFannie Mae                                                                              Freddie Mac3900 Wisconsin Ave NW                                                         8200 Jones Beach DriveWashington, DC 20016-2892                                                  McLean, VA 22102-3110James B. Lockhart IIIDirectorFederal Housing Finance Agency1700 G Street, NW4th FloorWashington, DC 20552Dear Director Lockhart, Mr. Allison and Mr. MoffettWe are writing to you today to urge you, in your capacities as the Conservator and CEO's of Freddie Mac and Fannie Mae, to reverse certain policies of your predecessors and use your roles as the leading players in the mortgage market both to help victims of the housing crisis save their homes, improve the fiscal well-being of your firms and stabilize housing prices by reducing the excess supply of homes on the market.  As you are well aware, the housing crisis continues to devastate too many American families.   As a result of declining home values, questionable lending practices and a deteriorating economy, millions of borrowers find themselves facing foreclosure and improving portfolio performance and long-term value.  In many instances, these homeowners could remain in their homes and their loans could once again become performing assets through a loan modification. Congress, Secretary Paulson, and Federal Reserve Chairman Bernanke have all encouraged lenders and servicers to facilitate such modifications where possible.Though both Fannie Mae and Freddie Mac have taken preliminary steps to improve their modification policies, neither has gone as far as many private lenders and servicers in this regard.  A more proactive change in Fannie Mae and Freddie Mac policies regarding loan modifications would not only help homeowners and the housing market more generally, but would benefit the firms, and could limit any costs to the federal government by transforming non-performing loans into performing assets with stable, long-term cash flows. The FDIC's experience shows that a foreclosed mortgage pays $0.30 on the dollar in the current environment, whereas a mortgage that is modified to be affordable for the borrower typically pays nearly $0.90 on the dollar. Clearly, modifying at-risk mortgages maximizes the value of these assets. First, we are calling on Fannie Mae and Freddie Mac to declare a temporary moratorium of at least 90 days on all impending foreclosure proceedings on whole mortgages held within each firm's portfolio, and to conduct an immediate and thorough review of those mortgages. These are mortgages held in their entirety by Fannie Mae and Freddie Mac, and can be modified with little or no limitation.  This action would provide immediate relief to many homeowners and, as importantly, give each GSE a further opportunity to turn these non-performing loans into performing assets to minimize losses.Second, we are asking that both Fannie Mae and Freddie Mac revisit their policies and practices governing modifications involving Mortgage Backed Securities [MBS] issued by the respective agencies.  In the case of Fannie Mae in particular, according to the servicing guidelines that govern Fannie Mae MBS, loans can only be modified if they are delinquent for 120 days, at which point the servicer must purchase the loans whole from the MBS prior to modification. There is little question that both of these requirements significantly reduce the likelihood that problematic loans will be modified. In particular, requiring four months of delinquency only furthers the likelihood that homeowners will be forced into foreclosure. Though the introduction of the HomeSaver program has brought some relief, a true loan modification remains far more preferable to an additional loan made to a delinquent borrower.     Given that Fannie Mae and Freddie Mac are already guaranteeing the loans in Fannie Mae- and Freddie Mac-backed MBS, there seems little justification under conservatorship for maintaining these and other policies that limit loan modifications, which serve the dual purposes of keeping families in their homes and of maximizing the overall value of these mortgage assets. These changes would have the additional benefits of reducing risks to taxpayers and alleviating the downward pressure on housing prices which threaten all homeowners regardless of the type of loan they have or who owns that loan.  We urge both of you to take whatever actions are necessary to facilitate the changes in your policies and practices so that more American families do not have to suffer the economic and personal disaster of foreclosure.We thank you for your prompt attention, and look forward to your response.Sincerely, Charles Schumer                                                          Robert MenendezUnited States Senator                                                   United States SenatorSherrod Brown                                                             Robert CaseyUnited States Senator                                                   United States Senator                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=72fe04d8-1705-47f6-8725-884ba3c02918,\"LAUTENBERG, MENENDEZ, PASCRELL ANNOUNCE NEW FUNDING FOR NJIT TO CONTINUE DEVELOPING 'SMART GUN' TECHNOLOGY\n                    \n                      September 10, 2008\n                     WASHINGTON—U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) and U.S. Rep. Bill Pascrell, Jr. (D-NJ-08) today announced that the Department of Justice has awarded the New Jersey Institute of Technology (NJIT) with a $254,889 federal grant to continue developing childproof smart gun technology.The grant, which was earmarked by Senators Lautenberg and Menendez and Rep. Pascrell in last year's annual Congressional appropriation bill, will help NJIT improve its \"\"Dynamic Grip Recognition\"\" technology and move smart gun technology closer to commercial consideration.   \"\"Technology plays a critical role in the fight against the influx of illegal guns on our streets.  State-of-the art personalized firearms, along with common-sense gun policies, can help decrease senseless gun deaths,\"\" Sen. Lautenberg said.  \"\"I applaud NJIT for its vision and leadership as it works to create safer guns and will monitor its progress closely.  I will continue to fight for federal funding that allows New Jersey to stay at the forefront of technological developments that will protect our residents from the dangers of gun violence.\"\"\"\"Far too many tragedies start with children getting hold of a gun in their own homes or elsewhere,\"\" said Senator Menendez. \"\"We need to keep them safe from endangering themselves, their families and their friends. Handgun safety must be brought into the 21st century and must be brought in line with child-proof safety mechanisms on any number of less deadly consumer products. These federal funds will go toward new technology that will expand the ways we can keep our children safe.  I am pleased that the New Jersey Institute of Technology will be a leader in this important public safety effort.\"\"\"\"Smart gun technology holds the potential to dramatically reduce the number of children involved in handgun related shootings,\"\" stated Pascrell.  \"\"It is a common-sense public safety solution to the horrible accidental shootings, violent crimes and suicides that occur far too often in our communities.  From aspirin containers, to cigarette lighters and baby car seats, the government has wisely implemented safety guidelines.  Yet handguns, which kill a staggering number of kids, have been off limits to safety improvements.  With this critical grant funding, NJIT will continue its national leadership in developing safer, smarter guns.\"\"  \"\"We are grateful for the previous support of Senators Lautenberg and Menendez, and Congressman Pascrell that allowed us to take Dynamic Grip Recognition (DGR) from concept to practice.  The project team looks forward to using this new grant to solve the challenge of adding firing control to produce a complete prototype weapon that validates the child-safe handgun concept,\"\" said Dr. Donald H. Sebastian, Sr. Vice President for Research and Development at NJIT.Since 2000, NJIT has spearheaded efforts to develop a personalized handgun that can recognize, instantly and reliably, one or more pre-programmed authorized users.In December of 2002, New Jersey became the first state to pass legislation specifying that three years after it is determined that personalized handguns are available for retail sale, dealers and manufacturers will not be able to sell, assign or transfer any handgun legally unless it is personalized.                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4e8c4c51-a1ab-4317-a097-3479b9ca0a39,\"ON THE EVE OF SEPTEMBER 11th ANNIVERSARY, U.S. SENATOR ROBERT MENENDEZ STRESSES REMEMBERING THOSE WHO WERE LOST, PREVENTING A REPEAT\n                    \n                      September 10, 2008\n                     Washington- On the eve of the 7th anniversary of the terrorist attacks that killed 3000 Americans, including hundreds of New Jerseyans, U.S. Senator Robert Menendez (D-NJ) is honoring the victims and the heroism displayed on that day. Sen. Menendez is also keeping in mind what still needs to be done to secure our nation from terrorism and to do right by New Jersey first responders and volunteers who became ill after the attacks.                He released the following statement:\"\"Not just tomorrow, but every day of our lives, we remember the effects of those tragic attacks on American soil. The emptiness in our hearts left by the loved ones, friends and neighbors we lost. The empty skyline of lower Manhattan. The illnesses that continue to haunt and take the lives of those who were around Ground Zero, including our first responder heroes.\"\"As another 9/11 anniversary approaches, we will never forget the thousands of fellow Americans and hundreds of fellow New Jerseyans who were killed that day. We will never forget the towering heroism our country displayed during one of our darkest days.  Terrorists tried to engulf us in the smoke of fear and hatred. And for a moment, we felt like the whole world went dark. But the light of heroism burst through. Individuals rushed into burning buildings risking their lives to save others, strangers opened their homes to help strangers, Americans all over the country rushed to give whatever they could to help those in need.\"\"It was a day when the nation came together. It was a day when it didn't matter what part of the country you came from, what your family background was, or anything else. It was a day when we all stood together as Americans. I hope we will always carry with us those we lost and the spirit of our nation that was on display.\"\"Not forgetting what happened that day means supporting all the heroes, paid and volunteer, who risked their lives to save others. Not forgetting means caring for those who were made ill because of the attacks. Not forgetting means securing our ports, chemical and nuclear plants so we don't have to experience another horrendous tragedy in the future. And not forgetting means destroying Al Qaeda and bringing those responsible to justice. I truly hope we rededicate ourselves to that effort.\"\"                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f2ace710-14de-4030-85b2-2914240498fd,\"NEW REPORTS DETAILING SCANDALOUS TIES BETWEEN OIL COMPANIES AND BUSH ADMINISTRATION IS ANOTHER REASON TO BE WARY OF COASTLINE DRILLING PLAN, SAYS SEN. MENENDEZ\n                    \n                            Inspector General reports released today detail gifts, sweetheart contracts, sex and drugs in relationship between government, oil companies and oil services firms\n                    \n                      September 10, 2008\n                     WASHINGTON - Today, the Department of the Interior's internal watchdog released three reports detailing highly-inappropriate ties between oil companies and the Minerals Management Service - the federal agency that manages the federal leases by which oil companies obtain much of their oil and gas. Though members of the MMS are subject to strict government ethics rules, its officials steered sweetheart contracts to retiring co-workers, took numerous expensive gifts from oil companies, and engaged in sexual relations and drug use within the agency and with oil company representatives. One of the programs most under scrutiny is the Royalty-in-Kind program, by which the government takes oil and gas from oil companies in exchange for their use of public lands, then sells that oil and gas on the market to generate revenue for taxpayers.U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee who is the author of the COAST Act to permanently ban drilling along the Outer Continental Shelf and has been leading the fight against coastline drilling, today released the following statement:\"\"The two oil men in the White House have allowed our government to become a wholly-owned subsidiary of Big Oil. As administration officials were being wined and dined and engaged in wholly inappropriate relationships with the oil companies, I doubt they were thinking about American families who can barely afford to drive their kids to school.\"\"I hope when people learn more about this intimate relationship between the Bush administration and the oil companies, they will think twice about supporting a coastline drilling plan that is more about the price of oil company stock than the price at the pump. George Bush, John McCain and the Republican Party have endorsed an energy policy that would continue to make record profits for oil companies but would do nothing to lower energy prices for middle-class and working Americans. We need a change of direction, and that will come when we kick the oil company influence out of the White House.\"\"                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cc9212dd-d850-4b33-bdb9-21b58071f909,\"U.S. SENATOR ROBERT MENENDEZ HOSTS \"\"CHILDREN'S HEALTH DAYS\"\" ACROSS NEW JERSEY\n                    \n                      September 10, 2008\n                     In what has become a yearly tradition, U.S. Senator Robert Menendez will host his \"\"Children's Health Days,\"\" an opportunity for children who are uninsured, underinsured or enrolled in Medicaid, to receive the vaccinations they need. Vision and dental screenings will also be available.Children's Health Days will be held on multiple days in numerous New Jersey locations during September and October. Children must be accompanied by a parent or legal guardian and must bring up-to-date immunization records.For more information, please call Sen. Menendez's offices in Newark (973) 645-3030 and Barrington (856) 757-5353.CAMDEN - Click Here for Event FlyerSaturday, September 13, 2008 9:00 am - 1:00 pmCAMcare Health Corporation817 Federal StreetCamden, New Jersey 08103JERSEY CITY - Click Here for Event FlyerSaturday, September 20, 20089:00 am - 1:00 pmMetropolitan Family Health Network935 Garfield AvenueJersey City, New Jersey 07304VINELAND - Click Here for Event FlyerSaturday, September 20, 20088:00 am - 1:00 pmCommunity Health Care, Inc. 319 Landis AvenueVineland, New Jersey 08360ASBURY PARK - Click Here for Event FlyerSaturday, September 27, 20089:00 am - 12:30 pmVisiting Nurse Association of Central Jersey Community Health Center1301 Main StreetAsbury Park, New Jersey 07712PLAINFIELD - Click Here for Event FlyerSaturday, October 4, 20089:30 am - 12:30 pmNeighborhood Health Center Plainfield1700-58 Myrtle AvenuePlainfield, New Jersey 07063\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6fb3ab33-0579-49a3-86d6-04ecd3fdedf9,\"AT PIVOTAL MOMENT IN PAKISTAN, SEN. MENENDEZ REQUESTS U.S. STRATEGY UPDATE FROM SECS. RICE AND GATES\n                    \n                            Pakistan government under new leadership, U.S. military strikes within Pakistan have increased\n                    \n                      September 9, 2008\n                     WASHINGTON - At this pivotal moment for Pakistan and U.S. national security interests within Pakistan, U.S. Senator Robert Menendez (D-NJ) is asking Secretary of State Condoleezza Rice and Defense Secretary Robert Gates for an update on the current U.S. strategy to target al Qaeda in Pakistan's Federally Administered Tribal Areas. As al Qaeda continues to operate in a safe zone, Pakistan has undergone a transition from the government of former President Pervez Musharraf, who was supported by more than $11 billion from the U.S. since 9/11 in primarily military aid. In addition, the first U.S. ground offensive into Pakistan was reported last week and repeated remote aerial strikes have been reported, perhaps signaling the implementation of a more active U.S. military involvement.Senator Menendez is the Chairman of the Senate Foreign Relations subcommittee that oversees foreign assistance programs. He has previously requested information on the strategy and effectiveness of U.S. assistance to Pakistan in written correspondence with the Bush administration and in hearings he has convened. The administration's responses have tended to be vague and have not included evidence of progress in the fight against terrorists.In addition, a Government Accountability Office report released in April that requested by Senator Menendez asserted that the administration had no comprehensive plan for targeting al Qaeda in Pakistan. For these reasons, Senator Menendez is again requesting details from the Bush administration.PDF of letter to Rice and Gates: http://menendez.senate.gov/pdf/20080909Ltr_RiceGates.pdfText of letter:September 9, 2008The Honorable Condoleezza RiceSecretary of StateU.S. Department of StateWashington, DC 20520The Honorable Robert GatesSecretary of Defense1000 Defense PentagonWashington, D.C. 20301-1000Dear Secretaries Rice and Gates:                During this pivotal time in Pakistan's history - and, by extension, this pivotal time for our own national security interests that are closely linked to Pakistan - I again request that you provide me with a full update on your most current military and diplomatic strategy for ensuring that al Qaeda is properly targeted and eliminated, if possible, within the Federally Administered Tribal Areas (FATA).For nearly seven years since September 11, 2001, the Administration undertook a strategy of supporting former President Pervez Musharraf's government with billions of dollars in primarily military aid in the hopes that his military would effectively destroy the al Qaeda central command. Unfortunately this approach seems to have failed, according to information from intelligence reports indicating that Osama bin Laden and his organization are operating in a safe haven within the FATA at pre-9/11 levels of strength and capability. As you know, I have been raising questions about the direction of our strategy for Pakistan, both in written correspondence to you and in hearings I convened within the Foreign Relations subcommittee that I chair. Your departments' responses have been disappointingly thin and devoid of detail. This weak response, coupled with a Government Accountability Office report released in April, would lead most observers to the conclusion that, in fact, we have had no strategy to effectively target al Qaeda.The developments of the past few days, weeks and months have again brought Pakistan's security situation into focus for the public at large. The departure of former President Musharraf along with new President Asif Ali Zardari's rise to power certainly serve as additional reminders that we are now dealing with a different government in Islamabad. Furthermore, last week marked the first reported U.S. ground offensive against militants within Pakistan's borders. That, combined with continued remote air strikes inside of Pakistan, certainly would suggest that we may be using new tactics in the fight against al Qaeda and have perhaps ceased to wait for Pakistan's military to do the job.The fight against al Qaeda in the FATA region is as vital to our national security as any, and as such, we in Congress need full information on the current strategy and whatever progress it may be making. As the chair of the subcommittee with jurisdiction over foreign assistance programs, I am also interested in any changes to our aid programs and how they fit with new tactics we may be using to target terrorist groups.To this point, your departments have been less than forthcoming, but if we are to ensure that we are following a course that makes our nation the safest it can be, it is imperative that you provide us with details. Absent this information, we are left to judge the success of our seven-year long efforts by the facts at hand: despite more than $11 billion in aid from American taxpayers, al Qaeda has been allowed to regroup in a safe zone along the Afghanistan-Pakistan border.I look forward to your response and the information I seek.Sincerely, ______________________ROBERT MENENDEZUnited States Senator                                                                 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c77766da-ff1b-4cb0-936f-333dc3a4aecc,\"REUNITING TROOPS WITH THEIR FAMILIES: SEN. MENENDEZ INTRODUCES LEGISLATION TO PROVIDE LEGAL PERMANENT RESIDENT STATUS FOR KIN OF U.S. MILITARY\n                    \n                            Immediate family of those who fought for our country would be eligible\n                    \n                      September 9, 2008\n                     WASHINGTON - To honor the men and women who have served and fought for our country in the military, U.S. Senator Robert Menendez (D-NJ) today introduced legislation that would grant legal permanent resident status to immediate family members of servicemen and servicewomen. Under the bill, parents, spouses or children of military men and women who have served in active duty or who died in service of the nation would be eligible for legal permanent resident status. The eligibility would also be extended to the children of Filipino World War II veterans.\"\"Our country asks a great deal of our troops - we rely on them for our security, and we are forever grateful for their service,\"\" said Senator Menendez. \"\"One of the ways we can express our gratitude is to allow our troops who have parents, husbands, wives, sons or daughters legally and patiently waiting in line to be reunited with their families here in the United States. This is a show of thanks and support for our troops.\"\"                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4985a7e3-3c2f-4841-a9dc-68eae6621a59,\"SEN. MENENDEZ REACTS TO FANNIE MAE/FREDDIE MAC TAKEOVER PLAN\n                    \n                      September 7, 2008\n                     WASHINGTON - As the Bush administration takes over mortgage giants Fannie Mae and Freddie Mac, U.S. Senator Robert Menendez, a member of the Senate Banking Committee, released the following statement:\"\"As I await full details of this plan, I am troubled by the fact that when I specifically asked Secretary Paulson, Chairman Bernanke and Chairman Cox about a government bailout in the Banking Committee this summer, they could not foresee this situation. Instead, they were looking for a blank check from Congress. The questions now are, how much do they want and how long do they want it for? The burden they would put on taxpayers for a problem they exacerbated with their weak response must be made clear. I expect administration officials and financial market regulators to answer to members of the committee in the coming days and weeks.\"\"                                                                 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cbd3ce30-077f-472b-a3f8-01f61655aecf,\"AS TROPICAL STORM HANNA PREPARES TO DUMP RAIN ON NJ, SEN. MENENDEZ SAYS RESIDENTS SHOULD BE VIGILANT ABOUT POSSIBLE FLOODING\n                    \n                            Senator's office has been in communication with Army Corps of Engineers and FEMA, and has relayed information to local mayors, police chiefs and emergency officials\n                    \n                      September 6, 2008\n                     WASHINGTON - As Tropical Storm Hanna moves up the eastern United States today, forecasters are predicting that it will dump several inches of rain on New Jersey, which has numerous flood-prone areas. U.S. Senator Robert Menendez (D-NJ), whose office has been in contact with U.S. Army Corp of Engineers and the Federal Emergency Management Agency, today said he wants New Jersey residents to be prepared for the possibility of flooding and that his office has helped relay information to local mayors, police chiefs and Office of Emergency Management county coordinators in flood-prone areas, apprising them of a web resource where they can monitor river levels: http://waterdata.usgs.gov/nj/nwis/current/?type=flow.\"\"As we can all vividly remember from previous flooding, preparedness can make all the difference,\"\" said Senator Menendez. \"\"Hopefully we will dodge a bullet this weekend, but with the possibility of a tropical storm that could bring buckets of rain, I want New Jerseyans to be ready and to be safe, for their families and for their property. It is important to be vigilant, to keep an eye on news reports and to listen to local authorities and first responders.\"\"My office is in contact with the Army Corps of Engineers and FEMA and will continue to receive updates over the weekend. I directed my staff to proactively contact local mayors, police chiefs and emergency response coordinators in flood-prone areas to relay information and ensure that they are aware of the resources available to monitor water levels in nearby rivers. Preparedness and information are important, and the more our state is ready, the better we can weather this storm.\"\"                                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ca7e4143-1a2c-465e-a9f7-ba4fc4e9dd02,\"MENENDEZ, LAUTENBERG ANNOUNCE $300,000 FOR POLICE OFFICER HIRING\n                    \n                            COPS Grant will benefit Irvington and Jersey City\n                    \n                      September 5, 2008\n                     New Jersey - Sens. Robert Menendez and Frank Lautenberg announced today that the Irvington Police Department will receive $225,000 and the Jersey City Police Department will receive $75,000 for the salary and benefits of additional police officers.  This grant was awarded through the Office of Community Oriented Policing Services (COPS) of the Department of Justice.\"\"Our ever-growing population and the new day-to-day challenges that law enforcement faces require additional uniformed officers on the beat in New Jersey,\"\" said Sen. Menendez.   \"\"This funding will help protect New Jerseyans, providing for a better quality of life in our communities.\"\"\"\"To keep our communities safe, we need police on our streets and in our neighborhoods who understand and tackle the real challenges residents face—and this funding will help make that happen,\"\" Sen. Lautenberg said.  \"\"Violent crime and terrorist threats, combined with tight budgets, are forcing our law enforcement agencies to do more with less.  This funding through the COPS program will help make Irvington and Jersey City safer and I will continue to fight to make sure our police and other law enforcement officials across New Jersey have the resources they need.\"\"Funding under these grants will allow law enforcement agencies to help pay for the salary and benefits to hire additional sworn officers to perform community policing and homeland security activities.  Grants will be made for up to 75 percent of the total salary and benefits of each officer over three years, up to a maximum of $75,000 per officer. Grants will be awarded to 62 law enforcement agencies in 32 states and Puerto Rico.                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=565fff17-b2e5-4d34-a0d8-2364004983f4,\"LAUTENBERG, MENENDEZ ANNOUNCE $1.5 MILLION FOR DEVELOPMENT OF NEWARK'S HIGH-TECH SECTOR\n                    \n                            Grant Will Help with the Construction of the Digital Century Center Building\n                    \n                      September 4, 2008\n                     NEWARK, N.J. - Today, U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) announced that the U.S. Department of Commerce has awarded $1.5 million in federal funds for the development of the University Heights Science Park in Newark and the city's high-tech sector.\"\"This funding brings us a step closer to realizing the full potential of the University Heights Science Park in Newark,\"\" Sen. Lautenberg said.  \"\"We must continue to support the development of Newark with grants like these that foster scientific advancement, create high-tech jobs and strengthen our largest city's economy.\"\"\"\"From the days of Thomas Edison, our state has been a leader in scientific achievement, and we want to keep it that way in this 21st Century economy,\"\" said Sen. Menendez.  \"\"By supporting the University Heights Science Park with this federal funding, we can promote the science that will drive our economy, create good-paying jobs and help the world.\"\"The $1.5 million grant, administered by the Economic Development Administration, will go towards the heating and air conditioning of the Digital Century Center in the Science Park.  The project is expected to create more than 100 jobs and bring in more than $20 million in private investment.The new Digital Century building will become the heart of the Science Park.  It will house laboratory and educational space, as well as highly advanced technology companies.The Science Park, which opened in 1996, is set up for science and technology research and development.  The Science Park is a collaboration between Newark, private companies and four public institutions of higher learning: Rutgers University, the New Jersey Institute of Technology, the University of Medicine and Dentistry of New Jersey and Essex County College.                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ba72fbc6-fcfb-4ad5-8c55-eb6929b2f3b6,\"SENATORS MENENDEZ, LAUTENBERG ASK USDA TO HELP NEW JERSEY FARMERS\n                    \n                            This year's violent storms destroyed crops; a natural disaster designation would bring welcome economic relief\n                    \n                      August 26, 2008\n                     Washington - U.S. Senators Robert Menendez and Frank Lautenberg have written a letter to U.S. Department of Agriculture Secretary Ed Schafer, encouraging Sec. Schafer to grant Governor Jon Corzine's request and issue a natural-disaster designation for the 10 New Jersey counties in which crops have been devastated by violent storms, floods, drought, and hail. Many of New Jersey's small family farmers cannot absorb the financial losses caused by the destruction of their entire crops.\"\"We must look after New Jersey farmers, particularly in difficult years like this one,\"\" said Senator Menendez.  \"\"High winds, torrential downpours and even hail in the middle of summer have destroyed our blueberries, fruits, vegetables, and grain crops, serving up an additional challenge in these already hard financial times.  A natural disaster designation would allow New Jersey farmers to access much needed economic relief.\"\"    \"\"Heavy storms, flooding and drought have hit New Jersey farmers hard this year and we need to do all we can to help them recover,\"\" Sen. Lautenberg said.  \"\"I support Governor Corzine's request for a natural disaster designation in New Jersey, and I will continue to fight to make sure our farmers get the assistance they need to keep growing their crops in these difficult times.\"\"Sens. Menendez and Lautenberg are encouraging the U.S. Department of Agriculture to declare a natural disaster designation for storms and weather related destruction to crops from May through August 10 including Atlantic, Burlington, Camden, Cape May, Cumberland, Gloucester, Mercer, Monmouth, Ocean, and Salem counties.Text of letter to Secretary Schaffer: August 25, 2008Honorable Ed SchaferSecretary, U.S. Department of Agriculture1400 Independence Ave., S.W.Washington, DC 20250Dear Secretary Schafer:New Jersey farmers have had this year's harvest devastated by a series of violent storms and destructive weather patterns. Our blueberries, fruits, vegetables, and grain crops have been hard hit by high winds, torrential downpours, drought, hail, and even waterspouts. These storms began in May, but have persisted throughout the summer, culminating in the hail storms of August 10th.The hail physically damaged blueberry bushes and shredded plants, while its icy cold froze and killed the leaves. This has been an economic disaster, inflicting substantial losses to New Jersey's most important crops.  As a result, Governor Jon S. Corzine has requested a federal natural-disaster designation in 10 of New Jersey's 21 counties.While your Farm Service Agency (FSA) is continuing to document the damage from the last storm, it is already clear that many farmers have been crushed, seeing their entire crops destroyed and their annual earnings wiped out. Paul Hlubik, the State Executive Director of the USDA's FSA characterized the damage as \"\"quite devastating\"\".We urge you to grant Governor Corzine's request, and issue a natural-disaster designation for the damage from the storms on May 12-16th, the drought which began on June 10th, the wind and hail on June 24th, and the hail on August 10th. We further ask that you include all 10 of the affected counties in this designation: Atlantic, Burlington, Camden, Cape May, Cumberland, Gloucester, Mercer, Monmouth, Ocean, and Salem.New Jersey's farmers desperately need access to the emergency loans and relief measures that accompany a federal natural-disaster designation. Many of New Jersey's small, family farms simply do not have the resources to cope with this catastrophe without federal help. Thank you for considering this request.Sincerely,ROBERT MENENDEZ                                              FRANK R. LAUTENBERGUnited States Senator                                                 United States Senator                                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=29e4f5c5-6f02-472d-a250-1f315056734a,\"LAUTENBERG, MENENDEZ ANNOUNCE $400 MILLION FOR THE THREE MAJOR NJ-NY AIRPORTS\n                    \n                            TSA to Sign Commitment to Fund Newark Liberty, JFK, LaGuardia Baggage Screening Systems\n                    \n                      August 22, 2008\n                     NEWARK, N.J. - Today, U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) announced the Transportation Security Administration (TSA) will award $400 million in federal funds for the three major airports in the New Jersey-New York area: Newark Liberty International, John F. Kennedy International (JFK) and LaGuardia Airports.\"\"We need to do all we can to ensure Newark Liberty, JFK and LaGuardia are as safe, modern and secure as possible,\"\" Sen. Lautenberg said.  \"\"These funds show the federal commitment to making sure three of the busiest airports in the country have the necessary technology to meet public safety and travel demands.\"\"\"\"Our airports are among the nation's busiest, and we must ensure they are secure. These funds will go help enhance a vital layer of security that we must keep in place to ensure New Jersey passengers are safe,\"\" said Sen. Menendez.  \"\"We will continue fighting on the federal level to protect and enhance our transportation infrastructure and security operations, which is vital to homeland security.\"\"The funds will be used to reimburse the Port Authority of New York and New Jersey (PANYNJ) for installing new baggage screening systems at the three airports.  Half of the funding will be allocated for FY 2008 and the other half for FY 2009.This funding announcement comes after Sens. Lautenberg and Menendez secured more than $85 million for critical transportation projects in New Jersey in the Senate Transportation, Housing and Urban Development Appropriations bill.  Projects in the bill, which was approved by the Appropriations Committee in July, include $75 million for the Trans-Hudson Midtown Corridor tunnel and more than $1 million for the Hudson-Bergen Light Rail.Sen. Lautenberg is a member of the Appropriations and Commerce, Science and Transportation Committees, both of which oversee federal spending at the nation's airports.  Since May, Lautenberg and Menendez have announced more than $15 million in federal funding for upgrades and repairs at airports across New Jersey.                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=21eec5c8-7ee4-42b5-a5fd-85f3684f8aa5,\"MENENDEZ, HOLT, AND CORZINE HIGHLIGHT NEW PROPERTY TAX RELIEF INITIATIVE IN MONROE\n                    \n                            Millions of American Homeowners Who Do Not Itemize on Federal Taxes Will Be Able To Take Additional Standard Deduction\n                    \n                      August 20, 2008\n                     Monroe, NJ - U.S. Senator Robert Menendez, U.S. Rep. Rush Holt (NJ-12), and New Jersey Governor Jon Corzine were in Monroe today to discuss a new a property tax relief initiative that Menendez and Holt included in federal housing legislation signed into law by President Bush on July 30, 2008. The new property tax deduction will benefit homeowners who do not itemize on their Federal tax returns. Under the law, single-filing property taxpayers will be able to take an additional standard deduction of $500 and joint filers will be able to deduct $1,000 for state and local property taxes paid.  According to the New Jersey Department of Taxation, nearly 600,000 New Jersey residents will benefit from the initiative. Two New Jersey homeowners who will receive the deduction - Herb and Susan Junker of Monroe - hosted the event in front of their Monroe house.\"\"We're hoping that this will benefit families who have seen their mortgage payments skyrocket and are concerned about the price of driving the kids to school, driving to work and putting food on the table,\"\" Menendez said. \"\"We know that our seniors are even more likely to claim the standard deduction on their tax returns, and we're hoping that this will provide relief to those who may have fixed or limited incomes but still carry the burden of property taxes. Even better, we‘ll provide this break without depleting the resources brought in by property taxes that help communities build schools and provide a quality education for our children.\"\"\"\"Among the economic challenges millions of New Jerseyans and Americans face during this downturn - along with rising gas prices, food costs and college tuition - is high property taxes,\"\" Holt said. \"\"Hundreds of thousands of New Jersey residents will now receive some relief for the property taxes they pay.\"\"In 2005, there were 72.3 million owner-occupied households in the United States, but only 40.5 million of those taxpayers claimed an itemized deduction for real estate property taxes. The more than 30 million homeowners who don't currently benefit from property tax deductions include elderly homeowners who no longer itemize in order to receive a mortgage interest deduction but are still subject to high property taxes.                                                                     # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=37cecf61-b62d-4203-be5e-528cf985b8b2,\"LAUTENBERG, MENENDEZ ANNOUNCE $555K FOR ESTUARY PRESERVATION AND RESEARCH\n                    \n                            Grant Will Help Rutgers Operate its Research Program for the Jacques Cousteau National Estuarine Research Reserve\n                    \n                      August 19, 2008\n                     NEWARK, N.J. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the National Oceanic & Atmospheric Administration (NOAA) will award $555,000 in federal funds to the Jacques Cousteau National Estuarine Research Reserve (JC NERR) to maintain long-term research and monitoring programs of New Jersey's estuaries.\"\"These funds help ensure that the estuary research program at Rutgers will continue to provide environmental, educational and public health benefits to our coastal communities,\"\" Sen. Lautenberg said.  \"\"We need to do all we can to keep New Jersey at the forefront of water and coastal research and this grant will further that effort.\"\"\"\"The environment here in the Garden State is one of our state treasures,  and this type of monitoring will help us keep up with the changing climate and its effect on our coastal communities,\"\" said Sen. Menendez.  \"\"I am pleased that students will benefit from this funding, and will be encouraged to continue to care for our environment.  It is important to educate future generations in protecting our natural resources for the benefit and health of our state.\"\"The grant will help JC NERR to conduct its coastal training program and monitoring program activities.  The funding will also allow JC NERR to continue its programs in:• Research: by conducting long-term studies to follow the change and stability of the reserve to improve coastal management;• Education: by conducting K-12 education programs and professional development to improve public awareness of estuarine-related issues; and• Stewardship: by improving protection of estuaries for public health, watersupply, fish and shellfish populations and recreation.JC NERR is operated by the Institute of Marine and Coastal Sciences at Rutgers University and encompasses 110,000 acres of land in Ocean, Burlington and Atlantic Counties, including the unique Mullica River-Great Bay ecosystem.  JC NERR was developed to protect estuaries, which are a mix of salt and fresh water that occur when rivers meet the ocean.Since May, Sens. Lautenberg and Menendez announced more than $3.2 million for environmental, coastal and ocean research for New Jersey.                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=62ee3639-c376-413b-925f-b14d189da04d,\"BILL REQUIRING BETTER INFORMATION ABOUT FIRE SAFETY ON COLLEGE CAMPUSES BECOMES LAW\n                    \n                            Measure Included in Larger Higher Education Bill\n                    \n                      August 18, 2008\n                     NEWARK, N.J. - Last week, legislation authored by U.S. Sen. Frank R. Lautenberg (D-NJ) and Rep. Bill Pascrell, Jr. (D-NJ-08) and co-sponsored by Sen. Robert Menendez (D-NJ) to provide students and families with crucial fire safety records of the nation's colleges and universities was signed into law by the President.  The Lautenberg-Pascrell bill was included as part of a larger higher education package.Since 1990, colleges and universities have been publishing crime statistics on campus thefts, assaults, and sexual and capital crimes, but fire-related incidents have until now not been required to be made public.\"\"There is safety in information.  Parents and students need to know that college campuses are doing all they can to keep students safe.  We must take every step possible to prevent a tragedy like the Seton Hall fire from ever happening again.  I am glad our bill is now law so we can finally give the public the information it needs to evaluate fire safety at colleges and universities,\"\" Sen. Lautenberg said.\"\"I am pleased that our work to close a dangerous public safety loophole at college campuses all over the nation has finally paid off.  If these common sense fire safety disclosure requirements were in place years ago, lives may have been saved and perhaps fewer families and classmates would have experienced the horrific shock and pain that overwhelmed the Seton Hall community in 2000,\"\" stated Rep. Pascrell.Sen. Lautenberg and Rep. Pascrell were joined in applauding the bill's enactment into law by Sen. Robert Menendez (D-NJ), the lead co-sponsor of the Senate bill.\"\"College students should be thinking about their futures and not worried about losing their lives,\"\" said Sen. Menendez.  \"\"We want to keep them safe and help them avoid catastrophic tragedies like the one we experienced in New Jersey.  It is important to arm them with all of the information we can so students and their families can make informed choices as to which colleges and universities are safest.\"\"The Lautenberg-Pascrell measure, the Campus Fire Safety Right-to-Know Act (S. 354 and H.R. 354), requires campus fire safety information to be made public and provides a powerful incentive for colleges and universities to voluntarily upgrade their safety systems.  The law also calls for:• detailed reports on the number of actual fires in each on-campus student housing facility as well as information on deaths, injuries and structural damage to facilities over the previous two years;• colleges and universities to maintain a log of all campus fires and make this information available to the public;• reports on fire safety education and training provided to students, faculty and staff; and• the Secretary of Education to identify best practices for campus fire safety.                                                                     # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d67a6d08-a087-4d24-b07c-670076384e70,\"NJ SENATORS REACT TO ADMINISTRATION'S TEMPORARY REPRIEVE ON POLICY THAT WOULD DENY HEALTH COVERAGE FOR CHILDREN\n                    \n                            For the time being, Bush administration will not enforce directive for states to cease using federal funds for health coverage of certain children\n                    \n                      August 15, 2008\n                     WASHINGTON - Just before an August 17 deadline, the Bush administration has said that, for the time being, states will not be forced to comply with its directive that would block thousands of children from being covered under state children's health insurance programs. The Bush directive prevents states from using federal funds to provide health coverage for children whose families make more than a certain income threshold. This disproportionately hurts children in high-cost-of-living states, such as New Jersey.New Jersey's U.S. Senators, Robert Menendez and Frank Lautenberg, who have fought for a stronger federal commitment on children's health insurance and have been working to block this directive, today said that the announcement is welcome, but that the directive must be scrapped altogether to ensure that thousands of children across the country have access to health coverage.Senator Menendez said: \"\"The Bush administration policy at issue here is cold-hearted and indifferent to thousands of children in high-cost-of-living states, like New Jersey. Children who fall in the gap between Medicaid and costly private insurance do not deserve to be blocked from health coverage, but that would be the result for thousands of additional children if this directive goes into effect. This temporary reprieve is welcome, but it needs to be followed by a full reversal of the cold-hearted policy. There are already thousands of children across the country being blocked from vital health coverage because their states have voluntarily complied with the Bush administration, and they deserve to have health insurance.\"\"Senator Lautenberg said: \"\"Time and again, we have fought the Bush Administration to save health coverage for thousands of New Jersey children. Although the President finally listened and will, at least temporarily, preserve health care for 10,000 kids in New Jersey, our work isn't done.  We must permanently rescind this illegal policy and work to expand health care for children throughout our state.\"\"                                                                  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=82877e3d-41ff-465d-bd48-7e0be3daa30f,\"SENATORS CALL ON BUSH TO REOPEN FEDERAL OFFICE FOCUSED ON INTERNATIONAL EFFECTS OF GLOBAL WARMING\n                    \n                            Sens. Menendez, Sanders, Casey and Kerry urge funding for Center for Capacity Building and increased international aid to help developing nations adapt to consequences of climate change\n                    \n                      August 15, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), who chairs the Senate Foreign Relations subcommittee in charge of international environmental treaties, along with Sens. Bernie Sanders (I-VT), Bob Casey (D-PA) and John Kerry (D-MA) today called on President Bush to provide funding for a recently-closed federal office that was helping developing countries cope with the consequences of global warming. The Center for Capacity Building, which was part of the National Center for Atmospheric Research, was purportedly shut down because the NCAR lacked funding to keep it operational.In their letter to Bush, the Senators point out the need to support developing countries predict and adapt to the consequences of global warming in order to promote global stability, which affects national security here at home. They also urge Bush to increase international aid for this purpose, which has been a focus of the global warming negotiations that began last year in Bali and will be a critical component of future international climate change treaties.PDF of letter to Bush: http://menendez.senate.gov/pdf/081508GlobalWarming-CCBLetterFinal.pdfText of letter to Bush:August 15, 2008 The PresidentThe White House1600 Pennsylvania Avenue, NWWashington, D.C.  20500Dear Mr. President:We are deeply concerned to learn that the National Center for Atmospheric Research has eliminated the Center for Capacity Building (CCB). You have acknowledged the threat which global warming poses to our country and to our planet. You have also emphasized the global nature of this problem and the need for an international response. Moreover, you have indicated that poverty and health concerns in developing countries are a major concern of your administration.Unfortunately, your actions do not seem to match your words. Your administration continues to undermine scientific research on global warming, and has now eliminated a productive program which connected this research with the people who need it most.The CCB helped developing countries anticipate and respond to the changes caused by global warming. Many of these countries, while they have done nothing to cause the problem, will unfortunately be hardest hit by droughts, floods, and rising sea levels. As the world's leading per capita emitter of greenhouse gas pollution, it is our moral responsibility to help them prepare for the changes which are unavoidable.Instead of cutting climate change research, we should be expanding it. This is particularly true in the areas of environmental risk and international adaptation.  Food insecurity, water shortages, and increases in tropical diseases threaten to undermine the security of all nations and could lead to greater incidence of international conflicts.  Fighting global warming requires international cooperation, and eliminating a program aimed at helping developing countries develop the capacity to respond sends precisely the wrong signal.Moreover, we are astounded that you would reduce our international efforts after agreeing to the Bali Action Plan and its December, 2009 deadline. We are rapidly approaching the next rounds of United Nations climate change negotiations in Accra, Ghana, and Pozdan, Poland.  This is the worst possible time to eliminate the CCB program.Now is the time for us to secure our place as world leaders on climate change, but the timing of your cuts may instead cause other nations to lose confidence in the international process or even to question the United States' commitment to solving the problem. We urge you to rededicate your administration to global warming research, to fund the Center for Capacity Building, and to increase international aid for adaptation and mitigation.  Sincerely,ROBERT MENENDEZ     BERNARD SANDERSUnited States Senator      United States SenatorROBERT P. CASEY, JR     JOHN F. KERRYUnited States Senator      United States Senatorcc:Dr. Arden L. Bement, Jr. Director, National Science Foundation4201 Wilson Blvd.Arlington, VA 22230Dr. Eric BarronDirctor, National Center for Atmospheric ResearchP.O. Box 3000Boulder, CO 80307-3000                                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c0e0a6cc-f64a-4af3-a497-42d13337b305,\"RESPONDING TO ANOTHER GRUESOME REPORT OF A DEATH IN DETENTION, SEN. MENENDEZ AGAIN CALLS FOR PASSAGE OF LEGISLATION TO ENSURE BASIC MEDICAL CARE\n                    \n                            Menendez and Rep. Lofgren have sponsored legislation in U.S. Senate and House\n                    \n                      August 13, 2008\n                     WASHINGTON - According to a report in today's New York Times, yet another person detained for immigration-related reasons has died following a lack of medical care for a life-threatening condition. Hiu Lui \"\"Jason\"\" Ng died from cancer and a broken spine last week while in detention. Mr. Ng came to the U.S. from Hong Kong in 1992, had built a career in New York and was raising a family with his wife, who is a U.S. citizen. He had applied for a green card, but was thrown into a detention center in July 2007. Even as he developed excruciating back pain, he went undiagnosed and untreated.U.S. Senator Robert Menendez (D-NJ) is the Senate sponsor of the Detainee Basic Medical Care Act (http://menendez.senate.gov/newsroom/record.cfm?id=298134). Two weeks ago he visited the Elizabeth Detention Center in New Jersey to tour the facility and meet with detainees and officials (http://menendez.senate.gov/newsroom/record.cfm?id=301428&). Today, he released the following statement:\"\"This is yet another gut-wrenching story of subhuman treatment in our nation's detention centers. Regardless of how anyone feels about particular immigration cases, we can all agree that humans must be treated as humans. We can all agree that a detention should never amount to a death sentence.\"\"Not only did Jason Ng die because of a cancer that detention center officials ignored, but he was essentially tortured by the pain that he endured as his cancer spread and his spine broke. If our nation is to promote human rights around the world, then we have to live up to that standard here at home.\"\"Mr. Ng's case is another reason that we need to ensure a certain basic level of medical care in detention centers. That is the purpose of the legislation I have introduced in the Senate and Rep. Lofgren has introduced in the house. It's about treating human beings as human beings. It's about ensuring that if you have cancer ravaging your body and your spine is breaking, you will be able to receive basic medical care.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a4c83c72-d2e4-4112-8e86-6643064e0a05,\"SENADOR ROBERT MENENDEZ VISITA AFGANIST?N\n                    \n                            El senador de Nueva Jersey, miembro del Comit? de Relaciones Exteriores, viaja a Asia Central, Alemania con una delegaci?n del Senado que incluye al l?der mayoritario Harry Reid\n                    \n                      August 7, 2008\n                     Washington, D.C. -  El senador estadounidense  Robert Menendez (D-NJ), miembro del Comité de Relaciones Exteriores del Senado, visito Afganistán hoy, como parte de un viaje de una semana que incluye visitas a Kyrgyzstan, Kazakstán y Alemania.   La lucha contra el terrorismo es el enfoque central del viaje.  Afganistán es central a esa lucha por el incremento en la violencia, el resurgir del Talibán - que está cobrando fuerzas en ese país - y Al Qaeda reorganizándose a lo largo de la frontera entre Afganistán y Pakistán.  Otros temas que serán re-examinados durante el viaje incluyen el cambio climático global, el desarrollo y la democracia.            El itinerario de la delegación del Senado durante su visita a Afganistán incluyó reuniones en Kabul con tropas norteamericanas y con el presidente Hamid Karzai.            Los miembros del senado ya habían visitado Kyrgyzstan el lunes por la noche y el martes pasados.   El grupo también viajara a Kazakstán y visitara Alemania para sostener reuniones con tropas norteamericanas entre otros antes de regresar a Washington el próximo lunes.                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cf52011b-738c-4353-9484-cd126f86e189,\"SEN. MENENDEZ VISITS AFGHANISTAN\n                    \n                            New Jersey Senator, member of Foreign Relations Committee on trip to Central Asia, Germany with Senate delegation including Majority Leader Reid\n                    \n                      August 6, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, visited Afghanistan today as part of a weeklong trip that also includes visits to Kyrgyzstan, Kazakhstan, and Germany. The fight against terrorism is a main focus of the trip, and with violence escalating in Afghanistan, a resurgent Taliban gaining strength there and al Qaeda having regrouped along the Afghanistan-Pakistan border, Afghanistan is central to that fight. Other issues that will be examined on the trip include global climate change, development, and democracy.The delegation's Afghanistan itinerary included meetings in Kabul with U.S. troops and with President Hamid Karzai.They were previously in Kyrgyzstan Monday night and yesterday. They will also travel to Kazakhstan and will visit Germany for meetings with U.S. troops, among others, before returning to Washington on Monday.# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e6c7b024-904b-4dee-b6e2-9556c8b46158,\"BILL TO PROMOTE DIVERSITY IN MEDIA OWNERSHIP INTRODUCED BY SENATOR MENENDEZ\n                    \n                            Sen. Menendez's Tax Certificates Legislation Would Increase Competition, Diversity in Telecommunications Industry\n                    \n                      August 5, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) is supporting diversity in media ownership with new legislation to restore the tax certificate policy for sales of telecommunications properties to socially disadvantaged businesses, or SDBs. The tax certificates policy will mean newfound opportunities for America's socially disadvantaged broadcasters and encourage investment in their companies. It would encourage diversity of voices in the nation's media outlets, and enhance competition by enabling SDBs to unlock their full entrepreneurial, managerial and creative potential.  Sen. Menendez's bill would provide $350 million in tax certificates for use over a six year period to qualified SDBs to use as incentives for corporations to sell telecom properties to them.\"\"This is a very effective way to promote diversity of voices and increase competition in the telecommunications industry. I support diversity in media ownership because it provides a window into communities, languages, views, and values that might not otherwise be heard without these outlets,\"\" said Sen. Menendez. \"\"Unfortunately, we see major news outlets airing too many sensationalist stories on outlandish topics, such as immigrants with leprosy, black street gangs or Mexican plots to re-conquer the United States. Americans should be able to flip to stations where we can hear about Asian-American CEOs revolutionizing their industries, African-American doctors saving lives, and Hispanic soldiers, many of whom are not yet citizens, bravely fighting overseas under the flag of the country they're proud to call their own.\"\"Senator Menendez added, \"\"When we talk about minority-run outlets, we're not just talking about broadcasters, we're talking about advocates—advocates our communities depend on.\"\"Despite comprising more than a third of the U.S. population, and despite owning almost 1-in-5 businesses in the U.S., the proportion of radio stations minorities own is less than 1-in-12. For television stations, that number falls to 1-in-33.The bill encourages large corporations to sell properties to smaller ones by providing $350 million in tax certificates for use over a six year period to SDBs certified by the FCC.  These certificates can be used by the eligible seller to either defer the portion of capital gains covered by the certificate for three years or to reduce the basis of any property already held by the seller or purchased within one year after the transaction by that amount.###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a886d78c-e902-4cc0-a11e-61393a8b84a5,\"PROYECTO DE LEY DEL SEN. MENENDEZ OFRECE MAS OPORTUNIDADES A MINOR?AS EN DESVENTAJA QUE DESEEN CONVERTIRSE EN DUE?OS DE MEDIOS DE COMUNICACI?N\n                    \n                            Legislaci?n de certificados tributarios aumentar?a la competencia y la diversidad en la industria de las telecomunicaciones\n                    \n                      August 5, 2008\n                     Washington, D.C. - El senador Robert Menendez (D-NJ) está apoyando la diversidad entre los propietarios de los medios de comunicaciones con nueva legislación que restauraría la política de certificados tributarios para la compra de propiedades en el área de las telecomunicaciones entre los denominados Negocios en Desventaja Social o SDB's por sus siglas en ingles.  La política de certificados tributarios se traduce en nuevas oportunidades para los dueños de medios de comunicaciones norteamericanos que estén clasificados por la Comisión Federal de Comunicaciones FCC como negocios en desventaja social y fomenta las inversiones en sus compañías.  La medida promueve la diversidad en las voces con acceso a los medios de comunicación a nivel nacional y fomenta la competencia, haciendo posible que los negocios en desventaja social o SDBs den rienda suelta a su potencial creativo, gerencial y empresarial.  El proyecto de ley del senador Menendez proveería $350 millones en certificados tributarios a negocios en desventaja social calificados para que los utilicen como incentivos  - durante un periodo de 6 años - como incentivos para que corporaciones les vendan propiedades de telecomunicaciones.\"\"Esta es una forma efectiva de promover la diversidad de expresión e incrementar la competencia en la industria de las telecomunicaciones.  Apoyo la diversidad entre los propietarios de los medios de comunicación porque provee una ventana a las comunidades, idiomas, puntos de vista y valores, que sin estos medios de comunicación, no podrían darse a conocer,\"\" dijo el senador Menendez.   \"\"Desgraciadamente, vemos noticieros de gran alcance reportando sobre temas sensacionalistas e historias descabelladas como inmigrantes leprosos, pandillas de afroamericanos o conspiraciones mexicanas para reconquistar a Estados Unidos.  Los norteamericanos debían poder cambiar a canales donde puedan conocer las historias de los empresarios asiático-americanos que revolucionan sus industrias, doctores afroamericanos que salvan vidas y soldados hispanos, muchos de los cuales aun no están naturalizados, peleando valientemente en un país lejano bajo la bandera de este país y se expresan orgullosos de que este sea su hogar.\"\"       El senador Menendez añadió, \"\"Cuando hablamos de medios de comunicaciones comandados por minorías, no solo hablamos de los propietarios; hablamos de los defensores - los defensores de los cuales dependen nuestras comunidades.\"\"       A pesar de que conforman más de un tercio de la población estadounidense, y a pesar de ser propietarios de casi 1 de cada 5 negocios en Estados Unidos, la proporción de estaciones de radio propiedad de dueños minoritarios es menor de 1 de cada 12.  Si se habla de estaciones de televisión, la proporción baja a 1 de cada 33.Este proyecto de ley fomenta que las grandes corporaciones le vendan sus propiedades a compañías más pequeñas al proveer $350 millones en certificados tributarios, a usarse en un periodo de 6 anos a negocios en desventaja social previamente certificados por la Comisión Federal de Comunicaciones.  Estos certificados pueden ser utilizados por el vendedor elegible para diferir la porción de las ganancias de capital o plusvalía cubiertas por el certificado durante tres años o para reducir la base de cualquier propiedad ya adquirida por el comprador o comprada dentro de un año de la transacción por esa cantidad.                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f829369d-3713-4c05-b4d8-25e70d5ca839,\"SEN. MENENDEZ ISSUES STATEMENT ON PORT AUTHORITY'S OPPOSITION TO AIRPORT SLOT AUCTIONS\n                    \n                      August 4, 2008\n                     WASHINGTON - Today, U.S. Senator Robert Menendez (D-NJ), issued the following statement after the Port Authority of New York and New Jersey announced that it would block any flights resulting from the Federal Aviation Administration's plan to auction off arrival and departure slots at the three major airports in the New York City area:\"\"With airfares already sky-high, fewer and fewer American families are able to travel. I am concerned that auctioning off flight slots in the manner proposed by the federal government could end up pricing middle-class Americans right out of flying at the best, most convenient times of day. We need an air travel system that is as fair as possible for as many people as possible. It shouldn't favor business travelers over families the way that this proposal might, and it shouldn't penalize you so drastically just because you happen to live in a certain part of the country.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=87d437b9-7269-4f51-b491-a0fc99e18848,\"SENADOR ROBERT MENENDEZ PRESENTA  PROYECTO DE LEY PARA EXTENDER EL PROGRAMA E-VERIFY, INCREMENTAR LA EFICIENCIA DE LAS VISAS Y FORTALECER FAMILIAS\n                    \n                            La porci?n 'E-Verify' de la medida es casi id?ntica a la aprobada abrumadoramente en la C?mara de Representantes\n                    \n                      August 4, 2008\n                     Washington, D.C. - El senador Robert Menendez (D-NJ) introdujo legislación para renovar el sistema que permite los empleadores puedan verificar electrónicamente la documentación de futuros empleados y para asegurar que todas las visas de trabajo (work-based visas) o visas auspiciadas por un familiar (family-based visas) sean utilizadas.  El Acta del 2008 de Eficiencia de Visas y Programa de Extensión E-Verify, ayudaría a los comerciantes norteamericanos y protegería la unidad familiar reautorizando el programa E-Verify recuperando las visas de trabajo que no hayan sido reclamadas o utilizadas durante los años 1992 al 2007.  Permitiría además,  la renovación automática al próximo año fiscal de las visas apoyadas por un empleo o por la reclamación de un familiar. La porción E-Verify de la legislación es casi idéntica a la aprobada por la Cámara de Representantes, 407 votos a 2.Los senadores Pat Murray (D-WA), Ted Kennedy (D-MA), y Maria Cantwell (WA) se unieron al senador Menendez como co-auspiciadores de la medida.  La legislación propuesta reduciría las largas filas de familias y empleados actualmente esperando recibir tarjetas verdes. \"\"Verificar que los trabajadores tengan la documentación adecuada es importante y este proyecto de ley asegura que lo estemos implementando, al tiempo que estamos siendo justos con las familias que han esperado pacientemente durante años y han pagado sus honorarios de procesamiento para reunirse con sus seres queridos,\"\" dijo el senador Menendez.  \"\"Debemos unir el esfuerzo E-Verify, el cual es bueno para los negocios con una política que también sea buena para familias - está de acuerdo con nuestro sistema norteamericano de valores y es un paso hacia arreglar nuestro quebrantado sistema de inmigración.\"\"U.S. Senator Robert MenendezPag. 2Resumen del Acta del 2008 de Eficiencia de Visas y Extensión de E-Verify:Visas sin utilizar: Este proyecto de ley reúne las visas de trabajo o las apoyadas por la reclamación de un familiar que no han sido utilizadas durante los años 1992 al 2007 y permite su renovación automática el próximo año fiscal.Extensión del Programa Conrad State 30 - Este proyecto de ley extiende el Programa Conrad State 30 por 5 años hasta el 1 de junio del 2013.  El programa Conrad State 30 fue diseñado para proveerle a cada uno de los 50 estados con 30 waivers o visas J-1 para médicos cada año fiscal.Extensión del programa para trabajadores religiosos - Este proyecto de ley requiere que el Departamento de Seguridad Interna emita reglamentaciones finales para eliminar o reducir el fraude relacionado con ofrecer estatus de inmigrante especial a individuos que trabajen en una ocupación  o vocación religiosa.  La medida extiende el programa de visas para el trabajador religioso inmigrante no-prelado hasta el 1 de octubre el 2011.  Bajo este proyecto de ley, el Inspector General del Departamento de Seguridad Interna debe someter un informe sobre la efectividad de las reglamentaciones para el 2010.Reautorización de E-Verify: Esta medida reautoriza el programa piloto electrónico de verificación de elegibilidad de empleado también conocido como ‘E-Verify\"\".  Esta legislación provee una extensión de 5 años de este programa para la verificación electrónica de empleados.Protección de programas de la Administración del Seguro Social: Esta legislación requiere que el Departamento de Seguridad Interna provea pagos adecuados y a tiempo a la Administración del Seguro Social para que E-Verify no interfiera con la habilidad de la Administración del Seguir Social para servir a los retirados, a las personas deshabilitadas o sobrevivientes.Estudio de la Oficina Gubernamental de Responsabilidad (GAO - Government Accountability Office) del Sistema Piloto Básico de Confirmación: Este proyecto de ley requiere que la Oficina de Responsabilidad Gubernamental (GAO por sus siglas en ingles) reporte al Congreso las causas del no-confirmaciones erróneas tentativas, como son corregidas y el efecto que causan en individuos, empleadores y agencias federales.  También requiere que el GAO examine las experiencias de los pequeños negocios, las organizaciones sin fines de lucro y las municipalidades y su uso del Programa Piloto básico.                                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=99e61bba-a57c-4f0b-94a4-c59475e5ce81,\"HISPANIC UNEMPLOYMENT DISPROPORTIONATELY HIGH, AS AMERICANS LOSE JOBS FOR SEVENTH STRAIGHT MONTH\n                    \n                            Big Oil Continues to Rake in Record Profits\n                    \n                      August 1, 2008\n                     Washington, DC—Senate Democrats responded today to a Department of Labor report which indicates that the nation shed another 51,000 jobs in July - the seventh straight month of losses - as unemployment rose to a four-year high of 5.7 percent and Chevron announced a second-quarter profits of nearly $6 billion. Democrats also called attention to the disproportionately higher unemployment rate among Hispanic American workers.According to the Department of Labor report, the unemployment rate among Hispanics was 7.4 % last month. The disproportionately higher jobless rate among Latinos underscores the urgent need to strengthen the economy.\"\"This week has made it crystal clear that the only ones doing well in the Bush-McCain economy are oil company executives,\"\" Senate Majority Leader Harry Reid (D-NV) said. \"\"As we pay more than ever to fill our tanks and to heat and cool our homes, Exxon, BP, Shell and Chevron all announced billions in new profits - including the highest single-quarter take in history.  Meanwhile, American jobs continue to disappear, millions have seen their full-time jobs cut to part-time work and unemployment has reached a four-year high. It is disturbing that none of this news seems to concern Bush-McCain Republicans.  While employers have cut jobs for seven straight months, Republicans have blocked at least seven of our efforts this year to create good-paying jobs here at home by investing in alternative, renewable energy sources.\"\"Hispanic families are being squeezed by rising expenses. Median Hispanic family income is lower than median family income overall, so rising costs eat up larger share of their family budgets. According to the U.S. Census Bureau, between 2000 and 2006, Hispanic families saw median family income fall by 0.8 percent, to $41,147, a loss of $334. Since 2000, the average price of gasoline has increased 145 percent to $4.06 per gallon, the average family health insurance premium has jumped 41 percent to $11,765, and the average cost of child care for two children is now $1,041 per month.\"\"With the price of food and fuel skyrocketing, Americans, and Latinos in particular, are being squeezed at the pump and the supermarket as they bear the burden of a struggling economy,\"\" Senator Robert Menéndez (D-NJ) said.  \"\"Once again the Latino unemployment rate is higher than that of the rest of the population, while oil company profits are higher than they've ever been in history. Democrats have a plan to lower gas prices, break our dependence on oil, stop federal handouts to oil companies and ultimately create jobs. But Republicans are fighting vigorously to aid and protect the oil companies when it's the American people and hardworking Latinos who need us to fight for them. Oil companies have had almost eight years of an administration that's held their hand. It's time for a government that holds them accountable.\"\"Reid added: \"\"Democrats know America cannot afford for this streak to continue any longer, which is why we will continue working to strengthen our economy in the short-term and address the long-term economic problems hurting America's middle class.  We will propose new legislation to jumpstart our economy and continue our effort to invest in clean energy, both of which will create good-paying jobs here in America.  We hope that Bush-McCain Republicans will finally do more than offer the same failed fiscal and foreign policy strategies that got us into this mess in the first place.\"\"The Congressional Joint Economic Committee released a fact sheet today on the economic situation of Hispanic American families. To see the full report  click here.                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4d1d56ef-ff29-49ff-8b0b-261035f1d05c,\"SUPPORTING GREENER MORE EFFICIENT COMMUNITIES: SENS. MENENDEZ AND SANDERS APPLAUD INCLUSION OF $300 MILLION IN APPROPRIATIONS BILL\n                    \n                            Grant program would support energy efficiency and renewable energy efforts for municipal and county governments\n                    \n                      August 1, 2008\n                     WASHINGTON - Last night, the Senate Appropriations Committee released details of a supplemental appropriations bill providing $24.1 billion in infrastructure, housing, natural disaster recovery and energy assistance. It includes a $300 million competitive grant program to help communities invest in energy efficiency and renewable energy.  The program is based on a proposal championed by U.S. Senators Robert Menendez (D-NJ) and Bernie Sanders (I-VT), and will help communities struggling with higher energy costs and will help combat global warming.\"\"Our nation's local governments, which are struggling with high energy costs, have been at the forefront of reducing energy consumption and addressing climate change,\"\" said Senator Menendez. \"\"This funding rewards the leadership already shown by local governments and comes at a crucial time as we try to wean ourselves from fossil fuels.\"\"Senator Sanders said, \"\"This funding will support on-the-ground efforts by cities, towns, and states as they tackle our serious energy challenges.  It provides federal recognition of grassroots efforts and supports their pursuit of solutions that reduce fossil fuel emissions, reduce total energy use, and improve energy efficiency. I truly believe that there is infinite potential in the new program.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3e3fcd97-68eb-4e69-be38-31714c3b41ff,\"AS OIL COMPANIES SIT ON FEDERAL LEASES, SENATOR MENENDEZ WANTS MORE ACCURATE REPORTING TO INFORM INVESTORS\n                    \n                            Menendez, co-sponsor of \"\"Use it or lose it legislation,\"\" calls on SEC to require oil companies to declare when they intend to develop unused land, how much they are spending on oil development\n                    \n                      August 1, 2008\n                     WASHINGTON - Oil companies have come under increased scrutiny for not utilizing 68 million unused acres they already have under lease and for spending far more on stock buybacks than exploration and innovation. Today, U.S. Senator Robert Menendez (D-NJ) is calling on the Securities and Exchange Commission to require oil companies to submit information about if and when they intend to produce oil on unused leases and how much they are spending to produce new oil. In a letter to SEC Chairman Cox today, Senator Menendez urged him to require companies to report when they intend to actually develop their proven undeveloped leases as well as to report their investments in oil development. Senators Russell Feingold (D-WI) and Bernie Sanders (I-VT) also signed the letter.\"\"As Americans are getting slammed by gas prices, investors and consumers alike want more information on why oil companies are not investing in new production and why they continue to sit on their oil reserves instead of producing oil,\"\" said Sen. Menendez. \"\"The SEC needs to create rules that prevent oil companies from leasing huge potential reserves in order to impress investors even as they spend less on producing oil.  We have seen record profits, record stock buy backs, but the information on plans to increase production has been hard to come by.  If oil companies just intend to count their money, instead of developing their assets, investors have a right to know.\"\"The letter is in response to a proposed SEC rulemaking that creates new categories for \"\"probable\"\" and \"\"possible\"\" reserves.  These categories create the potential of oil companies padding their books with reserves, but not report their oil production plans.  Senator Menendez is a lead co-sponsor of Senator Russ Feingold's (D-WI) legislation requiring oil companies to utilize the 68 million unused acres under lease or otherwise relinquish the land.Link to the letter to SEC Chairman Cox: http://menendez.senate.gov/pdf/08012008LettertoSEC.pdfText of letter to SEC Chairman Cox:August 1, 2008Chairman Christopher CoxU.S. Securities and Exchange Commission100 F Street, NEWashington, DC 20549Dear Chairman Cox:We write today about, File No. S7-29-07, your proposed rulemaking on how companies report oil and natural gas reserves.  We believe the proposal is an important one that reflects changes in technology and generally provides more information for investors.  However, the rule can be enhanced by requiring companies to report additional information about their intent to develop their reserves and the amount they are currently spending on oil and natural gas production.The proposed rule sensibly allows oil companies to use established technologies to prove reserves.  The rule would also create new categories of reserves including \"\"probable\"\" and \"\"possible\"\" reserves.   These rules, in general, will help add to the mix of information investors have at their disposal.  Unfortunately, these new proposed guidelines also have the potential to make nonproducing oil and natural gas leases held by oil companies appear even more valuable by allowing these companies to report more information about reserves, but not requiring them disclose more about their production plans.  In fact, these \"\"probable\"\" or \"\"possible\"\" reserves may even serve to mislead investors if further information on production plans is not disclosed.As you are no doubt aware, investors, consumers, and policy makers are increasingly concerned that oil companies are not actively pursuing oil reserves under land and water they already lease from the federal government.  All told there are 68 million acres that oil companies have leased for oil and natural gas exploration where no oil or natural gas has been produced.  We believe it is important for investors to know whether they plan to produce on these leases or save them for future production.This concern is particularly important for proven undeveloped leases (PUDs). Companies can list a PUD if it would be economically viable to extract the oil or natural gas and the company intends to actually produce on that lease.  Too often, however, companies have failed to develop their PUDs year after year.  To remedy this problem the SEC has proposed a requirement that companies list their older PUDs.  That would no doubt be helpful, but we suggest that for investors to truly have the material information they need on reserves, the SEC should require companies to report when they actually intend to develop their PUDs.  A production schedule will give investors the information they need to truly assess whether oil companies will create revenue from these valuable assets within a reasonable time frame.Similarly, investors are also concerned that oil companies are not required to report what they are investing in oil development.  The Associated Press recently reported that ConocoPhillips has announced $2.5 billion in stock buybacks for the second quarter of this year-- nine times what it has spent on exploration.  ConocoPhillips has since reported that it is now producing 200,000 barrels per day of oil less than it did a year ago.  These figures should not just be reported by the Associated Press, but should also be reported to the SEC and in turn to investors.  Requiring reporting on investments and planned investments in oil and natural gas development would provide investors with certainty about oil companies' intentions to develop the vast federal lands they have at their disposal.Thank you for your consideration of this issue.  Please do not hesitate to contact us if you have any questions or concerns.                                                       # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=94104105-b30a-47f2-b2b7-225c0aa917f4,\"SENATE PASSES THE HIGHER EDUCATION ACT, MENENDEZ PRAISES THE BILL\n                    \n                            Menendez sees the bill as a crucial step towards affordable higher education for all\n                    \n                      August 1, 2008\n                     WASHINGTON, D.C. - With overwhelming bipartisan support, the Senate passed the Higher Education Opportunity Act last night by a vote of 83-8.   Senator Robert Menendez (D-NJ) praised the bill as an important step to opening the doors of higher education for all individuals, regardless of their financial background.  This major piece of legislation is aimed at making college more affordable and accessible by expanding financial aid, as well as bringing clarity and transparency to the student loan process.  The legislation will also hold universities more accountable for their costs, while providing crucial funding for Minority Serving Institutions.\"\"Funding for higher education isn't just a social responsibility, it's an economic necessity,\"\" said Sen. Menendez. \"\"If we're going to stay on the apex of the curve of innovation, if we're going to be the economic power we were in the 20th century going forward into the 21st century we have to do all we can to educate our children and prepare them to compete.\"\"Senator Menendez added, \"\"The time has come to make a robust, national commitment to the education of our youth at all levels, from kindergarten through graduate school, from technological institutes in our inner cities to centers of agricultural research in the heartland. We're a little late on the assignment, but we can still get an A for finally taking the time to turn it in.\"\"Provisions in the Higher Education Act:• Enhances and expands the scope of TRIO and GEAR-UP and calls for a comprehensive review of Upward Bound by 2010.• Increases Pell Grants from $4,800 to $6,000 for 2008 and up to $8,000 for 2014 and allows low-income students to receive Pell Grants year-round.• Increases annual loan limits under the Perkins Loan program, to $5,500 per year for undergraduates and $8,000 per year for graduate students, aggregate loan limits to $27,500 for undergraduates and $60,000 for graduate students, and increases the annual allowance for books and supplies to $600 from $450.• Provides more accountability for schools who have had the greatest cost increases.• Helps service members, veterans, and their families attend and pay for college by providing interest-free deferral, in-state tuition rates, and new college scholarships of up to $5,000 for children and family members of service members who have died since 9/11.• Mandates that universities immediately notify students of emergency situations in the wake of the April 2007 shootings at Virginia Tech University.President Bush is expected to sign the bill into law early next week.                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ad329956-d36b-417a-94a7-5d5d6f302f4b,\"SEN. ROBERT MENENDEZ PRESENTA PROYECTO DE LEY PARA FOMENTAR LOS AHORROS ENTRE LAS FAMILIAS DE BAJOS RECURSOS, A TRAVES DE UN SISTEMA DE REEMBOLSO DE IMPUESTOS\n                    \n                            El Acta del Bono del Ahorro crear?a un incentivo para que las familias de bajos recursos que pagan impuestos ahorren dinero\n                    \n                      August 1, 2008\n                     Washington, D.C. - Hoy, el senador Robert Menendez (D-NJ) introdujo el Acta del Bono del Ahorro, un proyecto de ley que fomentaría el ahorro y las inversiones entre los contribuyentes de bajos recursos.  El acta proveería una opción para el ahorro en las planillas de impuestos, ofrecería un aporte de parte del gobierno igual a sus ahorros de hasta $500 para los contribuyentes de bajos recursos que inviertan en cuentas de ahorros que califiquen, y haría posible que los contribuyentes abran cuentas de ahorro utilizando sus planillas de impuestos.  \"\"Los norteamericanos están pasando dificultades con el aumento de los precios de artículos esenciales como los alimentos y el combustible.  Como resultado, el abono de dinero a sus cuentas de ahorros baja en su lista de prioridades cada día mas, especialmente para las familias de bajos recursos,\"\" dijo el Sen. Menendez.  \"\"Este proyecto de ley busca proveer una solución creativa a la tendencia de bajas tasas de ahorro entre las familias norteamericanas.  Crea incentivos para personas que, de otra forma, no harían depósitos a sus cuentas de ahorros y ayuda a las personas que no han abierto una cuenta de banco,  guiándolos hacia la participación en nuestro sistema financiero, lo que contribuye a crear estabilidad económica.\"\"El Acta de Bono del Ahorro:Los contribuyentes de bajos recursos que sean elegibles, aquellos que ganan hasta un 120 por ciento de elegibilidad para el Crédito por Ingreso del Trabajo (EITC), recibirían un pago igual al que aporte del contribuyente hasta los $500, si deposita una porción de su reembolso de impuestos en una cuenta de ahorros que califique (como podrían ser una cuenta IRA, planes de ahorros universitarios 529, 401K, bonos de ahorros, u otras cuentas que sean consideradas apropiadas por el Departamento del Tesoro).• Los contribuyentes que no tienen cuentas de banco pueden abrir cuentas y tener acceso a  productos de ahorros directamente en sus planillas de impuestos. • Los contribuyentes recibirían con facilidad, a través del proceso de radicar sus impuestos, un bono por el ahorro.  Los contribuyentes de más bajos recursos tendrían acceso a los productos financieros.• El Departamento del Tesoro y el Departamento de Rentas Internas solicitarían propuestas de instituciones financieras privadas para proveer productos de ahorro de calidad; y determinarían cuales serian las cuentas a las que estos contribuyentes podrán tener acceso  en los formularios de impuestos.                                                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dc2cd424-2ba3-4317-8fdd-9ac730a547cb,\"SENATOR MENENDEZ INTRODUCES BILL TO INCREASE SAVINGS RATE AMONG LOW-INCOME FAMILIES THROUGH TAX-REFUND SYSTEM\n                    \n                            Sen. Menendez's Saver's Bonus Act Would Create Savings Incentive for Low-Income Taxpayers\n                    \n                      July 31, 2008\n                     WASHINGTON - Today, Senator Robert Menendez (D-NJ) introduced the Saver's Bonus Act, a bill which would encourage savings and investment among low-income taxpayers.  The act would provide automatic savings options on tax forms, offer a match of up to $500 for low-income taxpayers who allocate money into qualifying savings accounts, and allow taxpayers to open new accounts directly on their tax forms. \"\"Americans are struggling as the price of essentials like food and fuel skyrocket. As a result, putting money into their savings account is increasingly moving down their list of priorities, especially for low income families,\"\" said Sen. Menendez. \"\"This bill aims to provide a creative solution to the trend of low savings rates among American families. It creates incentives for people who otherwise would not fund savings accounts to do so, it helps people who are unbanked to open bank accounts and usher them into participating in our financial system, and it ultimately aims to help create economic stability.\"\"The Saver's Bonus Act:Eligible low-income taxpayers, those making up to 120 percent of eligibility for the earned income tax credit, would receive a one-to-one match, up to $500, if they deposit a portion of their tax refund into a qualifying savings product (accounts could include IRAs, 529 college savings plans, 401(k)s, savings bonds, or other accounts Treasury deems appropriate).• Taxpayers who do not have bank accounts could open accounts and savings products directly on their tax returns. • Taxpayers would receive a savings bonus easily through the tax filing process and more low-income taxpayers would be connected to financial products.• Treasury and IRS would solicit proposals for private financial institutions to provide quality savings products and would determine which accounts could be accessed on the tax forms.###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3a97a346-d592-46a9-9844-bc27ab1ec279,\"Democrats Tell Big Oil: Spend More On Production and Renewable Energy, Less On Stock Buybacks Before Making Demands For New Drilling Leases\n                    \n                            Since 2005, Big Five Oil Companies Have Invested More Than $194M in Stock Buybacks;Lawmakers Urge End To Billion-Dollar Tax Breaks For Big Oil\n                    \n                      July 31, 2008\n                     WASHINGTON, DC - As oil companies continue to report record second-quarter profits, Senate and House Democrats today demanded an end to billion-dollar tax breaks for Big Oil and demanded that the companies divert more resources into increased U.S. production and renewable energy instead of buying back their own stock.Senate Democratic Conference Vice Chairman Charles Schumer, House Democratic Caucus Chairman Rahm Emanuel, Senator Robert Menendez of the Senate Energy and Natural Resources Committee, and Chairman Ed Markey of the House Select Committee on Energy Independence and Global Warming issued the demands in a letter to the five largest oil companies. The letter was unveiled at a news conference this morning after Exxon Mobil and Royal Dutch Shell announced eye-popping second-quarter profits.Schumer said: \"\"Inside the boardrooms at the major oil companies, it's Christmas in July. What's shocking is that Big Oil is plowing these profits into stock buybacks instead of increasing production or investing in alternative energy. Why do they need more land to drill on when all their money is going into buying up stock?\"\"Emanuel said: \"\"Today's reports are good news for ExxonMobil and Shell shareholders, but bad news for the shareholders I represent - American taxpayers who are shelling out billions for handouts to big oil companies and then paying record prices at the pump. Companies that are spending billions on stock buybacks and making record profits don't need a taxpayer-funded handout.\"\"Menendez said: \"\"Since last week, we have seen a parade of astronomical, mind-boggling oil company profit reports and the Republican Party is right along with them and applauding all the way. But please forgive people on Main Street who pay $100 per fill-up, for watching this profit parade and wondering what all the cheering is about. We ask the question: why are our Republican colleagues fighting tooth and nail to aid and protect the oil companies when it's the American people who need us to fight for them? \"\" Markey said: \"\"Exxon's profits are excessive, Shell's profits shellshock, and BP should be renamed Bloated Profits,\"\" said Rep. Edward J. Markey (D-Mass.), Chairman of the Select Committee on Energy Independence and Global Warming. \"\"While the world is in energy crisis, these companies are making the greatest profits in the history of the world, and then have the gall to protect billions in tax breaks that should be going to renewable energy sources.\"\" On  Thursday, Exxon Mobil announced a second-quarter profit of $11.7 billion, setting a new quarterly profit record for a U.S. company. Royal Dutch Shell came in just behind Exxon Mobil at $11.6 billion. On Tuesday, BP announced a 28-percent rise in net profits. Last week, ConocoPhillips reported last week that its second-quarter profit rose 13 percent over adjusted results from one year ago. Chevron will make its profit announcement tomorrow.While oil companies are earning record profits and gas prices are soaring, the companies have invested more resources in stock buybacks than U.S. production. The Associated Press reported that in the first quarter of 2008, Exxon Mobil spent $8.8 billion on stock buybacks and only $5.5 billion on exploration and capital projects.Overall, between 2005 and 2007, Exxon spent almost 90 billion on stock repurchases. The five largest oil companies have ploughed a combined $194 billion into stock buybacks during that span. Those spending totals dwarf the companies' outlays on either increased U.S. production or development of renewable technologies, as shown in the table below.OIL COMPANY EXPENDITURES - 2005-2007 (in millions)             Stock Buybacks            U.S. Production            Research and Development        ExxonMobil            $89,528            $8,762            $2,908        Chevron            $18,234            $12,951            $1,591        ConocoPhillips            $12,445            $9,567            $528        BP            $42,326            $26,940            $1,902        Royal Dutch Shell            $18,113            $7,665            $3,227        The lawmakers noted the variety of better uses for the $194 billion the companies have spent on stock buybacks. According to estimates, that sum could be used instead to give 2,000 rebates to every American family; create 2 million energy innovation jobs; build 5 million plug-in hybrid cars; and build 3.5 million solar-powered homes. A copy of the letter to the oil companies appears below. July 31, 2008Mr. Tony HaywardChief Executive OfficerBPInternational Headquarters1 St James's SquareLondon, SW1Y 4PDUKMr. David O'ReillyChief Executive OfficerChevron6001 Bollinger Canyon RoadSan Ramon, CA 94583, USAMr. James J. MulvaChairman and CEOConocoPhillips600 North Dairy Ashford (77079-1175)P.O. Box 2197Houston, Texas 77252-2197Mr. Rex W. TillersonChairman and CEOExxon5959 Las Colinas BoulevardIrving, Texas, 75039-2298Jeroen van der VeerChief ExecutiveRoyal Dutch ShellRoyal Dutch Shell plcCarel van Bylandtlaan 302596 HR DEN HAAGThe Netherlands Dear Gentlemen:We are writing to express our concern that you have used much of your record profits in recent years to buy back your own stock to enrich the value of your share price, rather than invest in oil exploration or production here in the U.S. or in the research and development of alternative energy sources that are demanded by U.S. consumers.From January 2004 to March 2008, your companies have reported spending over $194 billion in stock buybacks, which have had the impact of enriching shareholders and further shoring up executive compensation packages. Your combined five companies have reported spending only 30 percent of your stock buyback amount on U.S. oil exploration and production.  This helps to explain why so many of the 68 million acres of federal leases that have the potential to produce an additional 5 million barrels of oil a day are currently stockpiled.  From your filings, we find that only 5 percent of the amount that you have spent on stock buybacks was spent on various research and development expenditures which may not even include alternative energy research.  This sheds light on why the U.S. has been unable to meaningfully diversify its energy sources, despite consumer demand for cheaper and cleaner alternatives.We ask that you pledge to greatly increase the ratio of investments in production and alternatives to the amount of stock buybacks this year and next by investing much more of your profits into exploration and production on the leases you have been awarded in the U.S., and in the research and development of promising alternative energy sources.  Given today's strong market incentive for expanding exploration and production, we can only believe that reinvesting your vast profits into the production of more oil and natural gas in the United States is a profitable strategy that will help our country increase its dependence on foreign oil.  And given today's strong demand for fossil fuel alternatives, we can only conclude that meaningful investment in alternative energy research and development can enhance your brand's value here in the U.S. while helping America compete in the global energy innovation race.We respectfully ask that you consider our pledge, and look forward to hearing from you on this matter. Sincerely, Charles E. Schumer                           Rahm EmanuelU.S. Senate                                       U.S. House of RepresentativesRobert Menendez                               Ed MarkeyU.S. Senate                                        U.S. House of Representatives # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dd0e1b6a-f293-4ff0-9306-dd48c23807c1,\"AFTER PAKISTANI PRIME MINISTER'S VISIT TO CAPITOL HILL, SEN. MENENDEZ REITERATES THAT UNLIMITED MILITARY AID WITHOUT RESULTS CANNOT CONTINUE\n                    \n                            Menendez, Chairman of foreign assistance subcommittee, has helped lead call for greater scrutiny of U.S. military assistance funds to Pakistan\n                    \n                      July 30, 2008\n                     WASHINGTON - Today, Pakistani Prime Minister Yousuf Raza Gilani met with a group of Senators in the Capitol as part of his first official visit to the United States. A major topic of discussion for the Prime Minister while he is in Washington has been Pakistan's role in the fight against al Qaeda and the Taliban, which are operating in a safe zone along the Pakistan-Afghanistan border.U.S. Senator Robert Menendez, Chairman of the Foreign Relations subcommittee in charge of foreign assistance programs, attended the meeting. With al Qaeda having regrouped in the tribal region of Pakistan despite $10 billion in U.S. assistance since 9/11, Senator Menendez has held hearings and led numerous efforts to get information from the Bush administration about the effectiveness of this funding. Following the meeting he released the following statement:\"\"I was glad to meet with Prime Minister Gilani, and I believe a clear understanding between our nations regarding the fight against al Qaeda and the Taliban is vital to the security of the United States. I certainly hope that Prime Minister Gilani is left with the understanding that we need to see better results from the fight against the terrorists in Pakistan's tribal regions, otherwise there will be major changes to our military assistance. To this point, it has been essentially a ‘blank check' approach, which has done very little to make our country safer. The White House has been unwilling to change much of anything in the military funding we give to Pakistan, even as Osama bin Laden and his organization have regrouped and even as the Pakistani government negotiates agreements with militants.\"\"The Bush administration has been unwilling or unable to show Congress or the American people evidence that the billions in U.S. taxpayer money we've sent over there as military assistance and reimbursement has been money well spent. We are left to judge by what we see on the ground, and what we see is our number one enemy allowed to regroup in a safe zone, which makes our country no safer. Prime Minister Gilani must understand that, for the billions in military aid we have given, there must be more accountability and there must be better results.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5776d411-165e-40d9-9c3c-c0376322c584,\"SENADOR ROBERT MENENDEZ VISITA CENTRO DE DETENCI?N DE INMIGRACI?N EN ELIZABETH\n                    \n                            El Sen. Menendez, quien lucha por cuidado m?dico adecuado dentro de las instalaciones, se reuni? en privado con detenidos\n                    \n                      July 29, 2008\n                     Elizabeth, NJ - El Sen. Robert Menendez, visito el Centro de Detención de Inmigración de Elizabeth para ver de cerca como los detenidos en Nueva Jersey están siendo alojados y como se están atendiendo sus necesidades medicas.  El senador Menendez estuvo acompañado del reverendo E. Roy Riley, Obispo de Nueva Jersey de la Iglesia Evangélica Luterana de América y el Reverendo Bruce Davidson, Director de la Oficina de Asuntos Gubernamentales de la Iglesia Luterana.El Senador Menendez, quien ha monitoreado el tratamiento de los detenidos en el Centro de Detención de Inmigración en Elizabeth durante muchos años mientras representaba el distrito federal número 13 de Nueva Jersey en la Cámara de Representantes,  se sintió preocupado nuevamente cuando surgieron informes de la muerte del detenido Boubacar Bah oriundo de Guinea en las instalaciones de Elizabeth; así como mas de 60 muertes en casi tres años en centros de detención de inmigrantes en la nación.  Esto hizo que el senador Menendez presentara el proyecto de ley S. 3005, El Acta de Cuidado médico Básico del 2008, que requiere que el secretario del Departamento de Seguridad Nacional establezca procedimientos que aseguren el tratamiento médico y de salud mental efectiva y rápida para todos los detenidos por inmigración.Tras la visita, el senador Menendez emitió las siguientes declaraciones:\"\"Estamos conscientes de los difíciles retos y responsabilidades que enfrentan ICE y la División Migratoria de Servicios Médicos (DIHS); sin embargo, debe tomarse más responsabilidad.  Me preocupa que  hablamos en privado con 3 detenidos y dos de ellos no están recibiendo tratamiento por enfermedades, que aunque actualmente no ponen en peligro sus vidas, podrían hacerlo en el futuro.  Es por esto que creo que sin un estándar de cuidado médico a nivel nacional, existe la posibilidad de que la detención se convierta en una sentencia de muerte, y esto es inaceptable.  El cuidado médico adecuado para los detenidos por inmigración, especialmente en una emergencia, es un asunto de derechos humanos.  Si esta nación quiere dar el ejemplo al resto del mundo, como nos atribuimos y aspiramos a ser,  y si queremos instruir a otros países  sobre la responsabilidad de poner los derechos humanos primero, entonces debemos hacer todo lo que podamos por ofrecer el cuidado médico necesario a aquellos que se encuentren bajo custodia.\"\"EL ACTA DEL 2008 DE CUIDADO MEDICO BÁSICO PARA DETENIDOSProyecto de Ley presentado por el senador Robert MenendezEl Acta de Cuidado médico básico para detenidos presentada por el senador Menendez requiere que el secretario del Departamento de Seguridad Nacional establezca procedimientos para el rápido y efectivo tratamiento médico y de salud mental de todos los detenidos bajo la custodia del Departamento de Seguridad NacionalS. 3005, el Acta de cuidado médico básico para detenidos requiere, entre otras cosas, que:• Cada detenido por inmigración reciba un examen médico general y de salud mental  realizado por un profesional calificado, no más tarde de 14 días después de arribar a un centro de detención;• Los detenidos por inmigración que estaban tomando medicinas recetadas con regularidad antes de ser detenidos debe permitírseles continuar tomando sus medicamentos sin interrupción;• Los detenidos por inmigración deben recibir información sobre los servicios médicos y de salud mental disponibles y como solicitarlos, así como una respuesta rápida si los solicitan;• Las decisiones sobre los tratamientos que reciban los detenidos deben ser basados exclusivamente en las evaluaciones clínicas de un profesional;• Asegurar la disponibilidad de los expedientes médicos de los detenidos al personal apropiado, para asegurar que se les administren los medicamentos de forma ininterrumpida;• Las muertes de los detenidos deben ser reportadas dentro de 48 horas.                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8b7342c8-4ce4-47ed-a514-d26c4fda21ae,\"MENENDEZ, LAUTENBERG ANNOUNCE $710KFOR CAMDEN WATERFRONT DEVELOPMENT\n                    \n                            Grant Will Help Improve Access and Economic Activity through Development of Ferry Terminal\n                    \n                      July 29, 2008\n                     WASHINGTON, D.C. - Today, U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced that the U.S. Department of Transportation (USDOT) has awarded $710,000 in federal funds for the development of the South Ferry Terminal in Camden.            \"\"Developing this ferry terminal will help to stimulate the economy of Camden by making the various attractions in the area more accessible,\"\" said Sen. Menendez.  \"\"We want to make it easier to access and enjoy the Camden Waterfront, which will spur economic activity.\"\"            \"\"This funding brings us a step closer to realizing the full potential of Camden's Waterfront,\"\" Sen. Lautenberg said.  \"\"We must continue to support the development of Camden to strengthen the city's economy and improve the lives of the people who live and work there.\"\"            This grant, administered by the USDOT's Federal Transit Administration, will fund the engineering, design and environmental review of the ferry terminal.  The terminal will increase access to many of Camden Waterfront's most-visited attractions, including the Battleship New Jersey, Susquehanna Bank Center, Wiggins Park and Wiggins Marina, and aid further development along the Delaware River.# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9bf0ae41-4c97-4347-8c5e-4041ec37d4a7,\"U.S. SENATOR ROBERT MENENDEZ'S STATEMENT AFTER FACT-FINDING VISIT TO ELIZABETH IMMIGRATION DETENTION FACILITY\n                    \n                            Sen. Menendez, who is fighting for life-saving medical care inside U.S. immigration detention facilities, met privately with detainees\n                    \n                      July 28, 2008\n                     Elizabeth, NJ - Today, Sen. Robert Menendez visited the Elizabeth Immigration Detention Center to see first-hand how New Jersey detainees are being housed and their medical needs  taken care of.  Sen. Menendez was accompanied by Rev. E Roy Riley, Bishop of the New Jersey Synod of the Evangelical Lutheran Church in America, and the Rev. Bruce Davidson, Director of the Lutheran Office of Governmental Ministry. Sen. Menendez, who has monitored the treatment of detainees at the Elizabeth Immigration Detention Center for many years while representing the 13th District of New Jersey in the House of Representatives, felt renewed concern after reports surfaced of the death of Guinean detainee Boubacar Bah at the Elizabeth Detention Facility; as well as over 60 deaths in almost three years at immigration detention centers across the nation.  This prompted Sen. Menendez to introduce S. 3005, The Detainee Basic Medical Care Act of 2008, which would require the Secretary of Homeland Security to establish procedures that would ensure timely and effective delivery of medical and mental health care to all immigrant detainees.After today's visit, Sen. Menendez issued the following statement:\"\"We appreciate the difficult challenges and responsibilities that ICE and the Division of Immigration Health Services (DIHS) have to perform, but there must be accountability. It is disturbing that we spoke privately to three detainees, and two of them are not receiving care for conditions that are not life threatening today, but could become so. That is why I believe that, without a national standard, there is the possibility that detention could be a death sentence, and that is unacceptable. Proper medical care for immigrant detainees, especially in an emergency situation, is a human rights issue.  If this nation wants to be a beacon of light to the rest of the world, as we subscribe and aspire to be, and if we want to tell other countries about the responsibility of putting human rights first, then we must do everything we can to offer necessary medical care, even to those in custody.\"\"Detainee Basic Medical Care Act of 2008Introduced by U.S. Sen. Robert MenendezThe Detainee Basic Medical Care Act of 2008 introduced by Sen. Menendez would require the Secretary of Homeland Security to establish procedures for the timely and effective delivery of medical and mental health care to all immigration detainees in the custody of the Department of Homeland Security.S. 3005, The Detainee Basic Medical Care Act of 2008 would require that:• Every immigration detainee receive a comprehensive medical and mental health intake screening by a qualified health care professional no later than 14 days after arrival;• Immigration detainees taking prescribed medications prior to detention are allowed to continue taking such medication on schedule and without interruption;• Immigration detainees are informed of medical and mental health care services and how to request them and a prompt response provided;• Treatment decisions are based solely on professional clinical judgments• To ensure the availability of medical records to appropriate personnel; to insure uninterrupted medication, and;• Detainee deaths are to be reported no later than 48 hours after the occurrence.                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ea065fa7-7df5-4151-889a-6d19628dfc09,\"SENATE REPUBLICANS BLOCK ASSISTANCE FOR MILLIONS TO COOL HOMES IN SUMMER, HEAT THEM IN WINTER; SEN. MENENDEZ REACTS\n                    \n                            LIHEAP program is vital for low-income families, seniors and those with disabilities\n                    \n                      July 26, 2008\n                     WASHINGTON - Today, Senate Republicans blocked a bill to double the resources for the program (LIHEAP) that provides assistance to low-income families, seniors and those with disabilities who are struggling to pay their rising home energy bills. 34 out of 39 Republicans present voted against proceeding to a final vote.U.S. Senator Robert Menendez (D-NJ), a strong proponent of the LIHEAP program, released the following statement:\"\"More and more low-income families, seniors and Americans with disabilities are struggling to keep up with rising energy bills to cool their homes in the summer and heat them in the winter. This isn't just about convenience or comfort - in too many cases it is about serious life and death situations. Senate Republicans had yet another chance today to show that they are actually committed to helping us reduce the burden of energy prices that are squeezing the American people, but once again they were nowhere to be found. They can talk all they want about American families struggling with energy prices, but time and again they fail to offer real solutions, and they fail to stand with us when we can take substantive action to bring relief.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0baf0942-7861-424c-b271-95eed6350990,\"Major Legislation To Respond To Housing Crisis Passes Congress, Menendez Applauds Action\n                    \n                            Menendez, member of Senate Banking Committee, was able to include amendments to help children uprooted by foreclosures, boost financial literacy programs\n                    \n                      July 26, 2008\n                     WASHINGTON - Today, the U.S. Senate passed the Housing and Economic Recovery Act of 2008, a major piece of legislation to provide relief for families who are struggling to keep their homes and to stabilize the market. Senator Robert Menendez (D-NJ), a member of the Senate Banking Committee who has been a major advocate for a strong federal response to the foreclosure crisis, voted in favor of the housing bill and praised it as an important step toward boosting our economy and providing relief to homeowners.\n\n\"\"This bill is about stopping the collapse of the housing market and helping millions of American families hold on to their homes. It's also about shoring up a foundational pillar of our entire economy,\"\" said Sen. Menendez. \"\"The bill helps everyone from first-time homebuyers to returning veterans to make an investment in a home and continue to live the American Dream.\"\" \n \n\"\"American families are the ones taking the direct hit in this economic downturn. They are receiving foreclosure notices, they are struggling to balance their checkbooks and they are reaching out to Congress for help. This is an important bill that takes us in the right direction, by boosting our economy while at the same time addressing the root cause of our current economic problems - the housing market. I am glad that President Bush this week finally retracted his cold-hearted veto threat of this bill - it has taken him far too long to wake up to the housing crisis.\"\"\n\nThe bill includes provisions requested by Treasury Secretary Henry Paulson in order to increase confidence of the financial markets in Fannie Mae, Freddie Mac and the Federal Home Loan Bank System.\nRegarding those, Senator Menendez said, \"\"With this increased authority comes increased responsibility for federal regulators, and I will work to ensure that the Congress and the Banking Committee keep a tight watch on them and implement strong oversight.  Our taxpayers deserve no less.\"\"\nSenator Menendez also reacted to the inclusion of two of his amendments in the bill, one to assist children uprooted by foreclosures and one to promote better financial literacy for homebuyers and homeowners.\n\n\"\"I am also pleased that this bill includes two provisions that I championed,\"\" said Senator Menendez. \"\"Promoting better financial education among prospective homeowners will help make sure they are armed with the information and knowledge that helps them make the best decisions about their mortgages.  By helping ensure that children who are forced to move from their homes do not also have to leave their schools, we can avoid interrupting crucial developmental years for our children while easing the strain on our nation's school systems.\"\"\n\nMenendez Amendment for children affected by foreclosures: \nIt is estimated that nearly two million children will be directly impacted by the mortgage crisis. Loss of housing can have devastating emotional consequences for children and youth. In response, Senator Menendez authored and helped pass an amendment that will authorize an infusion of funds to school districts across the country through the McKinney-Vento Homeless Education program to help ensure that students who are forced to move from their homes do not also have to leave their schools. More McKinney-Vento funding will enable school districts to provide the counseling and other assistance necessary to help children and youth with the emotional trauma caused by homelessness.\n \nMenendez Financial Counseling Amendment: \nThe Menendez Financial Counseling amendment will lead to better financial education among prospective homeowners and help identify the most successful methods for delivering counseling services.  The amendment simply allows states to use their administrative expenses to improve their financial education and housing counseling services and authorizes pilot projects to help determine the most effective methods for providing housing counseling and financial education.\nThe bill includes a major overhaul of our mortgage financing system; it allows qualified homeowners who are struggling to refinance and lock-in more affordable loans, making terms and regulations more transparent and investing millions of dollars to help expand financial counseling programs.\n \nProvisions in the Housing and Economic Recovery Act of 2008 include:\n· Treasury Plan for Fannie Mae, Freddie Mac and the Federal Home Loan Bank System: To ensure that the market and our banks are stable and to provide assistance and better oversight.\nThe HOPE for Homeowners Act: Creates an initiative within the Federal Housing Administration (FHA) to prevent foreclosures for hundreds of thousands of families at no estimated cost to American taxpayers.\n· Affordable Housing Fund: A permanent, new fund that will help create more affordable housing for millions for Americans in communities across the country.\nAssistance for Communities Devastated by Foreclosures: To ensure that communities can mitigate the harmful effects of foreclosures, $3.92 billion in supplemental Community Development Block Grant Funds will be provided to communities hardest hit by foreclosures and delinquencies.\nForeclosure Counseling for Families in Need: To help families avoid foreclosure, the bill provides $150 million in additional funding for housing counseling.\nPreserving the American Dream for Our Nation's Veterans: This bill contains several provisions to help returning soldiers avoid foreclosure, including lengthening the time a lender must wait before starting foreclosure from three months to nine months after a soldier returns from service.\n· GSE Reform: Creates a world class regulator for the government-sponsored enterprises (GSEs) so that these vital institutions can safely and soundly carry out their important mission of providing our nation's families with affordable housing.\nFHA Modernization: A provision to modernize, streamline and expand the reach of the FHA, allowing families in all areas of the country to access secure and affordable mortgages through FHA.\nEnhancing Mortgage Disclosure: To ensure that consumers know the exact amounts of their mortgage payments, including the maximum possible payment under the terms of the loan and changes in payments associated with adjustable rate mortgages, lenders will be required to provide borrowers with timely and meaningful mortgage disclosures on all home purchase loans, loans that refinance a home, and loans that provide a home equity line of credit.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2d1edece-de64-4e09-a8da-9535e764c744,\"SENS. MENENDEZ AND KENNEDY HAIL PASSAGE OF LEGISLATION TO ASSIST CHILDREN UPROOTED BY FORECLOSURES\n                    \n                            As millions of families lose homes, schoolchildren have been floating from one school to another\n                    \n                      July 26, 2008\n                     WASHINGTON - Today, as part of landmark legislation to respond to the housing crisis, the U.S. Senate approved an amendment authored by Senators Robert Menendez (D-NJ) and Edward Kennedy (D-MA) that would provide an infusion of funding for a program to help schoolchildren uprooted by foreclosures to stay in their schools and receive educational assistance. As a result of the nationwide foreclosure crisis, potentially millions of students will see their families lose their homes, and many have already found themselves floating from school to school.  Senator Menendez said: \"\"One of the pieces of collateral damage from the devastating foreclosure crisis that hasn't gotten enough attention is the effect it can have on our nation's children. It is unfair to let these children float from one unfamiliar school to another through no fault of their own and against the will of their parents. When they are abruptly uprooted from the schools where they have formed a connection to the teachers, learning material and classmates, their development can be severely stunted. For the development of the children of our country, we are pleased and thankful that our amendment was included in the housing legislation and will become law.\"\" Melissa Wagoner, spokeswoman for Senator Kennedy, said: \"\"The loss of a home is devastating - particularly for young people. Senator Kennedy is proud to support this amendment.  It will go a long way towards providing homeless students with the support they need to succeed in school and reach their full potential.\"\" Bruce Lesley, President of First Focus, said: \"\"We applaud Senator Menendez for leading the effort to support children who are impacted by the foreclosure crisis. The amendment passed today will help to provide these children with the services they need to grow up safe and healthy, as well as ensure that they stay in school and on track for success.\"\" Tim Stahlke, President of the National Association for the Education of Homeless Children and Youth, said: \"\"The Menendez amendment will provide much needed relief to children and families whose lives have been upended by loss of housing due to the foreclosure crisis. It will help strengthen the safety net provided by schools, and ensure that children who lose their housing do not also lose their classmates, teachers, and education. We are thrilled at its passage as a critical step in bringing stability and support to these vulnerable children and families.\"\"  Abrupt, and in some cases frequent, changes of school can affect a child's ability to learn and puts strain on school districts. An analysis by the group First Focus and the Brookings Institution has estimated that up to two million schoolchildren will be affected by the foreclosure crisis. The amendment to the housing bill was supported by the following national organizations: Alliance for Children and Families  Alliance for Excellent Education, American Humane Association, Break the Cycle. Camp Fire USA, Child Welfare League of America, Communities In Schools, First Focus, National Association for the Education of Homeless Children and Youth, National Association of Elementary School Principals, National Association Secondary School Principalsm National Collaboration for Youth, National Education Association, National PTA, National School Boards Association, Public Education Network, School Social Work Association of America, The Rebecca Project for Human Rights, United Neighborhood Centers of America, Voices for America's Children, YMCA of the USA, and YouthBuild USA. The following summary and fact sheet was prepared by Focus First:MENENDEZ AMENDMENTMeeting the Needs of Children Impacted by the Foreclosure Crisis BACKGROUNDFirst Focus and the Brookings Institution estimate that nearly two million children will be directly impacted by the mortgage crisis.[1] Research shows that these children are at higher risk of doing poorly in math and reading, being held back, and eventually dropping out:•        Data from the National Assessment of Educational Progress (known as the Nation's Report Card) has found that students with two or more school changes in the previous ear are half as likely to be proficient in reading as their stable peers. •        A GAO study found that third-graders who have changed schools frequently are 2.5 times more likely to repeat a grade than their peers.•        Other researchers have found that school and residential changes can reduce the chances that a student will graduate by more than 50 percent. These children and youth are also at higher risk of behavioral and health problems:•        One study found that frequent movers were 77 percent more likely than children who have not moved to have four or more behavior problems. •        Another study found that attending several different elementary schools increased the likelihood of violent behavior in high school by 20 percent.•        Working families spending more than half of their income on housing have less money available than other families to spend on such crucial items as health care and health insurance.  PROPOSALSenator Menendez's amendment will authorize an infusion of funds to school districts across the country through the McKinney-Vento Homeless Education program to help ensure that students who are forced to move from their homes do not also have to leave their schools. SERVICES PROVIDED BY MCKINNEY-VENTOMcKinney-Vento allows homeless students to stay in their schools even if they are forced to move outside the school district. In addition, the program provides homeless students with a variety of supports, such as tutoring, school supplies, and counseling, among others, to help stabilize their education even though the rest of their lives are fraught with uncertainty. Loss of housing can have devastating emotional consequences for children and youth. Social networks are disrupted, belongings are lost, and the stress and anxiety of not knowing where or when new permanent housing will be found prevent children from being able to focus on their education. More McKinney-Vento funding will enable school districts to provide the counseling and other assistance necessary to help children and youth with the emotional trauma caused by homelessness. CHALLENGES FACING FAMILIESMany families are facing the combined challenge of the foreclosure crisis, the downturn in the economy, the spike in food and gas prices, and the nation's lack of affordable housing. For example, a school district in Alabama discovered a family who was homeless due to foreclosure only when the mother's car broke down. The mother did not want her autistic elementary-age child to suffer the dual trauma of losing her home and her school; therefore, she used what little money she had on gas to drive her daughter to and from school. The mother had not informed the school about her situation because she did not know she qualified under the McKinney-Vento Act and that services were available. She had been depleting the family's scare resources on gas to get her child to school, thus hampering the family's efforts to save money to get out of the motel and into rental housing. Unfortunately, the mother's car broke down and the child was no longer able to go to school. The school district then identified the family as homeless and is now working to provide transportation so the child can go to school, and other services so the family can get back on its feet.  Additional McKinney-Vento funding would assist school districts to identify homeless families, and provide them with gas vouchers or other transportation assistance so they do not have to further deplete their savings in order to provide educational stability for their children. CHALLENGES FACING SCHOOL DISTRICTSAs a result of the foreclosure crisis and economic downturn, school districts are identifying more children and youth who are homeless, adding to the already large and growing population of children and youth who do not have stable housing. These increased numbers are straining school district transportation budgets, as well as other resources necessary to ensure school stability and support for academic success. Families who have lost their housing due to foreclosure need assistance navigating social services, housing, and other systems of community aid with which they are often unfamiliar. The responsibility for providing these referrals and \"\"navigation\"\" assistance belongs to McKinney-Vento school district liaisons. With increased caseloads, liaisons are struggling try to provide comprehensive assistance to all impacted families - those homeless due to foreclosure and those homeless for other reasons - and to ensure that children and youth are connected to the full range of educational supports. At the current funding level, only 5% of school districts nationwide receive these subgrants. The emergency grants that are authorized by the Menendez amendment would allow States to provide supplemental funding to any school district that has demonstrated need due to increased foreclosures, thus allowing more school districts to provide assistance to more children and youth who are homeless due to foreclosure. STATE-BY-STATE ESTIMATES OF CHILDREN DIRECTLY IMPACTED BY THE MORTGAGE CRISIS                 PROJECTED FORECLOSURES (A)            HOUSEHOLDS WITH CHILDREN (PERCENT) (B)            AVERAGE NUMBER OF CHILDREN (C)                        CHILDREN IMPACTED BY FORECLOSURE CRISIS (D)                    Alabama            21,330            43.7            1.77             16,600         Alaska            3,831            46.3            1.93             3,400         Arizona            85,726            40.5             1.96            68,100        Arkansas            11,734            44.1            1.81            9,400        California            355,682            45.7            1.92            311,900        Colorado             49,923            41.2            1.90            39,000        Connecticut            18,847            44.7            1.85            15,600        Delaware            5,551            42.7            1.83            4,300        D.C.            4,290            22.7            1.62            1,500         Florida            194,796            38.0            1.76            130,500        Georgia            83,686            44.0            1.82             67,100         Hawaii            8,832            38.4            2.01             6,800        Idaho            10,035            44.4            2.05             9,100        Illinois            87,918            45.5            1.91            76,500        Indiana            48,034            43.5            1.89             39,600        Iowa            11,190            44.4            1.92            9,500         Kansas            14,347            44.8            1.92             12,400        Kentucky            21,253            42.2            1.73             15,500        Louisiana            26,306            45.5            1.83             21,800        Maine            6,597            39.3            1.75             4,500        Maryland            55,693            43.2            1.79             43,200         Massachusetts            32,976            43.8            1.88            27,200        Michigan            79,893            42.9            1.92             65,700        Minnesota            38,991            44.2            1.92             33,100        Mississippi            15,439            47.2            1.80             13,100         Missouri            42,727            42.6            1.86             33,900         Montana            3,225            42.6            1.89            2,600         Nebraska            7,390            46.4            2.00            6,800        Nevada            51,881            39.2            1.87             38,100         New Hampshire            7,422            42.7            1.82            5,700         New Jersey             57,083            47.8            1.83            50,000        New Mexico            9,093            40.9            1.92             7,100         New York             124,601            45.4            1.88            106,500         North Carolina            53,254            41.9            1.77            39,400        North Dakota            1,103            46.4            1.93             1,000         Ohio            85,618            42.1            1.90            68,500        Oklahoma            20,157            43.4            1.87             16,300         Oregon            27,827            38.6            1.83            19,600        Pennsylvania            76,055            43.3            1.86            61,200        Rhode Island            8,170            43.0            1.77            6,200        South Carolina            27,996            41.8            1.77             20,700        South Dakota            1,860            44.8            1.88             1,600         Tennessee            46,218            42.9            1.78             35,300         Texas            149,661            49.8            1.94              144,400        Utah            23,286            52.8            2.34             28,800        Vermont            2,122            41.5            1.86              1,600        Virginia            62,174            41.5            1.80            46,400        Washington            42,036            41.7            1.85            32,400         West Virginia            6,218            43.3            1.75            4,700        Wisconsin            26,334            44.2            1.94             22,600        Wyoming            2,246            41.8            1.85             1,700         United States            2,258,457              --              --             1,848,600*        Numbers may not add due to rounding. (A) Center for Responsible Lending data on projected foreclosures [http://www.responsiblelending.org/issues/mortgage/ quick-references/state-by-state- analyses-of-subprime- losses.html, accessed 4/18/2008]. (B) Brookings analysis of children in owner-occupied homes with outstanding mortgages, based on 2006 data from the American Community Survey. (C) Ibid.(D) Children = (A) x (B) x (C).*The state-by-state analysis undercounts children impacted by the foreclosure crisis because it ignores racial/ethnic differences, and thus does not take into account the higher incidence of subprime loans and higher family sizes among Latino households.  In other words, the national estimate of 1.95 million children detailed in The Impact of the Mortgage Crisis on Children is preferred over the 1.85 million total shown above. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=775c6839-2f61-4b55-9193-bf0598c750fe,\"SENATE REPUBLICANS KILL BEST CHANCE TO QUICKLY LOWER GAS PRICES, SEN. MENENDEZ REACTS\n                    \n                            Despite many voicing support for crackdown on speculation in oil markets, 42 Republicans vote to stall legislation\n                    \n                      July 25, 2008\n                     WASHINGTON - This morning, Senate Republicans obstructed legislation to crack down on unchecked speculation in the oil markets - the best chance to lower gas prices quickly - by voting to prevent the bill from advancing to a final vote. Their actions came despite the fact that the Senate Republican energy bill includes speculation provisions and that yesterday the Commodity Futures Trading Commission filed a complaint against a Dutch company for manipulation of the oil market.U.S. Senator Robert Menendez, a leading voice in the oil and gas prices debate, released the following statement:\"\"Let the record show that when the Senate was on the verge of taking the action that would give us the best chance to lower gas prices quickly, Republicans said ‘No.' In doing so, they showed American people getting slammed by $4 a gallon gas that it is more important to the Republican party to give another handout to oil companies making record profits than to bring immediate relief at the pump for families. How they can go home and tell their constituents between now and November that they truly want to quickly lower gas prices is beyond me. This was our best chance, and they are the reason it isn't happening.\"\"Yesterday, the federal commission in charge of monitoring the oil market announced that it caught a Dutch company manipulating the market by driving up the price of oil. This is just the tip of the iceberg. We need to give the Commodity Futures Trading Commission the resources and authority it needs to finally clean up this activity on a broader scale. It is time for the Republican Party to get out of the way so we can provide relief to the American people.\"\"Senator Menendez's plan for lowering gas prices, long-term transportation costs:• Lower gas prices now - Unchecked speculation on the oil trading markets has driven oil prices higher; Senate Democrats have strong proposals to clamp down on oil speculation: http://menendez.senate.gov/newsroom/record.cfm?id=299186&• Hold oil companies accountable -Senator Menendez is a lead sponsor of legislation that will spur domestic oil production by compelling big oil companies to begin utilizing the 68 million acres that they lease but thus far have not used to produce energy: http://menendez.senate.gov/newsroom/record.cfm?id=300453• Break our dependence on oil - Sen. Menendez has been a strong advocate for renewable energy and advanced alternative fuels. Recently, he helped push an amendment through the Senate that would extend renewable energy tax credits to help fight global warming and wean us off of fossil fuel:  http://menendez.senate.gov/newsroom/record.cfm?id=295986                                                   # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0d2019e6-7e47-45d5-929f-dde28bad6e1b,\"LAUTENBERG, MENENDEZ: NO TIME TO CUT NJ HOMELAND SECURITY GRANTS\n                    \n                            NJ Sens. Condemn Bush Admin. for Reducing State's Funding for Critical Security Program\n                    \n                      July 25, 2008\n                      WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that New Jersey will receive more than $73.6 million in homeland security grants from the U.S. Department of Homeland Security (DHS), but criticized President Bush and DHS for reducing the funds New Jersey receives for a critical risk-based urban security program.            \"\"The Bush Administration just doesn't get it.  New Jersey is home to the most at-risk two miles for terrorism in the country.  While some of our programs received an increase this year, this is no time to cut homeland security funding for our urban areas,\"\" Lautenberg said.  \"\"This is another example of the Bush Administration ignoring critical needs here at home while spending $3 billion a week in Iraq.\"\"           \"\"The good news for New Jersey's security is that the positive reforms the Democratic Congress made to the state security grants have resulted in increased security funding that goes directly to our state government out of that program,\"\" Menendez said.  \"\"Unfortunately, the Bush administration's decision to cut the funding that goes directly to New Jersey's highest-threat cities shows that they still don't fully grasp that security resources need to go to areas where the risk is most real. That is fundamental to security here it home, and seven years after 9/11, the administration should have gotten it right by now. The next administration has to better understand our security needs here in the nation's most densely-populated state, which includes two of the nation's five biggest metropolitan areas. I also continue to be concerned that areas of South Jersey within shouting distance of Center City Philadelphia are not even included in the program for high-threat cities - that's a glaring and dangerous omission.\"\"           New Jersey will receive $34,988,000 for the Urban Area Security Initiative (UASI), a $1 million decrease from last year's funding level of $36,070,000.  UASI is a risk-based program that helps protect high-density and high-threat urban areas, such as Newark and Jersey City, by improving their ability to prevent, respond to and recover from acts of terrorism.             New Jersey will also receive $38,703,752 in additional federal funds for four other homeland security programs:• $27,780,000 to the State Homeland Security Program, which state-based homeland security strategies to help municipalities in New Jersey plan, equip and train emergency personnel to respond to acts of terrorism;• $9,921,750 to the Regional Catastrophic Preparedness Grant Program, which helps law enforcement prevent terrorism by coordinating with non-law enforcement, government agencies and the private sector;• $359,560 to the Citizens Corps Program, which involves residents in prevention, preparedness and response to terrorism, natural disasters and other threats, such as crime and public health; and• $642,442 to Metropolitan Medical Response System, which helps towns and cities prepare for and respond to mass casualty events.                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b80b9b55-3ea2-4fc5-b828-bf5c465fe5a8,\"SECOND PHASE OF MINIMUM WAGE INCREASE GOES INTO EFFECT TODAY; SEN. MENENDEZ REACTS\n                    \n                      July 24, 2008\n                     WASHINGTON - The federal minimum wage rose by 70 cents today to $6.55 per hour as part of a three-step increase that will ultimately bring the minimum wage to $7.25 an hour. The minimum wage increase is a key component of the Democrats agenda that prioritizes the needs of hardworking American families.U.S. Senator Robert Menendez (D-NJ), an original co-sponsor and strong advocate of legislation to increase the minimum wage, released the following statement today:\"\"With the price of essentials such as food and fuel skyrocketing, Americans are being squeezed at the pump and the supermarket as they bear the burden of a struggling economy.  Democrats pushed for years to increase the minimum wage, which is now providing thousands of families with a much needed raise,\"\" said Sen. Menendez. \"\"We understood then and now that those who work hard in this country deserve an honest wage in order to build a better life and I will continue to work with my colleagues to find effective solutions to boost our economy and create jobs.\"\"\"\"New Jersey has been ahead of the curve with a higher minimum wage that is vital for our state's workers. This three-step nationwide increase will benefit workers across the country and will benefit America's economy, and I am proud to have been an original supporter of this cause.\"\"The state of New Jersey had previously increased its minimum wage to $7.15 an hour.The federal minimum wage increase to $7.25 an hour will benefit an estimated 13 million Americans, more than 60% of which are women and more than 40% are which are people of color. Almost 80% of those who will benefit are adult workers.                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=975e111b-336c-4b22-9865-9950e6d38d59,\"Sens. Menendez, Lautenberg Announce $1.9 Million Federal Grant for New Jersey Workforce\n                    \n                            Grant from the U.S. Department of Labor Will Increase Job Security for Struggling Families\n                    \n                      July 23, 2008\n                     WASHINGTON D.C. - Today, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced that the New Jersey Department of Labor and Workforce Development will receive more than $1.9 million in federal funds to help struggling families stay in the workforce.  The federal funds will be used to help Temporary Assistance for Needy Families (TANF) recipients achieve sound and gainful employment.\"\"These federals funds will help families struggling in this economy who want to get back on their feet and stay employed,\"\" said Sen. Menendez. \"\"This type of workforce investment can help ease the pain of this economy, end the poverty cycle and provide the exact type of assistance needed for families to rise above the poverty line.  These funds will help equip New Jerseyans with the skills and training needed to remain in the workforce and put food on the table for their families.\"\"\"\"It is critical that we give workers the resources they need to maintain employment and advance in their fields,\"\" Sen. Lautenberg said.  \"\"With the price of gas, food and health care rising every day, these funds will help New Jerseyans pay for these basic necessities.  We must do all we can to protect our families from choosing between filling their gas tanks or filling their stomachs.\"\"The Department of Labor has awarded $17.5 million nationwide to various State Workforce Agencies for dislocated worker demonstration projects.  The New Jersey Department of Labor, located in Trenton, will use the funds to secure entry level positions held by former TANF recipients and help them enter or advance within high-growth industries. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=49bf9909-54c6-421a-ab3c-f25915440a27,\"AS FIRST OIL COMPANY EARNINGS FIGURES SHOW SKY-HIGH PROFITS, SEN. MENENDEZ SAYS THEY DO NOT NEED MORE FEDERAL HANDOUTS\n                    \n                            Coastline drilling would not lower gas prices but would help boost record oil company profits\n                    \n                      July 23, 2008\n                     WASHINGTON - Today, oil company ConocoPhillips reported a surge in profits in the second-quarter of this year, marking the first of the three major U.S. oil company earnings reports expected out over the next week. Conoco reported a staggering net income of $5.44 billion in the second-quarter, up from $301 million in the second quarter last year. High oil prices are a main reason for the jump in profit.Despite these astronomical profits and high gas prices, there is evidence that oil companies are spending their profits primarily on stock buybacks, rather than increased exploration or innovation. Just yesterday, The Associated Press reported that ConocoPhillips spent $2.5 billion on stock buybacks between April and June, which is nine times more than what it spent on exploration.U.S. Senator Robert Menendez (D-NJ), author of the COAST Act to permanently ban drilling in the Outer Continental Shelf, has repeatedly pointed out that the Republican plan to open up the OCS for drilling will do nothing for gas prices but will help oil companies' stock prices. In addition, he is a lead co-sponsor of Sen. Russ Feingold's (D-WI) use-it-or-lose-it legislation to spur oil companies to actually utilize the 68 million acres of unused public land they already have under lease. Today, he released the following statement:\"\"If there ever was evidence that Big Oil doesn't need any more federal handouts, the parade of astronomical oil company profit reports that began today is it. On one extreme you have American families getting absolutely slammed by gas prices. On the other extreme you have the oil companies counting their money, sitting on 68 million unused acres and asking for even more land to put on their books. There is no way to justify giving yet another handout to these companies, especially when they are focusing far more on stock buybacks than the type of exploration and innovation that will help lower energy costs for American families.\"\"The oil men in the White House and their party are trying to pull a fast one on the American people by selling a plan that has a lot more to do with oil company stock prices than gas prices. For far too long, our government has held the oil companies' hands rather than holding them accountable. American families are getting squeezed, and they deserve a government that works for them, not for Big Oil.\"\"Senator Menendez's plan for lowering gas prices, long-term transportation costs:• Lower gas prices now - Unchecked speculation on the oil trading markets has driven oil prices higher; Senate Democrats have strong proposals to clamp down on oil speculation: http://menendez.senate.gov/newsroom/record.cfm?id=299186&• Hold oil companies accountable -Senator Menendez is a lead sponsor of legislation that will spur domestic oil production by compelling big oil companies to begin utilizing the 68 million acres that they lease but thus far have not used to produce energy: http://menendez.senate.gov/newsroom/record.cfm?id=300453• Break our dependence on oil - Sen. Menendez has been a strong advocate for renewable energy and advanced alternative fuels. Recently, he helped push an amendment through the Senate that would extend renewable energy tax credits to help fight global warming and wean us off of fossil fuel:  http://menendez.senate.gov/newsroom/record.cfm?id=295986                                                                 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=25ab7ecd-906b-46bd-a4b2-7215c091aab2,\"AMERICAN OIL FOR AMERICAN FAMILIES: SEN. MENENDEZ INTRODUCES LEGISLATION THAT WOULD ENSURE OIL PRODUCED IN U.S. STAYS IN U.S.\n                    \n                            As gas exceeds $4 per gallon, U.S. exports 1.3 million barrels of oil and petroleum products overseas each day\n                    \n                      July 22, 2008\n                     WASHINGTON - As gas prices continue to exceed $4 per gallon, U.S. Senator Robert Menendez (D-NJ) today introduced legislation to keep more of the oil produced in the United States here for domestic consumption. The American Oil for American Families Act would ensure that oil or petroleum products that originate within American public lands are not exported. Currently, more than 1.5 million barrels of U.S.-produced crude oil and petroleum products are sent to foreign countries each day (http://tonto.eia.doe.gov/dnav/pet/pet_move_exp_dc_NUS-Z00_mbblpd_m.htm). \"\"American families deserve to know that oil produced from land belonging to American taxpayers is used to increase the supply here at home, not sent to the other side of the world. The fact is that, as gas prices continue to exceed $4 a gallon, oil companies send 1.5 million barrels of American oil and petroleum products to other countries each day. When we talk about increasing the domestic supply of oil, this is something that can be done and done quickly to adjust the supply-demand balance here in the U.S. more in favor of American consumers.\"\"             In 2007, more than 510 million barrels of U.S.-produced oil and petroleum products were exported. Outside of North America, The Netherlands, Singapore and Japan were the leading importers of American oil. Senator Menendez's plan for lowering gas prices, long-term transportation costs: ·         Lower gas prices now - Unchecked speculation on the oil trading markets has driven oil prices higher; Senate Democrats have strong proposals to clamp down on oil speculation: http://menendez.senate.gov/newsroom/record.cfm?id=299186&   ·         Hold oil companies accountable -Senator Menendez is a lead sponsor of legislation that will spur domestic oil production by compelling big oil companies to begin utilizing the 68 million acres that they lease but thus far have not used to produce energy: http://menendez.senate.gov/newsroom/record.cfm?id=300453  ·         Break our dependence on oil - Sen. Menendez has been a strong advocate for renewable energy and advanced alternative fuels. Recently, he helped push an amendment through the Senate that would extend renewable energy tax credits to help fight global warming and wean us off of fossil fuel:  http://menendez.senate.gov/newsroom/record.cfm?id=295986 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=23b61e44-8bf7-4426-95c0-09907bf7b287,\"SEN. MENENDEZ REACTS TO REPORT ON OIL COMPANIES SPENDING FAR MORE ON STOCK BUYBACKS THAN EXPLORATION OR INNOVATION\n                    \n                            Proponent of \"\"Use it or lose it\"\" legislation says oil companies have greater responsibility than just increasing record profits\n                    \n                      July 22, 2008\n                     WASHINGTON - The Associated Press reported this morning that oil companies are increasingly spending their profits on stock buybacks and dividends to please investors rather than the exploration and innovation they have promised they are pursuing (http://ap.google.com/article/ALeqM5jdMq36pfzhyHeyexEU51JX5sr1egD922KTHG1). Oil companies are spending 55 percent of profits on stock buybacks and dividends, up from 30 percent in 2000 and just 1 percent in 1993, according to the report.U.S. Senator Robert Menendez (D-NJ) is a lead co-sponsor of Senator Russ Feingold's (D-WI) legislation to ensure that oil companies utilize the 68 million acres of unused land they have already leased or otherwise lose it and is also the sponsor of the COAST Act to permanently ban drilling in the Outer Continental Shelf. He reacted to today's report:\"\"At some point, oil companies need to recognize that they have been trusted to manage natural resources from public lands, and there are times when they have a responsibility greater than just boosting their bottom line. With gas and food prices through the roof and the economy sputtering, we arrived at that point long ago. On one hand you have Americans getting slammed by $4 per gallon gas. On the other hand you have oil companies doing all they can to make their record profits even bigger instead of exploring and innovating. If that outrages the American people, they certainly have reason to be upset.\"\"This report reinforces the absurdity of the plan to open up our coastlines for drilling. There are 68 million unused public acres already controlled by oil companies, and while they do everything they can to boost their stock prices, they do nothing to produce oil from this land. It is clear that opening up our coastlines would not lower gas prices but would allow oil companies to put more leases on their books in order to impress their investors. The push for coastline drilling isn't a gas-price-reduction plan, it's an oil company stock-price-inflation plan.\"\"Senator Menendez's plan for lowering gas prices, long-term transportation costs:• Lower gas prices now - Unchecked speculation on the oil trading markets has driven oil prices higher; Senate Democrats have strong proposals to clamp down on oil speculation: http://menendez.senate.gov/newsroom/record.cfm?id=299186&• Hold oil companies accountable -Senator Menendez is a lead sponsor of legislation that will spur domestic oil production by compelling big oil companies to begin utilizing the 68 million acres that they lease but thus far have not used to produce energy: http://menendez.senate.gov/newsroom/record.cfm?id=300453• Break our dependence on oil - Sen. Menendez has been a strong advocate for renewable energy and advanced alternative fuels. Recently, he helped push an amendment through the Senate that would extend renewable energy tax credits to help fight global warming and wean us off of fossil fuel:  http://menendez.senate.gov/newsroom/record.cfm?id=295986 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=119d6a6e-655b-41e7-ac56-0fe2249386e0,\"KEY SENATE PANEL APPROVES MORE THAN $268 MILLION FOR PROGRAMS CRITICAL TO NEW JERSEY'S MILITARY FACILITIES AND FARMERS\n                    \n                            Sens. Lautenberg & Menendez Announce Funds for N.J. in Military-Veterans, Agriculture Appropriations Bills\n                    \n                      July 21, 2008\n                                  WASHINGTON, D.C. - Last week, the Senate Appropriations Committee approved more than $268 million in federal funding for New Jersey's military facilities and farmers supported by Sen. Frank R. Lautenberg (D-NJ), a member of the committee, and Sen. Robert Menendez (D-NJ).            The funds are part of two separate FY 2009 spending bills that passed the Senate Appropriations Committee: the Military Construction-Veterans Affairs Appropriations bill and the Agriculture, Rural Development, Food and Drug Administration Appropriations bill.  These bills must be approved by both the full Senate and House of Representatives before they can be signed into law by the President.   However, President Bush has threatened to veto them.            \"\"We must ensure our bases are safe, secure and equipped with state-of-the-art technology so our troops get the best training and tools we can provide,\"\" Sen. Lautenberg said.  \"\"We must also give our farmers the ability to grow nutritious crops such as fruits and vegetables, and to sell those crops in local markets to local residents.  These funds would achieve these goals, and I am proud to have helped take this important step to secure them.\"\"            \"\"Our troops deserve our strong support, not just on the battlefield but also where they live and train here at home,\"\" said Sen. Menendez.  \"\"I'm thrilled to see New Jersey facilities one step closer to receiving this critical support.            Sen. Menendez added, \"\"This funding would also help New Jersey continue to distinguish itself in agriculture, helping farmers grow the outstanding Garden State produce that people nationwide have come to love.  I'll be working hard to make sure this funding clears any hurdles that are left.\"\"            Under the Military Construction-Veterans Affairs Appropriations bill, five New Jersey military installations would receive a total of $256,318,000 in funds:• $76,000,000 to Picatinny Arsenal;• $42,444,000 to Naval Air Engineering Station Lakehurst;• $125,893,000 to McGuire Air Force Base;• $8,160,000 to Earle Naval Weapons Station; and• $3,825,000 to Fort Dix.            Under the Agriculture, Rural Development, Food and Drug Administration Appropriations bill, Senator Lautenberg helped secure $12,099,000.  The national Interregional Project-4 (IR-4) program would receive $11,368,000.  Rutgers University receives funding and participates in the IR-4 program, which provides pest management solutions for growers of high value specialty crops.            Other New Jersey programs funded under the bill are:• $251,000 to the New Jersey Association of Conservation Districts for conservation technical assistance; and• $480,000 to Rutgers University for cranberry/blueberry disease and breeding assistance.                                                           # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=52a86c93-3093-4292-891c-1b5e6d95b9e8,\"SEN. MENENDEZ FIGHTS TO ENSURE TURKISH GOVERNMENT RESPECTS RIGHTS AND FREEDOMS OF ORTHODOX CHRISTIAN CHURCH'S ECUMENICAL PATRIARCHATE\n                    \n                            In seeking to join European Union, Turkey must adhere to certain criteria, including the guarantee of respect and protection for religious minorities\n                    \n                      July 21, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, has introduced legislation to urge the Government of Turkey to respect the rights and freedoms of the Ecumenical Patriarchate of the Orthodox Christian Church, in accordance with criteria necessary to join the European Union. The Ecumenical Patriarch is the leading figure in the Orthodox Church and has suffered from discriminatory treatment from the Turkish government.\"\"For a government to treat a revered religious institution and leader in such a discriminatory manner is an affront to human and religious rights and shows disrespect to the hundreds of millions of Orthodox Christians,\"\" said Senator Menendez. \"\"There must be fairness and freedom when it comes to the Turkish government's treatment of the Ecumenical Patriarchate. As Turkey appeals to the European Union for membership, I would expect its treatment of the Ecumenical Patriarchate to be a prime topic that must be addressed.\"\"Senator Menendez's resolution, which is co-sponsored by Sens. Olympia Snowe (R-ME), Joseph Biden (D-DE) and Benjamin Cardin (D-MA), urges the Government of Turkey to respect the rights and religious freedoms of the Ecumenical Patriarchate of the Orthodox Christian Church. It calls on the Turkish government to immediately:• recognize the right to the title of ‘‘Ecumenical Patriarch';• grant the Ecumenical Patriarch appropriate international recognition and ecclesiastic succession;• grant the Ecumenical Patriarch the right to train clergy of all nationalities, not just Turkish nationals; and• respect property rights and human rights of the Ecumenical Patriarchate.The Government of Turkey has sought membership in the European Union and maintains strong bilateral relations with the United States Government. The accession of Turkey to the European Union will depend on its adherence to the Copenhagen criteria that require candidate countries to have stable governmental institutions that guarantee human rights and that respect and protect minorities, including religious minorities such as Orthodox Christians.###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f6fe89d6-db31-4c17-85cf-293eae8333c5,\"SENATORS PUSH USE IT OR LOSE IT AMENDMENTS TO ENERGY SPECULATION BILL\n                    \n                      July 21, 2008\n                     Washington, D.C. - U.S. Senators Russ Feingold (D-WI), Christopher Dodd (D-CT), and Robert Menendez (D-NJ) are continuing their push to ensure that, before the oil companies seek additional leases, they develop the 68 million acres of federal land they currently lease.  The trio is attempting to offer several amendments to the energy speculation legislation currently being considered by the Senate. Feingold, Dodd and Menendez recently introduced the \"\"Responsible Federal Oil and Gas Lease Act\"\" and \"\"Responsible Ownership of Public Land Act.\"\" The first requires oil companies to show they are either producing oil or gas - or making progress exploring or developing - on current leases before they obtain more.  The Responsible Ownership of Public Land Act, which the trio introduced along with Senator Dick Durbin (D-IL), would charge oil companies a fee for every acre of land they lease but do not use for production.  The Senate could vote on the oil speculation legislation as early as Tuesday, July 22. \"\"With oil companies asking for more federal lands when they aren't producing oil on most of their current leases, it is time for Congress to step in and insist on some accountability,\"\" Feingold said.  \"\"The quickest way to produce more oil is to develop lands already under lease since exploration is underway and much of the infrastructure, like miles and miles of pipeline, is in place.\"\"\"\"People are hurting, they're angry, and they want their elected leaders to do something to lower their energy costs,\"\" said Dodd. \"\"Republicans are offering their same failed energy policies - drill, drill, drill - yet 68 million acres are already leased by oil companies and left unexplored. Instead of continuing the policy of padding the coffers of oil executives while American families struggle, it is time to tell these companies they can either ‘use it or lose it.'\"\" Senator Menendez said, \"\"Our government needs to stop holding the oil companies' hand and start holding them accountable. As American families face sky-high gas prices, they deserve a government that works for them, not for oil companies making record profits. We've heard a lot of Bush-McCain talk about the importance of drilling, and if they want to back their words with action, they should join us in this effort.\"\"While some are calling for opening up more federal lands for drilling, the oil companies have not explained why they have not produced on over three-quarters of federal lands and waters they currently lease. Federal lands and waters that are already available for leasing contain over 100 billion barrels of oil and gas resources.  Between 1999 and 2007, the federal government increased the number of drilling permits by 361 percent, however oil companies are not keeping pace. While the Bureau of Land Management issued 28,776 permits to drill on public land in the last four years, wells have not been drilled on over a third (9,822).  Current federal law allows oil companies to sit on leases for the entire length of the lease term, which is typically 10 years, and there are no requirements that they develop the lands.                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2d2a3be6-16bd-4b35-b398-91f03d40b3a4,\"IN RESPONSE TO BBC REPORT OF CHINESE MILITARY SUPPORT FOR SUDANESE REGIME IN DARFUR, SEN. MENENDEZ URGES U.S. ENVOY INVESTIGATE\n                    \n                            Evidence of Chinese military vehicles, pilot training found in Darfur, could violate UN arms embargo\n                    \n                      July 18, 2008\n                     WASHINGTON - This week, the BBC reported that it has found evidence of current Chinese military assistance to the Sudanese regime in Darfur (http://news.bbc.co.uk/2/hi/africa/7503428.stm).  The network showed evidence of Chinese-made military vehicles used in attacks in Darfur and that China was training pilots there to fly Chinese-made fighter planes. If verified, this equipment and these activities could be in violation of the United Nations arms embargo on Darfur.U.S. Senator Robert Menendez (D-NJ) is a member of the Senate Foreign Relations Committee who last year along with Senator Sam Brownback (R-KS) passed a Senate resolution calling on China to use its influence to pressure the Sudanese regime to end the genocide in Darfur. Today, he urged Bush administration's special envoy to Darfur, Ambassador Richard Williamson, to determine the veracity of these reporters through the Chinese and Sudanese governments and to take action if necessary.            PDF of letter to Williamson: http://menendez.senate.gov/pdf/071808DarfurLetter.pdf            Text of letter to Williamson:July 18, 2008Ambassador Richard WilliamsonU.S. Special Envoy to SudanU.S. Department of StateDear Ambassador Williamson:I am writing to express my concern regarding new evidence that the Sudanese government continues to violate the United Nations arms embargo and that Chinese weapons are being used against the people in Darfur.  These allegations are serious and are indicative of the lack of importance the Government of China and the Government of Sudan give to resolving the conflict in Darfur.  I ask that you engage both governments directly on this issue to determine the accuracy of the reports, and if appropriate, take immediate action to remedy the situation in any way possible.  In addition, I ask that you support the recent work of the International Criminal Court.I have been told that Chinese fighter jets have been spotted flying on missions out of Nyala airport and operating in South Darfur, which is a clear violation of paragraph 7 of United Nations Security Council Resolution 1556 (2004) and reaffirmed in United Nations Security Council Resolution 1591 (2005).  I have also been told that there is new evidence that Chinese made anti-aircraft guns have recently been used in Darfur.The International Criminal Court (ICC) appears to be the most practical mechanism that the United Nations can utilize at this time to call for accountability from the Government of Sudan in Darfur.  On July 14, 2008, ICC Prosecutor Luis Moreno-Ocampo asked the court for an arrest warrant for Sudanese President Omar Hassan al-Bashir, accusing him of running a campaign of genocide that has killed 35,000 people and forced 2.5 million to flee their homes in Sudan's Darfur region.  I welcome this long overdue push for accountability for those who have perpetrated the genocide in Darfur.I am confident that there will be calls from some permanent members of the United Nations Security Council to suspend the investigation on the basis that it would compromise the ongoing Darfur Peace Process.  However, such a call would be a disingenuous gesture, since there is no real peace process currently in place in Darfur.  If any compromise measures were to be considered, the United States would need to see credible evidence that the Government of Sudan is complying with the United Nations arms embargo and that the Government of China is using all its leverage to work with the Khartoum government to end violence in Darfur and participate in a meaningful way to advance peace throughout the region.China has long-standing economic and military ties with Sudan.  China purchases at least 70 percent of Sudan's oil, and it currently has at least $3 billion invested in the Sudanese energy sector.  Such strong economic investment has allowed Sudan to double its defense budget.  China is also providing funds for a new $20 million presidential palace at a time when genocide is ravaging northwestern Sudan.  All of this investment is in the context of China's inaction to meaningfully address Sudan's Security Council violations.  This negligence undercuts any Chinese resistance to the efforts of the ICC.  If the Government of China is truly concerned about peace in Darfur, it would be using every bit of leverage available to hold the Khartoum government accountable on the arms embargo.I thank you for your consideration on this critically important issue and I look forward to your prompt response.Sincerely,Robert MenendezUnited States Senator                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dd3a840a-c565-4275-8f7f-e0071af5983b,\"Menendez, Lautenberg Call On FAA To Tackle Low-Fuel Flights  Issue\n                    \n                            As pilots allege US Airways forcing them to carry less fuel to save money, NJ Sens. renew call for action\n                    \n                      July 17, 2008\n                     WASHINGTON - As more allegations surface of airlines pressuring pilots to carry less fuel in order to save money, New Jersey's U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) are calling on the Federal Aviation Administration to investigate and ensure that such a practice is ended. Yesterday, the Airline Pilots Association took out an advertisement in The USA Today charging U.S. Airways with threatening pilots with their jobs should they not comply with demands to carry less fuel.\nSenators Menendez and Lautenberg have pressed the FAA on low-fuel issues since last year, when television station WABC reported an alarming spike in flights landing at Newark Liberty International Airport with low or emergency fuel levels on board. In response to a request by Senator Lautenberg, the Department of Transportation's Inspector General reported in April 2008 that incidences of low-fuel landings had in fact increased, that the FAA was beginning to implement recording standards which previously did not exist and that there may be a push by airlines for pilots to carry less fuel in order to save money (http://menendez.senate.gov/newsroom/record.cfm?id=296304&). Yesterday's charges against U.S. Airways seem to corroborate the latter finding.\nPDF of letter to the FAA: http://menendez.senate.gov/pdf/071708LettertoFAA.pdf\nText of letter to the FAA:July 17, 2008\nThe Honorable Robert A. SturgellActing AdministratorFederal Aviation Administration8000 Independence Ave., SWWashington, DC 20591\nDear Acting Administrator Sturgell:\nRecently more pilots have alleged that they are being intimidated by their employers into flying with inadequate fuel supplies in order to save their airline companies money. As a former pilot, you should know that this is a frightening claim--airlines should never endanger public safety in order to improve their bottom line.\nThe employee organization which represents over 5,000 US Airways pilots claims that their members have been threatened with termination if they do not reduce fuel levels.  Senior pilots in particular have been singled out for \"\"fuel conservation training.\"\"  Last year, another airline issued an internal bulletin warning pilots that \"\"adding fuel indiscriminately … reduces profit sharing and possibly pension funding.\"\"\nSkyrocketing fuel prices are putting our airlines in a very difficult financial situation, but the Federal Aviation Administration (FAA) must make sure that passenger safety remains paramount, even in the face of financial distress by the airline companies.  This is an issue we raised with you previously, and we are concerned that the steps the FAA took in response to our letters last year are insufficient.\nIn response to a letter from Senator Menendez, you indicated on January 30, 2008, that the FAA had identified the problems and misunderstandings which led to a surge in the number of reported \"\"low fuel landings\"\" in 2007.  In April, in response to a request from Senator Lautenberg, the U.S. Department of Transportation's Inspector General issued a report on low fuel landings.  The report expressed concern that airline bulletins \"\"might put pressure on pilots … to carry insufficient amounts of fuel\"\" and described the steps the FAA was taking to improve communications procedures and data collection. But the report concluded that it was \"\"too soon to determine the effectiveness of the FAA's actions.\"\"  Mr. Sturgell, you also assured us in person that the FAA took the low fuel landing problem seriously and that the FAA was effectively addressing this problem.\nThe claims of the US Airways pilots raise serious questions about the effectiveness of your approach.\nWe urge you to take immediate steps to make it clear to all airlines that the pilot has the final authority over how much fuel is on his or her plane, and to end any coercive practices by airline companies.  We are also requesting a follow up report on what you have learned about low fuel landings at Newark Liberty International Airport since you implemented improved reporting requirements.\nFAA oversight is particularly important during a time of surging fuel prices, and we sincerely hope you will thoroughly investigate the claims made by the US Airline Pilots Association.\nSincerely Yours,\nROBERT MENENDEZ                                                                   FRANK R. LAUTENBERGUnited States Senator                                                               United States Senator\n\n\n\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=741207f4-654b-47ef-bd76-ea632ba3961a,\"SENATE PROPONENT OF OIL COMPANY USE-IT-OR-LOSE-IT LEGISLATION REACTS TO HOUSE VOTE ON DRILL ACT\n                    \n                            Sen. Menendez has joined Sens. Feingold and Dodd on legislation to push oil companies to use 68 million acres already leased to them\n                    \n                      July 17, 2008\n                     WASHINGTON - Today, the U.S. House of Representatives voted 244-173 in favor of use-it-or-lose-it legislation that would push oil companies to drill on 68 million unused acres they have already leased, however the legislation did not pass because it required a two-thirds majority to pass under the House rules.U.S. Senator Robert Menendez (D-NJ) is a lead sponsor of Senate legislation, introduced by Senator Russ Feingold (D-WI), that would also require oil companies to use the 68 million acres or lose it. He is also the sponsor of the COAST Act to permanently ban coastline drilling. Today, he responded to the House vote:\"\"Those who are in a rush to open up our coastlines for drilling but won't push the oil companies to actually use the 68 million acres already at their disposal are showing their true colors. To them, this is not about standing up for American families hit hard by high gas prices, and it's not about securing our energy future. It's about using the pain at the pump to pull a fast one on the American people and give the oil companies another sweetheart deal. American families deserve a government that works for them, not oil companies making record profits.\"\"Senator Menendez's plan for lowering gas prices, long-term transportation costs:• Lower gas prices now - Unchecked speculation on the oil trading markets has driven oil prices higher; Senate Democrats have strong proposals to clamp down on oil speculation: http://menendez.senate.gov/newsroom/record.cfm?id=299186&• Hold oil companies accountable -Senator Menendez is a lead sponsor of legislation that will spur domestic oil production by compelling big oil companies to begin utilizing the 68 million acres that they lease but thus far have not used to produce energy: http://menendez.senate.gov/newsroom/record.cfm?id=300453• Break our dependence on oil - Sen. Menendez has been a strong advocate for renewable energy and advanced alternative fuels. Recently, he helped push an amendment through the Senate that would extend renewable energy tax credits to help fight global warming and wean us off of fossil fuel:  http://menendez.senate.gov/newsroom/record.cfm?id=295986# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3a9e4acb-9a7d-4e99-a9c4-49baf1e198b4,\"SEN. MENENDEZ CALLS CLAIMS OF PILOTS FORCED TO FLY WITH LESS FUEL A CAUSE FOR ALARM\n                    \n                            New Jersey Senator has previously pressed FAA to explain reported increase in low-fuel landings at Newark Airport\n                    \n                      July 16, 2008\n                     WASHINGTON - Today, the Airline Pilots Association ran a full page ad in The USA Today claiming that they have been pressured by U.S. Airways to carry less fuel on flights in order to save money, or otherwise face serious employment repercussions.Last year, WABC-TV reported on an unsettling spike in low-fuel landings at Newark Liberty International Airport. U.S. Senator Robert Menendez (D-NJ) pressed the Federal Aviation Administration for an explanation of those reports, and today he reacted to these new charges by calling for the FAA to immediately investigate.\"\"If these claims are valid, they would be as alarming as they are unbelievable. Federal aviation guidelines dictate that pilots have the final say over the amount of fuel that goes into their aircraft, and anything an airline does to undercut that violates the guidelines and threatens passenger safety.\"\"High gas prices are a real struggle for many Americans and American companies, but they should never be a reason to compromise passenger safety. Before anything else, airline passengers need fly with confidence that their airline is not cutting corners that would affect their safety. Forcing pilots to fly with less fuel would, in fact, jeopardize that safety.\"\"If this is going on at the airlines, it has to end now, and I expect the FAA to immediately look into these charges. The FAA had previously indicated to me that it was not overly concerned about the low fuel landings or the circumstances surrounding them, but these claims are certainly cause for concern. I will be communicating with the FAA directly and officially this week to ensure that this issue isn't swept under the rug.\"\"            In November, Senator Menendez demanded answers on the Newark low-fuel landings from the FAA (http://menendez.senate.gov/newsroom/record.cfm?id=286969&), which apparently did not have a system in place to catalog those types of landings. The Department of Transportation's Inspector General reported back to New Jersey's U.S. Senators that there was, in fact, an increase in these types of landings and that the FAA was finally developing a system by which to catalog them (http://menendez.senate.gov/newsroom/record.cfm?id=296304&).                                                     # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5c392a0c-1416-4df1-9f72-2d7e0e72a134,\"MAKING CHILDREN A FEDERAL BUDGET PRIORITY: MENENDEZ INTRODUCES BILL TO REQUIRE EVERY PRESIDENTIAL BUDGET TO DETAIL INVESTMENTS IN CHILDREN'S PROGRAMS\n                    \n                            Sen. Menendez bill would instruct the President to submit a Children's Budget to Congress\n                    \n                      July 16, 2008\n                     Washington, D.C. - Today, Sen. Menendez introduced legislation that would require each President, when he or she submits an annual budget proposal, to specifically lay out how it allocates funds for children's programs.  The \"\"Children's Budget\"\" would gather all the diverse sources of federal funding for children's program into one document to communicate a comprehensive and clear picture.  \"\"Among the investments we make in our nation through the federal budget, our children should always be a main focus,\"\" said Menendez. \"\"We need to prioritize our children, but too often that has not been the case.  If we get a complete and clear picture of how we spend on our children's programs today, then we can work to ensure we are not shortchanging these vulnerable members of our society tomorrow.\"\"  \"\"We commend Senator Menendez for introducing this important legislation,\"\" said Bruce Lesley, President of First Focus. \"\"Despite increases in federal spending over the past five years, the share for children has dropped dramatically. The Children's Budget Act is a simple, inexpensive action that will bring awareness to the federal investment in children, as well as hold our nation's leaders accountable for ensuring that children remain a national priority.\"\" Earlier this year, First Focus released Children's Budget 2008, a comprehensive analysis of federal spending on children over the past five years, and a publication with an intent similar to that of the Children's Budget Act. After accounting for federal spending on kids, the report found that only one penny of every new, non-defense dollar spent by the federal government has gone to children and children's programs. The report also shows that since the 1960s, the share of spending on Children's programs has declined by 23 percent.   This bill is cosponsored by Senators Clinton, Lautenberg, Sanders, Johnson, Bingaman and Casey. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bc4f6ad7-5c6c-48fb-9287-0745fa50a516,\"BIDEN/LUGAR/MENENDEZ/HAGEL Bill Tackles International Climate Change by Funding Clean Technology\n                    \n                      July 16, 2008\n                     Washington, DC - Chairman of the Senate Foreign Relations Committee Joseph R. Biden, Jr. (D-DE) today introduced legislation designed to create an International Clean Technology Deployment Fund. The Fund would be available to aid developing countries' efforts to tackle climate change and would promote the international deployment of U.S. clean energy technology as an additional component to the United States' overall international economic development assistance strategy. Senate Foreign Relations Committee Ranking Member Richard G. Lugar (R-IN) and members of the Committee, Robert Menendez (D-NJ) and Chuck Hagel (R-NE), joined Sen. Biden in introducing the bill. \"\"The developing world's demand for energy and cheap fossil fuels will continue to rise,\"\" said Sen. Biden.  \"\"Our choice is simple - we can ignore the energy needs of developing countries as they grow, or we can join together to help them put in place an infrastructure that promotes cleaner energy and a cleaner economy.\"\"\"\"While Congress debates the best way to fund advanced low-carbon technologies in the United States, an international clean technology deployment fund is also necessary to bridge the gap on global climate change negotiations as I said in a Washington Post op-ed with Treasury Secretary Henry Paulson on Monday,\"\" said Sen. Lugar. \"\"Global warming is a glaring economic security and national security threat that knows no borders. If we are to address it, we need to greatly speed the development and deployment of cleaner, more efficient technologies. This will help nations develop on a greener path and also help American companies gain access to new markets for their technologies.  The United States should take a backseat to no one in supporting the technology that will heal the planet and create economic opportunity, and that is the message of this legislation,\"\" said Sen. Menendez, Chairman of the Senate Foreign Relations Subcommittee on International Development and Foreign Assistance, Economic Affairs and International Environmental Protection.\"\"Climate policy affects the world's economic, energy, environmental and security policies. Dealing with climate policy requires global leadership and global coordination. This legislation will help unleash the power of the free markets - not new government-imposed costs and regulations - to accelerate development and use of advanced technologies that reduce, eliminate, and sequester greenhouse gas emissions in all countries,\"\" said Sen. Hagel, Ranking Member of the Subcommittee on International Development and Foreign Assistance, Economic Affairs and International Environmental Protection.According to the International Energy Agency, energy demand worldwide will increase by 55 percent by 2030.  Nearly 80 percent of this increase will stem from developing countries. The United Nations Framework Convention on Climate Change calls for programs by which industrialized nations support developing nations' efforts to reduce their greenhouse gas emissions. Earlier this year, President Bush's budget called for funding to support the United States' participation in a Clean Technology Fund, to be housed at the World Bank. This legislation will help make proposals like the Clean Technology Fund possible by addressing the growing threat of climate change and steering developing countries onto a path of cleaner energy and cleaner development. The legislation establishes an International Clean Technology Deployment Fund that will:• Add the consideration of climate change more consistently and systematically to our foreign assistance strategy. The legislation's goal is to promote and leverage private financing for the development and international deployment of technologies to contribute to sustainable economic growth and the stabilization of greenhouse gas concentrations in the atmosphere at a level that would prevent dangerous anthropogenic interference with the climate system.• Encourage the export of U.S. clean energy technology and expertise to developing nations. The Fund will be administered by a board composed of Executive Branch officials, and will be authorized to distribute money through multilateral trust funds or through existing U.S. programs such as USAID, export promotion, and technical assistance programs. • Support only eligible developing countries that take on their own climate change commitments, either through an international agreement to which the United States is a party, or by taking on what the Board certifies are sufficient binding national policies and measures.  Additionally, every distribution of funding will require prior Congressional notification.As a result, the establishment of an International Clean Technology Deployment Fund would increase the market for clean technology and encourage U.S. companies to make a long-term investment in research, development and job creation in those industries. \"\"It is in our national interest to reduce the environmental, economic, and national security threats of a changed global climate,\"\" added Sen. Biden.  \"\"This could be a real win-win for the planet and our economy.\"\"                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b5a72f02-fe61-4a57-acc0-cba6686641ab,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN$3.3 MILLION FOR MORRISTOWN RAIL & BUS STATION\n                    \n                            Grant to Fund Second Phase of Station's Historic Rehabilitation Project\n                    \n                      July 16, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Transportation (USDOT) has awarded more than $3.3 million in federal funds for the rehabilitation of the Morristown Rail and Bus Station.             \"\"With record number of passengers traveling by train and using stations like Morristown every day, we must continue to upgrade our stations so travelers get to destinations safely, comfortably and on time,\"\" Sen. Lautenberg said.  \"\"These funds go a long way in the effort to modernize our public transportation systems, giving commuters options and helping get cars off the road.\"\"             \"\"Improving New Jersey's public transportation system is critical, especially as people become increasingly reliant on bus and train stations like Morristown with gas prices sky high,\"\" said Sen. Menendez.  \"\"This investment will go a long way towards ensuring that passengers have a safe and timely commute and cutting down the number of cars on the road.\"\"             This grant, administered by the USDOT's Federal Transit Administration, aids the Morristown Station Historic Rehabilitation Project.  The $3,360,997 in funding will be used for second phase of the project which includes the rehabilitation of the exterior and interior of the Main Station Building and the exterior of the Shelter House.  It will also fund the rehabilitation of the platforms, canopies and stairways at the station.             Preliminary design plans for this phase of the rehabilitation project began in November 2007.  The design stage of the project is currently at about 30 percent complete, and construction is scheduled to be completed in October 2010.  The first phase of the project, which included rehabilitation of the roof and roof drainage systems as well as lighting improvements, was completed in May 2007. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=605a985d-3eb6-4915-8f4c-3b9f3609f280,\"BUSH IGNORES OPTIONS TO HELP LOWER GAS PRICES IN THE SHORT TERM, SAYS SEN. MENENDEZ\n                    \n                            In press conference today, Bush dismisses short-term measures, harps on coastline drilling plan that will never lower gas prices\n                    \n                      July 15, 2008\n                     WASHINGTON - In a press conference today, President Bush dismissed measures to help lower gas prices in the short term, including a crackdown on unchecked oil speculation and diverting oil from the Strategic Petroleum Reserve to the marketplace. Instead, the president continued to tout a plan to drill up and down the U.S. coastlines, which wouldn't produce a drop of oil until 2017 and would never produce enough oil to make a difference for gas prices.             U.S. Senator Robert Menendez (D-NJ), a leading defender of the coastline and author of the COAST Act to permanently ban drilling in the Outer Continental Shelf, responded to President Bush's remarks.             \"\"Americans are looking for something - anything - from Washington to give them some short-term relief from gas prices that are squeezing their family budgets. President Bush says ‘no, no, no' to short-term options that could help lower gas prices. It has become crystal clear that he is not willing to do what it takes to bring relief to families feeling pain at the pump right now. He would have American families wait until the year 2017 for the first drop of oil as part of a plan that will never lower gas prices. \"\"There are some good options on the table to help lower gas prices soon, including cracking down on unchecked speculation in the oil markets and diverting oil from the Strategic Petroleum Reserve into the marketplace. To ignore these options altogether is a disservice to Americans who are increasingly being put in the tough position of choosing between buying a gallon of gas or a gallon of milk.            \"\"The motives of the Bush-McCain coastline drilling plan become more transparent by the day. They think they can pull a fast one on Americans hurt by high gas prices, give a handout to their buddies in the oil companies and divert attention from the crisis in the financial markets all at once. There's no substance to their plan, and it provides no hope of gas price relief.\"\"Senator Menendez's plan for lowering gas prices, long-term transportation costs:Lower gas prices now - Unchecked speculation on the oil trading markets has driven oil prices higher; Senate Democrats have strong proposals to clamp down on oil speculation: http://menendez.senate.gov/newsroom/record.cfm?id=299186&Hold oil companies accountable -Senator Menendez is a lead sponsor of legislation that will spur domestic oil production by compelling big oil companies to begin utilizing the 68 million acres that they lease but thus far have not used to produce energy: http://menendez.senate.gov/newsroom/record.cfm?id=300453Break our dependence on oil - Sen. Menendez has been a strong advocate for renewable energy and advanced alternative fuels. Recently, he helped push an amendment through the Senate that would extend renewable energy tax credits to help fight global warming and wean us off of fossil fuel:  http://menendez.senate.gov/newsroom/record.cfm?id=295986  Facts on Bush/McCain coastline drilling plan, effect on gas pricesRepublicans claim the Bush/McCain coastline oil drilling plan will reduce gas prices.  It will not: 811,000 barrels per day is how much Americans have reduced its consumption of oil because of high gas prices -- despite this, gas prices are still at record levels.[1]500,000 barrels per day is how much Saudi Arabia has upped production in recent weeks - despite this, gas prices are still at record levels.[2]200,000 barrels per day, according to President Bush's Energy Information Agency, is how much oil the Republican plan to drill along the West, East, and Gulf Coasts will result in once full production is reached in 2030.[3]If a more than 800,000 barrel per day reduction in demand coupled with a 500,000 barrel per day production increase does not reduce gas prices today, then how would adding 200,000 barrels per day to the market in 2030 reduce gas prices now or ever?  Even that is a \"\"best-case\"\" scenario for the Bush/McCain coastline drilling plan. In reality, it will likely not result even in 200,000 barrels per day in production.  More likely, it would result in production of less than 50,000 barrels per day:The plan requires consent by the Governor of the state in whose waters drilling will commence. It is doubtful that California, Oregon, or Washington will ever allow approval new drilling along the West Coast.  The Bush/McCain drilling plan will not open up the Eastern Gulf of Mexico to drilling (even though this area has considerable oil resources and is the only offshore location with the infrastructure in place to begin oil production within a decade).The remaining 20% of OCS oil on the Atlantic Coast amounts to less than 50,000 barrels per day in 2030 - this is less oil than the United States consumes in 4 minutes or the world consumes in one minute - a truly miniscule amount.  ### [1] April 2008:   http://tonto.eia.doe.gov/dnav/pet/hist/mttupus2m.htm2 New York Times, (6/14/2008),  http://www.nytimes.com/2008/06/14/business/14oil.html?_r=1&8br&oref=slogin3 http://www.eia.doe.gov/oiaf/aeo/otheranalysis/ongr.html\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b27083bb-e702-4d75-a229-fb329ae02a0c,\"Menendez Debunks Myths of Coastline Drilling During Speech on the Senate Floor\n                    \n                            Sen. Menendez says coastline drilling will never lower gas prices, American families need relief now\n                    \n                      July 15, 2008\n                     WASHINGTON - This afternoon, U.S. Senator Robert Menendez (D-NJ) took to the floor of the Senate to deliver a speech debunking the myths of off-shore drilling and to discuss an alternative plan that would help lower gas prices and achieve long-term energy security. Menendez is a leading defender of the coastline and author of the COAST Act to permanently ban drilling in the Outer Continental Shelf. He is also a lead co-sponsor of the \"\"use it or lose it\"\" legislation, the Responsible Federal Oil and Gas Lease Act, which would spur oil companies to utilize the 68 million acres of federal land they currently lease but have not developed to produce oil.\nExcerpts from Senator Menendez's speech:\n\"\"People are demanding honest solutions to our oil crisis. But President Bush, John McCain and their allies on the other side of the aisle have only decided to perpetuate myths.\"\"…\nMyth #1: Coastline drilling will lower gas prices\n\"\"Drilling in the Outer Continental Shelf will do nothing to bring down gas prices. Not now, not ever. The amount of gas we could get from offshore drilling is equivalent to a few tablespoons per car per day.  In fact, while President Bush is suggesting that drilling will bring down prices at the pump, his own Energy Information Administration admits that drilling will have no effect.\"\" …\nMyth #2: Oil companies need more federal land and water to produce more oil\n\"\"Oil companies control an area more than twelve times the size of New Jersey. So why are they asking us to hand over more land, when they already have so much unused? It seems to me there's only one explanation: oil companies aren't actually in a rush to drill in those areas—but they are in a rush to control as much federal land as possible before their friends in the White House leave.\"\"…\nMyth #3: Hurricanes Katrina and Rita caused no oil spills related to offshore drilling\n\"\"In 2005, Hurricanes Katrina and Rita caused devastation on a massive scale. The Environmental Protection Agency, the US Minerals Management Service, the National Oceanic and Atmospheric Administration and the Coast Guard all agree that the storms caused 700,000 gallons of oil to spill into the Gulf of Mexico and over 7 million gallons of oil to leak onshore from the infrastructure that supports offshore drilling....\n\"\"An oil spill off the coast of Virginia could wash up as far away as Maine. It could devastate the coastline from South Carolina to New York. New Jersey families and businesses can't afford the risk of a disaster on the scale of the Exxon Valdez crash or the spills after Hurricanes Katrina and Rita, with sticky crude washing up on our beaches, killing our wildlife, collapsing property values and destroying our economy in the process.  …\n\"\"We can't wait the decade George Bush and John McCain want us to wait to get oil from offshore drilling—we need to lower gas prices now. We need to see to it that our commodities markets are functioning fairly, so prices can come down from their artificial highs.  We need to hold oil companies accountable.  It's time we make sure they're using the 68 million acres they're leasing to bring down the price of oil, not just using it to pad their books and inflate the price of their stock. …\n\"\"And the only way for us to protect ourselves from rising gas prices is to end our dependence on oil, and that means making immediate, substantial investments in renewable fuels and conservation.…\n\"\"It's time we decided on a plan that looks out not just for the future of the oil companies, but for our future as a nation.\"\"\nTo view a video of the speech, visit the Senator's official website here: http://menendez.senate.gov/\nFull text of Senator Menendez's remarks, as prepared for delivery:\nM. President,\nWe're all well aware of the seriousness of the oil crisis that we're in. Gas prices are more than three times what they were when President Bush took office. High prices are forcing some businesses to cut back or close, and forcing some families to choose between putting a gallon of gas in their tank and putting a gallon of milk on their kitchen table.\nPeople are demanding honest solutions to our oil crisis. But President Bush, John McCain and their allies on the other side of the aisle have only decided to perpetuate myths.\nThey've told us that offshore drilling will lower gas prices tomorrow. They've told us that oil companies could produce more if we hand over even more federal land and water to them. When people spoke up about the dangers of drilling, they claimed that no oil was spilled after Hurricane Katrina, and that drilling off the shore of one state won't affect all the other states around it.\nM. President, we have to clear up these myths before it's too late.\nMYTH #1: Drilling Immediately Brings Down Prices\nThe biggest myth, a myth that has been repeated over and over on the floor of this chamber, is that opening up our shores to drilling will somehow lower the price of gasoline.  Let's get one thing straight: drilling in the Outer Continental Shelf will do nothing to bring down gas prices. Not now, not ever.\nWhile President Bush is suggesting that drilling will bring down prices at the pump, his own Energy Information Administration admits that drilling will have no effect.\nThe reason is, the amount of oil involved is just a drop in the bucket compared to what we use every day.\nLet me put offshore production in perspective.\nSince April of this year Americans have responded to extraordinarily high gas prices by using over 800,000 barrels of oil per day less than we did one year ago.  This is the most significant and sudden drop in oil demand since the 1970's. And what have we seen since April? We've continued to see record gas prices.\nIn recent weeks, in response to record oil prices, Saudi Arabia has increased its production of oil by 500,000 barrels per day.  And what was the effect on gas prices? They continue to go up. So how does the Bush/McCain drilling plan compare to these recent events?  If we open all our shores to oil production, the first drop of oil would not be seen for almost a decade. Offshore oil production would peak in 2030 at only 200,000 barrels per day. To put that number another way, the amount of gas we could get from offshore drilling is equivalent to a few tablespoons per car per day. \nIf 800,000 barrels per day in reduced demand combined with an increase of 500,000 barrels per day of Saudi production—a total of 1.3 million barrels a day—doesn't lower gas prices, how does the production of 200,000 barrels per day in 2030 lower gas prices? It is simply a myth that opening up offshore drilling will lower gas prices. \nMYTH #2: 68 Million Acres\nThe second myth we hear is that if oil companies could only lease more federal land and water, they would produce more oil. The fact of the matter is, the oil industry has already leased 68 million acres of land where they haven't produced a single drop of oil. The oil companies clearly think there's oil there, or else why would they be leasing the land? But they aren't using it. \nJust to get an idea of the scale involved, here's a map showing how much territory the oil companies control in the Gulf of Mexico. The red represents unused acres. It's a huge portion of the Gulf region, going completely undeveloped.\nAnd here's an even more impressive map—the map of how much of the western United States oil companies control. The black portions show where companies are exploring, and again, the red is where they aren't exploring. I was staggered when I saw this. The oil companies control an enormous, enormous amount of land. When you add it all up, it's an area more than twelve times the size of my home state of New Jersey.\nSo why are oil companies asking us to hand over more land, when they already have so much unused? It seems to me there's only one explanation: oil companies aren't actually in a rush to drill in those areas—but they are in a rush to control as much federal land as possible before their friends in the White House leave.\nMYTH #3: KATRINA\nIn order to convince us to let that plan go through, Big Oil and their supporters want us to believe a third myth: that offshore drilling presents no threat to our environment and to the economies of those communities like those in my home state of New Jersey.\nMany of my colleagues from the Republican side of the aisle, including Sen. McConnell and Sen. McCain, have repeatedly denied that oil spills could happen, and have denied repeatedly that Hurricanes Katrina and Rita caused any oil to spill.\nThe picture I have here was taken by the Coast Guard. It shows what really happened after the hurricanes: a massive oil spill, that here was set on fire to assist in the cleanup effort.\nI don't know what my colleagues on the other side of the aisle would consider \"\"significant spillage,\"\" but I know if I saw this scene on the New Jersey Shore, I'd consider it a disaster.\nIn 2005, Hurricanes Katrina and Rita caused devastation on a massive scale. The Environmental Protection Agency, the US Minerals Management Service, the National Oceanic and Atmospheric Administration and the Coast Guard all agree that the storms caused 700,000 gallons of oil to spill into the Gulf of Mexico[i] and over 7 million gallons of oil to leak onshore from the infrastructure that supports offshore drilling.[ii] \nWhen oil spills in those quantities, it isn't isolated to a small area. The devastation spreads far and wide. When the Exxon Valdez ran aground in Alaska, the spill was 600 miles wide. The IXTOC I spill in the Gulf of Mexico travelled 600 miles. That's why the decision to drill can't be left up to a single state, because that state's actions affect all the other states around it.\nAn oil spill off the coast of Virginia could wash up as far away as Maine. It could devastate the coastline from South Carolina to New York.\nIn my home state of New Jersey, the shore generates tens of billions of dollars in revenues each year and supports almost half a million jobs.\nNew Jersey families and businesses can't afford the risk of a disaster on the scale of the Exxon Valdez crash or the spills after Hurricanes Katrina and Rita, with sticky crude washing up on our beaches, killing our wildlife, collapsing property values and destroying our economy in the process. \nLet's be honest: if there's drilling off our shore, it isn't a guarantee that there would be a major spill. But disasters have happened before, and they'll happen again. The question is, is the risk of a significant disaster worth the insignificant amount of oil that might come with drilling? The answer is clearly, no. \nPLANIf we're going to bring down gas prices, we need a better plan.\nFirst, we can't wait the amount of time George Bush and John McCain want us to wait to get oil from offshore drilling—we need to lower gas prices now. The supply and demand equation for oil is basically the same as it was a year ago, but the price has skyrocketed.\nUnchecked speculation on the oil trading markets has driven oil prices higher. We need to see to it that our commodities markets are functioning fairly, so prices can come down from their artificial highs.  Second, we need to hold oil companies accountable.\nIt's time we make sure they're using the 68 million acres they're leasing to bring down the price of oil, not just using it to pad their books and inflate the price of their stock. Together with Sen. Feingold and Sen. Dodd, I've introduced legislation that sends a simple message to oil companies about federal land they lease: use it or lose it. \nThe bill mandates that oil companies either produce on or seek to develop their existing federal leases, or make way for someone who will.\nAnd most importantly, we need to break our dependence on oil.  Here's the big picture: we can only ever produce a fraction of the oil we use.\nThe only way for us to protect ourselves from rising gas prices is to end our dependence on oil, and that means making immediate, substantial investments in renewable fuels and conservation.We should all get behind legislation to expand tax credits for renewable energy producers. In order to boost vehicle efficiency, we should create stronger incentives for plug-in hybrids, support advanced battery research and research into cellulosic fuels. And it's time we fully funded mass transit at the level it deserves.\nWe can do all of this in the time that President Bush would have us wait for minimal oil production along our coastlines.\nM. President, Let's be clear: this coastline drilling plan is not a serious proposal to help American families. It's exploitation of pain at the pump to give yet another handout to oil companies.\nAnd it's long past time to stop repeating the myths that lie at the bottom of it.\nInstead of buying into this overhyped, oversold plan, if we work together, we have the ability and ingenuity to secure our energy future once and for all.\nIt's time we decided on a plan that looks out not just for the future of the oil companies, but for our future as a nation. And with that, M. President, I yield the floor.\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6f1e21c6-d896-40f4-9bd3-736355d5fbae,\"BUSH LIFTS COASTLINE DRILLING MORATORIUM, LEADING SENATE OCS DRILLING OPPONENT REACTS\n                    \n                            Sen. Menendez says coastline drilling will never lower gas prices, American families need relief now\n                    \n                      July 14, 2008\n                     WASHINGTON - Today, President Bush announced that he is lifting an executive ban on drilling up and down the east and west coasts of the U.S. originally implemented by President George H. W. Bush.U.S. Senator Robert Menendez (D-NJ), a leading opponent of drilling in the Outer Continental Shelf and author of the COAST Act to permanently ban drilling there, released the following statement:\"\"As American families struggle with gas prices in 2008, President Bush is pushing a plan that won't produce a drop of oil until 2017 and won't lower gas prices ever. The administration's own Energy Information Agency has shown that coastline drilling would not lower oil prices. American families are getting squeezed by gas prices today and deserve a plan that brings them relief now, not years from now. There are serious, concrete steps we can and should take instead to bring relief at the pump. \"\"To bring down artificially high gas prices in the near term, we must crack down on speculation in the oil markets. To increase domestic oil production, we must hold the oil companies accountable by pushing them to utilize the 68 million acres of unused land already leased to them by American taxpayers. To cut our dependence on oil in the long run and make sure we never again have to endure a gas price crisis, we must transition from a transportation system based on oil to one based on renewable energy and advanced alternative fuels. And we can do it in the time George Bush and John McCain would have us wait for minimal oil production along our coastlines. \"\"Let's be clear, this coastline drilling plan is not a serious proposal to help American families. This is exploitation of pain at the pump to give yet another handout to oil companies. Instead of buying into this overhyped, oversold plan, we as a nation have the ability and ingenuity to take a smarter course of action.\"\" Senator Menendez's plan for lowering gas prices, long-term transportation costs:Lower gas prices now - Unchecked speculation on the oil trading markets has driven oil prices higher; Senate Democrats have strong proposals to clamp down on oil speculation: http://menendez.senate.gov/newsroom/record.cfm?id=299186&Hold oil companies accountable -Senator Menendez is a lead sponsor of legislation that will spur domestic oil production by compelling big oil companies to begin utilizing the 68 million acres that they lease but thus far have not used to produce energy: http://menendez.senate.gov/newsroom/record.cfm?id=300453Break our dependence on oil - Sen. Menendez has been a strong advocate for renewable energy and advanced alternative fuels. Recently, he helped push an amendment through the Senate that would extend renewable energy tax credits to help fight global warming and wean us off of fossil fuel:  http://menendez.senate.gov/newsroom/record.cfm?id=295986  Facts on Bush/McCain coastline drilling plan, effect on gas pricesRepublicans claim the Bush/McCain coastline oil drilling plan will reduce gas prices.  It will not: 811,000 barrels per day is how much Americans have reduced its consumption of oil because of high gas prices -- despite this, gas prices are still at record levels.[1]500,000 barrels per day is how much Saudi Arabia has upped production in recent weeks - despite this, gas prices are still at record levels.[2]200,000 barrels per day, according to President Bush's Energy Information Agency, is how much oil the Republican plan to drill along the West, East, and Gulf Coasts will result in once full production is reached in 2030.[3]If a more than 800,000 barrel per day reduction in demand coupled with a 500,000 barrel per day production increase does not reduce gas prices today, then how would adding 200,000 barrels per day to the market in 2030 reduce gas prices now or ever?  Even that is a \"\"best-case\"\" scenario for the Bush/McCain coastline drilling plan. In reality, it will likely not result even in 200,000 barrels per day in production.  More likely, it would result in production of less than 50,000 barrels per day:The plan requires consent by the Governor of the state in whose waters drilling will commence. It is doubtful that California, Oregon, or Washington will ever allow approval new drilling along the West Coast.  The Bush/McCain drilling plan will not open up the Eastern Gulf of Mexico to drilling (even though this area has considerable oil resources and is the only offshore location with the infrastructure in place to begin oil production within a decade).The remaining 20% of OCS oil on the Atlantic Coast amounts to less than 50,000 barrels per day in 2030 - this is less oil than the United States consumes in 4 minutes or the world consumes in one minute - a truly miniscule amount.  ### [1] April 2008:   http://tonto.eia.doe.gov/dnav/pet/hist/mttupus2m.htm2 New York Times, (6/14/2008),  http://www.nytimes.com/2008/06/14/business/14oil.html?_r=1&8br&oref=slogin3 http://www.eia.doe.gov/oiaf/aeo/otheranalysis/ongr.html\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=35f413b8-5c35-420e-92a3-8c76c43ef0e1,\"SENS. MENENDEZ AND LAUTENBERG CALL FOR REHIRING OF DISMISSED 9/11 HEALTH CZAR\n                    \n                            Dr. John Howard, respected health professional, oversaw development and expansion of federal 9/11 health programs\n                    \n                      July 11, 2008\n                     WASHINGTON - Last week, the Bush administration chose to end the tenure of Dr. John Howard as federal 9/11 health czar. Dr. Howard, director of the National Institute for Occupational Safety and Health since 2002, is widely-respected and was credited with overseeing the expansion of a once non-existent commitment of federal resources to the examination and treatment of those made sick by the toxins at Ground Zero.Today, U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) have written Health and Human Services Secretary Michael Leavitt demanding that Dr. Howard be reinstated.Senator Menendez is the sponsor, and Senator Lautenberg a co-sponsor, of the James Zadroga Act (S. 1119), named after the New Jersey resident and former New York City police officer whose death was the first to be medically linked to health effects from 9/11.  The bill would re-open the 9/11 Victims Compensation Fund for medical screening and treatment of those made sick around Ground Zero.PDF of letter to HHS: http://menendez.senate.gov/pdf/071008-LettertoSecretaryLeavittRMandFRL.pdfText of letter to HHS:July 10, 2008Secretary Michael LeavittSecretary of Health and Human ServicesU.S. Department of Health and Human Services200 Independence Avenue, S.W.Washington, D.C.Dear Secretary Leavitt,We are greatly disappointed to learn that you are relieving Dr. John Howard of his important responsibilities advocating for the sick and injured World Trade Center (WTC) workers. Throughout this process, the response, information-sharing and resources from your administration to Director Howard have been inadequate.  He was challenged with the difficult, but crucial, task of overseeing the World Trade Center Medical Monitoring and Treatment program, which provides federally-funded health care for 9/11 first responders and others exposed to Ground Zero toxins.  A pioneer in health and safety, Dr. Howard has received high praise for his efforts working on behalf of the heroes of 9/11, and clearly deserves to be reappointed, not removed from office.September 11th was a tragedy to which public-spirited Americans responded by risking their own personal health and welfare to save others. There is simply no reason to have a vacancy at the National Institute for Occupational Safety and Health at a time when the 9/11 workers, need its help and expertise most. This perceived desertion undermines the trust these workers deserve to have in their government.Dr. Howard has been an outstanding director and public servant, and deserves our full support and confidence. You assured us in February 2006 that you are \"\"committed to providing appropriate, compassionate and timely support to those who were affected by WTC exposures following the 9/11/ attack.\"\" We are hard pressed to understand this commitment in light of Dr. Howard's not being reappointed and urge you to reconsider this ill-conceived decision.Sincerely,ROBERT MENENDEZ    United States Senator                                                                                  FRANK LAUTENBERGUnited States Senator# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f7503422-5462-452e-a7d3-5e92ddb69849,\"MAJOR HOUSING BILL APPROVED BY CONGRESS: SEN. MENENDEZ PRAISES BILL AS CRUCIAL STEP TOWARD BOOSTING OUR ECONOMY AND PROVIDING RELIEF TO HOMEOWNERS\n                    \n                            Menendez amendment to strengthen financial counseling was included\n                    \n                      July 11, 2008\n                     WASHINGTON, D.C. -Today, the U.S. Congress approved the Housing and Economic Recovery Act of 2008 to provide relief for families who are struggling to keep their homes and to stabilize the market. Senator Robert Menendez (D-NJ), a member of the Senate Banking Committee, praised the bill while making it clear that it is only a first step toward addressing the housing crisis.  The bill includes a major overhaul of our mortgage financing system; it allows qualified homeowners who are struggling to refinance and lock-in more affordable loans, making terms and regulations more transparent and investing millions of dollars to help expand financial counseling programs.\"\"Each day, 8,000 more Americans file for foreclosure and millions more worry about mounting mortgage payments,\"\" said Senator Menendez. \"\"For their sake and for the sake of this economy which badly needs a lift, it was so important that we finally came together to forge this housing bill. Since I said at a Banking Committee hearing well over a year ago that we were facing a tsunami of foreclosures, it has been apparent that we could not sit idly by while American Dreams turn into an un-American nightmares.\"\"American families are the ones taking the direct hit in this economic downturn. They are receiving foreclosure notices, they are struggling to balance their checkbooks and they are reaching out to Congress for help. This is a strong bill that takes us in the right direction, by boosting our economy while at the same time addressing the root cause of our current economic problems - the housing market.\"\"I am also pleased that this bill includes a provision that I championed to help promote better financial education among prospective homeowners. The most basic and obvious step we can take to empower families in the midst of the national financial unease and the home foreclosure crisis is to provide them with the information and knowledge to help them make the best decisions about their financial future\"\"\"\"While I am thrilled that we were able to approve this legislation, I was very disappointed that Republicans blocked an amendment I introduced that would have helped homeless children affected by the foreclosure crisis.  The amendment would have provided an infusion of funding for a program to help homeless students stay in their schools and receive educational assistance. I will keep pushing to bring attention to this issue and to get this item approved.\"\"Menendez Financial Counseling Amendment: The Menendez Financial Counseling amendment will lead to better financial education among prospective homeowners and help identify the most successful methods for delivering counseling services.  The amendment simply allows states to use their administrative expenses to improve their financial education and housing counseling services and authorizes pilot projects to help determine the most effective methods for providing housing counseling and financial education. Provisions in the Housing and Economic Recovery Act of 2008 include:• The HOPE for Homeowners Act: Creates an initiative within the Federal Housing Administration (FHA) to prevent foreclosures for hundreds of thousands of families at no estimated cost to American taxpayers.• Affordable Housing Fund: A permanent, new fund that will help create more affordable housing for millions for Americans in communities across the country. • Assistance for Communities Devastated by Foreclosures:  To ensure that communities can mitigate the harmful effects of foreclosures, $3.92 billion in supplemental Community Development Block Grant Funds will be provided to communities hardest hit by foreclosures and delinquencies. • Foreclosure Counseling for Families in Need:  To help families avoid foreclosure, the bill provides $150 million in additional funding for housing counseling. • Preserving the American Dream for Our Nation's Veterans:  This bill contains several provisions to help returning soldiers avoid foreclosure, including lengthening the time a lender must wait before starting foreclosure from three months to nine months after a soldier returns from service. • GSE Reform: Creates a world class regulator for the government-sponsored enterprises (GSEs) so that these vital institutions can safely and soundly carry out their important mission of providing our nation's families with affordable housing.• FHA Modernization: A provision to modernize, streamline and expand the reach of the FHA, allowing families in all areas of the country to access secure and affordable mortgages through FHA. • Enhancing Mortgage Disclosure:  To ensure that consumers know the exact amounts of their mortgage payments, including the maximum possible payment under the terms of the loan and changes in payments associated with adjustable rate mortgages, lenders will be required to provide borrowers with timely and meaningful mortgage disclosures on all home purchase loans, loans that refinance a home, and loans that provide a home equity line of credit.                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2a259830-d708-489a-9a13-40f510fdaece,\"SEN. MENENDEZ BLASTS BUSH FOR PLANS TO TAKE NO FURTHER ACTION ON GHG EMMISSIONS\n                    \n                            \"\"Apparently the Bush Administration is the last place on Earth unaffected by climate change\"\"\n                    \n                      July 11, 2008\n                     WASHINGTON - The Washington Post reported today that the Bush administration is prepared to delay any action by the Environmental Protection Agency to curb greenhouse gas emissions for the rest of President Bush's term.U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee, released the following statement:\"\"Apparently the Bush administration is the last place on Earth unaffected by climate change. Make no mistake, their eight-year long foot drag on our planetary crisis will not just harm us, but our children and our children's children as well. History will remember that when the extent of our planetary emergency came into focus, this president refused to act. This nation has the will and the ability to cut down emissions and start healing our planet, but we simply don't have the cooperation of an administration that's stuck in the past.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=76d72cef-073d-417f-ac70-d8f8a3f68de5,\"PRESIDENT BUSH REPEATS ABSURD CALL FOR OFFSHORE DRILLING; SEN. MENENDEZ RESPONDS\n                    \n                            Menendez has been a leading defender of the coastline, proponent of alternative policies to bring relief to American families\n                    \n                      July 11, 2008\n                     WASHINGTON - Today, after meeting with economic advisors, President Bush reiterated his call for Congress to open up new areas of oil drilling, including the U.S. coastlines.U.S. Senator Robert Menendez (D-NJ), a leading opponent of drilling in the Outer Continental Shelf and author of the COAST Act to permanently ban drilling there, released the following statement:\"\"Apparently President Bush's economic team does not realize his coastline drilling plan won't produce a drop of oil for a decade and won't lower gas prices, now or ever. The administration's Energy Information Agency has said as much. American families are struggling right now, and they deserve better than waiting for a decade for a plan that won't lower gas prices. They deserve better than a president taking advantage of public concern about gas prices to give one last handout to his buddies in the oil companies.\"\"We as a nation have the ability and ingenuity to implement a smarter plan of action. A plan that would crack down on oil speculation to bring gas price relief in the short term. A plan that would hold the oil companies accountable by pushing them to actually utilize the 68 million unused acres they already have leased. A plan that would tap the innovative spirit we have always shown in America. In the time Bush and McCain would take to start on oil production along our coastlines, we can transition to a new transportation model based on renewable energy and advanced alternatives fuels.\"\"                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b47fa43a-2579-4ce7-bb69-ef1ef8cbd5f5,\"SENS. MENENDEZ AND LAUTENBERG CONDEMN FAA FOR RETALIATION AGAINST AIR TRAFFIC CONTROLLER\n                    \n                            NJ Senators have been strong critics of rush to implement airspace redesign\n                    \n                      July 11, 2008\n                     WASHINGTON - U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) are demanding that the Federal Aviation Administration use its time and energy ensuring the safety of air travelers rather than retaliating against air traffic controllers. This action comes in the wake of New Jersey-area controllers seeking whistleblower protections from the FAA, which has reportedly retaliated against them for disclosing safety concerns surrounding new flight paths for Newark Liberty International Airport that were rushed into implementation.Senators Menendez and Lautenberg have been vocal critics of the FAA's rush to implement its \"\"airspace redesign\"\" for the New York and Philadelphia regions. Air traffic controllers have sounded the alarm about the FAA's failure to provide updated guidance for departing flights under this redesign and the serious safety issues that have resulted.The New Jersey Senators have blocked Acting Administrator Robert Sturgell's nomination to be made the permanent Administrator from proceeding in the Senate until he shows a commitment to addressing a range of safety and efficiency issues plaguing the most crowded airspace in the nation.PDF of letter to FAA: http://menendez.senate.gov/pdf/071108FAAAirTrafficController.pdfText of letter to FAA:July 11, 2008The Honorable Robert A. SturgellActing AdministratorFederal Aviation Administration8000 Independence Ave., SWWashington, DC 20591Dear Acting Administrator Sturgell:We write out of continued concern for FAA's safety regulation and management of the New Jersey-New York airspace.  Recently some alarming reports have surfaced regarding the agency's alleged actions to silence air traffic controllers who have complained about the lack of published flight patterns at Newark Liberty International Airport.  Since the so-called \"\"dispersal headings\"\" were put into effect last year, air traffic controllers have been asking for updated Standard Instrument Departures (SIDs) to be published. Not only has the FAA still failed to provide written procedures, but it now appears to be retaliating against its critics. On a larger scale, the deteriorating relationship between FAA management and air traffic controllers is of grave concern.  In the crowded metropolitan airspace, it is absolutely essential that we have a full staff of experienced, completely certified controllers.  We ask that you take steps to begin to repair FAA's relationship with its safety professionals, including air traffic controllers.  A cooperative partnership means a more efficient airspace and a safer public.This is particularly urgent given the ongoing wave of retirements and overall lack of experienced controllers managing the planes in our skies.  For example, we are aware of the FAA's difficulty in retaining developing controllers at Newark tower in particular.We urge you to act before it is too late.  The poisoned relationship between FAA management and its employees must not continue.  The people of New Jersey deserve an FAA that can make our airports and skies over our communities as safe and efficient as possible.Sincerely Yours,ROBERT MENENDEZ                                                       United States SenatorFRANK R. LAUTENBERGUnited States Senator                                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ab496855-8ed7-47e0-9666-c949bdfb21f1,\"FEINGOLD, DODD, MENENDEZ INTRODUCE \"\"USE IT OR LOSE IT\"\" BILL TO SPUR OIL PRODUCTION\n                    \n                            Legislation Would Spur Oil Companies to Develop the nearly 70 Million Acres Already Leased Before New Leases Are Granted\n                    \n                      July 10, 2008\n                     Washington, D.C. - Today, U.S. Senators Russ Feingold (D-WI), Christopher Dodd (D-CT), and Robert Menendez (D-NJ) introduced legislation sending an important message to oil companies about the federal land they lease for oil development - use it or lose it.  The legislation, entitled the Responsible Federal Oil and Gas Lease Act, would spur oil companies to develop the nealy 70 million acres of federal land they currently lease but have not developed to produce oil.  The bill, which is similar to legislation introduced in the House by Rep. Nick Rahall (D-WV), mandates that oil companies either produce on or seek to develop their existing federal leases, or relinquish the leases.  The bill ensures that companies take reasonable steps to produce oil and gas on federal lands and waters within a lease's term.   The Senators are also supporting the Responsible Ownership of Public Lands Act, introduced by Dodd and cosponsored by Feingold and Menendez, to place an escalating fee on leases of federal land that lie unused.\"\"While energy prices soar, oil companies are saying there's nothing they can do,\"\" Feingold said.  \"\"Yet these companies hold the leases to sixty-six million acres of federal land that they haven't developed.  That just doesn't add up.\"\"\"\"For years, oil companies have been sitting on millions of acres - doing nothing to develop them for drilling - while hardworking Americans grapple with skyrocketing prices at the pump,\"\" Dodd said.  \"\"By introducing this legislation today, Senators Feingold, Menendez, and I are acting to hold these companies accountable for the unused acreage they already lease and reject the false argument that opening up new acreage to drilling will solve our energy problems.\"\"Senator Menendez said: \"\"For far too long, our government has held the oil companies' hands rather than holding them accountable. In this time of astronomical gas prices, all George Bush and John McCain can think of is to give another handout to oil companies that are already sitting on almost 70 million acres of unused land. No accountability, no crackdown on oil speculation, no real commitment to renewable energy or advanced alternative fuels. American families are getting squeezed, and they deserve a government that works for them, not for the oil companies.\"\"While some are calling for opening up more federal lands for drilling, the oil companies have not explained why they have not produced on over three-quarters (or 66 out of the 86 million acres) of federal lands and waters they currently lease.  Federal lands and waters with oil and gas resources that are already available for leasing contain over 100 billion barrels of oil.                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=151ce5bb-d335-4c72-b51c-9003ce8ab5cc,\"Children Affected By Foreclosure: Sens. Menendez and Kennedy, Fighting to Assist Uprooted Children, Urge Republicans to Allow Amendment to Housing Bill \n                    \n                            As millions of families lose homes, schoolchildren have been floating from one school to another\n                    \n                      July 10, 2008\n                     \n\nWASHINGTON - As a result of the nationwide foreclosure crisis, schoolchildren whose families have been uprooted from their homes have found themselves floating from school to school. U.S. Senators Robert Menendez (D-NJ), a member of the Senate Banking Committee, and Edward Kennedy (D-MA) are working to help schoolchildren remain in their schools, even if their families lose their home. They have offered an amendment to the Senate's housing bill that would provide an infusion of funding for a program to help homeless students stay in their schools and receive educational assistance. Senate Republicans are currently blocking this amendment, as part of a package of amendments, from passage.\nSenators Menendez and Kennedy, along with national children's advocacy organizations, are calling on Senate Republicans to allow the amendment in the bill and are committed to getting these uprooted children the assistance they need to continue their educational development.\n\nSenator Menendez said: \"\"Abruptly uprooting children from the schools where they are connected to the teachers, learning material and classmates can severely stunt their development. It is unfair to let these children float from one unfamiliar school to another through no fault of their own and against the will of their parents. Our proposal would help prevent our children's education from becoming yet another piece of collateral damage in the devastating foreclosure crisis. Our Republican colleagues should allow assistance for these silent victims.\"\"\nMelissa Wagoner, spokeswoman for Senator Kennedy, said: \"\"The loss of a home is devastating - particularly for young people. Senator Kennedy is proud to support this amendment.  It will go a long way towards providing homeless students with the support they need to succeed in school and reach their full potential.\"\"\nBruce Lesley, President of First Focus, said: \"\"We commend Senator Menendez for standing up for the innocent victims of the foreclosure crisis - an estimated 2 million of our nation's children. As families lose their homes, kids are losing their schools and access to services. These changes are not only impacting their education but their physical and mental health as well. We are disappointed that the amendment IS BEING blocked today and urge the federal government to address the needs of children as they continue to take actions to minimize the impact of the mortgage crisis.\"\"\nTim Stahlke, President of the National Association for the Education of Homeless Children and Youth, said: \"\"The emergency grants created by the Menendez amendment are desperately needed to help schools create stability in the midst of upheaval, so that loss of housing does not mean loss of education, peer networks, and community support. We are grateful for Senator Menendez' efforts on behalf of children who would otherwise go unseen and unserved.\"\"\n\nAbrupt, and in some cases frequent, changes of school can affect a child's ability to learn and puts strain on school districts. An analysis by the group First Focus and the Brookings Institution has estimated that up to two million schoolchildren will be affected by the foreclosure crisis.\nThe amendment to the housing bill was supported by the following national organizations: Alliance for Children and Families  Alliance for Excellent Education, American Humane Association, Break the Cycle. Camp Fire USA, Child Welfare League of America, Communities In Schools, First Focus, National Association for the Education of Homeless Children and Youth, National Association of Elementary School Principals, National Association Secondary School Principalsm National Collaboration for Youth, National Education Association, National PTA, National School Boards Association, Public Education Network, School Social Work Association of America, The Rebecca Project for Human Rights, United Neighborhood Centers of America, Voices for America's Children, YMCA of the USA, and YouthBuild USA.\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d61bb1ff-cad9-423a-8946-ecc93772b04c,\"MORE THAN $259 MILLION FOR NEW JERSEY SECURED BY LAUTENBERG & MENENDEZ PASSES KEY SENATE COMMITTEE\n                    \n                            Funds Part of Transportation, Energy and Water,Financial Services Appropriations Bills\n                    \n                      July 10, 2008\n                     WASHINGTON, D.C. - Today, the Senate Appropriations Committee approved more than $259 million in federal funding for critical projects in New Jersey supported by Sen. Frank R. Lautenberg (D-NJ), a member of the committee, and Sen. Robert Menendez (D-NJ).            The funds are part of three separate FY 2009 spending bills the Appropriations Committee approved: the Transportation, Housing and Urban Development Appropriations bill; the Energy and Water Development Appropriations bill; and the Financial Services Appropriations bill.  These bills must be approved by both the Senate and House of Representatives before they can be signed into law by the President.   President Bush has threatened to veto these bills.            \"\"These bills include measures to modernize our public transportation systems, give commuters more travel options, help keep cars off the road and reduce our reliance on foreign oil.  These bills would also strengthen our infrastructure, protect our communities from flooding and invest in alternative energy sources.  These funds are critical to New Jersey's economy and environment, and I am proud to have helped take this important step to secure them,\"\" Sen. Lautenberg said.            \"\"The economic downturn is hitting New Jersey's families, and we must work to provide relief to commuters and help break our dependence on oil,\"\" said Sen. Menendez.  \"\"With gas prices hitting record highs, this funding will help address our energy crisis by upgrading our transportation system and investing in renewable energy. It will also help preserve our state's economic and environmental treasure - our beaches. We are calling on President Bush to reconsider his stance so that we can bring relief to commuters, help build a green economy, and protect the Jersey Shore.\"\"            New Jersey would receive $86,503,000 in funds under the Transportation, Housing and Urban Development Appropriations bill.  New Jersey projects in the bill are:• $75,000,000 to NJ Transit for the Trans-Hudson Midtown Corridor tunnel;• $1,104,000 to NJ Transit for the second segment of the Hudson Bergen Light Rail;• $3,000,000 to the NJ Department of Transportation (NJDOT) for I-295/76/42 Direct Connection in Camden County;• $2,000,000 to NJ Transit for Bloomfield Intermodal Improvements;• $500,000 for Stevens Institute of Technology for the Hudson Waterfront Walkway;• $1,000,000 for the redesign of College Avenue in New Brunswick;• $1,000,000 for the Lakewood Township Multi Modal Facility;• $1,000,000 to Salem County for Short Line Railroad Rehabilitation;• $1,000,000 to 180 Turning Lives Around in Monmouth County for the construction of a new domestic violence shelter;• $200,000 for Cathedral Soup Kitchen in Camden to construct a new facility;• $300,000 for the YMCA of Eastern Union County to renovate its social service facility; and• $400,000 for Hudson County for the redevelopment of Koppers Coke Brownfield Site.            The bill also includes a Lautenberg provision that requires the Federal Aviation Administration (FAA) to report to Congress within 60 days of a General Accountability Office (GAO) report on the New Jersey-New York-Philadelphia airspace redesign.  Both Sens. Lautenberg and Menendez have been strong critics of the redesign plan, and list it as one of the reasons they placed a \"\"hold\"\" on the acting FAA administrator's nomination to run the FAA permanently.              New Jersey would receive $171,866,000 in funds under the Energy and Water Development Appropriations bill.  Some of the New Jersey projects in the bill are:• $10,000,000 for flood control in Bound Brook;• $4,000,000 for development at Minish Park in Newark;• $1,000,000 for the installation of solar panels at the Essex County Environmental Center in Roseland;• $500,000 to the NJ Department of Agriculture for an alternative energy project;• $500,000 for the city of Trenton for a renewable energy study;• $300,000 for solar power generation at the Cherry Hill Town Hall;• $11,700,000 for beach replenishment in Long Beach Island;• $3,250,000 for beach replenishment in Ocean City;• $3,000,000 for beach replenishment in Avalon;• $2,000,000 for beach replenishment from Sandy Hook to Barnegat Inlet; and• $85,000,000 for New York and New Jersey harbor deepening.            New Jersey would receive $720,000 in funds under the Financial Services Appropriations bill.  New Jersey projects in the bill are:• $375,000 to Essex County  for a small business development program;• $100,000 to the Latin American Economic Development Association in Camden for an entrepreneurial development training program; and• $245,000 for a small business incubator in Lakewood.                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=747efc40-4481-4a89-a07e-83678b3a908a,\"SENATE PREVENTS ENDANGERMENT OF CARE FOR MEDICARE RECIPIENTS; SEN. MENENDEZ HELPS PASSAGE OF BILL\n                    \n                            Doctors would have faced cut in reimbursements and likely would have cut back services as a result; military TRICARE recipients also would have been affected\n                    \n                      July 9, 2008\n                     WASHINGTON - This afternoon, the U.S. Senate voted to avoid a potential cut in care for Medicare recipients. U.S. Senator Robert Menendez voted in favor of legislation that will stave off a 10 percent cut in reimbursements to physicians who care for Medicare recipients. That cut was likely to cause many physicians to offer fewer services to Medicare recipients or to cease participating in Medicare altogether. It also would have affected care for veterans, active-duty military and their families in the TRICARE program, of which there are 87,343 in New Jersey. The legislation will help people in Medicare and TRICARE by maintaining their access to doctors, implementing electronic prescribing and bolstering Medicare's low-income programs.Senator Menendez released the following statement:\"\"These are tough economic times. Millions of Americans rely on Medicare to stay healthy, and it shouldn't be harder for them to get care. Seniors who live on a fixed-income are already facing higher food prices and higher gas prices. We have men and women fighting in Iraq - not to mention veterans - relying on TRICARE for the wellness of their families. To take away health care options from them would be disastrous.\"\"Senator Kennedy has long been a champion of Medicare, and his return to the Senate provided the force we needed to get over the top - his dedication to our nation's seniors could not be any clearer, and I'm certainly glad to see him back.\"\"                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7b7a110d-6f65-44b5-a14f-caa072a0b578,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $1.4 MILLION FOR SOUTH JERSEY AIRPORTS\n                    \n                            Grants Will Help Improve Runway Safety and Protect Travelers at the Airports\n                    \n                      July 9, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the U.S. Department of Transportation (USDOT) has awarded more than $1.4 million in federal funds to four New Jersey airports.            Airports in Hammonton, Mount Holly, Lakewood and Woodbine will receive these USDOT funds for security upgrades, taxiway and runway improvements, road maintenance and improvements in snow and stormwater removal.  These upgrades will help maintain and improve the airports and increase safety and reliability for fliers using them.            \"\"Our aviation network is a vital part of our state's economy.  We need to make New Jersey's airports as safe, modern and reliable as possible,\"\" said Sen. Lautenberg.  \"\"These funds will help improve and modernize our local airports and protect passenger and pilot safety.\"\"            \"\"Airport safety and efficiency at New Jersey airports are a top priority for me, as it directly affects both the state economy and our citizens,\"\" said Sen. Menendez.  \"\"This funding will increase not only the quality of these airports, but also the safety of each passenger.\"\"            The four airports will receive a total of $1,485,098:• Hammonton Municipal Airport will receive $315,445 to improve its access road and install perimeter fencing;• South Jersey Regional Airport will receive $150,000 to upgrade its taxiway;• Lakewood Airport will receive $123,500 to improve its airport drainage and develop a stormwater management plan; and• Woodbine Municipal Airport will receive two separate grants totaling $896,153 for security upgrades and to expand its transient apron which connects the access road to its airfield facilities.            Over the past month, Sens. Lautenberg and Menendez have announced more than $15.2 million in federal funding for upgrades and repairs at airports across New Jersey.                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b90e8297-fbd0-4eb3-89b7-db125e36f237,\"SEN. MENENDEZ VOTES AGAINST WIRETAPPING BILL\n                    \n                      July 9, 2008\n                     WASHINGTON - Today, the U.S. Senate voted on a bill to reauthorize the Foreign Intelligence Surveillance Act, a program that allows the federal government to wiretap the phone conversations of Americans. Senator Robert Menendez (D-NJ) voted against the bill, citing concerns that the bill offers too few protections for American citizens. He released the following statement:\"\"This bill still provides too much leeway for our government to ignore the rights and freedoms of its own citizens. I voted against it because of the retroactive immunity it provides phone companies that allegedly participated in the president's illegal wiretapping program, because of the loopholes to the requirement of judicial approval for wiretapping, and because it provides too few protections for innocent Americans, among other questionable provisions. Under this law, we will never know what constitutional violations take place.\"\"We can defend our nation effectively without restricting the protections that law-abiding American citizens are owed. Americans must be able to live in freedom and maintain their personal privacy without fear that their government will intrude. If, in the name of security, the U.S. government encroaches upon the rights we hold dear, then it has ignored what makes this country so special. At the end of the day, we can achieve the security we need while protecting the rights we cherish.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fab69fe1-214e-494d-b0fc-692dc4c1daf0,\"NJ LAWMAKERS FIGHT EFFORTS IN WASHINGTON TO LIFT OFFSHORE DRILLING MORATORIUM\n                    \n                      July 7, 2008\n                     Belmar, NJ --- With President Bush and Senator McCain now in favor of opening our coasts to offshore drilling and Republicans in Congress currently working to overturn a 26 year offshore drilling moratorium, U.S. Rep. Frank Pallone, Jr. (D-NJ), U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) and Gov. Jon Corzine (D-NJ) today stressed the need for Congress to pass their legislation that would permanently extend the moratorium on oil and gas drilling off the Jersey Shore.     The COAST (Clean Ocean and Safe Tourism) Anti-Drilling Act would permanently extend an existing moratorium on oil and gas drilling off the Jersey Shore and all North and Mid-Atlantic states from Maine to North Carolina.  It would prohibit the U.S. Department of Interior from issuing leases for exploration, development or production of oil, natural gas or any other mineral in the Mid and North Atlantic.  The moratorium on leasing activities has been in effect since 1982 and is included annually in Interior Department appropriations acts.  While President Clinton extended the moratorium through 2012, President Bush has consistently explored ways to end it.  Congressional Republicans are now stepping up their assault to lift the moratorium with false claims that such action would help reduce record gas prices at the pump. When the Bush administration proposed drilling off the Virginia coastline, its own Minerals Management Service (MMS) estimated that the recoverable oil in the Mid-Atlantic Planning Area would only last between 17 and 41 days and recoverable gas an additional three months.  These minimal resources would also not actually make it to the market for at least another 10 years, as it takes time for oil and gas companies to explore and then construct the equipment to extract the resources from the earth.   The three New Jersey lawmakers said it would be shortsighted to put our beaches, our fishing and our tourism economy at risk for such minimal amounts of oil and gas.  Tourism is one of New Jersey's largest industries.  It brings in more than $5.5 billion in tax revenues, provides jobs to more than 500,000 people and generates more than $16.6 billion in wages. \"\"The Bush-McCain plan is a gift to the oil companies that endangers the economic and environmental health of the Jersey Shore and our entire state,\"\" Lautenberg said.  \"\"The Bush-McCain drilling scheme chooses Big Oil over American consumers and does nothing to immediately reduce gas prices.  While we have offered real solutions to bring relief at the pump—like combating oil market speculation and price gouging and taking on the OPEC cartel—the Bush-McCain Republicans, acting on behalf of the oil companies, have blocked our efforts.\"\"\"\"Unfortunately, the Bush-McCain drilling plan doesn't include a time machine that we can use to jump to the year 2017, when we might finally see the first drop of oil out of our coastline,\"\" Menendez said.  \"\"They want to make it sound as if we can run a pipeline from the ocean floor straight into our gas tanks, but it's really a plan that won't have any effect on gas prices for a decade and even then will only amount to a handful of pennies.  This is why we have led the defeat of four separate attempts in the Senate to open up the coastline to drilling and why we are championing legislation to permanently ban drilling along our coastline.  This is why I have signed onto Senate legislation that would press the oil companies to utilize the 68 million acres of unused land already leased to them by the American taxpayer.  We are still working to pass Senate legislation that will crack down on speculation that artificially raises gas prices while investing in the renewable energy we need for the future of this economy and this planet.\"\"\"\"Ending the moratorium on offshore drilling is not the answer to lowering prices at the pump,\"\" Pallone said.  \"\"If Washington Republicans were serious about providing real relief to consumers, they would join our efforts to force Big Oil to drill where they already have leases, invest in renewable energies that are already bringing down prices at the pump by about 50-cents a gallon, and punish price gougers.  Unfortunately, the only solution Republicans have come up with is more drilling--- the same failed policy that helped produced these record prices in the first place.\"\"\"\"Drilling for oil and gas off the Jersey Shore is a bad idea,\"\" Corzine said. \"\"Our world-renowned coastline is the lifeblood of our economy and a fragile environmental treasure.  In many respects, it shapes our way of life, and we will fight any attempt to jeopardize it.  The Bush-McCain team would do well to remember that true leadership isn't about making easy choices; it's about making the right choices.\"\"President Bush and Washington Republicans want to give away more public resources to the very same oil companies that are sitting on 68 million acres of federal lands they have already leased but not drilled.  According to the Interior Department, there are 7,740 active leases in the outer continental shelf but only 1,655 are actually in production.  While four times more natural gas is available in areas already open to drilling than in waters protected by the current Congressional moratorium, the Interior Department found that the oil industry is using only 18-percent of what it already has access to.###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=58f9a4d7-bac6-4d1e-a17e-394e34a8b842,\"SEN. MENENDEZ STATEMENT ON THE EVE OF INDEPENDENCE DAY\n                    \n                      July 3, 2008\n                     WASHINGTON, DC—U.S. Senator Robert Menendez (D-NJ) released the following statement on the eve of our nation's Independence Day:  \"\"Independence day is a perfect time to reflect on our nation's monumental past, to celebrate our present accomplishments and to contemplate how to secure an even better future for our children. On this day we are reminded that we must never take our freedoms for granted, and that we must continue to make the American Dream possible for everyone. \"\"Independence Day also serves as a reminder of the heroism of the brave men and women who have made the ultimate sacrifice for our country and who have allowed this nation to become and to remain independent. Throughout American history, our country has depended on the service of our brave men and women in uniform to protect our freedoms. We salute their sacrifice and show our deepest appreciation - not just on this day, but every day. \"\"I wish everyone a safe, happy and fun July 4th weekend with their loved ones, and in particular, I will be thinking of our men and women serving overseas this Independence Day.\"\" ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f25b3c2d-112a-43b2-9859-cdb17258214a,\"Toxic Chemicals at McGuire AFB: Sens. Menendez and Lautenberg Demand Answers, Seek to Protect Public Health\n                    \n                            Menendez, Lautenberg, Mikulski, Cardin, Bill Nelson call on Defense officials to explain why EPA regulations have been ignored; Menendez, Lautenberg and Nelson also ask GAO to investigate\n                    \n                      July 1, 2008\n                     WASHINGTON - The Washington Post yesterday reported on a battle between the Department of Defense and the Environmental Protection Agency over the cleanup of toxic chemicals on three military bases across the country, including McGuire Air Force Base in New Jersey. The EPA is concerned that the chemicals pose \"\"imminent and substantial\"\" threats to both the health of nearby residents and to the environment, but the Pentagon has refused to abide by the law, and will not accede to the EPA's cleanup orders.\nIn response, Senators Robert Menendez (D-NJ), Frank Lautenberg (D-NJ), Barbara Mikulski (D-MD), Ben Cardin (D-MD) and Bill Nelson (D-FL) are demanding answers from the Pentagon on its lack of willingness to clean up the potentially-cancer causing chemicals that it released into the ground and groundwater. Additionally, Senators Menendez, Lautenberg and Nelson have requested that the Government Accountability Office investigate the Pentagon's lack of compliance.\n\nSenator Menendez said: \"\"People who happen to live near a military base must be given the peace of mind that the ground they walk on and the water they drink is free of toxic, cancer-causing chemicals. It seems that the Department of Defense is trying to avoid its cleanup responsibilities or is more interested in winning a Washington turf battle than the health of our citizens, and that is simply outrageous. We need an official investigation as well as direct answers from the Secretary of Defense to better explain exactly why residents of New Jersey and elsewhere are being put at risk.\"\"\nSenator Lautenberg said: \"\"We need to protect the communities in and around McGuire Air Force Base from dangerous chemicals. The Pentagon cannot ignore the potential health and environmental threats of the chemical contaminants in the water and soil surrounding McGuire and other bases. I will fight to ensure the Pentagon and the EPA protect our residents and clean up these sites.\"\"\nSenator Mikulski said: \"\"This issue affects not only Fort Meade, McGuire Air Force Base and Tyndall Air Force Base - but the thousands of people living, working, praying and playing on base and in nearby communities.  I am very disappointed in the Defense Department's (DOD) lack of response to the EPA's orders.  We need to cut through the red tape and make sure that this clean up is conducted in the sunshine,\"\" said Senator Mikulski.  \"\"I urge the DOD to respond to our inquiry - but more importantly - to remove the chokepoints holding up this important process.\"\"\nSenator Cardin, a member of the Senate Environment and Public Works Committee, said: \"\"The Department of Defense is an important part of many communities across the country, like Ft. Meade, and they must be a responsible neighbor.  DOD is not above the law and is not exempt from EPA regulations. The sites outlined in the Washington Post article pose an immediate hazard to the health and safety of Americans, and I urge the DOD to take immediate steps to comply with EPA's cleanup efforts.\"\"\nSenator Nelson said: \"\"The Pentagon cannot just pick and choose which federal laws apply to them. We need to get to the bottom of this and if they don't comply with the EPA then Congress may have to step in.\"\"\n\nUnder law, the EPA Administrator has final say in environmental disputes with other federal departments and agency, such as this one.\nMcGuire AFB was added to the Superfund's National Priorities List (NPL) in 1999. There, the DOD has found toxins including PCBs, jet fuel, pesticides, volatile compounds, and TCE. TCE, in particular, is a carcinogen known for seeping into drinking water.\nPDF of letter to DOD: http://menendez.senate.gov/pdf/063008LettertoSecretaryGates.pdf\nPDF of letter to GAO: http://menendez.senate.gov/pdf/063008GAOletteronpollutioncleanup.pdf\nText of letter to DOD:June 30, 2008\nThe Honorable Robert Gates                                                      Secretary of Defense                                                                     U.S. Department of Defense                                                      1000 Defense Pentagon                                                                                                                Washington DC, 20460\nDear Secretary Gates:\nWe are alarmed by recent reports that the Pentagon is obstructing efforts to clean up pollution at   McGuire Air Force Base in New Jersey, Fort Meade in Maryland, and Tyndall Air Force Base in Florida.\nYour efforts to prevent the Environmental Protection Agency (EPA) from overseeing the cleanup of toxic pollution at all three locations could endanger public health and harm the environment. This is unacceptable, and we urge you to rethink your strategy.\nThe EPA has found that pollutants which \"\"present an imminent and substantial danger to the public health or welfare\"\" have been released or are about to be released. For instance, at McGuire AFB the Department of Defense (DOD) has found toxins including PCBs, jet fuel, pesticides, volatile compounds, and TCE. TCE, in particular, is a carcinogen known for seeping into drinking water.  Investigations at the Fort George G. Meade site revealed contaminants including solvents, pesticides, PCBs, heavy metals, waste fuels and waste oils as well as unexploded ordnance.\nThe Department of Defense has known about these problems for over 20 years. These sites have been listed as Superfund sites for almost 10 years. Yet the department has failed to act in an aggressive fashion to address these issues. Instead recent actions suggest an apparent attempt to minimize the problem, with the department going so far as to undermine efforts to set TCE limits for drinking water.\nThe EPA understands the hazards posed to the residents of our home states. To their credit, they realized that the DOD's \"\"voluntary cleanup\"\" was simply a delay tactic, telling the Washington Post: \"\"Under DOD's management, some of these sites have languished for years, with limited or no cleanup\"\" (\"\"Pentagon Fights EPA on Pollution Cleanup,\"\" June 30, 2008). As a result, the EPA issued \"\"final orders\"\" to develop a remediation plan and schedule. \nThe Department of Defense appears to be refusing to recognize the law, and has denied the EPA's authority by refusing to sign the final orders. According to reports, you are going so far as to ask the Department of Justice to challenge the EPA and the Office of Management and Budget to intervene. The intent of the law and of Congress is clear: the EPA has authority over the DOD in cleanup disputes.\nOther Federal Agencies have had no problem understanding the law, and have signed similar final orders.  Indeed, numerous military installations are included on the Superfund list and many of them have signed final orders in the past.  Current reports that the Department is failing to abide by the law and past practice in the responsible cleanup of hazardous waste sites are deeply troubling.\nWe would like to know why your department is endangering public health, and we would like an immediate reply. We would like to know:\n• Why is the DOD refusing to sign the EPA's final orders?• Why has such little progress been made on cleaning up these sites?• What has the DOD requested from the Department of Justice and OMB? • Why has the DOD resisted EPA efforts to set pollution standards for perchlorate and TCE?• When will clean up at these three sites be completed?\nThese concerns are not limited to the three bases in our home states, but have arisen at another 12 Superfund sites and at thousands of bases throughout the country. The Department of Defense appears willing to go to great lengths to avoid these cleanups.\nWe impress upon you that health and lives of Americans are at stake, and urge you to act immediately.\nSincerely Yours,\nROBERT MENENDEZ                                             FRANK R. LAUTENBERGUnited States Senator                                                 United States SenatorBENJAMIN L. CARDIN                                          BILL NELSONUnited States Senator                                                 United States Senator\nBARBARA A. MIKULSKIUnited States Senator\nCC: \nThe Honorable Stephen Johnson                                              The Honorable Michael Mukasey             Administrator                                                              Attorney GeneralU.S. Environmental Protection Agency                     U.S. Department of Justice1200 Pennsylvania Ave NW                                                         950 Pennsylvania Ave NWWashington DC 20301-1000                                                         Washington, DC 20530\nThe Honorable Jim NussleDirectorOffice of Management and Budget1650 Pennsylvania Ave NWEisenhower Executive Office Building #252 Washington, DC 20503\nText of letter to GAO:\nJune 30, 2008\n\nGene Dodaro, Acting Comptroller General of the United StatesGovernment Accountability Office441 G St., NWWashington, DC 20548\n\nDear Comptroller Dodaro:\nWe are writing to express our grave concern over recent reports that the Department of Defense (DOD) is refusing to sign final orders issued by the Environmental Protection Agency (EPA) to clean up toxic chemicals dumped around McGuire Air Force Base in New Jersey, Fort Meade in Maryland, and Tyndall Air Force Base in Florida (\"\"Pentagon Fights EPA on Pollution Cleanup,\"\" The Washington Post, June 30, 2008).  We ask that you begin an investigation into this apparent disregard of not only the EPA's statutory authority to enforce such action, but also public health and safety.\nThese bases are all listed as Superfund sites, meaning that the chemicals dumped around these bases pose \"\"present an imminent and substantial danger to the public health or welfare.\"\"  Some of the chemicals in question are known to cause cancer or other serious health problems, yet DOD has failed to act aggressively as they slowly seep into the soil and drinking water aquifers, threatening environmental problems for generations to come.\nDOD has claimed that it is voluntarily cleaning up all three sites.  EPA has the legal authority and practical expertise to assess DOD's efforts, and has deemed them insufficient.  Rather than working with EPA to determine what more could be done to protect public health and safety, DOD has blocked EPA at every turn, refusing to recognize the law and challenging EPA's authority.\nAs a result, EPA has been forced to issue a final order, which legal experts recognize as their most potent enforcement tool.  Such an order requires a polluter to follow the EPA's recommendation for cleanup.  Other governmental agencies, including NASA and the Department of Energy, have previously complied with EPA's final orders.  DOD itself has signed final orders in the past, but refuses to do so now.\nWe urge you to conduct an immediate investigation into the DOD's refusal to sign the EPA's final orders regarding the pollution at McGuire Air Force Base, Tyndall Air Force Base, and Fort Meade.  Specifically, we hope that you will review whether DOD has failed to comply with federal law, and what needs to be done to ensure the DOD cooperates with the EPA in future final orders.\nThank you for your attention to this issue, and we look forward to your response.\nSincerely,\nROBERT MENENDEZUnited States Senator \nFRANK R. LAUTENBERGUnited States Senator \nBILL NELSONUnited States Senator \n # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=77b25995-7df4-45ea-8e19-a0e19d9191c9,\"LAUTENBERG, MENENDEZ ANNOUNCEMORE THAN $2.5 MILLION FORATLANTIC CITY INTERNATIONAL AIRPORT\n                    \n                            Grants Will Provide for Training System andHelp Improve Airport Security, Preserve Nearby Grasslands\n                    \n                      July 1, 2008\n                     NEWARK, N.J. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced the U.S. Department of Transportation (USDOT) has awarded more than $2.5 million in federal funds for Atlantic City International Airport.            \"\"We need do all we can to ensure Atlantic City International Airport is as safe, modern and reliable as possible,\"\" Sen. Lautenberg said.  \"\"These funds will help Atlantic City International acquire the necessary technology and equipment as it expands to meet the future's travel and public safety demands.\"\"            \"\"An up-to-date Atlantic City International Airport is important for passenger safety and for the economy of Atlantic City,\"\" Sen. Menendez said.  \"\"Keeping the planes and passengers safely flowing is good for area residents, good for business at one of our state's top tourist destinations and great for passengers who expect safe travels.\"\"            Atlantic City International will receive three separate grants totaling $2,522,600:•    $1,927,078 to create an interactive training system, develop security upgrades and acquire snow removal equipment;•    $451,222 to update the airport's master plan, which was last completed 12 years ago; and•    $144,000 to monitor environmental quality and preserve nearby grassland as part of airport expansion.            Over the past month, Sens. Lautenberg and Menendez have announced nearly $15.2 million in federal funding for upgrades and repairs at airports across New Jersey.# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b9b8dc4d-7854-4300-9a8c-3be57936136d,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $1 MILLION FOR NORTH JERSEY AIRPORTS\n                    \n                            Grants Will Help Improve Runway Safety and Protect Travelersat Four North Jersey Airports\n                    \n                      June 30, 2008\n                     NEWARK, N.J. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced more than $1 million in federal funds for New Jersey airports in Teterboro, West Milford, Caldwell and Somerville.  These funds will be made available as grants from the U.S. Department of Transportation (USDOT).            \"\"It is critical that New Jersey's airports have the resources they need to ensure travelers get to their destinations safely—and on time,\"\" Sen. Lautenberg said.  \"\"These funds will help improve and modernize our local airports so they can meet future travel and public safety demands.\"\"            \"\"Ensuring the safety of travelers is of critical importance, and these funds will go directly into improving the safety of our airport runways and infrastructure,\"\" said Sen. Menendez.  \"\"This is a win-win for travelers and for the economic development of the region.\"\"            The four airports will receive a total of $1,026,350:·         Teterboro Airport will receive $45,000 to evaluate obstructions on runways, ensuring pilots can land their planes more safely;·         Greenwood Lake Airport in West Milford will receive $261,350 to install and upgrade runway lighting, and expand the parking apron to increase aircraft capacity;·         Essex County Airport in Caldwell will receive $570,000 to repair the parking apron and remove runway obstructions; and·         Somerset Airport in Somerville will receive $150,000 to repair deteriorated portions of the parking apron.            Over the past month, Sens. Lautenberg and Menendez have announced more than $15.2 million in federal funding for upgrades and repairs at airports across New Jersey.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=675d6dbd-a5c3-44e3-83e2-aef7c1a9dced,\"OFF-SHORE DRILLING IS ECONOMICALLY AND ECOLOGICALLY DEVASTATING, SAYS SEN. MENENDEZ IN ENERGY SPEECH ON SENATE FLOOR\n                    \n                            Sen. Menendez is author of legislation to permanently ban drilling in OCS, has led numerous defeats of offshore drilling amendments over the past year\n                    \n                      June 27, 2008\n                     WASHINGTON - Yesterday afternoon, U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee and the author of the COAST Act to permanently ban drilling in the Outer Continental Shelf (OCS), took to the Senate floor to deliver a key speech on off-shore drilling. This followed Senate Republicans unveiling legislation that makes opening up the East and West coasts for drilling the centerpiece of their plan to solve America's energy problems.Gasoline Prices at All Time High:\"\"Gasoline is now at over $4.00 per gallon and the Republican Bush/McCain plan is to do more of the same.  My colleagues on the Republican side of the aisle have continually sought to help Big Oil while at the same time they have blocked Democratic attempts to develop real policies to end our addiction to oil.  The result is that under the Bush Administration the price of oil has shot up over $140 per barrel and the price of gasoline has more than doubled.\"\"President Bush was right when he said that we are addicted to oil.  But what amazes me is that the Bush/McCain plan is designed to have us continue to act like addicts.  Instead of supporting real plans to conserve oil or even transition to sustainable fuels, the Bush/McCain plan is to go out in search of our next oil fix.  …Oil Companies Sitting on 68 million Acres Leased by American People:\"\"Another fact that the other side of the aisle wants to keep from the American people is that 80 percent of the oil and natural gas resources in our federal waters are already open for exploration.  Oil companies are sitting on 68 million acres of oil and natural gas leases where they have not produced any oil or natural gas. ‘The EIA projects that even if we opened up the entire Outer Continental Shelf to drilling- Off the East Coast, Off the West Coast, and opened up the entire Eastern Gulf of Mexico, nothing would happen to gas prices.  Not today, not tomorrow, not ever.  …Oil-Drilling Devastates Environment and Economy:\"\"Remember that oil drilling spill in the Gulf that travelled 600 miles, and the Exxon Valdez spill off the coast of Alaska was over 600 miles wide.  So what would a similar spill look like on the East Coast?It would mean a devastated coast line from New York down to South Carolina.  The environmental impact would be immeasurable and the economic impact would be enormous.…Republicans Say NO to American People, YES to Big Oil:\"\"Now it seems that Senator McCain cannot keep up the charade any longer.  On Monday he admitted that he did not expect his plan to provide relief at the pump, but that his plan would have a \"\"psychological impact\"\" that would be \"\"beneficial.\"\"  Psychological games are not going to reduce the price of oil.  The American people are sick and tired of Republican politicians that try to use political spin rather sound policy to solve our problems.  \"\"The American people are sick and tired of an energy policy written by Big Oil. It is time for my friends on the other side of the aisle to join us in real reform or get out of the way.\"\"To watch the video of the Senator's remarks, please click here: http://menendez.senate.gov/#offshoreTo listen to the audio of his remarks, click here:http://demradio.senate.gov/actualities/menendez/menendez080627.mp3Full text of Senator Menendez's remarks, as delivered:M. President,For years we have had an energy policy written by Big Oil for Big Oil.  The result has been good for Big Oil, but a disaster for the American people.Gasoline is now at over $4.00 per gallon and the Republican Bush/McCain plan is to do more of the same.  My colleagues on the Republican side of the aisle have continually sought to help Big Oil while at the same time they have blocked Democratic attempts to develop real policies to end our addiction to oil.  The result is that under the Bush Administration the price of oil has shot up over $140 per barrel and the price of gasoline has more than doubled.Despite this history of gas prices going up and up because of their failed policies, the Republican Party continues to block measures that will help create change. Every time we offer sensible policies to address the oil crisis, my friends on the other side of the aisle say NO.They have said NO to the Consumer First Energy Act that would finally clamp down on rampant oil speculation and burst the speculative bubble that has caused oil prices to skyrocket.They have said NO to the Renewable Energy Tax extensions bill that would help continue the rapid growth of wind and solar and provide an incentive for the purchase of plug-in hybrid vehicles.  This will help us begin the transition to new energy sources so we are not so vulnerable to the rising costs of fossil fuels. And the Republican Party has said NO to Climate Change legislation that lays out the framework to completely change our economy from one based on oil and other fossil fuels to an economy based on renewable energy.The Democrats have laid out a sensible plan for change in our energy policy that will make America stronger and more independent in the short, medium and long term, but all the Republicans can say in return is NO to the American people and YES to Big Oil.President Bush was right when he said that we are addicted to oil.  But what amazes me is that the Bush/McCain plan is designed to have us continue to act like addicts.  Instead of supporting real plans to conserve oil or even transition to sustainable fuels, the Bush/McCain plan is to go out in search of our next oil fix. M. President, ending a bipartisan twenty-six year moratorium to open up the Outer Continental Shelf to oil exploration is simply not a solution to our oil crisis. To defend this senseless Bush/McCain plan to open up all our shores to drilling, my colleagues on the other side of the aisle have been playing fast and loose with the facts. They claim that opening up our shores to future drilling will somehow affect gas prices.  As I recently pointed out on the floor, this argument flies in the face of projections by President Bush's own Energy Information Administration. The EIA projects that even if we opened up the entire Outer Continental Shelf to drilling- Off the East Coast, Off the West Coast, and opened up the entire Eastern Gulf of Mexico, nothing would happen to gas prices.  Not today, not tomorrow, not ever. Now it seems that Senator McCain cannot keep up the charade any longer.  On Monday he admitted that he did not expect his plan to provide relief at the pump, but that his plan would have a \"\"psychological impact\"\" that would be \"\"beneficial.\"\"  Psychological games are not going to reduce the price of oil.  The American people are sick and tired of Republican politicians that try to use political spin rather sound policy to solve our problems.  Another fact that the other side of the aisle wants to keep from the American people is that 80 percent of the oil and natural gas resources in our federal waters are already open for exploration.  Oil companies are sitting on 68 million acres of oil and natural gas leases where they have not produced any oil or natural gas.  I have joined my colleagues Senator Dodd and Senator Durbin to introduce a bill, theResponsible Ownership of Public Land Act, that will charge oil companies an escalating fee for leased acres they put aside and do not use for oil or natural gas exploration.  This will give these companies the incentives they need to stop hoarding the resources they have instead of seeking access to environmentally sensitive areas.One other fact that has not been discussed properly in this debate about high gas prices is the affect of President Bush's disastrous economic policies.  The weak dollar means it simply takes more money to buy the same barrel of oil than it did at the beginning of President Bush's term.  In 2000, one euro was equal in value to one dollar.  Today, one euro is worth close to one dollar and 60 cents.In large part this weak dollar has been caused by the enormous domestic budget deficits this Administration rung up to pay for the war in Iraq.  Instead of actually paying for this mistake, the Administration has just been printing money and piling up huge debts.  We are spending over $12 billion a month in Iraq and this foreign policy disaster is now adding up to be a fiscal policy disaster.  It is time we finally end this war, and get our fiscal house in order.  In turn this will strengthen the value of the dollar and help lower the price of gasoline.But M. President, perhaps the most disturbing thing about the misinformation campaign to sell the Bush/McCain plan to open up all our oceans to drilling is that they refuse to discuss how drilling will be economically and ecologically devastating to our coasts.On June 3, 1979, an exploratory oil well in the Gulf of Mexico blew out. The resulting 140 million gallon spill was the second largest in world history -- over 10 times larger than the Exxon Valdez spill.As you can see from this map, the spill traveled 600 miles to blanket the coast of Mexico, Texas, and Louisiana causing tremendous damage.I think we all remember that on March 24, 1989, the tanker Exxon Valdez, ran aground in Prince William Sound, Alaska.  The oil tanker ruptured and spilled over 10 million gallons of oil. The result was an oil spill over 600 miles wide that created one of the largest environmental disasters in history.I am about to show images of the devastation following this spill and I would ask that if there are children watching or those sensitive to the plight of animals, they should probably look away from these horrific images.The Exxon Valdez coated the Alaskan shoreline, turning a pristine environment into a toxic waste clean up site.  Over 11,000 people worked to try clean oil washed up on shore, but even today there is estimated to still be over 20,000 gallons of oil on Alaska's sandy beaches.The spill killed thousands of animals immediately. It killed hundreds of otters and seals, as many as half a million seabirds, and over 200 of the very symbol of America itself: the bald eagle.Anyone who saw the devastating images from this incident cannot forget them.  What is important to remember from these disturbing images is that if we open up the East and West Coasts to drilling the same thing could happen to places here in the lower 48.My colleagues from the Commonwealth of Virginia want to open the coast of Virginia to drilling.  They seem to think that oil drilling in Virginia waters will only affect the state of Virginia.  But oil spills do not sit still.Remember that oil drilling spill in the Gulf that travelled 600 miles, and the Exxon Valdez spill off the coast of Alaska was over 600 miles wide.  So what would a similar spill look like on the East Coast?It would mean a devastated coast line from New York down to South Carolina.  The environmental impact would be immeasurable and the economic impact would be enormous.The New Jersey Shore is a priceless treasure my home state will protect at any cost, but the Shore also generates tens of billions of dollars in revenues each year and supports almost half a million jobs. In South Carolina, Myrtle Beach alone brought in $3 billion in revenue. Do we really want oil washing up onto Virginia Beach? Flowing up into the Chesapeake Bay?  Can Maryland's famous blue crabs survive such an environmental assault?It is time for a real cure based on a tough examination and reordering of our energy priorities - and not the tired old policies of the past.I ask that my colleagues on the other side of the aisle end their efforts to block real reform.It is time we unite together to pass the Consumer First Energy Act to clamp down on excess speculation and finally burst this oil bubble.It is time we come together and pass the Renewable Energy Tax extensions bill that will promote the development of clean energy here at home, help our automakers develop cars that run on electricity, and develop advanced biofuels so we have a sustainable alternative to gasoline.The American people are sick and tired of an energy policy written by Big Oil. It is time for my friends on the other side of the aisle to join us in real reform or get out of the way.Thank you.                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b72b8944-9ccb-4f4a-ab53-ebf325d1dbdb,\"MAJOR INVESTMENT IN VETERANS, ECONOMY AND HEALTH CARE PASSES CONGRESS; SEN. MENENDEZ VOTES IN FAVOR\n                    \n                            Supplemental appropriations bill includes landmark new GI bill and extension of unemployment insurance\n                    \n                      June 27, 2008\n                     WASHINGTON - Last night, the U.S. Senate gave final approval to supplemental appropriations for major domestic issues, including a new G.I. bill for Iraq and Afghanistan war veterans, Medicaid health care protections and an extension to unemployment insurance that is badly needed in the sluggish economy.U.S. Senator Robert Menendez (D-NJ) has been a strong supporter of these priorities and voted in favor of the legislation.\"\"These investments in American families and veterans have been a priority for this Congress in these tough economic times,\"\" said Senator Menendez. \"\"Our troops who are returning from their service in Iraq or Afghanistan deserve for their government to make the same type of commitment to them that they have made to their country. That is how a grateful nation honors its heroes. The least we can do is guarantee higher education to those who want it, especially in this tough job market.\"\"As layoffs increase in this sluggish economy, the extension of unemployment insurance will help struggling families stay afloat as they look for new work. And with health care unaffordable for many of our seniors, families and citizens with disabilities, it's important that we prevent proposed rollbacks in their Medicaid coverage.\"\"Though this bill is important, it does not encompass everything in the Senate's original version, and there is work left to be done. We need to bolster the low-income heating assistance program, which will is vital with rising energy prices. We also need to boost the Byrne public safety grants for law enforcement, which I worked to accomplish in the original version.\"\"Provisions included in the supplemental appropriations bill:• Veterans education: expansion of GI Bill benefits for service members who have served on active duty since Sept. 11, 2001.• Unemployment insurance: extension of federal unemployment benefits by up to 13 weeks for workers who have exhausted their current benefits.• Medicaid: moratorium on six Medicaid regulations that would narrow some services to seniors, families and people with disabilities, and that would cut payments to providers.• Disaster aid: $5.8 billion to strengthen New Orleans levees and $2.7 billion for relief from floods and tornadoes in the Midwest.• Military construction, veterans' health: funding for military construction, veterans' hospitals and military hospitals.• Other domestic programs: $1 billion in unrequested funds for the Food and Drug Administration, Federal Bureau of Prisons, census overruns and other programs.• Merida Initiative:  $465 million to combat organized crime, drug trafficking, violence, judicial reform, institution-building, and rule of law in Mexico and Central America.                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cab6795c-b0c1-4c41-ac06-30cfea69ffdb,\"LEAD IN ARTIFICIAL TURF: SEN. MENENDEZ ASKS THE CONSUMER PRODUCT SAFETY COMMISSION TO TAKE ACTION\n                    \n                            High levels of lead reported in New Jersey sports fields concern families, potentially harm children\n                    \n                      June 26, 2008\n                     Washington - In response to reports of high levels of lead in a growing number of New Jersey sports fields, U.S. Senator Robert Menendez has written a letter to the Consumer Product Safety Commission, asking Commissioner Thomas Moore to expand his investigation into the source of the lead, and issue consumer guidance to avoid potential hazard.  The New Jersey Department of Health and Senior Services discovered high amounts of lead in artificial turf installed in athletic fields in Newark, Ewing, and Hoboken, prompting the Centers for Disease Control and local officials to take action.  All three fields have since been replaced, but more needs to be done to ensure children are not unwittingly exposed to unhealthy levels of lead.\"\"It is our job to protect children and make sure they grow up to achieve their full potential, and their health is issue number one,\"\" said Sen. Menendez. \"\"Elevated levels of lead can cause learning disabilities and developmental problems. The CDC has taken action, but we need the federal government to do everything it can to protect children and families here in New Jersey and across the nation and to make sure they are well informed of potential dangers. I am asking Commissioner Moore to make this situation a top priority and give parents the information they need to make sure their children are safe.\"\"Sen. Menendez is encouraging The Consumer Product Safety Commission to look into issuing recommendations that will teach parents the precautions they can take to protect their children. PDF of letter to Commissioner Moore: http://menendez.senate.gov/pdf/062608-CSPCArtificialTurf.pdfText of letter to Commissioner Moore:June 26, 2008Thomas MooreCommissionerConsumer Product Safety Commission4330 East West HighwayBethesda, MD 20814Dear Commissioner Moore:I am writing to express my concern about reports from my home state of New Jersey regarding the high levels of lead in artificial turf.  Families are understandably concerned, but also confused by the news.  I encourage you to expand your investigation into this source of lead contamination and immediately issue consumer guidance on this matter to answer the growing frenzy of questions raised by these reports.  As you already know, the State of New Jersey discovered high amounts of lead in artificial turf on athletic fields.  Specifically, New Jersey health officials discovered elevated lead levels on a Newark playing field while investigating possible contamination from another source.  Due to the state officials' efforts, high levels were also found in fields in Hoboken and Ewing, New Jersey.  As a result, local officials have replaced all three fields.This discovery in New Jersey caused the Centers for Disease Control and Prevention (CDC) to recommend lead testing for artificial turf athletic fields containing worn or faded turf blades made of nylon or nylon-blend fibers and nylon fields with visible dust.  The tests conducted by the New Jersey Department of Health and Senior Services (DHSS) found a limited number of artificial turf samples contained elevated lead levels in products that contain nylon fibers.  After further laboratory testing, DHSS recently confirmed that these fibers dissolved under conditions similar to the human digestive process and could be absorbed by the human body.Elevated levels of lead in children can result in learning disabilities, reduced cognitive functioning, or other developmental problems.  Therefore, lead contamination in an environment frequented by children is of deep concern to me.I encourage you to carefully consider the recommendations of New Jersey state officials on this issue. New Jersey is to be commended for discovering the issue and bringing it to your attention, but this is clearly a national problem that warrants further investigation and guidance by your agency.  The CPSC should continue to investigate artificial turf, including a comprehensive study of fields throughout the country comparing all manufacturers and ages of fields.  The potential exposure of children to lead is too dangerous to ignore and warrants immediate action. In addition, guidance is needed to help families understand any risk of exposure and what actions they can do to protect themselves and their children.  Your agency is tasked by law with assisting consumers in evaluating the comparative safety of consumer products and your leadership on this issue is vital.  Should access to aging fields or all fields be limited? Can field owners perform some type of maintenance to reduce exposure?  What are the steps your agency is taking to require that manufacturers remove lead content from their product?Action is needed to protect the people of New Jersey and nationwide.  Thank you for your attention to this issue and I look forward to your response.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=131810f6-f9d3-4de1-8edb-ffa2a8e4796d,\"REPUBLICAN OIL PLAN: \"\"WHERE'S THE TIME MACHINE?\"\" ASKS SEN. MENENDEZ\n                    \n                            Member of the Energy and Natural Resources Committee is author of bill to permanently ban drilling up and down U.S. coastlines\n                    \n                      June 26, 2008\n                     WASHINGTON - This morning, Senate Republicans unveiled legislation that makes opening up the East and West coasts for drilling the centerpiece of their plan to solve America's energy problems.U.S. Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee and the author of the COAST Act to permanently ban drilling in the Outer Continental Shelf (OCS), released the following statement:\"\"Unfortunately, this absurd plan doesn't include a time machine that can take us to the year 2017 - the year coastline drilling will finally produce its first drop of oil. This isn't a gas price reduction bill, it's a oil dependence escalation bill. This plan is about helping Big Oil, not American drivers - that is probably why people are starting to say ‘GOP' stands for ‘Grand Oil Party.'\"\"A drill, drill, drill plan will give no relief to American families at the pump, now or ever.  It will take a decade to produce any oil, and even at full production in 2030, coastline oil production would lower gas prices only a few cents a gallon. Instead of bending over backward for oil companies, we should be pushing them to utilize the 68 million acres of unused land already leased to them by the government and American taxpayers. Right now oil companies have access to over 100 billion barrels of oil - it is time they put their $600 billion in profits to work and start producing what they have instead of looking for more handouts.\"\"On oil speculation provision:\"\"It is interesting to see that the GOP plan finally includes a provision to address oil speculation - unfortunately, it's more window dressing than anything. Their speculation provision is hopelessly weak, and there have been no signals that the Republican Party will stop blocking several strong Democratic proposals that will actually clamp down on speculation. They are exploiting high gas prices to attempt to help Big Oil, and at the same time, they are protecting Wall Street Fat Cats instead of addressing the real problem.On battery technology provision:\"\"I was also surprised to see an anemic provision on battery technology.  We do not need a loan program for plug-in hybrids, what we need is a tax credit so consumers can buy commercially-available plug-in cars when they are introduced in 2010. Unfortunately, the Republican Party refuses to let us pass the Renewable Energy Tax Extender package, which contains these important incentives for plug-in hybrids.\"\"Republicans Misleading America About OilGOP Claim:  Opening up the East and West Coasts to oil drilling will reduce oil and gas prices.Fact: American Drivers Want Help Now- Not in 2030.  No oil from the GOP plan will be produced until 2017 and it will be 2030 before full production will come on line.  The East and almost all of the West Coast has no oil drilling infrastructure- no oil rigs, no pipelines to the shore, and no refineries at the end of those pipelines.  [EIA, http://www.eia.doe.gov/oiaf/aeo/otheranalysis/ongr.html]GOP Claim: U.S. oil companies are being blocked from producing more oil domestically.Fact: Oil Companies Have Lands to Drill On. Oil companies have 68 million acres of leases that are not producing any oil. [House Natural Resources Committee, http://resourcescommittee.house.gov/images/stories/Documents/truth_about_americas_energy.pdf]Fact: Oil Companies Have Access to 100 Billion Barrels of Oil.  Oil companies have access to 100 billion barrels of conventional oil under federal lands and waters that are not under any moratoria and are being leased or are available for leasing.  [House Natural Resources Committee]Fact:  Oil Companies are Producing at Full Tilt Already. More lands will not increase production.  \"\"Every single available drilling rig, drill ship is in use - being used right now. You can't go and drill when you don't have equipment. We are not magicians as an industry.\"\" [Red Cavaney, President & CEO, American Petroleum Institute, on This Week with George Stephanopoulos. Sunday, June 23, 2008]GOP claim: 14 Billion Barrels from the Atlantic and Pacific OCS amounts to more than all US imports from Persian Gulf countries over the last 15 Years.Fact:  GOP Drilling Plan < 2 Year Supply.  14 billion barrels amounts to less than 2 years supply of oil for the U.S. and the simple fact is that most US oil imports come from North America, South America , and Africa  - not the Middle East. [DOE, http://tonto.eia.doe.gov/dnav/pet/pet_move_impcus_a2_nus_epc0_im0_mbblpd_a.htm]Fact:  GOP Drilling Plan Realistically < Half Year Supply.  No state on the West Coast will ever allow drilling, and since the Gulf Coast is excluded from the plan, the GOP is banking on the East Coast for production.  According to the EIA, the East Coast OCS contains only 3.82 billion barrels of oil.  About a half year of supply for the U.S. or 1/8th of the oil the world consumes in a year. [EIA, http://www.eia.doe.gov/oiaf/aeo/otheranalysis/ongr.html]GOP Claim:  Drilling off the coast of one state will not affect neighboring states.Fact: Oil Does Not Sit Still - New Jersey is Within Reach.  The Exxon Valdez or the IXTOC I oil drilling spill would have coated the East Coast - from New York to South Carolina if either accident had happened off the coast of Virginia.  [IXTOC I: http://www.incidentnews.gov/incident/6250/ ; Exxon Valdez: http://www.conservationgiscenter.org/maps/html/exxon_spill.html]\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cf81dd57-210d-404f-a162-358085eb50d7,\"SENATE FOREIGN RELATIONS COMMITTEE APPROVES INNOVATIVE, BIPARTISAN LATIN AMERICA DEVELOPMENT LEGISLATION\n                    \n                            Menendez Social Investment and Economic Development for the Americas Act has bipartisan, high-level support; Legislation aims to strengthen, secure U.S. through a more stable, more prosperous region\n                    \n                      June 24, 2008\n                     WASHINGTON - Today, the Senate Foreign Relations Committee considered and unanimously approved innovative, bipartisan Latin America development legislation championed by Sen. Robert Menendez (D-NJ) and co-sponsored by Sen. Mel Martinez (R-FL). The 10-year, $2.5 billion legislation goes beyond traditional development assistance to foreign countries by requiring contributions from recipient nations and encouraging partnerships with the private sector.Senator Menendez said: \"\"This initiative aims to make the United States safer, stronger and more prosperous by making our hemisphere more stable and more affluent. Our lack of engagement in Latin America has created a vacuum that has allowed some to sell an anti-American agenda which simply has no place in the region. This type of commitment to the development of Latin American nations and their institutions helps fill that vacuum and make our nation more secure. A strong social and economic backbone is a foundation upon which democracies can prosper - this will enable stable communities and a stable region.\"\"\"\"This bill will help build institutions, stabilize economies, reduce poverty, expand the middle class, and invest in key development areas, such as rule-of-law, competitiveness, governance, and judicial and regulatory reform in Latin America and the Caribbean.  It will help expand markets for U.S. businesses and the goods and services they offer.  Promoting the success of Latin America is a strategic investment for the United States, not only because it represents a good-neighbor policy, but also because it is good business. We are proud of the broad, bipartisan support we received in the committee and look forward to bringing this bill to the Senate floor.\"\"Senator Martinez said: \"\"This demonstrates a long-term U.S. commitment to the people of our hemisphere. It will further develop and promote cooperative relationships with friendly countries to ensure we continue economic development and the growth and promotion of democratic institutions. We must work in a bipartisan manner to avoid any negative influence of nations that seek to increase false democracies and prop up existing dictatorships. This is an important effort that will fund programs to improve education, reduce poverty, promote better healthcare, and provide improved housing. I commend members of the committee for approving this bill and urge Senate leadership to bring the bill to the full Senate for consideration.\"\"Overview of legislation• Authorizes $2.5 billion over ten years for Latin American and Caribbean counties.• Maximizes U.S. dollars by building a close partnership with the Inter-American Development Bank (IDB) to help strengthen the investment climate, educate the workforce, and build-up small and medium enterprises.• Builds in rigorous evaluation and oversight to ensure taxpayer money is well-spent. • Limits administrative costs to ensure efficient use of taxpayer's dollars. • Reduces the exclusion of marginalized groups, including indigenous, women, rural and urban poor, people of African descent, and people with disabilities.Innovative Approach• Multiplies the impact of U.S. investment by leveraging additional donor support to supplement U.S. funds through the creation of a matching fund for the private sector and member countries of Inter-American Development Bank. • Requires the recipient country to take responsibility for their projects through a 10 percent contribution.• Compliments the work of the Millennium Challenge Corporation by working with countries to improve their indicators in the area of investing in people. • Supports the national interests and security interests of the United States by reducing instability in the region, improving economies, and creating a greater market for U.S. goods.                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=32f7e628-c324-49fc-bf2f-84d8915fc33a,\"VIRTUALLY NO STRINGS ATTACHED TO MILITARY MONEY FOR PAKISTAN, ACCORDING TO NEW GOVERNMENT REPORT UNVEILED BY SENS. MENENDEZ AND HARKIN\n                    \n                            GAO recommends increased oversight and accountability for the billions the U.S. sends to Pakistan to help fight terrorism\n                    \n                      June 24, 2008\n                     WASHINGTON - Today, the independent Government Accountability Office released a report showing that while the United States government has been spending billions of dollars to reimburse Pakistan for its military efforts against extremists, in many cases the U.S. has failed to verify the actual use of the funds. (The report is available here: http://www.gao.gov/new.items/d08806.pdf ) The GAO says that not only are the Department of Defense's oversight measures deficient, but the Pentagon often fails to meet those deficient standards for oversight. U.S. Senators Robert Menendez (D-NJ), a member of the Foreign Relations Committee, and Tom Harkin (D-IA), a senior member of the Appropriations Committee, helped request and unveil this report, which focuses on the $5.56 billion in Coalition Support Funds (CSF) sent to Pakistan since 9/11.Senator Menendez said: \"\"Apparently, the Bush administration cares so little about the hunt for Osama bin Laden that it is barely paying attention to how the Pakistani military is carrying out the fight. It's dangerous to treat the battle against al Qaeda so casually, and it's unfair to American taxpayers to be so careless with billions of their dollars. As we close in on seven years since 9/11, our number one enemy is operating in a safe zone. It's clear that the effort in Pakistan has failed to meet its goals and that the GAO's recommendations to implement additional accountability measures are well-warranted and long-overdue.\"\"Senator Harkin said: \"\"It seems as though the Pakistani military went on a spending spree with American taxpayers' wallets and no one bothered to investigate the charges. To this day we do not have proper verification for how our money was used.  How hard would it have been to confirm that a road we paid $15 million for was ever built? It is appalling that the Defense Department did not send any embassy officials working in Pakistan to verify these enormous costs. The result of their inaction is inexcusable.  With the latest national Intelligence Estimate showing that we are no safer today than we were before 9/11, now is the time for the Bush Administration to change course, stop pouring money into a black hole and focus on policies and programs that will keep Americans secure.\"\"Examples of questionable reimbursements to Pakistan include:• $200 million for Pakistan's air defense radar, even though it was unclear whether this was the type of reimbursement allowed under CSF guidelines,• $30 million for road construction and $15 million for bunker construction despite a lack of evidence that they had been built, and• $19,000 per vehicle per month for a fleet of fewer than 20 Pakistani Navy passenger vehicles, which included seemingly duplicate charges.The GAO's recommendations include:• Implementing the guidelines already in place to disallow Pakistani claims that lack verification,• Formally establishing the role of the Office of Defense Representative, Pakistan in the reimbursement process (not until the ODRP become involved 2006 did scrutiny of Pakistani claims seem to increase),• Working with the Pakistani government to allow the U.S. government greater scrutiny of reimbursement claims, and• Better evaluating currency exchange rate fluctuations to ensure that the U.S. is not overpaying.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e003d744-5619-42a8-9e3f-6b2d0f36a705,\"HISTORIC INITIATIVE TO REMOVE CONTAMINATION FROM PASSAIC RIVER LAUDED BY SEN. MENENDEZ AS CRUCIAL INITIAL STEP\n                    \n                            Menendez has worked to bring all parties to the table on this issue\n                    \n                      June 23, 2008\n                     Washington, D.C. - The Environmental Protection Agency today announced it has reached an agreement with several companies to remove a major source of Dioxin, an extremely toxic chemical, from New Jersey's Lower Passaic River. The initial step includes a limited cleanup of the river or approximately 40,000 cubic yards of the most highly-contaminated sediments. The cleanup initiative will be expanded to cover more areas of the river in the upcoming years.  In the U.S. Senate and House of Representatives, Senator Robert Menendez (D-NJ) worked for years to bring all parties to the table to come together to find a sensible solution to clean the river, and these efforts have finally come to fruition.  Senator Menendez, a member of the Senate Energy and Natural Resources Committee, made the following statement: \"\"This initiative has been a long time coming and this initial cleanup is a step in the right direction,\"\" said Sen. Menendez. \"\"Our residents deserve a clean and restored Passaic River and a more environmentally sound Garden State. Ultimately, cleaning our rivers helps protect the health and natural beauty of our state for future generations and it ensures a better quality of life for all New Jerseyans.\"\" Throughout his tenure in Congress, Menendez has made protecting clean water and air in New Jersey a major priority.  Recently, Sen. Menendez helped secure over $2.5 million in federal funds to clean and restore the Passaic River.  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=194c7de5-40c8-4538-9ad5-b594c4fe1413,\"LAUTENBERG, MENENDEZ INTRODUCE BILL TO IMPROVE SECURITY AT NATION'S 361 SEAPORTS\n                    \n                            N.J. SENS ACT AFTER BUSH ADMINISTRATION ADMITS IT WILL MISS DEADLINE TO SCREEN 100 PERCENT OF NATION'S CARGO\n                    \n                      June 23, 2008\n                      NEWARK, NJ - Today, Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) joined executives from the Port Authority of New York and New Jersey as they announced their introduction of a new bill to increase security at the nation's 361 ports.  Their bill comes after the Bush Administration admitted to Senator Lautenberg that it will miss a deadline to screen 100 percent of the nation's cargo for radiological and nuclear weapons.  Their bill would, for the first time, create minimum security standards for all containers entering the United States.\"\"It's been seven years since 9/11 and President Bush has still not secured our ports.  Port security is essential to protect our residents from terrorist attack, and if this Administration won't adequately protect us, we will,\"\" Senator Lautenberg said.  \"\"This bill would pick up where the Bush Administration is leaving off by setting minimum security standards for every container coming into our country and helping ensure port security grants are awarded based on risk.  I'm glad we could work with the Port Authority and the port community to help make our entire region safer.\"\"\"\"Because the stakes are so high and the margin of error is so low, we need to do everything in our power and spare no expense to keep our ports safe and prevent terrorists from destroying our commerce and disrupting our lives,\"\" said Senator Menendez.  \"\"This bill will fill critical gaps by enhancing and expanding our security efforts to bring even greater levels of scrutiny and accountability to port security.\"\"  Port Authority Chairman Tony Coscia said, \"\"Federal efforts to secure the nation's transportation systems have not treated the security threat at our nation's ports with due seriousness.  The Senators' bill, which builds on the recommendations of our Task Force, recognizes the critical importance of introducing uniform federal standards for all ports in the country.  We thank Senator Lautenberg and Senator Menendez for their leadership and urge passage of this legislation to secure the nation's 361 port facilities.\"\"Port Authority Executive Director Christopher O. Ward said, \"\"Our ports help drive our economy, which is why their safety and security must be a top priority.  I want to thank Senators Lautenberg and Menendez for their work on this legislation, as well as Senators Schumer, Clinton and the rest of our Congressional delegation for their efforts.  We will continue to work with our partners in Washington to ensure the safety and security of our ports and the economic benefits they provide.\"\"Port Authority First Deputy Executive Director Susan Bass Levin said, \"\"The ports are a critical lynchpin to our economy and we simply cannot afford to have any security incident impair the ports' ability to drive prosperity. We have to make the commitment at every level of government to ensuring the ports are protected and Senator Lautenberg and Senator Menendez's legislation does just that by requiring the federal government to strengthen and standardize port security procedures across the nation.\"\"The Senators' bill would require cargo be monitored from the moment it is packed into containers abroad until it reaches its destination in the United States.  Containers that do not meet the standards would be refused entry into the country.The bill also calls for: • Minimum security standards for essential port services such as supply and launch vessels, and bunker and fuel deliveries, which are largely unregulated. • Each of the nation's port regions to have a response and recovery plan in case of a major terrorist incident or emergency.  • The ability for law enforcement officials to confiscate a fraudulent or altered Transportation Workers Identification Credential (TWIC).• Creates new standards to more accurately determine port security risks and identify funding needs.  In 2006, Sen. Lautenberg wrote a law requiring all port security grants to be awarded based on risk.            A fact sheet on the bill is attached.The Senators' bill comes after a hearing last week in the Senate Commerce Subcommittee on Surface Transportation and Merchant Marine Infrastructure, Safety and Security, which Lautenberg chairs.  During the hearing, Bush Administration officials admitted they would be unable to meet a 2012 deadline to scan all containers coming into America's ports.The Senators' bill is also based on recommendations of a task force of government and business officials created by Chairman Coscia in 2006. The purpose of the task force was to foster public discussion of port security issues and to explore gaps in port and supply-chain security. The Port of New York and New Jersey is the largest port on the East Coast and the second-busiest container port in the country.  It supports approximately 230,000 jobs and is responsible for generating $20 billion in economic activity.                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b88170b3-87f9-4927-97be-6b74318d1abf,\"LAUTENBERG, MENENDEZ, PAYNE ANNOUNCE NEARLY $7 MILLION FOR IMPROVEMENTS AT NEWARK LIBERTY INTERNATIONAL AIRPORT\n                    \n                      June 20, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ), and Congressman Donald Payne (D-NJ-10) today announced that Newark Liberty International Airport will receive more than $6.95 million in federal funding to improve passenger safety and airport reliability by making security enhancements and rehabilitating several taxiways.  The grant will be awarded by the Federal Aviation Administration (FAA).\"\"This is another crucial step in keeping Newark airport as safe, modern and dependable as we can,\"\" said Sen. Lautenberg, a member of the Committee on Commerce, Science and Transportation.  \"\"Our airports are a vital part of our economy—and we need to modernize them so they can meet the future's travel and public safety demands.  These funds will help keep Newark Airport reliable and safe for the passengers and employees who depend on it.\"\"\"\"This is a time of extreme frustration with air travel, and we need resources like this to ensure passengers are safe and Newark works efficiently,\"\" said Sen. Menendez. \"\"These funds will help Newark airport further develop its infrastructure, better serve its passengers and, in turn, promote economic growth in the region. During these tough economic times and tough times for air travelers, this is one of many significant steps we need to take to promote an air traffic system that flows as safely and efficiently as possible for everyone.\"\"\"\"The awarding of this funding to make improvements at Newark Liberty International Airport is great news. By investing nearly $7 million for important upgrades, we are protecting the public safety while also enhancing the airport's status as a world-class hub serving local. national, and international travelers,\"\" said Congressman Payne.            In total, the airport will receive $6,954,072 as part of three separate grants.  Two of the grants will be used to improve the conditions of runway and taxiway pavement.  The third grants will be used to make security enhancements at the airport.            In 2007, Newark Liberty saw more than 36.3 million passengers, making it the tenth-busiest airport in the United States.  Combined with John F. Kennedy International Airport and LaGuardia Airport, the New Jersey/New York metropolitan area is the busiest airport system in the nation.Over the past month, Sens. Lautenberg and Menendez have announced more than $14.4 million for airports across New Jersey.                                                       # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7139351f-afab-477d-bceb-38a33dbf5981,\"HOUSE FAILS TO PROTECT CHILDREN'S HEALTH PROGRAMS IN SPENDING BILL, SEN. MENENDEZ CRITICIZES THE OMISSION\n                    \n                            Menendez has been one of the Senate's leading proponents for strong SCHIP support and a defender of NJ's FamilyCare program\n                    \n                      June 20, 2008\n                     WASHINGTON - Yesterday, the U.S. House of Representatives passed a supplemental appropriations bill that did not match the Senate's commitment to rejecting a Bush administration rule change jeopardizing state health insurance program coverage for thousands of children.U.S. Senator Robert Menendez (D-NJ), who has been one of the Senate's leading proponents for strong federal support of children's health insurance programs and has helped fend off legislation specifically targeting New Jersey's strong FamilyCare program, said today that he was disappointed with the House's failure to provide for a moratorium on the administration rule. Without such a moratorium, tens of thousands of children who have already been left uninsured because of the directive will continue to lose out on coverage, and over time, hundreds of thousands of additional children will not have the health coverage their state determined they need.\"\"With American families forced to spend more of their earnings on gas and food, now more than ever we need to make sure children who otherwise would have no health insurance are covered. It is sad that in a bill that sends millions upon millions more American taxpayer dollars to Iraq, the House couldn't include one little provision for the health of many thousands of children right here at home. I understand that the House wants to avoid a veto by President Bush and that there was a need to craft a bill that could pass, but seems to me that that ensuring health care for our nation's children would be a top priority.\"\"The Bush administration's cold-hearted rule simply ignores the reality families in high cost-of-living states are facing, particularly in this terrible economy. These are families who fall in the gap between Medicaid and increasingly-expensive private health insurance, and their children are left to suffer because of it. As we look forward, I will continue to stand up for these children, as will many of my colleagues. I know Senator Lautenberg, the New Jersey delegation and I will fight to keep New Jersey children covered.\"\"On August 17, 2007, the administration issued a directive prohibiting federal support for state health insurance for children whose families make more than 2.5 times the poverty limit. This rule, which included a one-year time limit for states to comply, affects children in states with high costs of living, like New Jersey. Senator Frank Lautenberg (D-NJ) was able to attach an amendment with a moratorium on the president's rule to the Senate-passed supplemental appropriations bill, but the House refused to include it in the current version.                                                           # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a2f8aa51-888e-4dc3-8a90-39126073003a,\"SENATE'S LEAD OPPONENT OF OFFSHORE DRILLING PANS BUSH-McCAIN PLAN TO OPEN UP THE U.S. COASTLINE\n                    \n                            Sen. Menendez is author of legislation to permanently ban drilling in OCS, has led numerous defeats of offshore drilling amendments over the past year\n                    \n                      June 18, 2008\n                     WASHINGTON - Today, President Bush called on Congress to lift a moratorium on drilling for oil and gas in the Outer Continental Shelf, off the East and West coasts of the U.S. This announcement dovetails with the drilling plan announced yesterday by Senator John McCain (R-AZ), the presumptive Republican presidential nominee.Senator Robert Menendez is the U.S. Senate's leading opponent of drilling in the OCS, having introduced the COAST Act to permanently ban drilling there (http://menendez.senate.gov/newsroom/record.cfm?id=268012) and having helped lead four defeats of OCS drilling amendments in the Senate over the past year (http://menendez.senate.gov/newsroom/record.cfm?id=297973&). He is also a lead sponsor of legislation to spur oil companies to utilize 68 million acres of unused land that has been leased to them (http://menendez.senate.gov/newsroom/record.cfm?id=299305&). Today, Senator Menendez blasted the Bush-McCain plan:\"\"As if John McCain wouldn't have a hard enough time selling the American people on this over-hyped plan, it now has the stamp of approval from a president who is an oil man and who has been wrong on just about every issue over eight years. Giving another handout to oil companies while they sit on 68 million acres of unused land leased to them by the American taxpayer is absurd. It's time that this government stopped bending over backward for oil companies and instead prodded them to get to work on the huge tracts of unused land already at their disposal.\"\"To hear George Bush and John McCain say it, you'd think gasoline is going to run straight out of the ground and right into your car. What they either don't want to tell the public or simply choose to ignore is that it will take at least a decade to see any production out of those areas, and even then it will just be a drop in the bucket. This is not a relief plan for American families, it's a relief plan for oil companies.\"\"Effect on New Jersey:\"\"This nonsensical, over-hyped plan could have a disastrous effect on the economy and environment of our state. The millions who will visit the Jersey Shore this summer and the thousands of businesses that thrive off of the tourism can tell you that an oil spill washing up on our beaches would be a disaster in many ways. Planting oil derricks and pipelines less than 100 miles from the Jersey Shore would have no effect on gas prices, would deepen our dependence on oil and would threaten the environment and economy of our state. That sounds like a lose-lose-lose-lose proposition.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1a3c952b-885e-4b8d-b1e5-2a7b0cc4b918,\"McCAIN'S DRILLING PLAN WON'T DELIVER, SAYS SEN. MENENDEZ\n                    \n                            Plan would fail to bring immediate relief, threaten the Jersey Shore\n                    \n                      June 18, 2008\n                     WASHINGTON - In Houston today, Senator John McCain, the presumptive Republican presidential nominee, delivered a speech in which he outlines an energy policy that includes opening up areas off the East and West coasts of the U.S. to drilling.Senator Robert Menendez (D-NJ), a member of the Senate Energy and Natural Resources Committee who has led the defeat of numerous proposals to open up the Outer Continental Shelf to drilling, released the following statement:\"\"It gives you a good sense of where Senator McCain is coming from when he decides to give a speech on energy and the environment in the oil capital of the United States. We have lived through eight years of Big Oil writing our energy policy, and we do not need four more years of it. The future is in a green economy, alternative fuels and energy efficiency, not in oil.\"\"On opening up the coastlines to drilling:\"\"When John McCain or George Bush talk about opening up our coastlines to drilling, they make it sound like gasoline is going to run straight out of the ground and right into your car. What they either don't want to tell the public or simply choose to ignore is that it will take at least a decade to see any production out of those areas, and even then it will just be a drop in the bucket. Why give the oil companies another handout when they are sitting on 68 million acres leased from the American people that they have yet to explore?\"\"Senator McCain implied today the United States has all the oil it needs right in its own back yard, which is complete nonsense. He talked of ‘proven oil reserves of at least 21 billion barrels.' The United States uses over 7 billion barrels per year.  This means he is touting a less than 3 year supply of oil as his long term solution to our oil crisis.\"\"For the state of New Jersey, the McCain-Bush drilling plan is even more questionable. We could see oil derricks sprout up less than 100 miles from our beaches - close enough for an oil spill to severely damage the environment and economy of the Jersey Shore.On McCain's energy rhetoric:\"\"I find it hard to believe that Senator McCain would say the federal government discourages offshore oil production when more than 80 percent of the oil that is off our shores is already open for production and oil companies own more than 30 million acres of leases in federal waters that they have not used. I find it hard to believe Senator McCain calls himself a supporter of renewable energy when last year he was the missing vote that could have broken a Republican filibuster to extend critical tax credits for wind and solar power. I find it hard to believe Senator McCain can say he is a strong supporter of clamping down on oil speculation when just last week the party he leads was the reason a bill to finally address speculation was blocked in the Senate. For eight years we've had a president who couldn't live up to his rhetoric on energy and the environment, and we can't afford four more years.\"\"\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4806b016-19b8-4b5f-b269-7cbf355041f1,\"DODD, DURBIN, MENENDEZ WORK TO COMBAT HIGH GAS PRICES\n                    \n                            Introduce Bill to Penalize Oil Companies for Failing to Utilize Available Energy Resources\n                    \n                      June 18, 2008\n                     WASHINGTON, D.C. - Senator Chris Dodd (D-CT), with Senators Dick Durbin (D-IL) and Bob Menendez (D-NJ), last week introduced legislation that will help lower gas prices by compelling big oil companies to begin utilizing the 68 million acres that they lease but thus far have not used to produce energy.  Representatives Edward Markey, Maurice Hinchey, Rahm Emanuel, and Nick Rahall announced companion legislation in the House of Representatives earlier this past week.      \"\"With 68 million acres already leased and unexplored, it is simply stunning that the oil and gas companies come hat in hand to the Congress, asking for tax breaks and preferential treatment to open new federal lands, such as the Arctic National Wildlife Refuge, to drilling,\"\" said Dodd, \"\"Instead of padding the coffers of oil executives while American families struggle with ever-rising gas prices, the time has come for Congress to tell these companies they can either ‘use it or lose it' when it comes to these leases.\"\"  \"\"Sixty eight million acres of federal land leased by oil and gas companies are not being used for the production of oil and gas. The Arctic National Wildlife Refuge only has 1.5 million acres of land,\"\" said Durbin.  \"\"If companies are going to lease this land and not use it, the cost of the annual lease should keep going up.  Before we open up one of our greatest treasures to drilling, let someone who will utilize the land lease it. I think that is reasonable.\"\"Senator Menendez said: \"\"As we are moving to develop renewable energy, create alternative fuels and boost energy efficiency, we want to push oil companies to do all they can to produce domestic oil and natural gas.  But Republicans want to lavish Big Oil with subsidies in a time of record breaking profits, while Democrats want to spur them into action.  Oil companies are sitting on 68 million acres they have already leased from the American people for the purpose of oil and natural gas production.  It is about time they use these resources already at their disposal instead of waiting for more federal hand outs and pushing to drill in the Arctic National Wildlife Refuge or up and down our coasts.\"\"The vast majority of oil and natural gas resources on federal land is already open for drilling and not being tapped.  Currently, oil companies are not producing oil or gas on 68 million of the more than 91 million acres of federal land under their control. This is in comparison with just 1.5 million acres in the Arctic National Wildlife Refuge that some would like to see opened for drilling.  Offshore, these companies are producing on only about 20 percent of the acres they hold, while onshore, they are producing on less than 30 percent of the acres held. Estimates indicate that these unused areas could produce an additional 4.8 million barrels of oil and 44.7 billion cubic feet of natural gas each day, nearly double current domestic oil production.  The Responsible Ownership of Public Land Act would charge oil companies a fee for every acre of land they lease but do not use for production.  This fee will escalate if the land remains unused over a period of several years.  The revenue from these fees would be devoted to the development of wind and solar energy, energy efficient buildings, advanced electric vehicles, and the Low Income Home Energy Assistance Program (LIHEAP).\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fc84b850-caf4-4cbf-a44d-b50d8120dab3,\"MENENDEZ, LAUTENBERG CALL FOR ACTION TO LOWER GAS PRICES\n                    \n                            Rep. Pascrell joined the Senators in discussing the effort in Congress to bring down artificially high prices, end dependence on oil\n                    \n                      June 16, 2008\n                     Paterson, NJ - Today, New Jersey's U.S. Senators, Robert Menendez and Frank Lautenberg, and Rep. Bill Pascrell (D-NJ8), spoke out about the need to implement the plan currently before the U.S. Senate that would address out-of-control gas prices. Both Senators are co-sponsors of the Consumer-First Energy Act, a bill to address the root causes of artificially-high gas prices, protect consumers from price gouging and force oil companies to change their ways. It was blocked by Republicans in the Senate last week, but Senators Menendez and Lautenberg and their colleagues remain hopeful that pressure stemming from the public's frustration over gas prices will help the bill's prospects in the near future. The New Jersey Senators also support additional legislation blocked by the Republicans last week that would spur development of renewable energy and help end the nation's dependence on oil in the long run.\"\"We have to ensure that our government is working for the families of this country, not for the oil companies and oil traders who have the power to push gas prices artificially high,\"\" said Senator Menendez. \"\"The dramatic increase in oil prices has brought prices for food up along with it, and families are facing a painful financial choice when it comes time to fill up - do they buy a gallon of gasoline or a gallon of milk? Some families have already eliminated non-essentials and many are now cutting back on meals. Some people are even contemplating quitting their jobs because they can't afford the gas to get there. We're confident that the continuing public outcry about artificially high prices will spur a reversal by those who have sided with Big Oil. We'll be keeping the pressure on for change, because we know that's the only way to take the pressure off of New Jersey families.\"\" \"\"President Bush has sat on his hands as oil prices have gone through the roof,\"\" said Senator Lautenberg.  \"\"We Democrats have had enough and we are pushing an aggressive plan to bring down gas prices.  The Republicans and the big oil companies are trying to block our efforts, but we will not give up this fight.  Families should not have to choose between filling their stomachs or filling their gas tanks.\"\"U.S. Senator Robert MenendezJune 16, 2008Page 2Congressman Bill Pascrell joined Sens. Menendez and Lautenberg to support the legislation: \"\"With record gas prices forcing working class families and small businesses to struggle, Congress has worked to provide short term relief and new energy opportunities for future generations of Americans,\"\" stated Rep. Bill Pascrell, Jr. (D-NJ-08).  \"\"Despite the progress we've made, much work remains.  I will continue demanding accountability from the OPEC nations, checking oil speculators who inflate prices and advocating for innovative mass transportation opportunities and more energy efficient fuel choices.\"\"When the Consumer-First Energy Act came to the Senate floor last week, Senate Republicans used a tactic to require 60 votes to proceed to a final vote. It did garner support from a majority of the Senate but did not reach the 60-vote mark. The Renewable Energy and Job Creation Act - a bill to free America from oil dependency by creating tax incentives for investment and helping individuals, property owners and businesses - met the same fate last week but is likely to be brought up again before the Senate tonight.The Consumer First Energy Act includes provisions to:• Protect families from price gouging by giving the administration authority to levy stiff penalties and expediting cases against oil companies before the Federal Trade Commission;• Ensure that oil companies raking in record profits pay their fair share with a tax on excessive profits, unless an they invest in renewable fuel, and by rolling back $17 billion in tax breaks to oil companies to be invested in consumer price protection, renewable fuels and energy efficiency;• Stop oil traders from inflating the price of oil by preventing them from evading American reporting requirements and increasing the authority of the Federal Trade Commission;• Stand up to price fixing among OPEC nations by giving the Attorney General additional authority.The Renewable Energy and Job Creation Act includes provisions to:• Create renewable energy incentives by providing almost $20 billion of tax incentives for investment in renewable energy related to energy production, transportation and domestic fuel security, and energy conservation and efficiency;•  Plug-in electric drive vehicle credit. To encourage further investments in advanced technology vehicles, H.R. 6049 would establish a new credit for each qualified plug-in electric drive vehicle placed in service during each taxable year by a taxpayer. The base amount of the credit is $3,000. U.S. Senator Robert MenendezJune 16, 2008Page 3• Allowance for property to produce cellulosic alcohol. Under current law, taxpayers are allowed to immediately write off 50 percent of the cost of facilities that produce cellulosic ethanol if such facilities are placed in service before January 1, 2013. To promote technology-neutral policies, H.R. 6049 would allow this write-off to be available for the production of other cellulosic biofuels in addition to cellulosic ethanol. • Biodiesel production tax credit and renewable diesel tax credit. To encourage the development and use of biodiesel and renewable diesel incentives, H.R. 6049 would extend the $1 per gallon production tax credits for biodiesel and the small biodiesel producer credit of 10 cents per gallon. The bill would also extend the $1 per gallon production tax credit for diesel fuel created from biomass.• Incentives for idling reduction units and advanced insulation for heavy trucks. Because idling of the main drive engine of heavy trucks consumes significant amounts of fuel, H.R. 6049 would provide an exemption from the heavy vehicle excise tax for the cost of idling reduction units. The bill would also exempt the installation of advanced insulation, which can reduce the need for energy consumption by transportation vehicles carrying refrigerated cargo. • Fringe benefit for bicycle commuters. Bicycle commuting achieves both goals of reducing fossil fuel reliance and encouraging conservation. H.R. 6049 would allow employers to provide employees who commute to work using a bicycle limited fringe benefits to offset the costs of such commuting. •  Alternative refueling stations tax credit. Widespread adoption of advanced technology and alternative-fuel vehicles is necessary to transform automotive transportation in the United States to be cleaner, more fuel efficient, and less reliant on petroleum fuels. H.R. 6049 would increase the 30 percent alternative refueling property credit (capped at $30,000) to 50 percent (capped at $50,000). The credit provides a tax credit to businesses (e.g., gas stations) that install alternative fuel pumps, such as fuel pumps that dispense E85 fuel.                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7f5d8602-46be-4ef0-9f7f-30900c4eb9fc,\"MENENDEZ REACTS TO NEW FUNDING FOR PLUG-IN HYBRID ELECTRIC VEHICLE PROJECTS\n                    \n                            Sen. Menendez commends Department of Energy for investing in energy efficient technology, expresses concern that commercialization goal is as late at 2016\n                    \n                      June 12, 2008\n                     WASHINGTON -Today, the U.S. Department of Energy (DOE) announced that they will award up to $30 million in funding over three years for three cost-shared Plug-in Hybrid Electric Vehicles (PHEVs) demonstration and development projects. PHEVs are generally hybrid vehicles that use electricity from the grid to power the vehicle and have a motor that runs on gasoline only to recharge the electric battery when needed. They are energy efficient, decrease the need for petroleum consumption by using electricity and ultimately are capable of traveling up to 40 miles without the use of any gasoline. The goal of the project is to make the PHEVs technology cost-competitive by 2014 and ready for commercialization by 2016. Sen. Menendez, a member of the Senate Energy and Natural Resources Committee, commended the approach but warned that the Administration is lacking a sense of urgency to break our addiction to oil.\"\"I commend the federal government for investing in plug-in hybrid technology, for which I have advocated, but I am dismayed that their goal for commercializing the technology is still as late as 2016. After all, some plug-in hybrid electric vehicles are already on the road and GM and Toyota are reportedly going to introduce more in 2010,\"\" said Sen. Menendez.  \"\"The administration lacks a sense of urgency on this issue, and it is critical that we help this technology flourish now so that our reliance on oil to fuel our cars can finally end. It is also unfortunate that my Republican colleagues in the Senate blocked a bill earlier this week that would have provided a $3000 tax credit for the purchase of these plug-in vehicles. The Republican ‘No' Machine has chosen to side with the oil companies instead of the public, but the American public knows that the future is in a green economy, alternative fuels and energy efficiency, not in oil.\"\"For more information on DOE's ongoing work to advance vehicle technologies, visit the Vehicle Technologies Program website.                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=618ac940-e277-43ff-90f5-debf923ed3c3,\"BILLS TO LOWER GAS PRICES, SPUR DEVELOPMENT OF RENEWABLE ENERGY BLOCKED IN U.S. SENATE; MENENDEZ REACTS\n                    \n                            Member of Energy and Natural Resources Committee was strong supporters of both bills\n                    \n                      June 10, 2008\n                     WASHINGTON - Today, separate pieces of legislation to take steps to lower gas prices in the near term and develop renewable energy in the long term were blocked by Republicans in the U.S. Senate. The Consumer First Energy Act and the Renewable Energy and Job Creation Act each garnered the support of a majority of the Senate, but a Republican tactic required 60 votes to proceed to a final vote on the bills, and neither reached that threshold.Senator Robert Menendez (D-NJ), a member of the Energy and Natural Resources Committee who strongly supported both bills, said that a golden opportunity was missed to help families struggling with the price of gas and to help end the dependence on oil.\"\"At $4 a gallon, gas prices are forcing American families into a painful choice when it comes time to fill-up - do they fill up their gas tank, or do they forego a gallon of gas to buy a gallon of milk?\"\" said Senator Menendez. \"\"Today we had the opportunity to target some of the practices that keep gas prices artificially high, but the Republican ‘No' Machine seems to want to protect oil companies at all costs - even when it comes at the expense of American families.\"\"As if the obstruction of legislation to bring relief to families wasn't enough, the obstruction of legislation to create jobs while helping ending our dependence on oil in the long run was just as disappointing. The future is in green jobs, renewable energy and energy efficiency, not in oil. When we proposed a renewable energy package earlier this year, our Republican colleagues objected to how the tax credits were funded. This bill addressed those concerns, and they still objected. It seems they are just opposed to renewable energy because they do not want increased competition for fossil fuels.\"\"The Consumer First Energy Act includes provisions to:• Protect families from price gouging by giving the administration authority to levy stiff penalties and expediting cases against oil companies before the Federal Trade Commission;• Ensure that oil companies raking in record profits pay their fair share with a tax on excessive profits, unless an they invest in renewable fuel, and by rolling back $17 billion in tax breaks to oil companies to be invested in consumer price protection, renewable fuels and energy efficiency;• Stop oil traders from inflating the price of oil by preventing them from evading American reporting requirements and increasing the authority of the Federal Trade Commission;• Stand up to price fixing among OPEC nations by giving the Attorney General additional authority.The Renewable Energy and Job Creation Act includes provisions to:• Create renewable energy incentives by providing almost $20 billion of tax incentives for investment in renewable energy related to energy production, transportation and domestic fuel security, and energy conservation and efficiency;• Extend $27 billion of expiring temporary tax provisions for individuals and businesses, including the research and development credit, special rules for active financing income, the state and local sales tax deduction, the deduction for out-of-pocket expenses for teachers, and the deduction for qualified tuition expenses; and • Provide additional tax relief for individuals and businesses, including almost $10 billion of additional tax relief for individuals through an expansion of the refundable child tax credit and a new standard deduction for property taxes.This morning, Senator Menendez delivered a speech on the Senate floor regarding gas prices and the Consumer First Energy Act. The full text of those remarks, as prepared for delivery, are below:M. President,Every day Americans are watching the price of oil and gas shoot up higher and higher, and are watching as it gets harder and harder to make ends meet.This week, the national average price of gasoline broke the $4 per gallon mark. When George Bush took office, gas cost just $1.46 a gallon. This dramatic increase in oil prices has brought prices for food up along with it, and American families are faced with a painful financial choice when it comes time to fill-up - do they fill up their gas tank or do they forego a gallon of gas to buy a gallon of milk? Businesses are cutting jobs. Families have already eliminated non-essentials and are now cutting back on meals. Some Americans are even contemplating quitting their jobs because they can't afford the gas to get there.  It's become painfully clear: we are in an oil crisis. And we'd better start taking action to get out of this mess.Fuel efficiency, alternative fuels, and mass transit are the long-term answers that I will soon discuss, but consumers need immediate help, and the Consumer-First Energy Act will provide that relief.The first thing the Democratic bill will do is make sure that our commodities markets are functioning fairly.  The supply and demand equation is roughly the same as it was 2 years ago and yet we have seen prices go through the roof.  We all remember the damage Enron did to our nation's economy by manipulating unregulated electricity markets. The Consumer-First Energy Act will make sure that oil is traded on well-regulated, transparent markets which are free from manipulation. It requires Commodities Futures Trading Commission oversight, sensible margin requirements, and standard participant disclosures.By making the oil futures market conform to usual standards and practices, we can combat excessive speculation and insure that the markets are free from manipulation.The Consumer-First Energy Act also makes sure that oil companies are not taking advantage of American consumers. The Bush energy policy was written by energy companies for energy companies. And while it has worked well for energy companies, it has completely failed the American public. The major oil companies made $124 billion in profits last year and will earn even higher profits this year.Are the oil companies using these enormous profits to give consumers a break at the pump?  No.  Are they using those profits to investment in new refineries or develop alternative fuels?  No.  Despite what my friends on the other side of the aisle might claim, Big Oil is not looking out for the American driver.  Big Oil is looking out for itself.And yet, despite the fact that Big Oil is doing all it can to reap record profits at the expense of our economy, Big Oil is in line to receive over $17 billion in tax breaks.The Consumer-First Energy Act will fix this problem and make sure that Big Oil is paying its fair share of taxes, and isn't profiteering at the expense of American consumers. It includes a windfall profits tax which would raise revenue to invest in sustainable, domestic sources of energy and to provide relief to consumers suffering under high energy prices.M. President, we must act now to provide immediate relief to American families.  But in addition to relief and protections included in the Consumer-First Energy Act, we also need to think about what we can do to reduce consumption and rein in costs in the long term.My friends on the other side of the aisle do not want to address this oil crisis.  Instead they want to exploit it to try to provide even more government help for their Big Oil supporters.  They tell their constituents that the answer to our oil addiction is to drill, drill, drill.  But feeding the addiction by tapping another vein just drills us into a deeper hole.The fact is that the world's largest remaining oil reserves are in the hands of foreign governments.  That means it is difficult if not impossible for us to control our supply of oil. But the one thing we can control is our demand. In the long term, we need to invest in alternative energy, mass transit, and increasing fuel efficiency.While we work to make alternative fuel technologies more affordable we need to drastically improve fuel economy. If we had increased fuel economy a modest 2% per year since 1981, our fleet would now average 34 miles per gallon. This alone would have cut our demand for oil by 30% while saving over 30 billion barrels of oil. 30 billion barrels of oil. According to the Energy Information Agency that is more than the proven oil reserves remaining in the United States. It's commendable that we finally raised CAFE standards this year, but we're going to have to make our vehicles a lot more efficient to make up for lost time.We also need tax incentives for hybrids and plug-in hybrids, and need to support advanced battery research. Once our transportation infrastructure can run on alternative fuels like electricity or cellulosic ethanol, consumers will finally have a choice. We will be able to choose not to buy oil, and that will force gas prices back to earth.And the last, but perhaps most important, long term solution to our current oil crisis is an immediate and substantial investment in mass transit.   More people are taking commuter trains, buses, and even ferries now than in the past 50 years.  For millions, having the option to use these alternative transportation modes has been essential to getting to work affordably.  It is time we finally funded mass transit at the level it deserves.M. President, it is time for a real cure, not the tired old policies of the past. This bill gives the American people what they need right now to get through the immediate problem, and starts us down the path to real, effective and sustainable long-term solutions to our energy crisis. I hope our energy security and our economic health is something we can eventually all agree on, and that we can deliver the bipartisan solution that American needs.                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5f06b22d-eca3-4df1-82aa-734d0e576330,\"El Senador Robert Men?ndez (D-NJ) Emitir? el Mensaje Dem?crata por Radio en Espa?ol\n                    \n                      June 7, 2008\n                     Washington, D.C. - El Senador Robert Menéndez (D-NJ) emitirá el Mensaje Demócrata por Radio en Español este sábado, 7 de junio de 2008. Adjunto el texto en español y la traducción al inglés de su difusión.Senator Menéndez will talk about how our ailing economy is having a disproportionate impact on Latinos, as well as highlighting some of the initiatives Senate Democrats are fighting for to strengthen our economy, reduce gas prices, and create good paying jobs here at home, while protecting the environment.El Senador Menéndez hablará sobre cómo nuestra economía maltrecha está teniendo un impacto desproporcionado en los latinos, al igual que subrayará algunas de las iniciativas que los demócratas del Senado están impulsando para fortalecer nuestra economía, reducir los precios de la gasolina y crear empleos que paguen bien aquí en casa, a la vez de proteger al medio ambiente.El audio para la difusión del Senador Robert Menéndez puede ser obtenido a través de su afiliada local de Univisión Radio, Radio Fórmula, Radiovisa, Radio Bilingüe, Latino Broadcasting Corporation, BBC en Español, CNN en Español, W Radio, Radio Caracol u otras estaciones locales, luego de las 11:06 a.m. hora este el sábado, 7 de junio de 2008.El audio embargado también puede ser obtenido a través de la siguiente página: http://demradio.senate.gov/actualities/hispanic/menendez080606.mp3 en formato MP3* * *Mensaje Demócrata por RadioSenador Robert Menéndez Fecha de difusión: sábado, 7 de junio de 2008Buenos días.  Les habla el Senador Robert Menéndez de Nueva Jersey.Un informe revelado esta semana encontró que los latinos a través de la nación han sufrido un impacto fuerte en nuestra decaída económica.  Esto no es una sorpresa.  Cada vez que salimos de nuestro hogar observamos cómo aumenta dramáticamente el precio de la gasolina, cómo aumentan los letreros de embargos de propiedad y cómo aumenta el precio de la comida en el supermercado.  Todo esto ocurre mientras la tasa de desempleo para los latinos aumentó a un doloroso 6.9 por ciento.Este aumento agudo en el desempleo de los hispanos, el patrón de empeoramiento en el mercado de vivienda y los precios de gasolina en rápido crecimiento son sólo algunas de las tendencias que están haciéndole un daño particular a los latinos.  Y las cifras son asombrosas.  El informe del Pew Hispanic Center explica que los hispanos perdieron casi 250,000 empleos este año por causa de la recesión en la construcción.  Y como si esto fuera poco, el promedio nacional del precio de la gasolina se está acercando a los $4 por galón, y se espera que pronto se vaya mucho más por encima de eso.  Desafortunadamente, esos números reflejan una tendencia negativa más amplia en nuestra economía, que ha empeorado por las políticas públicas desastrosas de la Administración de Bush y los republicanos del Congreso. Mientras que los republicanos insisten en sus juegos políticos y sus tácticas obstruccionistas que ya le han costado tanto al país, los demócratas estamos luchando para cambiar el desastre económico y traer el ‘Sueño Americano' nuevamente a tu alcance y al de tu familia. Los demócratas del Senado recientemente aprobamos el Proyecto de Ley de Prevención de Embargos de Propiedad. Esta iniciativa ayudaría a las familias en riesgo de perder sus hogares, proveería incentivos para las personas que quieran comprar un hogar y fortalecería las comunidades devastadas por las ejecuciones hipotecarias. En mi estado de Nueva Jersey, casi 450,000 residentes pudieran beneficiarse de una medida que yo impulsé para incluir un crédito federal de impuestos de propiedad.Sin embargo este proyecto de ley es sólo el primer paso para acabar la crisis de vivienda. También seguiremos impulsando otras propuestas para mejorar nuestra economía debilitada. Por eso es que los demócratas del Senado estamos promoviendo nuestro Proyecto de Ley de Energía que Pone al Consumidor Primero. Este proyecto iría a la raíz del problema de los precios altos de gasolina y se aseguraría que las grandes compañías de petróleo tomen responsabilidad. Entre otras cosas, esta iniciativa irá lejos en parar la manipulación de los precios de gasolina y forzará a las petroleras a invertir en energía renovable o pagar una multa por rehusarse a hacerlo.Esta semana también presentamos nuestro Proyecto de Ley de Seguridad Climática que crearía millones de empleos en industrias ‘verdes,' mientras protegemos nuestro medio ambiente. Lamentablemente, los republicanos del Senado prefirieron defender los grandes intereses económicos en vez del interés público.Los números no mienten.  Las familias latinas están luchando - especialmente la clase trabajadora de nuestra comunidad, que por tanto tiempo ha sido la columna vertebral de nuestras industrias de construcción y vivienda.  Los demócratas estamos luchando para revertir esta tendencia desalentadora.  A diferencia de los cuentos color de rosa que pintan los republicanos de Bush y McCain, los demócratas no solamente reconocemos la realidad difícil, sino que también estamos luchando por soluciones reales que fortalezcan  nuestra economía y que te ayuden a ti y a tu familia.Les habló el Senador Robert Menéndez de New Jersey. Gracias por tu atención.                                                           ***\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=49c77785-9ba1-42ae-b1d2-66c07a159b07,\"CLIMATE CHANGE BILL BLOCKED BY REPUBLICAN \"\"NO\"\" MACHINE; SEN. MENENDEZ SAYS ENVIRONMENTAL, ECONOMIC OPPORTUNITY MISSED\n                    \n                            Menendez says bill would have been a first step toward the type of action needed to address climate crisis\n                    \n                      June 6, 2008\n                     WASHINGTON - This morning, legislation to address climate change was blocked from proceeding to a final vote in the U.S. Senate. The bill actually garnered a 48-36 vote in favor of proceeding, but Republicans had used a procedural tactic to require 60 votes. The bill would have helped reduce carbon emissions and invested in green technology.Senator Robert Menendez (D-NJ) is a member of the Senate Energy and Natural Resources Committee and Chairman of the Senate Foreign Relations subcommittee in charge of international environmental agreements and has championed legislation on energy efficiency and international efforts to address climate change. Today, he expressed his disappointment at the obstruction of this climate change legislation and hopes for even stronger legislation in the future:\"\"The Republican 'No' Machine has reared its head again, this time resisting an important first step toward saving our planet in peril. By saying ‘No,' they have prevented our nation from reducing the emissions that have caused the climate crisis and from investing in green technologies that can create jobs and spur the economy.\"\"This bill certainly was not perfect, and there are a number of senators who are hoping for future legislation that goes further in reducing emissions, supporting renewable energy and helping developing nations deal with climate change. But every major movement starts with a first step, and that's what this bill represented.\"\"The only silver lining was that a strong majority of the Senate is now on record as supportive of significant and immediate action on global warming - 48 senators who voted in favor and six others who were absent, but sent letters signaling their support. The number of holdouts who are stuck in the past or who deny climate change altogether is dwindling. The need to act on global warming is immediate, and the sooner these obstructionists commit to saving our planet, the sooner we can help the environment and build a productive, green economy.\"\"                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=69ab4efa-4ffb-4aa5-9cb7-306d2ded22d8,\"Legislation Would Improve Alzheimer's Research, Increase Support for Patients' Families\n                    \n                            As Hispanic community faces disproportionate rise in incidence of Alzheimer's, Sen. Menendez and Rep. Linda Sanchez sponsor bicameral legislation\n                    \n                      June 6, 2008\n                     WASHINGTON, D.C.— U.S. Robert Menendez (D-NJ) and Rep. Linda T. Sánchez (CA-39) yesterday introduced the Cure and Understanding through Research for Alzheimer's (La CURA) Act of 2008 to increase funding for the National Institutes of Health (NIH) and the Centers for Disease Control and Prevention (CDC) to conduct adequate Alzheimer's research, outreach, and education.  Every 71 seconds, someone develops Alzheimer's disease, and by midcentury, someone will develop this disease every 33 seconds. This is important for all communities throughout the United States, but particularly for Hispanics, who, given long life spans and increasing growth within the American population, are projected to experience a six-fold increase of Alzheimer cases by 2050.\n\n\"\"Every day, Latinos struggle disproportionately with chronic health conditions like Alzheimer's, and our legislation ensures that Hispanics are provided the support they need and are encouraged to participate in clinical research to promote better care,\"\" said Sen. Menendez (D-NJ).  \"\"We have to increase awareness, support and outreach for those confronted with Alzheimer's disease and for their families so that they are aware and equipped to face this disease.\"\" \"\"This bill is near and dear to my heart because I have a family member who suffers from Alzheimer's,\"\" Congresswoman Linda Sánchez said. \"\"Alzheimer's is a heart-breaking disease that affects the entire family. We must do more to support families coping with Alzheimer's as well as Alzheimer's patients themselves.  That means we need more education and outreach, especially in the Hispanic community where this disease is going to hit especially hard.\"\"\n\nLa CURA will authorize increased funding to conduct adequate Alzheimer's research, outreach, and education.  The legislation helps expand the National Institutes of Health (NIH) and the Centers for Disease Control and Prevention (CDC) Alzheimer's education and outreach activities in all communities, including those with cultural concerns about participation in sensitive research like the collection of brain tissue and genetic information.  La CURA will address deficiencies in research participation by encouraging increased Hispanic participation in NIH clinical trials and epidemiological studies, promoting identification of culturally competent care, and addressing delays in diagnosis and underutilization of services by Hispanic patients.\nThis legislation has been endorsed by the Alzheimer's Association, the National Council of La Raza, the National Hispanic Council on Aging and the League of United Latin American Citizens.\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=428c00a6-06f7-49d0-8b9b-3868a2e49351,\"During Debate of Climate Change Bill, Sen. Menendez Expresses Disappointment with Republican Obstruction, Hopes for a Stronger Bill\n                    \n                            Menendez was prepared to offer several amendments, Republican tactics prevented any from being considered\n                    \n                      June 5, 2008\n                     WASHINGTON - As the U.S. Senate debates legislation to address the climate change crisis, Senator Robert Menendez (D-NJ) took to the Senate floor today to signal his strong support for immediate action to address climate change and to express his deep disappointment with Republican tactics that delayed consideration of the bill and obstructed amendments. While supportive of the bill, Senator Menendez also expressed his hopes that the bill would be made stronger.\nSenator Menendez on the need for a climate change bill:\n\n\"\"It's not enough to sit back and watch as tragic stories unfold, as heat waves and wildfires strike, as we see floods and droughts, more severe hurricanes, species disappearing, ice caps melting, glaciers melting, sea levels rising. It's not enough to sit back and watch, because we have a human, moral imperative to take action. And it's not enough because someday, the door that tragedy knocks on could be our own.\n\"\"Great change always has its opponents. Instead of arguing that we should be innovative, they'll argue that we should be afraid—that we should do all we can to hold on to the ways of the past instead of having the courage to prepare for the future.\"\"\n\n Senator Menendez on Republican obstruction and delay of the bill:\n\n\"\"Many of my colleagues on the Republican side of the aisle are rejecting any efforts we might propose, out of hand. They argue that almost anything would cost too much; they suggest that any effort to go green on the scale necessary would be too expensive.\n\"\"Saying we can't invest in renewable energy because there's a dollar-figure attached sounds like telling someone with a fatal disease that the cure is too costly or saying to a crime victim that we can't afford to put police on the streets because of budget constraints.\"\"\n\nSenator on the need to invest in renewable energy and new technologies:\n\n\"\"The question isn't whether an investment needs to be made. The question is, whether we want to make that investment now, while we can do it safely, gradually, and inexpensively, or later, when we have to make wholesale changes to our economy in a matter of years rather than decades. \n\"\"In other words, what we're deciding is not whether to put a cap on carbon emissions. The question is whether we do it now, or whether we wait.\n\"\"Do we do it now, when it's cheaper to do it, when we can set ourselves up to compete with Europe and Japan in creating new technologies, when we can create jobs in the midst of an economic downturn?\"\"\n\n Amendments Senator Menendez was prepared to offer:\n• Amendment with Senators Bernie Sanders (I-VT) and Frank Lautenberg (D-NJ) to divert allowances under the cap and trade system from petroleum refiners to states with the requirement that a portion is used for renewable energy development.\n• Amendment to move allowances funds from oil companies to renewable energy.\n• Amendment with Senator Olympia Snowe (R-ME) to divert allowances under the cap and trade system from oil companies in order to fund \"\"adaptation\"\" - efforts to help developing nations adapt to climate change.\n• Amendment with Senator John Kerry (D-MA) calling on federal government to conduct a comprehensive scientific review of the domestic costs of rising sea levels, decreased agricultural productivity, drought, increased numbers of violent storms and any other costs of unmitigated climate change.\n• Amendment with Senator Kerry to divert allowances funds from fossil fuel electricity to significantly increase the amount of funding available to protect global forest resources. \n• Named sponsor of Biden-Lugar amendment establishing the sense of the Senate that the United States should be a leader on climate change and actively seek to become part of an international treaty on climate change. \nFull text of Senator Menendez's remarks, as prepared for delivery:\nM. President, I thought this debate would be a watershed moment - a moment when we finally moved beyond Republican attempts to deny that global warming exists.   But as this debate has evolved we see that we have not gotten very far.  Instead of deny, deny, deny - the Republican playbook has shifted to delay, delay, delay.\nM. President, the time to act is now.  We're not going to be able to transition from a fossil fuel based economy to a green, renewable energy-based economy overnight, and therefore it is critical that we act as soon as possible to begin this transition.\nI'd like to thank my colleagues who have worked so hard to get this legislation to the floor. The mere fact we are having this debate gets us closer to actually enacting a policy to cap greenhouse gas emissions.\nBut I do hope that in time we can support much stronger legislation. I have concerns about whether this bill speeds our transition to a carbon free economy quickly enough.  Because of the cost containment mechanism and the large number of offsets in the bill I'm worried that some companies might be able to delay cutting back their emissions for over a decade. I also believe we can go even farther in supporting renewable sources and energy efficiency.\nI was hoping that I would have the opportunity to offer a few amendments to try to improve the legislation.   The first amendment I hoped to offer, along with Senators Lautenberg and Sanders, would have shifted transition assistance funding from Big Oil to renewable energy generators. At a time of record oil company profits, I do not think we really need to allow oil companies to continue to pollute for free, especially when that money could be used to help jump start the development of clean, renewable, affordable, American energy.\nThe second amendment I authored along with Senator Snowe would have boosted funding to help developing nations adapt to changes in the climate they had little to no part in creating.  Making investments to help vulnerable nations isn't just a necessary step to secure an effective international climate treaty, or just a way to advance U.S. national security interests -- it's a moral imperative.\nThe third amendment I filed with Senator Kerry would help nations with tropical forests lower their rates of deforestation, a cost-effective way of keeping CO2 out of the atmosphere.  Approximately 20% of global greenhouse gas emissions come from deforestation and if we hope to secure an effective climate treaty, we must be willing to help forested nations create the tools they need to effectively address the problem.\nFinally, the fourth amendment I authored also with Senator Kerry would have required the government to calculate the cost of inaction on global warming, from the costs of drought to flooding to storm damage.  Many of my friends on the other side of the aisle have spent a lot of time this week bemoaning the alleged costs of solving global warming, but they have completely ignored the horrendous costs of ignoring global warming.  We need this study so we are not always looking at half the balance sheet on this issue. \nMany of my colleagues on the Republican side of the aisle are rejecting any efforts we might propose, out of hand. They argue that almost anything would cost too much; they suggest that any effort to go green on the scale necessary would be too expensive.\nSaying we can't invest in renewable energy because there's a dollar-figure attached sounds like telling someone with a fatal disease that the cure is too costly or saying to a crime victim that we can't afford to put police on the streets because of budget constraints.\nThere were some who argued that it would be too expensive to reinforce the levees in New Orleans, and when Hurricane Katrina hit, we found out what the true costs of that decision were. We can't fail again to listen to John F. Kennedy when he warned us, \"\"the time to repair the roof is when the sun is shining.\"\"\nThe question isn't whether an investment needs to be made. The question is, whether we want to make that investment now, while we can do it safely, gradually, and inexpensively, or later, when we have to make wholesale changes to our economy in a matter of years rather than decades. \nIn other words, what we're deciding is not whether to put a cap on carbon emissions. The question is whether we do it now, or whether we wait.\nDo we do it now, when it's cheaper to do it, when we can set ourselves up to compete with Europe and Japan in creating new technologies, when we can create jobs in the midst of an economic downturn?\nOr do we do it when our hand is forced, when Americans have already felt the catastrophic effects of climate change, when our coasts are flooded, when storm surges damage our houses and droughts threaten our harvests, when the costs become enormous because we have to change so quickly?\nIt's going to be far harder and far more expensive to have to stop carbon emissions overnight than to do it now. If we want to slash our carbon emissions 80% by 2050, we simply cannot wait till 2030 to get started, unless we want to risk the economic and environmental future of this country.\nToday, in the rising price of gas we have to pay at the pump, we're seeing the result of waiting till disaster strikes to act. \nIn the 1970s because of the Arab Oil embargo we drastically improved the fuel efficiency of our passenger vehicles.  In 1976, our cars and trucks got 13 miles per gallon, but by 1981 our fleet had improved to 21 miles per gallon.  But from 1981 to 2006, the average fuel economy of our passenger vehicle fleet actually declined, to 20 miles per gallon. \nIf we had been gradually improving efficiency standards instead of waiting for high gas prices to force our hand, we would all be better off today. If we had increased fuel economy a modest 2% per year, our new fleet of vehicles would now average 34 miles per gallon.\nAstonishingly, if we had followed this course, our current demand for oil would be over one-third less than it is today, down over 2 billion barrels of oil per year. Cumulatively, we would have saved over 30 billion barrels of oil. 30 billion barrels of oil is more oil than the entire proven oil reserves remaining in the United States. \nWith such a reduced demand for oil imagine how much less we'd be paying for gas today. \nSome of my colleagues on the Republican side of the aisle are suggesting that capping carbon emissions would cause energy and gas prices to go up.\nWell, the reality is, anyone can tell you, prices are going up, and prices will keep going up, unless we end our dependence on oil. And that means transitioning to free, renewable fuels, like wind and solar. We don't have to pay Saudi Arabia for the rights to use the sun to generate power; we don't have to send money to Nigeria for the right to harness the power of the wind.\nThe more we improve the technology that can run on renewable fuels, the cheaper every kind of fuel will be.\nBut solving global warming is not just about protecting us from catastrophic weather and hostile foreign regimes, this is also about jobs. Renewable energy industries are perhaps the single greatest opportunity to create new, good-paying jobs this country has seen in a generation. If we want to put up millions of solar panels, it's going to take hundreds of thousands of workers to install them.\nAnd those are jobs created here at home, unlike what happens when we continue to rely on oil, which is that we create jobs in the Middle East, Nigeria and Venezuela. I'm proud that my home state of New Jersey is #2 in the nation in terms of solar capacity, behind only California. And we've seen new jobs created because of it.\nM. President, global warming is a challenge that faces us all, and a challenge we all must face together.\nIt's not enough to sit back and watch as tragic stories unfold, as heat waves and wildfires strike, as we see floods and droughts, more severe hurricanes, species disappearing, ice caps melting, glaciers melting, sea levels rising. It's not enough to sit back and watch, because we have a human, moral imperative to take action. And it's not enough because someday, the door that tragedy knocks on could be our own.\nGreat change always has its opponents. Instead of arguing that we should be innovative, they'll argue that we should be afraid—that we should do all we can to hold on to the ways of the past instead of having the courage to prepare for the future.\nThe American people are tired of being told what they can't achieve. And they're tired of being told they should be satisfied with the status quo.\nIt's time to put aside our fears, unleash our powers of innovation, and rise to meet one of the defining challenges of our time.\nThank you, M. President, I yield the floor.\n # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f30d47cb-7583-4267-bb55-0ff901f3c0dc,\"REID, MEN?NDEZ DECRY DISPROPORTIONATE HARM OF ECONOMIC DOWNTURN ON LATINOS\n                    \n                      June 4, 2008\n                     Washington, D.C. - Senate Majority Leader Harry Reid (D-NV) and Senator Robert Menéndez (D-NJ) expressed their disappointment today after a new study revealed that the economic slowdown has been disproportionately harmful for Latino workers in the United States. The Democratic Senators also called on the Bush Administration to stop blocking several pieces of legislation that will strengthen our economy and lower energy costs for Americans.The new report released today by the Pew Hispanic Center shows how the recent economic downturn has had a disproportionately negative effect on Hispanic workers. According to the study, the key factors contributing to this alarming trend are the housing crisis and its effect on the construction industry, as well as the ripple effect on all other sectors of the economy. This has resulted in a rise in the unemployment rate for Hispanics to 6.5% in the first quarter of 2008, well above the 4.7% rate for all non-Hispanics.\"\"This new study on how the economic downturn has disproportionately affected Latinos is troubling,\"\" Reid said. \"\"The housing crisis and its effect on the construction industry is yet another example the Bush Administration's negligent and wait-and-see economic policies.  This Administration is actively opposing legislation proposed by Senate Democrats to help solve our mortgage crisis and help Americans keep their homes.\"\"\"\"Americans are losing jobs and Latinos, who make up over 14% of the workforce in this country, are suffering disproportionately as their unemployment rates rise above the rest of the population. We have been brought to this point by seven years of economic policies geared toward the super-wealthy, a costly war in Iraq and a subprime mortgage crisis,\"\" Menéndez said. \"\"My Democratic colleagues have made helping working families a top priority and we believe that Latinos should have the opportunity to build a better life through their hard work and determination. There is no magic wand we can wave to make all the problems go away at once, but Senate Democrats are committed to spurring an economic recovery wherever we have an opening to do so.\"\"\"\"Democrats have an aggressive agenda to jump start our economy,\"\" Reid added. \"\"In addition to passing the short term economic stimulus package and continuing to fight President Bush's stubborn opposition to our housing bill, we are also working hard on other initiatives that will boost our economy while helping our environment. Our Consumer First Energy Act and our Climate Security Act bills will help reduce Americans' pain at the pump, create thousands of green collar jobs and reduce our dependence on foreign oil. Latinos and all hard working American families stand to benefit from these bipartisan initiatives and we hope that the Bush Administration and Senate Republicans will side with the American people and not with the special interests to help improve our economy.\"\"###The full report can be seen at: http://pewhispanic.org/files/reports/88.pdf.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6d02ab84-08b3-4928-bf72-6309d138571b,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $1.8 MILLION FOR FIVE NEW JERSEY AIRPORTS\n                    \n                            Grants Will Help Improve Airport Infrastructure and Safety for Pilots and Fliers Across Garden State\n                    \n                      May 29, 2008\n                     WASHINGTON, D.C. - Today, U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) announced that the U.S. Department of Transportation (DOT) has awarded more than $1,890,000 in grants to five New Jersey airports.  Airports in the towns of Lakewood, Linden, Morristown, Ocean City and Toms River will receive these DOT funds for infrastructure improvements and safety upgrades that will help protect general aviation pilots and fliers.\"\"Our aviation network is a vital part of our state's economy.  We need to make New Jersey's airports as safe, modern and reliable as we can,\"\" said Sen. Lautenberg.  \"\"These funds will help improve our local airports to ensure they are environmentally sound and protect passenger and pilot safety.\"\"\"\"Ensuring passenger safety is a top priority for me and these funds are an important step to continue to improve the aviation system in New Jersey,\"\" said Sen. Menendez.  \"\"I welcome these infrastructure improvements and safety upgrades for these five New Jersey airports - this it is a win-win for travelers and for the economic development of the region.\"\"            The five airports will receive a total of $1,891,078:• Linden Airport will receive $696,990 to repair its taxiways and improve the aircraft parking apron.• Ocean City Municipal Airport will receive $445,947 to improve its airport drainage system.• Morristown Municipal Airport will receive $300,000 to remove runway obstructions that create safety hazards for planes.  These federal funds are in addition to a $90,000 grant the Federal Aviation Administration awarded to Morristown Airport earlier this year to conduct a runway study.• The Robert J. Miller Air Park in Toms River will receive $354,750 in two separate grants to remove runway obstructions, expand the airport apron and update the airport development plan.• Lakewood Airport will receive $103, 391 to install perimeter fencing and to monitor wetlands preservation, so development does not affect the environment or area wildlife.Earlier this year, Senators Lautenberg and Menendez announced more than $2 million in federal funds to support the construction of the Aviation Research and Technology Park in Pomona, NJ.In addition, Sens. Lautenberg and Menendez had been working to reduce the impact of air noise on New Jersey communities.  Sen. Lautenberg has introduced a bill to alleviate the impact of aircraft noise on residential communities.  The bill would require privately-owned jets to produce less noise by holding them to the higher standards used for commercial planes.  Many noisier and less fuel-efficient aircraft would therefore either be upgraded or discontinued.  Lautenberg added his legislation as an amendment to the FAA Reauthorization bill, which has been stalled by Republicans in the Senate.Earlier this year, Sens. Menendez and Lautenberg placed a hold on the nomination of Federal Aviation Administration acting-chief Robert Sturgell to be the agency's Administrator. The action prevents the nomination from coming to the Senate floor for a vote.  Menendez and Lautenberg used this Senate procedure to spark the FAA to get moving on a number of serious issues affecting New Jerseyans, such as increased noise for New Jersey residents and near misses on the runways and in the air.                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5ccd6f05-ee58-4460-9607-916023c40c7e,\"SEN. MENENDEZ STATEMENT ON PORT SECURITY GAPS REVEALED IN GOV'T REPORT\n                    \n                            GAO shows vulnerabilities in program relying on companies to implement voluntary security procedures\n                    \n                      May 27, 2008\n                     WASHINGTON - Today, the independent Government Accountability Office released a report showing that a major part of the Department of Homeland Security's border security plan has left gaps in port security (http://www.gao.gov/new.items/d08240.pdf?source=ra). The Customs-Trade Partnership Against Terrorism program relies on companies to voluntarily adopt security procedures, but GAO reported that in many cases DHS is unable to verify whether safety precautions have actually been implemented and that DHS often certifies companies before security requirements are actually met.U.S. Senator Robert Menendez (D-NJ), who authored a successful amendment requiring DHS to work toward 100-percent scanning of cargo entering U.S. ports, released the following statement today:\"\"Imagine if airport screeners, instead of actually checking bags, merely asked passengers a list of questions. Would we feel safe flying? That's essentially what's happening here, only on a larger scale. We have been warned about weapons of mass destruction coming in through our ports, and that is a threat we have to tackle with a sense of urgency. The Bush administration has never approached the goal of total cargo scanning with enthusiasm, and that hampers our national security. As the author of a successful amendment to require DHS to work toward the goal of 100 percent scanning, I will continue to push the administration to embrace that goal and to make it happen.\"\"                                                      # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=edd7965d-9d24-4fbe-8577-118ec1fa1a0e,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $128,000 FOR NEW JERSEY FISHERIES\n                    \n                            Grant to Implement Reporting Standards to Assist Scientists, Fishermen\n                    \n                      May 27, 2008\n                     WASHINGTON, D.C. - Today, U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) announced that the U.S. Department of Commerce has awarded more than $128,000 in federal funds to the N.J. Department of Environmental Protection (NJDEP), Division of Fish and Wildlife.  The grant will update the existing data collection program for the state's commercial fisheries to provide better information to fishermen and scientists.\"\"New Jersey is a leader in marine science, and this grant aids those research efforts in a way that is both economically and environmentally sound,\"\" said Sen. Lautenberg.  \"\"These funds help to ensure that New Jersey's fishing community has the tools it needs to thrive for years to come.\"\"\"\"Our vibrant commercial and recreational fisheries are among the largest in the nation, generating over a billion dollars in revenue,\"\" said Sen. Menendez. \"\"These grants will help update some of the existing New Jersey fisheries data to help manage and protect this important natural resource.\"\" The grant, administered by the National Oceanic and Atmospheric Administration, provides $128,536 in federal funds that will be used by the NJDEP to bring New Jersey's existing commercial fisheries data collection program into compliance with those of the Atlantic Coast Cooperative Statistic Program (ACCSP).            The ACCSP is a cooperative state-federal program to design, implement, and conduct marine fisheries data collection programs and to integrate those data into a single system that will meet the needs of fishery managers, scientists, and fishermen, throughout the Atlantic fisheries area.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ba7ca878-ee3a-4cba-a826-25d52f5e6f99,\"SEN. MENENDEZ HONORS THE SERVICE OF THE U.S. MILITARY ON MEMORIAL DAY WEEKEND\n                    \n                            Menendez helped pass 21st Century G.I. bill to provide education for the troops this past week\n                    \n                      May 25, 2008\n                     WASHINGTON, DC— With Memorial Day tomorrow, U.S. Senator Robert Menendez (D-NJ) released the following statement commemorating those who have served our country: \"\"Memorial Day serves as a reminder of the heroism of the brave men and women who have made the ultimate sacrifice for our country. Throughout our nation's history, our servicemen and servicewomen have courageously served to protect our freedoms, and we salute their sacrifice and show our deepest appreciation - not just on this day, but everyday. \"\"While tributes, honors and Memorial Day parades are important, a grateful nation matches words with actions. We must take care of those who have served our country and ensure that their needs are met when they return from war.\"\"This week, I was proud to help the U.S. Senate pass the 21st Century G.I. bill.  Among other things, this landmark legislation secures billions to provide veterans with tuition coverage and additional higher education benefits. With American sons and daughters serving in Iraq and Afghanistan and overextended by lengthy deployments and inadequate rest between tours, this is an opportune time to show our respect and support in any way we can. This incredibly important victory for our veterans ensures that they have the opportunity to receive a college education, to keep our country competitive in the global economy, and to achieve the American Dream. This bipartisan and veto-proof vote proves that supporting our troops as they so selflessly and valiantly serve our nation is a priority that crosses party lines.\"\"This Memorial Day, I hope that we all take the time to reflect on the bravery of the men and women who have served our country, as well as how we can serve them in return.\"\"                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4beb65fc-c9a0-4050-a4a6-ded84c33f8cf,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $143K FOR COASTAL RESEARCH\n                    \n                            Grant to Conduct Study of Atlantic Surf Clam Population along New Jersey's Coast\n                    \n                      May 23, 2008\n                     WASHINGTON, D.C. - Today, U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) announced that the National Oceanic and Atmospheric Administration (NOAA) awarded more than $143,000 in federal funds to the N.J. Department of Environmental Protection, Fish and Wildlife (NJDEP) to study the health and size of the surf clam population off the New Jersey coast.            Atlantic surf clams are particularly abundant off the southern coast of New Jersey, where they are fished commercially.  Due to its sweet flavor, the meat of these surf clams is commonly used for \"\"strips,\"\" chowder and sushi.            \"\"This study is critical in maintaining a healthy population of surf clams for New Jersey's commercial and recreational fishermen,\"\" said Sen. Lautenberg, a member of the Senate Environment and Public Works Committee.  \"\"We need to ensure that New Jersey remains a leader in coastal research—and these funds are an important part of that effort.\"\"            \"\"The Atlantic surf clams are an important part of our state's economy and thrive along the New Jersey coast,\"\" said Sen. Menendez.  \"\"These funds will help the scientists and the fishing community in New Jersey to better understand the health and size of the surf clam population along our shores so that it continues to be an abundant source of business for the region.\"\"            The $143,661 grant will allow NJDEP to continue its long-term surf clam research survey, which determines the number and size of surf clams in New Jersey coastal waters from Cape May in the south to the Shark River in the north.  The study will also evaluate lifecycle patterns of the surf clams by studying plankton within New Jersey waters.                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8ec64f2e-2696-41dc-8bbf-2ae735551f54,\"SEN. MENENDEZ VOTES AGAINST BLANK CHECK FOR IRAQ WAR\n                    \n                      May 22, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) released the following statement today after voting against the supplemental appropriations bill for the Iraq War:\"\"Handing a blank check to President Bush for Iraq gives him a green light to continue his endless, disastrous stay-the-course plan. Meanwhile American sons and daughters continue to be killed, the masterminds of 9/11 have their own safe zone and our economy at home is tanking. Keeping Americans entrenched as Iraq's national police force hurts our national security and economic security here at home, and it's not delivering a lasting peace to Iraq either. Only when the Iraqi government actually believes that we won't be there forever will it stand up and take control. Transitioning our troops out of there gives both our country and Iraq the best chance for peace and prosperity, and that is the course we should be pursuing.\"\"                                                    # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3254bcb2-7f24-4d06-91b5-9854f579e9fb,\"HISTORIC 21st CENTURY G.I. BILL ADOPTED IN THE SENATE\n                    \n                      May 22, 2008\n                     Washington, DC—Today, the U.S. Senate passed the 21st Century G.I. bill by a bipartisan and veto-proof 75-22 vote. The legislation will, among other things, secure billions to provide veterans with tuition coverage and additional higher education benefits. U.S. Senator Robert Menendez (D-NJ) made the following statement:\"\"With American sons and daughters serving in Iraq and Afghanistan and overextended by lengthy deployments and inadequate rest between tours, this is an opportune time to show our respect and support in any way we can. This incredibly important victory for our veterans ensures that they have the opportunity to receive a college education, to keep our country competitive in the global economy, and to achieve the American Dream. The President had said in the past that funding a new G.I. Bill for veterans' education is too expensive, but this bipartisan and veto-proof vote speaks louder than his words. It proves that supporting our troops as they so selflessly and valiantly serve our nation is a priority that crosses party lines.\"\"                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d97681c1-4fcc-4587-aa52-eaa476885fa3,\"SEN. MENENDEZ APPLAUDS PASSAGE OF ANTI-DRUG FUNDS TO MEXICO AND CENTRAL AMERICA, ALSO LOOKS AHEAD TO SOCIAL DEVELOPMENT\n                    \n                            Merida Initiative passed as part of supplemental appropriations bill\n                    \n                      May 22, 2008\n                     WASHINGTON - This afternoon, the U.S. Senate passed the Merida Initiative as part of a supplemental appropriations bill. The initiative commits $450 million for  programs in Mexico and Central America to promote intelligence-sharing, dramatically increase funding for law enforcement and, to a lesser extent, strengthen the institutions of justice and civil society.U.S. Senator Robert Menendez (D-NJ), is a member of the Foreign Relations Committee who is the author of the Social Investment and Economic Development Act for the Americas (http://menendez.senate.gov/newsroom/record.cfm?id=284356), and who last year joined with Majority Leader Reid to visit Mexico and other Latin American nations. He released the following statement:\"\"The beginning of this initiative marks an important step in our region's efforts against drug trafficking and crime. Law enforcement is certainly an important component in combating the regional problems that eventually affect us here in the United States. That being said, this type of initiative should also be supported by Mexican and Central American government efforts to promote social development. There must be a focus on attacking the root causes of drug trafficking and crime - namely, poverty, the rule of law, and well-functioning judicial systems.\"\"No one wants the Merida Initiative to succeed more than me and many of my colleagues - cracking down on drug trafficking and violence and building closer relations with Mexico and Central America in the process are as important to Americans as they are to our southern neighbors. But to succeed, we must work together in a bipartisan fashion to craft both short and long-term agreements that meet our mutual security needs while building the institutions of justice.\"\"                                                       # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fb59a1b4-2bc9-4fe7-864d-f4dcb19283d1,\"LAUTENBERG MEASURE TO KEEP NEW JERSEY CHILDREN COVERED BY HEALTH INSURANCE PASSES SENATE\n                    \n                            NJ Sen's Amendment Would Override Illegal Bush Administration Policy That Threatens Health Care of 10,000 Children in New Jersey\n                    \n                      May 22, 2008\n                     WASHINGTON, DC - A measure introduced by U.S. Sen. Frank R. Lautenberg (D-NJ) designed to make sure 10,000 New Jersey children can have access to health care  passed the Senate today.  The Lautenberg language is meant to counteract the Bush Administration's so-called \"\"August 17\"\" directive.  The measure has the support of Senator Robert Menendez (D-NJ).\"\"President Bush's illegal and misguided policy jeopardizes health care for thousands of New Jersey's children, and it must be stopped.  We should be making it easier for children to see a doctor and get the medicine they need to stay healthy, not harder,\"\" Senator Frank R. Lautenberg said.  \"\"My amendment is critical to protect our families in New Jersey.\"\"   Senator Menendez said: \"\"This is a major victory over the type of cold-hearted and out-of-touch policies that threaten health coverage for children in states like ours. In these times when so many are struggling to make ends meet, we have told the Bush administration that it cannot take away coverage from those who fall in the gap between Medicaid and private health insurance.  The House must now step up and match our commitment to these children, and we look forward to working with the New Jersey House delegation to ensure that this provision makes it through. I applaud Senator Lautenberg for getting this amendment into the bill in the first place and was proud to fight side-by-side with him on the Senate floor to ensure its passage.\"\"Lautenberg inserted his language into a section of the Emergency Supplemental that also includes critical domestic priorities such as a new G.I. bill for America's veterans and an extension of unemployment benefits.  The Supplemental package with the Lautenberg provision must now be sent back to the House of Representatives for consideration and would need to be signed by the President before it becomes law.New Jersey has thousands of children enrolled in the state's Family Care program whose coverage would be threatened by the Bush Administration's August 17 directive.  The Bush regulation would make it harder for states such as New Jersey to continue covering children above 250 percent of the poverty level.  The Government Accountability Office and Congressional Research Service have both issued reports finding that the Bush Administration violated federal law when they issued the regulation. The Children's Health Insurance Program (CHIP) provides health insurance for low income children whose parents cannot afford to buy private insurance and earn too much money to qualify for Medicaid.   This program provides coverage to 6 million children across the nation. Last year, President Bush vetoed a bill to extend CHIP despite bipartisan support from Congress.  The bill would have made health insurance available to more children in New Jersey and across the nation.                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fc00056c-1448-4384-b070-81c65cfb21eb,\"Floor Statement on Unemployment Insurance\n                    \n                      May 21, 2008\n                     Mr. President, as we talk about the supplemental, I want to speak about the importance of unemployment insurance to our economy and to so many Americans.  I know if Senator Kennedy were on the floor today, he would be leading this effort, lending his powerful voice as he always does, with fervor and passion, on behalf of those in our nation who are in need.And, Mr. President, we know there are Americans in need.  These are difficult economic times, not just for Americans on the bottom of the economic ladder, but for Americans from all walks of life. In the past year alone, losses in the stock market and in home values have totaled $2.7 trillion each.  That's TRILLION with a ‘T'.  Foreclosures have risen 130 percent since 2006.  Some 20,000 families lose their homes every week.  This combination of a credit and housing crisis isn't just affecting Wall Street or homeowners, but it is reaching throughout our economy, putting a strain on businesses large and small, from factories to restaurants. Under the pressure of this economic squeeze, the economy has lost 260,000 jobs in the last 4 months alone.  But beyond just the loss of jobs, what is really hurting those who have lost a job is the time it is taking to find a new job. The average length of unemployment has risen to almost 17 weeks, longer than at any time Congress has extended benefits in the past 30 years.  In my home state of New Jersey, each week, some 3,000 more unemployed workers are exhausting their benefits. And while we certainly hope that recent efforts to stimulate our economy will be successful, there are still troubling signs. Long-term unemployment is higher now than before the last recession.  17.8 percent of people unemployed have been searching for a job for over 27 weeks, a 58 percent increase since 2001.  And statistics show that those who are unemployed are going to have a very difficult time finding a job as there are 7.6 million unemployed Americans competing for only 3.8 million jobs.   That's two workers for every job. And Mr. President, some are struggling more than others.  Veterans and minorities have been disproportionately burdened by our struggling labor market.  Young male veterans who answered the call to protect our nation after September 11, 2001 are now faced with an 11.2 percent unemployment rate, well over twice the national average.  A total of 21,588 newly discharged veterans are now unemployed and collecting unemployment insurance.  The last thing these brave men and women, who risked their lives dodging bullets and IEDs in Iraq and Afghanistan, should have to worry about is finding a job when they come home.Minorities are also being hit especially hard by our current economic conditions.  For Hispanics, unemployment has grown to 6.9 percent.  For African Americans, unemployment is 8.6 percent - both well above the national average.  We cannot ignore the fact that the subprime crisis has disproportionately affected some communities more than others.  Unfortunately, for many of these hard-working Americans, their hope of attaining the American Dream has instead become personal nightmare.   Mr. President, these statistics are not just numbers.  The 260,000 jobs lost this year; the 7.6 Americans who are unemployed; the 21,000 veterans collecting unemployment - these are not just economic data.  Behind each number is a story and an American worker who is struggling. Let us take a moment to imagine what it is like to be one of these workers. Imagine you have two kids with a mortgage to pay and you just lost your job.  That alone is a scenario that could lead any family into hard times.  But, if you are facing foreclosure because of a bad subprime mortgage that just reset to a higher rate, or if losing your job meant losing your health insurance that provided coverage for your children, imagine how powerless you would feel. Imagine the uncertainty - of not being able to find a job; of not being able to pay for your children's college education; of not being able to keep the home your children grew up in.  Imagine what that must be like.  Well Mr. President, there are hundreds of thousands of Americans facing these dire circumstances, who know all too well what this feels like.  It is up to us to lend them a helping hand during their darkest days. And that is what the extension of unemployment benefits in the supplemental would accomplish.     On top of that, we also know that extending unemployment is one of the most effective ways to help the economy.  For every dollar the government provides in unemployment insurance, $1.64 goes right into our economy.  While I, along with many of my colleagues felt that this should have been part of  the stimulus earlier this year, I am pleased that we have another chance.  Today, as unemployment and costs of living continue to rise, it is even more imperative that we act now and do what is right.   1.4 million workers have been actively looking for a job for more than 6 months.  As it's becoming harder to find a job, more families are running out of their unemployment benefits.  36 percent of workers exhaust their benefits before finding a job, and many expect that number to increase.  In March of this year, 45 percent of New Jerseyans receiving unemployment insurance exhausted their benefits before finding a new job.  Mr. President, we have a chance to fairly and responsibly address the challenges that long-term unemployment are creating for many Americans.   Extending unemployment insurance will help those hit hardest and give the economy a much needed shot in the arm.  So, we have this opportunity to act and act now. I hope my colleagues will give American workers the helping hand they need and stimulate our economy by supporting the extension of unemployment insurance.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fe649921-7bb2-4aeb-87c7-a5dca658c179,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $1.38 MILLION FOR UPGRADES AT NEWARK PENN STATION\n                    \n                            Grant to Help Improve Passenger Safety, Comfort at State's Busiest Station\n                    \n                      May 19, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the U.S. Department of Transportation (USDOT) will award NJ Transit more than $1.38 million in federal funds for upgrades at Newark Penn Station.            \"\"Thousands of New Jerseyans use Newark Penn Station every day.  With record number of passengers traveling by train, we must continue to upgrade our stations so travelers get to destinations safely, comfortably and on time,\"\" Sen. Lautenberg said.  \"\"These funds go a long way in the effort to modernize our public transportation systems, giving commuters options, helping keep cars off the road and reducing our reliance on foreign oil.\"\"            \"\"Newark Penn Station is essential for so many New Jerseyans to get around the state and beyond,\"\" said Sen. Menendez.  \"\"This is the type of investment that can increase the safety and efficiency of our rail system.  Ultimately, we want to help New Jerseyans commute and travel with ease, reduce the number of cars on the road, ease traffic congestion, and spur economic growth.\"\"            The $1,380,997 grant, administered by the USDOT's Federal Transit Administration, aids the Newark Penn Station Platform ‘E' Rehabilitation project.  Several areas of the project include:• repairs to the structure and deck of the passenger-boarding platform;• replacement of damaged bricks on the platform and missing rail guarding;• upgrades to the interior and exterior of passenger waiting areas;• improvements to the communication, security and lighting systems;• repairs to the drainage systems at the track, platform and roof levels; and• upgrades to the roof's canopy and skylights.            Newark Penn Station is one of the busiest stations in the region, serving more than 26,000 passengers a day.  The station is served by five NJ Transit rail and light rail lines, ten Amtrak routes, the PATH rail line to New York City, and local, regional and national bus services.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=56308fab-6ef0-4f3f-b9a5-67f271d78fbe,\"LAUTENBERG MEASURE TO KEEP NEW JERSEY CHILDREN COVERED BY HEALTH INSURANCE PASSES KEY SENATE COMMITTEE\n                    \n                            NJ Sen's Amendment Would Override Illegal Bush Administration Policies That Threatens Health Care of 8,000 Children in New Jersey\n                    \n                      May 16, 2008\n                     WASHINGTON, DC - A measure introduced by U.S. Sen. Frank R. Lautenberg (D-NJ) designed to make sure 8,000 New Jersey children can have access to health care  passed a key Senate committee yesterday.  The Lautenberg language is meant to counteract the Bush Administration's so-called \"\"August 17\"\" directive.  The measure has the support of Senator Robert Menendez (D-NJ).\"\"President Bush's illegal and misguided policy jeopardizes health care for thousands of New Jersey's children, and it must be stopped.  We should be making it easier for children to see a doctor and get the medicine they need to stay healthy, not harder,\"\" Senator Frank R. Lautenberg said.  \"\"My amendment is critical to protect our families in New Jersey, and we will continue to fight until it becomes law.\"\"   \"\"Over the past year, we've stood up time and time again in the face of cold-hearted attacks that target children's health coverage in high-cost of living states like ours,\"\" said Senator Menendez. \"\"Especially in these times when so many are struggling to make ends meet, we cannot take away coverage from those who fall in the gap between Medicaid and private health insurance. Senator Lautenberg's work in the Appropriations Committee is a big victory for the children of New Jersey, and we will stand up together to keep his amendment in the bill when it comes to the Senate floor.\"\"Lautenberg inserted his language into a section of the Emergency Supplemental that also includes critical domestic priorities such as a new G.I. bill for America's veterans and an extension of unemployment benefits.  The Supplemental bill was marked up by the Senate Appropriations committee, of which Lautenberg is a member.  It will next be considered on the Senate floor, possibly as early as next week. New Jersey has thousands of children enrolled in the state's Family Care program whose coverage would is threatened by the Bush Administration's August 17 directive.  The Bush regulation would make it harder for states to continue covering children above 250 percent of the poverty level.  In New Jersey, the eligibility level is up to 350 percent.  The Government Accountability Office and Congressional Research Service have both issued reports finding that the Bush Administration violated federal law when they issued the regulation.The Children's Health Insurance Program (CHIP) provides health insurance for low income children whose parents cannot afford to buy private insurance and earn too much money to qualify for Medicaid.   This program provides coverage to 6 million children across the nation. Last year, President Bush vetoed a bill to extend CHIP despite bipartisan support from Congress.  The bill would have made health insurance available to more children in New Jersey and across the nation.                                                      # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a9ff1942-a52c-4be4-8b6d-6a6e4dcbeb8b,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $263 MILLION FOR PORT, RAIL,INFRASTRUCTURE SECURITY IN N.J. REGION\n                    \n                            N.J. Region Receives Largest Grant In Nation for Port Security,More than Half of Country's Transit Security Funding\n                    \n                      May 16, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the U.S. Department of Homeland Security (DHS) will award New Jersey and its neighboring areas more than $263 million in federal funds for passenger and freight rail, port, bus and infrastructure security.  The increased funding levels are made possible by a higher Congressional appropriation made for DHS security grants this year.  Democrats in Congress, including the New Jersey Senators, worked to double the port and transit security budgets from the levels under the Republican-controlled Congress.            \"\"This funding we have secured is critical to protect New Jersey's ports, trains, buses and transportation infrastructure.   Whether it's requiring grants to be distributed based on risk or fighting for the homeland security funding our state needs, we will continue working to better protect New Jersey,\"\" said Sen. Lautenberg.            \"\"This level of funding more accurately reflects the terrorist threat and the security needs in regions such as ours compared to funding levels in years past,\"\" said Sen. Menendez, a member of the Senate Budget Committee.  \"\"This shows not only an understanding by this Congress of the need to focus on homeland security but also a commitment to putting that understanding into action.  I was proud to stand up for these increased security resources in the Budget Committee.  New Jersey will be made safer because of these funds.\"\"            Increasing homeland security funding for our nation's most vulnerable areas was one of the highest priorities of the incoming Democratic majority in the U.S. Senate and House in 2007.  Lautenberg wrote the law that required port security funding to be based on risk.            DHS announced $263,070,762 in security funding for New Jersey and neighboring states.  The grants were broken up into four separate programs:• Transit Security Grant Program: New Jersey, New York and Connecticut will share $175,380,995 for passenger and freight rail security.  This amounts to more than half of all funding for transit and rail security in the entire country.  Also, the Southern NJ-Philadelphia region will receive $18,888, 660.  And, the two biggest freight companies serving New Jersey, Norfolk Southern Railway Company and CSX Transportation, Inc., will receive security grants.• Port Security Grant Program: Four separate grants totaling $65,695,933 will aid in port and maritime security operations in the state:• $45,503,961 to the Port Authority of New York & New Jersey (PANYNJ), which is the largest award nationwide;• $20,041,972 to the Maritime Exchange, the Delaware River and Bay port system's non-profit trade association;• $25,000 to the PSEG Sewaren Generating Station in Woodbridge; and• $125,000 to the Delaware River and Bay Authority for ferry security.• Intercity Bus Security Grant Program:  The following six companies will receive grants totaling $1,975,309 for bus security operations in New Jersey:• $836,953 to Academy Express, LLC;• $739,350 to Coach USA Inc.;• $188,606 to DeCamp Bus Lines;• $136,425 to Lakeland Bus Lines, Inc.;• $135,527 to STARR Tours; and• $73,313 to Stout's Charter Service.• Buffer Zone Protection Program: New Jersey will receive $995,000 from this program that allocates funds for protecting sites like chemical facilities, financial institutions, nuclear and electric power plants, dams, stadiums and other high-risk/high-consequence facilities.                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4884f028-e9a3-428a-af77-f4e9af6beda3,\"NJ SENATORS HELP BLOCK YET ANOTHER PROPOSAL THAT COULD LEAD TO DRILLING NEAR JERSEY SHORE\n                    \n                            Second time this week that offshore drilling proponents have attempted to lift moratorium on the East and West Coasts\n                    \n                      May 16, 2008\n                     WASHINGTON - Last night, New Jersey's Senators helped defeat the second attempt in the U.S. Senate this week - and the fourth attempt in the past year - to potentially open up drilling near the Jersey Shore. U.S Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) helped lead the opposition to the attempt to lift the moratorium on the Outer Continental Shelf, which could lead to drilling less than 100 miles from New Jersey.Senator Menendez said: \"\"Clearly, those who are beholden to the oil companies do not want to end our addiction to oil, but just want to tap a new vein. We cannot drill our way to energy security, and we will stand up each and every time to protect our state's environment and economy. The Jersey Shore will not become a victim to oil spills on our watch. The way to lower energy costs and combat global warming is not through drilling ourselves into a deeper hole, but through more energy efficiency and the development of sustainable alternative sources.\"\"           \"\"The last thing New Jersey needs is drilling off our coast, which poses a direct threat to our environment and our economy.  We need to address our long-term energy needs by investing in new, alternative fuels, not by looking for more places for oil companies to drill.  I will keep fighting to prevent drilling on our coastline,\"\" Senator Lautenberg said.            This latest attempt to allow the drilling came in the form of a Republican motion to instruct conferees negotiating the Budget Resolution to lift the moratorium. It was defeated by a 44-51 vote.                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9a34ef8a-c5ce-4dbb-87bc-36991da4effd,\"Farm Bill Passes Congress: Menendez Praises Benefits for  NJ Farmers, Expresses Hope For More Reforms In Future\n                    \n                            Menendez worked to include school nutrition provisions, protect New Jerseyans from losing rural assistance\n                    \n                      May 15, 2008\n                     WASHINGTON - Today, the U.S. Senate gave final approval to a new five-year Farm Bill. U.S. Senator Robert Menendez (D-NJ) who helped defend New Jersey farmers and fought for provisions on issues such as school nutrition programs and increased nutrition funding, voted in favor of the bill.\n\"\"This will start us down a path that will make the agriculture system fairer for farmers in states like New Jersey, though we still have to work for serious reforms to the way the government tilts toward the big commodity farmers,\"\" said Senator Menendez. \"\"It is important to New Jersey farmers that this bill for the first time signals a real federal commitment to specialty crops, which means so much to a state that is a leading producer of crops like blueberries and cranberries. On top of that, the funding to preserve farmland will help keep New Jersey's farms operating and will help protect them from development.\n\"\"I was glad to see that, in a time of record food prices there, is a considerable boost in nutrition funding.  Many New Jersey families are having a hard time making ends meet and this funding can help them weather these tough times.\n\n\"\"Previous versions of this bill would have dealt a serious blow to many New Jerseyans with an over-the-top change to the federal definition of ‘rural', but I was proud to help lead the effort to soften that blow in the final bill. I was also proud to include a number of provisions to improve school nutrition, which will not only help keep our children healthy, but will also help keep our local farms healthy.\"\"\n\nMenendez work on the Farm Bill:\n• The legislation includes important provisions from Senator Menendez's Healthy Farms, Foods and Fuels Act :o Expansion of the Fresh Fruit and Vegetable Program to every state in the country, targeting benefits to low-income children, giving them a healthier snack option that will lead to healthier habits in school and at home.o Additional funds for the Senior Farmers' Market Nutrition Program to award grants to state governments to provide low-income seniors with coupons that can be exchanged for healthy foods at farmers' markets, roadside stands, and community supported agriculture programs.o Restoring the authority of schools to buy local foods in the School Lunch Program to support local farms while giving their children fresher and more nutritious food options.\n• The final version includes a Menendez-requested USDA study on local food economies (activities such as farmers markets and road side stands), their benefits and the barriers to expansion.• Senator Menendez fought to protect thousands of New Jersey citizens from being excluded from rural development programs. The version which passed the Senate Agriculture Committee could have excluded over half of the New Jersey residents who currently qualify for these programs. Senator Menendez organized a group of Mid-Atlantic and Northeast Senators to loosen this revised definition and exclude the Water and Wastewater programs and the Community Facilities programs from the new definition.\nOther highlights of Farm Bill for New Jersey\n• Specialty Crops (New Jersey has the 2nd highest national output of blueberries, 3rd highest national output of cranberries and peppers and the 4th highest national output of peaches and spinach):o The bill dedicates approximately $3 billion to critical mandatory funding to specialty crop priorities such as nutrition, research, pests and disease, trade assistance, conservation local competitiveness projects. o $1.02 billion to expands the Fresh Fruit & Vegetable Snack Program to all 50 states. The nationwide expansion of the Snack Program will develop life-long healthy eating habits for millions of children by providing fresh fruits and vegetables in our nation's schools. o $466 million to enhances funding for \"\"Specialty Crop Block Grants\"\" that focus on local efforts to enhance producers' ability to compete in the marketplace and provide consumers with safe, abundant food.o $ 377 million to create a new Pest and Disease Program focused on combating invasive pests and disease, which cost the economy billions of dollars a year. This program will be a joint collaborative effort between the USDA's Animal and Plant Health Inspection Services (APHIS) and state departments of agriculture. o Prioritization of federal research activities for specialty crops. USDA will collaborate with specialty crop producers and organizations to develop and implement applied research and extension initiatives funded and sponsored by the agency. o Farmers' Markets: expansion of the Farmers' Market Promotion Program, first created in the 2002 farm bill, by providing $33 million over the next five years to continue our investment in promoting fresh, local foods.\n• Nutrition: At a time when food prices are setting record highs, New Jersey will see an increase of $186 million (over 10 years) in the Food Stamp, the Emergency Food Assistance Program, and the Fresh Fruit & Vegetable Program.\n• Food Banks: the bill will give food banks an immediate infusion of resources to help families turning to them in these tough economic times, and in total provides $1.256 billion over the next ten years to increase commodity purchases for food banks - this nearly doubles the current level of funding.\n• Conservation: The bill contains $4 billion in additional conservation funding - to take one conservation program as an example, New Jersey could receive almost $50 million over 5 years for the Farmland Protection Program.  This will greatly help New Jersey's farmers protect their lands from development and also help New Jersey's efforts to preserve open space.\nThe bill has wide support from New Jersey agricultural groups and organizations.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=df75445b-b5da-49ac-9b63-9d1211b36c40,\"AS DEATH TOLL FROM CHINESE EARTHQUAKE MOUNTS AND DANGER PERSISTS, SEN. MENENDEZ EXPRESSES SYMPATHY, SUPPORT\n                    \n                            Chairman of Senate subcommittee in charge of foreign assistance says U.S. continues to be ready to help where needed\n                    \n                      May 14, 2008\n                     WASHINGTON - As the massive death toll from this week's earthquake in China continues to rise and concerns about damaged dams are increasing, U.S. Senator Robert Menendez (D-NJ) is expressing continuing sympathy and support for those affected by the disaster. Senator Menendez is the Chairman of the Senate Foreign Relations subcommittee that oversees foreign assistance programs. He released the following statement:\"\"It becomes more apparent by the hour that the earthquake in China has caused massive casualties and catastrophic destruction. We sympathize with the Chinese people who have been devastated by this disaster, and we are prepared to help wherever we are needed. It has been reported that the Chinese government has accepted some initial assistance from our government, and we stand ready to fill additional needs. Should the Chinese government require an international effort to provide food and water or disaster response expertise, the U.S. should lead the assistance effort, and based on the administration's statements, I believe we will.\"\"                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f1d83492-c816-4d99-992c-7cde8ed44b22,\"SEN. MENENDEZ HELPS DEFEAT PROPOSAL THAT COULD LEAD TO DRILLING OFF THE JERSEY SHORE, HELPS PASS SEPARATE PLAN FOR GAS PRICE RELIEF\n                    \n                            Member of Energy Committee says drilling would threaten NJ environment, economy without any short-term effect on gas prices\n                    \n                      May 13, 2008\n                     WASHINGTON - Today, U.S. Senator Robert Menendez (D-NJ), a member of the Senate Energy and Natural Resources Committee, helped defeat a proposal in the Senate that could have led to drilling for oil up and down the U.S.'s East and West coasts, including areas near the Jersey Shore. He also helped pass a Democratic proposal to bring more immediate gas price relief by suspending the filling the Strategic Petroleum Reserve until the price of oil per barrel dips below $75.Drilling amendment\"\"An oil spill that washes up on the Jersey Shore would be an environmental and economic disaster for our state,\"\" said Senator Menendez. \"\"Those who are doing the bidding of the oil companies continue to look for a way to tap a new vein and deepen our nation's addiction to oil. I will continue to stand up to them.\"\"The idea that opening up the coast to oil drilling would do anything to gas prices is ridiculous.  It would take well over ten years to put the infrastructure in place and the risk of jeopardizing our $50 billion coastal economy far outweighs the minimal amount of oil we could expect in 2020 or later.  With gas prices sky high and with the planet in peril, the answer is not to drill ourselves into a deeper hole. The answer is to become more energy efficient, develop alternative sources of energy and keep our planet intact.\"\"The amendment to the Flood Insurance bill would have allowed petitions for leasing activities in the Atlantic and Pacific regions of the Outer Continental Shelf in order to tap recoverable oil in those areas. Exploration would occur off the shore of a state if that state's Governor petitions to have the moratorium on exploration lifted. Thus, even if New Jersey would not allow drilling, other nearby states might, which could affect the Jersey Shore. In the past, Virginia's Governor and legislature have expressed the desire to open up their waters to drilling.  Virginia's waters include areas less than 100 miles from the Jersey Shore.            Oil reserve amendment\"\"We have no magic wand to wave and immediately make gas prices reasonable, but this plan at least brings some short-term relief,\"\" said Senator Menendez. \"\"The practice of putting $125 per barrel oil in the ground is absurd and should be suspended. Hopefully we will have the votes necessary to overcome a possible veto by the president.            About 70,000 barrels of oil per day are put under ground in the Strategic Petroleum Reserve. The Reserve is about 97 percent full, and oil is now at about $125 per barrel.Yesterday, Senator Menendez took to the Senate floor to discuss these amendments and the Democratic energy plan. Below is the text of his remarks:M. President, we are debating two very different amendments on gas prices that are up for a vote tomorrow.  We have the proposal of the Minority Leader that is full of old ideas that will not work and will do absolutely nothing to affect gas prices now or in the future.  In fact, the only provision in the Minority Leader's amendment that would do anything to lower gas prices is lifted directly from the Democratic Plan to lower gas prices.  This is the provision to temporarily suspend filling the Strategic Petroleum Reserve. In response, the Majority Leader has offered a clean amendment to temporarily suspend filling the Strategic Petroleum Reserve.  This is one of the few options we have to address the pain at the pump our constituents are facing right now. M. President, every time my friends on the other side of the aisle decide to pay attention to our energy crisis their solution is always the same - help Big Oil.  In 2005, they authored energy provisions that gave Exxon-Mobil and other Oil Giants lavish subsidies that totaled over $14 billion, and these companies are reaping the rewards with record profits announced every quarter. Exxon-Mobil recently announced $11 billion in profits over a three month period.   To put that in context, this means Exxon-Mobil's yearly profit this year might well be almost twice the annual budget of the Department of Energy. The authors of these proposals argue that if we simply shovel taxpayer money in the direction of oil companies that this money will eventually trickle its way down to the people.  But as we have all seen, it does not.  Gasoline prices are now over $3.70 per gallon and the specter of $4.00 per gallon gasoline is looming just around the corner.  While oil companies hoard their windfall profits, the American people are suffering. Yet, my friends on the other side of the aisle do not want real relief for this country; they only want to protect Big Oil's huge profits at any cost by opening up every environmentally sensitive area in the country to drilling.  President Bush was right when he said that we are addicted to oil.  But what amazes me is that the President's party is unaware that they continue to act like addicts.  Instead of supporting real plans to conserve oil or even transition to sustainable fuels, they go out in search of their next oil fix. M. President, some claim that the way to lower gas prices is to end a bipartisan twenty-six year moratoria to open up the Outer Continental Shelf to oil exploration and just drill, drill, drill.  But the Energy Information Administration (EIA) projects that even if we opened up the entire Outer Continental Shelf to drilling- Off the East Coast, Off the West Coast, and opened up the entire Eastern Gulf of Mexico, nothing would happen to gas prices.  Why? First because production would not begin before the year 2017.  The infrastructure to drill for oil is not just a large oil platform, but a network of hundreds of miles of pipelines to transport oil from the platform, onto land and then on to refineries.  This kind of infrastructure simply does not exist on the East Coast and in only limited exceptions on the West Coast.The second reason why opening up all our shores to oil drilling will not lower gas prices is because by the time full production actually ramped up, in 2030, drilling off all of our coasts full tilt would only result in a whopping 3% increase in domestic production.And even in 2030 as our continent is rung all the way around by oil platforms all of this new supply will be eaten up by a 7% increase in domestic demand. The Energy Information Administration (EIA) predicts that --- and I quote --- \"\"any impact on average wellhead prices is expected to be insignificant.\"\"So even opening up all of our coasts to drilling, as the Minority Leader proposes, will have no impact on gas prices at all.  As you can see by this chart, the federal government has been issuing more and more leasing permits for drilling, but at the same time the price of gasoline has continued to rise.In fact, over 80 percent of the resources in the outer continental shelf are already open for exploration!  Since 2001, the Bush administration has issued over 100 new leases. Many of these leases are in the eastern Gulf where the oil industry already has much of the infrastructure necessary to go into production.  But only 12 of these new wells have been drilled. The industry is only developing a small fraction of the area already open for drilling. Why isn't Exxon-Mobil pumping some of its profits into developing these areas? If companies are not interested in developing the large fields already open in the Gulf of Mexico, why is it so critical to open up environmentally sensitive areas to more drilling?M. President, one might say that it is just to be expected that those on the side of Big Oil would use this sort of rhetoric in an election year. But it's much worse than that. The McConnell Amendment could be both economically and ecologically devastating.If you look at the picture here taken after a recent oil spill in San Francisco, this is what we could be routinely facing if we allow widespread drilling on the Outer Continental Shelf.  We could see our beaches closed for business because of oil spills.The New Jersey Shore is a priceless treasure my home state will protect at any cost, but the Shore also generates tens of billions of dollars in revenues each year and supports almost half a million jobs. It simply makes no sense to jeopardize a tourism and fishing economy worth tens of billions of dollars in exchange for a cumulative total of only a half year's supply of oil.  The people of New Jersey cannot afford the risk of millions of gallons of oil washing up on our beaches. This is not just a New Jersey problem. Florida's beaches generate billions of dollars each year. In South Carolina, Myrtle Beach alone brought in $3 billion in revenue. Do we really want oil washing up onto the pristine Cape Hatteras National Seashore? What about Virginia Beach? Can Maryland's famous blue crabs survive yet another environmental assault?The bottom line is the Minority Leader's proposal will do nothing to lower gas prices, but it will jeopardize coastal economies all along both coasts.  Is there anything we can responsibly do to ease the pain of such high gas prices?  The answer is a resounding yes.One important way to address oil prices that I hope we will be debating more fully in a couple of weeks is to better regulate oil markets.  Many analysts that have testified before the relevant House and Senate committees agree that based on pure supply and demand the price of oil should be somewhere between $50-70 a barrel. So, why are we hitting $125?  In part it's because of excessive speculation on futures markets.  And unlike other markets, such as the commodities involving corn or soybean futures, oil is being traded around the globe with little or no oversight by the US government.  If the Enron disaster teaches us anything it should be that markets cannot be allowed to operate without real oversight.  In the upcoming weeks when the Senate debates the comprehensive Democratic plan to address runaway gas prices one of the most important aspects of that package will be increased regulation of oil markets so we can effectively combat excess speculation and any possible market manipulation.Another important measure to bring short term relief to the pain at the pump is in the Majority Leader's amendment which will be voted on tomorrow.  This amendment would suspend filling the Strategic Petroleum Reserve at least through December 2008. When the people of this country are suffering under almost $4 a gallon gas, when gas prices are pushing up the costs of food, when the price of oil per gallon has broken $125 a barrel, why would we be burying this precious commodity when we need it most.  We should stop pouring all that oil into a hole in the ground until the price of crude oil recedes to $75 or less. This will truly help drive gas prices back down by increasing supply and offer some immediate relief to Americans.M. President, while it is very important that we enact these short term relief proposals, we also must look the long term.  The price of gasoline by itself is not really the problem, but the symptom of an even larger crisis. The crisis we face is that we are totally dependent on one type of fuel for our transportation needs.  And as former CIA Director James Woolsey is fond of saying, by buying oil in such huge quanitites and at such high prices we are helping fund both sides of the war on terror.So, what are the real long-term solutions to ending our dependence on oil and greening our transportation fleet?The first thing we need to do is drastically improve fuel economy.  In 1976, our cars and trucks got 13 miles per gallon. Because of the Arab oil crisis, we passed laws to improve the fuel economy of our passenger vehicles.  From 1976 to 1981, we saw a rapid increase in fuel economy. In 1981, our fleet had improved to 21 miles per gallon.  But since 1981, without the political will to improve fuel economy standards and the rising popularity of SUVs, the average fuel economy of our passenger vehicle fleet actually declined to 20 miles per gallon in 2006. What would have happened if we had kept slowly improving the fuel economy of our vehicles from 1981 to the present? If we had increased fuel economy a modest 2% per year during that time, our new fleet of vehicles would now average 34 miles per gallon. While this is certainly a huge improvement over where we sit today, it was definitely achievable since this figure is still well below standards set in Japan which are over 40 miles per gallon.Astonishingly, if we had followed this course, our current demand for oil would be over one-third less than it is today, down over 2 billion barrels of oil per year. Cumulatively, we would have saved over 30 billion barrels of oil. 30 billion barrels of oil is more oil than the entire proven oil reserves remaining in the United States.  This means that this sensible and achievable policy could have saved us more oil than we could ever hope to gain from domestic drilling. It is commendable that we have finally raised fuel economy standards, but we must make even further reductions if we want to make up for lost time. Of course fuel efficiency is just part of the answer to solving our addiction to oil. We also need tax incentives to increase the production and use of super-efficient vehicles already out there - like hybrids.We need a massive investment in cars that can run on sustainable alternative fuels like electricity or cellulosic ethanol.  Once we truly have a choice of fuels, the grip of our oil addiction will finally loosen.This country also needs to invest in our mass transit infrastructure.  This weekend the New York Times reported that mass transit is up all over the country.  We need a huge investment in mass transit to make sure that we all have multiple transportation options so we are not so reliant on driving. But while most of the Democratic Party supports these sensible policy reforms, my friends on the other side of the aisle are stuck in the past advocating old positions from previous Congresses.  M. President, I hope that this will be the last time I need to rise in this chamber to point out that more oil drilling in environmentally sensitive areas is not the answer to our oil addiction.  It is time for an intervention. It is time for a real cure based on a tough examination and reordering of our energy priorities - and not the tired old policies of the past.Thank you.                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=dab3304e-b0e8-44ff-b88e-86a2c2e6f6f7,\"BASIC HEALTH CARE AT IMMIGRATION DETENTION CENTERS: NEW SENATE LEGISLATION INTRODUCED TODAY\n                    \n                            Menendez's Detainee Basic Medical Care Act responds to reports on the lack of basic care and oversight that has led to preventable deaths\n                    \n                      May 12, 2008\n                     WASHINGTON— U.S. Senator Robert Menendez (D-NJ) today introduced the Detainee Basic Medical Care Act in response to recent news reports and lawsuits that have exposed seemingly systematic problems in the medical care provided at U.S. immigration detention centers. These reports and lawsuits demonstrate that detainees have in some cases died due to the poor quality or lack of medical care. Senators Edward M. Kennedy (D-MA), Richard Durbin (D-IL), Daniel Akaka (D-HI) and Joseph Lieberman (I-CT) are original co-sponsors of the legislation, which among other provisions would require the Department of Homeland Security (DHS) to establish procedures for the timely and effective delivery of basic health care to all immigration detainees in custody and would require DHS to report all detainee deaths to the Office of Inspector General and Congress. The Senate bill is a companion to Rep. Zoe Lofgren's (D-CA) H.R. 5950 in the House of Representatives.Senator Menendez said: \"\"We can never lose sight of the fact that everyone who immigrates to this country, whether they are documented or not, is a human being. A detention should never amount to a death sentence. This type of action to ensure humane treatment and prevent unnecessary deaths at these facilities is overdue. Let's not forget that many in immigration detention are there for minor violations, many for administrative errors. At some point, this becomes more than a legal issue - it becomes a human rights issue, and it is our job to do all we can to secure our country while protecting the dignity of all human beings.\"\"Senator Kennedy said: \"\"In the rush to detain tens of thousands of immigrants rounded up in worksite raids or appearing at our borders fleeing persecution or civil strife, we have lost sight of the need to provide those in our custody with even basic medical care and a modicum of decency and compassion.  This legislation is a major step toward ensuring that our immigration detention system is governed by sufficient standards of medical care and accountability.  It is critical that we establish rigorous standards so that we can restore a sense of humanity in our treatment of detainees that is fitting of our long tradition as a nation of immigrants.\"\"Senator Akaka said, \"\"ICE has the obligation to provide every man, woman, and child taken into immigration custody humane and dignified treatment.  Recent news stories have reported egregious failures to provide basic health care to those in ICE's custody.  ICE continues to deny the problems, so Congress must act to ensure that immigrant detainees receive the health care they need and to require that ICE disclose deaths of those in their custody.\"\"Senator Lieberman said: \"\"Inferior medical care is one of the most egregious elements of inhumane conditions at immigration detention facilities.  Our history as a compassionate nation requires that we meet and maintain far better standards at these facilities.\"\"DETAINEE BASIC MEDICAL CARE ACT OF 2008:• Requires DHS to establish procedures for the timely and effective delivery of health care. • Ensures that treatment decisions are based on professional clinical judgments. Currently, the medical decisions of on-site staff can be overruled by off-site officials without further review. • Ensures continuity of care for persons with serious health conditions.  The bill requires access to necessary medications upon detention and during any transfers. • Requires DHS to report all detainee deaths to the Office of Inspector General and to Congress.  DHS is not currently required to keep track of or report detainee deaths.  The absence of a reporting requirement leaves Congress and the public in the dark.In a recent case, a federal judge noted that Immigration and Customs Enforcement's \"\"own records [of a deceased detainee] bespeak of conduct that transcends negligence by miles.  It bespeaks of conduct that, if true, should be taught to every law student as conduct for which the moniker ‘cruel' is inadequate.\"\"EXAMPLES OF DETAINEES WHO HAVE DIED DUE TO LACK OF BASIC MEDICAL CARE:• Failure to provide basic medical care: While in detention, 52-year-old Boubacar Bah fractured his head during a fall and started behaving erratically.  On-site medical staff assumed Boubacar was acting out and shackled him to the floor as he moaned and vomited.  He was then put in solitary confinement, where he lay untreated for more than 13 hours, despite repeated notations by staff that he was unresponsive and foaming at the mouth.  Finally, he was sent to the hospital, where he underwent surgery for multiple brain hemorrhages.  After 4 months in a coma, he died.• Overruling of on-site medical staff decisions: In detention, 35-year-old Francisco Castaneda sought medical care for lesions on his penis.  On-site medical staff repeatedly ordered biopsies, but the biopsies were denied by off-site officials.  After 11 months in custody, ICE released Francisco so he could pay for his own biopsy, which revealed cancerous tumors.  Despite penile amputation and several rounds of chemotherapy, he died at the age of 36.  A federal judge recently noted that this case appears to present \"\"one of the most, if not the most, egregious Eighth Amendment violations [cruel and unusual punishment] the Court has ever encountered.\"\"• Denial of life-saving medication: Upon detaining 23-year-old Victoria Arellano, ICE denied her the antibiotics she was taking to fend off infections caused by her HIV-positive status.  Her health quickly deteriorated, marked by high fevers, severe cramps, and internal bleeding.  As she neared death, ICE put her back on antibiotic treatment, but of the wrong type.  Victoria received no other medical treatment and died under ICE's watch—just two months after first being detained.• Senseless detention of vulnerable people: Although he had a valid visa, 81-year-old Haitian Reverend Joseph Dantica was detained by ICE because he mentioned his need for \"\"temporary\"\" asylum upon arrival.  ICE detained him even though he was 81, had serious medical conditions, and had previously traveled to the U.S. many times without overstaying his visa.  ICE stripped the reverend, despite repeated pleas, of the medication he was taking for his high blood pressure and inflamed prostate.  Within days, he became ill and started vomiting, but ICE officials assumed he was faking and refused to treat him. When his condition worsened, he was taken to a local hospital where he was not seen by a doctor for another 24 hours.  He died soon thereafter.                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=572e057c-fabd-4197-8ee7-923d84023e6b,\"LAUTENBERG, MENENDEZ ANNOUNCE $1.7 MILLION FOR MID-ATLANTIC OCEAN OBSERVING SYSTEM\n                    \n                            Grant Will Help Rutgers Conduct Research to Improve Maritime Safety, Ecological Decision-Making in the Region\n                    \n                      May 12, 2008\n                                  WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the National Oceanic & Atmospheric Administration (NOAA) will award $1.7 million in federal funds to Rutgers University for Mid-Atlantic coastal ocean observation.            \"\"These funds help ensure that the ocean observing system at Rutgers will continue to provide environmental, educational and safety benefits to our coastal communities,\"\" said Sen. Lautenberg.  \"\"We need to do all we can to keep New Jersey at the forefront of ocean and coastal research and this grant goes a long way in that effort.\"\"            \"\"This funding will help Rutgers continue to better understand New Jersey's historic coastal area, an invaluable treasure we must protect,\"\" said Sen. Menendez.  \"\"This observation system will help our emergency management services anticipate coastal floods and react to hazardous spills in the water and help improve our response to important ecological decisions in our State.\"\"            This grant helps Rutgers operate the Mid-Atlantic Regional Coastal Ocean Observing System (MARCOOS).  The two primary areas in which this grant will help are:• Maritime safety: by providing surface current maps to improve Search and Rescue, hazardous material spill response and rip current forecasting; and• Ecological decision support: by providing 3-D temperature and circulation data and forecasts for recreational, commercial and fishery management communities, as well as two separate studies on coastal inundation and water quality.            MARCOOS is a joint effort of 20 academic, governmental and private institutions to generate quality controlled and sustained ocean observation and forecast information for the Mid-Atlantic region.                                                     # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fdf906e7-3b3c-49c6-b146-0d52b9c7c924,\"Floor Statement on Rising Gas Prices: As Prepared for Delivery\n                    \n                      May 12, 2008\n                     M. President, we are debating two very different amendments on gas prices that are up for a vote tomorrow.  We have the proposal of the Minority Leader that is full of old ideas that will not work and will do absolutely nothing to affect gas prices now or in the future.  In fact, the only provision in the Minority Leader's amendment that would do anything to lower gas prices is lifted directly from the Democratic Plan to lower gas prices.  This is the provision to temporarily suspend filling the Strategic Petroleum Reserve. In response, the Majority Leader has offered a clean amendment to temporarily suspend filling the Strategic Petroleum Reserve.  This is one of the few options we have to address the pain at the pump our constituents are facing right now. M. President, every time my friends on the other side of the aisle decide to pay attention to our energy crisis their solution is always the same - help Big Oil.  In 2005, they authored energy provisions that gave Exxon-Mobil and other Oil Giants lavish subsidies that totaled over $14 billion, and these companies are reaping the rewards with record profits announced every quarter. Exxon-Mobil recently announced $11 billion in profits over a three month period.   To put that in context, this means Exxon-Mobil's yearly profit this year might well be almost twice the annual budget of the Department of Energy. The authors of these proposals argue that if we simply shovel taxpayer money in the direction of oil companies that this money will eventually trickle its way down to the people.  But as we have all seen, it does not.  Gasoline prices are now over $3.70 per gallon and the specter of $4.00 per gallon gasoline is looming just around the corner.  While oil companies hoard their windfall profits, the American people are suffering. Yet, my friends on the other side of the aisle do not want real relief for this country; they only want to protect Big Oil's huge profits at any cost by opening up every environmentally sensitive area in the country to drilling.  President Bush was right when he said that we are addicted to oil.  But what amazes me is that the President's party is unaware that they continue to act like addicts.  Instead of supporting real plans to conserve oil or even transition to sustainable fuels, they go out in search of their next oil fix. M. President, some claim that the way to lower gas prices is to end a bipartisan twenty-six year moratoria to open up the Outer Continental Shelf to oil exploration and just drill, drill, drill.  But the Energy Information Administration (EIA) projects that even if we opened up the entire Outer Continental Shelf to drilling- Off the East Coast, Off the West Coast, and opened up the entire Eastern Gulf of Mexico, nothing would happen to gas prices.  Why?  First because production would not begin before the year 2017.  The infrastructure to drill for oil is not just a large oil platform, but a network of hundreds of miles of pipelines to transport oil from the platform, onto land and then on to refineries.  This kind of infrastructure simply does not exist on the East Coast and in only limited exceptions on the West Coast.The second reason why opening up all our shores to oil drilling will not lower gas prices is because by the time full production actually ramped up, in 2030, drilling off all of our coasts full tilt would only result in a whopping 3% increase in domestic production. And even in 2030 as our continent is rung all the way around by oil platforms all of this new supply will be eaten up by a 7% increase in domestic demand. The Energy Information Administration (EIA) predicts that --- and I quote --- \"\"any impact on average wellhead prices is expected to be insignificant.\"\"So even opening up all of our coasts to drilling, as the Minority Leader proposes, will have no impact on gas prices at all.  As you can see by this chart, the federal government has been issuing more and more leasing permits for drilling, but at the same time the price of gasoline has continued to rise.In fact, over 80 percent of the resources in the outer continental shelf are already open for exploration!  Since 2001, the Bush administration has issued over 100 new leases. Many of these leases are in the eastern Gulf where the oil industry already has much of the infrastructure necessary to go into production.  But only 12 of these new wells have been drilled. The industry is only developing a small fraction of the area already open for drilling. Why isn't Exxon-Mobil pumping some of its profits into developing these areas? If companies are not interested in developing the large fields already open in the Gulf of Mexico, why is it so critical to open up environmentally sensitive areas to more drilling?M. President, one might say that it is just to be expected that those on the side of Big Oil would use this sort of rhetoric in an election year. But it's much worse than that. The McConnell Amendment could be both economically and ecologically devastating.If you look at the picture here taken after a recent oil spill in San Francisco, this is what we could be routinely facing if we allow widespread drilling on the Outer Continental Shelf.  We could see our beaches closed for business because of oil spills.The New Jersey Shore is a priceless treasure my home state will protect at any cost, but the Shore also generates tens of billions of dollars in revenues each year and supports almost half a million jobs. It simply makes no sense to jeopardize a tourism and fishing economy worth tens of billions of dollars in exchange for a cumulative total of only a half year's supply of oil.  The people of New Jersey cannot afford the risk of millions of gallons of oil washing up on our beaches.  This is not just a New Jersey problem. Florida's beaches generate billions of dollars each year. In South Carolina, Myrtle Beach alone brought in $3 billion in revenue. Do we really want oil washing up onto the pristine Cape Hatteras National Seashore? What about Virginia Beach? Can Maryland's famous blue crabs survive yet another environmental assault?The bottom line is the Minority Leader's proposal will do nothing to lower gas prices, but it will jeopardize coastal economies all along both coasts.  Is there anything we can responsibly do to ease the pain of such high gas prices?  The answer is a resounding yes.One important way to address oil prices that I hope we will be debating more fully in a couple of weeks is to better regulate oil markets.  Many analysts that have testified before the relevant House and Senate committees agree that based on pure supply and demand the price of oil should be somewhere between $50-70 a barrel. So, why are we hitting $125?  In part it's because of excessive speculation on futures markets.  And unlike other markets, such as the commodities involving corn or soybean futures, oil is being traded around the globe with little or no oversight by the US government.  If the Enron disaster teaches us anything it should be that markets cannot be allowed to operate without real oversight.  In the upcoming weeks when the Senate debates the comprehensive Democratic plan to address runaway gas prices one of the most important aspects of that package will be increased regulation of oil markets so we can effectively combat excess speculation and any possible market manipulation.Another important measure to bring short term relief to the pain at the pump is in the Majority Leader's amendment which will be voted on tomorrow.  This amendment would suspend filling the Strategic Petroleum Reserve at least through December 2008. When the people of this country are suffering under almost $4 a gallon gas, when gas prices are pushing up the costs of food, when the price of oil per gallon has broken $125 a barrel, why would we be burying this precious commodity when we need it most.  We should stop pouring all that oil into a hole in the ground until the price of crude oil recedes to $75 or less. This will truly help drive gas prices back down by increasing supply and offer some immediate relief to Americans.M. President, while it is very important that we enact these short term relief proposals, we also must look the long term.  The price of gasoline by itself is not really the problem, but the symptom of an even larger crisis. The crisis we face is that we are totally dependent on one type of fuel for our transportation needs.  And as former CIA Director James Woolsey is fond of saying, by buying oil in such huge quanitites and at such high prices we are helping fund both sides of the war on terror.So, what are the real long-term solutions to ending our dependence on oil and greening our transportation fleet?The first thing we need to do is drastically improve fuel economy.  In 1976, our cars and trucks got 13 miles per gallon. Because of the Arab oil crisis, we passed laws to improve the fuel economy of our passenger vehicles.  From 1976 to 1981, we saw a rapid increase in fuel economy. In 1981, our fleet had improved to 21 miles per gallon.  But since 1981, without the political will to improve fuel economy standards and the rising popularity of SUVs, the average fuel economy of our passenger vehicle fleet actually declined to 20 miles per gallon in 2006. What would have happened if we had kept slowly improving the fuel economy of our vehicles from 1981 to the present? If we had increased fuel economy a modest 2% per year during that time, our new fleet of vehicles would now average 34 miles per gallon. While this is certainly a huge improvement over where we sit today, it was definitely achievable since this figure is still well below standards set in Japan which are over 40 miles per gallon.Astonishingly, if we had followed this course, our current demand for oil would be over one-third less than it is today, down over 2 billion barrels of oil per year. Cumulatively, we would have saved over 30 billion barrels of oil. 30 billion barrels of oil is more oil than the entire proven oil reserves remaining in the United States.  This means that this sensible and achievable policy could have saved us more oil than we could ever hope to gain from domestic drilling. It is commendable that we have finally raised fuel economy standards, but we must make even further reductions if we want to make up for lost time. Of course fuel efficiency is just part of the answer to solving our addiction to oil. We also need tax incentives to increase the production and use of super-efficient vehicles already out there - like hybrids.We need a massive investment in cars that can run on sustainable alternative fuels like electricity or cellulosic ethanol.  Once we truly have a choice of fuels, the grip of our oil addiction will finally loosen.This country also needs to invest in our mass transit infrastructure.  This weekend the New York Times reported that mass transit is up all over the country.  We need a huge investment in mass transit to make sure that we all have multiple transportation options so we are not so reliant on driving. But while most of the Democratic Party supports these sensible policy reforms, my friends on the other side of the aisle are stuck in the past advocating old positions from previous Congresses.  M. President, I hope that this will be the last time I need to rise in this chamber to point out that more oil drilling in environmentally sensitive areas is not the answer to our oil addiction.  It is time for an intervention. It is time for a real cure based on a tough examination and reordering of our energy priorities - and not the tired old policies of the past.Thank you.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5c86cc86-41d5-4627-9994-81f2525876e6,\"GRANT AVAILABILITY ANNOUNCED FOR SENATOR MENENDEZ'S PATIENT NAVIGATOR AND CHRONIC DISEASE PREVENTION PROGRAM\n                    \n                            Health Resources and Services Administration (HRSA) announced first grant application letter of intent due May 22, full application due June 13\n                    \n                      May 9, 2008\n                     WASHINGTON—The Health Resources and Services Administration today announced the availability of grants for Senator Menendez's Patient Navigator and Chronic Disease Prevention Program. The Patient Navigator Program, which Senator Menendez created in 2005 and which now has initial federal funding to be implemented, will help patients, including those in underserved communities, to overcome the barriers they face in getting early screening and appropriate follow-up treatment.Eligible health centers and facilities will be able to apply for the competitive grants to develop and implement patient navigator programs.  \"\"I am proud that these grants are now available to help move the Patient Navigator program to the ultimate goal, which is to help patients get screened early and assist those who receive a life-changing diagnosis and desperately need assistance in making sense of their treatment options,\"\" said Senator Menendez.  \"\"The Patient Navigator will guide patients in these trying emotional situations to the resources available to them in the health care system and their communities. I encourage eligible providers to access this important funding and apply for the grant.\"\" Click on the link below to find out more information about the application.  Please note that the first deadline is May 22, 2008 when letters of intent are due, final applications are due on June 13, 2008: http://www.grants.gov/search/search.do?&mode=VIEW&flag2006=true&oppId=17657Additional Information on Eligibility:Public and nonprofit health centers (including FQHCs as Federally defined), health facilities operated by or pursuant to a contract with the Indian Health Service, hospitals, cancer centers, rural health clinics, academic health centers, or a nonprofit entity that enters into a partnership or coordinates referrals with such a center, clinic, facility, or hospital to provide patient navigator services.                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6dea84a2-6183-4849-8b6e-6cbbe853f803,\"AS MCCAIN APPEARS IN NJ, SEN. MENENDEZ CHALLENGES HIM TO DENOUNCE DRILLING NEAR THE JERSEY SHORE\n                    \n                            Menendez has led efforts in the Senate to defeat plans that would open up drilling less than 100 miles from New Jersey\n                    \n                      May 9, 2008\n                     WASHINGTON - Today, U.S. Senator John McCain will be in New Jersey for a press conference on the topic of the environment. While he is in the state, U.S. Senator Robert Menendez (D-NJ) is challenging him to denounce a plan that would open up drilling for oil and natural gas less than 100 miles from the Jersey Shore.Twice over the past year, Senator Menendez has led efforts in the Senate to defeat plans to drill off the coast of Virginia, which includes areas near New Jersey and could lead to drilling up and down the East Coast. Such a plan is up for a vote again next week in the Senate in the form of a Republican amendment to the Flood Insurance Bill. Senator Menendez released the following statement today:\"\"John McCain likes to talk about protecting our fragile planet, but just this week he spoke out in favor of offshore drilling. If he's going to use our state as a stage to discuss the environment, he better be ready to tell us how he feels about the proposals that would lead to drilling less than 100 miles from the Jersey Shore. I challenge him to denounce these plans, which would directly threaten the environment and economy of our state and would start us down a slippery slope that could lead to drilling all along the East Coast. I also challenge him to not duck the next vote on the offshore drilling plan, which we are expecting in the Senate on Tuesday. Today's incredibly high gas prices and planetary emergency are a reminder that we need a policy that doesn't drill us into a deeper hole but that cuts our addiction to oil, increases energy efficiency, relies on alternative energy sources and keeps our planet intact.\"\"Senator Menendez has introduced the COAST Act to permanently ban drilling off the mid-Atlantic and North Atlantic coasts (http://menendez.senate.gov/newsroom/record.cfm?id=268012). In the past year, he has twice led efforts to defeat plans that would lead to drilling less than 100 miles off the Jersey Shore (http://menendez.senate.gov/newsroom/record.cfm?id=277038 and http://menendez.senate.gov/newsroom/record.cfm?id=294803).                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0aaee075-3623-4ca6-85c4-6136eb2b30fd,\"LAUTENBERG, MENENDEZ ANNOUNCE $495K FOR UPGRADES AT METROPARK STATION\n                    \n                            Grant to Help Improve Passenger Safety, Reduce Crowding on Train Platforms\n                    \n                      May 8, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the U.S. Department of Transportation (DOT) will award New Jersey Transit $495,000 in federal funds for platform upgrades at Metropark Station.            \"\"Thousands of New Jerseyans use the Metropark Station every day.  With record number of passengers traveling by train, we must continue to upgrade our stations so travelers get to destinations safely, comfortably and on time,\"\" Sen. Lautenberg said.  \"\"These funds go a long way in the effort to modernize our public transportation systems, giving commuters options and helping keep cars off the road.\"\"            \"\"Metropark is essential for so many New Jerseyans to get around the state and beyond,\"\" said Sen. Menendez.  \"\"This is the type of investment that can increase the safety and efficiency of our public infrastructure.  Ultimately, we want to help New Jerseyans commute and travel with ease, reduce the number of cars on the road, ease traffic congestion, and spur economic growth.\"\"            This grant, administered by the DOT's Federal Transit Administration, aids the Metropark Platform Reconstruction project which involves constructing new high-level platforms on both ends of the station to improve passenger safety and reduce existing platform crowding.  The westbound platform will be approximately 1,135 feet and the eastbound will be approximately 1,050 feet—making the station able to accommodate 12-car trains.  Both platforms will also be widened to 14 feet.            The new platforms will also include heated and air-conditioned passenger waiting shelters, new lighting, canopies, windscreens, signs and electronic displays to inform passengers of arriving trains.  In addition, all stairs leading to the eastbound platform will be replaced, and the existing under-track pedestrian tunnel and westbound platform stairs will be refurbished.            Metropark is one of the busiest stations in the region, serving nearly 9,000 passengers a day.  The Woodbridge Township station is served by four Amtrak routes, including the Northeast Regional and Acela lines.  It is also served by NJ Transit's Northeast Corridor line and connecting bus services.                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3e880443-d45e-4c64-8a8c-29c4509df18b,\"SENATOR MENENDEZ STATEMENT ON THE 60TH ANNIVERSARY OF THE FOUNDING OF ISRAEL\n                    \n                      May 8, 2008\n                     WASHINGTON - Today, we mark the sixtieth Anniversary of Israel's founding and U.S. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, gave a speech on the Senate floor to honor and congratulate Israel on this occasion. The following are excerpts from his speech:\"\"On April 22nd of this year, we here in the United States Senate unanimously passed a resolution expressing our unwavering commitment to the sovereign and independent State of Israel. 60 years after its founding, we now witness a strong nation, a steadfast ally and strategic partner of the United States, a dynamic democracy with a thriving economic, political, cultural, and intellectual life, that survives despite the heavy costs of war, terrorism, and unjustified diplomatic and economic boycotts.\"\"\"\"We now witness a compassionate nation, which regularly sends humanitarian aid, search-and-rescue teams, mobile hospitals, and other emergency supplies, to help victims of disasters around the world—and which has taken in millions of Jews from countries around the world.\"\"\"\"By honoring and commemorating the 60th anniversary of Israel, we do more than congratulate a nation. We take a stand against hatred and discrimination everywhere. We recognize a triumph over fear, an achievement of industriousness, a victory of hope. We express our sincere confidence that despite the challenges its people have faced, despite the threats to their very existence, Israel has, and it shall, overcome.\"\"Click below to see the video of Senator Menendez's speech on the Senate Floor: http://menendez.senate.gov/links/050808_RobertMenendez.ramClick here for the audio of his speech: http://demradio.senate.gov/actualities/menendez/menendez080508.mp3Text of Senator Menendez's full remarks on the Senate floor, as prepared for delivery:M. President, I rise to honor and celebrate Israel's 60th anniversary. On a sad note, this is the first year we honor Israel's anniversary that we do so without my friend and former colleague Tom Lantos. Mr. Lantos was the only Holocaust survivor to ever serve in Congress and his recent passing has left a hollow void for all of us.M. President,On April 22nd of this year, we here in the United States Senate unanimously passed a resolution expressing our unwavering commitment to the sovereign and independent State of Israel.60 years after its founding, we now witness a strong nation, a steadfast ally and strategic partner of the United States, a dynamic democracy with a thriving economic, political, cultural, and intellectual life, that survives despite the heavy costs of war, terrorism, and unjustified diplomatic and economic boycotts.We now witness an innovative nation, which has developed some of the leading universities in the world, and produced 8 winners of the Nobel Prize.We now witness a compassionate nation, which regularly sends humanitarian aid, search-and-rescue teams, mobile hospitals, and other emergency supplies, to help victims of disasters around the world—and which has taken in millions of Jews from countries around the world.And these accomplishments have followed one of the most tragic events in human civilization: the slaughter of more than 6 million European Jews during the Holocaust.We are reminded that, as I have said many times before on this floor, the events of the Holocaust are not distant and are not buried in the past. Today, those who survived the camps live to tell us their story and the stories of their families and their lives before the Holocaust. And their children and grandchildren are here with us, too. They are living testimony to the strength, courage, and optimism of their parents and grandparents.  But in their hearts and in their souls they feel the pain and suffering of those who raised them. In them, too, the past is present.Echoes from that tragedy still rattle our world in other ways.Every time a hateful slogan is spray-painted on a wall, every time a bigoted joke spreads like wildfire on the Internet, every time a synagogue somewhere in the world has to station armed guards outside it so its members can pray in peace, and every time a terrorist rocket attack shatters a pane of glass at a family's home or a school, we feel the dark shadows of history falling upon our time.It is a harsh reality, that sixty years after its founding, the nation of Israel continues to face mounting threats to its way of life and existence. Sixty years after the establishment of a homeland for the Jewish people, anti-Semitism is very much alive.And so those who speak against the sovereignty of Israel or who believe that anti-Semitism is an attack that need not be answered do not recognize the consequences of history.  In fact, an attack against anyone simply because of race or religion is ultimately the beginning of the unraveling of civilization.  So it is in our common interest to raise our voices against anti-Semitism.By honoring and commemorating the 60th anniversary of Israel, we do more than congratulate a nation. We take a stand against hatred and discrimination everywhere. We recognize a triumph over fear, an achievement of industriousness, a victory of hope. We express our sincere confidence that despite the challenges its people have faced, despite the threats to their very existence, Israel has, and it shall, overcome.M. President, Israel and the Jewish people have held many commemorations and events over the past week. Yesterday was a day to remember those who gave their lives to protect the state of Israel and others who have fallen victim to attacks from its enemies. Today is a day to celebrate the nation's sixty years of life. It is a day for celebration and strong action. On this day, we pause to commemorate all those who have contributed to make Israel such a strong nation. And we pledge to continue to strengthen our bonds of close friendship and cooperation, so that, as proud as this nation's history is, the future will be brighter still.Thank you.                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=44b93e66-6bbe-4600-8b62-97e287481100,\"NATIONAL LATINO MUSEUM BILL SIGNED INTO LAW\n                    \n                      May 8, 2008\n                     Washington, DC - Senate Democrats hailed the enactment today of a bipartisan bill to make the vision of a National Museum of the American Latino a reality. The Commission to Study the Potential Creation of the National Museum of American Latino Act of 2007 (S.500/H.R. 512) would establish a 23-member commission to study the potential creation of a national museum in Washington, D.C. dedicated to the art, culture, and history of the Latino Community in the United States. The Latino museum legislation signed by the President today was a part of the Consolidated Natural Resources Act of 2008.\"\"I am proud that Senate Democrats led the way to approve legislation, which was signed into law today, that honors the countless contributions of Hispanic Americans to our country,\"\" Senate Majority Leader Harry Reid said. \"\"By enacting a bill that would bring us a step closer to honoring Latinos with a national museum in Washington, D.C., we helped bring long overdue recognition to the vital place that Latinos have in our national mosaic.\"\"\"\"I believe we must celebrate the diversity of our Nation and Latinos have been a significant part of American history. They have contributed to nearly every facet of our culture, including the arts, business and our military,\"\" said Senator Ken Salazar (D-CO). \"\"Today is a big day for the Latino community throughout the United States as we move forward to highlight the rich contributions of the community to American life in a national museum.  The end result will be a more complete record of our past and a better experience for the 20 million visitors that come to our nation's capital to learn about our shared culture and history.\"\"\"\"The Congress and the President have joined together to acknowledge that America's success would not be possible without the political, cultural and economic contributions of the Latino community,\"\" said Senator Robert Menéndez (D-NJ). \"\"The National Museum of the American Latino Community is an idea that is overdue -- Latino culture, dreams and advancements are not outside but within the very fabric of American life, and I am delighted that we are working to share these proud traditions with the public.\"\"\"\"If progress is measured in baby steps, I think it's fair to say that the president's pen today has brought this important project into its adolescence. It is my hope that the commission will begin its work soon so that this vision, this dream, will further mature into full reality. It is truly an incredible day,\"\" Congressman Xavier Becerra (D-CA), the House author of the Commission to Study the Potential Creation of a National Museum of American Latino Act, said.The bill sets up a 23-member commission charged with producing three things: one, a national conference to bring stakeholders, experts, policymakers and other interested parties together to discuss the museum's viability; two, a fundraising plan to create an extensive public-private partnership; and three, a report to Congress detailing a recommended plan of action on how to move forward with taking the museum from concept to reality. All of this will happen within 24 months of the bill being signed into law.                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c4f75d6e-ec4b-48f8-8969-da9df09aaf16,\"SENATE PASSES KERRY RESOLUTION ON HUMANITARIAN AID FOR BURMA\n                    \n                            After Devastation of Cyclone, Resolution Asks that Roadblocks to Aid be Lifted, Evaluation of Aid Strategy\n                    \n                      May 8, 2008\n                     WASHINGTON, DC - The Senate has passed a resolution introduced by Senator John Kerry and a bipartisan group of 19 Senators urging humanitarian aid to the Burmese people following the devastation of the cyclone and accompanying tidal wave. There are currently 100,000 people dead and tens of thousands missing, with disease spreading rampantly throughout the flooded country. The resolution was cosponsored by Foreign Relations Chairman Joe Biden (D-DE), Ranking Member Richard Lugar (R-IN), Senate Republican Leader Mitch McConnell (R-KY), along with Senators Dianne Feinstein (D-CA), Dick Durbin (D-IL), Chris Dodd (D-CT), Barack Obama (D-IL), Jim Webb (D-VA), Lisa Murkowski (R-AK), Ted Kennedy (D-MA), Bob Menendez (D-NJ.), Russ Feingold (D-WI), Joe Lieberman (D-CT) Chuck Hagel (R-NE), Barbara Boxer (D-CA), Hillary Clinton (D-N.Y.), Mary Landrieu (D-LA) and Elizabeth Dole (R-N.C.)The senators requested that the Bush Administration send the aid they have promised the troubled nation, and also sustain humanitarian aid to the Burmese people beyond the immediate crisis created by Cyclone Nargis. The resolution also asked that any restrictions placed by Burma's State Peace and Development Council on international non-governmental organizations be lifted, so that they can freely lend assistance, medical attention and funds to the victims of the disaster. Lastly, the resolution asks that the United States Agency for International Development conduct a comprehensive evaluation of the organizations capable of navigating these political roadblocks to effectively lend assistance to the Burmese people.The full text of the resolution can be found at this LINK. \"\"At this tragic moment, the United States has a responsibility to help the Burmese people and push the junta to allow humanitarian aid to get to the people who need it the most, freely and rapidly,\"\" said Kerry. \"\"This could be remembered as the moment when the United States and the world came to the aid of the Burmese people and made it clear that while we loathe the junta that has isolated Burma from the world and oppressed its citizens, we find common cause with the people of Burma and we will be there by their side at this difficult time.\"\"\"\"We're hearing reports that the death toll in Burma may reach over 100,000 - making it one of the most fatal disasters in modern history,\"\" said Biden.  \"\"The United States and the international community have a moral obligation to step up and offer immediate humanitarian assistance to the region.   The Burmese government has to do its part as well, by allowing in aid workers and lifting restrictions on the flow of international assistance.  Together, we must act now in order to prevent disease, starvation and a lack of resources from claiming even more lives.\"\"\"\"The U.S. Senate makes this emphatic humanitarian statement, expressing our sympathy for the people of Burma, and encouraging that all possible assistance is extended quickly to them,\"\" said Lugar.\"\"My prayers go out to the families of those killed, injured or missing in this past weekend's natural disaster in Burma,\"\" said McConnell.  \"\"It is my profound hope that the regime will permit the U.S. to help the Burmese people recover from this tragedy.\"\"\"\"Cyclone Nargis has left a path of death and destruction in its wake. The people of Burma are in desperate need for food, shelter, medical assistance and other humanitarian aid,\"\" Feinstein said. \"\"It's our hope that the military regime will open the country to disaster assessment teams and international aid from the United States and other nations who stand ready to help.\"\"\"\"Cyclone Nargis has left a path of devastation and despair across Burma, and we must take immediate steps to help alleviate the dreadful living conditions that the survivors are facing,\"\" said Dodd.  \"\"The road to recovery will be long, and we must stand ready to aid the Burmese people as they begin to pick up the pieces.  In light of this unprecedented need for humanitarian aid, I sincerely hope that the State Peace and Development Council will lift current restrictions on foreign assistance in Burma and allow the United States to provide the aid that is so desperately needed.\"\"\"\"The tragedy in Burma is heartbreaking,\"\" said Obama.  \"\"I support the United States' commitment to deploying disaster assistance and aid to the region, and I urge the Burmese government to take the steps necessary to ensure the international community can provide help to those who need it.\"\" \"\"Through tragedy, there may be some hope for the future for the citizens of Burma.  After years of being isolated from the rest of the world, the United States along with the international community can use this opportunity to assist Burma and demonstrate good will towards the Burmese people,\"\" said Webb. \"\"The time is ripe to move beyond the strategy of isolation and sanctions and toward the goal of opening up Burma.  I am hopeful that the administration will move forward in that spirit and that the Government of Burma will accept the outpouring of international aid and allow international relief organizations access throughout the country.\"\" \"\"I have the utmost sympathy and support for the people of Burma,\"\" said Murkowski.  \"\"I want to assure them that the United States will provide assistance in this time of great need.  As citizens of not only the United States, but of the whole world we must come to each other's aid in times of such terrible disasters.\"\"\"\"As the tragedy continues to unfold in Burma, the United States should take a firm leadership role in providing a decisive, generous humanitarian response,\"\" said Kennedy.  \"\"The Burmese Government must do its part as well and allow assistance to reach those in need.\"\"Menendez said, \"\"We are standing together as Americans, as citizens of the world, ready and willing to do what it takes to help the Burmese people get food, water and shelter and recover as best they can from this unimaginable tragedy. Unless the ruling military junta in Burma lets international aid workers provide assistance freely throughout that nation, the mind-boggling death tolls will rise and the extreme suffering will continue. Now is not a time to consolidate power, it is a time to accept the world's cooperation and compassion.\"\"\"\"The devastation caused by the cyclone in Burma is tragic and overwhelming but Americans stand ready to help the people of Burma in any way we can,\"\" Feingold said.  \"\"The Burmese government must lift its restrictions and allow the international community to help prevent the further loss of life.\"\" \"\"This bipartisan resolution sends an unmistakable message to the Burmese people that the United States stands ready to help them in the wake of this terrible natural disaster. Rather than compounding the suffering of the Burmese people, it is now critical that the military junta put aside its paranoia, lift restrictions on the delivery of aid, and allow its people to receive the humanitarian relief they so desperately need,\"\" said Lieberman.\"\"Devastating humanitarian disasters like these do not heed borders, boundaries or political circumstances.  They affect only the innocent, and we all need to work towards the common goal of easing their plight.  I urge the Burmese Government to accept our offer of immediate humanitarian assistance,\"\" Hagel said.\"\"We in Louisiana understand the wrath of a catastrophic natural disaster,\"\" Landrieu said. \"\"Countries all over the world came to our aid in 2005, and we now have the moral responsibility to get aid to Burma as quickly and efficiently as we can to help the suffering survivors. The military junta must back down and let the international community bring critical resources to the Burmese people.\"\"\"\"From my time with the American Red Cross, I know first-hand how important the humanitarian response is to those who are suffering.  There is much to be done in the wake of Cyclone Nargis and time is of the essence.  Aid to the people must not be hindered, and I urge the military junta to let the United States help,\"\" said Dole.                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=42a79c0d-5306-480c-94b5-3b514ea2e509,\"SENATE PANEL PASSES BILL DESIGNATING GREAT FALLS IN PATERSON A NATIONAL HISTORIC PARK\n                    \n                            Bill Sponsored by Lautenberg, Menendez, Pascrell Would Make N.J. Natural Treasure a Historic Landmark\n                    \n                      May 7, 2008\n                     WASHINGTON, N.J. - A Senate panel today passed legislation authored by U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) and Rep. Bill Pascrell, Jr. (D-NJ-08) to designate the Great Falls in Paterson, New Jersey a National Historic Park.            \"\"The Great Falls in Paterson is a landmark that deserves recognition as a national historic park.  Giving the Great Falls this designation would go a long way toward recognizing the beauty and history of the site and helping preserve it for future generations,\"\" Sen. Lautenberg said.            Sen. Menendez said, \"\"The Great Falls Park is a Garden State jewel -- it has one of the most impressive and picturesque falls in the country and also represents Alexander Hamilton's unique vision of America come true.  No other site in the nation more richly represents the remarkable transformation of our rural agrarian society based in slavery into a modern global economy based in freedom.  We want to make sure these natural and historic resources are preserved for generations to come.\"\"            \"\"Approval of the Great Falls National Park Act through the Senate Energy and Natural Resources Committee is a major advancement in our campaign to fully embrace Paterson's historic role in the making of America.  I am proud of the work that Senators Frank Lautenberg and Bob Menendez have completed to reach this point and am encouraged by the growing bipartisan support in Congress to recognize the seminal role that Alexander Hamilton and the Great Falls played in creating America's industrial economy,\"\" said Rep. Bill Pascrell.            The Senate Energy and Natural Resources Committee passed the bill unanimously, and it now proceeds to the Senate floor.  The House of Representatives already passed companion legislation in October 2007.            The bill would designate the Great Falls in Paterson as a National Historic Park, which would enable the park to receive federal funding.  The Great Falls is the second-highest waterfall in the eastern United States.                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b700e535-143a-47ef-992a-0ab9f45d5b3e,\"LAUTENBERG, MENENDEZ ANNOUNCE $100,000 TO SUPPORT ECONOMIC DEVELOPMENT IN SOUTHERN NEW JERSEY\n                    \n                            Grant to Set Framework for Job Creation, Capital Investment Throughout Atlantic, Cape May, Cumberland and Salem Counties\n                    \n                      May 2, 2008\n                     WASHINGTON, D.C. - Today, U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) announced that the U.S. Department of Commerce has awarded a $100,000 grant to the South Jersey Economic Development District.  The federal funds will be used to plan and implement a strategy to encourage economic development throughout the state's southern counties.            \"\"These funds will help to ensure that southern New Jersey enjoys economic productivity for years to come,\"\" said Sen. Lautenberg.  \"\"By creating jobs and offering new opportunities for growth, this grant will help South Jersey remain a vibrant economic engine for our state and the entire region.\"\"            \"\"It is critical to invest in Garden State projects like these with the purpose of developing strategies to create new jobs and to strengthen the economy of our state,\"\" said Sen. Menendez.  \"\"I am delighted to announce these funds with my colleague Sen. Lautenberg as we continue to work in Congress to help New Jerseyans in these hard economic times.\"\"            The South Jersey Economic Development District, located in Millville, will use the $100,000 in federal funds to design a comprehensive economic development strategy (CEDS) to serve Atlantic, Cape May, Cumberland, and Salem counties.            This grant, awarded by the Economic Development Administration (EDA) of the U.S. Department of Commerce, comes on the heels of $2 million invested earlier this year by the EDA in a program managed jointly by the South Jersey Economic Development District and the New Jersey Economic Development Authority.The CEDS will encourage cooperation between public and private entities with the goal of creating new employment and strengthening the regional economy.                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=78fa6869-69b6-49ad-96e2-31fffaaf0ef5,\"Legislation for Safe and Timely Meat Recalls and Better Public Communication on Food Issues Introduced By U.S. Senator Robert Menendez\n                    \n                            Bill gives the USDA the authority to impose mandatory meat recalls, improves School Lunch Program communications system\n                    \n                      May 1, 2008\n                     WASHINGTON –U.S. Senator Robert Menendez (D-NJ) has introduced The Safe School Lunch Act, a bill to help avoid a repeat of the food safety scare that parents, children, superintendents, school employees, and food service personnel throughout the country, including 170 New Jersey school districts, recently had to endure when they found out that millions of students could have ingested possibly tainted beef.  U.S. Senator Frank Lautenberg (D-NJ) is an original co-sponsor of the bill. \n\n“Having your children get sick from eating unsafe meat in their school cafeterias is the last thing families need to worry about,” said Sen. Menendez. “Our system for food safety is broken and this bill would empower the USDA to fix it. It would make sure they are better equipped to stop the distribution of meat products that are unsafe and that there is better communication with school officials and parents.” \n\nCurrently, the USDA has no authority to impose mandatory meat recalls and relies on the industry to participate in voluntary recalls.  In addition, the federal agency does not keep records tracing the trade of meat from the slaughterhouse, through product processing, to distribution and to schools themselves.  Without these records, the USDA cannot quickly and effectively communicate to schools in a timely manner and avoid food poisoning among students. Senator Menendez’s legislation will address these concerns.\n “With the massive meat recall earlier this year, it took almost 3 weeks for the plant to voluntarily recall the meat,” said Senator Menendez.  “It took a full 3 days after the recall for schools to be given proper instructions as to what to do with the beef.  Many children ingested the meat, and thankfully no one became ill, but this is why we need to take a first step toward ensure this never happens again.  Students could have been sickened by e-coli or salmonella – life-threatening illnesses that could have turned a scare into a tragedy.”\nThe Safe School Lunch Act\n•    Gives the Secretary of Agriculture authority to immediately cease distribution and/or order a recall of meat, meat products, poultry, or poultry products if the Secretary finds the products may cause serious, adverse health consequences or may be adulterated.  Currently, the USDA has no mandatory recall authority and must depend on the industry’s voluntary compliance with recall requests from the agency.\n•    Requires the USDA to improve the recall procedure in relation to the National School Lunch Program. The USDA will provide the schools with better information and more training regarding the following: any meat, meat products, poultry, or poultry products recalls or recall procedures, disposal of meat, meat products, poultry, or poultry products that have been recalled, and informing parents of a recall in a timely manner. \n•    The USDA will also be required to establish an information clearinghouse on the internet and ensure that any information is up-to-date and written in a clear manner that is accessible by school employees and parents.  \n•    Within 180 days, the USDA will also promulgate regulations that ensure the agency can track all meat, meat products, poultry, or poultry products from the slaughter premises through to final distribution to the schools. \n•    Requires USDA to formulate and initiate a Food Protection Plan. The USDA would be required evaluate and review its own inspection and recall procedures for optimal consumer safety and report back to the Committee on Agriculture of the House of Representatives and the Committee on Agriculture, Nutrition, and Forestry of the Senate within 180 days. \nIn letters to the USDA, Senator Menendez has called for:\n•    The USDA to immediately explain serious flaws in the current recall procedure.•    The USDA to finalize its proposed rulemaking on making public all retailers who have sold recalled meat.  Currently this information is treated as a trade secret, which denies consumers valuable food safety information.   •    USDA to quickly fill all inspector vacancies.\nSenator Menendez has also:  \n•    Called on the Farm Bill Conference Committee retain language requiring the Food Safety and Inspection Service to maintain a registry of reportable food events.  •    Cosponsored The Downed Animal and Food Safety Protection Act, which requires a comprehensive ban on the slaughter of downed animals for human consumption.\n                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d72eec22-d1c7-4052-a5f6-8fa58ecb4afb,\"SENS. MENENDEZ, CLINTON LEAD PUSH TO END COZY RELATIONSHIP BETWEEN AIRLINES, FAA\n                    \n                            Amendment to FAA bill would combat cronyism with stricter ban on contact between FAA and former employees who recently left for airline industry\n                    \n                      May 1, 2008\n                     WASHINGTON - U.S. Senators Robert Menendez (D-NJ) and Hillary Rodham Clinton  (D-NY)  are leading the push to end the cronyism between the Federal Aviation Administration and airlines that has raised serious safety concerns and caused cancelled flights due to ignored aircraft inspections. They will offer an amendment to strengthen the FAA Reauthorization bill's \"\"revolving door\"\" provision. The amendment would prevent FAA inspectors or managers who supervise inspectors from working for airlines that they inspect for two years after leaving the agency. Conversely, it would prevent airline employees from moving to the FAA to inspect or supervise inspections on that airline for two years.\"\"You know you have a safety crisis when officials at the FAA let their friends at the airlines slide on inspections,\"\" said Senator Menendez. \"\"We have to cut the cord of cronyism between the airlines and the agency charged with ensuring passenger safety.\"\"\"\"When senior FAA inspectors leave their positions to join the same airlines they used to regulate it sends the wrong message, and raises serious questions about transparency and safety within the industry,\"\" said Senator Clinton. \"\"We've seen the mess it caused in the form of thousands of delays and cancelations that were caused by massive lapses in required inspections. The revolving door that exists between the aviation industry and the FAA compromises the safety of air travel for all Americans, and it needs to be slammed shut.\"\"                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c9943361-05a6-45e1-ac93-18bf751c81fc,\"SENATE DEMOCRATS DISCUSS EFFORTS TO MAKE AIR TRAVEL SAFER AND MORE EFFICIENT, PROTECT CONSUMER RIGHTS\n                    \n                      April 30, 2008\n                     Washington, DC—Democratic Senators Barbara Boxer, Frank Lautenberg and Robert Menendez joined aviation experts Wednesday to discuss Democratic efforts to make air travel safer and more efficient, and to protect consumer rights.  Our nation's economic well-being depends on our air-traffic systems being as safe and as efficient as possible, and Democrats are committed to achieving that goal for the thousands of air travelers experiencing flight delays and cancellations every week. \"\"With this bill, we are taking the first step toward modernizing the FAA's air traffic control system and making the necessary investments in our aging airport infrastructure to ensure that our aviation system is the safest in the world and able to meet the needs of the flying public,\"\" Boxer said.  \"\"We are never going to be able to anticipate every problem, but never again, if the bill becomes law, will airlines be able to hold passengers captive for hours and hours without access to clean water, food and adequate restroom facilities.  Our nation's economic stability depends on the safety and efficiency of our aviation system—this bill will help move the FAA into the 21st century.\"\"Said Lautenberg: \"\"Our FAA bill is what our country needs—and would make the improvements the flying public deserves.  Whether it's endless flight delays, poor customer service or the recent disturbing reports of safety inspection failures that led to thousands of flight cancellations, airline passengers deserve better.  It is clear Congress must act to restore public confidence in our aviation system and do all we can to keep travelers, flight crews and air traffic controllers safe.\"\"\"\"The flying public is encountering plenty of turbulence when they travel these days - and that's before they even get on the plane,\"\" Menendez said.  \"\"Canceled flights, endless waits in the terminal or on the tarmac, worries about near misses on the runways or in the skies - these are all part of what the flying experience has become.  The FAA isn't adequately addressing the issues of safety and efficiency in the air traffic system, so we have to make sure they're addressed in Congress.  In these tough economic times, we must have an air traffic system that flows as safely and efficiently.  We're looking to help alleviate headaches at the airport, help keep the commercial engine of this nation running and improve fuel efficiency for struggling airlines.\"\"Said Senator Max Baucus: \"\"America's skies must be safe for every traveler.  The FAA bill before the Senate will fund the latest in satellite-based air traffic control to keep our country moving safely and efficiently.  From business travelers to family members visiting across the country, the NextGen system will make air travel safer and reduce delays for millions of airline passengers.\"\" \"\"This bill is critically important to aviation safety because it would restore fairness to our collective bargaining system and stem the tide of controllers leaving the FAA out of anger and frustration over the FAA's imposed work and pay rules, which have increased the stress and fatigue of the job, caused a spike in serious runway incidents and operational errors, destroyed morale and left us with a 16-year low in the ranks of experienced controllers,\"\" said Patrick Forrey, President of the National Air Traffic Controllers Association.  \"\"Over 2,600 air traffic controllers and trainees - nearly one-fifth of the workforce - have left their jobs since the FAA's draconian labor action on Sept. 3, 2006.  We need this bill to persuade veteran controllers to stay on the job a few years longer, keep young trainees and experienced military controllers from leaving over low pay and restore trust and respect to our workplaces.  Furthermore, this bill will advance the modernization of our vital infrastructure and force the FAA to again include controllers and restore collaboration.\"\"Said Edward Wytkind, President of the Transportation Trades Department, AFL-CIO: \"\"Americans cannot wait any longer for an FAA bill to address the deteriorating state of our aviation system.  This legislation will ease mounting delays, make air travel safer for workers and passengers alike, modernize our aviation system and create good jobs.\"\"                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=68287b9d-178a-4cab-a892-38227b812225,\"AS AUTISM AWARENESS MONTH DRAWS TO CLOSE, SEN. MENENDEZ UNVEILS PLAN TO SUPPORT FAMILIES DEALING WITH AUTISM\n                    \n                            Three-part legislative package includes program to guide families seeking services and care, public awareness and housing for adults with autismNew Jersey has highest rate of autism - 1 in 94 children\n                    \n                      April 28, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) unveiled new legislation today to support families dealing with autism spectrum disorders. Senator Menendez was joined by the groups Autism Speaks and the New Jersey Center for Outreach and Services for the Autism Community (COSAC), as well as local parents of autistic children, in announcing the plan, which comes as Autism Awareness Month draws to a close.The Helping HANDS for Autism Act is a three-part legislative package that includes a program to guide families seeking services and care, increased public awareness and housing for adults with ASD. At 1 in 94 children diagnosed with ASD, New Jersey has the highest rate in the nation.\"\"As a society, we have to make sure that our autistic citizens and their families never feel abandoned or ignored by the community,\"\" said Senator Menendez. \"\"Families dealing with autism should have a helping hand if they want one, and that's the purpose of these programs - so that we can be there for them. New Jersey families are touched by autism spectrum disorders more often than families anywhere else, so any nationwide autism program like this will end up helping our state tremendously.\"\"\"\"Each of the three titles included in this legislation offers an important opportunity to address an area of concern for families affected by Autism,\"\" said Elizabeth Emken, Vice President, Government Relations, Autism Speaks. \"\"Autism Speaks thanks Senator Menendez for his leadership in helping families face the challenges associated with autism\"\".\"\"Nothing is more important to families then to know their government understands the issues they're facing and to present solutions to aid them,\"\" said Leslie Long, Director of Public Policy and Systems Advocacy COSAC. \"\"Senator Menendez has empowered the autism community through his impactful legislation.\"\"HELPING HANDS FOR AUTISM ACT OF 2008SPONSORED BY SENATOR ROBERT MENENDEZAn Act to Increase Housing, Awareness, and Navigation Demonstration Services (HANDS) for Individuals with Autism Spectrum DisordersTITLE I: AUTISM NAVIGATORThe Helping HANDS for Autism Act creates a grant program to provide autism navigator services to help families of individuals with autism spectrum disorders ‘navigate' the complex, fragmented, and often confusing web of services and care that they need.  Navigators will help guide families to current health, education, housing and social services that are often available to individuals in the autism spectrum.  Too often families feel overwhelmed after diagnosis and often lost as to where to turn for help.  For example, this program will help connect families to important treatment options soon after diagnosis, help families identify education options, help coordinate individuals' care and community support.  This program would provide a trained, knowledgeable hand to help families from the moment of diagnosis throughout their child's development.TITLE II: AUTISM AWARENESSThis bill provides for the development, demonstration and dissemination of a standard curriculum for the training of first responders (police, fire departments, emergency medical technicians and other volunteers) in assisting individuals with autism and other cognitive behavioral disabilities.  It provides grants to states and local government to support training of first responders.  People with developmental disabilities, including autism, have up to seven times more contact with law enforcement officers than others, according to an article in the F.B.I. Law Enforcement Bulletin in April 2001.  That is why training is so important.  Something as simple as first responders turning off flashing lights and sirens on a police car could make the difference between a peaceful or chaotic encounter. TITLE III: HOME OF THEIR OWNThis bill also addresses the serious lack of sufficient housing for adults with autism.  It creates a HUD task force comprised of appropriate national and state autism advocacy groups, community-based organizations and parents who are charged with developing a housing demonstration grant program for adults with autism.  The goal of the grant program is to provide individualized housing and services to adults with autism spectrum disorders. Supported by:Autism SpeaksNew Jersey Center for Outreach and Services for the Autism Community (COSAC)The Daniel Jordan Fiddle Foundation                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a94dc475-a56c-4baa-9917-e3bf28920d38,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $130K TO SUPPORT COMMUNITY SAFETY INITIATIVES\n                    \n                            Grant from the U.S. Department of Labor Will Aid Job-Training and Mentoring Programs Aimed at Reducing Inmate Recidivism\n                    \n                      April 25, 2008\n                     WASHINGTON, D.C. - Today, U.S. Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) announced today that the U.S. Department of Labor will award the New Jersey Department of Corrections more than $130,000 in federal funds to help support the agency's job training and mentoring programs.  The federal funds will be used as part of a range of initiatives to help former prisoners find employment and reintegrate into their communities.\"\"These funds are crucial in the effort to help ensure prisoners a safe, secure and productive reentry into the workforce,\"\" said Sen. Lautenberg.  \"\"Our residents, our economy and our state all benefit from programs like these to help individuals make the transition back home.\"\"\"\"It is proven that programs like these not only train prisoners to find jobs and become productive citizens after serving their sentences but also save the state money by improving the productivity of their citizens and lowering the chances that these individuals will commit crimes in the future,\"\" said Sen. Menendez.  \"\"These funds will promote safety and the economy in our state.\"\"The funding is part of the Fiscal Year 2008 Department of Justice Prisoner Re-entry Initiative, and is administered by the Labor Department's Employment and Training Administration.  The New Jersey Department of Corrections, located in Trenton, will use the $130,434 to support on-the-job training, basic skills remediation, counseling, case management, mentoring and other re-entry services.                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=17f1107d-0605-46eb-bb0e-f9912787faff,\"SENATE COMMMITTEE APPROVES MENENDEZ BILL TO SUPPORT THE MUSEUM OF THE HISTORY OF POLISH JEWS IN WARSAW\n                    \n                      April 25, 2008\n                     WASHINGTON-This week, the U.S. Senate Foreign Relations Committee passed a bill, introduced by Senator Robert Menendez (D-NJ), that would provide assistance for the Museum of the History of Polish Jews in Warsaw, Poland.  The Museum, which will stand on the grounds of the former Jewish Quarter in Warsaw, has great historic and symbolic significance and is expected to attract hundreds of thousands of people from all over the world.  The bill, \"\"Support for the Museum of the History of Polish Jews Act of 2008,\"\" would authorize a contribution of up to $5,000,000 to the museum.\"\"I am delighted that the committee supported this bill to protect a heritage that we cannot afford to let slip away,\"\" said Sen. Menendez. \"\"The museum seeks to preserve, educate and commemorate the rich legacy of Polish Jewish history.\"\"The Museum will be an educational and cultural center commemorating a thousand years of Polish Jewish history and is being widely supported and funded in both the public and private domains - by the City of Warsaw, the Polish Government, the German Government, as well as by corporate and foundation support in Poland, the United States, Israel and throughout Europe. In 2006, the museum moved into the last phase of project design and in June 2007, an official groundbreaking ceremony took place presided over by Poland's President Lech Kaczynski.  The museum is expected to open to the public in early 2010.According to the U.S. Census of 2000, 9,000,000 Americans are of Polish ancestry.  Because it is vital to the interests of our nation to preserve and protect artifacts associated with the heritage of United States citizens and to encourage scholarship and learning about that heritage, the Museum of the History of Polish Jews deserves our support.  At the beginning of World War II, Poland had the largest Jewish population in Europe, a population that was largely eradicated during the war.   The Jewish presence in Poland spanned a period of 1000 years - from their arrival in medieval Poland, through the golden ages of the 16th and 17th centuries, the pre-war years, the Holocaust, after World War II, and up to the present.  The Museum will focus on all these periods, on the enriching affect of the Jewish culture in Poland, and on building bridges between people of diverse cultures.                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1ecad618-b417-440c-9105-d95f9a908bdc,\"IMMINENT PACT BETWEEN PAKISTAN AND EXTREMISTS IS TROUBLING FOR U.S. SECURITY, SAYS SEN. MENENDEZ\n                    \n                            Member of Foreign Relations Committee has pushed Bush administration on Pakistan policy\n                    \n                      April 25, 2008\n                     WASHINGTON - The Pakistani government is reportedly nearing an agreement with extremist groups in the area along the Pakistan-Afghanistan border - an agreement that could lead to a withdrawal of Pakistani troops from that area. This Federally Administered Tribal Area is of major concern to U.S. security interests because al Qaeda has regrouped in this safe zone.U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee who has focused intently on the situation in Pakistan, today released the following statement:\"\"Only the Bush administration could send 10 billion U.S. taxpayer dollars to Pakistan to fight extremists, then watch it turn into a treaty. Just as the government report said last week, the White House has no plan to get the terrorists who killed 3,000 Americans on 9/11. The Bush administration needs to channel its obsession with staying the course in Iraq into an obsession with bursting Osama bin Laden's protective bubble along the Pakistan border.\"\"Our government has blindly supported the Government of Pakistan under the hopes that it would disrupt al Qaeda, but this is failing. The administration needs to tell us what other options it is pursuing, because following a stay-the-course philosophy does not secure our country.\"\" Senator Menendez is chairman of the Senate Foreign Relations subcommittee in charge of international assistance and has held hearings examining the effectiveness of more than $10 billion in U.S. assistance to Pakistan since 9/11 (http://menendez.senate.gov/newsroom/record.cfm?id=287201). Last week he helped unveil a blunt Government Accountability Office report showing that the U.S. has no concrete plan to get the terrorists along the Pakistan-Afghanistan border (http://menendez.senate.gov/newsroom/record.cfm?id=296311).                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bb3f9056-ddea-4e53-b007-93780cefad47,\"SEN. MENENDEZ STANDS UP FOR FILIPINO WWII VETERANS\n                    \n                            NJ Senator speaks passionately in favor of successful amendment to give heroes what the veterans benefits they deserve\n                    \n                      April 24, 2008\n                     WASHINGTON - Today, U.S. Senator Robert Menendez (D-NJ) spoke passionately in favor of a successful bill that will give Filipino veterans of World War II the veterans benefits they deserve. These veterans were among of the thousands who answered U.S. President Franklin Roosevelt's call to the people of the Philippines to fight alongside out troops in 1941.The Veterans Benefits Enhancement Act contains a number of important measures to provide for our Filipino veterans, but was subject to a fiercely-contested amendment that would have stripped out benefits for Filipino veterans. The amendment was defeated.The legislation expands eligibility for traumatic injury insurance, provides job training and helps disabled veterans make their homes more accessible. It also includes supplemental benefits for the ever-increasing funeral costs of our nation's heroes. Senator Menendez is a co-sponsor of the legislation to give benefits to Filipino veterans. The audio of his speech on the Senate floor is available here: http://demradio.senate.gov/actualities/menendez/menendez080424.mp3Text of his remarks are below:Thank you Senator Akaka, I ask unanimous consent that my statement be included in the record.The Veterans Benefits Enhancement Act that we are debating contains a number of important measures to provide for our veterans. It would expand eligibility for traumatic injury insurance, provide job training, help disabled veterans make their homes more accessible. And that's all worthy.But there's also another issue.In 1941, President Roosevelt called on the people of the Philippines to fight for their freedom and ours, and thousands of brave Filipinos answered the call.They carried out operations to liberate their homeland, and joined us in support of our efforts in the Pacific Theater. They fought and died at Corregidor. They were with us on the beaches at Bataan, and in the death marches.They were there when General McArthur promised he would return, they fought using guerilla tactics to tie down the Japanese, and they fought under General McArthur when we he came back and said, \"\"I have returned.\"\"Throughout the war, Filipino soldiers fought under the American flag, serving with valor, strength, and dignity.President Roosevelt guaranteed those brave soldiers that the United States would come to their aid in times of peace just as they had come to our aid during times of war.He guaranteed them equal veterans' benefits—a fair promise, considering their service, and considering the law of the land, as they were full members of the United States military. But in 1946, in one of the most misguided legislative actions of the time, Congress took away the benefits that the President of the United States had promised them—benefits they had rightfully earned.Of the approximately 250,000 Filipino veterans who fought for us in America, only about 18,000 are still alive today. Many of them are searching for ways to pay for health care, and are struggling in ways they never should.These veterans have more yesterdays than tomorrows. They are all well into their 80s. In terms of our budget, what this bill would cost over the course of ten years, we're spending in Iraq every 18 hours. So those who say it costs too much are the same voices who said that it would cost too much to do what Democrats did under the leadership of Senator Akaka, when for the first time we fully funded the veterans independent budget.When we bring this bill to a vote, we'll be answering a very simple but powerful question: Does our nation keep its promises?We need to right an injustice of the past and show our allies for future purposes as well; when we tell people join us in our fight against terrorism, join us in our fight against other challeneges in the world that America honors its obligation to those who fight for the values and our principles that we collectively share.  This is a critical time to send a message to friends of freedom across the world: we remember our allies and we pay our debts.Our distinguished colleagues in the Senate who have served during World War II have said, this is not simply a question of budget. This is a question of honor.These individuals of honor put their lives on the line for our nation, and now the honor of our nation is on the line.Let us show them just a fraction of the bravery they did, and vote to restore them what they were promised, what was the law and what they rightfully earned.Now, like lawyers there are some who are picking on points here and there to build a case against these benefits, in my mind is a case made of sand.  Let us vote to bring an honorable ending to this story and in however small a way, let us pledge now to give them dignity in the twilight of their life.  I really urge my colleagues to support Senator Akaka's bill as it is, and be able to keep our word in the world.  And if I have any time remaining I yield it back to Senator Akaka.                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8eb0ffcf-c459-4705-ab47-6ad13e5aed8a,\"BILL WOULD GIVE INDIVIDUALS THE POWER TO FIGHT POLLUTION, CONTAMINATION, OTHER ENVIRONMENTAL HEALTH RISKS\n                    \n                            Sen. Menendez, Rep. Solis introduce legislation to restore key constitutional environmental rights blocked by Supreme Court\n                    \n                      April 24, 2008\n                     WASHINGTON—U.S. Senator Robert Menendez (D-NJ), a member of the Senate Energy and Natural Resources Committee, today introduced the Environmental Justice Enforcement Act  to restore a key tool in the struggle to guarantee the rights of individuals to fight for their environmental rights.  U.S. Rep. Hilda L. Solis (CA-32), an avid advocate on behalf of environmental justice issues, has introduced a companion bill in the House of Representatives along with co-sponsor Congressman Alcee L. Hastings (FL-23). Senators Dick Durbin (D-IL) and Hillary Rodham Clinton (D-NY) are original co-sponsors of the Senate bill. It would restore citizens' ability to fight environmental injustices in their communities - such as rampant pollution or contamination - by establishing a private right of action under the Civil Rights Act. Senator Menendez (D-NJ):\"\"Earth Week is a fitting time to shine a light on environmental injustice happening across America, where people have to endure increased pollution and health risks just because they are a minority or live in a low-income area,\"\" Sen. Menendez said. \"\"This bill is based on the premise that people should be allowed to fight for the cleanliness of their neighborhoods and the health of their children. This is a fundamental right that should not be blocked by the Supreme Court. This legislation is about healthy communities, it's about fairness, and it's about empowerment.\"\" Congresswoman Solis (CA-32):\"\"For too long the health of minority and low-income communities has been put at considerable risk, yet these communities have been unable to fight back because of a decision made by the Supreme Court,\"\" said Congresswoman Solis, who was the first woman to be recognized with the John F. Kennedy Profiles in Courage Award for her pioneering work on environmental justice. \"\"This legislation is a critical step to achieving real and lasting justice for minority and low-income communities across this country.  By re-establishing a right of private action, we are empowering environmental justice communities with a voice and the authority to protect their health and welfare.\"\"Senator Durbin (D-IL):\"\"This bill seeks to reinstate an important civil rights law that was gutted by five Justices on the United States Supreme Court.  It would once again give the American people the legal tools to ensure that federal tax dollars aren't used in ways that unfairly discriminate on the basis of race, color, or national origin.\"\"Senator Clinton (D-NY):\"\"No American should live at risk because of an unsafe environment.  Local communities whose rights are violated by polluters must have an opportunity to seek justice.  Our civil rights laws need to protect communities from discrimination that would force them to endure a disproportionate burden of environmental pollution.  This legislation is a step forward in helping to keep our communities clean and our families safe,\"\" said Senator Clinton.Congressman Hastings (FL-23):\"\"Communities that have been afflicted by the worst of environmental harms deserve legal recourse for what they have experienced.  Some of our nation's most vulnerable communities have no choice but to live on the brink of environmental disaster that makes everyday life a tremendous health risk.  These communities deserve a voice and I am honored to be a part of the coalition in Congress that will restore that voice.\"\"   New Jersey Environmental Federation (NJEF) Campaign Director David Pringle:\"\"From Jersey City to Camden, low income and minority communities are overburdened by pollution and that is discrimination. Senator Menendez understands what the Bush Supreme Court has forgotten -- environmental justice is not a privilege, but a right.\"\" BACKGROUNDIn 2001, the Supreme Court ruled in Alexander v. Sandoval, that a regulation enacted under the Civil Rights Act of 1964 did not include a private right of action to allow private lawsuits based on evidence of disparate impact.  This means that many have effectively lost the ability to enforce their civil rights, particularly when it comes to the environment.• The bill amends the Civil Rights Act of 1964 to allow disparate impact evidence.  A person can prove a civil rights case if they can show they have been subject to a policy or practice that causes a disparate impact on the basis of race, color or national origin and the accused person or entity fails to demonstrate that the policy or practice is needed to achieve nondiscriminatory goals.• The bill states that any person who has been aggrieved by discrimination may bring a civil action in any Federal or State court of jurisdiction to enforce such rights.• The bill allows an aggrieved person to recover compensatory and punitive damages, attorney's fees and costs. However, aggrieved persons cannot receive punitive damages from the government.Endorsements: Center on Race, Poverty & the Environment, NRDC, Earthjustice, Nat. Hispanic Environmental Council (NHEC), New Jersey Environmental Federation (NJEF).                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cf285194-94d3-4f6a-9f55-6686afe981de,\"EQUAL PAY BILL FOR WOMEN, MINORITIES DENIED BY SENATE REPUBLICANS - SENATOR MENENDEZ\n                    \n                            \"\"The glass ceiling might be a little bit higher than it was - but it's still there,\"\" says Menendez\n                    \n                      April 23, 2008\n                     WASHINGTON - Today - one day after Equal Pay Day - Republicans in the U.S. Senate blocked a landmark bill to guarantee that women and all Americans, regardless of race, religion, sexual orientation or disability, have a fair chance to ensure equal pay. The Lilly Ledbetter Fair Pay Act would have overturned a Supreme Court decision that employees can only file a discrimination claim in the first 180 days from the time the discriminatory pay begins. The bill needed 60 votes to proceed to a final vote, but received only 56, with 41 Republicans voting against.U.S. Senator Robert Menendez (D-NJ), a co-sponsor of a nearly identical Senate bill (the Fair Pay Restoration Act) and a strong support of the Ledbetter bill, released the following statement:\"\"Who would have thought that in the year 2008, when the odds are good that our next president will either be a woman or an African American, an effort to ensure fair pay for everyone in our society would be blocked in the United States Senate?  It should never matter whether you are a man or a woman, what you look like, or how you worship when it comes to getting equal pay for equal work. A woman gets paid 77 cents for every dollar a man does. The glass ceiling might be a little bit higher than it was--but it's still there.\"\"Senate Republicans have to explain to the American people how they can support this type of discrimination and how they can deny fair wages, particularly as many Americans are living paycheck to paycheck in the midst of this economic tailspin.\"\"Click here to listen to audio excerpts of his remarks on the Senate floor: http://demradio.senate.gov/actualities/menendez/menendez080423.mp3Text of Senator Menendez's speech (as prepared for delivery) on the Senate floor in favor of the Fair Pay Restoration Act:M. President,I'm here today to stand up for equal pay for women. That's something we've been working towards for a long time, but we're still falling short of the goal.For decades, we've come together across party lines to help men and women earn the same wage for the same work. The Senate voted overwhelmingly for Equal Pay when President Kennedy was in office. We gave our support to the Civil Rights Act under President Johnson, and we renewed that support during President Reagan's term, and during the term of the first President Bush.Even after all the progress we've made, we've still got a long way to go. Last year, five conservative Supreme Court Justices threw up a roadblock against fair pay for women. Here's what happened:A woman named Lilly Ledbetter was one of only a few supervisors at a tire plant. She worked 12-hour shifts and constantly had to endure insults from her male bosses, just because she was a woman doing what they thought was a man's job. It wasn't until late in her career that she discovered her company was cheating her—paying her up to 40% less than her male colleagues earned doing the same job.Lilly filed a claim, and a jury awarded her full damages. But the Supreme Court said she was entitled to nothing, because she didn't discover the pay discrimination early enough.According to the Court's narrow 5-4 decision, if you don't discover that you're being discriminated against right after your employer starts doing it, you might have to suffer the consequences for your entire career. M. President, today we have a chance to change that—to make things right. Discrimination is discrimination, no matter when it happened.  If someone breaks the law, they should be held accountable for it.This body must make it clear that women should be treated the same as men.  We must make it undeniably clear that every worker should be fairly paid for their labor.  And we must proclaim in a unified voice that discrimination will not be tolerated in America.The idea behind the Fair Pay Restoration Act is simple:it would reinstate the rule that the clock for filing a wage discrimination claim starts running from the day a worker receives a discriminatory paycheck, not the day the employer first decides to discriminate.If a female worker sees her wages are continuously falling behind those of her male counterparts, she should be able to challenge her employer even if the original decision to discriminate was made years ago.  As long as the discrimination continues, the right of a worker to challenge it should continue as well.This doesn't just benefit women: it helps you if you're getting cheated in your paycheck on account of your age or your race, a disability, your national origin or what religion you belong to.As usual, those who are trying to defend the status quo are trying to scare us into believing that this law would cause a flood of litigation and undercut corporations' bottom lines. Unfortunately for them, history just isn't on their side.We know that this legislation is workable and fair, because it was the law of the land for decades, before the Supreme Court made its ruling. All this bill would do is make the law what it was widely interpreted to be only one year ago.And this isn't about exposing companies to unlimited damages.  Liability is still limited to two-years of back pay, following the standard set in the Civil Rights Act of 1964. Some of my colleagues on the other side of the aisle will ask why workers often cannot file their claim within 180 days from the first instance of discrimination.  Well, there are good reasons for that. To begin with, many workers have difficulty comparing their salaries to coworkers with many businesses actually prohibiting it.  Even if a worker sees her pay is lower than her coworkers, she might not recognize it was a result of discrimination. If a worker does recognize it as discrimination, they often wait to contact the EEOC or decide not to, due to feeling ashamed or more often, they fear retaliation by their company. They fear the consequences of \"\"rocking the boat\"\" and figure a job in which they are discriminated against is better than being fired and having no job at all.So here's what it comes down to: if you vote against this bill, you're going on record, and telling this entire nation, that you want to make it harder for a woman to get paid the same as a man for the same work—plain and simple.M. President,These are challenging economic times for Americans, and the challenges are especially tough for women. A woman gets paid 77 cents for every dollar a man does.  Women's earnings have fallen 6 times as much as men's as our economy began sliding towards a recession last year.   The truth is, the glass ceiling might be a little higher than it was—but it's still there.It is our responsibility, as legislators, as Americans, as human beings, to make sure this country holds the same promise for women as it does for men, and that in the future, our daughters have the same opportunities as our sons.Restoring a woman's opportunity to fight for fair pay is a big part of that. And it has to be part of a broader strategy to get our economy back on track. We have to bring down the cost of health care, create green-collar jobs, and help workers get the training and education they need to succeed.If we're going to prosper as a nation, that prosperity must be shared. I've said it before, and it's as true as it ever was: only a society with no second-class citizens can be a first-class society. Today, it's time to act on that principle. It's time to vote for fair pay, and ease the way to prosperity and justice for all.Thank you, M. President, I yield the floor.                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a65b9104-cdc9-454d-8370-52b8a9580ba3,\"SEN. MENENDEZ MEETS WITH MUSIC SUPERSTAR SHAKIRA ON GLOBAL CAMPAIGN FOR EDUCATION\n                    \n                      April 23, 2008\n                     Washington, D.C. - U.S. Senator Robert Menendez (D-NJ), Grammy Award-winning singer Shakira and former National Economic Adviser Gene Sperling met yesterday to discuss The Education for All Act, which would provide universal basic education for all children. Senator Menendez is Chairman of the Senate Foreign Relations subcommittee that oversees U.S. foreign assistance programs. Shakira and Gene Sperling are in D.C. to kick off the Global Campaign for Education Action Week.\"\"I was delighted to meet an advocate who has repeatedly said that she prefers to use the light that is shone on her to shine it on the causes that are truly important, like basic education for children around the world,\"\" said Sen. Menendez. \"\"Promoting education for children around the world strengthens the global economy and improves international security. I am a proud co-sponsor of the Education for All Act, which aims to achieve that goal, and I have also introduced a bipartisan bill that seeks to provide 2.5 billion over 10 years for social and economic development in the Americas.\"\"The Education for All Act of 2007 amends the Foreign Assistance Act of 1961 to provide assistance for developing countries to promote quality basic education and to establish the achievement of universal basic education in all developing countries as an objective of United States foreign assistance policy. It also directs the President to develop a comprehensive U.S. strategy to promote universal basic education by 2015, authorizes USAID to establish an education fellowship program and establishes within the Department of State an Education Coordinator.  The Bill would authorize $10 billion over the next five years.                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=572ae808-46be-4ec4-b48d-ec12bacdea5e,\"ON EARTH DAY, SEN. MENENDEZ SAYS U.S. MUST BE A WORLD LEADER FOR THE ENVIRONMENT\n                    \n                      April 22, 2008\n                     WASHINGTON—U.S. Senator Robert Menendez (D-NJ), a member of the Senate Energy and Natural Resources Committee who has been a leader in the Senate on energy efficiency domestically and on international efforts to combat climate change, released the following statement today, on Earth Day:\"\"On this Earth Day, as on every day, it is important to think about the world that we will leave to our kin. Our children deserve a planet where the air is clean, where the oceans don't rise and flood their houses, where droughts don't parch their soil and starve them of food, and where polar bears have not gone extinct. To make sure that our fragile world is still intact when we hand it on to future generations, it will take leadership from the United States that has been absent. It will take a dramatic reduction in our use of fossil fuels and the quantities of greenhouse gases they spew into the atmosphere. Few things are more important to the health of our planet or our economic security than freeing ourselves from fossil fuels. Our addiction to oil means that this country is walking a liquid tightrope over an economic canyon.\"\"The type of leadership it will take to solve our planetary emergency and bring about energy independence can be seen every day in neighborhoods, towns and cities across this country. To encourage and support those efforts, I worked to pass legislation that gives grants to cities for energy efficiency programs. But the good work on the local level must be matched by a federal government that leads with bold proposals to save our planet, not just lip service. It will take big leaps, like embracing mandatory emissions cuts domestically and using diplomacy to craft a strong international climate change pact in the next few years. I am focused on steering our nation in that direction through my work as Chairman of the Senate subcommittee that deals with international environmental protection, and I hope the next administration will recognize the need for American leadership and make it a national priority.\"\"To mark Earth Day, Senator Menendez, chairman of the Senate Foreign Relations Subcommittee dealing with international environmental protection, will hold a hearing on international efforts to combat deforestation and climate change. Deforestation and the degradation of tropical rainforests is responsible for 20 percent of global greenhouse gas emissions. The hearing is designed to explore the effects of deforestation, to review current international negotiations on climate change, and to discuss what policy frameworks will be needed to effectively and efficiently lower the rate of deforestation.Senator Menendez's environmental work in the Senate:• Energy• As a member of the Energy and Natural Resources Committee, Senator Menendez helped pass, H.R. 6, the Energy Independence and Security Act of 2007.  The Senator included a $2 billion block grant program in the bill which will provide cities the resources they need to lower energy usage and increase energy efficiency.• The Energy Bill Senator Menendez helped pass will also reduce our nation's dependency on foreign oil by investing in clean, renewable, and alternative energy resources, promoting new emerging energy technologies, and developing greater efficiency.  This law raised the fuel economy standards for cars and trucks for the first time in 30 years.• Global Climate Change• Senator Menendez presided over a hearing after the Bali Climate Change Conference and what is next on the path to a post 2012 Climate change treaty and is chairing a hearing tomorrow on deforestation and climate change.• Senator Menendez is a cosponsor of S.309, Senator Sanders' Global Warming Pollution Reduction Act, which is the strongest global warming legislation bill introduced to date.  The bill would set out a roadmap of targets, requirements, and incentives to reduce U.S. carbon emissions and help stabilize global atmospheric concentrations of greenhouse gases, and requires that the U.S. reduce its emissions by 2050 to a level that is 80 percent below 1990 levels.• Anti-Drilling work: Senator Menendez recognizes that we cannot drill our way to energy independence, and he will not sacrifice our environment or New Jersey's beaches to those who think we can.• Senator Menendez introduced S.391, the Clean Ocean and Safe Tourism Anti-Drilling Act, on January 27, 2007. This bill would amend the Outer Continental Shelf Lands Act to permanently ban oil and gas drilling off the mid-Atlantic and North Atlantic Coasts in an effort to protect New Jersey's environment as well as its gaming, tourism and hospitality industries.• Senator Menendez led the effort to block Senator Warner's Amendment 1566, which would have allowed Virginia to petition to conduct natural gas exploration and drilling in the coastal zone of the State. His threatened filibuster forced the Senate to get the 60 votes necessary for cloture.  The final vote was 43 - 44 to defeat Senator Warner's Amendment. • Senator Menendez led the effort to defeat an amendment to the budget resolution offered by Sen. Lamar Alexander (R-TN) that would have paved the way for drilling off the coast of Virginia, which includes areas less than 100 miles from the Jersey Shore - close enough for spills to affect New Jersey beaches.  The final vote was defeated by a vote of 47-51.                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3636c348-3407-4232-8562-ae3dc860a4af,\"Floor Statement on the Fair Pay Restoration Act\n                    \n                      April 22, 2008\n                     (As Prepared for Delivery)M. President,I'm here today to stand up for equal pay for women. That's something we've been working towards for a long time, but we're still falling short of the goal.For decades, we've come together across party lines to help men and women earn the same wage for the same work. The Senate voted overwhelmingly for Equal Pay when President Kennedy was in office. We gave our support to the Civil Rights Act under President Johnson, and we renewed that support during President Reagan's term, and during the term of the first President Bush.Even after all the progress we've made, we've still got a long way to go. Last year, five conservative Supreme Court Justices threw up a roadblock against fair pay for women. Here's what happened:A woman named Lilly Ledbetter was one of only a few supervisors at a tire plant. She worked 12-hour shifts and constantly had to endure insults from her male bosses, just because she was a woman doing what they thought was a man's job. It wasn't until late in her career that she discovered her company was cheating her—paying her up to 40% less than her male colleagues earned doing the same job.Lilly filed a claim, and a jury awarded her full damages. But the Supreme Court said she was entitled to nothing, because she didn't discover the pay discrimination early enough.According to the Court's narrow 5-4 decision, if you don't discover that you're being discriminated against right after your employer starts doing it, you might have to suffer the consequences for your entire career. M. President, today we have a chance to change that—to make things right. Discrimination is discrimination, no matter when it happened.  If someone breaks the law, they should be held accountable for it.This body must make it clear that women should be treated the same as men.  We must make it undeniably clear that every worker should be fairly paid for their labor.  And we must proclaim in a unified voice that discrimination will not be tolerated in America.The idea behind the Fair Pay Restoration Act is simple:it would reinstate the rule that the clock for filing a wage discrimination claim starts running from the day a worker receives a discriminatory paycheck, not the day the employer first decides to discriminate.If a female worker sees her wages are continuously falling behind those of her male counterparts, she should be able to challenge her employer even if the original decision to discriminate was made years ago.  As long as the discrimination continues, the right of a worker to challenge it should continue as well.This doesn't just benefit women: it helps you if you're getting cheated in your paycheck on account of your age or your race, a disability, your national origin or what religion you belong to.As usual, those who are trying to defend the status quo are trying to scare us into believing that this law would cause a flood of litigation and undercut corporations' bottom lines. Unfortunately for them, history just isn't on their side.We know that this legislation is workable and fair, because it was the law of the land for decades, before the Supreme Court made its ruling. All this bill would do is make the law what it was widely interpreted to be only one year ago.And this isn't about exposing companies to unlimited damages.  Liability is still limited to two-years of back pay, following the standard set in the Civil Rights Act of 1964. Some of my colleagues on the other side of the aisle will ask why workers often cannot file their claim within 180 days from the first instance of discrimination.  Well, there are good reasons for that. To begin with, many workers have difficulty comparing their salaries to coworkers with many businesses actually prohibiting it.  Even if a worker sees her pay is lower than her coworkers, she might not recognize it was a result of discrimination. If a worker does recognize it as discrimination, they often wait to contact the EEOC or decide not to, due to feeling ashamed or more often, they fear retaliation by their company. They fear the consequences of \"\"rocking the boat\"\" and figure a job in which they are discriminated against is better than being fired and having no job at all.So here's what it comes down to: if you vote against this bill, you're going on record, and telling this entire nation, that you want to make it harder for a woman to get paid the same as a man for the same work—plain and simple.M. President,These are challenging economic times for Americans, and the challenges are especially tough for women. A woman gets paid 77 cents for every dollar a man does.  Women's earnings have fallen 6 times as much as men's as our economy began sliding towards a recession last year.   The truth is, the glass ceiling might be a little higher than it was—but it's still there.It is our responsibility, as legislators, as Americans, as human beings, to make sure this country holds the same promise for women as it does for men, and that in the future, our daughters have the same opportunities as our sons.Restoring a woman's opportunity to fight for fair pay is a big part of that. And it has to be part of a broader strategy to get our economy back on track. We have to bring down the cost of health care, create green-collar jobs, and help workers get the training and education they need to succeed.If we're going to prosper as a nation, that prosperity must be shared. I've said it before, and it's as true as it ever was: only a society with no second-class citizens can be a first-class society. Today, it's time to act on that principle. It's time to vote for fair pay, and ease the way to prosperity and justice for all.Thank you, M. President, I yield the floor.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d2cfdd41-5c0e-480a-9556-dc15f0099b13,\"UPON REPORT OF POSSIBLE ADMINISTRATION OFFER TO NORMALIZE TIES WITH SUDAN, SEN. MENENDEZ CALLS ON U.S. ENVOY TO CHANGE PLANS\n                    \n                            Document shows that U.S. could also offer removal from state sponsors of terrorism list to Sudan in exchange for allowing some peacekeepers into Darfur region\n                    \n                      April 21, 2008\n                     WASHINGTON—Last week, the New York Times reported on a Bush administration document showing that it could offer normalized relations with the Sudanese regime and removal from the state sponsors of terrorism list if Khartoum allows Thai and Nepalese peacekeepers into the Darfur region.U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee who has been outspoken in urging the Bush administration and international community to pressure the Sudanese regime, today called on the U.S. Special Envoy to Sudan, Ambassador Richard Williamson, to abandon this appeasement plan. In his letter to Ambassador Williamson, Senator Menendez said that instead of placating Khartoum for some initial steps, the regime \"\"must understand that the only acceptable outcome is a long-term, demonstrated commitment to peace and equality within its borders.\"\"PDF of Menendez letter to Williamson: http://menendez.senate.gov/pdf/04212008Darfurletter.pdfText of letter:April 21, 2008Ambassador Richard WilliamsonU.S. Special Envoy to SudanU.S. Department of StateDear Ambassador Williamson:                I am writing out of concern regarding reports that suggest that the State Department is preparing to negotiate with the Sudanese regime and may in fact outline additional incentives to encourage Khartoum to allow peacekeeping forces into the Darfur region.  These incentives reportedly may include normalizing relations with Sudan and removing the regime from the list of state sponsors of terrorism.                As a Senator who has long been gravely concerned by the genocide in Darfur and who has repeatedly called for the Bush administration and the international community to exert increased pressure on the Sudanese regime, I categorically oppose any strategy that would simply placate Khartoum, and I urge you to reverse course.  The Sudanese regime has proven to be murderous and oppressive and any agreement to allow certain peacekeepers into Darfur, though positive, will not be nearly enough to demonstrate that Khartoum has ceased to terrorize its people or deserves to be treated as any other friendly government.  Furthermore, the Sudanese regime time and again has verbally agreed to allow peacekeeping forces to enter Darfur only to stall and stonewall their deployment. We must remain on guard for Khartoum saying one thing and doing another.                Instead of this strategy to instantly reward the Sudanese regime for baby steps, it must understand that the only acceptable outcome is a long-term, demonstrated commitment to peace and equality within its borders. As such, it will take a dedicated international effort to stop genocide and oppression in Sudan.  This will include more pressure from nations like China, which has a unique economic relationship with Sudan that it can leverage into a cessation of the bloodshed.               I urge your urgent consideration of this matter and expect that the negotiating strategy outlined in recent news reports will be scrapped.Sincerely,____________________ROBERT MENENDEZUnited States Senator                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=423b787e-b220-425d-9f3d-560ea00f8be5,\"ON THE EVE OF EARTH DAY, U.S. SENATOR ROBERT MENENDEZ ANNOUNCES OVER $20 MILLION FOR THE ENVIRONMENTAL RESTORATION OF LIBERTY STATE PARK\n                    \n                            Joined by environmentalists, and surrounded by spectacular views of Liberty State Park, the Statue of Liberty and Ellis Island, Sen. Menendez touts benefits to New Jersey residents\n                    \n                      April 21, 2008\n                     Jersey City - Today, U.S. Senator Robert Menendez announced the authorization of $20,800,000 in federal funding for the environmental restoration of 234 acres of Liberty State Park. The project, that will connect this fenced-off portion of the popular public recreation area to the grounds, will not only bring enjoyment to visitors, it will restore tidal and freshwater wetlands, as well as coastal grasslands and woodlands, preserving the environment for future generations of New Jerseyans.  The project will be carried out by the U.S. Army Corps of Engineers, the New Jersey Department of Environmental Protection, and the Port Authority of New York and New Jersey.\"\"This project will create a gorgeous part of the park and an important restoration for the environment,\"\" said Senator Menendez \"\"I am very pleased to secure the authorization of these federal funds so that we no longer have to see this portion of Liberty State Park in poor condition. The restoration of the 234 acres clearly seen from Liberty Science Center will not only greatly enhance the enjoyment of park visitors; it will beautify the area in close proximity to the museum, affording it the surroundings it deserves.  Children who visit the area will not only benefit from what they learn at the Science Center today, they will benefit from an environmentally preserved area that will promote their health and wellbeing.\"\"     Liberty State Park, comprised of more than 1100 acres, was once magnificent coastal marshlands that was filled with construction debris and refuse in the latter part of the 19th century to create an urban rail yard used by the CRRNJ, which went bankrupt in 1969.  The State of New Jersey was able to purchase the land and turn it into an urban waterfront park with facilities that include 25 structures, 5.3 miles of roads, and ferry service to Manhattan and Staten Island. However, these approximately 250 acres adjacent to the Liberty Science Center have remained undeveloped and fenced-off from the rest of the recreational facilities. \"\"Liberty State Park is an extraordinary public resource,\"\" said Lisa Jackson, Commissioner of the Department of Environmental Protection. \"\"The restoration of this portion of the park will culminate more than 30 years of planning; providing public recreation and protection of its unique ecosystem.\"\"The $20,800,000 authorized in federal funding, in addition to $12 million in non-federal funds, will allow for the restoration of tidal wetlands, enhancement of existing freshwater wetlands, development and enhancement of coastal grassland and woodland, and the preservation of the moss matt community that has developed in the vicinity of existing fresh water wetlands. Liberty state park is one of the most spectacular open spaces New Jersey has to offer and these federal funds will not only enhance its beauty, they will guarantee that future generations enjoy a space that is environmentally safe,\"\" said Congressman Albio Sires. \"\"I look forward to the completion of this project so not only residents of the 13th 9ongressional District enjoy it, visitors from other parts of the Garden State and New Yorkers will enjoy it as well.\"\"The funding will also  open up this area of the park for the enjoyment of the almost 5 million visitors that each flock here to enjoy the grounds, look at the spectacular views of the Statue of Liberty, Ellis Island, the Manhattan skyline, listen to the yearly Jazz festival and celebrate our nation's Freedom every 4th of July.\"\"In partnership with the state of New Jersey, it is our pleasure to continue in the development and restoration of Liberty State Park in support of this very successful estuarine habitat restoration project,\"\" said Col. Nello Tortora, the commander of the Army Corps' New York District.                                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8e36a85c-eaae-4d72-b5cf-472b9ea6ae4a,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $460K FOR N.J. PUBLIC RADIO STATIONS\n                    \n                            Funding Will Help Stations Make the Switch from Analog to Digital Broadcasting\n                    \n                      April 21, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the Corporation for Public Broadcasting (CPB) will award nine New Jersey radio stations more than $460,000 to help them convert from analog to digital broadcasting.            \"\"As local stations continue the transition from analog to digital broadcasting, these grants are an important step to help them get the job done,\"\" said Sen. Lautenberg.  \"\"This funding will help our public radio stations convert to digital broadcasting and will significantly improve the quality of their broadcasts.\"\"            \"\"Public radio is an incredibly valuable resource for New Jerseyans,\"\" said Sen. Menendez.  \"\"This investment will help usher the transition from analog to digital broadcasting, increase the sound quality for all listeners, and show our commitment to public radio's future.\"\"            Digital technology will allow local public radio stations to significantly enhance the quality and scope of services they provide to their communities, as well as provide richer quality sound than is currently available to listeners.  FM digital radio is capable of providing clear sound comparable in quality to compact discs; while AM digital radio is capable of providing sound quality equivalent to that of standard analog FM, and sounds dramatically better than analog AM.            Digital radio reception is also more resistant to interference, and eliminates many imperfections of analog radio transmission and reception.  In addition, radio stations broadcasting in digital can broadcast multiple channels using the same airwaves needed to broadcast just one analog station.            In total, the nine New Jersey radio stations will receive $463,316 in federal funding.  These stations will receive the following grants:• $50,114 to WNJB-FM in Bridgeton;• $40,200 to WNJM-FM in Manahawkin;• $66,500 to WNJN-FM in Atlantic City;• $61,600 to WNJP-FM in Sussex;• $37,281 to WNJS-FM in Berlin;• $60,345 to WNJT-FM in Trenton;• $50,114 to WNJZ-FM in Cape May Courthouse;• $50,114 to a station whose letters are yet to be assigned in Toms River; and• $47,048 to a station whose letters are yet to be assigned in Netcong.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ba734b7c-0315-4d53-b1b6-a5fb240223b8,\"LAUTENBERG, MENENDEZ ANNOUNCE $1.2 MILLION TO CLEAN UP SITES IN NEWARK, JERSEY CITY & CAMDEN\n                    \n                            Funding Part of EPA Brownfields Program\n                    \n                      April 18, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the U.S. Environmental Protection Agency (EPA) will award three New Jersey cities with a total of $1.2 million to clean up and re-develop several Brownfield sites.            \"\"The Brownfields program is essential in the effort to clean up contaminated sites,\"\" said Sen. Lautenberg.  \"\"This funding will not only help Newark, Jersey City and Camden revitalize these sites for the benefit of our residents and communities, it will also create much needed jobs and stimulate the economy.\"\"            \"\"This funding will go a long way to returning these brownfields to productive uses, while also protecting our environment and improving overall quality of life in these communities,\"\" said Sen. Menendez.  \"\"I am happy to see that we are working to restore brownfields sites in New Jersey and hope that we can continue to invest in projects that benefit our state both environmentally and economically.\"\"            The EPA Brownfields program, which Sen. Lautenberg has helped strengthen as a member of the Environment and Public Works Committee, helps communities clean up, redevelop or reuse facilities that range from major industrial sites to small facilities or old gas stations.  This year, the EPA awarded 194 assessment grants totaling $38.7 million as well as 108 cleanup grants totaling $19.6 million through the program.            EPA Brownfields grants have been awarded to the following New Jersey cities:• Newark - two grants totaling $400,000 to assess local Brownfield sites impacted by hazardous substances and petroleum contamination;• Jersey City - one $200,000 grant to assess sites potentially contaminated with hazardous substances and another $200,000 grant to assess abandoned gas stations; and• Camden - two grants totaling $400,000 for petroleum cleanup at the former Tire and Battery Site located at 1350 Admiral Wilson Boulevard.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=af906cd4-b23a-46f5-a00a-e12631c3138c,\"HARKIN, MENENDEZ UNVEIL GAO REPORT SHOWING U.S. FAILING TO CLOSE TERRORIST CAMPS IN PAKISTAN\n                    \n                            Al Qaeda re-established in Pakistan even after U.S. funneled $10 billion into FATA region\n                    \n                      April 17, 2008\n                     Washington, D.C. - U.S. Senators Tom Harkin (D-IA) and Bob Menendez (D-NJ) revealed findings today from a Government Accountability Office (GAO) report they commissioned showing that the United States has not met its national security goals to destroy terrorist threats and close terrorist safe havens in Pakistan's Federally Administered Tribal Areas (FATA) region. Similar safe havens were used in Afghanistan to plan the 9/11 terrorist attacks and many of the conspirators traveled through Pakistan to get to the U.S.The report also found that of the $10 billion that the U.S. sent to Pakistan from 2002 to 2007, 96 percent was used to reimburse Pakistan's military for operations in the FATA region which have shown little success. Not only were no steps taken to assess how these funds were being used but major studies, including the 2007 National Intelligence Estimate, concluded that Al Qaeda had regenerated its ability to attack the U.S. and succeeded in establishing a safe haven in Pakistan.\"\"This news is appalling, but not surprising. The Bush Administration has wasted billions of taxpayer dollars and failed to act on the very law he signed to protect us from terrorist attacks,\"\" said Senator Harkin. \"\"As this GAO report recommends, the White House must propose a strategic policy in this area and follow it, especially when we have this new opportunity to forge a fresh strategic relationship with the new civilian government in Pakistan.\"\"Senator Menendez said, \"\"For anyone wondering how we're doing in the fight to get the terrorists who killed 3,000 Americans on 9/11, this report pretty much says it all. The Bush administration has had six years to come up with a plan to get Osama bin Laden and his group, but it is still flying by the seat of its pants. We've dumped 10 billion American taxpayer dollars into Pakistan with the expectation that the terrorists will be hunted down and smoked out, but al Qaeda has been allowed to rejuvenate in the area that is supposed to be locked down. The Bush administration cannot be allowed to continue this aimless, wasteful approach and expect to get a blank check from the taxpayers for it.\"\"The GAO report concluded that there was no comprehensive plan in place for meeting U.S. national security goals in the FATA as required by the National Strategy to Combat Terrorism, the 9/11 Commission and legislation passed by Congress. Specifically, Congress created the National Counterterrorism Center in 2004 to create comprehensive plans to combat terrorism but the Bush Administration failed to develop one. Therefore, the report recommended that the President's national security and defense advisors come together to abide by this congressional mandate and create a plan to combat terrorist threats and close safe havens in the FATA.Harkin and Menendez joined the following members in commissioning the GAO report: Representatives Howard Berman (D-CA) and Ileana Ros-Lehtinen (R-FL), Gary Ackerman (D-NY), Mike Pence (R-IN), John Tierney (D-MA) and Christopher Shays (R-CT). The GAO report is the first in a series of reports aimed at responding to the members' request for information regarding progress within the FATA region. The report can be accessed through the following http://menendez.senate.gov/pdf/042008GAOreport.pdf and will be available on www.gao.gov later today.                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7edf415f-13ad-43fc-9db6-bb8b39b337fa,\"LAUTENBERG, MENENDEZ RELEASE NEW REPORT SHOWING MORE PLANES LANDING IN NEWARK LOW ON FUEL\n                    \n                            Senators Say Airlines Need to Better Balance Customer Safety, Cost Savings\n                    \n                      April 16, 2008\n                      WASHINGTON, D.C. - Today, Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) released a report showing an increasing number of planes landing at Newark Liberty International Airport that were low on fuel.  While pilots ensured no passengers were put at risk, planes often had fuel levels so low they nearly declared emergencies and were given priority to land by air traffic controllers according to Federal Aviation Administration (FAA) safety guidelines.As a result of the Senators' inquiry, FAA has issued new guidance clarifying when pilots should make minimum fuel declarations and emergency fuel declarations.  Continental Airlines, the largest airline at Newark Airport, has also increased its fuel management oversight and has begun using newer technology to reduce the weight of their planes on international flights, including the use of carbon brakes, which can save 600 pounds per aircraft.Senator Menendez said, \"\"For far too long the Federal Aviation Administration was unaware as planes were landing at Newark low on fuel. Thankfully there were no major disasters, but aircraft should not be cutting it that close - with airline safety there is no margin for error. I am encouraged to know that the FAA is now addressing this problem, but it should not take letters from lawmakers to guarantee the safety of the flying public.  One day, I hope that the FAA will be able to be proactive and not need to be asked to do its job.\"\"  \"\"Our highest priority must be to keep the flying public safe.  I'm glad the report found no immediate danger to passengers—but no airline company should force a pilot to choose between their pension and public safety,\"\" Senator Lautenberg said.  \"\"I will make sure the federal government does its job to oversee the airline industry so our passengers can have confidence when they fly.\"\"            The report was completed by the U.S. Department of Transportation's Inspector General (IG) at Senator Lautenberg's request, after a New Jersey ABC-TV affiliate discovered a high number of \"\"low fuel advisory\"\" landings at Newark Airport in 2007.  While the IG concluded that no FAA minimum safety regulations were violated, the report detailed how one air traffic control facility in the New Jersey-New York region saw an increase in low fuel declarations over the prior two years at Newark Liberty International Airport: 151 in 2007, 72 in 2006 and 44 in 2005.  The complete report can be found at http://www.oig.dot.gov/item.jsp?id=2288. There are two types of low fuel-related declarations pilot give to air traffic controllers:Emergency Fuel Declarations: declared by pilots when their fuel levels go below the amount of fuel required to get to the nearest alternate airport plus 45 minutes of continued flying. These declarations give the pilot an immediate landing priority.    Minimum Fuel Declarations: given when a pilot is approaching his emergency reserve fuel level.New Jersey-New York area controllers are especially sensitive to these declarations:  in 1990, an Avianca airline flight crew failed to adequately convey its plane's low fuel status when approaching John F. Kennedy International Airport and crashed, killing 73 people.All of the flights examined in the IG's analysis had an average of 64 minutes of fuel left, and none below 45 minutes.  However, this analysis did not include planes that had to make a fuel stop during the trip.            The IG also found that many of these incidents involved one type of aircraft—the Boeing 757—on Trans-Atlantic routes.  As a narrow-body, 2-engine plane, the 757 has a lower fuel capacity and smaller range than other planes used on trans-Atlantic flights. In addition, the report indicated concern about two memos written by one airline to its pilots warning them against adding fuel to their planes; one memo stated that adding fuel reduces employee profit-sharing and possibly pension funding.                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=76e7f9d6-1b16-4547-9fcd-e1c0e93a60a6,\"AIRLINE MEGA-MERGERS DESERVE CLOSE SCRUTINY, SAYS SEN. MENENDEZ\n                    \n                            After Delta and Northwest agree to form world's largest carrier, Continental and United reportedly discuss merger\n                    \n                      April 16, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) is signaling his reservations about airline mega-mergers that have the potential to create a lack of airline competition, limit choices for passengers and send airfares skyrocketing. This week, Delta Airlines and Northwest Airlines are agreed to merge, creating the world's largest airline, and now it has been reported that Continental Airlines and United Airlines are discussing a merger.Senator Menendez released the following statement:\"\"I have serious reservations about these mega-mergers and the potential for a lack of competition that would end up squeezing air travelers even further. I understand that the airlines are in a tough situation dealing with a dysfunctional FAA and facing high fuel costs, and that they are looking to restructure. However, the possibility of air travelers bearing the brunt of these  mega-mergers is a serious concern. Frustration among passengers has never been higher, but if we think it's bad now, just wait until they have to potentially deal with fewer flight options and higher prices.\"\"On top of this, if a mega-airline were to fail, it would be a catastrophe for air travel in this country. It's like the saying goes - the bigger they are, the harder they fall. I worry that the strategy here is not to get bigger in order to become more competitive, but to get bigger in order to guarantee a federal bailout should the company enter bankruptcy.\"\"The high cost of fuel is an issue for all Americans, not just the airlines, but creating mega-airlines will not lower fuel costs. As they review these deals, the Department of Transportation and Department of Justice should recognize these issues and how they could put even more of a squeeze on passengers.\"\"                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=58cdacca-9e11-445f-a9fa-84322949afbc,\"MENENDEZ-LAUTENBERG BILL TO PROTECT NEW JERSEY COASTAL HERITAGE TRAIL PASSES SENATE\n                    \n                            Trail Spans 300 Miles, From Perth Amboy to Cape May and Deepwater\n                    \n                      April 15, 2008\n                     WASHINGTON, D.C. - Last week, the Senate passed legislation written by Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) to extend the authorization for New Jersey's Coastal Heritage Trail until 2011.  The bill will help improve signage along the trail, including directional signs and signs that help interpret the trail's attractions.\"\"This funding will help us to continue experiencing and enjoying the natural beauty that our state has to offer,\"\" said Sen. Menendez.  \"\"I am delighted that we succeeded in extending this important investment into our historic coastal area.\"\"\"\"We have a responsibility to protect our natural treasures for future generations—and this legislation shows our commitment to getting things done to protect our environment,\"\" Sen. Lautenberg said.  \"\"The Coastal Heritage trail allows New Jerseyans to enjoy the beauty of our state, and this law would protect it for years to come.\"\"            The 300-mile Coastal Heritage Trail divides into five sections that extend south from Perth Amboy to Cape May and west to Deepwater.  The trail contains historic villages, migrating eagles, boardwalks and the nation's oldest operating lighthouse, among other historic and cultural sites.            In 1988, Congress authorized the Secretary of the Interior to designate the Coastal Heritage Trail along coastal New Jersey to provide for public appreciation and enjoyment of important fish and wildlife habitats, geologic and geographical landforms, cultural resources and migration routes in coastal New Jersey.  The 1988 measure was written by Sen. Lautenberg and former Sen. Bill Bradley (D-NJ).            The Menendez-Lautenberg bill is part of a larger package of bills that must be passed by the House of Representatives and signed by the President before it becomes law.                                                                   # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7a903b39-e851-4d6b-a870-86262eb84c5e,\"A TAX DAY REMINDER FROM SEN. MENENDEZ\n                    \n                            New Jersey Senator wants taxpayers to have full information on rebates, beware of scams\n                    \n                      April 14, 2008\n                     WASHINGTON - Tomorrow is Tax Day, and U.S. Senator Robert Menendez (D-NJ) is working to make sure that every New Jerseyan is fully aware of the available tax rebates and is vigilant about scammers who are using the rebates as an opportunity to commit identity theft. This year, Congress passed an economic stimulus package to give a boost to the sagging economy - through that legislation, 3.8 million New Jerseyans are eligible to receive tax rebates this year.Senator Menendez on rebates:\"\"In these tough economic times, so many in our state are seeing their bills pile up, and they should have all the information they need to take advantage of these rebates,\"\" said Senator Menendez. \"\"I want working New Jerseyans to know that just filing a tax return, even if it is at the last minute, will ensure that they will receive a stimulus rebate sometime between May and July, in addition to any other potential tax refund they are due. If anyone has any questions or concerns, they can contact my offices for assistance.\"\"Menendez on scams:Senator Menendez also said: \"\"Unfortunately, tax time is a chance for scammers to take advantage of innocent taxpayers, and I want the people of our state to be aware of this potential hazard. Scammers may pose as the federal government on the phone or through email in order to solicit personal identification information. Taxpayers should remember that the IRS or the government will never ask for information like ATM pin numbers, nor do they make unsolicited calls or emails to taxpayers. The same rules apply for the stimulus rebate - there is no reason to give personal information to any anyone who calls or emails for it to receive this rebate.\"\"Overview of rebates:Who is eligible? Individuals who earned between $3,000 and $87,000 and couples filing jointly who earned up to $174,000 in 2007. This can be a combination of income, wages, Social Security benefits, veterans' disability benefits or certain Railroad Retirement benefits from the 2007 tax year.    Seniors who have at least $3,000 in Social Security benefits are eligible for a rebate (more than a million New Jersey seniors are eligible).    Disabled veterans with no taxable income who have at least $3,000 in benefits are eligible for a rebate (250,000 veterans nationwide). How much are the rebates? $300-$600 for individuals or $600-$1,200 for married couples filing jointly. $300 for each child under 17.Does everyone eligible receive the full rebate?Individuals earning up to $75,000 ($150,000 for those filing jointly) who have paid at least $600 in taxes will receive a $600 rebate.  For those who earn between $75,000 and $87,000 (between $150,000 and $174,000 for those filing jointly) the rebate amount will be reduced by $50 for every $1,000 above that threshold.     Individuals who did not pay taxes, but have at least $3,000 in qualifying income, will receive a rebate check of $300 if single, or $600 for married couples filing jointly.How to receive rebates:Most who are eligible do not have to do anything additional to get their rebate check. They will be automatically enrolled in the economic stimulus rebate program when they file their taxes before or on April 15th.    Two groups that may have to take an additional step to get their checks are seniors who receive Social Security but don't earn wages, and veterans who receive disability benefits but don't pay taxes. (More information on these groups below).When will the checks arrive?Eligible taxpayers can expect to receive their checks in the mail sometime between May and July, or sooner if they opted for an electronic transfer.    Information for seniors and veterans on receiving rebates: Seniors who receive Social Security but don't earn wages and veterans who receive disability benefits but don't pay taxes must file an income tax return to be eligible. They should use a simplified IRS form 1040A, available at most public libraries and write 'Stimulus Payment' at the top of the form.Defending against identity thieves:Taxpayers can forward scam emails to: phishing@irs.gov    For more information on scams, taxpayers can visit: http://www.irs.gov/newsroom/article/0,,id=155682,00.htmlE-file:If a taxpayer's adjusted gross income was $54,000 or less in 2007, he or she can file their federal taxes for free -- http://www.irs.gov/efile/article/0,,id=118986,00.htmlContacting Senator Menendez's offices:North Jersey -- Senator Menendez's Newark office is reachable at 973-645-3030.     South Jersey -- Senator Menendez's Barrington office is reachable at 856-757-5353.                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2889953c-8392-49d3-a35a-6825e87d3abf,\"MASSIVE FLIGHT CANCELLATIONS: SENS. MENENDEZ AND LAUTENBERG PUT MORE HEAT ON FAA\n                    \n                            New Jersey Senators have blocked the nomination for FAA chief over a number of issues, are adding aircraft inspections to the list\n                    \n                      April 10, 2008\n                     WASHINGTON - U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg are taking to task the Federal Aviation Administration's acting Administrator, Robert Sturgell, in a letter today regarding the massive flight cancellations that have hit air travelers over the past couple of days (PDF of letter: http://menendez.senate.gov/pdf/04102008LettertoSturgell.pdf). The Senators have been blocking Sturgell's nomination to be made the permanent FAA Administrator since February, and they notified Sturgell today that the aircraft inspections issue has been added to the list of safety and efficiency issues that must be addressed before the \"\"hold\"\" is taken off the nomination.\"\"Every day it seems to get worse with the Federal Aviation Administration,\"\" said Senator Menendez. \"\"I'm concerned that so many air travelers are stuck on the ground, but I'm even more concerned that so many potentially unsafe planes were allowed to take millions of Americans into the skies for so long. Only an agency this out of touch could create such an unsafe, disorganized flying environment. Air travelers are always the ones who end up suffering - they deserve a federal watchdog that looks out for their safety and quality of life.\"\" \"\"Airline passengers deserve better.  The Bush Administration's FAA has taken unnecessary risks with passenger safety, from hazardous runways to insufficient numbers of trained air traffic controllers to the latest revelations about inadequate aircraft inspections,\"\" Sen. Lautenberg said.  \"\"We need new leadership at the FAA.  Mr. Sturgell helped craft many of the policies that are behind the problems travelers are facing today, and he should be held accountable for that -- not promoted.\"\"Hundreds upon hundreds of American Airlines flights have been canceled over the past couple of days, raising the possibility that for a long time, thousands of unsafe aircraft have been flying millions of Americans without much scrutiny from the Federal Aviation Administration. This flood of cancellations comes shortly after it was revealed that Southwest Airlines was permitted to get away with maintenance violations by complicit FAA officials.In February, Senators Menendez and Lautenberg announced that they were placing a hold on Sturgell's nomination, effectively blocking it until they release the hold (http://menendez.senate.gov/newsroom/record.cfm?id=292402).Text of letter:April 10, 2008The Honorable Robert A. SturgellDeputy and Acting AdministratorFederal Aviation Administration8000 Independence Ave., SWWashington, DC 20591Dear Administrator Sturgell:We are alarmed by the parade of flight cancellations we have seen since the Federal Aviation Administration (FAA) proposed a record $10.2 million in fines on Southwest Airlines for its maintenance violations.  While the cancellation of thousands of flights increases delays and is an immense burden to ticketed passengers, we are even more alarmed by the possibility that hundreds of planes have been flying unsafely.The pattern which has emerged is so pervasive and widespread that we cannot help but believe that it is the result of systemic problems within the FAA.  The FAA's hands-off approach to airline oversight has allowed \"\"deliberate violations,\"\" shoddy maintenance, incomplete record-keeping, and complacent oversight practices to grow and fester.This week alone, American Airlines has canceled almost 1,500 flights.  It should never have come to this.Over a month ago, the FAA announced its response to the Southwest Airlines debacle.  At the time, we hoped that the Bush Administration would respond swiftly and forcefully enough to protect the safety of the flying public.  The record fine, broad review of maintenance procedures, and investigation into a complicit FAA official seemed like a promising start.  However, more problems were found almost immediately.  This resulted in hundreds of planes from many different airlines being grounded and repaired.American Airlines alone grounded hundreds of its MD-80 planes to correct wiring problems.  But these planes were not inspected immediately after being repaired, because now, almost a month later, American is cancelling thousands of additional flights for inspections.  Why weren't these repairs inspected immediately?  Why were these potentially unsafe planes allowed to fly without inspection for two weeks?There have been known issues with the MD-80 since December, following an emergency landing in Minneapolis. While the airlines claim that passenger safety has not been compromised, we are profoundly disturbed by Capt. Sam Mayer's description of his MD-80 as an ice-encrusted \"\"popsicle\"\" after he managed to return it safely to the airport.It has been reported that American Airlines recorded 23 MD-80 landing gear problems in the last few months, several of which have resulted in emergency landings.Meanwhile, Newark Liberty International Airport is staffed by a bare minimum of air traffic controllers, and many of its most experienced controllers are nearing retirement.  Although the controllers are directly responsible for air traffic safety, you appear to have adopted a confrontational management strategy.  In response to calls for updated Standard Instrument Departures (SIDs) in Philadelphia, an FAA spokesman said, \"\"The controllers are there to ensure the planes get down safe.  If they don't like working for the FAA, they should reconsider their line of work.\"\"  That is not constructive, and does not help keep the public safe.This disturbing pattern has reinforced our conviction that the FAA does not have the flying public's safety as its first and highest priority.  Your continued laissez-faire approach is a tragedy waiting to happen, and we implore you to act before it is too late. Before we can remove our holds on your confirmation as FAA Administrator, we need to see evidence that you are leading the FAA in the right direction. Safety must be your highest priority.  It is simply unacceptable to have planes being repeatedly grounded for the same issue. Rather than simply waiting to react to problems, the FAA should actively enforce its maintenance, planning, and reporting procedures.  We hope you will begin changing the culture at the FAA immediately, and that we will ultimately be able to endorse you as a leader of this critical agency.Sincerely Yours,___________________________                                                        ___________________________ROBERT MENENDEZ                                                                                        United States SenatorFRANK R. LAUTENBERGUnited States Senator                                                                                                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b0825b74-aca9-412a-a348-bc2fc836c2c9,\"SEN. MENENDEZ ON BUSH IRAQ ANNOUNCEMENTS: \"\"THIS ALL ADDS UP TO MORE STAY-THE-COURSE\"\"\n                    \n                            Bush today said he is maintaining troop levels in Iraq and reducing tours but is not giving more rest at home\n                    \n                      April 10, 2008\n                     WASHINGTON - Today, President Bush made two announcements regarding the War in Iraq - that he is maintaining the number of troops in Iraq and that he is reducing tours in Iraq to 12 months, though he continues to do nothing to guarantee troops adequate time back home between tours.U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, released the following statement:\"\"This all adds up to more stay-the-course without a light at the end of the tunnel. Calling it a ‘time to consolidate and assess' is just a gentle way of saying there will be just as many Americans acting as Iraq's national police force at the end of this year as there were at the end of last year, and the year before that, and the year before that. Nothing is really changing.\"\"The same goes for our troop deployment schedules. A reduction in tour times for our overstretched troops is certainly welcome and long overdue, but we also need to guarantee them time back at home equal to the length of their deployments. Senate Democrats have fought for that, but the president and his loyalists resist it. How is that supporting the troops? What's the point of cutting their tours if they come home for two weeks and then are sent right back to Iraq?\"\"This president clearly will not come to the realization that beginning a responsible transition of our troops out of Iraq will stop the loss of American lives, begin to heal our national budget and reinforce our overstretched military while giving the Iraqis their best chance for lasting peace. Not until the Iraqis actually believe we won't be there forever will they do what it takes to find agreement and take charge of their future.\"\"                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b222ca4f-6302-4f5a-81f2-fef9b9d4c008,\"SENATE APPROVES BILL INCLUDING LATINO MUSEUM, CESAR CHAVEZ PROVISIONS\n                    \n                      April 10, 2008\n                     WASHINGTON, DC - Today, the United States Senate passed legislation that includes provisions which could lead to the creation of a National Museum of the American Latino, and also paves the way for the designation of various historic sites around the country after the legendary César Chávez. The Consolidated Natural Resources Act of 2008 (S. 2739), which the Senate passed today, includes both the Commission to Study the Potential Creation of the National Museum of American Latino Act of 2007 (S.500/H.R. 512), as well as the César Estrada Chávez Study Act (S. 327).\"\"I am proud that Senate Democrats led the way to approve legislation today that honors the countless contributions of Hispanic Americans to our country,\"\" Senate Majority Leader Harry Reid said. \"\"By approving a bill that would eventually honor Latinos with a national museum in Wasington, DC, and that would pave the way for honoring historical sites related to civil rights icon César Chávez, the Senate helped bring recognition to the vital place that Latinos have in our national mosaic.\"\"The Latino museum legislation would establish a Commission to study the potential creation of a national museum in Washington, DC dedicated to the art, culture, and history of Hispanic Americans. The bill passed by voice vote in the House of Representatives on February 6, 2007.  It will now head back to the House for final action as part of a larger package of bills. \"\"The contributions of Latinos in this country are innumerable and I am delighted that we are one step closer to fulfilling the dream of having a Museum of the American Latino on the national mall and historically significant places in the life of César Chávez designated as national landmarks\"\", said Sen. Robert Menéndez (D-NJ). \"\"These initiatives acknowledge the major part Latinos have played in weaving our historical fabric and strengthening our nation.\"\"The César Chávez provision would authorize the Secretary of the U.S. Department of the Interior to conduct a special resource study of sites associated with the life of César Estrada Chávez. The study would help determine whether those sites meet the criteria for being listed on the National Register of Historic Places or possible designation as national historic landmarks. The house version is sponsored by Rep. Hilda Solís (H.R. 359) and was passed in July 2007.  This bill is also contained in the package that will move to the House for final action.\"\"I believe we must celebrate the diversity of our Nation and Latinos in general, and César Chávez in particular, has been a significant part of American history. They have contributed to nearly every facet of our culture including the arts, business, and served in our Nation's military with distinction,\"\" said Senator Salazar (D-CO). \"\"These bills would take the first step in commemorating the rich contributions of the Latino community to American life, and would honor César Chávez as one of our nation's top civil rights leaders.\"\"                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3cdc9089-e3b6-417f-8382-89e419a656c4,\"SENATORS MENENDEZ, BYRD, CLINTON CALL ON PRESIDENT BUSH NOT TO ATTEND OLYMPIC OPENING CEREMONIES\n                    \n                            Senators say Bush's presence would show tolerance for human rights violations, disrespect for spirit of the Olympics\n                    \n                      April 9, 2008\n                     WASHINGTON - Today, as the Olympic torch relay makes its only stop in the United States, U.S. Senators Robert Menendez (D-NJ), Robert Byrd (D-WV) and Hillary Clinton (D-NY) are officially calling on President Bush not to attend the Opening Ceremonies in Beijing this summer.In their letter to Bush the Senators wrote:\"\"The recent developments in Tibet, in which Buddhist monks and other ethnic Tibetans were violently punished and in some cases killed for participating in protests, are disturbing and should be unacceptable to anyone who believes in basic human freedoms.  Furthermore, these developments also seem to confirm that the Chinese government, which has long disrespected the rights of its citizens, has failed to sufficiently improve its conduct when confronted with citizens who happen to voice a difference in opinion.  We believe that your attendance at the opening ceremonies, rightly or not, would send the implicit message to the world that the United State condones the intolerance that has been demonstrated by these actions of the Chinese government.\"\"The Chinese government was awarded the Games on the understanding that it would work to significantly improve its human rights record. Clearly, it has not. In fact, its actions are completely contradictory to the Olympic spirit.\"\"The Senators continued:\"\"If the Chinese government is ever to treat its people with basic human rights, it must be sent a bold and clear message that its record of violence and suppression is completely unacceptable. Few actions can speak louder than if the President of the United States were to condemn the Chinese human rights record with the entire world watching. Refusing to attend the opening ceremonies would accomplish exactly that.\"\"PDF of letter to Bush: http://menendez.senate.gov/pdf/040908-OlympicsLetter.pdfFull text of letter:April 9, 2008President George W. Bush1600 Pennsylvania AvenueWashington DCDear President Bush:We are writing to express our concerns about the Chinese government's continued human rights violations and urge you not to attend the opening ceremonies at the Olympic Games in Beijing this summer.  The Chinese government's unwillingness to acknowledge or address their record of human rights violations is in direct conflict to the spirit of the Olympic Games, and the United States cannot just accede to the Chinese government with our attendance. The recent developments in Tibet, in which Buddhist monks and other ethnic Tibetans were violently punished and in some cases killed for participating in protests, are disturbing and should be unacceptable to anyone who believes in basic human freedoms.  Furthermore, these developments also seem to confirm that the Chinese government, which has long disrespected the rights of its citizens, has failed to sufficiently improve its conduct when confronted with citizens who happen to voice a difference in opinion.  We believe that your attendance at the opening ceremonies, rightly or not, would send the implicit message to the world that the United State condones the intolerance that has been demonstrated by these actions of the Chinese government.The Chinese government was awarded the Games on the understanding that it would work to significantly improve its human rights record. Clearly, it has not. In fact, its actions are completely contradictory to the Olympic spirit.  We would like to highlight two specific points in the Olympic Charter's Fundamental Principles of Olympism:• \"\"The goal of Olympism is to place sport at the service of the harmonious development of man, with a view to promoting a peaceful society concerned with the preservation of human dignity.\"\"• \"\"Any form of discrimination with regard to a country or a person on grounds of race, religion, politics, gender or otherwise is incompatible with belonging to the Olympic Movement.\"\"The Chinese government blatantly violates both of these points. Some have made the argument that your attendance at the opening ceremonies is more about support for the Games themselves than for the host country.  To the contrary, it would show tremendous support and respect for the Games and the spirit they embody to take a stand against a host nation that flagrantly disrespects that spirit.We remind you that the recent developments in Tibet are only the latest chapter in a long history of Chinese human rights concerns. Even in the midst of the latest atrocities against Tibetans, we should not forget the Chinese government's continued unwillingness to use all of its unique leverage with the Sudanese regime to assist the international effort to bring an end to the genocide in Darfur. This issue remains of serious concern to us and many others who have not seen the improvements in Darfur that we hoped would have happened long ago.If the Chinese government is ever to treat its people with basic human rights, it must be sent a bold and clear message that its record of violence and suppression is completely unacceptable. Few actions can speak louder than if the President of the United States were to condemn the Chinese human rights record with the entire world watching. Refusing to attend the opening ceremonies would accomplish exactly that. We hope that you agree with us that the Chinese government's actions are unacceptable and that we must send a bold message now, while the world is focused on China.Sincerely,                                                               _____________________                         _______________________    ROBERT MENENDEZ                                       ROBERT BYRD                   United States Senator                                       United States Senator _____________________HILLARY RODHAM CLINTONUnited States Senator                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bca88b04-c5e5-4619-8a4a-98fcd56fe501,\"NYC CONGESTION PRICING PLAN DIES, SENATOR MENENDEZ REACTS\n                    \n                            This weekend, Sen. Menendez called upon Mayor Bloomberg and the Federal Highway Administration to eliminate special NJ surcharge\n                    \n                      April 7, 2008\n                     Washington-U.S. Senator Robert Menendez (D-NJ) made the following statement today upon the announcement that the New York City congestion pricing plan died in the New York State Assembly:\"\"I certainly hope this is the end of the effort to squeeze the people of our state. Somehow, a plan to reduce congestion on the roads became a plan to make an extra buck off of New Jersey, and that is neither fair nor legal. Reducing traffic, cleaning our air and getting commuters to use mass transit are tremendously important goals we all should work toward, but unfairly burdening the drivers of one state in particular is not how to go about it. I look forward to working with other leaders in the region to find more sensible and balanced ways to achieve these goals.\"\"This weekend, the Senator urged Bloomberg and the federal government to reconsider their support for the revised congestion pricing plan, which would have made drivers specifically from New Jersey pay an extra $3. Senator Menendez wrote Bloomberg to highlight the inequities for New Jerseyans under the plan and make the case that it is unconstitutional (PDF of letter: http://Menendez.senate.gov/pdf/4408BloombergCongestionPricing.pdf). In addition, Senator Menendez wrote the Federal Highway Administration to request that New York be denied federal funding linked to the congestion-pricing plan (PDF of letter: http://Menendez.senate.gov/pdf/4408FHACongestionPricing.pdf).                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=efca242b-8cdf-4800-9b8d-e8f4dd54e6f6,\"NYC CONGESTION PRICING: SENATOR MENENDEZ TELLS MAYOR BLOOMBERG, FEDERAL GOV'T THAT NEW PLAN IS UNFAIR TO NEW JERSEYANS\n                    \n                            In letters, Menendez calls on Mayor Bloomberg to eliminate special NJ surcharge; asks Federal Highway Administration to deny NY money unless surcharge is eliminated\n                    \n                      April 5, 2008\n                     Washington-U.S. Senator Robert Menendez (D-NJ) is expressing his opposition to the revised congestion pricing plan put forth by New York City Mayor Michael Bloomberg by urging Bloomberg and the federal government to reconsider their support for it. Senator Menendez has written Bloomberg to highlight the inequities for New Jerseyans under the plan and make the case that it is unconstitutional (PDF of letter: http://Menendez.senate.gov/pdf/4408BloombergCongestionPricing.pdf). In addition, Senator Menendez has written the Federal Highway Administration to request that New York be denied federal funding linked to the congestion-pricing plan (PDF of letter: http://Menendez.senate.gov/pdf/4408FHACongestionPricing.pdf).\"\"We need to put the brakes on this plan before New Jerseyans get squeezed,\"\" said Senator Menendez. \"\"This plan is doubly unfair since New York City stands to gain $354 million in federal funds, while the 140,000 New Jerseyans who commute to Manhattan will not see any of it. This surcharge is unconstitutional because it specifically singles out and punishes movement into Manhattan from our state.\"\"          The new plan, which would charge $8.00 to New York drivers that travel below 60th Street in Manhattan from 6:00 am to 6:00 pm on weekdays, would cost New Jersey drivers $11.00.  The original plan would have allowed the tolls paid by drivers entering Manhattan at bridges and tunnels to offset the congestion pricing cost.  Under the revised plan, New Jersey drivers would have to pay an additional $3.00.New York City would receive $354 million in federal funding for mass transit service improvements if the New York State Assembly approves the congestion pricing plan.Text of letter to Bloomberg:April 4, 2008Mayor Michael R. BloombergCity HallNew York, NY 10007Dear Mayor Bloomberg:I write to express my strong opposition to any congestion pricing plan that would unfairly burden New Jersey drivers entering Manhattan with higher fees than commuters entering Manhattan from the outer boroughs.  Such a scheme would be extremely unfair to New Jersey drivers and an unconstitutional burden on interstate commerce.As originally devised, your congestion pricing plan was designed to allow tolls paid by drivers at bridges and tunnels entering Manhattan to offset the congestion price drivers would be charged for driving in Manhattan below 60th Street.  Thus, whether someone was paying a toll to cross the Triborough Bridge or to cross the George Washington Bridge, the congestion price would be discounted by the amount paid in toll.  That plan placed a large burden on drivers, but at least it is was fair.  But last week you secretly changed the plan to include a special surcharge on New Jersey drivers.  No longer will they have their tolls offset the congestion price as New York drivers enjoy.  Instead, New Jersey drivers will have to pay $11 to enter Manhattan while New York drivers will only have to pay $8.  This system is patently unfair and unconstitutional.The Commerce Clause of the United States Constitution grants Congress the power to \"\"regulate Commerce . . . among the several States.\"\" U.S. Const. art. I, § 8, cl. 3. The Commerce Clause limits the power of states to discriminate against interstate commerce and prohibits states from passing measures that protect in-state economic interests by burdening out-of-state economic interests.  See New Energy Co. v. Limbach, 486 U.S. 269, 273 (1988).  The congestion pricing scheme as currently devised is precisely this kind of protectionism.   The movement of New Jersey's goods and people into Manhattan cannot be singled out and treated unfairly no matter how politically convenient is if for the State of New York.The scheme is doubly unfair since New York City stands to gain $354 million in federal funds designed to improve mass transit services in New York.  The 140,000 New Jerseyans who commute to New York City will not see any of these funds despite the considerable strain that will surely be placed on our state's mass transit system should this plan be put in place. On behalf of New Jersey commuters I ask that you please restore equity to your congestion pricing plan.  New Jersey and New York should remain partners in solving our shared transportation burdens.  By treating New Jerseyans unfairly this plan threatens to severely strain this partnership.Sincerely,___________________________ROBERT MENENDEZUnited States SenatorText of letter to Federal Highway Administration:April 4, 2008Acting Administrator James RayFederal Highway Administration1200 New Jersey Ave., SEWashington, DC 20590Dear Administrator Ray:I write to you in regards to the $354 million grant the Federal Highway Administration is poised to award to New York City should the New York State Legislature approve a congestion pricing plan for Manhattan.   Last week the City unilaterally changed the plan to unfairly burden New Jersey commuters. As originally devised, the congestion pricing plan was designed to allow tolls paid by drivers at bridges and tunnels entering Manhattan to offset the congestion price drivers would be charged for driving in Manhattan below 60th Street.  Thus, whether someone was paying a toll to cross the Triborough Bridge or to cross the George Washington Bridge, the congestion price would be discounted by the amount paid in toll.  That plan placed a large burden on drivers, but at least it is was fair.  But last week New York City secretly changed the plan to include a special surcharge on New Jersey drivers.  No longer will they have their tolls offset the congestion price as New York drivers enjoy.  Instead, New Jersey drivers will have to pay $11 to enter Manhattan while New York drivers will only have to pay $8.  This system is patently unfair.The scheme is doubly unfair since New York City stands to gain $354 million in federal funds designed to improve mass transit services in New York.  The 140,000 New Jerseyans who commute to New York City will not see any of these funds despite the considerable strain that will surely be placed on our state's mass transit system should this plan be put in place. On behalf of New Jersey commuters I ask that you deny New York City any grant money unless they fix the inequities they recently included in the plan. I thank you for your attention to this important matter.  Please do not hesitate to contact my office should you have any questions.Sincerely,___________________________ROBERT MENENDEZUnited States Senator                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3e629bcd-1ba3-4d71-981b-20877b891d4c,\"NJ SENATORS: AIRPLANE INSPECTIONS YET ANOTHER ISSUE THE FAA MUST ADDRESS BEFORE HOLD OF NOMINEE WILL BE RELEASED\n                    \n                            Senators Menendez and Lautenberg have blocked confirmation due to litany of issues involving safety and efficiency in NJ airspace\n                    \n                      April 3, 2008\n                     WASHINGTON - Today, as neglect of airline inspections took center stage at a Congressional hearing, New Jersey Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) say they are adding it to the list of issues the Federal Aviation Administration must resolve before they would consider lifting their holds on the nomination for FAA Administrator. The senators announced in February that they were placing holds on the nomination of FAA Acting Administrator Robert Sturgell to be the permanent Administrator, citing his agency's lack of action on a number of air safety and efficiency concerns, particularly within the congested New Jersey airspace.\"\"The Federal Aviation Administration has lost focus of its mission,\"\" said Senator Menendez. \"\"It needs a serious reminder that it exists to the keep to flying public safe, not to get cozy with the airlines. The list of major concerns that this out-of-touch agency must address just keeps on growing. The common thread though all of these problems is a lack of leadership at the agency. I will make sure that Mr. Sturgell's nomination does not see the light of day until this list of issues is addressed.\"\"\"\"Major changes are needed at the FAA.  The recent safety problems are just the latest evidence that new leadership and strong enforcement of our safety laws are needed to make air travel safe for passengers,\"\" Senator Lautenberg said.  \"\"The problem is that the Bush Administration's FAA has too often chosen airlines over passengers and the public, whether it's failing to inspect their planes, allowing them to over-schedule flights or redesigning the flight patterns over New Jersey.   As the FAA's second-in-command, Mr. Sturgell helped create many of these poor policies and he must be held accountable.\"\"Today's hearing in the House Transportation Committee includes whistleblowers testifying that Southwest Airlines was permitted to skip inspections of aircraft because of a close relationship with certain FAA officials.            Among the issues that the New Jersey senators raised when the hold was first placed on Sturgell were:• Airspace redesign - without listening to public feedback, the FAA rushed into a plan for new flight paths into and out of Newark Liberty International Airport and Philadelphia International Airport that promises to increase the noise level for thousands of New Jersey residents without substantially reducing flight delays.• Air traffic controllers - there is serious concern that the not enough air traffic controllers with the experience necessary to manage the nation's busiest airspace are on staff in the region, but the FAA has only attempted to justify the staffing levels rather than remedying them.• Near misses - reports of near misses on the runway at Newark and in the air are increasing, which was underscored by a Government Accountability Office report Senator Lautenberg requested that showed that Newark has among the most runway incursions in the nation.• Minimum fuel landings - both Senators wrote the FAA last year about reports of a dramatic increase in flights coming in to Newark with only a minimum amount of fuel left in the tank, but the FAA still has not been able to produce statistics or an adequate answer.                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c7a27f3e-1681-4748-88e2-b227cce4773f,\"UPON SENATE AGREEMENT TO PRODUCE BIPARTISAN HOUSING RELIEF PACKAGE, SEN. MENENDEZ SPEAKS ON SENATE FLOOR\n                    \n                            Member of Banking Committee lays out hopes for final bill, says bailout for Bear Sterns without action for homeowners is wrong\n                    \n                      April 1, 2008\n                     WASHINGTON - Today, it was announced in the Senate that a bipartisan deal is being worked on in order to advance a housing relief package that Democrats have been attempting to pass for weeks. Senator Robert Menendez (D-NJ) took to the Senate floor in the afternoon to speak about his hopes for the final package and to stress the need for assistance for homeowners. Senator Menendez pointed out that, even though the Bush Administration undertook an overwhelming effort to save Bear Sterns, it has only taken baby steps toward helping to save homeowners from foreclosure.\"\"When it was clear that a major investment bank on Wall Street was in trouble, the Bush Administration rushed to the scene like firefighters responding to a five-alarm blaze,\"\" said Senator Menendez. \"\"But a full year into the subprime mortgage crisis, they have done nothing but hit the snooze button on the alarm as millions of Americans watch their dreams of homeownership go up in smoke.\"\"It's time that we react with the same urgency and seriousness, no matter if the people who are in financial trouble occupy an office building or a row house. I'm hopeful that today, finally, there is a glimmer of hope for homeowners who have been left to fight this battle alone.  It's clear that members on both side of the aisle know that it is time to act. And it's clear what our goal has to be: helping families keep their homes.\"\"Full text of remarks, as prepared for delivery:M. President, a month ago I came to the floor to speak on behalf of America's homeowners. Since then, tens of thousands of families have lost their homes.Since then, we've been watching home prices fall. We've been watching foreclosure rates skyrocket. We've been watching tens of thousands of Americans lose their jobs.In my home state of New Jersey, over the next two years, we expect more than 57,000 houses to be lost to foreclosures.  That means 57,000 families who will have to hand over the keys to their home. 57,000 families will be forced to say goodbye to the place where they are nurtured and comforted, the place where they live through the good and the bad, the place they come home to every night.  In the words of families who know what it feels like to lose a home, they'll feel like they've lost everything.Nationwide, the number of foreclosures that are going to happen if we don't act is unfathomable: two million. Two million American families are in line to lose their homes over the next two years.Everyone stands to lose from those foreclosures.  Lenders report losing tens of thousands of dollars on each foreclosure.  Neighbors see the values of their own homes drop.  And when we see that 63,000 Americans lost their jobs a month ago, when we see weak earnings reports from businesses, wild swings in the stock market, and the collapse of a major firm on Wall Street, we can see that this housing crisis is truly shaking the entire economy to its core.We all know that the heart of this economic downturn is the housing crisis. So the question is, how long are we going to watch, before we realize it's time to take action?When it was clear that a major investment bank on Wall Street was in trouble, the Bush Administration rushed to the scene like firefighters responding to a five-alarm blaze.  But a full year into the subprime mortgage crisis, they have done nothing but hit the snooze button on the alarm as millions of Americans watch their dreams of homeownership go up in smoke.It's time that we react with the same urgency and seriousness, no matter if the people who are in financial trouble occupy an office building or a row house.I'm hopeful that today, finally, there is a glimmer of hope for homeowners that have been left to fight this battle alone.  It's clear that members on both side of the aisle know that it is time to act.And it's clear what our goal has to be: helping families keep their homes.I'm pleased that we've made what seems to be an important breakthrough in this Chamber.  I have the utmost faith in both Chairman Dodd and Ranking Member Shelby that they understand the urgency at hand, and that they will do their best to put forward a workable solution that we can all support.  I certainly hope it's one I can support. But I strongly support the Reid bill as it is, and I would hope that bipartisanship won't mean we stray far from providing the direct assistance that homeowners need.  So there are a few key steps that the final bill has to take.First, we need to provide funding for counseling in order to reach and help families at risk of losing their homes.  Many American families are sitting around their kitchen tables, looking through their mortgage bills, their finances, and bank notices - and they don't know where to turn.These counselors could offer them real solutions and options to help them avoid receiving that foreclosure notice.   The Reid bill puts forward $200 million to make sure counseling reaches those who need it most.Second, we need to provide funding to allow communities with high foreclosure rates to access Community Development Block Grants.  Communities can use these funds to purchase foreclosed properties for rehabilitation, rent or re-sale. Having a foreclosed home sit abandoned in a community doesn't benefit anyone—it decreases surrounding home values and can attract crime and vandalism.  The bottom line is that foreclosures destabilize neighborhoods.  The funds in this bill allow communities to stop that spiral before it starts.Some argue that stepping in to help our communities recover from the housing crisis would somehow be a blow to the concept of personal responsibility, because some homeowners made bad choices in signing up for subprime mortgages.Don't get me wrong, personal responsibility is important. That's why we need greater support for homeowner education, for foreclosure counseling and financial literacy, so anyone thinking about buying a home will be able understand the terms of their mortgage, even the fine print, and have the tools to protect themselves.But personal responsibility isn't just important for homeowners. Every participant in the life of a loan needs to step up and take real responsibility and action.Every broker, lender and realtor, every appraiser, regulator, credit rating agency and investing firm needs to make changes if we have any hope of quieting this storm. The time for blame-games is over. The time for action has come.Third, I hope this body looks carefully at a provision that could help more than 600,000 families stuck in bad loans keep their homes. I know some of my colleagues are very concerned about this provision, which would give judges in bankruptcy proceedings the discretion to modify loan terms. But the fact is, this provision is narrowly-tailored, it's a one-time limited fix, and in the end, it's a win-win for borrowers and lenders alike. This provision alone would help over 14,000 families in my home state of New Jersey avoid foreclosure.  That would be a savings of almost $5 million in home values.My good friend Senator Durbin has done an excellent job at hammering out a compromise, and I hope my colleagues will give it careful consideration. M. President,As we in this Congress are debating how best to help homeowners, how best to end the housing crisis and how best to get our economy back on track, we have to see the bigger picture. There's a lot at stake, no matter who we are, no matter if we have a subprime mortgage or not.When the house next to ours gets boarded up, it affects the value of our property, too, and how safe we feel walking around our neighborhood at night.When a neighbor of ours has to declare bankruptcy, and is forever saddled with debt they can't pay, they shop less at our stores and purchase fewer of the services our communities offer—and that hurts our community's bottom line.When a non-profit organization in Jersey City is close to finishing the building of its new arts center so it can give kids an opportunity to do something productive after school and stay away from gangs, and they can't get the last bit of money they need because of this credit crunch and this housing crisis—it affects us all.Martin Luther King, Jr. reminded us that \"\"we are all tied into a single garment of destiny,\"\" that \"\"we cannot walk alone.\"\"M. President, this is a crisis that we're all in together. There is no reason we can't all work together to end it.Thank you, I yield the floor.                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=758e87a1-b541-4ffe-9045-7501253cc607,\"ON CESAR CHAVEZ'S BIRTHDAY, SEN. MENENDEZ HONORS HIS LEGACY, DECRIES REPUBLICAN BLOCKAGE OF RESOLUTION COMMEMORATING AMERICAN CIVIL RIGHTS HERO\n                    \n                            Sen. Menendez, co-chair of the Senate Hispanic Task Force, says action further illustrates how Republicans are out of touch with Latino values\n                    \n                      March 31, 2008\n                     Washington - Today marks the 81st anniversary of the birth of one of the nation's foremost civil rights and labor leaders, Cesar Estrada Chavez. Despite the ongoing efforts of Democrats in the Senate to pass a resolution honoring this prominent Latino civil rights leader, Senate Republicans blocked it last year and have done so again this year.U.S. Senator Robert Menendez (D-NJ), co-chair of the Senate Hispanic Task Force, issued the following statement, illustrating the importance of Chavez's legacy and decrying the Republican objection to the resolution. \"\"The legacy of Cesar Chavez continues to resonate today, from rural agricultural fields to urban centers across this nation, and his achievements are an inspiration to all hard-working Americans who want to achieve a better quality of life.  Remembering his legacy reinforces the belief that all hard-working individuals deserve the right to bargain collectively to achieve better wages, better health benefits and suitable working conditions.  As the son of poor, working-class parents who were not afforded the benefits of a union, I am moved by Cesar Chavez's selfless work on behalf of others. \"\"The actions by Senate Republicans to continue blocking a resolution commemorating Cesar Chavez seems like an outright rebuke of the historical contributions of Latinos to our nation and the legacy of his movement. Chavez is a hero to millions of Americans, Hispanic or not, and he should be honored with dignity.  This action further illustrates that Republicans are out of touch with Latino values and priorities, as well as the values and priorities of working Americans.\"\"Cesar Estrada Chavez was born 81 years ago, on March 31, 1927, in Arizona to poor migrant farm workers.  Following the principles of Mahatma Gandhi and Martin Luther King Jr., in 1962 Cesar Chavez co-founded the first successful farm workers union in the United States -- the United Farm Workers (UFW) to campaign for safe and fair working conditions, reasonable wages, decent housing, and the outlawing of child labor.  He inspired hope in these workers through his great rallying catchphrase, \"\"Sí Se Puede.\"\"  Cesar E. Chavez was a recipient of the Martin Luther King Jr. Peace Prize during his lifetime and was awarded the Presidential Medal of Freedom on August 8, 1994.                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=be6822a7-bf91-4a15-b117-59472b58954d,\"SEN. MENENDEZ STATEMENT ON PAULSON FINANCIAL INDUSTRY OVERSIGHT PLAN\n                    \n                            Member of Senate Banking Committee says it is a step in the right direction but does not go nearly far enough\n                    \n                      March 31, 2008\n                     WASHINGTON - Today, Treasury Secretary Henry Paulson announced his plan to increase oversight over financial markets. U.S. Senator Robert Menendez (D-NJ), a member of the Banking Committee, released the following statement on the plan:\"\"Americans just have to look at their monthly bills these days to know that accountability for financial markets must be tighter. The current crisis arose because a little-understood market was irresponsibly allowed to run wild. Unfortunately, accountability for the types of complex products that are in dire need of scrutiny is absent in Secretary Paulson's plan. We cannot mistake this proposal as a response that gets us out of our current crisis. Rather, this is the first step in what must be a comprehensive reform process that will go well beyond this proposal. The end result should be action to solidify our markets, increase oversight where it is lacking, and improve our regulatory framework so that we do not see a repeat of the current crisis.\"\"The key is not just to rearrange who does what, but to ensure that everyone is doing their job instead of being asleep at the switch. Successful reform will take more than musical chairs - it will mean shining the light on practices that have existed in the dark and ensuring that the federal government can take action when necessary to protect the American people.\"\"                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=76bbdf6e-835c-4e32-a948-660cd868232d,\"BUSH IN NJ: SEN. MENENDEZ EXPRESSES HOPES FOR PRESIDENT'S STATEMENT ON HOUSING TODAY\n                    \n                            President visits debt-counseling agency in Freehold to tout mortgage hotline today\n                    \n                      March 28, 2008\n                     NEWARK, NJ - Today, President Bush will be at a debt-counseling in Freehold, New Jersey agency to tout the mortgage hotline established recently in the midst of the foreclosure crisis. U.S. Senator Robert Menendez (D-NJ), a member of the Senate Banking Committee who sounded alarm bells on the housing crisis more than a year ago and has been a key supporter of Congressional efforts to address it, released the following statement:\"\"For more than a year, this tsunami of foreclosures has washed away the American dream for millions. The president has bent over backward to stabilize Wall Street, but he has never exerted much effort on helping the homeowners on Main Street.\"\"Homeowners across the country are drowning in out-of-control mortgage payments. The president must finally realize that their dire situation not only threatens to take away the American Dream from millions, it also has a direct effect on property values, on the credit crisis and on our entire slumping economy.\"\"I would hope that the president is in New Jersey to finally announce a new broader-based, farther-reaching initiative to buoy homeowners who houses are slipping away. I would hope he is here to finally endorse some of the housing bills in Congress that his Republican colleagues have refused to support. What American homeowners can't afford is just another photo-op or more baby steps.\"\"                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0fc931bb-166d-4d11-b2d7-cd86492abd85,\"SEN. MENENDEZ REACTS TO BUSH ANNOUNCEMENT IN NJ: LESS FANFARE, MORE ACTION NEEDED TO DENT FORECLOSURE CRISIS\n                    \n                            President visited debt-counseling agency in Freehold today, offered no new solutions\n                    \n                      March 28, 2008\n                     NEWARK, NJ - Today at a debt-counseling agency in Freehold, New Jersey, President Bush raised awareness about efforts underway by counseling agencies, but failed to announce any new initiatives to tackle the current foreclosure crisis. U.S. Senator Robert Menendez (D-NJ), a member of the Senate Banking Committee who sounded alarm bells on the housing crisis more than a year ago and has been a key supporter of Congressional efforts to address it, released the following statement:\"\"Today was a nice photo-op for the president, but touting the baby steps the administration has taken in the face of this tsunami of foreclosures cannot be mistaken for the type of bold action American homeowners need. More and more, the message from last week's Bear Sterns bailout is becoming clear. The administration will summon all hands on deck, burn the midnight oil, and take every necessary step to salvage Wall Street, but when it comes to helping struggling homeowners, it's just too little, too late.  Eight months after the administration first announced it had a plan to help homeowners, it appears a hotline and slow-paced effort that is reaching a narrow margin of at-risk homes is the best it has to offer. \"\"I would have hoped that the president came to New Jersey to announce a new broader-based, farther-reaching initiative to buoy homeowners whose homes are slipping away. I would have hoped that he was here to finally endorse some of the proposals in Congress that could help homeowners save their homes, which his Republican colleagues have refused to support. I think the 34,000 New Jersey homeowners who filed for foreclosure last year and the two million families nationwide that could be facing foreclosure in the coming year were hoping for more as well. But instead, the president's visit today merely fits the administration's pattern of inaction.\"\"In the absence of administration leadership on behalf of America's homeowners, it is important for Congress to pass the housing bill that will be up for a vote again next week. The question is whether Republicans in the Senate can yet again look struggling homeowners in the eyes and vote no.\"\"                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fa25ea44-82a6-4114-839f-eddca06a5119,\"UPON ALARMING NEWS OF AIRPORT SECURITY CONCERNS, SEN. MENENDEZ DEMANDS ANSWERS FROM FEDERAL GOVERNMENT\n                    \n                            News reports this week uncovered lax screenings for Newark airport personnel and workers tied to drug ring\n                    \n                      March 27, 2008\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) is demanding answers on federal security procedures for airport personnel upon disturbing reports about the security at Newark Liberty International Airport. This week, the Star Ledger reported on lax security screenings for Newark airport personnel, as well as airline employees who have been implicated in heroin and theft rings. These revelations have spurred Senator Menendez to seek answers from the heads of the U.S. Department of Homeland Security and Transportation Security Administration.\"\"I want to know why the federal government on one hand makes passengers take off their shoes as part of a full security screening process but on the other hand barely checks personnel who have access to sensitive areas of the airport,\"\" said Senator Menendez. \"\"These recent incidents aren't the first indication that personnel screening is inadequate.  We need to get to the bottom of why there are still holes in airport security so we can take the necessary steps to make our airports as safe and efficient as possible.\"\"PDF of Menendez letter to DHS and TSA: http://menendez.senate.gov/pdf/032608TSAWorkerScreeningLetter.pdfText of letter:March 26, 2008The Honorable Michael Chertoff                                Secretary of Homeland Security                                 U.S. Department of Homeland Security                    Washington, DC 20528                                            The Honorable Kip Hawley AdministratorTransportation Security AdministrationArlington, VA 22202Dear Secretary Chertoff and Administrator Hawley:I am writing to express my concern about security procedures at our nation's airports, specifically the screening of airport workers.  Yesterday, the Star Ledger reported an incident involving airline employees smuggling heroin onto a plane as part of an international trafficking operation.  This comes on the heels of previous reports detailing a lack of daily screening of airline employees at Newark Liberty Airport and an incident in which baggage handlers were involved in a counterfeit ring.  These incidents alone are reason for concern - together, they raise serious questions about the adequacy of our nation's airline employee screening procedures. Ensuring the safety and security of our nation's planes and airports is a complex, difficult task.  However, we are now years beyond September 11th.  We have had years to develop screening techniques, put in place more advanced security measures, and learn by trial and error.  It is only reasonable to expect that by now our nation would have clear, uniform procedures in place to address the screening of airport employees.  But, based on these recent reports, this clearly is not yet the case.Airport workers are an integral part of our nation's aviation system.  They are responsible for a wide range of services in and around an airport, stretching from food service and retail store employees, to baggage handling or airplane maintenance.   Most importantly, the vast majority of airport employees - as many as 90 percent - have access to secure areas of an airport.  In nearly every other sector in which security is a concern, from private industry to government agencies, employees go through screening or metal detectors every day.  It is troubling that when it comes to our nation's airports, this principle does not seem to apply.  In addition, the fact that pilots and flight attendants undergo security every time they fly, but those who handle cargo, luggage, and have access to planes on the tarmac face little or no screening seems to simply defy common sense.While I applaud TSA for working to improve employee screening, including a pilot project that is underway at a handful of airports around the country, I am afraid this effort has been at a pace that does not meet the urgency security at our airports requires.  The fact is, at too many of our nation's airports, far too little screening is taking place.  This leaves a vulnerable hole in our security that we cannot afford.      When employees who have access to the most secure areas of our airports can walk through security with little or no security check, I think this raises some serious questions as to whether our current framework is adequate. With these concerns in mind, I respectfully ask for your response to the following questions.• Are you confident that current procedures for employee screening at Newark Liberty Airport and around the country are adequate?  • Why don't we have systematic daily screening of airline employees?• Shouldn't airport employees be subject to the same security procedures as pilots and flight attendants?  • Shouldn't there be uniform national standards for screening of airport employees at every airport?  • Why should airports be able to set their own security procedures for employee screening? • What are you doing in the interim of the TSA pilot project to monitor employee screening at airports around the country?I look forward to your response, and to working with you to improve the security of all our nation's airports.Sincerely,ROBERT MENENDEZUnited States Senator cc:   Barbara Powell, Federal Security Director, Transportation Security Administration        Susan Bass Levin, First Deputy Executive Director, Port Authority of New York and New Jersey        William DeCota, Director of Aviation, Port Authority of New York and New Jersey         Ralph Tragale, Port Authority of New York and New Jersey                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=62f58ef4-1ee0-4c0e-9d14-816f30493a54,\"U.S. SENATOR ROBERT MENENDEZ ADDRESSES VIRTUA HEALTHCARE COMMUNITY, PRESENTS HEALTHCARE INITIATIVES FOR NEW JERSEY'S FAMILIES\n                    \n                            Announces $200,000 for Virtua Health's Cancer Treatment Equipment Project, Menendez highlights healthcare initiatives for women, children and underserved communities\n                    \n                      March 25, 2008\n                     Voorhees, NJ - U.S. Senator Robert Menendez today addressed the Virtua Healthcare's Board, Administration and guests to discuss some of the healthcare initiatives he has taken on in the United States Senate.  Sen. Menendez, a leader in the United States Senate on issues of women, children, and minority health, presented legislation he has introduced and passed to benefit members of these constituencies.  Also of interest to the Virtua Healthcare System was the nearly $200,000 in federal dollars Sen. Menendez successfully helped secure this past January for Virtua's Health's Cancer Treatment Equipment Project. Below is the text of his remarks from today, as prepared for delivery:Thank you, Richard Miller for that kind introduction, and thank you to the Virtua Board and administrators for allowing me the opportunity to be with you all today.The real experts on health care are sitting here in front of me, so I'm going to keep my remarks brief, and then I'd love to answer any questions you might have and learn as much as I can from you. One thing we all know very well is that New Jersey hospitals are facing some of their toughest times ever.Over the past year and a half, we've seen seven hospitals shut their doors, four more announce plans to close and five file for bankruptcy. Over the last twenty years, in New Jersey, almost 1 in every 3 hospitals has disappeared. When a hospital closes its doors, this means lost jobs, it can mean lost options for treatment, and it can mean an entire community at a loss for words. I am committed to ensuring that our communities always have access to critical services—even in this tight economic time.It's clear we need to do more to help. I happen to think this is a crisis that isn't just the responsibility of individuals to resolve, not just the responsibility of the state to resolve— it's a crisis that our entire nation needs to come together to resolve.That's why I was happy to join with Sen. Lautenberg to secure almost $200,000 in federal funding for your Cancer Treatment Equipment Project, bringing a state-of-the-art linear accelerator to Mount Holly, and giving your patients a new weapon in the fight against cancer.One of my highest priorities as a United States Senator is making sure our health care system has all the funding it needs to survive. And I want to thank all of you for your strong support and help working toward the positive change in Washington that we all want to see.For you, making health care work means delivering babies, performing innovative cancer therapies, giving emergency treatment to heal pain and bring hope.For me, as a legislator, making health care work is a question of values. It's a question of values, whether we should collectively help people have access to top-tier facilities like yours. It's a question of values, whether we support the education that will bring down rates of diabetes and heart disease. When a child is crying in the night, and her parents are twice as afraid she has something serious because they don't have insurance to pay for treatment, our values are what determines whether that child's cries reach our ears.The current state of health care in this country puts our beliefs to a profound test.When 47 million Americans still have no health insurance, including millions of children, we're not talking about people falling through the cracks, we're talking about people falling into a massive gulf.It is a gulf that has been pushed opened along the seismic lines of class and race.Just because you're born into a black or Hispanic family, just because your parents work at some of the toughest jobs in the country but without health coverage, you're going to be at a far higher risk for so many preventable childhood diseases.In this great nation of ours, the wealth of your parents should not impact your access to a wealth of opportunity. In this great nation, the darkness of your skin should not diminish the brightness of your future.I believe no child should have to go to bed at night without health care. That's why I've stood up to expand the State Children's Health Insurance program, to cover an additional 100,000 children in New Jersey, to cover an additional 4 million children across America. That's why I've stood up for the Healthy Families Act, to allow fathers and mothers and daughters and sons to take sick leave to take care of both themselves and their families.MOTHERS ACTThe health of children is deeply connected to the health of their mothers. There are so many complicated aspects of maternal care, but I just want to mention one. In the United States, ten to twenty percent of women suffer from a disabling and often undiagnosed condition known as postpartum depression.  It's serious, it's disabling, and new mothers deserve to be given information and resources on this condition so, if needed, they can get the appropriate help.For a long time, I've been working hard to support the MOTHERS act, legislation that would greatly increase the support available to diagnose and treat the condition. I want to thank Virtua for all your support on this issue. You've shown tremendous leadership.  As many of you know, the legislation will offer the opportunity for new mothers to be educated about postpartum depression. It also provides social services to new mothers and their families who are struggling with postpartum depression, and it supports new research at the National Institutes of Health so we can keep developing new tools to help future moms. By boosting education, research and early treatment options for postpartum depression, mothers, husbands, and families, will be able to recognize the symptoms of this condition and help new mothers get the treatment they need and deserve. Many new mothers sacrifice anything and everything to provide feelings of security and safety to their newborn child.  It's our duty to provide the same level of security, safety and support to new mothers in need.For those of you keeping a close eye on this legislation, we're expecting it to make it through committee in April, and even though there are plenty of obstacles, I'd like to see it passed by the end of this year.PATIENT NAVIGATORThis year Congress has taken other steps to bring us farther down the path from a system based on treatment to a system based on prevention.I'm proud to have secured almost $3 billion in funding for the patient navigator program, to ensure that all Americans, regardless of income, race, ethnicity, language, or geography, will have access to prevention screening and treatment,  and that they will have an advocate at their side, helping them navigate through today's complicated health care system.Senator Robert MenendezPage 4My program addresses what I believe are the root causes of health disparities in minority and underserved communities:  lack of access to health care, particularly prevention and early detection. The bottom line is:  it's far easier to stay healthy if you see a doctor when you are healthy.  Unfortunately, patients in some communities are less likely to receive early screening and detection, so their disease is found at a much later stage and they have less chance of survival.  We need to give those people the chance they deserve for a long, healthy life.Our health care system is really a symbiotic relationship—if we neglect one part, all parts suffer.  If we neglect our children, if we neglect our doctors, if we neglect patient care—the ripple effects spread far and wide. We need to increase access to comprehensive, quality care for everyone in this state and in this country.  We need to increase our prevention efforts and strengthen our public health services.  We need to support our physicians. And we need to provide health care to every child in America.  These are my priorities moving forward, and I know with these values in mind, we can create a better health care system for our children and families.CONCLUSIONBefore I close, I just want to recognize and thank you for all that you do to improve and strengthen our health care system.  It is your patient care, your efforts on a daily basis that are going to provide the real change. I know you all work every day, many in underserved communities, to provide life-saving, life-changing treatment and that is the real future of our health care system.My friends, every vote I cast in the Senate, I think about whether it's going to let my daughter Alicia and my son Robert have the best future possible. Their pictures look down on my desk and watch over me every day. There's a picture of my daughter as a teenager, and a picture of her at her college graduation. This spring, when my son graduates, a photograph of him in cap and gown will sit right beside them.Why do we need to make sure health care is available to everyone, young and old? The answer is, so everyone gets to have pictures like that on their mantelpiece. That's what it's all about. That's my answer. Now, I'd be happy to hear your questions.                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fd6b3d3c-95b9-4b79-8139-ee560be65e3b,\"LAUTENBERG, MENENDEZ, ANDREWS CALL FOR FAA TO HALT AIRSPACE REDESIGN PLAN\n                    \n                            N.J. Sens. & Rep. Criticize FAA Over Handling of Changes to Flight Patterns in Light of Safety, Noise Concerns\n                    \n                      March 25, 2008\n                     WEST DEPTFORD, N.J. - U.S. Sen. Frank R. Lautenberg (D-NJ), U.S. Sen. Robert Menendez (D-NJ) and Rep. Robert E. Andrews (D-NJ-01) today stood across the Delaware River from Philadelphia International Airport with West Deptford Mayor Anna Docimo and air traffic controllers from Philadelphia Airport criticizing the Federal Aviation Administration's (FAA) handling of its airspace redesign plan. The N.J. federal elected officials released a letter they wrote to acting FAA Administrator Robert Sturgell demanding the Administration stop implementation of its airspace redesign plan \"\"until key safety, quality of life and environmental justice issues are addressed.\"\"  Rep. Andrews also released a letter last week asking the FAA to investigate its spokesman's critical comments of controllers who had concerns with the plan. \"\"The Bush FAA forced its flawed airspace design plans onto local neighborhoods despite numerous safety and environmental concerns.  Remarkably, the FAA failed to publish the new procedures that pilots and air traffic controllers rely on to do their jobs safely, and even proposed that employees with safety concerns seek employment elsewhere,\"\" said Sen. Lautenberg.  \"\"New Jersey families deserve more from the FAA.  Residents should not have to tolerate the additional aircraft noise and potential safety hazards that result from this flight plan.  We will continue our fight to protect the health, safety and quality of life of communities across New Jersey by working to ensure these concerns are heard.\"\" Sen. Menendez said, \"\"The FAA rushed to implement this plan, which instead of significantly addressing flight delays merely aggravates families inside their own homes, lowers the quality of life in these neighborhoods and diminishes property values amidst a nationwide housing crisis.  This is a case of government bureaucracy not listening to serious local concerns.  We are using every tool at our disposal to hold their feet to the fire until they understand what the residents of these communities are forced to put up with.\"\" \"\"It is beyond arrogant that the FAA has chosen to ignore the advice and criticism of seasoned air traffic controllers and pilots who have criticized the rushed implementation of this plan,\"\" said Rep. Rob Andrews.  \"\"I remain convinced this plan needs to be stopped on the grounds that it is a public nuisance to the residents I represent and a waste of taxpayer dollars in that it will not lead to any significant reduction in flight delays.\"\" A number of concerns arising from the new airspace redesign plan have called the safety and effectiveness of the plan into question.  When controllers at Philadelphia Airport raised concerns about the safety of new procedures associated with the project, an FAA spokesman told these controllers to \"\"look for work elsewhere.\"\"  And within minutes of the plan's implementation, it was discovered that one of the aircraft departure headings from Newark Liberty Airport actually led directly into an approach heading for New York LaGuardia Airport. In addition to these safety concerns, Sens. Lautenberg and Menendez and Rep. Andrews have taken issue with the heightened noise levels that some 300,000 in the New Jersey region will experience with the new plan in place.  Several communities throughout New Jersey have joined in opposing the redesign project due to the increase in noise levels. To gain attention to the many flawed policies pursued by the Bush FAA, including the mishandling of this airspace redesign project, Sens. Lautenberg and Menendez put a \"\"hold\"\" on acting Administrator Sturgell's nomination to head the FAA on a permanent basis.  Sturgell has been a chief Bush Administration policymaker at the FAA since 2002, and has overseen all operations at the FAA for the past six months.                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=91e1851e-5cbd-441c-8ce3-906ff76ec26a,\"SEN. MENENDEZ STATEMENT ON THE EVE OF THE FIFTH ANNIVERSARY OF THE INVASION OF IRAQ\n                    \n                      March 18, 2008\n                     WASHINGTON - On the eve of the fifth anniversary of the American-led invasion of Iraq, Sen. Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee who visited Iraq earlier this year, released the following statement:\"\"On this day, we think first and foremost of our men and women in uniform, and their families, who have had to bear an enormous burden for a gigantic mistake. 29,395 soldiers have come home wounded. 3,990 have paid the ultimate price. Today our country honors their sacrifices, and holds them in our thoughts and prayers. The troops are a credit to their country.\"\"However, the Bush Administration took us into the war on the wings of a lie. With each passing year, we've heard the same false promises of victory, the same squabbles among Iraqi politicians, and the same excuses from the Bush Administration as to why they can't admit their mistakes and bring our troops home. The only developments have been new suicide bombings, new American casualties, and new billion-dollar bills to pay.\"\"After five years of war, Iraq has become one of the most unstable nations in the world. Even after the so-called surge, violence is still a part of everyday life. Iraqi politicians are reluctant to work together so long as they can blame America for their problems and remain dependent on us for solutions. Our armed forces are stretched to their limit and their ability to respond to a crisis elsewhere around the world has been severely damaged.\"\"Meanwhile, Osama Bin Laden is still at large, and Al Qaeda is regrouping.\"\"The War has made us no safer here at home, but it has certainly made us poorer. According to some estimates, the total economic costs will soon reach $3 trillion. As thousands of Americans lose their jobs, as millions of Americans face foreclosure, as college tuition bills and health care costs pile up for families, continuing a war that is costing us $10 billion per month is an economic calamity.\"\"For five years now, President Bush and his Republican allies have parroted the line that, ‘We're fighting them over there so we don't have to fight them here.' But now, as our economy appears headed for crisis, we know that what they really meant was, ‘We're spending our money over there so we don't have it to spend here.'\"\"We cannot continue to throw American lives and American money at a situation that neither will resolve. There are no good solutions to the conflict in Iraq, only better and worse options for the United States. The best option is to bring our troops home as quickly and safely as possible. Sadly, if the President and his Republican allies in Congress continue to block Democratic efforts to transition out of Iraq, it seems that only the upcoming election gives our nation any hope of believing that this sixth year of war is the last one we will be forced to endure.\"\"                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c8b28820-130e-4a88-a2df-61f8274041bf,\"SEN. MENENDEZ HAILS PASSAGE OF BUDGET THAT WILL SUPPORT THE ECONOMY, INVEST IN FAMILIES AND EASE MIDDLE CLASS TAXES\n                    \n                            Menendez helped lead successful efforts to support law enforcement, health care, the environment, security and veterans programs\n                    \n                      March 14, 2008\n                     WASHINGTON - Early this morning, the U.S. Senate passed a Democratic-driven budget resolution that focuses on stimulating the economy, investing in families, creating a half million jobs and lowering taxes for middle income Americans. Senator Bob Menendez (D-NJ), a member of the Budget Committee, helped craft this blueprint for the nation's spending and also was successful in championing a number of provisions beneficial to New Jersey and the nation.\"\"This budget is part of a fight for the direction of our economy,\"\" said Senator Menendez. \"\"The budget is more than just a balance sheet of revenues and expenditures: it's a balance sheet of priorities and values. Our budget puts the family budget first with middle class tax relief, with tuition tax credits to help make college affordable, and with job training programs that will prepare the workforce for the 21st Century. These are tough times for New Jerseyans struggling to pay the bills, so we have brought forth a budget that focuses on helping stimulate the economy and creating jobs not in China, but right here at home.\"\"BELOW: OVERVIEW OF THE ENTIRE BUDGETPROGRAMS CHAMPIONED BY SENATOR MENENDEZ IN THE AREAS OF:o Law enforcemento New Jersey Environment and Economyo Energy and the Environmento Health careo Homeland securityo Support for new motherso Veterans supporto Immigration backlogsHighlights of overall Budget Resolution:• Responds to Economic Slowdown - up to $35 billion for additional stimulus. • Invests for Future Economic Growth - investments in energy, education, infrastructure and health care• Defense - matches the President's core defense budget and provides $3.2 billion more than the President's budget for veterans programs.• Provides Middle Class Tax Relief - additional year of tax relief for more than 20 million who would otherwise be subjected to the higher Alternative Minimum Tax. Also, tax relief to make college more affordable and a big enough surplus in the outyears to extend the marriage penalty relief, the child tax credit and the 10 percent bracket, as well as provide for estate tax relief.• Returns to Sound Fiscal Course - balances the budget in 2012 and 2013, holding the line on overall spending.Programs championed by Senator MenendezLAW ENFORCEMENT - Menendez amendment increases major programSenator Menendez successfully attached an amendment in the Budget Committee to increase the funding for the Byrne Memorial Justice Assistance Grants (\"\"Byrne-JAG\"\") by $180 million.  The Byrne-JAG Program allows states, local governments and American Indian nations to support a broad range of activities to prevent and control crime and improve the criminal justice system based on local needs and conditions.\"\"This increase in funding comes at a critical time when crime is on the rise in our nation, when our state's law enforcement is combating gangs and when we have terrorist groups reconstituting themselves,\"\" said Senator Menendez. \"\"This is a time in which we must do everything we can to strengthen our local law enforcement and better protect our communities.\"\"NEW JERSEY ENVIRONMENT AND ECONOMY - Defeat of plan for drilling near shoreNew Jersey Senators Menendez and Frank Lautenberg (D-NJ) helped lead the effort to defeat an amendment offered by Sen. Lamar Alexander (R-TN) that would have paved the way for drilling off the coast of Virginia, which includes areas less than 100 miles from the Jersey Shore - close enough for spills to affect New Jersey beaches.\"\"The environment and economy of the Jersey Shore would have been directly threatened by this plan, so we stood up against it,\"\" said Senator Menendez. \"\"It was a reckless plan to feed our nation's addiction to oil that posed not only short-term threats but also could have led us down a slippery slope that ends in drilling up and down the east coast. This problem arises because we are relying exclusively on oil. Instead, we need to become a more energy efficient nation and we need to develop alternative fuels.\"\"ENERGY AND THE ENVIRONMENT - Energy efficiency for citiesSenator Menendez helped secure an agreement to include $1.2 billion for energy efficiency block grants for cities - a program he successfully attached to last year's Energy bill. The block grants help communities implement energy efficiency and renewable energy strategies at a local level.\"\"Cities have taken the lead in combating climate change and Congress should help support and foster their movement toward energy efficiency,\"\" said Senator Menendez. \"\"This program has never been more important than now, with oil and natural gas prices sky high, with sea levels rising and weather becoming more extreme.\"\"HEALTH CARE - Patient Navigator fundingSenator Menendez helped include $19 million to support demonstration programs for patient navigator services, as authorized in the Menendez Patient Navigator, Outreach, and Chronic Disease Prevention Act. Patient navigators guide individuals through today's complex health care system and help them overcome barriers to care, increase prevention and early detection, and improve health outcomes of patients, especially in underserved communities.\"\"The health care system today can be a confusing maze that stops patients from getting the help they need and getting preventive care,\"\" said Senator Menendez. \"\"This is a program I have championed for years to help Americans get better access to the health care they need.\"\"HOMELAND SECURITY - More support for first respondersSenator Menendez worked closely with Budget Committee Chairman Kent Conrad (D-ND) to turn back the president's proposals to cut key first responder programs and port security programs (http://menendez.senate.gov/pdf/022908LettertoBudgetcommittee.pdf). As a result, the budget restores the $2 billion in cuts the President proposed for state homeland security funding and first responder grants, it doubles funding for port and transit security grants from the President's budget, and it restores more than $750 million in cuts to firefighter grants.\"\"With al Qaeda allowed to reconstitute itself in a safe zone along the Afghanistan-Pakistan border, going along with the president's cuts to anti-terrorism grants would have represented a pre-9/11 mentality,\"\" said Senator Menendez. \"\"The people of our state know how essential it is to be well prepared to defend against and respond to attacks, and this budget helps our responders do just that.\"\"SUPPORT FOR NEW MOTHERS - Postpartum depression funding:Senator Menendez, the author of the MOTHERS Act to combat post-partum depression, included language in support of funding within the Department of Health and Human Services to support research into the causes, diagnoses and treatments for postpartum depression and to help raise awareness and deliver services for individuals with postpartum depression. \"\"New mothers and prospective mothers too often are hit by the debilitating effects of postpartum depression without knowing about the condition or how to get help,\"\" said Senator Menendez. \"\"Our budget makes educating and supporting new mother's a priority. It will begin to help many new mothers feel safe and supported rather than afraid and alone.\"\"VETERANS SUPPORT - Grants to state veterans cemeteriesWith the aging of the WWII generation, we have moved into the beginning of the period of greatest need for funding of the Grants for State Veteran Cemeteries, but funding levels have not kept up with need.  Senator Menendez helped ensure adequate funding to help  address the costs of constructing new cemeteries as well as the needs of existing State Veteran Cemeteries.\"\"Veterans of WWII are the Greatest Generation, and we must honor them as such,\"\" said Senator Menendez. \"\"The care we put into Veterans cemeteries should appropriately reflect our gratitude for the tremendous service and sacrifice they have made for our nation.\"\" IMMIGRATION BACKLOGS - A more efficient application process:Senator Menendez helped include language in the bill to encourage the U.S. Citizenship and Immigration Service and the Federal Bureau of Investigation to make the current application process for naturalizing prospective citizens as efficient as possible, with the ultimate goal of eliminating the existing backlog of applications.\"\"The current situation discourages legal immigration,\"\" said Senator Menendez. \"\"Increasing efficiency will drive more prospective immigrants to enter by legal means and will help reunite families.\"\"                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6f8b01d9-c21e-4ea5-bf4c-5feff47e9098,\"NEW JERSEY SENATORS HELP DEFEAT PLAN FOR DRILLING LESS THAN 100 MILES FROM JERSEY SHORE\n                    \n                            Defeat of amendment is environmental, economic victory for NJ\n                    \n                      March 13, 2008\n                     WASHINGTON - Today, during the Senate debate on the nation's budget, U.S. Senators Bob Menendez and Frank Lautenberg (D-NJ) helped beat back a threat to the environment and economy of the Jersey Shore. The New Jersey Senators helped lead the effort to defeat an amendment offered by Sen. Lamar Alexander (R-TN) that would have paved the way for drilling off the coast of Virginia, which includes areas less than 100 miles from the Jersey Shore - close enough for spills to affect New Jersey beaches.\"\"The environment and economy of the Jersey Shore would have been directly threatened by this plan, so we stood up against it,\"\" said Senator Menendez. \"\"It was a reckless plan to feed our nation's addiction to oil that posed not only short-term threats but also could have led us down a slippery slope that ends in drilling up and down the east coast. This problem arises because we are relying exclusively on oil. Instead, we need to become a more energy efficient nation and we need to develop alternative fuels. This was an important victory for New Jersey in the Senate today.\"\"\"\"Drilling so close to the New Jersey shoreline is no solution to our nation's energy crisis.  Oil drilling would threaten the natural beauty and health of our shores and wildlife, as well as the millions of people who live and work nearby.  We need to put New Jersey ahead of the interests of Big Oil,\"\" said Senator Lautenberg.\"\"Senators Menendez and Lautenberg have again shown great leadership in protecting our shores from the devastating impacts of oil exploration along our coasts,\"\" said Athan Manuel, the Sierra Club's Director of Lands Protection. \"\"Whether one is talking about wildlife or vacationers, beaches and oil simply do not mix.\"\"Senators Menendez and Lautenberg helped lead the effort to persuade colleagues to oppose the Alexander amendment and organized a group of major environmental groups to work against it. The amendment was defeated by a 47-51 vote.                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6702b2dd-c341-4c83-ad3f-0e1a08d7f383,\"CREDIT CARD REFORM: STRONGEST LEGISLATION YET TO REIN IN OUT-OF-CONTROL COSTS ANNOUNCED BY SENATOR MENENDEZ\n                    \n                            “Credit Card Reform Act” will put the brakes on wild interest rate hikes, changes in terms of agreements and extreme penalties, among other practices\n                    \n                      March 12, 2008\n                     \n Normal\n  0\n  \n  \n  \n  \n  false\n  false\n  false\n  \n  EN-US\n  X-NONE\n  X-NONE\n  \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n   \n  \n  MicrosoftInternetExplorer4 \n\n /* Style Definitions */\n table.MsoNormalTable\n\t{mso-style-name:\"\"Table Normal\"\";\n\tmso-style-parent:\"\"\"\";\n\tfont-:10.0pt;\"\"Times New Roman\"\",\"\"serif\"\";}\n\n\nWASHINGTON - As an increasing\nnumber of Americans fall victim to out-of-control credit card costs and as the\ncredit card market begins to resemble the subprime mortgage market from when\nthe foreclosure crisis began, U.S. Senator Robert Menendez (D-NJ) today\nannounced a sweeping plan to put an end to deceptive practices and\nirresponsible marketing. The Credit Card Reform Act goes beyond any\nother current legislative proposal in curtailing skyrocketing interest rates,\ncurbing sudden changes in credit card agreements, and restricting issuance of\ncards to consumers who don't have the ability to make payments, along with\nother deceptive practices undertaken by some credit card companies.\nThe Credit Card\nReform Act has the backing of 11 major consumer groups and unions, which\nhave signed a letter of support to Senator Menendez (http://menendez.senate.gov/pdf/Credit%20Cards%20Menendez%20bill%20group%20letter-08%202.pdf).\nJoining him to announce the legislation today were representatives from the\nConsumer Federation of America, National Consumer Law Center, Consumer Action,\nDemos and NCLR. Also joining the announcement was East Rutherford, New Jersey\nresident Tarek Salib, whose personal story of a skyrocketing interest rate\nrepresents the hundreds of calls and letters that have flooded the Senator's\noffice from consumers struggling because of deceptive credit card practices.\nSenator Menendez said, \"\"Too many\nfamilies feel like their credit card contracts are booby-trapped. Credit card\ncompanies use a layer of fine print to conceal all kinds of trap doors: take\none false step, then your credit rating plummets and your interest rate shoots\nthrough the roof. This bill that rerpresents the strongest, most comprehensive\neffort yet to end some of the most egregious practices of credit card issuers,\nwhile making sure that Americans young and old don't so easily fall into\nfinancial traps. The big principle behind this bill is: companies should be\nclear about the rules up front, and shouldn't change them in the middle of the\ngame.\n\"\"We cannot allow\npredatory and deceptive practices in the credit card industry to continue as we\ndid in the subprime mortgage market. We cannot allow the credit card problem to\nbecome the next foreclosure crisis.\"\"\nTravis B. Plunkett,\nLegislative Director, Consumer Federation of America said, \"\"The Consumer\nFederation applauds Senator Menendez for introducing important legislation to\nstop credit card companies from using traps and tricks to unjustifiably\nincrease fees and interest rates. As the economy teeters on the brink of\nrecession and many debt-choked families find it harder to get by, it is high\ntime that credit card companies use some responsibility in the way that they\nextend credit and price their product.\"\"\nLauren K. Saunders,\nManaging Attorney, National Consumer Law Center said, \"\"American families\nstruggling in today's economy shouldn't be slapped with huge, retroactive\ninterest rate increases that bury them deeper in debt instead of helping them\nto manage their finances and keep their homes.  Credit card companies\noften increase rates on purchases already made for no apparent reason other\nthan to make up for their loses in the mortgage market or to punish a consumer\nfor minor slips such as paying late a couple of times.  That's just not\nfair.\"\"\nLinda Sherry,\nDirector of National Priorities, Consumer Action said, \"\"It's\noutrageous that companies claim they are using sound risk-based pricing\nprinciples when they hit consumers with exorbitant hair-trigger fees and\nenormous, unjustified rate hikes-at any time, for any reason. It makes no sense\nto increase the interest rates of customers who are having a hard time with\ntheir debt load while still allowing them to go over-limit. This system is\nbroken and Consumer Action supports Sen. Menendez' efforts to fix it.\"\"\nCaleb A. Gibson,\nAdvocacy and Legislative Coordinator, Demos said,\"\"Due to steady\nderegulation of the credit card industry, financial bargaining power has been\nheavily tilted toward the lender, making it harder for families to get out of\ndebt and back on the path to savings.  Since 1989, credit card debt has\nshot up by 315 percent-to over $900 billion dollars-while savings rates have dipped\nto their lowest point since 1934.  It is time for Congress to stand up\nagainst usurious practices and give families a real chance to get ahead.\"\"\nCredit\nCard Reform Act\nSenator\nRobert Menendez\nb>\nThe Credit Card Reform Act would\nend some most egregious credit card practices that continue to lure Americans\nyoung and old into financial traps, such as excessive fees, retroactive rate\nincreases, universal default, unilateral changes to credit card agreements, and\ndeceptive credit card offers.  \nb>\nØ  Creates\nOpt-In for Underage Consumers\nRequires credit card issuers to\nreceive \"\"opt in\"\" approval from young consumers under age 21 before they mail\ncredit card solicitations to these consumers. \nØ \nProhibits Unilateral Changes in Credit Card\nAgreements \nProhibits credit card issuers\nfrom changing the terms of the credit card agreement.\nb>\nØ  Prohibits\nUniversal Default\nProhibits credit card issuers\nfrom increasing a cardholder's interest rate based on activity unrelated to\ntheir credit card agreement - for example, a late payment on another bill or a\nchange in credit score. \nØ \nBan on Retroactive Rate Increases \nProhibits interest rate increases\non existing balances. \nØ \nLimits Penalty Interest Rate Increases \nLimits penalty rate increases to\na seven percentage point increase.\nØ \nLimits Late Payment Fees\nRequires issuers to state clearly\non a billing statement the postmarked date and the amount of the late\npayment.  Does not allow late fees or other adverse consequences for\npayments made by the postmarked date. \nØ \nMakes Fees Reasonably Related to Cost\nRequires that any penalty fee,\nsuch as a late payment fee or over-the-limit fee not exceed an amount that is\nreasonably related to the cost that the issuer incurs as a result of the\nconsumer's action. \nØ \nRequires Verification of Ability to Pay \nCredit card issuers may not offer\ncredit or raise credit limits to consumers unless they determine that the\nconsumer will be able to make the scheduled payments under the terms of the agreement\nbased on their current income, obligations, and employment status.  The\nFederal Reserve would provide the appropriate formula for determining ability\nto pay.\nØ \nBan on Deceptive Credit Card Offers \nStops bait and switch tactics by\nrequiring \"\"pre-approved\"\" offers to be a true, firm offer containing the\nmaterial terms such as interest rate, fees, and amount of credit; requires such\noffers to be honored by the issuer.\n \n \nBill is endorsed by: Center for\nResponsible Lending, National Consumer Law Center, Consumer Action, Consumer\nFederation of America, National Council of La Raza, Consumers Union, U.S.\nPublic Interest Research Group, Demos,  Service Employees International\nUnion, and National Association of Consumer Advocates.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=173a52e5-ca3c-41ee-b174-cd991144d602,\"MENENDEZ, LAUTENBERG ANNOUNCE MORE THAN $3.3 MILLION FOR NURSING TRAINING\n                    \n                            Grants to Offer Educational and Job Training for Nursing Students in Union & Monmouth Counties\n                    \n                      March 12, 2008\n                     WASHINGTON, D.C. - Sen. Robert Menendez (D-NJ) and Sen. Frank R. Lautenberg (D-NJ) today announced that the U.S. Department of Labor will award two New Jersey colleges, Union County College and Brookdale Community College, more than $3.3 million in federal funds to provide educational and job training for students interested in careers in nursing.            New Jersey and other states are facing critical nursing shortages.  Current statistics show the demand for registered nurses and medical lab technicians in New Jersey will far exceed the supply by 2014.           \"\"It is a good investment for our region to train more and more nursing students and medical technicians to become qualified to provide the best medical care, especially when our communities are stretched thin for these vital professionals,\"\" said Menendez.  \"\"I congratulate Union County and Brookdale Community Colleges for being awarded these grants as they continue to develop our nurses who are at the forefront of caring for those who are sick or injured.\"\"\"\"Nurses are on the front lines of our health care system and are often the first to treat sick and injured patients.  We need to do all we can to train and educate nurses to deal with emerging threats to public health and these grants are a big step in the right direction,\"\" Lautenberg said.  \"\"These funds will help Union County and Brookdale Community Colleges provide training for students to become nurses—and to better keep families healthy in New Jersey and nationwide.\"\"            Union County College will be awarded $1,919,713, primarily for its \"\"Building a Pathway to Healthcare Careers\"\" project to create career paths for nursing students and address workforce shortages.  The program also includes support services such as tutoring, mentoring and career counseling to improve student retention.  The funding will also allow an expansion of the Emergency Medical Technician (EMT) program by enrolling at least 150 high school seniors.            Brookdale Community College plans on using their grant of $1,384,379 to increase nursing capacity by creating an online nursing program through its \"\"Caring for Our Community\"\" project.  The funding will also aid in the creation of the \"\"One Plus One Medical Technology\"\" program to ensure the enrollment of 100 new nursing students and give them the necessary lab space, equipment and professional oversight to meet the increased demand for medical lab technicians.                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=25e62b0f-85a5-4b8f-959e-9e302889421d,\"SENATORS MENENDEZ AND DODD URGE OAS TO CONTINUE PRESSING DIPLOMACY IN COLOMBIA SITUATION\n                    \n                            Members of the Foreign Relations Committee also call for OAS investigation into circumstances surrounding raid that led to regional tensions\n                    \n                      March 6, 2008\n                     WASHINGTON - Two members of the Senate Foreign Relations Committee who are prominent on Latin American issues have called on the Organization of American States to continue to foster the diplomacy that is helping diffuse the tense situation along Colombia's borders with Ecuador and Venezuela.In their letter to the Secretary General of the OAS, Senator Robert Menendez (D-NJ), Chairman of the Subcommittee on International Development and Foreign Assistance, Economic Affairs, and International Environmental Protection, and Senator Christopher Dodd (D-CT), Chairman of the Subcommittee on the Western Hemisphere, Peace Corps, and Narcotics Affairs, indicated that they are encouraged by the mutually-acceptable OAS resolution passed yesterday. The Senators also urged the OAS to initiate an investigation to verify the facts surrounding the raid on the FARC that led Ecuador and Venezuela to move troops to their borders with Colombia this past weekend.PDF of the letter to the OAS: http://menendez.senate.gov/pdf/030608LettertotheOAS.pdfText of the letter:March 5, 2008The Honorable José Miguel InsulzaSecretary General Organization of American States17th Street and Constitution Avenue, N.W.Washington, D.C. 20006Dear Secretary General Insulza:We are writing to convey our utmost concern about the events this past weekend along the Ecuador-Colombia border.  Venezuela's troop buildup remains an irresponsible and provocative act aimed at inciting further hostility.  Such actions are not productive and stand only to diminish cooperation and stability in the region. We call upon the Organization of American States (OAS) to continue to emphasize to all countries in the region that escalating tensions should be met with redoubled diplomatic efforts. Patient diplomacy, not military provocation, is the best path toward a peaceful resolution agreeable to all parties.We are encouraged by today's resolution at the OAS and hope that it is viewed as a beginning to a longer process of engagement, rather than simply as an end to the recent tensions.  While this agreement is a positive development, it does not solve the underlying issues of border security, terrorism, and militancy that require long-term diplomatic engagement to make meaningful progress.In support of today's resolution and an ongoing dialogue, we urge the OAS to dispatch a team to objectively investigate information retrieved at the site of the raid. The OAS also has a vital role to play in keeping the lines of communication open between all countries in the region, especially among Ecuador, Venezuela, and Colombia.These events underscore the necessity of multilateral forums, such as those provided by the OAS.  Such forums have the power to turn events away from saber-rattling and threats of war, and instead toward engagement and constructive dialogue. In the Western Hemisphere, the OAS is the best environment for such dialogue to take place. In these troubled days, we urge the OAS to continue to serve as the Western Hemisphere's leading body for conflict mediation.We look forward to working with you in the days ahead on this critically important matter.Sincerely,Robert MenendezUnited States Senator                                                                  Christopher DoddUnited States Senator                                                                                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=98945036-a4e6-4109-8aac-7ff43adbe66c,\"SENATORS MENENDEZ AND DODD ON COLOMBIAN BORDER SITUATION: DIPLOMATIC SURGE NEEDED TO EASE TENSIONS\n                    \n                            Senators say they plan to engage the Organization of American States on matter\n                    \n                      March 4, 2008\n                     WASHINGTON - As tensions in South America persist following the movement of Ecuadorian and Venezuelan troops to the Colombian border, two members of the Senator Foreign Relations Committee who are prominent on Latin American issues today called for increased diplomacy in the region. Senator Robert Menendez (D-NJ), Chairman of the Subcommittee on International Development and Foreign Assistance, Economic Affairs, and International Environmental Protection, and Senator Christopher Dodd (D-CT), Chairman of the Subcommittee on the Western Hemisphere Peace Corps, and Narcotics Affairs, said that they plan on engaging the Organization of the American States on this issue this week.Senator Menendez said: \"\"Instead of an abrupt break in diplomatic relations within the region, this situation calls for increased diplomacy, increased communication and increased mediation to ease the tensions,\"\" said Senator Menendez. \"\"This is certainly a tense and dangerous situation, and the chance that the countries involved might overreact to developments is heightened in the absence of diplomacy. Hugo Chavez seems eager to make himself more relevant than he should be by provoking confrontation, and his best chance to succeed is if the lines of communication are cut. We hope that the OAS will be active in fostering a dialogue, and we plan on engaging it on this matter.\"\"Senator Dodd said: \"\"I am deeply concerned by the recent inflammatory actions of Venezuela along the Colombian border. The recent troop buildup in the region is an irresponsible and clearly provocative act aimed at inciting further hostility. \"\"Increased dialogue, not troop escalation, is the only path to a solution agreeable to all parties.  The Organization of American States (OAS) has long served as a venue for conflict resolution and dialogue, and we hope that today's meeting will establish a path to a peaceful solution to the current crisis.\"\"Dodd and Menendez intend to request that the OAS dispatch a team to investigate the authenticity of the information retrieved at the site of the incident in question, and further request that the OAS serve as an objective body to verify and distribute a factual account of what occurred.  They further call upon the parties involved, Colombia, Ecuador and Venezuela, to do their utmost to resolve their differences diplomatically.                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=726d2d75-e535-45b3-88da-5c86cdfa8def,\"SENATORS MENENDEZ AND LAUTENBERG ANNOUNCE FEDERAL FUNDS TO HELP PUT NJ AT THE FOREFRONT OF GREEN ENERGY DEVELOPMENT\n                    \n                            GRANT WILL HELP FACILITY IN NJ DEVELOP COMMERCIALLY VIABLE RENEWABLE FUEL\n                    \n                      February 29, 2008\n                     Washington, D.C. — U.S. Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) have announced $33 million in federal funding to help New Jersey become a leader in developing green energy technology. The grant from the Department of Energy has been awarded to DSM Innovations, Inc., (DSM), a Netherlands-based company that employs more than 500 people in New Jersey, to commercialize advanced renewable fuels at its Belvidere facility. The Senators wrote a letter to the Department of Energy in support of DSM's project.\"\"Prices at the pump, prices of everyday goods and the effects of climate change are evidence that our nation faces an energy crisis that we are not going to be able to dig or drill our way out of,\"\" said Sen. Menendez. \"\"The innovation these funds will support will help our nation break its addiction to oil, replacing it with advanced biofuels that are renewable, sustainable, and which will not drive up food prices.\"\"\"\"With energy costs on the rise and the threat of global warming increasing every day, we need to be producing more green energy.  Supporting innovative companies and technologies through grants like these is among the smartest steps we can take to save consumers money and save the environment,\"\" Senator Frank R. Lautenberg said.\"\"As a global leader in biotechnology DSM is committed to the development of sustainable technologies, including biofuels,\"\" said Feike Sijbesma CEO of DSM. \"\"We are excited and look forward to partnering with the US Department of Energy to further the development of advanced cellulosic biofuels (so-called \"\"second generation biofuels\"\"), and to bring this technology to Belvidere, New Jersey, the United States and the world.\"\"The grant will fund a four year program to develop enzyme technologies that help turn biomass like grass into fuel for cars and trucks. In order to make this process commercially viable, DSM is leading a technical consortium which includes Abengoa Bioenergy New Technologies, Los Alamos Laboratory and Sandia National Laboratory.The text of the letter to the Department of Energy can be accessed below: http://menendez.senate.gov/pdf/011808LettertoDOEongrantforDSM.pdf                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a3529556-361f-4ed3-a2ec-43798df2bb2e,\"SENATOR MENENDEZ INTRODUCES BILL TO SUPPORT THE MUSEUM OF THE HISTORY OF POLISH JEWS IN WARSAW\n                    \n                      February 29, 2008\n                     Washington, D.C. - U.S. Senators Robert Menendez (D-NJ) and Benjamin L. Cardin (D-MD) yesterday introduced a bill that would provide assistance for the Museum of the History of Polish Jews in Warsaw, Poland.  The Museum, which will stand on the grounds of the former Jewish Quarter in Warsaw, has great historic and symbolic significance and is expected to attract hundreds of thousands of people from all over the world.  The bill, \"\"Support for the Museum of the History of Polish Jews Act of 2008,\"\" would authorize a contribution of up to $5,000,000 to the museum.\"\"The Museum will protect a spirit deeply connected to our own, a heritage we cannot afford to let slip away. I think it deserves our strong support, and I am proud to have introduced this bill,\"\" said Sen. Menendez.The Museum will be an educational and cultural center commemorating a thousand years of Polish Jewish history and is being widely supported and funded in both the public and private domains - by the City of Warsaw, the Polish Government, the German Government, as well as by corporate and foundation support in Poland, the United States, Israel and throughout Europe. In 2006, the museum moved into the last phase of project design and in June 2007, an official groundbreaking ceremony took place presided over by Poland's President Lech Kaczynski.  The museum is expected to open to the public in early 2010.According to the U.S. Census of 2000, 9,000,000 Americans are of Polish ancestry.  Because it is vital to the interests of our nation to preserve and protect artifacts associated with the heritage of United States citizens and to encourage scholarship and learning about that heritage, the Museum of the History of Polish Jews deserves our support.  At the beginning of World War II, Poland had the largest Jewish population in Europe, a population that was largely eradicated during the war.   The Jewish presence in Poland spanned a period of 1000 years - from their arrival in medieval Poland, through the golden ages of the 16th and 17th centuries, the pre-war years, the Holocaust, after World War II, and up to the present.  The Museum will focus on all these periods, on the enriching affect of the Jewish culture in Poland, and on building bridges between people of diverse cultures.                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=872854e5-38f5-44c3-9c8e-14620950e420,\"AS SENATE PREPARES TO TAKE VOTE ON IRAQ WAR, SEN. MENENDEZ SPEAKS ON SENATE FLOOR\n                    \n                            Menendez, who visited Iraq last month, says transitioning out of Iraq gives best chance for long-term peace\n                    \n                      February 26, 2008\n                     WASHINGTON - Today, the Senate is debating a resolution offered by Sen. Feingold that would begin transitioning American troops out of Iraq. Senator Bob Menendez (D-NJ), a member of the Foreign Relations Committee who voted against the war from the beginning and who visited Iraq last month, spoke on the Senate floor in favor of the resolution.On the cost of the war:Senator Menendez said, \"\"With the amount of money the Secretary of Defense thinks we might spend in Iraq next year, we could have more than doubled our package to stimulate the economy this year. We can't think about economic stimulus without thinking about how we can stimulate peace. We can't heal our economy without closing the financial hemorrhage that is the war in Iraq.\"\"On the need to transition troops out of Iraq:Senator Menendez said, \"\"I've seen first-hand how bravely our troops have served. But if Iraqi politicians think they can sit back and keep looking at the menu of options, and squabble over the choices, and no matter what, Americans will keep delivering everything they order, and keep picking up the tab, then they'll never feel the pressing urgency to build a functional country for themselves. It's time for that kind of service to end.\"\"            Text of Senator Menendez's remarks on the Senate floor, as prepared for delivery:M. President,The Senate is about to have the opportunity once again to vote to transition our troops out of Iraq, and refocus our efforts on defeating Al Qaeda. It's long past time for us to make that decision. The administration has never told us the truth about the war in Iraq. The budget they submitted to Congress was just the latest proof of that.The budget is terrible in a lot of ways: it leaves millions of children without full access to health care, fails to wean us off our addiction to foreign oil, fails to adequately address climate change, repair our education systems or shrink the ballooning deficit—basically, it fails to make a serious effort to tackle the most pressing problems our country faces.But beyond that, the budget is dishonest about the costs of one of the most expensive wars in this country's history. It lists the cost of the war in Iraq for next year at $70 billion. All the other calculations in the budget, including the debt and the deficit, in some way assume that $70 billion is all the war is going to cost in the next fiscal year.We have to wonder if whoever wrote the section of the budget on Iraq found that job after leaving their old post at the accounting department of Enron.Recently, the Secretary of Defense took a baby-step toward honesty and estimated the true cost for next year at another $170 billion of America's money. He said that was just a rough estimate. Because when you've already spent more than half a trillion dollars, I guess you just round to the nearest 100 billion.The carelessness in that accounting is offensive to the American people who are funding this war. This administration is so dead-set on staying in Iraq for 100 years, they just don't seem to care how much taxpayer money they spend. They don't seem to care how much money they have to borrow from the Chinese to pay the bills.They don't seem to care how much wind gets knocked out of our economy because that money could have gone to creating jobs, stimulating the production of green energy, or helping families make ends meet.With the amount of money the Secretary of Defense thinks we might spend in Iraq next year, we could have more than doubled our package to stimulate the economy this year.When Americans get rebate checks in a few weeks, they should imagine them more than twice as big—that's what this year in Iraq would cost. If we want to imagine the total financial cost of the war in Iraq over almost five years—if we want to imagine $608 billion—we could divide that up and send every American a check for $2,000. If we want to know what the war will cost over the next decade—about $2.8 trillion—every American should picture a check for more than $9,000. That's what the war costs. More than $9,000 for every man, woman and child living in the United States of America.If there are four people in your family, that's $36,000 that potentially could have been back in your pockets. When so many hard-working families are struggling to keep their homes, when so many are struggling to keep up with the rising costs of health care and college tuition and heating oil, when so many have to care for aging parents, put food on the table and struggle to make ends meet each month, $36,000 would go a long way.So here's how it all adds up: we can't think about economic stimulus without thinking about how we can stimulate peace. We can't heal our economy without closing the financial hemorrhage that is the war in Iraq.For five years the administration has parroted the line that, quote, we're fighting them over there so we don't have to fight them here. But now, more than ever, we realize what one of the biggest impacts of this war has been: We're spending our money over there, so we don't have it to spend here.M. President,Not long ago I had the chance to make a trip to Iraq myself.First and foremost, the trip proved something I've believed for a long time: we all should be intensely proud of the men and women in uniform who are serving over there. They don't ask whether this is the right mission, they just serve with honor and integrity, risking their lives every day. I came away extremely impressed with their commitment, and felt honored to be able to share some time with them.Beyond that, one other thing became clear: the solutions to Iraq's problems lie in the hands of the Iraqis, and as long as they continue to be so dependent on the United States, they will never feel the need to solve the problems on their own.When the President sent 30,000 additional troops into harm's way in Iraq last year, the purpose was to allow Iraqis to have the opportunity and the space to strengthen the federal government and achieve national reconciliation.Not too long ago, Iraq's Parliament finally passed three laws after months of bitter squabbling. We should applaud them for that.The Bush Administration is touting this event as an end-all, be-all political breakthrough. But as usual, they're taking a small bit of good news and trying to whitewash the bigger picture.The agreement the Iraqi Parliament reached is basically temporary. The provincial powers arrangement is set to expire in one year—to hold the politicians over so they can have the same arguments next year.Iraqi politicians are still a long way from permanent agreements over fundamental issues. And the reason is, as long as we continue to insist on an open-ended presence, they won't make the hard choices and compromises necessary to achieve lasting stability.M. President, at combat post X-Ray, outside of Baghdad, I met with troops from New Jersey serving in the Air Force. An IED had just killed one of their colleagues and wounded several others.The hardest thing I've had to do in 33 years of public life is to call a family and tell them a loved-one has been killed. That's hard enough for a parent or a wife or husband to hear when they believe their family member was fighting for freedom. It's incomprehensible when that death was about Iraqi politicians fighting for resources and power.There is no military solution in Iraq. Everyone, including General Petraeus, has admitted that. The only way to pressure Iraqi politicians into making the choices necessary to move their country forward is to stop signing blank checks and set a timetable to transition our troops back home.M. President, I felt truly blessed to step onto American soil after flying back from Iraq. Too many American men and women over there do not have the option right now of taking that return flight. Too many Americans never will. I've seen first-hand how bravely our troops have served. But let's be clear about that service: American troops cannot be waiters for Iraq. They cannot be asked to serve up a functional society on a platter. They cannot be expected to be the only ones serving up a functional electric grid, sewer systems, or revenue-sharing agreements about oil.If Iraqi politicians think they can sit back and keep looking at the menu of options, and squabble over the choices, and no matter what, Americans will keep delivering everything they order, and keep picking up the tab, then they'll never feel the pressing urgency to build a functional country for themselves. It's time for that kind of service to end.It's time for every soldier to have the most wonderful privilege a Senator has, the privilege of booking a return ticket home.                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b6baafd1-7c13-42ea-906d-b5013978e562,\"Floor Statement on the Senator's Visit to Iraq and the Current Cost of the War : As Prepared for Delivery\n                    \n                      February 26, 2008\n                     M. President,The Senate is about to have the opportunity once again to vote to transition our troops out of Iraq, and refocus our efforts on defeating Al Qaeda. It's long past time for us to make that decision. The administration has never told us the truth about the war in Iraq. The budget they submitted to Congress was just the latest proof of that.The budget is terrible in a lot of ways: it leaves millions of children without full access to health care, fails to wean us off our addiction to foreign oil,fails to adequately address climate change, repair our education systems or shrink the ballooning deficit—basically, it fails to make a serious effort to tackle the most pressing problems our country faces.But beyond that, the budget is dishonest about the costs of one of the most expensive wars in this country's history. It lists the cost of the war in Iraq for next year at $70 billion. All the other calculations in the budget, including the debt and the deficit, in some way assume that $70 billion is all the war is going to cost in the next fiscal year.We have to wonder if whoever wrote the section of the budget on Iraq found that job after leaving their old post at the accounting department of Enron.Recently, the Secretary of Defense took a baby-step toward honesty and estimated the true cost for next year at another $170 billion of America's money. He said that was just a rough estimate. Because when you've already spent more than half a trillion dollars, I guess you just round to the nearest 100 billion.The carelessness in that accounting is offensive to the American people who are funding this war. This administration is so dead-set on staying in Iraq for 100 years, they just don't seem to care how much taxpayer money they spend. They don't seem to care how much money they have to borrow from the Chinese and the Japanese to pay the bills. They don't seem to care how much wind gets knocked out of our economy because that money could have gone to creating jobs, stimulating the production of green energy, or helping families make ends meet just been sent back to the taxpayers.With the amount of money the Secretary of Defense thinks we might spend in Iraq next year, we could have more than doubled our package to stimulate the economy this year.When Americans get rebate checks in a few weeks, they should imagine them more than twice as big—that's what this year in Iraq would cost. If we want to imagine the total financial cost of the war in Iraq over almost five years—if we want to imagine $608 billion—we could divide that up and send every American a check for $2,000.  If we want to know what the war will cost over the next decade—about $2.8 trillion—every American should picture a check for more than $9,000. That's what the war costs. More than $9,000 for every man, woman and child living in the United States of America.If there are four people in your family, that's $36,000 that potentially could have been back in your pockets. When so many hard-working families are struggling to keep their homes, when so many are struggling to keep up with the rising costs of health care and college tuition and heating oil, when so many have to care for aging parents, put food on the table and struggle to make ends meet each month, $36,000 would go a long way.So here's how it all adds up: we can't think about economic stimulus without thinking about how we can stimulate peace. We can't heal our economy without closing the financial hemorrhage that is the war in Iraq.For five years the administration has parroted the line that, quote, we're fighting them over there so we don't have to fight them here. But now, more than ever, we realize what one of the biggest impacts of this war has been: We're spending our money over there, so we don't have it to spend here.M. President,Not long ago I had the chance to make a trip to Iraq myself.First and foremost, the trip proved something I've believed for a long time: we all should be intensely proud of the men and women in uniform who are serving over there. They don't ask whether this is the right mission, they just serve with honor and integrity, risking their lives every day. I came away extremely impressed with their commitment, and felt honored to be able to share some time with them.Beyond that, one other thing became clear: the solutions to Iraq's problems lie in the hands of the Iraqis, and as long as they continue to be so dependent on the United States, they will never feel the need to solve the problems on their own.When the President sent 30,000 additional troops into harm's way in Iraq last year, the purpose was to allow Iraqis to have the opportunity and the space to strengthen the federal government and achieve national reconciliation.Not too long ago, Iraq's Parliament finally passed three laws after months of bitter squabbling. We should applaud them for that.The Bush Administration is touting this event as an end-all, be-all political breakthrough. But as usual, they're taking a small bit of good news and trying to whitewash the bigger picture.The agreement the Iraqi Parliament reached is basically temporary. The provincial powers arrangement is set to expire in one year—to hold the politicians over so they can have the same arguments next year.But that hasn't happened. They're Iraqi politicians are still squabbling a long way from permanent agreements over fundamental issues, from how much political power to give the provinces to how to divide oil revenues..And the reason is, as long as we continue to insist on an open-ended presence, Iraqi politicians they won't make the hard choices and compromises necessary to achieve lasting stability. M. President, Aat combat post X-Ray, outside of Baghdad, I met with troops from New Jersey serving in the Air Force. An IED had just killed one of their colleagues and wounded several others.The hardest thing I've had to do in 33 years of public life is to call a family and tell them a loved-one has been killed. That's hard enough for a parent or a wife or husband to hear when they believe their family member was fighting for freedom. It's incomprehensible when that death was about Iraqi politicians fighting for resources and power.Political and personal reconciliation do not happen at the point of a gun.  I saw with my own eyes and heard with my own ears in meetings with the leaders of the Iraqi government the necessary sense of urgency among the Iraqis is simply not there. So, not only do we continue to put Americans at risk waiting for a political process that isn't working, but beyond that, it's clear that the role the U.S. is playing is hurting rather than helping. That's why a staged withdrawal of our troops is not only in our interests but also in theirs. It will stop Iraqis from punting hard decisions farther down the field, and it will encourage the international community to play a more engaged, constructive role.There is no military solution in Iraq. Everyone, including General Petraeus, has admitted that. The only way to pressure Iraqi politicians into making the choices necessary to move their country forward is to stop signing blank checks and set a timetable to transition our troops back home.M. President, I felt truly blessed to step onto American soil after flying back from Iraq. Too many American men and women over there do not have the option right now of taking that return flight. Too many Americans never will. I've seen first-hand how bravely our troops have served. But let's be clear about that service: American troops cannot be waiters for Iraq. They cannot be asked to serve up a functional society on a platter. They cannot be expected to be the only ones serving up a functional electric grid, sewer systems, provincial election laws, or revenue-sharing agreements about oil.If Iraqi politicians think they can sit back and keep looking at the menu of options, and squabble over the choices, and no matter what, Americans will keep delivering everything they order, and keep picking up the tab, then they'll never feel the pressing urgency to build a functional country for themselves. It's time for that kind of service to end.It's time for every soldier to have the most wonderful privilege a Senator has, the privilege of booking a return ticket home.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b4f032cc-a6ad-420a-bf9f-a3b2703aa054,\"SEN. MENENDEZ STATEMENT ON CUBAN NATIONAL ASSEMBLY'S SELECTION OF RAUL CASTRO AS PRESIDENT\n                    \n                      February 24, 2008\n                     WASHINGTON - Today, the Cuban National Assembly picked Raul Castro to be president of that country's Council of the State and filled other leadership positions on the Council with members sympathetic to his authoritarian rule. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee who is of Cuban descent and has been a leading critic of the regime in Cuba, released the following statement:\"\"The predictable decision to continue with the oppression that Fidel Castro began a half-century ago shows that the first name of the dictator may have changed, but the iron-fisted rule has not. It certainly seems that the regime in Havana will not take this as an opportunity to bring true freedom and democracy to the Cuban people. The question now is whether or not the Cuban people will take this moment to push for the basic human right of liberty. We in the United States must further nurture the human rights activists, political dissidents and independent-minded journalists who have the capability to stoke the movement toward freedom. Just as we did during the fall of the Iron Curtain with dissidents from Lech Walesa to Vaclav Havel to Aleksandr Solzhenitsyn, we can do it again now with opposition leaders like Martha Beatriz Roque and Oscar Elías Biscet in Cuba.\"\"            Senator Menendez was born in the United States to parents who immigrated from Cuba.                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fcf09a86-1f38-4171-844a-7fc95b7c8e86,\"PAKISTAN ASSISTANCE BUDGET REQUEST SPURS QUESTIONS BY CHAIR OF FOREIGN ASSISTANCE SUBCOMMITTEE\n                    \n                            Sen. Menendez asks Rice for tangible results of previous assistance to Pakistan, update on progress against extremists in tribal areas\n                    \n                      February 21, 2008\n                     WASHINGTON - In light of the Bush Administration's request for $826 million in foreign assistance for Pakistan for fiscal year 2009, Senator Robert Menendez (D-NJ), Chairman of the Senate Foreign Relations Subcommittee with jurisdiction over foreign assistance programs, is asking Secretary of State Condoleezza Rice for information about assistance sent to Pakistan since 9/11 and the progress of the fight against extremists in the tribal areas of Pakistan. Senator Menendez held a hearing on assistance to Pakistan in December, and today he is telling Secretary Rice that the information he seeks is important as he measures his support for the budget request.PDF of letter to Rice: http://menendez.senate.gov/pdf/Sec.%20Rice%20-%20Pakistan%202.21.08.pdfText of letter to Rice:February 21, 2008The Honorable Condoleezza RiceSecretary of StateUnited States Department of StateWashington, DC  20520Dear Madam Secretary:Your administration's Fiscal Year 2009 budget request for Pakistan comes at a pivotal moment in that nation's history.  With the rapid succession of events there over the past few months -- including this week's elections -- and with this latest budget request before us now, this is an opportune time for our country to make a determination about how best to support a secure and free Pakistan moving forward.  Without a doubt, Pakistan is a key strategic ally, but additional taxpayer funding without a strategy for effective results from the Government of Pakistan is not in our nation's financial or security interests. And as chairman of the subcommittee which oversees U.S. foreign assistance, there are questions that must be answered as I weigh my support for the Administration's $826 million Fiscal Year 2009 request for U.S. taxpayer money in Pakistan.I ask that you provide tangible results of the billions of assistance dollars sent from this country to Pakistan over more than six years. I also ask that you provide an update on the battle against extremists inside Pakistan - a battle that impacts our security here at home but seems not to have been generally successful.Again, it is in our nation's security interests to help foster a stable Pakistan, devoid of terrorist elements that seek to do harm to the West.  However, when militant violence broke out in Pakistan last year, it became clear that $10 billion in American taxpayer money since 9/11 had not prevented al Qaeda from operating in a safe zone over there, nor had it guaranteed a free and fair democratic process.  American taxpayers expect better results from such expenditures of their money; otherwise it may be wiser to approach the fight against extremists in a different manner.In addition, a recent Washington Post article on military assistance to Pakistan reveals more problems with the process through which American taxpayer money is being spent.  The reported, \"\"vague accounting, disputed expenses and suspicions about overbilling\"\" has led several senior administration officials to acknowledge these problems.  I find this laborious process without receipts or true accountability to be disturbing and am concerned we are not holding it up to sufficient accounting standards.  I voiced these concerns in a Foreign Relations Committee hearing that I chaired in November, and as I mentioned in a letter to you late last year, American taxpayers expect and deserve to have an accounting of the billions of American dollars sent to President Pervez Musharraf's government - where it has gone and what progress it has spurred.  This issue has come into sharper focus with the substantial loss of power suffered by President Musharraf's political party on Election Day.Now is the time to assess the direction in which the state of Pakistan is headed and how our assistance efforts are contributing.  More specifically, I ask that you provide the latest information on Pakistan's efforts to fight against extremism in the Federally Administered Tribal Areas (FATA) region, as well as our nation's role in those areas.  Recent reports in the press indicate that the Pakistani Government may have once again entered into some kind of cease-fire agreement with the militants in the border region.  Is the cease-fire in fact a reality?  What is the current state of the battle against extremists?  I urge the Administration to work with the Government of Pakistan to develop a strategy for full-scale Pakistani Government engagement in the FATA region. Additionally, I am concerned that the progress made in late January in the mountains of South Waziristan may have since been tempered by what appears to be a reversal by the Government of Pakistan.  To date, such actions have not enabled Pakistan to make real progress, and I see no reason to believe that continuing with the same strategy will yield results that are any less disappointing.As a member of the Budget and Foreign Relations Committees who has been keenly interested in our policies toward Pakistan, I am particularly interested in the assistance budget for that nation.  To that point, your Administration's ability to demonstrate tangible results from our assistance programs and explain recent efforts in the FATA region and the ultimate integrity of the recent elections will heavily influence my potential support for Pakistan assistance this year.  I look forward to your response.Sincerely,ROBERT MENENDEZUnited States Senator                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4066b9e8-cce9-4bfc-8bec-427cb83094b7,\"SEN. MENENDEZ REACTS TO RESIGNATION OF FIDEL CASTRO\n                    \n                      February 19, 2008\n                     WASHINGTON - Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee who is of Cuban descent and has been a leading critic of the regime in Cuba, today released the following statement upon the news that Fidel Castro is resigning as Cuban president:\"\"This is not the cause for celebration that some would believe. This does not represent the replacement of totalitarianism with democracy - instead, it is the replacement of one dictator with another. In essence, today's action makes official what has been in place for a while now, with Raul continuing to lead the same iron-fisted regime that his brother brought to power almost 50 years ago. Just because the dictator is now named Raul instead of Fidel, it doesn't mean that the regime's repressive rule will automatically change.\"\"What this move does perhaps present is a moment of hope. Raul does not have the same relationship with the Cuban people as Fidel, and now is the time to challenge him. Cubans who have been clamoring for change may see this as the opportunity to peacefully protest and make their aspirations known. The recent activism of Cuban youth wearing white \"\"Cambio\"\" bracelets is a reflection of that desire for change. Here in the United States, it is a time to further nurture the human rights activists, political dissidents and independent-minded journalists inside of Cuba who have the capability to stoke the movement toward freedom.\"\"Senator Menendez was born in the United States to parents who immigrated from Cuba.                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e2d89304-7b0c-4464-a078-38cf49fd0f6d,\"EL SENADOR ROBERT MENENDEZ REACCIONA A LA RENUNCIA DE FIDEL CASTRO\n                    \n                      February 19, 2008\n                     Washington - El senador Robert Menendez (D-NJ),  miembro del Comité de Relaciones Exteriores, hijo de padres cubanos y vehemente detractor del régimen en Cuba, emitió hoy las siguientes declaraciones en torno a  la renuncia de Fidel Castro:\"\"Este no es el motivo de celebración que algunos creen.  Esto no representa el reemplazo del totalitarismo con la democracia - es el reemplazo de un dictador con otro.  En esencia, la acción de hoy hace oficial lo que ha estado ocurriendo desde hace algún tiempo con Raúl perpetuando el mismo régimen de mano dura que su hermano trajo al poder hace casi 50 anos.  Sólo porque ahora el dictador se llame Raúl en vez de Fidel, no significa que la represión del régimen cambiara automáticamente.\"\"Lo que ésta medida quizás represente es un momento de esperanza.  Raúl no tiene la misma relación con el pueblo cubano que ha tenido Fidel, y este es el momento de presentarle un reto.  Los cubanos que han estado clamando por un cambio podrán ver esto como una oportunidad para protestar pacíficamente y hacer conocer sus aspiraciones.  El reciente activismo de la juventud cubana colocándose pulseras blancas que significan \"\"cambio\"\" es el reflejo de su deseo de una transición.  Aquí en Estados Unidos, es el momento de apoyar a los activistas defensores de los derechos humanos, los disidentes políticos y a los periodistas independientes dentro de Cuba que tienen la capacidad de atizar el movimiento hacia la libertad.                                                       ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4dfea7f4-32fd-4816-aefc-dac97d18bd30,\"SEN. MENENDEZ STATEMENT ON ONE YEAR ANNIVERSARY OF SURGE\n                    \n                      February 14, 2008\n                     WASHINGTON - A year ago today, the deployment of the surge of American troops into Iraq began. Senator Bob Menendez (D-NJ), a member of the Senate Foreign Relations Committee who visited Iraq in January, released the following statement today:\"\"One year after the surge of American troops into Iraq began, our brave men and women continue to be entrenched in that warzone acting as a national police force. American troops have carried out the mission they were given with extraordinary skill and valor, as they always do. However, as I saw with my own eyes when I traveled to Iraq recently, the political reconciliation that was the goal of the surge has not materialized. President Bush has no strategy other than stay the course and pass it on to future generations. The Republicans' presumptive presidential nominee is talking about keeping our troops over there for at least 100 years. That is not something that the American people want or will tolerate. Our best chance for long term peace will come once we begin responsibly bringing our troops home. The Iraqi government and security forces won't take control of their country until they actually believe we won't be there forever, acting as a crutch.\"\"                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3b86746a-1df4-40b1-a9fd-aedd6a863f8c,\"N.J. SENATORS: BUSH'S EDUCATION BUDGET FAILS NEW JERSEY\n                    \n                            New Jersey Lawmakers Release Analysis of Bush Education Budget Impact on Garden State\n                    \n                      February 13, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today released their assessment of the Bush education budget and its impact on New Jersey's future. The budget makes clear yet again, that our nation's students do not rank high on his priority list. Overall, education funding is frozen under the president's budget, and 48 programs would be eliminated entirely.  Cuts in afterschool programs, drug-free initiatives, technical education, and low-cost loans for college mean millions in dollars lost to New Jersey students.\"\"Funding education is the best investment we can make as a country. So it boggles the mind that the President's budget request would be so meager,\"\" said Sen. Menendez. \"\"The president's request is woefully inadequate to meet the massive educational challenges our nation faces, restricting programs that raise people up, and cutting funding for programs that create pathways of opportunity. I will work with my Senate colleagues to swing open the doors of education for New Jersey students.\"\"\"\"President Bush's budget doesn't make the grade for our students and teachers.  The budget doesn't prepare New Jersey's children for school, cuts funding for the technology our kids need in their classrooms and fails to provide the help students need to make college more affordable.  I will work to make sure that Congress does not leave our children behind—and that we provide the resources New Jersey's students need to get ahead,\"\" Sen. Lautenberg said.The two Senators, who are both members of the Senate Budget Committee, have vowed to fight the proposed cuts to critical education initiatives in New Jersey.President Bush's proposed budget cuts funding for critical education programs as detailed below:? Stifles Equal Opportunities for Children:  The president increases funding for Title I programs, but still falls far short of reaching the level authorized by No Child Left Behind, meaning more than $200 million in unmet promises to New Jersey.  If fully funded, nearly 60,000 New Jersey low-income children could receive services they were promised when the law was enacted.  The budget also makes no progress in increasing the federal government's share of special education, leaving New Jersey the burden of caring for an increasing special education population. ? Keeps Young People At Risk:  The Bush budget shortchanges our youth, especially those who are most at-risk for dropping out of school, joining gangs, or abusing drugs and alcohol.  Critical programs like dropout prevention and mentoring would receive no funding.  His budget would slash funding for afterschool programs by nearly $300 million, and instead create a voucher program, which would prevent many of our children from receiving quality after school services.  New Jersey stands to lose more than $8 million from cuts to anti-drug funding under the Safe and Drug Free Schools program and the 21st Century Schools program.? Ends Early Education Programs for Low-Income Children: While the president provides a slight increase for Head Start, which serves nearly 15,000 New Jersey students, the president's budget completely eliminates funding for Even Start.  Even Start is one of the only early childhood programs that serve our most vulnerable children and families, half of whom are Latino.  New Jersey has over 23 Even Start programs throughout the state.? Leaves Technology Out of the Classroom: The president's budget completely eliminates funding for educational technology state grants, which are critical to ensuring our children grow up well rounded and technologically savvy to compete in today's economy.  Last year, New Jersey received more than $5 million in funding for education technology.? Eliminates Job and Skills Training for Youth:  Once again the president puts vocational education on the chopping block, which provides high school and community college students the opportunity to learn essential job training and technical skills.  The budget would also eliminate Tech Prep grants, which provide students technical skills for two years of high school and two years of community college.  New Jersey would lose more than $27 million from these cuts. ? Denies Key College Assistance for Students:  While the president provides a slight increase in funding for Pell Grants, his budget eliminates funding for key federal assistance programs that help students afford college, such as supplemental educational opportunity grants and low-cost Perkins loans, and provides no increase for work study grants.  These programs provide more than $60 million in federal aid to some 60,000 New Jersey students, many of whom, without this aid, could not afford college.                                                                    ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a1fb09e1-43fc-4b59-92da-1ea179d3a3c5,\"LAUTENBERG, MENENDEZ: BUSH BUDGET UNDERMINES N.J. TRANSPORTATION NEEDS\n                    \n                            NJ Senators Vow to Fight for New Jersey's Travelers, Commuters\n                    \n                      February 12, 2008\n                     WASHINGTON, D.C. - Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert Menendez (D-NJ) today said President Bush's Fiscal Year 2009 budget proposal makes drastic cuts in transportation funding that will severely impact New Jersey's railways, highways and skyways.  The two Senators, who are both members of the Senate Budget Committee, have vowed to fight the proposed cuts to protect New Jersey's transportation network. \"\"President Bush's transportation budget takes New Jersey down the wrong path,\"\" said Menendez. \"\"Instead of making a significant investment in our region to repair our bridges, decongest our roadways and ultimately make traveling easier, this budget jeopardizes and undermines these priorities. I'll continue to push for making major new investments in our state's public transportation infrastructure, such as the Liberty Corridor, in order not only to make traveling and commuting easier, but also to spur economic growth and reduce our environmental footprint.\"\" \"\"At a time when we need investment in our railways, highways and skyways, the President's budget shortchanges Amtrak and weakens our entire transportation system,\"\" Sen. Lautenberg said.  \"\"We need resources to repair our crumbling roads and bridges, better manage air traffic and expand transit and passenger rail, which travelers continue to use in record numbers.  If we want to improve energy efficiency, reduce travel delays and grow our economy, we must invest in our transportation infrastructure now.\"\"             President Bush's proposed budget cuts funding for critical transportation needs, as detailed below. Despite crumbling infrastructure across the nation, an overburdened air travel system, and transit systems that are grossly underfunded, the Bush budget delays significant improvements which are necessary to keep pace with the region's economy.  It cuts funding for our nation's roads and bridges, and does little to address the growing airline delays. ·         Ignoring Highway/Bridge Infrastructure Needs.  Less than one year after the deadly Minneapolis I-35W Bridge collapse, President Bush has proposed cuts in highway/bridge spending that are $800 million below Congressionally-authorized levels.  This means New Jersey would receive almost $17 million less, postponing much-needed safety improvements to aging bridges and congested roadways. ·         Putting an End to Amtrak.  President Bush has proposed cutting Amtrak funding by $525 million, a cut of nearly 40 percent.  This would force a shutdown of our national passenger railroad system and the Northeast Corridor.  This would also jeopardize NJ Transit rail operations along this corridor, which shuttles over 100,000 New Jersey commuters to work and back each day.  Last year, the Senate passed Amtrak reauthorization legislation sponsored by Sen. Lautenberg which would fully fund Amtrak's operating and capital needs. ·         Hurting Commuters.  President Bush's budget would cut funding for mass transit programs by $203 million below Congressionally-authorized levels in FY 2009.  This cut could impact major transit projects in the region, including funding construction of a new rail tunnel under the Hudson River.  This tunnel is needed to ensure our economy does not choke—current tunnels are at capacity, with trains rushing through them every two-and-a-half minutes at rush hour. ·         Leaving Our Air Travelers Stuck at the Gate.  This budget would cut funding for our nation's airports and runways by over 20 percent, a loss of $765 million for our airport infrastructure.  At a time of record travel, as well as record flight delays, these funds could be used to modernize airports and increase capacity.  This funding is crucial to New Jersey, which is home to Newark Liberty International Airport, one of the most delayed airports in the nation. ·         Increases Tax on Airline Travelers.  While the Bush budget provides a $515 billion increase for the Pentagon, it also proposes a multi-year tax increase on airline travelers.  Under the Bush budget, airline passengers would pay 20 percent higher security fees, or up to $3.00 each time they board a plane (up to $6.00 per flight).  These taxes would be used to pay for airport terminal renovations to accommodate baggage screening equipment. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=52b2197c-4fb5-4eec-9975-6219faed433d,\"SENATORS, SENIORS AND STUDENTS DISCUSS NEGATIVE IMPACT OF BUSH'S BUDGET ON ALL AMERICANS\n                    \n                      February 12, 2008\n                     Washington, DC—Democratic Senators Kent Conrad, Debbie Stabenow and Robert Menendez joined senior citizen Judy Cato and recent college graduate Gabe Pendas at a press conference today to discuss the negative impact President Bush's budget will have on all Americans.  His fiscally irresponsible budget would cut needed funding in domestic programs while hiding the true cost of the Iraq war and increasing the national debt.  \"\"In a number of ways, the administration's budget leaves behind a legacy of missed opportunities, misguided priorities and misplaced values,\"\" Menendez said.  \"\"Cutting some of the most important investments in our families while leaving out huge costs that will run up our debt - that's a budget double whammy that only this President could pull off.\"\" \"\"President Bush will be remembered as the most fiscally irresponsible President ever,\"\" Conrad said.  \"\"His tax and spending policies have exploded the nation's debt, threatening our economic security.  Instead of paying our bills now, President Bush has been running up the charge card, passing on trillions of dollars of debt to our children and grandchildren.\"\"    Said Stabenow: \"\"Any budget is about values and priorities, and this President's final budget is clearly out of sync with the values and priorities of middle-class families across Michigan and across our country.  From cutting health care for the most vulnerable among us, to failing to make any real investments to support American manufacturing, this President's priorities are clear.  I look forward to working with my colleagues to develop a responsible budget that invests in America's working families and creates jobs here at home.\"\"  Said Cato:  \"\"Means testing undermines the social insurance nature of the Medicare program, raising costs for seniors who are dependent on it.  Over time, that would lead to more middle-class seniors like myself paying higher premiums.\"\"\"\"The President's budget cuts over $800 million from college programs for low-income and middle-class Americans,\"\" Pendas said.  \"\"Instead of funding the nation's priorities and investing in the future of our economy, his budget locks the doors to the college classroom for millions of students who need college the most.  As a recent graduate with over $30,000 in debt, students like me are the ones who will suffer the most.  Year after year, the President's budget leaves millions of students and their families behind.\"\"                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=124f2b10-821f-4ed8-abd1-67eeabcc3592,\"SEN. MENENDEZ: GATES'S WILLINGNESS TO DELAY TROOP DRAW-DOWN SHOWS ADMINISTRATION'S INTENT TO LEAVE WAR TO FUTURE GENERATIONS\n                    \n                            Defense Sec., while in Baghdad today, said he is leaning toward halting withdrawals\n                    \n                      February 11, 2008\n                     WASHINGTON - Today in Baghdad, Secretary of Defense Robert Gates said he is leaning toward halting the draw-down of American troops in Iraq once U.S. forces hit the 130,000 troop level. Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee who recently returned from a trip to Iraq, released the following statement: \"\"I suspect that what we're seeing is part of an effort by the White House to kick the can down the road by maintaining the stay-the-course strategy through the end of the Bush presidency. By refusing to change course, they will be passing off this war and its consequences for future generations of Americans to deal with and they will be undercutting our best chance for peace. My recent trip to Iraq confirmed for me the idea that having 130,000 troops entrenched over there as a national police force does not bring that country any closer to peace and reconciliation, nor does it help our nation's security, military readiness or fiscal outlook. The best chance for long-term peace will come if the Iraqi government and security forces take charge, but they will never feel the urgency to do so until they actually believe that we will not be there forever as a crutch.\"\"                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c303ad7e-4a7b-4bfb-83d0-cfedaae92857,\"N.J. SENATORS: BUSH BUDGET WEAKENS NEW JERSEY HEALTH CARE\n                    \n                            New Jersey Lawmakers Release Analysis ofBush Budget Impact on NJ Health Care System\n                    \n                      February 8, 2008\n                      WASHINGTON, D.C. - U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) today released their assessment of the Bush health care budget and its impact on New Jersey residents. The budget makes clear that providing access to comprehensive, affordable health care programs is not a top priority for this administration. Instead of putting resources into an already-strained health care system, the president is attempting to balance the budget on the backs of our nation' seniors and low-income families.  It also allocates far less than what is needed to provide adequate health care to low-income children and undermines the future of State Children's Health Insurance Program (CHIP), known as FamilyCare here in New Jersey.            \"\"The president has decided to tighten his fist when it comes to health care solutions for our seniors, our children and our low-income families in New Jersey,\"\" said Menendez. \"\"This is exactly the opposite of what we should be doing, I believe it is our job to invest significantly in solutions that will strengthen our health care system, and I will continue to make it a priority to help more New Jerseyans afford the health care they deserve.\"\" \"\"President Bush's cuts to Medicare, Medicaid and other vital health care services are the wrong prescription for New Jersey.  It hurts families and children who are already struggling to see a doctor and pay for the prescriptions and medical care they need. As a member of the Senate Budget and Appropriations Committees, I will fight to make this budget a better deal for New Jersey -- so our residents can get quality health care at an affordable price,\"\" Senator Frank R. Lautenberg said.            President Bush, in his budget, proposes cutting Medicare and Medicaid by $200 billion over five years.  This is particularly troubling because more than 40% of New Jersey hospitals are facing financial difficulty.  Any additional cuts could pose problems for the more than 1.2 million New Jersey Medicare patients that depend on these hospitals for their life-saving care.  The president's budget, among other things: reduces our ability to fund life-saving medical breakthroughs and eliminates funding for the Patient Navigator program, which coordinates care for people with cancer and other serious illnesses.   Additionally, the president wants to balance the budget on the backs of our children. Not only does he provide less funding than Congress proposed for the State Children's Health Insurance Program, he has also vetoed a proposal from Congress that would have provided 125,000 children in New Jersey to continue to receive health care coverage and allow an additional 100,000 children to gain health care coverage. Sens. Menendez and Lautenberg, both members of the Senate Budget Committee, pledged to work within the Congressional budget process to ensure New Jerseyans are not shortchanged by President Bush. President's FY2009 Health Care Budget:Weakening health care access, quality and widening disparities  ·        Jeopardizing the Health Care of Our Seniors and Low-Income Families:  The president's budget proposes cutting Medicare and Medicaid by $200 billion over five years, with 82% of that, or $178 billion, coming from Medicare. Specifically, the president proposes to cut $12.4 billion from Medicare next year. These savings would largely come from freezes in payments to doctors, hospitals and other health care providers.  New Jersey hospitals stand to lose more than $246 million in 2009 and $2.6 billion over five years under these steep spending cuts.·        Leaving New Jersey's Low-Income Children's Health Coverage Out in the Cold:  The President's budget proposal includes an additional $19.7 billion for SCHIP, short of the approximately $21.5 billion in addition that is needed to maintain coverage for children already enrolled.  At this level of funding, not only would it be difficult to maintain current enrollment but it would be impossible for additional uninsured children to be added to the program. This proposal is in stark contrast to the reauthorization plan passed by Congress. Under Congress' reauthorization plan, 125,000 New Jersey children would have continued to receive vital health care coverage and 100,000 additional New Jersey children would have gained health care coverage.  It is clear that the president does not prioritize children's healthcare as his proposal leaves us far short of Congress' plan to provide coverage to over 10 million children nationwide.·        Cutting Effective Health Programs:  Federal funding for Medicaid family planning services would be cut by $570 million this year and $3.3 billion over five years under the Bush budget.  It proposes to reduce the federal match for family planning services under Medicaid. This means that New Jersey could lose more than $18 million in Federal funding. This would result in a 400% increase in costs for New Jersey for these services.  ·        Reducing Our Ability to Fund Life-Saving Medical Breakthroughs:  The Bush budget freezes funding for the National Institutes of Health at $29.3 billion, which would make next year the sixth year in a row that our nation's investment in life-saving research failed to keep up with biomedical inflation. The projected success rate for research grant applications would fall to the lowest level, 18%, since 1970.·        Leaving Our Nation's Food and Drug Supply at Risk:  The Bush budget proposes to increase funding for the Food and Drug Administration (FDA) by $42 million which is barely enough to keep up with inflation.  In addition, an FDA scientific task force found that the budget request represented less than 20% of the funding needed just to keep up with their current operations.  This insufficient funding is clear evidence of the president's lack of commitment to keeping America's food and drug supply safe. Without proper protections and oversees inspections, New Jersey residents are at-risk of possibly tainted and harmful drug imports.  Americans should to feel confident and safe when they take their medication or buy their groceries but the only way we can ensure this is to properly fund the FDA. Furthermore, New Jersey's pharmaceutical companies and their 65,000 employees depend on timely approval of drugs and devices by the FDA to keep the New Jersey economy moving.  The president's budget paces the health of New Jersey's citizens and our economy at risk.·        Slashing Funding for Preventions Efforts:  The President's 2009 budget surrenders the fight against chronic disease and obesity in America.  Chronic disease programs at the CDC are cut by $29 million and the budget eliminates the Prevention Health Services Block grant, which helps New Jersey prevent and reduce the incidence of various health problems, such as childhood obesity, cancer, and lead poisoning. In New Jersey, 18 percent of sixth graders are overweight and another 20 percent are obese.·        Cutting Funding for Tobacco Control and Prevention: The President's budget cuts funding for successful tobacco control and prevention programs despite a recent report that found that smoking rates are no longer declining.  More than 4,000 people died of lung cancer in New Jersey last year.   ·        Harming Proven Reproductive-Health Programs: The president's budget again requests a $28 million increase for Community-Based Abstinence Education, for a total of $137 million.  Abstinence-only programs have been found to be ineffective and frequently use misleading and medically inaccurate information.  The president also recommends no increase for the Title X family-planning program, which provides access to health care for low-income women.  In New Jersey, more than 50 clinics rely on this funding.·        Providing Insufficient Support for Community Health Centers: Community health centers receive a meager 1% increase in this budget, which is intended for new centers in high-risk areas.  However, the budget includes nothing for base adjustments to cover inflationary costs for existing health centers.  Without these increases, the 19 community health centers in New Jersey may have to turn uninsured patients away.·        Lacking Support for HIV/AIDS Care and Prevention: The budget requests a less than 1% increase for HIV/AIDS care over this year and provides no increase for HIV/AIDS prevention.  The lack of a substantial funding increase puts the health and well-being of the more than 48,000 HIV/AIDS patients in New Jersey at risk.·        Eliminating Key Screening and Outreach Program: The president's budget eliminates $3 million in funding for the Patient Navigator program, which coordinates care for people with cancer and other serious illnesses.  The administration contends that this initiative would be ineffective or duplicate other government initiatives, but President Bush himself signed this bill into law.  This is particularly shocking in light of the fact that models for this program have proven effective and show that expanding access nationwide would save lives and health care costs.·        Slashing Health Professions Training: Our public health workforce shortage is worsening, and this budget will only exacerbate that shortage.  Instead of helping alleviate the nursing shortage, this budget proposes a 29% in funding to train nurses and completely eliminates health professions training for primary care and geriatric providers and programs aimed at diversifying the workforce.  It is estimated that by 2020, New Jersey will have 50% of their nursing positions vacant because of the shortage. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f9d65142-f70f-4566-87b1-a585f1e47744,\"N.J. SENATORS: BUSH ENVIRONMENT, ENERGY BUDGET FAILS GARDEN STATE\n                    \n                            New Jersey Lawmakers Release Analysis ofBush Budget Impact on Garden State Environment\n                    \n                      February 7, 2008\n                     WASHINGTON, D.C. - U.S. Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today released their assessment of the Bush environment budget and its impact on the Garden State. Their analysis uncovered budget cuts to critical programs geared toward making our communities and homes more energy efficient, as well as the Bush Administration's plans to block efforts to fight global warming.             \"\"President Bush has proposed a budget that would put our environment in serious danger.  In addition to reducing funding for the programs that protect our air, water and climate, this budget simply dismisses the issue of global warming,\"\" said Lautenberg. \"\"I will fight for more funding to protect our environment and keep our air and drinking water clean, and our state safe from dangerous toxic materials.\"\"             \"\"The more the administration falls behind in addressing the climate crisis, the more we will see devastating floods, disastrous storms and an erosion of the Jersey Shore,\"\" said Senator Menendez.  \"\"This budget fits an administration that has done as little as possible to address our environmental challenges, and it would take badly-needed resources away from environmental programs in New Jersey. I will stand up to protect the land, water and air in our state.\"\"             President Bush's proposed budget has the lowest level of overall funding for natural resources and the environment since 2001, and the Environmental Protection Agency's (EPA) budget would be cut by $330 million from last year's levels.  New Jersey and other states are hit particularly hard by major cuts to EPA's grant programs, which are essential to ensure that our communities have safe water, clean air, and are free from hazardous waste.             While New Jersey has the most Superfund sites in the country, the Bush administration has dramatically slowed the pace of cleaning them up.  In the late 1990s, more than 80 sites were finished each year.  However, the Bush Administration was only able to finish 24 sites in 2007, and with funding for Superfund cleanup reduced by $700 million in the President's budget, it is likely that the slow pace of cleanup will continue.             The budget slashes the Clean Water State Revolving Fund by nearly $135 million from last year's levels, which would cut funding to New Jersey by $5.5 million.  These critical funds help communities upgrade their infrastructure and ensure water used for drinking, swimming and other recreation are free of untreated sewage and other contaminants.             Sens. Lautenberg and Menendez, both members of the Senate Budget Committee, pledged to work within the Congressional budget process to ensure New Jerseyans are not forced to endure the major cuts proposed by President Bush. # # # President's FY2009 Environment Budget:Undermining Protections, Putting Families At Risk The President's budget for FY2009 once again calls for an overall cut to federal spending on clean air, clean water, land conservation, and other environmental programs.  New Jersey and other states are hit particularly hard by major cuts to EPA's grant programs, which are essential for ensuring that our communities have safe water, clean air and are free from hazardous waste.  The President's FY08 Budget: v      Proposes to drill for oil in the Arctic National Wildlife Refuge (ANWR)v      Sells off public land in order to marginally reduce the deficitv      Eliminates programs to help low-income Americans combat heating costsv      Sharply cuts environmental grants to statesv      Slows the pace of toxic site cleanupsv      Underfunds efforts to combat climate change  PUTTING CLEAN AIR AND CLEAN WATER AT RISK v      Cuts Funding for Clean Water in Communities.  The budget slashes the Clean Water State Revolving Fund by nearly $135 million from last year's levels, which would cut funding to New Jersey by $5.5 million.  These critical funds help communities upgrade their infrastructure and ensure water used for drinking, swimming and other recreation are free of untreated sewage and other contaminants.  In addition, the budget proposes to cut the Nonpoint Source grant program for the fifth year in a row, which could result in New Jersey getting less money to control polluted runoff into streams, rivers, and lakes.  v      Eliminating the Targeted Watershed Program.  The President's budget completely eliminates EPA's Targeted Watershed program, which provides grants to encourage successful community-based approaches and techniques to ensuring healthy and clean watersheds.  In the past five years, New Jersey has received more than $2.5 million from this program to help protect the Raritan River, Passaic River, and Lake Hopatcong watersheds. v     Reduces Funding for Clean Air. President Bush's budget aims to reduce the funding for the Clean Air Act in FY2009, by $23 million, a potential 7.5-percent decrease in funding for New Jersey to combat air pollution and the hazards resulting from climate change.  This marks a consistent downward funding trend in the President's budget.  DOES NOT LOOK FORWARD TO A SMART ENERGY FUTURE v      Ignores Global Warming. The President has been slow to acknowledge the need to combat global warming, and this budget reflects that.  In addition to reducing funding to the Climate Protection Program, the President proposes to eliminate funding to simply measure America's greenhouse gas emissions.  Also, the President has proposed to slash the Energy Efficiency and Renewable Energy program budget by almost 30 percent and cut solar energy research by more than $10 million.  This is a significant blow to New Jersey, which is second only to California in the number of solar installations.  Despite some promising comments at the State of the Union, it is clear President Bush does not understand the urgency or the scale of the energy and environmental challenges we face. v       Fewer Resources to Help with Skyrocketing Home Heating Costs.   The budget calls for eliminating weatherization programs that are currently funded at over $220 million.  For New Jersey this would constitute a loss of more than $4.5 million in funding that helps lower energy bills by increasing the energy efficiency of low?income homes.  Weatherization permanently reduces heating bills by 20 to 40 percent for low?income families.  The budget also cuts the Low?Income Home Energy Assistance Program (LIHEAP) by 22 percent, which will mean more than 150,000 families in New Jersey will have to forgo $17 million in home heating assistance.   v      Promoting Irresponsible Drilling.  The President's budget calls for drilling in the Arctic National Wildlife Refuge (ANWR).  This land, which is home to countless species, is a unique and important area, and faces a major threat from drilling and oil spills.  UNDERMINING CONSERVATION EFFORTS v      Shortchanges Recreation and Conservation.  For the sixth straight year, the President is trying to cut the Land and Water Conservation Fund and eliminate state grants, which provide money for conservation activities throughout New Jersey.  Over the last 40 years, New Jersey has received more than $330 million from the Land and Water Conservation Fund, which has helped create the Delaware Water Gap and Gateway National Recreation Areas, the Cape May and Great Swamp National Wildlife Refuges, Morristown and Edison National Historic sites, and hundreds of state and municipal parks, ball fields, playgrounds, and golf courses throughout the state.   v      Puts our Forests at Risk.  The budget proposes to cut the Forest Service's Forest Legacy program by over 75 percent, from $52 million in FY2008 to $12.5 million in FY2009.  The Forest Legacy program has allowed for the purchase and protection of over 4,100 acres of forest in New Jersey, but without proper funding, thousands of acres in the Sparta Mountain South region will remain unprotected.  v      Shortchanges our Wildlife Refuges. The President's budget flatlines the funding for the National Wildlife Refuge system.  With New Jersey's refuges facing major budgetary shortfalls, resulting in lack of proper staffing, leaving funding flat poses a major risk to New Jersey's pristine refuges.    KEEPING TOXINS IN OUR COMMUNITIES v      Allows Companies to Dodge Cleanup Costs.  The Bush Administration has again refused to reinstate the \"\"polluter pays\"\" tax on chemical and oil companies to pay for cleanup of the nation's worst hazardous waste sites, which means taxpayers will continue to pay a larger share for cleanups.   v      Slows Cleanup of Contaminated Sites.  New Jersey has the most Superfund sites in the country, but the administration has dramatically slowed the pace of cleaning them up.  In the late 1990's, over 80 sites were finished each year.  The Bush administration has only finished cleaning 24 sites in 2007, and with funding for Superfund cleanup reduced by $700 million in the President's budget, it is likely that the slow pace of cleanup will continue.   v      Failing to Ensure Environmental Justice.  The budget proposes to cut EPA's Environmental Justice program by 67 percent, which will make it tougher for low-income and minority communities to fix situations where they are disproportionately affected by pollution.  New Jersey has been one of the key battlegrounds in the fight for environmental justice.   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a85c2144-584a-48d9-893b-a35d575a5364,\"CHAIRMAN OF SENATE SUBCOMMITTEE ON FOREIGN ASSISTANCE SAYS BUSH'S FY09 REQUEST FOR LATIN AMERICA FUNDING CONTAINS POSITIVE MEASURES BUT FALLS SHORT\n                    \n                      February 5, 2008\n                     WASHINTON, D.C - On Monday, President Bush submitted his budget request for FY2009, which included $743 million in development assistance for the Western Hemisphere.That figure represents a $37 million cut from the funding provided for 2008. While the President requested $116 million more for the Development Assistance account, other funding, including funds from the Child Survival and Health Account would drop significantly.U.S. Senator Robert Menendez (D-NJ), chairman of the Subcommittee on International Development and Foreign Assistance, was encouraged by some elements of the budget request but felt that on the whole, it fell short.\"\"Putting more emphasis on development assistance is definitely the right move,\"\" said Sen. Menendez. \"\"But that boost shouldn't come at the expense of child health programs, and shouldn't be used to mask a broader cut in the assistance we give to our neighbors.\"\"If we're going to get serious about tackling common problems like drug trafficking, mass migration and environmental degradation, we have to address their root causes, namely poverty and entrenched inequality. That requires a stronger commitment.\"\"Menendez has authored and introduced a bill, the Social Investment and Economic Development Act for the Americas, to combat poverty and inequality in the Western Hemisphere. The legislation would provide $2.5 billion over ten years for a combination of basic development programs targeting health care and education, and economic development programs such as workforce training and microfinance. That funding would combine with matching funds from the private sector and member countries of the Inter-American Development Bank. Democrats and Republicans from both houses of Congress have expressed support for the legislation.                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=89e8cfb0-1acc-48ad-90fa-d6650a0fface,\"EL PRESIDENTE DEL SUBCOMIT? DE ASISTENCIA AL EXTRANJERO DEL SENADO DICE QUE LA SOLICITUD DE BUSH PARA FONDOS HACIA AM?RICA LATINA CONTIENE MEDIDAS POSITIVAS PERO NO ES SUFICIENTE\n                    \n                      February 5, 2008\n                     WASHINGTON, D.C. - Este lunes, el Presidente Bush presentó su solicitud del presupuesto para el año fiscal 2009, el cual incluía $743 millones en asistencia para el desarrollo económico del hemisferio occidental.Esa figura representa un corte de $37 millones de los fondos proporcionados para el 2008.  Mientras que el presidente solicitó $116 millones más para la cuenta de Asistencia del Desarrollo, otros fondos, incluyendo los fondos de las cuentas de Salud Maternal, disminuirían significativamente.            El Senador Robert Menéndez (D-NJ), presidente del subcomité de Desarrollo Internacional y Asistencia al Extranjero, estuvo animado por algunos elementos de esta parte del presupuesto pero sintió que en su totalidad no son suficientes. \"\"Poner más énfasis en asistencia para el desarrollo económico y social definitivamente es la estrategia correcta,\"\" dijo el Sen. Menéndez.  \"\"Pero, ese impulso de fondos no debería venir a costa de los programas de salud de niños, y no debería ser usado para enmascarar los cortes más amplios que están ocurriendo para la asistencia hacia nuestros vecinos al sur.            \"\"Si vamos a ponernos serios sobre abordar problemas como el tráfico de drogas, la migración en masa y la degradación del medio ambiente, tenemos que dirigirnos a sus causas fundamentales, en especial la pobreza y la arraigada desigualdad.  Eso requiere un compromiso más fuerte.\"\"            Menéndez ha escrito y ha presentado un proyecto de ley, el Acto de la Inversión Social y el Desarrollo Económico para las Américas, para combatir la pobreza y la desigualdad en el Hemisferio Occidental.  La legislación proporcionaría $2.5 mil millones en el curso de 10 años para una combinación de programas de desarrollo básicos dirigidos a la salud y la educación, y a programas de desarrollo económico tales como capacitación laboral y microfinanciación.  Estos fondos se combinarían con fondos del sector privado y de países miembros del Banco Interamericano para el Desarrollo.  Demócratas y Republicanos de ambas cámaras del Congreso han expresado su apoyo por el proyecto.                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9717817c-18f1-4ef8-9434-88bbc1768843,\"NEW JERSEY SENATORS RELEASE REPORT DETAILING SERIOUS IMPACT OF PRESIDENT'S BUDGET ON NEW JERSEY\n                    \n                            Report assails Bush's proposed budget cuts, examines effects on New Jersey\n                    \n                      February 5, 2008\n                     WASHINGTON - U.S. Sens. Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ), members of the Senate Budget Committee, today denounced President Bush's proposed budget for the next fiscal year - a budget that makes significant cuts to critical programs and services that impact millions of New Jerseyans. From health care, education and transportation to homeland security grants, first responders, and energy assistance for needy families, the President's budget slashes funding for many of the programs and services most important to New Jersey families and communities.\"\"With the country on the brink of a recession, President Bush's budget continues to ignore the needs of working families in New Jersey and across the country,\"\" Sen. Lautenberg said.  \"\"This budget fails to lower health care and tuition costs, give necessary tools to state and local law enforcement and first responders, fix our jammed airports and highways or lower prices at the pump.  Instead, President Bush's budget carelessly cuts funding for Medicare, Medicaid, education, state and local homeland security funding, protection of the environment and transportation infrastructure.  By hiding the true costs of the war in Iraq and irresponsibly neglecting our needs at home, President Bush leaves a sad legacy of huge deficits and unmet challenges for future generations.  This is an irresponsible budget and I will fight President Bush's misplaced priorities to make sure we match our budget with the real needs of New Jersey and the entire nation.\"\"\"\"Cutting some of the most important investments in our families while leaving out huge costs that will run up our debt - that's a budget double whammy that only this president could pull off,\"\" said Sen. Menendez. \"\"He's leaving behind a fiscal legacy of lost opportunity, lost priorities and lost values. Health care, homeland security grants, the environment and education are areas in which we should be investing, but those are four of the areas which the president has put on the chopping block. The fact is that while President Bush left out of this budget enormous costs like the war and fixing the Alternative Minimum tax, he will leave behind a mountain of debt for our children and grandchildren. As a member of the Budget Committee, I plan to stand up for the safety and well being of the families of our state and the nation in the face of this cynical budget proposal.\"\"A preliminary assessment of the president's proposed fiscal year 2009 budget uncovered a series of reckless cuts to programs and services critical to New Jersey families. The budget slashes homeland security grants to states, which help first responders and local governments prepare for and respond to terrorist attacks. These grants are especially critical for New Jersey, a state with several high-risk targets.The Low-Income Home Energy Assistance Program (LIHEAP), which helps more than 180,000 low-income families in New Jersey keep their homes warm during the cold winter, had its budget cut by 22 percent. The president also slashes New Jersey's Clean Water funding by 20 percent—funding which helps communities upgrade their infrastructure and ensure that water used for drinking, swimming and other recreation is free of untreated sewage and other contaminants.In health care, overall funding for Medicare and Medicaid is cut by $200 billion over five years. Instead of putting resources into an already-strained health care system, the president is attempting to balance the budget on the back of our nation's seniors and low-income families.             The budget also eliminates or freezes funding for federal student aid programs such as low-cost Perkins loans and work study grants, programs that provide more than $60 million in federal aid to some 60,000 New Jersey students, many of whom, without this aid, could not afford college.   Additionally, the budget cuts Amtrak funding by nearly 40 percent, falling far short of what Amtrak says it needs to keep running.  An Amtrak shutdown would strand the nearly 100,000 commuters a day who ride NJ Transit trains along the Northeast Corridor. However, this is just a smattering of the impact that this budget will have on New Jersey. To view the report click here for a PDF version: http://menendez.senate.gov/pdf/020508FY09BudgetImpactonNJFINAL.pdf. Menendez and Lautenberg, both members of the Senate Budget Committee, pledge to work within the Congressional budget process to ensure New Jerseyans are not shortchanged by President Bush.                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6dce2c6d-7eff-4800-85e0-6317aab29e02,\"NJ SENATORS MENENDEZ AND LAUTENBERG OFFER INITIAL REACTION TO PRESIDENT'S BUDGET PROPOSAL\n                    \n                            Bush budget would raise deficit, make cuts to vital programs in health care, education, the environment, state and local homeland security grants\n                    \n                      February 4, 2008\n                     WASHINGTON - Today, President Bush submitted his FY2009 budget proposal to Congress - a proposal that includes cuts to key domestic health care, education, environmental programs and state and local homeland security grants. The budget raises the deficit without even including the cost of the war.New Jersey Senators Bob Menendez (D-NJ) and Frank Lautenberg (D-NJ) members of the Budget Committee that will hold hearings on the proposal, offered their initial reactions this afternoon to the president's budget.Senator Menendez:\"\"Cutting some of the most important investments in our families while leaving out huge costs that will run up our debt - that's a budget double whammy that only this president could pull off. He's leaving behind a fiscal legacy of lost opportunity, lost priorities and lost values. Health care, homeland security, the environment and education are areas in which we should be investing, but those are four of the areas which the president has put on the chopping block. The fact is that while President Bush left out of this budget enormous costs like the war and fixing the Alternative Minimum tax, he will leave behind a mountain of debt for our children and grandchildren. As a member of the Budget Committee, I plan to stand up for the safety and well being of the families of our state and the nation in the face of this cynical budget proposal.\"\" Senator Lautenberg:\"\"With the country on the brink of a recession, President Bush's budget continues to ignore the needs of working families in New Jersey and across the country.  This budget fails to lower health care and tuition costs, give necessary tools to state and local law enforcement and first responders, fix our jammed airports and highways or lower prices at the pump.  Instead, President Bush's budget carelessly cuts funding for Medicare, Medicaid, education, state and local homeland security funding, protection of the environment and transportation infrastructure. By hiding the true costs of the war in Iraq and irresponsibly neglecting our needs at home, President Bush leaves a sad legacy of huge deficits and unmet challenges for future generations.  This is an irresponsible budget and I will fight President Bush's misplaced priorities to make sure we match our budget with the real needs of New Jersey and the entire nation.\"\"                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=eee2fc06-0b7d-40b4-a1e2-962ee2f73d57,\"SEN. MENENDEZ TO ACTING FAA ADMINISTRATOR: ANSWERS TO AIR TRAFFIC CONCERNS ARE INADEQUATE\n                    \n                            NJ Senator presses FAA on safety concerns at Newark airport, airspace redesign and air traffic controller staffing\n                    \n                      February 4, 2008\n                     WASHINGTON - Senator Bob Menendez (D-NJ), dissatisfied with the Federal Aviation Administration's response to concerns he had lodged, today demanded from the acting-chief of the FAA clearer, more precise answers on a number of issues confronting the New Jersey airspace. Among the topics on which Senator Menendez is seeking information are:·         The sharp increase in planes landing at Newark Liberty International Airport with only minimum fuel remaining in the tank·         The airspace redesign affecting flight paths at the New York City and Philadelphia region airports, which has lead to collision danger and increased noise for residents·         The inadequate staffing of air traffic controllers, both in numbers and in experience.Senator Menendez met with FAA Acting Administrator Robert Sturgell in December to raise these issues and was promised follow-up answers to many of them. Late last month, the FAA sent a letter to the Senator: http://menendez.senate.gov/pdf/012908FAAResponsetoMenendez.pdf, which he believed did not contain sufficient or specific answers.\"\"Many of the same questions I had about air safety in our region last year going into my face-to-face meeting with the acting Administrator, I still have today, even after their follow up response,\"\" said Senator Menendez. \"\"I still haven't received specific or satisfactory answers on my concerns about the new flight paths, the amount of flights landing with minimum fuel left in their tanks or the shortage of air traffic controllers who have the experience to manage our crowded airspace. I'm not going to drop these concerns until the FAA either provides a better explanation or changes their approach to these issues.\"\"Text of today's letter to acting-Administrator Sturgell below: http://menendez.senate.gov/pdf/020408LettertoSturgell.pdf.                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cc8f0802-e2ff-4e93-947b-986f26993a2a,\"LAUTENBERG, MENENDEZ: NJ COASTAL HERITAGE TRAIL FUNDING BILL PASSES ENERGY COMMITTEE\n                    \n                      February 1, 2008\n                     WASHINTON, D.C - The Senate Committee on Energy and Natural Resources recently approved legislation Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) sponsored to extend funding for the Coastal Heritage Trail in New Jersey until the year 2011. \"\"We have a responsibility to protect our natural treasures for future generations to teach them about our history and the importance of protecting our environment.  The Coastal Heritage trail allows New Jerseyans to enjoy the beauty of our state, and our bill would help protect it for years to come,\"\" said Sen. Lautenberg.\"\"The Coastal Heritage funding will allow the people of New Jersey to experience and enjoy the natural beauty that our Garden State has to offer,\"\" said Sen. Menendez, who was an avid advocate at hearings to fund the trail.  \"\"I am delighted that we are closer to extending our investment into this historic coastal area.\"\"In 1988, Congress authorized the Secretary of the Interior to designate the Coastal Heritage Trail along coastal New Jersey to provide for public appreciation and enjoyment of important fish and wildlife habitats, geologic and geographical landforms, cultural resources, and migration routes in coastal New Jersey.  The 1988 measure was crafted by Sen. Lautenberg and former Sen. Bill Bradley (D-NJ).The 300-mile Coastal Heritage Trail divides into five sections that extend south from Perth Amboy to Cape May and west to Deepwater.  The funds made available would help with signage and other interpretative devices.The trail contains historic villages, migrating eagles, boardwalks and the nation's oldest operating lighthouse, among other historic and cultural sites.                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=aabecf8e-279f-4175-b206-8f1afedff655,\"SEN. MENENDEZ: FOREIGN GOVERNMENT INVESTMENTS IN U.S. FIRMS DESERVES CLOSE WATCH\n                    \n                            Banking Committee member led fight against Dubai Ports deal in 2006\n                    \n                      February 1, 2008\n                     WASHINGTON - Various recent news reports have cited an increase in foreign investment in U.S. firms due to a weak American dollar, including a Washington Post report today specifically focused on Chinese investment. Much of this investment comes from sovereign wealth funds, which are backed, at least in part, by foreign governments. The most notorious foreign government investment was Dubai Ports World's deal in 2006 to acquire commercial operations at major U.S. seaports - a deal that was ultimately scuttled by the U.S. government after sharp Congressional and public criticism.Senator Bob Menendez (D-NJ), a Banking Committee member who led the effort against the Dubai Ports deal, today released the following statement on foreign investment:\"\"Foreign investment in American companies, when responsible, can have the potential to contribute to our economy and create jobs. There is rightful concern, however, over the influx of investments made by foreign governments, particularly when those investments involve critical infrastructure or other major institutions that could impact the security or stability of our nation. With a weakening dollar and an ever-globalizing economy, we are sure to see an rising number of these deals, and they require close monitoring and close scrutiny. I find it increasingly difficult to believe that foreign governments like China pump in billions of dollars into U.S. financial institutions but don't have a desire to have a say over their investments. I am glad that Chairman Dodd has listed this as one of the priority issues for the Banking Committee this year, and I look forward to further examining this in hearings.\"\"                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=83d5d6e8-2d76-4b47-8812-6407eeaf02c1,\"NEW REPORT ON MILITARY'S \"\"APPALLING\"\" LACK OF READINESS FOR HOMELAND ATTACK IS ANOTHER REASON TO TRANSITION TROOPS HOME, SAYS SEN. MENENDEZ\n                    \n                            Commission reports lack of preparedness for chemical, biological or nuclear attack\n                    \n                      January 31, 2008\n                     WASHINGTON - Today, the Commission on the National Guard and Reserve issued its final report, which asserted that those branches of the Armed Forces are not adequately prepared to respond to chemical, biological or nuclear attacks on the homeland. According to the report: \"\"Because the nation has not adequately resourced its forces designated for response to weapons of mass destruction, it does not have sufficient trained, ready forces available. This is an appalling gap that places the nation and its citizens at greater risk.\"\" (p. 13) Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, today released the following statement: \"\"The president's reckless Iraq war policy not only created a fiasco over there, but it also threatens our security here at home. This is what happens when you take so many Guard members and Reservists and essentially make them active duty. This is what happens when you stretch the military so thin. This is what happens when you have more than 150,000 troops policing a warzone with no end in sight. \"\"Our lack of preparedness takes on an added significance since we took our focus off of Osama bin Laden and allowed him to regroup in a safe zone along the Afghanistan-Pakistan border. This president is fond of saying, ‘We're fighting them over there so we don't have to fight them here,' but clearly because we're fighting over in Iraq, we're no longer prepared to fight them here if that unthinkable day does come. This report is yet another warning sign that we need to begin transitioning our troops out of Iraq and focus on getting the people responsible for 9/11 and rebuilding our homeland security.\"\"                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d7b51b65-a550-44c7-9d86-b2570e9916d0,\"ATTACKS AGAINST IRAQI AWAKENING COUNCILS UNDERSCORE NEED FOR IRAQI GOVERNMENT TO TAKE CHARGE, SAYS SEN. MENENDEZ\n                    \n                            Foreign Relations Committee member was in Iraq last weekend, met with sheikhs from Awakening Councils\n                    \n                      January 24, 2008\n                     WASHINGTON - According to a New York Times report today, recent attacks that have killed more than 100 leaders of the U.S.-supported Sunni militias made up of former insurgents, known as \"\"Awakening Councils\"\", threaten to undermine what little security has been achieved in Iraq by driving current U.S. allies back into the insurgency. American officials expressed concern over this development, which is apparently part of an effort by al Qaeda in Iraq to target and undermine these groups. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, traveled to Iraq last weekend and met with Sheikhs from the Awakening Councils outside of Baghdad, who expressed their concern that the Iraqi government was not giving their communities the support needed to maintain the stability their movement created. Sen. Menendez released the following statement today: \"\"There are many in Iraq who have chosen the promise of a democratic government over the indiscriminate violence of an insurgency, but this choice cannot be taken for granted.  They need to see that the government can actually deliver the essential services they need to survive—things as basic and fundamental as water and electricity. The Sheikhs in the Awakening Councils who I spoke with believe they have done their part.  They pushed al Qaeda in Iraq out of their neighborhoods.  Now it is the Iraqi government's turn to step up and do its part.\"\" \"\"The Awakening Councils are a critical component to stabilizing Iraq. They give Iraqi citizens a direct role in stabilizing and reconstructing their country. The Iraqi government cannot afford to sit and watch these Councils fall victim to insurgent attacks. The future of Iraq depends on the Iraqi government standing up and taking control sooner rather than later, but it is not clear whether they will take the necessary action on their own. Our country's no-end-in-sight war policy certainly does nothing to push the Iraqis towards taking responsibility and ownership for their nation's well-being.\"\"                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f1fc7f36-3e34-4630-b9a4-f18b1baa7736,\"SENATOR MENENDEZ APPLAUDS DEAL FOR AMTRAK WORKERS\n                    \n                            Workers had been without a contract since 1999\n                    \n                      January 18, 2008\n                     WASHINGTON - Today, Amtrak and nine labor unions representing its workers reached an agreement to more fairly compensate the workers and to avoid a strike at the end of the month. Senator Bob Menendez (D-NJ) released the following statement: \"\"This is an important development for Amtrak workers who were without a fair deal since the last millennium, and it's a big relief for the hundreds of thousands of commuters in our state who know just how important it is to keep the trains running. The men and women who keep the system working have long deserved a deal and have endured a lot, and I am happy that they finally have gotten it done.\"\"                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1711e686-2a70-40ac-9ea7-b187def21ba4,\"'LIBERTY CORRIDOR': UN PROYECTO DE TRANSPORTACION IDEADO POR EL SENADOR ROBERT MENENDEZ Y DISE?ADO PARA PROMOVER EL DESARROLLO ECONOMICO, RECIBE FONDOS FEDERALES\n                    \n                            El Comisionado de Transportaci?n Kris Kolluri y representantes de las agencias relacionadas destacan la fase 1, compuesta de 10 proyectos\n                    \n                      January 16, 2008\n                     Elizabeth, NJ - El Senador Robert Menendez (D-NJ) anunció la entrega de $88 millones en fondos federales para los proyectos ‘Liberty Corridor' o Corredor de la Libertad - proyectos críticos de desarrollo económico diseñados para mejorar el flujo del transito de carga y facilitar el traslado de productos y servicios.  La Administración Federal de Carreteras ha destinado $48 millones para el proyecto y planea entregar $40 millones adicionales en el año fiscal 2009 para financiar los proyectos que comprenden la fase 1 del Corredor de la Libertad. \"\"Estos fondos aportarán mas que asfalto y ferrocarriles - cuando estos proyectos sean completados, ayudarán a trasladar productos y servicios, tan esenciales para los consumidores y comerciantes de Nueva Jersey,\"\" dijo el senador Menendez.  \"\"Hemos esperado 10 años por estos fondos y me siento orgulloso de que finalmente podamos comenzar a mejorar la transportación e infraestructura del área.  Una vez terminados, estos proyectos van a agilizar la distribución de mercancía y servicios, hacer buen uso de los terrenos abandonados por pasada contaminación y comenzarán a expandir el desarrollo económico en la región para crear empleos nuevos y permanentes, así como crecimiento económico.\"\" ‘Liberty Corridor' o Corredor de la Libertad es una multifacética estrategia de desarrollo económico apoyada por el senador Menendez que combina mejoras a carreteras y sistemas ferroviarios para mejorar el traslado de carga por la región.  Los proyectos incluyen mejoras al puerto y a las terminales, lo que ayudara a conservar al Puerto de Elizabeth y al puerto de Newark como los mas importantes de la costa este.  Mejoras al sistema de carga aliviaran la congestión en nuestras carreteras y mejoraran el medio ambiente. Los proyectos proveerán fondos para el desarrollo de los terrenos abandonados por contaminación haciendo mejor uso de estas propiedades industriales.  \"\"La visión del senador Menendez del Corredor de la Libertad ha creado un sistema que será un motor para el crecimiento de Nueva Jersey en el siglo 21,\"\" dijo el Comisionado de Transportación Kris Kolluri.  \"\"Los fondos para el Corredor de la Libertad se usaran para la promover el mejor uso de los recursos del sector privado y los gobiernos estatales y federales haciendo posible que New Jersey pueda financiar importantes proyectos de transportación.\"\" \"\"El Corredor de la Libertad será una mejora increíble para las Terminales Maher, creando el camino que llene las necesidades de transportación del estado y del Puerto de NY/NJ,\"\" dijo Sam Crane, Vicepresidente de Asuntos Externos de Maher Terminals.  \"\"Este acceso adicional y mas eficiente será bueno para los negocios, bueno para el consumidor y bueno para el estado de Nueva Jersey.\"\"Los proyectos de la Fase 1 financiados por la Administración Federal de Carreteras incluye: El reemplazo del Puente Whittpenn Mayor acceso vertical de dos túneles de la ruta ferroviaria para el paso de trenes con contenedores de tamaño estándar para conectar a Nueva Jersey con el resto del sistema ferroviario del norte del país. Port Reading Junction - la reconfiguración de este empalme para eliminar el estancamiento y las demoras de los trenes de carga apoyando a las empresas de Nueva Jersey que utilizan esta ruta para recibir envíos de etanol y conectando a esta región con el sistema ferroviario del norte del país Conector Carretera ‘Tremley Road' - provee acceso del New Jersey Turnpike a 400 acres de terreno al sureste del Condado Union cerca del Puerto NY/NJ  Fase 1 - Proyecto del Corredor de la Avenida North - separa el transito de camiones del transito vehicular y mejora el traslado de productos al área de IKEA, Jersey Gardens Mall, varios hoteles y empresas en desarrollo Ruta 35/36 Eatontown - mejora el acceso del transito vehicular al Fuerte Monmouth Ruta 1, sección 6V, al norte de Ryders Lane hacia el area sur de Milltown Road - mejora el acceso a Universidad Rutgers/Cook Collage y el Centro de Alta Tecnología además de otras firmas de alta tecnología e investigación en crecimiento como Bristol Myers Squibb con el reemplazo de un puente deficiente al igual que mejoras a las carreteras y señales de transito  Ruta 18 / Conexión a la Carretera Interestatal 287 -mejora el acceso al campus Busch de la Universidad Rutgers, un centro de ingeniería e investigaciones académicas. \"\"El Alcalde de Elizabeth Chris Bollwage quien se unió al senador Menendez se expresó complacido de que el proyecto va hacia delante: \"\"Este importante financiamiento trae crecimiento y mejoras muy necesarias a carreteras congestionadas,\"\" dijo el Alcalde Bollwage.  \"\"Felicito al senador Menendez por lograr una iniciativa que provee mucho mas que mejoras físicas; provee una mejor calidad de vida para los residentes.\"\"\"\"Estos fondos harán posible el adelanto de una amplia gama de proyectos - proyectos que mejorarán el movimiento de mercancía en nuestro estado que en última instancia ayudaran al crecimiento económico y a la creación de empleos en el Condado Union y en la región,\"\" dijo Daniel Sullivan de Elizabeth, concejal del Condado Union, quien es además el presidente de la Autoridad de Planificación de Transportación de Nueva Jersey, que otorgo la autorización local para el financiamiento federal de los proyectos.Dos de los proyectos - Tremley Point y el Corredor de la Avenida Norte - son del proyecto de desarrollo económico del Condado Union bajo la revisión del concejal Sullivan.                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=98667c97-1f8a-462c-8b35-2da0c6963323,\"WITH OIL PRICES AT AN ALL-TIME HIGH, SEN. MENENDEZ APPLAUDS RELEASE OF OVER $25 MILLION IN EMERGENCY CONTINGENCY FUNDS TO HELP NEW JERSEY LOW-INCOME HOUSEHOLDS KEEP WARM THIS WINTER\n                    \n                            Senator Menendez has been an advocate for LIHEAP and has asked the administration to add $1 billion for emergency funding\n                    \n                      January 16, 2008\n                     Washington, D.C. - U.S. Senator Robert Menendez (D-NJ), a strong advocate for increasing funds for the Low Income Home Energy Assistance Program (LIHEAP) that helps families who are struggling with daunting energy costs this winter, said he is pleased with the administration's announcement today that it will be releasing around $450 million in LIHEAP emergency contingency funds, and more than $25 million will go to New Jersey.             \"\"The New Year began with the price of oil hitting $100 dollar a barrel, which translates into out of control heating costs for all Americans, especially for low-income families.  In the richest country on earth people shouldn't have to wonder whether they can keep their homes warm through the harsh winter, and I am pleased the administration has taken this action,\"\" said Menendez.This past December, Sen. Menendez joined Senator Jack Reed (D-RI) in asking the president for an additional $1 billion in funding (http://menendez.senate.gov/pdf/120307LIHEAPletter.pdf); he is also a co-sponsor of legislation Sen. Bernard Sanders (I-VT) introduced - the Keep Americans Warm Act of 2007 would also increase funding to LIHEAP by $1 billion.                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6694d535-c475-41e0-a9f3-b7cec22c996b,\"LIBERTY CORRIDOR GETS THE GREEN LIGHT: SENATOR ROBERT MENENDEZ, TRANSPORTATION COMMISSIONER KRIS KOLLURI AND PARTNER AGENCIES ANNOUNCE FEDERAL FUNDING FOR MAJOR TRANSPORTATION, ECONOMIC DEVELOPMENT PROJECT\n                    \n                            Phase 1 includes 10 projects that will provide relief for congested commercial traffic, boost resource utilization and foster economic development\n                    \n                      January 15, 2008\n                     Elizabeth, NJ - Today, Senator Robert Menendez announced the delivery of up to $88 million in federal funding for the Liberty Corridor projects - critical economic development projects that will improve the flow of freight and provide more efficient delivery of goods and services. The Federal Highway Administration has made immediately available $48 million and plans to deliver up to another $40 million by Fiscal Year 2009 to fund 10 the projects that comprise Phase 1 of Liberty Corridor.\"\"These funds are more than about asphalt and railroads - when these projects are completed they will help move the goods and services that mean so much to New Jersey consumers and businesses,\"\" said Senator Menendez. \"\"We have waited 10 years for this funding and I am proud that we can finally begin to improve the area's transportation and infrastructure. Once completed, these projects will streamline the distribution of goods and services, utilize brownfields and more importantly, begin to expand economic development in the region to create new and permanent jobs and economic growth.\"\" Liberty Project is a multifaceted economic development strategy championed by Senator Menendez that combines road and rail improvements that will help move freight around the region. The projects include harbor and terminal improvements that will keep Port Elizabeth and Port Newark as the top seaport on the east coast.  New freight improvement strategies will ease congestion on our roadways and improve the quality or our air.  The projects will also allow for the redevelopment of area brownfields, putting industrial properties to more productive use.\"\"Senator Menendez's vision for the Liberty Corridor has created a corridor that will be an engine of growth for New Jersey in the 21st Century\"\" said Commissioner Kolluri.  \"\"The Liberty Corridor's funding harnesses resources from the private sector and federal and state government, enabling New Jersey to fund crucial transportation projects.\"\" Liberty Corridor Press ReleaseJanuary 15, 2008Page 2\"\"Liberty Corridor will be an incredible enhancement to Maher Terminals, paving the way to facilitate transportation needs around the state and to and from the Port of NY/NJ,\"\" said Sam Crane, Senior Vice President - External Affairs, Maher Terminals.  \"\"This increased and more efficient access will be good for business, good for the consumer, and good for the State of New Jersey.\"\" Phase 1 Projects, funded by the Federal Highway Administration Grant include:Whittpenn Bridge replacement North Jersey Doublestack Clearance/National Docks Port Reading Junction Tremley Point Connector Road North Avenue Corridor Project - Phase 1 Route 35/36 Eatontown Route 1, section 6V, North of Ryders Lane to South of Milltown Road Route 18 / Interstate 287 Connection Elizabeth Mayor Chris Bollwage, who also joined Senator Menendez during the announcement, seemed pleased that the project was moving forward.  \"\"This important funding brings smart growth and much needed improvements to congested roadways,\"\" stated Mayor Bollwage. \"\"I commend Senator Menendez for delivering an initiative that provides more than just physical improvements; it provides a better quality of life for residents.\"\"\"\"These funds will allow a wide range of projects to move forward - projects that will improve goods movement in our state and ultimately contribute to economic growth and job creation in Union County and the region,\"\" said Union County Freeholder Daniel Sullivan of Elizabeth, who is also the Chairman of New Jersey Transportation Planning Authority, which granted local authorization to the federal funding for the projects.Two of the projects being funded, the Tremley Point Access Connector Road, and the North Avenue Corridor Improvement Project are Union County Economic Development projects under Freeholder Sullivan's review.                                                          ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5446b07d-e817-472e-85b4-af8717957e98,\"ONE YEAR AFTER SURGE STRATEGY WAS ANNOUNCED, ADMINISTRATION HAS BROUGHT TROOPS NO CLOSER TO COMING HOME, SAYS SEN. MENENDEZ\n                    \n                            Tomorrow marks anniversary of Bush's announcement of the surge\n                    \n                      January 10, 2008\n                                     WASHINGTON - One year ago tomorrow, President Bush announced a surge of U.S. troops into Iraq, with the main goal of creating a window of opportunity for the political reconciliation needed for lasting peace. In the lead up to tomorrow's anniversary, Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, released the following statement:              \"\"One year after the president announced the surge, the questions must be asked: has he brought our troops any closer to transitioning home and has Iraq achieved the political reconciliation that was the main goal of the surge? Sadly, the answer to both is ‘no.'             \"\"Our troops have carried out their mission with valor, bravery and excellence, as they always do, and they continue to be a source of pride for our nation. The problem is with the strategy this administration is pursuing.               \"\"I am concerned that the surge has served to further entrench our troops as a de-facto nationwide police force in Iraq. Our involvement there should be temporary, not permanent, but our military's role is more expanded than ever, with no hope in sight for a complete handoff of security duties to the Iraqis. The benchmarks that we need to achieve still have not been met. It remains clear to me today, as it did one year ago, that only when the Iraqi government and security forces actually believe we will not be there forever will they stand up and take charge of their country. I will continue to press for a change of course in Iraq.\"\"                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5917f7ea-4af4-449b-bbb1-d96b679e01d2,\"UN A?O DESPU?S DE QUE LA ESTRATEGIA DE AUMENTAR LAS TROPAS EN IRAK FUE ANUNCIADA, LA ADMINISTRACI?N NO HA TRA?DO A LAS TROPAS M?S CERCA A CASA, DICE EL SEN. MENENDEZ\n                    \n                            Se marca hoy el aniversario del aviso de Bush para aumentar las tropas\n                    \n                      January 10, 2008\n                     WASHINGTON - Hoy se marco un año desde que el presidente Bush anuncio un aumento en las tropas estadounidenses en Irak con la meta de crear una oportunidad para la reconciliación política necesaria para la paz duradera. En el día del aniversario, el senador Robert Menendez (D-NJ) hizo las siguientes declaraciones: \"\"Un año después de que el presidente anunció el aumento, debemos plantear estas preguntas: ¿ha traído el plan una transición en la que nuestras tropas pasen mas rápidamente de Irak a sus hogares y ha llegado Irak a la reconciliación política; la meta principal del incremento? Tristemente, la respuesta a ambas es ‘No'. \"\"Nuestras tropas han realizado su misión con valor y excelencia, como lo hacen siempre, y ellos continuaran siendo una fuente de orgullo para nuestra nación. El problema es la estrategia que esta administración está persiguiendo. \"\"Me preocupa que el aumento solo ha servido para atrincherar aun mas a nuestras tropas como si fueran la policía de-facto a nivel nacional de Irak. Nuestro papel allí debe ser temporal, no permanente, pero el papel de nuestros militares ha sido ampliado ahora más que nunca.  El plan carece siquiera de esperanza en una total transferencia de los deberes de la seguridad nacional a los iraquíes. Las metas que necesitamos alcanzar todavía no se han resuelto. Sigue siendo claro para mí, como lo fue hace un año: que solamente cuando el gobierno iraquí y las fuerzas de seguridad se den cuenta que nosotros no estaremos allí para siempre, tomaran riendas de su país. Continuaré presionando para un cambio de rumbo - estrategia en Irak.\"\"                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a8e5b3ae-3197-4d49-b430-04a6f61f628b,\"SENATOR WHO PASSED CHINA-DARFUR RESOLUTION REACTS TO CHINESE ENVOY'S COMMENTS ON HIS GOVERNMENT'S ROLE\n                    \n                            Senator Menendez authored resolution that passed in July\n                    \n                      January 10, 2008\n                     WASHINGTON - Earlier today in a question-and-answer session on the Chinese government's website, China's special envoy to Darfur, Ambassador Liu Guijin, defended his government's ties to the Sudanese regime and sought to silence efforts to link those ties to the 2008 Beijing Olympic Games.Today Senator Robert Menendez (D-NJ), a member of the Foreign Relations Committee, reacted. Last year, Menendez introduced and passed a resolution that officially urges the Chinese government to better use its unique relationship and leverage with Khartoum to help end the bloodshed and that mentions the need to uphold the spirit of the Olympic Games (http://menendez.senate.gov/newsroom/record.cfm?id=280121). Menendez also hosted a one-on-one meeting with Ambassador Liu last year, during which the Senator pressed Ambassador Liu on the issue (http://menendez.senate.gov/newsroom/record.cfm?id=282137).\"\"I am disappointed to see the Chinese government in a defensive mode instead of a proactive one,\"\" said Senator Menendez. \"\"Ambassador Liu's comments seem to suggest that the Chinese government is content with the modest amount of pressure it has put on Khartoum and is content to continue fulfilling its economic needs without adequately engaging Khartoum on the genocide. Despite Ambassador Liu's sentiment, the spirit of the Beijing Olympic Games could absolutely be muddied if his government is not seen as using its leverage to help stop the killing and suffering, and I would hope that would be a motivating factor for the Chinese government.\"\"                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5cacf620-9b13-4157-947f-41fb59e92272,\"Menendez, Who Led Opposition to 50 Cent PATH Fare Increase, Applauds Reduction Of Hike\n                    \n                            Port Authority voted today to cut fare hike in half, as well as for smaller increase for multiple trip passes and the introduction of unlimited trip passes\n                    \n                      January 4, 2008\n                     WASHINGTON - Today, Senator Bob Menendez (D-NJ) commended the Port Authority's Board of Commissioners vote to reduce the increase of PATH train fares to 25 cents, half as large as the originally-planned 50 cent increase. In addition, the Board voted to in favor of reducing the fare increase for multiple-trip passes and to introduce an unlimited trip pass.\nSenator Menendez, who has led the effort to convince the Port Authority to reconsider the 50 cent increase, today said he was pleased that his efforts produced the desired results.\n\n\"\"I am pleased that the Port Authority recognizes that with all the energy, environmental, cost-of-living and traffic congestion issues that confront us, we should be encouraging PATH ridership as much as possible,\"\" said Senator Menendez. \"\"When I spoke with Port Authority leadership, one of the alternatives I proposed was a lower fare increase coupled with a significant investment of funds to improve the PATH system and benefit riders. By reducing the fare hike and continuing to move forward with their capital investment plan, the Port Authority is essentially adopting this plan, which marks a definite improvement over a flat 50 cent hike. It is important and encouraging that the Port Authority took the calls to reconsider seriously, took an honest look at the situation and made what I believe is a smart decision.\"\"\n\nMenendez wrote to the Port Authority about his opposition to the 50 cent increase upon the first news reports of the plan. Click Here to read that letter. He has also made numerous subsequent statements on the matter. Click Here to read those statements.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a8bb3fed-2f7f-4140-8597-75b94083e946,\"UPON PREDICTION OF INCREASED GYPSY MOTH INFESTATION IN NJ, SENATORS MENENDEZ AND LAUTENBERG URGE USDA TO DEVOTE MORE FUNDS TO COMBAT PROBLEM\n                    \n                            NJ Dept. of Agriculture says NJ should spray 112,000 acres\n                    \n                      January 3, 2008\n                     WASHINGTON - Today the New Jersey Department of Agriculture reported that the 2008 gypsy moth infestation in New Jersey could be drastically worse than last year's, which itself was the worst in 20 years. In 2007 the moths killed 14,000 acres of trees in the state, and this year they could kill 45,000 acres, according to the Department.In response, New Jersey Senators Bob Menendez (D-NJ) and Frank Lautenberg (D-NJ)  are pressing acting U.S. Secretary of Agriculture Charles Conner to use his discretion to allot more funding for gypsy moth suppression programs that allow the federal government to match local funding for spraying. \"\"These bugs are eating away at the Garden State,\"\" said Senator Menendez. \"\"Municipalities don't have huge budgets to combat this infestation, and they will need as much assistance as the federal government can give. Especially in a state as populated as ours, having trees is vital for the environment and for our quality of life. We need to preserve and protect them.\"\"\"\"New Jersey faces a serious threat from gypsy moths and our communities need more help,\"\" said Senator Lautenberg.  \"\"We need to do all we can to keep our trees healthy and additional funding to prevent gypsy moth infestation is an important step in the right direction.\"\"Senators Menendez and Lautenberg worked to fully fund the nationwide cooperative gypsy moth suppression program - at $9 million - as part of the FY08 Consolidated Appropriations bill signed into law last week. However, with these new estimates, the New Jersey Department of Agriculture is advocating the spraying of more than 112,000 acres in New Jersey, which would require much of the overall national budget for gypsy moth suppression.Text of Menendez-Lautenberg letter:January 3, 2008Acting Secretary Charles ConnerU.S. Department of Agriculture1400 Independence Ave., S.W.Washington, DC 20250Dear Acting Secretary Conner,Today we learned our home state of New Jersey faces an unprecedented gypsy moth crisis.  In 2007, the gypsy moth killed nearly 14,000 acres of trees, the worst outbreak in 20 years.  This year the New Jersey Department of Agriculture predicts the destruction will likely be worse - much worse.  New Jersey could lose 45,000 acres of trees without an immediate plan and funding to begin an aggressive spraying program.The 2007 infestation was exacerbated by uncertainty over the USDA cost-share funding for spraying and cooperative suppression.  Not able to bear the full cost of eradication efforts and unsure as to whether matching federal funding would be authorized, many towns decided not to spray.  The results were unfortunately predictable: heavy defoliation and costly losses to our cranberry and blueberry crops.In response, we fought to include language in the FY08 Consolidated Appropriations Bill, which recently passed Congress, instructing the USDA to maintain gypsy moth suppression funding at last year's high levels.  Last year, the Forest Service spent $9 million nationally on gypsy moth spraying and those funds will be there again this year.Unfortunately, after passage of this bill, we learned that this level of funding will not be nearly enough.  To control this year's infestation, New Jersey must spray over 112,000 acres of public and private forest.  Most of this land will need to be sprayed more than once.  These treatments will cost $9 million.  Because this program has a 50/50 cost share, half of these funds will be provided by the state or municipalities.  But this means New Jersey alone will need $4.5 million in federal matching funds out of only $9 million total.Congress could not foresee this historic outbreak, and it could not anticipate the magnitude of the response needed to avert devastating losses.  Therefore, we implore you to use your discretion to increase USDA spending on the cooperative gypsy moth suppression programs, and to make these funds available quickly.  It is imperative that these funds be available early enough to allow towns to match them in municipal budget proposals.Thank you for consideration of this important matter.  We look forward to your response. ROBERT MENENDEZ                                                        United States Senator                                                                  FRANK R. LAUTENBERGUnited States Senator                                                                  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4f309a63-b14a-4965-bb16-522f06ea4aa3,\"U.S. SENATOR ROBERT MENENDEZ ANNOUNCES FEDERAL FUNDING FOR PROGRAM TO GUIDE PATIENTS AND FOR LOURDES MEDICAL CENTER OF BURLINGTON COUNTY\n                    \n                            The Patient Navigator Program, established by Sen. Menendez, can now begin to take form through competitive grants\n                    \n                      January 2, 2008\n                     Willingboro, N.J. - U. S. Senator Robert Menendez today joined Lourdes Medical Center officials and staff to announce the procurement of $2.9 million in initial federal funding for a program he established to guide patients through the health care system - the first national program of its kind. Senator Menendez also announced more than $718,000 in funding for health care programs at Lourdes. Funding for both the Patient Navigator, Outreach and Chronic Disease Prevention Program and for the programs at Lourdes were secured at part of the Fiscal Year 2008 Consolidated Appropriations bill, which was signed into law last week.The Patient Navigator Program, which Senator Menendez created in 2005 and which now has the federal funding to be implemented, will help patients, including those in underserved communities, to overcome the barriers they face in getting early screening and appropriate follow-up treatment. \"\"I am proud that the Patient Navigator System will now move forward to assist patients who have recently received a life changing diagnosis and desperately need assistance in making sense of their treatment options,\"\" said Senator Menendez.  \"\"The Patient Navigator will guide patients in these trying emotional situations to the resources available to them in the health care system and their communities.\"\"     Patient Navigators are individuals who know the local community and will serve as sentinel to community residents -- reaching out to make sure they receive appropriate screenings and helping patients understand the health care system they depend upon.  Navigators will help with referrals and follow up treatment and will be the \"\"go-to person\"\" when patients need a better understanding of the health system and their treatment options. The Health Resources and Services Administration (HRSA) will establish procedures for this competitive grant program. Request For Proposals will be issued in the coming months. Senator Menendez also announced federal funding for the following programs: Cancer program at Lourdes Medical Center of Burlington County - $143,518. These funds will help in the acquisition of digital mammography equipment and software as well as technology to automate and integrate patient records making critical data available to all staff while insuring patient family needs are met.  Our Lady of Lourdes Medical Center Intensive Care Nursery and Osborn Family Health Center - $575,055. Funding will replace 15 year-old fetal monitoring systems with a new one that will archive patient information and enhance communication with the Maternal-Child Division and will acquire state of the art intensive care nursery warmers used for extremely low birth weight infants, essential in the care of premature and low birth weight infants.  \"\"Timely access to patient records saves lives and it is important to make the information available to the medical staff as quickly as possible. Early diagnosis is equally important, and I am pleased that I was able to help secure the funding that will enhance these capabilities at Lourdes Medical Center,\"\" said Menendez.  BACKGROUND ON PATIENT NAVIGATORS: The goal of a patient navigator is to improve health outcomes by helping patients, including patients in underserved communities, overcome the barriers they face in getting early screening and appropriate follow-up treatment.  Patient navigator programs must include 3 components:  1) ongoing, year-round outreach, 2) access or referral to preventive care, and 3) a patient navigator to help patients once they enter the health care system.  Patient navigators are not limited to just cancer patients, but focus on preventing and treating a broad range of chronic diseases. Patient navigators are individuals who know the local community and can help patients navigate through the complicated health care system.  They help with referrals and follow-up treatment and direct patients to programs and clinical trials that are available to help them get the treatment and care they need to fight cancer and other chronic diseases.  In addition, the patient navigator guides patients to health coverage that they may be eligible to receive.  They also conduct ongoing outreach to health disparity communities to encourage people to get screenings and early detection services.  All patients benefit from patient navigators.  Racial and ethnic minorities benefit from patient navigators because they ensure that patients will have someone at their side who understands their language, culture, and barriers to care, helping them get in to see a doctor early and work their way through our complicated health care system to get the coverage and treatment they need to stay healthy.  The same applies to those in rural communities who face significant geographic barriers, transportation challenges, and limited access to care.                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f5cb5fad-8c99-4851-b52b-15ace68c4af6,\"$100 A BARREL OIL: SEN. MENENDEZ SAYS WAYWARD POLICY HAS BROUGHT US HERE, BREAKING DEPENDENCE FROM OIL IS THE WAY OUT\n                    \n                            Dubious oil price milestone was hit today\n                    \n                      January 2, 2008\n                     WASHINGTON - Today, the price of oil hit $100 a barrel. The impact of the high cost of oil can be found domestically in gas, food and heating prices and internationally in changing and volatile global politics. U.S. Senator Robert Menendez, a member of both the Senate Energy and Natural Resources Committee and Foreign Relations Committee, today released the following statement: \"\"This is an ominous way to ring in the New Year. The high cost of oil takes money out of our wallets here at home and it creates dangerous instability in the world. My hope is that the symbolic $100 a barrel milestone will serve as a red alert for action to break the worldwide addiction to oil and change the course of the Bush administration's disastrous foreign policy. \"\"A foreign policy path that took us to war in Iraq and inflamed tensions in the Middle East together with an insatiable worldwide demand for oil has brought us here. To find our way out, we need to break the addiction, which means better fuel efficiency for our cars, more energy-efficient homes, a focus on mass transit and a strong investment into the development of alternative-energy technology. The solutions include advanced biofuels, like cellulosic ethanol, a government push for auto manufacturers to commercialize plug-in hybrids, the weatherization of homes and an investment in public transportation. \"\"From the price of milk at the grocery store to the volatility of international relations to the fate of the planet, the ramifications couldn't be bigger. I am proud to have worked on and supported Congressional action to address the energy crisis this year, including a raise in the fuel economy standards. This Congress has passed legislation that will make us a more energy efficient nation, but there is much more we could have done were it not for the resistance of President Bush and Republicans in Congress. We cannot stop working to make ours a greener nation that is less dependent on oil.\"\"                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7305f07e-740f-4921-ad9a-19e5d1f5a56b,\"SEN. MENENDEZ REACTS TO ASSASSINATION OF FORMER PAKISTANI P.M. BHUTTO\n                    \n                            Menendez chaired hearings on U.S. aid to Pakistan in Foreign Relations subcommittee\n                    \n                      December 27, 2007\n                     WASHINGTON - Today, former Pakistani Prime Minister Benazir Bhutto was assassinated as she campaigned in the lead up to parliamentary elections scheduled for January 8.  Senator Robert Menendez (D-NJ), who earlier this month chaired a Senate Foreign Relations subcommittee hearing on U.S. aid to Pakistan, released the following statement: \"\"The assassination of former Prime Minister Bhutto is a sad and senseless act.  Pakistan's stability and its democratic future are in doubt, and this doubt weakens the security of our country as well. I hoped that the Bush administration would have undertaken a better accounting of the billions of dollars sent to Pakistan in military and social aid. The administration has yet to adequately report if those funds have produced the desired results, or even if they have been kept out of enemy hands, but evidence on the ground suggests that Pakistan has become less stable since 9/11. At this crucial time, the administration must undertake the kind of diplomatic surge necessary to ensure that democracy in Pakistan does not die, and it must insist on full accountability of military and development assistance to Pakistan, which up to this point has been absent.\"\"                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f1ed8d1a-fe67-42ef-b531-8415bbd16154,\"Lautenberg, Menendez: More Than $10 Million for NJ Hospitals, Health and Education Programs Signed into Law, Heads to NJ\n                    \n                            Funds Included in FY 2008 Omnibus Bill Signed by President\n                    \n                      December 27, 2007\n                     WASHINGTON, D.C. - Sen. Frank R. Lautenberg (D-NJ), a member of the Senate Appropriations Committee, today announced with Sen. Robert Menendez (D-NJ) that a bill including more than $10 million in federal funding they secured for hospitals, as well as health and education programs, was signed by the President and will be delivered to New Jersey.             The Appropriations legislation, which Sen. Lautenberg helped craft in committee, was approved by the House and the Senate and signed by the President yesterday.             \"\"This money will support vital services for residents across our state.  Whether it's educating our children, responding to health emergencies or increasing access to cutting-edge medical treatments, these funds play a critical part in ensuring the health and well being of New Jerseyans,\"\" Sen. Lautenberg said.            \"\"For our state, we are bringing assistance to education programs that prepare our youth to succeed and cutting-edge technology to improve our health care centers,\"\" said Menendez.  \"\"We are making an investment in New Jersey families and their quality of life.\"\"             These funds were included as part of the FY 2008 Omnibus Appropriations bill.  Sen. Lautenberg is a member of the Senate Appropriations Committee and helped craft these provisions.             Some of the projects funded in the measure are: ·         $80,606 to ASPIRA, Inc of New Jersey for an Educational and Leadership Development program;·         $478,721 to Atlantic Health System for an electronic disease tracking system;·         $238,869 to Brookdale Community College for the Asbury Park Enrichment and Student Success Center;·         $325,373 to Camden County's Mobile Health Van;·          $478,721 to Children's Specialized Hospital's new Pediatric Center of Excellence in New Brunswick;·         $191,685 to Christian Health Care of New Jersey for renovations to the Heritage Manor Nursing Home;·         $608,477 to East Orange General Hospital for Emergency Department renovation;·         $167,110 to Englewood Hospital for Emergency Department renovation;·         $608,477 to Essex County for a mental health services initiative;·         $363,710 to Generations, Inc for the construction of a medical center in Camden County;·         $167,110 to Holy Name Hospital for facility renovation;·          $287,036 to Jewish Federation of Central New Jersey for a Naturally Occurring Retirement Community Demonstration project;·         $287,036 to Jewish Federation of Greater Monmouth County for a Naturally Occurring Retirement Community Demonstration project;·         $181,855 to Jewish Renaissance Medical Center for facility construction, renovation and equipment;·         $363,710 to Kennedy Health System in Voorhees for the Advanced Cancer Prevention and Treatment Initiative;·         $718,573 to Lourdes Health System for Intensive Care Nursery equipment and facility renovation;·         $238,869 to Morris Museum for an Interactive Educational Workshop Center;·         $277,206 to Newark Beth Israel Medical Center for an Emergency Department Expansion Initiative;·         $143,518 to Newton Memorial Hospital for purchase of equipment;·         $263,444 to Palisades Medical Center for facility renovation and equipment;·         $613,392 to Rutgers University School of Law in Camden for student scholarships, internships and public interest programming;·         $238,869 to St. Francis Medical Center for the expansion of Urgent and Specialty Clinic Services·         $306,696 to St. Joseph's Regional Medical Center for health information technology;·         $143,518 to St. Michael's Medical Center for heart disease screening;·         $502,313 for Seton Hall University's Science and Technology Center;·         $181,855 to Shiloh Economic and Entrepreneurial Lifelong Development Corp for an after-school program;·         $478,721 to Somerset Medical Center for electronic health record upgrades;·         $143,518 to Trinitas Health Foundation for construction, equipment and renovation;·         $243,784 to Union County for the Academy of Allied Health Sciences;·         $162,195 to UJA Federation of Northern NJ in River Edge for a Naturally Occurring Retirement Community Demonstration project;·         $478,721 to UJC MetroWest for a Naturally Occurring Retirement Community Demonstration project;·         $191,685 to Virtua Health in Mount Holly for cancer treatment equipment; and·         $200,532 to William Paterson University for the Center for the Study of Critical Languages.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=36f0804b-092a-461c-a55a-a8e90a2897a0,\"Lautenberg, Menendez: More Than $176 Million in New Jersey Flood Prevention, Beach Replenishment and Other Critical Infrastructure Projects Signed into Law, Heads to NJ\n                    \n                            Funds Included in FY 2008 Omnibus Bill Signed by President\n                    \n                      December 27, 2007\n                     WASHINGTON, D.C. - Sen. Frank R. Lautenberg (D-NJ), a member of the Senate Appropriations Committee, today announced with Sen. Robert Menendez (D-NJ) that a bill that included millions of dollars in federal funding they secured for flood prevention, beach replenishment and other critical infrastructure projects to be conducted by the U.S. Army Corps of Engineers was signed by the President and will be delivered to New Jersey.The Appropriations legislation, which Sen. Lautenberg helped craft in committee, was approved by the House and the Senate and signed by the President yesterday.  \"\"These funds will go a long way towards preventing flooding, saving lives and protecting New Jersey's homes and businesses from severe storms.  I was proud to take part in crafting this legislation,\"\" said Sen. Lautenberg.  \"\"The rampant flooding of this past April were another stark reminder of just how susceptible homes in our state are to devastating floods,\"\" said Sen. Menendez. \"\"At the same time, the Jersey Shore faces the ominous threat of a rising sea level and catastrophic storms that climate change can spawn. New Jersey needs to be prepared, and that's why these funds are so important. With these funds, our communities can help keep the elements at bay.\"\"  These funds were included as part of the FY 2008 Omnibus Appropriations bill.  Sen. Lautenberg is a member of the Senate Appropriations Committee and helped craft these provisions. Some of the projects funded in the measure are: $85,191,768 for NJ/NY Harbor Deepening; $10,001,376 for the Green Brook Sub-basin flood control project; $2,808,336 for beach replenishment in Ocean City; $4,920,000 for beach replenishment on Long Beach Island; $4,779,288 for Avalon and North Wildwood beach replenishment; $532,344 for Passaic River Flood Warning; $2,952,000 for stabilization and ecosystem restoration at Joseph G. Minish Park in Newark; $1,345,128 for Passaic River Preservation of Natural Flood Storage Areas; $1,417,944 for Barnegat Inlet maintenance dredging; $1,315,608 for Sandy Hook to Barnegat beach replenishment in Southern Long Branch portion; $2,913,624 for dredging in the Raritan River to maintain navigability; $3,387,912 for Newark Bay Passaic & Hackensack Rivers for dredging; $876,744 for Brigantine Inlet to Great Egg Harbor Inlet (Absecon); $74,784 for Brigantine Inlet to Great Egg Harbor Inlet (Brigantine Island); $4,785,192 for Lower Cape May Meadows ecosystem restoration project monitoring; $5,684,568 for NJ/NY Harbor drift removal; $825,576 for NJ/NY Harbor Prevention of Obstructive Deposits; $245,016 for Cape May Inlet to Lower Township; $414,264 for Cold Spring Inlet; $4,920 for Delaware River at Camden; $246,984 for a Comprehensive Study of the Delaware River Basin; $18,507,072 for Delaware River-Philadelphia to the Sea maintenance; $1,493,712 for Delaware River-Trenton to Philadelphia maintenance; $371,952 for Hackensack Meadowlands; $251,904 for Hereford to Cape May for shore protection; $496,920 for Hudson Raritan Estuary Hackensack Meadowlands; $492,000 for Hudson Raritan Estuary Lower Passaic River for a deepening project; $177,120 for Lower Saddle River for flood control; $184,992 for Manasquan River; $988,920 for NJ Intracostal Waterway; $107,256 for NJ Shore Alternative Long Term Nourishment; $98,400 for Passaic River, Harrison; $98,400 for Passaic River Main Stem; $308,976 for Peckman River flood control; $98,400 for Rahway River Basin; $343,416 for Ramapo & Mahwah Rivers; $98,400 for Raritan & Sandy Hook Bays -- Highlands beach renourishment; $98,400 for Raritan & Sandy Hook Bays -- Keyport;   $98,400 for Raritan & Sandy Hook Bays -- Leonardo; $43,296 for Raritan & Sandy Hook Bays -- Union Beach; $109,224 for Raritan Bay & Sandy Hook Bay; $876,744 for Raritan Bay & Sandy Hook Bay Port Monmouth; $23,616 for Salem River; $162,360 for Shoal Harbor and Compton Creek; $138,744 for Shrewsbury River; $98,400 for Shrewsbury River Main Channel; $161,376 for South River; and $98,400 for Stony Brook Millstone River Basin.                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3ed00411-da36-4fb7-8fab-a71dcecda290,\"Lautenberg, Menendez: More Than $85 Million for NJ Transportation, Economic Development Signed into Law, Heads to NJ\n                    \n                            Funds Included in FY 2008 Omnibus Bill Signed by President\n                    \n                      December 27, 2007\n                      WASHINGTON, D.C. - Sen. Frank R. Lautenberg (D-NJ), a member of the Senate Appropriations Committee, today announced with Sen. Robert Menendez (D-NJ) that a bill including more than $85.6 million in federal funding they secured for transportation and economic development was signed by the President and will be delivered to New Jersey.            The Appropriations legislation, which Sen. Lautenberg helped craft in committee, was approved by the House and Senate and signed by the President this week.            \"\"We have seen time and again that when we make public transportation a viable option for commuters, people use it,\"\" said Lautenberg.  \"\"This funding would make vital improvements to roads, sidewalks, bridges and highways, and help bring our nation's rail and transportation systems into the 21st century.\"\"            \"\"It is no secret that when we provide safe and efficient transportation options, the public will make good use of it,\"\" said Menendez.  \"\"By investing in our state's public transportation infrastructure, we can reduce the number of cars on the road and in turn reduce greenhouse gas emissions, ease traffic congestion, and provide resources for our communities to spur economic growth.\"\"            A large portion of the funding will help finance the Hudson-Bergen Light Rail system and a new rail tunnel under the Hudson River connecting New Jersey and New York.  Funds will also be used to improve roads, highways and many other rail and transit lines across the state, purchasing new transit vehicles and economic development and revitalization projects.            Several of the transportation projects funded in the measure are:$54,089,135 for the Hudson-Bergen Light Rail; $14,700,000 for construction of the new Trans-Hudson Midtown Tunnel; $490,000 for restoration of the Northern Branch Rail line; $490,000 for improvements at transportation facilities in Bergen and Passaic Counties; $784,000 for improvements at transportation facilities in Northern New Jersey; $294,000 for a pedestrian bridge at a Hudson County transportation facility; $1,313,200 for improvements at Newark Penn Station; $392,000 for a bus shuttle project for seniors in Irvington; $196,000 for a bus shuttle project for seniors and handicapped in West Orange; $245,000 for roadway improvements in South Orange and Maplewood; $980,000 for improvements to the Bridge Street, Clay Street and Jackson Street Bridges; $3,920,000 for the Route 22 Sustainable Corridor Plan in Bridgewater and Somerville; $245,000 for the downtown streetscape project in New Providence; $735,000 for conversion of Route 29 Blvd. in Trenton; $490,000 for the transportation facility in South Amboy; $980,000 for restoration of the Monmouth-Ocean-Middlesex County Passenger Rail Line; $490,000 for the Morris County Park-and-Ride facility; $1,313,200 for a new transportation facility in Lakewood; $490,000 for expansions at Atlantic City Airport; and $413,658 for repaving Clinton Street in Camden.             Economic development projects funded in the measure include:·         $196,000 for Cooper University Hospital's outpatient facilities and housing redevelopment in Camden;·         $196,000 for upgrades at the theater in Collingswood;·         $196,000 for restoration of Bridgeton High School Stadium;·          $656,600 for pedestrian walkway improvements and downtown revitalization in Newark;·         $196,000 for the Berg Hat factory Commercial Arts Center in Orange;·         $196,000 for renovations and construction at the Goodwill Rescue Mission in Newark;·         $262,640 for redevelopment of the Koppers Coke site in Jersey City;·         $196,000 for construction of trails in the Dismal Swamp in Edison;·         $147,000 for sidewalk improvements on College Ave. in New Brunswick;·         $196,000 for a children's advocacy center in Freehold; and·         $196,000 for restoration of Hinchliffe Stadium in Paterson.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ae28970c-6eda-45a4-a0c5-e270d0688741,\"NY, NJ, PA Senators Announce Their Legislation To Reduce Flight Delays In  NY/NJ Airspace Region Signed Into Law\n                    \n                            Requires Bush Administration to Develop Plan to Ease Congestion in NY/NJ/Philly Airspace\n                    \n                      December 27, 2007\n                     Washington - New Jersey, New York and Pennsylvania's U.S. Senators today announced that the Fiscal Year 2008 Omnibus Appropriations bill signed into law by the President Wednesday includes two measures they authored to reduce flight delays and ease congestion in the New York/New Jersey airspace. One amendment requires the federal government to provide a plan to Congress to reduce flight delays in the New York/New Jersey/Pennsylvania Region, the nation's most densely congested airspace. The other amendment requires the investigative arm of Congress, the Government Accountability Office, to investigate the Administration's Airspace Redesign Plan, as well as the effectiveness of a variety of approaches used nationwide to reduce flight delays.\nThe Senators called for action after record airport delays this summer and amid major concerns that the Federal Aviation Administration's announced Airspace Redesign for the New York/New Jersey/Philadelphia area will increase aircraft noise while providing only minimal delay reductions.\n\n\"\"Our air transportation system continues to be plagued by chronic delays, excessive noise, and dangerously overcrowded skies but the Administration's response would increase costs, congestion, and frustration for travelers. I am proud that the FAA will now be required to provide a real plan to deal with these problems,\"\" said Senator Clinton.\n\n\n\"\"Even with the FAA thankfully becoming much more active on this issue recently, we need the type of detailed, well-researched information these reports will produce regarding the best ways to cut down the excruciating delays,\"\" said Senator Menendez. \"\"Until delays have actually been minimized, we cannot stop searching for answers. I will also be eager to see the results of an independent review of the airspace redesign, which promises to turn up the noise level for New Jersey residents but might only have a marginal effect on delays.\"\"\n\n\n\"\"First responders, emergency workers and volunteers showed true courage during the recovery effort after the 9/11 terrorist attacks. Now, many of these brave men and women are suffering serious illnesses from the toxins at Ground Zero. It's time we give these heroes the treatment they deserve,\"\" said Senator Lautenberg.\n\n\n\"\"These amendments are an important step toward forcing the administration to take a long, hard look at the chaos in our skies, and to produce real recommendations to ensure that our congested aviation system receives some real relief,\"\" said Senator Schumer.\n\"\"Chronic flight delays in this region have serious economic and social consequences, and I am pleased that this provision aimed at addressing congestion has been adopted,\"\" Senator Specter said. \"\"I look forward to reviewing the Department of Transportation's findings and intentions to tackle this problem.\"\"\n\"\"I am pleased that this legislation will force the Bush Administration to take a hard look at regional congestion problems. Anyone who has visited the Philadelphia International Airport knows that delays are a fact of life for air travelers. It doesn't need to be this way, and I will continue to support efforts to reduce flight delays in a responsible and reasonable way,\"\" said Senator Casey.\n\nDetails of the FAA Plan amendment\nSpecifically, the amendment requires the Secretary of Transportation to submit to Congress a report detailing how the Federal Aviation Administration plans to alleviate air congestion and flight delays in the New York/New Jersey/Philadelphia Airspace by August 31, 2008. The report would have to be submitted no later than 120 days after the enactment of the legislation.\nDetails of the GAO amendment\nThe measure directs the GAO to conduct a study of the efficacy of various approaches used in the past by the FAA and the DOT to address delays at our nation's airports. Within 120 days of enactment, the GAO is to report which strategies have worked best to comprehensively reduce flight delays at an airport within 6 months or less. Specifically, the GAO is instructed to examine efforts by the FAA to induce voluntary schedule reductions at Chicago's O'Hare International Airport, the FAA's mandatory flight reduction operations at LaGuardia International Airport and Reagan National Airport, the New York/New Jersey/Philadelphia Metropolitan Area Airspace Redesign and any other significant efforts by the FAA or the DOT to reduce flight delays at a major U.S. international airport.\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d089100a-47ae-491c-9027-d52fd17c6231,\"AS PART OF LANDMARK ENERGY BILL, PROGRAM TO MAKE CITIES MORE ENERGY EFFICIENT AUTHORED BY SEN. MENENDEZ BECOMES LAW\n                    \n                            Block grants part of legislation signed into law this week, Conference of Mayors President Palmer applauds program\n                    \n                      December 21, 2007\n                     WASHINGTON - Included in the landmark Energy Bill that was signed into law this week is a program to make America's cities more energy efficient. Senator Bob Menendez's (D-NJ) Energy Efficiency and Conservation Block Grants program for cities was included in the bill, and it will establish a grant program that will provide cities with $10 billion in grants for projects that will foster more efficient use of energy and lower greenhouse gas emissions. \"\"Cities have taken the lead in combating climate change and now Congress has rewarded that leadership with a $10 billion grant program,\"\" said Senator Menendez. \"\"With oil and natural gas prices sky high, with sea levels rising and weather becoming more extreme, this program is a key part of solving our energy security, energy affordability, and environmental challenges.\"\" \"\"On behalf of the nation's mayors, I want to thank my Senator Bob Menendez for championing our Energy and Efficiency Block Grant for cities that was included as part of the energy legislation signed by the President today.  Because of the leadership of Senator Menendez, city leaders will now be able to accelerate their local efforts to make our cities, which is where so many millions of Americans reside today, more energy independent and climate friendly,\"\" said U.S. Conference of Mayors President Trenton Mayor Douglas H. Palmer.                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4fc63e6e-a3b7-4fe8-875d-c5e601707587,\"In Response to Drug Resistant Staph-Infection Crisis, Senator Menendez Introduces Package of Legislation\n                    \n                      December 21, 2007\n                     Washington, D.C. - As a devastating drug-resistant staph infection known as MRSA affects patients in hospitals, first responders such as police, firefighters and emergency medical personnel, schoolchildren and other individuals in public places across the country, U.S. Senator Robert Menendez (D-NJ) has introduced a package of legislation to combat the crisis. The Protecting Workers from Infectious Agents Act would create a new Occupational, Safety and Health Administration (OSHA) standard to protect employees who work with infectious agents or are exposed to drug resistant infections, such as MRSA. The MRSA Infection Prevention and Patient Protection Act would create a MRSA prevention program for hospitals and would require hospitals to screen high-risk patients for the infection.\nThe Centers for Disease Control and Prevention recently calculated that 19,000 Americans are dying of staph infections each year and that MRSA is killing more people annually than AIDS, emphysema or homicide.\n\n\"\"Anyone who is admitted to a hospital, anyone who works in health care or is a first responder should have the peace of mind that comes with knowing their federal government is doing all it can to battle drug-resistant staph infections,\"\" said Senator Menendez. \"\"MRSA is devastating, and we must do everything we can at all levels of government to become educated about and combat this health crisis. These proposals are an important first step, and I will work with my colleagues to make them law.\"\"\n\nProtecting Workers from Infections Agents Act:\nThe bill would create a new OSHA standard to protect health care workers and first responders, including police, firefighters, emergency medical personnel, and other workers at risk of workplace exposure to infections agents and drug resistant infections, such as MRSA. This bill is co-sponsored by Senators Richard Durbin (D-IL) and Ted Kennedy (D-MA).\nMRSA Infection Prevention and Patient Protection Act:\nThe bill would create a MRSA prevention program for hospitals and would require hospitals to screen high-risk patients for the infection and:\nScreen all Patients Entering Intensive Care Unit Prevent the Spread of Infection Report Infection Rates Report Infection Rates from Non-Hospital Medicare Providers \nThe program would also encourage best hospital practices, such as hand hygiene and contact precautions in order to prevent the spread of MRSA. This bill is co-sponsored by Senator Durbin.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5d9d197f-7683-48be-8ee9-7f30169e8da0,\"SEN. MENENDEZ STATEMENT ON EPA DENIAL OF CALIFORNIA AUTO EMISSIONS\n                    \n                            New Jersey planned on implementing similar standards\n                    \n                      December 20, 2007\n                     WASHINGTON - Today, the Environmental Protection Agency denied the state a California a waiver to impose its own, more stringent auto emissions standards aimed at cutting down on the release of greenhouse gases that contribute to climate change. The ruling effectively negates the efforts of other states, including New Jersey, to implement similar standards.Senator Bob Menendez (D-NJ) a member of the Energy and Natural Resources Committee, released the following statement:\"\"Our planet is drowning and this administration simply refuses to let anyone do very much about it. In fact, this is completes a dubious trifecta for the administration and its Republican party on obstructing progress against climate change. Internationally they resisted more progressive emissions reductions at the conference in Bali, domestically they blocked an attempt at taking taxpayer money from the oil companies to pay for renewable energy and now on the state level they are killing a serious effort to clean our air. Under this administration, you might as well call the EPA the ‘Environmental Pollution Agency'.\"\"                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2033f759-4401-459e-853c-e92368a943ee,\"CONGRESS FUNDS MENENDEZ-SPONSORED PROGRAM TO HELP PATIENTS NAVIGATE COMPLEX HEALTH CARE SYSTEM\n                    \n                            The program will be funded at more than $2 million in the final Fiscal Year 2008 Consolidated Appropriations Bill\n                    \n                      December 20, 2007\n                     WASHINGTON, D.C. - U.S. Senator Bob Menendez (D-NJ) has successfully secured initial funding for a program he established to guide patients through the health care system - the first national program of its kind. The Patient Navigator, Outreach and Chronic Disease Prevention Program, which was signed into law in 2005, helps patients, including those in underserved communities, to overcome the barriers they face in getting early screening and appropriate follow-up treatment. Sen. Menendez was able to secure $2.9 million in funding for this competitive grant program in the Fiscal Year 2008 Consolidated Appropriations bill that passed the Congress this week. Now, the bill will go to President Bush. \"\"I am very proud of this program because it involves reaching out, on a local level, to people in our communities, getting them preventive care, helping them navigate the complicated maze of our health care system and ultimately making sure they are healthy, \"\" said Menendez. \"\"This is a new approach to delivering health care - one that is prevention-based instead of disease-based. We get people in to see a provider before they're sick, so that problems can be detected early, treatment is cheaper and outcomes are better for patients.\"\" Success of program:The Patient Navigator program is based on successful models, including one developed by Dr. Harold Freeman in Harlem and one by Dr. Elmer Huerta at the Washington Hospital Center in DC. In 2003, Sen. Menendez, who then served in the House, secured $100,000 for a Patient Navigator Pilot program at New Jersey's Jersey City Family Health Center. Within the first year, the program facilitated the screenings of over 842 patients for cancer, and 140 with abnormal findings were enrolled in the Patient Navigator Program for follow-up.    Background on program:Patient navigators are individuals who know the local community, reach out to get people in to see a health care provider, and help patients navigate through the complicated health care system. They help with referrals and follow-up treatment and direct patients to programs and clinical trials that are available to help them get the treatment and care they need to fight cancer and other chronic diseases.The patient navigator guides patients to health coverage that they may be eligible to receive. They also conduct ongoing outreach to health disparity communities to encourage people to get screenings and early detection services.                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4d209dec-a460-4bdb-b923-80fb89f0bc40,\"SEN. MENENDEZ APPLAUDS TERMS OF SETTLEMENT IN MAJOR ELECTRICTY WHOLESALER DISPUTE\n                    \n                            NJ Board of Public Utilities joins Menendez in hopes for strong Market Monitor to ensure a competitive wholesale electricity market in New Jersey and 12 other states\n                    \n                      December 19, 2007\n                     WASHINGTON - Today PJM, the non-profit in charge of regulating wholesale electricity markets in those states, and its Market Monitor announced a settlement in a dispute that began when the Market Monitor alleged that the company was obstructing his work. Senator Bob Menendez (D-NJ), who has been actively engaged in pressing the federal government to ensure a sensible resolution, said that the settlement meets his standards for a strong Market Monitor with the responsibility of ensuring a competitive wholesale electricity market in New Jersey,12 other states and the District of Columbia.\"\"This settlement ensures that New Jersey rate payers are treated fairly. The Market Monitor acts as the cop on the beat making sure utilities and generators are not charging us too much,\"\" said Senator Menendez. \"\"I had urged PJM and FERC to give the Market Monitor timely and unfettered access to information, that the Market Monitor have the staff and resources he or she needs, and, in order to preserve his or her independence, have the ability to report to a board outside of the PJM hierarchy, a board which represents all stakeholders. These requirements have been met, and therefore this is a victory for consumers.\"\"The New Jersey Board of Public Utilities joined Senator Menendez in praising the settlement.\"\"Senator Menendez's close oversight of this issue has been truly helpful in bringing us to today's result,\"\" said Jeanne M. Fox, President of the New Jersey Board of Public Utilities.  \"\"Over the past several months, he has raised tough questions on this and other FERC-related issues.\"\"\"\"The settlement filed at FERC today in the market monitoring case will help efforts to have truly independent monitoring of the wholesale electricity markets in the PJM region,\"\" said Frederick F. Butler, Commissioner, New Jersey Board of Public Utilities and a member of the negotiating team.  \"\"Protecting the independence of PJM's own market monitor is essential if there is to be confidence in the wholesale markets; in addition, the settlement includes important provisions that make it possible for state commissions to obtain confidential data that can be used to verify the results of the market monitoring unit.\"\"Senator Menendez has taken a number of actions to ensure that FERC handles the dispute appropriately, including requesting full hearings (http://menendez.senate.gov/newsroom/record.cfm?id=278477).                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3a3d007f-a0c8-4b9e-a7a1-90896c518aab,\"Floor Statement as Prepared for Delivery: THE IRAQ WAR: What It's Costing Us Here at Home\n                    \n                      December 19, 2007\n                     M. President,As we celebrate this holiday season with our families, as we gather with those we love, and give thanks for our tremendous blessings, we remember how incalculable the losses have been to the families of the 3,888 soldiers who were killed in Iraq. Their losses cannot be tallied, not in the number of Christmas nights spent without the one they loved, not in the number of days since their wives, husbands, parents and children left home forever.We cannot calculate the strain on the 28,661 wounded soldiers and their families, many of whom will be spending this precious time in a military hospital, coping with their blindness, living with only one leg or arm, sleeping through nightmares of the battlefield instead of the beautiful dreams they used to know this time of year.As we hold them in our hearts, we watch our money slip away from us in Iraq. That is a casualty we can, and must, count.There is a brutal holiday irony that is no cause for festive spirit here in Washington, D.C. The irony is this: President Bush and his Republican allies in Congress held hostage some key investments we need to make right here in our country, using so-called \"\"fiscal responsibility\"\" as an excuse, in order to extract a promise of more money for the War in Iraq.They're asking for more than $150 billion dollars more for Iraq next year, but at one point they threatened to starve the entire government of funding over a difference in the federal budget that amounts to less than one-tenth of what the President wants to spend on the war next year. This holiday season, we wondered if President Bush wanted to be Scrooge to America and Santa Claus to Iraq.Over the last several months I have spoken many times about what the American presence in Iraq is costing us here at home.The true costs of the $455 billion we've spent on that war and the $10 billion per month we continue to spend might be never be clearer than they are now, at a time when Congress is debating the budget for almost the entire federal government. While we're here crunching numbers, American families are feeling the crunch of a few numbers themselves: the interest rate on their mortgage that may be about to jump up beyond what they can afford, the number on the gas pump when they fill their tank, the price of heating oil and natural gas, higher grocery bills, fare hikes or threats of hikes on public transportation, and the skyrocketing costs of providing medical care for themselves and their children. The President's consistent threats to veto funding for federal government operations forced across-the-board cuts to the most important programs and services that so many Americans are counting on.  {CHART 2} This winter, as snow and ice fall on roads across America, people are waiting for better ways to travel. They are waiting for expanded, affordable public transportation, progress on efficiency and new sources of fuel and power. They are waiting for our nation to fill our energy portfolio with something other than lumps of coal. The bill considered by Congress considered has before itthis week would inject another $1.7 billion dollars in the development of renewable sources of energy like solar, wind and geothermal.It's an important step, but it could have been much greater a small one. Republicans have consistently objected to bigger steps. They've said weaning us off fossil fuels is too expensive. Meanwhile, they have insisted that oil companies need more multi-billion-dollar tax cuts. And meanwhile, we spend enough money to pay for that entire renewable energy package in Iraq in just 5 days.{CHART 3} Cancer patients going through the dark winter of their illness are waiting on life-saving treatments that only intensive scientific research can discover. Congress has a bill before it to authorize funding for that research. President Bush vetoed the funding once and his allies in Congress have whittled it down as much as they could. The cost of the funding increase for that research: $329 million, or less than one day in Iraq. {CHART 4} This winter, while President Bush asks for billions more for security for the streets of Baghdad, he says we can't afford to bring security to the streets of our hometowns.The Senate proposed spending $55 million in part to hire police officers specially trained to stop child sexual predators. The President didn't just force that funding to be cut in half, he sliced it into less than a third of what it was. We could have made up the difference and fully funded the program to stop child sexual predators with what it costs to be in Iraq for about two and a half hours.There are too many provisions in this big funding bill that are absolutely essential—too many to name here.The victims of the cuts that the President and his Republican allies have called for— the millions of Americans waiting for clean power that won't be produced, the cancer patients who are waiting for research that won't be allowed to happen, the communities trying to stop child sexual predators who are waiting for police officers who won't be hired—these people are also too many to name. In that sense, even beyond more than in terms of the lives lost overseas, the cost of the War in Iraq has been incalculable.If there's one thing we all must acknowledge right now, it's this: the war in Iraq is not free. No one should be pretending this war is free. The Bush Administration likes to parrot the line that \"\"we're fighting them over there so we don't have to fight them here.\"\" But Americans have figured out that what they really mean is, \"\"We're spending all our money over there so we don't have it to spend here.\"\"Above all, this is as a question of values. Do we value our children, do we value our schools, do we value our soldiers and veterans, do we value our health—or will we neglect those priorities?This bill sets out, for our values, a clear and serious test: we cannot allow the budget to have a heart as cold as the ice on our front steps, we cannot let our financial stability melt away, and we cannot continue to let more of our money burn up in a war that has taken so much from so many for so long.M. President,At year's end, we speak of renewal, we turn to our families, we witness a rebirth of hope. This season is about the best in us. This season, decisions we make are going to test how we operate as a government, and test what we stand for as a nation. There is no better time than now to let the best in American values guide our way: generosity, equal opportunity, and cooperation with one another. We have the power to end unnecessary suffering and waste, and the chance to approach these tasks with the fresh sense of urgency they require.As we rest and dream in the company of those we love, let us remember that December is the darkest time of the year, but it is also the turning point, when the sun begins to shine more and more every day.Together we offer our wish, our hope, our prayer, that the dreams that have carried us so far, of peace on Earth, goodwill toward all, may yet still come true.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6d9bbfa5-5fc0-4595-9754-913bf0709c31,\"NEW JERSEY SENATORS ANNOUNCE SENATE PASSAGE OF MORE THAN $7.2 MILLION FOR N.J. WATER AND LAND CONSERVATION PROJECTS\n                    \n                            Funds in FY2008 Omnibus Spending Package; Bill Now Heads to House\n                    \n                      December 19, 2007\n                                 WASHINGTON, D.C. - New Jersey Senators Robert Menendez and Frank R. Lautenberg today announced that the Senate approved legislation to give New Jersey more than $7 million for water and land conservation programs.            The Appropriations legislation passed the House on Monday but will have to go back to that body before it is sent to the President.  It is expected to pass the House and go to President Bush for his signature by the end of the week.           \"\"These funds will help ensure the future of New Jersey's natural resources,\"\" said Sen. Menendez.  \"\"They will help programs across our great state to make sure our families have access to clean water, to protect our wild lands, and to keep New Jersey clean and beautiful.\"\"\"\"By preserving our natural resources and protecting our water supply, these funds would help keep New Jersey communities safe, clean and healthy,\"\" said Sen. Lautenberg.  \"\"The funding included in this bill is vital to the environmental and economic health of the Garden State.\"\"            These funds were included as part of the FY 2008 Omnibus Appropriations bill which passed the Senate.             The organizations receiving funding in the Department of the Interior portion of the Omnibus spending package are:·        $393,760 for the Bayonne Municipal Utilities Authority in Bayonne for upgrades to the wastewater/stormwater sewer system;·        $295,320 to Kearny Township for a new pumping station;·        $492,2000 to the Passaic Valley Sewerage Commission for wastewater treatment plant upgrades;·        $196,880 to Pennsauken Township for a water management study;·        $2,461,000 to the New Jersey Highlands Coalition for the Sparta Mountain South Forest Legacy Project in Sussex County;·        $1,181,280 for land conservation in the Great Swamp National Wildlife Refuge;·        $1,722,700 (shared by New Jersey, New York, Pennsylvania and Connecticut) for land conservation as part of the Highlands Conservation Act; and·        $492,200 to the New Jersey Audubon Society for land acquisition in the Cape May National Wildlife Refuge.                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=75026d4d-6a50-4c70-a1d7-66530d6b100c,\"FLIGHT DELAY PLAN: SEN. MENENDEZ REACTS\n                    \n                            Menendez has pressured FAA about need for NJ/NY regional approach to addressing delays\n                    \n                      December 19, 2007\n                     WASHINGTON - Today, the Department of Transportation announced several actions meant to reduce air traffic congestion and flight delays in the New Jersey/New York region, including an intention to cap flights at Newark Liberty Airport, a cap on flights at New York's JFK Airport beginning in March, an auctioning off of new capacity at the region's airports and a beginning of the implementation of the regional airspace redesign.Senator Bob Menendez (D-NJ), who has pressured the Department and the Federal Aviation Administration to take a regional approach to addressing delays and who is scheduled to meet with FAA acting Administrator Robert Sturgell at 5:00pm today, said that he is encouraged by the direction of this announcement but needs to see the follow through. He also called for a moratorium on the airspace redesign until a Government Accountability Office report requested by Rep. Rob Andrews (D-NJ) is released.\"\"I am cautiously encouraged that the Department of Transportation and FAA finally seem more committed to the bold ideas and regional approach that I have been calling for,\"\" said Sen. Menendez. \"\"Of course, the final verdict will be determined by their follow through. I will be holding them to their word about crafting an agreement on caps at Newark, and I will want to ensure that those caps are set at an appropriate level.\"\"If it is followed through, this announcement would seem to contain the type of bold proposals to be implemented on a regional scale that it will take to put a significant dent in the exasperating delays and safety issues air travelers in our region are dealing with. All along, I have been pressing the FAA to approach this issue by taking the serious problems at Newark into account, and it seems that they are finally doing so. I will certainly be keeping a close eye on the implementation of these proposals to ensure they do what they say. I will also ask acting Administrator Sturgell this afternoon for more details about his agency's plans to work out a cap for Newark.\"\"One part of this announcement that I would like to see scrapped or at least put on hold is the airspace redesign for our region. I urge the FAA to put a moratorium on the redesign at least until the GAO issues its report. The redesign is a plan that will likely infuriate residents living along the new flight paths while having a minimal effect on delays. Rushing to implement the redesign while a government report is pending and while a number of communities are contesting it makes little sense.\"\"Last week, upon reports that the DOT was preparing to announce flight caps only at JFK, Senator Menendez, along with Senator Frank Lautenberg (D-NJ), urged the Department and the FAA to take a regional approach (http://menendez.senate.gov/newsroom/record.cfm?id=288922&). It was not the first time Senator Menendez had urged such an approach (http://menendez.senate.gov/newsroom/record.cfm?id=286171). In August, even before flight caps meetings were convened, Senator Menendez urged the DOT and the FAA to consider a range of bold ideas to address delays, including caps (http://menendez.senate.gov/newsroom/record.cfm?id=281124).                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=16b7cf5a-9695-45d1-a0a5-0b94bb9bee2a,\"NEW JERSEY SENATORS ANNOUNCE SENATE PASSAGE OF MORE THAN $85 MILLION FOR N.J. TRANSPORTATION, ECONOMIC DEVELOPMENT\n                    \n                            Funds In Omnibus Appropriations Bill; Heads To House, Then President\n                    \n                      December 19, 2007\n                     WASHINGTON, D.C. - New Jersey Senators Robert Menendez and Frank R. Lautenberg today announced that the Senate approved legislation to give New Jersey more than $85.6 million in federal funding for transportation and economic development.            The Appropriations legislation passed the House on Monday but will have to go back to that body before it is sent to the President.  It is expected to pass the House and go to President Bush by the end of the week.\"\"It is no secret that when we provide safe and efficient transportation options, the public will make good use of it,\"\" said Menendez. \"\"By investing in our state's public transportation infrastructure, we can reduce the number of cars on the road and in turn reduce greenhouse gas emissions, ease traffic congestion, and provide resources for our communities to spur economic growth.\"\"            \"\"We have seen time and again that when we make public transportation a viable option for commuters, people use it,\"\" said Lautenberg. \"\"This funding would make vital improvements to roads, sidewalks, bridges and highways, and help bring our nation's rail and transportation systems into the 21st century.\"\"            A large portion of the funding would help finance the Hudson-Bergen Light Rail system and a new rail tunnel under the Hudson River connecting New Jersey and New York.  Funds would also be used to improve roads, highways and many other rail and transit lines across the state, purchasing new transit vehicles and economic development and revitalization projects.            Several of the transportation projects funded under this bill include: ·        $54,089,135 for the Hudson-Bergen Light Rail;·        $14,700,000 for construction of the new Trans-Hudson Midtown Tunnel;·        $490,000 for restoration of the Northern Branch Rail line;·        $490,000 for improvements at transportation facilities in Bergen and Passaic Counties;·        $784,000 for improvements at transportation facilities in Northern New Jersey;·        $294,000 for a pedestrian bridge at a Hudson County transportation facility;·        $1,313,200 for improvements at Newark Penn Station;·        $392,000 for a bus shuttle project for seniors in Irvington;·        $196,000 for a bus shuttle project for seniors and handicapped in West Orange;·        $245,000 for roadway improvements in South Orange and Maplewood;·        $980,000 for improvements to the Bridge Street, Clay Street and Jackson Street Bridges;·        $3,920,000 for the Route 22 Sustainable Corridor Plan in Bridgewater and Somerville;·        $245,000 for the downtown streetscape project in New Providence;·        $735,000 for conversion of Route 29 Blvd. in Trenton;·        $490,000 for the transportation facility in South Amboy;·        $980,000 for restoration of the Monmouth-Ocean-Middlesex County Passenger Rail Line;·        $490,000 for the Morris County Park-and-Ride facility;·        $1,313,200 for a new transportation facility in Lakewood;·        $490,000 for expansions at Atlantic City Airport; and·        $413,658 for repaving Clinton Street in Camden.             Economic development projects funded under the bill include:·        $196,000 for Cooper University Hospital's outpatient facilities and housing redevelopment in Camden;·        $196,000 for upgrades at the theater in Collingswood;·        $196,000 for restoration of Bridgeton High School Stadium;·        $656,600 for pedestrian walkway improvements and downtown revitalization in Newark;·        $196,000 for the Berg Hat factory Commercial Arts Center in Orange;·        $196,000 for renovations and construction at the Goodwill Rescue Mission in Newark;·        $262,640 for redevelopment of the Koppers Coke site in Jersey City;·        $196,000 for construction of trails in the Dismal Swamp in Edison;·        $147,000 for sidewalk improvements on College Ave. in New Brunswick;·        $196,000 for a children's advocacy center in Freehold; and·        $196,000 for restoration of Hinchliffe Stadium in Paterson.                                                         # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=aee3779b-35f5-408e-89bc-3ea840c6888e,\"NEW JERSEY SENATORS ANNOUNCE SENATE PASSAGE OF MORE THAN $10 MILLION FOR N.J. HOSPITALS, HEALTH & EDUCATION PROGRAMS\n                    \n                            Funds in Omnibus Appropriations Bills; Heads To House, Then President\n                    \n                      December 19, 2007\n                                   WASHINGTON, D.C. - Senators Robert Menendez and Frank R. Lautenberg, a member of the Senate Appropriations Committee, today announced that the Senate approved legislation to give New Jersey more than $10 million in federal funding for hospitals, as well as health and education programs, in the FY 2008 Omnibus Appropriations bill.            The Appropriations legislation passed the House on Monday but will have to go back to that body before it is sent to the President.  It is expected to pass the House and go to President Bush for his signature by the end of the week.            \"\"For our state, we are bringing assistance to education programs that prepare our youth to succeed and cutting-edge technology to improve our health care centers,\"\" said Menendez.  \"\"We are making an investment in New Jersey families and their quality of life.\"\"\"\"This money would support vital services for residents across our state.  Whether it's educating our children, responding to health emergencies or increasing access to cutting-edge medical treatments, these funds play a critical part in ensuring the health and well being of New Jerseyans,\"\" Sen. Lautenberg said.            These funds were included as part of the FY 2008 Omnibus Appropriations bill which passed the Senate.            Some of the projects funded in the measure are:·        $80,606 to ASPIRA, Inc of New Jersey for an Educational and Leadership Development program;·        $478,721 to Atlantic Health System for an electronic disease tracking system;·        $238,869 to Brookdale Community College for the Asbury Park Enrichment and Student Success Center;·        $325,373 to Camden County's Mobile Health Van;·        $478,721 to Children's Specialized Hospital's new Pediatric Center of Excellence in New Brunswick;·        $191,685 to Christian Health Care of New Jersey for renovations to the Heritage Manor Nursing Home;·        $608,477 to East Orange General Hospital for Emergency Department renovation;·        $167,110 to Englewood Hospital for Emergency Department renovation;·        $608,477 to Essex County for a mental health services initiative;·        $363,710 to Generations, Inc for the construction of a medical center in Camden County;·        $167,110 to Holy Name Hospital for facility renovation;·        $287,036 to Jewish Federation of Central New Jersey for a Naturally Occurring Retirement Community Demonstration project;·        $287,036 to Jewish Federation of Greater Monmouth County for a Naturally Occurring Retirement Community Demonstration project;·        $181,855 to Jewish Renaissance Medical Center for facility construction, renovation and equipment;·        $363,710 to Kennedy Health System in Voorhees for the Advanced Cancer Prevention and Treatment Initiative;·        $718,573 to Lourdes Health System for Intensive Care Nursery equipment and facility renovation;·        $238,869 to Morris Museum for an Interactive Educational Workshop Center;·        $277,206 to Newark Beth Israel Medical Center for an Emergency Department Expansion Initiative;·        $143,518 to Newton Memorial Hospital for purchase of equipment;·        $263,444 to Palisades Medical Center for facility renovation and equipment;·        $613,392 to Rutgers University School of Law in Camden for student scholarships, internships and public interest programming;·        $238,869 to St. Francis Medical Center for the expansion of Urgent and Specialty Clinic Services·        $306,696 to St. Joseph's Regional Medical Center for health information technology;·        $143,518 to St. Michael's Medical Center for heart disease screening;·        $502,313 for Seton Hall University's Science and Technology Center;·        $181,855 to Shiloh Economic and Entrepreneurial Lifelong Development Corp for an after-school program;·        $478,721 to Somerset Medical Center for electronic health record upgrades;·        $143,518 to Trinitas Health Foundation for construction, equipment and renovation;·        $243,784 to Union County for the Academy of Allied Health Sciences;·        $162,195 to UJA Federation of Northern NJ in River Edge for a Naturally Occurring Retirement Community Demonstration project ;·        $478,721 to UJC MetroWest for a Naturally Occurring Retirement Community Demonstration project;·        $191,685 to Virtua Health in Mount Holly for cancer treatment equipment; and·        $200,532 to William Paterson University for the Center for the Study of Critical Languages.                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6fb48faa-0625-4978-8d42-cdc83979add5,\"NEW JERSEY SENATORS ANNOUNCE SENATE PASSAGE OF MORE THAN $13 MILLION FOR N.J. LAW ENFORCEMENT, CRIME PREVENTION AND SCIENCE PROGRAMS\n                    \n                            Funds included in FY 2008 Omnibus Bill; Bill Now Heads to House\n                    \n                      December 19, 2007\n                     WASHINGTON, D.C. - New Jersey Senators Robert Menendez and Frank R. Lautenberg today announced that the Senate approved legislation to give New Jersey millions of dollars in federal funding for law enforcement, crime prevention and science programs. The Appropriations legislation passed the House on Monday but must return to that body before it is sent to the President.  The measure is expected to be approved by the House and go to President Bush for his signature by the end of the week. \"\"These important funds for our state include resources that communities will use to make our streets safer and help our law enforcement be prepared to fight crime,\"\" said Sen. Menendez. \"\"Our state's bravest deserve the resources they need to protect our communities, and the funding for these programs aims to give them just that.\"\"\"\"Not only does this bill include millions of dollars for New Jersey, but it provides substantial increases in state and local law enforcement funding.  These funds would go a long way towards making sure police officers in New Jersey have the equipment and training they need to fight crime and keep our communities safe.  I was proud to take part in crafting this legislation,\"\" said Sen. Lautenberg.  These funds were included in the FY 2008 Omnibus Appropriations bill which passed the Senate with strong bipartisan support. The measure would appropriate:$446,500 for an ex-offender initiative in Newark; $357,200 for a security initiative in Elizabeth; $267,000 for the New Jersey Institute of Technology to develop a child-safe personalized weapon; $446,500 for 911 communications system upgrades in Camden County; $267,900 to the North Hudson Regional Fire & Rescue Squad in West New York for an interoperability program; $893,000 for Monmouth University's Urban Coast Institute; $272,600 for Bergen Community College's Center for Suburban Criminal Justice; $531,100 for Irvington's Youth Development and Youth Safe Haven; $484,100 for Trenton's YouthStat Crime Prevention Program; $1,588,600 for New Jersey Network's Statewide Law Enforcement Initiative; $267,900 for Passaic County Prosecutor's Office's fiber optic/interoperable communications network; $89,300 for DARE New Jersey's 6th grade curriculum training and deployment program; $183,300 for at-risk youth program in Maplewood Township; $133,950 for Generations, Inc. for the operation of the Pendelbury Harvest Home, a women's shelter for victims of domestic violence in Camden; $451,200 for a juvenile re-entry program in Essex County; $446,500 for a Volunteers of America of the Delaware Valley program to safely and effectively help returning offenders with mental illnesses; $1,339,500 for marine fisheries research; $235,000 for a Delaware River enhanced flood warning system; $869,500 for Richard Stockton College of New Jersey for analysis of shoreline changes; $705,000 for the Fairleigh Dickinson University Cybercrime Computer Forensic Security Training Center; $78,960 to the Sheriff's Association of New Jersey for a statewide accreditation program; $141,000 for Doe Fund's Ready, Willing and Able program in Jersey City; $394,800 for a county-wide interoperable communication system in Bergen County; $282,000 for interoperable communications in Fort Lee; $211,500 for command and communication vehicle equipment in Passaic; $446,500 for police and security upgrades in Paterson; $564,000 for 180 Turning Lives Around for a child and teen violence reduction and treatment program in Hazlet; $94,000 for Ohel's at-risk youth and child abuse prevention in Teaneck;   $282,000 for Union City anti-gang and youth violence prevention;         $235,000 for the City of Woodbridge Police Department: $352,500 for the Rights of Passage Program at Covenant House; $235,000 for the Save the Youth After School and Summer Performing Arts Program in Hoboken; $94,000 for the Asbury Park Enrichment and Student Success Center in Lincroft; and   $94,000 for Kearny Police Department's law enforcement technology system.                                                       # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cf40e85d-24e2-4426-a377-fb9b8f150017,\"NEW JERSEY SENATORS ANNOUNCE SENATE PASSAGE OF MORE THAN $176 MILLION IN FLOOD PREVENTION, BEACH REPLENISHMENT AND OTHER CRITICAL INFRASTRUCTURE PROJECTS IN NEW JERSEY\n                    \n                            Funds included in FY 2008 Omnibus Bill; Measure now heads to House\n                    \n                      December 19, 2007\n                     WASHINGTON, D.C. - New Jersey Senators Robert Menendez and Frank R. Lautenberg, a member of the Senate Appropriations Committee, today announced that the Senate approved legislation to give New Jersey millions of dollars in federal funding for flood prevention, beach replenishment and other critical infrastructure projects to be conducted by the U.S. Army Corps of Engineers.The Appropriations legislation was approved by the House on Monday but must return to that body before it is sent to the President. The measure is expected to be approved by the House and sent to the President for his signature by the end of the week. \"\"The rampant flooding of this past April were another stark reminder of just how susceptible homes in our state are to devastating floods,\"\" said Sen. Menendez. \"\"At the same time, the Jersey Shore faces the ominous threat of a rising sea level and catastrophic storms that climate change can spawn. New Jersey needs to be prepared, and that's why these funds are so important. With these funds, our communities can help keep the elements at bay.\"\"\"\"These funds will go a long way towards preventing flooding, saving lives and protecting New Jersey's homes and businesses from severe storms.  I was proud to take part in crafting this legislation,\"\" said Sen. Lautenberg.  These funds were included as part of the FY 2008 Omnibus Appropriations bill which passed the Senate. Some of the projects funded in the measure are: $85,191,768 for NJ/NY Harbor Deepening; $10,001,376 for the Green Brook Sub-basin flood control project; $2,808,336 for beach replenishment in Ocean City; $4,920,000 for beach replenishment on Long Beach Island; $4,779,288 for Avalon and North Wildwood beach replenishment; $532,344 for Passaic River Flood Warning; $2,952,000 for stabilization and ecosystem restoration at Joseph G. Minish Park in Newark; $1,345,128 for Passaic River Preservation of Natural Flood Storage Areas; $1,417,944 for Barnegat Inlet maintenance dredging; $1,315,608 for Sandy Hook to Barnegat beach replenishment in Southern Long Branch portion; $2,913,624 for dredging in the Raritan River to maintain navigability; $3,387,912 for Newark Bay Passaic & Hackensack Rivers for dredging; $876,744 for Brigantine Inlet to Great Egg Harbor Inlet (Absecon); $74,784 for Brigantine Inlet to Great Egg Harbor Inlet (Brigantine Island); $4,785,192 for Lower Cape May Meadows ecosystem restoration project monitoring; $5,684,568 for NJ/NY Harbor drift removal; $825,576 for NJ/NY Harbor Prevention of Obstructive Deposits; $245,016 for Cape May Inlet to Lower Township; $414,264 for Cold Spring Inlet; $4,920 for Delaware River at Camden; $246,984 for a Comprehensive Study of the Delaware River Basin; $18,507,072 for Delaware River-Philadelphia to the Sea maintenance; $1,493,712 for Delaware River-Trenton to Philadelphia maintenance; $371,952 for Hackensack Meadowlands; $251,904 for Hereford to Cape May for shore protection; $496,920 for Hudson Raritan Estuary Hackensack Meadowlands; $492,000 for Hudson Raritan Estuary Lower Passaic River for a deepening project; $177,120 for Lower Saddle River for flood control; $184,992 for Manasquan River; $988,920 for NJ Intracostal Waterway; $107,256 for NJ Shore Alternative Long Term Nourishment; $98,400 for Passaic River, Harrison; $98,400 for Passaic River Main Stem; $308,976 for Peckman River -- flood control; $98,400 for Rahway River Basin; $343,416 for Ramapo & Mahwah Rivers; $98,400 for Raritan & Sandy Hook Bays -- Highlands beach renourishment; $98,400 for Raritan & Sandy Hook Bays -- Keyport;   $98,400 for Raritan & Sandy Hook Bays -- Leonardo; $43,296 for Raritan & Sandy Hook Bays -- Union Beach; $109,224 for Raritan Bay & Sandy Hook Bay; $876,744 for Raritan Bay & Sandy Hook Bay Port Monmouth; $23,616 for Salem River; $162,360 for Shoal Harbor and Compton Creek; $138,744 for Shrewsbury River; $98,400 for Shrewsbury River Main Channel; $161,376 for South River; and $98,400 for Stony Brook Millstone River Basin.                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=b4815c78-175f-429e-8686-c127164ea80b,\"SEN. MENENDEZ TO MEET WITH FAA ACTING CHIEF TOMORROW\n                    \n                            Delays, airspace redesign, safety issues at Newark will be discussed\n                    \n                      December 18, 2007\n                     WASHINGTON - With a number of serious New Jersey air travel issues swirling, Senator Bob Menendez (D-NJ) will meet with the Acting Administrator of the Federal Aviation Administration, Robert Sturgell, tomorrow in the Senator's office. Senator Menendez has been particularly outspoken and engaged with the FAA on its approach to addressing endless flight delays, its airspace redesign plan that will likely increase noise for New Jersey residents without significantly reducing delays, and safety concerns at Newark Liberty International Airport, including a spike in low-fuel landings and near misses on the runways.\"\"New Jerseyans know better than just about anybody that air travel these days can be a frustrating - even harrowing - experience, and the way the FAA has approached dealing with the problems has been equally frustrating,\"\" said Senator Menendez. \"\"I'm looking for answers from the person in charge, and I will also convey to him the serious concerns that I hear every day from New Jersey residents and communities. Certainly, I will also weigh his answers carefully as his nomination to become the permanent Administrator comes before the Senate.\"\"Following up on my letter from last week, I want to make sure that acting-Administrator Sturgell fully understands my concern that the FAA has not taken a regional approach to reducing delays, as is evidenced by the imminent announcement of flight caps only at JFK. I will also express to him that his agency's rush to implementation of the airspace redesign for both Northern and Southern New Jersey completely disregards the opinions of the people who will be affected most, the people of my state. There are also some serious safety concerns that have cropped up at Newark, including low-fuel landings and runway near misses. Those are perhaps a direct result of the overcrowded airspace, and I want acting-Administrator Sturgell to know that I expect the FAA to be proactive in ensuring passenger safety above everything else.\"\"                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cea95d78-74fb-4eb1-ade9-5995e51dd908,\"WITH DEADLINE TOMORROW, SEN. MENENDEZ EXPRESSES HOPES FOR TERMS OF A SETTLEMENT IN MAJOR ELECTRICTY WHOLESALER DISPUTE\n                    \n                            PJM charged with obstructing its Market Monitor's work\n                    \n                      December 18, 2007\n                     WASHINGTON - At a Senate nomination hearing today for a member of the Federal Energy Regulatory Commission (FERC), Senator Bob Menendez again expressed his hopes for a strong Market Monitor with the responsibility of ensuring a competitive wholesale electricity market in New Jersey and 14 other states. Currently PJM, the non-profit in charge of regulating wholesale electricity markets in those states, and its Market Monitor are negotiating a settlement in a dispute that began when the Market Monitor alleged that the company was obstructing his work.  Tomorrow is the deadline for the parties to reach a settlement before a mediator. Senator Menendez has taken a number of actions to ensure that FERC handles the dispute appropriately, including requesting full hearings (http://menendez.senate.gov/newsroom/record.cfm?id=278477).Below is Senator Menendez's remarks on the dispute, as prepared for delivery at the hearing:\"\"Commissioner Wellinghoff, I'd now like to discuss an issue which affects the entire PJM RTO region. Last spring, Dr. Joseph Bowring from PJM's market monitoring unit came public with disturbing allegations that his work was being interfered with and manipulated. Under FERC's oversight, PJM and its Market Monitoring Unit have been trying to resolve their dispute.\"\"It is imperative that we have fair and competitive electricity markets. Without a strong, independent market monitor, consumers cannot be confident that they are not being cheated by monopolies or manipulators. In evaluating any proposed solution, FERC should make sure that the Market Monitor has timely access to whatever information they need to determine whether prices need to be mitigated. The Market Monitor must have the staff and infrastructure needed to do their job. And, in order to preserve its independence, the Market Monitor should report to a board outside of the PJM hierarchy, a board which represents all stakeholders.                                                                     # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=62a802ed-0360-408f-9051-4d5b11f02574,\"Floor Statement on the Cost of War in Iraq v. Energy Independence: As Prepared for Delivery\n                    \n                      December 14, 2007\n                     M. President,No matter the ups and downs of the military campaign in Iraq, there is a central truth about the war we must acknowledge: this war is not free.It was not free to the 28,661 men and women who have come home with horrible burns and scars, who gave up their eyes, their arms, their legs in Iraq. It was not free to the 3,877 soldiers who died thousands of miles away from home.And it certainly was not free to the mothers, fathers, sons, daughters and friends who have to share in the burden of a soldier's injuries, or to those families who will never see their loved ones again. For the past several months I have come to the floor to talk about what else it is costing us to be in Iraq, besides the awful loss of human life that has occurred. Since March 2003, $455 billion dollars are gone. The price tag for every additional month we spend there is $10 billion dollars. No matter how the war in Iraq drops in and out of the news, no matter how public opinion about it shifts, the costs keep piling up, to our troops, to their families, to all of us.Today I'd like to speak about what it has cost us in terms of our energy independence.Last night, this Congress passed a bill to push America toward energy independence and environmental responsibility. Few things are more important to our national security than energy independence. Everyone, on both sides of the aisle, from coast to coast across this country, agrees that continuing to rely on oil not only fuels our cars, it fuels authoritarian regimes and radical ideologies, from Saudi Arabia to Iran, Venezuela to Sudan. Few things are more important to the health of our environment than energy independence. If we are to pass on to our children a world where the air is breathable, where the oceans don't rise and flood their houses, where droughts don't parch their soil and starve them of food, we need to dramatically reduce the fossil fuels we are spewing into the atmosphere.Few things are more important to our economic security than energy independence. Relying so heavily on oil means this country is walking a liquid tightrope over an economic canyon. If oil prices go up even to the mid-$100s—and it wouldn't take that big a crisis in an oil-producing country to get the price that high—it would result in a massive recession, a massive devaluation of our dollar, a devastating blow to working families in this country.  I'll say it again: oil is a liquid tightrope for this country, and only a truly enormous national effort can weave the net of alternative fuels, infrastructure and conservation to catch us when we fall. So, with a problem this daunting, this enormously important to our future as a nation, you would think that both Republicans and Democrats would be willing to invest whatever it takes to get the problem solved.The version of the energy bill we passed last night contains strong measures, and I voted for it. It requires auto makers to build cars with better gas mileage for the first time in more than twenty years. It requires our electric appliances to use less electricity for the first time in history.But that legislation could have gone much farther.Some argued that we could not afford to pay to spur innovation in alternative energy. On top of that, some of my colleagues blocked any progress on the energy bill until it included tax breaks for big oil companies. Let's remember that over the last few years these oil companies have hauled in half a trillion dollars in profits. We faced a clear choice: would we stand up for the oil companies, or for the American people? Many Republicans chose the oil companies.Some senators had proposed creating new incentives for entrepreneurs to invest in new technologies like tidal, geothermal and small irrigation hydro power. But some of my colleagues blocked it. They said it was too expensive. Let's put that in context. The proposal would have invested $6 billion over ten years. In other words, it would have cost the same amount as we spend in Iraq every two and a half weeks.Some senators had proposed a long-term extension of a tax credit for solar energy and related technologies, a $700 million investment over the next ten years. Some of my colleagues demanded that provision be cut.Yet we could pay for that investment in alternative fuels for an entire decade with the money we spend in Iraq in—I can hardly believe it as I'm saying it—about 2 days. Roughly 2 days in Iraq would pay for that provision to help wean us off burning fossil fuels.Conserving energy doesn't have to be complicated or expensive. The strong new standard we just passed to make electric appliances and light bulbs more efficient is proof of that. The energy savings is going to be tremendous.When an American home replaces just one old incandescent bulb with a fluorescent bulb, it saves that family about $30 over the life of the bulb. And if every home in America changed just one bulb, in terms of the carbon emissions we kept out of our atmosphere, it would have the same impact as taking 800,000 cars off the road.Let's say that back in 2003, instead of going to war, we decided to replace every light bulb in America with a more energy efficient model.Since a compact fluorescent light bulb costs about $4, for the amount of money we've spent on the war in Iraq, we could have purchased more than 100 billion compact fluorescent light bulbs. Probably more if we'd gotten a bulk discount. In any case it would have been more than enough to light up every household in America for decades. It would probably be enough bulbs to light up planet Earth like a giant glowing ornament. That's the scale we're talking about.If the President had proposed that back in 2003, we would have thought he was crazy. And yet, it would have done far more for our energy independence than invading Iraq. It is hard to fathom how much power that would have saved, how much money we would have saved, how much carbon we could have prevented from being spewed into the atmosphere, how much funding we could have ultimately denied to regimes that are no friends of ours, had we decided to actually put real money behind reducing our energy use. Instead, we got a war that has achieved nothing for any of us. That's what the war costs. It could have been traded for real solutions to one of the most tremendous problems of our time. M. President,Deciding whether this nation is going to spend our blood and treasure on a war that achieves nothing for any of us, or whether we are going to devote our minds, budgets and hearts to solving our massive energy challenge, is a question of priorities. It is a question of values. On both counts, keeping the war in Iraq going indefinitely is the wrong answer. If we do not change our priorities, so they match the values of the American people, I am afraid that every day we are going to be more and more aware of what the great American poet John Greenleaf Whittier wrote more than a hundred and fifty years ago: \"\"of all sad words of tongue or pen, the saddest are these: what might have been.\"\" M. President, I yield the floor.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c3b664cd-8606-4ef8-ae9e-ec9abea59092,\"Menendez Votes For Farm Bill, Says It Starts Down Path That Will Benefit NJ Farmers, But Serious Reforms Are Still Needed\n                    \n                      December 14, 2007\n                     WASHINGTON - Senator Bob Menendez (D-NJ) tlday voted in favor of the Farm Bill, which he says makes strides that will help New Jersey farmers, even though it lacks the sweeping reforms that he ultimately would like to see.\n\n\"\"After a number of excellent, more extensive reform efforts were defeated, the decision we were ultimately presented with was to essentially extend the previous Farm Bill or adopt this one, which makes some good initial steps toward a better system for New Jersey farmers,\"\" said Senator Menendez. \"\"I believe farmers in our state will be better off than before because of this legislation, which is why I supported it. I am particularly encouraged by this bill's commitment to specialty crop farmers, food stamp recipients and healthier food for children at school, and I am proud that this bill included measures I originally introduced.\n\"\"However, I fully understand that major additional reforms must be made, including a reform of the direct payment system that largely benefits mega factory farms and a greater emphasis on nutrition and conservation. To that end, I applaud my Senate partner from New Jersey, Frank Lautenberg, for his efforts with the FRESH Act, and I look forward to continuing to stand up together with him on behalf of New Jersey's farmers.\"\"\n\nProvisions from Senator Menendez's Healthy Farms, Foods and Fuels Act included in the Farm Bill:\n·         Expansion of the Fresh Fruit and Vegetable Program to every state in the country, targeting benefits to low-income children, giving them a healthier snack option that will lead to healthier habits in school and at home.\n·         Additional funds for the Senior Farmers' Market Nutrition Program to award grants to state governments to provide low-income seniors with coupons that can be exchanged for healthy foods at farmers' markets, roadside stands, and community supported agriculture programs.\n·         Restoring the authority of schools to buy local foods in the School Lunch Program to support local farms while giving their children fresher and more nutritious food options.\nFor the first time, specialty crops were given their own section in the Farm Bill, with over $3 billion to fund specialty crops provisions. These crops include the fruits, vegetables and other crops that constitute half of the nation's agricultural cash receipts, but have received little recognition in previous farm bills.  New Jersey is a national leader in growing specialty crops like blueberries, cranberries, peppers, peaches and spinach.\nNational specialty crop rankings for New Jersey:\nBlueberries: 2nd highest national output (#1 in fresh market blueberries) Cranberries: 3rd highest nation output Peppers: 3rd highest national output Peaches: 4th highest national output Spinach: 4th highest national output\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ac54dd4c-2c6f-4174-bbb2-de91a6e8def1,\"MENENDEZ SUPPORTS BILL TO END RACIAL PROFILING\n                    \n                            The End Racial Profiling Act of 2007 will offer protection to those who live in fear\n                    \n                      December 14, 2007\n                     Washington, D.C. - In an effort to bring peace of mind to thousands of New Jersey residents as well as a resource to the victims of racial profiling, Senator Robert Menendez is supporting The End Racial Profiling Act of 2007, a bill that would prohibit the practice of law enforcement agencies relying on race, ethnicity, national origin or religion during investigatory activities. This bill, which is being re-introduced by Senator Russ Feingold (D-WI), would address an issue that has affected countless residents. \"\"Governor Corzine has already taken effective steps to help protect New Jersey residents from this harmful practice but it is important to secure strict national guidelines that will help eradicate it across the country,\"\" said Senator Menendez. \"\"Racial profiling has dogged minorities in the past and it is essential that law enforcement be sensitive to this issue. The color of a person's skin or their religious beliefs should not make ordinary citizens feel threatened and defenseless.\"\"The End Racial profiling Act of 2007 will:allow the United States or an individual injured by racial profiling to bring a civil action for injunctive relief to federal court; require proof of proactive measures by law enforcement to eliminate racial profiling as a prerequisite for federal state and local law enforcement agencies to receive federal law enforcement funding;provide for the collection of data from federal state and local agencies that will allow Congress and the public to analyze the issue and address recurring problems, while maintaining confidentiality to protect the victims as well as the law enforcement personnel involved.            The End Racial Profiling Act of 2007 also offers states and localities the tools and options they need to tailor a plan that will address the needs of their particular communities.                                                            ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=99d62c5b-8db7-4eed-b177-62731f11aa8a,\"SEN. MENENDEZ STATEMENT ON ENERGY BILL PASSAGE\n                    \n                      December 13, 2007\n                     WASHINGTON - Tonight, the Senate passed an Energy Bill that makes landmark improvements in areas like auto fuel efficiency standards and energy efficiency. The final version of the bill, however, did not include the original provisions to take away oil industry subsidies in order to pay for renewable energy tax credits after Senate Republicans blocked a previous version earlier today.Senator Bob Menendez (D-NJ), a member of the Energy and Natural Resources Committee who championed several provisions in the bill including energy efficiency block grants for cities, released the following statement:\"\"This bill includes some of the bold and innovative steps it will take to help wean our country off of its dependence on oil, clean the air we breathe and respond to our planetary emergency. Because of the majority's commitment to making this a more energy efficient nation, our cars will have better gas mileage and our appliances will consume less energy. I had hoped that instead of taxpayer money for oil companies, this bill would have included the tax credits for renewable energy, but Republicans chose to defend the oil industry at the peril of everything else positive that this bill has to offer. That decision is wildly out of touch with the priorities of the American people, and I will work to revisit and reverse that issue in the near future.\"\"                                                           # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6cedb21d-4aa5-461e-8f90-6b4732754227,\"SENADORES MENENDEZ, LAUTENBERG  PIDEN PLAN PARA EVITAR DEMORAS Y  CONGESTION EN AEROPUERTO DE NEWARK, RESPONDEN A PLAN DE BUSH PARA IMPONER L?MITES A LOS VUELOS EN JFK\n                    \n                            Los senadores vigilan que el tr?fico excesivo de Nueva York no afecte Newark Liberty y agobie a los pasajeros de Nueva Jersey\n                    \n                      December 13, 2007\n                     Washington, D.C. - Al tanto de los recientes informes de prensa que indican que el Departamento de Transportación planea implementar restricciones en los itinerarios de vuelo del Aeropuerto Internacional John F. Kennedy de Nueva York, los senadores Bob Menendez (D-NJ) y Frank Lautenberg (D-NJ) están presionando al Departamento para que aborde de una manera mas regional la forma en que se reduzcan las demoras en los vuelos - que se realice de forma que incluya la reducción de las demoras en el Aeropuerto Internacional Newark Liberty (http://menendez.senate.gov/pdf/121207lettertoFAAondelays.pdf).En una carta a la secretaria de transportación Mary Peters y el administrador interino de la Administración Federal de Aviación (AFA) Robert Sturgell, los senadores citan la falta de atención que se le ofrece a Newark durante el proceso de reducción de demoras que realiza la AFA.  Newark es el aeropuerto que registra el mayor número de demoras en la nación.\"\"Estoy deseando que este proceso tenga una segunda parte y que la AFA se esté preparando para anunciar que tomarán acción en Newark, pero hasta este momento han abordado un problema regional con un enfoque limitado,\"\" dijo el senador Bob Menendez.  \"\"Los viajeros que utilizan Newark ya están cansados de tantas demoras y el incremento en los  problemas de seguridad.  Apiñar mas vuelos a un aeropuerto que ya esta repleto podría causar serios problemas.\"\"\"\"Los viajeros están cansados de vuelos demorados o sencillamente cancelados.  La propuesta de la administración Bush hará mas grave la situación en el aeropuerto de Newark, apiñando demasiados vuelos en pocos horarios,\"\" dijo el senador Lautenberg. \"\"No podemos permitir que la administración Bush descargue el numero excesivo de vuelos - y los problemas que generarían - en Nueva Jersey.\"\"En Agosto, el senador Menendez tomó la iniciativa de instar al Departamento de Transporte y a la Administración Federal de Aviación a que considerara ideas innovadoras para reducir las demoras en los vuelos, incluyendo limites (http://menendez.senate.gov/newsroom/record.cfm?id=281124), y ha presionado consistentemente a la AFA para que aborde el tema de forma regional (http://menendez.senate.gov/newsroom/record.cfm?id=286171).El senador Lautenberg incluyo $2.5 millones en nuevos fondos para los derechos de los pasajeros en el presupuesto del Departamento de Transportación para el año fiscal 2008. Los fondos ayudarán a mejorar el servicio al cliente para los pasajeros de todas las aerolíneas, incluyendo aquellos que estén varados debido a demoras, conexiones perdidas y cancelaciones.En Noviembre, el comité en conferencia de la cámara y el senado aprobó dos medidas auspiciadas por ambos senadores de Nueva Jersey para reducir las demoras y la congestión en nuestra región.  Una medida requiere que el gobierno federal envíe al congreso un plan para reducir las demoras en los vuelos, el otro pide que la Oficina de Responsabilidad del Gobierno (Government Accountability Office o GAO) investigue la propuesta del plan del nuevo diseño del espacio aéreo sometido por la administración Bush.                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a9322d94-41e5-426a-85ea-03db74d18cd5,\"UPON REPORTS OF BUSH PLAN TO CAP FLIGHTS AT JFK, NJ SENATORS MENENDEZ, LAUTENBERG CALL FOR PLAN TO LIMIT DELAYS, CONGESTION AT NEWARK\n                    \n                            Senators concerned that excess New York air traffic will overwhelm Newark Airport, burden New Jersey travelers\n                    \n                      December 13, 2007\n                     WASHINGTON - Following news reports this week that the Department of Transportation plans to implement flight schedule restrictions for New York's John F. Kennedy International Airport, New Jersey's U.S. Senators, Bob Menendez (D-NJ) and Frank R. Lautenberg (D-NJ), are pressing the Department to take a more regional approach to reducing flight delays - an approach that includes action to reduce delays at Newark Liberty International Airport (http://menendez.senate.gov/pdf/121207lettertoFAAondelays.pdf).In their letter to Transportation Secretary Mary Peters and Federal Aviation Administration Acting Administrator Robert Sturgell, the senators cite the lack of attention paid to Newark, the nation's most delayed airport, during the FAA's delay reduction process. They argue that a cap for JFK, in combination with an existing cap at LaGuardia Airport, will force all new entrants into the regional market to use Newark.\"\"I am certainly hoping that this is a two-step process and that the FAA is preparing to announce action at Newark, but to this point they have taken a narrow approach to this regional problem,\"\" said Senator Bob Menendez. \"\"Travelers who use Newark are already at their wit's end with all the delays and growing safety issues. Jamming more flights into an airport already filled to the brim could make the pot boil over.\"\"\"\"Travelers are tired of flights that are delayed or flat-out cancelled.  The Bush Administration's proposal will make the situation worse at Newark Airport, cramming too many flights into too few slots,\"\" Senator Frank R. Lautenberg said.  \"\"We cannot let the Bush Administration dump these excess flights -- and the problems they create -- onto New Jersey.\"\"In August, Senator Menendez first urged the DOT and FAA to consider innovative ideas to reduce flight delays, including flight caps (http://menendez.senate.gov/newsroom/record.cfm?id=281124), and he has consistently pressed the FAA to take a regional approach to this issue (http://menendez.senate.gov/newsroom/record.cfm?id=286171).Senator Lautenberg included $2.5 million in new funding for passenger rights enforcement in the 2008 Department of Transportation funding bill.  The money will help improve customer service for all airline passers, including those who are stranded due to flight delays, missed connections and cancellations.In November, a House-Senate Conference Committee approved two measures sponsored by both New Jersey Senators to reduce delays and congestion in our region. One measure requires the federal government to send Congress a plan to reduce flight delays; the other requires the GAO investigate the Administration's proposed Airspace Redesign Plan.  Text of letter: December 12, 2007The Honorable Robert A. Sturgell                                   Deputy and Acting AdministratorFederal Aviation Administration                                   800 Independence Ave, SW                                          Washington, DC 20591     The Honorable Mary E. Peters                 Secretary   U.S. Department of Transportation                                                1200 New Jersey Ave, SE                        Washington, DC 20590     Dear Secretary Peters and Administrator Sturgell:                We write you in response to published reports yesterday about a cap on flights at New York's John F. Kennedy International Airport (\"\"JFK\"\"), which we understand the Administration may be preparing to announce as soon as next week.  It is our belief that a focus on only one of the region's overflowing airports threatens to put greater strain on the rest of the airports in the area, especially Newark Liberty International Airport.  Therefore, the news that you are prepared to announce flight caps only at JFK troubles us.                As Senators from New Jersey, our most immediate concern is with Newark- the airport with the most flight delays in the nation, where the Government Accountability Office has found questionable safety conditions, and where we have seen a recent spike in low-fuel landings. When the schedule reduction meetings at JFK were first announced, the FAA gave our offices assurances that such meetings for Newark were soon to follow. To date those meetings have not taken place.A cap on flights at JFK reflects an unbalanced approach to a regional problem.  Since caps on flights are already in place at LaGuardia Airport, implementing caps on flights at JFK would force all new market entrants to use Newark Airport.  This development would make our most delayed airport face the possibility of having even greater delays.  Putting additional strain on Newark when it is already nearing the breaking point makes little sense.We ask you to provide us with a prompt update on your plans for schedule reduction meetings or to impose flight caps at Newark or otherwise deal with delays at Newark.  If you do not believe the plan to cap flights only at JFK will adversely affect Newark, we ask for a prompt explanation.  And we also ask you for an explanation of the rationale behind focusing the lion's share of your delay reduction efforts on JFK.  Caps only at JFK would be unfair to New Jersey travelers and would only worsen flight delay problems in our region.We thank you for your attention to the matter.                                                                                Sincerely,                                                                                                                   ROBERT MENENDEZ                  FRANK LAUTENBERGUnited States Senator                    United States Senator                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=713b9449-02df-4dc7-90d1-236581e72e8c,\"OBSTRUCTING AT HOME AND ABROAD, ADMINISTRATION AND CONGRESSIONAL GOP HOLDING BACK ENVIRONMENTAL AND ENERGY PROGRESS, SAYS SEN. MENENDEZ\n                    \n                            Energy bill blocked in Senate as U.S. impedes progress in Bali\n                    \n                      December 13, 2007\n                     WASHINGTON - As the Bush Administration continues to be uncooperative at the international climate change conference underway in Bali, Senate Republicans this morning blocked a landmark energy bill at the behest of the oil industry.Senator Bob Menendez (D-NJ), Chairman of the Foreign Relations Subcommittee with jurisdiction over international environmental agreements and a member of the Energy and Natural Resources Committee, released the following statement:\"\"At this moment in history we have the opportunity to start down the path of energy independence and to address climate change. The president and his party have chosen instead to use this moment to obstruct progress.\"\"Republican Senators had a choice to make: put our nation on track for cleaner energy, less oil consumption and fewer emissions or pad record oil company profits with taxpayer money. They chose oil companies over the American people and the planet.\"\"They chose taxpayer money for oil companies over tax credits for renewable energy that could help clean the air and wean us off of fossil fuels. They chose taxpayer money for oil companies over an investment in solar energy, which my home state of New Jersey is proving to be a viable and clean source of electricity. Because of their choice, later today we will likely pass an Energy Bill that does not take away oil company subsidies to pay for the expansion of renewable energy.\"\"Meanwhile, at the conference in Bali, there is the potential to spark a worldwide movement to address our planetary emergency. Sadly, the Bush Administration has shown a stubborn unwillingness to consider the type of bold ideas we need to minimize the catastrophic storms, massive flooding and international instability that are the consequences of climate change. A new direction in our energy and environmental policy has the potential to improve a deteriorating situation, but the president and his party refuse to change course.\"\"                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=27817330-423d-4eab-8d35-d4fb5db02d47,\"MENENDEZ INTERNET SAFETY BILL PASSES SENATE JUDICIARY COMMITTEE\n                    \n                            Legislation on its way to Senate floor, would establish $10 million program for education about internet safety\n                    \n                      December 13, 2007\n                     WASHINGTON - Today, the Senate Judiciary Committee approved legislation introduced by Senator Robert Menendez (D-NJ) aimed at keeping children safe in their online activities. The Internet Safety Education Act would provide funds for national, state and community programs that educate children and parents about safe internet use.\"\"Parents know that threats to our children from cyberspace are in fact a very real danger, and this is the type of serious action we need to take,\"\" said Senator Menendez. \"\"I am encouraged by and appreciative of the quick action of the committee. I will work with the Majority Leader to see this legislation through so that children, parents and teachers have the awareness it takes to avoid internet predators.\"\"Sen. Menendez's initiative would create a $10 million grant program for the Attorney General to develop and administer.  Grants would be awarded on a competitive basis to organizations that provide free education about internet safety to children, parents, and teachers.According to the Internet Keep Safe Coalition, one in five children receives a sexual solicitation via the Internet over a one-year period. In addition, twenty-nine percent of children freely give out their home addresses when asked.                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c44e8a75-4582-45f4-8d60-933474ac0f70,\"\"\"SCROOGE MUST BE WORKING AT THE WHITE HOUSE\"\": SEN. MENENDEZ STATEMENT ON LATEST BUSH VETO OF CHILDREN'S HEALTH BILL\n                    \n                      December 12, 2007\n                     WASHINGTON - Today, President Bush once again vetoed a bill to provide health coverage for up to 10 million children from families that fall between Medicaid and private insurance. Senator Bob Menendez (D-NJ), who has led the fight in the Senate to preserve federal support for New Jersey's strong FamilyCare program, released the following statement:\"\"During this holiday season, one has to wonder if Ebenezer Scrooge is working at the White House. The president has once again looked ten million American children in the eye and told them their health is not worthy of a strong federal investment. The president and his party have adopted the strategy of obstruct, obstruct, obstruct, even when it comes to investments in the most vulnerable members of our society. They do not see the irony of sticking one hand out to ask for $200 billion for Iraq this year while using the other hand to veto health coverage for low-income children. That doesn't reflect the priorities of the people of my home state or this nation.\"\"                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=17bc4e10-1988-4379-8baf-b72253421a34,\"DECLARACIONES DEL SENADOR MENENDEZ EN TORNO AL VETO DEL PRESIDENTE BUSH AL PROGRAMA ESTATAL DE DE SEGURO MEDICO PARA NI?OS\n                    \n                      December 12, 2007\n                     Washington, DC— Esta tarde, el Presidente Bush una vez más decidió vetar el proyecto de ley que proveería seguro medico a más de 10 millones de niños de familias cuyo ingreso es demasiado alto para recibir Medicaid y muy bajo para pagar un seguro privado. El senador Bob Menendez (D-NJ), quien ha encabezado la lucha en el senado para conservar el apoyo federal para el programa de salud FamilyCare en Nueva Jersey, hizo las siguientes declaraciones: \"\"En estos días festivos, el presidente Bush, una vez mas, le ha mirado a los ojos a diez millones de niños norteamericanos y les ha dicho que su salud no merece una inversión federal significativa. El presidente y su partido han adoptado la estrategia de obstruir, obstruir, obstruir; aun cuando se trata de invertir en los miembros más vulnerables de nuestra sociedad. La administración de Bush no ve la ironía de extender una mano para pedir $200 mil millones para Irak este año y a la misma vez vetar una cobertura de salud para niños de bajos ingresos. Eso no refleja las prioridades de los residentes de mi estado o de esta nación.\"\"                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4bb6759f-d341-40da-8843-abc42ddc9192,\"LAUTENBERG, MENENDEZ ANNOUNCE GRANTS FOR HISTORIC NEW JERSEY BYWAYS\n                    \n                            N.J. Senators Announce Nearly $500,000 in Preservation Funds\n                    \n                      December 11, 2007\n                     WASHINGTON, D.C. - United States Senators Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the Federal Highway Administration (FHWA) has awarded nearly $500,000 in funding for the preservation of historic byways in New Jersey.\"\"Our historic roads and byways are an important part of our cultural heritage,\"\" said Lautenberg. \"\"This new funding will help ensure that New Jersey's scenic roadways will be preserved for future generations.\"\"\"\"These funds will help preserve the beauty and heritage that the scenic byways of our Garden State have to offer,\"\" said Menendez. \"\"I believe that all of our outdoor spaces should be adequately protected for years to come.\"\"The funds will support New Jersey's Scenic Byways Program, which acts to preserve and maintain roadways showcasing the state's heritage, recreational opportunities and natural beauty. Work is expected to begin on the programs early next year.These FHWA grants total $491,720, and will provide direct funding for the following projects:$270,400 for the rehabilitation of a canal bridge tender's house for visitor center exhibits and maps of the Millstone Valley Byway in Somerset County; $115,880 for a Corridor Management Plan (CMP) to help maintain and enhance the Upper Freehold Historic Farmland Byway in Western Monmouth County; and$105,440 for a Corridor Management Plan (CMP) to help maintain and enhance the Palisades Interstate Parkway in Bergen County.                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d256d0c9-2229-4587-90a1-7672e456337e,\"ON DAY OF MICHAEL VICK'S SENTENCING, LEGISLATION INTRODUCED IN U.S. SENATE FOR BETTER TRACKING OF ANIMAL CRUELTY CRIMES\n                    \n                            Sen. Menendez's bill would add animal cruelty crimes to nationwide crime reporting systems\n                    \n                      December 10, 2007\n                     WASHINGTON - As NFL quarterback Michael Vick was sentenced today to 23 months in prison for his dogfighting conviction, U.S. Senator Bob Menendez (D-NJ) introduced legislation to aid the battle against animal cruelty. The Tracking Animal Cruelty Crimes Act would direct the Federal Bureau of Investigation to include animal cruelty crimes in its annual crime report - they are not currently included in the report, making it difficult for law enforcement, policy makers and experts to understand overall patterns or trends in animal cruelty crimes.\"\"Perhaps if there is any silver lining to the Michael Vick episode, it is that such a high-profile conviction for dogfighting has made everyone aware of the repulsiveness of animal cruelty and the severe consequences that await those who participate,\"\" said Senator Menendez. \"\"While we have the momentum, we need to make sure that we establish policies that help law enforcement more effectively understand the scope of the problem and prevent offenders from going on to commit other violent crimes. The patterns of animal cruelty crimes should be tracked along with other violent crimes, and that is what we are trying to establish.\"\"This repulsive blood-sport of dogfighting is a truly national problem - last year in my home state of New Jersey, officials found a dog ring in a bunker 11-feet underground. That was during a drug raid, showing how interconnected animal cruelty can be with illegal gambling, drugs, and violence.\"\"\"\"Having the ability to track animal cruelty cases anywhere in the country is a long overdue step that would not only help animals, but would also give law enforcement agencies the tools they need to prevent violent offenders from escalating their terrible behavior,\"\" said Michael Markarian, executive vice president of The Humane Society of the United States. \"\"We are grateful to Senator Menendez for introducing this important anti-crime bill, for the sake of animals, and for public safety and security in our communities.\"\"\"\"We strongly support creating a separate category for animal cruelty in the FBI's National Incident-Based Reporting System,\"\" said Allie Phillips, director of public policy for the American Humane Association. \"\"Research has shown that animal cruelty is closely linked to other forms of societal violence. We are thrilled that Senator Menendez has introduced this important legislation. It will finally enable local, state and federal law enforcement agencies to collect national statistics on yearly crime rates, prevent recurrence of animal cruelty, and address its connection to other societal crimes.\"\"Involvement in dogfighting and other animal cruelty crimes has proven to be a precursor to other violent crimes and tends to have a strong connection to gang and other criminal activity. The legislation gives law enforcement a critical tool for combating animal cruelty and preventing violent crime by adding animal cruelty crimes to the Uniform Crime Reporting Program. Specifically, it would:·         Direct the Attorney General in consultation with the FBI to add animal cruelty crimes to the Uniform Crime Reporting Program, National Incident Based Reporting System, and Law Enforcement National Data-Exchange Program.·         Establish a twelve month window for implementation from the date of enactment.Studies has shown that people who had been prosecuted for animal abuse had a strong propensity to commit a violent crime, and a report by the Chicago Police Department found that, in a 3 year period, 59 percent of those people brought in for crimes against animals were self-admitted or factually established gang members.Dogfighting has become a lucrative enterprise and cruel pastime for criminal gangs across America, with \"\"champion\"\" dogs selling for as much as $25,000 on the black market, and bets on a single fight exceeding $100,000. Animal cruelty crimes are not assigned a category by the FBI in its annual crime statistics report, making the crimes impossible to disaggregate and study. With the information gathered by accepting animal cruelty as a separate category, officials can track criminal activity, monitor trends, allocate resources more efficiently, and ultimately stop these criminals before they commit worse crimes.                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9caa12bf-a481-4637-9aa9-507abfb91663,\"SEN. MENENDEZ STATEMENT ON NEWARK AIRPORT NEAR COLLISION\n                    \n                      December 8, 2007\n                     WASHINGTON - Upon Federal Aviation Administration confirmation of a near collision between two airliners on the runways of Newark Liberty International Airport Thursday night, U.S. Senator Robert Menendez (D-NJ), who has been a leading proponent of FAA action to ease the congestion in the region's airspace (http://menendez.senate.gov/pdf/082107lettertofaa.pdf) and has sought answers for the spike in minimum-fuel landings at Newark (http://menendez.senate.gov/pdf/110707lettertoFAA.pdf), today released the following statement: \"\"It seems like just about every day, there are new signs of danger and dysfunction at Newark, with a high risk of runway accidents, with a spike in minimum fuel landings and with the worst congestion and delays in the nation. Fortunately, a major disaster has been averted to this point, but the FAA needs to act with a sense of urgency to ensure maximum safety and efficiency at Newark and FAA officials need to be held to account for the ongoing problems. I have been largely unsatisfied with the FAA's response to my communications on flight delays and my inquiries about flights forced to land with minimum fuel left in their tanks. The FAA has chosen to focus their congestion efforts on JFK rather than taking a regional approach, and they have been far too slow to produce a simple answer about their reporting procedures for minimum fuel landings. With this latest incident and with the government report on runway safety released earlier this week, they have more questions to answer and they must show an ability to take quick action to ensure safety. I will push for FAA officials to answer to Congress and I will be holding their feet to the fire until we have assurances.\"\"                                                                   # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=58dc38aa-07d5-4a4f-8b79-8151e852c91f,\"OBSTRUCTION OF ENERGY BILL HARMFUL IN THE MIDST OF OIL CONCERNS AND PLANETARY EMERGENCY, SAYS SEN. MENENDEZ\n                    \n                      December 7, 2007\n                     WASHINGTON - Today, the landmark Energy Bill (H.R. 6), which passed the House yesterday, was blocked by Senate Republicans from proceeding to a final vote. The Republicans forced a 60-vote threshold to proceed, but the motion to invoke cloture received 53 votes.Senator Bob Menendez (D-NJ), a member of the Senate Energy and Natural Resources Committee who championed several provisions in the bill including energy efficiency block grants for cities, today released the following statement:\"\"We face a perfect storm on energy - a perfectly ominous storm.  Our security is threatened by our reliance on foreign oil, our economy and worldwide stability are vulnerable because of oil prices approaching $100 a barrel, and our planet is warming because of rising greenhouse gas emissions.  This energy bill contains the type of bold and innovative ideas that will help combat these problems, and yet the Republican Party would rather protect oil companies than serve the American people. This kind of obstructionism is intolerable and irresponsible.\"\"Ideas like making our cars cleaner, minimizing our dependence on oil, reducing coal power plant emissions and developing the type of green technology that we desperately need are how we help our nation and the world begin to get out of this predicament. I have whole-heartedly supported and helped to generate these ideas, from the committee to the Senate floor, and I will continue to stand up for an energy bill that seriously addresses climate change.\"\"                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e68f85aa-b549-43ad-950e-caf8e6560d7b,\"Casey, Specter, Schumer, Clinton, Lautenberg, Menendez Introduce Resolution to Honor Winners of Science Competition\n                    \n                      December 7, 2007\n                     WASHINGTON, DC- U.S. Senators Bob Casey (D-PA), Arlen Specter (R-PA), Charles Schumer (D-NY) , Hillary Clinton (D-NY), Frank Lautenberg (D-NJ) and Robert Menendez (D-NJ) today introduced a bipartisan resolution in recognition of the winners and finalists of the 2007-2008 Siemens Competition in Math, Science and Technology.  This year's competition marks the first time women have won top spots in the competition.\"\"Pennsylvania is very proud to call some of these fine young ladies our own,\"\" said Casey.  \"\"Women have a long, proud history of making significant contributions to the fields of science, math and technology and these students have made great strides to live up to that tradition.  If we want to compete in the global economy, we must dedicate more resources to teaching all students math, science and technology.\"\"\"\"I applaud these young women for their contributions to the fields of math and science,\"\" Specter said. \"\"Education is one of our greatest capital assets and I am pleased that several Pennsylvanian students have been recognized for their work through the Siemens Competition in Math, Science and Technology.\"\"\"\"The achievements and contributions made today by young people in science and technology are just amazing.  New York students have a proud history in this competition and this year's winners are no exception.  Congratulations to Janelle, Amanda, and Alicia, as well as all the other finalists for their excellent research and dedication to the field of science,\"\" said Schumer.\"\"I am so proud of these young women, the first women ever to win this prestigious competition,\"\" said Senator Clinton.  \"\"Our nation's security and prosperity in the 21st Century depends on nurturing new scientists and engineers whose innovations will keep America competitive. With gifted young women like Janelle Schlossberger and Amanda Marinoff from Long Island, New York leading the way, our future looks bright indeed.\"\"\"\"America needs leaders in math, science and technology to continue to move our country forward.  I am proud of these women for their impressive work -- work that will yield benefits for generations to come,\"\" Senator Lautenberg said.  \"\"Young women in New Jersey and nationwide need more opportunities like the Siemens Science Competition to continue to expand our boundaries of knowledge.\"\"\"\"We are incredibly proud of these students and their contributions to the science, math and technology fields,\"\" said Menendez. \"\"In an increasingly competitive global economy, our country stands to benefit from the work and dedication of these young students, and we should continue to encourage all young Americans to succeed in these challenging endeavors.\"\"Isha Himani Jain, 16, is a senior at Freedom High School in Bethlehem, Pennsylvania and placed first in the competition's individual category.  Jain's prize earned her a $100,000 scholarship for her research on bone growth in zebra fish. Janelle Schlossberger and Amanda Marinoff placed first in the team category for creating a molecule that helps block the reproduction of drug-resistant tuberculosis bacteria. Schlossberger and Marinoff, both 17, are seniors at Plainview-Old Bethpage John F. Kennedy High School on Long Island, New York and will split a $100,000 scholarship.The Siemens Competition in Math, Science and Technology was first held in 1998 and is one of the top student science competitions in the country.  This is the first time in the history of the competition that females have won first place in both the individual and team categories.The resolution also congratulates all the 2007-2008 national finalists: 1)     Ayon Sen, Austin, TX2)     Alexander C. Huang, Plano, TX3)     Nandini Sarma, Prairie Village, KS4)     Alicia Darnell, Pelham, NY5)     Isha Himani Jain, Bethlehem, PA6)     Jacob Steinhardt, Alexandria, VA7)     Sarah Waliany, La Cañada Flintridge, CA      Shelina Kurwa, Pasadena, CA8)     Camden Miller, Allen, TX      John Y. Chen, Plano, TX9)     Christopher Ding, Rochester Hills, MI      James Jiang, Troy, MI10) Janelle Schlossberger, Plainview, NY       Amanda Marinoff, Plainview, NY11) Caroline Lang, Yardley, PA      Rebecca Ehrhardt, Hamilton Square, NJ      Naomi Collipp, Yardley, PA12) Vivek Bhattacharya, Raleigh, NC       Hao Lian, Raleigh, NC       Daniel Vitek, Raleigh, NC                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=18bcb111-862b-4e69-9991-b7c7408899f3,\"WITH HATE CRIMES ON THE RISE, MENENDEZ CALLS FOR UPDATED FEDERAL STUDY ON THE LINK BETWEEN THE MEDIA AND THE PERPETUATION OF HATE CRIMES\n                    \n                      December 6, 2007\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today asked Secretary of Commerce Carlos M. Gutierrez for an updated study of a 1993 congressionally-mandated report on the relationship between the use of electronic communications and media communications to encourage acts of hate crimes or to spread messages of hate.In the letter (http://menendez.senate.gov/pdf/120507lettertoSecretaryofCommerce.pdf), Sen. Menendez says that now is the ideal time to revive this study because of the emotionally-driven and biased rhetoric over immigration reform in our current national discourse.\"\"Day after day, we hear rhetoric like: ‘the Latino invasion', ‘illegal alien lobby', ‘amnesty agenda', ‘criminal illegal aliens', and ‘socio-ethnocentric interest groups' broadcast on our nation's television, radio and internet outlets,\"\" said Menendez in the letter.  \"\"I am concerned that this rhetoric could have a harmful effect on the portrayal and safety of our nation's immigrant population, as well as our Latino communities as a whole.\"\" In 1992, Congress directed the National Telecommunications and Information Administration to study the use of telecommunications (including broadcast radio and television) to advocate or encourage violent acts and the committing of crimes of hate against groups of people.  This study, published in 1993, took into account not only messages threatening unlawful action, but also situations in which the speaker intended to create a climate of hate or prejudice.Additionally, the FBI released a report this year showing that in 2006 hate crimes against Latinos have increased by 25% since 2004. To read the FBI's press release, click here: http://www.fbi.gov/ucr/hc2006/pressrelease.html.                                                         ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5d500b9f-bfdc-4b0e-8e5f-9f6d11fde44b,\"AS FIRST PUBLIC HEARING ON PATH FARE INCREASES COMMENCES, SEN. MENENDEZ EXPRESSES HOPES FOR CHANGE OF PLAN\n                    \n                            Menendez has urged Port Authority to reconsider fare hike\n                    \n                      December 6, 2007\n                     WASHINGTON - Today in Newark, the Port Authority is holding its first public hearing on the proposed increase of PATH fares from $1.50 to $2, as well as the increase in tolls for bridges and tunnels across the Hudson. Leading up to the hearing, U.S. Senator Bob Menendez (D-NJ), an opponent of the PATH fare hike, is expressing his hopes that a public airing of the issues surrounding the increase will cause a reconsideration.\"\"Hiking the PATH fare like this puts us on the wrong track at a time when a dollar is stretched thin, when our air is becoming dirtier by the day and when our roads are clogged from congestion,\"\" said Senator Menendez. \"\"This is a prime opportunity for the Port Authority to hear first-hand why this hike is coming at the wrong time and sending the wrong message. I have asked the Port Authority to reconsider and either scrap the fare hike altogether or significantly reduce the hike while guaranteeing that any additional revenue be invested right back in the PATH system, so that New Jersey riders can benefit. I am hoping that these hearings can lay the groundwork for this kind of decision.\"\"Last month, Sen. Menendez urged the Port Authority to reconsider the plan, saying that it could discourage people from taking the exact type of transportation that should be encouraged and that it levies an unfair tax on low-income residents (Text of letter: http://menendez.senate.gov/pdf/111407LetterToPortAuthorityaboutPATHfares.pdf).                                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=91e0a3f9-7df2-472d-a26f-7c740e407cd9,\"SEN. MENENDEZ CALLS ON SENATE REPUBLICANS TO STOP OBSTRUCTING TAX BILL, HELP GIVE RELIEF TO 1.4 MILLION MIDDLE-CLASS NJ TAXPAYERS\n                    \n                      December 6, 2007\n                     WASHINGTON - Republicans in the U.S. Senate today continued to obstruct a bill that would prevent millions of middle-class Americans from paying the higher Alternative Minimum Tax originally designed years ago for the ultra-rich. Senator Bob Menendez (D-NJ) released the following statement:\"\"Today, it is clear the only strategy Republicans have is obstruction. They blocked the very proposal they said they would support. Without a fix to the Alternative Minimum Tax, our state will be hit harder than any other, and there will be 1.4 million middle-class New Jerseyans whose jaws are going to drop when they prepare their taxes next year. They are going to be furious that Republicans in the Senate would play political games with their hard-earned money. For the sake of middle-class taxpayers, it is time to put games aside.\"\"                                                      # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d1682233-d5c0-4884-ab87-111b503546f0,\"SENATE DEMOCRATS DISCUSS BUSH REPUBLICANS' EFFORTS TO BLOCK AMERICA'S PRIORITIES\n                    \n                      December 5, 2007\n                     Washington, DC—Democratic Senators Chuck Schumer, Debbie Stabenow and Robert Menendez today discussed how Republicans and the President have blocked at every turn Democrats' efforts to address America's priorities.  While we have been able to accomplish many of our goals, there is still much left to do.  But Bush Republicans are holding America's priorities hostage, refusing to fund critical needs at home unless we pour more money into Iraq.\"\"Republicans in Congress seem to be satisfied with the status quo,\"\" Schumer said.  \"\"But when that means denying healthcare to 9 million uninsured children, allowing two million families to lose their homes, gas at $3.00 a gallon and rising, and giving the President a blank check to spend $500 billlion on the wrong strategy in Iraq, Republicans in Congress seem to be the only people satisfied with the status quo.\"\" Said Stabenow: \"\"From blocking health care for millions of children of working families to refusing to change course in Iraq, the Bush Administration and their Republican allies continue to slow the work of Congress and defy the will of the American people.  This is a concerted Republican effort to block this Congress from working together to get things done for middle-class American families.\"\"\"\"This year, it has become ever clearer that the ‘R' next to the names of our friends from across the aisle stands for ‘Roadblock,'\"\" Menendez said. On a whole range of basic, kitchen table, pocketbook issues that Americans discuss with their families every day , the president and his party have inexplicably chosen to pick a fight. This is a president and a party who say no, no, no when it comes to investing in our families, but yes, yes, yes when it comes to more troops, more time and more money for their stay the course plan in Iraq.\"\"                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=38327861-5d23-42ab-8bda-93fcc3fd398d,\"Floor Statement on Iraq: As Prepared for Delivery\n                    \n                      December 5, 2007\n                     M. President,For more than 4 straight years now, President Bush has been declaring victory or progress in Iraq. But the thousands of soldiers who have lost their legs or have gone blind or suffer horrible nightmares might be finding it hard to celebrate. The families of those men and women might not be cheering very loud about this war. The thousands more whose children, whose mothers and fathers are lost forever, might be finding it hard to share in the latest cries of victory. Yes, the number of soldiers killed last month dropped to 37. Well, that's another 37 families who have no reason to rejoice. And more American troops have died this year than any other year.M. President, no matter how much military progress has been made in Iraq, that kind of security can only go so far. No amount of troops will force Iraqi politicians to agree on a fair distribution of oil revenues. No Abrams tank can build trust between Shiites and Sunnis. {CHART 1} The whole point of the surge was to create the conditions necessary for Iraqis to make political progress. But just two weeks ago the Washington Post ran this headline: \"\"Iraqis Wasting An Opportunity, U.S. Officers Say.\"\" Iraqi security forces are still unable to operate on their own. Any cease-fire between factions could evaporate in minutes. We've started drawing down troops to pre-surge levels, but we have to wonder whether we're going to be told that we're going to need to re-surge, to do it all over again, because the Iraqi government and security forces are still at square-one.Our generals in Iraq have been the first to admit that a solution to that country's conflict has to be more than a military solution—it has to be a political solution. A political solution is up to Iraqi leaders, and right now, there has been practically zero progress on the core critical issues necessary to bring lasting peace. The administration set 18 benchmarks for the Iraqi government to meet. They have barely met 3. So is it time to turn up the pressure, or let them keep squabbling while Americans pay and Americans die? {CHART 2} There is more corruption in Iraq than almost anywhere else on Earth.  It's a pit of quicksand when it comes to money. Some estimates say as much as a third of the money we spend on Iraqi contracts and grants winds up unaccounted for or stolen—with a lot of it going straight to Shiite or Sunni militias.  Let me repeat that: one out of every three dollars we pay out gets lost or stolen.Even after billions and billions and billions of dollars in funding, Iraqi society is still dysfunctional. American money went toward improving municipal water systems. Iraqis now break open the pipes and steal the water. American money went toward books for schools. Iraqis steal them from the Ministry of Education and sell them on the street at three-times the price. Government officials have sold the furniture right out of their offices. That's what the American taxpayers are funding.So is it time to change our strategy, or ignore the corruption while Americans pay and Americans die?Here's the message we send to Iraqi politicians by sending them a blank check with no expiration date: continue your squabbles, and we'll continue to see the loss of American life and continue to empty our treasury for you, for as long as you like. That message is, you can just sit back, while Americans pay and Americans die.I think it's time for a different message. M. President, after seeing a surge in the military that's lasted for months do nothing about a splurge of corruption that's lasted for years, the conclusion we have to draw from that is clear:the only way Iraqis will take charge of their own country and make the tough compromises necessary to form a functional society is when they believe we won't be there forever. That's the only way.It is long past time for the Iraqi government to take charge, and the only way they're going to step up is if we begin to transition out. A reduction in fighting is not an excuse for a reduction in planning for our involvement to end.The fact is, the violence has not stopped, and the costs of this war have only gone up. The war is costing us $10 billion dollars per month. The debt our government is taking on and that taxpayers are going to be responsible for is exploding at the rate of $1 million a minute. {CHART 3}When the numbers are that high, every American taxpayer has to ask him or herself a basic question: How does the President plan to pay for this war?Well, last week we got a small part of an answer: he wants to cut funding for counterterrorism at home.According to a leaked administration document, President Bush wants to cut counterterrorism funding for cities by more than half. I had to do a double-take when I heard that. I thought, the report had to be wrong. His reported budget would slash funding for police, firefighters, and rescue workers. It could mean fewer security guards at ports, less-reliable detection of explosives, less training for security personnel—basically, it would undercut the entire effort to prevent terrorism that our nation realized, one September day, was one of the most urgent challenges we have ever faced.Cutting counterterrorism funding is simply outrageous. I know this Congress will not stand for it—and the people who live in those cities definitely will not stand for it.  Is it really necessary to remind the President how important it is to protect our homes and families from terrorist attacks? Do we really have to say that we must do everything within the bounds of possibility and the law to prevent a terrorist attack from happening again? Is that a risk he wants to take, to cut what amounts to point-zero-six percent of the federal budget, especially when the War in Iraq has eaten up $455 billion and counting, when the amount he wants to take away from police and firefighters is an amount we spend in Iraq every 5 days?The President has requested $1 billion for the Iraqi police, but wants to cut funding for the COPS program that fights crime in American communities. He'll spend anything on the streets of Baghdad, but suddenly thinks we should be stingy when it comes to security on the streets of our hometowns. The President wants a blank check for Iraq, but nothing for America.From children's health, to cancer research, to crucial water resources, the President has vetoed what's most essential: our health, our safety, our liberty. He has repeatedly said all that is too expensive. Meanwhile, he's requesting $200 billion more to fight a war in Iraq that has achieved nothing for any of us, killed thousands of Americans, and left us more disliked around the world as a nation than at any point in our history. He wants a blank check for Iraq, but nothing for America.If he submits a budget that cuts funding for counterterrorism, he truly would be laying the final brick in the Department of Homeland Hypocrisy.M. President, in high school many of us read George Orwell's book 1984, which was about a nightmare world where words mean the exact opposite of what they should mean.America is really starting to understand what the word \"\"security\"\" means to the President. He apparently thinks funding firefighters, police and emergency responders is excessive. But he wants to spy on Americans without warrants, tap people's phones without any oversight, condone procedures that even the U.S. Army itself considers torture, throw people in jail without trial, and basically ignore the most basic tenets of the justice system of the United States since we drafted our Constitution in 1789.Now, President Bush wants to cut funding to stop terrorism, in order to fund a war that has created terrorists. M. President, America isn't just ready to turn the page on this administration. We're ready for a whole new book. Thank you.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=28e36e91-c818-45be-a5f0-96f12c8aebf0,\"AS LOW-INCOME HOUSEHOLDS STRUGGLE TO HEAT THEIR HOMES, MENENDEZ WORKS WITH COLLEAGUES TO SECURE ADDITIONAL FUNDS TO AID WITH RISING ENERGY PRICES\n                    \n                      December 4, 2007\n                     Washington, D.C. - U.S. Senator Robert Menendez (D-NJ) is working to add an additional $1 billion in funds to the Low Income Home Energy Assistance Program (LIHEAP) to help families who are struggling with rising energy costs this winter. Sen. Menendez joined Senator Jack Reed (D-RI) in asking the president for an additional $1 billion in funding (Menendez.senate.gov/pdf/120307LIHEAPletter.pdf); he is also a co-sponsor of legislation Sen. Bernard Sanders (I-VT) introduced today - the Keep Americans Warm Act of 2007 would also increase funding to LIHEAP by $1 billion.  \"\"In the richest country on earth, people shouldn't have to wonder whether they can keep their homes warm through the harsh winter,\"\" said Menendez. \"\"This winter we must ensure that families on the lowest rung of the economic ladder, who aren't able to keep up with the skyrocketing heating prices, receive the help that they need.\"\" In the letter to the president, the Senators cite a report from the National Energy Assistance Directors Association that maintains that because of the absence of additional federal and state funding, about 15 percent of households—almost 1 million—currently included under LIHEAP will not qualify for the program this winter. The Keep Americans Warm Act of 2007 would provide an additional $1 billion in emergency funding for the LIHEAP.                                                                      ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ee89aaa6-1327-4090-8cd9-9bb73bfa872a,\"SENATORS CALL ON BUSH TO HELP POOREST NATIONS DEAL WITH CONSEQUENCES OF CLIMATE CHANGE\n                    \n                            As international talks in Bali begin, Senators Menendez, Biden, Kerry, Sanders, Dodd and Bingaman look toward \"\"adaptation\"\" assistance\n                    \n                      December 4, 2007\n                     WASHINGTON - As the largest-ever world climate change conference gets underway in Bali, a group of U.S. Senators, led by Sen. Robert Menendez (D-NJ), is urging President Bush to help poorer nations cope with the problems caused by climate change, in order to prevent unimaginable hardship in those countries and the potential of greater instability worldwide (PDF or letter: http://menendez.senate.gov/pdf/120407lettertowhitehouse.pdf).Senators Menendez, Joseph R. Biden, Jr. (D-DE), John Kerry (D-MA), Bernie Sanders (I-VT), Christopher Dodd (D-CT) and Jeff Bingaman (D-NM) are urging the president to secure an agreement coming out of the 13th Conference of Parties of the United Nations Convention on Climate Change that will ensure meaningful assistance to developing countries to cope with the severe impacts of climate change. The Senators point out that such assistance to vulnerable nations is a moral imperative and can help prevent global conflict and instability brought on by refugees and a scarcity of resources.\"\"We are experiencing a planetary emergency, which means that we're all in this together,\"\" said Senator Menendez, Chairman of the Subcommittee on International Development and Foreign Assistance, Economic Affairs, and International Environmental Protection. \"\"Natural disasters on one side of the globe will affect people on the other side, so the response to climate change must be worldwide in scale. It is not only in our moral interest as the world's strongest nation but certainly also in our national interest to help the world's poorest nations cope with climate change and to help preserve global peace when the severe climate consequences come to bear. President Bush must treat this as the true emergency that it is and help the world prepare.\"\"\"\"Global warming knows no borders and many of the countries most at risk from the consequences have done little to cause the problem,\"\" said Senator Biden, Chairman of the Senate Foreign Relations Committee.  \"\"Supporting their efforts to deal with climate change will reduce the threat of instability in these fragile states, and will help build consensus for a global solution.\"\"\"\"As the world's largest emitter of greenhouse gasses and wealthiest nation on earth, America needs to lead the effort to help at-risk nations adapt to climate change,\"\" said Senator Kerry. \"\"These vulnerable populations are feeling the effects of climate change more than anyone on earth. They are watching their homelands suffer from flooding, droughts, destroyed crops and severe storms, but are without the capabilities to respond. To meet the challenge of global climate change, we must take immediate action to reduce our emissions here at home, but we also must ensure we do not leave the most disadvantaged behind.\"\"\"\"All over the world, people grapple with the crisis of global warming,\"\" said Senator Sanders. \"\"We are facing an enormous tragedy if we do not get our act together.  We need bold leadership in confronting this potential catastrophe.\"\"\"\"The United States must demonstrate responsible leadership to address the crisis of global warming,\"\" said Senator Dodd. \"\"To do so, we must work with the global community to reduce greenhouse gas emissions and work to protect impoverished nations that will be most affected by climate change.  The crisis of global warming is moving at an astounding rate and President Bush must take action now.\"\"Text of letter:December 4, 2007The Honorable George W. BushThe White House1600 Pennsylvania Avenue, N.W.Washington, D.C.  20500Dear Mr. President:As the 13th Conference of Parties of the United Nations Framework Convention on Climate Change gets underway in Bali, Indonesia, we write to urge you to support a post-2012 international climate change framework that will include robust and effective assistance to vulnerable developing countries to adapt to the severe impacts of climate change.  The United States and the global community must make commitments to deep reductions in greenhouse gas emissions, but addressing global warming cannot just be about reducing emissions.  If the United States is going to demonstrate true leadership, we must fulfill our obligation to protect those who are most in need.As you are aware, impoverished countries will be hit first and worst by climate change and have the least capacity to cope with increasingly devastating impacts, including water scarcity, droughts, sea-level rise, floods, severe weather events, disruption of agricultural production, and spread of disease. Indeed, climate change is quickly becoming a major driver of poverty around the world. Ensuring assistance to vulnerable countries facing these impacts is a moral commitment our country should make to the poorest around the world.  Moreover, taking such action is in our national interest.  Providing assistance to prevent some of the worst outcomes from climate change will reduce the costs of later providing disaster assistance or famine relief.  Addressing the needs of poor communities will also help to stem the international conflict and instability that will likely be caused by the movement of climate refugees and resource scarcity. Many of the least developed countries are looking to the United States to support the inclusion of adaptation assistance in a post-2012 climate agreement.  Unfortunately, the current level of international funding available to developing countries for adaptation is wholly inadequate to meet their needs.  Advocating for sufficient funding is an opportunity for the United States to assert its international leadership in the Bali negotiations. We hope that you will seize this opportunity and demonstrate our deepest ideals as Americans by leading the way in securing an international commitment to adaptation funding.Sincerely,ROBERT MENENDEZ                                                                       United States Senator                                                                  JOSEPH BIDEN Jr.United States SenatorJOHN KERRYUnited States SenatorBERNARD SANDERSUnited States SenatorJEFF BINGAMANUnited States SenatorCHRISTOPHER DODDUnited States Senator                                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e620f75c-a463-4905-8247-0837aefe9f8e,\"SEN. MENENDEZ REACTS TO REPORTED BUSH ADMINISTRATION PLAN TO SLASH ANTI-TERRORISM GRANTS\n                    \n                            News reports cite administration document showing request for less than half of what DHS wants, elimination of port, transit programs\n                    \n                      December 3, 2007\n                     WASHINGTON - According to a report by the Associated Press citing Bush administration budget documents, President Bush plans to request a sharp decrease in funds for first responder grants when he submits his FY09 budget proposal early next year. The administration reportedly wants to cut programs for port security, transit security and local emergency management operations and will request $1.4 billion in local anti-terror funds, drastically lower than the $3.2 billion that the Department of Homeland Security wants.Senator Bob Menendez (D-NJ), who has long advocated for increased grants to the cities and states most at risk for terrorist attacks and for port and transit security programs, today released the following statement:\"\"For an administration that constantly uses 9/11 and the continuing terrorist threats to justify a whole range of policies, this would seem to be a decision rooted in a pre-9/11 mentality. We've seen a lot of questionable homeland security decisions by the Bush Administration over the past six years, and this one would be one the more misguided moves.\"\"\"\"At the same time the president is asking for $200 billion for the Iraq War this year, he reportedly wants to shortchange local first responders along with port and transit security here at home -- even in the areas most at risk. With al Qaeda having regrouped in a safe zone along the Afghanistan-Pakistan border, it's clear that our number one enemy is back in business and that our first responders need all the preparation they can get.\"\"These reported cuts would seem to have a disproportionate effect on New Jersey, with our heavy concentration of people, ports and transit systems. I will stand up for security in our state and work to make sure this plan doesn‘t see the light of day.\"\"                                                                       # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=12e787a8-ba7a-4b9c-8018-45337f4052e7,\"MENENDEZ STATEMENT ON THE 60th ANNIVERSARY OF THE UN RESOLUTION CREATING THE STATE OF ISRAEL\n                    \n                      November 29, 2007\n                     Washington, D.C. - Senator Menendez released the following statement today commemorating the 60th anniversary of the 1947 UN General Assembly Resolution 181, creating the State of Israel:\"\"As someone with a strong belief in Israel, its people and its importance as a close ally, I am proud to join in the celebration of this historical milestone, \"\"said Senator Menendez. \"\"I have been committed throughout my time in Congress to ensuring that the State of Israel is secure and can prosper, and will continue to stand up for our close ally and work for a more peaceful Middle East.\"\"                                                        ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=45ab36ab-4624-440f-8f0e-b2498a2b7785,\"MENENDEZ, LAUTENBERG ANNOUNCE FEDERAL FUNDS TO PREPARE NEW JERSEY STUDENTS TO SUCCEED IN COLLEGE\n                    \n                            Earlier this year, the senators helped passed the College Cost Reduction and Access Act, which increases funding for the Upward Bound Program\n                    \n                      November 27, 2007\n                     Washington, D.C. - Senators Robert Menendez (D-NJ) and Frank Lautenberg (D-NJ) today announced that the U.S. Department of Education will award four New Jersey Universities with more than $1 million in federal funds to improve college preparation for underserved students. The Upward Bound program aims to increase the rate at which participants complete secondary education and enroll in and graduate from higher education institutions. \"\"With these funds, we are helping throw open the doors to college for New Jersey students who may be underserved but are determined to achieve. Upward Bound is a great investment because it provides training and support to help our youth to complete high school and eventually succeed in college,\"\" said Menendez.  \"\"In the global economy we live in today, we clearly cannot afford as a nation to neglect our students.\"\"\"\"Every child in New Jersey deserves the chance to go to college,\"\" said Lautenberg. \"\"This funding will help provide real opportunities to students in underserved communities in New Jersey.  I applaud Upward Bound for their work helping our young people gain the training, motivation and skills they need to be successful in college and throughout their lives.\"\"The universities to be awarded these grants are:Georgian Court University: $250,000Kean University: $276,600New Jersey Institute of Technology: $250,000Rowan University: $244,028                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d22258ca-78ac-42be-a792-ac0ede9b373e,\"NJ's Gunning Island Protected\n                    \n                      November 21, 2007\n                     Rumson, NJ, 11/20/2007: The Trust for Public Land (TPL) and the Borough of Rumson announced today the protection of 20 acres on Gunning Island today. Partners in the effort, including U.S. Senator Frank R. Lautenberg and other federal officials, and representatives of the Borough of Rumson, the state of New Jersey, Monmouth County, and Boy Scout Troop 201, gathered alongside the Shrewsbury River to celebrate the $2.05 million purchase.Blum Island, Inc. donated the land to the Monmouth County Boy Scout Council, which sold the land, meaning that all of Gunning Island is now owned by the borough and will be managed for public benefit.\"\"The conservation of Gunning Island ensures that this undeveloped island and its ecological, educational, and recreational benefits will be forever protected for current and future generations of New Jerseyans,\"\" said Terrence Nolan, New Jersey field office director of The Trust for Public Land, a nonprofit land conservation organization that negotiated the purchase. \"\"We are very grateful to all of the partners in this project and for the leadership of New Jersey's congressional delegation for securing critical federal funding for this effort.\"\"\"\"The Borough of Rumson is very pleased to be a part of the preservation of Gunning Island and in preserving the unique features of the Navesink and Shresbury rivers that surround the borough,\"\" said Mayor John Ekdahl. \"\"Preserving the island as open space will allow future generations to enjoy and participate in recreation activities on the rivers that surround us.\"\"The effort conserves scenic views and protects wildlife habitat and water quality. The newly created wildlife preserve will is accessible by water to kayakers, canoeists, student groups, birders, and others for recreation and wildlife viewing.The New Jersey congressional delegation secured federal funding from NOAA's Coastal and Estuarine Land Conservation Program to protect the property.\"\"This is a good day for our state's environment and for New Jerseyans who love the outdoors. Our densely-populated state benefits from Gunning Island because it creates a habitat for wildlife and protects the natural beauty that New Jersey has to offer. I am delighted that the funding was secured to protect this important piece of open space,\"\" said Senator Robert Menendez.\"\"We need to do all we can to preserve open spaces in the Raritan Bay watershed and throughout New Jersey,\"\" said Senator Lautenberg. \"\"Gunning Island is a vital habitat for the plant and animal wildlife in our region. I am proud to have helped secure the funding to acquire this land and to ensure Gunning Island is preserved for future generations of New Jersey's children.\"\"\"\"The purchase of this remaining land on Gunning Island ensures the entire Island will now be protected and preserved for the benefit of our community and our environment,\"\" said U.S. Representative Frank Pallone, Jr. (D-NJ). \"\"This new preserve will offer a haven for wildlife, protect our water quality, and offer recreational enjoyment for generations to come.\"\"\"\"The New Jersey Department of Environmental Protection is proud to have played a part in preserving this important property, which is so rich in natural resources,\"\" said John Flynn, administrator of the DEP's Green Acres Program. \"\"We are very fortunate to have so many outstanding partners working to preserve New Jersey's landscape. Thanks to the efforts of the funding partners, wildlife enthusiasts will be able to enjoy the quiet and natural beauty of Gunning Island forever.\"\"\"\"Gunning Island is a wonderful addition to Monmouth County's open space preservation program,\"\" said Monmouth County Freeholder Deputy Director Lillian G. Burry. \"\"Its central location ensures that future generations will forever enjoy the beauty and tranquility of the Shrewsbury River. We thank our federal representatives, the State, the Borough of Rumson, and the Boy Scout Council for making this permanent preservation of open space a reality.\"\"Gunning Island is located in the Shrewsbury River where it flows into Raritan Bay just south of Sandy Hook. Nestled between Monmouth County, New Jersey and Staten Island, New York, Raritan Bay forms one of the outermost sections of the New York-New Jersey Harbor ecosystem. The shoreline, wetlands, and uplands of the bays are ecologically important habitats for birds, marine life, and fisheries. There are few remaining parcels of open space in the watersheds draining into Raritan Bay, the most densely populated region in the United States.Gunning Island was a natural sedge island before being supplemented by dredged soil from the Shrewsbury and Navesink rivers. The augmented island has quickly filled in with native flora and fauna, and is rapidly becoming an important stopover point for migratory birds, also acting as permanent habitat to birds and other animals. The adjacent sedge islands also benefit from the conservation of Gunning Island.In addition to the protection of Gunning Island, NJ's congressional delegation is taking the lead in Congress on reauthorizing the Coastal and Estuarine Land Conservation Program (CELCP). Sen. Lautenberg is one of the primary sponsors of S. 1142, the Coastal and Estuarine Land Protection Act. That bill has moved through committee and is awaiting a Senate floor vote. Similarly, NJ's representatives are the lead sponsors of the House bill, H.R. 1907.The Trust for Public Land is a national nonprofit land conservation organization that conserves land for people to enjoy as parks, gardens, and natural areas, ensuring livable communities for generations to come. Since 1972, TPL has helped protect more than 2.2 million acres nationwide, including more than 25,000 acres in New Jersey.                                                                   ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=62af20d6-90c1-419e-bd0c-1e4d0038ff62,\"IN LIGHT OF RECENT FINANCIAL TURMOIL, SENATOR MENENDEZ INTRODUCES BILL TO EXPAND ACCESS TO FINANCIAL EDUCATION\n                    \n                      November 21, 2007\n                     Washington D.C. - Senator Robert Menendez (D-NJ), a member of the Banking, Housing, and Urban Affairs Committee, last week introduced the Financial Education and Counseling Act, which creates a grant program specifically for financial education and counseling.\"\"The most basic and obvious step we can take to empower families in the midst of the national financial unease and the home foreclosure crisis, is to provide them with the information and knowledge to help them make the best decisions about their financial future,\"\" said Menendez. \"\"It is our responsibility as lawmakers to ensure that our citizens are informed and are equipped to navigate through a complicated financial system.\"\"The Financial Education and Counseling Act would provide grants for organizations and agencies that currently provide housing counseling or related financial counseling services to help them expand and would also help new organizations offer these services.Financial counselors would provide a range of assistance including: • promoting financial education, • helping individuals understand and improve their credit history and credit score, • assisting individuals plan for major purchases, reduce their debt, or help them improve financial stability, • working with individuals to design a plan for long-term savings.                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=024d7657-c2ec-4ba1-976d-366b0ecdedd6,\"AS HOLIDAY TRAVEL SEASON BEGINS, SEN. MENENDEZ CALLS ON FAA TO SCHEDULE MEETING ON DELAYS AT NEWARK AND ADDRESS AIR TRAFFIC CONTROLLERS ISSUE\n                    \n                            Menendez originally wrote FAA in August urging new approaches to dealing with flight delays\n                    \n                      November 20, 2007\n                     WASHINGTON - As the holiday travel season beings and travelers brace for extensive flight delays, U.S. Senator Bob Menendez (D-NJ) is again urging the Federal Aviation Administration and U.S. Department of Transportation to consider strong actions to ease delays and to adopt a regional approach to dealing with congestion in the New York/New Jersey airspace (Click here for letter or see text below: Menendez.senate.gov/pdf/112007lettertoFAAandUSDT.pdf). Sen. Menendez, who first wrote the FAA in August to urge the exploration of flight caps and other innovative ideas, said he is encouraged by the FAA's recent willingness to propose partial solutions, but remains concerned that Newark Liberty International Airport has not received specific attention and that the FAA has done little to retain experienced air traffic controllers.\"\"Air travelers want to spend the holidays sitting around the dining room table with their loved ones, not sitting on the floor in the airport,\"\" said Sen. Menendez. \"\"It's somewhat encouraging that the FAA has finally shown some initiative in dealing with the endless delays, but a few so-called ‘express lanes' aren't a cure-all. I want to make sure the FAA isn't going to rest on its laurels, and I want to make sure that they will take a regional approach to dealing with congestion in our area.\"\" Text of letter to FAA: November 20, 2007The Honorable Robert A. Sturgell                                   Deputy and Acting Administrator800 Independence Ave, SW                                          Washington, DC 20591     The Honorable Mary E. Peters        Secretary     U.S. Department of Transportation                    Federal Aviation Administration                     1200 New Jersey Ave, SE        Washington, DC 20590       Dear Secretary Peters and Administrator Sturgell:I am writing to follow up on a letter I sent to you on August 21st concerning flight delays in the New Jersey/New York area.  Thus far I have not heard a response to this letter and while I am encouraged by some of your recent actions taken to address flight delays, I think your efforts still fall short of the mark.  If delays are not improved this holiday season, then I think that should serve notice that you must act quickly and boldly to prevent even worse delays next summer.I have attached a copy of my August letter, but in summary I called on both the Department of Transportation (DOT) and the Federal Aviation Administration (FAA) to examine whether temporary limits on operations (otherwise known as \"\"caps\"\") should be placed on all of the region's airports, to immediately convene a schedule reduction meeting with all relevant operators in the region, and to reexamine whether other strategies should be employed such as giving priority to larger planes.While I am encouraged that action has taken place at JFK Airport, I have noticed a complete lack of action at Newark Liberty International Airport. For instance, flight reduction meetings have already taken place at JFK, but despite an anticipated announcement, nothing has taken place yet at Newark.  Further it is rumored that caps on flights are inevitable at JFK, but are not being considered in Newark.  Such a piecemeal approach will never solve what is a regional issue and action at JFK only could very well make delays at Newark even worse.I would also like to raise another issue that I feel is directly related to flight delays and that is the FAA's management of its air traffic controllers.  For too long the FAA has failed to treat its air traffic controllers with respect and has failed to negotiate a fair contract.  This has led to a mass exodus of experienced controllers who can handle increased flight traffic.  In FY07, 856 air traffic controllers retired. In their place over 600 air traffic positions have been filled by new employees with no experience. In fact, this holiday season, there are 7.5 percent fewer veteran, fully trained controllers on the job nationwide than in 2006, handing 4 percent more traffic.  This scenario will undoubtedly lead to disastrous delays this week and next summer.The DOT and the FAA must use all reasonable means to reduce flight delays.  The industry, its workers, and, most importantly, the traveling public are depending on you to address this serious problem.  I thank you for your attention to this matter, and I ask for a prompt response to this letter and to my letter sent to you in August.Sincerely,ROBERT MENENDEZUnited States Senator                                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=97f574e4-ee97-4725-86b2-60481647120e,\"STUDY DETAILING HIGHER COSTS FOR CAREGIVERS OF THE ELDERLY FURTHER ILLUSTRATES IMPORTANCE OF SEN. MENENDEZ'S LEGISLATION TO PROVIDE RELIEF\n                    \n                            Menendez's Caregiver Assistance and Relief Effort (CARE) Act would provide tax credits and make long term care more affordable\n                    \n                      November 20, 2007\n                                  Washington D.C. - A study published today by the National Alliance for Caregiving and Evercare demonstrates that out-of-pocket cost for caring for the elderly has risen to about $5,500 a year nationwide.  The report shows that these estimates are a significant increase from previous years and that federal assistance in the form of tax deductions, credits or other stipends are needed.             U.S. Senator Bob Menendez (D-NJ), an advocate for New Jersey families, has authored The Caregiver Assistance and Relief Effort (CARE) Act, which would help families afford the cost of caring for ailing family members or loved ones by making long-term care more affordable. The legislation would provide tax credits to those caregivers; encourage individuals to plan for and invest in their own long-term care by offering a tax deduction for long-term care insurance; and increase funding for the existing National Family Caregiver Support Program, which supports a wide range of important services for older persons.              \"\"Millions of caregivers in this country are making sacrifices to care for their loved ones everyday. They are facing a rise in the costs for caring for their elderly family members, and we should ease this burden—that is what the CARE Act aims to accomplish,\"\" said Menendez.            New Jersey has the ninth most caregivers in the county, with more than 831,000 caregivers in the state.                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c79678f4-39c1-43be-8b1d-318be13c3a26,\"Menendez, Champion of Liberty Corridor Economic Development Plan,  Hails NJPTA Authorization Of Funds\n                    \n                            Menendez secured the $100 million in federal funding authorized for expenditure today\n                    \n                      November 19, 2007\n                     WASHINGTON - U.S. Senator Bob Menendez today applauded the North Jersey Transportation Planning Authority for authorizing the expenditure of $100 million in federal funding for the Liberty Corridor transportation and economic development initiative - the beginning of what will hopefully be multiple rounds of federal funding. As a member of the House Transportation Committee, Senator Menendez had the Liberty Corridor designated as a transportation corridor of National and Regional Significance, and he secured the initial $100 million in federal funding.\n\n \"\"This project will be an economic, jobs and transportation engine for this area,\"\" said Sen. Menendez. \"\"This is just the beginning, and the progress will become evident - it will help innovative companies get off the ground, thrive and move products throughout the state, across the country and around the world. Investing in Liberty Corridor is investing in the economic future of New Jersey, and the quality of life of all New Jerseyans. I am proud to have secured federal funding, and I am thrilled that the NJTPA has approved this portion for important transportation upgrades.\"\"\n\nThe projects announced today will help improve the flow of freight around the region, open up abandoned brownfields for redevelopment, and improve traffic conditions for hundreds of thousands of New Jerseyans. They include a bus rapid transit line in Essex and Union counties, a raising of the overhead clearances on Conrail's National Docks Secondary Line in Hudson County and various other rail and road improvements.\n After securing federal funds, Sen. Menendez worked with the New Jersey Department of Transportation and the Liberty Corridor Advisory Board to select the ten projects and submit a final application to the Federal Highway Authority. Final Approval of the selected projects is expected by the beginning of next year.\nThe Liberty Corridor is an economic development strategy combining road and rail improvements to help move freight throughout the region, harbor and terminal improvements to keep Port Elizabeth and Port Newark as the top seaport on the east coast, new freight movement strategies to ease congestion on our roadways and improve the quality of our air, brownfields redevelopment to put abandoned industrial properties to more productive use, and incentives to spur the continued growth of New Jersey's research and development sector.\nGeographically, the Liberty Corridor starts at the Port of New York and New Jersey and runs southwest across the state, encompassing all or parts of Hudson, Bergen, Passaic, Essex, Union, Somerset, and Middlesex counties.\n ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=738348b8-5f4e-4908-a6d3-491b37a4ef3e,\"MENENDEZ INTRODUCES BILL TO PROVIDE GLAUCOMA SCREENING AND AWARENESS\n                    \n                      November 15, 2007\n                     Washington, D.C. - United States Senator Robert Menendez (D-NJ) recently introduced the Glaucoma Screening Act to establish a grant program that provides screenings for glaucoma to individuals determined to be at high risk for Glaucoma and for other initiatives.\"\"Knowing that early detection and treatment of Glaucoma means that we can reduce the progression of the disease by 50 percent, this bill is a good investment,\"\" said Sen. Menendez. \"\"I will work with my colleagues in Congress toward making this law.\"\"It is estimated that only half of the more than 3,000,000 individuals in the United States that have glaucoma are aware that they have the disease. In addition, recent studies show that less than 45 percent of Medicare diabetics, a group considered to be at high risk for Glaucoma have had an eye exam. Glaucoma is the leading cause of blindness among African-Americans and Hispanics. In response, the bill directs the secretary to include coverage of Glaucoma screenings under Medicare for Hispanics.                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=c368a7e3-b404-4cd0-8a28-0796c78bb9fa,\"SEN. MENENDEZ REITERATES THAT NEW PATH FARE INCREASE PLAN LEVIES EXCESSIVE TAX ON NJ COMMUTERS, DISCOURAGES MASS TRANSIT USE\n                    \n                            Menendez has sent letter to Port Authority asking for reconsideration of fare hike\n                    \n                      November 15, 2007\n                     WASHINGTON - According to news reports, the Port Authority today will announce a fare hike for PATH trains. U.S. Senator Bob Menendez (D-NJ) is reaffirming his opposition to the increase as currently structured.Last week, as reports of the PATH fare hike were circulating, Sen. Menendez urged the Port Authority to reconsider the plan, saying that it could discourage people from taking the exact type of transportation that should be encouraged and that it levies an unfair tax on low-income residents (Text of letter: http://menendez.senate.gov/pdf/111407LetterToPortAuthorityaboutPATHfares.pdf). Today, Sen. Menendez again called for a reconsideration of the hike and for the investment of any revenue from additional fares back into the PATH system.\"\"The more frustrating traffic gets, the longer our commutes grow and the dirtier our air becomes, the more we should be encouraging commuters to take the PATH. This plan as it stands does the opposite, and I have called on the Port Authority to reconsider,\"\" said Sen. Menendez. \"\"The 50-cent increase is excessive. I'm sure the folks on the New York side of the Hudson are happy with this de-facto commuter tax, but it only places an additional burden on New Jersey riders, especially those who are paid the least.\"\"I am asking the Port Authority to think twice about this. They should scrap the fare hike altogether or significantly reduce the hike while guaranteeing that any additional revenue be invested right back in the PATH system, so that New Jersey riders can benefit. Looking at this from a broader view, the overarching strategy should be to keep our bridges and tunnels sound while taking steps to reduce maddening traffic and help clean our air. Encouraging PATH ridership is part of the overall solution.\"\"According to reports, the Port Authority plans to implement the jump from a $1.50 fare to $2 early next year. Published reports have pegged the amount of additional revenue that would come from the fare increase at $15 to $30 million, which is a only fraction of both the $3 billion the Port Authority has said it will spend on infrastructure improvements for the PATH system and the $649 million in annual security costs for the Authority.                                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=24367f91-cd70-4bf8-aad7-4b77e3b308ae,\"\"\"THE IRAQ WAR: WHAT IT'S COSTING US HERE AT HOME\"\": SEN. MENENDEZ CONTINUES SERIES OF SPEECHES, FOCUSES ON VETERANS CARE\n                    \n                            4 month of war spending in Iraq could pay for entire Veterans Health Administration budget;Menendez on president's funding priorities: \"\"Never have calls for fiscal responsibility been so morally irresponsible\"\"\n                    \n                      November 14, 2007\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today continued his series of floor speeches aimed at highlighting what Iraq War spending could provide in domestic priorities. Today, on the heels of Veterans Day and President Bush's criticism of Democratic funding priorities, Sen. Menendez focused on what Iraq War spending could be providing in terms of care for our veterans.What Iraq war spending could do for veterans care here at home:·         4 months of Iraq War spending would cover the entire Veterans Health Administration budget, as included in the pending appropriations bill ($37 billion)·         Two weeks of Iraq War spending would cover the cost of the new G.I. bill for veterans education, as proposed by Senator Jim Webb, D-VA ($5.4 billion)·         16 hours of Iraq War spending would cover the cost of the portion of the Homes for Heroes Act that would help community and non-profit organizations offer housing to low-income veterans ($225 million)\"\"Democrats wanted to send the bill increasing veterans' funding to the President before Veterans' Day. But President Bush is trying to use veterans' funding as an excuse to veto other programs America depends on,\"\" said Sen. Menendez \"\"The President has also said that funding a new GI Bill for veterans' education is too expensive. Never have calls for fiscal responsibility been so morally irresponsible.\"\"Sen. Menendez plans to deliver speeches in this series periodically, particularly when a domestic policy priority is being considered on the Senate floor.Below is the text of his remarks from today, as prepared for delivery:THE IRAQ WAR: What It's Costing Us Here at HomePart IV: Iraq VS. Veterans fundingM. President,Three weeks ago I began a series of speeches on the price America is paying for the failed War in Iraq. The number of American servicemen and women killed in action has risen to 3,855—and with every death of a husband or a wife, a son or a daughter, a mom or a dad, the suffering of a family soars to that place where numbers don't matter, to that place where pain is beyond infinite. I've spoken about what the war has cost us financially. Since the war began more than four long years ago, we have spent over $455 billion. Over the long run, it will cost almost $2 trillion. Again, those aren't just numbers. Those were cargo scanners that could have been installed in our ports, safer bridges that could have been built, life-saving cancer research that could have been done—a world of possibilities that passed us all by.I've tried to help us all imagine what we're giving up by failing to wake ourselves up from the living nightmare that is the War in Iraq.Today I'd like to talk about the people who have given so much up, people who will be paying for this war for the rest of their lives: our veterans and their families. On Sunday we celebrated Veterans' Day. I'd like to talk about how much we could do for those who served with the amount of money we used to send them into harm's way. 28,451 troops have come back from Iraq with horrible wounds. Some wounds are physical. Some have had their legs or arms blown off by bombs, some are blind from shrapnel in their eyes. And some wounds are mental.Denying that war can wound a brain along with the rest of the body is denying so many veterans' nightmares, flashbacks, shock, or changes in personality so radical that loved ones no longer recognize the person they once knew.Today Army researchers are releasing a study showing that the full psychological impact of the war tends to hit soldiers even harder 6 months after they return from the war. So the ranks of the suffering are about to grow by many thousands.Beyond the human costs of these injuries, the financial costs to our society are tremendous.A report released by Physicians for Social Responsibility puts the cost of medical care and disability benefits for veterans returning from Iraq at over $660 billion. So in a very direct sense, the war has been more than twice as financially expensive as we might think just looking at the combat costs. The human and financial costs don't end with just health care. Here's a shocking statistic: veterans make up 1-in-4 homeless people in this country—that means almost 200,000 vets don't have a home to go back to tonight. Experts say rates of homelessness are spiraling up faster than they did after the war in Vietnam.M. President, this is a moral outrage. These people put their lives on the line for our country, no questions asked. It is shameful that our men and women in uniform would be sent to patrol the streets of Baghdad, only to have to come back and sleep on the streets of their home towns.That's why Democrats in Congress are working to give Veterans the support they deserve. The Senate has just passed a bill that contains the largest increase in funding for our veterans in history. We're reinvigorating our Veterans Affairs department with a record $87 billion, which is several billion dollars more than President Bush said he was willing to give. $37 billion is for veterans' health care. Billions of dollars are headed to expand medical services, and beef up the administrative side so vets spend less time waiting to get their benefits. Compare this to the costs of combat.We could pay for the entire Veterans Health Administration budget, all $37 billion of it, with what we spend in less than 4 months of combat in Iraq.Just as important as making sure vets have excellent health care is making sure they have the opportunity to get an excellent education.I'm proud to be a cosponsor of a bill offered by Sen. Webb, that would be the biggest boost to veterans' education since World War II.Preparing thousands of veterans to enter the civilian workforce through a first-rate education would cost $5.4 billion next year.In other words, it would cost what it takes to fund combat in Iraq for roughly 2 weeks. Democrats in Congress are also working to end the pandemic of homelessness. I joined with Sen. Obama to support a bill called Homes for Heroes.The bill would establish permanent housing and services for low-income veterans and their families.It would make more rental assistance available, assist providers of veterans' housing and services, and focus more attention on vets who are homeless. Of course, the more soldiers who go off to war, the more necessary this bill becomes.The portion of the bill that helps community and nonprofit organizations offer housing to low-income veterans would require $225 million to fund. Compare that to the costs of combat.We grind up enough money to house thousands of veterans in 16 hours in Iraq—not even a day.Of course the price we pay in dollars can never compare to the price our wounded warriors and their families pay, in lost limbs, in haunted dreams, in lives changed forever. That's a price that not one more soldier should be asked to pay for a pointless war.In the meantime, we need to act fast to get returning vets the help they need. Veterans got their wounds following their government's orders. Those wounds can only heal if the government re-orders its priorities.Democrats wanted to send the bill increasing veterans' funding to the President before Veterans' Day. But President Bush is trying to use veterans' funding as an excuse to veto other programs America depends on. The President has also said that funding a new GI Bill for veterans' education is too expensive.Never have calls for fiscal responsibility been so morally irresponsible. First and foremost, we can never forget that the price tag for veterans' services wouldn't be so high if this administration didn't recklessly send them into harm's way to begin with.The President seems to think we can't afford to spend on both veterans' health and children's health. He seems to think we can't afford to treat the wounds our soldiers suffer and fund cancer research to save civilians from that brutal killer. He seems to think we can't afford to ensure the safety of our returning soldiers and make sure all Americans find safety in the workplace.But he did seem to think we could afford to chase Osama Bin Laden in Afghanistan, as we should have, and invade Iraq—even though both situations are now serious challenges.He did seem to think we could fight a 2-trillion dollar war in Iraq and give a massive tax cut to millionaires and billionaires—even though the economy hovers near recession and most American families are no better off than at the beginning of his administration. He did seem to think he could sign every bill the Republican-controlled Congress sent him, running up debt to the tune of $3 trillion, borrowing money from foreign countries to pay for a war that makes no sense, ignoring pressing national priorities, underfunding care for veterans,leaving our ports vulnerable, leaving our educational system in peril, leaving the massive crisis of climate change completely ignored, leaving children without health care, leaving 47 million Americans with no health insurance whatsoever, and he thought he could get away with it.Now is the time for us to stand up and say, sometimes you can't have it both ways. But when it comes to children's health, education, homeland security, and veterans' care —we'd better be getting all the support we need.M. President, on Sunday, our nation devoted a day to those who devoted themselves to the nation through military service.We took that day to celebrate how lucky we are, how unbelievably blessed we are that such brave men and women rise up again and again to offer their service when they hear the call. I hope we took that day to offer not just words, but deeds of thanks. We took that day to remember the duty we have to them, because of the devotion they showed to us.Veterans' Day is about a fundamental principle: When soldiers ship off to war, if we can look them in the eye and tell them there's a good reason we're waving goodbye, we'd better be able to look them in the eye when they come back and tell them we mean it when we say they're welcome home.To the 171,000 troops still in Iraq, America's message on Sunday was, we look forward to the soonest possible year when we can celebrate Veterans' Day here with all of you.M. President, I yield the floor.                                                                ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f5e28104-8ca6-47ab-ba74-99f4fa6738f7,\"DEFENSE APPROPRIATIONS BILL SIGNED INTO LAW WITH KEY LAUTENBERG, MENENDEZ PROVISIONS\n                    \n                            Measure includes funding for the Garden State Cancer Center, Rutgers University, Fairleigh Dickinson University, Englewood Hospital,and other statewide institutions\n                    \n                      November 14, 2007\n                     WASHINGTON, D.C. - President Bush yesterday signed into law a defense appropriations measure with more than $100 million in funding for important projects in New Jersey sponsored by Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert Menendez (D-NJ). \"\"This bill provides critical funding for medical research and technology to better treat and protect our soldiers, to help military families with daily needs such as child care and counseling, and for equipment and training for our troops,\"\" said Sen. Lautenberg. \"\"This bill is good for New Jersey and good for the nation.\"\" \"\"These are the types of investments that support our New Jersey troops and their families, and they are the types of sound investments that Congress is working to make,\"\" said Sen. Menendez. \"\"This bill gives our troops the resources they need to stay safe and the care they deserve to stay healthy.\"\"                         The Defense Appropriations bill funds the Department of Defense and it includes a 3.5 percent pay raise for all military personnel.  It also fully funds the military health insurance plan, also known as TRICARE, without additional cost to the troops and provides funding for Defense health programs such as peer-reviewed breast, prostate and ovarian cancer research.The bill passed the Senate on November 8, 2007 and was signed into law on November 13, 2007.  Below is a list of several New Jersey projects funded in the Defense Appropriations bill: $8 million for the Bayonne Local Redevelopment Authority for stabilization and repair of the Ship Repair Facility at the Military Ocean Terminal at Bayonne (MOTBY); $800,000 for the Garden State Cancer Center Vaccine Development Program in Belleville to help develop a vaccine against smallpox; $800,000 for the Military Biomaterials Institute for Acute and Regenerative Care at Rutgers University to develop innovative long-term tissue regeneration therapies;$4 million for Hackensack University Medical Center for the Mobile Rapid Response Prototype; $750,000 for Fairleigh Dickinson University  in Teaneck for the National Guard Global Education Program; $1.6 million for Englewood Hospital for the New Jersey Institute for the Advancement of Bloodless Medicine and Surgery;     $2.4 million for the Cancer Institute of New Jersey and the Dean and Betty Gallo Prostate Cancer Center in New Brunswick;  $2.4 million for VaxInnate in Cranbury for the Synthetic Malaria Vaccine program; and  $2.4 million for the Stevens Institute of Technology in Hoboken to develop techniques to secure critical defense communication networks.                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=beb27b2e-cf81-43b9-86d2-a01c35933bd5,\"THE IRAQ WAR: What It's Costing Us Here at HomePart 4: Veterans' Affairs\n                    \n                      November 14, 2007\n                     M. President,Three weeks ago I began a series of speeches on the price America is paying for the failed War in Iraq. The number of American servicemen and women killed in action has risen to 3,855—and with every death of a husband or a wife, a son or a daughter, a mom or a dad, the suffering of a family soars to that place where numbers don't matter, to that place where pain is beyond infinite.I've spoken about what the war has cost us financially. Since the war began more than four long years ago, we have spent over $455 billion. Over the long run, it will cost almost $2 trillion. Again, those aren't just numbers. Those were cargo scanners that could have been installed in our ports, safer bridges that could have been built, life-saving cancer research that could have been done—a world of possibilities that passed us all by.I've tried to help us all imagine what we're giving up by failing to wake ourselves up from the living nightmare that is the War in Iraq. Today I'd like to talk about the people who have given so much up, people who will be paying for this war for the rest of their lives: our veterans and their families. On Sunday we celebrated Veterans' Day. I'd like to talk about how much we could do for those who served with the amount of money we used to send them into harm's way.28,451 troops have come back from Iraq with horrible wounds. Some wounds are physical. Some have had their legs or arms blown off by bombs, some are blind from shrapnel in their eyes. And some wounds are mental.Denying that war can wound a brain along with the rest of the body is denying so many veterans' nightmares, flashbacks, shock, or changes in personality so radical that loved ones no longer recognize the person they once knew.Today Army researchers are releasing a study showing that the full psychological impact of the war tends to hit soldiers even harder 6 months after they return from the war. So the ranks of the suffering are about to grow by many thousands.Beyond the human costs of these injuries, the financial costs to our society are tremendous. A report released by Physicians for Social Responsibility puts the cost of medical care and disability benefits for veterans returning from Iraq at over $660 billion. So in a very direct sense, the war has been more than twice as financially expensive as we might think just looking at the combat costs.The human and financial costs don't end with just health care. Here's a shocking statistic: veterans make up 1-in-4 homeless people in this country—that means almost 200,000 vets don't have a home to go back to tonight. Experts say rates of homelessness are spiraling up faster than they did after the war in Vietnam. M. President, this is a moral outrage. These people put their lives on the line for our country, no questions asked. It is shameful that our men and women in uniform would be sent to patrol the streets of Baghdad, only to have to come back and sleep on the streets of their home towns.That's why Democrats in Congress are working to give Veterans the support they deserve. The Senate has just passed a bill that contains the largest increase in funding for our veterans in history. We're reinvigorating our Veterans Affairs department with a record $87 billion, which is several billion dollars more than President Bush said he was willing to give. $37 billion is for veterans' health care. Billions of dollars are headed to expand medical services, and beef up the administrative side so vets spend less time waiting to get their benefits. Compare this to the costs of combat. {CHART 2} We could pay for the entire Veterans Health Administration budget, all $37 billion of it, with what we spend in less than 4 months of combat in Iraq.Just as important as making sure vets have excellent health care is making sure they have the opportunity to get an excellent education. I'm proud to be a cosponsor of a bill offered by Sen. Webb, that would be the biggest boost to veterans' education since World War II.Preparing thousands of veterans to enter the civilian workforce through a first-rate education would cost $5.4 billion next year. {CHART 3} In other words, it would cost what it takes to fund combat in Iraq for roughly 2 weeks. Democrats in Congress are also working to end the pandemic of homelessness. I joined with Sen. Obama to support a bill called Homes for Heroes. The bill would establish permanent housing and services for low-income veterans and their families.It would make more rental assistance available, assist providers of veterans' housing and services, and focus more attention on vets who are homeless. Of course, the more soldiers who go off to war, the more necessary this bill becomes. The portion of the bill that helps community and nonprofit organizations offer housing to low-income veterans would require $225 million to fund. Compare that to the costs of combat. {CHART 4} We grind up enough money to house thousands of veterans in 16 hours in Iraq—not even a day. Of course the price we pay in dollars can never compare to the price our wounded warriors and their families pay, in lost limbs, in haunted dreams, in lives changed forever. That's a price that not one more soldier should be asked to pay for a pointless war.In the meantime, we need to act fast to get returning vets the help they need. Veterans got their wounds following their government's orders. Those wounds can only heal if the government re-orders its priorities.Democrats wanted to send the bill increasing veterans' funding to the President before Veterans' Day. But President Bush is trying to use veterans' funding as an excuse to veto other programs America depends on. The President has also said that funding a new GI Bill for veterans' education is too expensive.Never have calls for fiscal responsibility been so morally irresponsible. First and foremost, we can never forget that the price tag for veterans' services wouldn't be so high if this administration didn't recklessly send them into harm's way to begin with.The President seems to think we can't afford to spend on both veterans' health and children's health. He seems to think we can't afford to treat the wounds our soldiers suffer and fund cancer research to save civilians from that brutal killer. He seems to think we can't afford to ensure the safety of our returning soldiers and make sure all Americans find safety in the workplace.But he did seem to think we could afford to chase Osama Bin Laden in Afghanistan and invade Iraq—even though both situations are disasters.He did seem to think we could fight a 2-trillion dollar war in Iraq and give a massive tax cut to millionaires and billionaires—even though the economy hovers near recession and most American families are no better off than at the beginning of his administration. He did seem to think he could sign every bill the Republican-controlled Congress sent him, running up debt to the tune of $3 trillion, borrowing money from foreign countries to pay for a war that makes no sense, ignoring pressing national priorities, underfunding care for veterans, leaving our ports vulnerable, leaving our educational system in peril, leaving the massive crisis of climate change completely ignored, leaving children without health care, leaving 47 million Americans with no health insurance whatsoever, and he thought he could get away with it. Now is the time for us to stand up and say, sometimes you can't have it both ways. But when it comes to children's health, education, homeland security, and veterans' care —we'd better be getting all the support we need.M. President, On Sunday, our nation devoted a day to those who devoted themselves to the nation through military service. We took that day to celebrate how lucky we are, how unbelievably blessed we are that such brave men and women rise up again and again to offer their service when they hear the call. I hope we took that day to offer not just words, but deeds of thanks. We took that day to remember the duty we have to them, because of the devotion they showed to us.Veterans' Day is about a fundamental principle: When soldiers ship off to war, if we can look them in the eye and tell them there's a good reason we're waving goodbye, we'd better be able to look them in the eye when they come back and tell them we mean it when we say they're welcome home.To the 171,000 troops still in Iraq, America's message on Sunday was, we look forward to the soonest possible year when we can celebrate Veterans' Day here with all of you.M. President, I yield the floor.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=29836358-a438-4fa0-bb62-cabfd7d845ec,\"SENATOR MENENDEZ APPLAUDS NEW JERSEY COMMUNITY FOR RAISING AWARENESS ON DARFUR GENOCIDE\n                    \n                            Sen. Menendez to meet the U.S. Special Envoy to Darfur today to continue pressure for change\n                    \n                      November 13, 2007\n                     Newark, NJ - Today, the New Jersey Coalition Responds to the Crisis in Darfur held a torch-lighting ceremony in Newark, NJ to raise awareness about the genocide in Darfur and the relationship between the Sudanese regime and China, which will host the Olympic Games next year. U.S. Senator Robert Menendez (D-NJ), a leader on this issue in the Foreign Relations Committee, could not be there in person due to Senate votes in Washington, but a representative from his office attended and read a letter from the Senator. Additionally, Sen. Menendez today will be meeting with U.S. Special Envoy to Sudan, Ambassador Andrew Natsios, to maintain the pressure to end the violence in Darfur.\"\"My dream for Darfur is that with the harbinger of a bright shining torch of the Olympic flame, the Chinese government will be moved to take an important stand against this terrible tragedy. May today's flames in New Jersey also ignite the world to collectively move our efforts from the back burner to the forefront of our concern,\"\" said Menendez. Senator Menendez has stood up against the suffering in Darfur. This year, he authored a successful resolution with Sen. Sam Brownback (R-KS) urging the Chinese government to use its leverage for peace in Darfur (http://menendez.senate.gov/newsroom/record.cfm?id=280121). The resolution focuses on China's responsibility to uphold the spirit of the Olympics as the host of the 2008 games.The New Jersey Lights the Torch for Darfur event was a gesture of unity and hope which brought together survivors, native Darfurians, community leaders, students and public officials to voice their concern for the people of Darfur.  It was the New Jersey leg of the Olympic Torch Relay, an initiative of Dream for Darfur and the Save Darfur Coalition, which is staging similar events around the world.                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9e9e4e63-4b93-4864-9e89-2b48d5733876,\"THE IRAQ WAR: What It's Costing Us Here at HomePart 3: Transportation Infrastructure: As Prepared for Delivery\n                    \n                      November 11, 2007\n                     M. President,This is the third speech I've stood up to give in a series about what the Iraq war is costing us here at home, beyond the 3,839 lives lost and 28,327 Americans injured.Since I started giving these speeches two weeks ago, $5 billion more is gone from the treasury and has been spent in Iraq. It brings the total amount taken from the American people's pockets to $455 billion. Next month, we'll be taking another $10 billion will be, sentding it off to Iraq—and it'll be gone forever.  Americans trusted the government with that money. When the numbers are that outrageously high, we all have to be constantly asking ourselves a simple question: what's going to make a bigger difference in our lives, using the money to fix the major problems we have to face every day, or fighting a war that has achieved nothing for any of us?Could America have gotten more out of that money spending it on hospitals, life-saving cancer research; schools and universities; food for the needy; roads, train tracks, bridges and airports—or on the catastrophe that is the War in Iraq? The Bush Administration likes to parrot the line that \"\"we're fighting them over there so we don't have to fight them here.\"\" But Americans have figured out that what they mean is, \"\"We're spending all our money over there so we don't spend it here.\"\"M. President, I've already spoken about the massive holes in homeland security that the war funding could have closed. I've spoken about the difference that funding could have made for millions of Americans who have to play Russian roulette with their lives because they don't have health insurance. … including the millions of children who would be covered under the bill currently before us - a bill the president threatens to veto while asking for $200 billion in war funding this year alone.Today I'd like to talk about what America would look like if we spent the money George Bush is spending on failing to rebuild Iraq, to repair our battered infrastructure at home. {CHART 2}There is no way to put a price tag on the immense frustration we all can feel with our systems of transportation.If you've ever slammed your hands on your steering wheel because traffic is unbearable, so you're going to miss your meeting or be late to pick up your child at school; if you've ever had your train delayed, or been jammed inside a subway car that was not built to carry the number of people who are stuffed in there;if you've ever been stuck waiting in an airport terminal, or trapped in a plane sitting on the tarmac waiting to take off for hours—then you know our transportation systems are stretched to the limit.And sometimes they just break. Thirteen people paid the ultimate price and a hundred more were injured after the terrible, tragic collapse of a bridge in Minnesota a few months ago.It's scary how easily that could happen again. Here's a truly shocking statistic: the number of bridges that are either structurally deficient or functionally obsolete in this country is enormous: it's about 160,000 bridges, or 25% of all bridges. That means if you've driven over four bridges, the odds are one of them was not in great shape. That's incredibly scary.So what does it cost to stop another tragedy like the one in Minneapolis from happening? The American Society of Civil Engineers estimates that the cost of maintaining and replacing obsolete or deteriorating bridges is about $7.4 billion a year. And that's just the cost of staying even and not allowing the overall quality of our bridges to deteriorate further.If we spent on transportation what we spend on the Iraq War, we could pay off that entire cost in twenty-two days. Twenty-two days. That's what the War costs. Bridges you can feel confident driving over.… confident that you'll get home safe with your family. Versus less than a month in Iraq.Today, construction is beginning on the Minneapolis bridge that will replace the one that collapsed. The cost: $234 million. We spend that money in Iraq in less than one day. {CHART 3} Americans are feeling the hassle of commuting by car or plane, especially for long distances. Oil prices are hitting record highs. Many fear that petroleum production is reaching a peak. Burning oil thickens our air with smog and stokes the fires of the global climate crisis, threatening to drown buildings on our coastlines under water and create massive droughts inland.If we don't create viable transportation options that will end our dependence on oil, America is going to be in big, big trouble.With all this in mind, yesterday the Senate passed a bill to boost funding to Amtrak. We passed that bill so the great American relationship with the railroad could be restored and brought to new peaks of excellence. Funding for the Amtrak bill would be $19.2 billion over six years. That money would make passenger transportation easier. It would improve rail security. It would make our air cleaner. And it would be a boost to the economy. But just like every appropriations bill that has come to the President's desk under the Democratic Congress, the Administration has argued that we just don't have the money for good public transportation. While George Bush's mouth is moving, his hand is signing checks for other things. What the Amtrak bill would spend in 6 years, the President spends in Iraq in under two months.  That's what the war costs. Vastly improved American railroads. Versus two months of bloody chaos in Iraq. The costs of this war are unimaginable. The Congressional Budget Office is now projecting that the Iraq War will cost $1.9 trillion dollars.It is incredibly hard to put that number into perspective. Just so we get an idea of how vast that sum is: paving the entire Interstate Highway System, over the course of three-and-a-half decades, only cost $425 billion. And some estimates say the Interstate Highway System returns $6 for every $1 spent.  The Iraq War has returned zero dollars for every billion dollars spent.Just so we get an idea of how vast that sum is, with the money spent in Iraq, we could pave a 4-lane American highway from Chicago to Milwaukee with an entire inch of solid gold. If you made the thickness less than one inch, you could easily gild a highway from sea to shining sea.That's what the war costs. It costs so much, the amount of money starts to exceed what it would cost to pay for even our most ludicrous dreams.We have to use our imaginations as to where that money could go, because for a lot of it, we really don't know where it's going. Billions of dollars have just gone missing in Iraq. And according to a report released by the Special Inspector General for Iraq earlier this week, the rest has largely failed to rebuild Iraq's infrastructure. Meanwhile, infrastructure in American still needs serious help. {CHART 4}M. President, it is time for us to make a choice: will we put this country on the track to recovery, or watch it barrel down the rails to deterioration? Will we pave the highway to success for our people, or leave that road to rust and rot?Will we watch our economy take off, the aspirations and dreams of our people soar to new heights, or will we ground our nation, leaving thousands to face the congestion that gridlocks so many forms of transportation in so many places, leave thousands waiting in the terminals of frustration—waiting, for something to change, for something finally to change?Thinking about our transportation needs is another way to think about what we want the United States of America to look like as a nation. And those needs are yet another reason it is time to end this war. Because when it comes to the failed War in Iraq, American families are tired of being taken for a ride.M. President, it is time to soar again. It is time to reinforce with the strongest iron and steel the bridges to safety and success, time to clear off the barricades from the road to opportunity, time to put America on the highest-speed track we can, and to make sure we are always first in flight, high above the clouds.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e3593ccd-da34-4aac-b9f8-097ab47ed1f6,\"CHAIRMAN OF SENATE SUBCOMMITTEE ON FOREIGN ASSISTANCE CALLS FOR ADMINISTRATION TO REPORT ON PAKISTAN AID AT UPCOMING HEARING\n                    \n                            With administration review of Pakistan assistance underway, Senator Menendez wants accounting of the $10 billion in aid by first week of December\n                    \n                      November 9, 2007\n                     WASHINGTON - The Chairman of the Senate Foreign Relations Subcommittee on International Development and Foreign Assistance today is asking Secretary of State Condoleezza Rice to provide a report to the Congress on the administration's review of Pakistan assistance for an upcoming Subcommittee hearing on the matter. Senator Robert Menendez (D-NJ) announced today that the hearing on U.S. aid to Pakistan will take place the first week Congress is in session after the Thanksgiving recess.The Bush administration announced a review of assistance to Pakistan in light of the recent government crackdown on human rights in that country. In his letter to Secretary Rice, Senator Menendez requested that the administration \"\"provide details about results of the assistance we have sent and report those findings to the subcommittee in December.\"\" (Letter: http://menendez.senate.gov/pdf/110907lettertoUSSecretaryofState.pdf)The United States has sent an estimated $10 billion in assistance to Pakistan since September 11, 2001, but there are concerns over the effectiveness of that aid due to the fact that al Qaeda is operating in a safe zone along the Afghanistan-Pakistan border and also due to the fact that the government has initiated a suppression of human rights over the past week.\"\"Americans want to know that $10 billion out of their pockets is making progress against terrorism, but all they hear about is a safe zone for al Qaeda and all they see is Pakistan devolving into chaos,\"\" said Sen. Menendez. \"\"We need an understanding of how that money is being used, whether it's getting results and if Pakistan will continue on a path toward democracy.  The review Secretary Rice is undertaking will hopefully provide some of those answers and help us make decisions on how we should target future assistance to meet our goals.\"\"                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=35d448f6-741d-4c69-8dd4-dfc89049c1a7,\"MENENDEZ SECURES $4 MILLION TO HELP PATIENTS BETTER NAVIGATE OUR COMPLEX HEALTH CARE SYSTEM\n                    \n                            Senator lauds inclusion of his Patient Navigator Program in final version of Labor-HHS appropriations bill\n                    \n                      November 8, 2007\n                     WASHINGTON - U.S. Senator Bob Menendez (D-NJ) has successfully secured $4 million in initial funding for a program he established to guide patients through the health care system. The Patient Navigator, Outreach and Chronic Disease Prevention Program, which was signed into law in 2005, helps patients, including those in underserved communities, to overcome the barriers they face in getting early screening and appropriate follow-up treatment. Sen. Menendez was able to secure $4 million in funding in the conference negotiations to the Labor, Health and Human Services and Education Appropriations bill. Now, the bill will go to President Bush who is threatening to veto the legislation.\"\"I find no better time than right now to get this program underway, especially in light of recent troubling reports that show New Jersey's declining national rank in availability of health care. We must begin to change our health care system to one that is prevention-based so that we can confront diseases early and so that health care costs are lower - this program will take a significant step in that direction,\"\" Sen. Menendez said.     Success of program:The Patient Navigator program is based on successful models, including one developed by Dr. Harold Freeman in Harlem and one by Dr. Elmer Huerta at the Washington Hospital Center. In 2003, Sen. Menendez, who then served in the House, secured $100,000 for a Patient Navigator Pilot program at New Jersey's Jersey City Family Health Center. Within the first year, the program facilitated the screenings of 842 patients for cancer, and 140 with abnormal findings were enrolled in the Patient Navigator Program for follow-up.     Background on program:Patient navigators are individuals who know the local community and can help patients navigate through the complicated health care system. They help with referrals and follow-up treatment and direct patients to programs and clinical trials that are available to help them get the treatment and care they need to fight cancer and other chronic diseases.The patient navigator guides patients to health coverage that they may be eligible to receive. They also conduct ongoing outreach to health disparity communities to encourage people to get screenings and early detection services.                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d7b83db3-c421-4763-9a5e-dfba184cfffa,\"WHY ARE SO MANY FLIGHTS LANDING AT NEWARK WITH SO LITTLE FUEL? SEN. MENENDEZ WANTS FAA TO FIND OUT\n                    \n                            News report reveals that 73 flight have landed at Newark with minimum fuel over a six month period, 10 under emergency conditions\n                    \n                      November 7, 2007\n                     WASHINGTON - The amount of flights landing at Newark Liberty International Airport with dangerously low amounts of fuel has skyrocketed this year, spurring U.S. Senator Bob Menendez (D-NJ) to urge the Federal Aviation Administration to investigate the situation.WABC News reported last night that, in what could be an attempt by airlines to save money, 73 flights over a six month period this year were forced to land with the minimum amount of fuel permitted, compared to only five flights landing under such conditions over a similar period in 2005. Furthermore, 10 planes have been forced to land under \"\"emergency\"\" fuel conditions this year.Sen. Menendez today urged Acting FAA Administrator Robert Sturgell to quickly initiate an investigation into the matter and to issue interim fueling rules to ensure a greater margin for error. Text of the letter can be found here: http://menendez.senate.gov/pdf/110707lettertoFAA.pdf.                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cdd05c87-45a8-4c02-8e26-722907f23027,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $2.4 MILLION FOR NEWARK & TRENTON YOUTH CENTERS\n                    \n                            Grants to offer educational opportunities to youth involved in juvenile justice system\n                    \n                      November 6, 2007\n                     WASHINGTON, D.C. - Sens. Frank R. Lautenberg (D-NJ) and Robert Menendez (D-NJ) today announced that the U.S. Department of Labor will award two youth organizations in New Jersey with more than $2.4 million in federal funds to provide education and training for at-risk youth.             \"\"Investing in programs that provide our youth with education and job training have a significant impact on curbing and preventing juvenile crime,\"\" said Menendez.  \"\"Communities in Trenton and Newark stand to benefit from these grants, because when we develop our youth with constructive activities and mentorship, our neighborhoods are safer and our youth have a chance for a better future.\"\"           \"\"Education and career training provide at-risk youth with better opportunities for successful futures,\"\" said Lautenberg.  \"\"I support these organizations' efforts to give our youth a second chance to graduate from high school, and a chance to gain skills for future employment.  These grants will help improve the lives of these kids and the communities around them.\"\"             Sixteen organizations nationwide were awarded $20 million by the Department of Labor's Employment and Training Administration.  The funds are to be used to offer career training, alternative education and apprenticeships to youth who have faced the criminal justice system or who may face it in the future.            The two New Jersey organizations will receive $2,411,691 in federal funding to implement their education and career training programs.  The organizations to be awarded these grants are:·        YouthBuild Newark, Inc. ($1,775,040); and·        Isles, Inc. in Trenton ($636,951).                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ce65a8b4-8207-469e-92e5-92369c7713be,\"CONCERNING NEW STATISTICS ON NJ HEALTH CARE REINFORCE IMPORTANCE OF UNIVERSAL HEALTH COVERAGE, SAYS SEN. MENENDEZ\n                    \n                            Report shows NJ is ranked 21st in the nation, down from 14th last year\n                    \n                      November 6, 2007\n                     WASHINGTON - A report ranking the states on health care that was issued yesterday showed that New Jersey has dropped seven places in the past year, from 14th to 21st. The study by the United Health Foundation, the American Public Health Association and the Partnership for Prevention shows that the number of New Jerseyans without health insurance has risen 76 percent since 1990, and that only 63.4 percent of pregnant women in the state are receiving adequate prenatal care.U.S. Senator Robert Menendez (D-NJ), who has led the effort in the Senate to fight for federal support of New Jersey's FamilyCare program, today released the following statement:\"\"One New Jerseyan without health care is one too many, but the rate at which the number of uninsured is growing in our state is outright alarming. The situation begs for a plan to get us to universal health coverage - something the Bush administration has been unwilling to tackle as it pursues a costly war in Iraq.\"\"Part of the solution would be a strong children's health insurance bill, and I have stood up time and again in the Senate on behalf of New Jersey's children and families who have nowhere else to turn but to FamilyCare. Were it not for the president's cold-hearted veto, we would already be on the way toward ensuring that millions of children across the nation are not left in the ranks of the uninsured.\"\"                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=faf3403c-7a5d-4b13-b187-d81db86267aa,\"SEN. MENENDEZ EXPRESSES DISAPPOINTMENT THAT THE WHITE HOUSE IMPORT SAFETY PLAN EXCLUDES TRAVEL RESTRICTIONS\n                    \n                            Tomorrow, Menendez will introduce legislation curtailing industry-funded travel for regulators\n                    \n                      November 6, 2007\n                     WASHINGTON - As the acting-Chair of the Consumer Product Safety Commission appeared before a House Committee, President Bush today discussed the recommendations of his import safety working group. Despite recent revelations that the current and previous heads of the CPSC took numerous trips funded by the industries they regulate, nowhere in the working group's report did the words \"\"travel\"\" or \"\"gift\"\" appear.U.S. Senator Robert Menendez (D-NJ), who has announced his intention to introduce legislation barring travel for regulators that is paid for by the industries they regulate and who has called for acting-Chairwoman Nancy Nord to step down, today expressed his disappointment that the travel issue was not mentioned in the report. He said he will introduce his legislation tomorrow.\"\"The image of the toy industry providing free travel for federal regulators while American children are playing with toxic toys is probably seared into the minds of parents across the country,\"\" said Sen. Menendez. \"\"A lot of things need to change within the Consumer Product Safety Commission, and this inappropriate travel would seem to be toward the top of the list.\"\"For the Commission to be effective, it first needs the trust of the American people, and removing these sorts of conflicts of interest is an excellent way to begin to build that trust again. How this issue could be ignored by the president's working group is beyond me, but I will introduce legislation tomorrow that will address it - not only with respect to this commission, but for all federal regulatory bodies.\"\"                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=df47bd5e-a723-43ca-aef0-8f49a39a7942,\"Senator Menendez Meets Prominent American Latino Business Leaders to Discuss Economic Empowerment and Integration for Latino Community\n                    \n                            Yesterday Senate Democratic Hispanic Task Force hosted forum on access to capital and diversity on corporate boards\n                    \n                      November 2, 2007\n                     WASHINGTON - Yesterday, Senator Bob Menendez, Co-chair of the Senate Democratic Hispanic Task Force and member of the Senate Banking Housing and Urban Affairs Committee, hosted a forum with the New America Alliance, an organization comprised of nearly 100 prominent American Latino entrepreneurs, professionals and business leaders from across the country.  The forum provided Senate Democrats an opportunity to begin a comprehensive dialogue with Latino business leaders regarding access to capital, lending issues, banking and corporate board diversity - issues critical to the economic empowerment and integration of Latinos in this country.\"\"Senate Democrats understand that we need to ensure that Latinos are actively engaged in the economic prosperity of this nation, their families and communities,\"\" said Sen. Menendez. \"\"As the Latino purchasing power continues to grow to $1 trillion in 3 years, we need to make sure that Latinos are not only participating in our economy as consumers, but also as investors in our markets, as decision makers on our corporate boards, on Wall Street, and in small businesses across the country.\"\"\"\"This dialogue with Latino business leaders is important and will be ongoing because a great deal is at stake. When we remove the barriers and encourage our communities to build wealth, our middle class grows and our economy prospers,\"\" said Menendez.This year, it is estimated that Hispanic buying power will be $863.1 billion, an 8.1% increase over 2006.  This marks the first year that Hispanics control more disposable personal income than any other minority group. However, Latinos are more likely to be \"\"unbanked,\"\" or without a bank account, than any other ethnic group. While the number of companies with Latino directors across a wide range of industries has grown 186 percent since 1993, Latinos still hold less than two percent of all board seats in Fortune 1,000 companies and just 3.1 percent of board seats of Fortune 500 companies as of 2006. There are more than 1.6 million Latino-owned businesses contributing $222 billion to the economy, making Latino-owned businesses one of the fastest growing segments of the U.S. economy.  However, on average, for every dollar a non-Hispanic white-owned firm makes, Latino-owned businesses make about 59 cents.                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f5b0c9fc-7432-47f8-a82c-6f0cf95f7a05,\"LAUTENBERG, MENENDEZ LAMBASTE PRESIDENT BUSH FOR VETOING WATER RESOURCES BILL\n                    \n                            NJ Senators say measure includes more than $480 million for state projects essential for Garden State's safety, environment\n                    \n                      November 2, 2007\n                     WASHINGTON, D.C. -- Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert Menendez (D-NJ) today lambasted President Bush for vetoing the Water Resources Development Act (WRDA).  The measure would have authorized more than $480 million in federal funds for Army Corps of Engineers projects in New Jersey.  Congress is reported to have enough votes to override the President's veto and is likely to schedule another vote on the bill as early as next week.\"\"This bill would improve public safety, restore our coastline, clean our waterways and help protect New Jersey communities from flooding,\"\" said Sen. Lautenberg who, as a member of the Senate Environment and Public Works Committee, helped author the bill and ushered it through the Senate and in Conference with the House. \"\"The President is spending $3 billion each week in Iraq, yet is unwilling to fund vital projects like these here at home. The President needs to support America's water resources.  I look forward to overriding the President's irresponsible veto as soon as possible.\"\" Sen. Menendez said, \"\"What this bill invests in protecting New Jersey's coastline, keeping our rivers clean and protecting our homes from flooding, George Bush spends in Iraq in about 1 1/2 days. Especially considering the extreme droughts all over the country, the President's veto shows he is willing to watch America dry up in order to keep funding his failed war in the desert.\"\"                                                           ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=56639260-95a1-4071-ae7e-2a62fc75b693,\"CLINTON, SCHUMER, LAUTENBERG, MENENDEZ, NADLER, MALONEY, FOSSELLA ANNOUNCE CONGRESSIONAL APPROVAL OF $52.5 MILLION TO EXPAND HEALTH COVERAGE FOR 9/11 EMERGENCY RESPONDERS\n                    \n                            Funding Comes as Thousands of Patients are Seeking Treatment for 9/11 Related Illnesses, with Numbers Rising;Funds to Expand Treatment to Residents, Office and Commercial Workers, Students, and Other Individuals;Call for Focus on Long-Term, Comprehensive Solution to Screen and Monitor All Individuals Who Were Exposed to the Environmental Hazards After the September 11th Attacks\n                    \n                      November 2, 2007\n                     Washington, DC - Senators Hillary Rodham Clinton, Charles Schumer, Frank Lautenberg, and Robert Menendez, along with Representatives Jerrold Nadler, Carolyn Maloney, and Vito Fossella today announced that the Joint House and Senate Conference Committee has approved an additional $52.5 million in federal funding to address the mounting health needs of those individuals who were exposed to the environmental hazards released as a result of the September 11, 2001 attacks upon the World Trade Center.The funding, which comes in addition to the $50 million that was provided in the recent Emergency Supplemental Appropriations Bill, was included in the Fiscal Year 2008 Labor, Health and Human Services (HHS) Appropriations Bill by the Senate Labor, HHS, Education and Related Agencies Appropriations Subcommittee. The bill, having been approved by the Conference Committee, must now be approved by both chambers of Congress. If it is passed by the House and Senate it will then be sent to the President for his signature.\"\"Six years after 9/11, the toll of those terrorist attacks continues to rise,\"\" said Sen. Menendez. \"\"Without this kind of strong federal commitment to monitor and treat all who inhaled the toxic dust, there are many more who will suffer. This is a tremendously important investment in the human recovery from 9/11\"\"\"\"This is great news for those who still suffer from the lingering effects of the 9/11 attacks,\"\" Senator Clinton said. \"\"Today's conference committee approval of this additional funding is vital to the first responders, building and construction trades workers, volunteers, office workers, residents, students, and others who are experiencing health problems from the exposure to toxic substances released by the attacks. It is our national responsibility to care for those who did our country proud in the hours, days, weeks, or months following the horrific attacks. This announcement gives us renewed hope that the funding needed to carry on these vital health tracking and treatment services will be delivered, and I strongly urge the President to sign this critical legislation into law.\"\"\"\"Congress has now given final approval to this vital funding and now the Administration must do the same. The brave men and women whose will and strength carried us through the days after 9/11 and now suffer from debilitating illnesses because of their work at Ground Zero deserve no less. For far too long, the administration has refused to fully fund the many clinics and programs that serve the heroes still suffering from the affects of 9/11, and those yet to develop symptoms. That is simply not right. We will continue to fight for full funding for our first responders and others to ensure they receive the attention and care they deserve,\"\" Schumer said.\"\"First responders, emergency workers and volunteers showed true courage during the recovery effort after the 9/11 terrorist attacks.  Now, many of these brave men and women are suffering serious illnesses from the toxins at Ground Zero,\"\" said Lautenberg. \"\"I urge the President to rethink his irresponsible veto threat so these heroes can get the treatment they deserve.\"\"\"\"I applaud the committee for its landmark decision to include funding for the monitoring and treatment of area residents, workers and students who are suffering as a result of 9/11,\"\" said Rep. Nadler.  \"\"After years of pushing and prodding, I am pleased that the new Democratic majority in Congress was able to both fulfill its promise of funding and to broaden funding to include all affected populations.  I urge the President to fulfill America's moral obligation to the victims of 9/11 and support this measure.  And, I am hopeful that we can someday soon devise a long-term, comprehensive solution that is not subject to these annual budget battles.\"\"\"\"This bill gives 9/11 health clinics the funding they need to keep their doors open,\"\" said Maloney. \"\"The New York delegation has worked hard to extend proper care to everyone who is suffering as a result of exposure to toxins at Ground Zero. I urge President Bush to sign this bill into law.\"\"Fossella said, \"\"It is essential that funding is available to monitor those who were exposed to the air over Ground Zero and treat all who are sick and injured. A comprehensive and funded federal plan needs to be established so that the health and monitoring programs have a degree of certainty and that their future is not left to the whims of the appropriations process.\"\"Specifically, the $52.5 million will go towards screening, monitoring and treatment activities administered by the National Institute for Occupational Safety and Health (NIOSH) to help those individuals who were exposed to the environmental hazards released on and after 9/11. The bill also includes language requiring the Department of Health and Human Services, through NIOSH, to expand the program beyond responders and rescue workers to entities that would provide services to residents, office and commercial workers, students, and other individuals who were exposed. Existing programs to serve those who were impacted include the centers in the Mt Sinai Consortium and the program run by the New York City Fire Department.The lawmakers said that the approved funding is a recognition of the importance of addressing the short and long-term health needs of those individuals who were exposed to the environmental hazards released as a result of the September 11, 2001 attacks upon the World Trade Center, and affirms the commitment of the federal government to provide assistance to those whose physical and mental health was adversely impacted as a result of this exposure. More than six years after the attacks, persistent health effects have been documented among rescue and recovery workers, such as asthma, chronic sinusitis, and gastrointestinal conditions. Post-traumatic stress disorder (PTSD), anxiety, depression, and other health effects have also been diagnosed among those who have been exposed.                                                                               ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6174242b-dbc1-40c2-b2b5-fa79c742a853,\"AS DEADLY, DRUG-RESISTANT STAPH INFECTIONS SPREAD, SEN. MENENDEZ SIGNS ON TO LEGISLATION TO COMBAT THE PROBLEM\n                    \n                            CHAIR Act would improve federal detection, response\n                    \n                      November 1, 2007\n                     WASHINGTON - U.S. Senator Bob Menendez (D-NJ) said today that he is signing onto and strongly supporting new legislation introduced in the Senate to help the federal government combat antibiotic resistant staph infections, like the methicillin-resistant Staphylococcus aureus (MRSA) that has killed an estimated 19,000 in this country. The Community and Healthcare-Associated Infections Reductions (CHAIR) Act (S. 2278) seeks to improve the prevention, detection, and treatment of antibiotic-resistant community and healthcare-associated infections, such as MRSA.\"\"Drug-resistant staph infections seem to have snuck up on our government, and in doing so they have killed more people that any number of more widely-known conditions,\"\" said Menendez. \"\"We have to make sure our government is able to not only deal with this current infection but can also sniff out similar medical issues in the future when a pattern becomes clear. This is legislation helps accomplish just that.\"\"            The CHAIR Act is sponsored by Senators Richard Durbin (D-IL), Barack Obama (D-IL) and Charles Schumer (D-NY).The CHAIR Act would:• Require hospitals to report infection data to CDC and promote the availability of this data to the public; • Develop best practices guidelines for infection control plans; • Update current surveying of these plans by CMS to incorporate these best practices; • Commission a feasibility study for using quality improvement payments to reward hospitals for reducing hospital-acquired infection rates; • Create a grant program through CDC for states to carry out public awareness campaigns, especially in schools; • Expand research efforts at the NIH; and • Create an interagency working group to coordinate federal efforts to prevent and reduce infections. Infections acquired in healthcare settings are one of the top 10 leading causes of death in the U.S., accounting for 1.7 million infections, nearly 100,000 deaths, and $27.5 billion in additional healthcare costs each year. In 70 percent of these deaths, the bacteria are resistant to at least one commonly used antibiotic. Although most antibiotic-resistant infections occur in healthcare facilities, they also affect otherwise healthy individuals in the community.S. 2278 is endorsed by the Consumers Union, the Committee to Reduce Infection Deaths, and the MRSA Survivors Network.                                                            # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ebe772f3-100f-4967-bb49-a4d12cf06ada,\"\"\"THE IRAQ WAR: WHAT IT'S COSTING US HERE AT HOME\"\": SEN. MENENDEZ CONTINUES SERIES OF SPEECHES, FOCUSES ON TRANSPORTATION NEEDS\n                    \n                            22 days of war spending in Iraq could pay for yearly cost to keep American bridges sound;Menendez: Bush administration's motto is 'Spend all our money over there so we don't spend it here'Menendez: Bush administration's motto is 'Spend all our money over there so we don't spend it here'\n                    \n                      November 1, 2007\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today continued his series of floor speeches aimed at highlighting what Iraq War spending could provide in domestic priorities. Today, Sen. Menendez focused on what Iraq War spending could be providing in terms of transportation needs - earlier this week, the Senate approved an important investment in Amtrak and rail.What Iraq war spending could do for transportation here at home:·         22 days of Iraq War spending would cover the yearly costs of maintaining and replacing obsolete or deteriorating bridges ($7.4 billion)·         Less than one day of Iraq War spending would cover the cost of replacing the Minneapolis bridge that collapsed this year ($234 million)·         Less than two months of Iraq War spending would cover the cost of what the Amtrak bill that passed the Senate this week invests over six years ($19.2 billion)\"\"Thinking about our transportation needs is another way to think about what we want the United States of America to look like as a nation - and those needs are yet another reason it is time to end this war,\"\" said Menendez. \"\"When it comes to the failed War in Iraq, American families are tired of being taken for a ride. It is time to soar again. It is time to reinforce with the strongest iron and steel the bridges to safety and success, time to clear off the barricades from the road to opportunity, time to put America on the highest-speed track we can, and to make sure we are always first in flight.\"\"Sen. Menendez plans to deliver speeches in this series periodically, particularly when a domestic policy priority is being considered on the Senate floor. Below is the text of his remarks from today, as prepared for delivery: THE IRAQ WAR: What It's Costing Us Here at HomePart III: Iraq VS. Transportation fundingThis is the third speech I've stood up to give in a series about what the Iraq war is costing us here at home, beyond the 3,839 lives lost and 28,327 Americans injured.Since I started giving these speeches two weeks ago, $5 billion more is gone from the treasury and has been spent in Iraq. It brings the total amount taken from the American people's pockets to $455 billion. Next month, another $10 billion will be sent off to Iraq—and it'll be gone forever. Americans trusted the government with that money. When the numbers are that outrageously high, we all have to be constantly asking ourselves a simple question: what's going to make a bigger difference in our lives, using the money to fix the major problems we have to face every day, or fighting a war that has achieved nothing for any of us?Could America have gotten more out of that money spending it on hospitals, life-saving cancer research; schools and universities; food for the needy; roads, train tracks, bridges and airports—or on the catastrophe that is the War in Iraq?The Bush Administration likes to parrot the line that \"\"we're fighting them over there so we don't have to fight them here.\"\" But Americans have figured out that what they mean is, \"\"We're spending all our money over there so we don't spend it here.\"\"M. President, I've already spoken about the massive holes in homeland security that the war funding could have closed. I've spoken about the difference that funding could have made for millions of Americans who have to play Russian roulette with their lives because they don't have health insurance… including the millions of children who would be covered under the bill currently before us - a bill the president threatens to veto while asking for $200 billion in war funding this year alone.Today I'd like to talk about what America would look like if we spent the money George Bush is spending on failing to rebuild Iraq, to repair our battered infrastructure at home.There is no way to put a price tag on the immense frustration we all can feel with our systems of transportation.If you've ever slammed your hands on your steering wheel because traffic is unbearable, so you're going to miss your meeting or be late to pick up your child at school;if you've ever had your train delayed, or been jammed inside a subway car that was not built to carry the number of people who are stuffed in there;if you've ever been stuck waiting in an airport terminal, or trapped in a plane sitting on the tarmac waiting to take off for hours—then you know our transportation systems are stretched to the limit.And sometimes they just break. Thirteen people paid the ultimate price and a hundred more were injured after the terrible, tragic collapse of a bridge in Minnesota a few months ago.It's scary how easily that could happen again. Here's a truly shocking statistic: the number of bridges that are either structurally deficient or functionally obsolete in this country is enormous: it's about 160,000 bridges, or 25% of all bridges. That means if you've driven over four bridges, the odds are one of them was not in great shape. That's incredibly scary.So what does it cost to stop another tragedy like the one in Minneapolis from happening? The American Society of Civil Engineers estimates that the cost of maintaining and replacing obsolete or deteriorating bridges is about $7.4 billion a year.And that's just the cost of staying even and not allowing the overall quality of our bridges to deteriorate further.If we spent on transportation what we spend on the Iraq War, we could pay off that entire cost in twenty-two days. Twenty-two days.That's what the War costs. Bridges you can feel confident driving over… confident that you'll get home safe to your family. Versus less than a month in Iraq.Today, construction is beginning on the Minneapolis bridge that will replace the one that collapsed. The cost: $234 million. We spend that money in Iraq in less than one day.Americans are feeling the hassle of commuting by car or plane, especially for long distances. Oil prices are hitting record highs. Many fear that petroleum production is reaching a peak. Burning oil thickens our air with smog and stokes the fires of the global climate crisis, threatening to drown buildings on our coastlines under water and create massive droughts inland.If we don't create viable transportation options that will end our dependence on oil, America is going to be in big, big trouble.With all this in mind, yesterday the Senate passed a bill to boost funding to Amtrak. We passed that bill so the great American relationship with the railroad could be restored and brought to new peaks of excellence.Funding for the Amtrak bill would be $19.2 billion over six years. That money would make passenger transportation easier. It would improve rail security. It would make our air cleaner. And it would be a boost to the economy.But just like every appropriations bill that has come to the President's desk under the Democratic Congress, the Administration has argued that we just don't have the money for good public transportation.While George Bush's mouth is moving, his hand is signing checks for other things. What the Amtrak bill would spend in 6 years, the President spends in Iraq in under two months.That's what the war costs. Vastly improved American railroads. Versus two months of bloody chaos in Iraq.The costs of this war are unimaginable. The Congressional Budget Office is now projecting that the Iraq War will cost $1.9 trillion dollars.It is incredibly hard to put that number into perspective. Just so we get an idea of how vast that sum is: paving the entire Interstate Highway System, over the course of three-and-a-half decades, only cost $425 billion. And some estimates say the Interstate Highway System returns $6 for every $1 spent.The Iraq War has returned zero dollars for every billion dollars spent.Just so we get an idea of how vast that sum is, with the money spent in Iraq, we could pave a 4-lane American highway from Chicago to Milwaukee with an entire inch of solid gold. If you made the thickness less than one inch, you could easily gild a highway from sea to shining sea. That's what the war costs. It costs so much, the amount of money starts to exceed what it would cost to pay for even our most ludicrous dreams.We have to use our imaginations as to where that money could go, because for a lot of it, we really don't know where it's going.Billions of dollars have just gone missing in Iraq. And according to a report released by the Special Inspector General for Iraq earlier this week, the rest has largely failed to rebuild Iraq's infrastructure. Meanwhile, infrastructure in American still needs serious help.M. President, it is time for us to make a choice: will we put this country on the track to recovery, or watch it barrel down the rails to deterioration?Will we pave the highway to success for our people, or leave that road to rust and rot?Will we watch our economy take off, the aspirations and dreams of our people soar to new heights, or will we ground our nation, leaving thousands to face the congestion that gridlocks so many forms of transportation in so many places, leave thousands waiting in the terminals of frustration—waiting, for something to change, for something finally to change?Thinking about our transportation needs is another way to think about what we want the United States of America to look like as a nation. And those needs are yet another reason it is time to end this war.Because when it comes to the failed War in Iraq, American families are tired of being taken for a ride.M. President, it is time to soar again. It is time to reinforce with the strongest iron and steel the bridges to safety and success, time to clear off the barricades from the road to opportunity, time to put America on the highest-speed track we can, and to make sure we are always first in flight, high above the clouds.                                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9e2ec8c0-f550-40ee-a03e-afc83c70e44c,\"AMTRAK FUNDING: SEN. MENENDEZ HAILS SENATE PASSAGE OF LEGISLATION TO SUSTAIN RAIL OPERATIONS AND IMPROVE INFRASTRUCTURE\n                    \n                            Measure authorizes $11.4 billion over six years\n                    \n                      October 30, 2007\n                     WASHINGTON - Today the U.S. Senate approved six-year, $11.4 billion legislation to bolster Amtrak's operations and improve railway infrastructure. Senator Bob Menendez (D-NJ) has been a strong supporter and co-sponsor of the Passenger Rail Improvement and Investment Act, which was introduced by Senators Frank Lautenberg (D-NJ) and Trent Lott (R-MS).\"\"For all of us who rely on trains to go to work, do business or visit our loved ones, we know how important it is to keep Amtrak and our regional rail systems up and running,\"\" said Sen. Menendez. \"\"I applaud my friend and fellow senator from New Jersey, Frank Lautenberg, for being a champion for Amtrak and, by extension, the economy of our state.\"\"In many ways, rail travel is the lifeline of our state. Historically, the federal government has shortchanged Amtrak, but it must not be treated as a second-class mode of transportation. This is the type of investment boosts economic activity, clears our air and makes traveling a whole lot easier.\"\"Provisions in the bill include:·         Funding for Amtrak's operations,·         Amtrak capital improvement grants and a new state capital grant program,·         Operational reforms to reduce operating costs by up to 40   percent,·         Repairs and improved governance for the Northeast Corridor, and·         Improved rail security.                                                                   # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5d97bd3d-2369-4553-9f60-c4c0185a9eda,\"IRAQ RECONSTRUCTION MONEY GETS MIXED RESULTS WHILE PRESIDENT VETOES INVESTMENTS HERE AT HOME, SAYS SEN. MENENDEZ\n                    \n                            Latest report on reconstruction shows significant challenges remain, despite more than $45 billion in U.S. taxpayer money to this point\n                    \n                      October 30, 2007\n                     WASHINGTON - According to the latest report from the Special Inspector General for Iraq Reconstruction, there have been some security improvements and some progress in the rebuilding of Iraq, but measurable success in the reconstruction effort continues to be spotty. Key areas, such as the oil sector and manufacturing, remain behind the curve. The report released today pegs the total amount spent on reconstruction at more than $100 billion, with more than $45 billion coming from the United StatesU.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee and Senate Budget Committee, today questioned why the president opposes critical appropriations bills at home at the same time the administration is so willing to sink billions of dollars into a an uneven reconstruction effort in Iraq. Sen. Menendez released the following statement:\"\"American taxpayers are looking at this $45 billion of their hard-earned money and wondering why it isn't getting better overall results in Iraq and why it isn't being invested our own families here at home in. Long after the fall of Baghdad, four in ten Iraqis still don't have a job, essential services are lacking and a country awash in oil isn't benefiting enough from oil production.\"\"At the same time this administration is pouring tens of billions into rebuilding Iraq, President Bush is all too eager to veto investments in children's health, cancer research and early education for Americans. When an administration chooses to make a strong investment in Halliburton rather than children's health, it would seem they don't share the values of American families.\"\"                                                                             # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fcfa80e1-3a0d-4d12-93df-d9c0648b8338,\"SPUTTERING START TO DARFUR PEACE TALKS REINFORCES NEED FOR STRONGER INTERNATIONAL COMMITMENT, SAYS SEN. MENENDEZ\n                    \n                      October 29, 2007\n                     WASHINGTON - Peace talks on the genocide in Darfur that began this weekend in Libya reportedly have gotten off to a sputtering start, in large part because key rebel groups declined to attend. In addition, Libyan leader Moammar Gaddafi began the talks with a speech urging the international community to take a hands-off approach to the situation.U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee who authored a successful resolution urging the Chinese government to use its leverage for peace in Darfur (http://menendez.senate.gov/newsroom/record.cfm?id=280121), today released the following statement:\"\"With hundreds of thousands dead and with the bloodshed and misery continuing, the stumbling start to peace talks is another bad omen for the suffering people of Darfur. Perhaps this peace process would be taken more seriously by all parties involved if they believed that our country and the rest of the world are serious about a strong and sustained effort to create a lasting peace.\"\"It was astounding that the leader of the host country would begin the talks with comments espousing the exact wrong approach to this crisis. Leaving Khartoum to deal with this on its own has already been tried - and it has led to murder, chaos and human misery.\"\"To end the suffering, it will take an international commitment, the level of which is currently absent. That would include more than the start-and-stop White House efforts, and it would include a stronger push by the Chinese government to use its unique leverage with Khartoum. Clearly, the war in Iraq has drained international goodwill from the Bush administration and has stretched our military thin. Still, we cannot let our efforts to stop the genocide become another casualty of the Iraq War. We must work to ensure that the international peacekeeping forces are quickly deployed and effective. We must make a stand to end the suffering.\"\"                                                        # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5053cec8-b9a1-4507-b6f1-ad12d733f1b3,\"Menendez, Andrews Announce Grant from US Department of Justice for Camden-based Drakontas LLC to Establish the  Criminal Justice Communications Technologies Center of Excellence\n                    \n                      October 29, 2007\n                     Camden, NJ - United States Senator Robert Menendez (D-NJ) and United States Representative Robert E. Andrews today joined representatives from Drakontas LLC to announce the selection of the company as a Criminal Justice Communications Technologies Center of Excellence.  On September 20, 2007, The Department of Justice, Office of Justice Programs (OJP) announced the creation of four Technology Centers of Excellence that will serve as a specialized criminal justice technology resource for law enforcement and criminal justice practitioners. Each Center will provide expertise in a specific technology area and help introduce law enforcement technologies into practice within the criminal justice community. Today, Drakontas formally opens the doors for the Communications Technologies Center of Excellence, which will be located in Camden, NJ.\"\"Communication is critical during a crisis, be it a natural disaster or something man made.  We all saw the problems that occured when first responders could not communicate on that fateful day when the World Trade Center was attacked,\"\" said Sen. Menendez.  \"\"Investing in technology to ensure that the brave men and women who risks their lives to protect us daily is a priority for me.  I applaud Drakontas for their commitment to ensuring the security of our nation.\"\"Our vision when we created ACIN back in 2001 was that it would help to create good paying jobs in the City of Camden by fostering growth in private sector companies that are looking to develop new technologies and products to be used in military and government applications,\"\" said Rep. Rob Andrews.  \"\"Drakontas is a shining example of the type of success story we envisioned and I applaud Dr. Regli and his team for their hard work and talent in securing this important grant that will bring more jobs to Camden City and improve the ability for America's First-Responders to communicate effectively.\"\"\"\"We are honored to be selected,\"\" said Dr. Brian Regli, Chief Executive of Drakontas LLC.  \"\"Over the past three years, we have worked hard to establish a new standard for innovation in the field of criminal justice communication. This selection validates our approach to innovation, which focuses on marrying practitioner needs with new communications technologies and techniques.\"\" The Communications Technology Center of Excellence will operate within the existing National Law Enforcement and Corrections Technology Center System (NLECTCS).  The NLECTC is funded by the National Institute of Justice (NIJ) within the Office of Justice Programs, and serves as a nationwide network of technology research facilities.Drakontas of Camden, N. J. is receiving over $3.6 million to establish the Communications Technologies Center of Excellence to test, evaluate and demonstrate cutting edge communications tools and technologies.  The Center will establish and manage a wide range of criminal justice pilot projects, involving software defined and cognitive radios, position location technologies, wireless data interoperability, and other communications tools and capabilities.  The team will also support a Communications Technology Working Group, and provide specialized communications technology assistance to law enforcement, when needed.\"\"Our outreach and assistance programs for the law enforcement community are the centerpiece of our efforts,\"\" explained Charles Stephenson, who will serve as the Director of Educational and Technical Assistance Programs for the Center.  \"\"In the coming months, we will offer new resources for specialized technology assistance for state and local law enforcement that will promote voice and data interoperability using new technologies, such as software defined and cognitive radios.\"\"The Center of Excellence will be located at the Applied Communications and Information Networking (ACIN) Center, which was established in 2001 through the work of Rep. Rob Andrews and Drexel University as part of a broader initiative to promote economic development in Camden. Drakontas was founded in 2004 to transition technologies developed at the ACIN Center by researchers at Drexel University for the Department of Defense to commercial, civilian and homeland security uses\"\"Our relationship with ACIN is an essential part of our effort to deliver taxpayer value,\"\" commented Dr. Regli. \"\"We will be able to leverage the resources of more than two dozen companies who actively participate in the ACIN, as well as the research capabilities of Drexel University as the administrators of the ACIN program.  This will enable the DOJ to leverage related research and development efforts underway at the DOD.\"\"The Office of Justice Programs provides federal leadership in developing the nation's capacity to prevent and control crime, administer justice, and assist victims. OJP has five component bureaus: the Bureau of Justice Assistance; the Bureau of Justice Statistics; the National Institute of Justice; the Office of Juvenile Justice and Delinquency Prevention; and the Office for Victims of Crime. Additionally, OJP has two program offices: the Community Capacity Development Office, which incorporates the Weed and Seed strategy, and the Sex Offender Sentencing, Monitoring, Apprehending, Registering and Tracking Office (SMART). More information can be found at http://www.ojp.usdoj.gov.Drakontas delivers communications tools, including software and integrated solutions, for law enforcement, emergency response, and security operations.  The company was founded in partnership with Drexel University in 2004 to transition technologies developed at the Applied Communications and Information Networking (ACIN) Center for the Department of Defense to commercial, civilian and homeland security uses. In 2005, the company launched DragonForce™, its core software product, which provides situation awareness information to commanders and field deployed team members.  More information about the company's communications tools and program management capabilities can be found at www.drakontas.com.                                                              ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a97e4de9-70e0-4d8f-9157-2810a0cd2d70,\"SEN. MENENDEZ RESPONDS TO PRESIDENT'S REMARKS ABOUT CONGRESSIONAL AGENDA\n                    \n                      October 26, 2007\n                     WASHINGTON - This morning, President Bush spoke at the White House to complain about Congress's agenda, including the insinuation that the current effort to provide health coverage for children is \"\"wasting time.\"\"U.S. Senator Robert Menendez (D-NJ) issued the following statement in response:\"\"Only this president could consider it ‘wasting time' to pursue a bill that provides health coverage for 10 million children. This is a question of values and priorities. In Congress, we are working to invest in areas like cancer research, workplace safety and early childhood education, not to mention children's health care. Meanwhile, the president holds out one hand asking for $200 billion for Iraq this year as he uses the other hand to veto these investments in our families. His administration likes to say ‘We're fighting them over there so we don't have to fight them here,' but their real message is ‘We're spending all our money over there so we don't spend it here.'\"\"                                                               # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=032291fb-2803-4a89-93b0-567c8f07b7b5,\"REPORT DETAILING GANG ACTIVITY IN NJ FURTHER REINFORCES IMPORTANCE OF FEDERAL ANTI-GANG LEGISLATION THAT SEN. MENENDEZ HELPED AUTHOR\n                    \n                            Senate-passed gang bill includes significant measures from Menendez's legislation\n                    \n                      October 26, 2007\n                     WASHINGTON - The New Jersey State Police recently released its 2007 Street Gang Survey, revealing troubling news that gangs have rapidly spread from urban areas to suburban and rural areas of New Jersey. According to the report, seven out of ten New Jersey residents live in municipalities where gang activity can be found. U.S. Senator Bob Menendez (D-NJ), who authored anti-gang measures that were included in a comprehensive anti-gang bill that passed the Senate this year and who has been a leader in the fight to restore broad access to information on the trafficking of guns used in crimes, said today that this report is more evidence of the need for a comprehensive initiative that cracks down on gang activity while also addressing the root cause of gang proliferation..\"\"Gangs are a growing cancer in our communities, and they need to be combated with a comprehensive initiative,\"\" said Menendez. \"\"Cracking down on gang activity and rigorously enforcing the law is big piece of the puzzle, but proactively starving gangs of new recruits through prevention and mentoring programs is crucial to addressing and ultimately eliminating the root causes of gang involvement. This is a priority of mine in the Senate, and I am working to ensure that the legislation we passed this year is enacted into law.\"\"Background on legislationThe Gang Abatement and Prevention Act, which passed the Senate last month, is closely tied to Menendez's Fighting Gangs and Empowering Youth Act (http://menendez.senate.gov/newsroom/record.cfm?id=271326). It incorporates a number of provisions from the Menendez bill, including:Gang Prevention and InterventionExpands mentoring programs and creates a new demonstration program to encourage creative approaches to gang activity and after-school programs.  The new demonstration program would provide $5 million per year for 5 years for grants to \"\"public or nonprofit private entities (including faith-based organizations)\"\" that create innovative approaches to combat gang activity.  These projects could include things like teen-driven approaches, educating parents about the signs of gang activity in kids, teaching parenting/nurturing to keep kids out of gangs, and facilitating communication between parents and children.  The grant program would require a 25% local match.  The mentoring program provides funds to community-based nonprofit and for-profit agencies to mentor youth involved in the juvenile justice system.  The current program is funded at $1.6 million and has four mentoring partnerships through cooperative agreement awards (each is limited to $400,000 for 4 years).  The legislation would expand the program to $4.8 million per year in order to fund 12 projects. The two bills also share several provisions to crack down on gang activity, including provision to:New and Increased Penalties for Gang CrimesMake recruiting new gang members a federal crime, with the penalty doubled if a minor is recruited; create a new category of crimes for criminal street gangs for certain violent crimes, such as murder, carjacking, firearm offenses, witness tampering; include violent crimes committed for gang initiation or membership and drug trafficking. Provide significant increases in criminal penalties for gang members for racketeering violence, carjacking, firearm possession, conspiracy.  Call on the United States Sentencing Commission to review penalties for juvenile offenders. For further details on the similarities between the two bills, visit: http://menendez.senate.gov/pdf/MenendezFeinsteinBillProvisions.doc.                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=866b0b6f-012b-4e98-a5bd-dfe433851c2f,\"FLIGHT DELAYS REQUIRE REGIONAL ACTION, SAYS SEN. MENENDEZ\n                    \n                            In August, Menendez urged FAA to examine flight schedule restrictions\n                    \n                      October 26, 2007\n                     WASHINGTON - This week, the Federal Aviation Administration convened meetings on the possibility of capping flights at JFK airport in New York. Previously, the FAA said in a briefing for Congressional staff that it would also convene such a meeting for Newark Liberty International Airport in the near future.U.S. Senator Bob Menendez (D-NJ), who back in August urged the FAA to examine flight schedule restrictions as part of an effort to determine the most immediate and effective actions to reduce flight delays (http://menendez.senate.gov/pdf/082107lettertofaa.pdf), made the following statement today:\"\"Airline passengers in our area spent the summer endlessly waiting in airport terminals and on tarmacs when they should have been in flight. Back in August, I urged the FAA to examine a number of options to reduce these flight delays with an eye toward next summer - options that included flight schedule caps at airports in our region. This is something that the FAA and airlines should continue to seriously examine, but regardless of their conclusion, they must come up with an effective solution that will have more flights taking off on time next summer. If their proposal is to cap flights only at JFK rather than a regional approach that includes Newark, it just won't fly.\"\"                                                                 # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0c201367-4b7e-4f0c-84c7-05094c5072d0,\"SEN. MENENDEZ SPEAKS IN STRONG SUPPORT OF AMTRAK FUNDING BILL\n                    \n                      October 25, 2007\n                     WASHINGTON - Today, the U.S. Senate is considering the Passenger Rail Improvement and Investment Act, a bill sponsored by U.S. Senator Frank Lautenberg (D-NJ) to support the operation of Amtrak and improvements to the passenger rail system.Senator Bob Menendez (D-NJ), a strong supporter of Amtrak and co-sponsor of the legislation, spoke today on the Senate floor in favor of the legislation.Excerpts from Menendez remarks:\"\"Every year since 2002 Amtrak has had to continue operations on a yearly basis without adequate funds to maintain the rail system over the long term. It's almost like a starvation diet - just enough to be temporarily alive, but cutting its funding in such a way that it can neither be successful nor fully survive. Right now the system is at a breaking point.  Amtrak's equipment is aging and no amount of maintenance can keep cars built in the 1950's on the tracks.\"\"Amtrak is not just a passenger rail system that serves 25 million people each year.  Amtrak is also a program that reduces our greenhouse gas emissions, reduces congestion on our roadways, fights sprawl, creates jobs, and fosters economic activity.  I know first hand the benefits of Amtrak because over one hundred thousand New Jersey commuters depend on Amtrak's infrastructure every day.\"\"Over the last 35 years we have spent less money on Amtrak than we will on highways in this year alone. We have never committed the same support behind Amtrak that we have for other modes of transportation.  This bill will finally give Amtrak a stable amount of authorized funds it needs over the next 6 years to adequately fund its operations and finance capital improvements.\"\"            Text of full Menendez remarks, as prepared:\"\"M. President, I rise in support of the Passenger Rail Improvement and Investment Act of 2007. I want to thank Senators Lautenberg and Lott for their efforts to guide this important legislation to the floor.  My distinguished colleague from New Jersey not only in this legislation but for some time has been probably Amtrak's strongest advocate.Every year since 2002 Amtrak has had to continue operations on a yearly basis without adequate funds to maintain of the rail system over the long term. It's almost like a starvation diet - keeping it just enough to be temporarily alive but working it in such a way, cutting its funding in such a way that it can neither be successful or fully survive. Right now the system is at a breaking point.  Amtrak's equipment is aging and no amount of maintenance can keep cars built in the 1950's on the tracks.Amtrak is not just a passenger rail system that serves 25 million people each year.  Amtrak is also a program that reduces our greenhouse gas emissions, reduces congestion on our roadways, fights sprawl, creates jobs, and fosters economic activity.  I know first hand the benefits of Amtrak because over one hundred thousand New Jersey commuters depend on Amtrak's infrastructure every day. And there are many other commuter rail systems in states that depend upon Amtrak's infrastructure as well to move very large amounts of their residents over the Amtrak lines.Some critics want Amtrak to be the only major transportation system in the world that operates without government subsidy.  This standard is simply impossible to meet and a standard we do not hold any other mode of transportation to.  Over the last 35 years we have spent less money on Amtrak than we will on highways in this year alone.  When you factor in state and local subsidies for infrastructure and parking some studies suggest that up to 8% of our Gross National Product is spent on subsidies for automobile use.We have never committed the same support behind Amtrak that we have for other modes of transportation.  This bill will finally give Amtrak a stable amount of authorized funds it needs over the next 6 years to adequately fund its operations and finance capital improvements.  But these funds are not free. To get these funds Amtrak will be forced to tighten its belt while simultaneously improving service.  The bill reduces Amtrak's annual appropriations need by requiring reforms that will reduce Amtrak's operating costs by 40 percent over the life of the bill.   In addition, bill provides for $1.4 billion dollars for state to provide new passenger rail service between cities.  In some instances these state operations will likely provide service that compliments existing Amtrak service just as the recent light rail projects in New Jersey have done.  But in other cases these funds may actually create competition for Amtrak for service between some cities.The bill will also require Amtrak to use a new financial accounting system so regulators and legislators can better monitor how Amtrak uses its resources.  And this bill will require Amtrak to use it resources to provide a new level of service by improving on-time performance, upgrading on-board services, and providing easier access to other transportation systems.  Finally, the bill will also require a system wide security review to ensure that rail remains a safe transportation alternative. With record high gasoline prices, congested highways and airports that are experiencing record delays, we need all of the alternative forms of transportation we can provide to the frustrated American traveler.As someone who represents a state that saw the consequences of what happened on September 11th, I know that we have come to appreciate the importance of multiple modes of transportation in a security context. We've always talked about transportation in the context of getting people to work and economic opportunity. We've talked about people who might get on a rail line to Johns Hopkins University or Robert Wood Johnson or Hackensack Medical Center or the great hospitals in New York. We've talked about tourism and people being able to take Amtrak to go to different parts of the country to see the greatness of this nation.But on September 11th, we learned that multiple modes of transportation are critical to the nation's security well-being. On that fateful day we had the attacks in New York, as well as Washington and Pennsylvania. On that fateful day the metropolitan region where there are millions of people, saw the tunnels were closed down, and the bridges were closed down, and it was a different mode of transportation that got people out of downtown Manhattan from the World Trade Center and to the hospitals to be triaged, and that mode of transportation happened to be the ferries. And the only way to get the only mode of commercial intercity travel, when all the airlines were shut down for that period of time, was Amtrak.So we've learned a lesson that this is beyond economics. A lesson that this is beyond tourism. This is beyond getting people to research areas to be cured. It is about security too. If we do away with Amtrak, we do away with the ability to have another mode of transportation that is critical to our security blanket. Amtrak was absolutely essential in keeping the country going in spite of a horrendous terror attack. We have to think about Amtrak in that way as well.M. President I urge my colleagues to recognize that a strong, well-funded Amtrak is an essential resource for our country.  Please join me in voting for the Passenger Rail Improvement and Investment Act of 2007.                                                           # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=58ac8083-4468-4eab-a3b6-0b7e7ef5ebe1,\"Floor Statement on the Fiscal Year 2008 Labor, Health and Human Services Appropriations Bill\n                    \n                      October 25, 2007\n                     M. President, I rise in strong support of the Fiscal Year 2008 Labor, Health and Human Services Appropriations Bill.  First, I would like to thank the chair of the Labor-HHS-Education Appropriations Subcommittee, Senator Harkin, and the Ranking Member, Senator Specter, for their leadership in crafting this bill, and to ensuring some of our nation's most critical priorities are adequately funded.  I am proud that we have been able to negotiate a bipartisan appropriations bill that we can pass here in the Senate.This bill is one of the most important funding bills that comes before us.  It fulfills our responsibilities in key priorities such as health care and education.  And with the passage of this legislation, we will be striking a significant departure from the administration's damaging trend of shortchanging our children, our schools, our workers, and our health.  Instead of undermining education, abdicating our responsibilities on health care, weakening the rights of our workers, this bill will restore a common sense balance to our values that we should expect from the greatest nation in the world.M. President, I would like highlight a few areas in which this bill is especially successful, and contrast them to the administration's misguided priorities.While the President's budget zeroed out funding for mentoring programs under the Safe and Drug Free Schools Act - a program that is critical to keeping our children safe and off the streets - I am proud that this bill not only restores that funding but increases it by more than $30 million. As someone whose dreams of college could not have been realized without Pell Grants and other federal financial aid, I am pleased this bill follows through on the promise to increase Pell Grants and restores funding for Perkins loans.  These increases will mean that today's young people who come from families that cannot afford college on their own can still achieve their dreams.  I know the power of this assistance.  Without these programs, I would not have been the first in my family to graduate from college and law school.  There are millions of students nationwide who are in the shoes I once was.  They are waiting, hoping that there will be adequate financial aid to help them access college.  And as tuition continues to increase, as grant aid under this president has shrunk, that challenge is getting anything but easier.  In my home state of New Jersey, where the average tuition rose 7% since last year, four-year public colleges are the 2nd most expensive in the nation.  Our students need more, not less grant aid if they are going to achieve their dreams.  This bill sets us in the right direction.Another program that is vital to students in New Jersey is vocational education.  The vocational state grants are critical for the institutions in our state that are working to develop a workforce that is able to compete in today's global economy.  New Jersey has some of the best vocational and technical education programs in the country.  And while this president continually speaks about an educated and competitive workforce in the science, technology and math fields, he does not put his money where his mouth is.  His budget would have cut vocational funding in half - our bill restores those cuts.This bill also restores cuts to education technology grants, which the president called for eliminating.  These grants help ensure that our children have access to technology in the classroom.  New Jersey alone would have lost $5 million next year under the president's cuts.  In the global race to have the most trained, highly-skilled, best prepared workforce, we are losing ground.  The earlier we can introduce our young people to technology, to help them gain fluency in areas that involve technology, the better off they will be in an evolving and increasing technological world.  I am also pleased this bill increases funding for special education by more than $500 million.  This funding is critical to ensuring children with disabilities have an equal opportunity to receive a good public education, just like other children.And ensuring all children begin on an equal playing field means adequately funding Head Start, which this bill does.  This legislation provides a $200 million increase for Head Start, which will help improve the school readiness of our young children to ensure they can get the skills necessary to succeed.  Head Start provides child development, education, health care, nutrition, and socialization skills, all essential services that benefit more than nearly $1 million low-income children in this country.This bill also helps our young people by expanding opportunities for them to learn trade skills.  It provides a $15 million increase for YouthBuild, which helps young people learn constructing and housing skills and prepare for postsecondary training.  This legislation also provides an increase of almost $82 million for Job Corps to help strengthen these centers that provide key job skills to young people. In addition, this bill will help veterans transition to civilian life by providing a $5 million increase for employment and training services.  In terms of health care, this bill makes significant changes to the President's budget proposal and redefines our priorities a nation.  Overall, the bill provides $68.1 billion in discretionary appropriations for Health and Human Services (HHS) department programs. This amount is $5 billion more than last year's level and $5.4 billion more that the Administration's budget request.The bill provides $250 million more for Community Health Centers and over $200 million for the National Center of Minority Health and Health Disparities to address the healthcare needs of our nation's minority and underserved communities.This bill will also provide almost $29.9 billion in funding for the National Institutes of Health, $1.3 billion more that the Bush Administration's budget request. The Centers for Disease Control would also receive $6.4 billion under this bill which is $444 million more than the Administration's request.  It is imperative that we continue to invest in our nation's health and research facilities as their work will save and improve the lives of millions of Americans.I am proud that this bill also provides $8 million for the initial implementation of the Patient Navigator, Outreach, and Chronic Disease Prevention Act of 2005, which President Bush signed into law in 2005.  I sponsored this legislation when I was in the House of Representatives in order to improve health outcomes by helping patients, including patients in underserved communities, to overcome barriers they face in getting early screening and appropriate follow-up treatment.  This funding will help get people in to see a doctor before symptoms develop, so we can catch diseases such as cancer or diabetes early.  Then we can get patients in to treatment early, which means they'll have a better chance of survival and the health care costs will be lower.  I know that this funding, and the health provisions in this Labor, Health and Human Services Appropriations Bill, will truly help to save lives. M. President, this legislation critical and makes a strong commitment to our nation's future.  This legislation will bolster our commitment to the education, health and well-being of our nation's workforce.  I urge my colleagues to support this important bill.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a837d000-8323-4dc6-81eb-2513d9b944f7,\"NEW CHILDREN'S HEALTH BILL PROTECTS  NJ CHILDREN, DRAWING PRAISE FROM SEN. MENENDEZ, SENATE LEADER IN FIGHT TO PRESERVE SUPPORT FOR NJ\n                    \n                            Menendez lobbied Senators to ensure strong support for NJ FamilyCare was maintained in new bill\n                    \n                      October 25, 2007\n                     WASHINGTON - The U.S. House will take the first vote today on an updated Children's Health Insurance Program bill, one that maintains the priorities covered in the first CHIP bill vetoed by President Bush.U.S. Senator Bob Menendez (D-NJ), who has lobbied his colleagues to look out for New Jersey's children from the time the first bill was drafted, again worked hard to maintain this level of support in the new bill, lobbying the Chairman of the Finance Committee and the Senate Majority Leader.\"\"Children who fall into the abyss between Medicaid and private health insurance have nowhere else to turn, but we have to look out for them,\"\" said Sen. Menendez. \"\"That means overcoming the heartbreaking hypocrisy of President Bush, who claims we can't afford this investment in children's health while demanding $200 billion for the Iraq War this year.\"\"\"\"Congress isn't letting the president's cold-hearted veto stop us from fighting to invest in our priorities, like the health of our children. And I will not stop standing up for New Jersey children, who will be covered in this legislation. I look forward to sending this investment in children's health to the president again. If he plans another veto, he will have to look 10 million children in the eye and tell them again that their president doesn't believe they are worthy of a strong federal commitment.\"\"Included in the new bill is a provision to maintain federal support of New Jersey's strong Children's Health program, FamilyCare, which covers children from families that earn up to 350 percent of the Federal Poverty Level because of the high cost of living in the state. Also included is an exemption to continue coverage for working and low-income parents in New Jersey, which in turn helps increase coverage of children.                                                          # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=cbdbb57b-e792-4556-9355-58a945708ff7,\"SEN. MENENDEZ BEGINS SERIES OF SPEECHES - \"\"THE IRAQ WAR: WHAT IT'S COSTING US HERE AT HOME\"\"\n                    \n                            First speech compares Iraq War spending to domestic public safety priorities\n                    \n                      October 24, 2007\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) this evening began a series of floor speeches aimed at highlighting what Iraq War spending could provide in domestic priorities. He plans to deliver these speeches periodically, particularly when a domestic policy priority is being considered on the Senate floor. This evening, Sen. Menendez focused on what Iraq War spending could be providing in public safety priorities (the Senate passed the Commerce, Justice and Science appropriations bill this week). Below is the text of his remarks, as prepared for delivery: THE IRAQ WAR: What It's Costing Us Here at HomePart 1: Public safety M. President,On October 11th, we marked the fifth anniversary of Congress's capitulation to the resolution authorizing the War in Iraq. We should take this opportunity to tally up what this war has cost our nation. We are all very aware of the human cost. More Americans have died in Iraq than died on 9/11. These are our friends and neighbors, fathers and mothers, sons and daughters, gone forever. 28,000 men and women have come back home wounded, some with legs or arms blown off by bombs, some blind from shrapnel in their eyes, some thrown into a state of mental shock from which they will never recover. As for the Iraqi men, women and children who have died in this conflict, we cannot even say. Some estimates say the body count is more than 100,000.  And as for the people who have been forced to abandon their homes, they are about to number four and a half million.  A disproportionate number of them are children.           We all know that the Iraq War is a human calamity of vast proportions.It can be harder to visualize the direct damage that comes from the financial cost of the war—to see it as the cancer it is, making our debt metastasize, threatening our budget, eating away at the financial stability of our entire nation. We are paying for this war with borrowed money, racking up massive debt, severely threatening the future of our country.  We know that our country has spent more than $450 billion on this war so far. We continue to spend about $10 billion every month. That doesn't just add up to a stack of bills that could have sat in the Treasury. It's equipment at ports that scan for nuclear weapons, and other measures that actually make the homeland more secure. It's children healed with better healthcare. It's more teachers in schools, better training for our jobs, energy that's clean and doesn't strengthen repressive regimes in the Middle East, payment of our debts so future generations will inherit a country that is financially viable.           Those are casualties we cannot fail to count. When our money gets burned in Iraq, we deserve to know what we're trading away. What we're trading away cannot be summed up in one speech, so I'll be coming back to this subject as many times as necessary to give each sacrifice fair attention. When we add it all up, the bottom line is very clear: if we had never gone into Iraq, our lives would be better. And the sooner we get out of Iraq, the better our lives will be. I will repeat this until our troops have come home.If we had never gone into Iraq, our lives would be better. And the sooner we get out of Iraq, the better our lives will be.  M. President, today I would like to speak about what the failed War in Iraq has cost us in terms of our security here at home. The Bush Administration likes to parrot the line that \"\"we're fighting them over there so we don't have to fight them here.\"\" Never mind that the War has created more terrorists than there were before. Beyond that, it has directed funding away from programs that actually would prevent terrorists from attacking the homeland. The Administration's budget for the failed War in Iraq is 13 times this year's budget for Homeland Security. Do they really think the Iraq War is 13 times more important to America than the Department of Homeland Security's mission? When it comes to our money, the Administrations' motto really is, \"\"We're spending it over there so we don't spend it here.\"\" Every time we ride the subway or the bus, we put ourselves at risk, because our public transportation systems are unnecessarily vulnerable to terrorist attacks. The American Public Transportation Association estimates it would cost $6 billion to make them substantially more secure. That includes funding for personnel, training, communications systems, cameras and detection systems. We spend that much in Iraq every 18 days. That's what the war costs. Security on public transportation. Versus 18 days in Iraq. Money being spent in Iraq could have substantially improved security at our nation's ports—where 95% of cargo slips into the country without any inspection whatsoever. For the cost of three days of operations in Iraq, we could fund a year's worth of strong port security initiatives: purchasing radiation detectors, giving individual grants tailored to the specific needs of each port, and drastically increasing the number of containers screened. Here's an example. There's something called a Container Security Device. It attaches to the hinges of a container and lets inspectors at ports know if the container has been tampered with. They cost about $25 each. You could provide a device for every one of the 11-million-plus containers that enter our ports every year for the same money it costs us to be in Iraq for one single day. That's what the war costs. Electronic security for every container entering the United States. Versus one day in Iraq. And as we consider the Commerce, Justice and Science appropriations bill, this is as good a time as any to discuss how funding for the Iraq War impacts local police here at home. With the billions of dollars going toward a failed effort to secure the streets of Baghdad, we could boost our efforts to fight violence and the terror of gangs on the streets of the neighborhoods we call home. The FBI tells us that crime rates are going up in the United States. That's no coincidence, considering the Bush Administration has repeatedly cut federal funding for hiring new police, law enforcement technology, and successful prevention programs. The Senate is taking action to reverse this situation. I was proud to co-sponsor Sen. Biden's amendment, which was adopted, to boost funding for the COPS program, one of the most successful federal crime prevention programs in history. 8 hours of Iraq funding would pay for that amendment. That's what the war costs. More police on the streets. Versus 8 hours in Iraq. When it comes to our money, the message the administration is sending us is clear: \"\"We're spending it over there so we don't spend it here.\"\" In terms of security, If we had never gone into Iraq, our lives would be better. And the sooner we get out of Iraq, the better our lives will be. The costs of the war for the United States are only going to escalate as Great Britain withdraws its troops. So the financial question we have to answer as a nation is as urgent as any we have ever faced. We have to decide what we value as a nation. The war? Or keeping our country safe. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=e9ba87ac-3cee-4575-a4db-b462a1f4bf60,\"STAGGERING NEW PROJECTION FOR IRAQ WAR COST SHOWS LONG-TERM IMPACT ON PRIORITIES AT HOME, SAYS SEN. MENENDEZ\n                    \n                            Administration is \"\"spending all our money over there so we don't spend it here\"\"\n                    \n                      October 24, 2007\n                     WASHINGTON - Today, the Congressional Budget Office released a new estimate of the costs of wars in Iraq and Afghanistan, pegging the total at $2.4 trillion over the next decade if 75,000 troops are kept over there. That equals $8,000 per person in this country. If it is assumed that the Iraq War will take up 80 percent of that total, the United States will spend an estimated $1.9 trillion on that war alone over ten years, or $6,333 per person.U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee and Senate Budget Committee who last week began a series of speeches on the Senate floor comparing the spending in Iraq to domestic priority needs, today released the following statement:\"\"Americans who see that this war will cost more than $6,300 per man, woman and child over the next ten years are going to wonder why the president won't make that sort of investment in our families,\"\" said Menendez. \"\"President Bush has made it clear that he has no plans to bring our troops home. We know what that's costing in precious lives, and this report details what it will cost in taxpayer money that could help secure the homeland and provide education and health coverage for our children.\"\"In Congress, we are passing legislation that invests in our future here at home. President Bush has held one hand out to ask for $200 billion for Iraq this year, while with the other hand he's going to veto children's health coverage, cancer screenings, workplace safety and early childhood education. The Bush Administration likes to parrot the line that ‘we're fighting them over there so we don't have to fight them here.' But Americans have figured out that what they mean is, ‘We're spending all our money over there so we don't spend it here.'\"\"Last week, Sen. Menendez began his speeches on what Iraq is costing here at home by looking at security and public safety issues (http://menendez.senate.gov/newsroom/record.cfm?id=285602), and he followed that with a speech comparing Iraq spending to children's health coverage (http://menendez.senate.gov/newsroom/record.cfm?id=285960).                                                       # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=6f976c07-c455-4675-b039-bfb463f1b6fc,\"THE IRAQ WAR: What It's Costing Us Here at HomePart II: Iraq VS. Children's Health Insurance\n                    \n                      October 24, 2007\n                     THE IRAQ WAR: What It's Costing Us Here at HomePart II: Iraq VS. Children's Health Insurance M. President, Yesterday I began to speak about what the failed War in Iraq is costing us here at home, to mark the fifth anniversary of Congress's capitulation to the war. Again, let me begin by saying we are all very aware of the human cost of the war. 3,816 Americans are dead. More than 28,000 have come back home wounded. Iraqis have died in even greater numbers, and millions have fled their homes.  The United States has been involved in the war for longer than we fought World War II. We all know that the Iraq War is a human calamity of vast proportions. It can be harder to visualize the direct damage that comes from the financial cost of the war. We are paying for this war with borrowed money, burying ourselves in massive debt, severely threatening the future of our country.  We know that we have spent more than $450 billion on this war so far. We continue to spend about $10 billion every month. That doesn't just add up to a stack of bills that could have sat in the Treasury. It's equipment at ports that scan for nuclear weapons, and other measures that actually make the homeland more secure. It's children healed with better healthcare. It's more teachers in schools, better training for our jobs, energy that's clean and doesn't strengthen repressive regimes in the Middle East, payment of our debts so future generations will inherit a country that is financially viable. The Bush Administration likes to parrot the line that \"\"we're fighting them over there so we don't have to fight them here.\"\" But when we add it all up, the bottom line is very clear: the Administrations' motto really is, \"\"We're spending all our money over there so we don't spend it here.\"\"  M. President, yesterday I spoke about how much we really could accomplish to safeguard our homeland against terrorists if we spent just a fraction of the money that we've dumped into a war that makes no sense.  Today I would like to speak about what the failed War in Iraq has cost us in terms of our health, and specifically, the health of our children. Today the House of Representatives considered whether or not to support a bill to provide health insurance for children. Every time we go to the doctor or fill a prescription at the pharmacy, we remember how expensive health care can be. There are families who work every day in some of the toughest jobs in the country, but their jobs don't offer health care and their paychecks won't let them afford private coverage. That's why the federal government and the states teamed up to start the State Children's Health Insurance Program, or SCHIP. This year Democrats and Republicans came together to pass a bill that will continue to provide health care to the 6 million children already enrolled, and will expand the program to include a total of 10 million children across America. We knew we had to, because the children who fall into the wide abyss between Medicaid and private coverage are depending on us. But on October 3rd, millions of children got some terrible news: President Bush had vetoed the bill. He did it silently and secretly, with no cameras allowed to watch as he condemned millions of children to a lack of coverage with a single stroke of his pen. Today, families across America were waiting to see if Congress had the moral resolve to override that veto. Some of our colleagues who cast the decisive votes against children's health raised the question of whether the bill was financially reasonable, whether 10 million uninsured American kids were worthy of funding. President Bush said that they were not. I'll add that many of my colleagues who voted against children's health have repeatedly decided to vote for continuing the failed War in Iraq. So right now I want to speak directly to them. If we're talking about what's financially reasonable, let's take a very close look at the stark contrast in costs between children's health and the failed War in Iraq. The total cost of expanding children's health is $35 billion over 5 years, for 10 million kids. How many dollars per child does this cost us every day? Depending on which state you live in, the answer is, as little as $3.50—around the cost of a latte at Starbucks. Iraq costs us $10 billion per month. That means with three and a half months of Iraq funding, the expansion in this bill is paid for.  That's what the war costs. Health care for 10 million children. Versus three-and-a-half months in Iraq. The impact of this bill would have been enormous in New Jersey, where families have to pay some of the highest health care costs in the nation. It would have helped support the state in keeping 124,000 New Jersey children insured, and could have covered as many as 100,000 additional children in our state. In the bill, New Jersey would have received around $350 million next year alone to cover working families and children. This program has given New Jersey families, who cannot afford private coverage, the peace of mind to know their children have health care. President Bush has told those children, no, you don't deserve the federal government's strong support, even though this country spends $330 million in Iraq every day. Again: every single day in Iraq, we spend roughly the amount of money it would take to get tens of thousands of New Jersey children coverage for a full year. I wish he had to look every child in the eye to tell them that. But that's what the war costs. Health insurance for New Jersey children. Versus one day in Iraq. In fact, with the amount Congress has spent on the failed War in Iraq, we could provide two years of health coverage for all of the 47 million Americans who don't have health insurance, who play Russian Roulette every day with their lives and their wallets, and still have $30 billion left over. That's what the war costs. Health coverage for every single American family. Versus the failed War in Iraq. So here's the question we have to ask ourselves, as legislators, as Americans, as human beings: is a child going to get more benefit from a dollar spent keeping our military in Iraq to referee a civil war, or a dollar spent on her health insurance? Is she going to be better served by oil injected in an Abrams tank, or by a vaccine a nurse injects in her arm to save her from measles? Is her life going to be more improved by missiles in the desert or antibiotics in her medicine cabinet, more troops on the streets of Baghdad or more doctors in the hospital down the block, multi-million-dollar bombs that rain down on Iraqi neighborhoods with surgical precision, or orthopedic surgery for a disease like cerebral palsy that would mean the difference between a life in a wheelchair and being able to walk and run and play with the other children at school? How dare we take tax money from her family, and borrow money from foreign countries, to spend it on a war that makes no sense, while leaving her on her own to fight diseases and injuries that might claim her life? It is hard to think of a more grievous act on the part of this government than abandoning those children in order to prolong that war. The vote to override President Bush's veto was not just about political responsibility. It was not just about Constitutional responsibility. It was a question of right and wrong. Let's remember the Administration's motto: \"\"Spend all our money over there so we don't spend it here.\"\" That is as wrong as it gets.    I will continue to speak on what else this war is costing us here at home: in terms of education, jobs, green energy, helping the middle class make ends meet, and the financial stability of the nation our children will inherit. America deserves to know what we could have achieved had this horrible war never happened.  The Administration has spent down our finances, Republicans in the House have voted down health coverage for our children, but one thing they have not yet emptied out is our vast treasury of hope. It is tragic to think what might have been. But it is not too late to believe in what we can become. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=84d331ec-b5fa-4eaf-ae23-f59ada582ad1,\"Menendez: Blockage of DREAM Act Is Blow To Workforce And Military, Unfair To Children Who Grew Up Here \n                    \n                      October 24, 2007\n                     WASHINGTON - Today, the DREAM Act was blocked in the U.S. Senate - a motion to proceed to a full debate on the bill received 52 votes, but 60 were needed.\nU.S. Senator Robert Menendez (D-NJ) released the following statement:\n\n\"\"The students this legislation would help love the United States, which might be the only home they've ever known - so they've followed the rules, worked hard in school and now they want to serve this country in the military or get a higher education,\"\" said Sen. Menendez. \"\"They did not make the decision to enter this country in an undocumented fashion, their parents made that decision. We should not punish children for the sins of their parents. Those children that would qualify for the DREAM Act should be permitted to continue their pursuit of the American Dream.\n\"\"The opponents of this reasonable, bipartisan measure cried ‘amnesty', as they always do. But this was not amnesty. No child would receive a free ticket to legalization. They would have had to meet a number of qualifications and jump through a series of significant hoops on their six-year path to legalization. And, along the way, they would receive the kind of education that would bolster the American workforce or they would serve the United States military, which badly needs highly-qualified, dedicated volunteers. If the United States Senate cannot even agree to move forward with legislation that is good for our children, good for our economy, and good for our military, I see no way that we will be able to move forward with immigration initiatives that benefit only the business community\"\"\n\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fa765955-7dc1-4b07-80cc-c586a797cd6e,\"Guiding Patients through the Health Care Maze: Menendez Patient Navigator Program Gaind Funding in Senate\n                    \n                            Amendment providing $8 million in initial funding for program passes 88-3\n                    \n                      October 23, 2007\n                     WASHINGTON - U.S. Senator Bob Menendez (D-NJ) has successfully secured $8 million in initial funding for a program he established to guide patients through the health care system. The Patient Navigator, Outreach and Chronic Disease Prevention Program, which was signed into law in 2005, helps patients, including those in underserved communities, to overcome the barriers they face in getting early screening and appropriate follow-up treatment. Sen. Menendez was able to attach the funding as an amendment to the Labor, Health and Human Services and Education Appropriations bill currently before the Senate, and he will work to preserve the funding after final passage as the bill is reconciled with the House version.\n\n\"\"It's easy to get tangled up in the complicated web that is our health care system,\"\" said Sen. Menendez. \"\"Navigators help get people to health care providers for prevention screenings and help them navigate our complex health care system if an abnormality is detected.  By getting people in to see a doctor before symptoms develop, we can catch diseases such as cancer or diabetes early.  Then we can get patients into treatment early, which means they'll have a better chance of survival and the health care costs will be lower.\"\"\n\nSuccess of program:\n The Patient Navigator program is based on successful models, including one developed by Dr. Harold Freeman in Harlem and one by Dr. Elmer Huerta at the Washington Hospital Center. In 2003, Sen. Menendez, who then served in the House, secured $100,000 for a Patient Navigator Pilot program at New Jersey's Jersey City Family Health Center. Within the first year, the program facilitated the screenings of 842 patients for cancer, and 140 with abnormal findings were enrolled in the Patient Navigator Program for follow-up.\n Background on program:\nPatient navigators are individuals who know the local community and can help patients navigate through the complicated health care system. They help with referrals and follow-up treatment and direct patients to programs and clinical trials that are available to help them get the treatment and care they need to fight cancer and other chronic diseases.\nThe patient navigator guides patients to health coverage that they may be eligible to receive. They also conduct ongoing outreach to health disparity communities to encourage people to get screenings and early detection services.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3a9e786e-a81a-4057-aa0b-e1ad7807cdcf,\"MENENDEZ,SENATE DEMOCRATS HIGHLIGHT REPUBLICANS' DOUBLE STANDARD IN OPPOSING FUNDING FOR AMERICA'S PRIORITIES\n                    \n                      October 23, 2007\n                     Washington, DC—Senators Dick Durbin, Jack Reed and Robert Menendez held a press conference today to highlight the President's and Congressional Republicans' double standard as they oppose Democrats' appropriations bills that fund critical priorities.  As we work to improve Americans' education, health care, housing and security, the President is blocking these efforts to score political points.\"\"The President has one hand out demanding almost $200 billion dollars of our money for Iraq this year, while with the other he wants to veto a bill that provides for cancer research, hospitals, early childhood education and worker safety,\"\" said Menendez, a Member of the Senate Budget Committee.  \"\"The Bush Administration likes to parrot the line that ‘we're fighting them over there so we don't have to fight them here.' But Americans have figured out that what they mean is, ‘We're spending all our money over there so we don't spend it here.'\"\" \"\"The budget fight the President is spoiling for is about as phony as a World Wrestling Entertainment smackdown,\"\" said Durbin, a Member of the Senate Appropriations Committee.  \"\"It's a lot of bluster and showmanship that has very little to do with reality. The reality is: this Democratic Congress passed a responsible budget that invested in America's middle-class families, our troops and our homeland security - without raising taxes and without adding one dollar to the national debt.  This debate isn't really about numbers, it's about priorities. And President Bush's priorities are simply not those of the American people.\"\" Said Reed, also a Member of the Senate Appropriations Committee: \"\"This debate is really a question of priorities: Democrats believe that we should balance the budget and invest in things like education, health care, affordable housing, and law enforcement here at home.  But now, after six years of signing off on Republican spending bills, President Bush has decided it is time to get out his veto pen for programs like the children's health bill and education funding.  If President Bush carries out more of his veto threats on things like education, cancer research, better roads, law enforcement and affordable housing, I hope that our Republican colleagues will finally say enough is enough and vote with us to override these senseless vetoes.\"\"  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bb6d3ae4-87e7-4525-8486-e5fc4a134451,\"LAUTENBERG, MENENDEZ ANNOUNCE MORE THAN $2.1 MILLION FOR AT-RISK YOUTH\n                    \n                            Grants to offer educational and job opportunities to young adults in Newark, Trenton, Camden, Perth Amboy\n                    \n                      October 23, 2007\n                     WASHINGTON, D.C. - Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert Menendez (D-NJ) today announced that the U.S. Department of Labor will award four YouthBuild organizations in New Jersey with more than $2.1 million in federal funds to provide job and educational training for at-risk youth.             \"\"Education and job training provides at-risk youth with better opportunities for successful futures,\"\" said Lautenberg.  \"\"The skills, training and education gained by these programs will not only help our youth, but also our communities.\"\"             \"\"Our youth deserve our undivided attention and our investment,\"\" said Menendez.  \"\"Providing these education and job training grants are an important step to ensure that our at-risk youth are engaged in constructive activities and to ultimately ensure that they will provide for their families, their communities and the development of our state.\"\"             The grants will help the four YouthBuild groups to implement programs that allow its members to receive education and job training while also constructing or repairing housing for low-income families in their own neighborhoods.  Participants will split their time over a two-year period between the construction site and the classroom, where they will earn their GED or high school diploma and prepare for college and other training opportunities.             In total, the four organizations will receive $2,198,554 in federal funding to run these programs.  The organizations to be awarded these grants are: YouthBuild Newark, Inc. ($549,680); The Isles YouthBuild Institute in Trenton ($550,000); Housing Authority of the City of Camden for Camden YouthBuild ($550,000); and Jewish Renaissance Foundation in Perth Amboy for Middlesex County YouthBuild Consortium ($486,122). # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3d776796-80ce-41cf-985c-5e77d4c340cf,\"7% INCREASE IN COST OF NJ COLLEGES UNDERSCORES IMPORTANCE OF COLLEGE AFFORDABILITY BILL PASSED BY CONGRESS, SAYS SEN. MENENDEZ\n                    \n                            Annual College Board report pegs tuition at NJ four-year public colleges at nearly $10,000 for this year, 2nd highest in nation\n                    \n                      October 22, 2007\n                     WASHINGTON - The College Board today released its annual report on college costs and student aid, revealing that the average cost of tuition and fees at public four-year colleges in New Jersey increased by 7 percent to $9,984 for 2007-08 - the second highest in the nation. The College Board also released annual statistics on student aid, which showed that many of the federal student grants and loans have increased only marginally or have decreased over the past five years, when adjusted for inflation. U.S. Senator Bob Menendez (D-NJ) today said that the report is further evidence of the importance of the landmark College Cost Reduction and Access Act passed by Congress last month. The new law makes available nearly $20 billion in new grant aid for students, including $434 million for New Jersey students over the next five school years and $114.8 million in additional loan aid for New Jersey students over the next five years (http://menendez.senate.gov/newsroom/record.cfm?id=282136). \"\"As college becomes more expensive each year, it becomes even more important that a quality education isn't placed out of the reach of students who want it,\"\" said Menendez. \"\"A good education is the great equalizer in our society. With the landmark college affordability legislation passed by this Congress, I expect that more students who otherwise couldn't afford college will be able to get the education they want and need to be competitive in this global economy. We have made education a priority with this investment, and it will benefit not only today's college students but also the progress and prosperity of our nation.\"\" Among the notable findings in the College Board's report were: College Costs Public Four-Year Colleges ·        Tuition and fees at New Jersey four-year public colleges average $9,984 for 2007-08, a $653 or 7% increase from last year. ·        New Jersey's average four-year public college tuition is the 2nd highest in the nation.  ·        Nationally, in-state tuition and fees nationwide average $6,185 for 2007-08, a $381 increase, or 6.6% more than last year. ·        The full cost of college (tuition, fees, room, and board) is $13,589 for the 2007-08 school year, a 5.9% increase over last year. ·        The average full-time student at a public four-year school receives about $3,600 in grants and tax benefits. Private Four-Year Private Colleges ·        Tuition and fees at New Jersey four-year private colleges average $26,795 for 2007-08, a $1620 increase or 6% more than last year.  ·        New Jersey's average private college tuition is the 13th highest in the nation.  ·        Tuition and fees nationwide average $23,712 for 2007-08, or $1,404 more than last year, a 6.3% increase. ·        The average full-time student at a private college receives about $9,300 in grants and tax benefits. Public Two-Year Institutions ·        Tuition and fees at New Jersey two-year public colleges average $3,342, a $154 increase, or 5% more than last year.   ·        NJ's average public two-year college tuition is the 13th highest in the nation.   ·        Tuition and fees nationwide average $2,361, a $95 or 4.2% increase.  ·        The average full-time student at a two-year public college receives about $2,040 in grants and tax benefits.  Student Aid Pell Grants ·        The average Pell Grant per recipient, $2,494 in 2006-07, was a 23% increase in inflation-adjusted dollars than a decade ago, but 5.3% or $139 lower than 2001-02. ·        Since 2002-03, the average grant per recipient declined 9% in real terms in 2006-07. ·        In 1986-87, the maximum Pell Grant covered about 52% of the average price of tuition and fees and room and board at a public four-year institution and 21% at the average private college.  In 2006-07, it covered 32% at a public four-year college and 13% at a private college. ·        Pell Grants failed to keep pace with inflation for the fourth year in a row.   Other Aid ·        The average SEOG (Supplemental Educational Opportunity Grants) award was $597 in 2006-07, a $34 increase over last year, but a 5% decrease over the last decade. ·        The average Perkins loan, a low-cost loan for low-income students, was $2,208 in 2006-07, $38 lower than the average grant in 2002-03, when adjusted for inflation. ·        The average education tax benefit, $690 in 2006-07, has been relatively stagnant since 2002-03. ·        Work study grants have declined 7% when adjusted for inflation over the last decade - the average 2006-07 grant was $1,335, the lowest in 10 years.  Loans ·        Private loans made up 24% of total education loans in 2006-07, up from 6% a decade ago. ·        Federal loans to undergraduates did not keep up with inflation in 2006-07, and their borrowing from private sources increased by 12% in inflation-adjusted dollars. ·        In 2003-04, 48% of low-income students borrowed an average of $5,640 (in 2006 dollars) to help finance their college educations. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=68b86d8b-0155-43b0-bf43-43916fe119f1,\"BUSH ADMINISTRATION'S \"\"PLAN MEXICO\"\" REQUIRES CLOSE EXAMINATION, SAYS SEN. MENENDEZ\n                    \n                            Administration announces request for $500 million, but as of now, details are scarce\n                    \n                      October 22, 2007\n                     WASHINGTON - Today, the Bush Administration requested $500 million for its \"\"Plan Mexico\"\" anti-drug trafficking program as part of what is reported to be a $1.4 billion plan. U.S. Senator Robert Menendez (D-NJ), Chairman of the Senate Foreign Relations Subcommittee on International Development and Foreign Assistance, released the following statement:\"\"With ‘Plan Mexico', the devil will be in the details, and to this point, details are scarce. I am eager to see if this is strictly an enforcement plan or if it is a more comprehensive plan that includes the type of economic development that helps cut down the drug trade at its roots. We learned with ‘Plan Colombia' that a program focused only on enforcement tactics ultimately may not bring the same success as a broader strategy of enforcement, empowerment and development.\"\"By announcing a funding request without consulting Congress much on the specifics of their plan, the Bush administration continues a pattern of disengagement from the Congress - a pattern that is not constructive for getting things done.  Dropping a $1.4 billion plan on our doorstep without much forewarning makes it harder to build a consensus and to develop sound policy.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=21fdc936-fa77-4b83-9a3b-0c54d731279f,\"LAUTENBERG, MENENDEZ ANNOUNCE $1 MILLION IN FEDERAL FUNDS FOR HOMELESS VETERANS\n                    \n                            Dept. of Military and Veterans Affairs, Doe Fund in Jersey Cityto receive funds\n                    \n                      October 19, 2007\n                     (WASHINGTON, D.C.) - Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert Menendez (D-NJ) today announced that the U.S. Department of Veterans Affairs has awarded the New Jersey Department of Military & Veterans Affairs and the Doe Fund in Jersey City more than $1 million in federal funds to assist homeless veterans. \"\"Our veterans deserve our support for the service and sacrifice they made for our country.  These funds will provide many homeless veterans with the shelter and care they need,\"\" said Sen. Lautenberg. \"\"Our veterans fought for us, and we must fight for them,\"\" said Sen. Menendez. \"\"These grants will help honor the commitment our nation must have to the brave men and women who have served our nation in the armed forces by assisting them in putting a roof over their heads and finding gainful employment.\"\" The U.S. Department of Veterans Affairs (VA) is marking the 20th anniversary of its homeless program by awarding 46 grants worth more than $16 million to public and private non-profit groups that help veterans. The New Jersey Department of Military & Veterans Affairs will receive $500,000 and the Doe Fund in Jersey City will receive $526,500. The VA has the largest integrated network of homeless assistance programs in the country and is the only federal agency that provides substantial one-on-one contact with the homeless.  In many cities and rural areas, VA social workers and other clinicians conduct extensive outreach programs, clinical assessments, medical treatment, alcohol and drug abuse counseling and employment assistance. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=814299a0-8f51-4c61-8c99-c5689bd58165,\"PLANNED NATIONAL GUARD DEPLOYMENTS UNDERSCORE STRAIN ON MILITARY, FAMILIES, HOMELAND SECURITY SAYS SEN. MENENDEZ\n                    \n                            Almost half of NJ National Guard reportedly will be deployed in a year as part of seven National Guard units to Iraq\n                    \n                      October 18, 2007\n                     WASHINGTON - According to news reports, at least seven National Guard units will be notified that they will be deployed to Iraq in 2008 and 2009. As part of this, 2,700 of the 6,000 New Jersey National Guard soldiers will reportedly be deployed by the end of next summer - the largest New Jersey deployment since World War II.             U.S. Senator Bob Menendez (D-NJ), a member of the Senate Foreign Relations Committee who has repeatedly pushed for a transition of the mission in Iraq, today said that these reported deployments add to the many burdens of the Iraq War.             \"\"The strain that the Iraq War is putting on our national security, on our homeland security and on American families becomes more evident by the day,\"\" said Sen. Menendez. \"\"The domino effect caused by stretching our military thin is a dangerous one. With 170,000 troops in Iraq indefinitely, we are less equipped to deal with other national security issues that might crop up around the world. With our National Guard needed over there, we are less equipped to deal with disasters at home. And then there are the human consequences of these deployments - the sons and daughters of America who are asked to serve in the crossfire in Iraq and their families back home who are left to sit and wait and worry.             \"\"The best plan for our national security is to transition our troops out of Iraq, not into Iraq. Only when the Iraqi government and security forces actually believe we won't be there forever will they take control of their country.\"\" # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=2df7d91f-682b-413f-b7e1-c07366ec0737,\"\"\"THE IRAQ WAR: WHAT IT'S COSTING US HERE AT HOME\"\": SEN. MENENDEZ CONTINUES SERIES OF SPEECHES BY FOCUSING ON CHILDREN'S HEALTH INSURANCE\n                    \n                            3 ? months of war spending in Iraq could pay for CHIP bill \"\"Let's remember the Administration's motto: 'Spend all our money over there so we don't spend it here.' That is as wrong as it gets.\"\"\n                    \n                      October 18, 2007\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) this evening continued his series of floor speeches aimed at highlighting what Iraq War spending could provide in domestic priorities. This evening, Sen. Menendez focused on what Iraq War spending could be providing in terms of children's health coverage - earlier today House Republicans sustained President Bush's veto of a children's health bill that could have covered up to 10 million children from families that earn too much to qualify for Medicaid but not enough to afford private insurance.\"\"Iraq costs us $10 billion per month,\"\" said Sen. Menendez. \"\"That means with three and a half months of Iraq funding, the expansion in this bill is paid for. That's what the war costs. Health care for 10 million children. Versus three-and-a-half months in Iraq.\"\" Sen. Menendez plans to deliver speeches in this series periodically, particularly when a domestic policy priority is being considered on the Senate floor. Below is the text of his remarks from tonight, as prepared for delivery:THE IRAQ WAR: What It's Costing Us Here at HomePart II: Iraq VS. Children's Health InsuranceM. President,Yesterday I began to speak about what the failed War in Iraq is costing us here at home, to mark the fifth anniversary of Congress's capitulation to the war. Again, let me begin by saying we are all very aware of the human cost of the war. 3,816 Americans are dead. More than 28,000 have come back home wounded. Iraqis have died in even greater numbers, and millions have fled their homes.  The United States has been involved in the war for longer than we fought World War II. We all know that the Iraq War is a human calamity of vast proportions. It can be harder to visualize the direct damage that comes from the financial cost of the war. We are paying for this war with borrowed money, burying ourselves in massive debt, severely threatening the future of our country.  We know that we have spent more than $450 billion on this war so far. We continue to spend about $10 billion every month. That doesn't just add up to a stack of bills that could have sat in the Treasury. It's equipment at ports that scan for nuclear weapons, and other measures that actually make the homeland more secure. It's children healed with better healthcare. It's more teachers in schools, better training for our jobs, energy that's clean and doesn't strengthen repressive regimes in the Middle East, payment of our debts so future generations will inherit a country that is financially viable. The Bush Administration likes to parrot the line that \"\"we're fighting them over there so we don't have to fight them here.\"\" But when we add it all up, the bottom line is very clear: the Administrations' motto really is, \"\"We're spending all our money over there so we don't spend it here.\"\" M. President, yesterday I spoke about how much we really could accomplish to safeguard our homeland against terrorists if we spent just a fraction of the money that we've dumped into a war that makes no sense.  Today I would like to speak about what the failed War in Iraq has cost us in terms of our health, and specifically, the health of our children.Today the House of Representatives considered whether or not to support a bill to provide health insurance for children. Every time we go to the doctor or fill a prescription at the pharmacy, we remember how expensive health care can be. There are families who work every day in some of the toughest jobs in the country, but their jobs don't offer health care and their paychecks won't let them afford private coverage. That's why the federal government and the states teamed up to start the State Children's Health Insurance Program, or SCHIP. This year Democrats and Republicans came together to pass a bill that will continue to provide health care to the 6 million children already enrolled, and will expand the program to include a total of 10 million children across America. We knew we had to, because the children who fall into the wide abyss between Medicaid and private coverage are depending on us.But on October 3rd, millions of children got some terrible news: President Bush had vetoed the bill. He did it silently and secretly, with no cameras allowed to watch as he condemned millions of children to a lack of coverage with a single stroke of his pen. Today, families across America were waiting to see if Congress had the moral resolve to override that veto. Some of our colleagues who cast the decisive votes against children's health raised the question of whether the bill was financially reasonable, whether 10 million uninsured American kids were worthy of funding. President Bush said that they were not.I'll add that many of my colleagues who voted against children's health have repeatedly decided to vote for continuing the failed War in Iraq.So right now I want to speak directly to them. If we're talking about what's financially reasonable, let's take a very close look at the stark contrast in costs between children's health and the failed War in Iraq. The total cost of expanding children's health is $35 billion over 5 years, for 10 million kids. How many dollars per child does this cost us every day? Depending on which state you live in, the answer is, as little as $3.50—around the cost of a latte at Starbucks. Iraq costs us $10 billion per month. That means with three and a half months of Iraq funding, the expansion in this bill is paid for.  That's what the war costs. Health care for 10 million children. Versus three-and-a-half months in Iraq. The impact of this bill would have been enormous in New Jersey, where families have to pay some of the highest health care costs in the nation. It would have helped support the state in keeping 124,000 New Jersey children insured, and could have covered as many as 100,000 additional children in our state.In the bill, New Jersey would have received around $350 million next year alone to cover working families and children. This program has given New Jersey families, who cannot afford private coverage, the peace of mind to know their children have health care. President Bush has told those children, no, you don't deserve the federal government's strong support, even though this country spends $330 million in Iraq every day. Again: every single day in Iraq, we spend roughly the amount of money it would take to get tens of thousands of New Jersey children coverage for a full year. I wish he had to look every child in the eye to tell them that. But that's what the war costs. Health insurance for New Jersey children. Versus one day in Iraq.In fact, with the amount Congress has spent on the failed War in Iraq, we could provide two years of health coverage for all of the 47 million Americans who don't have health insurance, who play Russian Roulette every day with their lives and their wallets, and still have $30 billion left over. That's what the war costs. Health coverage for every single American family. Versus the failed War in Iraq. So here's the question we have to ask ourselves, as legislators, as Americans, as human beings: is a child going to get more benefit from a dollar spent keeping our military in Iraq to referee a civil war, or a dollar spent on her health insurance? Is she going to be better served by oil injected in an Abrams tank, or by a vaccine a nurse injects in her arm to save her from measles? Is her life going to be more improved by missiles in the desert or antibiotics in her medicine cabinet, more troops on the streets of Baghdad or more doctors in the hospital down the block, multi-million-dollar bombs that rain down on Iraqi neighborhoods with surgical precision, or orthopedic surgery for a disease like cerebral palsy that would mean the difference between a life in a wheelchair and being able to walk and run and play with the other children at school? How dare we take tax money from her family, and borrow money from foreign countries, to spend it on a war that makes no sense, while leaving her on her own to fight diseases and injuries that might claim her life? It is hard to think of a more grievous act on the part of this government than abandoning those children in order to prolong that war.The vote to override President Bush's veto was not just about political responsibility. It was not just about Constitutional responsibility. It was a question of right and wrong. Let's remember the Administration's motto: \"\"Spend all our money over there so we don't spend it here.\"\" That is as wrong as it gets.   I will continue to speak on what else this war is costing us here at home: in terms of education, jobs, green energy, helping the middle class make ends meet, and the financial stability of the nation our children will inherit. America deserves to know what we could have achieved had this horrible war never happened.  The Administration has spent down our finances, Republicans in the House have voted down health coverage for our children, but one thing they have not yet emptied out is our vast treasury of hope.It is tragic to think what might have been. But it is not too late to believe in what we can become.                                                             ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=51749837-25fc-418b-af09-ba1b568be142,\"CHILDREN'S HEALTH VOTE: REPUBLICANS MUST EXPLAIN THEIR COLD-HEARTED ACTIONS, SAYS SEN. MENENDEZ\n                    \n                      October 18, 2007\n                     WASHINGTON - Today, a large bloc of Republicans in the House of Representatives voted to sustain the president's veto of a bill that would provide continuing health coverage for 6 million American children and would provide an additional 4 million children with coverage. These children come from families that earn too much to be eligible for Medicaid but too little to afford private insurance.             U.S. Senator Bob Menendez (D-NJ), who led the fight in the Senate to ensure strong federal support in the bill for New Jersey's FamilyCare program, released the following statement:             \"\"It was cold-hearted veto, and this was a cold-hearted vote,\"\" said Sen. Menendez.  \"\"The health of American children stands to suffer because of it. President Bush and his loyalists in Congress must explain to the American people why they think health coverage for children who have nowhere else to turn is unworthy of a strong federal commitment. These are children from families who work in some of our nation's toughest jobs and get paid little for it. I know for a fact that Democrats in Congress will not give up this fight for our children's health.             \"\"In coming weeks, the 124,000 New Jersey children currently enrolled in the program and the 100,000 additional New Jersey children who could be eligible for the program will continue to be specifically targeted in Congress. The President and many Republicans criticize our important children's health program, but I will continue to stand up against their attacks and fight for our children's health coverage.\"\" # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=bb564cb6-7a33-4f89-b5b9-a398e7e33d64,\"LAUTENBERG, MENENDEZ ANNOUNCE $289K FOR FIRST RESPONDERS AND EMERGENCY WORKERS\n                    \n                            Grants to help NJ improve hazardous materials planning and training\n                    \n                      October 17, 2007\n                     WASHINGTON, D.C. - Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert Menendez (D-NJ) today announced that the U.S. Department of Transportation (DOT) will award New Jersey with more than $289,000 in federal funds to improve the state's response to transportation incidents where hazardous materials are released.             \"\"Toxic spills threaten the health, security and well-being of our communities,\"\" said Lautenberg.  \"\"Our first responders must have the resources they need to contain accidents as quickly and safely as possible.  These funds will better prepare our emergency workers to restore safety and security to our roads and railways.\"\"             \"\"Public safety in our state will be strengthened by these resources,\"\" said Menendez.  \"\"By providing our emergency responders the tools and the most up-to-date training to contain hazardous and chemical materials caused by accidents, these funds will help protect our roads and our communities.\"\"             The grants will be used to train emergency workers to react to a range of hazardous materials challenges, including those from new chemical and alternative energy products such as ethanol.  They also support an annual training seminar for emergency responders at the Middlesex County Fire Academy.             The New Jersey State Police will have control of the funding, and then distribute to individual counties to support hazardous materials assessment, planning, and training exercises.  Last year, funds from this program were awarded to Camden, Hudson, Mercer, Middlesex and Monmouth counties.             In total, the state will receive $289,579 in funding from DOT's Pipeline and Hazardous Materials Safety Administration.  The grants are funded by user fees from shippers and carriers of certain hazardous materials.  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d4797169-f4d0-4349-b3f5-c897724f3ad6,\"Prepared Statement In Support of Breast Cancer Awareness Month October 2007\n                    \n                      October 17, 2007\n                     M. President, I rise today in recognition of October as Breast Cancer Awareness Month.  During this month, numerous national service organizations, professional medical associations, and government and local agencies are working to promote breast cancer awareness, share information and provide access to screening services to women nationwide.   As you may know, breast cancer is the second leading cause of death among women—around 180,000 women in the United States will be found to have invasive breast cancer in 2007.  Furthermore, about 40,500 women will die from the disease this year.  And right now there are slightly over 2 million women living in the United States who have been treated for breast cancer.  M. President, in my home state of New Jersey, we have one of the highest incidence rates of breast cancer in the nation, averaging approximately 8,000 new cases per year.  New Jersey also has one of the highest morbidity rates associated with breast cancer -- approximately 1,500 deaths per year.  These statistics are painful.   Mothers and sisters and daughters are struggling to survive this disease across the country—a disease that is treatable through proper education, early diagnosis, and aggressive therapy.   Routine mammography screening is an especially effective means of detecting breast cancer at the earliest stages.  That is why during Breast Cancer Awareness Month, I urge women nationally to maintain a regular mammography schedule.  When breast cancer is diagnosed at early stages, the chance of survival greatly increases.   Aside from mammographies, the American Cancer Society recommends that women obtain annual clinical breast exams, perform monthly breast-self exams, and obtain a risk assessment from a physician to maintain their own breast health, and to catch breast cancer at the earliest stage possible.  Although it may seem like breast cancer solely plagues women, there are documented cases, although rare, of male breast cancer.  In fact, it is estimated that in 2007 some 2,030 new cases of invasive breast cancer will be diagnosed among men in the United States.   However, there is hope among these devastating statistics; with knowledge and early screening, many cases can be caught early, increasing patients' chances of survival tremendously.  We need to increase our outreach to men and women so we can combat this devastating disease. It is also important to remember that Breast Cancer Awareness Month cannot just be a 31 day event—we must take action every day of the year if we have a hope of increasing treatment and saving lives.   M. President, I ask that my statement be included in the Congressional Record. Thank you.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d39040d6-0a30-408d-afc3-00a063b66250,\"NEW NJ MURDER STATISTICS UNDERSCORE IMPORTANCE OF FEDERAL ANTI-GANG LEGISLATION THAT SEN. MENENDEZ HELPED AUTHOR\n                    \n                            Gang bill that passed the Senate included significant portions from Menendez's legislation\n                    \n                      October 17, 2007\n                     WASHINGTON - Murders in New Jersey reached their highest level since 1990 last year due to an increase in murders in suburban and rural areas, according to the Uniform Crime Report issued by the New Jersey State Police. 66 homicides took place in suburban and rural areas, 12 more than the year before, contributing to the 427 murders statewide. U.S. Senator Bob Menendez (D-NJ), who authored anti-gang measures included in an anti-gang bill that passed the Senate this year and who also has been a leader in the fight to restore broad access to information on the trafficking of guns used in crimes, said today that these statistics should be a red alert for the need to implement legislation targeting gangs and cracking down on gun crimes. \"\"Gangs and gun violence are threatening our communities, and this is a problem that clearly includes suburbs and rural areas,\"\" said Sen. Menendez. \"\"This report is a wake up call to anyone who thinks otherwise. We need to give law enforcement the tools to crack down on gangs and guns used for crimes, and we need to cut down gangs at their roots by preventing our state's youth from joining in the first place. That's the approach I have taken in the Senate with legislation to go after gangs at multiple levels, and I am hopeful that the bill we passed last month makes it into law.\"\" Background The Gang Abatement and Prevention Act, which passed the Senate last month, is closely tied to Menendez's Fighting Gangs and Empowering Youth Act (http://menendez.senate.gov/newsroom/record.cfm?id=271326). It incorporates a number of provisions from the Menendez bill, including: Gang Prevention and Intervention Expands mentoring programs and creates a new demonstration program to encourage creative approaches to gang activity and after-school programs.  The new demonstration program would provide $5 million per year for 5 years for grants to \"\"public or nonprofit private entities (including faith-based organizations)\"\" that create innovative approaches to combat gang activity.  These projects could include things like teen-driven approaches, educating parents about the signs of gang activity in kids, teaching parenting/nurturing to keep kids out of gangs, and facilitating communication between parents and children.  The grant program would require a 25% local match.  The mentoring program provides funds to community-based nonprofit and for-profit agencies to mentor youth involved in the juvenile justice system.  The current program is funded at $1.6 million and has four mentoring partnerships through cooperative agreement awards (each is limited to $400,000 for 4 years).  The legislation would expand the program to $4.8 million per year in order to fund 12 projects.  The two bills also share several provisions to crack down on gang activity, including provision to: New and Increased Penalties for Gang Crimes Make recruiting new gang members a federal crime, with the penalty doubled if a minor is recruited; create a new category of crimes for criminal street gangs for certain violent crimes, such as murder, carjacking, firearm offenses, witness tampering; include violent crimes committed for gang initiation or membership and drug trafficking. Provide significant increases in criminal penalties for gang members for racketeering violence, carjacking, firearm possession, conspiracy.  Call on the United States Sentencing Commission to review penalties for juvenile offenders. For further details on the similarities between the two bills, visit: http://menendez.senate.gov/pdf/MenendezFeinsteinBillProvisions.doc. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fb414cce-57e4-49d2-ab19-00e06c1f28b7,\"HOUSE PASSES LAUTENBERG LEGISLATION ON RAIL SOLID WASTE\n                    \n                      October 17, 2007\n                                  WASHINGTON, D.C. - The House of Representatives today passed the Clean Railroads Act of 2007, legislation authored by U.S. Sen. Frank R. Lautenberg (D-NJ) and cosponsored by Sen. Robert Menendez (D-NJ), that will allow states to regulate solid waste processing facilities along rail lines.  It was included as an amendment to larger rail safety legislation.             The amendment eliminates a loophole in federal law that prohibits states from enforcing environmental, health and safety regulations at these rail sites.  This loophole has allowed railroad companies to pile trash, largely consisting of construction debris, at times two stories high.             \"\"It is critical that we allow states to protect their residents through effective regulation of solid waste processing,\"\" said Lautenberg.  \"\"I applaud the House vote that puts us closer to eliminating a loophole that threatens our environment and security.  I look forward to this legislation becoming law so we can ensure that the public is protected from the hazards these sites pose to human health and safety.\"\"             \"\"The health of our state, its citizens and its environment is precious and should never be jeopardized by the hazardous waste that is dumped at these railroad facilities,\"\" said Sen. Menendez, who was the author of legislation in the House to give states the right to regulate rail waste processing facilities before he entered the U.S. Senate.  \"\"We are now one step closer to making sure that our state can determine for itself what it will and will not permit to be dumped along the railroad.  The inclusion of this amendment in the House bill is tremendously important for New Jerseyans - I applaud Congressman Pallone for his work on the House side, and I will continue to work with Sen. Lautenberg to ensure that this provision becomes law.\"\"             The House's vote to approve the amendment comes one day after Sen. Lautenberg testified before a House Transportation and Infrastructure panel on regulation of these waste sites.  At the hearing, he was joined by Rep. Frank Pallone (D-NJ-06), the sponsor of the House version of the measure.             In September, the Senate passed a temporary measure authored by Sen. Lautenberg to allow New Jersey to regulate some solid waste processing facilities on railroads.  The measure was included in a one-year spending bill for transportation and housing programs which expires after one year.             Lautenberg's Clean Railroads Act of 2007 would make these provisions permanent.  His bill was approved by the Senate Commerce, Science & Transportation Committee as part of the Senate version of rail safety legislation.  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=feaf0238-2fc6-49db-a808-69861b026438,\"EN CUMBRE DE J?VENES LATINOS, L?DERES DEM?CRATAS DEL SENADO RESALTAN NECESIDAD DE COMPROMISO C?VICO\n                    \n                      October 17, 2007\n                     Washington, D.C. - Los demócratas del Senado resaltaron hoy la importancia del compromiso cívico de los jóvenes hispanos, como parte de la Primera Cumbre de Líderes Jóvenes Latinos de los Demócratas del Senado.  La actividad le dio a casi 150 jóvenes latinos de todo el país la oportunidad de interactuar con senadores y discutir asuntos de importancia, tales como: inmigración, derechos civiles y educación.  El Líder de la Mayoría del Senado Harry Reid (D-NV) y los senadores Robert Menéndez (D-NJ), Debbie Stabenow (D-MI), Ken Salazar (D-CO) se dirigieron a los líderes jóvenes hispanos y elogiaron su participación y su impacto en la política pública y en la sociedad. El Senador Menéndez, Copresidente del Grupo de Trabajo Hispano de los Demócratas del Senado, dijo: \"\"Es un honor celebrar la Primera Cumbre de Jóvenes Latinos en la historia del Senado en un tiempo en que hay tanto en juego para nuestros jóvenes latinos y para nuestras familias.  Me da mucha esperanza e inspiración ver a nuestras mentes brillantes debatiendo asuntos que impactan directamente a nuestras comunidades, como los derechos civiles, el compromiso cívico, inmigración y la reforma de la justicia juvenil.  No solo son jóvenes latinos que serán líderes exitosos en una economía global competitiva, sino también jóvenes comprometidos políticamente.  Estarán listos para luchar por lo que le corresponde a nuestra comunidad latina y a nuestra nación.  Mis colegas demócratas en el Senado y yo nos guiamos por el principio de que tenemos que invertir en la generación nueva de líderes que continuarán el trabajo donde nosotros lo dejemos.\"\"El Líder de la Mayoría del Senado Harry Reid (D-NV) enfatizó la importancia de la educación para los allí presentes.  \"\"En mi vida, lo que me dio una oportunidad justa y me permitió alcanzar mis metas fue mi educación.  La educación no siempre está al alcance de todos los miembros de la sociedad estadounidense.  Pero ustedes están aquí hoy porque son el fruto de trabajo arduo y sacrificio durante generaciones.  Es su deber continuar la lucha para darle a los latinos la posición que se merecen en nuestra nación.   Es su deber capacitarse a través del poder que les provee la educación y, entonces, hacer uso juicioso del proceso político y cívico.  Cada uno de ustedes puede ser un agente catalítico de cambio social.\"\"La Senadora Stabenow, Presidenta del Comité de Dirección y Acercamiento al Público de los Demócratas del Senado, añadió: \"\"La Primera Cumbre de Jóvenes Latinos que se celebra hoy provee una oportunidad valiosa para atender los asuntos importantes que los jóvenes hispanos enfrentan a través de la nación.  Nos enorgullece el que se nos unan 150 líderes estudiantiles de más de 20 estados y esperamos con ansias la oportunidad de trabajar juntos en el futuro.\"\"El Senador Ken Salazar, Copresidente del Grupo de Trabajo Hispano de los Demócratas del Senado, dijo: \"\"Es un privilegio que tantos jóvenes latinos que aspiran a ser líderes asistan a la Primera Cumbre de Jóvenes Latinos.  Hoy reconocemos las aportaciones importantes de los jóvenes latinos a nuestra comunidad y a nuestra nación.  El futuro de la comunidad latina está en nuestros jóvenes.  Más de la mitad de los latinos en los Estados Unidos tienen menos de 26 años de edad y seguirán siendo el sector poblacional de más rápido crecimiento en nuestra nación.  Mientras comienza esta cumbre importante, tenemos que recordar que invertir en nuestros jóvenes rendirá frutos en el futuro, según les permitimos alcanzar su potencial y convertirse en agentes de cambio en sus comunidades.\"\"                                                                 ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8d149f21-970f-4e75-bbcc-78c73161727a,\"IN LATINO YOUTH SUMMIT, SENATE DEMOCRATS HIGHLIGHT NEED FOR CIVIC ENGAGEMENT\n                    \n                      October 17, 2007\n                     Washington, D.C. - Senate Democrats today highlighted the importance of civic engagement among young Hispanics as part of the First Senate Democratic Latino Youth Summit.   The event gave close to 150 young Latinos from across the country the opportunity to interact with senators and discuss issues of importance, such as: immigration, civil rights, and education.   Senate Majority Leader Harry Reid (D-NV) and Senators Debbie Stabenow (D-MI), Ken Salazar (D-CO), and Robert Menéndez (D-NJ), addressed the young Hispanic leaders and commended their involvement and impact on public policy and society. Senator Menéndez, Co-chair of the Senate Democratic Hispanic Task Force, said: \"\"It is an honor to celebrate the first Latino Youth Summit in Senate history during a time when a great deal is at stake for our Latino youth and for our families.  It gives me great hope and inspiration to see our bright minds debating issues that directly impact our communities, like civil rights, civic engagement, immigration and juvenile justice reform. Not only are they young Latinos that are going to be successful leaders in a competitive global economy, but they are also young people who are engaged politically. They will be ready to fight for what is right for our Latino community and our nation. My Democratic colleagues in the Senate and I are guided by the belief that we must invest in the new generation of leaders that will follow where we leave off.\"\"Senate Majority Leader Harry Reid (D-NV) emphasized the importance of education for the attendees.  \"\"What leveled the field for me and allowed me to reach my goals in life was my education. Education is not always accessible to all members of American society.  But you are here today because you are the fruit of generations of hard work and sacrifice.  It is your duty to continue the fight to give Latinos their rightful place in our nation's fabric.  It is your duty to empower yourselves through education and, in turn, make wiser use of the political and civic process.  As Latino student leaders, the future of this country is in your hands.  Each one of you can be a catalyst for social change.\"\"Senator Stabenow, Senate Democratic Steering and Outreach Committee Chairwoman, added: \"\"Today's first ever Hispanic Youth Summit provides a valuable opportunity to address the important issues facing Hispanic youth and students throughout the nation.  We're proud to be joined by 150 student leaders from over 20 states and look forward to the opportunity to work together in the future.\"\" Said Senator Ken Salazar, Senate Democratic Hispanic Task Force Co-chair: \"\"It is a privilege to have so many young, aspiring Latino leaders attend the first Senate Democratic Latino Youth Summit.  Today, we are recognizing the important contributions of Latino youth to our community and our Nation.  The future of the Latino community resides with our young people.  Over half of Latinos in the United States are under the age of 26 and will continue to be the fastest growing sector in our Nation's population.   As this important summit begins, we must remember that investing in our young people will pay off in the future as we enable them to reach their potential and become catalysts of change in their communities.\"\"  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=1abb841e-bcf1-4cf1-89df-8b77bebe068c,\"SEN. MENENDEZ STATEMENT ON TURKISH GOVERNMENT ACTIONS\n                    \n                            Senator has long fought for official recognition of Armenian genocide\n                    \n                      October 17, 2007\n                     WASHINGTON - As the Turkish government considers confrontational actions - the denial of logistical support for the United States military in reaction to the Armenian genocide resolution before Congress and possible military activities against Kurdish rebels inside Iraq - U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee and a Congressional leader for recognition of the genocide, made the following statement: \"\"The Turkish government's attempts to intervene in the business of the United States Congress with over-the-top threats should not obstruct a sincere effort within our country to recognize a tragic historical episode. The United States loses moral standing to deal with the genocide in Darfur and human rights violations in Myanmar if we allow a foreign government to back us down from a simple, poignant and important historical remembrance. That is the type of veto power a foreign government should not have over our business. It is the type of veto power the president would not let the Chinese government have when he dismissed its warnings about attending today's Congressional Gold Medal ceremony for the Dalai Lama. \"\"Regarding the Turkish government's threats, we must remember that this same government refused to provide logistical support to our military for the initial invasion of Iraq in 2003. I find it typical of the foreign policy failings of this administration that they go to bat for a foreign government against the United States Congress even as that government threatens to further destabilize Iraq. If this administration has any diplomatic clout whatsoever, it will not allow a resolution being considered domestically to jeopardize relations between our country and Turkey. The administration should work hard to help diffuse the situation in Northern Iraq and reinforce to the Turkish government the significance of a relationship with the United States. That's what the State Department is for, and I expect it to get that message across.\"\" Earlier this year, Sen. Menendez forced the administration to withdraw its nominee for ambassador to Armenia who would not acknowledge the genocide (http://menendez.senate.gov/newsroom/record.cfm?id=280556). Both in the House of Representatives and now in the Senate, Sen. Menendez has been a leading co-sponsor of the Armenian genocide resolution. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=4c8d7b93-62f6-44b7-92d7-32683676a3cf,\"SEN. MENENDEZ REACTS TO SEC. PAULSON'S REMARKS ON MORTGAGE CRISIS\n                    \n                      October 16, 2007\n                     WASHINGTON - Treasury Secretary Henry Paulson today spoke about the nationwide mortgage crisis in a speech at Georgetown University, outlining the issues and the administration's response. U.S. Senator Robert Menendez (D-NJ), a member of the Senate Banking Committee, released the following statement: \"\"Millions of American homeowners are getting crunched by ticking-time-bomb mortgages, and they have yet to see their government take the necessary action. Secretary Paulson's new-found openness to loan modifications is a positive step. However, it seems that every bold action this administration has taken has been to soften the blow for investors. The people who really have something to lose - the homeowners - are still struggling in this subprime storm.\"\" ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3d633df5-cec8-4f7c-b676-5f4abe61191d,\"FAA ANNOUNCES FLIGHT REDUCTION MEETINGS, TAKING LEAD FROM SEN. MENENDEZ'S RECOMMENDATION\n                    \n                            Newark meetings to follow JFK meetings\n                    \n                      October 12, 2007\n                     WASHINGTON - The Federal Aviation Administration today announced that it will convene meetings at Kennedy International Airport later this month to explore the possibility of flight schedule reductions in the New Jersey/New York area to cut down on air congestion and reduce flight delays. The FAA has also indicated to Congressional staff that meeting a Newark International Airport will follow the JFK meetings. This announcement follows a letter sent to the Department of Transportation and the FAA in August by U.S. Senator Bob Menendez (D-NJ), in which he urged an examination of new solutions to flight delays, including flight schedule reductions (http://menendez.senate.gov/newsroom/record.cfm?id=281124). \"\"Air travelers go to the airport to get out of town, not to spend a day on the tarmac or in the terminal,\"\" said Menendez. \"\"This is a severe problem that requires bold solutions, which is why I've been calling for an examination of flight schedule reductions. It is important for these meetings to be followed by decisive action, because meetings alone will not spare travelers from endless waits. It is also important that meetings at Newark follow immediately the meetings at JFK - this is a regional issue and it requires a regional plan involving all players in order to solve it. \"\"I understand that one option the federal government is seriously considering is ‘congestion pricing.' Depending on how this would be implemented, the concept could be cause for some concern. I would worry about a system that discriminates against middle- and working-class travelers. I would also worry about a system that essentially imposes a tax on travelers in areas such as New Jersey just because they happen to live where there is heavy congestion. Solving flight delays by making air travel more unfair wouldn't be the right approach.\"\" The FAA's first set of flight schedule reduction meetings will occur on October 23 and 24 at JFK. The FAA will convene a second round of flight reduction meetings in Newark later this Fall. The New Jersey/New York area has the most congested airspace in the nation, and Newark has more flight delays than any other airport. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5d699c15-cfc7-4309-bec4-57eb441f5880,\"WITHDRAWAL OF BRITISH TROOPS FROM IRAQ UNDERSCORES NEED TO CHANGE COURSE, SAYS SEN. MENENDEZ\n                    \n                            Sec. Gates's comments about British withdrawal do not diminish need to transition the mission\n                    \n                      October 12, 2007\n                     WASHINGTON - Defense Secretary Robert Gates yesterday stated that the Pentagon had coordinated with the British military on its planned withdrawal of half of its forces from Iraq. Following those comments, U.S. Senator Robert Menendez, a member of the Senate Foreign Relations Committee, today said the withdrawal of British troops only accentuates the need to transition the mission for the American troops.Sen. Menendez released the following statement:\"\"The violence in Iraq rages on, with bombing after bombing again this week, and our troops continue to be stuck over there without a light at the end of the tunnel,\"\" said Menendez. \"\"The so-called ‘coalition' was weak to begin with, but now more than ever, we are in the middle of the Iraqi crossfire practically all alone. ‘Stay the course' will bring more of the same, but a transition of our mission will bring the best chance for some sort of stability. The British have recognized this, and it's past time that President Bush and his loyalists in Congress do the same.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3b356ea9-a682-42c3-a113-b7c1002da4cc,\"Lautenberg, Menendez, Rothman, Pascrell, Holt Call on President, Congress to Extend Children's Health Insurance \n                    \n                            NJ Senators, Congressmen Join With Children, Parents at Garfield Health Center in Call for Support of Children's Health Insurance Program\n                    \n                      October 11, 2007\n                      WASHINGTON, D.C. - Sen. Frank R. Lautenberg (D-NJ), Sen. Robert Menendez (D-NJ), Rep. Steve Rothman (D-NJ-09), Rep. Bill Pascrell (D-NJ-08) and Rep. Rush Holt (D-NJ-12) today called on President Bush and members of Congress to support extending health care coverage for children.\n\n\"\"President Bush's veto of the children's health insurance bill was a failure of moral leadership.  The President is willing to spend $3 billion a week in Iraq but won't foot the bill for children to see a doctor when they are sick.  Today I am calling on members of Congress from New Jersey and across the country to put our children's health first and vote to override the President's veto,\"\" said Sen. Lautenberg.\n Sen. Menendez said, \"\"The children that need this health coverage come from families who work in some of the toughest jobs in the nation - jobs that don't include health insurance. With his cold-hearted veto, the president has said that health coverage for these children who have nowhere else to turn is unworthy of a strong federal commitment. Overturning his veto is a matter of values: do we value our children, and do our actions match our values? We are standing together today because we do value our children, who are our strongest asset and our most fragile asset at the same time.\"\"\n\"\"The renewal of CHIP will improve the health and save the lives of millions of American children. The President's veto of Congress' CHIP legislation was unconscionable. His anti-government Republican colleagues in Congress were wrong to vote against the bill. They must put politics aside and vote to override Bush's shameful veto,\"\" said Congressman Steve Rothman (D-Fair Lawn).\n\"\"It is evident today that the President's veto has not deterred New Jersey's pursuit of a stronger more flexible children's health insurance program,\"\" stated U.S. Rep. Bill Pascrell, Jr. (D-NJ-08).   \"\"Next week Congress must overturn the President's misguided SCHIP veto and truly commit to providing health insurance for millions of American children who are at risk of losing coverage.  I implore those who have not supported the reauthorization to break ranks with the President's misguided political philosophy and put America's children first.\"\"\n\"\"At a time when America needs less partisanship and divisiveness, the President has chosen to play political games with the health of our children.  It is unforgivable for him to oppose a program that means so much to so many.  The veto threatens our state's own successful FamilyCare program that covers 124,000 children. I will work with the bipartisan supporters of this landmark legislation in the House of Representatives to override the President's veto,\"\" said Rep. Holt.\n\nSen. Lautenberg, Sen. Menendez, Rep. Rothman, Rep. Pascrell and Rep. Holt joined with state and local officials and representatives from family groups and organizations at the Garfield Health Center to urge support for the Children's Health Insurance Program (CHIP).   The facility is a federally qualified health center that provides primary health care to low and moderate income families and individuals. \nIn 2005, there were 9 million children without health insurance in America, including 250,000 in New Jersey.  CHIP provides health insurance for low income children whose parents cannot afford to buy private insurance and earn too much money to qualify for Medicaid.   This program provides coverage to 6 million children across the nation. \nLast week, President Bush vetoed a bill to extend CHIP despite bipartisan support from Congress.  The bill would have made health insurance available to more children in New Jersey and across the nation.  Next week, there will be a vote in Congress to try to override the President's veto.\n###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=374548af-68a0-4593-a1df-b2049fd7e74d,\"NEW GUEST WORKER PROGRAM RULES COULD OPEN DOOR FOR EXPLOITATION, SAYS SEN. MENENDEZ\n                    \n                            Major concerns about fair wages and housing standards for H2-A program\n                    \n                      October 10, 2007\n                     WASHINGTON - In the wake of the Bush Administration's announcement that it would relax rules to allow more guest workers into the country to work on farms, U.S. Senator Robert Menendez (D-NJ) today expressed serious concerns that these changes would exploit farm workers, forcing them into substandard, inhumane living conditions.  The administration is reportedly considering rule changes that could expedite the H2-A application process, relax housing requirements, lower wage requirements, and expand the types of work guest workers can do. \"\"What the Administration is considering smacks of exploitation and inhumane treatment of guest workers, akin to the Bracero of our nation's past,\"\" said Menendez. \"\"Most Americans would be morally outraged if they learned that the Administration was considering changing the rules to create a cheap, second-class foreign labor force.  \"\"It's one thing to make an economic argument for bringing more guest workers into the country, it's another to exploit the human beings that are brought here. Clearly, there aren't enough Americans to do these jobs, and this is the consequence of not having comprehensive immigration reform. I will watch the administration's actions on this program with great interest and take action accordingly.\"\" # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=0c8d642e-d26e-4fe5-b574-91a64e972320,\"AS MORTGAGE CRISIS CONTINUES, SEN. MENENDEZ UNVEILS NEW \"\"KNOW YOUR MORTGAGE\"\" INITIATIVE  FOR HOMEBUYERS\n                    \n                            Package of legislation will arm homebuyers with knowledge, information to avoid bad loans\n                    \n                      October 10, 2007\n                     WASHINGTON - Standing at the house of a Newark homeowner whose adjustable rate mortgage has skyrocketed recently, U.S. Senator Robert Menendez (D-NJ) today announced that he will introduce an initiative meant to give homebuyers the information and education needed to avoid risky mortgages. The \"\"Know Your Mortgage\"\" package of legislation, which will be introduced after the Senate returns to session, includes bills to disclose upfront more information about loans, enforce truth-in-advertising about mortgages and increase financial education for Americans as young as those in elementary school. \"\"Homebuyers shouldn't have to hire a lawyer to decipher the fine print when pursuing the American Dream,\"\" said Sen. Menendez. \"\"The most basic and obvious step we can take to prevent foreclosures is to make sure homeowners and homebuyers are armed with the information and knowledge that helps them make the right decision about a mortgage offer. \"\"Clearly, this is an important step we can take to solidify the mortgage system. In addition, Congress must pass strong legislation targeting predatory lending, and those responsible for the rise of these ticking-time-bomb mortgages should be held accountable. I continue to explore additional legislative options to stem the mortgage crisis.\"\" The Census Bureau has reported that almost one in six home-owning households in New Jersey spent at least half of its income on housing last year. In addition median monthly housing costs in New Jersey are the second highest in the nation, and 15,426 New Jerseyans filed first-time foreclosures in the first half of this year, more than half of which were adjustable rate mortgages - that's well above the national average. Summary of \"\"Know Your Mortgage\"\" bills: Clear Disclosure Form for Adjustable Rate Mortgages ·        Create a clear, concise disclosure form for all adjustable rate mortgages that will, among other things, tell borrowers how their loan rates could fluctuate, provide a worst-case payment scenario, and disclose other fees that may apply·        Require accurate disclosure forms to be provided to borrowers well in advance of signing a loan Accurate Mortgage Advertisements ·        Improve accuracy of home loan advertisements by increasing oversight of deceptive claims that mislead borrowers into signing unhealthy loan agreements·        Double funding for enforcement of fraudulent mortgage, consumer loan, debt collection, and other credit advertisements Increased Financial Literacy ·        Invest in financial education programs for young people, from elementary and high school students through college·        Establish a clearinghouse for financial literacy teaching materials and best practices for financial education programs·        Increase access to financial and credit counseling for those in financial turmoil and help educate consumers about navigating the complex mortgage process # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5efa3f38-f876-4783-b92a-25a72b8c8308,\"SEN. DEMOCRATIC HISPANIC TASK FORCE FORUM CREATES DIALOGUE BETWEEN SENATORS AND LATINO SMALL BUSINESS OWNERS\n                    \n                            Sens. Menendez, Salazar and other key Dem Senators, listen to concerns and ideas from Latino small business community\n                    \n                      October 5, 2007\n                     WASHINGTON, DC- Senators Robert Menendez (NJ) and Ken Salazar (CO), Co-chairs of the Senate Democratic Hispanic Task Force, joined with fellow Democratic Senators to discuss priorities with leaders of the Hispanic small business community to find ways to ensure economic and entrepreneurial success of the Hispanic-owned businesses.  Senators Salazar and Menendez were also joined by Democratic Senators John Kerry (MA), Chairman of the Senate Small Business Committee, Ben Cardin (MD), Edward Kennedy (MA), Richard Durbin (IL), Bill Nelson (FL), John Tester (MT), Diane Feinstein (CA), Frank Lautenberg (NJ), Jack Reed (RI) and Sheldon Whitehouse (RI).  \"\"We must work to unlock the full potential of the fastest growing segment of our economy, our 1.6 million strong Latino small business community,\"\" said Menendez. \"\"If we make policies that reduce the barriers to success for small businesses, our families, communities and nation will reap the benefits.\"\" \"\"We know that small businesses are the engines of our local economies and Hispanic-owned businesses are one of the fastest growing segments in the U.S. economy,\"\" said Senator Salazar.  \"\"With over 1.6 million Hispanic-owned businesses contributing $222 billion to the U.S. economy, we must continue to invest in programs that help reduce disparities and aid in their success and continued growth.\"\" The forum provided Senate Democrats an opportunity to dialogue with Hispanic business leaders on the needs and concerns of the Latino small business community, including eliminating lending discrimination, ensuring adequate access to capital, and providing government contracting opportunities for minority-owned businesses.  Recently, the Census Bureau reported a 31% growth in Hispanic-owned businesses between 1997 and 2002.  Latino small businesses are one of the fastest growing segments of the U.S. economy, numbering more than 1.6 million today and contributing $222 billion in revenue. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ad5ccdf4-bef1-4a63-a3aa-f0d60897dde5,\"SENATE APPROVES MENENDEZ MEASURE TO REDUCE JUVENILE DELINQUENCY AND GANG PARTICIPATION\n                    \n                            Senate approves amendment to double funds for juvenile mentoring programs\n                    \n                      October 5, 2007\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) has successfully attached an amendment to the Commerce, Justice and Science Appropriations bill that will double funding for the Department of Justice's Juvenile Mentoring Program. The additional $5 million will go to the program with the goal of reducing juvenile delinquency and gang participation.\"\"It is no secret that juvenile crime - particularly juvenile gang activity - is a serious problem in this country and it tears communities and families apart,\"\" Said Menendez. \"\"Nor is it a secret that providing good role models and more structure in the lives of teens has a significant impact in reducing gang activity and violence. I am proud to see this successful investment in our youth embraced by the Senate.\"\" The Juvenile Mentoring Program was established in 1992 with the specific goals of reducing juvenile delinquency and gang participation, improving academic performance and reducing school drop out rates.  Programs funded under the Juvenile Mentoring Program initiative link at-risk children, particularly those living in high-crime areas and those struggling in school, with responsible, working adults.  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=83468bb4-bb00-4b30-972e-4972a620a6e6,\"\"\"END THE CYPRUS OCCUPATION\"\" RESOLUTION INTRODUCED BY SEN. MENENDEZ\n                    \n                            Legislation calls on Turkey to withdraw its 43,000 occupying troops from Republic of Cyprus\n                    \n                      October 4, 2007\n                     WASHINGTON - Senator Robert Menendez (D-NJ) has introduced a resolution, co-sponsored by Senator Olympia Snowe (R-ME), that calls on Turkey to withdraw its 43,000 troops from Cyprus and allow for the process of political reconciliation to move forward. The resolution would also call on the United States to influence Turkey to understand the benefits of ending the military occupation. Turkey's desired ascension into the European Union would be greatly enhanced by such a withdrawal. In addition, the withdrawal of Turkish troops would improve regional stability, improve relations with neighboring Greece, improve relations with the United States, and help Turkey repair its reputation of being opposed to religious tolerance.  Sen. Menendez released the following statement: \"\"Let me be clear, there is no justification for the 43,000 Turkish troops to be in Cyprus. Millions of people have been crossing the buffer zone without incident for years. There are no military attacks and there is no need for military protection of Turkish Cypriots.  In the end, these troops only serve to create military tension.\"\" \"\"For the U.S. to remain silent during this unjust occupation injures our moral standing internationally. And because silence is complicity, we must speak out.\"\" # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=ee695647-afc4-4705-beef-389897cc138a,\"\"\"END THE CYPRUS OCCUPATION\"\" RESOLUTION INTRODUCED BY SEN. MENENDEZ\n                    \n                            Legislation calls on Turkey to withdraw its 43,000 occupying troops from Republic of Cyprus\n                    \n                      October 4, 2007\n                     WASHINGTON - Senator Robert Menendez (D-NJ) has introduced a resolution, co-sponsored by Senator Olympia Snowe (R-ME), that calls on Turkey to withdraw its 43,000 troops from Cyprus and allow for the process of political reconciliation to move forward. The resolution would also call on the United States to influence Turkey to understand the benefits of ending the military occupation. Turkey's desired ascension into the European Union would be greatly enhanced by such a withdrawal. In addition, the withdrawal of Turkish troops would improve regional stability, improve relations with neighboring Greece, improve relations with the United States, and help Turkey repair its reputation of being opposed to religious tolerance.  Sen. Menendez released the following statement: \"\"Let me be clear, there is no justification for the 43,000 Turkish troops to be in Cyprus. Millions of people have been crossing the buffer zone without incident for years. There are no military attacks and there is no need for military protection of Turkish Cypriots.  In the end, these troops only serve to create military tension.\"\" \"\"For the U.S. to remain silent during this unjust occupation injures our moral standing internationally. And because silence is complicity, we must speak out.\"\"  # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f9bd4460-92ab-44ac-bffd-1d74f4df3221,\"LAUTENBERG, MENENDEZ ANNOUNCE $495K IN FEDERAL FUNDS FOR BLOOMFIELD TRAIN STATION\n                    \n                            NJ Transit to Use Funds for Renovations and Improvements\n                    \n                      October 3, 2007\n                     (WASHINGTON, D.C.) - Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert Menendez (D-NJ) today announced that the Federal Transportation Administration has awarded NJ Transit $495,000 in federal funds to restore and expand the inbound/east-bound passenger waiting and shelter building at the Bloomfield Train Station. \"\"These renovations at the Bloomfield Train Station will provide a safer and more convenient environment for commuters,\"\" said Sen. Lautenberg. \"\"As more and more passengers continue to use NJ Transit to get to and from work, it is vital that we continue to renovate and improve our train stations.\"\"                       \"\"These renovation funds for the Bloomfield rail station should benefit commuters who rely on New Jersey's transit system,\"\" said Sen. Menendez. \"\"An investment in improved transportation options such as this is a wise investment.\"\" The rail station at Bloomfield is part of the Montclair-Boonton Line and transports thousands of commuters daily between Hackettstown and New York City.  The Bloomfield passenger facility provides shelter from inclement weather and other services. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=424bce6b-f8a3-4ca2-b001-60108eac4a0d,\"SEN. MENENDEZ VOTES IN FAVOR OF FEINGOLD AMENDMENT TO CHANGE COURSE IN IRAQ\n                    \n                      October 3, 2007\n                     WASHINGTON -U.S. Senator Robert Menendez (D-NJ) today voted in favor of the Fenigold-Reid amendment to the Department of Defense Appropriations bill that would transition the troops out of Iraq and stop funding for the war by June 20, 2008, with certain specific exceptions.Sen. Menendez released the following statement:\"\"Giving the president a blank check for a stay-the-course plan that has cost lives and weakened our security is unacceptable. The president's policy would have this war continue endlessly and it offers no light at the end of the tunnel for 130,000 Americans stuck in the crossfire. The Iraqi security forces and government will not take control of their country until they actually believe we won't be there forever. I will continue to stand up for a change of course in Iraq until we can bring our troops home.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=fcd4c04c-fa40-4e06-bbc1-aa042d57af5f,\"SENATORS OUTLINE GOALS FOR CLIMATE CHANGE LEGISLATION\n                    \n                            Sens. Menendez, Reed, Kerry, Feingold, Dodd and Durbin urge authors of forthcoming legislation to include strong emissions reductions, focus on renewable energy and energy efficiency\n                    \n                      October 3, 2007\n                     WASHINGTON - As a Senate subcommittee drafts cap-and-trade legislation to address the climate change crisis, a group of their Senate colleagues from outside of the Environment and Public Works Committee are urging that the legislation include a number of provisions to help ensure that the goal of significant emissions reductions is achieved (http://menendez.senate.gov/pdf/100207lettertoSenatorsonglobalwarming.pdf). Senator Bob Menendez (D-NJ), along with Sens. Jack Reed (D-RI), John Kerry (D-MA), Russell Feingold (D-WI), Christopher Dodd (D-CT) and Richard Durbin (D-IL) have written to Sens. Joseph Lieberman (I-CT) and John Warner (R-VA), the Chairman and Ranking Member of the Environment and Public Works Subcommittee that is working on the bill, to outline their hopes for stringent emissions reduction goals and an emphasis on energy efficiency and the use of renewable energy.             The Subcommittee has publicly outlined components of its bill, and while singers of the letter applaud the overall goals and concept of the legislation, they believe certain portions must be made stronger. \"\"As our shorelines are at risk, as our wildlife is under threat and as our weather becomes more extreme, strong Congressional action is needed,\"\" said Sen. Menendez. \"\"Our colleagues drafting this legislation have outlined the parameters of a good bill, but we wanted to raise a few concerns that, if addressed, will make the legislation as effective as it should be. We applaud our colleagues on the subcommittee for undertaking this important effort, and we look forward to working with them as they move forward.\"\" \"\"I applaud Senators Lieberman and Warner for their leadership on a strong bill aimed at reducing our greenhouse gas emissions,\"\" said Sen. Kerry. \"\"We wrote this letter to support their efforts and to make it clear there is widespread support for bold action on climate change legislation. The Senate desperately needs more bipartisan, determined efforts to face a global challenge before it becomes a global catastrophe. By taking action to reduce our emissions here at home, we will be positioned to exhibit leadership globally on a new international agreement to address this urgent issue. The United States must lead, not follow, on climate change, and after seven years of denial, distraction, and division from the White House on this issue, finally there is a critical mass in Congress ready to force action.\"\" \"\"In order to prevent the devastating effects of global warming, we need a plan that includes a serious reduction in greenhouse gases,\"\" said Sen. Feingold. \"\"If we don't get serious about climate change, the near-record low water levels in the Great Lakes the people of Wisconsin are seeing today could be just the beginning.\"\" \"\"We cannot wait another day to address the growing threat global warming poses to our nation,\"\" said Sen. Dodd.  \"\"Aggressive emissions goals are necessary to avert the most catastrophic consequences of climate change, and strong energy efficiency policies will bring down energy costs for consumers. I appreciate the efforts of my colleagues and I look forward to working with them to make this legislation as strong as it needs to be.\"\" \"\"The era of climate-change denial in Congress is over,\"\" said Sen. Durbin. \"\"We have seen first hand that voluntary emissions reductions just don't work.  If we are going to avoid a global climate catastrophe in our children's lifetimes, we need mandatory reductions. I look forward to working with my colleagues to reduce greenhouse gases and halt global warming.\"\"   In their letter, the Senators praise the efforts of the Subcommittee to craft meaningful cap-and-trade legislation, but they also ask for the bill to be strengthened in a few important areas: ·        They call for an 80% reduction of emissions by 2050 - the target scientists have said is needed to ensure we avoid catastrophic climate change.  ·        They praise the Subcommittee for avoiding a cost-containment mechanism that is overly aggressive and might undercut the limits set in the bill.  ·        They emphasizes that the bill must encourage cleaning up traditional fossil fuel industries but also must promote greater energy efficiency and the use of renewable energy sources. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=d5349c67-73b4-4151-842a-c7d6ffdf5a1a,\"BUSH VETO OF CHILDREN'S HEALTH PROGRAM A REFLECTION OF VALUES, SAYS SEN. MENENDEZ\n                    \n                            NJ Senator who led fight in Senate on behalf of state's strong program vows to continue standing up for children without health coverage\n                    \n                      October 3, 2007\n                     WASHINGTON - President Bush today vetoed the bill to improve the Children's Health Insurance Program, a move that threatens health coverage for around 6 million children nationwide and 130,000 in New Jersey and that could deny an additional 4 million children coverage, including as many as 100,000 in New Jersey. U.S. Senator Robert Menendez (D-NJ), who led the fight in the Senate to preserve federal support for New Jersey's strong FamilyCare program, today reacted to the veto:\"\"President Bush has told millions of children who have nowhere else to turn that the greatest country in the world refuses to look out for their health,\"\" said Menendez. \"\"If evidence was ever needed that ‘compassionate conservative' was just a long-deceased campaign slogan, this is it. While the president racks up billions upon billions in deficit spending for Iraq, he refuses to support a program benefiting American children who could soon lack health coverage. This has always been a matter of values: do we value our children and do our actions match our values? This veto tramples on the values that most every American shares, that our children are our greatest and most fragile resource.\"\"I have stood up to targeted attempts to take away health coverage from New Jersey children on the Senate floor before, and I will stand up to the president now. We must renew and improve the children's health program, and I will work to help override this uncompassionate veto.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=035fc7b0-b5fa-4779-aecc-a10c7b821344,\"Sens. Salazar, Menendez, and Reid Introduce Resolution Recognizing Contributions of Hispanic Americans\n                    \n                      October 2, 2007\n                     WASHINGTON, DC-   Highlighting the many contributions that Hispanic Americans make to our Nation,Senators Ken Salazar (CO) and Robert Menendez (NJ), co-chairs of the Senate Democratic Hispanic Task Force and Senate Majority Leader Harry Reid, introduced a resolution today recognizing Hispanic Heritage Month, the month-long celebration highlighting the culture, heritage and contributions of Hispanic Americans. Currently, the United States Census Bureau estimates there are over 44 million Hispanic Americans in the United States, making them the largest ethnic minority in the United States.  Their population is expected to exceed 103 million by 2050. One in every three children is of Hispanic descent and the purchasing power of the Hispanic community is projected to reach over $1 trillion by 2010.  Senator Salazar said:  \"\"During Hispanic Heritage Month, we honor the Hispanic community and pay tribute to the extraordinary accomplishments and contributions of Hispanic Americans.   The contributions of Hispanic Americans in our armed services and in our local communities help make our country what it is today.  All Latinos deserve a real opportunity to achieve the American Dream, whether they have been here for generations or just arrived to our shores.  We are committed to an agenda which reflects our commitment that America should work for everyone - not just those at the top - by building opportunity and prosperity for all.\"\" Senator Menendez said: \"\"I am proud to celebrate Hispanic Heritage Month and, as the first Hispanic Senator from New Jersey, I am blessed to introduce this resolution to honor our legacy and contributions.  It is indisputable: people of Hispanic origin have played a pivotal role in our nation's history from as early as when some of the oldest cities in America were founded. Today, we continue to be an integral part of the fabric of this nation as part of the armed services and as entrepreneurs, journalists, farmworkers, artists and teachers. Our human potential helps make this a great nation.\"\" Senator Reid said: \"\"I am proud to represent a state as diverse as Nevada, where almost 1 out of every four Nevadan is Hispanic.  The U.S. Hispanic community represents the best of America. Hard work, dedication to family and community, and patriotism.  These are principles that Latinos, and all Americans cherish. During Hispanic Heritage Month, we should celebrate the culture and contributions of Latinos to our country.  And we should redouble our efforts to fight for policies that improve the quality of life of Hispanic families, and all hard working Americans.\"\" The mission of the Senate Democratic Hispanic Task Force is to increase communication between Hispanic leaders and Democratic Senators and to ensure that the issues of importance to the Hispanic community are addressed in Congress. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=a5946fa3-305b-4d94-8237-682461ffcbac,\"DEMOCRATS, LOCAL OFFICIALS DISCUSS IMPORTANCE OF FUNDING LOCAL LAW ENFORCEMENT PROGRAMS AS CRIME RATES RISE\n                    \n                      October 2, 2007\n                     Washington, DC—Senate Democrats joined local officials at a press conference today to discuss the importance of funding local law enforcement and policing initiatives.  The Senate will begin debating the Commerce-Justice-Science Appropriations bill this week, and will seek to support important programs to fight crime in our schools and communities after years of cuts by the Bush Administration. \"\"With violent crime on the rise for the first time in 15 years, President Bush cut state and local law enforcement funding by almost $1.5 billion.  The time to act is now,\"\" said Senator Barbara A. Mikulski, Chairwoman of the Commerce, Justice, Science Appropriations Subcommittee.  \"\"This bill provides $2.7 billion to give cops on the beat the tools they need to protect our communities from crime, gangs, drugs, domestic violence and crimes against children.  The Democratic Congress will continue to stand up for families and neighborhoods by standing up against the President's veto.\"\" Said Senator Robert Menendez: \"\"The safety of our country begins with how safe we make our own communities.  It starts in our neighborhoods, it starts in our schools, and it starts in our homes.  By neglecting successful law enforcement programs, the Bush administration's policies have made our communities less safe.  The bill before the Senate this weeks reflects an understanding that we have to stop crime before it starts, and that our young people deserve our support.  We can stop violence here in America - but we can't do it without a strong commitment like this.\"\" \"\"From the cop on the beat to elite counter-terror units, fighting crime and protecting homes and families takes time, commitment - and most of all, resources,\"\" said Senator Sheldon Whitehouse, a Member of the Senate Judiciary Committee and a former U.S. Attorney and Rhode Island Attorney General.  \"\"As Rhode Island's Attorney General, I've seen firsthand that support from the federal government can make the difference between getting the manpower and equipment local law enforcement needs, and having to go without.  I'm proud that Senate Democrats are working to strengthen initiatives that reduce crime and keep our communities safe.\"\" Said Scott Pfeifer, Principal of Centennial High School in Ellicott City, Md.: \"\"One of the primary goals of principals is to create a personalized learning environment in which all students and staff feel free to pursue their interests and continued education and development.  However, personalization cannot occur if students and staff are distracted by school crime and violence.  The COPS in Schools program has provided principals with the resources they need to create and sustain a safe school environment, allowing a culture of learning and excellence to emerge.  The COPS program has received a substantial increase in funding, and I urge you to adopt this increased amount.\"\" ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=85567f1d-f811-486e-99a8-94b4cc1d92f2,\"As Deployments to Iraq Strain National Guard, Senate Passes Menendez Amendment Calling for Necessary Equipment for Guard to Protect Homeland\n                    \n                            A 2007 National Guard Bureau report showed shortfalls of up to $4 billion for emergency readiness equipment\n                    \n                      October 1, 2007\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) successfully attached an amendment to the Department of Defense Authorization bill, which gained final passage in the Senate today, that calls for sufficient equipment for the Army and Air National Guard to achieve their missions inside the United States and to protect the homeland. The amendment was introduced in response to the growing concern over the depletion of the National Guard because of deployments to Iraq and the need to adequately respond to domestic emergencies.\n\n\"\"From natural disasters to man-made disasters, threats against our hometowns certainly have not diminished since the beginning of the Iraq War, nor has the need for the National Guard here at home,\"\" said Menendez. \"\"The reported four billion dollar shortfall in funding for equipment seriously hampers our ability to deal with tornadoes, floods, hurricanes, earthquakes, forest fires and the terrorist threat that our nation faces. This amendment is also a reminder that, just as we talk about supporting our troops on missions abroad, we must also support them here at home\"\"\n\nIn February 2007, the National Guard Bureau released a report entitled \"\"National Guard Equipment Requirements,\"\" which detailed the \"\"Essential 10\"\" equipment needs to support domestic missions.  The shortfalls in equipment total $4 billion, and they cover areas including logistics, security, transportation, communications, medical, engineering, aviation, maintenance, civil support teams and force protection, and joint force headquarters and command and control.  Without the proper equipment, the National Guard will not be able to respond as quickly and effectively in missions here at home.\n# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3cf099aa-750c-4e9f-96cf-e68ac119d2b4,\"SEN. MENENDEZ STRONGLY SUPPORTS NJ STATE LAWSUIT TARGETNG ADMINISTRATION LIMITS ON CHILDREN'S HEALTH COVERAGE\n                    \n                            Menendez led Senate 43 colleagues in urging president to roll back restrictions last month\n                    \n                      October 1, 2007\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today spoke in strong support of New Jersey's announcement that the state will file a lawsuit against the Bush administration for its new limits on the Children's Health Insurance Program (CHIP). Last month, Sen. Menendez led 43 Senate colleagues in urging the president to withdraw those limits (http://menendez.senate.gov/pdf/menendezsmithschiplettertobush091007.pdf).Menendez is also an original co-sponsor of Sen. Ted Kennedy's (D-MA) recently-introduced legislation that would block the restrictions. \"\"In Congress and on the state level, we are standing up to the president's misguided plans to restrict health coverage for children who have nowhere else to turn,\"\" said Sen. Menendez. \"\"This is a matter of values - do we value our children and do our actions match our values? The administration's actions do not. \"\"As a senator who led 43 of my colleagues in urging the president to reconsider his uncompassionate attempt to cut kids off the program, I support and applaud Governor Corzine and Attorney General Milgram for filing suit to block these limits.\"\" In August, the Centers for Medicare and Medicaid Services (CMS) laid out these new restrictions regarding CHIP in a letter to state health officials - restrictions that apply to states covering or seeking to cover children from families with incomes above 250 percent of the federal poverty level. Because of the high cost of living in the state, New Jersey, with prior approval from the Bush administration, covers children from families that make up to 350 percent of the federal poverty level. The bill to improve CHIP that gained final passage in Congress last week would at least temporarily roll back the new CMS restrictions. President Bush has threatened to veto that bill. # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=36b922ba-8311-443a-bc30-4a0a3cadad60,\"LEADERSHIP ON CLIMATE CHANGE HAS BEEN ABSENT IN WHITE HOUSE, SAYS SEN. MENENDEZ\n                    \n                            Following President's speech at climate-change conference, Menendez calls for mandatory emissions cuts\n                    \n                      September 28, 2007\n                     WASHINGTON - President  Bush today spoke at the end of a climate change conference hosted by the White  House. The president called for a world effort to reduce emissions, even though  he opposes mandatory emissions reduction plans.U.S. Senator  Robert Menendez (D-NJ), a member of the Senate Energy and Natural Resources  Committee and strong proponent of additional government action to reduce  emissions and combat climate change, made the following statement following the  president's speech:\"\"As our  shores are threatened, as our wildlife is in danger and as our weather becomes  more extreme, this administration has refused to lead with bold proposals to  save our planet,\"\" said Menendez. \"\"If President Bush wants to show real  leadership on climate change he must embrace mandatory emissions cuts  domestically. The United  States must lead the way through action as well  as diplomacy. Lip service alone will not save the world from the effects of  catastrophic climate change.# #  #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=507c5307-c53e-40ed-8196-12061e116881,\"SEN. MENENDEZ SPEAKS OUT IN SUPPORT OF MEASURE TO CRACK DOWN ON HATE CRIMES\n                    \n                      September 28, 2007\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ) today spoke on the Senate floor in favor of the Kennedy-Smith hate crimes prevention amendment to the Department of Defense authorization bill. The amendment would give local, state and federal governments broader authority and resources to investigate and prosecute hate crimes based on race, ethnicity, religion, sexual orientation, disability or gender identity.\"\"Hate crimes violate every principle upon which this country was founded,\"\" said Menendez. \"\"The freedoms we often take for granted - freedom of speech, freedom of association, freedom of religion - become empty promises if we do not protect all those who seek to exercise these freedoms under the Constitution…. This is not about providing special rights; it is about insuring Constitutional rights.\"\"            Full text of Menendez's remarks, as prepared for delivery:\"\"Mr. President.  Nine years ago, a young man sat at a bar having a good time.  Not unlike thousands of young adults at bars across America, this young man needed a ride home from the bar.  So he asked two people he had befriended for a ride.  They agreed, and on the way home, they robbed him, pistol whipped him, and tied him to a fence, leaving him for dead.  They committed this brutal crime for one reason: because the victim was gay.  \"\"Since that time, the Congress has been struggling to enact the Matthew Shepard Local Law Enforcement Hate Crimes Prevention Act - a bill I am proud to co-sponsor.  It has received bipartisan support in both the House and the Senate, but for some reason, we have been unable to make this bill a law.  Today, I hope this will change.\"\"Hate crimes violate every principle upon which this country was founded.  When our Declaration of Independence proclaimed that ‘all men are created equal' - it did not go on to say ‘except Muslim or Sikh Americans.'  The freedoms we often take for granted - freedom of speech, freedom of association, freedom of religion - become empty promises if we do not protect all those who seek to exercise these freedoms under the Constitution.  And, sadly, Mr. President, right now we are not protecting all of our citizens.  This is not about providing special rights; it is about insuring Constitutional rights. \"\"Local, State, and Federal governments need additional resources and authority to investigate and prosecute hate crimes based on race, ethnicity, religion, sexual orientation, disability, and gender identity.  That is exactly what this bill will do.  It will allow the Department of Justice to assist in these investigations and prosecutions, and it will provide grants for State and local governments struggling with the costs and logistics of prosecuting these crimes.\"\"Some people may not think that hate crimes are a real problem in this country.  They are absolutely mistaken.  In 2005 - the most recent year we have data on - 8,380 hate crimes were reported.  Of the single-bias incidents, 54.7% were racially motivated.  17.1% were motivated by religious bias. 14.2% resulted from sexual orientation bias.  13.2% by ethnicity/national origin bias, and just under 1% by disability bias.  My home state of New Jersey experienced at least 756 bias incidents, 47% of which were based on racial bias, 36% were based on religious bias, and 11% were based on ethnic bias.  I say at least 756 bias incidents, because we do not know how many of these vial attacks have gone unnoticed and un-prosecuted due to the scarce resources currently available to local law enforcement.\"\"I am proud to have been the author of New Jersey's landmark Bias Crimes Law.  We said then that we could not eradicate hate or bigotry in New Jersey with a single act, but we could send a strong societal message that such things would not be tolerated.  With this Act, we can do the same for our great Nation. \"\"Of course, you don't need to rely on my numbers or my experiences to know that hate crimes are alive and well in the United States.  All you have to do is watch television.  Last Thursday, thousands of protesters descended on the small town of Jena, Louisiana to protest the treatment of six young African Americans.  The town was a picture of racial tension - all of which came to the surface months ago when three nooses were hung from a ‘whites-only' tree in the Jenna High School.  Perhaps if we had stronger hate crime enforcement, this original action which provoked such violence and started the town down its path would have been properly handled and would never have escalated to the degree that it did.  \"\"Make no mistake about it - hate crimes are a serious problem in the United States.  A problem we can no longer afford to ignore. \"\"Some may protest that this is not the time or place to be debating hate crimes legislation.  I disagree.  For some, it never seems to be the right time or the right place.\"\"Members of our military are not immune to hate crimes.  To the contrary, hate crimes can happen anywhere there are emotions, anywhere there are people with the capability to hate.  In 1992, a Navy Sailor, Allen Schindler, was murdered by two fellow sailors because of his sexual orientation.  In 1999, PFC Barry Winchell was similarly killed because his attackers believed he was gay.  The military has recognized that hate crimes are a problem and sought to prevent them, but more can and must be done. \"\"Mr. President.  It is absolutely appropriate to protect members of our armed forces from the vicious attacks that constitute hate crimes while we are debating the DOD authorization bill.  It is absolutely the right time to enact this hate crimes legislation.  After all, they're fighting for us around the world to preserve our way of life and to promote Democracy.  Let the preservation of the rights of all Americans be the essence of what they are fighting for. I will vote to invoke cloture on the hate crimes amendment offered by Senator Kennedy and Senator Smith.  I urge my colleagues to do the same.\"\"# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=97a6c24b-e2e3-43d7-8fbc-229acf3eb1ba,\"Menendez, Lautenberg, Pallone Call on EPA to Get the Job Done Right\n                    \n                            Federal Legislators React to New EPA Inspector General Report on Ringwood Superfund Site\n                    \n                      September 27, 2007\n                     Washington, DC - United  States Senators Robert Menendez and Frank R. Lautenberg and US Representative Frank Pallone today reacted to the release of an Evaluation Report by the Environmental Protection Agency Office of Inspector General (EPA IG) regarding the Ringwood Superfund site.  The report, Limited Investigation Led to Missed Contamination at the Ringwood Superfund Site, was published in response to a letter sent by the three federal legislators requesting an examination of the cleanup decisions, oversight, and actions at the Ringwood Mines/landfill Superfund site.  \"\"Time and again throughout this report we read ‘the EPA should have done more.' Well that's just not an acceptable response for the residents of Ringwood who have been displaced and whose health is in danger.  It is past time that the EPA does more now,\"\" said Menendez.\"\"This report makes clear that EPA let the Ringwood community down,\"\" said Sen. Lautenberg.  \"\"Long after the site was declared clean, chunks of sludge still appeared because EPA failed to properly identify the contamination from the start and to communicate with Ringwood residents about the problem.  If EPA had done its job, this site would've been cleaned up long ago.\"\"\"\"The Inspector General's investigation confirms our suspicions that the EPA did not take the necessary steps to properly clean up the Ringwood site and ensure the protection of residents and the environment,\"\" Pallone said.  \"\"The glaringly inadequate cleanup of the Ringwood site indicates a clear a case of environmental racism, and every effort must now be made to ensure the remainder of the cleanup process is done properly and in a timely fashion.\"\"The EPA IG report concludes that the ‘EPA did not ensure that Ford's initial site investigation was comprehensive.'  Ford disposed automobile manufacturing wastes, including car parts and paint sludge in the area from 1967 until 1974.  Originally deleted from the National Priorities List (NPL) by the EPA in 1994, Ringwood is the first superfund site in the nation to be relisted on the NPL, indicating a need for further cleanup and remediation.  Ford, under EPA orders, is currently conducting an ongoing, comprehensive site investigation.The original letter from the legislators requesting this review is attached.  Full report is available at the EPA IG website: http://www.epa.gov/oig/###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=54795e96-3798-439d-a715-3d1db198e0aa,\"NEW, INNOVATIVE, BIPARTISAN PLAN FOR LATIN AMERICA AID UNVEILED BY SENS. MENENDEZ AND MARTINEZ, REPS. ENGEL AND BURTON\n                    \n                            10 yr., $2.5 billion plan focuses on investment and development, partnerships with private sector and recipient nations\n                    \n                      September 27, 2007\n                     WASHINGTON - A new, bipartisan plan unveiled today in Congress marks an innovative approach to aid for Latin America. U.S.Senators Bob Menendez (D-NJ) and Mel Martinez (R-FL), along with Reps. Eliot Engel (D-NY) and Dan Burton (R-IN) today announced the introduction of the Social Investment and Economic Development Act for the Americas - a plan that goes beyond traditional assistance to foreign countries by encouraging financial commitments from the private sector and recipient nations. The plan has the support of the Chairmen and Ranking Members of the Senate Foreign Relations Committee and House Foreign Affairs Committee.Currently, 40 percent of the population in Latin America lives below the poverty line. The 10 year, $2.5 billion proposal introduced today focuses on the reduction of poverty, expansion of the middle class, and investment in key development areas, such as education, healthcare, and housing in Latin America and the Caribbean.\"\"In the age of globalization, we are inextricably linked to the rest of the world - and to no people are we more closely connected than to our neighbors in Latin  America,\"\" said Senator Menendez, Chairman of the Senate Foreign Relations Subcommittee on International Development and Foreign Assistance. \"\"Their successes are our successes, just as their social problems cause instability in our communities too. A partnership between our nations that spans the public and private sectors and attacks the roots of poverty is a new approach whose time has come.\"\"\"\"We have seen the benefits of our increased partnerships with countries in the region. This legislation will allow us to build on our successes and achieve more in the future,\"\" said Senator Martinez, former member of the Senate Foreign Relations Committee and current member of Senate Armed Services Committee. \"\"This is a bipartisan effort that will fund programs to improve education, reduce poverty, promote better healthcare, and provide improved housing in Latin America and the Caribbean.\"\"\"\"Our Social Investment and Economic Development Fund legislation will allow the United States to step up as a real partner with our neighbors to the south,\"\" said Rep. Engel, Chair of the House Foreign Affairs Subcommittee on the Western Hemisphere. \"\"Once and for all, we will be able to help our friends in the hemisphere to curb poverty and reduce longtime inequalities.\"\"\"\"The program I believe is absolutely essential to help the people in Latin America and the Caribbean economically; because of that, we hope it will create more stability in the region,\"\" said Rep. Burton, Ranking Member of the House Foreign Affairs Subcommittee on the Western Hemisphere.Overview of legislationProvides $2.5 billion over ten years split evenly      between the U.S. Agency for International Development (USAID) and the      Inter-American Development Bank (IDB). Maximizes U.S. dollars by dividing the work evenly      between two institutions with different sets of expertise:     USAID will focus on basic development issues such       as education, housing, and healthcare; and         The Inter-American Development Bank (IDB) will       concentrate on economic development issues such as creating a strong       investment climate, educating the workforce, microfinance, and leveraging       remittances for development.     Works to reduce the exclusion of marginalized      populations, including indigenous groups, women, rural and urban poor,      people of African descent, and people with disabilities. Creates a bipartisan Advisory Committee of regional      and technical experts to monitor projects. Implements rigorous evaluation and oversight through      impact assessment to make sure taxpayer money is well spent. Limits overhead/administrative costs to ensure most      effective use of US      taxpayer's dollars. Innovative ApproachMultiplies the impact of U.S. investment through the      creation of a matching fund for the private sector and member countries of      Inter-American Development Bank. Compliments the work of the Millennium Challenge      Corporation by working with countries to improve their indicators in the      area of investing in people. Supports the national interests and security      interests of the United States      by reducing  instability in the region, improving economies, and      creating a greater market for U.S. goods. Requires the recipient country to take responsibility      for their projects through a 10 percent contribution. Senate co-sponsors: Foreign Relations Committee Chairman Joe Biden (D-DE), Ranking Member Richard Lugar (R-IN), Sens. Christopher Dodd (D-CT), Ken Salazar (D-CO), John Kerry (D-MA), Hillary Clinton (D-NY), Barbara Boxer (D-CA), Norm Coleman (R-MN).House co-sponsors: Foreign Affairs Committee Chairman Tom Lantos (D-CA), Ranking Members Ileana Ros-Lehtinen (R-FL), Reps. Gregory Meeks (D-NY), Alcee Hastings (D-FL), Donald Payne (D-NJ), Betty McCollum (D-MN), Jim McGovern (D-MA), Mike Honda (D-CA), Joe Baca (D-CA), Barbara Lee (D-CA), Donna Christensen (D-VI), Albio Sires (D-NJ), William Delahunt (D-MA).# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=28ffc9fa-5ec3-44ed-9c9d-68b95cad82e4,\"REPORT ON HIGHLY POROUS CANADIAN BORDER A CAUSE FOR ALARM, SAYS SEN. MENENDEZ\n                    \n                            Senator sponsored successful amendment on northern border security earlier this year\n                    \n                      September 27, 2007\n                     WASHINGTON - As the  Government Accountability Office today reported that its investigators were able  to easily cross the U.S.-Canada border with simulated radioactive material, U.S.  Senator Robert Menendez (D-NJ) reiterated his calls for action to secure the  northern border. In July, Menendez joined with Sen. Ken Salazar (D-CO) to attach  an amendment to the Homeland Security Appropriations bill that would require the  president to work to ensure operational control of all international borders -  including the neglected northern border.\"\"It is of  great concern that anyone would ever be able to stroll over our border with  simulated radioactive material, but for this to happen six years after 9/11 is  terribly alarming, \"\" said Menendez, a member of the Senate Foreign Relations  Committee. \"\"Ever since the Millennium Bomber was caught, the use of the northern  border by aspiring terrorists has been no secret. Solidifying the porous  northern border should be a priority for the Department of Homeland  Security.\"\"Of the  13,488 U.S. border patrol agents, a total of  only 965 are patrolling the northern border. This is the case despite experts'  warnings about the porous northern border and the concrete evidence of an  aspiring terrorist, the Millennium Bomber, being stopped attempting to cross the  northern border.# #  #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=3fa9fc6e-8b77-425b-80ac-5d87dbf1855a,\"ON FLIGHT DELAYS, PRESIDENT'S LACK OF ACTION BRINGS NO RELIEF, SAYS SEN. MENENDEZ\n                    \n                            Senator has urged new solutions, including possible flight schedule reduction\n                    \n                      September 27, 2007\n                     WASHINGTON - Today, President Bush met with Transportation Secretary Mary Peters to discuss the issue of extreme flight delays. Instead of emerging from the meeting to announce concrete proposals, the president merely announced that he had asked Peters to work on the problem.U.S. Senator Robert Menendez (D-NJ), a leader on the reduction of flight delays who last month sent a letter to the Department of Transportation and Federal Aviation Administration urging new ideas to reduce delays, said that the lack of a concrete announcement today is not helping the situation.\"\"I know the president doesn't have to worry about delays traveling on Air Force One, but if he was in touch with the woes of the regular air traveler, he would have realized that concrete federal action was needed long ago,\"\" said Menendez. \"\"Air travelers spent this summer endlessly waiting in the airport terminal and on the tarmac, and those excruciating delays are projected to get worse. We need more than a recognition of the problem, we need action from the FAA.\"\"Last month, Menendez called on the Department of Transportation and Federal Aviation Administration to determine new approaches to reducing delays, including possible flight schedule reductions (http://menendez.senate.gov/pdf/082107lettertofaa.pdf).That call was echoed by outgoing FAA chief Marion Blakey, who in a speech earlier this month called on airlines to reduce schedules or otherwise face federal action (http://menendez.senate.gov/newsroom/record.cfm?id=282360).# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=54f1bccb-dd60-4884-8168-80a7eec4ef61,\"MENENDEZ, SIRES INTRODUCE LEGISLATION TO DESIGNATE BAYONNE POST OFFICE THE \"\"DENNIS P. COLLINS POST OFFICE BUILDING\"\"\n                    \n                            Dedication to serve as tribute to long-time and revered Mayor of Bayonne\n                    \n                      September 27, 2007\n                     WASHINGTON - United States Senator Robert Menendez (D-NJ) and United States Representative Albio Sires (D-NJ-13) have introduced a resolution in the US Senate and US House of Representatives to designate the United States Postal Service facility at 570 Broadway in Bayonne, New Jersey as the \"\"Dennis P. Collins Post Office Building.\"\"  Collins, who served as Bayonne's Mayor for over fifteen years before retiring in 1990, is widely considered a legendary Mayor by his former constituents and a role model by public officials across the state.\"\"As Bayonne's residents will attest, Dennis P. Collins left a lasting impression in his community,\"\" Menendez said.  \"\"Mayor Collins served the City of Bayonne for over fifteen years, never losing sights of his constituents' needs.  Designating the local post office in his name ensures that future generations of Bayonne residents will never lose sight of what to expect from their public servants.  The DennisP.CollinsPostOfficeBuilding shall serve as a shining example of good government for many years to come. I am pleased to work with my colleague in the House to work to make this tribute a reality.\"\"\"\"I am thrilled that we can work together to honor this former Mayor and dedicated public servant of the people of New Jersey,\"\" said Congressman Albio Sires.Sen. Menendez's bill now heads to the Homeland Security and Governmental Affairs Committee to await committee approval before heading to the Senate floor for a vote.  Rep. Sires' bill passed out of the House Committee on Oversight and Government Reform and awaits final passage by the House.# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9c7e47cd-3fca-45dc-9399-a3df09813f48,\"LAUTENBERG, MENENDEZ PUSH FOR GREATER SAFETY AND ACCOUNTABILITY AT WARREN GROVE GUNNERY RANGE\n                    \n                            NJ Sen. Adds Safety, Accountability and Community Impact Requirements to Defense Authorization Bill; Sen. Menendez Co-Sponsors\n                    \n                      September 27, 2007\n                     WASHINGTON - As the Government Accountability Office today reported that its investigators were able to easily cross the U.S.-Canada border with radioactive material, U.S. Senator Robert Menendez (D-NJ) reiterated his calls for action to secure the northern border. In July, Menendez joined with Sen. Ken Salazar (D-CO) to attach and amendment to the Homeland Security Appropriations bill that would require the president to work to ensure operational control of all international borders - including the neglected northern border.\"\"It is of great concern that anyone would ever be able to stroll over the border with dirty bomb material, but for this to happen six years after 9/11 is terribly alarming, \"\" said Menendez, a member of the Senate Foreign Relations Committee. \"\"Ever since the Millennium Bomber was caught, the use of the northern border by aspiring terrorists has been no secret. Solidifying the porous northern border should be a priority for the Department of Homeland Security.\"\"Of the 13,488 U.S. border patrol agents, a total of 965 are patrolling the northern border. This is the case despite experts' warnings about the porous northern border and the concrete evidence of an aspiring terrorist, the Millennium Bomber, being stopped attempting to cross the northern border.# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8dece94d-dd70-4731-9194-c52a5d2cc932,\"Lautenberg, Menendez, Pascrell Fight to Make Great Falls Historic Landmark\n                    \n                      September 27, 2007\n                     WASHINGTON, D.C. -- A Senate panel today heard testimony on legislation Sen. Frank R. Lautenberg (D-NJ) sponsored to designate the Great Falls in Paterson, New Jersey a NationalHistoricPark.  The measure is co-sponsored by Sen. Robert Menendez (D-NJ).  The House version of the bill is sponsored by Rep. Bill Pascrell, Jr. (D-NJ-08).            \"\"The Great Falls in Paterson is a landmark that deserves recognition as a national historic park.  Giving the Great Falls this designation would go a long way toward recognizing the beauty and history of the site and helping preserve it  for future generations,\"\" said Sen. Lautenberg.             \"\"The National Park Service says that Paterson's Great   Falls are not a suitable addition to the Park Service because its characteristics are found elsewhere in the national park system.  I could not disagree more strongly. No other site in the nation more richly represents the remarkable transformation of a rural agrarian society based in slavery into a modern global economy based in freedom.  This truly unique park deserves federal recognition and protection,\"\" said Sen. Menendez, member of the National Parks Subcommittee of the Senate Energy and Natural Resources Committee.\"\"I am honored to testify before the Senate on behalf of the Paterson Great Falls National Historic Park Act,\"\" said Rep. Pascrell.  \"\"We have moved the legislation through the House Committee process and must do the same here in the Senate.  Today's Senate hearing was a significant step forward towards transforming Paterson's Great Falls into a national attraction with the potential to revitalize one of New Jersey's largest and most historic cities.  I thank Senator Lautenberg for his leadership in introducing this legislation in the Senate, and commend Senator Menendez for securing this hearing as a member of the Energy and Natural Resources Committee.\"\"The Lautenberg bill would designate the Great Falls in Paterson a NationalHistoricPark, which would enable the park to receive federal funding. The Great  Falls are the second highest waterfall in the Eastern  United States.  Paterson was America's first planned manufacturing city and was Alexander Hamilton's vision of what the American industrial economy should look like.Rep. Pascrell, the House sponsor of Paterson Great Falls National Historic Park Act, testified on behalf of the legislation before the Senate Energy and Natural Resources Committee.  On June 28, the House Committee on Natural Resources approved the legislation for consideration by the full House of Representatives. ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=67a228de-8f1c-4d22-8b45-d817ae685a83,\"PRESIDENT, FAA MUST ANNOUNCE STRONG ACTION TO REDUCE FLIGHT DELAYS, SAYS SEN. MENENDEZ\n                    \n                            Vocal critic of FAA inaction on delays has urged an examination of solutions, including possible flight schedule reduction\n                    \n                      September 27, 2007\n                     WASHINGTON - As President Bush and Transportation Secretary Mary Peters prepare to meet today on the topic of severe flight delays, U.S. Senator Robert Menendez (D-NJ) is urging them to announce serious and substantive measures to alleviate passenger delays. Menendez has been a leader on this issue, and last month he sent a letter to the Department of Transportation and Federal Aviation Administration urging that they promptly examine new ideas to reduce delays, including possible flight schedule reductions (http://menendez.senate.gov/pdf/082107lettertofaa.pdf). That call was echoed by outgoing FAA chief Marion Blakey, who in a speech earlier this month called on airlines to reduce schedules or otherwise face federal action (http://menendez.senate.gov/newsroom/record.cfm?id=282360).Menendez released the following statement prior to the today's meeting:\"\"Airline passengers go to the airport expecting to get out of town, not to sit endlessly in the terminal or on the tarmac,\"\" said Menendez. \"\"I have called for the administration to do something to get at the root of this problem, and that's what I'm hoping to hear from the president and Secretary Peters today.\"\"It is good to see that the president has finally decided to join the conversation on flight delays, but I am concerned that this might be a case of too little, too late. The FAA has the power to end delays and they should move aggressively to do so. Half the flights at NewarkAirport were delayed this summer. That's intolerable.\"\"The New Jersey/New York airspace is the most crowded in the nation, and NewarkLibertyInternationalAirport experiences the most delays in the nation.# # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=675c8117-58bb-410a-a6ff-77ee0ea7cc72,\"Menendez, Lautenberg Announce Over $900K in Funding for Higher Education Program at NJ Universities\n                    \n                            McNair TRIO Program promotes doctoral studies programs to underrepresented students and prepares them to pursue Ph.D.s\n                    \n                      September 26, 2007\n                     WASHINGTON, D.C.—Sen. Robert  Menendez (D-NJ) and Sen. Frank R. Lautenberg (D-NJ) today announced funding for  the Ronald E. McNair Postbaccalaureate Achievement  Program, also known as the McNair TRIO Program, which prepares  low-income, first generation and/or underrepresented students, with strong  academic standing, to participate in doctoral studies programs. The TRIO program  also provides eligible students academic training, mentoring, leadership  development, financial assistance, among other crucial support during their time  in college, with the goal of increasing their numbers in Ph.D. programs.  \"\"As someone who is the first in his  family to graduate from college, I personally understand the significance of  programs like TRIO, because it takes training to prepare the leaders of  tomorrow,\"\" said Sen. Menendez. \"\"In  an increasingly competitive global economy, we must prepare our best and  brightest students to succeed -- especially those who don't have the resources  to continue onto a more rigorous academic education. The TRIO program is good  for our students and it is a terrific investment for our state.\"\"  \"\"The TRIO program helps  under-represented students pursue advanced degrees at some of New Jersey's most  prestigious universities.  It is an amazing program helping students across the  state and is a valuable investment in the education of future leaders,\"\" said  Sen.  Lautenberg.The awardees for New  Jersey are:Kean  University ($220,000- five year  award)     NJ Institute of  Technology ($220,000- five year award)     Rider  University  ($220,000)     Rutgers  ($254,317) For more information about the  McNair Trio Program please visit the U.S. Department of Education website at  http://www.ed.gov/programs/triomcnair/index.html.  ###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=7966cf35-4e39-4963-8d27-5591632bb7b1,\"Committee Statement on The Role of Credit Rating Agencies on the Subprime Credit Markets\n                    \n                      September 26, 2007\n                     Thank you, Mr. Chairman.  Here we are, six months after our first hearing to examine the subprime crisis, and we are still seeing the effects of the fallout.  The storm isn't over - in fact, it seems to still be picking up wind.  Home sales dropped yet again last month, and yesterday one of the nation's largest home builders reported its worst-ever quarterly earnings.  This means much more than a ripple effect on our markets - it means Americans are still losing their homes.  We still have to get to the bottom of this crisis.  Time is running out. Today we have the chance to examine one piece of this subprime puzzle.  It is only one piece, however.  I will reiterate a point I have made before - we have to look carefully at everyone that has a hand in this chain, from the point a loan is signed by the borrower until it is sold on the secondary market. The cracks in the system cannot be patched up with a few tweaks here and there.  And the market cannot fix this alone.  Until we have uncovered the root causes of what led to the tsunami in this market, it remains ripe for more turmoil.  As a member of this Committee, over the past few months, I have heard all the players duck their responsibility and point the finger at anyone but themselves.  This has become a game of hot potato - and it has to stop.  If you ask me, everyone is responsible and should be held accountable. The fact is, these loans had a real impact on real lives.  We are not just talking about lower annual earnings, or stock prices that have dropped.  We are talking about people whose dreams have been shattered.  We are talking about homes being taken away.  We are talking about the disintegration of the American dream.  And yet, no one is willing to step up and say what hand they had in the process.  So while I don't want this to be just about placing fault, I think we cannot lose sight of the larger picture, and that is we still have not gotten to the root cause of this fallout. While the credit rating agencies may not be at the center of this chain, they are still a link, whether directly or indirectly.  The question is, how much did the credit rating agencies affect the process and the end result?  Did they provide less-than-accurate information?  React too slow to changes in the market?  Compromise ratings by potential conflicts of interest?  These are all valid questions that I hope we explore today.Thank you.\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=656502f5-ed81-46f0-bcce-89e6bfe3b4e5,\"Lautenberg, Menendez Praise Passage of Water Resources Development Act, Important NJ Projects Authorized\n                    \n                            Senators say more than $480 million for New Jersey projects essential for Garden State's economy, safety, environment\n                    \n                      September 25, 2007\n                     (WASHINGTON, D.C.) -- Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert Menendez (D-NJ) hailed the Senate's passage of the conference report for the Water Resources Development Act (WRDA), which authorizes more than $480 million in federal funds for Army Corps of Engineers projects in New   Jersey.  The bill has been passed by the House and the Senate and will be sent to the President shortly for approval.\"\"This bill will bolster our economy, improve public safety and protect New Jersey's beaches and waterways for years to come,\"\" said Sen. Lautenberg who, as a member of the Senate Environment and Public Works Committee, helped author the bill and ushered it through the Senate and in Conference with the House. \"\"I am proud of our work to write this bill and secure these funds for projects critical to communities across our state.\"\" There are two key steps for getting important projects for New Jersey: authorization and appropriations.  In addition to his service on the Environment and Public Works Committee, Sen. Lautenberg also sits on the Appropriations Committee which provides funds for the projects authorized in the WRDA bill. \"\"I'm glad to be serving New Jersey on both of the key committees in the Senate that can deliver funds to important projects across our state,\"\" said Sen. Lautenberg. \"\"Our state stands to gain on the environmental, economic, and public safety fronts because of this bill,\"\" said Sen. Menendez. \"\"We will benefit from a number of projects to rebuild storm-damaged lands, restore critical ecosystems, improve infrastructure and help prevent future flooding. I am proud to have helped secure these funds for the GardenState and for New Jersey families.\"\" WRDA authorizes civil works projects by the Army Corps of Engineers projects, including flood control, hurricane and storm damage reduction, navigation, environmental restoration and infrastructure, and beach replenishment. Altogether, WRDA authorizes more than $480 million in federal funding for the GardenState.   The bill now heads to the President, who has threatened to veto the measure. New Jersey WRDA projects include: * South River project for hurricane and storm damage reduction and ecosystem restoration is authorized for a total of $122,300,000 (estimated federal cost: $79,500,000); * Raritan Bay and Sandy Hook Bay project in Union Beach for hurricane and storm damage reduction at a total cost of $115,000,000 (estimated federal cost of $74,800,000); beach replenishment at an estimated total cost of $6,500,000 over the 50-year life of the project (estimated federal cost of $3,250,000); * Manasquan to Barnegat Inlets project for hurricane and storm damage reduction at a total cost of $71,900,000 (estimated federal cost of $46,735,000) and provide for beach replenishment at an estimated total cost of $119,680,000 over the 50-year life of the project (estimated federal cost of $59,840,000); * Hudson-Raritan Estuary, LibertyState Park project for ecosystem restoration at a total cost of $34,100,000, with an estimated Federal cost of $22,200,000; * Great Egg Harbor Inlet to Townsends Inlet project for hurricane and storm damage reduction at a total cost of $54,360,000 (estimated federal cost of $35,069,000) and $202,500,000 for periodic replenishment over the 50-year life of the project (estimated federal cost of $101,250,000); * $1,100,000 environmental infrastructure project for storm sewer improvements in MiddletownTownship; * $25,000,000 environmental infrastructure project for sanitary sewer and storm sewer improvements in RahwayValley;* $6,000,000 environmental infrastructure project for storm sewer improvements in CranfordTownship; and * $35,000,000 for wastewater infrastructure in Paterson.In addition, the bill provides authorization for studies or modifications of the following projects:* Feasibility Study for flood damage reduction on Acid Brook, PomptonLakes;* Oyster Restoration project in Delaware  Bay;* Ecosystem Restoration for Grover's Mill Pond;* Restoration of Rogers Pond, FranklinTownship;* Shore protection and ecosystem restoration for Lower Cape May Meadows and Cape May Point;* Flood control in the PassaicRiver Basin;* Feasibility study for environmental restoration on the Kill Van Kull, Bayonne and RaritanRiver in Carteret;* Feasibility study for restoring flood protection dikes in Gibbstown and tidegates in GloucesterCounty;* Feasibility study for environmental restoration on the Arthur Kill, Perth Amboy; and * Watershed management technical assistance for MarlboroTownship.###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f28af9c9-9881-490a-954c-7352d23b9a4c,\"SENATE PASSES GANGS LEGISLATION WITH MENENDEZ PROVISIONS INCLUDED\n                    \n                            Menendez joined by Lautenberg in championing prevention, policing measuresMenendez joined by Lautenberg in championing prevention, policing measures\n                    \n                      September 24, 2007\n                     WASHINGTON - The Senate has passed comprehensive legislation aimed at cracking down on gang activity that includes provisions from a gang initiative introduced earlier this year by U.S. Senator Robert Menendez (D-NJ) and co-sponsored by Senator Frank Lautenberg (D-NJ).The Gang Abatement and Prevention Act is closely tied to Menendez's Fighting Gangs and Empowering Youth Act (http://menendez.senate.gov/newsroom/record.cfm?id=271326), which was also introduced in the House by Rep. Frank Pallone (D-NJ). The legislation that passed includes two specific provisions from the New Jersey legislators' bill that would provide demonstration grants for innovative approaches to gang prevention and increase funds for mentoring programs for youth involved in the juvenile justice system.\"\"Law enforcement in New   Jersey is combating a severe and growing gang problem, and this legislation will give them back up,\"\" said Menendez. \"\"I am proud to have helped lead this crime-fighting initiative. Gangs are ravaging our communities, and a comprehensive and tough approach that balances policing, prevention and empowerment is the best defense. That's what we have achieved.\"\"\"\"Gangs are a scourge on the streets of New Jersey and across the nation.  The mentoring and gang prevention programs in this bill will provide young people real alternatives to keep them off the street and out of gangs,\"\" said Sen. Lautenberg.Law enforcement officials recently reported that gang activity in New Jersey is increasing and becoming more sophisticated and aggressive in recruiting and preying on young people in all communities. According to a survey by the State Police, the number of gang members has nearly doubled to slightly more than 17,000 in 2005, up from about 10,000 in 2000.The bill passed today incorporated the following provisions from the Menendez Fighting Gangs bill:  Gang Prevention and InterventionExpands mentoring programs and creates a new demonstration program to encourage creative approaches to gang activity and after-school programs. The new demonstration program would provide $5 million per year for 5 years for grants to \"\"public or nonprofit private entities (including faith-based organizations)\"\" that create innovative approaches to combat gang activity.  These projects could include things like teen-driven approaches, educating parents about the signs of gang activity in kids, teaching parenting/nurturing to keep kids out of gangs, and facilitating communication between parents and children.  The grant program would require a 25% local match. The mentoring program provides funds to community-based nonprofit and for-profit agencies to mentor youth involved in the juvenile justice system.  The current program is funded at $1.6 million and has four mentoring partnerships through cooperative agreement awards (each is limited to $400,000 for 4 years).  The legislation would expand the program to $4.8 million per year in order to fund 12 projects.The two bills also share several provisions to crack down on gang activity, including provision to:New and Increased Penalties for Gang CrimesMake recruiting new gang members a federal crime, with the penalty doubled if a minor is recruited; create a new category of crimes for criminal street gangs for certain violent crimes, such as murder, carjacking, firearm offenses, witness tampering; include violent crimes committed for gang initiation or membership and drug trafficking.Provide significant increases in criminal penalties for gang members for racketeering violence, carjacking, firearm possession, conspiracy. Call on the United States Sentencing Commission to review penalties for juvenile offenders.Senators Menendez and Lautenberg are both co-sponsors of Sen. Feinstein's legislation. For further details on the similarities between the two bills, visit: http://menendez.senate.gov/pdf/MenendezFeinsteinBillProvisions.doc                                                              # # #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=12a2345d-2a4d-4fcf-ba16-65a399e3bdbf,\"LAUTENBERG, MENENDEZ ANNOUNCE $2.3 MILLION FOR RUTGERS\n                    \n                            Federal Funds Would Be Used to Establish Technical Assistance,Research Center to Help Disabled Seek Employment\n                    \n                      September 21, 2007\n                     (WASHINGTON, D.C.) - Sen. Frank R. Lautenberg (D-NJ) and Sen. Robert Menendez (D-NJ) today announced that the U.S Department of Labor has awarded RutgersUniversity $2.3 million to establish a technical assistance and research center to help the disabled find employment.            \"\"These funds will help Rutgers establish valuable leadership programs for adults with disabilities,\"\" said Sen. Lautenberg.  \"\"This center will provide critical research and technical assistance to improve employment opportunities for adults with disabilities.\"\"            \"\"These funds will help Rutgers research and develop innovative programs aimed at ensuring adults with disabilities have the tools they need to succeed and live self-sufficiently,\"\" said Sen. Menendez. \"\"In this increasingly competitive global economy, it is critical that these programs continue to exist.\"\"            The funds -- which total $2,306,066 -- will be used to establish a National Technical Assistance and ResearchCenter to Promote Leadership for Employment and Economic Independence for Adults with Disabilities at RutgersUniversity.  Programs will be established to help adults with disabilities increase their employment and economic self-sufficiency skills.###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=5964cbe5-8aef-4645-95b8-c9743cf15870,\"REPUBLICAN UNWILLINGNESS TO CHANGE COURSE IN IRAQ KEEPS TROOPS IN HARM'S WAY, WEAKENS NATIONAL SECURITY, SAYS SEN. MENENDEZ\n                    \n                            Republicans voted virtually in lock-step to defeat Webb, Feingold and Levin-Reed amendments this week\n                    \n                      September 21, 2007\n                     WASHINGTON - This  morning, the U.S. Senate voted to block the Levin-Reed amendment to safely  transition our troops out of Iraq. This marks the third time this  week that Republicans have led a defeat of legislation to support the troops and  change course in Iraq. Earlier this week, the Webb  amendment to give troops longer stays at home before deployment and the Feingold  amendment to redeploy the troops from Iraq were  defeated.Sen. Robert  Menendez (D-NJ), a member of the Senate Foreign Relations Committee, today said  that by continuing to stand behind the president on Iraq,  Republicans must take responsibility for the war's  results:\"\"The  Iraq war policy has been an  unmitigated fiasco - every day, more Americans die, the military is stretched  thinner and peace in Iraq remains out of reach. My  Republican colleagues have had chance after chance to stand with us and the vast  majority of Americans, who have had enough of the president's false promises.  But time after time the Republicans have voted to stay the course. As this war  continues down its dead-end path, they cannot dodge  accountability.\"\"The current  course has put Osama bin Laden back in business, and it could prevent our  overstretched military from responding to other threats around the world. It  keeps 130,000 Americans in another country's civil war with no end in sight. Not  until the Iraqi government and security forces actually believe we won't be  there forever will they take control of their own country. A transition of our  mission is overdue. Americans are fed up with this failed war policy, and I will  continue to stand up to those who will not consider a change in  course.\"\"# #  #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=9e81d206-f7d9-455a-8824-acc3d6f3c45e,\"CHILDREN'S HEALTH INSURANCE DEAL ANNOUNCED; SEN. MENENDEZ EXPRESSES INITIAL OPTIMISM\n                    \n                      September 21, 2007\n                     WASHINGTON - An  agreement on a final bill to reauthorize and improve the Children's Health  Insurance Program (CHIP) has been announced today. U.S. Senator Robert Menendez,  who led the effort to ensure that the Senate version of the bill preserved  federal support for New  Jersey's strong FamilyCare program, made the following  statement:\"\"I am in the  process of reviewing full details of this final bill, but initial indications  are very positive. What we have is a deal that will keep millions of American  children and families from being pushed into the ranks of the uninsured. Our  state in particular has many thousands of children and families who don't  qualify for Medicaid but also can't afford private health insurance, and they  have nowhere else to turn. The bill Congress will consider and is likely to pass  seems to preserve the necessary federal support for the FamilyCare program, and  I am proud to have worked for these provisions. They will mean health coverage  for many in our state that need it the most.\"\"I stood up  on the Senate floor and defeated an amendment that would have specifically  pushed 3,000 New Jersey children off the  program, and I am in the process of thoroughly checking this bill to ensure that  no New Jersey  child loses health care coverage before I give it my full support.\"\"  \"\"As the  president continues his stubborn and uncompassionate veto threat on this bill, I  will continue to stand up for the millions of children that he is turning his  back on.\"\"# #  #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=8c127221-0640-47ee-933e-c2629060ba4f,\"FEDERAL DECISION ON ELECTRICITY DISPUTE WILL NOT BRING ANSWERS TO THE PUBLIC, SAYS SEN. MENENDEZ\n                    \n                            Market Monitor's allegations against transmission organization could possibly affect electricity prices\n                    \n                      September 20, 2007\n                     WASHINGTON - The  Federal Energy Regulatory Commission (FERC) today chose to send the dispute  between PJM, the non-profit in charge of regulating wholesale electricity  markets, and the states whose markets it regulates to a settlement conference,  which is likely to be confidential. Electricity wholesaler PJM has been charged  with undermining the work of its independent Market Monitor - an action that  could potentially affect electricity prices for customers in New Jersey, 13 other states and the District of  Columbia.U.S. Senator  Robert Menendez (D-NJ) has been pushing FERC to hold full hearings on this  matter in order to provide public answers as to the severity of the charges and  whether or not electricity prices have been  affected.\"\"At the  heart of this matter is whether or not customers are paying fair prices for  electricity, and because of that, we all deserve answers,\"\" said Menendez. \"\"Why  is FERC afraid to hold hearings publicly and reestablish confidence with the  ratepayers? I disagree with the Commission's decision to resolve this behind  closed doors, which effectively ensures that we will never know the facts of  this dispute. \"\"I have  requested hearings in the Senate Energy and Natural Resources Committee, on  which I sit, regarding the proper role of Market Monitors to ensure that their  work is well-defined and they are effective at their jobs. I will continue to  work on this issue.\"\"On Tuesday,  Menendez for the second time requested full hearings on this matter from FERC  (http://menendez.senate.gov/pdf/lettertoferc091807.pdf).  His first request was in July (http://menendez.senate.gov/pdf/LettertoKelliheronPJMMMU7-10-07.pdf).  # #  #\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=f2b2918a-ee9b-4742-86d5-d35f01b3a9e3,\"SEN. MENENDEZ CONTINUES TO FIGHT FOR EQUITABLE FUNDING FOR NEW JERSEY'S SPECIALTY CROPS\n                    \n                      September 20, 2007\n                     WASHINGTON, D.C. - In a letter sent today, U.S. Senator Robert Menendez (D-NJ) joined Senate colleagues in urging Chairman Tom Harkin (D-IA) and Ranking Member Saxby Chambliss (R-GA) of the Senate Agriculture, Nutrition and Forestry Committee to allocate an additional $1.6 billion for Specialty Crops programs.  Previous farm bills offered large subsidies for commodity crops, such as wheat and corn, but largely ignored the needs of farmers who grew specialty crops, such as fruits, vegetables and nursery crops. In New Jersey, the vast majority of agricultural value comes from specialty crops, with the GardenState nationally ranked 2nd in the producing of blueberries, 3rd in the production of cranberries, and 4th in the production of spinach.              \"\"For far too long, the farmers who have brought healthy fruits and vegetables to our table and approximately half of cash crop sales to our nation's economy have received disproportionate financial assistance from their federal government,\"\" Menendez said.  \"\"Our nation can no longer afford to ignore the nutritional and dietary needs of many for the interests of a select few.\"\"            The 2007 Farm Bill passed by the House of Representatives contains $ 1.6 billion in mandatory funding for specialty crop programs such as the State Specialty Crop Competitiveness project, the USDA Fruit and Vegetables Program, conservation programs, and other plans promoting the specialty crop industry in America.  The Senate version of the Farm Bill does not include these provisions.            \"\"The House has provided some help to our specialty crop farmers and the Senate must at the very least match this level of support,\"\" Menendez added.  \"\"Our national agricultural policy should promote fairness to our farmers and access to healthy food.  The Senate should take this opportunity to give New Jersey's farmers and specialty crop cultivators across the nation the support they need to keep our nation well fed.\"\"            Menendez is a cosponsor of the Specialty Crops Competition Act of 2007 and has previously written the Agricultural Committee's leadership in support of the USDA Fresh Fruit and Vegetable Snack Program (http://menendez.senate.gov/pdf/062107USDAfreshfruitsnackprogram.pdf) and the USDA voluntary conservation incentive program (http://menendez.senate.gov/pdf/071607USDAhealthyfood.pdf).The Senate Delegation letter to Agriculture Chairman Harkin and Ranking Member Chambliss is available online at:http://menendez.senate.gov/pdf/092007SpecialtyCropLetter.pdf###\"\nhttp://menendez.senate.gov/newsroom/press/release/?id=559c5876-f96d-4f8f-99cb-0b2427403780,\"SEN. MENENDEZ STATEMENT ON FEINGOLD AMENDMENT TO CHANGE COURSE IN IRAQ\n                    \n                      September 20, 2007\n                     WASHINGTON - U.S. Senator Robert Menendez (D-NJ), a member of the Senate Foreign Relations Committee, today spoke on the Senate floor in favor of the Feingold-Reid amendment to the Department of Defense authorization bill - an amendment that would require the president to redeploy troops from Iraq by June 30, 2008. Audio of speech (call-in actuality information at bottom of release): http://demradio.senate.gov/actualities/menendez/menendez070920.mp3Excerpts of speech:On \"\"Return on Success\"\"\"\"The reality is that ‘A Return on Success' is just ‘Staying the Course' by a different name. We've tried this road - we've gone down it for four and a half years, with no turn of the wheel. Going down this road has diverted attention from Osama bin Laden, who is back in business and roaming free in a safe zone along the Afghanistan-Pakistan border. It has fomented terrorism, creating a training ground in Iraq and allowing al Qaeda to regroup to its strongest level since 9/11, according to intelligence estimates. It has stretched our military thin, wearing down troops serving extended tours, depleting our reserves and national guard, and compromising national security with a diminished preparedness to tackle other international threats. It has cost us dearly in national treasure and, most importantly, precious lives.\"\"Going down this road has not brought stability to Iraq nor made us any safer at home. It is clear we are being driven down a dead end street by an administration without a roadmap for a lasting peace.\"\"On purpose of Feingold amendment \"\"A majority of Congress and a overwhelming majority of the American public has long been unified behind a course of action that we believe gives us the best chance for success and security - both in Iraq and here at home. And that is the purpose of this amendment.\"\"A responsible transition of our mission and withdrawal of our troops from Iraq on one hand gives a sense of urgency to the Iraqi government and security forces that is currently absent.Until they actually believe we won't be there forever, they will not take control of their country. \"\"At the same time, bringing our troops home allows our overburdened military to regroup. It allows us to have capability to respond to other threats in the world that might arise. It allows the replenishment of our National Guard, which is currently stretched so thin that response to disasters in the homeland has been affected.\"\"Most important about our plan and this amendment - it allows American families who have been separated and stressed by an ill-conceived war, to be made whole again. The alternative is an endless occupation in Iraq with more American blood spilled and no light at the end of the tunnel.\"\"On war in historical context:\"\"Future generations will harshly judge this war policy and the choice to continue it indefinitely - they will still be paying the price. We have another opportunity, here today, to write an ending to this sad chapter, to turn the page and recommit to strengthening the military and targeting Osama bin Laden. We have the opportunity to change history for the better.\"\"            FULL TEXT OF SPEECH, AS PREPARED: M. President, I rise as one who has voted against this war from the beginning in strong support of the Feingold-Reed amendment.The last time we gathered here to vote on a change of course in Iraq was July 18 - two months ago.Since that day, the Iraqi parliament - with its country in the grips of a civil war and with much work to do to achieve political reconciliation - took a month-long vacation.Since that day, four bombs were set off in concert in northern Iraq, leaving more than 500 dead - the deadliest coordinated attack since the beginning of the war.Since that day, despite a much ballyhooed cease fire in Al Anbar, Shiekh Abu Risha, our main ally in the province, was murdered… a mere 10 days after he shook hands with President Bush.Since that day in July when we last had a chance to change course, another 160 sons and daughters of America have lost their lives in Iraq.Another 160 flag-draped caskets flown to Dover. Another 160 renditions of Taps played at tear-soaked funerals. Another 160 American families that will have an empty seat at the table come Thanksgiving. So here we are again.The calendar changes, but the challenge does not.Yet again, we meet here on the Senate floor to consider another proposal to responsibly and safely transition our mission in Iraq and bring our troops home… out of another country's civil war.Yet again, as we have heard many times before through the course of this failed war policy, the president and his loyalists in this chamber are using that tired refrain:\"\"the plan is working, it needs more time, we cannot leave.\"\"Now, as then, these words ring hollow.The administration that brought us the search for WMDs,the \"\"cakewalk,\"\" and \"\"last throes\"\"is now pitching \"\"A Return on Success.\"\"But this president lost his credibility on Iraq about the time he stood on an aircraft carrier underneath a banner reading \"\"Mission Accomplished\"\"… almost four and a half long years ago.The administration may be shopping a new catch-phrase, but we are not buying anything they are selling anymore. The President, armed with questionable statistics, has presented us an open-ended, no-exit plan for the sons and daughters of America who continue to fight and die in Iraq. The reality is that \"\"A Return on Success\"\" is just \"\"Staying the Course\"\" by a different name.We've tried this road - we've gone down it for four and a half years, with no turn of the wheel.Going down this road has diverted attention from Osama bin Laden, who is back in business and roaming free in a safe zone along the Afghanistan-Pakistan border. It has fomented terrorism, creating a training ground in Iraq and allowing al Qaeda to regroup to its strongest level since 9/11, according to intelligence estimates. It has stretched our military thin, wearing down troops serving extended tours, depleting our reserves and national guard, and compromising national security with a diminished preparedness to tackle other international threats.It has cost us dearly in national treasure and, most importantly, precious lives.Going down this road has not brought stability to Iraq nor made us any safer at home.It is clear we are being driven down a dead end street by an administration without a roadmap for a lasting peace.And now they expect the American people to buy the no-exit occupation they are selling? The deployment of more than 100,000 American troops for as far in the future as the eye can see? No end in sight?Today, we are living with the consequences of the Administration's failed policy.  Over 3,700 troops have been killed in Iraq since the beginning of the war, including 97 service members with ties to New Jersey.  We have now spent over $450 billion on the war in Iraq, with a burn rate of $10 billion a month. Frankly, I never believed the Administration's estimate that the so-called surge would only cost $5.6 billion and these new numbers only prove once again that we have been misled.  Despite the meager improvements in the Anbar province cited in General Petraeus' report last week, the situation in Iraq continues to grow worse.  Sectarian violence surrounding Baghdad has surged this past week in connection with the holy month of Ramadan. At least 22 people have been killed in a series of bombings and shootings in Diyala and Kirkuk. Moreover, General William Caldwell has reported that there is evidence that Sunni extremist groups in Iraq have been receiving funds from Iran.  And in terms of reconstruction, oil production in Iraq is still lower than it was before the war and Baghdad is getting approximately 7 hours of electricity a day, significantly less than before the war.How can we be expected to support a war plan about which every independent report portrays a situation of chaos, far away from stability or political reconciliation?In fact, according to the latest report card on Iraqi progress, the president's war policy is still flunking.Even if the debatable metrics used to compile the report are solid, half of the benchmarks have not even seen a minimal amount of progress. Half.And now that it's clear that the benchmarks are perhaps impossible to achieve with our current strategy, we see a concerted effort to play down their importance.In General Petraeus's testimony it was evident - the original goals of the escalation, to give the Iraqi government and political factions breathing room to achieve reconciliation, have not been met. The benchmarks are now an afterthought and success is being measured in different and less stringent terms.It's a recurring pattern that no longer fools anyone - make a bold proclamation, fail to meet expectations, change the discussion.Moving the goal posts may appease some in this chamber, but it does not help us achieve the lasting peace that is ultimately more important. And when all else fails, the president and his supporters often respond to rightful criticism of their disastrous war plan with a question meant to change the subject - \"\"well, where are your ideas?\"\"But what they fail to realize is that a majority of Congress and a overwhelming majority of the American public has long been unified behind a course of action that we believe gives us the best chance for success and security - both in Iraq and here at home.And that is the purpose of this amendment.A responsible transition of our mission and withdrawal of our troops from Iraq on one hand gives a sense of urgency to the Iraqi government and security forces that is currently absent.Until they actually believe we won't be there forever, they will not take control of their country. At the same time, bringing our troops home allows our overburdened military to regroup. It allows us to have capability to respond to other threats in the world that might arise.It allows the replenishment of our National Guard, which is currently stretched so thin that response to disasters in the homeland has been affected.Just yesterday, it was announced that half of the Army National Guard in my home state of New Jersey - that's 6,200 soldiers - will be deployed as soon as late next year, almost two years before the deployment was originally scheduled. That will leave our National Guard at half strength in a state at serious risk for a terrorist attack. That's 6,200 soldiers taken away from their loved ones to be tossed into another country's civil war.Most important about our plan and this amendment - it allows American families who have been separated and stressed by an ill-conceived war, to be made whole again. The alternative is an endless occupation in Iraq with more American blood spilled and no light at the end of the tunnel. M. President, throughout this war, many have drawn the obvious parallels between this failed war policy and another quagmire 40 years ago.The comparison is valid and important.It is said that those who do not learn the lessons of history are doomed to repeat it.Because I fear history is being repeated, I want to draw upon the words of Robert Kennedy, who served in this chamber and delivered this statement about the Vietnam War in March of 1968. He said:\"\"We are entitled to ask -- we are required to ask -- how many more men, how many move lives, how much more destruction will be asked, to provide the military victory that is always just around the corner, to pour into this bottomless pit of our dreams?\"\"But this question the Administration does not and cannot answer. It has no answer -- none but the ever-expanding use of military force and the lives of our brave soldiers, in a conflict where military force has failed to solve anything in the past.\"\"M. President, our past teaches us that our current struggle and our current predicament are best solved by a new course.Future generations will harshly judge this war policy and the choice to continue it indefinitely- they will still be paying the price.We have another opportunity, here today, to write an ending to this sad chapter, to turn the page and recommit to strengthening the military and targeting Osama bin Laden. We have the opportunity to change history for the better. I urge my colleagues to begin that change today and vote for a new course in Iraq.  Call-in actuality info:(800) 511-0763Actuality number is 1648# # #\"\n"
  },
  {
    "path": "week-2/uk-lords-votes.csv",
    "content": "mpid,party,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629\r\nmpid100001,Con,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,-1,-1,1\r\nmpid100002,XB,0,1,0,1,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,1,0,-1,0,0\r\nmpid100003,Lab,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100004,LDem,1,1,1,-1,-1,0,1,0,-1,-1,-1,-1,1,1,1,1,1,0,-1,1,-1,-1,0,0,0,-1,-1,-1,1,1,-1,1,0,1,1,0,-1,-1,-1,-1,1,-1,-1,-1,-1,0,0,-1,1,1,-1,-1,1,-1,-1,0,0,0,-1,-1,0,1,0,0,1,-1,1,-1,0,1,0,0,-1,-1,0,-1,0,-1,1,1,1,0,1,1,-1,0,-1,-1,-1,0,1,-1,-1,0,-1,1,-1,0,0,-1\r\nmpid100006,Lab,-1,-1,0,1,-1,-1,-1,0,1,-1,0,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,0,0,0,0,-1,-1,1,0,-1,0,-1,-1,-1,0,0,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,0,1,-1,0,0,0,0,-1,-1,-1,-1,0,0,-1\r\nmpid100007,LDem,0,1,0,-1,-1,1,1,0,-1,-1,0,0,1,1,1,0,0,0,0,1,0,-1,0,0,0,0,0,0,0,1,0,0,0,1,1,-1,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,-1,-1,0,-1,-1,0,0,0,0,0,-1,1,0,0,0,0,0,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0\r\nmpid100008,Con,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0\r\nmpid100009,XB,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0\r\nmpid100010,XB,0,0,0,1,1,0,0,0,1,1,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,1,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,-1,1,0,0,0,0,0,0,1,0,0,1,-1,0,-1,0,0,0,1,0,-1,0,0,-1,1,-1,-1,-1,-1,0,0,1,0,0,-1,-1,-1,-1,0,-1,1,1,1,-1,1,1,1,0,-1,0,0\r\nmpid100011,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,0,0,0,0,0,-1,0,0,0,0,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,0,-1,-1,-1,-1,0,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,0,0,-1,1,-1,-1,-1,-1,-1,0,0,0,0,-1\r\nmpid100012,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,1,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,0,-1,1,-1,1,0,0,0,0\r\nmpid100013,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,1,-1,-1,-1,-1,1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100014,XB,1,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,1,0,1,-1,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,-1,1,0,1,1,-1,0,0,0,0,0,-1,1,0,0,0,0,0,0,-1,0\r\nmpid100015,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100016,Con,0,0,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,0,1,0,1,1,1,1,-1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,0,0,1,1,1,0,0,1,1,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,1,0,0,1,0,-1,0,1\r\nmpid100017,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,1,-1,-1,-1,-1,-1,0,0,1,0,-1\r\nmpid100018,Other,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100019,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100020,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1\r\nmpid100023,Lab,-1,0,0,-1,-1,0,-1,0,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,0,0,-1,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,0,0,1,-1,-1,-1,-1,-1,0,0,1,0,-1\r\nmpid100024,Lab,-1,-1,0,-1,-1,0,0,-1,-1,-1,0,-1,-1,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,0,-1,0,0,-1,-1,0,0,-1,-1,1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100025,Con,0,0,1,1,1,0,1,0,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1\r\nmpid100026,Con,0,0,0,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,-1,1,0,1,1,0,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,-1,1,1,1,0,1,1,0,-1,0,1\r\nmpid100027,Lab,0,0,0,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100028,Con,1,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,-1,1,0,1,1,0,0,1,0,1,1,1,1,1,0,1,0,1,1,0,0,0,0,1,1,1,1,1,0,0,1,0,1,1,1,0,0,0,0,-1,1,1,0,0,1,1,1,0,0,1\r\nmpid100029,LDem,0,0,0,0,0,0,0,0,-1,-1,0,0,1,0,0,0,0,-1,0,1,0,0,0,0,0,0,-1,-1,1,1,-1,1,0,1,1,0,0,0,-1,-1,0,-1,0,0,-1,0,0,-1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,1,0,0,1,-1,1,-1,1,1,0,0,-1,-1,0,0,0,-1,1,1,1,-1,1,1,0,0,0,0,0,0,0,-1,0,0,0,1,0,-1,-1,-1\r\nmpid100030,Lab,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,1,0,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100031,Con,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100032,Con,1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,-1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1\r\nmpid100033,XB,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1\r\nmpid100034,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1\r\nmpid100035,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100036,LDem,1,1,0,-1,-1,1,1,1,-1,-1,0,0,1,1,1,1,0,-1,-1,1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1,1,0,0,0,-1,-1,1,0,-1,-1,-1,0,-1,-1,1,1,-1,-1,0,-1,-1,1,0,0,0,0,-1,1,0,0,1,0,0,-1,1,1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,-1,0,0,0,0,0,0,-1,0,0,0,1,-1,0,0,-1\r\nmpid100037,Lab,-1,0,0,-1,-1,0,-1,0,-1,-1,0,-1,0,0,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,0,-1,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,0,0,0,0,0,0,1,0,-1,0,-1,-1,-1,0,0,-1,0,1,-1,-1,-1,-1,-1,0,-1,0,-1,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,1,-1,-1,-1,-1,-1,-1,-1,0,0,0\r\nmpid100038,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,1,0,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100039,Green,1,1,0,-1,-1,0,1,0,-1,1,0,-1,0,1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-1,0,0,-1,1,0,0,1,0,-1,-1,0,-1,1,1,0,-1,-1,0,0,-1,1,0,0,-1,0,1,1,0,0,1,0,1,0,0,0,-1,1,0,0,0,0,1,0,0,0,0,0,1,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,1,-1,0,1,0,1,0,-1,-1,-1\r\nmpid100040,Con,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1\r\nmpid100041,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1\r\nmpid100042,Lab,-1,-1,0,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,1,-1,0,-1,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100043,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100046,Con,1,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,1,1,0,0,0,1,1,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,0,1,0,0,-1,1,-1,0,1,1,1,0,-1,0,1\r\nmpid100047,Lab,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,-1,1,-1,0,0,-1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100049,XB,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100051,Bp,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,0,1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1\r\nmpid100052,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,0,0,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,0,1,-1,-1,-1,-1,-1,-1,0,0,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100053,Con,0,0,0,1,1,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,1,-1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,-1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1\r\nmpid100055,Con,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0,0,1,0,1,1,0,1,1,1,0,0,1,0,0,0,1,1,0,0,0,0,1,0,1,1,1,0,-1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,1\r\nmpid100056,Con,0,0,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,0,1,0,1,1,-1,1,1,1,1,0,1,1,1,0,1,1,1,1,0,1,-1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,-1,1,1,1,1,1,1,1,-1,0,1\r\nmpid100057,Lab,-1,0,0,1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,0,0,1,-1,1,-1,0,0,0,-1,0,0,-1\r\nmpid100058,XB,-1,0,0,-1,1,0,0,0,-1,1,0,0,0,0,0,0,0,-1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,0,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0\r\nmpid100059,Lab,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,0,0\r\nmpid100060,Con,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100061,Con,0,1,0,1,1,0,1,0,1,1,0,0,0,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,-1,1,0,0,1,0,1,1,1,1,1,1,0,0,1,1,-1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,0,0,1,-1,1,1,1,1,1,1,0,0,0,1\r\nmpid100063,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,-1,1,-1,0,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-1,0,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,-1,0,-1,0,-1,1,0,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100065,Con,1,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,-1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,1,0,1,0,1,0,-1,0,1\r\nmpid100067,XB,0,0,0,1,1,0,1,0,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,0,0,1,1,1,0,1,1,1,1,0,1,1,1,1,-1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,0,-1,1,1,1,0,0,0,1,0,1,1,1,0,0,1,1,0,0,1,0,1,0,0,0,0,1,1,1,1,1,0,-1,0,1\r\nmpid100068,LDem,1,1,0,-1,-1,0,0,0,-1,-1,0,-1,0,0,0,1,1,0,-1,1,-1,-1,0,0,0,0,0,0,0,1,-1,1,0,1,1,0,0,0,0,0,1,0,-1,0,-1,0,0,0,1,1,-1,-1,0,-1,-1,0,0,0,0,-1,-1,1,0,0,1,0,1,-1,1,1,0,0,-1,-1,0,-1,0,-1,1,1,1,-1,1,1,-1,0,-1,0,0,0,0,0,0,0,-1,1,0,-1,0,-1\r\nmpid100069,Lab,-1,-1,0,-1,-1,0,-1,-1,-1,-1,0,0,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,0,-1,-1,-1,1,0,0,-1,-1,1,0,-1,-1,-1,-1,-1,0,0,-1,-1,1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,0,-1,1,-1,-1,-1,-1,0,-1,0,0,0,-1\r\nmpid100070,XB,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100071,Lab,0,0,0,-1,-1,-1,-1,0,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,-1,-1,0,0,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,-1,-1,0,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100072,Lab,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,-1,-1,1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,-1,-1,0,0,-1,0,0,0,-1\r\nmpid100074,Con,0,0,0,1,1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,1,-1,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,1,-1,0,1,0,1,1,1,1,0,0,1\r\nmpid100075,XB,0,1,0,1,-1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,1,-1,0,0,-1,0\r\nmpid100076,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0\r\nmpid100077,XB,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,0,-1,1,0,-1,0,0\r\nmpid100078,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1\r\nmpid100079,Bp,0,0,0,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100080,Con,0,1,0,0,1,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100081,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,1,1,-1\r\nmpid100083,XB,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100084,Lab,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,0,0,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,1,-1,0,-1,-1,-1,-1,0,0,0,-1\r\nmpid100085,Lab,-1,-1,0,1,-1,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1,-1,0,0,0,-1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,-1,1,-1,1,-1,-1,0,0,0,0,0,-1\r\nmpid100086,Con,0,0,1,1,1,0,1,0,1,1,0,1,1,1,1,1,1,0,1,1,0,0,0,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,-1,1,0,1,1,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,1,0,0,-1,1,1,1,0,1,1,-1,0,-1,1\r\nmpid100089,Lab,-1,0,0,-1,-1,0,0,0,0,-1,0,-1,0,0,0,-1,-1,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,-1,0,0,0,0,0,0,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,-1,-1,0,0,0,0,1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,-1,-1,-1,-1,-1,0,-1,0,0,0,0,0,0,0,-1,1,0,0,-1,0\r\nmpid100091,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100092,Con,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0\r\nmpid100093,XB,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0\r\nmpid100094,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,1,1,0,0,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,-1,1,1,1,1,0,0,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,-1,1,1,1,1,1,1,0,-1,0,1\r\nmpid100095,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1\r\nmpid100096,Con,0,1,0,1,1,0,0,0,1,1,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,1,0,0,-1,-1,0\r\nmpid100097,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100098,Con,0,0,0,1,1,0,1,0,1,1,0,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,0,1,1,1,1,-1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,1,1,1,1,1,1,0,0,0,1\r\nmpid100099,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,1,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,-1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,-1,0,1,0,0,0,1,0,0,1,1\r\nmpid100102,Con,0,1,1,1,1,0,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,-1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,0,0,0,1,1,0,0,1,1,0,-1,-1,1\r\nmpid100103,Con,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1,1,0,-1,1,0,0,1,0,0,1,0,1,1,1,0,0,1,0,-1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,0,0,0,1\r\nmpid100107,LDem,1,1,0,-1,0,1,1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,-1,0,0,0,1,-1,0,0,-1\r\nmpid100108,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1\r\nmpid100109,Con,0,1,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,0,1,0,1,1,1,1,-1,1,0,0,1,0,0,1,0,1,0,0,0,0,1,1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1\r\nmpid100110,Con,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1\r\nmpid100111,Con,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100112,Lab,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0\r\nmpid100113,Con,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,1\r\nmpid100114,Con,0,0,0,1,1,0,0,0,1,1,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,-1,1\r\nmpid100115,XB,0,1,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,-1,-1,1\r\nmpid100116,Con,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1\r\nmpid100118,Lab,-1,0,-1,-1,-1,-1,0,-1,-1,-1,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,-1,0,-1,-1,0,-1,1,0,0,-1,-1,1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100120,Bp,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100122,Con,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1\r\nmpid100126,Lab,-1,-1,0,-1,-1,0,0,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,0,0,0,-1,0,0,0,0\r\nmpid100127,Con,0,1,0,1,1,0,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,1,1,0,0,1,1,1,-1,1,0,0,1,0,0,1,0,1,1,1,0,0,1,0,-1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1\r\nmpid100129,Lab,0,0,0,0,-1,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,1,-1,-1,-1,-1,0,0,-1,-1\r\nmpid100130,LDem,1,1,0,-1,-1,1,1,0,-1,-1,0,0,1,1,1,1,1,0,-1,1,0,0,0,-1,0,-1,0,-1,1,1,-1,1,0,1,1,0,0,0,0,0,1,-1,-1,0,-1,0,0,-1,1,0,0,-1,0,0,-1,1,0,-1,0,0,-1,1,0,0,0,0,0,-1,1,1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,-1,0,-1,0,-1,0,1,-1,0,0,-1,1,-1,1,0,-1\r\nmpid100131,Lab,-1,1,0,-1,-1,0,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,-1,-1,0,0,0,0,1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1\r\nmpid100134,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,-1,0\r\nmpid100135,Con,0,0,0,1,1,0,1,0,1,1,0,0,0,1,1,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100136,Lab,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,-1,-1,0,-1,-1,0,-1,1,-1,0,-1,-1,1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100137,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,-1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,-1,0,-1,0,-1\r\nmpid100138,Con,0,0,0,1,0,0,1,0,1,1,0,0,1,1,1,0,0,1,1,1,1,0,0,1,0,0,1,1,1,0,1,1,0,1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,1,-1,0,0,0,0,0,0,1,0,0,1,1,0,1,0,1,-1,1,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,1,0,0,1,0,1,0,-1,0,1\r\nmpid100141,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100143,Con,0,0,1,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,1,-1,1,1,0,0,0,0,1,0,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,0,0,-1,1,1,1,1,1,1,0,-1,0,1\r\nmpid100145,Con,0,0,0,1,1,0,1,0,1,1,0,1,1,0,0,1,1,1,1,1,0,0,0,0,1,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,1,1,1,1,-1,1,0,0,0,0,0,1,0,1,1,1,0,0,1,0,-1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,0,1,1,1,0,-1,0,1\r\nmpid100147,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,-1,1,1,1,1,1,1,0,0,0,1\r\nmpid100148,XB,0,1,0,1,1,0,0,0,1,1,0,-1,1,0,1,0,0,-1,0,1,1,0,0,1,0,0,1,-1,0,0,1,0,0,0,-1,0,0,1,0,0,0,0,1,1,-1,0,0,-1,1,0,1,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,-1,0,0,0,1,1,-1,0,0,0,0,0,0,-1,0,0,0,0,1,0,0,0,0,1,-1,0,1,1,0,-1,0,0\r\nmpid100149,XB,0,1,0,-1,0,1,0,0,-1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,-1,1,0,0,0,0,0,0,0\r\nmpid100150,Con,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,-1,0,0\r\nmpid100152,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,0,0,-1,-1,0,0,0,-1,-1,1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,0,-1,1,0,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100153,Con,0,0,0,1,1,0,1,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,0,1,-1,1,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,0,1,1,1,0,-1,0,1\r\nmpid100154,XB,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100155,Con,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,0,0\r\nmpid100157,Con,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,-1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1\r\nmpid100158,XB,-1,-1,0,-1,-1,0,0,0,0,-1,-1,0,-1,0,0,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,1,0,-1,0,0,0,0,-1,0,-1,0,0,-1,-1,0,0,0,-1,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0\r\nmpid100159,Con,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0\r\nmpid100160,LDem,0,0,0,0,0,0,1,0,-1,-1,0,0,1,1,1,0,1,-1,0,0,0,-1,-1,0,0,-1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,1,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,-1,0,0,0,1,0,1,0,-1\r\nmpid100161,XB,0,0,0,-1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,1,0,0,0,0,1,1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,-1,0,0,0,1,-1,1,1,0,-1,-1,0,0,0,0,-1,-1,1,0,1,-1,-1,1,0,-1,0,0,0,0,0,-1,0,0\r\nmpid100162,Lab,-1,-1,0,-1,-1,0,0,0,-1,-1,0,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,-1,1,-1,0,0,-1,1,0,-1,0,-1,-1,-1,0,-1,-1,-1,1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,0,-1,1,-1,-1,-1,0,-1,-1,-1,0,-1,-1\r\nmpid100163,Lab,-1,0,-1,-1,-1,-1,0,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,-1,0,1,0,-1,-1,-1,-1,-1,0,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,0,0,-1,1,-1,1,-1,1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100164,Lab,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,0,0,-1,1,-1,-1,-1,-1,0,-1,-1,1,0,-1\r\nmpid100165,Con,0,0,0,1,1,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,1,0,1,0,0,0,0,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,-1,1,1,1,0,1,0,0,0,0,1\r\nmpid100166,Lab,0,0,0,0,0,-1,0,0,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,0,0,0,-1,-1,0,0,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,-1,0,1,0,-1,0,0,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,0,-1,1,-1,-1,-1,-1,0,-1,-1,0,0,-1\r\nmpid100167,Other,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,-1,0,0,0,1,-1,0,0,0,-1,0,0,0,0,0\r\nmpid100168,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0\r\nmpid100170,Con,0,0,0,1,1,0,0,0,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,0,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0\r\nmpid100171,Bp,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0\r\nmpid100172,Lab,1,0,1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,1,0,-1,-1,0,-1,-1,0,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,0,0,1,-1,-1,-1,-1,-1,1,0,0,0,0\r\nmpid100173,LDem,1,1,0,-1,-1,0,1,0,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,1,-1,1,0,1,1,0,-1,-1,0,0,0,0,0,0,0,0,-1,-1,1,0,-1,-1,0,-1,-1,1,0,-1,0,-1,-1,1,0,0,1,0,1,-1,1,1,0,0,-1,-1,0,-1,0,-1,1,1,1,-1,1,1,-1,0,-1,0,-1,0,1,-1,-1,0,0,1,0,1,0,-1\r\nmpid100174,Other,0,0,0,-1,-1,0,0,0,-1,-1,0,0,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,-1,1,-1,0,-1,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0\r\nmpid100175,Lab,-1,0,0,1,-1,-1,-1,0,1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,-1,-1,1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,0,-1,1,-1,1,0,-1,-1,0,0,0,0,-1\r\nmpid100176,Con,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,-1,1,0,1,1,0,0,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,1,0,0,1\r\nmpid100177,XB,0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,-1,0,0,0,0,-1,0,0,0,-1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,0\r\nmpid100178,Lab,-1,-1,0,1,-1,-1,-1,-1,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,0,-1,1,0,0,0,0,0,0,0,-1,-1,-1,-1,0,0,-1,-1,0,0,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,-1,0,1,0,0\r\nmpid100179,Lab,-1,-1,0,-1,0,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,-1,-1,1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,-1,-1,0,-1,-1,1,0,-1\r\nmpid100180,Lab,-1,-1,0,-1,-1,0,0,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100181,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,1,0,0,1,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,1,0,0,0,1,1,0,0,1\r\nmpid100182,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100183,Bp,0,0,0,0,0,0,0,0,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100185,XB,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100186,Lab,0,0,0,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,-1,0,-1,-1,0,0,0,-1,-1,0,0,0,-1,-1,0,0,-1,-1,-1,0,0,0,-1,-1,0,0,0,-1,-1,0,-1,-1,-1,0,0,-1,0,0,1,-1,0,0,0,0,0,0,0,0,0\r\nmpid100187,Con,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,0,-1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1\r\nmpid100188,Con,0,1,0,1,1,0,0,0,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,0,1,1,-1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,1\r\nmpid100189,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,-1,-1,1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100190,XB,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100191,Con,0,1,0,1,1,0,1,0,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,-1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,-1,1,0,0,1,0,0,1,0,0,0,1,0,0,1,1,1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1\r\nmpid100192,Con,0,0,0,1,1,0,0,0,1,1,0,0,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,1,0,0,1,0,1,1,1,1,-1,1,0,0,1,0,0,0,0,1,1,1,0,0,1,0,-1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,0,1,0,0,-1,1,1,1,0,1,1,0,-1,-1,1\r\nmpid100193,Con,0,1,0,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,1,-1,1,0,1,1,0,0,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,0,1,0,1,0,1,0,1,1,1,1,1,1,0,0,0,1,-1,0,1,0,1,0,1,0,-1,0,1\r\nmpid100195,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100197,XB,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100198,Lab,-1,-1,0,1,0,-1,-1,-1,1,-1,0,0,-1,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,-1,-1,0,0,0,0,-1,-1,0,-1,-1,-1,0,-1,-1,0,0,-1,-1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,0,0,1,-1,0,-1,-1,0,0,-1,0,0,-1\r\nmpid100199,Lab,-1,-1,0,-1,-1,0,-1,0,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,0,-1,0,0,-1,-1,-1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100200,Lab,-1,-1,0,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,-1,-1,-1,-1,0,0,-1,-1,0,-1,-1,0,0,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,0,0,0,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,-1,0,-1,1,-1,0,-1,-1,-1,-1,0,1,0,0\r\nmpid100201,Lab,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100202,LDem,1,1,0,-1,-1,0,1,1,-1,-1,0,-1,1,0,0,1,1,-1,-1,1,0,0,-1,-1,0,-1,0,0,0,1,-1,1,0,1,0,-1,-1,-1,0,0,1,-1,-1,-1,-1,0,0,0,1,0,0,-1,0,0,-1,0,0,0,0,-1,0,1,0,0,1,0,0,-1,1,1,0,0,-1,-1,0,0,0,-1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,1,0,0,0,-1\r\nmpid100203,Lab,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,0,0,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,0,-1,0,-1,0,0,-1,-1,0,0,0,0,0,-1,1,0,0,0,-1,-1,-1,-1,0,-1,0,1,-1,-1,-1,0,0,-1,-1,-1,-1,0,-1,0,0,0,0,-1,-1,0,0,0,0,0,1,0,-1,-1,0,0,-1,0,0,0,-1\r\nmpid100204,Lab,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100205,LDem,1,1,0,-1,-1,1,0,0,-1,-1,0,0,1,1,1,1,1,-1,-1,0,-1,0,0,0,0,-1,-1,-1,1,1,-1,1,0,1,1,0,-1,0,0,-1,0,-1,-1,-1,-1,0,0,0,0,1,-1,-1,0,-1,-1,0,0,-1,0,-1,-1,1,0,0,1,0,1,-1,1,1,0,0,-1,-1,0,-1,0,0,1,1,1,-1,1,1,0,0,-1,0,0,0,1,-1,-1,0,-1,1,-1,-1,0,-1\r\nmpid100206,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,0,-1,-1,-1,-1,-1,-1,-1,-1,0,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100207,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,0,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100209,Con,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,1,0,1,0,-1,0,1\r\nmpid100210,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100211,Con,0,1,0,1,1,0,0,0,1,1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,-1,0,1,1,0,1,1,0,-1,-1,0\r\nmpid100212,Lab,-1,-1,0,-1,-1,0,0,0,-1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,0,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,1,1,-1\r\nmpid100215,Other,0,0,0,1,-1,0,-1,0,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,-1,0,0,1,0\r\nmpid100216,Con,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,1\r\nmpid100217,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,0\r\nmpid100218,Con,0,0,0,1,1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,0,1,0,0,1,-1,1,1,1,1,0,0,1,0,0,1,1,0,0,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,-1,1,1,0,1,1,1,1,0,0,1\r\nmpid100219,Con,1,0,0,1,1,0,0,0,1,1,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1\r\nmpid100223,Con,0,0,0,0,0,0,0,0,1,1,0,0,1,0,1,1,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0\r\nmpid100224,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,-1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0\r\nmpid100225,XB,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0\r\nmpid100226,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100227,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100229,Con,0,1,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,1,0,1,0,1,0,0,0,0,1,1,0,0,1,0,1,1,1,0,0,1,1,-1,1,1,1,0,1,0,0,0,1,1,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,-1,0,0\r\nmpid100230,Con,0,0,0,-1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1\r\nmpid100231,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,0,0,-1,-1,0,0,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,-1,-1,-1,0,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,0,-1,0,0,0,0,-1,-1,-1,-1,-1,0,1,0,0\r\nmpid100232,Con,0,1,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,0,1,1,0,1,0,0,0,0,1,1,1,1,0,1,0,1,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,-1,1,0,0,1,0,0,1,0,1,0,1,0,0,1,0,-1,1,1,1,1,1,0,1,0,1,1,0,0,1,1,0,1,1,1,0,1,0,1,-1,1,1,0,0,1,1,-1,-1,0,1\r\nmpid100233,LDem,0,0,0,0,0,1,1,0,-1,-1,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-1,1,1,-1,1,0,0,1,0,0,-1,-1,-1,1,0,-1,-1,0,0,-1,-1,1,0,0,-1,0,0,-1,0,0,0,0,-1,-1,1,0,0,1,0,0,-1,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,-1,0,0,-1,1,0,-1,0,-1\r\nmpid100234,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0\r\nmpid100235,Lab,0,0,0,0,0,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100236,Lab,-1,0,0,-1,0,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,-1,0,0,-1,-1,-1,-1,0,-1,-1,-1,1,-1,0,-1,-1,0,-1,-1,0,0,0,0,0,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,-1\r\nmpid100237,Con,0,1,0,-1,1,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0\r\nmpid100238,Lab,-1,-1,0,-1,-1,0,-1,0,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,0,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,0,-1,-1,-1,-1,-1,0,0,-1,0,1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,0,-1,0,-1,1,-1,-1,0,0,0,-1,0,1,0,-1\r\nmpid100240,Con,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,-1,1\r\nmpid100241,Con,0,0,0,1,1,0,1,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,1,1,0,1,1,1,1,0,0,1,1,1,-1,1,0,1,1,0,0,1,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,-1,0,1,1,1,0,0,0,-1,0,1\r\nmpid100245,Lab,-1,-1,0,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,0,0,0,0,0,-1,0,0,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,-1,1,-1,-1,0,0,0,-1,0,1,0,-1\r\nmpid100246,LDem,0,1,1,-1,-1,0,1,0,-1,-1,0,0,1,0,0,1,1,-1,-1,1,0,0,0,-1,0,-1,-1,-1,1,1,-1,1,0,0,1,0,-1,-1,-1,-1,0,-1,-1,0,-1,0,-1,-1,1,0,0,0,1,-1,-1,0,0,-1,0,0,0,0,0,0,1,0,1,-1,1,1,0,0,-1,-1,0,-1,0,-1,1,1,1,-1,1,1,-1,0,-1,0,0,0,1,-1,-1,0,-1,1,0,-1,0,-1\r\nmpid100247,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,-1,-1,0,0,0,0,0,0,1,-1,-1,0,-1,0,0,0,0,-1,-1,0,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0\r\nmpid100248,Con,0,0,0,1,1,0,1,0,1,1,0,0,1,1,1,1,1,0,1,1,1,0,0,1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,-1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,-1,1,1,1,0,1,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1\r\nmpid100249,Lab,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,0,0,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,1,-1,0,0,0,1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,0,0,1,-1,-1,-1,0,0,-1,0,1,0,-1\r\nmpid100250,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,0,-1,-1,-1,0,1,0,-1\r\nmpid100251,Lab,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,-1,0,-1,-1,-1,-1,1,0,0,0,0,1,0,0,0,0,0,0,0,-1,0,-1,1,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1\r\nmpid100252,Lab,0,-1,0,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,0,-1,1,-1,0,-1,-1,1,0,-1,0,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,0,0,-1,-1,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100254,Con,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,-1,1,0,0,1,1,1,0,0,0,0\r\nmpid100255,LDem,1,1,0,-1,0,1,1,0,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,-1,1,0,1,1,0,0,-1,-1,-1,1,0,-1,-1,-1,0,-1,-1,0,1,-1,-1,0,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100258,XB,0,0,0,-1,0,0,0,0,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,0,0,0,0,1,-1,0,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100259,XB,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0\r\nmpid100260,Lab,0,-1,0,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,0,1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,0,0,0,0\r\nmpid100261,Other,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100262,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100263,Con,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1\r\nmpid100265,Bp,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0\r\nmpid100267,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100268,LDem,1,1,0,-1,-1,0,0,0,-1,-1,-1,0,1,1,1,0,1,0,0,0,-1,-1,-1,-1,0,0,0,0,0,1,-1,1,0,1,0,0,0,0,-1,-1,1,0,0,0,-1,0,0,-1,0,1,-1,-1,0,0,0,0,0,0,0,0,-1,1,0,0,1,0,0,-1,1,1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,1,1,0,0,0,0,0,0,0,-1,-1,0,-1,1,-1,0,0,-1\r\nmpid100269,Con,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,0,0,1,0,1,0,1,1,-1,1,0,0,1,0,0,0,0,0,1,1,0,0,1,0,-1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,0,1,1,0,0,1,0,0,0,0,1,1,1,0,1,0,-1,0,1\r\nmpid100271,Con,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,1,1,1,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,1\r\nmpid100272,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100273,Judge,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0\r\nmpid100274,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,0,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,0,-1,1,-1,0,-1,-1,-1,0,-1,1,-1,-1\r\nmpid100275,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-1,0,-1,-1,0,0,0,0,-1,-1,0,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,1,0,0,0,-1,0,-1,0,0,0,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,1,0,-1,-1,-1,-1,-1,0,1,0,0\r\nmpid100276,XB,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1\r\nmpid100277,Con,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1\r\nmpid100278,LDem,1,1,0,-1,-1,0,0,0,-1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,-1,1,0,0,1,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-1,1,0,0,-1,0,-1,1,0,0,1,0,0,-1,1,1,0,0,-1,-1,0,0,0,0,1,1,1,0,1,1,0,0,-1,0,0,0,0,-1,-1,0,0,1,-1,0,0,-1\r\nmpid100279,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,0,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100280,Lab,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,-1,-1,-1,0,-1,-1,1,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,1,-1,-1,-1,0,-1,-1,0,1,0,-1\r\nmpid100281,Lab,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1\r\nmpid100282,Lab,0,0,0,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0\r\nmpid100283,Con,0,1,0,1,1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,0,0,1,1,1,0,1,1,1,1,0,0,0,1,1,-1,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,-1,1,1,1,0,0,0,1,0,0,0,1,0,0,1,1,1,1,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0,1\r\nmpid100284,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,0,1,0,-1,-1,-1,-1,-1,-1,-1,-1,0,1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100285,Lab,0,-1,0,-1,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100286,Con,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100287,Bp,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100289,Con,0,0,0,1,1,0,1,0,1,1,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,0,1,0,1,0,-1,1,1,0,0,0,0,1,0,1,1,1,0,0,1,0,-1,1,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,-1,0,1\r\nmpid100291,Lab,-1,-1,0,-1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,0,0,0,0,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100293,Con,1,1,0,1,1,0,0,0,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100295,Con,0,1,0,1,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,-1,1,1,1,1,0,1,0,0,0,1\r\nmpid100296,Lab,-1,-1,0,-1,-1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,-1,-1,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,0,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1\r\nmpid100297,Lab,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,-1,-1,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1\r\nmpid100298,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,1,-1,-1,-1,-1,0,-1,0,0,0,-1\r\nmpid100299,LDem,0,0,0,-1,0,0,0,0,-1,-1,0,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,-1,0,0,-1,0,0,0,0,0,-1,0,0,0,0,1,-1,1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0\r\nmpid100300,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,-1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1\r\nmpid100301,Con,0,0,0,1,1,0,1,0,1,1,0,1,0,1,1,1,1,0,0,0,1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,0,1,0,1,0,0,1,1,0,-1,1,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,0,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,0,1,-1,1,1,0,1,0,0,0,-1,0,0\r\nmpid100302,LDem,0,0,0,0,-1,0,1,0,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,-1,0,0,0,1,0,0,0,0,0,1,0,0,0,-1,0,0,0,1,0,0,-1,0,0,0,0,0,0,0,-1,0,1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0\r\nmpid100305,Con,0,0,0,1,1,0,1,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,0,1,1,0,1,1,0,1,0,1,1,0,1,0,1,1,1,1,-1,1,0,1,1,0,0,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,1,0,1,1,0,0,1,1,0,1,1,1,0,1,0,0,-1,1,1,1,1,1,1,0,-1,0,1\r\nmpid100306,Con,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0\r\nmpid100308,Con,0,0,0,1,1,0,1,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,-1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,1,0,0,-1,1,0,0,0,1,1,0,0,-1,0\r\nmpid100309,Lab,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,0,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,1,-1,-1,-1,-1,0,-1,0,1,0,-1\r\nmpid100310,Lab,-1,-1,0,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,-1,-1,0,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,-1,-1,-1,0,-1,0,0,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,1,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,1,-1,1,-1,-1,-1,-1,-1,0,0,-1\r\nmpid100311,Lab,-1,0,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,1,-1,1,0,-1,-1,-1,0,-1,0,1,0,-1\r\nmpid100312,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,0,-1,-1,0,0,1,-1,-1,-1,-1,-1,-1,0,1,1,-1\r\nmpid100313,Lab,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,0,-1,-1,-1,-1,-1,0,0,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100314,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,0,0,1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100315,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0\r\nmpid100316,Con,1,1,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,-1,1,0,0,0,0,0,1,0,1,1,1,1,0,1,0,-1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,-1,0,1\r\nmpid100317,Con,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0\r\nmpid100318,XB,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100319,LDem,1,1,0,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,-1,0,0,0,1,0,0,0,-1\r\nmpid100321,XB,0,0,0,1,-1,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,-1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0\r\nmpid100323,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100324,Con,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,1,-1,1,1,0,0,0,1,0,0,0,1\r\nmpid100325,Lab,-1,-1,0,-1,-1,0,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,0,0,-1,-1,-1,0,-1,0,0,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,1,-1,-1,-1,-1,-1,0,0,1,0,-1\r\nmpid100326,Lab,-1,-1,0,1,-1,0,-1,-1,1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,0,0,0,-1,-1,0,-1,-1,-1,-1,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,-1,1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1\r\nmpid100327,LDem,1,1,0,-1,-1,0,0,0,-1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,1,1,0,0,-1,-1,0,0,0,0,0,0,1,-1,1,1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1\r\nmpid100328,Con,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1\r\nmpid100329,Lab,-1,-1,0,-1,-1,0,-1,0,-1,-1,0,0,-1,0,0,0,0,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,0,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,-1,-1,-1,0,0,-1,-1,0,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1\r\nmpid100330,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100331,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,-1,1,-1,0,0,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,0,1,0,-1\r\nmpid100332,Lab,-1,-1,0,-1,-1,0,-1,0,0,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,0,-1,-1,-1,1,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,-1,0,0,1,-1,-1,-1,-1,0,1,0,0,0,0\r\nmpid100333,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0\r\nmpid100334,Con,0,0,0,1,1,0,1,0,1,1,0,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,-1,1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,1,-1,0,1\r\nmpid100335,LDem,1,1,0,-1,0,0,1,0,-1,-1,0,0,1,0,0,0,0,-1,0,1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,-1,0,0,-1,1,0,-1,0,-1\r\nmpid100336,Lab,-1,-1,0,-1,-1,0,-1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,0,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,0,0,0,0,-1,-1,-1,0,0,-1,-1,1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,1,0,0\r\nmpid100337,XB,0,0,0,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,1,-1,0,-1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100339,Con,0,1,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,-1,1,0,1,1,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,1,1,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1\r\nmpid100341,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,0,0,0,0,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-1,-1,0,0,0,0,-1,0,0,-1,1,-1,0,0,0,0,0,0,-1,-1,-1,-1,0,0,-1,-1,0,0,-1,-1,0,0,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,0,0,-1,1,-1,-1,-1,0,0,0,0,0,0,0\r\nmpid100342,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1\r\nmpid100343,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1\r\nmpid100344,Lab,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,0,0,0,0,1,0,-1,0,-1,0,0,0,0,-1,-1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,-1,0,0,0,1,-1,-1,-1,-1,0,1,0,0,1,-1\r\nmpid100347,Con,0,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,0,0,0,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1,1,1,1,1,0,1,1,-1,-1,0\r\nmpid100349,Other,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100350,Lab,0,0,0,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,0,0,-1,-1,-1,0,0,-1,0,-1,1,-1,0,-1,-1,0,0,0,0,0,-1,-1,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100352,Con,0,0,0,1,1,0,0,0,1,0,0,1,1,1,1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,1,0,1,-1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,-1,1,0,0,1,1,1,1,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,-1,0,1,0,0,0,1,0,-1,0,1\r\nmpid100353,Con,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,-1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,-1,0,1\r\nmpid100354,Lab,-1,-1,0,-1,-1,-1,-1,0,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,0,0,-1,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,-1,0,-1,0,0,-1,0,0,0,-1\r\nmpid100355,Con,1,1,0,1,1,0,0,0,1,1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,0,0,0,0,0,1,0,-1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,1,1,1,0,0,0,0,0,0,1\r\nmpid100356,XB,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100357,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1\r\nmpid100358,XB,0,0,0,1,1,0,0,0,1,1,0,-1,-1,0,-1,0,0,0,-1,-1,-1,0,0,0,0,-1,-1,-1,1,1,1,-1,0,0,0,1,1,1,0,1,0,0,-1,0,0,0,0,1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,-1,0,0,0,-1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,-1,1,0,0,-1,-1,0\r\nmpid100359,XB,0,-1,0,-1,-1,0,0,1,-1,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,1,0,-1,1,-1,0\r\nmpid100360,Con,1,1,0,1,1,0,0,0,1,1,0,1,0,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,0,0,0,1,1,1,1,0,0,-1,1\r\nmpid100361,XB,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,-1,0\r\nmpid100362,Con,0,0,0,1,1,0,-1,0,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,-1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1\r\nmpid100363,Con,0,1,0,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1\r\nmpid100364,Con,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1\r\nmpid100365,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100366,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,0,1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,1,-1,-1,-1,-1,-1,0,0,0,-1,-1\r\nmpid100367,LDem,1,1,0,-1,-1,0,1,0,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,1,-1,1,0,1,1,0,0,0,-1,-1,1,-1,0,0,0,0,0,0,0,1,-1,-1,0,-1,-1,1,0,0,0,-1,-1,1,0,0,1,0,0,-1,1,1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,-1,0,0,0,1,0,0,0,-1\r\nmpid100369,Lab,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,-1,0,0,0,0,0,0,-1,-1,1,-1,-1,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,-1,0,0,-1,-1,0,1,0,-1\r\nmpid100371,Bp,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,1,0,0,0,0,0,0,0,0\r\nmpid100372,Con,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1\r\nmpid100373,LDem,1,1,0,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,1,0,0,-1,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,-1,0,0,0,1,0,0,-1,-1\r\nmpid100374,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,1,-1,-1,-1,-1,0,-1,0,1,0,-1\r\nmpid100375,XB,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0\r\nmpid100377,Con,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,0,1,1,0,0,0,0,0,-1,1,1,1,0,1,1,1,-1,-1,1\r\nmpid100379,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100381,Con,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100382,Lab,-1,-1,0,-1,-1,-1,-1,0,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1,-1,0,0,-1,0,0,0,0,-1,-1,-1,0,0,-1,-1,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,-1,0,0,1,0,-1\r\nmpid100383,Lab,-1,0,0,1,-1,-1,-1,0,1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,0,-1,1,-1,1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100385,Con,1,1,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,0,0,1,0,1,1,1,1,1,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,1,1,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,-1,0,0\r\nmpid100387,LDem,1,1,0,-1,-1,0,0,0,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,-1,0,0,0,1,0,0,0,0\r\nmpid100388,Con,0,0,0,1,1,0,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,1,1,1,0,1,1,0,1,0,1,0,1,1,-1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,-1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,-1,1,1,1,1,1,1,1,-1,0,1\r\nmpid100389,Con,0,0,0,1,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,-1,0,0,1\r\nmpid100392,Lab,0,0,0,-1,-1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,1,0,0,0,0,-1,0,0,-1,-1,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,-1,-1,0,-1,0,0,-1,1,-1,-1,0,-1,0,0,0,0,0,0\r\nmpid100393,XB,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100394,Con,0,0,0,1,1,0,0,0,1,1,0,1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,1,1,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,-1,0,0,0,1,1,0,1,0,0,1,1,0,1,1,0,1,1,1,0,0,0,0,-1,0,1,0,0,1,1,0,-1,0,1\r\nmpid100395,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,1,-1,1,0,-1,0,0,0,-1,0,0,0,-1\r\nmpid100396,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1\r\nmpid100397,XB,0,0,0,1,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100399,Lab,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,0,-1,-1,0,-1,0,-1,1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0\r\nmpid100400,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,0,-1,0,0,0,0,-1,-1,1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,0,-1,1,0,-1,-1,0,0,-1,0,1,0,-1\r\nmpid100401,Con,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100402,Judge,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,1,0,1,0,1,0,-1,0,1\r\nmpid100403,Lab,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,-1,1,0,0,-1,-1,1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,-1,0,-1,0,0,-1,0\r\nmpid100404,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,0,0,0,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,-1,-1,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,-1,-1,-1,-1,-1,-1,-1,0,0,-1\r\nmpid100405,LDem,1,1,0,-1,0,0,1,0,-1,-1,0,0,0,0,0,1,1,-1,0,1,0,0,0,0,0,0,-1,-1,1,1,-1,0,0,0,0,0,0,0,0,-1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,-1,0,-1,0,0,0,0,1,-1,0,0,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,0,1,-1,-1,0,0,0,-1,0,0,-1\r\nmpid100406,Con,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0\r\nmpid100408,LDem,1,0,1,-1,-1,1,1,0,-1,-1,0,-1,1,1,1,1,1,-1,0,0,0,0,0,-1,0,-1,0,-1,1,1,-1,1,0,1,0,0,0,0,-1,-1,1,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,-1,0,0,0,1,0,1,0,-1\r\nmpid100409,LDem,1,1,0,-1,-1,0,1,0,-1,-1,-1,-1,0,1,1,1,1,-1,-1,0,0,0,0,-1,0,0,0,0,0,1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,-1,1,-1,1,1,0,0,-1,-1,0,0,0,-1,1,1,1,-1,0,0,0,0,-1,0,0,0,0,-1,-1,0,-1,1,0,0,0,-1\r\nmpid100411,Lab,0,1,0,-1,-1,-1,-1,0,-1,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,0,-1,1,-1,0,-1,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,0,-1,0,0,0,0,-1,0,0,0,1,0,0,0,0\r\nmpid100412,Bp,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100413,Con,0,1,0,1,1,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,0,1,0,0,0,0,1,0,0,-1,0\r\nmpid100414,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100415,LDem,1,1,0,-1,-1,1,1,1,-1,-1,0,0,0,0,0,0,0,0,0,1,-1,0,-1,-1,0,-1,0,0,1,1,-1,1,0,1,1,-1,0,-1,0,0,0,0,0,-1,-1,0,-1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100416,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,0,0,1,0,1,1,1,1,1,0,1,1,1,0,0,1,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,1,1,0,0,0,0,1,0,0,1\r\nmpid100417,XB,0,-1,0,-1,0,0,0,0,-1,1,0,-1,0,0,0,0,0,-1,-1,-1,-1,0,0,0,0,-1,0,-1,-1,0,1,-1,0,0,0,0,0,0,1,1,-1,0,-1,0,1,0,0,1,0,-1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,-1,0,0,0,1,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0\r\nmpid100418,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100419,XB,0,-1,0,1,0,0,0,1,1,1,0,0,1,0,1,0,0,0,1,1,1,0,0,0,0,-1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,-1,-1,0,0,0,0,-1,0,1,1,1,0,-1,0,0,0,1,0\r\nmpid100420,Lab,-1,-1,0,1,-1,0,-1,0,1,-1,0,-1,0,0,-1,0,0,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1,0,-1,1,-1,1,-1,-1,-1,0,0,0,0,-1\r\nmpid100421,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,-1,1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100423,Con,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,1,0,1,1,1,1,-1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,0,-1,1,0,1,0,0,0,1,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,1,1,0,0,1,0,-1,-1,1\r\nmpid100424,Lab,-1,0,0,-1,0,0,0,0,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,0,0,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,0,-1,-1,1,-1,0,-1,-1,0,0,-1,0,0,-1,-1,0,0,-1,-1,1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,0,0,0,0,-1,-1,0,0,-1,0,0,1,-1,-1,0,-1,0,-1,0,0,0,-1\r\nmpid100425,LDem,1,1,0,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,1,1,0,0,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,0,0,-1,1,1,0,0,0,-1,0,-1,0,-1,1,1,1,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,0,1,0,0\r\nmpid100427,LDem,1,1,0,-1,-1,0,0,0,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,-1,-1,0,-1,0,0,0,1,-1,1,0,1,1,0,-1,-1,-1,-1,1,0,0,0,-1,0,0,-1,0,1,-1,-1,0,-1,-1,0,0,0,-1,0,0,0,0,0,1,0,0,-1,1,1,0,0,-1,-1,0,0,0,0,0,0,1,-1,1,1,0,0,0,0,0,0,0,-1,-1,0,-1,1,0,-1,0,0\r\nmpid100428,Con,0,0,0,1,1,1,0,0,1,1,0,1,1,0,0,0,0,1,1,1,1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,-1,1,0,0,0,0,0,1,0,1,1,1,0,0,1,1,-1,1,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,1\r\nmpid100430,Lab,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1,0,0,-1,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,0,0,-1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,1,-1,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,-1,-1,0,1,0\r\nmpid100431,Lab,-1,0,0,1,-1,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,-1,0,0,0,0,0,-1,0,-1,-1,0,0,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0\r\nmpid100432,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,0,0,0,0,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100433,XB,-1,1,0,1,1,0,-1,0,1,0,0,0,1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,1,1,-1,0,1,-1,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,-1,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,-1,-1,0\r\nmpid100434,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,0,1,1,1,0,0,1,1,-1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1\r\nmpid100435,XB,1,1,1,1,0,0,0,0,1,1,0,0,1,0,1,0,0,-1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,0,1,0,-1,1,1,1,0,1,0,1,0,0,0,1,0,-1,1,1,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,-1,-1,-1,-1,0\r\nmpid100436,Con,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,-1,0,1\r\nmpid100437,Con,0,1,0,1,1,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,1,1,0,0,1,1,1,-1,1,0,0,1,0,1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,1,1,1,1,0,1,1,0,0,0,0,1,1,1,1,1,0,-1,0,1\r\nmpid100438,Con,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1\r\nmpid100439,XB,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100440,XB,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100441,Lab,-1,0,0,-1,-1,0,0,0,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100444,Lab,-1,-1,0,-1,-1,0,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,0,0,-1,-1,-1,-1,0,0,-1,-1,0,-1,-1,0,0,1,-1,0,0,-1,1,0,-1,0,-1,-1,-1,-1,-1,-1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,-1,-1,-1,0,-1,-1,0,1,0,-1\r\nmpid100446,Con,0,1,0,1,1,0,0,0,1,1,0,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,0,0,0,1,1,0,1,1,0,1,0,1,1,1,0,-1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,-1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1,1\r\nmpid100447,Con,0,0,0,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,-1,0,0\r\nmpid100448,Lab,-1,-1,0,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,-1,-1,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,1,-1,0,-1,-1,0,0,0,0,-1,-1,-1,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-1,-1,0,-1,0,0,0,0,-1,-1,0,0,-1,0,0,0,0\r\nmpid100449,Con,0,1,0,1,1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,0,1,1,1,0,0,1,0,0,0,1,1,0,0,1,0,1,0,1,1,1,1,-1,1,0,1,1,0,0,1,0,0,1,1,0,0,1,0,-1,1,1,1,0,0,0,1,0,0,0,1,0,0,1,1,1,1,1,0,1,0,0,0,0,1,0,0,0,1,0,-1,0,1\r\nmpid100451,Con,1,0,0,1,1,0,1,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,1,0,0,1,0,1,0,1,1,-1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1,1,0,-1,0,1\r\nmpid100452,XB,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100453,LDem,1,1,0,-1,-1,0,1,0,-1,-1,0,0,1,1,1,1,1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,-1,1,0,0,0,0,-1,-1,-1,-1,1,0,-1,-1,-1,0,-1,0,1,1,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,1,0,0,1,-1,1,-1,1,1,0,-1,-1,-1,0,0,0,-1,1,0,0,0,1,1,0,0,0,0,0,0,1,-1,-1,0,0,1,-1,0,0,-1\r\nmpid100455,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,-1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0\r\nmpid100457,LDem,1,0,0,0,0,0,0,1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,0,0,0,0\r\nmpid100458,XB,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100459,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,1,-1,0,-1,-1,1,0,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,0,0,0,0,-1,1,-1,-1,-1,-1,-1,-1,1,1,0,-1\r\nmpid100460,Con,0,0,0,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100461,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100462,XB,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1\r\nmpid100463,XB,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0\r\nmpid100464,Con,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,1,1,1,0,1,1,1,1,-1,1,1,0,1,0,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,1\r\nmpid100465,Con,0,0,0,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,1,1,1,-1,1,1,1,1,0,1,1,0,0,1,1,0,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,1,1,1,1,1,1,0,-1,0,1\r\nmpid100466,Lab,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100467,LDem,0,0,0,-1,-1,0,0,0,-1,-1,0,0,1,1,1,1,1,0,-1,1,0,0,0,0,0,0,-1,0,0,1,-1,1,0,1,1,0,0,0,-1,-1,1,0,-1,0,0,0,0,-1,0,1,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100468,Con,0,1,0,-1,1,0,1,0,-1,1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,0,0,0,1,1,0,0,1,0,1,0,1,0,1,1,-1,1,0,1,1,0,1,1,0,1,1,1,0,0,1,0,0,-1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,1,-1,1,1,0,1,1,-1,-1,1\r\nmpid100469,LDem,1,1,0,-1,0,0,0,0,-1,-1,0,0,1,1,1,1,0,-1,-1,0,0,-1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,-1,0,-1,0,0,-1,0,1,-1,0,0,-1,-1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100470,Con,0,1,0,1,1,0,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,1,0,0,0,1,1,-1,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,-1,1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,-1,1,1,1,1,1,0,0,0,0,1\r\nmpid100471,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0\r\nmpid100472,XB,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,-1,0,0\r\nmpid100473,Con,1,0,1,1,1,0,1,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1,1,1,1,-1,1,0,1,1,0,0,0,0,1,1,1,0,1,1,1,-1,1,1,1,0,0,0,1,0,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,-1,0,1\r\nmpid100474,Con,0,1,0,1,1,0,0,0,1,1,0,1,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,1,0,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1\r\nmpid100475,Lab,-1,-1,0,1,-1,0,-1,0,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,0,0,1,-1,1,-1,-1,0,-1,0,0,0,-1\r\nmpid100477,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0\r\nmpid100479,Bp,0,0,0,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0\r\nmpid100480,Con,0,0,0,1,1,0,1,0,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,1,1,1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,-1,0,1\r\nmpid100481,XB,-1,0,0,1,0,1,1,0,1,-1,0,-1,0,0,0,1,-1,1,1,1,1,0,0,0,0,1,1,-1,0,0,1,1,0,0,0,1,0,1,1,1,-1,-1,0,0,1,0,0,-1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,-1,-1,0,0,0,1,1,1,1,0,1,0,-1,1,1,1,1,1,1,0,1,0,-1,1\r\nmpid100482,Con,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1\r\nmpid100483,Lab,0,0,0,0,0,0,-1,0,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100484,Con,0,1,0,1,1,1,1,0,1,1,0,1,1,0,0,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,0,0,1,1,1,0,1,0,1,1,-1,1,0,1,1,0,0,1,0,1,1,1,0,1,1,1,-1,1,0,1,0,0,1,1,0,1,1,1,1,1,1,0,1,1,0,0,1,-1,1,-1,1,1,1,1,0,1,0,0,0,1\r\nmpid100485,Con,0,0,1,1,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0\r\nmpid100486,Lab,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0\r\nmpid100487,XB,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1\r\nmpid100488,Lab,-1,-1,0,1,-1,-1,-1,0,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,-1,1,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100489,Con,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1\r\nmpid100490,Lab,0,0,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-1,-1,0,0,-1,0,0,0,-1,-1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,0,0,0,-1,-1,-1,-1,-1,0,-1,0,0,1,-1,0,0,0,-1,0,0,0,0,0\r\nmpid100491,Con,1,1,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,1,0,1,1,-1,0,0,1,1,0,0,1,0,1,1,1,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-1,0,1,0,0,0,0,0,-1,0,1\r\nmpid100492,Con,0,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,0,1,1,0,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,-1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,0,0,1\r\nmpid100494,Con,1,1,0,1,1,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1\r\nmpid100495,LDem,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,-1,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0\r\nmpid100496,Lab,-1,0,0,-1,-1,-1,-1,0,-1,-1,0,-1,0,0,0,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,0,0,-1,-1,0,0,-1,0,0,0,-1,-1,-1,-1,-1,0,-1,0,0,-1,0,-1,1,-1,0,-1,-1,1,0,0,0,-1,-1,-1,0,0,-1,0,1,-1,-1,-1,0,-1,0,-1,0,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1\r\nmpid100498,Con,0,0,0,1,1,0,0,0,1,1,0,1,0,1,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,-1,1,1,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0\r\nmpid100499,LDem,0,1,1,-1,-1,1,0,0,-1,0,0,0,1,1,1,0,0,-1,-1,1,-1,-1,-1,0,0,0,-1,-1,1,1,-1,1,0,0,0,-1,-1,-1,0,0,1,-1,-1,0,-1,0,-1,0,1,0,0,-1,0,0,0,1,0,0,0,0,-1,1,0,0,1,-1,0,-1,1,1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,1,1,0,0,-1,0,0,0,0,0,-1,0,-1,1,-1,0,0,0\r\nmpid100501,Con,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0\r\nmpid100502,Con,0,1,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,-1,0,0,1,1,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,1,-1,1,1,1,1,0,1,0,0,0,0\r\nmpid100503,Lab,-1,-1,0,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,0\r\nmpid100504,Lab,-1,0,0,-1,-1,0,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,0,0,-1,-1,0,0,0,0,0,-1,0,-1,-1,-1,-1,0,0,0,0,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,1,-1,1,-1,-1,-1,-1,0,-1,0,0,0,-1\r\nmpid100505,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,-1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1\r\nmpid100506,Con,0,1,0,1,1,0,0,0,1,1,0,0,0,1,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1\r\nmpid100507,Con,1,1,0,1,1,0,0,0,1,1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,-1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,1,1,1,0,0,0,1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,1\r\nmpid100508,Lab,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,0,0,-1,-1,0,0,0,0,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,-1,0,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100509,Bp,0,0,0,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100510,XB,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100511,XB,0,0,0,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0\r\nmpid100512,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,-1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1\r\nmpid100513,Lab,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,0,0,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,0,0,-1,0,1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,0,0,-1,1,-1,0,-1,-1,-1,0,0,1,0,-1\r\nmpid100514,Lab,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,-1,-1,-1,0,0,-1,0,-1,0,0,0,-1,-1,-1,0,0,0,-1,-1,-1,0,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,0,1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,1,-1,-1,0,0,0,-1,0,1,0,0\r\nmpid100515,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1\r\nmpid100516,Con,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,-1,1\r\nmpid100517,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100519,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100520,Lab,0,0,0,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,0,0,0,-1,-1,0,-1,-1,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,0,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,-1,0,-1,0,-1\r\nmpid100521,Con,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,1,0,1,-1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,0,0,-1,1,1,0,1,1,1,0,-1,0,1\r\nmpid100522,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,-1,1\r\nmpid100524,LDem,1,1,0,-1,-1,0,1,0,-1,-1,0,0,1,0,1,0,0,-1,-1,1,0,0,0,-1,0,0,-1,-1,1,1,-1,0,0,0,1,0,-1,-1,-1,-1,1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,0,0,-1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,-1\r\nmpid100525,Lab,-1,-1,0,-1,0,-1,0,0,-1,-1,0,0,-1,-1,-1,0,0,-1,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,0,0,0,0,0,-1,1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,1,-1,0,0,0,0,-1,-1,0,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-1,1,-1,1,-1,-1,-1,-1,0,0,-1,0,0,0\r\nmpid100526,Con,0,1,0,1,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,1,1,0,0,0,1,0,-1,0,0\r\nmpid100527,LDem,1,1,0,-1,-1,0,1,0,-1,-1,0,-1,1,1,1,1,1,0,-1,1,0,-1,-1,-1,0,-1,0,-1,1,1,-1,1,0,0,0,0,0,-1,0,0,1,-1,-1,0,-1,0,-1,0,1,1,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100528,Con,0,0,0,1,1,0,1,0,1,1,0,0,1,1,0,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,1,1,0,0,0,1,0,1,1,-1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,0,1,1,1,0,1,0,0,-1,1,1,1,1,1,1,-1,0,0,1\r\nmpid100529,XB,1,1,0,1,1,0,1,0,0,1,0,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,-1,0,-1,1,0,0,0,0\r\nmpid100530,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,0,1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100531,Con,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1\r\nmpid100532,LDem,1,1,0,-1,-1,0,1,0,-1,-1,0,0,1,1,1,0,0,-1,0,1,0,-1,0,-1,0,-1,-1,-1,0,1,0,0,0,1,1,0,0,0,0,0,1,0,-1,-1,-1,0,0,0,1,0,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,1,-1,0,-1,1,1,0,0,-1,-1,0,0,0,0,1,1,1,0,1,1,0,0,-1,0,-1,0,1,-1,-1,0,0,1,0,0,0,-1\r\nmpid100533,Con,1,1,0,1,1,0,0,0,1,1,0,0,1,1,1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,1,1,1,1,0,1,1,1,1,0,1,0,1,0,-1,1,0,0,1,0,0,1,0,1,0,1,0,1,1,1,-1,1,0,1,0,0,1,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,-1,0,1\r\nmpid100534,Con,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1\r\nmpid100535,Lab,0,0,0,0,0,-1,0,0,-1,0,0,0,-1,-1,-1,0,0,-1,0,0,-1,-1,-1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,-1,0,-1,0,0,0,-1\r\nmpid100536,Lab,-1,-1,0,-1,-1,0,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,0,0,-1,-1,-1,-1,0,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,0,0,1,-1,0,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,-1\r\nmpid100538,XB,0,1,0,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0\r\nmpid100539,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100540,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,1,-1,0,0,0,1,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,-1,1,1,0,0,0,0,0,0,0,0,0\r\nmpid100541,Con,0,0,0,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,-1,1,0,0,1,0,0,0,0,1,1,1,0,0,1,1,-1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,-1,1,1,1,1,1,1,0,0,0,1\r\nmpid100543,Bp,0,0,0,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100545,LDem,1,1,0,-1,-1,0,1,0,-1,-1,0,0,1,1,1,1,1,-1,-1,1,-1,-1,0,0,0,-1,-1,-1,1,1,-1,1,0,1,1,0,0,-1,-1,-1,1,-1,-1,0,-1,0,-1,-1,0,1,-1,-1,0,-1,-1,1,0,-1,0,-1,-1,1,0,0,1,0,1,-1,1,1,0,0,-1,-1,0,-1,0,-1,1,1,1,-1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,1,0,-1,0,-1\r\nmpid100546,XB,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,-1,0,0,0,0,-1,-1,0\r\nmpid100547,Lab,-1,-1,0,-1,-1,-1,-1,0,-1,-1,0,0,-1,0,0,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,1,-1,0,-1,-1,0,0,-1,0,0,0,0,0,0,-1,0,0,-1,-1,-1,0,0,-1,-1,0,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,-1,-1,-1,-1,0,0,0,0,0,-1\r\nmpid100548,XB,0,-1,0,-1,-1,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0\r\nmpid100550,LDem,1,1,0,-1,-1,1,0,0,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,1,0,1,0,0,0,0,0,0,0,0,1,-1,-1,0,-1,0,-1,-1,1,1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100551,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0\r\nmpid100552,Con,0,0,0,1,1,0,1,0,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,1,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-1,1,1,1,1,1,1,0,0,0,1\r\nmpid100553,LDem,1,1,1,-1,-1,0,1,0,-1,-1,0,-1,1,0,1,1,1,-1,-1,0,0,0,0,0,0,-1,0,0,0,1,-1,0,0,0,1,0,0,-1,0,0,1,0,-1,0,-1,0,0,0,1,1,-1,0,1,-1,-1,1,0,0,0,-1,-1,1,0,0,1,0,0,-1,1,1,0,0,-1,-1,0,0,0,-1,1,1,1,-1,1,1,0,0,-1,0,-1,0,0,-1,0,0,-1,1,-1,-1,-1,0\r\nmpid100554,LDem,0,1,0,-1,-1,0,1,0,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100556,Con,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,-1,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,-1,0,0\r\nmpid100557,Con,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,-1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1\r\nmpid100558,Con,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1\r\nmpid100559,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,1,-1,-1,0,0,-1,-1,0,0,-1,0,0,-1,-1,-1,0,0,-1,-1,-1,0,0,-1,0,-1,-1,-1,-1,-1,0,0,-1,0,-1,0,-1,-1,-1,0,0,-1,0,0,0,-1\r\nmpid100560,Bp,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100562,XB,0,0,0,1,0,-1,0,0,0,1,0,0,1,0,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100563,Con,1,0,0,-1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,-1,1,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,-1,0,0,0,1,0,-1,0,1\r\nmpid100564,Bp,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100566,XB,1,1,0,1,1,0,0,0,1,1,0,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,-1,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,1,1,0,1,0,0,-1,1,1,0,1,1,0,0,0,-1,1\r\nmpid100567,LDem,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,0,1,-1,1,1,0,0,-1,-1,0,0,0,-1,0,0,0,0,1,1,0,0,-1,0,0,0,1,0,0,0,-1,1,0,-1,-1,-1\r\nmpid100568,Con,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1\r\nmpid100569,XB,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,-1,-1,0,0,-1,0,0,0,-1\r\nmpid100571,Lab,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,0,0,0,-1,-1,0,0,-1,0,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,0,0,-1,-1,-1,0,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,0,0,-1,0,0,1,-1,-1,-1,-1,0,-1,-1,1,0,-1\r\nmpid100574,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,0,0,0,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,-1,0,1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-1,-1,0,0,1,0,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100576,LDem,1,1,0,-1,-1,0,1,0,-1,-1,0,-1,1,1,1,1,1,-1,0,0,-1,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,-1,-1,-1,1,0,0,-1,-1,0,0,-1,1,1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100577,Con,0,0,0,1,1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,0,0,1,1,1,1,0,1,0,1,1,-1,1,0,1,1,0,0,1,0,1,1,1,0,0,1,1,-1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,1,-1,0,1\r\nmpid100578,Con,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,0,1,0,0,0,0,1,-1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,1,0,1,0,0,0,0,-1,0,0\r\nmpid100579,Con,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100580,Con,0,1,0,1,1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,1,1,0,1,0,1,0,0,-1,1\r\nmpid100581,Lab,-1,-1,0,-1,-1,0,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,-1\r\nmpid100582,LDem,1,1,0,-1,-1,0,0,0,-1,-1,0,0,1,0,0,0,0,-1,-1,1,0,0,0,0,0,-1,0,0,0,1,-1,0,0,0,1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,1,1,0,1,-1,1,-1,1,1,0,-1,-1,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,1,-1,-1,0,0\r\nmpid100583,LDem,1,1,0,-1,-1,0,1,0,-1,-1,0,-1,1,1,1,1,1,-1,-1,1,0,0,-1,-1,0,-1,-1,-1,1,1,-1,1,0,0,1,-1,-1,-1,0,0,0,0,0,-1,-1,0,-1,-1,0,1,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,1,-1,1,-1,1,1,0,0,-1,-1,0,-1,0,-1,1,1,1,0,1,1,-1,0,-1,-1,-1,0,1,-1,-1,0,-1,1,-1,0,0,-1\r\nmpid100584,Con,0,1,0,1,1,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,1,0,0,1,0,1,0,1,1,-1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,-1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100585,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,1,1,1,-1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,-1,1,1,1,0,0,0,1,0,1,0,0,0,0,1,0,1,1,0,0,1,0,1,-1,1,1,1,1,1,1,0,-1,0,1\r\nmpid100589,Con,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100590,Lab,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100591,Con,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,-1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1\r\nmpid100592,LDem,1,1,0,-1,-1,1,0,0,-1,-1,0,0,1,1,1,1,1,-1,-1,1,-1,0,-1,0,0,-1,-1,-1,0,1,-1,1,0,1,1,0,0,-1,-1,-1,1,0,0,0,-1,0,0,-1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100593,Lab,-1,-1,0,1,-1,-1,-1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,1,-1,0,-1,-1,-1,-1,0,1,0,-1\r\nmpid100594,XB,0,1,0,1,-1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,-1,1,0,0,1,0,0,1,-1,0,0,0,0,1,0,0,0,-1,0,0,1,-1,1,1,0,0,1,0,0,0,0,1,0,0,0,1,0,-1,-1,0\r\nmpid100595,Lab,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,-1,0,0,0,0,-1,0,0,0,-1\r\nmpid100596,Lab,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1\r\nmpid100597,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,1,1,0,1,1,0,1,0,1,1,0,0,-1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,-1,1\r\nmpid100598,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,1,0,0,0\r\nmpid100599,XB,-1,0,0,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100601,LDem,1,1,0,-1,-1,0,1,0,-1,-1,0,0,1,0,0,0,0,-1,-1,1,0,-1,0,0,0,-1,-1,-1,1,1,-1,1,0,0,1,0,0,0,-1,-1,1,0,0,-1,-1,0,-1,-1,1,0,-1,-1,0,0,-1,1,0,-1,0,-1,0,1,0,0,1,0,1,-1,1,1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,1,1,-1,0,0,0,0,0,0,-1,-1,0,-1,1,0,0,0,-1\r\nmpid100602,Lab,-1,0,0,-1,-1,0,0,0,-1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,-1,0,-1,-1,0,-1,0,0,0,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-1,0,0,-1,-1,0,1,-1,0,-1,-1,0,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,0,0,0,0,-1,0,-1,-1,0,-1,-1,0,0,0,-1,-1,-1,-1,0,0,0,0,0,0\r\nmpid100603,Lab,-1,-1,0,-1,-1,0,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,-1,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,1,-1,1,-1,-1,-1,-1,-1,0,0,0,0,-1\r\nmpid100605,Con,1,0,0,1,1,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,-1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,-1,0,0\r\nmpid100606,Bp,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0\r\nmpid100607,Lab,0,-1,0,1,0,0,0,0,1,-1,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0\r\nmpid100608,LDem,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,0,0,0,0\r\nmpid100609,Con,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100610,XB,0,0,0,-1,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,0,0,0,-1\r\nmpid100611,Con,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100612,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0\r\nmpid100613,Con,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,1,1,-1,0,0,0,1,0,0,0,1,1,-1,1,0,1,0,0,0,1,0,0,1,1,0,0,1,0,-1,1,1,1,1,1,0,1,0,1,0,0,0,0,1,1,1,1,0,0,1,0,0,-1,0,1,1,1,0,0,1,0,0,1\r\nmpid100615,Con,0,0,0,1,1,0,1,0,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,1,1,1,0,0,1,0,0,1\r\nmpid100616,Ind Lab,0,1,0,1,-1,0,-1,0,1,-1,0,-1,0,0,1,-1,-1,0,0,0,-1,-1,0,-1,-1,-1,-1,-1,-1,1,-1,1,0,1,0,0,0,0,-1,-1,-1,-1,0,-1,-1,0,-1,0,0,-1,1,-1,0,-1,-1,0,0,-1,0,-1,-1,-1,0,0,-1,-1,1,1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,1,-1,1,-1,-1,0,1,0,0,0,-1\r\nmpid100618,Lab,-1,-1,0,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,-1,-1,0,-1,0,0,0,0,-1,-1,-1,-1,-1,1,-1,-1,-1,0,0,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,0,0,0,-1,-1,-1,-1,-1,0,0,1,0,-1\r\nmpid100619,Lab,-1,-1,0,0,-1,0,0,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,0,0,-1,-1,-1,-1,0,0,-1,0,0,0,-1,-1,-1,-1,-1,0,-1,0,-1,-1,-1,-1,1,-1,0,0,-1,1,0,-1,0,-1,-1,-1,0,0,-1,0,1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,1,-1,0,-1,0,-1,-1,0,1,0,0\r\nmpid100620,XB,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,0,0,0,1,0,0,0,-1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,-1,0,0,1,-1,-1,0\r\nmpid100621,Con,0,0,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,0,1,1,0,0,1,0,1,0,1,1,1,0,-1,1,0,1,1,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1,0,1,1,1,1,1,1,0,1,0,0,-1,1,1,1,1,1,1,0,-1,0,1\r\nmpid100623,Con,0,1,0,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,0,1,1,0,0,0,0,0,0,1,1,0,1,1,0,1,0,0,1,1,1,-1,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,-1,1,1,1,0,0,0,1,0,1,1,0,0,1,1,0,1,1,1,0,1,0,0,-1,1,1,1,1,1,1,0,-1,-1,1\r\nmpid100624,Lab,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,0,-1,-1,0,-1,0,0,0,0,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,-1,0,0,0,-1,0,0,0,-1\r\nmpid100626,LDem,0,0,0,0,0,0,1,0,-1,-1,0,-1,1,1,1,1,1,-1,-1,1,0,0,0,0,0,0,-1,-1,0,1,-1,1,0,1,1,0,-1,0,-1,-1,1,0,0,0,0,0,-1,0,1,0,0,0,0,0,0,1,-1,0,0,0,0,0,1,0,0,0,0,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,-1,0,0,0,1,0,-1,0,0\r\nmpid100627,Lab,-1,0,0,-1,-1,-1,0,0,-1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,-1,-1,0,0,-1,-1,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,1,-1,-1,-1,-1,-1,-1,1,0,0,-1\r\nmpid100628,Con,0,1,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0,1,0,0,1,1,1,1,0,0,0,1,0,0,1,0,1,-1,1,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0\r\nmpid100629,Con,0,0,1,1,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,-1,0,1,0,0,0,1,0,0,0,1\r\nmpid100632,XB,-1,-1,0,1,0,0,0,0,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,-1,0,1,0,0,0,0,-1,1,-1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,-1,0,0,0,1,-1,0,-1,0,0,1,0,0,1,0,1,0,0,0,-1,0,-1,-1,0\r\nmpid100633,Con,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0\r\nmpid100634,LDem,1,0,0,-1,0,1,0,0,-1,-1,0,0,0,0,0,0,0,-1,-1,1,0,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,-1,1,1,0,0,-1,0,-1,0,1,-1,-1,0,0,1,0,0,0,-1\r\nmpid100635,Con,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,0,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,1,0,0,1,0,0,1,0,1,1,1,0,0,1,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,1,1,1,1,0,1,0,-1,-1,1\r\nmpid100636,Lab,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100637,XB,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,-1,-1,0\r\nmpid100638,LDem,1,1,0,-1,-1,1,1,0,-1,-1,-1,-1,1,1,1,1,1,-1,-1,1,-1,-1,-1,-1,0,-1,-1,-1,1,1,-1,1,0,1,1,0,0,0,0,-1,1,0,0,-1,-1,0,-1,-1,1,1,-1,-1,0,-1,-1,1,0,0,0,-1,-1,1,0,0,1,0,1,-1,1,1,0,0,-1,-1,0,-1,0,-1,1,1,1,-1,1,1,-1,0,-1,0,0,0,0,-1,-1,0,-1,1,-1,-1,-1,-1\r\nmpid100639,LDem,1,1,0,-1,-1,0,0,0,-1,-1,0,0,1,0,0,0,0,0,-1,1,0,0,0,0,0,0,0,0,1,1,-1,1,0,0,1,0,0,0,0,0,1,0,0,0,-1,0,-1,-1,1,0,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,1,-1,0,0,-1,0,-1,0,0,0,0,-1,0,0,0,1,0,-1,0,0\r\nmpid100640,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,0,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,0,-1,0,0,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100641,XB,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100642,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,0,0,0,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,-1\r\nmpid100643,LDem,1,1,0,-1,-1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,-1,-1,0,-1,-1,1,0,0,0,-1,0,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,0,0,1,0,0,-1,0,1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,-1,0,-1,-1,-1,0,1,-1,-1,0,-1,1,-1,-1,0,-1\r\nmpid100644,LDem,1,1,0,-1,-1,1,1,0,-1,-1,-1,-1,1,0,1,1,1,-1,-1,1,-1,0,-1,-1,0,-1,-1,-1,1,1,-1,1,0,1,1,-1,0,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1,1,0,0,-1,0,-1,-1,1,0,-1,0,-1,-1,1,0,0,1,0,1,-1,1,1,0,0,0,0,0,0,0,0,1,1,1,-1,1,1,-1,0,-1,-1,-1,0,1,-1,-1,0,-1,1,-1,-1,0,-1\r\nmpid100645,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,1,1,-1,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,1,0,0,1,0,-1,0,1\r\nmpid100647,Con,0,1,0,1,1,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,-1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,1,1,0,0,1,0,0,-1,0\r\nmpid100649,Con,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1\r\nmpid100650,Lab,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,0,-1,-1,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100651,Lab,-1,-1,0,-1,-1,0,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,0,-1,-1,-1,0,0,-1,-1,0,0,1,0,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,1,-1,1,-1,-1,0,0,-1,0,0,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,0,-1,0,0,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100652,Lab,-1,-1,0,0,-1,0,0,0,0,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,0,-1,0,-1,-1,-1,0,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,1,0,-1\r\nmpid100654,Lab,0,-1,0,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,-1,0,0,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-1,-1,1,-1,-1\r\nmpid100655,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100656,Con,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1\r\nmpid100657,Con,1,1,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,1,0,0,0,1,1,1,0,1,1,0,0,-1,1\r\nmpid100658,Con,0,0,0,1,1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1\r\nmpid100659,Con,0,1,0,0,0,0,0,0,1,1,0,0,0,1,1,0,1,1,1,0,1,0,0,0,1,1,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0\r\nmpid100660,Con,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,1\r\nmpid100661,Con,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1\r\nmpid100662,Lab,-1,0,0,-1,-1,-1,0,0,-1,-1,0,0,-1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,0,-1,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,0,-1,-1,1,-1,0,-1,0,0,0,-1,0,0,-1,-1,0,-1,-1,-1,1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,-1\r\nmpid100664,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1\r\nmpid100666,LDem,1,1,0,-1,-1,1,1,0,-1,-1,0,0,0,1,1,1,1,-1,-1,0,0,0,0,0,0,-1,-1,-1,1,1,-1,1,0,1,1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,0,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,0,1,1,0,0,0,0,0,0,1,-1,0,0,-1,1,-1,1,0,-1\r\nmpid100667,LDem,1,1,0,-1,-1,0,0,0,-1,-1,0,0,0,1,1,1,1,-1,-1,1,0,0,0,0,0,0,0,0,1,1,-1,1,0,1,1,0,-1,-1,-1,-1,1,0,0,-1,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100668,XB,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,0,0,-1\r\nmpid100669,XB,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0\r\nmpid100670,Lab,0,0,0,0,0,-1,0,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,1,0,0,-1,0,1,-1,-1,0,0,-1,0,-1,0,-1,-1,0,-1,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,0,0,0,0,-1,1,0,-1,-1,0,0,-1,-1,1,0,-1\r\nmpid100671,XB,1,1,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,-1,0,0,0,0,1,0,1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,0\r\nmpid100672,Lab,-1,0,0,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,0,-1,-1,1,-1,0,-1,-1,1,-1,-1,0,-1,0,0,-1,-1,-1,0,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,0,0,0,0,-1,1,-1,-1,-1,-1,-1,0,1,0,0,-1\r\nmpid100673,Lab,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100674,LDem,1,0,0,-1,-1,1,1,0,-1,-1,0,0,0,0,0,0,0,-1,-1,1,0,0,0,-1,0,0,-1,-1,1,1,-1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,1,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,-1,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,-1,0,0,-1,1,0,-1,0,-1\r\nmpid100675,XB,0,-1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100676,XB,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,-1,1,-1,1,0,1,-1,1,1,0,1,0,1,0,0,0,-1,0,0,-1,0,0,0,-1,1,0,1,0,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,0,-1,0,0,1,0,1,1,-1,1,0,1,0,1,0,0,-1,-1,0,0,1,0,0,-1,0,0,1,0,0,0,0,1,-1,0,1,-1,0,-1,-1,0\r\nmpid100677,Lab,0,0,0,-1,-1,0,-1,0,-1,-1,0,0,-1,0,0,0,0,-1,-1,-1,0,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,-1,1,-1,0,0,0,0,-1,-1,-1,1,-1,-1,0,0,-1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,0,-1\r\nmpid100679,Lab,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0\r\nmpid100680,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,0,-1,-1,1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100681,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-1,-1,0,-1,1,0,0,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100682,LDem,0,0,0,-1,-1,0,1,0,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,0,1,0,0,0,0,0,-1,0,0,1,-1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,1,1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,0,0,0,0,0,0,0,-1,0,0,-1,1,0,-1,0,-1\r\nmpid100683,XB,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,-1,0,0\r\nmpid100684,Con,0,0,0,1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,1,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,0,-1,0,1\r\nmpid100685,Lab,-1,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,1,-1,0,-1,-1,1,0,-1,0,-1,0,0,0,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,0,0,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100686,LDem,1,1,0,-1,-1,0,0,0,-1,-1,0,-1,1,1,1,1,0,-1,-1,1,-1,-1,0,-1,0,-1,-1,-1,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,0,0,0,0,0,0,1,0,-1,0,-1,-1,1,0,0,1,0,0,-1,1,1,0,0,0,-1,0,0,0,-1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,1,0,-1,0,-1\r\nmpid100687,Lab,-1,-1,0,-1,-1,0,-1,0,-1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,-1,1,0,0,-1,-1,0,0,-1,0,-1,-1,-1,0,0,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,0,0,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100688,Lab,-1,-1,0,-1,-1,0,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,0,-1,-1,-1,-1,1,-1,0,0,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,0,1,-1,-1,-1,-1,-1,-1,0,1,0,-1\r\nmpid100689,XB,-1,1,0,1,-1,0,-1,0,1,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,-1,-1,0,0,-1,0,-1,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0\r\nmpid100690,Con,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,0,0,0,1,1,0,0,1,0,1,-1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1\r\nmpid100692,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100693,Bp,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100694,Con,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,-1,0,1\r\nmpid100695,Lab,-1,0,0,-1,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,-1,0,0,0,-1,-1,0,0,0,-1,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,0,-1,-1,0,-1,0,0,-1,0,-1,0,0,0,0,0,0,0,0,-1\r\nmpid100696,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1\r\nmpid100697,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100699,Lab,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,0,-1,0,0,0,0,-1,-1,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100701,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100703,Con,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100704,Other,-1,-1,-1,-1,0,0,0,-1,-1,0,0,-1,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,0,0,0,0,-1,-1,-1,-1,0,-1,0,0,0,0,-1,0,-1,-1,1,-1,0,-1,-1,1,0,0,-1,-1,-1,-1,0,0,-1,-1,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-1,-1,0,0,0,1,-1,-1,0,-1,0,-1,0,0,0,-1\r\nmpid100705,Con,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100706,Bp,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100709,Bp,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100713,XB,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0\r\nmpid100714,XB,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100715,Lab,-1,-1,0,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,-1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-1,-1,0,0,-1,-1,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100716,Other,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,-1,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,-1,1,1,0,0,0,0,0,0,0,1\r\nmpid100720,Con,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0\r\nmpid100722,Con,1,1,0,0,0,0,1,0,1,1,0,0,0,1,1,0,1,1,0,1,1,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,-1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0\r\nmpid100723,Con,1,1,0,1,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,0,-1,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100724,XB,0,1,0,1,1,0,0,0,1,1,0,-1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,-1,0,0,1,0,-1,-1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,-1,0,0\r\nmpid100726,Other,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100728,Bp,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0\r\nmpid100729,Lab,-1,-1,0,1,-1,0,-1,0,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1,0,0,-1,0,0,-1,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,-1,-1,-1,0,0,-1,0,1,1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,-1,-1,-1,-1,0,0,-1,0,0,0,-1,1,-1,0,-1,1,0,0,0,0\r\nmpid100731,XB,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100733,Lab,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,0,-1,0,0,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,0,-1,-1,0,0,0,-1,-1,0,-1,0,0,0,-1,0,1,-1,0,0,-1,1,0,-1,0,-1,-1,-1,0,0,-1,0,1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,0,1,0,0\r\nmpid100734,Lab,-1,-1,0,1,-1,0,-1,0,-1,-1,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,-1,-1,0,0,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,0,0,-1,0,-1,-1,0,0,-1,0,-1,-1,-1,0,0,-1,0,1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,0,0,0,0,1,-1,1,0,0,-1,0,0,1,0,-1\r\nmpid100735,Lab,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,-1,-1,0,0,0,0,0,0,0,0\r\nmpid100736,Bp,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0\r\nmpid100737,XB,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100738,Con,0,1,0,0,1,0,1,0,1,1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,-1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,1,1,1,1,1,0,1,0,1,-1,0,0,1,1,1,1,0,-1,-1,1\r\nmpid100739,Lab,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100740,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,-1,1,1,0,0,0,0,0,0,0,1\r\nmpid100741,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100742,Bp,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,-1,0,0\r\nmpid100743,Lab,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-1,-1,-1,0,0,-1,0,0,-1,-1,-1,-1,-1,-1,0,-1,0,0,-1,0,0,0,-1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,-1,-1,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,-1,-1,0,1,0,-1\r\nmpid100744,Lab,-1,0,0,1,-1,0,-1,0,1,-1,0,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,1,-1,-1,-1,0,-1,0,0,0,-1,-1,-1,-1,0,-1,0,-1,-1,1,-1,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,0,0,-1,1,-1,-1,-1,-1,0,1,1,-1\r\nmpid100745,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100746,LDem,1,1,0,-1,-1,0,1,0,-1,-1,0,-1,1,1,1,1,1,0,-1,1,-1,-1,0,0,0,-1,0,0,1,0,-1,1,0,1,1,0,-1,-1,-1,-1,1,-1,-1,0,-1,0,-1,-1,1,1,-1,-1,0,-1,-1,1,0,-1,0,-1,-1,1,0,0,1,0,1,-1,1,1,0,0,-1,-1,0,-1,0,-1,1,1,1,-1,0,0,-1,0,-1,0,0,0,0,-1,-1,0,-1,0,-1,-1,0,-1\r\nmpid100748,Lab,0,0,0,-1,-1,0,0,0,-1,-1,0,0,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,-1,-1,0,0,-1,-1,0,0,-1,0,0,0,0,-1,-1,-1,0,0,-1,0,-1,-1,-1,0,1,-1,0,0,-1,0,0,-1,0,-1,-1,-1,0,0,-1,0,1,-1,-1,-1,0,0,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,1,-1,-1,0,0,0,-1,0,0,0,0\r\nmpid100749,XB,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,1,0,1,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,-1,1,1,1,1,1,1,1,-1,0,1\r\nmpid100750,Lab,-1,-1,0,-1,-1,-1,-1,0,-1,-1,0,0,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,0,-1,0,-1,-1,0,0,-1,-1,0,-1,-1,-1,-1,1,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,0,-1,0,0,1,-1,-1,-1,-1,0,-1,-1,-1,0,-1\r\nmpid100751,Lab,-1,-1,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,0,-1,-1,-1,-1,1,0,0,-1,-1,1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,0,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100752,Con,1,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0\r\nmpid100754,Con,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0\r\nmpid100755,Lab,-1,-1,0,-1,-1,-1,-1,0,-1,-1,0,-1,0,0,0,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,0,0,0,-1,-1,-1,-1,0,-1,-1,0,0,-1,0,-1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,-1,0,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,0,0,-1,0,0,1,-1,-1,-1,-1,-1,-1,0,0,0,-1\r\nmpid100757,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0\r\nmpid100760,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,-1,0,0\r\nmpid100764,Con,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,-1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1\r\nmpid100767,Con,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1\r\nmpid100773,XB,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,1,0,-1,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\nmpid100776,XB,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,-1,-1,0,0,0,0"
  },
  {
    "path": "week-2/week-2-1-class.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Lede Algorithms 2018 Week 2 class 1 - Text analysis\\n\",\n    \"\\n\",\n    \"Before running this notebook you will need to install a few things:\\n\",\n    \"\\n\",\n    \"```\\n\",\n    \"pip3 install textblob\\n\",\n    \"python3 -m textblob.download_corpora\\n\",\n    \"pip3 install scipy\\n\",\n    \"pip3 install scikit-learn\\n\",\n    \"```\\n\",\n    \"\\n\",\n    \"For more text analysis goodness, check out Jonathan Soma's 2017 notebooks:\\n\",\n    \"- [TextBlob spaCy sklearn lemmas stems and vectorization](http://jonathansoma.com/lede/algorithms-2017/classes/text-analysis/textblob-spacy-sklearn-lemmas-stems-and-vectorization/)\\n\",\n    \"- [Counting and Stemming](http://jonathansoma.com/lede/algorithms-2017/classes/more-text-analysis/counting-and-stemming/)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Import the packages we will be using\\n\",\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"from textblob import TextBlob\\n\",\n    \"from sklearn.feature_extraction.text import CountVectorizer,TfidfVectorizer\\n\",\n    \"import math\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Load some press releases to play around with. These were scraped from NJ Senator Menendez' site in 2012.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1530\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pr = pd.read_csv('menendez-press-releases.csv')\\n\",\n    \"len(pr)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>url</th>\\n\",\n       \"      <th>text</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Menendez Statement on Black History Month\\\\n   ...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Menendez Praises Susan G. Komen For Reversing ...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Menendez Applauds Dentists’ Pro-Bono Work For ...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Senator Menendez Applauds Passage of STOCK Act...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Menendez Hails Banking Committee Passage of Ir...</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                                                 url  \\\\\\n\",\n       \"0  http://menendez.senate.gov/newsroom/press/rele...   \\n\",\n       \"1  http://menendez.senate.gov/newsroom/press/rele...   \\n\",\n       \"2  http://menendez.senate.gov/newsroom/press/rele...   \\n\",\n       \"3  http://menendez.senate.gov/newsroom/press/rele...   \\n\",\n       \"4  http://menendez.senate.gov/newsroom/press/rele...   \\n\",\n       \"\\n\",\n       \"                                                text  \\n\",\n       \"0  Menendez Statement on Black History Month\\\\n   ...  \\n\",\n       \"1  Menendez Praises Susan G. Komen For Reversing ...  \\n\",\n       \"2  Menendez Applauds Dentists’ Pro-Bono Work For ...  \\n\",\n       \"3  Senator Menendez Applauds Passage of STOCK Act...  \\n\",\n       \"4  Menendez Hails Banking Committee Passage of Ir...  \"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pr.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"These press releases are on all sorts of topics. Take a look at a few, like this:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Senator Menendez Slams Unfair Imprisonment of Former Ukrainian Prime Minister Yulia Tymoshenko\\n\",\n      \"                    \\n\",\n      \"                      February 1, 2012\\n\",\n      \"                     WASHINGTON – United States Senator Robert Menendez (D-NJ) participated in the Senate Foreign Relations Committee hearing on Ukraine today, giving him the opportunity to meet Eugenia Tymoshenko and to discuss the inhumane detention of her mother, the former Prime Minister Yulia Tymoshenko.  Last October, a Ukrainian court sentenced Yulia Tymoshenko to seven years in prison after she was found guilty of abuse of office when brokering a 2009 gas deal with Russia.  The Senator expressed his sympathy and support to Ms. Tymoshenko and vowed to assist in her efforts to have her mother freed from prison.\\n\",\n      \"\\n\",\n      \" “Your mother is a pioneering and incredibly strong woman,” the Senator told the younger Tymoshenko. “Yulia is an example for all people who care so much about their country that they are willing to endure extraordinary hardship and not just lay down in the face of oppression and cruelty. I think this hearing is a wonderful way to inform the American people not only about your mother, but the other opposition leaders in jail and to keep the pressure on the Ukrainian authorities to give Yulia her freedom back.”\\n\",\n      \" “Every day the human rights situation in Ukraine worsens and it’s starting to remind me of the shameful conditions of the Soviet era.  Yulia Tymoshenko worked very hard to throw off the tyranny of the Soviet past, and to see her and other opposition leaders in jail cells is a reminder of how much work remains to be done to improve human rights and political freedom in today’s Ukraine.  We must convince President Yanukovych that Ukraine’s path to freedom and economic prosperity is not through Soviet-style centralized government, but by way of releasing the power, intelligence and dignity of the Ukrainian people while respecting the rights of all its citizens,” added Menendez.\\n\",\n      \"\\n\",\n      \"\\n\",\n      \"###\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(pr.text[8])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There are press releases about government programs, holidays, foreign policy, and more. Can an algorithm tell us something about which topics there are?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"\\n\",\n    \"### Sentences and tokens\\n\",\n    \"\\n\",\n    \"The first step of text analysis is typically breaking the text into sentences and words or more accurately, \\\"tokens\\\" which are basically words but can also be punctuation and numbers.\\n\",\n    \"\\n\",\n    \"We'll use the TextBlob package, which has many easy and useful text processing methods -- though as we will see it's also kind of dumb in many cases.\\n\",\n    \"\\n\",\n    \"Let's start by trying analyze the sentences of the first press release in the set.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[Sentence(\\\"Menendez and Lautenberg Applaud USDOT’s $4.3 Million Award to National Transit Institute at Rutgers\\n\",\n       \"                     \\n\",\n       \"                             Funding will provide job training and education for public transportation workers\\n\",\n       \"                     \\n\",\n       \"                       August 3, 2011\\n\",\n       \"                      WASHINGTON, D.C. – Today, U.S.\\\"),\\n\",\n       \" Sentence(\\\"Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) applauded Secretary Ray LaHood on a $4.3 million grant from the U.S. Department of Transportation in support of the National Transit Institute (NTI) at Rutgers.\\\"),\\n\",\n       \" Sentence(\\\"Since 1991, NTI has served as the premiere research, training, and educational institute in the country dedicated to public transportation.\\\"),\\n\",\n       \" Sentence(\\\"This award will enable critical enhancements to NTI’s ongoing work, including safety and security training, procurement, planning and advanced technologies.\\\"),\\n\",\n       \" Sentence(\\\"“Transit is a critical element of our transportation network and recognition of its importance continues to rise,” said Menendez.\\\"),\\n\",\n       \" Sentence(\\\"“Today, with gas prices around $4 a gallon and oil companies reaping record profits, with the threat of climate change and growing wealth disparity, transit is part of the solution for a number of interconnected challenges.\\\"),\\n\",\n       \" Sentence(\\\"NTI’s work is essential for the industry to continue to create good, long term jobs, provide families with access to opportunity, and help our communities grow in ways that are smart and efficient.”\\n\",\n       \" \\\"Millions of people count on efficient and reliable public transportation to get to and from their homes and their jobs, and transit workers make this possible,\\\" said Senator Lautenberg.\\\"),\\n\",\n       \" Sentence(\\\"\\\"NTI at Rutgers provides critical training for transit operators around the country and helps ensure the best management, safety and security of our public transportation systems.\\\"),\\n\",\n       \" Sentence(\\\"This federal grant makes an investment in NTI so that it can continue its work to keep Americans on the move.\\\"\\\"),\\n\",\n       \" Sentence(\\\"“This grant will ensure that the existing and importantly, the new generation of public transportation workers receive the training that they need to comply with federal regulations and operate safe and efficient transit services,” said NTI’s director, Paul Larrousse.NTI works cooperatively through partnerships with industry, government, institutions, and associations to develop high quality programs that build careers and help make our communities healthier and more livable.\\\"),\\n\",\n       \" Sentence(\\\"###\\\")]\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"press_release_text = pr.text[212]\\n\",\n    \"doc = TextBlob(press_release_text)\\n\",\n    \"doc.sentences\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As you can see, TextBlob is a little naive about what counts as a sentence. Or perhaps the problem is that real text contains lots of things that aren't really sentences. What should we do with the title and the dateline? Even so, it seems to have problems with quotes and newlines.\\n\",\n    \"\\n\",\n    \"Anyway, let's take one of these sentences and play with it further. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Sentence(\\\"“This grant will ensure that the existing and importantly, the new generation of public transportation workers receive the training that they need to comply with federal regulations and operate safe and efficient transit services,” said NTI’s director, Paul Larrousse.NTI works cooperatively through partnerships with industry, government, institutions, and associations to develop high quality programs that build careers and help make our communities healthier and more livable.\\\")\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"s = doc.sentences[9]\\n\",\n    \"s\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This `Sentence` object acts just like a Python string. Let's try to break it into words for further analysis.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"WordList(['“This', 'grant', 'will', 'ensure', 'that', 'the', 'existing', 'and', 'importantly,', 'the', 'new', 'generation', 'of', 'public', 'transportation', 'workers', 'receive', 'the', 'training', 'that', 'they', 'need', 'to', 'comply', 'with', 'federal', 'regulations', 'and', 'operate', 'safe', 'and', 'efficient', 'transit', 'services,”', 'said', 'NTI’s', 'director,', 'Paul', 'Larrousse.NTI', 'works', 'cooperatively', 'through', 'partnerships', 'with', 'industry,', 'government,', 'institutions,', 'and', 'associations', 'to', 'develop', 'high', 'quality', 'programs', 'that', 'build', 'careers', 'and', 'help', 'make', 'our', 'communities', 'healthier', 'and', 'more', 'livable.'])\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"s.split(' ')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Notice that all of the punctuation and capitalization is still there. If we're counting occurences of the word \\\"nation\\\" we will miss \\\"Nation’s\\\". We need a smarter way to extract words. This process is called tokenization.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"WordList(['“', 'This', 'grant', 'will', 'ensure', 'that', 'the', 'existing', 'and', 'importantly', ',', 'the', 'new', 'generation', 'of', 'public', 'transportation', 'workers', 'receive', 'the', 'training', 'that', 'they', 'need', 'to', 'comply', 'with', 'federal', 'regulations', 'and', 'operate', 'safe', 'and', 'efficient', 'transit', 'services', ',', '”', 'said', 'NTI', '’', 's', 'director', ',', 'Paul', 'Larrousse.NTI', 'works', 'cooperatively', 'through', 'partnerships', 'with', 'industry', ',', 'government', ',', 'institutions', ',', 'and', 'associations', 'to', 'develop', 'high', 'quality', 'programs', 'that', 'build', 'careers', 'and', 'help', 'make', 'our', 'communities', 'healthier', 'and', 'more', 'livable', '.'])\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"s.tokens\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"But what about different forms of the same word? Suppose we want to count \\\"education\\\" and \\\"educate\\\" as the same thing? This is where _lemmatization_ and _stemming_ come in. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"ORIGINAL: “ | LEMMA: “ | STEM: “\\n\",\n      \"ORIGINAL: This | LEMMA: This | STEM: thi\\n\",\n      \"ORIGINAL: grant | LEMMA: grant | STEM: grant\\n\",\n      \"ORIGINAL: will | LEMMA: will | STEM: will\\n\",\n      \"ORIGINAL: ensure | LEMMA: ensure | STEM: ensur\\n\",\n      \"ORIGINAL: that | LEMMA: that | STEM: that\\n\",\n      \"ORIGINAL: the | LEMMA: the | STEM: the\\n\",\n      \"ORIGINAL: existing | LEMMA: existing | STEM: exist\\n\",\n      \"ORIGINAL: and | LEMMA: and | STEM: and\\n\",\n      \"ORIGINAL: importantly | LEMMA: importantly | STEM: importantli\\n\",\n      \"ORIGINAL: the | LEMMA: the | STEM: the\\n\",\n      \"ORIGINAL: new | LEMMA: new | STEM: new\\n\",\n      \"ORIGINAL: generation | LEMMA: generation | STEM: gener\\n\",\n      \"ORIGINAL: of | LEMMA: of | STEM: of\\n\",\n      \"ORIGINAL: public | LEMMA: public | STEM: public\\n\",\n      \"ORIGINAL: transportation | LEMMA: transportation | STEM: transport\\n\",\n      \"ORIGINAL: workers | LEMMA: worker | STEM: worker\\n\",\n      \"ORIGINAL: receive | LEMMA: receive | STEM: receiv\\n\",\n      \"ORIGINAL: the | LEMMA: the | STEM: the\\n\",\n      \"ORIGINAL: training | LEMMA: training | STEM: train\\n\",\n      \"ORIGINAL: that | LEMMA: that | STEM: that\\n\",\n      \"ORIGINAL: they | LEMMA: they | STEM: they\\n\",\n      \"ORIGINAL: need | LEMMA: need | STEM: need\\n\",\n      \"ORIGINAL: to | LEMMA: to | STEM: to\\n\",\n      \"ORIGINAL: comply | LEMMA: comply | STEM: compli\\n\",\n      \"ORIGINAL: with | LEMMA: with | STEM: with\\n\",\n      \"ORIGINAL: federal | LEMMA: federal | STEM: feder\\n\",\n      \"ORIGINAL: regulations | LEMMA: regulation | STEM: regul\\n\",\n      \"ORIGINAL: and | LEMMA: and | STEM: and\\n\",\n      \"ORIGINAL: operate | LEMMA: operate | STEM: oper\\n\",\n      \"ORIGINAL: safe | LEMMA: safe | STEM: safe\\n\",\n      \"ORIGINAL: and | LEMMA: and | STEM: and\\n\",\n      \"ORIGINAL: efficient | LEMMA: efficient | STEM: effici\\n\",\n      \"ORIGINAL: transit | LEMMA: transit | STEM: transit\\n\",\n      \"ORIGINAL: services | LEMMA: service | STEM: servic\\n\",\n      \"ORIGINAL: ” | LEMMA: ” | STEM: ”\\n\",\n      \"ORIGINAL: said | LEMMA: said | STEM: said\\n\",\n      \"ORIGINAL: NTI | LEMMA: NTI | STEM: nti\\n\",\n      \"ORIGINAL: ’ | LEMMA: ’ | STEM: ’\\n\",\n      \"ORIGINAL: s | LEMMA: s | STEM: s\\n\",\n      \"ORIGINAL: director | LEMMA: director | STEM: director\\n\",\n      \"ORIGINAL: Paul | LEMMA: Paul | STEM: paul\\n\",\n      \"ORIGINAL: Larrousse.NTI | LEMMA: Larrousse.NTI | STEM: larrousse.nti\\n\",\n      \"ORIGINAL: works | LEMMA: work | STEM: work\\n\",\n      \"ORIGINAL: cooperatively | LEMMA: cooperatively | STEM: cooper\\n\",\n      \"ORIGINAL: through | LEMMA: through | STEM: through\\n\",\n      \"ORIGINAL: partnerships | LEMMA: partnership | STEM: partnership\\n\",\n      \"ORIGINAL: with | LEMMA: with | STEM: with\\n\",\n      \"ORIGINAL: industry | LEMMA: industry | STEM: industri\\n\",\n      \"ORIGINAL: government | LEMMA: government | STEM: govern\\n\",\n      \"ORIGINAL: institutions | LEMMA: institution | STEM: institut\\n\",\n      \"ORIGINAL: and | LEMMA: and | STEM: and\\n\",\n      \"ORIGINAL: associations | LEMMA: association | STEM: associ\\n\",\n      \"ORIGINAL: to | LEMMA: to | STEM: to\\n\",\n      \"ORIGINAL: develop | LEMMA: develop | STEM: develop\\n\",\n      \"ORIGINAL: high | LEMMA: high | STEM: high\\n\",\n      \"ORIGINAL: quality | LEMMA: quality | STEM: qualiti\\n\",\n      \"ORIGINAL: programs | LEMMA: program | STEM: program\\n\",\n      \"ORIGINAL: that | LEMMA: that | STEM: that\\n\",\n      \"ORIGINAL: build | LEMMA: build | STEM: build\\n\",\n      \"ORIGINAL: careers | LEMMA: career | STEM: career\\n\",\n      \"ORIGINAL: and | LEMMA: and | STEM: and\\n\",\n      \"ORIGINAL: help | LEMMA: help | STEM: help\\n\",\n      \"ORIGINAL: make | LEMMA: make | STEM: make\\n\",\n      \"ORIGINAL: our | LEMMA: our | STEM: our\\n\",\n      \"ORIGINAL: communities | LEMMA: community | STEM: commun\\n\",\n      \"ORIGINAL: healthier | LEMMA: healthier | STEM: healthier\\n\",\n      \"ORIGINAL: and | LEMMA: and | STEM: and\\n\",\n      \"ORIGINAL: more | LEMMA: more | STEM: more\\n\",\n      \"ORIGINAL: livable | LEMMA: livable | STEM: livabl\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"for word in s.words:\\n\",\n    \"    print(\\\"ORIGINAL:\\\", word, \\\"| LEMMA:\\\", word.lemmatize(), \\\"| STEM:\\\", word.stem())\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"In this example `lemmatize()` mostly just removes pluralization. `stem()` goes further and produces many non-words like \\\"develop\\\". It's just a set of rules that try to parse out English morphology. The rule set here is called [Porter stemming](https://snowballstem.org/algorithms/porter/stemmer.html), and there are similar algorithms for [many languages](https://snowballstem.org/algorithms/). Lemmatization is actually smarter because it uses a dictionary, so it can undo common verb inflections... if you tell TextBlob that the word is a verb (to be fair, it can [figure out parts of speech](https://textblob.readthedocs.io/en/dev/quickstart.html#part-of-speech-tagging) if you ask it to.)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"'run'\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"TextBlob(\\\"running\\\").words[0].lemmatize('v')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"'run'\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"TextBlob(\\\"ran\\\").words[0].lemmatize('v')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"For our purposes we're going to use TexBlob to make a basic tokenizing function that just makes everything lowercase and throws token with less than 3 characters, which throws out punctuation tokens too.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def tokenize(s):\\n\",\n    \"    blob = TextBlob(s.lower())\\n\",\n    \"    words = [token for token in blob.words if len(token)>2]\\n\",\n    \"    return words\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Document vectors\\n\",\n    \"\\n\",\n    \"We're going to develop ways of turning a document into a vector in a high dimensional space -- that is, a list of hundreds or throusands of numbers. \\n\",\n    \"\\n\",\n    \"Why? Well, we're going to make each of the numbers correspond to the score or importance of a word. This is sort of an abstract word cloud, and it can help us to summarize documents.\\n\",\n    \"\\n\",\n    \"We're also going to use vectors to compare documents to each other. This is useful for many things:\\n\",\n    \"- matching search queries against documents\\n\",\n    \"- classifying documents (think of this as sorting them into piles)\\n\",\n    \"- clustering documents by topic\\n\",\n    \"\\n\",\n    \"To turn documents into vectors, we need to write a function that takes a string and returns a list of numbers. Our first attempt at this will be by counting the number of tokens of each kind.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def doc2vec_count(s):\\n\",\n    \"    tokens = tokenize(s)\\n\",\n    \"    vec = {}\\n\",\n    \"    for t in tokens:\\n\",\n    \"        vec[t] = vec.get(t, 0) + 1\\n\",\n    \"    return vec\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"{'and': 1, 'cat': 1, 'mat': 1, 'the': 2}\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"doc2vec_count(\\\"the cat and the mat\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can use document vectors to summarize documents by imagining them as as list of top words. Let's sort document vectors by decreasing value to try to get an idea of what the entire press release document is \\\"about\\\", and print the top 20\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def print_sorted_vector(v):\\n\",\n    \"    # this \\\"lambda\\\" thing is an anonymous function, google me to unluck bonus coding knowledge\\n\",\n    \"    sorted_list = sorted(v.items(), key=lambda x: (x[1],x[0]), reverse=True) \\n\",\n    \"    sorted_list = sorted_list[:20]\\n\",\n    \"    print('\\\\n'.join([str(x) for x in sorted_list]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"('and', 23)\\n\",\n      \"('the', 13)\\n\",\n      \"('transportation', 7)\\n\",\n      \"('transit', 7)\\n\",\n      \"('nti', 7)\\n\",\n      \"('with', 5)\\n\",\n      \"('training', 5)\\n\",\n      \"('that', 5)\\n\",\n      \"('public', 5)\\n\",\n      \"('this', 4)\\n\",\n      \"('our', 4)\\n\",\n      \"('for', 4)\\n\",\n      \"('workers', 3)\\n\",\n      \"('work', 3)\\n\",\n      \"('will', 3)\\n\",\n      \"('said', 3)\\n\",\n      \"('rutgers', 3)\\n\",\n      \"('menendez', 3)\\n\",\n      \"('lautenberg', 3)\\n\",\n      \"('institute', 3)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print_sorted_vector(doc2vec_count(press_release_text))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Not too bad... but is this press release really \\\"about\\\" the words like \\\"the\\\" and \\\"and\\\"? We're going to need something better. That something for us is TF-IDF term weighting, and we'll talk about it below.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Comparing document vectors\\n\",\n    \"The simplest way to compare two word count vectors is to count the number of overlapping words. Each word can appear more than once, so we'll multiply together the counts of the same word in each docmument. Why? Because this leads us to a Euclidian feature vector with natural geometric properties, which makes it possible to think about wbat is going on with spatial analogies. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def doc_similarity(a_vec,b_vec):\\n\",\n    \"    total = 0\\n\",\n    \"    for word in a_vec:\\n\",\n    \"        if word in b_vec:\\n\",\n    \"            total += a_vec[word]*b_vec[word]\\n\",\n    \"    return total\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"a = doc2vec_count(str(doc.sentences[6]))  # need str to convert Sentence object to string\\n\",\n    \"b = doc2vec_count(str(doc.sentences[9]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"{'nti': 1, 'work': 1, 'essential': 1, 'for': 1, 'the': 1, 'industry': 1, 'continue': 1, 'create': 1, 'good': 1, 'long': 1, 'term': 1, 'jobs': 2, 'provide': 1, 'families': 1, 'with': 1, 'access': 1, 'opportunity': 1, 'and': 6, 'help': 1, 'our': 1, 'communities': 1, 'grow': 1, 'ways': 1, 'that': 1, 'are': 1, 'smart': 1, 'efficient': 2, 'millions': 1, 'people': 1, 'count': 1, 'reliable': 1, 'public': 1, 'transportation': 1, 'get': 1, 'from': 1, 'their': 2, 'homes': 1, 'transit': 1, 'workers': 1, 'make': 1, 'this': 1, 'possible': 1, 'said': 1, 'senator': 1, 'lautenberg': 1}\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(a)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"{'this': 1, 'grant': 1, 'will': 1, 'ensure': 1, 'that': 3, 'the': 3, 'existing': 1, 'and': 6, 'importantly': 1, 'new': 1, 'generation': 1, 'public': 1, 'transportation': 1, 'workers': 1, 'receive': 1, 'training': 1, 'they': 1, 'need': 1, 'comply': 1, 'with': 2, 'federal': 1, 'regulations': 1, 'operate': 1, 'safe': 1, 'efficient': 1, 'transit': 1, 'services': 1, 'said': 1, 'nti': 1, 'director': 1, 'paul': 1, 'larrousse.nti': 1, 'works': 1, 'cooperatively': 1, 'through': 1, 'partnerships': 1, 'industry': 1, 'government': 1, 'institutions': 1, 'associations': 1, 'develop': 1, 'high': 1, 'quality': 1, 'programs': 1, 'build': 1, 'careers': 1, 'help': 1, 'make': 1, 'our': 1, 'communities': 1, 'healthier': 1, 'more': 1, 'livable': 1}\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(b)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"58\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"doc_similarity(a,b)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Ok, but what does \\\"58\\\" mean? One problem we are going to have is that longer documents will tend to be more similar to everything else. More words mean more words can match. We will solve this problem by normalizing each document vector so that it has length 1, meaning that the sum of the _squares_ of the elements is one -- this is Pyhagoras, so we can think of a document as a unit vector now, or a direction, in a space that has as many dimensions as the vocabulary size. \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def doc2vec_normalized(s):\\n\",\n    \"    tokens = tokenize(s)\\n\",\n    \"    vec = {}\\n\",\n    \"    for t in tokens:\\n\",\n    \"        vec[t] = vec.get(t, 0) + 1 # get from dict with a default of 0 if missing\\n\",\n    \"        \\n\",\n    \"    length = math.sqrt(sum([x*x for x in vec.values()]))  # length of a vector, according to Pythagoras\\n\",\n    \"    for word,value in vec.items():\\n\",\n    \"        vec[word] /= length\\n\",\n    \"        \\n\",\n    \"    return vec\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"a = doc2vec_normalized(str(doc.sentences[6]))  # need str to convert Sentence object to string\\n\",\n    \"b = doc2vec_normalized(str(doc.sentences[9]))\\n\",\n    \"c = doc2vec_normalized(str(doc.sentences[5]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"{'today': 0.1690308509457033, 'with': 0.3380617018914066, 'gas': 0.1690308509457033, 'prices': 0.1690308509457033, 'around': 0.1690308509457033, 'gallon': 0.1690308509457033, 'and': 0.3380617018914066, 'oil': 0.1690308509457033, 'companies': 0.1690308509457033, 'reaping': 0.1690308509457033, 'record': 0.1690308509457033, 'profits': 0.1690308509457033, 'the': 0.3380617018914066, 'threat': 0.1690308509457033, 'climate': 0.1690308509457033, 'change': 0.1690308509457033, 'growing': 0.1690308509457033, 'wealth': 0.1690308509457033, 'disparity': 0.1690308509457033, 'transit': 0.1690308509457033, 'part': 0.1690308509457033, 'solution': 0.1690308509457033, 'for': 0.1690308509457033, 'number': 0.1690308509457033, 'interconnected': 0.1690308509457033, 'challenges': 0.1690308509457033}\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(c)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now our similarity function says that the first two sentences are the most similar, because they have words like \\\"industry\\\", \\\"efficient\\\", and \\\"transit\\\" in common.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"0.5943484047696529\\n\",\n      \"0.37583907018239515\\n\",\n      \"0.32251021858460976\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(doc_similarity(a,b))\\n\",\n    \"print(doc_similarity(b,c))\\n\",\n    \"print(doc_similarity(a,c))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### TF-IDF weighting\\n\",\n    \"As we discussed in class, term frequency / inverse document frequency is a word weighting scheme that tries to give less weight to words that appear in many documents. This will solve our \\\"the\\\" problem, and it will also help drop out topic words that are common to the entire corpus. Rather than writing it ourselves, we're going to use the implementation in the `scikit` library.\\n\",\n    \"\\n\",\n    \"Scikit includes a bunch of built in vectorizers, such as classic counting. Let's turn the first ten press releases into vectors.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>1,105,000</th>\\n\",\n       \"      <th>1,160,000</th>\\n\",\n       \"      <th>100</th>\\n\",\n       \"      <th>1099</th>\\n\",\n       \"      <th>13,381</th>\\n\",\n       \"      <th>142nd</th>\\n\",\n       \"      <th>15th</th>\\n\",\n       \"      <th>170</th>\\n\",\n       \"      <th>170,000</th>\\n\",\n       \"      <th>179,550</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>yanukovych</th>\\n\",\n       \"      <th>year</th>\\n\",\n       \"      <th>yearly</th>\\n\",\n       \"      <th>years</th>\\n\",\n       \"      <th>yesterday</th>\\n\",\n       \"      <th>york</th>\\n\",\n       \"      <th>young</th>\\n\",\n       \"      <th>younger</th>\\n\",\n       \"      <th>yulia</th>\\n\",\n       \"      <th>–through</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>5</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>6</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>8</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>10 rows × 1261 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   1,105,000  1,160,000  100  1099  13,381  142nd  15th  170  170,000  \\\\\\n\",\n       \"0          0          0    2     0       0      1     1    0        0   \\n\",\n       \"1          0          0    0     0       0      0     0    0        1   \\n\",\n       \"2          0          0    1     0       0      0     0    0        0   \\n\",\n       \"3          0          0    0     0       0      0     0    0        0   \\n\",\n       \"4          1          1    0     0       0      0     0    0        0   \\n\",\n       \"5          0          0    0     0       0      0     0    0        0   \\n\",\n       \"6          0          0    0     0       1      0     0    0        0   \\n\",\n       \"7          0          0    1     1       0      0     0    1        0   \\n\",\n       \"8          0          0    0     0       0      0     0    0        0   \\n\",\n       \"9          0          0    0     0       0      0     0    0        0   \\n\",\n       \"\\n\",\n       \"   179,550    ...     yanukovych  year  yearly  years  yesterday  york  young  \\\\\\n\",\n       \"0        0    ...              0     0       0      0          0     0      0   \\n\",\n       \"1        0    ...              0     1       0      1          1     0      0   \\n\",\n       \"2        0    ...              0     3       1      0          0     0      0   \\n\",\n       \"3        0    ...              0     0       0      0          0     0      0   \\n\",\n       \"4        0    ...              0     0       0      0          0     1      3   \\n\",\n       \"5        0    ...              0     4       0      2          0     0      0   \\n\",\n       \"6        1    ...              0     0       0      0          0     0      0   \\n\",\n       \"7        0    ...              0     1       0      3          0     0      0   \\n\",\n       \"8        0    ...              1     0       0      1          0     0      0   \\n\",\n       \"9        0    ...              0     0       0      0          0     0      0   \\n\",\n       \"\\n\",\n       \"   younger  yulia  –through  \\n\",\n       \"0        0      0         0  \\n\",\n       \"1        0      0         0  \\n\",\n       \"2        0      0         0  \\n\",\n       \"3        0      0         0  \\n\",\n       \"4        0      0         0  \\n\",\n       \"5        0      0         0  \\n\",\n       \"6        0      0         0  \\n\",\n       \"7        0      0         0  \\n\",\n       \"8        1      6         0  \\n\",\n       \"9        0      0         1  \\n\",\n       \"\\n\",\n       \"[10 rows x 1261 columns]\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Make a new Count Vectorizer!!!! It will conveniently remove stop words if we tell it what language we're using\\n\",\n    \"vectorizer = CountVectorizer(stop_words='english', tokenizer=tokenize)\\n\",\n    \"\\n\",\n    \"# Use the vectorizor we just made. The name fit_transform will be clearer later when we use it for machine learning\\n\",\n    \"matrix = vectorizer.fit_transform(pr.text[0:10])\\n\",\n    \"\\n\",\n    \"# The easiest way to see what happenned is to make a dataframe\\n\",\n    \"results = pd.DataFrame(matrix.toarray(), columns=vectorizer.get_feature_names())\\n\",\n    \"results\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Each row is a document, and each column corresponds to a single vocabulary word or token. And there are a lot of columns, which means we can think of these as points in 1,261 dimensional space.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \" \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"['1,105,000',\\n\",\n       \" '1,160,000',\\n\",\n       \" '100',\\n\",\n       \" '1099',\\n\",\n       \" '13,381',\\n\",\n       \" '142nd',\\n\",\n       \" '15th',\\n\",\n       \" '170',\\n\",\n       \" '170,000',\\n\",\n       \" '179,550',\\n\",\n       \" '1903',\\n\",\n       \" '1980s',\\n\",\n       \" '1983',\\n\",\n       \" '1996',\\n\",\n       \" '1998',\\n\",\n       \" '20,000',\\n\",\n       \" '2008',\\n\",\n       \" '2009',\\n\",\n       \" '2010',\\n\",\n       \" '2011',\\n\",\n       \" '2012',\\n\",\n       \" '265,950',\\n\",\n       \" '3.8',\\n\",\n       \" '315,000',\\n\",\n       \" '335',\\n\",\n       \" '350',\\n\",\n       \" '351,554',\\n\",\n       \" '4,600',\\n\",\n       \" '47,200',\\n\",\n       \" '5,000',\\n\",\n       \" '51.5m',\\n\",\n       \" '519',\\n\",\n       \" '5:00',\\n\",\n       \" '5million',\\n\",\n       \" '6,400',\\n\",\n       \" '6.5',\\n\",\n       \" '650,000',\\n\",\n       \" '65m',\\n\",\n       \" '7.8',\\n\",\n       \" '750,000',\\n\",\n       \" '770,000',\\n\",\n       \" '771',\\n\",\n       \" '929,088',\\n\",\n       \" '96-3',\\n\",\n       \" 'able',\\n\",\n       \" 'abuse',\\n\",\n       \" 'access',\\n\",\n       \" 'according',\\n\",\n       \" 'accountability',\\n\",\n       \" 'acquisition',\\n\",\n       \" 'act',\\n\",\n       \" 'action',\\n\",\n       \" 'add',\\n\",\n       \" 'added',\\n\",\n       \" 'additionally',\\n\",\n       \" 'address',\\n\",\n       \" 'addresses',\\n\",\n       \" 'adopted',\\n\",\n       \" 'advance',\\n\",\n       \" 'adversely',\\n\",\n       \" 'advocate',\\n\",\n       \" 'affect',\\n\",\n       \" 'affected',\\n\",\n       \" 'affiliates',\\n\",\n       \" 'afford',\\n\",\n       \" 'afg',\\n\",\n       \" 'afin',\\n\",\n       \" 'african',\\n\",\n       \" 'african-american',\\n\",\n       \" 'african-americans',\\n\",\n       \" 'agencies',\\n\",\n       \" 'agency',\\n\",\n       \" 'agenda',\\n\",\n       \" 'agents',\\n\",\n       \" 'ahmadinejad',\\n\",\n       \" 'aid',\\n\",\n       \" 'air',\\n\",\n       \" 'alarm',\\n\",\n       \" 'ali',\\n\",\n       \" 'allow',\\n\",\n       \" 'allows',\\n\",\n       \" 'ambassador',\\n\",\n       \" 'amendment',\\n\",\n       \" 'amendments',\\n\",\n       \" 'america',\\n\",\n       \" 'american',\\n\",\n       \" 'americans',\\n\",\n       \" 'anniversary',\\n\",\n       \" 'announce',\\n\",\n       \" 'announced',\\n\",\n       \" 'annual',\\n\",\n       \" 'ansar-e-hezbollah',\\n\",\n       \" 'apologize',\\n\",\n       \" 'apologized',\\n\",\n       \" 'applaud',\\n\",\n       \" 'applauded',\\n\",\n       \" 'applauds',\\n\",\n       \" 'applications',\\n\",\n       \" 'apply',\\n\",\n       \" 'appreciation',\\n\",\n       \" 'appropriations',\\n\",\n       \" 'approval',\\n\",\n       \" 'arabia',\\n\",\n       \" 'areas',\\n\",\n       \" 'aside',\\n\",\n       \" 'asked',\\n\",\n       \" 'assembly',\\n\",\n       \" 'assess',\\n\",\n       \" 'assets',\\n\",\n       \" 'assist',\\n\",\n       \" 'assistance',\\n\",\n       \" 'assistants',\\n\",\n       \" 'association',\\n\",\n       \" 'atlantic',\\n\",\n       \" 'attach',\\n\",\n       \" 'attack',\\n\",\n       \" 'attempt',\\n\",\n       \" 'attended',\\n\",\n       \" 'authorities',\\n\",\n       \" 'authority',\\n\",\n       \" 'authorization',\\n\",\n       \" 'available',\\n\",\n       \" 'average',\\n\",\n       \" 'awarded',\\n\",\n       \" 'bank',\\n\",\n       \" 'banking',\\n\",\n       \" 'banks',\\n\",\n       \" 'bank—all',\\n\",\n       \" 'baptist',\\n\",\n       \" 'barracks',\\n\",\n       \" 'bars',\\n\",\n       \" 'base',\\n\",\n       \" 'based',\\n\",\n       \" 'basij-e',\\n\",\n       \" 'beginning',\\n\",\n       \" 'beliefs',\\n\",\n       \" 'benefit',\\n\",\n       \" 'benefits',\\n\",\n       \" 'bergen/passaic',\\n\",\n       \" 'best',\\n\",\n       \" 'bigger',\\n\",\n       \" 'biggest',\\n\",\n       \" 'billion',\\n\",\n       \" 'bills',\\n\",\n       \" 'bionj',\\n\",\n       \" 'biotechnology',\\n\",\n       \" 'bipartisan',\\n\",\n       \" 'black',\\n\",\n       \" 'blueprint',\\n\",\n       \" 'bomb',\\n\",\n       \" 'bombing',\\n\",\n       \" 'bono',\\n\",\n       \" 'boon',\\n\",\n       \" 'boost',\\n\",\n       \" 'box',\\n\",\n       \" 'branch',\\n\",\n       \" 'brand',\\n\",\n       \" 'breast',\\n\",\n       \" 'brennan',\\n\",\n       \" 'brigadier',\\n\",\n       \" 'brinker',\\n\",\n       \" 'bro-bono',\\n\",\n       \" 'broader',\\n\",\n       \" 'brokering',\\n\",\n       \" 'brown',\\n\",\n       \" 'budget',\\n\",\n       \" 'built',\\n\",\n       \" 'business',\\n\",\n       \" 'businesses',\\n\",\n       \" 'buster',\\n\",\n       \" 'buy',\\n\",\n       \" 'bylaws',\\n\",\n       \" 'cabinet',\\n\",\n       \" 'called',\\n\",\n       \" 'cancer',\\n\",\n       \" 'cancers',\\n\",\n       \" 'capacity',\\n\",\n       \" 'capital',\\n\",\n       \" 'capitol',\\n\",\n       \" 'capture',\\n\",\n       \" 'care',\\n\",\n       \" 'career',\\n\",\n       \" 'cargo',\\n\",\n       \" 'cars',\\n\",\n       \" 'case',\\n\",\n       \" 'caused',\\n\",\n       \" 'cecile',\\n\",\n       \" 'celebrate',\\n\",\n       \" 'celebrated',\\n\",\n       \" 'celebration',\\n\",\n       \" 'cells',\\n\",\n       \" 'center',\\n\",\n       \" 'centers',\\n\",\n       \" 'central',\\n\",\n       \" 'centralized',\\n\",\n       \" 'certain',\\n\",\n       \" 'chair',\\n\",\n       \" 'chairman',\\n\",\n       \" 'championed',\\n\",\n       \" 'chance',\\n\",\n       \" 'change',\\n\",\n       \" 'chapter',\\n\",\n       \" 'charge',\\n\",\n       \" 'cheaper',\\n\",\n       \" 'check-up',\\n\",\n       \" 'children',\\n\",\n       \" 'chip',\\n\",\n       \" 'choice',\\n\",\n       \" 'church',\\n\",\n       \" 'circumvent',\\n\",\n       \" 'cisada',\\n\",\n       \" 'citibank',\\n\",\n       \" 'citizens',\\n\",\n       \" 'city',\\n\",\n       \" 'clarifies',\\n\",\n       \" 'clean',\\n\",\n       \" 'cleaner',\\n\",\n       \" 'cleanings',\\n\",\n       \" 'clearinghouse',\\n\",\n       \" 'climate',\\n\",\n       \" 'clinic',\\n\",\n       \" 'clinical',\\n\",\n       \" 'clinics',\\n\",\n       \" 'closer',\\n\",\n       \" 'co-authored',\\n\",\n       \" 'co-sponsor',\\n\",\n       \" 'co-sponsored',\\n\",\n       \" 'coalition',\\n\",\n       \" 'colleagues',\\n\",\n       \" 'columbia',\\n\",\n       \" 'comes',\\n\",\n       \" 'commission',\\n\",\n       \" 'commitment',\\n\",\n       \" 'committed',\\n\",\n       \" 'committee',\\n\",\n       \" 'communications',\\n\",\n       \" 'communities',\\n\",\n       \" 'community',\\n\",\n       \" 'commuters',\\n\",\n       \" 'companies',\\n\",\n       \" 'company',\\n\",\n       \" 'company/tanker',\\n\",\n       \" 'compels',\\n\",\n       \" 'compensate',\\n\",\n       \" 'competitive',\\n\",\n       \" 'comprehensive',\\n\",\n       \" 'concluded',\\n\",\n       \" 'concludes',\\n\",\n       \" 'condition',\\n\",\n       \" 'conditions',\\n\",\n       \" 'conducive',\\n\",\n       \" 'congestion',\\n\",\n       \" 'congress',\\n\",\n       \" 'congressional',\\n\",\n       \" 'consider',\\n\",\n       \" 'consolidation',\\n\",\n       \" 'container',\\n\",\n       \" 'containers',\\n\",\n       \" 'contains',\\n\",\n       \" 'continue',\\n\",\n       \" 'contracts',\\n\",\n       \" 'contributions',\\n\",\n       \" 'convince',\\n\",\n       \" 'cooperative',\\n\",\n       \" 'coordinate',\\n\",\n       \" 'core',\\n\",\n       \" 'corps',\\n\",\n       \" 'corrupt',\\n\",\n       \" 'countless',\\n\",\n       \" 'country',\\n\",\n       \" 'course',\\n\",\n       \" 'court',\\n\",\n       \" 'coverage',\\n\",\n       \" 'craft',\\n\",\n       \" 'create',\\n\",\n       \" 'created',\\n\",\n       \" 'creates',\\n\",\n       \" 'creating',\\n\",\n       \" 'creation',\\n\",\n       \" 'credit',\\n\",\n       \" 'crowns',\\n\",\n       \" 'cruelty',\\n\",\n       \" 'crunch',\\n\",\n       \" 'culmination',\\n\",\n       \" 'cure',\\n\",\n       \" 'currency',\\n\",\n       \" 'customer',\\n\",\n       \" 'cut',\\n\",\n       \" 'cutting',\\n\",\n       \" 'd-nj',\\n\",\n       \" 'd.c',\\n\",\n       \" 'day',\\n\",\n       \" 'days',\\n\",\n       \" 'deal',\\n\",\n       \" 'dean',\\n\",\n       \" 'dear',\\n\",\n       \" 'death',\\n\",\n       \" 'debbie',\\n\",\n       \" 'december',\\n\",\n       \" 'decision',\\n\",\n       \" 'decisions',\\n\",\n       \" 'dedication',\\n\",\n       \" 'defense',\\n\",\n       \" 'deforest',\\n\",\n       \" 'delays',\\n\",\n       \" 'deliver',\\n\",\n       \" 'delivery',\\n\",\n       \" 'demand',\\n\",\n       \" 'democratic',\\n\",\n       \" 'democrats',\\n\",\n       \" 'denied',\\n\",\n       \" 'dental',\\n\",\n       \" 'dentistry',\\n\",\n       \" 'dentists',\\n\",\n       \" 'deny',\\n\",\n       \" 'department',\\n\",\n       \" 'departments',\\n\",\n       \" 'depend',\\n\",\n       \" 'deserve',\\n\",\n       \" 'deserves',\\n\",\n       \" 'design',\\n\",\n       \" 'designated',\\n\",\n       \" 'designed',\\n\",\n       \" 'designs',\\n\",\n       \" 'desire',\\n\",\n       \" 'despite',\\n\",\n       \" 'destroyed',\\n\",\n       \" 'detention',\\n\",\n       \" 'determination',\\n\",\n       \" 'determined',\\n\",\n       \" 'development',\\n\",\n       \" 'devised',\\n\",\n       \" 'diabetes',\\n\",\n       \" 'different',\\n\",\n       \" 'dignity',\\n\",\n       \" 'diplomatic',\\n\",\n       \" 'direct',\\n\",\n       \" 'direction',\\n\",\n       \" 'directors',\\n\",\n       \" 'dirty',\\n\",\n       \" 'disabled',\\n\",\n       \" 'disappointment',\\n\",\n       \" 'discovery',\\n\",\n       \" 'discuss',\\n\",\n       \" 'discussion',\\n\",\n       \" 'disease',\\n\",\n       \" 'diseases',\\n\",\n       \" 'district',\\n\",\n       \" 'diverse',\\n\",\n       \" 'diversity',\\n\",\n       \" 'dodd-frank',\\n\",\n       \" 'does',\\n\",\n       \" 'doing',\\n\",\n       \" 'dollar',\\n\",\n       \" 'dollars',\\n\",\n       \" 'don',\\n\",\n       \" 'downturn',\\n\",\n       \" 'dream',\\n\",\n       \" 'drop',\\n\",\n       \" 'drowning',\\n\",\n       \" 'earlier',\\n\",\n       \" 'earmarks',\\n\",\n       \" 'earn',\\n\",\n       \" 'earnestly',\\n\",\n       \" 'ease',\\n\",\n       \" 'easier',\\n\",\n       \" 'easing',\\n\",\n       \" 'east',\\n\",\n       \" 'eat',\\n\",\n       \" 'economic',\\n\",\n       \" 'economies',\\n\",\n       \" 'economy',\\n\",\n       \" 'education',\\n\",\n       \" 'educational',\\n\",\n       \" 'effectively',\\n\",\n       \" 'efforts',\\n\",\n       \" 'elderly',\\n\",\n       \" 'electronically',\\n\",\n       \" 'eligible',\\n\",\n       \" 'eliminating',\\n\",\n       \" 'embargo',\\n\",\n       \" 'emergencies',\\n\",\n       \" 'emergency',\\n\",\n       \" 'employees',\\n\",\n       \" 'empowered',\\n\",\n       \" 'enactment',\\n\",\n       \" 'encouraged',\\n\",\n       \" 'encourages',\\n\",\n       \" 'end',\\n\",\n       \" 'endure',\\n\",\n       \" 'energy',\\n\",\n       \" 'enforce',\\n\",\n       \" 'engaging',\\n\",\n       \" 'enhance',\\n\",\n       \" 'enormous',\\n\",\n       \" 'enriched',\\n\",\n       \" 'ensure',\\n\",\n       \" 'entire',\\n\",\n       \" 'entities',\\n\",\n       \" 'environment',\\n\",\n       \" 'equipment',\\n\",\n       \" 'equipped',\\n\",\n       \" 'era',\\n\",\n       \" 'especially',\\n\",\n       \" 'establishes',\\n\",\n       \" 'eugenia',\\n\",\n       \" 'european',\\n\",\n       \" 'event',\\n\",\n       \" 'example',\\n\",\n       \" 'exams',\\n\",\n       \" 'exchange',\\n\",\n       \" 'executive',\\n\",\n       \" 'existing',\\n\",\n       \" 'expand',\\n\",\n       \" 'expands',\\n\",\n       \" 'expel',\\n\",\n       \" 'expensing',\\n\",\n       \" 'expensive',\\n\",\n       \" 'experienced',\\n\",\n       \" 'experts',\\n\",\n       \" 'explicitly',\\n\",\n       \" 'explored',\\n\",\n       \" 'exposed',\\n\",\n       \" 'express',\\n\",\n       \" 'expressed',\\n\",\n       \" 'expressing',\\n\",\n       \" 'extractions',\\n\",\n       \" 'extraordinary',\\n\",\n       \" 'fabric',\\n\",\n       \" 'face',\\n\",\n       \" 'facilitate',\\n\",\n       \" 'facilitating',\\n\",\n       \" 'facing',\\n\",\n       \" 'factory',\\n\",\n       \" 'faith',\\n\",\n       \" 'families',\\n\",\n       \" 'family',\\n\",\n       \" 'far',\\n\",\n       \" 'fault',\\n\",\n       \" 'favor',\\n\",\n       \" 'february',\\n\",\n       \" 'federal',\\n\",\n       \" 'feldman',\\n\",\n       \" 'fema',\\n\",\n       \" 'fight',\\n\",\n       \" 'fighters',\\n\",\n       \" 'fighting',\\n\",\n       \" 'fillings',\\n\",\n       \" 'finally',\\n\",\n       \" 'financial',\\n\",\n       \" 'firefighters',\\n\",\n       \" 'fix',\\n\",\n       \" 'fleet',\\n\",\n       \" 'flourish',\\n\",\n       \" 'flow',\\n\",\n       \" 'fluoride',\\n\",\n       \" 'focus',\\n\",\n       \" 'following',\\n\",\n       \" 'foods',\\n\",\n       \" 'foreign',\\n\",\n       \" 'forth',\\n\",\n       \" 'forum',\\n\",\n       \" 'forward',\\n\",\n       \" 'fought',\\n\",\n       \" 'foundation',\\n\",\n       \" 'frank',\\n\",\n       \" 'free',\\n\",\n       \" 'freed',\\n\",\n       \" 'freedom',\\n\",\n       \" 'friday',\\n\",\n       \" 'fuel',\\n\",\n       \" 'fuels',\\n\",\n       \" 'fully',\\n\",\n       \" 'fun',\\n\",\n       \" 'fund',\\n\",\n       \" 'fundamental',\\n\",\n       \" 'funding',\\n\",\n       \" 'funds',\\n\",\n       \" 'future',\\n\",\n       \" 'gain',\\n\",\n       \" 'gambled',\\n\",\n       \" 'gardens',\\n\",\n       \" 'gas',\\n\",\n       \" 'general',\\n\",\n       \" 'generated',\\n\",\n       \" 'generating',\\n\",\n       \" 'getting',\\n\",\n       \" 'giants',\\n\",\n       \" 'gillibrand',\\n\",\n       \" 'given',\\n\",\n       \" 'gives',\\n\",\n       \" 'giving',\\n\",\n       \" 'goals',\\n\",\n       \" 'goes',\\n\",\n       \" 'good',\\n\",\n       \" 'goodwill',\\n\",\n       \" 'government',\\n\",\n       \" 'governments',\\n\",\n       \" 'grant',\\n\",\n       \" 'grants',\\n\",\n       \" 'great',\\n\",\n       \" 'greater',\\n\",\n       \" 'greatly',\\n\",\n       \" 'greatness',\\n\",\n       \" 'grow',\\n\",\n       \" 'grown',\\n\",\n       \" 'growth',\\n\",\n       \" 'guaranteed',\\n\",\n       \" 'guarantees',\\n\",\n       \" 'guard',\\n\",\n       \" 'guilty',\\n\",\n       \" 'hailed',\\n\",\n       \" 'hails',\\n\",\n       \" 'half',\\n\",\n       \" 'halt',\\n\",\n       \" 'hamp',\\n\",\n       \" 'handle',\\n\",\n       \" 'hard',\\n\",\n       \" 'hardship',\\n\",\n       \" 'hart',\\n\",\n       \" 'health',\\n\",\n       \" 'healthier',\\n\",\n       \" 'healthy',\\n\",\n       \" 'hear',\\n\",\n       \" 'heard',\\n\",\n       \" 'hearing',\\n\",\n       \" 'held',\\n\",\n       \" 'help',\\n\",\n       \" 'helped',\\n\",\n       \" 'helping',\\n\",\n       \" 'helps',\\n\",\n       \" 'hemisphere',\\n\",\n       \" 'highlands',\\n\",\n       \" 'hill',\\n\",\n       \" 'hinders',\\n\",\n       \" 'hiring',\\n\",\n       \" 'historically',\\n\",\n       \" 'history',\\n\",\n       \" 'homeland',\\n\",\n       \" 'homeowners',\\n\",\n       \" 'homes',\\n\",\n       \" 'hometown',\\n\",\n       \" 'honor',\\n\",\n       \" 'honored',\\n\",\n       \" 'honors',\\n\",\n       \" 'hope',\\n\",\n       \" 'hopes',\\n\",\n       \" 'host',\\n\",\n       \" 'hosted',\\n\",\n       \" 'hosts',\\n\",\n       \" 'house',\\n\",\n       \" 'housing',\\n\",\n       \" 'http',\\n\",\n       \" 'hubs',\\n\",\n       \" 'human',\\n\",\n       \" 'hurt',\\n\",\n       \" 'hygiene',\\n\",\n       \" 'hygienists',\\n\",\n       \" 'illicit',\\n\",\n       \" 'immigration',\\n\",\n       \" 'impact',\\n\",\n       \" 'importance',\\n\",\n       \" 'important',\\n\",\n       \" 'impose',\\n\",\n       \" 'imposed',\\n\",\n       \" 'imposes',\\n\",\n       \" 'imposition',\\n\",\n       \" 'impression',\\n\",\n       \" 'imprisonment',\\n\",\n       \" 'improve',\\n\",\n       \" 'improvements',\\n\",\n       \" 'incentives',\\n\",\n       \" 'include',\\n\",\n       \" 'included',\\n\",\n       \" 'including',\\n\",\n       \" 'inclusion',\\n\",\n       \" 'income',\\n\",\n       \" 'inconsistent',\\n\",\n       \" 'increase',\\n\",\n       \" 'increased',\\n\",\n       \" 'increasing',\\n\",\n       \" 'incredible',\\n\",\n       \" 'incredibly',\\n\",\n       \" 'industry',\\n\",\n       \" 'inform',\\n\",\n       \" 'information',\\n\",\n       \" 'infrastructure',\\n\",\n       \" 'inhumane',\\n\",\n       \" 'initiatives',\\n\",\n       \" 'insider',\\n\",\n       \" 'inspired',\\n\",\n       \" 'instance',\\n\",\n       \" 'instances',\\n\",\n       \" 'institute',\\n\",\n       \" 'institutions',\\n\",\n       \" 'instruction',\\n\",\n       \" 'insurance',\\n\",\n       \" 'integrity',\\n\",\n       \" 'intelligence',\\n\",\n       \" 'interbank',\\n\",\n       \" 'interests',\\n\",\n       \" 'international',\\n\",\n       \" 'internet',\\n\",\n       \" 'introduced',\\n\",\n       \" 'invest',\\n\",\n       \" 'investigate',\\n\",\n       \" 'investment',\\n\",\n       \" 'investments',\\n\",\n       \" 'investors',\\n\",\n       \" 'iran',\\n\",\n       \" 'iranian',\\n\",\n       \" 'iranian-energy',\\n\",\n       \" 'irgc',\\n\",\n       \" 'irvington',\\n\",\n       \" 'islamic',\\n\",\n       \" 'iso',\\n\",\n       \" 'issue',\\n\",\n       \" 'issued',\\n\",\n       \" 'jack',\\n\",\n       \" 'jail',\\n\",\n       \" 'jeffrey',\\n\",\n       \" 'jersey',\\n\",\n       \" 'jim',\\n\",\n       \" 'job',\\n\",\n       \" 'jobs',\\n\",\n       \" 'joined',\\n\",\n       \" 'joint',\\n\",\n       \" 'judgment',\\n\",\n       \" 'judy',\\n\",\n       \" 'just',\\n\",\n       \" 'justice',\\n\",\n       \" 'khameini',\\n\",\n       \" 'khobar',\\n\",\n       \" 'kids',\\n\",\n       \" 'killed',\\n\",\n       \" 'kirk',\\n\",\n       \" 'knowledge',\\n\",\n       \" 'komen',\\n\",\n       \" 'korea',\\n\",\n       \" 'lack',\\n\",\n       \" 'laid',\\n\",\n       \" 'landing',\\n\",\n       \" 'language',\\n\",\n       \" 'largest',\\n\",\n       \" 'later',\\n\",\n       \" 'latinas',\\n\",\n       \" 'laureldale',\\n\",\n       \" 'lautenberg',\\n\",\n       \" 'law',\\n\",\n       \" 'laws',\\n\",\n       \" 'lay',\\n\",\n       \" 'leader',\\n\",\n       \" 'leaders',\\n\",\n       \" 'learn',\\n\",\n       \" 'leases',\\n\",\n       \" 'lebanon',\\n\",\n       \" 'led',\\n\",\n       \" 'legislation',\\n\",\n       \" 'legislators',\\n\",\n       \" 'let',\\n\",\n       \" 'letter',\\n\",\n       \" 'liability',\\n\",\n       \" 'life',\\n\",\n       \" 'life-saving',\\n\",\n       \" 'lifeline',\\n\",\n       \" 'like',\\n\",\n       \" 'limits',\\n\",\n       \" 'lincoln',\\n\",\n       \" 'line',\\n\",\n       \" 'lines',\\n\",\n       \" 'literally',\\n\",\n       \" 'livable',\\n\",\n       \" 'lives',\\n\",\n       \" 'living',\\n\",\n       \" 'loan',\\n\",\n       \" 'local',\\n\",\n       \" 'logical',\\n\",\n       \" 'long',\\n\",\n       \" 'lost',\\n\",\n       \" 'low',\\n\",\n       \" 'low-income',\\n\",\n       \" 'lucky',\\n\",\n       \" 'machine',\\n\",\n       \" 'maintain',\\n\",\n       \" 'major',\\n\",\n       \" 'make',\\n\",\n       \" 'makes',\\n\",\n       \" 'making',\\n\",\n       \" 'mammograms',\\n\",\n       \" 'management',\\n\",\n       \" 'mandatory',\\n\",\n       \" 'marine',\\n\",\n       \" 'mark',\\n\",\n       \" 'market',\\n\",\n       \" 'materials',\\n\",\n       \" 'mayor',\\n\",\n       \" 'mays',\\n\",\n       \" 'mean',\\n\",\n       \" 'mean-spirited',\\n\",\n       \" 'means',\\n\",\n       \" 'measures',\\n\",\n       \" 'medicaid',\\n\",\n       \" 'medical',\\n\",\n       \" 'medically',\\n\",\n       \" 'medicare',\\n\",\n       \" 'medicine',\\n\",\n       \" 'medium',\\n\",\n       \" 'meet',\\n\",\n       \" 'meeting',\\n\",\n       \" 'mellat',\\n\",\n       \" 'members',\\n\",\n       \" 'men',\\n\",\n       \" 'menendez',\\n\",\n       \" 'message',\\n\",\n       \" 'messages',\\n\",\n       \" 'met',\\n\",\n       \" 'military',\\n\",\n       \" 'million',\\n\",\n       \" 'millions',\\n\",\n       \" 'minimal',\\n\",\n       \" 'minister',\\n\",\n       \" 'ministry',\\n\",\n       \" 'mission',\\n\",\n       \" 'mobile',\\n\",\n       \" 'modern',\\n\",\n       \" 'modification',\\n\",\n       \" 'money',\\n\",\n       \" 'month',\\n\",\n       \" 'moorestown',\\n\",\n       \" 'morning',\\n\",\n       \" 'mortgage',\\n\",\n       \" 'motaz',\\n\",\n       \" 'mother',\\n\",\n       \" 'motivated',\\n\",\n       \" 'multi-million',\\n\",\n       \" 'municipalities',\\n\",\n       \" 'nation',\\n\",\n       \" 'national',\\n\",\n       \" 'nationally',\\n\",\n       \" 'nearly',\\n\",\n       \" 'necessary',\\n\",\n       \" 'need',\\n\",\n       \" 'needed',\\n\",\n       \" 'neighborhood',\\n\",\n       \" 'new',\\n\",\n       \" 'newark',\\n\",\n       \" 'news',\\n\",\n       \" 'nioc',\\n\",\n       \" 'nitc',\\n\",\n       \" 'nonprofit',\\n\",\n       \" 'nonpublic',\\n\",\n       \" 'noose',\\n\",\n       \" 'north',\\n\",\n       \" 'northern',\\n\",\n       \" 'notes',\\n\",\n       \" 'nti',\\n\",\n       \" 'nuclear',\\n\",\n       \" 'number',\\n\",\n       \" 'nutley',\\n\",\n       \" 'obama',\\n\",\n       \" 'october',\\n\",\n       \" 'offered',\\n\",\n       \" 'office',\\n\",\n       \" 'officials',\\n\",\n       \" 'oil',\\n\",\n       \" 'older',\\n\",\n       \" 'ongoing',\\n\",\n       \" 'operating',\\n\",\n       \" 'operations',\\n\",\n       \" 'opportunities',\\n\",\n       \" 'opportunity',\\n\",\n       \" 'opposition',\\n\",\n       \" 'oppression',\\n\",\n       \" 'oral',\\n\",\n       \" 'order',\\n\",\n       \" 'organizations',\\n\",\n       \" 'oriented',\\n\",\n       \" 'outside',\\n\",\n       \" 'outstanding',\\n\",\n       \" 'overall',\\n\",\n       \" 'overwhelming',\\n\",\n       \" 'owner',\\n\",\n       \" 'owners',\\n\",\n       \" 'owners–',\\n\",\n       \" 'owning',\\n\",\n       \" 'p.m',\\n\",\n       \" 'pap',\\n\",\n       \" 'paperwork',\\n\",\n       \" 'paramilitary',\\n\",\n       \" 'parenthood',\\n\",\n       \" 'parents',\\n\",\n       \" 'participated',\\n\",\n       \" 'particularly',\\n\",\n       \" 'partisan',\\n\",\n       \" 'partnered',\\n\",\n       \" 'party',\\n\",\n       \" 'passage',\\n\",\n       \" 'passed',\\n\",\n       \" 'past',\\n\",\n       \" 'pastor',\\n\",\n       \" 'path',\\n\",\n       \" 'patients',\\n\",\n       \" 'pay',\\n\",\n       \" 'paying',\\n\",\n       \" 'payment',\\n\",\n       \" 'payroll',\\n\",\n       \" 'people',\\n\",\n       \" 'percent',\\n\",\n       \" 'performed',\\n\",\n       \" 'personal',\\n\",\n       \" 'physical',\\n\",\n       \" 'pioneering',\\n\",\n       \" 'pioneers',\\n\",\n       \" 'place',\\n\",\n       \" 'plan',\\n\",\n       \" 'planned',\\n\",\n       \" 'planning',\\n\",\n       \" 'pleased',\\n\",\n       \" 'policy',\\n\",\n       \" 'political',\\n\",\n       \" 'politically',\\n\",\n       \" 'politics',\\n\",\n       \" 'possible',\\n\",\n       \" 'post',\\n\",\n       \" 'potential',\\n\",\n       \" 'potentially',\\n\",\n       \" 'power',\\n\",\n       \" 'praised',\\n\",\n       \" 'praises',\\n\",\n       \" 'present',\\n\",\n       \" 'president',\\n\",\n       \" 'pressure',\\n\",\n       \" 'preventative',\\n\",\n       \" 'prevented',\\n\",\n       \" 'prevention',\\n\",\n       \" 'prices',\\n\",\n       \" 'primary',\\n\",\n       \" 'prime',\\n\",\n       \" 'principal',\\n\",\n       \" 'principles',\\n\",\n       \" 'prison',\\n\",\n       \" 'private',\\n\",\n       \" 'pro',\\n\",\n       \" 'pro-bono',\\n\",\n       \" 'problems',\\n\",\n       \" 'procedure',\\n\",\n       \" 'procedures',\\n\",\n       \" 'process',\\n\",\n       \" 'produced',\\n\",\n       \" 'products',\\n\",\n       \" 'profit',\\n\",\n       \" 'program',\\n\",\n       \" 'programs',\\n\",\n       \" 'prohibition',\\n\",\n       \" 'project',\\n\",\n       \" 'projects',\\n\",\n       \" 'promote',\\n\",\n       \" 'proposal',\\n\",\n       \" 'prosecute',\\n\",\n       \" 'prosecuting',\\n\",\n       \" 'prosperity',\\n\",\n       \" 'protect',\\n\",\n       \" 'proud',\\n\",\n       \" 'provide',\\n\",\n       \" 'provided',\\n\",\n       \" 'provider',\\n\",\n       \" 'providers',\\n\",\n       \" 'provides',\\n\",\n       \" 'providing',\\n\",\n       \" 'provision',\\n\",\n       \" 'provisions',\\n\",\n       \" 'public',\\n\",\n       \" 'purchase',\\n\",\n       \" 'putting',\\n\",\n       \" 'qualify',\\n\",\n       \" 'qualifying',\\n\",\n       \" 'quality',\\n\",\n       \" 'quickly',\\n\",\n       \" 'r-il',\\n\",\n       \" 'r-mi',\\n\",\n       \" 'race',\\n\",\n       \" 'raise',\\n\",\n       \" 'rank',\\n\",\n       \" 'rates',\\n\",\n       \" 'ratification',\\n\",\n       \" 'reach',\\n\",\n       \" 'read',\\n\",\n       \" 'ready',\\n\",\n       \" 'real',\\n\",\n       \" 'reason',\\n\",\n       \" 'reauthorization',\\n\",\n       \" 'rebuild',\\n\",\n       \" 'receive',\\n\",\n       \" 'received',\\n\",\n       \" 'receiving',\\n\",\n       \" 'recent',\\n\",\n       \" 'recently',\\n\",\n       \" 'recognize',\\n\",\n       \" 'recommended',\\n\",\n       \" 'reconsider',\\n\",\n       \" 'reduce',\\n\",\n       \" 'referrals',\\n\",\n       \" 'refinancing',\\n\",\n       \" 'refocus',\\n\",\n       \" 'reformed',\\n\",\n       \" 'reforms',\\n\",\n       \" 'refrigerated',\\n\",\n       \" 'refueling',\\n\",\n       \" 'regime',\\n\",\n       \" 'regimes',\\n\",\n       \" 'regulations',\\n\",\n       \" 'regulatory',\\n\",\n       \" 'rehabilitation',\\n\",\n       \" 'reinvigorate',\\n\",\n       \" 'rejected',\\n\",\n       \" 'relations',\\n\",\n       \" 'released',\\n\",\n       \" 'releasing',\\n\",\n       \" 'relief',\\n\",\n       \" 'relieve',\\n\",\n       \" 'relieved',\\n\",\n       \" 'religion',\\n\",\n       \" 'remains',\\n\",\n       \" 'remind',\\n\",\n       \" 'reminder',\\n\",\n       \" 'renal',\\n\",\n       \" 'rendered',\\n\",\n       \" 'repair',\\n\",\n       \" 'repeal',\\n\",\n       \" 'repeating',\\n\",\n       \" 'replicated',\\n\",\n       \" 'report',\\n\",\n       \" 'reporting',\\n\",\n       \" 'representative',\\n\",\n       \" 'reputation',\\n\",\n       \" 'requirement',\\n\",\n       \" 'requires',\\n\",\n       \" 'rescue',\\n\",\n       \" 'reserves',\\n\",\n       \" 'resources',\\n\",\n       \" 'respect',\\n\",\n       \" 'respecting',\\n\",\n       \" 'respond',\\n\",\n       \" 'responders',\\n\",\n       \" 'response',\\n\",\n       \" 'responsible',\\n\",\n       \" 'restore',\\n\",\n       \" 'restoring',\\n\",\n       \" 'restrictions',\\n\",\n       \" 'resulted',\\n\",\n       \" 'results',\\n\",\n       \" 'retirements',\\n\",\n       \" 'rev',\\n\",\n       \" 'revenue',\\n\",\n       \" 'reversed',\\n\",\n       \" 'reversing',\\n\",\n       \" 'revolutionary',\\n\",\n       \" 'rich',\\n\",\n       \" 'ridgewood',\\n\",\n       \" 'right',\\n\",\n       \" 'rights',\\n\",\n       \" 'risking',\\n\",\n       \" 'riverton',\\n\",\n       \" 'robert',\\n\",\n       \" 'roger',\\n\",\n       \" 'roll',\\n\",\n       \" 'rooted',\\n\",\n       \" 'roughly',\\n\",\n       \" 'roundtable',\\n\",\n       \" 'russia',\\n\",\n       \" 'rutgers',\\n\",\n       \" 's.1048',\\n\",\n       \" 'saderat',\\n\",\n       \" 'safe',\\n\",\n       \" 'safely',\\n\",\n       \" 'safer',\\n\",\n       \" 'safety',\\n\",\n       \" 'said',\\n\",\n       \" 'sake',\\n\",\n       \" 'sanction',\\n\",\n       \" 'sanctions',\\n\",\n       \" 'saudi',\\n\",\n       \" 'save',\\n\",\n       \" 'saved',\\n\",\n       \" 'saving',\\n\",\n       \" 'says',\\n\",\n       \" 'sba',\\n\",\n       \" 'school',\\n\",\n       \" 'science',\\n\",\n       \" 'scores',\\n\",\n       \" 'screening',\\n\",\n       \" 'screenings',\\n\",\n       \" 'sea',\\n\",\n       \" 'second',\\n\",\n       \" 'secretary',\\n\",\n       \" 'sector',\\n\",\n       \" 'sectors',\\n\",\n       \" 'secure',\\n\",\n       \" 'securing',\\n\",\n       \" 'securities',\\n\",\n       \" ...]\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vectorizer.get_feature_names()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Look at all those columns with number names! We didn't remove them in the tokenizer, so they're tokens. Do we want that? It depends! Sometimes the numbers in the text can be interesting information.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we try this again with tf-idf weighting.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>'01</th>\\n\",\n       \"      <th>'activist</th>\\n\",\n       \"      <th>'acts</th>\\n\",\n       \"      <th>'disappointing</th>\\n\",\n       \"      <th>'e-verify</th>\\n\",\n       \"      <th>'em</th>\\n\",\n       \"      <th>'liberty</th>\\n\",\n       \"      <th>'ll</th>\\n\",\n       \"      <th>'no</th>\\n\",\n       \"      <th>'re</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>…oil-drilling</th>\\n\",\n       \"      <th>…struggling</th>\\n\",\n       \"      <th>…tarp</th>\\n\",\n       \"      <th>…that</th>\\n\",\n       \"      <th>…the</th>\\n\",\n       \"      <th>…then</th>\\n\",\n       \"      <th>…there</th>\\n\",\n       \"      <th>…these</th>\\n\",\n       \"      <th>…this</th>\\n\",\n       \"      <th>…we</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 27660 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   '01  'activist  'acts  'disappointing  'e-verify  'em  'liberty  'll  'no  \\\\\\n\",\n       \"0  0.0        0.0    0.0             0.0        0.0  0.0       0.0  0.0  0.0   \\n\",\n       \"1  0.0        0.0    0.0             0.0        0.0  0.0       0.0  0.0  0.0   \\n\",\n       \"2  0.0        0.0    0.0             0.0        0.0  0.0       0.0  0.0  0.0   \\n\",\n       \"3  0.0        0.0    0.0             0.0        0.0  0.0       0.0  0.0  0.0   \\n\",\n       \"4  0.0        0.0    0.0             0.0        0.0  0.0       0.0  0.0  0.0   \\n\",\n       \"\\n\",\n       \"   're ...   …oil-drilling  …struggling  …tarp  …that  …the  …then  …there  \\\\\\n\",\n       \"0  0.0 ...             0.0          0.0    0.0    0.0   0.0    0.0     0.0   \\n\",\n       \"1  0.0 ...             0.0          0.0    0.0    0.0   0.0    0.0     0.0   \\n\",\n       \"2  0.0 ...             0.0          0.0    0.0    0.0   0.0    0.0     0.0   \\n\",\n       \"3  0.0 ...             0.0          0.0    0.0    0.0   0.0    0.0     0.0   \\n\",\n       \"4  0.0 ...             0.0          0.0    0.0    0.0   0.0    0.0     0.0   \\n\",\n       \"\\n\",\n       \"   …these  …this  …we  \\n\",\n       \"0     0.0    0.0  0.0  \\n\",\n       \"1     0.0    0.0  0.0  \\n\",\n       \"2     0.0    0.0  0.0  \\n\",\n       \"3     0.0    0.0  0.0  \\n\",\n       \"4     0.0    0.0  0.0  \\n\",\n       \"\\n\",\n       \"[5 rows x 27660 columns]\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vectorizer = TfidfVectorizer(stop_words='english', tokenizer=tokenize)\\n\",\n    \"\\n\",\n    \"matrix = vectorizer.fit_transform(pr.text)\\n\",\n    \"\\n\",\n    \"# The easiest way to see what happenned is to make a dataframe\\n\",\n    \"tfidf = pd.DataFrame(matrix.toarray(), columns=vectorizer.get_feature_names())\\n\",\n    \"tfidf.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now let's look at the top words in the press release again. The stop words have gone.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"('nti', 0.56487288350283282)\\n\",\n      \"('transit', 0.30992020013592608)\\n\",\n      \"('transportation', 0.23490806362768965)\\n\",\n      \"('training', 0.20020090792648149)\\n\",\n      \"('rutgers', 0.16379220882186274)\\n\",\n      \"('4.3', 0.15701624958670632)\\n\",\n      \"('institute', 0.15030236459784593)\\n\",\n      \"('public', 0.13468667783892418)\\n\",\n      \"('efficient', 0.13247842020300446)\\n\",\n      \"('workers', 0.11513111737966622)\\n\",\n      \"('grant', 0.099558443055257573)\\n\",\n      \"('award', 0.098396096503811856)\\n\",\n      \"('critical', 0.095532368614887939)\\n\",\n      \"('larrousse.nti', 0.091692332362515894)\\n\",\n      \"('premiere', 0.086826433625999941)\\n\",\n      \"('industry', 0.083008913035465287)\\n\",\n      \"('lautenberg', 0.081471107009427737)\\n\",\n      \"('interconnected', 0.080696126214690411)\\n\",\n      \"('element', 0.080696126214690411)\\n\",\n      \"('1991', 0.080696126214690411)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print_sorted_vector(tfidf.iloc[212])\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Comapre this to the headline:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Sentence(\\\"Menendez and Lautenberg Applaud USDOT’s $4.3 Million Award to National Transit Institute at Rutgers\\n\",\n       \"                    \\n\",\n       \"                            Funding will provide job training and education for public transportation workers\\n\",\n       \"                    \\n\",\n       \"                      August 3, 2011\\n\",\n       \"                     WASHINGTON, D.C. – Today, U.S.\\\")\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"doc.sentences[0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Finding similar documents\\n\",\n    \"Finally, let's use tf-idf to summarize a group of documents. We'll do this by simply summing together the vectors for each document. Dividing by the number of documents will give us an \\\"average\\\" vector, but just a simple sum will point in the same direction (the ratios of the components will be the same.) You can think of this as choosing a direction in the middle of all these documents. \\n\",\n    \"\\n\",\n    \"So what do the first 100 documents discuss?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"('new', 4.6380084052119663)\\n\",\n      \"('jersey', 4.3405154266179391)\\n\",\n      \"('menendez', 3.3653048234731422)\\n\",\n      \"('iran', 3.3369335810395864)\\n\",\n      \"('program', 2.8096238918970617)\\n\",\n      \"('tax', 2.7953701626577092)\\n\",\n      \"('2012', 2.7558566301624596)\\n\",\n      \"('funding', 2.7341462492374515)\\n\",\n      \"('million', 2.5937783756758925)\\n\",\n      \"('veterans', 2.5615692819926918)\\n\",\n      \"('senator', 2.4405760771314737)\\n\",\n      \"('safety', 2.3674326591909973)\\n\",\n      \"('year', 2.284279574844704)\\n\",\n      \"('2011', 2.2828391557370171)\\n\",\n      \"('federal', 2.2330684973455455)\\n\",\n      \"('lautenberg', 2.1523007201349902)\\n\",\n      \"('senate', 2.1362927146719057)\\n\",\n      \"('families', 2.098229232266049)\\n\",\n      \"('communities', 1.9405729234847227)\\n\",\n      \"('iranian', 1.864004829716446)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"docs = tfidf.iloc[:100,:]\\n\",\n    \"total = docs.sum(axis=0)\\n\",\n    \"print_sorted_vector(total)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Another way we can use these document vectors is to compute the similarity between them.  Conveniently, the TfidfVectorizer already outputs normalized vectors so it's easy to calculate similarity just by taking a dot product.  Two identical documents have similarity 1 and two documents with no words in common have similarity 0. We will reverse this to be \\\"distance\\\" so that identical documents have distance 0, and we can look for document pairs which are \\\"closest\\\" in the vector space.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 42,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def doc_distance(a_vec,b_vec):\\n\",\n    \"    # First we have to compute similarity. The idea is the same as doc_similarity, but\\n\",\n    \"    # because we are using arrays and not dictionaries, we can just multiply all the elements \\n\",\n    \"    # together and add the sum. This is what numpy's dot function does\\n\",\n    \"    similarity = a_vec.dot(b_vec)\\n\",\n    \"\\n\",\n    \"    # Because the vectors are already normalized, similarity will be 1 if equal, 0 if disjoint\\n\",\n    \"    # We want things the other way around\\n\",\n    \"    return 1-similarity\\n\",\n    \"\\n\",\n    \"# helpful little function for distance between documents i and j\\n\",\n    \"def dij(i,j):\\n\",\n    \"    return doc_distance(tfidf.iloc[i], tfidf.iloc[j])\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.85775589439211042\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"dij(100,200)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"One we thing we can do with this is find the documents that are most simmilar to any particular document. This is an example-driven search engine. Actually what we'll do here is find the distance to every other document, then sort. We'll use the same document as above for the query.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[(212, -4.4408920985006262e-16),\\n\",\n       \" (637, 0.43711053078542184),\\n\",\n       \" (5, 0.57345588413445436),\\n\",\n       \" (11, 0.58115728608200345),\\n\",\n       \" (282, 0.68107726734169893)]\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"query_doc = 212\\n\",\n    \"\\n\",\n    \"# create a list of (document index, distance to that document) tuples \\n\",\n    \"closest = [(i, dij(query_doc, i)) for i in range(len(tfidf))]\\n\",\n    \"\\n\",\n    \"# sort by the second element of the tuple, that is, the distance\\n\",\n    \"closest.sort(key=lambda x: x[1])\\n\",\n    \"\\n\",\n    \"# top 5 closest?\\n\",\n    \"closest[:5]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Unsurprisingly, document 212 is closest to itself (that first distance should be a 0, but floating point dirt prevents it). Let's take a look at the others.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"SENATORS MENENDEZ AND LAUTENBERG ANNOUNCE $4 MILLION FOR RUTGERS’ NATIONAL TRANSIT INSTITUTE\\n\",\n      \"                    \\n\",\n      \"                      June 3, 2010\\n\",\n      \"                     WASHINGTON – Today, U.S. Senators Robert Menendez (D-NJ) and Frank R. Lautenberg (D-NJ) announced that the Department of Transportation has awarded $4,300,000 in funds to the National Transit Institute (NTI). The Institute was established in 1991 under the Intermodal Surface Transportation Efficiency Act (ISTEA) with the objective of developing, promoting, and delivering quality training, education, and clearinghouse services for the public transit industry. Its primary objective is to develop, deliver, and promote quality programs and materials via cooperative partnerships with industry, government, institutions, and associations around the country. “As we know well in New Jersey, public transit helps families save time and money and helps clear the air we breathe,” said Menendez. “An emphasis on public transit will be critical to rebuilding our economy because of its potential to create new jobs, cut energy costs and traffic congestion and reduce pollution. This federal investment will not only help support a renewed focus on public transit, but it will help New Jersey and Rutgers continue to lead the way.” “As more people across the country are taking mass transit than ever before, it’s critical that we have the most up to date research to keep our transit systems moving safely and efficiently,” Lautenberg said. “This federal funding will continue the vital research that the National Transit Institute has been conducting since 1991.”  Since its founding in 1991, NTI has developed 149 courses and other training materials in collaboration with the Federal Transit Administration (FTA) and the public transit industry in response to their needs. New courses are developed every year to adapt to changes in the industry. In recent years, NTI modernized its educational approach to include the use of visual digital resources outside the classroom. Including the current fiscal year, NTI has been awarded a total of $79.7 million in federal funds since it was established in 1991. For more information about the National Transit Institute, click here: http://www.ntionline.com/index.asp                                                               ###\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(pr.text[closest[1][0]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Transportation Subcommittee Chair Says Bipartisan Senate Transit Bill will  Deliver $63 Million More Per Year to NJ\\n\",\n      \"                    \\n\",\n      \"                            More funding means more jobs, easier travel\\n\",\n      \"                    \\n\",\n      \"                      February 2, 2012\\n\",\n      \"                     WASHINGTON – Following today’s approval by the Senate Banking Committee of the Federal Public Transportation Act of 2012, U.S. Senator Robert Menendez (D-NJ), Chairman of the Subcommittee on Housing, Transportation and Community Development, called the bipartisan legislation “an incredible boon to New Jersey.”  By cutting waste and eliminating earmarks, the bill will provide New Jersey $519 million in federal transit funding, an increase of over $63 million per year.  If passed by the full Senate and House, New Jersey would receive more federal transit funding per year than ever before -- without increased overall federal spending.\\n\",\n      \"\\n\",\n      \"“For over two years now, I have worked across party lines to help craft a bill that will invest in our infrastructure and improve public transportation for New Jersey families and commuters,”“This bill provides our state more federal transit funding than it has ever received before.   What does more funding mean?  It means more resources to protect and create good paying jobs and more funds to make the improvements we need to ease congestion and delays.”    said Menendez. \\n\",\n      \"\\n\",\n      \"Menendez also applauded the inclusion of a number of provisions he championed including:\\n\",\n      \"A New $20 Million Transit Oriented Development Planning Program.  The $20 million program will help communities create more livable communities by planning new development around new transit hubs.  The provision is based on similar language in Senator Menendez’s Livable communities Act, and in New Jersey would work in tandem with the state’s Transit Village program.\\n\",\n      \"Increased Funding for the National Transit Institute at Rutgers (NTI) [$5million]. NTI provides training, education, and clearinghouse services in support of public transportation and quality of life for the entire nation.  In recent years this important national program has seen its funding slashed, despite the increased need for training in the face of an ongoing wave of retirements in the industry. This bill will raise NTI’s funding to $5 million per year from $3.8 million.\\n\",\n      \"Increased Clean Fuels Program Funding [From $51.5M to $65M].  This competitive program for clean fuel transit vehicles and for refueling infrastructure will help agencies switch from dirty, expensive fuels, to cleaner, cheaper fuels.  This will help improve air quality and allow transit agencies to untether themselves from volatile oil prices.  \\n\",\n      \"Increased Funding for Transportation for Seniors and the Disabled [NJ Funding Goes From $6.5 M to $7.8 M]. With demand for senior transportation increasing, the bill is able to meet that demand with increased resources.\\n\",\n      \"Streamlined and Reformed “New Starts” Process. The bill streamlines the process for the federal approval of new projects and allows projects designed to increase capacity on existing systems rather than just allow new systems or new lines.  Older systems such as New Jersey’s that are at capacity could, for instance, use the program to add a new station, add another track, or purchase bigger train cars. \\n\",\n      \"###\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(pr.text[closest[2][0]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Menendez: Bipartisan Senate Transit Bill Will Deliver NJ over $62 Million More Per Year\\n\",\n      \"                    \\n\",\n      \"                            Chair of Banking’s Transit Subcommittee Delivers Urgently Needed Transit Funding in a Flat Funded Bill\\n\",\n      \"                    \\n\",\n      \"                      January 30, 2012\\n\",\n      \"                     WASHINGTON - Senator Robert Menendez (D-NJ) today announced that Senate Banking Committee’s transit reauthorization mark, which he helped craft, will be a boon to New Jersey.  By cutting waste and eliminating earmarks, the bill will provide New Jersey $519 million in federal transit funding, an increase of over $62 million per year.  If passed, New Jersey would receive more federal transit funding per year than ever before and without increased overall federal spending.\\n\",\n      \"\\n\",\n      \"“For over two years now, we have worked to craft a bill to improve public transportation in New Jersey and across America,” said Menendez, who worked closely with former Chairman Dodd, Chairman Johnson, and Ranking Member Shelby on the bill.  “By wringing out waste and earmarks, the bill provides New Jersey with more federal transit funding than it has ever received before, and does so when NJ Transit desperately needs money to address delays and rider complaints.” \\n\",\n      \"\\n\",\n      \"The bill also contains a number of programs the Senator championed including:\\n\",\n      \"A New $20 Million Transit Oriented Development Planning Program.  The $20 million program will help communities create more livable communities by planning new development around new transit hubs.  The provision is based on similar language in Senator Menendez’s Livable communities Act, and in New Jersey would work in tandem with the state’s Transit Village program.\\n\",\n      \"Increased Funding for the National Transit Institute at Rutgers (NTI) [$5million]. NTI provides training, education, and clearinghouse services in support of public transportation and quality of life for the entire nation.  In recent years this important national program has seen its funding slashed, despite the increased need for training in the face of an ongoing wave of retirements in the industry. This bill will raise NTI’s funding to $5 million per year from $3.8 million.\\n\",\n      \"Increased Clean Fuels Program Funding [From $51.5M to $65M].  This competitive program for clean fuel transit vehicles and for refueling infrastructure will help agencies switch from dirty, expensive fuels, to cleaner, cheaper fuels.  This will help improve air quality and allow transit agencies to untether themselves from volatile oil prices.  \\n\",\n      \"Increased Funding for Transportation for Seniors and the Disabled [NJ Funding Goes From $6.5 M to $7.8 M]. With demand for senior transportation increasing, the bill is able to meet that demand with increased resources.\\n\",\n      \"Streamlined and Reformed “New Starts” Process. The bill streamlines the process for the federal approval of new projects and allows projects designed to increase capacity on existing systems rather than just allow new systems or new lines.  Older systems such as New Jersey’s that are at capacity could, for instance, use the program to add a new station, add another track, or purchase bigger train cars. \\n\",\n      \"\\n\",\n      \" “With gasoline prices expected to spike again this summer, we need to invest in public transportation more than ever,” said Menendez.  “This bill stretches the federal dollar further and puts more money directly into our transit systems.  Hopefully, we will pass this bill and provide transit agencies with the resources they need to manage projected ridership increases this summer.”\\n\",\n      \" ###\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(pr.text[closest[3][0]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"These are all on the subject of transit funding!\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-2/week-2-1-homework.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Lede Algorithms -- Assignment 2\\n\",\n    \"\\n\",\n    \"In this assignment you will use all your text analysis skills to analyze the U.S. State of the Union speeches in the 20th century. \\n\",\n    \"\\n\",\n    \"First, load `state-of-the-union.csv`. This is is a standard CSV file with one speech per row. There are two columns: the year of the speech, and the text of the speech. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Some stuff you'll need\\n\",\n    \"import pandas as pd\\n\",\n    \"from textblob import TextBlob\\n\",\n    \"from sklearn.feature_extraction.text import TfidfVectorizer\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# load 'state-of-the-union.csv'\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We will work with ony those speeches in the 20th century, so start by filtering out only the rows with a year between 1900 and 1999\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The first step in your analysis task will be to tokenize each document in this set and create a dataframe of tf-idf vectors. We're going to need to tokenize first, so write (or cut and paste!) a tokenizer function that takes a string and returns a list of standardized tokens.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Good stuff. Now use this to create a matrix of tf-idf vectors for the document set.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# tfidf = something\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"You're probably going to want a way to print out the most highly weighted terms this as well, so we'll use print_sorted_vector from the lesson notebook:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def print_sorted_vector(v):\\n\",\n    \"    # this \\\"lambda\\\" thing is an anonymous function, google me to unluck bonus coding knowledge\\n\",\n    \"    sorted_list = sorted(v.items(), key=lambda x: (x[1],x[0]), reverse=True) \\n\",\n    \"    sorted_list = sorted_list[:20]\\n\",\n    \"    print('\\\\n'.join([str(x) for x in sorted_list]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Print out a few of the State of The Union vectors for individual speeches to get a sense of what's happening here.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now sum the vectors for each decade, and print out the results. Do you see any themes? Can you connect the terms to major historical events? (wars, the great depression, assassinations, the civil rights movement, Watergate…)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Which two decades are most similar, according to the cosine similarity of their average vectors? You will need to use a double loop that compares every pair of decades and finds the pair with the smallest distance.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Write a 500 word (max) article on what U.S. presidents discussed in their SOTU speeches in the 20th century. You should obviously use your tf-idf analysis as a primary source *but* you will not be able to complete this without actually reading some of the speeches, and comparing them to other historical references.\\n\",\n    \"\\n\",\n    \"Turn in this notebook, with your article below.\\n\",\n    \"    \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"(your SOTU article here)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-2/week-2-2-class-empty.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Clustering\\n\",\n    \"\\n\",\n    \"Last class we studied document vectors and how to find key words and similar documents. What else can we do with vectors? We can cluster them to find natural groups or categories, or visualize them directly by projecting them to 2D or 3D space.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"from textblob import TextBlob\\n\",\n    \"from sklearn.feature_extraction.text import TfidfVectorizer\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We'll start by getting tf-idf vectors for the Menendez press releases, like we did last class.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1530\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pr = pd.read_csv('menendez-press-releases.csv')\\n\",\n    \"len(pr)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# need a tokenizer\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# create tf-idf vectors\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We're going to use a clustering algorithm called k-means. Here's an interactive demo of how it works.\\n\",\n    \"See this [interactive demo](http://web.stanford.edu/class/ee103/visualizations/kmeans/kmeans.html) or [this one](https://www.naftaliharris.com/blog/visualizing-k-means-clustering/).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.cluster import KMeans\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# cluster\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Ok, let's see what's in each cluster!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def print_sorted_vector(v):\\n\",\n    \"    # this \\\"lambda\\\" thing is an anonymous function, google me to unluck bonus coding knowledge\\n\",\n    \"    sorted_list = sorted(v.items(), key=lambda x: (x[1],x[0]), reverse=True) \\n\",\n    \"    sorted_list = sorted_list[:10]\\n\",\n    \"    print('\\\\n'.join([str(x) for x in sorted_list]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we're going to print out the top words of the center vector of each cluster, to see how the k-means algorithm did.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# print cluster centroids\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"In fact, Overview uses k-means in its \\\"topic tree\\\" visualization\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Visualizing clusters to understand politics\\n\",\n    \"This is a fairly literal translation of a [previous post](http://www.compjournalism.com/?p=13) of mine (it was done in  R at the time). We're going to load up the voting record of the U.K. House of Lords, turn each MP's voting record into a vector, and see how all these politicians relate in this abstract ideological space.\\n\",\n    \"\\n\",\n    \"The daia is circa 2012, because they had an interesting coalition government at the time. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.decomposition import PCA\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from mpl_toolkits.mplot3d import Axes3D\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(613, 102)\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"votes = pd.read_csv('uk-lords-votes.csv')\\n\",\n    \"votes.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# print out this votes matrix\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is data I processed earlier, and you can think of it as a template for the format you will need to get your data into to do your homework. Each row is one member of parliament. Each of the numbered columns is one vote, where 1 means aye, 0 means abstain, and -1 means nay. The `party` column indicates which political party that MP belonged to at the time.\\n\",\n    \"\\n\",\n    \"If you're interested in the original data, including the names of these politicians and what they were voting on, you can find it all [here](http://www.compjournalism.com/?p=13).\\n\",\n    \"\\n\",\n    \"We'll want to turn the list of parties in to a list of colors.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# compute the color that each MP should be, based on their party\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now that we've set everything up, we're ready to start projecting. We can view at most three dimensions at once with our puny human visual system. The simplest projection is just to pick three dimensions of our vectors and plot them.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 3d scatterplot of three votes\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Not very interesting. All of vote coordinates are in [-1,0,1] so no matter which votes (dimensions) we pick we can only get the corners, edges, and center of a cube. Plus, all 613 MPs overlap each other -- many MPs voted the same way on this set of three votes -- so we only see a few dots.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Instead, we're going to let the computer pick the right projection from this wacky high dimensional space to two dimensions. We are using PCA, \\\"principal components analysis,\\\" which tries to find a direction to project that gives maximum separation of all the points. This dimension doesn't have to be aligned to any of our dimension axes -- PCA will \\\"rotate\\\" the points in high dimensional space until they are as spread out as possible.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# PCA to 2D\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 2D scatterplot\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can actually project down to any number of dimensions. More than 3 but less than the original 100 can be useful for some data processing operations.) Here, we'll project down to 3 and take a look at our voting clusters in glorious 3D.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# PCA to 3D\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 3D scatterplot\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-2/week-2-2-class.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Clustering\\n\",\n    \"\\n\",\n    \"Last class we studied document vectors and how to find key words and similar documents. What else can we do with vectors? We can cluster them to find natural groups or categories, or visualize them directly by projecting them to 2D or 3D space.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"from textblob import TextBlob\\n\",\n    \"from sklearn.feature_extraction.text import TfidfVectorizer\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We'll start by getting tf-idf vectors for the Menendez press releases, like we did last class.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1530\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pr = pd.read_csv('menendez-press-releases.csv')\\n\",\n    \"len(pr)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def tokenize(s):\\n\",\n    \"    blob = TextBlob(s.lower())\\n\",\n    \"    words = [token for token in blob.words if len(token)>2]\\n\",\n    \"    return words\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>'01</th>\\n\",\n       \"      <th>'activist</th>\\n\",\n       \"      <th>'acts</th>\\n\",\n       \"      <th>'disappointing</th>\\n\",\n       \"      <th>'e-verify</th>\\n\",\n       \"      <th>'em</th>\\n\",\n       \"      <th>'liberty</th>\\n\",\n       \"      <th>'ll</th>\\n\",\n       \"      <th>'no</th>\\n\",\n       \"      <th>'re</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>…oil-drilling</th>\\n\",\n       \"      <th>…struggling</th>\\n\",\n       \"      <th>…tarp</th>\\n\",\n       \"      <th>…that</th>\\n\",\n       \"      <th>…the</th>\\n\",\n       \"      <th>…then</th>\\n\",\n       \"      <th>…there</th>\\n\",\n       \"      <th>…these</th>\\n\",\n       \"      <th>…this</th>\\n\",\n       \"      <th>…we</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 27660 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   '01  'activist  'acts  'disappointing  'e-verify  'em  'liberty  'll  'no  \\\\\\n\",\n       \"0  0.0        0.0    0.0             0.0        0.0  0.0       0.0  0.0  0.0   \\n\",\n       \"1  0.0        0.0    0.0             0.0        0.0  0.0       0.0  0.0  0.0   \\n\",\n       \"2  0.0        0.0    0.0             0.0        0.0  0.0       0.0  0.0  0.0   \\n\",\n       \"3  0.0        0.0    0.0             0.0        0.0  0.0       0.0  0.0  0.0   \\n\",\n       \"4  0.0        0.0    0.0             0.0        0.0  0.0       0.0  0.0  0.0   \\n\",\n       \"\\n\",\n       \"   're ...   …oil-drilling  …struggling  …tarp  …that  …the  …then  …there  \\\\\\n\",\n       \"0  0.0 ...             0.0          0.0    0.0    0.0   0.0    0.0     0.0   \\n\",\n       \"1  0.0 ...             0.0          0.0    0.0    0.0   0.0    0.0     0.0   \\n\",\n       \"2  0.0 ...             0.0          0.0    0.0    0.0   0.0    0.0     0.0   \\n\",\n       \"3  0.0 ...             0.0          0.0    0.0    0.0   0.0    0.0     0.0   \\n\",\n       \"4  0.0 ...             0.0          0.0    0.0    0.0   0.0    0.0     0.0   \\n\",\n       \"\\n\",\n       \"   …these  …this  …we  \\n\",\n       \"0     0.0    0.0  0.0  \\n\",\n       \"1     0.0    0.0  0.0  \\n\",\n       \"2     0.0    0.0  0.0  \\n\",\n       \"3     0.0    0.0  0.0  \\n\",\n       \"4     0.0    0.0  0.0  \\n\",\n       \"\\n\",\n       \"[5 rows x 27660 columns]\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vectorizer = TfidfVectorizer(stop_words='english', tokenizer=tokenize)\\n\",\n    \"matrix = vectorizer.fit_transform(pr.text)\\n\",\n    \"\\n\",\n    \"# The easiest way to see what happenned is to make a dataframe\\n\",\n    \"tfidf = pd.DataFrame(matrix.toarray(), columns=vectorizer.get_feature_names())\\n\",\n    \"tfidf.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We're going to use a clustering algorithm called k-means. Here's an interactive demo of how it works.\\n\",\n    \"See this [interactive demo](http://web.stanford.edu/class/ee103/visualizations/kmeans/kmeans.html) or [this one](https://www.naftaliharris.com/blog/visualizing-k-means-clustering/).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.cluster import KMeans\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"KMeans(algorithm='auto', copy_x=True, init='k-means++', max_iter=300,\\n\",\n       \"    n_clusters=5, n_init=10, n_jobs=1, precompute_distances='auto',\\n\",\n       \"    random_state=None, tol=0.0001, verbose=0)\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"number_of_clusters=5\\n\",\n    \"km = KMeans(n_clusters=number_of_clusters)\\n\",\n    \"km.fit(matrix)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Ok, let's see what's in each cluster!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[  3.94584776e-04,   0.00000000e+00,   0.00000000e+00, ...,\\n\",\n       \"          0.00000000e+00,   0.00000000e+00,   0.00000000e+00],\\n\",\n       \"       [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00, ...,\\n\",\n       \"          0.00000000e+00,   0.00000000e+00,   0.00000000e+00],\\n\",\n       \"       [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00, ...,\\n\",\n       \"          0.00000000e+00,   0.00000000e+00,   0.00000000e+00],\\n\",\n       \"       [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00, ...,\\n\",\n       \"          4.04501121e-04,   0.00000000e+00,   0.00000000e+00],\\n\",\n       \"       [  0.00000000e+00,   1.27004309e-04,   1.12432930e-04, ...,\\n\",\n       \"          0.00000000e+00,   4.66730801e-05,   4.11145223e-05]])\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"km.cluster_centers_\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([2, 1, 4, 4, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 3, 0, 1, 4, 4, 0, 1,\\n\",\n       \"       1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 0, 1, 2, 1, 1, 4, 0, 4, 0, 1,\\n\",\n       \"       4, 1, 4, 4, 4, 1, 1, 1, 2, 4, 4, 4, 4, 2, 0, 1, 4, 4, 0, 4, 1, 4, 4,\\n\",\n       \"       4, 4, 4, 4, 1, 4, 4, 0, 1, 4, 4, 4, 1, 4, 1, 4, 1, 1, 4, 4, 1, 4, 1,\\n\",\n       \"       1, 1, 1, 1, 1, 4, 1, 4, 1, 4, 1, 0, 0, 1, 4, 4, 1, 1, 4, 1, 1, 4, 1,\\n\",\n       \"       4, 4, 4, 3, 1, 4, 4, 3, 1, 0, 1, 4, 4, 4, 3, 4, 4, 4, 4, 4, 1, 1, 4,\\n\",\n       \"       4, 4, 4, 1, 4, 1, 1, 4, 1, 1, 3, 4, 4, 3, 4, 4, 4, 0, 4, 4, 4, 4, 4,\\n\",\n       \"       4, 4, 1, 3, 4, 4, 4, 4, 4, 4, 1, 1, 4, 3, 1, 4, 4, 2, 4, 4, 1, 1, 0,\\n\",\n       \"       3, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 0, 3, 4, 4, 1], dtype=int32)\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"km.labels_[100:300]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def print_sorted_vector(v):\\n\",\n    \"    # this \\\"lambda\\\" thing is an anonymous function, google me to unluck bonus coding knowledge\\n\",\n    \"    sorted_list = sorted(v.items(), key=lambda x: (x[1],x[0]), reverse=True) \\n\",\n    \"    sorted_list = sorted_list[:10]\\n\",\n    \"    print('\\\\n'.join([str(x) for x in sorted_list]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we're going to print out the top words of the center vector of each cluster, to see how the k-means algorithm did.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\",\n      \"Cluster 0\\n\",\n      \"('health', 0.22269054692969764)\\n\",\n      \"('care', 0.12920699137074779)\\n\",\n      \"('insurance', 0.11370807489722615)\\n\",\n      \"('children', 0.10263712321662957)\\n\",\n      \"('autism', 0.077999018812944271)\\n\",\n      \"('coverage', 0.065287740807613986)\\n\",\n      \"('new', 0.060851574939277071)\\n\",\n      \"('jersey', 0.051744866394044464)\\n\",\n      \"('services', 0.045202703632608615)\\n\",\n      \"('families', 0.040678781179253699)\\n\",\n      \"\\n\",\n      \"Cluster 1\\n\",\n      \"('new', 0.07452921417713998)\\n\",\n      \"('jersey', 0.070285308273760796)\\n\",\n      \"('funding', 0.056952312641533907)\\n\",\n      \"('lautenberg', 0.055101578196303437)\\n\",\n      \"('federal', 0.039205096111630901)\\n\",\n      \"('menendez', 0.037148081111272241)\\n\",\n      \"('transportation', 0.036173209650286385)\\n\",\n      \"('million', 0.036041822566089496)\\n\",\n      \"('safety', 0.035767165096478315)\\n\",\n      \"('program', 0.035493992255988628)\\n\",\n      \"\\n\",\n      \"Cluster 2\\n\",\n      \"('energy', 0.16740773314993695)\\n\",\n      \"('tax', 0.072781038952461657)\\n\",\n      \"('credit', 0.063657595304101575)\\n\",\n      \"('fees', 0.063071982473185059)\\n\",\n      \"('efficiency', 0.055014497895632175)\\n\",\n      \"('card', 0.051961317174771808)\\n\",\n      \"('solar', 0.048634474952924944)\\n\",\n      \"('menendez', 0.041124081443403876)\\n\",\n      \"('consumers', 0.038947686180515327)\\n\",\n      \"('new', 0.035992512574307856)\\n\",\n      \"\\n\",\n      \"Cluster 3\\n\",\n      \"('oil', 0.34583511330665734)\\n\",\n      \"('drilling', 0.11844188658667704)\\n\",\n      \"('companies', 0.10737198723469427)\\n\",\n      \"('gas', 0.085180469463841849)\\n\",\n      \"('spill', 0.076090043884020797)\\n\",\n      \"('big', 0.070869594279349912)\\n\",\n      \"('prices', 0.066015430248417759)\\n\",\n      \"('energy', 0.050456631011035834)\\n\",\n      \"('coast', 0.046149372036402042)\\n\",\n      \"('billion', 0.044654566365810819)\\n\",\n      \"\\n\",\n      \"Cluster 4\\n\",\n      \"('menendez', 0.03435989160737004)\\n\",\n      \"('senator', 0.025072777888628519)\\n\",\n      \"('new', 0.021014932012585134)\\n\",\n      \"('senate', 0.019877153565195361)\\n\",\n      \"('u.s', 0.019179166604099983)\\n\",\n      \"('foreign', 0.01876034977535726)\\n\",\n      \"('statement', 0.018333762954208657)\\n\",\n      \"('president', 0.017287176622506287)\\n\",\n      \"('government', 0.016539040175733637)\\n\",\n      \"('united', 0.015627809357656754)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"centroids = pd.DataFrame(km.cluster_centers_, columns=vectorizer.get_feature_names())\\n\",\n    \"for i in range(number_of_clusters):\\n\",\n    \"    print(f'\\\\nCluster {i}')\\n\",\n    \"    print_sorted_vector(centroids.iloc[i])\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"In fact, Overview uses k-means in its \\\"topic tree\\\" visualization\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Visualizing clusters to understand politics\\n\",\n    \"This is a fairly literal translation of a [previous post](http://www.compjournalism.com/?p=13) of mine (it was done in  R at the time). We're going to load up the voting record of the U.K. House of Lords, turn each MP's voting record into a vector, and see how all these politicians relate in this abstract ideological space.\\n\",\n    \"\\n\",\n    \"The daia is circa 2012, because they had an interesting coalition government at the time. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.decomposition import PCA\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from mpl_toolkits.mplot3d import Axes3D\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(613, 102)\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"votes = pd.read_csv('uk-lords-votes.csv')\\n\",\n    \"votes.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>mpid</th>\\n\",\n       \"      <th>party</th>\\n\",\n       \"      <th>1530</th>\\n\",\n       \"      <th>1531</th>\\n\",\n       \"      <th>1532</th>\\n\",\n       \"      <th>1533</th>\\n\",\n       \"      <th>1534</th>\\n\",\n       \"      <th>1535</th>\\n\",\n       \"      <th>1536</th>\\n\",\n       \"      <th>1537</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>1620</th>\\n\",\n       \"      <th>1621</th>\\n\",\n       \"      <th>1622</th>\\n\",\n       \"      <th>1623</th>\\n\",\n       \"      <th>1624</th>\\n\",\n       \"      <th>1625</th>\\n\",\n       \"      <th>1626</th>\\n\",\n       \"      <th>1627</th>\\n\",\n       \"      <th>1628</th>\\n\",\n       \"      <th>1629</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>mpid100001</td>\\n\",\n       \"      <td>Con</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>mpid100002</td>\\n\",\n       \"      <td>XB</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>mpid100003</td>\\n\",\n       \"      <td>Lab</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>mpid100004</td>\\n\",\n       \"      <td>LDem</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>mpid100006</td>\\n\",\n       \"      <td>Lab</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 102 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"         mpid party  1530  1531  1532  1533  1534  1535  1536  1537  ...   \\\\\\n\",\n       \"0  mpid100001   Con     0     1     0     1     1     0     0     0  ...    \\n\",\n       \"1  mpid100002    XB     0     1     0     1     1     0     0     0  ...    \\n\",\n       \"2  mpid100003   Lab    -1     0     0    -1    -1    -1    -1    -1  ...    \\n\",\n       \"3  mpid100004  LDem     1     1     1    -1    -1     0     1     0  ...    \\n\",\n       \"4  mpid100006   Lab    -1    -1     0     1    -1    -1    -1     0  ...    \\n\",\n       \"\\n\",\n       \"   1620  1621  1622  1623  1624  1625  1626  1627  1628  1629  \\n\",\n       \"0     0     1     0     0     0     1     0    -1    -1     1  \\n\",\n       \"1     0     1     0     0    -1     1     0    -1     0     0  \\n\",\n       \"2     0     0     0     0     0     0     0     0     0     0  \\n\",\n       \"3     1    -1    -1     0    -1     1    -1     0     0    -1  \\n\",\n       \"4     0     0     0    -1    -1    -1    -1     0     0    -1  \\n\",\n       \"\\n\",\n       \"[5 rows x 102 columns]\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"votes.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is data I processed earlier, and you can think of it as a template for the format you will need to get your data into to do your homework. Each row is one member of parliament. Each of the numbered columns is one vote, where 1 means aye, 0 means abstain, and -1 means nay. The `party` column indicates which political party that MP belonged to at the time.\\n\",\n    \"\\n\",\n    \"If you're interested in the original data, including the names of these politicians and what they were voting on, you can find it all [here](http://www.compjournalism.com/?p=13).\\n\",\n    \"\\n\",\n    \"We'll want to turn the list of parties in to a list of colors.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# compute the color that each MP should be, based on their party\\n\",\n    \"def party_color(x):\\n\",\n    \"    p = {\\n\",\n    \"        'Lab' : 'b',\\n\",\n    \"        'XB'  : 'g',\\n\",\n    \"        'Con' : 'r',\\n\",\n    \"        'LDem': 'y',\\n\",\n    \"        'Bp'  : 'purple'\\n\",\n    \"    }\\n\",\n    \"    return p.get(str(x),'black')\\n\",\n    \"\\n\",\n    \"colors = [party_color(x) for x in votes['party']]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now that we've set everything up, we're ready to start projecting. We can view at most three dimensions at once with our puny human visual system. The simplest projection is just to pick three dimensions of our vectors and plot them.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<mpl_toolkits.mplot3d.art3d.Path3DCollection at 0x12e2a51d0>\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"dims = [22, 33, 44]  # no reason for these particular ones\\n\",\n    \"\\n\",\n    \"fig = plt.figure()\\n\",\n    \"ax = Axes3D(fig)\\n\",\n    \"ax.view_init(elev=10, azim=10)\\n\",\n    \"ax.scatter(votes.iloc[:, dims[0]], votes.iloc[:, dims[1]], votes.iloc[:, dims[2]], c=colors)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Not very interesting. All of vote coordinates are in [-1,0,1] so no matter which votes (dimensions) we pick we can only get the corners, edges, and center of a cube. Plus, all 613 MPs overlap each other -- many MPs voted the same way on this set of three votes -- so we only see a few dots.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Instead, we're going to let the computer pick the right projection from this wacky high dimensional space to two dimensions. We are using PCA, \\\"principal components analysis,\\\" which tries to find a direction to project that gives maximum separation of all the points. This dimension doesn't have to be aligned to any of our dimension axes -- PCA will \\\"rotate\\\" the points in high dimensional space until they are as spread out as possible.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"model = PCA(n_components=2)\\n\",\n    \"out = model.fit_transform(votes.iloc[:,2:])  # throw out mpid and party, just the vote vectors here\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.scatter(out[:, 0], out[:, 1], c=colors)\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can actually project down to any number of dimensions. More than 3 but less than the original 100 can be useful for some data processing operations.) Here, we'll project down to 3 and take a look at our voting clusters in glorious 3D.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"model = PCA(n_components=3)\\n\",\n    \"out = model.fit_transform(votes.iloc[:,2:])  # throw out mpid and party, just the vote vectors here\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<mpl_toolkits.mplot3d.art3d.Path3DCollection at 0x12f52a710>\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"fig = plt.figure()\\n\",\n    \"ax = Axes3D(fig)\\n\",\n    \"ax.view_init(elev=30, azim=45)\\n\",\n    \"ax.scatter(out[:, 0], out[:, 1], out[:, 2], c=colors)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-2/week-2-2-homework.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Week 2-2 - Visualizing General Social Survey data\\n\",\n    \"\\n\",\n    \"Your mission is to analyze a data set of social attitudes by turning it into vectors, then visualizing the result.\\n\",\n    \"\\n\",\n    \"### 1. Choose a topic and get your data\\n\",\n    \"\\n\",\n    \"We're going to be working with data from the General Social Survey, which asks Americans thousands of questions ever year, over decades. This is an enormous data set and there have been very many stories written from its data. The first thing you need to do is decide which questions and which years you are going to try to analyze.\\n\",\n    \"\\n\",\n    \"Use their [data explorer](https://gssdataexplorer.norc.org/) to see what's available, and ultimately download an Excel file with the data. \\n\",\n    \"\\n\",\n    \"- Click the `Search Varibles` button.\\n\",\n    \"- You will need at least a dozen or two related variables. Try selecting some using their `Filter by Module / Subject` interface.\\n\",\n    \"- When you've made your selection, click the `+ All` button to add all listed variables, then choose `Extract Data` under the `Actions` menu.\\n\",\n    \"- Then you have a multi-step process. Step 1 is just naming your extract\\n\",\n    \"- Step 2: select variables *again!* Click `Add All` in the upper right of the \\\"Variable Cart\\\" in the \\\"Choose Variables\\\" step.\\n\",\n    \"- Step 3: Skip it. You could use this to filter the data in various ways. \\n\",\n    \"- Step 4: Click `Select certain years` to pick one year of data, then check `Excel Workbook (data + metadata)` as the output format.\\n\",\n    \"- Click `Create Extract` and wait a minute or two on the \\\"Extracts\\\" page until the spinner stops and turns into a download link.\\n\",\n    \"\\n\",\n    \"You'll end up with an compressed file in tar.gz format, which you should be able to decompressed by double-clicking on it. Inside is an Excel file. Open it in Excel (or your favorite spreadsheet program) and resave it as a CSV.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"from sklearn.decomposition import PCA\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"import math\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# load your data set here\\n\",\n    \"gss = pd.read_csv(...)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 3. Turn people  into vectors\\n\",\n    \"I know, it sounds cruel. We're trying to group people, but computers can only group vectors, so there we are. \\n\",\n    \"\\n\",\n    \"Translating the spreadsheet you downloaded from GSS Explorer into vectors is a multistep process. Generally, each row of the spreadsheet is one person, and each column is one qeustion. \\n\",\n    \"\\n\",\n    \"- First, we need to throw away any extra rows and columns: headers, questions with no data, etc.\\n\",\n    \"- Many GSS questions already have numerical answers. These usually don't require any work.\\n\",\n    \"- But you'll need to turn categorical variables into numbers.\\n\",\n    \"\\n\",\n    \"Basically, you have to remove or convert every value that isn't a number. Because this is survey data, we can turn most questions into an integer scale. The cleanup might use functions like this:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# drop the last two rows, which are just notes and do not contain data\\n\",\n    \"gss = gss.iloc[0:-2,:]\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Here's a bunch of cleanup code. It probably won't be quite right for your data.\\n\",\n    \"# The goal is to convert all values to small integers, to make them easy to plot with colors below.\\n\",\n    \"\\n\",\n    \"# First, replace all of the \\\"Not Applicable\\\" values with None\\n\",\n    \"gss = gss.replace({'Not applicable' : None, \\n\",\n    \"                   'No answer' : None, \\n\",\n    \"                   'Don\\\\'t know' : None,\\n\",\n    \"                   'Dont know' : None})\\n\",\n    \"\\n\",\n    \"# Manually code likert scales \\n\",\n    \"gss = gss.replace({'Strongly disagree':-2, 'Disagree':-1, 'Neither agree nor disagree':0, 'Agree':1, 'Strongly agree':2})\\n\",\n    \"\\n\",\n    \"# yes/no -> 1/-1\\n\",\n    \"gss = gss.replace({'Yes':1, 'No':-1})\\n\",\n    \"\\n\",\n    \"# Some frequency scales should have numeric coding too\\n\",\n    \"gss = gss.replace({'Not at all in the past year' : 0, \\n\",\n    \"            'Once in the past year' : 1,\\n\",\n    \"            'At least 2 or 3 times in the past year' : 2, \\n\",\n    \"            'Once a month' : 3,\\n\",\n    \"            'Once a week' : 4,\\n\",\n    \"            'More than once a week':5}) \\n\",\n    \"\\n\",\n    \"gss = gss.replace({ 'Never or almost never' : 0, \\n\",\n    \"                    'Once in a while' : 1,\\n\",\n    \"                    'Some days' : 2, \\n\",\n    \"                    'Most days' : 3,\\n\",\n    \"                    'Every day' : 4,\\n\",\n    \"                    'Many times a day' : 5}) \\n\",\n    \"\\n\",\n    \"# Drop some columns that don't contain useful information\\n\",\n    \"gss = gss.drop(['Respondent id number',\\n\",\n    \"                'Ballot used for interview',\\n\",\n    \"                'Gss year for this respondent'], axis=1)\\n\",\n    \"\\n\",\n    \"# Turn invalid numeric entries into zeros\\n\",\n    \"gss = gss.replace({np.nan:0.0})\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 4. Plot those vectors!\\n\",\n    \"For this assignment, we'll use the PCA projection algorithm to make 2D (or 3D!) pictures of the set of vectors. Once you have the vectors, it should be easy to make a PCA plot using the steps we followed in class.\\n\",\n    \"    \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# make a PCA plot here\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 5. Add color to help interpretation\\n\",\n    \"Congratulations, you have a picture of a blob of dots. Hopefully, that blob has some structure representing clusters of similar people. To understand what the plot is telling us, it really helps to take one of the original variables and use it to assign colors to the points. \\n\",\n    \"\\n\",\n    \"So: pick one of the questions that you think will separate people into natural groups. Use it to set the color of the dots in your scatterplot. By repeating this with different questions, or combining questions (like two binary questions giving rise to a four color scheme) you should be able to figure out what the structure of the clusters represents. \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# map integer columns to colors\\n\",\n    \"def col2colors(colvals):\\n\",\n    \"    # gray for zero, then a rainbow.\\n\",\n    \"    # This is set up so yes = 1 = red and no = -1 = indigo\\n\",\n    \"    my_colors = ['gray', 'red','orange','yellow','lightgreen','cyan','blue','indigo']\\n\",\n    \"    \\n\",\n    \"    # We may have integers higher than len(my_colors) or less than zero\\n\",\n    \"    # So use the mod operator (%) to make values \\\"wrap around\\\" when they go off the end of the list\\n\",\n    \"    column_ints = colvals.astype(int) % len(my_colors)\\n\",\n    \"    \\n\",\n    \"    # map each index to the corresponding color\\n\",\n    \"    return column_ints.apply(lambda x: my_colors[x])\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Make a plot using colors from a particular column\\n\",\n    \"\\n\",\n    \"# Make another plot using colors from another column\\n\",\n    \"\\n\",\n    \"# ... repeat and see if you can figure out what each axis means\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 6. Tell us what it means?\\n\",\n    \"What did you learn from this exercise? Did you find the standard left-right divide? Or urban-rural? Early adopters vs. luddites? People with vs. without children? \\n\",\n    \"\\n\",\n    \"What did you learn? What could end up in a story? \\n\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-3/Simpson's Paradox.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from sklearn.linear_model import LinearRegression\\n\",\n    \"from mpl_toolkits.mplot3d import Axes3D\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"\\n\",\n    \"# for morning runners, the shoes show a performance decline\\n\",\n    \"# also, most morning runners run without shoes\\n\",\n    \"noshoes_morning = 100 + np.random.randn(50) \\n\",\n    \"shoes_morning = 95 + np.random.randn(10) \\n\",\n    \"\\n\",\n    \"# for evening runners, the shoes show a performance decline \\n\",\n    \"# but evening runners are faster over all, and most evening runners wear shoes\\n\",\n    \"noshoes_evening = 110 + np.random.randn(10) \\n\",\n    \"shoes_evening = 105 + np.random.randn(50) \\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"df = pd.concat([\\n\",\n    \"    pd.DataFrame({'shoes':0,'evening':0,'time':noshoes_morning}),\\n\",\n    \"    pd.DataFrame({'shoes':1,'evening':0,'time':shoes_morning}),\\n\",\n    \"    pd.DataFrame({'shoes':0,'evening':1,'time':noshoes_evening}),\\n\",\n    \"    pd.DataFrame({'shoes':1,'evening':1,'time':shoes_evening})\\n\",\n    \"])\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[<matplotlib.lines.Line2D at 0x11a4cff28>]\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"lm = LinearRegression() \\n\",\n    \"dependent = df[['shoes']].values\\n\",\n    \"y = df[['time']].values\\n\",\n    \"lm.fit(dependent,y)\\n\",\n    \"plt.scatter(x=dependent, y=y)\\n\",\n    \"plt.plot(x, lm.predict(dependent), '-', color='m')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[ 1.54885113]])\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lm.coef_\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 54,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Text(0.5,0,'evening')\"\n      ]\n     },\n     \"execution_count\": 54,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Look at this in 3D\\n\",\n    \"fig = plt.figure()\\n\",\n    \"ax = Axes3D(fig, elev=20, azim=-80)\\n\",\n    \"ax.scatter(df.shoes, df.evening, df.time, alpha=0.3)\\n\",\n    \"ax.set_xlabel('shoes')\\n\",\n    \"ax.set_ylabel('evening')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 55,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Helpful function that we'll use later for making more 3D regression plots\\n\",\n    \"def plot_regression_3d(x, y, z, model, elev=30, azim=30, xlab=None, ylab=None):\\n\",\n    \"    fig = plt.figure()\\n\",\n    \"    ax = Axes3D(fig, elev=elev, azim=azim)\\n\",\n    \"\\n\",\n    \"    # This looks gnarly, but we're just taking four points at the corners of the plot, \\n\",\n    \"    # and using predict() to determine their vertical position\\n\",\n    \"    xmin = x.min()\\n\",\n    \"    xmax = x.max()\\n\",\n    \"    ymin = y.min()\\n\",\n    \"    ymax = y.max()\\n\",\n    \"    corners_x = np.array([[xmin, xmin], [xmax, xmax]])\\n\",\n    \"    corners_y = np.array([[ymin, ymax], [ymin, ymax]])\\n\",\n    \"    corners_z = model.predict(np.array([[xmin, xmin, xmax, xmax], [ymin, ymax, ymin, ymax]]).T).reshape((2, 2))\\n\",\n    \"    ax.plot_surface(corners_x, corners_y, corners_z, alpha=0.5)\\n\",\n    \"\\n\",\n    \"    ax.scatter(x, y, z, alpha=0.3)\\n\",\n    \"\\n\",\n    \"    ax.set_xlabel(xlab)\\n\",\n    \"    ax.set_ylabel(ylab)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 59,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\n05/+hI8++ghz586FXC6P4UjPD4goEgiEWUWorlCB2LRpE5544gkUFxcDmOoK5R69epf2cDaM3/nO\\nd5CamhrRewjmccrxySef4Je//CU+++yzoH7C3FpiW1sbnnrqKZSVleGb3/wmRkdHsXfvXnz44Yf4\\n61//iszMzIRd500EiCgSCIQLjtdff93jtnttalpaGtLS0mL6+o2Njeju7kZ/fz+Kiorw9ttv4y9/\\n+YvHNk1NTbjzzjtx8ODBkKaxufdw4sQJXHzxxfjggw9gs9mQm5sLs9mMlJSUqGRSn++QRBsCgUCI\\nA/v378f999/Pe5w+8sgjHh6nV111FVpaWlBQUAAAKC0txfvvv+9zX1wW6QcffIA///nP/FrqU089\\nheTkZIhEIqhUKr5J+QWUceoOyT5NdILVKdlsNmzYsAEnTpxAdnY23nnnHZSXl8dnsAQCIeFZsmQJ\\n3nvvPTz99NMoLy/Hli1b8Omnn6KiomLW+NDGkJBEMXHMBy8waJrGvffeiwMHDqCtrQ179uxBW1ub\\nxza7du1CZmYmenp68NOf/hQ///nP4zRaAoGQ6AwPD6OxsRE5OTno6OjAgw8+CAB4+umn0draGufR\\nzR6IKMaJo0ePorKyEnPnzoVYLMb69euxd+9ej2327t2L22+/HQCwbt06HDp0aIox80xw8OBBVFVV\\nobKyElu3bp3y+I4dO1BTU4NFixbhyiuvxMDAwIyPkUC40MnPz0dpaSkWLVqEiy66CFKpFF988QVs\\nNhu+9a1vxXt4swYiinHCV53SyMiI321EIhHkcjnUavWMjjOUiLahoQHHjx9Hc3Mz1q1bh4ceemhG\\nx0ggJDrBLixtNhu++93vorKyEitWrMDZs2fDfg2RSIS7774b3/3ud5GcnIzGxkZs27YNmzdvBgDe\\nTIEQGCKKhICEEtFeccUVkEgkAICVK1dieHg4HkMFEPzkw/G3v/0NFEXh+PHjMzg6woXITC6VZGVl\\n4amnnsKdd96Jl156Ca+++ipuvfVWALhQk2vChohinAilTsl9G6fTCZ1Oh+zs7BkdZygRrTuROG9E\\ni1BOPgBgMBjw8ssvY8WKFXEYJeFCY6aXSlJSUnDRRRfhG9/4hs/aR0JgiCjGCfc6Jbvdjrfffhtr\\n16712Gbt2rX4wx/+AAD461//im9+85sJXXTLOW9wC/wzTSgnHwB47LHH8POf/zwie65oEkpU++67\\n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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Now fit a two variable regression -- \\\"control\\\" for evening\\n\",\n    \"lm = LinearRegression() \\n\",\n    \"dependent = df[['shoes','evening']].values\\n\",\n    \"lm.fit(dependent,y)\\n\",\n    \"plot_regression_3d(dependent[:,0], dependent[:,1], y, lm, elev=20, azim=-80, xlab='shoes', ylab='evening')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[ -5.390722 ,  10.4093597]])\"\n      ]\n     },\n     \"execution_count\": 60,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lm.coef_\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-3/apib12tx.csv",
    "content": "CHARTER,SNAME,DNAME,CNAME,API12B,ST_RANK,PCT_AA,PCT_AI,PCT_AS,PCT_FI,PCT_HI,PCT_PI,PCT_WH,PCT_MR,MEALS,P_GATE,P_MIGED,P_EL,P_RFEP,P_DI,ACS_K3,ACS_46,ACS_CORE,PCT_RESP,NOT_HSG,HSG,SOME_COL,COL_GRAD,GRAD_SCH,AVG_ED\r\n,William Faria Elementary,Cupertino Union,Santa Clara,998,10,0,1,96,0,0,0,3,0,1,0,0,0,26,3,26,33,N/A,95,1,1,1,22,76,4.72\r\n,Millikin Elementary,Santa Clara Unified,Santa Clara,998,10,0,0,74,2,4,0,18,2,6,4,0,26,32,4,30,33,N/A,100,0,2,9,33,56,4.44\r\n,Manchester Gate,Fresno Unified,Fresno,998,10,4,1,11,1,35,1,48,0,40,99,0,0,11,2,31,32,N/A,84,5,8,29,26,32,3.71\r\n,Murdock-Portal Elementary,Cupertino Union,Santa Clara,997,10,0,1,95,0,0,0,5,0,1,0,0,0,33,3,23,30,N/A,99,0,0,0,14,85,4.85\r\n,Mission San Jose Elementary,Fremont Unified,Alameda,996,10,0,1,91,0,1,0,4,2,2,23,0,8,26,3,27,30,N/A,99,0,1,3,22,74,4.68\r\n,Herbert Hoover Elementary,Palo Alto Unified,Santa Clara,995,10,3,0,73,1,3,0,12,8,4,5,2,12,18,6,27,24,N/A,100,0,2,2,14,83,4.77\r\n,Gretchen Whitney High,ABC Unified,Los Angeles,995,10,2,0,71,11,8,1,5,1,19,78,2,0,24,1,N/A,N/A,30,94,3,5,9,41,42,4.14\r\n,Oxford Academy,Anaheim Union High,Orange,995,10,2,0,61,10,15,1,11,0,34,69,0,0,47,0,N/A,N/A,32,60,4,8,19,44,25,3.78\r\nD,Bullis Charter,Santa Clara County Office of E,Santa Clara,994,10,0,0,30,0,5,0,50,14,1,0,0,1,1,8,20,23,17,100,0,0,1,10,89,4.88\r\n,Elkhorn,Lodi Unified,San Joaquin,994,10,3,0,33,13,21,1,28,0,40,100,0,2,22,2,N/A,32,34,85,7,12,23,35,23,3.54\r\nD,Oxford Preparatory Academy - South Orang,Capistrano Unified,Orange,993,10,2,1,7,3,9,0,71,4,16,6,0,1,1,6,29,32,N/A,88,0,1,9,40,51,4.4\r\n,John Gomes Elementary,Fremont Unified,Alameda,990,10,1,0,93,0,1,0,4,1,2,22,0,10,24,4,28,30,N/A,99,0,2,2,21,74,4.67\r\n,Torrey Pines Elementary,San Diego Unified,San Diego,990,10,1,0,16,2,14,0,58,10,8,48,0,10,12,6,24,24,N/A,97,1,0,7,26,66,4.56\r\n,North Star Academy,Redwood City Elementary,San Mateo,990,10,1,0,9,3,22,0,64,1,13,19,1,1,14,4,31,30,28,99,6,6,12,28,48,4.08\r\n,North Hillsborough,Hillsborough City Elementary,San Mateo,989,10,0,0,19,1,3,1,75,0,0,3,0,1,3,10,17,22,N/A,97,0,1,5,37,57,4.5\r\n,Chin (John Yehall) Elementary,San Francisco Unified,San Francisco,989,10,1,0,88,1,1,1,5,2,84,15,0,76,8,4,21,27,N/A,96,17,47,11,22,3,2.47\r\n,Nelson S. Dilworth Elementary,Cupertino Union,Santa Clara,988,10,0,0,92,1,1,0,6,0,1,0,0,2,34,9,20,29,N/A,95,0,1,2,15,82,4.78\r\n,Tom Matsumoto Elementary,Evergreen Elementary,Santa Clara,988,10,1,0,85,5,3,0,4,0,4,14,0,7,19,5,24,31,N/A,100,1,1,6,27,64,4.52\r\n,Independent Study Program,Mountain View Whisman,Santa Clara,988,10,0,0,11,0,11,0,68,11,5,37,0,0,5,0,,,,95,0,6,6,33,56,4.39\r\n,Joaquin Miller Middle,Cupertino Union,Santa Clara,987,10,1,0,86,1,1,0,11,0,4,13,0,1,25,5,N/A,30,32,92,0,1,4,20,75,4.67\r\n,James Leitch Elementary,Fremont Unified,Alameda,987,10,1,0,80,4,2,0,9,3,7,0,0,51,0,4,26,N/A,N/A,98,1,4,4,33,58,4.42\r\n,Garden Gate Elementary,Cupertino Union,Santa Clara,986,10,0,0,92,0,3,0,4,1,3,0,0,3,28,4,25,31,N/A,98,1,2,4,23,71,4.62\r\n,William Hopkins Junior High,Fremont Unified,Alameda,986,10,0,0,88,1,2,0,6,1,5,52,0,3,34,5,N/A,N/A,30,99,0,2,5,23,69,4.58\r\n,Jack L. Weaver Elementary,Los Alamitos Unified,Orange,986,10,3,0,23,2,20,0,47,4,6,17,0,1,6,6,24,34,N/A,98,1,1,11,38,49,4.33\r\n,L. P. Collins Elementary,Cupertino Union,Santa Clara,985,10,0,0,88,1,1,0,9,1,1,0,0,0,24,5,20,29,N/A,96,0,0,2,19,78,4.75\r\n,John F. Kennedy Middle,Cupertino Union,Santa Clara,985,10,0,0,78,0,2,0,18,1,2,13,0,1,15,4,N/A,30,28,93,0,1,3,20,76,4.7\r\n,La Jolla Elementary,San Diego Unified,San Diego,985,10,0,0,6,0,17,0,70,7,7,52,0,9,8,6,25,27,N/A,99,2,2,5,31,60,4.47\r\n,Sleepy Hollow Elementary,Orinda Union Elementary,Contra Costa,984,10,0,1,14,0,3,0,78,0,0,10,0,1,3,8,19,25,N/A,98,0,1,2,55,42,4.37\r\n,Robert C. Fisler Elementary,Fullerton Elementary,Orange,984,10,1,1,75,6,7,0,7,3,7,21,0,20,24,3,28,32,29,97,0,2,9,50,39,4.26\r\n,Foothills Middle,Arcadia Unified,Los Angeles,984,10,2,0,57,3,14,0,25,0,12,10,0,3,18,7,N/A,23,25,97,3,5,7,36,49,4.25\r\n,Balboa Gifted/High Ability Magnet Elemen,Los Angeles Unified,Los Angeles,984,10,3,0,32,5,19,0,41,0,23,71,0,1,8,3,13,12,N/A,97,2,4,10,41,44,4.21\r\n,Oak Avenue Elementary,Los Altos Elementary,Santa Clara,983,10,0,0,34,1,4,0,48,12,2,10,0,2,4,10,23,27,N/A,99,0,0,2,20,77,4.74\r\n,Sam H. Lawson Middle,Cupertino Union,Santa Clara,983,10,1,0,79,1,3,0,15,0,3,9,0,1,22,6,N/A,28,29,94,0,1,4,25,69,4.62\r\n,Sage Canyon,Del Mar Union Elementary,San Diego,982,10,1,0,25,1,4,0,66,3,1,0,0,2,9,12,19,26,N/A,99,0,0,2,30,68,4.66\r\n,Jensen Ranch Elementary,Castro Valley Unified,Alameda,982,10,4,0,58,4,7,0,22,5,5,8,0,16,9,5,24,32,N/A,100,0,2,10,49,39,4.24\r\n,Covington Elementary,Los Altos Elementary,Santa Clara,981,10,1,1,32,1,6,0,48,10,3,16,0,5,11,11,20,28,N/A,98,0,1,2,25,72,4.68\r\n,Ardis G. Egan Junior High,Los Altos Elementary,Santa Clara,981,10,1,0,25,0,9,0,55,8,4,19,0,4,11,4,N/A,N/A,23,98,1,3,2,21,73,4.61\r\n,Joshua Chadbourne Elementary,Fremont Unified,Alameda,981,10,1,0,86,0,2,0,8,2,6,18,0,12,25,8,28,27,N/A,98,0,3,4,23,70,4.61\r\n,Windemere Ranch Middle,San Ramon Valley Unified,Contra Costa,981,10,2,0,70,5,6,0,11,6,2,19,0,1,17,3,N/A,30,28,94,0,2,5,36,57,4.5\r\n,Stevenson Ranch Elementary,Newhall,Los Angeles,981,10,3,0,17,3,14,0,56,7,6,14,0,8,5,7,24,28,N/A,100,1,2,10,46,41,4.25\r\n,Ethan B. Allen Elementary,Garden Grove Unified,Orange,981,10,0,0,81,1,10,0,8,0,37,44,0,17,49,5,28,34,N/A,27,1,11,14,51,24,3.86\r\n,Abraham Lincoln Elementary,Cupertino Union,Santa Clara,980,10,0,0,88,1,2,0,8,1,1,0,0,2,29,8,24,31,N/A,93,1,1,3,18,77,4.7\r\n,James S. Fugman Elementary,Clovis Unified,Fresno,980,10,2,1,20,2,15,0,58,2,12,3,0,2,6,4,25,32,N/A,98,1,4,13,33,49,4.26\r\n,Villa Park Elementary,Orange Unified,Orange,980,10,0,0,12,1,17,1,65,2,10,8,0,5,1,6,31,33,N/A,95,1,13,26,40,21,3.66\r\n,Turtle Rock Elementary,Irvine Unified,Orange,980,10,2,0,51,1,8,0,32,6,10,28,0,15,13,5,30,32,N/A,0,0,0,0,0,0,\r\n,Argonaut Elementary,Saratoga Union Elementary,Santa Clara,979,10,0,0,82,0,3,0,11,5,1,100,0,10,23,8,21,30,N/A,100,0,0,2,18,80,4.78\r\n,Redwood Middle,Saratoga Union Elementary,Santa Clara,979,10,0,0,55,1,4,0,34,6,2,100,0,2,11,10,N/A,26,26,100,0,1,2,23,74,4.7\r\n,Hidden Hills Elementary,San Ramon Valley Unified,Contra Costa,979,10,1,0,64,5,6,0,15,8,0,10,0,7,10,4,26,30,N/A,100,0,0,3,42,56,4.53\r\n,Wonderland Avenue Elementary,Los Angeles Unified,Los Angeles,979,10,4,0,29,1,3,0,62,0,11,32,0,8,10,5,15,16,N/A,57,0,5,6,48,41,4.24\r\n,R. I. Meyerholz Elementary,Cupertino Union,Santa Clara,978,10,0,0,88,0,2,0,9,1,2,0,0,4,34,6,24,29,N/A,94,0,1,4,21,74,4.66\r\nD,Gilroy Prep,Gilroy Unified,Santa Clara,978,10,2,0,11,3,61,0,21,0,60,0,0,69,0,6,30,N/A,N/A,98,36,15,11,21,16,2.67\r\nD,American Indian Public Charter School II,Oakland Unified,Alameda,978,10,5,1,84,0,8,0,1,0,91,0,0,16,59,2,N/A,2,N/A,14,40,14,26,21,0,2.28\r\n,Carmel Valley Middle,San Dieguito Union High,San Diego,977,10,1,0,32,2,6,0,58,0,4,16,0,5,6,8,N/A,N/A,31,97,1,2,5,31,61,4.5\r\n,West Hillsborough,Hillsborough City Elementary,San Mateo,977,10,0,0,45,1,2,0,49,2,0,5,0,3,5,12,19,19,N/A,99,0,2,6,32,60,4.49\r\n,Baldwin Stocker Elementary,Arcadia Unified,Los Angeles,977,10,2,0,82,3,6,0,8,0,10,2,0,28,20,3,25,32,N/A,97,1,4,9,44,41,4.19\r\n,Ocean Air,Del Mar Union Elementary,San Diego,976,10,0,0,41,1,3,1,52,2,2,0,0,3,12,9,20,27,N/A,100,0,1,3,23,73,4.68\r\n,Live Oak Elementary,San Ramon Valley Unified,Contra Costa,976,10,2,0,73,5,4,0,8,6,2,10,0,9,14,3,26,31,N/A,97,0,1,3,35,62,4.57\r\n,Donald L. Rheem Elementary,Moraga Elementary,Contra Costa,976,10,1,0,19,3,13,0,52,11,2,0,0,2,9,9,22,30,N/A,99,0,3,6,33,59,4.47\r\n,Fairburn Avenue Elementary,Los Angeles Unified,Los Angeles,976,10,3,1,21,0,5,0,70,0,9,31,0,7,7,9,16,9,N/A,37,2,2,6,29,60,4.43\r\n,Pacific Rim Elementary,Carlsbad Unified,San Diego,976,10,1,0,9,1,9,1,72,5,6,38,0,3,2,8,32,31,N/A,97,1,1,13,39,46,4.29\r\n,Silver Oak Elementary,Evergreen Elementary,Santa Clara,976,10,3,0,46,3,7,0,39,1,4,12,0,6,12,2,23,31,N/A,100,1,7,17,46,29,3.95\r\n,William Regnart Elementary,Cupertino Union,Santa Clara,975,10,1,0,83,0,2,0,12,1,1,0,0,3,26,10,23,30,N/A,97,1,1,1,17,81,4.76\r\n,Teach Elementary,San Luis Coastal Unified,San Luis Obispo,975,10,1,0,9,1,8,0,78,3,17,0,0,1,1,3,N/A,30,N/A,99,0,1,9,26,64,4.53\r\n,La Canada Elementary,La Canada Unified,Los Angeles,975,10,1,0,26,2,8,0,54,7,1,13,0,8,8,12,19,32,N/A,100,0,2,6,31,62,4.52\r\n,California Academy of Mathematics and Sc,Long Beach Unified,Los Angeles,975,10,16,0,17,12,40,1,13,2,49,0,0,8,29,0,N/A,N/A,34,89,10,16,16,33,25,3.47\r\n,Duveneck Elementary,Palo Alto Unified,Santa Clara,974,10,1,0,38,0,6,3,48,4,5,3,0,9,4,5,21,24,N/A,100,0,1,3,12,83,4.78\r\n,Cornerstone at Pedregal Elementary,Palos Verdes Peninsula Unified,Los Angeles,974,10,2,0,31,1,3,0,58,6,1,5,0,7,2,9,22,33,N/A,100,0,0,3,31,66,4.63\r\n,Forest Park Elementary,Fremont Unified,Alameda,974,10,2,0,85,4,1,0,5,2,6,12,0,13,26,4,28,29,N/A,98,1,5,4,32,59,4.44\r\nY,American Indian Public Charter,Oakland Unified,Alameda,974,10,16,2,50,1,24,2,1,0,69,0,0,5,56,3,N/A,1,N/A,59,16,53,16,12,3,2.32\r\n,Piedmont Middle,Piedmont City Unified,Alameda,973,10,2,0,18,2,3,0,71,3,0,10,0,3,5,12,N/A,21,25,100,0,1,2,26,71,4.66\r\n,Stevens Creek Elementary,Cupertino Union,Santa Clara,973,10,0,0,70,1,3,0,25,0,3,0,0,3,22,9,20,29,N/A,93,0,1,5,25,70,4.62\r\n,,Hillsborough City Elementary,San Mateo,973,B,0,0,27,2,3,0,67,1,0,10,0,2,4,11,18,22,21,99,0,1,5,32,61,4.53\r\n,Camino Pablo Elementary,Moraga Elementary,Contra Costa,973,10,2,0,13,1,8,0,67,9,1,0,0,2,1,10,22,26,N/A,96,0,0,3,41,56,4.52\r\n,Huntington Middle,San Marino Unified,Los Angeles,973,10,1,0,57,0,8,1,31,3,0,0,0,3,8,7,N/A,31,29,91,0,2,5,37,56,4.47\r\n,Wedgeworth Elementary,Hacienda la Puente Unified,Los Angeles,973,10,1,0,52,4,33,0,3,6,42,14,0,19,12,1,20,29,N/A,91,4,11,22,51,11,3.52\r\n,Beach Elementary,Piedmont City Unified,Alameda,972,10,2,0,14,0,5,0,60,19,0,8,0,2,3,10,19,24,N/A,98,0,0,4,21,74,4.69\r\n,Montclair Elementary,Oakland Unified,Alameda,972,10,14,0,9,1,9,0,56,10,4,36,0,3,2,2,24,31,N/A,48,1,4,8,38,48,4.29\r\n,Georgina P. Blach Junior High,Los Altos Elementary,Santa Clara,971,10,1,0,21,1,6,0,61,10,2,19,0,2,5,12,N/A,N/A,22,99,1,1,2,27,69,4.62\r\n,Fred E. Weibel Elementary,Fremont Unified,Alameda,971,10,1,0,79,2,4,0,10,4,5,14,0,11,20,4,26,28,N/A,99,1,2,4,21,71,4.6\r\n,Opal Robinson Elementary,Manhattan Beach Unified,Los Angeles,971,10,0,0,6,1,8,0,74,10,0,2,0,1,0,13,22,27,N/A,99,0,0,3,40,57,4.55\r\nY,Canyon Elementary,Los Angeles Unified,Los Angeles,971,10,7,0,9,1,7,1,74,0,4,15,0,1,0,12,11,7,N/A,8,0,0,26,26,48,4.22\r\n,Los Coyotes Elementary,Centralia Elementary,Orange,971,10,3,0,44,7,17,1,20,8,19,5,0,14,16,5,28,30,N/A,100,1,7,21,49,23,3.86\r\n,Solana Pacific Elementary,Solana Beach Elementary,San Diego,970,10,1,0,32,2,4,0,60,1,3,22,0,5,10,11,N/A,24,N/A,96,0,2,5,27,65,4.55\r\n,Williams Elementary,San Jose Unified,Santa Clara,970,10,1,0,52,1,5,0,39,1,2,27,0,9,13,6,27,30,N/A,96,0,1,6,37,57,4.49\r\n,Simonds Elementary,San Jose Unified,Santa Clara,970,10,2,1,32,1,6,0,55,2,2,30,0,6,11,6,28,31,N/A,95,0,0,7,41,52,4.44\r\n,Woodside Elementary,Woodside Elementary,San Mateo,970,10,2,0,4,0,11,1,75,4,8,0,0,6,1,11,16,17,9,97,1,5,7,29,57,4.36\r\n,,Woodside Elementary,San Mateo,970,B,2,0,4,0,12,1,75,4,9,0,0,6,1,11,16,17,9,97,1,5,7,29,57,4.36\r\n,Stone Creek Elementary,Irvine Unified,Orange,970,10,2,0,35,2,11,1,43,5,8,14,0,12,10,8,31,35,N/A,0,0,0,0,0,0,\r\n,,Saratoga Union Elementary,Santa Clara,969,B,0,0,55,0,3,0,34,7,2,99,0,5,13,12,19,27,26,100,0,1,3,23,74,4.69\r\n,,Los Altos Elementary,Santa Clara,969,B,1,0,28,1,8,0,52,10,4,14,0,6,8,10,22,26,23,99,1,2,2,23,71,4.62\r\n,Crocker Middle,Hillsborough City Elementary,San Mateo,969,10,0,0,29,2,2,0,66,0,0,17,0,0,4,7,N/A,22,21,99,0,1,4,30,65,4.59\r\nY,Santa Rosa Accelerated Charter,Santa Rosa City Schools,Sonoma,969,10,1,0,15,0,6,0,70,9,1,37,0,1,0,3,N/A,32,N/A,99,0,0,4,36,60,4.56\r\n,Louis E. Stocklmeir Elementary,Cupertino Union,Santa Clara,969,10,1,0,66,1,5,0,25,0,4,0,0,4,26,7,20,31,N/A,93,1,3,4,27,65,4.53\r\n,Grand View Elementary,Manhattan Beach Unified,Los Angeles,969,10,0,0,3,0,8,0,74,14,1,4,0,1,0,10,23,29,N/A,99,0,1,2,38,58,4.52\r\n,Silver Spur Elementary,Palos Verdes Peninsula Unified,Los Angeles,969,10,0,0,19,1,6,1,63,10,1,4,0,3,1,11,24,31,N/A,99,0,1,4,43,52,4.47\r\n,La Entrada Middle,Las Lomitas Elementary,San Mateo,969,10,1,0,11,0,10,1,71,6,2,18,0,2,2,9,N/A,1,2,99,2,3,6,35,54,4.37\r\n,Glorietta Elementary,Orinda Union Elementary,Contra Costa,969,10,2,1,14,1,5,0,72,0,0,5,0,0,2,8,20,26,N/A,99,0,1,6,57,36,4.28\r\n,Los Perales Elementary,Moraga Elementary,Contra Costa,968,10,2,0,16,0,8,0,59,15,0,0,0,1,8,12,21,29,N/A,99,0,1,2,28,69,4.64\r\n,Del Mar Heights Elementary,Del Mar Union Elementary,San Diego,968,10,2,0,13,1,6,0,73,5,4,0,0,4,3,12,19,24,N/A,100,0,0,5,31,64,4.57\r\n,Mission Valley Elementary,Fremont Unified,Alameda,968,10,2,1,81,1,3,0,9,3,9,17,0,13,26,9,27,28,N/A,98,1,4,6,24,66,4.5\r\n,Bel Aire Elementary,Reed Union Elementary,Marin,968,10,1,0,9,0,6,0,83,0,3,0,0,2,2,7,24,23,N/A,100,0,2,4,38,56,4.49\r\n,Golden View Elementary,San Ramon Valley Unified,Contra Costa,968,10,2,0,32,4,8,1,46,7,2,15,0,7,6,6,24,30,N/A,86,0,2,7,43,48,4.38\r\n,Tustin Memorial Elementary,Tustin Unified,Orange,968,10,1,0,29,1,13,0,52,4,7,39,0,4,10,5,27,32,N/A,97,0,2,11,37,49,4.33\r\n,Cold Spring Elementary,Cold Spring Elementary,Santa Barbara,968,10,0,0,10,0,3,0,88,0,0,12,0,1,1,4,15,14,N/A,99,0,0,10,54,36,4.26\r\n,C. B. Eaton Elementary,Cupertino Union,Santa Clara,967,10,0,0,81,1,3,0,13,1,3,0,0,2,29,7,21,29,N/A,95,1,1,3,19,75,4.68\r\n,Happy Valley Elementary,Lafayette Elementary,Contra Costa,967,10,1,0,5,0,8,0,77,8,1,3,0,1,0,8,22,28,N/A,100,0,0,3,38,58,4.54\r\n,Bird Rock Elementary,San Diego Unified,San Diego,967,10,1,1,4,1,9,0,80,4,5,29,0,5,3,6,23,32,N/A,96,1,2,6,28,63,4.51\r\n,Del Mar Middle,Reed Union Elementary,Marin,967,10,2,0,11,0,4,0,81,0,3,0,0,1,1,4,N/A,22,24,100,0,2,5,37,56,4.47\r\n,Coyote Creek Elementary,San Ramon Valley Unified,Contra Costa,967,10,1,0,49,5,5,0,34,7,1,5,0,8,10,4,24,29,N/A,98,0,1,5,44,50,4.43\r\n,Warm Springs Elementary,Fremont Unified,Alameda,967,10,1,0,75,3,4,0,11,3,9,13,0,9,34,5,26,30,N/A,98,1,4,8,28,59,4.4\r\n,,Orinda Union Elementary,Contra Costa,967,B,2,1,15,1,4,0,72,1,0,12,0,1,3,9,19,24,24,99,0,1,5,50,43,4.35\r\n,Wagner Ranch Elementary,Orinda Union Elementary,Contra Costa,967,10,5,0,17,2,2,0,67,2,0,8,0,2,3,8,17,25,N/A,99,0,3,4,46,46,4.35\r\n,Laguna Road Elementary,Fullerton Elementary,Orange,967,10,1,0,62,2,9,0,21,4,8,28,0,15,19,4,29,33,N/A,89,0,3,9,40,47,4.31\r\n,Frank C. Leal Elementary,ABC Unified,Los Angeles,967,10,5,0,53,16,13,1,6,5,18,22,0,13,18,5,25,29,N/A,95,1,4,13,43,38,4.13\r\n,Rancho San Joaquin Middle,Irvine Unified,Orange,967,10,2,0,54,3,7,0,29,5,11,36,0,15,17,4,N/A,N/A,32,0,0,0,0,0,0,\r\n,Blue Hills Elementary,Cupertino Union,Santa Clara,966,10,1,1,79,0,2,0,16,1,3,0,0,4,26,11,19,31,N/A,95,0,1,3,20,76,4.71\r\n,Carver Elementary,San Marino Unified,Los Angeles,966,10,1,0,61,1,8,0,21,7,0,0,0,5,11,11,25,28,N/A,97,0,2,6,31,60,4.5\r\n,Oak Mesa Elementary,Bonita Unified,Los Angeles,966,10,1,0,12,1,28,0,49,8,9,16,0,5,2,7,26,32,N/A,99,2,10,38,36,14,3.51\r\nD,Celerity Troika Charter,Los Angeles Unified,Los Angeles,966,10,5,1,3,16,70,1,4,0,75,0,0,11,22,5,21,28,25,93,9,18,42,25,6,3\r\n,,Santa Clara Elementary,Ventura,966,B,0,0,0,0,32,0,5,0,11,0,0,0,0,0,15,25,N/A,0,0,0,0,0,0,\r\n,Santa Clara Elementary,Santa Clara Elementary,Ventura,966,10,0,0,0,0,32,0,5,0,11,0,0,0,0,0,15,25,N/A,0,0,0,0,0,0,\r\n,Loyola Elementary,Los Altos Elementary,Santa Clara,965,10,1,0,26,0,3,0,59,10,1,13,0,4,6,13,22,25,N/A,100,0,1,2,28,70,4.67\r\n,Pacific Elementary,Manhattan Beach Unified,Los Angeles,965,10,1,0,8,1,9,0,68,13,2,4,0,2,0,16,22,28,N/A,99,0,1,3,35,61,4.56\r\n,Del Rey Elementary,Orinda Union Elementary,Contra Costa,965,10,2,1,18,1,5,0,68,1,1,3,0,3,5,9,19,25,N/A,98,0,1,7,45,47,4.39\r\n,,Las Lomitas Elementary,San Mateo,965,B,2,0,13,0,10,1,70,4,2,12,0,4,1,12,2,1,2,99,2,3,5,35,55,4.38\r\n,,Lakeside Joint,Santa Clara,965,B,0,0,2,0,2,0,96,0,7,9,0,2,4,11,15,10,N/A,89,0,4,12,28,56,4.36\r\n,Lakeside Elementary,Lakeside Joint,Santa Clara,965,10,0,0,2,0,2,0,96,0,7,9,0,2,4,9,15,10,N/A,91,0,4,12,28,56,4.36\r\n,Carmel River Elementary,Carmel Unified,Monterey,965,10,2,0,5,0,12,0,68,9,6,20,0,2,2,5,21,23,N/A,98,1,3,11,34,50,4.28\r\n,Hillcrest Elementary,Oakland Unified,Alameda,964,10,5,0,7,0,5,0,67,15,2,49,0,1,0,7,22,24,21,92,0,0,2,15,83,4.79\r\n,Wildwood Elementary,Piedmont City Unified,Alameda,964,10,0,1,16,1,4,0,73,4,0,4,0,4,3,11,20,23,N/A,99,0,0,2,27,71,4.69\r\n,,Moraga Elementary,Contra Costa,964,B,1,0,16,1,8,0,61,11,2,0,0,1,4,10,22,28,25,97,0,1,4,34,60,4.54\r\n,Franklin Elementary,Santa Monica-Malibu Unified,Los Angeles,964,10,3,0,10,0,6,0,77,4,5,8,0,6,5,12,23,31,N/A,93,0,1,10,29,60,4.48\r\n,Henry P. Mohr Elementary,Pleasanton Unified,Alameda,964,10,2,0,61,2,5,0,29,0,3,15,0,5,23,9,24,33,N/A,98,0,3,6,34,56,4.44\r\n,Cerritos Elementary,ABC Unified,Los Angeles,964,10,8,0,60,10,12,0,6,3,20,39,0,15,13,3,26,32,N/A,95,0,3,14,49,33,4.13\r\n,Miller's Hill,Latrobe,El Dorado,964,10,0,0,1,0,7,0,82,10,5,41,0,0,0,11,N/A,19,N/A,100,0,1,24,50,24,3.98\r\nY,Welby Way Elementary and Gifted High Abi,Los Angeles Unified,Los Angeles,964,10,5,0,31,4,15,0,45,0,17,43,0,1,5,5,14,11,N/A,95,2,7,18,40,34,3.97\r\n,Sierra Vista Middle,Irvine Unified,Orange,964,10,2,0,49,3,8,0,34,2,10,28,0,8,13,6,N/A,N/A,32,0,0,0,0,0,0,\r\n,,Reed Union Elementary,Marin,963,B,2,0,10,0,5,0,82,0,3,0,0,2,2,6,22,22,24,100,0,1,5,36,57,4.49\r\n,Scripps Elementary,San Diego Unified,San Diego,963,10,2,0,24,5,9,0,50,9,5,46,0,12,4,6,23,30,N/A,98,0,1,6,35,57,4.47\r\n,Sycamore Ridge,Del Mar Union Elementary,San Diego,963,10,1,1,33,3,10,0,50,3,12,0,0,8,14,6,19,24,N/A,100,1,3,7,29,61,4.46\r\n,R. Roger Rowe Elementary,Rancho Santa Fe Elementary,San Diego,963,10,1,1,5,0,9,0,82,0,0,0,0,4,2,11,17,19,N/A,97,1,2,6,34,57,4.42\r\n,Lanai Road Elementary,Los Angeles Unified,Los Angeles,963,10,3,1,7,1,5,1,84,0,5,23,0,5,7,10,15,12,N/A,96,0,2,10,30,57,4.42\r\n,Roscomare Road Elementary,Los Angeles Unified,Los Angeles,963,10,3,0,5,1,3,0,88,0,4,29,0,2,1,9,16,9,N/A,100,0,1,10,51,37,4.24\r\n,Academy for Enriched Sciences,Los Angeles Unified,Los Angeles,963,10,6,0,22,6,25,0,42,0,28,33,0,6,12,9,19,26,N/A,94,2,11,18,45,25,3.8\r\n,Canyon View Elementary,Irvine Unified,Orange,963,10,1,1,59,1,4,0,31,3,4,16,0,15,8,9,25,29,N/A,0,0,0,0,0,0,\r\n,Montclaire Elementary,Cupertino Union,Santa Clara,962,10,1,1,37,1,5,0,54,2,1,0,0,1,10,11,20,33,N/A,97,0,1,1,24,74,4.72\r\n,,Cupertino Union,Santa Clara,962,B,1,0,72,1,5,0,20,1,6,4,0,6,24,7,22,29,29,94,1,2,6,23,67,4.53\r\n,Roy O. Andersen Elementary,Newport-Mesa Unified,Orange,962,10,1,0,2,0,4,0,92,0,1,5,0,1,0,9,25,33,N/A,99,1,1,4,35,60,4.51\r\n,Orinda Intermediate,Orinda Union Elementary,Contra Costa,962,10,2,1,14,1,5,1,74,0,0,19,0,1,2,9,N/A,24,24,99,0,2,5,49,44,4.36\r\n,Beechwood Elementary,Fullerton Elementary,Orange,962,10,1,0,24,2,21,0,41,6,7,6,0,5,8,5,27,33,33,97,0,3,16,43,38,4.14\r\n,Aviara Oaks Elementary,Carlsbad Unified,San Diego,962,10,2,1,12,2,14,0,67,1,10,34,0,8,2,9,31,30,N/A,96,2,4,15,37,41,4.11\r\n,Joe A. Gonsalves Elementary,ABC Unified,Los Angeles,962,10,6,0,62,9,13,1,7,1,16,27,1,20,17,8,25,30,N/A,94,0,4,17,43,36,4.1\r\nY,Community Magnet Charter Elementary,Los Angeles Unified,Los Angeles,962,10,19,1,31,0,11,0,37,0,31,27,0,5,13,7,14,14,N/A,92,2,5,14,41,38,4.08\r\n,,Del Mar Union Elementary,San Diego,961,B,1,0,28,1,7,0,60,3,4,0,0,6,9,12,20,25,N/A,100,0,1,5,30,64,4.55\r\n,Huntington Seacliff Elementary,Huntington Beach City Elementa,Orange,961,10,0,0,21,1,11,0,59,7,2,28,0,3,7,12,30,33,N/A,94,0,2,8,40,49,4.37\r\n,Hermosa View Elementary,Hermosa Beach City Elementary,Los Angeles,961,10,1,0,2,0,6,0,82,4,2,0,0,1,0,10,25,N/A,N/A,98,0,1,8,45,46,4.36\r\n,John Green Elementary,Dublin Unified,Alameda,961,10,3,0,53,9,6,0,26,1,2,11,0,8,10,4,25,28,N/A,94,1,2,7,43,47,4.34\r\n,Ardenwood Elementary,Fremont Unified,Alameda,961,10,4,0,72,6,3,0,10,5,14,12,0,14,20,4,28,29,N/A,100,1,3,9,38,49,4.3\r\n,James Franklin Smith Elementary,Evergreen Elementary,Santa Clara,961,10,2,0,73,5,7,1,10,1,6,10,0,11,17,8,24,29,N/A,99,1,5,14,37,43,4.17\r\n,Bay Farm Elementary,Alameda City Unified,Alameda,961,10,6,0,46,2,8,1,25,11,10,13,0,16,6,12,21,27,N/A,93,1,5,14,38,42,4.14\r\n,Palomares Elementary,Castro Valley Unified,Alameda,961,10,5,1,9,3,24,0,43,13,14,4,0,12,6,3,23,27,N/A,97,2,12,15,42,29,3.83\r\nD,KIPP Raices Academy,Los Angeles Unified,Los Angeles,961,10,2,0,0,0,98,0,0,0,92,0,0,62,0,7,,,,93,14,36,35,8,7,2.59\r\n,Vista Verde,Irvine Unified,Orange,961,10,1,0,25,3,6,0,59,5,3,16,0,8,4,6,30,33,26,0,0,0,0,0,0,\r\n,Springer Elementary,Los Altos Elementary,Santa Clara,960,10,1,0,26,0,9,0,50,14,3,12,0,5,8,13,23,25,N/A,98,1,2,3,22,71,4.61\r\n,Stone Ranch Elementary,Poway Unified,San Diego,960,10,1,0,31,5,5,0,52,6,5,11,0,20,7,5,26,35,N/A,95,0,1,4,33,61,4.54\r\n,Terman Middle,Palo Alto Unified,Santa Clara,960,10,2,0,38,1,11,0,39,7,11,6,0,6,13,11,N/A,25,24,98,2,3,6,17,72,4.52\r\n,Palm Crest Elementary,La Canada Unified,Los Angeles,960,10,0,1,22,1,12,0,56,7,2,13,0,8,6,13,17,31,N/A,99,1,1,6,32,60,4.49\r\n,Ridgecrest Intermediate,Palos Verdes Peninsula Unified,Los Angeles,960,10,3,0,48,2,6,0,39,2,2,9,0,9,6,8,N/A,32,29,95,1,2,6,35,56,4.44\r\n,Adaline E. Kent Middle,Kentfield Elementary,Marin,960,10,1,0,5,0,7,0,73,11,0,0,0,1,5,8,N/A,23,22,99,0,3,5,39,53,4.41\r\n,,Rancho Santa Fe Elementary,San Diego,960,B,1,1,5,0,10,0,82,0,0,0,0,4,3,11,17,19,14,95,1,2,7,35,55,4.39\r\n,Highland Oaks Elementary,Arcadia Unified,Los Angeles,960,10,2,0,57,3,13,0,25,0,11,2,0,12,13,9,23,29,N/A,96,3,3,7,31,56,4.34\r\n,Woodland Hills Elementary,Los Angeles Unified,Los Angeles,960,10,7,1,9,2,10,0,70,0,8,39,0,2,2,8,14,8,N/A,58,1,4,22,65,8,3.76\r\n,Santiago Hills Elementary,Irvine Unified,Orange,960,10,3,0,50,2,7,0,35,3,6,28,0,11,9,11,26,31,N/A,0,0,0,0,0,0,\r\n,Palo Verde Elementary,Palo Alto Unified,Santa Clara,959,10,1,0,38,2,9,1,46,1,7,1,0,12,8,7,24,22,N/A,100,0,4,5,16,75,4.63\r\n,Oak Knoll Elementary,Menlo Park City Elementary,San Mateo,959,10,2,0,7,0,9,1,74,7,3,2,0,8,0,6,20,25,N/A,99,0,3,3,21,72,4.61\r\n,Paradise Canyon Elementary,La Canada Unified,Los Angeles,959,10,1,0,26,1,11,0,55,6,1,10,0,6,7,10,20,30,N/A,99,0,1,5,31,63,4.56\r\n,Dingeman Elementary,San Diego Unified,San Diego,959,10,2,0,37,5,7,0,39,10,5,58,0,18,10,5,24,31,N/A,98,0,2,5,31,63,4.54\r\n,Blossom Hill Elementary,Los Gatos Union Elementary,Santa Clara,959,10,1,2,15,0,7,1,67,7,3,14,0,2,9,4,24,28,N/A,97,0,0,5,36,58,4.52\r\n,El Carmelo Elementary,Palo Alto Unified,Santa Clara,959,10,2,0,34,2,14,0,40,8,11,2,0,13,10,8,22,24,N/A,99,3,5,4,18,71,4.49\r\n,Manhattan Beach Middle,Manhattan Beach Unified,Los Angeles,959,10,2,0,8,0,11,0,66,12,2,11,0,1,2,9,N/A,29,30,99,0,1,7,36,56,4.47\r\n,Mountain View Elementary,Goleta Union Elementary,Santa Barbara,959,10,0,0,10,1,14,0,71,3,7,42,0,9,6,11,18,22,N/A,98,3,4,9,27,58,4.33\r\n,Oak Hills Elementary,Oak Park Unified,Ventura,959,10,1,1,17,0,6,0,73,2,4,3,0,3,2,16,24,32,N/A,94,0,3,9,40,47,4.3\r\nD,Rocklin Academy,Rocklin Unified,Placer,959,10,1,0,17,3,7,0,62,10,4,11,0,3,4,7,24,29,N/A,99,0,2,9,48,41,4.28\r\n,Del Sur Elementary,Poway Unified,San Diego,959,10,4,1,18,4,12,1,54,5,16,7,0,14,1,9,25,29,N/A,88,1,5,8,38,48,4.28\r\n,Alta Vista Elementary,Union Elementary,Santa Clara,959,10,1,0,17,1,8,0,70,3,7,10,0,6,5,11,24,28,N/A,97,1,1,12,42,44,4.27\r\n,Rosemont Middle,Glendale Unified,Los Angeles,959,10,1,0,27,3,13,0,55,1,16,34,0,10,24,9,N/A,N/A,29,87,2,18,14,41,26,3.72\r\n,Gardner Bullis Elementary,Los Altos Elementary,Santa Clara,958,10,0,0,24,0,5,0,61,9,0,10,0,4,5,11,22,22,N/A,100,0,0,1,24,74,4.72\r\n,Ashley Falls Elementary,Del Mar Union Elementary,San Diego,958,10,0,0,26,2,5,0,65,2,3,0,0,3,6,16,19,26,N/A,100,0,1,5,29,66,4.59\r\n,Saratoga Elementary,Saratoga Union Elementary,Santa Clara,958,10,0,0,28,0,5,0,58,8,2,100,0,8,7,13,21,29,N/A,100,0,1,4,31,63,4.56\r\n,Carmel Creek Elementary,Solana Beach Elementary,San Diego,958,10,1,0,36,1,6,0,54,1,5,16,0,14,10,13,19,19,N/A,97,0,1,6,30,63,4.54\r\n,Mill Valley Middle,Mill Valley Elementary,Marin,958,10,1,0,8,1,7,0,77,6,5,7,0,2,2,9,N/A,24,26,98,0,2,4,32,62,4.53\r\n,Warner Avenue Elementary,Los Angeles Unified,Los Angeles,958,10,2,1,13,0,5,0,78,0,5,15,0,4,2,10,13,7,N/A,88,0,2,8,28,61,4.49\r\n,South Hillsborough,Hillsborough City Elementary,San Mateo,958,10,0,0,12,2,4,0,81,1,0,5,0,4,5,22,16,24,N/A,99,0,2,10,29,59,4.44\r\nY,Marshall Lane Elementary,Campbell Union,Santa Clara,958,10,3,1,25,3,10,0,58,1,8,20,0,10,9,5,22,29,N/A,99,1,2,11,47,39,4.23\r\n,Rancho Elementary,Novato Unified,Marin,958,10,1,0,10,0,6,0,79,4,8,2,0,2,5,9,19,27,N/A,100,0,3,13,44,40,4.21\r\n,Overland Avenue Elementary,Los Angeles Unified,Los Angeles,958,10,7,0,20,3,10,0,59,0,13,20,0,1,3,8,12,6,N/A,19,2,2,13,52,31,4.09\r\n,Vista Elementary,Simi Valley Unified,Ventura,958,10,2,0,24,3,18,0,48,4,11,17,0,5,11,8,24,31,N/A,97,2,13,20,38,27,3.74\r\n,West Valley Elementary,Cupertino Union,Santa Clara,957,10,2,0,53,2,3,0,38,2,2,0,0,4,15,10,23,31,N/A,95,0,0,3,27,69,4.65\r\n,Monta Vista High,Fremont Union High,Santa Clara,957,10,0,0,79,1,2,0,17,2,3,12,0,4,17,4,N/A,N/A,30,100,1,2,5,19,74,4.63\r\n,Joaquin Moraga Intermediate,Moraga Elementary,Contra Costa,957,10,1,0,17,2,6,0,63,11,2,0,0,0,1,9,N/A,28,25,96,0,1,4,34,60,4.53\r\n,Sandra J. Gallardo Elementary,Folsom-Cordova Unified,Sacramento,957,10,1,0,25,1,6,1,62,4,1,14,0,5,10,9,30,34,N/A,93,0,1,9,38,51,4.39\r\nD,Rocklin Academy at Meyers Street,Rocklin Unified,Placer,957,10,0,0,24,2,7,0,54,14,7,13,0,4,6,10,24,30,N/A,100,0,0,14,33,52,4.38\r\n,Francis Hopkinson Elementary,Los Alamitos Unified,Orange,957,10,3,0,11,3,15,0,65,3,4,10,0,1,3,7,24,35,N/A,99,0,2,15,37,46,4.25\r\n,Clover Avenue Elementary,Los Angeles Unified,Los Angeles,957,10,8,1,42,3,15,1,30,0,20,20,0,13,13,7,18,17,N/A,97,2,3,16,27,52,4.24\r\n,Independent Elementary,Castro Valley Unified,Alameda,957,10,7,0,32,5,14,0,28,13,7,9,0,10,7,5,23,29,N/A,99,1,4,13,41,40,4.16\r\n,Rossmoor Elementary,Los Alamitos Unified,Orange,957,10,2,0,9,1,23,0,58,8,8,14,0,1,4,6,24,35,N/A,99,0,4,20,38,39,4.1\r\n,Nelda Mundy Elementary,Fairfield-Suisun Unified,Solano,957,10,9,1,8,19,15,1,34,13,14,13,0,5,7,7,28,33,N/A,97,2,12,24,49,13,3.59\r\n,Lincoln Elementary,Oakland Unified,Alameda,957,10,3,0,87,2,3,0,2,2,83,45,0,44,44,6,24,30,N/A,46,19,37,18,17,8,2.59\r\n,Lakeside Middle,Irvine Unified,Orange,957,10,3,0,35,2,12,0,45,2,14,20,0,12,14,10,N/A,N/A,31,0,0,0,0,0,0,\r\n,Lucille M. Nixon Elementary,Palo Alto Unified,Santa Clara,956,10,2,0,33,1,10,1,50,1,7,1,0,16,3,8,24,23,N/A,100,2,3,3,11,81,4.65\r\n,Palos Verdes Intermediate,Palos Verdes Peninsula Unified,Los Angeles,956,10,2,0,20,2,6,0,64,5,1,14,0,4,2,10,N/A,31,31,96,0,0,5,39,56,4.49\r\n,Santa Rita Elementary,Los Altos Elementary,Santa Clara,956,10,1,0,34,2,13,1,38,9,10,10,0,16,13,12,21,25,N/A,96,3,4,4,21,69,4.49\r\n,Sycamore Valley Elementary,San Ramon Valley Unified,Contra Costa,956,10,1,0,12,0,7,0,68,11,1,4,0,2,1,6,25,30,N/A,98,0,1,5,50,44,4.37\r\n,Marengo Elementary,South Pasadena Unified,Los Angeles,956,10,2,0,36,3,22,0,34,2,16,8,0,9,8,8,20,35,N/A,99,1,3,11,32,54,4.35\r\n,Montecito Union,Montecito Union Elementary,Santa Barbara,956,10,0,0,5,1,10,1,83,0,2,0,0,4,3,9,15,18,N/A,99,2,2,8,37,51,4.33\r\n,Brewer Island Elementary,San Mateo-Foster City,San Mateo,956,10,0,0,60,4,6,1,20,9,4,9,0,16,10,6,26,28,N/A,98,0,3,16,35,46,4.24\r\n,Ladera Ranch Middle,Capistrano Unified,Orange,956,10,2,0,7,2,15,0,68,6,10,19,0,1,5,7,N/A,29,29,69,1,2,15,43,39,4.19\r\n,South Lake Middle,Irvine Unified,Orange,956,10,6,0,32,3,15,1,41,3,22,17,0,11,14,9,N/A,N/A,30,1,0,17,17,0,67,4.17\r\n,Kensington Elementary,West Contra Costa Unified,Contra Costa,956,10,8,0,16,0,6,0,69,0,8,16,0,6,6,9,22,32,N/A,94,0,6,16,44,33,4.04\r\n,Lowell High,San Francisco Unified,San Francisco,956,10,2,0,60,6,9,0,15,2,40,63,0,2,37,3,N/A,N/A,30,86,10,23,13,32,22,3.34\r\nY,Western Center Academy,Hemet Unified,Riverside,956,10,3,1,2,1,24,0,66,3,20,17,0,1,2,4,N/A,32,32,100,5,25,37,21,11,3.08\r\nD,Oakland Charter High,Oakland Unified,Alameda,956,10,5,0,29,0,63,1,2,0,84,1,1,17,10,1,N/A,N/A,5,70,44,35,15,6,0,1.83\r\n,,San Marino Unified,Los Angeles,955,B,1,0,55,1,8,0,30,5,0,0,0,4,10,9,25,30,26,89,0,2,6,37,54,4.43\r\n,Cherry Chase Elementary,Sunnyvale,Santa Clara,955,10,1,0,53,2,7,0,30,5,7,0,0,20,17,3,22,31,N/A,98,1,3,6,33,57,4.42\r\n,Franklin Elementary,Burlingame Elementary,San Mateo,955,10,0,0,35,4,8,2,42,10,7,0,0,26,8,5,23,30,N/A,98,0,3,7,41,49,4.37\r\nY,Arundel Elementary,San Carlos Elementary,San Mateo,955,10,0,0,12,4,17,0,67,0,5,0,0,12,1,6,22,26,N/A,100,1,2,8,42,48,4.34\r\n,Rancho Romero Elementary,San Ramon Valley Unified,Contra Costa,955,10,0,0,5,0,6,1,81,6,0,7,0,2,0,7,25,30,N/A,98,1,1,8,47,44,4.33\r\n,R. Roger Rowe Middle,Rancho Santa Fe Elementary,San Diego,955,10,1,0,6,0,12,0,81,0,0,0,0,4,4,12,N/A,N/A,14,89,2,3,8,38,49,4.29\r\n,Riverview Elementary,Clovis Unified,Fresno,955,10,2,0,14,3,23,0,53,5,15,3,0,4,5,4,24,33,N/A,99,0,4,18,42,36,4.1\r\n,Orchard Hills,Tustin Unified,Orange,955,10,3,0,39,3,14,0,37,3,16,27,0,5,16,5,N/A,32,32,97,2,4,14,40,40,4.1\r\nY,Quail Lake Environmental Charter,Sanger Unified,Fresno,955,10,1,0,9,2,27,0,58,2,23,8,0,4,4,2,24,31,26,100,2,6,29,62,1,3.53\r\n,Stonegate Elementary,Irvine Unified,Orange,955,10,2,0,57,5,8,0,26,3,8,10,0,24,6,8,29,33,N/A,0,0,0,0,0,0,\r\n,Venado Middle,Irvine Unified,Orange,955,10,3,0,42,4,14,1,32,4,16,29,0,6,14,7,N/A,N/A,31,0,0,0,0,0,0,\r\n,Almond Elementary,Los Altos Elementary,Santa Clara,954,10,0,0,29,1,12,0,49,9,10,11,0,12,10,10,22,28,N/A,99,4,4,3,20,69,4.47\r\n,Las Lomitas Elementary,Las Lomitas Elementary,San Mateo,954,10,2,0,17,1,11,0,69,0,2,0,0,8,0,17,2,N/A,N/A,98,2,3,4,35,56,4.4\r\n,Solana Santa Fe Elementary,Solana Beach Elementary,San Diego,954,10,0,0,7,0,13,0,78,0,6,9,0,5,4,14,19,22,N/A,99,1,5,5,40,51,4.35\r\n,Brookside Elementary,Oak Park Unified,Ventura,954,10,2,0,12,0,5,0,77,3,5,3,0,2,11,11,24,33,N/A,92,0,2,11,52,35,4.21\r\n,Leonard G. Westhoff Elementary,Walnut Valley Unified,Los Angeles,954,10,1,0,71,7,16,0,5,0,8,22,0,10,14,7,23,31,N/A,95,0,3,11,51,34,4.15\r\n,First Avenue Middle,Arcadia Unified,Los Angeles,954,10,1,0,71,3,12,0,13,0,20,6,0,7,20,7,N/A,31,29,96,3,6,12,44,35,4\r\n,Day Creek Intermediate,Etiwanda Elementary,San Bernardino,954,10,8,0,13,4,35,0,35,3,18,25,0,2,6,10,N/A,33,29,97,2,10,30,38,21,3.65\r\n,Yu (Alice Fong) Elementary,San Francisco Unified,San Francisco,954,10,3,0,65,2,4,1,7,4,29,15,0,14,20,3,22,30,29,74,3,24,12,36,24,3.53\r\n,Alderwood Elementary,Irvine Unified,Orange,954,10,1,0,55,2,6,0,31,4,6,16,0,18,8,8,31,31,N/A,0,0,0,0,0,0,\r\n,Park Village Elementary,Poway Unified,San Diego,953,10,1,0,37,7,6,0,47,2,5,12,0,17,9,9,24,32,N/A,95,0,1,6,34,59,4.52\r\n,Crocker Highlands Elementary,Oakland Unified,Alameda,953,10,19,1,8,1,6,0,53,10,6,64,0,1,2,9,25,31,N/A,64,1,1,7,33,59,4.48\r\n,Creekside Elementary,Poway Unified,San Diego,953,10,2,0,33,5,6,0,52,2,3,15,0,15,6,12,27,33,N/A,89,0,1,5,40,54,4.46\r\n,Deer Canyon Elementary,Poway Unified,San Diego,953,10,1,0,40,10,7,1,39,4,8,13,0,20,9,9,25,33,N/A,92,0,2,6,36,56,4.46\r\n,,Kentfield Elementary,Marin,953,B,1,0,4,1,9,0,72,12,0,0,0,2,5,8,20,23,22,98,0,3,5,36,56,4.44\r\n,Carolyn A. Clark Elementary,Evergreen Elementary,Santa Clara,953,10,1,0,78,7,6,1,7,1,7,10,0,13,24,8,24,31,N/A,100,1,4,11,34,50,4.26\r\n,Parkmont Elementary,Fremont Unified,Alameda,953,10,2,0,65,3,9,0,15,4,14,12,0,12,24,4,28,30,N/A,95,3,7,9,34,47,4.16\r\n,Quail Summit Elementary,Walnut Valley Unified,Los Angeles,953,10,3,0,61,3,16,2,15,0,11,18,0,7,16,7,25,28,N/A,96,1,3,15,45,36,4.13\r\n,Nohl Canyon Elementary,Orange Unified,Orange,953,10,1,0,21,2,13,0,58,3,6,15,0,5,3,4,30,31,N/A,99,1,4,17,41,37,4.09\r\n,Evergreen Elementary,Evergreen Elementary,Santa Clara,953,10,1,0,73,6,12,0,8,1,9,8,0,13,18,7,24,29,N/A,100,1,10,11,35,43,4.08\r\n,,Latrobe,El Dorado,953,B,0,0,1,0,9,0,83,7,4,29,0,0,0,12,19,19,N/A,100,0,1,24,50,25,3.99\r\n,Richard Henry Dana Middle,Arcadia Unified,Los Angeles,953,10,2,0,70,2,14,0,12,0,16,9,0,6,19,8,N/A,31,27,96,3,8,16,39,35,3.95\r\n,Richard Henry Lee Elementary,Los Alamitos Unified,Orange,953,10,3,0,9,2,31,0,50,4,18,10,0,4,9,8,24,35,N/A,100,2,9,27,28,34,3.81\r\n,Plaza Vista,Irvine Unified,Orange,953,10,1,0,58,5,8,1,21,6,6,18,0,15,17,5,30,35,30,0,0,0,0,0,0,\r\n,Fairmeadow Elementary,Palo Alto Unified,Santa Clara,952,10,3,0,40,1,8,0,41,5,6,0,0,14,11,9,26,23,N/A,99,0,2,3,23,72,4.64\r\n,Torrey Hills,Del Mar Union Elementary,San Diego,952,10,1,0,35,1,10,0,48,5,4,0,0,14,8,12,19,24,N/A,100,0,1,5,33,61,4.52\r\n,,La Canada Unified,Los Angeles,952,B,1,0,26,1,10,0,56,6,1,17,0,5,7,10,19,31,30,99,0,2,6,33,58,4.48\r\n,Arroyo Elementary,Tustin Unified,Orange,952,10,1,0,8,0,11,0,75,3,2,12,0,2,0,8,25,35,N/A,99,0,1,10,40,49,4.36\r\n,Phoebe Apperson Hearst Elementary,Pleasanton Unified,Alameda,952,10,3,0,44,3,7,0,44,0,9,9,0,6,11,7,25,33,N/A,96,1,5,9,35,51,4.3\r\n,Greenbrook Elementary,San Ramon Valley Unified,Contra Costa,952,10,0,0,10,1,7,0,78,2,2,4,0,3,1,7,25,30,N/A,94,0,2,8,48,42,4.29\r\n,Kings Mountain Elementary,Cabrillo Unified,San Mateo,952,10,0,0,8,2,13,0,64,11,2,4,0,4,8,2,26,N/A,N/A,96,0,2,14,47,37,4.2\r\n,Castlebay Lane Elementary,Los Angeles Unified,Los Angeles,952,10,4,0,37,5,12,0,43,0,12,27,0,5,7,11,16,14,N/A,95,0,5,10,52,33,4.12\r\n,Mountain Avenue Elementary,Glendale Unified,Los Angeles,952,10,1,1,29,2,7,0,58,3,4,18,0,13,9,8,24,33,N/A,91,0,6,14,43,37,4.11\r\n,Beryl Heights Elementary,Redondo Beach Unified,Los Angeles,952,10,5,2,10,2,15,1,62,2,13,15,0,7,1,9,25,34,N/A,100,2,4,23,41,30,3.93\r\n,Eastshore Elementary,Irvine Unified,Orange,952,10,2,1,39,3,12,0,40,3,14,23,0,15,9,6,28,33,N/A,0,0,0,0,0,0,\r\n,Valentine Elementary,San Marino Unified,Los Angeles,951,10,1,0,44,0,10,0,35,10,0,0,0,9,5,11,24,28,N/A,97,0,1,4,33,62,4.57\r\n,Mission San Jose High,Fremont Unified,Alameda,951,10,1,0,85,2,2,0,10,1,4,48,0,4,28,4,N/A,N/A,32,99,1,3,3,26,67,4.55\r\n,Montemalaga Elementary,Palos Verdes Peninsula Unified,Los Angeles,951,10,2,0,32,1,5,0,51,7,2,4,0,10,3,11,24,28,N/A,98,0,1,5,35,59,4.53\r\n,Sycamore Canyon,Conejo Valley Unified,Ventura,951,10,2,0,20,1,4,0,71,1,1,20,0,2,6,6,21,30,27,57,0,1,7,37,55,4.45\r\n,Meadows Avenue Elementary,Manhattan Beach Unified,Los Angeles,951,10,0,0,11,1,11,0,62,14,3,5,0,3,1,15,23,30,N/A,98,1,2,8,33,56,4.42\r\n,Chinese Immersion School at DeAvila,San Francisco Unified,San Francisco,951,10,1,0,48,1,1,1,25,11,16,0,0,13,0,1,21,N/A,N/A,80,0,2,8,39,52,4.41\r\n,Chabot Elementary,Oakland Unified,Alameda,951,10,20,0,8,1,8,0,52,10,14,45,0,2,1,7,23,28,N/A,58,2,3,8,28,59,4.4\r\n,Tassajara Hills Elementary,San Ramon Valley Unified,Contra Costa,951,10,2,0,16,2,8,0,64,9,1,4,0,6,2,8,24,30,N/A,89,0,2,6,45,47,4.38\r\n,John Baldwin Elementary,San Ramon Valley Unified,Contra Costa,951,10,1,0,5,2,5,0,86,1,1,3,0,2,0,7,25,30,N/A,99,0,1,7,46,46,4.36\r\n,,Montecito Union Elementary,Santa Barbara,951,B,0,0,4,1,10,1,83,0,2,0,0,4,3,12,15,18,N/A,98,2,2,9,37,50,4.31\r\n,Peralta Elementary,Oakland Unified,Alameda,951,10,17,0,3,1,16,0,40,9,39,41,0,7,2,2,27,31,N/A,59,0,7,9,32,52,4.3\r\n,Olympus Junior High,Eureka Union,Placer,951,10,1,0,10,2,13,0,69,4,10,5,0,1,2,4,N/A,N/A,29,98,1,5,16,46,33,4.05\r\n,Maude B. Davis Elementary,Newport-Mesa Unified,Orange,951,10,2,0,12,3,15,1,66,0,25,4,0,6,5,9,24,33,N/A,95,2,3,17,51,26,3.97\r\n,Monte Vista Elementary,Glendale Unified,Los Angeles,951,10,0,0,36,3,9,0,50,2,8,19,0,7,22,9,22,34,N/A,88,1,12,9,53,26,3.9\r\n,Tamura (Hisamatsu) Elementary,Fountain Valley Elementary,Orange,951,10,1,0,45,3,12,0,36,2,22,1,0,19,10,4,29,31,N/A,92,2,7,24,46,21,3.77\r\n,Grapeland Elementary,Etiwanda Elementary,San Bernardino,951,10,12,0,13,8,37,0,24,7,23,11,0,13,2,10,26,31,N/A,90,2,9,32,31,26,3.71\r\n,Havens Elementary,Piedmont City Unified,Alameda,950,10,2,0,15,1,3,0,75,6,0,3,0,3,4,9,20,25,N/A,98,0,1,1,24,74,4.71\r\n,Corte Madera,Portola Valley Elementary,San Mateo,950,10,1,0,4,0,9,0,83,2,0,9,0,6,2,14,N/A,17,20,99,1,1,7,29,61,4.5\r\n,El Camino Creek Elementary,Encinitas Union Elementary,San Diego,950,10,0,0,6,1,6,0,84,3,1,2,0,1,2,12,23,30,N/A,100,0,0,5,38,56,4.5\r\n,Carmel Del Mar Elementary,Del Mar Union Elementary,San Diego,950,10,1,0,24,1,9,0,63,1,5,0,0,11,11,16,21,26,N/A,100,1,2,6,35,56,4.44\r\n,Oakhills Elementary,Eureka Union,Placer,950,10,3,0,10,1,6,0,77,0,5,0,0,5,0,9,22,N/A,N/A,99,0,2,7,40,50,4.39\r\n,Brookside Upper,Ross Valley Elementary,Marin,950,10,1,0,3,1,4,0,87,1,5,12,0,2,2,13,13,2,N/A,98,1,3,9,39,48,4.31\r\n,Mission Estancia Elementary,Encinitas Union Elementary,San Diego,950,10,1,0,6,2,12,0,75,4,5,2,0,3,3,10,23,30,N/A,99,1,1,7,48,43,4.3\r\n,Myford Elementary,Tustin Unified,Orange,950,10,1,0,45,3,9,1,32,9,10,13,0,10,13,5,27,32,N/A,97,0,3,9,43,45,4.3\r\n,Naples Elementary,Long Beach Unified,Los Angeles,950,10,6,0,8,0,8,0,65,1,12,0,0,2,1,10,27,29,N/A,89,1,3,9,43,44,4.28\r\n,Webster Elementary,Santa Monica-Malibu Unified,Los Angeles,950,10,2,0,3,0,10,1,78,6,9,8,0,4,1,8,25,30,N/A,80,1,2,13,43,41,4.22\r\n,Clarendon Alternative Elementary,San Francisco Unified,San Francisco,950,10,4,1,35,3,8,0,31,9,16,34,0,12,9,9,22,30,N/A,86,1,5,9,47,39,4.19\r\n,Olinda Elementary,Brea-Olinda Unified,Orange,950,10,2,0,34,5,23,0,36,1,15,15,0,15,12,8,27,30,N/A,99,1,5,16,44,34,4.04\r\n,Ivanhoe Elementary,Los Angeles Unified,Los Angeles,950,10,4,2,16,2,18,0,58,0,14,26,0,5,5,7,14,9,N/A,96,2,4,15,47,32,4.03\r\n,Encino Elementary,Los Angeles Unified,Los Angeles,950,10,11,1,7,3,26,0,52,0,30,24,0,8,9,9,16,14,N/A,95,4,7,19,44,26,3.82\r\n,Alamos Elementary,Temecula Valley Unified,Riverside,950,10,6,0,7,10,34,1,31,10,20,0,0,10,8,7,21,29,N/A,100,2,11,39,36,12,3.45\r\n,Pinecrest Elementary,Twain Harte-Long Barn Union El,Tuolumne,950,10,0,0,0,0,4,0,96,0,30,4,0,0,0,4,5,5,N/A,96,0,23,32,27,18,3.41\r\nY,Morris E. Dailey Charter Elementary,Fresno Unified,Fresno,950,10,7,0,7,0,58,2,24,0,65,2,1,8,6,3,23,22,N/A,90,5,22,38,19,16,3.18\r\n,Ormondale Elementary,Portola Valley Elementary,San Mateo,949,10,1,1,6,0,10,1,73,7,0,0,0,3,2,12,20,N/A,N/A,99,0,4,5,28,63,4.51\r\n,,Portola Valley Elementary,San Mateo,949,B,1,0,5,0,9,1,80,4,0,6,0,5,2,14,20,17,20,99,0,2,7,29,62,4.5\r\n,Newport Coast Elementary,Newport-Mesa Unified,Orange,949,10,1,1,13,0,3,0,80,1,4,9,0,2,1,9,22,28,N/A,98,0,1,6,36,57,4.48\r\n,Montevideo Elementary,San Ramon Valley Unified,Contra Costa,949,10,2,0,30,2,11,1,47,8,5,3,0,15,6,5,26,29,N/A,98,0,3,8,46,43,4.29\r\n,,Cold Spring Elementary,Santa Barbara,949,B,0,0,9,0,3,0,88,0,0,11,0,2,1,10,15,14,N/A,95,0,0,10,55,35,4.25\r\n,Gant Elementary,Long Beach Unified,Los Angeles,949,10,5,0,9,3,21,1,59,1,17,11,0,4,1,10,27,31,N/A,86,1,2,17,36,44,4.19\r\n,Thurston Middle,Laguna Beach Unified,Orange,949,10,2,0,2,0,7,1,86,2,9,15,0,2,3,8,N/A,29,28,96,2,4,12,43,39,4.12\r\n,Sequoia Elementary,Mt. Diablo Unified,Contra Costa,949,10,3,1,18,6,12,0,56,3,10,10,0,8,7,5,31,34,N/A,75,1,2,16,50,31,4.09\r\n,Pioneer Middle,Tustin Unified,Orange,949,10,2,0,39,3,14,0,38,2,9,26,0,6,14,4,N/A,32,34,98,2,9,14,41,34,3.97\r\n,Grazide Elementary,Hacienda la Puente Unified,Los Angeles,949,10,2,0,55,2,30,0,8,2,25,13,0,11,7,5,20,35,N/A,95,1,8,14,49,28,3.95\r\n,Carmenita Middle,ABC Unified,Los Angeles,949,10,10,0,47,11,21,1,7,3,28,25,1,6,20,8,N/A,N/A,29,92,3,6,17,47,26,3.87\r\n,Suisun Valley Elementary,Fairfield-Suisun Unified,Solano,949,10,3,3,5,3,32,0,42,11,34,12,0,11,12,11,25,33,31,95,10,24,21,29,15,3.14\r\n,Hillview Middle,Menlo Park City Elementary,San Mateo,948,10,2,0,6,0,12,1,67,11,6,9,0,4,5,8,N/A,24,23,99,2,3,7,24,64,4.44\r\n,Soleado Elementary,Palos Verdes Peninsula Unified,Los Angeles,948,10,5,0,44,3,6,0,34,8,3,3,0,24,3,11,25,24,N/A,97,1,2,6,38,53,4.41\r\n,Gale Ranch Middle,San Ramon Valley Unified,Contra Costa,948,10,4,0,52,6,7,0,25,7,2,12,0,3,15,6,N/A,29,29,96,0,2,9,38,50,4.36\r\n,Mesa Verde Middle,Poway Unified,San Diego,948,10,2,0,28,8,9,1,48,4,8,22,0,4,14,8,N/A,32,34,91,1,3,11,38,47,4.28\r\n,Willow Elementary,Las Virgenes Unified,Los Angeles,948,10,1,0,9,1,5,0,84,1,4,0,0,8,2,18,22,25,N/A,97,0,4,11,42,44,4.25\r\n,James Dougherty Elementary,Dublin Unified,Alameda,948,10,4,0,48,12,7,0,25,3,6,14,0,9,11,5,24,28,N/A,99,0,6,9,44,41,4.18\r\n,Santa Rosa Technology Magnet,Pleasant Valley,Ventura,948,10,2,1,11,4,16,0,65,0,8,18,0,2,4,5,23,33,30,97,1,4,17,39,40,4.13\r\n,Russell Ranch Elementary,Folsom-Cordova Unified,Sacramento,948,10,2,0,26,3,7,0,60,2,6,18,0,3,10,8,28,33,N/A,100,0,6,13,44,37,4.11\r\n,Country Lane Elementary,Moreland Elementary,Santa Clara,948,10,1,0,36,3,15,0,34,10,15,6,0,20,12,13,22,26,N/A,99,3,7,12,34,45,4.11\r\n,Suzanne Middle,Walnut Valley Unified,Los Angeles,948,10,1,0,61,7,20,0,10,0,12,34,0,5,15,8,N/A,29,31,96,1,6,17,45,31,3.99\r\n,Sharon Christa McAuliffe Middle,Los Alamitos Unified,Orange,948,10,3,1,14,3,19,0,56,5,12,31,0,1,9,7,N/A,33,32,97,1,6,22,37,35,3.98\r\n,Acacia Elementary,Fullerton Elementary,Orange,948,10,1,1,18,2,26,0,44,5,21,11,0,12,8,4,29,34,N/A,89,1,8,32,37,22,3.7\r\n,Meadow Park,Irvine Unified,Orange,948,10,2,0,34,2,6,0,51,4,15,12,0,13,11,13,28,28,N/A,0,0,0,0,0,0,\r\n,David Starr Jordan Middle,Palo Alto Unified,Santa Clara,947,10,4,1,25,1,9,1,55,4,9,6,0,2,10,11,N/A,24,23,99,1,3,4,21,71,4.57\r\n,,Mill Valley Elementary,Marin,947,B,1,0,7,1,6,0,78,6,4,5,0,3,1,10,22,25,26,99,0,1,4,32,62,4.55\r\n,Point Vicente Elementary,Palos Verdes Peninsula Unified,Los Angeles,947,10,4,0,35,1,10,0,37,13,5,3,0,12,2,11,21,27,N/A,95,0,0,11,36,53,4.41\r\n,Peters Canyon Elementary,Tustin Unified,Orange,947,10,1,0,29,2,10,0,52,4,4,27,0,7,6,10,25,32,N/A,96,0,2,6,47,46,4.37\r\n,Graystone Elementary,San Jose Unified,Santa Clara,947,10,0,0,41,1,9,1,43,2,8,34,0,9,13,9,28,31,N/A,95,2,3,10,29,57,4.36\r\n,Valle Verde Elementary,Mt. Diablo Unified,Contra Costa,947,10,1,0,14,1,11,0,64,7,6,9,0,4,4,10,26,30,N/A,80,0,1,13,38,47,4.31\r\n,D. J. Sedgwick Elementary,Cupertino Union,Santa Clara,947,10,1,1,65,3,11,0,16,1,10,0,0,5,25,8,25,30,N/A,93,2,3,11,30,54,4.31\r\n,Cumberland Elementary,Sunnyvale,Santa Clara,947,10,1,0,38,2,11,0,45,2,16,0,0,18,11,8,22,28,N/A,100,3,5,9,23,59,4.31\r\n,Golden Elementary,Placentia-Yorba Linda Unified,Orange,947,10,1,0,33,1,14,0,44,5,9,32,0,4,5,10,30,31,N/A,84,1,3,15,36,45,4.22\r\n,Mound Elementary,Ventura Unified,Ventura,947,10,1,0,10,1,13,0,70,6,8,29,0,3,2,4,24,33,N/A,100,0,3,16,40,41,4.19\r\n,Lakeview Elementary,Placentia-Yorba Linda Unified,Orange,947,10,1,0,35,4,13,0,44,2,5,11,0,5,6,10,25,30,N/A,95,0,5,13,41,41,4.18\r\n,Camino Grove Elementary,Arcadia Unified,Los Angeles,947,10,1,1,71,2,11,0,13,0,16,5,0,15,12,7,25,31,N/A,95,2,5,14,37,42,4.13\r\n,Valley Oak Elementary,Clovis Unified,Fresno,947,10,3,0,11,3,27,0,50,6,21,3,0,2,4,6,24,32,N/A,98,1,7,17,36,38,4.02\r\n,Third Street Elementary,Los Angeles Unified,Los Angeles,947,10,9,0,56,1,7,0,26,0,20,27,0,28,9,4,18,17,N/A,96,1,5,14,55,25,3.99\r\nY,El Rancho Charter,Orange Unified,Orange,947,10,2,0,18,3,20,0,52,3,11,17,0,3,5,7,N/A,N/A,32,96,2,7,22,39,30,3.88\r\n,Amelia Earhart Elementary,Alameda City Unified,Alameda,947,10,6,0,41,5,8,1,32,6,12,11,0,21,4,10,23,31,N/A,97,2,9,22,39,29,3.84\r\n,Chaboya Middle,Evergreen Elementary,Santa Clara,947,10,2,0,60,6,16,0,15,1,12,18,0,6,24,8,N/A,N/A,30,100,3,17,16,33,30,3.7\r\n,Park Western Place Elementary,Los Angeles Unified,Los Angeles,947,10,9,1,9,7,56,1,17,0,55,33,0,9,11,11,16,12,N/A,97,8,15,28,27,22,3.41\r\n,Accelerated Achievement Academy,Hollister,San Benito,947,10,2,1,6,0,62,0,26,1,51,43,11,6,26,0,N/A,30,N/A,96,19,17,32,24,8,2.86\r\n,Solana Highlands Elementary,Solana Beach Elementary,San Diego,946,10,0,0,28,1,5,0,65,1,1,14,0,7,7,12,20,20,N/A,94,0,0,3,26,70,4.65\r\n,Tamalpais Valley Elementary,Mill Valley Elementary,Marin,946,10,1,0,5,2,5,0,79,9,1,2,0,1,0,12,22,29,N/A,100,0,0,2,32,66,4.63\r\n,Lynbrook High,Fremont Union High,Santa Clara,946,10,1,0,80,1,2,0,15,2,6,12,0,5,23,7,N/A,N/A,29,100,1,3,5,20,72,4.59\r\n,Robert E. Willett Elementary,Davis Joint Unified,Yolo,946,10,4,0,28,3,13,0,51,0,15,29,0,10,8,10,24,29,N/A,96,1,2,8,18,72,4.59\r\n,Reed Elementary,Reed Union Elementary,Marin,946,10,2,0,8,0,5,1,81,0,2,0,0,2,1,6,22,N/A,N/A,100,0,0,6,31,63,4.56\r\nY,Kenter Canyon Elementary,Los Angeles Unified,Los Angeles,946,10,5,0,8,0,7,0,80,0,5,20,0,3,4,11,12,5,N/A,82,1,4,2,27,66,4.54\r\n,Louise Van Meter Elementary,Los Gatos Union Elementary,Santa Clara,946,10,0,1,14,0,7,0,71,5,3,10,0,2,7,6,22,29,N/A,97,1,0,4,36,59,4.52\r\n,Rancho Vista Elementary,Palos Verdes Peninsula Unified,Los Angeles,946,10,3,0,21,2,9,0,61,4,1,1,0,11,1,13,24,30,N/A,97,0,1,7,29,62,4.51\r\n,La Canada High,La Canada Unified,Los Angeles,946,10,0,0,27,0,9,0,57,5,1,21,0,2,7,8,N/A,N/A,30,99,1,2,7,35,56,4.43\r\nY,Palisades Charter Elementary,Los Angeles Unified,Los Angeles,946,10,1,0,7,1,9,0,82,0,6,16,0,2,1,11,12,14,N/A,97,1,4,7,32,56,4.39\r\n,,Hermosa Beach City Elementary,Los Angeles,946,B,0,0,1,0,7,0,81,3,3,0,0,0,1,13,25,28,2,98,0,3,9,41,47,4.31\r\n,Dixie Elementary,Dixie Elementary,Marin,946,10,2,0,11,1,8,0,78,0,5,5,0,5,2,14,19,22,N/A,98,1,3,8,41,47,4.3\r\n,Fairlands Elementary,Pleasanton Unified,Alameda,946,10,2,1,47,4,7,0,39,0,6,10,0,5,21,9,25,29,N/A,96,1,3,9,39,47,4.28\r\nY,Village,Campbell Union,Santa Clara,946,10,1,0,10,1,11,1,77,0,3,25,0,2,3,5,24,25,N/A,99,0,2,10,45,42,4.27\r\n,Roosevelt Elementary,Santa Monica-Malibu Unified,Los Angeles,946,10,4,1,11,2,11,0,67,4,11,8,0,6,1,9,23,26,N/A,90,1,4,10,39,46,4.26\r\nY,Creekside Cooperative Charter,Newcastle Elementary,Placer,946,10,0,0,0,0,0,0,90,5,21,12,0,0,0,0,15,15,N/A,86,0,3,17,42,39,4.17\r\n,Summerland Elementary,Carpinteria Unified,Santa Barbara,946,10,0,2,2,0,35,0,60,0,26,14,0,5,5,7,19,22,N/A,79,0,9,21,38,32,3.94\r\n,Longley Way Elementary,Arcadia Unified,Los Angeles,946,10,1,0,71,3,11,0,15,0,22,3,0,23,17,7,21,30,N/A,95,5,10,13,40,33,3.87\r\n,Edison Computech,Fresno Unified,Fresno,946,10,7,0,12,1,59,1,20,0,67,47,1,0,33,1,N/A,N/A,33,94,20,24,26,14,17,2.83\r\n,Addison Elementary,Palo Alto Unified,Santa Clara,945,10,2,2,17,1,7,1,68,2,10,4,0,12,3,8,26,22,N/A,98,1,3,3,19,74,4.61\r\n,Walnut Heights Elementary,Walnut Creek Elementary,Contra Costa,945,10,2,0,9,3,9,0,73,4,7,2,0,6,3,8,23,23,N/A,89,0,1,8,40,50,4.4\r\n,Monterey Ridge Elementary,Poway Unified,San Diego,945,10,2,0,39,11,6,1,37,4,8,14,0,20,6,10,27,32,N/A,93,1,2,8,41,48,4.34\r\n,Medea Creek Middle,Oak Park Unified,Ventura,945,10,2,1,15,1,5,0,75,2,6,19,0,1,6,9,N/A,32,28,92,0,2,13,44,41,4.25\r\n,Woods (Harold L.) Elementary,Clovis Unified,Fresno,945,10,1,1,16,2,17,0,61,1,14,2,0,6,5,2,23,33,N/A,98,1,6,14,37,41,4.11\r\nY,Forest Hill Elementary,Campbell Union,Santa Clara,945,10,4,0,24,3,14,0,55,0,13,19,0,15,12,11,22,26,N/A,98,4,7,13,43,34,3.97\r\n,Fort Washington Elementary,Clovis Unified,Fresno,945,10,3,0,9,1,27,0,58,2,25,3,0,4,3,3,24,35,N/A,93,1,9,21,37,31,3.88\r\n,Liberty Elementary,Clovis Unified,Fresno,945,10,3,0,9,4,26,1,52,5,31,5,0,3,4,6,23,31,N/A,97,1,10,24,36,29,3.82\r\n,SOAR High (Students On Academic Rise),Antelope Valley Union High,Los Angeles,945,10,15,1,3,2,52,0,26,0,13,3,3,1,21,1,N/A,N/A,18,94,15,22,29,21,13,2.94\r\n,Anthony G. Bacich Elementary,Kentfield Elementary,Marin,944,10,1,0,4,1,10,0,71,12,0,0,0,4,5,7,20,23,N/A,97,1,2,6,32,59,4.47\r\n,Lafayette Elementary,Lafayette Elementary,Contra Costa,944,10,3,0,16,3,9,0,65,4,4,1,0,6,0,10,23,28,N/A,99,1,1,5,40,53,4.43\r\n,Miramonte High,Acalanes Union High,Contra Costa,944,10,1,0,16,1,6,0,68,6,1,43,0,0,3,9,N/A,N/A,27,97,1,1,6,39,52,4.41\r\n,Thornhill Elementary,Oakland Unified,Alameda,944,10,9,0,13,1,11,0,50,13,6,40,0,5,4,8,26,26,N/A,40,0,0,12,38,50,4.38\r\n,,Solana Beach Elementary,San Diego,944,B,1,0,19,1,11,0,67,1,8,14,0,9,6,13,20,23,N/A,97,2,4,7,30,57,4.36\r\n,Willow Grove Elementary,Poway Unified,San Diego,944,10,3,0,18,5,10,1,59,4,12,9,0,17,4,12,27,31,N/A,89,1,3,8,39,50,4.34\r\n,Hermosa Valley Elementary,Hermosa Beach City Elementary,Los Angeles,944,10,0,0,0,0,7,0,81,3,3,0,0,0,1,13,25,28,27,98,0,3,9,41,47,4.3\r\n,Ladera Elementary,Tustin Unified,Orange,944,10,2,0,28,1,13,0,50,5,8,17,0,10,4,8,23,31,N/A,97,0,3,9,46,42,4.26\r\n,Hugo Reid Elementary,Arcadia Unified,Los Angeles,944,10,4,0,57,2,15,0,22,0,18,3,0,16,14,9,24,32,N/A,96,2,5,9,36,47,4.21\r\n,Curie Elementary,San Diego Unified,San Diego,944,10,0,0,9,1,16,0,64,8,15,30,0,12,6,7,22,33,N/A,97,3,5,12,33,48,4.19\r\n,Sunset View Elementary,San Diego Unified,San Diego,944,10,0,0,1,0,18,0,74,5,13,48,0,8,1,4,23,21,N/A,96,4,3,12,35,46,4.17\r\n,Pleasanton Middle,Pleasanton Unified,Alameda,944,10,2,0,31,1,12,0,53,0,10,17,0,4,8,10,N/A,30,28,97,2,6,10,37,45,4.16\r\n,Red Oak Elementary,Oak Park Unified,Ventura,944,10,3,0,16,2,7,0,72,0,4,4,0,3,5,9,24,33,N/A,92,0,5,10,49,35,4.13\r\n,C. T. English Middle,Loma Prieta Joint Union Elemen,Santa Clara,944,10,1,1,7,1,8,0,80,2,6,38,0,1,1,10,N/A,5,24,97,2,3,28,34,33,3.93\r\n,Rolling Hills Elementary,Poway Unified,San Diego,944,10,7,0,8,12,17,0,51,5,21,6,0,23,3,13,24,33,N/A,93,2,7,20,39,32,3.91\r\n,Bonita Canyon Elementary,Irvine Unified,Orange,944,10,1,1,43,1,3,0,44,7,4,15,0,16,4,9,28,31,N/A,0,0,0,0,0,0,\r\n,Northwood Elementary,Irvine Unified,Orange,944,10,5,1,42,2,11,1,32,6,17,9,0,22,6,7,30,33,N/A,0,0,0,0,0,0,\r\n,Ross Elementary,Ross Elementary,Marin,943,10,0,0,2,2,5,0,91,0,0,0,0,0,0,10,20,17,19,77,0,0,1,33,65,4.62\r\n,,Ross Elementary,Marin,943,B,0,0,2,2,5,0,91,0,0,0,0,0,0,10,20,17,19,77,0,0,1,33,65,4.62\r\n,Harvest Park Middle,Pleasanton Unified,Alameda,943,10,2,1,34,2,7,0,55,0,5,22,0,2,9,9,N/A,30,25,99,1,4,10,37,49,4.29\r\n,Redwood Shores Elementary,Belmont-Redwood Shores Element,San Mateo,943,10,2,0,33,2,6,0,52,4,5,8,0,7,6,9,25,25,N/A,99,1,2,10,41,45,4.26\r\n,Brookside Elementary,Ross Valley Elementary,Marin,943,10,1,0,3,1,5,0,84,3,6,0,0,2,2,3,20,N/A,N/A,99,1,3,9,49,39,4.23\r\n,Sandpiper Elementary,Belmont-Redwood Shores Element,San Mateo,943,10,3,0,30,5,4,1,53,3,4,7,0,2,10,14,22,27,N/A,98,1,3,10,46,41,4.22\r\n,San Elijo Elementary,San Marcos Unified,San Diego,943,10,2,1,6,2,16,1,71,2,13,2,1,7,3,8,26,31,N/A,97,5,5,9,47,35,4.01\r\n,Loyal Barker Elementary,Garden Grove Unified,Orange,943,10,2,0,12,2,15,0,70,0,13,4,0,3,5,10,27,30,N/A,39,0,11,15,60,14,3.76\r\n,Ruskin Elementary,Berryessa Union Elementary,Santa Clara,943,10,1,0,70,6,13,1,5,4,21,11,0,43,23,8,24,30,N/A,100,2,9,29,31,28,3.74\r\n,Lunada Bay Elementary,Palos Verdes Peninsula Unified,Los Angeles,942,10,1,0,16,0,12,0,58,12,1,3,0,6,1,9,25,29,N/A,99,0,0,2,35,63,4.6\r\n,Edna Maguire Elementary,Mill Valley Elementary,Marin,942,10,3,0,9,1,5,0,75,7,3,5,0,4,1,7,22,28,N/A,100,0,1,4,33,63,4.57\r\n,Juana Briones Elementary,Palo Alto Unified,Santa Clara,942,10,1,0,31,0,10,1,46,10,12,0,0,16,7,8,22,24,N/A,98,1,7,2,19,71,4.52\r\n,Aurelia Pennekamp Elementary,Manhattan Beach Unified,Los Angeles,942,10,0,0,15,0,10,0,58,17,3,3,0,1,1,18,22,30,N/A,99,1,1,5,35,58,4.48\r\n,Empire Oaks Elementary,Folsom-Cordova Unified,Sacramento,942,10,3,0,20,1,6,0,66,3,1,13,0,2,8,7,29,33,N/A,95,0,2,9,43,46,4.33\r\n,Guadalupe Elementary,Union Elementary,Santa Clara,942,10,0,0,19,1,12,0,60,7,6,9,0,11,4,9,23,30,N/A,99,1,2,12,41,44,4.25\r\n,Vista Grande Elementary,San Ramon Valley Unified,Contra Costa,942,10,1,0,7,0,10,0,72,9,1,4,0,2,1,8,26,30,N/A,97,0,3,9,50,38,4.22\r\n,Neil A. Armstrong Elementary,San Ramon Valley Unified,Contra Costa,942,10,1,0,28,3,10,0,54,3,1,11,0,8,6,5,25,29,N/A,92,0,3,13,44,40,4.2\r\n,El Marino Elementary,Culver City Unified,Los Angeles,942,10,7,0,21,1,31,0,34,6,16,14,0,13,9,4,22,27,N/A,98,1,4,15,35,45,4.19\r\n,Oak Hills Elementary,Newhall,Los Angeles,942,10,3,0,27,6,13,0,45,6,5,12,0,11,10,8,24,30,N/A,100,0,3,13,48,36,4.18\r\nY,Carpenter Community Charter,Los Angeles Unified,Los Angeles,942,10,3,0,9,2,9,0,76,0,9,23,0,4,5,8,14,10,N/A,91,1,3,12,47,38,4.18\r\n,Hearst Elementary,San Diego Unified,San Diego,942,10,3,0,6,1,18,0,64,8,17,54,0,5,5,6,24,31,N/A,97,2,4,11,41,42,4.17\r\n,Edison Elementary,Alameda City Unified,Alameda,942,10,3,1,16,6,8,1,65,1,13,10,0,9,2,13,23,29,N/A,100,3,5,12,43,37,4.08\r\nD,New West Charter Middle,SBE - New West Charter Middle,Los Angeles,942,10,11,0,6,0,21,0,49,13,14,0,0,1,4,9,N/A,25,27,98,2,11,9,35,44,4.08\r\n,Evergreen Elementary,Walnut Valley Unified,Los Angeles,942,10,3,0,66,2,15,0,12,0,12,20,0,9,17,9,21,30,N/A,97,0,4,17,49,30,4.05\r\n,Arnold Adreani Elementary,Elk Grove Unified,Sacramento,942,10,6,0,29,4,17,0,35,9,26,10,0,6,15,6,24,26,N/A,98,3,10,22,37,28,3.77\r\n,Trabuco Elementary,Saddleback Valley Unified,Orange,942,10,4,0,0,2,17,0,69,4,33,10,0,12,2,13,25,19,N/A,94,12,6,20,33,29,3.59\r\nD,Novato Charter,Novato Unified,Marin,941,10,2,0,4,0,2,0,87,3,2,1,0,0,3,15,23,26,N/A,99,0,1,9,39,51,4.41\r\n,Diablo Vista Middle,San Ramon Valley Unified,Contra Costa,941,10,2,0,24,3,7,0,55,7,2,8,0,1,5,8,N/A,30,27,98,0,1,7,46,46,4.36\r\n,Frank L. Huff Elementary,Mountain View Whisman,Santa Clara,941,10,2,0,28,3,18,0,36,11,17,35,0,23,12,11,24,28,N/A,99,3,7,7,24,59,4.31\r\n,Jefferson Elementary,Redondo Beach Unified,Los Angeles,941,10,2,0,15,3,14,1,59,3,7,15,0,3,2,9,25,30,N/A,99,1,5,13,45,37,4.12\r\n,Bridgeport Elementary,Saugus Union,Los Angeles,941,10,5,0,19,7,15,0,53,0,7,11,0,9,8,10,23,28,N/A,98,0,5,17,47,30,4.01\r\n,Bud Rank Elementary,Clovis Unified,Fresno,941,10,4,1,9,2,20,0,60,4,20,3,0,4,4,4,24,33,N/A,99,1,9,17,37,37,4\r\n,Murphy Ranch Elementary,East Whittier City Elementary,Los Angeles,941,10,2,1,5,5,59,0,28,0,12,7,0,2,1,8,22,27,N/A,94,1,4,28,41,26,3.87\r\n,Lake Tahoe Environmental Science Magnet,Lake Tahoe Unified,El Dorado,941,10,0,1,1,0,6,0,88,3,19,6,0,2,1,9,21,32,N/A,93,0,22,18,35,24,3.62\r\n,,Piedmont City Unified,Alameda,940,B,2,0,17,1,4,0,70,5,0,8,0,3,4,12,20,22,24,99,0,1,2,30,66,4.61\r\n,Park Elementary,Mill Valley Elementary,Marin,940,10,0,0,4,0,4,0,85,6,0,3,0,3,1,10,22,30,N/A,100,1,2,1,35,61,4.53\r\nY,Westwood Elementary,Los Angeles Unified,Los Angeles,940,10,5,0,14,1,11,0,68,0,7,15,0,8,4,10,14,13,N/A,95,0,1,6,34,59,4.5\r\n,,Menlo Park City Elementary,San Mateo,940,B,2,0,6,0,13,1,66,10,5,5,0,8,3,7,21,24,23,99,2,4,6,24,64,4.45\r\n,,Manhattan Beach Unified,Los Angeles,940,B,2,0,9,0,11,0,64,12,3,8,0,1,1,11,22,29,28,99,1,2,8,36,53,4.4\r\n,Creekside Elementary,San Ramon Valley Unified,Contra Costa,940,10,1,0,37,3,7,0,44,8,1,5,0,8,6,3,23,25,N/A,98,0,2,8,41,49,4.38\r\n,San Marino High,San Marino Unified,Los Angeles,940,10,1,0,57,1,8,0,30,2,0,0,0,2,13,7,N/A,N/A,25,78,0,4,9,44,42,4.24\r\n,Circle View Elementary,Ocean View,Orange,940,10,1,0,15,1,19,1,56,7,9,28,0,6,9,8,23,29,N/A,95,1,2,24,39,34,4.02\r\n,Union Middle,Union Elementary,Santa Clara,940,10,1,0,12,1,14,0,70,1,8,14,0,2,7,9,N/A,29,29,98,2,4,17,46,31,3.99\r\n,Maple Creek Elementary,Clovis Unified,Fresno,940,10,4,1,19,2,20,0,50,3,30,3,0,5,5,4,24,35,N/A,97,3,8,19,35,35,3.91\r\n,Farragut Elementary,Culver City Unified,Los Angeles,940,10,12,0,15,1,27,0,40,4,29,9,0,6,7,9,24,29,N/A,94,4,9,19,35,33,3.84\r\n,Oak Grove Elementary,Visalia Unified,Tulare,940,10,2,1,9,1,41,0,43,3,35,24,0,4,5,6,29,33,N/A,98,2,10,34,31,24,3.66\r\n,Old Mill Elementary,Mill Valley Elementary,Marin,939,10,0,0,5,0,5,0,85,5,1,4,0,1,0,8,23,29,N/A,100,0,0,1,32,67,4.64\r\n,Monterey Hills Elementary,South Pasadena Unified,Los Angeles,939,10,2,0,41,4,25,0,25,3,15,8,0,9,7,13,20,34,N/A,100,0,2,13,32,53,4.37\r\n,Bollinger Canyon Elementary,San Ramon Valley Unified,Contra Costa,939,10,2,0,23,4,11,0,54,7,2,5,0,6,3,12,23,28,N/A,91,0,2,11,49,37,4.21\r\nY,Tierra Linda Middle,San Carlos Elementary,San Mateo,939,10,2,1,13,3,19,1,62,0,5,0,0,6,3,8,N/A,28,28,100,2,3,13,36,45,4.21\r\n,Linda Vista Elementary,Placentia-Yorba Linda Unified,Orange,939,10,2,0,10,0,21,0,61,5,9,7,0,2,1,8,23,35,N/A,83,0,3,17,41,39,4.15\r\n,Arroyo Vista Elementary,Capistrano Unified,Orange,939,10,1,0,9,3,18,0,63,5,10,3,0,4,3,9,25,30,N/A,95,1,3,19,38,39,4.11\r\n,Noddin Elementary,Union Elementary,Santa Clara,939,10,1,0,18,1,19,0,56,4,10,10,0,9,6,6,23,33,N/A,95,3,4,16,38,38,4.03\r\n,West Creek Academy,Saugus Union,Los Angeles,939,10,6,0,20,7,18,0,48,1,8,11,0,7,7,8,24,29,N/A,100,0,4,22,42,31,4\r\nY,Topanga Learn-Charter Elementary,Los Angeles Unified,Los Angeles,939,10,3,1,4,0,9,0,83,0,7,14,0,5,2,10,12,9,N/A,99,0,4,23,42,31,3.98\r\n,Pantera Elementary,Pomona Unified,Los Angeles,939,10,6,0,43,7,25,0,17,1,24,19,0,9,6,5,26,29,N/A,95,3,7,16,54,20,3.81\r\n,Richardson Prep Hi,San Bernardino City Unified,San Bernardino,939,10,11,1,2,1,72,0,12,1,100,33,0,3,45,1,N/A,32,29,76,26,28,22,13,11,2.54\r\n,John Muir Elementary,Cupertino Union,Santa Clara,938,10,0,0,82,0,3,0,13,1,2,0,0,32,25,5,21,24,N/A,93,1,1,9,24,65,4.51\r\n,Olivenhain Pioneer Elementary,Encinitas Union Elementary,San Diego,938,10,1,0,4,1,7,0,81,6,4,2,0,2,1,11,22,27,N/A,99,0,1,7,33,58,4.48\r\n,,Lafayette Elementary,Contra Costa,938,B,1,0,10,1,7,0,75,6,3,7,0,2,0,10,22,28,26,99,0,1,4,39,55,4.47\r\n,M. H. Stanley Middle,Lafayette Elementary,Contra Costa,938,10,1,0,10,1,6,0,76,6,4,11,0,1,0,9,N/A,28,26,99,0,2,5,38,55,4.45\r\n,Central Elementary,Belmont-Redwood Shores Element,San Mateo,938,10,1,0,16,1,14,1,53,13,3,6,0,7,8,12,24,22,N/A,78,0,2,9,34,54,4.39\r\n,Wade Thomas Elementary,Ross Valley Elementary,Marin,938,10,0,0,7,0,8,0,82,2,13,5,0,7,2,5,20,28,N/A,97,2,2,7,33,56,4.39\r\n,Point Dume Elementary,Santa Monica-Malibu Unified,Los Angeles,938,10,2,0,3,0,9,0,76,10,2,13,0,4,1,8,22,26,N/A,32,0,2,13,36,50,4.34\r\n,Chaparral Elementary,Capistrano Unified,Orange,938,10,1,0,7,3,12,0,73,4,8,4,0,3,4,6,25,32,N/A,82,0,1,12,40,46,4.32\r\n,Abraham Lincoln Elementary,Newport-Mesa Unified,Orange,938,10,2,0,8,0,8,1,81,1,9,5,0,3,1,11,23,29,N/A,95,0,3,7,48,41,4.26\r\n,Fairmont Elementary,Placentia-Yorba Linda Unified,Orange,938,10,1,0,12,2,15,0,64,4,6,10,0,3,2,9,21,36,N/A,53,0,3,20,36,41,4.14\r\n,Country Springs Elementary,Chino Valley Unified,San Bernardino,938,10,1,0,39,11,25,0,22,2,10,12,0,7,9,12,26,29,N/A,97,0,2,16,50,32,4.11\r\n,Bryant Ranch Elementary,Placentia-Yorba Linda Unified,Orange,938,10,1,0,15,2,17,0,60,4,7,6,0,5,2,5,24,32,N/A,92,0,3,18,45,34,4.09\r\n,Matthew Turner Elementary,Benicia Unified,Solano,938,10,6,0,6,11,14,1,49,14,5,0,0,1,4,10,25,30,N/A,100,0,5,18,46,31,4.02\r\n,Glenknoll Elementary,Placentia-Yorba Linda Unified,Orange,938,10,2,0,9,2,18,0,63,1,10,5,0,2,1,6,31,35,N/A,56,0,8,25,32,35,3.93\r\n,Corona Creek Elementary,Waugh Elementary,Sonoma,938,10,1,0,5,1,20,1,63,6,14,9,0,15,6,13,2,2,N/A,99,3,10,24,39,23,3.69\r\n,Jane Lathrop Stanford Middle,Palo Alto Unified,Santa Clara,937,10,2,1,41,1,10,1,40,4,9,7,0,7,14,11,N/A,24,22,98,1,3,4,18,73,4.59\r\n,Escondido Elementary,Palo Alto Unified,Santa Clara,937,10,4,0,17,1,22,0,47,8,14,0,0,16,6,12,24,19,N/A,100,1,4,6,15,74,4.57\r\n,Walnut Grove Elementary,Pleasanton Unified,Alameda,937,10,2,0,19,3,4,0,72,0,3,8,0,2,8,11,25,31,N/A,94,1,2,8,36,54,4.41\r\n,Dougherty Valley High,San Ramon Valley Unified,Contra Costa,937,10,5,0,58,6,5,0,21,5,3,11,0,2,12,5,N/A,N/A,30,95,0,3,8,39,49,4.35\r\n,Lang Ranch,Conejo Valley Unified,Ventura,937,10,1,0,15,2,12,0,66,5,8,18,0,4,7,10,21,31,N/A,98,1,3,7,40,48,4.31\r\n,Lake Forest Elementary,Rescue Union Elementary,El Dorado,937,10,1,0,4,1,13,0,72,6,6,7,0,1,2,11,29,29,N/A,97,0,1,11,45,43,4.29\r\n,Vista del Mar Elementary,Capistrano Unified,Orange,937,10,0,1,4,0,12,0,77,5,10,4,0,3,3,7,30,32,N/A,98,2,2,12,43,42,4.2\r\n,Iron Horse Middle,San Ramon Valley Unified,Contra Costa,937,10,3,0,24,3,11,1,46,12,3,11,0,2,10,8,N/A,30,29,98,0,4,14,43,39,4.18\r\n,Gold River Discovery Center K-8,San Juan Unified,Sacramento,937,10,3,2,21,3,10,0,60,1,14,9,0,5,7,7,28,33,30,81,0,3,16,42,39,4.15\r\n,Portola Hills Elementary,Saddleback Valley Unified,Orange,937,10,1,0,11,1,12,0,70,5,9,9,0,5,1,15,27,33,N/A,93,0,2,17,45,36,4.14\r\n,Los Alamitos Elementary,San Jose Unified,Santa Clara,937,10,2,0,20,1,13,0,59,1,10,33,0,9,5,4,30,30,N/A,96,3,5,10,42,40,4.11\r\n,Pico Canyon Elementary,Newhall,Los Angeles,937,10,4,0,19,5,23,0,42,6,14,12,0,19,2,8,24,30,N/A,98,1,4,18,45,32,4.02\r\n,Academy of the Canyons,William S. Hart Union High,Los Angeles,937,10,6,0,13,8,20,0,51,3,9,27,0,3,10,3,N/A,N/A,27,98,3,4,30,34,29,3.83\r\n,Tularcitos Elementary,Carmel Unified,Monterey,937,10,1,0,1,0,17,0,71,7,21,14,0,6,4,6,20,24,N/A,92,6,10,18,35,32,3.77\r\nY,River Valley Charter,Lakeside Union Elementary,San Diego,937,10,1,2,1,0,9,1,83,2,1,4,0,0,2,2,N/A,N/A,25,99,1,10,29,34,26,3.72\r\n,Los Alamitos Elementary,Los Alamitos Unified,Orange,937,10,4,0,14,5,36,0,38,2,25,7,0,7,10,5,23,36,N/A,99,2,13,40,31,14,3.44\r\n,Ulloa Elementary,San Francisco Unified,San Francisco,937,10,2,0,82,2,2,0,3,5,62,24,0,43,26,8,22,32,N/A,100,11,33,16,34,6,2.91\r\n,Crocker/Riverside Elementary,Sacramento City Unified,Sacramento,937,10,2,1,10,0,20,0,57,10,11,38,0,1,2,11,27,33,N/A,61,26,20,15,23,17,2.84\r\n,Deerfield Elementary,Irvine Unified,Orange,937,10,3,0,49,4,11,1,29,2,17,23,0,14,16,7,29,34,N/A,0,0,0,0,0,0,\r\n,Vista Grande Elementary,Palos Verdes Peninsula Unified,Los Angeles,936,10,1,0,56,1,4,0,36,1,2,3,0,16,2,7,26,28,N/A,98,0,2,7,39,52,4.41\r\n,Cupertino Middle,Cupertino Union,Santa Clara,936,10,2,0,47,1,8,0,40,1,10,7,0,2,20,9,N/A,27,27,92,1,4,10,29,56,4.33\r\n,Hicks Canyon Elementary,Tustin Unified,Orange,936,10,4,1,50,2,8,1,33,0,12,12,0,17,8,6,25,33,N/A,96,1,3,9,37,50,4.32\r\n,Dapplegray Elementary,Palos Verdes Peninsula Unified,Los Angeles,936,10,3,0,16,4,15,0,60,1,2,1,0,5,0,8,26,31,N/A,99,1,2,12,46,39,4.22\r\n,Hawthorne Elementary,Beverly Hills Unified,Los Angeles,936,10,2,0,11,0,4,0,82,1,5,7,0,6,10,13,19,24,24,98,0,4,13,43,40,4.18\r\n,,Sunol Glen Unified,Alameda,936,B,0,0,10,0,19,0,57,12,10,3,0,2,3,7,19,30,N/A,99,1,4,21,33,41,4.09\r\n,Sunol Glen Elementary,Sunol Glen Unified,Alameda,936,10,0,0,10,0,19,0,57,12,10,3,0,2,3,7,19,30,N/A,99,1,4,21,33,41,4.09\r\n,Baywood Elementary,San Mateo-Foster City,San Mateo,936,10,1,0,14,2,25,1,54,4,18,6,0,20,3,5,26,31,N/A,97,6,7,9,32,47,4.09\r\n,Bert M. Lynn Middle,Torrance Unified,Los Angeles,936,10,3,0,48,4,12,0,27,4,18,23,0,7,22,6,N/A,33,33,86,0,6,18,43,32,4\r\n,Carrillo Elementary,San Marcos Unified,San Diego,936,10,4,0,9,3,15,1,66,0,18,2,0,5,4,16,27,29,N/A,94,7,5,11,43,35,3.93\r\n,Pepper Tree Elementary,Upland Unified,San Bernardino,936,10,4,0,9,2,32,0,50,3,20,20,0,6,7,9,23,30,N/A,99,1,5,25,47,22,3.85\r\n,Panorama Elementary,Orange Unified,Orange,936,10,1,0,12,2,21,0,54,3,15,3,0,8,3,8,30,32,N/A,89,1,6,29,37,27,3.82\r\n,Floyd M. Stork Elementary,Alta Loma Elementary,San Bernardino,936,10,5,1,5,1,26,0,61,0,15,18,0,4,3,9,21,31,N/A,98,1,7,33,29,31,3.8\r\n,D. Russell Parks Junior High,Fullerton Elementary,Orange,936,10,2,0,40,3,26,0,25,2,21,15,0,10,22,7,N/A,N/A,31,81,4,11,17,38,29,3.76\r\n,Verdugo Woodlands Elementary,Glendale Unified,Los Angeles,936,10,1,0,12,3,14,0,65,4,25,11,0,26,14,7,23,35,N/A,82,1,21,19,40,18,3.52\r\n,,Los Gatos Union Elementary,Santa Clara,935,B,1,1,12,0,7,0,72,6,3,15,0,2,6,7,23,26,26,96,0,1,6,35,58,4.48\r\n,Walnut Acres Elementary,Mt. Diablo Unified,Contra Costa,935,10,1,0,11,4,10,0,67,5,6,9,0,5,3,5,31,33,N/A,86,0,1,9,37,53,4.41\r\nY,Loomis Basin Charter,Loomis Union Elementary,Placer,935,10,0,0,8,1,8,0,78,5,0,0,0,1,5,1,20,27,30,91,0,0,10,44,45,4.34\r\n,Flora Vista Elementary,Encinitas Union Elementary,San Diego,935,10,1,0,8,0,11,0,77,4,7,1,0,4,6,14,20,31,N/A,99,3,1,8,40,48,4.29\r\n,Harbor View Elementary,Newport-Mesa Unified,Orange,935,10,1,1,5,0,4,0,90,0,7,9,0,1,1,11,25,31,N/A,98,0,2,10,45,43,4.28\r\n,Austin Creek Elementary,Rincon Valley Union Elementary,Sonoma,935,10,0,1,12,0,7,0,76,4,13,20,0,2,2,11,21,25,N/A,99,0,4,16,35,46,4.21\r\n,Las Flores Middle,Capistrano Unified,Orange,935,10,2,0,6,3,11,0,74,4,7,25,0,2,3,6,N/A,32,30,43,0,3,13,47,38,4.2\r\n,Oak Meadow Elementary,Buckeye Union Elementary,El Dorado,935,10,2,0,11,3,14,0,60,10,7,8,0,6,1,11,24,32,N/A,100,1,2,14,46,38,4.17\r\n,Kelly Elementary,Carlsbad Unified,San Diego,935,10,1,1,8,1,18,0,62,6,9,32,0,3,1,13,25,30,N/A,98,1,2,20,40,37,4.1\r\n,Hope View Elementary,Ocean View,Orange,935,10,0,0,9,1,18,0,64,8,11,8,0,5,4,5,24,30,N/A,96,1,4,23,40,33,4\r\n,Heritage Elementary,Chula Vista Elementary,San Diego,935,10,6,0,5,18,50,1,16,4,14,23,0,17,5,6,22,30,N/A,90,2,9,20,40,29,3.85\r\n,Bonsall West Elementary,Bonsall Union Elementary,San Diego,935,10,5,0,6,6,28,3,47,5,25,1,1,15,4,8,23,21,N/A,94,5,5,23,37,29,3.81\r\n,Patton Elementary,Garden Grove Unified,Orange,935,10,1,0,32,3,19,0,43,1,23,26,0,9,20,5,25,32,N/A,31,1,14,12,55,18,3.74\r\n,Emperor Elementary,Temple City Unified,Los Angeles,935,10,1,0,65,1,18,0,12,2,39,4,0,25,22,10,25,30,N/A,99,5,14,18,34,29,3.67\r\n,Los Penasquitos Elementary,Poway Unified,San Diego,935,10,5,0,15,17,15,0,43,4,40,7,0,35,6,10,26,34,N/A,92,7,13,20,36,24,3.58\r\nD,Synergy Charter Academy,Los Angeles Unified,Los Angeles,935,10,4,0,0,0,96,0,0,0,100,3,0,44,20,11,,,,77,40,28,24,7,1,2.03\r\n,Strawberry Point Elementary,Mill Valley Elementary,Marin,934,10,2,1,11,0,11,0,68,7,14,3,0,8,2,14,21,28,N/A,100,0,1,10,31,58,4.46\r\nY,White Oaks Elementary,San Carlos Elementary,San Mateo,934,10,2,0,15,1,9,0,72,0,2,0,0,3,0,7,24,26,N/A,100,1,1,4,44,51,4.43\r\n,Del Dayo Elementary,San Juan Unified,Sacramento,934,10,1,1,5,1,8,0,83,1,11,18,0,3,1,8,28,31,N/A,91,1,4,12,33,50,4.26\r\n,Marshall Middle,San Diego Unified,San Diego,934,10,3,0,19,3,15,0,52,7,15,51,0,2,12,6,N/A,33,31,96,2,5,11,33,50,4.23\r\n,,Oak Park Unified,Ventura,934,B,2,0,14,1,5,0,77,1,5,12,0,2,5,9,24,31,27,90,0,3,13,45,40,4.21\r\n,Ladera Ranch Elementary,Capistrano Unified,Orange,934,10,2,0,10,3,13,0,66,5,13,6,0,5,6,5,26,31,N/A,96,1,2,12,46,38,4.19\r\n,Mariners Elementary,Newport-Mesa Unified,Orange,934,10,1,0,4,1,8,0,87,0,16,5,0,3,2,9,25,30,N/A,98,1,3,14,43,40,4.18\r\n,,Loma Prieta Joint Union Elemen,Santa Clara,934,B,1,1,5,1,8,0,83,1,4,23,0,1,2,12,23,19,24,97,1,3,20,35,41,4.13\r\n,Arroyo Vista Middle,Capistrano Unified,Orange,934,10,3,0,7,1,18,0,65,6,13,16,0,1,5,10,N/A,29,29,92,1,2,21,42,34,4.06\r\n,Margaret Landell Elementary,Cypress Elementary,Orange,934,10,2,0,52,5,13,0,22,7,13,12,0,21,14,8,27,29,N/A,100,0,5,19,42,33,4.04\r\n,Granite Oaks Middle,Rocklin Unified,Placer,934,10,1,0,6,3,14,0,69,6,13,18,0,1,2,7,N/A,N/A,29,90,1,6,22,46,25,3.89\r\n,Benchley/Weinberger Elementary,San Diego Unified,San Diego,934,10,6,1,6,0,30,0,52,5,25,40,0,6,8,7,24,32,N/A,100,0,9,22,38,30,3.89\r\n,Green Elementary,San Diego Unified,San Diego,934,10,7,0,3,2,31,1,47,10,38,30,0,10,6,11,24,28,N/A,95,2,8,23,38,29,3.84\r\n,Oak Avenue Intermediate,Temple City Unified,Los Angeles,934,10,1,0,63,1,21,0,12,2,44,11,0,14,28,10,N/A,N/A,30,96,8,19,19,35,19,3.4\r\n,Harbor Teacher Preparation Academy,Los Angeles Unified,Los Angeles,934,10,18,0,8,9,58,2,6,0,77,47,0,0,39,0,N/A,N/A,34,71,22,18,24,27,9,2.83\r\n,College Park Elementary,Irvine Unified,Orange,934,10,3,0,47,3,8,1,32,4,12,11,0,23,9,8,29,32,N/A,0,0,0,0,0,0,\r\n,Foothill Elementary,Saratoga Union Elementary,Santa Clara,933,10,0,0,49,0,2,0,39,9,1,98,0,7,11,17,16,25,N/A,100,1,0,2,21,76,4.71\r\n,,Palo Alto Unified,Santa Clara,933,B,2,0,33,1,10,1,47,5,9,5,0,8,12,10,23,24,25,99,1,3,4,18,73,4.58\r\n,Raymond J. Fisher Middle,Los Gatos Union Elementary,Santa Clara,933,10,1,1,11,0,7,0,74,6,3,20,0,1,6,7,N/A,26,26,96,0,2,7,34,57,4.46\r\n,Dwight D. Eisenhower Elementary,Cupertino Union,Santa Clara,933,10,2,0,62,3,9,1,22,1,7,0,0,4,31,7,23,27,N/A,97,1,6,12,26,55,4.27\r\n,Foster City Elementary,San Mateo-Foster City,San Mateo,933,10,1,0,49,3,6,2,31,8,7,9,0,20,11,6,26,28,N/A,99,1,4,15,41,39,4.12\r\n,Eleanor Murray Fallon,Dublin Unified,Alameda,933,10,8,0,43,13,8,1,26,1,8,23,0,3,15,5,N/A,30,28,99,0,6,11,47,35,4.1\r\n,Courreges (Roch) Elementary,Fountain Valley Elementary,Orange,933,10,1,1,35,1,9,0,51,1,13,7,0,8,7,10,28,29,N/A,96,0,2,18,46,33,4.09\r\n,Granite Ridge Intermediate,Clovis Unified,Fresno,933,10,4,0,15,3,18,0,55,4,20,10,0,2,5,5,N/A,N/A,31,99,1,7,19,37,36,4.01\r\n,Fremont Elementary,Long Beach Unified,Los Angeles,933,10,5,0,10,1,19,0,58,1,21,10,0,5,5,5,29,35,N/A,97,2,7,26,30,35,3.9\r\n,Oak Middle,Los Alamitos Unified,Orange,933,10,4,0,6,3,26,1,56,5,13,27,0,1,5,6,N/A,30,33,96,1,6,28,36,29,3.86\r\n,Plavan (Urbain H.) Elementary,Fountain Valley Elementary,Orange,933,10,1,0,49,0,14,1,31,3,26,1,0,20,11,13,27,31,N/A,89,0,8,28,43,21,3.75\r\n,Oka (Isojiro) Elementary,Fountain Valley Elementary,Orange,933,10,2,1,15,2,21,1,56,1,29,0,0,8,7,14,21,27,N/A,79,3,10,31,39,16,3.54\r\n,Phoebe A. Hearst Elementary,Sacramento City Unified,Sacramento,933,10,10,1,11,2,22,1,44,8,26,47,0,2,3,1,27,32,N/A,52,7,16,22,30,25,3.49\r\nD,Wilder's Preparatory Academy Charter,Inglewood Unified,Los Angeles,933,10,83,0,0,1,14,0,0,2,74,0,0,3,0,0,20,24,N/A,97,2,17,32,33,17,3.45\r\nD,Cornerstone Academy Preparatory,Franklin-McKinley Elementary,Santa Clara,933,10,0,0,33,5,57,5,0,0,71,0,0,29,33,0,26,N/A,N/A,86,17,22,28,28,6,2.83\r\nY,Sixth Street Prep,Victor Elementary,San Bernardino,933,10,8,1,1,0,84,1,6,0,83,1,0,26,18,2,22,34,N/A,92,36,23,20,9,13,2.38\r\n,Saratoga High,Los Gatos-Saratoga Joint Union,Santa Clara,932,10,0,0,54,0,6,0,33,6,0,0,0,1,5,7,N/A,N/A,26,99,0,1,4,24,71,4.65\r\n,Stone Valley Middle,San Ramon Valley Unified,Contra Costa,932,10,1,0,7,1,7,0,79,5,1,8,0,1,2,10,N/A,30,29,97,0,2,7,46,46,4.36\r\n,Adobe Bluffs Elementary,Poway Unified,San Diego,932,10,3,0,25,7,6,0,53,5,9,12,0,14,5,14,22,23,N/A,94,0,2,7,44,47,4.36\r\n,Painted Rock Elementary,Poway Unified,San Diego,932,10,1,0,6,3,10,0,74,5,9,9,0,7,1,15,27,30,N/A,95,0,2,14,40,45,4.27\r\n,Lakeview Elementary,Rescue Union Elementary,El Dorado,932,10,1,0,13,2,10,0,66,6,6,8,0,2,2,6,27,30,N/A,98,0,3,9,49,39,4.25\r\n,Lowell Elementary,Long Beach Unified,Los Angeles,932,10,8,0,5,1,14,1,67,0,13,13,0,3,1,14,27,27,N/A,79,1,3,12,37,47,4.24\r\n,Ballard Elementary,Ballard Elementary,Santa Barbara,932,10,1,0,0,0,7,0,85,7,3,0,0,3,1,15,1,1,N/A,99,2,5,13,29,51,4.21\r\n,Strandwood Elementary,Mt. Diablo Unified,Contra Costa,932,10,2,0,8,3,19,0,63,4,12,6,0,6,5,12,27,28,N/A,79,1,4,15,39,42,4.16\r\n,Sunset Ranch Elementary,Rocklin Unified,Placer,932,10,2,0,12,5,10,0,64,7,10,13,0,5,3,8,24,29,N/A,97,0,2,17,46,35,4.13\r\n,White Hill Middle,Ross Valley Elementary,Marin,932,10,2,0,5,0,6,0,85,1,10,16,0,2,3,10,N/A,28,27,94,4,8,13,33,43,4.04\r\n,Troy High,Fullerton Joint Union High,Orange,932,10,1,0,40,7,24,0,23,4,13,54,0,4,18,5,N/A,N/A,33,99,4,8,17,37,34,3.88\r\n,Morello Park Elementary,Martinez Unified,Contra Costa,932,10,2,0,5,5,20,0,56,12,14,10,0,6,1,7,30,31,N/A,97,2,6,22,45,26,3.88\r\n,William & Marian Ghidotti High,Nevada Joint Union High,Nevada,932,10,2,2,0,0,8,1,86,1,7,1,0,0,4,1,N/A,N/A,16,100,4,10,23,31,33,3.79\r\n,West Hollywood Elementary,Los Angeles Unified,Los Angeles,932,10,12,0,4,1,30,0,53,0,24,16,0,9,8,13,16,16,N/A,95,4,15,17,39,25,3.64\r\n,Charlotte Wood Middle,San Ramon Valley Unified,Contra Costa,931,10,1,0,8,2,7,0,78,4,1,8,0,1,2,9,N/A,27,28,97,0,1,9,45,45,4.32\r\nD,Meadows Arts and Technology Elementary,Ventura County Office of Educa,Ventura,931,10,0,0,5,1,11,0,74,8,7,10,0,7,4,2,20,30,N/A,97,0,1,16,48,34,4.15\r\n,Ralph E. Hawes Elementary,Huntington Beach City Elementa,Orange,931,10,0,1,10,0,12,1,69,7,7,21,0,2,3,11,29,33,N/A,100,0,3,18,44,36,4.11\r\n,Carlton Elementary,Union Elementary,Santa Clara,931,10,1,0,15,0,17,1,62,5,8,11,0,8,4,8,25,31,N/A,98,1,4,19,41,36,4.06\r\n,,Arcadia Unified,Los Angeles,931,B,2,0,66,3,13,0,16,0,16,7,0,10,18,8,24,29,29,96,4,7,12,39,38,4.02\r\n,Laurelwood Elementary,Santa Clara Unified,Santa Clara,931,10,1,0,46,2,11,1,33,5,12,14,1,35,17,9,28,30,N/A,98,3,10,11,39,37,3.98\r\n,Chaparral Middle,Walnut Valley Unified,Los Angeles,931,10,3,0,61,4,16,1,15,0,11,34,0,6,13,7,N/A,32,30,96,1,6,17,47,29,3.97\r\n,Van Gogh Street Elementary,Los Angeles Unified,Los Angeles,931,10,6,0,6,7,37,0,44,0,21,25,0,4,5,15,15,4,N/A,95,1,7,18,48,28,3.95\r\n,Ada W. Harris Elementary,Cardiff Elementary,San Diego,931,10,0,1,2,1,16,0,79,1,17,9,0,11,1,8,22,26,N/A,100,7,6,18,29,40,3.9\r\n,Fuerte Elementary,Cajon Valley Union,San Diego,931,10,1,0,2,0,23,0,66,6,15,24,0,9,3,9,24,31,N/A,99,2,10,22,33,34,3.86\r\n,Monte Gardens Elementary,Mt. Diablo Unified,Contra Costa,931,10,3,0,9,9,24,0,51,3,20,4,0,8,8,7,27,32,N/A,53,0,9,27,42,22,3.76\r\nD,Primary Charter,Tracy Joint Unified,San Joaquin,931,10,12,1,17,5,28,0,29,8,0,3,0,7,7,4,15,25,N/A,96,1,14,19,44,21,3.7\r\n,Arma J. Shull Elementary,Bonita Unified,Los Angeles,931,10,3,1,4,2,41,1,41,5,30,10,0,9,2,7,26,31,N/A,96,1,10,36,34,19,3.58\r\nD,Aspire Vincent Shalvey Academy,Lodi Unified,San Joaquin,931,10,4,0,5,3,30,0,51,7,25,0,0,9,6,8,22,30,N/A,99,4,18,29,27,22,3.47\r\n,Dr. T. J. Owens Gilroy Early College Aca,Gilroy Unified,Santa Clara,931,10,0,1,17,1,39,0,40,2,35,12,0,6,15,0,N/A,N/A,23,98,7,12,31,33,16,3.38\r\nY,San Jose Charter Academy,West Covina Unified,Los Angeles,931,10,3,0,9,5,75,1,7,0,47,14,0,1,7,7,20,34,N/A,96,1,14,45,31,9,3.34\r\n,Stevenson (Robert Louis) Elementary,San Francisco Unified,San Francisco,931,10,2,1,78,4,1,0,5,2,55,20,0,35,21,10,21,29,N/A,94,10,22,21,32,15,3.23\r\n,Walter Hays Elementary,Palo Alto Unified,Santa Clara,930,10,3,0,26,0,8,2,57,3,6,1,0,8,4,12,23,23,N/A,99,1,3,3,22,71,4.58\r\n,Chaparral Elementary,Poway Unified,San Diego,930,10,3,0,12,3,10,1,67,4,9,8,0,14,4,10,25,31,N/A,88,0,2,11,38,49,4.33\r\n,Chaparral Elementary,Claremont Unified,Los Angeles,930,10,2,0,13,1,24,0,53,7,11,0,0,1,5,10,23,29,N/A,96,0,4,14,28,54,4.32\r\n,Arroyo Vista Elementary,South Pasadena Unified,Los Angeles,930,10,2,1,28,2,23,0,39,5,15,7,0,11,7,6,20,36,N/A,100,3,4,10,35,49,4.24\r\nY,Heather Elementary,San Carlos Elementary,San Mateo,930,10,4,0,12,1,20,2,60,0,12,0,0,15,3,8,21,28,N/A,98,2,5,13,29,51,4.22\r\n,,Ballard Elementary,Santa Barbara,930,B,1,0,0,0,7,0,85,7,3,0,0,3,1,16,1,1,N/A,98,2,5,13,29,51,4.21\r\n,Condit Elementary,Claremont Unified,Los Angeles,930,10,2,0,14,0,28,0,49,5,22,0,0,3,6,13,24,29,N/A,91,1,8,14,30,47,4.15\r\n,Dry Creek Elementary,Clovis Unified,Fresno,930,10,2,0,10,1,19,0,62,6,15,3,0,4,3,4,24,33,N/A,99,1,5,17,38,39,4.09\r\n,Mt. Diablo Elementary,Mt. Diablo Unified,Contra Costa,930,10,2,0,6,2,10,0,74,3,7,6,0,4,3,7,29,31,N/A,46,0,5,24,37,34,4.01\r\n,Vista del Mar Middle,Capistrano Unified,Orange,930,10,1,1,2,1,18,0,73,6,12,14,0,3,4,10,N/A,27,27,95,2,4,17,43,33,4.01\r\n,Sessions Elementary,San Diego Unified,San Diego,930,10,3,1,2,0,20,0,64,10,21,39,0,8,0,12,24,32,N/A,98,0,5,25,43,26,3.9\r\n,Gussie M. Baker Elementary,Moreland Elementary,Santa Clara,930,10,2,1,24,2,24,0,36,10,17,4,0,21,12,9,23,24,N/A,99,7,11,17,39,27,3.68\r\n,Curtner Elementary,Milpitas Unified,Santa Clara,930,10,2,0,58,18,14,0,6,2,29,9,0,37,19,9,28,29,N/A,96,4,13,29,32,23,3.58\r\n,Vintage Math/Science/Technology Magnet,Los Angeles Unified,Los Angeles,930,10,3,0,10,5,51,0,31,0,54,25,0,6,17,5,16,17,N/A,98,8,16,25,34,17,3.34\r\nY,Marquez Avenue Elementary,Los Angeles Unified,Los Angeles,929,10,6,1,6,0,9,0,78,0,12,22,0,1,3,14,11,6,N/A,89,1,2,8,36,54,4.39\r\n,Encinal Elementary,Menlo Park City Elementary,San Mateo,929,10,2,0,7,0,18,1,61,10,5,3,0,11,3,7,22,24,N/A,99,1,5,8,25,61,4.38\r\n,Quail Run Elementary,San Ramon Valley Unified,Contra Costa,929,10,5,0,57,5,9,1,17,6,4,5,0,14,8,8,23,26,N/A,96,0,4,11,33,52,4.32\r\n,La Costa Heights Elementary,Encinitas Union Elementary,San Diego,929,10,1,0,7,1,12,1,72,5,7,1,0,4,4,8,21,27,N/A,99,1,3,11,38,47,4.25\r\n,Oak Park High,Oak Park Unified,Ventura,929,10,1,0,13,1,4,0,80,1,4,14,0,1,4,7,N/A,N/A,29,86,0,3,12,44,41,4.23\r\n,Wilbur Avenue Elementary,Los Angeles Unified,Los Angeles,929,10,3,0,4,1,9,0,82,0,11,29,0,6,7,6,14,10,N/A,94,1,5,12,40,43,4.19\r\n,Alice C. Stelle Middle,Las Virgenes Unified,Los Angeles,929,10,3,0,9,1,5,0,81,2,4,28,0,2,7,12,N/A,27,30,97,2,9,11,35,43,4.08\r\n,Alta Vista Elementary,Redondo Beach Unified,Los Angeles,929,10,3,0,12,2,15,0,62,5,12,13,0,7,3,14,22,30,N/A,97,1,3,16,45,34,4.08\r\n,Garfield Elementary,Clovis Unified,Fresno,929,10,3,1,12,2,20,0,57,4,19,3,0,2,2,5,22,31,N/A,99,0,5,20,35,39,4.08\r\n,Tulita Elementary,Redondo Beach Unified,Los Angeles,929,10,3,0,11,4,12,1,64,7,13,10,0,4,3,18,24,28,N/A,99,0,6,18,42,34,4.04\r\n,Green Oaks Fundamental Elementary,San Juan Unified,Sacramento,929,10,1,1,3,1,4,0,89,1,14,18,0,3,1,6,28,33,N/A,88,0,3,24,45,28,3.97\r\n,,Union Elementary,Santa Clara,929,B,2,0,15,1,18,1,60,3,13,11,0,9,6,11,23,28,27,97,4,6,18,40,33,3.93\r\n,S. A. Moffett Elementary,Huntington Beach City Elementa,Orange,929,10,0,1,5,1,13,1,71,8,14,8,0,2,2,15,30,31,N/A,99,0,6,26,39,30,3.93\r\n,John M. Horner Junior High,Fremont Unified,Alameda,929,10,3,0,57,6,13,1,18,1,20,27,0,11,29,11,N/A,N/A,28,98,3,14,14,33,36,3.84\r\n,Fulton (Harry C.) Middle,Fountain Valley Elementary,Orange,929,10,1,0,40,1,9,1,48,1,16,19,0,4,20,10,N/A,27,27,82,1,8,26,40,26,3.83\r\n,Quail Glen Elementary,Dry Creek Joint Elementary,Placer,929,10,2,0,5,3,12,0,68,8,14,8,0,5,1,10,22,31,N/A,98,1,9,26,39,25,3.78\r\n,Schroeder Elementary,Westminster Elementary,Orange,929,10,1,0,23,2,20,1,45,5,33,28,0,20,6,9,23,29,N/A,91,3,14,32,33,18,3.5\r\n,Sarah McGarvin Intermediate,Garden Grove Unified,Orange,929,10,0,0,73,1,18,1,8,0,57,16,0,22,56,6,N/A,N/A,28,57,11,24,18,36,11,3.12\r\nD,San Carlos Charter Learning Center,San Carlos Elementary,San Mateo,928,10,0,0,11,0,6,0,78,4,0,0,0,3,0,11,23,25,29,100,0,1,4,24,71,4.65\r\n,Jerabek Elementary,San Diego Unified,San Diego,928,10,1,0,10,2,12,0,67,8,5,27,0,2,3,6,23,30,N/A,98,0,1,9,32,58,4.47\r\n,Hall Middle,Larkspur-Corte Madera,Marin,928,10,1,0,7,0,12,0,78,0,9,8,0,2,6,9,N/A,24,25,98,2,4,7,34,53,4.33\r\n,,San Ramon Valley Unified,Contra Costa,928,B,2,0,28,3,8,0,52,7,2,8,0,3,6,7,25,29,30,96,0,2,9,44,45,4.3\r\n,Miramar Ranch Elementary,San Diego Unified,San Diego,928,10,3,0,17,4,16,1,47,12,12,44,0,8,9,7,24,32,N/A,96,0,2,14,39,44,4.23\r\n,Valley View Elementary,Rocklin Unified,Placer,928,10,1,0,4,3,10,0,73,8,6,16,0,3,2,8,27,26,N/A,96,1,3,9,51,36,4.2\r\n,,Ross Valley Elementary,Marin,928,B,1,0,4,0,7,0,83,1,10,10,0,3,3,10,19,27,27,95,2,4,10,36,47,4.2\r\n,Silva Valley Elementary,Buckeye Union Elementary,El Dorado,928,10,2,0,10,0,10,1,73,5,6,10,0,2,2,13,26,30,N/A,99,0,2,15,45,38,4.18\r\n,Westlake Elementary,Conejo Valley Unified,Ventura,928,10,2,0,7,1,9,0,75,6,10,17,0,5,4,11,20,29,N/A,95,3,3,11,40,43,4.17\r\n,Walt Disney Elementary,San Ramon Valley Unified,Contra Costa,928,10,1,0,21,3,12,1,49,10,6,5,0,7,6,6,24,31,N/A,97,0,3,15,49,32,4.1\r\n,Miller Creek Middle,Dixie Elementary,Marin,928,10,3,0,9,1,12,0,72,1,8,19,0,4,9,11,N/A,27,29,98,2,7,14,38,40,4.08\r\n,Latrobe Elementary,Latrobe,El Dorado,928,10,0,0,0,0,13,0,85,3,0,0,0,0,0,13,19,N/A,N/A,100,0,0,23,50,28,4.05\r\n,Aliso Viejo Middle,Capistrano Unified,Orange,928,10,1,0,9,2,18,0,62,8,16,20,0,5,9,8,N/A,31,30,88,2,5,18,40,35,4.02\r\n,Scotts Valley Middle,Scotts Valley Unified,Santa Cruz,928,10,0,0,1,0,14,0,74,8,13,0,0,1,3,9,N/A,30,32,95,2,7,17,36,38,4.01\r\n,James R. Cowan Fundamental Elementary,San Juan Unified,Sacramento,928,10,6,0,5,1,10,2,76,0,24,8,1,5,2,6,30,31,N/A,84,0,6,21,42,31,3.98\r\n,,Cardiff Elementary,San Diego,928,B,0,1,2,1,17,0,77,3,16,6,0,11,1,9,23,26,N/A,100,6,6,17,31,39,3.91\r\nY,Colfax Charter Elementary,Los Angeles Unified,Los Angeles,928,10,6,1,8,2,23,0,59,0,33,14,0,8,4,14,14,6,N/A,90,4,7,19,41,30,3.85\r\nD,Citizens of the World Charter,Los Angeles Unified,Los Angeles,928,10,5,0,19,0,31,0,31,15,47,0,0,39,0,11,20,N/A,N/A,94,5,7,14,48,26,3.83\r\n,Calle Mayor Middle,Torrance Unified,Los Angeles,928,10,2,0,35,2,13,1,42,3,17,17,0,7,16,13,N/A,32,33,75,1,9,23,40,27,3.82\r\n,Madera Elementary,West Contra Costa Unified,Contra Costa,928,10,14,0,30,4,15,0,36,0,20,10,0,16,11,7,22,31,N/A,94,3,16,13,42,27,3.74\r\n,Dublin Elementary,Dublin Unified,Alameda,928,10,4,0,17,4,18,0,50,6,12,9,0,10,6,5,23,30,N/A,97,1,15,22,40,23,3.69\r\n,Reagan Elementary,Clovis Unified,Fresno,928,10,3,1,20,7,22,0,43,3,33,1,1,6,6,5,23,32,N/A,97,2,10,27,41,20,3.68\r\n,Lawton Alternative Elementary,San Francisco Unified,San Francisco,928,10,3,0,72,3,4,0,6,2,52,27,0,23,31,10,22,30,24,88,9,34,16,29,12,3.01\r\nY,American Indian Public High,Oakland Unified,Alameda,928,10,11,1,62,2,23,0,1,1,78,1,0,3,49,0,N/A,N/A,4,53,28,41,12,16,3,2.26\r\n,Vintage Hills Elementary,Pleasanton Unified,Alameda,927,10,2,0,32,1,6,0,58,0,4,9,0,3,9,13,23,33,N/A,98,1,3,6,37,54,4.4\r\n,Bonny Doon Elementary,Bonny Doon Union Elementary,Santa Cruz,927,10,0,0,2,0,3,0,94,0,2,5,0,0,1,17,17,12,N/A,89,1,0,14,38,47,4.29\r\n,Canyon Vista Elementary,Capistrano Unified,Orange,927,10,1,0,12,2,15,0,61,9,8,5,0,3,6,6,24,32,N/A,94,1,1,13,42,43,4.26\r\n,Oak Valley Middle,Poway Unified,San Diego,927,10,3,0,28,6,9,1,49,4,9,18,0,6,12,7,N/A,33,33,94,1,3,11,42,43,4.24\r\n,Westlake Elementary,Santa Cruz City Elementary,Santa Cruz,927,10,2,2,8,0,12,0,73,3,15,31,0,3,5,13,21,30,N/A,95,1,3,14,35,47,4.23\r\n,Pine Valley Middle,San Ramon Valley Unified,Contra Costa,927,10,2,0,19,3,12,0,56,7,3,8,0,2,7,7,N/A,29,30,98,1,3,14,49,34,4.13\r\n,Diegueno Middle,San Dieguito Union High,San Diego,927,10,1,1,6,1,13,0,77,0,8,38,1,5,4,10,N/A,N/A,31,98,3,4,11,39,42,4.13\r\n,Booksin Elementary,San Jose Unified,Santa Clara,927,10,3,1,10,1,18,1,60,1,13,20,0,6,4,10,26,31,N/A,94,2,4,17,41,35,4.03\r\n,Birney Elementary,Redondo Beach Unified,Los Angeles,927,10,9,0,9,4,21,0,54,2,25,10,0,8,5,13,26,30,N/A,100,2,10,20,40,29,3.85\r\n,Blue Oaks Elementary,Roseville City Elementary,Placer,927,10,4,1,13,3,13,1,66,0,21,1,0,10,5,14,24,28,N/A,98,0,7,29,39,25,3.8\r\n,Freedom Elementary,Clovis Unified,Fresno,927,10,3,0,16,4,30,0,42,4,30,3,0,7,6,5,24,33,N/A,100,1,9,31,33,26,3.73\r\nY,George Washington Charter,Desert Sands Unified,Riverside,927,10,1,0,2,1,23,0,67,5,32,2,0,8,4,9,26,31,N/A,99,4,10,20,40,26,3.73\r\n,Lakewood Elementary,Modesto City Elementary,Stanislaus,927,10,2,0,9,1,27,1,58,2,23,50,0,8,5,12,21,27,N/A,99,3,17,22,21,37,3.72\r\n,,Waugh Elementary,Sonoma,927,B,1,0,6,1,22,0,61,7,13,10,0,14,7,12,2,2,N/A,98,4,8,24,41,23,3.69\r\nY,Westlake Charter,Natomas Unified,Sacramento,927,10,15,0,20,5,20,0,33,2,10,17,0,21,1,6,20,29,N/A,89,1,10,32,37,21,3.67\r\n,Ysabel Barnett Elementary,Temecula Valley Unified,Riverside,927,10,3,0,5,8,36,0,42,6,22,1,0,11,4,10,23,29,N/A,99,3,12,27,39,19,3.58\r\n,Springbrook Elementary,Irvine Unified,Orange,927,10,3,1,39,3,15,1,33,5,21,7,0,23,6,16,30,29,N/A,0,0,0,0,0,0,\r\nD,University High,Fresno Unified,Fresno,926,10,5,2,16,5,19,0,48,0,6,0,0,0,3,0,,,,100,0,4,13,30,52,4.31\r\n,Canyon View Elementary,Poway Unified,San Diego,926,10,3,0,25,7,9,1,50,5,12,11,0,18,6,12,24,33,N/A,86,1,3,11,37,49,4.29\r\n,Loma Prieta Elementary,Loma Prieta Joint Union Elemen,Santa Clara,926,10,1,1,4,1,8,0,85,1,3,11,0,2,2,13,23,28,N/A,98,1,3,13,37,48,4.28\r\n,Tijeras Creek Elementary,Capistrano Unified,Orange,926,10,1,1,5,3,12,0,73,4,6,5,0,2,1,13,28,33,N/A,90,0,3,14,40,43,4.21\r\n,Marin Elementary,Albany City Unified,Alameda,926,10,1,0,20,1,12,0,55,11,12,0,0,17,5,9,25,27,N/A,27,1,6,13,33,46,4.18\r\n,,Irvine Unified,Orange,926,B,2,0,44,3,10,0,36,4,12,20,0,14,12,8,28,31,31,0,0,9,23,18,50,4.09\r\nY,Union Street Charter,Arcata Elementary,Humboldt,926,10,0,0,0,0,3,0,95,0,22,0,0,0,0,11,,,,86,0,9,16,33,42,4.07\r\n,Willma Cavitt Junior High,Eureka Union,Placer,926,10,1,1,5,0,7,1,84,1,7,8,0,1,3,9,N/A,N/A,26,99,0,7,12,50,30,4.03\r\n,Don Juan Avila Middle,Capistrano Unified,Orange,926,10,2,1,12,3,16,0,60,7,14,17,0,4,8,7,N/A,31,30,90,1,4,22,42,32,4.01\r\n,Oak Crest Middle,San Dieguito Union High,San Diego,926,10,0,0,4,2,20,0,73,0,14,29,1,7,6,13,N/A,N/A,29,96,7,6,12,36,39,3.95\r\n,Peabody (George) Elementary,San Francisco Unified,San Francisco,926,10,5,0,27,6,10,1,34,6,32,11,0,18,6,18,20,28,N/A,81,3,14,15,28,40,3.87\r\n,Coeur D'Alene Avenue Elementary,Los Angeles Unified,Los Angeles,926,10,17,1,9,2,23,2,47,0,27,19,0,5,3,7,13,15,N/A,86,5,7,25,36,27,3.74\r\n,John F. Kennedy Elementary,Riverside Unified,Riverside,926,10,10,0,11,2,27,1,45,0,29,19,0,6,7,11,26,30,N/A,99,2,10,35,24,28,3.64\r\n,Los Molinos Elementary,Hacienda la Puente Unified,Los Angeles,926,10,1,0,17,2,73,0,7,0,35,10,0,9,4,12,19,28,N/A,30,2,32,20,23,23,3.35\r\n,Linwood Elementary,Visalia Unified,Tulare,926,10,2,1,6,1,49,0,39,2,49,20,1,10,6,7,24,33,N/A,98,7,14,42,25,12,3.19\r\n,Woodbury Elementary,Irvine Unified,Orange,926,10,1,0,50,3,11,0,27,6,11,10,0,28,2,8,29,31,N/A,0,0,0,0,0,0,\r\n,Burton Valley Elementary,Lafayette Elementary,Contra Costa,925,10,1,0,10,1,5,0,80,2,1,7,0,2,0,10,22,27,N/A,99,0,0,4,36,60,4.56\r\n,Alamo Elementary,San Ramon Valley Unified,Contra Costa,925,10,0,0,9,2,7,0,74,8,0,4,0,3,2,6,23,29,N/A,93,0,0,7,42,50,4.42\r\n,Springhill Elementary,Lafayette Elementary,Contra Costa,925,10,1,0,5,2,7,0,76,7,4,2,0,2,0,13,20,28,N/A,98,0,3,4,45,48,4.38\r\n,Wagon Wheel Elementary,Capistrano Unified,Orange,925,10,1,0,7,1,9,0,73,9,3,6,0,1,1,9,26,33,N/A,61,0,1,9,47,43,4.32\r\n,Oso Grande Elementary,Capistrano Unified,Orange,925,10,0,0,7,2,11,0,76,5,5,4,0,1,2,5,25,32,N/A,85,0,1,11,43,45,4.31\r\n,,Bonny Doon Union Elementary,Santa Cruz,925,B,0,0,2,0,3,0,93,0,2,5,0,0,1,18,17,12,N/A,88,1,0,14,38,47,4.29\r\n,Indian Valley Elementary,Walnut Creek Elementary,Contra Costa,925,10,4,0,14,3,14,0,61,4,14,2,0,9,3,15,22,22,N/A,96,0,4,15,34,46,4.23\r\n,Jackson Elementary,Rescue Union Elementary,El Dorado,925,10,0,0,6,1,14,0,70,6,11,7,0,1,1,16,25,21,N/A,95,1,3,13,44,39,4.16\r\n,Cornell Elementary,Albany City Unified,Alameda,925,10,3,0,29,0,14,1,42,10,19,0,0,18,7,7,25,27,N/A,27,2,4,17,31,46,4.15\r\n,Folsom Hills Elementary,Folsom-Cordova Unified,Sacramento,925,10,0,1,6,3,11,0,76,2,5,9,0,2,5,11,31,30,N/A,92,0,5,17,38,39,4.12\r\n,Silver Gate Elementary,San Diego Unified,San Diego,925,10,1,0,2,0,19,0,69,9,20,52,0,7,0,9,24,29,N/A,95,1,3,19,36,41,4.11\r\n,Turtleback Elementary,Poway Unified,San Diego,925,10,3,0,16,7,13,1,56,5,14,8,0,12,4,9,26,32,N/A,91,2,6,12,43,37,4.08\r\n,Kumeyaay Elementary,San Diego Unified,San Diego,925,10,2,0,13,5,17,0,53,9,15,49,0,7,7,9,24,32,N/A,95,1,7,14,42,37,4.08\r\n,Sunset Lane Elementary,Fullerton Elementary,Orange,925,10,1,0,61,2,14,0,19,2,19,5,0,29,19,4,30,32,N/A,98,1,6,16,43,34,4.04\r\n,Rancho Pico Junior High,William S. Hart Union High,Los Angeles,925,10,3,0,18,5,20,0,46,8,9,20,0,7,8,11,N/A,N/A,31,94,1,5,19,44,31,3.99\r\n,Valley View Elementary,Glendale Unified,Los Angeles,925,10,1,1,34,3,11,0,49,1,19,15,0,17,12,8,22,35,N/A,81,1,15,11,46,27,3.83\r\n,Valencia Elementary,Upland Unified,San Bernardino,925,10,5,1,6,1,28,0,56,3,19,22,0,2,6,13,21,28,N/A,100,1,5,28,42,23,3.8\r\n,Crowne Hill Elementary,Temecula Valley Unified,Riverside,925,10,2,1,5,2,25,0,58,8,15,0,0,5,4,11,22,25,N/A,97,5,4,28,37,26,3.76\r\n,Oster Elementary,Union Elementary,Santa Clara,925,10,3,0,18,2,21,2,48,5,20,7,0,17,4,13,23,26,N/A,97,5,10,21,34,30,3.73\r\n,Hillcrest Middle,Gravenstein Union Elementary,Sonoma,925,10,1,1,4,0,9,0,84,0,10,47,0,6,3,10,N/A,21,19,92,6,27,34,31,3,2.97\r\nD,KIPP Los Angeles College Preparatory,Los Angeles Unified,Los Angeles,925,10,1,0,2,0,96,0,0,0,95,6,3,21,38,8,,,,99,28,37,27,4,4,2.2\r\nD,Pacific Collegiate Charter,Santa Cruz County Office of Ed,Santa Cruz,924,10,2,0,8,0,12,0,71,7,6,0,0,0,0,3,N/A,N/A,21,97,0,1,9,34,56,4.44\r\n,,Palos Verdes Peninsula Unified,Los Angeles,924,B,3,0,27,2,8,0,56,3,2,10,0,6,3,10,24,30,30,94,0,2,9,38,51,4.37\r\n,,Larkspur-Corte Madera,Marin,924,B,1,0,7,0,12,0,78,0,9,6,0,2,5,9,21,24,25,97,1,5,6,35,53,4.34\r\n,Parkmead Elementary,Walnut Creek Elementary,Contra Costa,924,10,2,0,12,4,10,0,68,4,6,2,0,5,3,11,23,28,N/A,97,0,2,12,44,42,4.27\r\nD,Community Roots Academy,Capistrano Unified,Orange,924,10,0,0,9,5,9,0,64,9,0,0,0,0,0,0,25,N/A,N/A,86,0,0,16,47,37,4.21\r\n,Lindero Canyon Middle,Las Virgenes Unified,Los Angeles,924,10,2,0,7,1,9,0,79,1,8,26,0,2,5,13,N/A,29,27,94,1,6,16,35,41,4.08\r\n,Castle Rock Elementary,Walnut Valley Unified,Los Angeles,924,10,4,1,62,3,17,0,14,0,10,10,0,11,14,7,22,33,N/A,99,1,6,13,45,35,4.07\r\n,Foothill Elementary,Goleta Union Elementary,Santa Barbara,924,10,2,1,7,1,29,0,59,2,17,28,0,5,12,9,21,24,N/A,97,2,5,17,43,33,3.99\r\n,John R. Peterson Elementary,Huntington Beach City Elementa,Orange,924,10,1,0,9,0,17,0,63,9,20,40,0,6,3,11,31,30,N/A,92,3,7,20,36,33,3.9\r\n,Oxford Elementary,Berkeley Unified,Alameda,924,10,23,0,4,0,12,0,45,13,42,8,0,10,3,11,20,26,N/A,97,2,12,20,26,40,3.9\r\n,Carpinteria Family,Carpinteria Unified,Santa Barbara,924,10,0,0,7,2,30,0,57,4,31,4,0,9,2,13,25,28,N/A,94,0,6,22,53,20,3.86\r\n,Mountainview Elementary,Saugus Union,Los Angeles,924,10,3,0,6,3,22,0,62,4,7,8,0,5,2,13,22,30,N/A,100,0,8,24,44,23,3.83\r\n,Crescent Elementary,Orange Unified,Orange,924,10,3,0,20,4,21,0,48,3,15,27,0,7,5,5,29,32,N/A,100,3,7,26,38,26,3.78\r\n,Butterfield Ranch Elementary,Chino Valley Unified,San Bernardino,924,10,5,0,16,7,35,0,31,6,17,8,0,7,5,10,30,33,N/A,97,1,13,18,49,20,3.73\r\nD,College Preparatory Middle,Mountain Empire Unified,San Diego,924,10,4,0,1,0,22,1,68,0,9,0,0,7,1,7,N/A,22,16,80,0,6,32,46,16,3.72\r\nY,Beckford Charter for Enriched Studies,Los Angeles Unified,Los Angeles,924,10,9,0,21,6,24,0,40,0,18,10,0,5,6,13,15,15,N/A,95,2,11,27,39,21,3.67\r\n,Stanley G. Oswalt Academy,Rowland Unified,Los Angeles,924,10,3,0,27,29,33,0,4,3,26,16,0,14,16,7,21,29,26,98,2,10,33,37,18,3.6\r\n,Marjorie H. Tobias Elementary,Jefferson Elementary,San Mateo,924,10,2,0,37,20,18,0,9,15,37,4,0,37,12,7,23,30,N/A,87,3,15,25,54,4,3.42\r\nD,Rocketship Mateo Sheedy Elementary,Santa Clara County Office of E,Santa Clara,924,10,1,0,1,0,94,2,2,0,94,0,0,55,28,3,24,25,N/A,91,45,24,14,11,7,2.1\r\n,Montair Elementary,San Ramon Valley Unified,Contra Costa,923,10,1,0,13,1,8,0,68,9,3,16,0,4,5,14,23,26,N/A,96,0,2,8,45,45,4.34\r\n,Joaquin Miller Elementary,Oakland Unified,Alameda,923,10,19,0,6,1,10,0,58,4,15,65,0,5,2,12,24,25,N/A,55,2,3,8,37,49,4.29\r\n,Top of the World Elementary,Laguna Beach Unified,Orange,923,10,1,0,4,1,6,0,84,4,6,7,0,4,1,9,18,29,N/A,100,1,2,10,50,37,4.19\r\n,Brook Knoll Elementary,Scotts Valley Unified,Santa Cruz,923,10,1,0,2,0,10,0,73,13,10,0,0,1,2,10,24,28,N/A,97,1,4,13,40,42,4.19\r\n,John Malcom Elementary,Capistrano Unified,Orange,923,10,0,0,2,0,12,0,79,6,12,4,0,1,2,8,26,33,N/A,96,0,3,15,44,37,4.15\r\nD,Larchmont Charter-West Hollywood,Los Angeles Unified,Los Angeles,923,10,7,1,11,1,21,2,56,3,29,1,0,1,6,11,22,22,N/A,69,2,2,14,43,39,4.14\r\n,Thomas S. Hart Middle,Pleasanton Unified,Alameda,923,10,3,0,30,4,8,1,53,0,7,15,0,2,7,10,N/A,29,29,97,1,5,16,37,41,4.12\r\n,Robert Down Elementary,Pacific Grove Unified,Monterey,923,10,2,1,7,2,13,0,69,4,12,15,0,7,3,8,24,26,N/A,96,0,7,16,34,43,4.12\r\n,Mariposa Elementary,Redlands Unified,San Bernardino,923,10,2,0,10,1,22,0,60,4,24,16,0,5,1,8,25,26,N/A,96,1,7,20,21,50,4.12\r\n,,Laguna Beach Unified,Orange,923,B,1,0,3,0,8,0,83,2,9,11,0,3,3,9,18,29,26,96,2,4,13,45,37,4.11\r\n,Pleasant Valley Elementary,Novato Unified,Marin,923,10,1,1,3,2,11,0,75,7,10,2,0,5,3,8,19,27,N/A,97,1,3,17,41,36,4.08\r\n,Copper Hills Elementary,Clovis Unified,Fresno,923,10,3,0,11,1,21,0,58,5,19,3,0,2,4,6,22,33,N/A,98,0,7,18,40,35,4.03\r\n,Charles Helmers Elementary,Saugus Union,Los Angeles,923,10,2,0,15,7,14,1,61,0,6,9,0,6,4,9,23,33,N/A,99,0,5,17,48,30,4.02\r\n,Aviara Oaks Middle,Carlsbad Unified,San Diego,923,10,2,1,10,1,16,0,65,3,12,41,0,4,5,7,N/A,32,28,97,3,6,15,39,37,4.02\r\n,Emma C. Smith Elementary,Livermore Valley Joint Unified,Alameda,923,10,1,0,6,5,14,0,65,8,9,7,1,6,4,12,24,29,N/A,100,3,5,19,44,30,3.94\r\n,Century Elementary,Clovis Unified,Fresno,923,10,2,1,6,1,20,1,66,3,31,3,1,5,4,7,22,32,N/A,97,2,8,21,38,32,3.9\r\nD,Larchmont Charter,Los Angeles Unified,Los Angeles,923,10,10,1,15,4,19,0,52,0,41,18,0,4,10,12,22,27,25,70,3,6,20,41,29,3.88\r\n,South Pointe Middle,Walnut Valley Unified,Los Angeles,923,10,3,0,55,7,26,0,10,0,16,27,0,7,15,8,N/A,30,29,94,2,10,20,43,25,3.77\r\n,Olympic View Elementary,Chula Vista Elementary,San Diego,923,10,3,0,5,17,51,1,21,2,23,32,0,26,6,6,22,30,N/A,85,2,15,26,36,22,3.61\r\n,Blandford Elementary,Rowland Unified,Los Angeles,923,10,1,0,61,4,27,0,5,2,35,14,0,17,27,5,22,28,N/A,98,3,21,23,38,15,3.42\r\n,Big Springs Elementary,Simi Valley Unified,Ventura,923,10,0,0,7,0,15,0,75,2,14,8,0,2,4,11,23,32,N/A,92,2,26,28,31,14,3.29\r\n,South Pasadena Middle,South Pasadena Unified,Los Angeles,922,10,3,1,36,3,22,0,33,2,16,17,0,4,10,7,N/A,31,31,99,1,4,15,35,45,4.19\r\n,Grattan Elementary,San Francisco Unified,San Francisco,922,10,10,0,11,2,11,0,56,4,18,13,0,8,3,14,20,22,N/A,83,4,5,9,33,48,4.17\r\n,Castille Elementary,Capistrano Unified,Orange,922,10,0,0,4,2,18,0,67,9,12,4,0,4,2,7,23,34,N/A,71,0,4,16,44,36,4.12\r\n,,Eureka Union,Placer,922,B,1,0,9,1,10,0,74,5,9,4,0,3,2,9,24,28,28,98,1,5,14,44,36,4.1\r\n,Stoneridge Elementary,Roseville City Elementary,Placer,922,10,3,1,12,7,9,1,68,0,14,2,0,9,8,11,22,31,N/A,99,0,5,18,45,31,4.03\r\n,Holly Avenue Elementary,Arcadia Unified,Los Angeles,922,10,2,0,57,5,18,0,17,0,26,2,0,13,17,13,24,27,N/A,95,3,8,15,40,34,3.94\r\n,,Los Alamitos Unified,Orange,922,B,3,0,11,3,21,1,57,4,11,21,0,1,6,7,23,32,32,95,1,6,24,36,33,3.93\r\n,Helen Wittmann Elementary,ABC Unified,Los Angeles,922,10,14,0,44,10,21,1,7,3,24,29,1,27,12,13,26,29,N/A,97,2,7,21,39,31,3.9\r\n,Fox Elementary,Belmont-Redwood Shores Element,San Mateo,922,10,1,0,24,5,11,1,57,0,7,5,0,5,11,12,24,29,N/A,80,1,9,17,44,29,3.89\r\n,Abby Reinke Elementary,Temecula Valley Unified,Riverside,922,10,2,0,2,3,24,0,61,7,10,2,0,2,3,9,21,30,N/A,99,2,4,25,42,27,3.88\r\n,Center Street Elementary,El Segundo Unified,Los Angeles,922,10,3,0,7,0,19,0,59,8,16,1,0,11,1,9,24,34,N/A,97,2,10,19,37,32,3.86\r\n,Cosumnes River Elementary,Elk Grove Unified,Sacramento,922,10,2,1,2,1,17,0,73,4,11,7,0,3,3,9,21,22,N/A,97,3,7,21,41,28,3.85\r\n,Red Bank Elementary,Clovis Unified,Fresno,922,10,1,1,16,3,28,0,50,1,29,2,1,4,4,2,25,31,N/A,97,1,13,25,34,27,3.72\r\n,Cloverly Elementary,Temple City Unified,Los Angeles,922,10,0,0,64,1,21,0,10,4,45,5,0,24,22,13,N/A,28,N/A,97,7,16,23,32,22,3.45\r\n,Taper Avenue Elementary,Los Angeles Unified,Los Angeles,922,10,7,2,6,3,49,1,31,0,43,8,0,4,2,10,12,8,N/A,97,2,16,36,34,12,3.38\r\n,Solano Avenue Elementary,Los Angeles Unified,Los Angeles,922,10,4,1,50,2,42,0,1,0,80,19,0,19,28,4,19,17,N/A,89,19,26,28,20,7,2.7\r\n,Westpark Elementary,Irvine Unified,Orange,922,10,3,0,48,4,10,1,30,3,16,17,0,16,9,12,25,33,N/A,0,0,0,0,0,0,\r\n,Campolindo High,Acalanes Union High,Contra Costa,921,10,1,0,14,1,7,0,70,8,1,32,0,0,3,10,N/A,N/A,29,97,1,1,4,38,57,4.49\r\n,Marina Village Middle,Rescue Union Elementary,El Dorado,921,10,1,0,5,1,9,0,76,7,7,20,0,1,2,8,N/A,26,28,98,0,2,10,40,47,4.32\r\n,Ridgeview Elementary,Eureka Union,Placer,921,9,2,0,10,0,6,0,79,2,5,7,0,2,2,10,N/A,27,N/A,97,1,3,8,45,43,4.28\r\n,Del Mar Hills Elementary,Del Mar Union Elementary,San Diego,921,9,0,0,15,1,12,0,70,2,11,0,0,8,6,10,20,26,N/A,100,2,4,10,35,50,4.26\r\n,,Happy Valley Elementary,Santa Cruz,921,B,1,0,8,0,6,0,85,0,12,14,0,0,0,8,11,12,N/A,97,0,2,19,30,49,4.26\r\n,Happy Valley Elementary,Happy Valley Elementary,Santa Cruz,921,9,1,0,8,0,6,0,85,0,12,14,0,0,0,8,11,12,N/A,97,0,2,19,30,49,4.26\r\n,Bathgate Elementary,Capistrano Unified,Orange,921,9,1,0,10,2,9,0,66,11,8,7,0,5,4,11,21,33,N/A,98,0,2,9,50,39,4.25\r\n,,Jacoby Creek Elementary,Humboldt,921,B,4,4,9,2,13,1,68,0,14,6,0,0,0,12,24,26,N/A,58,2,5,16,36,43,4.13\r\nY,Jacoby Creek Charter,Jacoby Creek Elementary,Humboldt,921,9,4,4,9,2,13,1,68,0,14,6,0,0,0,12,24,26,N/A,58,2,5,16,36,43,4.13\r\n,Mar Vista Elementary,Los Angeles Unified,Los Angeles,921,9,8,1,14,1,21,0,54,0,14,11,0,6,4,12,12,5,N/A,84,2,4,15,40,39,4.1\r\n,Ralston Intermediate,Belmont-Redwood Shores Element,San Mateo,921,10,3,0,25,4,10,1,55,2,7,19,0,2,11,11,N/A,29,28,89,2,6,15,41,37,4.05\r\n,Parras (Nick G.) Middle,Redondo Beach Unified,Los Angeles,921,10,6,1,13,3,17,1,58,2,13,25,0,3,4,9,N/A,34,31,100,2,6,19,42,31,3.95\r\n,El Morro Elementary,Laguna Beach Unified,Orange,921,9,2,1,5,0,12,0,79,1,13,6,0,8,3,12,17,26,N/A,98,3,6,15,47,29,3.94\r\n,Edward J. Richardson Middle,Torrance Unified,Los Angeles,921,10,1,1,28,3,14,1,45,5,15,18,0,7,12,8,N/A,34,32,81,1,8,20,42,30,3.93\r\n,Benjamin Bubb Elementary,Mountain View Whisman,Santa Clara,921,9,2,0,13,1,35,0,37,10,32,19,0,33,10,8,24,29,N/A,97,9,14,10,22,46,3.83\r\n,McPherson Magnet,Orange Unified,Orange,921,9,2,1,13,3,26,0,52,2,15,6,0,5,2,6,29,33,31,97,1,7,28,39,25,3.81\r\n,Rogers Middle,Long Beach Unified,Los Angeles,921,10,9,0,7,1,23,1,56,1,29,29,0,4,11,9,N/A,31,32,95,4,11,19,32,34,3.81\r\n,San Elijo Middle,San Marcos Unified,San Diego,921,10,3,1,8,3,20,1,62,2,17,11,2,3,8,12,N/A,30,31,98,7,6,16,43,29,3.8\r\n,Newland (William T.) Elementary,Fountain Valley Elementary,Orange,921,9,1,0,15,2,13,1,64,0,19,2,0,4,2,16,26,28,N/A,87,0,6,33,35,25,3.78\r\nD,Aspire University Charter,Sylvan Union Elementary,Stanislaus,921,9,8,1,12,3,25,0,43,9,16,0,0,10,6,6,22,29,N/A,100,1,8,34,28,29,3.77\r\n,Dartmouth Middle,Union Elementary,Santa Clara,921,10,3,0,15,2,22,1,56,2,18,13,0,6,10,12,N/A,27,26,97,6,9,20,38,28,3.72\r\n,Washington Elementary,Santa Barbara Unified,Santa Barbara,921,9,1,1,2,0,33,0,58,4,25,27,0,22,1,11,25,26,N/A,96,10,10,17,39,25,3.58\r\n,Mesa Robles,Hacienda la Puente Unified,Los Angeles,921,9,1,0,47,2,41,0,7,2,40,33,0,8,17,4,20,33,29,86,2,17,24,40,16,3.5\r\n,Hilton D. Bell Intermediate,Garden Grove Unified,Orange,921,10,2,0,16,3,26,1,50,0,22,14,0,6,14,10,N/A,N/A,27,66,5,20,19,42,14,3.4\r\n,Middle College High,Lodi Unified,San Joaquin,921,10,8,1,38,12,24,0,16,0,41,25,1,0,43,1,N/A,N/A,27,95,9,19,24,34,14,3.24\r\n,Bonita Elementary,Newman-Crows Landing Unified,Stanislaus,921,9,2,1,0,0,52,0,42,2,59,11,3,24,6,2,26,27,N/A,94,10,15,37,25,13,3.16\r\n,Ohlone Elementary,Palo Alto Unified,Santa Clara,920,9,2,1,29,0,7,0,60,1,4,1,0,8,4,8,15,23,N/A,100,0,1,2,18,79,4.75\r\n,Lincoln Elementary,Burlingame Elementary,San Mateo,920,9,1,0,14,3,7,0,63,11,0,0,0,18,2,11,23,29,N/A,91,0,3,11,38,48,4.29\r\n,Beverly Vista Elementary,Beverly Hills Unified,Los Angeles,920,9,5,0,16,1,7,0,70,1,8,9,0,7,12,11,19,27,23,96,1,7,10,40,43,4.18\r\n,Highland Ranch Elementary,Poway Unified,San Diego,920,9,3,0,28,8,12,1,46,2,11,6,0,19,5,10,25,29,N/A,94,1,1,15,44,39,4.18\r\n,Walnut Creek Intermediate,Walnut Creek Elementary,Contra Costa,920,10,4,1,11,4,10,1,68,1,15,3,0,5,6,12,N/A,27,29,95,2,4,15,37,42,4.13\r\n,Rolling Hills Middle,Buckeye Union Elementary,El Dorado,920,10,2,0,11,2,11,0,68,6,10,18,0,1,3,8,N/A,31,27,99,0,3,19,43,35,4.1\r\n,Harold William Kolb,Dublin Unified,Alameda,920,9,12,0,47,9,9,0,21,1,13,7,0,10,9,5,21,25,N/A,98,2,8,11,44,35,4.02\r\n,Cardiff Elementary,Cardiff Elementary,San Diego,920,9,0,0,3,1,17,0,72,8,13,0,1,12,0,11,24,N/A,N/A,100,4,7,16,36,36,3.92\r\n,Carmel Middle,Carmel Unified,Monterey,920,10,1,0,4,0,18,0,66,8,19,17,0,6,4,8,N/A,25,24,96,6,7,17,28,42,3.92\r\n,Rose Drive Elementary,Placentia-Yorba Linda Unified,Orange,920,9,2,0,12,3,24,0,56,2,14,8,0,5,3,9,21,34,N/A,83,1,7,30,35,27,3.8\r\n,Newcomb Academy,Long Beach Unified,Los Angeles,920,9,12,0,9,3,25,1,45,1,26,26,0,4,6,11,28,28,30,95,2,11,20,38,28,3.78\r\n,Kellogg Elementary,Goleta Union Elementary,Santa Barbara,920,9,0,0,14,0,32,0,52,3,28,31,0,19,15,11,20,23,N/A,96,10,10,12,32,37,3.75\r\n,Rancho Elementary,Temecula Valley Unified,Riverside,920,9,3,1,4,4,28,0,52,9,13,0,0,6,3,10,24,31,N/A,100,2,10,27,37,23,3.7\r\n,Sandburg Elementary,San Diego Unified,San Diego,920,9,4,1,23,11,18,0,28,15,36,30,0,21,12,10,24,32,N/A,94,1,14,24,37,23,3.68\r\n,Bernice Ayer Middle,Capistrano Unified,Orange,920,10,0,0,2,0,29,0,60,8,25,13,0,9,8,7,N/A,30,30,79,10,6,18,37,28,3.67\r\n,Ranch Hills Elementary,Pomona Unified,Los Angeles,920,9,8,0,14,10,47,1,16,4,26,11,0,6,6,7,26,31,N/A,93,2,11,30,35,21,3.6\r\n,Paloma Elementary,Temecula Valley Unified,Riverside,920,9,3,2,4,4,28,0,58,2,20,3,0,5,5,16,21,28,N/A,98,2,14,32,36,16,3.49\r\n,Perdew Elementary,Etiwanda Elementary,San Bernardino,920,9,15,0,10,10,44,0,17,5,33,8,0,13,3,11,27,32,N/A,94,1,14,42,28,14,3.39\r\n,Anderson W. Clark Magnet High,Glendale Unified,Los Angeles,920,10,0,0,4,6,6,0,84,0,49,24,0,9,62,1,N/A,N/A,33,87,5,32,11,34,18,3.28\r\n,Lincoln Elementary,Clovis Unified,Fresno,920,9,7,2,5,2,43,0,39,2,52,2,0,5,2,4,25,33,N/A,97,3,19,40,26,11,3.23\r\n,Graves Elementary,Graves Elementary,Monterey,920,9,0,0,0,0,81,0,6,9,56,0,0,22,13,3,2,N/A,N/A,66,24,19,14,38,5,2.81\r\n,Laurel Street Elementary,Compton Unified,Los Angeles,920,9,20,0,0,0,79,1,0,0,85,6,0,16,50,5,28,31,N/A,90,46,31,16,5,1,1.84\r\n,Oak Creek Elementary,Irvine Unified,Orange,920,9,1,0,44,4,11,0,36,4,11,10,0,22,7,10,30,32,N/A,0,0,0,0,0,0,\r\n,Mira Catalina Elementary,Palos Verdes Peninsula Unified,Los Angeles,919,9,3,0,7,3,10,0,70,7,2,2,0,1,0,13,24,33,N/A,97,0,0,11,36,53,4.42\r\n,Coronado Middle,Coronado Unified,San Diego,919,10,3,0,2,2,18,1,73,1,5,20,0,2,3,12,N/A,30,29,96,0,2,14,32,51,4.32\r\n,Doyle Elementary,San Diego Unified,San Diego,919,9,2,0,33,3,24,1,27,10,32,44,0,28,14,6,23,33,N/A,92,2,5,13,30,50,4.23\r\n,Bret Harte Middle,San Jose Unified,Santa Clara,919,10,2,0,42,1,13,0,40,1,13,55,0,5,15,8,N/A,29,28,97,5,3,9,36,47,4.17\r\n,Mary Deterding Elementary,San Juan Unified,Sacramento,919,9,6,1,12,0,9,1,68,2,28,27,0,6,4,4,30,31,N/A,63,1,4,19,35,41,4.11\r\n,Roosevelt Elementary,Burlingame Elementary,San Mateo,919,9,0,0,12,1,17,0,55,12,15,0,0,30,6,15,22,32,N/A,99,3,7,9,39,42,4.09\r\n,,Belmont-Redwood Shores Element,San Mateo,919,B,3,0,23,4,11,1,55,4,8,11,0,5,10,13,23,28,28,89,2,6,14,40,39,4.08\r\n,,Dixie Elementary,Marin,919,B,4,1,9,1,13,0,70,2,11,11,0,7,7,15,20,26,29,97,3,6,13,37,41,4.08\r\n,Collegewood Elementary,Walnut Valley Unified,Los Angeles,919,9,3,0,48,9,28,0,11,0,17,13,0,9,18,6,24,31,N/A,96,1,4,22,47,26,3.93\r\n,Rancho Santa Margarita Intermediate,Saddleback Valley Unified,Orange,919,10,1,0,8,3,18,0,64,6,13,20,0,4,5,9,N/A,N/A,32,92,2,5,22,40,31,3.92\r\n,John H. Eader Elementary,Huntington Beach City Elementa,Orange,919,9,1,0,6,2,11,0,75,5,15,11,0,3,3,6,30,29,N/A,97,0,7,23,40,29,3.91\r\n,John L. Golden Elementary,Etiwanda Elementary,San Bernardino,919,9,10,0,15,7,28,0,39,0,13,13,0,7,3,13,28,31,N/A,94,1,9,22,37,32,3.89\r\n,Mariposa Elementary,Brea-Olinda Unified,Orange,919,9,0,0,19,3,32,1,43,2,23,16,0,8,13,12,30,28,N/A,92,1,8,26,38,27,3.83\r\n,Lafayette Elementary,San Francisco Unified,San Francisco,919,9,2,1,39,3,7,0,34,5,30,21,0,18,7,19,22,29,N/A,85,5,10,13,41,31,3.83\r\n,Standley Middle,San Diego Unified,San Diego,919,10,3,1,12,3,28,0,46,7,32,51,0,6,17,7,N/A,34,33,97,4,11,18,30,36,3.83\r\n,Gladstone Elementary,Bonita Unified,Los Angeles,919,9,3,0,9,2,40,0,40,2,32,8,0,10,3,13,23,29,N/A,97,2,8,30,39,21,3.7\r\n,Gerald R. Ford Elementary,Desert Sands Unified,Riverside,919,9,1,1,4,1,37,0,52,4,41,3,0,12,6,9,28,30,N/A,99,6,14,34,31,14,3.34\r\n,Portola Elementary,San Bruno Park Elementary,San Mateo,919,9,4,1,26,26,15,2,23,4,16,6,0,21,2,5,29,29,N/A,100,3,18,31,36,11,3.33\r\n,Temescal Valley Elementary,Corona-Norco Unified,Riverside,919,9,8,0,6,4,36,1,45,1,34,5,0,6,8,8,25,29,N/A,98,6,16,34,24,19,3.32\r\n,Superior Street Elementary,Los Angeles Unified,Los Angeles,919,9,6,0,14,7,42,0,31,0,46,24,0,10,5,12,15,14,N/A,96,4,16,38,33,9,3.27\r\n,Brywood Elementary,Irvine Unified,Orange,919,9,3,0,52,2,8,0,29,4,14,23,0,15,13,14,28,32,N/A,0,0,0,0,0,0,\r\n,Henry M. Gunn High,Palo Alto Unified,Santa Clara,918,10,1,0,41,1,8,0,42,5,9,10,0,7,21,10,N/A,N/A,24,98,2,3,4,16,75,4.59\r\nD,Discovery Charter,Santa Clara County Office of E,Santa Clara,918,9,2,1,30,1,11,1,44,3,5,0,0,8,12,12,22,27,25,98,1,3,10,36,51,4.34\r\n,Yerba Buena Elementary,Las Virgenes Unified,Los Angeles,918,9,1,1,7,1,8,0,77,5,4,0,0,5,1,15,19,34,N/A,97,0,2,15,34,49,4.3\r\n,,South Pasadena Unified,Los Angeles,918,B,3,0,36,3,23,0,32,2,17,14,0,6,8,8,20,32,29,99,1,4,14,35,46,4.21\r\n,Donlon Elementary,Pleasanton Unified,Alameda,918,9,3,1,34,4,7,1,50,0,3,7,0,7,10,15,24,31,N/A,94,0,5,12,41,42,4.19\r\n,Robinson Elementary,Saddleback Valley Unified,Orange,918,9,1,0,3,1,12,0,74,8,6,9,0,3,1,13,27,31,N/A,97,1,1,15,44,39,4.18\r\n,Riviera Elementary,Torrance Unified,Los Angeles,918,9,1,0,17,2,16,0,52,9,10,5,0,10,5,14,27,32,N/A,97,0,4,15,41,39,4.15\r\n,Moulton Elementary,Capistrano Unified,Orange,918,9,1,0,5,0,20,0,66,7,13,6,0,7,6,11,24,30,N/A,96,0,4,17,41,38,4.11\r\n,Anza Elementary,Torrance Unified,Los Angeles,918,9,1,0,33,2,16,0,37,8,12,4,0,13,9,12,30,28,N/A,98,1,6,16,42,35,4.05\r\n,Tesoro del Valle Elementary,Saugus Union,Los Angeles,918,9,6,0,18,12,18,0,44,2,8,5,0,11,8,8,25,31,N/A,99,1,6,14,49,31,4.04\r\n,Skyline Elementary,Solana Beach Elementary,San Diego,918,9,1,1,3,0,17,0,76,0,16,11,0,10,3,13,24,24,N/A,98,5,9,11,30,46,4.03\r\n,Washington Elementary,Washington Union Elementary,Monterey,918,9,1,0,8,3,11,0,76,0,0,0,0,4,0,8,N/A,28,N/A,93,0,8,17,38,37,4.02\r\n,Grant Elementary,Petaluma City Schools,Sonoma,918,9,2,0,4,1,6,0,83,3,11,18,0,0,1,11,23,28,N/A,99,0,4,25,40,31,3.99\r\n,Jefferson Elementary,Berkeley Unified,Alameda,918,9,17,0,10,0,19,0,39,13,39,6,0,14,1,15,21,25,N/A,94,8,8,14,29,41,3.87\r\n,Arthur E. Wright Middle,Las Virgenes Unified,Los Angeles,918,10,3,1,8,1,11,0,74,2,10,23,0,4,5,12,N/A,27,29,98,1,17,17,29,37,3.85\r\n,Proctor Elementary,Castro Valley Unified,Alameda,918,9,2,0,19,2,21,0,42,12,14,3,0,13,6,12,21,29,N/A,97,1,8,29,38,24,3.78\r\n,Martha Baldwin Elementary,Alhambra Unified,Los Angeles,918,9,1,0,69,1,26,0,1,1,68,5,0,41,24,5,22,31,32,97,11,29,21,29,10,2.96\r\n,Daves Avenue Elementary,Los Gatos Union Elementary,Santa Clara,917,9,1,1,11,0,7,0,75,5,3,11,0,3,7,7,23,26,N/A,95,0,1,4,33,61,4.53\r\n,Canyon Crest Academy,San Dieguito Union High,San Diego,917,10,1,0,17,1,5,0,75,1,2,41,0,0,4,9,N/A,N/A,34,95,0,1,7,29,63,4.52\r\n,Neil Cummins Elementary,Larkspur-Corte Madera,Marin,917,9,0,0,8,0,12,0,77,0,9,4,0,3,4,9,21,24,N/A,96,0,6,4,37,53,4.36\r\n,,San Carlos Elementary,San Mateo,917,B,2,1,11,2,17,1,67,0,6,0,0,8,2,10,22,25,27,99,1,4,11,38,46,4.23\r\n,Westlake Hills Elementary,Conejo Valley Unified,Ventura,917,9,1,1,7,1,11,0,72,7,11,19,0,5,4,12,19,29,N/A,71,1,4,13,41,41,4.16\r\n,,Grant Elementary,Shasta,917,B,0,4,4,1,7,0,83,1,10,22,0,0,0,8,20,26,23,98,0,5,20,32,42,4.1\r\n,Grant Elementary,Grant Elementary,Shasta,917,9,0,4,4,1,7,0,83,1,10,22,0,0,0,8,20,26,23,98,0,5,20,32,42,4.1\r\n,Travis Ranch,Placentia-Yorba Linda Unified,Orange,917,9,1,0,11,1,15,0,69,2,9,12,0,2,3,11,30,30,33,61,0,5,19,39,37,4.08\r\n,Albany Middle,Albany City Unified,Alameda,917,10,5,1,27,1,16,0,39,10,22,0,0,14,14,8,N/A,27,28,29,2,7,19,35,38,4.01\r\n,Red Hill Elementary,Tustin Unified,Orange,917,9,1,1,3,1,17,0,72,5,10,13,0,4,2,11,24,32,N/A,97,2,6,17,40,35,3.99\r\nD,Livermore Valley Charter,SBE - Livermore Valley Charter,Alameda,917,9,2,1,12,3,11,0,71,0,3,0,0,3,0,9,20,24,23,96,2,3,25,38,32,3.94\r\n,Hidden Valley Elementary Satellite,Santa Rosa City Schools,Sonoma,917,9,2,1,10,1,20,1,58,6,19,16,0,8,6,9,19,30,N/A,94,6,7,17,36,34,3.85\r\n,La Madera Elementary,Saddleback Valley Unified,Orange,917,9,2,0,9,3,25,0,54,6,22,26,0,14,3,13,27,30,N/A,92,5,9,16,36,34,3.85\r\n,Sun Valley Elementary,San Rafael City Elementary,Marin,917,9,0,0,4,0,21,1,67,5,18,18,0,15,4,11,22,25,N/A,99,6,9,13,37,34,3.84\r\n,Vannoy Elementary,Castro Valley Unified,Alameda,917,9,6,0,19,1,18,0,44,11,11,6,0,12,6,12,22,26,N/A,97,2,8,25,40,26,3.82\r\n,Marshall (Thurgood) Elementary,Chula Vista Elementary,San Diego,917,9,4,1,5,16,51,0,23,1,17,30,0,23,5,9,22,28,N/A,72,1,12,19,42,26,3.82\r\n,Sunset Elementary,San Francisco Unified,San Francisco,917,9,2,1,52,2,6,0,25,5,29,20,0,20,12,14,20,31,N/A,97,6,7,14,44,28,3.82\r\n,Cullen Elementary,Glendora Unified,Los Angeles,917,9,0,0,4,0,30,0,61,5,16,9,0,4,1,10,25,31,N/A,98,0,9,29,36,25,3.77\r\n,Charles Wagner Elementary,Placentia-Yorba Linda Unified,Orange,917,9,2,0,13,3,28,0,48,3,19,6,0,5,4,15,20,33,N/A,73,2,5,32,38,23,3.75\r\n,Sutherland Elementary,Glendora Unified,Los Angeles,917,9,1,0,10,3,33,0,47,5,20,10,0,9,3,12,23,31,N/A,100,1,14,27,38,20,3.62\r\n,Murray Manor Elementary,La Mesa-Spring Valley,San Diego,917,9,5,0,2,3,27,0,51,11,31,12,0,5,7,5,30,31,N/A,93,2,15,32,33,18,3.49\r\n,Los Altos Elementary,Hacienda la Puente Unified,Los Angeles,917,9,1,0,15,1,72,1,7,3,52,8,0,13,5,13,20,28,N/A,83,4,16,30,29,21,3.46\r\n,Piedmont High,Piedmont City Unified,Alameda,916,10,2,0,21,1,4,0,69,2,0,13,0,3,5,12,N/A,N/A,25,98,0,1,3,43,52,4.46\r\nD,Northcoast Preparatory and Performing Ar,Humboldt County Office of Educ,Humboldt,916,10,0,2,4,0,14,0,69,8,45,0,0,3,0,0,,,,85,1,6,7,40,46,4.23\r\n,Mira Costa High,Manhattan Beach Unified,Los Angeles,916,10,5,0,10,1,14,0,60,10,5,9,0,0,2,7,N/A,N/A,28,99,1,4,12,37,46,4.22\r\n,Melinda Heights Elementary,Saddleback Valley Unified,Orange,916,9,1,0,8,3,14,0,66,6,7,10,0,5,1,7,29,34,N/A,95,0,3,17,45,35,4.12\r\n,Towers Elementary,Torrance Unified,Los Angeles,916,9,2,0,31,1,17,0,35,10,14,7,0,12,7,14,30,33,N/A,97,1,6,17,40,36,4.06\r\n,De Portola Elementary,Saddleback Valley Unified,Orange,916,9,1,0,10,3,17,0,62,6,10,21,0,10,4,11,26,32,N/A,97,1,5,17,42,35,4.04\r\n,Technology High,Cotati-Rohnert Park Unified,Sonoma,916,10,0,2,11,1,15,1,70,1,8,1,0,1,15,4,N/A,N/A,26,95,2,5,27,30,36,3.92\r\n,Victor Elementary,Torrance Unified,Los Angeles,916,9,4,0,51,3,15,0,20,5,27,7,0,24,19,10,29,34,N/A,98,2,9,18,42,30,3.9\r\n,Newhart Middle,Capistrano Unified,Orange,916,10,1,0,7,2,22,0,63,6,20,16,0,6,8,7,N/A,29,29,61,4,8,20,37,31,3.83\r\n,Franklin Elementary,Alameda City Unified,Alameda,916,9,6,1,16,6,16,0,54,1,20,8,0,15,3,9,25,29,N/A,99,2,11,21,38,28,3.79\r\n,Catheryn Gates Elementary,Roseville City Elementary,Placer,916,9,7,1,7,5,13,1,67,0,24,3,0,9,4,13,22,31,N/A,99,1,9,27,41,23,3.77\r\n,Paloma Elementary,San Marcos Unified,San Diego,916,9,2,0,12,6,37,1,38,4,40,4,1,18,12,15,25,29,N/A,98,11,11,15,41,22,3.52\r\n,Taylor Middle,Millbrae Elementary,San Mateo,916,10,1,0,44,7,19,2,21,4,22,11,0,12,26,7,N/A,26,28,85,4,30,7,41,18,3.39\r\nY,Whited Elementary Charter,Rincon Valley Union Elementary,Sonoma,916,9,4,2,6,2,26,1,57,2,44,11,1,12,6,18,21,28,N/A,94,7,17,32,30,15,3.28\r\n,,Gravenstein Union Elementary,Sonoma,916,B,1,1,3,0,11,0,82,0,12,23,0,7,2,9,16,21,19,91,5,25,31,34,5,3.08\r\n,Middle College High,San Bernardino City Unified,San Bernardino,916,10,9,1,1,2,74,0,13,0,100,23,0,3,49,0,N/A,N/A,22,85,22,29,30,14,5,2.51\r\n,Oliver Wendell Holmes Junior High,Davis Joint Unified,Yolo,915,10,4,1,20,1,15,0,59,0,21,40,0,7,9,11,N/A,N/A,26,95,2,4,10,23,61,4.36\r\n,Stevenson Elementary,Mountain View Whisman,Santa Clara,915,9,2,1,11,0,15,2,59,8,16,18,0,22,8,12,25,28,N/A,98,4,4,7,21,63,4.35\r\nD,Bellevue-Santa Fe Charter,San Luis Coastal Unified,San Luis Obispo,915,9,2,1,11,1,9,0,71,5,0,0,0,1,0,4,20,17,N/A,100,0,2,8,45,46,4.34\r\n,,Pleasanton Unified,Alameda,915,B,2,1,31,3,9,0,53,0,7,15,0,4,9,10,24,30,27,97,1,5,12,37,45,4.18\r\n,,Walnut Creek Elementary,Contra Costa,915,B,3,1,13,4,12,0,64,3,14,2,0,8,5,12,23,26,29,95,2,4,14,39,41,4.15\r\n,Seaside Elementary,Torrance Unified,Los Angeles,915,9,2,0,28,1,15,0,47,5,11,5,0,13,6,13,29,30,N/A,96,1,6,20,40,33,3.97\r\n,Hidden Trails Elementary,Chino Valley Unified,San Bernardino,915,9,3,0,36,8,28,0,19,5,14,18,0,9,10,17,29,30,N/A,91,0,9,15,47,29,3.97\r\n,Nordstrom Elementary,Morgan Hill Unified,Santa Clara,915,9,2,1,19,4,28,0,45,0,18,22,1,14,6,8,27,28,N/A,92,2,9,18,35,35,3.93\r\n,Elliott Ranch Elementary,Elk Grove Unified,Sacramento,915,9,9,0,26,8,17,0,25,11,20,11,0,7,12,10,23,26,N/A,94,2,10,19,37,33,3.9\r\n,Rolling Ridge Elementary,Chino Valley Unified,San Bernardino,915,9,3,0,28,10,34,0,17,7,18,17,0,9,6,11,29,32,N/A,90,1,8,18,46,27,3.89\r\n,John Swett Elementary,Martinez Unified,Contra Costa,915,9,1,0,5,0,24,0,62,7,13,13,0,4,1,7,29,27,N/A,95,2,7,23,42,26,3.85\r\n,Agnes L. Smith Elementary,Huntington Beach City Elementa,Orange,915,9,1,0,8,1,21,0,63,7,20,10,0,4,4,10,32,29,N/A,96,1,6,28,38,27,3.83\r\n,Carver Elementary,Long Beach Unified,Los Angeles,915,9,6,0,4,6,23,1,47,0,26,10,0,5,3,15,26,29,N/A,93,2,9,25,37,27,3.78\r\n,John Sinnott Elementary,Milpitas Unified,Santa Clara,915,9,2,0,59,14,12,1,11,2,18,11,0,28,22,8,26,33,N/A,98,3,11,19,43,24,3.75\r\n,,Fountain Valley Elementary,Orange,915,B,1,1,34,1,15,1,45,1,24,8,0,10,13,10,27,28,27,87,2,8,29,39,22,3.72\r\n,Dwight D. Eisenhower Elementary,Corona-Norco Unified,Riverside,915,9,5,0,11,4,26,1,51,1,15,7,0,3,6,16,26,28,N/A,100,2,10,31,34,23,3.66\r\n,Cobblestone Elementary,Rocklin Unified,Placer,915,9,2,0,4,2,15,0,74,3,25,5,0,6,2,13,24,23,N/A,91,0,7,33,46,14,3.66\r\n,McMillin (Corky) Elementary,Chula Vista Elementary,San Diego,915,9,6,0,6,24,46,1,13,3,21,18,0,26,6,9,22,29,N/A,80,1,12,26,44,17,3.62\r\n,Abraham Lincoln Elementary,Glendale Unified,Los Angeles,915,9,0,0,18,3,17,0,57,5,24,11,0,18,12,10,21,36,N/A,84,4,15,23,36,22,3.58\r\n,Hillsdale Middle,Cajon Valley Union,San Diego,915,10,4,0,4,1,24,0,57,8,27,24,0,7,17,10,N/A,32,31,97,4,16,28,29,23,3.51\r\n,Vista Grande Elementary,Cajon Valley Union,San Diego,915,9,1,0,2,2,14,0,72,4,24,14,0,17,7,10,24,30,N/A,90,3,17,31,28,22,3.49\r\n,Monte Verde Elementary,South San Francisco Unified,San Mateo,915,9,6,0,24,37,18,2,13,0,27,5,0,19,4,11,23,29,N/A,100,1,13,33,44,9,3.49\r\n,Yick Wo Elementary,San Francisco Unified,San Francisco,915,9,3,1,48,2,4,1,29,5,60,19,0,34,17,13,21,26,N/A,89,10,25,14,33,18,3.25\r\n,Browns Valley Elementary,Marysville Joint Unified,Yuba,915,9,0,21,3,0,13,1,62,1,37,10,0,4,1,5,23,22,N/A,90,7,15,41,29,8,3.15\r\n,Nelson Elementary,Clovis Unified,Fresno,915,9,3,2,12,0,52,0,28,3,60,2,1,13,7,3,25,32,N/A,95,8,24,33,22,13,3.08\r\n,Early College High,Newport-Mesa Unified,Orange,915,10,0,1,5,0,73,1,21,0,69,11,1,4,47,1,N/A,N/A,20,91,32,21,23,16,8,2.47\r\n,Los Cerros Middle,San Ramon Valley Unified,Contra Costa,914,10,1,0,6,1,5,0,81,6,2,7,0,1,1,9,N/A,31,28,97,0,1,7,49,43,4.32\r\n,,Mountain Elementary,Santa Cruz,914,B,1,6,7,0,8,1,78,0,0,0,0,3,0,9,17,14,N/A,98,1,6,6,45,43,4.22\r\n,Mountain Elementary,Mountain Elementary,Santa Cruz,914,9,1,6,7,0,8,1,78,0,0,0,0,3,0,9,17,14,N/A,98,1,6,6,45,43,4.22\r\n,Bowditch Middle,San Mateo-Foster City,San Mateo,914,10,2,0,45,6,7,1,35,4,5,18,0,5,17,6,N/A,27,29,99,1,4,13,42,41,4.19\r\n,Miraleste Intermediate,Palos Verdes Peninsula Unified,Los Angeles,914,10,4,1,14,3,15,0,62,1,4,10,0,3,1,11,N/A,30,29,95,1,3,16,39,41,4.16\r\n,Sundance Elementary,Poway Unified,San Diego,914,9,5,0,17,10,9,2,50,7,16,3,0,17,3,14,24,31,N/A,91,1,7,13,40,39,4.1\r\nY,Eagle Peak Montessori,Mt. Diablo Unified,Contra Costa,914,9,1,1,12,3,15,0,58,11,4,6,0,2,1,3,40,17,N/A,31,2,5,20,34,39,4.02\r\n,Horace Mann Elementary,Beverly Hills Unified,Los Angeles,914,9,4,1,20,2,8,0,65,0,14,9,0,13,4,12,18,25,22,99,1,8,15,41,36,4.02\r\n,Sierra Madre Elementary,Pasadena Unified,Los Angeles,914,9,5,0,3,1,32,0,52,6,21,36,0,4,4,11,28,28,30,97,3,8,19,31,39,3.95\r\n,La Costa Meadows Elementary,San Marcos Unified,San Diego,914,9,3,1,6,2,19,1,65,2,17,4,0,9,3,15,23,27,N/A,95,4,6,20,38,33,3.91\r\nY,University Preparatory,Shasta Union High,Shasta,914,10,0,1,5,1,9,0,77,7,22,17,0,0,0,2,N/A,27,24,97,1,7,24,36,32,3.91\r\n,Hickory Elementary,Torrance Unified,Los Angeles,914,9,3,0,51,5,14,1,15,8,14,4,0,24,12,13,29,35,N/A,96,1,7,21,45,26,3.87\r\n,John C. Fremont Elementary,Glendale Unified,Los Angeles,914,9,0,0,20,3,14,0,59,2,17,15,0,22,10,8,24,33,N/A,88,1,20,10,37,32,3.79\r\n,Woodsboro Elementary,Placentia-Yorba Linda Unified,Orange,914,9,2,0,18,2,22,0,51,2,21,27,0,7,5,12,31,34,N/A,71,2,9,27,33,29,3.78\r\n,Franklin Avenue Elementary,Los Angeles Unified,Los Angeles,914,9,3,0,8,4,28,0,55,0,40,22,0,12,11,8,17,14,N/A,94,4,7,24,39,26,3.75\r\n,Meadow Elementary,Waugh Elementary,Sonoma,914,9,1,0,8,1,24,0,58,8,13,12,0,13,8,11,2,1,N/A,98,5,6,24,42,22,3.7\r\n,Lomarena Elementary,Saddleback Valley Unified,Orange,914,9,2,0,8,4,33,0,50,2,32,5,0,26,3,12,29,31,N/A,83,9,13,19,29,29,3.55\r\n,Tuscany Hills Elementary,Lake Elsinore Unified,Riverside,914,9,7,0,4,3,25,1,60,0,35,13,0,6,2,12,24,33,N/A,99,2,14,38,30,16,3.44\r\n,Meadow Green Elementary,Lowell Joint,Los Angeles,914,9,0,0,2,1,65,0,30,2,33,6,0,7,5,6,28,31,N/A,97,1,15,42,28,14,3.37\r\n,Merced Elementary,West Covina Unified,Los Angeles,914,9,4,0,6,2,81,1,6,0,62,11,0,14,8,13,20,32,N/A,93,12,32,40,13,3,2.63\r\n,Greentree Elementary,Irvine Unified,Orange,914,9,3,0,37,5,14,0,36,4,19,7,0,23,6,10,28,35,N/A,0,0,0,0,0,0,\r\n,Green Valley Elementary,San Ramon Valley Unified,Contra Costa,913,9,0,0,4,0,8,0,78,10,0,5,0,1,0,5,25,30,N/A,100,0,1,5,55,40,4.33\r\n,Earl Warren Middle,San Dieguito Union High,San Diego,913,9,1,1,6,0,15,0,75,2,6,12,0,6,4,15,N/A,N/A,30,99,3,4,8,34,51,4.25\r\nD,\"Albert Einstein Academy for Letters, Art\",William S. Hart Union High,Los Angeles,913,10,4,1,7,5,11,0,65,6,1,0,0,0,0,0,N/A,N/A,22,73,0,2,15,43,40,4.2\r\nY,Open Charter Magnet,Los Angeles Unified,Los Angeles,913,9,26,0,21,1,12,0,40,0,19,27,0,5,7,12,11,N/A,N/A,96,0,4,11,45,39,4.19\r\n,Ocean View Elementary,Albany City Unified,Alameda,913,9,5,0,38,2,22,0,24,9,33,0,0,40,8,9,24,28,N/A,53,2,5,16,28,50,4.19\r\n,,Encinitas Union Elementary,San Diego,913,B,1,0,5,1,19,0,71,4,14,1,0,10,4,12,22,29,N/A,98,5,5,10,35,45,4.11\r\n,Mary E. Silveira Elementary,Dixie Elementary,Marin,913,9,4,2,8,1,14,0,66,5,12,5,0,8,6,16,20,24,N/A,99,3,4,15,38,40,4.08\r\n,Hancock Park Elementary,Los Angeles Unified,Los Angeles,913,9,7,0,54,2,10,0,27,0,15,28,0,21,19,11,19,22,N/A,98,1,5,14,44,36,4.08\r\n,Muirlands Middle,San Diego Unified,San Diego,913,9,2,0,7,1,31,0,54,5,26,48,0,5,17,8,N/A,31,31,95,4,9,11,27,48,4.07\r\n,Sunset Elementary,Livermore Valley Joint Unified,Alameda,913,9,0,1,6,1,17,0,65,7,11,8,0,5,2,15,24,26,N/A,96,2,7,19,41,32,3.94\r\n,Dailard Elementary,San Diego Unified,San Diego,913,9,4,1,2,1,22,0,58,12,26,40,0,7,3,10,24,34,N/A,97,1,9,22,33,34,3.9\r\n,Canyon Rim Elementary,Orange Unified,Orange,913,9,2,0,15,2,17,0,60,1,10,3,0,6,2,10,29,28,N/A,97,1,7,22,42,28,3.89\r\n,Trabuco Mesa Elementary,Saddleback Valley Unified,Orange,913,9,1,0,5,3,23,0,60,6,14,14,0,8,2,11,29,32,N/A,85,3,4,25,36,31,3.89\r\n,Lincoln Elementary,Redondo Beach Unified,Los Angeles,913,9,5,1,12,3,23,1,51,4,17,8,0,8,3,17,25,28,N/A,99,1,7,24,40,28,3.86\r\n,Hope Elementary,Hope Elementary,Santa Barbara,913,9,2,0,7,0,29,0,59,0,28,13,0,22,4,14,18,26,N/A,98,5,4,25,33,33,3.85\r\n,Meadows Elementary,Millbrae Elementary,San Mateo,913,9,2,0,58,5,10,1,19,4,13,6,0,25,16,5,28,31,N/A,82,3,19,5,43,30,3.79\r\n,Cole Canyon Elementary,Murrieta Valley Unified,Riverside,913,9,3,1,3,2,20,1,70,1,16,13,0,3,2,11,23,33,N/A,98,1,9,26,40,24,3.75\r\n,Rincon Valley Middle,Santa Rosa City Schools,Sonoma,913,9,1,1,7,1,18,1,66,5,17,18,1,4,8,10,N/A,N/A,28,99,6,8,21,36,30,3.75\r\n,Cox (James H.) Elementary,Fountain Valley Elementary,Orange,913,9,1,0,40,2,26,2,26,2,36,2,0,22,8,7,29,30,N/A,95,2,10,31,33,24,3.66\r\n,Chabot Elementary,Castro Valley Unified,Alameda,913,9,3,0,16,2,24,1,40,16,17,1,0,12,4,9,24,31,N/A,98,2,13,26,40,20,3.63\r\n,Masuda (Kazuo) Middle,Fountain Valley Elementary,Orange,913,9,1,1,42,1,20,1,32,1,31,11,0,11,25,6,N/A,27,28,80,3,12,30,39,15,3.51\r\n,Gettysburg Elementary,Clovis Unified,Fresno,913,9,3,1,14,1,34,0,43,3,51,2,0,9,6,5,24,32,N/A,96,4,30,26,25,15,3.16\r\nY,Sanger Academy Charter,Sanger Unified,Fresno,913,9,1,0,4,0,84,1,9,0,72,7,0,12,21,4,22,32,30,99,12,16,41,24,7,2.99\r\n,West Campus,Sacramento City Unified,Sacramento,913,10,7,0,27,2,34,0,20,8,53,30,0,2,38,0,N/A,N/A,33,87,19,20,25,20,15,2.9\r\nD,KIPP Summit Academy,San Lorenzo Unified,Alameda,913,9,7,0,27,3,54,1,7,1,69,0,0,35,40,6,N/A,30,29,98,15,28,25,24,8,2.83\r\n,Wescove Elementary,West Covina Unified,Los Angeles,913,9,5,0,10,3,79,0,4,0,76,0,0,27,0,14,18,N/A,N/A,94,9,26,49,14,2,2.75\r\n,Design Science Early College High,Fresno Unified,Fresno,913,10,7,0,18,0,58,2,16,0,100,32,0,0,38,1,N/A,N/A,29,95,18,31,35,8,8,2.56\r\n,Fairfield Elementary,Davis Joint Unified,Yolo,912,9,4,4,8,0,4,0,79,0,13,0,0,4,0,13,,,,92,0,0,0,32,68,4.68\r\n,Los Ranchos Elementary,San Luis Coastal Unified,San Luis Obispo,912,9,1,1,3,1,13,0,77,5,13,0,0,5,0,9,24,31,N/A,99,1,4,10,41,44,4.23\r\n,Donner Trail Elementary,Tahoe-Truckee Joint Unified,Placer,912,9,0,0,0,2,0,0,95,2,11,2,0,0,0,9,24,22,N/A,86,0,3,16,39,42,4.21\r\nD,Camarillo Academy of Progressive Educati,Oxnard Union High,Ventura,912,9,1,0,8,2,18,0,69,3,8,0,0,2,2,10,20,33,32,97,0,3,19,35,44,4.19\r\n,Chapman Hills Elementary,Orange Unified,Orange,912,9,0,1,16,3,19,0,54,3,11,6,0,9,3,9,28,34,N/A,96,1,5,16,42,36,4.06\r\n,Valencia Elementary,Saddleback Valley Unified,Orange,912,9,1,0,9,2,14,1,67,5,15,20,0,10,1,14,29,34,N/A,92,2,4,16,38,39,4.06\r\n,Greenhills Elementary,Eureka Union,Placer,912,9,0,0,4,0,11,0,76,9,11,0,0,6,0,13,28,N/A,N/A,99,1,4,21,40,34,4.03\r\n,Bishop's Peak Elementary,San Luis Coastal Unified,San Luis Obispo,912,9,1,0,8,1,17,0,70,1,21,0,0,8,1,8,22,33,N/A,98,3,6,19,35,36,3.94\r\n,Sequoia Elementary,Rincon Valley Union Elementary,Sonoma,912,9,4,1,3,1,8,1,82,1,19,10,0,3,2,8,21,31,N/A,83,1,7,23,41,29,3.88\r\n,Dunsmore Elementary,Glendale Unified,Los Angeles,912,9,1,1,20,4,9,0,63,1,15,15,0,18,9,15,24,30,N/A,87,1,15,16,35,33,3.85\r\n,Vejar Elementary,Walnut Valley Unified,Los Angeles,912,9,3,0,48,12,27,0,10,0,19,12,0,13,15,12,24,30,N/A,98,2,8,22,43,26,3.83\r\n,Chaparral Elementary,Las Virgenes Unified,Los Angeles,912,9,1,0,5,0,9,0,81,3,5,0,0,13,2,16,22,24,N/A,99,1,25,13,12,49,3.82\r\n,Helen Hunt Jackson Elementary,Temecula Valley Unified,Riverside,912,9,5,2,7,6,22,1,49,6,10,0,0,3,5,11,23,33,N/A,98,0,7,31,37,24,3.78\r\n,Vintage Hills Elementary,Temecula Valley Unified,Riverside,912,9,1,1,3,2,25,0,61,8,15,0,0,3,3,11,23,33,N/A,100,1,8,30,41,20,3.71\r\n,Lincoln Middle,Alameda City Unified,Alameda,912,9,5,0,40,5,8,1,38,3,20,21,0,9,16,10,N/A,29,27,98,4,13,21,36,26,3.67\r\n,Lupin Hill Elementary,Las Virgenes Unified,Los Angeles,912,9,2,0,10,0,9,0,73,5,11,0,0,14,3,13,21,27,N/A,99,1,25,18,20,36,3.64\r\n,,Spencer Valley Elementary,San Diego,912,B,0,0,0,0,10,0,76,14,52,10,0,0,0,14,2,2,15,67,0,7,43,36,14,3.57\r\n,Spencer Valley Elementary,Spencer Valley Elementary,San Diego,912,9,0,0,0,0,10,0,76,14,52,10,0,0,0,14,5,N/A,N/A,67,0,7,43,36,14,3.57\r\n,Red Hawk Elementary,Temecula Valley Unified,Riverside,912,9,3,0,5,6,29,0,46,11,19,1,0,6,3,13,21,22,N/A,99,2,12,31,38,17,3.55\r\n,Macy Elementary,Lowell Joint,Los Angeles,912,9,1,0,3,1,56,0,35,3,21,11,0,9,4,12,26,32,N/A,97,5,10,34,27,24,3.55\r\n,Spring View Middle,Rocklin Unified,Placer,912,9,2,1,5,3,13,0,68,7,27,13,0,4,4,10,N/A,N/A,27,95,3,12,33,35,18,3.53\r\n,Halecrest Elementary,Chula Vista Elementary,San Diego,912,9,2,1,2,3,74,0,16,1,39,21,0,25,4,11,19,31,N/A,80,3,18,27,32,20,3.47\r\n,Ronald Reagan Elementary,Panama-Buena Vista Union,Kern,912,9,7,0,23,1,26,0,42,0,25,17,0,4,12,8,26,31,N/A,52,13,30,20,30,7,2.88\r\n,Etna Elementary,Scott Valley Unified,Siskiyou,912,9,2,7,2,0,10,1,73,7,54,0,0,6,0,6,24,18,N/A,92,5,40,23,26,6,2.87\r\n,Frank Lanterman,Los Angeles Unified,Los Angeles,912,C,12,0,2,4,79,1,1,0,87,0,0,76,1,100,N/A,N/A,11,49,31,31,18,16,4,2.31\r\n,Oak Chan Elementary,Folsom-Cordova Unified,Sacramento,911,9,1,1,10,1,8,0,78,1,3,7,0,3,5,13,31,27,N/A,90,1,2,15,42,39,4.17\r\n,San Benancio Middle,Washington Union Elementary,Monterey,911,9,3,1,13,1,10,0,73,0,1,0,0,0,1,8,N/A,27,27,92,1,6,15,32,45,4.15\r\n,,Burlingame Elementary,San Mateo,911,B,1,0,19,3,16,1,52,7,9,1,0,21,11,10,22,27,27,97,2,7,13,38,41,4.09\r\n,Franklin Elementary,Loomis Union Elementary,Placer,911,9,0,1,2,0,5,0,89,2,10,8,0,2,2,6,24,27,31,95,0,5,20,44,31,4.01\r\n,Hesby Oaks,Los Angeles Unified,Los Angeles,911,9,4,0,4,2,19,0,70,1,20,31,0,4,8,6,12,33,35,89,1,6,19,39,35,3.99\r\n,Rio Norte Junior High,William S. Hart Union High,Los Angeles,911,9,4,0,11,6,22,0,50,7,8,16,0,3,6,14,N/A,N/A,21,99,0,4,23,43,30,3.98\r\n,Grant K-8,San Diego Unified,San Diego,911,9,4,1,4,2,30,1,55,4,26,43,0,10,4,10,24,23,23,91,3,8,22,31,37,3.92\r\n,Breen Elementary,Rocklin Unified,Placer,911,9,1,1,3,3,10,0,75,8,14,11,0,2,1,13,25,29,N/A,96,1,6,24,42,27,3.89\r\n,Maple Hill Elementary,Walnut Valley Unified,Los Angeles,911,9,3,0,56,4,24,0,13,0,16,13,0,16,17,14,22,27,N/A,95,1,8,21,43,28,3.89\r\n,Foothill Technology High,Ventura Unified,Ventura,911,10,2,1,6,1,26,0,62,2,22,39,0,1,9,2,N/A,N/A,31,100,4,9,23,32,32,3.8\r\n,Magnolia Elementary,Carlsbad Unified,San Diego,911,9,1,0,1,0,21,0,71,4,17,21,0,6,1,6,31,31,N/A,97,3,6,27,38,27,3.79\r\n,Juliet Morris Elementary,Cypress Elementary,Orange,911,9,2,0,36,2,25,0,30,5,25,6,0,23,12,7,30,27,N/A,96,1,9,26,37,27,3.79\r\n,Holmes Elementary,San Diego Unified,San Diego,911,9,1,0,3,0,21,1,64,9,27,44,0,2,5,12,22,26,N/A,95,2,10,28,34,27,3.75\r\nY,Rolling Hills Middle,Campbell Union,Santa Clara,911,9,2,1,18,2,18,1,55,2,17,22,0,7,18,7,N/A,26,27,97,3,12,20,38,26,3.72\r\nD,\"Ivy Bound Academy of Math, Science, and\",Los Angeles Unified,Los Angeles,911,9,5,0,3,1,25,0,61,4,31,0,0,3,20,11,N/A,29,29,85,1,18,21,30,30,3.71\r\n,Crestview Elementary,Lompoc Unified,Santa Barbara,911,9,3,0,1,2,24,1,55,13,24,22,0,2,2,9,20,28,N/A,96,0,8,40,28,24,3.68\r\n,Harbour View Elementary,Ocean View,Orange,911,9,1,0,10,2,21,0,62,4,21,7,0,11,5,7,24,32,N/A,100,7,8,24,33,28,3.67\r\n,Caryn Elementary,Etiwanda Elementary,San Bernardino,911,9,5,0,11,1,40,0,38,4,29,4,0,6,1,11,28,32,N/A,93,2,11,33,27,27,3.67\r\n,Atherwood Elementary,Simi Valley Unified,Ventura,911,9,1,0,10,3,19,0,62,4,14,9,0,4,6,9,23,34,N/A,95,4,17,24,32,22,3.51\r\n,Eastvale Elementary,Corona-Norco Unified,Riverside,911,9,12,0,16,7,41,0,21,1,33,8,0,8,12,10,27,32,N/A,92,5,16,33,29,17,3.38\r\n,Gardenhill Elementary,Norwalk-La Mirada Unified,Los Angeles,911,9,2,0,8,3,61,1,23,1,43,14,0,6,5,10,26,33,N/A,99,1,26,30,24,19,3.36\r\n,Alta Murrieta Elementary,Murrieta Valley Unified,Riverside,911,9,4,0,3,6,38,1,45,3,42,15,0,6,6,9,24,33,N/A,96,3,20,33,30,14,3.32\r\n,Cleveland Elementary,Oakland Unified,Alameda,911,9,20,0,55,1,8,0,8,8,70,64,0,22,30,7,23,28,N/A,55,5,24,26,32,14,3.26\r\n,Gravenstein Elementary,Gravenstein Union Elementary,Sonoma,911,9,1,2,3,0,13,0,80,0,13,0,0,7,1,7,16,20,N/A,91,4,23,29,37,7,3.19\r\n,James Earl Carter Elementary,Desert Sands Unified,Riverside,911,9,2,0,6,1,41,1,45,4,55,4,0,21,8,11,25,28,N/A,99,10,20,30,25,15,3.15\r\n,Genevieve Didion,Sacramento City Unified,Sacramento,911,9,7,1,28,3,21,1,27,13,16,40,0,3,5,12,26,33,30,67,8,29,23,24,16,3.1\r\nD,LaVerne Elementary Preparatory Academy,Hesperia Unified,San Bernardino,911,9,6,0,3,0,48,0,40,3,56,0,0,0,0,0,8,6,N/A,98,6,25,45,14,10,2.99\r\n,North Davis Elementary,Davis Joint Unified,Yolo,910,9,4,0,23,1,15,0,57,0,21,28,0,14,8,14,27,30,N/A,98,1,5,9,20,64,4.41\r\n,Acalanes High,Acalanes Union High,Contra Costa,910,10,0,0,11,2,8,0,71,7,2,29,0,1,4,9,N/A,N/A,28,99,0,2,9,40,49,4.35\r\n,Foothill Ranch Elementary,Saddleback Valley Unified,Orange,910,9,2,0,14,2,13,0,58,9,7,13,0,8,2,11,28,32,N/A,96,0,3,15,45,36,4.14\r\n,Folsom Middle,Folsom-Cordova Unified,Sacramento,910,9,1,1,14,2,8,0,73,1,8,20,0,2,6,6,N/A,34,33,93,0,4,20,42,34,4.06\r\n,Las Flores Elementary,Capistrano Unified,Orange,910,9,2,0,7,2,16,0,66,7,10,4,0,4,4,6,27,31,N/A,70,1,3,19,46,31,4.04\r\n,Salt Creek Elementary,Chula Vista Elementary,San Diego,910,9,4,0,4,18,51,0,20,1,11,22,0,25,4,4,21,30,N/A,86,1,7,17,40,35,4.01\r\nD,Pasadena Rosebud Academy,Pasadena Unified,Los Angeles,910,9,81,0,0,0,16,0,1,0,1,0,0,4,1,3,2,2,N/A,3,0,0,0,100,0,4\r\n,Vine Hill Elementary,Scotts Valley Unified,Santa Cruz,910,9,1,0,3,0,14,0,68,12,20,0,0,5,1,8,27,30,N/A,93,1,8,14,47,29,3.97\r\n,Vallecito Elementary,Dixie Elementary,Marin,910,9,3,0,9,1,19,1,64,3,16,7,0,14,10,12,20,25,N/A,97,7,8,13,32,39,3.89\r\n,William Mendenhall Middle,Livermore Valley Joint Unified,Alameda,910,9,1,0,5,2,18,0,66,7,12,24,0,3,4,9,N/A,29,28,100,3,8,20,43,25,3.8\r\n,Loomis Elementary,Loomis Union Elementary,Placer,910,9,2,1,3,2,7,0,85,1,23,10,0,2,2,6,22,26,26,97,2,11,33,35,19,3.58\r\n,Hollow Hills Elementary,Simi Valley Unified,Ventura,910,9,1,0,15,3,20,0,57,4,14,9,0,6,10,12,24,32,N/A,95,2,17,25,31,24,3.57\r\n,Walnut Elementary,Walnut Valley Unified,Los Angeles,910,9,3,0,45,4,37,0,11,0,27,9,0,14,14,9,21,27,N/A,91,2,16,26,34,22,3.57\r\n,Discovery Elementary,San Marcos Unified,San Diego,910,9,5,1,6,4,27,1,55,1,26,4,1,11,7,13,25,29,N/A,84,10,10,20,38,23,3.53\r\n,Alfred Bernhard Nobel Middle,Los Angeles Unified,Los Angeles,910,9,5,0,16,7,38,0,33,1,47,47,0,3,14,7,N/A,36,32,91,6,14,26,35,20,3.49\r\n,Northwood High,Irvine Unified,Orange,910,10,1,0,50,3,7,0,34,5,4,33,0,3,17,5,N/A,N/A,29,0,0,0,0,0,0,\r\n,Glen Paul,Humboldt County Office of Educ,Humboldt,910,C,2,7,2,0,20,0,70,0,57,0,0,2,0,100,,,,0,0,0,0,0,0,\r\n,Niles Elementary,Fremont Unified,Alameda,909,9,3,1,41,7,10,0,31,8,15,5,0,14,12,8,27,29,N/A,97,3,9,10,35,43,4.05\r\n,Walteria Elementary,Torrance Unified,Los Angeles,909,9,3,0,38,3,11,0,37,5,18,6,0,17,8,9,30,34,N/A,92,1,5,19,41,34,4.02\r\n,,Rescue Union Elementary,El Dorado,909,B,1,0,4,1,13,0,73,6,13,11,0,2,1,10,27,27,26,96,2,7,17,41,33,3.98\r\n,Laguna Niguel Elementary,Capistrano Unified,Orange,909,9,0,1,11,3,23,0,56,6,21,6,0,12,9,8,25,35,N/A,96,3,9,14,34,40,3.97\r\n,,Carmel Unified,Monterey,909,B,1,0,3,0,17,0,68,8,16,15,0,5,4,7,20,24,23,96,5,7,16,31,41,3.94\r\n,Niguel Hills Middle,Capistrano Unified,Orange,909,9,1,0,3,1,21,0,67,7,21,17,0,6,8,10,N/A,30,29,91,3,7,19,37,34,3.92\r\n,,Walnut Valley Unified,Los Angeles,909,B,3,0,58,6,21,1,11,0,13,23,0,8,14,8,23,30,29,96,1,7,19,45,28,3.9\r\nD,Einstein Academy,San Diego Unified,San Diego,909,9,9,1,4,3,23,1,59,0,18,0,0,20,5,3,21,23,N/A,99,1,11,19,35,34,3.9\r\n,Placer Elementary,Loomis Union Elementary,Placer,909,9,1,1,1,0,6,0,88,1,11,6,0,2,1,14,22,25,25,97,1,5,25,41,27,3.87\r\n,Marvin Elementary,San Diego Unified,San Diego,909,9,5,1,4,2,24,0,54,9,27,54,0,8,4,7,25,31,N/A,96,2,8,30,33,27,3.74\r\n,Golden Oak Community,Sulphur Springs Union,Los Angeles,909,9,6,0,7,3,33,1,47,4,19,11,0,8,7,7,1,2,N/A,79,2,10,26,39,24,3.73\r\n,Thomas Jefferson Elementary,Roseville City Elementary,Placer,909,9,2,1,16,7,18,1,55,0,19,1,0,14,2,9,22,34,N/A,100,1,11,29,38,22,3.69\r\n,Weimar Hills,Placer Hills Union Elementary,Placer,909,9,1,0,0,0,7,0,89,2,23,7,0,2,0,8,N/A,26,N/A,95,1,13,32,30,24,3.63\r\n,Susan B. Anthony Elementary,Corona-Norco Unified,Riverside,909,9,6,0,9,4,30,0,51,0,21,7,0,8,5,9,26,30,N/A,91,3,10,31,36,21,3.61\r\n,Brightwood Elementary,Alhambra Unified,Los Angeles,909,9,1,0,58,1,35,0,4,1,43,7,1,22,16,7,23,35,30,99,5,13,22,40,20,3.58\r\n,Lake Mathews Elementary,Riverside Unified,Riverside,909,9,7,0,9,6,32,1,42,0,30,13,0,8,7,10,28,30,N/A,98,3,12,32,36,18,3.53\r\n,Alamo Elementary,San Francisco Unified,San Francisco,909,9,1,0,64,3,5,0,18,4,44,9,0,27,18,7,21,28,N/A,92,9,16,15,35,25,3.5\r\n,,Magnolia Union Elementary,Imperial,909,B,0,0,2,1,32,0,63,0,19,0,0,4,7,6,14,29,N/A,98,3,19,26,38,14,3.41\r\n,Magnolia Elementary,Magnolia Union Elementary,Imperial,909,9,0,0,2,1,32,0,63,0,19,0,0,4,7,6,14,29,N/A,98,3,19,26,38,14,3.41\r\n,Jefferson Elementary,San Francisco Unified,San Francisco,909,9,2,0,65,2,5,1,15,4,44,18,0,35,16,8,21,32,N/A,93,10,22,17,34,17,3.25\r\n,,Acalanes Union High,Contra Costa,908,B,1,0,13,2,8,0,70,6,3,31,0,2,5,9,N/A,N/A,27,98,1,2,9,38,49,4.32\r\nD,OCHSA,Santa Ana Unified,Orange,908,10,2,0,16,2,23,0,51,6,6,0,0,0,8,3,N/A,N/A,30,98,1,3,16,37,43,4.2\r\n,Running Springs Elementary,Orange Unified,Orange,908,9,2,1,23,3,13,0,55,1,10,4,0,9,3,9,29,32,N/A,97,1,3,16,40,40,4.15\r\n,Morning Creek Elementary,Poway Unified,San Diego,908,9,5,0,25,9,11,1,44,5,16,7,0,21,4,13,25,29,N/A,90,1,6,14,38,41,4.11\r\n,,Washington Union Elementary,Monterey,908,B,2,1,11,2,10,0,74,0,0,0,0,2,2,8,24,27,27,93,1,7,16,36,41,4.1\r\n,Round Meadow Elementary,Las Virgenes Unified,Los Angeles,908,9,2,0,6,0,10,0,79,3,5,0,0,4,2,13,22,27,N/A,99,1,12,10,31,46,4.1\r\n,Mt. Washington Elementary,Los Angeles Unified,Los Angeles,908,9,7,1,9,4,45,0,33,0,26,16,0,4,2,11,14,9,N/A,75,2,9,21,36,33,3.89\r\n,Richmond Street Elementary,El Segundo Unified,Los Angeles,908,9,2,0,7,1,24,0,55,10,10,1,0,9,2,10,25,32,N/A,99,1,9,24,37,29,3.85\r\n,Canyon Hills Junior High,Chino Valley Unified,San Bernardino,908,9,5,0,26,7,32,1,26,4,15,17,0,3,9,10,N/A,N/A,31,93,1,9,20,44,26,3.84\r\n,Loma Portal Elementary,San Diego Unified,San Diego,908,9,3,0,3,0,31,0,55,8,38,29,0,16,0,6,26,30,N/A,89,4,11,19,30,36,3.84\r\n,Los Olivos Elementary,Los Olivos Elementary,Santa Barbara,908,9,1,1,0,0,19,0,70,0,9,19,0,6,0,8,20,21,20,81,4,7,23,35,31,3.83\r\n,Sierra Vista Elementary,Placentia-Yorba Linda Unified,Orange,908,9,3,0,6,1,31,1,55,4,23,4,0,7,3,6,31,36,N/A,78,1,7,29,40,24,3.78\r\n,Veterans Elementary,Chula Vista Elementary,San Diego,908,9,6,1,5,28,46,1,11,1,15,17,0,23,6,9,21,27,N/A,82,2,13,20,43,23,3.72\r\n,Strawberry Elementary,Bennett Valley Union Elementar,Sonoma,908,9,5,2,6,1,16,1,66,2,21,20,0,11,1,13,N/A,27,N/A,56,4,7,32,27,31,3.72\r\n,Magnolia Elementary,Upland Unified,San Bernardino,908,9,3,0,5,1,36,1,49,6,23,18,0,7,1,14,28,25,N/A,99,0,7,35,41,17,3.67\r\n,Cedarwood Elementary,Clovis Unified,Fresno,908,9,2,1,11,1,26,0,57,3,33,2,1,5,2,7,24,34,N/A,98,1,14,27,35,24,3.67\r\n,Col. J. K. Tuffree Middle,Placentia-Yorba Linda Unified,Orange,908,9,2,0,8,1,34,0,52,1,29,9,0,6,13,10,N/A,N/A,30,41,2,9,32,35,22,3.66\r\n,,Cayucos Elementary,San Luis Obispo,908,B,1,0,3,0,13,0,84,0,28,0,0,3,4,12,24,23,27,3,0,0,40,60,0,3.6\r\n,Cayucos Elementary,Cayucos Elementary,San Luis Obispo,908,9,1,0,3,0,13,0,84,0,28,0,0,3,4,12,24,23,27,3,0,0,40,60,0,3.6\r\n,Los Angeles Center for Enriched Studies,Los Angeles Unified,Los Angeles,908,10,13,0,27,2,29,0,29,0,52,60,1,1,30,3,N/A,33,28,75,6,15,18,38,23,3.59\r\n,Vista Grande Elementary,San Diego Unified,San Diego,908,9,10,0,5,4,31,1,38,10,53,38,0,16,6,11,23,30,N/A,96,2,11,36,34,16,3.51\r\n,Elizabeth Pinkerton Middle,Elk Grove Unified,Sacramento,908,9,18,0,12,5,24,1,32,7,38,11,1,4,11,9,N/A,N/A,31,94,3,17,27,34,19,3.48\r\n,Challenger Middle,San Diego Unified,San Diego,908,9,5,0,24,24,21,1,17,7,44,41,0,6,27,8,N/A,33,31,95,3,16,27,39,14,3.45\r\n,Rio Vista Elementary,Apple Valley Unified,San Bernardino,908,9,7,0,4,2,28,1,55,2,40,24,0,4,2,12,25,28,N/A,94,2,16,41,26,14,3.33\r\n,One Hundred Fifty-Sixth Street Elementar,Los Angeles Unified,Los Angeles,908,9,17,0,16,3,53,2,9,0,60,18,0,11,15,9,13,12,N/A,92,9,18,32,26,16,3.21\r\nD,Futuro College Preparatory Elementary,Los Angeles Unified,Los Angeles,908,9,0,0,0,0,100,0,0,0,92,0,3,47,2,14,32,N/A,N/A,98,28,29,31,8,5,2.32\r\n,University High,Irvine Unified,Orange,908,10,2,0,49,2,7,0,37,2,10,31,0,9,16,5,N/A,N/A,33,0,0,0,0,0,0,\r\n,Lexington Elementary,Los Gatos Union Elementary,Santa Clara,907,9,1,1,9,0,12,0,73,4,6,8,0,0,2,10,24,28,N/A,97,0,1,8,44,47,4.37\r\n,Audubon Elementary,San Mateo-Foster City,San Mateo,907,9,1,0,42,5,9,2,32,9,7,3,0,21,6,4,25,29,N/A,100,0,3,11,44,42,4.25\r\n,Rio del Mar Elementary,Pajaro Valley Unified,Santa Cruz,907,9,1,0,3,1,4,0,89,0,10,26,0,5,2,11,28,30,N/A,94,1,4,13,45,37,4.15\r\n,Bernardo Heights Middle,Poway Unified,San Diego,907,9,4,1,17,6,11,0,56,4,13,17,0,6,11,9,N/A,30,34,91,1,4,16,43,37,4.11\r\n,George White Elementary,Capistrano Unified,Orange,907,9,0,0,4,1,22,0,66,6,15,5,0,11,4,8,24,29,N/A,96,1,6,13,43,37,4.08\r\n,Lincoln Middle,Santa Monica-Malibu Unified,Los Angeles,907,9,5,1,9,1,20,1,60,5,16,0,0,5,11,10,N/A,28,26,87,3,7,14,35,41,4.04\r\n,Orangevale Open K-8,San Juan Unified,Sacramento,907,9,2,2,3,0,9,0,84,0,18,12,0,1,0,4,29,34,32,89,0,7,16,43,34,4.03\r\n,Wood Ranch Elementary,Simi Valley Unified,Ventura,907,9,2,0,8,1,8,0,76,4,5,5,0,3,2,12,23,29,N/A,94,1,8,22,43,27,3.87\r\n,Joseph Arnold Elementary,Torrance Unified,Los Angeles,907,9,4,0,45,5,13,1,28,1,22,6,0,22,14,13,29,34,N/A,95,0,10,23,40,27,3.82\r\nD,Temecula Valley Charter,Temecula Valley Unified,Riverside,907,9,3,0,1,3,27,0,60,6,16,6,0,1,4,12,24,27,N/A,97,0,9,28,40,23,3.77\r\n,Sunrise Elementary,Elk Grove Unified,Sacramento,907,9,5,0,18,10,12,1,40,11,22,6,0,10,10,10,23,25,N/A,90,1,10,27,40,22,3.72\r\n,Amelia Earhart Middle,Riverside Unified,Riverside,907,9,10,0,8,2,29,1,49,0,27,16,0,2,8,8,N/A,N/A,30,99,2,8,36,26,27,3.68\r\n,Eastwood Elementary,Westminster Elementary,Orange,907,9,1,0,25,1,22,0,40,9,32,22,0,19,5,11,24,27,N/A,96,2,9,29,39,20,3.66\r\n,,Liberty Elementary,Sonoma,907,B,0,0,1,0,15,1,82,0,12,0,0,11,1,14,2,2,8,100,7,10,36,39,9,3.33\r\nY,Liberty Elementary,Liberty Elementary,Sonoma,907,9,0,0,1,0,15,1,82,0,12,0,0,11,1,14,5,15,N/A,100,7,10,36,39,9,3.33\r\nD,KIPP Heartwood Academy,Alum Rock Union Elementary,Santa Clara,907,9,2,0,15,2,79,1,1,0,85,0,0,27,49,6,N/A,34,31,91,39,26,19,12,4,2.16\r\n,Palo Alto High,Palo Alto Unified,Santa Clara,906,10,3,0,24,1,10,1,54,5,9,7,0,3,16,10,N/A,N/A,28,99,1,3,6,20,70,4.55\r\n,Coronado Village Elementary,Coronado Unified,San Diego,906,9,1,0,3,2,15,0,77,1,6,19,0,2,4,10,25,28,N/A,100,0,3,11,31,56,4.4\r\n,Corona del Mar High,Newport-Mesa Unified,Orange,906,10,1,0,9,0,5,0,83,1,7,14,0,2,3,7,N/A,N/A,28,97,1,2,9,40,48,4.32\r\n,Palos Verdes Peninsula High,Palos Verdes Peninsula Unified,Los Angeles,906,10,4,0,35,4,7,0,48,1,3,16,0,6,5,8,N/A,N/A,31,87,1,3,9,40,48,4.31\r\n,Laguna Beach High,Laguna Beach Unified,Orange,906,10,2,0,3,0,9,0,83,2,8,12,0,2,4,8,N/A,N/A,26,93,1,2,14,43,40,4.17\r\n,J. H. McGaugh Elementary,Los Alamitos Unified,Orange,906,9,2,0,7,2,15,1,66,6,9,12,0,1,1,16,21,32,N/A,99,0,5,20,37,38,4.08\r\n,Bancroft Elementary,Mt. Diablo Unified,Contra Costa,906,9,1,1,16,4,14,3,53,8,14,4,0,14,10,9,27,30,N/A,85,1,7,16,37,39,4.06\r\n,Warren E. Hyde Middle,Cupertino Union,Santa Clara,906,9,3,0,57,2,13,1,24,0,17,4,0,18,25,9,N/A,28,29,93,3,8,17,31,42,4\r\n,,Loomis Union Elementary,Placer,906,B,1,1,2,1,8,0,83,2,15,6,0,2,3,7,24,26,25,96,1,7,27,39,25,3.81\r\n,Redwood Middle,Conejo Valley Unified,Ventura,906,9,1,1,9,2,20,0,65,2,17,23,0,5,8,9,N/A,30,31,75,5,7,19,40,29,3.81\r\nD,Renaissance Arts Academy,Los Angeles Unified,Los Angeles,906,9,9,1,3,4,54,0,28,0,65,28,0,3,12,6,N/A,N/A,24,96,3,10,24,27,35,3.8\r\n,Junction Elementary,Roseville City Elementary,Placer,906,9,3,1,14,14,9,1,56,0,15,1,0,12,8,15,23,25,N/A,98,0,7,30,42,22,3.79\r\n,Madison Elementary,Redondo Beach Unified,Los Angeles,906,9,8,0,12,2,25,1,47,5,25,11,0,14,4,10,23,32,N/A,97,2,7,24,43,23,3.77\r\nY,Nevada City Charter,Nevada City Elementary,Nevada,906,9,0,0,2,0,2,0,84,0,2,0,0,0,0,8,16,N/A,N/A,100,0,8,31,39,22,3.75\r\n,Frank Otis Elementary,Alameda City Unified,Alameda,906,9,5,0,26,7,14,1,45,1,19,9,0,24,4,10,24,28,N/A,99,4,14,15,41,26,3.72\r\nD,Heritage K-8 Charter,Escondido Union,San Diego,906,9,5,1,5,4,29,0,54,2,28,0,0,0,2,6,23,28,30,98,4,9,27,33,27,3.71\r\n,Washington Elementary,Redondo Beach Unified,Los Angeles,906,9,8,1,13,3,36,1,37,1,42,8,0,15,6,14,24,31,N/A,98,3,14,26,39,17,3.52\r\n,James Dukes Elementary,Ramona City Unified,San Diego,906,9,1,2,2,1,16,0,74,2,13,0,0,2,2,16,21,28,N/A,99,1,11,40,33,15,3.51\r\n,Haynes Elementary,Los Angeles Unified,Los Angeles,906,9,4,1,13,2,21,1,57,0,27,19,0,5,7,17,12,13,N/A,73,5,12,27,37,17,3.49\r\n,Juan Cabrillo Elementary,Wiseburn Elementary,Los Angeles,906,9,9,0,4,1,58,1,18,8,39,0,0,25,1,16,20,N/A,N/A,95,5,14,34,26,22,3.47\r\n,Cypress High,Anaheim Union High,Orange,906,10,4,0,29,7,23,1,35,0,29,21,0,7,20,8,N/A,N/A,37,8,7,15,23,35,20,3.44\r\n,,Temple City Unified,Los Angeles,906,B,1,0,63,1,20,0,11,3,41,7,0,19,22,10,24,29,29,96,7,18,21,33,21,3.44\r\n,,Newhall,Los Angeles,906,B,2,0,9,3,41,0,39,5,33,8,0,27,4,10,24,29,N/A,98,12,13,18,33,23,3.42\r\n,Judson & Brown Elementary,Redlands Unified,San Bernardino,906,9,6,0,10,2,51,0,25,4,44,9,0,8,4,11,21,28,N/A,94,6,15,36,17,26,3.41\r\n,Chula Vista Hills Elementary,Chula Vista Elementary,San Diego,906,9,3,0,4,6,62,1,18,5,28,21,0,26,6,10,22,27,N/A,99,5,14,33,33,15,3.39\r\n,Sherman Elementary,San Francisco Unified,San Francisco,906,9,5,1,43,1,12,0,28,5,45,19,0,24,17,16,20,27,N/A,84,12,20,13,28,27,3.38\r\n,Cox Elementary,Clovis Unified,Fresno,906,9,4,2,6,2,36,0,47,3,51,1,0,6,6,6,25,33,N/A,95,3,18,36,28,15,3.34\r\nD,Magnolia Science Academy 7,Los Angeles Unified,Los Angeles,906,9,3,3,6,7,59,0,23,0,76,0,0,18,17,15,19,12,N/A,99,9,20,27,33,11,3.19\r\n,Balboa Elementary,Glendale Unified,Los Angeles,906,9,1,0,3,1,14,0,80,0,55,12,0,36,27,4,23,35,N/A,94,3,38,14,31,14,3.15\r\n,,Vista del Mar Union,Santa Barbara,906,B,0,0,3,0,38,0,54,5,28,0,0,15,8,8,12,2,N/A,96,8,28,25,27,11,3.04\r\n,Vista de Las Cruces,Vista del Mar Union,Santa Barbara,906,9,0,0,3,0,38,0,54,5,28,0,0,15,8,8,12,2,N/A,96,8,28,25,27,11,3.04\r\nD,KIPP San Francisco Bay Academy,San Francisco Unified,San Francisco,906,9,26,1,8,3,57,0,4,0,76,0,2,14,33,13,N/A,32,26,100,35,24,25,12,5,2.29\r\n,Middle College High,Santa Ana Unified,Orange,906,10,2,0,1,0,94,0,2,0,77,33,1,3,67,0,N/A,N/A,20,100,46,27,20,3,3,1.91\r\n,Redwood Heights Elementary,Oakland Unified,Alameda,905,9,17,0,10,1,14,0,44,11,16,42,0,5,3,10,26,23,N/A,51,0,3,12,29,57,4.39\r\n,Ralph Waldo Emerson Junior High,Davis Joint Unified,Yolo,905,9,4,1,13,2,17,0,63,0,21,17,0,8,9,9,N/A,N/A,27,96,3,6,7,21,63,4.35\r\n,Shoal Creek Elementary,Poway Unified,San Diego,905,9,3,0,22,5,10,1,56,3,8,7,0,14,2,17,25,34,N/A,89,0,3,8,44,44,4.29\r\n,Lydiksen Elementary,Pleasanton Unified,Alameda,905,9,2,1,31,4,9,1,52,0,6,8,0,8,7,19,22,27,N/A,94,0,6,12,37,45,4.2\r\n,Truman Benedict Elementary,Capistrano Unified,Orange,905,9,0,0,1,1,13,0,76,10,9,4,0,1,2,6,25,34,N/A,95,0,3,18,41,38,4.15\r\n,Anaheim Hills Elementary,Orange Unified,Orange,905,9,0,0,19,4,13,0,55,8,6,3,0,6,3,6,29,34,N/A,99,0,3,16,48,34,4.11\r\n,Cypress Elementary,Conejo Valley Unified,Ventura,905,9,2,0,11,1,11,0,74,1,9,7,0,4,7,8,20,24,N/A,96,0,6,19,39,37,4.06\r\n,Diamond Creek Elementary,Roseville City Elementary,Placer,905,9,3,1,10,3,8,0,75,0,12,2,0,9,3,17,23,30,N/A,98,0,3,23,41,33,4.03\r\n,Wildwood Elementary,Conejo Valley Unified,Ventura,905,9,1,0,11,1,14,0,68,4,13,12,0,6,6,8,21,34,N/A,88,1,5,16,46,32,4.03\r\n,,Huntington Beach City Elementa,Orange,905,B,1,0,9,1,18,0,64,6,17,20,0,5,5,11,30,30,30,96,2,7,23,38,30,3.87\r\n,Tony Tobin Elementary,Temecula Valley Unified,Riverside,905,9,3,1,5,3,21,0,55,9,11,0,0,7,3,13,22,31,N/A,97,1,7,26,39,27,3.83\r\nD,Arroyo Vista Charter,Chula Vista Elementary,San Diego,905,9,4,0,6,13,47,1,25,4,15,24,0,20,5,7,23,29,N/A,69,1,10,24,38,28,3.82\r\n,La Paz Intermediate,Saddleback Valley Unified,Orange,905,9,2,0,6,2,24,0,62,4,19,18,0,7,9,11,N/A,N/A,29,85,5,8,22,37,29,3.76\r\n,Serrano Elementary,Orange Unified,Orange,905,9,2,1,14,1,31,0,49,1,20,3,0,9,3,7,30,33,N/A,99,4,14,27,30,25,3.59\r\n,West Portal Elementary,San Francisco Unified,San Francisco,905,9,2,0,67,4,4,0,12,4,42,11,0,36,16,8,21,32,N/A,97,8,17,13,40,22,3.52\r\n,Rolling Hills Elementary,Fairfield-Suisun Unified,Solano,905,9,18,1,10,11,16,1,33,10,29,10,0,8,7,8,30,33,N/A,99,3,13,32,38,14,3.47\r\n,,Alexander Valley Union Element,Sonoma,905,B,1,0,2,0,23,1,73,0,27,2,1,19,1,15,19,19,N/A,76,4,19,30,19,28,3.46\r\n,Alexander Valley Elementary,Alexander Valley Union Element,Sonoma,905,9,1,0,2,0,23,1,73,0,27,2,1,19,1,15,19,19,N/A,76,4,19,30,19,28,3.46\r\n,French Valley Elementary,Temecula Valley Unified,Riverside,905,9,4,2,3,5,34,0,45,7,24,0,0,7,4,15,22,28,N/A,99,4,12,39,36,9,3.35\r\n,Escalona Elementary,Norwalk-La Mirada Unified,Los Angeles,905,9,2,1,4,4,58,1,29,1,37,10,0,3,4,12,26,30,N/A,100,2,30,32,23,12,3.13\r\n,Vista Magnet Middle School of Technology,Vista Unified,San Diego,905,9,2,0,3,1,52,1,37,3,44,40,3,6,28,9,N/A,31,32,85,18,14,26,27,15,3.06\r\n,Knob Hill Elementary,San Marcos Unified,San Diego,905,9,4,1,4,3,51,1,36,1,54,4,2,22,9,14,25,29,N/A,97,13,24,31,22,11,2.94\r\n,Sierra Elementary,Placerville Union Elementary,El Dorado,905,9,1,1,1,1,24,0,67,5,49,12,0,12,3,13,22,24,N/A,98,8,29,39,13,10,2.89\r\n,Corona Ranch Elementary,Corona-Norco Unified,Riverside,905,9,7,1,10,3,56,0,23,1,50,6,0,16,17,10,27,29,N/A,98,18,30,29,15,8,2.66\r\n,,Los Gatos-Saratoga Joint Union,Santa Clara,904,B,0,0,29,0,7,0,56,6,2,0,0,2,5,7,N/A,N/A,26,98,1,1,7,32,59,4.47\r\n,Monte Vista High,San Ramon Valley Unified,Contra Costa,904,10,2,0,14,2,7,0,70,6,1,6,0,1,3,6,N/A,N/A,31,99,0,2,8,43,47,4.35\r\nY,Harvest Ridge Cooperative Charter,Newcastle Elementary,Placer,904,9,0,1,0,0,4,0,94,1,1,12,0,1,0,5,8,1,N/A,100,0,1,14,49,35,4.18\r\n,Don Juan Avila Elementary,Capistrano Unified,Orange,904,9,1,1,14,3,16,0,58,8,11,6,0,7,7,6,26,31,N/A,93,0,2,18,40,39,4.16\r\n,Carl H. Sundahl Elementary,Folsom-Cordova Unified,Sacramento,904,9,2,0,4,0,6,0,83,4,12,7,0,1,2,10,31,29,N/A,96,0,5,18,39,37,4.06\r\n,Burlingame Intermediate,Burlingame Elementary,San Mateo,904,9,1,0,21,3,18,1,51,4,7,1,0,16,19,8,N/A,26,27,97,2,8,14,37,38,4.01\r\nD,Santa Rosa Charter,Santa Rosa City Schools,Sonoma,904,9,7,4,3,1,13,1,70,1,7,0,0,1,1,10,N/A,4,2,100,2,4,26,33,35,3.96\r\n,Valencia Valley Elementary,Newhall,Los Angeles,904,9,2,0,5,4,20,0,64,6,14,7,0,4,4,16,24,28,N/A,98,1,5,26,41,28,3.9\r\n,Yorba Linda Middle,Placentia-Yorba Linda Unified,Orange,904,9,2,0,14,2,21,0,58,2,14,11,0,2,6,10,N/A,29,32,61,2,6,24,37,31,3.89\r\n,Newport Heights Elementary,Newport-Mesa Unified,Orange,904,9,1,1,7,1,17,1,72,1,28,3,0,9,1,12,23,30,N/A,94,4,5,19,43,29,3.87\r\n,Eastlake Middle,Sweetwater Union High,San Diego,904,9,6,1,4,16,53,1,19,0,20,29,0,9,15,8,N/A,N/A,22,96,2,8,26,40,24,3.77\r\n,Lilienthal (Claire) Elementary,San Francisco Unified,San Francisco,904,9,10,1,33,3,9,0,30,6,21,25,0,11,12,15,21,29,30,75,1,20,12,36,32,3.77\r\n,Pershing Elementary,San Juan Unified,Sacramento,904,9,1,2,9,2,10,0,75,1,31,23,0,6,3,6,28,32,N/A,73,3,8,24,37,27,3.77\r\nY,Paul Revere Middle,Los Angeles Unified,Los Angeles,904,9,14,0,9,1,24,0,50,1,28,38,0,4,13,11,N/A,25,28,77,7,10,16,35,32,3.76\r\n,Downtown Elementary,Bakersfield City,Kern,904,9,7,0,0,0,47,0,42,2,24,23,0,1,1,8,20,28,28,41,1,13,32,36,18,3.57\r\n,Bagby Elementary,Cambrian,Santa Clara,904,9,5,2,14,3,20,1,55,1,19,5,0,13,3,10,23,28,N/A,98,6,12,22,40,20,3.56\r\nY,Gratton Charter,Gratton Elementary,Stanislaus,904,9,0,0,0,0,12,0,88,0,0,0,0,3,0,5,11,10,N/A,93,2,15,30,39,15,3.5\r\n,Rio Vista Elementary,Los Angeles Unified,Los Angeles,904,9,21,1,6,3,36,0,32,0,58,21,0,4,14,15,13,19,N/A,84,4,15,41,17,23,3.39\r\n,Cole Elementary,Clovis Unified,Fresno,904,9,3,1,8,1,35,0,48,4,52,1,0,6,2,7,22,32,N/A,99,2,22,34,28,14,3.3\r\n,Perry Elementary,San Diego Unified,San Diego,904,9,14,0,0,35,22,5,12,10,70,19,0,14,4,12,18,32,N/A,97,2,18,37,36,6,3.26\r\n,\"Krystal School of Science, Math & Techno\",Hesperia Unified,San Bernardino,904,9,4,1,1,0,34,0,59,1,53,10,0,11,3,6,31,33,N/A,97,6,19,44,19,12,3.13\r\n,University Preparatory,Victor Valley Union High,San Bernardino,904,10,7,1,7,3,59,1,22,0,61,21,0,1,24,1,N/A,N/A,31,79,11,23,37,19,11,2.96\r\n,White Oak Elementary,Las Virgenes Unified,Los Angeles,903,9,1,1,7,0,9,0,78,4,4,0,0,4,0,16,22,32,N/A,98,0,3,12,38,47,4.29\r\n,Cipriani Elementary,Belmont-Redwood Shores Element,San Mateo,903,9,1,0,12,1,9,0,70,6,4,5,0,5,8,15,21,28,N/A,99,0,2,16,35,48,4.28\r\n,Tierra Bonita Elementary,Poway Unified,San Diego,903,9,2,0,5,1,11,0,79,3,9,7,0,10,1,15,26,28,N/A,95,1,4,11,38,46,4.23\r\n,Sierra Elementary,Rocklin Unified,Placer,903,9,1,0,6,2,9,0,76,6,11,7,0,2,1,12,25,26,N/A,97,0,3,15,42,39,4.17\r\n,Twin Creeks Elementary,San Ramon Valley Unified,Contra Costa,903,9,4,1,22,6,10,1,48,8,3,2,0,7,8,8,25,26,N/A,93,0,3,16,45,36,4.14\r\n,Los Cerritos Middle,Conejo Valley Unified,Ventura,903,9,1,0,7,2,22,0,64,2,20,29,0,6,9,11,N/A,30,32,64,6,6,15,38,35,3.91\r\n,Tierra Linda Elementary,Pleasant Valley,Ventura,903,9,2,0,5,4,21,1,62,5,22,7,0,6,0,6,23,31,N/A,94,0,7,26,39,27,3.85\r\n,,Hope Elementary,Santa Barbara,903,B,2,0,5,0,32,0,60,0,27,11,0,25,4,12,21,26,N/A,99,6,8,21,30,35,3.79\r\n,Alta Sierra Intermediate,Clovis Unified,Fresno,903,9,3,1,11,2,26,0,55,2,34,7,0,3,7,8,N/A,N/A,31,98,3,12,25,31,29,3.72\r\n,Taylor (Bertha) Elementary,Oak Grove Elementary,Santa Clara,903,9,3,0,30,4,25,0,34,1,19,29,0,13,13,8,26,33,N/A,97,2,14,19,42,22,3.68\r\n,Meadow Heights Elementary,San Mateo-Foster City,San Mateo,903,9,1,0,15,5,28,2,45,4,24,3,0,20,6,11,23,31,N/A,96,8,12,14,36,30,3.66\r\n,Longden Elementary,Temple City Unified,Los Angeles,903,9,1,0,61,1,21,0,13,3,38,3,0,25,14,10,25,31,N/A,95,5,15,19,37,25,3.61\r\n,O. N. Hirsch Elementary,Fremont Unified,Alameda,903,9,6,0,49,7,14,1,20,2,34,6,1,28,24,11,26,28,N/A,99,5,18,18,38,22,3.53\r\n,Murdock Elementary,La Mesa-Spring Valley,San Diego,903,9,4,0,3,0,31,0,54,7,27,19,0,5,6,7,29,30,N/A,93,3,14,32,32,19,3.52\r\n,Hardy Elementary,San Diego Unified,San Diego,903,9,6,1,34,2,28,0,18,11,62,34,0,37,12,9,24,33,N/A,93,4,24,24,27,21,3.37\r\n,Willow Elementary,Charter Oak Unified,Los Angeles,903,9,1,1,4,2,47,1,41,3,43,7,0,8,6,11,22,35,N/A,94,4,24,27,29,16,3.29\r\n,Buena Vista Elementary,Carlsbad Unified,San Diego,903,9,1,1,4,3,39,0,46,4,40,18,1,22,6,13,28,29,N/A,97,9,20,36,22,13,3.08\r\n,John Muir Fundamental Elementary,Santa Ana Unified,Orange,903,9,1,0,3,1,90,0,4,1,67,15,0,31,19,13,24,32,N/A,99,21,24,37,12,6,2.57\r\n,University Park Elementary,Irvine Unified,Orange,903,9,6,0,40,1,15,0,33,4,27,5,0,36,7,14,27,26,N/A,0,0,0,0,0,0,\r\nD,Charter School of Morgan Hill,Morgan Hill Unified,Santa Clara,902,9,1,1,11,1,21,1,63,0,3,0,0,0,2,11,23,30,24,96,0,3,17,48,32,4.09\r\n,,Scotts Valley Unified,Santa Cruz,902,B,0,0,2,0,13,0,74,9,13,0,0,2,2,8,26,30,30,96,1,6,16,40,37,4.05\r\nD,Sierra Expeditionary Learning,Tahoe-Truckee Joint Unified,Placer,902,9,0,0,1,0,26,0,67,6,21,0,0,20,1,10,,,,99,1,16,7,32,43,4\r\n,Hope Elementary,Carlsbad Unified,San Diego,902,9,1,0,5,2,18,0,65,6,11,24,0,5,1,11,29,30,N/A,98,0,6,24,35,35,3.99\r\n,Capistrano Home,Capistrano Unified,Orange,902,9,0,1,1,3,9,0,81,4,9,9,0,0,1,7,24,29,1,74,1,4,21,42,31,3.97\r\n,Shell Beach Elementary,Lucia Mar Unified,San Luis Obispo,902,9,1,0,5,1,12,0,77,3,22,15,0,3,2,12,23,30,N/A,86,0,6,24,39,31,3.95\r\n,Aspen Elementary,Conejo Valley Unified,Ventura,902,9,1,0,3,1,18,1,73,3,19,12,0,5,5,17,19,30,N/A,58,2,5,27,32,34,3.91\r\n,Hewes Middle,Tustin Unified,Orange,902,9,1,0,5,0,27,0,65,1,18,23,0,6,7,7,N/A,32,33,97,4,8,18,39,31,3.85\r\n,Madrona Elementary,Conejo Valley Unified,Ventura,902,9,1,1,13,2,23,0,57,4,20,9,0,13,8,12,20,31,N/A,96,9,9,12,32,39,3.83\r\n,William E. Fanning Elementary,Brea-Olinda Unified,Orange,902,9,1,1,21,4,30,0,38,5,21,9,0,10,16,6,26,31,N/A,99,3,7,23,39,28,3.83\r\n,Coolidge Elementary,San Gabriel Unified,Los Angeles,902,9,1,0,38,3,36,0,19,2,33,5,0,31,1,10,29,25,N/A,96,3,12,19,35,30,3.76\r\n,David W. Long Elementary,Etiwanda Elementary,San Bernardino,902,9,13,0,5,5,39,0,31,6,23,8,0,6,2,13,28,30,N/A,89,3,7,34,35,21,3.63\r\nD,Camino Science and Natural Resources Cha,Camino Union Elementary,El Dorado,902,9,0,0,2,0,6,0,84,6,16,16,0,0,0,15,N/A,12,14,100,3,13,27,34,23,3.6\r\n,Yosemite National Park Valley Elementary,Mariposa County Unified,Mariposa,902,9,0,0,4,4,4,0,81,0,0,15,0,0,0,19,N/A,7,8,92,0,4,50,29,17,3.58\r\n,Joe Henderson Elementary,Benicia Unified,Solano,902,9,9,0,4,6,14,0,54,12,19,6,0,3,5,10,25,29,N/A,97,2,11,36,35,16,3.52\r\n,Ivey Ranch Elementary,Oceanside Unified,San Diego,902,9,6,1,6,5,28,3,47,1,32,11,0,6,6,9,26,29,N/A,95,4,13,32,31,20,3.51\r\n,Leffingwell Elementary,East Whittier City Elementary,Los Angeles,902,9,1,0,3,0,62,0,31,2,23,9,0,8,2,20,20,21,N/A,94,2,14,37,30,17,3.45\r\n,Frank Vessels Elementary,Cypress Elementary,Orange,902,9,1,1,17,6,32,1,40,2,25,5,0,12,6,12,23,29,N/A,98,4,13,34,33,15,3.44\r\n,,Millbrae Elementary,San Mateo,902,B,1,0,41,7,20,3,23,5,23,8,1,23,20,9,27,27,28,84,4,31,7,40,19,3.37\r\n,Northwood Elementary,Berryessa Union Elementary,Santa Clara,902,9,3,0,48,15,18,0,3,7,45,8,0,46,13,10,23,30,N/A,99,8,18,32,30,12,3.21\r\n,Plaza Elementary,Plaza Elementary,Glenn,902,9,0,0,6,0,29,0,65,0,31,0,9,7,17,14,17,15,N/A,100,7,12,45,26,10,3.2\r\n,Buri Buri Elementary,South San Francisco Unified,San Mateo,902,9,2,0,13,23,37,3,22,0,35,1,0,19,8,12,23,31,N/A,100,3,19,40,31,7,3.2\r\n,Lassen View Elementary,Lassen View Union Elementary,Tehama,902,9,1,2,0,0,17,0,78,1,52,0,0,8,0,5,21,30,N/A,92,8,17,39,27,8,3.1\r\n,Cottonwood Elementary,Hemet Unified,Riverside,902,9,1,1,3,2,35,0,56,2,73,6,0,14,3,13,30,21,20,100,18,31,36,9,6,2.55\r\n,Mariemont Elementary,San Juan Unified,Sacramento,901,9,4,1,4,1,10,1,77,2,17,11,0,3,1,10,26,29,N/A,76,0,3,14,36,47,4.28\r\n,Amador Valley High,Pleasanton Unified,Alameda,901,10,2,1,27,3,8,0,59,0,5,23,0,2,7,8,N/A,N/A,29,98,1,5,13,38,43,4.18\r\n,Maidu Elementary,Eureka Union,Placer,901,9,0,0,10,1,15,0,64,8,16,0,0,7,0,9,23,N/A,N/A,97,0,6,20,41,32,3.99\r\n,William Brooks Elementary,Buckeye Union Elementary,El Dorado,901,9,2,0,5,2,11,0,74,6,12,6,0,6,1,11,25,28,N/A,100,0,6,21,46,27,3.95\r\n,Brea Country Hills Elementary,Brea-Olinda Unified,Orange,901,9,2,0,29,3,27,0,35,4,18,12,0,11,16,9,30,29,N/A,97,2,4,24,38,32,3.94\r\n,Silver Strand Elementary,Coronado Unified,San Diego,901,9,1,0,3,2,25,0,53,15,12,15,0,3,5,14,24,25,N/A,98,0,1,28,48,23,3.92\r\n,,Newcastle Elementary,Placer,901,B,0,2,1,0,6,0,86,5,17,15,0,1,1,5,10,11,14,93,0,6,25,43,27,3.89\r\n,Vieja Valley Elementary,Hope Elementary,Santa Barbara,901,9,1,0,3,0,28,0,66,0,23,9,0,27,3,16,22,28,N/A,99,7,9,14,31,40,3.88\r\n,,Dublin Unified,Alameda,901,B,7,0,29,8,15,1,37,3,11,13,0,7,10,6,23,29,28,97,1,11,19,41,28,3.82\r\n,,Bennett Valley Union Elementar,Sonoma,901,B,3,1,5,1,16,1,68,4,19,12,0,9,0,11,21,27,N/A,73,3,8,29,28,32,3.79\r\n,Hedenkamp (Anne and William) Elementary,Chula Vista Elementary,San Diego,901,9,4,0,6,31,45,0,11,2,19,22,0,25,6,5,21,30,N/A,68,2,11,18,46,22,3.75\r\n,Marshall Pomeroy Elementary,Milpitas Unified,Santa Clara,901,9,1,0,57,16,14,0,6,6,23,7,0,39,15,7,26,33,N/A,99,3,13,18,39,27,3.74\r\nY,Connections Visual and Performing Arts A,Summerville Union High,Tuolumne,901,10,1,1,0,0,4,0,93,1,27,0,0,0,0,0,,,,96,1,10,33,28,28,3.73\r\n,Darby Avenue Elementary,Los Angeles Unified,Los Angeles,901,9,7,1,13,6,34,0,38,0,33,19,0,7,7,15,14,12,N/A,92,2,10,32,32,25,3.68\r\n,La Colina Junior High,Santa Barbara Unified,Santa Barbara,901,9,2,0,5,1,37,0,50,5,25,27,0,12,14,10,N/A,N/A,28,95,8,10,22,33,27,3.62\r\n,George B. Miller Elementary,Centralia Elementary,Orange,901,9,3,0,34,11,31,1,18,4,45,9,0,25,17,8,25,30,N/A,100,3,12,25,44,17,3.61\r\n,Fletcher Hills Elementary,La Mesa-Spring Valley,San Diego,901,9,4,0,1,1,25,1,62,7,20,17,0,3,2,12,31,30,N/A,98,3,11,34,32,19,3.54\r\n,Victoria Groves Elementary,Alta Loma Elementary,San Bernardino,901,9,8,0,8,2,42,1,38,1,32,16,0,4,3,14,24,29,N/A,96,2,10,41,29,19,3.54\r\nD,Literacy First Charter,San Diego County Office of Edu,San Diego,901,9,4,1,21,2,18,0,52,1,40,0,0,22,8,8,21,28,N/A,92,3,13,28,38,18,3.54\r\n,Washington Elementary,San Gabriel Unified,Los Angeles,901,9,1,0,38,3,47,0,6,1,47,8,0,40,2,5,30,33,N/A,95,4,18,23,34,21,3.5\r\n,Pleasant Grove Middle,Rescue Union Elementary,El Dorado,901,9,1,1,1,1,15,0,74,6,20,12,0,3,1,10,N/A,28,24,94,4,21,20,39,16,3.44\r\n,Kester Avenue Elementary,Los Angeles Unified,Los Angeles,901,9,10,1,7,5,45,1,31,0,52,19,0,15,12,7,18,18,N/A,95,6,15,28,33,18,3.4\r\n,Ybarra Academy for the Arts and Technolo,Rowland Unified,Los Angeles,901,9,2,0,36,10,42,0,7,3,38,15,0,14,18,5,15,20,30,99,4,19,32,32,14,3.32\r\n,Hamilton Elementary,Pasadena Unified,Los Angeles,901,9,14,0,5,4,51,0,19,7,52,19,0,11,11,11,25,27,N/A,99,11,20,19,25,24,3.31\r\n,Ocean Beach Elementary,San Diego Unified,San Diego,901,9,5,1,1,0,39,0,49,5,61,32,0,18,5,5,23,33,N/A,95,6,19,35,21,19,3.29\r\n,Apperson Street Elementary,Los Angeles Unified,Los Angeles,901,9,3,1,3,0,40,0,53,0,52,7,0,9,6,10,13,10,N/A,94,9,15,39,24,13,3.18\r\n,Beethoven Street Elementary,Los Angeles Unified,Los Angeles,901,9,5,0,4,1,59,0,31,0,59,13,0,23,10,12,14,12,N/A,100,25,23,25,19,8,2.63\r\n,Jim Thorpe Fundamental,Santa Ana Unified,Orange,901,9,1,0,9,1,85,0,3,1,74,11,1,42,20,8,27,34,N/A,98,18,30,37,10,5,2.54\r\n,Redwood High,Tamalpais Union High,Marin,900,10,2,0,5,0,9,0,76,7,7,37,0,2,2,6,N/A,N/A,24,97,1,3,7,34,56,4.42\r\n,Laurel Elementary,Menlo Park City Elementary,San Mateo,900,9,2,0,7,0,15,0,62,13,8,0,0,13,0,3,21,N/A,N/A,99,3,4,7,26,59,4.32\r\n,El Rodeo Elementary,Beverly Hills Unified,Los Angeles,900,9,4,0,8,1,6,0,81,0,5,11,0,4,8,12,18,26,25,98,1,3,12,39,45,4.23\r\n,Cupertino High,Fremont Union High,Santa Clara,900,10,1,0,59,2,12,0,23,2,10,7,0,12,21,10,N/A,N/A,29,100,3,8,13,28,48,4.11\r\n,Gold Ridge Elementary,Folsom-Cordova Unified,Sacramento,900,9,2,0,22,5,11,0,58,1,9,5,0,8,10,15,25,30,N/A,86,0,4,23,40,34,4.04\r\n,Scripps Ranch High,San Diego Unified,San Diego,900,10,5,0,21,6,17,0,45,5,20,46,0,3,17,5,N/A,N/A,33,94,4,8,14,35,38,3.95\r\nY,Newcastle Charter,Newcastle Elementary,Placer,900,9,1,2,0,0,5,1,84,7,16,17,0,0,0,8,10,12,14,91,0,6,25,41,28,3.9\r\nY,Twin Hills Charter Middle,Twin Hills Union Elementary,Sonoma,900,9,1,0,2,0,16,0,78,0,18,2,0,6,1,13,N/A,21,27,90,1,9,24,33,32,3.87\r\n,Theodore Judah Elementary,Folsom-Cordova Unified,Sacramento,900,9,2,1,22,2,15,1,55,1,30,17,0,5,9,8,30,29,N/A,82,4,12,22,22,40,3.82\r\n,Ocean View Elementary,Lucia Mar Unified,San Luis Obispo,900,9,0,2,4,0,13,0,77,4,23,12,0,3,1,12,26,29,N/A,95,2,11,22,37,29,3.81\r\n,Carleton P. Lightfoot Elementary,Etiwanda Elementary,San Bernardino,900,9,8,0,12,5,34,0,36,6,20,11,0,9,2,15,27,29,N/A,97,1,9,30,34,26,3.77\r\n,Serrania Avenue Elementary,Los Angeles Unified,Los Angeles,900,9,14,1,10,3,16,0,57,0,28,24,0,7,7,9,14,14,N/A,89,1,10,24,42,23,3.75\r\n,Oak Ridge Elementary,Chino Valley Unified,San Bernardino,900,9,4,0,16,5,34,0,39,2,15,10,0,6,5,14,30,32,N/A,93,1,13,25,37,24,3.71\r\n,Vail Ranch Middle,Temecula Valley Unified,Riverside,900,9,4,1,6,4,24,1,52,8,13,16,0,3,4,11,N/A,31,30,98,3,8,29,39,21,3.67\r\nD,John Adams Academy,Loomis Union Elementary,Placer,900,9,0,0,3,2,9,0,83,2,0,0,0,0,1,5,25,29,22,96,0,13,29,39,18,3.62\r\n,Rancho del Rey Middle,Sweetwater Union High,San Diego,900,9,6,1,5,21,55,1,12,0,23,30,0,11,18,9,N/A,N/A,30,95,4,10,26,40,20,3.62\r\n,McCabe Elementary,McCabe Union Elementary,Imperial,900,9,0,0,3,0,79,0,17,0,29,0,0,5,19,6,20,30,N/A,100,1,16,30,28,25,3.58\r\n,Delevan Drive Elementary,Los Angeles Unified,Los Angeles,900,9,3,0,4,31,54,0,9,0,62,22,0,8,15,7,14,11,N/A,90,5,11,26,39,18,3.54\r\n,El Oro Way Elementary,Los Angeles Unified,Los Angeles,900,9,5,0,6,4,35,0,49,0,34,21,0,10,6,13,15,12,N/A,89,5,14,24,37,19,3.51\r\n,Deer Canyon Elementary,Alta Loma Elementary,San Bernardino,900,9,8,0,4,1,38,1,47,0,35,10,0,3,4,11,22,32,N/A,94,2,11,47,21,19,3.43\r\n,Placerita Junior High,William S. Hart Union High,Los Angeles,900,9,1,0,2,1,45,0,46,4,30,16,0,18,11,8,N/A,N/A,30,93,12,16,25,30,17,3.25\r\n,Quimby Oak Middle,Evergreen Elementary,Santa Clara,900,9,3,0,53,10,27,1,5,1,27,8,1,9,34,7,N/A,N/A,29,99,8,24,25,27,16,3.19\r\n,,Lassen View Union Elementary,Tehama,900,B,1,2,0,0,17,0,78,1,52,0,0,8,0,5,21,30,N/A,92,9,18,39,26,8,3.07\r\nD,KIPP Bridge Charter,Oakland Unified,Alameda,900,9,67,0,1,0,26,2,2,0,74,0,0,11,15,7,N/A,24,34,79,16,18,38,20,9,2.89\r\n,Westside Elementary,Imperial Unified,Imperial,900,9,0,4,0,0,46,0,50,0,71,4,0,25,0,4,N/A,22,N/A,96,4,44,22,22,7,2.85\r\n,Idyllwild,Hemet Unified,Riverside,900,9,0,1,1,0,26,1,65,5,60,5,0,7,0,13,27,15,18,100,15,22,37,17,8,2.8\r\n,Discovery Bay Elementary,Byron Union Elementary,Contra Costa,900,9,4,3,3,2,19,1,69,1,34,5,2,12,3,9,25,31,N/A,96,14,36,25,18,7,2.67\r\nD,KIPP San Jose Collegiate,East Side Union High,Santa Clara,900,10,1,0,14,4,78,0,1,1,72,0,0,12,59,5,N/A,N/A,24,98,31,25,25,16,3,2.36\r\n,Brookhaven Elementary,Placentia-Yorba Linda Unified,Orange,899,9,1,0,12,1,23,0,60,2,10,7,0,7,2,15,29,32,N/A,64,1,4,16,34,45,4.19\r\n,Westwood Elementary,Poway Unified,San Diego,899,9,4,0,16,4,15,0,56,5,13,8,0,16,4,9,25,35,N/A,97,0,5,18,41,35,4.06\r\n,Black Mountain Middle,Poway Unified,San Diego,899,9,4,0,18,10,12,1,51,4,19,17,0,7,13,11,N/A,33,34,94,2,7,14,39,38,4.03\r\n,Fallsvale Elementary,Bear Valley Unified,San Bernardino,899,9,0,0,0,0,6,0,91,3,15,0,0,0,0,15,26,N/A,N/A,91,0,10,23,30,37,3.93\r\n,Liberty Elementary,Chula Vista Elementary,San Diego,899,9,4,0,2,19,47,1,24,1,13,30,0,17,3,10,20,26,N/A,81,2,9,17,42,30,3.9\r\n,Valley View Elementary,Pleasanton Unified,Alameda,899,9,3,0,9,1,28,0,59,0,19,4,0,16,8,11,24,31,N/A,98,7,10,11,34,39,3.87\r\n,La Crescenta Elementary,Glendale Unified,Los Angeles,899,9,1,0,35,5,16,0,41,1,21,12,0,27,15,11,24,31,N/A,79,1,20,15,27,37,3.78\r\n,Topeka Drive Elementary,Los Angeles Unified,Los Angeles,899,9,6,0,32,7,27,0,28,0,31,30,0,13,10,11,15,18,N/A,89,1,10,20,47,21,3.77\r\n,Vichy Elementary,Napa Valley Unified,Napa,899,9,0,0,2,2,16,0,71,8,13,18,0,3,4,8,27,33,N/A,95,2,9,29,37,23,3.71\r\n,Los Primeros School of Sciences & Arts,Pleasant Valley,Ventura,899,9,3,1,8,6,24,0,57,1,18,12,0,3,2,6,23,30,28,94,2,7,31,39,21,3.71\r\n,Bernardo Yorba Middle,Placentia-Yorba Linda Unified,Orange,899,9,2,0,11,1,25,0,59,1,18,12,0,3,6,9,N/A,N/A,32,39,2,8,30,36,23,3.7\r\n,Plum Canyon Elementary,Saugus Union,Los Angeles,899,9,4,0,7,7,26,0,55,0,13,6,0,6,1,12,25,28,N/A,100,1,11,27,41,20,3.69\r\n,Monte Vista Elementary,Hope Elementary,Santa Barbara,899,9,1,1,5,0,38,0,55,0,30,12,0,24,5,7,22,25,N/A,99,6,11,24,27,31,3.66\r\n,Sutter Elementary,Santa Clara Unified,Santa Clara,899,9,2,1,20,2,20,0,50,5,18,11,0,23,8,20,27,28,N/A,98,3,16,24,34,24,3.6\r\n,Bonsall Elementary,Bonsall Union Elementary,San Diego,899,9,3,4,1,1,29,0,59,2,30,8,4,15,2,13,23,25,N/A,79,4,10,30,34,21,3.59\r\n,,McCabe Union Elementary,Imperial,899,B,0,0,3,0,79,0,17,0,30,0,0,5,19,7,20,30,N/A,100,1,16,30,28,24,3.58\r\n,Rocklin Elementary,Rocklin Unified,Placer,899,9,1,0,11,3,15,0,64,6,31,40,0,8,3,10,24,31,N/A,96,4,9,35,30,22,3.57\r\n,Bethany Elementary,Lammersville Joint Unified,San Joaquin,899,9,8,1,27,24,13,1,25,1,22,16,0,11,1,11,21,27,32,94,1,16,28,34,20,3.55\r\n,Garden Park Elementary,Garden Grove Unified,Orange,899,9,2,2,13,1,22,2,56,1,19,3,0,7,3,8,25,30,N/A,76,1,10,40,35,15,3.53\r\n,Pioneer Junior High,Upland Unified,San Bernardino,899,9,6,1,7,2,37,0,46,2,27,25,0,4,3,11,N/A,N/A,30,99,2,10,38,37,14,3.52\r\nY,Farnham Charter,Cambrian,Santa Clara,899,9,5,1,13,4,27,1,48,1,21,2,0,17,4,15,22,26,N/A,97,5,15,25,35,20,3.51\r\n,Jones Elementary,San Diego Unified,San Diego,899,9,12,0,13,4,22,1,33,14,53,35,0,14,9,8,23,32,N/A,90,3,11,38,30,19,3.51\r\n,Ericson Elementary,San Diego Unified,San Diego,899,9,4,0,27,20,17,1,19,10,42,27,0,33,11,9,23,31,N/A,96,3,15,27,37,17,3.5\r\n,Pacific Beach Elementary,San Diego Unified,San Diego,899,9,1,0,1,0,39,2,50,6,43,44,1,35,2,8,23,35,N/A,93,13,16,15,25,32,3.47\r\n,Pauba Valley Elementary,Temecula Valley Unified,Riverside,899,9,4,2,3,5,32,0,42,12,19,0,0,4,7,11,20,27,N/A,100,2,11,39,35,13,3.44\r\n,Clara Barton Elementary,Corona-Norco Unified,Riverside,899,9,10,0,12,6,44,0,27,0,27,6,0,12,8,8,24,32,N/A,92,7,12,34,32,16,3.39\r\n,Susan La Vorgna Elementary,Temecula Valley Unified,Riverside,899,9,5,0,3,8,28,1,46,8,25,0,0,7,3,12,21,27,N/A,99,2,14,41,34,9,3.35\r\n,Key (Francis Scott) Elementary,San Francisco Unified,San Francisco,899,9,2,0,67,4,5,0,15,4,51,16,0,31,16,13,20,30,N/A,93,8,23,19,35,15,3.26\r\n,R. J. Neutra,Central Union Elementary,Kings,899,9,10,2,5,9,18,1,55,0,60,0,0,5,1,10,20,26,N/A,99,0,15,53,24,8,3.24\r\n,,Plaza Elementary,Glenn,899,B,0,0,6,0,29,0,65,0,31,0,9,7,17,15,17,15,N/A,100,7,12,46,26,10,3.2\r\n,Adams (J. Douglas) Middle,Brentwood Union Elementary,Contra Costa,899,9,12,0,6,8,22,1,49,1,20,6,0,6,10,13,N/A,32,30,94,4,18,39,32,7,3.18\r\nD,Twin Rivers Charter,Yuba City Unified,Sutter,899,9,2,1,2,0,36,0,58,0,67,0,0,12,0,6,22,26,N/A,89,8,19,37,25,11,3.11\r\n,Presidio Middle,San Francisco Unified,San Francisco,899,9,5,1,55,3,9,1,18,1,52,53,0,9,39,9,N/A,32,28,70,10,45,10,21,13,2.82\r\n,,Graves Elementary,Monterey,899,B,0,0,0,0,81,0,6,9,56,0,0,22,13,3,2,N/A,N/A,66,24,19,14,38,5,2.81\r\n,Leland High,San Jose Unified,Santa Clara,898,10,1,0,42,1,11,0,43,1,8,42,0,3,15,6,N/A,N/A,28,95,2,5,10,37,46,4.22\r\nD,Magnolia Science Academy Santa Clara,Santa Clara County Office of E,Santa Clara,898,9,4,0,39,3,18,0,28,7,20,0,0,4,19,5,N/A,22,21,100,4,4,12,36,44,4.14\r\n,Sunset Hills Elementary,Poway Unified,San Diego,898,9,2,0,13,9,10,1,59,5,15,5,0,12,4,25,23,26,N/A,96,1,10,9,43,37,4.06\r\n,Yorba Linda High,Placentia-Yorba Linda Unified,Orange,898,10,1,0,14,2,15,0,68,0,9,16,0,1,5,8,N/A,N/A,31,84,0,6,20,43,31,3.99\r\n,Excelsior Elementary,Eureka Union,Placer,898,9,1,1,9,1,11,0,69,8,13,4,0,3,3,11,N/A,28,N/A,98,1,6,19,42,31,3.97\r\n,Village View Elementary,Ocean View,Orange,898,9,1,1,8,2,19,0,63,7,11,3,0,6,3,13,24,28,N/A,95,1,5,25,40,29,3.91\r\n,Cabrillo Elementary,Pacifica,San Mateo,898,9,1,0,3,2,20,0,60,14,10,8,0,2,0,11,21,32,N/A,100,1,5,25,43,27,3.9\r\n,Solana Vista Elementary,Solana Beach Elementary,San Diego,898,9,1,0,3,0,26,0,67,0,21,6,0,21,1,20,20,N/A,N/A,97,5,13,10,31,41,3.9\r\n,Canfield Avenue Elementary,Los Angeles Unified,Los Angeles,898,9,17,0,4,0,17,1,62,0,25,21,0,14,3,18,15,11,N/A,89,2,9,22,32,35,3.9\r\n,Cram Elementary,Redlands Unified,San Bernardino,898,9,4,0,9,2,38,0,40,6,28,10,0,4,1,12,22,31,N/A,97,0,9,31,23,37,3.87\r\n,Templeton Middle,Templeton Unified,San Luis Obispo,898,9,1,1,2,0,19,0,73,5,16,12,0,3,2,6,N/A,27,28,96,3,9,30,30,28,3.71\r\n,Park View Elementary,Ripon Unified,San Joaquin,898,9,1,1,4,1,21,1,69,2,22,1,0,10,3,5,30,28,N/A,96,2,10,26,39,23,3.7\r\n,Proctor Terrace Elementary,Santa Rosa City Schools,Sonoma,898,9,1,0,3,0,21,0,67,9,25,16,2,13,3,12,20,26,N/A,99,9,9,22,29,33,3.68\r\n,Sutters Mill Primary,Gold Trail Union Elementary,El Dorado,898,9,1,0,0,1,6,0,90,3,29,0,0,0,0,14,26,N/A,N/A,98,1,8,34,40,17,3.63\r\n,Eagle Canyon Elementary,Chino Valley Unified,San Bernardino,898,9,6,0,18,5,44,0,22,4,29,6,0,8,7,9,28,33,N/A,92,1,13,28,40,18,3.6\r\n,Dorothy McElhinney Middle,Murrieta Valley Unified,Riverside,898,9,7,0,5,8,26,0,46,7,26,9,0,1,5,12,N/A,30,29,96,2,11,33,39,14,3.54\r\nY,Natomas Charter,Natomas Unified,Sacramento,898,10,9,0,11,7,21,1,37,12,27,10,0,2,10,4,26,29,28,91,2,13,30,36,18,3.54\r\n,Twin Oaks Elementary,San Marcos Unified,San Diego,898,9,2,0,3,3,49,1,43,0,54,2,4,24,11,23,24,31,N/A,97,16,18,23,29,14,3.08\r\n,Foothill Middle,Mt. Diablo Unified,Contra Costa,897,9,2,0,18,4,9,1,64,1,8,21,0,2,9,6,N/A,31,30,86,0,3,10,41,46,4.29\r\n,Twin Peaks Middle,Poway Unified,San Diego,897,9,2,1,5,3,16,0,71,3,15,13,0,5,6,9,N/A,31,34,92,3,6,19,39,33,3.91\r\n,Arcadia High,Arcadia Unified,Los Angeles,897,10,2,0,66,3,13,0,16,0,14,9,0,6,20,7,N/A,N/A,30,96,5,9,13,40,34,3.89\r\n,Ruhkala Elementary,Rocklin Unified,Placer,897,9,0,0,6,4,12,0,72,4,13,11,0,7,2,6,27,29,N/A,95,0,5,27,42,26,3.88\r\n,Berkeley Arts Magnet at Whittier,Berkeley Unified,Alameda,897,9,16,0,12,0,18,0,34,15,40,10,0,18,5,12,21,24,N/A,91,3,12,21,26,38,3.85\r\n,Brookvale Elementary,Fremont Unified,Alameda,897,9,3,0,43,8,12,1,25,8,21,3,0,23,14,18,24,27,N/A,99,2,14,20,32,32,3.78\r\n,Antelope Hills Elementary,Murrieta Valley Unified,Riverside,897,9,6,1,7,7,28,1,49,3,24,14,0,3,4,13,24,30,N/A,99,2,5,32,41,21,3.74\r\n,Tierrasanta Elementary,San Diego Unified,San Diego,897,9,4,0,9,3,30,1,44,10,34,33,0,16,5,10,22,33,N/A,92,3,10,25,36,27,3.73\r\n,Vencil Brown Elementary,Roseville City Elementary,Placer,897,9,3,0,8,4,12,1,70,0,22,1,0,7,5,16,23,31,N/A,99,0,9,32,40,19,3.7\r\n,Mountain View Elementary,Clovis Unified,Fresno,897,9,5,0,12,3,32,0,44,4,45,1,0,6,4,7,24,29,N/A,98,1,14,24,35,25,3.7\r\nY,Fammatre Elementary,Cambrian,Santa Clara,897,9,2,1,21,4,19,2,49,1,16,9,0,14,6,8,24,27,N/A,98,6,12,17,42,23,3.66\r\n,Longfellow Elementary,Long Beach Unified,Los Angeles,897,9,17,0,15,6,31,1,24,1,38,8,0,8,8,6,29,34,N/A,92,5,11,24,35,25,3.63\r\n,,Gratton Elementary,Stanislaus,897,B,0,0,3,0,13,0,84,0,4,0,0,4,0,4,9,8,N/A,95,1,14,26,42,16,3.59\r\n,John Muir Elementary,San Bruno Park Elementary,San Mateo,897,9,1,0,12,11,27,1,44,3,21,7,0,28,9,10,29,29,N/A,97,1,15,26,42,16,3.56\r\n,Kettering Elementary,Long Beach Unified,Los Angeles,897,9,12,0,12,3,22,0,46,0,33,0,0,11,3,20,24,28,N/A,87,0,18,28,32,22,3.56\r\n,Bernardo Elementary,Escondido Union,San Diego,897,9,4,1,6,3,19,0,65,0,24,22,0,11,3,14,22,25,N/A,79,7,11,25,34,23,3.53\r\n,Mesa View Middle,Ocean View,Orange,897,9,0,0,11,1,31,0,51,6,26,35,0,10,14,10,N/A,27,27,97,10,12,22,31,25,3.48\r\n,Ophir Elementary,Loomis Union Elementary,Placer,897,9,1,1,0,1,21,0,76,1,25,3,0,1,1,5,21,22,22,96,2,15,37,29,18,3.45\r\n,Lincoln Alternative Elementary,Corona-Norco Unified,Riverside,897,9,3,1,13,3,41,0,37,1,31,8,0,13,14,5,27,31,N/A,93,8,13,32,25,22,3.39\r\n,,Southside Elementary,San Benito,897,B,0,0,2,0,39,0,59,1,24,0,4,13,5,6,,,,97,11,17,14,40,18,3.37\r\n,Southside Elementary,Southside Elementary,San Benito,897,9,0,0,2,0,39,0,59,1,24,0,4,13,5,6,,,,97,11,17,14,40,18,3.37\r\n,Forest Grove Elementary,Pacific Grove Unified,Monterey,897,9,2,0,9,1,26,0,53,7,26,12,0,13,8,11,23,20,N/A,98,7,16,30,31,16,3.33\r\n,Lincoln Elementary,Torrance Unified,Los Angeles,897,9,4,1,36,3,36,1,12,1,44,1,0,24,13,11,29,32,N/A,94,4,18,34,30,14,3.31\r\n,Millville Elementary,Millville Elementary,Shasta,897,9,2,3,0,0,5,1,86,0,47,5,0,0,0,4,11,18,19,43,4,10,45,30,10,3.31\r\n,K. I. Jones Elementary,Fairfield-Suisun Unified,Solano,897,9,15,1,6,9,24,1,34,11,37,35,0,7,9,8,31,30,N/A,97,4,22,34,30,10,3.21\r\n,,Pine Ridge Elementary,Fresno,897,B,0,0,0,0,12,0,88,0,30,0,0,0,0,0,4,5,N/A,41,0,19,44,37,0,3.19\r\n,Pine Ridge Elementary,Pine Ridge Elementary,Fresno,897,9,0,0,0,0,12,0,88,0,30,0,0,0,0,0,4,5,N/A,41,0,19,44,37,0,3.19\r\n,Norwood Creek Elementary,Evergreen Elementary,Santa Clara,897,9,1,0,59,10,22,1,6,2,26,3,0,23,26,8,23,29,N/A,100,4,26,29,28,12,3.17\r\n,Palos Verdes High,Palos Verdes Peninsula Unified,Los Angeles,896,10,1,0,12,1,8,1,75,1,1,15,0,1,2,9,N/A,N/A,29,89,0,2,11,40,47,4.31\r\n,Fred T. Korematsu Elementary School at M,Davis Joint Unified,Yolo,896,9,3,0,25,2,17,0,52,0,24,28,0,15,4,12,8,28,N/A,97,3,6,12,21,59,4.27\r\n,Frances Ellen Watkins Harper Junior High,Davis Joint Unified,Yolo,896,9,2,1,18,2,20,0,56,0,22,34,1,7,9,7,N/A,N/A,29,93,3,6,11,26,55,4.24\r\n,Tesoro High,Capistrano Unified,Orange,896,10,1,0,7,2,12,0,75,3,7,22,0,1,5,7,N/A,N/A,29,47,1,2,13,45,39,4.2\r\n,South Pasadena Senior High,South Pasadena Unified,Los Angeles,896,10,3,0,38,2,23,0,31,2,18,17,0,5,9,7,N/A,N/A,29,98,1,6,16,36,41,4.09\r\n,Alisal Elementary,Pleasanton Unified,Alameda,896,9,2,1,24,5,12,1,55,0,13,5,0,7,7,19,22,29,N/A,98,2,9,13,40,37,4.01\r\n,Twelve Bridges Middle,Western Placer Unified,Placer,896,9,2,2,4,4,19,0,65,4,21,6,0,4,4,10,N/A,27,24,98,1,8,27,25,39,3.93\r\n,,Buckeye Union Elementary,El Dorado,896,B,1,0,7,1,13,0,71,6,15,10,0,3,2,12,23,30,27,99,1,6,24,39,30,3.9\r\nD,University Preparatory Academy Charter,Santa Clara County Office of E,Santa Clara,896,10,6,0,28,2,37,2,24,0,0,0,0,3,6,2,N/A,N/A,27,100,4,8,26,30,31,3.76\r\n,Sellers Elementary,Glendora Unified,Los Angeles,896,9,1,0,4,0,36,0,53,5,13,8,0,7,1,13,25,29,N/A,100,1,10,29,35,26,3.73\r\n,Castle Heights Elementary,Los Angeles Unified,Los Angeles,896,9,19,0,6,1,33,0,40,0,36,17,0,14,6,13,15,10,N/A,64,4,11,29,29,28,3.66\r\n,Sunny Hills High,Fullerton Joint Union High,Orange,896,10,2,0,47,6,27,0,18,1,21,46,0,9,30,5,N/A,N/A,33,91,5,13,20,39,22,3.6\r\n,Midland Elementary,Poway Unified,San Diego,896,9,4,0,7,5,30,0,50,4,31,3,0,23,2,9,27,33,N/A,83,7,10,24,36,23,3.58\r\n,H. Clarke Powers Elementary,Loomis Union Elementary,Placer,896,9,0,4,1,1,10,0,77,5,25,5,0,2,3,6,22,25,7,95,1,10,36,38,16,3.57\r\n,Green Hills Elementary,Millbrae Elementary,San Mateo,896,9,0,0,37,5,16,5,31,6,10,6,0,30,15,10,26,29,N/A,95,0,36,6,39,19,3.4\r\n,Peach Hill Academy,Moorpark Unified,Ventura,896,9,1,0,3,1,34,0,59,4,29,0,0,22,1,13,24,30,N/A,98,12,14,22,31,21,3.36\r\n,Alameda Science and Technology Institute,Alameda City Unified,Alameda,896,10,11,0,41,5,20,1,19,4,36,11,0,6,29,2,N/A,N/A,26,93,10,16,29,27,19,3.28\r\n,Rio Seco Elementary,Santee Elementary,San Diego,896,9,1,0,2,1,27,1,56,9,30,16,0,4,4,11,23,30,25,99,2,23,34,26,15,3.27\r\n,Trajan Elementary,San Juan Unified,Sacramento,896,9,2,1,1,1,13,0,79,1,46,7,0,4,3,17,28,28,N/A,74,0,23,37,32,9,3.25\r\n,Lake Hills Elementary,Alvord Unified,Riverside,896,9,5,0,8,4,46,0,34,2,45,10,0,22,1,12,31,31,N/A,96,8,20,31,26,14,3.17\r\n,George C. Payne Elementary,Moreland Elementary,Santa Clara,896,9,4,0,17,4,41,0,28,7,38,2,0,29,13,8,21,29,N/A,97,14,19,21,29,17,3.16\r\n,Santa Teresa Elementary,Oak Grove Elementary,Santa Clara,896,9,4,1,26,5,39,0,24,1,43,27,0,24,14,10,25,33,N/A,95,9,21,27,31,11,3.15\r\n,San Jacinto Leadership Academy - Magnet,San Jacinto Unified,Riverside,896,9,2,0,2,4,57,0,33,2,58,18,0,5,19,2,N/A,33,32,97,7,25,40,13,16,3.07\r\n,Sycamore Rocks Elementary,Apple Valley Unified,San Bernardino,896,9,4,1,0,1,39,0,55,0,69,20,0,10,2,10,24,30,N/A,96,11,27,42,15,5,2.75\r\n,Dr. J. Michael McGrath Elementary,Newhall,Los Angeles,896,9,6,0,2,2,82,0,7,0,84,2,0,60,2,9,26,30,N/A,91,33,31,25,8,4,2.19\r\nD,Muir Charter,Nevada County Office of Educat,Nevada,896,10,17,0,0,0,75,0,3,6,0,0,0,33,3,6,N/A,N/A,10,58,57,5,14,14,10,2.14\r\n,,Coronado Unified,San Diego,895,B,2,0,3,2,17,0,73,2,5,17,0,2,3,11,25,29,28,98,0,3,14,34,49,4.3\r\n,Buena Vista Elementary,Walnut Creek Elementary,Contra Costa,895,9,5,0,14,4,21,1,52,3,21,1,0,14,4,11,23,27,N/A,96,3,7,17,40,34,3.97\r\n,Yulupa Elementary,Bennett Valley Union Elementar,Sonoma,895,9,1,1,3,1,16,1,70,7,17,0,0,7,0,8,21,N/A,N/A,97,2,8,27,29,34,3.85\r\n,Warwick Elementary,Fremont Unified,Alameda,895,9,6,0,45,10,11,1,19,7,24,4,0,19,19,10,26,26,N/A,98,1,12,20,36,31,3.83\r\n,Delaine Eastin Elementary,New Haven Unified,Alameda,895,9,5,0,42,21,15,3,7,7,20,7,0,14,34,7,26,32,N/A,97,3,8,20,42,26,3.8\r\n,Ethel Dwyer Middle,Huntington Beach City Elementa,Orange,895,9,1,1,10,1,23,0,59,6,24,21,0,7,7,9,N/A,30,29,96,4,9,25,35,26,3.7\r\n,Wilson Elementary,San Gabriel Unified,Los Angeles,895,9,1,0,50,3,31,0,10,1,35,9,0,32,3,9,31,31,N/A,98,3,12,23,35,26,3.7\r\n,Don Benito Fundamental,Pasadena Unified,Los Angeles,895,9,15,0,9,3,36,0,28,7,38,23,0,12,11,10,27,25,N/A,98,6,11,22,30,30,3.67\r\n,Newcastle Elementary,Newcastle Elementary,Placer,895,9,1,4,2,0,10,0,80,3,26,15,0,3,3,2,9,12,14,95,1,9,32,42,17,3.65\r\n,Eastwood Elementary,Norwalk-La Mirada Unified,Los Angeles,895,9,2,0,28,4,41,0,22,3,26,15,0,9,11,6,29,30,N/A,98,1,15,24,35,24,3.64\r\n,Frederiksen Elementary,Dublin Unified,Alameda,895,9,9,1,13,3,21,2,49,1,19,4,0,11,3,4,24,27,N/A,95,2,18,23,40,18,3.53\r\n,Etiwanda Colony Elementary,Etiwanda Elementary,San Bernardino,895,9,8,0,7,5,45,0,30,5,20,10,0,9,2,16,28,32,N/A,98,1,15,32,33,19,3.53\r\n,Heritage,Snowline Joint Unified,San Bernardino,895,9,1,1,7,0,20,0,66,0,27,14,0,5,2,5,30,31,31,96,1,14,34,34,16,3.5\r\n,Sherman Oaks Center for Enriched Studies,Los Angeles Unified,Los Angeles,895,10,6,1,13,6,35,1,39,0,50,46,0,3,26,5,N/A,34,32,88,8,16,22,32,22,3.45\r\n,Argonne Elementary,San Francisco Unified,San Francisco,895,9,2,0,52,2,9,0,24,4,40,14,0,30,17,8,21,27,N/A,97,7,19,17,38,19,3.43\r\n,Freshwater Elementary,Freshwater Elementary,Humboldt,895,9,0,4,1,0,5,0,90,0,25,1,0,1,1,11,20,22,N/A,94,0,17,41,28,13,3.38\r\n,,Millville Elementary,Shasta,895,B,2,3,0,0,5,1,87,0,46,5,0,0,0,5,11,18,19,44,4,11,44,30,11,3.32\r\n,Germain Street Elementary,Los Angeles Unified,Los Angeles,895,9,8,1,14,6,39,0,31,0,48,15,0,12,9,9,16,15,N/A,76,8,21,28,35,9,3.16\r\n,Lomita Math/Science/Technology Magnet,Los Angeles Unified,Los Angeles,895,9,12,0,5,16,53,1,13,0,58,14,0,11,16,8,16,17,N/A,91,11,19,33,30,8,3.05\r\n,Pepper Drive Elementary,Santee Elementary,San Diego,895,9,2,0,1,1,36,1,49,9,53,0,0,12,11,7,24,30,27,98,10,27,36,21,6,2.86\r\nD,Celerity Octavia Charter,Los Angeles Unified,Los Angeles,895,9,0,0,4,2,91,0,2,2,89,0,0,38,26,10,21,22,N/A,96,37,35,12,10,5,2.11\r\n,,San Dieguito Union High,San Diego,894,B,1,0,15,1,13,0,69,1,7,31,0,5,6,11,N/A,N/A,32,96,4,4,10,34,48,4.19\r\n,,Poway Unified,San Diego,894,B,3,0,19,7,13,1,54,4,14,13,0,11,9,10,25,32,35,92,2,5,14,39,40,4.1\r\n,,Las Virgenes Unified,Los Angeles,894,B,2,0,7,1,9,0,79,2,7,16,0,5,4,13,21,27,29,96,1,10,14,34,41,4.03\r\nY,Pomelo Community Charter,Los Angeles Unified,Los Angeles,894,9,3,2,10,3,13,0,69,0,11,26,0,4,2,16,13,7,N/A,90,2,8,19,41,31,3.92\r\n,Thomas Jefferson Elementary,Burbank Unified,Los Angeles,894,9,1,0,13,5,21,0,54,6,22,2,0,8,8,9,29,30,N/A,97,0,8,21,44,26,3.88\r\n,Grant Elementary,Santa Monica-Malibu Unified,Los Angeles,894,9,8,0,6,0,30,0,45,10,28,4,0,5,0,12,25,28,N/A,75,5,6,23,27,38,3.87\r\n,,El Segundo Unified,Los Angeles,894,B,4,0,7,1,22,0,54,10,12,5,0,5,3,8,24,30,31,98,1,10,23,37,28,3.81\r\n,Walnut High,Walnut Valley Unified,Los Angeles,894,10,3,0,52,9,26,1,9,0,14,18,0,7,12,8,N/A,N/A,29,96,2,9,22,44,24,3.79\r\n,,Rocklin Unified,Placer,894,B,1,1,6,3,13,0,69,6,19,13,0,4,3,10,24,29,28,94,2,8,27,40,23,3.76\r\n,Gisler (Robert) Elementary,Fountain Valley Elementary,Orange,894,9,1,1,20,1,15,1,58,3,21,4,0,10,5,14,27,28,N/A,99,0,5,33,41,20,3.75\r\n,Crescenta Valley High,Glendale Unified,Los Angeles,894,10,1,0,30,3,12,0,52,1,13,32,0,6,29,6,N/A,N/A,32,88,2,15,17,42,23,3.7\r\n,Steven Millard Elementary,Fremont Unified,Alameda,894,9,6,1,36,11,16,1,24,4,31,4,0,20,17,15,25,25,N/A,99,3,16,20,34,28,3.67\r\n,Justice Street Elementary,Los Angeles Unified,Los Angeles,894,9,6,1,10,6,28,0,48,0,31,31,1,3,2,13,12,10,N/A,92,2,11,30,38,19,3.62\r\n,Wolf Canyon Elementary,Chula Vista Elementary,San Diego,894,9,8,0,4,28,37,1,21,1,26,21,0,24,6,9,22,29,N/A,53,3,11,28,42,17,3.6\r\n,Veterans Elementary,Norris Elementary,Kern,894,9,1,1,3,2,30,0,55,5,18,0,0,5,3,3,25,29,N/A,88,1,16,34,29,21,3.53\r\n,Leona Valley Elementary,Westside Union Elementary,Los Angeles,894,9,2,1,2,0,11,0,81,0,16,10,0,0,0,9,27,29,24,95,0,12,42,31,15,3.5\r\nY,Weimar Hills Charter,Placer Hills Union Elementary,Placer,894,9,1,1,0,0,9,0,84,4,30,14,0,0,0,8,N/A,29,27,93,1,15,35,31,18,3.5\r\nY,Salmon Creek,Harmony Union Elementary,Sonoma,894,9,1,2,3,0,17,1,76,1,45,0,0,5,2,7,25,22,24,99,6,9,34,29,21,3.5\r\n,Windrows Elementary,Etiwanda Elementary,San Bernardino,894,9,4,0,6,3,48,0,32,7,28,12,0,8,3,16,27,31,N/A,95,2,12,39,31,17,3.49\r\n,Rosa Parks Elementary,Corona-Norco Unified,Riverside,894,9,9,0,17,7,43,0,24,0,30,4,0,10,9,6,27,32,N/A,98,4,12,32,33,19,3.49\r\n,Nicolas Valley Elementary,Temecula Valley Unified,Riverside,894,9,5,1,3,7,38,2,37,8,31,0,0,7,8,9,22,28,N/A,99,5,15,36,35,10,3.31\r\n,Donald D. Lum Elementary,Alameda City Unified,Alameda,894,9,10,0,36,12,9,2,29,2,33,4,0,40,3,11,25,25,N/A,98,6,16,31,34,13,3.31\r\n,William Burnett Elementary,Milpitas Unified,Santa Clara,894,9,3,0,43,24,17,2,7,3,46,3,0,34,20,12,26,33,N/A,95,8,20,26,33,13,3.23\r\nD,Wilder's Preparatory Academy Charter Mid,Inglewood Unified,Los Angeles,894,9,82,0,0,1,16,0,0,1,71,0,0,1,2,1,N/A,23,25,98,2,22,39,28,10,3.22\r\n,Endeavour School of Exploration,Victor Elementary,San Bernardino,894,9,6,0,4,0,44,0,44,2,49,1,0,6,2,6,32,32,N/A,99,3,20,42,22,13,3.2\r\n,Orchard Dale Elementary,East Whittier City Elementary,Los Angeles,894,9,1,1,3,2,76,0,16,0,44,4,0,12,3,17,16,22,N/A,99,5,19,40,25,12,3.19\r\n,,Mission Union Elementary,Monterey,894,B,0,0,0,1,51,0,48,0,0,0,0,5,14,1,16,13,N/A,97,8,30,20,31,11,3.08\r\n,Mission Elementary,Mission Union Elementary,Monterey,894,9,0,0,0,1,51,0,48,0,0,0,0,5,14,1,16,13,N/A,97,8,30,20,31,11,3.08\r\n,Sycamore Elementary,Simi Valley Unified,Ventura,894,9,0,0,8,1,28,0,60,3,32,5,0,10,7,18,22,28,N/A,91,5,30,31,24,11,3.06\r\nY,Hawthorne Math and Science Academy,Hawthorne,Los Angeles,894,10,9,0,8,5,73,2,3,0,77,15,0,3,57,0,N/A,N/A,28,94,17,37,28,13,5,2.51\r\nD,Milagro Charter,Los Angeles Unified,Los Angeles,894,9,2,0,1,1,96,0,1,0,92,0,0,15,21,19,24,24,N/A,95,20,30,35,10,5,2.51\r\n,Lemay Street Elementary,Los Angeles Unified,Los Angeles,894,9,7,0,2,2,79,0,8,0,84,13,0,27,16,10,16,17,N/A,92,30,36,19,13,3,2.23\r\n,Pioneer Elementary,Davis Joint Unified,Yolo,893,9,3,0,19,2,14,1,62,0,15,30,0,5,5,15,24,29,N/A,87,1,3,9,27,60,4.44\r\n,California High,San Ramon Valley Unified,Contra Costa,893,10,2,0,21,3,12,0,53,8,3,7,0,1,7,8,N/A,N/A,31,96,0,4,17,44,34,4.08\r\n,Pleasant Hill Elementary,Mt. Diablo Unified,Contra Costa,893,9,3,0,5,2,20,0,66,3,25,3,0,11,5,8,29,30,N/A,81,3,9,17,40,32,3.88\r\n,Diablo View Middle,Mt. Diablo Unified,Contra Costa,893,9,2,1,6,3,15,0,70,2,14,14,0,3,6,9,N/A,29,30,85,2,9,24,41,25,3.77\r\n,Concordia Elementary,Capistrano Unified,Orange,893,9,1,0,2,0,14,0,80,3,24,4,0,7,1,6,25,32,N/A,97,3,6,28,35,27,3.77\r\n,Boulder Oaks Elementary,Alpine Union Elementary,San Diego,893,9,1,3,2,2,16,0,76,0,18,7,0,2,2,10,27,32,N/A,97,0,8,35,30,27,3.76\r\n,Travis Elementary,Travis Unified,Solano,893,9,16,0,3,7,20,1,43,10,23,2,0,2,0,14,25,31,N/A,99,0,3,42,35,20,3.72\r\n,Temecula Middle,Temecula Valley Unified,Riverside,893,9,3,1,3,4,28,0,57,3,14,20,0,3,6,12,N/A,27,30,97,3,8,31,35,22,3.65\r\n,Colina Middle,Conejo Valley Unified,Ventura,893,9,2,1,11,2,26,0,57,2,26,26,0,8,14,12,N/A,29,28,63,9,14,15,28,34,3.64\r\n,Hermosa Elementary,Alta Loma Elementary,San Bernardino,893,9,12,0,6,2,30,1,48,0,29,21,0,5,5,7,22,33,N/A,97,1,9,40,25,25,3.62\r\n,Golden Hill Elementary,Fullerton Elementary,Orange,893,9,1,0,12,1,37,0,40,3,25,15,0,13,8,9,28,30,N/A,88,2,11,31,34,21,3.61\r\n,C. W. Dillard Elementary,Elk Grove Unified,Sacramento,893,9,2,2,2,1,21,0,62,11,23,4,0,7,4,7,21,24,N/A,98,5,14,26,28,27,3.58\r\n,,Cypress Elementary,Orange,893,B,3,0,33,5,26,0,27,4,32,6,0,23,10,9,25,28,N/A,97,3,12,29,35,21,3.58\r\n,Tiffany (Burton C.) Elementary,Chula Vista Elementary,San Diego,893,9,5,0,2,12,59,0,20,1,30,20,0,20,3,14,21,28,N/A,83,2,15,29,31,22,3.56\r\n,Allen Avenue Elementary,Bonita Unified,Los Angeles,893,9,2,0,3,1,49,1,36,5,38,4,0,7,1,16,23,33,N/A,93,2,13,35,30,20,3.54\r\n,Grace Miller Elementary,Bonita Unified,Los Angeles,893,9,4,0,6,3,49,0,32,4,36,7,0,7,2,10,23,32,N/A,97,4,11,34,30,21,3.52\r\n,,Bonsall Union Elementary,San Diego,893,B,3,5,3,3,32,1,51,3,33,7,4,17,5,13,23,23,23,75,8,12,27,32,21,3.46\r\nD,Conservatory of Vocal/Instrumental Arts,Oakland Unified,Alameda,893,9,52,0,5,0,21,0,9,13,42,1,0,0,0,4,,,,73,2,7,47,30,14,3.46\r\n,Gerald F. Litel Elementary,Chino Valley Unified,San Bernardino,893,9,3,0,18,5,37,0,34,2,23,12,0,8,2,16,28,28,N/A,95,2,22,22,40,14,3.42\r\n,South Shores/CSUDH Visual and Performing,Los Angeles Unified,Los Angeles,893,9,9,1,4,1,47,3,35,0,50,11,0,2,4,10,10,7,N/A,95,4,15,35,32,13,3.35\r\n,,Evergreen Elementary,Santa Clara,893,B,3,0,50,8,29,1,8,1,32,7,1,21,23,9,23,29,29,99,12,21,22,24,21,3.2\r\nY,Village Elementary Charter,Rincon Valley Union Elementary,Sonoma,893,9,5,1,5,2,30,1,50,5,49,7,0,14,6,10,20,28,N/A,88,8,21,28,31,11,3.17\r\n,Carlton Hills Elementary,Santee Elementary,San Diego,893,9,1,1,1,1,22,1,63,8,45,9,0,6,5,13,24,25,29,98,3,21,42,26,8,3.13\r\n,Victoriano Elementary,Val Verde Unified,Riverside,893,9,26,0,3,4,48,1,11,1,73,19,0,14,6,8,28,29,N/A,95,10,22,35,27,6,2.97\r\n,Fairmont Elementary,Sanger Unified,Fresno,893,9,1,1,15,0,37,0,44,1,58,5,1,12,12,6,21,26,23,99,14,19,35,32,0,2.85\r\n,Mountain Creek Middle,Pioneer Union Elementary,El Dorado,893,9,0,1,1,0,11,1,82,4,45,0,0,0,2,12,N/A,25,21,93,7,32,36,18,7,2.84\r\n,Millard McCollam Elementary,Alum Rock Union Elementary,Santa Clara,893,9,2,0,35,8,47,1,5,1,100,6,0,33,27,13,19,24,N/A,95,15,30,22,30,2,2.74\r\n,Lake Don Pedro Elementary,Mariposa County Unified,Mariposa,893,9,0,1,0,0,10,0,87,1,59,1,0,0,1,13,17,27,18,98,10,35,36,13,6,2.69\r\n,,Monte Rio Union Elementary,Sonoma,893,B,2,0,0,2,12,0,85,0,68,3,0,3,2,8,,,,27,0,56,33,6,6,2.61\r\n,Monte Rio Elementary,Monte Rio Union Elementary,Sonoma,893,9,2,0,0,2,12,0,85,0,68,3,0,3,2,8,,,,27,0,56,33,6,6,2.61\r\nD,Preuss School UCSD,San Diego Unified,San Diego,893,10,9,0,16,1,69,0,2,2,100,33,0,5,68,0,N/A,1,6,97,37,40,19,3,1,1.9\r\n,Bay Laurel Elementary,Las Virgenes Unified,Los Angeles,892,9,1,0,8,0,4,0,84,2,3,0,0,9,3,15,21,28,N/A,99,0,3,10,38,48,4.31\r\n,Eastbluff Elementary,Newport-Mesa Unified,Orange,892,9,2,0,6,1,8,0,82,2,7,6,0,7,1,18,21,27,N/A,96,1,3,12,36,48,4.28\r\nD,California Montessori Project-Shingle Sp,Buckeye Union Elementary,El Dorado,892,9,0,0,3,1,15,0,68,12,12,0,0,0,2,11,16,24,15,100,0,3,17,42,39,4.16\r\n,,Beverly Hills Unified,Los Angeles,892,B,4,0,13,1,6,0,74,1,9,10,0,6,8,12,18,25,25,96,1,6,13,41,39,4.11\r\n,Toro Park Elementary,Washington Union Elementary,Monterey,892,9,1,0,10,3,10,0,74,0,0,0,0,3,5,9,24,N/A,N/A,93,1,7,14,39,39,4.1\r\n,,Albany City Unified,Alameda,892,B,5,0,30,1,17,0,37,10,23,0,0,18,11,9,25,27,27,30,2,6,19,33,40,4.03\r\n,North Park Elementary,Saugus Union,Los Angeles,892,9,6,0,12,9,14,1,56,2,10,8,0,7,4,15,22,28,N/A,100,1,6,20,48,26,3.92\r\n,Cecil B. Stowers Elementary,ABC Unified,Los Angeles,892,9,9,0,38,10,31,1,8,3,27,23,0,18,13,10,25,29,N/A,98,2,6,25,45,22,3.8\r\n,Pacific Grove Middle,Pacific Grove Unified,Monterey,892,9,3,0,12,1,16,2,62,3,18,19,0,4,10,10,N/A,26,24,85,3,10,23,31,32,3.79\r\n,,Redondo Beach Unified,Los Angeles,892,B,7,1,12,3,23,1,51,3,20,16,0,7,5,12,24,32,29,98,2,9,23,40,25,3.76\r\n,Mather Heights Elementary,Folsom-Cordova Unified,Sacramento,892,9,8,1,15,5,14,1,53,3,34,14,0,9,17,9,30,29,N/A,91,1,10,27,39,23,3.72\r\n,Dixie Canyon Avenue Elementary,Los Angeles Unified,Los Angeles,892,9,11,0,4,1,19,0,63,0,25,18,0,7,8,8,15,13,N/A,91,3,8,26,43,20,3.69\r\n,Las Colinas Middle,Pleasant Valley,Ventura,892,9,2,0,9,5,27,0,56,1,18,16,0,4,5,12,N/A,30,28,94,4,11,24,37,25,3.68\r\n,Spring Valley Elementary,Millbrae Elementary,San Mateo,892,9,1,0,43,9,9,2,30,6,14,6,2,26,14,10,28,30,N/A,68,1,21,9,49,20,3.65\r\n,Coyote Ridge Elementary,Dry Creek Joint Elementary,Placer,892,9,0,0,7,4,20,0,61,6,23,8,0,14,4,7,23,32,N/A,98,2,7,33,40,17,3.63\r\n,Rock Creek Elementary,Rocklin Unified,Placer,892,9,4,1,12,4,17,1,58,3,25,6,0,8,4,9,24,30,N/A,97,3,10,28,39,20,3.63\r\n,Allen (Ella B.) Elementary,Chula Vista Elementary,San Diego,892,9,2,0,2,5,58,1,30,1,31,22,0,18,6,7,19,23,N/A,89,2,16,27,31,24,3.6\r\n,Creekside Middle,Castro Valley Unified,Alameda,892,9,3,0,18,2,26,0,42,8,18,15,0,3,12,8,N/A,33,31,97,3,13,29,35,21,3.57\r\n,Tustin Ranch Elementary,Tustin Unified,Orange,892,9,4,0,23,4,30,1,35,1,24,7,0,21,6,10,25,30,N/A,97,5,14,20,43,18,3.54\r\n,Robert C. Cooley Middle,Roseville City Elementary,Placer,892,9,3,1,9,7,20,1,59,0,32,5,0,6,10,15,N/A,29,30,97,4,13,27,38,18,3.52\r\n,,Etiwanda Elementary,San Bernardino,892,B,12,0,9,5,43,0,25,5,27,12,0,7,4,14,27,30,29,95,2,14,36,31,17,3.47\r\n,Crestmont Elementary,Roseville City Elementary,Placer,892,9,1,1,6,1,12,1,79,0,28,16,0,4,3,17,23,30,N/A,99,3,15,36,28,19,3.44\r\n,Cottonwood Canyon Elementary,Lake Elsinore Unified,Riverside,892,9,5,1,4,6,27,1,56,0,35,13,0,4,6,10,23,27,N/A,100,2,18,31,35,14,3.4\r\n,Lewis Middle,San Diego Unified,San Diego,892,9,9,0,19,1,31,0,36,4,48,46,0,7,23,9,N/A,33,31,89,7,20,24,29,21,3.38\r\n,Sycamore Canyon Elementary,Santee Elementary,San Diego,892,9,1,0,1,0,17,0,68,10,25,8,0,3,3,11,22,29,N/A,97,1,20,33,33,13,3.36\r\n,Robert A. Millikan Middle,Los Angeles Unified,Los Angeles,892,9,11,1,4,2,34,0,46,1,49,39,0,5,18,9,N/A,34,32,68,9,17,25,31,18,3.32\r\n,Temple City High,Temple City Unified,Los Angeles,892,10,1,0,66,2,18,0,11,2,40,10,0,14,28,8,N/A,N/A,29,94,8,20,23,30,18,3.3\r\n,Angier Elementary,San Diego Unified,San Diego,892,9,30,0,4,5,28,0,18,15,69,33,0,11,6,10,24,32,N/A,97,1,15,48,26,10,3.28\r\n,Sunnyside Elementary,Garden Grove Unified,Orange,892,9,1,0,51,2,37,1,7,0,57,0,0,52,23,8,25,28,N/A,2,0,50,0,50,0,3\r\n,John S. Wash Elementary,Sanger Unified,Fresno,892,9,4,0,36,2,42,0,13,2,64,1,0,11,19,3,24,28,N/A,98,8,19,41,32,0,2.98\r\n,,Columbine Elementary,Tulare,892,B,1,0,5,2,80,0,12,0,59,0,3,10,11,1,2,1,N/A,99,10,24,41,15,10,2.89\r\n,Columbine Elementary,Columbine Elementary,Tulare,892,9,1,0,5,2,80,0,12,0,59,0,3,10,11,1,2,1,N/A,99,10,24,41,15,10,2.89\r\n,Otter Creek Elementary,Black Oak Mine Unified,El Dorado,892,9,0,0,0,0,6,0,83,11,72,0,0,0,0,0,14,N/A,N/A,83,7,33,40,20,0,2.73\r\nD,Gabriella Charter,Los Angeles Unified,Los Angeles,892,9,4,0,4,3,87,0,2,0,89,2,0,32,31,13,22,25,25,95,35,26,24,11,4,2.22\r\n,Central Middle,San Carlos Elementary,San Mateo,891,9,1,1,7,2,17,1,71,0,7,0,0,7,1,14,N/A,23,26,99,2,5,14,38,42,4.13\r\n,Glenwood Elementary,San Rafael City Elementary,Marin,891,9,1,0,5,0,18,0,72,3,16,24,0,12,4,16,21,23,N/A,97,3,5,12,43,37,4.05\r\n,Marian Bergeson Elementary,Capistrano Unified,Orange,891,9,1,1,10,2,19,0,60,7,14,4,0,9,6,12,22,32,N/A,96,1,8,14,40,37,4.04\r\n,,Garfield Elementary,Humboldt,891,B,0,0,7,0,7,0,86,0,19,0,0,0,0,21,9,8,N/A,93,0,13,21,26,41,3.95\r\n,Garfield Elementary,Garfield Elementary,Humboldt,891,9,0,0,7,0,7,0,86,0,19,0,0,0,0,21,9,8,N/A,93,0,13,21,26,41,3.95\r\n,El Segundo Middle,El Segundo Unified,Los Angeles,891,9,4,0,8,1,21,1,53,11,12,4,0,5,3,8,N/A,29,31,99,2,8,23,39,28,3.84\r\n,Sierra View Elementary,Chico Unified,Butte,891,9,3,0,5,1,8,0,82,0,26,0,0,3,1,15,27,31,N/A,97,2,8,27,31,32,3.82\r\nD,Goethe International Charter,Los Angeles Unified,Los Angeles,891,9,11,3,9,1,22,0,53,0,21,0,0,7,7,7,24,23,N/A,11,6,11,11,50,22,3.72\r\n,R. L. Stevenson Elementary,Burbank Unified,Los Angeles,891,9,6,0,9,4,27,0,46,7,1,5,0,9,5,11,27,27,N/A,96,2,9,28,41,20,3.69\r\n,Gratton Elementary,Gratton Elementary,Stanislaus,891,9,0,0,7,0,15,0,78,0,9,0,0,4,0,2,7,5,N/A,98,0,13,22,47,18,3.69\r\n,Brea Junior High,Brea-Olinda Unified,Orange,891,9,2,0,17,3,34,0,42,2,27,19,0,6,21,8,N/A,N/A,31,96,6,11,27,33,24,3.59\r\n,Madison Elementary,Long Beach Unified,Los Angeles,891,9,21,1,13,2,33,4,23,0,45,5,0,7,6,11,26,34,N/A,94,1,12,30,41,16,3.58\r\n,Edna Batey Elementary,Elk Grove Unified,Sacramento,891,9,7,1,27,5,15,1,37,6,27,6,0,10,12,10,22,27,N/A,97,1,14,28,39,17,3.57\r\n,Madrona Middle,Torrance Unified,Los Angeles,891,9,4,0,26,7,28,1,26,5,24,14,0,9,10,10,N/A,33,33,87,2,14,26,40,17,3.55\r\n,Erle Stanley Gardner Middle,Temecula Valley Unified,Riverside,891,9,4,3,4,10,31,1,40,9,17,10,0,3,7,16,N/A,30,29,100,3,10,34,38,15,3.53\r\n,Kastner Intermediate,Clovis Unified,Fresno,891,9,5,1,9,1,36,0,43,3,42,8,1,3,8,7,N/A,N/A,31,96,5,15,26,31,23,3.51\r\n,Robert O. Townsend Junior High,Chino Valley Unified,San Bernardino,891,9,4,0,12,7,42,0,32,3,25,9,0,5,10,12,N/A,N/A,30,88,3,17,24,39,17,3.48\r\n,Marshall Elementary,Castro Valley Unified,Alameda,891,9,5,1,16,4,28,2,37,4,29,6,0,18,5,13,24,23,N/A,96,3,16,37,33,11,3.34\r\n,Sunny Brae Middle,Arcata Elementary,Humboldt,891,9,3,4,3,1,6,0,70,9,51,15,0,3,2,18,N/A,18,20,93,10,24,13,33,21,3.3\r\nD,St. HOPE Public School 7 (PS7),Sacramento City Unified,Sacramento,891,9,82,1,2,1,11,0,2,2,75,0,0,4,0,7,26,27,24,91,3,19,44,18,15,3.24\r\n,Oak Meadows Elementary,Menifee Union Elementary,Riverside,891,9,11,1,4,8,35,1,40,0,38,7,0,8,3,10,25,27,N/A,78,5,17,48,25,4,3.07\r\n,Fountain Valley High,Huntington Beach Union High,Orange,891,10,1,4,43,1,15,1,33,1,20,18,0,3,24,7,N/A,N/A,29,0,0,0,100,0,0,3\r\n,Playa del Rey Elementary,Los Angeles Unified,Los Angeles,891,9,14,0,7,4,63,0,12,0,61,11,0,19,7,13,15,12,N/A,93,17,19,28,21,15,2.99\r\nD,Celerity Nascent Charter,Los Angeles Unified,Los Angeles,891,9,57,0,0,0,41,0,1,0,98,0,0,12,20,7,23,29,19,96,31,52,13,4,1,1.92\r\n,San Ramon Valley High,San Ramon Valley Unified,Contra Costa,890,10,1,0,6,1,7,0,82,4,1,6,0,0,1,9,N/A,N/A,31,99,0,1,10,45,44,4.32\r\n,Sutter Middle,Folsom-Cordova Unified,Sacramento,890,9,3,1,15,2,9,0,67,3,14,20,0,3,8,10,N/A,33,32,92,0,4,22,42,32,4\r\n,Washington Elementary,Santa Clara Unified,Santa Clara,890,9,2,1,15,1,12,1,53,13,10,10,0,13,5,18,30,28,N/A,98,0,9,16,44,30,3.96\r\n,Pierpont Elementary,Ventura Unified,Ventura,890,9,0,0,2,0,14,0,79,4,24,21,0,3,1,5,23,34,N/A,100,0,8,27,28,37,3.93\r\nY,Tierra Pacifica Charter,Live Oak Elementary,Santa Cruz,890,9,2,1,4,1,12,0,72,0,25,0,0,0,0,14,20,26,N/A,68,0,13,25,33,29,3.78\r\n,Manuel De Vargas Elementary,Cupertino Union,Santa Clara,890,9,4,0,54,2,22,1,16,1,28,0,0,36,22,12,21,25,N/A,90,7,11,19,29,34,3.73\r\n,Branch Elementary,Lucia Mar Unified,San Luis Obispo,890,9,0,0,2,0,21,0,76,1,25,10,0,9,1,9,30,31,N/A,89,3,10,25,35,26,3.69\r\n,Carl Hankey Middle,Capistrano Unified,Orange,890,9,1,1,5,6,30,1,52,5,36,12,0,7,18,8,N/A,32,28,60,8,9,21,36,27,3.63\r\n,Temecula Luiseno Elementary,Temecula Valley Unified,Riverside,890,9,3,1,5,10,30,0,44,6,18,1,0,8,4,14,22,27,N/A,100,2,12,32,37,18,3.58\r\n,Ocean View Elementary,East Whittier City Elementary,Los Angeles,890,9,1,1,3,0,75,0,19,1,25,9,0,4,1,10,22,27,N/A,95,2,8,38,35,16,3.57\r\n,John Muir Middle,Burbank Unified,Los Angeles,890,9,2,0,7,3,23,0,61,2,1,17,0,9,24,8,N/A,29,27,94,2,19,22,40,18,3.53\r\n,Lexington Junior High,Anaheim Union High,Orange,890,9,5,0,31,6,29,1,30,0,28,7,0,10,20,8,N/A,N/A,33,6,6,15,28,32,19,3.44\r\n,John Murdy Elementary,Garden Grove Unified,Orange,890,9,0,0,86,0,10,0,4,0,63,0,0,50,35,7,25,31,N/A,16,4,27,8,47,14,3.41\r\n,Warren T. Eich Intermediate,Roseville City Elementary,Placer,890,9,5,0,4,3,17,1,69,0,33,8,0,7,6,11,N/A,N/A,30,95,3,19,36,28,14,3.31\r\n,Charles G. Emery Elementary,Buena Park Elementary,Orange,890,9,4,0,33,6,45,0,11,1,44,13,0,35,14,8,27,27,N/A,91,11,16,22,35,16,3.3\r\n,Stanton Elementary,Castro Valley Unified,Alameda,890,9,8,1,20,3,30,1,30,9,36,3,0,23,6,10,24,30,N/A,97,6,15,39,29,12,3.27\r\nD,Aspire Benjamin Holt College Preparatory,Lodi Unified,San Joaquin,890,10,5,0,18,4,38,0,29,4,36,0,0,2,20,6,N/A,30,29,99,7,19,34,25,15,3.21\r\n,Ocean Knoll Elementary,Encinitas Union Elementary,San Diego,890,9,0,0,1,0,52,0,44,2,44,1,1,36,9,15,24,29,N/A,98,19,19,14,20,28,3.19\r\n,Vine Elementary,West Covina Unified,Los Angeles,890,9,3,0,13,4,73,0,6,2,44,13,0,8,5,9,20,32,N/A,91,12,36,30,17,6,2.69\r\n,Montebello Gardens Elementary,Montebello Unified,Los Angeles,890,9,0,0,0,0,97,0,3,0,100,14,0,25,31,9,30,30,N/A,79,17,42,19,15,7,2.52\r\n,Oak Ridge High,El Dorado Union High,El Dorado,889,10,2,0,8,1,8,0,75,3,7,13,0,0,2,6,N/A,N/A,31,98,0,3,17,41,39,4.15\r\n,Country Club Elementary,San Ramon Valley Unified,Contra Costa,889,9,3,0,24,3,16,0,49,5,5,5,0,8,5,13,23,23,N/A,95,0,5,17,48,29,4.01\r\n,Los Altos High,Mountain View-Los Altos Union,Santa Clara,889,10,2,0,22,2,25,1,47,2,9,15,0,6,23,11,N/A,N/A,24,99,9,10,10,21,50,3.93\r\n,William B. Bimat Elementary,Norris Elementary,Kern,889,9,2,1,4,4,30,0,55,3,17,0,0,7,5,7,24,26,N/A,94,1,11,22,31,36,3.88\r\n,Rocklin High,Rocklin Unified,Placer,889,10,1,0,5,3,14,0,70,6,12,16,0,4,3,8,N/A,N/A,30,93,2,6,22,46,25,3.87\r\n,Brookside,Lincoln Unified,San Joaquin,889,9,8,1,19,7,27,1,38,0,23,12,0,12,9,9,27,30,23,99,3,10,19,35,32,3.83\r\n,Rancho Canada Elementary,Saddleback Valley Unified,Orange,889,9,3,0,8,2,21,0,59,5,22,3,0,15,2,18,27,34,N/A,78,4,7,26,38,26,3.77\r\n,El Segundo High,El Segundo Unified,Los Angeles,889,10,4,0,7,1,23,1,52,11,11,9,0,2,4,7,N/A,N/A,31,97,1,11,25,35,27,3.76\r\n,Highlands Elementary,Mt. Diablo Unified,Contra Costa,889,9,3,0,10,5,16,1,58,6,25,3,0,10,5,14,28,29,N/A,63,2,10,23,41,24,3.76\r\n,Garden Road Elementary,Poway Unified,San Diego,889,9,1,0,5,3,20,1,66,4,22,2,0,11,0,17,23,29,N/A,85,2,10,25,40,24,3.75\r\n,Pleasant Grove Elementary,Elk Grove Unified,Sacramento,889,9,2,2,15,2,24,1,50,6,21,5,0,8,7,6,22,23,N/A,87,3,12,25,30,31,3.74\r\n,Stone Lake Elementary,Elk Grove Unified,Sacramento,889,9,11,0,18,6,23,0,24,16,25,7,0,4,10,8,21,26,N/A,98,0,11,27,38,23,3.73\r\n,,North Cow Creek Elementary,Shasta,889,B,2,1,2,0,5,0,86,4,25,0,0,0,0,7,20,27,N/A,96,2,10,30,32,25,3.66\r\n,North Cow Creek Elementary,North Cow Creek Elementary,Shasta,889,9,2,1,2,0,5,0,86,4,25,0,0,0,0,7,20,27,N/A,96,2,10,30,32,25,3.66\r\n,Cyrus J. Morris Elementary,Walnut Valley Unified,Los Angeles,889,9,4,0,37,11,41,0,7,0,22,12,0,10,14,15,23,30,N/A,99,5,13,18,42,22,3.62\r\n,Lisa J. Mails Elementary,Murrieta Valley Unified,Riverside,889,9,4,0,3,5,28,1,49,11,24,9,0,3,2,13,24,30,N/A,81,1,9,36,35,19,3.62\r\n,,Saugus Union,Los Angeles,889,B,4,0,9,6,27,0,52,1,18,7,0,11,5,12,23,29,N/A,99,4,12,25,38,21,3.59\r\n,Environmental Academy of Research Techno,Conejo Valley Unified,Ventura,889,9,1,0,11,1,33,1,49,4,26,18,0,21,9,7,22,31,N/A,98,12,11,14,36,28,3.57\r\n,Empresa Elementary,Vista Unified,San Diego,889,9,2,1,4,4,34,1,49,5,32,0,0,14,6,13,25,30,N/A,97,5,10,28,40,17,3.54\r\n,Nestle Avenue Elementary,Los Angeles Unified,Los Angeles,889,9,7,1,2,1,13,0,76,0,47,24,0,24,23,8,20,18,N/A,97,4,13,28,35,20,3.54\r\n,Serrano Intermediate,Saddleback Valley Unified,Orange,889,9,3,0,8,4,29,0,50,6,27,15,0,10,10,13,N/A,N/A,30,100,8,11,25,31,24,3.52\r\n,Terra Vista Elementary,Etiwanda Elementary,San Bernardino,889,9,12,0,14,4,42,1,18,8,28,3,0,11,3,10,29,31,N/A,94,2,13,36,30,19,3.51\r\n,Bryn Mawr Elementary,Redlands Unified,San Bernardino,889,9,7,1,24,10,35,0,15,6,55,6,0,12,6,11,19,33,N/A,94,5,14,33,22,25,3.49\r\n,Cecilia Lucero Solorio Elementary,Etiwanda Elementary,San Bernardino,889,9,15,0,6,5,48,0,20,6,27,5,0,11,1,13,27,30,N/A,93,3,12,37,31,18,3.48\r\n,Helen Carr Castello Elementary,Elk Grove Unified,Sacramento,889,9,12,0,24,10,23,0,20,7,37,9,0,11,17,9,20,28,N/A,90,3,14,32,33,18,3.48\r\n,Hidden Valley Elementary,Mt. Diablo Unified,Contra Costa,889,9,3,0,8,6,24,0,53,6,26,4,0,9,6,8,27,33,N/A,95,2,18,27,35,17,3.46\r\n,Star View Elementary,Ocean View,Orange,889,9,3,0,55,2,15,1,24,1,41,9,0,28,24,9,23,30,N/A,91,6,15,26,36,18,3.46\r\n,Correia Middle,San Diego Unified,San Diego,889,9,6,1,1,2,39,0,47,4,43,38,0,9,13,10,N/A,N/A,28,93,8,15,26,28,23,3.44\r\n,Alta Loma Junior High,Alta Loma Elementary,San Bernardino,889,9,8,0,3,1,40,1,46,0,30,26,0,2,6,12,N/A,N/A,27,96,3,10,45,23,18,3.42\r\n,Discovery Elementary,Fruitvale Elementary,Kern,889,9,4,1,3,3,30,0,57,1,31,0,0,4,3,12,24,31,N/A,95,2,18,36,27,17,3.39\r\n,,Moreland Elementary,Santa Clara,889,B,3,0,22,2,34,1,30,7,33,6,0,24,15,10,19,29,28,97,13,15,18,30,24,3.39\r\n,Theodore Judah Elementary,Sacramento City Unified,Sacramento,889,9,7,2,3,1,31,0,48,8,35,17,0,8,3,19,24,24,N/A,91,11,13,29,29,18,3.29\r\n,,Hydesville Elementary,Humboldt,889,B,0,5,1,0,10,0,84,0,39,28,0,0,0,12,10,11,12,89,2,13,45,36,4,3.27\r\n,Hydesville Elementary,Hydesville Elementary,Humboldt,889,9,0,5,1,0,10,0,84,0,39,28,0,0,0,12,10,11,12,89,2,13,45,36,4,3.27\r\n,Thomas Russell Middle,Milpitas Unified,Santa Clara,889,9,4,0,41,24,19,1,8,3,35,14,0,12,33,10,N/A,N/A,26,97,8,19,28,31,14,3.23\r\n,Portola Elementary,Ventura Unified,Ventura,889,9,1,1,4,1,54,1,34,4,61,12,0,18,2,7,24,30,N/A,100,4,21,40,25,9,3.14\r\nD,Aspire River Oaks Charter,Lodi Unified,San Joaquin,889,9,9,0,14,2,40,1,26,7,57,0,0,13,13,7,22,29,N/A,98,5,25,37,19,13,3.1\r\n,Jackson Junior High,Amador County Unified,Amador,889,9,1,2,2,0,13,0,75,5,37,17,0,0,3,5,N/A,28,19,97,4,29,36,17,14,3.08\r\n,Jackson Avenue Elementary,Livermore Valley Joint Unified,Alameda,889,9,3,0,9,4,40,0,39,5,47,2,2,23,9,11,22,30,N/A,99,14,19,30,26,11,3.02\r\n,Montgomery Elementary,Montgomery Elementary,Sonoma,889,9,0,0,0,0,0,0,81,19,29,19,0,0,0,14,,,,33,0,43,14,43,0,3\r\n,Grovecenter Elementary,Covina-Valley Unified,Los Angeles,889,9,3,0,9,4,70,0,12,2,62,11,0,22,7,19,22,22,N/A,99,11,21,39,21,8,2.94\r\n,Pleasant Grove,Pleasant Grove Joint Union,Sutter,889,9,1,3,6,0,15,0,75,0,43,7,0,8,3,5,19,13,N/A,92,5,33,35,18,9,2.93\r\n,,Camino Union Elementary,El Dorado,889,B,0,0,0,0,24,0,73,3,56,9,0,13,7,14,23,24,22,99,20,19,30,20,11,2.85\r\n,San Onofre Elementary,Fallbrook Union Elementary,San Diego,889,9,8,0,1,3,32,1,52,3,44,10,0,1,1,12,25,28,27,88,10,21,51,17,1,2.79\r\n,Jessie Hayden Elementary,Westminster Elementary,Orange,889,9,0,1,68,0,27,0,3,1,75,23,0,73,10,8,23,28,N/A,97,18,32,24,23,4,2.63\r\nY,Pine Mountain Learning Center,El Tejon Unified,Kern,888,8,0,0,0,0,16,0,4,0,16,0,0,2,0,6,19,22,N/A,4,0,0,0,50,50,4.5\r\n,Torrey Pines High,San Dieguito Union High,San Diego,888,10,1,0,27,1,10,0,59,0,5,32,0,5,7,9,N/A,N/A,34,92,2,3,8,32,54,4.32\r\nD,Western Sierra Collegiate Academy,SBE - Western Sierra Collegiat,Placer,888,10,1,1,10,4,15,0,59,11,8,11,0,0,3,5,N/A,N/A,27,100,1,3,24,40,32,4.01\r\n,,Fremont Union High,Santa Clara,888,B,1,0,54,3,16,0,23,2,16,8,0,10,20,9,N/A,N/A,29,100,8,8,11,22,51,4\r\n,Mt. George International,Napa Valley Unified,Napa,888,8,1,1,2,1,18,0,69,6,11,9,0,2,3,8,29,28,N/A,97,2,5,30,37,26,3.79\r\n,Norman Liddell Elementary,Central Unified,Fresno,888,8,7,0,15,2,28,1,44,3,31,9,0,6,8,7,29,34,N/A,98,1,8,30,40,21,3.71\r\n,Tomas Rivera Elementary,Riverside Unified,Riverside,888,8,8,1,6,3,32,1,45,0,30,17,0,4,5,10,27,31,N/A,98,3,9,34,29,24,3.61\r\n,Luigi Aprea Elementary,Gilroy Unified,Santa Clara,888,8,2,1,8,3,42,0,39,4,20,9,0,12,7,12,24,27,N/A,97,4,9,27,46,14,3.56\r\n,Oliveira Elementary,Fremont Unified,Alameda,888,8,9,1,38,12,17,1,17,4,35,2,0,26,15,17,27,24,N/A,98,4,18,21,35,23,3.54\r\n,Katherine L. Albiani Middle,Elk Grove Unified,Sacramento,888,9,10,1,19,4,19,1,41,5,33,14,0,5,13,9,N/A,N/A,26,86,4,16,28,33,18,3.45\r\nY,Competitive Edge Charter Academy (CECA),Yucaipa-Calimesa Joint Unified,San Bernardino,888,8,1,0,3,1,33,0,62,0,29,15,0,8,3,7,24,25,24,95,2,16,39,27,16,3.37\r\n,Margarita Middle,Temecula Valley Unified,Riverside,888,9,4,1,3,3,36,0,48,4,26,14,0,6,7,11,N/A,27,29,97,7,14,32,32,15,3.33\r\n,Jamacha Elementary,Cajon Valley Union,San Diego,888,8,9,0,2,1,24,1,55,2,38,14,0,20,9,16,23,26,N/A,92,4,20,32,27,17,3.33\r\n,Wilson Elementary,Wilmar Union Elementary,Sonoma,888,8,1,0,0,0,17,0,82,0,29,5,0,10,1,15,18,20,N/A,86,4,19,32,33,13,3.32\r\nY,Palm Desert Charter Middle,Desert Sands Unified,Riverside,888,9,2,0,4,1,44,0,46,3,49,13,0,5,21,6,N/A,24,21,93,11,18,29,25,17,3.18\r\nY,Hickman Middle,Hickman Community Charter,Stanislaus,888,9,0,2,2,0,30,0,66,0,40,31,1,8,5,5,N/A,29,27,97,8,19,35,30,8,3.11\r\n,Richland Elementary,San Marcos Unified,San Diego,888,8,2,1,3,2,48,1,42,1,47,1,1,22,9,18,25,27,N/A,93,18,16,22,28,15,3.05\r\n,John Burroughs Middle,Los Angeles Unified,Los Angeles,888,9,11,0,29,5,47,0,7,0,75,37,0,12,39,6,N/A,33,31,67,18,22,21,30,9,2.9\r\n,Camino Elementary,Camino Union Elementary,El Dorado,888,8,0,0,0,0,24,0,73,3,56,9,0,14,7,13,23,26,24,100,20,19,30,20,11,2.84\r\n,Woodland Park Middle,San Marcos Unified,San Diego,888,9,3,1,4,2,49,1,39,1,48,5,2,11,24,15,N/A,29,28,96,22,18,28,22,11,2.83\r\n,Evans Ranch Elementary,Menifee Union Elementary,Riverside,888,8,4,1,4,4,40,1,46,0,35,9,0,9,6,11,25,28,N/A,89,8,25,50,14,4,2.81\r\nY,Stockton Unified Early College Academy,Stockton Unified,San Joaquin,888,10,5,3,26,9,47,0,9,0,68,49,1,1,41,1,N/A,N/A,31,85,18,26,28,18,11,2.78\r\nY,Cielo Vista Charter,Palm Springs Unified,Riverside,888,8,4,1,1,10,63,0,20,0,74,12,0,34,7,7,30,32,N/A,97,28,25,29,13,6,2.43\r\nD,Celerity Dyad Charter,Los Angeles Unified,Los Angeles,888,8,6,0,0,0,93,0,0,0,100,0,0,57,27,7,23,29,28,96,71,23,5,1,0,1.37\r\n,Alternative Education-San Joaquin High,Irvine Unified,Orange,888,8,4,0,17,4,11,0,54,8,1,8,0,0,8,4,8,7,9,0,0,0,0,0,0,\r\n,Isaac L. Sowers Middle,Huntington Beach City Elementa,Orange,887,9,1,0,8,0,16,0,70,4,11,24,0,1,4,10,N/A,31,31,97,0,6,23,41,29,3.91\r\n,Washington Elementary,Burlingame Elementary,San Mateo,887,8,1,1,12,2,26,1,48,6,20,4,0,30,5,13,21,29,N/A,98,6,7,20,33,34,3.82\r\n,,Pacific Grove Unified,Monterey,887,B,2,1,10,1,17,1,62,4,18,14,0,6,8,9,24,25,23,88,4,10,24,30,32,3.77\r\n,Arlington Elementary,Torrance Unified,Los Angeles,887,8,2,0,39,1,30,0,11,14,27,5,0,15,7,17,29,35,N/A,97,1,10,27,37,25,3.76\r\n,Patricia Nixon Elementary,ABC Unified,Los Angeles,887,8,12,0,23,14,31,0,13,6,33,9,1,12,6,11,25,31,N/A,95,1,10,24,47,19,3.74\r\n,Goddard Middle,Glendora Unified,Los Angeles,887,9,1,0,4,1,29,0,59,4,15,14,0,2,3,14,N/A,31,31,100,1,11,27,35,25,3.73\r\n,McNear Elementary,Petaluma City Schools,Sonoma,887,8,3,0,3,0,18,1,75,0,24,11,0,12,2,16,21,25,N/A,99,6,13,15,36,30,3.71\r\n,,Kenwood,Sonoma,887,B,4,0,4,0,9,0,83,0,12,14,0,4,3,19,18,20,N/A,77,5,7,24,41,23,3.69\r\n,Altamont Creek Elementary,Livermore Valley Joint Unified,Alameda,887,8,3,1,11,2,22,0,55,5,19,4,0,10,6,18,22,29,N/A,98,5,9,22,39,24,3.69\r\n,Jefferson Middle,Torrance Unified,Los Angeles,887,9,5,0,27,6,21,1,32,6,26,12,0,9,13,9,N/A,35,35,90,3,11,24,38,24,3.69\r\n,Canyon Middle,Castro Valley Unified,Alameda,887,9,9,1,25,4,23,0,26,10,21,16,0,6,14,10,N/A,27,28,97,2,13,27,36,22,3.62\r\n,Edison Elementary,Santa Monica-Malibu Unified,Los Angeles,887,8,3,0,2,0,72,0,21,0,51,4,0,32,3,11,26,24,N/A,73,9,17,14,25,35,3.59\r\n,La Rosa Elementary,Temple City Unified,Los Angeles,887,8,0,0,60,1,23,0,9,5,41,0,0,35,0,13,24,N/A,N/A,99,4,18,24,30,24,3.51\r\n,Sakamoto Elementary,Oak Grove Elementary,Santa Clara,887,8,5,1,22,4,27,1,39,0,24,25,0,11,9,14,23,29,N/A,98,3,18,26,34,19,3.47\r\n,Ramona Middle,Bonita Unified,Los Angeles,887,9,4,0,4,2,44,0,37,4,29,18,0,3,3,7,N/A,30,32,96,4,12,36,28,19,3.47\r\n,Hickman Elementary,San Diego Unified,San Diego,887,8,8,0,24,22,20,0,16,9,47,36,0,31,10,7,24,34,N/A,91,4,17,28,37,15,3.42\r\n,Junction Elementary,Junction Elementary,Shasta,887,8,0,2,0,0,11,0,79,5,26,0,0,1,0,13,20,24,N/A,97,4,15,38,26,17,3.36\r\n,,Wilmar Union Elementary,Sonoma,887,B,1,0,0,0,17,0,82,0,29,5,0,10,1,16,18,20,N/A,87,4,19,32,33,13,3.33\r\n,Pioneer/Quincy Elementary,Plumas Unified,Plumas,887,8,3,1,0,1,4,0,87,3,40,10,0,0,0,10,,,,97,6,15,37,27,16,3.32\r\n,Woodland Elementary,Mariposa County Unified,Mariposa,887,8,0,6,1,0,10,0,70,9,53,2,0,0,0,18,25,36,N/A,98,2,18,45,15,19,3.32\r\n,Woodrow Wilson Elementary,Corona-Norco Unified,Riverside,887,8,3,1,7,2,38,1,49,0,27,8,0,12,6,8,27,32,N/A,97,10,13,31,29,17,3.29\r\n,Oak Valley Elementary,Buellton Union Elementary,Santa Barbara,887,8,0,1,2,0,47,0,43,2,41,9,0,24,10,7,21,23,N/A,87,13,20,22,26,19,3.18\r\n,Guin Foss Elementary,Tustin Unified,Orange,887,8,1,0,5,2,51,1,40,1,43,10,0,27,6,14,24,28,N/A,91,15,18,22,31,14,3.12\r\n,Rice Canyon Elementary,Lake Elsinore Unified,Riverside,887,8,6,0,3,1,54,0,35,0,53,11,0,14,8,11,23,29,N/A,98,8,27,37,22,5,2.9\r\n,Vail Elementary,Temecula Valley Unified,Riverside,887,8,2,3,4,3,50,0,32,4,52,2,0,21,9,15,21,28,N/A,96,17,19,34,23,8,2.87\r\n,Temperance-Kutner Elementary,Clovis Unified,Fresno,887,8,4,1,33,0,43,0,18,2,76,1,4,26,11,5,24,29,N/A,99,17,28,25,22,8,2.76\r\n,Kearny International Business,San Diego Unified,San Diego,887,10,10,1,26,5,42,1,9,6,71,20,1,23,29,7,N/A,N/A,28,78,20,28,28,15,9,2.66\r\n,Camellia Elementary,Sacramento City Unified,Sacramento,887,8,7,0,55,1,25,1,7,3,79,26,0,33,27,2,26,30,N/A,65,18,31,26,18,7,2.65\r\nY,Westside Preparatory Charter,Twin Rivers Unified,Sacramento,887,9,5,1,5,2,32,2,49,4,66,50,0,6,27,3,N/A,N/A,31,89,7,45,30,15,2,2.6\r\n,J. X. Wilson Elementary,Wright Elementary,Sonoma,887,8,2,1,8,1,53,0,35,0,66,8,3,42,7,9,20,23,N/A,86,20,42,25,13,0,2.31\r\nD,SIATech,Vista Unified,San Diego,887,B,19,0,1,0,62,1,9,8,100,0,0,5,1,7,,,,72,43,24,19,11,3,2.05\r\n,Los Gatos High,Los Gatos-Saratoga Joint Union,Santa Clara,886,10,0,0,10,1,8,0,74,6,3,0,0,2,5,7,N/A,N/A,26,98,1,2,10,38,49,4.32\r\n,Foothill High,Pleasanton Unified,Alameda,886,10,2,1,31,3,9,1,53,0,6,20,0,2,10,9,N/A,N/A,28,99,1,7,14,37,41,4.09\r\n,Natoma Station Elementary,Folsom-Cordova Unified,Sacramento,886,8,4,1,13,1,9,0,66,6,12,11,0,5,6,11,28,27,N/A,94,0,5,17,41,37,4.09\r\n,Los Alamitos High,Los Alamitos Unified,Orange,886,10,3,0,11,3,19,1,60,3,9,24,0,0,6,6,N/A,N/A,32,89,1,8,25,37,29,3.86\r\n,Thornton Junior High,Fremont Unified,Alameda,886,9,8,1,48,10,12,1,18,1,23,20,0,8,28,9,N/A,N/A,30,98,3,13,20,37,28,3.72\r\n,Noble Elementary,Berryessa Union Elementary,Santa Clara,886,8,4,0,54,5,13,1,11,6,27,7,0,34,16,7,24,32,N/A,98,6,9,23,34,28,3.7\r\n,Kenwood Elementary,Kenwood,Sonoma,886,8,4,0,4,0,9,0,82,0,13,15,0,4,3,18,18,20,N/A,76,5,7,25,41,22,3.67\r\n,Ramona Community,Ramona City Unified,San Diego,886,8,1,1,1,0,12,0,77,0,17,0,0,2,2,5,21,32,19,94,2,14,29,30,25,3.64\r\n,La Fetra Elementary,Glendora Unified,Los Angeles,886,8,2,0,8,2,43,0,40,4,28,5,0,10,2,12,25,30,N/A,100,2,16,31,30,21,3.53\r\n,Heritage Oak Elementary,Dry Creek Joint Elementary,Placer,886,8,3,1,4,2,17,0,69,3,27,5,0,8,0,21,21,29,N/A,98,2,11,36,34,17,3.52\r\n,Cordelia Hills Elementary,Fairfield-Suisun Unified,Solano,886,8,16,0,10,15,20,2,24,13,27,9,0,10,8,8,31,31,N/A,100,2,13,32,42,12,3.51\r\n,Heinz Kaiser Elementary,Newport-Mesa Unified,Orange,886,8,2,0,2,1,29,1,65,0,40,5,0,14,4,7,25,34,N/A,93,6,13,26,38,17,3.48\r\n,Butte Vista Elementary,Yuba City Unified,Sutter,886,8,1,1,15,1,24,0,50,6,34,13,2,4,10,10,20,26,28,97,4,19,29,28,20,3.41\r\n,Bella Vista Middle,Temecula Valley Unified,Riverside,886,9,7,2,4,9,33,1,40,5,21,9,0,2,5,12,N/A,28,29,99,2,14,38,35,11,3.38\r\n,,Lowell Joint,Los Angeles,886,B,1,0,3,1,61,0,32,2,33,8,0,9,7,10,28,31,33,95,5,15,36,28,16,3.36\r\n,Majestic Way Elementary,Berryessa Union Elementary,Santa Clara,886,8,4,0,53,5,21,2,7,8,35,6,0,47,15,12,23,32,N/A,99,7,14,33,31,16,3.35\r\n,William F. Elliott Elementary,ABC Unified,Los Angeles,886,8,6,0,27,16,35,1,13,3,51,17,2,28,8,7,26,31,N/A,91,5,19,26,38,12,3.33\r\n,Barnard Elementary,San Diego Unified,San Diego,886,8,17,0,7,4,38,1,25,8,61,31,0,17,16,11,22,31,N/A,91,6,21,26,32,15,3.28\r\n,Crafton Elementary,Redlands Unified,San Bernardino,886,8,8,0,4,0,47,0,36,5,52,8,0,7,0,16,22,34,N/A,91,6,17,39,18,19,3.26\r\n,Buena Terra Elementary,Centralia Elementary,Orange,886,8,3,1,9,11,49,1,26,1,43,7,0,18,9,11,26,31,N/A,98,6,19,35,29,12,3.22\r\n,,Manzanita Elementary,Butte,886,B,0,2,4,0,35,0,51,7,44,28,1,10,8,8,20,29,27,99,12,6,38,38,7,3.22\r\n,Manzanita Elementary,Manzanita Elementary,Butte,886,8,0,2,4,0,35,0,51,7,44,28,1,10,8,8,20,29,27,99,12,6,38,38,7,3.22\r\n,Post Elementary,Garden Grove Unified,Orange,886,8,0,0,68,0,27,1,3,0,60,1,0,47,30,8,24,32,N/A,17,3,37,8,40,12,3.21\r\n,Ada Clegg Elementary,Westminster Elementary,Orange,886,8,1,1,30,2,29,0,29,8,50,13,0,34,7,9,21,28,N/A,95,6,21,36,25,11,3.14\r\n,Stanton Elementary,Glendora Unified,Los Angeles,886,8,2,0,3,5,60,0,27,3,50,4,0,17,5,11,24,31,N/A,99,8,31,32,20,10,2.92\r\n,Greenville Fundamental Elementary,Santa Ana Unified,Orange,886,8,1,0,13,1,78,0,4,2,67,12,0,37,14,10,27,29,N/A,98,12,25,41,15,7,2.79\r\n,Merlinda Elementary,West Covina Unified,Los Angeles,886,8,4,0,12,3,76,0,5,0,70,16,0,14,14,7,18,31,N/A,94,13,34,37,14,2,2.58\r\n,Santa Fe Elementary,Baldwin Park Unified,Los Angeles,886,8,1,0,7,5,84,0,3,0,91,23,2,16,29,12,20,30,27,74,27,40,25,6,2,2.17\r\nD,Old Town Academy K-8 Charter,San Diego Unified,San Diego,885,8,3,0,1,1,22,1,70,1,6,29,0,3,0,8,27,23,N/A,91,0,5,16,45,34,4.08\r\n,Aliso Niguel High,Capistrano Unified,Orange,885,10,2,0,12,3,15,0,62,4,15,19,0,3,14,6,N/A,N/A,31,64,2,5,21,40,31,3.93\r\n,,Fremont Unified,Alameda,885,B,4,0,52,6,14,1,18,3,22,17,0,15,22,9,26,28,29,98,5,13,15,30,38,3.83\r\n,Rosa Parks Environmental Science Magnet,Berkeley Unified,Alameda,885,8,11,0,5,0,35,0,38,10,39,7,0,26,2,12,19,18,N/A,88,10,8,16,22,44,3.83\r\n,Meadows Elementary,Newhall,Los Angeles,885,8,0,0,3,3,31,0,55,8,21,8,0,11,1,17,24,28,N/A,98,3,7,26,40,23,3.73\r\n,Arroyo Seco Elementary,Livermore Valley Joint Unified,Alameda,885,8,3,0,5,2,23,0,58,8,23,7,0,9,5,14,23,29,N/A,100,4,13,23,32,28,3.68\r\n,Cubberley K-8,Long Beach Unified,Los Angeles,885,8,9,0,6,2,25,1,50,0,24,16,0,4,5,11,28,30,30,93,3,13,21,42,22,3.67\r\n,Silverado Middle,Dry Creek Joint Elementary,Placer,885,9,2,0,5,3,14,0,71,3,21,11,0,4,5,7,N/A,30,30,97,2,8,33,37,20,3.65\r\n,Bragg Elementary,ABC Unified,Los Angeles,885,8,12,1,23,20,29,0,12,3,38,16,2,14,10,12,26,28,N/A,93,3,11,26,42,18,3.61\r\n,Arnold O. Beckman High,Tustin Unified,Orange,885,10,2,0,34,2,29,0,31,1,25,18,0,13,18,5,N/A,N/A,33,95,11,11,18,32,29,3.56\r\n,,Cambrian,Santa Clara,885,B,4,1,15,3,25,1,49,1,21,12,0,12,7,11,23,28,30,96,6,13,24,37,20,3.51\r\n,Sequoia Middle,Conejo Valley Unified,Ventura,885,9,1,1,8,2,26,0,60,2,28,18,0,11,11,10,N/A,31,31,75,12,11,20,33,23,3.44\r\n,Intensive Learning Center,Bellflower Unified,Los Angeles,885,8,18,0,9,4,48,0,16,4,47,24,0,13,8,2,28,30,N/A,99,4,14,37,27,18,3.4\r\n,Marian A. Peterson Middle,Santa Clara Unified,Santa Clara,885,9,4,1,34,5,24,1,29,3,30,28,2,15,29,14,N/A,29,29,95,8,19,19,35,19,3.39\r\n,Frank Augustus Miller Middle,Riverside Unified,Riverside,885,9,10,1,7,4,32,1,44,0,35,12,0,4,8,12,N/A,N/A,27,99,5,12,40,25,18,3.39\r\n,Richard Henry Dana Middle,Wiseburn Elementary,Los Angeles,885,9,25,0,3,2,55,2,8,3,48,8,0,4,18,8,N/A,28,30,93,6,15,36,27,15,3.29\r\n,R. Paul Krey Elementary,Brentwood Union Elementary,Contra Costa,885,8,4,1,6,5,21,0,59,4,16,4,0,5,7,12,24,29,N/A,95,2,15,43,33,7,3.28\r\n,Ferris Spanger Elementary,Roseville City Elementary,Placer,885,8,2,1,2,1,24,1,69,0,35,1,0,6,1,20,22,33,N/A,98,3,23,38,24,12,3.19\r\n,Sumac Elementary,Las Virgenes Unified,Los Angeles,885,8,2,1,6,0,30,0,56,5,23,0,0,25,5,17,23,25,N/A,99,10,35,22,5,27,3.05\r\n,Laurelwood Elementary,Evergreen Elementary,Santa Clara,885,8,5,0,29,8,38,1,16,2,21,2,1,18,10,13,21,28,N/A,100,9,21,39,21,10,3.03\r\n,,Pleasant Grove Joint Union,Sutter,885,B,1,3,6,0,15,0,75,0,44,7,0,8,3,5,19,13,N/A,92,5,33,35,18,9,2.93\r\n,A. J. Cook Elementary,Garden Grove Unified,Orange,885,8,1,0,70,1,23,1,3,1,72,1,0,60,21,9,23,30,N/A,38,15,27,14,41,4,2.91\r\n,Dan O. Root Elementary,Fairfield-Suisun Unified,Solano,885,8,23,0,4,7,31,1,24,10,59,2,0,13,5,7,28,30,N/A,97,7,33,33,24,3,2.83\r\n,C. E. Utt Middle,Tustin Unified,Orange,885,9,4,1,6,3,64,0,19,1,62,10,0,25,21,10,N/A,29,31,94,17,27,28,19,8,2.75\r\nD,Valor Academy Charter,Los Angeles Unified,Los Angeles,885,9,4,0,0,2,85,1,6,1,91,0,0,14,0,10,,,,0,0,0,0,0,0,\r\nD,North Oakland Community Charter,Oakland Unified,Alameda,884,8,18,0,3,3,16,0,48,11,18,0,0,3,3,14,,,,95,1,1,16,28,54,4.34\r\n,Miraloma Elementary,San Francisco Unified,San Francisco,884,8,7,0,11,3,8,0,52,8,15,20,0,8,1,12,20,20,N/A,87,2,4,6,40,48,4.27\r\n,Westlake High,Conejo Valley Unified,Ventura,884,10,3,1,12,1,16,0,65,2,12,22,0,3,9,7,N/A,N/A,30,57,4,9,13,35,38,3.94\r\n,Martin Luther King Middle,Berkeley Unified,Alameda,884,9,19,0,10,1,21,0,38,10,42,24,0,9,7,13,N/A,24,25,89,7,9,19,26,38,3.79\r\n,Linda Vista Elementary,Orange Unified,Orange,884,8,3,0,10,1,21,0,59,4,20,1,0,10,2,14,29,28,N/A,99,1,9,31,38,21,3.68\r\n,Stanford Middle,Long Beach Unified,Los Angeles,884,9,10,0,7,3,32,1,45,0,34,23,0,6,12,12,N/A,34,33,90,3,14,21,37,25,3.67\r\n,Imperial Elementary,Orange Unified,Orange,884,8,3,1,13,2,20,1,57,1,11,1,0,6,2,14,29,30,N/A,98,1,6,42,36,15,3.58\r\n,Thompson Middle,Murrieta Valley Unified,Riverside,884,9,4,1,3,3,29,1,56,3,25,20,0,2,4,7,N/A,30,28,97,3,9,35,36,17,3.55\r\nD,Discovery Charter,Chula Vista Elementary,San Diego,884,8,4,0,5,13,60,1,16,1,28,20,0,30,3,7,22,28,N/A,77,3,17,24,34,22,3.55\r\n,Pearl Zanker Elementary,Milpitas Unified,Santa Clara,884,8,4,1,49,20,15,2,5,4,31,5,0,39,16,4,27,33,N/A,95,4,16,23,38,20,3.55\r\n,,Ackerman Elementary,Placer,884,B,2,1,1,1,12,0,81,3,27,0,0,3,1,7,21,21,24,96,2,15,33,31,19,3.5\r\nY,Bowman Charter,Ackerman Elementary,Placer,884,8,2,1,1,1,12,0,81,3,27,0,0,3,1,7,21,21,24,96,2,15,33,31,19,3.5\r\n,,Rincon Valley Union Elementary,Sonoma,884,B,4,1,5,1,23,1,61,3,37,10,0,10,6,12,19,28,28,91,6,14,27,33,20,3.46\r\n,Mark Keppel Elementary,Glendale Unified,Los Angeles,884,8,2,0,18,6,11,0,62,2,46,5,0,43,9,6,24,34,N/A,86,3,25,14,42,15,3.4\r\n,Arovista Elementary,Brea-Olinda Unified,Orange,884,8,2,1,6,1,40,1,50,0,36,6,0,16,6,9,26,32,N/A,99,6,16,32,27,19,3.37\r\n,International Polytechnic High,Los Angeles County Office of E,Los Angeles,884,10,4,0,7,7,67,0,12,0,31,0,0,0,21,2,N/A,N/A,31,96,8,12,33,31,16,3.35\r\n,Citrus Glen Elementary,Ventura Unified,Ventura,884,8,2,0,3,1,48,0,45,2,42,13,0,18,4,5,23,31,N/A,99,12,13,29,29,16,3.25\r\n,Columbus Elementary,Glendale Unified,Los Angeles,884,8,1,0,3,12,24,0,58,3,74,1,0,49,19,9,22,36,N/A,80,6,42,10,28,14,3\r\n,Evergreen Elementary,Evergreen Union,Tehama,884,8,1,3,1,0,11,1,81,2,56,0,0,3,0,11,20,28,N/A,98,6,34,38,18,4,2.82\r\n,Dorris Place Elementary,Los Angeles Unified,Los Angeles,884,8,1,0,18,9,71,0,1,0,83,12,0,29,22,14,19,18,N/A,79,27,26,28,12,7,2.46\r\n,Broadway Elementary,Los Angeles Unified,Los Angeles,884,8,12,3,1,0,79,0,5,0,100,3,0,30,17,29,18,15,N/A,61,36,32,17,9,7,2.18\r\n,Woodbridge High,Irvine Unified,Orange,884,10,2,0,32,3,13,0,45,5,13,18,0,7,16,7,N/A,N/A,32,0,0,0,0,0,0,\r\n,Clovis North High,Clovis Unified,Fresno,883,10,4,0,13,4,21,0,55,2,18,8,0,2,6,5,N/A,N/A,26,99,2,7,19,39,33,3.94\r\nD,Monterey Bay Charter,Monterey County Office of Educ,Monterey,883,8,5,0,3,1,15,0,67,8,26,13,0,1,1,11,22,25,N/A,99,1,5,30,29,35,3.92\r\n,Mt. Baldy Joint Elementary,Mt. Baldy Joint Elementary,San Bernardino,883,8,6,0,1,0,32,0,56,3,13,0,0,0,0,13,10,6,N/A,96,0,5,30,40,24,3.84\r\n,,Capistrano Unified,Orange,883,B,1,0,5,2,25,0,62,5,22,11,0,9,9,9,25,30,28,77,6,8,18,37,31,3.78\r\n,Hacienda Science/Environmental Magnet,San Jose Unified,Santa Clara,883,8,3,0,15,5,38,1,35,0,28,18,0,17,12,11,29,31,N/A,89,4,8,20,42,26,3.78\r\n,Sinsheimer Elementary,San Luis Coastal Unified,San Luis Obispo,883,8,3,0,3,2,19,0,70,3,26,0,0,8,0,11,21,30,N/A,98,3,12,24,29,32,3.76\r\nY,Emerson Parkside Academy Charter,Long Beach Unified,Los Angeles,883,8,10,0,5,1,33,1,43,0,30,7,0,9,4,15,24,24,N/A,96,5,12,16,36,31,3.76\r\n,,Fieldbrook Elementary,Humboldt,883,B,3,12,4,0,8,0,67,6,36,10,0,0,0,12,19,N/A,N/A,100,1,11,23,42,24,3.76\r\n,Fieldbrook Elementary,Fieldbrook Elementary,Humboldt,883,8,3,12,4,0,8,0,67,6,36,10,0,0,0,12,19,N/A,N/A,100,1,11,23,42,24,3.76\r\n,Arlene Hein Elementary,Elk Grove Unified,Sacramento,883,8,15,0,23,13,19,1,21,7,36,8,0,13,15,8,24,27,N/A,94,2,16,25,39,19,3.57\r\nY,Denair Academic Avenues,Denair Unified,Stanislaus,883,8,0,0,1,0,23,0,73,4,16,0,0,2,2,8,18,1,N/A,99,0,11,45,26,18,3.52\r\n,Colony Oak Elementary,Ripon Unified,San Joaquin,883,8,2,0,3,1,27,0,66,1,30,4,2,11,3,8,29,31,N/A,97,6,13,26,35,20,3.51\r\n,,Alta Loma Elementary,San Bernardino,883,B,9,0,6,1,37,1,45,0,32,18,0,4,5,12,22,31,28,96,3,11,42,25,19,3.47\r\nY,Oak Grove Elementary/Willowside Middle,Oak Grove Union Elementary,Sonoma,883,8,1,1,3,1,23,0,68,2,25,17,0,5,9,6,23,27,29,99,8,11,31,30,21,3.45\r\n,Talbert (Samuel E.) Middle,Fountain Valley Elementary,Orange,883,9,1,1,14,1,18,1,64,0,24,8,0,3,11,16,N/A,30,25,80,2,11,42,31,14,3.44\r\n,,Wiseburn Elementary,Los Angeles,883,B,20,0,3,2,57,1,11,4,46,8,0,11,13,11,23,29,29,94,5,15,35,27,18,3.36\r\n,Sloat (Commodore) Elementary,San Francisco Unified,San Francisco,883,8,8,0,45,6,7,0,21,7,48,7,0,28,14,11,21,33,N/A,86,11,22,19,24,24,3.28\r\n,Paseo del Rey Fundamental,Los Angeles Unified,Los Angeles,883,8,38,0,8,1,29,0,23,0,51,20,0,10,9,8,15,12,N/A,39,10,17,25,30,17,3.27\r\n,Alta Sierra Elementary,Pleasant Ridge Union Elementar,Nevada,883,8,0,1,0,0,7,0,83,7,29,5,0,2,0,13,18,25,N/A,100,3,25,32,24,17,3.26\r\n,Parkway Middle,La Mesa-Spring Valley,San Diego,883,9,6,0,3,2,32,1,52,5,33,25,0,5,9,11,N/A,N/A,29,91,3,20,39,25,13,3.26\r\nD,Lemoore Middle College High,Lemoore Union High,Kings,883,10,9,0,4,2,42,0,43,0,36,0,8,6,7,1,N/A,N/A,21,98,11,11,44,16,18,3.18\r\n,Cedargrove Elementary,Charter Oak Unified,Los Angeles,883,8,4,1,5,2,57,1,24,5,49,13,0,9,13,7,23,32,N/A,89,6,24,35,23,13,3.13\r\n,Jefferson Elementary,Clovis Unified,Fresno,883,8,1,1,6,0,45,0,44,3,68,2,2,8,7,4,23,30,N/A,98,8,25,36,23,8,2.98\r\n,Susan B. Anthony Elementary,Garden Grove Unified,Orange,883,8,1,0,69,0,22,0,7,0,63,0,0,44,32,18,23,31,N/A,13,12,30,14,38,6,2.96\r\nD,Piner-Olivet Charter,Piner-Olivet Union Elementary,Sonoma,883,9,4,1,11,2,38,1,43,0,32,0,0,21,16,6,N/A,N/A,24,89,9,35,23,24,8,2.88\r\n,Alvarado Intermediate,Rowland Unified,Los Angeles,883,9,1,0,42,7,43,0,5,1,59,22,0,15,29,8,N/A,N/A,29,97,14,28,24,23,10,2.87\r\n,Ridgemoor Elementary,Menifee Union Elementary,Riverside,883,8,6,0,1,3,39,1,50,0,40,8,0,13,5,12,24,27,N/A,93,11,20,46,19,4,2.86\r\n,Newton Middle,Hacienda la Puente Unified,Los Angeles,883,9,1,0,13,0,75,1,8,1,60,19,0,5,17,11,N/A,32,29,47,14,30,25,22,9,2.82\r\n,Ynez Elementary,Alhambra Unified,Los Angeles,883,8,0,0,76,2,20,0,2,1,76,4,1,52,24,9,22,30,30,93,17,36,16,23,7,2.67\r\nD,King-Chavez Primary Academy,San Diego Unified,San Diego,883,8,6,0,1,0,91,0,1,1,100,0,0,85,0,4,20,N/A,N/A,62,29,40,26,5,0,2.08\r\nD,Alliance Dr. Olga Mohan High,Los Angeles Unified,Los Angeles,883,10,2,0,1,0,95,0,2,0,97,0,0,19,59,7,N/A,N/A,23,100,60,30,6,3,1,1.55\r\n,Murwood Elementary,Walnut Creek Elementary,Contra Costa,882,8,3,1,21,2,16,0,53,4,19,1,0,18,5,10,23,28,N/A,97,6,5,13,43,33,3.93\r\n,John G. Mattos Elementary,Fremont Unified,Alameda,882,8,3,1,24,6,18,1,38,8,15,3,0,14,8,18,25,25,N/A,98,3,12,17,35,33,3.85\r\n,,Mt. Baldy Joint Elementary,San Bernardino,882,B,6,0,1,0,32,0,57,3,13,0,0,0,0,13,10,6,N/A,95,0,5,30,40,24,3.84\r\n,,Conejo Valley Unified,Ventura,882,B,2,1,9,1,22,0,63,2,20,18,0,9,9,10,20,30,28,66,7,10,16,34,32,3.74\r\n,Buena Vista Middle,Spreckels Union Elementary,Monterey,882,9,1,0,5,4,31,0,58,0,13,0,1,3,2,5,N/A,26,23,85,3,6,27,39,24,3.73\r\n,Spreckels Elementary,San Diego Unified,San Diego,882,8,2,0,8,2,42,0,42,5,40,33,0,21,14,8,24,34,N/A,88,4,14,19,28,34,3.73\r\n,Twelve Bridges Elementary,Western Placer Unified,Placer,882,8,2,1,7,3,13,0,73,1,8,8,0,4,1,13,24,28,N/A,98,0,6,31,48,14,3.7\r\n,Juan De Anza Elementary,Wiseburn Elementary,Los Angeles,882,8,22,0,3,3,53,1,11,5,37,9,0,12,8,13,25,30,N/A,96,3,13,36,25,24,3.54\r\n,Mesa Elementary,Covina-Valley Unified,Los Angeles,882,8,5,0,14,3,63,0,15,0,45,14,0,7,9,15,22,24,N/A,99,2,18,28,31,21,3.51\r\n,,Roseville City Elementary,Placer,882,B,3,1,7,5,20,1,63,0,31,4,0,10,6,15,22,30,30,97,4,14,30,33,18,3.48\r\n,Glenmoor Elementary,Fremont Unified,Alameda,882,8,6,0,29,7,27,2,23,6,39,2,0,28,13,10,28,30,N/A,97,9,15,18,36,22,3.46\r\n,,Oak Grove Union Elementary,Sonoma,882,B,1,1,3,1,23,0,68,2,25,17,0,5,9,6,23,27,19,99,8,11,31,30,21,3.45\r\nD,Chrysalis Charter,Shasta County Office of Educat,Shasta,882,8,0,2,0,0,5,0,86,7,53,0,0,0,0,5,12,7,3,100,0,11,50,25,14,3.41\r\n,Rancho-Starbuck Intermediate,Lowell Joint,Los Angeles,882,9,1,0,3,1,58,0,35,2,32,10,0,4,9,9,N/A,N/A,33,96,5,15,36,29,15,3.35\r\n,Kraemer Middle,Placentia-Yorba Linda Unified,Orange,882,9,2,0,18,3,50,0,26,1,47,27,0,11,21,10,N/A,N/A,28,50,13,18,18,27,24,3.32\r\n,Melrose Avenue Elementary,Los Angeles Unified,Los Angeles,882,8,8,0,10,5,52,0,24,0,64,25,0,13,21,12,15,17,N/A,86,11,18,24,27,20,3.28\r\n,Olinda Elementary,West Contra Costa Unified,Contra Costa,882,8,17,0,26,7,29,1,20,0,33,5,0,20,17,6,23,30,N/A,86,7,25,19,38,11,3.2\r\n,Glen H. Dysinger Sr. Elementary,Centralia Elementary,Orange,882,8,1,0,7,10,54,1,23,4,45,3,0,19,11,9,29,29,N/A,98,6,24,29,28,13,3.19\r\n,Woodrow Wilson Middle,Glendale Unified,Los Angeles,882,9,2,0,5,10,21,0,61,1,55,17,0,21,35,7,N/A,31,31,81,6,34,13,33,15,3.17\r\n,Bridgeway Island Elementary,Washington Unified,Yolo,882,8,10,1,16,5,19,1,48,1,44,25,0,17,15,8,19,32,27,97,8,20,32,30,10,3.15\r\n,Washington Elementary,Charter Oak Unified,Los Angeles,882,8,1,0,8,1,56,0,27,7,45,14,0,11,13,10,23,31,N/A,97,5,22,36,27,10,3.14\r\n,Ramblewood Elementary,Franklin-McKinley Elementary,Santa Clara,882,8,1,0,64,4,26,2,2,1,64,22,2,37,32,9,24,30,N/A,98,9,21,36,29,6,3.04\r\n,Giannini (A.P.) Middle,San Francisco Unified,San Francisco,882,9,6,0,64,3,10,1,10,1,51,51,0,13,37,11,N/A,32,30,79,8,45,12,25,9,2.81\r\nY,Harmony Magnet Academy,Porterville Unified,Tulare,882,10,1,2,2,3,62,0,24,2,53,9,7,5,36,1,N/A,N/A,24,84,33,16,27,12,12,2.54\r\nD,Santa Ynez Valley Charter,College Elementary,Santa Barbara,882,8,1,4,1,0,14,0,77,3,0,0,0,7,1,9,10,3,3,0,0,0,0,0,0,\r\n,Theodore Roosevelt Elementary,Burbank Unified,Los Angeles,881,8,3,1,7,2,25,0,61,2,1,2,0,6,4,18,26,28,N/A,96,1,9,23,38,29,3.87\r\n,Prisk Elementary,Long Beach Unified,Los Angeles,881,8,12,1,7,4,25,1,46,1,29,8,0,6,2,17,28,33,N/A,95,2,9,23,36,30,3.84\r\n,Kimberly Elementary,Redlands Unified,San Bernardino,881,8,6,1,6,1,31,0,53,2,36,7,0,5,2,18,18,28,N/A,91,5,7,28,22,38,3.82\r\n,Hammer Montessori at Galarza Elementary,San Jose Unified,Santa Clara,881,8,9,0,18,4,34,1,32,1,26,16,0,15,9,11,29,27,N/A,91,4,10,23,33,31,3.79\r\n,Montevideo Elementary,Saddleback Valley Unified,Orange,881,8,1,0,4,2,24,0,60,8,19,3,0,10,1,15,21,31,N/A,94,3,8,25,39,24,3.74\r\n,Sebastian Questa Elementary,Lammersville Joint Unified,San Joaquin,881,8,9,1,27,18,17,1,23,3,14,14,0,9,1,8,19,27,N/A,93,1,11,33,26,28,3.7\r\n,,Carlsbad Unified,San Diego,881,B,2,1,7,1,26,1,58,4,21,29,1,8,6,10,30,31,30,97,6,10,21,33,30,3.7\r\n,Mabel M. Paine Elementary,Placentia-Yorba Linda Unified,Orange,881,8,1,0,12,4,35,0,43,4,31,2,0,13,8,12,27,32,N/A,75,4,11,27,31,28,3.69\r\n,Lake Elementary,Vista Unified,San Diego,881,8,2,1,6,2,27,0,56,6,25,0,1,10,3,12,24,31,N/A,96,4,10,26,40,20,3.63\r\n,Woodlake Avenue Elementary,Los Angeles Unified,Los Angeles,881,8,8,0,9,2,19,0,62,0,25,22,0,11,7,14,13,14,N/A,95,3,12,26,38,20,3.61\r\n,,Placer Hills Union Elementary,Placer,881,B,1,1,0,0,8,0,86,3,28,8,0,1,0,10,12,27,27,94,1,15,33,31,20,3.54\r\n,Valley Middle,Carlsbad Unified,San Diego,881,9,1,1,3,1,31,0,56,5,27,35,2,6,8,9,N/A,29,32,97,9,13,25,29,24,3.46\r\n,,Freshwater Elementary,Humboldt,881,B,0,5,1,0,5,0,88,0,24,0,0,1,0,12,20,22,N/A,93,0,16,41,28,15,3.42\r\n,Dr. Bernice Jameson Todd Elementary,Corona-Norco Unified,Riverside,881,8,6,1,8,4,35,1,45,1,28,4,0,9,5,9,29,28,N/A,99,7,12,32,32,17,3.41\r\n,Scott Avenue Elementary,East Whittier City Elementary,Los Angeles,881,8,2,1,2,3,72,0,19,0,35,8,0,10,6,13,21,29,N/A,99,4,21,36,28,11,3.23\r\n,Palms Middle,Los Angeles Unified,Los Angeles,881,9,26,0,12,3,39,0,19,1,52,44,0,6,19,8,N/A,30,29,53,11,20,23,29,18,3.23\r\nD,Chula Vista Learning Community Charter,Chula Vista Elementary,San Diego,881,8,1,0,0,0,95,0,3,0,56,21,0,53,11,6,21,28,N/A,68,14,20,21,26,19,3.17\r\n,William Saroyan Elementary,Central Unified,Fresno,881,8,11,1,7,0,51,0,28,2,57,6,0,4,10,6,29,35,N/A,91,3,22,40,23,12,3.17\r\n,Glider Elementary,Oak Grove Elementary,Santa Clara,881,8,4,0,34,4,37,1,19,0,40,25,0,27,14,6,25,33,N/A,98,8,21,29,32,10,3.13\r\n,Repetto Elementary,Alhambra Unified,Los Angeles,881,8,1,0,52,1,37,0,5,2,57,4,0,29,16,9,21,26,36,98,8,26,26,26,14,3.12\r\n,,Buellton Union Elementary,Santa Barbara,881,B,0,1,2,0,46,0,45,2,49,10,1,19,16,7,21,22,24,73,11,24,24,24,16,3.11\r\n,Rancho Milpitas Middle,Milpitas Unified,Santa Clara,881,9,3,0,35,25,24,1,10,2,41,11,0,16,34,7,N/A,N/A,27,94,12,21,26,30,11,3.06\r\n,Arthur F. Corey Elementary,Buena Park Elementary,Orange,881,8,6,0,12,14,44,2,22,0,48,9,0,27,7,7,27,30,N/A,93,12,21,30,29,9,3.01\r\n,Harry S. Truman Elementary,Desert Sands Unified,Riverside,881,8,1,0,1,1,73,0,22,1,70,1,0,24,12,11,29,30,N/A,100,17,27,33,15,8,2.71\r\n,Cameron Elementary,West Covina Unified,Los Angeles,881,8,5,0,7,7,70,0,11,0,65,8,0,12,8,9,20,24,N/A,95,9,34,43,12,3,2.66\r\n,Casita Center for Science/Math/Technolog,Vista Unified,San Diego,881,8,1,1,3,3,66,1,24,3,64,0,3,31,16,10,25,30,N/A,95,24,24,25,20,8,2.63\r\n,,Davis Joint Unified,Yolo,880,B,3,1,16,2,18,0,59,0,21,25,1,9,7,11,24,28,28,93,2,5,10,23,60,4.33\r\n,McKinley Elementary,Burlingame Elementary,San Mateo,880,8,0,0,8,3,23,0,57,6,19,0,0,24,6,10,22,29,N/A,98,3,10,16,35,36,3.9\r\n,Dublin High,Dublin Unified,Alameda,880,10,8,1,23,7,17,0,42,1,9,16,0,3,11,6,N/A,N/A,29,98,2,12,24,39,23,3.67\r\n,Roy Cloud Elementary,Redwood City Elementary,San Mateo,880,8,2,1,5,1,27,1,61,2,15,9,0,7,8,11,29,31,27,99,5,9,24,37,25,3.67\r\n,Tovashal Elementary,Murrieta Valley Unified,Riverside,880,8,5,0,3,3,35,1,48,4,33,11,0,5,4,11,24,33,N/A,93,3,9,35,35,19,3.57\r\n,Forkner Elementary,Fresno Unified,Fresno,880,8,6,1,5,0,38,1,49,0,38,2,0,6,4,8,23,32,N/A,98,4,13,36,21,27,3.55\r\n,,Clovis Unified,Fresno,880,B,3,1,13,2,31,0,47,3,40,5,1,5,7,6,24,32,28,98,5,16,26,30,23,3.5\r\n,James Foster Elementary,Saugus Union,Los Angeles,880,8,3,0,3,3,22,0,69,0,11,5,0,7,3,13,25,29,N/A,99,2,20,31,32,15,3.38\r\n,,Indian Diggings Elementary,El Dorado,880,B,0,0,0,0,6,0,81,13,31,0,0,0,0,19,,,,100,0,13,50,25,13,3.38\r\n,Indian Diggings Elementary,Indian Diggings Elementary,El Dorado,880,8,0,0,0,0,6,0,81,13,31,0,0,0,0,19,,,,100,0,13,50,25,13,3.38\r\n,Carlton Oaks Elementary,Santee Elementary,San Diego,880,8,1,1,3,1,18,0,63,11,24,26,0,2,4,14,23,32,28,98,2,20,31,34,14,3.37\r\n,East Heritage Elementary,Etiwanda Elementary,San Bernardino,880,8,16,1,9,4,49,0,12,8,40,7,0,15,4,10,27,31,N/A,95,2,16,40,29,12,3.34\r\n,Harada Elementary,Corona-Norco Unified,Riverside,880,8,12,0,14,5,43,0,25,1,33,5,0,13,10,11,22,31,N/A,91,6,16,34,26,18,3.33\r\n,Lietz Elementary,Union Elementary,Santa Clara,880,8,3,0,9,2,40,2,42,2,35,5,0,27,5,11,21,23,N/A,94,10,14,27,30,19,3.33\r\n,Rio Del Oro Elementary,Plumas Lake Elementary,Yuba,880,8,4,1,5,2,24,1,53,10,38,13,0,8,5,11,19,31,N/A,95,2,16,39,31,11,3.33\r\n,Carnelian Elementary,Alta Loma Elementary,San Bernardino,880,8,7,0,3,2,42,0,45,1,43,13,0,5,5,9,20,30,N/A,88,2,19,45,20,14,3.27\r\n,Monterey Highlands Elementary,Alhambra Unified,Los Angeles,880,8,0,0,54,2,39,0,2,2,55,4,0,28,15,8,22,33,28,96,10,20,23,28,18,3.24\r\n,Rail Ranch Elementary,Murrieta Valley Unified,Riverside,880,8,4,0,4,3,47,1,39,2,44,6,0,8,6,17,24,32,N/A,94,8,17,35,31,9,3.15\r\n,Mark Twain Elementary,Lawndale Elementary,Los Angeles,880,8,7,0,12,2,64,2,12,1,58,16,0,41,3,13,25,29,N/A,94,8,20,38,26,8,3.06\r\n,Brookside Elementary,Beaumont Unified,Riverside,880,8,7,1,3,2,40,0,47,0,56,2,0,11,4,13,23,33,N/A,83,5,23,42,24,6,3.04\r\n,Wiley Canyon Elementary,Newhall,Los Angeles,880,8,1,0,2,2,63,0,28,3,53,7,0,42,8,8,23,29,N/A,99,20,25,23,23,9,2.76\r\n,Katherine Finchy Elementary,Palm Springs Unified,Riverside,880,8,11,2,2,3,50,1,32,0,69,16,0,28,5,9,30,32,N/A,80,15,32,29,11,14,2.76\r\n,Thomas Jefferson Elementary,Glendale Unified,Los Angeles,880,8,1,0,4,2,15,0,78,0,77,4,0,60,17,9,23,30,N/A,75,8,51,10,24,7,2.71\r\n,W. A. Kendrick Elementary,Greenfield Union,Kern,880,8,8,1,3,1,76,0,9,3,76,9,3,22,20,12,27,27,N/A,90,17,33,28,13,9,2.64\r\n,Skyline North Elementary,Barstow Unified,San Bernardino,880,8,12,1,0,0,45,2,37,3,70,23,0,8,3,8,27,27,N/A,92,9,43,32,10,6,2.62\r\n,Central Elementary,Banning Unified,Riverside,880,8,9,1,2,1,72,0,12,3,86,7,0,31,13,7,20,31,N/A,97,24,29,28,16,2,2.45\r\nD,Inland Leaders Charter,Yucaipa-Calimesa Joint Unified,San Bernardino,880,8,2,0,1,1,19,0,77,0,23,0,0,1,0,3,21,25,N/A,98,22,45,31,0,1,2.13\r\nY,Brittan Acres Elementary,San Carlos Elementary,San Mateo,879,8,1,1,7,2,16,0,72,0,6,0,0,9,1,12,23,23,N/A,100,2,3,10,38,47,4.25\r\n,Juan Cabrillo Elementary,Santa Monica-Malibu Unified,Los Angeles,879,8,2,0,2,0,19,0,69,8,15,5,0,11,2,17,23,29,N/A,38,1,4,13,34,47,4.21\r\n,Manor Elementary,Ross Valley Elementary,Marin,879,8,1,0,2,1,15,0,77,1,17,4,0,6,2,11,20,27,N/A,94,3,3,11,34,48,4.19\r\n,Twin Oaks Elementary,Rocklin Unified,Placer,879,8,3,1,2,3,11,1,75,4,10,7,0,5,2,12,24,32,N/A,98,1,5,24,44,26,3.9\r\n,Moiola (Fred) Elementary,Fountain Valley Elementary,Orange,879,8,0,1,35,2,10,0,52,1,28,3,0,13,12,7,27,30,30,93,2,7,24,40,26,3.8\r\n,Capri Elementary,Encinitas Union Elementary,San Diego,879,8,0,0,2,0,33,0,59,5,24,1,2,20,5,12,21,31,N/A,98,10,9,13,29,39,3.79\r\n,Newbury Park High,Conejo Valley Unified,Ventura,879,10,2,0,9,1,19,0,67,2,13,18,0,2,10,10,N/A,N/A,25,49,6,11,22,32,30,3.7\r\n,,Lagunita Elementary,Monterey,879,B,0,0,1,0,32,1,63,0,13,24,0,3,3,10,,,,97,0,18,18,42,22,3.68\r\n,Lagunita Elementary,Lagunita Elementary,Monterey,879,8,0,0,1,0,32,1,63,0,13,24,0,3,3,10,,,,97,0,18,18,42,22,3.68\r\n,Sulphur Springs Community Elementary,Sulphur Springs Union,Los Angeles,879,8,5,1,6,0,33,0,53,3,22,7,0,9,4,11,24,26,N/A,92,4,11,28,28,29,3.66\r\n,Hollywood Beach Elementary,Hueneme Elementary,Ventura,879,8,3,0,1,7,22,1,66,0,23,32,0,3,1,10,28,31,N/A,100,3,11,31,34,21,3.59\r\n,A. E. Arnold Elementary,Cypress Elementary,Orange,879,8,5,0,33,5,23,0,29,5,36,4,0,27,10,9,26,29,N/A,94,3,12,32,35,19,3.56\r\n,Toby Johnson Middle,Elk Grove Unified,Sacramento,879,9,14,0,25,10,20,1,23,7,35,14,0,5,17,6,N/A,N/A,36,95,3,16,27,35,19,3.51\r\n,Roosevelt Elementary,Santa Barbara Unified,Santa Barbara,879,8,0,0,1,0,49,0,47,0,40,6,0,29,2,10,26,28,N/A,95,10,16,21,27,27,3.46\r\n,Jefferson,Jefferson Elementary,San Joaquin,879,9,5,0,12,7,29,1,46,1,22,19,0,10,7,8,N/A,26,26,98,3,11,40,29,16,3.44\r\n,Esperanza Elementary,Westside Union Elementary,Los Angeles,879,8,12,0,5,3,35,0,40,1,29,7,0,11,3,13,27,28,N/A,93,3,16,38,25,17,3.37\r\n,Pine Valley Elementary,Mountain Empire Unified,San Diego,879,8,0,0,0,0,19,0,2,0,40,0,0,2,0,6,22,N/A,N/A,100,2,13,46,29,10,3.31\r\n,Leo R. Croce Elementary,Livermore Valley Joint Unified,Alameda,879,8,2,0,9,4,29,1,49,6,30,6,1,14,7,13,24,27,N/A,100,5,18,35,28,14,3.26\r\n,Mt. Woodson Elementary,Ramona City Unified,San Diego,879,8,0,0,2,0,43,0,51,2,42,0,4,32,5,13,22,32,N/A,85,17,13,23,30,17,3.18\r\n,Royal Oaks Elementary,Duarte Unified,Los Angeles,879,8,8,0,10,8,51,0,20,3,55,14,0,12,6,13,26,26,N/A,95,7,21,31,29,12,3.18\r\nD,Mark West Charter,Mark West Union Elementary,Sonoma,879,8,1,1,3,1,35,1,55,3,32,9,1,9,16,3,N/A,N/A,28,76,10,19,34,24,13,3.1\r\n,Seventh Street Elementary,Los Angeles Unified,Los Angeles,879,8,4,1,2,2,60,1,29,0,50,12,0,6,2,11,13,5,N/A,95,7,24,37,22,11,3.07\r\n,Los Alisos Intermediate,Saddleback Valley Unified,Orange,879,9,2,0,6,4,50,0,35,3,41,13,0,20,18,10,N/A,N/A,30,83,18,19,24,23,17,3.02\r\nD,Fortune,Sacramento County Office of Ed,Sacramento,879,8,62,0,2,0,24,2,2,7,100,0,0,20,0,11,24,N/A,N/A,93,10,17,48,19,7,2.98\r\n,Dorothy Grant Elementary,Fontana Unified,San Bernardino,879,8,14,0,3,5,68,0,10,0,73,3,0,24,12,10,22,30,N/A,96,12,22,35,22,8,2.92\r\n,Earl Warren Elementary,Lake Elsinore Unified,Riverside,879,8,7,1,5,4,61,0,21,0,59,10,0,21,13,11,22,29,N/A,96,12,27,33,19,8,2.83\r\n,La Quinta High,Garden Grove Unified,Orange,879,10,0,0,77,1,18,0,4,0,64,12,0,24,61,8,N/A,N/A,33,59,16,28,19,31,6,2.82\r\n,Covillaud Elementary,Marysville Joint Unified,Yuba,879,8,4,3,5,0,42,1,43,2,76,7,2,24,3,9,22,31,N/A,83,13,25,45,11,6,2.71\r\n,Vena Avenue Elementary,Los Angeles Unified,Los Angeles,879,8,2,0,6,3,81,1,7,0,86,18,0,21,22,12,18,19,N/A,91,27,30,21,17,6,2.45\r\n,Taylor (Edward R.) Elementary,San Francisco Unified,San Francisco,879,8,3,0,60,4,26,1,2,1,82,10,1,53,30,9,22,25,N/A,92,23,43,17,15,3,2.32\r\n,Poinsettia Elementary,Ventura Unified,Ventura,878,8,1,1,5,1,23,1,62,7,19,16,0,6,1,12,23,28,N/A,100,2,8,23,33,35,3.91\r\n,Van Buren Elementary,Placentia-Yorba Linda Unified,Orange,878,8,3,0,12,5,28,0,49,3,21,4,0,6,3,14,22,30,N/A,68,1,7,21,41,30,3.91\r\n,,Spreckels Union Elementary,Monterey,878,B,1,1,5,3,28,0,61,0,12,0,0,4,1,7,23,23,23,90,2,6,27,42,22,3.76\r\n,Carlmont High,Sequoia Union High,San Mateo,878,10,3,0,13,3,20,2,44,3,18,2,1,8,12,9,N/A,N/A,27,94,7,11,15,34,33,3.74\r\n,Kentwood Elementary,Los Angeles Unified,Los Angeles,878,8,34,0,5,1,29,0,31,0,32,23,0,6,4,13,13,8,N/A,93,4,7,25,40,25,3.74\r\n,Vallemar Elementary,Pacifica,San Mateo,878,8,1,1,3,5,24,1,55,11,17,9,0,4,1,6,24,32,N/A,99,2,9,26,39,24,3.73\r\n,Green Valley Elementary,Rescue Union Elementary,El Dorado,878,8,0,0,1,1,18,0,73,6,22,5,0,5,0,11,28,30,N/A,96,3,5,30,40,21,3.71\r\nD,Ararat Charter,Los Angeles Unified,Los Angeles,878,8,0,0,0,1,2,0,98,0,87,0,0,63,8,2,23,26,N/A,98,2,8,36,28,25,3.67\r\n,Penryn Elementary,Loomis Union Elementary,Placer,878,8,3,1,1,0,11,1,84,0,14,9,0,1,4,9,22,24,23,97,0,11,31,39,19,3.66\r\n,Easterbrook Discovery,Moreland Elementary,Santa Clara,878,8,2,0,22,2,26,1,38,8,24,5,0,17,15,10,12,30,27,99,7,12,21,34,27,3.63\r\n,,Clear Creek Elementary,Nevada,878,B,0,1,2,0,8,0,85,5,40,0,0,4,0,6,19,23,N/A,94,2,12,26,45,15,3.57\r\n,Clear Creek Elementary,Clear Creek Elementary,Nevada,878,8,0,1,2,0,8,0,85,5,40,0,0,4,0,6,19,23,N/A,94,2,12,26,45,15,3.57\r\n,Cutten Elementary,Cutten Elementary,Humboldt,878,8,1,3,3,1,12,0,64,14,41,13,0,1,2,11,1,1,N/A,100,3,14,36,22,25,3.53\r\n,,Harmony Union Elementary,Sonoma,878,B,2,2,2,0,17,1,77,1,46,0,0,5,2,8,3,5,2,99,6,8,34,31,21,3.53\r\n,Smiley Elementary,Redlands Unified,San Bernardino,878,8,5,1,12,2,34,0,41,5,50,6,0,12,4,14,27,35,N/A,93,2,16,36,20,26,3.52\r\n,L. R. Green Elementary,Escondido Union,San Diego,878,8,2,0,8,3,32,0,54,0,33,17,0,18,4,14,18,20,N/A,96,9,12,24,32,22,3.48\r\n,,Kings River-Hardwick Union Ele,Kings,878,B,2,0,2,1,31,0,64,0,39,9,0,10,4,7,20,29,N/A,97,5,12,31,34,18,3.48\r\nY,Kings River-Hardwick Elementary,Kings River-Hardwick Union Ele,Kings,878,8,2,0,2,1,31,0,64,0,39,9,0,10,4,7,20,29,N/A,97,5,12,31,34,18,3.48\r\n,Bonita Vista Middle,Sweetwater Union High,San Diego,878,9,5,2,5,9,59,1,19,0,27,28,0,10,16,11,N/A,N/A,27,86,6,13,29,33,19,3.46\r\n,Mountain View Elementary,Claremont Unified,Los Angeles,878,8,9,0,9,1,53,0,24,2,59,0,0,8,15,13,23,28,N/A,83,6,20,28,24,21,3.34\r\n,Yosemite National Park El Portal,Mariposa County Unified,Mariposa,878,8,0,2,0,2,38,0,58,0,40,13,0,27,10,15,20,14,N/A,90,16,14,14,33,23,3.33\r\n,Toler Elementary,San Diego Unified,San Diego,878,8,3,1,4,0,55,0,34,3,62,41,0,38,6,7,21,29,N/A,86,5,27,22,27,19,3.27\r\n,Antelope Creek Elementary,Rocklin Unified,Placer,878,8,2,1,4,2,18,0,61,10,44,3,0,6,3,13,23,28,N/A,96,4,23,35,31,7,3.12\r\n,Millbrook Elementary,Evergreen Elementary,Santa Clara,878,8,5,0,50,7,32,1,4,1,41,2,1,24,27,8,23,30,N/A,100,9,23,30,27,11,3.08\r\n,Roger S. Oraze Elementary,Clovis Unified,Fresno,878,8,3,0,32,5,34,0,23,2,58,1,1,18,10,3,23,33,N/A,96,9,23,27,31,10,3.08\r\n,,Centralia Elementary,Orange,878,B,3,0,15,8,53,1,16,4,56,5,0,29,14,11,26,30,N/A,98,13,22,26,28,12,3.04\r\n,Killian Elementary,Rowland Unified,Los Angeles,878,8,1,0,37,6,45,0,8,2,53,13,0,21,23,9,19,21,N/A,98,9,38,19,25,9,2.88\r\n,Robert L. Stevens Elementary,Wright Elementary,Sonoma,878,8,4,4,13,1,66,0,11,0,78,5,3,51,7,11,19,24,N/A,92,27,36,23,14,0,2.26\r\n,Cesar Chavez Elementary,Davis Joint Unified,Yolo,877,8,3,1,8,4,23,0,62,0,13,11,2,6,3,6,26,26,N/A,98,3,2,6,22,67,4.49\r\n,Sycamore Elementary,Claremont Unified,Los Angeles,877,8,4,0,9,0,19,1,61,6,17,0,0,5,5,16,23,34,N/A,89,0,4,12,16,67,4.46\r\nD,Chico Country Day,Chico Unified,Butte,877,8,1,2,0,0,12,0,78,6,18,0,0,0,0,4,1,1,4,99,1,3,17,37,42,4.17\r\nD,International School of Monterey,Monterey Peninsula Unified,Monterey,877,8,5,0,13,3,19,0,41,18,10,0,0,1,3,4,21,24,22,98,2,6,15,37,41,4.09\r\n,Barron Park Elementary,Palo Alto Unified,Santa Clara,877,8,4,0,21,1,31,1,36,3,34,3,0,37,7,12,20,22,N/A,98,6,13,13,21,47,3.91\r\n,Spreckels Elementary,Spreckels Union Elementary,Monterey,877,8,2,1,6,3,25,0,64,0,12,0,0,5,1,7,23,18,N/A,94,1,7,26,44,22,3.78\r\nY,Calabash Charter Academy,Los Angeles Unified,Los Angeles,877,8,14,1,9,1,15,0,60,0,18,26,0,7,7,14,16,12,N/A,88,2,11,21,41,26,3.78\r\n,,Clay Joint Elementary,Fresno,877,B,1,0,5,0,32,0,59,2,23,0,0,0,0,6,28,30,N/A,98,5,8,27,29,32,3.75\r\n,Clay Elementary,Clay Joint Elementary,Fresno,877,8,1,0,6,0,32,0,60,2,24,0,0,0,1,6,28,30,N/A,98,5,8,26,29,32,3.75\r\n,Thomas Edison Elementary,Burbank Unified,Los Angeles,877,8,1,0,4,6,34,0,52,2,26,2,0,7,3,9,28,34,N/A,94,0,12,28,45,15,3.62\r\nD,Granada Hills Charter High,Los Angeles Unified,Los Angeles,877,10,5,0,18,8,37,0,30,2,44,47,0,3,16,6,N/A,N/A,28,89,4,12,25,38,22,3.62\r\n,San Ramon Elementary,Novato Unified,Marin,877,8,4,0,5,1,25,0,59,5,24,1,0,15,5,19,18,30,N/A,98,8,13,18,33,28,3.6\r\n,Flory Academy of Sciences and Technology,Moorpark Unified,Ventura,877,8,3,0,16,2,36,0,39,4,32,0,1,22,3,10,24,31,N/A,99,13,12,13,29,34,3.59\r\n,Cooper Elementary,Vacaville Unified,Solano,877,8,8,1,4,4,20,2,53,7,27,16,0,4,3,10,26,32,N/A,99,1,13,33,36,16,3.55\r\nY,Marysville Charter Academy for the Arts,Marysville Joint Unified,Yuba,877,10,3,3,3,0,24,1,53,11,44,22,0,2,9,4,N/A,N/A,17,98,5,9,37,28,22,3.53\r\n,Foothill High,Tustin Unified,Orange,877,10,2,0,6,1,38,0,51,2,24,14,0,7,15,8,N/A,N/A,32,93,8,13,24,32,24,3.51\r\n,Rooftop Elementary,San Francisco Unified,San Francisco,877,8,13,1,23,3,24,1,22,5,36,21,0,14,11,15,22,28,21,73,2,28,15,29,25,3.46\r\n,George Sargeant Elementary,Roseville City Elementary,Placer,877,8,3,2,4,1,16,1,75,0,31,1,0,7,3,13,20,27,N/A,98,5,17,33,29,17,3.36\r\n,Junipero Serra Elementary,South San Francisco Unified,San Mateo,877,8,2,0,11,65,13,3,5,0,36,0,0,19,8,9,20,23,N/A,100,2,15,38,35,10,3.36\r\n,,McSwain Union Elementary,Merced,877,B,1,0,4,1,39,0,49,2,40,10,0,14,7,8,24,29,27,97,8,11,32,37,13,3.36\r\n,McSwain Elementary,McSwain Union Elementary,Merced,877,8,1,0,4,1,39,0,49,2,40,10,0,14,7,8,24,29,27,97,8,11,32,37,13,3.36\r\n,Banyan Elementary,Conejo Valley Unified,Ventura,877,8,1,0,4,2,25,0,65,3,29,8,0,17,6,8,19,28,N/A,63,17,9,19,29,24,3.34\r\n,Edison High,Huntington Beach Union High,Orange,877,10,1,10,11,1,12,1,61,0,10,19,0,2,5,12,N/A,N/A,31,0,33,0,0,33,33,3.33\r\n,,Goleta Union Elementary,Santa Barbara,877,B,1,0,7,1,50,0,39,2,43,24,0,27,16,14,20,23,N/A,94,15,15,19,26,25,3.31\r\n,White Oak Elementary,Simi Valley Unified,Ventura,877,8,1,1,9,1,23,0,63,2,23,4,0,7,5,13,22,34,N/A,94,4,20,30,36,10,3.29\r\n,Akers Elementary,Central Union Elementary,Kings,877,8,10,1,4,7,20,2,55,0,43,7,0,3,0,9,20,24,20,97,1,18,43,28,10,3.29\r\n,R. D. White Elementary,Glendale Unified,Los Angeles,877,8,2,0,5,7,20,0,63,2,53,3,0,45,10,9,24,34,N/A,71,4,32,13,41,10,3.21\r\n,Birney Elementary,San Diego Unified,San Diego,877,8,14,0,3,3,45,0,25,8,62,31,0,28,10,11,24,33,N/A,91,8,22,29,29,13,3.17\r\n,Madison Elementary,San Leandro Unified,Alameda,877,8,12,0,36,10,28,1,8,6,42,14,0,24,25,19,24,24,N/A,94,8,17,34,33,8,3.15\r\nY,Whitmore Charter School of Art & Technol,Ceres Unified,Stanislaus,877,8,2,2,5,1,39,1,48,3,53,8,0,12,6,6,22,24,25,99,6,32,35,18,9,2.91\r\n,Vista del Valle Elementary,Claremont Unified,Los Angeles,877,8,11,1,8,0,65,0,13,1,79,0,0,15,11,14,23,31,N/A,83,12,31,23,23,11,2.91\r\n,Orangewood Elementary,West Covina Unified,Los Angeles,877,8,2,0,10,5,76,0,8,0,68,9,0,13,16,7,19,26,N/A,94,6,24,47,21,2,2.89\r\n,Whitmore Elementary,Whitmore Union Elementary,Shasta,877,8,0,0,0,0,14,0,77,9,86,14,0,0,0,0,N/A,2,N/A,91,15,25,45,5,10,2.7\r\n,,Whitmore Union Elementary,Shasta,877,B,0,0,0,0,14,0,77,9,86,14,0,0,0,0,N/A,2,N/A,91,15,25,45,5,10,2.7\r\n,Cadwallader Elementary,Evergreen Elementary,Santa Clara,877,8,3,0,33,11,47,0,5,1,49,1,1,28,21,9,20,31,N/A,99,15,29,39,13,4,2.63\r\n,Iowa Street,Fallbrook Union Elementary,San Diego,877,8,2,0,0,1,8,3,84,1,8,20,0,2,0,3,28,26,19,87,19,43,28,9,2,2.31\r\nD,Endeavor College Preparatory Charter,Los Angeles Unified,Los Angeles,877,8,1,0,1,1,96,0,0,0,86,0,0,29,29,10,N/A,29,29,96,34,26,24,13,3,2.25\r\n,Chapman Elementary,Los Angeles Unified,Los Angeles,877,8,18,0,14,2,62,1,3,0,73,5,0,29,17,13,18,14,N/A,95,26,46,13,14,0,2.16\r\n,Irvine High,Irvine Unified,Orange,877,10,4,0,42,4,14,0,30,5,18,21,0,8,16,9,N/A,N/A,30,0,0,0,0,0,0,\r\n,,Canyon Elementary,Contra Costa,876,B,4,0,2,0,11,0,67,17,13,0,0,2,0,13,8,N/A,N/A,89,0,2,10,44,44,4.29\r\n,Canyon Elementary,Canyon Elementary,Contra Costa,876,8,4,0,2,0,11,0,67,17,13,0,0,2,0,13,8,N/A,N/A,89,0,2,10,44,44,4.29\r\n,Mission Avenue Open Elementary,San Juan Unified,Sacramento,876,8,5,2,3,0,6,0,84,1,19,11,0,2,2,7,30,33,N/A,74,0,4,20,37,39,4.1\r\nD,Urban Discovery Academy Charter,San Diego Unified,San Diego,876,8,9,0,1,1,33,0,48,8,13,10,0,8,2,6,20,16,N/A,83,0,8,16,36,39,4.07\r\n,South High,Torrance Unified,Los Angeles,876,10,3,1,32,3,13,0,45,1,13,16,0,6,13,9,N/A,N/A,31,71,1,8,25,38,28,3.83\r\n,,Brea-Olinda Unified,Orange,876,B,2,0,19,3,33,0,41,2,25,12,0,9,17,9,27,30,30,95,5,10,26,35,24,3.65\r\n,Thousand Oaks Elementary,Berkeley Unified,Alameda,876,8,10,1,8,1,39,1,30,10,40,4,0,27,2,12,19,26,N/A,95,10,11,21,20,38,3.64\r\n,Sequoia Middle,Mt. Diablo Unified,Contra Costa,876,9,3,1,13,5,31,1,46,1,31,17,0,9,17,5,N/A,31,32,83,7,13,22,35,23,3.53\r\n,Lake Forest Elementary,Saddleback Valley Unified,Orange,876,8,2,0,9,4,29,0,52,3,31,8,0,20,5,9,29,34,N/A,97,6,15,24,34,22,3.51\r\n,Boulder Creek Elementary,San Lorenzo Valley Unified,Santa Cruz,876,8,0,1,1,0,11,0,79,8,27,9,0,2,1,12,20,30,N/A,98,1,15,36,30,17,3.48\r\n,Fern Drive Elementary,Fullerton Elementary,Orange,876,8,1,0,20,3,29,0,38,4,23,1,0,17,8,8,31,32,N/A,86,3,12,32,40,12,3.45\r\n,Golden View Elementary,Ocean View,Orange,876,8,1,0,7,2,29,1,55,5,31,1,0,17,4,14,22,29,N/A,98,8,10,31,28,22,3.45\r\n,Riverview Elementary,Kings Canyon Joint Unified,Fresno,876,8,1,0,3,1,64,0,29,2,37,0,1,11,16,6,25,29,24,100,9,14,23,34,20,3.42\r\nY,Pioneer Middle,Pioneer Union Elementary,Kings,876,9,4,1,4,4,37,0,48,2,24,0,1,4,6,5,N/A,29,30,100,4,17,31,32,15,3.38\r\n,Fruitvale Junior High,Fruitvale Elementary,Kern,876,9,3,2,2,3,34,0,50,4,30,0,0,1,7,9,N/A,N/A,29,99,3,15,42,22,19,3.38\r\nY,Sartorette Charter,Cambrian,Santa Clara,876,8,2,1,18,2,31,2,42,1,27,5,0,21,5,14,23,31,N/A,96,7,15,29,32,16,3.35\r\n,Cobb Mountain Elementary,Middletown Unified,Lake,876,8,1,1,0,1,8,0,86,1,47,0,0,0,0,2,20,28,N/A,96,2,21,34,30,12,3.29\r\n,Sandburg Middle,Glendora Unified,Los Angeles,876,9,3,0,5,2,46,0,41,3,29,9,0,3,7,12,N/A,32,32,100,4,19,38,24,15,3.27\r\n,Moreland Middle,Moreland Elementary,Santa Clara,876,9,4,0,20,3,38,1,27,6,38,10,0,18,23,9,N/A,30,29,97,14,17,18,29,21,3.25\r\n,Edison Elementary,Torrance Unified,Los Angeles,876,8,7,0,18,3,37,1,22,9,50,1,0,25,7,14,26,34,N/A,90,9,18,32,23,18,3.24\r\n,Hollister Elementary,Goleta Union Elementary,Santa Barbara,876,8,1,0,4,1,52,0,41,1,38,23,0,22,14,17,21,22,N/A,97,14,18,26,22,20,3.16\r\n,Anthony Spangler Elementary,Milpitas Unified,Santa Clara,876,8,2,0,32,25,30,1,7,3,41,3,0,28,21,10,25,33,N/A,98,8,19,33,32,8,3.15\r\n,Cesar E. Chavez Elementary,Bakersfield City,Kern,876,8,5,2,4,2,62,0,24,0,45,6,1,6,7,12,21,28,N/A,56,4,28,30,23,14,3.15\r\n,El Portal Elementary,Lowell Joint,Los Angeles,876,8,2,0,2,1,60,1,33,0,40,6,0,20,9,9,29,32,N/A,96,14,19,28,24,15,3.08\r\n,,Oak View Union Elementary,San Joaquin,876,B,0,2,3,1,38,1,55,0,48,0,0,16,12,11,16,29,N/A,97,9,23,34,22,12,3.05\r\n,Oak View Elementary,Oak View Union Elementary,San Joaquin,876,8,0,2,3,1,38,1,55,0,48,0,0,16,12,11,16,29,N/A,97,9,23,34,22,12,3.05\r\n,Sutro Elementary,San Francisco Unified,San Francisco,876,8,1,0,81,1,4,0,9,3,68,17,0,40,27,9,19,33,N/A,92,15,27,20,27,11,2.93\r\n,Lincoln Elementary,Yuba City Unified,Sutter,876,8,2,1,36,1,21,1,37,2,71,6,9,28,16,13,21,24,N/A,97,8,28,37,16,11,2.93\r\n,,Bridgeville Elementary,Humboldt,876,B,0,0,4,0,12,0,81,4,100,31,0,0,0,27,,,,92,21,46,17,4,13,2.42\r\n,Bridgeville Elementary,Bridgeville Elementary,Humboldt,876,8,0,0,4,0,12,0,81,4,100,31,0,0,0,27,,,,92,21,46,17,4,13,2.42\r\n,Julia B. Morrison Elementary,Norwalk-La Mirada Unified,Los Angeles,876,8,3,0,2,2,90,0,3,0,77,15,5,27,20,4,28,31,N/A,99,27,37,22,9,5,2.28\r\nD,Ocean Charter,Los Angeles Unified,Los Angeles,875,8,3,0,1,0,23,0,59,11,18,0,0,1,0,16,27,24,N/A,99,1,1,14,36,47,4.29\r\nD,Temecula Preparatory,Temecula Valley Unified,Riverside,875,8,4,0,5,4,29,0,51,6,0,0,0,1,0,5,25,24,21,96,0,2,27,45,26,3.94\r\n,Diamond Bar High,Walnut Valley Unified,Los Angeles,875,10,3,0,65,3,17,1,11,0,9,25,0,7,14,6,N/A,N/A,29,95,1,6,18,46,28,3.92\r\n,Benjamin Franklin Elementary,Riverside Unified,Riverside,875,8,8,0,7,3,31,1,46,0,25,14,0,3,4,14,26,31,N/A,99,1,7,38,25,29,3.73\r\n,Poinsettia Elementary,Carlsbad Unified,San Diego,875,8,3,1,12,1,25,0,55,3,25,23,1,17,3,11,31,33,N/A,98,6,12,22,33,27,3.63\r\n,San Lorenzo Valley Elementary,San Lorenzo Valley Unified,Santa Cruz,875,8,0,1,1,0,13,0,81,3,21,10,0,1,1,10,22,30,N/A,98,1,10,36,36,18,3.59\r\n,Riverview Elementary,Lakeside Union Elementary,San Diego,875,8,2,1,2,0,33,1,60,2,26,8,0,6,2,10,23,27,N/A,99,2,15,30,25,27,3.59\r\n,Benicia Middle,Benicia Unified,Solano,875,8,9,0,5,7,18,1,49,11,19,3,0,1,7,10,N/A,27,28,100,1,12,36,33,18,3.55\r\n,Los Cerritos Elementary,Long Beach Unified,Los Angeles,875,8,21,0,9,10,31,2,15,1,40,7,0,8,8,9,29,35,N/A,57,5,17,24,33,22,3.51\r\n,Eagle Rock Elementary,Los Angeles Unified,Los Angeles,875,8,2,1,10,20,50,0,16,0,56,31,0,15,10,14,16,13,N/A,94,7,15,26,32,20,3.42\r\nY,Frontier Elementary,Pioneer Union Elementary,Kings,875,8,4,1,6,6,40,0,40,2,32,0,1,10,6,10,24,30,N/A,100,4,14,34,37,11,3.39\r\n,Sierramont Middle,Berryessa Union Elementary,Santa Clara,875,8,3,0,61,10,16,1,6,3,31,30,0,14,44,7,N/A,31,31,100,8,14,29,30,19,3.38\r\n,Foothill Elementary,Corona-Norco Unified,Riverside,875,8,7,0,13,2,36,1,41,1,27,5,0,11,6,12,26,27,N/A,99,7,13,35,29,17,3.35\r\n,Amelia Earhart Elementary School of Inte,Desert Sands Unified,Riverside,875,8,1,1,4,3,46,1,42,2,40,4,0,15,5,8,28,30,N/A,97,5,22,26,28,18,3.32\r\n,McKinley Elementary,San Diego Unified,San Diego,875,8,7,0,6,1,55,0,30,0,53,37,0,18,13,12,22,26,N/A,96,11,18,23,27,21,3.28\r\n,Lemon Avenue Elementary,La Mesa-Spring Valley,San Diego,875,8,5,0,2,2,27,1,55,9,34,13,0,5,2,8,28,33,N/A,92,2,21,38,25,14,3.27\r\n,,Kirkwood Elementary,Tehama,875,B,0,0,0,0,24,0,63,13,55,0,1,6,9,4,22,22,N/A,100,12,10,40,19,18,3.21\r\n,Kirkwood Elementary,Kirkwood Elementary,Tehama,875,8,0,0,0,0,24,0,63,13,55,0,1,6,9,4,22,22,N/A,100,12,10,40,19,18,3.21\r\n,San Marino Elementary,Centralia Elementary,Orange,875,8,4,0,13,10,47,1,19,6,54,2,0,23,12,12,28,31,N/A,100,6,22,33,26,12,3.16\r\n,Ellwood Elementary,Goleta Union Elementary,Santa Barbara,875,8,1,1,8,1,57,0,30,2,52,17,0,31,15,12,21,23,N/A,94,12,18,30,26,15,3.14\r\n,Clovis Elementary,Clovis Unified,Fresno,875,8,1,1,6,0,44,0,45,2,57,2,2,7,6,7,24,26,N/A,99,11,25,29,22,13,3.02\r\n,Jonata Elementary,Buellton Union Elementary,Santa Barbara,875,8,0,0,1,0,44,0,47,2,61,11,1,12,23,7,N/A,22,24,53,6,33,30,19,12,2.97\r\n,Mountain View Elementary,Mountain View Elementary,San Bernardino,875,8,2,0,1,1,85,0,9,1,75,0,0,35,5,12,,,,93,11,22,37,21,9,2.95\r\n,Park Elementary,Alhambra Unified,Los Angeles,875,8,1,1,33,4,57,0,3,1,76,1,1,33,13,7,21,36,32,97,11,34,28,19,7,2.78\r\n,Emma W. Shuey Elementary,Rosemead Elementary,Los Angeles,875,8,1,0,62,0,32,0,4,0,0,13,4,35,31,10,26,30,N/A,99,21,52,8,16,3,2.28\r\n,Dairyland Elementary,Alview-Dairyland Union Element,Madera,875,8,0,0,1,0,59,0,40,0,62,3,7,36,18,4,N/A,27,N/A,92,31,30,21,14,3,2.28\r\n,Las Lomas High,Acalanes Union High,Contra Costa,874,10,2,0,12,3,10,0,68,4,8,23,0,6,8,9,N/A,N/A,28,99,2,5,15,36,42,4.11\r\n,Homestead High,Fremont Union High,Santa Clara,874,10,1,0,37,3,17,0,38,4,17,7,0,10,19,8,N/A,N/A,29,100,6,7,13,27,47,4.01\r\n,Cragmont Elementary,Berkeley Unified,Alameda,874,8,21,0,4,0,25,0,39,10,40,8,0,20,3,16,20,18,N/A,96,6,7,18,21,47,3.96\r\n,Asawa (Ruth) San Francisco School of the,San Francisco Unified,San Francisco,874,10,6,0,25,4,14,1,41,3,20,43,0,1,11,9,N/A,N/A,25,66,2,12,13,39,34,3.91\r\n,Irvington High,Fremont Unified,Alameda,874,10,2,1,59,5,11,0,18,1,16,29,0,9,28,8,N/A,N/A,31,99,3,12,16,33,35,3.85\r\n,Meadowbrook Middle,Poway Unified,San Diego,874,8,4,1,17,7,19,1,49,3,24,13,0,11,13,10,N/A,30,34,89,4,8,20,35,33,3.83\r\n,Ralph Emerson Elementary,Burbank Unified,Los Angeles,874,8,2,0,9,2,21,0,65,1,38,2,0,26,9,10,25,28,N/A,91,1,10,27,41,21,3.73\r\n,Magnolia Intermediate,Pleasant Ridge Union Elementar,Nevada,874,8,1,1,0,0,6,0,86,5,28,5,0,0,0,10,N/A,2,1,94,2,14,32,28,24,3.57\r\nY,Price Charter Middle,Cambrian,Santa Clara,874,8,3,1,13,3,27,2,50,0,22,22,0,5,11,8,N/A,29,30,96,7,12,26,37,19,3.5\r\n,Lockhurst Drive Elementary,Los Angeles Unified,Los Angeles,874,8,2,0,10,2,27,0,58,0,25,13,0,9,3,27,13,15,N/A,79,6,15,28,30,21,3.45\r\n,Hamlin Street Elementary,Los Angeles Unified,Los Angeles,874,8,11,2,10,9,38,0,30,0,48,10,0,20,12,16,16,17,N/A,91,7,15,29,33,16,3.36\r\n,Templeton Elementary,Templeton Unified,San Luis Obispo,874,8,0,0,1,0,27,0,69,3,28,0,0,13,0,4,26,N/A,N/A,93,8,14,32,31,15,3.32\r\n,Acacia Elementary,Conejo Valley Unified,Ventura,874,8,2,1,4,4,39,1,45,4,34,7,0,25,10,15,20,26,N/A,92,17,11,23,25,24,3.28\r\n,Antelope Meadows Elementary,Dry Creek Joint Elementary,Placer,874,8,6,1,9,1,17,1,54,11,49,5,0,21,5,8,23,33,N/A,99,3,15,43,30,9,3.26\r\n,David Lubin Elementary,Sacramento City Unified,Sacramento,874,8,13,1,5,1,32,1,42,6,47,23,0,8,3,9,21,28,N/A,75,10,20,28,22,21,3.23\r\n,,Lake Elementary,Glenn,874,B,0,0,4,1,27,0,68,0,44,0,0,12,4,2,17,14,N/A,84,0,18,47,35,0,3.17\r\n,Zamora Elementary,Woodland Joint Unified,Yolo,874,8,1,1,2,0,45,0,49,2,35,11,1,11,6,12,30,26,N/A,93,8,19,37,23,13,3.16\r\n,Mary Ann Sanders Elementary,Sylvan Union Elementary,Stanislaus,874,8,3,0,8,4,42,1,37,3,42,2,0,21,7,13,29,30,N/A,100,8,21,31,30,11,3.15\r\n,Sierra View Elementary,Golden Valley Unified,Madera,874,8,1,1,1,0,31,0,67,0,34,9,0,6,5,5,26,31,N/A,96,5,26,31,28,10,3.13\r\n,Chesterton Elementary,San Diego Unified,San Diego,874,8,10,2,25,3,27,0,26,8,61,36,0,22,13,13,24,31,N/A,97,5,23,36,27,9,3.11\r\n,Baird Middle,Fresno Unified,Fresno,874,8,9,1,3,0,54,1,32,0,55,22,1,5,20,8,N/A,33,30,90,14,19,31,17,20,3.09\r\n,Franklin Elementary,Elk Grove Unified,Sacramento,874,8,10,0,16,9,35,2,19,8,54,3,4,23,10,5,23,24,N/A,96,11,23,28,28,11,3.04\r\n,,Montgomery Elementary,Sonoma,874,B,0,0,0,0,0,0,82,18,32,18,0,0,0,18,,,,32,0,43,14,43,0,3\r\n,Charles H. Kim Elementary,Los Angeles Unified,Los Angeles,874,8,4,0,41,6,46,1,1,0,78,25,0,41,27,6,22,22,N/A,90,17,24,16,34,9,2.95\r\n,North Fork Elementary,Chawanakee Unified,Madera,874,8,0,13,0,0,21,0,60,6,70,1,0,0,1,10,23,20,N/A,93,6,33,35,16,11,2.94\r\n,Anna Hause Elementary,Beaumont Unified,Riverside,874,8,9,0,2,2,47,0,39,0,60,2,0,15,6,9,23,33,N/A,87,6,27,42,21,5,2.91\r\n,Rowland Avenue Elementary,Covina-Valley Unified,Los Angeles,874,8,1,0,8,1,83,0,6,1,72,12,0,18,6,16,22,31,N/A,93,14,27,32,19,8,2.8\r\n,Walt Tyler Elementary,Pioneer Union Elementary,El Dorado,874,8,0,0,0,0,0,0,95,5,53,0,0,0,0,5,14,13,N/A,95,6,39,33,17,6,2.78\r\n,,Tamalpais Union High,Marin,873,B,3,0,5,0,9,0,77,5,9,36,0,1,2,8,N/A,N/A,21,95,1,3,9,35,52,4.35\r\n,Coronado High,Coronado Unified,San Diego,873,10,2,0,3,3,16,0,75,1,4,15,0,1,2,9,N/A,N/A,27,99,0,3,14,34,49,4.3\r\n,Mt. Everest Academy,San Diego Unified,San Diego,873,10,3,0,7,1,17,1,62,10,17,32,0,2,4,6,21,3,16,94,1,6,22,31,41,4.05\r\n,Newport Elementary,Newport-Mesa Unified,Orange,873,8,2,1,3,1,15,1,77,1,21,5,0,9,1,18,22,29,N/A,93,4,6,16,45,29,3.89\r\n,Valhalla Elementary,Mt. Diablo Unified,Contra Costa,873,8,4,0,8,4,17,0,60,6,20,4,0,10,3,20,29,26,N/A,71,2,6,24,39,30,3.88\r\n,West High,Torrance Unified,Los Angeles,873,10,5,1,38,4,17,1,30,3,21,14,0,7,17,7,N/A,N/A,32,86,2,11,22,40,25,3.75\r\n,White Point Elementary,Los Angeles Unified,Los Angeles,873,8,13,0,3,4,32,1,47,0,17,6,0,2,1,11,14,6,N/A,97,1,8,36,35,20,3.64\r\n,,Gold Trail Union Elementary,El Dorado,873,B,1,0,1,1,6,1,89,1,25,12,0,0,0,13,26,29,N/A,97,2,8,36,38,17,3.61\r\n,Scandia Elementary,Travis Unified,Solano,873,8,10,2,3,6,19,2,50,8,32,3,0,1,1,12,27,30,N/A,99,0,6,43,39,12,3.56\r\n,Weathersfield Elementary,Conejo Valley Unified,Ventura,873,8,1,0,7,0,29,0,59,3,29,10,0,16,5,7,20,31,N/A,34,14,11,13,39,24,3.48\r\n,George A. Buljan Middle,Roseville City Elementary,Placer,873,8,5,1,6,5,21,1,62,0,32,9,0,7,7,11,N/A,31,30,96,4,15,32,32,17,3.41\r\n,Culver City Middle,Culver City Unified,Los Angeles,873,8,19,0,11,2,41,0,25,1,42,14,0,7,16,9,N/A,30,30,93,7,15,29,27,22,3.41\r\n,Madrone Elementary,Rincon Valley Union Elementary,Sonoma,873,8,4,2,7,1,25,2,57,2,38,6,0,14,7,9,19,30,N/A,93,11,14,21,32,21,3.37\r\n,,Pioneer Union Elementary,Kings,873,B,4,1,4,4,37,0,47,2,27,0,1,6,5,7,24,29,30,100,4,16,34,33,13,3.35\r\n,Hanna Ranch Elementary,West Contra Costa Unified,Contra Costa,873,8,21,1,24,26,20,0,8,0,29,8,0,21,9,8,22,32,N/A,90,3,23,21,42,11,3.34\r\n,Chaparral Middle,Moorpark Unified,Ventura,873,8,2,0,8,2,41,0,45,1,35,10,1,18,12,11,N/A,27,31,96,12,17,19,29,23,3.34\r\n,Sycamore Elementary,Upland Unified,San Bernardino,873,8,5,0,8,1,51,1,30,4,47,10,0,12,8,15,20,29,N/A,99,2,14,44,28,11,3.33\r\n,Jordan Elementary,Lowell Joint,Los Angeles,873,8,1,0,3,2,70,0,21,3,40,4,0,13,9,10,26,30,N/A,88,5,17,35,31,12,3.29\r\n,Walnut Canyon Elementary,Moorpark Unified,Ventura,873,8,2,0,6,2,47,1,40,2,40,0,0,27,2,11,26,30,N/A,88,14,19,15,28,24,3.28\r\n,Sierra Junior High,Sierra Unified,Fresno,873,8,0,13,2,0,10,0,72,0,44,8,0,2,2,14,N/A,N/A,25,90,3,23,37,23,14,3.22\r\n,Lake Elementary,Lake Elementary,Glenn,873,8,0,0,4,1,28,0,68,0,44,0,0,12,4,1,17,14,N/A,84,0,18,47,35,0,3.17\r\n,Cerro Villa Middle,Orange Unified,Orange,873,8,1,0,10,2,42,0,42,2,34,13,0,11,10,9,N/A,N/A,31,97,14,19,28,23,15,3.06\r\n,Knollwood Elementary,Los Angeles Unified,Los Angeles,873,8,9,2,8,7,54,1,19,0,53,8,0,11,4,10,15,13,N/A,94,8,21,44,19,8,2.98\r\n,Mary Fay Pendleton Elementary,Fallbrook Union Elementary,San Diego,873,8,14,1,1,3,25,1,50,6,27,13,0,2,1,10,28,33,N/A,96,8,27,37,26,2,2.86\r\n,Miramonte Elementary,Clovis Unified,Fresno,873,8,3,1,10,1,50,0,35,2,77,1,1,9,8,8,23,32,N/A,98,9,26,40,19,6,2.86\r\n,Chandler Elementary,Los Angeles Unified,Los Angeles,873,8,9,1,2,4,52,0,32,0,68,12,0,24,11,8,15,18,N/A,96,14,30,24,23,9,2.84\r\n,Cahuenga Elementary,Los Angeles Unified,Los Angeles,873,8,3,0,36,6,54,0,1,0,86,15,0,50,27,12,21,24,N/A,83,26,21,17,27,9,2.72\r\n,Keppel Academy,Keppel Union Elementary,Los Angeles,873,8,6,0,0,0,75,1,16,1,79,5,2,15,24,5,N/A,30,28,65,19,31,31,12,8,2.59\r\n,Monterey Vista Elementary,Garvey Elementary,Los Angeles,873,8,0,0,69,2,27,0,1,0,80,19,0,47,18,5,23,32,N/A,96,19,43,12,17,10,2.55\r\n,Arroyo Seco Museum Science,Los Angeles Unified,Los Angeles,873,8,0,1,1,3,87,0,8,0,84,21,0,17,30,8,18,22,32,90,22,32,26,15,5,2.48\r\n,Topaz Elementary,Placentia-Yorba Linda Unified,Orange,873,8,2,0,1,2,91,0,3,0,93,1,1,55,28,8,28,34,N/A,38,24,34,21,13,8,2.47\r\n,Isleton Elementary,River Delta Joint Unified,Sacramento,873,8,0,0,0,0,72,0,25,3,84,32,10,47,7,14,20,17,N/A,86,27,30,33,9,2,2.31\r\n,Hillside Elementary,San Bernardino City Unified,San Bernardino,873,8,12,2,1,1,68,1,14,2,96,10,0,30,5,9,25,29,N/A,80,24,42,24,7,3,2.23\r\n,Westview High,Poway Unified,San Diego,872,10,2,0,27,8,9,0,51,3,9,19,0,2,13,8,N/A,N/A,36,94,0,3,10,39,48,4.3\r\nD,Valley Charter Elementary,Los Angeles Unified,Los Angeles,872,8,2,0,0,0,34,0,63,0,26,1,0,5,2,8,1,N/A,N/A,99,1,4,21,38,36,4.05\r\n,Highlands Elementary,San Mateo-Foster City,San Mateo,872,8,1,0,22,2,23,2,42,8,19,4,0,19,2,4,26,30,N/A,97,6,7,13,33,42,3.98\r\n,Vista del Lago High,Folsom-Cordova Unified,Sacramento,872,10,2,1,10,2,8,1,76,1,7,20,0,1,4,7,N/A,N/A,35,91,1,5,19,48,27,3.97\r\n,Oak Grove Elementary,Capistrano Unified,Orange,872,8,2,1,10,3,23,0,50,11,16,4,0,9,5,11,22,30,N/A,86,1,9,18,44,29,3.91\r\n,Feinstein (Dianne) Elementary,San Francisco Unified,San Francisco,872,8,5,0,37,5,10,1,33,5,31,15,0,20,9,15,20,24,N/A,91,2,10,16,45,27,3.84\r\n,Twain Elementary,Long Beach Unified,Los Angeles,872,8,11,1,8,3,32,2,38,1,33,6,0,4,5,15,27,31,N/A,91,2,9,24,42,23,3.76\r\n,La Verne Heights Elementary,Bonita Unified,Los Angeles,872,8,2,0,3,1,43,0,44,4,22,11,0,3,0,11,26,26,N/A,95,0,9,31,36,24,3.75\r\n,Orion Alternative,Redwood City Elementary,San Mateo,872,8,2,0,8,2,38,2,46,2,28,5,0,18,12,13,28,27,N/A,98,10,13,14,24,39,3.69\r\n,Dana,San Diego Unified,San Diego,872,8,4,0,1,2,33,0,53,5,39,49,0,8,9,9,N/A,30,N/A,95,5,11,25,31,28,3.68\r\n,Norris Elementary,Norris Elementary,Kern,872,8,1,0,4,6,41,2,41,3,21,0,0,6,8,4,26,28,N/A,84,1,17,29,30,24,3.59\r\n,Joaquin Miller Elementary,Burbank Unified,Los Angeles,872,8,4,0,4,3,18,0,70,1,48,2,0,36,9,7,28,32,N/A,92,1,16,24,40,18,3.59\r\n,Tincher Preparatory,Long Beach Unified,Los Angeles,872,8,18,0,10,2,29,1,37,0,47,12,0,7,10,6,27,32,32,75,3,15,24,36,21,3.56\r\nD,Peabody Charter,Santa Barbara Unified,Santa Barbara,872,8,1,1,3,1,44,0,49,1,37,12,0,32,2,11,21,24,N/A,97,12,13,14,32,29,3.55\r\n,Mountain View Elementary,Los Angeles Unified,Los Angeles,872,8,1,0,5,3,18,0,73,0,54,18,0,17,18,8,16,20,N/A,74,2,14,26,43,15,3.54\r\n,,Temecula Valley Unified,Riverside,872,B,4,1,4,6,31,0,47,6,19,8,0,5,6,12,22,28,30,97,4,12,33,35,16,3.47\r\n,,Lammersville Joint Unified,San Joaquin,872,B,9,1,24,17,18,1,27,2,22,15,0,10,0,10,21,28,28,94,2,17,32,30,18,3.45\r\n,Luiseno,Lake Elsinore Unified,Riverside,872,8,9,0,4,2,35,1,50,0,33,18,0,8,7,13,24,23,26,99,2,14,34,37,13,3.45\r\n,Madera Elementary,Simi Valley Unified,Ventura,872,8,3,0,6,1,24,0,65,2,22,5,0,7,5,13,25,28,N/A,94,3,24,28,30,16,3.32\r\n,Pony Express Elementary,Sacramento City Unified,Sacramento,872,8,16,1,34,2,21,2,17,8,51,47,0,18,10,6,22,32,N/A,75,7,19,30,26,18,3.3\r\n,Harvey Green Elementary,Fremont Unified,Alameda,872,8,4,1,42,6,20,1,20,4,36,4,1,22,26,17,26,24,N/A,95,6,25,23,28,18,3.28\r\n,Rancho San Diego Elementary,Cajon Valley Union,San Diego,872,8,5,0,4,1,17,1,65,2,31,14,0,24,3,14,24,27,N/A,90,5,20,34,29,12,3.24\r\n,Turtle Bay,Redding Elementary,Shasta,872,8,3,1,4,1,9,1,76,5,46,4,0,2,1,7,26,31,30,59,5,18,40,24,14,3.24\r\n,Old Orchard Elementary,Newhall,Los Angeles,872,8,2,0,1,1,52,0,40,4,38,8,0,29,3,17,23,23,N/A,98,17,13,19,32,19,3.22\r\n,,Fullerton Elementary,Orange,872,B,2,0,22,2,48,0,22,2,43,9,0,28,15,10,26,30,29,87,14,19,20,28,19,3.2\r\n,,Santee Elementary,San Diego,872,B,1,1,1,1,25,1,59,9,38,12,0,6,6,11,23,30,27,99,4,23,36,26,11,3.16\r\n,Crown Point Elementary,San Diego Unified,San Diego,872,8,3,1,5,1,59,1,24,7,75,31,0,24,12,10,22,32,N/A,91,13,16,28,28,15,3.16\r\n,Ronald W. Reagan Elementary,Sanger Unified,Fresno,872,8,1,0,8,1,76,0,12,2,71,1,0,16,4,5,24,27,N/A,100,8,14,36,43,0,3.14\r\n,Benjamin Franklin Elementary,Corona-Norco Unified,Riverside,872,8,4,0,6,2,48,1,38,0,35,6,0,13,8,12,27,28,N/A,96,11,17,33,25,13,3.13\r\n,Summerdale Elementary,Berryessa Union Elementary,Santa Clara,872,8,2,1,46,14,27,0,5,5,44,8,0,50,13,9,23,30,N/A,100,10,17,34,28,11,3.11\r\n,Las Flores Elementary,Sierra Sands Unified,Kern,872,8,5,0,5,2,15,1,72,0,47,1,0,5,3,11,31,31,N/A,96,8,22,39,18,13,3.05\r\n,James Monroe Elementary,Desert Sands Unified,Riverside,872,8,2,0,1,3,50,0,43,0,65,2,0,16,4,13,29,31,N/A,99,11,26,34,22,7,2.88\r\n,Palmquist Elementary,Oceanside Unified,San Diego,872,8,4,0,2,1,49,2,41,0,53,15,1,24,10,9,25,28,N/A,77,21,15,33,22,9,2.84\r\n,Cypress School of the Arts,Hesperia Unified,San Bernardino,872,8,3,0,0,1,63,1,31,0,75,8,0,21,5,3,30,32,N/A,92,9,30,38,15,8,2.82\r\n,Excelsior Elementary,Garden Grove Unified,Orange,872,8,1,0,65,1,28,2,4,0,71,1,0,49,32,6,24,31,N/A,6,14,38,19,24,5,2.67\r\nD,El Sol Santa Ana Science and Arts Academ,Santa Ana Unified,Orange,872,8,0,0,0,0,97,0,2,0,74,8,0,58,17,3,24,27,21,83,28,21,25,13,13,2.62\r\n,Paddison Elementary,Little Lake City Elementary,Los Angeles,872,8,3,0,2,3,85,0,5,0,80,17,1,31,5,7,27,31,N/A,98,12,35,34,16,3,2.62\r\nD,Rocketship Mosaic Elementary,Franklin-McKinley Elementary,Santa Clara,872,8,2,1,18,1,74,1,1,0,85,0,0,76,5,4,26,N/A,N/A,89,29,26,21,17,7,2.48\r\n,,Alview-Dairyland Union Element,Madera,872,B,0,0,1,0,62,0,37,0,65,2,7,42,13,4,19,27,N/A,93,32,29,23,13,2,2.25\r\n,Maywood Elementary,Los Angeles Unified,Los Angeles,872,8,1,1,0,0,98,0,0,0,95,7,1,27,33,16,20,22,N/A,92,38,38,16,5,4,2\r\n,Malibu High,Santa Monica-Malibu Unified,Los Angeles,871,10,2,0,2,0,12,0,79,2,12,0,0,4,5,9,N/A,30,26,53,2,4,16,35,43,4.14\r\n,Granite Bay High,Roseville Joint Union High,Placer,871,10,2,1,9,2,8,0,72,7,5,5,0,1,3,4,N/A,N/A,32,99,1,4,15,41,39,4.13\r\n,Glenview Elementary,Oakland Unified,Alameda,871,8,25,0,17,1,20,1,24,9,43,31,0,17,5,5,26,32,N/A,53,0,10,21,30,40,3.99\r\n,Poway High,Poway Unified,San Diego,871,10,2,0,5,4,18,0,67,3,16,11,0,7,8,9,N/A,N/A,35,93,5,8,20,34,33,3.82\r\n,Bay Park Elementary,San Diego Unified,San Diego,871,8,5,0,4,2,30,1,51,9,38,20,0,13,1,12,22,33,N/A,92,3,11,26,40,21,3.66\r\n,Mary Farmar Elementary,Benicia Unified,Solano,871,8,6,0,3,3,20,1,50,17,25,2,0,5,3,8,25,31,N/A,100,2,13,31,28,27,3.65\r\n,,Saddleback Valley Unified,Orange,871,B,2,0,7,3,29,0,54,4,24,13,0,14,6,11,27,32,31,90,7,10,22,35,26,3.63\r\n,Walnut Elementary Education Center,Turlock Unified,Stanislaus,871,8,1,1,7,0,35,0,52,3,28,9,0,14,6,6,21,31,N/A,99,2,17,32,21,28,3.57\r\n,,Placentia-Yorba Linda Unified,Orange,871,B,2,0,12,2,37,0,44,1,32,11,0,12,11,10,24,30,30,67,8,11,22,33,26,3.57\r\n,Parker Whitney Elementary,Rocklin Unified,Placer,871,8,1,0,2,1,16,0,76,3,31,9,0,4,2,12,26,29,N/A,94,5,7,36,35,18,3.53\r\n,Morris Elementary,McKinleyville Union Elementary,Humboldt,871,8,1,12,0,0,19,0,57,10,50,5,0,7,1,6,21,25,N/A,95,1,14,40,21,23,3.51\r\n,De Portola Middle,San Diego Unified,San Diego,871,8,8,1,8,4,32,1,41,5,43,38,0,9,11,13,N/A,29,30,90,6,13,28,32,21,3.5\r\n,,Pleasant Ridge Union Elementar,Nevada,871,B,1,1,0,0,8,0,83,5,31,7,0,1,0,12,21,19,1,95,2,17,35,25,21,3.47\r\n,Ledesma (Rita) Elementary,Oak Grove Elementary,Santa Clara,871,8,3,1,37,8,28,0,20,1,32,28,1,28,14,9,26,33,N/A,98,8,15,19,41,17,3.45\r\n,Palisades Elementary,Capistrano Unified,Orange,871,8,0,0,2,1,31,0,62,3,33,2,0,11,3,11,23,29,N/A,94,5,13,34,28,20,3.45\r\n,River Bluff Elementary,Central Unified,Fresno,871,8,8,0,11,1,44,0,33,1,43,10,0,6,8,6,28,32,N/A,96,4,16,32,32,17,3.43\r\n,Gardner Street Elementary,Los Angeles Unified,Los Angeles,871,8,6,0,5,1,24,0,64,0,56,25,0,33,23,11,21,27,N/A,97,8,16,23,36,17,3.39\r\n,Peter Burnett Elementary,Wiseburn Elementary,Los Angeles,871,8,12,0,2,2,65,1,13,4,52,10,0,24,9,15,28,30,N/A,93,7,17,31,30,16,3.31\r\n,Cobblestone Elementary,Plumas Lake Elementary,Yuba,871,8,4,2,6,2,22,1,57,8,37,12,0,9,6,8,20,27,N/A,94,2,13,47,31,7,3.29\r\n,Endeavour Elementary,Fruitvale Elementary,Kern,871,8,3,1,3,2,33,0,55,2,37,0,0,7,4,6,26,29,N/A,97,3,20,39,24,15,3.27\r\n,Emblem Elementary,Saugus Union,Los Angeles,871,8,3,0,4,3,45,0,44,2,37,5,0,20,3,11,24,26,N/A,100,10,16,31,27,17,3.24\r\n,Sierra Middle,Lincoln Unified,San Joaquin,871,8,7,1,11,5,35,1,39,0,49,15,0,12,9,8,N/A,N/A,27,98,9,17,34,24,16,3.21\r\n,Chet F. Harritt Elementary,Santee Elementary,San Diego,871,8,2,2,1,2,32,0,50,9,44,5,0,7,6,9,24,32,29,100,3,19,41,27,10,3.2\r\n,J. Marion Roynon Elementary,Bonita Unified,Los Angeles,871,8,4,0,1,0,59,0,27,4,54,6,0,9,3,10,25,35,N/A,94,5,19,42,20,14,3.18\r\n,Olive Peirce Middle,Ramona City Unified,San Diego,871,8,2,1,1,0,33,1,61,0,36,0,1,12,12,11,N/A,N/A,35,91,9,19,33,26,13,3.14\r\n,,Sundale Union Elementary,Tulare,871,B,1,0,2,0,35,0,62,0,44,3,2,16,8,2,22,32,N/A,97,15,15,31,20,19,3.12\r\n,Matsuyama Elementary,Sacramento City Unified,Sacramento,871,8,21,1,31,3,22,2,16,6,42,17,0,15,7,12,24,32,N/A,63,10,25,23,29,13,3.1\r\n,Stockdale Elementary,Panama-Buena Vista Union,Kern,871,8,8,1,8,4,29,0,50,0,33,9,0,7,5,17,29,30,N/A,37,5,29,22,41,3,3.07\r\n,,San Marcos Unified,San Diego,871,B,3,1,5,3,46,1,41,1,44,11,4,17,18,15,25,29,26,95,21,15,19,28,17,3.05\r\n,Two Rock Elementary,Two Rock Union,Sonoma,871,8,2,0,2,0,41,0,53,0,53,0,10,26,7,18,15,20,N/A,98,19,15,28,24,15,3.01\r\n,Sequoia Elementary,Sanger Unified,Fresno,871,8,10,1,40,2,37,0,7,3,67,0,2,26,16,6,24,25,N/A,99,13,19,28,41,0,2.97\r\n,Loma Verde Elementary,Novato Unified,Marin,871,8,2,1,5,2,53,0,34,3,51,0,0,41,10,12,19,28,N/A,100,25,21,14,25,14,2.81\r\n,Unsworth Elementary,Downey Unified,Los Angeles,871,8,2,0,3,2,88,0,4,1,69,0,0,28,9,14,23,24,N/A,100,9,39,29,18,5,2.71\r\n,John Marshall Elementary,Garden Grove Unified,Orange,871,8,0,0,40,0,57,0,3,0,73,1,0,62,24,4,27,31,N/A,25,19,31,18,27,4,2.66\r\n,Renaissance Academy,Alum Rock Union Elementary,Santa Clara,871,8,2,0,5,4,84,1,4,0,100,36,3,12,43,10,N/A,32,32,95,30,24,26,16,3,2.39\r\nD,Alliance Environmental Science and Techn,Los Angeles Unified,Los Angeles,871,10,2,0,3,4,88,0,3,0,87,0,0,12,50,5,N/A,N/A,28,100,37,24,21,15,4,2.24\r\n,Patwin Elementary,Davis Joint Unified,Yolo,870,8,4,0,12,1,16,0,61,0,28,8,1,18,4,15,24,28,N/A,88,3,7,9,25,57,4.27\r\n,,Mountain View-Los Altos Union,Santa Clara,870,B,2,0,21,3,23,1,48,2,10,15,0,10,18,11,N/A,N/A,24,98,9,9,11,24,47,3.91\r\n,Malcolm X Elementary,Berkeley Unified,Alameda,870,8,26,0,8,1,11,0,36,17,47,5,0,14,2,17,20,25,N/A,95,7,7,20,28,38,3.84\r\n,,Twin Hills Union Elementary,Sonoma,870,B,1,1,2,0,16,0,80,0,15,1,0,6,1,9,20,22,27,93,2,11,23,33,31,3.8\r\n,Del Oro High,Placer Union High,Placer,870,10,0,1,1,0,10,0,80,6,14,7,0,0,2,7,N/A,N/A,31,92,1,11,29,34,26,3.74\r\n,Vineyard Elementary,Templeton Unified,San Luis Obispo,870,8,1,0,1,0,14,0,78,4,22,4,0,4,0,8,28,30,N/A,98,1,11,31,29,28,3.71\r\n,San Diego International Studies,San Diego Unified,San Diego,870,10,8,0,6,1,48,0,34,3,100,42,0,3,22,3,N/A,N/A,23,94,7,14,19,25,36,3.69\r\n,,Castro Valley Unified,Alameda,870,B,6,0,24,3,23,0,33,10,19,10,0,9,10,9,23,29,29,97,2,13,28,36,22,3.61\r\n,Adolfo Camarillo High,Oxnard Union High,Ventura,870,10,2,1,7,5,38,1,46,2,23,28,0,5,9,10,N/A,N/A,30,94,6,12,27,32,23,3.54\r\nD,Our Community Charter,Los Angeles Unified,Los Angeles,870,8,9,1,3,3,39,1,44,0,10,10,0,6,8,9,22,25,N/A,93,6,11,33,26,24,3.51\r\n,Wells Middle,Dublin Unified,Alameda,870,8,6,0,10,6,26,1,47,5,15,15,0,5,8,7,N/A,28,28,97,2,14,31,37,15,3.49\r\n,Bret Harte Elementary,Burbank Unified,Los Angeles,870,8,1,0,3,3,47,0,42,3,34,1,0,13,4,9,29,32,N/A,93,1,14,35,36,14,3.49\r\n,Franklin Elementary,Franklin Elementary,Sutter,870,8,0,0,0,0,28,0,1,0,34,5,0,5,5,6,22,26,28,97,6,15,30,25,24,3.46\r\n,Avery Middle,Vallecito Union,Calaveras,870,8,0,2,1,0,11,0,82,3,41,13,0,1,2,11,N/A,23,23,94,0,9,49,29,13,3.45\r\n,Vineyard Junior High,Alta Loma Elementary,San Bernardino,870,8,13,1,7,2,33,0,44,0,32,31,0,3,5,10,N/A,N/A,29,94,3,10,42,28,16,3.44\r\n,Pomerado Elementary,Poway Unified,San Diego,870,8,2,0,8,6,33,0,48,3,37,5,0,31,4,15,25,31,N/A,92,7,12,30,31,20,3.44\r\n,Martinez Junior High,Martinez Unified,Contra Costa,870,8,3,0,4,2,28,0,54,9,30,14,0,6,8,9,N/A,29,28,94,5,15,30,35,15,3.4\r\n,Manzanita Elementary,Redding Elementary,Shasta,870,8,2,5,2,1,8,0,78,5,41,7,0,1,1,6,25,31,N/A,61,4,17,33,27,19,3.4\r\n,Mason Elementary,San Diego Unified,San Diego,870,8,8,0,15,24,27,2,16,8,56,35,0,27,15,7,23,33,N/A,91,3,16,36,34,11,3.34\r\n,Norman L. Sullivan Middle,Bonsall Union Elementary,San Diego,870,8,2,4,3,2,36,0,50,3,37,10,6,18,11,14,N/A,24,23,55,12,14,30,27,17,3.24\r\n,Willow Glen Elementary,San Jose Unified,Santa Clara,870,8,2,1,4,1,51,0,37,2,49,21,0,29,4,10,27,27,N/A,90,16,15,22,25,22,3.23\r\n,Oakview Community Elementary,San Juan Unified,Sacramento,870,8,2,0,1,0,17,1,78,1,45,5,0,9,3,15,27,30,N/A,91,5,15,40,34,6,3.2\r\n,Belleview Elementary,Belleview Elementary,Tuolumne,870,8,4,1,1,0,12,1,78,1,60,6,0,0,0,9,15,17,12,99,0,24,45,21,11,3.18\r\n,Sierra Vista Elementary,Upland Unified,San Bernardino,870,8,8,2,6,1,48,1,33,0,52,13,0,14,7,10,27,30,N/A,97,5,17,44,25,10,3.17\r\n,El Crystal Elementary,San Bruno Park Elementary,San Mateo,870,8,2,1,11,6,40,6,27,6,31,4,0,29,1,6,29,27,N/A,97,5,29,22,38,7,3.14\r\n,Sundale Elementary,Sundale Union Elementary,Tulare,870,8,1,0,2,0,35,0,62,0,44,3,2,16,8,2,22,32,N/A,97,15,15,31,20,19,3.13\r\nY,Binkley Elementary Charter,Rincon Valley Union Elementary,Sonoma,870,8,4,0,1,0,34,1,54,6,55,6,0,14,10,9,21,28,N/A,87,10,17,37,29,7,3.07\r\n,Sequoia Elementary,Westminster Elementary,Orange,870,8,1,0,26,2,42,2,23,4,52,17,0,36,12,16,22,26,N/A,95,10,24,32,25,8,2.97\r\nD,Watts Learning Center,Los Angeles Unified,Los Angeles,870,8,87,0,0,0,13,0,0,0,94,0,0,3,8,7,22,30,N/A,91,6,25,42,20,6,2.95\r\n,Franklin Elementary,Bakersfield City,Kern,870,8,13,0,3,1,58,0,22,2,83,1,2,8,9,10,21,24,N/A,71,15,43,25,13,5,2.51\r\n,La Colima Elementary,East Whittier City Elementary,Los Angeles,870,8,1,0,0,1,89,0,9,1,55,4,0,23,5,19,22,24,N/A,98,25,45,25,5,1,2.12\r\n,Emerson Elementary,Berkeley Unified,Alameda,869,8,25,0,8,0,22,0,29,14,56,4,0,13,7,13,20,24,N/A,96,5,13,23,23,37,3.75\r\nY,Sherman Oaks Elementary Charter,Los Angeles Unified,Los Angeles,869,8,13,0,7,3,22,1,54,0,26,14,0,8,8,16,16,17,N/A,89,3,10,24,39,24,3.7\r\n,,Richmond Elementary,Lassen,869,B,0,3,0,1,10,1,86,0,11,23,0,0,0,9,23,24,N/A,98,0,13,27,38,22,3.69\r\n,Richmond Elementary,Richmond Elementary,Lassen,869,8,0,3,0,1,10,1,86,0,11,23,0,0,0,9,23,24,N/A,98,0,13,27,38,22,3.69\r\n,Esperanza High,Placentia-Yorba Linda Unified,Orange,869,9,2,0,13,1,23,0,58,0,17,11,0,2,6,7,N/A,N/A,31,80,3,11,28,35,23,3.66\r\n,American Elementary,Rosedale Union Elementary,Kern,869,8,4,1,7,3,28,0,57,1,23,9,0,6,8,6,24,28,N/A,96,4,10,29,32,25,3.65\r\n,Blue Oak Elementary,Buckeye Union Elementary,El Dorado,869,8,0,1,2,1,12,0,77,6,19,6,0,3,1,16,23,29,N/A,99,1,10,34,34,20,3.63\r\n,,Pleasant Valley,Ventura,869,B,3,0,8,5,30,0,51,2,26,11,0,8,4,11,22,28,29,93,4,11,26,35,24,3.63\r\n,,Torrance Unified,Los Angeles,869,B,4,0,30,4,25,1,28,5,28,10,0,12,13,11,29,32,32,86,3,13,26,35,22,3.61\r\n,Joseph Sims Elementary,Elk Grove Unified,Sacramento,869,8,12,1,21,6,22,2,27,10,30,8,0,8,10,9,24,28,N/A,95,2,14,27,35,22,3.61\r\n,Gold Trail,Gold Trail Union Elementary,El Dorado,869,8,0,1,1,1,6,1,89,1,24,17,0,0,0,11,N/A,29,N/A,98,2,7,37,37,17,3.6\r\n,Fine Arts Academy,Atascadero Unified,San Luis Obispo,869,8,1,1,2,1,23,0,70,1,31,9,0,1,1,3,N/A,31,27,100,1,13,34,31,21,3.58\r\n,Pershing Middle,San Diego Unified,San Diego,869,8,9,0,6,1,32,1,45,6,43,36,0,5,14,13,N/A,30,32,93,5,14,25,33,22,3.54\r\n,Arroyo Verde Elementary,Redlands Unified,San Bernardino,869,8,8,0,6,4,39,0,36,7,42,7,0,7,2,13,22,25,N/A,94,3,9,40,29,19,3.53\r\n,Mayflower Elementary,Monrovia Unified,Los Angeles,869,8,6,0,4,3,43,0,39,4,41,12,0,11,5,6,28,32,N/A,100,6,15,25,32,23,3.52\r\n,Wanda Hirsch Elementary,Tracy Joint Unified,San Joaquin,869,8,5,0,14,4,38,2,36,1,27,0,0,21,6,7,31,29,N/A,94,4,16,28,39,13,3.39\r\n,Discovery School of the Arts,Victor Elementary,San Bernardino,869,8,13,0,2,1,56,0,21,5,58,2,0,10,1,6,32,33,N/A,81,4,21,39,23,13,3.19\r\n,,Chula Vista Elementary,San Diego,869,B,4,1,3,11,67,1,13,1,43,18,0,35,5,11,21,27,N/A,79,10,23,25,28,15,3.16\r\n,Coleman Elementary,San Rafael City Elementary,Marin,869,8,0,0,4,2,37,0,54,1,45,9,0,30,8,8,23,28,N/A,100,18,18,15,33,17,3.15\r\n,John Glenn Middle School of Internationa,Desert Sands Unified,Riverside,869,8,2,1,3,2,54,0,38,1,45,16,1,6,13,10,N/A,34,36,98,8,21,32,25,13,3.14\r\n,Baldwin Hills Elementary,Los Angeles Unified,Los Angeles,869,8,80,0,1,1,17,0,1,0,72,14,0,4,4,9,11,7,N/A,64,7,23,38,25,7,3.01\r\n,Two Hundred Thirty-Second Place,Los Angeles Unified,Los Angeles,869,8,6,0,3,30,54,4,3,0,61,6,0,16,7,16,13,9,N/A,91,12,21,31,28,7,2.96\r\n,William B. Bristow Middle,Brentwood Union Elementary,Contra Costa,869,8,7,1,3,4,25,1,56,2,22,9,0,8,5,11,N/A,33,30,94,5,24,46,21,5,2.95\r\n,Sonoma Elementary,Modesto City Elementary,Stanislaus,869,8,3,1,4,2,36,1,48,5,54,37,0,7,3,15,22,28,N/A,100,8,33,35,14,11,2.88\r\nD,Aspire Capitol Heights Academy,Sacramento City Unified,Sacramento,869,8,51,0,3,0,28,1,7,4,84,0,0,9,6,10,23,27,N/A,92,10,24,45,11,9,2.85\r\n,Willard Elementary,Pasadena Unified,Los Angeles,869,8,6,0,5,2,68,0,14,4,68,14,0,28,12,17,25,32,N/A,99,27,23,19,15,16,2.68\r\n,Fairgrove Academy,Hacienda la Puente Unified,Los Angeles,869,8,1,0,2,1,92,0,3,0,83,6,5,14,13,7,20,33,32,68,17,39,26,15,2,2.46\r\n,Colonel Joseph C. Rodriguez PREP Academy,San Bernardino City Unified,San Bernardino,869,8,11,1,4,1,69,1,10,1,100,18,0,20,34,3,N/A,33,34,75,32,32,20,9,8,2.28\r\n,Tamiscal High (Alternative),Tamalpais Union High,Marin,868,9,3,0,6,0,0,0,85,4,1,18,0,0,0,1,N/A,N/A,9,94,0,0,6,34,59,4.53\r\n,Philip J. Reilly Elementary/Special Educ,Capistrano Unified,Orange,868,8,1,0,6,0,11,0,74,8,10,1,0,5,2,21,22,29,N/A,97,1,4,17,45,33,4.05\r\n,Burlingame High,San Mateo Union High,San Mateo,868,9,1,0,13,3,21,1,53,8,9,19,0,9,14,8,N/A,N/A,27,97,4,9,15,37,35,3.9\r\n,Cerritos High,ABC Unified,Los Angeles,868,9,6,0,50,14,17,1,8,3,25,21,1,5,24,6,N/A,N/A,30,96,2,8,21,45,24,3.81\r\n,Longfellow K-8,San Diego Unified,San Diego,868,8,21,0,0,0,46,0,27,5,51,40,0,3,2,6,24,24,22,96,1,9,27,34,28,3.8\r\n,Monarch Grove Elementary,San Luis Coastal Unified,San Luis Obispo,868,8,1,0,3,3,17,0,72,4,37,0,1,13,0,10,22,25,N/A,97,3,13,24,37,23,3.64\r\nY,Paradise Charter Middle,Paradise Unified,Butte,868,8,0,0,1,0,8,0,78,13,23,14,0,0,0,4,N/A,25,25,100,0,5,48,27,20,3.62\r\n,Mills High,San Mateo Union High,San Mateo,868,9,1,0,53,7,15,2,15,8,16,18,0,10,28,9,N/A,N/A,28,96,3,19,17,35,26,3.61\r\n,Whitney High,Rocklin Unified,Placer,868,9,1,1,7,3,13,1,69,5,23,10,0,1,5,7,N/A,N/A,30,93,2,9,35,35,20,3.61\r\n,Northlake Hills Elementary,Castaic Union Elementary,Los Angeles,868,8,3,0,4,3,38,0,48,5,33,6,0,16,1,9,20,27,N/A,88,1,19,18,46,17,3.6\r\n,,Dry Creek Joint Elementary,Placer,868,B,4,0,8,3,16,0,61,6,34,7,0,14,7,11,23,29,29,98,2,12,35,34,16,3.49\r\n,Ponderosa Elementary,Santa Clara Unified,Santa Clara,868,8,2,1,35,2,31,1,24,3,33,12,3,38,16,17,25,26,N/A,96,9,19,17,30,26,3.46\r\n,,Franklin Elementary,Sutter,868,B,0,0,0,0,28,0,2,0,34,5,0,5,5,7,22,26,28,96,6,15,30,25,24,3.46\r\n,Junipero Serra Elementary,Ventura Unified,Ventura,868,8,1,1,2,1,40,0,52,4,38,12,0,6,0,7,25,26,N/A,100,4,13,35,30,18,3.44\r\n,Armstrong Elementary,Pomona Unified,Los Angeles,868,8,8,0,8,5,57,0,15,5,37,8,0,10,6,9,26,29,N/A,95,1,18,35,30,17,3.43\r\n,Rosedell Elementary,Saugus Union,Los Angeles,868,8,1,0,3,3,31,0,60,2,20,6,0,5,2,10,25,30,N/A,100,2,16,33,35,13,3.41\r\n,Mountain Meadows Elementary,Moorpark Unified,Ventura,868,8,1,0,3,1,43,0,47,4,38,0,1,23,4,15,24,29,N/A,96,11,17,19,26,26,3.41\r\n,Hermosa Drive Elementary,Fullerton Elementary,Orange,868,8,1,0,12,1,41,0,37,6,38,18,0,26,4,16,24,28,N/A,94,15,13,17,29,27,3.4\r\n,Rancho Las Positas Elementary,Livermore Valley Joint Unified,Alameda,868,8,2,1,3,3,30,1,55,6,27,7,1,10,2,19,24,26,N/A,98,4,14,35,34,12,3.37\r\n,Etiwanda Intermediate,Etiwanda Elementary,San Bernardino,868,8,13,0,9,5,43,1,24,4,31,17,0,4,7,11,N/A,30,30,93,3,13,42,30,11,3.34\r\n,,Fruitvale Elementary,Kern,868,B,4,1,3,2,34,0,53,3,35,0,0,4,5,10,25,28,29,98,2,17,40,25,15,3.34\r\nY,Pioneer Elementary,Pioneer Union Elementary,Kings,868,8,5,2,4,2,35,0,49,2,28,0,2,8,3,6,25,29,N/A,100,4,16,38,32,10,3.28\r\n,,Tustin Unified,Orange,868,B,2,0,16,2,45,0,31,2,41,13,0,23,15,8,24,31,32,94,16,16,18,27,22,3.25\r\n,,Hughes-Elizabeth Lakes Union E,Los Angeles,868,B,1,0,0,0,19,0,75,2,31,4,0,4,0,7,21,25,31,92,3,18,41,28,9,3.22\r\n,Hughes-Elizabeth Lakes,Hughes-Elizabeth Lakes Union E,Los Angeles,868,8,1,0,0,0,19,0,75,2,31,4,0,4,0,7,21,25,31,92,3,18,41,28,9,3.22\r\n,,Ocean View,Orange,868,B,1,0,13,1,35,1,44,4,35,9,0,19,13,11,23,27,28,96,15,14,24,28,18,3.2\r\n,Sutter Middle,Sacramento City Unified,Sacramento,868,8,11,1,18,1,31,1,30,7,45,41,0,4,14,7,N/A,N/A,30,89,12,24,27,23,14,3.05\r\n,Vinci Park Elementary,Berryessa Union Elementary,Santa Clara,868,8,3,0,46,13,24,1,5,7,48,6,0,47,15,7,24,31,N/A,100,12,17,36,26,9,3.05\r\n,Pleasant Valley Middle,Gold Oak Union Elementary,El Dorado,868,8,5,0,0,0,8,0,86,1,40,17,0,1,0,8,N/A,17,21,94,4,30,31,25,9,3.04\r\nD,Redwood Academy of Ukiah,Ukiah Unified,Mendocino,868,9,0,2,2,4,23,2,61,4,41,0,4,3,19,3,N/A,N/A,20,95,14,15,41,20,10,2.97\r\n,Ladera Vista Junior High,Fullerton Elementary,Orange,868,8,2,0,9,2,52,0,31,1,45,13,0,14,21,12,N/A,N/A,30,79,15,23,25,23,14,2.97\r\nD,Aspire Summit Charter Academy,Ceres Unified,Stanislaus,868,8,6,0,9,0,56,1,26,2,57,0,0,14,16,7,23,30,N/A,96,4,28,42,17,9,2.97\r\n,Garfield Elementary,Alhambra Unified,Los Angeles,868,8,3,0,38,2,49,0,5,2,68,4,0,32,16,9,22,31,32,97,13,28,27,23,10,2.89\r\n,James K. Polk Elementary,Central Unified,Fresno,868,8,11,1,18,2,52,0,14,1,72,4,1,7,13,6,31,34,N/A,95,9,32,32,19,8,2.86\r\n,Parkview Elementary,Garden Grove Unified,Orange,868,8,1,0,23,2,60,1,13,0,65,2,0,37,26,17,25,26,N/A,11,18,28,10,44,0,2.79\r\n,Hope Special Education Center,Anaheim Union High,Orange,868,C,5,1,12,3,50,1,29,0,69,0,0,46,1,100,N/A,N/A,12,7,29,43,0,14,14,2.43\r\n,Rio Vista Elementary,El Monte City Elementary,Los Angeles,868,8,0,0,36,1,60,0,3,0,84,9,2,38,19,14,22,24,N/A,100,23,43,14,21,0,2.34\r\n,Albert Baxter Elementary,Bellflower Unified,Los Angeles,868,8,5,1,4,4,82,0,2,2,84,18,0,29,22,7,30,31,N/A,98,25,34,28,9,3,2.31\r\n,Muscatel Middle,Rosemead Elementary,Los Angeles,868,8,1,0,54,2,41,0,2,0,0,0,4,12,48,11,,,,93,33,51,3,10,2,1.98\r\nD,Oakland Charter Academy,Oakland Unified,Alameda,868,8,1,0,6,2,90,0,0,0,90,0,0,45,44,3,N/A,5,N/A,100,96,4,0,0,0,1.04\r\nD,Equitas Academy Charter,Los Angeles Unified,Los Angeles,868,8,7,1,2,0,91,0,0,0,100,0,0,36,40,8,21,N/A,N/A,0,0,0,0,0,0,\r\n,Calabasas High,Las Virgenes Unified,Los Angeles,867,9,4,1,6,1,6,0,81,1,5,24,0,2,5,9,N/A,N/A,30,93,1,5,12,40,41,4.15\r\n,Beverly Hills High,Beverly Hills Unified,Los Angeles,867,9,5,0,13,1,7,0,73,0,10,12,0,5,8,10,N/A,N/A,25,95,1,7,14,43,36,4.06\r\n,Mountain View High,Mountain View-Los Altos Union,Santa Clara,867,9,2,0,21,4,18,1,52,2,9,17,0,12,14,10,N/A,N/A,26,99,7,7,12,28,46,3.99\r\n,Carmel High,Carmel Unified,Monterey,867,9,0,1,2,0,16,0,71,7,13,11,0,2,5,9,N/A,N/A,23,97,5,7,18,30,40,3.95\r\n,Laguna Middle,San Luis Coastal Unified,San Luis Obispo,867,8,1,1,3,1,26,0,63,5,33,0,0,13,5,11,N/A,N/A,23,96,9,9,17,28,37,3.77\r\nD,Explorer Elementary,San Diego Unified,San Diego,867,8,3,0,7,5,27,1,53,3,15,0,0,9,3,9,22,24,N/A,85,2,14,6,65,13,3.74\r\n,Hurley Elementary,Visalia Unified,Tulare,867,8,1,1,7,1,42,0,45,2,30,19,1,8,4,13,26,30,N/A,99,3,10,26,35,26,3.7\r\nD,Magnolia Science Academy San Diego,San Diego Unified,San Diego,867,8,7,0,2,2,27,2,52,8,30,0,0,5,7,9,N/A,21,25,89,1,9,37,31,22,3.64\r\n,Andrew Carnegie Middle,San Juan Unified,Sacramento,867,8,3,2,3,1,13,1,76,1,32,16,0,2,6,10,N/A,32,28,66,2,16,19,44,19,3.63\r\n,Cabrillo Middle,Ventura Unified,Ventura,867,8,1,1,3,0,34,0,55,4,37,31,0,7,7,8,N/A,28,29,100,9,11,28,26,26,3.49\r\n,Henry K-8,Long Beach Unified,Los Angeles,867,8,9,0,1,1,62,1,21,0,48,0,1,18,19,10,29,30,30,85,11,17,18,24,31,3.46\r\n,,Bonita Unified,Los Angeles,867,B,4,0,5,2,45,0,37,4,32,13,0,5,3,10,25,31,29,93,3,13,36,30,17,3.45\r\n,Paulding Middle,Lucia Mar Unified,San Luis Obispo,867,8,1,1,2,2,25,0,68,2,36,17,0,5,5,7,N/A,N/A,27,90,6,16,30,32,16,3.36\r\n,Ponderosa Elementary,South San Francisco Unified,San Mateo,867,8,2,0,10,17,51,3,17,0,29,0,1,17,5,22,20,30,N/A,100,5,13,37,34,11,3.33\r\n,Santa Susana High,Simi Valley Unified,Ventura,867,9,1,1,8,2,22,0,64,1,23,16,0,1,11,13,N/A,N/A,28,91,6,21,32,28,15,3.25\r\n,Southshore Elementary,Menifee Union Elementary,Riverside,867,8,8,0,3,7,35,1,46,0,32,9,0,11,5,7,26,27,N/A,80,4,16,43,31,6,3.18\r\n,Lake Arrowhead Elementary,Rim of the World Unified,San Bernardino,867,8,1,0,0,0,33,0,61,4,57,9,0,15,1,13,24,32,N/A,91,5,18,42,24,11,3.17\r\n,Diane S. Leichman Special Education Cent,Los Angeles Unified,Los Angeles,867,C,4,0,7,9,56,0,25,0,75,0,0,46,0,100,N/A,N/A,10,75,9,28,26,19,19,3.09\r\nY,Ronald W. Reagan Elementary,Kingsburg Elementary Charter,Fresno,867,8,0,0,3,1,60,0,32,1,59,0,0,12,8,8,N/A,34,N/A,95,12,25,32,18,13,2.96\r\n,Sundance Elementary,Beaumont Unified,Riverside,867,8,7,1,4,4,46,0,38,0,62,3,0,17,9,8,25,34,N/A,83,9,22,39,24,5,2.94\r\n,Agnes J. Johnson  Elementary,Southern Humboldt Joint Unifie,Humboldt,867,8,6,3,3,3,8,0,78,0,64,0,0,3,0,0,8,8,N/A,97,0,37,37,26,0,2.89\r\n,Laurel Creek Elementary,Fairfield-Suisun Unified,Solano,867,8,23,2,5,11,32,4,22,1,61,3,0,18,4,9,30,30,N/A,98,6,30,37,23,4,2.88\r\n,Holly Oak Elementary,Evergreen Elementary,Santa Clara,867,8,3,1,37,13,39,1,5,1,49,3,1,31,19,9,22,30,N/A,99,18,36,28,15,3,2.5\r\nD,Community Charter Middle,Los Angeles Unified,Los Angeles,867,8,4,1,0,1,93,0,2,0,81,9,0,7,49,7,N/A,30,28,96,32,24,28,10,6,2.33\r\n,Captain Cooper Elementary,Carmel Unified,Monterey,867,8,0,0,0,0,64,0,31,6,61,11,0,58,0,6,16,20,N/A,97,49,11,20,14,6,2.17\r\n,Mildred B. Janson Elementary,Rosemead Elementary,Los Angeles,867,8,1,0,60,2,34,0,2,0,0,7,2,38,25,7,26,31,N/A,93,27,54,3,13,3,2.1\r\n,Tamalpais High,Tamalpais Union High,Marin,866,9,5,0,8,0,10,1,72,3,9,45,0,2,2,7,N/A,N/A,21,95,1,3,10,32,54,4.35\r\nD,Stone Bridge,Napa Valley Unified,Napa,866,8,2,1,2,2,7,0,87,0,0,0,0,1,1,6,22,28,N/A,97,1,1,21,33,44,4.18\r\n,Scotts Valley High,Scotts Valley Unified,Santa Cruz,866,9,0,0,2,0,14,0,77,7,12,0,0,1,3,6,N/A,N/A,29,99,1,5,17,39,37,4.07\r\n,Barcelona Hills Elementary,Capistrano Unified,Orange,866,8,1,0,4,1,31,0,56,8,22,2,0,15,5,9,23,31,N/A,95,0,10,23,35,32,3.9\r\nD,High Tech Middle Media Arts,San Diego Unified,San Diego,866,8,8,1,2,5,44,1,32,8,40,0,0,2,12,12,N/A,27,N/A,66,5,6,24,26,39,3.88\r\nD,Albert Einstein Academy Middle,San Diego Unified,San Diego,866,8,10,1,2,3,42,1,40,0,37,0,0,9,13,9,N/A,28,30,91,4,12,29,31,24,3.58\r\n,,Cutten Elementary,Humboldt,866,B,2,3,3,1,11,0,64,15,42,10,0,1,2,12,1,1,N/A,99,3,13,35,24,24,3.53\r\n,El Rincon Elementary,Culver City Unified,Los Angeles,866,8,36,1,4,4,32,0,20,1,43,6,0,11,8,13,22,26,N/A,94,4,10,37,30,20,3.53\r\n,Sisson,Mt. Shasta Union Elementary,Siskiyou,866,8,1,1,2,0,15,1,75,5,35,14,0,3,3,6,N/A,25,22,96,2,12,43,21,23,3.52\r\n,,Glendora Unified,Los Angeles,866,B,2,0,5,2,38,0,49,4,21,10,0,5,4,13,24,31,31,99,3,15,31,31,20,3.51\r\n,Olive Grove Elementary,Dry Creek Joint Elementary,Placer,866,8,4,1,15,1,16,0,55,8,36,4,0,31,5,14,23,29,N/A,99,1,15,35,34,16,3.5\r\n,Ralph Dunlap Elementary,Orcutt Union Elementary,Santa Barbara,866,8,0,1,2,1,29,1,60,4,30,2,1,5,1,8,27,28,N/A,96,3,14,37,26,20,3.45\r\n,Mesa Verde Middle,Moorpark Unified,Ventura,866,8,2,0,5,1,37,0,53,2,32,8,0,13,10,15,N/A,31,31,97,11,16,22,30,22,3.36\r\n,Taylorsville Elementary,Plumas Unified,Plumas,866,8,0,16,0,0,0,0,81,3,38,11,0,0,0,0,,,,100,0,14,54,22,11,3.3\r\n,San Miguel Elementary,Mark West Union Elementary,Sonoma,866,8,3,3,3,1,26,0,58,5,38,9,0,11,9,11,21,26,N/A,92,8,18,31,27,16,3.25\r\n,John F. Kennedy High,Corona-Norco Unified,Riverside,866,9,9,0,8,5,34,1,42,1,25,11,0,1,11,1,N/A,N/A,29,98,10,19,32,24,16,3.17\r\n,Los Coches Creek Middle,Cajon Valley Union,San Diego,866,8,2,0,1,1,29,1,61,3,36,15,0,6,9,15,N/A,28,30,95,5,25,36,23,11,3.1\r\n,Los Robles Academy,Hacienda la Puente Unified,Los Angeles,866,8,0,1,5,1,84,1,7,1,66,7,0,15,6,7,20,31,N/A,76,8,23,30,30,9,3.09\r\n,Robert Frost Middle,Los Angeles Unified,Los Angeles,866,8,7,1,7,4,56,0,24,1,58,31,0,5,17,12,N/A,32,33,80,12,22,30,27,9,3\r\n,Kingsbury Elementary,Redlands Unified,San Bernardino,866,8,7,0,2,2,59,1,26,2,72,5,0,16,5,13,22,33,N/A,92,11,20,43,12,13,2.96\r\n,,Richfield Elementary,Tehama,866,B,4,1,0,0,28,0,28,0,54,14,1,16,0,6,22,27,N/A,96,9,26,44,11,10,2.87\r\n,Richfield Elementary,Richfield Elementary,Tehama,866,8,4,1,0,0,28,0,28,0,54,14,1,16,0,6,22,27,N/A,96,9,26,44,11,10,2.87\r\n,,Evergreen Union,Tehama,866,B,1,3,1,0,10,1,82,2,54,0,0,2,0,10,20,25,29,99,5,37,38,16,4,2.78\r\n,Edna Hill Middle,Brentwood Union Elementary,Contra Costa,866,8,7,1,2,2,38,0,48,0,40,5,1,16,8,12,N/A,33,29,95,15,27,36,17,5,2.71\r\n,\"Shirakawa (George, Sr.) Elementary\",Franklin-McKinley Elementary,Santa Clara,866,8,2,0,51,5,37,0,3,2,72,13,0,39,35,6,22,31,N/A,99,18,33,25,18,6,2.61\r\nD,Celerity Palmati Charter,Los Angeles Unified,Los Angeles,866,8,5,0,0,0,86,0,5,1,89,0,0,41,20,9,21,26,N/A,78,30,38,17,10,5,2.22\r\n,Sparks Elementary,Hacienda la Puente Unified,Los Angeles,866,8,0,0,2,1,95,0,1,1,96,12,2,34,16,6,19,34,N/A,60,35,35,18,9,3,2.09\r\nY,Da Vinci Charter Academy,Davis Joint Unified,Yolo,865,9,2,0,6,1,10,0,81,0,8,25,0,1,3,8,N/A,N/A,28,99,1,3,5,16,76,4.63\r\n,Del Norte High,Poway Unified,San Diego,865,9,3,0,22,6,10,0,55,3,8,15,0,3,10,6,N/A,N/A,36,95,2,3,12,41,42,4.2\r\nY,Sunridge Charter,Twin Hills Union Elementary,Sonoma,865,8,0,1,1,1,9,0,87,0,0,0,0,0,0,2,21,23,N/A,92,2,13,19,25,41,3.91\r\n,Chester W. Nimitz Elementary,Cupertino Union,Santa Clara,865,8,4,0,41,3,20,0,31,1,26,0,0,36,27,5,21,29,N/A,95,2,12,19,31,37,3.89\r\n,Pacific Grove High,Pacific Grove Unified,Monterey,865,9,2,1,11,0,14,0,66,3,16,10,0,3,9,8,N/A,N/A,22,76,3,8,25,24,40,3.88\r\n,Paul Ecke-Central Elementary,Encinitas Union Elementary,San Diego,865,8,1,1,3,1,27,1,64,1,27,1,1,19,3,16,21,31,N/A,96,8,8,14,30,40,3.85\r\n,Mission Viejo High,Saddleback Valley Unified,Orange,865,9,2,0,6,2,23,1,63,2,16,20,0,5,8,7,N/A,N/A,32,91,6,7,23,34,29,3.74\r\n,Cambridge Heights Elementary,San Juan Unified,Sacramento,865,8,5,2,6,2,10,0,74,0,30,6,0,4,2,9,30,29,N/A,76,2,8,27,40,23,3.73\r\n,James L. Bunker Elementary,Newark Unified,Alameda,865,8,12,1,29,8,27,1,21,1,27,4,0,14,16,8,28,30,N/A,96,4,9,23,46,18,3.64\r\nY,Riverside Drive Charter Elementary,Los Angeles Unified,Los Angeles,865,8,10,1,7,2,24,0,56,0,32,16,0,12,7,19,14,14,N/A,91,4,15,26,29,26,3.57\r\n,Glenoaks Elementary,Glendale Unified,Los Angeles,865,8,2,1,9,11,17,0,59,1,31,12,0,20,14,13,22,36,N/A,69,4,17,19,44,16,3.51\r\n,Bonita High,Bonita Unified,Los Angeles,865,9,3,0,5,1,43,0,41,5,23,16,0,3,4,8,N/A,N/A,31,91,4,12,34,32,18,3.48\r\n,Wrightwood Elementary,Snowline Joint Unified,San Bernardino,865,8,2,0,1,0,12,0,75,0,29,2,0,1,0,8,27,28,N/A,99,1,18,38,19,24,3.47\r\n,New Brighton Middle,Soquel Union Elementary,Santa Cruz,865,8,2,1,2,2,31,0,58,4,2,0,0,8,8,10,N/A,25,28,97,7,13,29,31,20,3.44\r\n,Thomas Paine Elementary,Garden Grove Unified,Orange,865,8,0,0,51,1,39,1,7,0,60,0,0,46,24,7,24,31,N/A,21,4,23,5,62,5,3.42\r\n,Andrew N. Christensen Middle,Livermore Valley Joint Unified,Alameda,865,8,2,0,5,2,29,0,54,6,21,21,1,6,9,15,N/A,25,25,99,7,14,29,34,16,3.37\r\n,Elk Grove Elementary,Elk Grove Unified,Sacramento,865,8,10,0,15,6,22,0,37,9,35,5,0,11,10,13,24,26,N/A,96,4,19,30,32,16,3.36\r\n,Daniel N. Buchanan Elementary,Murrieta Valley Unified,Riverside,865,8,4,0,4,3,38,0,43,8,40,9,0,5,5,16,24,29,N/A,98,5,14,36,32,13,3.35\r\n,,Arcata Elementary,Humboldt,865,B,2,5,4,1,9,0,69,5,53,10,0,3,2,18,18,18,20,80,10,20,18,30,22,3.34\r\n,Wangenheim Middle,San Diego Unified,San Diego,865,8,7,0,17,28,24,1,15,8,52,28,0,11,26,12,N/A,25,25,90,3,18,34,32,12,3.31\r\n,Merton E. Hill Elementary,Garden Grove Unified,Orange,865,8,0,0,66,1,27,1,5,1,62,0,0,52,20,21,24,31,N/A,11,3,22,22,47,6,3.31\r\n,Reidy Creek Elementary,Escondido Union,San Diego,865,8,3,0,4,4,33,1,56,0,34,15,0,18,3,14,23,29,N/A,83,8,16,31,29,16,3.3\r\n,Mission Valley Elementary,Tulare City,Tulare,865,8,3,0,3,2,55,1,34,1,47,12,2,13,9,5,22,33,N/A,91,7,18,38,24,13,3.19\r\n,Ronald Reagan Elementary,Lake Elsinore Unified,Riverside,865,8,7,1,5,5,38,1,43,0,46,8,0,11,6,13,24,28,N/A,98,7,17,40,24,11,3.15\r\n,Callie Kirkpatrick Elementary,Menifee Union Elementary,Riverside,865,8,6,1,4,4,35,1,48,0,38,7,0,6,3,11,27,27,N/A,76,3,16,55,18,7,3.09\r\n,Camino Real Elementary,Jurupa Unified,Riverside,865,8,4,1,3,1,55,1,34,0,48,13,0,14,6,8,24,31,N/A,99,7,26,36,11,19,3.09\r\n,J. Haley Durham Elementary,Fremont Unified,Alameda,865,8,9,0,20,11,35,1,16,5,53,1,0,29,14,9,28,30,N/A,94,11,25,30,26,8,2.95\r\n,La Mesa Middle,La Mesa-Spring Valley,San Diego,865,8,16,0,5,3,40,1,30,2,54,15,0,8,13,9,N/A,N/A,31,89,8,26,38,18,9,2.93\r\n,Donald Graham Elementary,Lake Elsinore Unified,Riverside,865,8,4,1,1,3,52,1,38,0,58,10,0,17,9,18,21,31,N/A,100,11,30,35,18,6,2.79\r\n,Aliso Elementary,Carpinteria Unified,Santa Barbara,865,8,1,0,2,0,78,0,18,0,76,7,7,53,8,11,22,28,N/A,44,18,24,33,13,13,2.79\r\n,Evergreen Middle,Evergreen Union,Tehama,865,8,1,3,1,0,10,0,84,1,52,0,0,2,0,9,N/A,25,29,100,4,40,38,14,5,2.77\r\n,Bracher Elementary,Santa Clara Unified,Santa Clara,865,8,3,0,15,14,48,3,13,4,64,5,3,45,12,16,25,25,N/A,86,14,47,15,20,5,2.56\r\nD,KIPP Bayview Academy,San Francisco Unified,San Francisco,865,8,65,2,4,1,18,7,0,2,81,13,0,6,7,8,N/A,27,24,50,5,57,26,10,2,2.47\r\n,Davis Senior High,Davis Joint Unified,Yolo,864,9,3,0,18,1,17,1,57,0,18,33,1,7,10,8,N/A,N/A,30,92,2,5,10,25,57,4.3\r\n,Nicasio,Nicasio,Marin,864,8,0,0,3,0,25,0,72,0,0,0,0,19,6,9,13,N/A,N/A,19,0,17,0,33,50,4.17\r\n,La Mesa Elementary,Monterey Peninsula Unified,Monterey,864,8,5,0,14,4,21,0,50,5,23,5,0,26,3,12,25,24,N/A,100,5,7,10,22,56,4.17\r\n,Maria Carrillo High,Santa Rosa City Schools,Sonoma,864,9,3,1,7,1,16,1,65,4,13,27,0,2,7,9,N/A,N/A,25,98,5,9,21,37,29,3.75\r\nD,Mandarin Language Academy,Lakeside Union Elementary,San Diego,864,8,0,7,4,4,32,0,50,4,29,7,0,7,0,0,24,22,N/A,96,0,11,33,33,22,3.67\r\nD,Ivy Academia,Los Angeles Unified,Los Angeles,864,8,8,1,6,6,29,0,33,5,12,0,0,6,9,9,21,25,23,97,4,14,24,39,20,3.57\r\n,Harry Dewey Fundamental Elementary,San Juan Unified,Sacramento,864,8,2,1,3,1,12,0,81,0,30,7,0,4,4,15,25,29,N/A,87,2,11,37,33,18,3.53\r\n,Fern Elementary,Torrance Unified,Los Angeles,864,8,3,1,17,6,37,1,25,8,36,4,0,21,5,15,30,34,N/A,91,4,12,31,30,22,3.53\r\nD,Sol Aureus College Preparatory,Sacramento City Unified,Sacramento,864,8,47,0,14,1,22,1,6,7,78,0,0,24,4,13,,,,30,10,20,13,25,33,3.5\r\n,Joan MacQueen Middle,Alpine Union Elementary,San Diego,864,8,1,3,1,1,21,0,69,3,24,10,0,2,4,12,N/A,31,26,96,4,13,40,21,22,3.44\r\n,Cottage Hill Elementary,Pleasant Ridge Union Elementar,Nevada,864,8,1,1,0,0,11,0,78,6,36,9,0,1,0,12,22,26,N/A,96,2,15,42,21,20,3.44\r\n,Buena Vista Elementary,Lompoc Unified,Santa Barbara,864,8,3,0,1,1,31,0,56,7,32,26,0,6,4,8,21,25,N/A,91,4,19,34,25,18,3.32\r\n,Pacifica High,Garden Grove Unified,Orange,864,9,2,1,19,3,25,1,49,0,25,13,0,8,21,8,N/A,N/A,30,80,4,24,21,40,11,3.31\r\n,Gaspar De Portola Middle,Los Angeles Unified,Los Angeles,864,8,7,0,10,2,35,0,44,0,57,40,0,8,20,11,N/A,33,32,81,10,18,25,28,19,3.28\r\n,Hillview Middle,Westside Union Elementary,Los Angeles,864,8,14,0,4,4,37,0,39,1,36,16,0,3,9,13,N/A,7,28,82,3,19,40,24,14,3.26\r\n,Boulder Creek Elementary,Enterprise Elementary,Shasta,864,8,2,3,3,0,13,0,65,2,52,11,0,3,2,9,27,28,27,95,2,22,39,24,12,3.22\r\n,,Belleview Elementary,Tuolumne,864,B,4,1,1,0,12,1,78,1,60,6,0,0,0,10,15,11,7,99,0,25,44,21,10,3.17\r\n,Sonora Elementary,Sonora Elementary,Tuolumne,864,8,0,1,2,1,13,1,74,5,42,16,0,0,0,12,21,24,25,92,6,23,34,24,14,3.16\r\n,Laneview Elementary,Berryessa Union Elementary,Santa Clara,864,8,1,1,40,13,30,1,7,5,37,3,0,42,13,13,22,26,N/A,99,7,20,36,25,12,3.14\r\n,Bernal Intermediate,Oak Grove Elementary,Santa Clara,864,8,7,1,21,5,39,1,24,1,35,36,0,11,25,11,N/A,N/A,27,95,7,25,27,31,11,3.13\r\n,Alamo Elementary,Vacaville Unified,Solano,864,8,4,0,3,0,25,1,64,3,38,9,0,6,3,10,30,26,N/A,98,7,24,33,28,9,3.08\r\n,Hoover Middle,Long Beach Unified,Los Angeles,864,8,26,0,10,6,42,4,10,1,61,12,0,11,19,10,N/A,30,33,91,8,33,23,29,7,2.95\r\n,,Fort Ross Elementary,Sonoma,864,B,0,0,0,0,29,0,67,0,57,10,0,10,14,19,2,N/A,N/A,67,7,29,36,29,0,2.86\r\n,Fort Ross Elementary,Fort Ross Elementary,Sonoma,864,8,0,0,0,0,29,0,67,0,57,10,0,10,14,19,2,N/A,N/A,67,7,29,36,29,0,2.86\r\n,Mark Keppel High,Alhambra Unified,Los Angeles,864,9,0,0,71,2,22,0,2,3,59,18,1,23,35,5,N/A,N/A,33,100,20,25,18,27,11,2.84\r\n,Ramona Elementary,Alhambra Unified,Los Angeles,864,8,0,0,59,2,35,0,2,1,71,3,2,46,19,7,20,33,34,95,14,35,23,20,8,2.73\r\n,Vista View Middle,Ocean View,Orange,864,8,1,0,26,1,44,0,26,1,53,4,0,20,39,9,N/A,22,25,96,25,25,24,19,7,2.59\r\n,Juniper Elementary,Hesperia Unified,San Bernardino,864,8,6,0,0,1,75,1,15,1,80,4,0,37,7,4,30,30,N/A,89,26,31,30,10,3,2.33\r\n,Huntington Beach High,Huntington Beach Union High,Orange,864,9,1,8,8,1,15,0,60,1,14,16,0,3,7,6,N/A,N/A,30,0,100,0,0,0,0,1\r\n,Northgate High,Mt. Diablo Unified,Contra Costa,863,9,2,1,15,5,10,1,64,1,8,29,0,3,9,7,N/A,N/A,30,78,1,4,10,43,43,4.24\r\n,Agoura High,Las Virgenes Unified,Los Angeles,863,9,1,0,6,1,8,0,82,0,7,26,0,2,6,12,N/A,N/A,30,95,1,5,16,42,35,4.05\r\n,,San Pasqual Union Elementary,San Diego,863,B,2,0,3,2,23,0,65,4,20,13,0,10,10,8,21,28,N/A,96,6,4,15,38,37,3.96\r\n,San Pasqual Union Elementary,San Pasqual Union Elementary,San Diego,863,8,2,0,3,2,23,0,65,4,20,13,0,10,10,8,21,28,N/A,96,6,4,15,38,37,3.96\r\n,Folsom High,Folsom-Cordova Unified,Sacramento,863,9,4,0,14,2,11,0,66,2,14,18,0,2,7,9,N/A,N/A,34,94,1,6,21,42,30,3.93\r\n,Dana Hills High,Capistrano Unified,Orange,863,9,1,1,3,2,24,0,64,6,22,17,0,6,12,8,N/A,N/A,31,58,4,9,19,38,31,3.82\r\n,Main Street Elementary,Soquel Union Elementary,Santa Cruz,863,8,1,0,3,1,21,0,67,7,1,0,0,9,1,12,23,27,N/A,98,4,7,21,41,27,3.81\r\n,McKinley Elementary,San Francisco Unified,San Francisco,863,8,19,1,7,3,15,1,37,10,37,11,0,12,5,13,21,18,N/A,83,6,13,17,35,30,3.7\r\n,Sunnyside Elementary,Chula Vista Elementary,San Diego,863,8,5,1,2,4,59,0,29,1,31,23,0,23,3,19,20,27,N/A,89,3,18,21,28,30,3.63\r\n,McKinley Elementary,Santa Monica-Malibu Unified,Los Angeles,863,8,10,0,10,1,37,0,33,8,43,4,0,22,4,11,22,23,N/A,88,5,10,31,28,27,3.61\r\n,Mission Hill Middle,Santa Cruz City High,Santa Cruz,863,8,1,1,1,1,33,0,57,5,33,32,3,6,14,12,N/A,29,30,95,8,12,23,29,29,3.58\r\n,Sunnyvale Middle,Sunnyvale,Santa Clara,863,8,2,0,28,5,32,1,30,2,36,13,0,15,26,10,N/A,27,28,99,10,15,15,29,31,3.55\r\n,Arroyo Seco Junior High,William S. Hart Union High,Los Angeles,863,8,2,0,3,4,31,0,54,6,13,10,0,5,9,10,N/A,N/A,29,97,2,13,36,31,18,3.49\r\n,Charles J. Carver Elementary,ABC Unified,Los Angeles,863,8,13,0,22,13,38,0,11,3,43,18,3,18,7,9,27,28,N/A,94,4,12,32,34,17,3.48\r\n,Old Adobe Elementary,Old Adobe Union,Sonoma,863,8,3,2,4,1,21,0,68,0,33,5,1,19,0,17,21,20,N/A,85,6,15,31,34,15,3.38\r\n,Skyline Elementary,South San Francisco Unified,San Mateo,863,8,4,0,11,63,11,5,6,0,36,2,0,23,7,9,24,30,N/A,100,2,14,40,35,9,3.35\r\n,West Heritage Elementary,Etiwanda Elementary,San Bernardino,863,8,12,0,5,5,60,0,14,4,45,5,0,13,3,22,25,32,N/A,99,4,15,44,25,11,3.24\r\n,North Ridge Elementary,Moreno Valley Unified,Riverside,863,8,16,1,4,5,43,2,25,3,53,15,1,12,6,14,27,31,N/A,95,4,15,41,31,8,3.24\r\n,Barbara Benson Elementary,Tustin Unified,Orange,863,8,3,0,5,2,51,1,35,2,50,3,0,29,6,18,21,28,N/A,94,9,17,35,29,10,3.14\r\n,Heritage Intermediate,Etiwanda Elementary,San Bernardino,863,8,17,0,5,5,53,0,14,5,36,13,0,3,8,14,N/A,27,28,97,5,23,38,24,10,3.12\r\n,Loma Vista Elementary,Brentwood Union Elementary,Contra Costa,863,8,6,0,6,4,21,1,57,3,14,5,0,9,4,15,26,32,N/A,94,3,20,44,29,4,3.1\r\n,San Marcos High,San Marcos Unified,San Diego,863,9,3,0,4,3,44,1,43,1,37,42,6,11,23,10,N/A,N/A,29,98,20,14,19,29,18,3.1\r\n,Fred Ekstrand Elementary,Bonita Unified,Los Angeles,863,8,6,1,4,3,52,1,27,2,59,4,0,11,3,13,25,30,N/A,97,7,22,40,18,13,3.08\r\n,Columbia Elementary,Columbia Union,Tuolumne,863,8,2,1,1,0,9,0,83,2,54,2,0,0,0,10,19,27,29,94,3,27,43,16,12,3.07\r\n,Robert Louis Stevenson Intermediate,Saint Helena Unified,Napa,863,8,0,0,0,0,49,0,50,0,34,0,11,14,27,10,N/A,18,23,95,21,15,21,25,19,3.06\r\n,Barranca Elementary,Covina-Valley Unified,Los Angeles,863,8,3,0,5,3,73,0,15,1,65,11,0,9,7,9,22,28,N/A,97,6,26,36,23,8,3.01\r\n,Siskiyou County Special Education,Siskiyou County Office of Educ,Siskiyou,863,C,4,19,6,0,12,0,59,0,71,0,0,3,0,100,7,9,N/A,91,8,24,43,13,13,2.98\r\n,Clifton Middle,Monrovia Unified,Los Angeles,863,8,9,1,2,3,53,0,31,1,48,29,0,4,19,11,N/A,28,29,100,11,28,28,21,12,2.96\r\n,Arboga Elementary,Marysville Joint Unified,Yuba,863,8,4,1,9,0,28,1,44,12,61,13,1,19,7,6,24,33,N/A,91,8,25,42,20,5,2.89\r\n,Granada Elementary,Alhambra Unified,Los Angeles,863,8,1,0,24,1,68,0,5,1,71,3,1,30,11,12,21,21,32,98,14,32,21,22,11,2.83\r\n,Joseph M. Simas,Hanford Elementary,Kings,863,8,6,0,2,4,59,0,28,1,52,0,5,17,8,11,22,26,N/A,96,8,32,39,13,8,2.82\r\n,Van Allen Elementary,Escalon Unified,San Joaquin,863,8,1,0,2,0,41,0,53,1,40,1,4,25,2,6,21,23,N/A,97,14,22,40,17,7,2.81\r\n,May Ranch Elementary,Val Verde Unified,Riverside,863,8,11,1,2,3,74,0,6,1,82,12,0,36,8,7,29,28,N/A,92,20,35,27,14,3,2.46\r\n,Douglas MacArthur Fundamental Intermedia,Santa Ana Unified,Orange,863,8,1,0,9,0,87,0,2,1,75,26,0,16,44,7,N/A,36,35,97,24,27,34,11,4,2.44\r\n,,Seiad Elementary,Siskiyou,863,B,0,0,0,0,21,0,63,17,88,0,0,0,0,8,,,,96,0,70,26,4,0,2.35\r\n,Seiad Elementary,Seiad Elementary,Siskiyou,863,8,0,0,0,0,21,0,63,17,88,0,0,0,0,8,,,,96,0,70,26,4,0,2.35\r\n,Warner Middle,Westminster Elementary,Orange,863,8,1,0,55,0,40,1,3,0,82,19,0,42,41,8,N/A,28,28,90,25,40,18,14,2,2.28\r\n,Sierra Vista Elementary,Los Angeles Unified,Los Angeles,863,8,2,1,5,0,89,0,3,0,100,9,0,19,22,15,17,17,N/A,87,30,27,29,12,2,2.28\r\nD,Celerity Cardinal Charter,Los Angeles Unified,Los Angeles,863,8,0,0,0,0,100,0,0,0,99,0,0,29,31,7,21,31,N/A,83,23,42,23,11,2,2.27\r\n,Alview Elementary,Alview-Dairyland Union Element,Madera,863,8,0,0,1,0,69,0,28,0,76,0,8,58,0,1,19,N/A,N/A,96,32,28,28,11,0,2.18\r\n,Martin Van Buren Elementary,Desert Sands Unified,Riverside,863,8,0,0,0,0,99,0,1,0,94,1,14,59,22,13,27,32,N/A,99,59,26,10,4,2,1.63\r\n,Buchanan High,Clovis Unified,Fresno,862,9,3,1,12,2,22,0,59,2,27,7,0,3,6,5,N/A,N/A,29,98,3,11,23,35,28,3.74\r\n,Foulks Ranch Elementary,Elk Grove Unified,Sacramento,862,8,11,1,8,3,26,1,40,12,29,1,0,7,5,8,24,25,N/A,97,1,15,29,32,23,3.62\r\n,Woodside Elementary,Mt. Diablo Unified,Contra Costa,862,8,6,1,11,6,27,3,41,5,38,4,0,21,9,14,28,23,N/A,76,3,17,23,35,22,3.56\r\n,Timber Point Elementary,Byron Union Elementary,Contra Costa,862,8,6,1,6,2,14,1,70,1,20,6,0,1,1,5,27,31,N/A,96,0,14,36,31,20,3.55\r\nY,Rincon Valley Charter,Rincon Valley Union Elementary,Sonoma,862,8,4,0,4,1,24,1,62,2,29,17,0,5,10,13,N/A,N/A,28,93,3,12,32,34,19,3.53\r\n,Olita Elementary,Lowell Joint,Los Angeles,862,8,2,0,3,1,60,1,32,2,37,5,0,8,6,12,30,30,N/A,96,1,14,41,28,16,3.43\r\n,Sierra Lakes Elementary,Fontana Unified,San Bernardino,862,8,18,0,10,8,49,0,14,0,48,7,0,13,11,10,26,27,N/A,93,3,16,32,35,13,3.4\r\n,Summit Intermediate,Etiwanda Elementary,San Bernardino,862,8,11,0,5,5,49,0,26,4,25,15,0,3,6,14,N/A,30,28,95,2,15,40,31,12,3.35\r\n,Linwood E. Howe Elementary,Culver City Unified,Los Angeles,862,8,8,0,6,1,46,2,32,4,46,4,0,21,6,15,22,28,N/A,90,6,19,30,28,18,3.33\r\n,Casimir Middle,Torrance Unified,Los Angeles,862,8,6,0,37,3,33,1,11,8,37,12,0,8,17,8,N/A,31,33,96,3,21,33,27,16,3.31\r\n,Del Sur Senior Elementary,Westside Union Elementary,Los Angeles,862,8,10,1,2,1,36,1,45,2,43,8,1,7,6,9,29,27,24,89,5,18,36,25,16,3.29\r\n,Grover Heights Elementary,Lucia Mar Unified,San Luis Obispo,862,8,2,1,2,2,35,0,54,5,53,6,0,9,5,14,27,24,N/A,96,6,16,38,24,16,3.28\r\nD,Forest Ranch Charter,Chico Unified,Butte,862,8,1,1,0,0,1,0,79,15,42,14,0,0,0,10,22,24,N/A,100,0,14,54,24,8,3.27\r\nY,Capri Elementary,Campbell Union,Santa Clara,862,8,6,1,14,3,38,0,33,2,43,11,0,27,10,7,22,31,N/A,97,7,18,30,31,14,3.26\r\n,,Glendale Unified,Los Angeles,862,B,1,0,12,7,23,0,55,1,47,14,0,25,30,9,23,32,29,84,7,29,14,33,17,3.23\r\n,La Pluma Elementary,Norwalk-La Mirada Unified,Los Angeles,862,8,4,0,3,5,63,0,22,2,44,15,1,9,6,13,25,32,N/A,99,4,26,29,25,15,3.21\r\n,Santa Clarita Elementary,Saugus Union,Los Angeles,862,8,3,0,4,4,31,0,57,1,26,8,0,9,4,16,23,30,N/A,100,6,19,38,26,11,3.18\r\n,Las Animas Elementary,Gilroy Unified,Santa Clara,862,8,1,0,4,2,62,0,27,4,47,5,2,35,8,13,25,35,N/A,95,15,17,21,32,15,3.13\r\n,Bancroft Middle,Long Beach Unified,Los Angeles,862,8,15,0,8,4,41,2,28,0,50,21,0,7,18,12,N/A,33,32,91,8,20,30,32,9,3.13\r\n,Township Elementary,Simi Valley Unified,Ventura,862,8,1,0,6,0,22,0,67,4,26,6,0,4,5,17,23,32,N/A,94,4,26,34,25,11,3.11\r\n,Foothill Knolls Elementary,Upland Unified,San Bernardino,862,8,8,1,5,2,53,1,30,0,48,11,0,15,4,17,22,24,N/A,96,6,20,41,24,9,3.11\r\n,Luther Burbank Elementary,ABC Unified,Los Angeles,862,8,8,0,13,13,57,0,7,1,65,13,4,29,12,8,26,30,N/A,90,12,14,39,25,10,3.06\r\n,Brier Elementary,Fremont Unified,Alameda,862,8,7,1,28,7,31,0,20,3,56,2,2,38,22,8,28,29,N/A,96,15,26,20,24,15,2.98\r\n,Knolls Elementary,Simi Valley Unified,Ventura,862,8,0,0,4,0,20,0,74,1,37,5,0,6,8,10,26,28,N/A,93,8,28,34,20,9,2.94\r\n,Quail Valley Middle,Snowline Joint Unified,San Bernardino,862,8,10,0,2,1,48,1,35,1,63,8,0,11,11,12,N/A,30,30,90,8,28,35,20,8,2.91\r\n,Mistletoe Elementary,Enterprise Elementary,Shasta,862,8,2,3,5,0,16,0,65,1,68,13,0,7,4,7,26,30,27,95,8,29,39,15,8,2.87\r\n,Fall River Elementary,Fall River Joint Unified,Shasta,862,8,1,9,0,0,29,0,60,2,57,2,14,12,7,20,17,25,N/A,86,10,34,29,14,12,2.84\r\n,Cesar Chavez Academy,Corona-Norco Unified,Riverside,862,8,3,0,4,2,59,1,31,1,52,8,0,19,15,9,23,31,18,94,15,25,35,16,8,2.77\r\n,Garfield Elementary,San Francisco Unified,San Francisco,862,8,6,0,68,3,6,3,8,2,78,6,0,47,16,14,17,33,N/A,72,16,33,23,23,5,2.66\r\n,Mulberry Elementary,East Whittier City Elementary,Los Angeles,862,8,0,0,1,1,88,1,8,1,58,4,0,27,4,14,23,29,N/A,98,15,31,33,17,4,2.65\r\n,Middle College High,West Contra Costa Unified,Contra Costa,862,9,24,0,13,10,42,0,9,1,49,29,0,0,42,1,N/A,N/A,23,76,16,43,22,16,3,2.46\r\n,Newcastle Elementary,Los Angeles Unified,Los Angeles,862,8,3,0,2,2,84,0,8,0,83,5,0,37,19,15,21,15,N/A,96,29,33,22,11,5,2.29\r\n,,Santa Monica-Malibu Unified,Los Angeles,861,B,6,0,6,1,30,0,50,5,26,2,0,8,8,11,23,28,28,72,5,9,19,31,36,3.85\r\n,Del Cerro Elementary,Saddleback Valley Unified,Orange,861,8,1,0,11,2,25,0,56,5,25,18,0,17,4,16,29,31,N/A,88,4,8,24,31,32,3.79\r\n,Ponderosa High,El Dorado Union High,El Dorado,861,9,1,0,2,1,10,0,82,2,16,6,0,1,2,8,N/A,N/A,31,93,1,9,32,38,20,3.67\r\n,Mar Vista Elementary,Pajaro Valley Unified,Santa Cruz,861,8,3,2,5,3,24,0,63,0,24,23,1,8,2,13,27,26,N/A,99,3,9,32,36,21,3.62\r\n,Camerado Springs Middle,Buckeye Union Elementary,El Dorado,861,8,0,1,2,1,14,0,76,6,24,8,0,1,1,12,N/A,28,28,98,2,12,35,30,21,3.56\r\n,Shorecliffs Middle,Capistrano Unified,Orange,861,8,0,0,1,0,26,0,68,3,32,11,0,10,8,9,N/A,28,29,76,9,11,26,30,24,3.51\r\n,,Alpine Union Elementary,San Diego,861,B,1,4,1,1,19,0,72,2,24,7,0,3,2,12,26,31,24,93,3,12,41,24,20,3.47\r\n,Don Callejon,Santa Clara Unified,Santa Clara,861,8,7,0,37,8,30,0,13,4,40,14,1,26,27,12,29,31,27,96,11,18,17,29,26,3.41\r\n,Jasper Elementary,Alta Loma Elementary,San Bernardino,861,8,5,0,4,0,45,2,44,0,31,7,0,5,5,16,20,28,N/A,97,3,12,46,22,17,3.37\r\n,Calahan Street Elementary,Los Angeles Unified,Los Angeles,861,8,12,1,13,6,47,2,20,0,54,22,0,12,7,12,16,15,N/A,88,4,16,31,37,12,3.36\r\n,Diamond Point Elementary,Pomona Unified,Los Angeles,861,8,9,0,16,6,47,0,19,2,39,13,0,8,8,12,24,30,N/A,64,3,19,34,30,14,3.34\r\n,Evergreen Valley High,East Side Union High,Santa Clara,861,9,2,0,57,9,21,0,8,2,17,4,1,7,36,6,N/A,N/A,31,94,8,21,23,29,20,3.33\r\n,Loyola Village Elementary,Los Angeles Unified,Los Angeles,861,8,62,0,1,1,20,1,15,0,62,8,0,4,2,14,13,6,N/A,96,4,18,38,22,17,3.3\r\n,Marine View Middle,Ocean View,Orange,861,8,1,1,7,1,31,0,56,3,26,8,0,11,11,9,N/A,28,31,99,16,11,21,31,20,3.27\r\n,,Plumas Lake Elementary,Yuba,861,B,6,1,4,2,23,1,56,7,39,11,0,7,7,11,19,29,24,95,3,16,44,27,10,3.26\r\n,Howard Cattle Elementary,Chino Valley Unified,San Bernardino,861,8,4,0,6,4,65,0,21,0,40,3,0,11,5,12,29,31,N/A,90,5,25,25,32,13,3.24\r\n,Tournament Hills Elementary,Beaumont Unified,Riverside,861,8,8,1,6,5,38,0,41,0,37,4,0,13,2,13,24,34,N/A,88,5,18,39,29,11,3.23\r\n,,Sonora Elementary,Tuolumne,861,B,0,1,2,1,13,1,74,6,43,16,0,0,0,13,21,24,25,92,6,23,34,24,13,3.16\r\n,Clara J. King Elementary,Cypress Elementary,Orange,861,8,5,0,29,8,39,0,15,4,63,2,0,35,9,7,23,25,N/A,98,8,20,33,25,13,3.14\r\n,Valley View Elementary,Duarte Unified,Los Angeles,861,8,6,0,3,7,68,0,12,5,57,13,1,22,3,12,22,28,N/A,99,8,21,37,27,7,3.05\r\n,Sierra View Elementary,Oakdale Joint Unified,Stanislaus,861,8,0,1,2,1,36,0,59,1,42,9,4,17,8,14,20,30,N/A,97,11,22,31,27,10,3.03\r\nD,Guajome Park Academy Charter,Vista Unified,San Diego,861,9,3,0,2,2,50,1,36,6,42,0,0,6,27,5,N/A,28,28,98,19,14,29,23,15,3\r\n,Enadia Way Elementary,Los Angeles Unified,Los Angeles,861,8,9,1,5,5,60,0,20,0,77,7,1,15,22,11,18,21,N/A,85,24,16,25,26,9,2.81\r\n,Valley Center Primary,Valley Center-Pauma Unified,San Diego,861,8,1,11,1,0,49,1,30,7,59,0,2,37,0,14,22,N/A,N/A,99,22,23,33,15,7,2.61\r\nD,Leadership Public Schools - Hayward,Hayward Unified,Alameda,861,9,6,0,10,11,60,5,5,3,62,0,0,11,47,7,N/A,N/A,28,100,27,20,28,19,6,2.57\r\n,New Temple,Valle Lindo Elementary,Los Angeles,861,8,0,0,3,0,97,0,0,0,81,0,0,28,19,3,19,N/A,N/A,95,22,32,33,11,3,2.42\r\n,Los Medanos Elementary,Pittsburg Unified,Contra Costa,861,8,15,0,3,6,68,2,4,2,84,2,0,44,8,10,26,28,N/A,93,29,32,22,14,3,2.31\r\n,Fipps Primary,Riverdale Joint Unified,Fresno,861,8,0,0,0,0,82,0,17,0,6,0,10,45,22,11,1,N/A,N/A,100,44,35,15,5,1,1.83\r\nD,Coastal Academy,Oceanside Unified,San Diego,860,7,1,0,4,2,14,1,73,3,15,0,0,0,0,7,18,23,N/A,98,0,2,20,41,37,4.13\r\n,Trabuco Hills High,Saddleback Valley Unified,Orange,860,9,1,1,8,3,21,0,60,5,13,17,0,3,6,6,N/A,N/A,32,94,4,7,25,40,24,3.72\r\n,Hage Elementary,San Diego Unified,San Diego,860,7,6,0,28,19,17,0,21,9,33,30,0,22,16,11,23,27,N/A,92,1,9,30,37,23,3.71\r\n,Ortega Elementary,Pacifica,San Mateo,860,7,1,1,3,1,26,1,56,10,22,1,0,4,0,16,22,25,N/A,97,1,9,33,37,20,3.65\r\n,,Templeton Unified,San Luis Obispo,860,B,1,1,1,0,18,0,74,4,16,10,0,3,2,7,27,27,26,96,3,12,31,30,23,3.59\r\n,Rosedale Middle,Rosedale Union Elementary,Kern,860,8,5,0,3,2,22,0,65,1,20,18,0,1,6,7,N/A,N/A,32,95,4,11,32,31,23,3.59\r\n,Rescue Elementary,Rescue Union Elementary,El Dorado,860,7,0,0,1,1,15,0,80,2,29,5,0,2,1,12,24,26,N/A,92,5,8,34,33,20,3.56\r\n,Prado View Elementary,Corona-Norco Unified,Riverside,860,7,4,1,14,4,30,1,46,0,25,6,0,7,8,13,22,25,N/A,99,3,12,36,29,20,3.52\r\n,Murray Elementary,Dublin Unified,Alameda,860,7,5,0,10,6,21,0,49,9,20,5,0,9,5,10,22,27,N/A,97,1,21,22,40,17,3.51\r\n,,Culver City Unified,Los Angeles,860,B,18,0,11,2,40,1,26,2,39,11,0,11,14,9,22,29,30,93,7,13,28,28,24,3.5\r\n,George Kelly Elementary,Tracy Joint Unified,San Joaquin,860,7,8,0,14,12,31,2,25,8,29,1,0,16,8,10,32,29,27,93,4,12,29,42,13,3.47\r\n,Foskett Ranch Elementary,Western Placer Unified,Placer,860,7,3,2,2,2,18,1,67,5,18,5,0,3,2,11,22,31,N/A,94,3,10,40,36,12,3.45\r\nY,George Ellery Hale Charter Academy,Los Angeles Unified,Los Angeles,860,8,8,1,8,2,27,1,51,1,32,32,0,4,11,14,N/A,34,31,81,6,18,26,34,16,3.38\r\n,Mira Mesa High,San Diego Unified,San Diego,860,9,7,0,19,27,21,1,17,7,47,29,0,9,23,9,N/A,N/A,31,92,4,19,30,35,12,3.32\r\n,Vinewood Elementary,Lodi Unified,San Joaquin,860,7,0,1,7,2,24,0,60,1,41,32,1,10,5,11,23,28,N/A,85,5,24,28,26,17,3.27\r\n,John F. Kennedy Elementary,ABC Unified,Los Angeles,860,7,10,0,20,15,39,0,14,1,51,10,2,23,7,14,24,28,N/A,91,6,24,25,36,10,3.22\r\n,Ron Nunn Elementary,Brentwood Union Elementary,Contra Costa,860,7,9,1,3,4,19,1,62,2,27,1,0,5,2,16,25,31,N/A,96,4,22,44,24,6,3.07\r\n,Downieville Elementary,Sierra-Plumas Joint Unified,Sierra,860,7,0,0,4,0,8,0,83,0,46,8,0,8,0,17,,,,63,0,33,33,27,7,3.07\r\n,Madison Middle,Vista Unified,San Diego,860,8,4,0,4,2,46,2,38,4,45,22,1,10,18,11,N/A,32,32,92,14,18,30,26,12,3.04\r\n,,Flournoy Union Elementary,Tehama,860,B,0,0,0,0,13,0,87,0,61,0,0,0,0,4,,,,91,0,43,29,14,14,3\r\n,Flournoy Elementary,Flournoy Union Elementary,Tehama,860,7,0,0,0,0,13,0,87,0,61,0,0,0,0,4,,,,91,0,43,29,14,14,3\r\n,Lincrest Elementary,Yuba City Unified,Sutter,860,7,2,0,11,0,33,0,47,6,59,7,2,12,9,8,22,30,N/A,97,11,27,29,18,15,2.99\r\n,John F. Kennedy High,Anaheim Union High,Orange,860,9,6,1,25,10,34,1,24,0,40,28,0,9,20,8,N/A,N/A,40,13,11,20,33,30,5,2.97\r\n,Killybrooke Elementary,Newport-Mesa Unified,Orange,860,7,3,0,7,1,63,1,25,1,72,3,0,44,6,17,21,28,N/A,89,20,17,27,26,10,2.89\r\n,Danube Avenue Elementary,Los Angeles Unified,Los Angeles,860,7,6,0,1,4,75,0,15,0,71,13,0,18,8,20,14,10,N/A,90,11,29,30,22,8,2.87\r\n,,Placerville Union Elementary,El Dorado,860,B,1,1,1,0,27,0,65,5,53,12,0,12,4,12,22,25,23,96,11,27,38,16,8,2.85\r\n,Bear River Middle,Wheatland,Yuba,860,8,7,2,4,1,25,0,57,4,41,17,0,4,13,9,N/A,25,20,89,7,40,26,19,7,2.79\r\n,Hilltop Drive Elementary,Chula Vista Elementary,San Diego,860,7,2,0,0,1,82,0,14,0,60,14,0,34,4,12,22,27,N/A,75,10,33,31,20,7,2.79\r\n,River Oaks Elementary,Galt Joint Union Elementary,Sacramento,860,7,0,0,2,1,54,0,41,1,63,13,4,19,22,15,19,27,N/A,92,14,26,37,15,8,2.77\r\n,Victoria Elementary,Newport-Mesa Unified,Orange,860,7,0,0,2,1,67,1,27,1,69,3,0,38,7,16,21,27,N/A,92,28,22,24,21,5,2.54\r\n,Encinita Elementary,Rosemead Elementary,Los Angeles,860,7,1,0,41,1,54,0,3,0,2,13,6,35,31,16,23,33,N/A,92,32,46,9,10,3,2.05\r\n,Edison Elementary,San Diego Unified,San Diego,860,7,7,0,4,0,86,0,1,2,100,16,0,66,18,9,17,23,N/A,75,31,45,18,5,1,2.01\r\n,Sumner Elementary,Claremont Unified,Los Angeles,859,7,6,1,5,2,42,0,39,4,47,0,0,7,6,8,23,33,N/A,90,4,16,24,27,30,3.63\r\n,Monticello Elementary,Jefferson Elementary,San Joaquin,859,7,5,0,13,8,37,1,33,3,25,4,0,16,2,11,20,28,N/A,98,4,10,32,36,18,3.53\r\n,Casillas (Joseph) Elementary,Chula Vista Elementary,San Diego,859,7,5,0,5,14,58,0,15,1,31,22,0,26,5,12,20,27,N/A,85,3,14,29,37,16,3.51\r\n,Orchard Elementary,Vacaville Unified,Solano,859,7,4,1,1,3,16,0,70,5,15,12,0,2,1,12,22,27,N/A,98,3,11,36,36,14,3.48\r\n,Patterson Elementary,Fremont Unified,Alameda,859,7,6,1,34,12,17,1,22,7,33,4,0,20,16,11,24,26,N/A,96,5,16,25,36,17,3.44\r\n,Clear View,Chula Vista Elementary,San Diego,859,7,1,0,3,9,68,1,15,3,33,21,0,32,4,7,20,26,N/A,99,4,14,31,35,15,3.43\r\n,Center Elementary,Travis Unified,Solano,859,7,15,1,9,18,20,1,28,9,28,2,0,8,12,14,27,31,N/A,97,2,16,31,42,8,3.37\r\n,Union Hill Elementary,Union Hill Elementary,Nevada,859,7,1,1,1,0,5,0,88,4,30,0,0,0,0,8,21,27,26,94,1,19,40,26,13,3.31\r\n,James L. Day Middle,Temecula Valley Unified,Riverside,859,8,5,1,3,6,41,0,36,8,29,8,0,7,10,13,N/A,28,28,96,6,15,36,30,13,3.3\r\n,Mitchell Community Elementary,Sulphur Springs Union,Los Angeles,859,7,9,0,6,1,37,1,41,4,38,9,0,12,8,9,19,26,N/A,82,6,24,25,29,16,3.26\r\n,Alta-Dutch Flat Elementary,Alta-Dutch Flat Union Elementa,Placer,859,7,0,1,1,0,13,0,78,6,53,27,0,1,1,10,N/A,15,21,97,4,17,47,13,19,3.25\r\n,Horace Ensign Intermediate,Newport-Mesa Unified,Orange,859,8,1,0,1,1,37,0,58,0,45,11,0,14,14,7,N/A,N/A,34,94,18,11,20,35,16,3.2\r\n,Yukon Elementary,Torrance Unified,Los Angeles,859,7,9,0,13,2,43,1,19,7,51,1,0,17,6,20,29,26,N/A,91,5,15,44,26,9,3.19\r\nD,Summit Preparatory Charter High,Sequoia Union High,San Mateo,859,9,3,1,7,1,48,3,35,1,36,0,0,16,22,13,N/A,N/A,26,97,22,15,13,22,27,3.16\r\n,Dahlia Heights Elementary,Los Angeles Unified,Los Angeles,859,7,1,1,6,14,60,0,19,0,50,14,0,10,6,15,14,12,N/A,81,3,27,29,36,6,3.16\r\n,Stanford Elementary,Garden Grove Unified,Orange,859,7,0,0,51,2,38,1,6,1,62,1,0,47,23,8,25,32,N/A,5,5,24,33,33,5,3.1\r\n,Hill Creek Elementary,Santee Elementary,San Diego,859,7,1,1,1,1,24,1,63,9,38,6,0,6,6,10,23,30,29,98,4,27,37,22,10,3.05\r\n,Corona Fundamental Intermediate,Corona-Norco Unified,Riverside,859,8,4,1,10,2,52,1,28,3,45,18,0,5,31,5,N/A,N/A,32,98,16,17,30,23,14,3.04\r\n,Mesquite Trails Elementary,Hesperia Unified,San Bernardino,859,7,3,1,2,0,51,0,43,0,57,7,0,18,4,6,27,32,N/A,96,8,23,41,12,16,3.04\r\n,Martin Luther King Jr. Middle,Oceanside Unified,San Diego,859,8,8,1,3,4,46,3,32,2,49,16,1,5,20,10,N/A,31,31,92,12,19,34,23,12,3.03\r\n,Manuel F. Hernandez,Visalia Unified,Tulare,859,7,2,1,10,1,67,0,18,1,65,14,2,18,11,6,25,31,N/A,96,9,22,36,25,8,3.02\r\n,,Brentwood Union Elementary,Contra Costa,859,B,8,1,5,5,28,1,50,2,28,5,0,13,6,13,24,32,30,94,8,22,40,24,5,2.97\r\n,Barry Elementary,Yuba City Unified,Sutter,859,7,0,1,31,0,24,0,38,5,55,12,4,11,19,6,22,35,29,98,10,30,26,22,12,2.97\r\n,Providencia Elementary,Burbank Unified,Los Angeles,859,7,4,0,3,4,69,1,16,3,57,1,0,22,10,20,28,26,N/A,96,7,27,36,22,9,2.97\r\nY,Paradise Charter,Paradise Elementary,Stanislaus,859,7,0,0,1,1,65,1,26,6,57,0,0,22,10,4,13,12,N/A,57,6,30,40,17,8,2.91\r\n,Florence Elementary,San Diego Unified,San Diego,859,7,6,0,4,2,63,0,13,9,74,27,0,33,11,20,22,24,N/A,95,13,23,33,22,9,2.9\r\n,Sunland Elementary,Los Angeles Unified,Los Angeles,859,7,4,1,7,6,43,0,39,0,69,22,0,15,19,15,19,20,N/A,87,12,28,28,24,8,2.88\r\n,Santa Lucia Middle,Coast Unified,San Luis Obispo,859,8,1,0,2,0,50,1,43,1,54,0,0,34,14,9,N/A,22,18,92,21,26,15,26,11,2.81\r\n,Kellogg (Karl H.) Elementary,Chula Vista Elementary,San Diego,859,7,4,0,0,2,83,1,9,0,65,19,0,35,7,13,21,27,N/A,77,12,35,32,13,10,2.74\r\n,Valley Oak Middle,Visalia Unified,Tulare,859,8,1,2,3,0,68,0,24,1,71,18,5,12,22,10,N/A,N/A,30,96,18,27,32,16,7,2.66\r\nD,Voices College-Bound Language Academy,Franklin-McKinley Elementary,Santa Clara,859,7,4,0,4,2,87,0,2,1,80,0,0,53,23,4,26,28,N/A,99,20,23,36,19,3,2.61\r\n,Rio Vista Elementary,Palm Springs Unified,Riverside,859,7,3,1,2,3,70,0,21,0,73,5,0,32,7,9,28,26,N/A,98,16,37,35,9,4,2.48\r\n,Lauderbach (J. Calvin) Elementary,Chula Vista Elementary,San Diego,859,7,2,0,1,3,89,0,4,1,78,12,0,71,4,9,19,23,N/A,87,27,39,16,13,6,2.31\r\n,Otay Elementary,Chula Vista Elementary,San Diego,859,7,2,0,0,2,92,0,4,0,80,14,0,66,6,8,19,23,N/A,74,27,37,22,9,6,2.29\r\nD,Rocketship Si Se Puede Academy,Santa Clara County Office of E,Santa Clara,859,7,1,0,8,0,88,1,2,0,89,0,0,46,35,4,27,26,N/A,88,30,36,20,11,4,2.23\r\n,Montgomery (John J.) Elementary,Chula Vista Elementary,San Diego,859,7,1,0,1,1,95,0,1,0,88,8,0,70,7,10,22,26,N/A,71,38,40,15,4,4,1.97\r\nD,Sebastopol Independent Charter,Sebastopol Union Elementary,Sonoma,858,7,0,0,1,0,6,0,85,8,29,0,0,0,1,3,1,2,N/A,100,1,1,14,43,41,4.22\r\nD,Pacific Technology School Orangevale,SBC - Pacific Technology,El Dorado,858,8,4,1,10,0,8,1,66,10,22,0,0,3,5,6,N/A,19,19,99,0,5,34,31,30,3.86\r\n,Redondo Union High,Redondo Beach Unified,Los Angeles,858,9,8,0,11,2,26,1,48,2,19,19,0,5,7,10,N/A,N/A,29,99,3,10,28,39,20,3.62\r\nY,Linscott Charter,Pajaro Valley Unified,Santa Cruz,858,7,1,0,2,0,61,0,35,0,35,3,0,14,9,11,21,27,N/A,79,1,13,33,33,21,3.61\r\n,Calavera Hills Middle,Carlsbad Unified,San Diego,858,8,2,1,7,2,31,1,50,6,25,29,1,5,9,13,N/A,31,29,96,7,12,23,33,26,3.59\r\n,Sinaloa Middle,Novato Unified,Marin,858,8,2,1,5,1,27,0,59,4,26,13,0,10,12,9,N/A,28,27,98,7,13,22,36,23,3.54\r\n,,Norris Elementary,Kern,858,B,1,0,3,3,32,1,52,5,21,0,0,4,5,5,25,29,31,88,1,17,31,28,22,3.53\r\n,Almondale Elementary,Rosedale Union Elementary,Kern,858,7,3,0,4,3,28,0,60,1,22,8,0,3,5,10,22,27,N/A,98,3,13,35,26,23,3.52\r\n,,Mesa Union Elementary,Ventura,858,B,4,0,5,0,52,1,35,1,34,16,5,19,5,7,21,19,3,92,6,17,24,30,22,3.44\r\n,Mesa Elementary,Mesa Union Elementary,Ventura,858,7,4,0,5,0,52,1,35,1,34,16,5,19,5,7,24,32,30,92,6,17,24,30,22,3.44\r\n,,Vallecito Union,Calaveras,858,B,0,1,1,0,11,0,84,2,44,6,0,3,2,12,19,23,23,94,3,9,45,28,14,3.42\r\n,Ellis Elementary,Sunnyvale,Santa Clara,858,7,4,1,30,8,39,1,14,2,49,0,0,43,17,8,21,29,N/A,98,10,20,17,32,21,3.33\r\n,Highland Grove Elementary,Redlands Unified,San Bernardino,858,7,9,0,4,1,46,0,35,4,51,5,0,10,1,14,19,22,N/A,91,4,20,42,14,19,3.24\r\n,Oakmont Elementary,Claremont Unified,Los Angeles,858,7,9,0,7,1,56,0,22,4,63,0,0,8,9,17,21,32,N/A,87,4,23,36,19,18,3.24\r\n,,Milpitas Unified,Santa Clara,858,B,3,0,43,21,21,1,8,3,37,10,0,25,25,9,26,32,27,95,9,20,26,31,14,3.22\r\n,Warm Springs Middle,Murrieta Valley Unified,Riverside,858,8,7,1,5,7,35,1,38,7,38,10,0,3,10,11,N/A,28,28,96,6,17,35,32,10,3.22\r\n,George C. Marshall Elementary,Monterey Peninsula Unified,Monterey,858,7,11,0,3,3,37,2,38,6,51,1,0,19,7,5,25,28,N/A,100,10,21,29,24,16,3.15\r\n,Valley View Middle,Simi Valley Unified,Ventura,858,8,1,0,7,2,25,0,62,1,27,13,0,2,10,14,N/A,35,32,94,6,26,31,25,12,3.13\r\n,Chatsworth Park Elementary,Los Angeles Unified,Los Angeles,858,7,12,0,12,7,38,0,31,0,50,8,0,11,6,12,16,13,N/A,93,7,26,30,24,13,3.09\r\n,,McKittrick Elementary,Kern,858,B,0,2,0,0,4,0,95,0,14,0,0,0,0,4,8,8,N/A,100,2,18,57,18,5,3.07\r\n,McKittrick Elementary,McKittrick Elementary,Kern,858,7,0,2,0,0,4,0,95,0,14,0,0,0,0,4,8,8,N/A,100,2,18,57,18,5,3.07\r\n,Sierra Vista Junior High,William S. Hart Union High,Los Angeles,858,8,4,0,3,3,45,0,39,4,35,10,0,17,9,11,N/A,N/A,28,87,12,19,35,24,10,3.02\r\n,Sunshine Gardens Elementary,South San Francisco Unified,San Mateo,858,7,2,0,7,22,56,2,10,1,60,0,5,42,10,10,23,30,N/A,100,11,22,33,22,12,3\r\n,Maeola E. Beitzel Elementary,Elk Grove Unified,Sacramento,858,7,10,0,26,5,29,0,21,9,60,4,0,22,15,8,23,27,N/A,97,6,29,33,23,9,2.99\r\n,Shasta Meadows Elementary,Enterprise Elementary,Shasta,858,7,3,3,4,1,11,0,59,6,74,3,0,3,0,17,23,23,N/A,94,11,29,41,13,5,2.72\r\n,Oliver Wendell Holmes Middle,Los Angeles Unified,Los Angeles,858,8,5,0,6,7,64,0,17,1,68,27,0,9,25,13,N/A,29,31,83,22,25,23,21,9,2.71\r\n,Raymond Elementary,Fullerton Elementary,Orange,858,7,2,0,2,1,70,1,16,2,66,6,0,44,8,11,25,33,N/A,97,25,21,28,15,11,2.68\r\n,Pierce Elementary,Sierra Sands Unified,Kern,858,7,5,3,2,2,36,1,49,1,69,1,0,19,4,10,28,28,N/A,94,23,22,34,11,10,2.64\r\n,Roosevelt Middle,San Francisco Unified,San Francisco,858,8,7,0,58,3,12,1,13,1,65,51,0,13,46,12,N/A,28,29,73,16,46,14,15,9,2.56\r\nD,California Academy for Liberal Studies,Los Angeles Unified,Los Angeles,858,8,2,0,0,1,94,0,3,0,83,5,0,7,30,12,N/A,23,25,95,22,30,33,12,3,2.45\r\nD,Sacramento Valley Charter,Washington Unified,Yolo,858,7,0,0,93,0,4,0,4,0,7,0,0,13,13,0,11,8,N/A,13,0,71,14,14,0,2.43\r\n,Horace Mann Elementary,Glendale Unified,Los Angeles,858,7,1,0,2,6,53,0,38,0,92,3,0,59,22,7,23,33,N/A,88,26,36,17,16,5,2.4\r\n,Ward Elementary,Downey Unified,Los Angeles,858,7,4,0,2,1,89,0,3,0,83,0,0,44,0,17,25,N/A,N/A,100,18,45,25,10,2,2.32\r\n,Marshall Elementary,Fowler Unified,Fresno,858,7,0,1,8,0,82,0,9,0,77,0,0,41,0,8,23,N/A,N/A,100,26,31,33,8,2,2.3\r\n,Pond Elementary,Pond Union Elementary,Kern,858,7,1,1,2,0,91,0,6,0,96,0,8,37,9,5,18,20,N/A,99,32,31,26,6,5,2.21\r\n,,Pond Union Elementary,Kern,858,B,1,1,2,0,91,0,6,0,97,0,8,37,9,6,18,20,N/A,99,32,31,26,6,5,2.21\r\n,,Rosemead Elementary,Los Angeles,858,B,1,0,53,1,41,0,3,0,1,7,5,30,33,10,25,31,N/A,94,29,51,5,12,3,2.08\r\n,Westport Elementary,Ceres Unified,Stanislaus,858,7,0,1,0,0,87,0,11,0,93,2,12,66,9,8,22,29,N/A,100,56,25,11,5,3,1.74\r\n,Ocean Shore Elementary,Pacifica,San Mateo,857,7,0,0,7,3,24,1,53,12,13,8,0,2,1,12,24,28,N/A,99,0,3,16,37,43,4.19\r\nD,Classical Academy,Escondido Union,San Diego,857,7,1,0,4,1,14,0,75,4,12,0,0,1,1,4,20,22,N/A,100,0,3,18,38,40,4.15\r\n,El Roble Intermediate,Claremont Unified,Los Angeles,857,8,7,0,9,1,38,0,40,4,34,0,0,3,9,10,N/A,N/A,30,89,3,11,27,24,34,3.76\r\n,Winston Churchill Middle,San Juan Unified,Sacramento,857,8,9,1,22,2,13,1,50,1,43,27,0,7,9,10,N/A,31,30,82,6,14,16,28,36,3.75\r\n,Eastlake High,Sweetwater Union High,San Diego,857,9,6,0,4,17,54,1,17,0,19,25,0,7,23,9,N/A,N/A,30,91,2,10,23,42,23,3.72\r\n,,Pacifica,San Mateo,857,B,2,0,5,10,24,2,45,12,24,7,0,9,1,10,23,30,29,98,2,10,29,38,21,3.68\r\n,,Benicia Unified,Solano,857,B,9,0,5,7,17,1,51,10,19,2,0,2,5,9,25,28,27,99,2,12,33,33,20,3.58\r\n,Gibson Elementary,Fresno Unified,Fresno,857,7,17,0,4,0,28,0,50,0,45,5,1,4,1,7,24,25,N/A,93,2,13,36,24,24,3.54\r\n,Pleasant Grove High,Elk Grove Unified,Sacramento,857,9,10,1,20,5,18,1,42,4,30,13,0,6,18,9,N/A,N/A,24,95,5,14,26,35,20,3.51\r\n,Bonita Vista Senior High,Sweetwater Union High,San Diego,857,9,4,1,4,10,62,1,18,0,23,29,0,10,23,9,N/A,N/A,27,80,6,16,23,35,20,3.48\r\n,North Shoreview Elementary,San Mateo-Foster City,San Mateo,857,7,2,0,10,4,35,7,34,7,35,10,0,19,6,7,27,29,N/A,96,9,17,19,29,25,3.44\r\n,Schallenberger Elementary,San Jose Unified,Santa Clara,857,7,5,1,7,1,38,0,44,1,35,12,0,15,5,9,29,30,N/A,93,6,15,27,32,19,3.42\r\n,Buckeye Elementary,Buckeye Union Elementary,El Dorado,857,7,1,1,2,0,20,0,69,7,37,3,0,7,1,18,25,27,N/A,98,6,13,34,25,21,3.42\r\n,,Murrieta Valley Unified,Riverside,857,B,5,0,4,4,33,1,47,5,30,9,0,3,5,11,24,30,29,95,4,13,35,33,14,3.41\r\n,,Mountain View Whisman,Santa Clara,857,B,2,0,11,4,47,1,27,6,47,19,0,38,14,13,24,27,29,96,14,18,15,21,33,3.41\r\n,Podesta Ranch Elementary,Lodi Unified,San Joaquin,857,7,8,0,25,11,21,3,29,0,42,17,0,16,3,10,21,22,N/A,74,3,15,35,34,14,3.4\r\n,Lone Hill Middle,Bonita Unified,Los Angeles,857,8,3,0,5,3,48,1,33,5,35,15,0,4,4,11,N/A,31,32,94,3,15,37,31,14,3.38\r\nD,Willow Creek Academy,Sausalito Marin City,Marin,857,7,20,1,9,0,36,1,29,5,60,1,0,19,7,9,,,,84,5,19,35,21,20,3.33\r\n,Freedom Elementary,Sylvan Union Elementary,Stanislaus,857,7,5,0,7,9,35,3,39,2,33,3,0,18,6,20,28,25,N/A,98,6,16,35,31,13,3.29\r\n,McKinley Elementary,Redlands Unified,San Bernardino,857,7,7,0,5,2,40,0,42,3,59,16,0,9,3,19,21,34,N/A,94,7,18,39,17,20,3.26\r\n,Luther Burbank Middle,Burbank Unified,Los Angeles,857,8,2,0,4,4,50,0,38,1,1,8,0,4,17,13,N/A,28,27,95,7,21,31,31,10,3.17\r\n,Blossom Valley Elementary,Cajon Valley Union,San Diego,857,7,1,1,1,1,21,0,70,1,30,14,0,11,3,17,24,26,N/A,97,4,29,30,23,14,3.13\r\n,Webster Elementary,Golden Valley Unified,Madera,857,7,2,2,2,0,36,0,57,2,50,5,0,11,4,8,24,29,N/A,90,5,28,31,27,9,3.07\r\n,Reyburn Intermediate,Clovis Unified,Fresno,857,8,3,1,22,2,39,0,30,3,56,5,2,8,15,6,N/A,N/A,29,98,10,21,32,26,11,3.07\r\n,Avocado Elementary,Cajon Valley Union,San Diego,857,7,7,1,1,2,30,0,38,6,44,13,0,24,8,11,21,29,N/A,91,8,23,33,26,10,3.06\r\n,Tulsa Street Elementary,Los Angeles Unified,Los Angeles,857,7,8,1,5,5,63,1,17,0,71,17,0,18,10,15,15,14,N/A,91,9,25,28,25,13,3.06\r\n,Castro Valley Elementary,Castro Valley Unified,Alameda,857,7,7,1,17,2,39,1,22,10,38,3,0,27,4,10,24,32,N/A,97,6,23,42,21,9,3.05\r\n,Rio Vista Elementary,Saugus Union,Los Angeles,857,7,6,0,4,4,49,0,34,2,46,3,0,25,11,8,21,28,N/A,98,13,22,27,24,13,3.02\r\n,Walt Disney Elementary,Burbank Unified,Los Angeles,857,7,4,0,8,4,60,0,20,3,64,1,0,32,5,10,30,30,N/A,91,11,20,34,26,8,3\r\n,Wallen L. Andrews Elementary,Whittier City Elementary,Los Angeles,857,7,1,0,2,1,83,1,7,1,50,0,0,12,7,10,26,30,N/A,95,11,20,39,24,6,2.95\r\n,Elizabeth Ustach Middle,Sylvan Union Elementary,Stanislaus,857,8,5,0,8,5,37,2,40,2,42,12,0,8,13,11,N/A,29,25,97,10,27,33,23,7,2.93\r\n,Donald S. Jordan Intermediate,Garden Grove Unified,Orange,857,8,1,0,51,1,37,2,7,0,67,6,0,35,45,9,N/A,N/A,28,39,17,35,17,26,5,2.66\r\n,Harding Street Elementary,Los Angeles Unified,Los Angeles,857,7,3,0,1,3,88,0,5,0,74,9,0,20,13,18,16,11,N/A,88,20,35,29,13,4,2.46\r\n,Baldwin Academy,Hacienda la Puente Unified,Los Angeles,857,7,1,0,4,1,92,0,1,0,90,10,0,32,13,8,20,31,N/A,86,27,29,30,13,1,2.32\r\n,Culverdale Elementary,Irvine Unified,Orange,857,7,6,1,31,1,18,1,38,4,31,5,0,41,4,14,28,29,N/A,0,0,0,0,0,0,\r\nD,Journey,Capistrano Unified,Orange,856,7,1,0,5,2,11,0,68,14,8,1,0,2,0,13,22,24,N/A,84,0,1,24,37,39,4.14\r\nD,Museum,San Diego Unified,San Diego,856,7,7,0,7,5,32,0,47,2,14,23,0,10,3,12,26,26,N/A,93,1,7,18,37,37,4.04\r\n,West Ranch High,William S. Hart Union High,Los Angeles,856,9,3,0,12,6,24,0,51,3,10,13,0,5,8,8,N/A,N/A,34,96,2,8,30,37,23,3.71\r\n,Centennial Elementary,Rosedale Union Elementary,Kern,856,7,1,0,2,0,24,0,70,0,17,14,0,2,6,7,22,27,N/A,98,3,9,33,32,23,3.63\r\n,Pacheco Elementary,San Luis Coastal Unified,San Luis Obispo,856,7,0,0,3,1,52,0,39,5,39,0,0,40,4,5,21,31,N/A,96,15,15,7,23,40,3.59\r\n,Carroll Elementary,Elk Grove Unified,Sacramento,856,7,14,0,24,12,16,1,22,10,35,8,0,13,13,7,23,26,N/A,98,3,15,27,37,19,3.53\r\n,College Park Elementary,San Mateo-Foster City,San Mateo,856,7,3,0,33,2,40,2,14,6,39,29,0,37,9,5,24,27,N/A,95,15,15,13,17,40,3.53\r\n,Laguna Hills High,Saddleback Valley Unified,Orange,856,9,2,0,8,4,34,0,48,3,24,16,0,10,14,9,N/A,N/A,31,91,11,12,20,30,26,3.47\r\n,Canyon Oaks Elementary,Napa Valley Unified,Napa,856,7,7,0,10,32,30,1,9,10,29,7,0,20,16,10,29,32,N/A,92,6,14,24,44,12,3.42\r\nY,Science & Technology Academy at Knights,Woodland Joint Unified,Yolo,856,7,1,1,0,1,36,0,56,4,39,25,2,13,1,7,24,29,N/A,93,6,16,34,24,20,3.37\r\n,Santiago Elementary,Saddleback Valley Unified,Orange,856,7,2,0,5,4,40,0,43,3,38,5,0,25,5,11,27,32,N/A,85,10,15,27,28,20,3.33\r\nD,Academy for Academic Excellence,Apple Valley Unified,San Bernardino,856,7,5,0,3,3,28,0,54,6,23,8,0,1,3,8,25,27,22,91,3,16,49,21,12,3.23\r\n,,Janesville Union Elementary,Lassen,856,B,0,2,0,0,12,1,85,0,28,6,0,4,0,8,21,23,16,90,1,16,52,20,10,3.22\r\n,Janesville Elementary,Janesville Union Elementary,Lassen,856,7,0,2,0,0,12,1,85,0,28,6,0,4,0,8,21,23,16,91,1,16,52,20,10,3.22\r\n,,Alta-Dutch Flat Union Elementa,Placer,856,B,0,1,1,0,13,0,78,6,54,27,0,1,1,11,2,11,21,97,4,19,45,13,18,3.22\r\n,Joseph Kerr Middle,Elk Grove Unified,Sacramento,856,8,10,1,9,3,22,1,49,6,42,9,0,5,8,11,N/A,N/A,30,90,6,21,33,27,13,3.2\r\n,Alvarado Elementary,New Haven Unified,Alameda,856,7,8,0,20,38,20,3,4,7,51,0,0,26,28,9,26,34,N/A,96,6,20,34,33,8,3.16\r\n,Avaxat Elementary,Murrieta Valley Unified,Riverside,856,7,4,0,4,3,42,1,44,3,50,9,0,9,5,14,23,30,N/A,94,3,21,42,29,6,3.14\r\n,Condor Elementary,Morongo Unified,San Bernardino,856,7,11,1,0,3,34,0,44,7,54,2,0,4,2,8,26,30,N/A,100,1,17,61,18,4,3.08\r\n,Paradise Elementary,Paradise Elementary,Stanislaus,856,7,0,0,0,0,48,0,37,13,45,0,0,22,15,10,9,10,N/A,33,10,25,25,30,10,3.05\r\nY,Forestville Academy,Forestville Union Elementary,Sonoma,856,7,3,3,1,1,22,1,70,0,44,0,1,8,3,9,18,21,20,68,9,26,28,30,7,3\r\n,Burbank Boulevard Elementary,Los Angeles Unified,Los Angeles,856,7,12,0,4,3,60,0,21,0,89,10,0,27,16,10,20,20,N/A,77,11,23,31,26,9,2.99\r\n,,East Whittier City Elementary,Los Angeles,856,B,1,0,2,1,79,0,16,0,44,9,0,14,7,13,20,28,28,96,11,24,36,21,8,2.92\r\n,Mountain View Middle,Beaumont Unified,Riverside,856,8,6,1,4,2,43,0,43,0,53,16,0,7,10,8,N/A,35,30,83,9,26,39,19,7,2.89\r\n,Whale Gulch Elementary,Leggett Valley Unified,Mendocino,856,7,0,12,0,0,8,0,80,0,0,0,0,0,0,16,13,9,N/A,88,0,36,45,18,0,2.82\r\n,Peachland Avenue Elementary,Newhall,Los Angeles,856,7,2,0,1,2,60,0,34,1,53,4,0,43,1,12,23,32,N/A,95,27,22,20,20,11,2.66\r\nY,California Military Institute,Perris Union High,Riverside,856,9,6,0,2,1,84,0,6,2,87,3,0,14,38,1,N/A,26,27,100,22,30,32,12,5,2.49\r\n,Bursch Elementary,Compton Unified,Los Angeles,856,7,30,0,0,0,69,0,0,0,83,7,0,34,26,15,24,22,N/A,84,41,25,23,8,4,2.1\r\n,,Vallecitos Elementary,San Diego,856,B,0,0,0,0,81,1,19,0,97,0,39,53,15,13,12,12,15,100,52,19,17,10,2,1.92\r\n,Vallecitos Elementary,Vallecitos Elementary,San Diego,856,7,0,0,0,0,81,1,19,0,97,0,39,53,15,13,20,25,N/A,100,52,19,17,10,2,1.92\r\nD,Classical Academy High,Escondido Union High,San Diego,855,9,2,0,3,3,17,0,70,4,18,0,0,1,2,5,N/A,N/A,16,97,0,2,24,42,31,4.02\r\n,Deer Creek Elementary,Nevada City Elementary,Nevada,855,7,1,2,1,0,7,0,85,3,34,0,0,0,2,13,23,29,N/A,100,1,10,28,26,36,3.86\r\n,San Antonio Elementary,Ojai Unified,Ventura,855,7,0,1,2,0,20,0,75,2,23,6,0,16,1,13,17,18,N/A,97,6,6,21,32,35,3.84\r\nD,High Tech Middle North County,SBC - High Tech High,San Diego,855,8,3,0,5,3,30,0,54,4,37,0,0,4,4,14,N/A,28,N/A,67,4,8,28,30,30,3.74\r\n,Woodcreek High,Roseville Joint Union High,Placer,855,9,3,1,4,3,14,0,68,7,15,7,0,2,4,7,N/A,N/A,31,95,1,9,33,36,21,3.68\r\n,Rancho Rosal Elementary,Pleasant Valley,Ventura,855,7,5,0,9,8,33,0,42,2,31,8,0,16,2,13,23,26,N/A,93,6,12,23,32,27,3.6\r\n,Fair Oaks Ranch Community,Sulphur Springs Union,Los Angeles,855,7,12,0,8,4,38,1,23,14,36,7,0,15,8,9,23,30,N/A,86,4,14,27,36,19,3.51\r\n,Centerville Junior High,Fremont Unified,Alameda,855,8,6,0,31,8,21,1,29,3,29,14,0,13,20,11,N/A,N/A,28,97,6,17,23,32,21,3.45\r\n,Cordillera Elementary,Saddleback Valley Unified,Orange,855,7,1,0,7,4,32,1,50,4,31,6,0,19,5,17,29,32,N/A,92,5,14,29,34,18,3.45\r\n,Hazel Fischer Elementary,Vallecito Union,Calaveras,855,7,0,1,1,1,7,0,88,2,57,0,0,0,1,10,24,19,N/A,98,5,11,40,24,20,3.44\r\n,Reed Elementary,San Jose Unified,Santa Clara,855,7,4,1,6,1,36,0,45,3,32,12,0,13,5,11,29,25,N/A,95,6,13,31,32,18,3.43\r\n,San Lorenzo Valley Middle,San Lorenzo Valley Unified,Santa Cruz,855,8,2,1,2,1,13,0,80,3,22,15,0,2,1,12,N/A,28,27,97,2,15,36,34,14,3.42\r\n,Rancho Vista Elementary,Westside Union Elementary,Los Angeles,855,7,10,0,5,2,35,0,46,1,33,8,0,6,4,14,26,27,N/A,94,3,16,38,25,19,3.4\r\n,Alamosa Park Elementary,Vista Unified,San Diego,855,7,6,1,5,4,34,2,44,5,35,0,1,12,7,13,24,29,N/A,96,8,12,30,35,16,3.38\r\n,Mark Twain Elementary,Riverside Unified,Riverside,855,7,10,1,7,5,37,0,37,0,33,13,0,8,6,11,26,30,N/A,97,5,15,38,27,16,3.35\r\n,Maple Elementary,Conejo Valley Unified,Ventura,855,7,0,1,6,0,30,0,58,4,27,6,0,25,2,14,16,23,N/A,57,16,11,18,33,21,3.32\r\n,Donn B. Chenoweth Elementary,Merced City Elementary,Merced,855,7,4,0,8,1,51,0,31,4,56,0,0,9,4,10,25,29,N/A,100,4,18,38,22,18,3.32\r\n,Harloe Elementary,Lucia Mar Unified,San Luis Obispo,855,7,0,0,1,1,25,0,69,3,43,6,0,8,2,12,21,31,N/A,88,6,17,33,29,14,3.3\r\n,Witter Ranch Elementary,Natomas Unified,Sacramento,855,7,17,1,23,8,19,4,23,3,42,21,0,23,7,9,31,30,N/A,76,3,23,33,28,13,3.25\r\n,,Berryessa Union Elementary,Santa Clara,855,B,3,0,49,12,22,1,6,4,37,15,0,33,24,10,23,29,30,99,8,16,33,28,14,3.24\r\n,John Ehrhardt Elementary,Elk Grove Unified,Sacramento,855,7,17,0,13,6,25,2,31,4,48,3,0,5,11,9,24,26,N/A,95,4,26,29,29,12,3.2\r\n,Sinaloa Middle,Simi Valley Unified,Ventura,855,8,2,1,6,2,29,0,57,1,30,13,0,4,15,14,N/A,33,28,91,7,24,29,26,14,3.16\r\n,Stephen Foster Elementary,Bellflower Unified,Los Angeles,855,7,10,0,5,6,44,1,29,6,42,18,0,8,4,15,26,27,N/A,93,5,19,42,24,10,3.15\r\n,Sandra Tovar Medeiros Elementary,Turlock Unified,Stanislaus,855,7,3,0,7,1,47,2,39,1,42,5,0,28,1,10,22,28,N/A,99,6,26,32,19,16,3.12\r\n,Ocean View Hills,San Ysidro Elementary,San Diego,855,7,6,0,2,18,68,0,5,1,51,9,0,30,21,9,24,27,N/A,91,6,25,31,29,9,3.09\r\n,Promenade Elementary,Alvord Unified,Riverside,855,7,12,0,13,3,50,1,18,3,45,7,0,23,1,7,29,30,N/A,91,8,20,39,20,12,3.08\r\n,Granada Middle,East Whittier City Elementary,Los Angeles,855,8,2,0,2,2,69,0,24,0,34,17,0,8,8,15,N/A,31,29,95,7,22,40,23,9,3.05\r\n,Faller Elementary,Sierra Sands Unified,Kern,855,7,5,1,3,3,27,1,59,1,59,0,0,10,4,12,29,30,N/A,96,9,25,35,17,14,3.01\r\n,,Paradise Elementary,Stanislaus,855,B,0,0,1,1,58,1,30,9,52,0,0,22,12,7,11,11,N/A,48,7,29,36,21,8,2.95\r\n,Cook (Hazel Goes) Elementary,Chula Vista Elementary,San Diego,855,7,2,0,2,2,80,1,13,0,55,22,0,34,7,12,20,30,N/A,69,10,34,30,17,9,2.82\r\n,Solorsano Middle,Gilroy Unified,Santa Clara,855,8,1,0,4,2,63,0,28,2,51,13,2,16,20,7,N/A,33,32,94,20,20,27,26,7,2.81\r\n,Peter Marshall Elementary,Magnolia Elementary,Orange,855,7,3,0,11,6,61,0,18,1,66,10,0,26,28,8,25,30,N/A,86,18,30,27,21,4,2.64\r\n,Loma Verde Elementary,Chula Vista Elementary,San Diego,855,7,4,1,0,4,85,0,4,2,74,12,0,54,2,9,21,28,N/A,80,14,40,24,18,3,2.56\r\n,Coleman F. Brown Elementary,Sylvan Union Elementary,Stanislaus,855,7,6,1,5,0,48,1,35,3,81,1,0,17,2,14,30,28,N/A,98,12,38,36,11,3,2.56\r\nD,Lakeview Charter Academy,Los Angeles Unified,Los Angeles,855,8,3,0,0,1,95,0,1,0,90,7,0,14,45,13,N/A,27,25,97,40,27,22,9,2,2.06\r\nD,Camino Nuevo Academy #2,Los Angeles Unified,Los Angeles,855,7,1,0,0,1,97,0,0,0,99,0,0,35,43,18,24,23,30,99,51,27,12,9,1,1.83\r\n,Grace S. Thille Elementary,Santa Paula Elementary,Ventura,855,7,1,0,0,0,97,0,2,0,100,13,10,59,21,9,20,24,N/A,96,59,27,9,6,0,1.61\r\n,La Jolla High,San Diego Unified,San Diego,854,9,2,0,9,1,30,1,55,2,24,44,0,7,16,5,N/A,N/A,32,92,7,10,12,26,46,3.94\r\n,Valencia High,William S. Hart Union High,Los Angeles,854,9,5,0,10,7,21,0,55,2,7,16,0,4,5,12,N/A,N/A,32,94,1,7,27,42,23,3.8\r\n,Bella Vista High,San Juan Unified,Sacramento,854,9,3,2,5,2,11,1,76,1,23,16,0,2,4,9,N/A,N/A,30,88,2,16,21,43,19,3.6\r\n,Carl Hankey Elementary,Capistrano Unified,Orange,854,7,1,1,4,4,32,1,55,1,35,3,0,19,9,8,27,30,N/A,76,7,13,25,28,27,3.56\r\n,Roosevelt Elementary,San Leandro Unified,Alameda,854,7,17,0,12,3,32,1,32,3,34,19,0,16,7,8,28,27,N/A,96,7,13,24,30,26,3.55\r\n,Dry Creek Elementary,Dry Creek Joint Elementary,Placer,854,7,5,1,10,2,20,0,58,4,33,5,0,26,2,13,24,30,N/A,99,4,12,35,31,19,3.49\r\n,,Jefferson Elementary,San Joaquin,854,B,8,0,14,7,31,1,37,1,27,14,0,17,7,10,20,28,29,96,3,12,36,33,16,3.47\r\n,Tom Maloney Elementary,Fremont Unified,Alameda,854,7,3,0,40,12,22,1,16,6,37,2,0,33,16,10,25,26,N/A,96,7,19,17,34,22,3.46\r\n,Brandon Elementary,Goleta Union Elementary,Santa Barbara,854,7,2,0,8,1,50,0,37,1,43,19,0,29,12,17,22,23,N/A,95,6,16,24,34,19,3.44\r\n,Orange Elementary,Corona-Norco Unified,Riverside,854,7,4,0,6,2,35,1,50,1,23,7,0,8,4,11,27,27,N/A,93,4,13,37,30,16,3.39\r\n,Milk (Harvey) Civil Rights Elementary,San Francisco Unified,San Francisco,854,7,33,2,7,2,12,2,27,9,49,3,0,9,4,13,22,27,N/A,85,6,14,33,29,18,3.39\r\n,Rachel Carson Elementary,San Jose Unified,Santa Clara,854,7,7,1,21,2,35,0,27,2,43,10,0,21,13,14,28,24,N/A,93,10,13,28,33,17,3.34\r\n,San Jose Intermediate,Novato Unified,Marin,854,8,4,0,3,1,39,0,48,4,40,14,0,16,18,11,N/A,28,27,100,12,19,19,29,21,3.29\r\n,,Butteville Union Elementary,Siskiyou,854,B,4,1,2,0,16,0,65,12,60,21,1,2,1,11,4,3,N/A,99,4,16,41,22,16,3.28\r\n,Butteville Elementary,Butteville Union Elementary,Siskiyou,854,7,4,1,2,0,16,0,65,12,60,21,1,2,1,11,4,3,N/A,99,4,16,41,22,16,3.28\r\n,Esther Lindstrom Elementary,Bellflower Unified,Los Angeles,854,7,10,0,7,8,39,2,26,7,46,27,0,13,7,14,27,26,N/A,96,3,14,46,25,11,3.25\r\n,Congressman Jerry Lewis Elementary,Silver Valley Unified,San Bernardino,854,7,15,1,1,3,26,6,41,7,43,0,0,4,0,1,22,N/A,N/A,97,2,25,44,20,9,3.1\r\n,Vanguard Preparatory,Apple Valley Unified,San Bernardino,854,7,4,0,1,0,34,0,60,1,53,23,0,6,4,8,25,30,35,95,5,25,40,20,11,3.09\r\n,Arthur C. Butler Elementary,Elk Grove Unified,Sacramento,854,7,13,0,30,7,20,2,24,3,58,5,0,20,17,10,25,28,N/A,94,6,30,27,26,11,3.06\r\nY,Lincoln Elementary,Kingsburg Elementary Charter,Fresno,854,7,0,0,2,0,60,0,34,1,62,0,0,23,0,7,23,N/A,N/A,94,11,26,29,19,14,2.98\r\n,Garden Grove Elementary,Simi Valley Unified,Ventura,854,7,1,1,7,1,34,0,54,2,36,1,0,8,10,20,24,34,N/A,90,6,34,31,21,9,2.93\r\n,Lakeview Elementary,Little Lake City Elementary,Los Angeles,854,7,1,0,1,0,89,0,10,0,61,16,0,10,3,11,30,32,N/A,96,5,33,40,14,8,2.88\r\n,Santa Barbara Junior High,Santa Barbara Unified,Santa Barbara,854,8,1,1,1,0,60,0,35,2,50,15,0,31,10,15,N/A,N/A,28,95,28,18,14,21,19,2.86\r\n,,Pioneer Union Elementary,El Dorado,854,B,0,1,0,0,12,0,80,6,50,0,0,2,1,18,22,24,21,93,7,35,35,17,7,2.83\r\n,,Knights Ferry Elementary,Stanislaus,854,B,2,2,0,0,22,0,73,0,30,0,0,10,0,1,10,N/A,N/A,98,17,14,40,30,0,2.82\r\n,Knights Ferry Elementary,Knights Ferry Elementary,Stanislaus,854,7,2,2,0,0,22,0,73,0,30,0,0,10,0,1,10,N/A,N/A,98,17,14,40,30,0,2.82\r\n,Alice N. Stroud Elementary,Empire Union Elementary,Stanislaus,854,7,5,0,3,2,60,1,29,0,74,8,0,23,9,13,24,31,N/A,90,9,36,34,12,8,2.75\r\n,Peggy Heller Elementary,Atwater Elementary,Merced,854,7,4,0,2,1,58,1,33,0,70,14,0,18,13,13,24,32,N/A,88,20,21,34,15,10,2.73\r\n,Mentone Elementary,Redlands Unified,San Bernardino,854,7,2,0,1,0,61,0,32,3,72,0,0,11,2,14,25,27,N/A,89,15,20,50,9,6,2.72\r\n,Loretta Lampton Elementary,Norwalk-La Mirada Unified,Los Angeles,854,7,2,0,4,3,82,1,7,1,78,8,11,25,19,12,25,31,N/A,99,10,38,29,15,7,2.72\r\n,New Haven Elementary,Manteca Unified,San Joaquin,854,7,3,2,5,3,43,0,42,1,54,0,1,16,10,13,28,27,25,89,18,33,24,20,5,2.61\r\n,Victor F. Hodge Elementary,Azusa Unified,Los Angeles,854,7,1,0,1,1,88,0,7,1,71,4,2,24,13,12,22,32,N/A,97,23,24,35,9,10,2.59\r\n,Thelma B. Bedell Elementary,Santa Paula Elementary,Ventura,854,7,0,0,0,0,86,0,13,0,100,16,3,41,1,17,24,26,N/A,97,20,31,32,16,1,2.47\r\n,,Guerneville Elementary,Sonoma,854,B,2,3,1,0,21,0,72,0,62,1,2,16,3,22,22,16,21,97,26,37,23,12,3,2.3\r\nD,Aspire Huntington Park Charter,Los Angeles Unified,Los Angeles,854,7,0,0,0,0,98,0,1,0,89,0,0,32,47,10,23,29,N/A,95,21,43,27,7,2,2.25\r\nY,Folsom Cordova K-8 Community Charter,Folsom-Cordova Unified,Sacramento,853,7,6,1,12,0,10,0,70,1,1,4,0,0,3,13,,,,82,2,5,22,35,36,3.97\r\nY,Grass Valley Charter at Bell Hill,Grass Valley Elementary,Nevada,853,7,1,4,1,0,8,0,85,0,21,0,0,0,0,8,20,24,N/A,99,1,5,22,39,32,3.97\r\nD,Maria Montessori Charter Academy,Rocklin Unified,Placer,853,7,2,1,4,4,15,0,66,7,22,0,0,4,0,13,17,31,N/A,96,1,3,26,43,28,3.96\r\n,Del Paso Manor Elementary,San Juan Unified,Sacramento,853,7,8,1,10,2,20,1,57,1,41,27,0,10,6,9,29,30,N/A,79,4,11,19,33,34,3.81\r\n,Park Dale Lane Elementary,Encinitas Union Elementary,San Diego,853,7,1,0,4,0,28,0,64,3,21,2,1,17,3,13,23,28,N/A,95,7,8,21,31,33,3.74\r\n,Brea-Olinda High,Brea-Olinda Unified,Orange,853,9,2,0,19,3,29,0,45,1,21,10,0,4,20,7,N/A,N/A,31,93,5,9,26,37,24,3.67\r\n,El Camino High,Ventura Unified,Ventura,853,9,1,0,4,0,25,0,64,6,13,13,0,1,3,0,N/A,N/A,7,99,4,7,33,32,24,3.64\r\nD,Palisades Charter High,Los Angeles Unified,Los Angeles,853,9,16,1,8,1,25,0,48,1,28,37,0,4,19,8,N/A,N/A,25,79,8,11,18,34,29,3.64\r\nD,High Tech LA,Los Angeles Unified,Los Angeles,853,9,3,0,5,4,29,0,57,1,44,25,0,3,22,13,N/A,N/A,28,91,7,11,25,27,30,3.63\r\n,Banyan Elementary,Alta Loma Elementary,San Bernardino,853,7,12,1,10,2,38,1,35,1,35,12,0,8,8,11,23,32,N/A,98,2,11,39,28,21,3.54\r\n,Isaac Newton Graham Middle,Mountain View Whisman,Santa Clara,853,8,1,0,14,3,42,1,32,5,41,24,0,27,23,11,N/A,26,29,95,14,15,12,23,36,3.53\r\n,Language Academy,San Diego Unified,San Diego,853,7,16,0,2,0,53,0,21,7,51,28,0,23,11,6,23,26,25,91,7,12,27,29,25,3.53\r\n,,Hickman Community Charter,Stanislaus,853,B,1,1,2,1,22,0,72,0,33,16,0,6,1,9,22,28,27,97,4,11,34,29,21,3.51\r\n,Arcade Fundamental Middle,San Juan Unified,Sacramento,853,8,8,1,5,2,20,1,62,1,45,12,0,7,9,7,N/A,25,28,82,6,15,25,34,20,3.47\r\n,New Traditions Elementary,San Francisco Unified,San Francisco,853,7,26,1,9,4,12,0,37,4,42,13,0,12,3,17,20,29,N/A,82,6,16,28,25,25,3.46\r\n,Steve Luther Elementary,Cypress Elementary,Orange,853,7,3,0,29,8,33,1,22,3,39,9,0,17,9,12,20,29,N/A,95,4,17,32,35,12,3.34\r\n,Shivela Middle,Murrieta Valley Unified,Riverside,853,8,7,0,3,4,38,0,42,5,36,6,0,2,7,11,N/A,30,28,97,4,15,40,30,11,3.28\r\n,Cajon Park Elementary,Santee Elementary,San Diego,853,7,1,0,1,1,21,1,65,9,31,19,0,5,3,15,23,31,25,99,3,20,37,27,12,3.25\r\n,,Mulberry Elementary,Imperial,853,B,0,0,0,3,55,0,38,4,48,0,0,14,15,7,18,N/A,N/A,100,7,16,36,27,14,3.25\r\n,John Adams Elementary,Torrance Unified,Los Angeles,853,7,3,0,19,3,42,0,22,9,45,4,0,18,9,15,30,36,N/A,72,11,16,27,32,15,3.23\r\n,Moore Middle,Redlands Unified,San Bernardino,853,8,7,1,5,1,44,1,39,2,52,15,0,7,7,15,N/A,29,28,95,12,17,32,18,21,3.19\r\n,Lyle S. Briggs Fundamental,Chino Valley Unified,San Bernardino,853,7,1,1,4,1,68,0,24,1,40,4,0,7,6,9,30,31,30,81,4,24,34,28,10,3.17\r\n,Northmont Elementary,La Mesa-Spring Valley,San Diego,853,7,6,0,1,1,38,0,47,6,46,9,0,14,6,15,27,27,N/A,93,6,21,40,22,11,3.12\r\n,Fernando Rivera Intermediate,Jefferson Elementary,San Mateo,853,8,4,0,29,39,15,1,7,5,44,14,0,14,25,6,N/A,N/A,30,91,5,24,33,36,3,3.08\r\n,Lu Sutton Elementary,Novato Unified,Marin,853,7,4,0,4,0,45,1,33,11,50,0,0,31,7,6,19,31,N/A,99,13,23,23,28,13,3.06\r\nD,Aspire Port City Academy,SBC - Aspire Public Schools,El Dorado,853,7,21,3,3,3,51,0,11,6,78,0,0,12,2,7,24,31,N/A,98,7,30,39,14,10,2.91\r\n,Workman Avenue Elementary,Covina-Valley Unified,Los Angeles,853,7,3,0,6,2,78,0,8,2,70,6,0,27,7,13,23,27,N/A,99,13,28,31,21,8,2.83\r\n,Rudecinda Sepulveda Dodson Middle,Los Angeles Unified,Los Angeles,853,8,11,0,4,5,62,1,15,1,65,35,0,6,19,9,N/A,32,29,74,22,21,26,21,10,2.77\r\n,Palmer Way,National Elementary,San Diego,853,7,3,0,9,17,64,1,4,2,100,26,0,60,8,9,21,30,N/A,96,20,31,24,23,3,2.58\r\n,Lomita Park Elementary,Millbrae Elementary,San Mateo,853,7,1,0,10,8,54,6,16,5,65,1,0,53,14,12,26,27,N/A,92,14,52,5,24,5,2.56\r\n,Valley Center Middle,Valley Center-Pauma Unified,San Diego,853,8,1,10,1,2,42,0,44,1,46,9,2,18,15,9,N/A,27,29,99,31,24,26,13,6,2.39\r\n,Valley Center Elementary,Valley Center-Pauma Unified,San Diego,853,7,0,11,1,1,41,0,42,3,49,7,2,28,6,15,30,28,N/A,100,34,19,29,12,6,2.38\r\n,Geyserville Elementary,Geyserville Unified,Sonoma,853,7,1,0,1,0,58,1,38,0,64,0,7,43,0,13,21,23,N/A,93,38,17,27,13,6,2.31\r\n,Guerneville Elementary,Guerneville Elementary,Sonoma,853,7,2,3,1,0,21,0,71,0,63,1,2,17,3,21,22,16,21,98,26,36,23,12,3,2.3\r\n,,Wright Elementary,Sonoma,853,B,4,2,8,1,60,0,25,0,74,7,2,43,9,13,20,24,22,82,24,39,23,13,1,2.27\r\n,Centerville Elementary,Sanger Unified,Fresno,853,7,1,1,3,0,63,0,32,0,86,0,2,11,16,5,22,35,N/A,100,26,40,26,7,0,2.14\r\nD,Aspire Titan Academy,SBC - Aspire Public Schools,El Dorado,853,7,0,0,0,0,99,0,0,0,100,0,0,59,21,7,22,29,N/A,93,30,48,15,4,2,2\r\n,Sir Francis Drake High,Tamalpais Union High,Marin,852,9,1,0,2,0,8,0,84,4,10,26,0,1,2,11,N/A,N/A,20,96,1,3,12,40,44,4.23\r\nD,CHIME Institute's Schwarzenegger Communi,Los Angeles Unified,Los Angeles,852,7,8,1,11,3,15,1,61,1,15,4,0,10,12,16,22,24,N/A,89,1,7,21,40,32,3.96\r\nD,Discovery Charter,Tracy Joint Unified,San Joaquin,852,8,8,1,15,5,32,1,33,5,1,3,0,6,13,3,N/A,33,32,94,3,11,15,30,41,3.95\r\n,Albany High,Albany City Unified,Alameda,852,9,5,0,34,1,18,0,32,10,24,0,0,12,14,9,N/A,N/A,28,24,3,8,22,38,28,3.8\r\n,Lincoln Crossing Elementary,Western Placer Unified,Placer,852,7,1,2,8,5,17,1,62,5,19,8,0,8,1,10,25,30,N/A,98,1,6,32,44,17,3.69\r\n,Arden Middle,San Juan Unified,Sacramento,852,8,8,2,5,2,19,1,64,0,36,14,0,7,5,10,N/A,29,30,77,5,13,20,32,30,3.69\r\n,Wicklund Elementary,Lammersville Joint Unified,San Joaquin,852,7,12,0,24,13,21,0,25,2,26,16,0,9,0,10,22,29,N/A,95,3,18,35,31,14,3.34\r\n,Norco Elementary,Corona-Norco Unified,Riverside,852,7,4,0,8,2,35,0,50,0,31,19,0,7,9,13,20,28,N/A,89,6,18,34,28,15,3.28\r\n,Louis Pasteur Fundamental Middle,San Juan Unified,Sacramento,852,8,4,2,1,0,15,0,76,1,42,8,0,2,5,12,N/A,31,29,70,2,22,31,39,7,3.27\r\n,Clark Intermediate,Clovis Unified,Fresno,852,8,2,1,8,1,34,0,50,3,48,7,1,3,7,7,N/A,N/A,31,98,5,20,32,26,16,3.27\r\n,Mulberry Elementary,Mulberry Elementary,Imperial,852,7,0,0,0,3,54,0,39,4,47,0,0,13,15,6,18,N/A,N/A,100,7,15,36,28,14,3.26\r\n,Donaldson Way Elementary,Napa Valley Unified,Napa,852,7,5,0,5,24,34,2,21,8,37,6,2,14,16,7,29,30,N/A,94,7,18,33,35,8,3.19\r\n,Northwood Elementary,Napa Valley Unified,Napa,852,7,1,1,2,1,38,0,53,5,35,8,1,13,12,11,28,32,N/A,98,9,20,28,28,15,3.18\r\n,Los Coyotes Middle,Norwalk-La Mirada Unified,Los Angeles,852,8,1,0,13,4,58,0,22,0,33,33,1,2,10,5,N/A,34,34,97,6,27,27,27,12,3.12\r\n,Herbert C. Green Middle,Mother Lode Union Elementary,El Dorado,852,8,1,2,0,0,26,1,70,1,36,0,0,5,8,12,N/A,29,26,87,9,20,34,26,11,3.1\r\nY,Hickman Elementary,Hickman Community Charter,Stanislaus,852,7,1,1,1,0,34,0,62,0,42,11,0,17,0,12,22,27,N/A,96,10,16,36,28,10,3.1\r\n,Point Fermin Elementary,Los Angeles Unified,Los Angeles,852,7,11,4,2,2,52,3,25,0,62,9,0,5,4,12,16,5,N/A,82,7,21,40,21,10,3.04\r\n,Crossroads Elementary,Sylvan Union Elementary,Stanislaus,852,7,3,0,5,3,44,1,42,1,42,2,0,18,2,15,31,32,N/A,98,6,26,39,22,7,2.98\r\n,Sutterville Elementary,Sacramento City Unified,Sacramento,852,7,11,1,17,1,23,1,43,3,45,33,0,13,3,9,26,32,N/A,65,12,28,28,18,14,2.93\r\n,John Marshall Elementary,Glendale Unified,Los Angeles,852,7,2,0,4,8,23,0,61,1,83,4,0,57,13,14,23,32,N/A,78,12,41,12,19,16,2.87\r\n,Cabrillo Elementary,Upland Unified,San Bernardino,852,7,16,0,6,3,61,1,12,0,81,11,0,23,11,10,22,28,N/A,97,11,28,44,14,3,2.69\r\n,Tarpey Elementary,Clovis Unified,Fresno,852,7,5,1,10,0,51,0,29,4,85,1,1,18,5,2,24,34,N/A,100,12,37,28,16,6,2.66\r\n,Monte Vista Elementary,West Covina Unified,Los Angeles,852,7,3,0,10,3,76,0,7,0,72,11,0,14,21,12,20,28,N/A,93,12,31,42,12,4,2.64\r\nD,Santiago Middle,Orange Unified,Orange,852,8,0,0,5,2,61,0,30,1,52,9,0,18,15,9,N/A,N/A,30,96,28,22,22,19,9,2.6\r\n,Santa Ynez Elementary,College Elementary,Santa Barbara,852,7,1,7,0,0,51,0,37,1,45,15,0,35,9,5,8,9,4,77,33,21,14,20,12,2.56\r\n,Castelar Street Elementary,Los Angeles Unified,Los Angeles,852,7,2,0,69,0,26,0,1,0,100,7,0,45,35,5,22,23,N/A,49,23,44,14,14,5,2.33\r\n,Ernest R. Geddes Elementary,Baldwin Park Unified,Los Angeles,852,7,1,0,3,2,92,0,2,0,94,4,3,45,20,14,18,23,N/A,76,41,43,12,4,1,1.79\r\n,,Jefferson Elementary,San Benito,851,B,0,0,0,0,50,0,43,7,0,0,0,50,0,7,2,2,N/A,29,0,0,0,50,50,4.5\r\n,Jefferson Elementary,Jefferson Elementary,San Benito,851,7,0,0,0,0,50,0,43,7,0,0,0,50,0,7,2,2,N/A,29,0,0,0,50,50,4.5\r\n,Birch Lane Elementary,Davis Joint Unified,Yolo,851,7,4,3,9,2,17,1,63,0,26,6,0,6,2,15,24,30,N/A,93,1,6,16,29,47,4.14\r\nD,Big Sur Charter,Pacific Unified,Monterey,851,7,3,0,5,0,20,0,70,0,30,0,0,10,0,15,11,7,1,98,5,5,13,31,46,4.08\r\nD,REACH,Sebastopol Union Elementary,Sonoma,851,7,0,0,2,0,9,0,71,5,8,2,0,2,0,15,N/A,21,N/A,95,0,3,27,30,40,4.06\r\n,San Dieguito High Academy,San Dieguito Union High,San Diego,851,9,1,1,5,1,22,0,71,0,10,44,1,4,10,9,N/A,N/A,34,97,8,5,16,34,38,3.91\r\n,,Claremont Unified,Los Angeles,851,B,6,0,10,1,37,0,41,4,35,0,0,4,9,11,23,30,30,90,3,13,22,26,37,3.8\r\n,,Nevada City Elementary,Nevada,851,B,1,2,2,0,5,0,86,2,30,0,0,0,1,12,22,26,24,100,1,11,30,30,29,3.75\r\n,Del Lago Elementary,Saddleback Valley Unified,Orange,851,7,1,0,3,4,30,0,57,4,25,5,0,20,1,17,28,33,N/A,76,3,14,27,35,21,3.58\r\nY,Santa Rosa Charter School for the Arts,Santa Rosa City Schools,Sonoma,851,7,2,0,1,1,27,0,62,7,35,6,1,9,3,13,21,16,24,97,9,14,23,29,26,3.5\r\n,Antelope Crossing Middle,Dry Creek Joint Elementary,Placer,851,7,8,0,11,2,17,1,55,5,43,8,0,9,16,8,N/A,29,29,97,2,15,36,34,12,3.4\r\n,Castaic Middle,Castaic Union Elementary,Los Angeles,851,7,4,0,3,4,34,0,51,3,19,16,0,6,7,8,N/A,33,32,90,1,22,27,38,12,3.39\r\nD,Santa Rosa Academy,Menifee Union Elementary,Riverside,851,7,7,1,2,2,30,1,55,0,22,0,0,1,1,6,19,20,12,57,1,17,43,27,12,3.32\r\n,Pinetree Community Elementary,Sulphur Springs Union,Los Angeles,851,7,5,1,3,0,36,0,50,4,28,6,0,8,4,12,21,29,N/A,93,3,22,34,26,15,3.28\r\nY,Orcutt Academy Charter,Orcutt Union Elementary,Santa Barbara,851,9,1,1,1,3,34,1,57,2,29,1,1,2,6,5,28,9,25,93,5,15,43,21,16,3.27\r\n,Green Valley Middle,Fairfield-Suisun Unified,Solano,851,7,15,0,5,14,25,1,29,8,27,25,0,5,10,7,N/A,N/A,31,98,6,19,30,36,10,3.26\r\n,Kenilworth Junior High,Petaluma City Schools,Sonoma,851,7,1,0,4,1,37,0,52,5,43,8,0,16,18,12,N/A,N/A,27,95,12,17,22,33,16,3.25\r\n,Cherrywood Elementary,Berryessa Union Elementary,Santa Clara,851,7,2,1,56,13,21,0,3,4,32,4,0,47,13,8,23,31,N/A,100,9,16,33,29,13,3.21\r\n,,Columbia Union,Tuolumne,851,B,2,1,1,0,9,0,82,2,54,2,0,0,0,11,19,27,24,94,3,27,42,16,12,3.08\r\n,Indian Creek Elementary,Mother Lode Union Elementary,El Dorado,851,7,1,3,1,0,29,0,63,3,49,0,1,17,1,13,25,29,N/A,85,11,18,36,24,11,3.06\r\n,Freedom Crest Elementary,Menifee Union Elementary,Riverside,851,7,10,0,2,4,43,2,39,0,47,5,0,11,7,8,26,26,N/A,83,6,21,45,22,6,3.01\r\n,Daniel Lewis Middle,Paso Robles Joint Unified,San Luis Obispo,851,7,2,1,1,1,45,0,49,1,42,8,3,14,15,11,N/A,27,26,82,12,20,40,21,7,2.92\r\n,Mariano Castro Elementary,Mountain View Whisman,Santa Clara,851,7,1,0,3,0,71,0,17,6,61,15,0,61,5,12,25,25,N/A,96,28,23,7,16,27,2.91\r\n,Jefferson Elementary,Carlsbad Unified,San Diego,851,7,1,0,2,0,57,0,35,3,52,20,5,34,5,13,31,33,N/A,96,24,20,18,20,19,2.89\r\n,Scott Valley Junior High,Scott Valley Unified,Siskiyou,851,7,0,10,2,0,5,0,75,8,56,0,0,2,0,15,N/A,N/A,21,98,6,41,21,29,3,2.82\r\n,Orchard Elementary,Sylvan Union Elementary,Stanislaus,851,7,4,1,3,3,41,1,44,4,58,3,0,16,6,12,27,30,N/A,97,8,42,26,17,7,2.72\r\n,Mary McLeod Bethune Elementary,Val Verde Unified,Riverside,851,7,22,0,3,3,59,0,6,2,82,11,0,23,7,13,23,26,N/A,88,17,25,37,18,3,2.66\r\n,Jackson Elementary,Sanger Unified,Fresno,851,7,1,1,1,0,81,0,15,1,84,1,1,15,3,5,23,29,N/A,98,16,22,43,19,0,2.66\r\nD,Aspire Berkley Maynard Academy,Oakland Unified,Alameda,851,7,53,0,2,0,41,0,1,0,68,0,0,16,17,6,22,30,27,91,14,34,36,13,4,2.6\r\n,Harmony Elementary,Hemet Unified,Riverside,851,7,8,1,2,2,47,0,36,4,73,0,0,14,4,10,27,31,N/A,100,15,34,35,10,6,2.58\r\n,Garvey (Richard) Intermediate,Garvey Elementary,Los Angeles,851,7,0,0,58,1,38,0,1,1,80,27,1,26,41,7,N/A,N/A,26,93,25,42,12,12,8,2.36\r\n,,Nicasio,Marin,850,B,0,0,3,0,24,0,73,0,0,0,0,18,6,12,13,N/A,N/A,18,0,17,0,33,50,4.17\r\n,Rancho Bernardo High,Poway Unified,San Diego,850,9,3,0,18,6,13,1,56,4,9,15,0,5,12,8,N/A,N/A,35,92,1,4,17,41,36,4.07\r\nD,Redding School of the Arts II,Gateway Unified,Shasta,850,7,1,4,5,1,8,0,78,4,24,0,0,0,1,5,24,28,28,99,0,4,23,38,35,4.04\r\nY,Alternative Cooperative Education Charte,Vacaville Unified,Solano,850,7,2,1,7,0,6,1,81,1,16,10,0,0,2,6,27,29,N/A,98,0,4,20,47,28,4\r\n,,Bolinas-Stinson Union,Marin,850,B,1,0,3,0,14,0,69,11,39,0,0,9,3,16,2,2,N/A,77,4,4,19,36,36,3.94\r\n,Bolinas-Stinson Elementary,Bolinas-Stinson Union,Marin,850,7,1,0,3,0,14,0,69,12,40,0,0,9,3,15,2,2,N/A,78,4,4,19,36,36,3.94\r\n,Twin Lakes Elementary,San Juan Unified,Sacramento,850,7,2,2,5,1,11,1,78,1,26,8,0,2,2,11,30,32,N/A,28,1,8,19,48,25,3.89\r\n,Canyon High,Orange Unified,Orange,850,9,2,0,20,3,19,0,54,2,11,25,0,3,6,7,N/A,N/A,29,95,2,9,22,40,26,3.79\r\n,,Trinidad Union Elementary,Humboldt,850,B,0,4,1,0,8,0,68,7,69,14,0,0,0,9,,,,52,3,13,9,54,21,3.78\r\n,Marina High,Huntington Beach Union High,Orange,850,9,1,7,17,2,16,0,53,1,20,13,0,3,13,10,N/A,N/A,27,0,0,25,0,50,25,3.75\r\nY,Wheatland Charter Academy,Wheatland,Yuba,850,7,10,0,0,2,13,3,72,0,32,10,0,7,0,23,16,24,N/A,97,0,17,24,29,29,3.71\r\n,Seven Hills Intermediate,Nevada City Elementary,Nevada,850,7,1,2,2,0,4,0,87,1,30,0,0,0,1,10,N/A,25,24,100,1,12,30,32,25,3.69\r\n,Olympian High,Sweetwater Union High,San Diego,850,9,8,1,4,25,53,1,9,0,34,22,0,10,22,8,N/A,N/A,30,96,3,11,24,42,20,3.63\r\n,Great Oak High,Temecula Valley Unified,Riverside,850,9,4,2,5,6,28,1,49,6,11,13,0,2,6,10,N/A,N/A,32,98,3,9,32,37,19,3.6\r\nD,Bay View Academy,Monterey County Office of Educ,Monterey,850,7,9,0,2,1,33,1,43,7,22,0,0,16,5,8,25,25,N/A,97,8,13,24,23,32,3.57\r\n,San Juan Hills High,Capistrano Unified,Orange,850,9,1,0,2,2,33,0,57,4,32,12,0,11,15,8,N/A,N/A,28,77,12,12,21,30,25,3.44\r\n,Malloch Elementary,Fresno Unified,Fresno,850,7,13,1,2,1,35,0,45,0,49,3,0,3,2,8,26,33,N/A,75,3,20,32,27,19,3.39\r\n,Albert A. Michelson Elementary,Vallecito Union,Calaveras,850,7,0,1,0,1,13,0,84,1,35,0,0,8,1,11,16,23,N/A,92,7,6,44,31,13,3.37\r\n,Bixby Elementary,Long Beach Unified,Los Angeles,850,7,17,0,10,3,39,1,25,1,52,4,1,11,7,18,26,30,N/A,90,7,15,30,31,16,3.35\r\n,Centennial High,Kern Union High,Kern,850,9,2,1,2,2,29,0,59,2,21,24,0,1,6,6,N/A,N/A,25,96,4,20,32,27,18,3.34\r\n,,Union Hill Elementary,Nevada,850,B,1,1,1,0,6,0,88,4,27,0,0,0,0,9,21,25,26,94,1,19,39,26,14,3.33\r\n,Terrace View Elementary,Colton Joint Unified,San Bernardino,850,7,5,0,2,2,54,0,35,1,39,27,0,4,3,11,20,29,N/A,96,3,16,48,17,17,3.29\r\n,Olive Elementary,Novato Unified,Marin,850,7,2,0,2,1,36,0,53,6,39,2,0,25,5,12,20,26,N/A,98,15,14,25,30,16,3.19\r\n,William G. Paden Elementary,Alameda City Unified,Alameda,850,7,21,0,23,11,11,2,30,1,50,6,0,30,6,14,22,25,N/A,99,10,21,28,27,13,3.13\r\n,,Valley Home Joint Elementary,Stanislaus,850,B,0,0,1,0,40,0,57,2,56,0,0,32,4,4,5,2,N/A,54,11,28,20,26,15,3.05\r\n,Valley Home Elementary,Valley Home Joint Elementary,Stanislaus,850,7,0,0,1,0,40,0,57,2,56,0,0,32,4,4,5,2,N/A,54,11,28,20,26,15,3.05\r\n,Standiford Elementary,Sylvan Union Elementary,Stanislaus,850,7,3,1,5,2,42,1,43,4,55,26,0,15,5,17,30,29,N/A,96,6,25,38,22,9,3.02\r\n,,Browns Elementary,Sutter,850,B,6,1,5,2,31,0,56,0,44,20,0,2,13,8,19,20,N/A,86,17,10,45,14,15,3.01\r\n,,Forestville Union Elementary,Sonoma,850,B,3,3,1,1,22,1,69,0,44,0,1,8,3,11,17,21,20,67,9,27,28,30,7,3\r\n,Eaton Elementary,Fresno Unified,Fresno,850,7,6,0,7,1,48,0,35,0,64,4,0,4,3,11,26,22,N/A,56,7,27,37,18,11,2.99\r\n,,Two Rock Union,Sonoma,850,B,2,0,2,1,40,0,54,0,50,0,9,27,6,17,15,20,N/A,98,20,13,31,22,13,2.96\r\n,Brentwood Science,Los Angeles Unified,Los Angeles,850,7,23,0,12,2,51,0,11,0,76,15,1,21,21,6,18,20,N/A,60,17,21,26,25,11,2.93\r\n,Parkview Elementary,Oak Grove Elementary,Santa Clara,850,7,6,0,30,9,44,0,8,0,47,21,0,37,22,3,25,31,N/A,97,13,24,30,28,6,2.9\r\n,Joseph Weller Elementary,Milpitas Unified,Santa Clara,850,7,8,0,32,23,27,0,6,2,54,4,0,35,19,12,24,29,N/A,92,12,26,31,26,6,2.88\r\n,,Menifee Union Elementary,Riverside,850,B,7,0,3,5,43,1,41,0,45,11,0,11,8,10,25,26,23,83,10,23,44,18,4,2.83\r\n,Thomas Olaeta Elementary,Atwater Elementary,Merced,850,7,5,1,10,1,56,1,26,0,76,11,1,18,19,11,24,32,N/A,93,15,23,37,14,11,2.82\r\n,Lasselle Elementary,Val Verde Unified,Riverside,850,7,21,0,2,3,56,1,8,3,71,13,0,23,5,11,28,30,N/A,92,12,27,34,22,5,2.81\r\n,Earl Warren Junior High,Panama-Buena Vista Union,Kern,850,7,8,0,13,4,39,0,34,1,37,20,0,3,14,6,N/A,N/A,30,73,9,40,19,28,4,2.77\r\n,,North County Joint Union Eleme,San Benito,850,B,0,0,0,0,52,0,1,0,40,0,10,15,6,10,25,34,N/A,87,16,29,24,26,6,2.76\r\n,Spring Grove Elementary,North County Joint Union Eleme,San Benito,850,7,0,0,0,0,52,0,1,0,40,0,10,15,6,10,25,34,N/A,87,16,29,24,26,6,2.76\r\n,Fancher Creek Elementary,Clovis Unified,Fresno,850,7,4,0,21,0,56,0,18,1,75,1,1,13,13,4,25,35,N/A,99,12,31,35,18,5,2.73\r\n,Ceres Elementary,East Whittier City Elementary,Los Angeles,850,7,0,1,1,2,89,0,6,0,65,1,0,30,3,14,19,24,N/A,92,14,30,39,12,4,2.62\r\n,Van Ness Avenue Elementary,Los Angeles Unified,Los Angeles,850,7,5,1,8,7,73,0,6,0,90,7,1,31,14,22,19,16,N/A,98,22,26,26,19,7,2.62\r\n,Lakeside Middle,Little Lake City Elementary,Los Angeles,850,7,3,0,2,3,86,0,5,0,67,29,0,10,21,10,N/A,27,27,94,11,37,33,16,2,2.61\r\n,Bryson Avenue Elementary,Los Angeles Unified,Los Angeles,850,7,0,0,0,0,98,0,1,0,86,11,1,22,29,8,18,20,N/A,81,19,27,34,13,6,2.61\r\n,Tomales Elementary,Shoreline Unified,Marin,850,7,0,0,0,0,52,1,47,0,54,0,3,39,9,22,17,23,N/A,78,33,31,4,22,10,2.44\r\n,Pinedale Elementary,Clovis Unified,Fresno,850,7,6,3,8,0,74,0,8,1,87,0,2,16,12,14,22,28,N/A,93,24,35,26,10,5,2.37\r\nD,Gateway Middle,San Francisco Unified,San Francisco,850,7,11,0,17,5,28,0,34,2,41,38,0,12,16,16,N/A,25,N/A,87,3,79,3,9,6,2.34\r\n,James McEntee Academy,Alum Rock Union Elementary,Santa Clara,850,7,2,1,13,10,70,1,2,1,100,6,2,34,39,11,19,33,N/A,93,36,27,17,15,5,2.27\r\n,Marguerite Montgomery Elementary,Davis Joint Unified,Yolo,849,7,4,0,11,1,40,1,43,0,47,6,3,26,13,12,23,27,N/A,81,9,14,12,25,40,3.71\r\n,Apple Blossom,Twin Hills Union Elementary,Sonoma,849,7,2,0,1,0,20,0,76,0,26,0,1,12,0,11,20,23,N/A,95,6,10,22,34,28,3.7\r\n,San Clemente High,Capistrano Unified,Orange,849,9,1,0,2,1,24,0,67,5,22,14,0,6,10,10,N/A,N/A,29,51,6,8,23,36,27,3.69\r\n,,San Luis Coastal Unified,San Luis Obispo,849,B,1,0,4,2,25,0,63,4,35,0,0,14,3,11,22,27,25,96,7,12,20,30,31,3.66\r\n,Sonoma Mountain Elementary,Old Adobe Union,Sonoma,849,7,1,1,8,2,17,1,71,0,15,4,0,18,2,14,25,32,N/A,85,5,11,19,41,23,3.64\r\nD,Escondido Charter High,Escondido Union High,San Diego,849,9,2,1,2,2,26,1,64,3,18,0,0,0,2,1,N/A,N/A,19,98,4,13,31,32,20,3.51\r\n,Paradise Valley/Machado Elementary,Morgan Hill Unified,Santa Clara,849,7,2,0,8,2,30,0,57,0,22,14,1,14,4,14,27,28,N/A,96,6,13,27,38,17,3.48\r\n,Golden West Middle,Travis Unified,Solano,849,7,16,0,7,12,20,1,39,7,28,8,0,1,8,10,N/A,N/A,31,97,2,9,41,35,13,3.47\r\n,Spring Valley Elementary,Chawanakee Unified,Madera,849,7,0,6,0,0,14,0,79,1,31,0,0,1,0,6,20,25,N/A,99,3,16,32,38,12,3.39\r\n,Anthony C. Traina Elementary,Jefferson Elementary,San Joaquin,849,7,11,1,19,9,34,1,24,1,33,15,0,26,7,9,20,29,31,96,3,16,34,32,14,3.37\r\n,Goleta Valley Junior High,Santa Barbara Unified,Santa Barbara,849,7,1,0,6,1,50,0,37,5,38,30,0,16,23,16,N/A,N/A,28,93,14,14,18,28,25,3.36\r\n,Crestmoor Elementary,San Bruno Park Elementary,San Mateo,849,7,1,0,17,7,29,5,32,7,24,8,0,23,8,20,25,20,N/A,96,6,17,28,36,13,3.33\r\nD,Summit Public School: Tahoma,Santa Clara County Office of E,Santa Clara,849,9,6,0,14,5,63,0,12,0,46,0,0,15,15,4,N/A,N/A,23,91,11,18,29,13,29,3.33\r\n,Antelope Elementary,Antelope Elementary,Tehama,849,7,1,2,2,0,22,0,71,1,51,0,1,11,3,7,23,30,N/A,99,7,13,33,34,13,3.33\r\n,Andasol Avenue Elementary,Los Angeles Unified,Los Angeles,849,7,11,0,15,11,40,0,23,0,56,13,0,15,10,14,16,12,N/A,84,5,18,29,35,13,3.33\r\n,Cielo Vista Elementary,Saddleback Valley Unified,Orange,849,7,1,1,3,5,45,0,40,4,41,4,0,30,4,16,28,31,N/A,76,12,14,22,36,16,3.29\r\nY,Westlake Charter Middle,Natomas Unified,Sacramento,849,7,32,0,13,5,25,0,18,4,30,7,0,13,2,9,N/A,28,N/A,82,4,15,41,26,13,3.28\r\n,Walnut Elementary,Conejo Valley Unified,Ventura,849,7,1,1,5,2,38,0,52,1,40,18,0,24,4,12,20,26,N/A,95,8,21,21,35,15,3.28\r\n,Judkins Middle,Lucia Mar Unified,San Luis Obispo,849,7,1,0,2,1,38,0,55,2,51,16,1,16,8,11,N/A,N/A,26,85,10,15,28,31,16,3.28\r\n,Murrieta Elementary,Murrieta Valley Unified,Riverside,849,7,2,0,1,2,40,0,46,8,35,7,0,10,4,7,25,31,N/A,98,8,14,36,27,14,3.25\r\n,,ABC Unified,Los Angeles,849,B,10,0,26,11,42,1,7,2,50,17,6,19,16,9,25,29,27,93,12,16,23,32,16,3.25\r\n,Bullard Talent Project,Fresno Unified,Fresno,849,7,13,1,1,0,61,1,23,0,59,4,0,3,6,4,29,22,24,90,5,18,42,18,17,3.25\r\n,Pioneer Elementary,Brentwood Union Elementary,Contra Costa,849,7,10,0,7,8,28,0,41,5,21,3,0,14,3,13,24,31,N/A,93,3,17,39,32,8,3.24\r\n,Spring View Middle,Ocean View,Orange,849,7,2,0,7,2,32,1,50,6,34,1,0,9,13,12,N/A,28,29,95,9,17,32,28,14,3.19\r\n,Ione Junior High,Amador County Unified,Amador,849,7,0,3,1,1,17,1,72,3,40,10,0,1,6,6,N/A,25,24,96,4,23,40,25,8,3.11\r\n,Laurel Elementary,Oakley Union Elementary,Contra Costa,849,7,4,0,1,2,38,0,48,6,40,0,0,9,2,17,26,28,N/A,99,5,23,39,22,11,3.11\r\n,Crest Elementary,Cajon Valley Union,San Diego,849,7,0,0,2,0,20,0,75,1,42,5,0,9,1,4,23,29,N/A,98,0,28,43,19,10,3.11\r\n,,Mother Lode Union Elementary,El Dorado,849,B,1,2,1,0,27,0,67,2,41,0,1,10,5,14,25,29,26,85,10,19,35,25,11,3.08\r\n,Thomas Edison Elementary,Jefferson Elementary,San Mateo,849,7,3,0,24,47,12,2,6,6,45,3,0,39,17,3,22,32,N/A,91,5,22,34,36,3,3.08\r\n,Highland Elementary,Corona-Norco Unified,Riverside,849,7,3,0,2,2,35,0,57,0,30,4,0,10,4,15,24,28,N/A,93,9,20,40,19,12,3.06\r\n,Browns Elementary,Browns Elementary,Sutter,849,7,6,1,5,2,31,0,56,0,44,21,0,2,13,7,19,20,N/A,86,17,9,45,14,15,3.02\r\n,Hamilton Meadow Park,Novato Unified,Marin,849,7,7,1,4,1,52,0,34,0,59,1,0,33,16,14,20,28,26,100,17,21,23,23,16,3\r\n,Marengo Ranch Elementary,Galt Joint Union Elementary,Sacramento,849,7,1,0,3,1,41,1,51,0,49,11,1,9,10,15,20,28,N/A,95,9,22,38,21,9,2.99\r\n,Golden Empire Elementary,Sacramento City Unified,Sacramento,849,7,13,2,8,2,30,1,33,11,72,15,0,16,12,13,26,29,N/A,96,12,21,36,21,11,2.98\r\n,Catherine L. Zane Middle,Eureka City Schools,Humboldt,849,7,4,6,9,1,15,1,57,7,59,11,0,6,10,13,N/A,N/A,23,89,10,22,39,19,9,2.95\r\n,San Lauren Elementary,Beardsley Elementary,Kern,849,7,5,1,2,1,38,1,51,0,59,0,0,9,5,4,27,31,N/A,96,8,32,35,16,10,2.89\r\n,McKinley Elementary,San Gabriel Unified,Los Angeles,849,7,0,0,77,1,20,0,1,0,65,4,0,74,2,4,29,33,N/A,97,13,33,20,27,8,2.85\r\n,Carson Street Elementary,Los Angeles Unified,Los Angeles,849,7,5,0,3,27,56,5,4,0,71,4,0,13,12,7,15,14,N/A,93,16,23,29,27,5,2.82\r\n,Walt Disney Elementary,Magnolia Elementary,Orange,849,7,2,0,22,2,55,0,15,3,66,9,0,35,29,6,26,31,N/A,92,20,24,24,25,7,2.74\r\n,Rockdale Elementary,Los Angeles Unified,Los Angeles,849,7,3,2,5,11,74,0,5,0,70,8,0,13,13,16,14,12,N/A,80,9,39,34,14,3,2.63\r\n,California Elementary,West Covina Unified,Los Angeles,849,7,7,0,10,5,73,0,5,0,75,17,0,12,19,12,19,29,N/A,91,11,39,35,15,1,2.57\r\n,Seventy-Fourth Street Elementary,Los Angeles Unified,Los Angeles,849,7,73,0,0,0,26,0,0,0,100,14,0,4,5,10,15,13,N/A,23,24,32,33,6,5,2.36\r\n,Towne Avenue Elementary,Los Angeles Unified,Los Angeles,849,7,20,0,2,4,70,1,2,0,85,8,0,17,13,17,16,12,N/A,87,11,54,26,7,2,2.34\r\n,Bella Vista Elementary,Oakland Unified,Alameda,849,7,18,0,57,1,18,0,3,1,38,30,0,47,20,17,23,25,N/A,72,25,37,24,11,3,2.31\r\n,,Nuestro Elementary,Sutter,848,B,0,0,11,0,15,0,71,3,28,0,0,6,2,7,1,1,5,10,0,0,0,18,82,4.82\r\n,Nuestro Elementary,Nuestro Elementary,Sutter,848,7,0,0,11,0,15,0,71,3,28,0,0,6,2,7,8,3,N/A,10,0,0,0,18,82,4.82\r\nD,Odyssey Charter,Los Angeles County Office of E,Los Angeles,848,7,19,1,2,0,36,0,31,10,29,0,0,5,2,12,10,10,N/A,95,1,7,22,40,30,3.92\r\n,Trinidad Elementary,Trinidad Union Elementary,Humboldt,848,7,0,4,1,0,8,0,67,7,69,14,0,0,0,8,,,,53,3,13,9,54,21,3.78\r\n,Thousand Oaks High,Conejo Valley Unified,Ventura,848,9,1,1,5,2,22,0,67,2,18,22,0,4,8,10,N/A,N/A,28,53,6,8,20,35,31,3.76\r\n,Alvarado Elementary,San Francisco Unified,San Francisco,848,7,5,1,5,2,45,0,32,4,44,12,1,29,7,16,21,23,N/A,81,5,19,13,28,34,3.68\r\n,,SBC - Pacific Technology,El Dorado,848,B,3,1,8,0,30,0,50,8,36,0,0,8,18,9,N/A,17,19,99,6,6,32,27,27,3.63\r\n,Templeton High,Templeton Unified,San Luis Obispo,848,9,1,1,1,0,18,0,74,4,9,17,0,2,3,7,N/A,N/A,26,94,2,14,28,34,22,3.59\r\n,Murrieta Valley High,Murrieta Valley Unified,Riverside,848,9,4,1,4,3,27,0,58,3,19,10,0,1,5,8,N/A,N/A,29,95,3,10,36,33,17,3.5\r\n,Cope Middle,Redlands Unified,San Bernardino,848,7,8,0,13,4,35,1,35,4,54,15,0,8,8,11,N/A,30,28,94,6,18,33,19,25,3.39\r\n,Fletcher Elementary,San Diego Unified,San Diego,848,7,11,0,15,6,27,2,28,10,48,33,0,21,9,19,24,42,N/A,82,2,22,31,32,14,3.34\r\n,Glenview Elementary,Placentia-Yorba Linda Unified,Orange,848,7,2,0,10,2,51,0,33,3,40,3,0,12,5,7,30,35,N/A,50,5,13,38,32,12,3.32\r\n,Sunset Ridge Elementary,Pacifica,San Mateo,848,7,4,1,7,31,27,5,12,13,50,1,0,29,0,7,23,30,N/A,99,3,15,39,37,6,3.29\r\n,Alcott Elementary,San Diego Unified,San Diego,848,7,0,0,1,1,51,0,42,6,61,27,0,33,2,20,20,34,N/A,89,6,21,31,24,19,3.29\r\n,Dr. Augustine Ramirez Intermediate,Corona-Norco Unified,Riverside,848,7,13,0,11,5,45,0,25,1,36,11,0,5,13,12,N/A,N/A,27,87,7,15,38,28,11,3.21\r\n,Riverside Meadows Intermediate,Plumas Lake Elementary,Yuba,848,7,9,1,3,2,22,2,57,3,42,9,0,5,8,11,N/A,28,24,96,4,17,48,21,10,3.17\r\n,Ripona Elementary,Ripon Unified,San Joaquin,848,7,1,1,2,1,37,1,56,2,45,2,1,15,4,8,29,30,N/A,95,7,20,35,28,11,3.16\r\n,Quailwood Elementary,Fruitvale Elementary,Kern,848,7,8,0,0,1,42,0,45,3,46,0,0,4,3,4,24,25,N/A,99,2,19,47,27,6,3.16\r\n,Friendly Hills Elementary,Morongo Unified,San Bernardino,848,7,3,0,0,0,18,0,74,5,66,9,0,3,0,14,26,23,N/A,90,6,15,51,17,12,3.15\r\n,Bonny View Elementary,Redding Elementary,Shasta,848,7,2,9,3,0,7,1,75,4,59,0,0,0,0,8,23,31,N/A,65,3,17,54,21,5,3.08\r\nD,Ridgecrest Charter,SBE - Ridgecrest Charter,Kern,848,7,8,2,1,3,20,0,60,4,57,0,0,1,5,13,,,,94,6,21,46,17,9,3.01\r\n,Mary Lou Dieterich Elementary,Stanislaus Union Elementary,Stanislaus,848,7,7,0,14,2,32,2,38,0,45,4,0,21,6,15,27,28,N/A,95,8,21,43,20,8,2.99\r\n,Breeze Hill Elementary,Vista Unified,San Diego,848,7,3,1,3,1,50,1,36,5,53,0,5,30,7,13,24,34,N/A,91,19,14,26,30,11,2.99\r\n,Lammersville Elementary,Lammersville Joint Unified,San Joaquin,848,7,1,1,9,3,32,3,49,1,30,12,1,9,0,8,21,27,26,94,6,26,36,26,5,2.97\r\n,Fair Oaks Elementary,Oakdale Joint Unified,Stanislaus,848,7,1,1,1,2,29,0,65,1,40,6,3,9,8,12,21,30,N/A,89,8,25,38,22,7,2.95\r\n,Prospect Avenue Elementary,Santee Elementary,San Diego,848,7,5,0,1,2,33,1,46,9,65,5,0,14,10,8,24,31,N/A,99,7,32,34,20,6,2.87\r\n,Rio Calaveras Elementary,Stockton Unified,San Joaquin,848,7,13,2,26,10,42,1,6,0,75,14,0,19,17,5,30,31,31,96,12,31,27,20,10,2.85\r\n,Three Rings Ranch Elementary,Beaumont Unified,Riverside,848,7,6,1,4,0,48,0,40,0,65,1,0,21,2,13,24,26,N/A,83,13,27,37,16,7,2.78\r\n,Magnolia Elementary,Riverside Unified,Riverside,848,7,7,1,1,0,57,0,30,0,68,8,0,19,7,11,27,30,N/A,96,21,18,33,17,11,2.78\r\n,Abraham Lincoln Middle,Selma Unified,Fresno,848,7,0,1,6,0,85,0,7,0,82,9,3,16,29,10,N/A,N/A,24,91,21,27,31,12,9,2.62\r\n,Lone Star Elementary,Sanger Unified,Fresno,848,7,3,0,41,1,45,0,9,1,78,0,2,36,17,7,25,27,N/A,100,22,24,24,28,1,2.6\r\n,William W. Orr Elementary,Little Lake City Elementary,Los Angeles,848,7,3,0,2,1,88,0,6,0,69,10,0,23,8,14,29,30,N/A,96,18,35,29,13,5,2.52\r\n,Rivera Elementary,El Rancho Unified,Los Angeles,848,7,1,0,0,0,98,0,0,0,72,7,0,24,16,6,26,34,N/A,99,17,36,35,8,4,2.46\r\n,Lucille J. Smith Elementary,Lawndale Elementary,Los Angeles,848,7,10,0,8,2,75,1,3,2,83,4,0,35,17,8,24,27,N/A,88,18,35,32,12,3,2.45\r\n,Santa Susana Elementary,Simi Valley Unified,Ventura,848,7,2,2,3,2,63,0,28,1,75,0,0,34,14,23,21,27,N/A,88,22,42,23,8,5,2.3\r\n,Washington Academic Middle,Sanger Unified,Fresno,848,7,1,0,10,1,79,0,8,0,100,3,3,15,28,8,N/A,30,28,100,35,22,26,18,0,2.26\r\n,Commonwealth Avenue Elementary,Los Angeles Unified,Los Angeles,848,7,6,0,8,10,73,1,1,0,100,8,0,48,23,8,20,24,N/A,86,35,29,15,17,4,2.26\r\n,Joli Ann Leichtag Elementary,San Marcos Unified,San Diego,848,7,6,0,1,4,76,1,12,0,81,1,5,40,23,25,26,27,N/A,94,41,21,17,13,8,2.24\r\n,Anthony P. Russo Academy,Alum Rock Union Elementary,Santa Clara,848,7,0,0,14,10,72,3,1,0,100,0,3,72,0,10,20,N/A,N/A,98,32,34,14,19,1,2.24\r\n,Geyserville Middle,Geyserville Unified,Sonoma,848,7,0,0,2,0,52,2,44,0,62,0,13,41,3,16,N/A,18,15,93,40,14,32,11,4,2.23\r\n,Dewey Avenue Elementary,Garvey Elementary,Los Angeles,848,7,1,0,70,1,28,0,0,0,79,19,0,54,27,5,22,30,N/A,85,31,41,10,15,4,2.21\r\n,ACORN Woodland Elementary,Oakland Unified,Alameda,848,7,8,0,2,0,88,0,0,1,42,60,0,64,21,6,20,19,N/A,42,33,33,25,9,0,2.11\r\n,Frank del Olmo Elementary,Los Angeles Unified,Los Angeles,848,7,1,1,9,3,85,0,1,0,92,7,1,51,28,9,22,29,N/A,85,41,29,15,12,3,2.06\r\n,,Delphic Elementary,Siskiyou,848,B,0,0,0,0,4,0,4,0,74,0,0,0,0,7,17,N/A,N/A,4,0,100,0,0,0,2\r\n,Delphic Elementary,Delphic Elementary,Siskiyou,848,7,0,0,0,0,4,0,4,0,74,0,0,0,0,7,17,N/A,N/A,4,0,100,0,0,0,2\r\n,Plummer Elementary,Los Angeles Unified,Los Angeles,848,7,3,0,2,6,86,0,2,0,90,7,0,53,21,9,22,26,N/A,91,47,29,11,12,1,1.93\r\n,Sparks Middle,Hacienda la Puente Unified,Los Angeles,848,7,1,0,1,2,94,0,0,0,90,11,2,12,37,10,N/A,N/A,33,64,44,38,13,4,1,1.78\r\nD,Grove,Redlands Unified,San Bernardino,847,9,2,5,4,1,21,0,60,4,13,7,0,0,0,7,N/A,N/A,16,95,1,5,21,22,51,4.18\r\n,Irving L. Branch Elementary,Muroc Joint Unified,Kern,847,7,7,0,2,4,20,1,54,13,11,0,0,3,2,7,25,30,N/A,97,1,8,39,26,27,3.7\r\nD,High Tech Middle,San Diego Unified,San Diego,847,7,8,0,5,4,42,0,33,7,36,0,0,6,12,11,N/A,29,N/A,69,6,10,26,27,31,3.66\r\n,Carlsbad High,Carlsbad Unified,San Diego,847,9,3,1,7,2,25,1,59,3,19,25,1,6,8,9,N/A,N/A,32,98,7,10,22,35,26,3.63\r\n,Rolling Hills Elementary,Fullerton Elementary,Orange,847,7,2,0,9,2,28,0,49,4,27,2,0,12,4,8,28,27,N/A,88,2,12,27,43,16,3.59\r\n,Westborough Middle,South San Francisco Unified,San Mateo,847,7,5,0,14,49,19,3,9,0,30,16,1,12,13,14,N/A,29,28,100,3,11,36,36,14,3.48\r\n,Olive Drive Elementary,Norris Elementary,Kern,847,7,0,0,0,0,20,0,71,6,27,0,0,2,1,5,24,29,N/A,94,2,20,32,26,21,3.45\r\n,Edith Landels Elementary,Mountain View Whisman,Santa Clara,847,7,2,0,9,4,50,0,25,7,48,16,0,51,5,16,24,24,N/A,95,11,22,13,25,29,3.39\r\n,,Burbank Unified,Los Angeles,847,B,2,0,6,4,37,0,47,3,12,7,0,10,17,11,27,28,9,93,4,18,28,36,14,3.38\r\n,Browns Valley Elementary,Vacaville Unified,Solano,847,7,3,1,4,5,20,1,62,3,18,14,0,5,2,7,29,26,N/A,100,3,28,13,40,16,3.38\r\n,Maryland Avenue Elementary,La Mesa-Spring Valley,San Diego,847,7,10,0,4,2,35,0,42,6,43,10,0,10,12,17,28,33,N/A,91,4,22,25,31,18,3.38\r\n,,Alameda City Unified,Alameda,847,B,11,0,33,8,13,1,30,2,35,10,0,21,10,11,24,26,27,96,7,18,25,32,19,3.37\r\n,,Livermore Valley Joint Unified,Alameda,847,B,2,0,5,3,29,0,53,6,26,13,2,12,8,13,23,27,26,97,10,14,25,33,18,3.35\r\n,Sequoia Elementary,Sequoia Union Elementary,Tulare,847,7,1,1,0,1,28,1,62,7,35,7,0,9,1,5,19,23,29,95,5,16,34,29,16,3.35\r\n,Barnett Elementary,Ramona City Unified,San Diego,847,7,1,1,0,1,21,0,73,1,24,0,0,9,2,13,23,32,N/A,93,3,16,37,31,13,3.34\r\n,Shelyn Elementary,Rowland Unified,Los Angeles,847,7,1,1,45,10,37,0,5,2,46,11,0,23,19,22,20,28,N/A,96,7,20,26,31,17,3.31\r\n,Foothill High,Shasta Union High,Shasta,847,9,1,3,0,0,11,0,77,7,33,28,0,0,0,9,N/A,N/A,28,98,4,18,39,26,14,3.29\r\n,Kermit King Elementary,Paso Robles Joint Unified,San Luis Obispo,847,7,1,0,1,1,22,0,73,1,33,1,0,6,1,10,29,30,N/A,90,5,15,41,32,8,3.23\r\n,,Westside Union Elementary,Los Angeles,847,B,12,0,4,2,37,0,41,1,39,9,0,7,5,12,28,28,28,89,5,19,39,24,14,3.23\r\n,Jamul Intermediate,Jamul-Dulzura Union Elementary,San Diego,847,7,1,1,2,1,40,0,52,1,43,16,0,23,4,15,N/A,22,N/A,97,6,17,41,23,13,3.21\r\n,Alta Loma Elementary,Alta Loma Elementary,San Bernardino,847,7,10,1,4,1,45,1,37,0,46,8,0,11,6,11,26,31,N/A,98,4,16,49,20,11,3.18\r\n,Summerville Elementary,Summerville Elementary,Tuolumne,847,7,2,10,0,0,15,0,67,6,50,0,0,1,0,18,20,26,22,99,2,28,41,17,13,3.11\r\n,Robert Semple Elementary,Benicia Unified,Solano,847,7,11,0,3,4,27,1,41,12,42,0,0,8,3,11,24,29,N/A,98,7,23,36,21,13,3.1\r\n,,Huntington Beach Union High,Orange,847,B,1,6,23,1,24,1,41,1,29,14,0,8,20,9,N/A,N/A,27,0,25,8,17,33,17,3.08\r\n,Richvale Elementary,Biggs Unified,Butte,847,7,0,0,0,0,16,0,84,0,27,3,0,19,0,8,13,25,N/A,95,6,23,43,20,9,3.03\r\n,Parkview Elementary,Chula Vista Elementary,San Diego,847,7,4,0,2,8,71,0,12,1,43,16,0,37,6,17,20,26,N/A,87,9,23,31,28,9,3.03\r\n,,Capay Joint Union Elementary,Glenn,847,B,0,0,4,0,32,0,64,0,45,19,4,17,6,7,23,25,N/A,65,13,16,39,19,13,3.03\r\n,Capay Joint Union Elementary,Capay Joint Union Elementary,Glenn,847,7,0,0,4,0,32,0,64,0,45,19,4,17,6,7,23,25,N/A,65,13,16,39,19,13,3.03\r\n,Sunflower Elementary,El Centro Elementary,Imperial,847,7,2,0,4,1,86,0,7,0,69,20,4,37,10,12,29,30,N/A,64,8,26,34,25,8,2.98\r\n,Westlake Elementary,Jefferson Elementary,San Mateo,847,7,3,0,13,42,23,4,12,3,62,2,0,50,14,8,20,31,N/A,83,10,23,30,36,1,2.94\r\n,,Douglas City Elementary,Trinity,847,B,0,2,0,0,10,0,82,5,60,15,0,0,0,4,,,,94,1,48,20,21,10,2.92\r\n,Douglas City Elementary,Douglas City Elementary,Trinity,847,7,0,2,0,0,10,0,82,5,60,15,0,0,0,4,,,,94,1,48,20,21,10,2.92\r\n,Daniel J. Savage Middle,Sylvan Union Elementary,Stanislaus,847,7,6,1,5,3,37,1,45,3,43,11,0,5,9,8,N/A,29,25,97,8,29,35,19,8,2.9\r\n,East Whittier Middle,East Whittier City Elementary,Los Angeles,847,7,0,0,1,1,84,0,14,0,45,15,0,11,12,11,N/A,27,29,95,11,25,36,20,7,2.87\r\n,La Ballona Elementary,Culver City Unified,Los Angeles,847,7,7,0,8,1,66,0,17,1,68,1,0,34,12,11,23,28,N/A,87,18,20,32,18,12,2.87\r\n,Home Street Middle,Bishop Unified,Inyo,847,7,0,14,2,0,30,0,44,4,45,18,0,8,17,9,N/A,25,25,91,15,28,33,12,12,2.78\r\n,Alvarado Elementary,Long Beach Unified,Los Angeles,847,7,13,0,30,4,44,1,8,0,85,0,1,32,14,19,25,30,N/A,66,19,27,25,21,8,2.73\r\n,Withrow Elementary,Lake Elsinore Unified,Riverside,847,7,5,1,1,1,69,2,22,0,74,8,0,27,12,13,23,30,N/A,98,14,33,34,13,5,2.63\r\n,Parker Elementary,Oakland Unified,Alameda,847,7,71,0,2,0,16,9,2,0,93,40,0,13,5,12,22,19,N/A,49,30,26,30,13,0,2.26\r\n,Glenshire Elementary,Tahoe-Truckee Joint Unified,Placer,846,7,1,0,1,0,15,0,81,2,17,7,0,9,3,11,23,28,N/A,96,2,11,16,42,29,3.83\r\n,Castaic Elementary,Castaic Union Elementary,Los Angeles,846,7,4,0,6,5,29,0,50,5,12,8,0,5,2,11,20,27,N/A,88,0,8,29,41,23,3.78\r\n,Century Academy,Conejo Valley Unified,Ventura,846,9,0,0,0,0,6,0,88,2,13,13,0,0,0,2,N/A,N/A,8,42,0,9,23,55,14,3.73\r\n,Valencia Elementary,Pajaro Valley Unified,Santa Cruz,846,7,2,0,2,1,26,0,68,0,30,21,2,17,2,16,27,21,N/A,82,10,9,23,34,25,3.54\r\n,Granada High,Livermore Valley Joint Unified,Alameda,846,9,1,1,5,3,24,0,59,5,15,19,1,5,8,9,N/A,N/A,28,90,5,12,27,36,20,3.52\r\n,Shasta Elementary,Chico Unified,Butte,846,7,2,1,4,1,13,1,77,0,36,0,0,7,1,9,29,32,N/A,96,6,14,26,31,23,3.52\r\n,Howard Wood Elementary,Torrance Unified,Los Angeles,846,7,8,0,16,3,31,0,25,15,37,2,0,10,5,18,29,34,N/A,88,3,13,41,30,13,3.36\r\n,Hughes Middle,Long Beach Unified,Los Angeles,846,7,26,0,10,9,35,2,14,3,50,20,0,7,19,8,N/A,33,34,95,8,18,25,32,16,3.31\r\n,Atascadero Junior High,Atascadero Unified,San Luis Obispo,846,7,1,1,2,1,27,0,67,2,34,10,0,5,7,7,N/A,N/A,26,99,5,17,35,30,13,3.3\r\n,Balboa Middle,Ventura Unified,Ventura,846,7,2,1,2,1,44,0,47,3,42,27,0,6,6,8,N/A,30,29,100,8,14,36,25,16,3.28\r\n,Carlin C. Coppin Elementary,Western Placer Unified,Placer,846,7,0,1,0,0,26,0,67,5,42,4,0,10,2,17,24,30,N/A,94,5,18,40,28,8,3.16\r\n,Quartz Hill Elementary,Westside Union Elementary,Los Angeles,846,7,10,1,3,2,37,0,45,1,43,7,0,7,2,11,28,31,N/A,92,7,19,39,21,14,3.16\r\nD,Redwood Preparatory Charter,Rohnerville Elementary,Humboldt,846,7,0,0,0,0,7,0,93,0,8,13,0,3,0,11,1,N/A,N/A,100,1,30,30,31,8,3.15\r\n,Creek View Elementary,Mountain View Elementary,San Bernardino,846,7,9,0,3,1,69,0,13,5,63,0,0,24,1,12,30,N/A,N/A,98,3,23,38,27,8,3.15\r\n,Saint Helena Elementary,Saint Helena Unified,Napa,846,7,0,0,2,0,48,0,48,1,42,0,10,34,10,12,20,22,N/A,93,22,14,14,31,19,3.12\r\n,,Summerville Elementary,Tuolumne,846,B,2,10,0,0,15,0,67,6,50,0,0,1,0,19,20,26,22,98,2,27,41,17,13,3.1\r\n,Veritas Elementary,Manteca Unified,San Joaquin,846,7,6,1,14,8,42,3,24,2,48,7,0,12,16,10,30,31,27,80,5,29,26,32,8,3.07\r\n,Gateway Elementary,Sierra Sands Unified,Kern,846,7,7,2,3,1,22,0,64,1,44,1,0,6,4,8,28,32,N/A,96,6,23,40,22,9,3.04\r\n,Edwin Markham Middle,Placerville Union Elementary,El Dorado,846,7,0,2,1,0,25,0,67,3,48,16,0,6,7,12,N/A,26,23,100,12,20,39,22,8,2.94\r\n,Raymond Temple Elementary,Centralia Elementary,Orange,846,7,2,0,8,10,62,3,14,2,60,5,0,20,11,15,22,27,N/A,98,14,23,30,25,8,2.92\r\n,Margaret Hedrick Elementary,El Centro Elementary,Imperial,846,7,1,0,0,2,87,0,9,1,73,6,7,38,11,9,30,27,N/A,97,10,26,37,19,8,2.89\r\n,Ridgeview Elementary,Yucaipa-Calimesa Joint Unified,San Bernardino,846,7,1,1,1,1,31,0,66,0,41,16,0,7,1,10,24,32,N/A,95,8,34,31,18,9,2.88\r\n,Brock Elliott Elementary,Manteca Unified,San Joaquin,846,7,4,1,7,5,52,1,28,2,56,3,1,11,16,11,32,33,30,83,10,32,29,23,7,2.85\r\n,Lake Canyon Elementary,Galt Joint Union Elementary,Sacramento,846,7,5,0,2,1,54,0,35,0,60,13,2,19,18,15,20,25,N/A,90,15,20,40,19,6,2.81\r\n,Paradise Hills Elementary,San Diego Unified,San Diego,846,7,8,0,0,22,60,2,4,5,99,24,0,30,16,18,21,30,N/A,94,17,26,30,19,8,2.74\r\n,Stonegate Elementary,Franklin-McKinley Elementary,Santa Clara,846,7,2,0,47,7,41,0,2,0,71,0,1,47,22,12,21,29,N/A,95,15,29,29,21,5,2.73\r\n,,Belridge Elementary,Kern,846,B,0,0,0,0,83,0,17,0,91,0,0,48,22,4,2,2,N/A,57,8,62,8,8,15,2.62\r\n,Belridge Elementary,Belridge Elementary,Kern,846,7,0,0,0,0,83,0,17,0,91,0,0,48,22,4,2,2,N/A,57,8,62,8,8,15,2.62\r\n,Lakeland Elementary,Little Lake City Elementary,Los Angeles,846,7,1,0,0,0,91,1,6,0,76,12,1,28,3,4,30,23,N/A,100,12,35,39,11,4,2.58\r\n,Little Lake Elementary,Hemet Unified,Riverside,846,7,5,2,1,1,44,0,44,2,73,1,0,13,1,18,24,25,N/A,100,24,25,32,13,7,2.53\r\nD,EJE Elementary Academy Charter,Cajon Valley Union,San Diego,846,7,4,0,1,1,86,0,5,2,79,0,0,46,18,6,20,28,N/A,92,33,17,34,7,9,2.43\r\n,Harvard Elementary,Los Angeles Unified,Los Angeles,846,7,1,0,4,10,83,0,2,0,90,9,0,46,24,10,20,17,N/A,78,37,29,16,13,5,2.21\r\nD,Ceiba College Preparatory Academy,Pajaro Valley Unified,Santa Cruz,846,7,1,1,1,1,94,0,2,0,86,24,4,26,46,5,N/A,30,25,91,38,21,29,9,3,2.19\r\n,Chester Elementary,Plumas Unified,Plumas,846,7,0,2,1,0,10,0,86,0,55,4,0,0,0,11,,,,94,49,14,17,13,6,2.12\r\n,Samuel W. Simpson Elementary,Rialto Unified,San Bernardino,846,7,9,0,0,0,85,0,4,1,86,12,0,36,15,13,27,30,N/A,94,35,34,23,6,3,2.08\r\n,Coldwater Canyon Elementary,Los Angeles Unified,Los Angeles,846,7,3,0,1,1,86,0,8,0,100,10,0,40,29,11,20,23,N/A,92,39,33,14,14,0,2.03\r\n,Amanecer Primary Center,Los Angeles Unified,Los Angeles,846,7,0,0,0,0,100,0,0,0,100,0,1,78,4,11,22,N/A,N/A,98,73,18,8,1,0,1.37\r\n,Parkview,Placentia-Yorba Linda Unified,Orange,845,7,3,0,9,0,11,0,75,2,2,7,0,0,1,6,20,9,N/A,79,1,4,20,36,39,4.1\r\nD,Hume Lake Charter,Fresno County Office of Educat,Fresno,845,7,0,0,0,0,0,0,91,0,31,0,0,0,0,0,4,3,6,88,0,18,11,43,29,3.82\r\n,Aragon High,San Mateo Union High,San Mateo,845,9,1,0,22,4,27,3,32,11,14,14,0,7,17,7,N/A,N/A,28,95,5,12,20,29,34,3.74\r\n,Clovis West High,Clovis Unified,Fresno,845,9,5,1,13,1,31,0,46,2,33,8,1,3,9,6,N/A,N/A,27,96,6,13,22,32,27,3.62\r\n,Topa Topa Elementary,Ojai Unified,Ventura,845,7,1,1,2,0,30,1,63,3,42,3,0,17,5,13,16,18,N/A,99,9,12,23,29,26,3.51\r\n,,Soquel Union Elementary,Santa Cruz,845,B,1,1,2,1,33,0,56,5,3,0,0,13,5,11,22,26,28,97,8,12,27,32,21,3.45\r\nD,Magnolia Science Academy 6,Los Angeles Unified,Los Angeles,845,7,26,0,5,2,33,0,23,3,31,0,0,2,8,10,N/A,17,20,98,10,9,30,27,23,3.44\r\n,Enders Elementary,Garden Grove Unified,Orange,845,7,3,1,12,3,31,0,49,1,25,2,0,9,6,14,23,30,N/A,9,0,20,20,58,3,3.43\r\n,Martin B. Tetzlaff Middle,ABC Unified,Los Angeles,845,7,14,0,22,16,34,1,10,2,43,14,4,9,14,9,N/A,N/A,27,92,4,16,27,38,14,3.42\r\nY,Natomas Pacific Pathways Prep Middle,Natomas Unified,Sacramento,845,7,17,1,19,8,24,1,27,4,46,4,0,10,11,6,N/A,27,27,92,3,20,30,31,17,3.38\r\n,,Sequoia Union Elementary,Tulare,845,B,1,1,0,1,28,1,62,7,35,7,0,9,1,5,19,23,29,94,5,16,34,29,16,3.35\r\n,North Tahoe,Tahoe-Truckee Joint Unified,Placer,845,7,0,4,0,0,41,0,54,0,50,12,0,21,17,10,N/A,29,23,83,13,17,19,30,22,3.3\r\n,Monte Vista,Monterey Peninsula Unified,Monterey,845,7,3,0,9,3,34,0,40,9,43,6,0,19,11,9,23,29,N/A,100,12,16,26,23,22,3.27\r\n,East Avenue Middle,Livermore Valley Joint Unified,Alameda,845,7,3,0,5,2,28,0,53,7,34,18,2,11,10,13,N/A,26,28,99,9,19,26,32,15,3.25\r\n,EastLake Elementary,Chula Vista Elementary,San Diego,845,7,5,0,2,9,60,1,20,1,32,16,0,29,4,10,20,27,N/A,71,3,21,35,30,11,3.23\r\n,Foresthill Elementary,Foresthill Union Elementary,Placer,845,7,0,5,0,0,12,1,80,2,47,30,0,1,0,12,24,27,N/A,94,2,25,32,31,9,3.2\r\n,Katherine Elementary,Simi Valley Unified,Ventura,845,7,1,1,9,3,25,0,58,4,34,3,0,8,5,12,23,30,N/A,94,5,29,24,27,15,3.18\r\n,El Cerrito Middle,Corona-Norco Unified,Riverside,845,7,6,0,5,3,41,0,44,0,35,15,0,5,15,8,N/A,32,31,92,10,16,34,26,14,3.18\r\n,Nesbit Elementary,Belmont-Redwood Shores Element,San Mateo,845,7,8,0,14,6,24,5,40,2,33,2,0,19,11,21,22,20,N/A,79,9,21,28,31,11,3.15\r\n,Nye Elementary,San Diego Unified,San Diego,845,7,26,0,6,36,25,2,1,5,75,24,0,28,13,11,22,29,N/A,96,5,25,31,35,4,3.09\r\n,Valle Lindo Elementary,Chula Vista Elementary,San Diego,845,7,4,0,0,9,77,1,7,1,46,18,0,42,4,11,20,27,N/A,78,8,27,30,25,9,2.99\r\n,Gabrielino High,San Gabriel Unified,Los Angeles,845,9,1,0,58,3,31,0,6,0,55,10,0,25,31,6,N/A,N/A,30,91,14,31,23,23,10,2.85\r\n,Pat Butler Elementary,Paso Robles Joint Unified,San Luis Obispo,845,7,3,1,2,1,36,0,53,2,48,3,4,24,1,14,30,30,N/A,89,14,24,34,20,7,2.81\r\n,Nancy R. Kordyak Elementary,Rialto Unified,San Bernardino,845,7,17,0,1,3,68,0,10,1,59,14,0,16,5,7,26,28,N/A,91,13,28,34,16,9,2.81\r\n,,Alhambra Unified,Los Angeles,845,B,1,0,51,1,42,0,3,1,68,7,1,30,24,9,22,30,32,96,17,30,21,22,10,2.78\r\n,,Mupu Elementary,Ventura,845,B,0,0,0,0,79,0,17,5,49,0,0,8,21,6,19,25,5,99,15,27,32,16,9,2.77\r\n,Mupu Elementary,Mupu Elementary,Ventura,845,7,0,0,0,0,79,0,17,5,49,0,0,8,21,6,19,25,5,99,15,27,32,16,9,2.77\r\n,Williams Elementary,Downey Unified,Los Angeles,845,7,4,0,2,0,88,0,5,0,74,0,0,32,1,12,25,N/A,N/A,97,13,32,31,19,5,2.71\r\n,Finney (Myrtle S.) Elementary,Chula Vista Elementary,San Diego,845,7,4,14,1,9,66,2,5,0,61,5,1,48,5,14,20,25,N/A,46,13,37,25,20,5,2.65\r\n,Lilac,Valley Center-Pauma Unified,San Diego,845,7,1,15,0,1,41,1,41,0,48,7,2,30,2,13,25,30,N/A,100,26,22,26,17,10,2.64\r\n,Franklin Elementary,Redlands Unified,San Bernardino,845,7,5,1,1,1,72,0,18,2,86,8,0,14,6,14,23,29,N/A,92,16,28,42,7,7,2.62\r\n,Fred E. Lull Special Education Center,Los Angeles Unified,Los Angeles,845,C,9,1,4,4,65,0,17,0,74,0,0,55,1,100,7,9,13,51,27,25,23,10,14,2.6\r\n,Alameda Elementary,Downey Unified,Los Angeles,845,7,3,1,2,0,87,1,7,0,71,0,0,38,1,10,22,N/A,N/A,100,16,36,28,16,3,2.54\r\n,Cerritos Elementary,Glendale Unified,Los Angeles,845,7,2,1,2,12,65,0,18,0,78,5,0,34,15,6,24,34,N/A,93,17,45,16,18,4,2.47\r\n,One Hundred Eighty-Sixth Street Elementa,Los Angeles Unified,Los Angeles,845,7,16,0,4,4,72,2,3,0,82,5,0,25,26,11,18,17,N/A,89,28,25,24,18,5,2.47\r\n,Franklin Elementary,Franklin-McKinley Elementary,Santa Clara,845,7,3,0,51,1,42,1,1,1,82,1,1,52,30,5,24,31,N/A,99,21,38,23,14,4,2.4\r\n,Christian Sorensen Elementary,Whittier City Elementary,Los Angeles,845,7,0,0,0,0,95,0,4,0,71,0,0,18,11,14,27,27,N/A,93,25,45,20,9,1,2.15\r\n,General Grant Middle,Kings Canyon Joint Unified,Fresno,845,7,0,0,1,0,95,0,2,0,98,0,8,25,46,11,N/A,28,28,100,44,24,25,5,2,1.98\r\n,,Bitterwater-Tully Elementary,San Benito,845,B,0,0,0,0,12,0,0,0,8,4,0,16,0,12,,,,0,0,0,0,0,0,\r\n,Bitterwater-Tully Elementary,Bitterwater-Tully Elementary,San Benito,845,7,0,0,0,0,12,0,0,0,8,4,0,16,0,12,,,,0,0,0,0,0,0,\r\n,Kaiser Elementary,Oakland Unified,Alameda,844,7,34,1,6,1,9,1,32,14,16,40,0,3,1,9,25,26,N/A,89,3,1,14,42,41,4.18\r\nD,BRIDGES Charter,Ventura County Office of Educa,Ventura,844,7,0,1,2,0,19,0,72,3,13,7,0,4,1,5,18,24,N/A,87,2,4,19,39,38,4.06\r\nD,Los Feliz Charter School for the Arts,Los Angeles Unified,Los Angeles,844,7,5,0,1,0,29,0,63,1,25,0,0,4,0,8,,,,92,0,5,22,41,32,3.99\r\n,Camarillo Heights Elementary,Pleasant Valley,Ventura,844,7,1,0,4,3,27,1,60,2,22,6,0,4,2,15,20,25,N/A,98,3,9,34,26,28,3.66\r\n,Albert Schweitzer Elementary,San Juan Unified,Sacramento,844,7,3,2,3,2,16,2,71,0,40,4,0,12,1,16,27,28,N/A,72,2,11,30,38,19,3.62\r\n,Tom Hawkins Elementary,Jefferson Elementary,San Joaquin,844,7,8,0,12,6,28,1,45,0,24,14,0,13,9,10,20,30,30,96,1,10,36,34,18,3.58\r\n,Shadow Hills Elementary,Alpine Union Elementary,San Diego,844,7,1,6,3,0,14,0,73,3,25,5,0,3,1,19,21,30,N/A,92,1,10,46,25,19,3.51\r\n,Durham Elementary,Durham Unified,Butte,844,7,0,1,0,0,21,0,76,3,42,8,0,13,0,9,21,22,N/A,99,5,10,36,29,19,3.47\r\nY,Cottonwood Creek Charter,Cottonwood Union Elementary,Shasta,844,7,3,4,1,0,5,0,83,4,45,0,1,0,0,2,11,25,N/A,100,3,14,36,29,19,3.47\r\n,,Castaic Union Elementary,Los Angeles,844,B,3,0,4,4,35,0,49,4,23,11,0,10,4,9,20,31,32,91,1,19,29,37,13,3.41\r\n,,Martinez Unified,Contra Costa,844,B,3,0,3,2,27,0,54,9,27,10,0,8,6,11,28,29,27,94,5,14,30,34,16,3.41\r\n,,Novato Unified,Marin,844,B,4,1,5,1,32,0,53,5,34,8,0,16,12,11,19,28,26,98,10,15,20,32,23,3.41\r\n,Wegeforth Elementary,San Diego Unified,San Diego,844,7,15,0,10,9,37,0,22,7,64,27,0,19,12,14,21,25,N/A,95,1,18,40,29,13,3.36\r\n,E. Hale Curran Elementary,Murrieta Valley Unified,Riverside,844,7,3,0,2,2,39,0,48,6,41,12,0,5,3,15,24,32,N/A,97,4,17,34,31,14,3.34\r\n,,Moorpark Unified,Ventura,844,B,2,0,6,2,39,0,49,2,33,5,1,17,10,13,25,28,24,96,12,17,20,28,23,3.32\r\n,Manlio Silva Elementary,Lodi Unified,San Joaquin,844,7,16,1,15,12,33,1,18,2,45,17,0,11,8,10,25,31,N/A,86,5,18,33,31,13,3.29\r\n,,Mark West Union Elementary,Sonoma,844,B,2,2,3,0,29,0,59,5,38,8,0,15,5,10,21,26,28,86,6,19,32,27,16,3.28\r\n,Lindbergh/Schweitzer Elementary,San Diego Unified,San Diego,844,7,22,1,7,3,35,1,26,6,64,26,0,21,12,18,21,29,N/A,91,6,17,35,29,13,3.26\r\n,Oak Hill Elementary,Center Joint Unified,Sacramento,844,7,16,1,7,4,14,1,55,1,51,1,0,13,10,8,31,30,N/A,99,4,18,37,32,9,3.25\r\n,Del Mar Elementary,San Luis Coastal Unified,San Luis Obispo,844,7,1,0,3,1,31,1,61,2,52,0,0,22,1,10,23,28,N/A,95,9,17,33,26,15,3.22\r\n,,San Antonio Union Elementary,Monterey,844,B,7,2,0,3,33,0,54,0,45,0,0,2,16,12,18,25,21,95,7,18,37,25,13,3.2\r\n,San Antonio Elementary,San Antonio Union Elementary,Monterey,844,7,7,2,0,3,33,0,54,0,45,0,0,2,16,12,18,25,21,95,7,18,37,25,13,3.2\r\n,Ferndale Elementary,Ferndale Unified,Humboldt,844,7,0,6,1,0,19,0,75,0,32,8,0,9,4,20,22,27,21,92,6,17,40,23,13,3.19\r\n,Rolando Elementary,La Mesa-Spring Valley,San Diego,844,7,13,1,6,1,36,0,36,8,48,10,0,11,7,6,29,31,N/A,96,6,21,36,26,12,3.17\r\n,River Heights Intermediate,Corona-Norco Unified,Riverside,844,7,10,0,11,5,51,0,22,1,44,10,0,8,20,10,N/A,N/A,28,83,11,20,35,23,11,3.03\r\n,Walter Reed Middle,Los Angeles Unified,Los Angeles,844,7,8,1,8,2,46,0,34,1,60,34,0,10,21,11,N/A,30,29,70,20,19,19,26,16,2.99\r\nD,Community Outreach Academy,Twin Rivers Unified,Sacramento,844,7,0,0,3,0,0,0,96,0,77,0,0,68,29,2,24,27,23,96,1,37,30,27,5,2.98\r\n,Sherwood Elementary,Sylvan Union Elementary,Stanislaus,844,7,5,0,3,1,36,0,52,3,52,2,0,11,0,17,30,28,N/A,95,7,28,34,22,9,2.97\r\n,,Wheatland,Yuba,844,B,6,2,4,2,18,0,64,3,42,11,0,4,7,13,24,26,20,92,6,37,26,21,11,2.93\r\n,Descanso Elementary,Mountain Empire Unified,San Diego,844,7,0,0,0,0,33,0,61,4,42,3,0,7,0,9,N/A,18,N/A,100,7,25,46,15,7,2.89\r\n,Avalon Elementary,Val Verde Unified,Riverside,844,7,15,0,3,3,66,1,6,2,72,13,0,21,9,8,29,29,N/A,93,9,28,33,24,5,2.88\r\n,Clifford Street Elementary,Los Angeles Unified,Los Angeles,844,7,5,2,1,4,83,0,5,0,82,16,0,18,9,10,15,14,N/A,91,4,32,42,17,5,2.87\r\n,Simi Elementary,Simi Valley Unified,Ventura,844,7,0,0,4,1,27,0,63,4,39,11,0,9,10,16,23,30,N/A,90,7,36,30,19,8,2.85\r\n,Andrew Jackson Elementary,Selma Unified,Fresno,844,7,0,0,8,1,85,0,6,0,87,1,1,25,17,17,19,26,N/A,95,10,28,39,14,9,2.84\r\n,Cheremoya Avenue Elementary,Los Angeles Unified,Los Angeles,844,7,7,1,2,3,55,1,32,0,69,8,0,30,26,8,21,24,N/A,86,14,29,25,24,8,2.82\r\n,Studebaker Elementary,Little Lake City Elementary,Los Angeles,844,7,2,1,2,2,90,0,3,0,69,14,0,25,4,9,29,32,N/A,97,11,33,37,11,7,2.71\r\n,,Little Lake City Elementary,Los Angeles,844,B,2,1,2,1,89,0,5,0,69,21,1,16,11,10,29,28,28,95,11,35,36,14,5,2.66\r\n,Cortez Elementary,Pomona Unified,Los Angeles,844,7,4,1,2,1,89,0,2,2,82,6,0,21,30,3,27,31,33,95,14,37,29,12,7,2.61\r\n,Wilson Elementary,Gridley Unified,Butte,844,7,0,0,1,0,56,0,27,0,78,0,12,30,14,9,21,28,N/A,79,20,34,26,14,6,2.51\r\n,Shirley Avenue Elementary,Los Angeles Unified,Los Angeles,844,7,2,1,5,1,85,0,6,0,85,4,0,26,28,15,17,20,N/A,84,26,35,23,12,4,2.32\r\n,Snelling-Merced Falls Elementary,Snelling-Merced Falls Union El,Merced,844,7,0,0,1,0,52,0,47,0,78,0,17,43,0,10,9,14,N/A,99,37,23,29,6,5,2.2\r\n,,Snelling-Merced Falls Union El,Merced,844,B,0,0,1,0,51,0,48,0,77,0,17,43,0,11,9,14,N/A,99,36,24,29,6,5,2.19\r\n,Sunset Elementary,Hacienda la Puente Unified,Los Angeles,844,7,1,0,1,2,93,0,4,1,91,4,0,29,10,4,20,31,N/A,45,40,43,12,4,1,1.82\r\nD,Global Education Academy,Los Angeles Unified,Los Angeles,844,7,6,0,0,0,94,0,0,0,99,0,0,44,31,9,20,20,N/A,47,49,27,20,4,0,1.79\r\n,Jefferson Elementary,Sanger Unified,Fresno,844,7,2,0,1,0,96,0,1,0,100,0,4,58,10,7,22,31,N/A,100,54,24,13,9,0,1.77\r\n,,Pacific Elementary,Santa Cruz,843,B,1,0,3,0,14,0,82,0,36,7,0,8,0,18,7,8,N/A,95,3,11,11,31,43,4\r\n,Pacific Elementary,Pacific Elementary,Santa Cruz,843,7,1,0,3,0,14,0,82,0,36,7,0,8,0,18,7,8,N/A,95,3,11,11,31,43,4\r\nD,Coastal Grove Charter,Arcata Elementary,Humboldt,843,7,0,1,1,0,6,0,82,9,55,0,0,0,0,5,19,21,N/A,91,0,6,30,36,28,3.86\r\nY,Orchard View,Twin Hills Union Elementary,Sonoma,843,9,1,1,1,1,14,0,82,0,2,0,0,1,1,3,18,N/A,N/A,96,0,14,25,34,27,3.74\r\n,,El Dorado Union High,El Dorado,843,B,1,1,4,1,11,0,78,3,19,11,0,1,3,9,N/A,N/A,29,96,3,11,29,33,24,3.66\r\nY,Elise P. Buckingham Charter Magnet High,Vacaville Unified,Solano,843,9,10,1,2,4,19,1,59,4,10,6,0,0,3,5,N/A,N/A,23,98,1,13,33,34,19,3.59\r\n,Foxboro Elementary,Travis Unified,Solano,843,7,9,1,4,7,23,1,49,7,26,4,0,2,4,11,26,30,N/A,98,2,11,37,38,13,3.49\r\n,,William S. Hart Union High,Los Angeles,843,B,4,0,7,5,33,0,47,3,20,13,0,10,9,12,8,13,13,94,6,12,31,32,19,3.46\r\n,Orcutt Junior High,Orcutt Union Elementary,Santa Barbara,843,7,2,0,2,2,30,1,61,2,31,7,0,3,3,12,N/A,N/A,29,96,3,18,36,24,20,3.39\r\n,Foster Elementary,San Diego Unified,San Diego,843,7,10,1,5,3,38,1,33,8,60,33,0,18,8,8,25,28,N/A,90,3,18,41,25,13,3.28\r\n,,Sulphur Springs Union,Los Angeles,843,B,8,0,5,1,47,1,33,5,43,6,0,20,9,11,18,25,N/A,80,8,20,26,27,18,3.26\r\n,Ellerth E. Larson Elementary,Lodi Unified,San Joaquin,843,7,1,1,8,3,24,0,60,1,41,23,2,17,4,9,24,26,N/A,93,8,20,29,27,16,3.23\r\n,Westport Heights Elementary,Los Angeles Unified,Los Angeles,843,7,53,0,6,3,29,0,10,0,59,10,0,10,3,8,14,6,N/A,90,7,17,33,32,11,3.23\r\nY,University Preparatory High,Tulare County Office of Educat,Tulare,843,9,1,0,4,2,49,0,34,9,21,0,0,0,0,2,,,,85,7,25,24,32,12,3.18\r\nY,Hallmark Charter,Sanger Unified,Fresno,843,9,2,1,1,1,34,0,58,4,54,1,0,1,3,1,12,11,11,99,7,26,18,43,6,3.17\r\n,Oakhurst Elementary,Bass Lake Joint Union Elementa,Madera,843,7,1,4,4,0,19,0,69,2,62,4,0,12,3,8,29,29,N/A,94,8,17,38,25,12,3.17\r\n,,Marcum-Illinois Union Elementa,Sutter,843,B,2,2,3,2,20,0,72,1,50,25,0,5,4,11,16,17,2,92,2,25,39,28,6,3.1\r\n,Marcum-Illinois Union Elementary,Marcum-Illinois Union Elementa,Sutter,843,7,2,2,3,2,20,0,72,1,50,25,0,5,4,10,18,20,N/A,92,2,25,39,28,6,3.1\r\n,Cottonwood Elementary,Westside Union Elementary,Los Angeles,843,7,14,0,3,4,51,0,25,2,49,5,0,15,5,15,28,27,N/A,91,7,18,44,23,8,3.08\r\n,,San Gabriel Unified,Los Angeles,843,B,1,0,52,3,36,0,7,0,56,9,0,37,17,8,30,30,4,93,12,26,22,26,14,3.04\r\n,Schaefer Elementary,Piner-Olivet Union Elementary,Sonoma,843,7,3,2,12,2,43,1,37,0,50,3,0,37,1,6,22,24,N/A,87,8,26,29,30,8,3.03\r\n,Garden Elementary,Tulare City,Tulare,843,7,5,1,2,0,47,0,44,0,53,9,3,11,4,7,21,30,N/A,92,8,21,43,18,11,3.03\r\n,Eleanor J. Toll Middle,Glendale Unified,Los Angeles,843,7,2,0,6,6,21,0,64,1,64,15,0,26,40,6,N/A,31,29,85,8,38,14,30,10,2.97\r\n,Ronald Reagan Elementary,Desert Sands Unified,Riverside,843,7,3,1,3,1,55,0,36,1,56,2,1,25,4,10,27,29,N/A,99,13,24,31,20,12,2.95\r\n,,Midway Elementary,Kern,843,B,0,0,0,0,10,0,90,0,38,0,0,0,7,8,9,9,N/A,97,5,21,59,9,7,2.91\r\n,Midway Elementary,Midway Elementary,Kern,843,7,0,0,0,0,10,0,90,0,38,0,0,0,7,8,9,9,N/A,97,5,21,59,9,7,2.91\r\n,Vandenberg Middle,Lompoc Unified,Santa Barbara,843,7,5,0,2,2,44,1,40,6,47,15,0,11,13,9,N/A,N/A,27,98,16,24,30,18,12,2.86\r\n,C. Roy Carmichael Elementary,Plumas Unified,Plumas,843,7,1,0,1,0,23,0,69,6,55,9,0,0,0,11,,,,94,14,20,42,16,8,2.86\r\n,Grandview Elementary,Rim of the World Unified,San Bernardino,843,7,1,0,0,1,42,0,53,3,59,5,0,30,2,11,22,24,N/A,91,15,23,35,15,12,2.85\r\n,Isla Vista Elementary,Goleta Union Elementary,Santa Barbara,843,7,3,0,5,2,69,0,19,2,68,17,0,46,23,21,20,22,N/A,95,33,16,14,12,24,2.78\r\n,Hollencrest Middle,West Covina Unified,Los Angeles,843,7,4,0,9,4,74,0,8,0,56,25,0,6,11,10,N/A,28,28,92,13,32,42,9,3,2.58\r\n,Edison Elementary,Ontario-Montclair Elementary,San Bernardino,843,7,3,0,2,1,78,0,15,1,75,38,0,33,6,7,26,27,N/A,99,19,32,30,12,8,2.58\r\n,,College Elementary,Santa Barbara,843,B,1,8,0,0,50,0,38,1,45,14,0,35,9,10,8,8,4,75,33,21,14,20,12,2.57\r\nY,Nuview Bridge Early College High,Nuview Union,Riverside,843,9,6,0,1,1,63,1,27,1,55,3,0,1,30,1,N/A,N/A,25,90,21,32,31,12,4,2.46\r\nD,Magnolia Science Academy 5,Los Angeles Unified,Los Angeles,843,7,2,0,4,4,75,0,14,0,89,0,0,17,46,8,N/A,27,22,97,27,24,26,21,2,2.46\r\n,Dove Hill Elementary,Evergreen Elementary,Santa Clara,843,7,3,0,38,8,46,1,3,1,64,2,2,38,23,6,23,29,N/A,100,28,31,28,11,2,2.27\r\n,Valley View Elementary,Nuview Union,Riverside,843,7,2,1,0,0,68,0,28,1,80,0,0,38,4,8,22,27,N/A,93,22,48,23,6,1,2.16\r\n,Rio Americano High,San Juan Unified,Sacramento,842,9,4,2,8,2,12,1,71,1,19,15,0,2,6,8,N/A,N/A,31,84,2,10,13,43,32,3.94\r\n,,Los Olivos Elementary,Santa Barbara,842,B,1,1,0,0,26,0,60,6,8,8,0,5,4,7,16,18,8,75,4,18,22,34,23,3.54\r\nY,Dunham Charter,Dunham Elementary,Sonoma,842,7,2,0,2,0,13,0,82,0,27,0,0,11,0,14,28,24,N/A,100,5,10,38,28,20,3.49\r\n,,Rosedale Union Elementary,Kern,842,B,3,1,4,2,26,0,62,1,25,11,0,3,7,8,22,27,30,96,4,14,34,28,20,3.47\r\n,,Travis Unified,Solano,842,B,15,1,5,10,21,1,41,6,26,3,0,3,6,12,26,31,29,97,2,11,39,36,12,3.47\r\n,North Star Academy of Independent Learni,Vista Unified,San Diego,842,7,3,2,2,2,22,0,67,0,22,10,0,2,2,5,10,9,11,97,2,19,33,33,14,3.38\r\n,Dearborn Street Elementary,Los Angeles Unified,Los Angeles,842,7,5,0,10,4,47,0,34,0,49,13,0,12,6,16,14,11,N/A,89,9,15,27,31,18,3.36\r\n,Matilija Junior High,Ojai Unified,Ventura,842,7,2,1,2,1,30,0,64,1,38,9,0,6,20,16,N/A,N/A,25,95,11,15,31,24,20,3.28\r\n,Ortega (Jose) Elementary,San Francisco Unified,San Francisco,842,7,17,1,37,6,14,1,11,9,59,14,1,21,13,14,21,25,N/A,80,8,20,26,28,18,3.28\r\n,,Central Elementary,San Bernardino,842,B,10,1,5,3,49,1,30,1,48,11,0,13,6,11,29,31,28,94,4,16,43,24,12,3.24\r\n,,Junction Elementary,Shasta,842,B,0,3,1,0,11,0,77,4,25,0,0,0,0,13,20,27,24,96,4,19,38,27,12,3.23\r\n,Middletown Middle,Middletown Unified,Lake,842,7,1,1,1,0,24,2,67,4,47,0,0,5,4,4,N/A,N/A,20,89,9,13,39,24,15,3.23\r\n,Coyote Valley Elementary,Middletown Unified,Lake,842,7,1,1,0,0,22,1,72,3,37,0,0,5,3,6,21,23,N/A,96,4,18,37,34,7,3.22\r\n,,Newport-Mesa Unified,Orange,842,B,1,0,4,1,42,1,49,0,48,6,0,23,12,10,23,29,28,91,19,13,17,30,22,3.22\r\n,Chapman Heights Elementary,Yucaipa-Calimesa Joint Unified,San Bernardino,842,7,4,0,4,2,32,0,58,0,39,13,0,9,2,8,22,34,N/A,97,6,20,35,26,13,3.19\r\n,Alta Loma Middle,South San Francisco Unified,San Mateo,842,7,3,0,7,28,44,5,12,1,41,29,2,15,21,11,N/A,27,29,100,8,18,36,29,9,3.15\r\n,Zamorano Elementary,San Diego Unified,San Diego,842,7,18,1,1,29,41,1,3,7,69,31,0,27,11,9,24,34,N/A,95,5,19,39,32,5,3.14\r\n,Central Elementary,Central Elementary,San Bernardino,842,7,9,1,2,1,52,1,32,1,52,8,0,18,4,13,26,30,N/A,94,5,17,50,20,9,3.12\r\n,Charleston Elementary,Los Banos Unified,Merced,842,7,0,0,0,0,54,0,46,0,45,2,1,17,10,7,30,30,N/A,88,5,28,30,26,11,3.08\r\n,Golden Springs Elementary,Pomona Unified,Los Angeles,842,7,6,0,12,2,63,0,17,0,52,9,0,12,13,7,27,30,30,82,6,29,33,18,14,3.06\r\n,Gehringer Elementary,Oakley Union Elementary,Contra Costa,842,7,9,1,3,7,41,1,36,2,41,0,0,15,10,14,30,33,N/A,94,7,25,38,24,5,2.96\r\n,Flying Hills Elementary,Cajon Valley Union,San Diego,842,7,5,1,3,0,33,1,48,3,53,17,0,18,6,14,22,33,N/A,89,6,31,37,21,6,2.9\r\n,Antelope Elementary,Eastern Sierra Unified,Mono,842,7,3,7,0,1,18,1,59,11,43,0,0,4,5,8,18,19,16,82,5,29,44,16,5,2.87\r\n,Wildwood Elementary,Yucaipa-Calimesa Joint Unified,San Bernardino,842,7,1,1,1,1,35,0,61,1,49,15,0,11,2,11,23,32,N/A,96,9,40,21,17,13,2.86\r\n,Lynwood Elementary,Novato Unified,Marin,842,7,6,0,6,1,52,0,27,8,65,17,0,33,10,17,18,27,N/A,100,21,24,18,20,16,2.86\r\n,Buena Vista Arts-Integrated,Ontario-Montclair Elementary,San Bernardino,842,7,5,0,2,1,78,1,13,1,68,18,0,22,8,9,28,32,N/A,98,12,24,40,18,7,2.86\r\n,,Solvang Elementary,Santa Barbara,842,B,1,1,2,0,45,0,50,0,42,0,0,30,11,13,24,34,26,93,23,23,20,20,14,2.79\r\n,Solvang Elementary,Solvang Elementary,Santa Barbara,842,7,1,1,2,0,45,0,50,0,42,0,0,30,11,13,24,34,26,93,23,23,20,20,14,2.79\r\n,Central Middle,Riverside Unified,Riverside,842,7,8,0,3,1,59,0,28,0,68,12,0,9,17,11,N/A,36,29,99,22,22,30,13,14,2.74\r\n,McCaffrey Middle,Galt Joint Union Elementary,Sacramento,842,7,3,1,1,2,52,1,40,0,61,17,3,5,28,13,N/A,N/A,28,96,13,29,37,15,6,2.72\r\n,Louisiana Schnell Elementary,Placerville Union Elementary,El Dorado,842,7,1,1,0,0,33,0,57,7,63,9,0,19,3,8,22,28,N/A,91,12,33,37,12,7,2.69\r\n,Cleminson Elementary,El Monte City Elementary,Los Angeles,842,7,2,0,29,3,52,0,13,2,64,3,1,29,16,7,26,26,N/A,97,18,30,25,21,7,2.69\r\n,Christa McAuliffe Elementary,Oxnard,Ventura,842,7,6,0,3,4,68,0,16,2,66,42,0,21,11,7,30,33,N/A,99,17,35,27,16,6,2.58\r\n,Buena Park Junior High,Buena Park Elementary,Orange,842,7,6,0,13,7,64,1,8,1,67,13,0,30,26,9,N/A,N/A,28,89,25,26,23,20,6,2.57\r\n,Old River Elementary,Panama-Buena Vista Union,Kern,842,7,8,0,10,4,43,0,33,1,42,6,0,9,9,7,32,30,N/A,53,13,47,17,21,1,2.51\r\n,McCardle Elementary,Fresno Unified,Fresno,842,7,8,0,7,1,52,2,29,0,77,1,0,11,6,14,21,29,N/A,90,17,42,24,12,6,2.47\r\n,Francisco Bravo Medical Magnet High,Los Angeles Unified,Los Angeles,842,9,2,0,10,3,74,0,10,0,85,42,1,3,63,1,N/A,N/A,30,60,31,27,17,18,6,2.4\r\n,Hinkley Elementary/Middle,Barstow Unified,San Bernardino,842,7,4,0,1,0,58,0,36,0,80,19,0,33,9,8,24,25,23,98,24,43,23,7,2,2.2\r\n,Mead Valley Elementary,Val Verde Unified,Riverside,842,7,5,0,1,0,82,0,11,1,92,10,0,45,12,11,27,26,N/A,87,36,28,23,9,4,2.17\r\n,Highland Elementary,West Contra Costa Unified,Contra Costa,842,7,23,0,11,5,55,0,4,0,87,10,0,41,20,13,22,29,N/A,82,25,46,20,9,0,2.14\r\n,Danbrook Elementary,Centralia Elementary,Orange,842,7,3,1,3,3,79,2,6,3,89,4,0,55,15,11,26,33,N/A,94,35,35,17,9,4,2.13\r\n,Eshelman Avenue Elementary,Los Angeles Unified,Los Angeles,842,7,13,2,4,2,69,1,9,0,80,4,0,19,17,13,19,15,N/A,75,45,31,15,8,1,1.89\r\n,Madison Elementary,Santa Ana Unified,Orange,842,7,0,0,2,0,96,0,1,0,100,5,3,71,17,10,25,31,N/A,98,59,24,13,3,1,1.62\r\n,Brisbane Elementary,Brisbane Elementary,San Mateo,841,7,0,0,18,5,33,3,31,10,16,3,0,3,15,12,26,22,N/A,94,2,11,25,40,22,3.68\r\n,El Dorado High,Placentia-Yorba Linda Unified,Orange,841,9,3,0,8,1,27,0,60,1,21,11,0,5,9,13,N/A,N/A,28,83,5,11,27,35,22,3.57\r\n,Juanamaria Elementary,Ventura Unified,Ventura,841,7,1,0,3,1,37,0,54,4,40,13,0,15,2,11,23,28,N/A,99,7,10,30,31,23,3.53\r\n,,San Mateo-Foster City,San Mateo,841,B,2,0,22,4,33,3,30,5,32,7,0,25,10,9,25,27,28,97,10,14,19,30,27,3.51\r\n,Shasta High,Shasta Union High,Shasta,841,9,2,5,4,1,9,1,78,0,37,17,0,1,2,7,N/A,N/A,27,92,3,13,34,29,20,3.5\r\n,Vanden High,Travis Unified,Solano,841,9,17,1,6,11,19,2,40,4,21,0,0,2,7,9,N/A,N/A,30,96,1,10,41,35,12,3.47\r\n,Monte Vista Elementary,Murrieta Valley Unified,Riverside,841,7,6,0,7,9,33,1,37,8,29,9,0,4,4,13,25,31,N/A,89,5,14,31,40,10,3.37\r\n,T. L. Waggoner Elementary,Imperial Unified,Imperial,841,7,2,0,1,0,76,0,20,0,32,10,3,31,2,4,20,29,N/A,96,4,16,38,21,20,3.37\r\n,Newport Harbor High,Newport-Mesa Unified,Orange,841,9,1,0,2,1,34,1,61,0,36,5,0,11,15,8,N/A,N/A,28,91,13,11,21,36,19,3.37\r\n,,Gold Oak Union Elementary,El Dorado,841,B,2,1,0,0,6,1,88,1,38,11,0,1,1,10,28,23,21,96,2,17,38,29,13,3.33\r\n,Mira Monte Elementary,Ojai Unified,Ventura,841,7,0,1,2,0,33,0,62,1,39,6,0,16,7,17,18,18,N/A,95,9,18,25,34,15,3.27\r\n,New Technology High,Napa Valley Unified,Napa,841,9,2,0,3,2,38,0,50,4,28,26,2,3,24,3,N/A,N/A,31,89,13,13,27,30,17,3.25\r\n,Alpine Elementary,Alpine Union Elementary,San Diego,841,7,0,5,1,0,22,1,68,2,32,5,0,7,0,11,28,30,N/A,89,4,16,42,25,12,3.25\r\n,Petaluma Junior High,Petaluma City Schools,Sonoma,841,7,1,0,1,1,30,0,65,2,34,10,1,14,10,14,N/A,N/A,28,96,13,14,28,28,17,3.22\r\n,Citrus Hills Intermediate,Corona-Norco Unified,Riverside,841,7,6,0,8,2,38,0,44,0,32,11,0,6,17,13,N/A,N/A,27,86,11,14,35,27,13,3.17\r\nY,Lemoore University Elementary Charter,Lemoore Union Elementary,Kings,841,7,4,0,0,4,37,0,52,2,34,10,3,5,5,4,N/A,24,22,98,2,18,50,19,10,3.17\r\n,Brooks Elementary,Windsor Unified,Sonoma,841,7,1,2,1,0,35,1,58,0,36,9,2,16,7,19,N/A,27,N/A,93,12,20,25,29,15,3.14\r\n,Daniel Webster,Pasadena Unified,Los Angeles,841,7,10,0,2,1,36,1,43,5,59,9,0,25,9,18,23,31,N/A,98,9,25,24,28,14,3.13\r\n,Christa McAuliffe Elementary,Oceanside Unified,San Diego,841,7,5,0,4,2,48,1,38,0,47,10,2,16,13,11,26,32,N/A,94,12,16,33,28,11,3.1\r\n,,Burnt Ranch Elementary,Trinity,841,B,1,29,0,0,9,0,60,0,56,4,0,0,0,16,8,9,N/A,71,0,35,35,19,10,3.04\r\n,Burnt Ranch Elementary,Burnt Ranch Elementary,Trinity,841,7,1,29,0,0,9,0,60,0,56,4,0,0,0,16,8,9,N/A,71,0,35,35,19,10,3.04\r\n,Bell Mountain Middle,Menifee Union Elementary,Riverside,841,7,10,0,3,8,37,1,39,0,37,16,0,6,8,8,N/A,25,26,81,6,21,43,25,5,3.02\r\n,Joe Michell,Livermore Valley Joint Unified,Alameda,841,7,2,0,4,4,43,1,43,4,38,4,5,17,10,14,23,23,33,100,13,19,30,29,9,3.02\r\n,Knightsen Elementary,Knightsen Elementary,Contra Costa,841,7,1,1,1,0,34,0,63,0,39,4,0,11,7,14,20,21,26,98,9,24,37,23,7,2.96\r\n,Jersey Avenue Elementary,Little Lake City Elementary,Los Angeles,841,7,1,1,0,1,93,0,3,0,67,15,0,15,6,8,29,32,N/A,94,8,23,51,11,6,2.84\r\n,Mission Hills High,San Marcos Unified,San Diego,841,9,3,1,4,4,51,0,36,1,45,26,6,12,27,12,N/A,N/A,29,95,24,17,24,22,13,2.83\r\n,Ballico Elementary,Ballico-Cressey Elementary,Merced,841,7,0,0,3,0,66,0,30,1,72,4,1,35,19,10,N/A,30,29,55,22,26,14,24,14,2.81\r\n,Apricot Valley Elementary,Patterson Joint Unified,Stanislaus,841,7,12,0,6,4,51,4,19,2,61,4,1,21,11,14,28,32,N/A,100,15,24,35,21,5,2.77\r\n,Margaret Pauline Brown Elementary,Jefferson Elementary,San Mateo,841,7,2,0,12,35,35,2,11,4,64,3,0,64,11,13,21,23,N/A,79,10,29,33,27,0,2.77\r\n,Cordua Elementary,Marysville Joint Unified,Yuba,841,7,0,2,2,0,24,0,64,7,44,0,0,13,11,9,23,22,N/A,87,18,21,44,13,5,2.67\r\n,Imperial Elementary,Downey Unified,Los Angeles,841,7,4,0,1,1,86,0,7,0,73,0,0,32,1,15,25,N/A,N/A,99,15,34,31,13,7,2.64\r\n,Rod Kelley Elementary,Gilroy Unified,Santa Clara,841,7,1,0,0,1,85,0,11,1,68,2,0,41,12,11,25,29,N/A,91,22,27,28,15,8,2.59\r\n,Inyokern Elementary,Sierra Sands Unified,Kern,841,7,2,3,1,2,19,0,75,0,73,1,0,10,0,12,27,31,N/A,95,20,26,38,14,3,2.54\r\n,Los Molinos Elementary,Los Molinos Unified,Tehama,841,7,0,1,0,0,41,0,55,2,77,0,0,14,14,7,20,27,28,95,18,31,41,8,2,2.46\r\n,Mitchell Elementary,Atwater Elementary,Merced,841,7,2,2,4,1,70,0,21,0,88,3,5,27,19,10,22,31,N/A,93,21,32,32,10,5,2.46\r\n,Big Bear Elementary,Bear Valley Unified,San Bernardino,841,7,1,0,0,1,41,0,47,3,68,0,0,32,4,12,27,34,N/A,96,22,41,19,14,4,2.39\r\n,Burbank Elementary,Hayward Unified,Alameda,841,7,9,1,3,3,79,1,4,1,83,0,7,45,20,4,19,24,N/A,81,24,40,21,8,7,2.34\r\nD,Feaster (Mae L.) Charter,Chula Vista Elementary,San Diego,841,7,4,0,1,2,87,0,5,1,77,11,0,58,8,10,20,29,N/A,54,28,36,19,10,6,2.3\r\n,Woodson Elementary,Corning Union Elementary,Tehama,841,7,0,0,2,0,56,0,41,0,75,0,8,37,6,6,23,30,N/A,77,24,40,25,9,2,2.27\r\nD,Aspire Junior Collegiate Academy,SBC - Aspire Public Schools,El Dorado,841,7,0,0,0,0,100,0,0,0,97,0,0,41,33,6,22,30,N/A,89,25,48,21,5,1,2.09\r\nD,River Montessori Elementary Charter,SBE - River Montessori Element,Sonoma,840,7,2,0,5,0,15,0,68,7,14,0,0,5,0,8,2,N/A,N/A,96,0,2,20,45,34,4.1\r\nD,Fuente Nueva Charter,Arcata Elementary,Humboldt,840,7,0,0,5,0,25,0,62,2,42,0,0,0,0,7,N/A,1,N/A,96,0,4,15,51,30,4.08\r\n,Loma Vista Elementary,Ventura Unified,Ventura,840,7,0,0,2,2,25,1,64,6,22,10,0,7,0,11,21,22,N/A,100,2,7,21,35,35,3.92\r\n,Cowan Avenue Elementary,Los Angeles Unified,Los Angeles,840,7,74,1,3,0,5,2,15,0,40,22,0,1,0,14,12,2,N/A,77,1,7,26,36,31,3.9\r\nY,River Charter,Napa Valley Unified,Napa,840,7,0,1,3,0,29,0,60,6,22,34,2,2,13,6,N/A,29,28,98,4,11,23,36,26,3.69\r\nD,Nea Community Learning Center,Alameda City Unified,Alameda,840,7,14,1,16,3,17,1,35,10,11,0,0,19,3,9,27,26,25,97,8,8,28,32,25,3.6\r\n,,Folsom-Cordova Unified,Sacramento,840,B,7,1,11,2,16,1,59,2,33,11,0,10,11,11,28,31,32,90,5,13,25,33,24,3.59\r\n,Sierra Hills Elementary,Placer Hills Union Elementary,Placer,840,7,0,2,0,1,6,1,89,2,30,0,0,2,0,11,20,N/A,N/A,96,1,15,29,36,19,3.58\r\n,Penngrove Elementary,Petaluma City Schools,Sonoma,840,7,1,0,1,0,15,0,80,1,25,7,0,6,3,17,23,29,N/A,96,3,9,29,47,12,3.56\r\n,Grossmont Middle College High,Grossmont Union High,San Diego,840,9,8,0,3,0,5,3,79,0,26,95,0,5,3,3,,,,95,0,14,39,31,17,3.5\r\n,Monterey Road Elementary,Atascadero Unified,San Luis Obispo,840,7,0,2,4,0,20,0,67,6,38,6,0,7,3,11,29,28,N/A,100,5,10,37,29,19,3.46\r\n,Valley View Elementary,West Contra Costa Unified,Contra Costa,840,7,19,0,22,6,17,0,35,0,36,11,0,10,9,9,23,27,N/A,94,4,20,25,34,17,3.4\r\n,Lone Tree Elementary,Wheatland,Yuba,840,7,12,5,4,4,11,0,63,0,28,7,0,2,1,13,23,23,N/A,96,0,23,33,27,17,3.36\r\n,Clovis High,Clovis Unified,Fresno,840,9,2,1,9,1,33,0,50,2,43,9,1,4,8,6,N/A,N/A,27,97,7,20,30,27,16,3.26\r\n,Roy Herburger Elementary,Elk Grove Unified,Sacramento,840,7,10,0,48,7,17,4,7,7,66,2,0,35,17,6,21,28,N/A,100,6,25,29,27,12,3.15\r\n,Oak Ridge Elementary,Oak Grove Elementary,Santa Clara,840,7,6,0,16,2,38,1,34,1,34,24,0,18,8,14,21,28,N/A,96,7,26,28,26,12,3.11\r\n,Crestwood Street Elementary,Los Angeles Unified,Los Angeles,840,7,7,0,3,2,57,1,30,0,38,5,0,1,1,17,13,6,N/A,87,6,20,44,22,9,3.08\r\n,Tierra Buena Elementary,Yuba City Unified,Sutter,840,7,1,0,18,1,24,0,50,6,51,8,3,11,13,13,22,25,24,96,10,21,33,24,12,3.07\r\n,Morse Avenue Elementary,Placentia-Yorba Linda Unified,Orange,840,7,2,0,4,3,70,0,20,1,61,5,0,31,10,6,23,36,N/A,79,16,22,22,23,17,3.04\r\n,Stuart Mesa Elementary,Oceanside Unified,San Diego,840,7,19,1,2,2,34,2,34,5,56,4,0,1,2,18,25,36,N/A,95,0,20,59,19,2,3.03\r\n,Hidden Springs Elementary,Moreno Valley Unified,Riverside,840,7,15,1,2,3,56,1,19,2,62,9,3,16,4,10,27,28,N/A,95,8,24,36,20,11,3.02\r\n,Caroldale Learning Community,Los Angeles Unified,Los Angeles,840,7,9,0,2,33,45,6,5,0,60,18,0,11,15,8,15,24,32,96,12,22,28,32,7,3.01\r\n,Roberts Ferry Union Elementary,Roberts Ferry Union Elementary,Stanislaus,840,7,2,2,0,0,27,2,68,0,49,0,0,14,0,5,5,2,N/A,89,9,27,34,18,13,2.98\r\n,,Kingsburg Elementary Charter,Fresno,840,B,0,0,3,0,58,0,34,2,54,1,0,13,7,9,23,34,26,95,11,25,32,18,14,2.98\r\n,,Knightsen Elementary,Contra Costa,840,B,1,1,1,0,34,0,63,0,39,4,0,11,7,14,20,21,26,97,9,24,37,23,7,2.96\r\nY,Creative Connections Arts Academy,Twin Rivers Unified,Sacramento,840,7,13,1,3,1,34,1,43,4,59,27,0,6,11,8,26,30,25,95,5,35,31,20,10,2.95\r\n,La Serna High,Whittier Union High,Los Angeles,840,9,1,0,3,1,53,0,40,0,38,0,0,10,9,7,N/A,N/A,34,97,15,21,32,20,12,2.93\r\n,,Ballico-Cressey Elementary,Merced,840,B,0,0,3,0,64,0,33,0,72,3,1,38,14,9,22,30,29,59,18,29,16,24,14,2.86\r\n,Arlie F. Hutchinson Middle,Norwalk-La Mirada Unified,Los Angeles,840,7,1,0,3,3,68,1,21,1,52,19,2,5,9,11,N/A,29,30,97,8,35,31,19,8,2.85\r\n,Hawthorne Elementary,San Luis Coastal Unified,San Luis Obispo,840,7,1,0,2,0,50,0,41,5,61,0,0,36,1,16,21,26,N/A,98,24,21,21,16,19,2.85\r\n,Helen Stacey Middle,Westminster Elementary,Orange,840,7,2,1,28,1,37,1,27,3,58,20,0,24,24,11,N/A,31,27,90,16,26,28,20,10,2.82\r\nD,Port of Los Angeles High,Los Angeles Unified,Los Angeles,840,9,6,1,2,4,66,2,18,1,31,0,0,3,20,10,N/A,N/A,24,96,17,22,34,20,8,2.8\r\n,Kimbark Elementary,San Bernardino City Unified,San Bernardino,840,7,13,1,1,0,53,0,28,1,99,27,0,20,4,7,26,32,N/A,68,15,28,30,14,12,2.8\r\n,Great Partnership Special Education Cons,Gateway Unified,Shasta,840,C,9,6,8,0,15,0,57,4,17,0,0,0,0,100,12,12,N/A,62,9,36,33,9,12,2.79\r\n,W. R. Nelson Elementary,Tustin Unified,Orange,840,7,3,0,9,3,65,1,17,1,63,4,0,43,6,10,23,33,N/A,95,13,34,27,18,9,2.75\r\n,New Republic Elementary,Santa Rita Union Elementary,Monterey,840,7,2,0,6,8,68,0,15,0,65,0,0,37,11,11,24,25,N/A,84,14,33,26,22,6,2.72\r\n,Toluca Lake Elementary,Los Angeles Unified,Los Angeles,840,7,7,0,2,1,72,0,18,0,82,12,0,19,17,10,17,20,N/A,84,16,31,28,20,6,2.68\r\n,Norman N. Glick Middle,Empire Union Elementary,Stanislaus,840,7,7,1,5,0,52,2,32,0,73,9,1,16,16,11,N/A,N/A,25,93,16,34,31,11,8,2.62\r\n,Santa Fe Middle,Monrovia Unified,Los Angeles,840,7,7,1,3,4,69,0,14,1,63,23,0,9,24,12,N/A,27,27,100,20,30,25,16,8,2.61\r\n,Golden Avenue Elementary,Lemon Grove,San Diego,840,7,15,1,1,2,64,1,10,6,100,17,0,32,8,8,26,32,N/A,99,20,25,37,14,4,2.56\r\n,Signal Hill Elementary,Long Beach Unified,Los Angeles,840,7,22,0,26,1,45,3,2,0,87,7,1,23,22,6,29,35,N/A,97,21,27,33,14,4,2.52\r\n,Amestoy Elementary,Los Angeles Unified,Los Angeles,840,7,24,1,3,5,65,1,1,0,87,8,0,28,20,10,17,18,N/A,40,25,26,30,14,5,2.47\r\n,La Rosa Elementary,Ceres Unified,Stanislaus,840,7,3,1,13,2,61,2,16,1,78,3,2,44,7,16,21,32,N/A,97,20,36,25,13,5,2.46\r\n,John Adams Elementary,Desert Sands Unified,Riverside,840,7,4,0,0,1,80,0,12,2,90,5,0,28,7,17,25,28,N/A,99,18,40,28,10,4,2.44\r\n,Imperial County Special Education,Imperial County Office of Educ,Imperial,840,C,2,0,1,0,93,0,4,0,100,0,4,35,33,100,9,10,N/A,99,26,30,21,19,3,2.43\r\n,Rancho Mirage Elementary,Palm Springs Unified,Riverside,840,7,5,0,2,3,58,0,32,0,74,12,0,45,6,9,23,28,N/A,97,25,38,19,11,7,2.37\r\n,James Irvine Intermediate,Garden Grove Unified,Orange,840,7,1,0,37,0,59,1,2,0,75,5,0,41,41,11,N/A,N/A,27,69,29,34,15,20,3,2.34\r\n,Bertrand Avenue Elementary,Los Angeles Unified,Los Angeles,840,7,2,0,4,2,81,0,11,0,87,10,0,31,27,12,20,24,N/A,90,28,36,17,13,6,2.32\r\n,Landau Elementary,Palm Springs Unified,Riverside,840,7,4,0,1,3,77,0,15,0,85,5,0,37,7,8,30,30,N/A,98,20,45,26,7,3,2.27\r\n,Daniel Phelan Elementary,Whittier City Elementary,Los Angeles,840,7,0,0,1,1,94,0,2,1,70,0,0,20,16,8,29,31,N/A,95,16,63,12,6,3,2.18\r\n,Harborside Elementary,Chula Vista Elementary,San Diego,840,7,4,0,0,1,91,1,3,0,81,6,0,66,6,11,17,20,N/A,91,33,34,18,11,3,2.17\r\n,Esther L. Walter Elementary,Magnolia Elementary,Orange,840,7,2,0,7,2,80,3,4,1,93,10,0,45,37,10,25,31,N/A,61,41,32,19,7,1,1.95\r\n,Columbia Elementary,El Monte City Elementary,Los Angeles,840,7,0,0,11,1,86,0,1,0,88,6,2,38,24,8,20,24,20,99,41,34,15,8,2,1.94\r\n,,Dunham Elementary,Sonoma,839,B,2,0,2,0,12,0,84,0,25,0,0,11,0,15,28,23,N/A,100,5,9,37,27,23,3.54\r\n,Art Freiler,Tracy Joint Unified,San Joaquin,839,7,5,0,13,6,39,1,26,10,34,0,0,23,10,7,28,29,26,91,5,15,26,31,23,3.52\r\n,Patriot Elementary,Rosedale Union Elementary,Kern,839,7,3,0,3,3,29,0,60,2,27,8,0,3,5,8,23,30,N/A,97,3,12,36,32,18,3.51\r\n,,Mt. Shasta Union Elementary,Siskiyou,839,B,1,2,1,0,16,1,74,5,40,9,0,2,2,7,23,25,22,96,1,15,41,21,22,3.48\r\nY,Stellar Charter,Redding Elementary,Shasta,839,7,0,1,2,0,9,0,83,5,23,1,0,0,0,6,17,15,N/A,78,0,7,51,31,10,3.45\r\n,Norris Middle,Norris Elementary,Kern,839,7,1,0,4,3,34,1,51,5,21,0,0,2,6,3,N/A,29,31,87,2,18,34,27,19,3.43\r\n,Gold Oak Elementary,Gold Oak Union Elementary,El Dorado,839,7,0,1,0,0,7,0,89,1,38,8,0,0,1,11,28,31,N/A,99,2,12,42,31,13,3.42\r\n,Alder Creek Middle,Tahoe-Truckee Joint Unified,Placer,839,7,0,0,0,0,34,0,63,2,41,9,0,20,12,13,N/A,28,25,96,13,17,18,27,25,3.33\r\n,California Elementary,Newport-Mesa Unified,Orange,839,7,3,0,5,3,36,2,51,0,51,2,1,14,6,11,24,31,N/A,95,10,12,32,32,15,3.3\r\n,Lincoln Elementary,Ventura Unified,Ventura,839,7,0,0,4,0,38,0,48,8,52,18,0,12,2,7,25,35,N/A,100,5,18,35,25,17,3.3\r\n,David Starr Jordan Middle,Burbank Unified,Los Angeles,839,7,2,0,4,4,47,0,38,4,0,12,0,7,14,13,N/A,26,28,94,6,19,31,31,14,3.28\r\n,Heron,Natomas Unified,Sacramento,839,7,14,1,15,9,22,2,29,5,43,11,0,16,6,12,32,29,26,87,3,22,32,31,12,3.28\r\n,Valley Vista Elementary,Chula Vista Elementary,San Diego,839,7,4,0,1,10,69,1,12,3,40,21,0,25,3,10,21,31,N/A,86,6,25,28,27,14,3.2\r\n,Plymouth Elementary,Amador County Unified,Amador,839,7,1,2,0,0,27,1,59,8,53,7,0,11,9,14,27,22,N/A,99,0,25,34,38,4,3.2\r\n,Raymond Case Elementary,Elk Grove Unified,Sacramento,839,7,15,0,30,5,24,1,16,7,59,2,0,20,16,7,24,26,N/A,97,6,24,30,29,12,3.16\r\n,,Campbell Union,Santa Clara,839,B,4,1,11,3,46,1,32,1,45,14,0,28,17,9,22,27,28,96,12,23,22,27,16,3.13\r\n,Herndon-Barstow Elementary,Central Unified,Fresno,839,7,4,1,19,2,55,0,17,1,63,5,1,11,19,9,19,17,N/A,91,12,18,35,23,12,3.07\r\n,Reeds Creek Elementary,Reeds Creek Elementary,Tehama,839,7,2,4,0,0,7,1,82,4,55,0,0,3,0,11,20,25,N/A,71,3,28,42,18,9,3.03\r\n,Ranchos Middle,Golden Valley Unified,Madera,839,7,1,0,2,0,29,0,68,0,36,12,0,4,10,8,N/A,N/A,31,92,3,31,39,17,10,3\r\n,Cabrillo Elementary,San Diego Unified,San Diego,839,7,9,0,1,2,57,0,20,11,66,31,0,33,1,7,24,35,N/A,87,9,22,43,17,10,2.97\r\n,,Orange Unified,Orange,839,B,2,0,10,2,50,0,33,1,43,10,0,24,10,10,28,28,27,95,21,18,22,24,15,2.95\r\n,Magnolia Elementary,Oakdale Joint Unified,Stanislaus,839,7,0,0,0,0,29,0,68,1,53,6,3,15,3,14,19,29,N/A,98,11,23,35,23,8,2.92\r\nY,Ralph A. Gates Elementary,Saddleback Valley Unified,Orange,839,7,1,0,3,2,76,0,17,1,59,6,0,55,5,9,28,33,N/A,94,25,20,16,17,22,2.92\r\n,Matthew Gage Middle,Riverside Unified,Riverside,839,7,8,0,2,0,56,0,32,0,59,13,0,9,16,11,N/A,N/A,27,96,17,19,34,15,15,2.91\r\n,William R. Buckley Elementary,Burton Elementary,Tulare,839,7,2,1,2,3,49,0,43,0,65,0,5,22,0,6,25,32,N/A,98,15,19,42,15,9,2.84\r\n,Green Acres Middle,Visalia Unified,Tulare,839,7,2,2,7,0,63,0,25,1,62,18,2,11,18,10,N/A,N/A,30,95,18,22,31,19,10,2.82\r\n,Imperial Beach Elementary,South Bay Union Elementary,San Diego,839,7,5,2,2,3,55,1,32,0,67,4,0,19,5,13,23,29,N/A,93,10,29,39,18,5,2.81\r\n,R. F. Hazard Elementary,Garden Grove Unified,Orange,839,7,0,0,13,0,85,0,1,0,86,0,0,69,17,7,26,31,N/A,3,20,27,13,33,7,2.8\r\n,East Middle,Downey Unified,Los Angeles,839,7,3,0,3,1,83,0,9,0,60,8,0,9,21,10,N/A,21,23,100,12,32,28,18,9,2.79\r\n,Colonel Mitchell Paige Middle,Desert Sands Unified,Riverside,839,7,4,1,1,1,61,0,31,1,64,11,0,8,17,14,N/A,31,31,99,16,27,34,15,8,2.73\r\n,,Galt Joint Union Elementary,Sacramento,839,B,2,0,2,1,54,1,39,0,64,12,3,15,21,15,20,27,28,93,16,26,38,15,6,2.68\r\n,Danbury Special Education,Claremont Unified,Los Angeles,839,C,0,0,3,0,67,0,26,3,69,0,0,3,21,100,6,12,N/A,23,22,33,11,22,11,2.67\r\n,Fryberger Elementary,Westminster Elementary,Orange,839,7,0,0,35,1,49,1,11,2,74,17,0,58,9,7,22,33,N/A,88,15,31,28,23,3,2.66\r\n,Denker Avenue Elementary,Los Angeles Unified,Los Angeles,839,7,12,0,17,2,64,2,3,0,71,4,0,33,20,10,20,21,N/A,73,17,28,34,17,5,2.64\r\n,Gledhill Street Elementary,Los Angeles Unified,Los Angeles,839,7,2,0,6,10,72,0,8,0,74,10,0,28,22,13,19,16,N/A,90,17,38,22,19,6,2.59\r\n,Stagg Street Elementary,Los Angeles Unified,Los Angeles,839,7,4,0,2,3,77,0,13,0,72,17,0,31,19,13,16,21,N/A,89,26,22,30,16,5,2.53\r\nD,Mueller Charter (Robert L.),Chula Vista Elementary,San Diego,839,7,3,1,1,2,90,0,3,0,75,2,0,44,16,6,22,32,N/A,75,24,33,23,15,5,2.45\r\nY,Shiloh Charter,Shiloh Elementary,Stanislaus,839,7,0,0,0,0,66,0,33,1,81,0,0,31,25,7,5,25,32,93,34,18,31,13,5,2.37\r\n,Lee Elementary,Long Beach Unified,Los Angeles,839,7,14,0,18,0,61,0,4,0,100,7,2,45,15,9,29,34,N/A,72,30,28,27,14,1,2.3\r\n,Braddock Drive Elementary,Los Angeles Unified,Los Angeles,839,7,8,0,4,1,76,0,11,0,77,17,0,32,18,11,19,20,N/A,77,38,26,15,11,10,2.29\r\n,Cesar E. Chavez High,Delano Joint Union High,Kern,839,9,0,0,0,0,85,0,3,12,100,17,9,28,39,8,N/A,N/A,30,72,45,30,14,8,2,1.91\r\n,Grace Smith Elementary,Calipatria Unified,Imperial,839,7,4,0,0,0,66,0,30,0,100,2,46,44,0,8,20,16,N/A,100,54,40,4,2,0,1.54\r\n,Heritage CCCOE Special Education Program,Contra Costa County Office of,Contra Costa,839,C,14,2,6,8,35,4,27,4,49,0,0,2,0,100,,,,0,0,0,0,0,0,\r\nD,Westside Innovative School House,Los Angeles Unified,Los Angeles,838,7,28,0,3,1,25,3,39,0,9,0,0,4,0,12,13,12,N/A,40,0,0,11,41,48,4.37\r\n,Rivergold Elementary,Yosemite Unified,Madera,838,7,0,2,1,0,16,0,76,4,40,10,0,0,3,9,24,30,27,95,1,12,31,33,24,3.66\r\nD,El Camino Real Charter High,Los Angeles Unified,Los Angeles,838,9,7,2,10,6,26,0,49,1,18,38,0,2,15,8,N/A,N/A,29,70,5,0,20,74,0,3.64\r\n,Sequoia Elementary,Oakland Unified,Alameda,838,7,28,0,16,2,20,1,21,6,48,46,0,17,8,12,27,24,N/A,58,7,13,26,31,23,3.52\r\n,,Three Rivers Union Elementary,Tulare,838,B,0,1,3,0,23,0,68,5,39,0,0,2,0,6,16,17,N/A,99,3,6,54,20,17,3.43\r\n,Los Osos Middle,San Luis Coastal Unified,San Luis Obispo,838,7,1,1,2,5,25,0,63,3,44,0,0,12,4,8,N/A,N/A,22,97,8,13,30,28,21,3.4\r\n,Calavera Hills Elementary,Carlsbad Unified,San Diego,838,7,4,0,6,3,42,0,39,6,36,20,1,21,2,9,31,32,N/A,93,9,18,23,25,25,3.39\r\n,Columbia Elementary,Fruitvale Elementary,Kern,838,7,2,1,2,2,33,0,56,2,39,0,0,1,8,14,27,25,N/A,99,2,14,42,28,14,3.38\r\nD,Pacific Technology School Santa Ana,SBC - Pacific Technology,El Dorado,838,7,2,1,5,0,54,0,33,5,52,0,0,13,32,13,N/A,14,18,100,14,8,30,23,25,3.38\r\n,Mountain View Middle,Columbia Elementary,Shasta,838,7,1,3,2,0,12,0,77,5,38,6,0,0,3,9,N/A,26,26,96,3,15,45,25,12,3.29\r\n,Enslen Elementary,Modesto City Elementary,Stanislaus,838,7,4,1,2,0,18,0,68,6,41,12,0,5,0,10,21,33,N/A,98,7,18,37,21,18,3.25\r\n,Potrero Heights Elementary,Montebello Unified,Los Angeles,838,7,2,0,24,2,64,2,8,0,50,11,0,16,7,9,28,30,N/A,79,8,20,28,30,15,3.25\r\n,Union Mine High,El Dorado Union High,El Dorado,838,9,1,3,1,0,10,1,80,4,26,11,0,1,4,9,N/A,N/A,28,100,4,20,42,22,12,3.18\r\n,Hillcrest Elementary,Garvey Elementary,Los Angeles,838,7,1,1,50,2,40,0,2,4,55,24,0,34,12,12,22,32,N/A,96,9,26,27,26,12,3.07\r\n,Dr. Juliet Thorner Elementary,Bakersfield City,Kern,838,7,6,1,1,1,65,0,21,3,63,5,0,5,5,6,20,28,N/A,88,5,25,39,19,11,3.05\r\n,Faye Ross Middle,ABC Unified,Los Angeles,838,7,9,0,14,10,57,1,8,1,65,7,4,19,17,11,N/A,N/A,27,90,12,22,30,27,8,2.98\r\n,Cressey Elementary,Ballico-Cressey Elementary,Merced,838,7,0,0,2,0,55,0,42,0,70,0,2,44,0,2,22,N/A,N/A,69,9,34,20,23,14,2.98\r\n,Adelante Spanish Immersion,Redwood City Elementary,San Mateo,838,7,1,0,1,1,80,0,16,1,51,8,2,35,21,7,30,30,N/A,96,21,22,25,19,13,2.8\r\n,Vanalden Avenue Elementary,Los Angeles Unified,Los Angeles,838,7,6,0,8,4,68,0,14,0,82,14,0,28,17,6,19,18,N/A,92,14,30,28,21,8,2.79\r\n,Mill Elementary,Whittier City Elementary,Los Angeles,838,7,1,0,0,1,95,0,3,0,64,0,0,18,15,5,30,32,N/A,95,15,28,33,18,6,2.71\r\n,Juliette Low Elementary,Magnolia Elementary,Orange,838,7,5,0,16,4,58,1,11,2,79,12,0,31,36,7,24,31,N/A,76,21,26,27,20,6,2.63\r\n,,Westminster Elementary,Orange,838,B,1,0,40,1,41,1,13,2,72,20,0,51,17,10,22,28,28,92,21,31,24,18,6,2.59\r\n,Baden-Powell Elementary,Magnolia Elementary,Orange,838,7,5,0,7,3,70,1,11,2,84,6,0,45,23,14,21,29,N/A,67,28,22,22,24,4,2.54\r\n,,Valle Lindo Elementary,Los Angeles,838,B,0,0,3,0,95,0,1,0,83,7,0,18,26,5,19,31,28,96,24,30,34,10,2,2.37\r\nD,Community Charter Early College High,Los Angeles Unified,Los Angeles,838,9,2,0,0,1,95,0,1,0,75,7,0,9,58,5,N/A,N/A,23,92,32,30,23,7,9,2.32\r\n,Vista Square Elementary,Chula Vista Elementary,San Diego,838,7,3,1,1,4,84,0,6,1,76,7,0,53,7,12,21,28,N/A,69,21,43,24,8,4,2.31\r\nD,Aspire Gateway Academy,Los Angeles Unified,Los Angeles,838,7,0,0,0,0,95,0,1,0,86,0,0,35,14,7,23,28,N/A,80,25,41,21,6,7,2.3\r\n,,Orick Elementary,Humboldt,838,B,0,15,0,0,8,0,77,0,85,31,0,8,0,38,1,N/A,N/A,85,9,55,36,0,0,2.27\r\n,Orick Elementary,Orick Elementary,Humboldt,838,7,0,15,0,0,8,0,77,0,85,31,0,8,0,38,1,N/A,N/A,85,9,55,36,0,0,2.27\r\n,Edward Kemble Elementary,Sacramento City Unified,Sacramento,838,7,26,2,21,0,44,2,3,2,100,5,1,45,7,14,20,N/A,N/A,61,31,39,18,9,3,2.14\r\n,Bates Elementary,River Delta Joint Unified,Sacramento,838,7,1,0,0,2,83,0,14,0,84,0,34,53,26,11,19,25,N/A,94,53,22,12,10,3,1.88\r\n,La Primaria Elementary,Mountain View Elementary,Los Angeles,838,7,0,0,11,1,86,0,2,0,97,7,6,57,7,8,28,32,N/A,96,38,46,13,1,2,1.85\r\nD,N.E.W. Academy of Science and Arts,Los Angeles Unified,Los Angeles,838,7,1,0,0,0,99,0,0,0,100,6,0,44,49,8,21,19,N/A,81,45,41,8,4,2,1.76\r\n,Hawaiian Avenue Elementary,Los Angeles Unified,Los Angeles,838,7,3,0,0,0,95,1,1,0,94,16,1,39,21,11,20,22,N/A,91,60,24,11,4,1,1.63\r\nD,Alliance Gertz-Ressler High,Los Angeles Unified,Los Angeles,838,9,6,0,0,0,94,0,0,0,95,0,0,19,55,7,N/A,N/A,27,100,64,23,9,2,2,1.54\r\n,West Side Elementary,West Side Union Elementary,Sonoma,837,6,0,0,0,0,16,0,77,5,21,0,1,7,1,16,3,N/A,N/A,96,6,12,26,28,28,3.6\r\n,Capistrano Valley High,Capistrano Unified,Orange,837,9,1,0,5,2,29,0,58,4,26,15,0,8,16,6,N/A,N/A,30,81,8,11,19,36,25,3.59\r\n,,West Side Union Elementary,Sonoma,837,B,0,0,0,0,17,0,77,5,21,0,1,8,1,16,3,N/A,N/A,96,6,12,26,28,27,3.58\r\n,Glendora High,Glendora Unified,Los Angeles,837,9,2,0,5,3,35,0,51,4,17,11,0,2,6,11,N/A,N/A,33,99,3,15,32,30,20,3.51\r\n,Pleasant Valley Elementary,Pleasant Valley Elementary,Nevada,837,7,0,1,0,1,8,0,85,3,32,1,0,1,0,14,N/A,18,26,98,1,12,43,29,15,3.46\r\n,Three Rivers Elementary,Three Rivers Union Elementary,Tulare,837,6,0,1,3,0,21,0,69,5,37,0,0,2,0,4,16,17,N/A,100,3,6,55,19,18,3.44\r\n,Pioneer High,San Jose Unified,Santa Clara,837,9,3,1,12,3,34,1,45,1,29,26,0,8,16,8,N/A,N/A,30,94,10,15,22,33,20,3.38\r\n,Cleveland Elementary,Long Beach Unified,Los Angeles,837,6,8,0,6,3,33,1,47,0,33,0,0,12,3,15,26,28,N/A,99,4,15,39,28,14,3.35\r\n,Vista Murrieta High,Murrieta Valley Unified,Riverside,837,9,8,0,5,8,34,1,39,5,26,4,0,1,6,10,N/A,N/A,28,97,4,16,35,32,13,3.34\r\n,Sierra High,Sierra Unified,Fresno,837,9,1,14,1,0,14,0,69,0,37,14,0,1,2,12,N/A,N/A,25,81,2,19,43,22,13,3.26\r\n,Weston Elementary,Ripon Unified,San Joaquin,837,6,1,1,3,2,34,0,59,1,39,0,1,17,3,8,30,25,N/A,98,6,21,29,29,15,3.26\r\n,Gage Elementary,San Diego Unified,San Diego,837,6,7,0,8,2,31,1,43,7,47,32,0,19,8,11,23,33,N/A,88,1,26,34,24,16,3.26\r\n,Browns Valley Elementary,Napa Valley Unified,Napa,837,6,0,1,1,0,30,0,60,7,29,10,1,20,5,10,28,28,N/A,95,15,17,19,30,19,3.22\r\n,Villa Park High,Orange Unified,Orange,837,9,1,1,10,2,37,1,45,2,25,23,0,8,14,9,N/A,N/A,27,94,13,15,27,27,17,3.2\r\n,Frank M. Wright Middle,Imperial Unified,Imperial,837,7,2,0,1,1,77,0,18,0,42,16,4,26,9,10,N/A,30,28,95,6,20,39,18,16,3.2\r\n,Loyalton Elementary,Sierra-Plumas Joint Unified,Sierra,837,6,0,1,0,0,16,0,76,3,44,6,0,7,1,11,24,25,N/A,97,5,17,47,23,8,3.13\r\n,Lakeview Elementary,Lakeside Union Elementary,San Diego,837,6,1,2,0,1,14,0,80,1,30,4,0,3,2,15,22,27,N/A,99,2,31,34,22,11,3.1\r\n,,Simi Valley Unified,Ventura,837,B,1,0,7,2,29,0,58,2,31,9,0,8,10,15,23,30,25,90,8,26,29,25,13,3.09\r\n,Delta View Elementary,Mt. Diablo Unified,Contra Costa,837,6,12,0,12,17,44,1,7,3,60,4,0,29,18,6,30,34,N/A,89,8,23,30,31,8,3.09\r\n,Galileo Academy 101,Victor Elementary,San Bernardino,837,6,16,0,4,1,52,1,22,3,64,27,0,7,2,5,29,32,N/A,96,6,19,45,22,9,3.09\r\n,,Golden Valley Unified,Madera,837,B,1,1,2,0,35,0,60,1,40,9,0,6,8,9,24,30,26,90,6,27,34,23,11,3.06\r\n,Mark West Elementary,Mark West Union Elementary,Sonoma,837,6,1,2,2,1,42,1,47,4,52,7,0,23,4,7,21,26,N/A,84,9,26,31,22,12,3.04\r\n,Weldon Elementary,Clovis Unified,Fresno,837,6,3,1,5,0,41,1,47,2,77,1,1,6,5,5,26,34,N/A,100,4,29,39,21,6,2.96\r\n,Morningside Elementary,Garden Grove Unified,Orange,837,6,1,0,67,1,26,0,4,0,66,0,0,59,23,12,24,32,N/A,22,10,27,28,30,5,2.94\r\n,Bradoaks Elementary,Monrovia Unified,Los Angeles,837,6,10,0,3,3,58,0,23,2,60,12,0,18,5,12,27,30,N/A,98,7,32,33,19,10,2.92\r\n,,Sylvan Union Elementary,Stanislaus,837,B,4,0,5,3,39,1,43,3,49,8,0,12,6,15,27,29,26,97,8,29,35,21,8,2.91\r\n,Torrance Elementary,Torrance Unified,Los Angeles,837,6,4,0,9,7,58,0,15,3,64,3,0,29,10,17,27,34,N/A,89,12,25,30,24,9,2.91\r\n,Vista Verde Middle,Val Verde Unified,Riverside,837,7,31,0,2,3,52,1,7,1,69,21,0,8,16,10,N/A,34,28,86,11,23,37,23,6,2.9\r\n,Lee Vining Elementary,Eastern Sierra Unified,Mono,837,6,2,5,0,0,47,0,47,0,63,0,0,28,20,14,15,15,N/A,80,20,27,8,41,4,2.82\r\n,Temple Heights Elementary,Vista Unified,San Diego,837,6,1,2,3,1,68,2,21,3,61,0,1,29,13,14,24,28,N/A,90,18,29,28,19,6,2.66\r\nY,Cinnabar Elementary,Cinnabar Elementary,Sonoma,837,6,0,0,0,0,65,0,35,0,81,2,0,62,3,12,15,24,N/A,31,19,33,19,19,8,2.64\r\n,William Collier Elementary,Lake Elsinore Unified,Riverside,837,6,3,1,1,2,61,2,30,0,71,8,0,23,13,11,21,29,N/A,99,15,34,32,14,6,2.62\r\n,West Middle,Downey Unified,Los Angeles,837,7,3,0,1,1,88,0,6,0,74,7,0,13,18,11,N/A,26,21,100,15,37,28,15,5,2.59\r\n,La Escuelita Elementary,Oakland Unified,Alameda,837,6,9,1,17,1,68,0,0,1,81,43,0,68,13,7,22,26,N/A,48,42,25,18,11,4,2.11\r\n,,Junction City Elementary,Trinity,837,B,1,9,0,0,7,1,79,1,72,0,0,0,0,12,9,10,N/A,0,0,0,0,0,0,\r\n,Junction City Elementary,Junction City Elementary,Trinity,837,6,1,9,0,0,7,1,79,1,72,0,0,0,0,12,9,10,N/A,0,0,0,0,0,0,\r\nD,Mary Collins Charter School at Cherry Va,Petaluma City Schools,Sonoma,836,6,1,2,2,1,9,1,81,3,13,13,0,3,3,20,22,40,N/A,98,2,4,20,40,33,3.99\r\nY,Hickman Charter,Hickman Community Charter,Stanislaus,836,6,2,1,2,2,13,0,80,0,25,13,0,0,0,10,,,,98,0,5,34,30,31,3.87\r\n,Mira Loma High,San Juan Unified,Sacramento,836,9,9,1,25,2,15,1,46,1,42,20,0,8,15,8,N/A,N/A,30,87,7,17,16,31,29,3.59\r\n,,San Lorenzo Valley Unified,Santa Cruz,836,B,1,1,1,0,10,0,83,4,19,12,0,1,1,11,20,25,6,96,1,11,37,34,17,3.55\r\n,John B. Riebli Elementary,Mark West Union Elementary,Sonoma,836,6,1,1,3,0,21,0,69,5,25,9,0,12,2,11,21,26,N/A,84,3,13,34,31,19,3.51\r\n,Tahoe Lake Elementary,Tahoe-Truckee Joint Unified,Placer,836,6,0,1,1,0,40,0,55,3,47,0,0,36,0,7,25,N/A,N/A,84,6,19,23,26,26,3.49\r\n,Valley Elementary,Poway Unified,San Diego,836,6,4,1,6,5,45,0,37,2,46,8,0,44,4,9,26,32,N/A,71,11,15,19,28,28,3.47\r\n,Harold Ambuehl Elementary,Capistrano Unified,Orange,836,6,0,0,0,1,33,0,63,2,34,3,0,15,5,9,26,33,N/A,93,8,12,24,36,19,3.45\r\n,Colfax High,Placer Union High,Placer,836,9,0,1,0,0,7,0,89,2,23,19,0,1,0,8,N/A,N/A,30,97,2,17,33,33,15,3.42\r\n,Vallejo Mill Elementary,Fremont Unified,Alameda,836,6,7,1,25,8,21,2,29,6,36,1,2,28,11,11,26,28,N/A,98,9,17,20,31,23,3.4\r\n,Marsh (Harry M.) Junior High,Chico Unified,Butte,836,7,3,1,5,1,19,1,69,0,37,13,0,4,8,13,N/A,N/A,30,84,8,14,29,27,22,3.4\r\nY,Sixth Grade Charter Academy at Petaluma,Petaluma City Schools,Sonoma,836,6,0,0,2,0,33,0,62,3,40,22,0,10,17,7,N/A,29,N/A,95,15,7,27,38,13,3.27\r\n,Sundown Elementary,Westside Union Elementary,Los Angeles,836,6,18,0,3,3,36,1,36,1,38,10,0,8,3,8,27,30,N/A,92,4,18,40,24,14,3.25\r\n,Marguerite Hahn Elementary,Cotati-Rohnert Park Unified,Sonoma,836,6,3,2,4,1,23,1,62,6,24,0,0,11,4,19,29,29,N/A,98,5,19,37,29,11,3.23\r\n,Stanislaus Elementary,Stanislaus Union Elementary,Stanislaus,836,6,2,1,11,1,36,0,46,2,36,5,0,19,3,6,30,26,N/A,96,9,15,38,22,16,3.21\r\n,,Byron Union Elementary,Contra Costa,836,B,6,2,3,3,18,1,67,1,29,9,1,5,3,8,26,31,32,94,6,23,32,26,14,3.18\r\n,Tiefort View Intermediate,Silver Valley Unified,San Bernardino,836,6,13,2,1,2,24,3,46,9,37,0,0,7,1,5,19,31,N/A,96,0,26,43,20,12,3.16\r\n,,Foresthill Union Elementary,Placer,836,B,1,3,0,0,11,2,80,3,40,37,0,1,0,11,18,20,18,97,4,22,39,25,10,3.16\r\n,Norma Coombs Alternative,Pasadena Unified,Los Angeles,836,6,33,1,5,3,43,0,13,1,60,10,0,16,6,15,22,28,N/A,83,9,22,33,21,16,3.13\r\n,Roosevelt Middle,Vista Unified,San Diego,836,7,5,0,4,2,46,1,39,3,42,26,1,11,15,17,N/A,31,29,92,12,17,31,27,13,3.11\r\n,Sitting Bull Academy,Apple Valley Unified,San Bernardino,836,6,10,1,4,1,36,0,47,1,51,19,0,7,4,10,26,28,32,94,6,21,40,23,10,3.1\r\n,Chico Junior High,Chico Unified,Butte,836,7,6,2,8,1,29,1,54,0,51,10,0,13,12,11,N/A,N/A,28,82,16,21,21,22,21,3.09\r\n,Jefferson Middle,San Gabriel Unified,Los Angeles,836,7,1,1,51,3,36,0,7,0,57,11,0,31,22,8,N/A,29,31,93,11,25,24,26,14,3.08\r\n,,Reeds Creek Elementary,Tehama,836,B,2,4,0,0,7,1,82,4,56,0,0,3,0,12,20,25,N/A,70,3,28,42,18,9,3.03\r\n,Irene B. West Elementary,Elk Grove Unified,Sacramento,836,6,22,1,25,9,20,3,13,7,68,2,0,25,16,13,23,28,N/A,96,7,27,32,27,7,3\r\nD,Aspire Vanguard College Preparatory Acad,SBE - Aspire Vanguard College,Stanislaus,836,7,8,2,8,1,40,0,39,1,48,0,0,4,16,14,N/A,31,26,96,5,34,35,11,15,2.97\r\nY,Healdsburg Charter,Healdsburg Unified,Sonoma,836,6,0,0,0,0,52,0,48,0,39,0,4,35,0,4,23,N/A,N/A,100,17,17,35,13,17,2.96\r\n,John A. Rowland High,Rowland Unified,Los Angeles,836,9,2,0,43,9,39,0,5,2,49,19,0,14,33,8,N/A,N/A,33,98,11,29,24,26,10,2.94\r\n,Kathryn Hughes Elementary,Santa Clara Unified,Santa Clara,836,6,12,0,14,19,38,2,8,6,63,3,0,41,6,12,27,29,N/A,94,8,26,38,23,6,2.92\r\n,Commodore Stockton Skills,Stockton Unified,San Joaquin,836,6,10,4,7,6,57,1,14,0,70,16,0,6,9,6,30,29,25,72,7,30,41,14,8,2.85\r\n,Palmdale Learning Plaza,Palmdale Elementary,Los Angeles,836,6,18,2,2,2,54,1,20,1,73,13,1,15,8,12,27,22,26,97,13,21,42,16,8,2.84\r\n,Fall River Junior-Senior High,Fall River Joint Unified,Shasta,836,9,1,8,0,0,25,1,61,1,49,10,13,2,14,15,N/A,N/A,16,90,14,17,48,15,6,2.83\r\n,Las Juntas Elementary,Martinez Unified,Contra Costa,836,6,3,1,2,0,44,2,40,7,57,5,0,23,6,15,27,26,N/A,96,15,23,34,22,7,2.83\r\n,Griffiths Middle,Downey Unified,Los Angeles,836,7,2,0,2,1,88,0,7,0,61,6,0,13,17,11,N/A,19,23,100,12,35,28,17,8,2.74\r\n,Thomas Edison Elementary,Glendale Unified,Los Angeles,836,6,2,0,3,10,47,0,36,1,76,4,0,40,24,12,23,33,N/A,84,15,40,11,26,8,2.72\r\n,East Cottonwood Elementary,Cottonwood Union Elementary,Shasta,836,6,1,3,1,0,17,0,76,2,71,0,0,0,0,5,28,N/A,N/A,98,7,44,28,18,4,2.67\r\n,Lake Center Middle,Little Lake City Elementary,Los Angeles,836,7,1,1,2,1,90,0,5,0,69,32,1,10,16,10,N/A,27,29,93,11,36,35,13,4,2.64\r\n,Manzanita SEED,Oakland Unified,Alameda,836,6,15,0,8,0,71,0,3,2,40,37,0,40,26,9,24,26,N/A,42,30,20,25,14,11,2.56\r\n,Grand Oaks Elementary,Gateway Unified,Shasta,836,6,1,11,2,0,15,0,68,4,81,2,0,2,2,13,20,24,N/A,95,12,36,43,6,4,2.54\r\n,Vicentia Elementary,Corona-Norco Unified,Riverside,836,6,3,0,3,1,79,1,12,1,68,2,0,37,14,12,22,25,N/A,90,31,31,22,8,8,2.31\r\n,Madison Elementary,Los Angeles Unified,Los Angeles,836,6,0,0,0,0,99,0,0,0,100,7,1,28,26,12,18,23,N/A,92,27,39,23,9,2,2.19\r\n,East County Elementary Special Education,Contra Costa County Office of,Contra Costa,835,C,25,0,0,11,32,0,30,2,54,0,0,10,0,100,8,7,N/A,5,0,0,0,67,33,4.33\r\n,OCCS:CHEP/PCHS,Orange County Department of Ed,Orange,835,6,3,1,14,1,18,0,52,6,0,0,0,4,4,1,33,35,12,97,2,10,24,35,29,3.79\r\n,Independence Elementary,Rosedale Union Elementary,Kern,835,6,5,2,7,3,24,1,55,0,21,8,0,6,8,9,23,26,N/A,94,3,12,29,29,27,3.64\r\n,Aptos Junior High,Pajaro Valley Unified,Santa Cruz,835,7,1,0,3,2,33,0,62,0,32,19,3,11,11,13,N/A,N/A,28,62,8,14,14,41,22,3.56\r\n,Prestwood Elementary,Sonoma Valley Unified,Sonoma,835,6,1,0,3,1,24,0,69,1,30,1,0,18,3,13,22,29,N/A,97,8,13,25,33,21,3.46\r\n,Longfellow Arts and Technology Middle,Berkeley Unified,Alameda,835,7,30,0,5,1,34,0,21,8,56,18,0,12,13,19,N/A,25,23,89,12,14,25,18,31,3.42\r\n,William S. Hart Senior High,William S. Hart Union High,Los Angeles,835,9,2,0,4,2,40,0,50,1,22,14,0,13,11,10,N/A,N/A,31,93,11,12,29,28,20,3.35\r\n,Chaparral High,Temecula Valley Unified,Riverside,835,9,6,1,4,7,33,1,44,4,18,14,0,5,8,9,N/A,N/A,30,93,6,14,33,34,13,3.34\r\n,Ambler Avenue Elementary,Los Angeles Unified,Los Angeles,835,6,83,0,0,1,15,0,1,0,75,8,0,4,3,9,11,3,N/A,71,5,13,41,27,14,3.32\r\n,Ellen Feickert Elementary,Elk Grove Unified,Sacramento,835,6,9,1,7,5,21,2,43,13,36,0,0,6,4,16,22,22,N/A,96,3,20,34,26,16,3.31\r\n,,Columbia Elementary,Shasta,835,B,0,3,1,0,12,0,77,6,41,4,0,0,2,9,22,25,26,96,3,13,46,25,13,3.3\r\n,Heritage High,Liberty Union High,Contra Costa,835,9,9,1,5,6,20,1,56,3,11,6,0,4,7,8,N/A,N/A,31,99,3,17,39,28,12,3.28\r\n,Kernville Elementary,Kernville Union Elementary,Kern,835,6,4,2,0,0,13,0,80,0,54,0,0,0,0,4,23,N/A,N/A,100,4,17,46,15,17,3.24\r\n,Soulsbyville Elementary,Soulsbyville Elementary,Tuolumne,835,6,0,0,0,0,17,0,4,0,42,0,0,1,1,8,24,25,24,99,3,20,42,22,13,3.2\r\n,Walker Junior High,Anaheim Union High,Orange,835,7,6,0,21,11,40,1,21,0,43,9,0,12,19,9,N/A,N/A,33,9,12,18,25,29,16,3.2\r\n,,Soulsbyville Elementary,Tuolumne,835,B,0,0,0,0,17,0,5,0,43,0,0,1,1,9,24,25,24,99,3,20,42,22,13,3.2\r\n,William McKinley Elementary,Burbank Unified,Los Angeles,835,6,3,1,1,3,57,0,33,2,53,0,0,17,8,15,26,28,N/A,86,8,20,32,31,9,3.14\r\n,O. W. Erlewine Elementary,Sacramento City Unified,Sacramento,835,6,17,1,4,2,17,0,53,6,55,16,0,6,3,23,24,28,N/A,76,8,20,38,20,13,3.1\r\n,Terrell Elementary,San Jose Unified,Santa Clara,835,6,9,1,11,3,45,1,27,2,56,9,1,23,8,11,29,26,N/A,92,12,21,31,26,10,3.01\r\n,Riverbend Elementary,Yuba City Unified,Sutter,835,6,2,1,11,0,34,0,43,7,59,10,3,11,14,9,24,31,29,97,11,27,29,21,12,2.95\r\n,Hart-Ransom Elementary,Hart-Ransom Union Elementary,Stanislaus,835,6,5,1,4,2,40,0,49,0,50,0,0,14,6,6,22,28,28,49,7,28,39,14,11,2.94\r\n,Southport Elementary,Washington Unified,Yolo,835,6,5,1,15,2,28,1,45,2,55,15,0,12,12,8,19,30,28,99,7,26,37,25,5,2.94\r\n,Toyon Middle,Calaveras Unified,Calaveras,835,7,2,3,1,1,13,0,80,0,44,8,0,0,4,12,N/A,N/A,25,76,5,28,47,14,6,2.88\r\n,John Blacow Elementary,Fremont Unified,Alameda,835,6,6,1,14,6,52,2,14,4,54,2,1,42,11,13,22,24,N/A,91,18,25,23,24,10,2.84\r\n,Crescent Elementary,Fairfield-Suisun Unified,Solano,835,6,20,1,8,15,30,2,17,8,64,3,0,14,10,7,31,33,N/A,97,9,30,32,25,3,2.84\r\n,,San Bruno Park Elementary,San Mateo,835,B,2,0,10,11,44,6,23,2,41,5,0,39,6,12,27,27,N/A,94,12,31,24,26,7,2.83\r\n,Adelante Dual Language Academy,Alum Rock Union Elementary,Santa Clara,835,6,4,1,1,0,89,1,5,0,100,12,7,37,22,5,20,28,N/A,95,25,19,17,26,12,2.82\r\n,Ruby Bridges Elementary,Alameda City Unified,Alameda,835,6,29,1,22,8,16,3,21,1,69,2,0,42,3,13,23,27,N/A,99,11,31,30,23,5,2.79\r\n,Bryant Elementary,Long Beach Unified,Los Angeles,835,6,31,0,11,1,45,0,8,0,84,0,0,19,13,16,30,29,N/A,76,15,26,31,21,6,2.76\r\n,Park Side Elementary,Sebastopol Union Elementary,Sonoma,835,6,1,1,2,0,41,1,52,0,53,0,3,29,3,14,23,29,N/A,96,18,26,27,23,6,2.72\r\n,Marco Forster Middle,Capistrano Unified,Orange,835,7,1,0,1,0,59,0,36,3,58,9,1,22,27,12,N/A,26,30,84,27,24,19,18,12,2.64\r\n,Garfield Elementary,San Diego Unified,San Diego,835,6,16,0,2,0,68,1,10,3,100,28,0,50,9,16,21,29,N/A,77,18,31,28,15,8,2.64\r\n,Menifee Valley Middle,Menifee Union Elementary,Riverside,835,7,5,0,3,3,47,1,41,0,45,19,0,10,11,9,N/A,29,27,87,13,31,41,12,2,2.59\r\n,Harding Elementary,Bakersfield City,Kern,835,6,2,0,1,1,77,0,17,1,72,2,1,8,8,11,21,27,N/A,81,13,44,23,12,8,2.59\r\n,Cypress Elementary,Redding Elementary,Shasta,835,6,3,5,5,0,18,1,56,12,63,11,0,6,3,19,21,28,N/A,73,11,40,36,8,5,2.57\r\n,Sierra House Elementary,Lake Tahoe Unified,El Dorado,835,6,0,2,1,9,47,0,38,2,69,1,0,44,2,13,21,25,N/A,96,16,40,21,17,6,2.56\r\n,Princeton Elementary,Princeton Joint Unified,Glenn,835,6,0,4,0,0,65,0,31,0,86,0,17,35,17,6,18,22,N/A,92,22,34,28,9,8,2.48\r\n,Webster Elementary,Long Beach Unified,Los Angeles,835,6,20,0,3,7,61,6,2,0,93,6,0,46,7,18,18,18,N/A,82,31,23,24,16,5,2.41\r\n,Redding Elementary,San Francisco Unified,San Francisco,835,6,3,0,34,9,25,0,21,3,90,13,0,67,8,10,18,28,N/A,86,29,32,17,19,3,2.34\r\nD,Aspire Firestone Academy,Los Angeles Unified,Los Angeles,835,6,0,0,0,0,97,0,1,0,83,0,0,32,27,11,21,30,N/A,56,19,43,29,6,3,2.3\r\n,Abraham Lincoln,Paramount Unified,Los Angeles,835,6,5,0,1,0,93,1,1,0,94,6,1,39,25,9,28,32,N/A,99,32,26,28,9,5,2.28\r\n,Queen Anne Place Elementary,Los Angeles Unified,Los Angeles,835,6,7,0,2,2,88,0,0,0,93,6,0,45,20,7,19,25,N/A,80,41,21,22,12,4,2.18\r\n,Berkshire Elementary,Panama-Buena Vista Union,Kern,835,6,9,0,9,1,64,0,15,0,77,2,0,22,14,8,30,32,N/A,45,21,51,21,7,1,2.16\r\n,Sunset Elementary,San Ysidro Elementary,San Diego,835,6,0,0,1,1,97,0,0,0,86,16,1,66,22,10,25,30,N/A,95,35,30,21,11,2,2.15\r\n,Garvanza Elementary,Los Angeles Unified,Los Angeles,835,6,3,1,2,2,90,0,1,0,89,7,0,29,28,8,18,20,N/A,87,38,37,17,6,2,1.98\r\n,Charles White Elementary,Los Angeles Unified,Los Angeles,835,6,3,0,1,1,94,1,1,0,94,7,0,62,24,7,22,26,N/A,91,48,32,13,6,1,1.78\r\n,Jefferson Elementary,Compton Unified,Los Angeles,835,6,5,0,0,0,94,0,0,0,99,3,0,54,24,9,31,33,N/A,87,55,25,14,3,2,1.73\r\n,La Costa Canyon High,San Dieguito Union High,San Diego,834,9,1,0,5,1,16,0,76,1,9,35,1,6,6,12,N/A,N/A,33,97,6,5,16,38,35,3.91\r\nY,Freshwater Charter Middle,Freshwater Elementary,Humboldt,834,7,2,10,2,0,4,0,83,0,17,0,0,0,0,15,,,,90,0,11,43,26,21,3.57\r\n,Skyridge Elementary,Auburn Union Elementary,Placer,834,6,3,1,3,1,17,0,75,0,40,11,0,13,1,7,22,30,N/A,90,3,17,27,25,27,3.55\r\n,El Toro High,Saddleback Valley Unified,Orange,834,9,2,0,6,4,28,0,55,4,23,16,0,8,10,8,N/A,N/A,31,93,8,11,22,38,21,3.54\r\n,Valley View Elementary,Los Angeles Unified,Los Angeles,834,6,9,2,2,3,36,1,48,0,45,5,0,8,7,11,14,14,N/A,95,3,9,39,32,17,3.51\r\n,Ayers Elementary,Mt. Diablo Unified,Contra Costa,834,6,6,1,9,5,28,0,46,5,32,3,0,16,9,15,27,29,N/A,77,6,17,31,32,15,3.34\r\n,Columbia Elementary,Columbia Elementary,Shasta,834,6,0,3,1,0,12,0,78,6,45,1,0,0,1,8,22,21,N/A,96,4,10,48,25,13,3.34\r\nD,View Park Preparatory Accelerated Charte,Los Angeles Unified,Los Angeles,834,6,89,0,0,0,1,0,0,5,68,0,0,0,0,3,24,29,N/A,95,2,17,41,27,13,3.32\r\nY,EV Cain 21st Century STEM Charter,Auburn Union Elementary,Placer,834,7,1,1,1,1,17,0,76,2,43,19,0,7,6,11,N/A,25,25,96,8,17,32,25,19,3.31\r\n,Washington Elementary,Eureka City Schools,Humboldt,834,6,3,4,5,1,12,3,65,8,51,10,1,8,3,11,22,30,N/A,92,7,18,35,27,12,3.2\r\n,Castle View Elementary,Riverside Unified,Riverside,834,6,8,1,3,2,49,0,36,0,49,14,0,17,9,13,23,29,N/A,99,14,20,26,17,24,3.18\r\n,Cappy Culver Elementary,San Miguel Joint Union,San Luis Obispo,834,6,0,1,0,1,12,0,81,5,31,13,0,2,1,12,22,28,28,92,8,16,40,26,10,3.16\r\n,,Sunnyvale,Santa Clara,834,B,3,0,23,8,43,1,19,2,49,4,0,33,21,9,21,27,27,99,18,19,17,24,23,3.15\r\n,Gompers K-8,Long Beach Unified,Los Angeles,834,6,15,0,6,4,38,2,30,0,46,7,0,7,9,11,28,29,31,87,6,23,36,22,13,3.13\r\n,Imperial High,Imperial Unified,Imperial,834,9,3,0,1,1,76,0,19,0,35,13,4,8,31,6,N/A,N/A,31,97,8,22,38,17,14,3.08\r\n,Elitha Donner Elementary,Elk Grove Unified,Sacramento,834,6,17,1,12,4,31,1,25,10,57,3,0,9,11,10,23,26,N/A,87,5,28,34,23,10,3.03\r\n,Evelyn Carr Elementary,Torrance Unified,Los Angeles,834,6,7,0,32,4,35,1,17,2,59,2,0,29,11,15,28,32,N/A,94,7,30,29,25,10,3.01\r\n,,Saint Helena Unified,Napa,834,B,1,0,1,0,49,0,48,0,37,0,8,21,21,10,18,19,22,89,22,16,20,25,17,3\r\n,Rogers (Greg) Elementary,Chula Vista Elementary,San Diego,834,6,4,0,2,8,70,1,14,1,49,6,0,29,3,30,18,24,N/A,75,10,24,32,29,6,2.98\r\n,Mamie L. Northcutt Elementary,Garden Grove Unified,Orange,834,6,0,0,30,1,58,0,10,0,59,1,0,56,20,8,27,30,N/A,14,12,29,13,42,4,2.98\r\n,Price Elementary,Downey Unified,Los Angeles,834,6,1,0,3,2,87,0,7,0,62,1,0,19,11,13,23,29,N/A,100,8,30,30,19,13,2.98\r\n,Lincoln Elementary,Newark Unified,Alameda,834,6,4,0,10,5,55,1,20,5,48,6,1,26,18,14,28,27,N/A,95,13,26,26,25,11,2.96\r\n,William Kaseberg Elementary,Roseville City Elementary,Placer,834,6,3,1,3,3,40,0,49,0,65,0,0,17,3,20,22,24,N/A,97,10,26,40,18,6,2.83\r\n,Gordon H. Beatty Elementary,Buena Park Elementary,Orange,834,6,7,0,21,5,54,1,11,1,62,9,0,46,10,7,28,30,N/A,93,21,22,25,22,10,2.77\r\n,Haskell Elementary,Los Angeles Unified,Los Angeles,834,6,4,0,4,4,71,1,16,0,69,12,0,24,12,14,16,17,N/A,91,15,27,31,19,7,2.76\r\n,Glenfeliz Boulevard Elementary,Los Angeles Unified,Los Angeles,834,6,1,1,2,10,81,0,5,0,79,8,0,16,10,8,16,12,N/A,90,18,25,31,22,5,2.72\r\n,Rose Avenue Elementary,Modesto City Elementary,Stanislaus,834,6,4,1,0,0,42,0,46,5,69,9,0,9,2,16,23,26,N/A,96,11,35,34,13,8,2.71\r\n,Multnomah Street Elementary,Los Angeles Unified,Los Angeles,834,6,1,1,4,1,90,0,3,0,84,11,0,21,14,11,15,16,N/A,76,19,26,30,17,8,2.7\r\n,George Washington Elementary,Corona-Norco Unified,Riverside,834,6,5,0,4,2,71,0,19,0,63,2,0,27,12,12,24,27,N/A,90,18,26,35,11,10,2.68\r\n,,Plainsburg Union Elementary,Merced,834,B,0,0,0,0,52,0,48,0,53,0,0,11,15,4,23,29,N/A,98,16,27,35,19,3,2.65\r\n,Plainsburg Union Elementary,Plainsburg Union Elementary,Merced,834,6,0,0,0,0,52,0,48,0,53,0,0,11,15,4,23,29,N/A,98,16,27,35,19,3,2.65\r\n,,Pleasant Valley Joint Union El,San Luis Obispo,834,B,2,0,0,0,32,2,64,0,44,0,2,22,7,9,8,6,N/A,84,15,31,33,18,4,2.64\r\n,Pleasant Valley Elementary,Pleasant Valley Joint Union El,San Luis Obispo,834,6,2,0,0,0,32,2,64,0,44,0,2,22,7,9,8,6,N/A,84,15,31,33,18,4,2.64\r\n,Palomar Elementary,Chula Vista Elementary,San Diego,834,6,2,0,0,3,85,0,9,0,61,17,0,43,3,16,21,25,N/A,88,15,36,28,14,7,2.62\r\n,Eagle Prairie Elementary,Rio Dell Elementary,Humboldt,834,6,0,5,0,1,18,0,75,0,72,8,0,14,0,21,17,24,N/A,100,10,45,28,15,1,2.52\r\n,Fremont Primary,Calipatria Unified,Imperial,834,6,1,0,0,0,91,0,7,1,100,5,35,46,2,8,19,18,N/A,100,18,38,29,11,5,2.46\r\n,Tevis Junior High,Panama-Buena Vista Union,Kern,834,7,9,1,5,2,40,0,42,0,43,14,0,3,10,10,N/A,N/A,26,72,15,48,21,17,0,2.4\r\n,,Garvey Elementary,Los Angeles,834,B,1,0,56,1,41,0,1,1,82,20,1,43,27,9,22,30,27,91,25,41,14,13,7,2.36\r\n,Spring Valley Elementary,San Francisco Unified,San Francisco,834,6,4,0,51,2,33,0,3,2,83,6,0,58,20,10,20,26,N/A,94,24,42,14,17,3,2.35\r\n,Temple (Roger W.) Intermediate,Garvey Elementary,Los Angeles,834,7,0,0,52,0,47,0,1,0,85,27,2,31,39,6,N/A,N/A,28,90,30,37,16,11,7,2.28\r\n,Shadow Hills Elementary,Fontana Unified,San Bernardino,834,6,6,0,1,1,87,0,5,0,92,6,0,38,19,9,29,25,N/A,95,22,43,22,10,3,2.28\r\n,Dr. Reynaldo J. Carreon Jr. Academy,Desert Sands Unified,Riverside,834,6,2,0,1,1,89,0,5,0,88,1,0,36,14,10,30,28,N/A,99,25,39,25,8,3,2.25\r\n,Willard (Frances E.) Elementary,Garvey Elementary,Los Angeles,834,6,0,0,52,0,45,0,2,0,88,15,2,43,36,10,23,28,N/A,91,23,50,12,10,5,2.23\r\n,John Adams Elementary,Corona-Norco Unified,Riverside,834,6,4,0,2,0,83,0,11,0,80,2,0,35,26,14,24,28,N/A,91,35,34,20,8,3,2.12\r\n,James Garfield Elementary,Selma Unified,Fresno,834,6,0,0,0,0,99,0,1,0,96,0,1,46,18,13,21,25,N/A,97,32,41,19,7,1,2.04\r\nY,Ida Jew Academies,Mt. Pleasant Elementary,Santa Clara,834,6,2,1,6,3,81,1,4,0,69,8,12,56,13,8,26,27,N/A,94,45,35,14,4,3,1.86\r\n,Buford Elementary,Lennox,Los Angeles,834,6,1,0,0,0,97,1,0,0,90,3,0,73,9,13,22,25,N/A,86,47,37,11,4,1,1.75\r\n,Shaffer Elementary,Atwater Elementary,Merced,834,6,5,2,7,1,61,0,25,0,84,5,1,29,20,7,24,32,N/A,97,61,21,13,4,1,1.64\r\n,Martin R. Heninger Elementary,Santa Ana Unified,Orange,834,6,0,0,0,0,99,0,0,0,100,6,2,78,8,11,28,30,N/A,95,64,22,11,2,1,1.54\r\n,,Laguna Joint Elementary,Marin,834,B,0,0,0,0,92,0,0,0,75,0,0,33,58,8,18,N/A,N/A,100,83,17,0,0,0,1.17\r\n,Laguna Elementary,Laguna Joint Elementary,Marin,834,6,0,0,0,0,92,0,0,0,75,0,0,33,58,8,18,N/A,N/A,100,83,17,0,0,0,1.17\r\n,Woodland Elementary,Newport-Mesa Unified,Orange,833,6,1,0,0,1,28,0,69,1,39,0,0,18,0,12,24,N/A,N/A,96,3,10,27,36,25,3.72\r\n,Rosewood Avenue Elementary,Los Angeles Unified,Los Angeles,833,6,25,0,6,2,35,0,32,0,43,15,0,15,7,16,17,20,N/A,86,9,11,29,37,12,3.32\r\n,Santa Ynez Valley Union High,Santa Ynez Valley Union High,Santa Barbara,833,9,0,1,1,0,39,0,55,4,25,41,0,8,20,12,N/A,N/A,26,99,17,10,24,30,20,3.27\r\nY,Spring Creek Matanzas Charter,Rincon Valley Union Elementary,Sonoma,833,6,4,1,3,1,28,1,55,4,44,6,0,13,6,12,19,27,N/A,92,6,19,30,30,14,3.27\r\n,Frost (Earl) Elementary,Oak Grove Elementary,Santa Clara,833,6,5,1,17,2,36,2,37,1,38,23,0,13,12,5,24,31,N/A,98,8,24,23,30,14,3.17\r\n,,Big Creek Elementary,Fresno,833,B,0,0,0,0,29,0,69,3,14,0,0,0,0,20,7,5,N/A,89,3,19,48,16,13,3.16\r\n,Big Creek Elementary,Big Creek Elementary,Fresno,833,6,0,0,0,0,29,0,69,3,14,0,0,0,0,20,7,5,N/A,89,3,19,48,16,13,3.16\r\n,Arroyo West Elementary,Moorpark Unified,Ventura,833,6,2,0,3,1,54,0,36,4,53,0,1,33,2,12,28,27,N/A,95,16,23,16,27,18,3.07\r\n,Dewey Elementary,San Diego Unified,San Diego,833,6,16,0,1,4,49,0,14,15,78,30,0,19,3,12,22,33,N/A,93,6,19,47,25,3,2.99\r\n,Lakeside Farms Elementary,Lakeside Union Elementary,San Diego,833,6,0,1,1,0,22,0,73,2,41,3,0,7,2,20,21,27,N/A,95,5,27,41,20,8,2.98\r\n,Joe Nightingale Elementary,Orcutt Union Elementary,Santa Barbara,833,6,2,1,2,3,50,0,39,2,56,1,0,16,2,9,28,29,N/A,97,7,26,40,16,11,2.97\r\n,Arroyo Elementary,Simi Valley Unified,Ventura,833,6,1,0,6,4,34,0,53,2,43,3,0,12,9,28,26,30,N/A,90,7,36,24,22,11,2.93\r\n,Brookhurst Elementary,Garden Grove Unified,Orange,833,6,3,0,31,1,52,1,11,0,71,0,0,47,20,12,25,33,N/A,4,14,36,0,43,7,2.93\r\n,Wilshire Park Elementary,Los Angeles Unified,Los Angeles,833,6,3,1,38,2,55,0,1,0,79,8,0,49,19,8,20,22,N/A,64,20,27,12,20,21,2.93\r\n,James A. McKee Elementary,Elk Grove Unified,Sacramento,833,6,6,1,4,1,38,1,37,12,63,5,0,13,5,9,21,28,N/A,98,9,30,34,16,11,2.91\r\n,Foothill Intermediate,Marysville Joint Unified,Yuba,833,7,0,12,1,0,15,1,70,1,41,24,0,3,4,11,N/A,30,23,89,8,26,42,15,8,2.89\r\n,Stoddard (Alexander J.) Elementary,Anaheim City,Orange,833,6,1,0,18,4,66,1,10,0,75,19,0,38,31,18,28,29,N/A,21,11,26,31,25,6,2.89\r\n,Fremont Elementary,Alhambra Unified,Los Angeles,833,6,1,0,22,1,72,0,3,1,69,2,1,24,12,6,21,34,33,97,10,32,32,17,9,2.83\r\n,Emery Park Elementary,Alhambra Unified,Los Angeles,833,6,0,0,12,2,81,0,3,1,74,2,1,21,10,10,21,32,32,98,11,33,29,18,10,2.83\r\n,Santa Rosa Middle,Santa Rosa City Schools,Sonoma,833,7,1,1,3,1,49,0,36,8,49,12,4,17,23,17,N/A,N/A,24,97,24,17,25,22,13,2.82\r\n,,Enterprise Elementary,Shasta,833,B,3,4,6,1,16,0,57,2,68,9,0,7,4,11,25,28,27,93,9,29,38,16,7,2.82\r\n,,Rockford Elementary,Tulare,833,B,0,1,1,1,50,0,44,2,59,0,2,9,5,1,16,27,24,94,18,17,42,14,9,2.79\r\n,Rockford Elementary,Rockford Elementary,Tulare,833,6,0,1,1,1,51,0,44,2,59,0,2,9,5,1,16,27,24,95,18,17,42,14,9,2.79\r\n,Bidwell Elementary,Red Bluff Union Elementary,Tehama,833,6,1,4,1,0,19,0,72,3,67,1,0,5,3,8,26,27,N/A,99,9,30,43,12,6,2.76\r\nD,Ballington Academy for the Arts and Scie,El Centro Elementary,Imperial,833,6,0,0,0,0,90,0,6,0,0,0,0,19,12,13,,,,4,0,75,0,0,25,2.75\r\nD,KIPP King Collegiate High,San Lorenzo Unified,Alameda,833,9,20,0,26,3,43,1,4,2,67,0,0,14,43,4,N/A,N/A,23,99,25,21,27,18,8,2.64\r\n,Ocotillo Elementary,Palmdale Elementary,Los Angeles,833,6,14,1,3,2,58,0,18,2,75,12,1,21,7,16,25,26,N/A,97,17,31,33,12,8,2.64\r\n,Sierra Vista Elementary,Clovis Unified,Fresno,833,6,6,1,12,0,50,0,26,5,87,1,2,10,8,10,25,29,N/A,100,14,35,35,13,4,2.58\r\n,Anderson,San Bernardino City Unified,San Bernardino,833,C,14,0,2,2,64,2,16,2,100,2,0,43,0,100,,,,60,23,26,29,20,3,2.54\r\n,Columbus Tustin Middle,Tustin Unified,Orange,833,7,1,0,5,2,79,0,12,0,71,13,0,30,29,7,N/A,31,33,91,26,28,23,14,9,2.51\r\n,William Northrup Elementary,Alhambra Unified,Los Angeles,833,6,1,0,38,2,56,0,2,1,86,2,4,40,17,12,22,27,34,97,22,37,18,18,5,2.48\r\n,Kwis Elementary,Hacienda la Puente Unified,Los Angeles,833,6,0,0,7,0,87,1,4,0,83,5,0,28,6,8,19,36,N/A,61,18,39,26,14,4,2.47\r\n,Franklin (Benjamin) Elementary,Anaheim City,Orange,833,6,1,0,1,1,91,1,4,0,87,18,0,38,39,11,28,30,N/A,25,26,28,26,15,5,2.45\r\n,Sunny Sands Elementary,Palm Springs Unified,Riverside,833,6,2,1,2,7,77,0,12,0,80,7,0,50,10,10,28,28,N/A,88,24,40,23,9,4,2.3\r\n,,Shiloh Elementary,Stanislaus,833,B,0,0,0,0,68,0,31,1,84,0,0,38,21,7,10,25,32,95,41,19,24,11,5,2.2\r\n,Foster Road Elementary,Norwalk-La Mirada Unified,Los Angeles,833,6,1,0,1,6,85,1,6,0,86,6,12,19,21,15,25,24,N/A,98,28,41,17,10,3,2.19\r\n,Donald J. Meyer Elementary,Alum Rock Union Elementary,Santa Clara,833,6,1,0,12,6,78,1,2,0,100,10,0,46,29,16,20,29,N/A,95,45,31,14,7,3,1.92\r\n,Kenmore Elementary,Baldwin Park Unified,Los Angeles,833,6,0,0,7,2,91,0,1,0,95,10,1,40,23,15,18,33,N/A,78,41,42,14,2,1,1.79\r\n,San Luis Obispo High,San Luis Coastal Unified,San Luis Obispo,832,9,2,0,5,1,19,0,71,2,23,0,0,8,5,9,N/A,N/A,26,95,6,7,14,32,41,3.96\r\n,Pleasant Hill Middle,Mt. Diablo Unified,Contra Costa,832,7,5,0,5,3,27,1,56,2,31,15,0,8,12,10,N/A,28,27,84,5,9,26,35,25,3.66\r\n,Pioneer Elementary,New Haven Unified,Alameda,832,6,10,0,37,18,15,3,8,9,40,5,1,19,29,10,27,29,N/A,95,4,14,26,35,21,3.54\r\n,,Santa Cruz City Elementary,Santa Cruz,832,B,1,1,3,1,36,0,54,3,40,19,2,24,6,13,21,28,N/A,89,10,14,20,27,29,3.52\r\nY,Whitmore Charter High,Ceres Unified,Stanislaus,832,9,2,1,2,0,15,0,73,7,29,3,1,0,1,8,N/A,N/A,12,96,3,18,28,38,14,3.42\r\n,Creekview Ranch Middle,Dry Creek Joint Elementary,Placer,832,7,6,0,8,4,16,1,60,5,39,7,0,13,14,10,N/A,27,28,98,3,14,34,34,14,3.41\r\n,Burbank High,Burbank Unified,Los Angeles,832,9,2,0,8,5,26,0,56,2,1,4,0,7,33,8,N/A,N/A,29,94,4,21,24,38,13,3.34\r\n,Borel Middle,San Mateo-Foster City,San Mateo,832,7,3,0,13,4,41,2,33,4,36,8,0,22,12,11,N/A,26,28,96,13,16,20,26,25,3.33\r\n,John B. Monlux Elementary,Los Angeles Unified,Los Angeles,832,6,2,0,5,2,40,0,50,0,72,15,0,29,25,11,19,26,N/A,90,7,23,29,25,17,3.21\r\n,Barrett Ranch Elementary,Dry Creek Joint Elementary,Placer,832,6,7,0,13,4,20,1,47,8,66,5,0,44,5,8,21,30,N/A,97,4,21,42,24,9,3.13\r\n,Oakbrook Elementary,Fairfield-Suisun Unified,Solano,832,6,14,2,5,12,26,2,31,7,36,3,0,13,4,12,29,29,N/A,100,5,22,38,28,7,3.12\r\n,Foresthill Divide Middle,Foresthill Union Elementary,Placer,832,7,2,2,0,0,12,2,79,3,34,43,0,1,1,9,N/A,19,18,99,5,21,43,20,11,3.11\r\n,Bradley Elementary,Pajaro Valley Unified,Santa Cruz,832,6,1,0,3,1,56,0,40,0,48,14,4,22,8,14,26,27,N/A,92,13,18,28,27,13,3.1\r\n,,Redding Elementary,Shasta,832,B,2,4,3,0,11,1,74,5,52,7,0,2,1,10,22,29,28,63,6,21,42,19,12,3.1\r\n,Campus Canyon Elementary,Moorpark Unified,Ventura,832,6,2,0,7,1,50,0,37,3,50,0,1,32,5,13,27,28,N/A,91,12,26,22,20,20,3.09\r\n,George Hall Elementary,San Mateo-Foster City,San Mateo,832,6,3,0,9,5,54,3,25,0,56,2,0,44,2,13,25,26,N/A,96,14,25,23,22,16,3\r\n,Mark Twain Elementary,Mark Twain Union Elementary,Calaveras,832,6,0,1,2,1,22,0,70,4,56,3,0,7,7,11,22,27,30,90,7,25,43,20,5,2.92\r\n,,La Mesa-Spring Valley,San Diego,832,B,11,0,2,3,46,1,31,6,57,12,0,17,11,12,29,30,29,92,11,26,33,21,9,2.92\r\n,Elmer Wood Elementary,Atwater Elementary,Merced,832,6,5,1,2,0,54,1,36,0,75,3,1,18,12,11,24,30,N/A,87,13,19,42,19,8,2.89\r\n,La Quinta High,Desert Sands Unified,Riverside,832,9,3,0,2,1,60,0,33,0,55,20,1,5,22,8,N/A,N/A,22,97,13,26,31,20,10,2.87\r\nD,Valley Preparatory Academy Charter,Fresno Unified,Fresno,832,6,3,1,4,1,57,0,29,5,79,0,0,10,8,5,24,20,21,93,14,25,36,19,6,2.81\r\n,Dolores Street Elementary,Los Angeles Unified,Los Angeles,832,6,6,0,6,17,58,10,3,0,69,5,0,11,10,9,15,12,N/A,88,11,27,37,22,3,2.78\r\n,Edgewood High,West Covina Unified,Los Angeles,832,9,2,0,9,7,74,0,7,1,57,23,0,5,17,2,N/A,N/A,24,92,9,28,43,17,3,2.76\r\n,,West Covina Unified,Los Angeles,832,B,4,0,10,5,74,0,7,0,61,17,0,8,14,9,5,6,26,91,10,29,40,16,4,2.73\r\n,Roosevelt Elementary,Dinuba Unified,Tulare,832,6,0,0,2,1,88,0,9,0,99,8,2,25,8,5,25,29,N/A,89,17,32,25,15,11,2.71\r\n,North Country Elementary,Center Joint Unified,Sacramento,832,6,10,1,7,3,27,1,48,5,69,5,0,16,16,10,30,29,N/A,98,10,35,38,16,1,2.64\r\n,Mesa View Elementary,Romoland Elementary,Riverside,832,6,7,0,3,2,53,2,33,0,50,3,0,18,6,8,28,28,N/A,91,10,46,21,22,2,2.61\r\n,Granger Junior High,Sweetwater Union High,San Diego,832,7,3,1,2,19,72,1,3,0,80,29,0,28,40,11,N/A,N/A,28,96,23,29,25,17,5,2.52\r\n,,Heber Elementary,Imperial,832,B,0,0,0,0,100,0,0,0,88,1,15,57,25,8,22,18,N/A,73,16,42,29,9,4,2.42\r\n,Heber Elementary,Heber Elementary,Imperial,832,6,0,0,0,0,100,0,0,0,88,1,16,58,25,8,22,18,N/A,73,16,42,29,9,4,2.42\r\n,,Bradley Union Elementary,Monterey,832,B,0,0,3,2,42,0,53,0,57,0,0,23,2,10,8,7,N/A,57,21,29,38,12,0,2.41\r\n,Bradley Elementary,Bradley Union Elementary,Monterey,832,6,0,0,3,2,42,0,53,0,57,0,0,23,2,10,8,7,N/A,57,21,29,38,12,0,2.41\r\n,Dean L. Shively,Valle Lindo Elementary,Los Angeles,832,7,0,0,3,0,95,1,1,0,83,10,0,14,28,6,N/A,31,28,97,24,30,34,10,2,2.35\r\n,Lau (Gordon J.) Elementary,San Francisco Unified,San Francisco,832,6,0,0,84,0,11,0,1,1,90,8,2,67,24,6,21,30,N/A,97,27,52,8,12,1,2.06\r\nD,EJE Middle Academy,Cajon Valley Union,San Diego,832,7,7,1,1,0,86,0,4,1,89,0,0,28,47,6,N/A,26,27,87,46,20,29,2,3,1.95\r\n,Walnut Elementary,Baldwin Park Unified,Los Angeles,832,6,0,0,5,1,92,0,1,0,97,5,2,53,15,15,19,30,N/A,70,44,37,12,5,2,1.83\r\n,L.A. County High School for the Arts,Los Angeles County Office of E,Los Angeles,831,8,12,1,10,1,23,1,53,0,10,0,0,1,0,3,,,,93,2,4,17,42,35,4.05\r\n,American High,Fremont Unified,Alameda,831,8,7,0,49,12,10,1,19,2,22,21,0,9,25,9,N/A,N/A,29,99,4,14,18,36,28,3.68\r\n,,Roseville Joint Union High,Placer,831,B,4,1,7,3,16,0,63,5,22,6,0,3,8,6,N/A,N/A,29,96,3,12,30,34,22,3.6\r\n,Stockdale High,Kern Union High,Kern,831,8,7,1,13,3,32,0,41,3,25,25,0,1,9,7,N/A,N/A,28,97,3,19,24,30,24,3.54\r\nD,Achieve Charter School of Paradise Inc.,Paradise Unified,Butte,831,6,2,2,1,3,10,0,82,0,40,0,0,0,0,5,20,26,N/A,99,1,16,33,31,19,3.49\r\nD,Sycamore Academy of Science and Cultural,Lake Elsinore Unified,Riverside,831,6,2,0,1,0,41,1,50,6,12,2,0,5,3,11,29,27,N/A,94,1,16,43,27,14,3.38\r\n,,Antelope Elementary,Tehama,831,B,1,1,1,0,21,0,73,1,52,0,1,9,3,9,23,22,17,97,7,13,34,34,12,3.3\r\n,Regency Park Elementary,Twin Rivers Unified,Sacramento,831,6,23,1,14,6,27,2,24,4,59,6,0,22,5,12,27,27,N/A,97,3,20,35,31,11,3.27\r\n,Brooktree Elementary,Berryessa Union Elementary,Santa Clara,831,6,1,0,47,22,21,2,5,2,37,7,0,42,14,13,22,32,N/A,99,8,13,34,37,9,3.25\r\n,,Sierra Unified,Fresno,831,B,1,16,1,0,12,0,68,0,45,9,0,1,1,16,24,26,25,88,3,22,41,21,14,3.21\r\n,Hancock Elementary,San Diego Unified,San Diego,831,6,12,1,2,4,26,0,44,11,66,28,0,4,1,10,23,33,N/A,96,0,19,49,25,7,3.19\r\n,,Imperial Unified,Imperial,831,B,2,0,1,1,77,0,18,0,40,12,3,24,12,8,21,29,30,95,6,21,39,18,16,3.16\r\n,La Mesa Junior High,William S. Hart Union High,Los Angeles,831,7,7,0,5,5,52,0,25,5,40,8,0,20,13,13,N/A,N/A,27,86,13,19,32,24,13,3.05\r\n,Agnes M. Baptist Elementary,Stanislaus Union Elementary,Stanislaus,831,6,7,0,18,2,37,1,32,1,55,29,0,23,8,15,30,29,N/A,96,10,24,33,17,15,3.05\r\n,Leo Carrillo Elementary,Garden Grove Unified,Orange,831,6,1,0,46,1,50,1,2,0,73,0,0,66,21,9,25,29,N/A,9,16,19,16,42,7,3.05\r\n,West Palms Conservatory,Victor Elementary,San Bernardino,831,6,18,1,2,1,56,0,20,3,67,6,0,12,3,8,31,33,N/A,96,5,28,34,22,11,3.04\r\n,John Muir Elementary,Glendale Unified,Los Angeles,831,6,1,0,2,13,29,0,53,1,79,3,0,43,24,7,23,35,N/A,73,9,34,14,34,9,3\r\n,Innovation Middle,San Diego Unified,San Diego,831,7,9,0,8,1,41,1,33,5,55,33,0,10,23,14,N/A,N/A,26,87,10,25,33,22,10,2.98\r\n,Palms Elementary,ABC Unified,Los Angeles,831,6,18,0,4,13,52,1,9,2,72,10,6,23,6,15,24,29,N/A,94,10,19,44,19,8,2.97\r\n,Badillo Elementary,Charter Oak Unified,Los Angeles,831,6,2,0,4,3,65,1,25,0,49,3,0,12,9,10,22,27,N/A,94,10,26,31,25,8,2.94\r\n,Lincoln Elementary,Salinas City Elementary,Monterey,831,6,1,0,3,1,61,0,27,5,56,0,1,24,9,7,25,29,N/A,100,14,27,26,20,14,2.93\r\n,John H. Niemes Elementary,ABC Unified,Los Angeles,831,6,6,0,6,8,71,1,6,2,75,6,7,43,4,8,26,29,N/A,90,17,20,26,28,9,2.92\r\n,Henry Haight Elementary,Alameda City Unified,Alameda,831,6,14,0,36,12,19,1,16,2,59,1,0,38,9,12,24,29,N/A,96,10,29,30,24,6,2.86\r\n,Christine Sipherd Elementary,Empire Union Elementary,Stanislaus,831,6,5,2,4,1,48,2,38,0,70,3,0,9,6,19,22,31,N/A,89,7,34,36,13,11,2.86\r\n,Ethel M. Evans Elementary,Garden Grove Unified,Orange,831,6,1,1,31,2,56,2,8,0,67,1,0,49,26,9,26,32,N/A,21,12,35,18,30,6,2.83\r\n,,Plumas Unified,Plumas,831,B,1,4,1,0,13,0,79,2,41,11,0,0,0,10,4,3,2,96,24,14,33,19,11,2.78\r\n,Juarez-Lincoln Elementary,Chula Vista Elementary,San Diego,831,6,5,0,1,10,78,1,3,2,60,13,0,47,6,13,20,27,N/A,80,11,32,33,18,6,2.76\r\n,,Scott Valley Unified,Siskiyou,831,B,2,8,1,0,10,0,71,7,57,0,0,3,1,12,20,17,17,95,5,49,21,20,5,2.73\r\n,Laurel Elementary,Brea-Olinda Unified,Orange,831,6,2,0,5,2,66,0,23,2,64,4,0,28,20,13,25,29,N/A,82,19,24,28,21,7,2.73\r\n,Morongo Valley Elementary,Morongo Unified,San Bernardino,831,6,1,0,0,0,26,1,70,2,76,4,0,4,1,16,24,26,N/A,95,10,33,38,11,7,2.71\r\n,Wheatland Elementary,Wheatland,Yuba,831,6,1,2,5,1,16,0,71,4,54,8,0,6,7,12,27,28,N/A,92,10,47,21,16,7,2.63\r\n,Louis Lake Intermediate,Garden Grove Unified,Orange,831,7,2,0,22,2,57,1,15,0,56,7,0,30,34,10,N/A,N/A,27,60,18,34,19,26,4,2.63\r\n,Chester W. Morrison Elementary,Menifee Union Elementary,Riverside,831,6,3,0,1,3,49,1,42,0,55,4,0,17,9,13,24,28,N/A,82,18,27,39,14,3,2.56\r\n,Allesandro Elementary,Los Angeles Unified,Los Angeles,831,6,1,1,1,8,88,0,2,0,81,14,0,22,14,13,16,17,N/A,91,17,35,31,13,4,2.52\r\n,Santiago Elementary,Santa Ana Unified,Orange,831,6,1,0,2,0,90,0,6,1,72,11,1,40,18,8,25,33,30,99,27,25,28,14,7,2.49\r\n,Henry Ford Elementary,Redwood City Elementary,San Mateo,831,6,5,0,3,2,65,4,19,3,64,6,1,44,13,15,26,24,N/A,97,28,29,23,12,8,2.43\r\n,Newhall Elementary,Newhall,Los Angeles,831,6,0,0,2,0,81,0,14,3,73,3,0,63,5,7,24,31,N/A,97,35,31,12,13,9,2.29\r\n,Roosevelt Elementary,Pasadena Unified,Los Angeles,831,6,13,0,1,0,82,0,4,0,92,4,0,39,23,32,20,25,N/A,79,39,33,13,10,6,2.11\r\n,Alta Elementary,Kings Canyon Joint Unified,Fresno,831,6,0,1,1,1,91,0,6,0,98,0,15,63,20,7,26,30,N/A,81,45,24,19,7,4,2.02\r\n,Evergreen Elementary,East Whittier City Elementary,Los Angeles,831,6,0,0,0,0,99,0,0,0,79,4,0,54,10,13,19,18,N/A,97,36,40,15,8,1,2\r\n,Fullbright Avenue Elementary,Los Angeles Unified,Los Angeles,831,6,3,0,3,4,84,0,6,0,100,9,0,39,23,11,21,22,N/A,91,43,32,14,7,3,1.95\r\n,Frank Sparkes Elementary,Winton Elementary,Merced,831,6,0,0,6,1,81,0,11,0,96,0,3,59,9,7,21,30,N/A,85,39,46,11,2,1,1.81\r\n,Malaga Elementary,Fowler Unified,Fresno,831,6,0,0,2,0,95,0,3,0,100,0,2,31,21,16,19,25,N/A,99,47,34,15,4,1,1.78\r\nY,Vivian Banks Charter,Bonsall Union Elementary,San Diego,831,6,0,36,0,0,58,0,5,2,70,6,13,50,3,19,20,15,N/A,94,40,50,8,2,0,1.72\r\n,Carlsbad Seaside Academy,Carlsbad Unified,San Diego,830,8,0,2,7,0,11,0,80,0,4,16,0,0,2,0,1,N/A,17,98,0,2,20,25,52,4.27\r\nY,Santa Barbara Charter Middle,Santa Barbara Unified,Santa Barbara,830,7,3,0,6,0,9,0,74,9,21,3,0,1,3,12,N/A,26,N/A,100,1,1,19,29,49,4.22\r\n,Wood Canyon Elementary,Capistrano Unified,Orange,830,6,5,0,7,7,28,1,48,4,27,1,0,16,5,9,25,28,N/A,92,1,10,29,36,23,3.69\r\n,Marigold Elementary,Chico Unified,Butte,830,6,2,1,5,2,12,1,72,1,38,8,0,3,3,13,28,28,N/A,93,2,11,36,29,22,3.59\r\n,Otay Ranch Senior High,Sweetwater Union High,San Diego,830,8,5,1,4,20,59,1,10,0,28,24,0,12,28,9,N/A,N/A,29,89,5,15,25,37,19,3.5\r\n,,Placer Union High,Placer,830,B,1,1,1,0,12,0,79,6,23,10,0,2,3,8,N/A,N/A,29,94,3,16,32,29,19,3.46\r\n,Alameda High,Alameda City Unified,Alameda,830,8,6,0,43,7,11,1,31,1,24,12,0,14,16,9,N/A,N/A,29,95,6,17,23,34,20,3.46\r\n,Los Paseos Elementary,Morgan Hill Unified,Santa Clara,830,6,4,1,14,6,42,1,30,1,32,17,0,19,9,13,30,28,N/A,96,7,15,29,32,17,3.39\r\n,Lipman Middle,Brisbane Elementary,San Mateo,830,7,3,0,13,12,29,3,28,11,35,12,0,6,6,14,N/A,28,N/A,90,2,23,22,40,12,3.37\r\n,Pleasant Valley High,Chico Unified,Butte,830,8,2,1,6,1,16,0,72,0,32,0,0,3,8,10,N/A,N/A,28,81,6,15,33,29,17,3.36\r\n,,Ripon Unified,San Joaquin,830,B,1,1,2,1,32,1,61,1,39,1,1,13,5,8,29,29,27,96,7,18,32,28,16,3.28\r\n,,Jamul-Dulzura Union Elementary,San Diego,830,B,2,1,1,1,39,0,54,1,41,11,0,20,9,15,12,22,4,96,3,20,39,24,14,3.24\r\n,Tom Kitayama Elementary,New Haven Unified,Alameda,830,6,6,0,22,16,36,3,9,7,44,6,1,24,26,9,26,29,N/A,96,10,17,29,27,17,3.23\r\n,Oak Grove Middle,Jamul-Dulzura Union Elementary,San Diego,830,7,2,1,0,1,42,0,52,2,41,12,0,17,15,17,N/A,27,25,95,3,23,37,23,14,3.21\r\n,Will Rogers Elementary,Santa Monica-Malibu Unified,Los Angeles,830,6,11,1,3,0,57,0,21,7,62,2,0,25,2,13,22,26,N/A,86,12,18,30,23,17,3.15\r\n,Liberty High,Golden Valley Unified,Madera,830,8,1,1,2,1,37,0,58,1,38,12,0,1,13,9,N/A,N/A,27,91,7,24,33,21,14,3.11\r\n,Lorne Street Elementary,Los Angeles Unified,Los Angeles,830,6,5,1,9,4,59,1,21,0,65,16,0,14,10,14,18,18,N/A,67,13,22,29,26,11,3\r\n,Monta Loma Elementary,Mountain View Whisman,Santa Clara,830,6,3,0,5,3,58,2,21,5,62,14,0,54,7,16,24,27,N/A,95,15,26,22,20,17,2.97\r\n,Hilltop Middle,Sweetwater Union High,San Diego,830,7,2,1,1,2,83,1,10,0,56,25,0,16,23,12,N/A,N/A,28,95,11,23,34,21,11,2.96\r\n,,Mark Twain Union Elementary,Calaveras,830,B,1,2,1,1,20,0,71,4,55,2,0,6,5,11,22,28,30,91,5,27,41,22,5,2.95\r\nY,Island Elementary,Island Union Elementary,Kings,830,6,2,1,0,1,43,0,52,0,41,0,0,20,1,12,18,30,N/A,92,12,20,44,13,11,2.91\r\n,Mountain View Elementary,Simi Valley Unified,Ventura,830,6,0,1,5,1,35,0,53,3,43,1,0,11,9,44,25,30,N/A,85,10,32,31,18,9,2.85\r\n,Volta Elementary,Los Banos Unified,Merced,830,6,2,0,4,1,58,0,34,0,56,4,0,31,8,4,31,29,N/A,86,11,23,43,18,5,2.83\r\n,Sisk Elementary,Salida Union Elementary,Stanislaus,830,6,4,1,5,3,50,2,32,4,56,1,0,26,2,8,29,33,N/A,95,7,32,39,14,7,2.81\r\n,Waverly Elementary,Linden Unified,San Joaquin,830,6,0,0,3,4,43,0,47,2,53,7,2,18,5,11,22,26,30,93,9,38,31,17,5,2.72\r\n,La Patera Elementary,Goleta Union Elementary,Santa Barbara,830,6,1,0,4,1,69,0,24,1,61,24,0,37,23,13,20,24,N/A,88,28,25,13,22,13,2.66\r\n,Windmill Springs Elementary,Franklin-McKinley Elementary,Santa Clara,830,6,2,0,47,4,43,2,3,0,63,9,1,40,28,10,24,27,N/A,96,17,33,26,20,5,2.63\r\n,Anna M. Glazier Elementary,Norwalk-La Mirada Unified,Los Angeles,830,6,3,0,2,0,86,0,7,1,80,4,9,20,16,9,28,33,N/A,99,18,37,27,14,4,2.48\r\n,Meairs Elementary,Westminster Elementary,Orange,830,6,1,0,49,1,45,1,1,2,83,21,0,77,8,9,22,31,N/A,94,27,28,21,18,6,2.47\r\n,Stone Avenue Elementary,Jurupa Unified,Riverside,830,6,2,1,1,0,78,0,19,0,70,11,0,33,9,10,25,29,N/A,98,27,28,26,10,8,2.44\r\n,Halldale Elementary,Los Angeles Unified,Los Angeles,830,6,6,0,6,7,77,2,3,0,84,7,0,24,17,11,17,16,N/A,83,27,28,24,15,6,2.44\r\n,April Lane Elementary,Yuba City Unified,Sutter,830,6,3,1,9,1,54,0,25,6,85,0,4,29,12,9,21,29,N/A,96,22,36,25,14,3,2.41\r\n,Carroll Fowler Elementary,Ceres Unified,Stanislaus,830,6,3,1,3,0,60,1,30,1,86,3,3,29,6,9,22,30,N/A,98,21,43,26,7,2,2.27\r\n,Parker (Jean) Elementary,San Francisco Unified,San Francisco,830,6,4,0,85,1,4,1,2,2,89,14,0,61,24,7,23,22,N/A,84,28,44,8,18,1,2.2\r\n,Albion Street Elementary,Los Angeles Unified,Los Angeles,830,6,0,0,23,0,74,0,1,0,100,10,0,39,23,6,17,18,N/A,77,36,32,22,8,2,2.07\r\n,Santa Fe Elementary,Porterville Unified,Tulare,830,6,0,0,1,0,96,0,4,0,89,0,10,34,10,2,23,33,N/A,98,47,20,24,4,6,2.03\r\n,Anderson Elementary,Compton Unified,Los Angeles,830,6,10,0,0,0,90,1,0,0,88,1,0,61,12,11,19,17,N/A,90,56,24,14,4,2,1.72\r\nD,Oakland School for the Arts,Oakland Unified,Alameda,829,8,24,0,3,0,14,0,31,19,14,0,0,0,1,5,N/A,27,27,98,1,5,22,29,43,4.08\r\n,,Chicago Park Elementary,Nevada,829,B,0,4,0,1,15,0,77,4,41,19,0,0,0,12,9,10,N/A,98,2,4,47,27,21,3.6\r\n,Agnes Ware Stanley Elementary,Garden Grove Unified,Orange,829,6,2,0,27,3,50,0,17,0,61,1,0,38,15,10,25,30,N/A,7,5,27,5,41,23,3.5\r\n,Laurel Elementary,San Mateo-Foster City,San Mateo,829,6,2,0,9,8,36,2,38,6,33,1,0,33,6,16,24,28,N/A,95,9,12,22,36,21,3.47\r\n,River Glen,San Jose Unified,Santa Clara,829,6,1,0,2,0,72,0,22,0,46,24,1,26,17,12,30,29,25,87,14,10,21,26,29,3.46\r\n,Pine Grove Elementary,Orcutt Union Elementary,Santa Barbara,829,6,2,0,2,1,33,0,58,4,34,4,0,9,2,9,31,30,N/A,96,2,17,40,21,21,3.42\r\n,Truckee Elementary,Tahoe-Truckee Joint Unified,Placer,829,6,1,0,0,0,51,0,47,1,54,4,0,42,6,12,21,30,N/A,77,11,25,14,28,21,3.24\r\n,Quincy Junior/Senior High,Plumas Unified,Plumas,829,8,3,3,1,0,7,0,85,0,27,18,0,0,0,10,,,,99,13,11,35,27,15,3.19\r\n,Clovis East High,Clovis Unified,Fresno,829,8,3,1,25,2,35,0,32,2,51,5,2,9,16,6,N/A,N/A,28,99,13,19,30,24,13,3.05\r\n,Gallatin Elementary,Downey Unified,Los Angeles,829,6,2,0,3,1,82,0,11,1,58,2,0,21,7,11,26,29,N/A,99,6,27,34,21,11,3.04\r\n,Hayes Elementary,Oak Grove Elementary,Santa Clara,829,6,8,2,28,5,34,1,21,1,45,16,0,20,13,14,23,31,N/A,96,7,25,33,26,8,3.03\r\n,Claudia Landeen,Lincoln Unified,San Joaquin,829,6,17,1,9,6,39,2,26,0,52,6,0,16,5,11,26,32,23,96,11,21,34,24,10,3.02\r\n,Glen A. Wilson High,Hacienda la Puente Unified,Los Angeles,829,8,1,0,36,2,54,0,6,0,51,18,1,7,29,6,N/A,N/A,28,80,9,31,20,33,8,3\r\n,Ione Elementary,Amador County Unified,Amador,829,6,0,3,1,0,18,1,71,5,47,7,0,2,6,10,28,26,N/A,97,7,24,39,25,5,2.97\r\n,Manuel F. Cunha Intermediate,Cabrillo Unified,San Mateo,829,7,1,0,2,2,45,0,49,1,33,13,11,21,20,9,N/A,30,29,95,32,7,16,26,18,2.92\r\n,,Island Union Elementary,Kings,829,B,2,1,0,1,43,0,51,0,41,0,0,19,1,12,18,30,N/A,92,12,20,43,13,12,2.92\r\n,Granada Elementary,Los Angeles Unified,Los Angeles,829,6,5,1,7,6,53,1,27,0,69,11,0,20,8,21,16,13,N/A,63,12,27,26,28,7,2.9\r\n,Willow Glen Elementary,Visalia Unified,Tulare,829,6,3,2,5,0,64,0,24,1,73,8,2,17,9,11,27,31,N/A,93,12,22,42,16,9,2.88\r\nD,Aspire Alexander Twilight College Prepar,SBC - Aspire Public Schools,El Dorado,829,6,30,1,0,2,38,0,19,7,65,0,0,17,1,9,23,30,N/A,82,10,26,47,11,6,2.79\r\n,Ysmael Villegas Middle,Alvord Unified,Riverside,829,7,7,0,7,3,61,1,17,3,58,13,0,25,12,10,N/A,32,31,96,19,21,32,19,9,2.78\r\n,Louise Foussat Elementary,Oceanside Unified,San Diego,829,6,8,0,3,3,54,5,23,2,68,8,1,22,13,17,27,29,N/A,89,13,25,40,17,5,2.78\r\n,C. W. Haman Elementary,Santa Clara Unified,Santa Clara,829,6,4,1,19,8,43,0,23,3,47,5,3,34,9,26,25,27,N/A,96,10,34,29,20,6,2.77\r\n,Cloverland Elementary,Oakdale Joint Unified,Stanislaus,829,6,1,1,1,1,39,0,55,1,60,7,3,18,4,19,20,29,N/A,98,11,31,32,20,5,2.76\r\n,Redwood Elementary,Fort Bragg Unified,Mendocino,829,6,3,1,0,0,43,0,51,2,71,0,5,36,0,6,20,N/A,N/A,89,13,29,41,3,14,2.75\r\n,Benjamin Franklin Elementary,Desert Sands Unified,Riverside,829,6,2,0,0,0,72,0,22,3,79,3,0,23,13,8,27,29,N/A,97,14,30,33,15,8,2.73\r\n,El Modena High,Orange Unified,Orange,829,8,1,1,7,1,56,0,32,1,41,14,0,14,18,9,N/A,N/A,26,95,25,20,23,21,10,2.72\r\n,Lewis Elementary,Downey Unified,Los Angeles,829,6,6,1,3,1,80,1,7,0,69,0,0,27,5,11,26,25,N/A,100,12,34,32,17,5,2.68\r\n,Hans Christensen Middle,Menifee Union Elementary,Riverside,829,7,9,1,2,4,50,1,34,0,56,13,0,10,13,9,N/A,26,26,82,14,27,43,12,4,2.64\r\n,Indian Hills Elementary,Jurupa Unified,Riverside,829,6,6,0,3,2,65,1,23,0,68,7,0,25,7,16,26,29,N/A,98,14,41,22,18,5,2.59\r\n,Brookside Elementary,Willits Unified,Mendocino,829,6,0,10,0,0,36,0,48,7,76,0,18,23,1,12,18,N/A,N/A,97,20,33,27,11,9,2.56\r\n,Centralia Elementary,Centralia Elementary,Orange,829,6,4,0,4,5,79,2,6,1,82,2,0,50,17,13,25,28,N/A,96,28,35,19,12,6,2.33\r\n,Sonora Elementary,Newport-Mesa Unified,Orange,829,6,2,1,7,1,69,2,18,0,81,3,0,52,12,18,23,25,N/A,82,38,22,18,15,6,2.28\r\n,Edgewood Academy,Bassett Unified,Los Angeles,829,6,2,0,2,1,92,0,3,0,84,3,0,26,14,11,23,24,27,83,31,39,18,10,2,2.14\r\n,Reseda Elementary,Los Angeles Unified,Los Angeles,829,6,2,0,9,3,84,0,1,0,100,10,0,45,23,6,18,24,N/A,98,26,46,16,11,0,2.14\r\n,Selma Herndon Elementary,Livingston Union Elementary,Merced,829,6,0,0,12,0,80,0,7,0,89,0,11,61,14,8,20,31,N/A,100,43,26,16,14,1,2.04\r\nD,N.E.W. Academy Canoga Park,Los Angeles Unified,Los Angeles,829,6,0,0,4,0,93,0,2,1,92,9,0,41,30,8,19,26,N/A,97,35,43,14,7,1,1.97\r\n,Richman Elementary,Fullerton Elementary,Orange,829,6,1,0,4,1,90,1,3,0,87,4,0,65,18,10,25,28,N/A,82,45,30,15,7,3,1.92\r\n,Felton Elementary,Lennox,Los Angeles,829,6,1,0,0,1,95,1,1,0,91,4,0,67,14,21,21,22,N/A,79,39,42,12,4,3,1.9\r\n,Foster Elementary,Baldwin Park Unified,Los Angeles,829,6,0,0,4,2,93,0,1,0,94,8,1,42,15,14,16,30,N/A,64,39,42,14,3,1,1.84\r\n,Gonzalo Felicitas Mendez Fundamental Int,Santa Ana Unified,Orange,829,7,0,0,1,0,98,0,1,0,91,17,2,30,48,5,N/A,33,35,97,50,29,15,4,2,1.81\r\n,Esplanade Elementary,Orange Unified,Orange,829,6,0,1,4,0,92,0,2,0,90,0,0,65,13,11,19,22,N/A,93,63,23,10,3,1,1.57\r\n,Chester Junior/Senior High,Plumas Unified,Plumas,829,8,1,2,1,0,9,0,87,0,25,16,0,0,0,6,,,,99,78,4,8,6,3,1.53\r\n,Chicago Park Elementary,Chicago Park Elementary,Nevada,828,6,0,4,0,1,15,0,77,3,37,21,0,0,0,9,17,13,N/A,99,1,4,46,29,20,3.63\r\n,,Western Placer Unified,Placer,828,B,1,1,4,3,29,1,58,3,34,6,0,11,6,12,16,19,7,94,7,14,30,27,21,3.41\r\n,Mission Vista High,Vista Unified,San Diego,828,8,3,1,3,2,33,2,55,1,28,19,0,3,15,7,N/A,N/A,32,92,8,14,29,32,17,3.35\r\n,Smith (C. L.) Elementary,San Luis Coastal Unified,San Luis Obispo,828,6,2,0,5,1,37,0,49,5,45,0,0,23,2,24,22,21,N/A,96,8,19,26,25,22,3.34\r\n,,McKinleyville Union Elementary,Humboldt,828,B,1,9,1,0,11,0,66,12,49,10,0,2,1,18,21,25,25,95,2,20,41,21,16,3.28\r\n,Monte Vista Middle,Pleasant Valley,Ventura,828,7,5,0,6,5,38,0,44,1,36,11,0,8,8,13,N/A,27,30,89,8,18,30,28,16,3.27\r\n,Joseph H. Wardlaw Elementary,Vallejo City Unified,Solano,828,6,25,0,8,36,18,3,6,3,47,4,0,11,6,6,29,32,N/A,98,4,16,36,40,5,3.26\r\n,Cummings Valley Elementary,Tehachapi Unified,Kern,828,6,2,1,1,0,22,0,74,0,31,4,0,6,1,15,25,29,N/A,81,4,23,34,23,15,3.24\r\n,Valley Vista Elementary,Petaluma City Schools,Sonoma,828,6,1,1,1,0,35,0,59,2,41,14,0,23,2,19,21,26,N/A,96,11,21,25,22,20,3.18\r\n,John Muir Elementary,Martinez Unified,Contra Costa,828,6,3,0,3,2,35,0,47,10,42,6,0,15,2,15,27,28,N/A,92,9,19,30,32,11,3.18\r\n,,Orcutt Union Elementary,Santa Barbara,828,B,2,1,2,2,40,1,50,3,42,3,1,10,4,9,28,28,27,95,6,20,40,19,15,3.17\r\n,,Hart-Ransom Union Elementary,Stanislaus,828,B,4,2,3,2,35,1,53,0,51,0,0,10,5,7,9,18,18,62,5,24,43,15,13,3.08\r\n,,Bella Vista Elementary,Shasta,828,B,0,4,0,0,13,0,77,6,40,5,0,0,0,12,22,20,21,99,7,21,45,17,10,3.02\r\n,Bella Vista Elementary,Bella Vista Elementary,Shasta,828,6,0,4,0,0,13,0,77,6,40,5,0,0,0,12,22,20,21,99,7,21,45,17,10,3.02\r\n,Cedar Grove Elementary,Evergreen Elementary,Santa Clara,828,6,3,0,46,14,31,1,5,0,40,1,0,23,21,10,24,30,N/A,99,9,25,34,24,8,2.97\r\n,S. Christa McAuliffe Elementary,Alvord Unified,Riverside,828,6,8,1,9,4,54,1,20,4,54,9,0,28,2,7,31,31,N/A,97,13,20,35,23,9,2.96\r\n,La Joya Middle,Visalia Unified,Tulare,828,7,4,3,4,0,58,0,29,1,62,18,2,6,13,9,N/A,N/A,30,97,11,22,37,21,9,2.95\r\n,Ione Olson Elementary,Monterey Peninsula Unified,Monterey,828,6,6,1,10,9,36,4,25,9,58,3,0,24,6,14,23,31,N/A,100,12,32,24,20,12,2.88\r\n,Victoria Elementary,Riverside Unified,Riverside,828,6,4,1,3,1,63,0,25,0,67,13,0,22,9,12,23,31,N/A,98,17,22,30,18,13,2.88\r\n,Stonehurst Avenue Elementary,Los Angeles Unified,Los Angeles,828,6,2,0,2,0,74,0,22,0,75,4,0,26,12,24,16,15,N/A,88,18,21,29,19,13,2.86\r\n,Fairgrove Elementary,Lucia Mar Unified,San Luis Obispo,828,6,1,0,0,1,56,0,39,2,66,7,1,22,7,13,23,31,N/A,91,18,19,34,19,9,2.81\r\n,Marguerita Elementary,Alhambra Unified,Los Angeles,828,6,0,0,43,1,51,0,3,1,71,4,3,37,16,10,21,24,29,97,15,34,19,24,8,2.76\r\n,Laurel Elementary,Oakland Unified,Alameda,828,6,33,0,35,1,21,1,3,4,77,39,0,32,10,7,22,26,N/A,72,12,39,26,14,10,2.71\r\n,Kynoch Elementary,Marysville Joint Unified,Yuba,828,6,7,3,3,1,34,1,51,2,81,3,0,14,2,9,22,28,N/A,86,14,30,38,14,5,2.65\r\n,Harrison Elementary,Riverside Unified,Riverside,828,6,6,0,4,0,55,0,32,0,61,10,0,16,9,13,26,34,N/A,97,17,27,38,13,5,2.61\r\n,Longfellow (Henry W.) Elementary,Pasadena Unified,Los Angeles,828,6,17,0,3,1,70,0,5,3,80,9,0,29,19,11,26,34,N/A,93,23,33,18,14,13,2.6\r\n,E. L. Musick Elementary,Newark Unified,Alameda,828,6,3,0,5,13,67,4,7,2,60,1,0,41,14,15,24,32,N/A,91,17,34,27,20,3,2.59\r\n,,Cinnabar Elementary,Sonoma,828,B,0,0,0,0,64,0,36,0,80,2,0,60,3,15,15,24,N/A,31,22,32,19,19,8,2.59\r\n,James B. Davidson Middle,San Rafael City Elementary,Marin,828,7,1,0,5,0,63,0,29,1,61,22,0,24,41,11,N/A,26,26,96,32,22,14,19,12,2.57\r\n,Las Lomas Elementary,La Habra City Elementary,Orange,828,6,1,0,1,2,86,0,6,3,72,0,0,55,2,8,28,N/A,N/A,93,23,30,28,14,4,2.46\r\n,Palmyra Elementary,Orange Unified,Orange,828,6,1,0,6,3,70,1,16,1,73,10,0,46,8,12,26,27,N/A,90,32,25,24,14,5,2.34\r\n,Bandini Street Elementary,Los Angeles Unified,Los Angeles,828,6,5,0,1,1,87,1,5,0,81,4,0,22,11,15,17,13,N/A,95,27,31,30,7,5,2.32\r\n,Cantara Street Elementary,Los Angeles Unified,Los Angeles,828,6,4,0,5,3,83,1,4,0,91,6,0,45,26,17,18,22,N/A,74,32,30,20,16,3,2.27\r\n,Schmitt Elementary,Westminster Elementary,Orange,828,6,0,0,40,0,54,1,4,1,85,23,0,74,12,12,21,30,N/A,94,31,33,21,13,3,2.24\r\n,Workman Elementary,Hacienda la Puente Unified,Los Angeles,828,6,2,0,1,1,94,0,2,0,89,4,1,34,14,9,20,24,N/A,83,32,35,18,12,2,2.17\r\n,Westfield Elementary,Porterville Unified,Tulare,828,6,0,1,4,1,68,0,23,2,74,19,6,17,10,4,23,32,N/A,100,38,27,24,6,5,2.13\r\nD,Triumph Academy,Los Angeles Unified,Los Angeles,828,7,3,0,0,0,96,0,1,0,93,6,0,13,48,13,N/A,30,27,97,47,19,21,9,3,2.03\r\n,Oleander Elementary,Fontana Unified,San Bernardino,828,6,6,0,0,0,92,0,2,0,100,4,0,51,21,8,28,31,N/A,94,41,34,16,5,5,1.99\r\n,Gulf Avenue Elementary,Los Angeles Unified,Los Angeles,828,6,1,0,0,0,96,1,1,0,89,6,0,38,29,15,18,18,N/A,55,51,29,16,4,0,1.75\r\nD,Aspire Lionel Wilson College Preparatory,Oakland Unified,Alameda,828,8,3,0,1,0,95,0,0,0,93,0,0,22,72,10,N/A,28,29,71,48,40,11,1,0,1.67\r\n,Garza (Carmen Lomas) Primary Center,Los Angeles Unified,Los Angeles,828,6,0,0,0,0,100,0,0,0,100,0,0,81,2,5,23,N/A,N/A,84,64,25,6,3,3,1.56\r\n,Earl Legette Elementary,San Juan Unified,Sacramento,827,6,3,1,4,1,11,1,77,3,28,8,0,4,1,15,28,31,N/A,74,1,11,18,50,20,3.77\r\nY,Inspire School of Arts and Sciences,Chico Unified,Butte,827,8,3,2,2,1,10,0,78,2,28,0,0,0,1,7,N/A,N/A,24,86,1,13,32,31,24,3.64\r\n,Summit Elementary,Ojai Unified,Ventura,827,6,2,0,0,0,30,0,68,0,38,4,0,6,0,6,20,22,N/A,50,12,8,8,48,24,3.64\r\nY,Keyes to Learning Charter,Keyes Union,Stanislaus,827,6,0,1,2,0,15,1,81,0,7,0,0,1,1,2,10,7,8,95,2,14,34,31,18,3.49\r\n,San Dimas High,Bonita Unified,Los Angeles,827,8,4,0,4,3,47,0,35,3,29,12,0,3,3,7,N/A,N/A,30,93,3,13,38,32,15,3.43\r\n,Encinal Elementary,Live Oak Unified,Sutter,827,6,0,0,6,0,36,0,55,3,55,15,3,3,7,0,21,20,N/A,90,3,17,40,17,23,3.4\r\n,Rio Vista Middle,Central Unified,Fresno,827,7,9,1,13,2,42,0,33,1,44,11,0,4,11,6,N/A,N/A,30,94,5,15,35,30,16,3.37\r\n,Allan Peterson Elementary,Merced City Elementary,Merced,827,6,2,0,12,1,49,0,31,6,57,0,0,13,5,6,25,32,N/A,100,3,16,41,24,16,3.34\r\n,Canyon Lake Middle,Lake Elsinore Unified,Riverside,827,7,7,1,3,3,37,0,49,0,45,23,0,4,13,13,N/A,32,33,100,6,20,38,24,11,3.13\r\n,B. Gale Wilson Elementary,Fairfield-Suisun Unified,Solano,827,6,14,0,5,5,44,0,24,7,43,6,0,16,14,10,29,29,31,97,9,21,31,28,11,3.12\r\n,Philip Magruder Middle,Torrance Unified,Los Angeles,827,7,9,0,19,3,43,1,19,4,57,8,0,11,15,13,N/A,15,32,88,7,21,33,28,10,3.12\r\n,George H. Flamson Middle,Paso Robles Joint Unified,San Luis Obispo,827,7,2,0,2,0,49,1,45,1,48,9,6,17,17,11,N/A,26,27,78,10,20,33,25,12,3.11\r\n,McKinley,Pasadena Unified,Los Angeles,827,6,18,1,12,3,53,0,12,2,61,18,0,21,16,8,27,29,29,95,16,21,22,20,22,3.09\r\n,John Foster Dulles Elementary,Norwalk-La Mirada Unified,Los Angeles,827,6,2,0,3,2,62,1,29,0,42,11,1,15,6,9,26,27,N/A,99,5,24,42,19,10,3.05\r\n,El Centro Elementary,Napa Valley Unified,Napa,827,6,1,1,0,1,44,0,48,3,42,4,2,19,15,14,25,31,N/A,89,15,17,25,35,8,3.04\r\nY,Castlemont Elementary,Campbell Union,Santa Clara,827,6,4,1,9,4,53,1,28,0,54,9,0,38,9,12,21,26,N/A,95,10,25,27,27,11,3.03\r\n,Walker Elementary,San Diego Unified,San Diego,827,6,9,0,13,21,35,3,6,12,69,15,0,37,13,10,20,32,N/A,97,10,23,34,25,9,3.01\r\n,Emelita Street Elementary,Los Angeles Unified,Los Angeles,827,6,8,0,4,1,49,0,37,0,63,7,0,22,17,16,16,15,N/A,96,11,26,25,29,8,2.96\r\n,Mission Park Elementary,Salinas City Elementary,Monterey,827,6,3,1,3,2,56,1,30,1,49,0,0,10,9,5,24,30,N/A,99,7,27,39,17,10,2.95\r\n,Wilson Junior High,El Centro Elementary,Imperial,827,7,2,1,1,1,90,0,5,1,75,10,8,25,29,10,N/A,N/A,29,81,10,30,35,16,8,2.81\r\n,Lincoln Elementary,Madera Unified,Madera,827,6,1,0,4,0,74,0,17,2,57,0,0,14,11,4,29,35,N/A,100,13,25,39,17,6,2.77\r\n,El Portal Middle,Escalon Unified,San Joaquin,827,7,1,0,2,1,45,1,48,2,46,10,9,16,19,10,N/A,28,29,96,16,26,35,11,12,2.76\r\n,Frank Kohn Elementary,Tulare City,Tulare,827,6,2,1,2,1,64,0,31,0,62,5,4,17,9,4,21,31,N/A,89,12,32,34,16,6,2.72\r\n,Palms Elementary,Los Angeles Unified,Los Angeles,827,6,19,0,8,1,64,0,7,0,77,5,0,35,16,18,17,18,N/A,83,19,30,22,19,10,2.72\r\n,Garin Elementary,Brentwood Union Elementary,Contra Costa,827,6,5,1,4,3,39,0,46,1,42,3,1,24,7,10,25,30,N/A,97,14,29,34,21,3,2.69\r\n,Henderson Elementary,Barstow Unified,San Bernardino,827,6,9,1,1,2,49,2,30,6,60,5,0,12,1,5,26,32,N/A,95,10,36,39,11,3,2.61\r\n,,Buena Park Elementary,Orange,827,B,6,0,14,6,63,1,10,1,66,9,0,42,13,9,27,29,28,88,24,25,23,20,7,2.61\r\nY,Sherman Oaks Elementary,Campbell Union,Santa Clara,827,6,3,0,1,1,88,1,6,0,75,13,0,58,22,5,21,25,N/A,95,20,39,13,15,12,2.59\r\n,West Marin Elementary,Shoreline Unified,Marin,827,6,1,2,2,0,52,1,43,0,55,0,1,39,8,18,19,17,N/A,89,33,24,6,24,12,2.57\r\n,Mayall Street Elementary,Los Angeles Unified,Los Angeles,827,6,5,0,7,11,59,0,17,0,75,11,0,28,11,15,16,17,N/A,87,19,31,31,15,4,2.53\r\n,Monte Vista Elementary,Ontario-Montclair Elementary,San Bernardino,827,6,3,1,5,2,85,1,3,1,79,7,0,45,10,12,26,30,N/A,97,25,34,29,9,4,2.34\r\n,McKevett Elementary,Santa Paula Elementary,Ventura,827,6,1,0,1,0,91,0,8,0,100,16,7,45,10,12,25,30,N/A,99,38,22,19,19,3,2.25\r\n,Desert Ridge Academy,Desert Sands Unified,Riverside,827,7,2,0,0,1,86,0,11,0,82,6,1,20,23,11,N/A,29,32,99,30,33,25,9,4,2.24\r\nD,Bright Star Secondary Charter Academy,Los Angeles Unified,Los Angeles,827,8,15,0,2,0,83,0,0,0,87,0,0,29,36,5,N/A,N/A,28,89,39,29,15,11,6,2.18\r\n,Corona Elementary,Ontario-Montclair Elementary,San Bernardino,827,6,2,0,1,0,94,0,2,1,94,7,0,67,6,8,20,21,N/A,100,34,41,19,4,3,2.01\r\n,Holder Elementary,Savanna Elementary,Orange,827,6,6,1,12,7,53,2,15,2,68,3,0,42,8,11,26,32,N/A,97,46,35,13,6,1,1.81\r\nD,Aveson School of Leaders,Pasadena Unified,Los Angeles,826,6,12,2,4,2,18,0,47,1,1,0,0,3,0,11,23,22,N/A,93,0,2,15,40,42,4.22\r\nD,Lake County International Charter,Middletown Unified,Lake,826,6,15,0,0,0,3,3,80,0,63,0,0,0,0,10,12,14,N/A,55,0,5,27,36,32,3.95\r\n,Washington Elementary,Berkeley Unified,Alameda,826,6,21,0,12,0,14,0,41,8,41,7,0,21,1,15,20,27,N/A,92,6,10,15,25,43,3.9\r\n,Mountain View Learning Academy,Alpine Union Elementary,San Diego,826,6,0,1,1,0,2,0,89,5,5,0,0,0,0,2,34,28,N/A,66,0,4,50,31,15,3.57\r\n,,Brisbane Elementary,San Mateo,826,B,3,0,17,8,31,2,28,11,29,7,0,5,13,15,24,25,N/A,91,2,19,24,38,16,3.46\r\n,Culver City High,Culver City Unified,Los Angeles,826,8,23,1,12,2,39,1,22,1,37,12,0,7,19,7,N/A,N/A,29,93,8,13,29,28,23,3.45\r\n,,Pleasant Valley Elementary,Nevada,826,B,1,2,0,1,7,0,86,4,34,1,0,1,0,15,24,18,26,96,1,11,44,31,13,3.43\r\nD,Everest Public High,SBE - Everest Public High,San Mateo,826,8,3,1,3,1,29,2,25,0,38,0,0,18,18,17,N/A,N/A,24,97,16,16,11,22,34,3.41\r\n,Antelope High,Roseville Joint Union High,Placer,826,8,10,1,10,4,17,1,53,4,39,6,0,5,19,6,N/A,N/A,34,95,3,16,35,34,12,3.36\r\n,,Shasta Union High,Shasta,826,B,2,4,4,1,12,0,74,4,39,19,0,0,1,9,N/A,27,25,95,6,19,34,25,16,3.27\r\n,Florence Markofer Elementary,Elk Grove Unified,Sacramento,826,6,6,0,6,1,24,1,52,8,41,1,0,8,3,12,24,25,N/A,94,3,24,35,24,13,3.2\r\n,J. H. Hull Middle,Torrance Unified,Los Angeles,826,7,3,1,12,6,45,2,22,3,48,9,0,10,10,12,N/A,32,31,66,5,23,33,26,14,3.2\r\n,Burroughs High,Burbank Unified,Los Angeles,826,8,2,0,6,6,47,0,36,3,0,14,0,3,22,9,N/A,N/A,29,95,7,20,30,33,10,3.19\r\n,George Washington Elementary,Burbank Unified,Los Angeles,826,6,3,0,4,5,58,0,29,1,17,1,0,28,5,17,23,27,N/A,83,1,25,35,32,7,3.19\r\n,Oak Creek Intermediate,Bass Lake Joint Union Elementa,Madera,826,7,2,5,2,0,19,0,70,1,57,19,0,5,4,11,N/A,32,N/A,99,7,19,38,22,14,3.16\r\n,Joseph Azevada Elementary,Fremont Unified,Alameda,826,6,4,0,27,8,31,3,23,2,39,1,1,25,14,16,26,25,N/A,97,9,29,20,27,16,3.12\r\n,,Fullerton Joint Union High,Orange,826,B,2,0,18,3,53,0,21,2,37,39,0,14,24,8,N/A,N/A,32,90,15,20,23,25,17,3.07\r\n,,Mountain View Elementary,San Bernardino,826,B,8,0,3,1,72,0,12,4,64,0,0,25,6,13,30,24,26,94,7,22,37,24,10,3.07\r\n,Copperopolis Elementary,Mark Twain Union Elementary,Calaveras,826,6,1,4,0,1,14,0,74,4,52,0,0,2,1,10,21,29,N/A,95,1,32,35,27,6,3.06\r\n,Ponderosa Elementary,Paradise Unified,Butte,826,6,0,1,1,1,12,0,76,8,64,0,0,1,0,9,26,26,N/A,100,4,22,51,14,10,3.05\r\n,Iron House Elementary,Oakley Union Elementary,Contra Costa,826,6,15,0,5,5,41,1,27,6,58,0,0,18,8,15,27,30,N/A,95,7,28,35,24,6,2.96\r\n,,Corona-Norco Unified,Riverside,826,B,6,0,8,3,50,0,31,1,43,8,0,12,16,11,25,29,29,93,15,20,31,22,12,2.95\r\n,Glen Oak Elementary,Charter Oak Unified,Los Angeles,826,6,4,1,4,3,66,1,20,3,55,6,0,8,7,10,22,31,N/A,87,9,25,37,22,7,2.95\r\n,Faylane Elementary,Garden Grove Unified,Orange,826,6,0,0,29,2,52,1,16,0,56,1,0,47,18,8,27,29,N/A,26,8,36,13,39,4,2.95\r\n,Pacific Beach Middle,San Diego Unified,San Diego,826,7,3,0,2,1,62,0,29,4,65,30,0,23,24,12,N/A,24,27,88,17,23,24,23,12,2.9\r\n,Baldy Mesa Elementary,Snowline Joint Unified,San Bernardino,826,6,4,2,1,0,40,0,49,1,58,2,0,17,2,11,29,30,N/A,95,9,28,37,19,8,2.89\r\n,El Monte Elementary,Mt. Diablo Unified,Contra Costa,826,6,9,0,2,5,48,1,32,3,67,1,0,31,7,18,26,28,N/A,57,14,22,33,22,8,2.89\r\n,Weaverville Elementary,Trinity Alps Unified,Trinity,826,6,0,6,1,0,6,0,82,3,50,0,0,1,0,12,23,29,23,76,2,36,39,19,4,2.87\r\n,Rosedale-North Elementary,Rosedale Union Elementary,Kern,826,6,3,1,2,3,28,0,63,0,42,4,1,5,9,10,19,24,N/A,97,7,36,32,15,10,2.85\r\n,Hillside Middle,Simi Valley Unified,Ventura,826,7,1,0,3,2,39,0,53,1,43,9,0,6,17,20,N/A,31,27,88,11,33,29,20,8,2.8\r\n,Riley Elementary,Long Beach Unified,Los Angeles,826,6,29,0,9,4,43,2,11,1,67,0,0,10,8,15,28,26,N/A,93,14,28,36,18,4,2.69\r\n,Pachappa Elementary,Riverside Unified,Riverside,826,6,6,0,1,0,61,0,31,0,73,9,0,18,11,12,24,29,N/A,98,23,20,35,14,9,2.65\r\n,,San Rafael City Elementary,Marin,826,B,1,0,4,0,62,0,29,1,61,12,0,41,20,13,22,25,24,95,31,22,14,20,13,2.63\r\n,Foothill Elementary,Pittsburg Unified,Contra Costa,826,6,21,0,4,5,61,1,5,2,80,4,0,45,7,9,21,19,N/A,95,18,38,19,18,7,2.59\r\n,Bolsa Grande High,Garden Grove Unified,Orange,826,8,1,0,55,1,37,1,6,0,67,7,0,31,51,8,N/A,N/A,31,48,20,34,16,25,4,2.58\r\n,Great Western Elementary,Kings Canyon Joint Unified,Fresno,826,6,0,2,0,0,82,0,15,0,94,0,3,33,17,6,25,31,N/A,98,26,22,27,19,7,2.58\r\n,Pioneer Elementary,Weaver Union,Merced,826,6,8,0,10,1,61,1,17,1,83,0,2,33,7,11,20,28,N/A,100,19,24,42,12,3,2.54\r\n,Linda Vista Elementary,Alum Rock Union Elementary,Santa Clara,826,6,1,1,8,2,79,0,8,1,100,6,1,38,22,14,19,34,N/A,91,30,30,18,13,8,2.39\r\n,Surprise Valley Elementary,Surprise Valley Joint Unified,Modoc,826,6,2,13,0,0,26,0,57,0,64,0,3,11,10,0,17,15,5,48,21,34,34,7,3,2.38\r\n,Susan B. Anthony Elementary,Jefferson Elementary,San Mateo,826,6,2,0,4,34,49,3,4,3,62,2,0,57,9,4,23,26,N/A,87,16,50,19,14,1,2.33\r\n,Quail Valley Elementary,Menifee Union Elementary,Riverside,826,6,3,0,1,1,67,1,27,0,75,6,0,31,15,10,25,24,N/A,85,30,29,28,10,2,2.26\r\n,Rosemary Kennedy Elementary,Alvord Unified,Riverside,826,6,2,0,2,0,82,0,12,1,79,4,0,55,2,6,27,31,N/A,97,30,35,24,8,3,2.2\r\n,Ramona Elementary,Moreno Valley Unified,Riverside,826,6,13,1,1,0,75,3,5,2,83,5,2,44,9,13,27,33,N/A,87,21,46,27,5,1,2.19\r\n,Allen (Decima M.) Elementary,San Bruno Park Elementary,San Mateo,826,6,0,0,4,5,68,8,12,1,63,1,0,68,1,9,30,27,N/A,92,32,35,21,11,2,2.16\r\n,Wesley Gaines,Paramount Unified,Los Angeles,826,6,6,0,0,1,91,0,1,0,95,0,0,56,11,8,28,N/A,N/A,98,31,37,21,8,3,2.16\r\nD,Aspire East Palo Alto Charter,Ravenswood City Elementary,San Mateo,826,6,10,0,1,0,85,2,2,0,91,0,0,38,48,8,24,26,30,94,47,36,13,1,3,1.78\r\nD,Sherwood Montessori,Chico Unified,Butte,825,6,1,3,3,1,13,0,78,0,23,0,0,7,3,6,9,13,N/A,80,3,3,6,34,54,4.34\r\n,Sierra Oaks K-8,San Juan Unified,Sacramento,825,6,11,1,8,2,14,2,60,2,38,5,0,10,3,7,30,28,29,65,2,10,22,32,34,3.88\r\nD,Alameda Community Learning Center,Alameda City Unified,Alameda,825,8,8,1,22,5,17,0,37,6,14,0,0,7,9,7,N/A,27,22,98,1,13,18,38,31,3.85\r\nD,Creative Arts Charter,San Francisco Unified,San Francisco,825,6,15,1,13,2,10,1,45,6,27,3,0,5,3,12,22,22,26,59,1,17,16,40,26,3.73\r\n,Mt. Shasta High,Siskiyou Union High,Siskiyou,825,8,3,1,3,2,14,0,77,0,17,0,0,0,3,3,N/A,N/A,23,97,6,8,41,12,33,3.56\r\n,Castro Valley High,Castro Valley Unified,Alameda,825,8,7,0,25,3,22,1,32,10,18,13,0,5,13,8,N/A,N/A,30,95,3,14,28,35,20,3.55\r\nD,Golden Oak Montessori of Hayward,Hayward Unified,Alameda,825,6,8,0,15,7,37,1,22,9,11,0,0,11,7,2,21,25,N/A,99,8,15,18,35,25,3.53\r\n,University City High,San Diego Unified,San Diego,825,8,6,0,11,7,34,0,36,5,40,41,0,7,23,7,N/A,N/A,31,95,7,18,20,29,26,3.48\r\n,Ingrid B. Lacy Middle,Pacifica,San Mateo,825,6,3,0,6,16,27,2,34,11,28,10,0,9,3,10,N/A,30,29,98,1,14,35,36,13,3.45\r\n,Pacific Union Elementary,Pacific Union Elementary,Humboldt,825,6,1,3,0,0,18,0,68,7,46,9,0,10,3,13,17,25,26,100,10,19,22,30,19,3.29\r\n,Cottonwood Creek Elementary,Visalia Unified,Tulare,825,6,1,2,7,1,51,0,38,2,52,13,1,9,5,9,26,28,N/A,97,6,16,37,27,14,3.28\r\n,West Park Elementary,Napa Valley Unified,Napa,825,6,0,0,0,0,26,0,67,4,24,4,2,11,6,12,26,31,N/A,94,7,15,36,29,13,3.26\r\n,Dos Caminos Elementary,Pleasant Valley,Ventura,825,6,2,1,3,5,46,0,41,3,41,8,0,17,2,10,21,28,N/A,99,7,17,30,33,12,3.26\r\n,,Santa Ynez Valley Union High,Santa Barbara,825,B,0,1,1,0,40,0,54,4,26,40,0,9,20,12,N/A,N/A,26,99,18,10,24,29,20,3.24\r\n,Ophir Elementary,Oroville City Elementary,Butte,825,6,3,5,3,0,12,0,67,10,56,6,0,2,1,12,27,30,N/A,99,2,19,46,20,13,3.23\r\n,,Redlands Unified,San Bernardino,825,B,7,0,8,3,45,1,33,3,53,10,0,9,6,12,22,29,27,95,9,18,35,18,20,3.22\r\n,Leonardo Da Vinci,Sacramento City Unified,Sacramento,825,6,8,1,9,0,32,0,41,8,38,21,0,9,5,14,25,30,21,61,13,19,24,23,21,3.19\r\n,Gilbert Elementary,Garden Grove Unified,Orange,825,6,2,0,29,2,51,2,13,1,59,0,0,41,18,7,25,29,N/A,25,8,19,30,35,8,3.18\r\n,Sunnyside Elementary,San Francisco Unified,San Francisco,825,6,14,0,14,10,27,1,24,4,58,8,0,25,8,15,20,30,N/A,90,8,24,28,24,16,3.17\r\n,,Ramona City Unified,San Diego,825,B,1,1,1,1,32,0,60,1,34,0,1,13,9,11,22,31,32,91,11,17,32,26,14,3.15\r\n,,Upland Unified,San Bernardino,825,B,9,0,5,1,51,0,31,2,52,14,0,13,5,13,23,27,29,96,8,19,37,26,11,3.12\r\n,Milpitas High,Milpitas Unified,Santa Clara,825,8,4,0,44,21,19,1,8,2,35,15,0,14,33,6,N/A,N/A,28,96,10,22,27,29,12,3.11\r\n,Murray Middle,Sierra Sands Unified,Kern,825,6,5,2,3,3,21,1,65,0,46,13,0,5,6,12,N/A,25,26,95,12,19,34,21,14,3.06\r\n,Stockard Coffee Elementary,Sylvan Union Elementary,Stanislaus,825,6,1,0,6,3,42,1,44,3,50,3,0,26,3,22,26,29,N/A,97,12,23,35,21,10,2.96\r\n,Redwood Elementary,Del Norte County Unified,Del Norte,825,6,1,13,1,1,11,0,73,1,48,18,0,2,2,12,26,24,27,96,5,29,47,8,11,2.91\r\n,,Oak Grove Elementary,Santa Clara,825,B,6,1,20,4,47,1,20,1,49,23,2,26,17,10,24,31,27,95,15,26,25,24,9,2.87\r\n,Newark Junior High,Newark Unified,Alameda,825,6,7,0,11,9,50,2,18,2,51,9,1,16,32,17,N/A,N/A,29,93,16,27,25,25,7,2.81\r\n,Woodrow W. Wallace Elementary,Kernville Union Elementary,Kern,825,6,0,2,2,0,8,0,88,0,75,0,0,0,1,9,23,21,N/A,98,13,31,41,10,6,2.64\r\n,,Sanger Unified,Fresno,825,B,2,0,11,1,69,0,16,1,78,3,2,19,20,7,21,25,24,99,27,22,27,23,1,2.5\r\n,Barton (Clara) Elementary,Anaheim City,Orange,825,6,2,0,17,6,57,2,13,1,76,21,0,36,29,10,29,30,N/A,23,22,30,31,12,5,2.49\r\n,,Valley Center-Pauma Unified,San Diego,825,B,1,11,1,1,43,0,41,1,47,7,3,22,12,10,24,28,27,99,32,23,26,13,6,2.39\r\n,Think College Now,Oakland Unified,Alameda,825,6,11,1,8,0,78,1,2,0,30,22,2,56,21,10,25,26,N/A,48,32,32,16,15,6,2.33\r\n,Valencia Park Elementary,Fullerton Elementary,Orange,825,6,2,0,1,2,89,0,5,0,86,1,0,60,9,11,18,24,N/A,81,19,45,22,12,2,2.33\r\n,Martin Elementary,South San Francisco Unified,San Mateo,825,6,0,1,3,6,89,0,0,0,91,0,3,74,7,13,24,31,N/A,100,27,42,15,13,4,2.24\r\n,Hoffer Elementary,Banning Unified,Riverside,825,6,11,3,10,0,57,0,14,5,94,2,0,26,8,12,19,32,N/A,94,36,25,31,8,1,2.14\r\n,Highgrove Elementary,Riverside Unified,Riverside,825,6,2,1,0,0,86,0,8,0,90,8,0,33,17,13,26,28,N/A,96,33,32,27,5,3,2.13\r\nD,Environmental Charter High,Lawndale Elementary,Los Angeles,825,8,11,0,3,1,77,0,4,0,59,0,0,12,40,3,N/A,N/A,27,100,42,25,21,10,2,2.06\r\n,Joel J. Hidahl Elementary,Ceres Unified,Stanislaus,825,6,3,0,4,0,75,1,15,1,84,3,5,52,11,11,23,33,N/A,100,34,39,17,7,3,2.06\r\n,Sanchez (George I.) Elementary,Garvey Elementary,Los Angeles,825,6,0,0,48,0,51,0,0,0,86,15,3,47,30,14,21,31,N/A,94,34,42,11,9,4,2.06\r\n,Manuel Esqueda Elementary,Santa Ana Unified,Orange,825,6,0,1,0,0,97,0,1,0,94,4,0,69,15,10,25,31,N/A,90,49,30,17,2,2,1.79\r\n,Monroe Elementary,Santa Ana Unified,Orange,825,6,0,0,2,1,94,0,2,1,96,5,0,60,23,14,27,30,N/A,97,47,34,15,3,1,1.77\r\n,Romoland Elementary,Romoland Elementary,Riverside,825,6,2,0,0,0,92,0,6,0,77,1,0,59,14,5,19,24,N/A,87,45,45,5,5,0,1.69\r\n,Dos Pueblos Senior High,Santa Barbara Unified,Santa Barbara,824,8,2,1,7,1,41,0,45,4,26,29,0,11,19,12,N/A,N/A,27,94,10,12,19,31,27,3.53\r\n,Martin Luther King Jr. High,Riverside Unified,Riverside,824,8,12,0,7,3,30,1,46,0,28,13,0,2,7,8,N/A,N/A,31,96,3,10,40,25,20,3.49\r\n,Mendocino High,Mendocino Unified,Mendocino,824,8,1,2,4,1,7,0,79,2,27,6,0,1,1,14,N/A,N/A,19,87,4,9,44,21,22,3.47\r\n,Morro Bay High,San Luis Coastal Unified,San Luis Obispo,824,8,0,1,3,4,25,0,61,6,38,0,0,9,6,8,N/A,N/A,26,94,6,14,28,31,21,3.47\r\n,Freedom Middle,Rosedale Union Elementary,Kern,824,6,3,1,2,2,26,0,67,0,26,15,0,1,6,5,N/A,N/A,29,96,4,17,38,24,17,3.34\r\n,Bethune K-8,San Diego Unified,San Diego,824,6,12,0,2,60,16,1,3,6,66,24,0,21,15,8,24,28,28,92,1,21,28,43,7,3.34\r\n,,Pacific Union Elementary,Humboldt,824,B,0,2,0,0,19,0,68,7,47,9,0,9,2,15,16,22,26,98,9,19,24,29,18,3.29\r\n,James Monroe Elementary,Garden Grove Unified,Orange,824,6,1,0,56,1,33,1,7,0,57,0,0,40,27,25,24,26,N/A,9,10,19,14,57,0,3.19\r\n,McKinleyville Middle,McKinleyville Union Elementary,Humboldt,824,6,1,8,1,0,11,0,67,12,46,15,0,1,2,18,N/A,26,25,97,3,22,42,19,13,3.18\r\n,Valley Alternative Magnet,Los Angeles Unified,Los Angeles,824,6,6,0,8,3,39,0,44,0,68,22,0,12,34,8,17,22,27,81,10,20,23,35,12,3.18\r\n,James C. Enochs High,Modesto City High,Stanislaus,824,8,4,1,5,3,36,1,41,6,36,18,0,6,13,9,N/A,N/A,30,97,6,28,33,22,12,3.05\r\n,Curtis Creek Elementary,Curtis Creek Elementary,Tuolumne,824,6,0,3,1,0,17,0,78,0,53,15,0,4,0,15,24,25,20,97,5,27,44,13,12,3\r\n,,McCloud Union Elementary,Siskiyou,824,B,0,0,0,0,12,0,14,0,75,0,0,0,0,12,10,3,N/A,1,0,0,100,0,0,3\r\n,Faith Ringgold School of Arts and Scienc,Hayward Unified,Alameda,824,6,13,2,5,5,44,6,24,2,53,5,1,17,12,5,18,21,N/A,90,10,27,26,26,10,2.99\r\n,Norco Intermediate,Corona-Norco Unified,Riverside,824,6,2,0,3,1,39,0,54,0,36,13,0,4,11,13,N/A,6,28,92,11,19,42,18,11,2.98\r\n,Valencia High,Placentia-Yorba Linda Unified,Orange,824,8,2,0,16,2,56,0,21,1,55,14,0,12,30,9,N/A,N/A,31,77,23,18,17,24,18,2.98\r\n,Reche Canyon Elementary,Colton Joint Unified,San Bernardino,824,6,11,0,11,4,53,1,18,1,68,18,0,18,10,9,20,28,N/A,92,11,27,28,22,12,2.98\r\n,South Oceanside Elementary,Oceanside Unified,San Diego,824,6,2,1,0,1,51,0,39,4,62,9,4,21,10,12,25,32,N/A,88,15,22,32,19,12,2.91\r\nY,Napa Valley Language Academy,Napa Valley Unified,Napa,824,6,0,0,0,0,71,0,25,2,54,6,6,38,16,5,24,31,N/A,95,26,21,17,19,17,2.79\r\n,Bautista Creek Elementary,Hemet Unified,Riverside,824,6,6,3,1,1,38,0,46,4,64,0,0,8,3,17,23,28,N/A,100,13,26,41,12,9,2.78\r\n,Mammoth Middle,Mammoth Unified,Mono,824,6,0,0,1,0,53,1,44,0,56,4,0,25,21,14,N/A,26,24,98,25,21,22,18,14,2.75\r\n,California Middle,Sacramento City Unified,Sacramento,824,6,19,1,13,1,39,1,22,5,67,24,0,11,16,11,N/A,N/A,30,93,18,29,26,16,10,2.7\r\n,Christa McAuliffe Elementary,Panama-Buena Vista Union,Kern,824,6,12,0,2,1,50,0,34,1,56,4,0,9,4,19,26,32,N/A,57,13,44,20,22,1,2.54\r\n,Elysian Heights Elementary,Los Angeles Unified,Los Angeles,824,6,1,1,4,1,89,1,4,0,87,5,0,21,15,13,13,22,N/A,80,24,22,38,11,6,2.53\r\n,Dayton Heights Elementary,Los Angeles Unified,Los Angeles,824,6,3,1,3,7,84,0,2,0,94,7,0,41,26,16,19,19,N/A,64,29,27,17,20,7,2.5\r\n,Silver Wing Elementary,Chula Vista Elementary,San Diego,824,6,2,0,0,7,83,1,6,0,70,12,0,52,6,7,20,24,N/A,72,20,32,30,14,3,2.48\r\n,John J. Montgomery Elementary,Evergreen Elementary,Santa Clara,824,6,4,1,32,12,48,0,2,1,60,1,2,38,22,10,23,29,N/A,100,23,31,28,12,6,2.47\r\n,Monroe Elementary,Hanford Elementary,Kings,824,6,9,1,2,0,57,0,29,2,72,0,4,14,5,11,20,31,N/A,96,13,41,35,7,4,2.47\r\n,Ernest Garcia Elementary,Rialto Unified,San Bernardino,824,6,7,0,3,2,84,0,4,0,78,12,0,24,20,11,25,30,N/A,89,26,28,26,17,3,2.43\r\n,Cedarcreek Elementary,Saugus Union,Los Angeles,824,6,5,1,2,2,77,1,14,0,67,3,0,43,10,8,20,30,N/A,96,29,27,27,10,7,2.4\r\n,Jane Addams Middle,Lawndale Elementary,Los Angeles,824,6,8,0,3,1,80,1,5,1,83,13,0,16,42,13,N/A,30,27,98,22,34,28,14,2,2.39\r\n,Bitely (Arlene) Elementary,Garvey Elementary,Los Angeles,824,6,1,0,50,1,47,0,1,0,88,18,1,54,23,8,21,34,N/A,93,27,42,13,11,7,2.31\r\n,Oak Street Elementary,Inglewood Unified,Los Angeles,824,6,12,0,0,1,86,0,0,0,92,0,0,22,0,10,30,31,N/A,95,36,34,19,8,3,2.07\r\nD,Camino Nuevo Charter Academy,Los Angeles Unified,Los Angeles,824,6,0,0,0,0,98,0,0,0,99,0,0,55,38,10,22,30,N/A,99,70,18,7,4,1,1.48\r\nD,Credo High,Cotati-Rohnert Park Unified,Sonoma,823,8,2,0,2,0,20,0,73,2,15,0,0,0,0,2,N/A,N/A,6,80,0,0,18,39,42,4.24\r\nD,Ventura Charter School of Arts and Globa,Ventura County Office of Educa,Ventura,823,6,1,2,0,0,23,0,70,2,19,10,0,1,0,5,26,19,N/A,98,0,6,31,40,23,3.78\r\n,John Muir Elementary,Berkeley Unified,Alameda,823,6,29,1,8,0,16,0,31,12,50,5,0,17,2,17,19,24,N/A,87,6,7,32,28,27,3.62\r\n,John Adams Middle,Santa Monica-Malibu Unified,Los Angeles,823,6,9,0,3,1,53,0,27,5,43,0,0,10,14,13,N/A,28,27,73,7,16,28,24,24,3.43\r\n,John Muir Elementary,Santa Monica-Malibu Unified,Los Angeles,823,6,12,0,2,0,44,0,33,8,47,0,0,11,1,19,26,26,N/A,70,7,16,27,28,22,3.41\r\n,,Summerville Union High,Tuolumne,823,B,1,2,0,0,6,0,89,1,39,0,0,0,0,3,16,18,7,94,1,15,45,24,15,3.37\r\n,Blanche Sprentz Elementary,Folsom-Cordova Unified,Sacramento,823,6,2,0,5,1,23,1,67,2,35,3,0,13,4,16,25,33,N/A,93,6,13,34,39,9,3.31\r\nY,Stellar Secondary Charter High,Redding Elementary,Shasta,823,8,0,0,2,0,2,0,93,3,15,0,0,0,0,7,N/A,N/A,17,97,0,22,46,14,19,3.29\r\n,Highlands Elementary,Saugus Union,Los Angeles,823,6,2,0,4,3,33,0,56,2,23,6,0,9,6,21,23,25,N/A,99,5,21,29,33,13,3.29\r\n,,Petaluma City Schools,Sonoma,823,B,1,0,3,1,31,0,60,3,37,9,1,15,12,15,,,,95,12,16,25,30,17,3.25\r\nD,Summit Public School: Rainier,East Side Union High,Santa Clara,823,8,4,0,13,4,56,0,18,3,44,0,0,13,11,2,N/A,N/A,23,94,11,20,22,29,18,3.24\r\nD,San Diego Global Vision Academy,San Diego Unified,San Diego,823,6,46,0,0,1,27,0,16,11,100,1,0,13,0,14,21,24,N/A,91,6,17,42,23,12,3.17\r\nD,KIPP Academy of Opportunity,Los Angeles Unified,Los Angeles,823,6,90,0,0,0,10,0,0,0,74,0,0,4,1,11,,,,83,3,18,50,16,13,3.16\r\n,Academy of Performing Arts and Foreign L,Victor Elementary,San Bernardino,823,6,17,1,5,0,50,1,24,1,62,0,0,8,1,9,32,28,N/A,95,7,19,42,20,13,3.13\r\n,Sutter Creek Elementary,Amador County Unified,Amador,823,6,1,2,0,1,18,0,71,5,52,10,0,1,2,15,29,29,N/A,95,5,27,35,20,12,3.07\r\n,Herman (Leonard) Intermediate,Oak Grove Elementary,Santa Clara,823,6,8,0,13,3,43,0,28,1,40,33,1,12,19,8,N/A,30,27,95,9,26,28,25,10,3.01\r\n,Bay Elementary,San Lorenzo Unified,Alameda,823,6,8,0,16,9,48,1,15,3,42,0,0,31,12,11,27,28,N/A,89,7,27,32,27,7,2.99\r\n,John Muir,San Diego Unified,San Diego,823,6,10,1,4,3,51,1,26,3,68,32,0,21,14,18,23,26,19,90,13,24,30,18,15,2.98\r\n,Golden Hills Elementary,Tehachapi Unified,Kern,823,6,2,0,1,0,28,0,66,1,46,5,1,10,2,15,25,28,N/A,67,3,31,44,16,6,2.9\r\n,Dr. Walter C. Ralston Intermediate,Garden Grove Unified,Orange,823,6,2,0,33,2,50,1,13,0,58,10,0,32,34,13,N/A,N/A,29,49,13,32,18,30,7,2.86\r\n,,Central Union Elementary,Kings,823,B,7,15,3,5,31,1,38,0,54,3,5,13,3,11,20,25,19,97,16,23,36,18,6,2.74\r\n,Hoover (Herbert) Middle,San Francisco Unified,San Francisco,823,6,5,0,54,3,24,1,8,1,60,45,1,16,42,10,N/A,27,26,77,9,47,14,20,9,2.74\r\n,San Gorgonio Middle,Beaumont Unified,Riverside,823,6,6,1,3,3,53,0,34,0,71,13,0,13,14,10,N/A,30,34,82,13,27,39,16,5,2.73\r\n,Thomas Law Reed Elementary,Kings Canyon Joint Unified,Fresno,823,6,0,1,1,1,79,0,16,1,68,0,2,26,15,6,27,32,31,98,21,24,26,20,9,2.71\r\n,Shirley Rominger Intermediate,Winters Joint Unified,Yolo,823,6,0,1,1,0,59,0,39,0,69,0,6,52,4,15,N/A,22,N/A,91,28,17,25,16,13,2.68\r\n,Rohr (Fred H.) Elementary,Chula Vista Elementary,San Diego,823,6,4,1,0,3,86,1,4,0,63,16,0,40,7,13,19,26,N/A,64,16,36,29,10,10,2.63\r\n,Tully C. Knoles,Lincoln Unified,San Joaquin,823,6,17,0,6,2,52,1,21,0,80,1,1,20,6,10,26,31,18,96,12,35,36,13,4,2.63\r\n,Laurel Elementary,East Whittier City Elementary,Los Angeles,823,6,1,0,0,1,88,0,10,0,60,6,0,24,5,10,22,31,N/A,97,13,30,42,13,2,2.61\r\n,Miguel Hidalgo Elementary,Brawley Elementary,Imperial,823,6,1,0,0,1,92,0,5,1,76,12,11,35,3,8,27,29,N/A,99,17,30,33,15,5,2.61\r\n,Daniel Pearl Journalism & Communications,Los Angeles Unified,Los Angeles,823,8,9,1,3,4,61,0,22,0,67,28,0,4,33,7,N/A,N/A,29,59,23,28,25,18,6,2.58\r\n,Vernon E. Greer Elementary,Galt Joint Union Elementary,Sacramento,823,6,2,0,0,0,56,1,39,1,72,8,4,23,19,12,21,30,N/A,95,25,23,41,9,2,2.4\r\n,Rivera Middle,El Rancho Unified,Los Angeles,823,6,0,0,0,0,98,0,1,0,68,16,1,13,24,12,N/A,26,29,97,24,35,31,7,3,2.31\r\n,Emerson (Ralph Waldo) Elementary,Garvey Elementary,Los Angeles,823,6,0,0,60,3,35,0,1,0,89,15,3,68,9,6,22,29,N/A,93,27,42,13,13,5,2.28\r\n,Fishburn Avenue Elementary,Los Angeles Unified,Los Angeles,823,6,0,0,0,0,100,0,0,0,100,4,2,39,28,9,21,22,N/A,61,33,34,18,8,7,2.22\r\n,Juniper Elementary,Fontana Unified,San Bernardino,823,6,8,0,1,1,86,0,5,0,100,3,0,42,15,14,24,24,N/A,90,28,38,21,10,3,2.22\r\n,Kellogg Polytechnic Elementary,Pomona Unified,Los Angeles,823,6,4,0,1,0,91,0,2,1,90,3,0,38,15,14,25,31,N/A,79,23,45,26,4,2,2.17\r\n,Oxnard Street Elementary,Los Angeles Unified,Los Angeles,823,6,2,1,2,0,91,0,4,0,100,9,0,32,23,16,19,16,N/A,81,31,37,22,8,2,2.13\r\n,Alondra Middle,Paramount Unified,Los Angeles,823,6,6,0,1,1,89,2,2,0,93,6,0,26,37,11,N/A,30,30,97,37,34,18,5,6,2.11\r\n,O. S. Hubbard Elementary,Alum Rock Union Elementary,Santa Clara,823,6,2,0,6,3,87,2,1,0,100,9,2,57,20,9,20,31,N/A,90,46,23,18,7,5,2.03\r\n,Vineland Elementary,Baldwin Park Unified,Los Angeles,823,6,1,0,6,2,90,0,1,0,94,5,1,44,19,14,17,26,N/A,75,44,38,14,5,0,1.8\r\n,McCloud Elementary,McCloud Union Elementary,Siskiyou,823,6,0,0,0,0,10,0,15,0,75,0,0,0,0,10,10,3,N/A,0,0,0,0,0,0,\r\nD,Golden Valley Charter,Mesa Union Elementary,Ventura,822,6,5,1,3,1,22,0,66,0,26,0,0,0,0,6,20,16,1,97,0,3,22,32,42,4.13\r\n,Claremont High,Claremont Unified,Los Angeles,822,8,7,1,10,2,35,0,42,3,29,0,0,2,10,9,N/A,N/A,32,93,3,12,22,27,36,3.8\r\n,Starr Elementary,Fresno Unified,Fresno,822,6,7,1,4,1,43,0,44,0,42,5,0,3,1,14,27,29,N/A,86,1,11,36,26,26,3.65\r\nD,Sonoma Charter,Sonoma Valley Unified,Sonoma,822,6,4,1,2,1,19,1,72,1,28,0,0,10,1,9,10,14,17,99,9,4,25,41,22,3.64\r\n,,San Mateo Union High,San Mateo,822,B,1,0,22,5,30,3,30,9,20,13,0,13,19,10,N/A,N/A,27,95,8,16,19,30,28,3.53\r\n,John F. Kennedy Elementary,Newark Unified,Alameda,822,6,6,0,14,8,32,3,34,2,25,3,0,19,8,16,27,32,N/A,96,4,13,26,40,17,3.53\r\n,Saugus High,William S. Hart Union High,Los Angeles,822,8,3,0,4,4,25,0,63,1,15,17,0,4,5,12,N/A,N/A,31,96,3,10,39,31,16,3.49\r\n,Oakmont High,Roseville Joint Union High,Placer,822,8,4,2,7,3,16,0,65,3,25,10,0,3,10,6,N/A,N/A,32,96,3,14,36,28,18,3.43\r\n,Menlo-Atherton High,Sequoia Union High,San Mateo,822,8,4,0,6,1,41,3,41,2,36,2,1,23,18,10,N/A,N/A,26,92,21,13,10,17,38,3.37\r\n,Torrance High,Torrance Unified,Los Angeles,822,8,4,0,21,12,32,1,26,2,32,8,0,9,13,7,N/A,N/A,33,74,6,16,30,34,14,3.34\r\n,Castillero Middle,San Jose Unified,Santa Clara,822,6,3,1,14,2,42,0,35,1,38,33,1,12,21,10,N/A,28,28,94,16,12,18,32,23,3.34\r\nY,Riverside Preparatory,Oro Grande Elementary,San Bernardino,822,6,10,1,1,0,46,1,37,4,55,0,0,4,9,4,25,25,26,99,7,16,44,23,10,3.13\r\n,,Mariposa County Unified,Mariposa,822,B,1,5,1,1,13,0,71,5,50,6,0,2,3,20,23,25,21,94,5,23,43,17,13,3.11\r\n,Gold Street Elementary,Yreka Union Elementary,Siskiyou,822,6,0,6,1,0,14,0,61,15,66,3,0,1,0,11,25,23,N/A,93,6,24,35,22,12,3.11\r\n,Joe Walker Middle,Westside Union Elementary,Los Angeles,822,6,13,1,3,2,34,0,44,1,40,15,0,3,6,12,N/A,N/A,29,79,8,21,36,24,11,3.09\r\n,College View Elementary,Ocean View,Orange,822,6,1,0,4,2,41,1,45,6,52,1,0,30,6,7,24,33,N/A,93,13,18,34,25,10,3.02\r\n,Lone Tree Elementary,Antioch Unified,Contra Costa,822,6,32,1,10,12,29,1,15,0,59,7,0,19,5,11,28,22,N/A,69,5,25,39,25,6,3.01\r\n,,Roberts Ferry Union Elementary,Stanislaus,822,B,1,1,0,0,28,2,67,0,45,1,0,14,0,6,5,2,N/A,86,6,29,35,18,12,3\r\n,,Curtis Creek Elementary,Tuolumne,822,B,1,3,1,0,16,0,78,0,53,15,0,4,0,16,24,25,20,96,4,27,44,13,12,3\r\n,Hidden Hills Elementary,Capistrano Unified,Orange,822,6,2,0,2,1,53,0,39,4,56,2,1,33,12,8,23,35,N/A,76,12,25,25,28,9,2.96\r\n,Washington Elementary,Riverside Unified,Riverside,822,6,5,0,2,1,61,0,29,0,61,13,0,16,8,11,26,30,N/A,96,17,21,28,17,16,2.96\r\n,Daniel Webster Elementary,Jefferson Elementary,San Mateo,822,6,2,0,13,50,27,1,3,4,59,3,0,45,19,6,23,32,N/A,78,12,20,34,32,2,2.93\r\n,John F. Kennedy Elementary,Jefferson Elementary,San Mateo,822,6,2,0,5,46,39,1,2,4,64,1,0,51,12,9,20,26,N/A,91,9,27,29,35,1,2.92\r\n,Crescent Heights Boulevard Elementary,Los Angeles Unified,Los Angeles,822,6,53,0,1,0,43,0,2,0,82,8,0,14,8,9,14,8,N/A,89,15,23,35,19,8,2.81\r\n,Brownell Middle,Gilroy Unified,Santa Clara,822,6,2,1,4,2,66,0,22,1,54,15,1,17,20,9,N/A,27,30,90,21,22,26,26,5,2.73\r\n,Temecula Elementary,Temecula Valley Unified,Riverside,822,6,6,2,4,7,55,1,21,3,59,0,0,26,8,17,22,29,N/A,97,18,27,33,19,2,2.6\r\n,Miguelito Elementary,Lompoc Unified,Santa Barbara,822,6,2,0,2,1,59,0,27,8,65,9,0,19,7,11,20,28,N/A,96,15,38,27,11,9,2.59\r\n,George Mayne Elementary,Santa Clara Unified,Santa Clara,822,6,1,1,21,3,63,0,9,1,73,3,3,49,16,13,26,28,N/A,96,19,40,20,15,7,2.51\r\n,Nile Garden Elementary,Manteca Unified,San Joaquin,822,6,1,2,4,1,55,0,36,1,71,2,5,24,15,17,27,22,24,95,28,28,23,15,6,2.44\r\n,Akira Yokomi Elementary,Fresno Unified,Fresno,822,6,11,1,7,0,73,0,7,0,100,2,2,24,15,6,27,28,N/A,84,26,25,34,8,7,2.43\r\n,Lankershim Elementary,Los Angeles Unified,Los Angeles,822,6,9,0,3,2,80,0,5,0,100,7,0,37,19,8,19,18,N/A,73,28,36,20,13,4,2.3\r\n,Lassalette,Hacienda la Puente Unified,Los Angeles,822,6,0,0,2,0,96,0,1,0,91,5,2,34,22,7,19,29,28,76,23,40,23,11,3,2.29\r\n,Beardsley Junior High,Beardsley Elementary,Kern,822,6,3,0,1,0,34,0,61,1,83,0,0,3,10,10,N/A,N/A,21,92,25,37,29,7,2,2.23\r\n,Helen L. Dollahan Elementary,Rialto Unified,San Bernardino,822,6,13,0,1,1,78,2,3,2,88,10,0,27,17,7,25,29,N/A,93,32,29,26,12,2,2.23\r\n,Muir K-8,Long Beach Unified,Los Angeles,822,6,13,0,5,13,62,5,1,0,82,11,1,25,28,9,29,31,34,99,22,52,13,11,1,2.16\r\n,Benjamin Banneker Special Education Cent,Los Angeles Unified,Los Angeles,822,C,25,0,1,0,73,0,2,0,82,0,0,62,2,100,6,9,10,67,34,39,17,10,0,2.02\r\n,Tibby Elementary,Compton Unified,Los Angeles,822,6,42,0,0,0,55,0,0,1,86,6,0,22,22,16,21,19,N/A,91,41,30,21,5,2,1.96\r\n,Fifteenth Street Elementary,Los Angeles Unified,Los Angeles,822,6,9,1,3,0,84,0,2,0,100,3,0,28,24,12,18,19,N/A,94,48,26,19,5,2,1.87\r\n,\"Clinton, William Jefferson\",Compton Unified,Los Angeles,822,6,8,0,0,0,91,1,0,0,86,6,0,53,23,4,27,33,N/A,90,54,26,13,5,2,1.76\r\n,Pacific Union Elementary,Pacific Union Elementary,Fresno,822,6,2,0,5,0,82,0,11,0,89,0,0,58,6,10,14,3,N/A,100,87,12,0,1,0,1.14\r\n,Mt. Carmel High,Poway Unified,San Diego,821,8,5,0,16,12,13,1,49,4,17,13,0,6,12,11,N/A,N/A,36,92,4,8,19,38,32,3.87\r\n,Ladera Elementary,Conejo Valley Unified,Ventura,821,6,1,1,9,0,31,0,53,3,26,14,0,13,10,11,21,32,N/A,46,7,10,21,34,28,3.65\r\n,Mendocino K-8,Mendocino Unified,Mendocino,821,6,2,2,2,0,9,0,81,2,37,0,0,1,2,11,25,23,22,96,2,6,42,28,23,3.64\r\nD,Livermore Valley Charter Preparatory Hig,SBE - Livermore Valley Charter,Alameda,821,8,4,0,8,2,25,0,48,12,11,0,0,5,8,12,N/A,N/A,21,93,9,12,18,39,23,3.54\r\n,Ridgewood Elementary,Cutten Elementary,Humboldt,821,6,3,4,4,0,6,0,62,18,44,0,0,1,4,10,1,N/A,N/A,100,5,11,30,32,22,3.53\r\n,Santa Margarita Elementary,Atascadero Unified,San Luis Obispo,821,6,0,2,0,1,19,0,72,5,26,7,0,3,0,8,28,27,N/A,99,4,15,30,36,16,3.44\r\n,Alhambra Senior High,Martinez Unified,Contra Costa,821,8,3,0,3,2,23,0,57,11,18,10,0,5,8,12,N/A,N/A,29,95,5,13,34,31,17,3.41\r\n,Erma B. Reese Elementary,Lodi Unified,San Joaquin,821,6,2,2,2,1,23,0,67,0,42,17,0,6,2,10,25,28,N/A,88,5,26,33,20,17,3.2\r\n,Charles Hoffman Elementary,Rim of the World Unified,San Bernardino,821,6,2,0,0,0,27,0,65,4,55,2,0,7,1,17,21,27,N/A,95,7,18,46,17,13,3.11\r\n,Del Obispo Elementary,Capistrano Unified,Orange,821,6,1,1,1,1,50,0,41,6,51,0,0,26,7,18,22,26,N/A,89,13,16,36,20,16,3.1\r\n,,Lakeside Union Elementary,San Diego,821,B,2,2,1,1,24,1,67,2,38,6,0,7,4,16,21,28,25,97,6,23,37,22,11,3.09\r\n,Jean Callison Elementary,Vacaville Unified,Solano,821,6,7,0,1,3,27,1,53,5,38,10,1,8,3,10,28,28,N/A,98,5,20,42,26,7,3.08\r\n,Lange (Dorothea) Elementary,Lucia Mar Unified,San Luis Obispo,821,6,0,0,1,0,54,1,41,2,57,7,0,21,4,13,26,30,N/A,94,13,21,28,27,10,3\r\n,De Anza Magnet,El Centro Elementary,Imperial,821,6,1,0,1,0,85,0,11,1,61,8,6,29,12,6,28,26,N/A,79,7,28,35,17,13,3\r\n,Sequoia Elementary,Sacramento City Unified,Sacramento,821,6,10,1,7,2,31,1,39,9,55,15,0,10,6,10,24,33,N/A,80,10,22,41,17,10,2.97\r\n,Woodside K-8,San Juan Unified,Sacramento,821,6,4,1,1,2,20,1,71,0,54,6,0,13,5,10,30,33,25,84,7,25,41,19,8,2.96\r\n,Sweetwater Springs Elementary,La Mesa-Spring Valley,San Diego,821,6,15,1,3,5,40,0,31,4,57,9,0,20,11,11,31,27,N/A,92,9,27,34,24,6,2.89\r\n,North Broadway Elementary,Escondido Union,San Diego,821,6,7,1,5,4,49,0,34,0,55,12,1,25,4,17,19,28,N/A,82,13,24,36,19,9,2.87\r\n,Ohlone Elementary,West Contra Costa Unified,Contra Costa,821,6,23,0,15,25,23,0,12,0,40,9,0,21,13,13,22,25,N/A,87,5,35,34,22,4,2.85\r\n,La Veta Elementary,Orange Unified,Orange,821,6,2,1,7,3,60,1,24,1,51,12,0,32,5,12,29,29,N/A,95,20,24,26,18,13,2.81\r\n,West Cottonwood Junior High,Cottonwood Union Elementary,Shasta,821,6,1,6,1,0,10,0,76,6,54,0,2,0,0,8,N/A,25,25,95,6,40,33,17,5,2.76\r\n,Sylvan Elementary,Sylvan Union Elementary,Stanislaus,821,6,8,0,3,1,50,1,29,6,75,1,0,15,4,16,28,27,N/A,97,7,34,44,11,3,2.69\r\n,Shasta Lake,Gateway Unified,Shasta,821,6,1,9,3,0,15,1,67,4,78,4,0,3,2,10,21,28,25,96,11,36,38,10,5,2.64\r\n,,Garden Grove Unified,Orange,821,B,1,0,33,1,53,1,11,0,64,6,0,41,31,10,25,30,29,40,22,31,16,26,6,2.63\r\n,Aptos Middle,San Francisco Unified,San Francisco,821,6,8,1,31,7,33,1,13,1,60,44,1,17,32,12,N/A,30,26,66,10,52,14,17,7,2.59\r\n,Lois E. Borchardt Elementary,Lodi Unified,San Joaquin,821,6,2,0,14,1,52,1,29,0,73,13,1,35,11,12,26,32,N/A,86,19,34,29,11,6,2.53\r\n,Plumas Avenue Elementary,Thermalito Union Elementary,Butte,821,6,2,4,27,1,14,0,45,4,81,1,0,29,1,6,24,30,N/A,88,15,38,34,9,4,2.5\r\n,Samuel Vaughn Elementary,Ceres Unified,Stanislaus,821,6,3,1,8,0,69,1,16,2,74,4,2,41,11,9,23,31,N/A,100,17,41,21,16,4,2.49\r\n,Alamitos Intermediate,Garden Grove Unified,Orange,821,6,1,0,29,1,57,1,10,0,67,5,0,37,37,10,N/A,N/A,29,80,29,32,13,23,3,2.39\r\n,Lakeside Middle,Val Verde Unified,Riverside,821,6,12,0,2,1,77,0,5,1,82,18,0,18,29,7,N/A,32,33,88,26,31,26,14,4,2.39\r\n,Railroad Canyon Elementary,Lake Elsinore Unified,Riverside,821,6,6,0,0,2,79,0,12,0,80,5,0,40,15,16,23,27,N/A,99,27,32,24,13,4,2.36\r\n,George V. LeyVa Intermediate,Evergreen Elementary,Santa Clara,821,6,4,0,27,11,53,2,2,0,53,3,3,23,33,12,N/A,N/A,28,100,27,38,20,12,3,2.27\r\n,Sinclear Elementary,Ceres Unified,Stanislaus,821,6,1,0,6,0,83,0,10,0,83,3,5,52,11,8,23,33,N/A,99,26,37,23,11,3,2.27\r\n,Ronald E. McNair Elementary,Compton Unified,Los Angeles,821,6,50,0,0,0,49,0,1,1,88,5,0,25,11,5,29,31,N/A,94,36,32,20,10,2,2.1\r\nD,Aspire Antonio Maria Lugo Academy,Los Angeles Unified,Los Angeles,821,6,1,0,0,0,96,0,0,0,91,0,0,47,27,7,23,30,N/A,87,27,50,14,8,0,2.03\r\n,La Cumbre Junior High,Santa Barbara Unified,Santa Barbara,821,6,1,1,1,0,85,0,11,1,73,6,0,63,4,18,N/A,N/A,28,90,47,25,16,8,5,1.99\r\n,Hobart Boulevard Elementary,Los Angeles Unified,Los Angeles,821,6,2,0,13,2,83,0,0,0,100,17,0,51,29,15,21,29,N/A,80,52,24,12,11,2,1.88\r\n,Ninety-Sixth Street Elementary,Los Angeles Unified,Los Angeles,821,6,22,0,0,0,78,0,0,0,93,5,0,37,19,11,19,18,N/A,88,49,31,14,4,1,1.78\r\n,,Pacific Union Elementary,Fresno,821,B,2,0,5,0,82,0,11,0,90,0,0,57,6,10,14,3,N/A,100,87,12,0,1,0,1.14\r\n,Linton T. Simmons Elementary,Garden Grove Unified,Orange,821,6,1,0,10,2,84,1,2,0,82,0,0,64,16,7,27,32,N/A,0,100,0,0,0,0,1\r\n,Dunham Elementary,Dunham Elementary,Sonoma,820,6,0,0,0,0,5,0,95,0,16,0,0,11,0,16,N/A,20,N/A,100,5,5,32,21,37,3.79\r\n,Santa Monica High,Santa Monica-Malibu Unified,Los Angeles,820,8,9,0,8,1,37,0,41,5,30,0,0,6,15,9,N/A,N/A,28,67,7,10,21,32,31,3.69\r\n,Verdugo Academy,Glendale Unified,Los Angeles,820,8,1,0,10,2,20,1,65,0,15,12,0,10,25,2,9,N/A,N/A,84,2,14,17,49,17,3.65\r\n,Novato High,Novato Unified,Marin,820,8,5,0,4,1,28,0,55,6,28,12,0,7,16,7,N/A,N/A,28,98,8,14,20,31,26,3.53\r\n,Kings Beach Elementary,Tahoe-Truckee Joint Unified,Placer,820,6,0,1,1,0,49,0,49,0,47,0,0,40,3,5,24,N/A,N/A,89,12,19,10,27,32,3.48\r\n,Academy of the Redwoods,Fortuna Union High,Humboldt,820,8,0,1,3,1,10,0,67,17,23,0,0,1,1,2,N/A,N/A,22,86,3,19,31,33,14,3.36\r\n,Moorpark High,Moorpark Unified,Ventura,820,8,1,1,5,2,35,0,54,1,24,9,0,9,16,13,N/A,N/A,31,97,12,15,23,28,23,3.34\r\n,Beattie Middle,Redlands Unified,San Bernardino,820,6,7,1,8,3,43,0,34,3,48,17,0,5,8,9,N/A,29,31,96,8,14,35,21,21,3.33\r\n,Carl B. Munck Elementary,Oakland Unified,Alameda,820,6,62,3,5,0,19,1,5,4,68,58,0,9,2,12,26,27,N/A,77,6,14,41,24,16,3.31\r\n,Fort Irwin Middle,Silver Valley Unified,San Bernardino,820,6,16,2,2,2,27,4,40,7,36,1,0,4,1,6,N/A,24,28,98,0,23,40,22,15,3.28\r\n,Cerra Vista Elementary,Hollister,San Benito,820,6,0,0,3,2,46,0,38,2,44,11,7,13,5,12,31,32,N/A,98,4,21,38,27,10,3.18\r\n,Piedmont Hills High,East Side Union High,Santa Clara,820,8,4,1,52,9,21,1,10,1,28,0,0,8,36,8,N/A,N/A,32,94,8,21,32,26,13,3.14\r\n,Julia Morgan Elementary,Lodi Unified,San Joaquin,820,6,14,0,15,14,32,1,22,0,52,12,1,17,5,13,29,30,N/A,88,7,20,36,28,10,3.13\r\n,,Yreka Union Elementary,Siskiyou,820,B,1,7,2,0,16,0,61,11,62,8,0,4,1,10,23,24,N/A,92,7,23,33,24,12,3.11\r\n,Valley View Elementary,Westside Union Elementary,Los Angeles,820,6,10,0,2,1,35,0,48,1,40,6,0,8,1,13,30,26,N/A,91,6,20,42,20,12,3.1\r\n,,South San Francisco Unified,San Mateo,820,B,3,0,10,29,45,3,9,0,45,10,1,26,15,13,22,26,28,99,9,22,33,26,10,3.07\r\n,John O. Tynes Elementary,Placentia-Yorba Linda Unified,Orange,820,6,1,0,10,5,66,1,13,1,65,11,0,35,15,13,22,34,N/A,65,17,24,15,25,19,3.05\r\n,Juarez (Benito) Elementary,Anaheim City,Orange,820,6,0,0,6,4,77,1,10,1,69,23,0,29,29,9,29,30,N/A,23,8,28,30,24,10,3.01\r\n,,Colfax Elementary,Placer,820,B,0,2,0,0,10,0,81,6,48,7,0,0,0,15,13,19,4,98,4,24,48,15,9,3\r\n,Loma Vista Elementary,Tustin Unified,Orange,820,6,1,0,7,1,61,0,26,3,47,5,0,29,5,13,25,29,N/A,92,14,20,28,26,11,2.99\r\n,Evergreen Elementary,Yreka Union Elementary,Siskiyou,820,6,0,4,1,0,12,0,70,12,69,0,0,3,0,12,22,N/A,N/A,95,6,27,38,23,6,2.96\r\n,George Lincoln Mosher,Lodi Unified,San Joaquin,820,6,13,1,45,8,23,3,5,0,73,16,1,36,10,11,22,26,N/A,91,10,24,34,24,8,2.96\r\n,Franklin Delano Roosevelt Elementary,Jefferson Elementary,San Mateo,820,6,4,0,10,41,24,2,10,8,54,4,0,29,9,16,18,26,N/A,93,6,30,38,22,5,2.89\r\n,Grant Elementary,San Lorenzo Unified,Alameda,820,6,8,1,11,8,56,1,13,1,52,5,0,34,15,10,27,29,N/A,90,14,27,28,26,5,2.81\r\n,Franklin Elementary,Merced City Elementary,Merced,820,6,6,1,19,2,60,1,11,2,84,1,2,42,0,6,24,N/A,N/A,96,17,19,41,16,7,2.78\r\n,Mammoth Elementary,Mammoth Unified,Mono,820,6,0,1,1,0,56,0,41,1,59,11,0,47,4,6,21,25,N/A,98,23,23,19,24,11,2.77\r\n,George K. Porter Middle,Los Angeles Unified,Los Angeles,820,6,3,0,10,6,73,0,8,0,71,34,0,9,26,10,N/A,34,32,75,19,25,26,21,9,2.77\r\n,Wilton Place Elementary,Los Angeles Unified,Los Angeles,820,6,5,0,40,1,53,0,1,0,72,17,0,57,18,10,20,24,N/A,89,23,24,16,30,7,2.73\r\n,Brentwood Elementary,Brentwood Union Elementary,Contra Costa,820,6,5,1,2,4,35,2,47,2,39,3,1,22,0,17,23,30,N/A,92,13,26,39,18,4,2.72\r\n,North Shore Elementary,Bear Valley Unified,San Bernardino,820,6,1,1,0,0,41,1,52,3,71,2,0,20,5,11,30,25,N/A,87,20,25,29,16,10,2.71\r\n,Roosevelt Elementary,Taft City,Kern,820,6,0,1,1,0,43,1,52,1,73,0,3,17,13,14,N/A,28,N/A,73,12,26,45,16,0,2.67\r\n,Andros Karperos,Yuba City Unified,Sutter,820,6,2,1,37,1,35,0,21,3,76,6,12,24,29,9,22,27,26,94,17,33,24,20,6,2.65\r\n,Salida Middle School - Vella Campus,Salida Union Elementary,Stanislaus,820,6,5,0,3,2,57,1,29,1,56,7,2,19,13,8,N/A,32,28,94,13,35,36,12,4,2.6\r\n,Cedarlane Academy,Hacienda la Puente Unified,Los Angeles,820,6,1,0,11,2,79,0,5,0,76,13,0,18,15,9,20,30,30,61,14,41,27,14,3,2.52\r\n,,Rio Dell Elementary,Humboldt,820,B,0,7,1,1,18,0,73,0,69,12,0,12,1,20,17,27,N/A,100,12,45,29,14,1,2.48\r\n,Los Amigos Elementary,Cucamonga Elementary,San Bernardino,820,6,7,1,3,1,81,0,7,0,87,6,0,40,7,17,21,30,N/A,94,15,39,34,10,2,2.46\r\n,Morningside,Delano Union Elementary,Kern,820,6,0,0,1,28,68,0,3,1,54,11,5,30,22,6,20,30,N/A,98,22,36,32,10,0,2.3\r\n,John Dolland Elementary,Norwalk-La Mirada Unified,Los Angeles,820,6,2,0,1,2,90,1,2,0,85,11,8,38,14,12,26,30,N/A,86,29,38,20,8,4,2.2\r\n,Abraham Lincoln Elementary,Desert Sands Unified,Riverside,820,6,3,0,1,1,79,0,15,0,90,2,0,45,17,11,27,32,N/A,97,32,34,23,8,3,2.15\r\n,Leigh High,Campbell Union High,Santa Clara,819,8,1,0,11,1,22,0,57,6,2,3,0,3,10,7,N/A,N/A,29,92,3,10,24,37,26,3.74\r\n,Learning Post High (Alternative),William S. Hart Union High,Los Angeles,819,8,1,1,0,3,13,0,80,3,5,16,0,0,1,6,,,,87,0,10,39,30,20,3.61\r\n,De Laveaga Elementary,Santa Cruz City Elementary,Santa Cruz,819,6,0,1,2,1,37,0,56,2,38,14,1,21,5,10,22,30,N/A,91,7,15,22,27,29,3.57\r\n,Springville Elementary,Springville Union Elementary,Tulare,819,6,0,2,2,1,17,0,77,0,38,0,0,0,0,6,20,28,30,96,1,17,43,19,20,3.38\r\n,San Diego SCPA,San Diego Unified,San Diego,819,8,17,0,3,22,37,1,16,4,53,39,0,5,21,10,N/A,30,28,90,5,16,31,36,13,3.37\r\nD,Valley Life Charter,Tulare County Office of Educat,Tulare,819,6,2,2,0,1,45,1,48,0,45,0,0,0,0,5,,,,92,0,20,38,30,12,3.35\r\n,Monte Vista Elementary,Cotati-Rohnert Park Unified,Sonoma,819,6,1,1,5,2,32,0,52,7,36,0,0,16,7,11,28,30,N/A,97,6,14,35,32,14,3.34\r\n,James E. Potter Intermediate,Fallbrook Union Elementary,San Diego,819,6,1,1,1,1,62,0,33,0,66,20,8,31,15,12,N/A,9,29,82,13,16,21,25,25,3.33\r\n,Valhalla High,Grossmont Union High,San Diego,819,8,5,1,2,3,21,0,68,0,24,37,0,13,15,10,N/A,N/A,32,89,8,19,27,24,21,3.31\r\n,Murrieta Mesa High,Murrieta Valley Unified,Riverside,819,8,8,1,4,3,34,1,45,4,28,3,0,2,4,10,N/A,N/A,30,95,4,17,38,27,14,3.3\r\n,Alvarado Middle,New Haven Unified,Alameda,819,6,10,0,29,28,16,5,7,6,37,20,0,10,39,9,N/A,37,33,97,7,18,27,33,14,3.3\r\n,Frontier High,Kern Union High,Kern,819,8,2,1,2,2,32,0,56,1,25,21,0,1,8,6,N/A,N/A,27,95,5,22,33,25,15,3.23\r\n,Robert J. Fite Elementary,Elk Grove Unified,Sacramento,819,6,10,1,26,6,23,2,25,8,56,7,0,15,16,8,22,26,N/A,95,4,22,34,26,13,3.21\r\n,,Grenada Elementary,Siskiyou,819,B,1,3,0,0,7,0,88,0,67,13,0,0,0,12,12,24,N/A,99,0,21,48,20,11,3.21\r\n,,Lucia Mar Unified,San Luis Obispo,819,B,1,1,2,1,40,0,54,2,49,11,1,15,7,12,24,28,26,85,10,17,30,29,14,3.19\r\n,Pinewood Elementary,Pollock Pines Elementary,El Dorado,819,6,1,2,1,1,13,0,81,0,50,0,0,3,0,19,22,24,N/A,94,4,20,41,20,14,3.19\r\n,Las Palmas Elementary,Capistrano Unified,Orange,819,6,0,0,0,0,58,0,36,5,49,2,0,38,9,3,24,32,N/A,92,21,14,18,23,23,3.13\r\n,Palm Avenue Elementary,San Bernardino City Unified,San Bernardino,819,6,18,1,2,1,51,0,26,1,97,23,0,7,7,6,29,34,N/A,82,9,22,37,17,15,3.06\r\n,Harvest Elementary,Central Unified,Fresno,819,6,11,1,15,1,50,0,20,3,69,5,0,10,13,8,27,33,N/A,93,9,23,37,21,11,3.03\r\n,Colfax Elementary,Colfax Elementary,Placer,819,6,0,2,0,0,10,0,81,6,48,7,0,0,0,14,20,22,27,98,4,24,48,15,9,3\r\n,Pliny Fisk Haskell Middle,ABC Unified,Los Angeles,819,6,16,1,11,17,42,1,10,1,56,9,4,12,13,13,N/A,N/A,26,90,11,21,33,31,5,2.98\r\n,Clifford Elementary,Redwood City Elementary,San Mateo,819,6,2,0,5,2,48,2,38,1,39,6,1,23,15,17,28,26,23,99,18,20,24,23,14,2.96\r\n,Ernest Lawrence Middle,Los Angeles Unified,Los Angeles,819,6,7,0,17,6,52,0,18,0,65,31,0,10,23,12,N/A,29,30,85,17,21,30,15,18,2.95\r\n,Coyle Avenue Elementary,San Juan Unified,Sacramento,819,6,11,2,1,2,27,0,56,0,82,2,0,16,3,16,21,32,N/A,48,9,23,38,22,7,2.94\r\n,Marston Middle,San Diego Unified,San Diego,819,6,4,1,6,1,55,1,29,4,67,34,0,17,26,17,N/A,29,30,85,15,24,27,21,13,2.92\r\n,Ladd Lane Elementary,Hollister,San Benito,819,6,1,0,2,1,60,0,30,2,51,10,11,25,5,10,29,34,N/A,93,12,27,29,21,10,2.9\r\nD,Futures High,Twin Rivers Unified,Sacramento,819,8,0,0,4,0,0,0,96,0,77,0,3,38,54,1,N/A,N/A,23,99,0,42,33,17,7,2.9\r\n,Macy Intermediate,Montebello Unified,Los Angeles,819,6,0,0,16,1,79,0,3,0,62,17,0,9,25,10,N/A,30,27,81,12,29,29,22,7,2.84\r\n,Glenmeade Elementary,Chino Valley Unified,San Bernardino,819,6,3,0,5,3,64,0,22,3,52,5,0,18,7,20,28,29,N/A,85,10,33,28,21,8,2.83\r\n,Orange Grove Middle,Hacienda la Puente Unified,Los Angeles,819,6,1,0,4,1,89,0,4,1,67,18,0,10,15,10,N/A,28,31,66,13,32,28,21,6,2.76\r\n,Juniper,Redding Elementary,Shasta,819,6,2,7,1,1,21,1,60,7,86,2,0,2,1,17,19,23,N/A,65,8,30,46,11,5,2.74\r\n,Rios Elementary,Cajon Valley Union,San Diego,819,6,2,0,1,1,38,0,50,1,56,11,0,23,8,11,22,33,N/A,95,6,40,34,16,4,2.72\r\n,Linden Elementary,Linden Unified,San Joaquin,819,6,0,1,1,0,61,0,36,0,66,0,8,51,0,10,21,25,N/A,71,21,25,25,20,9,2.72\r\n,Terra Cotta Middle,Lake Elsinore Unified,Riverside,819,6,6,1,2,2,64,0,25,0,68,18,0,8,29,9,N/A,34,31,98,15,30,31,18,6,2.69\r\n,,Coast Unified,San Luis Obispo,819,B,1,0,1,0,52,1,42,1,56,0,0,36,13,12,18,23,16,96,27,24,17,19,12,2.66\r\n,Orange Grove Elementary,Whittier City Elementary,Los Angeles,819,6,1,0,0,0,94,0,4,0,66,0,0,20,5,17,28,26,N/A,92,17,28,39,10,6,2.59\r\n,Wildomar Elementary,Lake Elsinore Unified,Riverside,819,6,4,0,1,0,63,0,32,0,70,8,0,30,8,13,20,29,N/A,100,19,33,29,15,4,2.53\r\n,Challenger School of Sports and Fitness,Victor Elementary,San Bernardino,819,6,22,0,2,0,59,0,15,1,76,2,0,24,4,4,34,33,N/A,92,18,36,30,12,4,2.48\r\n,G. W. Hellyer Elementary,Franklin-McKinley Elementary,Santa Clara,819,6,2,0,32,2,61,1,1,1,80,18,2,46,17,10,24,30,N/A,96,20,36,26,13,5,2.48\r\n,Avondale Elementary,La Mesa-Spring Valley,San Diego,819,6,13,0,1,4,65,0,10,7,79,8,0,33,13,7,31,33,N/A,92,22,30,31,12,5,2.47\r\n,Guadalupe Elementary,San Francisco Unified,San Francisco,819,6,3,1,27,13,47,2,3,2,77,6,0,59,14,11,20,31,N/A,78,24,33,22,20,2,2.44\r\n,Trona Elementary,Trona Joint Unified,San Bernardino,819,6,4,2,0,0,29,1,63,2,73,0,0,0,0,8,43,19,N/A,96,15,40,38,7,0,2.38\r\n,Andres Duarte Elementary,Duarte Unified,Los Angeles,819,6,7,1,0,5,82,0,3,1,80,5,2,39,8,14,20,29,N/A,98,24,34,27,11,4,2.37\r\n,El Camino Elementary,Goleta Union Elementary,Santa Barbara,819,6,2,0,2,2,80,0,13,0,77,12,0,44,27,17,19,23,N/A,89,34,25,23,11,8,2.34\r\n,,Atwater Elementary,Merced,819,B,4,1,4,1,67,0,22,0,83,8,3,24,22,10,23,30,28,89,32,26,28,9,6,2.32\r\n,Triple Crown Elementary,Val Verde Unified,Riverside,819,6,7,1,0,1,84,0,4,1,85,15,0,36,14,12,26,25,N/A,91,28,32,26,11,3,2.31\r\n,Mid City Magnet,Los Angeles Unified,Los Angeles,819,6,29,1,1,0,66,0,2,0,100,14,0,22,24,4,20,24,20,51,34,33,19,9,5,2.18\r\n,Butte Valley Middle,Butte Valley Unified,Siskiyou,819,6,0,6,0,0,39,0,53,2,41,18,2,29,0,10,N/A,N/A,13,53,19,56,22,0,4,2.15\r\n,Montalvin Manor Elementary,West Contra Costa Unified,Contra Costa,819,6,17,0,10,2,67,1,2,0,99,7,0,45,23,11,22,29,N/A,87,26,54,8,11,0,2.05\r\n,Schendel Elementary,Delhi Unified,Merced,819,6,1,0,3,0,90,0,6,0,86,0,2,43,28,10,21,24,20,84,34,46,15,4,0,1.9\r\n,Shiloh Elementary,Shiloh Elementary,Stanislaus,819,6,0,0,0,0,74,0,26,0,90,0,0,52,13,6,15,N/A,N/A,100,55,23,10,6,6,1.87\r\n,Pacific Boulevard,Los Angeles Unified,Los Angeles,819,6,0,0,0,0,99,0,1,0,100,7,0,45,28,32,16,14,N/A,43,45,36,11,6,2,1.86\r\n,Baker Elementary,San Diego Unified,San Diego,819,6,7,0,2,0,89,0,1,1,100,25,0,61,19,14,22,32,N/A,90,43,36,14,4,2,1.85\r\n,Manuel L. Real Elementary,Val Verde Unified,Riverside,819,6,3,0,1,0,91,0,3,0,94,8,0,58,10,14,26,28,N/A,94,51,30,12,5,2,1.78\r\n,Franklin Elementary,Santa Ana Unified,Orange,819,6,0,0,0,0,99,1,0,0,100,11,0,67,24,7,26,29,N/A,89,58,27,13,2,1,1.6\r\nD,California Montessori Project - Capitol,Sacramento City Unified,Sacramento,818,6,10,1,4,2,27,1,49,6,20,0,0,0,6,7,20,15,19,100,0,1,22,38,39,4.14\r\nD,California Montessori Project-San Juan C,San Juan Unified,Sacramento,818,6,4,1,6,2,14,1,68,4,23,0,0,2,3,11,18,25,21,100,1,5,32,34,29,3.85\r\n,Bear River High,Nevada Joint Union High,Nevada,818,8,1,1,1,1,7,0,87,3,9,5,0,0,0,4,N/A,N/A,27,96,1,12,34,32,22,3.62\r\n,,Mendocino Unified,Mendocino,818,B,1,2,3,0,9,0,80,2,33,2,0,1,1,12,20,23,19,92,3,7,43,25,22,3.57\r\n,San Gabriel Elementary,Atascadero Unified,San Luis Obispo,818,6,2,1,1,3,16,1,77,0,31,4,0,5,2,6,28,31,N/A,100,2,12,35,31,19,3.53\r\n,Analy High,West Sonoma County Union High,Sonoma,818,8,2,1,2,1,14,0,75,4,16,14,1,2,4,12,N/A,N/A,29,100,6,12,29,31,21,3.49\r\nD,Antioch Charter Academy,Antioch Unified,Contra Costa,818,6,9,0,5,3,18,0,59,0,19,4,0,3,1,3,,,,88,0,13,45,21,20,3.49\r\n,,Tahoe-Truckee Joint Unified,Placer,818,B,1,1,0,0,35,0,61,1,40,9,0,20,12,11,23,28,23,90,11,17,18,30,24,3.4\r\nY,Charter Alternative Program (CAP),El Dorado County Office of Edu,El Dorado,818,6,0,1,0,0,15,1,78,5,30,1,0,0,0,12,22,13,N/A,95,1,18,40,25,17,3.39\r\n,Templeton Home,Templeton Unified,San Luis Obispo,818,6,2,5,2,3,12,2,74,2,9,3,0,2,0,3,,,,97,2,11,48,27,13,3.38\r\n,Grenada Elementary,Grenada Elementary,Siskiyou,818,6,1,3,0,0,7,0,88,0,67,14,0,0,0,11,12,24,N/A,98,0,22,48,19,12,3.21\r\n,Foothill Elementary,Sierra Unified,Fresno,818,6,2,19,0,0,11,0,67,0,52,6,0,1,0,20,24,30,N/A,95,2,23,43,18,14,3.19\r\n,,Ventura Unified,Ventura,818,B,2,1,3,1,47,0,44,3,49,18,0,15,7,9,23,27,29,99,14,16,29,24,18,3.16\r\n,Jackson Street Elementary,Yreka Union Elementary,Siskiyou,818,6,1,8,2,0,18,0,60,9,58,12,0,5,2,6,N/A,26,N/A,91,8,21,31,26,13,3.16\r\n,,Bass Lake Joint Union Elementa,Madera,818,B,1,4,2,0,14,0,76,2,56,8,0,6,2,12,28,31,N/A,96,7,19,39,23,12,3.13\r\n,West Mall Alternative,Atascadero Unified,San Luis Obispo,818,8,7,0,2,0,7,0,78,5,24,5,0,0,2,15,18,N/A,4,96,9,17,40,23,11,3.09\r\n,,Oro Grande Elementary,San Bernardino,818,B,9,1,1,0,47,1,36,4,57,0,0,5,9,4,14,18,22,99,9,16,43,22,10,3.09\r\nY,Nestor Language Academy Charter,South Bay Union Elementary,San Diego,818,6,2,0,0,1,91,0,4,0,72,6,0,52,15,6,25,30,26,97,11,22,31,20,17,3.09\r\n,Boone Elementary,San Diego Unified,San Diego,818,6,15,0,2,29,40,2,5,7,100,32,0,41,6,9,23,32,N/A,94,6,26,34,27,8,3.06\r\n,Palm Desert High,Desert Sands Unified,Riverside,818,8,3,1,4,2,38,0,50,1,48,22,0,5,20,9,N/A,N/A,28,95,12,22,31,21,14,3.04\r\n,West Wind Elementary,Lancaster Elementary,Los Angeles,818,6,21,0,4,4,38,0,31,1,54,7,1,12,2,9,31,31,N/A,100,9,21,38,23,8,3.01\r\n,William McKinley Elementary,Corona-Norco Unified,Riverside,818,6,11,0,8,4,45,1,30,0,51,2,0,13,9,12,30,31,N/A,97,11,22,36,21,11,2.99\r\n,Beresford Elementary,San Mateo-Foster City,San Mateo,818,6,3,0,9,4,51,1,28,4,50,1,0,46,2,11,26,31,N/A,94,23,13,21,26,16,2.98\r\n,Westwood Elementary,Santa Clara Unified,Santa Clara,818,6,4,1,11,4,39,0,34,6,47,5,1,29,8,17,27,30,N/A,91,11,28,34,19,8,2.86\r\n,Black Oak Elementary,Twain Harte-Long Barn Union El,Tuolumne,818,6,1,0,0,0,5,0,92,1,55,0,0,1,0,16,24,32,N/A,97,0,40,36,23,1,2.86\r\n,Sequoia Elementary,San Diego Unified,San Diego,818,6,5,0,12,3,47,1,20,12,63,25,0,25,15,12,25,28,N/A,88,10,32,31,14,13,2.86\r\n,Big Bear Middle,Bear Valley Unified,San Bernardino,818,6,1,1,0,0,30,0,61,3,64,10,0,13,8,11,N/A,N/A,27,91,13,25,37,18,7,2.82\r\n,Kearny Digital Media & Design,San Diego Unified,San Diego,818,8,18,0,11,5,44,1,13,9,71,25,0,11,26,9,N/A,N/A,25,83,16,29,31,16,9,2.74\r\n,E. M. Grimmer Elementary,Fremont Unified,Alameda,818,6,4,0,15,8,56,1,13,3,61,1,4,49,13,19,23,22,N/A,100,17,30,26,19,8,2.71\r\n,Cadman Elementary,San Diego Unified,San Diego,818,6,3,0,0,2,64,1,26,3,73,25,0,42,7,24,23,18,N/A,83,10,38,33,9,10,2.71\r\n,Leland Street Elementary,Los Angeles Unified,Los Angeles,818,6,10,1,2,1,65,3,18,0,72,6,0,12,8,17,17,15,N/A,79,16,26,36,18,4,2.67\r\n,Buena Vista Elementary,Panama-Buena Vista Union,Kern,818,6,7,1,12,3,46,1,29,0,45,5,0,14,12,10,31,31,N/A,39,9,45,22,23,2,2.64\r\n,Old River Elementary,Downey Unified,Los Angeles,818,6,3,0,2,1,87,0,7,0,77,0,0,25,13,15,N/A,30,N/A,100,15,35,29,15,6,2.64\r\n,Megan Cope Elementary,San Jacinto Unified,Riverside,818,6,9,1,3,1,64,1,19,4,68,4,0,32,5,9,28,31,N/A,95,14,33,35,10,7,2.63\r\n,Merle L. Fuller Elementary,Chowchilla Elementary,Madera,818,6,1,0,2,0,63,0,33,0,89,0,5,40,0,3,18,N/A,N/A,89,20,28,30,13,9,2.62\r\n,Emilie J. Ross Middle,Hughson Unified,Stanislaus,818,6,0,1,0,0,51,0,45,1,54,11,7,16,22,7,N/A,27,24,94,23,27,28,14,8,2.58\r\n,,Shoreline Unified,Marin,818,B,1,1,1,0,49,1,47,0,52,0,1,35,11,19,19,20,16,79,31,29,8,22,10,2.51\r\n,Cimarron Elementary,Palmdale Elementary,Los Angeles,818,6,12,1,0,2,75,0,8,1,87,7,2,24,19,10,27,31,N/A,94,26,32,31,9,2,2.3\r\n,Madison Elementary,Riverside Unified,Riverside,818,6,8,0,0,1,76,1,13,0,85,8,0,36,10,14,27,28,N/A,98,29,32,25,10,4,2.28\r\n,Mitchell Intermediate,Atwater Elementary,Merced,818,6,4,1,5,1,64,0,25,0,78,15,2,9,30,9,N/A,N/A,29,84,35,24,26,9,5,2.24\r\n,,Palo Verde Union Elementary,Tulare,818,B,1,1,1,0,80,0,17,0,88,0,20,38,22,2,22,29,N/A,73,33,33,20,9,5,2.2\r\n,Palo Verde Elementary,Palo Verde Union Elementary,Tulare,818,6,1,1,1,0,80,0,17,0,88,0,20,38,22,2,22,29,N/A,73,33,33,20,9,5,2.2\r\n,Dyer Street Elementary,Los Angeles Unified,Los Angeles,818,6,0,0,1,1,96,0,1,0,100,12,1,42,21,12,20,24,N/A,93,35,31,21,9,5,2.19\r\n,California Elementary,Hacienda la Puente Unified,Los Angeles,818,6,2,0,2,3,91,0,0,1,94,7,1,36,11,7,20,31,N/A,34,31,41,21,4,2,2.05\r\n,Smythe Elementary,San Ysidro Elementary,San Diego,818,6,1,0,0,3,94,0,1,0,88,0,1,69,11,7,23,N/A,N/A,96,30,52,9,8,1,1.98\r\n,Calistoga Elementary,Calistoga Joint Unified,Napa,818,6,0,1,2,0,80,0,16,0,79,12,23,67,10,10,21,23,N/A,97,56,20,10,13,1,1.82\r\n,Aurora Elementary,Los Angeles Unified,Los Angeles,818,6,7,0,0,0,92,0,0,0,100,4,0,47,28,13,21,26,N/A,85,52,36,9,3,1,1.66\r\n,Barbara Webster Elementary,Santa Paula Elementary,Ventura,818,6,0,0,0,0,99,0,0,0,99,10,9,67,19,15,19,25,N/A,90,69,21,9,1,0,1.42\r\n,Benicia High,Benicia Unified,Solano,817,8,10,0,6,9,13,1,56,4,14,0,0,2,5,9,N/A,N/A,27,98,2,10,33,34,21,3.61\r\nY,Bitney College Preparatory High,Nevada County Office of Educat,Nevada,817,8,2,0,3,0,9,0,84,0,38,0,0,0,0,12,N/A,N/A,13,76,0,20,23,32,25,3.61\r\nY,Gold Oak Arts Charter,Gold Oak Union Elementary,El Dorado,817,6,3,2,0,2,0,2,91,0,31,7,0,0,0,7,N/A,29,22,97,0,13,38,32,18,3.55\r\n,California Avenue Elementary,Vista Unified,San Diego,817,C,25,0,15,0,35,0,15,10,20,0,0,35,0,100,5,10,N/A,65,0,31,8,38,23,3.54\r\n,Franklin High,Elk Grove Unified,Sacramento,817,8,14,0,27,10,20,2,22,5,33,14,0,6,26,7,N/A,N/A,31,97,3,15,27,35,20,3.53\r\n,Valley View Middle,Mt. Diablo Unified,Contra Costa,817,6,4,0,8,5,25,1,52,3,32,8,0,9,10,12,N/A,33,31,80,7,17,27,30,19,3.37\r\n,Rosita Elementary,Garden Grove Unified,Orange,817,6,0,0,33,0,65,0,1,0,78,1,0,62,20,6,25,29,N/A,3,8,25,0,58,8,3.33\r\n,Livermore High,Livermore Valley Joint Unified,Alameda,817,8,2,1,6,3,25,0,55,7,20,17,1,9,10,9,N/A,N/A,28,98,8,16,28,33,15,3.31\r\n,Woodcrest Elementary,Riverside Unified,Riverside,817,6,6,1,3,1,35,0,52,0,43,12,0,7,4,16,25,33,N/A,95,5,17,40,20,18,3.29\r\n,Piedmont Avenue Elementary,Oakland Unified,Alameda,817,6,62,0,7,1,13,1,8,5,65,27,0,12,7,7,21,30,N/A,50,7,17,38,25,13,3.2\r\n,,Ferndale Unified,Humboldt,817,B,0,6,1,0,17,0,76,0,30,9,1,7,6,20,22,27,16,93,8,19,38,24,12,3.14\r\n,Ben Hulse Elementary,Imperial Unified,Imperial,817,6,2,0,1,1,79,0,16,0,47,7,2,36,3,10,21,29,N/A,94,5,24,41,16,15,3.1\r\n,Arthur S. Dudley Elementary,Center Joint Unified,Sacramento,817,6,12,1,9,3,19,1,49,4,59,4,0,14,9,12,28,30,N/A,97,4,23,40,28,5,3.07\r\n,Herbert Slater Middle,Santa Rosa City Schools,Sonoma,817,6,3,1,2,1,43,1,42,6,39,15,2,16,16,17,N/A,N/A,25,98,18,15,27,24,16,3.05\r\n,George McParland Elementary,Manteca Unified,San Joaquin,817,6,4,1,3,4,42,2,43,1,46,2,0,8,10,7,32,33,31,92,7,31,31,22,8,2.93\r\n,C. A. Jacobs Intermediate,Dixon Unified,Solano,817,6,3,0,1,2,54,0,37,1,50,8,6,14,27,7,N/A,N/A,27,90,12,28,30,21,9,2.87\r\n,Vintage Parkway Elementary,Oakley Union Elementary,Contra Costa,817,6,10,1,1,2,47,0,36,3,50,0,0,15,8,15,30,26,N/A,98,8,33,35,17,7,2.83\r\n,Tenaya Elementary,Big Oak Flat-Groveland Unified,Tuolumne,817,6,0,2,2,1,18,0,70,0,58,4,0,0,0,5,19,21,N/A,79,6,37,36,15,6,2.8\r\n,Monte Vista Elementary,Vista Unified,San Diego,817,6,2,0,2,0,59,0,33,3,61,0,2,39,7,19,23,28,N/A,89,22,22,24,20,12,2.79\r\nD,Animo Westside Charter Middle,Los Angeles Unified,Los Angeles,817,6,33,0,2,0,54,1,10,0,78,0,0,7,13,3,,,,99,16,23,34,18,8,2.79\r\n,Ben Painter Elementary,Alum Rock Union Elementary,Santa Clara,817,6,2,1,37,10,46,0,3,1,100,9,2,42,29,13,20,28,N/A,94,21,29,21,25,5,2.62\r\n,Frank Zeek Elementary,Ukiah Unified,Mendocino,817,6,1,5,2,4,44,0,43,0,75,8,14,31,10,10,26,28,N/A,100,19,26,38,13,4,2.59\r\n,Elizabeth T. Hughbanks Elementary,Rialto Unified,San Bernardino,817,6,18,0,1,0,72,0,7,1,75,14,0,20,9,11,28,30,N/A,91,20,27,36,13,4,2.54\r\n,Hill Classical Middle,Long Beach Unified,Los Angeles,817,6,13,0,6,1,67,1,12,0,74,27,1,18,40,10,N/A,34,31,97,30,25,19,17,9,2.51\r\n,Sierra Vista Elementary,Val Verde Unified,Riverside,817,6,10,0,3,1,76,1,4,1,85,9,0,35,10,10,29,29,N/A,94,23,31,28,15,3,2.43\r\n,Segerstrom High,Santa Ana Unified,Orange,817,8,1,0,10,1,84,0,3,1,75,22,1,18,46,6,N/A,N/A,34,95,31,29,28,9,3,2.26\r\n,First Street,Western Placer Unified,Placer,817,6,0,0,2,2,69,1,24,2,76,13,0,43,8,11,24,29,N/A,98,42,18,22,15,3,2.2\r\n,,Nuview Union,Riverside,817,B,2,1,0,0,69,0,25,1,75,1,0,28,15,6,22,22,22,87,25,41,25,6,2,2.19\r\n,Harbor City Elementary,Los Angeles Unified,Los Angeles,817,6,9,0,2,1,83,2,3,0,100,5,0,40,26,13,20,21,N/A,69,33,31,22,11,2,2.17\r\n,Wilmington Park Elementary,Los Angeles Unified,Los Angeles,817,6,1,0,0,0,96,1,1,0,95,2,0,33,20,11,18,16,N/A,88,27,40,26,6,2,2.16\r\n,Nueva Vista Elementary,Los Angeles Unified,Los Angeles,817,6,1,0,0,0,96,0,2,0,91,8,1,23,29,8,20,21,N/A,30,41,29,19,6,4,2.03\r\n,Savannah Elementary,Rosemead Elementary,Los Angeles,817,6,0,0,46,1,48,0,5,0,0,8,8,37,24,6,25,30,N/A,94,30,52,4,11,2,2.02\r\n,Payne (Buelah) Elementary,Inglewood Unified,Los Angeles,817,6,7,0,1,0,91,0,0,0,96,0,0,30,0,12,32,29,N/A,83,34,40,18,5,3,2.02\r\n,Leroy Anderson Elementary,Moreland Elementary,Santa Clara,817,6,6,0,7,2,75,0,7,3,85,1,0,66,10,9,23,29,N/A,97,44,27,18,9,1,1.98\r\n,One Hundred Twenty-Second Street Element,Los Angeles Unified,Los Angeles,817,6,20,0,0,0,80,0,0,0,85,7,0,41,23,17,20,22,N/A,55,43,28,23,5,2,1.95\r\n,Jefferson Elementary,Kings Canyon Joint Unified,Fresno,817,6,0,0,0,2,95,0,2,0,98,0,7,53,30,9,26,27,N/A,98,46,25,20,6,2,1.94\r\n,Sierra Vista Junior High,Baldwin Park Unified,Los Angeles,817,6,0,0,4,3,91,0,2,0,92,11,1,16,34,16,N/A,N/A,16,70,44,40,12,3,1,1.78\r\n,Washington Elementary,Compton Unified,Los Angeles,817,6,19,0,0,0,81,0,0,0,85,4,0,36,34,9,18,19,N/A,89,59,25,11,3,1,1.61\r\nY,Santa Barbara Charter,Santa Barbara Unified,Santa Barbara,816,5,1,1,2,1,16,1,73,6,8,3,0,10,1,9,23,20,N/A,98,1,2,16,32,49,4.28\r\n,Oak Park Independent,Oak Park Unified,Ventura,816,8,3,1,3,0,4,0,89,0,1,2,0,1,2,0,N/A,18,9,90,0,7,33,31,30,3.84\r\n,Durham Intermediate,Durham Unified,Butte,816,6,2,2,0,0,19,0,76,2,42,17,0,4,8,9,N/A,26,28,97,6,10,33,30,21,3.52\r\n,Leconte Elementary,Berkeley Unified,Alameda,816,5,23,1,7,0,35,0,25,9,52,7,0,31,3,11,16,20,N/A,92,12,12,21,25,30,3.5\r\n,,Springville Union Elementary,Tulare,816,B,0,2,2,1,17,0,77,0,37,0,0,0,0,6,20,28,30,96,1,17,43,19,20,3.38\r\n,Herbert H. Cruickshank Middle,Merced City Elementary,Merced,816,6,5,1,11,2,44,0,33,3,53,0,0,5,12,10,N/A,30,28,95,7,15,35,25,19,3.34\r\n,Berrendos Middle,Antelope Elementary,Tehama,816,6,2,1,1,1,19,0,75,0,52,0,0,6,4,10,N/A,21,17,94,6,13,36,34,11,3.31\r\n,,Fallbrook Union Elementary,San Diego,816,B,4,1,1,1,54,1,37,2,58,15,6,30,7,11,28,29,28,87,10,19,27,27,18,3.26\r\n,Caleb Greenwood,Sacramento City Unified,Sacramento,816,5,7,2,4,1,22,1,56,7,37,19,0,4,1,20,23,33,23,73,8,16,35,24,17,3.25\r\n,Leona H. Cox Community Elementary,Sulphur Springs Union,Los Angeles,816,5,6,0,3,0,58,2,25,5,54,6,0,28,9,11,18,28,N/A,72,11,25,23,25,16,3.1\r\n,Sierra Ridge Middle,Pollock Pines Elementary,El Dorado,816,6,2,4,0,1,10,0,83,0,49,10,0,2,2,11,N/A,24,26,94,2,23,49,16,10,3.09\r\n,Georgetown Elementary,Black Oak Mine Unified,El Dorado,816,5,0,1,0,0,10,0,88,0,47,3,0,0,0,13,24,29,23,99,4,26,43,20,8,3.01\r\n,Mission Meadows Elementary,Vista Unified,San Diego,816,5,3,0,3,0,52,1,38,4,49,0,0,26,4,16,23,28,N/A,96,15,21,28,24,12,2.98\r\n,Valley Springs Elementary,Calaveras Unified,Calaveras,816,5,1,2,2,1,22,0,70,3,46,4,0,2,4,5,23,29,N/A,75,5,24,47,21,5,2.97\r\n,Creekside Oaks Elementary,Western Placer Unified,Placer,816,5,1,1,2,3,40,1,47,3,57,1,0,23,1,15,24,30,N/A,91,10,23,37,24,6,2.95\r\n,Edna Beaman Elementary,Eastern Sierra Unified,Mono,816,5,0,7,0,0,43,0,47,3,63,0,0,30,0,10,5,8,N/A,90,7,33,37,4,19,2.93\r\n,Renaissance High School for the Arts,Long Beach Unified,Los Angeles,816,8,27,1,2,2,48,1,18,1,61,0,1,6,26,5,N/A,N/A,27,98,16,19,30,28,7,2.92\r\n,Benito Juarez Elementary,ABC Unified,Los Angeles,816,5,12,1,8,10,59,1,6,2,69,4,4,25,12,14,23,30,N/A,95,11,30,26,25,8,2.88\r\n,,Oakley Union Elementary,Contra Costa,816,B,9,0,2,3,44,0,36,5,51,3,0,15,8,16,28,26,25,95,9,28,36,19,7,2.87\r\n,Happy Valley Primary,Happy Valley Union Elementary,Shasta,816,5,2,11,4,0,16,1,64,1,80,0,0,0,0,4,20,26,N/A,97,13,23,37,22,5,2.82\r\n,D. H. White Elementary,River Delta Joint Unified,Sacramento,816,5,1,0,0,0,29,0,65,4,50,4,2,14,4,18,20,23,N/A,99,15,25,37,17,6,2.75\r\nD,Harriet Tubman Village Charter,San Diego Unified,San Diego,816,5,36,0,4,2,43,3,9,3,83,8,0,44,14,8,20,24,24,87,14,33,32,16,7,2.7\r\n,North Verdemont Elementary,San Bernardino City Unified,San Bernardino,816,5,18,1,2,0,55,1,20,1,96,7,0,16,2,16,26,26,N/A,68,14,33,35,12,6,2.61\r\n,Ramona,Hawthorne,Los Angeles,816,5,11,0,5,1,75,1,6,0,77,2,0,44,6,10,27,27,N/A,94,14,38,30,11,6,2.58\r\n,Liberty Middle,Lemoore Union Elementary,Kings,816,6,7,1,1,6,60,0,23,3,58,4,8,22,12,10,N/A,N/A,27,97,18,28,38,12,4,2.57\r\n,Cresson Elementary,Little Lake City Elementary,Los Angeles,816,5,1,0,1,0,91,0,6,0,77,8,1,26,5,12,28,29,N/A,95,13,41,29,13,3,2.51\r\n,West Orange Elementary,Orange Unified,Orange,816,5,1,0,4,2,82,1,9,1,74,0,0,43,6,5,30,32,N/A,90,23,28,30,15,3,2.46\r\n,Bill L. Williams Elementary,Panama-Buena Vista Union,Kern,816,5,8,0,6,3,54,0,28,0,66,2,0,16,16,12,30,30,N/A,43,13,49,26,12,1,2.4\r\n,Kendall Elementary,San Bernardino City Unified,San Bernardino,816,5,17,0,1,0,63,0,15,2,86,12,0,19,6,4,18,23,N/A,81,20,41,26,8,5,2.37\r\n,Cahuilla Elementary,Palm Springs Unified,Riverside,816,5,14,0,1,4,59,0,22,0,85,1,0,39,7,13,27,25,N/A,86,28,37,21,10,6,2.29\r\n,Learning in an Urban Community with High,Alum Rock Union Elementary,Santa Clara,816,5,3,0,6,4,83,3,1,0,100,6,1,46,19,10,20,24,N/A,92,32,29,20,17,2,2.29\r\n,Alberta Martone Elementary,Modesto City Elementary,Stanislaus,816,5,5,0,5,1,71,1,14,1,83,22,1,35,11,11,23,30,N/A,93,16,52,22,5,4,2.28\r\n,Sylvia Cassell Elementary,Alum Rock Union Elementary,Santa Clara,816,5,2,0,8,13,75,1,1,0,100,4,2,49,22,13,20,27,N/A,89,34,32,14,17,4,2.25\r\n,Sun Empire Elementary,Kerman Unified,Fresno,816,5,1,0,2,0,76,0,20,0,76,20,6,38,15,11,27,30,N/A,97,32,33,19,13,3,2.22\r\n,San Marcos Middle,San Marcos Unified,San Diego,816,6,3,0,3,3,75,1,14,0,73,3,11,24,42,20,N/A,29,26,96,42,23,17,13,6,2.2\r\n,Temple Academy,Hacienda la Puente Unified,Los Angeles,816,5,1,0,1,2,95,0,0,0,90,13,1,37,14,9,18,29,N/A,24,27,40,20,13,0,2.18\r\n,La Mirada Elementary,San Ysidro Elementary,San Diego,816,5,2,0,0,1,96,0,1,0,91,14,0,57,20,12,N/A,21,N/A,94,29,41,19,9,2,2.14\r\n,Lincoln Elementary,Compton Unified,Los Angeles,816,5,52,1,0,0,47,0,1,0,91,1,0,26,8,33,16,16,N/A,92,32,39,21,6,2,2.08\r\n,Alphonso B. Perez Special Education Cent,Los Angeles Unified,Los Angeles,816,C,2,0,4,3,88,0,2,1,89,0,0,61,2,91,8,6,9,54,42,36,14,8,0,1.88\r\n,Noble Avenue Elementary,Los Angeles Unified,Los Angeles,816,5,1,0,3,4,91,0,1,0,100,8,0,54,24,10,21,25,N/A,72,44,38,10,7,1,1.83\r\nD,Center for Advanced Learning,Los Angeles Unified,Los Angeles,816,5,8,0,0,0,84,0,0,0,42,0,0,51,15,11,24,26,N/A,99,59,23,12,4,2,1.67\r\n,Ninety-Second Street Elementary,Los Angeles Unified,Los Angeles,816,5,11,0,1,0,89,0,0,0,100,5,0,43,23,6,19,23,N/A,70,54,32,11,3,0,1.64\r\n,Martin Luther King Jr. Elementary,Santa Ana Unified,Orange,816,5,1,0,0,0,99,0,0,0,100,7,6,77,18,5,27,29,N/A,91,69,21,7,3,1,1.45\r\n,Hooker Oak Elementary,Chico Unified,Butte,815,5,1,2,0,1,11,0,77,0,36,0,0,0,0,12,20,24,N/A,93,3,8,28,31,30,3.76\r\n,College Park High,Mt. Diablo Unified,Contra Costa,815,8,3,1,9,4,19,1,61,1,20,21,0,5,12,6,N/A,N/A,30,83,3,11,25,38,23,3.67\r\n,Clarence Lobo Elementary,Capistrano Unified,Orange,815,5,1,0,1,0,34,0,57,6,36,3,0,19,4,18,21,30,N/A,56,11,12,24,34,19,3.36\r\n,Las Posas Elementary,Pleasant Valley,Ventura,815,5,8,1,3,8,38,1,36,6,50,3,0,14,0,6,23,31,N/A,95,4,16,38,30,11,3.28\r\n,Ottomon Way Elementary,San Juan Unified,Sacramento,815,5,5,3,2,0,12,0,78,0,54,3,0,5,1,15,24,27,N/A,70,2,20,36,37,5,3.24\r\n,Parkview Elementary,Chico Unified,Butte,815,5,3,3,8,1,29,0,49,1,55,20,0,24,2,12,24,30,N/A,91,11,22,27,13,27,3.24\r\n,Silverwood Elementary,Mt. Diablo Unified,Contra Costa,815,5,3,1,9,8,37,1,34,7,45,1,0,23,8,15,24,23,N/A,61,8,16,34,28,13,3.21\r\n,Juarez Elementary,San Diego Unified,San Diego,815,5,11,1,11,2,47,0,18,10,65,21,0,37,10,13,22,32,N/A,95,9,20,25,35,11,3.2\r\n,North High,Torrance Unified,Los Angeles,815,8,8,0,27,4,34,1,18,5,40,9,0,7,15,6,N/A,N/A,34,92,5,21,36,26,11,3.19\r\n,Rio San Gabriel Elementary,Downey Unified,Los Angeles,815,5,1,0,5,1,85,0,7,1,48,3,0,14,10,11,24,30,N/A,100,6,24,32,22,16,3.18\r\n,Harding Elementary,West Contra Costa Unified,Contra Costa,815,5,24,0,13,2,27,1,32,0,42,10,0,18,7,22,19,20,N/A,67,9,24,24,24,18,3.17\r\n,,Sebastopol Union Elementary,Sonoma,815,B,3,2,2,0,26,1,64,1,42,3,2,16,4,16,18,23,29,94,9,23,28,27,14,3.14\r\n,,Pollock Pines Elementary,El Dorado,815,B,1,3,0,1,11,0,82,0,49,6,0,2,1,16,22,24,26,93,3,22,46,18,12,3.13\r\n,Elmhurst Elementary,Ventura Unified,Ventura,815,5,4,0,2,2,49,1,37,5,55,7,0,20,3,9,21,25,N/A,100,12,14,36,26,11,3.1\r\n,,Old Adobe Union,Sonoma,815,B,3,1,5,1,37,0,53,0,43,4,0,31,3,15,23,25,N/A,84,14,18,28,28,12,3.06\r\n,Windsor Middle,Windsor Unified,Sonoma,815,6,2,3,3,1,33,0,58,0,34,7,3,13,11,17,N/A,29,25,90,12,22,32,23,10,2.97\r\n,,Sierra-Plumas Joint Unified,Sierra,815,B,1,1,1,0,16,0,79,2,47,11,0,6,3,9,24,25,11,90,6,26,44,19,5,2.92\r\n,Ventura County Special Education,Ventura County Office of Educa,Ventura,815,C,4,0,5,3,47,0,35,4,36,0,0,5,19,99,8,7,8,36,13,27,27,23,11,2.91\r\n,,Monrovia Unified,Los Angeles,815,B,8,1,3,3,60,0,23,1,56,16,0,10,16,11,27,28,26,98,13,29,27,21,10,2.86\r\n,Carthay Center Elementary,Los Angeles Unified,Los Angeles,815,5,48,0,8,2,33,1,8,0,66,13,0,18,8,10,16,18,N/A,80,16,23,30,23,8,2.85\r\n,Sky Country Elementary,Jurupa Unified,Riverside,815,5,2,0,1,0,73,0,24,0,62,7,0,27,10,12,26,30,N/A,97,15,24,34,18,10,2.84\r\n,Frontier Elementary,Twin Rivers Unified,Sacramento,815,5,10,0,2,2,29,0,49,7,65,14,0,14,6,13,26,31,N/A,94,8,27,44,14,7,2.84\r\n,Paloma Valley High,Perris Union High,Riverside,815,8,5,1,3,4,49,1,34,3,50,11,0,8,20,8,N/A,N/A,34,100,13,23,40,16,8,2.81\r\n,,Jefferson Elementary,San Mateo,815,B,3,0,14,38,32,2,6,5,58,5,0,40,15,8,11,14,14,85,10,30,30,28,2,2.81\r\n,,Cottonwood Union Elementary,Shasta,815,B,1,4,1,0,12,0,77,4,58,0,1,0,0,8,26,25,25,97,7,40,29,17,7,2.78\r\n,Mann Elementary,Long Beach Unified,Los Angeles,815,5,27,0,5,1,49,0,15,0,80,0,0,18,15,6,30,35,N/A,91,15,32,27,17,9,2.74\r\n,Lemoore Elementary,Lemoore Union Elementary,Kings,815,5,6,0,1,3,63,0,22,4,68,2,9,22,4,10,25,25,N/A,95,13,30,39,11,8,2.71\r\n,Bryant Elementary,Riverside Unified,Riverside,815,5,9,1,2,2,55,0,28,0,75,13,0,17,6,12,29,30,N/A,97,19,23,32,18,7,2.71\r\n,Ira Harbison,National Elementary,San Diego,815,5,2,0,11,15,61,2,4,1,100,28,0,50,10,9,22,30,N/A,93,12,34,31,20,3,2.68\r\n,Albert Einstein Middle,Sacramento City Unified,Sacramento,815,6,20,1,7,3,25,2,37,6,72,18,0,9,20,13,N/A,N/A,28,93,15,31,34,14,6,2.64\r\n,,SBC - Aspire Public Schools,El Dorado,815,B,16,1,2,2,65,0,9,4,81,0,0,27,11,8,23,30,27,90,16,35,33,11,5,2.55\r\n,Stoneman Elementary,Pittsburg Unified,Contra Costa,815,5,31,0,2,6,50,3,7,1,85,0,0,41,2,9,20,23,N/A,91,22,41,22,12,3,2.35\r\n,John Bidwell Elementary,Sacramento City Unified,Sacramento,815,5,37,0,9,1,42,3,4,4,100,15,0,28,9,19,24,26,N/A,59,26,32,27,12,3,2.33\r\n,Adams Elementary,Riverside Unified,Riverside,815,5,5,1,1,1,73,2,15,0,80,9,0,33,14,14,27,29,N/A,96,26,32,31,9,2,2.3\r\nD,Lakeview Charter High,Los Angeles Unified,Los Angeles,815,8,2,0,0,1,96,0,1,0,86,8,0,10,55,18,N/A,N/A,18,98,30,31,23,12,3,2.27\r\n,,Johnstonville Elementary,Lassen,815,B,0,5,0,0,13,0,81,1,49,3,0,7,0,8,3,1,N/A,37,5,68,21,5,0,2.26\r\n,Johnstonville Elementary,Johnstonville Elementary,Lassen,815,5,0,5,0,0,13,0,81,1,49,3,0,7,0,8,3,1,N/A,37,5,68,21,5,0,2.26\r\n,Zela Davis,Hawthorne,Los Angeles,815,5,28,0,3,2,65,1,1,0,88,2,0,36,15,9,27,32,N/A,94,25,38,28,8,2,2.24\r\n,Elderberry Elementary,Ontario-Montclair Elementary,San Bernardino,815,5,4,0,2,0,88,1,3,1,84,7,0,47,9,9,26,30,N/A,90,30,39,19,9,3,2.15\r\nD,Fenton Avenue Charter,Los Angeles Unified,Los Angeles,815,5,6,0,1,2,89,0,1,0,99,3,0,38,19,12,19,21,N/A,96,40,25,23,8,3,2.08\r\n,Downtown Business High,Los Angeles Unified,Los Angeles,815,8,7,0,26,6,59,0,2,0,89,24,0,10,53,3,N/A,N/A,30,54,46,27,15,9,3,1.97\r\n,Maurice Sendak Elementary,Los Angeles Unified,Los Angeles,815,5,3,0,1,1,90,0,4,0,96,7,0,43,23,11,19,23,N/A,78,43,29,17,8,3,1.97\r\n,Riverdale Elementary,Riverdale Joint Unified,Fresno,815,6,3,1,0,1,76,0,19,0,3,0,23,20,34,9,N/A,1,N/A,100,45,34,17,4,1,1.81\r\nD,Downtown Value,Los Angeles Unified,Los Angeles,815,5,0,0,0,0,99,0,0,0,96,0,0,25,57,7,21,28,29,91,55,26,9,8,2,1.76\r\n,Vernon City Elementary,Los Angeles Unified,Los Angeles,815,5,1,0,0,0,99,0,0,0,100,8,0,34,37,12,18,23,N/A,90,61,23,11,2,2,1.6\r\n,San Pedro Street Elementary,Los Angeles Unified,Los Angeles,815,5,0,0,0,0,100,0,0,0,100,5,0,54,31,11,19,22,N/A,95,69,20,6,3,2,1.49\r\n,Washington Elementary,Mendota Unified,Fresno,815,5,0,0,0,0,99,0,1,0,99,0,9,84,0,8,25,N/A,N/A,100,68,26,3,1,2,1.42\r\nD,Live Oak Charter,Petaluma City Schools,Sonoma,814,5,1,0,0,1,8,0,86,4,27,0,0,1,3,12,1,1,N/A,100,0,1,20,42,37,4.14\r\n,Gladys Poet-Christian Elementary,Tracy Joint Unified,San Joaquin,814,5,3,0,5,2,38,0,43,9,34,1,0,14,2,5,30,30,29,93,5,10,28,27,31,3.7\r\n,Henry High,San Diego Unified,San Diego,814,8,8,1,12,1,32,1,42,3,38,40,0,5,22,9,N/A,N/A,32,84,8,14,24,31,23,3.46\r\n,Willard Middle,Berkeley Unified,Alameda,814,6,25,0,10,0,25,1,26,12,51,21,0,11,8,17,N/A,25,21,91,8,16,26,24,26,3.44\r\n,Temecula Valley High,Temecula Valley Unified,Riverside,814,8,5,1,3,6,29,0,52,3,17,11,0,5,7,13,N/A,N/A,30,95,6,13,34,33,13,3.35\r\n,Little Chico Creek Elementary,Chico Unified,Butte,814,5,4,3,7,1,22,1,58,1,53,0,0,12,4,10,29,31,N/A,88,6,20,37,23,14,3.18\r\n,Richmond Elementary,Sierra Sands Unified,Kern,814,5,6,1,4,4,24,1,60,0,48,1,0,11,2,27,22,22,N/A,94,10,19,33,21,17,3.17\r\n,Ranch View Elementary,Mountain View Elementary,San Bernardino,814,5,9,0,4,1,66,0,14,5,62,0,0,31,2,16,,,,95,7,20,36,24,13,3.14\r\n,Pine Grove Elementary,Amador County Unified,Amador,814,5,0,1,0,1,16,0,76,5,45,4,0,1,0,10,26,28,N/A,96,3,24,40,21,11,3.13\r\nY,Roberts Ferry Charter School Academy,Roberts Ferry Union Elementary,Stanislaus,814,6,0,0,0,0,28,3,66,0,34,0,0,14,0,3,,,,79,0,35,35,17,13,3.09\r\n,Lakeview Junior High,Orcutt Union Elementary,Santa Barbara,814,6,2,1,3,2,48,1,43,1,45,5,1,7,7,7,N/A,N/A,28,96,8,25,40,15,13,2.99\r\n,,Sierra Sands Unified,Kern,814,B,6,1,3,2,23,1,62,1,46,7,0,7,4,12,27,26,26,93,12,22,35,19,12,2.98\r\n,San Jose Street Elementary,Los Angeles Unified,Los Angeles,814,5,4,0,7,3,78,0,8,0,69,24,0,24,13,9,18,17,N/A,79,15,20,30,19,15,2.97\r\n,Pioneer Elementary,Amador County Unified,Amador,814,5,1,2,0,0,14,0,74,8,63,5,0,0,0,14,28,25,N/A,95,7,27,45,14,7,2.89\r\n,Lincoln Elementary,Exeter Union Elementary,Tulare,814,5,1,1,0,0,55,0,41,0,67,0,4,22,0,1,,,,99,14,26,31,18,12,2.89\r\n,Saint Helena High,Saint Helena Unified,Napa,814,8,1,0,1,1,49,0,47,0,35,0,6,13,29,10,N/A,N/A,22,95,23,17,23,22,15,2.88\r\n,Buchser Middle,Santa Clara Unified,Santa Clara,814,6,4,1,12,12,39,1,28,4,49,17,1,18,22,22,N/A,32,27,93,11,30,28,24,7,2.85\r\n,Patrick Henry Middle,Los Angeles Unified,Los Angeles,814,6,7,1,6,6,61,0,17,1,73,20,0,10,22,15,N/A,31,28,87,16,25,29,22,8,2.8\r\n,Woodrow Wilson Elementary,Selma Unified,Fresno,814,5,0,1,1,0,87,0,11,0,84,6,5,35,9,10,18,23,N/A,86,17,24,33,14,12,2.8\r\n,Ernest O. Lawrence Elementary,Garden Grove Unified,Orange,814,5,1,0,30,2,56,1,9,0,66,0,0,51,20,13,26,31,N/A,51,17,30,21,26,6,2.73\r\n,Clement Middle,Redlands Unified,San Bernardino,814,6,8,0,3,2,61,1,23,2,70,11,0,8,7,15,N/A,29,26,93,15,24,42,12,8,2.73\r\n,,Saucelito Elementary,Tulare,814,B,0,0,0,0,70,0,27,2,76,0,10,46,3,0,21,14,N/A,30,5,53,16,21,5,2.68\r\n,Lincoln Elementary,Dinuba Unified,Tulare,814,5,0,0,2,1,89,0,8,0,100,10,4,29,10,3,26,30,N/A,94,25,24,24,14,13,2.68\r\n,Mint Canyon Community Elementary,Sulphur Springs Union,Los Angeles,814,5,8,1,1,1,66,0,20,3,68,2,0,32,15,13,20,26,N/A,88,22,30,22,14,13,2.65\r\n,Topaz Preparatory Academy,Hesperia Unified,San Bernardino,814,5,9,1,4,0,66,0,19,1,80,4,0,30,7,7,32,31,24,95,20,26,31,16,7,2.64\r\n,Anna Yates Elementary,Emery Unified,Alameda,814,5,52,0,12,1,25,1,6,1,88,0,0,19,12,9,19,24,N/A,65,9,38,34,18,0,2.61\r\n,,Oak Valley Union Elementary,Tulare,814,B,0,0,0,0,67,0,32,0,72,0,6,36,10,2,21,24,N/A,32,23,29,24,12,11,2.59\r\n,Winifred Pifer Elementary,Paso Robles Joint Unified,San Luis Obispo,814,5,1,1,1,0,58,0,36,2,60,1,5,35,6,10,29,30,N/A,86,15,33,35,10,6,2.58\r\n,TownGate Elementary,Moreno Valley Unified,Riverside,814,5,23,0,4,2,63,0,6,2,77,5,1,33,8,8,26,33,N/A,93,16,34,32,16,2,2.54\r\n,San Juan Elementary,Capistrano Unified,Orange,814,5,1,0,1,2,74,1,20,0,65,2,2,54,12,6,27,26,N/A,96,35,24,10,13,17,2.52\r\n,Canyon Crest Elementary,Fontana Unified,San Bernardino,814,5,9,0,2,1,81,0,7,0,86,4,0,36,13,11,23,26,N/A,95,16,40,28,11,5,2.51\r\n,Lou Henry Hoover Elementary,Whittier City Elementary,Los Angeles,814,5,0,1,1,1,90,0,7,0,62,0,0,15,11,9,29,32,N/A,97,15,43,25,10,6,2.5\r\n,Howard Elementary,Madera Unified,Madera,814,5,2,0,1,1,74,0,21,0,72,3,1,20,12,6,24,32,N/A,97,21,33,29,8,8,2.49\r\n,Los Amigos,Palmdale Elementary,Los Angeles,814,5,4,0,0,0,84,0,5,1,85,7,8,29,22,12,29,27,23,93,24,30,27,11,8,2.49\r\n,,Hacienda la Puente Unified,Los Angeles,814,B,1,0,12,2,80,0,4,1,73,12,1,17,20,10,19,29,28,70,24,33,20,18,5,2.48\r\n,,Magnolia Elementary,Orange,814,B,3,0,12,3,69,1,10,1,81,8,0,43,27,10,24,29,N/A,73,27,27,23,18,5,2.46\r\n,Tahoe Valley Elementary,Lake Tahoe Unified,El Dorado,814,5,1,0,2,3,37,1,53,2,73,1,0,28,2,20,20,27,N/A,90,11,53,22,10,4,2.44\r\n,Los Cerritos Elementary,South San Francisco Unified,San Mateo,814,5,1,0,6,10,68,8,4,1,71,0,4,64,0,12,22,26,N/A,100,20,34,34,7,5,2.43\r\nD,Aspire Rosa Parks Academy,Stockton Unified,San Joaquin,814,5,21,0,7,1,66,0,2,2,97,0,0,32,18,7,22,30,N/A,98,18,48,18,7,9,2.42\r\n,Spruce Elementary,South San Francisco Unified,San Mateo,814,5,1,0,4,6,85,1,3,0,76,0,3,73,5,20,22,27,N/A,100,20,41,26,10,2,2.33\r\n,Beardslee Elementary,Duarte Unified,Los Angeles,814,5,2,0,2,0,92,0,3,1,84,7,6,43,4,10,25,32,N/A,98,20,42,29,8,2,2.29\r\n,Franklin Elementary,Oakland Unified,Alameda,814,5,13,1,53,0,28,1,3,1,50,30,0,50,24,7,23,25,N/A,52,32,32,23,9,4,2.21\r\n,Herrick Avenue Elementary,Los Angeles Unified,Los Angeles,814,5,1,0,1,1,96,0,2,0,100,13,0,38,22,19,19,19,N/A,70,31,34,23,8,4,2.2\r\n,Annandale Elementary,Los Angeles Unified,Los Angeles,814,5,2,0,0,1,94,0,3,0,100,10,0,16,18,9,17,18,N/A,95,35,30,26,5,4,2.13\r\n,Plantation Elementary,Greenfield Union,Kern,814,5,14,1,1,0,78,0,5,1,84,8,4,20,21,8,29,26,N/A,65,29,44,17,8,2,2.11\r\n,Hubbard Street Elementary,Los Angeles Unified,Los Angeles,814,5,2,0,0,0,96,0,2,0,81,11,1,33,19,11,18,18,N/A,98,34,37,19,8,3,2.09\r\nD,ICEF Vista Elementary Academy,Los Angeles Unified,Los Angeles,814,5,3,0,0,0,93,0,2,0,96,0,0,56,8,9,27,27,N/A,85,40,36,12,8,4,2\r\n,Brooklyn Avenue Elementary,Los Angeles Unified,Los Angeles,814,5,0,0,0,0,100,0,0,0,100,9,1,30,25,17,18,30,32,46,47,25,18,6,3,1.92\r\n,Greenleaf Elementary,Oakland Unified,Alameda,814,5,17,0,3,0,76,1,1,0,96,30,0,60,19,8,21,25,N/A,48,50,26,14,7,4,1.89\r\n,Hector G. Godinez,Santa Ana Unified,Orange,814,8,0,0,2,0,97,0,1,0,85,18,2,24,60,6,N/A,N/A,34,97,57,25,13,3,1,1.66\r\n,Redlands Senior High,Redlands Unified,San Bernardino,813,8,7,0,14,5,35,1,35,3,48,12,0,7,10,8,N/A,N/A,27,96,10,17,30,21,23,3.3\r\n,,Atascadero Unified,San Luis Obispo,813,B,1,1,1,1,25,0,67,2,38,7,0,7,4,7,28,29,23,99,6,16,34,29,14,3.29\r\n,,Ojai Unified,Ventura,813,B,1,1,2,1,33,0,60,1,40,7,0,12,12,14,17,18,23,94,13,14,27,27,19,3.26\r\n,Hawthorne Elementary,San Diego Unified,San Diego,813,5,5,0,10,2,52,0,26,5,67,42,0,32,14,8,23,26,N/A,61,8,26,19,26,21,3.26\r\n,Miller Elementary,San Diego Unified,San Diego,813,5,10,0,2,1,30,2,43,11,63,16,0,5,1,15,21,33,N/A,96,0,21,46,28,5,3.18\r\n,Diamond Ranch High,Pomona Unified,Los Angeles,813,8,11,0,13,5,56,0,11,4,46,26,0,8,19,9,N/A,N/A,32,91,9,23,31,22,15,3.12\r\n,Sequoia Middle,Redding Elementary,Shasta,813,5,3,3,3,1,10,1,75,3,52,14,0,2,2,9,3,29,30,59,7,20,42,17,14,3.1\r\n,San Benito Elementary,Atascadero Unified,San Luis Obispo,813,5,2,2,0,1,28,1,64,2,46,2,0,8,1,7,29,29,N/A,100,7,17,42,26,8,3.09\r\n,North Terrace Elementary,Oceanside Unified,San Diego,813,5,11,1,1,2,34,1,47,4,60,5,0,4,4,16,26,29,N/A,90,1,20,53,20,6,3.09\r\n,,Santa Clara Unified,Santa Clara,813,B,4,1,23,8,36,1,23,4,46,11,2,27,20,17,26,28,27,92,12,26,23,26,13,3.01\r\n,Diablo Vista Elementary,Antioch Unified,Contra Costa,813,5,32,1,11,10,27,2,18,0,50,6,0,17,5,15,26,30,N/A,67,6,25,38,22,8,2.99\r\n,,Santa Barbara Unified,Santa Barbara,813,B,1,1,3,0,58,0,34,3,47,17,0,31,11,13,23,25,27,94,23,18,18,23,19,2.96\r\n,Pinon Mesa Middle,Snowline Joint Unified,San Bernardino,813,6,2,0,1,0,31,0,56,0,56,8,0,9,8,11,N/A,31,33,87,7,29,37,16,11,2.94\r\n,Pomeroy Elementary,Santa Clara Unified,Santa Clara,813,5,4,1,20,9,39,1,19,4,55,5,3,41,10,16,28,29,N/A,93,12,24,31,24,9,2.93\r\n,Dana Elementary,Lucia Mar Unified,San Luis Obispo,813,5,1,0,0,0,53,1,43,1,67,6,2,26,6,14,24,25,N/A,79,12,20,40,22,6,2.89\r\n,Reginald M. Benton Middle,Norwalk-La Mirada Unified,Los Angeles,813,6,3,0,3,2,69,0,21,1,53,23,3,4,9,8,N/A,30,28,97,10,32,30,17,10,2.84\r\n,Delta Vista Middle,Oakley Union Elementary,Contra Costa,813,6,11,0,3,4,44,1,31,6,54,4,1,13,9,14,N/A,26,24,94,10,29,34,20,6,2.83\r\n,,Beaumont Unified,Riverside,813,B,7,1,3,3,48,0,38,0,60,8,0,13,10,11,23,32,31,81,10,27,39,18,6,2.83\r\n,,Big Lagoon Union Elementary,Humboldt,813,B,0,9,0,2,0,0,87,2,73,2,0,0,0,13,1,1,N/A,93,5,26,52,17,0,2.81\r\n,Big Lagoon Elementary,Big Lagoon Union Elementary,Humboldt,813,5,0,9,0,2,0,0,87,2,73,2,0,0,0,13,1,1,N/A,93,5,26,52,17,0,2.81\r\n,James Marshall Elementary,Sacramento City Unified,Sacramento,813,5,16,0,13,1,19,1,41,9,76,10,0,23,16,16,21,26,N/A,81,11,25,42,17,5,2.81\r\n,Ben Lomond Elementary,Covina-Valley Unified,Los Angeles,813,5,6,0,3,4,73,0,12,1,73,10,0,20,8,13,20,28,N/A,93,13,29,35,17,6,2.76\r\n,Los Feliz Elementary,Los Angeles Unified,Los Angeles,813,5,2,0,6,2,51,1,38,0,100,9,0,30,32,7,19,27,N/A,94,15,39,13,25,8,2.72\r\n,Teofilo Mendoza,South Bay Union Elementary,San Diego,813,5,4,1,1,6,82,2,4,0,83,6,0,50,10,9,26,29,N/A,91,16,32,28,19,5,2.64\r\n,Bernard L. Hughes Elementary,Empire Union Elementary,Stanislaus,813,5,5,0,8,2,61,3,19,1,78,3,0,23,16,10,23,30,N/A,90,11,38,33,12,6,2.63\r\n,Cambria Grammar,Coast Unified,San Luis Obispo,813,5,1,0,1,0,56,0,39,0,64,0,0,48,4,11,18,26,N/A,96,27,28,15,18,12,2.59\r\nY,Cali Calmecac Language Academy,Windsor Unified,Sonoma,813,5,1,1,1,0,68,0,29,0,55,0,6,37,23,9,27,25,25,100,36,15,17,19,13,2.56\r\n,Robert Hill Lane Elementary,Los Angeles Unified,Los Angeles,813,5,0,0,1,0,98,0,0,0,82,7,0,17,9,13,14,13,N/A,94,17,38,29,12,4,2.47\r\n,Kelso (William H.) Elementary,Inglewood Unified,Los Angeles,813,5,44,0,1,1,53,0,0,0,90,0,0,13,0,12,30,31,N/A,99,24,30,30,12,3,2.42\r\n,Rainbow Ridge Elementary,Val Verde Unified,Riverside,813,5,15,0,2,0,73,0,5,1,87,10,0,36,8,12,25,29,N/A,89,19,37,30,12,2,2.41\r\n,Fort Jones Elementary,Scott Valley Unified,Siskiyou,813,5,4,12,1,0,9,0,68,7,66,0,0,5,0,15,17,15,N/A,98,8,60,22,7,3,2.37\r\n,Hayfork Valley Elementary,Mountain Valley Unified,Trinity,813,5,1,19,1,1,11,1,60,3,84,9,0,2,1,18,16,20,N/A,93,16,41,34,5,3,2.36\r\n,Hemmerling Elementary,Banning Unified,Riverside,813,5,5,5,5,1,56,0,22,3,82,3,0,21,11,11,19,31,N/A,94,24,32,30,13,1,2.33\r\n,Stevenson Elementary,Long Beach Unified,Los Angeles,813,5,17,1,2,0,75,1,3,0,94,9,1,41,23,5,30,35,N/A,61,33,33,14,13,7,2.28\r\n,Don Julian Elementary,Bassett Unified,Los Angeles,813,5,0,0,1,0,99,0,0,0,97,7,0,46,15,12,22,31,N/A,84,30,41,12,15,2,2.17\r\n,Roosevelt Elementary,Long Beach Unified,Los Angeles,813,5,6,0,6,0,85,1,1,0,100,9,2,58,22,5,30,35,N/A,81,30,44,11,12,4,2.15\r\n,Yorkdale Elementary,Los Angeles Unified,Los Angeles,813,5,2,0,1,5,89,2,1,0,100,1,0,27,21,18,13,17,N/A,78,29,44,14,10,2,2.13\r\n,Charles W. Tewinkle Middle,Newport-Mesa Unified,Orange,813,6,1,1,2,2,78,1,15,0,83,4,1,35,30,13,N/A,N/A,33,85,46,22,17,13,2,2.02\r\n,Edgemont Elementary,Moreno Valley Unified,Riverside,813,5,9,0,0,0,85,2,3,1,86,4,2,56,11,10,21,24,N/A,87,33,41,18,6,1,2.02\r\nD,Aspire Centennial College Preparatory Ac,Los Angeles Unified,Los Angeles,813,6,0,0,0,0,99,0,0,0,96,0,0,22,55,8,N/A,30,30,80,32,45,17,4,3,2.01\r\n,Burton Street Elementary,Los Angeles Unified,Los Angeles,813,5,1,1,1,5,91,0,3,0,100,11,0,44,26,15,19,22,N/A,89,39,34,18,6,3,1.99\r\nD,Nueva Esperanza Charter Academy,Los Angeles Unified,Los Angeles,813,6,2,0,0,0,98,0,0,0,91,6,0,12,52,13,N/A,28,27,94,47,22,22,7,2,1.94\r\n,Planada Elementary,Planada Elementary,Merced,813,5,0,0,1,0,97,0,2,0,100,0,16,55,24,16,20,17,N/A,91,51,23,16,8,2,1.87\r\n,Sheppard Elementary,Roseland Elementary,Sonoma,813,5,1,1,1,0,94,0,3,0,90,15,3,69,17,13,23,30,N/A,89,48,29,14,6,3,1.86\r\n,West Riverside Elementary,Jurupa Unified,Riverside,813,5,1,0,1,0,96,1,2,0,95,4,0,58,16,12,23,28,N/A,99,46,34,15,4,1,1.8\r\n,Lydia Romero-Cruz Elementary,Santa Ana Unified,Orange,813,5,0,0,0,0,99,0,0,0,98,5,3,67,24,10,N/A,30,N/A,99,64,26,6,3,1,1.52\r\n,San Lorenzo Valley High,San Lorenzo Valley Unified,Santa Cruz,812,8,1,0,1,0,7,0,86,3,16,14,0,0,1,10,N/A,N/A,28,94,2,8,42,31,18,3.56\r\n,,Durham Unified,Butte,812,B,1,2,0,0,20,0,75,2,42,11,0,8,5,9,21,24,25,97,6,10,33,31,20,3.47\r\n,Petaluma High,Petaluma City Schools,Sonoma,812,8,2,1,2,1,20,1,74,1,29,8,1,6,11,15,N/A,N/A,28,95,9,14,27,32,17,3.34\r\n,West Hills High,Grossmont Union High,San Diego,812,8,3,1,1,3,17,1,73,0,18,50,0,5,6,11,N/A,N/A,31,99,2,18,42,23,15,3.32\r\n,Natomas Park Elementary,Natomas Unified,Sacramento,812,5,20,0,19,9,19,2,21,4,44,5,0,24,3,11,31,32,N/A,77,3,19,36,32,10,3.28\r\n,Royal Oaks Elementary,Visalia Unified,Tulare,812,5,3,2,2,0,44,0,41,7,61,18,1,10,2,5,27,29,N/A,98,5,16,39,25,14,3.27\r\nY,Anderson New Technology High,Anderson Union High,Shasta,812,8,1,5,1,1,10,0,77,5,57,0,0,1,1,4,N/A,N/A,31,98,3,16,43,25,12,3.26\r\n,Evergreen Elementary,Cotati-Rohnert Park Unified,Sonoma,812,5,1,1,4,2,27,0,61,5,34,0,0,14,7,15,29,31,N/A,98,3,18,38,33,8,3.24\r\n,Braly Elementary,Santa Clara Unified,Santa Clara,812,5,4,1,33,6,35,0,14,6,41,8,2,46,9,21,25,23,N/A,94,10,22,20,28,19,3.24\r\n,,Auburn Union Elementary,Placer,812,B,2,2,2,1,21,0,71,2,49,12,0,13,4,11,20,27,25,92,7,20,32,24,17,3.24\r\n,Simi Valley High,Simi Valley Unified,Ventura,812,8,1,0,9,2,23,0,63,1,21,13,0,3,9,14,N/A,N/A,30,91,5,25,35,23,12,3.11\r\n,Portola Junior/Senior High,Plumas Unified,Plumas,812,8,0,1,1,0,25,0,69,3,41,9,0,0,0,12,,,,92,6,20,46,18,10,3.06\r\n,Eleanor Roosevelt High,Corona-Norco Unified,Riverside,812,8,13,0,12,5,49,0,21,0,40,7,0,6,19,9,N/A,N/A,32,87,12,20,34,23,12,3.03\r\n,Brittan Elementary,Brittan Elementary,Sutter,812,5,0,1,1,0,19,0,72,7,54,0,0,6,0,7,21,24,22,99,7,16,54,18,5,2.98\r\n,Hollister Dual Language Academy,Hollister,San Benito,812,5,0,0,1,1,88,0,10,0,59,9,19,41,11,3,28,38,N/A,98,17,20,30,19,14,2.95\r\n,Green Valley Independent Study,Yucaipa-Calimesa Joint Unified,San Bernardino,812,B,2,0,0,0,25,0,71,2,27,2,0,3,3,0,,,,97,3,39,31,13,13,2.93\r\n,Crittenden Middle,Mountain View Whisman,Santa Clara,812,6,5,0,7,5,60,2,17,3,62,12,0,36,21,15,N/A,27,28,94,18,21,27,19,15,2.92\r\n,Mary Peacock Elementary,Del Norte County Unified,Del Norte,812,5,0,9,7,1,18,0,64,1,62,13,0,13,0,13,20,25,N/A,96,8,28,40,14,10,2.91\r\n,Agua Dulce Elementary,Acton-Agua Dulce Unified,Los Angeles,812,5,3,1,0,0,36,0,59,1,43,1,0,25,0,18,21,26,N/A,88,18,12,36,31,2,2.88\r\n,Edna Brewer Middle,Oakland Unified,Alameda,812,6,39,1,27,1,18,0,11,2,72,39,0,9,24,15,N/A,27,25,42,17,25,23,21,14,2.88\r\n,Pioneer Elementary,Pioneer Union Elementary,El Dorado,812,5,0,2,0,0,16,0,73,9,55,0,0,4,1,22,24,25,N/A,96,6,36,32,18,7,2.84\r\n,Fullerton Union High,Fullerton Joint Union High,Orange,812,8,2,0,4,1,62,0,28,2,44,30,0,14,23,8,N/A,N/A,33,97,22,24,24,18,13,2.76\r\n,Desert Knolls Elementary,Apple Valley Unified,San Bernardino,812,5,12,0,3,1,40,1,43,0,64,11,0,8,2,13,24,26,N/A,95,14,27,37,17,5,2.73\r\n,Emory Elementary,South Bay Union Elementary,San Diego,812,5,4,1,2,12,72,1,8,1,73,17,0,34,9,10,24,30,N/A,83,14,30,32,18,6,2.73\r\n,,Hornbrook Elementary,Siskiyou,812,B,0,13,0,0,17,0,67,3,97,23,0,0,0,17,4,3,N/A,93,0,61,18,14,7,2.68\r\n,Hornbrook Elementary,Hornbrook Elementary,Siskiyou,812,5,0,13,0,0,17,0,67,3,97,23,0,0,0,17,4,3,N/A,93,0,61,18,14,7,2.68\r\n,Dunlap Elementary,Kings Canyon Joint Unified,Fresno,812,5,0,1,3,1,22,0,68,5,64,2,0,9,4,7,24,25,24,100,15,26,38,16,4,2.67\r\n,Riverview Middle,River Delta Joint Unified,Sacramento,812,6,1,0,2,0,37,0,58,2,57,16,3,12,13,20,N/A,22,30,97,17,27,33,18,5,2.66\r\n,San Altos Elementary,Lemon Grove,San Diego,812,5,12,1,4,2,58,3,16,4,100,14,0,26,7,16,27,29,N/A,95,13,31,38,15,3,2.63\r\n,Silverado Middle,Napa Valley Unified,Napa,812,6,1,1,1,0,54,1,38,4,52,18,4,17,24,10,N/A,27,26,95,30,18,23,19,9,2.59\r\n,Merwin Elementary,Covina-Valley Unified,Los Angeles,812,5,2,0,0,2,89,0,6,1,78,3,0,26,5,15,19,23,N/A,99,13,35,40,10,1,2.51\r\n,March Middle,Val Verde Unified,Riverside,812,6,21,0,2,1,68,0,5,1,86,15,0,17,24,13,N/A,26,30,87,23,32,28,12,5,2.44\r\n,Lincoln Elementary,Simi Valley Unified,Ventura,812,5,0,0,4,1,69,0,25,0,65,2,0,47,7,11,22,25,N/A,74,23,38,23,13,3,2.35\r\n,Wilshire Crest Elementary,Los Angeles Unified,Los Angeles,812,5,36,1,4,3,54,1,1,0,86,4,0,33,10,18,16,12,N/A,87,30,25,30,12,2,2.3\r\n,Central Gaither Elementary,Yuba City Unified,Sutter,812,5,1,0,11,0,68,0,19,1,90,5,5,32,35,18,24,18,14,90,37,31,11,18,4,2.22\r\n,Elder Creek Elementary,Sacramento City Unified,Sacramento,812,5,6,0,56,0,30,3,3,2,100,15,0,45,28,8,25,32,N/A,81,35,30,19,11,5,2.22\r\n,Webber Elementary,Westminster Elementary,Orange,812,5,0,1,48,0,46,0,3,0,86,19,0,67,15,9,21,32,N/A,91,27,43,16,9,4,2.19\r\n,Jefferson Elementary,Lennox,Los Angeles,812,5,1,0,1,0,96,1,0,0,88,2,0,56,21,9,19,24,N/A,78,25,45,20,5,4,2.18\r\n,Los Nietos Middle,Los Nietos,Los Angeles,812,6,1,0,0,0,97,0,1,0,100,11,3,35,13,12,N/A,N/A,26,99,26,40,24,8,1,2.18\r\n,Belle Air Elementary,San Bruno Park Elementary,San Mateo,812,5,0,1,6,3,76,10,4,0,76,1,0,75,9,12,29,28,N/A,90,22,53,14,11,0,2.14\r\n,Fair Avenue Elementary,Los Angeles Unified,Los Angeles,812,5,2,0,1,1,93,0,3,0,100,4,0,30,27,9,22,25,N/A,85,34,37,21,6,2,2.07\r\n,Earl Warren Elementary,Sacramento City Unified,Sacramento,812,5,7,1,22,1,61,1,5,3,100,7,0,55,11,11,27,29,N/A,85,39,31,17,7,5,2.07\r\n,Benjamin F. Beswick Elementary,Tustin Unified,Orange,812,5,2,0,4,2,89,0,3,0,86,2,0,72,6,6,22,31,N/A,89,39,34,19,5,4,2.02\r\n,Dickison Elementary,Compton Unified,Los Angeles,812,5,11,0,0,0,86,1,0,0,89,5,0,55,24,6,19,24,N/A,79,46,27,15,7,5,1.97\r\n,Osceola Street Elementary,Los Angeles Unified,Los Angeles,812,5,3,1,2,1,90,1,3,0,89,7,0,35,19,13,18,18,N/A,31,45,30,15,8,3,1.93\r\n,Campus Park Elementary,Livingston Union Elementary,Merced,812,5,1,1,7,0,88,0,3,0,92,0,9,67,9,7,19,28,N/A,96,41,35,19,5,0,1.89\r\n,Cesar Chavez Elementary,Alum Rock Union Elementary,Santa Clara,812,5,3,0,14,1,79,1,1,0,100,8,6,56,23,13,20,26,N/A,86,49,31,8,7,5,1.89\r\nD,Aspire ERES Academy,Oakland Unified,Alameda,812,5,1,0,0,1,97,0,0,0,94,0,0,58,36,7,22,26,28,72,39,45,15,2,0,1.79\r\n,Hansen Elementary,Savanna Elementary,Orange,812,5,3,0,13,4,69,1,8,2,81,3,0,53,15,9,27,32,N/A,95,46,38,11,3,2,1.77\r\n,Handy Elementary,Orange Unified,Orange,812,5,1,0,1,0,90,1,6,0,90,0,1,72,9,11,20,23,N/A,96,58,24,13,4,1,1.67\r\n,,Berkeley Unified,Alameda,811,B,22,0,8,0,22,0,33,10,39,15,0,13,7,14,19,24,24,90,7,11,20,25,36,3.71\r\n,Point Loma High,San Diego Unified,San Diego,811,8,7,1,2,1,38,0,50,1,41,35,0,8,17,10,N/A,N/A,29,92,9,15,27,27,23,3.39\r\n,Spy Rock Elementary,Laytonville Unified,Mendocino,811,5,0,0,0,0,0,0,100,0,15,0,0,0,0,15,1,N/A,N/A,100,0,15,38,38,8,3.38\r\n,Prairie Elementary,Pacheco Union Elementary,Shasta,811,5,0,1,2,0,17,0,75,4,52,0,0,0,0,10,25,N/A,N/A,99,3,16,42,27,12,3.3\r\n,Lincoln Street Independent,Tehama County Office of Educat,Tehama,811,5,0,6,2,0,12,0,80,0,59,0,0,6,0,12,2,N/A,N/A,98,4,8,56,24,8,3.24\r\nY,Watsonville Charter School of the Arts,Pajaro Valley Unified,Santa Cruz,811,5,1,0,2,3,66,0,27,0,49,1,0,19,10,9,20,24,N/A,50,2,14,52,24,8,3.22\r\n,Neal Dow Elementary,Chico Unified,Butte,811,5,3,3,5,1,14,2,68,0,50,0,0,5,1,13,25,33,N/A,96,4,22,40,23,11,3.16\r\n,Morrill Middle,Berryessa Union Elementary,Santa Clara,811,6,4,0,39,23,21,1,6,2,41,20,0,25,32,12,N/A,28,27,99,8,21,34,27,9,3.08\r\n,Helendale Elementary,Helendale Elementary,San Bernardino,811,5,11,1,3,1,30,0,53,0,54,0,0,1,6,12,29,23,N/A,91,2,18,54,23,3,3.07\r\n,Arcata Elementary,Arcata Elementary,Humboldt,811,5,2,8,5,1,14,0,59,4,64,7,0,5,2,18,17,22,N/A,64,14,20,27,24,16,3.07\r\n,American Canyon Middle,Napa Valley Unified,Napa,811,6,11,0,5,25,36,1,15,5,38,16,1,12,18,7,N/A,28,28,96,13,18,29,34,6,3.02\r\n,Jackson Elementary,Amador County Unified,Amador,811,5,0,1,1,0,20,0,69,8,47,5,0,4,3,11,29,29,N/A,98,4,31,37,14,14,3.02\r\n,Hemlock Elementary,Fontana Unified,San Bernardino,811,5,12,0,3,2,72,1,10,0,68,4,0,26,6,16,21,31,N/A,99,9,28,35,21,7,2.88\r\n,John E. Steinbeck Elementary,Alisal Union,Monterey,811,5,3,0,3,6,79,0,9,0,98,16,2,35,10,15,27,28,N/A,95,17,22,31,21,10,2.86\r\n,Etna Union High,Scott Valley Unified,Siskiyou,811,8,1,6,0,0,15,0,71,7,51,0,0,1,3,8,N/A,N/A,17,94,1,54,17,20,8,2.8\r\n,Traweek Middle,Covina-Valley Unified,Los Angeles,811,6,3,1,7,2,78,0,9,1,68,12,0,8,13,11,N/A,28,27,98,11,28,38,17,6,2.79\r\n,President Avenue Elementary,Los Angeles Unified,Los Angeles,811,5,22,0,4,5,53,4,12,0,66,5,0,14,7,18,15,9,N/A,79,17,22,35,20,7,2.77\r\n,,Cajon Valley Union,San Diego,811,B,7,0,2,1,35,1,48,3,59,10,0,31,11,12,23,29,29,91,16,32,27,17,9,2.71\r\n,Hillview Middle,East Whittier City Elementary,Los Angeles,811,6,1,0,1,1,83,0,12,0,52,8,0,12,13,12,N/A,29,25,94,14,29,38,14,5,2.66\r\n,Westmore Oaks Elementary,Washington Unified,Yolo,811,5,6,3,9,2,38,2,39,1,72,24,0,13,10,7,19,31,28,96,13,34,33,17,3,2.63\r\n,Thomas Elementary,Fresno Unified,Fresno,811,5,11,1,12,0,56,0,19,0,100,2,1,13,7,9,26,27,N/A,93,15,28,41,12,5,2.63\r\n,Parsons Junior High,Enterprise Elementary,Shasta,811,6,4,5,9,1,19,0,50,2,76,10,0,7,8,9,N/A,27,29,92,13,33,37,13,4,2.61\r\n,Sierra Vista Elementary,La Habra City Elementary,Orange,811,5,1,0,1,1,84,0,12,0,67,13,0,35,16,8,29,29,N/A,76,25,28,21,15,10,2.56\r\n,Anna McKenney Intermediate,Marysville Joint Unified,Yuba,811,6,7,2,8,1,32,1,47,1,74,9,1,14,12,9,N/A,24,25,75,17,32,38,6,7,2.55\r\n,Longfellow Elementary,San Francisco Unified,San Francisco,811,5,4,0,23,29,36,1,1,3,79,11,0,51,17,11,21,28,N/A,90,19,34,24,21,3,2.55\r\n,Orangeview Junior High,Anaheim Union High,Orange,811,6,6,0,10,6,64,1,13,0,79,6,0,30,31,12,N/A,N/A,33,8,24,28,28,14,8,2.54\r\n,Fremont Elementary,Fowler Unified,Fresno,811,5,0,0,12,0,78,0,9,1,70,3,1,23,17,10,26,26,N/A,97,24,25,29,19,3,2.51\r\n,Virginia Parks Elementary,Ceres Unified,Stanislaus,811,5,2,0,7,0,67,0,20,3,74,7,1,35,7,14,23,28,N/A,100,17,40,27,12,5,2.48\r\n,Billy Mitchell Elementary,Lawndale Elementary,Los Angeles,811,5,8,0,2,0,81,1,5,1,86,2,0,51,5,17,23,26,N/A,97,20,33,31,14,2,2.44\r\n,Valley Center High,Valley Center-Pauma Unified,San Diego,811,8,1,8,1,1,39,0,47,0,38,9,2,13,18,8,N/A,N/A,27,98,31,22,28,14,5,2.38\r\n,Lenwood Elementary,Barstow Unified,San Bernardino,811,5,8,0,0,0,60,0,29,2,88,1,0,27,2,7,24,24,N/A,81,18,41,30,10,1,2.37\r\n,Yamato Colony Elementary,Livingston Union Elementary,Merced,811,5,0,1,10,1,83,0,4,0,85,0,7,58,20,9,20,27,N/A,99,28,33,22,17,1,2.29\r\n,Rice (Eldridge) Elementary,Garvey Elementary,Los Angeles,811,5,0,0,53,0,45,0,0,0,89,15,2,47,23,11,23,29,N/A,91,26,42,15,11,6,2.28\r\n,Fourth Street Elementary,Los Angeles Unified,Los Angeles,811,5,0,0,0,0,99,0,0,0,100,5,0,33,20,10,16,20,N/A,85,32,36,19,10,3,2.17\r\n,San Gabriel High,Alhambra Unified,Los Angeles,811,8,0,0,57,1,40,0,1,1,85,3,2,27,42,7,N/A,N/A,32,92,33,37,13,13,3,2.16\r\nD,Stella Middle Charter Academy,Los Angeles Unified,Los Angeles,811,6,12,0,2,0,85,0,1,1,88,0,0,32,32,10,N/A,28,34,86,39,28,20,6,7,2.16\r\n,Granite Hill Elementary,Jurupa Unified,Riverside,811,5,3,0,1,0,86,0,10,0,85,10,0,42,12,12,24,29,N/A,98,33,36,20,9,4,2.15\r\nY,Rosemary Elementary,Campbell Union,Santa Clara,811,5,4,0,3,0,84,2,5,0,84,9,0,72,8,8,22,30,N/A,91,29,44,17,8,3,2.13\r\n,San Antonio Elementary,Alum Rock Union Elementary,Santa Clara,811,5,1,0,14,6,75,3,2,0,100,5,2,42,29,7,20,32,N/A,97,42,27,13,15,3,2.11\r\n,Kittridge Street Elementary,Los Angeles Unified,Los Angeles,811,5,2,0,2,2,81,0,13,0,100,7,0,49,23,13,21,23,N/A,90,41,30,16,9,4,2.07\r\n,Railway Elementary,Perris Elementary,Riverside,811,5,6,0,1,1,85,1,6,0,100,5,0,55,9,7,24,28,N/A,79,35,32,23,10,0,2.07\r\n,Carl Harvey Elementary,Santa Ana Unified,Orange,811,5,0,0,0,0,99,0,0,0,97,7,6,61,25,13,25,28,N/A,94,56,28,14,1,0,1.63\r\nY,Grayson Charter,Patterson Joint Unified,Stanislaus,811,5,1,0,0,0,98,0,1,0,52,3,5,69,24,9,22,19,N/A,96,65,20,9,4,1,1.55\r\n,Montera Middle,Oakland Unified,Alameda,810,6,40,0,10,1,18,1,27,2,47,42,0,5,11,13,N/A,30,28,40,7,18,20,32,23,3.46\r\n,Walgrove Avenue Elementary,Los Angeles Unified,Los Angeles,810,5,12,1,6,1,43,0,39,0,47,9,0,13,8,24,13,10,N/A,60,10,15,20,29,25,3.45\r\n,Aptos High,Pajaro Valley Unified,Santa Cruz,810,8,1,0,3,1,30,0,63,0,28,19,3,7,11,10,N/A,N/A,28,89,9,19,16,38,18,3.38\r\nY,Primary Years Academy,Stockton Unified,San Joaquin,810,5,8,5,8,9,47,0,22,0,68,1,0,8,4,6,26,24,N/A,94,0,25,32,26,16,3.34\r\n,Jamul Primary,Jamul-Dulzura Union Elementary,San Diego,810,5,2,2,2,1,32,0,59,1,39,0,0,22,2,13,21,N/A,N/A,98,1,18,43,25,13,3.32\r\n,Brook Haven Elementary,Sebastopol Union Elementary,Sonoma,810,5,3,2,2,0,21,0,69,1,38,4,2,12,4,16,22,27,29,93,5,21,29,28,17,3.3\r\n,Casa Grande High,Petaluma City Schools,Sonoma,810,8,1,0,6,2,32,0,53,5,35,10,1,12,19,13,N/A,N/A,28,95,11,17,27,30,16,3.24\r\n,Twentynine Palms Elementary,Morongo Unified,San Bernardino,810,5,9,0,0,1,25,0,61,4,48,5,0,4,0,12,25,26,N/A,98,8,19,35,22,15,3.18\r\n,Santana High,Grossmont Union High,San Diego,810,8,2,1,1,1,16,1,78,0,19,49,0,6,4,11,N/A,N/A,26,96,3,23,45,19,11,3.13\r\n,,Elk Grove Unified,Sacramento,810,B,16,1,21,5,25,2,23,6,56,6,0,15,16,10,22,26,25,93,10,25,28,25,13,3.06\r\n,Rio Bravo-Greeley Elementary,Rio Bravo-Greeley Union Elemen,Kern,810,6,1,0,0,0,40,0,56,1,42,11,0,3,13,8,N/A,24,23,92,12,21,30,26,11,3.02\r\n,,Cuddeback Union Elementary,Humboldt,810,B,0,3,0,0,2,0,92,2,43,9,0,0,0,27,20,18,N/A,95,3,43,28,10,15,2.91\r\n,Cuddeback Elementary,Cuddeback Union Elementary,Humboldt,810,5,0,3,0,0,2,0,92,2,43,9,0,0,0,27,20,18,N/A,95,3,43,28,10,15,2.91\r\n,Mary P. Henck Intermediate,Rim of the World Unified,San Bernardino,810,6,1,0,1,0,29,0,62,5,51,11,0,8,6,11,N/A,31,31,94,12,24,37,18,10,2.9\r\n,Mesa Middle,Lucia Mar Unified,San Luis Obispo,810,6,0,0,1,1,55,0,42,2,60,10,1,19,10,14,N/A,N/A,26,84,16,21,34,23,7,2.84\r\n,Cedarwood Elementary,Paradise Unified,Butte,810,5,0,2,0,1,9,0,79,9,76,0,0,0,0,14,25,26,N/A,100,9,21,52,13,4,2.81\r\n,Prescott Senior Elementary,Stanislaus Union Elementary,Stanislaus,810,6,6,1,13,2,42,2,30,1,59,11,0,14,18,10,N/A,N/A,26,95,14,26,34,16,10,2.8\r\n,Park View Middle,Yucaipa-Calimesa Joint Unified,San Bernardino,810,6,1,1,1,1,37,0,58,1,49,15,0,8,9,12,N/A,N/A,31,95,11,32,34,16,8,2.77\r\n,John R. Williams,Lincoln Unified,San Joaquin,810,5,15,1,13,2,43,2,22,0,81,3,0,20,5,21,27,30,N/A,91,11,27,39,17,5,2.77\r\n,Cabrillo Elementary,Fremont Unified,Alameda,810,5,8,0,13,9,49,1,12,5,63,1,2,41,17,13,24,26,N/A,95,16,28,27,21,7,2.76\r\n,Alexander Rose Elementary,Milpitas Unified,Santa Clara,810,5,2,0,29,18,39,1,7,3,59,3,0,44,16,11,28,32,N/A,79,14,28,34,18,6,2.72\r\n,La Mesa Dale Elementary,La Mesa-Spring Valley,San Diego,810,5,22,0,5,2,41,2,21,8,69,10,0,19,13,8,29,32,N/A,90,11,36,30,18,6,2.72\r\n,Douglass Middle,Woodland Joint Unified,Yolo,810,6,1,1,5,1,66,0,24,2,63,23,2,20,26,6,N/A,N/A,26,87,22,22,31,17,8,2.68\r\n,Monroe Elementary,San Leandro Unified,Alameda,810,5,12,0,23,11,40,1,10,3,67,16,0,29,21,20,25,27,N/A,94,15,31,29,19,5,2.68\r\n,Baldy View Elementary,Upland Unified,San Bernardino,810,5,15,1,2,1,66,0,13,3,83,9,0,22,4,10,24,28,N/A,96,12,30,40,12,5,2.67\r\n,Belvedere Elementary,San Bernardino City Unified,San Bernardino,810,5,6,1,2,0,71,1,16,1,98,14,0,38,12,4,28,32,N/A,63,17,31,30,14,9,2.67\r\n,Stewart Elementary,West Contra Costa Unified,Contra Costa,810,5,22,1,11,10,36,0,19,0,45,15,0,15,14,9,23,26,25,93,9,41,31,16,3,2.64\r\n,Westmont Elementary,Ocean View,Orange,810,5,0,0,12,1,60,0,22,3,67,0,0,47,10,21,20,32,N/A,95,27,19,26,19,8,2.62\r\n,Las Palmas Middle,Covina-Valley Unified,Los Angeles,810,6,4,1,2,3,81,0,9,0,72,12,0,13,17,14,N/A,28,29,96,17,30,32,15,5,2.59\r\n,Waterford High,Waterford Unified,Stanislaus,810,8,1,0,2,0,46,0,37,1,56,6,11,10,23,14,N/A,N/A,27,90,18,43,22,10,8,2.47\r\n,Carrillo Ranch Elementary,Desert Sands Unified,Riverside,810,5,3,0,1,1,83,0,10,1,82,1,0,38,12,10,29,29,N/A,98,23,36,22,12,7,2.44\r\n,De Anza Elementary,San Jacinto Unified,Riverside,810,5,9,0,1,0,62,1,23,4,77,3,0,28,6,10,28,28,N/A,97,21,34,30,11,4,2.43\r\n,Highland Elementary,Inglewood Unified,Los Angeles,810,5,53,1,1,1,43,0,1,0,91,0,0,12,1,18,26,23,N/A,96,21,37,27,9,7,2.43\r\n,J. W. Oakley Elementary,Brawley Elementary,Imperial,810,5,1,0,0,0,94,0,4,0,80,3,12,51,0,8,23,N/A,N/A,100,26,33,28,9,5,2.33\r\n,Howard Elementary,Ontario-Montclair Elementary,San Bernardino,810,5,1,0,8,1,84,0,4,2,81,15,0,56,7,13,27,28,N/A,94,29,34,21,10,6,2.3\r\n,Chaparral Hills Elementary,Moreno Valley Unified,Riverside,810,5,15,0,1,1,73,0,8,1,82,4,2,41,7,11,28,29,N/A,89,27,33,28,10,2,2.29\r\n,Santa Fe High,Whittier Union High,Los Angeles,810,8,2,0,1,2,89,0,6,0,70,0,0,12,20,6,N/A,N/A,34,89,30,29,29,9,4,2.27\r\n,Parkside Elementary,Pittsburg Unified,Contra Costa,810,5,16,1,3,6,64,2,6,3,89,0,0,47,5,10,20,24,N/A,92,19,50,19,10,2,2.27\r\n,El Sereno Elementary,Los Angeles Unified,Los Angeles,810,5,0,0,2,0,98,0,0,0,100,8,0,32,16,9,17,21,N/A,87,25,39,24,10,1,2.24\r\n,Frank Ledesma Elementary,Soledad Unified,Monterey,810,5,0,0,1,2,95,0,1,0,93,0,1,59,10,9,24,35,N/A,99,35,28,19,15,3,2.23\r\n,Lyndon B. Johnson Elementary,Desert Sands Unified,Riverside,810,5,1,0,1,1,94,0,3,0,84,2,0,26,18,9,26,27,N/A,99,25,41,25,6,3,2.22\r\n,Newberry Springs Elementary,Silver Valley Unified,San Bernardino,810,5,4,4,0,0,46,0,43,2,77,0,0,14,2,6,26,25,N/A,99,16,55,22,4,2,2.21\r\n,American Union Elementary,Washington Unified,Fresno,810,5,1,1,6,0,66,0,25,1,68,17,8,30,13,5,17,20,N/A,95,32,31,23,12,2,2.2\r\n,Mariposa-Nabi Primary Center,Los Angeles Unified,Los Angeles,810,5,3,0,14,1,80,0,1,0,97,0,0,60,15,13,21,N/A,N/A,91,41,28,10,14,7,2.19\r\n,Gray Avenue Middle,Yuba City Unified,Sutter,810,6,4,1,7,1,63,1,20,3,89,4,4,15,33,13,N/A,22,24,96,34,33,19,10,3,2.13\r\n,Success & College Connection Academy,Franklin-McKinley Elementary,Santa Clara,810,5,2,0,26,3,67,0,2,1,89,14,4,48,34,7,22,32,N/A,98,35,36,16,9,3,2.09\r\n,Prospect Elementary,Orange Unified,Orange,810,5,1,0,1,1,86,0,10,0,84,0,0,59,8,22,27,28,N/A,92,42,31,17,7,3,1.97\r\n,Paramount Elementary,Azusa Unified,Los Angeles,810,5,0,0,1,0,97,0,1,1,85,6,3,33,16,9,24,33,N/A,100,37,38,19,4,2,1.95\r\n,Janie P. Abbott Elementary,Lynwood Unified,Los Angeles,810,5,5,0,0,0,94,0,0,0,93,6,1,49,20,9,30,29,N/A,74,51,23,20,5,1,1.82\r\n,Frank J. Zamboni,Paramount Unified,Los Angeles,810,6,7,0,0,0,92,0,0,0,94,5,0,31,39,10,N/A,19,20,96,52,29,12,4,2,1.74\r\n,Washington Accelerated Elementary,Pasadena Unified,Los Angeles,810,5,11,0,0,1,87,0,1,0,96,5,0,50,18,8,24,26,N/A,93,67,20,8,3,1,1.51\r\n,Hillsdale High,San Mateo Union High,San Mateo,809,8,2,0,15,5,29,1,35,13,21,8,0,12,14,12,N/A,N/A,26,96,7,14,19,31,29,3.61\r\n,Nevada Union High,Nevada Joint Union High,Nevada,809,8,1,2,2,0,7,0,85,2,17,3,0,1,1,7,N/A,N/A,23,99,2,14,35,27,22,3.53\r\n,Liberty High,Kern Union High,Kern,809,8,4,1,3,2,25,0,60,3,19,22,0,1,5,6,N/A,N/A,25,100,4,14,32,27,24,3.52\r\n,Summerville High,Summerville Union High,Tuolumne,809,8,1,2,0,0,8,1,87,1,45,0,0,0,0,4,N/A,N/A,28,93,1,15,51,23,9,3.22\r\n,Sonora High,Fullerton Joint Union High,Orange,809,8,1,0,10,2,61,0,24,1,41,38,0,16,23,10,N/A,N/A,33,73,14,22,23,23,17,3.08\r\n,Skyblue Mesa Elementary,Saugus Union,Los Angeles,809,5,4,1,6,6,36,0,46,1,31,6,0,15,3,17,23,27,N/A,99,8,23,34,28,8,3.07\r\n,,Charter Oak Unified,Los Angeles,809,B,3,1,4,2,59,0,26,4,43,9,0,6,11,10,22,31,30,90,7,25,34,24,10,3.06\r\n,Grace Yokley Middle,Mountain View Elementary,San Bernardino,809,6,8,0,3,2,71,0,12,4,61,0,0,20,12,11,N/A,24,26,93,8,21,38,23,9,3.04\r\n,,Piner-Olivet Union Elementary,Sonoma,809,B,5,2,9,1,38,1,42,0,45,3,0,31,2,10,23,22,15,85,8,25,32,27,8,3.01\r\n,Loyalton Middle,Sierra-Plumas Joint Unified,Sierra,809,6,0,2,0,0,14,0,84,0,43,12,0,4,4,0,N/A,N/A,20,96,4,24,53,14,4,2.9\r\n,Baldwin (Julia) Elementary,Oak Grove Elementary,Santa Clara,809,5,13,1,15,5,43,2,19,2,55,17,0,21,12,10,25,35,N/A,94,9,32,28,24,8,2.9\r\n,O'Hara Park Middle,Oakley Union Elementary,Contra Costa,809,6,6,0,2,3,41,0,43,4,44,8,0,13,10,18,N/A,25,25,96,10,27,38,17,9,2.89\r\n,Carriage Drive Elementary,San Juan Unified,Sacramento,809,5,6,1,2,2,20,1,66,1,64,3,0,17,3,12,27,34,N/A,74,9,23,43,20,5,2.87\r\n,Terrace,Lakeport Unified,Lake,809,6,1,11,1,1,22,0,62,0,58,2,4,6,9,11,N/A,24,22,95,8,29,39,19,6,2.85\r\n,Monterey Heights Elementary,Lemon Grove,San Diego,809,5,15,0,3,3,58,1,14,5,100,11,0,21,7,11,28,31,N/A,96,14,22,41,16,7,2.81\r\n,Waterloo Elementary,Linden Unified,San Joaquin,809,6,2,1,2,0,51,0,44,0,56,7,5,25,18,13,N/A,29,31,57,20,25,22,23,11,2.8\r\n,Orchard Park,Antioch Unified,Contra Costa,809,5,18,1,3,5,36,1,36,0,51,1,0,14,4,9,29,17,N/A,69,9,30,42,14,6,2.77\r\n,South Tahoe Middle,Lake Tahoe Unified,El Dorado,809,6,2,2,1,4,40,0,47,1,60,7,0,26,7,14,N/A,25,26,70,14,39,16,18,13,2.76\r\n,Sycamore Hills Elementary,Colton Joint Unified,San Bernardino,809,5,6,0,4,4,77,0,7,0,66,17,0,33,10,9,21,31,N/A,95,17,25,33,18,8,2.76\r\n,Hanson Elementary,Ramona City Unified,San Diego,809,5,1,0,1,1,45,0,45,1,54,0,3,32,2,19,20,31,N/A,85,20,21,31,20,8,2.74\r\n,Elim Elementary,Hilmar Unified,Merced,809,5,1,1,1,0,32,0,65,1,56,9,3,24,8,11,20,28,N/A,99,15,29,29,22,5,2.74\r\n,,Lemoore Union Elementary,Kings,809,B,6,1,1,5,58,0,25,3,60,3,7,23,6,11,24,25,27,96,13,28,39,13,7,2.73\r\n,Chipman Junior High,Bakersfield City,Kern,809,6,7,1,1,1,71,0,17,1,68,9,4,8,18,7,N/A,N/A,23,61,17,27,35,14,7,2.67\r\n,Frances Blend Special Education Center,Los Angeles Unified,Los Angeles,809,C,10,0,10,2,71,0,6,0,79,0,0,58,0,100,4,6,7,63,27,20,30,17,7,2.57\r\n,,Desert Sands Unified,Riverside,809,B,2,0,2,1,70,0,24,1,69,9,1,20,19,10,27,28,21,98,24,28,25,15,8,2.56\r\n,Clover Flat Elementary,Mountain Empire Unified,San Diego,809,5,1,0,0,0,33,0,3,0,61,1,0,0,1,5,17,19,N/A,97,14,41,26,15,4,2.55\r\n,Meadow Lane Elementary,Lemoore Union Elementary,Kings,809,5,6,1,1,6,61,1,19,4,67,1,10,31,3,15,25,23,N/A,97,16,35,35,9,6,2.53\r\n,Theodore Roosevelt Middle,Glendale Unified,Los Angeles,809,6,1,0,1,11,51,0,35,0,84,9,0,21,55,14,N/A,28,25,86,22,39,11,21,7,2.52\r\n,Leo B. Hart Elementary,Panama-Buena Vista Union,Kern,809,5,11,1,7,2,39,0,39,1,54,4,0,14,6,23,28,26,N/A,60,16,41,21,21,0,2.48\r\n,Garretson Elementary,Corona-Norco Unified,Riverside,809,5,4,1,3,1,75,0,17,1,65,11,0,35,16,12,24,30,N/A,98,31,25,20,13,11,2.48\r\n,Rice (Lilian J.) Elementary,Chula Vista Elementary,San Diego,809,5,5,0,2,2,84,2,5,0,75,7,0,53,4,17,21,27,N/A,64,22,34,24,11,8,2.48\r\n,Upland Elementary,Upland Unified,San Bernardino,809,5,6,1,3,1,75,0,14,1,90,8,0,30,7,13,24,23,N/A,94,20,30,37,10,4,2.48\r\n,Rancho Cucamonga Middle,Cucamonga Elementary,San Bernardino,809,6,16,0,4,3,65,1,9,1,76,11,0,19,23,15,N/A,25,29,95,15,34,40,9,2,2.47\r\n,,Lawndale Elementary,Los Angeles,809,B,9,0,5,1,76,1,5,2,81,9,0,38,20,14,24,30,27,93,21,35,28,14,3,2.42\r\n,James Workman Middle,Palm Springs Unified,Riverside,809,6,3,1,2,5,76,0,14,0,77,13,0,20,29,6,N/A,30,31,96,23,37,28,8,3,2.32\r\n,Aeolian Elementary,Los Nietos,Los Angeles,809,5,0,0,0,0,98,0,1,0,100,1,1,54,3,19,19,24,N/A,100,24,40,23,8,5,2.32\r\n,Ranchito Avenue Elementary,Los Angeles Unified,Los Angeles,809,5,2,0,1,10,79,0,8,0,91,18,0,38,17,10,20,20,N/A,88,29,34,20,13,4,2.3\r\n,Joaquin Miller Career and Transition Cen,Los Angeles Unified,Los Angeles,809,C,11,1,0,3,56,0,29,0,68,7,0,37,5,73,N/A,N/A,11,40,38,26,13,15,8,2.28\r\n,Sierra Middle,Riverside Unified,Riverside,809,6,6,1,2,0,73,1,16,0,83,6,0,17,22,18,N/A,N/A,25,98,31,28,32,7,3,2.23\r\n,Marina Middle,San Francisco Unified,San Francisco,809,6,10,0,63,3,14,1,7,1,78,37,0,23,45,14,N/A,29,24,70,20,54,13,11,2,2.22\r\n,,Geyserville Unified,Sonoma,809,B,1,0,1,0,59,1,39,0,62,0,11,41,6,18,21,19,8,89,40,19,27,10,4,2.19\r\n,Howard J. McKibben Elementary,South Whittier Elementary,Los Angeles,809,5,0,1,0,5,86,1,7,0,70,3,0,32,11,14,30,35,N/A,88,24,40,28,7,0,2.19\r\n,O. B. Whaley Elementary,Evergreen Elementary,Santa Clara,809,5,3,0,24,9,61,1,2,1,75,2,7,46,23,11,22,28,N/A,100,35,32,19,11,3,2.14\r\n,Charlotte N. Werner Elementary,Rialto Unified,San Bernardino,809,5,21,1,1,0,76,0,1,0,91,7,0,31,11,12,29,30,N/A,90,37,29,24,8,2,2.09\r\nD,Vaughn Next Century Learning Center,Los Angeles Unified,Los Angeles,809,5,1,0,0,0,98,0,0,0,99,10,0,24,47,7,20,25,25,99,58,28,5,7,1,1.66\r\n,Peres Elementary,West Contra Costa Unified,Contra Costa,809,5,20,0,3,0,76,1,0,0,99,3,0,60,13,10,20,24,N/A,90,57,33,6,4,0,1.58\r\n,San Francisco Public Montessori,San Francisco Unified,San Francisco,808,5,9,0,18,0,14,0,55,5,14,0,0,23,0,18,18,N/A,N/A,59,0,15,23,31,31,3.77\r\n,Mountain View Elementary,Mt. Diablo Unified,Contra Costa,808,5,6,1,5,6,33,1,40,4,43,1,0,21,6,29,28,24,N/A,64,5,13,35,38,9,3.34\r\n,Santiago High,Corona-Norco Unified,Riverside,808,8,7,0,8,2,35,0,47,0,26,14,0,3,13,8,N/A,N/A,33,98,8,15,33,31,14,3.26\r\n,Mable Barron,Lincoln Unified,San Joaquin,808,5,10,2,5,4,37,0,41,0,50,3,0,13,3,13,25,31,23,98,7,17,38,25,13,3.22\r\n,East Nicolaus High,East Nicolaus Joint Union High,Sutter,808,8,3,2,3,1,27,0,60,3,33,3,1,0,2,5,N/A,N/A,26,94,7,14,45,22,12,3.19\r\n,Calvert Street Elementary,Los Angeles Unified,Los Angeles,808,5,13,0,6,7,40,0,34,0,58,13,0,12,10,22,12,14,N/A,96,8,18,37,26,10,3.13\r\n,Meadowlark Elementary,Acton-Agua Dulce Unified,Los Angeles,808,5,0,1,1,0,26,0,66,1,32,0,0,9,0,12,28,28,N/A,91,5,25,31,31,8,3.12\r\n,Lakeside Middle,Lakeside Union Elementary,San Diego,808,6,2,2,1,1,23,1,68,3,35,8,0,7,5,16,N/A,28,28,96,6,23,39,22,10,3.09\r\n,Branciforte Middle,Santa Cruz City High,Santa Cruz,808,6,3,0,3,0,49,1,42,2,49,25,5,15,23,18,N/A,25,27,88,14,21,23,25,17,3.09\r\n,,San Diego Unified,San Diego,808,B,10,0,9,6,45,1,23,5,64,29,0,24,18,11,21,27,21,88,14,22,24,23,17,3.09\r\nD,Ingenium Charter,SBE - Ingenium Charter,Los Angeles,808,5,11,1,4,5,60,2,11,7,76,0,0,20,9,8,26,36,N/A,96,14,17,31,25,14,3.08\r\n,Hilltop Senior High,Sweetwater Union High,San Diego,808,8,2,0,2,3,79,1,13,0,44,22,0,14,29,10,N/A,N/A,28,83,8,27,26,27,11,3.06\r\n,,Maple Elementary,Kern,808,B,0,0,1,0,51,0,47,0,54,0,0,6,15,5,28,26,N/A,98,13,21,28,24,13,3.01\r\n,Maple Elementary,Maple Elementary,Kern,808,5,0,0,1,0,51,0,47,0,54,0,0,6,15,5,28,26,N/A,99,13,21,28,24,13,3.01\r\n,Ripon Elementary,Ripon Unified,San Joaquin,808,5,3,1,2,1,38,0,54,1,59,0,1,17,5,8,29,31,N/A,97,9,25,36,14,15,3.01\r\n,,Brittan Elementary,Sutter,808,B,0,1,1,0,19,0,72,7,54,0,0,6,0,8,21,24,22,99,7,16,54,18,5,2.98\r\n,G. M. Walters Junior High,Fremont Unified,Alameda,808,6,8,1,21,9,33,2,24,2,42,5,1,18,21,17,N/A,N/A,26,98,11,27,26,26,9,2.94\r\n,Rosebank Elementary,Chula Vista Elementary,San Diego,808,5,2,0,2,4,78,0,12,1,53,15,0,34,3,11,22,29,N/A,99,11,32,29,18,10,2.86\r\n,Toyon Elementary,Berryessa Union Elementary,Santa Clara,808,5,3,2,27,11,37,0,8,0,57,3,0,41,6,23,22,28,N/A,97,13,22,40,20,6,2.83\r\n,Rocky Hill Elementary,Exeter Union Elementary,Tulare,808,5,1,1,1,1,58,0,39,0,71,0,5,24,0,4,,,,97,17,22,38,15,9,2.77\r\n,William Howard Taft Elementary,Riverside Unified,Riverside,808,5,7,0,2,1,63,1,24,0,68,9,0,31,7,15,29,29,N/A,92,23,22,25,17,13,2.76\r\n,Burckhalter Elementary,Oakland Unified,Alameda,808,5,63,0,12,3,16,3,2,1,85,25,0,15,2,18,23,30,N/A,57,12,28,41,18,1,2.69\r\n,Clay Elementary,San Diego Unified,San Diego,808,5,26,0,7,1,38,0,18,10,100,15,0,22,9,16,24,35,N/A,92,9,37,34,15,5,2.69\r\n,Loyalton High,Sierra-Plumas Joint Unified,Sierra,808,8,2,1,0,0,20,0,76,0,48,16,0,4,6,7,N/A,N/A,12,99,9,34,41,15,1,2.66\r\n,Citrus Elementary,Upland Unified,San Bernardino,808,5,9,0,4,2,70,0,13,2,77,5,0,29,5,11,24,29,N/A,90,14,31,36,15,4,2.64\r\n,Garden Grove High,Garden Grove Unified,Orange,808,8,1,0,31,2,50,1,14,0,56,9,0,23,43,8,N/A,N/A,32,63,17,36,17,25,4,2.63\r\n,Big Valley Elementary,Big Valley Joint Unified,Lassen,808,5,0,1,0,0,21,0,74,4,64,0,23,10,0,0,14,2,N/A,61,16,24,41,16,2,2.63\r\n,Amargosa Creek Middle,Lancaster Elementary,Los Angeles,808,6,26,2,1,3,39,0,26,2,67,14,1,7,10,10,N/A,30,26,100,20,25,33,16,6,2.63\r\n,Thompson Elementary,San Bernardino City Unified,San Bernardino,808,5,12,1,5,2,57,0,20,1,97,17,0,17,11,9,27,34,N/A,61,15,34,32,14,5,2.62\r\n,Atwater Avenue Elementary,Los Angeles Unified,Los Angeles,808,5,1,0,2,15,73,1,8,0,79,15,0,25,18,20,17,16,N/A,94,22,22,31,23,2,2.61\r\n,McKinnon,Santa Rita Union Elementary,Monterey,808,5,1,0,4,7,78,0,9,0,66,0,2,50,11,13,28,26,N/A,86,21,30,25,20,4,2.55\r\n,George Visual and Performing Arts Magnet,Adelanto Elementary,San Bernardino,808,5,10,0,0,1,74,1,12,2,100,14,0,22,21,9,31,34,29,94,20,35,27,10,8,2.51\r\n,Redwood Middle,Napa Valley Unified,Napa,808,6,0,1,1,1,63,0,30,4,54,13,4,16,32,11,N/A,26,27,97,28,25,23,18,6,2.49\r\n,Madison Elementary,Sanger Unified,Fresno,808,5,2,0,5,0,79,1,11,2,83,2,5,29,10,9,23,30,N/A,99,25,22,35,18,0,2.46\r\n,Los Altos Elementary,Chula Vista Elementary,San Diego,808,5,3,1,0,3,87,2,3,0,66,8,0,57,6,11,21,27,N/A,67,18,42,24,13,4,2.43\r\n,Rio Hondo Elementary,El Monte City Elementary,Los Angeles,808,5,2,0,20,2,67,0,9,0,75,8,1,26,14,9,29,30,24,99,23,33,26,15,3,2.42\r\n,La Quinta Middle,Desert Sands Unified,Riverside,808,6,2,0,2,1,78,0,15,1,81,11,1,11,24,11,N/A,26,27,98,22,35,29,10,5,2.4\r\nD,Today's Fresh Start Charter,SBE - Today's Fresh Start Char,Los Angeles,808,5,63,1,0,0,36,0,0,0,96,0,0,20,19,11,14,19,22,98,16,46,27,8,3,2.37\r\n,Cesar Chavez Intermediate,Sacramento City Unified,Sacramento,808,5,23,1,20,1,48,3,3,2,100,13,1,35,21,12,N/A,25,N/A,64,28,36,20,7,8,2.31\r\n,Arizona Middle,Alvord Unified,Riverside,808,6,7,0,3,2,79,0,9,0,77,10,0,38,15,11,N/A,28,30,96,36,31,22,7,4,2.12\r\n,Strathern Street Elementary,Los Angeles Unified,Los Angeles,808,5,1,0,2,5,84,0,7,0,100,7,0,31,20,13,20,23,N/A,92,36,32,19,9,3,2.11\r\n,Birdielee V. Bright Elementary,Los Angeles Unified,Los Angeles,808,5,21,0,0,0,78,0,0,0,86,16,0,28,23,10,20,20,N/A,17,44,32,17,1,5,1.9\r\n,,Savanna Elementary,Orange,808,B,4,0,14,6,56,1,15,2,70,3,0,44,12,12,26,31,N/A,97,42,36,14,7,1,1.89\r\n,Anderson Valley Junior-Senior High,Anderson Valley Unified,Mendocino,808,8,0,0,0,0,77,0,22,0,75,0,18,30,43,9,N/A,N/A,16,91,49,29,13,7,2,1.84\r\n,Frederick Remington Elementary,Santa Ana Unified,Orange,808,5,0,0,1,0,98,0,1,0,95,4,2,67,15,16,24,25,N/A,100,55,29,13,3,0,1.64\r\nY,Children's Community Charter,Paradise Unified,Butte,807,5,0,0,0,0,10,0,82,8,21,2,0,0,0,4,25,23,26,100,0,8,56,24,12,3.4\r\n,Placer High,Placer Union High,Placer,807,8,1,1,1,1,16,0,73,7,28,10,0,4,5,10,N/A,N/A,30,97,5,20,32,26,17,3.31\r\n,El Dorado High,El Dorado Union High,El Dorado,807,8,1,1,1,0,15,0,79,2,34,14,0,2,5,11,N/A,N/A,31,96,7,17,35,25,16,3.27\r\n,Golden Sierra High,Black Oak Mine Unified,El Dorado,807,8,1,3,1,1,6,0,88,0,39,12,0,0,0,15,N/A,N/A,22,99,1,20,43,25,12,3.27\r\n,John Muir Elementary,Lodi Unified,San Joaquin,807,5,8,0,28,15,26,1,20,1,46,21,0,18,9,12,28,30,N/A,87,6,21,35,26,13,3.19\r\nD,Rocky Point Charter,Gateway Unified,Shasta,807,5,0,6,3,0,10,0,75,7,61,0,0,0,1,4,22,25,N/A,100,2,19,50,19,11,3.18\r\n,Julian High,Julian Union High,San Diego,807,8,0,9,1,1,21,1,65,1,41,19,0,4,6,7,N/A,N/A,20,92,15,27,25,15,19,2.97\r\n,,Cabrillo Unified,San Mateo,807,B,1,0,2,2,48,0,45,2,37,9,9,28,15,10,24,31,28,96,33,8,15,24,21,2.92\r\n,T. R. Smedberg Middle,Elk Grove Unified,Sacramento,807,6,15,1,25,5,27,1,19,7,63,7,0,11,22,9,N/A,N/A,28,87,9,31,31,21,7,2.87\r\n,Del Amo Elementary,Los Angeles Unified,Los Angeles,807,5,18,0,5,19,46,11,1,0,68,8,0,22,7,14,14,9,N/A,42,16,21,31,23,8,2.87\r\n,The Ontario Center,Cucamonga Elementary,San Bernardino,807,5,20,1,6,5,51,0,13,4,67,10,0,19,6,14,25,28,N/A,99,7,25,46,19,2,2.84\r\n,Linda Vista Elementary,Saddleback Valley Unified,Orange,807,5,2,0,2,2,58,0,32,4,59,2,0,46,5,21,27,26,N/A,88,20,21,26,21,12,2.83\r\n,,San Francisco Unified,San Francisco,807,B,9,0,42,6,23,1,11,2,61,24,1,29,24,11,20,26,24,76,15,34,17,22,12,2.81\r\n,Dennis G. Earl Elementary,Turlock Unified,Stanislaus,807,5,4,1,5,2,35,1,52,1,56,2,0,26,3,8,21,26,N/A,99,10,35,31,17,8,2.78\r\n,Theodore Roosevelt Elementary,Selma Unified,Fresno,807,5,1,0,2,0,88,0,9,0,84,3,2,33,5,14,21,27,N/A,87,13,31,35,12,10,2.75\r\n,Rollingwood Elementary,San Bruno Park Elementary,San Mateo,807,5,4,1,9,22,33,9,18,2,36,0,0,30,4,8,19,28,N/A,99,8,35,34,23,1,2.73\r\n,Cinnamon Elementary,Lemoore Union Elementary,Kings,807,5,7,0,1,7,61,1,20,3,68,2,5,29,4,10,24,27,N/A,96,11,33,38,12,6,2.7\r\n,Fox Road Elementary,Hughson Unified,Stanislaus,807,5,0,1,1,0,60,0,36,3,62,10,9,39,8,7,N/A,27,N/A,96,18,28,29,19,6,2.67\r\n,Merritt Trace Elementary,San Jose Unified,Santa Clara,807,5,4,1,5,1,66,1,19,1,61,10,0,39,10,9,26,27,N/A,87,29,18,24,19,10,2.63\r\n,George Washington Elementary,Jefferson Elementary,San Mateo,807,5,3,0,9,33,47,2,2,3,67,3,0,50,11,11,21,26,N/A,84,13,37,27,23,1,2.62\r\nD,Today's Fresh Start Charter School Ingle,Inglewood Unified,Los Angeles,807,5,69,0,0,0,30,0,0,1,85,0,0,15,7,7,14,13,N/A,99,11,36,36,10,5,2.61\r\nD,O'Farrell Community Center for Advanced,San Diego Unified,San Diego,807,6,26,0,6,19,46,2,2,0,100,21,0,23,23,11,N/A,32,28,87,20,32,27,18,3,2.53\r\n,La Presa Elementary,La Mesa-Spring Valley,San Diego,807,5,10,0,1,7,66,2,13,1,86,7,0,31,14,12,25,33,N/A,86,15,42,28,11,4,2.46\r\n,Canterbury Avenue Elementary,Los Angeles Unified,Los Angeles,807,5,0,0,5,7,85,0,2,0,100,13,0,25,24,7,18,22,N/A,84,27,25,30,16,2,2.43\r\n,Westside Union Elementary,Los Banos Unified,Merced,807,5,5,1,1,1,75,1,16,0,77,4,2,41,5,8,28,31,N/A,92,20,36,32,9,3,2.38\r\n,Ramona Elementary,Ramona City Unified,San Diego,807,5,1,0,0,0,73,0,25,0,70,0,2,40,17,12,23,33,N/A,92,28,31,24,13,4,2.34\r\n,,Weaver Union,Merced,807,B,5,0,19,0,61,1,12,1,86,0,3,38,15,10,20,26,25,98,28,26,34,9,3,2.33\r\n,Albert Schweitzer Elementary,Magnolia Elementary,Orange,807,5,4,1,8,4,74,1,8,1,80,9,0,54,20,13,24,26,N/A,67,31,30,22,13,4,2.29\r\nY,Wright Charter,Wright Elementary,Sonoma,807,5,6,1,3,1,62,0,27,0,78,7,1,40,14,15,20,24,22,70,27,38,23,11,0,2.2\r\n,Goldenrod Elementary,Kerman Unified,Fresno,807,5,0,0,6,0,87,0,6,0,84,12,9,43,16,13,28,25,N/A,97,30,34,24,9,3,2.2\r\n,Valle Vista Elementary,Mt. Pleasant Elementary,Santa Clara,807,5,6,0,26,7,48,0,5,0,62,7,1,45,5,20,22,25,N/A,94,40,30,15,5,11,2.18\r\n,Vermont Avenue Elementary,Los Angeles Unified,Los Angeles,807,5,8,0,0,0,91,0,1,0,100,7,0,43,29,8,17,19,N/A,93,33,34,19,10,4,2.18\r\n,Arthur E. Mills Intermediate,Firebaugh-Las Deltas Joint Uni,Fresno,807,5,0,0,1,0,92,0,7,0,90,0,19,43,30,13,N/A,30,N/A,100,38,31,17,12,2,2.08\r\n,Horace Cureton Elementary,Alum Rock Union Elementary,Santa Clara,807,5,1,1,9,4,80,1,5,0,100,8,1,44,26,15,19,30,N/A,92,40,30,16,11,3,2.08\r\n,Coronita Elementary,Corona-Norco Unified,Riverside,807,5,3,0,2,0,88,0,6,0,87,1,0,33,31,13,26,28,N/A,96,40,33,17,7,3,2\r\n,Coronado Elementary,West Contra Costa Unified,Contra Costa,807,5,32,0,4,1,61,1,1,0,100,7,0,43,16,8,21,31,N/A,79,35,40,16,7,2,2\r\n,Marylin Avenue Elementary,Livermore Valley Joint Unified,Alameda,807,5,2,0,4,4,75,0,13,2,79,0,10,54,17,15,19,25,N/A,99,51,23,11,11,4,1.93\r\n,,Cienega Union Elementary,San Benito,807,B,0,0,0,0,32,0,63,0,0,0,0,0,11,16,N/A,4,4,0,0,0,0,0,0,\r\n,Cienega Elementary,Cienega Union Elementary,San Benito,807,5,0,0,0,0,32,0,63,0,0,0,0,0,11,16,N/A,4,4,0,0,0,0,0,0,\r\nD,Dixon Montessori Charter,SBE - Dixon Montessori Charter,Solano,807,5,4,2,4,0,29,2,57,1,24,0,0,11,0,5,12,27,12,0,0,0,0,0,0,\r\n,Mariposa Elementary School of Global Edu,Las Virgenes Unified,Los Angeles,806,5,1,1,4,0,7,1,81,3,4,0,0,7,1,16,22,25,N/A,97,0,5,10,42,43,4.23\r\nD,Julian Charter,Julian Union Elementary,San Diego,806,5,5,1,2,1,18,1,71,0,29,8,0,1,0,10,5,7,5,88,2,14,28,34,22,3.61\r\n,Benjamin Foxen Elementary,Blochman Union Elementary,Santa Barbara,806,5,0,6,0,0,37,3,47,7,45,4,0,8,0,11,13,13,9,99,4,20,24,38,13,3.36\r\n,,Round Valley Joint Elementary,Inyo,806,B,1,5,1,0,21,2,70,0,40,0,0,1,0,7,15,14,N/A,70,3,22,33,24,18,3.33\r\n,Round Valley Elementary,Round Valley Joint Elementary,Inyo,806,5,1,5,1,0,21,2,70,0,40,0,0,1,0,7,15,14,N/A,70,3,22,33,24,18,3.33\r\n,Santa Cruz Gardens Elementary,Soquel Union Elementary,Santa Cruz,806,5,2,0,0,1,42,1,46,9,5,0,0,22,2,10,19,29,N/A,97,10,13,30,31,16,3.31\r\n,Dows Prairie Elementary,McKinleyville Union Elementary,Humboldt,806,5,2,8,1,0,6,0,70,13,52,5,0,1,0,23,22,22,N/A,96,1,22,41,23,14,3.26\r\n,Amador High,Amador County Unified,Amador,806,8,0,2,1,1,15,0,73,6,33,7,0,0,4,7,N/A,N/A,23,94,5,16,42,25,11,3.21\r\n,Anaverde Hills,Westside Union Elementary,Los Angeles,806,5,19,0,8,3,51,0,15,0,55,3,0,17,3,6,27,33,N/A,94,5,24,38,22,13,3.14\r\n,Loma Rica Elementary,Marysville Joint Unified,Yuba,806,5,4,21,1,0,11,0,63,0,41,0,0,0,0,14,22,15,N/A,90,6,21,42,19,13,3.13\r\n,Mariposa County High,Mariposa County Unified,Mariposa,806,8,1,5,0,0,13,0,73,5,41,8,0,1,4,19,N/A,N/A,25,92,4,24,41,19,12,3.1\r\n,,Rio Bravo-Greeley Union Elemen,Kern,806,B,1,0,0,0,38,0,56,1,40,8,0,7,11,11,26,25,23,91,10,22,31,24,13,3.08\r\n,Alice Shaw Elementary,Orcutt Union Elementary,Santa Barbara,806,5,1,0,4,3,45,1,42,3,48,2,1,14,2,10,28,30,N/A,94,4,22,43,21,9,3.08\r\n,Julien Elementary,Turlock Unified,Stanislaus,806,5,1,1,4,0,44,0,43,3,58,14,1,21,5,12,20,29,N/A,100,13,29,27,16,16,2.94\r\n,Jenny Lind Elementary,Calaveras Unified,Calaveras,806,5,1,0,2,1,15,1,79,0,42,4,0,2,5,14,26,27,N/A,78,4,28,46,17,5,2.91\r\n,,Oakdale Joint Unified,Stanislaus,806,B,1,1,1,1,32,0,62,1,42,8,3,10,9,13,20,29,27,95,10,25,37,21,7,2.9\r\n,,Bear Valley Unified,San Bernardino,806,B,1,1,0,0,31,0,60,3,63,7,0,12,7,11,28,20,27,92,13,26,32,19,11,2.89\r\n,Lomitas Elementary,Victor Elementary,San Bernardino,806,5,24,0,2,1,41,1,29,1,69,3,0,7,4,11,35,34,N/A,90,10,25,41,17,6,2.85\r\n,Riverview Elementary,Corona-Norco Unified,Riverside,806,5,4,0,4,1,40,0,52,0,48,2,0,9,11,11,27,28,N/A,95,15,25,37,14,9,2.76\r\n,Buhach Colony High,Merced Union High,Merced,806,8,3,1,11,1,57,0,25,2,74,2,1,9,33,10,N/A,N/A,32,87,19,23,30,20,8,2.75\r\nD,Manzanita Public Charter,Lompoc Unified,Santa Barbara,806,5,6,0,1,1,57,0,30,6,65,2,2,26,2,7,20,23,N/A,98,14,22,45,11,7,2.74\r\n,,Mammoth Unified,Mono,806,B,0,1,1,0,53,0,44,1,55,6,0,34,14,9,21,25,19,98,26,21,20,21,12,2.72\r\n,Rancho Elementary,La Mesa-Spring Valley,San Diego,806,5,10,0,0,8,61,1,13,7,73,8,0,22,15,17,27,32,N/A,94,14,30,32,21,4,2.72\r\n,Hughson High,Hughson Unified,Stanislaus,806,8,0,1,1,0,45,0,51,1,43,7,8,14,16,6,N/A,N/A,22,89,20,27,31,14,8,2.64\r\n,Palm Elementary,Hacienda la Puente Unified,Los Angeles,806,5,1,0,2,1,93,0,2,0,90,9,1,29,8,17,19,35,N/A,53,19,25,31,21,3,2.63\r\n,Ramona-Alessandro Elementary,San Bernardino City Unified,San Bernardino,806,5,8,0,0,1,83,0,4,0,99,25,0,46,8,7,26,29,N/A,64,32,25,17,5,21,2.57\r\n,Cypress Elementary,Tulare City,Tulare,806,5,4,0,1,0,64,0,31,0,71,4,4,18,9,5,22,29,N/A,95,12,40,34,11,4,2.56\r\n,Monroe Elementary,San Francisco Unified,San Francisco,806,5,2,0,29,3,52,0,8,2,76,11,1,66,9,11,22,27,N/A,95,25,34,16,13,12,2.55\r\n,Trapp Elementary,Rialto Unified,San Bernardino,806,5,15,0,2,1,72,1,7,1,75,12,0,22,11,18,22,30,N/A,92,19,29,35,12,5,2.54\r\n,Landers Elementary,Morongo Unified,San Bernardino,806,5,0,1,1,0,40,0,54,5,86,8,0,5,4,17,19,23,N/A,98,19,33,30,13,6,2.54\r\n,,Gridley Unified,Butte,806,B,1,0,2,0,55,0,35,0,73,0,9,22,21,10,20,28,25,59,21,32,28,13,6,2.51\r\n,Westminster High,Huntington Beach Union High,Orange,806,8,1,1,39,1,48,1,5,0,73,7,0,27,47,10,N/A,N/A,30,0,50,0,0,50,0,2.5\r\n,Ralph Bunche Elementary,Compton Unified,Los Angeles,806,5,52,0,1,0,45,0,0,0,75,6,0,24,11,14,24,27,N/A,95,27,25,30,15,4,2.46\r\n,Thirty-Second Street USC Performing Arts,Los Angeles Unified,Los Angeles,806,5,18,1,5,0,67,0,7,0,85,21,0,11,29,6,17,28,27,45,28,27,26,13,7,2.46\r\n,Martin Luther King Jr. Elementary,El Centro Elementary,Imperial,806,5,1,0,0,0,96,0,2,1,94,14,17,58,20,9,30,31,N/A,98,16,44,24,11,5,2.45\r\nY,Pacific Law Academy,Stockton Unified,San Joaquin,806,8,21,5,7,4,56,0,7,0,76,26,1,1,30,0,N/A,N/A,21,87,16,40,33,9,2,2.42\r\n,Elihu Beard Elementary,Modesto City Elementary,Stanislaus,806,5,5,1,2,1,50,2,35,3,76,7,0,17,4,19,24,24,N/A,97,17,42,30,8,4,2.42\r\n,,Val Verde Unified,Riverside,806,B,15,0,2,2,72,0,6,1,81,13,0,23,21,10,27,30,30,88,27,28,27,14,4,2.41\r\n,Bel Aire Park Elementary,Napa Valley Unified,Napa,806,5,1,0,0,0,73,1,21,3,73,2,5,44,17,18,25,25,N/A,98,29,32,20,14,5,2.34\r\n,Dooley Elementary,Long Beach Unified,Los Angeles,806,5,18,0,4,4,68,4,2,0,90,8,1,32,20,8,29,31,N/A,69,24,41,18,14,4,2.34\r\n,Alice M. Ellington Elementary,Azusa Unified,Los Angeles,806,5,1,0,2,1,87,0,8,0,84,10,0,33,5,22,24,31,N/A,98,24,36,28,7,4,2.31\r\n,Chemawa Middle,Riverside Unified,Riverside,806,6,8,1,1,1,73,0,16,0,79,5,0,17,24,12,N/A,N/A,26,97,28,30,30,9,3,2.29\r\n,Los Cerritos,Paramount Unified,Los Angeles,806,5,2,0,0,0,96,0,0,1,97,1,0,62,13,17,18,18,N/A,95,41,31,17,8,4,2.04\r\n,Sunny Brae Avenue Elementary,Los Angeles Unified,Los Angeles,806,5,3,0,5,1,87,0,3,0,100,7,0,48,22,14,20,22,N/A,93,50,27,13,7,3,1.85\r\n,,Roseland Elementary,Sonoma,806,B,1,2,2,0,91,0,4,0,89,14,5,70,14,12,21,25,22,92,52,29,12,4,3,1.79\r\n,Martin Elementary,Santa Ana Unified,Orange,806,5,0,0,0,0,98,0,1,0,96,8,2,74,12,12,25,24,N/A,98,49,31,17,2,2,1.78\r\nD,Ocean Grove Charter,San Lorenzo Valley Unified,Santa Cruz,805,5,2,0,7,1,19,1,64,5,28,0,0,1,2,6,18,15,1,99,2,7,21,31,40,4.01\r\nD,River Oaks Academy,Ventura County Office of Educa,Ventura,805,5,5,3,1,0,13,0,78,0,4,0,0,0,0,0,2,5,4,95,0,3,25,45,27,3.96\r\n,,Nevada Joint Union High,Nevada,805,B,1,2,1,0,7,0,86,2,17,3,0,0,1,6,N/A,N/A,21,98,2,14,35,27,22,3.52\r\nD,San Diego Neighborhood Homeschools,Mountain Empire Unified,San Diego,805,5,4,4,0,0,40,0,52,0,36,0,0,0,28,0,,,,68,24,18,6,0,53,3.41\r\nY,Natomas Pacific Pathways Prep,Natomas Unified,Sacramento,805,8,16,1,24,6,23,2,23,5,40,7,0,6,13,4,N/A,N/A,29,93,2,22,34,27,15,3.31\r\n,Emma Wilson Elementary,Chico Unified,Butte,805,5,6,2,4,0,20,1,64,1,44,0,0,10,3,10,29,30,N/A,90,7,22,33,20,18,3.19\r\n,Patterson Road Elementary,Orcutt Union Elementary,Santa Barbara,805,5,2,0,2,1,38,1,51,4,51,2,1,13,0,13,31,28,N/A,95,5,19,43,19,14,3.18\r\n,,Sequoia Union High,San Mateo,805,B,3,0,6,1,44,3,35,2,39,3,1,20,18,11,N/A,N/A,26,87,22,15,15,22,26,3.15\r\n,,San Jose Unified,Santa Clara,805,B,3,1,13,2,51,0,27,1,48,20,1,23,17,10,26,27,27,90,20,17,19,25,20,3.08\r\n,Ellerhorst Elementary,West Contra Costa Unified,Contra Costa,805,5,11,1,9,4,31,1,42,0,37,10,0,15,6,16,21,27,N/A,89,5,31,25,32,7,3.05\r\n,Alta Heights Elementary,Napa Valley Unified,Napa,805,5,0,0,1,0,34,0,57,7,42,4,1,12,6,10,28,23,N/A,96,12,21,29,26,12,3.04\r\n,McCoppin (Frank) Elementary,San Francisco Unified,San Francisco,805,5,3,1,63,1,12,0,9,6,65,13,0,56,8,6,19,23,N/A,74,11,30,21,24,14,3.01\r\n,Annie Pennycook Elementary,Vallejo City Unified,Solano,805,5,30,0,3,16,21,3,20,8,58,1,0,7,9,9,21,32,N/A,97,6,26,38,24,6,2.99\r\n,Onaga Elementary,Morongo Unified,San Bernardino,805,5,4,1,1,1,25,0,63,5,61,9,0,4,2,10,26,24,N/A,92,8,24,40,19,9,2.98\r\n,Alcott Elementary,Riverside Unified,Riverside,805,5,16,0,0,1,51,1,30,0,64,9,0,14,4,12,26,30,N/A,99,17,21,25,19,17,2.98\r\n,Louis VanderMolen Fundamental Elementary,Corona-Norco Unified,Riverside,805,5,9,0,10,3,57,0,20,1,48,3,0,22,9,15,25,28,N/A,97,16,17,34,20,13,2.97\r\n,,Snowline Joint Unified,San Bernardino,805,B,6,1,2,0,38,0,47,0,56,7,0,11,7,12,29,29,28,88,8,28,35,20,10,2.95\r\n,Kratt Elementary,Fresno Unified,Fresno,805,5,12,0,7,1,55,1,23,0,77,2,1,6,4,11,26,26,N/A,95,9,26,39,17,9,2.91\r\n,Green Acres Elementary,Live Oak Elementary,Santa Cruz,805,5,6,0,3,4,49,0,33,1,63,0,0,31,4,21,23,24,N/A,98,13,29,27,19,13,2.9\r\n,Centennial High,Corona-Norco Unified,Riverside,805,8,9,0,9,4,53,1,24,1,48,13,0,7,23,10,N/A,N/A,32,91,19,21,29,20,10,2.82\r\n,Cypress Elementary,Covina-Valley Unified,Los Angeles,805,5,5,0,1,2,78,0,12,2,69,8,0,18,5,12,21,27,N/A,100,11,28,35,18,8,2.82\r\n,Lee Elementary,San Diego Unified,San Diego,805,5,8,1,1,10,72,2,3,4,100,26,0,33,10,16,21,32,N/A,85,12,32,30,19,8,2.79\r\n,Alice M. Birney Elementary,El Rancho Unified,Los Angeles,805,5,1,0,0,1,97,0,0,0,69,0,2,31,10,14,21,26,N/A,93,13,34,32,15,6,2.68\r\nD,Yav Pem Suab Academy - Preparing for the,Sacramento City Unified,Sacramento,805,5,10,0,77,0,8,0,1,4,83,3,0,46,14,12,22,22,N/A,90,23,19,32,17,9,2.68\r\n,Saticoy Elementary,Los Angeles Unified,Los Angeles,805,5,0,1,4,4,49,0,42,0,89,9,0,39,22,13,19,22,N/A,98,16,34,21,28,2,2.66\r\n,Cyril Spinelli Elementary,Center Joint Unified,Sacramento,805,5,14,0,15,1,26,1,42,1,76,0,0,21,14,29,20,22,N/A,99,13,29,40,16,3,2.65\r\n,William Land Elementary,Sacramento City Unified,Sacramento,805,5,9,0,40,2,32,0,12,5,78,14,0,37,11,6,22,37,N/A,57,21,30,22,19,8,2.64\r\n,,Montague Elementary,Siskiyou,805,B,2,7,1,0,15,0,75,0,60,0,0,0,0,18,11,5,6,83,0,52,38,9,1,2.59\r\n,Divisadero Middle,Visalia Unified,Tulare,805,6,2,2,4,0,63,0,27,2,70,13,2,11,18,10,N/A,N/A,29,96,21,23,37,14,5,2.58\r\n,Owens Valley High,Owens Valley Unified,Inyo,805,8,0,20,0,0,20,0,40,13,40,0,0,0,0,7,N/A,N/A,4,93,0,57,29,14,0,2.57\r\n,Las Positas Elementary,La Habra City Elementary,Orange,805,5,1,1,3,2,79,0,13,1,75,13,0,41,17,9,23,31,N/A,73,23,29,23,16,8,2.57\r\n,Nell Dawson Elementary,Coalinga-Huron Joint Unified,Fresno,805,5,2,2,1,0,73,0,19,0,80,0,2,37,2,7,23,N/A,N/A,91,23,22,38,14,4,2.54\r\n,Sheldon Elementary,West Contra Costa Unified,Contra Costa,805,5,26,0,14,3,31,2,21,1,73,4,0,27,9,14,21,27,N/A,91,10,53,16,16,5,2.53\r\n,Thomas Starr King Middle,Los Angeles Unified,Los Angeles,805,6,2,1,11,9,63,0,14,1,100,30,0,15,38,10,N/A,26,29,69,30,29,15,19,7,2.44\r\n,Norman R. Brekke Elementary,Oxnard,Ventura,805,5,2,0,5,7,81,0,4,1,65,1,0,40,11,9,28,32,N/A,98,19,41,23,13,5,2.43\r\nD,Magnolia Science Academy,Los Angeles Unified,Los Angeles,805,8,1,1,5,5,74,0,14,0,88,0,0,13,45,12,N/A,26,25,95,36,24,12,20,8,2.39\r\n,Julian Junior High,Julian Union Elementary,San Diego,805,6,0,15,1,0,26,0,56,2,57,29,0,12,5,21,,,,96,19,39,31,10,1,2.34\r\n,William Anderson Elementary,Lawndale Elementary,Los Angeles,805,5,6,0,9,1,77,2,3,2,83,3,0,62,7,13,24,29,N/A,89,23,37,27,11,2,2.32\r\n,Hopeton Elementary,Merced River Union Elementary,Merced,805,5,0,0,0,0,73,0,9,5,82,0,9,52,2,14,6,N/A,N/A,100,25,27,41,7,0,2.3\r\n,Winnetka Avenue Elementary,Los Angeles Unified,Los Angeles,805,5,3,0,12,3,79,0,4,0,100,9,0,45,22,19,20,18,N/A,89,30,36,18,10,5,2.23\r\n,Farmdale Elementary,Weaver Union,Merced,805,5,3,0,27,0,59,1,8,1,89,0,2,55,11,8,21,24,N/A,97,34,26,29,9,2,2.2\r\n,Silas Bartsch,Kings Canyon Joint Unified,Fresno,805,5,0,0,4,0,91,0,4,0,99,6,9,37,30,7,25,25,34,100,35,29,21,12,3,2.2\r\n,Walnut Park Elementary,Los Angeles Unified,Los Angeles,805,5,0,0,0,0,100,0,0,0,100,1,0,32,25,7,21,25,N/A,42,39,23,23,10,5,2.18\r\nD,Rocketship Five Elementary,Santa Clara County Office of E,Santa Clara,805,5,3,1,8,1,81,0,4,0,77,0,0,73,2,8,26,32,N/A,85,35,31,20,13,1,2.15\r\n,Allan Orrenmaa Elementary,Alvord Unified,Riverside,805,5,4,0,5,1,72,1,16,0,63,4,0,44,1,6,28,33,N/A,97,34,33,25,6,3,2.11\r\n,Val Verde Elementary,Val Verde Unified,Riverside,805,5,4,1,1,0,90,0,3,0,94,13,0,46,12,10,29,28,N/A,87,35,34,21,6,3,2.08\r\n,Glen Avon Elementary,Jurupa Unified,Riverside,805,5,3,0,1,0,87,0,9,0,80,5,0,49,8,8,27,28,N/A,97,31,41,20,5,3,2.07\r\n,Monte Vista Elementary,Mountain View Elementary,Los Angeles,805,5,0,0,4,0,94,0,1,0,100,2,2,45,23,9,28,32,N/A,93,37,34,18,6,4,2.05\r\n,Arbolita Elementary,La Habra City Elementary,Orange,805,5,0,0,0,0,96,0,3,1,88,0,0,79,0,9,29,N/A,N/A,86,40,32,20,8,0,1.97\r\n,EnCompass Academy Elementary,Oakland Unified,Alameda,805,5,16,1,1,0,77,3,3,0,45,49,0,62,16,6,24,23,N/A,75,47,29,12,9,3,1.93\r\nD,Animo Leadership High,Lennox,Los Angeles,805,8,1,0,0,0,97,0,1,0,93,0,0,20,47,4,,,,93,41,32,21,5,1,1.93\r\n,Sycamore Elementary,Orange Unified,Orange,805,5,2,0,5,2,86,0,3,1,86,0,0,62,11,17,27,30,N/A,77,46,30,18,5,1,1.87\r\nD,World Academy,Oakland Unified,Alameda,805,5,5,0,1,3,87,0,3,0,91,0,0,58,3,4,21,N/A,N/A,96,50,37,11,1,0,1.65\r\nD,Tree of Life Charter,Ukiah Unified,Mendocino,804,5,9,5,2,0,18,0,50,16,41,0,0,0,0,2,21,19,N/A,93,0,17,37,15,32,3.61\r\n,Oceana High,Jefferson Union High,San Mateo,804,8,3,1,14,25,23,0,19,13,27,1,0,6,19,10,N/A,N/A,28,93,3,11,31,42,13,3.52\r\nY,Kingsburg Community Charter Extension,Kingsburg Elementary Charter,Fresno,804,5,4,1,1,0,41,0,51,3,1,0,0,1,3,4,29,N/A,N/A,99,3,15,38,23,21,3.44\r\n,Atascadero High,Atascadero Unified,San Luis Obispo,804,8,2,2,1,1,21,0,71,2,31,10,0,3,7,7,N/A,N/A,26,100,6,15,33,32,14,3.32\r\nD,Sherman Thomas Charter,Madera Unified,Madera,804,5,5,0,0,2,57,0,34,1,57,0,0,0,2,9,20,25,N/A,98,3,15,43,25,13,3.29\r\nD,Sierra Montessori Academy,Nevada County Office of Educat,Nevada,804,5,2,3,2,0,13,0,77,5,39,0,0,0,0,9,13,15,N/A,81,0,27,33,27,13,3.27\r\nY,Hart-Ransom Academic Charter,Hart-Ransom Union Elementary,Stanislaus,804,5,1,5,2,4,22,3,64,0,52,0,0,0,1,6,3,3,2,100,2,17,48,17,16,3.27\r\n,Valley View Elementary,Sulphur Springs Union,Los Angeles,804,5,10,0,4,1,52,0,28,5,51,5,0,26,10,8,13,21,N/A,67,9,21,26,31,13,3.18\r\n,Vina Elementary,Los Molinos Unified,Tehama,804,5,0,2,0,0,29,0,68,2,51,0,3,5,8,5,15,19,N/A,97,3,26,38,23,10,3.1\r\n,Wilson C. Riles Middle,Center Joint Unified,Sacramento,804,6,12,2,9,2,19,2,51,3,64,8,0,6,22,17,N/A,N/A,26,95,7,24,34,28,7,3.05\r\n,Millennial Tech Middle,San Diego Unified,San Diego,804,6,41,0,6,5,37,1,7,2,76,30,0,7,22,11,N/A,31,28,88,9,20,37,25,8,3.05\r\n,Peter J. Shields Elementary,Folsom-Cordova Unified,Sacramento,804,5,10,1,2,4,12,2,66,3,62,3,0,18,11,12,29,31,N/A,87,5,20,47,24,5,3.04\r\nD,Monarch Learning Center,Redding Elementary,Shasta,804,5,0,6,1,0,23,0,58,11,65,0,0,1,1,10,2,N/A,N/A,96,0,24,57,12,8,3.04\r\n,Piedmont Middle,Berryessa Union Elementary,Santa Clara,804,6,3,0,41,10,28,0,6,6,43,24,0,23,30,10,N/A,28,31,99,10,19,38,24,9,3.03\r\nY,Rafer Johnson Junior High,Kingsburg Elementary Charter,Fresno,804,6,1,0,4,0,56,0,34,4,52,6,0,7,11,10,N/A,N/A,27,96,12,26,33,16,13,2.9\r\nD,Helix High,Grossmont Union High,San Diego,804,8,17,1,5,1,44,2,21,10,60,43,0,2,0,8,N/A,N/A,28,100,13,24,36,18,10,2.89\r\n,Montague Elementary,Santa Clara Unified,Santa Clara,804,5,5,1,13,29,41,2,7,2,62,3,0,44,9,22,21,28,N/A,92,10,30,27,25,8,2.89\r\n,Yucca Mesa Elementary,Morongo Unified,San Bernardino,804,5,2,1,0,0,19,0,73,4,63,4,0,4,2,22,22,23,N/A,97,11,25,41,15,8,2.84\r\n,David A. Brown Middle,Lake Elsinore Unified,Riverside,804,6,6,1,2,3,50,1,38,0,61,16,0,5,20,13,N/A,35,32,99,12,27,34,19,8,2.82\r\n,,Stanislaus Union Elementary,Stanislaus,804,B,6,1,12,2,46,1,30,1,60,10,0,22,10,12,29,29,26,95,16,25,36,14,9,2.75\r\n,,Gilroy Unified,Santa Clara,804,B,1,0,3,2,70,0,21,2,58,8,2,26,17,10,25,28,29,86,23,22,25,23,8,2.69\r\n,Loara Elementary,Anaheim City,Orange,804,5,4,0,16,4,60,1,13,0,79,25,0,44,17,19,26,28,N/A,20,15,26,37,20,2,2.69\r\n,Live Oak Middle,Tulare City,Tulare,804,6,6,1,2,1,60,1,30,0,59,25,4,13,11,5,N/A,33,30,87,16,24,40,13,6,2.68\r\n,,Pope Valley Union Elementary,Napa,804,B,0,2,0,0,60,0,38,0,64,19,2,15,25,0,6,8,N/A,34,6,33,50,11,0,2.67\r\n,Pope Valley Elementary,Pope Valley Union Elementary,Napa,804,5,0,2,0,0,60,0,38,0,64,19,2,15,25,0,6,8,N/A,34,6,33,50,11,0,2.67\r\n,Woodcrest Junior High,Chino Valley Unified,San Bernardino,804,6,6,0,3,3,76,0,11,1,54,4,0,12,16,15,N/A,N/A,30,87,17,32,28,18,6,2.63\r\n,Ernie Pyle Elementary,Bellflower Unified,Los Angeles,804,5,16,1,3,5,70,2,3,0,80,13,0,24,11,14,28,28,N/A,97,13,36,32,16,4,2.62\r\n,,Downey Unified,Los Angeles,804,B,3,0,2,1,86,0,7,0,67,5,0,16,17,12,25,25,21,99,14,39,26,15,6,2.6\r\n,Grant Elementary,Long Beach Unified,Los Angeles,804,5,13,0,5,1,73,3,2,0,90,7,1,41,17,5,29,31,N/A,75,21,28,31,17,3,2.54\r\n,,Los Molinos Unified,Tehama,804,B,0,1,0,0,41,0,55,2,71,0,0,10,18,7,20,25,24,94,18,29,39,11,4,2.53\r\nD,New Heights Charter,Los Angeles Unified,Los Angeles,804,5,34,0,0,0,59,0,0,0,98,0,0,21,11,13,19,21,N/A,71,25,26,30,7,11,2.53\r\n,Sheridan,Western Placer Unified,Placer,804,5,0,2,0,4,44,0,44,2,59,4,0,22,4,11,27,23,N/A,100,24,30,26,19,2,2.44\r\n,Helen M. Wilcox Elementary,Palermo Union Elementary,Butte,804,5,2,13,4,0,33,1,47,1,80,0,3,18,3,11,18,N/A,N/A,2,14,43,29,14,0,2.43\r\n,Craig Williams Elementary,Bellflower Unified,Los Angeles,804,5,18,0,5,2,66,2,5,2,86,2,0,30,9,6,30,30,N/A,98,20,35,32,10,3,2.41\r\n,George Washington Elementary,Hanford Elementary,Kings,804,5,5,0,1,0,62,1,31,1,80,0,4,13,8,8,20,29,N/A,95,20,36,35,6,3,2.36\r\n,Los Alisos Middle,Norwalk-La Mirada Unified,Los Angeles,804,6,2,0,2,3,86,1,5,0,83,15,8,13,25,14,N/A,31,30,99,23,43,23,8,4,2.27\r\n,Valley Oaks Elementary,Galt Joint Union Elementary,Sacramento,804,5,1,1,0,0,72,1,24,0,84,7,7,31,22,16,19,26,N/A,87,29,30,33,7,2,2.23\r\n,Castle Park Elementary,Chula Vista Elementary,San Diego,804,5,2,0,1,2,87,1,6,0,73,10,0,50,6,13,20,26,N/A,86,29,38,19,11,3,2.21\r\n,Heights Elementary,Pittsburg Unified,Contra Costa,804,5,17,1,1,2,64,4,10,0,84,0,0,45,7,15,24,27,N/A,97,31,35,21,10,3,2.18\r\nD,Making Waves Academy,Contra Costa County Office of,Contra Costa,804,6,19,0,2,1,77,0,0,0,97,0,0,21,47,7,N/A,21,24,91,35,36,20,8,1,2.06\r\n,Harmony Elementary,Delhi Unified,Merced,804,5,1,0,5,1,84,0,9,0,78,0,2,47,23,9,23,25,23,94,29,47,15,7,2,2.05\r\nD,Lighthouse Community Charter,Oakland Unified,Alameda,804,5,10,0,5,1,81,1,2,1,82,3,10,52,24,12,N/A,N/A,3,100,53,16,16,8,7,1.99\r\n,Dolores Huerta Elementary,Lennox,Los Angeles,804,5,1,0,1,0,97,0,0,0,94,0,0,81,7,12,21,28,N/A,86,36,46,8,6,3,1.92\r\nD,Synergy Kinetic Academy,Los Angeles Unified,Los Angeles,804,6,6,0,0,0,93,0,0,0,98,7,1,22,42,9,N/A,31,32,61,46,30,18,3,2,1.86\r\n,,El Nido Elementary,Merced,804,B,0,0,2,0,74,0,23,0,99,0,5,51,25,6,22,25,N/A,97,53,28,8,9,3,1.79\r\n,Carver Elementary,Compton Unified,Los Angeles,804,5,29,0,0,0,70,0,0,0,88,3,0,31,25,3,20,20,N/A,94,52,27,14,4,3,1.78\r\n,El Nido Elementary,El Nido Elementary,Merced,804,5,0,0,2,0,74,0,23,0,99,0,5,51,25,5,22,25,N/A,97,53,28,8,8,3,1.78\r\n,El Capitan Elementary,Delhi Unified,Merced,804,5,0,0,2,0,85,0,11,0,85,0,3,52,25,10,21,26,21,99,49,35,11,5,0,1.72\r\n,Jordan Elementary,Orange Unified,Orange,804,5,0,0,1,1,96,0,2,0,94,0,1,75,5,14,26,30,N/A,84,64,25,8,3,0,1.5\r\n,Desert Junior-Senior High,Muroc Joint Unified,Kern,803,8,15,0,5,6,15,1,53,4,9,0,0,1,0,5,N/A,N/A,26,98,0,9,42,29,20,3.6\r\n,,Muroc Joint Unified,Kern,803,B,10,0,3,4,19,1,55,8,22,0,0,3,1,9,24,28,24,96,2,16,41,22,19,3.39\r\n,Yountville Elementary,Napa Valley Unified,Napa,803,5,0,0,0,0,51,0,35,13,44,3,2,24,12,11,25,27,N/A,94,11,17,25,24,22,3.28\r\n,Arlington Heights Elementary,San Juan Unified,Sacramento,803,5,7,1,3,3,13,1,69,2,55,4,0,13,2,13,31,32,N/A,60,5,18,37,31,9,3.2\r\n,Canyon High,William S. Hart Union High,Los Angeles,803,8,4,0,4,4,40,0,46,1,22,10,0,12,7,13,N/A,N/A,31,93,8,17,38,24,12,3.15\r\n,Lorbeer Middle,Pomona Unified,Los Angeles,803,6,9,0,10,5,59,0,14,2,46,19,0,7,14,8,N/A,N/A,30,85,5,24,35,21,14,3.15\r\n,Burroughs High,Sierra Sands Unified,Kern,803,8,6,1,4,2,22,1,63,1,31,14,0,5,5,10,N/A,N/A,27,88,12,19,31,23,14,3.08\r\n,Willow Glen Middle,San Jose Unified,Santa Clara,803,6,5,1,5,2,52,0,33,1,46,27,1,14,16,11,N/A,27,24,92,17,16,24,28,15,3.07\r\n,,Lincoln Unified,San Joaquin,803,B,13,1,10,5,38,1,31,0,55,7,0,15,8,11,26,30,26,95,9,22,34,23,12,3.06\r\n,Tremont Elementary,Dixon Unified,Solano,803,5,2,0,2,1,44,0,46,3,45,2,2,20,8,11,29,31,N/A,91,8,20,41,24,7,3.02\r\n,Joseph R. Perry Elementary,Huntington Beach City Elementa,Orange,803,5,1,0,7,0,48,2,36,5,54,4,0,26,8,23,28,25,N/A,94,13,22,29,24,12,3.01\r\n,Donald E. Suburu,Lakeside Union,Kern,803,5,7,1,4,2,53,0,31,3,60,0,0,19,7,9,21,29,N/A,98,2,39,30,17,13,2.99\r\n,Dozier-Libbey Medical High,Antioch Unified,Contra Costa,803,8,15,1,11,10,39,0,23,0,46,4,0,5,21,4,N/A,N/A,28,81,10,25,35,22,8,2.92\r\n,Grant Elementary,Eureka City Schools,Humboldt,803,5,6,5,12,1,16,2,54,5,78,8,1,21,2,9,24,28,N/A,82,9,23,42,16,9,2.92\r\n,Plainfield Elementary,Woodland Joint Unified,Yolo,803,5,0,1,3,0,49,0,45,1,50,16,3,21,7,14,30,27,N/A,90,15,24,30,15,16,2.91\r\n,Benjamin Franklin Elementary,Glendale Unified,Los Angeles,803,5,1,0,6,8,49,0,31,4,57,4,0,32,6,12,23,23,N/A,67,14,31,17,30,9,2.89\r\n,Marvin A. Dutcher Middle,Turlock Unified,Stanislaus,803,6,2,0,3,1,52,0,38,3,54,19,0,19,13,12,N/A,N/A,26,99,16,27,26,18,14,2.86\r\n,Santa Rosa Road Academic Academy,Atascadero Unified,San Luis Obispo,803,5,2,1,1,0,52,0,40,3,68,4,1,29,5,5,29,31,N/A,97,14,26,32,18,10,2.84\r\n,Mary Tsukamoto Elementary,Elk Grove Unified,Sacramento,803,5,15,0,22,2,31,1,20,7,71,2,0,23,14,10,24,25,N/A,89,11,30,32,19,8,2.83\r\n,Tompkins Elementary,Tehachapi Unified,Kern,803,5,2,1,1,1,43,0,51,0,50,4,2,21,3,11,25,26,N/A,79,13,27,36,16,8,2.81\r\n,Foothill Elementary,Monterey Peninsula Unified,Monterey,803,5,4,1,2,3,48,2,35,5,56,0,0,32,8,9,27,30,N/A,100,15,33,28,12,13,2.76\r\n,Farb Middle,San Diego Unified,San Diego,803,6,10,1,7,3,47,1,25,6,74,19,0,9,29,11,N/A,30,30,90,15,26,34,20,5,2.75\r\n,,Victor Elementary,San Bernardino,803,B,20,1,2,1,56,1,18,2,71,3,0,17,4,8,32,32,N/A,92,14,32,33,14,7,2.67\r\n,Virginia Peterson Elementary,Paso Robles Joint Unified,San Luis Obispo,803,5,2,0,1,1,58,1,35,1,57,1,6,40,3,18,25,24,N/A,65,22,25,28,21,5,2.62\r\n,Cawston Elementary,Hemet Unified,Riverside,803,5,10,1,1,1,47,1,36,2,66,0,0,12,4,11,29,30,N/A,100,15,31,37,11,6,2.61\r\n,Bayside,Sausalito Marin City,Marin,803,5,53,0,9,5,30,2,0,0,100,0,0,28,0,28,18,16,N/A,91,15,28,46,5,5,2.56\r\n,,Empire Union Elementary,Stanislaus,803,B,6,1,4,1,57,2,29,0,80,5,1,23,11,14,23,29,25,88,16,37,30,10,7,2.54\r\n,Price (Adelaide) Elementary,Anaheim City,Orange,803,5,3,1,3,3,83,0,6,0,80,11,0,46,20,5,29,30,N/A,12,16,38,29,10,6,2.51\r\n,Buckeye School of the Arts,Gateway Unified,Shasta,803,5,3,9,3,0,16,1,68,0,80,1,0,4,1,12,20,27,N/A,99,12,38,43,5,2,2.48\r\n,Oak Park Elementary,Fontana Unified,San Bernardino,803,5,9,0,1,1,84,0,5,0,84,2,0,38,14,17,25,24,N/A,97,22,30,34,9,5,2.46\r\n,Jurupa Middle,Jurupa Unified,Riverside,803,6,3,0,1,1,74,1,20,0,71,22,0,21,18,9,N/A,N/A,30,98,22,33,29,11,6,2.45\r\n,Jefferson Elementary,Riverside Unified,Riverside,803,5,5,1,2,0,76,1,14,0,84,11,0,26,15,14,27,27,N/A,96,25,30,32,10,3,2.36\r\n,Las Palmas,National Elementary,San Diego,803,5,1,0,4,9,82,0,3,0,100,23,0,70,5,12,21,30,N/A,84,25,36,24,14,2,2.32\r\n,Hazel M. Bailey Primary,Firebaugh-Las Deltas Joint Uni,Fresno,803,5,1,0,0,0,93,0,5,0,92,0,19,53,19,7,24,N/A,N/A,100,37,30,20,11,2,2.12\r\n,Sophia T. Salvin Special Education Cente,Los Angeles Unified,Los Angeles,803,C,15,0,6,3,74,0,2,0,65,0,0,71,0,100,6,8,7,57,44,23,16,15,3,2.11\r\n,Cherrylee Elementary,El Monte City Elementary,Los Angeles,803,5,0,0,16,1,75,0,6,0,84,4,2,27,14,7,30,28,N/A,99,26,51,18,5,1,2.03\r\n,Olivewood,National Elementary,San Diego,803,5,1,1,0,4,91,0,3,0,100,25,0,66,13,13,21,29,N/A,92,35,37,18,8,2,2.03\r\nD,KIPP Adelante,San Diego Unified,San Diego,803,6,6,0,0,1,90,0,1,0,100,0,0,49,25,10,N/A,31,N/A,86,40,32,18,8,3,2.03\r\n,Miles Avenue Elementary,Los Angeles Unified,Los Angeles,803,5,0,0,0,0,99,0,0,0,100,5,2,43,31,8,20,26,N/A,73,40,34,16,5,4,1.99\r\n,Park Avenue Elementary,Los Angeles Unified,Los Angeles,803,5,1,0,0,0,98,0,1,0,92,7,1,37,29,15,16,18,N/A,92,37,41,13,7,1,1.94\r\n,Tomas Rivera Middle,Val Verde Unified,Riverside,803,6,4,0,1,0,90,0,5,0,93,16,0,26,40,11,N/A,32,26,84,47,27,17,5,4,1.91\r\n,International Elementary,Long Beach Unified,Los Angeles,803,5,11,0,4,1,82,1,1,0,100,5,2,58,17,12,30,32,N/A,100,49,31,14,4,3,1.81\r\n,Wilkerson Elementary,El Monte City Elementary,Los Angeles,803,5,0,0,13,0,87,0,0,0,95,2,3,69,15,5,26,27,N/A,99,54,40,3,3,0,1.56\r\n,Diamond Elementary,Santa Ana Unified,Orange,803,5,0,0,1,0,99,0,0,0,100,6,6,81,15,11,26,28,N/A,98,68,21,9,1,0,1.44\r\n,Mendocino Alternative,Mendocino Unified,Mendocino,802,7,0,6,0,0,6,0,83,6,22,0,0,0,0,6,7,15,N/A,89,0,6,44,13,38,3.81\r\n,San Marin High,Novato Unified,Marin,802,7,3,1,6,1,25,0,62,2,22,10,0,8,13,10,N/A,N/A,27,98,6,14,22,38,21,3.53\r\n,John C. Kimball High,Tracy Joint Unified,San Joaquin,802,7,9,1,14,10,30,2,30,5,23,4,0,8,15,7,N/A,N/A,30,90,6,11,32,37,14,3.41\r\n,,Howell Mountain Elementary,Napa,802,B,3,0,0,0,40,0,49,8,53,1,0,3,0,5,15,17,N/A,55,10,15,28,25,23,3.35\r\n,Howell Mountain Elementary,Howell Mountain Elementary,Napa,802,5,3,0,0,0,40,0,49,8,53,1,0,3,0,5,15,17,N/A,55,10,15,28,25,23,3.35\r\nY,Vallejo Charter,Vallejo City Unified,Solano,802,5,34,1,2,8,23,1,27,4,44,6,0,6,7,5,28,31,30,95,3,18,37,31,11,3.29\r\n,El Camino High,South San Francisco Unified,San Mateo,802,7,3,0,11,36,36,2,10,0,29,16,0,8,19,11,N/A,N/A,30,100,4,19,35,30,12,3.27\r\n,Westmoor High,Jefferson Union High,San Mateo,802,7,2,0,24,37,20,1,5,11,37,3,0,14,28,5,N/A,N/A,29,97,6,16,29,43,6,3.27\r\n,James J. McBride Special Education Cente,Los Angeles Unified,Los Angeles,802,C,39,0,5,0,44,0,12,0,68,0,0,37,0,100,3,3,9,20,13,19,38,0,31,3.19\r\n,,East Nicolaus Joint Union High,Sutter,802,B,3,2,3,1,28,0,60,3,33,3,1,1,2,6,N/A,N/A,26,93,7,14,45,22,12,3.17\r\n,Junction Intermediate,Junction Elementary,Shasta,802,5,1,4,2,1,11,0,77,2,26,0,0,0,0,10,N/A,29,24,96,4,24,39,27,6,3.07\r\n,Lupine Hills Elementary,West Contra Costa Unified,Contra Costa,802,5,28,0,23,20,21,1,6,0,49,6,0,25,9,19,21,31,N/A,90,6,32,15,42,5,3.06\r\n,Royal Oak Middle,Charter Oak Unified,Los Angeles,802,5,4,1,5,3,57,0,26,4,42,10,0,4,11,8,N/A,N/A,33,90,7,27,33,23,10,3.04\r\n,,Amador County Unified,Amador,802,B,0,2,1,0,17,0,72,5,44,7,0,2,4,11,28,26,22,95,5,26,38,21,10,3.04\r\n,Don Riggio,Lincoln Unified,San Joaquin,802,5,8,0,11,6,41,1,33,0,57,7,1,28,7,10,24,28,24,93,10,25,29,22,14,3.04\r\n,Jacobsen Middle,Tehachapi Unified,Kern,802,5,1,1,1,1,28,0,66,1,37,6,1,6,9,12,N/A,25,27,78,8,27,35,20,10,2.98\r\n,Meadow View,Susanville Elementary,Lassen,802,5,4,10,3,2,19,1,57,0,51,1,0,4,2,8,28,32,N/A,89,3,28,50,12,7,2.93\r\n,Oakdale Junior High,Oakdale Joint Unified,Stanislaus,802,5,0,1,1,2,33,0,62,0,42,12,4,6,12,9,N/A,N/A,26,98,11,25,37,21,6,2.87\r\n,Monrovia High,Monrovia Unified,Los Angeles,802,7,9,0,3,3,56,0,26,0,51,19,0,5,21,9,N/A,N/A,28,98,12,29,28,21,10,2.86\r\n,Alturas Elementary,Modoc Joint Unified,Modoc,802,5,1,5,2,0,20,0,71,1,57,0,3,2,2,3,23,22,N/A,100,11,29,36,17,7,2.8\r\n,Edgewater Elementary,Marysville Joint Unified,Yuba,802,5,5,0,12,1,44,1,33,4,71,3,2,38,1,6,23,30,N/A,87,15,24,37,16,8,2.79\r\n,Nipomo Elementary,Lucia Mar Unified,San Luis Obispo,802,5,1,1,2,0,65,0,31,1,73,4,2,35,3,14,24,24,N/A,69,19,18,37,19,7,2.76\r\n,Moreno Elementary,Moreno Valley Unified,Riverside,802,5,19,0,5,5,57,0,11,3,70,5,1,27,7,19,24,27,N/A,94,11,29,38,19,4,2.75\r\n,Paularino Elementary,Newport-Mesa Unified,Orange,802,5,4,0,9,1,56,2,25,3,66,2,0,36,8,12,21,27,N/A,89,23,20,26,20,11,2.74\r\n,Isador Cohen Elementary,Sacramento City Unified,Sacramento,802,5,38,0,5,2,23,2,24,5,77,25,0,13,8,21,24,30,N/A,77,17,25,36,12,10,2.73\r\n,,Happy Valley Union Elementary,Shasta,802,B,1,8,3,0,15,0,68,3,79,5,0,0,0,10,20,27,27,93,12,29,38,17,4,2.72\r\n,Liberty Elementary,Kerman Unified,Fresno,802,5,1,0,8,0,77,0,13,1,72,18,3,28,10,13,27,27,N/A,98,17,26,33,19,5,2.69\r\n,Mango Elementary,Fontana Unified,San Bernardino,802,5,5,0,0,1,88,0,5,0,100,4,0,38,13,14,27,28,N/A,99,16,30,32,15,7,2.67\r\n,,Hughson Unified,Stanislaus,802,B,0,1,1,0,51,0,46,1,53,7,8,24,13,8,23,24,22,93,20,27,30,15,8,2.64\r\n,Heritage Elementary,Garden Grove Unified,Orange,802,5,0,0,13,0,85,0,3,0,83,0,0,69,18,15,26,23,N/A,22,22,29,15,32,2,2.63\r\n,,Arcohe Union Elementary,Sacramento,802,B,4,2,4,1,38,0,51,0,56,0,0,14,15,10,20,20,21,99,24,19,37,12,8,2.61\r\n,Arcohe Elementary,Arcohe Union Elementary,Sacramento,802,5,3,2,4,1,38,0,51,0,56,0,0,14,15,9,20,20,21,100,24,19,37,12,8,2.61\r\n,,Rowland Unified,Los Angeles,802,B,2,0,21,9,64,0,4,1,66,11,0,27,24,9,16,21,29,96,20,32,24,18,7,2.6\r\n,Laurel Wood Elementary,Salinas City Elementary,Monterey,802,5,2,0,2,8,72,0,13,1,67,6,3,19,16,4,26,28,N/A,100,15,40,27,12,7,2.56\r\n,Aromas,Aromas/San Juan Unified,San Benito,802,5,2,1,3,0,58,1,35,0,55,0,18,30,14,13,23,25,4,100,24,20,41,12,3,2.51\r\n,George Cirby Elementary,Roseville City Elementary,Placer,802,5,4,0,0,1,57,0,38,0,69,0,0,38,5,17,22,23,N/A,95,19,38,25,14,4,2.47\r\n,Morada Middle,Lodi Unified,San Joaquin,802,5,11,0,34,7,34,2,10,1,80,16,2,27,23,11,N/A,N/A,27,83,24,35,25,13,3,2.36\r\nD,Academia Moderna,Los Angeles Unified,Los Angeles,802,5,0,0,0,0,100,0,0,0,95,0,0,48,21,10,24,23,N/A,94,27,29,28,13,3,2.35\r\n,Sweetwater High,Sweetwater Union High,San Diego,802,7,2,1,2,12,82,0,1,0,84,19,0,28,45,11,N/A,N/A,29,87,32,28,20,16,4,2.32\r\n,Sing Lum Elementary,Panama-Buena Vista Union,Kern,802,5,9,1,4,2,51,1,32,0,61,2,0,9,11,13,29,30,N/A,55,21,40,27,11,1,2.31\r\n,Adams Elementary,Santa Barbara Unified,Santa Barbara,802,5,2,1,1,1,84,0,11,0,76,2,0,77,0,14,25,24,N/A,88,37,30,18,9,5,2.14\r\n,Alicia Cortez Elementary,Chino Valley Unified,San Bernardino,802,5,2,0,3,2,74,0,18,1,61,1,0,22,11,13,29,30,N/A,88,32,38,18,10,2,2.11\r\n,Arminta Street Elementary,Los Angeles Unified,Los Angeles,802,5,0,0,1,2,93,0,3,0,100,5,0,31,25,19,17,17,N/A,88,34,37,21,7,1,2.05\r\n,Georgia Morris Elementary,Rialto Unified,San Bernardino,802,5,9,0,1,1,85,0,3,1,88,9,0,41,17,7,30,32,N/A,90,39,32,20,7,2,2.01\r\n,Beech Avenue Elementary,Fontana Unified,San Bernardino,802,5,1,0,1,0,93,0,5,0,100,4,0,60,16,10,30,30,N/A,95,38,37,15,6,3,2\r\nD,Ezequiel Tafoya Alvarado Academy,Madera Unified,Madera,802,5,0,0,0,0,100,0,0,0,98,0,0,56,20,4,23,31,N/A,96,45,36,14,5,0,1.8\r\nD,Camino Nuevo Charter High,Los Angeles Unified,Los Angeles,802,7,0,0,1,1,98,0,0,0,98,0,0,6,79,7,N/A,N/A,28,99,59,24,10,6,1,1.66\r\n,Woodbury Elementary,Garden Grove Unified,Orange,802,5,0,1,24,1,70,2,2,0,84,0,0,60,17,8,25,32,N/A,7,50,42,4,4,0,1.63\r\n,Lagunitas Elementary,Lagunitas Elementary,Marin,801,5,0,0,0,0,10,0,90,0,23,0,0,5,0,22,21,23,18,77,5,4,17,45,30,3.92\r\nD,Walden Academy,Glenn County Office of Educati,Glenn,801,5,1,3,3,0,28,0,65,0,7,0,0,3,7,0,23,24,N/A,97,1,4,39,33,22,3.7\r\nD,Great Valley Academy - Manteca,New Jerusalem Elementary,San Joaquin,801,5,6,0,3,3,27,0,58,0,28,0,0,2,0,5,23,26,N/A,52,0,13,43,31,13,3.43\r\n,Coarsegold Elementary,Yosemite Unified,Madera,801,5,1,7,0,0,12,0,72,8,52,8,0,0,0,16,23,24,21,88,4,14,38,33,11,3.33\r\n,Citrus Heights Elementary,San Juan Unified,Sacramento,801,5,4,1,2,1,22,0,68,1,63,2,0,18,4,11,27,29,N/A,86,3,21,35,33,9,3.25\r\n,Cambridge Elementary,Travis Unified,Solano,801,5,14,1,4,12,26,1,40,3,30,2,0,9,5,17,27,30,N/A,98,4,19,37,33,8,3.24\r\n,,Grass Valley Elementary,Nevada,801,B,1,3,1,1,13,0,77,1,54,1,0,5,1,11,22,26,24,96,4,21,41,22,12,3.17\r\n,Soquel Elementary,Soquel Union Elementary,Santa Cruz,801,5,1,1,3,1,46,1,45,1,6,0,0,23,7,13,23,32,N/A,99,16,15,26,25,19,3.14\r\n,Diamond Valley Elementary,Alpine County Unified,Alpine,801,5,0,42,0,0,3,0,49,2,60,0,0,0,0,28,12,9,N/A,65,7,10,57,17,10,3.12\r\n,Half Moon Bay High,Cabrillo Unified,San Mateo,801,7,1,0,3,1,44,0,49,1,29,14,6,18,20,10,N/A,N/A,27,97,29,8,15,23,25,3.07\r\nD,Stockton Collegiate International Elemen,Stockton Unified,San Joaquin,801,5,14,0,8,5,52,1,19,1,64,0,0,11,8,8,22,24,N/A,92,8,25,31,26,9,3.03\r\n,,Silver Valley Unified,San Bernardino,801,B,12,2,1,2,28,3,46,6,45,0,0,5,2,6,21,24,20,96,5,29,38,18,10,3\r\n,Sierra Vista Middle,Covina-Valley Unified,Los Angeles,801,5,4,0,7,3,67,0,17,0,58,17,0,5,9,11,N/A,26,27,99,7,28,33,22,9,3\r\n,Penn Elementary,San Diego Unified,San Diego,801,5,22,0,2,21,44,0,3,8,76,20,0,34,4,9,24,37,N/A,95,7,26,33,29,5,2.98\r\n,,Julian Union High,San Diego,801,B,0,9,1,1,22,1,64,1,41,18,0,4,6,6,N/A,N/A,18,89,14,27,25,14,19,2.96\r\n,Walter Colton,Monterey Peninsula Unified,Monterey,801,5,5,0,6,3,46,2,32,5,50,10,0,15,21,8,N/A,26,31,100,17,25,21,17,19,2.95\r\n,Cooley Ranch Elementary,Colton Joint Unified,San Bernardino,801,5,19,1,3,4,57,0,12,3,66,18,0,15,6,11,20,28,N/A,96,10,23,42,15,10,2.9\r\n,Valley of Enchantment Elementary,Rim of the World Unified,San Bernardino,801,5,1,1,0,0,27,0,67,4,59,4,0,9,0,14,22,30,N/A,92,8,28,42,12,9,2.87\r\n,Bonita Street Elementary,Los Angeles Unified,Los Angeles,801,5,11,1,2,27,48,6,4,0,78,7,0,15,10,14,15,7,N/A,53,9,24,43,22,2,2.85\r\n,Jurupa Vista Elementary,Colton Joint Unified,San Bernardino,801,5,16,1,2,4,71,0,6,0,70,15,0,32,9,16,19,29,N/A,93,13,28,34,15,10,2.82\r\n,,Lake Elsinore Unified,Riverside,801,B,6,1,2,2,53,1,35,0,58,13,0,13,16,13,23,30,30,98,14,27,32,19,7,2.78\r\n,Spring Valley Middle,La Mesa-Spring Valley,San Diego,801,5,14,1,1,3,53,1,23,4,66,15,0,13,20,15,N/A,N/A,27,90,14,26,34,20,6,2.78\r\n,Emerson Elementary,Riverside Unified,Riverside,801,5,17,1,6,0,57,1,15,0,74,12,0,21,7,13,23,29,N/A,90,17,26,32,16,10,2.77\r\n,Happy Valley Elementary,Happy Valley Union Elementary,Shasta,801,5,1,7,3,0,14,0,71,4,80,8,0,0,0,13,N/A,28,27,90,11,32,39,14,4,2.67\r\n,Nora Sterry Elementary,Los Angeles Unified,Los Angeles,801,5,13,0,2,0,73,0,10,0,83,6,0,33,17,19,20,18,N/A,59,23,25,25,17,10,2.66\r\n,Grand Terrace Elementary,Colton Joint Unified,San Bernardino,801,5,8,1,4,1,65,0,20,1,70,18,0,21,7,18,20,28,N/A,95,15,30,38,10,6,2.62\r\n,Wallenberg (Raoul) Traditional High,San Francisco Unified,San Francisco,801,7,11,0,59,3,18,1,5,1,66,26,0,14,45,9,N/A,N/A,30,79,19,34,19,24,5,2.61\r\n,Toland Way Elementary,Los Angeles Unified,Los Angeles,801,5,1,1,3,17,76,0,3,0,87,8,0,20,21,12,16,17,N/A,98,21,29,27,15,8,2.58\r\nD,Crown Preparatory Academy,Los Angeles Unified,Los Angeles,801,5,33,0,1,0,64,0,0,1,95,0,0,42,9,7,N/A,25,N/A,62,31,21,18,22,9,2.57\r\n,Meridian Elementary,Cajon Valley Union,San Diego,801,5,8,0,1,2,29,1,51,2,70,3,0,40,3,12,23,31,N/A,83,14,38,32,13,4,2.54\r\n,Rail Road Flat Elementary,Calaveras Unified,Calaveras,801,5,0,9,0,0,9,0,77,5,82,2,0,0,0,13,27,30,N/A,96,7,43,43,4,4,2.54\r\n,Oneonta Elementary,South Bay Union Elementary,San Diego,801,5,7,0,1,8,68,0,13,2,84,4,0,41,4,14,22,28,N/A,95,21,32,28,15,5,2.52\r\n,Fortuna Middle,Fortuna Union Elementary,Humboldt,801,5,3,4,1,0,40,1,50,0,70,5,2,19,2,17,N/A,19,N/A,92,16,36,34,10,4,2.49\r\n,La Loma Junior High,Modesto City Elementary,Stanislaus,801,5,1,1,3,1,43,1,42,3,69,27,0,11,10,13,N/A,N/A,28,97,19,39,25,9,8,2.48\r\n,Highland Elementary,Vallejo City Unified,Solano,801,5,32,0,1,6,49,1,7,1,80,3,0,24,17,7,27,30,N/A,94,19,37,31,9,4,2.42\r\n,Barrel Springs Elementary,Palmdale Elementary,Los Angeles,801,5,24,1,0,1,61,0,10,1,86,11,1,22,8,9,29,28,N/A,96,22,33,33,8,3,2.39\r\n,Venetia Valley Elementary,San Rafael City Elementary,Marin,801,5,3,0,4,0,78,0,13,1,70,4,0,50,19,11,22,22,18,94,28,32,18,16,5,2.38\r\n,,Princeton Joint Unified,Glenn,801,B,0,6,0,0,62,0,33,0,75,0,10,20,18,6,18,22,13,84,28,26,32,8,5,2.37\r\n,Valinda School of Academics,Hacienda la Puente Unified,Los Angeles,801,5,2,0,3,5,87,0,3,0,86,17,0,22,17,11,19,30,33,49,21,42,21,14,3,2.36\r\n,Tweedy Elementary,Los Angeles Unified,Los Angeles,801,5,0,0,0,0,99,0,0,0,100,6,0,26,30,10,19,20,N/A,58,32,27,22,10,8,2.34\r\n,Eucalyptus,Hawthorne,Los Angeles,801,5,18,1,2,4,72,2,2,0,87,2,0,49,7,7,27,30,N/A,90,22,39,30,9,1,2.29\r\n,Catherine Everett Elementary,Modesto City Elementary,Stanislaus,801,5,7,2,4,1,55,5,21,3,77,8,0,22,4,12,23,28,N/A,93,13,56,24,4,3,2.27\r\n,John L. Prueitt Elementary,Wasco Union Elementary,Kern,801,5,3,0,0,0,90,0,6,0,83,0,2,43,13,3,30,26,N/A,97,28,44,18,7,2,2.11\r\n,Durfee Elementary,El Monte City Elementary,Los Angeles,801,5,0,0,23,1,73,0,2,0,81,5,1,33,20,9,26,29,26,100,30,43,18,8,2,2.1\r\n,Middle College High,Los Angeles Unified,Los Angeles,801,7,33,1,0,0,65,0,0,0,83,22,0,0,38,0,N/A,N/A,24,33,42,24,24,8,3,2.06\r\n,Marshall (John) Elementary,Anaheim City,Orange,801,5,1,0,9,1,84,0,3,0,87,23,0,44,30,7,30,31,N/A,2,30,40,30,0,0,2\r\n,Myra Linn Elementary,Alvord Unified,Riverside,801,5,1,0,1,1,92,0,5,0,88,4,0,68,1,14,25,33,N/A,96,41,34,15,6,4,1.98\r\n,One Hundred Eighteenth Street,Los Angeles Unified,Los Angeles,801,5,18,0,0,0,81,1,0,0,100,6,0,43,20,5,19,21,N/A,50,44,28,19,6,3,1.96\r\n,Del Rey Elementary,King City Union,Monterey,801,5,0,0,1,1,89,0,8,0,86,0,6,58,22,13,21,24,N/A,96,40,35,16,7,2,1.95\r\n,Cerritos Elementary,Savanna Elementary,Orange,801,5,4,1,15,6,38,1,30,4,51,4,0,26,13,18,24,27,N/A,99,36,42,14,6,1,1.93\r\n,Charles H. Lee Elementary,Azusa Unified,Los Angeles,801,5,3,0,0,1,92,0,3,0,90,4,2,48,15,16,20,24,N/A,98,41,37,16,5,2,1.89\r\n,Del Rey Elementary,Sanger Unified,Fresno,801,5,1,0,10,0,87,0,2,1,100,3,5,53,14,6,20,23,N/A,100,54,18,16,12,0,1.86\r\nD,Leadership Public Schools: Richmond,West Contra Costa Unified,Contra Costa,801,7,9,0,1,0,88,0,1,0,92,0,0,32,45,9,N/A,N/A,26,97,51,32,12,2,3,1.74\r\n,Roseland Elementary,Roseland Elementary,Sonoma,801,5,1,3,3,0,88,0,5,0,88,13,7,72,12,11,19,22,N/A,97,55,28,11,3,4,1.72\r\nD,High Tech Middle Chula Vista,SBC - High Tech High,San Diego,800,5,4,1,2,7,72,0,9,4,49,0,0,14,12,9,N/A,28,N/A,96,1,10,30,29,30,3.77\r\n,Branham High,Campbell Union High,Santa Clara,800,7,4,0,9,1,27,1,50,7,6,1,0,6,10,13,N/A,N/A,27,92,7,15,31,29,19,3.39\r\nD,Antioch Charter Academy II,Antioch Unified,Contra Costa,800,5,17,4,10,1,23,0,45,0,36,0,0,3,2,9,,,,97,2,12,52,26,8,3.27\r\n,Bret Harte Union High,Bret Harte Union High,Calaveras,800,7,0,2,1,0,16,0,76,5,35,10,0,1,5,10,N/A,N/A,24,100,6,13,43,25,12,3.25\r\n,Leland Plus (Continuation),San Jose Unified,Santa Clara,800,B,0,0,20,0,53,7,20,0,33,0,0,7,13,13,N/A,N/A,16,93,7,7,57,14,14,3.21\r\n,Anacapa Middle,Ventura Unified,Ventura,800,5,2,1,3,1,52,0,37,4,52,20,1,12,9,11,N/A,25,29,100,10,18,36,22,14,3.13\r\n,Mariposa Middle,Mariposa County Unified,Mariposa,800,5,1,7,1,0,13,0,69,6,54,13,0,2,3,25,N/A,N/A,25,96,4,22,47,14,13,3.1\r\n,Wasuma Elementary,Bass Lake Joint Union Elementa,Madera,800,5,0,5,0,0,7,0,86,2,47,2,0,1,1,15,26,33,N/A,98,6,21,41,22,11,3.09\r\n,Christopher High,Gilroy Unified,Santa Clara,800,7,2,0,4,3,57,0,32,1,42,9,1,8,20,8,N/A,N/A,31,77,14,18,29,29,10,3.04\r\n,,Center Joint Unified,Sacramento,800,B,13,1,8,3,20,1,49,2,58,4,0,10,16,15,28,28,25,96,7,25,37,25,7,3\r\n,Live Oak Elementary,Castaic Union Elementary,Los Angeles,800,5,2,0,4,6,41,0,44,4,31,5,0,16,2,8,19,28,N/A,100,4,23,46,23,3,2.99\r\n,Muir (John) Elementary,Antioch Unified,Contra Costa,800,5,27,2,9,9,32,2,20,0,51,7,0,17,5,12,25,29,N/A,77,7,24,37,25,6,2.99\r\n,Modoc Middle,Modoc Joint Unified,Modoc,800,5,1,8,1,1,16,0,73,1,49,0,3,0,6,0,N/A,23,23,97,9,25,36,22,8,2.95\r\n,Mariposa Elementary,Mariposa County Unified,Mariposa,800,5,1,6,1,0,16,0,66,8,64,4,0,3,3,16,25,32,N/A,95,4,26,50,12,8,2.95\r\n,Tierra del Sol Middle,Lakeside Union Elementary,San Diego,800,5,1,4,1,1,26,0,65,1,38,8,0,4,8,16,N/A,29,29,96,9,24,37,22,7,2.93\r\n,Branscomb Elementary,Laytonville Unified,Mendocino,800,5,0,0,0,0,25,0,75,0,25,0,0,8,0,8,1,N/A,N/A,100,8,33,33,8,17,2.92\r\n,Vaca Pena Middle,Vacaville Unified,Solano,800,5,12,1,3,4,30,2,45,3,42,15,0,5,11,10,N/A,N/A,28,98,9,25,39,20,7,2.92\r\n,,Lakeside Union,Kern,800,B,7,1,5,2,51,0,32,2,57,0,0,15,13,10,21,24,26,97,7,37,28,16,12,2.88\r\n,,Covina-Valley Unified,Los Angeles,800,B,4,0,5,3,75,0,12,1,63,9,0,11,12,13,21,27,28,97,11,29,33,20,7,2.82\r\n,Lakeside,Lakeside Union,Kern,800,5,6,2,6,2,50,0,32,1,55,0,0,11,17,11,20,21,26,98,11,36,26,15,11,2.79\r\n,,Fall River Joint Unified,Shasta,800,B,0,10,1,0,21,0,63,2,55,4,9,4,7,14,17,26,17,90,12,27,41,13,7,2.77\r\n,Merced High,Merced Union High,Merced,800,7,6,1,15,1,55,0,20,2,74,4,1,8,26,8,N/A,N/A,32,87,19,23,30,18,10,2.77\r\n,Mineral King Elementary,Visalia Unified,Tulare,800,5,1,1,3,0,67,0,26,2,74,8,3,18,9,12,26,29,N/A,99,14,26,35,17,7,2.76\r\n,Collins Elementary,West Contra Costa Unified,Contra Costa,800,5,28,0,15,13,25,2,16,0,54,9,0,20,9,15,23,28,N/A,88,6,44,24,22,4,2.75\r\n,,Yuba City Unified,Sutter,800,B,2,1,18,1,39,0,34,5,65,7,5,16,20,12,21,25,23,95,18,28,26,18,9,2.74\r\n,Bowers Elementary,Santa Clara Unified,Santa Clara,800,5,3,0,28,5,42,0,17,3,62,7,0,49,12,16,25,24,N/A,88,15,32,26,21,7,2.73\r\n,Osborn Two-Way Immersion Academy,Turlock Unified,Stanislaus,800,5,1,0,0,0,86,0,11,0,68,3,0,54,9,6,20,29,N/A,97,19,35,17,12,17,2.71\r\n,Barbara Comstock Morse Elementary,Elk Grove Unified,Sacramento,800,5,31,1,19,6,29,2,5,6,81,3,0,22,19,10,20,26,N/A,94,9,39,30,16,6,2.71\r\n,,Vista Unified,San Diego,800,B,3,0,2,2,59,1,29,2,57,12,3,25,19,14,23,28,28,87,25,20,24,21,10,2.7\r\n,Wayne Ruble Middle,Fontana Unified,San Bernardino,800,5,10,0,2,5,75,0,6,0,73,8,0,16,29,14,N/A,28,29,91,18,28,29,19,6,2.68\r\n,Avalon Gardens Elementary,Los Angeles Unified,Los Angeles,800,5,70,0,0,0,29,0,0,1,79,3,0,14,6,16,14,13,N/A,75,11,34,37,13,5,2.67\r\n,North Cottonwood,Cottonwood Union Elementary,Shasta,800,5,1,3,2,1,14,0,76,3,61,0,0,0,0,11,N/A,25,N/A,97,8,48,25,14,5,2.6\r\n,Santa Barbara Community Academy,Santa Barbara Unified,Santa Barbara,800,5,4,0,1,0,87,0,6,2,71,4,0,54,3,14,26,29,N/A,81,14,37,28,16,5,2.6\r\n,West Sacramento School for Independent S,Washington Unified,Yolo,800,7,11,0,5,0,26,0,55,3,45,34,0,3,24,3,N/A,N/A,7,100,18,24,42,13,3,2.58\r\n,,Selma Unified,Fresno,800,B,1,0,5,0,86,0,7,0,84,6,3,29,21,11,19,25,25,90,22,29,29,11,8,2.55\r\n,Nichols Elementary,Oceanside Unified,San Diego,800,5,7,0,7,5,53,3,23,0,55,4,0,22,17,11,27,26,N/A,94,19,27,37,13,3,2.54\r\n,Hannalei Elementary,Vista Unified,San Diego,800,5,2,1,2,0,65,0,27,3,67,0,1,38,14,14,25,33,N/A,86,27,22,30,15,5,2.5\r\n,,Buena Vista Elementary,Tulare,800,B,5,0,0,0,69,0,25,0,67,5,7,19,10,4,14,24,N/A,99,18,33,36,11,3,2.47\r\n,Buena Vista Elementary,Buena Vista Elementary,Tulare,800,5,5,0,0,0,69,0,25,0,67,5,7,19,10,4,14,24,N/A,99,18,33,36,11,3,2.47\r\n,Cameron Elementary,Barstow Unified,San Bernardino,800,5,20,2,1,1,46,1,24,5,72,12,0,13,0,17,24,26,N/A,90,18,35,35,6,6,2.47\r\n,Bodega Bay Elementary,Shoreline Unified,Marin,800,5,0,0,8,0,52,4,36,0,48,0,0,48,0,20,24,17,N/A,72,22,50,0,17,11,2.44\r\n,Gauer (Melbourne A.) Elementary,Anaheim City,Orange,800,5,3,0,6,3,81,1,5,0,87,19,1,46,30,10,29,33,N/A,16,24,33,24,17,3,2.42\r\n,Lorena Falasco Elementary,Los Banos Unified,Merced,800,5,2,0,1,0,85,1,10,1,76,3,2,41,14,11,31,31,N/A,88,18,39,30,11,2,2.41\r\n,,Whittier City Elementary,Los Angeles,800,B,1,0,1,0,92,0,4,0,68,0,0,18,15,12,29,31,30,95,23,37,28,9,3,2.33\r\n,Bandini Elementary,Montebello Unified,Los Angeles,800,5,0,1,0,0,98,0,1,0,100,1,0,38,30,13,27,28,N/A,96,21,43,23,9,5,2.33\r\n,City Terrace Elementary,Los Angeles Unified,Los Angeles,800,5,2,0,6,0,91,0,1,0,100,5,4,26,25,14,18,16,N/A,69,33,33,20,12,3,2.2\r\n,Lydia Jackson Elementary,Whittier City Elementary,Los Angeles,800,5,0,0,0,0,94,0,3,0,87,0,0,36,9,10,32,28,N/A,97,26,38,27,8,1,2.19\r\n,Ted Porter Elementary,Fontana Unified,San Bernardino,800,5,7,0,0,0,90,0,3,0,100,2,0,48,14,7,24,31,N/A,92,30,40,18,9,3,2.16\r\n,Morningside Elementary,Los Angeles Unified,Los Angeles,800,5,0,0,0,0,98,0,1,0,100,12,1,33,22,9,18,19,N/A,55,37,33,18,7,5,2.09\r\n,Marvin Elementary,Los Angeles Unified,Los Angeles,800,5,12,0,0,0,87,0,1,0,90,9,0,39,22,13,20,22,N/A,75,36,34,19,8,2,2.07\r\n,Christopher Elementary,Oak Grove Elementary,Santa Clara,800,5,3,0,7,2,83,2,2,0,85,15,3,47,21,7,26,31,N/A,97,37,34,22,6,1,2.01\r\n,Firebaugh Middle,Firebaugh-Las Deltas Joint Uni,Fresno,800,5,1,0,0,0,91,0,7,0,91,4,22,31,43,9,N/A,27,29,100,45,25,17,9,3,1.99\r\nD,Montague Charter Academy,Los Angeles Unified,Los Angeles,800,5,1,0,0,1,97,0,1,0,100,6,0,56,7,6,20,25,N/A,78,43,35,12,5,5,1.94\r\n,Sylmar Elementary,Los Angeles Unified,Los Angeles,800,5,1,0,1,1,97,0,1,0,100,6,0,34,26,11,18,24,N/A,92,44,31,17,6,2,1.92\r\n,Wright Elementary,El Monte City Elementary,Los Angeles,800,5,0,0,22,1,76,0,2,0,89,7,5,38,22,8,29,28,26,99,43,36,14,6,1,1.86\r\n,Florence Avenue Elementary,Los Angeles Unified,Los Angeles,800,5,1,0,0,0,98,0,0,0,100,5,1,41,33,9,21,22,N/A,85,50,32,11,4,2,1.74\r\n,Santa Lucia Elementary,King City Union,Monterey,800,5,0,0,0,0,96,0,2,2,92,0,10,65,23,12,21,23,N/A,98,54,28,12,3,3,1.73\r\n,Adams Elementary,Santa Ana Unified,Orange,800,5,0,0,2,0,96,0,1,0,96,3,1,78,13,17,23,29,N/A,96,58,28,10,3,0,1.59\r\n,Cosumnes Oaks High,Elk Grove Unified,Sacramento,799,7,20,0,10,5,22,1,36,5,34,10,0,4,13,11,N/A,N/A,30,94,3,17,30,30,19,3.44\r\nD,New Day Academy,Ravendale-Termo Elementary,Lassen,799,5,0,4,2,0,9,0,80,1,44,1,0,0,0,7,2,2,2,95,3,14,37,29,16,3.42\r\nD,Shasta Secondary Home,Shasta Union High,Shasta,799,7,2,2,1,1,7,0,81,6,36,5,0,0,1,9,N/A,N/A,17,99,2,16,40,26,16,3.37\r\nD,Da Vinci Science,Wiseburn Elementary,Los Angeles,799,7,10,0,4,1,43,1,18,3,40,0,0,3,19,7,19,22,29,92,9,15,27,29,20,3.37\r\nD,Steele Canyon High,Grossmont Union High,San Diego,799,7,6,1,1,2,27,0,64,0,18,43,0,10,8,10,N/A,N/A,32,98,3,19,35,26,17,3.35\r\n,Stonebrae Elementary,Hayward Unified,Alameda,799,5,21,0,16,4,32,1,17,5,42,0,0,16,8,8,27,30,N/A,95,10,16,25,32,18,3.31\r\n,,Chico Unified,Butte,799,B,4,2,7,1,21,1,63,1,46,3,0,10,6,12,24,27,27,86,10,18,30,24,18,3.23\r\nD,Delta Elementary Charter,River Delta Joint Unified,Sacramento,799,5,2,1,1,1,42,0,46,8,38,0,3,23,4,6,24,28,N/A,93,8,15,31,39,7,3.21\r\n,High Desert,Acton-Agua Dulce Unified,Los Angeles,799,5,1,1,0,1,32,0,59,5,32,5,0,9,5,17,N/A,27,30,85,7,23,30,30,10,3.14\r\n,,Middletown Unified,Lake,799,B,1,1,1,1,22,1,72,3,43,0,0,7,3,5,19,23,21,89,8,19,35,27,11,3.14\r\n,Jack London Elementary,Piner-Olivet Union Elementary,Sonoma,799,5,8,2,10,1,33,1,44,0,42,2,0,31,1,8,21,21,N/A,88,10,24,31,28,7,3\r\n,,Twain Harte-Long Barn Union El,Tuolumne,799,B,0,0,0,0,5,0,92,1,52,0,0,0,0,18,17,19,N/A,95,0,27,48,22,3,3\r\n,San Pasqual High,Escondido Union High,San Diego,799,7,2,1,4,2,50,0,40,0,42,9,1,14,25,8,N/A,N/A,21,83,24,14,18,25,18,2.98\r\n,Carmen Dragon Elementary,Antioch Unified,Contra Costa,799,5,35,1,7,7,38,0,12,0,63,3,0,23,4,13,26,30,N/A,75,10,25,39,15,12,2.93\r\n,Lakeport Elementary,Lakeport Unified,Lake,799,5,2,11,1,2,29,0,51,3,71,0,4,10,7,20,23,N/A,N/A,94,12,19,46,17,7,2.88\r\n,Anderson (Alex) Elementary,Oak Grove Elementary,Santa Clara,799,5,4,1,24,5,47,1,16,1,51,18,1,34,14,15,21,30,N/A,95,10,30,34,21,5,2.79\r\n,Hughson Elementary,Hughson Unified,Stanislaus,799,5,0,1,0,1,51,0,46,1,56,0,7,41,0,14,23,N/A,N/A,99,14,27,33,18,8,2.78\r\n,Sutter Elementary,Antioch Unified,Contra Costa,799,5,19,1,3,3,34,0,39,0,57,2,0,15,2,17,28,27,N/A,67,9,31,38,17,5,2.77\r\n,Annie R. Mitchell,Visalia Unified,Tulare,799,5,1,1,4,0,68,0,24,1,71,14,5,26,6,6,26,33,N/A,96,20,18,35,21,6,2.75\r\n,\"Bridges Community Based School, North Co\",Windsor Unified,Sonoma,799,C,0,0,0,0,40,0,60,0,15,0,0,10,0,100,N/A,9,N/A,35,14,43,0,43,0,2.71\r\n,Lindo Park Elementary,Lakeside Union Elementary,San Diego,799,5,3,5,1,2,34,1,50,4,62,8,0,17,4,21,21,28,N/A,98,16,25,36,15,7,2.71\r\n,Sequoia High,Sequoia Union High,San Mateo,799,7,2,0,4,1,59,1,29,2,48,5,2,24,24,12,N/A,N/A,27,90,32,18,17,17,17,2.7\r\n,,Salida Union Elementary,Stanislaus,799,B,4,0,3,2,59,1,28,1,59,4,2,27,8,10,27,32,28,94,12,34,36,13,4,2.63\r\n,Wild Rose Elementary,Monrovia Unified,Los Angeles,799,5,6,1,3,3,71,0,15,1,68,6,0,25,13,12,26,28,N/A,99,19,36,20,18,7,2.6\r\n,,Cucamonga Elementary,San Bernardino,799,B,15,0,4,3,65,1,10,1,77,9,0,25,13,16,22,26,29,96,13,33,40,11,2,2.55\r\n,Richard M. Moon Primary,Waterford Unified,Stanislaus,799,5,1,1,1,0,60,0,36,0,81,0,6,48,0,7,23,N/A,N/A,75,25,37,8,18,12,2.54\r\n,Juan Lagunas Soria Elementary,Oxnard,Ventura,799,5,3,0,2,3,79,1,11,2,66,1,0,29,10,7,28,32,30,97,23,28,30,13,6,2.5\r\n,Washington Elementary,West Contra Costa Unified,Contra Costa,799,5,32,0,3,1,53,1,9,0,69,4,0,36,7,11,21,27,N/A,96,26,31,19,19,5,2.46\r\n,Wing Lane Elementary,Hacienda la Puente Unified,Los Angeles,799,5,0,0,2,1,92,0,2,3,93,4,0,37,8,12,19,27,N/A,32,27,27,28,13,5,2.44\r\n,Bennett/Kew Elementary,Inglewood Unified,Los Angeles,799,5,37,0,0,0,61,1,1,0,90,0,0,16,0,13,27,26,N/A,95,23,34,28,10,4,2.37\r\n,Rancho Santa Gertrudes Elementary,Los Nietos,Los Angeles,799,5,1,0,0,0,96,0,2,0,100,1,2,33,1,17,20,22,N/A,100,21,38,30,9,2,2.34\r\n,Navelencia Middle,Kings Canyon Joint Unified,Fresno,799,5,0,1,1,1,84,0,13,0,97,0,8,22,41,11,N/A,26,28,90,33,27,21,12,7,2.33\r\n,William Green Elementary,Lawndale Elementary,Los Angeles,799,5,3,0,2,1,85,1,7,0,83,4,0,47,17,13,24,32,N/A,85,16,50,24,9,2,2.3\r\n,Demille Elementary,Westminster Elementary,Orange,799,5,0,0,51,1,41,1,6,0,83,23,0,70,10,6,23,31,N/A,96,29,35,20,13,3,2.26\r\n,Vina Danks Middle,Ontario-Montclair Elementary,San Bernardino,799,5,1,1,1,0,86,0,8,1,77,20,0,24,24,8,N/A,32,28,98,31,31,23,10,4,2.25\r\n,Yucca Loma Elementary,Apple Valley Unified,San Bernardino,799,5,19,1,1,1,53,1,23,1,89,3,0,17,4,7,24,31,N/A,97,24,34,34,7,1,2.25\r\n,,Los Nietos,Los Angeles,799,B,1,0,0,0,97,0,2,0,100,4,2,42,5,14,22,25,26,100,24,41,24,8,3,2.24\r\n,Voorhies Elementary,Bakersfield City,Kern,799,5,2,1,0,0,89,0,7,0,90,2,7,36,18,9,21,27,N/A,77,28,41,19,6,6,2.22\r\n,North Ranchito Elementary,El Rancho Unified,Los Angeles,799,5,0,0,1,0,99,0,0,0,86,0,1,41,17,9,24,30,N/A,95,35,29,30,3,3,2.1\r\n,Atwater High,Merced Union High,Merced,799,7,3,0,6,1,69,0,20,0,85,3,5,11,46,8,N/A,N/A,30,97,40,29,20,10,2,2.06\r\n,Lincoln Elementary,Kings Canyon Joint Unified,Fresno,799,5,0,1,0,1,95,0,3,0,97,0,11,52,16,8,24,24,N/A,100,41,27,22,6,3,2.03\r\n,Napa Street Elementary,Los Angeles Unified,Los Angeles,799,5,4,0,1,2,91,0,2,0,100,5,0,57,19,17,17,20,N/A,72,38,39,15,8,1,1.95\r\n,Pueblo,Pomona Unified,Los Angeles,799,5,3,0,1,1,94,0,1,0,95,4,1,49,27,10,26,30,33,93,32,48,14,4,2,1.94\r\n,Anne Darling Elementary,San Jose Unified,Santa Clara,799,5,1,1,4,0,84,1,8,1,91,6,1,61,14,9,19,20,N/A,83,43,33,16,7,1,1.92\r\n,West Putnam Elementary,Porterville Unified,Tulare,799,5,0,0,2,0,86,0,9,2,91,0,8,36,7,5,24,30,N/A,97,49,25,17,5,4,1.88\r\n,Lowell Elementary,San Jose Unified,Santa Clara,799,5,3,1,10,0,81,1,3,0,91,7,2,69,11,11,25,26,N/A,82,49,29,13,6,4,1.86\r\n,A. L. Conner Elementary,Kings Canyon Joint Unified,Fresno,799,5,0,0,1,0,98,0,1,0,96,0,7,48,27,6,19,24,N/A,99,50,23,21,4,3,1.86\r\n,Charles Bursch Elementary,Baldwin Park Unified,Los Angeles,799,5,0,0,9,4,84,0,2,0,94,12,1,40,19,15,18,25,N/A,78,41,40,13,5,1,1.83\r\n,Rowan Avenue Elementary,Los Angeles Unified,Los Angeles,799,5,0,0,0,0,100,0,0,0,100,5,1,30,36,11,19,25,N/A,32,58,21,16,5,0,1.7\r\n,A. G. Currie Middle,Tustin Unified,Orange,799,5,4,0,2,1,89,1,3,0,91,3,0,42,35,16,N/A,27,31,87,57,26,12,5,0,1.67\r\n,,Lagunitas Elementary,Marin,798,B,1,0,0,0,10,0,90,0,21,0,0,4,0,23,19,22,18,80,4,3,17,44,33,3.98\r\nD,CHAMPS - Charter HS of Arts-Multimedia &,Los Angeles Unified,Los Angeles,798,7,12,1,3,0,26,0,57,0,0,17,0,2,12,9,N/A,N/A,26,90,4,15,25,31,26,3.59\r\n,El Camino Fundamental High,San Juan Unified,Sacramento,798,7,8,2,4,1,19,1,64,1,33,11,0,5,7,8,N/A,N/A,30,84,4,18,23,40,15,3.43\r\nD,Partnerships for Student-Centered Learni,Western Placer Unified,Placer,798,7,4,2,2,2,21,0,67,1,64,0,0,6,4,11,9,12,4,94,5,14,35,29,17,3.41\r\n,Arroyo Grande High,Lucia Mar Unified,San Luis Obispo,798,7,1,1,2,2,32,0,61,2,38,17,0,7,10,10,N/A,N/A,29,85,8,15,28,34,15,3.35\r\n,Terra Linda High,San Rafael City High,Marin,798,7,3,2,9,2,36,1,46,1,34,3,0,8,29,12,N/A,N/A,23,87,18,11,17,29,24,3.3\r\n,Rio Bravo Elementary,Rio Bravo-Greeley Union Elemen,Kern,798,4,2,0,0,0,36,0,55,2,36,3,0,12,7,14,26,31,N/A,89,8,22,32,22,16,3.17\r\n,Walter Woodward Elementary,Manteca Unified,San Joaquin,798,4,6,1,12,6,33,1,39,2,36,5,0,9,10,14,26,31,30,77,3,29,37,23,8,3.06\r\n,Figarden Elementary,Fresno Unified,Fresno,798,4,14,1,5,1,48,1,28,0,60,2,0,5,4,9,23,31,N/A,84,5,22,47,15,11,3.04\r\n,,Tehachapi Unified,Kern,798,B,2,1,1,1,29,0,65,1,36,6,1,7,7,13,25,26,27,76,7,25,38,21,10,3.02\r\n,Mayfair High,Bellflower Unified,Los Angeles,798,7,16,0,5,7,47,1,19,4,51,26,0,8,12,10,N/A,N/A,29,97,10,17,45,19,8,2.99\r\n,Georgia Brown Elementary,Paso Robles Joint Unified,San Luis Obispo,798,4,1,1,1,0,65,0,28,1,56,1,7,47,3,7,31,26,N/A,80,23,15,21,24,17,2.96\r\n,,Paso Robles Joint Unified,San Luis Obispo,798,B,2,1,1,1,46,0,48,1,46,7,4,20,11,12,27,25,24,81,13,22,35,22,9,2.93\r\n,Dayton Elementary,San Lorenzo Unified,Alameda,798,4,12,0,27,14,34,1,10,2,46,8,0,30,24,9,27,27,N/A,91,9,31,28,25,7,2.9\r\n,,Sweetwater Union High,San Diego,798,B,4,1,2,9,74,1,9,0,55,18,0,23,28,11,N/A,N/A,21,89,16,24,25,24,11,2.9\r\n,Woodland Hills Academy,Los Angeles Unified,Los Angeles,798,5,12,1,4,5,49,0,28,1,58,23,0,11,23,13,N/A,34,36,79,19,21,25,25,10,2.87\r\n,Ross Elementary,San Diego Unified,San Diego,798,4,5,0,23,3,48,1,12,8,100,31,0,36,17,11,20,28,N/A,76,12,29,34,18,7,2.8\r\n,,Riverside Unified,Riverside,798,B,8,1,4,1,57,1,27,0,62,10,0,16,13,12,26,30,29,97,20,22,31,15,11,2.76\r\n,Guy Jr. Emanuele Elementary,New Haven Unified,Alameda,798,4,9,0,16,14,50,2,5,4,57,4,3,35,21,11,27,29,N/A,96,20,23,28,20,9,2.75\r\n,Ridgepoint Elementary,Twin Rivers Unified,Sacramento,798,4,8,0,5,2,30,1,42,11,70,21,0,24,11,6,29,32,26,99,10,32,37,17,4,2.75\r\n,Alhambra High,Alhambra Unified,Los Angeles,798,7,1,0,43,2,50,0,3,1,66,15,1,23,28,9,N/A,N/A,32,96,19,30,23,20,9,2.69\r\n,John Adams Elementary,Madera Unified,Madera,798,4,2,1,4,0,70,0,22,1,71,0,1,18,8,5,27,35,N/A,98,15,29,38,12,7,2.67\r\n,Coast Union High,Coast Unified,San Luis Obispo,798,7,0,0,1,0,53,1,44,1,48,0,0,26,23,15,N/A,N/A,16,98,31,20,18,16,15,2.63\r\n,Kingston Elementary,Hesperia Unified,San Bernardino,798,4,5,1,0,0,54,1,39,0,72,6,0,18,4,8,31,28,N/A,91,17,31,36,12,4,2.55\r\n,,General Shafter Elementary,Kern,798,B,0,0,1,0,79,0,19,0,81,0,6,39,20,8,11,17,N/A,86,28,25,26,8,14,2.55\r\n,General Shafter Elementary,General Shafter Elementary,Kern,798,4,0,0,1,0,79,0,19,0,81,0,6,39,20,8,11,17,N/A,86,28,25,26,8,14,2.55\r\n,John Sutter Middle,Fowler Unified,Fresno,798,5,1,0,8,0,80,0,11,0,76,2,2,20,16,10,N/A,28,28,100,24,25,28,21,2,2.53\r\n,Grange Middle,Fairfield-Suisun Unified,Solano,798,5,20,1,4,7,44,2,12,9,73,4,0,13,23,9,N/A,32,30,99,18,34,29,16,2,2.51\r\nD,Orange County Educational Arts Academy,Santa Ana Unified,Orange,798,4,1,0,1,0,91,0,5,0,81,0,0,38,20,10,19,31,25,100,25,28,30,5,11,2.51\r\n,Phillip M. Stokoe Elementary,Alvord Unified,Riverside,798,4,8,1,1,2,72,0,14,2,70,4,0,36,2,12,27,30,N/A,94,24,27,30,13,6,2.5\r\n,Jack Franscioni Elementary,Soledad Unified,Monterey,798,4,1,1,2,2,91,0,2,1,92,0,2,53,13,17,25,31,N/A,98,26,26,26,16,5,2.48\r\n,Village Elementary,Victor Elementary,San Bernardino,798,4,29,1,1,1,56,0,10,1,76,1,0,18,6,8,34,32,N/A,98,18,37,28,13,4,2.47\r\n,Normal Heights Elementary,San Diego Unified,San Diego,798,4,15,0,0,0,72,1,8,5,99,32,0,48,17,13,23,29,N/A,88,18,41,26,8,7,2.45\r\n,Heritage Elementary,Tulare City,Tulare,798,4,5,0,1,0,82,0,12,0,87,5,10,25,18,5,22,32,N/A,93,20,38,28,9,5,2.4\r\n,Rother Elementary,Enterprise Elementary,Shasta,798,4,5,6,8,0,21,0,47,3,76,3,0,16,3,11,26,28,N/A,88,17,40,33,9,1,2.37\r\n,,Panama-Buena Vista Union,Kern,798,B,11,1,7,2,51,0,27,0,64,7,0,13,12,11,29,29,28,52,19,44,20,16,2,2.36\r\n,Midland Elementary,Moreno Valley Unified,Riverside,798,4,14,0,2,0,70,1,13,0,77,2,1,33,6,13,28,31,N/A,90,23,32,33,10,2,2.35\r\n,Laguna Vista Elementary,Ocean View,Ventura,798,4,4,1,1,3,66,0,21,4,99,3,5,52,3,12,22,23,N/A,96,33,24,28,10,5,2.31\r\n,,San Ysidro Elementary,San Diego,798,B,2,0,1,5,90,0,2,0,79,10,1,58,19,11,24,25,N/A,90,29,35,19,13,4,2.28\r\n,D. D. Johnston Elementary,Norwalk-La Mirada Unified,Los Angeles,798,4,5,0,3,2,86,0,4,1,83,10,5,22,16,15,25,29,N/A,99,24,42,23,8,3,2.25\r\n,Alder Middle,Fontana Unified,San Bernardino,798,5,7,0,1,1,84,0,7,0,86,7,0,23,34,14,N/A,23,22,89,30,36,21,11,3,2.22\r\n,Moscone (George R.) Elementary,San Francisco Unified,San Francisco,798,4,2,0,28,2,61,0,2,2,92,11,0,70,16,7,21,27,N/A,84,23,47,17,10,2,2.2\r\n,Broad Avenue Elementary,Los Angeles Unified,Los Angeles,798,4,3,1,0,3,88,1,3,0,87,6,0,21,17,11,17,13,N/A,99,37,28,23,10,3,2.15\r\n,Mountain Shadows Middle,Nuview Union,Riverside,798,5,1,1,1,0,68,0,27,1,76,0,0,24,21,6,N/A,27,29,84,25,44,25,5,1,2.13\r\n,Ramona Elementary,Ontario-Montclair Elementary,San Bernardino,798,4,1,0,4,0,90,0,5,0,84,17,0,64,8,8,25,30,N/A,97,31,42,16,8,3,2.1\r\n,Garden Grove Elementary,Los Angeles Unified,Los Angeles,798,4,1,0,8,4,78,0,7,0,93,15,0,34,22,8,19,24,N/A,92,37,32,20,9,3,2.09\r\n,Chavez Elementary,Long Beach Unified,Los Angeles,798,4,13,0,2,1,77,1,4,0,100,0,3,50,18,15,28,28,N/A,83,43,24,22,8,4,2.05\r\n,Kingsley Elementary,Los Angeles Unified,Los Angeles,798,4,1,1,1,1,85,0,12,0,100,2,0,52,20,4,20,27,N/A,97,41,31,17,7,4,2.03\r\n,San Miguel Elementary,Sunnyvale,Santa Clara,798,4,3,1,8,16,67,0,4,1,77,0,0,62,16,12,22,29,N/A,100,46,24,16,13,2,2.01\r\n,New Lexington Elementary,El Monte City Elementary,Los Angeles,798,4,0,0,21,0,77,0,1,1,95,8,6,50,16,7,31,27,N/A,100,47,26,17,11,0,1.91\r\n,Huntington Park Elementary,Los Angeles Unified,Los Angeles,798,4,0,0,0,0,98,1,1,0,89,3,0,35,30,7,18,26,N/A,85,41,39,14,3,3,1.89\r\n,Addams Elementary,Long Beach Unified,Los Angeles,798,4,13,0,2,1,77,4,2,0,91,10,1,42,22,7,29,33,N/A,72,42,37,13,5,2,1.88\r\n,Mark Keppel,Paramount Unified,Los Angeles,798,4,6,0,0,1,92,0,1,0,96,1,0,49,21,10,28,35,N/A,98,49,31,12,3,5,1.85\r\n,Olive Middle,Baldwin Park Unified,Los Angeles,798,5,1,0,5,2,90,0,2,0,97,15,2,13,39,14,N/A,23,23,70,42,40,12,5,1,1.83\r\n,\"Grandview, College Preparatory Academy\",Hacienda la Puente Unified,Los Angeles,798,4,2,0,1,6,88,0,2,1,86,7,0,20,23,12,19,27,26,98,51,31,10,7,0,1.74\r\n,Almond Tree Middle,Delano Union Elementary,Kern,798,5,1,0,1,8,90,0,0,0,85,10,12,34,40,8,N/A,30,21,94,57,34,8,1,0,1.54\r\nD,Mountain Home Charter (Alternative),Yosemite Unified,Madera,797,4,2,2,1,0,7,1,81,6,0,0,0,0,0,5,3,3,N/A,99,0,5,38,34,23,3.75\r\n,Gregory Gardens Elementary,Mt. Diablo Unified,Contra Costa,797,4,6,0,8,6,28,2,45,6,36,2,0,17,5,8,27,32,N/A,68,4,12,36,30,19,3.49\r\nY,Minarets Charter High,Chawanakee Unified,Madera,797,7,2,1,2,1,15,0,69,11,29,0,0,0,0,11,N/A,N/A,7,90,0,9,50,29,13,3.45\r\n,Del Rio Elementary,Rosedale Union Elementary,Kern,797,4,4,1,3,3,27,0,60,0,26,9,0,4,7,16,23,27,N/A,91,2,14,38,29,17,3.44\r\n,Roseville High,Roseville Joint Union High,Placer,797,7,3,1,6,4,25,0,58,4,29,3,0,7,9,8,N/A,N/A,31,95,6,15,32,31,16,3.37\r\n,Santa Margarita Elementary,Oceanside Unified,San Diego,797,4,11,1,1,1,33,2,47,2,53,6,0,2,1,11,27,30,N/A,96,1,15,52,27,5,3.22\r\n,Rosedale Elementary,Chico Unified,Butte,797,4,3,2,0,1,63,0,29,0,59,0,0,39,5,6,28,30,N/A,89,18,19,17,19,27,3.19\r\n,Farallone View Elementary,Cabrillo Unified,San Mateo,797,4,0,0,1,1,42,0,49,2,42,3,8,32,8,12,23,35,N/A,100,32,5,13,28,22,3.03\r\n,Bidwell Junior High,Chico Unified,Butte,797,5,3,2,7,1,19,1,66,0,49,10,0,10,8,14,N/A,N/A,32,81,9,24,34,22,11,3.03\r\n,H. A. Snow Elementary,Newark Unified,Alameda,797,4,7,0,9,11,50,1,18,4,50,2,0,28,17,17,26,28,N/A,97,11,24,31,25,8,2.95\r\n,Johnson Elementary,San Diego Unified,San Diego,797,4,48,0,7,1,39,1,2,2,100,30,0,25,11,11,22,25,N/A,92,9,21,47,17,5,2.88\r\n,,Yucaipa-Calimesa Joint Unified,San Bernardino,797,B,2,1,1,1,38,0,57,1,49,14,0,11,5,11,23,28,30,94,11,32,32,17,9,2.81\r\n,Ishi Hills Middle,Oroville City Elementary,Butte,797,5,1,5,2,1,16,0,62,13,65,3,0,1,3,10,N/A,30,26,98,9,28,46,9,7,2.78\r\n,Elbow Creek Elementary,Visalia Unified,Tulare,797,4,1,2,3,0,62,0,32,0,68,11,5,22,11,9,30,31,N/A,98,20,24,28,19,9,2.74\r\n,Parkside Intermediate,San Bruno Park Elementary,San Mateo,797,5,3,0,7,10,44,7,28,1,43,10,0,28,11,11,,,,94,13,37,22,22,5,2.7\r\n,,Little Shasta Elementary,Siskiyou,797,B,0,0,0,0,22,0,78,0,48,0,0,9,0,13,1,2,N/A,83,0,42,47,11,0,2.68\r\n,Little Shasta Elementary,Little Shasta Elementary,Siskiyou,797,4,0,0,0,0,22,0,78,0,48,0,0,9,0,13,1,2,N/A,83,0,42,47,11,0,2.68\r\nD,The Language Academy of Sacramento,Sacramento City Unified,Sacramento,797,4,6,0,1,1,89,0,2,0,79,7,0,48,14,11,22,25,26,96,26,28,16,14,16,2.66\r\n,Pine Grove Elementary,Del Norte County Unified,Del Norte,797,4,1,15,3,2,15,1,63,0,63,22,0,4,4,15,21,25,N/A,94,11,28,50,8,2,2.63\r\n,McKinley Elementary,Central Unified,Fresno,797,4,11,1,13,1,63,0,9,1,83,3,0,21,11,7,28,33,N/A,95,16,30,33,14,6,2.63\r\n,Rincon Middle,Escondido Union,San Diego,797,5,4,0,4,3,58,0,30,0,58,16,1,25,18,12,N/A,28,27,83,25,21,29,18,7,2.62\r\n,Erwin Elementary,Los Angeles Unified,Los Angeles,797,4,4,0,3,2,68,0,23,0,100,9,0,36,22,12,19,24,N/A,68,22,22,32,19,5,2.62\r\n,El Roble Elementary,Gilroy Unified,Santa Clara,797,4,1,1,1,3,73,0,18,2,67,2,1,33,6,10,24,30,N/A,93,20,28,28,20,4,2.6\r\n,Vista Grande Elementary,Ontario-Montclair Elementary,San Bernardino,797,4,6,0,6,0,74,1,11,2,74,11,0,27,7,8,27,30,N/A,99,14,38,30,13,5,2.59\r\n,,El Centro Elementary,Imperial,797,B,1,0,1,0,92,0,5,0,81,8,9,44,16,10,23,27,27,84,15,36,31,12,6,2.59\r\n,Nevada Avenue Elementary,Los Angeles Unified,Los Angeles,797,4,6,0,3,5,80,0,5,0,90,8,0,29,20,14,19,22,N/A,93,26,29,20,13,12,2.57\r\n,Montague Elementary,Montague Elementary,Siskiyou,797,4,1,7,1,0,17,0,75,0,60,0,0,0,0,12,11,5,6,82,0,54,36,10,0,2.55\r\n,Tustin High,Tustin Unified,Orange,797,7,4,0,7,2,68,1,16,0,61,7,0,24,31,9,N/A,N/A,32,91,29,25,23,14,8,2.48\r\n,Alpha Technology Middle,Elverta Joint Elementary,Sacramento,797,5,2,0,1,0,24,1,72,0,72,5,0,4,13,9,N/A,29,23,99,17,34,36,13,1,2.47\r\n,Sycamore Middle,Gridley Unified,Butte,797,5,0,0,2,0,58,0,39,0,77,0,7,16,34,11,N/A,29,24,48,27,29,26,11,8,2.44\r\n,Tulare Union High,Tulare Joint Union High,Tulare,797,7,5,1,2,1,65,0,26,0,65,16,7,12,20,5,N/A,N/A,29,91,24,28,33,11,4,2.43\r\n,Adams Elementary,San Diego Unified,San Diego,797,4,17,0,6,0,67,0,7,3,99,19,0,52,8,13,19,24,N/A,80,18,39,32,11,1,2.39\r\n,Lafayette Elementary,Long Beach Unified,Los Angeles,797,4,16,0,5,1,74,1,2,0,100,7,1,30,31,6,30,34,N/A,71,29,32,19,10,10,2.39\r\n,Tokay Colony Elementary,Lodi Unified,San Joaquin,797,4,3,0,3,0,59,0,33,4,69,15,4,39,8,11,13,16,N/A,89,17,46,23,10,4,2.38\r\n,Woodrow Wilson Junior High,Hanford Elementary,Kings,797,5,7,1,1,2,64,0,26,0,69,0,10,11,19,11,N/A,N/A,27,96,19,39,31,8,3,2.37\r\n,Dunlap Elementary,Yucaipa-Calimesa Joint Unified,San Bernardino,797,4,1,0,0,1,55,0,41,1,81,3,0,23,2,16,22,33,N/A,95,21,33,39,6,2,2.35\r\n,Valencia Elementary,El Rancho Unified,Los Angeles,797,4,0,0,0,0,99,0,0,0,80,0,0,37,7,13,25,33,N/A,94,25,33,31,9,2,2.3\r\n,,Hawthorne,Los Angeles,797,B,23,0,3,2,68,1,2,0,84,4,0,32,20,10,27,30,30,91,22,39,28,9,2,2.29\r\n,Weaver Middle,Weaver Union,Merced,797,5,5,0,21,1,61,0,11,1,85,0,3,30,25,10,N/A,27,25,98,30,29,30,7,4,2.25\r\n,Newmark Elementary,San Bernardino City Unified,San Bernardino,797,4,15,1,2,0,66,1,13,1,94,9,0,29,8,10,26,28,N/A,56,33,31,24,10,1,2.15\r\n,Los Robles Elementary,Porterville Unified,Tulare,797,4,1,0,1,1,83,1,12,1,87,0,11,29,9,7,24,31,N/A,93,35,30,26,6,2,2.1\r\n,Ella P. Melbourne Elementary,ABC Unified,Los Angeles,797,4,1,0,2,1,93,0,3,1,94,6,22,49,18,8,24,28,N/A,97,40,29,21,6,4,2.05\r\n,Thomas P. Ryan Elementary,Alum Rock Union Elementary,Santa Clara,797,4,1,0,4,3,89,1,1,0,100,8,1,58,26,13,18,34,N/A,87,43,29,12,11,5,2.05\r\n,Twila Reid Elementary,Savanna Elementary,Orange,797,4,4,0,15,9,59,1,11,1,74,1,0,48,11,10,27,32,N/A,99,40,30,17,11,1,2.03\r\n,Newhope Elementary,Garden Grove Unified,Orange,797,4,1,0,21,0,76,0,1,0,78,1,0,64,16,8,25,30,N/A,1,0,100,0,0,0,2\r\n,Carl E. Gilbert Elementary,Buena Park Elementary,Orange,797,4,5,0,3,3,81,1,5,2,84,2,0,70,6,8,27,31,N/A,81,41,30,18,9,2,2\r\n,Legore Elementary,El Monte City Elementary,Los Angeles,797,4,0,0,12,0,86,0,1,0,91,2,11,50,16,10,27,28,N/A,100,35,43,14,7,1,1.97\r\n,Los Angeles Elementary,Los Angeles Unified,Los Angeles,797,4,4,1,1,0,94,0,0,0,85,7,0,45,35,12,21,30,N/A,61,44,30,17,7,2,1.92\r\n,Webster Elementary,Fresno Unified,Fresno,797,4,3,0,12,0,77,0,6,0,100,0,2,38,15,8,25,21,N/A,66,58,28,12,2,1,1.61\r\n,Louis G. Zeyen Elementary,Garden Grove Unified,Orange,797,4,1,0,30,1,57,0,11,0,61,0,0,51,23,16,27,26,N/A,0,0,0,0,0,0,\r\n,Cold Stream Alternative,Tahoe-Truckee Joint Unified,Placer,796,7,6,0,0,0,6,0,81,6,13,6,0,0,6,13,N/A,N/A,9,88,7,14,21,21,36,3.64\r\n,Westmont High,Campbell Union High,Santa Clara,796,7,4,0,14,2,28,0,44,8,6,2,0,11,22,8,N/A,N/A,29,93,8,12,27,31,22,3.47\r\n,,Bend Elementary,Tehama,796,B,3,3,0,0,16,0,78,0,56,0,0,9,0,9,27,18,N/A,88,0,7,57,25,11,3.39\r\n,Bend Elementary,Bend Elementary,Tehama,796,4,3,3,0,0,16,0,78,0,56,0,0,9,0,9,27,18,N/A,88,0,7,57,25,11,3.39\r\n,,West Sonoma County Union High,Sonoma,796,B,2,1,2,1,17,0,73,4,24,11,0,4,6,12,9,N/A,26,99,7,16,30,27,20,3.36\r\n,Williams Ranch Elementary,Pleasant Valley Elementary,Nevada,796,4,1,6,0,0,2,0,86,5,43,0,0,0,0,14,24,N/A,N/A,93,0,10,47,38,4,3.36\r\n,Marblehead Elementary,Capistrano Unified,Orange,796,4,1,0,2,0,34,0,56,5,39,2,0,23,4,11,24,32,N/A,94,12,17,20,32,20,3.32\r\n,Elkins Elementary,Elkins Elementary,Tehama,796,4,0,8,8,0,8,0,77,0,92,0,0,0,0,8,,,,54,0,14,43,43,0,3.29\r\n,,Elkins Elementary,Tehama,796,B,0,8,8,0,8,0,77,0,92,0,0,0,0,8,,,,54,0,14,43,43,0,3.29\r\n,Elk Grove High,Elk Grove Unified,Sacramento,796,7,7,1,8,3,21,1,54,4,33,9,0,4,10,11,N/A,N/A,22,93,4,20,33,29,14,3.28\r\n,Quartz Hill High,Antelope Valley Union High,Los Angeles,796,7,12,1,4,3,31,0,49,0,6,43,0,3,7,10,N/A,N/A,32,91,5,19,37,24,15,3.25\r\n,,Black Oak Mine Unified,El Dorado,796,B,1,2,1,1,7,0,88,0,39,7,0,0,0,14,21,28,20,96,2,22,41,25,11,3.2\r\n,Martin Murphy Middle,Morgan Hill Unified,Santa Clara,796,5,4,1,9,4,49,1,29,0,36,27,3,15,15,12,N/A,N/A,28,91,8,23,30,23,15,3.14\r\n,Birney Elementary,Long Beach Unified,Los Angeles,796,4,19,0,10,14,46,2,7,0,75,0,0,25,9,16,27,30,N/A,90,10,20,32,27,11,3.09\r\n,El Diamante High,Visalia Unified,Tulare,796,7,4,3,4,0,49,0,39,1,47,19,2,4,12,6,N/A,N/A,28,94,8,23,34,25,10,3.06\r\n,Corvallis Elementary,San Lorenzo Unified,Alameda,796,4,16,1,18,8,42,1,10,2,52,1,0,33,16,11,25,25,N/A,87,12,23,30,27,8,2.98\r\n,Vista Heights Middle,Moreno Valley Unified,Riverside,796,5,20,1,3,3,55,1,15,2,69,16,1,10,19,9,N/A,32,29,90,12,27,37,18,6,2.79\r\n,Theuerkauf Elementary,Mountain View Whisman,Santa Clara,796,4,1,0,4,11,66,2,11,5,73,15,0,51,12,13,24,26,N/A,95,18,28,25,17,13,2.79\r\n,South Fork Elementary,South Fork Union,Kern,796,4,1,5,0,0,23,0,71,0,84,0,0,5,0,10,11,27,N/A,70,3,32,50,13,2,2.78\r\n,Plymouth Elementary,Monrovia Unified,Los Angeles,796,4,3,0,7,5,67,0,15,3,62,7,0,15,10,14,27,30,N/A,99,16,31,23,23,7,2.75\r\n,John Muir Elementary,Merced City Elementary,Merced,796,4,11,0,6,0,56,0,24,2,87,0,1,16,6,12,20,24,N/A,98,21,26,30,12,11,2.67\r\n,Indianola Elementary,Selma Unified,Fresno,796,4,0,1,8,0,82,0,9,1,85,2,2,29,16,9,18,22,N/A,94,16,31,31,17,5,2.63\r\n,West Boron Elementary,Muroc Joint Unified,Kern,796,4,7,0,0,0,29,0,58,4,60,0,0,6,3,16,19,23,N/A,89,7,36,49,6,3,2.62\r\n,Nancy Cory Elementary,Lancaster Elementary,Los Angeles,796,4,23,0,4,2,38,0,32,1,73,8,1,16,4,14,26,29,N/A,100,19,28,32,17,5,2.6\r\n,Colonel Howard Nichols Elementary,Bakersfield City,Kern,796,4,5,1,2,0,68,0,23,1,78,2,2,10,6,12,20,27,N/A,79,13,37,32,12,5,2.59\r\n,Tolenas Elementary,Fairfield-Suisun Unified,Solano,796,4,28,2,6,8,37,2,12,5,74,1,1,24,8,10,32,32,N/A,98,12,41,29,16,2,2.56\r\n,San Miguel Elementary,Lemon Grove,San Diego,796,4,28,1,5,2,50,1,12,1,100,15,0,32,12,9,31,30,N/A,100,20,31,30,12,6,2.54\r\n,Meadow Lane Elementary,Cascade Union Elementary,Shasta,796,4,1,9,3,1,16,0,71,0,82,9,0,7,1,9,26,27,N/A,92,12,39,36,11,2,2.51\r\n,Parkway Heights Middle,South San Francisco Unified,San Mateo,796,5,2,0,4,9,77,3,3,0,71,5,2,45,22,17,N/A,22,24,100,23,35,25,14,5,2.43\r\n,Castle Park Middle,Sweetwater Union High,San Diego,796,5,3,2,1,2,86,1,4,0,84,12,0,36,27,14,N/A,N/A,27,93,25,33,24,13,6,2.43\r\n,Kit Carson Elementary,Kit Carson Union Elementary,Kings,796,4,2,0,1,0,55,0,42,0,51,0,5,22,6,10,20,23,22,95,22,36,23,15,4,2.42\r\n,Monument Middle,Rio Dell Elementary,Humboldt,796,5,0,9,2,1,17,0,70,0,66,20,0,9,2,16,N/A,35,N/A,100,14,44,30,13,0,2.41\r\n,Hawthorne Elementary,Riverside Unified,Riverside,796,4,6,1,1,0,74,0,17,0,76,8,0,27,14,15,24,31,N/A,94,25,29,29,13,3,2.39\r\n,La Presa Middle,La Mesa-Spring Valley,San Diego,796,5,14,0,1,6,66,2,8,2,85,9,0,26,30,13,N/A,N/A,30,90,24,34,25,13,4,2.38\r\n,Healdsburg Junior High,Healdsburg Unified,Sonoma,796,5,1,1,1,0,62,0,34,0,56,2,8,28,24,12,N/A,30,31,100,35,22,19,16,7,2.37\r\n,Charnock Road Elementary,Los Angeles Unified,Los Angeles,796,4,14,0,12,2,65,0,7,0,81,7,0,40,20,12,18,17,N/A,82,26,34,24,10,7,2.37\r\n,R. M. Miano Elementary,Los Banos Unified,Merced,796,4,2,0,1,1,86,1,8,0,82,1,3,47,10,11,29,32,N/A,86,20,40,28,10,2,2.33\r\n,Pinewood Avenue Elementary,Los Angeles Unified,Los Angeles,796,4,4,0,0,2,78,0,15,0,100,8,0,42,19,13,19,19,N/A,89,30,33,24,10,3,2.22\r\n,Monroe Elementary,Riverside Unified,Riverside,796,4,7,1,1,0,77,0,14,0,88,9,0,38,6,10,27,30,N/A,97,35,27,30,7,2,2.15\r\n,Whittier Elementary,Long Beach Unified,Los Angeles,796,4,11,0,18,0,67,0,1,0,100,0,1,44,23,8,29,31,N/A,82,34,32,23,10,2,2.15\r\n,Finley Elementary,Westminster Elementary,Orange,796,4,1,0,23,0,69,3,3,0,89,19,0,75,8,10,22,29,N/A,94,34,34,21,7,3,2.11\r\n,Horace Mann Elementary,Oakland Unified,Alameda,796,4,33,0,5,0,46,9,2,1,52,55,0,37,14,10,20,18,N/A,49,39,30,19,8,5,2.09\r\n,Kimbrough Elementary,San Diego Unified,San Diego,796,4,1,0,0,0,98,0,0,1,100,27,0,77,12,9,20,27,N/A,85,35,40,14,5,5,2.07\r\n,Nuview Elementary,Nuview Union,Riverside,796,4,1,1,0,0,79,0,18,1,88,0,0,49,4,4,22,28,N/A,84,34,39,22,3,2,2\r\n,Lehigh Elementary,Ontario-Montclair Elementary,San Bernardino,796,4,2,0,2,0,92,0,3,1,91,4,0,64,10,4,20,23,N/A,91,34,44,17,3,3,1.96\r\n,Rosemead High,El Monte Union High,Los Angeles,796,7,0,0,47,0,49,0,2,1,80,10,2,17,43,9,N/A,N/A,25,100,38,43,8,10,2,1.95\r\n,Bridge Street Elementary,Yuba City Unified,Sutter,796,4,2,1,4,0,69,0,19,4,100,1,3,48,17,15,19,19,N/A,88,39,40,14,6,1,1.9\r\n,Torch Middle,Bassett Unified,Los Angeles,796,5,0,0,2,1,95,0,1,0,89,14,0,33,27,12,N/A,29,28,88,42,37,12,7,2,1.89\r\n,Washington Elementary,Santa Ana Unified,Orange,796,4,0,0,0,0,98,0,0,0,100,10,1,75,15,9,28,30,N/A,88,58,28,12,1,1,1.59\r\nY,Circle of Independent Learning,Fremont Unified,Alameda,795,7,6,0,28,1,19,0,42,4,5,8,0,7,10,17,21,26,N/A,100,2,12,26,29,32,3.77\r\n,Esperanza,Saddleback Valley Unified,Orange,795,C,13,0,3,0,13,0,68,3,35,0,0,3,0,100,,,,68,0,10,33,29,29,3.76\r\nD,CHIME Charter Middle,Los Angeles Unified,Los Angeles,795,5,17,3,6,2,23,0,50,0,17,8,0,4,7,14,N/A,25,N/A,88,5,10,25,40,20,3.59\r\n,Auburn Elementary,Auburn Union Elementary,Placer,795,4,2,3,2,1,11,1,78,3,54,6,0,5,1,12,20,31,N/A,93,2,19,40,30,10,3.28\r\n,Mitchell Elementary,Garden Grove Unified,Orange,795,4,0,0,38,2,56,2,2,0,68,1,0,61,18,10,25,32,N/A,2,0,50,0,33,17,3.17\r\n,Caroline Wenzel Elementary,Sacramento City Unified,Sacramento,795,4,21,1,14,2,32,4,18,8,62,10,0,13,5,27,21,25,N/A,85,10,20,37,24,9,3.02\r\n,Twentynine Palms Junior High,Morongo Unified,San Bernardino,795,5,10,1,1,3,29,2,46,8,55,5,0,2,4,13,N/A,N/A,24,95,9,25,41,18,7,2.89\r\n,,Orchard Elementary,Santa Clara,795,B,5,0,41,11,36,1,6,0,0,3,0,35,22,8,20,29,26,83,15,26,24,27,8,2.88\r\n,,Big Springs Union Elementary,Siskiyou,795,B,0,3,0,0,23,0,65,9,72,9,5,5,0,13,,,,85,13,28,34,13,13,2.84\r\n,Big Springs Elementary,Big Springs Union Elementary,Siskiyou,795,4,0,3,0,0,23,0,65,9,72,9,5,5,0,12,,,,86,13,28,34,13,13,2.84\r\n,Bear Valley Middle,Escondido Union,San Diego,795,5,2,0,5,1,50,0,40,0,50,21,1,22,16,9,N/A,27,28,86,24,20,19,22,14,2.83\r\n,Yreka High,Yreka Union High,Siskiyou,795,7,0,6,2,0,10,0,75,6,44,0,0,0,0,9,N/A,N/A,21,96,7,40,28,16,9,2.8\r\n,Rancho Buena Vista High,Vista Unified,San Diego,795,7,4,0,3,2,54,1,34,2,45,21,1,14,27,12,N/A,N/A,30,86,24,18,23,24,11,2.8\r\n,Sierra Vista Elementary,Corona-Norco Unified,Riverside,795,4,2,1,1,0,46,0,50,0,48,4,0,10,7,13,22,25,N/A,93,11,30,35,15,9,2.8\r\n,,Lewiston Elementary,Trinity,795,B,0,10,5,0,21,2,62,0,90,0,0,0,0,19,5,6,N/A,76,9,22,56,6,6,2.78\r\n,Lewiston Elementary,Lewiston Elementary,Trinity,795,4,0,10,5,0,21,2,62,0,90,0,0,0,0,19,5,6,N/A,76,9,22,56,6,6,2.78\r\nD,Health Sciences High,San Diego Unified,San Diego,795,7,20,0,4,2,59,1,11,1,67,16,0,15,30,5,,,,78,16,28,29,16,10,2.76\r\n,San Joaquin Elementary,Saddleback Valley Unified,Orange,795,4,1,1,6,4,61,0,25,3,65,2,0,51,5,18,26,26,N/A,77,22,27,20,18,14,2.75\r\nD,Hardy Brown College Prep,San Bernardino City Unified,San Bernardino,795,4,79,1,0,0,10,0,0,2,97,0,0,4,0,10,24,27,N/A,95,10,22,54,11,3,2.75\r\n,Robert Randall Elementary,Milpitas Unified,Santa Clara,795,4,3,0,23,22,43,0,6,3,66,5,0,42,17,16,26,30,N/A,97,19,30,20,24,6,2.69\r\n,Enterprise High,Shasta Union High,Shasta,795,7,3,4,6,1,16,1,65,4,52,19,0,1,2,11,N/A,N/A,29,98,14,30,36,14,6,2.68\r\n,Carmichael (Bessie)/FEC,San Francisco Unified,San Francisco,795,4,6,0,9,49,25,1,4,2,76,11,1,45,15,6,21,24,31,69,13,37,23,25,3,2.68\r\n,,Bellflower Unified,Los Angeles,795,B,14,0,4,5,62,1,12,3,67,17,0,20,14,11,29,29,28,96,17,26,35,15,6,2.66\r\n,MacArthur Elementary,Long Beach Unified,Los Angeles,795,4,18,0,8,2,54,1,15,0,67,0,1,18,12,16,27,28,N/A,94,20,24,33,15,8,2.66\r\n,Summerwind Elementary,Palmdale Elementary,Los Angeles,795,4,20,1,2,5,55,0,13,2,71,10,1,18,9,12,28,29,28,93,17,28,33,16,6,2.66\r\n,Crescent Elk Middle,Del Norte County Unified,Del Norte,795,5,1,14,11,1,17,0,55,1,64,15,0,11,7,13,N/A,26,26,93,14,32,35,12,7,2.65\r\nD,Edison Charter Academy,San Francisco Unified,San Francisco,795,4,15,0,2,2,76,1,3,1,82,0,0,55,12,6,19,31,N/A,87,16,28,36,18,2,2.62\r\n,Houghton-Kearney Elementary,Central Unified,Fresno,795,4,0,0,2,1,59,0,35,1,59,9,0,21,18,4,25,40,N/A,92,33,17,24,15,11,2.54\r\n,Telesis Academy of Science & Math,Rowland Unified,Los Angeles,795,4,2,0,4,9,79,1,4,1,75,10,1,18,25,7,22,24,31,97,17,35,29,14,4,2.53\r\n,Terry Elementary,Selma Unified,Fresno,795,4,0,1,9,0,80,0,10,1,83,0,6,47,22,17,18,20,N/A,91,29,29,20,10,13,2.5\r\n,,Kit Carson Union Elementary,Kings,795,B,2,0,1,0,54,0,43,0,48,0,5,21,6,11,14,20,22,95,21,34,27,14,4,2.44\r\n,Brockton Avenue Elementary,Los Angeles Unified,Los Angeles,795,4,6,0,5,2,76,0,12,0,84,11,0,52,13,20,18,12,N/A,62,33,18,28,17,4,2.4\r\n,Hollydale,Paramount Unified,Los Angeles,795,4,2,0,0,0,96,0,1,0,89,4,0,26,26,10,26,25,27,93,26,33,24,9,8,2.39\r\n,Robinson K-8,Long Beach Unified,Los Angeles,795,4,20,0,3,3,70,3,1,0,90,17,1,30,29,4,30,29,29,79,29,31,20,15,5,2.38\r\n,Anderson Elementary,Westminster Elementary,Orange,795,4,1,0,57,0,37,1,3,0,86,20,0,78,10,7,22,29,N/A,90,24,44,15,13,4,2.29\r\nD,Para Los Ninos Middle,Los Angeles Unified,Los Angeles,795,4,0,0,0,0,100,0,0,0,92,0,0,39,47,3,N/A,18,N/A,81,38,28,17,3,14,2.28\r\n,Easterby Elementary,Fresno Unified,Fresno,795,4,8,1,23,0,60,0,7,0,100,1,4,29,15,12,25,30,N/A,75,23,36,31,9,1,2.28\r\n,Orange Glen Elementary,Escondido Union,San Diego,795,4,5,1,4,3,69,1,16,0,77,11,2,52,7,12,23,26,N/A,79,36,26,25,11,2,2.16\r\n,Olga L. Reed Elementary,Orcutt Union Elementary,Santa Barbara,795,4,1,5,1,0,64,0,29,0,80,13,19,37,22,17,24,23,31,95,40,25,23,7,6,2.14\r\n,Valley View Elementary,Alvord Unified,Riverside,795,4,2,0,1,0,82,2,12,0,81,1,0,59,2,6,28,30,N/A,99,39,28,20,7,6,2.13\r\nD,Downtown College Prep - Alum Rock,Santa Clara County Office of E,Santa Clara,795,5,1,2,1,0,89,1,1,2,84,0,0,53,25,10,N/A,30,30,92,42,25,21,12,1,2.06\r\n,Major Lynn Mokler,Paramount Unified,Los Angeles,795,4,6,0,2,0,85,3,3,0,95,2,0,45,15,8,20,24,N/A,89,37,36,17,8,3,2.04\r\n,Marianna Avenue Elementary,Los Angeles Unified,Los Angeles,795,4,1,0,0,0,99,0,0,0,100,6,1,32,26,7,19,22,N/A,88,43,29,16,9,4,2.03\r\nD,Edison-Bethune Charter Academy,Fresno County Office of Educat,Fresno,795,4,30,0,6,0,61,0,3,0,100,0,5,26,9,7,19,23,N/A,73,38,34,22,4,2,1.98\r\n,Morris K. Hamasaki Elementary,Los Angeles Unified,Los Angeles,795,4,0,0,1,0,98,0,0,0,100,5,2,26,26,26,18,14,N/A,77,47,27,16,7,3,1.91\r\n,Clyde Arbuckle Elementary,Alum Rock Union Elementary,Santa Clara,795,4,1,0,8,2,86,0,2,0,100,3,1,53,24,15,18,28,N/A,92,53,23,13,8,2,1.83\r\nD,Richmond College Preparatory,West Contra Costa Unified,Contra Costa,795,4,54,0,0,0,43,1,0,0,94,0,0,42,0,7,24,23,N/A,85,50,22,24,4,0,1.81\r\n,Luther Burbank Elementary,Santa Rosa City Schools,Sonoma,795,4,1,0,2,0,89,0,6,2,90,7,6,68,12,12,20,21,N/A,99,51,28,13,7,2,1.8\r\nD,Animo Pat Brown,Los Angeles Unified,Los Angeles,795,7,3,0,0,0,96,0,0,0,99,0,0,31,49,7,,,,73,56,27,13,3,1,1.66\r\nD,Achieve Academy,Oakland Unified,Alameda,795,4,3,0,3,2,88,0,2,0,96,0,0,46,29,4,N/A,30,N/A,93,55,31,11,2,2,1.65\r\n,,SBC - High Tech High,San Diego,794,B,4,1,3,5,53,1,30,4,38,0,0,9,10,11,21,26,24,82,2,10,28,31,29,3.75\r\n,Crown Valley Elementary,Capistrano Unified,Orange,794,4,2,0,0,0,18,0,78,1,29,1,0,12,3,23,19,22,N/A,47,3,11,24,36,26,3.71\r\nD,High Tech High,San Diego Unified,San Diego,794,7,11,1,5,5,38,0,35,5,39,0,0,4,17,12,N/A,N/A,24,79,4,14,25,27,30,3.66\r\n,Baywood Elementary,San Luis Coastal Unified,San Luis Obispo,794,4,1,1,2,11,20,0,62,3,53,0,0,15,1,22,21,27,N/A,95,5,18,29,31,17,3.37\r\n,Live Oak Elementary,Fallbrook Union Elementary,San Diego,794,4,4,1,1,1,62,1,32,1,67,14,9,40,6,12,29,29,N/A,94,11,18,19,30,22,3.34\r\n,,Mt. Diablo Unified,Contra Costa,794,B,5,1,7,5,36,1,42,2,42,9,0,19,13,11,26,27,26,72,11,17,23,30,20,3.31\r\n,Panorama Elementary,Brisbane Elementary,San Mateo,794,4,6,0,22,7,34,0,20,11,42,5,0,7,26,20,21,27,N/A,91,3,26,27,31,13,3.26\r\n,Holmes Elementary,Long Beach Unified,Los Angeles,794,4,39,0,8,4,39,4,6,0,69,2,0,14,6,15,26,30,N/A,84,8,24,37,22,10,3.02\r\n,Cabrillo High,Lompoc Unified,Santa Barbara,794,7,3,1,2,1,42,1,44,5,41,9,0,8,14,7,N/A,N/A,26,93,12,24,32,18,14,2.98\r\nD,Barona Indian Charter,Lakeside Union Elementary,San Diego,794,4,4,30,0,1,23,0,40,0,5,3,0,14,0,11,15,13,N/A,85,3,29,40,23,5,2.97\r\n,,Windsor Unified,Sonoma,794,B,1,2,2,1,42,0,50,1,38,5,3,19,14,15,26,27,23,92,19,19,26,24,12,2.9\r\n,Roosevelt International Middle,San Diego Unified,San Diego,794,5,11,0,3,2,63,1,16,4,100,31,0,17,22,17,N/A,22,19,91,16,27,26,16,16,2.89\r\n,Orchard Elementary,Orchard Elementary,Santa Clara,794,4,5,0,41,11,36,1,5,0,0,3,0,35,22,7,20,29,26,83,15,26,24,28,8,2.88\r\n,Grant Elementary,Antioch Unified,Contra Costa,794,4,29,1,6,5,37,1,22,0,62,2,0,18,6,15,23,29,N/A,68,9,27,38,18,8,2.88\r\n,,Bangor Union Elementary,Butte,794,B,1,5,0,0,11,1,81,0,69,16,0,2,1,16,15,13,N/A,98,12,23,36,26,2,2.83\r\n,Bangor Elementary,Bangor Union Elementary,Butte,794,4,1,5,0,0,11,1,81,0,69,16,0,2,1,16,15,13,N/A,98,12,23,36,26,2,2.83\r\n,,Scotia Union Elementary,Humboldt,794,B,1,7,1,0,15,0,75,0,63,3,0,7,1,17,15,20,N/A,73,6,40,31,19,4,2.75\r\n,Stanwood A. Murphy Elementary,Scotia Union Elementary,Humboldt,794,4,1,7,1,0,15,0,75,0,63,3,0,7,1,17,15,20,N/A,73,6,40,31,19,4,2.75\r\n,Olive Elementary,Orange Unified,Orange,794,4,4,0,5,2,59,1,24,2,60,1,0,28,5,8,30,33,N/A,94,17,24,36,17,5,2.69\r\n,Fairmont Elementary,West Contra Costa Unified,Contra Costa,794,4,21,0,24,4,41,1,10,0,72,5,0,43,11,18,22,33,N/A,81,20,33,17,17,12,2.69\r\n,Denair Elementary,Denair Unified,Stanislaus,794,4,0,0,0,0,51,0,44,3,56,0,3,21,22,11,18,22,N/A,92,23,29,25,14,10,2.58\r\n,El Granada Elementary,Cabrillo Unified,San Mateo,794,4,2,0,1,1,61,0,34,2,54,0,14,50,7,12,23,34,N/A,97,40,10,18,18,15,2.57\r\n,Rancho Verde High,Val Verde Unified,Riverside,794,7,20,0,2,3,67,0,6,1,73,12,0,10,29,6,N/A,N/A,32,86,24,27,30,14,5,2.5\r\n,Downey High,Downey Unified,Los Angeles,794,7,3,1,2,1,85,0,7,0,64,7,0,9,26,10,N/A,N/A,23,100,15,44,23,13,5,2.48\r\n,Park View Elementary,Victor Elementary,San Bernardino,794,4,19,1,1,0,63,0,14,2,71,2,0,23,1,6,30,28,N/A,91,16,37,33,11,3,2.48\r\n,Washington Elementary,Montebello Unified,Los Angeles,794,4,0,0,1,0,95,0,3,0,86,10,0,27,23,10,30,28,N/A,65,12,48,24,10,5,2.48\r\n,Yokayo Elementary,Ukiah Unified,Mendocino,794,4,2,4,2,0,38,0,52,2,68,8,7,22,6,9,26,28,N/A,99,23,28,33,14,2,2.45\r\n,Canyon Springs Community Elementary,Sulphur Springs Union,Los Angeles,794,4,4,0,1,0,79,0,14,2,81,4,0,49,18,15,20,22,N/A,52,25,39,17,10,10,2.41\r\n,Maple Elementary,Hesperia Unified,San Bernardino,794,4,11,0,0,0,64,0,23,0,80,4,0,25,3,14,29,26,N/A,93,21,35,32,9,3,2.38\r\n,,Hanford Elementary,Kings,794,B,7,1,1,1,69,0,20,1,78,0,9,21,13,12,20,26,24,95,22,40,29,6,3,2.29\r\n,Morgan Elementary,Rialto Unified,San Bernardino,794,4,17,0,1,0,76,0,4,1,88,10,0,27,8,12,29,26,N/A,92,22,42,25,10,2,2.27\r\n,Taft Elementary,Santa Ana Unified,Orange,794,4,4,0,8,1,80,0,6,2,83,8,0,46,12,24,22,22,N/A,93,33,27,27,8,4,2.24\r\n,David A. Weir Elementary,Fairfield-Suisun Unified,Solano,794,4,24,1,2,5,48,1,15,5,90,2,1,28,8,18,28,28,N/A,96,23,40,29,6,2,2.24\r\n,Burbank Elementary,Long Beach Unified,Los Angeles,794,4,15,1,5,0,74,1,4,0,92,10,1,49,11,6,29,35,N/A,99,29,35,23,9,4,2.23\r\n,William McKinley Elementary,Colton Joint Unified,San Bernardino,794,4,4,0,1,0,94,0,1,0,89,15,0,39,7,9,19,28,N/A,91,25,44,23,6,2,2.15\r\n,Edison Middle,Edison Elementary,Kern,794,5,3,1,0,0,78,0,18,0,90,9,2,22,28,8,N/A,26,23,84,33,34,24,9,2,2.13\r\n,Bishop Elementary,Sunnyvale,Santa Clara,794,4,1,1,6,6,74,1,11,0,77,0,0,56,18,8,21,26,N/A,100,45,22,17,12,4,2.1\r\n,Bellevue Elementary,Atwater Elementary,Merced,794,4,6,0,3,1,82,0,4,0,92,4,8,40,29,10,22,28,26,87,43,30,19,3,5,1.99\r\n,Heliotrope Avenue Elementary,Los Angeles Unified,Los Angeles,794,4,0,1,0,0,99,0,0,0,100,6,0,27,32,11,17,23,N/A,19,40,31,21,5,3,1.99\r\n,,El Monte City Elementary,Los Angeles,794,B,0,0,17,1,78,0,3,0,87,6,3,43,19,9,26,26,23,99,39,37,15,8,1,1.95\r\n,Elsinore Elementary,Lake Elsinore Unified,Riverside,794,4,4,1,1,1,83,1,10,0,93,5,0,51,14,13,22,32,N/A,99,42,33,17,7,1,1.92\r\n,San Marcos Elementary,San Marcos Unified,San Diego,794,4,1,0,0,0,96,1,2,0,96,1,7,67,25,24,23,24,N/A,85,56,28,8,6,3,1.72\r\n,Ontiveros (Juan Pacifico) Elementary,Santa Maria-Bonita,Santa Barbara,794,4,0,0,1,1,97,0,1,0,100,6,12,60,17,8,30,28,N/A,97,61,27,9,3,1,1.55\r\n,Earl Warren Elementary,Garden Grove Unified,Orange,794,4,2,0,13,2,78,1,4,0,74,0,0,57,14,11,25,28,N/A,2,71,29,0,0,0,1.29\r\nD,High Tech High North County,SBC - High Tech High,San Diego,793,7,3,0,4,3,22,0,61,7,22,0,0,4,3,14,N/A,N/A,24,95,2,6,23,36,33,3.93\r\n,Santa Cruz High,Santa Cruz City High,Santa Cruz,793,7,2,1,3,0,24,1,65,4,21,25,2,3,12,8,N/A,N/A,29,97,6,10,22,28,34,3.73\r\n,Arcata High,Northern Humboldt Union High,Humboldt,793,7,2,4,3,0,10,1,61,4,16,0,0,2,1,13,N/A,N/A,21,99,5,15,23,29,28,3.59\r\n,,San Juan Unified,Sacramento,793,B,8,1,5,2,18,1,63,1,47,9,0,9,6,12,19,20,10,76,6,18,26,32,18,3.36\r\n,San Mateo High,San Mateo Union High,San Mateo,793,7,2,0,21,4,41,3,21,8,30,11,0,20,23,10,N/A,N/A,27,95,17,18,14,22,29,3.28\r\nY,Sierra Hills Arts and Sciences Charter A,Placer Hills Union Elementary,Placer,793,4,0,3,0,6,6,0,77,6,35,0,0,0,0,16,4,N/A,N/A,100,0,29,35,23,13,3.19\r\n,Santa Rosa High,Santa Rosa City Schools,Sonoma,793,7,3,1,3,1,34,1,51,5,35,14,2,10,19,15,N/A,N/A,23,94,13,17,27,25,18,3.18\r\n,Parks (Rosa) Elementary,San Francisco Unified,San Francisco,793,4,42,1,16,3,16,0,10,6,66,3,0,24,3,14,17,14,N/A,89,11,20,25,28,16,3.17\r\n,South Hills High,Covina-Valley Unified,Los Angeles,793,7,4,0,9,4,65,1,17,0,44,7,0,4,11,9,N/A,N/A,30,97,6,29,29,26,10,3.06\r\nD,Lou Dantzler Preparatory Charter Element,Los Angeles Unified,Los Angeles,793,4,91,0,0,0,9,0,1,0,96,0,0,0,0,9,28,26,N/A,1,0,0,100,0,0,3\r\n,Lyman Gilmore Middle,Grass Valley Elementary,Nevada,793,5,2,2,1,1,11,0,75,0,62,2,0,4,1,10,N/A,26,24,95,5,24,45,19,6,2.98\r\n,,Rim of the World Unified,San Bernardino,793,B,1,0,1,0,28,0,65,3,51,9,0,9,4,12,22,30,28,92,10,22,40,17,11,2.96\r\n,Riverview Middle,Helendale Elementary,San Bernardino,793,5,7,0,5,3,37,0,48,0,46,0,0,2,5,8,N/A,N/A,27,94,4,26,50,15,5,2.91\r\n,La Habra High,Fullerton Joint Union High,Orange,793,7,1,0,2,1,68,0,26,1,32,48,0,9,19,9,N/A,N/A,33,95,14,23,33,20,10,2.89\r\n,Washington Manor Middle,San Lorenzo Unified,Alameda,793,5,11,0,22,11,39,2,13,1,44,8,0,10,42,10,N/A,25,29,82,11,29,30,25,5,2.85\r\n,Louis J. Villalovoz Elementary,Tracy Joint Unified,San Joaquin,793,4,5,0,3,4,62,1,26,1,55,1,1,40,1,15,27,28,N/A,87,16,23,30,24,7,2.84\r\n,Crestview Elementary,Simi Valley Unified,Ventura,793,4,1,1,3,0,45,0,49,2,52,1,0,24,10,20,25,30,N/A,93,12,34,27,17,10,2.81\r\n,Somerset Middle,Sylvan Union Elementary,Stanislaus,793,5,4,1,2,2,36,1,49,5,55,11,0,6,8,12,N/A,28,28,97,9,33,35,18,5,2.76\r\n,Robinson Elementary,Fresno Unified,Fresno,793,4,17,1,7,0,56,1,17,0,100,2,0,13,6,8,23,29,N/A,69,8,33,41,13,5,2.76\r\n,Michael D'Arcy Elementary,Colton Joint Unified,San Bernardino,793,4,14,0,1,2,76,1,5,1,72,16,0,25,7,14,19,27,N/A,96,12,29,38,15,6,2.75\r\n,Oak Grove Elementary,Burton Elementary,Tulare,793,4,2,1,3,2,67,0,24,0,76,0,9,37,0,8,24,32,N/A,98,18,21,42,12,8,2.71\r\n,Marsh Creek Elementary,Brentwood Union Elementary,Contra Costa,793,4,9,0,7,6,34,1,40,3,49,1,1,34,5,13,25,31,N/A,89,16,28,33,18,4,2.66\r\n,Garden Village Elementary,Jefferson Elementary,San Mateo,793,4,2,0,11,31,37,1,10,8,70,0,0,55,10,8,22,30,N/A,75,11,38,34,16,1,2.59\r\n,Redway Elementary,Southern Humboldt Joint Unifie,Humboldt,793,4,1,1,1,1,16,0,80,0,54,4,0,7,2,13,13,18,N/A,100,9,46,26,15,3,2.57\r\n,Robla Elementary,Robla Elementary,Sacramento,793,4,6,0,18,1,42,1,29,2,79,0,0,43,4,16,22,29,N/A,95,15,37,34,13,2,2.51\r\n,Miwok Valley Elementary,Old Adobe Union,Sonoma,793,4,3,0,2,0,57,0,38,0,62,5,0,48,6,14,24,22,N/A,85,27,23,29,16,5,2.49\r\n,,Tulare City,Tulare,793,B,5,0,2,0,72,0,20,0,75,10,8,23,14,7,21,31,26,90,22,32,30,11,5,2.46\r\n,Burton Elementary,Burton Elementary,Tulare,793,4,0,1,4,4,67,0,21,2,83,0,14,35,0,10,25,32,N/A,98,23,27,37,11,2,2.42\r\n,Sandia Elementary,Apple Valley Unified,San Bernardino,793,4,8,0,1,1,56,1,30,2,86,12,0,19,4,9,24,32,N/A,88,19,34,34,10,3,2.42\r\n,Arroyo High,El Monte Union High,Los Angeles,793,7,0,0,25,1,70,0,3,0,80,8,2,19,31,6,N/A,N/A,25,100,29,33,21,13,4,2.3\r\n,Walter F. Dexter Middle,Whittier City Elementary,Los Angeles,793,5,0,0,1,0,91,0,5,0,66,0,0,11,21,11,N/A,30,31,94,26,34,31,6,3,2.26\r\n,Palermo,Palermo Union Elementary,Butte,793,5,3,10,6,0,32,0,41,7,82,14,4,8,14,11,N/A,24,22,1,50,0,25,25,0,2.25\r\n,Estudillo Elementary,San Jacinto Unified,Riverside,793,4,7,11,1,1,59,0,20,1,71,8,0,25,6,8,31,31,N/A,98,26,38,28,5,3,2.21\r\n,Jefferson,Hawthorne,Los Angeles,793,4,20,0,5,0,70,1,3,1,88,3,0,41,12,8,26,35,N/A,95,23,42,26,7,1,2.21\r\n,Levi H. Dickey Elementary,Chino Valley Unified,San Bernardino,793,4,2,0,0,0,90,1,6,0,73,0,0,33,8,14,30,32,N/A,87,24,46,22,7,2,2.18\r\nD,Rocketship Los Suenos Academy,Santa Clara County Office of E,Santa Clara,793,4,1,0,6,0,87,0,1,0,86,0,0,69,14,8,26,28,N/A,92,41,24,18,14,3,2.14\r\n,Bessie E. Owens Intermediate,Bakersfield City,Kern,793,4,12,1,1,1,76,0,8,2,90,25,9,30,23,17,N/A,27,N/A,65,39,31,15,10,4,2.09\r\n,Theodore Roosevelt,Paramount Unified,Los Angeles,793,4,11,0,1,0,86,1,1,0,96,2,0,50,10,15,29,31,N/A,93,37,33,19,4,5,2.07\r\n,Parthenia Street Elementary,Los Angeles Unified,Los Angeles,793,4,3,0,2,4,89,0,2,0,90,7,0,41,26,8,20,23,N/A,88,33,42,13,9,3,2.06\r\n,T. L. Whitehead Elementary,Woodland Joint Unified,Yolo,793,4,0,1,4,0,75,2,16,2,89,7,4,45,19,7,30,24,N/A,90,39,33,18,5,5,2.05\r\n,,Livingston Union Elementary,Merced,793,B,0,1,11,1,82,0,5,0,88,0,9,48,26,10,20,27,24,97,40,30,18,12,1,2.03\r\n,Lincoln Elementary,Lynwood Unified,Los Angeles,793,4,1,0,0,0,97,0,1,0,89,2,1,53,25,1,29,28,N/A,94,36,36,21,6,0,1.99\r\n,,Monroe Elementary,Fresno,793,B,1,1,7,0,85,0,6,0,82,0,14,30,38,9,17,20,N/A,99,45,24,22,7,1,1.96\r\n,Monroe Elementary,Monroe Elementary,Fresno,793,4,1,1,7,0,85,0,6,0,82,0,14,30,38,9,17,20,N/A,99,45,24,22,7,1,1.96\r\n,Olive Elementary,Vista Unified,San Diego,793,4,2,0,2,1,84,2,7,2,85,0,2,55,16,13,18,20,N/A,88,44,31,14,10,1,1.94\r\n,Fairhaven Elementary,Orange Unified,Orange,793,4,1,0,1,2,93,0,3,1,85,0,0,68,9,13,19,21,N/A,94,45,31,13,8,2,1.91\r\n,Jefferson Elementary,Dinuba Unified,Tulare,793,4,0,0,0,1,97,0,2,0,99,4,8,59,10,3,19,20,N/A,92,47,29,16,5,3,1.88\r\n,,Riverdale Joint Unified,Fresno,793,B,2,0,1,1,80,0,17,0,4,0,25,23,37,10,1,1,1,99,46,33,15,5,1,1.83\r\n,Washington Elementary,San Jose Unified,Santa Clara,793,4,1,0,1,0,97,0,1,0,95,7,4,70,16,8,19,22,N/A,74,56,31,8,3,2,1.65\r\n,,Tipton Elementary,Tulare,793,B,0,0,0,0,92,0,6,0,100,12,14,63,17,2,20,23,24,100,67,22,8,3,0,1.46\r\n,Tipton Elementary,Tipton Elementary,Tulare,793,4,0,0,0,0,92,0,6,0,100,12,14,63,17,2,20,23,24,100,67,22,8,3,0,1.46\r\n,Loma Vista Elementary,Los Angeles Unified,Los Angeles,793,4,0,0,0,0,99,0,0,0,100,6,1,47,24,12,19,22,N/A,63,82,11,4,2,1,1.29\r\nD,Golden Valley Charter School of Sacramen,San Juan Unified,Sacramento,792,4,4,0,2,0,9,0,80,4,35,0,0,1,1,1,24,29,N/A,93,2,3,31,35,30,3.88\r\n,La Paloma Elementary,Fallbrook Union Elementary,San Diego,792,4,1,1,1,1,69,0,26,1,69,16,8,44,10,10,29,31,N/A,80,4,14,24,30,28,3.62\r\nD,CORE Butte Charter,Butte County Office of Educati,Butte,792,4,1,1,3,0,16,0,79,0,37,4,0,1,0,8,7,6,3,99,1,14,32,33,19,3.55\r\nD,Silicon Valley Flex Academy,Santa Clara County Office of E,Santa Clara,792,5,1,1,5,1,26,0,55,11,27,0,0,5,5,11,N/A,1,1,73,1,11,44,21,23,3.53\r\nD,River Oak Charter,Ukiah Unified,Mendocino,792,4,3,5,2,1,22,1,65,1,44,0,1,10,6,12,22,26,N/A,100,3,13,37,27,20,3.48\r\n,John Barrett Middle,San Juan Unified,Sacramento,792,5,7,2,3,2,14,1,70,1,47,8,0,2,8,11,N/A,34,29,91,4,14,37,32,12,3.34\r\n,,Bret Harte Union High,Calaveras,792,B,0,1,1,0,15,0,77,5,37,10,0,1,4,11,N/A,N/A,23,100,6,14,44,25,12,3.22\r\n,Riviera Elementary,Kelseyville Unified,Lake,792,4,3,3,1,1,17,0,72,1,66,0,1,3,1,9,26,23,N/A,92,4,25,32,28,11,3.16\r\n,Decker Elementary,Pomona Unified,Los Angeles,792,4,15,1,7,4,59,0,11,4,52,5,0,9,8,9,26,28,N/A,89,4,23,39,21,13,3.15\r\n,San Luis County Special Education,San Luis Obispo County Office,San Luis Obispo,792,C,0,1,0,3,38,0,51,8,39,0,0,13,0,100,9,8,N/A,75,9,19,34,26,12,3.14\r\n,,Alpine County Unified,Alpine,792,B,0,43,0,0,3,0,48,1,58,0,0,0,0,27,12,9,3,64,7,12,56,16,9,3.09\r\n,Dallas Ranch Middle,Antioch Unified,Contra Costa,792,5,35,1,10,9,25,1,20,0,48,7,0,7,12,10,N/A,33,32,77,6,24,40,23,8,3.01\r\n,Paradise Intermediate,Paradise Unified,Butte,792,5,0,0,1,1,12,0,74,11,60,4,0,1,1,16,N/A,27,24,100,6,22,54,13,4,2.88\r\n,Sugar Hill Elementary,Moreno Valley Unified,Riverside,792,4,23,1,1,3,50,0,20,2,67,6,1,14,4,10,27,30,N/A,95,8,25,42,20,4,2.87\r\n,Arroyo High,San Lorenzo Unified,Alameda,792,7,8,0,19,13,40,1,17,1,34,8,0,6,35,8,N/A,N/A,32,82,10,28,31,26,4,2.85\r\n,Yucaipa High,Yucaipa-Calimesa Joint Unified,San Bernardino,792,7,1,1,2,1,35,0,59,1,43,17,0,6,8,11,N/A,N/A,31,94,9,33,32,18,8,2.83\r\n,John Steinbeck Elementary,Central Unified,Fresno,792,4,16,2,11,2,51,0,18,1,82,4,1,11,17,6,29,31,N/A,92,11,27,38,16,8,2.81\r\n,Howard Elementary,Oakland Unified,Alameda,792,4,74,0,3,0,17,1,3,1,92,31,0,13,1,16,19,27,N/A,45,15,23,35,19,8,2.81\r\n,,Lake Tahoe Unified,El Dorado,792,B,1,1,2,4,40,0,49,1,58,5,0,27,7,13,21,25,24,85,15,38,17,19,12,2.74\r\n,Lakewood Elementary,Sunnyvale,Santa Clara,792,4,7,0,16,11,52,1,11,2,65,0,0,47,16,8,21,32,N/A,99,22,30,19,20,8,2.63\r\n,Freese Elementary,San Diego Unified,San Diego,792,4,23,0,2,9,54,1,3,7,100,24,0,38,14,9,21,31,N/A,96,10,42,27,19,3,2.63\r\n,Casa de Oro Elementary,La Mesa-Spring Valley,San Diego,792,4,11,0,1,2,59,2,17,7,75,7,0,24,10,17,27,30,N/A,91,15,30,36,17,3,2.62\r\n,Gridley High,Gridley Unified,Butte,792,7,1,0,4,1,52,0,41,0,63,0,6,18,18,10,N/A,N/A,27,45,17,29,36,14,4,2.61\r\n,Edward Fitzgerald Elementary,Rialto Unified,San Bernardino,792,4,13,0,2,1,71,2,10,1,64,20,0,22,6,9,28,33,N/A,91,16,28,37,17,1,2.59\r\n,Hollywood Park Elementary,Sacramento City Unified,Sacramento,792,4,12,2,10,1,54,0,16,4,69,16,0,10,8,13,26,27,N/A,70,13,34,38,11,4,2.59\r\n,Ruth O. Harris Middle,Colton Joint Unified,San Bernardino,792,5,8,0,2,4,80,0,5,0,75,20,0,21,21,13,N/A,N/A,28,92,19,32,31,11,7,2.56\r\n,August Knodt Elementary,Manteca Unified,San Joaquin,792,4,21,0,10,9,48,1,10,1,75,2,1,22,15,13,29,31,31,97,11,51,18,16,4,2.5\r\n,Anatola Avenue Elementary,Los Angeles Unified,Los Angeles,792,4,6,0,5,4,74,1,10,0,91,10,0,40,12,24,16,16,N/A,95,22,28,33,14,4,2.5\r\n,Elsinore Middle,Lake Elsinore Unified,Riverside,792,5,6,1,2,2,69,0,20,0,77,25,0,11,35,16,N/A,29,27,99,23,32,27,13,5,2.46\r\nY,Guidance Charter,Palmdale Elementary,Los Angeles,792,4,21,0,4,0,61,0,11,2,87,0,0,20,14,9,,,,84,20,33,29,15,3,2.46\r\n,Carpenter Elementary,Downey Unified,Los Angeles,792,4,5,1,1,1,86,0,6,0,83,1,0,23,22,12,N/A,29,N/A,100,20,43,26,9,3,2.33\r\n,Magnolia Elementary,Cajon Valley Union,San Diego,792,4,13,0,2,2,49,1,28,3,82,2,0,39,6,17,22,27,N/A,96,19,43,26,10,2,2.32\r\n,,Romoland Elementary,Riverside,792,B,5,0,1,1,70,1,22,0,65,3,0,32,13,11,25,30,30,92,28,43,15,13,1,2.16\r\n,Gates Street Elementary,Los Angeles Unified,Los Angeles,792,4,1,0,17,0,81,0,0,0,100,6,1,38,33,13,20,22,N/A,88,36,32,19,7,7,2.16\r\n,Gerald A. Smith Elementary,Colton Joint Unified,San Bernardino,792,4,1,0,1,1,91,0,5,0,88,16,0,51,13,13,20,31,N/A,95,33,36,22,5,5,2.15\r\n,Pacific Avenue Elementary,Jurupa Unified,Riverside,792,4,6,0,0,0,83,0,10,0,86,4,0,38,14,12,19,22,N/A,95,33,37,19,8,3,2.1\r\n,Luther Burbank Middle,Los Angeles Unified,Los Angeles,792,5,2,0,2,4,91,0,1,0,89,15,0,17,37,12,N/A,36,28,73,38,32,20,7,3,2.06\r\n,Cohasset Street Elementary,Los Angeles Unified,Los Angeles,792,4,3,0,1,2,92,0,3,0,89,13,0,47,25,15,19,25,N/A,81,41,30,20,6,2,1.97\r\n,Roche Elementary,Porterville Unified,Tulare,792,4,2,0,1,0,84,1,10,2,88,0,5,23,11,5,23,26,N/A,97,44,28,20,4,3,1.93\r\n,Sharp Avenue Elementary,Los Angeles Unified,Los Angeles,792,4,0,0,0,1,99,0,0,0,89,5,0,37,31,13,20,25,N/A,89,37,42,15,4,2,1.92\r\n,,Santa Paula Elementary,Ventura,792,B,0,0,0,0,94,0,5,0,100,14,9,47,19,14,22,28,26,95,48,27,18,7,1,1.86\r\n,Taft Elementary,Orange Unified,Orange,792,4,2,0,6,2,85,0,6,0,81,5,0,64,10,8,30,33,N/A,94,46,34,11,6,2,1.84\r\n,King (Starr) Elementary,San Francisco Unified,San Francisco,791,4,18,0,25,1,21,7,16,4,46,7,0,27,4,18,19,16,N/A,84,10,21,12,29,28,3.43\r\nD,Great Valley Academy,Stanislaus County Office of Ed,Stanislaus,791,4,3,1,1,1,26,0,67,0,31,0,0,3,1,8,22,26,N/A,91,1,18,40,31,10,3.32\r\n,Montgomery High,Santa Rosa City Schools,Sonoma,791,7,3,1,4,1,31,1,54,5,31,15,1,8,19,13,N/A,N/A,21,95,13,16,25,28,19,3.23\r\n,Tehachapi High,Tehachapi Unified,Kern,791,7,2,0,2,1,26,0,67,1,26,9,0,2,12,11,N/A,N/A,27,74,6,19,40,24,10,3.12\r\n,Clear Lake High,Lakeport Unified,Lake,791,7,1,4,1,1,25,0,60,6,46,8,2,1,12,8,N/A,N/A,26,95,8,19,38,22,13,3.11\r\n,Lemon Crest Elementary,Lakeside Union Elementary,San Diego,791,4,5,2,2,2,24,0,61,4,50,8,0,8,2,17,21,30,N/A,97,3,22,46,26,4,3.06\r\n,Center High,Center Joint Unified,Sacramento,791,7,15,1,8,5,19,2,47,1,46,5,0,5,21,14,N/A,N/A,29,93,6,25,35,25,9,3.05\r\n,Parkfield Elementary,Shandon Joint Unified,San Luis Obispo,791,4,0,0,0,0,29,0,64,0,0,0,7,14,7,29,21,N/A,N/A,64,11,22,22,44,0,3\r\n,Serrano High,Snowline Joint Unified,San Bernardino,791,7,6,0,3,0,35,0,53,0,48,10,0,7,12,12,N/A,N/A,29,90,9,24,35,21,11,2.99\r\n,William Howard Taft Senior High,Los Angeles Unified,Los Angeles,791,7,12,1,7,4,35,0,41,0,60,32,0,9,24,11,N/A,N/A,31,62,15,23,22,27,13,2.99\r\n,,Helendale Elementary,San Bernardino,791,B,11,1,3,2,31,0,52,0,49,0,0,1,5,12,29,23,21,92,4,21,52,19,4,2.98\r\n,Windsor Creek Elementary,Windsor Unified,Sonoma,791,4,2,2,2,1,39,0,51,2,42,0,6,27,0,20,27,N/A,N/A,95,18,18,27,29,9,2.94\r\n,,Calaveras Unified,Calaveras,791,B,1,2,1,1,14,0,79,1,44,7,0,1,4,12,24,27,24,77,5,28,45,18,5,2.9\r\n,Mokelumne Hill Elementary,Calaveras Unified,Calaveras,791,4,1,1,2,0,5,0,87,4,53,7,0,0,0,16,32,28,N/A,83,1,28,52,17,1,2.9\r\nD,Impact Academy of Arts & Technology,Hayward Unified,Alameda,791,7,19,1,3,4,50,3,13,8,55,0,0,13,13,9,N/A,N/A,29,98,14,17,38,26,5,2.9\r\n,Oasis Elementary,Morongo Unified,San Bernardino,791,4,13,1,2,3,23,3,46,9,68,9,0,4,2,13,25,24,N/A,94,8,28,43,15,5,2.8\r\n,,Carpinteria Unified,Santa Barbara,791,B,1,0,2,1,72,0,22,1,62,7,3,33,19,12,22,28,25,74,21,23,28,18,11,2.75\r\n,Tarzana Elementary,Los Angeles Unified,Los Angeles,791,4,15,1,7,3,47,0,27,0,77,8,0,27,15,7,18,16,N/A,80,13,32,31,16,8,2.74\r\n,McKinley Elementary,Tracy Joint Unified,San Joaquin,791,4,7,1,8,2,57,3,19,3,68,0,0,46,0,10,26,25,N/A,86,16,28,32,18,6,2.72\r\n,Carquinez Middle,John Swett Unified,Contra Costa,791,5,18,0,11,11,31,1,21,7,60,9,0,11,16,13,N/A,28,28,97,9,39,30,20,2,2.67\r\n,Dena Boer,Salida Union Elementary,Stanislaus,791,4,3,1,2,1,61,2,27,1,59,1,2,35,4,11,26,33,N/A,96,10,36,38,12,4,2.64\r\n,Carmel Elementary,Hesperia Unified,San Bernardino,791,4,7,1,1,0,57,0,33,0,79,5,0,23,4,10,29,29,N/A,95,16,32,34,12,6,2.58\r\n,Healdsburg High,Healdsburg Unified,Sonoma,791,7,1,1,1,0,52,0,44,1,44,6,7,19,21,6,N/A,N/A,28,100,30,20,22,17,10,2.56\r\n,Turlock Junior High,Turlock Unified,Stanislaus,791,5,3,1,7,1,53,0,34,1,67,7,1,22,14,8,N/A,N/A,29,98,19,35,26,13,7,2.56\r\n,,Julian Union Elementary,San Diego,791,B,2,14,1,0,25,0,56,2,56,22,0,13,3,17,6,7,5,93,16,34,33,17,0,2.51\r\n,Ruth Grimes Elementary,Colton Joint Unified,San Bernardino,791,4,5,0,3,1,82,0,9,0,87,20,0,43,10,6,18,29,N/A,97,21,33,28,10,8,2.5\r\n,Los Altos High,Hacienda la Puente Unified,Los Angeles,791,7,1,0,11,1,77,1,8,0,59,16,1,4,25,9,N/A,N/A,26,65,19,39,18,21,3,2.49\r\n,Carmack,San Bernardino City Unified,San Bernardino,791,C,27,2,2,2,59,0,7,2,98,0,0,46,0,100,12,13,N/A,27,27,40,7,13,13,2.47\r\n,Del Mar Elementary,Live Oak Elementary,Santa Cruz,791,4,1,0,0,0,60,0,31,2,75,0,3,46,5,14,23,26,N/A,82,22,39,21,13,6,2.42\r\n,Dartmouth Middle,Hemet Unified,Riverside,791,5,5,2,2,0,46,1,42,2,72,4,0,6,6,16,N/A,32,32,100,23,35,28,9,6,2.41\r\n,Jefferson Elementary,San Diego Unified,San Diego,791,4,15,0,3,1,69,1,6,4,100,26,0,41,15,14,20,26,N/A,95,22,35,29,9,5,2.41\r\n,,Redwood City Elementary,San Mateo,791,B,2,0,3,1,71,2,21,1,65,6,2,39,23,14,27,27,26,97,37,22,16,13,11,2.38\r\n,Virginia Primrose Elementary,Fontana Unified,San Bernardino,791,4,7,0,2,1,83,0,6,0,100,3,0,42,9,17,24,26,N/A,81,23,35,27,11,3,2.35\r\n,Olivewood Elementary,Saddleback Valley Unified,Orange,791,4,1,0,1,7,78,0,9,3,78,1,0,62,6,21,26,30,N/A,73,31,27,22,17,3,2.33\r\n,,National Elementary,San Diego,791,B,2,0,4,7,82,1,2,1,100,23,0,66,8,12,20,29,N/A,88,28,33,23,13,2,2.28\r\n,,Corning Union Elementary,Tehama,791,B,0,0,1,0,56,0,41,0,83,2,6,31,12,10,23,29,24,77,26,37,26,9,3,2.25\r\n,Jefferson Elementary,Santa Ana Unified,Orange,791,4,1,0,4,2,89,0,4,1,87,8,1,64,11,9,24,27,N/A,92,34,28,25,8,6,2.24\r\n,Bud Carson Middle,Hawthorne,Los Angeles,791,5,36,0,3,2,57,1,2,0,83,5,0,23,24,12,N/A,29,31,93,27,36,25,10,2,2.22\r\n,Bill E. Young Jr. Middle,Calipatria Unified,Imperial,791,5,3,1,0,0,87,0,8,1,100,11,34,39,9,9,N/A,27,22,100,32,28,31,6,3,2.2\r\n,,Calipatria Unified,Imperial,791,B,3,0,0,0,86,0,9,1,100,7,34,37,10,9,20,26,22,100,31,32,27,7,3,2.19\r\n,,Palermo Union Elementary,Butte,791,B,2,12,5,0,32,1,45,3,81,7,3,13,7,11,18,23,22,1,40,27,20,13,0,2.07\r\n,Madison Elementary,Twin Rivers Unified,Sacramento,791,4,20,1,1,2,57,1,17,2,93,10,0,47,7,16,26,28,N/A,80,35,38,19,6,2,2.01\r\n,Cahuilla Desert Academy Junior High,Coachella Valley Unified,Riverside,791,5,0,1,0,0,98,0,1,0,88,16,5,31,34,10,N/A,N/A,22,94,34,40,18,5,2,1.99\r\n,Gardena Elementary,Los Angeles Unified,Los Angeles,791,4,8,0,2,1,87,1,0,0,100,6,0,57,20,10,21,24,N/A,86,48,24,17,10,2,1.95\r\n,Columbia Elementary,Val Verde Unified,Riverside,791,4,3,0,1,0,91,0,3,1,95,11,0,60,9,9,26,27,N/A,85,43,31,17,5,3,1.94\r\n,Ford Boulevard Elementary,Los Angeles Unified,Los Angeles,791,4,0,0,0,0,99,0,0,0,100,3,1,41,29,15,20,23,N/A,86,46,40,8,4,2,1.75\r\n,,Planada Elementary,Merced,791,B,0,0,1,0,97,0,1,0,100,0,18,49,30,16,20,20,24,92,56,22,14,6,2,1.75\r\n,,Delano Joint Union High,Kern,791,B,0,0,0,1,84,0,2,13,100,7,9,31,40,6,N/A,N/A,30,69,53,29,11,5,1,1.72\r\n,Foster Elementary,Compton Unified,Los Angeles,791,4,14,1,0,0,85,0,0,0,89,4,0,51,17,5,26,34,N/A,89,55,28,11,4,2,1.69\r\n,Andrew Jackson Elementary,Santa Ana Unified,Orange,791,4,0,0,4,0,95,0,0,0,100,5,2,84,8,7,27,28,N/A,96,59,26,11,2,1,1.6\r\n,Monte Vista Elementary,Santa Ana Unified,Orange,791,4,0,0,1,0,98,0,0,0,98,5,12,76,9,12,25,27,N/A,99,72,21,5,1,1,1.37\r\n,,Castle Rock Union Elementary,Shasta,791,B,6,0,0,0,12,0,82,0,76,0,0,0,0,2,,,,0,0,0,0,0,0,\r\n,Castle Rock Elementary,Castle Rock Union Elementary,Shasta,791,4,6,0,0,0,12,0,82,0,76,0,0,0,0,2,,,,0,0,0,0,0,0,\r\n,Glen Edwards Middle,Western Placer Unified,Placer,790,5,1,1,3,2,39,0,50,3,53,7,0,13,11,11,N/A,29,28,96,11,14,17,13,46,3.7\r\n,Mt. Shasta Elementary,Mt. Shasta Union Elementary,Siskiyou,790,4,1,3,0,0,20,2,70,5,47,0,0,1,1,7,23,N/A,N/A,98,0,18,37,23,23,3.49\r\n,Washington High,Fremont Unified,Alameda,790,7,6,0,28,8,20,1,31,4,23,15,1,12,19,8,N/A,N/A,29,98,7,16,21,33,23,3.47\r\n,Buena High,Ventura Unified,Ventura,790,7,3,1,3,1,44,0,47,2,39,16,0,6,8,10,N/A,N/A,30,100,8,16,36,25,13,3.19\r\n,El Molino High,West Sonoma County Union High,Sonoma,790,7,0,1,1,1,22,0,70,5,36,6,0,7,8,12,N/A,N/A,25,99,10,21,30,21,18,3.17\r\n,,Morgan Hill Unified,Santa Clara,790,B,2,0,8,3,49,1,36,1,38,19,5,23,9,12,27,28,29,91,13,18,26,26,16,3.13\r\n,Richard Gahr High,ABC Unified,Los Angeles,790,7,16,0,14,13,45,1,9,2,52,8,3,11,18,9,N/A,N/A,29,92,10,20,30,30,9,3.08\r\nD,Opportunities for Learning - Capistrano,Capistrano Unified,Orange,790,7,2,0,0,0,25,0,65,7,39,0,0,4,5,6,N/A,N/A,1,100,10,17,43,18,12,3.04\r\nY,Lynhaven Elementary,Campbell Union,Santa Clara,790,4,8,1,6,4,52,1,24,1,54,10,0,41,8,12,21,23,N/A,94,12,25,29,23,11,2.98\r\n,,Eureka City Schools,Humboldt,790,B,3,6,10,1,17,2,55,6,62,8,0,13,8,14,23,27,23,84,12,23,36,20,10,2.93\r\n,Oakdale High,Oakdale Joint Unified,Stanislaus,790,7,1,1,2,1,28,0,64,0,33,8,4,5,13,12,N/A,N/A,29,93,9,25,40,18,8,2.92\r\n,Hubert H. Bancroft Elementary,Sacramento City Unified,Sacramento,790,4,11,0,5,2,25,1,49,6,50,12,0,7,2,18,24,28,N/A,92,14,26,28,21,11,2.88\r\n,,Santa Rosa City Schools,Sonoma,790,B,3,1,5,1,46,1,39,4,47,13,3,23,17,14,,,,95,25,18,20,21,15,2.85\r\n,Bixby Elementary,Hacienda la Puente Unified,Los Angeles,790,4,3,0,8,1,82,0,6,0,82,9,0,20,3,13,20,36,N/A,22,4,36,40,14,6,2.82\r\n,,Yreka Union High,Siskiyou,790,B,0,7,2,0,10,0,74,6,45,0,0,0,0,11,N/A,N/A,21,96,7,41,27,16,9,2.78\r\n,Lake View Elementary,Ocean View,Orange,790,4,2,0,16,1,44,1,33,3,61,1,0,31,9,23,21,22,N/A,98,18,26,31,20,4,2.68\r\n,Keller Elementary,Long Beach Unified,Los Angeles,790,4,18,1,3,1,56,1,17,1,75,0,0,30,16,4,25,23,N/A,95,25,24,20,23,7,2.64\r\n,,Lemon Grove,San Diego,790,B,18,1,4,3,57,1,12,4,100,15,0,27,10,10,28,30,28,97,17,27,35,15,5,2.63\r\n,Black Butte Elementary,Black Butte Union Elementary,Shasta,790,4,2,10,1,1,5,0,79,0,51,4,0,0,0,6,1,N/A,N/A,98,11,41,27,20,1,2.6\r\n,Cottonwood Elementary,Hesperia Unified,San Bernardino,790,4,7,1,2,0,66,0,23,0,78,5,0,27,5,8,30,31,N/A,90,20,28,29,15,7,2.6\r\n,Creekside Elementary,Alisal Union,Monterey,790,4,1,0,2,6,84,1,5,1,99,0,2,49,8,8,28,32,N/A,96,24,28,23,18,7,2.56\r\n,Century Park Elementary,Los Angeles Unified,Los Angeles,790,4,72,1,0,0,26,1,0,0,100,12,1,10,8,17,14,12,N/A,77,17,28,43,9,3,2.53\r\n,La Merced Intermediate,Montebello Unified,Los Angeles,790,5,1,0,1,1,93,0,5,0,79,16,0,13,35,10,N/A,23,24,84,21,35,25,12,7,2.51\r\n,Rio Vista Elementary,El Rancho Unified,Los Angeles,790,4,0,0,0,1,99,0,1,0,78,0,0,28,15,16,19,29,N/A,97,16,34,37,9,3,2.49\r\n,Parkview Middle,Armona Union Elementary,Kings,790,5,3,1,0,1,83,0,12,0,93,1,13,22,30,11,N/A,29,31,84,21,34,31,9,6,2.45\r\n,,Brawley Elementary,Imperial,790,B,1,0,0,0,93,0,6,0,78,8,13,38,6,10,24,29,27,99,22,32,32,11,4,2.44\r\n,Highland Elementary,Riverside Unified,Riverside,790,4,12,0,3,0,64,2,16,0,81,8,0,28,10,17,26,27,N/A,100,25,30,29,10,7,2.44\r\nD,Aspire California College Preparatory Ac,Alameda County Office of Educa,Alameda,790,7,28,0,1,2,68,0,0,0,72,0,0,27,22,6,23,32,22,87,24,34,26,11,5,2.4\r\n,Bolsa Knolls Middle,Santa Rita Union Elementary,Monterey,790,5,3,1,3,6,64,0,23,0,68,0,1,16,29,5,N/A,29,26,92,22,40,22,12,5,2.38\r\n,Garfield Elementary,Long Beach Unified,Los Angeles,790,4,10,0,3,11,73,2,1,0,87,8,1,56,4,11,27,30,N/A,80,23,40,16,16,4,2.38\r\n,New River Elementary,Norwalk-La Mirada Unified,Los Angeles,790,4,2,0,2,2,88,0,4,1,82,10,6,26,11,14,25,24,N/A,92,20,45,22,10,3,2.32\r\n,Live Oak Elementary,Live Oak Elementary,Santa Cruz,790,4,3,1,0,2,75,0,15,0,84,0,0,59,6,17,23,25,N/A,84,24,43,20,8,6,2.29\r\n,Glenwood Elementary,Conejo Valley Unified,Ventura,790,4,1,0,4,0,79,0,14,2,79,2,0,57,9,11,20,29,N/A,84,32,32,18,16,3,2.26\r\n,Del Valle Elementary,Hacienda la Puente Unified,Los Angeles,790,4,1,0,0,1,96,0,1,0,92,3,5,36,13,13,19,30,N/A,81,24,40,24,12,0,2.25\r\nD,Camino Nuevo Charter Academy No. 4,Los Angeles Unified,Los Angeles,790,4,0,0,0,0,89,0,0,0,39,0,0,39,24,13,22,26,30,97,32,30,24,12,2,2.21\r\n,M. Robert Adkison Elementary,Ceres Unified,Stanislaus,790,4,1,0,4,1,78,1,14,1,88,2,3,58,7,14,21,31,N/A,100,31,36,20,11,2,2.16\r\n,Henry Elementary,Rialto Unified,San Bernardino,790,4,12,0,0,0,82,1,3,1,93,16,0,35,14,6,21,31,N/A,86,41,27,20,9,3,2.05\r\n,Saturn Street Elementary,Los Angeles Unified,Los Angeles,790,4,22,1,0,1,76,0,1,0,100,5,0,35,15,11,18,20,N/A,74,41,30,17,6,6,2.05\r\n,Ninety-Ninth Street Elementary,Los Angeles Unified,Los Angeles,790,4,27,0,0,0,73,0,0,0,100,6,0,33,18,8,20,21,N/A,74,40,29,23,6,1,1.99\r\n,Helen M. Lehman Elementary,Santa Rosa City Schools,Sonoma,790,4,6,2,10,1,73,0,8,1,91,4,3,55,18,9,21,31,N/A,94,44,29,18,5,4,1.95\r\n,Loma Vista Middle,Alvord Unified,Riverside,790,5,2,0,1,1,87,0,9,1,85,7,0,48,14,10,N/A,28,30,93,39,34,21,5,1,1.94\r\n,Moffett Elementary,Lennox,Los Angeles,790,4,1,0,0,0,97,1,0,0,93,2,0,70,10,11,20,22,N/A,82,42,37,12,5,3,1.9\r\n,Victory Boulevard Elementary,Los Angeles Unified,Los Angeles,790,4,3,0,1,0,91,0,5,0,100,9,0,45,24,12,17,22,N/A,91,46,34,14,5,2,1.84\r\n,Alta Loma Elementary,Los Angeles Unified,Los Angeles,790,4,18,1,1,0,80,0,0,0,100,2,0,48,16,10,19,21,N/A,49,48,30,16,6,1,1.83\r\nY,\"Lennox Mathematics, Science and Technolo\",Lennox,Los Angeles,790,7,0,0,0,0,99,0,0,0,70,17,0,20,62,3,N/A,N/A,28,71,48,34,12,5,1,1.79\r\n,Golden Hills Elementary,Palermo Union Elementary,Butte,790,4,2,15,4,0,30,1,46,1,84,7,2,14,2,11,N/A,22,N/A,1,50,50,0,0,0,1.5\r\n,,Santa Cruz City High,Santa Cruz,789,B,2,1,3,1,35,0,54,4,33,18,3,9,16,10,N/A,28,27,93,10,15,24,29,23,3.38\r\n,West Valley High,Anderson Union High,Shasta,789,7,0,4,1,0,13,0,75,5,50,0,0,1,4,7,N/A,N/A,31,92,5,18,40,24,11,3.18\r\n,Santa Barbara Senior High,Santa Barbara Unified,Santa Barbara,789,7,2,1,1,0,54,0,40,2,35,18,0,18,13,9,N/A,N/A,28,97,22,17,17,25,20,3.03\r\n,Laurel Elementary,Los Angeles Unified,Los Angeles,789,4,13,0,5,3,47,0,31,0,72,11,0,16,17,27,15,26,23,81,12,25,28,24,11,2.96\r\n,Sam Brannan Middle,Sacramento City Unified,Sacramento,789,5,23,1,18,1,34,2,15,6,65,17,0,11,19,17,N/A,N/A,23,91,11,27,32,18,12,2.93\r\n,,Lakeport Unified,Lake,789,B,2,9,1,1,24,0,59,3,55,3,3,5,9,12,23,24,24,95,10,24,39,19,8,2.91\r\n,Ridge Crest Elementary,Moreno Valley Unified,Riverside,789,4,18,0,4,2,55,0,17,1,63,6,1,20,4,14,26,32,N/A,92,8,27,40,20,5,2.88\r\n,Hemlock Elementary,Vacaville Unified,Solano,789,4,8,2,5,0,33,1,45,4,68,13,1,19,4,13,21,31,N/A,97,7,27,44,12,8,2.87\r\nD,New Jerusalem,New Jerusalem Elementary,San Joaquin,789,4,7,1,4,1,30,4,54,0,51,0,0,11,12,15,23,29,27,91,11,25,41,15,9,2.85\r\n,Norco High,Corona-Norco Unified,Riverside,789,7,4,0,3,1,43,0,49,0,37,10,0,6,13,13,N/A,N/A,31,98,13,24,36,19,7,2.82\r\n,,Live Oak Elementary,Santa Cruz,789,B,3,1,2,2,51,0,36,2,61,0,1,28,11,18,22,25,21,86,17,30,25,17,11,2.76\r\n,La Contenta Junior High,Morongo Unified,San Bernardino,789,5,5,0,1,0,30,0,59,4,70,9,0,4,4,17,N/A,N/A,23,92,14,25,41,13,6,2.73\r\nY,Monroe Middle,Campbell Union,Santa Clara,789,5,6,1,8,4,57,1,24,1,54,12,0,24,28,13,N/A,28,28,97,17,30,25,19,8,2.72\r\n,Alvin S. Hatch Elementary,Cabrillo Unified,San Mateo,789,4,0,0,1,3,59,0,33,2,45,5,8,46,6,5,24,33,N/A,99,38,11,11,20,19,2.7\r\n,Thurgood Marshall Elementary,Oxnard,Ventura,789,4,5,0,3,3,73,1,14,0,60,1,0,30,6,6,27,34,N/A,99,18,26,31,18,6,2.68\r\n,Bear Valley Elementary,Moreno Valley Unified,Riverside,789,4,14,1,2,2,70,1,9,2,77,2,3,36,5,9,27,32,N/A,94,17,32,36,12,2,2.52\r\n,Turlock High,Turlock Unified,Stanislaus,789,7,2,1,3,0,54,0,38,2,63,10,2,19,15,12,N/A,N/A,28,98,24,31,23,13,9,2.51\r\n,,San Miguel Joint Union,San Luis Obispo,789,B,0,0,0,0,49,1,46,2,62,13,4,27,8,12,20,24,21,94,22,30,30,13,4,2.47\r\n,Barbara Worth Junior High,Brawley Elementary,Imperial,789,5,1,0,0,0,92,0,6,0,74,10,14,26,14,8,N/A,N/A,27,99,23,30,32,11,5,2.45\r\n,Hazel Strauch Elementary,Twin Rivers Unified,Sacramento,789,4,14,0,11,0,64,2,5,1,83,6,0,37,9,8,28,32,N/A,68,20,37,25,14,4,2.45\r\n,Grover Cleveland High,Los Angeles Unified,Los Angeles,789,7,5,1,12,4,63,0,15,0,70,30,0,17,39,10,N/A,N/A,31,73,35,22,17,17,9,2.43\r\n,Rancho Verde Elementary,Apple Valley Unified,San Bernardino,789,4,12,1,0,1,55,0,30,1,84,12,0,18,5,8,25,28,N/A,90,23,35,28,11,4,2.39\r\n,Roosevelt Elementary,Central Unified,Fresno,789,4,8,3,13,1,61,1,14,1,90,6,1,27,13,11,28,30,N/A,95,25,32,27,12,4,2.37\r\n,Moreno Elementary,Ontario-Montclair Elementary,San Bernardino,789,4,5,1,1,1,83,0,7,2,81,8,0,45,9,19,23,32,N/A,99,30,28,24,12,6,2.35\r\n,Leon H. Ollivier Middle,Greenfield Union,Kern,789,5,8,0,2,0,81,0,8,1,79,9,5,15,32,6,N/A,26,19,75,25,38,22,10,5,2.33\r\n,Avalon K-12,Long Beach Unified,Los Angeles,789,4,0,0,0,0,73,0,26,0,70,0,0,37,26,11,23,20,17,73,32,32,15,16,5,2.3\r\n,Dominguez Elementary,Los Angeles Unified,Los Angeles,789,4,5,0,1,4,83,4,2,0,100,8,0,25,11,14,17,17,N/A,85,26,35,26,11,2,2.29\r\n,Selma Avenue Elementary,Los Angeles Unified,Los Angeles,789,4,7,0,0,1,86,0,6,0,100,15,0,39,19,15,16,20,N/A,71,33,27,23,13,3,2.25\r\n,Jackson Elementary,Riverside Unified,Riverside,789,4,8,0,2,1,74,0,13,0,85,11,0,36,12,14,28,27,N/A,92,29,31,28,10,2,2.23\r\n,Franklin Elementary,San Diego Unified,San Diego,789,4,10,0,27,1,53,1,4,4,100,30,0,61,12,12,21,30,N/A,80,22,45,23,9,1,2.21\r\n,La Vina Middle,Delano Union Elementary,Kern,789,5,0,0,1,24,72,0,2,1,74,12,6,23,22,9,N/A,20,25,96,26,40,25,8,0,2.17\r\n,,Alum Rock Union Elementary,Santa Clara,789,B,2,0,12,6,76,1,2,0,99,13,2,41,30,14,19,26,26,92,38,28,18,13,4,2.16\r\n,Shandon Elementary,Shandon Joint Unified,San Luis Obispo,789,4,2,0,0,0,70,0,26,1,80,0,14,35,12,17,23,29,24,80,27,37,32,4,0,2.12\r\n,Collett Elementary,Alvord Unified,Riverside,789,4,6,0,3,1,82,1,5,1,82,4,0,51,1,7,27,28,N/A,95,34,33,23,7,2,2.1\r\n,Rorimer Elementary,Rowland Unified,Los Angeles,789,4,1,0,1,1,95,0,0,1,90,3,1,52,16,8,18,23,N/A,99,27,45,23,5,1,2.09\r\n,Aileen Colburn Elementary,Atwater Elementary,Merced,789,4,1,1,0,0,83,0,15,0,95,9,8,38,27,9,23,28,N/A,96,35,35,23,5,2,2.03\r\n,Mission Bell Elementary,Jurupa Unified,Riverside,789,4,0,0,1,0,93,0,6,0,88,7,0,54,10,16,24,27,N/A,95,37,33,24,4,2,2.02\r\n,Harry Slonaker Academy,Alum Rock Union Elementary,Santa Clara,789,4,4,0,12,2,81,0,2,0,100,8,1,50,21,20,18,22,N/A,95,40,30,21,4,3,2\r\n,Don Pedro Elementary,Ceres Unified,Stanislaus,789,4,2,0,4,1,79,1,13,0,94,1,8,56,6,17,22,28,N/A,98,39,35,18,7,1,1.96\r\n,Roscoe Elementary,Los Angeles Unified,Los Angeles,789,4,1,0,0,1,97,0,1,0,100,6,0,36,34,11,21,23,N/A,77,48,28,15,7,2,1.87\r\n,,Ducor Union Elementary,Tulare,789,B,0,0,0,0,98,0,2,0,99,0,22,63,17,6,20,20,N/A,100,61,21,8,9,1,1.69\r\n,Ducor Union Elementary,Ducor Union Elementary,Tulare,789,4,0,0,0,0,98,0,2,0,99,0,22,63,17,6,20,20,N/A,100,61,21,8,9,1,1.69\r\n,Haddon Avenue Elementary,Los Angeles Unified,Los Angeles,789,4,0,0,0,0,99,0,0,0,95,4,0,40,21,11,20,23,N/A,88,57,28,11,3,1,1.64\r\n,Melrose Elementary,Placentia-Yorba Linda Unified,Orange,789,4,1,0,1,0,97,0,0,0,97,0,4,70,16,10,18,24,N/A,68,71,14,11,2,2,1.49\r\nD,Blue Oak Charter,Chico Unified,Butte,788,4,6,1,1,0,10,0,80,1,62,0,0,0,1,10,20,23,N/A,82,1,9,31,30,28,3.76\r\n,,Gazelle Union Elementary,Siskiyou,788,B,8,10,0,0,0,0,79,3,72,3,0,0,3,13,11,13,N/A,100,3,15,46,21,15,3.31\r\n,Gazelle Elementary,Gazelle Union Elementary,Siskiyou,788,4,8,10,0,0,0,0,79,3,72,3,0,0,3,13,11,13,N/A,100,3,15,46,21,15,3.31\r\n,Excelsior Middle,Byron Union Elementary,Contra Costa,788,5,6,1,2,4,21,1,64,0,31,12,1,5,4,9,N/A,32,32,93,5,21,33,27,14,3.25\r\nD,University Charter Middle School at CSU,Pleasant Valley,Ventura,788,5,3,2,2,2,68,0,23,0,43,0,0,15,11,8,N/A,27,29,91,17,12,23,29,19,3.2\r\n,Bay View Elementary,Santa Cruz City Elementary,Santa Cruz,788,4,3,1,1,1,47,0,43,5,54,19,3,37,5,17,22,28,N/A,84,15,16,26,24,18,3.14\r\nD,San Jacinto Valley Academy,San Jacinto Unified,Riverside,788,4,4,0,1,2,63,0,29,0,58,0,0,13,4,6,25,34,24,74,5,24,34,27,10,3.14\r\n,Abbott Middle,San Mateo-Foster City,San Mateo,788,5,2,0,10,4,44,2,34,2,38,6,0,18,18,13,N/A,27,30,97,14,19,24,28,15,3.12\r\n,,Vacaville Unified,Solano,788,B,8,1,3,3,31,1,50,3,38,11,1,10,7,10,26,27,27,97,8,26,31,24,10,3.03\r\n,Hudson K-8,Long Beach Unified,Los Angeles,788,4,19,0,3,28,44,3,1,1,79,18,1,24,14,12,24,26,28,65,10,22,29,35,5,3.02\r\n,Margaret G. Scotten Elementary,Grass Valley Elementary,Nevada,788,4,1,3,2,1,13,0,76,1,60,1,0,8,1,13,23,25,N/A,97,5,23,46,17,9,3.01\r\n,Ventura High,Ventura Unified,Ventura,788,7,2,0,2,1,49,0,43,3,46,19,1,14,15,10,N/A,N/A,31,98,22,16,25,21,15,2.92\r\n,Olivelands Elementary,Briggs Elementary,Ventura,788,4,0,0,0,0,83,1,16,1,68,0,2,32,13,6,25,29,N/A,93,11,30,31,15,12,2.87\r\n,\"Edward Harris, Jr. Middle\",Elk Grove Unified,Sacramento,788,5,24,0,30,6,24,3,7,4,72,5,0,15,24,11,N/A,N/A,33,93,10,31,29,23,7,2.86\r\n,Pine Ridge,Paradise Unified,Butte,788,4,1,1,2,0,15,0,74,7,77,1,0,2,0,13,27,23,21,100,8,30,45,13,5,2.78\r\n,Edgewood Middle,West Covina Unified,Los Angeles,788,5,4,0,12,6,72,1,5,1,67,24,0,7,15,8,N/A,25,26,86,8,29,44,13,5,2.76\r\n,Henry Eissler Elementary,Bakersfield City,Kern,788,4,4,1,3,1,66,0,23,1,71,3,1,11,5,20,19,23,N/A,77,10,30,39,16,5,2.76\r\n,,Oceanside Unified,San Diego,788,B,7,0,2,3,56,2,26,1,60,10,2,18,20,13,24,28,20,86,19,22,34,18,8,2.74\r\n,Lassen View Elementary,Enterprise Elementary,Shasta,788,4,3,8,11,1,16,0,50,4,75,5,0,12,4,14,26,29,N/A,94,10,32,40,14,5,2.72\r\n,Van Deene Avenue Elementary,Los Angeles Unified,Los Angeles,788,4,6,1,3,8,74,0,8,0,79,11,0,21,16,12,16,18,N/A,86,25,24,26,18,7,2.59\r\n,Grover Beach Elementary,Lucia Mar Unified,San Luis Obispo,788,4,1,1,1,5,57,0,33,3,71,3,0,35,2,12,24,25,N/A,80,22,28,24,20,5,2.58\r\n,Briarwood Elementary,Santa Clara Unified,Santa Clara,788,4,3,1,15,8,56,0,13,3,61,4,1,46,8,24,24,21,N/A,91,18,35,24,17,5,2.57\r\n,Mountain View Middle,Moreno Valley Unified,Riverside,788,5,18,0,3,4,64,1,9,1,74,11,1,17,24,13,N/A,26,22,90,17,32,33,15,3,2.57\r\n,Kathy Binks Elementary,Fontana Unified,San Bernardino,788,4,9,1,2,3,82,0,4,0,87,1,0,36,15,15,24,25,N/A,96,19,33,27,17,5,2.57\r\n,,South Bay Union Elementary,San Diego,788,B,4,1,1,5,81,1,8,0,82,6,0,48,10,11,23,27,26,92,19,32,28,15,6,2.56\r\n,Sequoia Middle,Porterville Unified,Tulare,788,5,1,2,1,0,69,0,24,1,71,15,5,10,15,4,N/A,N/A,24,98,28,23,29,13,7,2.47\r\n,Roosevelt Junior High,Modesto City Elementary,Stanislaus,788,5,1,1,3,1,52,1,34,2,65,19,1,14,11,15,N/A,N/A,27,96,14,46,25,9,6,2.46\r\nD,Darnall Charter,San Diego Unified,San Diego,788,4,15,0,10,1,69,0,2,2,100,0,0,60,8,11,20,26,N/A,94,29,27,23,15,6,2.44\r\n,Artesia High,ABC Unified,Los Angeles,788,7,11,0,6,6,69,1,5,1,75,5,16,20,27,11,N/A,N/A,27,93,28,28,25,14,6,2.43\r\n,McKee Middle,Greenfield Union,Kern,788,5,6,0,2,1,77,0,14,0,75,6,7,18,31,8,N/A,28,25,74,20,39,24,12,5,2.42\r\n,California High,Whittier Union High,Los Angeles,788,7,1,0,1,1,83,0,13,0,65,0,0,10,25,8,N/A,N/A,33,94,24,35,25,12,4,2.36\r\n,Johnson Middle,Westminster Elementary,Orange,788,5,1,0,27,1,59,1,8,1,79,16,0,44,30,17,N/A,26,27,93,28,31,25,12,4,2.33\r\n,Adams Elementary,Newport-Mesa Unified,Orange,788,4,3,0,3,2,75,2,14,0,81,3,0,55,8,11,20,27,N/A,90,35,25,19,16,5,2.31\r\n,Arroyo Elementary,Ontario-Montclair Elementary,San Bernardino,788,4,2,0,1,0,90,1,4,2,85,7,0,47,4,15,25,27,N/A,94,23,43,20,8,6,2.29\r\n,W. R. Powell Elementary,Azusa Unified,Los Angeles,788,4,3,0,1,0,88,0,7,0,85,3,1,26,6,11,23,28,N/A,99,24,35,33,6,2,2.27\r\n,Roosevelt Elementary,Redwood City Elementary,San Mateo,788,4,2,1,2,1,78,3,13,1,71,4,2,43,23,23,26,23,N/A,98,34,31,19,13,4,2.24\r\nD,Grimmway Academy,Kern County Office of Educatio,Kern,788,4,0,0,0,0,95,0,4,0,93,0,11,56,13,12,9,N/A,N/A,98,32,30,27,9,2,2.2\r\n,Gabilan Elementary,Soledad Unified,Monterey,788,4,0,0,0,0,100,0,0,0,95,0,1,52,19,4,20,25,N/A,100,32,31,27,5,5,2.18\r\n,Livingston High,Merced Union High,Merced,788,7,0,0,15,0,78,0,5,0,91,0,4,18,59,9,N/A,N/A,31,91,38,30,17,10,5,2.15\r\n,Machado Elementary,Lake Elsinore Unified,Riverside,788,4,4,1,1,2,83,0,8,0,89,4,0,48,14,16,23,28,N/A,100,28,41,21,7,3,2.14\r\n,Highland Elementary,Standard Elementary,Kern,788,4,2,1,1,0,16,0,77,1,65,0,0,3,1,9,23,32,N/A,3,11,67,22,0,0,2.11\r\n,Jefferson Elementary,Paramount Unified,Los Angeles,788,4,7,0,0,0,90,1,1,1,94,5,0,52,9,19,25,31,N/A,93,34,35,22,7,3,2.1\r\n,Glen View Elementary,Gilroy Unified,Santa Clara,788,4,1,0,0,1,88,0,7,1,85,1,2,50,8,14,24,27,N/A,89,42,29,18,9,2,2.02\r\n,Leona Jackson,Paramount Unified,Los Angeles,788,5,17,0,1,2,76,1,2,1,90,9,0,30,30,9,N/A,27,22,97,43,33,16,5,2,1.89\r\n,,Lennox,Los Angeles,788,B,1,0,0,0,97,0,0,0,88,6,0,53,28,12,21,21,22,77,44,37,12,4,3,1.85\r\n,Betty Plasencia Elementary,Los Angeles Unified,Los Angeles,788,4,4,0,3,1,87,0,4,0,100,7,0,34,25,10,19,24,N/A,98,51,27,15,5,2,1.81\r\n,De Anza Elementary,Baldwin Park Unified,Los Angeles,788,4,0,0,3,0,93,0,3,0,97,6,2,50,17,19,16,25,N/A,67,45,39,11,4,1,1.78\r\n,,Luther Burbank,Santa Clara,788,B,2,0,1,1,91,0,3,0,92,7,0,72,5,10,20,27,N/A,98,56,22,14,7,2,1.77\r\n,Olive Street Elementary,Porterville Unified,Tulare,788,4,0,0,1,1,94,0,2,1,93,0,17,55,12,6,23,32,N/A,86,54,30,11,3,3,1.7\r\nD,Village Charter,Windsor Unified,Sonoma,787,4,0,0,0,0,19,0,69,13,17,0,0,0,0,17,9,4,N/A,98,2,6,24,33,35,3.94\r\n,Venture (Alternative),San Ramon Valley Unified,Contra Costa,787,7,6,0,5,2,17,1,62,3,0,3,0,1,2,4,,,,89,2,9,23,34,31,3.83\r\n,Harmony Elementary,Harmony Union Elementary,Sonoma,787,4,4,0,0,0,13,0,83,0,54,0,0,8,0,8,12,1,N/A,100,4,0,38,38,21,3.71\r\n,Terra Nova High,Jefferson Union High,San Mateo,787,7,3,0,5,6,27,3,42,12,19,0,0,3,6,12,N/A,N/A,28,95,2,11,33,36,18,3.57\r\nY,Trillium Charter,Pacific Union Elementary,Humboldt,787,4,0,0,0,0,25,0,71,4,79,0,0,0,0,29,6,2,N/A,88,0,14,52,29,5,3.24\r\n,Field (Eugene) Elementary,Pasadena Unified,Los Angeles,787,4,19,1,6,2,51,0,12,7,65,9,0,21,5,13,24,30,N/A,93,9,24,26,20,22,3.21\r\n,Lincoln High,Western Placer Unified,Placer,787,7,2,1,3,3,28,1,60,2,33,4,0,6,10,10,N/A,N/A,27,89,7,21,32,26,13,3.18\r\nD,Stockton Collegiate International Second,Stockton Unified,San Joaquin,787,5,13,1,7,4,50,1,21,3,56,18,2,4,11,3,N/A,24,22,92,5,22,36,29,8,3.14\r\n,Grossmont High,Grossmont Union High,San Diego,787,7,6,1,2,2,34,0,54,0,34,35,0,16,11,11,N/A,N/A,30,97,9,24,32,22,13,3.07\r\n,Granite Hills High,Grossmont Union High,San Diego,787,7,3,2,1,1,28,1,64,0,26,41,0,9,12,12,N/A,N/A,27,98,7,26,36,19,12,3.02\r\n,,Natomas Unified,Sacramento,787,B,20,1,15,7,29,2,20,4,52,7,0,16,8,10,28,29,30,85,7,27,32,25,9,3.02\r\n,Christa McAuliffe Middle,Lodi Unified,San Joaquin,787,5,16,0,18,12,31,1,19,1,60,16,0,14,12,11,N/A,N/A,26,80,10,23,35,21,11,3\r\n,Kingsburg High,Kingsburg Joint Union High,Fresno,787,7,0,0,4,0,56,0,36,4,24,0,0,3,24,7,N/A,N/A,26,93,15,21,30,22,13,2.96\r\n,Kearny SCT,San Diego Unified,San Diego,787,7,19,1,17,9,39,1,11,3,72,25,0,7,34,11,N/A,N/A,27,86,17,20,32,22,9,2.86\r\n,Terrace Hills Middle,Colton Joint Unified,San Bernardino,787,5,10,1,4,3,62,0,20,1,60,21,0,10,14,13,N/A,N/A,28,97,12,26,37,17,8,2.81\r\n,Saint Helena Primary,Saint Helena Unified,Napa,787,4,0,2,1,0,49,0,46,1,47,0,7,42,0,11,17,N/A,N/A,27,13,33,29,13,13,2.79\r\n,,Visalia Unified,Tulare,787,B,2,2,5,0,62,0,27,1,65,13,3,15,13,10,27,30,29,94,16,24,33,18,8,2.78\r\n,H. W. Harkness Elementary,Sacramento City Unified,Sacramento,787,4,26,1,11,1,46,4,8,3,100,8,0,24,13,19,24,28,N/A,75,18,31,30,9,12,2.66\r\n,Cherry Avenue Middle,Tulare City,Tulare,787,5,5,1,1,0,64,0,28,0,66,19,5,13,13,6,N/A,33,27,90,16,29,36,12,6,2.63\r\n,Horizon Elementary,Greenfield Union,Kern,787,4,7,0,4,1,82,0,5,1,78,0,6,42,18,9,29,31,N/A,65,17,34,25,17,7,2.63\r\n,Sun View Elementary,Ocean View,Orange,787,4,2,0,11,4,56,3,19,4,69,1,0,39,9,25,23,31,N/A,82,25,24,27,17,7,2.57\r\n,Pearblossom Elementary,Keppel Union Elementary,Los Angeles,787,4,4,0,0,0,61,0,31,3,64,8,1,19,10,12,24,29,N/A,36,21,34,27,7,12,2.56\r\n,Palm Elementary,Beaumont Unified,Riverside,787,4,4,1,2,1,73,0,19,0,81,3,0,39,5,7,22,32,N/A,80,18,31,35,10,6,2.55\r\n,Purche Avenue Elementary,Los Angeles Unified,Los Angeles,787,4,73,1,1,1,24,0,1,0,82,3,0,8,6,13,13,11,N/A,34,14,43,25,14,5,2.52\r\n,Warren High,Downey Unified,Los Angeles,787,7,3,0,3,1,85,0,7,0,62,10,0,9,23,9,N/A,N/A,23,100,13,46,22,13,5,2.5\r\n,Roosevelt (Theodore) Elementary,Anaheim City,Orange,787,4,1,0,5,1,84,0,8,0,78,19,0,36,35,16,26,29,N/A,3,15,31,46,8,0,2.46\r\n,Los Banos Elementary,Los Banos Unified,Merced,787,4,4,1,2,0,74,1,17,1,76,7,2,31,11,13,29,30,N/A,96,20,35,29,13,3,2.44\r\n,,Mountain Valley Unified,Trinity,787,B,1,18,1,0,11,1,63,3,80,11,0,1,1,17,16,20,14,94,17,40,35,5,4,2.4\r\n,Will Rogers Middle,Lawndale Elementary,Los Angeles,787,5,14,0,6,2,70,1,3,3,80,14,0,24,30,13,N/A,31,27,95,26,31,26,14,3,2.36\r\nD,CA Academy for Liberal Studies Early Col,Los Angeles Unified,Los Angeles,787,7,2,0,1,1,95,0,0,0,81,7,0,11,43,7,N/A,N/A,19,88,22,36,33,8,1,2.3\r\n,Oakdale Elementary,Twin Rivers Unified,Sacramento,787,4,25,1,5,2,30,5,29,3,84,18,0,27,12,14,20,23,18,81,21,41,30,7,2,2.29\r\n,Lincoln Elementary,El Centro Elementary,Imperial,787,4,1,0,1,0,96,0,2,0,94,3,6,57,13,5,26,33,N/A,91,26,37,29,4,5,2.25\r\n,Independence Elementary,Los Angeles Unified,Los Angeles,787,4,0,0,0,0,99,0,0,0,90,11,2,34,26,14,19,20,N/A,95,25,37,27,8,2,2.24\r\n,Olive View Elementary,Corning Union Elementary,Tehama,787,4,1,1,1,0,64,0,32,0,88,0,7,45,10,10,23,32,N/A,82,27,41,20,7,5,2.21\r\n,Lexington Avenue Primary Center,Los Angeles Unified,Los Angeles,787,4,6,0,4,17,71,0,1,0,99,0,0,46,7,4,20,N/A,N/A,89,31,31,31,6,2,2.18\r\n,John F. Kennedy Junior High,Hanford Elementary,Kings,787,5,8,0,0,0,73,0,17,0,79,0,10,13,24,12,N/A,N/A,22,96,26,41,28,3,3,2.15\r\n,Normont Elementary,Los Angeles Unified,Los Angeles,787,4,18,1,2,0,78,1,0,0,91,8,0,39,14,10,18,16,N/A,87,33,34,24,8,1,2.1\r\n,Central Elementary,San Diego Unified,San Diego,787,4,5,0,16,0,77,0,1,1,100,19,0,81,8,10,20,30,N/A,80,35,40,16,4,5,2.05\r\n,,Calistoga Joint Unified,Napa,787,B,1,0,1,0,77,0,20,0,73,14,28,49,21,11,21,23,21,85,51,22,11,15,2,1.93\r\n,Hoover Street Elementary,Los Angeles Unified,Los Angeles,787,4,1,0,2,0,96,0,0,0,100,7,0,72,20,14,22,26,N/A,72,45,33,14,6,3,1.9\r\n,Taft Elementary,Redwood City Elementary,San Mateo,787,4,1,0,1,0,95,1,2,0,84,2,1,58,29,12,19,22,N/A,95,51,26,15,7,1,1.81\r\n,Luther Burbank Elementary,Luther Burbank,Santa Clara,787,4,3,0,1,1,91,0,3,0,93,7,0,72,5,9,20,27,N/A,99,56,22,14,7,2,1.77\r\n,McKinley Elementary,Santa Barbara Unified,Santa Barbara,787,4,0,0,0,0,99,0,1,0,100,1,0,80,8,14,19,20,N/A,87,52,29,14,4,2,1.74\r\n,Citrus Middle,Kings Canyon Joint Unified,Fresno,787,5,0,0,0,0,99,0,0,0,100,0,6,32,50,11,N/A,24,20,99,54,26,14,5,1,1.73\r\nD,Pacoima Charter Elementary,Los Angeles Unified,Los Angeles,787,4,1,0,0,0,97,0,1,0,100,3,0,48,29,8,21,28,N/A,89,58,27,12,4,1,1.63\r\n,A. M. Thomas Middle,Lost Hills Union Elementary,Kern,787,5,0,0,1,0,99,0,0,0,82,0,52,61,35,8,N/A,18,21,99,76,20,1,1,1,1.3\r\nD,Greater San Diego Academy,Jamul-Dulzura Union Elementary,San Diego,786,4,4,2,4,1,36,1,51,1,42,1,0,8,4,9,5,6,2,94,4,10,30,26,30,3.68\r\n,Minarets High,Chawanakee Unified,Madera,786,7,1,7,0,0,20,1,65,6,36,0,0,0,2,8,N/A,N/A,14,78,2,14,42,24,19,3.44\r\nD,Capistrano Connections Academy Charter,Capistrano Unified,Orange,786,7,9,0,3,1,28,0,45,13,38,3,0,1,1,5,35,32,8,95,2,13,44,22,19,3.43\r\n,Ann Sobrato High,Morgan Hill Unified,Santa Clara,786,7,3,0,10,2,43,1,40,1,28,23,4,10,15,9,N/A,N/A,31,91,8,17,25,32,18,3.36\r\n,Northside Elementary,Black Oak Mine Unified,El Dorado,786,4,1,1,0,1,6,0,90,0,36,9,0,0,0,15,21,27,23,91,2,19,36,28,15,3.35\r\n,Broadacres Avenue Elementary,Los Angeles Unified,Los Angeles,786,4,92,1,1,1,4,0,1,0,75,2,0,1,0,10,12,7,N/A,78,1,16,44,32,8,3.31\r\n,Pine Hollow Middle,Mt. Diablo Unified,Contra Costa,786,5,5,1,8,5,29,1,46,2,31,9,0,10,12,11,N/A,31,30,79,6,16,35,32,12,3.29\r\n,Redlands East Valley High,Redlands Unified,San Bernardino,786,7,7,1,4,2,43,1,39,2,45,9,0,5,4,11,N/A,N/A,28,96,8,19,36,19,19,3.21\r\n,Taft Middle,San Diego Unified,San Diego,786,5,18,0,10,4,40,1,19,7,70,25,0,15,23,20,N/A,25,22,87,10,23,38,17,11,2.95\r\n,P. W. Engvall Elementary,Lemoore Union Elementary,Kings,786,4,5,1,1,4,59,0,26,4,58,2,5,26,2,7,25,28,N/A,96,10,24,40,15,10,2.91\r\n,,Fairfield-Suisun Unified,Solano,786,B,18,1,5,9,36,1,19,11,54,9,0,14,13,10,27,31,30,98,12,28,30,24,5,2.82\r\n,,Exeter Union Elementary,Tulare,786,B,1,1,0,0,56,0,39,0,66,4,5,18,0,5,,,,96,17,23,35,15,10,2.79\r\n,,Napa Valley Unified,Napa,786,B,2,1,2,6,51,0,32,4,46,12,3,19,23,10,26,28,27,95,21,22,24,23,10,2.77\r\n,,Escalon Unified,San Joaquin,786,B,1,0,2,1,45,0,49,2,46,6,9,20,15,10,21,26,29,94,16,27,33,12,11,2.76\r\n,Sierra Gardens Elementary,Roseville City Elementary,Placer,786,4,4,1,2,1,41,1,50,0,64,1,0,20,9,15,23,29,N/A,96,9,32,41,14,4,2.71\r\n,,Eastern Sierra Unified,Mono,786,B,1,8,0,1,37,0,48,5,51,0,0,15,15,13,13,13,11,86,18,28,28,21,5,2.69\r\n,Box Springs Elementary,Moreno Valley Unified,Riverside,786,4,23,0,2,3,61,0,9,1,77,4,2,29,6,10,26,27,N/A,92,12,30,41,14,3,2.66\r\n,Washington (George) High,San Francisco Unified,San Francisco,786,7,6,1,65,4,12,0,8,1,60,30,0,18,41,12,N/A,N/A,29,70,18,37,16,24,6,2.63\r\n,,Red Bluff Union Elementary,Tehama,786,B,1,3,1,0,28,0,65,2,72,2,2,13,4,10,26,27,28,98,14,32,37,12,4,2.6\r\n,Selma High,Selma Unified,Fresno,786,7,1,0,5,0,83,0,8,0,78,13,3,21,27,7,N/A,N/A,26,86,23,27,29,11,10,2.57\r\n,,Elverta Joint Elementary,Sacramento,786,B,1,0,3,0,23,4,68,0,74,3,0,14,7,11,19,29,23,97,15,34,36,13,2,2.53\r\n,Mesa Grande Elementary,Hesperia Unified,San Bernardino,786,4,5,0,1,0,60,1,32,0,75,7,0,27,5,11,26,29,N/A,93,17,42,23,13,5,2.48\r\n,Rio Vista Elementary,Placentia-Yorba Linda Unified,Orange,786,4,2,0,3,1,83,0,9,0,85,1,0,51,13,13,22,35,N/A,50,19,37,28,12,4,2.45\r\n,Rose Ferrero Elementary,Soledad Unified,Monterey,786,4,1,0,1,1,95,0,3,0,92,0,3,50,10,10,25,35,N/A,99,27,33,20,13,8,2.44\r\n,Antonio Del Buono Elementary,Gilroy Unified,Santa Clara,786,4,1,1,3,1,82,0,10,1,77,2,1,49,5,14,24,29,N/A,90,29,26,27,14,5,2.41\r\n,,Fowler Unified,Fresno,786,B,1,0,9,0,80,0,9,0,76,2,1,23,16,9,23,28,24,99,27,26,28,17,2,2.4\r\n,Sierra Avenue Elementary,Thermalito Union Elementary,Butte,786,4,2,7,25,0,13,1,47,2,91,0,0,22,4,13,21,29,N/A,88,15,42,34,7,2,2.39\r\n,Vista Academy of Visual and Performing A,Vista Unified,San Diego,786,4,2,0,0,1,79,0,15,1,77,6,4,44,22,15,25,26,29,82,38,22,17,15,8,2.34\r\n,Rosa Parks Elementary,Lynwood Unified,Los Angeles,786,4,13,0,0,0,86,0,1,0,77,10,2,40,20,5,28,30,N/A,86,24,37,26,9,3,2.29\r\n,Meadow View Elementary,Bellevue Union Elementary,Sonoma,786,4,2,1,13,2,74,1,8,0,85,3,3,69,8,16,19,28,N/A,79,27,45,15,8,5,2.2\r\n,North Mountain Middle,San Jacinto Unified,Riverside,786,5,9,2,1,1,67,1,18,1,76,9,0,17,20,10,N/A,32,29,95,30,34,27,6,3,2.19\r\n,Ramona Elementary,Los Angeles Unified,Los Angeles,786,4,1,0,1,7,81,0,10,0,93,3,0,52,30,15,20,23,N/A,86,33,36,16,13,2,2.16\r\n,Standard Elementary,Standard Elementary,Kern,786,4,2,1,0,1,26,0,69,2,82,0,0,5,4,10,21,25,N/A,50,30,33,33,3,1,2.14\r\n,Walter Zimmerman Elementary,Colton Joint Unified,San Bernardino,786,4,0,0,0,0,95,0,3,0,92,12,0,59,9,10,20,31,N/A,91,28,42,19,6,3,2.14\r\n,Clairmont Elementary,Lodi Unified,San Joaquin,786,4,9,0,49,1,35,2,2,0,96,10,0,44,14,5,28,32,N/A,78,27,44,22,7,0,2.1\r\n,Lee Richmond Elementary,Hanford Elementary,Kings,786,4,9,0,1,1,72,0,16,1,89,0,11,31,11,13,19,24,N/A,97,31,47,16,1,5,2.03\r\n,Roosevelt Elementary,Hanford Elementary,Kings,786,4,6,0,1,2,80,0,11,0,92,0,16,40,15,13,19,29,N/A,93,31,44,22,1,2,2\r\n,Walter White Elementary,Ceres Unified,Stanislaus,786,4,4,0,2,0,76,1,13,2,89,1,6,47,5,17,20,23,N/A,100,34,43,16,6,1,1.97\r\n,Kimball,National Elementary,San Diego,786,4,0,0,0,1,97,0,1,0,100,27,0,76,8,12,21,25,N/A,82,43,30,16,10,1,1.97\r\n,Katherine R. Smith Elementary,Evergreen Elementary,Santa Clara,786,4,4,0,24,6,62,1,3,0,80,0,2,56,19,12,23,27,N/A,100,41,31,21,5,2,1.95\r\n,Serrano Middle,Ontario-Montclair Elementary,San Bernardino,786,5,3,1,4,0,85,0,5,1,79,12,0,33,27,12,N/A,N/A,28,96,43,32,16,5,3,1.94\r\n,Palm Elementary,Cutler-Orosi Joint Unified,Tulare,786,4,0,0,0,5,93,0,1,0,99,0,2,52,18,6,20,30,N/A,86,46,30,15,6,3,1.9\r\n,McDowell Elementary,Petaluma City Schools,Sonoma,786,4,3,0,1,1,86,0,9,1,96,1,1,81,2,15,19,N/A,N/A,94,44,38,10,3,4,1.85\r\n,Williams Primary Elementary,Williams Unified,Colusa,786,4,0,1,2,0,91,0,6,0,91,0,16,85,0,9,21,N/A,N/A,84,46,39,9,3,3,1.79\r\n,Jefferson Elementary,Corona-Norco Unified,Riverside,786,4,1,0,0,0,97,0,2,0,92,0,0,43,29,11,21,31,N/A,100,55,30,10,2,3,1.68\r\n,Stoner Avenue Elementary,Los Angeles Unified,Los Angeles,786,4,4,0,0,0,94,0,2,0,100,7,0,52,20,16,18,18,N/A,72,58,26,12,4,1,1.64\r\n,Alisal Community,Alisal Union,Monterey,786,4,0,0,0,0,99,0,0,0,99,3,8,87,7,6,27,31,N/A,100,77,14,6,2,1,1.36\r\n,Durham High,Durham Unified,Butte,785,7,0,3,1,0,21,0,72,2,40,8,0,5,8,9,N/A,N/A,24,96,8,11,31,32,19,3.43\r\n,Marin County Special Education,Marin County Office of Educati,Marin,785,C,5,1,8,2,28,0,55,1,27,0,0,16,9,99,6,9,11,46,5,26,12,35,21,3.4\r\n,Soquel High,Santa Cruz City High,Santa Cruz,785,7,1,1,2,1,36,0,54,5,28,6,0,9,12,5,N/A,N/A,29,98,10,15,27,31,17,3.3\r\n,,Chawanakee Unified,Madera,785,B,1,7,0,0,19,0,66,7,42,4,0,0,1,9,22,22,9,86,3,20,38,24,15,3.28\r\nY,George Washington Carver School of Arts,Sacramento City Unified,Sacramento,785,7,8,1,5,0,21,0,58,5,50,12,0,7,6,12,N/A,N/A,27,84,9,14,39,21,16,3.22\r\n,Ripon High,Ripon Unified,San Joaquin,785,7,1,1,2,1,31,1,61,1,35,0,1,10,9,7,N/A,N/A,27,97,8,17,34,27,14,3.2\r\n,Lincoln High,Lincoln Unified,San Joaquin,785,7,12,1,11,7,35,1,33,0,48,11,0,8,12,7,N/A,N/A,29,95,8,21,35,24,12,3.1\r\n,Foresthill High,Placer Union High,Placer,785,7,2,3,0,0,13,0,81,1,35,5,0,0,1,8,N/A,N/A,25,89,3,24,46,20,7,3.04\r\n,,Liberty Union High,Contra Costa,785,B,8,1,3,4,32,1,48,3,20,7,0,7,10,11,N/A,N/A,28,98,7,26,37,22,8,2.97\r\n,School of Engineering & Sciences,Sacramento City Unified,Sacramento,785,7,27,1,14,2,28,3,21,4,58,18,0,7,19,9,N/A,N/A,27,76,15,24,30,18,13,2.92\r\nD,Sacramento Charter High,Sacramento City Unified,Sacramento,785,7,55,0,3,0,27,0,3,9,73,0,0,9,7,9,N/A,N/A,27,90,13,25,35,14,12,2.88\r\n,\"Creative, Performing, and Media Arts\",San Diego Unified,San Diego,785,5,19,0,6,4,48,1,19,4,73,31,0,14,22,18,N/A,28,22,89,14,25,32,20,10,2.88\r\n,John Fremont Elementary,Modesto City Elementary,Stanislaus,785,4,6,0,4,1,41,2,41,4,64,5,0,16,2,18,21,25,N/A,98,10,37,30,10,13,2.79\r\n,Richland Avenue Elementary,Los Angeles Unified,Los Angeles,785,4,12,0,5,2,70,0,12,0,74,11,0,25,18,22,18,18,N/A,84,24,22,25,19,9,2.66\r\n,West Covina High,West Covina Unified,Los Angeles,785,7,5,0,10,5,73,0,6,0,60,19,0,4,19,6,N/A,N/A,28,90,13,31,38,14,4,2.64\r\n,W. D. Hall Elementary,Cajon Valley Union,San Diego,785,4,7,1,3,1,26,1,55,2,65,8,0,32,5,20,24,28,N/A,92,10,37,38,10,5,2.62\r\n,,Linden Unified,San Joaquin,785,B,1,1,2,1,51,0,42,1,59,6,5,25,12,12,20,27,27,78,19,31,26,18,6,2.59\r\n,Anthony W. Ochoa Middle,Hayward Unified,Alameda,785,5,10,0,11,13,53,5,7,0,68,11,1,21,28,11,N/A,N/A,27,80,21,29,27,20,4,2.57\r\n,Locust Elementary,Fontana Unified,San Bernardino,785,4,4,1,1,1,86,0,7,0,100,4,0,35,17,16,25,28,N/A,89,22,29,30,10,9,2.56\r\n,Patricia Beatty Elementary,Riverside Unified,Riverside,785,4,9,0,2,1,78,0,9,0,84,9,0,30,12,12,28,28,N/A,98,22,28,30,13,7,2.54\r\n,Tomales High,Shoreline Unified,Marin,785,7,2,1,0,0,43,1,53,1,47,0,1,25,17,17,N/A,N/A,16,74,27,28,17,20,8,2.52\r\nY,City Honors College Preparatory Charter,Inglewood Unified,Los Angeles,785,7,54,0,2,1,42,1,0,0,78,15,0,0,0,2,N/A,N/A,26,93,16,34,33,15,2,2.52\r\nD,Magnolia Science Academy 3,Los Angeles Unified,Los Angeles,785,5,46,0,1,2,49,0,1,0,63,0,0,9,14,7,N/A,26,24,86,26,19,36,15,3,2.51\r\n,Jackson Heights Elementary,Red Bluff Union Elementary,Tehama,785,4,1,1,1,0,31,0,62,3,77,1,4,18,2,13,24,27,N/A,98,15,39,32,10,4,2.49\r\n,Willow Elementary,ABC Unified,Los Angeles,785,4,10,1,6,8,66,3,4,1,90,3,12,40,12,10,26,30,N/A,93,23,32,26,17,3,2.45\r\n,Golden Valley High,Merced Union High,Merced,785,7,4,0,15,1,54,0,18,3,82,1,2,13,33,10,N/A,N/A,31,91,31,23,25,13,8,2.44\r\n,Southridge Middle,Fontana Unified,San Bernardino,785,5,8,0,2,1,84,0,6,0,79,8,0,22,30,14,N/A,31,29,93,22,34,29,11,4,2.41\r\n,Jonas E. Salk Elementary,Magnolia Elementary,Orange,785,4,1,0,12,2,71,1,10,1,85,6,0,46,29,12,23,27,N/A,75,30,28,20,17,5,2.41\r\n,Maze Middle,Hollister,San Benito,785,5,1,0,1,2,77,0,18,0,67,10,16,21,20,12,N/A,N/A,27,98,23,32,29,12,3,2.4\r\n,Woodrow Wilson Elementary,Jefferson Elementary,San Mateo,785,4,5,0,13,31,44,1,2,4,73,5,0,54,8,3,23,27,N/A,69,21,37,27,14,1,2.37\r\n,Sanger High,Sanger Unified,Fresno,785,7,1,0,10,0,75,0,12,0,75,5,2,11,32,7,N/A,N/A,27,97,31,24,26,18,2,2.37\r\n,Keyes Elementary,Keyes Union,Stanislaus,785,4,0,0,2,0,76,1,21,0,99,0,11,54,5,13,24,25,N/A,86,27,29,30,10,5,2.37\r\n,San Pascual Avenue Elementary,Los Angeles Unified,Los Angeles,785,4,2,2,5,5,82,0,4,0,82,11,1,24,15,11,18,19,N/A,75,25,37,23,10,4,2.31\r\n,Galileo High,San Francisco Unified,San Francisco,785,7,5,0,71,3,12,1,3,1,68,32,0,23,46,8,N/A,N/A,29,85,27,40,11,17,4,2.29\r\n,Planz Elementary,Greenfield Union,Kern,785,4,12,0,4,1,74,0,9,0,73,4,4,44,7,6,28,29,N/A,54,24,37,27,9,3,2.29\r\n,McSweeny Elementary,Hemet Unified,Riverside,785,4,5,1,1,0,58,1,27,6,85,0,0,19,4,16,25,29,N/A,100,29,33,24,8,6,2.28\r\n,Peralta Elementary,Jurupa Unified,Riverside,785,4,3,0,2,1,74,1,19,0,75,8,0,34,10,8,24,31,N/A,98,32,32,18,14,4,2.24\r\n,Richard Henry Dana Elementary,Capistrano Unified,Orange,785,4,0,0,1,0,77,0,20,2,81,1,0,47,24,7,28,32,N/A,86,28,36,24,6,5,2.23\r\n,Cabazon Elementary,Banning Unified,Riverside,785,4,6,5,1,0,67,0,20,2,94,0,0,21,8,9,19,32,N/A,92,20,45,28,7,0,2.22\r\n,Ernesto Galarza Elementary,San Jose Unified,Santa Clara,785,4,6,1,2,3,81,0,6,0,90,6,1,54,7,11,28,28,N/A,87,38,27,22,10,3,2.13\r\n,Washington Elementary,Lynwood Unified,Los Angeles,785,4,6,0,0,0,93,0,1,0,78,8,3,42,26,8,28,29,N/A,91,34,35,19,10,2,2.11\r\nD,Animo Venice Charter High,Los Angeles Unified,Los Angeles,785,7,6,0,0,0,87,0,5,0,85,0,0,15,31,10,N/A,N/A,28,87,41,24,23,10,2,2.08\r\n,Maple Elementary,Tulare City,Tulare,785,4,6,0,1,0,86,0,7,0,92,4,21,43,12,9,22,29,N/A,87,32,41,18,6,3,2.07\r\n,Bassett Street Elementary,Los Angeles Unified,Los Angeles,785,4,5,0,2,1,85,1,5,0,88,7,0,43,28,10,21,23,N/A,79,39,34,17,7,2,2\r\n,Hazeltine Avenue Elementary,Los Angeles Unified,Los Angeles,785,4,5,0,2,2,87,0,4,0,100,6,0,50,15,16,21,24,N/A,84,32,46,15,6,1,2\r\n,Portola Middle,Orange Unified,Orange,785,5,2,0,8,1,83,1,5,0,86,1,0,35,22,10,N/A,22,21,96,39,32,20,6,2,1.99\r\n,Earl E. Edmondson Elementary,Norwalk-La Mirada Unified,Los Angeles,785,4,0,0,1,0,99,0,0,0,93,8,11,40,24,13,27,23,N/A,99,43,38,12,4,3,1.87\r\n,Alvin M. Dunn Elementary,San Marcos Unified,San Diego,785,4,1,0,2,1,90,0,5,1,88,0,7,56,23,25,24,24,N/A,98,53,26,12,4,5,1.82\r\nD,Alliance Marc & Eva Stern Math and Scien,Los Angeles Unified,Los Angeles,785,7,1,0,1,0,85,0,12,0,89,0,0,12,53,6,N/A,N/A,22,100,62,19,9,7,3,1.7\r\n,Bahia Vista Elementary,San Rafael City Elementary,Marin,785,4,1,1,6,0,92,0,1,0,97,0,0,76,19,12,23,27,N/A,94,57,29,11,2,1,1.6\r\nD,California Montessori Project - Elk Grov,Elk Grove Unified,Sacramento,784,4,6,0,7,6,22,0,51,7,16,0,0,0,2,8,17,23,32,100,0,2,22,51,25,3.98\r\n,Casa Roble Fundamental High,San Juan Unified,Sacramento,784,7,3,2,2,1,10,0,80,1,31,10,0,1,5,10,N/A,N/A,33,76,2,21,31,36,10,3.3\r\n,Wheatland Union High,Wheatland Union High,Yuba,784,7,2,2,3,2,28,1,54,8,32,0,0,4,9,8,N/A,N/A,27,100,5,15,49,15,16,3.21\r\n,,Tehama County Office of Educat,Tehama,784,B,0,5,2,0,15,0,77,0,64,0,0,5,0,11,2,N/A,1,95,5,12,50,26,7,3.17\r\n,Toddy Thomas Elementary,Rohnerville Elementary,Humboldt,784,5,1,3,1,0,12,0,77,5,40,14,0,5,5,24,N/A,25,18,94,8,25,33,23,12,3.07\r\n,Monterey High,Monterey Peninsula Unified,Monterey,784,7,4,0,7,3,40,2,38,6,41,7,0,10,21,6,N/A,N/A,29,100,15,25,20,19,20,3.04\r\n,Calaveras High,Calaveras Unified,Calaveras,784,7,2,2,1,1,11,0,82,1,35,10,0,0,4,12,N/A,N/A,26,76,3,26,44,22,5,3.02\r\n,Willis Jepson Middle,Vacaville Unified,Solano,784,5,7,2,3,2,31,1,54,1,36,16,1,9,8,9,N/A,N/A,29,99,9,28,27,25,11,3.02\r\n,,San Rafael City High,Marin,784,B,3,1,7,1,47,1,38,1,45,11,0,16,31,12,N/A,N/A,23,88,26,15,15,25,19,2.96\r\n,Pinkham Elementary,Visalia Unified,Tulare,784,4,3,3,4,1,51,0,37,1,70,12,1,12,3,15,26,27,N/A,94,7,25,42,17,9,2.94\r\n,Mossdale Elementary,Manteca Unified,San Joaquin,784,4,13,0,19,19,30,3,13,3,58,2,0,20,17,9,27,30,31,78,6,32,30,28,4,2.92\r\n,,Newark Unified,Alameda,784,B,7,0,12,9,50,2,18,3,49,6,1,22,24,14,27,30,28,93,15,24,26,27,9,2.9\r\n,Burcham K-8,Long Beach Unified,Los Angeles,784,4,18,0,5,2,40,1,29,0,50,4,0,12,9,16,26,32,31,80,5,41,23,21,9,2.88\r\n,Cottage Elementary,San Juan Unified,Sacramento,784,4,24,2,3,4,26,0,38,2,84,3,0,18,1,8,19,27,N/A,84,9,20,45,23,2,2.88\r\n,Rio Del Mar,Rio Elementary,Ventura,784,4,2,1,2,7,73,1,12,3,72,0,3,33,9,8,29,26,N/A,78,18,18,34,20,10,2.87\r\n,La Tercera Elementary,Old Adobe Union,Sonoma,784,4,3,1,4,2,46,1,43,0,55,1,0,36,4,13,23,25,N/A,81,14,23,32,24,7,2.86\r\n,,Long Beach Unified,Los Angeles,784,B,16,0,8,4,53,2,15,0,67,6,1,22,21,10,28,31,30,82,20,26,22,23,11,2.79\r\n,Hollingworth Elementary,Rowland Unified,Los Angeles,784,4,5,0,7,15,66,1,5,1,71,4,0,17,12,10,21,31,N/A,94,13,29,36,17,5,2.74\r\n,Yuba County Special Education,Yuba County Office of Educatio,Yuba,784,C,6,0,3,0,27,0,56,7,64,0,0,6,15,100,8,7,N/A,82,12,30,40,8,10,2.73\r\n,Mt. Vernon Elementary,Lemon Grove,San Diego,784,4,12,0,3,3,63,2,10,7,100,17,0,31,10,11,28,28,N/A,98,20,22,34,18,6,2.67\r\n,Montgomery Middle,Sweetwater Union High,San Diego,784,5,3,1,1,6,84,1,4,0,74,10,0,29,26,14,N/A,N/A,29,91,18,30,28,19,5,2.63\r\n,Hillsdale Elementary,Twin Rivers Unified,Sacramento,784,4,11,1,6,1,36,1,42,1,81,10,0,35,11,17,24,28,N/A,93,14,38,29,14,5,2.57\r\n,,Duarte Unified,Los Angeles,784,B,7,0,3,5,74,0,9,2,66,8,2,23,17,12,23,27,27,96,21,32,26,16,5,2.53\r\n,,Merced Union High,Merced,784,B,4,1,12,1,60,0,19,2,80,2,2,11,35,10,N/A,N/A,30,90,28,25,25,14,7,2.47\r\n,Fruitvale Elementary,Hemet Unified,Riverside,784,4,10,0,2,2,59,0,24,3,85,1,0,20,5,11,26,29,N/A,100,22,31,34,7,5,2.41\r\n,,Healdsburg Unified,Sonoma,784,B,1,1,1,0,62,0,35,0,56,3,8,34,17,10,21,30,28,100,36,21,20,15,8,2.39\r\nD,James Jordan Middle,Los Angeles Unified,Los Angeles,784,5,1,0,0,2,90,0,4,1,83,1,0,23,38,15,N/A,30,27,92,32,32,16,16,4,2.29\r\n,Kennedy Middle,El Centro Elementary,Imperial,784,5,1,0,0,0,95,0,3,0,90,6,12,48,27,11,N/A,N/A,24,85,26,43,20,7,4,2.19\r\n,Tulelake Basin Elementary,Tulelake Basin Joint Unified,Modoc,784,4,1,0,0,0,64,0,31,3,78,0,0,57,2,12,20,18,N/A,98,41,21,25,10,4,2.16\r\n,Lincoln Elementary,Tulare City,Tulare,784,4,7,1,1,0,86,0,4,0,93,3,11,36,17,3,19,32,N/A,89,36,29,26,6,2,2.09\r\n,Rancho de la Nacion,National Elementary,San Diego,784,4,1,0,7,5,83,2,2,0,100,21,0,65,9,11,19,32,N/A,88,33,34,24,8,1,2.09\r\n,San Fernando Elementary,Los Angeles Unified,Los Angeles,784,4,0,0,0,0,99,0,0,0,100,3,4,51,17,9,20,20,N/A,79,44,31,16,7,1,1.89\r\n,Costano Elementary,Ravenswood City Elementary,San Mateo,784,4,16,0,0,0,64,18,0,1,88,0,6,60,6,13,23,30,23,100,49,28,16,6,1,1.83\r\n,Lincoln Elementary,Sanger Unified,Fresno,784,4,0,0,2,0,94,0,3,0,100,1,6,49,14,17,18,25,N/A,97,55,30,9,6,0,1.66\r\n,Lincoln Elementary,Fresno Unified,Fresno,784,4,12,0,3,0,84,0,1,0,100,2,3,39,21,11,18,23,N/A,52,55,29,14,3,0,1.64\r\n,Fremont Elementary,Santa Ana Unified,Orange,784,4,1,0,1,0,97,0,1,0,96,4,4,77,13,11,25,33,N/A,99,57,27,11,3,1,1.62\r\nY,Nevada City School of the Arts,Nevada County Office of Educat,Nevada,783,4,3,3,0,0,11,0,84,0,48,0,0,1,0,14,17,26,N/A,98,1,10,27,34,29,3.81\r\n,Nova Education Center,Novato Unified,Marin,783,7,0,0,8,0,17,2,67,4,10,2,0,2,12,4,N/A,24,15,96,4,8,32,28,28,3.68\r\n,Nordhoff High,Ojai Unified,Ventura,783,7,1,1,4,1,35,0,57,1,39,11,0,8,18,13,N/A,N/A,25,94,15,14,28,26,16,3.15\r\n,Leapwood Avenue Elementary,Los Angeles Unified,Los Angeles,783,4,89,0,0,0,9,0,1,0,63,0,0,4,1,14,11,6,N/A,75,13,19,33,25,9,2.99\r\n,Pinon Hills Elementary,Snowline Joint Unified,San Bernardino,783,4,1,0,1,0,37,0,50,0,68,3,0,14,0,12,29,28,N/A,87,6,29,35,19,10,2.99\r\n,,Susanville Elementary,Lassen,783,B,4,11,2,2,17,3,60,0,50,2,0,4,3,8,26,32,23,88,4,27,50,14,6,2.92\r\n,Adrian Wilcox High,Santa Clara Unified,Santa Clara,783,7,4,1,25,7,34,2,24,2,45,16,1,16,27,19,N/A,N/A,29,89,13,30,24,24,9,2.86\r\n,Fred C. Beyer High,Modesto City High,Stanislaus,783,7,4,1,4,1,36,1,43,8,41,19,0,6,11,11,N/A,N/A,27,98,9,31,35,16,9,2.85\r\n,,Modoc Joint Unified,Modoc,783,B,1,6,1,0,18,0,71,2,49,2,3,1,4,1,21,22,20,97,10,28,37,18,7,2.85\r\n,Monroe K-8,Long Beach Unified,Los Angeles,783,4,16,0,6,2,48,2,26,0,58,1,0,19,11,15,26,25,28,96,15,26,31,18,9,2.8\r\n,Canalino Elementary,Carpinteria Unified,Santa Barbara,783,4,1,0,1,1,76,0,19,2,63,5,3,52,5,19,22,25,N/A,71,18,30,26,16,10,2.7\r\n,Alta Mesa Elementary,Enterprise Elementary,Shasta,783,4,2,3,10,0,20,0,51,5,84,6,1,14,5,16,20,30,N/A,92,10,31,42,11,5,2.7\r\n,Morgan/Kincaid Preparatory School of Int,Adelanto Elementary,San Bernardino,783,4,22,0,3,2,56,0,11,3,81,15,0,12,9,13,31,31,N/A,97,11,33,37,14,5,2.68\r\n,Sunnybrae Elementary,San Mateo-Foster City,San Mateo,783,4,3,0,7,6,61,2,16,4,62,0,0,50,4,8,23,31,N/A,92,21,26,25,20,8,2.67\r\n,Whitman Elementary,San Diego Unified,San Diego,783,4,5,0,6,3,62,0,18,5,77,26,0,30,20,28,15,22,N/A,92,13,40,22,17,8,2.66\r\n,Julian Elementary,Julian Union Elementary,San Diego,783,4,3,13,2,1,24,0,56,2,55,18,0,13,2,15,17,24,N/A,92,14,31,34,20,0,2.6\r\n,Jamestown Elementary,Jamestown Elementary,Tuolumne,783,4,1,3,0,0,19,0,73,0,66,3,0,5,3,17,18,24,N/A,96,11,34,43,6,5,2.59\r\n,Silver Creek High,East Side Union High,Santa Clara,783,7,3,0,42,13,35,1,4,1,46,3,2,12,39,7,N/A,N/A,31,93,23,30,24,19,5,2.54\r\n,Dobbins Elementary,Marysville Joint Unified,Yuba,783,4,5,10,0,0,15,0,55,15,65,0,0,0,0,13,16,17,N/A,95,5,47,37,11,0,2.53\r\n,Ronald Reagan Elementary,Chowchilla Elementary,Madera,783,4,2,1,1,0,58,0,37,1,79,7,5,26,12,7,20,27,N/A,94,23,28,27,16,6,2.53\r\n,Live Oak High,Live Oak Unified,Sutter,783,7,0,1,16,0,58,0,24,0,73,5,7,7,37,7,N/A,N/A,25,80,21,30,30,14,4,2.5\r\n,,Black Butte Union Elementary,Shasta,783,B,2,11,1,1,7,0,78,0,49,9,0,0,0,5,1,1,N/A,98,8,53,22,16,1,2.47\r\n,Osburn Burke Middle,El Rancho Unified,Los Angeles,783,5,1,0,0,0,97,0,1,0,71,14,1,14,25,12,N/A,28,26,95,20,39,26,10,5,2.41\r\n,Montgomery Middle,Cajon Valley Union,San Diego,783,5,5,1,1,2,37,1,47,2,70,7,0,28,19,14,N/A,29,29,86,19,41,24,12,4,2.4\r\n,Western High,Anaheim Union High,Orange,783,7,4,1,9,7,64,3,12,0,73,13,0,25,32,9,N/A,N/A,37,9,29,29,18,21,3,2.39\r\n,Berenda Elementary,Madera Unified,Madera,783,4,3,0,1,0,79,0,16,0,76,2,2,25,13,6,27,35,N/A,100,23,36,31,8,3,2.32\r\n,Altadena Elementary,Pasadena Unified,Los Angeles,783,4,27,0,0,0,67,0,2,2,91,9,0,30,9,22,23,26,N/A,93,26,37,24,9,3,2.26\r\n,Princeton Junior-Senior High,Princeton Joint Unified,Glenn,783,7,0,7,0,0,60,0,33,0,68,0,5,8,18,6,N/A,N/A,13,77,34,19,36,7,3,2.25\r\n,Stephen R. Fitz Intermediate,Garden Grove Unified,Orange,783,5,1,0,17,1,78,0,3,0,79,4,0,51,34,11,N/A,N/A,28,41,31,35,14,18,2,2.25\r\n,Lugonia Elementary,Redlands Unified,San Bernardino,783,4,7,0,5,1,78,1,7,1,90,1,0,24,5,16,22,32,N/A,93,29,30,30,8,2,2.24\r\n,Izaak Walton Intermediate,Garden Grove Unified,Orange,783,5,1,0,15,1,76,1,5,0,72,4,0,46,30,10,N/A,N/A,29,65,32,35,14,15,3,2.22\r\n,Maywood Middle,Corning Union Elementary,Tehama,783,5,1,1,1,1,53,0,42,0,82,4,4,20,19,10,N/A,29,25,79,28,33,28,9,1,2.22\r\n,,Kings Canyon Joint Unified,Fresno,783,B,0,0,1,1,85,0,12,1,91,1,6,29,31,8,25,27,27,96,38,24,22,11,5,2.21\r\n,King Elementary,Long Beach Unified,Los Angeles,783,4,14,0,1,0,83,1,0,0,100,0,1,40,32,7,29,34,N/A,76,31,36,21,7,5,2.17\r\n,Grant Elementary,Los Angeles Unified,Los Angeles,783,4,4,0,5,3,72,0,16,0,100,5,0,42,23,13,19,23,N/A,84,35,34,17,11,3,2.13\r\n,Marina Vista Elementary,Monterey Peninsula Unified,Monterey,783,4,5,0,6,4,66,4,11,4,84,2,0,40,16,17,23,25,N/A,98,37,33,16,10,4,2.1\r\n,West Whittier Elementary,Whittier City Elementary,Los Angeles,783,4,1,0,0,0,96,0,0,0,83,0,0,38,24,13,30,30,N/A,93,35,34,21,9,2,2.09\r\n,Jefferson (Thomas) Elementary,Anaheim City,Orange,783,4,1,0,0,1,95,0,2,0,91,11,0,47,35,19,26,29,N/A,3,38,38,8,8,8,2.08\r\n,Date Elementary,Fontana Unified,San Bernardino,783,4,5,0,1,0,91,1,2,0,100,4,0,51,16,11,23,28,N/A,93,37,35,18,7,3,2.03\r\n,,Anderson Valley Unified,Mendocino,783,B,0,0,0,0,74,0,24,0,76,0,15,44,25,12,22,20,16,91,42,34,14,7,3,1.94\r\n,Maple Elementary,Fullerton Elementary,Orange,783,4,1,0,0,0,95,0,1,0,89,4,0,64,10,11,24,31,N/A,86,38,41,13,6,2,1.92\r\n,Noralto Elementary,Twin Rivers Unified,Sacramento,783,4,8,1,13,1,68,1,5,2,95,0,0,67,0,5,28,N/A,N/A,80,43,33,19,4,1,1.88\r\n,Herbert Hoover Elementary,Desert Sands Unified,Riverside,783,4,1,0,0,0,97,0,2,0,98,0,2,44,20,13,21,22,N/A,100,58,26,10,2,4,1.68\r\n,Menlo Avenue Elementary,Los Angeles Unified,Los Angeles,783,4,16,0,0,0,83,0,0,0,100,4,0,45,20,13,20,23,N/A,83,55,30,10,3,2,1.66\r\n,Sybil N. Crookham Elementary,Winton Elementary,Merced,783,4,1,1,4,0,83,0,11,0,98,0,2,61,9,21,20,26,N/A,94,52,42,4,2,0,1.55\r\n,Lost Hills Elementary,Lost Hills Union Elementary,Kern,783,4,0,0,1,0,97,0,0,0,94,0,79,89,4,6,23,16,N/A,98,66,29,3,1,1,1.42\r\n,Sierra Vista Elementary,Madera Unified,Madera,783,4,2,0,0,0,96,0,1,0,96,0,20,63,17,3,27,32,N/A,100,74,17,8,0,1,1.37\r\n,Chawanakee Academy,Chawanakee Unified,Madera,782,6,2,4,0,0,18,0,67,8,26,4,0,3,2,3,24,N/A,N/A,84,3,22,31,24,21,3.37\r\n,Big Bear High,Bear Valley Unified,San Bernardino,782,6,1,1,0,0,31,0,60,2,55,15,0,5,13,9,N/A,N/A,27,92,11,18,32,24,15,3.14\r\n,Sonora High,Sonora Union High,Tuolumne,782,6,1,2,1,0,13,1,81,1,39,8,0,0,1,9,N/A,N/A,30,95,4,23,40,21,12,3.13\r\n,Cubberley Elementary,San Diego Unified,San Diego,782,4,9,0,8,5,39,1,31,6,66,32,0,27,6,19,24,25,N/A,85,2,25,41,25,8,3.12\r\n,Golden Valley High,William S. Hart Union High,Los Angeles,782,6,9,0,6,6,50,0,27,2,39,9,0,16,14,14,N/A,N/A,31,93,13,19,34,25,10,3.01\r\n,El Descanso Elementary,Pleasant Valley,Ventura,782,4,4,1,5,3,53,0,31,2,51,6,1,25,2,13,23,27,N/A,86,11,20,37,26,7,2.98\r\n,Burney Junior-Senior High,Fall River Joint Unified,Shasta,782,6,1,8,1,2,17,0,70,2,48,6,6,2,4,9,N/A,N/A,19,95,6,24,54,9,8,2.88\r\n,Glendale High,Glendale Unified,Los Angeles,782,6,2,0,4,12,34,0,48,1,63,9,0,24,44,10,N/A,N/A,29,82,14,35,15,26,11,2.86\r\n,Clinton-Mendenhall Elementary,Garden Grove Unified,Orange,782,4,1,0,13,1,84,1,2,0,78,0,0,67,16,9,27,31,N/A,17,15,39,8,33,6,2.76\r\n,,Apple Valley Unified,San Bernardino,782,B,11,0,2,1,41,1,43,1,64,15,0,9,5,11,25,27,30,91,14,27,36,16,7,2.75\r\n,,Kernville Union Elementary,Kern,782,B,1,2,1,0,10,0,85,1,73,0,0,0,1,10,23,28,27,98,11,31,37,14,7,2.74\r\n,Lee Middle,Woodland Joint Unified,Yolo,782,5,1,0,2,0,62,0,33,1,62,20,1,15,28,10,N/A,N/A,24,83,20,23,33,17,7,2.68\r\n,Riverdale Elementary,Garden Grove Unified,Orange,782,4,2,0,15,2,79,0,3,0,70,0,0,59,13,8,27,29,N/A,1,33,0,33,33,0,2.67\r\n,,Turlock Unified,Stanislaus,782,B,2,1,5,1,53,0,36,2,64,8,1,26,10,10,20,28,28,98,18,33,25,14,10,2.64\r\n,,Hilmar Unified,Merced,782,B,0,0,2,0,36,0,61,0,58,12,4,22,13,12,20,27,23,97,18,33,25,18,6,2.59\r\n,Sunset Elementary,Coalinga-Huron Joint Unified,Fresno,782,4,2,0,2,1,73,0,21,1,81,2,4,40,6,8,N/A,31,N/A,92,22,27,36,12,4,2.5\r\n,Mattie Lou Maxwell Elementary,Magnolia Elementary,Orange,782,4,3,1,12,3,68,1,13,1,85,6,0,42,22,9,24,30,N/A,70,23,29,28,16,4,2.5\r\n,Valle Vista Elementary,Hemet Unified,Riverside,782,4,4,2,1,0,41,1,47,3,74,0,0,11,2,14,28,29,N/A,100,18,35,31,10,6,2.49\r\n,Wilson Elementary,San Leandro Unified,Alameda,782,4,8,0,18,13,52,1,6,2,76,14,0,36,27,8,28,31,N/A,99,16,41,26,15,3,2.49\r\n,Hilmar High,Hilmar Unified,Merced,782,6,1,0,3,0,35,0,61,0,56,13,4,14,17,9,N/A,N/A,26,95,19,41,19,16,5,2.47\r\n,Esparto K-8,Esparto Unified,Yolo,782,4,1,0,1,1,68,0,28,1,66,12,6,39,13,11,25,30,31,89,25,27,28,15,5,2.47\r\n,Rhoda Maxwell Elementary,Woodland Joint Unified,Yolo,782,4,1,1,4,0,73,0,20,1,79,10,3,33,21,16,28,30,N/A,93,22,33,32,8,5,2.42\r\n,Bellflower High,Bellflower Unified,Los Angeles,782,6,13,0,3,4,72,1,5,2,75,14,0,20,23,10,N/A,N/A,29,95,24,32,28,12,4,2.4\r\n,,Franklin-McKinley Elementary,Santa Clara,782,B,2,0,32,4,59,1,2,1,81,12,4,48,29,9,24,30,28,97,25,37,21,13,4,2.35\r\n,Margaret Sheehy Elementary,Merced City Elementary,Merced,782,4,3,1,12,2,73,0,7,2,84,15,5,57,4,7,23,28,N/A,78,36,25,18,12,9,2.32\r\n,Laurelglen Elementary,Panama-Buena Vista Union,Kern,782,4,12,2,2,1,38,1,45,0,51,3,0,5,4,14,26,27,N/A,38,16,52,18,14,0,2.3\r\n,Hunt Elementary,Newman-Crows Landing Unified,Stanislaus,782,4,2,0,1,0,82,0,14,2,85,6,6,57,5,5,26,23,N/A,89,26,39,22,8,6,2.29\r\n,Prairie Elementary,Elk Grove Unified,Sacramento,782,4,28,0,15,2,46,3,2,3,100,1,0,35,17,11,22,26,N/A,91,27,40,21,8,5,2.24\r\n,Riverside Elementary,West Contra Costa Unified,Contra Costa,782,4,17,0,8,5,62,1,5,1,85,5,0,46,18,12,21,25,N/A,90,22,50,13,12,3,2.23\r\n,Katherine Edwards Middle,Whittier City Elementary,Los Angeles,782,5,0,0,0,0,94,0,3,0,69,0,0,12,19,13,N/A,35,29,95,26,42,23,6,2,2.16\r\n,Cypress Elementary,San Bernardino City Unified,San Bernardino,782,4,22,1,1,2,65,1,8,1,98,10,0,41,7,10,18,24,N/A,63,34,36,16,9,5,2.16\r\n,,Ceres Unified,Stanislaus,782,B,2,1,5,1,70,1,19,1,80,4,5,34,16,12,22,29,28,98,31,38,19,9,3,2.13\r\n,Washington Elementary,Bellflower Unified,Los Angeles,782,4,5,1,1,3,85,1,5,1,91,12,0,48,12,10,30,29,N/A,96,36,35,20,7,2,2.02\r\n,Liberty Boulevard Elementary,Los Angeles Unified,Los Angeles,782,4,0,0,0,0,100,0,0,0,93,5,0,33,35,9,20,23,N/A,90,42,31,18,7,1,1.94\r\n,O'Melveny Elementary,Los Angeles Unified,Los Angeles,782,4,1,0,0,0,98,0,0,0,100,5,0,46,21,22,17,22,N/A,71,39,37,18,4,2,1.93\r\n,Eliot Elementary,Gilroy Unified,Santa Clara,782,4,1,1,1,0,94,0,3,0,90,2,5,66,13,13,26,31,N/A,85,50,25,12,7,5,1.91\r\n,Harmon Johnson Elementary,Twin Rivers Unified,Sacramento,782,4,9,1,13,1,68,1,5,1,95,9,0,54,16,12,19,23,N/A,88,41,37,17,4,1,1.86\r\n,Manchester Avenue Elementary,Los Angeles Unified,Los Angeles,782,4,20,0,0,0,80,0,0,0,100,6,0,45,20,10,17,18,N/A,47,49,31,15,6,1,1.79\r\nD,Alliance Huntington Park College-Ready A,Los Angeles Unified,Los Angeles,782,6,0,0,0,0,98,0,1,0,96,0,0,21,61,6,N/A,N/A,26,100,52,27,14,6,2,1.78\r\n,S Ben Benavidez Elementary,Parlier Unified,Fresno,782,4,0,0,0,0,99,0,1,0,96,0,34,76,2,12,27,31,N/A,91,56,22,15,6,2,1.75\r\nD,San Diego Cooperative Charter,San Diego Unified,San Diego,781,4,3,0,4,2,30,1,55,5,31,12,0,9,4,10,24,25,25,95,5,6,13,32,45,4.06\r\nD,High Tech High Media Arts,San Diego Unified,San Diego,781,6,12,0,1,6,41,1,34,4,44,0,0,3,15,10,N/A,N/A,22,77,7,12,26,27,28,3.57\r\n,Paso Robles Independent Study Center,Paso Robles Joint Unified,San Luis Obispo,781,4,2,2,2,0,34,0,55,2,32,7,0,5,2,9,10,6,7,91,0,8,63,20,10,3.33\r\n,El Toro Elementary,Morgan Hill Unified,Santa Clara,781,4,3,0,7,3,53,0,34,1,42,12,5,22,4,14,27,32,N/A,92,8,17,33,23,19,3.29\r\n,Olivet Elementary,Piner-Olivet Union Elementary,Sonoma,781,4,5,2,5,1,38,2,45,0,44,3,0,24,3,13,25,20,N/A,83,8,24,36,23,8,2.98\r\n,Exeter High,Exeter Union High,Tulare,781,6,1,1,1,1,47,0,49,0,43,3,5,6,0,6,,,,95,16,19,32,22,11,2.94\r\n,Sheldon High,Elk Grove Unified,Sacramento,781,6,16,1,26,5,20,2,25,4,56,8,0,9,26,9,N/A,N/A,28,93,8,28,34,22,8,2.93\r\n,Mission Elementary,Redlands Unified,San Bernardino,781,4,16,0,15,4,47,3,10,5,80,0,0,18,3,16,27,29,N/A,92,11,21,42,19,7,2.89\r\n,Windsor Hills Math Science,Los Angeles Unified,Los Angeles,781,4,88,1,1,0,10,0,0,0,76,8,0,3,2,5,11,5,N/A,21,10,21,53,13,3,2.79\r\n,Louis Milani Elementary,Newark Unified,Alameda,781,4,7,0,15,11,53,0,11,3,64,2,1,37,19,12,27,31,N/A,93,18,27,21,26,7,2.77\r\n,,Keyes Union,Stanislaus,781,B,0,0,2,0,57,1,40,0,70,0,8,31,9,10,19,20,14,88,18,27,30,16,9,2.71\r\n,Carpinteria Middle,Carpinteria Unified,Santa Barbara,781,5,1,0,2,0,76,0,20,1,64,9,3,25,29,12,N/A,28,25,76,21,23,31,16,10,2.7\r\n,Rucker Elementary,Gilroy Unified,Santa Clara,781,4,2,1,5,2,64,0,22,2,58,22,3,43,5,8,24,32,N/A,93,27,20,22,23,9,2.68\r\n,Buchanan Street Elementary,Los Angeles Unified,Los Angeles,781,4,2,0,3,7,86,0,3,0,100,8,0,24,16,8,17,17,N/A,94,15,33,31,17,4,2.61\r\n,Conley Elementary,Taft City,Kern,781,4,0,0,0,0,54,0,44,2,76,0,6,29,10,10,29,N/A,N/A,64,16,25,43,16,0,2.59\r\n,Walnut Grove Intermediate,West Covina Unified,Los Angeles,781,5,4,0,6,3,79,0,7,0,69,21,0,5,20,7,N/A,N/A,30,92,12,33,42,13,1,2.58\r\n,Steffan Manor Elementary,Vallejo City Unified,Solano,781,4,19,1,2,7,47,4,13,2,67,2,0,23,8,7,26,31,N/A,94,15,38,27,16,4,2.56\r\n,,Anaheim Union High,Orange,781,B,3,0,12,4,66,1,13,0,70,16,0,24,36,10,N/A,N/A,33,14,30,23,19,19,8,2.51\r\n,Victoria Magathan Elementary,Adelanto Elementary,San Bernardino,781,4,32,1,0,0,58,1,6,1,99,4,0,23,6,11,29,30,N/A,98,19,34,32,10,6,2.48\r\n,Juan Cabrillo Middle,Santa Clara Unified,Santa Clara,781,5,4,0,16,9,49,1,16,2,63,12,3,25,29,24,N/A,23,26,89,21,36,22,17,3,2.46\r\n,San Martin/Gwinn Elementary,Morgan Hill Unified,Santa Clara,781,4,1,0,2,2,72,1,21,1,63,11,12,51,6,15,27,26,N/A,92,29,26,26,13,7,2.43\r\n,William R. Rogers Elementary,Alum Rock Union Elementary,Santa Clara,781,4,2,0,21,6,64,1,4,1,100,11,0,36,22,14,21,28,N/A,90,24,31,25,16,3,2.42\r\n,,Whittier Union High,Los Angeles,781,B,1,0,1,1,80,0,15,0,63,0,0,11,20,8,N/A,N/A,33,92,26,30,27,11,6,2.41\r\n,Costa Mesa High,Newport-Mesa Unified,Orange,781,6,2,0,7,2,64,2,23,1,73,8,0,24,28,11,N/A,N/A,29,88,34,20,22,19,5,2.41\r\nD,Multicultural Learning Center,Los Angeles Unified,Los Angeles,781,4,5,0,1,0,76,0,9,4,56,4,0,27,19,15,19,25,20,94,31,27,17,22,3,2.39\r\n,E. G. Garrison Elementary,Oceanside Unified,San Diego,781,4,5,0,1,2,67,1,20,2,82,3,2,32,16,18,22,28,N/A,82,25,31,28,11,5,2.38\r\n,King/Drew Medical Magnet High,Los Angeles Unified,Los Angeles,781,6,53,0,0,0,45,0,0,0,85,18,0,2,23,1,N/A,N/A,29,28,30,28,22,15,5,2.37\r\n,Shadow Hills Intermediate,Palmdale Elementary,Los Angeles,781,5,17,0,1,2,71,0,5,1,84,12,3,15,22,10,N/A,N/A,28,92,27,29,30,10,4,2.34\r\n,Hawthorne Middle,Hawthorne,Los Angeles,781,5,19,0,3,2,71,2,2,0,80,7,0,21,29,9,N/A,31,30,83,21,39,28,8,3,2.33\r\nD,Century Community Charter,Lennox,Los Angeles,781,5,18,0,0,0,63,0,1,0,57,0,0,12,29,2,,,,88,33,29,23,8,7,2.29\r\n,Pleasant Elementary,Tulare City,Tulare,781,4,3,0,1,0,82,0,12,0,87,2,8,33,12,5,22,30,N/A,89,23,39,26,8,3,2.29\r\n,Visitacion Valley Elementary,San Francisco Unified,San Francisco,781,4,15,1,53,9,14,3,0,2,88,6,0,57,13,7,21,33,N/A,81,25,41,20,13,1,2.25\r\n,Bancroft Elementary,La Mesa-Spring Valley,San Diego,781,4,13,0,2,2,66,1,10,5,90,7,0,35,12,10,31,34,N/A,92,29,33,25,12,0,2.21\r\nY,Smythe Academy of Arts and Sciences,Twin Rivers Unified,Sacramento,781,4,11,1,6,1,66,2,12,1,89,16,0,38,18,7,28,32,28,82,27,38,24,9,2,2.2\r\n,York,Hawthorne,Los Angeles,781,4,19,0,1,1,77,0,1,0,89,2,0,48,11,12,26,28,N/A,96,27,38,25,7,2,2.19\r\n,Douglas J. Miller Elementary,Panama-Buena Vista Union,Kern,781,4,6,0,9,2,66,0,17,0,77,1,0,28,13,11,31,28,N/A,39,27,42,18,12,1,2.18\r\n,Orange Grove Elementary,Anaheim City,Orange,781,4,0,1,2,1,93,0,2,0,94,16,0,60,26,8,28,30,N/A,2,17,50,33,0,0,2.17\r\n,Sherman Elementary,San Diego Unified,San Diego,781,4,3,0,0,0,95,0,1,1,100,23,0,74,8,5,19,30,N/A,75,32,41,13,7,7,2.16\r\n,Encanto Elementary,San Diego Unified,San Diego,781,4,10,0,2,1,83,1,2,3,100,21,0,55,17,12,17,20,N/A,96,32,40,17,8,4,2.11\r\n,Carson Elementary,San Diego Unified,San Diego,781,4,3,0,16,4,71,0,3,2,100,26,0,57,20,8,20,29,N/A,92,32,42,17,8,2,2.07\r\n,Worthington Elementary,Inglewood Unified,Los Angeles,781,4,5,0,0,0,92,2,0,0,96,2,0,15,1,19,29,33,N/A,92,42,35,16,5,2,1.89\r\n,Pleasant View Elementary,Baldwin Park Unified,Los Angeles,781,4,0,0,2,1,96,0,1,0,92,13,0,49,13,23,17,27,N/A,69,41,43,13,4,0,1.8\r\n,Sheridan Elementary,Kings Canyon Joint Unified,Fresno,781,4,1,0,2,0,96,0,0,0,99,0,6,47,30,5,26,33,N/A,100,52,24,19,4,1,1.79\r\n,Ina Arbuckle Elementary,Jurupa Unified,Riverside,781,4,2,0,1,0,94,0,3,0,94,6,0,57,16,12,24,27,N/A,99,55,30,11,3,1,1.64\r\n,,Lost Hills Union Elementary,Kern,781,B,0,0,1,0,98,0,0,0,90,0,68,78,15,8,23,17,21,97,70,26,3,1,1,1.38\r\n,Far East County Programs,Contra Costa County Office of,Contra Costa,781,C,22,0,0,6,28,0,40,2,48,0,0,4,0,100,7,7,N/A,0,0,0,0,0,0,\r\nD,Sky Mountain Charter,Lucerne Valley Unified,San Bernardino,780,4,2,1,4,2,23,0,65,3,29,0,0,0,0,5,20,20,1,100,0,5,25,29,40,4.04\r\n,Kohl Open Elementary,Stockton Unified,San Joaquin,780,4,6,2,8,3,48,1,32,0,53,12,0,4,8,10,28,27,18,92,3,12,39,29,18,3.46\r\nD,Golden Eagle Charter,Siskiyou County Office of Educ,Siskiyou,780,4,2,3,0,0,14,0,72,8,53,0,0,0,0,11,2,2,18,95,10,9,35,29,17,3.35\r\n,Chico High,Chico Unified,Butte,780,6,3,2,8,0,22,0,62,1,44,0,0,9,11,13,N/A,N/A,29,75,13,14,26,26,22,3.31\r\nY,Olive Grove,Los Olivos Elementary,Santa Barbara,780,6,2,0,0,0,33,0,52,11,7,0,0,5,7,5,1,4,5,70,4,27,21,32,15,3.27\r\n,Citrus Valley High,Redlands Unified,San Bernardino,780,6,7,1,6,2,49,1,32,2,47,8,0,7,6,9,N/A,N/A,28,96,11,18,34,18,18,3.14\r\nD,Academy of Alameda,Alameda City Unified,Alameda,780,5,24,0,15,16,20,2,14,7,61,9,0,21,11,14,N/A,21,24,95,8,25,29,25,12,3.08\r\n,La Mirada High,Norwalk-La Mirada Unified,Los Angeles,780,6,3,0,6,3,60,1,26,2,39,23,1,4,9,8,N/A,N/A,30,95,8,29,31,22,10,2.98\r\n,San Rafael Elementary,Pasadena Unified,Los Angeles,780,4,12,1,2,1,67,1,16,0,66,8,0,26,11,18,24,30,N/A,95,17,26,20,18,19,2.96\r\n,Liberty High,Liberty Union High,Contra Costa,780,6,6,1,2,2,35,0,51,3,25,6,1,10,11,12,N/A,N/A,27,99,10,22,38,20,9,2.95\r\n,Paradise Elementary,Paradise Unified,Butte,780,4,1,0,1,0,14,1,77,8,62,0,0,3,2,9,26,29,N/A,99,8,24,46,13,9,2.91\r\n,,Trinity Alps Unified,Trinity,780,B,1,6,1,0,7,0,79,5,50,1,0,1,0,12,23,29,23,82,3,35,41,16,5,2.86\r\n,Lodi High,Lodi Unified,San Joaquin,780,6,1,0,2,1,39,0,55,1,47,12,4,16,12,13,N/A,N/A,28,78,16,26,29,16,13,2.83\r\n,Hennessy Elementary,Grass Valley Elementary,Nevada,780,4,1,3,0,0,22,0,70,1,69,0,0,9,1,14,24,28,N/A,95,7,31,47,12,4,2.76\r\n,Southgate Elementary,Hayward Unified,Alameda,780,4,15,1,13,13,44,5,7,1,64,0,0,28,9,9,26,29,N/A,88,14,27,31,24,4,2.74\r\n,Balboa High,San Francisco Unified,San Francisco,780,6,8,0,43,12,24,2,7,1,62,31,0,18,36,13,N/A,N/A,27,63,14,38,19,23,6,2.69\r\n,Linden High,Linden Unified,San Joaquin,780,6,0,2,2,1,45,0,48,1,52,11,5,11,21,9,N/A,N/A,27,85,16,31,28,19,6,2.67\r\n,Landmark Middle,Moreno Valley Unified,Riverside,780,5,22,0,2,3,59,1,11,1,72,9,0,14,20,10,N/A,30,30,87,14,29,37,15,4,2.66\r\n,La Honda Elementary,La Honda-Pescadero Unified,San Mateo,780,4,0,0,1,1,48,0,49,0,45,0,3,36,6,18,8,19,N/A,99,39,7,17,25,12,2.63\r\n,Webster Elementary,San Diego Unified,San Diego,780,4,30,0,5,0,58,1,2,4,100,20,0,30,20,9,23,28,N/A,89,16,31,36,9,8,2.63\r\n,,Somis Union,Ventura,780,B,1,0,0,1,67,0,29,1,59,1,1,36,12,10,15,19,7,93,25,37,3,23,11,2.59\r\n,Somis Elementary,Somis Union,Ventura,780,4,1,0,0,1,67,0,29,1,59,1,1,36,12,10,22,21,21,93,25,37,3,23,11,2.59\r\n,Beamer Elementary,Woodland Joint Unified,Yolo,780,4,0,0,1,0,87,0,9,1,72,12,2,43,18,7,27,24,N/A,88,30,19,25,14,12,2.59\r\n,Waldo Rohnert Elementary,Cotati-Rohnert Park Unified,Sonoma,780,4,3,0,2,0,62,0,29,4,74,0,3,38,14,13,29,27,N/A,91,13,38,32,13,4,2.57\r\n,Madison (James) Elementary,Anaheim City,Orange,780,4,4,0,14,2,67,2,10,0,82,12,0,45,30,7,26,31,N/A,7,16,32,35,13,3,2.55\r\n,West Street Elementary,Corning Union Elementary,Tehama,780,4,0,0,0,0,50,0,49,1,87,0,5,37,4,15,21,19,N/A,72,19,30,35,13,4,2.52\r\n,William M. Metteer Elementary,Red Bluff Union Elementary,Tehama,780,4,1,2,0,0,35,0,60,1,76,1,2,20,3,10,28,26,N/A,99,17,32,36,12,3,2.51\r\n,Yermo Elementary,Silver Valley Unified,San Bernardino,780,4,3,2,1,1,29,0,60,4,72,0,0,4,5,9,17,20,N/A,95,17,37,33,10,3,2.46\r\n,,River Delta Joint Unified,Sacramento,780,B,1,1,1,1,50,0,45,2,55,11,8,25,15,15,20,22,19,96,28,23,29,14,5,2.45\r\n,,La Habra City Elementary,Orange,780,B,1,0,2,1,83,0,12,1,70,11,0,34,20,9,27,30,30,61,26,29,24,14,7,2.45\r\n,Washington Elementary,Kings Canyon Joint Unified,Fresno,780,4,0,0,1,0,86,0,12,0,95,0,2,33,20,3,27,32,N/A,98,26,29,24,16,4,2.43\r\n,Highland Pacific Elementary,San Bernardino City Unified,San Bernardino,780,4,21,0,2,1,58,0,12,3,92,7,0,25,7,15,26,29,N/A,78,26,28,29,12,5,2.42\r\n,Mariana Elementary,Apple Valley Unified,San Bernardino,780,4,5,0,0,0,44,1,50,0,80,11,0,17,4,17,25,29,N/A,92,20,34,35,10,2,2.4\r\n,Madison Avenue Elementary,Cajon Valley Union,San Diego,780,4,8,1,0,2,37,2,44,1,72,9,0,34,5,15,21,29,N/A,87,19,40,27,13,2,2.39\r\n,,Greenfield Union,Kern,780,B,8,0,2,1,79,0,8,1,78,5,5,28,23,9,28,27,22,68,22,39,23,11,5,2.37\r\n,Donald F. Bradach Elementary,Adelanto Elementary,San Bernardino,780,4,19,0,2,1,64,2,11,1,100,17,0,22,14,17,33,32,29,97,22,40,22,10,6,2.37\r\n,Almond Elementary,Fontana Unified,San Bernardino,780,4,7,0,4,0,83,0,6,0,100,4,0,39,18,8,22,29,N/A,90,25,34,24,11,5,2.37\r\n,Arbuckle Elementary,Pierce Joint Unified,Colusa,780,4,3,0,1,0,69,0,26,1,71,1,8,47,12,11,24,31,N/A,98,33,27,20,12,8,2.35\r\n,John Muir Elementary,Modesto City Elementary,Stanislaus,780,4,7,1,3,0,49,1,35,3,85,4,0,14,2,18,21,25,N/A,98,13,51,27,5,3,2.34\r\n,Lo-Inyo Elementary,Lone Pine Unified,Inyo,780,4,1,17,2,1,48,0,29,2,70,9,0,33,12,16,22,24,18,99,25,38,24,10,4,2.31\r\n,Gault Street Elementary,Los Angeles Unified,Los Angeles,780,4,2,1,4,4,80,1,9,0,87,6,0,40,13,20,17,21,N/A,94,31,31,19,13,5,2.3\r\n,Sunnyslope Elementary,Jurupa Unified,Riverside,780,4,3,0,0,0,86,0,9,0,80,6,0,43,9,9,23,32,N/A,98,30,33,20,13,5,2.29\r\n,Chase Street Elementary,Los Angeles Unified,Los Angeles,780,4,2,0,3,4,88,0,3,0,100,8,0,51,20,13,19,21,N/A,93,29,40,15,11,5,2.23\r\n,Kerman High,Kerman Unified,Fresno,780,6,0,1,7,0,78,0,13,0,73,24,5,15,35,8,N/A,N/A,26,89,35,28,21,11,4,2.21\r\n,North Park Middle,El Rancho Unified,Los Angeles,780,5,0,0,0,1,99,0,0,0,77,15,0,14,31,9,N/A,26,29,99,33,33,24,7,2,2.12\r\n,Mae Hensley Junior High,Ceres Unified,Stanislaus,780,5,3,1,5,0,67,2,22,1,81,5,5,20,24,9,N/A,N/A,29,95,31,43,16,8,3,2.09\r\n,Ella Elementary,Marysville Joint Unified,Yuba,780,4,3,3,6,0,59,0,26,2,91,6,4,50,5,10,21,26,N/A,72,32,38,24,5,2,2.06\r\n,Woodcrest Elementary,Fullerton Elementary,Orange,780,4,2,0,2,1,87,0,5,1,78,1,0,55,7,20,23,25,N/A,86,35,37,17,9,2,2.05\r\n,Cabrillo Avenue Elementary,Los Angeles Unified,Los Angeles,780,4,10,0,2,0,85,0,2,0,92,3,0,24,17,15,17,19,N/A,68,38,32,21,7,3,2.05\r\n,Lockwood Avenue Elementary,Los Angeles Unified,Los Angeles,780,4,1,0,2,12,85,0,1,0,100,10,0,38,33,9,19,18,N/A,80,44,25,16,12,3,2.05\r\n,Liggett Street Elementary,Los Angeles Unified,Los Angeles,780,4,2,0,2,4,89,0,2,0,100,12,0,47,25,12,20,21,N/A,81,43,29,15,10,4,2.04\r\n,Gustine Middle,Gustine Unified,Merced,780,5,1,0,1,1,77,0,22,0,74,4,7,22,41,8,N/A,29,24,99,41,29,20,6,4,2.02\r\n,Yorba Middle,Orange Unified,Orange,780,5,1,1,1,0,89,0,7,0,84,1,0,29,30,12,N/A,31,26,94,54,24,14,6,2,1.78\r\n,Orthopaedic Hospital,Los Angeles Unified,Los Angeles,780,6,5,0,1,0,93,0,1,0,100,23,1,7,74,2,N/A,N/A,28,69,51,30,12,5,2,1.77\r\n,Ann Street Elementary,Los Angeles Unified,Los Angeles,780,4,4,0,2,0,94,0,0,0,100,3,0,42,21,14,18,15,N/A,36,54,28,13,0,5,1.74\r\n,,Winton Elementary,Merced,780,B,1,1,6,0,84,0,9,0,96,3,4,47,24,14,20,28,26,92,51,37,8,3,1,1.67\r\n,Thomas A. Edison Elementary,Santa Ana Unified,Orange,780,4,0,0,1,0,99,0,0,0,100,6,2,77,13,14,25,28,N/A,98,57,30,11,2,1,1.62\r\nD,Aspire East Palo Alto Phoenix Academy,Sequoia Union High,San Mateo,780,6,6,0,1,0,92,1,0,0,82,0,0,23,68,13,N/A,N/A,24,81,62,25,12,1,1,1.54\r\n,Robert F. Kennedy High,Delano Joint Union High,Kern,780,6,0,0,0,1,88,0,1,9,100,2,13,32,46,6,N/A,N/A,29,71,63,25,9,2,1,1.53\r\nD,Somis Academy,Somis Union,Ventura,779,6,3,1,6,1,24,0,64,0,39,1,0,3,1,17,6,16,7,99,1,21,31,28,19,3.44\r\n,Tenaya Middle,Fresno Unified,Fresno,779,4,14,1,4,1,42,1,37,0,51,21,0,3,5,10,N/A,N/A,30,92,5,18,43,17,17,3.22\r\n,Upland High,Upland Unified,San Bernardino,779,6,9,0,6,2,48,0,33,3,47,15,0,9,5,11,N/A,N/A,30,95,7,18,37,27,11,3.17\r\n,Cesar Chavez Elementary,Calexico Unified,Imperial,779,4,0,0,1,0,98,0,1,0,100,4,4,62,21,5,28,32,N/A,96,11,19,31,25,14,3.11\r\n,H. Allen Hight Elementary,Natomas Unified,Sacramento,779,4,24,1,18,9,27,1,9,4,61,2,0,28,2,11,29,30,N/A,77,7,24,37,26,7,3.03\r\n,Allen at Steinbeck,San Jose Unified,Santa Clara,779,4,7,1,8,4,52,0,24,2,57,7,0,25,9,11,26,28,13,91,14,21,30,26,10,2.98\r\n,Denair Middle,Denair Unified,Stanislaus,779,4,0,0,1,0,40,0,57,2,38,12,1,10,19,13,N/A,23,25,91,12,27,30,18,14,2.95\r\n,Royal High,Simi Valley Unified,Ventura,779,6,1,0,4,2,29,0,61,1,30,14,0,5,14,14,N/A,N/A,29,85,10,28,29,24,9,2.92\r\n,El Camino High,Oceanside Unified,San Diego,779,6,8,0,3,6,52,3,27,1,44,15,1,10,27,11,N/A,N/A,23,88,16,20,33,22,9,2.88\r\n,Parkview Elementary,Taft City,Kern,779,4,1,2,2,0,26,1,66,3,58,0,1,2,3,5,27,N/A,N/A,90,7,24,48,20,1,2.85\r\n,,Morongo Unified,San Bernardino,779,B,7,1,1,1,28,1,56,5,64,8,0,4,3,14,25,25,23,91,11,25,42,15,8,2.85\r\nD,Celerity Sirius Charter,Los Angeles County Office of E,Los Angeles,779,4,70,0,0,0,28,0,0,0,86,0,0,19,4,7,20,21,N/A,82,9,31,35,17,8,2.84\r\n,Bear Creek High,Lodi Unified,San Joaquin,779,6,16,0,19,13,29,1,20,1,61,10,0,11,20,11,N/A,N/A,27,76,12,26,36,20,7,2.83\r\n,Miller Elementary,Escondido Union,San Diego,779,4,4,1,4,3,48,1,37,0,57,14,1,27,5,13,19,30,N/A,90,13,26,34,22,6,2.81\r\n,Sespe Elementary,Fillmore Unified,Ventura,779,4,0,0,1,0,94,0,5,0,81,4,7,45,7,13,22,28,N/A,93,15,26,36,16,7,2.74\r\n,Covina High,Covina-Valley Unified,Los Angeles,779,6,4,0,6,3,75,1,12,0,60,5,0,7,16,11,N/A,N/A,27,99,13,31,36,17,5,2.7\r\n,Sunset Elementary,Ventura Unified,Ventura,779,4,1,2,0,0,45,0,52,0,70,7,0,23,3,11,24,22,25,96,19,27,35,8,12,2.67\r\n,Treeview Elementary,Hayward Unified,Alameda,779,4,21,0,11,9,47,1,5,3,67,0,0,31,10,8,26,33,N/A,86,14,35,29,19,4,2.64\r\n,Granite Pointe Elementary,Greenfield Union,Kern,779,4,5,0,3,0,77,0,14,1,76,0,4,35,13,8,28,26,N/A,75,14,41,25,13,7,2.58\r\n,Newman Elementary,Chino Valley Unified,San Bernardino,779,4,2,0,2,1,80,0,13,1,67,1,0,26,7,11,30,30,N/A,90,18,35,26,16,5,2.55\r\nD,Garr Academy of Math and Entrepreneurial,Los Angeles Unified,Los Angeles,779,4,84,1,0,0,13,1,0,0,88,2,0,6,1,12,,,,17,13,31,49,5,3,2.54\r\n,Cordova Meadows Elementary,Folsom-Cordova Unified,Sacramento,779,4,25,1,4,0,33,1,28,7,79,1,0,20,12,8,30,24,N/A,94,19,32,32,13,4,2.5\r\n,,Fortuna Union Elementary,Humboldt,779,B,2,5,1,0,41,0,50,0,73,3,2,25,1,24,25,22,N/A,86,20,34,31,9,5,2.44\r\n,El Camino Elementary,Ontario-Montclair Elementary,San Bernardino,779,4,3,1,1,1,84,0,8,1,79,5,0,39,4,8,27,28,N/A,97,19,36,31,11,3,2.43\r\n,Main Avenue Elementary,Robla Elementary,Sacramento,779,4,14,0,19,1,44,2,15,4,85,0,0,36,6,8,24,30,N/A,91,19,37,28,15,1,2.41\r\n,Edith B. Storey Elementary,Fresno Unified,Fresno,779,4,5,0,32,2,55,1,5,0,100,2,2,29,23,12,26,26,N/A,66,21,34,30,11,4,2.41\r\n,Northmead Elementary,Patterson Joint Unified,Stanislaus,779,4,5,0,1,1,71,3,19,1,69,0,0,32,14,17,27,26,N/A,96,22,34,35,5,5,2.39\r\n,Davis (Caroline) Intermediate,Oak Grove Elementary,Santa Clara,779,4,5,1,19,3,61,1,9,1,67,26,4,24,39,9,N/A,N/A,27,95,29,30,21,16,5,2.38\r\n,Hendrick Ranch Elementary,Moreno Valley Unified,Riverside,779,4,20,1,2,1,68,0,7,1,81,2,2,35,8,15,28,26,N/A,90,20,36,32,10,2,2.38\r\n,Ericson Elementary,Fresno Unified,Fresno,779,4,13,1,13,0,66,0,7,0,100,3,2,28,10,9,24,27,N/A,80,22,36,31,8,3,2.34\r\n,La Canada Elementary,Lompoc Unified,Santa Barbara,779,4,5,1,3,2,72,0,13,4,79,10,1,36,11,8,20,25,N/A,96,24,39,21,11,4,2.33\r\n,Urbita Elementary,San Bernardino City Unified,San Bernardino,779,4,4,1,0,0,93,1,1,0,98,9,0,50,17,3,27,29,N/A,98,30,34,18,11,7,2.33\r\n,,Kerman Unified,Fresno,779,B,1,1,6,0,81,0,11,0,78,19,7,27,22,11,28,27,26,94,31,31,23,11,3,2.24\r\n,El Cerrito Elementary,La Habra City Elementary,Orange,779,4,2,0,0,0,92,0,7,0,84,0,0,57,1,9,26,N/A,N/A,90,34,25,31,7,4,2.23\r\n,John A. Otis Elementary,National Elementary,San Diego,779,4,1,0,2,6,90,0,1,1,100,27,0,72,8,14,21,29,N/A,90,31,31,26,10,2,2.22\r\n,San Antonio Elementary,Los Angeles Unified,Los Angeles,779,4,0,0,0,0,99,0,0,0,100,8,0,36,25,8,19,21,N/A,84,33,36,17,10,4,2.17\r\n,Ada S. Nelson Elementary,Los Nietos,Los Angeles,779,4,1,0,1,0,97,0,2,0,100,1,0,46,2,9,27,31,N/A,99,26,47,17,7,3,2.13\r\n,Della S. Lindley Elementary,Palm Springs Unified,Riverside,779,4,1,0,0,0,88,0,11,0,85,3,0,49,8,6,28,29,N/A,89,25,46,23,4,2,2.12\r\n,Myers Elementary,Rialto Unified,San Bernardino,779,4,12,0,1,0,85,0,1,1,91,15,0,37,13,8,24,26,N/A,84,35,32,23,9,2,2.1\r\nD,Animo Inglewood Charter High,Inglewood Unified,Los Angeles,779,6,19,0,0,0,80,0,0,0,88,0,0,10,23,6,,,,86,34,35,24,4,4,2.09\r\nD,ICEF Vista Middle Academy,Los Angeles Unified,Los Angeles,779,4,6,0,0,2,90,0,1,0,87,0,0,52,15,10,N/A,26,29,91,40,33,13,8,5,2.05\r\n,Ceres High,Ceres Unified,Stanislaus,779,6,2,1,6,0,64,1,25,0,73,6,4,21,23,12,N/A,N/A,29,96,34,42,14,8,2,2.02\r\n,,Firebaugh-Las Deltas Joint Uni,Fresno,779,B,1,0,0,0,92,0,7,0,89,3,21,35,38,9,24,28,26,100,45,30,15,9,2,1.94\r\n,Twentieth Street Elementary,Los Angeles Unified,Los Angeles,779,4,4,0,0,0,96,0,0,0,100,3,0,46,24,8,19,27,N/A,92,41,37,15,6,1,1.88\r\n,John J. Pershing Elementary,Madera Unified,Madera,779,4,4,0,1,0,88,0,6,1,92,0,7,41,20,6,27,31,N/A,100,43,38,15,3,2,1.84\r\nD,Camino Nuevo Elementary No. 3,Los Angeles Unified,Los Angeles,779,4,0,1,0,0,95,0,0,0,73,0,0,63,14,7,23,29,N/A,96,51,25,17,6,1,1.82\r\n,Helen Keller Elementary,Lynwood Unified,Los Angeles,779,4,7,0,0,0,92,0,0,0,94,7,3,54,22,5,30,31,N/A,98,48,31,14,5,2,1.82\r\n,Barton Hill Elementary,Los Angeles Unified,Los Angeles,779,4,11,1,1,0,85,0,2,0,100,6,0,27,27,15,16,16,N/A,90,53,25,16,5,1,1.78\r\n,Revere (Paul) Elementary,Anaheim City,Orange,779,4,1,0,1,1,93,1,3,0,94,17,0,54,31,14,28,27,N/A,3,55,20,25,0,0,1.7\r\n,,New Hope Elementary,San Joaquin,779,B,1,0,0,1,89,0,8,0,83,3,4,54,22,12,15,19,N/A,97,65,17,10,8,0,1.61\r\n,New Hope Elementary,New Hope Elementary,San Joaquin,779,4,1,0,0,1,89,0,8,0,83,3,4,54,22,12,15,19,N/A,97,65,17,10,8,0,1.61\r\n,,Blochman Union Elementary,Santa Barbara,778,B,2,2,1,0,26,2,61,2,34,4,0,2,0,4,11,8,5,98,1,13,26,42,18,3.62\r\nD,High Tech Elementary Chula Vista,SBC - High Tech High,San Diego,778,3,6,0,3,7,69,1,10,4,45,0,0,15,7,10,21,23,N/A,99,2,11,35,30,22,3.59\r\n,,Campbell Union High,Santa Clara,778,B,3,0,11,2,33,1,42,7,9,2,0,11,17,10,N/A,N/A,27,92,10,17,26,29,19,3.3\r\nD,Millennium Charter,Tracy Joint Unified,San Joaquin,778,6,7,1,7,4,48,1,28,4,3,2,0,8,21,3,N/A,N/A,22,83,10,17,25,32,16,3.27\r\n,Nipomo High,Lucia Mar Unified,San Luis Obispo,778,6,2,0,1,0,47,0,47,1,49,9,1,11,15,12,N/A,N/A,26,78,12,16,33,26,13,3.11\r\n,Lewis H. Britton Middle,Morgan Hill Unified,Santa Clara,778,4,1,0,6,2,52,0,36,0,42,26,5,23,13,11,N/A,N/A,27,91,15,19,27,24,14,3.03\r\n,,Paradise Unified,Butte,778,B,0,1,1,0,11,0,78,8,58,4,0,1,1,13,26,25,23,100,6,22,49,16,7,2.97\r\n,Redwood High,Visalia Unified,Tulare,778,6,3,2,8,0,59,0,27,1,46,17,2,8,21,8,N/A,N/A,30,93,17,23,29,20,11,2.85\r\n,Adele Harrison Middle,Sonoma Valley Unified,Sonoma,778,4,0,1,2,1,50,0,44,1,54,0,0,22,23,17,N/A,22,23,96,26,17,19,23,15,2.84\r\n,Freedom High,Liberty Union High,Contra Costa,778,6,9,0,2,5,40,1,40,3,23,10,0,6,12,12,N/A,N/A,29,97,8,36,32,19,5,2.75\r\n,San Francisco Community Alternative,San Francisco Unified,San Francisco,778,3,13,0,16,12,39,0,13,2,69,20,0,29,12,16,21,27,20,82,17,34,19,17,12,2.74\r\n,Stonegate Elementary,Washington Unified,Yolo,778,3,7,1,11,4,41,1,34,2,65,10,0,20,16,8,20,30,25,98,16,27,31,20,6,2.73\r\n,Crystal Middle,Fairfield-Suisun Unified,Solano,778,4,25,2,6,11,29,1,13,12,60,6,0,8,16,11,N/A,34,32,97,10,33,34,21,2,2.72\r\n,Vista La Mesa Academy,Lemon Grove,San Diego,778,3,19,1,7,3,52,0,12,6,100,16,0,25,11,4,29,28,28,97,12,31,38,14,5,2.71\r\n,Mt. Gleason Middle,Los Angeles Unified,Los Angeles,778,4,4,1,3,4,53,0,34,1,74,18,0,13,23,16,N/A,31,32,76,19,28,28,20,6,2.66\r\n,Lane (Warren) Elementary,Inglewood Unified,Los Angeles,778,3,82,0,0,0,16,1,0,0,96,0,0,4,1,11,26,28,N/A,97,22,21,38,15,5,2.59\r\n,Glen Yermo Elementary,Saddleback Valley Unified,Orange,778,3,0,0,1,4,69,0,23,3,59,0,0,42,6,11,24,36,N/A,86,20,32,27,16,6,2.57\r\n,Jim Maples Academy,Burton Elementary,Tulare,778,3,1,1,3,4,63,0,28,0,73,23,8,21,9,5,N/A,32,N/A,99,19,29,36,10,6,2.56\r\n,Monte Vista Elementary,Lancaster Elementary,Los Angeles,778,3,26,1,2,3,46,1,21,0,79,5,1,17,4,8,32,33,N/A,100,20,27,35,12,6,2.56\r\n,Catskill Avenue Elementary,Los Angeles Unified,Los Angeles,778,3,8,0,0,11,74,4,3,0,81,6,0,24,17,12,18,20,N/A,95,29,24,21,16,10,2.54\r\n,Bostonia Elementary,Cajon Valley Union,San Diego,778,3,11,2,1,3,40,1,40,1,73,4,0,38,7,15,23,29,N/A,90,15,39,32,12,2,2.48\r\n,Montara Elementary,Barstow Unified,San Bernardino,778,3,13,3,1,0,56,1,22,4,78,7,0,18,1,13,28,22,N/A,92,17,36,34,9,4,2.47\r\n,Ross (Betsy) Elementary,Anaheim City,Orange,778,3,1,0,3,1,90,1,4,0,89,14,0,48,33,11,26,29,N/A,11,25,28,38,8,3,2.35\r\n,Live Oak Middle,Live Oak Unified,Sutter,778,4,0,0,12,0,65,0,22,0,85,2,8,12,40,13,N/A,24,28,89,27,32,25,11,4,2.34\r\n,Panama Elementary,Panama-Buena Vista Union,Kern,778,3,7,0,13,0,63,0,16,0,71,2,0,22,16,10,28,31,N/A,37,18,48,19,15,1,2.33\r\n,Pescadero High,La Honda-Pescadero Unified,San Mateo,778,6,0,0,0,1,64,1,34,0,61,1,9,40,21,16,N/A,N/A,12,99,54,9,9,17,11,2.21\r\n,Taylor (Ida Redmond) Elementary,Santa Maria-Bonita,Santa Barbara,778,3,2,0,1,6,78,0,11,1,100,16,4,36,11,7,30,28,N/A,99,35,32,22,8,3,2.13\r\n,Hollywood Primary Center,Los Angeles Unified,Los Angeles,778,3,0,0,0,6,90,0,4,0,100,2,0,36,17,10,20,N/A,N/A,82,39,22,33,4,1,2.07\r\n,El Dorado Avenue Elementary,Los Angeles Unified,Los Angeles,778,3,1,0,1,0,96,0,1,0,100,6,0,39,24,16,18,24,N/A,72,42,26,21,8,4,2.06\r\n,Wilson Elementary,West Contra Costa Unified,Contra Costa,778,3,22,0,11,2,59,0,5,1,87,5,0,47,11,11,21,30,N/A,84,27,50,12,10,0,2.05\r\n,Fairview Elementary,Fairfield-Suisun Unified,Solano,778,3,12,1,1,4,64,0,13,4,89,3,1,41,11,12,20,25,N/A,97,33,39,20,9,0,2.05\r\n,San Ysidro Middle,San Ysidro Elementary,San Diego,778,4,1,0,0,1,97,0,1,0,84,14,1,58,30,12,,,,78,40,34,17,7,2,1.99\r\n,Van Buren Elementary,Jurupa Unified,Riverside,778,3,1,1,1,0,89,0,8,0,84,13,0,49,13,11,26,27,N/A,98,38,37,17,6,2,1.98\r\n,Parkwood Elementary,Madera Unified,Madera,778,3,3,0,2,0,90,0,4,1,93,0,8,37,19,3,27,36,N/A,100,40,33,22,3,1,1.91\r\n,Blanchard Elementary,Santa Paula Elementary,Ventura,778,3,0,0,1,0,93,0,6,0,100,11,5,43,7,11,24,29,N/A,92,33,49,16,1,1,1.9\r\n,Edison Elementary,Long Beach Unified,Los Angeles,778,3,5,0,1,0,92,0,1,0,100,0,4,56,26,5,29,32,N/A,79,45,36,12,4,3,1.83\r\n,Parkview Elementary,Mountain View Elementary,Los Angeles,778,3,0,0,4,0,96,0,1,0,99,1,11,68,13,13,29,31,N/A,99,41,43,13,2,1,1.77\r\n,Fairfax Elementary,San Bernardino City Unified,San Bernardino,778,3,16,0,1,0,73,0,6,2,96,10,0,30,12,4,27,27,N/A,64,52,26,17,5,0,1.75\r\n,Home Gardens Academy,Corona-Norco Unified,Riverside,778,3,0,0,0,0,94,0,5,0,89,1,0,52,23,10,22,30,N/A,87,49,36,10,3,2,1.73\r\n,Soto Street Elementary,Los Angeles Unified,Los Angeles,778,3,0,0,0,0,100,0,0,0,96,7,1,43,28,21,18,17,N/A,83,48,39,11,1,1,1.69\r\n,Primary Academy for Success,Los Angeles Unified,Los Angeles,778,3,1,1,0,0,96,0,1,0,100,0,1,71,13,4,21,N/A,N/A,46,53,31,14,3,0,1.67\r\n,Grass Valley Elementary,Oakland Unified,Alameda,777,3,85,0,1,0,9,1,0,4,52,38,0,1,1,11,25,26,N/A,58,1,17,45,24,13,3.3\r\n,Mattole Elementary,Mattole Unified,Humboldt,777,3,0,0,0,0,3,0,88,0,43,0,0,0,0,18,2,N/A,1,78,3,10,52,29,6,3.26\r\n,,Wheatland Union High,Yuba,777,B,2,2,3,2,28,1,55,8,32,0,0,4,9,8,N/A,N/A,26,100,5,15,49,15,16,3.21\r\n,Ramona High,Ramona City Unified,San Diego,777,6,1,1,1,1,28,0,65,2,29,0,2,5,15,8,N/A,N/A,34,90,10,15,33,27,15,3.2\r\n,Creston Elementary,Atascadero Unified,San Luis Obispo,777,3,0,0,0,0,29,0,70,1,52,2,0,23,4,6,27,32,N/A,99,10,23,22,27,17,3.19\r\nD,Golden Valley Virtual Charter,Mesa Union Elementary,Ventura,777,6,12,0,5,2,32,0,49,0,49,0,0,0,5,0,N/A,1,2,100,7,15,46,17,15,3.17\r\n,,Pacheco Union Elementary,Shasta,777,B,0,4,2,0,13,0,77,2,49,6,0,0,0,11,25,25,32,96,6,19,42,22,11,3.14\r\n,Independence High,Kern Union High,Kern,777,6,10,1,6,3,50,0,27,2,48,20,1,3,17,8,N/A,N/A,30,97,8,27,29,20,15,3.07\r\n,Eureka Senior High,Eureka City Schools,Humboldt,777,6,2,5,12,1,14,1,58,6,49,10,0,6,13,10,N/A,N/A,24,82,12,17,35,23,12,3.06\r\n,Lawrence E. Jones Middle,Cotati-Rohnert Park Unified,Sonoma,777,4,3,1,5,2,34,1,53,2,43,4,1,15,16,12,N/A,30,30,97,12,20,33,23,10,2.99\r\n,,Cotati-Rohnert Park Unified,Sonoma,777,B,2,1,4,1,38,1,49,3,42,1,1,18,13,15,29,29,28,96,11,22,34,24,9,2.98\r\n,Golden Oak Elementary,Visalia Unified,Tulare,777,3,1,2,8,1,59,0,29,0,75,9,3,11,7,5,27,31,N/A,98,8,22,41,22,7,2.97\r\n,Luther Burbank Elementary,Merced City Elementary,Merced,777,3,12,0,10,0,57,0,18,2,90,0,1,22,3,6,23,31,N/A,83,6,25,48,11,11,2.95\r\n,Meiners Oaks Elementary,Ojai Unified,Ventura,777,3,1,1,4,1,46,0,46,1,59,3,0,27,7,14,19,18,N/A,95,25,15,27,20,13,2.82\r\n,Rio Hondo Elementary,Downey Unified,Los Angeles,777,3,2,0,2,1,88,0,6,0,65,1,0,29,7,15,25,28,N/A,100,13,33,28,17,8,2.73\r\n,Winters Middle,Winters Joint Unified,Yolo,777,4,1,1,1,1,65,0,30,2,67,4,6,31,21,13,N/A,28,25,83,21,20,33,18,8,2.72\r\n,Eden Gardens Elementary,Hayward Unified,Alameda,777,3,10,0,9,13,48,5,11,3,64,0,0,25,10,10,29,29,N/A,84,11,34,34,18,3,2.68\r\n,Glen Park Elementary,San Francisco Unified,San Francisco,777,3,15,0,8,8,55,0,4,3,80,0,1,40,10,17,18,27,N/A,82,16,32,34,13,5,2.58\r\n,Foothill Oaks Elementary,Twin Rivers Unified,Sacramento,777,3,14,0,4,1,26,1,47,7,78,6,0,27,4,16,23,29,N/A,93,18,32,32,12,5,2.54\r\n,E. J. Marshall Elementary,Chino Valley Unified,San Bernardino,777,3,4,0,1,2,81,0,11,1,71,1,0,30,9,23,29,29,N/A,79,17,41,23,16,4,2.5\r\n,Cesar Chavez Middle,Oceanside Unified,San Diego,777,4,6,0,2,5,71,4,11,1,74,9,3,12,43,16,N/A,28,27,79,27,25,27,16,6,2.5\r\n,Bell Avenue Elementary,Robla Elementary,Sacramento,777,3,10,1,26,1,40,1,19,3,84,0,0,49,4,10,21,21,N/A,93,23,36,27,11,4,2.37\r\n,Hueneme Elementary,Hueneme Elementary,Ventura,777,3,7,1,4,4,63,1,19,0,72,18,2,28,10,12,28,32,N/A,100,29,28,28,13,2,2.32\r\n,,Owens Valley Unified,Inyo,777,B,0,11,0,0,38,0,30,20,55,2,0,0,3,2,4,6,5,59,3,69,23,5,0,2.31\r\n,San Juan,Aromas/San Juan Unified,San Benito,777,3,0,1,1,1,79,0,16,0,68,0,16,46,6,8,20,25,N/A,90,33,24,26,12,5,2.3\r\n,F. D. Roosevelt Elementary,Lawndale Elementary,Los Angeles,777,3,17,0,2,4,71,0,3,1,87,8,0,54,11,19,21,25,N/A,90,26,35,24,13,2,2.29\r\n,Grand View Elementary,Dinuba Unified,Tulare,777,3,1,0,2,2,87,0,9,0,100,7,4,45,11,6,25,31,N/A,88,28,34,24,11,3,2.27\r\n,Buena Vista Elementary,Palmdale Elementary,Los Angeles,777,3,19,1,1,3,71,0,4,1,84,5,1,31,13,20,22,26,N/A,95,28,35,26,9,3,2.25\r\n,Martin Luther King Jr. Elementary,Hanford Elementary,Kings,777,3,5,0,3,0,82,0,9,0,86,0,11,33,14,11,20,24,N/A,92,21,43,30,4,2,2.21\r\n,Franklin Elementary,Pasadena Unified,Los Angeles,777,3,24,0,0,1,70,0,2,1,92,6,0,38,12,18,24,35,N/A,86,30,36,20,9,5,2.21\r\n,Corvallis Middle,Norwalk-La Mirada Unified,Los Angeles,777,4,4,0,2,2,87,0,3,0,82,14,3,15,25,12,N/A,31,29,98,26,45,19,9,1,2.14\r\n,San Miguel Elementary,Los Angeles Unified,Los Angeles,777,3,0,0,0,0,99,0,0,0,83,5,1,27,22,10,19,19,N/A,20,36,35,18,9,2,2.07\r\n,Will Rogers Elementary,Lynwood Unified,Los Angeles,777,3,4,0,1,0,94,1,1,0,93,10,3,46,26,6,19,28,N/A,64,33,40,20,6,1,2.02\r\n,Greenville Junior/Senior High,Plumas Unified,Plumas,777,6,0,23,0,0,14,0,63,0,37,10,0,0,0,13,,,,99,58,8,18,8,7,1.99\r\n,Ann B. Leavenworth,Fresno Unified,Fresno,777,3,3,0,18,0,74,0,5,0,100,3,2,45,14,8,27,27,N/A,94,52,19,15,9,5,1.97\r\n,Vista del Valle Dual Language Academy,Los Angeles Unified,Los Angeles,777,3,0,0,0,0,97,0,2,0,100,8,0,41,20,10,18,24,N/A,96,42,30,18,7,2,1.96\r\nD,King-Chavez Athletics Academy,San Diego Unified,San Diego,777,3,4,0,1,0,95,0,1,0,100,3,0,78,6,4,19,27,N/A,68,40,37,15,5,3,1.94\r\nD,Edward B. Cole Academy,Santa Ana Unified,Orange,777,3,1,0,0,0,98,0,0,1,95,0,0,43,13,3,16,1,N/A,88,45,30,17,6,2,1.92\r\n,,Delhi Unified,Merced,777,B,1,0,3,0,85,0,9,0,83,0,4,38,34,10,22,25,22,90,37,45,13,5,1,1.89\r\n,,Kings River Union Elementary,Tulare,777,B,0,0,1,0,87,1,10,0,90,15,9,68,8,5,24,25,N/A,95,50,28,15,5,1,1.8\r\n,Kings River Elementary,Kings River Union Elementary,Tulare,777,3,0,0,1,0,87,1,10,0,90,15,9,68,8,5,24,25,N/A,95,50,28,15,5,1,1.8\r\n,George Washington Carver Elementary,Santa Ana Unified,Orange,777,3,0,0,0,0,99,0,0,0,98,4,4,81,12,10,27,N/A,N/A,99,55,30,12,2,1,1.64\r\nD,Alliance College-Ready Middle Academy No,Los Angeles Unified,Los Angeles,777,4,9,0,0,0,89,0,2,0,95,0,0,22,45,6,N/A,36,32,100,71,15,10,3,0,1.46\r\nD,High Tech High International,San Diego Unified,San Diego,776,6,10,0,5,4,45,0,29,6,44,0,0,5,18,13,N/A,N/A,20,76,3,15,23,30,29,3.68\r\n,Mira Monte High (Alternative),Saddleback Valley Unified,Orange,776,6,2,0,2,0,25,0,65,6,21,4,0,0,6,0,N/A,N/A,15,96,4,15,28,28,24,3.52\r\nD,View Park Preparatory Accelerated Charte,Los Angeles Unified,Los Angeles,776,4,87,1,0,0,4,0,0,5,66,0,0,1,0,6,N/A,27,30,99,2,12,49,25,11,3.31\r\n,Holtville Junior High,Holtville Unified,Imperial,776,4,1,0,0,0,90,0,7,2,99,10,27,42,23,13,N/A,31,25,3,0,20,30,50,0,3.3\r\nD,North Woods Discovery,Gateway Unified,Shasta,776,3,1,2,0,0,12,0,76,9,52,0,0,0,0,7,22,28,N/A,93,2,20,39,29,10,3.25\r\n,Two Rivers Elementary,Natomas Unified,Sacramento,776,3,14,2,9,6,29,1,31,3,46,6,0,13,4,9,30,32,N/A,91,3,27,36,24,10,3.1\r\n,Santa Teresa High,East Side Union High,Santa Clara,776,6,5,1,17,3,38,0,33,2,19,11,0,6,19,11,N/A,N/A,31,93,6,26,31,26,10,3.07\r\n,Earle E. Williams Middle,Tracy Joint Unified,San Joaquin,776,4,8,1,11,6,46,1,26,2,43,10,0,18,15,11,N/A,29,25,90,13,20,29,28,10,3.03\r\nD,Valley Charter Middle,Los Angeles Unified,Los Angeles,776,3,10,0,2,0,55,0,33,0,50,5,0,17,8,15,N/A,10,N/A,92,16,15,36,25,7,2.93\r\n,McKinley Elementary,Susanville Elementary,Lassen,776,3,5,12,1,2,18,5,57,0,51,0,0,6,1,8,25,N/A,N/A,89,4,29,44,17,6,2.92\r\n,,Bishop Unified,Inyo,776,B,0,15,1,0,32,0,43,4,44,11,0,10,13,11,23,25,21,95,14,27,36,13,10,2.79\r\n,John H. Pitman High,Turlock Unified,Stanislaus,776,6,2,0,7,1,45,0,42,1,54,10,3,15,18,7,N/A,N/A,29,99,16,29,28,17,10,2.76\r\nY,\"Dr. Theo. T. Alexander Jr., Science Cent\",Los Angeles Unified,Los Angeles,776,3,24,1,2,1,71,0,1,0,85,4,0,24,17,6,19,16,N/A,76,16,27,30,19,8,2.75\r\n,Woodrow Wallace Middle,Kernville Union Elementary,Kern,776,4,1,2,1,0,10,0,85,1,74,0,0,1,1,10,N/A,29,27,98,11,33,35,15,6,2.73\r\n,Woodrow Elementary,Sylvan Union Elementary,Stanislaus,776,3,4,0,3,0,43,2,39,8,60,1,0,16,2,25,29,25,N/A,97,6,41,34,13,5,2.71\r\n,Fort Bragg Middle,Fort Bragg Unified,Mendocino,776,4,1,2,1,0,42,0,50,4,66,8,4,13,15,7,N/A,19,20,91,13,29,40,10,8,2.7\r\n,Brentwood Elementary,Victor Elementary,San Bernardino,776,3,32,0,4,0,54,1,7,2,70,3,0,16,4,9,33,32,N/A,90,12,35,33,14,6,2.68\r\n,Plainview Avenue Elementary,Los Angeles Unified,Los Angeles,776,3,1,1,3,5,58,0,32,0,74,8,0,24,14,23,14,15,N/A,88,25,22,29,18,6,2.59\r\n,Belshaw Elementary,Antioch Unified,Contra Costa,776,3,19,1,3,2,49,1,26,0,71,2,0,20,7,6,27,30,N/A,73,11,42,29,14,4,2.58\r\n,Elverta Elementary,Elverta Joint Elementary,Sacramento,776,3,1,0,4,1,23,6,66,0,76,1,0,22,3,13,19,31,N/A,95,14,34,36,12,4,2.58\r\n,Bryant Elementary,Garden Grove Unified,Orange,776,3,1,0,11,1,82,1,4,0,70,0,0,66,13,7,25,32,N/A,18,18,39,14,28,1,2.56\r\n,Ladera Palma Elementary,La Habra City Elementary,Orange,776,3,1,0,1,2,79,0,17,1,61,0,0,50,4,9,27,N/A,N/A,87,28,25,22,16,9,2.52\r\n,John Stallings Elementary,Corona-Norco Unified,Riverside,776,3,3,1,3,2,69,1,21,1,70,2,0,28,18,10,22,24,N/A,73,26,26,30,11,7,2.47\r\n,Hawthorne Elementary,Ontario-Montclair Elementary,San Bernardino,776,3,2,0,0,0,85,0,11,1,78,5,0,41,7,13,28,28,N/A,98,20,42,20,11,7,2.45\r\n,Commonwealth Elementary,Fullerton Elementary,Orange,776,3,2,0,5,2,80,1,6,2,78,1,0,49,15,23,23,26,N/A,84,19,37,28,12,4,2.44\r\n,,Anaheim City,Orange,776,B,2,0,5,2,85,1,5,0,88,17,0,49,27,11,28,30,N/A,12,24,34,26,11,4,2.38\r\n,,Waterford Unified,Stanislaus,776,B,1,0,1,0,55,0,36,1,70,11,12,25,16,12,23,26,7,85,22,46,14,12,7,2.37\r\n,Black Butte Junior High,Black Butte Union Elementary,Shasta,776,4,1,11,0,0,10,0,77,0,47,15,0,0,0,4,N/A,1,N/A,99,6,68,17,10,0,2.31\r\n,Monte Vista Middle,South Whittier Elementary,Los Angeles,776,3,0,0,1,1,95,0,4,0,74,7,1,43,19,18,N/A,31,N/A,76,21,47,23,7,1,2.21\r\n,Rosemont Avenue Elementary,Los Angeles Unified,Los Angeles,776,3,3,0,4,12,80,0,0,0,100,5,0,35,34,12,18,20,N/A,90,35,35,12,15,3,2.15\r\n,Riverside County Special Education,Riverside County Office of Edu,Riverside,776,C,7,0,3,1,65,1,22,0,49,0,0,40,0,100,7,8,N/A,7,38,28,21,10,3,2.1\r\n,Los Arboles Elementary,Franklin-McKinley Elementary,Santa Clara,776,3,1,0,14,3,79,1,1,0,92,1,4,60,19,10,21,31,N/A,95,28,47,15,8,2,2.09\r\n,Stipe (Samuel) Elementary,Oak Grove Elementary,Santa Clara,776,3,3,0,11,3,77,1,4,0,82,13,6,59,14,10,25,34,N/A,86,37,33,17,10,2,2.08\r\n,Chaparral Elementary,Fontana Unified,San Bernardino,776,3,2,0,0,0,93,0,5,0,100,2,0,51,10,15,28,28,N/A,98,36,36,19,9,1,2.03\r\nD,Excel Charter Academy,Los Angeles Unified,Los Angeles,776,4,0,0,1,0,98,0,1,0,92,8,0,14,47,11,N/A,28,28,98,46,22,25,5,2,1.93\r\n,Sierra Linda Elementary,Oxnard,Ventura,776,3,5,1,1,1,88,0,4,0,87,0,0,46,12,11,19,22,N/A,100,41,38,14,5,2,1.89\r\n,Columbus Avenue,Los Angeles Unified,Los Angeles,776,3,3,1,1,1,91,0,2,0,88,5,0,50,24,9,20,22,N/A,86,43,35,16,4,2,1.88\r\n,Winton Middle,Winton Elementary,Merced,776,4,1,1,7,0,84,0,7,0,98,7,4,26,47,14,N/A,27,26,93,58,30,8,3,1,1.6\r\n,William H. Frazier Elementary,Fallbrook Union Elementary,San Diego,775,3,1,0,1,1,70,0,27,0,70,12,6,45,8,13,29,30,N/A,94,8,12,20,30,30,3.63\r\n,Orville Wright Middle,Los Angeles Unified,Los Angeles,775,4,58,1,4,1,24,0,13,0,62,20,0,3,6,12,N/A,27,27,47,7,16,30,32,16,3.34\r\nD,Encore High for the Performing and Visua,Hesperia Unified,San Bernardino,775,6,11,1,1,1,39,0,43,4,53,0,0,2,2,5,N/A,N/A,22,87,5,23,38,25,9,3.09\r\n,Prospect High,Campbell Union High,Santa Clara,775,6,3,0,16,2,36,1,33,9,19,5,0,17,20,12,N/A,N/A,26,99,13,25,19,26,16,3.08\r\n,Paso Robles High,Paso Robles Joint Unified,San Luis Obispo,775,6,2,1,1,1,41,0,53,1,38,13,4,12,15,12,N/A,N/A,29,81,12,20,34,23,11,3.01\r\n,Herbert Hoover High,Glendale Unified,Los Angeles,775,6,2,0,8,8,24,0,57,1,59,11,0,26,49,8,N/A,N/A,29,89,10,34,18,29,9,2.93\r\n,San Andreas Elementary,Calaveras Unified,Calaveras,775,3,0,2,2,1,12,0,82,1,62,2,0,1,1,20,24,21,N/A,82,4,38,35,16,8,2.85\r\n,Lafayette Elementary,San Diego Unified,San Diego,775,3,8,0,9,3,50,0,22,8,69,29,0,26,12,17,16,27,N/A,89,8,31,35,22,4,2.83\r\n,,Big Oak Flat-Groveland Unified,Tuolumne,775,B,1,3,1,1,21,1,68,0,56,5,0,0,0,5,19,21,9,77,6,37,37,14,6,2.77\r\n,Sankofa Academy,Oakland Unified,Alameda,775,3,77,2,2,3,9,0,1,2,72,33,0,7,1,16,21,30,N/A,53,14,28,33,19,5,2.74\r\n,Jessie Baker,Elk Grove Unified,Sacramento,775,C,28,1,16,1,34,2,17,1,77,0,0,41,0,100,,,,83,19,28,29,18,8,2.68\r\n,Millswood Middle,Lodi Unified,San Joaquin,775,4,1,0,3,1,44,0,49,1,60,23,3,20,12,10,N/A,N/A,29,76,20,29,26,16,10,2.67\r\n,Imperial Middle,La Habra City Elementary,Orange,775,4,1,0,3,1,81,0,12,1,69,12,0,20,30,8,N/A,28,29,43,21,27,29,15,8,2.61\r\n,Neil Hafley Elementary,Manteca Unified,San Joaquin,775,3,2,2,6,2,51,1,36,1,66,2,1,17,14,12,29,31,33,83,11,40,28,17,3,2.6\r\n,Thomas Page Elementary,Cotati-Rohnert Park Unified,Sonoma,775,3,3,0,1,0,53,1,38,4,67,0,2,33,9,18,31,30,N/A,97,19,30,27,19,5,2.6\r\n,South/West Park Elementary,Tracy Joint Unified,San Joaquin,775,3,4,0,10,3,69,0,11,2,68,27,0,58,8,8,25,22,N/A,83,31,22,14,24,9,2.58\r\n,,Gateway Unified,Shasta,775,B,2,9,3,0,13,0,70,3,72,4,0,2,3,13,13,20,10,95,12,36,38,9,4,2.57\r\n,Potter Valley Elementary,Potter Valley Community Unifie,Mendocino,775,3,0,3,1,0,47,0,44,5,77,0,11,29,7,9,18,20,N/A,98,19,31,36,7,7,2.53\r\n,Palm Springs High,Palm Springs Unified,Riverside,775,6,7,1,2,6,53,0,30,0,63,10,0,11,29,6,N/A,N/A,29,90,23,27,31,12,6,2.5\r\n,,Norwalk-La Mirada Unified,Los Angeles,775,B,3,0,3,3,78,1,11,1,68,14,5,15,17,11,26,30,29,97,20,37,23,14,6,2.49\r\n,Mission Elementary,Antioch Unified,Contra Costa,775,3,22,1,3,3,51,3,17,0,80,2,0,31,6,10,24,28,N/A,63,16,39,30,9,5,2.48\r\n,Washington Middle,Salinas Union High,Monterey,775,4,2,0,2,2,79,1,13,1,57,10,8,25,26,7,N/A,N/A,24,67,28,25,24,16,6,2.47\r\nD,Integrity Charter,National Elementary,San Diego,775,3,3,1,0,1,90,1,1,0,33,4,0,67,10,7,18,21,N/A,89,26,28,31,10,6,2.4\r\n,Washington,Hawthorne,Los Angeles,775,3,18,0,2,2,72,2,3,0,89,4,0,43,10,8,28,25,N/A,95,22,37,30,8,3,2.33\r\n,Susan B. Coombs Intermediate,Banning Unified,Riverside,775,3,9,4,6,0,64,0,14,1,88,7,0,16,19,8,N/A,27,N/A,90,30,31,26,11,1,2.21\r\n,Prairie Vista Middle,Hawthorne,Los Angeles,775,4,24,0,3,1,69,1,2,0,86,5,0,19,32,8,N/A,31,29,91,24,42,27,6,1,2.17\r\n,One Hundred Sixteenth Street Elementary,Los Angeles Unified,Los Angeles,775,3,31,0,1,0,68,0,0,0,100,6,0,28,18,15,17,17,N/A,30,26,47,19,7,2,2.14\r\n,Cambridge Elementary,Orange Unified,Orange,775,3,1,0,1,2,82,0,13,1,78,0,0,51,6,13,29,31,N/A,95,42,27,17,11,3,2.07\r\n,Eric White Elementary,Selma Unified,Fresno,775,3,1,0,3,0,94,0,1,0,93,1,7,55,25,13,17,29,N/A,92,39,34,16,5,6,2.04\r\n,Stanford Avenue Elementary,Los Angeles Unified,Los Angeles,775,3,0,0,0,0,99,0,1,0,100,5,1,35,29,5,19,24,N/A,68,39,34,20,6,2,1.98\r\nD,King-Chavez Arts Academy,San Diego Unified,San Diego,775,3,4,0,0,0,95,0,1,0,100,4,0,83,3,5,20,28,N/A,69,31,52,11,3,3,1.96\r\n,Fries Avenue Elementary,Los Angeles Unified,Los Angeles,775,3,2,0,0,0,96,0,1,0,88,2,0,39,27,12,19,18,N/A,86,41,35,17,4,3,1.93\r\n,Grand View Boulevard Elementary,Los Angeles Unified,Los Angeles,775,3,8,1,2,0,84,0,5,0,84,3,0,55,13,15,19,24,N/A,90,58,16,13,6,7,1.87\r\n,Sixty-Sixth Street Elementary,Los Angeles Unified,Los Angeles,775,3,9,0,0,0,90,0,0,0,92,3,0,45,28,9,21,24,N/A,19,53,19,19,7,2,1.86\r\n,Leroy L. Doig Intermediate,Garden Grove Unified,Orange,775,4,1,0,10,0,86,0,3,0,83,4,0,50,35,9,N/A,N/A,28,75,47,33,8,10,1,1.85\r\n,,Mt. Pleasant Elementary,Santa Clara,775,B,4,0,10,5,73,1,4,0,72,8,6,50,12,16,24,26,29,91,47,34,10,5,3,1.84\r\n,McKinley Elementary,Petaluma City Schools,Sonoma,775,3,3,2,1,0,83,1,11,0,98,9,3,59,24,25,N/A,16,N/A,91,43,37,16,2,2,1.83\r\n,Fernangeles Elementary,Los Angeles Unified,Los Angeles,775,3,2,0,2,0,93,0,2,0,100,4,0,57,16,10,17,18,N/A,90,52,26,14,6,2,1.8\r\n,Thurgood Marshall Elementary,Lynwood Unified,Los Angeles,775,3,2,0,0,0,97,0,0,0,84,7,2,57,23,6,28,30,N/A,91,45,36,13,5,1,1.79\r\n,Glen City Elementary,Santa Paula Elementary,Ventura,775,3,0,0,0,0,97,1,2,0,100,12,12,69,10,16,20,24,N/A,94,60,19,15,5,2,1.7\r\nD,Animo Jackie Robinson High,Los Angeles Unified,Los Angeles,775,6,3,0,0,0,96,0,0,0,97,0,0,31,57,7,N/A,N/A,24,77,59,30,8,2,1,1.58\r\n,Ricardo Lizarraga Elementary,Los Angeles Unified,Los Angeles,775,3,5,0,0,0,95,0,0,0,82,7,0,53,26,9,21,22,N/A,83,65,22,7,5,1,1.55\r\n,Clayton Valley High,Mt. Diablo Unified,Contra Costa,774,6,4,0,7,4,22,1,60,1,21,16,0,5,12,8,N/A,N/A,29,75,3,14,30,35,17,3.49\r\n,,Blue Lake Union Elementary,Humboldt,774,B,0,2,0,0,2,0,11,1,47,13,0,1,0,26,,,,96,5,19,32,32,12,3.29\r\nY,American River Charter,Black Oak Mine Unified,El Dorado,774,3,1,5,2,0,6,0,87,0,28,1,0,0,0,11,19,24,6,99,1,20,46,25,7,3.18\r\nY,Charter Home School Academy,Visalia Unified,Tulare,774,3,4,0,6,0,46,0,41,3,34,10,0,4,6,11,27,26,N/A,99,4,19,50,19,9,3.09\r\n,,New Haven Unified,Alameda,774,B,8,0,22,20,35,4,7,5,46,12,2,19,30,9,26,34,36,96,12,21,28,27,12,3.06\r\n,,Tracy Joint Unified,San Joaquin,774,B,7,0,10,6,47,1,26,4,45,4,0,24,12,10,26,29,27,86,14,19,28,28,12,3.05\r\n,Argonaut High,Amador County Unified,Amador,774,6,1,3,0,1,16,0,74,2,35,4,0,0,5,5,N/A,N/A,22,90,4,30,36,20,10,3.02\r\n,Melville S. Jacobson Elementary,Tracy Joint Unified,San Joaquin,774,3,8,0,14,6,48,1,18,5,54,0,0,39,5,16,26,28,N/A,88,14,20,31,27,8,2.94\r\n,,Central Unified,Fresno,774,B,10,1,13,1,53,0,20,1,66,6,1,12,15,8,28,31,30,94,16,24,32,19,9,2.82\r\n,Apple Valley High,Apple Valley Unified,San Bernardino,774,6,11,0,3,0,37,1,47,0,54,17,0,5,9,11,N/A,N/A,31,87,12,25,38,17,7,2.81\r\n,Elm Street Elementary,Bishop Unified,Inyo,774,3,1,16,1,0,37,0,37,5,59,10,0,23,2,4,24,N/A,N/A,97,15,28,28,16,12,2.8\r\n,Poplar Avenue Elementary,Thermalito Union Elementary,Butte,774,3,2,3,37,0,9,0,47,3,82,0,0,35,3,5,18,29,N/A,90,8,38,41,8,6,2.66\r\n,Dan Mini Elementary,Vallejo City Unified,Solano,774,3,17,0,6,27,41,2,4,1,70,1,0,30,15,12,28,30,N/A,92,14,32,31,20,3,2.65\r\n,Joe Stefani,Merced City Elementary,Merced,774,3,7,0,18,1,61,0,12,1,85,0,3,38,9,9,28,29,N/A,76,23,22,30,17,8,2.65\r\n,Los Banos High,Los Banos Unified,Merced,774,6,3,0,2,1,65,0,28,1,54,0,2,15,18,6,N/A,N/A,28,92,21,23,33,17,6,2.64\r\n,Hilmar Middle,Hilmar Unified,Merced,774,4,0,0,1,0,34,0,64,0,56,18,4,19,16,12,N/A,28,23,95,19,30,28,15,8,2.63\r\n,Pioneer Elementary,Twin Rivers Unified,Sacramento,774,3,16,2,4,1,29,0,40,7,76,13,0,19,8,11,27,31,27,96,13,34,35,14,4,2.62\r\n,Caroline Harris Elementary,Bakersfield City,Kern,774,3,12,2,1,2,58,0,24,2,80,0,1,14,6,14,20,22,N/A,65,17,35,28,12,8,2.59\r\n,Mills Middle,Folsom-Cordova Unified,Sacramento,774,4,16,1,6,2,33,1,39,2,78,6,0,22,26,12,N/A,29,32,92,18,31,30,17,4,2.58\r\n,Grizzly Hill,Twin Ridges Elementary,Nevada,774,3,1,4,1,0,4,0,54,6,92,0,0,6,0,10,17,7,4,41,17,38,24,17,3,2.52\r\n,Special Education,Mariposa County Office of Educ,Mariposa,774,C,0,0,0,0,19,0,77,3,71,0,0,0,3,100,3,N/A,4,84,19,27,42,8,4,2.5\r\n,Wolters Elementary,Fresno Unified,Fresno,774,3,18,1,16,1,49,0,13,0,100,1,1,16,9,12,23,21,N/A,51,17,35,34,9,5,2.5\r\n,Valle Verde Elementary,Greenfield Union,Kern,774,3,5,0,2,1,87,0,5,0,71,5,5,41,13,9,27,28,N/A,62,20,38,21,14,6,2.48\r\n,Winship Elementary,Winship-Robbins,Sutter,774,3,0,0,0,0,38,0,63,0,63,0,0,19,6,31,3,2,N/A,100,6,56,25,13,0,2.44\r\n,Puesta del Sol Elementary,Victor Elementary,San Bernardino,774,3,28,1,0,0,60,1,7,3,80,0,0,17,5,8,34,28,N/A,93,24,34,28,10,5,2.38\r\n,Howard Pence Elementary,South Bay Union Elementary,San Diego,774,3,2,0,2,6,86,2,3,0,100,5,0,56,11,10,19,22,N/A,95,22,37,26,14,2,2.38\r\n,Willows Intermediate,Willows Unified,Glenn,774,4,1,3,6,0,47,1,43,0,65,0,1,21,20,10,N/A,27,25,93,25,33,28,11,3,2.34\r\n,,Beardsley Elementary,Kern,774,B,2,1,1,0,34,0,60,1,82,0,0,7,5,9,26,27,21,92,24,38,27,7,4,2.31\r\n,Hamilton Elementary,Hanford Elementary,Kings,774,3,7,1,1,0,64,0,24,1,80,0,6,21,8,12,22,27,N/A,94,23,38,29,7,2,2.29\r\n,O. J. Actis Junior High,Panama-Buena Vista Union,Kern,774,4,15,1,1,2,49,0,30,1,67,11,0,5,12,10,N/A,N/A,26,71,22,43,20,14,1,2.28\r\n,Prunedale Elementary,North Monterey County Unified,Monterey,774,3,0,0,0,2,77,0,19,2,79,0,7,55,5,4,30,28,N/A,99,34,28,20,14,4,2.26\r\n,Frank E. Woodruff Elementary,Bellflower Unified,Los Angeles,774,3,15,0,3,4,69,1,6,2,85,11,0,36,13,12,30,30,N/A,93,28,31,30,9,2,2.25\r\n,Woodlawn Avenue Elementary,Los Angeles Unified,Los Angeles,774,3,0,0,0,0,99,0,1,0,100,5,0,44,25,9,20,23,N/A,92,27,42,18,8,5,2.22\r\n,,Alvord Unified,Riverside,774,B,4,0,4,2,77,0,11,1,73,7,0,43,11,11,28,30,30,95,35,29,22,9,4,2.19\r\n,South Valley Middle,Gilroy Unified,Santa Clara,774,4,1,0,1,1,86,0,9,1,79,9,2,26,32,12,N/A,24,28,83,35,32,20,11,3,2.15\r\n,Rosa Parks Elementary,San Diego Unified,San Diego,774,3,3,0,11,0,84,0,1,0,100,18,0,78,8,12,19,28,N/A,75,31,42,15,9,4,2.13\r\n,Glenwood Elementary,Los Angeles Unified,Los Angeles,774,3,1,0,1,1,95,0,2,0,100,7,1,43,23,17,17,24,N/A,76,38,33,17,10,2,2.06\r\n,Anna Kyle Elementary,Fairfield-Suisun Unified,Solano,774,3,12,0,1,5,74,0,3,4,93,2,2,54,13,8,19,25,N/A,100,31,42,18,8,1,2.05\r\n,Baker Elementary,Baker Valley Unified,San Bernardino,774,3,0,0,0,0,80,0,20,0,72,0,0,48,6,2,25,26,N/A,78,24,61,8,4,4,2.04\r\n,Mildred Goss Elementary,Alum Rock Union Elementary,Santa Clara,774,3,1,0,6,3,88,1,1,0,100,5,2,57,22,14,19,29,N/A,91,33,43,16,7,2,2.04\r\n,Mission Elementary,Ontario-Montclair Elementary,San Bernardino,774,3,5,0,1,0,89,0,2,2,82,3,0,58,9,12,18,22,N/A,93,35,39,17,6,3,2.03\r\n,Valerio Street Elementary,Los Angeles Unified,Los Angeles,774,3,3,1,3,3,88,0,2,0,100,4,0,39,24,11,21,25,N/A,89,39,37,15,7,2,1.98\r\nD,Aspire Monarch Academy,Oakland Unified,Alameda,774,3,8,0,1,0,87,1,0,0,91,0,0,61,27,8,22,30,N/A,83,31,49,12,5,2,1.97\r\n,San Vicente Elementary,Soledad Unified,Monterey,774,3,0,0,0,0,98,0,2,0,93,0,1,72,12,14,17,23,N/A,99,47,27,14,7,6,1.96\r\n,Aragon Avenue Elementary,Los Angeles Unified,Los Angeles,774,3,1,1,1,1,96,0,0,0,93,6,0,44,22,19,19,24,N/A,83,37,35,24,3,0,1.95\r\n,Strathmore Elementary,Strathmore Union Elementary,Tulare,774,3,0,1,0,0,86,0,11,0,92,4,19,40,18,4,20,25,28,100,46,26,23,4,1,1.87\r\n,Jerry D. Holland Middle,Baldwin Park Unified,Los Angeles,774,4,0,1,3,1,89,0,6,0,99,8,1,18,33,18,N/A,16,18,70,42,40,11,4,2,1.84\r\n,Nelson Elementary,Hacienda la Puente Unified,Los Angeles,774,3,1,0,3,0,95,0,1,0,93,5,1,35,13,13,20,26,N/A,64,43,41,12,4,0,1.78\r\n,E. Neal Roberts Elementary,San Bernardino City Unified,San Bernardino,774,3,13,0,1,0,83,0,3,0,95,7,0,56,8,7,19,23,N/A,73,49,36,9,4,1,1.72\r\n,Jefferson Elementary,Fresno Unified,Fresno,774,3,4,0,12,0,82,0,1,0,100,3,4,41,24,9,24,28,N/A,91,56,27,11,4,2,1.7\r\n,George De La Torre Jr. Elementary,Los Angeles Unified,Los Angeles,774,3,2,1,0,0,96,0,1,0,100,5,0,39,28,10,19,18,N/A,77,51,34,10,3,1,1.68\r\n,Raymond A. Villa Fundamental Intermediat,Santa Ana Unified,Orange,774,4,0,0,2,0,97,0,1,0,92,16,3,43,42,8,N/A,38,37,98,63,22,11,3,1,1.58\r\n,,Yosemite Unified,Madera,773,B,1,5,1,0,14,0,73,5,41,10,0,0,2,13,11,21,15,92,4,14,34,31,17,3.45\r\n,,Tres Pinos Union Elementary,San Benito,773,B,0,1,0,0,29,0,65,5,5,0,0,5,2,14,20,24,N/A,93,4,22,32,35,7,3.18\r\n,Tres Pinos Elementary,Tres Pinos Union Elementary,San Benito,773,3,0,1,0,0,29,0,65,5,5,0,0,5,2,14,20,24,N/A,93,4,22,32,35,7,3.18\r\n,Louis A. Bohn Elementary,Tracy Joint Unified,San Joaquin,773,3,11,1,8,5,43,2,29,2,48,0,0,18,5,17,28,30,N/A,88,11,16,32,33,8,3.1\r\n,Tracy High,Tracy Joint Unified,San Joaquin,773,6,5,1,8,4,38,1,41,3,31,4,0,14,12,9,N/A,N/A,28,78,14,16,31,26,13,3.09\r\n,Charter Oak High,Charter Oak Unified,Los Angeles,773,6,3,1,4,2,61,0,25,4,36,9,0,3,14,8,N/A,N/A,32,91,6,25,36,24,8,3.04\r\n,Dent Elementary,Escalon Unified,San Joaquin,773,3,0,0,2,1,39,0,55,3,46,3,3,30,3,14,21,24,N/A,97,8,28,34,14,16,3.02\r\n,Eagle Rock High,Los Angeles Unified,Los Angeles,773,6,2,0,6,23,60,0,9,0,69,30,0,9,24,10,N/A,N/A,32,81,13,24,25,29,9,2.97\r\n,Modoc High,Modoc Joint Unified,Modoc,773,6,2,6,1,1,17,0,71,3,37,6,4,0,8,1,N/A,N/A,19,94,9,24,43,16,9,2.91\r\n,Sylvan Middle,San Juan Unified,Sacramento,773,4,7,1,2,1,23,1,62,2,70,5,0,8,10,16,N/A,30,26,65,10,36,24,25,4,2.76\r\n,Garnet J. Robertson Intermediate,Bayshore Elementary,San Mateo,773,4,9,0,20,32,28,6,3,0,76,0,0,5,34,9,N/A,17,N/A,87,13,33,29,22,3,2.69\r\n,Endeavour Middle,Lancaster Elementary,Los Angeles,773,4,27,0,1,1,42,0,27,1,64,17,0,7,8,9,N/A,33,22,100,20,24,32,17,8,2.68\r\n,Ernest P. Willenberg Special Education C,Los Angeles Unified,Los Angeles,773,C,16,2,5,8,50,2,17,2,73,0,0,33,0,100,4,5,9,76,21,25,26,23,6,2.68\r\n,Northview High,Covina-Valley Unified,Los Angeles,773,6,4,1,2,4,80,0,9,0,67,6,0,8,21,11,N/A,N/A,31,96,15,30,32,17,5,2.67\r\n,San Rafael High,San Rafael City High,Marin,773,6,2,0,5,1,59,0,30,1,55,20,0,26,34,11,N/A,N/A,24,92,35,18,12,20,15,2.62\r\n,San Diego Early/Middle College,San Diego Unified,San Diego,773,6,11,0,0,0,76,0,11,2,98,23,0,10,45,2,N/A,N/A,19,93,31,22,16,20,12,2.6\r\n,Central Union High,Central Union High,Imperial,773,6,3,0,1,0,91,0,4,0,67,3,8,26,29,7,N/A,N/A,30,90,24,31,20,15,10,2.57\r\n,Northview Intermediate,Duarte Unified,Los Angeles,773,4,8,0,2,7,72,0,8,2,67,8,1,16,22,13,N/A,6,29,95,20,32,24,19,5,2.57\r\n,Shoreline Middle,Live Oak Elementary,Santa Cruz,773,4,3,1,2,3,57,1,32,1,64,0,0,18,25,20,N/A,25,23,88,22,29,28,15,6,2.55\r\n,Walton Development Center,Stockton Unified,San Joaquin,773,C,7,0,15,2,53,0,20,0,90,0,3,41,14,100,4,9,N/A,78,33,22,15,20,11,2.54\r\n,Meadows Elementary,Meadows Union Elementary,Imperial,773,3,2,0,0,0,90,0,8,0,100,0,15,51,24,9,19,20,N/A,99,16,41,26,11,6,2.5\r\n,Fletcher Elementary,Orange Unified,Orange,773,3,2,0,4,1,70,2,21,0,58,0,0,39,4,16,28,29,N/A,87,26,28,26,15,7,2.49\r\n,\"Clayton A. Record, Jr., Elementary\",San Jacinto Unified,Riverside,773,3,10,2,1,1,59,0,25,2,72,4,0,22,5,18,25,26,N/A,98,17,33,39,6,5,2.49\r\n,,Meadows Union Elementary,Imperial,773,B,2,0,0,0,90,0,8,0,100,0,15,51,24,10,19,20,N/A,99,16,41,26,11,6,2.49\r\n,Kit Carson Elementary,Lawndale Elementary,Los Angeles,773,3,17,0,5,0,73,1,2,2,86,0,0,64,0,10,23,N/A,N/A,96,19,41,20,14,5,2.45\r\n,Dale Junior High,Anaheim Union High,Orange,773,4,4,0,8,3,71,2,12,0,81,8,0,33,36,11,N/A,N/A,35,9,25,31,24,14,5,2.42\r\n,Whittier High,Whittier Union High,Los Angeles,773,6,1,0,1,1,88,0,9,0,72,0,0,11,24,8,N/A,N/A,32,94,26,31,28,9,6,2.37\r\n,,Arena Union Elementary,Mendocino,773,B,0,10,1,0,48,0,39,3,75,0,1,26,8,10,4,1,1,94,28,29,28,9,6,2.35\r\n,Arena Elementary,Arena Union Elementary,Mendocino,773,3,0,10,1,0,48,0,39,3,75,0,1,26,8,10,4,2,1,94,28,29,28,9,6,2.35\r\n,Robert F. Kennedy Elementary,Franklin-McKinley Elementary,Santa Clara,773,3,0,0,34,5,57,1,1,1,88,21,1,56,28,5,23,32,N/A,95,24,42,15,14,6,2.34\r\n,William Sheppard Middle,Alum Rock Union Elementary,Santa Clara,773,4,3,0,28,10,55,1,2,0,100,25,1,26,44,14,N/A,28,28,93,33,27,20,17,4,2.32\r\n,,El Rancho Unified,Los Angeles,773,B,0,0,0,0,98,0,1,0,69,10,1,22,22,11,23,27,27,95,25,36,27,8,3,2.29\r\n,Chaparral Elementary,Palmdale Elementary,Los Angeles,773,3,16,0,1,1,74,0,6,1,90,14,1,31,14,10,28,28,N/A,93,24,37,29,7,3,2.28\r\n,,Santa Rita Union Elementary,Monterey,773,B,2,0,3,5,72,0,17,0,70,0,3,37,18,12,27,27,27,90,29,36,19,13,3,2.27\r\n,Raffaello Palla Elementary,Greenfield Union,Kern,773,3,10,0,0,1,80,0,7,1,81,5,4,40,16,8,29,28,N/A,48,22,40,27,8,2,2.27\r\n,Johnson Park Elementary,Marysville Joint Unified,Yuba,773,3,2,1,5,1,59,0,29,2,87,2,1,40,4,13,19,27,N/A,82,30,31,29,7,4,2.25\r\n,Roeding Elementary,Fresno Unified,Fresno,773,3,12,0,3,0,75,0,8,0,100,14,0,18,12,9,27,30,N/A,71,22,42,30,3,2,2.21\r\n,Almaden Elementary,San Jose Unified,Santa Clara,773,3,5,1,3,2,81,0,7,0,84,1,1,60,10,10,28,29,N/A,79,38,27,19,9,7,2.2\r\nY,Bowling Green Elementary,Sacramento City Unified,Sacramento,773,3,12,1,16,2,60,3,5,2,99,7,0,56,9,11,22,26,N/A,75,33,33,20,8,5,2.19\r\n,Lincoln Elementary,Vallejo City Unified,Solano,773,3,37,1,1,3,41,4,12,1,84,0,0,26,7,13,23,28,N/A,94,24,50,18,6,1,2.09\r\n,Edward L. Wenzlaff Elementary,Palm Springs Unified,Riverside,773,3,14,0,1,0,57,1,26,0,89,4,0,31,4,9,27,29,N/A,86,29,43,22,5,2,2.08\r\n,Del Norte Elementary,Ontario-Montclair Elementary,San Bernardino,773,3,4,0,0,0,93,0,1,1,92,6,0,58,7,6,20,23,N/A,99,36,38,13,7,5,2.07\r\n,Nicolas Junior High,Fullerton Elementary,Orange,773,4,2,0,3,2,83,0,9,1,80,4,0,32,30,13,N/A,N/A,26,73,38,33,19,8,2,2.02\r\n,Pacific Drive Elementary,Fullerton Elementary,Orange,773,3,2,0,4,1,78,0,9,2,76,2,0,47,10,14,25,28,N/A,96,32,47,16,5,1,1.96\r\n,Juniper Elementary,Escondido Union,San Diego,773,3,2,0,1,1,87,0,9,0,89,10,2,68,7,9,23,29,N/A,70,45,30,16,7,3,1.91\r\n,Mulcahy Middle,Tulare City,Tulare,773,4,5,0,2,0,85,0,7,0,93,12,12,30,26,8,N/A,29,21,92,46,30,18,3,2,1.85\r\n,Boyd Elementary,Rialto Unified,San Bernardino,773,3,5,0,1,0,92,0,2,0,91,13,0,47,16,10,18,32,N/A,89,46,33,13,7,1,1.84\r\nD,Alliance William and Carol Ouchi Academy,Los Angeles Unified,Los Angeles,773,6,13,0,0,0,86,0,0,0,93,0,0,23,50,5,N/A,N/A,28,98,51,27,13,6,3,1.84\r\nD,Aspire Inskeep Academy Charter,Los Angeles Unified,Los Angeles,773,3,11,0,0,0,88,0,0,0,90,0,0,49,20,15,21,31,N/A,91,49,32,14,3,3,1.79\r\n,Burroughs Elementary,Fresno Unified,Fresno,773,3,1,0,5,0,93,0,1,0,100,1,7,40,15,10,20,19,N/A,100,51,32,15,1,1,1.68\r\n,Walker Elementary,Santa Ana Unified,Orange,773,3,0,0,6,1,93,0,0,0,96,5,5,77,12,12,26,30,N/A,99,57,25,12,3,1,1.66\r\n,Muscoy Elementary,San Bernardino City Unified,San Bernardino,773,3,3,0,2,0,93,0,2,0,95,5,0,64,11,9,28,30,N/A,62,59,27,7,5,2,1.64\r\nD,Escuela Popular/Center for Training and,East Side Union High,Santa Clara,773,B,0,0,0,0,99,0,1,0,0,0,0,90,4,0,,,,100,79,13,2,4,1,1.35\r\n,San Geronimo Valley Elementary,Lagunitas Elementary,Marin,772,3,6,0,0,0,6,0,88,0,13,0,0,0,0,25,18,20,N/A,100,0,0,19,31,50,4.31\r\n,Lakeshore Alternative Elementary,San Francisco Unified,San Francisco,772,3,19,0,39,5,11,2,15,4,53,14,0,24,13,15,21,26,N/A,79,8,21,28,31,12,3.18\r\n,Serra High,San Diego Unified,San Diego,772,6,10,0,9,3,43,1,28,5,57,28,0,7,27,8,N/A,N/A,9,90,12,21,29,22,15,3.06\r\n,John Muir Middle,San Jose Unified,Santa Clara,772,4,6,1,12,3,50,0,26,1,50,22,0,13,21,11,N/A,29,27,92,15,20,28,25,12,2.99\r\n,,Kingsburg Joint Union High,Fresno,772,B,0,0,4,0,56,0,36,3,26,0,0,4,23,7,N/A,N/A,24,93,15,21,29,22,12,2.95\r\n,Lichen K-8,San Juan Unified,Sacramento,772,3,3,1,3,1,26,1,64,0,66,2,0,17,7,11,30,31,25,61,11,25,36,20,8,2.89\r\nD,Holly Drive Leadership Academy,San Diego Unified,San Diego,772,3,44,0,3,0,46,1,0,7,99,5,0,30,10,18,21,20,N/A,76,15,30,21,20,14,2.88\r\n,J. C. Crumpton Elementary,Monterey Peninsula Unified,Monterey,772,3,13,0,6,5,40,5,19,12,72,2,0,22,4,15,22,28,N/A,100,12,31,30,17,10,2.82\r\n,Highlands Elementary,La Mesa-Spring Valley,San Diego,772,3,12,0,0,1,52,1,26,8,66,11,0,23,5,18,28,33,N/A,98,12,30,34,15,9,2.8\r\n,John and Jacquelyn Miller Elementary,Lancaster Elementary,Los Angeles,772,3,31,0,2,3,37,0,24,1,69,9,0,11,5,12,30,28,N/A,99,15,28,36,17,4,2.68\r\n,Ramon S. Tafoya Elementary,Woodland Joint Unified,Yolo,772,3,1,0,10,2,66,1,16,2,70,12,2,36,17,12,32,31,N/A,91,19,29,25,17,9,2.67\r\n,Dana Gray Elementary,Fort Bragg Unified,Mendocino,772,3,0,1,1,0,43,0,49,5,65,0,2,21,15,6,21,24,N/A,88,15,30,38,9,8,2.65\r\n,Lincoln (Abraham) High,San Francisco Unified,San Francisco,772,6,6,0,61,5,17,0,6,1,57,25,0,26,33,12,N/A,N/A,27,76,18,34,20,22,6,2.63\r\n,Thomas R. Pollicita Middle,Jefferson Elementary,San Mateo,772,4,3,0,7,40,43,1,2,3,59,5,0,28,19,9,N/A,25,25,84,14,33,29,23,0,2.62\r\n,Lark Ellen Elementary,Covina-Valley Unified,Los Angeles,772,3,2,1,3,3,84,1,4,1,78,8,0,28,8,15,20,24,N/A,99,19,30,31,15,5,2.59\r\n,,Lompoc Unified,Santa Barbara,772,B,4,1,2,1,59,0,28,5,62,10,1,21,14,10,20,24,26,94,22,30,27,13,9,2.58\r\n,Suisun Elementary,Fairfield-Suisun Unified,Solano,772,3,25,1,7,9,41,0,11,5,77,3,0,22,9,13,19,24,N/A,99,11,39,34,15,1,2.57\r\n,Letha Raney Intermediate,Corona-Norco Unified,Riverside,772,4,4,0,6,2,62,1,24,1,58,16,0,12,32,13,N/A,36,27,100,25,26,24,16,8,2.55\r\n,Calimesa Elementary,Yucaipa-Calimesa Joint Unified,San Bernardino,772,3,1,1,1,0,45,0,50,3,69,2,0,20,2,8,21,33,N/A,97,16,30,42,9,3,2.52\r\n,Oceanside High,Oceanside Unified,San Diego,772,6,8,0,1,2,61,3,22,0,59,9,4,15,28,11,N/A,N/A,21,79,24,26,32,14,5,2.5\r\n,,Live Oak Unified,Sutter,772,B,0,1,13,0,62,0,23,0,80,3,8,17,32,11,26,24,26,85,24,32,27,12,5,2.44\r\n,Oakley Elementary,Oakley Union Elementary,Contra Costa,772,3,5,0,1,1,66,1,23,4,81,0,2,35,8,16,26,26,N/A,99,20,34,35,8,3,2.39\r\n,Fairmead Elementary,Chowchilla Elementary,Madera,772,3,2,1,1,0,62,0,34,0,83,5,5,17,21,10,N/A,27,N/A,91,28,28,27,12,5,2.38\r\n,,Robla Elementary,Sacramento,772,B,13,0,19,1,45,2,17,2,83,4,0,45,6,13,22,27,N/A,92,22,35,28,13,2,2.38\r\n,Monte Vista Middle,San Jacinto Unified,Riverside,772,4,10,1,1,1,70,1,14,2,79,6,0,17,19,11,N/A,29,30,93,25,34,27,9,5,2.36\r\n,,Twin Ridges Elementary,Nevada,772,B,1,4,1,0,4,0,54,5,90,0,0,5,0,14,17,7,4,43,29,31,23,14,3,2.31\r\n,Kornblum,Hawthorne,Los Angeles,772,3,36,0,1,1,59,1,1,0,83,3,0,42,3,13,27,32,N/A,91,21,39,31,8,1,2.29\r\n,Fremont Elementary,Riverside Unified,Riverside,772,3,7,1,1,0,79,0,9,0,88,7,0,33,15,12,28,31,N/A,97,33,29,25,9,4,2.22\r\n,Caruthers Elementary,Caruthers Unified,Fresno,772,3,0,1,9,0,76,0,14,1,87,12,19,45,23,8,18,19,21,100,37,28,20,8,7,2.21\r\n,Maxwell Elementary,Maxwell Unified,Colusa,772,3,1,3,1,0,52,0,41,0,65,10,6,36,6,12,22,24,18,91,36,29,19,11,4,2.19\r\n,Dingle Elementary,Woodland Joint Unified,Yolo,772,3,2,0,2,0,77,0,18,1,83,15,4,36,19,9,29,27,N/A,89,36,26,25,9,4,2.19\r\n,Sequoia Elementary,Manteca Unified,San Joaquin,772,3,3,1,2,1,73,1,18,2,85,3,1,29,17,8,31,31,29,97,30,39,21,9,2,2.13\r\n,Live Oak Elementary,Fontana Unified,San Bernardino,772,3,2,0,0,0,96,0,2,0,100,4,0,54,20,13,23,29,N/A,87,35,38,17,6,4,2.06\r\n,Anderson Valley Elementary,Anderson Valley Unified,Mendocino,772,3,1,0,0,0,74,0,25,1,81,0,13,62,7,10,22,20,N/A,91,35,41,15,7,2,2.01\r\n,Clarence Ruth Elementary,Lompoc Unified,Santa Barbara,772,3,3,0,1,0,85,0,8,2,85,8,2,45,16,6,22,28,N/A,98,38,36,18,6,2,1.97\r\n,J. E. Van Wig Elementary,Bassett Unified,Los Angeles,772,3,1,0,1,1,95,0,1,0,91,5,0,38,13,8,23,30,N/A,97,37,40,15,8,0,1.96\r\n,Lincoln Elementary,Ontario-Montclair Elementary,San Bernardino,772,C,4,1,2,1,89,0,2,1,85,3,0,58,13,38,18,20,N/A,97,43,35,13,5,4,1.9\r\n,El Camino Real Elementary,Arvin Union Elementary,Kern,772,3,0,0,1,0,96,0,3,0,88,3,17,68,17,9,25,30,N/A,97,47,29,16,6,2,1.86\r\n,McPherson Elementary,Napa Valley Unified,Napa,772,3,0,0,0,0,91,0,8,0,88,0,7,59,26,8,28,30,N/A,98,42,40,11,5,2,1.85\r\n,Sierra Vista Middle,Hacienda la Puente Unified,Los Angeles,772,4,2,0,2,2,92,0,2,0,88,11,2,15,35,13,N/A,11,30,81,44,38,14,5,0,1.8\r\nD,Para Los Ninos Charter,Los Angeles Unified,Los Angeles,772,3,0,0,0,0,100,0,0,0,95,0,0,80,9,9,24,24,N/A,95,55,22,13,7,2,1.79\r\n,Centinela Elementary,Inglewood Unified,Los Angeles,772,3,10,0,0,0,90,0,0,0,96,0,0,27,0,15,30,31,N/A,98,52,29,13,3,3,1.77\r\n,Oak View Elementary,Ocean View,Orange,772,3,0,0,0,0,99,0,0,0,78,1,0,77,20,10,23,29,N/A,98,75,21,5,0,0,1.3\r\n,Ocean View High,Huntington Beach Union High,Orange,772,6,2,5,8,1,55,1,26,1,52,9,0,18,33,11,N/A,N/A,28,0,0,0,0,0,0,\r\n,Open Alternative,Santa Barbara Unified,Santa Barbara,771,3,0,0,3,0,28,0,55,15,33,1,0,12,0,26,23,27,N/A,97,0,7,18,43,32,3.99\r\nY,Charter Montessori Blue Oak Campus,Buckeye Union Elementary,El Dorado,771,3,1,0,3,3,21,0,69,4,27,1,0,4,3,12,22,N/A,N/A,96,1,8,34,36,20,3.66\r\nD,FAME Public Charter,Alameda County Office of Educa,Alameda,771,3,10,1,21,2,12,1,50,0,37,0,0,23,16,7,15,19,3,85,6,13,25,30,25,3.56\r\n,Westwood Elementary,Mt. Diablo Unified,Contra Costa,771,3,3,0,5,5,40,3,41,3,49,3,0,23,9,18,23,22,N/A,57,4,17,35,28,16,3.35\r\nD,Pacific Community Charter,Arena Union Elementary,Mendocino,771,3,0,0,0,0,22,0,62,15,53,1,0,5,0,3,4,1,N/A,95,4,16,37,31,11,3.3\r\n,Blue Lake Elementary,Blue Lake Union Elementary,Humboldt,771,3,0,2,0,0,2,0,10,1,46,13,0,1,0,25,,,,96,5,19,32,32,12,3.29\r\n,C. K. McClatchy High,Sacramento City Unified,Sacramento,771,6,9,1,22,1,34,1,25,7,55,22,0,15,18,7,N/A,N/A,30,92,17,25,21,21,16,2.92\r\n,Diamond View Middle,Susanville Elementary,Lassen,771,4,3,11,2,2,15,3,63,0,49,3,0,3,4,8,N/A,32,23,88,4,25,52,14,5,2.9\r\n,John Swett High,John Swett Unified,Contra Costa,771,6,15,0,10,10,30,0,25,9,45,7,0,11,14,11,N/A,N/A,21,96,10,37,25,23,5,2.78\r\n,Conyer Elementary,Visalia Unified,Tulare,771,3,3,2,1,0,61,1,31,2,74,12,1,9,3,17,27,28,N/A,98,12,26,40,17,5,2.77\r\n,Stella Brockman Elementary,Manteca Unified,San Joaquin,771,3,7,1,6,4,51,1,29,1,64,4,0,17,13,13,26,30,28,90,10,38,26,21,6,2.76\r\n,Whitethorn Elementary,Southern Humboldt Joint Unifie,Humboldt,771,3,0,2,4,0,0,0,95,0,36,0,0,0,0,5,13,9,N/A,56,10,35,26,29,0,2.74\r\n,Red Bluff High,Red Bluff Joint Union High,Tehama,771,6,1,2,1,1,25,0,67,1,48,0,0,2,2,11,N/A,N/A,25,3,8,42,31,8,12,2.73\r\n,,Winters Joint Unified,Yolo,771,B,0,0,1,0,62,0,36,1,63,5,5,34,17,13,25,26,23,87,23,20,28,18,10,2.72\r\n,Salinas High,Salinas Union High,Monterey,771,6,2,1,4,3,62,1,28,0,40,7,8,16,22,9,N/A,N/A,19,77,23,23,26,18,10,2.7\r\n,,Briggs Elementary,Ventura,771,B,0,0,0,0,84,0,15,0,70,2,3,27,17,8,25,31,N/A,90,14,35,28,12,11,2.7\r\n,,Fort Bragg Unified,Mendocino,771,B,1,2,1,0,41,0,50,5,64,2,3,17,15,7,20,21,18,89,16,28,38,9,9,2.67\r\n,Sultana High,Hesperia Unified,San Bernardino,771,6,7,0,0,1,55,0,35,0,62,7,0,14,12,10,N/A,N/A,30,92,17,29,34,13,7,2.63\r\n,Aloha Elementary,ABC Unified,Los Angeles,771,3,22,0,4,6,55,3,5,3,84,8,5,22,13,13,26,30,N/A,91,19,30,32,16,2,2.53\r\n,Four Creeks Elementary,Visalia Unified,Tulare,771,3,3,1,4,1,78,0,10,3,100,9,3,25,9,8,28,32,N/A,94,18,31,35,13,3,2.52\r\n,Chula Vista Middle,Sweetwater Union High,San Diego,771,4,3,1,1,3,87,0,5,0,77,15,0,26,31,9,N/A,N/A,30,84,23,30,29,12,6,2.49\r\n,La Sierra High,Alvord Unified,Riverside,771,6,6,0,5,3,68,1,16,2,61,9,0,24,21,9,N/A,N/A,30,97,26,28,28,12,5,2.42\r\n,Palma Ceia Elementary,Hayward Unified,Alameda,771,3,9,0,9,15,56,5,4,1,78,0,0,35,23,9,29,27,N/A,76,16,44,26,13,1,2.39\r\n,Ayer Elementary,Fresno Unified,Fresno,771,3,18,0,14,1,62,0,4,0,100,23,2,26,15,10,25,30,N/A,69,22,33,35,7,4,2.37\r\n,Belleview Elementary,Porterville Unified,Tulare,771,3,1,1,1,1,74,0,21,1,78,0,2,24,4,3,23,31,N/A,99,32,24,28,9,7,2.34\r\n,Oceano Elementary,Lucia Mar Unified,San Luis Obispo,771,3,2,0,0,0,75,0,19,1,85,1,1,59,2,15,24,26,N/A,66,33,25,22,16,4,2.31\r\n,University Heights Middle,Riverside Unified,Riverside,771,4,12,1,2,1,73,1,10,0,86,7,0,20,25,13,N/A,N/A,28,94,36,27,25,7,4,2.16\r\n,Laguna Nueva,Montebello Unified,Los Angeles,771,3,0,2,0,0,98,0,0,0,100,8,0,29,46,7,22,29,32,95,32,41,16,8,3,2.1\r\n,Calistoga Junior-Senior High,Calistoga Joint Unified,Napa,771,6,1,0,0,0,74,0,23,0,68,17,33,33,31,11,N/A,N/A,21,76,46,24,12,16,2,2.05\r\n,Hillside Elementary,Los Angeles Unified,Los Angeles,771,3,2,0,9,0,88,0,2,0,100,5,0,35,20,14,17,20,N/A,92,34,41,15,8,2,2.05\r\n,Grapevine Elementary,Vista Unified,San Diego,771,3,4,0,0,1,82,3,9,2,85,0,1,50,13,14,24,29,N/A,83,36,37,19,6,2,2.03\r\n,Taylor Mountain Elementary,Bellevue Union Elementary,Sonoma,771,3,3,2,2,0,82,0,10,0,92,5,7,71,7,11,21,28,N/A,92,33,42,17,6,2,2.03\r\n,Hope Street Elementary,Los Angeles Unified,Los Angeles,771,3,1,0,0,0,99,0,1,0,100,7,0,41,21,8,20,21,N/A,80,48,21,21,6,4,1.99\r\n,Coral Mountain Academy,Coachella Valley Unified,Riverside,771,3,0,0,0,0,98,0,1,0,98,7,7,64,10,7,26,26,N/A,98,38,39,17,4,2,1.93\r\n,Williams Upper Elementary,Williams Unified,Colusa,771,3,1,0,1,0,87,0,10,0,84,0,10,41,37,11,N/A,24,N/A,88,47,35,9,4,5,1.86\r\n,Palm Lane Elementary,Anaheim City,Orange,771,3,4,0,6,1,84,1,3,1,93,11,0,45,33,8,28,30,N/A,1,33,50,17,0,0,1.83\r\n,Victoria Avenue Elementary,Los Angeles Unified,Los Angeles,771,3,1,1,0,0,98,0,0,0,88,9,1,45,21,7,20,20,N/A,17,54,20,21,4,1,1.79\r\n,Charles H. Castle Elementary,Panama-Buena Vista Union,Kern,771,3,24,1,2,1,55,0,16,0,90,1,0,12,9,11,27,24,N/A,41,44,41,13,3,0,1.75\r\n,Park Avenue Elementary,Yuba City Unified,Sutter,771,3,1,1,1,0,87,0,8,2,100,2,9,51,25,9,20,20,N/A,95,48,38,9,2,2,1.74\r\n,Caswell Elementary,Ceres Unified,Stanislaus,771,3,1,1,2,0,85,2,8,1,97,2,14,60,6,10,22,32,N/A,99,52,34,9,3,1,1.66\r\nD,Keegan Academy,Temecula Valley Unified,Riverside,770,3,3,0,0,5,24,0,56,13,16,0,0,1,0,15,15,21,N/A,95,1,7,37,29,26,3.72\r\n,,Northern Humboldt Union High,Humboldt,770,B,2,5,2,0,9,0,67,7,23,1,0,2,1,14,6,11,16,95,6,20,25,27,23,3.42\r\nD,Mountain Peak Charter,Mountain Empire Unified,San Diego,770,3,4,1,3,0,45,1,48,0,39,0,0,8,4,8,15,10,2,97,6,15,36,23,20,3.36\r\n,Pacheco Elementary,Pacheco Union Elementary,Shasta,770,4,0,6,2,0,12,0,78,1,48,8,0,0,0,9,N/A,25,32,97,7,21,41,21,11,3.08\r\n,Saticoy Elementary,Ventura Unified,Ventura,770,3,3,0,0,0,68,0,25,3,68,4,0,23,1,7,24,30,N/A,99,11,15,39,24,10,3.08\r\n,Paradise Senior High,Paradise Unified,Butte,770,6,1,1,1,0,9,0,84,4,52,8,0,0,0,17,N/A,N/A,26,100,5,21,46,20,8,3.05\r\n,Harbor High,Santa Cruz City High,Santa Cruz,770,6,2,1,3,2,46,0,43,3,44,14,4,13,25,9,N/A,N/A,27,91,16,21,23,27,13,3\r\n,,Rohnerville Elementary,Humboldt,770,B,2,3,0,0,17,0,72,5,47,9,0,10,4,23,25,26,18,91,8,27,33,21,10,2.97\r\n,Valentine Peyton Elementary,Stockton Unified,San Joaquin,770,3,21,2,20,15,33,1,7,0,75,4,0,18,13,8,28,31,30,96,6,31,33,21,9,2.95\r\n,Cimarron Avenue Elementary,Los Angeles Unified,Los Angeles,770,3,90,0,0,0,8,0,1,0,73,14,0,3,1,21,8,5,N/A,85,10,19,45,20,7,2.94\r\n,Willow Glen High,San Jose Unified,Santa Clara,770,6,4,1,6,2,52,0,32,3,42,21,0,15,20,11,N/A,N/A,28,93,19,19,25,25,11,2.92\r\n,San Marcos Senior High,Santa Barbara Unified,Santa Barbara,770,6,2,1,3,1,57,0,35,2,43,19,0,23,18,14,N/A,N/A,27,97,26,17,19,20,18,2.88\r\n,,Linns Valley-Poso Flat Union,Kern,770,B,0,0,0,0,9,0,87,4,70,0,0,0,0,0,3,4,N/A,91,0,43,33,19,5,2.86\r\n,Linns Valley-Poso Flat Elementary,Linns Valley-Poso Flat Union,Kern,770,3,0,0,0,0,9,0,87,4,70,0,0,0,0,0,3,4,N/A,91,0,43,33,19,5,2.86\r\n,Justin Elementary,Simi Valley Unified,Ventura,770,3,3,0,3,4,53,0,35,2,55,2,0,22,11,13,24,34,N/A,85,11,36,25,18,10,2.79\r\nD,Public Safety Academy,San Bernardino City Unified,San Bernardino,770,6,9,2,2,0,63,0,22,1,55,0,0,7,18,4,,,,84,9,29,43,12,6,2.77\r\n,Sheridan Elementary,San Francisco Unified,San Francisco,770,3,25,0,14,14,31,5,5,2,83,8,0,37,8,8,19,21,N/A,90,15,28,29,22,6,2.75\r\n,Reynolds Elementary,Oceanside Unified,San Diego,770,3,8,0,2,7,59,3,17,2,67,7,3,29,13,14,26,30,N/A,88,19,23,36,16,7,2.71\r\n,Vista Middle,Red Bluff Union Elementary,Tehama,770,4,1,3,0,0,27,1,65,3,67,4,1,11,7,8,N/A,N/A,28,99,16,29,36,14,5,2.63\r\n,,Sacramento City Unified,Sacramento,770,B,17,1,19,1,36,2,19,5,73,14,0,22,15,13,24,28,26,82,22,29,24,15,9,2.6\r\n,Corona High,Corona-Norco Unified,Riverside,770,6,3,0,3,1,64,1,27,0,54,8,0,10,29,11,N/A,N/A,30,89,24,24,28,17,7,2.59\r\n,,Jamestown Elementary,Tuolumne,770,B,2,3,0,0,21,1,70,0,69,3,0,7,2,19,4,3,3,94,12,34,43,7,4,2.58\r\n,Rancho Alamitos High,Garden Grove Unified,Orange,770,6,1,0,30,1,52,1,14,0,64,6,0,31,40,11,N/A,N/A,29,57,23,35,17,20,4,2.47\r\n,Jeanne R. Meadows Elementary,Franklin-McKinley Elementary,Santa Clara,770,3,1,0,22,9,64,0,2,1,80,15,3,48,28,9,23,29,N/A,98,23,35,23,14,5,2.44\r\n,Harvest Middle,Napa Valley Unified,Napa,770,4,0,0,1,0,65,0,29,3,58,16,5,20,31,11,N/A,29,27,97,33,23,20,16,7,2.42\r\n,North Hollywood Senior High,Los Angeles Unified,Los Angeles,770,6,4,0,6,2,69,0,16,1,79,29,0,15,42,9,N/A,N/A,31,61,35,24,16,16,9,2.42\r\n,Lake Marie Elementary,South Whittier Elementary,Los Angeles,770,3,2,0,0,4,92,0,2,0,74,12,2,39,5,16,24,33,N/A,51,21,36,28,14,1,2.38\r\n,Marshall Elementary,San Francisco Unified,San Francisco,770,3,1,0,1,3,81,0,8,1,88,6,10,70,10,11,22,18,N/A,88,30,38,14,11,7,2.27\r\n,Wishon Elementary,Fresno Unified,Fresno,770,3,4,1,8,0,79,0,8,0,100,1,1,27,16,11,27,27,N/A,72,31,31,29,6,3,2.19\r\n,De Anza Academy of Technology and the Ar,Ventura Unified,Ventura,770,4,1,1,1,0,75,0,20,2,100,16,1,34,18,14,N/A,25,26,97,42,22,19,10,7,2.19\r\n,Poplar Elementary,Fontana Unified,San Bernardino,770,3,2,0,1,1,91,1,4,0,100,2,0,44,23,13,21,28,N/A,87,31,37,19,9,4,2.18\r\n,Healdsburg Elementary,Healdsburg Unified,Sonoma,770,3,1,0,0,0,75,0,23,0,72,0,9,59,7,10,21,29,N/A,100,43,21,18,13,6,2.17\r\n,James A. Whitaker Elementary,Buena Park Elementary,Orange,770,3,5,1,7,1,77,0,8,1,80,4,0,54,6,10,29,29,N/A,82,34,32,20,11,3,2.17\r\n,,La Honda-Pescadero Unified,San Mateo,770,B,0,0,0,1,65,1,33,0,61,2,7,50,11,14,11,15,11,98,55,9,11,16,8,2.13\r\n,Palm Tree Elementary,Palmdale Elementary,Los Angeles,770,3,14,0,1,1,75,0,7,1,92,5,2,41,7,7,23,26,N/A,94,33,35,25,6,2,2.08\r\n,Skylark Elementary,Garden Grove Unified,Orange,770,3,1,0,7,1,90,1,1,0,87,0,0,68,19,10,26,29,N/A,23,30,45,21,4,0,1.99\r\n,Challenger Middle,Wilsona Elementary,Los Angeles,770,4,13,2,0,0,68,0,16,1,100,2,3,27,19,14,N/A,32,27,95,43,28,20,7,2,1.97\r\n,Emerson Elementary,Compton Unified,Los Angeles,770,3,25,0,0,0,72,2,0,0,91,7,0,40,21,13,27,28,N/A,92,45,25,21,7,2,1.95\r\n,Jack Norton Elementary,Klamath-Trinity Joint Unified,Humboldt,770,3,0,79,0,0,16,0,5,0,100,0,0,0,0,26,N/A,10,N/A,95,22,61,17,0,0,1.94\r\n,Lillian Street Elementary,Los Angeles Unified,Los Angeles,770,3,1,0,0,0,99,0,0,0,100,3,1,40,30,9,20,25,N/A,85,49,27,12,7,5,1.93\r\n,Baker Elementary,Mountain View Elementary,Los Angeles,770,3,0,0,8,0,91,0,0,0,99,2,4,59,19,14,27,25,N/A,99,44,39,11,5,1,1.8\r\n,Dr. James Edward Jones Primary Center,Los Angeles Unified,Los Angeles,770,3,10,0,0,0,88,2,0,0,100,0,0,48,23,0,21,N/A,N/A,92,45,45,5,2,2,1.7\r\n,Willow Oaks Elementary,Ravenswood City Elementary,San Mateo,770,3,8,0,1,0,83,7,0,1,91,0,8,31,49,10,23,31,N/A,98,56,27,11,4,1,1.66\r\n,Bullard High,Fresno Unified,Fresno,769,6,14,1,5,1,39,1,39,0,45,29,0,3,7,9,N/A,N/A,26,94,5,20,35,23,18,3.3\r\n,McKinleyville High,Northern Humboldt Union High,Humboldt,769,6,1,6,0,0,8,0,74,11,29,3,0,2,1,15,N/A,N/A,17,90,6,28,28,23,15,3.13\r\n,Mission Valley,Lompoc Unified,Santa Barbara,769,3,3,3,0,0,40,0,51,3,51,3,0,3,6,6,,,,94,3,27,36,24,9,3.09\r\n,Lakewood Elementary,Lodi Unified,San Joaquin,769,3,0,0,1,1,28,0,69,0,56,15,1,17,3,18,25,27,N/A,71,13,23,32,20,13,2.96\r\n,Loma Elementary,La Mesa-Spring Valley,San Diego,769,3,14,1,3,4,49,2,21,7,64,8,0,23,10,17,25,28,N/A,88,9,30,33,21,6,2.84\r\n,Monterey Trail High,Elk Grove Unified,Sacramento,769,6,20,1,35,7,24,3,7,4,69,7,0,17,34,8,N/A,N/A,27,96,13,33,27,21,7,2.78\r\n,,Big Valley Joint Unified,Lassen,769,B,0,1,0,0,18,0,74,6,67,0,18,6,0,8,14,2,3,71,10,31,35,22,2,2.74\r\n,Ada Givens Elementary,Merced City Elementary,Merced,769,3,7,0,9,1,58,0,25,1,79,0,3,23,6,11,24,27,N/A,85,15,27,37,13,9,2.74\r\n,Garfield Elementary,San Leandro Unified,Alameda,769,3,13,0,14,12,44,2,12,3,68,12,0,36,17,17,20,21,N/A,89,13,31,35,14,6,2.7\r\n,Fort Bragg High,Fort Bragg Unified,Mendocino,769,6,1,2,1,1,39,0,51,5,58,0,3,10,21,8,N/A,N/A,19,89,19,25,35,11,10,2.67\r\n,Powers-Ginsburg Elementary,Fresno Unified,Fresno,769,3,12,1,3,0,61,0,20,0,84,22,0,15,5,19,21,32,N/A,91,15,30,39,9,8,2.64\r\n,Del Roble Elementary,Oak Grove Elementary,Santa Clara,769,3,8,1,15,5,55,1,13,2,62,14,0,34,9,7,27,31,N/A,96,16,34,28,15,6,2.61\r\n,,Hesperia Unified,San Bernardino,769,B,8,1,1,0,60,1,28,0,71,6,0,20,9,9,28,28,26,91,17,33,31,12,7,2.58\r\n,Mammoth High,Mammoth Unified,Mono,769,6,0,1,0,0,48,0,46,2,44,0,0,21,25,8,N/A,N/A,17,99,33,16,21,19,10,2.57\r\n,Washington Middle,La Habra City Elementary,Orange,769,4,1,0,1,1,82,0,15,0,65,15,0,23,29,9,N/A,31,30,39,21,31,27,14,6,2.52\r\n,Lassen Elementary,Los Angeles Unified,Los Angeles,769,3,4,0,3,4,83,2,3,0,87,5,0,38,15,16,18,14,N/A,90,24,29,25,16,7,2.52\r\n,,Aromas/San Juan Unified,San Benito,769,B,1,1,2,1,64,0,30,0,55,0,16,30,14,11,22,25,27,94,26,23,33,13,5,2.49\r\n,Brawley High,Brawley Union High,Imperial,769,6,1,0,1,0,86,0,11,1,63,25,13,22,21,6,N/A,N/A,28,98,25,27,30,12,6,2.46\r\n,Will Rogers Elementary,Ventura Unified,Ventura,769,3,1,1,1,0,80,1,15,1,100,6,0,53,4,3,23,27,N/A,97,29,29,22,11,9,2.41\r\n,James Madison Elementary,Desert Sands Unified,Riverside,769,3,2,0,1,1,89,0,7,1,87,1,1,40,8,9,28,25,N/A,99,22,35,29,8,5,2.38\r\n,McKinley Elementary,San Leandro Unified,Alameda,769,3,19,0,9,5,57,1,7,2,78,7,0,38,15,9,28,32,N/A,95,20,37,31,11,1,2.35\r\n,Lincoln Acres,National Elementary,San Diego,769,3,2,0,2,1,88,1,4,0,100,19,0,67,7,14,19,32,N/A,82,26,35,22,14,4,2.35\r\n,Golden West Elementary,Manteca Unified,San Joaquin,769,3,6,1,3,1,63,0,25,1,83,1,1,26,12,15,22,30,27,92,18,45,24,11,2,2.33\r\n,Gauldin Elementary,Downey Unified,Los Angeles,769,3,4,1,1,0,86,0,7,0,87,0,0,33,12,14,26,28,N/A,100,23,40,23,11,3,2.31\r\n,Willard Elementary,Long Beach Unified,Los Angeles,769,3,11,0,11,0,72,0,4,0,93,8,2,48,22,6,30,33,N/A,88,31,27,28,11,3,2.28\r\n,Captain Jason M. Dahl Elementary,Franklin-McKinley Elementary,Santa Clara,769,3,1,0,26,3,66,1,2,0,90,5,2,56,21,7,24,30,N/A,98,25,41,20,9,5,2.27\r\n,Walnut Grove Elementary,River Delta Joint Unified,Sacramento,769,3,1,0,0,3,75,0,19,2,72,0,17,55,12,27,22,20,N/A,99,42,20,17,11,10,2.26\r\n,Joshua Circle Elementary,Hesperia Unified,San Bernardino,769,3,8,0,1,0,77,0,13,0,90,3,0,41,5,9,32,29,N/A,94,22,57,15,4,2,2.08\r\n,Gidley Elementary,El Monte City Elementary,Los Angeles,769,3,1,0,19,1,75,0,4,0,86,7,2,32,20,13,22,20,23,100,36,38,16,9,1,2.02\r\n,Lyndale Elementary,Alum Rock Union Elementary,Santa Clara,769,3,2,1,5,8,82,1,1,1,100,8,3,45,27,12,19,33,N/A,88,45,25,17,9,4,2.02\r\n,Gladstone Street Elementary,Azusa Unified,Los Angeles,769,3,1,0,0,1,95,0,1,1,87,5,3,46,7,13,23,31,N/A,99,43,28,23,4,2,1.94\r\n,Death Valley High Academy,Death Valley Unified,Inyo,769,6,0,10,0,0,20,0,60,10,75,0,0,15,0,10,N/A,N/A,1,55,36,45,9,9,0,1.91\r\n,Harvest Valley Elementary,Romoland Elementary,Riverside,769,3,1,0,0,0,78,0,20,0,79,2,0,46,7,13,25,27,N/A,100,37,42,16,4,1,1.88\r\n,,Strathmore Union Elementary,Tulare,769,B,0,1,0,0,86,0,11,0,92,4,19,40,18,5,20,25,28,99,47,26,22,4,1,1.87\r\n,Northridge Middle,Los Angeles Unified,Los Angeles,769,4,4,0,5,2,83,0,5,0,93,10,0,26,39,19,N/A,21,20,78,48,32,12,5,2,1.83\r\n,,Baldwin Park Unified,Los Angeles,769,B,1,0,5,2,90,0,2,0,91,8,1,29,28,15,17,24,4,69,43,39,13,4,1,1.82\r\n,Lankershim Elementary,San Bernardino City Unified,San Bernardino,769,3,14,1,3,0,77,0,5,0,93,11,0,41,19,12,27,30,N/A,64,47,35,13,3,2,1.79\r\n,Jose Sepulveda Elementary,Santa Ana Unified,Orange,769,3,1,0,1,1,97,0,0,0,94,7,3,70,16,15,26,26,N/A,98,58,23,15,3,1,1.66\r\n,Jerry Voorhis Elementary,Mountain View Elementary,Los Angeles,769,3,0,0,4,0,94,0,1,0,99,1,5,61,17,10,29,34,N/A,99,52,37,9,2,0,1.6\r\nD,Santa Clarita Valley International,William S. Hart Union High,Los Angeles,769,3,0,0,0,0,24,0,4,0,12,0,0,5,0,8,10,13,12,0,100,0,0,0,0,1\r\n,Santee Alternative,Santee Elementary,San Diego,768,3,3,0,0,0,15,0,72,10,13,3,0,5,8,3,,,,100,0,23,23,38,15,3.46\r\n,Tahoe Truckee High,Tahoe-Truckee Joint Unified,Placer,768,6,1,0,1,0,28,0,69,1,31,12,0,10,15,13,N/A,N/A,25,95,9,18,18,32,22,3.4\r\n,Camptonville Elementary,Camptonville Elementary,Yuba,768,3,0,0,0,0,11,3,19,0,51,0,0,0,0,19,,,,3,0,0,100,0,0,3\r\n,Windsor High,Windsor Unified,Sonoma,768,6,1,2,2,1,38,0,54,1,31,8,2,10,19,11,N/A,N/A,24,88,18,19,27,24,12,2.94\r\n,Black Diamond Middle,Antioch Unified,Contra Costa,768,4,36,1,7,8,28,1,18,0,60,6,0,8,11,15,N/A,32,27,77,7,26,40,21,6,2.94\r\n,James Monroe Middle,Sierra Sands Unified,Kern,768,4,6,1,2,1,29,2,59,1,51,7,0,8,4,13,N/A,26,29,95,15,25,37,16,7,2.75\r\n,,Leggett Valley Unified,Mendocino,768,B,1,9,0,0,16,0,73,0,39,0,0,0,0,14,14,12,1,77,5,42,36,13,4,2.69\r\n,A. M. Winn Elementary,Sacramento City Unified,Sacramento,768,3,18,0,7,1,25,0,44,4,85,8,0,24,17,17,26,28,N/A,71,13,39,21,23,4,2.68\r\n,San Benito High,San Benito High,San Benito,768,6,1,1,1,1,65,0,31,0,41,12,19,10,24,9,N/A,N/A,32,94,20,26,31,16,7,2.63\r\n,Woodbridge,Lodi Unified,San Joaquin,768,3,2,1,3,2,49,0,41,1,69,12,6,25,9,18,24,29,N/A,79,20,29,31,12,8,2.6\r\nD,Aspire Langston Hughes Academy,Stockton Unified,San Joaquin,768,4,29,1,6,2,54,0,7,1,82,0,0,5,18,8,N/A,29,28,83,14,36,32,12,6,2.6\r\n,Jefferson Elementary,Cloverdale Unified,Sonoma,768,3,1,1,0,1,54,0,40,3,67,0,0,47,0,6,28,31,N/A,99,19,30,32,13,5,2.55\r\n,,Esparto Unified,Yolo,768,B,2,0,1,1,64,0,30,1,60,14,5,32,16,11,25,30,25,88,24,27,30,13,6,2.5\r\n,Dry Creek Elementary,Twin Rivers Unified,Sacramento,768,3,3,1,4,0,36,1,50,3,78,1,0,27,2,8,26,32,N/A,90,16,38,32,11,3,2.49\r\n,Lawrence T. Magee Elementary,El Rancho Unified,Los Angeles,768,3,1,0,1,0,98,0,1,0,78,0,0,41,8,10,22,31,N/A,95,20,38,28,5,10,2.47\r\n,Viking Elementary,Fresno Unified,Fresno,768,3,9,1,14,1,57,2,17,0,100,3,0,19,6,11,28,29,N/A,62,18,34,37,9,4,2.47\r\n,Marjorie Veeh Elementary,Tustin Unified,Orange,768,3,4,0,4,1,77,1,10,1,79,2,0,54,5,13,23,26,N/A,89,26,28,31,12,4,2.41\r\n,Warren A. Allison Elementary,Twin Rivers Unified,Sacramento,768,3,18,1,3,1,39,1,32,6,79,17,0,30,6,18,25,30,N/A,92,19,39,26,14,2,2.41\r\n,Westmont Elementary,Anaheim City,Orange,768,3,6,0,4,3,80,0,6,1,86,10,0,41,24,12,28,28,N/A,18,22,36,28,10,5,2.39\r\n,Father Keith B. Kenny Elementary,Sacramento City Unified,Sacramento,768,3,42,1,6,1,39,1,6,4,100,4,0,17,6,11,23,25,N/A,80,26,37,20,7,9,2.35\r\n,George Eisenhut Elementary,Stanislaus Union Elementary,Stanislaus,768,3,6,1,6,1,57,1,25,2,78,2,0,22,8,8,30,28,N/A,94,24,28,42,5,2,2.34\r\n,Verde Vale Elementary,Cascade Union Elementary,Shasta,768,3,2,11,4,0,33,1,50,0,90,9,2,26,1,23,25,29,N/A,92,16,44,33,6,2,2.34\r\n,University Park Elementary,Salinas City Elementary,Monterey,768,3,2,0,3,3,76,0,13,0,73,3,5,25,10,6,27,30,N/A,99,26,31,30,11,1,2.3\r\n,Burnett Elementary,Long Beach Unified,Los Angeles,768,3,12,0,12,0,73,1,1,0,93,12,1,42,24,6,29,33,N/A,86,33,26,25,12,4,2.29\r\n,Stanley Mosk Elementary,Los Angeles Unified,Los Angeles,768,3,8,0,5,4,75,0,8,0,100,5,0,37,22,9,20,21,N/A,91,33,28,21,14,4,2.28\r\n,Cienega Elementary,Los Angeles Unified,Los Angeles,768,3,16,0,0,0,83,0,0,0,100,13,0,42,17,14,18,25,N/A,21,27,35,24,11,3,2.27\r\n,Chatom Elementary,Chatom Union,Stanislaus,768,3,0,0,0,0,68,0,32,0,85,4,0,64,1,11,22,27,N/A,65,35,32,10,19,4,2.26\r\n,Mayberry Street Elementary,Los Angeles Unified,Los Angeles,768,3,3,1,5,8,81,1,1,0,77,4,0,26,19,18,17,15,N/A,90,30,30,26,10,3,2.25\r\n,Monte Vista Elementary,Porterville Unified,Tulare,768,3,2,1,2,0,78,0,16,1,78,0,3,25,3,3,23,31,N/A,93,29,32,30,6,4,2.24\r\n,E. Ruth Sheldon Elementary,Fairfield-Suisun Unified,Solano,768,3,14,1,3,4,60,2,9,5,83,1,0,34,15,15,30,33,N/A,99,27,36,25,10,1,2.22\r\nD,Triumph Charter High,Los Angeles Unified,Los Angeles,768,6,1,0,1,1,95,0,2,0,79,4,0,15,47,13,N/A,N/A,18,95,33,31,24,9,3,2.19\r\n,El Dorado Elementary,Lancaster Elementary,Los Angeles,768,3,31,0,0,0,58,0,8,2,90,8,1,29,4,6,26,30,N/A,100,33,29,28,7,3,2.17\r\n,,Ontario-Montclair Elementary,San Bernardino,768,B,3,0,2,0,88,0,5,1,83,9,0,47,12,11,23,26,27,96,32,36,20,8,4,2.15\r\n,Kerman Middle,Kerman Unified,Fresno,768,4,1,2,5,0,79,0,13,1,79,24,9,15,31,10,N/A,N/A,29,93,34,33,22,9,2,2.13\r\n,Serrano Elementary,Moreno Valley Unified,Riverside,768,3,11,0,2,2,80,0,4,1,85,3,3,50,4,17,28,26,N/A,88,29,39,25,6,1,2.12\r\n,Live Oak Elementary,Lodi Unified,San Joaquin,768,3,2,1,6,2,66,0,24,0,84,7,16,46,8,20,19,29,N/A,94,41,29,18,9,2,2.02\r\n,Naranca Elementary,Cajon Valley Union,San Diego,768,3,13,0,2,1,52,1,28,1,80,3,0,63,5,8,24,30,N/A,90,34,42,16,6,1,1.99\r\n,Jackson Elementary,Pasadena Unified,Los Angeles,768,3,22,0,0,2,72,0,3,0,90,4,0,41,9,18,25,27,N/A,87,43,29,19,9,0,1.94\r\n,Margaret Heath Elementary,Baldwin Park Unified,Los Angeles,768,3,1,0,3,1,91,0,3,0,94,1,0,46,13,18,15,21,N/A,71,35,45,15,3,2,1.91\r\n,Venn W. Furgeson Elementary,ABC Unified,Los Angeles,768,3,0,0,1,0,98,0,0,0,98,2,26,70,16,13,21,23,N/A,90,55,24,9,5,7,1.84\r\nD,Alliance College-Ready Middle Academy No,Los Angeles Unified,Los Angeles,768,4,0,0,4,0,95,0,1,0,95,0,0,24,33,13,N/A,30,25,100,51,27,16,4,2,1.77\r\n,Dwight Eisenhower Elementary,Desert Sands Unified,Riverside,768,3,0,0,0,1,94,0,3,0,96,1,2,61,13,14,20,19,N/A,100,53,29,12,5,1,1.73\r\n,Ascot Avenue Elementary,Los Angeles Unified,Los Angeles,768,3,5,0,0,0,95,0,0,0,100,8,1,47,35,8,21,22,N/A,83,58,31,7,2,2,1.59\r\n,iHigh Virtual Academy,San Diego Unified,San Diego,767,6,8,0,2,4,29,0,49,8,31,20,0,0,4,2,N/A,N/A,14,88,0,18,29,29,24,3.6\r\n,Fiesta Gardens International Elementary,San Mateo-Foster City,San Mateo,767,3,1,0,1,1,73,0,22,1,45,2,0,42,3,7,26,30,N/A,98,14,19,24,22,21,3.19\r\n,Wilson High,Long Beach Unified,Los Angeles,767,6,12,0,9,2,49,1,27,0,52,0,0,13,28,8,N/A,N/A,28,81,16,19,19,29,16,3.1\r\n,Cameron Ranch Elementary,San Juan Unified,Sacramento,767,3,18,1,4,2,23,1,50,0,78,1,0,13,5,20,26,32,N/A,68,8,18,39,24,10,3.09\r\nY,John C. Fremont Charter,Merced City Elementary,Merced,767,3,6,1,5,0,65,1,20,1,79,0,2,18,9,8,24,31,N/A,94,11,24,36,16,13,2.97\r\n,Mission Crest Elementary,Hesperia Unified,San Bernardino,767,3,17,1,2,1,58,1,19,0,68,6,0,17,3,8,30,30,N/A,94,9,25,38,16,12,2.96\r\n,La Jolla Elementary,Moreno Valley Unified,Riverside,767,3,29,0,3,4,46,1,14,2,65,7,2,17,6,6,29,32,N/A,91,7,24,41,21,5,2.93\r\n,Sierra High,Manteca Unified,San Joaquin,767,6,7,0,8,5,42,1,35,1,48,15,0,6,19,8,N/A,N/A,25,84,8,29,31,25,7,2.92\r\n,,Exeter Union High,Tulare,767,B,1,1,1,1,48,0,48,0,44,3,5,6,0,6,,,,94,16,19,33,21,11,2.91\r\nD,Magnolia Science Academy 4,Los Angeles Unified,Los Angeles,767,4,18,1,3,1,58,1,16,2,76,8,0,9,24,10,N/A,15,22,98,21,23,24,25,7,2.75\r\n,Del Rey Elementary,San Lorenzo Unified,Alameda,767,3,10,1,7,5,60,1,16,1,55,2,1,31,11,14,26,27,N/A,86,10,34,31,22,3,2.72\r\n,Seneca Elementary,Moreno Valley Unified,Riverside,767,3,19,1,3,2,53,0,17,3,66,6,1,21,4,16,26,28,N/A,93,10,33,39,14,4,2.68\r\n,Valencia Park Elementary,San Diego Unified,San Diego,767,3,33,0,9,4,43,2,2,7,100,17,0,36,9,13,24,25,N/A,84,11,33,37,16,3,2.67\r\n,John Muir Middle,San Leandro Unified,Alameda,767,4,12,0,19,12,43,1,9,2,64,20,0,16,32,16,N/A,28,26,96,15,33,28,20,4,2.65\r\n,,Woodland Joint Unified,Yolo,767,B,1,1,5,0,65,0,26,1,64,15,3,25,21,10,29,28,27,86,23,24,30,15,8,2.61\r\n,Los Arboles Middle,Monterey Peninsula Unified,Monterey,767,4,10,1,7,7,49,5,14,8,68,7,0,12,18,12,N/A,27,31,100,21,30,25,16,8,2.6\r\n,,Mountain House Elementary,Alameda,767,B,0,3,0,0,41,0,48,7,55,0,0,31,0,14,N/A,20,N/A,76,32,18,14,32,5,2.59\r\n,Mountain House Elementary,Mountain House Elementary,Alameda,767,3,0,3,0,0,41,0,48,7,55,0,0,31,0,14,N/A,20,N/A,76,32,18,14,32,5,2.59\r\n,,Hollister,San Benito,767,B,1,0,1,1,74,0,20,1,66,9,17,32,10,11,29,32,28,95,21,29,30,16,5,2.56\r\n,Yucca Valley Elementary,Morongo Unified,San Bernardino,767,3,5,0,1,0,41,0,48,3,86,8,0,11,5,8,27,21,N/A,90,18,31,35,10,6,2.54\r\n,,Washington Unified,Yolo,767,B,6,1,11,3,42,1,34,1,68,15,0,20,19,9,19,28,26,98,22,29,28,16,4,2.51\r\n,Highlands Elementary,Pittsburg Unified,Contra Costa,767,3,21,0,2,7,56,2,9,3,79,0,0,37,5,7,26,26,N/A,87,19,33,30,16,2,2.49\r\n,South Bay Elementary,South Bay Union Elementary,Humboldt,767,3,3,13,6,1,21,2,54,0,65,5,0,9,10,23,N/A,20,N/A,98,19,35,30,11,5,2.47\r\n,Gabilan Hills,Hollister,San Benito,767,3,0,0,0,0,87,0,12,1,73,3,18,44,6,8,29,37,N/A,98,23,34,30,10,3,2.37\r\n,Discovery,Lancaster Elementary,Los Angeles,767,3,21,0,1,2,63,0,11,0,88,15,4,32,10,5,31,36,32,100,31,25,26,13,5,2.35\r\n,Miner (George) Elementary,Oak Grove Elementary,Santa Clara,767,3,6,1,10,5,67,1,8,0,75,14,1,43,17,5,23,30,N/A,89,31,34,21,10,5,2.26\r\n,Joshua Hills Elementary,Palmdale Elementary,Los Angeles,767,3,16,1,1,1,72,0,6,1,90,7,1,28,10,14,29,27,N/A,93,25,38,26,9,2,2.25\r\n,,Escondido Union,San Diego,767,B,3,0,3,2,72,0,19,0,74,11,2,47,13,11,22,28,28,81,38,24,19,13,6,2.24\r\nD,Accelerated,Los Angeles Unified,Los Angeles,767,3,12,1,0,0,86,0,1,0,94,0,0,38,28,10,,,,81,31,31,25,9,3,2.22\r\n,Central Elementary,National Elementary,San Diego,767,3,1,0,3,5,88,1,2,0,100,18,0,67,6,12,19,30,N/A,87,32,33,23,11,2,2.19\r\n,,Edison Elementary,Kern,767,B,3,0,0,0,80,0,16,0,92,5,3,30,20,7,25,28,23,86,30,36,23,9,2,2.17\r\n,Marshall Elementary,San Bernardino City Unified,San Bernardino,767,3,11,1,0,0,79,0,9,1,95,10,0,35,8,13,26,32,N/A,71,29,44,12,13,2,2.17\r\n,Owens Valley Elementary,Owens Valley Unified,Inyo,767,3,0,8,0,0,43,0,27,22,59,2,0,0,4,0,4,6,7,49,4,76,20,0,0,2.16\r\n,Maxwell Elementary,Duarte Unified,Los Angeles,767,3,5,0,0,0,93,0,2,1,89,4,2,60,12,12,25,26,N/A,98,28,40,23,7,2,2.15\r\n,William Penn Elementary,Bakersfield City,Kern,767,3,11,0,1,3,71,0,15,0,94,0,9,23,11,14,18,30,N/A,68,31,35,21,11,1,2.15\r\n,Del Rey Elementary,Victor Elementary,San Bernardino,767,3,15,1,1,1,67,1,10,5,78,0,0,32,6,10,32,33,N/A,94,30,37,23,8,2,2.14\r\n,Stine Elementary,Panama-Buena Vista Union,Kern,767,3,18,0,2,1,55,1,23,1,88,1,0,16,8,11,30,29,N/A,39,23,54,14,8,1,2.11\r\n,Gridley Street Elementary,Los Angeles Unified,Los Angeles,767,3,1,1,0,0,96,0,1,0,100,4,0,38,22,10,18,24,N/A,67,38,30,22,8,2,2.06\r\n,Lillian Larsen Elementary,San Miguel Joint Union,San Luis Obispo,767,3,1,0,0,0,73,2,23,0,82,13,6,43,13,11,19,20,20,95,31,39,24,5,0,2.04\r\n,Vista San Gabriel Elementary,Wilsona Elementary,Los Angeles,767,3,10,1,0,0,64,0,22,2,99,0,3,40,4,12,27,31,N/A,94,32,38,23,6,0,2.04\r\n,Robert Heideman Elementary,Tustin Unified,Orange,767,3,2,0,1,0,97,0,0,0,100,2,0,76,9,11,24,36,N/A,90,37,41,17,4,2,1.92\r\n,Dixieland Elementary,Madera Unified,Madera,767,3,1,0,1,0,86,1,10,0,90,4,6,30,21,3,26,33,N/A,100,47,30,17,4,3,1.85\r\n,Horton Elementary,San Diego Unified,San Diego,767,3,7,0,7,0,84,1,0,2,100,13,0,61,16,17,19,31,N/A,97,47,31,17,5,1,1.82\r\n,Franklin Elementary,Santa Barbara Unified,Santa Barbara,767,3,2,1,0,0,94,0,2,1,100,2,0,84,1,18,23,26,N/A,91,46,36,12,4,2,1.8\r\n,West Fresno Elementary,Washington Unified,Fresno,767,3,12,0,12,0,74,0,1,0,87,0,13,54,6,9,20,24,N/A,99,56,23,16,4,0,1.7\r\nD,Discovery Charter Preparatory No. 2,Los Angeles Unified,Los Angeles,767,6,1,0,0,1,98,0,0,0,91,0,0,31,51,7,N/A,N/A,23,91,66,25,6,3,0,1.46\r\nY,Yuba River Charter,Nevada County Office of Educat,Nevada,766,3,1,1,4,0,8,1,82,0,44,1,0,0,0,10,24,30,N/A,29,0,2,33,36,30,3.93\r\nY,SLVUSD Charter,San Lorenzo Valley Unified,Santa Cruz,766,3,1,2,0,1,3,0,86,7,9,8,0,0,0,10,18,17,11,96,1,5,29,43,22,3.79\r\n,Angelo Rodriguez High,Fairfield-Suisun Unified,Solano,766,6,17,2,6,12,23,1,20,19,28,14,0,3,12,6,N/A,N/A,33,98,4,19,33,36,8,3.24\r\n,C. C. Violette Elementary,Garden Grove Unified,Orange,766,3,0,0,12,0,85,1,3,0,76,0,0,65,16,9,25,31,N/A,3,0,27,27,45,0,3.18\r\n,South San Francisco High,South San Francisco Unified,San Mateo,766,6,3,0,11,26,47,4,8,0,45,11,2,17,24,8,N/A,N/A,28,98,10,22,31,23,15,3.1\r\n,Capuchino High,San Mateo Union High,San Mateo,766,6,1,0,10,10,44,5,22,8,28,12,0,18,14,13,N/A,N/A,26,94,11,23,30,25,13,3.06\r\n,Santa Clara High,Santa Clara Unified,Santa Clara,766,6,6,0,16,13,33,1,27,4,42,11,2,13,26,17,N/A,N/A,28,89,11,26,28,28,7,2.94\r\n,North Park Elementary,San Bernardino City Unified,San Bernardino,766,3,23,0,3,1,55,0,16,1,97,14,0,14,5,7,29,28,N/A,70,13,27,37,13,10,2.8\r\n,Will C. Wood Middle,Alameda City Unified,Alameda,766,4,17,0,33,12,19,2,16,1,60,7,0,30,14,13,N/A,24,24,96,14,26,30,26,4,2.79\r\n,Wilson Middle,Exeter Union Elementary,Tulare,766,4,1,1,0,0,55,0,39,0,60,9,6,10,0,4,,,,97,18,22,34,15,11,2.79\r\n,Colonial Heights,Lincoln Unified,San Joaquin,766,3,14,2,8,4,42,3,28,0,71,3,0,14,3,13,26,29,20,93,12,22,43,19,3,2.79\r\n,Ready Springs Elementary,Ready Springs Union Elementary,Nevada,766,3,2,1,0,1,13,1,81,1,73,0,0,3,0,17,23,22,N/A,99,8,31,42,16,4,2.77\r\n,Marshall Fundamental,Pasadena Unified,Los Angeles,766,6,12,0,3,1,63,0,16,4,69,23,0,10,29,11,N/A,28,30,87,23,25,19,18,15,2.76\r\n,Mesa View Middle,Yucaipa-Calimesa Joint Unified,San Bernardino,766,4,1,1,1,0,41,1,53,1,51,21,0,13,7,14,N/A,N/A,30,97,13,36,26,14,10,2.71\r\n,Palm Vista Elementary,Morongo Unified,San Bernardino,766,3,9,1,0,0,32,3,50,6,67,2,0,6,0,16,25,29,N/A,91,12,29,41,13,5,2.71\r\n,Pine Street Elementary,Bishop Unified,Inyo,766,3,0,21,2,0,36,0,35,2,54,15,0,13,12,12,21,28,N/A,94,13,37,29,13,8,2.67\r\n,\"Joseph Widmer, Jr., Elementary\",Manteca Unified,San Joaquin,766,3,9,0,11,12,50,1,15,1,61,0,1,26,13,12,28,30,29,90,14,34,27,21,4,2.67\r\n,Mar Vista Middle,Sweetwater Union High,San Diego,766,4,5,0,0,7,75,0,12,0,75,12,0,27,19,13,N/A,N/A,29,86,20,25,34,15,5,2.61\r\n,Fremont High,Fremont Union High,Santa Clara,766,6,3,0,17,11,45,1,20,3,45,3,0,22,24,13,N/A,N/A,28,100,29,23,19,19,10,2.59\r\n,Upland Junior High,Upland Unified,San Bernardino,766,4,13,0,2,1,66,0,15,2,78,11,0,15,6,13,N/A,N/A,28,96,16,29,39,12,4,2.59\r\n,,Banta Elementary,San Joaquin,766,B,3,0,1,0,62,0,33,1,65,0,3,22,17,13,20,29,N/A,100,21,25,37,12,6,2.57\r\n,Banta Elementary,Banta Elementary,San Joaquin,766,3,3,0,1,0,62,0,33,1,65,0,3,22,17,13,20,29,N/A,100,21,25,37,12,6,2.57\r\n,Mare Island Elementary,Vallejo City Unified,Solano,766,3,25,0,0,11,44,1,12,4,76,2,0,18,18,12,19,25,N/A,93,18,32,32,13,5,2.53\r\n,Butte County Special Education,Butte County Office of Educati,Butte,766,C,0,3,14,0,24,0,59,0,81,0,0,5,19,100,N/A,8,N/A,46,35,18,18,18,12,2.53\r\n,Ethel Phillips Elementary,Sacramento City Unified,Sacramento,766,3,12,0,7,0,71,1,6,2,100,6,0,54,9,17,20,23,N/A,53,21,34,26,11,9,2.53\r\n,Ruby Drive Elementary,Placentia-Yorba Linda Unified,Orange,766,3,1,0,1,1,90,1,7,0,91,0,0,49,18,17,23,32,N/A,49,23,32,27,13,5,2.44\r\n,Greenfield Middle,Cajon Valley Union,San Diego,766,4,11,1,0,1,41,1,40,3,70,7,0,21,20,10,N/A,29,29,90,15,43,30,10,2,2.4\r\n,Ethel Kucera Middle,Rialto Unified,San Bernardino,766,4,17,0,1,0,72,2,8,0,77,18,0,15,16,8,N/A,29,23,90,26,33,25,13,4,2.37\r\n,Warner Junior/Senior High,Warner Unified,San Diego,766,6,3,22,3,0,33,0,30,9,70,13,0,10,13,9,N/A,N/A,11,100,25,36,29,7,3,2.28\r\n,Stonecreek Junior High,Panama-Buena Vista Union,Kern,766,4,10,0,10,1,64,0,14,0,71,17,0,10,24,7,N/A,N/A,31,72,21,45,20,13,1,2.28\r\n,D. W. Babcock Elementary,Twin Rivers Unified,Sacramento,766,3,21,0,3,0,55,0,17,3,78,7,0,29,6,15,24,24,N/A,90,25,38,27,9,1,2.23\r\n,Mountain View Elementary,Riverside Unified,Riverside,766,3,5,0,3,0,78,0,13,0,84,8,0,35,13,15,27,32,N/A,97,30,31,27,9,3,2.23\r\n,,Chatom Union,Stanislaus,766,B,0,0,0,0,62,0,37,0,82,6,0,58,5,11,22,29,25,77,36,30,16,15,3,2.21\r\n,Greenfield Middle,Greenfield Union,Kern,766,4,9,1,3,1,79,0,7,1,78,7,4,20,34,9,N/A,28,20,75,28,41,19,8,4,2.2\r\n,Hudnall (Claude) Elementary,Inglewood Unified,Los Angeles,766,3,27,0,0,0,72,0,1,0,93,2,0,24,0,16,29,30,N/A,97,29,34,27,9,0,2.18\r\n,Chollas/Mead Elementary,San Diego Unified,San Diego,766,3,9,1,8,1,80,1,0,1,100,22,0,65,7,10,25,30,N/A,80,30,41,17,9,2,2.12\r\n,South Ranchito Elementary,El Rancho Unified,Los Angeles,766,3,0,0,0,0,98,0,1,0,85,0,1,49,9,10,25,29,N/A,89,32,33,28,6,1,2.1\r\n,Farmington Elementary,Escalon Unified,San Joaquin,766,3,0,0,0,0,78,0,22,0,83,3,20,59,7,7,17,21,N/A,86,42,32,15,5,6,2.02\r\n,,Bellevue Union Elementary,Sonoma,766,B,3,1,5,0,81,0,9,1,90,4,5,70,7,14,21,27,N/A,88,37,40,15,6,2,1.97\r\n,Kelley Elementary,Rialto Unified,San Bernardino,766,3,10,0,1,0,83,2,3,0,92,11,0,43,13,4,24,33,N/A,87,42,36,16,4,2,1.9\r\n,Isbell Middle,Santa Paula Elementary,Ventura,766,4,0,0,0,0,94,0,5,0,100,17,9,35,31,15,N/A,28,26,97,47,27,20,5,1,1.85\r\n,Golden Oak Elementary,Richland Union Elementary,Kern,766,3,0,0,0,0,98,0,0,0,98,13,6,46,25,8,24,28,N/A,89,45,39,12,3,1,1.78\r\n,Riley Elementary,San Bernardino City Unified,San Bernardino,766,3,9,0,0,0,85,1,3,1,98,7,0,59,6,4,19,22,N/A,55,53,28,11,5,2,1.75\r\n,Sixty-First Street Elementary,Los Angeles Unified,Los Angeles,766,3,14,0,0,0,85,0,0,0,89,3,0,46,25,10,20,19,N/A,84,57,28,9,3,3,1.67\r\n,Curren Elementary,Oxnard,Ventura,766,3,1,0,1,0,94,0,3,0,93,0,3,61,16,9,20,24,N/A,99,57,28,10,3,1,1.63\r\n,Mayo Elementary,Compton Unified,Los Angeles,766,3,7,0,0,0,93,0,0,0,88,2,0,55,24,4,29,31,N/A,91,62,25,8,4,1,1.57\r\n,C. C. Lambert Elementary,Tustin Unified,Orange,766,3,0,0,0,0,99,0,0,0,99,1,0,86,6,9,26,33,N/A,96,63,27,6,3,1,1.5\r\n,San Pedro Elementary,San Rafael City Elementary,Marin,766,3,1,0,0,0,98,0,0,0,97,0,0,90,5,14,20,19,N/A,97,64,25,8,2,0,1.49\r\nY,Trivium Charter,Blochman Union Elementary,Santa Barbara,765,3,2,0,1,0,21,1,67,0,29,4,0,0,0,1,16,20,3,97,0,10,27,43,20,3.74\r\n,,Jefferson Union High,San Mateo,765,B,3,0,13,26,28,2,16,11,35,1,0,13,21,8,N/A,N/A,28,94,6,16,32,37,9,3.28\r\n,Live Oak High,Morgan Hill Unified,Santa Clara,765,6,2,0,4,2,47,0,44,0,32,26,4,19,11,10,N/A,N/A,31,86,15,17,27,27,14,3.07\r\n,Ralph Waldo Emerson Middle,Los Angeles Unified,Los Angeles,765,4,18,0,5,2,52,1,21,1,64,20,0,14,22,11,N/A,29,30,52,22,18,20,24,16,2.94\r\n,Winters High,Winters Joint Unified,Yolo,765,6,1,0,0,0,59,0,39,1,55,13,3,15,32,11,N/A,N/A,24,84,18,22,27,21,12,2.86\r\n,,Burton Elementary,Tulare,765,B,1,1,3,3,61,0,31,0,70,8,8,24,5,7,24,31,24,97,17,23,40,14,7,2.7\r\n,Myron D. Witter Elementary,Brawley Elementary,Imperial,765,3,1,0,0,0,91,0,7,0,76,3,9,41,0,10,25,N/A,N/A,100,13,34,37,12,4,2.6\r\nD,Mare Island Technology Academy,Vallejo City Unified,Solano,765,4,15,0,3,12,49,0,9,0,58,0,0,9,26,6,N/A,34,28,98,21,26,33,12,8,2.59\r\n,Waterford Middle,Waterford Unified,Stanislaus,765,4,1,1,1,0,60,0,34,1,75,16,13,25,20,11,N/A,28,25,73,19,48,5,20,8,2.51\r\n,,Chowchilla Elementary,Madera,765,B,2,1,1,0,60,0,35,0,82,5,5,23,16,8,19,27,28,91,25,28,27,13,6,2.49\r\n,Gault Elementary,Santa Cruz City Elementary,Santa Cruz,765,3,1,0,0,1,66,0,30,1,70,10,6,48,13,11,21,23,N/A,85,27,29,22,16,6,2.46\r\n,Melvin Avenue Elementary,Los Angeles Unified,Los Angeles,765,3,4,0,8,2,77,1,8,0,80,12,0,35,17,12,18,20,N/A,93,23,32,27,13,5,2.45\r\n,Monache High,Porterville Unified,Tulare,765,6,1,1,4,4,70,0,19,1,55,5,7,14,25,5,N/A,N/A,28,95,31,22,27,15,6,2.44\r\n,Independence High,East Side Union High,Santa Clara,765,6,3,0,41,19,32,1,4,0,46,2,1,21,39,7,N/A,N/A,30,88,28,27,24,17,5,2.42\r\n,Lime Street Elementary,Hesperia Unified,San Bernardino,765,3,17,1,2,1,61,0,18,1,82,2,0,23,3,10,28,28,N/A,90,22,35,31,6,7,2.41\r\n,Cucamonga Elementary,Cucamonga Elementary,San Bernardino,765,3,12,0,3,3,72,1,9,0,86,5,0,35,5,15,21,34,N/A,97,17,37,37,8,1,2.39\r\n,Tara Hills Elementary,West Contra Costa Unified,Contra Costa,765,3,19,1,11,9,47,0,13,0,72,2,0,32,15,15,22,32,N/A,86,10,56,21,12,1,2.38\r\n,Tulare Western High,Tulare Joint Union High,Tulare,765,6,4,0,2,0,74,0,19,0,72,16,7,16,23,6,N/A,N/A,27,78,28,29,29,10,5,2.36\r\n,,Lone Pine Unified,Inyo,765,B,1,14,3,0,48,0,32,2,64,10,0,24,19,14,22,24,13,99,24,36,24,12,3,2.35\r\n,Taylor Street Elementary,Robla Elementary,Sacramento,765,3,17,0,27,2,37,2,11,2,87,15,0,43,10,13,23,26,N/A,93,24,36,23,16,2,2.35\r\n,Eucalyptus Elementary,Hesperia Unified,San Bernardino,765,3,7,1,1,1,70,1,19,0,81,3,0,31,7,5,29,30,N/A,93,22,42,21,11,4,2.32\r\n,Junction K-8,Livermore Valley Joint Unified,Alameda,765,3,3,1,3,4,64,0,22,3,63,7,9,36,18,18,22,26,26,97,37,22,20,14,7,2.31\r\n,Parkway Elementary,Sacramento City Unified,Sacramento,765,3,29,2,28,1,32,3,2,2,99,7,0,34,12,13,26,30,N/A,55,34,28,20,10,7,2.29\r\n,,Warner Unified,San Diego,765,B,2,26,1,0,33,0,29,9,76,6,0,14,9,14,17,20,10,99,20,45,27,5,2,2.24\r\n,Pedley Elementary,Jurupa Unified,Riverside,765,3,2,0,1,1,84,0,12,0,87,7,0,46,12,12,25,28,N/A,97,31,33,24,7,5,2.22\r\n,,Monson-Sultana Joint Union Ele,Tulare,765,B,0,0,1,0,89,0,9,1,100,5,8,32,18,3,26,22,N/A,100,36,28,20,9,7,2.22\r\n,Monson-Sultana Elementary,Monson-Sultana Joint Union Ele,Tulare,765,3,0,0,1,0,89,0,9,1,100,5,8,33,18,3,26,22,N/A,100,36,28,20,9,7,2.22\r\n,Magnolia Elementary,Azusa Unified,Los Angeles,765,3,3,0,1,0,89,0,7,1,80,3,2,36,8,10,24,31,N/A,99,28,39,24,8,1,2.16\r\n,Serrano Middle,San Bernardino City Unified,San Bernardino,765,4,17,1,3,0,63,1,13,0,95,9,0,16,22,15,N/A,7,26,83,33,32,24,8,3,2.16\r\n,Lloyd G. Johnson Junior High,Pierce Joint Unified,Colusa,765,4,2,1,1,0,71,0,25,0,74,6,21,17,43,13,N/A,24,21,98,39,27,21,7,6,2.15\r\n,,Shandon Joint Unified,San Luis Obispo,765,B,1,0,0,0,66,0,30,1,74,0,13,32,15,17,23,29,13,81,30,37,28,5,1,2.1\r\n,Yorbita Elementary,Rowland Unified,Los Angeles,765,3,1,0,1,6,89,0,3,0,90,6,1,41,19,8,18,26,N/A,100,29,43,21,6,1,2.08\r\nY,East Oakland Leadership Academy,Oakland Unified,Alameda,765,3,31,0,2,0,64,0,1,1,86,0,0,27,32,1,,,,59,40,26,26,4,4,2.06\r\n,McKinley Elementary,Long Beach Unified,Los Angeles,765,3,18,0,3,1,71,4,3,0,88,0,1,37,22,6,28,34,N/A,74,40,31,18,9,2,2.02\r\n,,Paramount Unified,Los Angeles,765,B,9,0,1,1,87,1,1,0,92,6,0,33,30,11,25,26,29,93,41,32,17,6,4,2\r\n,Julius Corsini Elementary,Palm Springs Unified,Riverside,765,3,11,0,1,1,69,1,17,0,92,2,0,44,5,16,26,28,N/A,84,35,41,16,5,3,2\r\n,,Wilsona Elementary,Los Angeles,765,B,12,2,0,0,66,0,18,1,100,1,3,33,12,14,27,31,27,95,39,32,21,7,1,1.99\r\n,Roosevelt Elementary,San Bernardino City Unified,San Bernardino,765,3,6,0,1,0,89,0,3,1,97,29,0,55,11,8,27,30,N/A,56,41,33,18,5,3,1.95\r\nD,King-Chavez Academy of Excellence,San Diego Unified,San Diego,765,3,3,0,0,0,97,0,0,0,100,8,0,63,17,14,21,29,28,67,42,36,16,2,5,1.92\r\n,Euclid Elementary,San Diego Unified,San Diego,765,3,9,0,13,0,77,0,1,1,100,14,1,79,9,6,22,31,N/A,95,49,30,12,5,4,1.83\r\n,Roosevelt Elementary,Tulare City,Tulare,765,3,3,0,2,0,90,0,5,1,96,1,13,48,17,9,21,29,N/A,94,41,43,12,3,1,1.81\r\n,Twin Lakes Elementary,Mountain View Elementary,Los Angeles,765,3,1,0,13,0,84,0,2,0,100,3,6,54,13,11,28,32,N/A,99,46,36,10,7,1,1.8\r\n,Cesar E. Chavez Middle,Planada Elementary,Merced,765,4,0,0,0,0,98,0,1,0,100,0,20,41,39,14,N/A,21,24,94,64,20,11,5,0,1.59\r\nD,Alliance College-Ready Academy High No.,Los Angeles Unified,Los Angeles,765,6,16,0,0,0,83,0,0,0,82,0,0,25,43,7,N/A,N/A,24,99,69,19,10,1,1,1.45\r\nY,Cypress Charter High,Live Oak Elementary,Santa Cruz,764,6,2,1,2,0,14,0,57,8,26,0,0,2,5,8,N/A,N/A,17,88,4,16,25,31,24,3.55\r\nD,University Preparation School at CSU Cha,Pleasant Valley,Ventura,764,3,2,2,3,2,66,0,24,1,51,0,0,25,7,10,18,21,N/A,89,12,13,28,28,20,3.32\r\n,Sutter High,Sutter Union High,Sutter,764,6,0,2,3,0,15,0,78,0,19,0,1,2,3,9,N/A,N/A,26,94,4,15,49,19,12,3.2\r\n,Blanche Reynolds Elementary,Ventura Unified,Ventura,764,3,1,1,1,0,43,0,49,4,53,4,0,13,1,21,21,24,N/A,100,10,14,34,28,13,3.2\r\n,Twain Harte Middle,Twain Harte-Long Barn Union El,Tuolumne,764,4,0,0,0,0,5,0,93,2,54,0,0,0,0,20,N/A,32,N/A,96,0,21,57,20,2,3.02\r\nD,SOAR Charter Academy,San Bernardino City Unified,San Bernardino,764,3,19,3,1,0,42,0,28,6,68,9,0,12,1,6,22,26,N/A,100,6,25,44,16,10,3\r\n,River Valley High,Yuba City Unified,Sutter,764,6,2,1,28,1,28,1,33,4,57,9,5,8,26,9,N/A,N/A,26,97,14,23,31,22,11,2.93\r\n,Fifty-Fourth Street Elementary,Los Angeles Unified,Los Angeles,764,3,82,2,2,0,14,0,0,0,100,6,0,5,3,20,11,12,N/A,66,9,29,35,16,12,2.93\r\n,Vista Verde Elementary,Snowline Joint Unified,San Bernardino,764,3,22,0,1,1,55,1,13,2,77,2,0,25,0,11,29,32,N/A,83,6,32,35,23,4,2.87\r\n,Benjamin Franklin Intermediate,Jefferson Elementary,San Mateo,764,4,4,0,11,37,33,2,8,3,59,6,0,30,20,7,N/A,29,28,89,11,33,30,26,1,2.73\r\n,Johnston Cooper Elementary,Vallejo City Unified,Solano,764,3,42,0,2,12,32,1,7,4,77,4,0,23,5,14,20,24,N/A,97,13,32,34,17,4,2.66\r\n,,Merced City Elementary,Merced,764,B,6,0,11,1,62,0,17,2,79,4,2,25,13,10,24,29,28,92,23,23,30,13,10,2.65\r\n,Westside Elementary,Twin Rivers Unified,Sacramento,764,3,4,1,5,1,24,2,61,3,69,15,0,15,6,9,24,29,N/A,90,12,37,33,11,6,2.62\r\n,Valley Elementary,Yucaipa-Calimesa Joint Unified,San Bernardino,764,3,1,1,1,1,50,1,44,0,70,6,0,26,3,14,22,30,N/A,88,18,27,37,10,8,2.62\r\n,Esparto High,Esparto Unified,Yolo,764,6,4,0,2,0,54,0,36,3,44,19,3,14,25,8,N/A,N/A,24,87,21,23,38,9,9,2.61\r\n,,Southern Humboldt Joint Unifie,Humboldt,764,B,1,5,2,1,11,0,80,1,51,5,0,4,2,10,9,10,11,88,8,44,29,16,3,2.61\r\n,Ranchero Middle,Hesperia Unified,San Bernardino,764,4,8,1,0,0,54,0,36,0,72,12,0,16,11,8,N/A,N/A,26,86,18,29,35,12,6,2.59\r\n,Stephen M. White Middle,Los Angeles Unified,Los Angeles,764,4,9,0,1,18,63,4,3,1,75,16,0,10,24,11,N/A,34,28,84,23,27,25,20,5,2.57\r\n,,Surprise Valley Joint Unified,Modoc,764,B,1,12,0,0,26,0,60,0,63,0,4,7,13,0,17,15,2,54,19,25,42,10,4,2.54\r\n,Jefferson Elementary,San Leandro Unified,Alameda,764,3,14,0,10,5,61,1,7,2,73,12,0,39,20,11,27,32,N/A,94,18,37,26,16,3,2.5\r\n,,Marysville Joint Unified,Yuba,764,B,4,4,10,0,38,1,40,3,75,8,1,24,10,12,21,26,24,79,22,29,33,11,5,2.49\r\n,Dunsmuir Elementary,Dunsmuir Elementary,Siskiyou,764,3,1,2,0,0,15,0,70,12,79,6,0,0,2,14,1,1,N/A,100,12,44,33,4,6,2.48\r\n,Edison High,Fresno Unified,Fresno,764,6,20,1,14,1,54,0,10,0,76,51,3,12,30,5,N/A,N/A,29,88,28,28,24,10,9,2.45\r\n,Luther Elementary,Live Oak Unified,Sutter,764,3,0,1,13,0,68,1,17,1,85,0,9,39,23,9,27,24,N/A,87,26,35,23,11,4,2.33\r\n,,Lucerne Elementary,Lake,764,B,2,10,2,1,17,0,68,0,84,8,1,3,3,17,17,16,N/A,93,24,33,40,2,1,2.24\r\n,Lucerne Elementary,Lucerne Elementary,Lake,764,3,2,10,2,1,17,0,68,0,84,8,1,3,3,17,17,16,N/A,93,24,33,40,2,1,2.24\r\n,Westside Leadership Magnet,Los Angeles Unified,Los Angeles,764,3,19,1,1,0,74,0,5,0,80,10,1,15,29,10,16,23,25,74,33,31,24,7,5,2.21\r\n,Warner Elementary,Warner Unified,San Diego,764,3,1,30,0,0,32,0,28,8,83,0,0,17,6,20,18,20,N/A,99,16,54,26,3,1,2.2\r\n,Boulder Ridge Middle,Romoland Elementary,Riverside,764,4,5,0,1,2,72,1,19,0,66,3,0,26,21,11,N/A,31,30,94,31,41,13,14,1,2.13\r\n,Rancho Minerva Middle,Vista Unified,San Diego,764,4,4,1,1,1,78,1,13,1,83,13,5,31,32,19,N/A,26,27,79,45,21,22,9,3,2.04\r\n,Hubert Howe Bancroft Middle,Los Angeles Unified,Los Angeles,764,4,6,0,3,3,81,0,7,0,88,15,0,16,44,13,N/A,27,25,73,44,26,14,10,5,2.04\r\n,Mark Twain Elementary,Lynwood Unified,Los Angeles,764,3,8,0,0,0,90,2,1,0,79,6,1,41,18,11,19,26,N/A,82,39,34,20,5,1,1.96\r\n,ASCEND,Oakland Unified,Alameda,764,3,4,0,5,1,88,0,1,0,35,49,2,49,32,8,25,26,24,41,46,28,15,9,2,1.93\r\n,Hoover Elementary,Santa Ana Unified,Orange,764,3,0,0,2,0,96,0,2,0,94,5,0,71,12,8,24,29,N/A,99,46,32,15,4,2,1.84\r\n,Rio Vista Elementary,San Bernardino City Unified,San Bernardino,764,3,22,0,1,0,70,3,1,1,96,5,0,43,12,13,18,19,N/A,52,44,34,18,3,1,1.84\r\n,Richard L. Graves Middle,South Whittier Elementary,Los Angeles,764,4,1,0,0,2,94,0,3,0,70,7,1,20,32,13,N/A,N/A,18,76,44,38,13,3,1,1.78\r\n,Fesler (Isaac) Junior High,Santa Maria-Bonita,Santa Barbara,764,4,2,1,0,1,89,0,7,0,99,16,10,33,23,10,N/A,N/A,28,100,54,30,12,4,1,1.69\r\n,Delano High,Delano Joint Union High,Kern,764,6,0,0,0,0,81,0,2,16,100,3,7,33,36,5,N/A,N/A,31,65,53,31,11,5,0,1.68\r\n,Pioneer Middle,Porterville Unified,Tulare,764,4,0,9,1,1,82,0,6,0,88,1,15,32,23,5,N/A,N/A,26,95,61,19,15,4,1,1.65\r\n,La Vina Elementary,Madera Unified,Madera,764,3,0,0,0,0,95,0,4,0,97,3,19,54,29,3,24,25,N/A,100,70,18,8,3,0,1.44\r\n,Gerber Elementary,Gerber Union Elementary,Tehama,764,3,0,6,0,0,60,0,34,1,81,0,0,51,2,10,20,26,N/A,1,100,0,0,0,0,1\r\nD,High Tech High Chula Vista,SBC - High Tech High,San Diego,763,6,4,1,1,7,72,1,10,2,43,0,0,11,21,8,N/A,N/A,23,62,3,14,27,30,26,3.63\r\n,Pine Elementary,Holtville Unified,Imperial,763,3,0,0,0,0,67,0,28,3,99,7,8,28,7,9,16,20,N/A,5,0,43,0,14,43,3.57\r\n,Thomas Kelly Elementary,San Juan Unified,Sacramento,763,3,9,2,3,1,9,0,74,0,56,5,0,4,3,16,25,33,N/A,74,4,17,36,31,13,3.32\r\nD,Gateway High,San Francisco Unified,San Francisco,763,6,16,0,18,3,31,1,23,4,36,25,0,5,20,12,N/A,N/A,21,72,13,19,21,31,16,3.2\r\n,,Acton-Agua Dulce Unified,Los Angeles,763,B,1,1,1,0,31,0,62,3,33,2,0,10,3,16,25,27,26,84,8,23,29,32,8,3.1\r\nD,Excelsior Education Center,Victor Valley Union High,San Bernardino,763,6,5,1,1,1,36,0,47,6,42,0,0,1,4,8,,,,90,6,24,37,23,11,3.08\r\n,Annalee Avenue Elementary,Los Angeles Unified,Los Angeles,763,3,83,1,1,1,11,2,1,0,75,2,0,4,1,15,13,7,N/A,75,5,18,49,23,5,3.04\r\n,Liberty Ranch High,Galt Joint Union High,Sacramento,763,6,1,1,2,0,42,1,48,5,44,12,2,4,19,10,N/A,N/A,27,93,11,18,40,22,9,2.99\r\n,Grand Oaks Elementary,San Juan Unified,Sacramento,763,3,7,0,1,1,37,2,51,1,73,2,0,19,5,21,24,31,N/A,75,13,24,39,19,5,2.79\r\n,Beaumont Senior High,Beaumont Unified,Riverside,763,6,6,1,3,3,47,1,38,0,57,9,0,6,17,9,N/A,N/A,32,77,10,30,40,15,5,2.75\r\n,Burney Elementary,Fall River Joint Unified,Shasta,763,3,0,11,2,0,16,1,66,2,62,0,5,3,4,11,17,26,N/A,92,12,31,37,15,5,2.69\r\n,Mt. Whitney High,Visalia Unified,Tulare,763,6,2,2,4,0,58,0,34,1,55,12,2,9,17,9,N/A,N/A,29,94,21,24,31,17,7,2.64\r\n,Monroe Elementary,Monrovia Unified,Los Angeles,763,3,8,1,2,3,73,1,10,2,77,8,0,15,12,9,28,34,N/A,100,17,31,29,18,6,2.64\r\n,West Creek Elementary,Adelanto Elementary,San Bernardino,763,3,22,0,2,1,56,4,10,2,85,14,0,19,6,15,29,30,N/A,98,15,36,30,13,6,2.62\r\n,Bret Harte Elementary,Sacramento City Unified,Sacramento,763,3,33,2,5,1,42,1,13,5,100,13,0,17,4,15,25,29,N/A,80,16,34,28,15,6,2.61\r\n,Genevieve M. Crosby Elementary,Garden Grove Unified,Orange,763,3,1,0,23,1,60,1,13,0,62,0,0,48,13,16,24,32,N/A,67,22,33,15,26,4,2.57\r\n,,Monterey Peninsula Unified,Monterey,763,B,7,0,6,4,53,3,21,5,65,4,0,27,18,11,23,27,24,99,27,28,20,15,11,2.57\r\n,Magnolia Junior High,Chino Valley Unified,San Bernardino,763,4,2,0,2,1,80,0,13,1,57,5,0,16,16,16,N/A,N/A,29,77,23,31,25,17,4,2.48\r\n,Hyatt Elementary,Riverside Unified,Riverside,763,3,16,0,3,0,64,0,16,0,84,8,1,21,14,14,25,33,N/A,95,27,26,28,10,9,2.48\r\n,Monroe Elementary,Santa Barbara Unified,Santa Barbara,763,3,1,0,1,1,76,0,20,1,67,2,0,54,0,19,26,26,N/A,97,34,20,23,13,11,2.46\r\n,,Cascade Union Elementary,Shasta,763,B,3,9,3,1,19,0,65,0,83,9,0,9,2,14,24,24,25,93,14,40,34,10,2,2.46\r\n,Teague Elementary,Central Unified,Fresno,763,3,16,1,10,0,65,0,6,1,88,3,1,27,15,8,29,30,N/A,98,22,31,31,13,3,2.44\r\n,Mojave Vista Elementary,Victor Elementary,San Bernardino,763,3,18,1,3,1,52,1,24,0,76,2,0,22,4,6,29,32,N/A,92,19,41,26,10,5,2.42\r\n,,Trona Joint Unified,San Bernardino,763,B,3,1,0,0,31,0,56,7,68,0,0,0,0,11,43,19,14,83,16,43,27,11,2,2.39\r\n,Marina Vista Elementary,Pittsburg Unified,Contra Costa,763,3,24,0,4,3,62,0,5,1,85,0,0,46,7,9,26,32,N/A,98,27,33,22,16,2,2.34\r\n,College Park Elementary,Newport-Mesa Unified,Orange,763,3,2,0,2,2,77,1,15,1,87,6,0,57,14,12,22,26,N/A,82,33,25,23,15,4,2.32\r\n,Marshall Academy of the Arts,Long Beach Unified,Los Angeles,763,4,15,0,6,2,66,1,8,1,80,10,1,27,30,11,N/A,26,27,81,36,26,19,13,6,2.28\r\n,Buena Park High,Fullerton Joint Union High,Orange,763,6,5,0,6,4,74,0,8,2,70,33,0,28,34,13,N/A,N/A,31,85,31,32,20,13,4,2.27\r\n,Alexander Fleming Middle,Los Angeles Unified,Los Angeles,763,4,15,0,2,5,68,2,7,0,78,13,0,12,29,11,N/A,31,29,69,31,30,23,11,4,2.27\r\n,Richard Haynes Elementary,Ontario-Montclair Elementary,San Bernardino,763,3,4,0,2,0,87,0,4,2,76,7,0,47,8,7,26,31,N/A,91,25,41,22,9,3,2.23\r\n,Conejo Middle,Laton Joint Unified,Fresno,763,4,0,0,0,0,84,0,1,0,80,20,1,34,29,15,N/A,21,N/A,66,29,36,17,18,0,2.23\r\n,Pyle Elementary,Fresno Unified,Fresno,763,3,12,1,11,0,62,0,11,0,100,1,1,22,11,8,28,30,N/A,72,24,37,32,4,2,2.22\r\n,Laurel Dell Elementary,San Rafael City Elementary,Marin,763,3,3,1,4,0,76,0,14,1,84,0,0,63,8,13,21,26,N/A,98,36,30,15,15,4,2.21\r\n,Will C. Wood Middle,Sacramento City Unified,Sacramento,763,4,12,1,37,1,40,2,5,3,100,8,0,27,37,11,N/A,N/A,27,91,35,30,19,10,5,2.2\r\n,Mountain View Middle,Chatom Union,Stanislaus,763,4,0,0,0,0,55,0,45,0,79,8,0,51,11,11,N/A,29,25,93,36,28,22,11,3,2.16\r\n,Wilson Elementary,Fresno Unified,Fresno,763,3,15,0,10,0,61,0,13,0,100,19,0,23,8,7,27,30,N/A,87,21,49,24,5,1,2.16\r\n,Chase Avenue Elementary,Cajon Valley Union,San Diego,763,3,7,0,1,1,42,1,43,1,81,4,0,54,6,3,24,32,N/A,73,25,46,21,7,1,2.14\r\n,Park View Elementary,Simi Valley Unified,Ventura,763,3,1,0,3,2,74,0,18,2,81,1,0,45,16,13,20,28,N/A,87,29,43,17,6,5,2.14\r\n,San Gabriel Avenue Elementary,Los Angeles Unified,Los Angeles,763,3,1,1,0,0,98,0,0,0,100,9,3,28,23,8,18,21,N/A,88,29,40,21,7,2,2.14\r\n,Oaks Middle,Ontario-Montclair Elementary,San Bernardino,763,4,4,0,3,1,84,0,5,2,77,13,0,27,27,9,N/A,N/A,27,96,33,37,20,7,3,2.11\r\n,Henry F. Kammann Elementary,Salinas City Elementary,Monterey,763,3,3,0,1,3,83,1,7,1,85,4,4,38,16,7,25,31,N/A,99,38,36,18,4,4,2\r\n,William R. Anton Elementary,Los Angeles Unified,Los Angeles,763,3,0,0,0,0,99,0,0,0,93,4,2,38,24,9,18,22,N/A,83,44,29,18,7,2,1.95\r\n,Teresa Hughes Elementary,Los Angeles Unified,Los Angeles,763,3,1,0,0,0,97,0,2,0,87,8,0,34,18,10,21,20,N/A,86,39,37,16,5,2,1.94\r\n,Malabar Street Elementary,Los Angeles Unified,Los Angeles,763,3,0,0,0,0,100,0,0,0,96,3,2,40,23,15,16,19,N/A,95,46,35,11,6,2,1.82\r\n,Kern Avenue Elementary,McFarland Unified,Kern,763,3,0,0,0,0,98,0,1,0,100,1,7,60,18,9,21,23,N/A,100,52,25,14,7,2,1.81\r\n,Kinoshita Elementary,Capistrano Unified,Orange,763,3,0,0,0,0,99,0,0,0,97,1,3,71,25,6,22,28,N/A,96,39,47,11,3,0,1.79\r\n,A. J. Dorsa Elementary,Alum Rock Union Elementary,Santa Clara,763,3,1,0,3,0,93,2,0,1,100,7,4,56,23,13,19,29,N/A,93,49,30,16,3,2,1.79\r\n,Middleton Street Elementary,Los Angeles Unified,Los Angeles,763,3,0,0,0,0,100,0,0,0,100,7,1,37,44,12,20,25,N/A,97,59,26,9,5,1,1.63\r\n,Fremont Elementary,Delano Union Elementary,Kern,763,3,0,0,0,7,93,0,0,0,85,5,17,63,15,10,20,29,N/A,97,56,28,14,2,0,1.62\r\n,Wilson Elementary,Santa Ana Unified,Orange,763,3,0,0,1,0,99,0,0,0,98,4,2,84,10,10,26,24,N/A,99,65,24,7,2,2,1.51\r\n,Lowell Elementary,Santa Ana Unified,Orange,763,3,0,0,0,0,100,0,0,0,100,4,1,84,9,8,25,25,N/A,90,69,22,7,2,0,1.43\r\n,El Tejon Elementary,El Tejon Unified,Kern,763,4,0,0,0,0,15,0,4,0,62,0,0,10,6,11,N/A,31,30,0,0,0,0,0,0,\r\nY,Twin Ridges Home Study Charter,Nevada County Office of Educat,Nevada,762,3,0,0,1,0,9,0,90,0,39,0,0,0,0,7,8,9,1,97,0,7,27,51,15,3.74\r\n,,Siskiyou Union High,Siskiyou,762,B,4,8,3,1,14,0,68,2,40,0,0,1,3,10,N/A,N/A,16,91,8,13,46,11,22,3.26\r\nD,Camptonville Academy,Camptonville Elementary,Yuba,762,3,3,2,1,1,14,0,79,0,37,6,0,1,3,11,2,7,3,99,3,17,47,24,9,3.2\r\n,,Sonora Union High,Tuolumne,762,B,1,3,1,0,13,0,81,1,41,7,0,0,1,10,N/A,N/A,29,94,5,24,39,20,11,3.08\r\nY,Mountain View Montessori Charter,Victor Elementary,San Bernardino,762,3,13,2,0,4,44,1,28,3,54,0,0,3,1,9,21,26,N/A,81,4,22,42,25,7,3.08\r\n,Charles Peck Elementary,San Juan Unified,Sacramento,762,3,17,0,3,1,23,1,51,3,77,4,0,12,3,18,26,30,N/A,51,5,21,43,21,10,3.08\r\n,Guinn (James M.) Elementary,Anaheim City,Orange,762,3,1,0,5,1,85,1,5,0,87,21,0,45,28,11,29,29,N/A,2,18,18,27,18,18,3\r\n,Montalvo Elementary,Ventura Unified,Ventura,762,3,1,0,0,1,77,0,19,2,100,9,2,39,3,5,25,34,N/A,96,18,21,28,16,17,2.93\r\nY,Academy of Careers and Exploration,Helendale Elementary,San Bernardino,762,6,12,0,2,4,28,0,53,1,40,0,0,3,3,10,N/A,N/A,19,91,6,23,51,15,4,2.89\r\n,Trinity High,Trinity Alps Unified,Trinity,762,6,1,6,1,0,8,1,77,7,50,1,0,0,1,11,N/A,N/A,22,89,3,34,43,14,6,2.86\r\n,South Tahoe High,Lake Tahoe Unified,El Dorado,762,6,2,2,2,5,36,0,52,1,51,8,0,15,14,11,N/A,N/A,26,91,15,35,17,21,13,2.81\r\n,Lorin A. Eden Elementary,Hayward Unified,Alameda,762,3,15,1,16,18,38,5,5,1,61,0,0,25,17,10,30,32,N/A,88,13,31,27,25,5,2.8\r\nD,iQ Academy California-Los Angeles,Rowland Unified,Los Angeles,762,6,25,0,5,2,39,0,26,2,40,0,0,0,0,2,9,5,7,99,15,27,35,18,5,2.71\r\n,Victress Bower School for Exceptional St,Corona-Norco Unified,Riverside,762,C,3,0,6,0,51,0,40,0,20,0,0,0,0,100,6,5,N/A,63,41,9,14,14,23,2.68\r\n,,Pasadena Unified,Los Angeles,762,B,16,0,3,2,61,0,14,3,70,14,0,19,20,13,24,26,21,89,26,24,20,17,13,2.67\r\n,Desert Garden Elementary,El Centro Elementary,Imperial,762,3,1,0,0,0,95,0,4,0,81,6,4,49,9,14,28,34,N/A,84,10,38,38,9,6,2.64\r\n,,San Benito High,San Benito,762,B,1,1,1,1,65,0,30,0,41,12,19,11,23,9,N/A,N/A,30,93,21,26,30,16,7,2.62\r\n,Heritage High,Perris Union High,Riverside,762,6,7,0,1,2,59,1,26,3,66,6,0,12,25,10,N/A,N/A,34,99,19,27,33,15,6,2.62\r\n,Ygnacio Valley Elementary,Mt. Diablo Unified,Contra Costa,762,3,7,0,3,4,73,1,10,1,82,1,0,51,14,11,19,21,N/A,64,20,35,23,14,8,2.56\r\n,Van Nuys Senior High,Los Angeles Unified,Los Angeles,762,6,4,0,15,7,62,0,11,0,82,31,0,18,45,10,N/A,N/A,30,61,31,24,16,22,7,2.51\r\n,Field Elementary,San Diego Unified,San Diego,762,3,3,0,5,3,77,1,7,3,100,21,0,43,23,15,21,37,N/A,91,15,42,24,14,5,2.51\r\n,Lakeside High,Lake Elsinore Unified,Riverside,762,6,5,1,1,2,64,1,26,0,66,12,0,9,28,12,N/A,N/A,29,97,19,34,28,14,5,2.5\r\n,Harding Elementary,El Centro Elementary,Imperial,762,3,1,0,0,0,96,0,3,0,85,3,9,50,10,9,25,33,N/A,71,16,39,33,6,7,2.5\r\nY,Walter L. Bachrodt Elementary,San Jose Unified,Santa Clara,762,3,1,1,4,4,78,1,7,2,70,1,0,46,11,11,20,21,N/A,84,29,22,26,15,7,2.49\r\n,,Thermalito Union Elementary,Butte,762,B,2,5,29,0,11,1,48,3,85,1,0,21,10,12,21,25,22,86,14,39,34,9,3,2.49\r\n,,Los Banos Unified,Merced,762,B,3,1,1,1,75,1,17,1,70,2,2,28,17,10,29,30,30,88,21,32,30,13,3,2.46\r\n,Dickson Elementary,Chino Valley Unified,San Bernardino,762,3,4,0,2,1,82,0,10,1,73,1,0,28,12,15,30,32,N/A,84,22,34,25,14,4,2.44\r\n,Barstow Junior High,Barstow Unified,San Bernardino,762,4,14,2,1,1,54,2,23,2,72,26,0,16,7,12,N/A,N/A,26,87,17,39,31,9,2,2.4\r\n,,Keppel Union Elementary,Los Angeles,762,B,6,0,0,0,76,0,16,1,82,4,2,31,13,9,22,28,28,64,27,33,24,10,6,2.37\r\n,Lucerne Valley Elementary,Lucerne Valley Unified,San Bernardino,762,3,3,2,2,2,38,1,52,0,77,0,0,1,0,16,18,20,N/A,85,17,48,24,8,3,2.31\r\n,Mill Street Elementary,Orland Joint Unified,Glenn,762,3,1,1,3,0,62,0,33,0,84,0,8,52,0,8,25,N/A,N/A,98,25,44,18,7,6,2.25\r\n,San Jose Elementary,Pomona Unified,Los Angeles,762,3,16,1,1,0,78,0,3,0,85,2,0,22,9,11,28,31,27,71,24,40,25,7,3,2.25\r\n,Phil D. Swing Elementary,Brawley Elementary,Imperial,762,3,1,0,0,0,94,0,5,0,86,8,15,46,5,11,27,29,N/A,100,28,33,29,8,2,2.23\r\n,Anna A. Borba Fundamental Elementary,Chino Valley Unified,San Bernardino,762,3,2,0,1,1,87,0,9,1,81,4,0,45,12,15,29,29,N/A,67,33,37,14,12,4,2.19\r\n,Scott Lane Elementary,Santa Clara Unified,Santa Clara,762,3,2,1,8,6,75,1,6,2,86,2,4,74,6,8,27,29,N/A,90,30,43,15,10,2,2.12\r\n,Indio Middle,Desert Sands Unified,Riverside,762,4,2,0,1,0,95,0,2,0,93,6,1,25,36,10,N/A,29,29,97,34,38,18,7,3,2.07\r\n,Livingston Middle,Livingston Union Elementary,Merced,762,4,0,0,13,1,80,0,6,0,87,0,8,28,43,11,N/A,26,24,96,43,29,16,11,0,1.97\r\n,Freedom Elementary,Pajaro Valley Unified,Santa Cruz,762,3,1,0,0,2,96,0,1,0,94,9,9,63,21,14,18,25,N/A,82,44,28,18,9,0,1.93\r\n,Tumbleweed Elementary,Palmdale Elementary,Los Angeles,762,3,14,1,0,1,78,0,5,1,94,7,1,40,10,8,26,27,N/A,94,42,33,20,4,1,1.9\r\n,Tommie Kunst Junior High,Santa Maria-Bonita,Santa Barbara,762,4,2,0,1,5,84,0,8,0,100,17,5,27,22,8,N/A,N/A,30,98,47,26,19,7,1,1.89\r\n,Wilson Elementary,Lynwood Unified,Los Angeles,762,3,4,0,0,0,95,0,1,0,94,7,2,43,26,14,21,27,N/A,83,46,31,14,6,3,1.88\r\n,Fairview Elementary,Modesto City Elementary,Stanislaus,762,3,2,1,4,0,86,1,4,2,94,3,5,64,10,7,23,33,N/A,99,36,48,12,2,2,1.86\r\n,Arlington Heights Elementary,Los Angeles Unified,Los Angeles,762,3,14,0,2,1,82,0,1,0,87,4,0,56,16,12,21,19,N/A,61,47,29,17,6,1,1.84\r\n,Humphreys Avenue Elementary,Los Angeles Unified,Los Angeles,762,3,0,1,0,0,99,0,0,0,94,8,2,48,18,6,20,23,N/A,78,47,34,11,5,3,1.82\r\n,Ritter Elementary,Los Angeles Unified,Los Angeles,762,3,15,0,0,0,84,0,0,0,100,5,0,42,13,7,18,18,N/A,56,41,47,7,5,2,1.8\r\n,Selma Olinder Elementary,San Jose Unified,Santa Clara,762,3,0,1,4,2,89,0,2,0,89,9,1,69,12,9,18,19,N/A,79,51,30,10,7,2,1.79\r\n,California Elementary,Orange Unified,Orange,762,3,0,0,1,1,94,0,4,0,92,0,0,78,7,11,30,32,N/A,89,48,34,12,5,1,1.77\r\n,Agua Caliente Elementary,Palm Springs Unified,Riverside,762,3,2,0,0,2,95,0,1,0,97,3,0,63,9,11,28,26,N/A,93,43,43,10,3,1,1.77\r\n,Euclid Elementary,Ontario-Montclair Elementary,San Bernardino,762,3,0,0,1,0,97,0,1,0,93,6,0,78,6,8,19,22,N/A,92,48,37,11,4,1,1.73\r\n,Union Avenue Elementary,Los Angeles Unified,Los Angeles,762,3,1,0,1,2,96,0,0,0,100,2,0,53,26,11,22,27,N/A,30,64,20,9,8,1,1.63\r\n,Esperanza Elementary,Oakland Unified,Alameda,762,3,1,0,0,0,99,0,0,0,37,65,1,82,13,5,18,18,N/A,46,60,27,11,2,0,1.55\r\n,Cogswell Elementary,Mountain View Elementary,Los Angeles,762,3,0,0,2,0,97,0,1,0,100,1,4,69,19,14,27,31,N/A,98,69,24,5,1,1,1.41\r\nD,Iftin Charter,San Diego Unified,San Diego,762,3,86,0,3,0,2,0,3,0,99,0,0,88,0,6,20,21,N/A,0,0,0,0,0,0,\r\n,Park Elementary,San Mateo-Foster City,San Mateo,761,3,3,0,4,6,48,2,31,4,51,1,0,41,6,7,25,30,N/A,98,18,23,20,20,19,3\r\n,Polytechnic High,Riverside Unified,Riverside,761,5,9,0,2,1,51,0,35,0,50,10,0,8,14,8,N/A,N/A,31,98,18,17,31,18,16,2.96\r\n,John F. Kennedy High,Sacramento City Unified,Sacramento,761,5,17,1,29,2,28,2,13,8,58,17,0,14,20,11,N/A,N/A,27,93,17,28,23,21,12,2.82\r\n,Vintage High,Napa Valley Unified,Napa,761,5,1,1,1,1,50,0,42,4,37,16,4,8,31,10,N/A,N/A,28,96,20,21,28,21,10,2.79\r\n,Escalon High,Escalon Unified,San Joaquin,761,5,1,0,2,0,42,0,52,1,37,6,12,6,25,7,N/A,N/A,29,90,17,27,33,13,11,2.73\r\n,Joshua Tree Elementary,Morongo Unified,San Bernardino,761,3,8,0,1,1,28,0,55,5,82,4,0,5,3,17,25,27,N/A,92,13,33,38,9,7,2.66\r\n,,Lodi Unified,San Joaquin,761,B,8,1,17,5,40,1,26,1,67,14,2,26,13,12,23,26,25,81,19,29,28,16,8,2.64\r\n,Lincoln Middle,Oceanside Unified,San Diego,761,4,3,1,1,2,61,1,30,1,68,12,4,14,29,15,N/A,29,29,80,21,22,33,16,6,2.64\r\n,Abraham Lincoln High,San Jose Unified,Santa Clara,761,5,3,0,4,2,70,0,18,2,56,14,1,18,31,8,N/A,N/A,29,92,27,24,22,16,11,2.61\r\n,Central Valley High,Gateway Unified,Shasta,761,5,1,8,4,0,9,0,74,3,61,8,0,1,5,12,N/A,N/A,24,97,13,35,34,12,5,2.61\r\n,,Del Norte County Unified,Del Norte,761,B,1,13,7,1,20,0,57,1,64,14,0,10,6,14,20,24,28,93,15,33,36,10,6,2.61\r\n,Briggs Elementary,Briggs Elementary,Ventura,761,4,0,0,0,0,85,0,14,0,72,3,4,24,19,9,N/A,32,N/A,89,16,38,26,11,9,2.59\r\nY,Global College Prep Charter High,Center Joint Unified,Sacramento,761,5,18,4,2,2,47,0,25,2,75,0,0,8,18,12,N/A,N/A,14,96,18,29,31,20,2,2.59\r\n,,South Bay Union Elementary,Humboldt,761,B,3,13,7,0,18,2,57,0,66,2,0,11,8,17,6,6,10,98,17,33,31,13,6,2.57\r\n,Lockeford Elementary,Lodi Unified,San Joaquin,761,3,1,2,1,1,49,0,45,0,61,16,2,28,6,18,24,23,26,88,21,30,28,14,6,2.55\r\n,,Waukena Joint Union Elementary,Tulare,761,B,1,0,0,0,78,0,20,0,80,0,2,48,2,1,18,24,N/A,94,26,26,28,13,7,2.48\r\n,Waukena Joint Union Elementary,Waukena Joint Union Elementary,Tulare,761,3,1,0,0,0,78,0,20,0,80,0,2,48,2,1,18,24,N/A,94,26,26,28,13,7,2.48\r\nD,Santa Rosa Charter Academy,Los Angeles Unified,Los Angeles,761,4,1,0,0,3,93,0,2,0,84,9,0,15,33,11,N/A,27,29,95,21,32,33,12,2,2.42\r\n,,Tulare Joint Union High,Tulare,761,B,4,1,2,0,69,0,24,0,66,14,7,15,22,7,N/A,N/A,27,88,26,29,31,10,4,2.37\r\n,Albert F. Biella Elementary,Santa Rosa City Schools,Sonoma,761,3,0,1,6,1,65,0,22,5,69,4,6,49,7,17,21,28,N/A,98,27,33,23,15,3,2.35\r\n,,Hemet Unified,Riverside,761,B,8,1,1,1,50,1,35,3,76,4,0,13,7,14,26,29,29,100,25,33,29,8,5,2.35\r\n,Park Hill Elementary,San Jacinto Unified,Riverside,761,3,10,1,1,1,66,1,18,2,80,1,0,36,3,10,29,28,N/A,95,22,36,31,7,3,2.34\r\n,Sussman Middle,Downey Unified,Los Angeles,761,4,5,0,1,1,88,0,5,0,77,4,0,15,22,12,N/A,28,23,100,21,42,23,12,3,2.32\r\n,Gavilan View Middle,Santa Rita Union Elementary,Monterey,761,4,4,0,3,6,72,0,14,0,72,0,3,23,28,15,N/A,26,29,90,30,33,18,16,4,2.31\r\n,Conejo Elementary,Conejo Valley Unified,Ventura,761,3,4,0,2,0,76,0,16,2,76,5,0,57,13,13,20,28,N/A,90,32,37,10,13,8,2.28\r\n,Harder Elementary,Hayward Unified,Alameda,761,3,9,0,5,4,74,3,4,0,82,0,0,46,18,7,26,29,N/A,80,24,38,25,12,1,2.28\r\n,Cleo Gordon Elementary,Fairfield-Suisun Unified,Solano,761,3,24,0,2,3,54,0,10,5,90,2,1,35,11,13,30,34,N/A,98,19,42,32,8,0,2.28\r\n,Rancho Viejo Middle,Hemet Unified,Riverside,761,4,11,1,1,2,58,0,24,3,83,3,0,11,13,13,N/A,29,30,100,27,35,26,10,3,2.27\r\n,Frederick Joyce Elementary,Twin Rivers Unified,Sacramento,761,3,19,3,3,2,34,1,31,4,88,16,0,17,9,13,27,28,28,87,21,40,31,7,1,2.27\r\n,,Pierce Joint Unified,Colusa,761,B,2,1,1,0,70,0,25,0,72,4,15,29,30,12,23,25,20,97,37,26,21,9,6,2.21\r\n,Ramona Elementary,Hemet Unified,Riverside,761,3,6,1,1,0,61,0,29,3,85,0,0,22,3,16,25,28,N/A,100,28,36,29,4,4,2.2\r\n,John F. Kennedy Middle,Redwood City Elementary,San Mateo,761,4,2,0,2,2,75,3,15,0,69,7,2,31,30,13,N/A,26,27,98,39,26,19,11,6,2.17\r\n,Lindbergh Middle,Long Beach Unified,Los Angeles,761,4,22,0,7,1,64,3,1,0,88,5,0,26,25,9,N/A,33,27,87,31,36,20,10,3,2.16\r\n,Robert M. Pyles Elementary,Magnolia Elementary,Orange,761,3,1,0,11,1,83,1,2,1,92,4,0,60,25,13,23,29,N/A,60,44,25,12,12,7,2.11\r\n,Dos Palos Elementary,Dos Palos Oro Loma Joint Unifi,Merced,761,3,4,1,0,0,75,0,20,0,99,0,6,47,3,5,28,N/A,N/A,97,34,33,25,4,3,2.09\r\n,Preston Elementary,Rialto Unified,San Bernardino,761,3,22,1,1,0,72,0,3,1,91,7,0,33,14,8,23,29,N/A,89,35,36,18,9,1,2.06\r\n,Central Valley High,Ceres Unified,Stanislaus,761,5,3,1,6,1,74,1,15,1,78,4,5,23,29,9,N/A,N/A,30,98,36,37,17,8,2,2.03\r\n,Tracy Elementary,Baldwin Park Unified,Los Angeles,761,3,1,0,6,4,86,0,3,0,90,10,1,38,14,13,18,28,N/A,74,34,41,18,5,2,2.02\r\n,Wyandotte Avenue Elementary,Oroville City Elementary,Butte,761,3,8,7,33,1,14,0,32,4,100,0,0,29,5,26,17,24,N/A,87,35,34,25,6,1,2.02\r\n,Steele Lane Elementary,Santa Rosa City Schools,Sonoma,761,3,3,1,6,0,74,2,12,2,87,4,3,59,14,11,22,22,N/A,91,39,37,11,8,4,2\r\n,Cesar Chavez Elementary,Los Angeles Unified,Los Angeles,761,3,1,0,2,0,97,0,0,0,92,4,0,22,22,18,17,19,N/A,95,40,34,17,6,2,1.97\r\n,One Hundred Thirty-Fifth Street Elementa,Los Angeles Unified,Los Angeles,761,3,11,0,0,0,87,1,0,0,97,8,0,47,24,12,19,22,N/A,71,45,31,14,7,3,1.93\r\n,Riverdale High,Riverdale Joint Unified,Fresno,761,5,1,0,1,0,83,0,14,0,2,0,37,13,50,10,N/A,N/A,1,97,48,31,12,7,2,1.85\r\n,Bubbling Wells Elementary,Palm Springs Unified,Riverside,761,3,4,1,0,0,87,0,7,0,93,1,0,50,7,5,25,28,N/A,93,42,39,14,2,3,1.83\r\nD,ACE Charter,Santa Clara County Office of E,Santa Clara,761,4,2,0,1,1,95,0,0,1,95,0,0,53,32,10,N/A,29,29,87,47,33,13,6,1,1.8\r\n,Edison-Brentwood Elementary,Ravenswood City Elementary,San Mateo,761,3,12,0,0,0,77,9,1,1,92,0,7,68,5,10,23,28,N/A,95,52,29,16,3,0,1.72\r\n,Ford Elementary,West Contra Costa Unified,Contra Costa,761,3,7,0,5,3,82,2,1,0,99,8,0,63,17,8,21,31,N/A,91,48,42,8,1,0,1.65\r\n,Potrero Elementary,El Monte City Elementary,Los Angeles,761,3,0,0,9,0,91,0,0,0,98,10,1,54,22,7,28,27,23,100,54,35,9,1,0,1.58\r\n,Urban Promise Academy,Oakland Unified,Alameda,761,4,3,0,3,1,92,0,2,0,35,17,2,45,40,6,N/A,21,22,39,64,22,8,2,2,1.56\r\n,Laguna Creek High,Elk Grove Unified,Sacramento,760,5,23,1,19,7,21,2,22,5,50,10,0,10,19,9,N/A,N/A,29,90,7,25,31,24,14,3.12\r\n,Greenville Elementary,Plumas Unified,Plumas,760,3,1,11,1,0,18,0,61,8,54,11,0,0,0,19,,,,97,6,24,40,18,13,3.08\r\n,Vacaville High,Vacaville Unified,Solano,760,5,7,1,3,2,27,1,56,3,29,10,1,4,10,8,N/A,N/A,28,96,7,29,28,23,12,3.04\r\n,Harriet G. Eddy Middle,Elk Grove Unified,Sacramento,760,4,21,1,12,5,25,1,28,6,54,6,0,8,12,15,N/A,N/A,27,86,8,26,33,24,9,3\r\n,Encinal High,Alameda City Unified,Alameda,760,5,17,1,27,15,15,2,21,3,53,4,0,25,12,11,N/A,N/A,29,96,11,24,30,25,10,2.99\r\n,Los Berros Elementary,Lompoc Unified,Santa Barbara,760,3,3,1,3,0,47,0,37,9,59,9,0,11,4,21,17,19,N/A,97,12,28,32,16,12,2.88\r\n,Elsinore High,Lake Elsinore Unified,Riverside,760,5,6,1,2,3,48,1,40,0,50,14,0,6,19,14,N/A,N/A,31,98,15,27,35,16,8,2.75\r\n,,Liberty Elementary,Tulare,760,B,2,0,1,0,57,1,39,0,45,0,4,22,4,5,22,32,N/A,18,12,27,39,21,0,2.7\r\n,Liberty Elementary,Liberty Elementary,Tulare,760,3,2,0,1,0,57,1,39,0,45,0,4,22,4,5,22,32,N/A,18,12,27,39,21,0,2.7\r\n,Mountain Vista Elementary,Coachella Valley Unified,Riverside,760,3,1,0,1,1,92,0,5,0,99,10,2,44,7,7,27,26,N/A,97,16,39,28,11,6,2.52\r\nY,Blackford Elementary,Campbell Union,Santa Clara,760,3,5,0,7,3,74,1,8,1,78,7,0,57,7,9,21,30,N/A,95,18,39,23,16,4,2.5\r\n,South Fortuna Elementary,Fortuna Union Elementary,Humboldt,760,3,0,5,1,0,43,0,50,0,76,1,2,29,0,29,25,24,N/A,82,24,33,28,9,6,2.4\r\n,\"Martin Luther King, Jr. Middle\",Hayward Unified,Alameda,760,4,11,1,9,9,60,6,4,0,78,12,2,21,35,9,N/A,N/A,30,81,22,35,25,14,3,2.4\r\nY,Sunset Elementary,Fresno Unified,Fresno,760,3,8,0,0,1,88,0,3,0,100,1,4,45,10,6,28,31,15,76,33,21,30,9,7,2.35\r\n,Capistrano Elementary,Empire Union Elementary,Stanislaus,760,3,9,1,3,1,60,1,23,1,96,2,0,32,8,13,23,28,N/A,85,20,42,27,6,4,2.32\r\n,Citrus Hill High,Val Verde Unified,Riverside,760,5,11,0,1,1,77,0,8,2,80,12,0,16,35,10,N/A,N/A,31,85,37,26,20,11,6,2.22\r\n,,Death Valley Unified,Inyo,760,B,0,4,0,0,26,0,62,9,70,0,0,13,0,11,1,2,1,62,34,34,10,17,3,2.21\r\n,Felix J. Appleby Elementary,Palo Verde Unified,Riverside,760,3,10,1,0,0,66,0,23,0,78,2,1,13,6,11,19,23,N/A,73,28,37,26,6,3,2.2\r\n,Kimball Elementary,Antioch Unified,Contra Costa,760,3,20,1,3,1,60,1,15,0,84,0,0,38,6,7,25,32,N/A,61,28,41,21,4,5,2.17\r\nD,Accelerated Elementary Charter,Los Angeles Unified,Los Angeles,760,3,6,0,0,0,93,0,1,0,56,0,0,47,30,11,,,,96,34,36,11,19,0,2.15\r\n,Lazear Elementary,Oakland Unified,Alameda,760,3,3,0,3,0,93,0,0,0,31,26,24,73,17,8,27,32,N/A,49,34,31,27,5,3,2.12\r\n,,Winship-Robbins,Sutter,760,B,0,0,4,0,69,0,27,0,78,2,4,31,24,13,11,11,N/A,83,31,39,21,6,4,2.12\r\n,Walnut Elementary,La Habra City Elementary,Orange,760,3,2,0,1,1,89,0,6,0,79,6,0,44,18,12,29,31,N/A,67,35,34,18,9,3,2.11\r\n,Fairview Elementary,Greenfield Union,Kern,760,3,3,0,0,0,92,0,4,0,84,3,18,47,23,7,24,28,N/A,64,28,46,15,7,3,2.11\r\n,Aldama Elementary,Los Angeles Unified,Los Angeles,760,3,0,1,1,1,95,0,2,0,88,8,0,44,24,9,19,22,N/A,94,30,44,17,4,5,2.1\r\n,Calipatria High,Calipatria Unified,Imperial,760,5,3,0,1,1,85,0,9,1,100,5,31,28,19,8,N/A,N/A,22,99,34,32,26,5,3,2.09\r\n,Willow Elementary,San Ysidro Elementary,San Diego,760,3,1,0,0,0,97,0,1,0,86,8,2,72,13,10,26,29,N/A,92,35,42,13,8,3,2.03\r\n,Sanchez Elementary,San Francisco Unified,San Francisco,760,3,5,1,4,2,82,0,3,1,83,0,1,74,4,28,18,14,N/A,94,31,46,17,3,3,2.01\r\n,Ninety-Fifth Street Elementary,Los Angeles Unified,Los Angeles,760,3,30,0,0,0,70,0,0,0,100,4,0,38,20,12,21,21,N/A,77,43,28,21,6,3,1.98\r\n,,Bassett Unified,Los Angeles,760,B,1,0,2,1,95,0,1,0,85,9,0,34,20,13,22,28,27,82,39,37,14,9,1,1.97\r\n,Julie Korenstein Elementary,Los Angeles Unified,Los Angeles,760,3,4,0,1,1,91,0,4,0,100,6,0,47,17,8,21,25,N/A,87,48,30,12,9,2,1.87\r\n,,Delano Union Elementary,Kern,760,B,0,0,1,12,85,0,1,0,77,7,13,45,19,9,21,26,22,96,47,33,16,4,0,1.78\r\n,Lennox Middle,Lennox,Los Angeles,760,4,1,0,0,0,97,0,0,0,88,8,0,39,41,12,N/A,20,20,72,53,30,10,4,3,1.75\r\n,Gerald P. Carr Intermediate,Santa Ana Unified,Orange,760,4,0,0,1,0,98,0,1,0,100,10,4,51,36,12,N/A,33,31,96,67,22,9,2,1,1.48\r\n,Seventy-Fifth Street Elementary,Los Angeles Unified,Los Angeles,760,3,14,0,0,0,86,0,0,0,87,6,0,45,23,11,17,20,N/A,85,78,15,4,2,1,1.33\r\n,,Gerber Union Elementary,Tehama,760,B,0,6,0,0,59,0,34,1,79,0,0,50,2,12,20,26,N/A,1,100,0,0,0,0,1\r\nD,Dehesa Charter,Dehesa Elementary,San Diego,759,3,5,1,3,1,15,0,67,7,9,1,0,2,1,6,6,6,8,80,1,11,27,32,29,3.76\r\nD,Learning Choice Academy,San Diego Unified,San Diego,759,3,6,2,3,5,42,0,42,0,49,0,0,5,7,11,3,3,5,93,4,18,28,29,21,3.46\r\nY,Valley Oaks Charter,Kern County Office of Educatio,Kern,759,3,2,2,1,0,19,0,73,1,1,0,0,2,1,4,N/A,2,N/A,94,3,16,37,27,18,3.4\r\nY,Merced Scholars Charter,Merced County Office of Educat,Merced,759,5,4,0,1,1,47,0,42,4,0,0,0,3,14,1,,,,92,6,14,38,32,11,3.27\r\n,Susan H. Nelson High,Temecula Valley Unified,Riverside,759,5,2,1,1,1,34,0,56,5,11,5,0,1,5,1,,,,96,5,18,41,28,9,3.17\r\n,Emerson Elementary,Oakland Unified,Alameda,759,3,58,1,6,0,21,1,5,6,64,47,0,17,5,19,20,24,N/A,43,9,21,33,20,17,3.16\r\n,Silver Valley High,Silver Valley Unified,San Bernardino,759,5,17,3,0,2,28,2,44,3,37,0,0,3,2,5,N/A,N/A,19,98,4,28,36,22,10,3.06\r\n,Temescal Canyon High,Lake Elsinore Unified,Riverside,759,5,6,1,4,3,42,1,43,0,45,16,0,4,15,10,N/A,N/A,31,98,9,21,38,24,8,3.02\r\n,,Dixon Unified,Solano,759,B,2,0,1,1,54,0,38,2,51,5,4,20,20,10,29,29,27,93,13,27,33,20,8,2.83\r\n,Summit High,Fontana Unified,San Bernardino,759,5,15,0,2,4,69,0,9,0,67,12,0,14,25,10,N/A,N/A,28,93,17,27,28,19,8,2.75\r\n,,Alvina Elementary,Fresno,759,B,1,4,2,0,68,1,24,0,73,0,0,14,16,8,20,22,N/A,83,13,28,39,16,4,2.71\r\nY,Alvina Elementary Charter,Alvina Elementary,Fresno,759,3,1,4,2,0,68,1,24,0,73,0,0,14,16,8,20,22,N/A,83,13,28,39,16,4,2.71\r\n,Isabelle Jackson Elementary,Elk Grove Unified,Sacramento,759,3,21,0,24,3,31,3,9,7,77,3,0,25,14,13,22,26,N/A,97,12,36,31,14,8,2.7\r\n,,Oroville City Elementary,Butte,759,B,4,6,11,0,16,0,54,9,76,3,0,9,4,17,23,22,25,94,16,28,39,12,6,2.65\r\n,Carpinteria Senior High,Carpinteria Unified,Santa Barbara,759,5,1,0,3,1,72,0,22,1,59,6,2,24,27,8,N/A,N/A,26,85,26,22,26,17,10,2.63\r\nD,Magnolia Science Academy 2,Los Angeles Unified,Los Angeles,759,4,4,0,3,4,71,1,12,4,66,0,0,11,33,12,,,,95,21,32,19,20,9,2.63\r\n,Orchard Elementary,Twin Rivers Unified,Sacramento,759,3,3,1,3,1,28,1,60,3,71,11,0,19,9,19,28,33,29,90,11,39,31,15,4,2.61\r\n,Napa High,Napa Valley Unified,Napa,759,5,0,1,1,0,54,0,40,3,40,17,4,15,32,10,N/A,N/A,28,95,31,21,19,18,11,2.58\r\n,Palm Middle,Moreno Valley Unified,Riverside,759,4,20,0,1,1,61,1,14,1,73,10,1,14,18,13,N/A,32,28,90,17,32,33,13,4,2.55\r\n,San Joaquin Elementary,Stockton Unified,San Joaquin,759,3,13,2,5,15,60,1,4,0,84,8,1,26,19,10,31,30,31,88,19,33,27,15,5,2.55\r\n,Desert View Elementary,Lancaster Elementary,Los Angeles,759,3,31,0,1,4,46,0,16,1,81,6,0,22,4,9,30,28,N/A,99,21,29,33,14,3,2.5\r\n,Jellick Elementary,Rowland Unified,Los Angeles,759,3,3,0,22,6,63,1,6,0,77,5,0,32,19,11,20,28,N/A,89,18,37,29,12,4,2.47\r\n,Olivehurst Elementary,Marysville Joint Unified,Yuba,759,3,2,2,11,1,46,1,36,0,82,2,1,41,5,11,20,29,N/A,59,19,34,39,4,4,2.4\r\n,Los Molinos High,Los Molinos Unified,Tehama,759,5,0,1,0,0,48,0,48,2,69,0,0,6,32,6,N/A,N/A,22,94,25,27,35,9,3,2.39\r\n,Rio Vista Elementary,Mt. Diablo Unified,Contra Costa,759,3,12,0,2,2,74,1,6,3,90,2,0,52,15,9,30,32,N/A,58,17,46,25,9,4,2.37\r\n,Central Language Academy,Ontario-Montclair Elementary,San Bernardino,759,3,2,0,0,0,94,0,3,1,83,9,0,55,9,9,19,22,27,94,30,31,20,9,9,2.36\r\n,Godfrey G. Berry Elementary,South Bay Union Elementary,San Diego,759,3,4,0,0,6,86,0,3,1,88,3,0,58,10,13,25,28,N/A,92,22,37,26,10,4,2.36\r\n,,Maxwell Unified,Colusa,759,B,0,3,1,0,49,0,44,1,58,16,5,26,11,9,22,24,16,93,31,26,26,12,4,2.32\r\n,San Ysidro High,Sweetwater Union High,San Diego,759,5,2,1,1,2,93,0,2,0,80,7,1,42,36,11,N/A,N/A,29,92,29,35,18,13,5,2.31\r\n,John Reed Elementary,Cotati-Rohnert Park Unified,Sonoma,759,3,2,1,2,1,71,0,20,3,80,0,0,51,14,17,30,28,N/A,99,24,37,26,11,2,2.3\r\n,Modesto High,Modesto City High,Stanislaus,759,5,4,0,11,1,61,1,15,4,68,9,1,16,30,11,N/A,N/A,28,96,33,35,16,8,9,2.24\r\n,Maple Elementary,Fontana Unified,San Bernardino,759,3,7,0,1,0,84,0,7,0,100,2,0,41,9,13,21,29,N/A,80,29,33,26,10,3,2.24\r\n,Von Renner Elementary,Newman-Crows Landing Unified,Stanislaus,759,3,0,0,0,0,78,0,19,0,85,4,6,57,5,7,28,29,N/A,86,24,43,24,7,2,2.19\r\n,Nicolet Middle,Banning Unified,Riverside,759,4,11,5,6,1,62,0,13,2,88,5,0,15,21,9,N/A,N/A,24,87,35,27,25,11,2,2.17\r\n,Edison (Thomas) Elementary,Anaheim City,Orange,759,3,0,0,1,1,96,0,2,0,96,22,3,62,26,10,29,31,N/A,5,33,47,8,6,6,2.03\r\n,Vineyard Elementary,Ontario-Montclair Elementary,San Bernardino,759,3,2,1,1,1,90,1,3,1,84,5,0,53,9,8,29,28,23,99,40,33,18,6,3,2\r\n,Lampson Elementary,Orange Unified,Orange,759,3,1,0,16,1,76,1,5,0,88,0,1,73,5,8,29,34,N/A,96,40,34,17,7,3,1.98\r\n,Wilson Elementary,Dinuba Unified,Tulare,759,3,0,0,1,0,95,0,4,0,99,5,6,54,11,4,20,20,N/A,99,45,28,17,6,5,1.98\r\n,Wilmington Middle,Los Angeles Unified,Los Angeles,759,4,1,0,0,0,95,1,2,0,89,9,0,20,35,14,N/A,24,21,74,41,33,19,5,3,1.96\r\n,Longfellow Elementary,Compton Unified,Los Angeles,759,3,21,0,0,0,75,3,1,0,90,1,0,39,25,9,19,23,N/A,87,47,28,19,4,2,1.84\r\n,Canoga Park Elementary,Los Angeles Unified,Los Angeles,759,3,4,0,2,2,89,0,3,0,100,7,0,49,27,11,22,23,N/A,76,50,29,12,7,1,1.8\r\n,,Mountain View Elementary,Los Angeles,759,B,0,0,6,0,93,0,1,0,99,3,6,55,20,12,28,30,30,96,48,37,10,3,1,1.72\r\n,Kettleman City Elementary,Reef-Sunset Unified,Kings,759,3,0,0,1,0,99,0,0,0,100,3,12,47,43,7,21,29,27,76,56,25,14,3,1,1.68\r\n,South Park Elementary,Los Angeles Unified,Los Angeles,759,3,17,0,0,0,83,0,0,0,100,6,0,42,23,11,19,23,N/A,82,54,31,10,3,2,1.67\r\n,Heroes Elementary,Santa Ana Unified,Orange,759,3,0,0,0,0,100,0,0,0,100,5,3,85,9,7,27,34,N/A,100,63,28,6,3,1,1.52\r\n,Oak Knoll Alternative,Charter Oak Unified,Los Angeles,758,3,1,2,2,0,40,1,48,5,12,5,0,2,1,4,15,22,12,92,1,18,26,32,23,3.59\r\n,Yosemite High,Yosemite Unified,Madera,758,5,0,5,2,1,14,0,72,5,35,13,0,0,2,13,N/A,N/A,28,96,4,14,33,31,18,3.44\r\nD,California Virtual Academy @ Kings,Armona Union Elementary,Kings,758,3,5,1,1,0,23,1,68,0,39,0,0,0,0,9,1,1,5,93,2,17,37,27,17,3.39\r\n,Fairmount Elementary,San Francisco Unified,San Francisco,758,3,5,0,2,2,68,1,13,4,60,11,4,52,4,16,20,21,N/A,90,16,25,19,19,21,3.03\r\n,Millikan High,Long Beach Unified,Los Angeles,758,5,9,0,4,4,57,1,26,0,52,0,1,13,30,9,N/A,N/A,27,83,17,23,21,28,11,2.91\r\n,Joseph A. Gregori High,Modesto City High,Stanislaus,758,5,2,0,5,2,48,2,33,5,42,19,1,12,16,10,N/A,N/A,29,97,11,31,32,17,9,2.82\r\n,Rio Vista High,River Delta Joint Unified,Sacramento,758,5,2,1,1,1,33,0,62,1,38,10,5,15,9,10,N/A,N/A,21,94,14,27,38,15,6,2.71\r\n,Eugene Padan Elementary,Vacaville Unified,Solano,758,3,10,1,1,3,48,2,31,3,67,6,0,25,6,13,26,24,N/A,93,13,31,35,17,4,2.67\r\n,Napa Junction Elementary,Napa Valley Unified,Napa,758,3,7,1,2,16,55,1,13,5,61,2,1,23,23,11,28,29,N/A,95,14,33,31,18,4,2.64\r\n,,Taft City,Kern,758,B,1,1,1,0,44,1,51,1,72,0,4,14,13,13,26,23,20,74,14,26,43,17,0,2.63\r\n,Pine Hill Elementary,South Bay Union Elementary,Humboldt,758,3,4,10,11,0,19,0,56,0,76,0,0,19,5,14,18,N/A,N/A,99,16,35,30,11,8,2.62\r\n,,Manteca Unified,San Joaquin,758,B,9,1,7,7,49,1,25,1,64,4,2,17,17,11,28,30,26,86,14,38,26,18,4,2.6\r\n,Jack Northrop Elementary,Lancaster Elementary,Los Angeles,758,3,30,0,4,1,51,0,11,1,81,7,0,24,4,7,28,33,N/A,100,21,25,34,16,5,2.58\r\n,Arlington High,Riverside Unified,Riverside,758,5,7,1,3,1,62,0,24,0,65,5,0,10,21,11,N/A,N/A,30,96,24,25,34,12,5,2.51\r\n,Taft Union High,Taft Union High,Kern,758,5,1,2,0,0,40,2,53,2,45,0,2,9,21,8,N/A,N/A,18,100,20,27,41,7,4,2.48\r\n,,Dunsmuir Elementary,Siskiyou,758,B,1,2,0,0,16,0,70,12,79,5,0,0,2,15,1,1,N/A,100,13,44,33,4,6,2.46\r\n,,Standard Elementary,Kern,758,B,1,2,0,1,20,0,74,1,71,2,0,3,3,11,22,25,26,25,20,34,36,7,3,2.4\r\n,Fowler High,Fowler Unified,Fresno,758,5,1,0,10,0,78,0,10,0,75,3,0,19,18,5,N/A,N/A,26,99,29,23,28,17,3,2.4\r\n,Frazier Park Elementary,El Tejon Unified,Kern,758,3,0,0,0,0,23,0,9,1,68,0,0,20,0,10,29,22,N/A,18,22,39,19,19,0,2.36\r\n,El Toyon Elementary,National Elementary,San Diego,758,3,6,0,2,8,83,1,1,0,100,18,0,73,2,11,22,32,N/A,81,32,29,25,12,2,2.24\r\n,Westwood Elementary,Lodi Unified,San Joaquin,758,3,15,0,38,4,37,1,2,2,93,9,1,45,11,11,26,27,N/A,85,20,50,22,7,2,2.22\r\n,Pierce High,Pierce Joint Unified,Colusa,758,5,2,2,0,0,68,1,26,1,66,9,17,14,39,15,N/A,N/A,20,95,38,22,27,9,4,2.19\r\n,,Porterville Unified,Tulare,758,B,1,3,2,1,77,0,16,1,75,4,9,24,19,5,23,31,26,94,42,23,23,8,4,2.09\r\n,Woodland Prairie Elementary,Woodland Joint Unified,Yolo,758,3,2,0,9,0,80,0,8,1,89,8,10,55,19,8,29,28,N/A,89,39,27,23,9,2,2.09\r\n,Berylwood Elementary,Simi Valley Unified,Ventura,758,3,0,0,1,1,79,0,17,1,81,0,0,53,14,12,20,29,N/A,73,36,37,14,11,2,2.08\r\n,Robbins Elementary,Winship-Robbins,Sutter,758,3,0,0,5,0,74,0,22,0,81,2,5,32,26,9,19,17,N/A,82,36,36,20,4,4,2.07\r\n,Western Avenue Elementary,Los Angeles Unified,Los Angeles,758,3,28,0,0,0,71,0,0,0,100,3,0,38,15,15,14,18,N/A,66,40,28,24,7,1,2.01\r\n,Paramount Park Middle,Paramount Unified,Los Angeles,758,4,9,0,0,1,88,0,1,0,93,5,0,30,36,10,N/A,28,28,96,43,32,17,5,4,1.95\r\n,Wilson Elementary,San Bernardino City Unified,San Bernardino,758,3,11,0,1,1,81,0,5,0,96,6,0,43,9,7,19,24,N/A,55,40,36,18,4,2,1.92\r\n,Brook Hill Elementary,Santa Rosa City Schools,Sonoma,758,3,3,3,3,2,73,1,13,1,90,5,4,61,9,16,20,29,N/A,96,47,26,19,5,3,1.9\r\n,Clyde L. Fischer Middle,Alum Rock Union Elementary,Santa Clara,758,4,3,0,7,3,84,3,1,0,100,20,2,34,43,11,N/A,23,22,95,48,29,13,8,3,1.9\r\n,Elwin Elementary,Baldwin Park Unified,Los Angeles,758,3,0,0,5,2,92,0,1,0,94,4,2,48,19,21,16,21,N/A,73,43,37,13,5,2,1.86\r\n,Maxson Elementary,Mountain View Elementary,Los Angeles,758,3,0,0,3,0,96,0,0,0,100,2,4,51,20,6,29,29,N/A,89,40,45,10,5,0,1.8\r\n,Olive Street Elementary,Anaheim City,Orange,758,3,1,0,0,0,95,0,2,0,97,9,1,73,17,15,28,29,N/A,6,52,21,24,3,0,1.79\r\nD,Lighthouse Community Charter High,Oakland Unified,Alameda,758,5,13,0,3,1,80,0,2,1,84,0,0,41,33,12,,,,99,57,18,18,5,2,1.78\r\n,Cardozo Middle,Riverbank Unified,Stanislaus,758,4,2,1,0,0,77,0,20,0,81,5,5,38,19,8,N/A,26,23,96,44,41,11,3,1,1.77\r\n,Evergreen Avenue Elementary,Los Angeles Unified,Los Angeles,758,3,0,1,0,0,98,0,0,0,100,3,1,38,30,11,18,17,N/A,82,55,25,12,5,3,1.75\r\n,Park Avenue Elementary,Perris Elementary,Riverside,758,3,7,0,1,0,87,2,3,0,100,5,0,54,8,8,20,21,N/A,89,48,32,18,2,0,1.74\r\n,Sunnyside Elementary,Sunnyside Union Elementary,Tulare,758,3,0,0,0,0,89,0,11,0,90,0,2,33,30,3,20,21,N/A,100,55,24,15,5,1,1.73\r\n,Sheridan Street Elementary,Los Angeles Unified,Los Angeles,758,3,1,0,0,0,99,0,0,0,93,7,3,45,26,12,19,23,N/A,83,58,23,10,5,3,1.72\r\n,Cutler Elementary,Cutler-Orosi Joint Unified,Tulare,758,3,0,0,0,1,96,0,2,0,98,0,4,53,19,4,19,22,N/A,95,58,23,12,5,1,1.68\r\n,Vine Street Elementary,Los Angeles Unified,Los Angeles,758,3,2,0,1,2,93,0,2,0,95,4,0,45,30,14,22,24,N/A,83,58,26,10,4,1,1.64\r\n,Tenth Street Elementary,Los Angeles Unified,Los Angeles,758,3,2,0,0,0,97,0,0,0,100,5,0,65,24,11,19,22,N/A,82,68,22,6,2,2,1.5\r\nD,Woodland Star Charter,Sonoma Valley Unified,Sonoma,757,3,2,2,1,0,13,0,82,0,22,0,0,8,2,19,19,22,N/A,96,4,9,29,33,25,3.65\r\n,Mountain Park,Monrovia Unified,Los Angeles,757,5,5,0,3,0,45,0,45,2,32,9,0,2,8,0,N/A,N/A,8,92,5,23,30,30,12,3.2\r\n,Ernest Righetti High,Santa Maria Joint Union High,Santa Barbara,757,5,2,1,2,1,55,0,34,3,39,0,4,8,15,9,N/A,N/A,27,91,15,16,35,22,12,3\r\n,Lakewood High,Long Beach Unified,Los Angeles,757,5,17,0,7,5,44,2,24,1,47,0,0,7,21,9,N/A,N/A,31,83,10,28,25,30,8,2.99\r\nD,Bay Area Technology,Oakland Unified,Alameda,757,5,52,0,1,2,24,0,18,2,82,0,0,10,10,2,N/A,22,17,97,12,23,36,19,10,2.92\r\nD,Valley Charter High,Stanislaus County Office of Ed,Stanislaus,757,5,8,1,3,1,31,1,49,3,37,0,0,3,3,5,N/A,N/A,17,90,10,27,40,15,8,2.85\r\n,Barrett Elementary,Morgan Hill Unified,Santa Clara,757,3,4,0,10,2,58,0,24,0,55,9,5,32,5,13,28,27,N/A,92,17,23,29,19,11,2.83\r\n,Casterlin Elementary,Southern Humboldt Joint Unifie,Humboldt,757,3,4,27,0,0,12,0,58,0,54,0,0,0,0,15,4,5,N/A,100,12,38,35,4,12,2.65\r\n,Monte Vista High,Grossmont Union High,San Diego,757,5,15,1,1,5,55,1,21,0,59,42,0,23,16,14,N/A,N/A,25,97,15,31,35,14,6,2.65\r\n,Eldridge Elementary,Hayward Unified,Alameda,757,3,15,0,9,7,57,3,7,2,79,0,0,31,14,6,29,28,N/A,95,16,35,25,19,5,2.62\r\n,Golden West High,Visalia Unified,Tulare,757,5,1,1,5,0,63,0,28,1,51,17,3,7,27,9,N/A,N/A,29,96,22,24,32,16,6,2.6\r\nD,Nord Country,Chico Unified,Butte,757,3,2,2,1,0,46,0,49,0,72,0,0,18,8,13,21,22,N/A,97,21,37,21,16,6,2.5\r\n,Almeria Middle,Fontana Unified,San Bernardino,757,4,11,0,2,3,79,0,5,0,80,7,0,23,25,16,N/A,28,29,92,24,28,29,15,5,2.5\r\n,Washington,Cloverdale Unified,Sonoma,757,4,0,2,0,0,53,0,44,1,62,8,0,35,13,13,N/A,24,23,95,31,23,26,13,7,2.43\r\n,Chowchilla High,Chowchilla Union High,Madera,757,5,3,1,1,1,57,0,36,1,72,8,4,17,25,6,N/A,N/A,27,99,31,28,22,14,5,2.34\r\n,Compton Junior High,Bakersfield City,Kern,757,4,8,0,1,1,75,0,13,1,81,4,7,13,24,8,N/A,N/A,25,57,28,34,23,9,5,2.3\r\n,Brookhurst Junior High,Anaheim Union High,Orange,757,4,3,0,6,3,78,1,8,0,83,14,0,29,36,11,N/A,N/A,34,7,32,30,18,17,4,2.3\r\n,Limerick Avenue Elementary,Los Angeles Unified,Los Angeles,757,3,3,0,6,4,81,0,6,0,100,7,0,42,20,13,21,21,N/A,87,31,34,20,12,3,2.22\r\n,,Jurupa Unified,Riverside,757,B,3,0,1,0,82,0,13,0,76,12,0,35,16,11,24,28,28,96,32,32,22,9,4,2.21\r\n,Smith River Elementary,Del Norte County Unified,Del Norte,757,3,0,12,0,0,62,0,23,2,84,8,1,31,22,12,23,27,24,88,32,33,25,5,6,2.21\r\n,,Tulelake Basin Joint Unified,Modoc,757,B,0,0,0,0,64,0,32,3,78,0,1,48,10,10,20,18,17,99,44,19,24,9,5,2.12\r\n,Ocala Middle,Alum Rock Union Elementary,Santa Clara,757,4,3,0,9,12,73,0,2,0,100,20,2,32,34,14,N/A,23,25,93,40,25,19,13,3,2.12\r\n,Mariposa Elementary,Lancaster Elementary,Los Angeles,757,3,27,0,0,1,58,0,12,1,92,10,2,29,7,14,28,26,N/A,100,33,36,21,7,2,2.1\r\n,Lincoln Elementary,Long Beach Unified,Los Angeles,757,3,9,0,13,0,77,0,1,0,100,6,2,49,29,6,30,35,N/A,74,34,38,19,3,5,2.08\r\n,Palms Elementary,Perris Elementary,Riverside,757,3,13,1,2,0,79,1,4,0,100,5,0,47,9,5,25,29,N/A,96,36,35,20,8,1,2.03\r\n,French Camp Elementary,Manteca Unified,San Joaquin,757,3,1,1,2,2,82,1,11,1,86,4,25,39,24,9,30,32,34,71,41,35,13,8,2,1.96\r\n,Bellevue Elementary,Bellevue Union Elementary,Sonoma,757,3,2,1,4,0,82,1,8,2,93,4,5,69,6,10,20,28,N/A,92,43,37,13,6,2,1.86\r\nD,Aspire Slauson Academy Charter,Los Angeles Unified,Los Angeles,757,3,12,0,0,0,82,0,0,1,73,0,0,55,1,7,22,28,N/A,91,47,38,15,0,1,1.71\r\n,Langdon Avenue Elementary,Los Angeles Unified,Los Angeles,757,3,2,0,0,0,97,1,0,0,100,6,0,65,25,13,19,21,N/A,80,55,33,9,2,0,1.59\r\n,,Kneeland Elementary,Humboldt,756,B,0,0,5,0,0,0,95,0,32,0,0,0,0,18,5,2,N/A,82,0,0,0,94,6,4.06\r\n,Kneeland Elementary,Kneeland Elementary,Humboldt,756,2,0,0,5,0,0,0,95,0,32,0,0,0,0,18,5,2,N/A,82,0,0,0,94,6,4.06\r\n,Homestead (Alternative),Ventura Unified,Ventura,756,2,0,0,4,2,21,0,73,0,15,8,0,0,0,13,N/A,25,N/A,100,2,13,29,31,25,3.65\r\nD,Leonardo da Vinci Health Sciences Charte,Chula Vista Elementary,San Diego,756,2,5,0,4,7,72,0,8,3,1,0,0,39,4,4,5,6,N/A,94,4,9,28,36,22,3.64\r\n,Del Campo High,San Juan Unified,Sacramento,756,5,6,2,3,1,13,1,73,1,38,6,0,3,7,12,N/A,N/A,32,76,4,25,26,36,9,3.21\r\n,North Tahoe High,Tahoe-Truckee Joint Unified,Placer,756,5,1,2,1,0,38,0,58,0,43,16,0,11,25,7,N/A,N/A,22,92,15,18,23,24,19,3.15\r\n,Alice Birney Waldorf-Inspired K-8,Sacramento City Unified,Sacramento,756,2,10,1,5,1,21,0,56,4,29,7,0,4,3,14,27,32,N/A,67,11,24,27,22,16,3.08\r\n,Ferndale High,Ferndale Unified,Humboldt,756,5,0,6,0,0,14,0,80,0,23,11,3,1,11,19,N/A,N/A,14,99,10,23,33,26,8,2.99\r\n,Rio Mesa High,Oxnard Union High,Ventura,756,5,4,0,3,3,67,0,21,1,53,2,3,22,17,9,N/A,N/A,30,90,20,23,24,21,13,2.85\r\n,Rancho San Justo,Hollister,San Benito,756,3,1,0,1,0,68,0,26,1,53,14,14,24,12,13,N/A,N/A,29,95,18,25,31,20,6,2.7\r\n,Southwest High,Central Union High,Imperial,756,5,1,0,2,0,89,0,7,0,65,3,13,29,30,7,N/A,N/A,28,90,23,29,21,16,12,2.64\r\n,Cedar Middle,Hesperia Unified,San Bernardino,756,3,10,0,2,0,57,0,29,0,67,10,0,14,11,9,N/A,N/A,31,91,15,32,34,12,6,2.64\r\n,Enrique Camarena Jr. High,Calexico Unified,Imperial,756,3,0,0,1,0,99,0,1,0,99,6,9,43,36,7,N/A,N/A,29,95,25,22,25,19,8,2.63\r\n,Lorenzo Manor Elementary,San Lorenzo Unified,Alameda,756,2,10,1,4,6,71,1,6,0,65,0,1,39,10,9,26,30,N/A,76,14,37,29,15,5,2.6\r\n,,South Fork Union,Kern,756,B,3,5,1,0,17,0,73,0,80,5,0,2,1,12,11,32,24,74,9,34,46,10,1,2.6\r\n,Liberty Elementary,Victor Elementary,San Bernardino,756,2,21,1,2,1,58,1,17,1,82,1,0,18,4,6,31,35,N/A,96,13,37,33,12,5,2.59\r\n,Wren Avenue Elementary,Mt. Diablo Unified,Contra Costa,756,2,3,1,2,5,62,1,20,2,76,2,0,46,7,8,30,30,N/A,58,20,35,21,17,6,2.54\r\n,Hemet High,Hemet Unified,Riverside,756,5,6,1,2,1,39,1,50,1,64,11,0,6,9,13,N/A,N/A,32,100,19,36,29,9,6,2.46\r\n,Special Education,Tulare County Office of Educat,Tulare,756,C,4,1,2,0,72,0,22,0,76,0,0,2,1,100,7,8,N/A,16,18,43,18,16,5,2.46\r\n,Rosewood Park,Montebello Unified,Los Angeles,756,2,0,0,0,0,96,0,2,0,100,10,0,24,26,14,26,32,32,91,23,36,25,9,6,2.4\r\n,Quail Valley Elementary,Palmdale Elementary,Los Angeles,756,2,19,0,1,2,72,0,5,0,89,5,2,32,10,18,25,29,N/A,95,22,37,28,9,4,2.38\r\n,Joseph Bonnheim Elementary,Sacramento City Unified,Sacramento,756,2,11,0,8,0,62,2,13,4,84,5,0,39,10,15,24,29,N/A,62,26,36,20,13,6,2.37\r\n,Hillview Crest Elementary,New Haven Unified,Alameda,756,2,6,0,4,6,72,2,4,5,71,4,5,38,19,12,25,28,N/A,94,26,30,31,10,4,2.36\r\n,Galt High,Galt Joint Union High,Sacramento,756,5,1,1,1,0,58,1,33,3,63,11,6,12,30,9,N/A,N/A,25,91,27,31,28,11,3,2.32\r\n,Roosevelt Elementary,Bakersfield City,Kern,756,2,9,0,1,2,71,0,15,2,89,0,4,24,9,13,21,31,N/A,97,26,36,24,11,4,2.32\r\n,Woodridge Elementary,Twin Rivers Unified,Sacramento,756,2,24,0,2,0,44,2,23,4,91,1,0,37,3,15,27,22,N/A,86,23,33,33,8,2,2.32\r\n,Las Palmas Elementary,Patterson Joint Unified,Stanislaus,756,2,2,1,0,1,77,0,18,1,76,1,1,47,7,14,27,28,N/A,92,35,23,24,15,3,2.28\r\nD,Environmental Charter Middle,Los Angeles County Office of E,Los Angeles,756,3,21,0,2,0,70,0,6,0,95,0,0,14,21,8,N/A,20,30,100,32,27,28,9,4,2.28\r\n,Lawndale High,Centinela Valley Union High,Los Angeles,756,5,13,0,3,2,76,1,4,1,85,21,0,22,37,6,N/A,N/A,27,94,31,33,22,11,2,2.21\r\n,Fred L. Williams Elementary,Hueneme Elementary,Ventura,756,2,2,0,0,17,78,1,2,0,78,16,8,53,14,9,29,28,N/A,100,45,15,20,17,3,2.18\r\n,Cypress Elementary,Fontana Unified,San Bernardino,756,2,2,0,2,0,90,1,5,0,100,3,0,45,20,9,24,29,N/A,74,29,39,22,7,3,2.17\r\n,Thomson Elementary,Barstow Unified,San Bernardino,756,2,31,3,1,0,49,0,12,4,95,13,0,17,1,13,28,28,N/A,97,23,50,23,4,1,2.1\r\n,Cuyama Elementary,Cuyama Joint Unified,Santa Barbara,756,2,0,2,0,0,80,0,12,1,80,0,6,57,9,6,18,16,N/A,78,40,29,22,2,6,2.05\r\n,Giano Intermediate,Rowland Unified,Los Angeles,756,3,2,0,1,6,90,0,1,0,88,8,1,37,28,13,N/A,N/A,29,94,35,36,21,7,1,2.03\r\n,Valleydale Elementary,Azusa Unified,Los Angeles,756,2,0,1,0,3,92,0,3,2,89,2,1,58,8,9,19,23,N/A,91,36,33,26,4,2,2.03\r\n,Valadez Middle School Academy,Placentia-Yorba Linda Unified,Orange,756,3,1,0,2,1,91,0,5,0,90,1,1,31,40,10,N/A,25,30,30,45,28,13,11,4,2.01\r\n,August Boeger Middle,Mt. Pleasant Elementary,Santa Clara,756,3,4,0,9,6,73,1,4,0,73,9,6,38,21,16,N/A,26,29,89,47,34,11,6,2,1.83\r\n,,Sunnyside Union Elementary,Tulare,756,B,0,0,0,0,89,0,11,0,89,0,2,33,30,4,20,21,N/A,100,55,24,15,5,1,1.73\r\n,Clifford D. Murray Elementary,Azusa Unified,Los Angeles,756,2,0,0,0,0,99,0,0,0,93,3,6,62,11,8,20,24,N/A,97,59,27,9,3,1,1.59\r\n,Pio Pico Middle,Los Angeles Unified,Los Angeles,756,3,7,0,1,0,91,0,0,0,90,6,0,28,44,16,N/A,30,30,73,62,28,7,2,0,1.51\r\nD,River Springs Charter,Riverside County Office of Edu,Riverside,755,2,3,1,1,1,36,0,51,6,40,0,0,3,1,11,,,,98,4,15,36,26,19,3.4\r\n,Pasadena Avenue Elementary,San Juan Unified,Sacramento,755,2,12,0,5,2,25,2,54,1,72,3,0,18,3,6,28,31,N/A,81,8,15,38,31,8,3.17\r\n,,Junction Elementary,Siskiyou,755,B,0,17,0,0,0,0,0,0,89,0,0,0,0,17,,,,6,0,0,100,0,0,3\r\n,Junction Elementary,Junction Elementary,Siskiyou,755,2,0,17,0,0,0,0,0,0,89,0,0,0,0,17,,,,6,0,0,100,0,0,3\r\n,,Grossmont Union High,San Diego,755,B,7,1,1,2,31,1,56,0,37,37,0,16,11,12,N/A,N/A,26,96,10,28,34,17,11,2.91\r\n,Mabel Carver Elementary,Garden Grove Unified,Orange,755,2,1,0,25,5,61,2,5,1,64,1,0,58,14,23,25,22,N/A,30,8,40,21,29,2,2.77\r\n,Oak Hills High,Hesperia Unified,San Bernardino,755,5,10,0,2,0,55,0,32,0,58,4,0,10,12,10,N/A,N/A,30,91,13,31,34,13,8,2.73\r\n,,Manton Joint Union Elementary,Tehama,755,B,0,0,0,0,22,0,75,3,59,0,0,13,0,9,,,,88,11,29,50,4,7,2.68\r\n,Manton Elementary,Manton Joint Union Elementary,Tehama,755,2,0,0,0,0,22,0,75,3,59,0,0,13,0,9,,,,88,11,29,50,4,7,2.68\r\n,Murphy Elementary,West Contra Costa Unified,Contra Costa,755,2,27,0,11,9,36,1,15,1,66,5,0,28,10,20,22,24,N/A,83,10,44,23,17,5,2.64\r\n,,\"Igo, Ono, Platina Union Elemen\",Shasta,755,B,3,14,2,0,9,3,69,0,78,0,0,0,0,13,22,17,N/A,91,19,22,40,16,3,2.62\r\n,Bohannon Middle,San Lorenzo Unified,Alameda,755,3,8,0,5,7,63,2,13,1,59,5,1,15,38,10,N/A,32,29,74,16,35,27,18,5,2.61\r\n,Rowan Elementary,San Diego Unified,San Diego,755,2,26,0,5,1,53,0,9,6,100,19,0,34,13,16,24,29,N/A,89,12,37,31,19,1,2.61\r\n,,Central Union High,Imperial,755,B,2,0,2,0,90,0,5,0,66,3,11,29,29,8,N/A,N/A,28,90,24,30,20,15,11,2.58\r\n,Fallbrook High,Fallbrook Union High,San Diego,755,5,2,1,1,1,56,0,35,3,54,16,2,22,21,10,N/A,N/A,30,74,34,16,21,18,11,2.55\r\n,,Modesto City High,Stanislaus,755,B,4,1,6,1,49,1,31,5,54,15,1,12,19,11,N/A,N/A,26,95,20,33,27,12,8,2.55\r\n,San Cayetano Elementary,Fillmore Unified,Ventura,755,2,0,1,0,0,87,0,11,1,79,3,9,46,8,14,22,28,N/A,93,23,27,28,17,5,2.53\r\n,Anderson Middle,Cascade Union Elementary,Shasta,755,3,4,10,3,1,20,0,62,0,80,11,0,5,3,16,N/A,22,25,93,15,36,32,14,3,2.53\r\n,Hamilton Elementary,Fresno Unified,Fresno,755,2,8,1,4,0,70,0,16,0,100,3,1,14,11,10,26,22,24,80,20,30,36,9,5,2.5\r\n,Los Banos Junior High,Los Banos Unified,Merced,755,3,3,1,1,1,75,0,18,1,70,3,1,21,24,11,N/A,N/A,29,89,21,33,30,14,2,2.44\r\n,Yolo Junior High,Newman-Crows Landing Unified,Stanislaus,755,3,1,0,1,0,74,0,21,2,74,10,3,30,18,9,N/A,29,25,90,26,29,30,9,7,2.42\r\n,Dunbar Elementary,Sonoma Valley Unified,Sonoma,755,2,1,1,3,2,63,0,29,0,69,0,0,58,4,18,24,26,N/A,96,36,22,17,15,10,2.4\r\n,Ramona Elementary,Bellflower Unified,Los Angeles,755,2,11,0,2,1,79,2,3,2,85,7,0,37,9,15,29,30,N/A,95,22,36,25,13,4,2.4\r\n,Sunnyslope Elementary,South Bay Union Elementary,San Diego,755,2,2,0,0,3,91,0,2,1,84,5,0,57,16,13,19,24,N/A,96,21,39,24,14,2,2.36\r\n,Woodrow Wilson Elementary,Colton Joint Unified,San Bernardino,755,2,17,0,0,0,75,0,5,1,88,12,0,26,6,14,20,28,N/A,91,25,32,31,5,6,2.34\r\n,Harte Elementary,Long Beach Unified,Los Angeles,755,2,14,0,13,1,63,6,2,0,87,10,0,30,20,7,28,33,N/A,75,23,35,31,8,3,2.32\r\n,,Fontana Unified,San Bernardino,755,B,7,0,1,1,85,0,5,0,86,6,0,32,25,12,24,27,26,91,29,34,22,11,4,2.28\r\n,Mark Twain Elementary,Corcoran Joint Unified,Kings,755,2,3,0,0,0,90,0,6,0,88,1,4,33,13,9,N/A,30,N/A,82,31,33,23,12,1,2.2\r\n,La Gloria Elementary,Gonzales Unified,Monterey,755,2,0,1,0,0,95,0,3,0,90,7,28,64,7,9,23,23,N/A,99,40,29,18,9,3,2.06\r\n,Liberty Elementary,Riverside Unified,Riverside,755,2,5,1,1,1,77,2,10,0,90,10,0,35,18,14,27,27,N/A,97,39,30,22,7,3,2.05\r\n,Shenandoah Street Elementary,Los Angeles Unified,Los Angeles,755,2,9,0,1,1,86,0,3,0,92,5,0,48,25,16,21,19,N/A,68,40,33,16,6,4,2.02\r\n,Abraham Lincoln Elementary,Colton Joint Unified,San Bernardino,755,2,1,1,0,0,95,0,2,0,87,11,0,41,10,12,19,29,N/A,93,38,34,21,4,3,2.01\r\n,First Street Elementary,Los Angeles Unified,Los Angeles,755,2,0,0,0,0,100,0,0,0,93,6,7,43,30,11,22,23,N/A,80,42,32,14,8,3,1.99\r\n,,South Whittier Elementary,Los Angeles,755,B,0,0,0,2,93,0,4,0,75,5,1,40,16,14,30,33,18,74,37,38,18,6,1,1.97\r\n,Budlong Avenue Elementary,Los Angeles Unified,Los Angeles,755,2,20,0,0,0,79,0,0,0,100,11,0,39,18,10,21,21,N/A,77,49,26,13,8,3,1.89\r\n,Burbank Elementary,San Bernardino City Unified,San Bernardino,755,2,12,0,1,1,78,0,6,2,98,11,0,35,7,12,18,22,N/A,67,43,34,18,3,2,1.88\r\n,Loreto Street Elementary,Los Angeles Unified,Los Angeles,755,2,1,0,2,0,96,0,0,0,95,8,0,50,23,9,19,19,N/A,74,38,49,6,8,0,1.84\r\n,Figueroa Street Elementary,Los Angeles Unified,Los Angeles,755,2,20,0,0,0,79,0,0,0,84,6,0,45,23,13,21,24,N/A,34,49,29,14,6,2,1.83\r\n,Kawana Elementary,Bellevue Union Elementary,Sonoma,755,2,3,0,1,0,85,0,9,1,92,4,3,71,9,15,24,24,N/A,91,47,35,13,4,1,1.78\r\n,Linda Vista Elementary,San Diego Unified,San Diego,755,2,6,0,12,5,74,1,1,1,100,24,6,69,14,15,17,27,N/A,90,56,24,11,8,1,1.75\r\n,,Santa Ana Unified,Orange,755,B,0,0,2,0,95,0,1,0,90,10,2,54,29,10,25,29,29,96,57,24,14,4,2,1.69\r\n,Robert Sanders Elementary,Mt. Pleasant Elementary,Santa Clara,755,2,3,1,3,4,82,1,2,1,81,6,8,68,3,19,23,21,N/A,93,52,37,5,5,1,1.65\r\n,Carson-Gore Academy of Enviornmental Stu,Los Angeles Unified,Los Angeles,755,2,13,0,0,1,85,0,0,0,100,4,0,47,26,11,20,22,N/A,83,54,30,12,2,1,1.65\r\n,Willard F. Payne Elementary,Mountain View Elementary,Los Angeles,755,2,0,1,7,0,91,0,1,0,100,1,9,74,10,12,28,29,N/A,99,57,31,9,3,0,1.57\r\n,McCabe Elementary,Mendota Unified,Fresno,755,2,0,0,0,0,98,0,1,0,97,6,8,82,0,5,20,23,N/A,100,68,21,8,3,1,1.49\r\n,Theodore Roosevelt Elementary,Santa Ana Unified,Orange,755,2,0,0,0,0,100,0,0,0,100,5,6,84,13,9,25,31,N/A,95,71,16,9,1,2,1.46\r\n,,Mattole Unified,Humboldt,754,B,1,6,2,0,10,0,74,5,9,0,0,0,0,8,1,N/A,1,83,7,23,29,27,13,3.15\r\n,Middletown High,Middletown Unified,Lake,754,5,1,1,1,1,19,1,74,3,33,0,0,5,3,4,N/A,N/A,22,82,9,20,33,25,13,3.14\r\nY,Summit Charter Academy,Burton Elementary,Tulare,754,2,1,2,2,2,56,0,37,0,62,4,6,20,4,7,23,30,22,97,10,18,42,20,9,3.01\r\n,North Fork Digital Middle,Chawanakee Unified,Madera,754,3,0,9,0,0,16,0,64,10,68,18,0,0,1,14,N/A,18,N/A,89,5,31,38,14,12,2.96\r\n,Lemoore High,Lemoore Union High,Kings,754,5,7,3,1,7,47,1,34,0,41,1,7,12,13,10,N/A,N/A,27,97,15,21,39,18,7,2.8\r\n,\"Martin Luther King, Jr.\",Sacramento City Unified,Sacramento,754,2,29,1,17,2,30,1,15,4,66,13,0,13,7,13,25,27,27,64,13,31,31,12,12,2.79\r\n,Washington Elementary,San Diego Unified,San Diego,754,2,7,1,3,1,72,0,11,6,75,31,0,49,4,11,27,34,N/A,89,16,26,28,19,10,2.79\r\n,Igo-Ono Elementary,\"Igo, Ono, Platina Union Elemen\",Shasta,754,2,0,16,2,0,11,4,68,0,75,0,0,0,0,14,22,27,N/A,93,17,21,40,17,4,2.69\r\n,Armona Elementary,Armona Union Elementary,Kings,754,2,4,2,1,0,78,0,14,0,91,0,9,33,7,9,22,29,N/A,81,18,27,39,10,6,2.59\r\n,Barton Elementary,Long Beach Unified,Los Angeles,754,2,37,1,11,2,43,2,3,1,86,0,0,20,9,12,27,30,N/A,73,17,35,27,15,5,2.57\r\n,Vista High,Vista Unified,San Diego,754,5,3,0,2,2,61,1,29,1,54,17,5,20,28,14,N/A,N/A,29,83,33,17,21,21,8,2.54\r\n,Brainard Elementary,Los Angeles Unified,Los Angeles,754,2,27,1,1,1,61,0,9,0,82,4,0,20,8,27,13,10,N/A,76,27,18,34,14,7,2.54\r\n,Palm Middle,Lemon Grove,San Diego,754,3,20,0,4,2,58,2,12,2,100,14,0,22,13,13,N/A,N/A,28,95,21,29,30,15,5,2.53\r\n,John W. North High,Riverside Unified,Riverside,754,5,12,0,5,1,66,1,13,0,70,9,0,15,25,8,N/A,N/A,31,97,30,23,25,11,10,2.47\r\n,Hayfork High,Mountain Valley Unified,Trinity,754,5,0,15,0,0,11,0,68,4,70,16,0,0,1,18,N/A,N/A,14,93,16,36,39,4,4,2.45\r\n,Revere (Paul) Elementary,San Francisco Unified,San Francisco,754,2,17,1,3,9,59,2,3,3,75,7,2,50,6,15,17,17,17,66,18,41,26,11,4,2.43\r\n,Tahoe Elementary,Sacramento City Unified,Sacramento,754,2,14,1,7,0,50,2,18,9,83,11,0,21,9,14,19,24,N/A,80,29,34,20,11,6,2.31\r\n,,San Jacinto Unified,Riverside,754,B,8,2,1,1,67,1,17,2,74,6,0,23,15,11,28,30,30,94,27,33,28,8,4,2.3\r\n,Clarksburg Middle,River Delta Joint Unified,Sacramento,754,3,1,3,1,0,60,0,34,1,38,12,6,26,30,10,N/A,N/A,17,97,41,18,23,15,3,2.22\r\n,Pacifica High,Oxnard Union High,Ventura,754,5,2,0,2,5,87,0,4,0,69,4,3,22,36,9,N/A,N/A,31,93,36,28,20,12,5,2.22\r\n,Butler Middle,Long Beach Unified,Los Angeles,754,3,15,0,28,1,53,1,1,0,93,6,0,32,36,13,N/A,29,30,68,33,32,17,15,3,2.22\r\n,Markham Elementary,Oakland Unified,Alameda,754,2,44,0,2,0,50,1,1,1,89,46,0,33,14,13,17,20,N/A,46,33,25,33,8,1,2.19\r\n,Winchester Elementary,Hemet Unified,Riverside,754,2,8,1,2,2,62,0,22,4,87,1,0,28,7,17,25,29,N/A,100,36,28,23,9,4,2.16\r\n,Auburndale Intermediate,Corona-Norco Unified,Riverside,754,3,6,0,2,2,75,1,13,0,76,4,0,17,32,18,N/A,N/A,25,91,36,31,21,9,3,2.12\r\n,Piru Elementary,Fillmore Unified,Ventura,754,2,1,1,1,0,94,0,4,1,100,8,14,52,13,13,22,29,N/A,85,33,37,21,7,2,2.09\r\n,Corona Avenue Elementary,Los Angeles Unified,Los Angeles,754,2,0,0,0,0,98,0,2,0,91,7,1,39,26,8,17,23,N/A,93,36,36,19,5,4,2.03\r\n,Andrew Jackson Elementary,Desert Sands Unified,Riverside,754,2,0,0,0,0,96,0,3,0,93,2,1,47,14,8,29,30,N/A,100,40,34,16,6,4,1.99\r\n,Cleveland Elementary,Pasadena Unified,Los Angeles,754,2,24,0,1,1,72,1,3,0,90,6,0,38,10,13,25,30,N/A,94,35,43,18,2,3,1.96\r\n,Rustic Lane Elementary,Jurupa Unified,Riverside,754,2,2,0,1,0,94,0,2,0,90,8,0,54,13,5,20,23,N/A,95,45,30,13,9,3,1.93\r\nD,Cox Academy,Alameda County Office of Educa,Alameda,754,2,20,0,2,0,70,4,1,1,91,0,0,56,12,8,21,31,N/A,90,40,38,16,3,3,1.89\r\n,Charles D. Jones Junior High,Baldwin Park Unified,Los Angeles,754,3,1,0,3,3,90,0,2,0,95,9,2,17,25,13,N/A,N/A,14,66,42,38,16,4,1,1.83\r\n,Edward Russell Elementary,Garden Grove Unified,Orange,754,2,0,0,3,0,97,0,1,0,86,0,0,80,15,6,27,28,N/A,53,52,30,11,7,1,1.76\r\n,Golden Valley Elementary,Cutler-Orosi Joint Unified,Tulare,754,2,0,0,2,5,92,0,1,0,97,0,2,74,8,3,20,21,N/A,99,52,31,10,7,0,1.73\r\n,James Monroe Elementary,Madera Unified,Madera,754,2,2,1,1,0,95,0,1,0,95,3,8,61,14,4,27,34,N/A,99,63,25,9,2,1,1.53\r\n,Garfield Elementary,Santa Ana Unified,Orange,754,2,0,0,1,0,99,0,0,0,98,5,4,83,13,8,26,28,N/A,96,81,13,4,1,1,1.27\r\nD,Monsenor Oscar Romero Charter Middle,Los Angeles Unified,Los Angeles,754,3,0,0,1,1,97,0,0,0,98,0,0,34,52,9,N/A,27,25,0,0,0,0,0,0,\r\n,Bishop Union High,Bishop Unified,Inyo,753,5,0,9,1,0,30,0,52,6,33,5,0,6,14,11,N/A,N/A,26,98,12,19,45,13,11,2.92\r\n,Lincoln Elementary,Lincoln Unified,San Joaquin,753,2,18,1,9,3,47,1,22,0,76,4,0,25,2,13,25,31,N/A,95,12,28,36,20,4,2.75\r\n,Wagner-Holt Elementary,Lodi Unified,San Joaquin,753,2,25,1,12,6,40,2,11,1,85,7,0,21,7,13,22,28,N/A,85,15,33,34,11,7,2.63\r\n,Cloverdale Elementary,Moreno Valley Unified,Riverside,753,2,12,0,1,1,68,1,15,1,73,5,1,27,7,16,28,30,N/A,90,13,34,36,13,3,2.6\r\n,Fair Oaks Elementary,Mt. Diablo Unified,Contra Costa,753,2,6,0,5,5,65,1,13,3,84,1,0,51,12,14,27,29,N/A,71,18,40,22,17,4,2.5\r\n,Bradford Woodbridge Fundamental Elementa,Roseville City Elementary,Placer,753,2,2,0,0,1,55,4,37,0,76,0,0,37,0,24,20,N/A,N/A,96,25,26,33,10,7,2.48\r\n,Florence E. Rata,Fresno Unified,Fresno,753,C,13,0,9,2,51,0,24,0,100,0,5,4,0,100,,,,84,37,13,28,9,13,2.48\r\n,Viejo Elementary,Capistrano Unified,Orange,753,2,1,0,2,3,79,0,12,3,77,0,0,48,13,14,27,29,N/A,89,16,41,27,10,5,2.47\r\n,Kingswood Elementary,San Juan Unified,Sacramento,753,2,8,1,3,1,51,2,33,1,85,1,0,32,8,12,29,30,26,77,25,28,28,16,3,2.46\r\n,Harden Middle,Salinas Union High,Monterey,753,3,2,0,1,7,84,1,4,0,65,0,7,29,30,8,N/A,N/A,28,66,25,31,24,13,6,2.44\r\n,Ponderosa Elementary,Anaheim City,Orange,753,2,1,0,3,1,92,0,2,0,95,19,0,62,24,12,30,33,N/A,3,29,38,8,13,13,2.42\r\n,Hollywood Senior High,Los Angeles Unified,Los Angeles,753,5,11,1,3,4,68,1,13,0,82,19,0,14,50,8,N/A,N/A,21,61,29,29,20,15,6,2.41\r\n,Stephens Middle,Long Beach Unified,Los Angeles,753,3,18,0,2,10,63,4,1,0,86,8,1,32,23,13,N/A,28,30,79,24,37,18,19,2,2.39\r\n,Reedley High,Kings Canyon Joint Unified,Fresno,753,5,1,0,2,1,79,0,16,1,98,0,5,13,38,8,N/A,N/A,29,89,33,24,22,14,7,2.38\r\n,Mission Oak High,Tulare Joint Union High,Tulare,753,5,3,0,2,0,68,0,25,0,61,11,6,19,26,6,N/A,N/A,27,95,28,28,30,10,4,2.33\r\n,Dwight D. Eisenhower Elementary,Garden Grove Unified,Orange,753,2,1,0,14,0,82,1,2,0,80,0,0,62,18,14,28,31,N/A,32,21,40,25,13,1,2.33\r\n,Shasta Elementary,Manteca Unified,San Joaquin,753,2,5,1,1,2,56,2,32,1,75,1,1,18,13,13,27,24,29,93,16,50,23,9,1,2.29\r\n,Butterfield Elementary,Moreno Valley Unified,Riverside,753,2,13,0,1,0,77,1,7,1,85,2,3,43,9,8,28,29,N/A,92,25,35,29,9,2,2.29\r\n,Glenwood Elementary,Robla Elementary,Sacramento,753,2,18,1,8,0,61,4,7,1,83,0,0,52,6,12,24,30,N/A,88,30,31,27,10,2,2.24\r\n,Raymond Cree Middle,Palm Springs Unified,Riverside,753,3,10,1,2,4,59,1,24,0,80,12,0,20,24,13,N/A,32,29,87,30,33,24,10,3,2.23\r\n,Anza Elementary,Cajon Valley Union,San Diego,753,2,10,0,1,1,26,0,58,3,87,7,0,63,8,13,23,29,N/A,92,25,45,17,11,2,2.21\r\n,Glenwood Elementary,Linden Unified,San Joaquin,753,2,1,1,2,1,63,0,28,4,69,4,6,38,5,12,17,26,30,91,31,34,21,11,3,2.2\r\n,Lindsey Academy,Long Beach Unified,Los Angeles,753,3,20,0,3,3,68,3,2,0,87,14,1,29,31,11,N/A,32,31,95,34,35,16,14,2,2.15\r\n,Redwood Elementary,Fontana Unified,San Bernardino,753,2,2,1,0,1,90,1,4,0,100,4,0,43,22,12,24,26,N/A,90,31,39,19,8,4,2.13\r\n,Ramon Garza Elementary,Bakersfield City,Kern,753,2,2,1,1,1,91,1,3,1,95,1,9,46,20,5,21,27,N/A,47,35,45,9,6,5,2.01\r\n,Rancho Tehama Elementary,Corning Union Elementary,Tehama,753,2,0,0,0,5,42,0,53,0,93,0,0,16,2,5,23,18,N/A,28,17,67,17,0,0,2\r\n,Griffin Avenue Elementary,Los Angeles Unified,Los Angeles,753,2,0,0,22,0,78,0,0,0,100,4,2,52,19,11,18,22,N/A,35,44,30,16,8,1,1.93\r\n,,King City Union,Monterey,753,B,0,0,1,1,90,0,7,1,85,1,7,47,30,15,21,27,26,98,45,30,16,6,3,1.91\r\n,Learning Without Limits,Oakland Unified,Alameda,753,2,19,0,14,2,60,1,1,0,47,27,0,53,18,6,21,25,N/A,45,42,35,17,6,0,1.86\r\n,Compton Avenue Elementary,Los Angeles Unified,Los Angeles,753,2,25,0,0,0,74,0,0,0,100,2,0,38,13,14,18,15,N/A,47,43,37,12,6,2,1.86\r\n,Del Rey Woods Elementary,Monterey Peninsula Unified,Monterey,753,2,4,0,2,0,86,1,5,2,94,2,0,53,28,8,23,25,N/A,100,45,38,10,5,2,1.81\r\n,Leo Politi Elementary,Los Angeles Unified,Los Angeles,753,2,1,0,1,0,98,0,0,0,100,6,0,51,29,8,20,23,N/A,85,51,34,9,5,2,1.74\r\n,Wilson Elementary,Newport-Mesa Unified,Orange,753,2,1,0,1,1,97,0,1,0,99,3,1,74,13,10,22,32,N/A,74,53,27,14,4,1,1.72\r\n,Pescadero Elementary and Middle,La Honda-Pescadero Unified,San Mateo,753,2,0,0,0,0,80,1,18,0,76,4,10,69,8,8,15,10,10,98,70,10,8,8,3,1.64\r\n,Mission Middle,Escondido Union,San Diego,753,3,2,0,1,0,94,0,3,0,93,8,3,53,34,9,N/A,30,29,81,68,20,8,2,1,1.49\r\n,,Mountain Union Elementary,Shasta,752,B,0,9,0,0,16,0,59,14,91,0,0,0,0,23,7,1,N/A,91,0,31,31,35,2,3.08\r\n,Montgomery Creek Elementary,Mountain Union Elementary,Shasta,752,2,0,9,0,0,16,0,59,14,91,0,0,0,0,23,7,1,N/A,91,0,31,31,35,2,3.08\r\n,,Anderson Union High,Shasta,752,B,1,6,1,0,14,0,73,4,58,0,0,1,3,9,N/A,N/A,27,93,7,21,39,22,10,3.05\r\n,Rim of the World Senior High,Rim of the World Unified,San Bernardino,752,5,2,1,1,1,23,0,72,1,43,12,0,4,7,11,N/A,N/A,28,89,9,20,42,17,11,3.01\r\n,Dixon High,Dixon Unified,Solano,752,5,3,1,2,1,48,1,44,1,40,8,3,11,27,8,N/A,N/A,28,95,11,25,36,19,8,2.87\r\n,Weed Elementary,Weed Union Elementary,Siskiyou,752,2,6,2,5,0,23,0,58,6,73,9,0,7,5,9,20,20,17,99,5,25,55,8,6,2.84\r\n,Charles Wright Elementary,Merced City Elementary,Merced,752,2,5,0,7,1,66,1,17,2,88,0,1,23,9,10,23,31,N/A,73,14,27,36,12,12,2.82\r\n,Hanford High,Hanford Joint Union High,Kings,752,5,6,1,1,1,58,0,32,0,40,0,8,10,15,10,N/A,N/A,29,91,16,24,31,22,6,2.78\r\n,Oak Park Elementary,San Diego Unified,San Diego,752,2,29,0,27,1,36,0,3,4,100,27,0,38,15,11,21,24,N/A,83,11,34,33,16,7,2.75\r\n,Yuba City High,Yuba City Unified,Sutter,752,5,1,0,13,1,40,0,39,4,58,8,4,10,24,10,N/A,N/A,28,96,20,26,26,19,9,2.72\r\n,Yuba Feather Elementary,Marysville Joint Unified,Yuba,752,2,1,12,0,0,13,1,64,7,80,8,0,0,0,14,21,20,N/A,98,11,30,40,16,4,2.72\r\n,Mar Vista Senior High,Sweetwater Union High,San Diego,752,5,4,0,1,5,70,0,18,0,68,18,0,24,23,12,N/A,N/A,29,88,17,27,31,17,7,2.7\r\n,,Galt Joint Union High,Sacramento,752,B,1,1,2,0,49,1,41,4,54,11,4,8,23,10,N/A,N/A,25,91,18,24,34,17,6,2.68\r\n,Washington Elementary,San Leandro Unified,Alameda,752,2,17,1,6,2,58,1,10,4,77,8,0,40,11,11,27,30,N/A,96,15,32,32,19,3,2.64\r\n,Waggoner Elementary,Winters Joint Unified,Yolo,752,2,0,1,0,0,62,0,37,0,66,0,7,51,0,10,25,N/A,N/A,96,27,22,25,18,9,2.61\r\n,Campbell Middle,Campbell Union,Santa Clara,752,3,4,1,7,3,64,1,18,1,63,9,0,29,30,8,N/A,26,28,94,21,33,25,15,7,2.54\r\n,John C. Fremont Elementary,Corcoran Joint Unified,Kings,752,2,3,0,0,0,89,0,8,0,87,0,6,40,0,6,28,N/A,N/A,86,23,33,28,13,3,2.4\r\n,,Happy Camp Union Elementary,Siskiyou,752,B,0,36,0,0,12,0,33,19,100,0,0,0,0,21,1,N/A,N/A,100,22,30,36,7,4,2.4\r\n,Wilson Elementary,Modesto City Elementary,Stanislaus,752,2,5,0,1,0,52,1,34,4,87,2,2,17,4,9,23,28,N/A,99,17,43,30,7,3,2.35\r\n,Chula Vista Senior High,Sweetwater Union High,San Diego,752,5,4,1,1,3,86,1,5,0,68,10,0,28,36,11,N/A,N/A,30,88,23,40,19,14,4,2.34\r\n,Sierra View Elementary,Twin Rivers Unified,Sacramento,752,2,12,0,4,2,46,1,28,6,86,10,0,38,6,10,26,31,N/A,94,23,35,28,11,3,2.34\r\n,Mabel L. Pendleton Elementary,Buena Park Elementary,Orange,752,2,7,0,2,4,78,1,8,1,75,2,0,47,6,11,26,27,N/A,87,28,31,25,13,3,2.33\r\n,,Palmdale Elementary,Los Angeles,752,B,17,1,1,2,69,0,8,1,86,8,2,26,13,13,26,26,24,94,29,32,27,9,4,2.27\r\n,Eastside Elementary,Eastside Union Elementary,Los Angeles,752,2,14,0,1,1,67,0,14,2,84,1,2,36,11,9,20,27,N/A,98,32,28,25,12,3,2.26\r\n,Reseda Senior High,Los Angeles Unified,Los Angeles,752,5,5,0,5,3,73,0,12,0,79,19,0,18,45,15,N/A,N/A,28,67,33,32,18,12,5,2.24\r\n,Beachy Avenue Elementary,Los Angeles Unified,Los Angeles,752,2,1,0,2,1,95,0,1,0,100,4,1,35,22,18,18,24,N/A,80,28,40,21,8,4,2.21\r\n,Vernon Middle,Ontario-Montclair Elementary,San Bernardino,752,3,5,1,2,0,84,1,6,1,77,11,0,27,21,13,N/A,N/A,25,96,30,37,23,7,3,2.16\r\n,South Tamarind Elementary,Fontana Unified,San Bernardino,752,2,2,0,0,0,93,0,4,0,100,2,0,46,18,12,24,27,N/A,85,33,35,21,6,5,2.15\r\n,,Modesto City Elementary,Stanislaus,752,B,3,1,4,0,67,1,20,2,84,10,2,38,10,13,22,28,27,96,30,43,17,5,5,2.12\r\n,Vinedale Elementary,Los Angeles Unified,Los Angeles,752,2,1,1,2,2,88,0,6,0,100,6,0,36,28,13,17,21,N/A,95,30,39,21,9,1,2.12\r\n,West Randall Elementary,Fontana Unified,San Bernardino,752,2,1,0,1,1,95,0,2,0,100,5,0,58,19,11,23,26,N/A,82,31,39,19,8,3,2.11\r\n,Martin Luther King Jr. Elementary,Los Angeles Unified,Los Angeles,752,2,31,0,0,0,68,0,0,0,91,3,0,29,19,9,19,19,N/A,80,33,37,21,6,3,2.1\r\nY,Innovative Horizons Charter,Perris Elementary,Riverside,752,2,9,0,0,1,84,1,5,0,100,5,0,45,12,5,25,31,N/A,87,32,37,24,6,0,2.05\r\n,Monte Vista Street Elementary,Los Angeles Unified,Los Angeles,752,2,1,1,1,1,96,0,1,0,100,11,0,43,25,13,20,22,N/A,86,34,43,14,7,1,1.98\r\n,Alcott Elementary,Pomona Unified,Los Angeles,752,2,5,0,2,0,92,0,1,0,97,2,0,52,18,7,26,32,N/A,73,30,51,14,3,2,1.96\r\n,Breed Street Elementary,Los Angeles Unified,Los Angeles,752,2,0,0,0,1,99,0,0,0,100,4,2,38,34,9,20,27,N/A,76,38,42,12,5,2,1.91\r\n,Maryland Elementary,Vista Unified,San Diego,752,2,2,1,0,1,89,0,5,1,95,0,11,63,15,17,23,29,N/A,76,49,34,11,3,2,1.76\r\n,Kelly Elementary,Compton Unified,Los Angeles,752,2,10,0,0,0,87,1,0,0,90,3,0,54,19,6,27,29,N/A,89,56,22,16,5,1,1.73\r\n,Myrtle Avenue Elementary,Lamont Elementary,Kern,752,3,0,0,0,0,99,0,1,0,86,14,19,56,19,11,N/A,27,N/A,96,57,24,12,5,2,1.71\r\n,Mar Vista Elementary,Ocean View,Ventura,752,2,1,0,0,1,98,0,1,0,99,10,4,84,3,6,24,28,N/A,100,62,16,14,6,2,1.7\r\n,Loma Vista Elementary,South Whittier Elementary,Los Angeles,752,2,0,0,0,1,95,0,4,0,83,10,1,49,15,13,31,31,N/A,82,55,28,13,5,0,1.68\r\nD,Alliance Jack H. Skirball Middle,Los Angeles Unified,Los Angeles,752,3,22,0,0,0,65,0,12,0,93,0,0,19,34,6,N/A,30,30,100,57,25,15,4,0,1.66\r\n,Bardin Elementary,Alisal Union,Monterey,752,2,0,0,0,0,98,0,1,0,94,2,9,70,21,5,29,31,N/A,95,62,22,8,5,3,1.65\r\n,Lowell Elementary,Fresno Unified,Fresno,752,2,4,1,1,0,90,0,3,0,100,0,2,45,13,8,19,20,N/A,58,58,26,15,0,1,1.6\r\n,John Kelley Elementary,Coachella Valley Unified,Riverside,752,2,0,0,0,0,98,0,1,0,100,5,9,69,11,22,19,24,N/A,85,67,24,6,3,1,1.49\r\nD,Connecting Waters Charter,Waterford Unified,Stanislaus,751,2,3,1,6,1,24,0,58,6,42,0,0,2,3,6,19,16,3,98,4,17,31,24,25,3.48\r\n,Glen Cove Elementary,Vallejo City Unified,Solano,751,2,35,0,5,18,22,2,9,6,50,3,0,9,5,17,25,26,N/A,94,5,17,40,30,8,3.17\r\n,Concord High,Mt. Diablo Unified,Contra Costa,751,5,4,1,5,5,35,1,45,1,40,10,0,11,19,13,N/A,N/A,28,74,11,21,29,29,10,3.05\r\n,Riverside Virtual,Riverside Unified,Riverside,751,5,8,1,4,2,34,1,48,0,35,6,0,3,4,0,N/A,N/A,19,98,10,20,37,23,10,3.03\r\n,Newark Memorial High,Newark Unified,Alameda,751,5,7,0,12,10,46,2,18,3,42,8,0,10,33,13,N/A,N/A,28,90,14,22,30,26,8,2.91\r\n,Lafayette Elementary,Eureka City Schools,Humboldt,751,2,4,8,6,1,18,1,56,6,77,6,0,16,1,20,23,27,N/A,73,9,27,36,20,8,2.91\r\n,Twentynine Palms High,Morongo Unified,San Bernardino,751,5,14,1,2,3,26,3,45,6,54,9,0,3,4,13,N/A,N/A,25,91,11,25,43,13,8,2.82\r\n,George W. Bush Elementary,Stockton Unified,San Joaquin,751,2,14,2,35,11,31,3,5,0,75,11,0,20,22,7,25,32,33,89,12,31,29,20,9,2.82\r\n,,John Swett Unified,Contra Costa,751,B,19,0,11,9,31,0,21,8,56,8,0,15,10,12,24,28,23,95,10,37,30,20,4,2.71\r\n,Jackson Elementary,Morgan Hill Unified,Santa Clara,751,2,3,0,5,2,53,0,35,0,49,12,15,41,4,11,29,30,N/A,95,31,11,26,20,12,2.7\r\nD,Barack Obama Charter,SBE - Barack Obama Charter,Los Angeles,751,2,75,0,0,0,22,0,0,2,89,0,0,5,4,7,29,27,N/A,98,11,27,45,12,4,2.7\r\n,,Camptonville Elementary,Yuba,751,B,0,0,0,0,10,3,23,0,51,0,0,0,0,23,2,7,3,8,0,33,67,0,0,2.67\r\n,,Bayshore Elementary,San Mateo,751,B,9,0,17,30,34,6,3,0,79,0,0,13,31,9,20,19,8,90,14,35,29,17,5,2.64\r\n,,El Tejon Unified,Kern,751,B,0,0,0,0,19,0,8,1,57,0,0,11,4,10,28,25,27,8,17,41,20,20,2,2.49\r\n,,Cloverdale Unified,Sonoma,751,B,1,2,0,0,52,0,43,1,61,4,0,32,13,12,28,26,25,95,27,26,28,13,7,2.46\r\n,Westpark Elementary,Southern Kern Unified,Kern,751,2,12,1,1,1,48,0,36,1,70,2,5,23,4,15,25,29,N/A,75,14,43,26,17,1,2.46\r\n,Victoria Elementary,Redlands Unified,San Bernardino,751,2,6,0,16,5,59,1,10,3,92,4,0,35,7,22,22,26,N/A,90,27,26,28,13,6,2.45\r\n,Thomas Jefferson Elementary,Bellflower Unified,Los Angeles,751,2,16,0,2,3,66,2,8,2,87,8,0,26,10,16,28,31,N/A,97,18,36,34,9,3,2.44\r\n,,Brawley Union High,Imperial,751,B,1,0,1,0,86,0,10,1,62,23,13,22,21,6,N/A,N/A,26,98,26,27,30,11,5,2.43\r\n,Mountain Vista,Fillmore Unified,Ventura,751,2,0,0,0,0,86,0,13,0,83,6,3,51,2,11,23,30,N/A,91,27,28,28,10,7,2.41\r\n,Longfellow Elementary,Whittier City Elementary,Los Angeles,751,2,2,1,0,0,87,0,2,1,75,0,0,27,8,12,29,28,N/A,97,25,33,31,8,3,2.32\r\n,,Dinuba Unified,Tulare,751,B,1,0,1,1,91,0,6,0,100,8,5,32,22,5,23,25,23,90,34,27,22,11,6,2.27\r\n,Creekside Elementary,Moreno Valley Unified,Riverside,751,2,15,0,1,0,77,1,4,1,85,4,2,47,8,15,28,32,N/A,89,22,41,29,7,1,2.23\r\n,El Rancho High,El Rancho Unified,Los Angeles,751,5,0,0,0,0,97,0,1,0,55,17,1,13,33,9,N/A,N/A,29,95,28,39,22,9,3,2.2\r\n,Cesar E. Chavez Middle,San Bernardino City Unified,San Bernardino,751,3,9,0,2,1,71,0,14,0,97,20,0,20,27,7,N/A,27,31,87,36,29,19,8,7,2.2\r\n,,Rialto Unified,San Bernardino,751,B,13,0,1,1,79,1,5,1,82,14,0,25,19,10,25,27,21,87,33,31,23,10,3,2.18\r\n,Sunnymead Middle,Moreno Valley Unified,Riverside,751,3,16,0,1,1,75,1,4,1,86,7,1,23,34,11,N/A,24,21,82,27,38,27,7,1,2.18\r\n,Van Nuys Middle,Los Angeles Unified,Los Angeles,751,3,4,0,3,3,80,0,9,0,83,10,0,24,38,16,N/A,21,22,72,38,30,16,11,4,2.13\r\n,,Palm Springs Unified,Riverside,751,B,6,1,1,3,73,0,16,0,83,7,0,31,21,9,27,30,28,93,32,36,22,7,3,2.13\r\n,Fay Elementary,San Diego Unified,San Diego,751,2,12,0,20,1,60,0,3,4,100,18,0,63,14,10,23,31,N/A,74,36,34,17,8,5,2.13\r\n,,Merced River Union Elementary,Merced,751,B,0,0,0,0,72,0,20,2,82,0,6,42,18,14,6,2,1,100,35,30,26,6,3,2.12\r\n,Kerman-Floyd Elementary,Kerman Unified,Fresno,751,2,1,1,3,0,90,0,4,1,91,10,9,44,12,12,28,28,N/A,99,38,33,21,8,1,2.02\r\n,Francisco Sepulveda Middle,Los Angeles Unified,Los Angeles,751,3,3,0,2,6,85,0,3,0,89,17,0,26,42,13,N/A,23,20,77,44,30,13,11,3,2\r\n,Harry S. Truman Middle,Fontana Unified,San Bernardino,751,3,3,0,1,0,89,1,5,0,89,6,0,31,35,16,N/A,26,28,92,37,37,17,7,2,2\r\n,,Ocean View,Ventura,751,B,2,0,1,3,86,0,6,1,99,7,4,61,10,9,23,27,27,98,50,21,19,8,2,1.93\r\n,Sycamore Junior High,Anaheim Union High,Orange,751,3,1,0,1,1,95,0,2,0,93,19,0,32,52,9,N/A,N/A,24,6,50,21,18,11,0,1.9\r\nD,New Designs Charter,Los Angeles Unified,Los Angeles,751,3,29,0,0,0,70,0,0,0,92,0,0,53,15,4,,,,98,66,17,8,7,2,1.62\r\n,Evelyn Thurman Gratts Elementary,Los Angeles Unified,Los Angeles,751,2,3,0,1,1,95,0,0,0,100,7,0,65,20,9,20,21,N/A,86,72,20,5,2,1,1.41\r\nD,Aveson Global Leadership Academy,Pasadena Unified,Los Angeles,750,3,23,1,3,2,26,1,35,3,26,0,0,1,0,15,N/A,11,11,64,3,4,28,34,31,3.87\r\n,Fallbrook Street Elementary,Fallbrook Union Elementary,San Diego,750,2,1,0,0,0,78,0,20,0,81,12,12,59,7,13,28,31,N/A,84,9,11,17,37,26,3.62\r\nD,Pathways Charter,Harmony Union Elementary,Sonoma,750,5,4,2,4,3,20,1,65,0,69,0,0,2,2,9,2,2,2,97,6,12,34,29,19,3.44\r\nY,Mattole Valley Charter (#159),Mattole Unified,Humboldt,750,2,2,6,2,0,11,0,72,5,6,0,0,0,0,7,1,N/A,1,83,8,24,28,28,13,3.15\r\n,La Entrada High,Placentia-Yorba Linda Unified,Orange,750,5,1,0,3,0,17,1,77,0,5,6,0,0,5,2,,,,78,18,15,22,25,19,3.13\r\n,Parent (Frank D.) Elementary,Inglewood Unified,Los Angeles,750,2,89,0,0,0,9,0,1,0,70,6,0,1,0,13,31,34,26,98,8,20,40,22,10,3.05\r\n,John F. Kennedy High,Fremont Unified,Alameda,750,5,6,1,24,7,30,2,25,2,36,12,0,15,23,13,N/A,N/A,28,98,11,29,27,25,9,2.93\r\n,Rio Rosales,Rio Elementary,Ventura,750,2,3,1,5,15,68,0,5,3,69,0,4,30,10,5,21,26,N/A,72,14,19,35,22,9,2.93\r\n,,Ready Springs Union Elementary,Nevada,750,B,1,5,0,0,11,0,80,1,65,0,0,2,0,16,23,17,3,99,7,30,40,20,3,2.82\r\n,Eagle Ranch,Adelanto Elementary,San Bernardino,750,2,22,1,2,0,53,1,17,4,80,17,0,11,9,18,30,30,N/A,99,10,32,37,14,8,2.78\r\n,Cordova High,Folsom-Cordova Unified,Sacramento,750,5,15,1,8,4,26,2,44,1,65,7,0,14,23,13,N/A,N/A,33,88,13,28,36,19,5,2.76\r\n,Abraham Lincoln Elementary,Sacramento City Unified,Sacramento,750,2,17,0,4,3,33,1,38,5,80,8,0,31,11,10,26,33,N/A,93,14,31,35,16,4,2.66\r\n,South Fork Junior - Senior High,Southern Humboldt Joint Unifie,Humboldt,750,5,1,6,1,0,10,0,79,1,47,10,0,3,2,7,N/A,N/A,12,83,7,44,31,15,3,2.63\r\n,Oroville High,Oroville Union High,Butte,750,5,3,6,27,1,13,0,49,1,59,2,0,10,18,12,N/A,N/A,26,87,17,30,32,16,5,2.62\r\n,Great Valley Elementary,Manteca Unified,San Joaquin,750,2,22,0,13,10,42,1,10,2,78,1,1,21,20,7,32,33,26,91,14,36,28,18,4,2.62\r\n,University Senior High,Los Angeles Unified,Los Angeles,750,5,20,1,9,2,56,0,10,1,76,21,0,11,38,9,N/A,N/A,29,43,24,28,21,18,9,2.6\r\nD,North Valley Charter Academy,Los Angeles Unified,Los Angeles,750,5,3,1,1,1,77,0,16,2,76,0,0,14,26,18,N/A,28,6,96,24,22,35,13,6,2.57\r\n,,Taft Union High,Kern,750,B,1,2,0,0,40,1,54,2,47,0,2,9,21,8,N/A,N/A,17,100,21,27,41,7,4,2.47\r\n,Ramona Junior High,Chino Valley Unified,San Bernardino,750,3,4,0,3,1,78,0,13,1,68,3,0,21,16,16,N/A,N/A,27,73,22,32,29,13,4,2.46\r\n,Tierra Bonita Elementary,Eastside Union Elementary,Los Angeles,750,2,28,1,1,1,58,0,11,1,85,3,1,21,13,6,19,28,N/A,96,19,32,34,13,2,2.46\r\n,Happy Camp Elementary,Happy Camp Union Elementary,Siskiyou,750,2,0,35,0,0,13,0,33,19,100,0,0,0,0,20,1,N/A,N/A,100,22,31,36,7,5,2.42\r\n,Oro Grande Elementary,Oro Grande Elementary,San Bernardino,750,2,4,1,0,1,71,0,20,4,79,0,0,21,14,5,4,3,N/A,96,33,18,32,10,7,2.4\r\n,Wilcox Elementary,Montebello Unified,Los Angeles,750,2,0,0,3,1,94,0,1,1,84,7,0,29,19,13,26,24,N/A,83,19,42,24,12,3,2.4\r\n,,Seeley Union Elementary,Imperial,750,B,2,0,1,1,84,0,11,1,100,7,5,49,12,10,23,21,N/A,93,25,31,28,10,6,2.4\r\n,Seeley Elementary,Seeley Union Elementary,Imperial,750,2,2,0,1,1,84,0,11,1,100,7,5,49,12,10,23,21,N/A,92,25,31,28,10,6,2.39\r\n,Bayside Elementary,South Bay Union Elementary,San Diego,750,2,4,0,1,3,80,0,10,1,88,3,1,51,7,14,18,22,N/A,93,24,34,25,12,4,2.37\r\n,Eagle Peak Middle,Ukiah Unified,Mendocino,750,3,1,9,0,0,42,0,46,1,69,3,12,18,18,12,N/A,27,25,96,29,29,29,11,2,2.3\r\n,Lompoc Valley Middle,Lompoc Unified,Santa Barbara,750,3,5,2,3,1,70,1,15,5,79,7,1,23,21,11,N/A,N/A,25,89,32,33,22,8,6,2.23\r\n,Lower Lake Elementary,Konocti Unified,Lake,750,2,3,1,0,0,31,0,56,8,85,2,3,18,2,12,21,30,24,98,18,51,23,7,1,2.22\r\n,Citrus Elementary,Fontana Unified,San Bernardino,750,2,3,0,0,0,95,0,2,0,100,3,0,46,22,13,30,28,N/A,96,33,35,23,6,3,2.09\r\n,Oak Hill Elementary,Escondido Union,San Diego,750,2,3,0,1,1,84,0,10,0,88,7,1,66,4,7,24,29,N/A,75,39,33,17,9,1,2\r\nY,Shearer Charter,Napa Valley Unified,Napa,750,2,0,0,0,0,92,0,7,0,88,2,9,48,35,8,20,20,N/A,95,38,38,14,7,3,1.99\r\n,Nellie N. Coffman Middle,Palm Springs Unified,Riverside,750,3,3,0,0,1,87,0,8,0,92,8,0,28,37,8,N/A,30,33,97,39,38,15,6,2,1.93\r\n,Blaker-Kinser Junior High,Ceres Unified,Stanislaus,750,3,2,1,4,1,77,1,13,1,85,4,7,25,29,12,N/A,N/A,29,99,42,36,15,5,1,1.88\r\n,Cesar E. Chavez Elementary,Montebello Unified,Los Angeles,750,2,0,0,0,0,99,0,0,0,100,3,0,45,28,7,29,29,N/A,77,40,41,12,5,2,1.88\r\n,Pleasant View Elementary,Pleasant View Elementary,Tulare,750,2,0,0,1,8,85,0,3,1,99,0,16,59,10,1,23,29,N/A,79,44,34,14,6,2,1.87\r\n,Amy B. Seibert Elementary,Panama-Buena Vista Union,Kern,750,2,16,0,2,1,68,0,13,0,90,2,0,21,10,9,29,31,N/A,44,39,42,15,3,0,1.85\r\n,Florence Nightingale Middle,Los Angeles Unified,Los Angeles,750,3,1,0,27,1,70,0,0,0,100,12,0,29,38,15,N/A,21,21,54,48,31,13,5,3,1.83\r\n,Central Elementary,Baldwin Park Unified,Los Angeles,750,2,0,0,4,0,94,0,1,0,98,5,1,45,15,17,16,29,N/A,69,44,44,8,2,1,1.73\r\n,Pioneer Elementary,Escondido Union,San Diego,750,2,1,0,1,1,94,0,3,0,96,8,5,81,7,10,19,22,N/A,76,55,34,8,2,1,1.61\r\n,Lakeview Elementary,Oakland Unified,Alameda,749,2,74,0,9,3,8,0,3,3,79,33,0,21,9,5,25,23,N/A,63,6,12,37,33,12,3.34\r\n,San Diego Metro Career and Tech,San Diego Unified,San Diego,749,5,16,1,2,3,39,1,36,2,44,20,0,6,20,11,N/A,N/A,17,89,5,25,30,23,18,3.24\r\n,Polytechnic High,Long Beach Unified,Los Angeles,749,5,26,0,22,7,32,2,10,1,58,0,0,15,26,8,N/A,N/A,31,79,14,21,22,30,13,3.08\r\n,Cordova Gardens Elementary,Folsom-Cordova Unified,Sacramento,749,2,11,1,2,1,27,1,56,2,69,2,0,14,8,14,23,23,N/A,88,4,24,46,20,7,3\r\n,,Lemoore Union High,Kings,749,B,6,3,1,7,48,1,33,0,43,1,7,12,12,10,N/A,N/A,25,97,16,22,39,17,7,2.77\r\n,Bannon Creek Elementary,Natomas Unified,Sacramento,749,2,25,1,9,2,46,2,11,1,71,18,0,29,1,15,28,28,N/A,89,10,37,32,16,6,2.7\r\n,Laytonville Elementary,Laytonville Unified,Mendocino,749,2,3,10,1,0,11,0,69,4,80,3,1,4,2,4,2,2,N/A,87,5,51,22,18,4,2.64\r\n,Stanford Avenue Elementary,Oroville City Elementary,Butte,749,2,1,4,3,0,16,1,65,10,78,3,0,7,2,18,22,25,N/A,94,12,32,41,12,4,2.63\r\n,Lick (James) Middle,San Francisco Unified,San Francisco,749,3,7,2,5,1,63,0,14,1,65,24,2,30,25,15,N/A,21,20,57,13,50,13,14,10,2.59\r\n,Orangethorpe Elementary,Fullerton Elementary,Orange,749,2,2,0,5,2,73,0,12,1,71,2,0,46,8,15,25,29,N/A,86,25,25,26,17,6,2.55\r\n,Sven Lokrantz Special Education Center,Los Angeles Unified,Los Angeles,749,C,6,1,8,5,71,0,9,1,75,0,0,60,0,100,6,6,N/A,88,26,31,17,17,10,2.54\r\n,,French Gulch-Whiskeytown Eleme,Shasta,749,B,0,0,0,0,33,0,20,0,80,0,0,0,0,27,,,,13,0,50,50,0,0,2.5\r\n,French Gulch-Whiskeytown Elementary,French Gulch-Whiskeytown Eleme,Shasta,749,2,0,0,0,0,33,0,20,0,80,0,0,0,0,27,,,,13,0,50,50,0,0,2.5\r\n,Creekside Elementary,Lodi Unified,San Joaquin,749,2,22,1,21,7,28,1,14,2,84,7,0,21,6,9,28,27,N/A,80,18,30,39,11,2,2.49\r\n,Beverly Hills Elementary,Vallejo City Unified,Solano,749,2,35,2,1,4,47,1,6,4,76,0,0,28,12,12,25,29,N/A,96,19,31,37,9,4,2.47\r\n,Oehl Elementary,San Bernardino City Unified,San Bernardino,749,2,19,1,3,0,59,1,14,2,96,10,0,22,12,13,27,27,N/A,73,22,30,32,11,5,2.47\r\n,,Barstow Unified,San Bernardino,749,B,15,2,1,1,51,1,26,3,71,14,0,15,5,11,26,26,26,92,17,38,32,9,4,2.44\r\n,Golden Hill K-8,San Diego Unified,San Diego,749,2,3,0,2,1,91,1,2,1,100,19,0,52,25,20,18,28,26,67,18,41,27,9,6,2.44\r\n,Lakeland Village,Lake Elsinore Unified,Riverside,749,2,4,0,1,1,63,1,28,0,80,8,0,29,13,14,23,26,27,97,24,35,27,11,4,2.37\r\n,,Perris Union High,Riverside,749,B,8,0,2,2,69,0,17,2,73,6,0,17,28,8,N/A,26,33,99,28,28,28,10,5,2.36\r\n,Southern Trinity High,Southern Trinity Joint Unified,Trinity,749,5,0,9,4,0,4,0,83,0,87,30,0,0,0,9,N/A,N/A,7,48,9,64,18,0,9,2.36\r\n,Fairview Elementary,Orland Joint Unified,Glenn,749,2,1,1,4,1,59,0,34,0,79,9,2,30,12,12,25,30,N/A,100,28,31,28,10,3,2.3\r\n,Hesperia Junior High,Hesperia Unified,San Bernardino,749,3,7,0,1,0,73,1,18,0,82,7,0,23,17,9,N/A,N/A,24,90,23,42,23,9,4,2.29\r\n,Balboa Elementary,San Diego Unified,San Diego,749,2,3,0,0,2,91,0,2,1,100,22,0,61,20,11,21,29,N/A,80,28,41,14,9,8,2.26\r\n,Washington Intermediate,Dinuba Unified,Tulare,749,3,1,0,1,1,92,0,5,0,100,10,5,28,27,5,N/A,N/A,21,94,34,27,25,9,5,2.24\r\n,,Caruthers Unified,Fresno,749,B,1,0,8,0,75,0,16,1,87,8,18,36,27,9,18,19,24,89,36,28,21,9,7,2.23\r\n,Alicia Reyes Elementary,Merced City Elementary,Merced,749,2,6,0,8,0,79,0,7,0,87,20,5,56,7,6,25,31,N/A,96,44,20,19,8,9,2.2\r\n,Elkhorn Elementary,North Monterey County Unified,Monterey,749,2,0,0,1,1,81,0,16,1,76,4,8,57,5,3,29,29,N/A,100,37,25,25,9,4,2.18\r\n,Mann (Horace) Elementary,Anaheim City,Orange,749,2,1,0,2,1,94,0,1,1,94,22,0,61,21,10,30,30,N/A,19,29,40,20,7,4,2.18\r\n,Santiago High,Garden Grove Unified,Orange,749,5,1,0,15,1,80,0,3,0,77,5,0,38,48,11,N/A,N/A,30,57,38,34,14,14,1,2.08\r\n,Los Amigos High,Garden Grove Unified,Orange,749,5,1,0,17,1,78,0,3,0,77,5,0,38,48,10,N/A,N/A,30,55,38,36,11,12,3,2.05\r\n,Northam Elementary,Rowland Unified,Los Angeles,749,2,0,0,1,3,94,0,2,0,92,9,1,57,15,10,20,28,N/A,85,26,51,17,3,2,2.03\r\n,Kingsley Elementary,Pomona Unified,Los Angeles,749,2,6,0,4,0,87,0,2,1,93,1,0,46,11,13,28,31,N/A,87,30,47,15,5,3,2.02\r\n,Cambridge Elementary,Mt. Diablo Unified,Contra Costa,749,2,2,0,2,1,93,1,1,0,98,1,0,76,18,8,20,25,N/A,28,42,33,9,13,3,2.01\r\n,Arturo Sanchez Elementary,Norwalk-La Mirada Unified,Los Angeles,749,2,2,0,0,3,94,0,1,0,92,1,9,44,17,9,25,33,N/A,98,37,40,17,6,2,1.96\r\n,Wayside Elementary,Bakersfield City,Kern,749,2,6,2,0,0,87,0,4,0,98,0,10,36,22,7,19,29,N/A,73,39,40,10,8,3,1.96\r\n,,El Monte Union High,Los Angeles,749,B,0,0,20,1,76,0,2,0,85,7,2,25,37,9,N/A,N/A,22,99,43,34,13,8,2,1.92\r\n,Ibarra Elementary,San Diego Unified,San Diego,749,2,14,0,19,1,65,0,1,1,99,21,0,73,10,12,22,30,N/A,78,42,34,17,5,2,1.9\r\n,,Pleasant View Elementary,Tulare,749,B,0,0,1,8,85,0,3,1,99,0,15,59,10,1,23,29,N/A,79,44,34,14,6,2,1.87\r\n,Glassell Park Elementary,Los Angeles Unified,Los Angeles,749,2,1,0,1,2,94,1,1,0,100,8,0,50,19,15,17,22,N/A,97,40,38,16,4,1,1.87\r\n,Lincoln Elementary,Hanford Elementary,Kings,749,2,11,0,0,0,82,0,5,1,97,0,16,36,16,13,19,21,N/A,92,36,47,15,2,0,1.84\r\n,Russell Elementary,Los Angeles Unified,Los Angeles,749,2,12,0,0,0,87,0,0,0,93,7,0,44,29,10,20,22,N/A,33,57,27,9,4,3,1.68\r\n,Berendo Middle,Los Angeles Unified,Los Angeles,749,3,1,0,6,1,92,0,0,0,94,13,0,33,49,12,N/A,25,22,69,62,24,7,6,1,1.59\r\nY,Cecil Avenue Math and Science Academy,Delano Union Elementary,Kern,749,3,0,0,1,10,86,0,2,1,85,6,14,39,25,8,N/A,29,21,96,56,33,9,3,0,1.58\r\n,Clyde W. Needham Elementary,Lodi Unified,San Joaquin,749,2,0,0,6,1,84,0,8,0,97,9,13,76,7,13,19,17,N/A,74,57,32,10,2,0,1.56\r\nD,Innovations Academy,San Diego Unified,San Diego,748,2,5,1,4,1,21,0,57,10,5,11,0,4,1,18,13,11,N/A,89,1,11,23,35,30,3.82\r\nD,California Virtual Academy @ San Diego,Spencer Valley Elementary,San Diego,748,2,8,1,5,2,24,1,58,0,31,0,0,1,1,9,1,2,15,93,2,21,33,29,15,3.35\r\nD,Liberty Charter,Grossmont Union High,San Diego,748,5,4,1,15,0,27,0,49,3,38,0,0,18,9,6,N/A,N/A,21,88,7,17,29,34,13,3.3\r\n,,Sutter Union High,Sutter,748,B,0,2,3,0,16,0,76,0,19,0,1,3,3,9,N/A,N/A,26,91,4,15,49,19,13,3.21\r\n,Oasis High (Alternative),Fallbrook Union High,San Diego,748,5,6,0,1,0,31,0,60,1,35,6,0,4,13,0,N/A,N/A,16,76,16,11,34,23,16,3.13\r\n,,Dehesa Elementary,San Diego,748,B,1,8,0,2,32,1,50,6,43,0,0,18,4,15,16,20,8,92,15,15,32,29,9,3.02\r\n,Dehesa Elementary,Dehesa Elementary,San Diego,748,2,1,8,0,2,32,1,50,6,43,0,0,18,4,15,17,24,N/A,92,15,15,32,29,9,3.02\r\n,Hercules Middle,West Contra Costa Unified,Contra Costa,748,3,27,0,18,26,19,1,10,0,43,22,0,8,16,11,N/A,33,30,93,5,34,27,28,6,2.97\r\n,Pasadena High,Pasadena Unified,Los Angeles,748,5,14,0,3,3,56,0,17,4,63,16,0,9,26,10,N/A,N/A,28,77,16,26,25,21,11,2.86\r\nY,South Bay Charter,South Bay Union Elementary,Humboldt,748,3,0,18,2,0,12,3,65,0,58,0,0,6,6,5,N/A,N/A,22,97,13,27,36,20,5,2.78\r\n,Shasta Plus,Shasta Union High,Shasta,748,B,4,13,0,0,21,0,63,0,67,4,0,0,0,0,N/A,N/A,23,92,9,27,41,23,0,2.77\r\n,Bird Street Elementary,Oroville City Elementary,Butte,748,2,4,9,7,0,16,1,50,13,99,0,0,4,2,8,26,30,N/A,98,10,32,39,14,6,2.75\r\n,,San Lorenzo Unified,Alameda,748,B,13,0,11,8,53,2,11,1,54,4,1,24,27,10,26,29,29,79,14,32,29,21,4,2.7\r\n,,Peninsula Union,Humboldt,748,B,12,4,0,0,0,0,85,0,92,0,0,0,0,15,4,5,N/A,58,0,47,40,13,0,2.67\r\n,Peninsula Union Elementary,Peninsula Union,Humboldt,748,2,12,4,0,0,0,0,85,0,92,0,0,0,0,15,4,5,N/A,58,0,47,40,13,0,2.67\r\n,Jefferson Middle,Oceanside Unified,San Diego,748,3,11,1,1,3,62,2,19,1,71,9,3,18,22,14,N/A,25,30,80,22,25,31,16,6,2.6\r\n,Bret Harte Middle,Hayward Unified,Alameda,748,3,26,0,5,5,44,3,13,1,65,11,0,11,22,8,N/A,N/A,29,85,20,28,31,15,6,2.59\r\n,,Oxnard Union High,Ventura,748,B,2,0,2,5,75,0,14,1,61,10,3,20,27,9,20,33,30,89,27,25,22,17,9,2.55\r\n,Blanche Charles Elementary,Calexico Unified,Imperial,748,2,0,0,0,0,99,0,0,0,100,4,16,68,21,7,26,28,N/A,95,24,27,30,16,4,2.49\r\n,Powell Academy for Success,Long Beach Unified,Los Angeles,748,2,23,0,2,1,69,4,1,0,87,2,1,39,17,7,28,32,30,65,29,34,24,8,6,2.29\r\n,Thomas B. Moffitt Elementary,Norwalk-La Mirada Unified,Los Angeles,748,2,6,0,0,4,82,1,5,2,79,5,4,24,15,11,28,25,N/A,97,23,45,21,11,0,2.21\r\n,John H. Nuffer Elementary,Norwalk-La Mirada Unified,Los Angeles,748,2,3,0,3,3,88,1,1,0,84,7,11,30,21,12,22,29,N/A,96,30,41,18,8,3,2.15\r\n,Kempton Street Elementary,La Mesa-Spring Valley,San Diego,748,2,7,0,1,3,82,1,3,3,93,5,0,55,15,11,29,31,N/A,88,32,35,21,9,3,2.15\r\n,Charles E. Mack Elementary,Elk Grove Unified,Sacramento,748,2,20,0,11,1,57,2,4,4,100,0,1,43,15,8,22,26,N/A,93,34,37,21,4,4,2.07\r\n,Fred L. Thompson Junior High,Panama-Buena Vista Union,Kern,748,3,17,1,3,1,61,0,18,0,84,10,0,10,18,8,N/A,N/A,26,66,28,48,18,7,0,2.03\r\n,Fern Bacon Middle,Sacramento City Unified,Sacramento,748,3,23,0,20,0,48,1,4,3,100,5,0,27,29,11,N/A,N/A,31,95,39,33,17,8,3,2.02\r\n,South El Monte High,El Monte Union High,Los Angeles,748,5,0,0,4,0,94,0,1,0,88,6,0,25,38,8,N/A,N/A,23,100,44,33,16,5,2,1.88\r\n,Mesa Verde Elementary,Riverbank Unified,Stanislaus,748,2,2,0,1,0,66,0,31,0,82,1,5,47,4,6,26,28,N/A,96,42,36,16,4,1,1.87\r\nD,Alliance College-Ready Academy High No.,Los Angeles Unified,Los Angeles,748,5,6,0,2,0,82,0,9,0,93,0,0,36,43,10,N/A,N/A,21,97,51,28,13,5,3,1.83\r\n,Winfield Elementary,Winton Elementary,Merced,748,2,2,1,4,0,87,0,7,0,90,0,3,68,7,10,19,32,N/A,95,46,40,9,5,0,1.74\r\nD,Roseland Charter,Roseland Elementary,Sonoma,748,5,1,1,2,0,93,0,2,0,86,22,4,33,54,10,22,N/A,22,86,60,24,9,4,2,1.63\r\nD,Aspire Juanita Tate Academy Charter,Los Angeles Unified,Los Angeles,748,2,11,0,0,0,87,1,0,0,84,0,0,47,25,8,22,29,N/A,84,57,32,9,1,1,1.56\r\n,Wallace R. Davis Elementary,Santa Ana Unified,Orange,748,2,0,0,0,0,99,0,0,0,100,4,1,79,15,10,27,27,N/A,99,60,30,8,3,0,1.53\r\nD,California Virtual Academy @ San Mateo,Jefferson Elementary,San Mateo,747,5,13,1,9,4,20,2,50,0,27,0,0,1,2,9,1,1,5,92,3,18,27,32,20,3.49\r\nD,CORE Placer Charter,Colfax Elementary,Placer,747,5,1,8,1,0,15,1,74,0,46,4,0,3,4,9,3,4,3,100,5,28,37,21,9,3\r\n,Oxnard High,Oxnard Union High,Ventura,747,5,3,0,2,3,80,0,11,1,61,9,5,13,28,10,N/A,N/A,30,88,22,28,26,16,9,2.61\r\n,Carver Elementary,San Diego Unified,San Diego,747,2,22,0,21,2,44,1,7,3,100,10,0,35,12,20,15,31,N/A,93,13,36,31,17,3,2.61\r\n,Hanford West High,Hanford Joint Union High,Kings,747,5,6,1,3,3,55,0,31,0,34,0,10,11,18,8,N/A,N/A,27,90,18,31,30,15,6,2.59\r\n,Hesperian Elementary,San Lorenzo Unified,Alameda,747,2,18,1,5,7,62,2,5,0,72,0,0,48,13,8,24,31,N/A,78,13,37,29,18,2,2.59\r\n,Hollyvale Elementary,Hesperia Unified,San Bernardino,747,2,11,0,2,0,61,1,23,1,75,2,0,23,3,13,31,25,N/A,93,17,30,32,16,4,2.59\r\nY,Fairmont Charter Elementary,Vacaville Unified,Solano,747,2,12,0,3,2,47,1,30,6,67,6,0,24,6,8,23,21,N/A,99,12,40,34,11,3,2.54\r\n,Searles Elementary,New Haven Unified,Alameda,747,2,5,0,12,10,63,2,4,3,63,2,5,37,22,8,25,28,N/A,95,22,29,28,17,4,2.53\r\n,Fremont Elementary,Montebello Unified,Los Angeles,747,2,1,0,0,0,94,1,4,1,85,4,0,31,14,13,27,31,N/A,78,16,41,24,13,6,2.53\r\n,,East Side Union High,Santa Clara,747,B,3,0,32,9,45,1,8,1,47,5,1,18,36,10,21,18,29,91,26,28,22,17,7,2.51\r\n,Verdugo Hills Senior High,Los Angeles Unified,Los Angeles,747,5,3,1,4,3,58,0,31,0,74,18,0,11,31,11,N/A,N/A,27,59,24,27,29,16,4,2.48\r\n,Sunnyslope Elementary,Hollister,San Benito,747,2,2,1,1,1,74,0,21,0,71,12,16,29,9,11,31,34,N/A,97,17,33,36,13,0,2.47\r\n,Castle Park Senior High,Sweetwater Union High,San Diego,747,5,2,0,1,2,90,1,4,0,73,12,0,35,34,14,N/A,N/A,28,87,25,31,21,17,5,2.45\r\n,Ulysses Grant Elementary,Colton Joint Unified,San Bernardino,747,2,3,0,0,0,91,0,4,1,80,16,0,33,6,8,20,29,N/A,94,20,37,31,7,6,2.42\r\n,Walter M. Brown Elementary,Turlock Unified,Stanislaus,747,2,2,1,6,0,48,1,39,1,74,2,0,31,5,13,21,28,N/A,98,17,43,30,7,3,2.38\r\n,,Patterson Joint Unified,Stanislaus,747,B,7,0,2,2,69,2,16,1,61,5,2,30,18,13,27,28,28,94,28,28,27,13,4,2.37\r\n,Wakeham Elementary,Garden Grove Unified,Orange,747,2,2,0,13,1,80,1,4,0,70,0,0,61,17,7,26,33,N/A,30,24,42,8,27,0,2.37\r\n,P. A. Walsh Elementary,Morgan Hill Unified,Santa Clara,747,2,1,0,4,2,78,0,14,0,72,10,11,53,7,11,27,27,N/A,94,28,31,21,14,5,2.36\r\n,Duarte High,Duarte Unified,Los Angeles,747,5,8,0,4,4,73,0,10,1,56,6,2,12,32,11,N/A,N/A,31,96,28,33,21,13,5,2.33\r\n,Alice Birney Elementary,Eureka City Schools,Humboldt,747,2,4,8,20,0,36,4,26,2,95,5,1,40,6,19,24,23,N/A,86,22,38,29,9,2,2.31\r\n,Beaumont Elementary,Vista Unified,San Diego,747,2,4,1,0,1,72,1,18,2,73,0,4,43,12,19,22,28,N/A,86,33,25,25,12,5,2.3\r\n,Freeman Elementary,Woodland Joint Unified,Yolo,747,2,3,1,1,1,80,0,12,1,87,8,3,35,25,14,26,27,N/A,79,28,32,29,5,5,2.27\r\n,McKinley Elementary,El Centro Elementary,Imperial,747,2,1,0,1,0,93,0,5,0,87,2,7,61,9,9,29,30,N/A,75,18,52,18,9,2,2.25\r\n,Valley High,Elk Grove Unified,Sacramento,747,5,25,0,25,4,35,5,4,2,87,4,0,29,29,11,N/A,N/A,23,89,30,35,22,9,3,2.21\r\n,,Butte Valley Unified,Siskiyou,747,B,0,5,1,0,40,0,52,0,38,8,2,29,4,8,13,16,14,87,23,50,17,6,4,2.19\r\n,Madera High,Madera Unified,Madera,747,5,2,1,2,0,76,0,18,0,65,13,8,15,30,8,N/A,N/A,31,99,35,29,24,8,4,2.18\r\n,Rialto Middle,Rialto Unified,San Bernardino,747,3,12,0,1,0,82,0,4,1,87,16,0,21,24,11,N/A,23,19,89,33,34,21,8,4,2.15\r\n,Lucille Whitehead Intermediate,Waterford Unified,Stanislaus,747,2,2,0,1,1,59,1,36,0,80,17,12,35,8,11,26,28,N/A,92,27,49,13,7,4,2.13\r\n,Fremont Elementary,Fresno Unified,Fresno,747,2,9,1,4,0,78,0,8,0,100,3,4,26,16,12,21,26,N/A,79,34,35,22,6,3,2.07\r\n,Montara Avenue Elementary,Los Angeles Unified,Los Angeles,747,2,0,0,0,0,100,0,0,0,90,4,3,31,34,9,19,21,N/A,95,45,27,18,7,3,1.98\r\n,Houston Elementary,Visalia Unified,Tulare,747,2,1,0,3,0,93,0,3,1,100,3,10,53,15,13,26,31,N/A,92,37,37,19,5,2,1.98\r\n,Libby Elementary,Oceanside Unified,San Diego,747,2,2,0,1,1,87,2,6,0,93,1,9,62,17,15,24,22,N/A,84,46,24,20,7,3,1.97\r\n,Riverbank High,Riverbank Unified,Stanislaus,747,5,2,1,0,0,76,0,21,0,75,1,5,29,27,7,N/A,N/A,23,95,41,36,15,6,2,1.93\r\n,Rio Plaza Elementary,Rio Elementary,Ventura,747,2,0,0,0,1,97,0,2,0,100,0,14,64,13,4,27,23,N/A,74,48,28,13,6,5,1.92\r\n,Howard Tanner,Paramount Unified,Los Angeles,747,2,8,0,0,0,88,2,1,0,97,0,0,52,15,8,28,34,N/A,92,43,33,16,7,1,1.91\r\n,Emerson/Bandini Elementary,San Diego Unified,San Diego,747,2,4,0,0,0,95,0,1,0,100,21,0,64,23,11,19,19,N/A,87,40,40,14,3,4,1.9\r\nD,Alliance Richard Merkin Middle,Los Angeles Unified,Los Angeles,747,3,3,0,0,0,97,0,0,0,94,0,0,22,40,7,N/A,29,31,100,47,29,15,6,3,1.88\r\n,Aynesworth Elementary,Fresno Unified,Fresno,747,2,4,1,9,1,82,1,2,0,100,7,4,47,20,9,27,26,N/A,81,44,35,16,4,2,1.86\r\n,Second Street Elementary,Los Angeles Unified,Los Angeles,747,2,1,0,0,0,99,0,0,0,100,4,12,43,31,13,18,21,N/A,48,46,35,11,5,4,1.85\r\n,Browning Road Elementary,McFarland Unified,Kern,747,2,0,0,0,1,98,0,1,0,100,1,9,54,18,12,20,20,N/A,100,52,21,22,4,2,1.84\r\n,Bobier Elementary,Vista Unified,San Diego,747,2,1,0,0,1,94,1,3,0,89,0,14,66,18,15,23,31,N/A,78,57,21,16,5,1,1.72\r\n,Warm Springs Elementary,San Bernardino City Unified,San Bernardino,747,2,17,0,3,1,75,0,2,1,97,6,0,57,10,6,19,24,N/A,64,51,33,11,3,2,1.71\r\n,Lincoln Elementary,Escondido Union,San Diego,747,2,4,0,1,1,92,0,3,0,96,6,2,80,4,11,23,29,N/A,78,60,24,12,2,1,1.6\r\n,Natividad Elementary,Salinas City Elementary,Monterey,747,2,0,0,0,4,94,0,1,0,97,0,9,60,21,10,22,24,N/A,100,61,26,10,2,1,1.56\r\n,Valley Oaks High (Alternative),Petaluma City Schools,Sonoma,746,5,1,1,4,0,23,0,69,1,31,3,0,0,13,15,N/A,N/A,12,100,7,13,32,27,21,3.43\r\nD,Da Vinci Design,Wiseburn Elementary,Los Angeles,746,5,12,0,2,1,54,0,12,2,52,0,0,4,17,7,17,20,29,99,9,15,32,31,13,3.23\r\nD,Central California Connections Academy,Alpaugh Unified,Tulare,746,5,5,2,3,1,36,2,51,0,53,1,0,1,3,6,11,12,9,97,4,16,51,19,10,3.15\r\n,Monte Vista,Simi Valley Unified,Ventura,746,5,1,0,1,1,23,0,73,1,27,6,0,0,5,10,N/A,1,3,94,9,31,34,13,13,2.9\r\n,Will Rogers Middle,San Juan Unified,Sacramento,746,3,10,2,2,2,24,1,57,2,70,3,0,14,13,17,N/A,30,28,73,11,24,36,20,8,2.9\r\nD,\"Oakland Military Institute, College Prep\",Oakland Unified,Alameda,746,5,26,2,18,1,46,2,5,0,83,0,0,23,31,8,N/A,26,21,99,20,20,30,15,16,2.87\r\n,Big Valley Jr. Sr. High,Big Valley Joint Unified,Lassen,746,5,0,0,0,0,16,0,76,6,70,0,13,2,0,13,N/A,N/A,3,80,6,35,32,26,2,2.82\r\n,Woodside High,Sequoia Union High,San Mateo,746,5,4,0,2,1,57,3,30,2,49,3,2,25,21,14,N/A,N/A,25,74,24,22,20,19,15,2.78\r\n,George Y. Komure Elementary,Manteca Unified,San Joaquin,746,2,23,0,14,13,38,2,9,1,68,4,0,22,21,8,29,30,30,61,7,40,26,25,2,2.76\r\nD,Aspire Alexander Twilight Secondary Acad,SBC - Aspire Public Schools,El Dorado,746,3,28,0,0,4,44,1,16,4,68,0,0,22,10,9,N/A,29,27,83,14,25,40,17,4,2.72\r\n,,Antioch Unified,Contra Costa,746,B,27,1,6,6,38,1,22,0,62,4,0,16,9,13,25,28,25,72,13,31,34,17,6,2.71\r\n,,Holtville Unified,Imperial,746,B,0,0,0,0,86,0,11,1,99,7,21,40,19,10,20,28,26,3,17,31,23,20,9,2.71\r\n,Fletcher Walker Elementary,Westwood Unified,Lassen,746,2,2,2,0,0,18,0,78,0,57,0,0,4,1,12,11,16,N/A,32,6,35,42,16,0,2.68\r\n,Cajon High,San Bernardino City Unified,San Bernardino,746,5,17,1,2,1,54,1,22,1,97,17,0,7,20,10,N/A,N/A,31,81,18,30,32,13,7,2.62\r\n,Washington Elementary,Sacramento City Unified,Sacramento,746,2,9,0,5,0,68,0,14,4,100,6,0,29,14,18,23,29,N/A,54,20,24,36,15,5,2.61\r\n,Lincoln Junior High,Taft City,Kern,746,3,1,1,1,0,42,2,51,1,71,0,4,11,19,13,4,22,20,77,16,26,41,16,0,2.58\r\n,Standard Middle,Standard Elementary,Kern,746,3,1,2,1,1,21,0,73,0,66,4,0,2,4,11,N/A,24,26,16,20,25,37,14,4,2.56\r\n,Bauer/Speck Elementary,Paso Robles Joint Unified,San Luis Obispo,746,2,1,1,2,1,55,0,36,2,69,1,7,34,4,16,21,29,N/A,79,17,34,29,14,6,2.56\r\n,Vinland Elementary,Fresno Unified,Fresno,746,2,12,2,20,0,48,0,15,0,100,1,1,15,10,12,26,24,N/A,89,16,32,37,11,4,2.55\r\n,,Fallbrook Union High,San Diego,746,B,2,1,1,1,56,0,35,3,54,15,2,22,21,9,N/A,N/A,29,74,34,16,21,18,11,2.54\r\n,Shadow Hills High,Desert Sands Unified,Riverside,746,5,2,0,1,1,81,0,15,0,73,11,1,12,28,11,N/A,N/A,15,99,21,33,27,13,6,2.51\r\n,,Escondido Union High,San Diego,746,B,3,0,3,2,66,1,25,0,60,7,1,22,32,9,N/A,N/A,23,81,36,20,19,17,9,2.43\r\n,,Newman-Crows Landing Unified,Stanislaus,746,B,1,0,1,0,72,0,23,1,69,9,3,36,13,10,27,28,25,89,25,31,28,11,6,2.42\r\nD,Children of Promise Preparatory Academy,Inglewood Unified,Los Angeles,746,2,72,0,0,0,28,0,0,0,100,0,0,25,6,3,1,N/A,N/A,94,9,62,21,6,3,2.32\r\n,East Lake,Konocti Unified,Lake,746,2,5,11,1,1,12,1,67,2,82,2,2,4,0,12,17,33,N/A,96,19,45,26,10,0,2.27\r\n,,Los Angeles Unified,Los Angeles,746,B,9,0,4,2,75,0,9,0,83,13,0,26,29,12,18,24,25,70,36,27,18,13,6,2.27\r\n,Diamond Valley Middle,Hemet Unified,Riverside,746,3,10,1,1,2,54,1,28,3,83,3,0,11,9,11,N/A,31,31,100,28,36,27,6,3,2.21\r\n,Main Street Middle,Soledad Unified,Monterey,746,3,0,0,0,1,95,0,3,0,91,4,2,34,31,11,N/A,N/A,28,99,37,28,20,10,4,2.16\r\n,Latona Avenue Elementary,Los Angeles Unified,Los Angeles,746,2,0,1,4,0,95,0,0,0,100,9,0,32,16,11,16,17,N/A,59,35,36,17,9,3,2.09\r\n,International Community,Oakland Unified,Alameda,746,2,5,0,4,3,85,3,1,0,39,36,1,67,18,5,25,23,N/A,48,45,29,16,9,2,1.95\r\n,Richard E. Byrd Middle,Los Angeles Unified,Los Angeles,746,3,1,0,1,3,93,0,2,0,100,11,0,23,36,15,N/A,30,31,97,44,31,14,8,3,1.94\r\nY,Riverbank Language Academy,Riverbank Unified,Stanislaus,746,2,0,1,1,0,91,0,7,0,78,0,5,54,17,3,22,23,N/A,93,43,32,18,4,3,1.91\r\n,Bartlett Middle,Porterville Unified,Tulare,746,3,0,0,1,0,87,0,9,0,86,2,8,18,25,6,N/A,N/A,27,95,47,25,21,5,2,1.9\r\n,McFadden Intermediate,Santa Ana Unified,Orange,746,3,1,0,3,0,93,0,2,0,89,12,1,44,32,13,N/A,29,31,93,48,29,16,4,2,1.82\r\n,Thomas Jefferson Middle,Wasco Union Elementary,Kern,746,3,3,0,0,0,92,0,4,0,83,0,4,32,29,4,N/A,N/A,19,98,47,31,16,4,1,1.81\r\n,El Gabilan Elementary,Salinas City Elementary,Monterey,746,2,3,1,0,2,91,0,1,0,93,3,11,55,18,4,25,32,N/A,99,49,31,16,3,2,1.79\r\n,John H. Francis Polytechnic,Los Angeles Unified,Los Angeles,746,5,1,0,3,3,90,1,2,0,93,12,0,22,54,11,N/A,N/A,31,69,51,30,11,6,2,1.77\r\n,Longfellow Elementary,Riverside Unified,Riverside,746,2,2,1,1,0,94,0,2,0,96,8,0,57,15,12,29,29,N/A,99,55,24,15,4,2,1.74\r\n,La Granada Elementary,Alvord Unified,Riverside,746,2,2,0,1,0,92,0,5,0,92,2,0,70,2,15,24,30,N/A,94,53,30,12,3,2,1.72\r\n,Pauma Elementary,Valley Center-Pauma Unified,San Diego,746,2,0,16,0,1,76,0,6,1,82,2,10,52,15,7,24,29,19,98,58,21,14,5,2,1.7\r\n,Saul Martinez Elementary,Coachella Valley Unified,Riverside,746,2,0,0,0,0,98,0,1,0,99,3,14,76,14,8,27,26,N/A,86,62,25,7,4,1,1.58\r\n,Wisdom Elementary,Los Angeles Unified,Los Angeles,746,2,8,0,0,0,92,0,0,0,100,3,0,43,21,10,20,25,N/A,60,60,30,8,1,1,1.54\r\n,Fair Oaks Elementary,Redwood City Elementary,San Mateo,746,2,0,0,0,0,95,4,1,0,100,2,5,73,20,24,23,22,N/A,93,63,27,7,1,1,1.5\r\n,Hoover Elementary,Redwood City Elementary,San Mateo,746,2,0,0,1,0,94,2,1,0,99,3,5,61,32,14,27,28,29,99,66,25,6,2,0,1.45\r\n,Horizons Alternative,Mt. Diablo Unified,Contra Costa,745,5,4,0,6,3,24,1,54,5,19,11,0,2,8,4,11,7,15,78,3,14,30,34,19,3.53\r\nD,Willits Charter,Willits Unified,Mendocino,745,5,1,3,0,0,9,0,78,10,57,0,0,0,2,11,N/A,N/A,1,99,7,16,44,22,11,3.13\r\n,Bell Middle,San Diego Unified,San Diego,745,3,17,0,2,32,38,2,3,6,74,18,0,18,21,16,N/A,23,26,90,11,31,29,23,6,2.83\r\n,Downieville Junior-Senior High,Sierra-Plumas Joint Unified,Sierra,745,5,0,0,10,0,10,0,75,5,55,35,0,5,5,10,N/A,N/A,6,45,11,44,0,44,0,2.78\r\n,Marysville High,Marysville Joint Unified,Yuba,745,5,4,8,7,0,23,1,53,2,59,18,0,8,11,12,N/A,N/A,26,83,12,32,38,11,7,2.68\r\n,Rudolph Rivera Middle,Merced City Elementary,Merced,745,3,8,0,18,2,55,0,14,2,79,10,2,14,26,10,N/A,28,27,99,23,23,32,13,9,2.61\r\n,Canoas Elementary,San Jose Unified,Santa Clara,745,2,8,1,10,3,64,0,10,3,79,4,1,41,11,15,24,26,N/A,87,27,21,28,17,7,2.56\r\n,,Red Bluff Joint Union High,Tehama,745,B,1,2,1,1,25,0,67,2,49,0,0,2,2,11,N/A,N/A,23,6,18,34,34,8,6,2.51\r\n,Rio Vista Middle,Rio Elementary,Ventura,745,3,3,0,1,4,81,1,10,1,71,5,3,25,21,7,N/A,31,29,77,26,26,26,15,7,2.5\r\n,Cordova Villa Elementary,Folsom-Cordova Unified,Sacramento,745,2,27,1,4,2,41,0,20,4,87,1,0,27,14,17,26,26,N/A,75,21,30,34,12,3,2.47\r\n,Gilroy High,Gilroy Unified,Santa Clara,745,5,1,0,1,1,77,0,17,1,63,6,2,19,26,9,N/A,N/A,28,73,31,22,25,16,6,2.45\r\n,Lone Pine High,Lone Pine Unified,Inyo,745,5,1,5,4,0,50,0,38,1,50,14,0,5,38,9,N/A,N/A,13,99,22,34,26,18,0,2.4\r\n,Norwood Junior High,Twin Rivers Unified,Sacramento,745,3,22,1,20,1,40,3,10,1,76,9,0,23,24,13,N/A,25,28,85,22,33,30,12,3,2.39\r\n,Thomas Downey High,Modesto City High,Stanislaus,745,5,3,1,3,0,56,0,34,2,67,22,2,13,23,13,N/A,N/A,28,92,28,34,22,9,7,2.33\r\n,Sunnymeadows Elementary,Moreno Valley Unified,Riverside,745,2,14,1,1,0,76,2,4,2,88,4,1,43,7,15,29,25,N/A,91,19,41,30,9,1,2.32\r\n,Tenderloin Community,San Francisco Unified,San Francisco,745,2,12,1,32,5,29,0,14,2,91,15,0,54,11,13,20,29,N/A,79,30,31,19,17,3,2.31\r\n,Birney Elementary,Fresno Unified,Fresno,745,2,6,1,12,1,68,0,9,0,100,9,4,25,10,11,27,25,N/A,82,28,36,29,5,3,2.19\r\n,Montgomery Middle,San Diego Unified,San Diego,745,3,8,0,19,6,59,0,5,3,100,20,1,37,29,15,N/A,23,20,85,36,29,18,15,2,2.18\r\n,Vista del Monte Elementary,Palm Springs Unified,Riverside,745,2,9,1,3,2,71,0,14,0,93,3,0,51,8,11,28,23,N/A,83,32,35,24,6,3,2.14\r\n,Gustine Elementary,Gustine Unified,Merced,745,2,0,0,1,0,77,1,19,2,78,0,8,50,14,8,25,28,N/A,99,41,30,18,6,4,2.02\r\nD,Extera Public,Los Angeles Unified,Los Angeles,745,2,0,0,0,0,98,0,0,0,94,0,0,44,14,1,21,N/A,N/A,84,25,56,13,3,2,2.01\r\n,Sultana Elementary,Ontario-Montclair Elementary,San Bernardino,745,2,1,1,1,0,96,0,1,0,87,6,0,68,9,9,19,21,N/A,90,39,36,16,7,3,2\r\n,Suva Elementary,Montebello Unified,Los Angeles,745,2,0,0,0,0,99,0,0,0,100,8,0,35,37,7,30,30,N/A,82,41,33,17,6,3,1.97\r\n,Troth Street Elementary,Jurupa Unified,Riverside,745,2,0,0,0,0,95,0,4,0,88,7,0,61,14,9,28,28,N/A,96,42,31,17,7,2,1.96\r\n,Village Academy High School at Indian Hi,Pomona Unified,Los Angeles,745,5,1,0,2,1,95,0,1,0,90,16,1,25,54,2,N/A,N/A,29,94,36,42,17,3,1,1.92\r\n,Roy Romer Middle,Los Angeles Unified,Los Angeles,745,3,4,0,1,1,91,0,3,0,100,8,0,20,44,12,N/A,31,29,79,47,32,15,4,1,1.78\r\n,Pomo,Konocti Unified,Lake,745,2,5,2,0,0,39,0,47,7,92,2,5,25,0,10,24,33,N/A,99,39,52,9,1,0,1.72\r\n,Cesar Chavez Elementary,Madera Unified,Madera,745,2,2,0,1,0,94,0,3,0,95,0,11,55,16,6,26,35,N/A,100,59,21,16,2,1,1.65\r\n,Nevin Avenue Elementary,Los Angeles Unified,Los Angeles,745,2,4,0,0,0,96,0,0,0,100,6,1,58,25,12,18,20,N/A,89,59,24,11,4,2,1.65\r\n,Mt. Pleasant Elementary,Mt. Pleasant Elementary,Santa Clara,745,2,1,0,4,1,86,1,2,0,80,6,6,60,9,16,26,28,N/A,89,53,39,6,1,1,1.58\r\n,Parmelee Avenue Elementary,Los Angeles Unified,Los Angeles,745,2,6,0,0,0,94,0,0,0,89,6,0,36,25,12,19,24,N/A,91,62,29,7,1,1,1.49\r\n,George Key,Placentia-Yorba Linda Unified,Orange,744,C,3,3,17,7,34,0,34,0,38,0,0,3,0,100,9,7,N/A,55,0,13,25,38,25,3.75\r\n,Rancho Cotate High,Cotati-Rohnert Park Unified,Sonoma,744,5,2,1,5,2,37,1,50,1,34,2,1,10,20,13,N/A,N/A,29,97,11,21,38,24,6,2.93\r\n,Mountain View Elementary,Visalia Unified,Tulare,744,2,2,4,3,0,52,0,37,3,62,6,0,9,2,11,29,29,N/A,99,8,24,46,16,6,2.88\r\n,Crestwood Elementary,Visalia Unified,Tulare,744,2,3,2,2,0,59,0,32,2,76,7,2,12,5,13,29,30,N/A,95,12,24,47,13,4,2.73\r\n,Palomar High Independent Study,Vista Unified,San Diego,744,5,2,0,0,2,30,2,63,0,40,14,2,0,7,0,N/A,N/A,3,95,7,31,46,11,4,2.72\r\n,Montgomery Senior High,Sweetwater Union High,San Diego,744,5,3,1,1,8,83,0,3,0,68,12,0,30,33,13,N/A,N/A,29,78,20,32,24,19,6,2.59\r\n,Honey Hollow Elementary,Moreno Valley Unified,Riverside,744,2,24,0,0,0,67,1,6,1,77,3,2,29,6,11,29,27,N/A,91,20,34,33,10,4,2.43\r\n,Cloverdale High,Cloverdale Unified,Sonoma,744,5,1,3,1,0,50,0,45,0,56,4,1,17,26,14,N/A,N/A,26,92,30,25,26,12,7,2.42\r\n,Northridge Academy High,Los Angeles Unified,Los Angeles,744,5,5,1,3,6,65,0,18,0,71,14,0,10,37,12,N/A,N/A,30,69,31,29,19,16,5,2.36\r\n,Peter Burnett Elementary,Sacramento City Unified,Sacramento,744,2,10,1,18,0,58,1,8,2,98,14,0,43,18,12,24,30,N/A,78,22,42,20,12,5,2.36\r\n,Escondido High,Escondido Union High,San Diego,744,5,3,0,3,3,67,1,22,0,59,8,1,21,33,9,N/A,N/A,27,84,36,22,21,15,6,2.34\r\n,Kolb Middle,Rialto Unified,San Bernardino,744,3,19,0,1,0,72,0,7,0,81,18,0,16,18,12,N/A,21,16,88,29,29,27,12,4,2.33\r\n,Slauson Intermediate,Azusa Unified,Los Angeles,744,3,1,0,1,3,89,0,5,0,77,11,1,20,24,12,N/A,27,28,98,32,30,26,6,5,2.24\r\n,Fruitvale Elementary,Oakland Unified,Alameda,744,2,34,1,15,2,37,0,7,2,46,21,0,41,10,12,22,27,N/A,61,29,37,22,10,3,2.22\r\n,West Valley High,Hemet Unified,Riverside,744,5,10,1,2,2,54,1,27,3,77,7,0,10,16,16,N/A,N/A,30,100,29,35,26,7,4,2.22\r\n,Susan B. Anthony Elementary,Sacramento City Unified,Sacramento,744,2,11,0,61,0,22,1,0,3,100,8,0,54,16,8,25,30,N/A,89,31,38,16,11,4,2.19\r\n,Thomas Jefferson Middle,Madera Unified,Madera,744,3,2,1,3,0,83,0,11,1,69,9,7,18,28,10,N/A,N/A,31,100,34,29,26,7,3,2.16\r\n,Rowland Elementary,Rowland Unified,Los Angeles,744,2,2,0,13,4,75,0,4,1,83,4,0,45,15,10,21,32,N/A,99,26,46,20,6,2,2.13\r\n,Cesar Chavez Elementary,Norwalk-La Mirada Unified,Los Angeles,744,2,2,0,0,1,93,1,2,1,86,8,12,30,28,17,25,28,N/A,100,29,43,18,8,2,2.11\r\n,Josephine Chrysler Elementary,Stanislaus Union Elementary,Stanislaus,744,2,6,1,4,1,72,1,14,1,83,1,0,40,7,13,28,33,N/A,97,34,30,29,5,1,2.09\r\n,Tulelake High,Tulelake Basin Joint Unified,Modoc,744,5,0,0,0,0,64,0,33,3,78,0,2,40,17,8,N/A,N/A,17,100,47,17,23,8,5,2.08\r\n,Henry (Patrick) Elementary,Anaheim City,Orange,744,2,1,1,1,1,91,1,3,0,96,9,0,57,26,7,29,28,N/A,18,24,49,22,4,0,2.06\r\n,Vandalia Elementary,Porterville Unified,Tulare,744,2,0,18,1,1,66,0,11,1,90,0,6,34,4,4,24,31,N/A,97,42,25,27,4,2,1.98\r\n,Mann Middle,San Diego Unified,San Diego,744,3,20,0,23,1,51,1,1,2,100,10,0,37,33,17,N/A,19,20,80,42,34,15,6,4,1.95\r\n,,Perris Elementary,Riverside,744,B,9,0,1,0,85,1,4,0,99,4,0,50,11,9,22,27,N/A,84,41,33,20,6,0,1.91\r\n,Wasco High,Wasco Union High,Kern,744,5,2,0,0,0,91,0,6,0,79,41,6,21,45,6,N/A,N/A,27,89,45,32,15,6,2,1.89\r\n,Ocean View Junior High,Ocean View,Ventura,744,3,2,0,1,4,87,0,4,1,100,8,3,50,20,9,N/A,27,27,98,51,21,19,8,2,1.88\r\n,Sara Coughlin Elementary,Los Angeles Unified,Los Angeles,744,2,3,0,0,0,96,0,1,0,93,4,0,48,28,6,20,24,N/A,91,47,30,15,6,2,1.87\r\n,Granite Hills High,Porterville Unified,Tulare,744,5,1,1,2,1,80,0,15,0,80,2,16,21,35,5,N/A,N/A,26,91,55,21,16,6,3,1.81\r\nD,Animo Oscar De La Hoya Charter High,Los Angeles Unified,Los Angeles,744,5,0,0,0,0,97,0,0,0,97,0,0,31,47,9,,,,84,43,39,15,3,0,1.77\r\n,Terrace Elementary,Delano Union Elementary,Kern,744,2,1,0,1,12,86,0,1,0,82,2,16,54,15,6,21,26,N/A,97,48,33,16,3,0,1.73\r\n,Trinity Street Elementary,Los Angeles Unified,Los Angeles,744,2,4,0,0,0,96,0,0,0,100,9,1,52,26,12,17,20,N/A,79,53,29,12,5,1,1.72\r\n,Charles T. Kranz Intermediate,Mountain View Elementary,Los Angeles,744,3,0,0,2,0,97,0,1,0,100,3,7,44,30,10,N/A,N/A,30,92,50,36,10,2,1,1.69\r\n,Firebaugh High,Firebaugh-Las Deltas Joint Uni,Fresno,744,5,0,0,0,0,92,0,7,0,84,5,22,21,53,9,N/A,N/A,26,100,54,34,6,4,2,1.66\r\n,George Washington Battles Elementary,Santa Maria-Bonita,Santa Barbara,744,2,1,0,1,0,92,0,5,0,99,15,13,58,16,6,23,28,N/A,97,64,18,13,3,2,1.61\r\n,Pomona Elementary,Newport-Mesa Unified,Orange,744,2,1,0,0,1,97,0,1,0,100,3,1,78,14,8,23,31,N/A,78,61,27,7,4,2,1.6\r\nD,Yuba Environmental Science Charter Acade,Marysville Joint Unified,Yuba,744,2,0,12,2,2,8,0,74,3,55,0,0,2,0,17,12,21,N/A,0,0,0,0,0,0,\r\nD,Alder Grove Charter,South Bay Union Elementary,Humboldt,743,2,1,3,1,0,9,0,74,11,72,0,0,0,0,11,2,2,9,99,3,14,42,26,14,3.34\r\nD,Bayshore Preparatory Charter,San Marcos Unified,San Diego,743,5,0,1,2,4,29,0,64,0,54,1,1,3,10,7,N/A,N/A,8,98,8,19,35,30,8,3.11\r\nD,Three Rivers Charter,Fort Bragg Unified,Mendocino,743,2,0,0,8,0,9,0,78,5,0,0,0,0,0,8,28,28,13,85,7,25,35,24,9,3.02\r\n,Gretchen Higgins Elementary,Dixon Unified,Solano,743,2,1,1,1,1,57,0,33,5,59,3,7,30,10,11,29,28,N/A,97,11,29,27,22,10,2.91\r\n,Natomas Middle,Natomas Unified,Sacramento,743,3,31,0,10,7,31,2,11,3,70,5,0,12,10,13,N/A,N/A,32,85,10,33,37,16,4,2.71\r\n,,Potter Valley Community Unifie,Mendocino,743,B,0,6,1,1,35,0,56,2,70,0,7,16,9,11,18,20,12,96,16,29,40,9,6,2.61\r\n,Vargas Elementary,Sunnyvale,Santa Clara,743,2,4,0,13,4,66,1,10,2,75,0,0,51,17,11,21,27,N/A,98,26,25,25,16,9,2.57\r\n,Sunnydale Elementary,Lancaster Elementary,Los Angeles,743,2,28,0,2,3,47,0,17,1,78,8,1,20,5,12,24,29,N/A,100,21,29,33,14,4,2.52\r\n,Columbia Middle,Sunnyvale,Santa Clara,743,3,3,0,9,16,61,1,8,1,68,5,0,29,37,12,N/A,26,27,99,25,29,23,19,4,2.48\r\n,Pulliam Elementary,Stockton Unified,San Joaquin,743,2,18,4,25,9,34,1,9,0,83,3,1,21,11,12,27,27,27,85,22,40,24,10,3,2.32\r\n,,Le Grand Union Elementary,Merced,743,B,1,0,0,0,84,0,14,0,2,0,8,34,14,9,18,28,N/A,98,40,17,23,12,8,2.31\r\n,Le Grand Elementary,Le Grand Union Elementary,Merced,743,2,1,0,0,0,84,0,14,0,2,0,8,34,14,8,18,28,N/A,98,41,17,22,12,8,2.3\r\n,Harrison Elementary,Pomona Unified,Los Angeles,743,2,9,1,1,1,83,0,4,1,91,4,0,39,18,10,26,27,26,89,22,43,26,7,2,2.25\r\n,Whittier Elementary,Hemet Unified,Riverside,743,2,9,1,1,0,61,1,25,3,91,0,0,22,4,15,26,29,N/A,100,30,34,27,5,4,2.19\r\nD,Los Angeles International Charter High,Los Angeles County Office of E,Los Angeles,743,5,1,0,0,0,94,0,1,0,62,0,0,11,34,6,N/A,N/A,20,68,34,30,20,14,1,2.17\r\n,Emmett S. Finley Elementary,Holtville Unified,Imperial,743,2,0,0,1,0,91,0,7,1,99,6,22,54,7,9,21,26,N/A,2,17,50,33,0,0,2.17\r\n,King Avenue Elementary,Yuba City Unified,Sutter,743,2,3,1,2,0,61,0,23,9,94,3,3,28,9,18,20,23,N/A,92,28,41,22,6,3,2.14\r\n,Mira Loma Middle,Jurupa Unified,Riverside,743,3,2,0,1,0,87,0,9,0,81,16,0,33,22,10,N/A,N/A,27,97,35,31,23,7,4,2.13\r\n,Borrego Springs Middle,Borrego Springs Unified,San Diego,743,3,2,0,0,0,78,0,17,3,87,10,10,28,38,10,N/A,23,28,92,29,43,14,11,2,2.13\r\n,James Madison Middle,Los Angeles Unified,Los Angeles,743,3,3,0,3,3,69,0,21,0,100,13,0,27,42,13,N/A,32,29,77,38,30,17,13,3,2.12\r\n,Washington Colony Elementary,Washington Colony Elementary,Fresno,743,2,0,1,1,0,88,0,10,0,81,0,0,30,18,18,21,22,22,95,30,42,18,9,2,2.11\r\nY,Bridges Academy,Franklin-McKinley Elementary,Santa Clara,743,3,2,0,26,6,64,0,2,0,80,14,4,35,43,9,N/A,N/A,27,99,35,37,15,9,3,2.08\r\n,Meyler Street Elementary,Los Angeles Unified,Los Angeles,743,2,7,0,3,3,83,1,3,0,84,2,0,45,21,8,21,21,N/A,85,37,35,15,9,3,2.06\r\nY,Phillips Charter,Napa Valley Unified,Napa,743,2,0,0,1,0,87,0,10,1,85,3,4,43,32,11,28,29,N/A,92,33,40,18,7,3,2.06\r\n,Kohler Elementary,Twin Rivers Unified,Sacramento,743,2,14,1,1,1,47,2,30,3,90,8,0,37,12,10,26,25,29,91,27,48,16,8,0,2.05\r\n,Desert Rose Elementary,Palmdale Elementary,Los Angeles,743,2,11,0,1,2,75,0,8,1,90,4,2,37,11,9,28,28,N/A,96,37,31,24,6,2,2.04\r\n,Chapman Elementary,Chico Unified,Butte,743,2,4,4,23,0,42,0,26,2,87,0,0,40,6,19,15,21,N/A,92,39,34,18,8,1,2\r\n,Grunsky Elementary,Stockton Unified,San Joaquin,743,2,5,2,5,1,75,0,13,0,99,5,4,33,23,11,19,21,20,86,37,41,11,7,4,1.99\r\n,Montera Elementary,Ontario-Montclair Elementary,San Bernardino,743,2,2,1,8,0,86,0,2,1,87,15,0,61,10,7,20,23,N/A,90,39,36,16,5,4,1.98\r\n,Mt. Vernon Elementary,Bakersfield City,Kern,743,2,1,1,0,0,83,0,15,0,94,1,10,35,20,7,19,22,N/A,49,39,39,12,5,5,1.97\r\n,Horace Mann Elementary,Bakersfield City,Kern,743,2,4,1,1,1,90,0,3,1,96,0,7,47,21,8,21,26,N/A,62,40,41,11,6,3,1.91\r\n,Garfield Elementary,Montebello Unified,Los Angeles,743,2,0,4,0,0,93,0,2,0,100,8,0,43,30,12,29,31,N/A,93,41,36,16,6,2,1.91\r\n,Pharis F. Fedde Middle,ABC Unified,Los Angeles,743,3,5,0,1,3,87,0,3,0,89,5,17,35,28,15,N/A,N/A,21,92,46,29,17,6,2,1.88\r\nD,Santa Monica Boulevard Community Charter,Los Angeles Unified,Los Angeles,743,2,1,0,1,2,92,0,4,0,94,0,0,61,17,12,20,23,N/A,91,45,34,11,7,2,1.88\r\n,,Riverbank Unified,Stanislaus,743,B,1,1,1,0,78,0,19,0,80,2,5,44,15,8,25,26,22,95,42,38,14,4,2,1.87\r\n,Two Bunch Palms Elementary,Palm Springs Unified,Riverside,743,2,5,0,1,1,85,1,8,0,96,3,0,59,6,9,27,31,N/A,94,43,38,13,4,2,1.84\r\n,Perris Elementary,Perris Elementary,Riverside,743,2,10,0,0,0,87,0,3,0,100,4,0,52,10,13,18,22,N/A,90,47,30,19,3,0,1.78\r\n,Stratford Elementary,Central Union Elementary,Kings,743,2,0,2,1,0,88,0,8,0,91,0,22,52,14,17,21,26,18,99,49,30,16,4,0,1.77\r\n,Pio Pico Elementary,Santa Ana Unified,Orange,743,2,0,0,0,0,100,0,0,0,100,8,2,79,15,7,26,31,N/A,99,63,24,10,2,0,1.51\r\n,Elm Street Elementary,Oxnard,Ventura,743,2,0,0,0,0,98,1,0,0,96,0,3,73,13,10,27,31,N/A,97,67,24,6,2,1,1.45\r\nD,New Los Angeles Charter,Los Angeles Unified,Los Angeles,742,3,36,0,2,0,42,0,9,6,73,0,0,12,13,11,N/A,25,26,85,15,19,30,23,14,3.03\r\n,Veva Blunt Elementary,Visalia Unified,Tulare,742,2,3,2,3,1,62,0,28,1,84,4,1,15,5,12,25,28,N/A,98,12,31,38,14,5,2.7\r\n,,San Leandro Unified,Alameda,742,B,17,0,15,8,45,1,11,2,62,17,0,21,24,12,26,28,25,91,15,31,29,19,6,2.69\r\n,Del Norte High,Del Norte County Unified,Del Norte,742,5,0,10,9,1,19,0,60,0,53,16,0,6,10,11,N/A,N/A,33,93,14,31,37,12,6,2.65\r\nY,Hemet Academy for Applied Academics and,Hemet Unified,Riverside,742,5,4,1,1,1,53,0,38,2,66,5,1,8,12,5,N/A,N/A,21,100,19,27,35,9,10,2.64\r\n,Holland Elementary,Fresno Unified,Fresno,742,2,8,1,13,1,64,1,10,0,100,3,0,14,6,13,23,26,N/A,67,16,35,33,12,5,2.55\r\n,,Armona Union Elementary,Kings,742,B,4,1,0,1,75,0,18,0,85,0,8,21,15,9,4,4,16,85,19,31,35,10,6,2.52\r\n,,Moreno Valley Unified,Riverside,742,B,18,0,2,2,65,1,10,1,75,8,1,23,18,12,27,27,26,89,19,33,32,13,3,2.48\r\n,Manzanita Elementary,Covina-Valley Unified,Los Angeles,742,2,0,0,1,1,89,0,8,1,82,6,0,29,6,17,23,21,N/A,98,17,38,27,16,2,2.47\r\n,Coleville High,Eastern Sierra Unified,Mono,742,5,0,13,0,0,31,0,48,8,19,0,0,8,21,15,N/A,N/A,13,90,28,21,37,9,5,2.42\r\n,George Nicoloff Elementary,South Bay Union Elementary,San Diego,742,2,2,0,0,2,95,0,0,0,89,5,0,68,12,8,26,31,N/A,89,26,35,24,10,5,2.33\r\n,Cesar Chavez Junior High,Ceres Unified,Stanislaus,742,3,3,2,9,0,66,1,16,1,84,4,1,23,20,16,N/A,N/A,26,97,24,43,24,8,2,2.22\r\n,Oak Ridge Elementary,Sacramento City Unified,Sacramento,742,2,19,2,25,2,49,1,2,1,100,6,0,45,12,14,25,29,N/A,82,37,28,20,7,8,2.22\r\n,Jefferson Elementary,Pasadena Unified,Los Angeles,742,2,7,0,1,1,88,0,2,2,91,9,0,48,16,12,25,28,N/A,93,39,28,18,10,4,2.12\r\n,,Washington Colony Elementary,Fresno,742,B,0,1,1,0,88,0,10,0,81,0,0,30,18,18,21,22,22,95,30,42,18,9,2,2.11\r\nD,Wallis Annenberg High,Los Angeles Unified,Los Angeles,742,5,8,1,0,0,90,0,0,0,98,0,0,15,54,5,,,,56,39,25,25,9,2,2.11\r\n,Robert F. Kennedy Elementary,Los Angeles Unified,Los Angeles,742,2,0,1,0,1,98,0,1,0,100,1,0,39,20,12,17,21,N/A,75,27,46,19,7,2,2.1\r\n,Hurley Elementary,Rowland Unified,Los Angeles,742,2,0,0,0,1,96,0,2,0,95,3,1,65,18,7,20,29,N/A,96,34,42,19,4,1,1.97\r\n,Twinhill Elementary,Alvord Unified,Riverside,742,2,2,0,2,1,91,0,3,1,90,4,0,66,4,8,30,30,N/A,98,42,34,15,6,2,1.92\r\n,Oscar F. Loya Elementary,Alisal Union,Monterey,742,2,1,0,1,1,96,0,0,1,99,5,10,67,18,6,29,30,N/A,96,48,25,16,8,3,1.92\r\n,Ezekiel Balderas Elementary,Fresno Unified,Fresno,742,2,11,0,28,0,57,1,2,0,100,1,4,40,16,10,24,30,N/A,87,42,33,18,5,1,1.9\r\n,Eastman Avenue Elementary,Los Angeles Unified,Los Angeles,742,2,0,0,0,0,98,0,1,0,100,1,1,46,21,10,19,23,N/A,79,47,29,15,4,4,1.9\r\n,Princeton Street Elementary,Delano Union Elementary,Kern,742,2,1,0,0,7,88,0,3,0,77,6,13,52,9,7,21,31,N/A,94,43,36,16,4,0,1.81\r\n,Hyatt Elementary,San Jacinto Unified,Riverside,742,2,3,2,0,0,85,1,7,1,90,3,0,46,7,12,29,32,N/A,84,50,30,15,2,3,1.78\r\n,Graham Elementary,Los Angeles Unified,Los Angeles,742,2,4,0,0,0,95,0,0,0,95,4,0,48,19,6,19,23,N/A,85,51,33,10,4,2,1.75\r\n,Alila,Earlimart Elementary,Tulare,742,2,0,0,0,1,97,0,1,0,100,2,7,74,9,3,24,27,N/A,52,59,22,13,7,0,1.68\r\n,Foothill Oak Elementary,Vista Unified,San Diego,742,2,2,0,0,1,89,2,5,1,90,0,8,67,15,14,24,33,N/A,81,54,31,10,4,1,1.66\r\n,Lemonwood Elementary,Oxnard,Ventura,742,2,0,0,0,3,94,0,2,1,82,0,3,71,11,6,25,25,N/A,99,64,17,13,5,2,1.64\r\n,John Adams Middle,Los Angeles Unified,Los Angeles,742,3,2,0,0,0,97,0,0,0,92,18,1,23,56,11,N/A,20,21,61,57,27,10,4,1,1.64\r\n,Lytle Creek Elementary,San Bernardino City Unified,San Bernardino,742,2,1,0,1,0,95,0,2,0,97,6,0,54,20,3,19,21,N/A,80,63,24,9,3,1,1.56\r\n,Millview Elementary,Madera Unified,Madera,742,2,4,0,0,0,93,0,3,0,97,4,13,56,18,4,25,24,N/A,100,67,21,9,1,1,1.47\r\nY,Six Rivers Charter High,Northern Humboldt Union High,Humboldt,741,5,0,9,1,0,9,0,75,5,33,0,0,0,0,19,N/A,N/A,5,91,1,9,22,32,35,3.91\r\n,Shasta Elementary,Shasta Union Elementary,Shasta,741,2,1,18,4,0,6,0,71,0,46,3,0,1,0,16,23,19,N/A,77,6,12,31,24,28,3.56\r\n,,Shasta Union Elementary,Shasta,741,B,1,18,4,0,7,0,71,0,45,3,0,1,0,17,23,19,N/A,77,6,13,31,23,28,3.54\r\n,Middle College High,San Jose Unified,Santa Clara,741,5,6,0,6,6,25,0,50,6,44,19,0,0,13,0,N/A,N/A,22,100,13,6,25,38,19,3.44\r\n,Lassen High,Lassen Union High,Lassen,741,5,2,5,1,1,13,0,77,1,21,16,0,3,1,7,N/A,N/A,27,85,4,20,52,16,7,3.02\r\n,Skycrest Elementary,San Juan Unified,Sacramento,741,2,6,1,1,1,33,1,55,1,85,1,0,36,11,17,23,32,N/A,82,11,27,27,24,10,2.94\r\n,Cajon Valley Home,Cajon Valley Union,San Diego,741,2,2,0,0,5,41,0,51,0,51,7,0,12,7,5,12,N/A,N/A,95,10,18,49,18,5,2.9\r\n,Options Secondary,Sweetwater Union High,San Diego,741,5,4,1,0,4,66,0,25,1,46,14,0,11,18,8,N/A,N/A,9,91,11,28,36,15,10,2.86\r\n,,Weed Union Elementary,Siskiyou,741,B,6,2,5,0,22,0,59,5,73,9,0,7,5,15,20,20,17,99,5,26,54,9,6,2.85\r\n,James A. Graham Elementary,Newark Unified,Alameda,741,2,3,0,8,6,63,1,15,2,62,2,1,44,13,14,29,31,N/A,95,16,31,25,20,7,2.71\r\n,Pioneer High,Woodland Joint Unified,Yolo,741,5,1,1,9,0,61,1,26,1,54,18,2,17,31,6,N/A,N/A,29,81,24,19,30,17,10,2.7\r\n,Gibson Elementary,Woodland Joint Unified,Yolo,741,2,1,1,3,1,55,0,37,2,59,11,3,20,9,9,27,31,N/A,94,16,25,41,13,5,2.66\r\n,Blosser Lane Elementary,Willits Unified,Mendocino,741,2,0,6,1,1,24,0,67,0,71,6,14,15,6,12,22,25,N/A,93,14,33,39,10,5,2.59\r\n,San Luis Rey Elementary,Oceanside Unified,San Diego,741,2,4,0,3,1,65,5,17,3,71,4,1,31,11,16,27,31,N/A,86,21,27,35,12,5,2.53\r\n,Del Rio Elementary,Oceanside Unified,San Diego,741,2,8,0,1,7,67,4,12,0,82,3,3,39,11,11,27,33,N/A,91,24,26,31,13,6,2.5\r\n,Fairfax Senior High,Los Angeles Unified,Los Angeles,741,5,16,0,18,3,56,0,6,0,79,17,0,14,42,10,N/A,N/A,31,53,29,27,19,19,6,2.46\r\n,Carver (George Washington) Elementary,San Francisco Unified,San Francisco,741,2,64,2,1,0,9,15,1,3,86,5,0,10,1,12,16,22,N/A,74,17,37,37,7,2,2.38\r\n,Bess Maxwell Elementary,Del Norte County Unified,Del Norte,741,2,2,13,13,1,21,0,51,0,88,11,0,19,1,16,21,20,N/A,98,21,39,31,8,2,2.32\r\n,George T. Egling Middle,Colusa Unified,Colusa,741,3,1,4,1,0,64,0,29,0,70,1,10,29,22,18,N/A,26,24,100,28,30,27,11,3,2.31\r\n,Edwin Markham Elementary,Vacaville Unified,Solano,741,2,5,2,0,2,76,0,14,1,79,5,4,54,11,8,28,27,N/A,100,30,34,19,10,6,2.28\r\n,Antelope Elementary,Keppel Union Elementary,Los Angeles,741,2,8,0,0,0,83,0,8,1,82,4,0,39,16,9,21,23,N/A,65,26,40,21,10,3,2.22\r\n,,Soledad Unified,Monterey,741,B,0,0,1,1,95,0,2,0,91,4,2,48,20,11,22,29,28,99,37,29,19,11,5,2.18\r\n,Harvest Elementary,Delano Union Elementary,Kern,741,2,0,0,2,13,81,0,2,1,63,8,8,43,5,10,20,27,N/A,96,28,37,27,8,0,2.16\r\n,Calpella Elementary,Ukiah Unified,Mendocino,741,2,0,10,0,0,43,0,46,0,80,1,8,34,2,9,26,30,N/A,100,21,49,24,4,2,2.15\r\n,Utah Street Elementary,Los Angeles Unified,Los Angeles,741,2,2,1,2,1,93,0,0,1,88,8,1,37,25,11,19,14,24,42,43,29,12,12,4,2.06\r\n,Christopher Columbus Middle,Los Angeles Unified,Los Angeles,741,3,3,0,6,3,81,0,7,0,100,13,0,23,43,15,N/A,23,28,67,44,27,13,12,4,2.06\r\n,Ambassador School of Global Education,Los Angeles Unified,Los Angeles,741,2,5,0,12,2,78,1,1,0,100,5,0,61,17,8,21,21,N/A,87,49,23,14,10,4,1.98\r\n,Sequoia Middle,Bakersfield City,Kern,741,3,10,1,0,0,80,0,8,0,93,1,6,18,29,8,N/A,24,25,53,39,34,20,5,2,1.96\r\n,Lenicia B. Weemes Elementary,Los Angeles Unified,Los Angeles,741,2,27,0,0,0,72,0,0,0,80,4,0,33,17,11,17,19,N/A,63,41,32,17,7,2,1.95\r\n,Logan Street Elementary,Los Angeles Unified,Los Angeles,741,2,1,0,7,2,89,0,1,0,100,5,1,42,30,10,20,21,25,86,50,30,12,7,1,1.78\r\n,,Alisal Union,Monterey,741,B,1,0,0,1,95,0,2,0,97,4,8,72,13,8,28,30,N/A,94,59,20,11,7,3,1.76\r\n,Fletcher Drive Elementary,Los Angeles Unified,Los Angeles,741,2,1,0,3,4,91,0,0,0,86,1,0,45,25,13,20,25,N/A,61,53,29,14,4,0,1.68\r\n,Arlanza Elementary,Alvord Unified,Riverside,741,2,1,0,0,0,97,0,1,0,96,3,0,80,2,7,24,30,N/A,98,55,30,10,3,2,1.66\r\n,Orville Wright Elementary,Modesto City Elementary,Stanislaus,741,2,2,1,3,0,83,0,9,2,100,5,5,58,7,15,21,22,N/A,99,56,31,9,3,1,1.63\r\n,Cortada Elementary,El Monte City Elementary,Los Angeles,741,2,0,0,19,0,80,0,0,0,96,9,3,60,20,8,29,25,N/A,100,57,30,11,1,1,1.59\r\n,David J. Sanchez Sr. Elementary,Santa Maria-Bonita,Santa Barbara,741,2,0,0,0,1,98,0,1,0,100,4,23,74,17,8,30,28,N/A,98,85,11,4,1,0,1.22\r\n,Central County Special Education Program,Contra Costa County Office of,Contra Costa,740,C,4,0,9,2,21,0,53,9,19,0,0,13,0,100,4,N/A,N/A,6,0,0,0,100,0,4\r\n,,Nevada County Office of Educat,Nevada,740,B,1,1,1,0,8,0,86,0,45,0,0,0,0,14,15,13,7,79,1,13,30,35,21,3.62\r\nD,Glacier High School Charter,Yosemite Unified,Madera,740,4,4,1,0,0,32,0,61,2,0,0,0,0,0,5,N/A,N/A,2,99,4,19,37,25,14,3.28\r\n,American Canyon High,Napa Valley Unified,Napa,740,4,9,0,6,27,32,1,15,9,32,12,1,10,22,9,N/A,N/A,30,96,10,17,31,33,9,3.14\r\n,Parkside Elementary,San Mateo-Foster City,San Mateo,740,2,5,0,9,7,37,16,18,8,51,0,0,33,4,13,25,27,N/A,97,6,22,42,20,10,3.06\r\n,East Union High,Manteca Unified,San Joaquin,740,4,4,2,3,3,47,1,39,1,54,10,6,6,19,8,N/A,N/A,26,89,12,36,30,17,4,2.64\r\n,,Sausalito Marin City,Marin,740,B,58,0,5,4,25,2,3,1,96,2,0,14,7,29,18,17,12,82,12,29,48,8,4,2.63\r\n,Rosemont High,Sacramento City Unified,Sacramento,740,4,19,0,6,2,30,2,34,6,61,12,0,13,13,13,N/A,N/A,28,92,19,31,28,16,6,2.6\r\n,Fillmore Senior High,Fillmore Unified,Ventura,740,4,1,0,0,0,87,0,11,0,72,13,7,24,28,11,N/A,N/A,29,85,23,25,32,13,8,2.57\r\n,Big Pine Elementary,Big Pine Unified,Inyo,740,2,0,47,0,0,17,0,35,0,73,0,0,6,2,18,18,12,8,91,10,37,40,13,0,2.57\r\nY,King City Arts Charter,King City Union,Monterey,740,2,1,1,0,0,83,0,12,3,80,0,3,39,16,15,23,24,N/A,99,21,28,35,9,6,2.53\r\n,Anna Kirchgater Elementary,Elk Grove Unified,Sacramento,740,2,18,0,35,2,28,2,8,4,100,3,0,36,14,8,22,26,N/A,94,19,44,23,9,6,2.4\r\n,Oakendell Community,Calaveras County Office of Edu,Calaveras,740,B,13,7,7,0,27,0,47,0,100,0,0,7,0,20,,,,87,38,8,38,8,8,2.38\r\n,Kelseyville Elementary,Kelseyville Unified,Lake,740,2,2,4,0,0,55,1,30,1,94,0,7,32,13,15,25,24,N/A,87,28,29,28,11,4,2.35\r\n,,Chowchilla Union High,Madera,740,B,3,1,1,1,57,0,37,1,71,7,4,17,23,6,N/A,N/A,26,98,31,28,22,14,5,2.34\r\n,Barfield Elementary,Pomona Unified,Los Angeles,740,2,7,0,1,0,87,0,3,1,94,2,0,42,13,12,27,29,N/A,87,17,47,26,6,3,2.33\r\n,Margaret White Elementary,Palo Verde Unified,Riverside,740,2,7,1,1,2,62,0,26,0,64,6,0,10,5,8,27,31,N/A,67,23,41,25,8,3,2.27\r\n,,Banning Unified,Riverside,740,B,10,4,6,1,61,0,15,2,84,6,0,19,17,10,19,28,27,88,30,30,28,11,1,2.24\r\n,Estancia High,Newport-Mesa Unified,Orange,740,4,2,0,2,1,72,1,21,0,75,4,2,32,29,12,N/A,N/A,26,84,41,21,18,15,5,2.21\r\n,Washington Elementary,Visalia Unified,Tulare,740,2,2,1,0,0,83,0,12,1,100,0,5,31,9,8,26,24,N/A,95,24,40,29,6,1,2.19\r\n,Snow Elementary,Napa Valley Unified,Napa,740,2,0,1,2,2,70,0,23,3,75,1,7,39,21,14,26,27,N/A,97,37,27,22,12,2,2.16\r\n,Pioneer Valley High,Santa Maria Joint Union High,Santa Barbara,740,4,1,0,1,3,88,0,6,1,70,0,10,19,39,7,N/A,N/A,25,95,43,19,24,11,4,2.14\r\n,Walnut Avenue Elementary,Chino Valley Unified,San Bernardino,740,2,2,0,1,1,90,0,6,1,80,2,0,40,11,16,29,28,N/A,75,34,36,19,10,2,2.09\r\n,Helen Estock Elementary,Tustin Unified,Orange,740,2,2,0,3,2,88,0,5,0,89,3,0,64,9,16,21,33,N/A,93,33,36,23,7,2,2.09\r\n,Katella High,Anaheim Union High,Orange,740,4,1,0,3,1,87,1,6,0,82,11,0,27,47,9,N/A,N/A,38,15,43,23,20,11,3,2.08\r\n,Grant Elementary,San Jose Unified,Santa Clara,740,2,2,0,6,2,86,1,2,0,89,1,1,59,14,10,26,26,N/A,81,40,31,18,7,4,2.04\r\n,Cunningham Elementary,Turlock Unified,Stanislaus,740,2,2,0,5,0,78,1,13,0,100,11,0,53,8,10,21,27,N/A,97,33,41,19,4,2,2.02\r\n,,Salinas City Elementary,Monterey,740,B,1,0,1,2,85,0,8,0,83,2,8,46,15,9,24,28,N/A,99,42,30,19,6,4,2\r\n,Santa Paula High,Santa Paula Union High,Ventura,740,4,0,0,0,0,93,0,5,0,76,0,9,32,29,9,N/A,N/A,29,90,44,28,19,6,3,1.96\r\n,Villacorta Elementary,Rowland Unified,Los Angeles,740,2,2,0,0,5,92,0,1,0,92,3,2,50,19,11,19,25,N/A,96,37,39,16,6,2,1.95\r\n,Roosevelt Elementary,Pomona Unified,Los Angeles,740,2,3,0,1,0,94,0,1,1,97,1,0,65,11,9,26,31,N/A,77,31,51,11,4,2,1.94\r\n,,Madera Unified,Madera,740,B,2,0,1,0,86,0,9,0,83,6,9,33,24,8,26,32,28,98,45,28,19,5,3,1.92\r\n,McKinley Institute of Technology,Redwood City Elementary,San Mateo,740,3,2,0,0,1,89,1,6,0,82,6,4,30,47,16,N/A,26,26,99,51,23,15,7,4,1.89\r\n,Del Dios Middle,Escondido Union,San Diego,740,3,3,0,3,3,82,1,10,0,82,10,2,44,24,11,N/A,27,28,90,52,25,14,7,3,1.84\r\n,Anaheim High,Anaheim Union High,Orange,740,4,1,0,1,1,93,0,3,0,89,9,1,33,52,8,N/A,N/A,29,26,52,28,10,8,2,1.81\r\n,Hawaiian Elementary,ABC Unified,Los Angeles,740,2,1,1,1,0,93,1,3,0,98,1,32,67,6,12,23,32,N/A,94,48,37,11,3,1,1.72\r\n,Main Street Elementary,Los Angeles Unified,Los Angeles,740,2,8,0,0,0,92,0,0,0,89,2,1,54,26,10,17,21,N/A,65,51,35,9,4,0,1.67\r\n,North Coast Alternative High,San Dieguito Union High,San Diego,739,B,2,0,0,0,14,2,81,0,7,30,0,7,0,14,N/A,N/A,41,95,10,5,20,24,41,3.83\r\nD,Horizon Charter,Western Placer Unified,Placer,739,4,4,1,1,1,13,1,77,0,61,0,0,3,3,13,7,5,2,97,4,17,33,27,19,3.39\r\n,Granite Hills High,Apple Valley Unified,San Bernardino,739,4,12,0,3,0,39,1,42,2,54,19,0,7,8,11,N/A,N/A,31,92,13,25,34,18,11,2.91\r\nY,Mid Valley Alternative Charter,Kit Carson Union Elementary,Kings,739,2,5,0,0,0,35,0,60,0,0,0,0,0,0,10,1,4,N/A,90,6,11,78,6,0,2.83\r\n,Yucca Valley High,Morongo Unified,San Bernardino,739,4,3,1,1,1,29,0,61,3,63,14,0,3,5,15,N/A,N/A,24,82,13,24,40,13,10,2.83\r\n,Tioga High,Big Oak Flat-Groveland Unified,Tuolumne,739,4,0,1,0,0,27,1,67,0,54,9,0,0,0,4,N/A,N/A,10,70,9,36,36,13,6,2.72\r\n,Monte Vista Middle,Tracy Joint Unified,San Joaquin,739,3,10,1,9,4,60,1,13,3,67,3,0,28,16,11,N/A,30,26,81,23,23,29,19,7,2.64\r\n,Valley View High,Moreno Valley Unified,Riverside,739,4,17,0,2,3,62,1,13,1,68,14,1,15,26,11,N/A,N/A,27,88,17,32,32,15,4,2.57\r\n,Tokay High,Lodi Unified,San Joaquin,739,4,2,1,10,2,50,0,35,0,61,12,3,22,23,13,N/A,N/A,29,76,25,26,26,13,9,2.55\r\n,Maxwell High,Maxwell Unified,Colusa,739,4,0,3,0,0,44,0,49,2,46,26,2,6,20,4,N/A,N/A,15,96,23,21,38,14,3,2.54\r\n,,Fillmore Unified,Ventura,739,B,0,0,0,0,88,0,10,0,78,8,8,35,17,12,22,29,28,87,24,27,30,12,7,2.51\r\n,Nelson Avenue Middle,Thermalito Union Elementary,Butte,739,3,1,5,31,0,9,1,48,3,82,3,0,14,19,13,N/A,24,22,84,15,38,32,12,3,2.51\r\n,Parkside Elementary,San Bernardino City Unified,San Bernardino,739,2,18,0,0,0,64,1,14,2,96,12,0,12,6,8,27,34,N/A,68,21,31,32,10,6,2.48\r\n,Wingland Elementary,Standard Elementary,Kern,739,2,1,2,0,1,21,0,75,1,79,0,0,3,2,8,22,24,N/A,51,15,36,39,6,3,2.47\r\n,Central Elementary,Tracy Joint Unified,San Joaquin,739,2,4,0,3,2,77,0,13,2,77,0,0,47,11,15,25,25,N/A,83,23,32,24,17,4,2.46\r\n,River City High,Washington Unified,Yolo,739,4,6,2,12,3,41,1,35,1,63,15,0,11,29,8,N/A,N/A,30,98,26,27,29,16,3,2.43\r\n,Durfee Elementary,El Rancho Unified,Los Angeles,739,2,0,0,1,1,97,0,1,0,78,0,0,30,3,14,26,29,N/A,94,19,37,30,9,5,2.43\r\n,,Colton Joint Unified,San Bernardino,739,B,6,0,2,1,81,0,8,0,77,15,0,27,15,12,20,29,26,93,23,33,28,9,6,2.41\r\nD,Options for Youth-Burbank Charter,Burbank Unified,Los Angeles,739,4,4,1,1,0,62,1,29,2,78,0,0,12,23,4,N/A,N/A,1,95,34,22,27,12,6,2.33\r\n,Southwest Middle,Sweetwater Union High,San Diego,739,3,2,0,1,2,93,0,2,0,86,5,0,44,31,10,N/A,N/A,19,98,29,32,21,14,4,2.31\r\n,Florin High,Elk Grove Unified,Sacramento,739,4,15,1,41,3,28,3,8,2,86,3,0,26,38,11,N/A,N/A,23,91,28,37,22,9,5,2.27\r\n,Hamilton Middle,Long Beach Unified,Los Angeles,739,3,17,0,4,1,72,4,0,0,87,5,1,29,31,9,N/A,33,32,74,30,36,16,16,3,2.26\r\n,Wawona Middle,Fresno Unified,Fresno,739,3,13,1,4,0,70,0,11,0,100,9,1,10,19,8,N/A,31,27,82,26,35,31,6,3,2.26\r\n,Peter Johansen High,Modesto City High,Stanislaus,739,4,5,1,3,1,59,1,25,4,66,15,2,15,25,11,N/A,N/A,24,94,28,36,25,8,4,2.24\r\n,Porterville High,Porterville Unified,Tulare,739,4,0,3,2,1,73,0,20,1,64,4,6,18,28,4,N/A,N/A,31,97,39,21,24,11,6,2.23\r\n,Westmont Elementary,Pomona Unified,Los Angeles,739,2,4,0,2,1,89,0,3,0,93,1,0,39,14,8,25,29,N/A,88,23,46,22,7,1,2.17\r\n,Blythe Street Elementary,Los Angeles Unified,Los Angeles,739,2,8,0,10,2,74,0,5,0,89,4,0,45,25,18,20,19,N/A,84,37,33,14,12,4,2.12\r\n,Woodlake Valley Middle,Woodlake Union Elementary,Tulare,739,3,1,0,1,0,88,0,10,0,100,13,20,40,19,6,N/A,27,25,45,36,31,23,6,4,2.11\r\n,,Azusa Unified,Los Angeles,739,B,1,0,1,1,91,0,4,1,81,7,2,31,21,13,22,29,28,95,37,32,22,5,3,2.05\r\n,Glen Alta Elementary,Los Angeles Unified,Los Angeles,739,2,5,0,2,0,93,0,0,0,100,7,2,18,34,15,15,19,28,81,34,42,14,7,3,2.02\r\n,Montebello Park Elementary,Montebello Unified,Los Angeles,739,2,0,0,0,0,99,0,0,0,100,5,0,53,21,11,28,30,N/A,68,38,35,19,5,3,1.99\r\n,,Hueneme Elementary,Ventura,739,B,2,0,1,5,83,1,7,0,88,17,8,42,23,11,27,28,31,99,49,21,17,9,4,1.97\r\n,Foothill Middle,Azusa Unified,Los Angeles,739,3,2,0,1,1,91,0,4,1,79,10,2,27,23,14,N/A,34,28,96,38,36,20,5,2,1.96\r\n,Frank West Elementary,Bakersfield City,Kern,739,2,9,0,1,0,84,1,3,2,94,1,8,25,22,8,21,26,N/A,79,39,38,16,6,2,1.94\r\n,Dunn Elementary,Rialto Unified,San Bernardino,739,2,7,0,0,0,89,1,2,0,88,10,0,48,12,6,24,30,N/A,85,42,34,17,5,2,1.9\r\n,Parkridge Elementary,Corona-Norco Unified,Riverside,739,2,2,0,1,1,89,1,5,0,89,1,0,40,31,12,24,28,N/A,100,50,28,15,5,2,1.83\r\n,Logan K-8,San Diego Unified,San Diego,739,2,3,0,0,0,96,0,0,0,100,19,0,68,16,14,20,28,29,86,46,37,11,3,3,1.79\r\n,Edenvale Elementary,Oak Grove Elementary,Santa Clara,739,2,1,0,8,2,85,1,2,0,91,14,14,64,15,11,25,33,N/A,99,51,32,11,4,2,1.74\r\n,Alfred S. Madrid Middle,Mountain View Elementary,Los Angeles,739,3,0,0,10,0,89,0,0,0,99,5,6,38,33,12,N/A,30,30,98,51,36,9,3,1,1.67\r\n,Deer Valley High,Antioch Unified,Contra Costa,738,4,33,1,8,8,26,1,23,0,46,2,0,6,10,11,N/A,N/A,26,75,6,26,39,23,6,2.96\r\n,Highland High,Antelope Valley Union High,Los Angeles,738,4,17,1,3,3,55,0,20,0,12,2,1,10,16,13,N/A,N/A,32,77,14,22,32,22,10,2.92\r\n,Central High East Campus,Central Unified,Fresno,738,4,10,1,15,1,50,0,22,1,61,7,1,8,18,7,N/A,N/A,31,94,18,23,32,19,8,2.76\r\n,,Hanford Joint Union High,Kings,738,B,6,1,2,2,57,0,31,0,39,0,9,11,17,9,N/A,N/A,28,89,17,27,31,20,6,2.7\r\n,,Kelseyville Unified,Lake,738,B,2,2,1,0,37,0,52,2,87,0,6,14,13,12,25,26,24,89,18,25,32,17,7,2.7\r\n,Orleans Elementary,Klamath-Trinity Joint Unified,Humboldt,738,2,2,66,2,0,5,0,23,2,86,0,0,0,0,23,17,14,N/A,95,17,33,29,17,5,2.6\r\n,Highland High,Kern Union High,Kern,738,4,4,1,1,1,67,0,22,2,63,24,2,6,14,11,N/A,N/A,27,94,22,29,27,12,10,2.59\r\n,Bridgeport Elementary,Eastern Sierra Unified,Mono,738,2,0,10,0,2,43,0,45,0,55,0,0,18,12,24,10,11,N/A,86,29,17,26,26,2,2.57\r\n,Sierra Primary,Fort Sage Unified,Lassen,738,2,6,6,0,0,11,0,76,0,79,0,0,0,0,12,21,16,N/A,79,8,44,40,4,4,2.52\r\n,Central Middle,Oroville City Elementary,Butte,738,3,6,7,22,0,15,0,44,6,76,6,2,11,13,16,N/A,6,24,90,24,27,29,14,5,2.5\r\n,Pacheco High,Los Banos Unified,Merced,738,4,5,1,1,2,79,1,12,1,65,0,1,17,29,7,N/A,N/A,33,83,21,31,31,13,4,2.48\r\n,John Marshall Senior High,Los Angeles Unified,Los Angeles,738,4,2,0,9,13,63,0,12,0,75,26,0,17,46,10,N/A,N/A,30,65,28,29,20,18,5,2.43\r\n,Columbia Elementary,Eastside Union Elementary,Los Angeles,738,2,31,1,1,1,56,0,9,1,78,1,2,25,9,9,20,31,N/A,97,22,29,35,10,3,2.42\r\n,North High,Kern Union High,Kern,738,4,2,4,0,1,25,0,66,1,66,15,0,2,7,10,N/A,N/A,23,77,21,38,27,9,6,2.41\r\n,,Pittsburg Unified,Contra Costa,738,B,21,0,3,6,59,2,7,1,78,1,0,33,16,9,23,27,26,88,24,35,23,14,3,2.38\r\n,John W. Mack Elementary,Los Angeles Unified,Los Angeles,738,2,26,0,1,0,72,0,0,0,100,7,0,42,18,14,20,19,N/A,25,23,42,18,9,8,2.37\r\n,August Schilling Elementary,Newark Unified,Alameda,738,2,7,0,5,6,71,2,9,1,78,2,1,50,20,15,27,29,N/A,97,29,36,17,16,3,2.27\r\n,Emilie Ritchen Elementary,Oxnard,Ventura,738,2,2,0,1,1,86,0,7,1,77,1,0,41,10,11,28,32,N/A,97,29,33,26,8,3,2.23\r\n,Butte Valley Elementary,Butte Valley Unified,Siskiyou,738,2,0,6,2,0,40,0,50,0,40,7,4,36,1,5,13,20,N/A,92,24,49,16,7,3,2.16\r\n,Brookfield Elementary,Oakland Unified,Alameda,738,2,31,0,3,1,60,2,0,1,83,28,0,50,12,19,18,21,N/A,41,36,32,21,6,5,2.12\r\n,,Gustine Unified,Merced,738,B,0,0,1,0,75,0,22,1,72,2,7,34,27,10,22,28,24,99,40,29,20,6,4,2.04\r\n,Geyserville Educational Park High,Geyserville Unified,Sonoma,738,4,0,0,0,0,65,0,35,0,58,0,15,35,18,27,N/A,N/A,6,87,42,29,21,6,2,1.98\r\n,,Oxnard,Ventura,738,B,2,0,1,2,89,0,5,1,83,3,2,48,16,10,26,29,23,97,46,29,15,7,3,1.91\r\n,Lane Elementary,Fresno Unified,Fresno,738,2,5,0,4,0,87,0,3,0,100,1,4,37,19,15,19,19,N/A,58,42,34,20,3,2,1.9\r\n,Kings Canyon Middle,Fresno Unified,Fresno,738,3,9,1,19,0,67,0,3,0,100,2,5,22,29,8,N/A,N/A,12,97,44,30,20,4,1,1.88\r\n,California Avenue Elementary,Riverbank Unified,Stanislaus,738,2,1,1,1,0,86,0,10,1,87,0,5,66,2,14,26,26,N/A,97,38,43,14,3,1,1.86\r\n,Van Nuys Elementary,Los Angeles Unified,Los Angeles,738,2,2,0,1,0,94,0,2,0,100,4,1,56,15,17,22,22,N/A,82,42,39,14,5,1,1.83\r\n,Hillery T. Broadous Elementary,Los Angeles Unified,Los Angeles,738,2,2,0,0,0,97,0,0,0,100,6,0,45,31,14,21,24,N/A,72,53,30,10,5,2,1.73\r\n,Theodore Roosevelt Elementary,Desert Sands Unified,Riverside,738,2,2,0,1,0,93,0,4,0,98,0,1,62,12,9,27,34,N/A,100,54,31,11,3,1,1.66\r\nD,Central City Value,Los Angeles Unified,Los Angeles,738,4,0,0,0,0,98,0,0,0,97,0,0,28,55,8,N/A,N/A,22,97,54,30,14,2,0,1.64\r\nD,Alliance Heritage College-Ready Academy,Los Angeles Unified,Los Angeles,738,4,10,0,0,0,90,0,0,0,97,0,0,23,55,9,N/A,N/A,30,99,68,20,9,2,1,1.5\r\n,McKinna Elementary,Oxnard,Ventura,738,2,1,0,0,0,99,0,0,0,95,0,2,70,10,12,20,22,N/A,99,63,29,6,3,1,1.49\r\n,Oasis Elementary,Coachella Valley Unified,Riverside,738,2,0,0,0,0,99,0,0,0,100,2,30,83,13,11,18,19,N/A,96,76,18,5,1,0,1.31\r\nD,Wildflower Open Classroom,Chico Unified,Butte,737,2,0,0,0,0,9,0,76,11,20,0,0,0,0,7,11,17,N/A,100,0,2,20,37,41,4.17\r\nD,California Virtual Academy @ Los Angeles,West Covina Unified,Los Angeles,737,2,17,1,4,2,25,1,50,0,35,0,0,1,0,10,1,1,22,93,2,20,32,27,18,3.4\r\n,James Logan High,New Haven Unified,Alameda,737,4,9,0,22,22,32,4,8,3,43,18,1,14,30,8,N/A,N/A,38,95,11,22,28,28,11,3.06\r\n,El Capitan High,Grossmont Union High,San Diego,737,4,1,4,0,1,22,0,70,0,27,35,0,6,4,13,N/A,N/A,23,99,6,29,43,13,9,2.91\r\n,Anderson High,Anderson Union High,Shasta,737,4,1,8,1,0,18,0,69,2,66,0,0,2,4,13,N/A,N/A,25,95,9,26,38,19,7,2.88\r\n,Flynn (Leonard R.) Elementary,San Francisco Unified,San Francisco,737,2,17,0,2,1,56,1,16,3,71,11,3,44,8,12,19,24,N/A,87,16,32,21,17,14,2.79\r\n,,Laytonville Unified,Mendocino,737,B,3,12,1,0,12,0,68,3,65,6,1,4,1,5,1,2,6,91,5,44,31,16,5,2.72\r\n,Andrew Carnegie Middle,Los Angeles Unified,Los Angeles,737,3,21,1,1,17,48,9,2,1,83,11,0,7,17,12,N/A,21,19,55,20,25,31,18,5,2.64\r\n,Sun Terrace Elementary,Mt. Diablo Unified,Contra Costa,737,2,6,1,2,4,59,2,20,4,81,0,0,38,13,15,27,26,N/A,48,16,33,29,16,5,2.62\r\n,,Sonoma Valley Unified,Sonoma,737,B,1,0,2,1,55,0,40,1,56,0,0,33,19,14,20,25,25,95,31,19,19,19,11,2.6\r\n,Richard Bard Elementary,Hueneme Elementary,Ventura,737,2,3,0,1,5,74,0,15,0,70,13,4,37,12,10,26,28,N/A,99,26,21,28,16,9,2.59\r\nD,Aspire Millsmont Academy,Oakland Unified,Alameda,737,2,59,0,0,1,36,1,1,1,79,0,0,22,11,7,23,32,N/A,87,11,37,36,13,3,2.58\r\n,Shannon Elementary,West Contra Costa Unified,Contra Costa,737,2,19,0,15,13,42,1,10,0,70,6,0,28,15,18,22,27,N/A,88,9,49,22,18,3,2.55\r\n,Park Middle,Antioch Unified,Contra Costa,737,3,22,2,3,3,44,2,25,0,73,4,0,13,11,13,N/A,31,27,77,15,39,33,9,4,2.49\r\n,Village Elementary,Twin Rivers Unified,Sacramento,737,2,12,0,4,1,43,0,35,5,88,12,0,25,13,13,28,23,28,92,25,34,28,10,2,2.31\r\n,Washington Elementary,El Centro Elementary,Imperial,737,2,2,0,0,0,96,0,2,0,93,12,15,62,10,12,27,33,N/A,95,23,38,31,4,4,2.28\r\n,Francis J. White Learning Center,Woodlake Union Elementary,Tulare,737,2,0,0,0,0,93,0,7,0,99,0,14,57,0,0,21,N/A,N/A,37,34,28,22,6,9,2.28\r\n,Dinuba High,Dinuba Unified,Tulare,737,4,1,0,1,1,90,0,7,0,100,7,6,21,37,6,N/A,N/A,29,84,36,24,23,13,5,2.28\r\n,Lakeview Middle,Pajaro Valley Unified,Santa Cruz,737,3,1,0,0,1,93,0,4,0,87,15,12,37,33,14,N/A,22,21,63,32,31,19,14,3,2.25\r\n,Borrego Springs Elementary,Borrego Springs Unified,San Diego,737,2,1,0,0,0,80,0,17,2,89,8,8,70,4,6,22,21,N/A,99,34,36,17,8,5,2.14\r\n,Homan Elementary,Fresno Unified,Fresno,737,2,13,2,15,0,63,1,7,0,99,1,6,28,13,12,25,29,N/A,70,31,36,24,6,2,2.13\r\n,Cherokee Point Elementary,San Diego Unified,San Diego,737,2,8,0,5,0,81,0,4,2,100,20,0,58,19,9,20,32,N/A,79,31,45,15,5,4,2.05\r\n,Laton Elementary,Laton Joint Unified,Fresno,737,2,0,0,0,0,88,0,0,0,84,6,2,64,5,7,19,23,N/A,67,36,34,18,10,1,2.04\r\n,Sunkist Elementary,Hueneme Elementary,Ventura,737,2,1,0,0,1,93,2,2,0,100,13,5,52,18,12,29,30,N/A,100,40,33,16,7,4,2.03\r\nD,Aspire Pacific Academy,Los Angeles Unified,Los Angeles,737,4,0,0,0,0,98,0,0,0,91,0,0,16,62,10,N/A,N/A,30,69,34,43,18,3,2,1.96\r\n,Orange High,Orange Unified,Orange,737,4,1,1,5,1,80,1,11,0,75,11,0,32,29,9,N/A,N/A,27,97,46,28,17,6,3,1.91\r\n,Sierra Vista High,Baldwin Park Unified,Los Angeles,737,4,1,0,6,2,89,0,1,0,86,7,1,16,45,11,N/A,N/A,18,78,49,33,13,5,1,1.75\r\n,Whittier Elementary,Newport-Mesa Unified,Orange,737,2,0,0,1,1,97,0,1,0,100,3,0,81,6,6,24,29,N/A,86,56,28,9,6,1,1.67\r\n,John J. Doyle Elementary,Porterville Unified,Tulare,737,2,0,1,0,0,90,2,6,0,93,0,30,56,6,5,23,31,N/A,93,64,19,12,3,2,1.6\r\n,Rice (William) Elementary,Santa Maria-Bonita,Santa Barbara,737,2,1,1,0,2,91,0,5,0,100,7,8,51,10,7,28,30,N/A,100,58,29,11,2,1,1.59\r\n,Linda Mar Educational Center,Pacifica,San Mateo,736,2,0,0,7,5,16,0,65,7,21,2,0,14,0,0,,,,98,14,10,19,36,21,3.4\r\n,Mesa High,Santa Rosa City Schools,Sonoma,736,B,3,0,0,0,27,0,60,10,23,3,0,0,7,3,N/A,N/A,17,83,4,32,20,20,24,3.28\r\nD,Gold Rush Charter,Summerville Union High,Tuolumne,736,4,1,3,0,0,9,1,85,1,40,0,0,0,0,11,16,18,4,92,4,21,36,23,16,3.26\r\nD,La Vida Charter,Willits Unified,Mendocino,736,2,0,6,3,0,6,0,75,8,67,0,0,0,0,16,,,,88,11,14,36,29,11,3.14\r\n,Hogan Middle,Vallejo City Unified,Solano,736,3,33,0,4,26,22,2,9,3,53,10,0,8,16,11,N/A,31,28,92,8,27,32,27,6,2.97\r\n,W. E. Mitchell Middle,Folsom-Cordova Unified,Sacramento,736,3,15,1,6,3,25,2,45,3,64,6,0,12,18,18,N/A,34,32,85,8,26,34,26,6,2.96\r\n,Northridge Elementary,San Juan Unified,Sacramento,736,2,4,0,3,2,29,1,61,1,71,2,0,22,2,18,30,27,N/A,62,10,27,31,21,11,2.96\r\n,Lancaster High,Antelope Valley Union High,Los Angeles,736,4,20,1,2,3,47,1,26,0,12,0,1,10,11,13,N/A,N/A,31,96,12,25,33,20,11,2.91\r\n,Portola Junior High,West Contra Costa Unified,Contra Costa,736,3,25,0,22,3,33,1,16,0,64,20,0,17,20,14,N/A,N/A,29,76,18,31,20,16,15,2.79\r\n,McManus (John A.) Elementary,Chico Unified,Butte,736,2,8,5,14,0,32,1,36,2,77,0,0,26,3,12,25,27,N/A,89,17,29,37,9,7,2.59\r\n,Rancho Cordova Elementary,Folsom-Cordova Unified,Sacramento,736,2,9,0,6,1,50,1,28,3,83,2,0,33,20,16,28,26,N/A,75,18,35,31,13,4,2.51\r\n,John Reith Elementary,Elk Grove Unified,Sacramento,736,2,29,0,20,2,32,2,9,4,100,1,0,22,16,13,22,23,N/A,91,16,39,28,13,4,2.5\r\n,,Lancaster Elementary,Los Angeles,736,B,30,1,1,2,48,0,17,1,80,9,1,18,7,11,28,30,24,100,25,28,30,13,4,2.43\r\n,,Adelanto Elementary,San Bernardino,736,B,23,1,1,1,60,1,10,3,92,11,0,19,12,14,30,31,19,97,22,37,27,9,5,2.4\r\n,Centennial Elementary,Fresno Unified,Fresno,736,2,9,1,16,0,62,0,10,0,100,2,2,28,10,6,27,28,N/A,57,22,35,35,6,2,2.32\r\n,Mains Elementary,Calexico Unified,Imperial,736,2,0,0,0,0,100,0,0,0,100,3,18,70,19,15,18,19,N/A,96,31,28,26,9,5,2.29\r\n,Turner Elementary,Antioch Unified,Contra Costa,736,2,24,1,3,3,55,1,12,0,85,0,0,40,6,12,29,27,N/A,73,26,40,24,6,4,2.23\r\n,Rock Springs Elementary,Escondido Union,San Diego,736,2,4,0,5,3,76,0,11,0,80,6,1,55,6,12,23,28,N/A,85,34,29,22,14,2,2.22\r\n,Jefferson Leadership Academies,Long Beach Unified,Los Angeles,736,3,17,0,11,1,64,0,6,0,87,5,1,32,27,8,N/A,27,24,84,34,31,18,15,3,2.22\r\n,Molly S. Bakman Elementary,Fresno Unified,Fresno,736,2,6,1,21,0,69,0,3,0,100,1,3,29,13,6,28,30,N/A,63,27,35,29,7,1,2.2\r\n,Philadelphia Elementary,Pomona Unified,Los Angeles,736,2,2,0,1,0,94,0,2,1,93,2,1,47,19,8,27,30,N/A,92,29,42,20,5,4,2.14\r\n,Michael J. Castori Elementary,Twin Rivers Unified,Sacramento,736,2,27,1,15,1,38,2,11,3,93,8,0,36,7,11,28,31,N/A,77,29,38,27,6,1,2.13\r\n,Huntington Drive Elementary,Los Angeles Unified,Los Angeles,736,2,3,1,2,1,92,0,1,0,100,7,1,36,19,17,15,19,N/A,48,36,33,17,9,4,2.13\r\n,Erma Duncan Polytechnical High,Fresno Unified,Fresno,736,4,3,0,36,0,54,0,6,0,100,19,4,18,49,4,N/A,N/A,27,89,38,28,24,6,4,2.09\r\n,Jackson Elementary,Fresno Unified,Fresno,736,2,3,1,3,0,90,0,2,0,100,2,2,37,14,9,23,30,N/A,71,34,33,24,6,2,2.08\r\n,Franklin Classical Middle,Long Beach Unified,Los Angeles,736,3,15,0,7,0,74,1,1,0,89,6,1,38,33,9,N/A,33,33,74,39,31,15,12,2,2.06\r\n,Sunkist Elementary,Anaheim City,Orange,736,2,0,0,3,1,88,0,6,0,87,19,1,52,22,12,27,30,N/A,25,36,36,22,6,1,2.02\r\n,Boronda Meadows,Salinas City Elementary,Monterey,736,2,1,1,1,1,90,0,5,0,87,0,3,48,18,10,25,27,N/A,99,40,31,21,5,4,2.01\r\n,Greenwood Elementary,Montebello Unified,Los Angeles,736,2,1,0,0,0,97,0,1,0,100,7,0,40,19,15,27,25,N/A,66,37,36,19,6,2,2.01\r\n,,Burrel Union Elementary,Fresno,736,B,0,0,5,0,91,0,4,0,93,0,3,50,26,4,12,11,N/A,99,48,28,11,4,9,1.97\r\n,Burrel Elementary,Burrel Union Elementary,Fresno,736,2,0,0,5,0,91,0,4,0,93,0,3,50,26,4,12,11,N/A,99,48,28,11,4,9,1.97\r\n,,Santa Paula Union High,Ventura,736,B,0,0,0,0,94,0,5,0,76,0,9,33,28,9,N/A,N/A,27,90,44,28,19,6,3,1.96\r\n,,Wasco Union High,Kern,736,B,2,0,0,0,91,0,6,0,79,39,5,22,44,6,N/A,N/A,26,89,45,32,15,6,3,1.89\r\n,Paramount High,Paramount Unified,Los Angeles,736,4,9,0,0,1,87,1,2,0,90,9,0,21,44,10,N/A,N/A,33,94,46,30,16,5,3,1.89\r\n,McCord Elementary,Kings Canyon Joint Unified,Fresno,736,2,1,1,0,0,97,0,1,0,96,0,6,52,24,10,26,34,N/A,98,47,26,21,4,2,1.88\r\n,Lamont Elementary,Lamont Elementary,Kern,736,2,0,0,0,0,96,0,3,1,88,6,18,63,8,8,18,N/A,N/A,98,52,26,12,6,4,1.85\r\n,Delhi High,Delhi Unified,Merced,736,4,1,0,4,0,84,1,8,0,81,0,7,14,60,9,N/A,N/A,23,86,37,48,11,4,0,1.82\r\n,Grape Street Elementary,Los Angeles Unified,Los Angeles,736,2,33,0,0,0,67,0,0,0,85,3,1,31,17,9,19,19,N/A,26,48,32,14,3,2,1.78\r\n,Tuolumne Elementary,Modesto City Elementary,Stanislaus,736,2,1,0,2,0,92,0,5,0,100,2,6,69,7,11,22,28,N/A,93,43,43,10,2,1,1.77\r\n,Charles Blackstock Junior High,Hueneme Elementary,Ventura,736,3,1,0,1,7,89,1,1,0,100,21,10,33,43,10,N/A,29,30,100,66,15,12,6,2,1.64\r\n,Berkeley High,Berkeley Unified,Alameda,735,4,23,0,9,1,19,0,32,9,27,21,0,8,10,11,N/A,N/A,25,89,7,12,19,26,36,3.72\r\n,Will C. Wood High,Vacaville Unified,Solano,735,4,10,1,4,4,27,1,50,2,36,8,0,4,10,10,N/A,N/A,28,96,8,28,37,19,8,2.91\r\n,Transition High (Continuation),Elk Grove Unified,Sacramento,735,B,12,0,0,2,41,0,40,5,43,2,0,2,16,0,N/A,N/A,8,88,6,35,31,18,10,2.9\r\n,Sherwood,Willits Unified,Mendocino,735,2,0,8,0,0,8,0,81,0,65,0,0,0,0,0,20,N/A,N/A,92,17,21,29,25,8,2.88\r\n,Sierra Pacific High,Hanford Joint Union High,Kings,735,4,4,0,3,3,58,0,31,1,40,0,9,12,20,8,N/A,N/A,31,85,15,23,32,25,6,2.84\r\n,Ansel Adams,Lodi Unified,San Joaquin,735,2,11,0,42,10,30,1,4,0,76,10,0,35,13,8,27,29,N/A,81,13,28,35,18,6,2.78\r\n,Williamson Elementary,Folsom-Cordova Unified,Sacramento,735,2,12,1,1,0,39,3,40,3,84,1,0,37,12,15,30,27,N/A,86,15,32,36,13,3,2.58\r\n,Fillmore Middle,Fillmore Unified,Ventura,735,3,0,0,0,0,88,0,11,0,77,10,8,24,23,13,N/A,29,27,85,25,25,31,12,8,2.54\r\n,Pomolita Middle,Ukiah Unified,Mendocino,735,3,1,8,1,1,48,0,40,1,71,9,15,19,23,12,N/A,27,22,97,28,26,28,12,7,2.44\r\n,James M. Burchfield Primary,Colusa Unified,Colusa,735,2,1,3,1,0,68,1,25,1,75,0,11,39,12,14,20,N/A,N/A,99,19,43,19,15,4,2.42\r\n,Wilson Elementary,Stockton Unified,San Joaquin,735,2,8,7,3,3,67,1,11,0,82,10,1,22,10,7,30,32,27,99,22,41,20,9,8,2.39\r\n,,Eastside Union Elementary,Los Angeles,735,B,25,1,1,1,60,0,11,1,81,4,1,24,13,9,20,27,30,96,26,30,30,11,3,2.35\r\n,One Hundred Fifty-Third Street,Los Angeles Unified,Los Angeles,735,2,33,0,2,2,61,2,1,0,100,8,0,27,21,12,15,13,N/A,71,26,28,33,11,2,2.35\r\n,Rancho Medanos Junior High,Pittsburg Unified,Contra Costa,735,3,19,0,3,6,63,2,5,1,83,2,0,27,25,9,N/A,26,23,88,27,32,24,13,3,2.33\r\n,Hamilton High,Hemet Unified,Riverside,735,4,1,3,1,0,32,0,62,1,73,6,0,9,7,7,N/A,N/A,19,100,26,38,24,7,6,2.28\r\n,Lake Los Angeles Elementary,Keppel Union Elementary,Los Angeles,735,2,10,1,0,0,68,0,19,1,89,2,1,33,9,9,23,26,N/A,68,27,35,25,9,4,2.28\r\n,Virginia Avenue Elementary,Fairfax Elementary,Kern,735,2,3,0,2,0,87,0,7,0,89,0,10,59,0,5,23,N/A,N/A,94,28,34,24,10,4,2.26\r\n,Central Elementary,South Bay Union Elementary,San Diego,735,2,4,2,0,3,82,0,7,1,84,1,0,50,6,13,24,26,N/A,95,28,36,24,10,2,2.21\r\n,Crowell Elementary,Turlock Unified,Stanislaus,735,2,2,1,3,1,62,0,30,1,100,2,1,34,7,10,20,28,N/A,94,22,48,23,5,2,2.17\r\n,Fontana A. B. Miller High,Fontana Unified,San Bernardino,735,4,9,0,1,0,85,0,4,0,81,8,0,22,34,14,N/A,N/A,24,90,32,36,18,11,3,2.16\r\n,Leroy Nichols Elementary,Lodi Unified,San Joaquin,735,2,2,1,6,1,59,0,28,0,80,6,3,43,4,16,24,24,N/A,80,31,34,27,7,0,2.13\r\n,Delta High,River Delta Joint Unified,Sacramento,735,4,0,1,1,1,66,0,27,4,55,19,5,28,30,7,N/A,N/A,13,99,46,20,20,7,8,2.1\r\n,E. O. Green Junior High,Hueneme Elementary,Ventura,735,3,4,1,1,3,81,1,9,0,78,20,5,21,32,9,N/A,30,32,99,41,25,21,10,3,2.09\r\n,Lorena Street Elementary,Los Angeles Unified,Los Angeles,735,2,0,0,0,1,99,0,0,0,100,3,0,39,28,12,18,19,N/A,27,39,30,18,10,3,2.08\r\n,Leonora Fillmore Elementary,Lompoc Unified,Santa Barbara,735,2,3,0,2,1,79,0,13,1,78,6,3,40,14,14,20,27,N/A,88,35,36,21,5,4,2.07\r\n,William Garrison Elementary,Modesto City Elementary,Stanislaus,735,2,6,0,3,1,65,0,22,2,85,2,2,37,7,36,15,24,N/A,93,28,48,16,7,1,2.04\r\n,Joseph Le Conte Middle,Los Angeles Unified,Los Angeles,735,3,3,1,2,4,79,0,12,0,92,10,0,27,41,13,N/A,19,18,81,41,32,15,9,3,2.03\r\n,Tunnell (Martin Luther) Elementary,Santa Maria-Bonita,Santa Barbara,735,2,1,1,1,2,83,1,10,0,100,11,4,34,7,11,29,28,N/A,100,37,30,27,3,2,2.02\r\n,John A. Sutter Middle,Los Angeles Unified,Los Angeles,735,3,5,0,5,2,83,0,4,0,100,11,0,21,39,18,N/A,31,29,89,41,32,16,8,3,1.99\r\n,Hidden Valley Middle,Escondido Union,San Diego,735,3,3,0,2,2,79,1,13,0,80,10,1,36,28,8,N/A,29,29,83,44,27,19,8,2,1.97\r\n,Fred T. Korematsu Discovery Academy,Oakland Unified,Alameda,735,2,18,0,1,0,77,1,1,1,43,34,0,60,14,6,21,27,N/A,44,33,44,19,2,2,1.96\r\n,Jaime Escalante Elementary,Los Angeles Unified,Los Angeles,735,2,0,1,0,0,97,0,2,0,79,4,1,50,20,13,21,27,N/A,84,36,43,13,6,2,1.96\r\n,Fontana Middle,Fontana Unified,San Bernardino,735,3,4,0,0,0,90,0,5,0,89,4,0,33,31,14,N/A,22,21,88,41,34,15,8,2,1.96\r\n,David Wark Griffith Middle,Los Angeles Unified,Los Angeles,735,3,0,0,0,0,99,0,1,0,100,11,1,18,41,12,N/A,20,20,58,38,42,13,4,3,1.92\r\n,Washington Middle,Long Beach Unified,Los Angeles,735,3,12,0,3,1,81,0,1,0,90,4,2,42,31,11,N/A,33,33,66,45,33,11,9,1,1.88\r\n,Twenty-Eighth Street Elementary,Los Angeles Unified,Los Angeles,735,2,1,0,0,0,98,0,0,0,100,15,0,61,22,11,22,24,N/A,83,66,22,7,3,2,1.54\r\n,Raymond-Knowles Elementary,Raymond-Knowles Union Elementa,Madera,735,2,11,7,0,5,11,0,65,0,73,0,0,0,0,13,,,,0,0,0,0,0,0,\r\n,Sierra Home,Mariposa County Unified,Mariposa,734,4,3,5,2,2,14,0,70,2,30,3,0,0,5,17,N/A,2,11,92,0,15,36,20,30,3.64\r\n,,Hot Springs Elementary,Tulare,734,B,0,0,0,0,13,0,80,7,33,0,0,0,0,7,,,,53,0,0,75,25,0,3.25\r\nD,Golden Lakes Charter,Tuolumne County Superintendent,Tuolumne,734,4,0,1,0,0,28,0,57,4,57,0,0,0,0,12,5,6,4,58,7,20,30,41,2,3.11\r\n,Carmichael Elementary,San Juan Unified,Sacramento,734,2,16,2,1,1,27,0,52,2,85,1,0,14,3,17,23,32,N/A,76,12,19,38,25,7,2.96\r\n,Rio Lindo Elementary,Rio Elementary,Ventura,734,2,1,0,1,4,89,1,4,0,77,0,5,40,9,5,29,28,N/A,67,16,34,33,14,3,2.56\r\n,Ridgeview High,Kern Union High,Kern,734,4,9,1,6,1,63,0,18,1,66,11,3,5,26,8,N/A,N/A,26,89,20,35,24,15,5,2.5\r\n,Hillview Junior High,Pittsburg Unified,Contra Costa,734,3,24,0,3,7,54,1,8,1,75,2,0,23,21,9,N/A,31,25,93,19,36,24,17,4,2.5\r\n,South Fork Middle,South Fork Union,Kern,734,3,4,6,1,0,13,1,75,0,78,9,0,0,1,13,N/A,35,24,77,12,36,44,9,0,2.5\r\n,San Diego Science and Technology,San Diego Unified,San Diego,734,4,15,0,1,1,70,0,9,2,99,17,0,24,29,15,N/A,N/A,22,80,22,30,30,12,5,2.48\r\nD,REALM Middle,Berkeley Unified,Alameda,734,2,23,0,2,0,60,0,5,3,96,0,0,52,0,7,N/A,22,N/A,100,29,33,19,14,6,2.36\r\nD,Adelante Charter,Santa Barbara Unified,Santa Barbara,734,2,0,1,0,0,92,0,7,0,74,0,0,70,4,7,19,27,N/A,90,36,25,24,4,12,2.31\r\n,Phelan Elementary,Snowline Joint Unified,San Bernardino,734,2,2,0,1,0,44,0,39,0,77,0,0,24,1,14,28,26,N/A,68,12,55,25,6,2,2.3\r\n,,Orland Joint Unified,Glenn,734,B,1,1,3,0,60,0,35,0,75,7,3,23,19,12,25,25,25,97,28,33,26,7,5,2.27\r\n,Roy W. Loudon Elementary,Panama-Buena Vista Union,Kern,734,2,13,1,3,1,64,0,19,0,88,1,0,21,8,10,29,31,N/A,34,18,49,26,8,0,2.24\r\n,Virginia Road Elementary,Los Angeles Unified,Los Angeles,734,2,40,0,0,0,58,0,1,0,100,9,0,29,12,18,18,22,N/A,79,28,36,26,8,2,2.2\r\n,,Bakersfield City,Kern,734,B,9,1,1,1,77,0,10,1,88,3,7,25,18,9,20,25,24,64,31,36,21,8,4,2.18\r\n,Los Tules Middle,Tulare City,Tulare,734,3,4,0,2,0,86,0,7,1,91,15,11,23,24,8,N/A,33,23,86,29,35,30,5,2,2.17\r\n,,Laton Joint Unified,Fresno,734,B,0,0,0,0,83,0,1,0,76,11,1,43,20,10,19,21,17,68,32,35,20,13,1,2.16\r\n,Perkins K-8,San Diego Unified,San Diego,734,2,3,0,0,0,95,0,1,1,99,27,0,57,21,13,18,28,29,80,26,45,20,6,3,2.15\r\n,Willow Cove Elementary,Pittsburg Unified,Contra Costa,734,2,12,0,3,5,77,0,3,0,87,0,0,65,8,8,24,29,N/A,93,38,32,14,14,2,2.09\r\n,Loara High,Anaheim Union High,Orange,734,4,2,0,8,3,75,1,10,0,76,17,0,28,43,10,N/A,N/A,38,23,40,29,17,10,3,2.08\r\n,Peter Burnett Middle,San Jose Unified,Santa Clara,734,3,1,1,7,2,82,1,5,1,83,14,1,32,34,11,N/A,22,25,85,44,26,16,10,5,2.05\r\n,Shore Acres Elementary,Mt. Diablo Unified,Contra Costa,734,2,3,0,1,1,88,1,4,0,93,1,0,68,15,6,27,29,N/A,51,33,48,12,6,2,1.96\r\n,San Jacinto Elementary,San Jacinto Unified,Riverside,734,2,5,2,1,0,85,0,6,1,94,4,0,46,7,8,31,31,N/A,97,41,37,17,3,1,1.86\r\n,Virgil Middle,Los Angeles Unified,Los Angeles,734,3,2,0,4,7,86,0,1,0,100,12,0,32,48,14,N/A,25,20,65,49,29,12,9,2,1.84\r\n,Normandie Avenue Elementary,Los Angeles Unified,Los Angeles,734,2,25,0,0,0,74,0,0,0,92,3,0,40,11,15,19,17,N/A,25,48,33,11,4,4,1.83\r\n,Hilliard Comstock Middle,Santa Rosa City Schools,Sonoma,734,3,2,2,7,0,75,2,11,1,80,7,7,32,40,20,N/A,N/A,22,89,54,21,17,5,2,1.8\r\n,Suva Intermediate,Montebello Unified,Los Angeles,734,3,0,0,0,0,99,0,1,0,100,10,0,23,51,11,N/A,24,23,90,46,36,10,5,2,1.8\r\n,Garfield Elementary,Oakland Unified,Alameda,734,2,15,1,28,2,51,1,2,1,90,30,0,54,14,9,22,24,N/A,48,53,26,14,5,2,1.77\r\n,Los Padres Elementary,Salinas City Elementary,Monterey,734,2,0,0,0,0,97,0,1,0,93,2,12,68,18,6,22,25,N/A,100,56,29,8,3,3,1.67\r\n,Hawes Elementary,Redwood City Elementary,San Mateo,734,2,1,0,1,0,93,1,4,0,100,1,1,69,22,15,28,31,N/A,99,58,25,14,2,1,1.62\r\n,Inderkum High,Natomas Unified,Sacramento,733,4,22,1,20,9,26,2,13,3,56,4,0,8,15,8,N/A,N/A,32,79,7,29,35,25,4,2.91\r\n,Rodeo Hills Elementary,John Swett Unified,Contra Costa,733,2,22,0,11,7,32,0,17,9,61,7,0,20,3,10,24,27,N/A,95,9,35,34,19,4,2.73\r\n,Anzar High,Aromas/San Juan Unified,San Benito,733,4,0,1,3,2,54,0,39,0,42,0,15,13,21,11,N/A,N/A,27,91,21,24,32,14,9,2.65\r\n,Frazier Mountain High,El Tejon Unified,Kern,733,4,0,0,0,0,21,0,9,1,52,0,0,7,7,6,N/A,N/A,27,7,6,47,24,24,0,2.65\r\n,El Capitan Middle,Central Unified,Fresno,733,3,12,1,12,1,60,0,13,1,80,3,1,9,23,9,N/A,N/A,30,95,20,29,32,12,7,2.57\r\n,,Kern Union High,Kern,733,B,6,1,2,1,62,0,25,1,64,16,3,8,23,8,N/A,N/A,26,92,25,30,22,14,9,2.51\r\n,Hamilton High,Hamilton Unified,Glenn,733,4,1,0,0,0,72,0,26,0,68,3,28,14,39,8,N/A,N/A,21,96,32,23,27,11,7,2.38\r\n,,Ukiah Unified,Mendocino,733,B,1,7,1,1,47,0,42,1,69,7,13,25,15,12,24,26,25,97,28,28,29,11,5,2.38\r\n,Murdock Elementary,Willows Unified,Glenn,733,2,1,3,6,0,48,0,42,0,69,0,1,37,5,8,26,30,N/A,95,19,40,27,12,2,2.37\r\n,Victory Elementary,Stockton Unified,San Joaquin,733,2,11,8,4,1,62,0,13,0,99,5,1,17,11,12,28,29,30,96,23,39,24,8,6,2.36\r\n,Patterson High,Patterson Joint Unified,Stanislaus,733,4,9,1,3,1,66,1,18,1,62,5,3,25,22,11,N/A,N/A,31,94,31,28,24,13,4,2.32\r\n,Ramona High,Riverside Unified,Riverside,733,4,7,1,2,1,71,1,18,0,75,6,0,16,20,10,N/A,N/A,31,93,28,28,33,7,4,2.3\r\n,Jurupa Hills High,Fontana Unified,San Bernardino,733,4,7,0,1,2,83,0,6,0,76,8,0,21,32,10,N/A,N/A,30,93,28,34,22,12,3,2.28\r\n,Richard Henry Dana Middle,Los Angeles Unified,Los Angeles,733,3,9,1,1,1,73,1,14,1,74,14,0,9,20,14,N/A,29,28,71,35,26,23,10,5,2.23\r\n,Golden Valley High,Kern Union High,Kern,733,4,7,0,2,1,81,0,8,1,79,10,7,10,41,6,N/A,N/A,28,84,30,36,20,8,5,2.21\r\n,Ramon C. Cortines School of Visual and P,Los Angeles Unified,Los Angeles,733,4,10,1,5,5,70,0,8,0,80,17,0,12,40,7,N/A,N/A,32,49,37,31,15,12,5,2.18\r\n,William G. Jehue Middle,Rialto Unified,San Bernardino,733,3,8,0,1,1,85,0,4,0,83,16,0,21,26,9,N/A,33,17,82,35,31,20,10,3,2.14\r\nD,Downtown College Preparatory,San Jose Unified,Santa Clara,733,4,1,0,1,0,90,0,2,1,92,0,0,34,41,11,N/A,N/A,27,98,42,26,18,8,5,2.07\r\n,Rialto High,Rialto Unified,San Bernardino,733,4,8,1,2,1,84,0,4,0,79,13,0,20,28,8,N/A,N/A,25,81,42,28,18,9,3,2.04\r\n,Longfellow Elementary,Bakersfield City,Kern,733,2,4,1,1,0,84,0,8,2,94,0,8,33,12,13,19,25,N/A,65,39,32,20,3,5,2.02\r\n,Nettie L. Waite Middle,Norwalk-La Mirada Unified,Los Angeles,733,3,2,0,1,1,91,1,2,0,88,9,6,20,30,12,N/A,29,29,96,41,37,14,7,2,1.92\r\n,State Street Elementary,Los Angeles Unified,Los Angeles,733,2,0,0,0,0,100,0,0,0,100,9,0,38,17,13,20,20,N/A,96,37,46,9,5,2,1.89\r\n,Olive Vista Middle,Los Angeles Unified,Los Angeles,733,3,1,0,0,1,96,0,2,0,100,8,0,22,40,15,N/A,22,21,77,45,32,15,6,2,1.89\r\n,Cesar E. Chavez Middle,Pajaro Valley Unified,Santa Cruz,733,3,0,0,0,1,96,0,3,0,87,13,11,42,40,15,N/A,33,28,53,49,26,15,8,2,1.88\r\n,Nishimoto Elementary,Madera Unified,Madera,733,2,2,1,0,0,93,0,4,0,92,0,8,51,15,6,26,34,N/A,99,49,28,17,4,2,1.82\r\n,Woodworth (Clyde) Elementary,Inglewood Unified,Los Angeles,733,2,28,1,0,0,70,0,0,0,91,0,0,29,0,17,27,28,N/A,89,47,32,16,4,1,1.79\r\n,Foothill Elementary,Alvord Unified,Riverside,733,2,1,1,1,1,91,0,4,1,90,3,0,72,1,14,29,29,N/A,98,47,35,13,2,2,1.76\r\n,Rose Elementary,Escondido Union,San Diego,733,2,2,0,0,1,89,0,8,0,91,4,3,73,5,10,23,30,N/A,65,54,25,15,4,2,1.75\r\n,Harrington Elementary,Oxnard,Ventura,733,2,1,0,1,1,96,1,1,0,88,0,8,68,6,7,29,28,N/A,93,53,28,14,4,1,1.71\r\n,Sixty-Eighth Street Elementary,Los Angeles Unified,Los Angeles,733,2,20,0,0,0,80,0,0,0,88,7,0,40,18,10,20,22,N/A,92,60,23,12,2,2,1.64\r\n,,Mendota Unified,Fresno,733,B,0,0,0,0,98,0,1,0,98,13,7,79,4,5,22,23,27,99,69,21,8,2,1,1.46\r\nD,RAI Online Charter,Vallecitos Elementary,San Diego,732,4,8,3,3,0,38,0,49,0,26,0,0,0,3,1,6,10,15,99,5,21,38,27,8,3.13\r\n,Jack London Elementary,Antioch Unified,Contra Costa,732,2,32,1,7,8,34,1,17,0,68,5,0,21,3,18,25,26,N/A,69,9,29,38,19,5,2.81\r\n,Kelseyville High,Kelseyville Unified,Lake,732,4,1,1,1,0,33,0,59,2,82,0,6,7,16,13,N/A,N/A,24,87,14,25,35,21,6,2.8\r\n,Shaffer Elementary,Shaffer Union Elementary,Lassen,732,2,1,4,0,1,22,0,73,0,51,0,0,10,0,8,18,18,21,84,11,24,47,14,4,2.77\r\n,Mountain Vista Middle,Kelseyville Unified,Lake,732,2,2,2,1,1,36,0,54,2,96,0,9,14,15,12,N/A,26,25,93,21,23,32,14,9,2.66\r\n,Federal Terrace Elementary,Vallejo City Unified,Solano,732,2,31,0,1,18,38,1,8,2,69,0,0,31,9,12,29,27,N/A,89,13,35,32,17,3,2.63\r\nD,TEACH Academy of Technologies,Los Angeles Unified,Los Angeles,732,2,40,0,0,0,60,0,0,0,100,0,0,28,0,11,,,,32,0,62,21,13,4,2.6\r\nD,Opportunities for Learning - Hermosa Bea,Hermosa Beach City Elementary,Los Angeles,732,4,13,1,1,1,49,0,29,5,62,0,0,9,9,2,N/A,N/A,1,99,19,27,38,11,5,2.56\r\n,Alpine Elementary,Keppel Union Elementary,Los Angeles,732,2,2,0,0,0,78,0,17,2,81,4,2,31,11,7,23,27,N/A,68,25,28,27,12,8,2.5\r\n,Denman (James) Middle,San Francisco Unified,San Francisco,732,2,8,1,23,24,37,3,2,1,74,23,1,29,31,13,N/A,29,25,60,12,57,15,14,3,2.38\r\n,Corcoran High,Corcoran Joint Unified,Kings,732,4,3,0,0,0,83,0,10,0,80,6,6,19,29,10,N/A,N/A,23,90,30,33,25,9,4,2.25\r\n,Wilson Elementary,Tulare City,Tulare,732,2,7,1,0,0,82,0,10,1,90,0,9,27,11,13,19,32,N/A,90,27,40,23,8,2,2.19\r\n,Joseph George Middle,Alum Rock Union Elementary,Santa Clara,732,2,1,0,7,5,83,0,4,0,100,20,2,31,33,15,N/A,22,22,95,37,27,24,10,3,2.16\r\n,Linda Elementary,Marysville Joint Unified,Yuba,732,2,3,2,20,0,45,0,28,2,90,3,2,46,6,9,22,29,N/A,76,32,36,23,6,3,2.11\r\n,Sam V. Curtis Elementary,Rialto Unified,San Bernardino,732,2,12,0,1,0,81,0,4,1,88,12,0,41,13,10,26,28,N/A,89,37,30,24,6,2,2.07\r\n,Crozier (George W.) Middle,Inglewood Unified,Los Angeles,732,2,29,0,1,0,68,0,0,0,92,3,0,5,0,13,N/A,21,22,94,39,30,20,9,2,2.04\r\n,Jacob Wiens Elementary,Hemet Unified,Riverside,732,2,11,1,0,0,68,0,17,3,94,0,0,34,3,21,25,31,N/A,100,40,28,24,4,3,2.03\r\n,Ray Wiltsey Middle,Ontario-Montclair Elementary,San Bernardino,732,2,3,1,1,1,90,0,3,2,91,7,0,38,27,12,N/A,N/A,27,97,39,35,16,6,4,2.02\r\n,Casa Loma Elementary,Bakersfield City,Kern,732,2,17,0,2,0,79,0,2,1,95,0,8,41,14,7,20,27,N/A,66,36,41,17,4,2,1.96\r\n,,Wasco Union Elementary,Kern,732,B,3,0,0,0,92,0,4,0,86,0,6,45,15,7,29,27,19,96,40,37,16,5,2,1.92\r\n,Teresa Burke Elementary,Wasco Union Elementary,Kern,732,2,3,0,0,0,94,0,3,0,88,0,6,56,9,5,28,29,N/A,96,41,36,15,6,1,1.92\r\n,La Joya Elementary,Santa Rita Union Elementary,Monterey,732,2,0,1,1,1,60,0,36,0,72,0,2,42,15,11,29,29,N/A,96,36,49,10,4,1,1.86\r\n,Rosa Parks Learning Center,Los Angeles Unified,Los Angeles,732,2,3,0,1,1,94,0,0,0,100,5,0,59,21,14,21,24,N/A,84,51,27,9,10,3,1.86\r\n,\"Math, Science, & Technology Magnet Acade\",Los Angeles Unified,Los Angeles,732,4,0,0,0,0,99,0,0,0,100,25,2,7,69,2,N/A,N/A,23,56,53,26,13,4,3,1.79\r\n,Charles W. Barrett Elementary,Los Angeles Unified,Los Angeles,732,2,30,0,0,0,70,0,0,0,100,14,0,32,20,12,18,20,N/A,56,50,29,15,5,1,1.78\r\n,Murchison Street Elementary,Los Angeles Unified,Los Angeles,732,2,2,0,1,0,98,0,0,0,100,3,2,32,24,14,20,22,N/A,88,53,28,13,5,2,1.76\r\n,One Hundred Ninth Street Elementary,Los Angeles Unified,Los Angeles,732,2,23,0,0,0,77,0,0,0,100,2,0,41,13,11,20,19,N/A,73,48,32,15,5,0,1.76\r\n,Los Angeles High School of the Arts (LAH,Los Angeles Unified,Los Angeles,732,4,2,0,7,2,87,0,1,0,100,9,0,28,50,10,N/A,N/A,19,52,55,28,7,9,1,1.74\r\n,,Santa Maria-Bonita,Santa Barbara,732,B,1,0,1,2,92,0,5,0,100,9,13,54,16,8,27,27,29,99,62,22,11,3,1,1.59\r\n,Belvedere Elementary,Los Angeles Unified,Los Angeles,732,2,0,0,0,0,99,0,0,0,97,2,1,43,30,11,20,21,N/A,95,76,17,4,1,2,1.36\r\n,O'Neals Digital Middle,Chawanakee Unified,Madera,731,2,0,2,0,2,23,0,69,3,33,10,0,0,0,5,N/A,32,N/A,94,6,16,30,32,16,3.36\r\nY,Pacific Coast Charter,Pajaro Valley Unified,Santa Cruz,731,4,2,0,4,1,54,0,39,0,37,8,2,19,11,14,,,,82,19,16,24,29,13,3\r\n,,Shaffer Union Elementary,Lassen,731,B,1,4,0,1,22,0,72,0,52,0,0,10,0,9,18,18,21,84,11,25,47,14,4,2.76\r\n,El Dorado Middle,Mt. Diablo Unified,Contra Costa,731,2,6,1,4,7,46,2,33,1,60,6,0,18,18,12,N/A,28,31,78,15,26,33,20,6,2.76\r\n,Minnie Cannon Elementary,Middletown Unified,Lake,731,2,1,1,2,4,38,0,55,0,67,0,0,26,1,6,18,25,N/A,87,20,27,25,20,8,2.69\r\n,Bella Vista Elementary,Montebello Unified,Los Angeles,731,2,0,0,12,1,85,0,2,0,66,8,0,16,14,16,27,28,N/A,86,13,36,28,16,6,2.67\r\n,Burton Middle,Burton Elementary,Tulare,731,2,1,0,3,5,62,0,29,0,67,11,6,21,9,6,N/A,N/A,26,98,18,23,41,11,7,2.66\r\n,Bayview Terrace Elementary,San Diego Unified,San Diego,731,2,4,0,1,0,78,1,13,3,100,20,0,50,15,17,21,33,N/A,88,18,33,28,17,6,2.61\r\n,,Rio Elementary,Ventura,731,B,2,0,2,5,83,1,6,1,83,2,6,38,15,7,25,29,28,71,28,25,26,14,7,2.47\r\n,Rolando Park Elementary,San Diego Unified,San Diego,731,2,14,0,4,2,70,0,8,1,85,17,1,40,8,24,23,26,N/A,80,21,32,36,9,3,2.41\r\n,,Twin Rivers Unified,Sacramento,731,B,16,1,9,1,40,2,26,3,79,14,0,26,13,13,25,27,25,82,22,36,29,11,3,2.38\r\n,Charles L. Sullivan Middle,Fairfield-Suisun Unified,Solano,731,2,19,1,3,7,48,1,14,6,79,11,1,17,22,11,N/A,33,30,97,21,39,24,12,3,2.37\r\n,Hesperia High,Hesperia Unified,San Bernardino,731,4,7,0,1,0,71,1,18,0,75,3,0,22,17,9,N/A,N/A,27,88,21,42,23,8,5,2.34\r\n,,Lucerne Valley Unified,San Bernardino,731,B,3,1,1,1,39,1,53,0,76,0,0,1,0,18,20,20,7,83,18,46,24,10,2,2.33\r\n,Price Intermediate,Orland Joint Unified,Glenn,731,2,0,1,2,0,64,0,32,1,79,7,2,21,23,11,N/A,24,28,97,28,32,28,5,7,2.3\r\n,Anderson Heights Elementary,Cascade Union Elementary,Shasta,731,2,2,9,3,2,15,0,67,0,89,6,0,8,1,7,21,31,N/A,97,15,47,34,3,1,2.3\r\n,,Pomona Unified,Los Angeles,731,B,6,0,4,1,83,0,4,1,82,7,0,34,20,10,26,30,30,84,26,38,21,9,5,2.29\r\n,Glen View Elementary,Escondido Union,San Diego,731,2,3,1,3,4,79,1,8,0,82,4,1,60,6,11,22,30,N/A,71,30,31,24,12,3,2.27\r\n,Roosevelt Elementary,San Gabriel Unified,Los Angeles,731,2,1,0,29,1,65,0,2,0,90,5,0,74,3,11,31,34,N/A,91,31,37,16,12,4,2.2\r\n,Arrowhead Elementary,San Bernardino City Unified,San Bernardino,731,2,24,0,5,0,54,0,11,4,93,12,0,27,3,7,19,25,N/A,76,26,42,23,7,2,2.17\r\n,Burbank Elementary,San Diego Unified,San Diego,731,2,2,0,0,0,95,0,2,1,100,16,0,68,10,15,17,24,N/A,64,28,39,23,9,1,2.17\r\n,Crestmore Elementary,Colton Joint Unified,San Bernardino,731,2,1,0,0,0,94,0,4,0,90,12,0,60,11,12,20,30,N/A,91,31,40,20,6,4,2.12\r\n,Sunset,Hacienda la Puente Unified,Los Angeles,731,C,0,0,7,4,82,0,7,0,71,0,0,32,0,100,8,1,N/A,36,30,40,20,10,0,2.1\r\n,Rosamond Elementary,Southern Kern Unified,Kern,731,2,12,1,1,1,52,0,25,2,76,0,6,23,5,14,26,29,N/A,73,23,58,11,7,1,2.06\r\n,Frisbie Middle,Rialto Unified,San Bernardino,731,2,13,0,1,0,81,1,3,0,88,16,0,23,24,8,N/A,28,23,87,36,34,21,7,2,2.06\r\n,Cajon Valley Middle,Cajon Valley Union,San Diego,731,2,12,0,1,2,52,1,28,1,83,5,0,43,24,9,N/A,22,28,86,34,41,18,6,1,2\r\n,Orange Glen High,Escondido Union High,San Diego,731,4,2,0,3,2,79,1,12,0,79,5,2,30,38,9,N/A,N/A,25,78,47,23,18,10,3,1.99\r\n,International Studies Learning Center,Los Angeles Unified,Los Angeles,731,4,1,0,0,0,98,0,0,0,85,14,0,17,43,8,N/A,32,30,70,43,27,21,7,2,1.97\r\n,Lexington Elementary,Pomona Unified,Los Angeles,731,2,4,0,1,1,93,0,0,0,93,2,0,43,18,11,26,29,25,81,32,45,17,4,1,1.97\r\n,Pioneer High,Whittier Union High,Los Angeles,731,4,1,0,0,1,93,0,5,0,80,0,0,17,22,13,N/A,N/A,31,91,43,31,19,5,3,1.93\r\nY,East Oakland Leadership Academy High,Oakland Unified,Alameda,731,4,31,0,0,0,67,0,2,0,93,0,0,24,33,0,,,,47,38,48,10,0,5,1.86\r\n,Chester W. Nimitz Middle,Los Angeles Unified,Los Angeles,731,2,0,0,0,0,99,0,0,0,100,18,1,18,51,10,N/A,22,19,61,53,28,11,5,4,1.79\r\n,Rosecrans Elementary,Compton Unified,Los Angeles,731,2,11,0,0,0,88,1,0,0,89,6,0,57,21,5,30,30,N/A,89,59,25,10,4,2,1.64\r\n,West Vernon Avenue Elementary,Los Angeles Unified,Los Angeles,731,2,8,0,0,0,91,0,0,0,100,3,0,54,26,9,18,19,N/A,63,62,21,12,3,1,1.61\r\n,Thomas Jefferson Middle,Desert Sands Unified,Riverside,731,2,2,0,0,1,95,0,2,0,97,5,7,36,39,13,N/A,19,18,100,59,28,10,2,1,1.59\r\n,Carl Smith Middle,Terra Bella Union Elementary,Tulare,731,2,0,0,0,1,96,0,3,0,98,10,3,49,40,8,N/A,23,N/A,100,74,19,6,0,1,1.36\r\n,John F. Kennedy Elementary,Santa Ana Unified,Orange,731,2,0,0,0,0,100,0,0,0,100,4,7,87,10,10,24,26,N/A,91,76,16,6,1,1,1.36\r\nD,CLAS Affirmation,Los Angeles Unified,Los Angeles,730,2,89,0,0,0,1,0,0,0,52,0,0,0,0,7,,,,17,0,13,5,36,46,4.15\r\n,Jesse M. Bethel High,Vallejo City Unified,Solano,730,4,26,0,4,29,21,2,9,2,43,11,0,7,17,11,N/A,N/A,27,91,9,25,35,25,7,2.97\r\nD,Frederick Douglass Academy Elementary,Los Angeles Unified,Los Angeles,730,2,82,0,0,0,17,0,1,0,88,0,0,5,0,10,27,31,N/A,72,4,31,41,18,6,2.91\r\n,Norman G. Ambrosini Elementary,Rohnerville Elementary,Humboldt,730,2,2,3,0,0,28,1,61,5,62,0,0,20,3,20,28,28,N/A,89,10,33,34,16,7,2.77\r\n,,Di Giorgio Elementary,Kern,730,B,0,0,1,0,87,0,11,0,89,0,19,40,24,8,23,24,N/A,12,5,52,14,19,10,2.76\r\n,Di Giorgio Elementary,Di Giorgio Elementary,Kern,730,2,0,0,1,0,87,0,11,0,89,0,19,40,24,7,23,24,N/A,13,5,52,14,19,10,2.76\r\n,Armijo High,Fairfield-Suisun Unified,Solano,730,4,14,2,5,6,39,1,16,16,50,10,0,10,21,8,N/A,N/A,31,98,15,31,29,21,5,2.7\r\n,Woodland Senior High,Woodland Joint Unified,Yolo,730,4,1,1,3,0,60,0,34,1,55,18,2,15,26,9,N/A,N/A,31,80,22,22,29,19,8,2.69\r\n,,Emery Unified,Alameda,730,B,55,0,12,0,24,1,5,1,85,0,0,14,13,10,19,24,23,69,11,39,34,16,0,2.56\r\n,Creekside Middle,Patterson Joint Unified,Stanislaus,730,2,8,0,2,2,67,2,17,1,63,8,1,26,22,13,N/A,29,26,96,24,30,29,13,5,2.44\r\nD,Pathways to College,Hesperia Unified,San Bernardino,730,2,10,0,0,0,55,2,32,0,80,0,0,15,10,8,12,11,N/A,96,21,33,31,12,3,2.43\r\n,Colonial Acres Elementary,San Lorenzo Unified,Alameda,730,2,8,0,4,6,73,1,7,1,73,0,8,55,13,8,26,29,N/A,90,21,41,21,16,2,2.38\r\n,Marina del Rey Middle,Los Angeles Unified,Los Angeles,730,2,31,1,1,1,59,0,6,0,90,15,0,15,21,14,N/A,24,28,65,35,23,23,14,5,2.32\r\n,Herman Leimbach Elementary,Elk Grove Unified,Sacramento,730,2,26,0,16,4,39,3,8,4,100,2,0,34,10,12,22,26,N/A,91,24,41,21,10,4,2.3\r\n,Orland High,Orland Joint Unified,Glenn,730,4,1,1,3,0,57,0,37,1,66,7,2,9,30,9,N/A,N/A,24,94,28,36,24,7,5,2.26\r\nD,Opportunities for Learning - Baldwin Par,Baldwin Park Unified,Los Angeles,730,4,9,1,1,1,69,0,16,2,75,0,0,10,15,3,N/A,N/A,1,99,33,27,29,9,3,2.22\r\n,Wayne Van Horn Elementary,Panama-Buena Vista Union,Kern,730,2,14,1,3,1,58,0,23,0,81,2,0,24,6,12,24,28,N/A,41,28,41,16,14,1,2.19\r\n,Walnut Grove Elementary,Patterson Joint Unified,Stanislaus,730,2,1,0,1,0,87,1,9,0,36,7,2,37,22,8,28,26,30,86,35,29,25,7,4,2.17\r\n,Acacia Middle,Hemet Unified,Riverside,730,2,9,1,1,1,55,1,30,3,82,3,0,11,7,19,N/A,27,29,100,32,35,25,4,4,2.15\r\n,Bel Air Elementary,Mt. Diablo Unified,Contra Costa,730,2,22,0,2,4,65,2,4,2,91,0,0,49,9,7,29,34,N/A,54,36,31,19,9,4,2.15\r\n,Louise Sandrini Elementary,Panama-Buena Vista Union,Kern,730,2,18,1,4,1,57,0,19,0,87,0,0,24,10,13,29,24,N/A,49,26,50,18,5,1,2.07\r\n,Sky View Elementary,Perris Elementary,Riverside,730,2,14,0,2,0,81,0,3,0,100,4,0,36,20,7,25,29,N/A,66,35,35,22,7,0,2.03\r\n,Bryant Elementary,San Francisco Unified,San Francisco,730,2,3,1,1,1,86,1,2,1,91,3,4,71,4,13,20,19,N/A,95,32,42,22,5,0,2\r\n,King City High,South Monterey County Joint Un,Monterey,730,4,0,0,1,2,84,0,12,0,69,0,5,23,45,12,N/A,N/A,28,99,47,27,14,6,6,1.97\r\n,Roosevelt Elementary,Lynwood Unified,Los Angeles,730,2,5,0,0,0,94,0,0,0,90,8,2,51,18,7,30,29,N/A,95,41,31,18,9,1,1.96\r\n,Dolores Huerta Elementary,Stockton Unified,San Joaquin,730,2,6,2,3,8,79,1,2,0,100,6,3,40,20,9,29,32,31,96,46,30,10,9,4,1.96\r\n,Clark Middle,San Diego Unified,San Diego,730,2,8,0,12,0,77,0,1,2,100,14,0,35,43,14,N/A,28,27,76,43,34,12,6,4,1.94\r\n,Vejar Elementary,Pomona Unified,Los Angeles,730,2,2,0,6,0,90,0,1,0,95,2,1,42,25,8,27,30,32,76,41,37,15,4,3,1.92\r\n,Don Stowell Elementary,Merced City Elementary,Merced,730,2,5,0,6,1,86,0,2,0,97,0,6,66,6,9,25,29,N/A,80,55,18,19,2,6,1.87\r\n,Calwa Elementary,Fresno Unified,Fresno,730,2,2,1,5,0,89,0,1,0,100,1,8,49,19,8,20,21,N/A,49,47,30,20,2,1,1.81\r\n,Telfair Avenue Elementary,Los Angeles Unified,Los Angeles,730,2,1,0,0,0,99,0,0,0,92,5,1,42,20,11,20,22,N/A,92,52,28,13,4,3,1.78\r\n,Arrowview Middle,San Bernardino City Unified,San Bernardino,730,2,12,0,1,0,82,0,3,0,96,8,0,30,31,12,N/A,25,22,79,52,29,12,4,3,1.76\r\n,Harding University Partnership,Santa Barbara Unified,Santa Barbara,730,2,0,2,0,1,93,0,4,1,100,3,0,77,4,15,23,27,N/A,84,53,29,11,6,2,1.76\r\n,Rowell Elementary,Fresno Unified,Fresno,730,2,2,0,5,0,92,0,1,0,100,4,1,45,17,9,19,21,N/A,88,48,38,12,2,0,1.68\r\n,Abraham Lincoln Elementary,Santa Rosa City Schools,Sonoma,730,2,1,1,0,1,94,0,1,1,94,1,9,83,7,23,19,17,N/A,96,57,28,10,4,1,1.65\r\n,Ninety-Third Street Elementary,Los Angeles Unified,Los Angeles,730,2,22,0,0,0,78,0,0,0,96,4,0,39,24,11,20,22,N/A,80,59,25,13,2,2,1.63\r\n,,Traver Joint Elementary,Tulare,730,B,0,0,1,0,92,0,8,0,96,0,12,55,11,5,19,20,N/A,100,55,31,13,2,0,1.62\r\n,Traver Elementary,Traver Joint Elementary,Tulare,730,2,0,0,1,0,92,0,8,0,96,0,12,55,11,5,19,20,N/A,100,55,31,13,2,0,1.62\r\n,Quincy Jones Elementary,Los Angeles Unified,Los Angeles,730,2,2,0,0,0,98,0,0,0,100,4,0,65,18,15,23,20,N/A,75,57,29,11,3,1,1.62\r\n,Abraham Lincoln Elementary,Santa Ana Unified,Orange,730,2,0,0,1,0,98,0,0,0,100,4,4,80,12,7,26,33,N/A,100,66,22,10,2,0,1.48\r\n,Ansgar Larsen Elementary,Hueneme Elementary,Ventura,730,2,1,0,0,2,96,0,0,0,100,15,12,66,14,8,30,27,N/A,100,69,24,4,1,2,1.44\r\n,,Lassen Union High,Lassen,729,B,2,5,1,1,12,0,77,1,24,15,0,3,1,7,N/A,N/A,24,84,4,22,51,16,7,2.98\r\n,East Avenue Elementary,Hayward Unified,Alameda,729,2,27,0,8,3,41,4,14,3,49,0,1,19,6,11,29,29,N/A,95,12,25,29,27,7,2.92\r\n,Clayton B. Wire Elementary,Sacramento City Unified,Sacramento,729,2,14,0,29,2,47,1,3,2,100,8,0,44,18,12,27,33,N/A,84,23,24,14,23,16,2.84\r\n,,Denair Unified,Stanislaus,729,B,1,1,1,0,39,0,54,3,40,4,1,11,14,10,18,21,27,92,16,29,29,14,11,2.76\r\n,Las Plumas High,Oroville Union High,Butte,729,4,3,7,12,0,22,1,53,0,55,2,1,10,12,13,N/A,N/A,26,85,20,31,30,14,5,2.53\r\n,Phoenix Academy,Apple Valley Unified,San Bernardino,729,2,20,1,1,1,48,1,27,2,87,10,0,12,8,15,25,24,30,89,23,34,32,10,2,2.33\r\n,Palmetto Elementary,Fontana Unified,San Bernardino,729,2,3,0,1,0,89,0,7,0,100,3,0,41,12,17,25,30,N/A,93,22,41,23,9,4,2.32\r\n,Henry J. Kaiser High,Fontana Unified,San Bernardino,729,4,7,0,1,1,84,0,6,0,71,8,0,19,35,11,N/A,N/A,28,88,28,35,21,13,3,2.29\r\n,Audubon Middle,Los Angeles Unified,Los Angeles,729,2,62,0,0,0,36,0,0,0,100,10,0,12,13,17,N/A,26,21,33,27,37,24,10,3,2.26\r\n,,Woodlake Union Elementary,Tulare,729,B,0,0,1,0,89,0,10,0,100,11,18,50,9,4,21,27,25,42,34,29,24,7,5,2.2\r\n,James Rutter Middle,Elk Grove Unified,Sacramento,729,2,17,0,32,2,35,2,9,2,100,3,0,28,26,11,N/A,N/A,26,89,28,39,20,9,3,2.18\r\n,Harry Wirtz Elementary,Paramount Unified,Los Angeles,729,2,7,0,2,0,90,0,2,0,96,2,0,53,15,8,29,27,N/A,87,36,34,17,8,4,2.1\r\n,Washington Elementary,Merced River Union Elementary,Merced,729,2,0,0,0,0,72,0,26,1,82,0,4,37,26,15,N/A,2,1,100,39,32,19,5,4,2.03\r\n,Davidson Elementary,San Bernardino City Unified,San Bernardino,729,2,13,1,1,1,80,0,5,1,96,4,0,33,8,9,25,31,N/A,74,31,44,18,5,1,2\r\n,Alexandria Avenue Elementary,Los Angeles Unified,Los Angeles,729,2,2,0,4,4,89,0,1,0,94,8,1,53,21,13,22,23,N/A,88,43,31,17,8,1,1.93\r\n,Norwood Street Elementary,Los Angeles Unified,Los Angeles,729,2,3,0,0,0,97,0,0,0,100,9,0,42,20,13,19,18,N/A,88,47,36,13,3,1,1.76\r\n,,Westside Elementary,Fresno,729,B,1,0,0,0,98,0,1,0,99,5,18,52,32,12,2,5,6,99,83,16,1,1,0,1.19\r\n,Morse High,San Diego Unified,San Diego,728,4,16,0,2,43,31,2,2,3,70,18,0,14,24,10,N/A,N/A,30,89,9,26,32,28,5,2.93\r\n,,Hope Elementary,Tulare,728,B,0,3,1,1,45,0,46,2,66,0,0,26,1,5,22,23,N/A,89,17,22,40,12,9,2.72\r\n,Hope Elementary,Hope Elementary,Tulare,728,2,0,3,1,1,45,0,46,2,66,0,0,26,1,5,22,23,N/A,89,17,22,40,12,9,2.72\r\n,White Rock Elementary,Folsom-Cordova Unified,Sacramento,728,2,14,0,11,1,35,0,35,3,86,1,0,47,13,13,28,30,N/A,88,18,27,31,16,8,2.7\r\n,Davis Elementary,Lodi Unified,San Joaquin,728,2,3,1,27,1,43,0,22,0,83,7,2,30,7,11,20,25,N/A,83,17,40,20,14,9,2.58\r\n,,Oakland Unified,Alameda,728,B,32,0,15,1,38,1,9,2,57,29,0,28,18,11,22,25,23,53,29,26,19,14,12,2.55\r\n,Sierra-Enterprise Elementary,Elk Grove Unified,Sacramento,728,2,19,1,19,1,34,1,21,4,100,0,0,32,7,24,20,23,N/A,76,15,45,22,13,5,2.48\r\n,Houston,Lodi Unified,San Joaquin,728,2,0,0,3,1,53,0,42,0,73,12,4,23,14,19,14,14,21,79,21,33,29,11,6,2.46\r\n,Salida Elementary,Salida Union Elementary,Stanislaus,728,2,3,0,2,1,71,0,20,1,73,2,2,45,6,14,26,30,N/A,94,21,32,30,13,4,2.46\r\n,Caruthers High,Caruthers Unified,Fresno,728,4,2,0,7,0,74,0,17,0,86,3,16,21,35,8,N/A,N/A,27,74,33,26,25,10,6,2.3\r\n,Theodore Vick Elementary,Adelanto Elementary,San Bernardino,728,2,18,0,1,0,66,0,9,5,100,7,0,26,9,10,32,32,34,98,25,42,20,8,6,2.28\r\n,Sierra Elementary,Lancaster Elementary,Los Angeles,728,2,30,1,1,2,51,0,14,1,87,5,1,23,2,11,27,28,N/A,100,28,33,27,10,2,2.27\r\n,Seaside High,Monterey Peninsula Unified,Monterey,728,4,12,0,6,6,58,4,11,3,71,3,0,21,31,10,N/A,N/A,27,99,34,30,18,14,4,2.23\r\n,Hamilton Elementary,Hemet Unified,Riverside,728,2,0,7,0,0,38,0,54,0,80,1,0,13,4,13,26,29,27,100,27,40,21,8,4,2.23\r\n,Euclid Avenue Elementary,Los Angeles Unified,Los Angeles,728,2,0,0,0,0,99,0,0,0,91,9,1,40,23,9,19,21,N/A,66,32,34,19,11,5,2.22\r\n,,Montebello Unified,Los Angeles,728,B,0,0,2,0,95,0,2,0,85,11,0,25,36,11,27,27,21,84,33,36,19,9,4,2.15\r\n,Sequoia Middle,Fontana Unified,San Bernardino,728,2,3,0,0,0,92,0,3,0,87,8,0,32,36,11,N/A,N/A,28,89,34,35,18,8,4,2.13\r\n,Woodlake High,Woodlake Union High,Tulare,728,4,1,0,0,0,81,0,17,0,100,5,15,23,29,5,N/A,N/A,30,61,42,24,21,8,5,2.08\r\n,Cathedral City High,Palm Springs Unified,Riverside,728,4,2,0,1,2,82,0,12,0,79,7,0,20,45,8,N/A,N/A,28,97,35,34,21,7,2,2.07\r\n,Lugo Elementary,Lynwood Unified,Los Angeles,728,2,3,0,0,0,96,0,0,0,73,6,1,56,16,16,28,25,N/A,83,30,43,21,4,2,2.06\r\n,Joseph A. Gascon Elementary,Montebello Unified,Los Angeles,728,2,0,0,0,0,100,0,0,0,100,10,0,45,33,10,26,28,N/A,99,38,40,13,7,3,1.96\r\n,Joyner Elementary,San Diego Unified,San Diego,728,2,9,0,10,0,78,0,2,2,100,24,0,62,18,9,23,29,N/A,88,42,34,13,9,2,1.93\r\n,Holtville High,Holtville Unified,Imperial,728,4,0,0,0,0,88,0,11,0,99,5,22,30,31,9,N/A,N/A,28,2,57,14,14,14,0,1.86\r\n,McKinley Elementary,Franklin-McKinley Elementary,Santa Clara,728,2,1,0,8,2,88,0,1,0,95,19,15,70,16,12,23,29,N/A,98,39,45,10,4,2,1.84\r\n,Robert F. Kennedy Elementary,Compton Unified,Los Angeles,728,2,16,0,0,0,83,0,0,0,89,3,0,55,14,10,29,29,N/A,87,54,25,16,3,1,1.73\r\n,Bell Gardens Intermediate,Montebello Unified,Los Angeles,728,2,0,0,0,0,99,0,0,0,99,10,0,27,50,10,N/A,23,22,85,48,37,10,3,2,1.73\r\n,Frank Paul Elementary,Alisal Union,Monterey,728,2,0,0,0,1,98,0,1,0,99,1,8,78,14,9,28,32,N/A,88,58,27,7,4,4,1.7\r\n,Miramonte Elementary,Mountain View Elementary,Los Angeles,728,2,0,1,4,0,95,0,0,0,100,1,2,69,13,10,30,32,N/A,100,47,42,8,2,1,1.68\r\n,Mario G. Olmos Elementary,Fresno Unified,Fresno,728,2,5,0,18,0,74,0,2,0,100,1,6,51,15,8,27,28,N/A,94,51,35,12,2,0,1.65\r\n,La Paz Middle,Salinas Union High,Monterey,728,2,0,0,0,2,97,0,1,0,76,8,13,47,42,7,N/A,N/A,21,69,65,21,9,2,3,1.57\r\n,Westside Elementary,Westside Elementary,Fresno,728,2,1,0,0,0,98,0,1,0,99,5,18,52,33,10,2,5,1,99,83,16,1,0,0,1.17\r\nD,South Sutter Charter,Marcum-Illinois Union Elementa,Sutter,727,1,4,1,2,1,13,0,74,5,47,0,0,3,6,6,16,16,2,99,2,12,32,30,24,3.6\r\nD,California Virtual Academy @ Kern,Maricopa Unified,Kern,727,1,5,2,3,1,24,1,65,0,40,0,0,0,0,11,1,1,4,91,2,24,37,24,13,3.21\r\nD,Nubia Leadership Academy,San Diego Unified,San Diego,727,1,80,0,1,0,14,1,0,5,81,5,0,6,0,15,17,14,N/A,81,4,18,51,20,7,3.09\r\n,,Raymond-Knowles Union Elementa,Madera,727,B,11,6,0,5,10,0,68,0,71,0,0,0,0,14,,,,2,0,0,100,0,0,3\r\nD,Summit Leadership Academy-High Desert,Hesperia Unified,San Bernardino,727,4,9,0,2,1,54,0,33,0,20,0,0,10,11,8,N/A,N/A,17,94,17,22,38,15,8,2.74\r\n,Alexander Hamilton Senior High,Los Angeles Unified,Los Angeles,727,4,24,0,4,1,51,0,17,0,58,27,0,10,30,11,N/A,N/A,28,51,22,27,22,18,12,2.72\r\n,,Oroville Union High,Butte,727,B,4,7,18,0,18,0,51,1,58,2,1,10,14,13,N/A,N/A,25,85,19,31,31,15,5,2.56\r\n,Baechtel Grove Middle,Willits Unified,Mendocino,727,2,1,6,2,0,31,1,57,1,73,10,12,9,13,17,N/A,21,22,92,14,37,36,10,4,2.53\r\n,,Pioneer Union Elementary,Butte,727,B,2,16,0,0,16,0,64,2,88,6,0,0,0,10,6,9,9,96,10,42,38,8,2,2.5\r\n,Berry Creek Elementary,Pioneer Union Elementary,Butte,727,1,2,16,0,0,14,0,65,2,88,6,0,0,0,8,6,9,9,98,10,42,38,8,2,2.5\r\n,,Pajaro Valley Unified,Santa Cruz,727,B,1,0,1,1,79,0,18,0,72,13,9,43,22,13,24,26,26,67,33,22,17,18,9,2.47\r\n,Wilmer Amina Carter High,Rialto Unified,San Bernardino,727,4,22,1,1,1,66,0,8,1,68,16,0,12,16,8,N/A,N/A,24,85,23,30,29,14,4,2.46\r\n,Herbert Hoover Middle,Merced City Elementary,Merced,727,2,5,0,6,1,66,0,20,2,82,6,4,15,20,9,N/A,30,31,100,24,30,30,9,7,2.44\r\n,John Gill Elementary,Redwood City Elementary,San Mateo,727,1,4,0,2,2,69,1,20,1,65,4,1,45,17,13,28,4,N/A,99,33,26,19,12,11,2.41\r\n,Golden Poppy Elementary,Palmdale Elementary,Los Angeles,727,1,24,1,1,1,65,0,5,2,82,7,1,31,10,11,24,30,N/A,95,23,35,26,9,6,2.41\r\n,Orangewood Elementary,Edison Elementary,Kern,727,1,4,0,0,0,82,0,14,0,93,0,3,41,11,5,25,31,N/A,89,28,38,22,10,3,2.22\r\n,Barbara Spratling Middle,Keyes Union,Stanislaus,727,2,0,0,2,0,75,1,20,0,99,0,13,31,24,15,N/A,24,24,83,26,39,24,7,3,2.22\r\n,Shirley Lane Elementary,Fairfax Elementary,Kern,727,1,4,0,2,0,87,0,5,0,87,11,11,51,11,11,23,26,N/A,93,28,40,20,9,3,2.2\r\n,,Borrego Springs Unified,San Diego,727,B,2,0,0,0,78,0,18,2,86,10,10,41,28,10,22,20,10,92,31,38,17,9,4,2.16\r\n,Sequoia Elementary,Richland Union Elementary,Kern,727,1,1,0,3,0,83,0,13,0,92,9,7,34,11,11,27,27,N/A,97,29,43,15,8,4,2.14\r\n,Empire Elementary,Empire Union Elementary,Stanislaus,727,1,2,1,1,1,69,0,26,0,94,4,3,37,11,13,22,25,22,85,30,41,20,7,4,2.14\r\n,Samuel Jackman Middle,Elk Grove Unified,Sacramento,727,2,29,1,17,3,38,4,4,4,100,2,0,24,23,12,N/A,N/A,28,92,30,38,22,7,3,2.14\r\n,Manzanita Community,Oakland Unified,Alameda,727,1,28,0,23,0,44,0,3,1,47,18,0,43,11,16,19,19,N/A,41,43,22,18,15,2,2.11\r\n,Fremont Elementary,Antioch Unified,Contra Costa,727,1,18,3,0,1,65,1,11,0,94,2,0,43,6,8,27,27,N/A,67,31,41,17,8,3,2.11\r\n,Monroe Elementary,Stockton Unified,San Joaquin,727,1,12,4,14,2,66,0,2,0,99,4,4,37,20,2,19,21,21,87,22,56,14,5,3,2.11\r\n,Lincoln Elementary,Manteca Unified,San Joaquin,727,1,4,1,3,1,67,0,23,1,86,2,3,23,16,15,28,30,29,98,29,42,19,9,1,2.1\r\n,Ball Junior High,Anaheim Union High,Orange,727,2,3,0,8,2,78,1,8,0,87,13,0,31,40,11,N/A,N/A,34,9,37,31,19,13,1,2.1\r\n,Conway Elementary,Escondido Union,San Diego,727,1,4,1,3,2,75,0,15,0,79,7,1,59,4,14,24,29,N/A,80,36,31,23,7,3,2.09\r\n,,San Bernardino City Unified,San Bernardino,727,B,14,1,2,0,72,1,9,1,96,10,0,30,19,10,23,27,19,73,38,32,19,7,4,2.08\r\n,Winter Gardens Elementary,Montebello Unified,Los Angeles,727,1,0,2,0,0,98,1,0,0,100,6,0,50,30,9,17,22,N/A,85,45,30,15,6,4,1.94\r\n,Tierra Vista Elementary,Ocean View,Ventura,727,1,2,0,1,6,87,0,3,0,100,5,4,66,2,5,24,28,N/A,99,49,22,18,8,3,1.94\r\n,Bing Wong Elementary,San Bernardino City Unified,San Bernardino,727,1,13,1,2,1,76,0,4,1,96,10,0,46,11,7,27,30,N/A,61,44,34,16,3,3,1.87\r\n,Robert J. Frank Intermediate,Oxnard,Ventura,727,2,1,0,1,3,93,0,2,0,79,2,1,32,36,9,N/A,N/A,21,96,52,27,13,6,2,1.8\r\n,Social Justice Humanitas Academy at Vall,Los Angeles Unified,Los Angeles,727,4,4,0,0,0,95,0,1,0,89,11,0,19,49,8,N/A,N/A,29,54,47,34,13,5,1,1.78\r\n,Mark Twain Junior High,Modesto City Elementary,Stanislaus,727,2,1,1,9,1,76,1,7,1,94,13,2,31,29,14,N/A,N/A,26,92,41,44,11,2,1,1.78\r\n,Chualar Elementary,Chualar Union,Monterey,727,1,0,0,0,0,99,0,1,0,83,3,15,69,23,8,19,24,20,94,53,34,9,3,0,1.63\r\n,Martin Luther King Elementary,Compton Unified,Los Angeles,727,1,14,0,0,0,86,0,0,0,86,2,0,52,18,5,18,23,N/A,88,57,27,13,2,0,1.61\r\n,Vermont Elementary,San Bernardino City Unified,San Bernardino,727,1,2,2,1,0,92,0,2,0,96,9,0,60,17,2,19,23,N/A,80,60,31,7,1,2,1.54\r\n,George Washington Elementary,Madera Unified,Madera,727,1,1,0,0,0,97,0,2,0,99,0,12,66,18,3,30,31,N/A,100,75,18,5,1,1,1.34\r\nD,Community School for Creative Education,Alameda County Office of Educa,Alameda,726,1,26,0,6,0,23,0,26,16,42,0,0,13,0,13,16,N/A,N/A,90,0,11,32,36,21,3.68\r\n,Merrill F. West High,Tracy Joint Unified,San Joaquin,726,4,8,1,10,6,49,2,22,1,49,2,0,15,24,9,N/A,N/A,27,80,19,23,24,23,10,2.81\r\nY,Joe Serna Jr. Charter,Lodi Unified,San Joaquin,726,1,2,0,4,0,66,0,25,0,68,9,2,49,8,5,19,20,26,88,28,20,17,16,19,2.77\r\n,,Meridian Elementary,Sutter,726,B,0,0,0,0,46,2,5,0,73,21,3,17,3,11,1,N/A,N/A,81,14,33,31,8,14,2.75\r\n,Joshua Cowell Elementary,Manteca Unified,San Joaquin,726,1,10,3,9,4,43,1,27,2,61,2,1,18,10,13,26,28,34,96,12,39,25,20,4,2.65\r\nD,Excel Prep Charter,San Bernardino City Unified,San Bernardino,726,1,81,0,2,0,10,0,4,0,98,0,0,0,0,4,,,,94,18,27,42,9,4,2.56\r\n,Vista Colorado Elementary,Needles Unified,San Bernardino,726,1,2,17,1,0,20,1,57,2,70,0,0,0,0,17,20,28,N/A,92,13,36,38,11,2,2.54\r\n,Daniel Webster Middle,Los Angeles Unified,Los Angeles,726,2,27,0,1,1,60,0,10,1,76,10,0,15,25,20,N/A,21,18,56,29,24,22,20,5,2.49\r\n,Rio Tierra Junior High,Twin Rivers Unified,Sacramento,726,2,16,1,10,1,57,2,9,4,80,21,0,23,22,16,N/A,29,25,94,24,33,31,9,3,2.34\r\n,,Fresno Unified,Fresno,726,B,10,1,12,0,64,0,12,0,91,11,2,22,17,10,24,25,23,82,30,30,26,8,6,2.3\r\n,Gifford C. Cole Middle,Eastside Union Elementary,Los Angeles,726,2,26,1,1,1,59,0,11,1,77,8,1,18,18,11,N/A,24,30,93,28,31,27,10,3,2.29\r\n,Mesquite Elementary,Palmdale Elementary,Los Angeles,726,1,18,0,0,1,71,0,7,1,91,5,1,31,11,11,27,27,N/A,95,28,33,27,8,3,2.25\r\n,Emerald Middle,Cajon Valley Union,San Diego,726,2,9,0,2,1,37,1,46,1,83,6,0,44,16,14,N/A,31,29,91,27,39,22,10,2,2.21\r\n,Daisy Gibson Elementary,Keppel Union Elementary,Los Angeles,726,1,6,0,0,1,86,0,6,0,89,1,4,46,10,11,22,30,N/A,72,35,32,18,9,6,2.19\r\n,Bessie E. Owens Primary,Bakersfield City,Kern,726,1,10,1,2,1,78,0,7,2,89,26,9,38,13,7,21,N/A,N/A,82,35,33,18,8,6,2.17\r\n,Lincoln (Abraham) Elementary,Anaheim City,Orange,726,1,1,0,1,1,94,1,2,0,93,18,0,54,28,13,26,28,N/A,19,36,34,18,5,8,2.16\r\n,Del Mar Elementary,Fresno Unified,Fresno,726,1,10,0,8,0,68,0,12,0,100,1,1,22,12,9,26,24,N/A,73,27,38,28,5,2,2.15\r\n,Badger Springs Middle,Moreno Valley Unified,Riverside,726,2,15,0,1,1,75,1,6,1,85,7,1,23,30,13,N/A,23,23,85,29,38,25,7,1,2.14\r\n,David L. Greenberg Elementary,Fresno Unified,Fresno,726,1,13,0,17,1,63,1,5,0,100,2,2,35,19,16,20,24,N/A,74,38,29,23,6,4,2.09\r\n,Seaside Middle,Monterey Peninsula Unified,Monterey,726,2,8,0,2,4,70,2,9,3,82,4,0,33,27,15,N/A,28,32,100,43,27,16,11,4,2.06\r\n,Rockwood Elementary,Calexico Unified,Imperial,726,1,0,0,0,0,99,0,1,0,99,2,15,76,16,10,18,20,N/A,97,42,26,20,7,4,2.05\r\n,,Cuyama Joint Unified,Santa Barbara,726,B,0,1,0,0,78,0,17,1,77,0,5,54,12,11,18,16,15,75,39,30,21,4,4,2.04\r\n,Sunkist Elementary,Bassett Unified,Los Angeles,726,1,1,0,1,2,94,0,1,0,90,4,0,46,7,11,22,28,N/A,86,34,38,18,8,1,2.03\r\n,Berlyn Elementary,Ontario-Montclair Elementary,San Bernardino,726,1,2,0,0,0,91,1,3,1,86,4,0,57,6,6,19,22,N/A,98,40,31,20,6,3,2.01\r\n,Susan B. Anthony Elementary,Fresno Unified,Fresno,726,1,10,1,9,1,74,0,5,0,100,1,1,25,11,10,21,25,N/A,80,40,34,20,5,1,1.94\r\n,E. P. Foster Elementary,Ventura Unified,Ventura,726,1,1,1,1,0,90,0,7,1,100,5,2,66,4,4,23,27,N/A,95,42,34,18,4,2,1.91\r\n,Mathew J Brletic Elementary,Parlier Unified,Fresno,726,1,0,0,2,0,97,0,0,0,96,0,23,58,5,5,28,29,N/A,90,47,30,16,5,1,1.84\r\n,McKinley Avenue Elementary,Los Angeles Unified,Los Angeles,726,1,19,0,0,0,81,0,0,0,100,3,0,40,26,9,20,23,N/A,35,46,32,15,4,3,1.84\r\n,Bradley Elementary,San Bernardino City Unified,San Bernardino,726,1,11,0,1,1,83,0,3,1,95,5,0,49,8,6,18,22,N/A,70,43,38,13,5,1,1.83\r\n,Pacoima Middle,Los Angeles Unified,Los Angeles,726,2,1,1,1,1,94,0,3,0,86,12,0,23,38,11,N/A,25,22,84,49,31,14,4,2,1.81\r\n,,Lamont Elementary,Kern,726,B,0,0,0,0,98,0,2,0,84,13,20,58,18,8,22,26,25,97,57,24,11,5,3,1.74\r\n,McFarland Middle,McFarland Unified,Kern,726,2,0,0,0,0,97,0,2,0,100,6,8,35,35,9,N/A,24,26,100,58,22,14,5,1,1.7\r\n,,Chualar Union,Monterey,726,B,0,0,0,0,99,0,1,0,83,3,15,68,23,8,19,24,20,94,54,34,9,3,0,1.63\r\n,Christopher Dena Elementary,Los Angeles Unified,Los Angeles,726,1,1,0,0,0,99,0,0,0,100,3,0,43,37,7,21,24,N/A,86,60,31,6,2,1,1.55\r\n,Martin Luther King Jr. Middle,Madera Unified,Madera,726,2,3,0,1,0,91,0,4,0,96,13,16,28,41,9,N/A,N/A,20,100,64,23,10,3,1,1.54\r\n,Fairlawn Elementary,Santa Maria-Bonita,Santa Barbara,726,1,0,0,0,3,97,0,0,0,100,3,25,76,14,5,29,29,N/A,100,80,15,3,1,0,1.26\r\n,Special Education,El Dorado County Office of Edu,El Dorado,725,C,1,1,3,1,9,0,82,0,32,0,0,3,0,100,N/A,6,N/A,63,2,14,35,39,11,3.42\r\nD,Life Source International Charter,Lancaster Elementary,Los Angeles,725,1,62,1,0,0,26,0,4,1,51,0,0,13,2,3,18,N/A,N/A,93,11,29,33,20,7,2.85\r\n,Potter Valley High,Potter Valley Community Unifie,Mendocino,725,4,0,9,0,1,21,0,69,0,65,0,1,1,9,9,N/A,N/A,12,94,9,22,55,11,3,2.77\r\n,Campo Elementary,Mountain Empire Unified,San Diego,725,1,0,1,0,0,32,0,6,0,65,0,0,12,2,21,21,20,N/A,97,10,34,34,15,7,2.75\r\n,,Vallejo City Unified,Solano,725,B,30,0,3,18,32,2,9,3,62,6,0,15,14,11,25,29,25,92,13,30,32,20,5,2.72\r\n,Buena Vista/ Horace Mann K-8,San Francisco Unified,San Francisco,725,1,6,1,2,1,72,0,12,2,70,10,3,46,17,15,20,22,18,73,22,34,15,15,14,2.65\r\n,Lathrop High,Manteca Unified,San Joaquin,725,4,9,1,10,15,47,1,16,1,62,6,0,10,29,8,N/A,N/A,25,89,15,37,27,18,2,2.56\r\n,Hoover Elementary,Stockton Unified,San Joaquin,725,1,11,4,10,3,53,0,18,0,83,5,0,14,9,15,24,28,25,87,17,39,32,10,2,2.41\r\n,Southwest Senior High,Sweetwater Union High,San Diego,725,4,1,0,0,3,92,0,2,0,71,11,0,42,35,11,N/A,N/A,30,89,28,30,24,13,5,2.35\r\n,Monterey Park Elementary,Salinas City Elementary,Monterey,725,1,1,0,1,2,83,0,11,0,77,6,8,41,9,16,23,30,N/A,99,27,33,26,9,5,2.32\r\n,Allendale Elementary,Oakland Unified,Alameda,725,1,37,0,12,5,41,0,2,2,87,23,0,37,12,6,25,31,N/A,50,28,32,28,7,5,2.28\r\n,Malcolm X Academy,San Francisco Unified,San Francisco,725,1,64,0,2,4,9,18,0,0,95,13,0,4,0,5,20,13,N/A,77,21,42,33,2,2,2.23\r\n,,Salinas Union High,Monterey,725,B,2,0,1,4,83,0,9,0,57,5,11,29,35,8,N/A,N/A,22,81,37,29,18,10,5,2.18\r\n,,Corcoran Joint Unified,Kings,725,B,3,0,0,0,87,0,8,0,85,3,5,28,17,9,27,28,23,88,34,30,24,10,3,2.17\r\n,Munsey Elementary,Bakersfield City,Kern,725,1,20,1,1,1,64,0,12,1,96,0,4,20,14,10,20,21,N/A,62,28,39,24,5,4,2.17\r\n,El Sereno Middle,Los Angeles Unified,Los Angeles,725,2,1,0,6,1,91,0,1,0,100,15,1,16,35,14,N/A,19,22,64,32,35,21,10,3,2.17\r\n,Mary B. Lewis Elementary,Colton Joint Unified,San Bernardino,725,1,4,1,0,0,88,0,7,0,92,11,0,48,13,11,20,29,N/A,93,33,36,23,6,2,2.07\r\n,Azusa High,Azusa Unified,Los Angeles,725,4,1,0,1,1,91,0,4,1,78,9,2,18,35,11,N/A,N/A,29,97,37,30,24,5,3,2.06\r\n,Eisenhower Senior High,Rialto Unified,San Bernardino,725,4,14,0,1,0,80,1,3,1,83,11,0,21,24,9,N/A,N/A,24,87,40,31,20,7,2,2\r\n,Madison Middle,Oakland Unified,Alameda,725,2,28,0,1,0,69,2,0,0,57,32,0,32,31,12,N/A,26,21,31,43,32,11,13,1,1.96\r\n,Farmersville Junior High,Farmersville Unified,Tulare,725,2,0,0,0,0,94,0,5,0,81,2,6,27,42,4,N/A,23,22,95,49,28,16,6,1,1.83\r\n,Winchell Elementary,Fresno Unified,Fresno,725,1,3,1,5,0,89,0,2,0,100,11,1,40,16,9,28,26,N/A,81,44,35,15,4,2,1.83\r\n,Estrella Elementary,Los Angeles Unified,Los Angeles,725,1,6,0,0,0,93,0,0,0,100,3,0,52,27,10,20,23,N/A,71,50,39,7,2,2,1.66\r\n,Wells Middle,Alvord Unified,Riverside,725,2,1,0,1,0,93,0,4,0,90,5,0,62,15,11,N/A,29,29,98,56,28,12,3,1,1.64\r\n,Miller (Isaac) Elementary,Santa Maria-Bonita,Santa Barbara,725,1,1,0,0,1,88,0,10,0,100,6,13,52,9,7,28,30,N/A,100,53,34,10,2,1,1.64\r\n,,Terra Bella Union Elementary,Tulare,725,B,0,0,0,0,95,0,3,0,98,5,4,59,30,6,22,25,N/A,99,72,20,7,0,1,1.38\r\n,Winter Gardens Elementary,Lakeside Union Elementary,San Diego,724,1,3,1,1,1,39,0,53,2,60,2,0,21,3,19,23,33,N/A,96,8,31,39,14,7,2.81\r\n,Van Duzen Elementary,Southern Trinity Joint Unified,Trinity,724,1,0,6,0,0,6,0,85,0,79,15,0,0,0,13,16,20,N/A,62,3,48,34,3,10,2.69\r\n,Burton (Phillip and Sala) Academic High,San Francisco Unified,San Francisco,724,4,11,0,35,23,22,4,2,2,68,16,0,21,33,10,N/A,N/A,26,65,17,32,23,25,4,2.66\r\n,,Willits Unified,Mendocino,724,B,0,7,1,0,26,0,62,1,67,7,11,10,8,13,19,19,19,91,14,34,36,11,5,2.59\r\n,John Cabrillo Elementary,Sacramento City Unified,Sacramento,724,1,39,2,4,0,37,2,9,6,86,5,0,17,5,21,23,30,N/A,78,18,36,27,11,8,2.55\r\n,San Bernardino County Special Education,San Bernardino County Office o,San Bernardino,724,C,16,1,3,1,50,1,26,1,74,0,0,11,10,100,9,9,N/A,91,17,38,27,14,4,2.5\r\n,Orestimba High,Newman-Crows Landing Unified,Stanislaus,724,4,2,0,1,0,70,0,26,1,61,11,2,27,21,9,N/A,N/A,26,85,29,26,28,11,6,2.4\r\n,Leontine Gracey Elementary,Merced City Elementary,Merced,724,1,4,0,11,0,76,1,5,2,91,0,2,53,1,8,24,31,N/A,84,28,27,29,12,4,2.36\r\n,,Colusa Unified,Colusa,724,B,1,3,1,0,63,0,31,0,66,2,8,26,22,15,20,26,23,99,27,32,25,12,4,2.34\r\n,Del Paso Heights Elementary,Twin Rivers Unified,Sacramento,724,1,18,1,29,1,31,6,8,5,89,11,0,44,6,9,26,30,N/A,51,22,39,31,6,2,2.27\r\n,Oak Manor Elementary,Ukiah Unified,Mendocino,724,1,1,15,1,0,55,0,28,0,84,2,18,40,8,15,25,24,N/A,98,32,30,29,4,5,2.21\r\n,Nicholas Elementary,Sacramento City Unified,Sacramento,724,1,19,0,19,0,50,1,4,5,100,5,1,39,15,7,25,32,N/A,93,30,37,20,6,6,2.21\r\n,Farmdale Elementary,Los Angeles Unified,Los Angeles,724,1,0,0,5,0,94,0,0,0,100,4,1,44,14,25,15,13,N/A,92,35,26,25,13,2,2.2\r\n,Robert E. Peary Middle,Los Angeles Unified,Los Angeles,724,2,26,1,3,2,65,1,1,0,85,14,0,15,29,11,N/A,21,21,51,34,31,21,11,3,2.18\r\n,Kermit McKenzie Junior High,Guadalupe Union Elementary,Santa Barbara,724,2,1,0,0,3,93,0,2,0,98,9,18,24,35,10,N/A,24,25,88,39,32,19,5,4,2.04\r\n,McKinley Elementary,Compton Unified,Los Angeles,724,1,38,0,0,1,59,1,1,0,83,2,0,33,10,17,17,19,N/A,92,38,31,25,3,3,2.03\r\n,Bemis Elementary,Rialto Unified,San Bernardino,724,1,12,0,1,0,84,0,3,0,89,12,0,38,9,9,25,28,N/A,89,38,32,20,8,2,2.03\r\n,Gladstone High,Azusa Unified,Los Angeles,724,4,1,0,1,2,92,0,4,1,76,11,2,20,35,9,N/A,N/A,30,97,38,33,20,6,3,2.02\r\n,South Gate Middle,Los Angeles Unified,Los Angeles,724,2,0,0,0,0,99,0,0,0,100,11,1,20,39,10,N/A,30,29,62,37,35,20,5,3,2.02\r\n,Manzanita Elementary,Palmdale Elementary,Los Angeles,724,1,19,1,0,2,73,0,5,0,94,6,1,37,10,16,27,24,1,95,41,32,20,5,2,1.96\r\n,,Baker Valley Unified,San Bernardino,724,B,0,1,0,0,81,0,17,0,69,0,0,41,5,9,25,26,11,75,34,50,10,2,4,1.92\r\n,Center Middle,Azusa Unified,Los Angeles,724,2,1,1,1,2,92,0,3,0,85,8,4,31,28,14,N/A,29,26,94,44,31,19,4,2,1.9\r\n,Elizabeth Learning Center,Los Angeles Unified,Los Angeles,724,4,1,0,0,0,98,0,1,0,100,5,0,31,42,10,17,23,27,74,41,37,14,6,2,1.9\r\n,Cedar Lane Elementary,Marysville Joint Unified,Yuba,724,1,2,3,21,0,43,0,30,1,96,2,4,45,8,13,20,22,N/A,71,44,32,19,3,2,1.88\r\n,Roosevelt Middle,Compton Unified,Los Angeles,724,2,16,0,0,0,82,1,0,0,88,9,0,28,46,8,N/A,30,26,86,50,27,16,5,2,1.82\r\n,Cesar E. Chavez Elementary,West Contra Costa Unified,Contra Costa,724,1,8,0,2,0,89,0,2,0,89,3,0,65,13,11,22,31,N/A,84,55,37,6,2,0,1.57\r\nY,Eleanor Roosevelt Community Learning Cen,Tulare County Office of Educat,Tulare,723,1,2,1,1,1,22,0,73,1,46,0,0,1,1,9,,,,99,1,14,44,26,15,3.39\r\n,Oakland Technical High,Oakland Unified,Alameda,723,4,36,1,19,1,18,1,22,2,56,29,0,9,18,8,N/A,N/A,27,78,16,22,19,24,19,3.09\r\nD,Plumas Charter 146,Plumas Unified,Plumas,723,4,0,4,0,0,12,0,69,13,82,0,0,1,1,15,4,3,2,92,5,28,43,17,6,2.91\r\n,Sonoma Valley High,Sonoma Valley Unified,Sonoma,723,4,1,0,2,0,45,0,51,0,45,0,0,14,27,9,N/A,N/A,26,94,27,16,21,23,13,2.8\r\n,Mira Vista Elementary,West Contra Costa Unified,Contra Costa,723,1,27,0,10,1,36,0,19,5,57,8,0,25,13,20,22,31,27,92,12,40,17,21,11,2.79\r\n,La Merced Elementary,Montebello Unified,Los Angeles,723,1,0,1,1,1,91,0,5,0,65,3,0,29,14,10,30,29,N/A,93,15,29,28,21,7,2.75\r\n,,Mountain Empire Unified,San Diego,723,B,0,1,0,0,47,0,12,1,62,4,0,24,4,12,16,14,11,97,18,33,30,14,6,2.57\r\n,Potter Valley Junior High,Potter Valley Community Unifie,Mendocino,723,2,0,5,0,0,33,0,63,0,67,0,7,12,14,19,N/A,N/A,16,95,20,34,27,12,7,2.54\r\nD,MIT Academy,Vallejo City Unified,Solano,723,4,20,0,2,13,51,0,11,0,53,0,0,9,31,3,N/A,N/A,29,97,24,26,30,18,2,2.47\r\n,Ukiah High,Ukiah Unified,Mendocino,723,4,1,5,1,1,41,0,49,1,54,10,12,12,23,12,N/A,N/A,29,96,28,24,28,13,7,2.47\r\n,Hurd Barrington Elementary,Newman-Crows Landing Unified,Stanislaus,723,1,1,0,1,2,70,0,25,2,57,6,2,45,3,18,28,25,N/A,91,23,33,27,13,5,2.44\r\n,Gould Educational Center,Madera County Office of Educat,Madera,723,C,3,1,1,0,66,0,28,0,75,0,0,36,0,100,7,8,2,32,14,50,18,15,3,2.43\r\n,Woodrow Wilson Middle,Pasadena Unified,Los Angeles,723,2,11,0,4,2,67,0,11,4,79,16,0,14,31,14,N/A,27,22,92,31,27,21,15,7,2.4\r\n,,Willows Unified,Glenn,723,B,1,3,6,0,45,0,44,0,61,0,1,21,19,11,26,28,26,93,24,33,27,13,3,2.39\r\n,Savanna High,Anaheim Union High,Orange,723,4,4,0,7,5,73,1,10,0,76,26,0,30,35,10,N/A,N/A,37,7,28,33,20,14,4,2.33\r\n,Colusa High,Colusa Unified,Colusa,723,4,2,2,0,0,62,0,34,0,57,5,5,13,35,13,N/A,N/A,23,99,31,28,25,12,5,2.32\r\n,Everett Alvarez High,Salinas Union High,Monterey,723,4,2,0,1,5,84,0,8,0,47,3,9,24,41,9,N/A,N/A,20,96,31,30,21,12,5,2.31\r\n,Hillcrest Elementary,San Francisco Unified,San Francisco,723,1,12,0,29,6,46,1,4,2,88,7,1,54,13,16,18,17,N/A,83,22,40,26,10,2,2.29\r\n,Garden Valley Elementary,Twin Rivers Unified,Sacramento,723,1,18,0,6,2,58,3,4,1,85,5,0,49,8,12,26,30,N/A,44,24,38,29,5,4,2.27\r\n,Coalinga Middle,Coalinga-Huron Joint Unified,Fresno,723,2,2,0,1,1,76,0,19,0,78,4,2,38,12,7,N/A,29,27,94,28,34,25,12,2,2.26\r\n,West High,Kern Union High,Kern,723,4,15,1,2,1,62,0,18,1,79,13,2,7,19,9,N/A,N/A,27,90,29,39,21,9,2,2.15\r\n,North Tamarind Elementary,Fontana Unified,San Bernardino,723,1,4,1,1,0,90,1,3,0,100,3,0,47,16,12,23,29,N/A,92,36,37,16,7,3,2.04\r\n,,Richland Union Elementary,Kern,723,B,0,0,1,0,94,0,4,0,96,9,3,41,20,11,26,26,21,92,37,43,13,6,2,1.93\r\n,John F. Kennedy Elementary,Desert Sands Unified,Riverside,723,1,2,0,0,1,95,0,2,0,98,1,1,49,16,12,29,28,N/A,100,45,34,13,5,3,1.88\r\n,Mission Middle,Jurupa Unified,Riverside,723,2,3,0,1,0,89,0,5,0,89,14,0,34,27,12,N/A,N/A,26,97,47,32,14,5,1,1.82\r\n,R. O. Hardin Elementary,Hollister,San Benito,723,1,0,0,0,0,93,0,5,0,99,1,31,58,12,10,29,25,N/A,85,48,29,18,5,0,1.82\r\n,Sylvan Park Elementary,Los Angeles Unified,Los Angeles,723,1,3,0,1,1,94,0,1,0,100,6,0,58,20,10,21,24,N/A,91,45,37,12,5,1,1.81\r\n,,Earlimart Elementary,Tulare,723,B,0,0,0,1,97,0,1,0,100,2,7,71,14,3,23,25,23,48,52,28,11,8,1,1.77\r\n,Ord Terrace Elementary,Monterey Peninsula Unified,Monterey,723,1,4,0,1,4,84,2,2,3,95,1,0,63,14,11,25,31,N/A,99,52,32,10,5,1,1.71\r\n,Harmony Elementary,Los Angeles Unified,Los Angeles,723,1,5,0,0,0,94,0,1,0,100,3,0,53,26,10,21,23,N/A,87,63,25,7,4,1,1.53\r\n,James Monroe Elementary,Santa Rosa City Schools,Sonoma,723,1,1,2,1,0,92,0,2,2,94,3,13,76,12,16,20,28,N/A,94,65,25,6,3,1,1.48\r\nY,Forest Charter,Nevada County Office of Educat,Nevada,722,4,0,2,1,0,6,0,90,0,39,0,0,0,1,11,14,6,3,90,1,13,33,34,19,3.57\r\nD,California Virtual Academy @ Sonoma,Liberty Elementary,Sonoma,722,4,13,1,4,3,15,1,63,0,32,0,0,1,0,10,1,2,8,91,2,22,32,25,19,3.36\r\nY,Mountain Oaks,Calaveras County Office of Edu,Calaveras,722,4,1,2,0,0,16,1,74,6,39,0,0,0,1,14,25,N/A,N/A,96,4,18,53,15,10,3.07\r\n,Maidu High Independent Study,Placer Union High,Placer,722,4,1,3,0,0,10,0,78,7,20,2,0,0,3,3,,,,90,3,35,39,13,10,2.94\r\n,Meridian Elementary,Meridian Elementary,Sutter,722,1,0,0,0,0,45,2,5,0,73,21,3,18,3,10,1,N/A,N/A,82,14,33,31,8,14,2.75\r\n,Cesar Chavez Middle,New Haven Unified,Alameda,722,2,8,0,11,11,55,3,6,5,57,11,4,20,31,11,N/A,36,35,96,18,26,30,19,7,2.72\r\n,Glacier Point Middle,Central Unified,Fresno,722,2,14,1,14,1,55,0,13,1,79,6,1,12,22,11,N/A,N/A,31,93,21,26,32,15,7,2.61\r\n,Rio Linda High,Twin Rivers Unified,Sacramento,722,4,7,1,13,2,35,1,36,1,68,19,0,17,20,13,N/A,N/A,24,82,20,34,27,13,5,2.47\r\n,Wilson Middle,Chowchilla Elementary,Madera,722,2,3,1,2,1,57,0,35,1,79,5,4,16,23,9,N/A,N/A,28,90,25,29,26,13,7,2.47\r\nD,Opportunities for Learning - Santa Clari,William S. Hart Union High,Los Angeles,722,4,12,1,1,1,47,0,33,5,65,0,0,8,7,3,N/A,N/A,1,99,23,28,36,10,4,2.46\r\n,Schurr High,Montebello Unified,Los Angeles,722,4,0,0,8,1,88,0,3,0,73,16,0,13,38,10,N/A,N/A,25,83,27,32,23,14,4,2.37\r\n,San Jacinto High,San Jacinto Unified,Riverside,722,4,8,2,1,1,68,1,18,2,70,8,0,15,27,12,N/A,N/A,33,94,28,30,28,10,5,2.34\r\n,Pueblo Vista Elementary,Napa Valley Unified,Napa,722,1,0,0,0,1,82,0,14,1,73,1,7,48,22,9,23,22,N/A,89,36,30,18,13,4,2.19\r\n,Schafer Park Elementary,Hayward Unified,Alameda,722,1,6,0,5,4,69,6,9,0,84,0,1,44,20,17,28,26,N/A,78,30,38,21,10,2,2.17\r\n,Altimira Middle,Sonoma Valley Unified,Sonoma,722,2,0,0,1,0,70,0,28,0,69,2,0,32,35,14,N/A,26,23,95,43,22,19,11,6,2.15\r\nD,Birmingham Community Charter High,Los Angeles Unified,Los Angeles,722,4,8,0,2,2,79,1,8,0,85,14,0,18,42,12,N/A,N/A,32,94,36,30,21,12,2,2.15\r\n,Mission Elementary,Oceanside Unified,San Diego,722,1,2,0,1,1,90,2,4,0,94,4,9,67,10,14,25,27,N/A,72,43,29,19,4,5,1.98\r\n,Westfield Village Elementary,Washington Unified,Yolo,722,1,6,1,6,1,73,1,12,0,91,0,0,62,5,14,19,20,N/A,94,40,40,13,4,3,1.91\r\n,Baldwin Park High,Baldwin Park Unified,Los Angeles,722,4,1,0,4,1,92,0,1,0,85,7,1,15,41,11,N/A,N/A,19,54,46,38,12,3,0,1.74\r\nD,Family Partnership Home Study Charter,Blochman Union Elementary,Santa Barbara,721,4,2,1,1,0,31,0,64,0,51,0,0,3,1,10,4,2,5,94,6,24,33,26,11,3.11\r\n,Madison High,San Diego Unified,San Diego,721,4,15,1,7,3,43,2,25,3,65,27,0,9,20,16,N/A,N/A,28,88,9,30,32,21,8,2.88\r\n,Washington Elementary,Alameda City Unified,Alameda,721,1,25,0,23,20,17,1,14,1,69,3,0,43,2,19,22,23,N/A,91,10,34,34,21,2,2.71\r\n,Marina High,Monterey Peninsula Unified,Monterey,721,4,12,1,11,5,39,4,24,4,60,3,0,15,22,13,N/A,N/A,22,98,20,29,25,17,9,2.67\r\n,THE Bayside S.T.E.M. ACADEMY,San Mateo-Foster City,San Mateo,721,2,3,0,10,6,52,9,16,3,59,7,0,31,22,17,N/A,25,24,95,21,29,23,17,10,2.66\r\n,,Southern Trinity Joint Unified,Trinity,721,B,0,7,1,0,5,0,85,0,80,19,0,0,0,11,16,20,7,54,5,53,30,3,10,2.6\r\nD,Keiller Leadership Academy,San Diego Unified,San Diego,721,2,23,1,1,3,68,1,3,0,100,0,0,25,27,19,N/A,31,27,71,21,33,18,24,4,2.59\r\n,Happy Camp High,Siskiyou Union High,Siskiyou,721,4,0,48,0,0,6,0,46,0,58,0,0,0,0,29,N/A,N/A,11,71,6,47,38,6,3,2.53\r\n,Patriot High,Jurupa Unified,Riverside,721,4,3,0,2,0,72,1,22,0,61,20,0,19,18,9,N/A,N/A,31,97,22,31,31,11,5,2.46\r\n,Tokay Elementary,Fontana Unified,San Bernardino,721,1,7,0,0,1,86,1,5,0,100,2,0,40,12,12,23,28,N/A,91,23,33,25,16,3,2.44\r\n,John H. Still,Sacramento City Unified,Sacramento,721,1,26,0,38,1,27,3,3,1,100,6,0,40,17,12,24,26,20,82,28,36,19,11,6,2.31\r\n,Green Tree East Elementary,Victor Elementary,San Bernardino,721,1,27,1,1,0,55,0,12,2,76,1,0,18,2,8,31,26,N/A,86,24,37,29,4,5,2.28\r\n,Gardner Elementary,San Jose Unified,Santa Clara,721,1,4,0,1,1,89,1,4,0,82,5,1,63,8,11,27,30,N/A,83,40,25,17,13,5,2.18\r\n,Porter Elementary,San Diego Unified,San Diego,721,1,16,0,2,1,75,2,1,2,100,17,0,63,3,11,20,31,N/A,74,28,42,18,9,3,2.17\r\n,Hagginwood Elementary,Twin Rivers Unified,Sacramento,721,1,21,0,13,0,45,2,14,2,93,6,0,33,4,14,19,20,N/A,67,29,36,26,7,1,2.15\r\n,Johnson Elementary,Cajon Valley Union,San Diego,721,1,17,0,0,3,57,0,20,1,82,5,0,52,8,11,23,33,N/A,87,32,35,25,6,2,2.11\r\n,,Coalinga-Huron Joint Unified,Fresno,721,B,1,0,2,1,82,0,13,0,85,5,4,50,13,8,24,26,26,91,46,22,22,8,2,1.99\r\n,Lexington Elementary,Cajon Valley Union,San Diego,721,1,7,0,2,1,45,1,42,1,95,3,0,70,9,8,23,32,N/A,93,38,38,15,8,1,1.96\r\n,Laurel Elementary,Oceanside Unified,San Diego,721,1,2,0,0,0,94,0,3,0,92,1,4,54,20,16,24,26,N/A,79,44,30,17,6,2,1.93\r\n,Camellia Avenue Elementary,Los Angeles Unified,Los Angeles,721,1,0,0,1,0,98,0,1,0,100,4,0,52,21,10,21,25,N/A,85,44,31,16,6,3,1.93\r\n,Casey Elementary,Rialto Unified,San Bernardino,721,1,6,0,0,0,90,0,3,0,91,12,0,45,15,13,29,29,N/A,89,43,32,18,6,1,1.91\r\n,New Highland Academy,Oakland Unified,Alameda,721,1,16,1,0,0,81,1,1,0,39,60,0,71,9,6,18,20,N/A,44,53,32,8,5,3,1.73\r\nY,Del Vista Math and Science Academy,Delano Union Elementary,Kern,721,1,0,0,0,4,95,0,1,0,85,3,19,63,9,13,21,25,N/A,96,58,24,16,2,0,1.62\r\n,Delores Huerta Elementary,Los Angeles Unified,Los Angeles,721,1,0,0,0,0,99,0,0,0,100,8,0,65,14,9,21,22,N/A,90,63,25,8,2,1,1.53\r\n,Helm Elementary,Golden Plains Unified,Fresno,721,1,1,0,1,0,98,0,0,0,100,0,17,69,15,8,21,24,N/A,100,62,30,6,2,0,1.48\r\n,Sacramento County SH Special Education,Sacramento County Office of Ed,Sacramento,720,C,11,1,12,1,41,1,30,1,50,0,0,14,1,100,10,7,N/A,2,0,0,0,100,0,4\r\nY,Mt. Lassen Charter,Fort Sage Unified,Lassen,720,4,1,4,0,0,7,0,86,0,43,0,0,0,0,9,15,12,4,89,3,33,34,16,14,3.06\r\n,Desert View Independent,Snowline Joint Unified,San Bernardino,720,4,3,1,0,0,33,0,57,0,44,2,0,0,3,12,22,19,18,92,5,30,48,10,7,2.84\r\n,Clairemont High,San Diego Unified,San Diego,720,4,3,0,6,1,52,0,35,3,60,30,0,14,28,18,N/A,N/A,27,85,16,27,23,23,10,2.83\r\n,Sycamore Elementary,Redding Elementary,Shasta,720,1,0,7,3,0,11,1,74,3,78,0,0,5,1,11,25,35,N/A,68,9,26,49,13,3,2.76\r\n,John F. Kennedy Academy,Dinuba Unified,Tulare,720,1,0,0,1,0,94,0,4,0,100,12,6,32,20,5,N/A,25,N/A,91,32,30,20,11,8,2.32\r\n,Kennedy Elementary,Stockton Unified,San Joaquin,720,1,19,2,21,3,48,1,6,0,99,0,1,30,11,13,26,24,28,93,33,31,21,8,7,2.26\r\n,Imogene Garner Hook Junior High,Victor Valley Union High,San Bernardino,720,2,30,1,2,0,57,0,10,1,81,1,0,13,13,13,N/A,N/A,28,72,24,41,26,8,2,2.23\r\n,Allison Elementary,Pomona Unified,Los Angeles,720,1,5,0,1,0,89,0,3,1,87,1,0,36,10,11,26,26,N/A,87,24,40,26,7,2,2.23\r\n,Joe Hamilton Elementary,Del Norte County Unified,Del Norte,720,1,1,15,17,0,14,0,50,2,89,5,0,17,4,26,15,19,N/A,87,23,45,22,8,2,2.22\r\n,Alpha Elementary,Madera Unified,Madera,720,1,2,1,0,0,90,0,6,0,91,4,4,38,12,6,26,36,N/A,97,35,34,23,6,2,2.07\r\n,Mariposa Elementary,Ontario-Montclair Elementary,San Bernardino,720,1,7,0,2,1,86,1,3,1,92,4,0,65,7,11,20,23,N/A,98,35,38,17,7,3,2.05\r\n,Cactus Middle,Palmdale Elementary,Los Angeles,720,2,16,0,0,1,73,0,7,1,88,8,2,20,23,14,N/A,N/A,27,92,41,29,22,7,1,2\r\nY,YouthBuild Charter School of California,Inyo County Office of Educatio,Inyo,720,4,16,0,1,0,70,0,2,5,98,0,0,0,0,0,N/A,N/A,14,54,38,39,12,11,0,1.95\r\n,Marina West Elementary,Oxnard,Ventura,720,1,3,0,1,1,86,0,7,1,86,0,1,46,9,11,29,31,N/A,98,34,48,13,4,1,1.91\r\n,,Farmersville Unified,Tulare,720,B,0,0,0,0,92,0,6,0,82,2,6,36,31,5,24,23,22,91,46,30,16,6,2,1.88\r\n,School of History and Dramatic Arts at S,Los Angeles Unified,Los Angeles,720,4,0,0,3,4,91,0,1,0,88,10,0,15,52,13,N/A,N/A,20,65,43,32,21,4,0,1.86\r\nD,Alliance Christine O'Donovan Middle Acad,Los Angeles Unified,Los Angeles,720,2,15,0,0,0,81,0,4,0,85,0,0,21,37,9,N/A,32,29,99,52,23,18,6,2,1.82\r\n,El Monte High,El Monte Union High,Los Angeles,720,4,0,0,16,0,82,0,1,0,90,6,2,33,40,9,N/A,N/A,27,99,55,30,9,5,1,1.68\r\n,Dr. Owen Lloyd Knox Elementary,Los Angeles Unified,Los Angeles,720,1,24,0,0,0,76,0,0,0,100,4,0,41,18,10,21,20,N/A,47,58,26,12,3,1,1.65\r\n,Biola-Pershing Elementary,Central Unified,Fresno,720,1,0,0,16,0,79,1,4,0,100,6,6,54,20,8,29,29,N/A,85,57,32,8,2,2,1.59\r\n,Earlimart Elementary,Earlimart Elementary,Tulare,720,1,0,0,0,0,99,0,0,0,100,0,7,83,0,1,21,N/A,N/A,93,64,25,4,6,0,1.54\r\n,Cesar E. Chavez Elementary,Alisal Union,Monterey,720,1,0,0,0,0,98,0,0,1,98,8,12,84,10,6,30,31,N/A,98,70,15,9,4,2,1.53\r\n,\"Dr. Martin Luther King, Jr. Academy\",Alisal Union,Monterey,720,1,0,1,0,0,95,0,4,0,99,2,11,74,19,11,N/A,31,N/A,91,69,20,5,3,3,1.51\r\n,Las Flores High (Alternative),Elk Grove Unified,Sacramento,719,3,14,2,7,3,27,2,34,12,38,4,0,3,11,3,N/A,N/A,4,80,10,27,27,25,11,3\r\nY,New Technology High,Sacramento City Unified,Sacramento,719,3,18,1,5,1,48,1,20,5,67,0,0,18,18,10,N/A,N/A,19,90,24,23,28,16,9,2.62\r\n,Crespi Junior High,West Contra Costa Unified,Contra Costa,719,2,26,0,11,7,42,1,13,0,70,16,0,15,23,14,N/A,N/A,33,81,15,47,19,16,4,2.48\r\n,Sierra Park Elementary,Los Angeles Unified,Los Angeles,719,1,1,1,1,0,97,0,0,0,100,5,1,20,15,15,15,15,N/A,81,25,33,27,11,4,2.36\r\n,Union House Elementary,Elk Grove Unified,Sacramento,719,1,31,0,21,3,27,7,6,3,100,0,0,32,10,13,22,23,N/A,97,21,45,21,9,4,2.28\r\n,Beckman Elementary,Lodi Unified,San Joaquin,719,1,3,0,8,1,66,0,20,1,89,8,2,45,9,12,28,26,N/A,78,23,38,31,6,2,2.27\r\n,Rock Creek Elementary,Auburn Union Elementary,Placer,719,1,1,2,2,0,55,0,39,0,83,1,0,44,7,13,18,31,N/A,81,22,42,27,6,3,2.26\r\n,,Santa Maria Joint Union High,Santa Barbara,719,B,1,0,1,2,80,0,13,1,65,0,11,21,32,8,N/A,N/A,23,92,41,17,24,12,5,2.25\r\n,Bon View Elementary,Ontario-Montclair Elementary,San Bernardino,719,1,3,0,2,1,88,2,4,1,79,3,0,47,9,11,25,28,N/A,92,29,36,24,8,3,2.21\r\n,,Inglewood Unified,Los Angeles,719,B,37,0,0,0,61,0,0,0,88,3,0,11,0,15,26,27,25,93,30,34,23,9,3,2.21\r\n,Madison Elementary,Central Unified,Fresno,719,1,6,1,10,1,68,0,13,0,90,2,1,22,17,8,30,36,N/A,95,31,34,23,9,3,2.18\r\n,David Reese Elementary,Elk Grove Unified,Sacramento,719,1,20,0,27,1,41,2,5,4,100,2,0,42,12,10,22,25,N/A,99,28,42,17,9,3,2.18\r\n,Beardsley Elementary,Beardsley Elementary,Kern,719,1,0,1,1,0,41,0,55,2,91,0,0,9,4,15,23,25,N/A,90,30,40,22,3,5,2.14\r\n,Collegeville Elementary,Escalon Unified,San Joaquin,719,1,2,0,1,1,75,0,19,1,81,0,21,60,5,14,26,27,N/A,94,29,45,20,4,3,2.07\r\n,Daniel Lairon Elementary,Franklin-McKinley Elementary,Santa Clara,719,1,1,0,7,1,90,0,0,0,94,19,23,65,19,11,24,30,N/A,95,29,46,16,6,3,2.07\r\n,Julien Hathaway Elementary,Hueneme Elementary,Ventura,719,1,1,0,1,7,89,0,2,0,100,10,7,61,16,12,20,21,N/A,100,55,23,16,4,2,1.75\r\n,LIFE Academy,Oakland Unified,Alameda,719,3,6,0,6,1,85,1,2,0,42,13,1,36,46,11,N/A,N/A,25,75,55,28,10,5,3,1.72\r\n,Mayfair Elementary,Fresno Unified,Fresno,719,1,6,0,13,0,78,0,3,0,100,1,2,41,18,8,27,27,N/A,85,49,32,16,2,0,1.72\r\n,Terra Bella Elementary,Terra Bella Union Elementary,Tulare,719,1,1,0,0,0,95,0,3,0,97,2,4,66,23,5,22,27,N/A,100,72,20,7,0,1,1.39\r\nY,Visions In Education,San Juan Unified,Sacramento,718,3,6,1,3,3,15,0,69,3,53,2,0,8,10,7,4,3,3,98,7,18,34,27,15,3.24\r\nY,Elk Grove Charter,Elk Grove Unified,Sacramento,718,3,23,2,6,1,25,0,34,8,43,3,0,5,12,5,N/A,N/A,12,91,7,30,36,20,8,2.91\r\n,Maple Elementary,Sacramento City Unified,Sacramento,718,1,7,1,17,0,69,1,4,1,99,3,1,38,24,16,22,32,N/A,76,21,22,21,16,19,2.89\r\n,Chatsworth Senior High,Los Angeles Unified,Los Angeles,718,3,8,1,11,4,56,0,19,1,64,19,0,13,30,13,N/A,N/A,32,61,22,29,24,16,8,2.6\r\n,Delta Sierra Middle,Lodi Unified,San Joaquin,718,2,18,1,17,7,38,2,16,0,81,10,0,18,13,11,N/A,N/A,17,75,18,30,33,13,5,2.57\r\n,Mesa Linda Middle,Adelanto Elementary,San Bernardino,718,2,22,1,2,1,58,1,11,2,83,15,0,10,18,13,N/A,N/A,27,98,18,36,30,10,5,2.49\r\n,Hacienda Elementary,Mojave Unified,Kern,718,1,30,1,0,1,33,0,29,3,77,7,1,7,11,10,N/A,30,N/A,80,16,40,30,12,3,2.46\r\n,,Hayward Unified,Alameda,718,B,14,1,8,7,58,4,7,1,72,5,1,31,21,9,28,29,29,82,23,34,25,15,4,2.43\r\n,San Lucas Elementary,San Lucas Union Elementary,Monterey,718,1,0,0,0,0,98,0,2,0,100,0,6,51,8,13,7,8,N/A,100,25,38,17,15,6,2.4\r\n,Jefferson Elementary,Calexico Unified,Imperial,718,1,0,0,1,0,99,0,0,0,100,3,10,74,15,5,27,31,N/A,91,31,31,16,16,6,2.35\r\n,Venice Senior High,Los Angeles Unified,Los Angeles,718,3,9,0,7,1,68,0,14,0,66,20,0,14,36,13,N/A,N/A,29,54,36,28,17,11,8,2.26\r\n,Parkview Elementary,Hueneme Elementary,Ventura,718,1,2,0,1,4,88,1,5,0,100,14,3,41,14,14,29,29,N/A,100,39,28,20,8,4,2.11\r\n,Joseph Pomeroy Widney High,Los Angeles Unified,Los Angeles,718,C,13,0,7,3,72,1,4,0,62,0,0,67,1,100,N/A,N/A,10,24,44,28,11,11,6,2.06\r\n,Lincoln Elementary,Pomona Unified,Los Angeles,718,1,3,0,0,1,91,0,3,0,96,1,0,49,12,10,26,28,N/A,74,27,51,16,5,2,2.04\r\n,Henry Dalton Elementary,Azusa Unified,Los Angeles,718,1,1,0,0,0,94,0,4,0,83,0,2,49,8,10,24,34,N/A,95,41,29,19,6,4,2.03\r\n,Mark Twain Middle,Los Angeles Unified,Los Angeles,718,2,14,0,1,1,76,0,8,0,100,13,0,22,28,14,N/A,20,20,68,41,32,16,7,4,2.01\r\n,Longwood Elementary,Hayward Unified,Alameda,718,1,6,0,3,4,79,2,5,0,84,0,4,55,12,8,30,31,N/A,70,36,40,16,6,2,1.99\r\n,Riverbank Elementary,Washington Unified,Yolo,718,1,4,2,9,1,53,1,28,1,89,8,0,30,24,14,19,28,28,99,37,36,21,6,1,1.99\r\n,Mountain View Elementary,Azusa Unified,Los Angeles,718,1,1,0,1,1,92,0,4,1,93,7,4,47,11,8,24,34,N/A,97,39,34,19,6,1,1.96\r\n,Santa Rita Elementary,Santa Rita Union Elementary,Monterey,718,1,3,1,1,1,88,0,8,0,77,0,6,65,9,9,26,27,N/A,92,45,32,14,7,2,1.88\r\n,La Puente High,Hacienda la Puente Unified,Los Angeles,718,3,1,0,2,1,93,1,1,0,80,11,2,15,36,10,N/A,N/A,30,77,41,40,13,4,2,1.87\r\n,Harriette Kirschen Elementary,Modesto City Elementary,Stanislaus,718,1,2,0,7,0,86,0,4,0,97,2,1,59,8,10,24,31,N/A,98,40,48,9,2,1,1.77\r\n,Alicante Avenue Elementary,Lamont Elementary,Kern,718,1,0,0,0,0,98,0,2,0,84,6,21,68,12,6,28,26,N/A,96,58,24,10,5,4,1.72\r\n,Bonita Elementary,Santa Maria-Bonita,Santa Barbara,718,1,0,0,0,0,99,0,1,0,100,2,23,80,15,6,23,18,N/A,100,87,8,3,1,0,1.18\r\n,Hercules High,West Contra Costa Unified,Contra Costa,717,3,25,0,19,25,20,1,10,0,37,17,0,11,14,9,N/A,N/A,29,87,5,31,25,31,8,3.07\r\nD,Heritage Peak Charter,Twin Rivers Unified,Sacramento,717,3,7,1,3,1,26,0,41,4,56,0,0,12,11,9,20,21,N/A,92,10,18,38,24,10,3.07\r\nY,Antelope View Charter,Center Joint Unified,Sacramento,717,3,2,0,2,2,17,0,68,2,46,1,0,0,12,8,N/A,8,12,98,5,24,38,27,6,3.05\r\nY,Juniper Ridge Virtual Academy Charter,Ravendale-Termo Elementary,Lassen,717,1,12,5,0,0,2,0,70,12,60,0,0,0,0,9,6,N/A,N/A,95,7,39,17,32,5,2.88\r\n,Mariposa Avenue Elementary,San Juan Unified,Sacramento,717,1,4,1,3,1,26,0,62,2,78,1,0,15,7,13,27,34,N/A,64,14,21,40,21,5,2.83\r\n,Canyon Springs High,Moreno Valley Unified,Riverside,717,3,23,0,3,2,53,1,17,1,65,14,1,8,22,10,N/A,N/A,29,91,14,28,36,17,5,2.7\r\n,Weston Ranch High,Manteca Unified,San Joaquin,717,3,22,0,11,14,42,1,10,0,68,7,0,9,29,10,N/A,N/A,25,85,11,41,26,18,4,2.64\r\n,Bayshore Elementary,Bayshore Elementary,San Mateo,717,1,9,0,14,26,42,5,3,1,83,0,0,23,29,9,20,22,N/A,95,16,37,29,10,8,2.57\r\n,,Horicon Elementary,Sonoma,717,B,0,10,0,0,51,0,37,0,90,0,2,44,0,15,7,N/A,N/A,59,4,54,38,4,0,2.42\r\n,Horicon Elementary,Horicon Elementary,Sonoma,717,1,0,10,0,0,51,0,37,0,90,0,2,44,0,15,7,N/A,N/A,59,4,54,38,4,0,2.42\r\n,Biggs Elementary,Biggs Unified,Butte,717,1,2,0,1,0,42,0,51,2,67,3,3,21,8,17,24,26,28,97,18,44,25,9,5,2.39\r\n,Cobalt Middle,Victor Valley Union High,San Bernardino,717,2,27,1,3,1,53,1,15,0,81,5,0,9,11,11,N/A,N/A,26,77,19,36,36,7,2,2.37\r\n,De Anza 9th Grade Academy,Calexico Unified,Imperial,717,2,0,0,1,0,98,0,1,0,98,3,10,52,35,8,N/A,N/A,27,94,31,25,25,14,5,2.35\r\n,Roosevelt Elementary,Lindsay Unified,Tulare,717,1,0,0,3,0,89,0,7,0,100,7,16,45,9,4,23,27,N/A,97,30,27,28,10,4,2.3\r\n,Los Altos Elementary,South Whittier Elementary,Los Angeles,717,1,1,1,1,0,94,0,3,0,80,0,0,58,0,5,31,N/A,N/A,63,19,45,29,7,0,2.24\r\n,Barton Elementary,San Bernardino City Unified,San Bernardino,717,1,28,0,1,1,59,1,8,1,93,5,0,27,4,13,18,28,N/A,78,27,34,29,8,1,2.22\r\n,Merquin Elementary,Hilmar Unified,Merced,717,1,0,0,2,0,69,0,29,0,86,2,8,57,4,23,19,16,N/A,97,34,32,18,15,0,2.14\r\n,Weber Institute,Stockton Unified,San Joaquin,717,3,4,3,1,2,84,0,6,0,73,12,5,12,51,2,N/A,N/A,23,91,38,33,16,8,5,2.09\r\n,Sobrante Park Elementary,Oakland Unified,Alameda,717,1,34,0,2,0,59,3,0,1,83,21,0,44,10,7,26,30,N/A,44,38,33,22,5,1,1.99\r\n,South Junior High,Anaheim Union High,Orange,717,2,1,0,2,1,90,1,5,0,89,15,0,30,46,11,N/A,N/A,26,17,44,27,20,6,3,1.98\r\n,Hazelton Elementary,Stockton Unified,San Joaquin,717,1,5,2,6,6,79,1,2,0,99,11,6,39,20,9,29,26,29,77,44,30,16,7,4,1.96\r\n,West Athens Elementary,Los Angeles Unified,Los Angeles,717,1,29,1,0,0,69,1,0,0,100,3,0,44,13,12,18,22,N/A,52,44,33,15,5,3,1.9\r\n,Raymond Avenue Elementary,Los Angeles Unified,Los Angeles,717,1,37,0,0,0,63,0,0,0,100,8,0,32,15,11,18,19,N/A,71,42,33,23,2,1,1.86\r\n,Monterey Elementary,San Bernardino City Unified,San Bernardino,717,1,14,1,3,0,78,1,3,2,95,6,0,53,6,9,19,22,N/A,67,47,31,17,3,2,1.82\r\n,Lee Mathson Middle,Alum Rock Union Elementary,Santa Clara,717,2,2,0,9,5,83,0,1,0,100,18,3,42,37,16,N/A,27,28,91,53,22,16,7,2,1.82\r\n,Juanita Blakely Jones Elementary,San Bernardino City Unified,San Bernardino,717,1,18,1,1,0,73,0,4,2,96,8,0,39,8,5,28,33,N/A,73,49,34,14,2,2,1.73\r\n,Heritage Elementary,Lodi Unified,San Joaquin,717,1,1,0,12,1,81,0,3,0,97,6,9,75,12,9,29,26,N/A,84,50,36,8,4,2,1.73\r\n,Belvedere Middle,Los Angeles Unified,Los Angeles,717,2,0,0,0,0,99,0,0,0,100,12,2,23,44,12,N/A,19,20,68,59,25,10,3,3,1.65\r\nD,Animo Jefferson Charter Middle,Los Angeles Unified,Los Angeles,717,2,1,0,0,0,98,0,0,0,98,0,0,57,28,11,N/A,36,N/A,79,53,34,10,1,1,1.64\r\n,Shirpser Elementary,El Monte City Elementary,Los Angeles,717,1,0,0,4,0,96,0,0,0,95,1,2,71,11,13,27,27,N/A,100,54,34,10,1,1,1.61\r\n,Loren Miller Elementary,Los Angeles Unified,Los Angeles,717,1,18,0,0,0,81,0,0,0,100,7,0,38,27,13,20,21,N/A,81,59,27,9,3,1,1.6\r\n,Rio del Norte,Rio Elementary,Ventura,716,1,3,0,1,1,81,0,9,4,75,0,2,32,10,11,24,24,N/A,69,15,24,35,17,10,2.84\r\nD,Aspire APEX Academy,SBC - Aspire Public Schools,El Dorado,716,1,15,0,6,2,65,1,7,4,77,0,0,13,0,9,24,30,N/A,96,10,35,36,13,6,2.7\r\n,Modoc County Special Education,Modoc County Office of Educati,Modoc,716,C,6,6,0,0,33,0,56,0,0,0,0,6,0,89,1,N/A,2,78,21,29,29,21,0,2.5\r\n,New Vista Middle,Lancaster Elementary,Los Angeles,716,2,38,0,2,1,48,0,9,1,84,8,0,11,11,12,N/A,29,23,100,24,27,32,15,3,2.46\r\n,Corning High,Corning Union High,Tehama,716,3,1,2,1,0,51,0,45,1,50,0,2,17,22,9,N/A,N/A,25,89,25,31,28,11,4,2.38\r\n,Magnolia High,Anaheim Union High,Orange,716,3,3,0,9,2,76,1,8,0,83,11,0,32,39,12,N/A,N/A,32,6,29,25,28,17,1,2.36\r\n,Horace Mann Elementary,San Jose Unified,Santa Clara,716,1,2,0,8,2,77,0,7,1,80,10,1,49,11,11,26,27,N/A,79,33,29,20,13,6,2.31\r\n,Crestline Elementary,Barstow Unified,San Bernardino,716,1,28,1,1,3,50,2,12,4,83,5,0,19,0,10,26,25,N/A,91,27,34,29,5,4,2.25\r\n,Hort Elementary,Bakersfield City,Kern,716,1,5,1,0,0,77,0,16,0,85,0,7,25,16,11,20,25,N/A,83,26,40,22,7,5,2.25\r\n,Colton Middle,Colton Joint Unified,San Bernardino,716,2,2,0,0,0,92,0,4,0,85,15,0,22,22,13,N/A,N/A,23,92,30,38,25,4,3,2.12\r\n,Bernhard Marks Elementary,Dos Palos Oro Loma Joint Unifi,Merced,716,1,3,1,0,0,75,0,20,0,97,0,5,45,4,10,29,32,N/A,97,35,32,25,5,3,2.1\r\n,Samuel Kennedy Elementary,Elk Grove Unified,Sacramento,716,1,13,0,20,1,57,1,4,3,100,1,1,49,13,8,22,27,N/A,89,32,41,17,7,3,2.07\r\n,Dyer-Kelly Elementary,San Juan Unified,Sacramento,716,1,27,0,2,0,54,1,12,4,97,2,0,32,8,9,20,26,N/A,76,38,30,23,8,0,2.01\r\n,Roger Anton Elementary,San Bernardino City Unified,San Bernardino,716,1,13,1,2,0,75,0,4,2,94,13,0,43,9,9,25,32,N/A,76,41,31,20,5,3,1.98\r\n,Selby Lane Elementary,Redwood City Elementary,San Mateo,716,1,0,0,1,0,89,2,6,0,76,9,1,51,29,14,27,26,24,95,48,29,15,5,3,1.85\r\n,Tenaya Middle,Merced City Elementary,Merced,716,2,6,0,11,0,77,0,5,1,91,8,5,24,34,8,N/A,29,27,100,49,30,15,3,2,1.8\r\n,Bridge Street Elementary,Los Angeles Unified,Los Angeles,716,1,0,0,1,0,98,0,0,0,100,4,2,44,17,22,13,15,N/A,37,52,30,11,4,3,1.75\r\n,,McFarland Unified,Kern,716,B,0,0,0,0,98,0,1,0,100,4,8,43,30,10,20,23,24,100,55,25,14,5,2,1.74\r\n,Fremont Elementary,Alisal Union,Monterey,716,1,0,0,0,0,99,0,0,0,95,1,11,84,8,6,28,31,N/A,98,75,17,4,3,1,1.39\r\nD,Kaplan Academy of California-San Francis,Bayshore Elementary,San Mateo,715,3,11,2,2,4,28,4,35,4,33,0,0,2,4,7,N/A,N/A,8,59,11,22,37,26,4,2.89\r\nD,Wisdom Academy for Young Scientists,Los Angeles County Office of E,Los Angeles,715,1,10,0,0,0,38,0,0,1,100,1,0,7,0,6,1,3,N/A,3,20,20,40,20,0,2.6\r\n,Family Tree Learning Center,Hemet Unified,Riverside,715,1,10,2,0,1,42,0,41,4,58,7,0,8,3,8,15,20,15,100,14,40,38,3,5,2.45\r\n,Rio Linda Preparatory Academy,Twin Rivers Unified,Sacramento,715,2,5,1,8,1,32,2,47,3,80,16,0,17,10,14,N/A,30,24,88,20,38,29,10,4,2.4\r\n,Manteca High,Manteca Unified,San Joaquin,715,3,6,2,4,4,51,1,32,1,60,10,1,9,19,10,N/A,N/A,26,90,17,43,24,14,1,2.39\r\n,,West Contra Costa Unified,Contra Costa,715,B,21,0,11,6,49,1,11,0,68,9,0,32,16,12,22,29,27,85,26,37,17,15,5,2.37\r\n,Lucerne Valley High,Lucerne Valley Unified,San Bernardino,715,3,4,0,1,0,42,1,52,1,72,0,0,1,0,14,N/A,N/A,20,80,19,43,24,12,3,2.37\r\n,,Victor Valley Union High,San Bernardino,715,B,25,1,2,1,55,1,14,1,75,8,0,10,16,12,N/A,1,5,82,22,36,31,8,3,2.33\r\n,Micheltorena Street Elementary,Los Angeles Unified,Los Angeles,715,1,2,1,2,3,87,0,6,0,77,8,0,32,20,23,15,15,N/A,69,30,35,13,18,4,2.31\r\n,Lathrop Elementary,Manteca Unified,San Joaquin,715,1,4,1,3,6,67,0,17,1,80,1,1,32,15,14,27,28,30,82,22,44,22,10,2,2.26\r\n,Evergreen Elementary,Bakersfield City,Kern,715,1,9,0,0,1,79,0,10,1,92,0,4,24,8,11,21,31,N/A,77,26,40,20,10,4,2.26\r\n,Marsh Elementary,Antioch Unified,Contra Costa,715,1,23,1,1,1,60,3,10,0,91,0,0,45,5,9,24,31,N/A,55,28,40,20,8,5,2.22\r\n,San Pedro Senior High,Los Angeles Unified,Los Angeles,715,3,9,0,2,2,71,1,16,0,63,19,0,7,23,11,N/A,N/A,29,59,38,25,22,11,4,2.18\r\n,Foothill High,Kern Union High,Kern,715,3,3,0,0,0,83,0,12,1,85,17,6,10,30,10,N/A,N/A,23,89,35,36,17,5,7,2.12\r\n,North Monterey County High,North Monterey County Unified,Monterey,715,3,1,1,1,2,76,0,19,1,75,2,8,18,34,3,N/A,N/A,28,79,37,29,22,10,1,2.1\r\n,Sunnymead Elementary,Moreno Valley Unified,Riverside,715,1,14,0,2,1,77,0,5,1,79,3,2,52,7,9,28,30,N/A,86,31,39,21,7,2,2.09\r\n,Montebello Intermediate,Montebello Unified,Los Angeles,715,2,0,0,1,0,97,0,1,0,84,12,0,21,40,15,N/A,31,31,80,33,40,15,8,4,2.08\r\n,Alice Birney Elementary,Colton Joint Unified,San Bernardino,715,1,3,0,1,0,93,1,3,0,93,11,0,51,10,13,20,29,N/A,90,33,41,17,5,4,2.06\r\n,Mt. Pleasant High,East Side Union High,Santa Clara,715,3,3,0,12,9,71,1,4,0,61,4,2,21,36,14,N/A,N/A,27,91,45,25,15,11,4,2.04\r\n,College Heights Elementary,Bakersfield City,Kern,715,1,8,0,0,0,86,0,5,0,96,0,9,36,14,7,19,21,N/A,65,37,34,21,5,3,2.03\r\n,Emmerton Elementary,San Bernardino City Unified,San Bernardino,715,1,22,1,3,0,67,2,4,0,92,6,0,42,4,2,28,N/A,N/A,64,37,32,22,9,0,2.02\r\n,Adelanto Elementary,Adelanto Elementary,San Bernardino,715,1,24,0,0,0,63,0,9,2,100,2,0,30,10,14,28,29,N/A,96,41,34,15,5,4,1.98\r\n,Rubidoux High,Jurupa Unified,Riverside,715,3,3,0,1,0,87,0,7,0,78,15,0,33,28,9,N/A,N/A,29,95,43,32,18,5,3,1.93\r\n,George Washington Elementary,Lodi Unified,San Joaquin,715,1,1,1,6,1,71,0,18,0,91,7,4,56,6,15,18,20,N/A,87,41,37,13,7,2,1.9\r\n,Bell Gardens Elementary,Montebello Unified,Los Angeles,715,1,0,0,0,0,100,0,0,0,100,4,0,54,25,9,28,30,N/A,75,43,39,12,4,2,1.84\r\n,Lindsay Senior High,Lindsay Unified,Tulare,715,3,0,0,3,0,88,0,8,0,99,10,26,37,32,3,N/A,N/A,26,99,52,23,18,5,1,1.8\r\n,Wilson Elementary,Sanger Unified,Fresno,715,1,0,0,1,0,94,0,4,0,100,0,1,48,18,6,23,33,N/A,100,48,25,25,2,0,1.8\r\n,Bridges Academy,Oakland Unified,Alameda,715,1,3,1,1,0,93,0,1,0,39,35,1,74,18,4,19,23,N/A,41,54,35,6,4,2,1.64\r\n,Orange Cove High,Kings Canyon Joint Unified,Fresno,715,3,0,0,1,0,96,0,1,0,98,0,7,26,52,7,N/A,N/A,28,100,64,18,12,5,1,1.61\r\nD,Gorman Learning Center,Gorman Elementary,Los Angeles,714,3,6,0,4,1,29,0,56,0,39,3,0,0,0,4,9,9,3,80,4,22,36,25,13,3.21\r\nD,Century Academy for Excellence,Lennox,Los Angeles,714,2,85,0,0,0,15,0,0,0,86,0,0,2,6,5,N/A,27,24,70,8,40,38,11,2,2.59\r\n,Upper Lake Middle,Upper Lake Union Elementary,Lake,714,2,1,9,0,0,28,1,50,11,89,0,0,2,1,6,N/A,33,17,43,9,39,39,13,0,2.57\r\n,American Lakes Elementary,Natomas Unified,Sacramento,714,1,30,2,5,2,46,2,9,3,75,1,0,32,1,16,22,28,N/A,88,15,41,28,13,2,2.46\r\n,Flowery Elementary,Sonoma Valley Unified,Sonoma,714,1,0,0,0,0,76,0,23,0,68,0,0,65,3,9,21,27,N/A,93,37,21,16,15,10,2.39\r\n,Woodbine Elementary,Sacramento City Unified,Sacramento,714,1,18,1,20,1,42,9,7,1,98,5,0,33,14,20,25,26,N/A,58,28,29,24,13,5,2.37\r\n,Muir (John) Elementary,San Francisco Unified,San Francisco,714,1,31,0,2,4,48,0,6,6,87,10,2,46,4,19,16,9,N/A,90,22,41,21,13,3,2.34\r\n,Fairbanks Elementary,Twin Rivers Unified,Sacramento,714,1,29,0,24,1,30,4,4,3,90,6,0,41,8,18,18,18,N/A,37,21,37,35,5,3,2.33\r\n,Captain Raymond Collins,Paramount Unified,Los Angeles,714,1,34,0,4,2,50,1,5,3,92,3,0,33,5,12,25,26,N/A,66,25,35,25,11,3,2.32\r\n,Castle Rock Elementary,Woodlake Union Elementary,Tulare,714,1,0,0,0,0,89,0,10,0,100,13,19,60,0,3,20,28,N/A,40,33,27,25,9,6,2.28\r\n,Chavez Elementary,San Diego Unified,San Diego,714,1,3,0,2,0,93,0,1,0,99,20,0,65,19,12,20,31,N/A,72,24,41,25,8,3,2.26\r\n,Fremont Intermediate,Oxnard,Ventura,714,2,2,0,2,1,83,1,10,1,73,3,1,21,23,11,N/A,N/A,28,96,33,32,20,11,4,2.2\r\n,Ellen Ochoa Learning Center,Los Angeles Unified,Los Angeles,714,1,0,0,0,0,98,0,1,0,85,7,0,40,29,10,20,24,26,92,33,36,17,9,5,2.16\r\n,Gustine High,Gustine Unified,Merced,714,3,0,0,1,0,68,0,28,1,62,2,7,17,38,11,N/A,N/A,25,99,39,28,22,7,4,2.1\r\nD,Magnolia Science Academy Bell,Los Angeles Unified,Los Angeles,714,2,0,0,0,0,98,0,2,0,92,0,0,21,43,6,N/A,30,28,94,43,32,15,6,4,1.97\r\n,Cathedral City Elementary,Palm Springs Unified,Riverside,714,1,2,1,1,1,92,0,4,0,95,2,0,56,5,11,24,29,N/A,95,44,39,10,4,3,1.84\r\n,Farmersville High,Farmersville Unified,Tulare,714,3,0,0,1,0,92,0,7,0,100,3,4,19,47,6,N/A,N/A,25,95,55,29,11,5,1,1.69\r\n,Richard B. Haydock Intermediate,Oxnard,Ventura,714,2,1,0,0,0,94,0,4,0,86,2,0,33,34,10,N/A,N/A,21,98,54,31,9,4,2,1.68\r\nD,Alliance Health Services Academy High,Los Angeles Unified,Los Angeles,714,3,28,0,0,0,72,0,0,0,89,0,0,20,40,12,N/A,N/A,26,100,62,18,12,7,2,1.68\r\n,Hall District Elementary,Pajaro Valley Unified,Santa Cruz,714,1,0,0,0,1,97,0,2,0,92,8,24,79,16,9,27,31,N/A,80,64,18,10,5,3,1.66\r\n,Bear Mountain Elementary,Arvin Union Elementary,Kern,714,1,0,0,0,0,97,0,2,0,93,2,14,75,11,8,23,29,N/A,89,58,29,7,5,2,1.63\r\n,The High School at Moorpark College,Moorpark Unified,Ventura,713,3,2,0,9,4,6,2,69,9,11,4,0,0,0,2,N/A,N/A,30,94,0,10,27,29,33,3.86\r\n,OUSD Home Sch,Orange Unified,Orange,713,3,0,1,1,0,31,3,57,3,3,10,0,4,9,9,N/A,N/A,18,96,14,9,25,34,17,3.31\r\nY,Learning Community Charter,Butte County Office of Educati,Butte,713,3,2,8,1,0,27,0,57,6,65,0,0,3,2,13,20,19,18,96,10,30,42,11,8,2.78\r\n,Lawless Elementary,Fresno Unified,Fresno,713,1,20,0,8,3,48,2,19,0,82,1,0,11,7,11,25,30,17,82,8,33,41,14,4,2.75\r\n,Hoopa Valley High,Klamath-Trinity Joint Unified,Humboldt,713,3,0,82,1,0,2,1,10,4,60,0,0,1,0,13,N/A,N/A,19,85,7,43,30,15,5,2.69\r\n,Whitney Avenue Elementary,San Juan Unified,Sacramento,713,1,13,3,2,3,37,2,38,1,95,1,0,25,11,15,26,29,N/A,76,13,31,38,16,3,2.65\r\n,Freeman (Daniel) Elementary,Inglewood Unified,Los Angeles,713,1,86,1,0,0,8,0,1,0,89,0,0,2,0,26,23,19,N/A,98,7,44,34,11,4,2.6\r\n,Herbert Hoover High,Fresno Unified,Fresno,713,3,14,1,13,1,50,0,19,0,81,22,1,11,15,13,N/A,N/A,24,93,18,30,34,12,6,2.56\r\n,,Big Pine Unified,Inyo,713,B,0,50,0,0,13,0,36,0,72,1,0,5,1,16,18,12,7,93,12,37,40,11,0,2.5\r\n,Arthur A. Benjamin Health Professions Hi,Sacramento City Unified,Sacramento,713,3,24,0,8,0,41,1,19,6,82,8,0,14,21,9,N/A,N/A,30,81,24,35,21,12,8,2.45\r\n,John F. Kennedy High,Los Angeles Unified,Los Angeles,713,3,3,1,3,5,80,0,8,1,71,21,0,11,37,14,N/A,N/A,31,63,27,29,26,14,4,2.4\r\n,Paul Rogers Elementary,Colton Joint Unified,San Bernardino,713,1,3,0,1,0,90,0,6,0,84,12,0,35,7,9,20,29,N/A,96,23,33,33,7,5,2.38\r\n,Santa Fe Elementary,Oakland Unified,Alameda,713,1,79,2,2,0,12,1,5,0,58,24,0,8,3,20,18,19,N/A,53,29,29,24,14,4,2.37\r\n,Sylvandale Middle,Franklin-McKinley Elementary,Santa Clara,713,2,2,0,24,3,68,1,2,0,80,15,7,29,43,8,N/A,N/A,29,98,24,39,21,11,5,2.33\r\n,Loma Vista Elementary,Vallejo City Unified,Solano,713,1,27,0,1,11,48,1,5,3,77,4,0,25,17,15,27,21,N/A,93,26,34,25,14,1,2.31\r\n,,Manchester Union Elementary,Mendocino,713,B,0,0,3,0,68,0,26,3,53,0,0,32,6,18,6,5,N/A,85,28,31,34,3,3,2.24\r\n,Manchester Elementary,Manchester Union Elementary,Mendocino,713,1,0,0,3,0,68,0,26,3,53,0,0,32,6,18,6,5,N/A,85,28,31,34,3,3,2.24\r\n,Andrew P. Hill High,East Side Union High,Santa Clara,713,3,3,0,31,3,58,0,3,1,64,9,2,24,44,10,N/A,N/A,29,94,32,35,17,12,4,2.21\r\n,Cole Elementary,San Bernardino City Unified,San Bernardino,713,1,15,0,3,1,73,1,6,1,94,12,0,34,10,6,29,30,N/A,81,33,36,20,10,1,2.11\r\n,William Mulholland Middle,Los Angeles Unified,Los Angeles,713,2,4,1,1,2,86,0,5,0,85,12,0,23,34,17,N/A,30,27,64,37,34,17,8,3,2.06\r\nD,Vista Charter Middle,Los Angeles Unified,Los Angeles,713,2,3,0,1,7,87,0,1,0,100,0,0,19,50,7,,,,83,43,31,14,9,2,1.97\r\n,Liberty Elementary,Santa Maria-Bonita,Santa Barbara,713,1,1,1,2,3,85,0,7,0,100,1,8,47,11,11,28,27,N/A,99,41,31,19,6,2,1.96\r\n,Starlight Elementary,Pajaro Valley Unified,Santa Cruz,713,1,0,0,0,0,95,0,4,0,92,9,9,64,17,15,21,25,N/A,61,44,27,21,7,1,1.94\r\nD,Nova Academy,Santa Ana Unified,Orange,713,3,0,0,3,0,93,0,2,1,88,0,0,14,35,7,N/A,N/A,23,94,45,27,21,4,3,1.93\r\n,Hosler Middle,Lynwood Unified,Los Angeles,713,2,4,0,0,0,95,0,0,0,89,11,1,24,41,9,N/A,N/A,30,63,44,35,13,6,2,1.87\r\n,Sierra Middle,Bakersfield City,Kern,713,2,3,0,0,0,91,0,4,1,95,0,9,22,37,10,N/A,22,23,28,45,36,13,3,3,1.82\r\n,Madison Elementary,Pasadena Unified,Los Angeles,713,1,4,0,0,1,93,0,1,0,96,6,0,52,28,13,26,33,N/A,96,62,25,7,4,2,1.58\r\n,Kamala Elementary,Oxnard,Ventura,713,1,1,0,0,0,97,0,1,0,94,0,2,71,11,6,29,33,N/A,94,66,21,10,3,1,1.52\r\n,Marshall Elementary,Oakland Unified,Alameda,712,1,63,0,4,2,21,2,5,0,64,33,0,20,2,36,19,18,N/A,46,4,21,41,21,13,3.18\r\n,Bakersfield High,Kern Union High,Kern,712,3,14,1,1,1,60,0,21,2,66,12,1,6,17,9,N/A,N/A,26,82,24,30,24,15,7,2.52\r\n,Trona High,Trona Joint Unified,San Bernardino,712,3,3,0,0,0,34,0,49,10,57,0,0,0,0,9,N/A,N/A,15,68,22,46,10,17,5,2.37\r\n,Grace M. Davis High,Modesto City High,Stanislaus,712,3,6,1,7,1,48,2,29,5,65,10,1,17,19,15,N/A,N/A,25,96,21,39,28,8,4,2.33\r\n,Desert Willow Intermediate,Palmdale Elementary,Los Angeles,712,2,17,1,1,1,68,0,10,2,84,14,1,14,18,17,N/A,N/A,25,94,27,31,30,9,4,2.33\r\n,Lodi Middle,Lodi Unified,San Joaquin,712,2,0,0,11,2,56,0,29,0,74,16,3,33,19,14,N/A,N/A,29,77,31,29,24,11,5,2.29\r\n,Serra (Junipero) Elementary,San Francisco Unified,San Francisco,712,1,4,1,7,4,67,2,5,2,89,1,1,55,9,11,20,21,N/A,83,28,35,26,10,1,2.22\r\n,Rowland Assistive Technology Academy,Rowland Unified,Los Angeles,712,C,6,0,6,6,83,0,0,0,83,0,0,11,22,100,N/A,10,N/A,33,33,33,17,17,0,2.17\r\n,,Loleta Union Elementary,Humboldt,712,B,0,54,2,0,22,0,23,0,91,0,0,20,0,12,3,2,3,83,33,30,26,9,2,2.17\r\n,Nogales High,Rowland Unified,Los Angeles,712,3,2,0,3,10,82,0,2,0,75,9,1,25,32,11,N/A,N/A,31,97,33,33,21,10,3,2.16\r\nD,Academia Avance Charter,Los Angeles County Office of E,Los Angeles,712,3,0,0,0,0,100,0,0,0,100,14,0,21,50,7,N/A,30,26,84,27,44,19,5,5,2.15\r\n,Cleveland Elementary,Stockton Unified,San Joaquin,712,1,14,5,19,2,51,1,9,0,99,7,2,29,13,9,29,26,30,91,37,33,20,7,3,2.08\r\n,,Woodlake Union High,Tulare,712,B,1,0,1,0,80,0,17,0,99,4,14,24,27,5,N/A,N/A,30,61,44,24,20,7,4,2.03\r\n,Lakeside Elementary,Lakeside Union Elementary,Kings,712,1,6,0,7,0,79,0,8,0,95,0,0,45,5,9,17,20,N/A,73,38,36,17,8,1,1.98\r\n,,Arvin Union Elementary,Kern,712,B,0,0,0,0,96,0,4,0,89,4,17,63,23,8,23,28,26,91,54,28,11,5,1,1.71\r\n,Sunrise Elementary,Los Angeles Unified,Los Angeles,712,1,1,0,0,0,99,0,0,0,100,7,3,47,27,16,19,19,N/A,77,58,23,12,3,4,1.71\r\n,,Ravenswood City Elementary,San Mateo,712,B,10,0,1,1,78,10,0,1,90,0,6,60,18,12,23,28,21,97,54,28,13,4,1,1.7\r\n,Metropolitan Continuation,Los Angeles Unified,Los Angeles,712,B,4,0,1,0,95,0,0,0,93,6,1,35,36,0,N/A,N/A,26,50,58,25,10,6,2,1.69\r\n,Wadsworth Avenue Elementary,Los Angeles Unified,Los Angeles,712,1,3,0,0,0,96,0,0,0,100,2,0,62,18,9,21,24,N/A,67,51,39,7,2,0,1.62\r\n,Arellanes Junior High,Santa Maria-Bonita,Santa Barbara,712,2,1,0,0,1,95,0,2,0,100,6,13,49,26,6,N/A,N/A,27,100,64,19,12,3,2,1.6\r\n,Virginia Rocca Barton Elementary,Alisal Union,Monterey,712,1,0,0,0,2,97,0,0,0,97,2,10,77,15,10,28,28,N/A,88,79,14,4,2,1,1.31\r\nY,Charter Community School Home Study Acad,El Dorado County Office of Edu,El Dorado,711,B,0,3,0,0,17,0,75,5,32,0,0,3,2,5,N/A,N/A,14,98,11,17,35,23,13,3.1\r\nD,Delta Charter,New Jerusalem Elementary,San Joaquin,711,3,9,2,4,2,40,1,39,0,60,0,0,5,10,10,4,3,7,92,7,29,37,18,9,2.93\r\n,,Ravendale-Termo Elementary,Lassen,711,B,10,4,0,0,8,0,66,12,64,0,12,6,0,8,3,2,2,96,15,35,19,27,4,2.71\r\n,Thomas Edison Elementary,San Juan Unified,Sacramento,711,1,28,3,3,0,38,2,25,2,94,1,0,26,2,8,20,26,N/A,60,19,22,39,16,4,2.63\r\n,,Biggs Unified,Butte,711,B,1,1,1,0,41,0,53,2,60,4,2,19,10,16,22,26,18,94,14,41,28,11,5,2.51\r\n,,Calexico Unified,Imperial,711,B,0,0,0,0,99,0,0,0,99,3,12,61,27,9,25,26,28,94,28,25,24,16,7,2.47\r\n,Woodlake Elementary,Twin Rivers Unified,Sacramento,711,1,21,1,2,1,50,1,15,6,89,11,0,25,4,18,26,26,N/A,93,18,41,32,8,1,2.33\r\n,Earlimart Middle,Earlimart Elementary,Tulare,711,2,0,0,0,2,96,0,1,0,100,4,6,64,25,3,N/A,24,24,28,22,46,17,13,2,2.26\r\n,Applied Technology Center,Montebello Unified,Los Angeles,711,3,0,0,0,0,97,0,2,0,68,9,0,12,47,7,N/A,N/A,23,88,33,34,22,8,4,2.15\r\n,North Beardsley Elementary,Beardsley Elementary,Kern,711,1,0,1,0,0,28,0,68,1,91,0,0,9,3,7,27,27,N/A,92,31,42,22,4,2,2.04\r\n,Kingsley Elementary,Ontario-Montclair Elementary,San Bernardino,711,1,1,1,0,0,96,0,1,0,85,3,0,62,6,8,27,30,N/A,94,36,39,17,5,4,2.02\r\n,Simons Middle,Pomona Unified,Los Angeles,711,2,3,0,2,0,94,0,1,0,95,6,0,39,32,12,N/A,36,32,91,33,43,17,4,3,2\r\nD,New Vision Middle,San Bernardino City Unified,San Bernardino,711,2,17,0,0,0,70,0,10,2,83,0,0,19,22,7,N/A,29,29,99,37,37,20,5,2,1.97\r\n,,Lynwood Unified,Los Angeles,711,B,6,0,0,0,93,0,1,0,86,10,2,38,32,9,26,29,28,74,41,35,16,6,2,1.93\r\n,Westside Park Elementary,Adelanto Elementary,San Bernardino,711,1,29,1,0,0,62,0,6,1,100,4,0,28,9,9,30,30,N/A,97,41,36,16,4,3,1.93\r\n,Tyrrell Elementary,Hayward Unified,Alameda,711,1,5,0,2,1,84,6,1,0,91,0,2,65,17,4,30,31,N/A,72,40,42,13,3,2,1.84\r\n,William Workman High,Hacienda la Puente Unified,Los Angeles,711,3,1,0,3,3,90,0,2,0,82,7,1,18,36,14,N/A,N/A,27,83,48,34,12,6,1,1.77\r\n,Mt. Vernon Elementary,San Bernardino City Unified,San Bernardino,711,1,9,1,1,0,86,0,2,0,100,6,0,46,15,4,19,22,N/A,58,50,30,15,5,0,1.76\r\n,Dover Elementary,West Contra Costa Unified,Contra Costa,711,1,4,0,6,1,86,1,2,0,88,4,0,71,13,11,23,30,N/A,77,53,35,8,3,1,1.63\r\nD,Oakland Unity High,Oakland Unified,Alameda,711,3,6,1,0,0,85,1,0,5,74,0,0,37,38,9,N/A,N/A,23,92,62,25,10,2,1,1.55\r\n,James Madison Elementary,Madera Unified,Madera,711,1,2,0,0,0,93,0,4,0,97,1,11,54,18,6,26,35,N/A,98,63,27,9,1,0,1.49\r\n,,Gorman Elementary,Los Angeles,710,B,4,0,0,0,46,0,47,1,62,0,0,16,6,10,8,8,3,73,5,17,43,19,16,3.22\r\n,Gorman Elementary,Gorman Elementary,Los Angeles,710,1,4,0,0,0,46,0,47,1,62,0,0,16,6,10,6,5,N/A,73,5,17,43,19,16,3.22\r\nD,Academy of Personalized Learning,Gateway Unified,Shasta,710,1,2,5,2,0,9,0,83,0,67,3,0,0,0,9,2,2,2,97,4,33,35,21,7,2.95\r\nD,Sherman Thomas Charter High,Madera Unified,Madera,710,3,0,0,0,0,71,0,29,0,49,7,0,2,0,5,N/A,N/A,8,98,18,28,28,18,10,2.75\r\n,Laytonville High,Laytonville Unified,Mendocino,710,3,6,20,1,0,13,0,59,1,44,16,0,4,0,4,N/A,N/A,6,96,6,34,45,10,4,2.73\r\n,Fairfield High,Fairfield-Suisun Unified,Solano,710,3,21,1,5,6,34,1,14,18,59,5,0,8,18,13,N/A,N/A,30,94,13,30,35,19,3,2.68\r\n,Gunderson High,San Jose Unified,Santa Clara,710,3,7,1,11,3,59,1,16,2,58,14,0,16,27,11,N/A,N/A,28,92,24,23,28,19,6,2.6\r\n,Lee Vining High,Eastern Sierra Unified,Mono,710,3,0,9,0,0,61,0,28,2,67,0,0,15,35,13,N/A,N/A,12,98,22,36,13,27,2,2.51\r\n,Foothill High,Twin Rivers Unified,Sacramento,710,3,20,1,6,1,31,2,36,2,66,21,0,12,20,16,N/A,N/A,23,62,16,38,33,10,3,2.47\r\n,John Marshall Elementary,Stockton Unified,San Joaquin,710,1,20,4,9,23,40,1,3,0,100,6,1,20,17,13,28,28,30,86,23,32,24,17,4,2.47\r\n,Enterprise Plus,Shasta Union High,Shasta,710,B,0,0,25,0,19,0,56,0,50,0,0,0,19,0,N/A,N/A,25,100,25,31,25,13,6,2.44\r\n,Anderson (Linford L.) Elementary,Dixon Unified,Solano,710,1,1,0,0,0,77,0,19,1,77,3,7,41,18,15,29,30,N/A,93,23,32,28,13,4,2.43\r\n,Sutherland Elementary,Lodi Unified,San Joaquin,710,1,18,1,33,4,34,1,4,2,93,7,1,39,9,10,N/A,22,N/A,83,25,33,25,11,5,2.39\r\n,Rio del Valle Middle,Rio Elementary,Ventura,710,2,2,1,3,6,83,0,5,0,100,4,5,30,20,10,N/A,30,26,66,29,28,26,13,5,2.37\r\n,Audubon K-8,San Diego Unified,San Diego,710,1,11,1,1,4,75,2,3,5,100,23,0,45,11,14,19,22,24,91,21,41,24,11,3,2.33\r\n,Ewing Elementary,Fresno Unified,Fresno,710,1,6,0,28,0,61,0,4,0,100,0,4,37,13,7,25,30,N/A,75,28,31,30,7,4,2.27\r\n,Loleta Elementary,Loleta Union Elementary,Humboldt,710,1,0,54,2,0,22,0,23,0,91,0,0,20,0,12,16,N/A,N/A,83,33,30,26,9,2,2.17\r\n,,North Monterey County Unified,Monterey,710,B,1,0,1,1,79,0,16,1,76,3,8,40,18,5,29,28,28,93,37,27,23,11,3,2.15\r\nD,Animo South Los Angeles Charter,Los Angeles Unified,Los Angeles,710,3,37,0,0,0,53,0,1,0,83,0,0,15,24,5,,,,75,29,38,24,8,1,2.15\r\n,Highland Elementary,Visalia Unified,Tulare,710,1,3,1,4,0,87,0,1,4,100,1,7,51,10,6,27,30,N/A,98,43,30,18,5,3,1.94\r\n,Richland Junior High,Richland Union Elementary,Kern,710,2,0,0,0,0,94,0,5,0,98,11,0,33,27,11,N/A,N/A,21,92,40,40,12,6,2,1.89\r\n,West Shores High,Coachella Valley Unified,Riverside,710,3,2,1,0,0,83,0,14,0,85,13,12,35,31,12,N/A,N/A,16,90,42,33,20,2,2,1.88\r\n,Foshay Learning Center,Los Angeles Unified,Los Angeles,710,2,16,0,0,0,83,0,0,0,100,13,0,19,39,10,18,33,30,53,44,34,14,6,2,1.87\r\n,James A. Garfield Senior High,Los Angeles Unified,Los Angeles,710,3,0,0,0,0,99,0,0,0,93,10,0,19,56,9,N/A,N/A,27,53,46,36,12,4,2,1.79\r\n,Highland Elementary,Monterey Peninsula Unified,Monterey,710,1,5,0,2,3,85,1,4,0,92,0,0,71,11,13,21,28,N/A,100,54,25,13,5,3,1.76\r\n,Franklin Elementary,Modesto City Elementary,Stanislaus,710,1,7,1,8,0,74,1,7,2,100,3,1,49,6,8,24,28,N/A,93,41,48,9,2,0,1.73\r\n,Mountain View Middle,Lamont Elementary,Kern,710,2,0,0,1,0,97,0,2,0,80,24,23,43,29,7,N/A,N/A,25,97,58,22,11,5,3,1.72\r\n,Roosevelt Elementary,Compton Unified,Los Angeles,710,1,7,0,0,0,92,0,0,0,88,0,0,60,18,2,29,32,N/A,84,63,24,8,2,2,1.55\r\n,Alvin Elementary,Santa Maria-Bonita,Santa Barbara,710,1,0,1,1,1,93,0,5,0,99,4,14,67,10,9,27,27,N/A,99,71,17,9,2,1,1.46\r\n,Mendota High,Mendota Unified,Fresno,710,3,0,0,0,0,99,0,1,0,98,31,8,83,1,4,N/A,N/A,28,98,72,17,9,1,1,1.42\r\nY,Southern California Online Academy,Lake Elsinore Unified,Riverside,709,3,9,1,2,2,31,1,53,0,18,4,0,3,4,12,33,16,32,65,5,26,37,23,9,3.05\r\n,Mark Twain Elementary,Sacramento City Unified,Sacramento,709,1,9,1,6,0,61,2,16,4,81,8,0,27,12,14,22,28,N/A,80,12,27,30,15,15,2.94\r\n,,Fortuna Union High,Humboldt,709,B,0,4,1,1,16,0,73,4,11,0,0,5,3,14,N/A,N/A,24,92,11,25,37,18,9,2.89\r\n,,Butte County Office of Educati,Butte,709,B,2,8,1,0,27,0,55,7,66,0,0,3,2,15,9,11,4,93,11,29,41,11,8,2.77\r\nY,Monterey County Home Charter,Monterey County Office of Educ,Monterey,709,3,2,1,0,1,52,0,41,1,1,0,0,9,18,12,,,,94,15,37,23,19,7,2.67\r\nD,Crescent View West Charter,Fresno County Office of Educat,Fresno,709,B,4,1,4,1,64,1,21,4,78,0,0,8,4,9,N/A,N/A,5,70,18,35,24,21,3,2.56\r\n,Bryte Elementary,Washington Unified,Yolo,709,1,5,3,8,0,41,4,38,0,90,0,0,62,0,11,19,N/A,N/A,92,18,36,31,9,6,2.49\r\n,Grace Hudson Elementary,Ukiah Unified,Mendocino,709,1,1,1,0,0,68,0,30,0,71,4,17,55,2,7,25,25,N/A,99,36,24,22,12,7,2.31\r\n,Fairview Elementary,Visalia Unified,Tulare,709,1,0,1,10,0,85,0,2,1,100,4,6,43,10,12,25,28,N/A,90,26,39,22,8,5,2.29\r\n,Tahquitz High,Hemet Unified,Riverside,709,3,11,1,2,2,56,1,25,3,79,5,0,13,13,14,N/A,N/A,30,100,31,32,27,8,3,2.19\r\n,Yuba Gardens Intermediate,Marysville Joint Unified,Yuba,709,2,4,2,12,0,48,1,30,2,83,7,1,30,17,15,N/A,N/A,28,75,35,29,27,7,3,2.15\r\n,Hoover Elementary,Oakland Unified,Alameda,709,1,54,0,2,0,34,0,7,0,86,21,0,29,5,7,22,25,N/A,41,32,36,23,7,2,2.12\r\n,Francisco Middle,San Francisco Unified,San Francisco,709,2,12,0,68,2,10,1,5,1,79,19,0,49,26,10,N/A,25,25,67,29,48,12,9,3,2.08\r\n,El Vista Elementary,Modesto City Elementary,Stanislaus,709,1,8,3,2,0,59,1,25,2,89,2,1,28,4,14,21,28,N/A,99,24,50,21,3,2,2.08\r\n,Madison Elementary,Pomona Unified,Los Angeles,709,1,3,0,3,0,93,0,0,0,97,1,0,54,14,6,24,27,N/A,84,26,50,17,4,3,2.08\r\n,Bloomington Middle,Colton Joint Unified,San Bernardino,709,2,3,1,0,1,90,0,5,0,86,14,0,26,28,11,N/A,N/A,26,93,33,39,20,4,4,2.07\r\n,,Lakeside Union Elementary,Kings,709,B,7,0,7,0,78,0,8,0,95,0,0,45,5,10,17,20,N/A,73,38,35,17,9,1,1.99\r\n,Washington Middle,Bakersfield City,Kern,709,2,6,1,0,0,83,0,8,1,91,1,9,20,23,10,N/A,21,23,60,43,29,21,4,2,1.93\r\n,Lopez Elementary,Pomona Unified,Los Angeles,709,1,1,0,1,0,97,0,1,0,98,2,0,64,16,8,26,31,N/A,87,36,43,17,3,1,1.91\r\n,New Open World Academy,Los Angeles Unified,Los Angeles,709,1,2,1,8,3,85,0,1,0,100,7,0,49,32,12,20,27,22,47,48,29,13,9,2,1.88\r\n,Jeane Thorman Elementary,Tustin Unified,Orange,709,1,1,1,2,1,93,1,1,0,99,1,0,77,8,6,26,34,N/A,93,45,37,13,5,1,1.82\r\n,Robertson Road Elementary,Modesto City Elementary,Stanislaus,709,1,6,0,8,0,75,1,6,3,100,0,5,58,5,18,24,26,N/A,93,37,47,13,2,1,1.82\r\n,El Monte Middle,Cutler-Orosi Joint Unified,Tulare,709,2,0,0,1,4,92,0,2,0,97,3,2,36,38,4,N/A,22,18,95,57,23,12,6,2,1.74\r\nD,Los Angeles Leadership Academy,Los Angeles Unified,Los Angeles,709,3,1,0,2,0,96,0,1,0,99,0,0,21,43,8,N/A,24,22,100,54,26,14,5,1,1.72\r\n,San Fernando Middle,Los Angeles Unified,Los Angeles,709,2,0,0,0,0,97,0,1,0,95,7,1,28,36,15,N/A,22,21,63,53,29,13,3,1,1.7\r\n,Farr Avenue Elementary,Escondido Union,San Diego,709,1,1,0,1,1,93,0,4,0,95,9,6,81,6,12,22,28,N/A,75,58,25,10,5,2,1.68\r\n,Forty-Ninth Street Elementary,Los Angeles Unified,Los Angeles,709,1,7,0,0,0,93,0,0,0,100,3,0,54,27,7,22,25,N/A,84,53,37,6,4,1,1.63\r\n,Holmes Avenue Elementary,Los Angeles Unified,Los Angeles,709,1,15,0,4,0,81,0,0,0,100,5,3,27,22,8,18,17,N/A,89,66,16,12,4,2,1.61\r\n,John C Martinez Elementary,Parlier Unified,Fresno,709,1,0,0,0,0,99,0,0,0,94,0,32,72,3,6,28,27,N/A,88,61,25,10,4,0,1.57\r\n,Calvin C. Oakley Elementary,Santa Maria-Bonita,Santa Barbara,709,1,0,0,0,3,96,0,0,0,100,4,14,69,12,8,26,27,N/A,100,75,17,6,1,0,1.33\r\n,Mecca Elementary,Coachella Valley Unified,Riverside,709,1,0,0,0,0,99,0,0,0,100,3,25,81,13,5,18,18,N/A,90,79,14,6,1,0,1.3\r\n,North Monterey County Center for Indepen,North Monterey County Unified,Monterey,708,3,0,0,5,2,47,0,42,5,3,0,2,5,5,0,,,,97,13,39,20,13,16,2.8\r\n,Cobb (William L.) Elementary,San Francisco Unified,San Francisco,708,1,52,1,6,5,21,2,7,3,81,2,0,17,2,29,16,28,N/A,76,15,34,34,12,5,2.59\r\n,Salvador Elementary,Napa Valley Unified,Napa,708,1,1,1,1,0,68,0,25,4,68,1,4,36,16,22,24,28,N/A,95,23,23,37,11,7,2.57\r\n,Albion H. Horrall Elementary,San Mateo-Foster City,San Mateo,708,1,2,1,5,4,60,14,11,3,75,1,0,47,14,14,25,31,N/A,92,20,33,26,14,7,2.54\r\n,Melrose Leadership Academy,Oakland Unified,Alameda,708,1,16,0,2,0,75,0,6,1,33,15,1,26,39,6,20,32,30,44,37,22,12,13,16,2.5\r\n,Ahwahnee Middle,Fresno Unified,Fresno,708,2,10,1,9,1,59,1,19,0,85,9,1,8,18,10,N/A,N/A,18,82,21,32,32,10,5,2.47\r\n,,Point Arena Joint Union High,Mendocino,708,B,0,5,0,0,42,1,53,0,73,0,0,11,21,8,N/A,N/A,1,98,24,31,30,9,5,2.39\r\n,Helen Hunt Jackson Alternative High,Hemet Unified,Riverside,708,3,7,1,2,1,43,0,45,1,57,7,0,6,8,4,N/A,N/A,17,100,20,34,36,7,2,2.36\r\n,Lompoc High,Lompoc Unified,Santa Barbara,708,3,5,0,3,1,71,0,15,5,73,4,1,20,27,8,N/A,N/A,26,93,30,35,22,9,4,2.24\r\n,Butte Valley High,Butte Valley Unified,Siskiyou,708,3,0,2,2,0,40,0,57,0,30,6,0,14,14,6,N/A,N/A,15,100,21,52,16,6,5,2.22\r\n,,Hamilton Unified,Glenn,708,B,1,0,0,0,87,0,11,0,84,8,28,31,25,10,24,24,19,95,35,26,26,8,5,2.21\r\n,Shandin Hills Middle,San Bernardino City Unified,San Bernardino,708,2,14,1,1,0,71,0,8,1,97,8,0,22,23,12,N/A,24,29,80,36,32,20,8,4,2.12\r\n,Norseman Elementary,Fresno Unified,Fresno,708,1,9,1,21,0,63,0,6,0,100,1,4,32,12,11,26,25,N/A,73,31,35,26,4,3,2.12\r\n,Washington Elementary,Lindsay Unified,Tulare,708,1,0,0,1,0,94,0,5,0,100,6,31,59,17,4,22,27,N/A,99,43,27,16,9,5,2.07\r\n,Baker High,Baker Valley Unified,San Bernardino,708,3,0,2,0,0,78,0,18,0,64,0,0,33,7,11,N/A,N/A,11,62,32,54,7,0,7,1.96\r\n,Meadow Homes Elementary,Mt. Diablo Unified,Contra Costa,708,1,2,0,2,2,90,1,3,0,93,1,0,74,16,6,19,24,N/A,39,37,42,13,6,2,1.92\r\n,Central Elementary,Central Union Elementary,Kings,708,1,3,64,0,0,24,0,8,0,42,0,5,11,4,11,19,26,18,93,39,38,20,3,0,1.88\r\n,Lovelia P. Flournoy Elementary,Los Angeles Unified,Los Angeles,708,1,28,0,0,0,71,0,0,0,100,5,0,43,17,15,19,18,N/A,61,51,28,12,6,3,1.81\r\n,Elkhorn Village Elementary,Washington Unified,Yolo,708,1,2,0,3,0,84,0,9,1,95,10,0,45,25,8,18,22,21,100,53,30,11,4,1,1.7\r\n,Peter Pendleton Elementary,Coachella Valley Unified,Riverside,708,1,0,0,0,0,100,0,0,0,100,4,6,68,11,9,23,26,N/A,94,54,32,9,3,1,1.66\r\n,Mendota Junior High,Mendota Unified,Fresno,708,2,0,0,0,0,97,0,1,0,99,11,5,64,18,4,N/A,N/A,28,99,67,22,8,3,0,1.48\r\n,,Raisin City Elementary,Fresno,708,B,0,0,0,0,92,0,8,0,90,0,13,70,7,7,10,4,8,97,66,25,8,0,0,1.44\r\nD,Laurel Tree Charter,Northern Humboldt Union High,Humboldt,707,1,1,4,3,0,11,1,68,8,0,0,0,0,0,29,6,11,6,47,2,5,21,50,21,3.83\r\n,Phoenix High,Grossmont Union High,San Diego,707,3,12,3,0,1,26,0,58,0,36,5,0,7,6,1,N/A,N/A,10,92,6,40,33,11,10,2.79\r\n,Blair High,Pasadena Unified,Los Angeles,707,3,28,0,3,4,53,0,8,3,71,12,0,16,16,13,N/A,36,23,84,21,27,23,21,8,2.7\r\n,Merced County Special Education,Merced County Office of Educat,Merced,707,C,7,0,8,0,60,0,24,0,86,0,0,25,0,100,10,11,N/A,78,13,40,23,17,7,2.64\r\n,,Williams Unified,Colusa,707,B,1,1,2,0,88,0,9,0,82,0,13,45,35,12,21,24,22,80,47,35,11,4,4,1.83\r\n,Felicita Elementary,Escondido Union,San Diego,707,1,1,0,1,1,93,0,4,0,94,6,3,79,4,8,22,25,N/A,84,55,30,12,2,2,1.67\r\n,Raisin City Elementary,Raisin City Elementary,Fresno,707,1,0,0,0,0,92,0,8,0,90,0,13,71,7,7,10,4,N/A,97,67,25,8,0,0,1.43\r\n,Mary Chapa Literacy and Technology Acade,Greenfield Union Elementary,Monterey,707,1,1,0,0,0,98,0,2,0,100,0,3,87,0,9,19,N/A,N/A,100,72,17,8,2,1,1.43\r\n,Victory High,Rocklin Unified,Placer,706,B,3,0,0,0,21,0,72,5,28,0,0,0,0,13,N/A,N/A,12,95,5,19,57,16,3,2.92\r\nY,Visalia Charter Independent Study,Visalia Unified,Tulare,706,B,2,2,5,0,59,0,31,2,17,6,3,9,22,6,N/A,N/A,33,88,21,29,34,13,3,2.49\r\nD,Accelerated Achievement Academy,Ukiah Unified,Mendocino,706,3,1,2,0,1,46,0,47,4,73,0,2,19,14,15,N/A,25,17,99,26,24,33,13,6,2.49\r\n,Borrego Springs High,Borrego Springs Unified,San Diego,706,3,2,0,0,0,76,0,18,2,83,13,12,18,46,16,N/A,N/A,17,85,29,37,20,10,4,2.22\r\n,Ulysses S. Grant Senior High,Los Angeles Unified,Los Angeles,706,3,4,0,2,2,64,1,27,0,82,13,0,20,50,13,N/A,N/A,30,75,33,33,18,12,3,2.19\r\n,,Fairfax Elementary,Kern,706,B,3,0,2,0,87,0,6,0,89,10,9,41,17,11,23,23,24,94,30,37,21,9,3,2.18\r\n,Bushnell Way Elementary,Los Angeles Unified,Los Angeles,706,1,4,1,1,1,91,0,2,0,100,6,0,37,13,13,20,18,N/A,94,34,36,19,8,3,2.11\r\n,Lindbergh Elementary,Lynwood Unified,Los Angeles,706,1,7,0,0,0,91,1,1,0,78,7,1,55,16,7,28,29,N/A,85,33,43,12,9,4,2.07\r\n,,Upper Lake Union Elementary,Lake,706,B,1,12,1,0,28,1,52,5,88,0,0,4,1,8,22,32,17,62,28,47,21,4,0,2.03\r\n,Palm Avenue Elementary,Wasco Union Elementary,Kern,706,1,2,0,0,0,92,0,5,0,85,0,7,46,7,4,28,27,N/A,95,37,36,21,4,2,2\r\n,Redwood Elementary,Richland Union Elementary,Kern,706,1,1,0,0,0,98,0,1,0,97,5,0,49,18,11,27,25,N/A,93,33,49,11,5,1,1.92\r\n,Madera South High,Madera Unified,Madera,706,3,3,0,1,0,86,0,8,0,85,12,12,22,42,10,N/A,N/A,31,99,49,27,18,4,2,1.83\r\n,Burbank Elementary,Modesto City Elementary,Stanislaus,706,1,1,1,8,0,82,0,6,1,100,2,2,65,9,10,24,28,N/A,98,34,52,10,2,1,1.83\r\n,Alisal High,Salinas Union High,Monterey,706,3,1,0,0,1,97,0,1,0,59,9,18,36,52,6,N/A,N/A,27,90,50,34,10,4,3,1.76\r\n,Ramona Elementary,Oxnard,Ventura,706,1,1,0,0,0,99,0,0,0,99,0,3,76,12,11,20,22,N/A,99,78,15,5,1,1,1.34\r\nY,Shenandoah High,El Dorado Union High,El Dorado,705,3,0,0,3,0,3,0,93,0,17,3,0,0,3,14,N/A,N/A,9,93,4,11,19,37,30,3.78\r\n,,Golden Feather Union Elementar,Butte,705,B,0,5,0,0,16,0,79,0,75,0,0,0,0,15,11,6,3,91,14,21,47,10,8,2.77\r\n,\"Martin Luther King, Jr., Academy\",Sausalito Marin City,Marin,705,2,63,0,2,4,21,2,2,2,100,4,0,4,13,21,N/A,17,12,83,9,28,49,12,2,2.7\r\n,Boron Junior-Senior High,Muroc Joint Unified,Kern,705,3,9,0,1,1,21,0,59,7,52,0,0,5,2,16,N/A,N/A,21,94,10,40,37,7,6,2.58\r\n,Piute Mountain Elementary,Caliente Union Elementary,Kern,705,1,6,12,0,0,20,0,61,0,57,27,0,0,0,20,7,7,N/A,22,0,55,36,9,0,2.55\r\nD,Reems (Ernestine C.) Academy of Technolo,Oakland Unified,Alameda,705,1,80,0,0,0,17,0,0,1,93,0,0,12,0,9,19,20,N/A,80,11,47,33,6,3,2.43\r\n,North Salinas High,Salinas Union High,Monterey,705,3,3,0,2,8,77,1,8,0,56,2,9,26,30,10,N/A,N/A,23,82,27,32,22,13,5,2.36\r\n,Carrisa Plains Elementary,Atascadero Unified,San Luis Obispo,705,1,0,11,0,0,43,0,43,4,89,0,0,18,0,18,19,17,N/A,96,11,56,26,7,0,2.3\r\n,La Honda Elementary,Lompoc Unified,Santa Barbara,705,1,2,0,1,0,81,1,14,1,84,8,1,45,10,11,19,21,N/A,98,33,37,22,5,3,2.07\r\n,Vanguard Learning Center,Compton Unified,Los Angeles,705,2,46,1,0,0,53,0,0,0,79,11,0,22,23,17,N/A,16,16,85,38,33,21,5,2,2\r\n,,Richgrove Elementary,Tulare,705,B,0,0,0,0,96,0,0,0,100,0,2,62,19,4,1,3,11,84,40,32,19,7,2,1.98\r\nD,King-Chavez Preparatory Academy,San Diego Unified,San Diego,705,2,4,0,0,0,94,0,0,0,98,7,0,53,27,7,N/A,28,28,70,44,36,12,5,4,1.9\r\n,Eastmont Intermediate,Montebello Unified,Los Angeles,705,2,0,0,0,0,99,0,1,0,80,13,0,21,45,9,N/A,30,28,84,43,36,14,5,2,1.88\r\n,Walter Stiern Middle,Bakersfield City,Kern,705,2,5,1,0,0,85,0,8,1,92,2,8,21,30,10,N/A,26,26,55,45,34,15,4,2,1.85\r\n,,Washington Unified,Fresno,705,B,9,1,12,0,70,0,8,0,82,3,8,39,18,9,18,21,18,96,50,28,14,6,2,1.81\r\n,Lincoln Elementary,San Bernardino City Unified,San Bernardino,705,1,13,0,1,0,80,1,4,1,95,10,0,49,5,9,19,22,N/A,72,51,29,13,4,3,1.79\r\n,Harrison Street Elementary,Los Angeles Unified,Los Angeles,705,1,0,0,0,0,99,0,0,0,100,7,1,42,24,6,20,23,N/A,78,53,26,12,7,2,1.79\r\n,Hart Street Elementary,Los Angeles Unified,Los Angeles,705,1,2,1,3,1,88,0,4,0,100,7,0,44,30,12,20,23,N/A,85,56,25,9,7,3,1.76\r\n,Calabasas Elementary,Pajaro Valley Unified,Santa Cruz,705,1,0,1,0,0,96,0,3,0,94,9,19,68,18,11,27,29,N/A,61,55,28,10,6,1,1.71\r\n,West Fresno Middle,Washington Unified,Fresno,705,2,18,0,16,0,65,0,0,0,85,0,11,38,27,9,N/A,23,25,98,58,26,12,4,1,1.64\r\n,Sierra Mountain High,Nevada Joint Union High,Nevada,704,3,0,2,3,0,0,0,89,6,24,0,0,0,0,5,N/A,N/A,5,100,5,22,40,19,14,3.16\r\nD,Paragon Collegiate Academy,Marysville Joint Unified,Yuba,704,1,2,1,0,1,27,0,36,0,70,0,0,11,0,15,20,20,N/A,98,4,24,49,15,8,2.99\r\nD,Uncharted Shores Academy,Del Norte County Office of Edu,Del Norte,704,1,0,16,2,0,12,0,66,3,51,3,0,1,0,19,10,18,N/A,96,5,39,39,12,4,2.7\r\n,Santa Barbara County Special Education,Santa Barbara County Office of,Santa Barbara,704,C,1,1,1,1,56,0,39,1,60,0,1,28,12,99,7,7,5,45,27,16,27,26,4,2.63\r\n,Glenn Hammond Curtiss Middle,Los Angeles Unified,Los Angeles,704,2,59,0,1,0,39,0,1,0,83,11,0,6,19,10,N/A,20,21,49,22,26,31,15,6,2.56\r\n,Ronald E. McNair High,Lodi Unified,San Joaquin,704,3,13,0,40,8,31,1,5,1,76,7,2,24,32,11,N/A,N/A,30,79,28,31,24,12,5,2.35\r\n,,Corning Union High,Tehama,704,B,1,2,1,0,51,0,45,1,54,0,1,17,22,9,N/A,N/A,23,89,27,31,28,11,4,2.34\r\n,Coliseum Street Elementary,Los Angeles Unified,Los Angeles,704,1,68,1,1,1,30,1,0,0,88,3,1,22,3,15,15,13,N/A,69,26,30,31,11,2,2.33\r\n,Laton High,Laton Joint Unified,Fresno,704,3,0,0,0,0,76,0,0,0,61,8,0,22,36,7,N/A,N/A,17,69,27,34,25,12,2,2.26\r\n,Sunnyside High,Fresno Unified,Fresno,704,3,9,0,28,0,58,0,3,0,100,21,4,23,33,9,N/A,N/A,31,90,37,32,21,7,4,2.1\r\n,Ivanhoe Elementary,Visalia Unified,Tulare,704,1,0,0,0,0,95,0,4,1,100,5,9,55,17,8,27,30,N/A,83,34,39,20,4,2,2.02\r\n,Elmwood Elementary,Stockton Unified,San Joaquin,704,1,0,3,4,1,83,1,9,0,100,4,4,37,30,4,32,31,29,79,34,45,11,7,4,2.01\r\n,Northwood Elementary,Twin Rivers Unified,Sacramento,704,1,16,2,11,1,54,0,12,3,91,7,0,41,7,16,24,28,N/A,79,33,42,20,4,1,1.98\r\n,Richgrove Elementary,Richgrove Elementary,Tulare,704,1,0,0,0,0,96,0,0,0,100,0,2,63,19,3,1,3,11,84,40,32,19,7,2,1.98\r\n,YES Academy,Los Angeles Unified,Los Angeles,704,1,38,0,0,0,61,0,0,0,91,3,0,39,10,13,14,14,N/A,52,36,41,18,3,3,1.97\r\n,Wilson Middle,San Diego Unified,San Diego,704,2,12,0,11,0,72,1,3,1,100,13,0,43,32,17,N/A,27,27,76,41,36,15,5,3,1.93\r\n,San Antonio Elementary,Pomona Unified,Los Angeles,704,1,3,0,1,0,94,0,1,0,98,0,1,63,11,9,26,31,N/A,90,37,42,17,4,0,1.89\r\n,Indio High,Desert Sands Unified,Riverside,704,3,2,0,0,0,95,0,2,0,90,9,2,23,43,11,N/A,N/A,26,100,47,31,13,5,3,1.84\r\n,T. S. MacQuiddy Elementary,Pajaro Valley Unified,Santa Cruz,704,1,0,0,0,0,97,0,3,0,90,4,9,74,11,15,26,25,N/A,20,59,18,16,6,1,1.73\r\n,El Sausal Middle,Salinas Union High,Monterey,704,2,0,0,0,1,98,0,1,0,81,0,15,47,42,8,N/A,N/A,29,92,56,31,7,4,2,1.65\r\n,Student Empowerment Academy,Los Angeles Unified,Los Angeles,704,3,1,0,0,0,99,0,0,0,91,11,0,29,62,3,N/A,N/A,27,78,66,27,3,3,1,1.46\r\n,Magnolia Avenue Elementary,Los Angeles Unified,Los Angeles,704,1,0,0,0,0,99,0,0,0,91,5,0,59,22,12,18,21,N/A,99,81,15,4,0,0,1.24\r\nD,California Virtual Academy @ Sutter,Nuestro Elementary,Sutter,703,1,12,1,5,2,15,1,63,0,39,0,0,0,0,14,1,1,5,89,1,20,39,27,13,3.32\r\nD,Crenshaw Arts-Technology Charter High,Los Angeles Unified,Los Angeles,703,3,88,0,0,0,10,0,0,1,94,0,0,0,0,9,N/A,N/A,1,78,9,35,22,29,5,2.87\r\n,Del Mar High,Campbell Union High,Santa Clara,703,3,5,0,6,3,60,0,22,4,13,0,0,22,30,10,N/A,N/A,28,87,22,24,27,19,8,2.68\r\n,William J. (Pete) Knight High,Antelope Valley Union High,Los Angeles,703,3,15,0,1,1,73,0,8,0,18,3,1,15,24,13,N/A,N/A,31,67,25,27,30,13,6,2.48\r\n,Webster (Daniel) Elementary,San Francisco Unified,San Francisco,703,1,24,2,0,0,50,6,11,4,77,0,3,53,3,8,18,22,N/A,88,27,30,22,15,7,2.46\r\n,,Westmorland Union Elementary,Imperial,703,B,1,0,0,0,92,0,7,0,100,13,18,42,17,9,17,16,N/A,97,25,38,26,9,1,2.22\r\n,Tropico Middle,Southern Kern Unified,Kern,703,2,11,2,0,1,50,0,32,0,73,9,6,10,15,13,N/A,25,25,53,20,48,23,7,1,2.21\r\n,Enterprise Middle,Compton Unified,Los Angeles,703,2,37,0,0,0,62,0,0,0,86,16,0,20,32,12,N/A,22,24,84,38,28,19,10,4,2.14\r\n,Channel Islands High,Oxnard Union High,Ventura,703,3,2,0,1,9,84,1,2,1,76,0,3,32,35,8,N/A,N/A,31,89,39,29,18,11,4,2.13\r\n,Muir Elementary,Fresno Unified,Fresno,703,1,9,2,2,0,76,0,8,0,98,1,1,20,9,14,20,20,N/A,74,32,38,23,5,2,2.09\r\n,Hiram W. Johnson High,Sacramento City Unified,Sacramento,703,3,13,1,31,0,43,2,7,3,81,4,0,32,28,13,N/A,N/A,22,93,40,32,17,7,4,2.02\r\n,Andres and Maria Cardenas Elementary,Los Angeles Unified,Los Angeles,703,1,4,0,1,0,91,0,3,0,100,2,0,58,15,10,20,29,N/A,87,41,35,16,5,2,1.92\r\nD,Opportunities For Learning - Baldwin Par,Baldwin Park Unified,Los Angeles,703,3,19,0,1,0,75,1,2,1,92,0,0,18,23,1,N/A,N/A,1,99,49,27,19,3,2,1.81\r\n,Grant Elementary,West Contra Costa Unified,Contra Costa,703,1,8,0,5,0,85,0,1,0,98,6,0,66,15,17,22,30,N/A,88,56,30,7,6,1,1.66\r\n,Thomas A. Edison Middle,Los Angeles Unified,Los Angeles,703,2,3,0,0,0,97,0,0,0,93,9,1,28,47,12,N/A,N/A,20,78,63,26,9,1,1,1.52\r\n,Cleveland Elementary,Santa Barbara Unified,Santa Barbara,703,1,1,1,0,0,97,0,2,0,100,1,0,78,0,18,24,28,N/A,99,64,27,4,4,0,1.49\r\n,Adam (William Laird) Elementary,Santa Maria-Bonita,Santa Barbara,703,1,1,0,0,0,98,0,1,0,99,3,17,76,11,10,28,26,N/A,95,78,14,7,1,0,1.32\r\n,Huron Middle,Coalinga-Huron Joint Unified,Fresno,703,2,0,0,4,0,95,0,1,0,100,7,4,66,24,9,N/A,21,21,97,87,11,1,1,0,1.15\r\n,Templeton Independent Study High,Templeton Unified,San Luis Obispo,702,3,0,0,0,0,18,0,79,4,12,6,0,1,2,4,N/A,N/A,19,93,10,15,46,20,9,3.03\r\nY,Vantage Point Charter,Ready Springs Union Elementary,Nevada,702,3,0,14,0,0,7,0,77,2,45,0,0,0,0,9,N/A,1,3,98,4,29,36,29,2,2.96\r\n,WESM Health/Sports Medicine,Los Angeles Unified,Los Angeles,702,3,72,1,2,0,16,1,8,0,56,13,0,2,7,9,N/A,N/A,26,31,13,30,31,20,6,2.78\r\n,Valley Center Prep,Valley Center-Pauma Unified,San Diego,702,3,0,17,0,0,24,1,55,3,30,6,0,6,1,3,,,,96,21,29,24,18,9,2.65\r\n,Citrus Avenue Elementary,Chico Unified,Butte,702,1,10,2,12,0,26,1,43,1,83,0,0,26,2,14,26,28,N/A,92,20,26,38,13,4,2.55\r\n,Glenn County Special Education,Glenn County Office of Educati,Glenn,702,C,0,11,6,3,39,0,42,0,50,0,6,31,3,100,12,6,N/A,78,29,11,43,18,0,2.5\r\nD,School of Arts and Enterprise,SBE - The School of Arts and E,Los Angeles,702,3,9,1,1,1,74,0,13,1,78,0,0,21,14,10,N/A,N/A,23,99,28,19,38,6,8,2.48\r\n,Kearny Construction Tech,San Diego Unified,San Diego,702,3,14,0,11,2,62,1,7,2,77,16,1,25,30,14,N/A,N/A,27,83,23,35,27,11,4,2.39\r\nD,Options for Youth San Gabriel,San Gabriel Unified,Los Angeles,702,3,5,0,1,0,70,0,17,2,72,0,0,10,11,6,N/A,N/A,1,94,27,30,31,7,5,2.33\r\n,Westmorland Elementary,Westmorland Union Elementary,Imperial,702,1,1,0,0,0,92,0,7,0,100,13,18,42,18,9,17,16,N/A,97,25,38,27,9,1,2.22\r\n,,Guadalupe Union Elementary,Santa Barbara,702,B,0,0,0,1,95,0,2,0,97,6,18,42,21,10,27,25,25,84,40,29,20,6,5,2.07\r\n,Tioga Middle,Fresno Unified,Fresno,702,2,12,1,16,0,60,0,9,0,100,2,2,17,20,9,N/A,N/A,19,83,34,34,27,5,1,2.05\r\n,,Konocti Unified,Lake,702,B,4,4,1,0,31,0,53,6,87,2,4,16,3,13,20,24,22,98,30,49,16,4,1,1.96\r\n,John Muir Middle,Corcoran Joint Unified,Kings,702,2,4,0,0,0,86,0,8,0,86,5,4,25,22,9,N/A,27,27,94,49,22,20,8,1,1.91\r\n,Pacific Elementary,Sacramento City Unified,Sacramento,702,1,8,1,31,0,54,2,3,1,97,5,0,54,18,7,25,25,N/A,95,51,31,11,4,3,1.78\r\n,,Cutler-Orosi Joint Unified,Tulare,702,B,0,0,1,4,94,0,2,0,98,2,3,48,27,5,19,21,21,89,57,24,11,5,2,1.7\r\n,Pixley Elementary,Pixley Union Elementary,Tulare,702,1,1,0,1,0,92,0,6,0,98,0,20,77,3,5,23,24,N/A,99,58,23,11,6,1,1.7\r\n,Lincoln Elementary,West Contra Costa Unified,Contra Costa,702,1,11,0,2,0,84,1,1,0,98,4,0,67,10,8,22,29,N/A,94,43,50,2,4,1,1.68\r\n,Art Haycox Elementary,Hueneme Elementary,Ventura,702,1,0,0,1,1,97,0,1,0,100,9,20,80,13,8,30,28,N/A,100,81,11,4,2,2,1.31\r\nD,Valley Oak Charter,Ojai Unified,Ventura,701,1,6,0,6,0,8,0,80,0,16,2,0,0,0,14,N/A,N/A,3,96,0,2,40,31,27,3.83\r\nD,View Park Preparatory Accelerated High,Los Angeles Unified,Los Angeles,701,3,71,0,0,0,7,1,0,12,62,0,0,0,0,5,N/A,N/A,27,57,2,16,19,49,13,3.54\r\nD,Pivot Charter School - San Diego,Mountain Empire Unified,San Diego,701,3,10,0,4,4,18,0,65,0,30,0,0,2,0,2,N/A,1,5,94,8,12,42,22,17,3.28\r\n,Bancroft Middle,San Leandro Unified,Alameda,701,2,23,1,7,4,48,2,11,3,65,19,0,19,20,12,N/A,27,26,96,17,28,32,15,7,2.68\r\n,San Leandro High,San Leandro Unified,Alameda,701,3,19,0,16,9,41,1,11,1,55,19,0,12,29,10,N/A,N/A,25,82,16,31,28,19,5,2.65\r\n,Maxwell Park International Academy,Oakland Unified,Alameda,701,1,58,1,1,1,27,5,4,1,86,28,0,25,3,23,18,13,N/A,45,14,28,45,9,3,2.59\r\n,,Caliente Union Elementary,Kern,701,B,6,12,0,0,22,0,61,0,57,27,0,0,0,20,6,5,N/A,22,0,55,36,9,0,2.55\r\n,Piner High,Santa Rosa City Schools,Sonoma,701,3,5,1,7,2,53,1,27,3,52,9,4,20,33,14,N/A,N/A,21,95,36,23,24,12,5,2.28\r\n,Fruit Ridge Elementary,Sacramento City Unified,Sacramento,701,1,24,2,21,1,43,1,6,1,99,3,0,35,8,8,22,21,N/A,92,24,35,31,8,2,2.28\r\n,Henry Miller Elementary,Los Banos Unified,Merced,701,1,3,1,1,1,85,1,8,1,81,0,2,42,13,11,28,30,N/A,89,34,31,23,9,2,2.13\r\nD,Aspire Golden State College Preparatory,Oakland Unified,Alameda,701,3,25,0,0,0,73,0,0,1,83,0,0,30,35,7,N/A,30,28,82,29,45,21,3,3,2.06\r\n,Addams Elementary,Fresno Unified,Fresno,701,1,11,1,4,0,71,1,11,0,100,6,4,33,9,6,28,27,N/A,53,37,31,27,3,2,2.03\r\n,Tehama County Special Education,Tehama County Office of Educat,Tehama,701,C,4,0,0,4,50,0,38,0,69,0,0,42,0,100,1,N/A,N/A,4,0,100,0,0,0,2\r\n,Emerson Middle,Pomona Unified,Los Angeles,701,2,5,0,2,0,88,0,4,0,94,4,0,31,24,14,N/A,30,29,83,32,46,18,3,1,1.96\r\n,Oak Avenue Elementary,Greenfield Union Elementary,Monterey,701,1,1,0,0,0,97,0,2,0,100,0,5,63,16,8,24,31,N/A,100,42,33,15,6,3,1.95\r\n,,Orange Center,Fresno,701,B,0,0,19,0,77,0,2,0,79,0,14,51,17,14,20,35,2,90,41,35,18,4,1,1.89\r\n,Shandon High,Shandon Joint Unified,San Luis Obispo,701,3,0,0,0,2,60,0,35,0,71,0,8,21,29,15,N/A,N/A,13,90,40,37,21,0,2,1.88\r\n,El Verano Elementary,Sonoma Valley Unified,Sonoma,701,1,1,0,1,1,82,0,15,0,86,1,0,72,8,15,22,31,N/A,96,47,32,13,5,2,1.81\r\n,Burns Valley,Konocti Unified,Lake,701,1,2,4,2,0,39,0,47,6,92,0,5,24,2,14,22,30,N/A,99,42,46,9,2,1,1.73\r\n,Coachella Valley High,Coachella Valley Unified,Riverside,701,3,0,0,0,0,97,0,1,0,90,11,11,32,44,10,N/A,N/A,23,89,58,27,10,4,1,1.64\r\n,Everett A. Rea Elementary,Newport-Mesa Unified,Orange,701,1,0,0,1,1,95,0,2,0,99,1,1,68,21,20,21,25,N/A,84,61,28,8,4,0,1.54\r\nD,Oasis Charter Public,Alisal Union,Monterey,700,1,3,0,1,2,76,0,18,0,97,0,0,22,7,11,18,25,N/A,95,6,21,49,17,7,3\r\n,Tenaja Canyon Academy,Murrieta Valley Unified,Riverside,700,3,1,0,0,3,34,0,54,9,16,1,0,1,3,5,1,1,N/A,91,10,21,49,15,5,2.86\r\n,Strobridge Elementary,Hayward Unified,Alameda,700,1,19,0,4,4,53,3,14,2,71,0,0,30,9,9,29,31,N/A,80,14,37,32,14,4,2.57\r\nD,McGill School of Success,San Diego Unified,San Diego,700,1,18,0,0,0,76,0,6,0,100,8,0,69,0,6,24,N/A,N/A,76,14,51,19,11,5,2.43\r\n,Cesar Chavez Middle,Hayward Unified,Alameda,700,2,10,0,10,7,64,3,5,0,79,8,0,27,34,8,N/A,N/A,29,84,29,39,18,13,2,2.2\r\n,Victor Elementary,Lodi Unified,San Joaquin,700,1,1,0,6,2,63,0,25,2,75,3,5,37,5,20,19,24,N/A,81,30,39,20,4,7,2.18\r\n,Antioch Middle,Antioch Unified,Contra Costa,700,2,22,1,2,2,57,1,15,0,85,4,0,27,16,13,N/A,19,13,80,29,37,24,7,3,2.18\r\n,Desert Trails Elementary,Adelanto Elementary,San Bernardino,700,1,23,0,2,1,65,0,4,5,100,8,0,24,7,14,32,32,N/A,98,27,42,21,6,4,2.18\r\n,Doyle Park Elementary,Santa Rosa City Schools,Sonoma,700,1,2,2,2,2,73,1,14,2,87,7,8,57,10,14,17,29,N/A,93,36,29,22,7,5,2.16\r\n,Jurupa Valley High,Jurupa Unified,Riverside,700,3,2,0,1,1,83,0,13,0,72,13,0,31,24,11,N/A,N/A,30,96,33,34,22,7,4,2.14\r\n,Irwin Elementary,Victor Elementary,San Bernardino,700,1,11,3,0,1,75,0,11,1,84,0,0,37,0,7,32,30,N/A,92,31,38,26,2,3,2.08\r\n,Dos Palos High,Dos Palos Oro Loma Joint Unifi,Merced,700,3,4,0,0,0,73,0,21,0,100,15,4,14,41,13,N/A,N/A,27,94,39,30,22,7,3,2.05\r\n,Fairview Middle,Gonzales Unified,Monterey,700,2,0,0,0,1,95,0,3,0,88,13,37,39,38,10,N/A,29,28,98,46,25,18,10,2,1.97\r\n,Orange Center Elementary,Orange Center,Fresno,700,1,0,0,20,0,77,0,2,0,79,0,14,51,18,13,20,35,N/A,90,41,36,18,4,1,1.88\r\n,Chalone Peaks Middle,King City Union,Monterey,700,2,0,1,1,1,88,0,9,1,82,2,6,29,44,16,N/A,28,26,98,48,28,15,6,3,1.87\r\n,Bassett Senior High,Bassett Unified,Los Angeles,700,3,2,0,2,1,94,0,1,0,74,13,0,27,30,15,N/A,N/A,27,71,48,32,11,8,2,1.83\r\n,Upper Lake Elementary,Upper Lake Union Elementary,Lake,700,1,1,14,1,0,27,1,53,0,87,0,0,5,0,10,22,30,N/A,74,35,50,14,1,1,1.82\r\n,Crawford CHAMPS,San Diego Unified,San Diego,700,3,32,0,34,1,32,0,2,0,99,10,0,42,38,11,N/A,N/A,16,88,46,35,11,6,2,1.82\r\n,Marshall Elementary,San Diego Unified,San Diego,700,1,25,0,26,0,46,0,1,1,100,11,0,70,5,9,20,17,N/A,94,50,31,10,6,2,1.79\r\n,Community United Elementary,Oakland Unified,Alameda,700,1,26,0,4,0,66,1,1,0,49,42,1,58,9,6,21,26,N/A,60,55,29,10,2,4,1.72\r\n,Napa Valley Alternative,Napa Valley Unified,Napa,699,B,1,3,0,1,23,0,68,1,28,13,1,7,9,8,1,3,8,95,9,28,40,19,4,2.81\r\n,Academy of Arts and Sciences,San Francisco Unified,San Francisco,699,3,7,1,19,5,46,1,18,2,54,22,4,16,33,12,N/A,N/A,28,58,15,37,21,14,12,2.71\r\n,Chino High,Chino Valley Unified,San Bernardino,699,3,3,0,2,2,75,0,16,1,46,4,0,11,16,13,N/A,N/A,29,68,22,32,25,15,6,2.51\r\n,Tyler Skills Elementary,Stockton Unified,San Joaquin,699,1,19,4,6,2,51,2,15,0,99,3,0,12,6,13,29,27,25,97,17,36,32,9,5,2.5\r\n,Collis P. Huntington Elementary,Sacramento City Unified,Sacramento,699,1,14,0,17,0,51,4,7,7,100,5,0,33,8,23,24,25,N/A,86,23,36,27,6,8,2.4\r\n,Rosamond High,Southern Kern Unified,Kern,699,3,8,1,1,1,52,0,33,0,63,7,9,6,22,12,N/A,N/A,25,58,18,44,27,7,3,2.31\r\n,Fifty-Ninth Street Elementary,Los Angeles Unified,Los Angeles,699,1,46,0,0,0,54,0,1,0,100,4,0,23,15,14,17,16,N/A,53,24,42,23,10,1,2.2\r\n,Cesar Chavez Elementary,Greenfield Union Elementary,Monterey,699,1,0,0,1,1,95,0,2,0,100,0,8,58,17,6,24,29,N/A,100,40,30,18,7,4,2.04\r\n,Lindhurst High,Marysville Joint Unified,Yuba,699,3,3,2,18,1,48,1,26,0,85,9,1,25,31,13,N/A,N/A,24,71,39,29,23,6,2,2.02\r\n,Hunt Elementary,San Bernardino City Unified,San Bernardino,699,1,27,1,0,0,63,0,7,1,93,3,0,30,6,9,18,23,N/A,62,45,34,14,5,2,1.86\r\n,Vista Middle,Los Angeles Unified,Los Angeles,699,1,2,0,0,3,93,0,1,0,94,7,0,32,47,15,N/A,23,21,83,49,36,9,4,2,1.74\r\n,One Hundred Seventh Street Elementary,Los Angeles Unified,Los Angeles,699,1,25,0,0,0,75,0,0,0,62,4,0,45,18,9,16,17,N/A,22,55,26,14,5,0,1.69\r\n,,Pixley Union Elementary,Tulare,699,B,1,0,1,0,91,0,6,0,98,0,19,67,13,5,23,24,26,98,58,25,10,6,1,1.68\r\n,Good Hope Elementary,Perris Elementary,Riverside,699,1,3,0,0,0,93,0,5,0,100,3,0,63,8,8,20,24,N/A,96,54,28,16,2,0,1.67\r\n,Esperanza Elementary,Los Angeles Unified,Los Angeles,699,1,3,0,0,0,95,0,1,0,100,2,0,69,18,12,23,27,N/A,19,67,21,9,2,1,1.49\r\n,Placer County Special Education,Placer County Office of Educat,Placer,698,C,3,1,2,8,19,1,61,5,23,0,0,8,0,100,6,9,6,89,1,14,35,26,24,3.58\r\n,,El Dorado County Office of Edu,El Dorado,698,B,6,2,0,0,25,0,61,5,47,0,0,5,1,12,17,11,14,86,10,20,34,24,12,3.09\r\n,Alta Vista High,Mountain View-Los Altos Union,Santa Clara,698,B,8,0,8,3,54,6,21,2,32,0,0,25,22,11,N/A,N/A,15,95,29,20,22,22,8,2.6\r\n,Robert P. Ulrich Elementary,Mojave Unified,Kern,698,1,29,1,1,1,35,0,31,2,75,0,1,18,3,7,29,N/A,N/A,92,14,45,26,13,1,2.43\r\n,Needles Middle,Needles Unified,San Bernardino,698,1,4,19,1,0,26,0,50,1,69,0,0,0,0,16,N/A,24,22,74,14,45,28,12,1,2.41\r\n,Herbert Hoover Middle,San Jose Unified,Santa Clara,698,1,4,1,3,2,77,0,11,1,75,19,1,27,30,11,N/A,24,26,86,35,25,19,14,7,2.32\r\n,Lakeview Middle,Victor Valley Union High,San Bernardino,698,1,25,1,1,0,53,1,19,0,81,1,0,9,11,12,N/A,N/A,32,74,21,43,26,8,2,2.29\r\n,Florin Elementary,Elk Grove Unified,Sacramento,698,1,14,1,26,2,36,1,17,4,100,2,0,36,12,13,20,27,N/A,90,19,48,21,9,3,2.28\r\n,Rolling Hills Middle,Pajaro Valley Unified,Santa Cruz,698,1,1,0,0,1,95,0,3,0,90,17,10,40,44,13,N/A,23,21,41,36,34,12,16,3,2.16\r\n,,Centinela Valley Union High,Los Angeles,698,B,16,0,3,1,74,1,3,1,83,22,0,26,27,9,N/A,N/A,27,90,35,33,21,9,2,2.09\r\n,Coalinga High,Coalinga-Huron Joint Unified,Fresno,698,3,1,0,2,1,81,0,15,0,76,11,5,42,22,8,N/A,N/A,29,86,46,19,24,7,4,2.04\r\n,South High,Kern Union High,Kern,698,3,12,1,3,1,75,0,7,1,87,14,3,12,29,10,N/A,N/A,27,95,36,39,15,6,3,2.01\r\n,Vista Verde Middle,Greenfield Union Elementary,Monterey,698,1,1,0,0,0,97,0,2,0,100,4,5,40,39,8,N/A,24,22,98,39,34,17,5,4,2\r\n,Turner Elementary,Fresno Unified,Fresno,698,1,17,0,27,0,51,0,4,0,100,0,2,35,10,10,24,28,N/A,94,41,33,21,4,1,1.91\r\n,Washington Middle,Pasadena Unified,Los Angeles,698,1,15,0,0,1,83,0,1,0,90,6,0,22,36,15,N/A,20,17,89,56,25,10,6,2,1.73\r\n,West Park Elementary,West Park Elementary,Fresno,698,1,2,0,12,0,82,0,4,0,1,0,2,41,17,9,21,19,19,96,53,32,9,3,2,1.68\r\n,Haven Drive Middle,Arvin Union Elementary,Kern,698,1,0,0,0,0,94,0,6,0,86,8,17,42,43,6,N/A,25,26,91,56,27,12,4,1,1.67\r\n,Lawrence Cook Middle,Santa Rosa City Schools,Sonoma,698,1,2,1,8,0,78,0,9,1,86,6,6,47,31,15,N/A,N/A,22,93,60,23,12,4,0,1.61\r\n,Charles Maclay Middle,Los Angeles Unified,Los Angeles,698,1,4,0,0,0,94,0,1,0,100,4,0,30,44,15,N/A,26,21,67,61,25,10,2,1,1.57\r\n,Nueva Continuation High,Kern Union High,Kern,698,B,0,0,0,2,95,0,0,0,85,0,7,37,34,0,N/A,N/A,19,98,73,25,3,0,0,1.3\r\nY,The MET,Sacramento City Unified,Sacramento,697,3,10,1,2,0,27,1,50,7,41,13,0,7,3,8,N/A,N/A,16,91,6,16,45,18,15,3.2\r\nD,Antelope Valley Learning Academy,Palmdale Elementary,Los Angeles,697,3,18,3,2,1,26,1,49,0,38,0,0,0,0,23,7,8,2,95,4,26,37,21,13,3.14\r\n,Solano County Special Education,Solano County Office of Educat,Solano,697,C,10,1,7,9,25,3,44,1,39,0,0,14,0,100,6,8,N/A,82,9,19,36,24,12,3.09\r\n,,Fort Sage Unified,Lassen,697,B,2,6,0,0,9,0,81,1,61,0,0,0,0,12,17,14,8,84,6,39,37,11,7,2.75\r\n,Fairview Elementary,Hayward Unified,Alameda,697,1,30,1,7,6,44,0,10,2,76,0,0,26,8,13,28,27,N/A,90,23,24,35,15,3,2.51\r\n,Lucerne Valley Middle,Lucerne Valley Unified,San Bernardino,697,1,2,1,1,0,42,1,54,0,76,0,0,1,0,22,N/A,N/A,16,80,15,45,27,13,0,2.38\r\n,,Southern Kern Unified,Kern,697,B,11,1,1,1,50,0,32,1,70,5,7,14,13,13,26,26,24,64,19,48,22,10,1,2.26\r\n,Bijou Community,Lake Tahoe Unified,El Dorado,697,1,0,1,0,1,75,0,22,1,83,1,0,66,3,13,20,19,N/A,87,28,46,6,10,9,2.25\r\n,Deborah A. Williams Elementary,Fresno Unified,Fresno,697,1,24,0,2,0,59,1,12,0,100,1,0,17,5,5,29,29,N/A,76,21,40,34,4,2,2.25\r\n,Sassarini Elementary,Sonoma Valley Unified,Sonoma,697,1,0,1,3,1,70,0,22,1,71,1,0,67,3,17,19,25,N/A,95,42,23,16,14,6,2.19\r\n,Stella I. Hills Elementary,Bakersfield City,Kern,697,1,27,1,1,1,58,0,11,2,95,0,3,19,9,11,20,24,N/A,68,26,42,25,5,1,2.15\r\n,UCLA Community,Los Angeles Unified,Los Angeles,697,3,2,1,15,4,78,0,1,0,100,10,0,49,26,8,21,28,25,39,41,28,16,11,5,2.09\r\n,Wakefield Elementary,Turlock Unified,Stanislaus,697,1,1,0,1,0,86,0,9,1,100,1,6,62,4,12,18,24,N/A,99,40,45,11,3,1,1.82\r\n,,Compton Unified,Los Angeles,697,B,20,0,0,0,78,1,0,0,87,6,0,37,31,10,24,24,24,84,50,28,15,5,2,1.8\r\n,Empire Gardens Elementary,San Jose Unified,Santa Clara,697,1,2,0,2,0,92,0,1,1,94,2,0,69,12,6,27,26,N/A,83,50,31,12,5,1,1.77\r\n,Santee Elementary,Franklin-McKinley Elementary,Santa Clara,697,1,1,0,16,1,81,0,1,0,94,2,3,74,16,9,23,31,N/A,95,51,31,12,3,3,1.75\r\n,,Coachella Valley Unified,Riverside,697,B,0,1,0,0,97,0,2,0,95,8,14,56,23,11,24,24,22,91,55,29,11,4,2,1.67\r\n,Curtis Middle,San Bernardino City Unified,San Bernardino,697,1,13,0,2,0,78,0,5,0,99,6,0,27,33,10,N/A,N/A,23,79,55,28,13,3,1,1.67\r\n,Alpaugh Junior-Senior High,Alpaugh Unified,Tulare,697,3,0,0,0,0,91,0,9,0,96,0,9,55,26,5,N/A,N/A,13,97,62,26,6,7,0,1.57\r\n,Sal Castro Middle,Los Angeles Unified,Los Angeles,697,1,3,0,2,2,92,0,0,0,100,6,0,29,46,10,N/A,28,30,59,63,27,8,2,1,1.52\r\n,,Calaveras County Office of Edu,Calaveras,696,B,1,2,1,0,17,1,73,5,47,0,0,1,1,17,25,11,11,94,6,20,50,14,9,2.99\r\n,Starr King K-8,San Juan Unified,Sacramento,696,1,17,2,2,1,29,2,44,2,78,0,0,12,8,22,26,28,29,61,12,26,38,16,8,2.8\r\n,Willits High,Willits Unified,Mendocino,696,3,0,8,1,1,25,0,63,0,56,8,6,4,12,13,N/A,N/A,23,88,11,35,36,14,4,2.63\r\n,Natomas High,Natomas Unified,Sacramento,696,3,20,1,8,3,52,2,10,4,73,3,0,16,17,12,N/A,N/A,32,85,22,34,29,13,2,2.38\r\n,,San Lucas Union Elementary,Monterey,696,B,0,0,0,0,98,0,2,0,100,0,5,49,11,12,7,8,N/A,100,26,37,18,14,5,2.35\r\n,,Stockton Unified,San Joaquin,696,B,11,4,10,5,61,1,7,0,87,8,3,26,19,9,22,23,25,85,30,33,21,10,6,2.28\r\n,Victor Valley High,Victor Valley Union High,San Bernardino,696,3,26,0,1,1,54,1,15,1,75,9,0,12,12,14,N/A,N/A,26,80,25,38,30,6,2,2.22\r\n,Echo Valley Elementary,North Monterey County Unified,Monterey,696,1,1,1,1,1,78,0,16,1,78,0,10,54,7,5,27,28,N/A,99,37,25,23,12,4,2.22\r\n,Charles W. Eliot Middle,Pasadena Unified,Los Angeles,696,1,26,0,0,1,64,0,5,3,82,10,0,13,24,20,N/A,26,23,84,32,33,22,9,4,2.2\r\n,,Outside Creek Elementary,Tulare,696,B,0,0,2,0,60,0,38,0,77,0,0,15,13,3,14,11,N/A,100,29,33,30,7,1,2.18\r\n,Outside Creek Elementary,Outside Creek Elementary,Tulare,696,1,0,0,2,0,60,0,38,0,77,0,0,15,13,3,14,11,N/A,100,29,33,30,7,1,2.18\r\n,Hamilton Elementary,Hamilton Unified,Glenn,696,1,1,0,0,0,97,0,1,0,94,12,27,42,16,12,24,24,N/A,94,36,27,26,6,4,2.13\r\n,Leuzinger High,Centinela Valley Union High,Los Angeles,696,3,23,0,5,1,66,2,1,1,90,50,0,24,23,7,N/A,N/A,25,86,34,34,22,9,1,2.11\r\n,King Elementary,Stockton Unified,San Joaquin,696,1,7,1,3,1,86,0,1,0,100,5,5,44,23,5,31,32,30,82,41,33,13,8,5,2.05\r\n,Potrero Elementary,Mountain Empire Unified,San Diego,696,1,0,0,0,0,98,0,1,0,84,1,0,77,10,9,19,18,N/A,97,38,35,14,10,3,2.04\r\n,Washington Irving Middle,Los Angeles Unified,Los Angeles,696,1,1,0,4,6,88,0,1,0,88,11,0,21,36,19,N/A,15,24,65,37,33,22,6,2,2.04\r\n,Manuel A. Salinas Creative Arts Elementa,San Bernardino City Unified,San Bernardino,696,1,9,0,3,0,79,0,5,1,98,22,0,56,7,5,28,30,N/A,60,42,29,16,10,3,2.02\r\n,San Gorgonio High,San Bernardino City Unified,San Bernardino,696,3,14,1,3,1,70,1,10,0,97,9,0,21,32,10,N/A,N/A,29,79,39,34,17,7,2,2\r\n,Canoga Park Senior High,Los Angeles Unified,Los Angeles,696,3,5,0,3,2,82,0,7,0,85,12,0,26,43,15,N/A,N/A,29,66,49,26,13,9,3,1.91\r\n,De Anza Middle,Ontario-Montclair Elementary,San Bernardino,696,1,1,1,1,0,95,1,2,0,85,6,0,44,26,13,N/A,N/A,27,96,49,32,13,3,2,1.77\r\n,Hooper Avenue Elementary,Los Angeles Unified,Los Angeles,696,1,7,0,0,0,93,0,0,0,76,2,0,46,34,13,21,24,N/A,69,59,26,11,2,2,1.63\r\n,Green Oaks Academy,Ravenswood City Elementary,San Mateo,696,1,3,0,0,1,86,7,1,0,94,0,9,81,4,7,22,30,N/A,97,65,24,9,3,0,1.5\r\n,Mesa Verde High,San Juan Unified,Sacramento,695,3,6,3,2,2,23,1,63,1,58,4,0,6,13,13,N/A,N/A,28,77,11,34,28,23,4,2.75\r\n,,Westwood Unified,Lassen,695,B,2,3,0,0,18,0,77,0,46,0,0,3,4,18,5,4,5,39,8,39,37,16,0,2.61\r\n,,Antelope Valley Union High,Los Angeles,695,B,19,1,2,2,57,0,19,0,16,7,1,14,16,13,N/A,N/A,25,84,23,26,30,15,7,2.58\r\n,Barstow High,Barstow Unified,San Bernardino,695,3,14,3,1,2,47,1,29,2,61,18,0,10,10,11,N/A,N/A,27,95,17,33,35,9,6,2.54\r\n,Calexico High,Calexico Unified,Imperial,695,3,0,0,1,0,99,0,0,0,100,2,13,51,39,6,N/A,N/A,28,93,29,25,23,18,6,2.48\r\n,El Dorado Elementary,San Francisco Unified,San Francisco,695,1,35,0,10,7,29,8,3,4,77,3,3,26,4,13,18,21,N/A,78,18,35,38,7,2,2.41\r\n,Yorba Elementary,Pomona Unified,Los Angeles,695,1,17,0,2,1,73,0,7,1,87,2,0,35,5,11,26,25,N/A,85,27,43,22,6,2,2.13\r\n,North Monterey County Middle,North Monterey County Unified,Monterey,695,1,1,1,0,1,82,0,14,1,79,6,9,30,30,7,N/A,N/A,31,99,38,27,24,10,1,2.09\r\n,Ruth Brown Elementary,Palo Verde Unified,Riverside,695,1,9,0,1,0,61,0,29,0,71,4,1,14,4,7,27,32,N/A,43,37,40,15,6,2,1.96\r\n,Young Oak Kim Academy,Los Angeles Unified,Los Angeles,695,1,3,1,8,3,85,0,0,0,100,13,0,27,50,10,N/A,32,30,48,47,29,12,10,2,1.91\r\n,Carver Academy,Fresno Unified,Fresno,695,1,34,0,23,0,42,0,1,0,99,0,4,34,12,13,N/A,20,N/A,64,43,31,23,3,1,1.89\r\n,Hope Region Community,San Diego County Office of Edu,San Diego,695,B,12,2,0,0,77,2,5,0,98,0,0,51,5,9,,,,82,53,19,26,2,0,1.77\r\n,Ohlone Elementary,Pajaro Valley Unified,Santa Cruz,695,1,0,0,0,1,97,0,1,0,92,9,23,84,6,18,19,24,N/A,58,61,23,8,5,3,1.68\r\n,Los Angeles Academy Middle,Los Angeles Unified,Los Angeles,695,1,9,0,0,0,91,0,0,0,100,11,0,29,47,10,N/A,24,23,52,55,32,9,2,1,1.63\r\n,John H. Liechty Middle,Los Angeles Unified,Los Angeles,695,1,2,0,1,0,96,0,1,0,100,6,0,38,47,12,N/A,24,24,57,64,23,9,2,1,1.53\r\n,Jefferson High,Jefferson Union High,San Mateo,694,3,4,0,7,32,43,3,2,9,53,1,0,23,26,7,N/A,N/A,25,91,11,23,34,28,3,2.89\r\n,Denair High,Denair Unified,Stanislaus,694,3,0,1,0,0,42,0,54,3,46,7,1,11,20,10,N/A,N/A,28,94,19,29,23,14,14,2.76\r\n,Mt. Eden High,Hayward Unified,Alameda,694,3,11,1,12,15,48,5,6,1,61,19,0,19,30,8,N/A,N/A,30,83,18,33,27,18,3,2.54\r\n,Mount Miguel High,Grossmont Union High,San Diego,694,3,18,1,2,5,56,1,15,0,60,27,0,25,12,12,N/A,N/A,26,92,15,41,28,11,5,2.5\r\n,Westlake Middle,Oakland Unified,Alameda,694,1,49,0,20,1,22,0,6,1,58,25,0,21,18,16,N/A,26,25,44,28,30,25,9,8,2.39\r\n,Phoenix Continuation,Los Angeles Unified,Los Angeles,694,B,16,0,0,2,77,0,2,2,73,14,0,11,27,14,N/A,N/A,14,43,37,21,26,11,5,2.26\r\n,North Elementary,Tracy Joint Unified,San Joaquin,694,1,6,0,3,1,72,0,15,2,77,0,0,51,8,8,28,30,26,82,33,31,21,10,5,2.23\r\n,King Jr. (Martin Luther) Academic Middle,San Francisco Unified,San Francisco,694,1,21,1,44,6,21,5,1,0,81,17,1,20,34,19,N/A,24,24,57,18,57,15,8,2,2.19\r\nD,NOVA Academy - Coachella,Coachella Valley Unified,Riverside,694,3,0,1,0,0,96,0,3,0,88,0,0,23,45,7,N/A,N/A,20,90,33,35,22,7,3,2.11\r\n,Arroyo Elementary,Pomona Unified,Los Angeles,694,1,4,0,1,1,93,0,0,0,97,1,0,57,11,6,26,29,N/A,86,28,44,19,6,2,2.1\r\n,Washington Elementary,Pomona Unified,Los Angeles,694,1,3,0,1,0,93,0,1,0,96,0,0,63,12,5,26,31,N/A,83,29,47,18,5,1,2.01\r\n,Fontana High,Fontana Unified,San Bernardino,694,3,3,0,1,0,92,1,3,0,86,9,0,31,37,12,N/A,N/A,26,91,43,32,14,8,2,1.93\r\n,,Greenfield Union Elementary,Monterey,694,B,1,0,0,0,97,0,2,0,100,2,5,57,23,8,22,26,22,99,46,31,15,5,3,1.89\r\n,Enchanted Hills Elementary,Perris Elementary,Riverside,694,1,5,0,0,0,91,0,3,0,100,5,0,59,11,7,21,30,N/A,86,50,30,16,4,0,1.74\r\n,Santa Maria High,Santa Maria Joint Union High,Santa Barbara,694,3,0,0,0,2,93,0,3,0,83,0,18,35,42,9,N/A,N/A,19,90,63,15,15,6,2,1.68\r\n,Garfield Elementary,Redwood City Elementary,San Mateo,694,1,1,0,0,0,95,2,1,0,98,0,4,71,21,12,27,31,22,90,67,23,6,3,0,1.48\r\n,Cantua Elementary,Golden Plains Unified,Fresno,694,1,0,0,0,0,100,0,0,0,100,0,30,67,32,5,26,26,N/A,91,76,15,7,2,0,1.35\r\n,El Camino Junior High,Santa Maria-Bonita,Santa Barbara,694,1,0,0,0,2,96,0,1,0,100,12,19,52,32,6,N/A,N/A,29,100,79,14,5,2,0,1.31\r\n,Santa Clara County Special Education,Santa Clara County Office of E,Santa Clara,693,C,5,0,25,6,43,1,18,0,40,0,0,33,1,100,6,7,7,28,12,24,23,31,10,3.03\r\n,Fulton K-8,San Diego Unified,San Diego,693,1,48,0,5,9,32,2,0,4,100,14,0,21,14,21,21,22,18,79,12,39,24,20,5,2.67\r\n,Mission Bay High,San Diego Unified,San Diego,693,3,11,0,3,1,65,0,17,2,70,25,0,16,36,13,N/A,N/A,28,83,22,29,23,16,11,2.64\r\n,Oak Grove High,East Side Union High,Santa Clara,693,3,7,0,22,4,53,1,11,2,53,9,3,16,33,11,N/A,N/A,29,90,24,34,22,14,5,2.42\r\n,Lincoln Elementary,Lancaster Elementary,Los Angeles,693,1,34,1,1,1,47,0,13,1,86,5,0,24,4,8,31,30,N/A,100,26,30,32,9,3,2.32\r\n,Landmark Elementary,Pajaro Valley Unified,Santa Cruz,693,1,0,0,0,3,91,0,5,0,86,7,9,59,14,12,26,32,N/A,79,38,22,23,13,3,2.21\r\n,Arthur Hapgood Elementary,Lompoc Unified,Santa Barbara,693,1,5,0,3,0,79,0,11,1,89,5,2,38,13,15,19,19,N/A,93,31,35,22,8,5,2.2\r\n,,Dos Palos Oro Loma Joint Unifi,Merced,693,B,3,0,0,0,74,0,21,0,98,5,4,29,22,12,28,32,26,95,35,33,24,6,3,2.09\r\n,Del Rosa Elementary,San Bernardino City Unified,San Bernardino,693,1,24,0,2,0,62,2,8,1,98,4,0,33,4,9,27,31,N/A,63,33,37,21,7,2,2.09\r\n,Myra A. Noble Elementary,Bakersfield City,Kern,693,1,5,1,0,0,86,0,6,1,93,1,10,37,12,9,22,29,N/A,83,36,34,21,5,4,2.07\r\n,Fort Miller Middle,Fresno Unified,Fresno,693,1,13,1,11,0,67,0,8,0,100,7,2,18,20,12,N/A,N/A,28,79,32,38,26,4,1,2.05\r\n,San Jose High,San Jose Unified,Santa Clara,693,3,3,1,7,3,78,1,8,1,75,8,0,30,29,9,N/A,N/A,28,93,44,28,14,10,4,2.02\r\n,Sixth Avenue Elementary,Los Angeles Unified,Los Angeles,693,1,22,0,0,0,76,0,0,0,82,4,0,40,15,10,19,21,N/A,79,41,31,18,7,2,1.99\r\n,Carmela Elementary,South Whittier Elementary,Los Angeles,693,1,0,0,0,0,94,1,4,0,81,0,1,60,6,13,30,35,N/A,70,42,36,13,7,2,1.92\r\n,South Gate Senior High,Los Angeles Unified,Los Angeles,693,3,0,0,0,0,99,0,0,0,83,10,2,23,50,9,N/A,N/A,32,58,42,35,15,5,3,1.92\r\n,Lake Elementary,West Contra Costa Unified,Contra Costa,693,1,13,0,5,6,74,0,2,0,100,4,0,59,9,8,22,32,N/A,89,43,33,18,4,2,1.89\r\n,Rio Real Elementary,Rio Elementary,Ventura,693,1,1,0,0,0,95,1,3,0,100,0,17,70,12,2,26,29,N/A,70,56,19,13,8,5,1.87\r\n,Thompson Elementary,El Monte City Elementary,Los Angeles,693,C,0,0,24,0,76,0,0,0,95,0,5,67,0,100,8,9,N/A,95,40,50,5,0,5,1.8\r\n,Howard Inghram Elementary,San Bernardino City Unified,San Bernardino,693,1,24,0,2,0,69,0,2,1,95,12,0,36,20,9,28,33,N/A,51,45,35,15,5,0,1.8\r\n,Parlier Junior High,Parlier Unified,Fresno,693,1,0,0,1,0,99,0,1,0,96,2,34,56,24,9,N/A,N/A,21,84,51,27,13,5,2,1.8\r\n,Lynwood Middle,Lynwood Unified,Los Angeles,693,1,7,0,0,0,92,0,1,0,92,12,2,26,41,9,N/A,N/A,20,69,48,34,11,5,1,1.78\r\n,Norte Vista High,Alvord Unified,Riverside,693,3,2,0,2,0,87,0,7,1,76,6,0,41,26,10,N/A,N/A,31,95,51,29,15,4,1,1.76\r\n,Strathmore High,Porterville Unified,Tulare,693,3,0,0,0,0,82,0,17,0,71,0,15,31,35,5,N/A,N/A,22,95,61,15,17,5,2,1.72\r\n,Pixley Middle,Pixley Union Elementary,Tulare,693,1,1,0,1,0,91,0,4,0,98,0,19,52,29,4,N/A,23,26,100,58,27,8,6,1,1.65\r\n,Driffill Elementary,Oxnard,Ventura,693,1,0,1,0,0,98,0,0,0,97,0,2,68,13,8,29,35,N/A,92,59,26,9,5,1,1.64\r\n,Independence High (Alternative),Roseville Joint Union High,Placer,692,3,2,1,3,1,26,0,61,5,7,1,0,3,7,1,N/A,N/A,4,95,5,19,34,27,15,3.27\r\n,Rancho Learning Center (Alternative),Arcadia Unified,Los Angeles,692,3,5,0,19,2,44,0,28,0,7,0,0,7,5,7,,,,91,8,26,26,31,10,3.1\r\n,Weed High,Siskiyou Union High,Siskiyou,692,3,7,5,4,0,16,1,65,1,59,0,0,2,6,9,N/A,N/A,18,91,10,10,58,9,13,3.03\r\n,Valenzuela Elementary,Stockton Unified,San Joaquin,692,1,10,6,3,3,73,1,6,0,77,5,0,20,11,6,28,29,23,98,12,32,39,11,6,2.67\r\nD,City Arts and Tech High,San Francisco Unified,San Francisco,692,3,16,1,3,6,60,1,8,6,69,0,2,13,23,17,N/A,N/A,28,100,27,24,32,10,7,2.47\r\n,Fort Sage Middle,Fort Sage Unified,Lassen,692,1,0,4,0,0,8,0,85,4,77,0,0,0,0,12,N/A,N/A,7,77,10,45,35,10,0,2.45\r\n,Pinole Middle,West Contra Costa Unified,Contra Costa,692,1,26,0,11,7,41,1,13,0,62,13,0,16,21,18,N/A,N/A,27,85,16,48,19,15,2,2.39\r\n,California City High,Mojave Unified,Kern,692,3,22,1,1,1,36,0,32,6,69,0,1,8,16,13,N/A,N/A,24,84,22,32,32,12,1,2.37\r\nY,Alianza Charter,Pajaro Valley Unified,Santa Cruz,692,1,1,0,1,0,95,0,3,0,81,1,6,67,17,11,22,21,N/A,88,41,19,16,14,10,2.34\r\n,Nathaniel Narbonne Senior High,Los Angeles Unified,Los Angeles,692,3,17,0,3,7,64,2,6,1,70,16,0,11,32,11,N/A,N/A,28,59,33,27,22,13,5,2.3\r\n,Everett Middle,San Francisco Unified,San Francisco,692,1,22,1,7,5,54,1,7,0,74,11,2,39,17,22,N/A,18,17,45,18,54,17,11,1,2.23\r\n,Bloomington High,Colton Joint Unified,San Bernardino,692,3,4,0,1,1,88,0,5,0,78,12,0,20,32,12,N/A,N/A,28,92,30,36,22,8,3,2.17\r\n,Nokomis Elementary,Ukiah Unified,Mendocino,692,1,1,7,0,0,66,0,25,0,93,3,13,53,6,15,20,23,N/A,99,36,29,24,8,3,2.13\r\n,Cherryland Elementary,Hayward Unified,Alameda,692,1,12,0,2,3,74,2,5,1,88,0,4,47,19,3,32,31,N/A,89,30,42,21,5,2,2.08\r\n,Hueneme High,Oxnard Union High,Ventura,692,3,2,0,1,4,89,0,4,0,83,19,5,28,37,10,N/A,N/A,30,80,43,29,17,8,3,1.99\r\n,Jefferson Elementary,Lindsay Unified,Tulare,692,1,0,0,0,0,95,0,4,0,100,5,39,68,10,1,20,27,N/A,96,45,28,16,9,3,1.95\r\n,Hillcrest Drive Elementary,Los Angeles Unified,Los Angeles,692,1,44,1,0,0,54,0,0,0,100,3,0,37,7,11,15,12,N/A,46,45,27,18,7,3,1.94\r\n,Washington Middle,Vista Unified,San Diego,692,1,4,0,1,1,85,1,6,0,85,10,6,44,29,22,N/A,26,25,77,49,25,18,6,2,1.87\r\n,Benjamin Franklin Senior High,Los Angeles Unified,Los Angeles,692,3,1,1,3,3,91,0,1,0,85,16,0,19,45,13,N/A,N/A,29,80,47,31,14,6,2,1.86\r\n,James Monroe High,Los Angeles Unified,Los Angeles,692,3,3,0,3,3,86,1,4,0,100,11,0,26,51,13,N/A,N/A,30,66,52,27,11,7,3,1.82\r\n,Williams Elementary,Bakersfield City,Kern,692,1,7,1,1,0,87,0,3,1,97,0,11,48,14,8,21,25,N/A,63,52,31,9,4,5,1.79\r\n,Julia C. Lathrop Intermediate,Santa Ana Unified,Orange,692,1,0,0,1,0,99,0,0,0,93,8,2,58,32,13,N/A,24,23,96,71,20,7,1,1,1.41\r\n,Bruce (Robert) Elementary,Santa Maria-Bonita,Santa Barbara,692,1,1,0,0,0,98,0,0,0,100,9,16,74,12,6,28,27,N/A,100,74,17,7,1,1,1.37\r\n,Fortuna Union High,Fortuna Union High,Humboldt,691,2,1,4,1,1,17,0,75,0,5,0,0,6,4,17,N/A,N/A,25,94,12,26,39,15,8,2.81\r\n,,Willow Creek Elementary,Siskiyou,691,B,0,0,0,0,0,0,85,15,76,0,0,0,0,2,,,,73,3,47,37,13,0,2.6\r\n,Willow Creek Elementary,Willow Creek Elementary,Siskiyou,691,1,0,0,0,0,0,0,85,15,76,0,0,0,0,2,,,,73,3,47,37,13,0,2.6\r\nY,William Finch,Glenn County Office of Educati,Glenn,691,2,3,1,0,1,27,0,67,0,61,0,0,5,9,8,N/A,N/A,7,100,21,30,29,11,9,2.55\r\n,East Bakersfield High,Kern Union High,Kern,691,2,3,1,0,0,86,0,8,1,82,13,4,10,27,7,N/A,N/A,26,95,34,34,16,8,8,2.23\r\nD,Bert Corona Charter,Los Angeles Unified,Los Angeles,691,1,1,0,0,0,97,0,1,0,90,0,0,23,40,12,N/A,27,27,88,40,25,17,13,5,2.17\r\n,Ethel I. Baker Elementary,Sacramento City Unified,Sacramento,691,1,11,0,12,0,66,2,6,2,100,4,0,56,12,8,25,31,N/A,85,39,32,18,6,6,2.08\r\n,Cuyama Valley High,Cuyama Joint Unified,Santa Barbara,691,2,0,0,0,0,73,0,25,2,73,0,4,48,17,6,N/A,N/A,15,77,41,32,19,8,0,1.95\r\n,Perris High,Perris Union High,Riverside,691,2,11,0,1,0,83,0,3,1,88,6,1,24,38,9,N/A,N/A,34,100,45,30,17,5,4,1.94\r\n,Jack G. Desmond Middle,Madera Unified,Madera,691,1,3,1,1,0,85,0,9,0,80,8,10,21,32,10,N/A,N/A,29,99,44,31,20,4,2,1.89\r\n,H. A. Hyde Elementary,Pajaro Valley Unified,Santa Cruz,691,1,0,0,0,0,95,0,4,0,88,7,10,71,13,16,27,26,N/A,75,48,30,16,4,2,1.83\r\n,Bret Harte Elementary,Modesto City Elementary,Stanislaus,691,1,2,0,1,0,89,0,5,0,97,1,7,74,9,10,24,34,N/A,98,54,39,4,1,1,1.56\r\nD,Animo Ralph Bunche High,Los Angeles Unified,Los Angeles,691,2,1,0,0,0,99,0,0,0,99,0,0,38,53,9,,,,71,61,29,7,2,0,1.52\r\n,Rocklin Alternative Education Center,Rocklin Unified,Placer,690,2,0,0,1,0,15,1,73,9,22,4,0,1,1,2,N/A,N/A,26,96,5,16,34,34,11,3.29\r\n,Redding Community Day,Redding Elementary,Shasta,690,B,5,11,0,0,16,0,58,11,89,0,0,0,0,21,N/A,11,N/A,79,0,47,47,7,0,2.6\r\nD,Crescent View South Charter,Westside Elementary,Fresno,690,B,3,1,3,0,60,0,24,4,79,0,0,8,1,4,N/A,N/A,6,65,25,33,16,22,4,2.47\r\n,Oakwood Elementary,Lodi Unified,San Joaquin,690,1,22,0,21,3,32,1,18,0,86,6,0,23,4,22,18,20,N/A,83,20,34,32,9,5,2.46\r\n,Goshen Elementary,Visalia Unified,Tulare,690,1,3,0,2,0,84,0,10,0,100,3,5,41,8,9,26,29,N/A,92,27,40,24,5,3,2.19\r\n,Furman (Duane E.) High (Independent Stud,Madera Unified,Madera,690,B,8,2,0,0,72,0,18,0,77,4,3,11,27,4,N/A,N/A,16,98,38,34,25,0,4,1.99\r\n,Charles Leroy Lowman Special Education C,Los Angeles Unified,Los Angeles,690,C,9,1,2,4,69,0,15,0,58,0,0,60,1,100,6,5,8,48,44,27,19,6,3,1.98\r\n,Cabot Yerxa Elementary,Palm Springs Unified,Riverside,690,1,12,0,0,1,72,0,14,0,96,2,0,45,2,14,30,28,N/A,92,34,45,17,3,2,1.94\r\n,School for the Visual Arts and Humanitie,Los Angeles Unified,Los Angeles,690,2,1,0,9,5,83,1,1,0,100,11,0,30,49,8,N/A,N/A,20,58,47,31,9,11,2,1.9\r\n,Marco Antonio Firebaugh High,Lynwood Unified,Los Angeles,690,2,6,0,0,0,93,0,0,0,87,12,2,27,46,7,N/A,N/A,31,59,48,32,14,5,2,1.82\r\n,Bell Senior High,Los Angeles Unified,Los Angeles,690,2,0,0,0,0,98,0,1,0,100,12,0,25,54,11,N/A,N/A,27,69,51,31,11,4,2,1.75\r\n,Mountain View High,El Monte Union High,Los Angeles,690,2,0,0,6,0,93,0,1,0,91,3,3,34,39,9,N/A,N/A,24,99,54,32,10,3,1,1.66\r\n,Miguel Hidalgo Elementary,Fresno Unified,Fresno,690,1,2,0,16,0,79,0,3,0,100,1,9,57,15,10,25,29,N/A,88,62,21,15,2,0,1.56\r\n,Tranquillity High,Golden Plains Unified,Fresno,690,2,0,0,0,0,97,0,2,0,100,2,28,33,51,5,N/A,N/A,29,99,79,15,4,1,0,1.29\r\nD,R.A.A.M.P. Charter Academy,Antioch Unified,Contra Costa,689,1,86,0,1,0,8,0,5,0,84,0,0,0,0,15,24,17,15,89,0,19,56,19,7,3.13\r\n,Carson Senior High,Los Angeles Unified,Los Angeles,689,2,14,1,2,26,49,5,2,0,64,17,0,8,25,10,N/A,N/A,29,67,20,25,27,23,6,2.7\r\n,Solano Middle,Vallejo City Unified,Solano,689,1,31,0,1,23,32,2,5,3,69,9,0,14,20,14,N/A,27,27,86,17,34,29,18,3,2.56\r\n,Freeport Elementary,Sacramento City Unified,Sacramento,689,1,27,0,29,1,30,3,7,2,100,2,0,36,12,10,23,21,N/A,81,25,34,25,9,7,2.41\r\n,Foothill Ranch Middle,Twin Rivers Unified,Sacramento,689,1,24,1,5,2,33,2,26,4,86,16,0,21,14,21,N/A,25,25,86,18,40,30,10,3,2.4\r\n,Stagg Senior High,Stockton Unified,San Joaquin,689,2,13,5,10,3,54,1,14,0,74,13,2,12,18,12,N/A,N/A,26,79,27,33,26,8,5,2.33\r\nD,Options for Youth-San Bernardino,San Bernardino City Unified,San Bernardino,689,2,13,1,1,0,71,0,12,2,87,0,0,9,11,5,N/A,N/A,1,97,32,33,28,5,2,2.15\r\n,Watsonville High,Pajaro Valley Unified,Santa Cruz,689,2,0,0,1,1,93,0,4,0,77,12,11,34,39,12,N/A,N/A,28,69,43,28,15,11,3,2.03\r\n,McKinley Elementary,Stockton Unified,San Joaquin,689,1,5,2,4,13,74,0,1,0,99,7,9,46,18,8,30,31,26,99,41,34,14,6,5,2\r\n,Arleta High,Los Angeles Unified,Los Angeles,689,2,1,1,0,1,95,0,2,0,100,10,0,18,48,11,N/A,N/A,29,99,46,30,15,6,2,1.88\r\n,Pioneer Drive Elementary,Bakersfield City,Kern,689,1,4,0,0,0,86,0,9,0,97,0,8,37,20,7,21,27,N/A,50,43,35,16,4,2,1.87\r\n,Pinacate Middle,Perris Union High,Riverside,689,1,10,0,1,0,84,0,4,0,92,2,0,31,29,9,N/A,N/A,34,100,46,31,19,3,1,1.82\r\n,Tranquillity Elementary,Golden Plains Unified,Fresno,689,1,1,0,1,0,92,0,7,0,100,0,17,68,3,10,30,19,N/A,94,44,33,20,3,0,1.82\r\n,Weigand Avenue Elementary,Los Angeles Unified,Los Angeles,689,1,15,0,0,0,85,0,0,0,100,3,1,53,16,15,17,16,N/A,47,45,35,15,5,0,1.81\r\nD,LPS College Park,Oakland Unified,Alameda,689,2,15,0,0,0,81,1,0,0,97,0,0,41,34,6,N/A,N/A,26,75,62,22,12,1,2,1.6\r\n,Edward M. Downer Elementary,West Contra Costa Unified,Contra Costa,689,1,4,0,3,0,91,0,1,0,99,4,0,71,14,12,23,31,N/A,98,60,28,11,1,0,1.53\r\n,Sierra Intermediate,Santa Ana Unified,Orange,689,1,0,0,2,0,97,0,0,1,95,6,3,62,26,13,N/A,25,29,98,67,20,10,2,1,1.49\r\nY,Nueva Vista Language Academy,Delano Union Elementary,Kern,689,1,1,0,0,2,96,0,0,0,92,3,18,61,18,11,21,30,26,97,67,24,7,2,0,1.44\r\nD,Pacific View Charter,Oceanside Unified,San Diego,688,2,3,1,1,1,47,2,38,7,54,0,0,0,0,9,3,4,4,90,13,30,24,26,7,2.83\r\n,Ventura Islands High,Ventura Unified,Ventura,688,B,5,0,0,0,46,0,44,5,71,0,0,22,7,5,N/A,N/A,17,95,18,28,46,5,3,2.46\r\n,Hayward High,Hayward Unified,Alameda,688,2,21,1,5,4,54,4,10,1,66,12,1,18,26,7,N/A,N/A,31,82,26,30,27,13,5,2.4\r\n,Joshua Elementary,Lancaster Elementary,Los Angeles,688,1,42,0,1,1,45,0,9,1,89,3,0,22,3,13,25,30,N/A,100,29,31,28,11,1,2.25\r\n,Mary Buren Elementary,Guadalupe Union Elementary,Santa Barbara,688,1,0,0,0,0,97,0,2,0,97,4,18,54,11,9,27,27,N/A,82,40,27,21,7,5,2.09\r\n,Kirk Elementary,Fresno Unified,Fresno,688,1,21,0,4,0,72,0,2,0,100,0,5,31,10,7,27,26,N/A,38,44,32,19,1,4,1.9\r\n,Panorama City Elementary,Los Angeles Unified,Los Angeles,688,1,1,0,1,1,95,1,1,0,100,7,0,55,14,13,21,25,N/A,77,47,33,9,7,4,1.87\r\n,Alta California Elementary,Los Angeles Unified,Los Angeles,688,1,2,0,0,0,96,0,1,0,100,5,0,60,20,9,21,26,N/A,78,48,34,9,7,2,1.81\r\n,,Parlier Unified,Fresno,688,B,0,0,1,0,99,0,1,0,95,1,33,63,13,9,28,27,19,84,53,27,13,5,1,1.73\r\n,Henry T. Gage Middle,Los Angeles Unified,Los Angeles,688,1,0,0,0,0,99,0,0,0,100,11,1,22,49,9,N/A,30,27,76,52,31,11,4,2,1.72\r\n,Nystrom Elementary,West Contra Costa Unified,Contra Costa,688,1,26,0,1,0,69,3,1,0,99,3,0,51,9,8,19,20,N/A,74,46,42,8,2,1,1.7\r\n,,Semitropic Elementary,Kern,688,B,0,0,0,0,97,0,1,1,93,0,33,76,2,5,N/A,5,24,76,49,41,7,1,3,1.68\r\n,Roosevelt Elementary,Salinas City Elementary,Monterey,688,1,1,0,0,1,93,0,3,0,98,0,7,59,16,7,26,32,N/A,99,60,27,11,2,1,1.56\r\n,College View,Glendale Unified,Los Angeles,687,C,8,0,8,3,14,0,67,0,64,0,0,44,0,100,6,9,N/A,17,0,17,0,50,33,4\r\nD,Vista Real Charter High,Ventura County Office of Educa,Ventura,687,B,1,1,2,0,72,0,22,1,70,0,0,20,8,6,N/A,N/A,8,94,33,29,21,14,2,2.23\r\n,San Pasqual Middle,San Pasqual Valley Unified,Imperial,687,1,1,47,1,0,47,0,2,2,98,9,16,29,9,12,N/A,12,17,70,22,56,19,2,1,2.04\r\n,Marshall Middle,Pomona Unified,Los Angeles,687,1,5,0,2,1,90,0,1,0,93,4,0,36,28,11,N/A,30,32,82,36,45,13,5,2,1.92\r\n,Desert Springs Middle,Palm Springs Unified,Riverside,687,1,10,0,0,0,77,0,12,0,95,6,0,29,27,10,N/A,29,28,91,41,36,17,4,2,1.9\r\n,Radcliff Elementary,Pajaro Valley Unified,Santa Cruz,687,1,0,0,1,1,98,0,1,0,94,12,13,73,18,15,27,29,N/A,46,58,21,12,8,1,1.72\r\n,San Ardo Elementary,San Ardo Union Elementary,Monterey,687,1,0,0,0,0,97,0,3,0,100,0,0,84,0,16,12,15,N/A,27,65,10,20,5,0,1.65\r\n,Ark Independent Studies,Santa Cruz City High,Santa Cruz,686,2,4,0,4,2,24,0,59,6,27,6,2,6,6,8,,,,92,7,9,33,29,22,3.51\r\nD,California Pacific Charter School of Ker,Semitropic Elementary,Kern,686,2,12,2,3,3,33,1,38,1,27,1,0,2,5,6,N/A,5,24,72,13,23,36,16,12,2.92\r\n,Greer Elementary,San Juan Unified,Sacramento,686,1,33,1,2,1,48,1,10,4,97,0,0,32,7,13,24,25,N/A,46,16,33,30,16,5,2.6\r\n,Valley Academy of Arts and Sciences,Los Angeles Unified,Los Angeles,686,2,7,0,4,6,62,0,18,1,70,20,0,9,31,14,N/A,N/A,31,62,25,30,19,20,6,2.53\r\nD,Options for Youth-San Juan,San Juan Unified,Sacramento,686,2,14,1,2,0,27,1,45,7,79,0,0,6,4,9,N/A,N/A,1,93,17,30,40,8,4,2.52\r\n,West Point Elementary,Calaveras Unified,Calaveras,686,1,11,13,2,0,13,2,59,2,81,2,0,0,3,11,22,29,N/A,83,23,34,25,15,4,2.43\r\n,Montebello High,Montebello Unified,Los Angeles,686,2,0,0,0,0,96,0,2,0,83,11,0,17,44,10,N/A,N/A,26,75,30,38,20,8,3,2.16\r\n,John H. Glenn High,Norwalk-La Mirada Unified,Los Angeles,686,2,2,0,1,3,88,1,4,1,79,11,5,18,24,11,N/A,N/A,29,99,32,39,19,8,3,2.11\r\n,Armada Elementary,Moreno Valley Unified,Riverside,686,1,16,0,0,0,77,1,5,1,87,2,2,51,3,15,27,32,N/A,90,30,37,27,5,1,2.09\r\n,Soledad High,Soledad Unified,Monterey,686,2,1,0,1,2,93,0,3,0,88,12,2,38,29,8,N/A,N/A,30,99,41,30,15,10,4,2.07\r\n,Abraham Lincoln Senior High,Los Angeles Unified,Los Angeles,686,2,1,0,22,1,76,0,0,0,100,14,0,26,49,12,N/A,N/A,20,49,47,33,14,4,2,1.82\r\n,Bell Gardens High,Montebello Unified,Los Angeles,686,2,0,0,0,0,99,0,1,0,86,13,0,19,55,10,N/A,N/A,12,99,51,32,12,4,2,1.74\r\nD,Alliance College-Ready Middle Academy No,Los Angeles Unified,Los Angeles,686,1,32,0,0,0,67,0,1,0,97,0,0,22,30,8,N/A,32,33,99,51,38,10,1,0,1.61\r\nY,Hometech Charter,Paradise Unified,Butte,685,B,0,2,0,0,12,0,73,13,47,2,0,1,0,18,N/A,N/A,9,100,9,25,45,15,6,2.83\r\n,Taft Primary,Taft City,Kern,685,1,1,0,1,0,47,2,46,2,74,0,6,11,6,11,25,N/A,N/A,71,20,19,44,17,0,2.59\r\n,\"Martin Luther King, Jr. Elementary\",Oakland Unified,Alameda,685,1,63,0,9,1,14,1,8,2,78,23,0,22,2,21,17,19,N/A,41,33,26,19,15,6,2.35\r\n,Norwalk High,Norwalk-La Mirada Unified,Los Angeles,685,2,4,0,2,3,85,1,5,1,73,15,5,12,24,9,N/A,N/A,30,98,25,42,20,10,4,2.24\r\n,Mintie White Elementary,Pajaro Valley Unified,Santa Cruz,685,1,0,0,0,0,98,0,1,0,90,7,17,63,19,11,19,26,N/A,65,44,24,17,12,3,2.06\r\n,Elmhurst Community Prep,Oakland Unified,Alameda,685,1,31,0,1,0,64,3,0,0,51,28,0,31,28,11,N/A,29,27,33,45,25,17,8,4,2.01\r\n,,Gonzales Unified,Monterey,685,B,0,0,0,1,95,0,4,0,88,10,34,43,31,10,23,26,25,96,45,26,17,9,3,1.99\r\n,Valle del Sol Elementary,Coachella Valley Unified,Riverside,685,1,0,1,0,0,99,0,0,0,99,7,18,70,13,8,28,21,N/A,86,52,35,9,3,1,1.65\r\n,Evelyn Hanshaw Middle,Modesto City Elementary,Stanislaus,685,1,0,0,3,0,88,0,5,0,96,10,5,37,31,16,N/A,N/A,26,95,51,38,8,1,1,1.63\r\n,Mary McLeod Bethune Middle,Los Angeles Unified,Los Angeles,685,1,12,0,0,0,88,0,0,0,93,7,0,28,42,8,N/A,N/A,19,53,62,25,10,3,1,1.57\r\n,Woodville Elementary,Woodville Union Elementary,Tulare,685,1,0,0,0,0,96,0,4,0,99,0,15,83,8,3,19,24,N/A,73,65,25,5,2,2,1.51\r\nD,Doris Topsy-Elvord Academy,SBE - Doris Topsy-Elvord Acade,Los Angeles,684,1,50,0,1,1,30,4,3,9,75,0,0,6,6,7,,,,17,0,41,29,29,0,2.88\r\n,Imperial Ave. Holbrook High,Imperial Unified,Imperial,684,B,2,0,0,0,79,0,17,0,26,0,2,17,23,4,N/A,N/A,19,85,10,48,28,10,5,2.53\r\nD,Colegio New City,Long Beach Unified,Los Angeles,684,2,16,0,0,0,67,0,6,1,93,0,0,18,39,6,N/A,N/A,17,61,34,17,24,22,2,2.41\r\n,Adams Elementary,Stockton Unified,San Joaquin,684,1,17,4,22,2,45,1,10,0,92,6,1,29,15,17,28,27,30,91,26,31,30,7,7,2.38\r\n,Grace Patterson Elementary,Vallejo City Unified,Solano,684,1,41,0,2,7,48,0,2,0,86,0,0,32,8,9,29,27,N/A,92,19,41,30,6,3,2.33\r\n,Margaret Keating Elementary,Del Norte County Unified,Del Norte,684,1,0,56,0,0,10,0,31,2,85,10,0,0,0,20,22,9,N/A,88,15,58,19,6,2,2.21\r\n,Angeles Mesa Elementary,Los Angeles Unified,Los Angeles,684,1,50,0,0,0,50,0,0,0,100,1,0,24,8,21,16,17,N/A,38,31,32,28,7,3,2.19\r\n,Yerba Buena High,East Side Union High,Santa Clara,684,2,1,0,33,6,57,1,1,0,72,6,1,32,47,10,N/A,N/A,28,92,39,33,15,10,3,2.05\r\n,Castroville Elementary,North Monterey County Unified,Monterey,684,1,1,0,0,1,92,0,6,0,84,8,7,64,6,2,29,28,N/A,100,40,27,24,8,1,2.03\r\n,,Lindsay Unified,Tulare,684,B,0,0,3,0,90,0,6,0,100,7,25,50,18,4,22,28,25,97,44,26,20,7,3,1.99\r\n,Carle (William C.) High (Continuation),Konocti Unified,Lake,684,B,9,4,0,0,26,0,59,2,87,2,2,2,2,13,N/A,N/A,17,91,29,50,21,0,0,1.93\r\n,Phineas Banning Senior High,Los Angeles Unified,Los Angeles,684,2,2,0,0,1,94,1,1,0,85,12,0,18,44,14,N/A,N/A,27,69,48,30,13,6,3,1.85\r\nD,Alliance Media Arts and Entertainment De,Los Angeles Unified,Los Angeles,684,2,0,0,0,0,100,0,0,0,90,0,0,26,50,7,N/A,N/A,24,98,56,24,14,4,2,1.73\r\n,Semitropic Elementary,Semitropic Elementary,Kern,684,1,0,0,0,0,97,0,1,1,93,0,33,76,2,4,,,,76,49,41,7,1,3,1.68\r\n,,San Ardo Union Elementary,Monterey,684,B,0,0,0,0,97,0,3,0,100,0,0,83,0,17,12,15,N/A,28,62,14,19,5,0,1.67\r\n,,Golden Plains Unified,Fresno,684,B,0,0,1,0,97,0,2,0,100,0,25,59,24,5,21,19,29,97,69,20,9,2,0,1.44\r\nD,Crosswalk: Higher Education Learning Pat,Hesperia Unified,San Bernardino,684,2,6,0,0,0,35,0,59,0,55,0,0,10,0,17,,,,0,0,0,0,0,0,\r\nD,Thurgood Marshall Charter Middle,Los Angeles Unified,Los Angeles,683,1,76,1,0,0,10,1,0,11,70,0,0,4,0,15,N/A,28,34,87,7,28,38,21,7,2.94\r\n,Kern Valley High,Kern Union High,Kern,683,2,2,5,0,1,11,0,77,4,65,15,0,0,1,13,N/A,N/A,24,94,10,27,45,11,7,2.77\r\nD,Long Valley Charter,SBE - Long Valley Charter,Lassen,683,2,3,4,1,0,12,0,80,0,62,0,0,0,0,9,16,37,13,88,5,32,48,11,4,2.76\r\nD,Audeo Charter,San Diego Unified,San Diego,683,B,6,1,3,1,48,1,32,0,64,13,0,9,14,11,N/A,2,4,98,17,30,28,16,9,2.69\r\nD,North County Trade Tech High,Vista Unified,San Diego,683,2,2,0,0,0,57,2,35,3,72,0,0,16,13,15,N/A,N/A,15,85,18,22,46,8,6,2.63\r\n,Marin Oaks High,Novato Unified,Marin,683,B,19,0,4,0,41,0,28,9,59,0,0,13,28,6,N/A,N/A,14,100,22,33,26,15,4,2.44\r\nD,eCademy Charter at Crane,Turlock Unified,Stanislaus,683,2,2,1,2,1,45,1,47,1,16,2,1,8,9,3,N/A,N/A,11,98,20,40,28,7,4,2.34\r\nD,Anahuacalmecac University Preparatory Hi,Los Angeles Unified,Los Angeles,683,2,1,1,0,0,96,0,0,0,87,6,0,3,42,16,N/A,N/A,21,90,28,24,39,4,4,2.32\r\n,Elsa Widenmann Elementary,Vallejo City Unified,Solano,683,1,30,0,3,11,49,3,4,1,84,4,0,38,8,14,27,30,N/A,93,21,40,29,8,2,2.28\r\n,George L. Snowden Elementary,Farmersville Unified,Tulare,683,1,0,0,1,0,92,0,7,0,45,0,5,65,2,2,22,N/A,N/A,81,34,35,19,8,4,2.12\r\n,Southeast Middle,Los Angeles Unified,Los Angeles,683,1,0,0,0,0,99,0,0,0,92,9,1,22,41,10,N/A,33,30,68,45,30,18,6,2,1.9\r\n,Arellanes (Don Juan Bautista) Elementary,Santa Maria-Bonita,Santa Barbara,683,1,0,1,2,0,94,0,4,0,99,6,10,47,10,13,22,20,N/A,100,48,22,22,5,3,1.9\r\n,Alliance Academy,Oakland Unified,Alameda,683,1,23,0,2,1,70,4,0,1,45,27,0,40,26,9,N/A,31,29,42,59,21,10,6,4,1.74\r\nD,Latino College Preparatory Academy,East Side Union High,Santa Clara,683,2,0,0,0,0,100,0,0,0,97,0,0,73,19,4,N/A,N/A,21,92,66,18,11,3,2,1.58\r\n,,Woodville Union Elementary,Tulare,683,B,0,0,0,0,96,0,4,0,99,0,14,82,7,4,19,24,N/A,72,65,25,5,2,2,1.51\r\n,Vasquez High,Acton-Agua Dulce Unified,Los Angeles,682,2,1,1,1,0,31,0,62,1,32,0,0,6,4,16,N/A,N/A,24,76,6,26,24,36,7,3.13\r\nD,California Virtual Academy @ San Joaquin,Stockton Unified,San Joaquin,682,2,9,2,4,4,23,1,56,0,39,0,0,1,0,11,1,1,5,90,2,26,43,20,9,3.08\r\n,,Tulare County Office of Educat,Tulare,682,B,2,0,2,1,59,0,32,3,65,0,0,12,6,13,7,8,16,75,19,22,26,23,10,2.82\r\n,Jefferson Elementary,Taft City,Kern,682,1,1,0,1,0,61,1,36,1,84,0,9,27,3,3,26,N/A,N/A,58,14,33,35,17,0,2.55\r\n,,Needles Unified,San Bernardino,682,B,2,17,1,0,24,1,53,2,64,1,0,0,0,17,20,27,18,88,14,38,34,11,3,2.52\r\n,San Lorenzo High,San Lorenzo Unified,Alameda,682,2,18,0,8,6,57,2,6,1,55,4,1,20,37,8,N/A,N/A,29,70,21,36,24,17,3,2.46\r\nY,Stockton Health Careers Academy,Stockton Unified,San Joaquin,682,1,7,2,6,2,67,2,12,0,87,0,2,7,33,0,N/A,N/A,32,86,24,34,28,10,4,2.36\r\n,John D. Sloat Elementary,Sacramento City Unified,Sacramento,682,1,28,1,12,0,48,1,6,3,100,5,0,29,9,15,19,28,N/A,83,28,35,26,7,4,2.23\r\n,William Moreno Junior High,Calexico Unified,Imperial,682,1,0,0,0,0,99,0,1,0,99,4,16,63,27,9,N/A,N/A,27,96,37,26,21,12,4,2.2\r\n,Angel's Gate (Continuation),Los Angeles Unified,Los Angeles,682,B,5,0,0,0,76,1,15,3,76,11,0,5,26,3,N/A,N/A,27,89,35,32,21,9,3,2.14\r\n,Cesar Chavez Middle,Lynwood Unified,Los Angeles,682,1,1,0,0,0,98,0,0,0,90,15,1,32,42,7,N/A,31,32,66,43,34,15,5,1,1.87\r\n,Spanos (Alex G.) Elementary,Stockton Unified,San Joaquin,682,1,8,1,4,5,80,0,1,0,99,4,7,44,18,7,31,32,32,100,43,36,16,4,1,1.85\r\n,Martin Luther King,Monterey Peninsula Unified,Monterey,682,1,8,1,3,9,74,1,3,1,87,0,0,61,13,13,22,22,N/A,100,48,33,9,7,3,1.83\r\n,Moneta Continuation,Los Angeles Unified,Los Angeles,682,B,9,0,0,0,91,0,0,0,80,4,0,33,36,2,N/A,N/A,22,71,47,38,9,3,3,1.78\r\n,Walnutwood High (Independent Study),Folsom-Cordova Unified,Sacramento,681,B,9,1,6,1,14,2,65,1,29,4,0,7,12,10,,,,91,3,26,39,22,10,3.1\r\n,Antioch High,Antioch Unified,Contra Costa,681,2,18,3,3,3,46,1,27,0,68,3,0,14,16,12,N/A,N/A,22,72,20,37,25,13,5,2.44\r\n,Rancho Dominguez Preparatory,Los Angeles Unified,Los Angeles,681,2,26,1,1,6,62,3,2,0,80,12,0,9,21,10,N/A,37,28,70,27,40,14,15,3,2.27\r\n,Jamison (Donald C.) High (Continuation),Lemoore Union High,Kings,681,B,4,10,0,3,60,0,23,0,71,0,5,21,5,1,N/A,N/A,19,96,31,31,27,11,1,2.21\r\n,Heaton Elementary,Fresno Unified,Fresno,681,1,7,1,7,0,75,0,10,0,100,2,1,28,11,10,28,28,N/A,75,29,39,27,4,1,2.11\r\n,Bayview Elementary,West Contra Costa Unified,Contra Costa,681,1,18,0,9,5,65,1,2,0,99,2,0,58,12,7,22,32,N/A,93,32,44,17,7,1,2.01\r\n,Willowbrook Middle,Compton Unified,Los Angeles,681,1,36,0,0,0,62,0,0,0,79,8,0,23,30,13,N/A,22,22,88,49,28,18,4,2,1.82\r\n,Panorama High,Los Angeles Unified,Los Angeles,681,2,2,0,1,5,91,0,1,0,82,8,0,29,53,15,N/A,N/A,30,70,56,28,9,5,2,1.67\r\n,Rose Avenue Elementary,Oxnard,Ventura,681,1,1,0,0,0,99,0,0,0,95,1,1,69,14,10,28,32,N/A,94,57,27,12,3,1,1.64\r\n,Valley View Elementary,Coachella Valley Unified,Riverside,681,1,1,0,0,0,98,0,0,0,100,3,16,71,4,9,28,26,N/A,92,60,28,8,2,2,1.59\r\nD,California Virtual Academy at Santa Ysab,Spencer Valley Elementary,San Diego,680,2,12,0,2,0,41,0,45,0,37,0,0,0,0,2,N/A,N/A,3,84,9,44,21,21,5,2.67\r\n,Biggs High,Biggs Unified,Butte,680,2,0,3,1,0,43,0,50,3,56,8,3,14,17,17,N/A,N/A,18,91,9,42,30,12,7,2.67\r\nD,Pacific View Charter,Loleta Union Elementary,Humboldt,680,2,6,12,0,0,18,1,53,2,68,0,0,3,1,19,2,2,3,97,9,37,38,11,4,2.63\r\n,Fairfax Middle,Fairfax Elementary,Kern,680,1,2,0,2,0,87,0,6,0,89,13,7,26,29,10,N/A,22,24,96,32,35,22,8,3,2.14\r\n,Fillmore Elementary,Stockton Unified,San Joaquin,680,1,5,1,3,1,82,0,8,0,99,5,6,48,20,8,29,28,31,89,42,32,14,5,7,2.05\r\n,Central Elementary,Escondido Union,San Diego,680,1,3,0,1,0,92,0,4,0,92,7,2,74,7,12,23,30,N/A,84,63,21,10,4,2,1.6\r\n,,Alta Vista Elementary,Tulare,680,B,0,1,2,0,76,3,17,1,88,0,15,58,4,4,19,25,22,90,60,29,9,1,1,1.54\r\n,Alta Vista Elementary,Alta Vista Elementary,Tulare,680,1,0,1,2,0,75,3,18,1,88,0,15,58,4,4,19,25,22,91,60,29,9,1,1,1.53\r\n,Huron Elementary,Coalinga-Huron Joint Unified,Fresno,680,1,0,0,3,0,96,0,0,0,100,0,6,81,8,9,24,32,N/A,92,75,17,6,2,0,1.35\r\nD,California Virtual Academy @ Jamestown,Jamestown Elementary,Tuolumne,679,1,4,3,2,1,24,0,65,0,45,0,0,0,0,10,1,1,3,91,2,24,34,26,14,3.26\r\n,Claremont Middle,Oakland Unified,Alameda,679,1,66,0,4,1,16,0,11,1,67,26,0,7,5,17,N/A,17,17,40,19,25,30,17,10,2.75\r\n,Chaparral High,Snowline Joint Unified,San Bernardino,679,B,3,0,1,0,51,0,37,0,71,0,0,16,10,3,N/A,N/A,20,79,16,42,28,9,5,2.45\r\n,Pittsburg Senior High,Pittsburg Unified,Contra Costa,679,2,22,0,4,7,56,2,7,1,70,0,0,21,24,7,N/A,N/A,30,81,24,31,27,14,4,2.44\r\nD,Arroyo Paseo Charter High,San Diego Unified,San Diego,679,2,15,0,1,1,76,0,6,0,86,0,0,43,27,13,N/A,N/A,15,72,35,30,24,7,5,2.18\r\n,Rosa Parks Middle,Sacramento City Unified,Sacramento,679,1,23,0,23,2,39,5,5,3,100,5,0,29,26,19,N/A,N/A,23,91,34,33,18,9,5,2.18\r\n,King Elementary,Fresno Unified,Fresno,679,1,26,0,21,0,51,0,2,0,100,0,5,43,10,11,18,25,N/A,50,43,33,19,2,3,1.89\r\nD,King-Chavez Community High,San Diego Unified,San Diego,679,2,2,0,0,0,96,0,1,0,100,12,0,42,44,5,N/A,N/A,23,70,45,35,14,4,2,1.82\r\n,Karl F. Clemens Elementary,Wasco Union Elementary,Kern,679,1,2,0,1,0,94,0,3,0,91,0,11,57,7,14,29,24,N/A,95,44,39,11,4,2,1.81\r\n,Robert Louis Stevenson Middle,Los Angeles Unified,Los Angeles,679,1,0,0,0,0,100,0,0,0,90,9,1,26,48,12,N/A,21,21,49,57,27,10,3,2,1.67\r\n,Toro Canyon Middle,Coachella Valley Unified,Riverside,679,1,0,1,0,0,98,0,0,0,93,12,20,51,38,15,N/A,N/A,22,89,69,20,8,2,1,1.46\r\n,San Joaquin Elementary,Golden Plains Unified,Fresno,679,1,0,0,1,0,97,0,1,0,100,0,26,68,15,4,19,18,N/A,99,69,19,10,1,0,1.44\r\n,Jesse G. Sanchez Elementary,Alisal Union,Monterey,679,1,0,0,0,0,100,0,0,0,99,0,9,95,0,3,29,N/A,N/A,89,72,18,6,2,1,1.42\r\n,Kennedy Gardens,Calexico Unified,Imperial,678,1,0,0,0,0,100,0,0,0,98,2,10,78,15,12,25,27,N/A,95,26,30,22,15,7,2.49\r\n,Kit Carson Middle,Sacramento City Unified,Sacramento,678,1,16,0,6,1,57,1,14,5,100,8,0,21,17,20,N/A,N/A,27,86,25,35,21,10,9,2.43\r\n,Bowman Elementary,Hayward Unified,Alameda,678,1,8,1,7,6,71,4,4,0,78,0,1,53,14,9,29,27,N/A,82,25,38,22,13,2,2.3\r\n,Silverado High,Victor Valley Union High,San Bernardino,678,2,26,1,2,1,57,1,11,2,76,8,0,11,20,13,N/A,N/A,29,91,25,35,32,6,2,2.27\r\nD,Options for Youth-Victorville Charter,Victor Valley Union High,San Bernardino,678,2,11,1,1,0,64,0,19,2,81,0,0,10,7,4,N/A,1,1,96,29,30,32,6,3,2.26\r\n,Golden Valley Middle,San Bernardino City Unified,San Bernardino,678,1,17,0,0,1,69,0,9,1,96,8,0,20,21,14,N/A,31,29,76,34,33,22,8,4,2.15\r\n,Monroe (Albert F.) Middle,Inglewood Unified,Los Angeles,678,1,34,0,0,0,64,1,0,0,92,5,0,11,0,19,N/A,32,23,91,36,33,23,5,3,2.05\r\n,,Inyo County Office of Educatio,Inyo,678,B,17,3,0,0,67,0,4,3,95,0,0,0,0,1,2,N/A,17,51,40,36,12,10,2,1.97\r\n,Hawthorne High,Centinela Valley Union High,Los Angeles,678,2,15,0,1,1,77,1,2,1,85,7,0,31,23,13,N/A,N/A,27,92,40,32,21,6,1,1.96\r\n,,South Monterey County Joint Un,Monterey,678,B,0,0,1,1,90,0,7,0,70,0,5,29,43,12,N/A,N/A,27,93,50,28,13,4,5,1.87\r\n,South East High,Los Angeles Unified,Los Angeles,678,2,1,0,0,0,98,0,0,0,100,10,1,27,49,9,N/A,N/A,32,61,46,31,15,4,3,1.86\r\n,George Washington Elementary,Stockton Unified,San Joaquin,678,1,9,7,2,1,79,0,1,0,100,2,6,40,21,6,31,29,29,79,44,37,13,5,1,1.84\r\n,Loma Vista Elementary,Salinas City Elementary,Monterey,678,1,2,0,1,7,86,0,4,0,90,0,8,56,16,7,24,30,N/A,99,49,27,17,5,2,1.83\r\n,Mira Monte High,Kern Union High,Kern,678,2,7,0,1,0,87,0,4,0,88,19,4,15,37,10,N/A,N/A,28,95,48,32,12,4,3,1.82\r\n,Fremont Elementary,Bakersfield City,Kern,678,1,15,0,0,0,80,0,5,0,98,0,11,42,17,5,22,29,N/A,40,45,37,14,4,1,1.78\r\nD,Alliance College-Ready Academy High No.,Los Angeles Unified,Los Angeles,678,2,34,0,0,0,64,0,2,0,83,0,0,27,28,9,N/A,N/A,27,99,54,25,15,4,2,1.76\r\n,James Marshall Elementary,Modesto City Elementary,Stanislaus,678,1,3,0,9,0,80,1,3,1,98,2,3,66,8,12,22,30,N/A,92,48,48,3,1,1,1.6\r\n,Madison Elementary,Stockton Unified,San Joaquin,677,1,12,4,5,4,53,0,21,0,85,3,1,16,7,8,28,29,31,90,16,41,25,13,5,2.51\r\n,Colton High,Colton Joint Unified,San Bernardino,677,2,6,0,2,1,81,0,9,1,69,12,0,15,20,11,N/A,N/A,28,94,23,32,31,9,6,2.44\r\n,Monterey County Special Education,Monterey County Office of Educ,Monterey,677,C,2,0,3,3,69,0,19,2,59,0,1,28,20,100,2,N/A,N/A,94,35,26,22,12,5,2.27\r\n,Taft Elementary,Stockton Unified,San Joaquin,677,1,15,1,7,4,69,0,3,0,89,3,5,29,15,9,26,25,22,75,31,34,17,13,5,2.27\r\n,Palmdale High,Antelope Valley Union High,Los Angeles,677,2,16,0,1,1,71,0,11,0,17,3,1,21,25,15,N/A,N/A,30,82,37,29,22,8,4,2.13\r\n,Martin Luther King Jr. Middle,San Bernardino City Unified,San Bernardino,677,1,18,1,1,0,74,2,3,1,97,9,0,28,30,13,N/A,24,20,69,43,29,13,4,12,2.13\r\n,Sylmar Senior High,Los Angeles Unified,Los Angeles,677,2,3,0,0,0,94,0,2,0,80,12,0,19,44,12,N/A,N/A,27,66,48,28,15,7,2,1.86\r\n,Belle Haven Elementary,Ravenswood City Elementary,San Mateo,677,1,11,0,1,1,79,8,0,0,89,0,3,68,11,13,23,32,N/A,97,56,27,11,5,1,1.69\r\n,Acalanes Center for Independent Study,Acalanes Union High,Contra Costa,676,2,0,0,6,0,6,0,76,12,18,15,0,3,12,0,N/A,N/A,4,94,0,6,23,42,29,3.94\r\n,Sonoma County Special Education,Sonoma County Office of Educat,Sonoma,676,C,2,1,3,0,35,1,56,1,50,0,0,16,5,100,9,9,N/A,76,12,21,25,25,16,3.11\r\nD,Valley Arts and Science Academy (VASA),Fresno Unified,Fresno,676,1,6,1,0,1,67,0,21,2,80,0,0,20,0,5,14,15,N/A,96,12,19,39,18,11,2.96\r\nD,Norton Space and Aeronautics Academy,San Bernardino County Office o,San Bernardino,676,1,19,0,3,0,67,0,9,1,69,0,0,39,0,10,25,25,N/A,96,10,45,24,14,8,2.65\r\n,Hillside Elementary,San Lorenzo Unified,Alameda,676,1,30,0,3,2,58,1,3,2,74,2,0,47,8,9,27,31,N/A,72,16,41,27,14,2,2.46\r\n,Harrison Elementary,Stockton Unified,San Joaquin,676,1,9,4,15,4,60,0,8,0,99,4,2,37,13,14,23,28,30,94,26,38,18,10,8,2.35\r\nY,Castle Rock,Del Norte County Office of Edu,Del Norte,676,B,0,10,2,0,9,0,77,2,59,7,0,2,1,16,16,N/A,N/A,99,11,59,19,6,4,2.31\r\n,Montezuma Elementary,Stockton Unified,San Joaquin,676,1,9,2,8,3,73,0,5,0,99,4,2,39,15,10,31,26,30,70,37,29,19,10,6,2.18\r\n,August Elementary,Stockton Unified,San Joaquin,676,1,3,6,3,0,80,0,7,0,99,3,7,43,21,9,30,31,29,74,39,34,15,6,5,2.04\r\n,Miramonte Elementary,Los Angeles Unified,Los Angeles,676,1,1,0,0,0,99,0,0,0,89,4,1,48,26,8,18,20,N/A,60,51,28,10,4,8,1.89\r\n,San Fernando Senior High,Los Angeles Unified,Los Angeles,676,2,1,1,0,0,97,0,1,0,100,11,0,24,49,13,N/A,N/A,29,60,57,28,11,3,1,1.65\r\nY,Clovis Online Charter,Clovis Unified,Fresno,675,2,3,2,4,0,37,1,51,2,31,2,0,3,4,3,,,,93,8,15,39,22,16,3.23\r\n,San Diego County Special Education,San Diego County Office of Edu,San Diego,675,C,4,0,4,9,70,4,9,0,39,0,0,70,0,100,1,N/A,N/A,83,11,37,16,16,21,3\r\nD,Frederick Douglass Academy Middle,Los Angeles Unified,Los Angeles,675,1,92,1,0,0,6,0,0,0,79,0,0,4,1,9,N/A,28,27,92,5,33,42,15,5,2.81\r\n,Drew (Charles) College Preparatory Acade,San Francisco Unified,San Francisco,675,1,71,1,1,1,8,7,1,4,83,10,0,5,1,11,17,25,N/A,88,18,27,41,12,2,2.53\r\n,Franklin Middle,Vallejo City Unified,Solano,675,1,32,1,2,12,43,2,8,1,72,6,0,12,25,10,N/A,29,27,94,20,33,28,14,4,2.48\r\n,Parklane Elementary,Lodi Unified,San Joaquin,675,1,15,0,34,7,34,2,5,0,92,0,1,50,2,8,27,N/A,N/A,82,27,32,29,8,5,2.33\r\nD,Early College Academy for Leaders and Sc,Los Angeles Unified,Los Angeles,675,2,1,0,1,3,91,0,1,0,78,4,0,16,46,13,N/A,N/A,26,94,35,30,22,8,5,2.16\r\n,Moreno Valley High,Moreno Valley Unified,Riverside,675,2,14,0,2,2,75,1,5,1,83,9,1,21,37,10,N/A,N/A,28,86,31,36,25,7,1,2.12\r\n,,Palo Verde Unified,Riverside,675,B,8,1,1,1,62,0,27,0,66,5,2,10,9,11,24,28,22,66,32,40,18,7,2,2.07\r\n,Elizabeth Terronez Middle,Fresno Unified,Fresno,675,1,10,0,15,1,70,0,3,0,100,8,3,23,26,14,N/A,N/A,17,82,34,37,22,6,2,2.05\r\n,Franklin High,Stockton Unified,San Joaquin,675,2,8,6,7,2,70,0,7,0,76,20,5,17,32,7,N/A,28,26,76,39,37,13,6,5,2\r\n,Romero Elementary,Gustine Unified,Merced,675,1,0,1,2,0,84,0,14,0,84,0,7,68,4,11,17,19,N/A,100,41,30,19,7,3,2\r\n,Pacific High,San Bernardino City Unified,San Bernardino,675,2,17,0,3,1,70,0,6,0,94,6,0,21,33,11,N/A,N/A,22,73,45,30,18,6,1,1.88\r\n,Bunche Middle,Compton Unified,Los Angeles,675,1,13,0,0,0,87,0,0,0,90,7,0,39,36,10,N/A,21,19,83,54,29,11,4,2,1.7\r\n,Sierra Vista Elementary,Arvin Union Elementary,Kern,675,1,0,0,0,0,97,0,3,0,92,2,19,75,13,10,23,28,N/A,91,56,28,10,5,1,1.68\r\nD,Animo Locke Charter High School #1,Los Angeles Unified,Los Angeles,675,2,14,0,0,0,83,0,1,0,96,0,0,42,25,8,N/A,N/A,23,59,53,33,12,2,0,1.64\r\nD,Film and Theatre Arts Charter High,Los Angeles Unified,Los Angeles,675,2,1,0,0,0,76,0,0,0,0,0,0,30,40,6,N/A,N/A,19,94,71,13,13,3,0,1.48\r\nD,ICEF Inglewood Middle Charter Academy,Inglewood Unified,Los Angeles,674,1,95,0,0,0,5,0,0,0,58,0,0,2,0,9,N/A,17,30,1,0,0,67,33,0,3.33\r\nD,Ipakanni Early College Charter,Feather Falls Union Elementary,Butte,674,2,0,35,0,0,30,0,20,15,100,0,0,0,0,15,N/A,N/A,9,60,0,42,33,25,0,2.83\r\nD,New Designs Charter School-Watts,Los Angeles Unified,Los Angeles,674,2,37,0,0,0,61,0,0,2,85,0,0,38,15,6,,,,41,18,28,17,34,4,2.8\r\n,Mountain Empire High,Mountain Empire Unified,San Diego,674,2,1,1,0,0,46,0,9,0,55,12,0,27,6,12,N/A,N/A,21,99,19,31,29,14,7,2.59\r\n,Ygnacio Valley High,Mt. Diablo Unified,Contra Costa,674,2,5,0,6,4,63,1,18,2,69,7,0,31,33,10,N/A,N/A,27,72,27,28,16,19,9,2.53\r\n,Mark Hopkins Elementary,Sacramento City Unified,Sacramento,674,1,24,0,20,3,41,4,2,4,100,4,0,45,7,17,27,29,N/A,89,27,39,22,8,4,2.24\r\n,Cleveland Elementary,San Francisco Unified,San Francisco,674,1,4,1,9,6,75,1,1,1,90,5,3,76,6,16,19,24,N/A,73,37,33,19,9,2,2.06\r\nD,Gompers Preparatory Academy,San Diego Unified,San Diego,674,2,15,0,4,1,78,1,0,0,99,0,0,37,33,15,N/A,32,28,90,38,36,16,6,4,2.02\r\n,James Lick High,East Side Union High,Santa Clara,674,2,2,1,7,6,78,1,6,0,68,2,2,27,32,11,N/A,N/A,30,87,44,32,16,6,2,1.9\r\n,Lawrence Elementary,Lodi Unified,San Joaquin,674,1,0,1,5,1,86,0,6,0,96,7,7,67,12,9,25,30,N/A,78,47,34,15,2,2,1.78\r\n,Willows High,Willows Unified,Glenn,673,2,1,3,4,0,43,1,46,0,50,0,1,8,30,13,N/A,N/A,29,92,26,27,26,16,5,2.48\r\n,,Mojave Unified,Kern,673,B,25,1,1,1,40,0,27,3,76,2,1,12,11,10,28,28,24,82,22,39,27,10,2,2.33\r\n,Ruus Elementary,Hayward Unified,Alameda,673,1,7,0,12,8,64,4,4,1,80,0,0,45,14,6,29,31,N/A,77,25,38,19,16,3,2.33\r\n,Park Elementary,Hayward Unified,Alameda,673,1,8,0,8,4,69,5,4,2,79,0,2,49,13,4,30,31,N/A,82,24,41,20,11,4,2.31\r\n,Columbia Middle,Adelanto Elementary,San Bernardino,673,1,32,1,1,0,55,0,7,4,100,6,0,15,14,16,N/A,N/A,28,96,24,42,24,6,5,2.26\r\n,Riverview Middle,Mt. Diablo Unified,Contra Costa,673,1,14,0,3,4,69,1,7,1,87,2,0,33,28,16,N/A,18,20,76,42,30,15,9,4,2.03\r\nY,Nightingale Charter,Stockton Unified,San Joaquin,673,1,22,2,4,3,69,0,0,0,93,2,3,46,13,2,20,26,N/A,68,49,33,11,3,4,1.81\r\n,Sun Valley Middle,Los Angeles Unified,Los Angeles,673,1,1,0,0,1,96,0,1,0,100,5,0,31,40,13,N/A,19,17,77,49,31,12,5,2,1.81\r\n,Hollenbeck Middle,Los Angeles Unified,Los Angeles,673,1,1,0,0,0,98,0,1,0,89,10,2,21,46,15,N/A,21,21,55,54,30,11,4,1,1.69\r\n,Pinole Valley High,West Contra Costa Unified,Contra Costa,672,2,22,0,13,9,36,1,18,0,47,13,0,15,17,11,N/A,N/A,32,80,11,42,23,20,4,2.66\r\n,Manhattan Place Elementary,Los Angeles Unified,Los Angeles,672,1,63,1,0,0,36,0,0,0,83,2,0,15,6,12,16,13,N/A,71,16,46,34,4,0,2.25\r\n,Madrone High (Continuation),San Rafael City High,Marin,672,B,3,5,3,0,67,0,21,0,77,3,0,18,38,13,N/A,N/A,14,69,33,30,26,11,0,2.15\r\n,Hoover High,San Diego Unified,San Diego,672,2,11,0,15,0,69,0,2,1,99,14,0,31,47,11,N/A,N/A,28,71,42,32,15,7,5,2.01\r\n,Lower Lake High,Konocti Unified,Lake,672,2,4,4,1,0,29,0,55,5,84,5,4,11,9,14,N/A,N/A,23,97,30,49,17,2,2,1.97\r\n,Beyer Elementary,San Ysidro Elementary,San Diego,672,1,1,0,0,0,97,0,1,0,90,2,1,87,4,16,20,24,N/A,96,43,34,15,7,1,1.9\r\n,Columbia Elementary,Fresno Unified,Fresno,672,1,14,0,8,0,76,0,2,0,100,1,3,40,10,10,20,22,N/A,74,48,26,20,4,2,1.87\r\n,Le Grand High,Le Grand Union High,Merced,672,2,1,0,1,0,90,0,5,0,99,0,14,35,35,4,N/A,N/A,26,99,54,20,16,8,2,1.83\r\n,Cesar E Chavez Elementary,Parlier Unified,Fresno,672,1,0,0,0,0,100,0,0,0,94,0,37,69,3,8,29,23,N/A,80,49,32,14,5,0,1.75\r\n,Business and Technology at Central Regio,Los Angeles Unified,Los Angeles,672,1,5,0,0,0,95,0,0,0,95,4,1,44,36,11,N/A,25,23,56,57,27,11,4,1,1.64\r\n,El Camino Real Science and Technology Ac,Greenfield Union Elementary,Monterey,672,1,0,0,0,0,99,0,1,0,100,1,2,71,17,6,23,29,N/A,100,58,30,7,3,2,1.61\r\n,Valley High,Delano Joint Union High,Kern,672,B,0,0,0,0,100,0,0,0,100,0,5,40,31,3,N/A,N/A,13,66,76,18,3,3,0,1.32\r\n,Laurel Ruff Center,San Juan Unified,Sacramento,672,C,13,8,3,3,15,0,60,0,65,0,0,3,0,100,,,,0,0,0,0,0,0,\r\n,East Hills Academy,Sweetwater Union High,San Diego,671,C,2,2,5,10,56,2,23,0,63,6,0,34,5,95,N/A,N/A,3,79,14,14,33,24,14,3.1\r\nD,Kaplan Academy of California - North Cen,Tracy Joint Unified,San Joaquin,671,2,6,3,7,1,24,3,46,0,15,0,0,3,1,9,N/A,N/A,17,64,9,26,35,23,7,2.93\r\n,Elk Creek Junior-Senior High,Stony Creek Joint Unified,Glenn,671,2,2,37,0,0,12,0,41,2,76,0,0,2,0,7,N/A,N/A,9,88,19,39,31,3,8,2.42\r\n,De Anza Senior High,West Contra Costa Unified,Contra Costa,671,2,26,0,14,7,41,1,11,0,58,10,0,19,20,17,N/A,N/A,29,75,21,38,24,14,2,2.39\r\n,Bret Harte Middle,Oakland Unified,Alameda,671,1,39,0,14,3,32,3,6,1,81,25,0,20,18,16,N/A,25,26,43,27,35,21,12,5,2.31\r\n,Jefferson Elementary,Natomas Unified,Sacramento,671,1,27,1,9,3,45,1,7,4,81,0,0,29,5,11,28,24,N/A,93,16,58,17,6,3,2.23\r\n,Fifty-Second Street Elementary,Los Angeles Unified,Los Angeles,671,1,19,0,0,0,80,0,0,0,100,2,0,48,16,14,20,25,N/A,37,49,36,8,6,2,1.78\r\n,Judith Baca Arts Academy,Los Angeles Unified,Los Angeles,671,1,14,0,0,0,86,0,0,0,100,1,0,51,19,6,21,26,N/A,75,53,29,13,3,2,1.71\r\n,Helms Middle,West Contra Costa Unified,Contra Costa,671,1,9,0,4,2,82,1,1,0,90,10,0,38,39,13,N/A,N/A,22,83,54,33,9,4,0,1.64\r\n,,Alpaugh Unified,Tulare,671,B,0,0,2,0,89,0,9,0,96,0,8,64,14,4,15,15,11,98,66,24,7,4,0,1.48\r\n,Sherwood Elementary,Salinas City Elementary,Monterey,671,1,0,0,0,0,99,0,0,0,98,1,23,76,17,9,20,22,N/A,99,73,20,5,2,1,1.38\r\nD,Antecello Preparatory Academy,Los Angeles Unified,Los Angeles,670,1,76,0,0,0,20,0,2,2,0,0,0,2,2,11,N/A,11,N/A,58,0,23,15,58,4,3.42\r\nD,New Millennium Secondary,Los Angeles Unified,Los Angeles,670,2,71,0,2,2,22,1,1,0,67,0,0,0,6,11,N/A,N/A,26,69,11,16,41,22,9,3.01\r\n,El Cerrito Senior High,West Contra Costa Unified,Contra Costa,670,2,32,0,19,3,25,0,20,0,51,14,0,16,13,11,N/A,N/A,31,84,10,36,20,20,14,2.92\r\nD,Sacramento River Discovery Charter,Tehama County Office of Educat,Tehama,670,2,1,4,0,0,36,0,52,3,66,0,0,0,1,9,,,,85,7,37,42,7,7,2.7\r\n,Vista High,El Dorado Union High,El Dorado,670,B,0,5,0,0,36,0,55,5,73,0,0,5,9,0,N/A,N/A,15,86,26,26,32,11,5,2.42\r\n,Jordan High,Long Beach Unified,Los Angeles,670,2,21,0,4,2,67,3,2,0,80,0,1,25,33,10,N/A,N/A,30,70,31,36,18,14,2,2.2\r\n,Grant Union High,Twin Rivers Unified,Sacramento,670,2,23,1,22,1,41,3,7,1,79,15,0,26,27,13,N/A,N/A,26,75,34,31,24,10,2,2.15\r\n,Centinela Valley Independent Study,Centinela Valley Union High,Los Angeles,670,2,9,0,0,0,76,0,13,0,42,7,0,27,22,2,,,,87,31,38,21,10,0,2.1\r\n,Leo G. Pauly Elementary,Bakersfield City,Kern,670,1,11,0,1,0,83,0,4,2,97,1,14,49,10,9,21,29,N/A,82,39,44,12,5,1,1.85\r\n,,Le Grand Union High,Merced,670,B,1,0,1,0,90,0,6,0,99,0,14,36,34,4,N/A,N/A,26,98,55,19,16,8,2,1.82\r\n,Vineland Elementary,Vineland Elementary,Kern,670,1,0,0,0,0,97,0,2,0,96,0,16,68,14,8,23,31,N/A,82,44,38,12,6,0,1.8\r\n,Shackelford Elementary,Modesto City Elementary,Stanislaus,670,1,1,0,1,0,90,0,6,1,100,2,5,71,4,14,22,28,N/A,98,40,48,9,2,1,1.78\r\n,\"School of Science, Technology, Engineeri\",Los Angeles Unified,Los Angeles,670,2,0,0,0,0,99,0,0,0,100,10,1,20,61,12,N/A,N/A,21,55,52,27,12,7,1,1.77\r\n,One Hundred Twelfth Street Elementary,Los Angeles Unified,Los Angeles,670,1,31,0,0,0,68,0,0,0,100,6,0,36,20,8,14,16,N/A,28,51,32,11,3,2,1.74\r\n,Bobby Duke Middle,Coachella Valley Unified,Riverside,670,1,0,0,0,0,99,0,1,0,94,8,15,48,27,12,N/A,N/A,26,94,53,34,9,3,1,1.64\r\n,Richard Henry Dana Exceptional Needs,Capistrano Unified,Orange,669,C,6,0,3,0,44,0,44,3,38,0,0,13,9,100,10,10,N/A,84,15,7,33,19,26,3.33\r\nY,Dunlap Leadership Academy,Kings Canyon Joint Unified,Fresno,669,2,0,5,0,0,29,0,63,3,13,0,0,3,8,3,,,,97,19,16,41,22,3,2.73\r\nD,Higher Learning Academy,Twin Rivers Unified,Sacramento,669,1,56,3,4,0,18,0,19,0,60,0,0,10,1,7,21,20,N/A,95,14,24,46,15,1,2.64\r\n,Yuba City Unified Alternative,Yuba City Unified,Sutter,669,2,3,2,6,1,36,0,43,10,49,3,2,3,16,4,N/A,3,5,97,17,30,32,14,6,2.63\r\nD,Northwest Prep at Piner-Olivet,Piner-Olivet Union Elementary,Sonoma,669,2,1,6,4,0,48,3,37,0,52,0,0,21,18,11,N/A,N/A,10,77,22,34,26,12,6,2.47\r\n,Mt. Diablo High,Mt. Diablo Unified,Contra Costa,669,2,9,1,5,6,58,2,17,1,70,3,0,26,31,13,N/A,N/A,19,81,33,30,20,14,4,2.26\r\n,Jedediah Smith Elementary,Sacramento City Unified,Sacramento,669,1,55,1,8,1,23,6,3,2,98,2,0,14,2,20,24,34,N/A,73,27,41,23,5,4,2.17\r\n,Weitchpec Elementary,Klamath-Trinity Joint Unified,Humboldt,669,1,0,91,0,0,0,0,9,0,100,0,0,0,0,9,22,N/A,N/A,91,50,10,20,20,0,2.1\r\n,Pomona Senior High,Pomona Unified,Los Angeles,669,2,11,1,2,1,82,0,3,1,84,8,0,29,22,14,N/A,N/A,31,76,33,40,19,6,2,2.04\r\n,Roosevelt Middle,Oakland Unified,Alameda,669,1,19,0,41,1,37,1,1,0,57,28,0,38,30,11,N/A,24,28,40,52,27,13,5,3,1.79\r\n,Yosemite Middle,Fresno Unified,Fresno,669,1,5,0,18,0,75,0,1,0,100,5,6,31,31,11,N/A,N/A,21,84,56,29,12,1,1,1.62\r\n,School of Arts and Culture at Central Re,Los Angeles Unified,Los Angeles,669,1,5,0,0,0,95,0,0,0,93,6,1,35,44,12,N/A,24,20,68,60,27,8,4,2,1.61\r\nD,Venture Academy,San Joaquin County Office of E,San Joaquin,668,2,10,2,1,4,48,1,34,0,58,0,1,8,6,6,22,23,18,97,11,34,35,15,6,2.71\r\nY,Diamond Mountain Charter High,Lassen Union High,Lassen,668,2,0,10,0,0,10,0,80,0,45,10,0,0,0,5,N/A,N/A,10,80,6,31,50,13,0,2.69\r\n,,Mineral Elementary,Tehama,668,B,1,0,0,0,11,0,82,3,74,0,0,0,0,4,2,2,19,94,4,39,42,14,1,2.69\r\n,Trinity Valley Elementary,Klamath-Trinity Joint Unified,Humboldt,668,1,0,54,1,1,8,1,22,14,98,0,0,1,1,25,18,19,N/A,98,7,44,38,8,3,2.56\r\nD,Academia Semillas del Pueblo,Los Angeles Unified,Los Angeles,668,1,1,0,0,0,93,0,0,0,88,2,0,20,30,11,29,26,22,86,24,25,31,15,6,2.53\r\nD,Paramount Bard Academy,Kern County Office of Educatio,Kern,668,1,1,0,1,4,91,0,2,0,72,0,0,28,24,6,N/A,7,4,93,20,32,36,7,5,2.44\r\n,Littlerock High,Antelope Valley Union High,Los Angeles,668,2,10,1,1,0,71,0,17,0,19,0,3,28,19,16,N/A,N/A,28,97,37,26,25,8,4,2.15\r\n,Crowley Elementary,Visalia Unified,Tulare,668,1,3,0,10,1,83,0,2,1,100,5,4,48,11,6,28,31,N/A,94,34,30,26,8,2,2.15\r\n,Luther Burbank High,Sacramento City Unified,Sacramento,668,2,17,1,36,1,35,5,3,4,100,3,0,31,34,12,N/A,N/A,23,89,42,30,15,9,4,2.02\r\n,McKinley Elementary,Bakersfield City,Kern,668,1,23,0,1,0,66,0,7,3,93,1,11,33,12,10,21,25,N/A,72,39,33,20,4,4,2.01\r\n,Emerson Middle,Bakersfield City,Kern,668,1,22,0,2,1,68,0,6,1,92,1,6,20,22,8,N/A,26,24,84,36,40,14,6,3,2\r\n,Shafter High,Kern Union High,Kern,668,2,1,0,1,0,89,0,8,1,80,11,5,13,42,8,N/A,N/A,27,98,45,33,11,6,5,1.94\r\n,Maywood Academy High,Los Angeles Unified,Los Angeles,668,2,0,0,0,0,99,0,0,0,100,11,1,22,56,10,N/A,N/A,29,74,47,34,12,4,3,1.82\r\n,Williams Junior High,Williams Unified,Colusa,668,1,0,1,2,0,86,0,9,0,81,0,14,33,48,12,N/A,N/A,24,75,48,36,9,5,2,1.76\r\n,San Mateo County Special Education,San Mateo County Office of Edu,San Mateo,667,C,5,0,9,19,37,3,26,0,39,0,0,22,0,100,8,7,N/A,27,0,15,32,34,19,3.57\r\n,Laurel High (Continuation),Los Alamitos Unified,Orange,667,B,3,6,3,3,39,0,42,3,18,9,0,0,3,15,N/A,N/A,15,82,7,22,48,19,4,2.89\r\n,East Bay Arts High,San Lorenzo Unified,Alameda,667,2,24,0,3,6,44,2,19,0,53,4,0,6,19,8,N/A,N/A,26,84,10,29,35,22,4,2.82\r\n,Eastside High,Antelope Valley Union High,Los Angeles,667,2,31,1,0,1,55,0,12,0,17,0,1,14,18,14,N/A,N/A,29,95,28,31,28,11,2,2.28\r\n,Pajaro Valley High,Pajaro Valley Unified,Santa Cruz,667,2,0,0,0,2,95,0,2,0,82,15,10,39,42,13,N/A,N/A,27,55,45,27,14,12,3,2.01\r\n,Maricopa Middle,Maricopa Unified,Kern,667,1,0,1,0,0,35,0,63,0,86,0,1,18,10,5,N/A,25,17,87,29,62,3,6,0,1.85\r\n,Washington High,Washington Unified,Fresno,667,2,6,1,13,0,70,0,10,0,86,1,6,35,25,10,N/A,N/A,25,95,49,30,12,6,3,1.84\r\n,E. A. Hall Middle,Pajaro Valley Unified,Santa Cruz,667,1,0,0,1,0,96,0,3,0,89,13,14,51,32,16,N/A,26,24,74,52,27,11,7,4,1.84\r\n,,Buttonwillow Union Elementary,Kern,667,B,2,0,0,0,90,0,8,0,92,2,33,61,14,15,19,13,2,90,46,37,11,5,1,1.78\r\n,Buttonwillow Elementary,Buttonwillow Union Elementary,Kern,667,1,2,0,0,0,90,0,8,0,92,2,33,62,13,14,19,13,2,92,46,37,11,5,1,1.78\r\n,Pajaro Middle,Pajaro Valley Unified,Santa Cruz,667,1,0,0,1,0,98,0,0,0,91,17,16,52,37,15,N/A,25,27,82,56,26,9,8,1,1.72\r\n,Tom Bradley Environmental Science and Hu,Los Angeles Unified,Los Angeles,666,1,74,0,0,0,25,0,0,0,73,2,0,12,2,13,15,9,N/A,35,10,30,36,18,5,2.78\r\n,Surprise Valley High,Surprise Valley Joint Unified,Modoc,666,2,0,11,0,0,25,0,64,0,61,0,6,0,19,0,N/A,N/A,1,64,17,13,52,13,4,2.74\r\nD,TEAM Charter,Stockton Unified,San Joaquin,666,1,12,0,0,4,81,0,0,0,88,0,0,35,8,12,12,N/A,N/A,96,16,28,36,20,0,2.6\r\n,O'Connell (John) High,San Francisco Unified,San Francisco,666,2,17,1,13,7,57,1,3,1,71,12,1,26,29,17,N/A,N/A,19,64,27,43,20,9,1,2.16\r\n,Bryant Middle,Dos Palos Oro Loma Joint Unifi,Merced,666,1,2,0,1,0,76,0,20,0,98,2,3,23,30,12,N/A,32,26,96,34,35,23,5,3,2.09\r\n,Monarch Elementary Community,San Diego County Office of Edu,San Diego,666,1,20,0,2,0,67,0,11,0,100,0,0,45,0,11,,,,89,43,29,24,2,2,1.92\r\n,Desert Hot Springs High,Palm Springs Unified,Riverside,666,2,8,1,0,0,74,0,16,0,88,3,0,24,32,12,N/A,N/A,27,95,41,34,19,4,2,1.9\r\n,Arvin High,Kern Union High,Kern,666,2,0,0,0,0,97,0,3,0,88,13,15,25,55,6,N/A,N/A,24,90,60,25,9,4,2,1.61\r\n,Willard Intermediate,Santa Ana Unified,Orange,666,1,0,0,0,0,98,0,1,0,97,6,2,61,29,12,N/A,24,29,98,72,18,7,2,1,1.41\r\n,Coast High,Huntington Beach Union High,Orange,666,2,1,9,3,0,19,1,56,0,13,7,0,2,3,2,N/A,N/A,3,0,0,0,0,0,0,\r\n,Round Valley Elementary,Round Valley Unified,Mendocino,665,1,1,77,0,0,13,0,10,0,95,0,0,7,0,9,17,11,9,14,8,42,46,0,4,2.5\r\nD,America's Finest Charter,San Diego Unified,San Diego,665,1,13,0,8,0,65,0,10,3,39,14,0,38,10,13,17,16,N/A,73,28,27,27,13,6,2.43\r\n,Val Verde Academy,Val Verde Unified,Riverside,665,2,19,1,2,0,58,2,11,0,70,7,0,9,22,0,N/A,N/A,2,83,34,22,33,7,4,2.25\r\nY,Pittman Charter,Stockton Unified,San Joaquin,665,1,13,4,8,1,69,0,4,0,99,4,7,38,18,7,28,30,30,70,42,28,16,8,6,2.07\r\n,Twenty-Fourth Street Elementary,Los Angeles Unified,Los Angeles,665,1,21,0,1,0,78,0,1,0,100,3,0,42,11,15,19,17,N/A,57,40,38,14,5,3,1.93\r\nY,YouthBuild Charter School of California,Inyo County Office of Educatio,Inyo,665,2,21,0,0,0,74,0,1,1,100,0,0,0,0,0,N/A,N/A,19,46,47,35,6,8,4,1.88\r\n,Garey Senior High,Pomona Unified,Los Angeles,665,2,2,0,2,0,93,0,1,0,90,9,0,36,33,9,N/A,N/A,31,83,41,40,15,3,2,1.86\r\nD,Sierra Charter,Fresno Unified,Fresno,664,2,6,3,3,1,50,1,35,1,71,0,0,6,0,10,13,13,7,98,12,23,38,19,8,2.9\r\nD,New City,Long Beach Unified,Los Angeles,664,1,4,0,1,0,73,0,5,2,79,0,0,44,9,3,24,24,N/A,81,28,23,22,16,11,2.59\r\nD,Pacific American Academy,San Diego Unified,San Diego,664,1,21,3,3,3,54,3,10,5,77,8,0,36,5,15,19,14,N/A,56,14,41,32,14,0,2.45\r\n,Vista del Lago High,Moreno Valley Unified,Riverside,664,2,20,0,2,2,66,0,8,1,73,8,1,15,31,10,N/A,N/A,28,84,25,32,28,11,4,2.36\r\n,El Dorado Elementary,Stockton Unified,San Joaquin,664,1,14,8,4,3,59,1,11,0,100,4,2,23,12,12,29,29,28,95,35,31,19,10,5,2.19\r\n,McFarland High,McFarland Unified,Kern,664,2,1,0,0,1,98,0,1,0,100,9,10,27,49,11,N/A,N/A,24,100,55,31,9,3,1,1.64\r\n,Cesar E. Chavez Elementary,Oxnard,Ventura,664,1,0,0,0,0,99,0,0,0,97,0,2,72,10,11,27,35,N/A,95,60,27,9,3,1,1.59\r\n,Sunset High (Continuation),San Dieguito Union High,San Diego,663,B,2,1,3,1,25,0,64,2,23,12,1,13,5,14,N/A,N/A,18,100,15,16,24,28,17,3.18\r\n,Vallejo High,Vallejo City Unified,Solano,663,2,32,1,2,17,32,1,9,2,60,9,0,11,19,10,N/A,N/A,22,89,17,36,29,16,3,2.52\r\n,Fresno County Special Education Local Pl,Fresno County Office of Educat,Fresno,663,C,6,3,8,0,63,0,19,0,67,0,0,16,13,100,7,8,N/A,64,29,23,25,18,5,2.47\r\nD,Community Harvest Charter,Los Angeles Unified,Los Angeles,663,2,28,0,1,0,68,0,3,0,83,7,0,13,27,11,N/A,N/A,10,43,24,33,24,15,5,2.45\r\n,Highlands High,Twin Rivers Unified,Sacramento,663,2,17,0,6,2,37,0,33,4,74,15,0,13,20,17,N/A,N/A,25,69,22,36,28,12,1,2.35\r\n,Palomares Academy of Health Science,Pomona Unified,Los Angeles,663,2,10,1,2,1,84,0,1,2,91,5,0,29,23,13,N/A,N/A,28,86,26,38,26,7,2,2.2\r\n,,Vineland Elementary,Kern,663,B,0,0,0,0,97,0,3,0,97,0,15,49,31,7,23,30,23,78,47,32,16,5,0,1.8\r\nD,Synergy Quantum Academy,Los Angeles Unified,Los Angeles,663,2,8,0,0,0,92,0,0,0,95,9,0,32,42,8,N/A,N/A,32,47,53,26,16,4,1,1.74\r\n,Spurgeon Intermediate,Santa Ana Unified,Orange,663,1,0,0,2,0,97,0,1,0,94,7,6,55,34,11,N/A,27,24,97,72,18,8,1,1,1.4\r\n,Maxine Hong Kingston Elementary,Stockton Unified,San Joaquin,662,1,25,4,12,5,44,1,10,0,83,5,1,16,9,12,31,27,31,93,20,28,29,15,7,2.63\r\n,Cesar Chavez High,Stockton Unified,San Joaquin,662,2,15,4,20,7,45,1,8,0,74,15,1,11,26,10,N/A,N/A,26,85,25,32,25,12,6,2.42\r\n,,Desert Center Unified,Riverside,662,B,0,0,0,0,46,0,54,0,54,0,0,0,0,0,,,,85,27,55,0,9,9,2.18\r\n,Eagle Mountain Elementary,Desert Center Unified,Riverside,662,1,0,0,0,0,46,0,54,0,54,0,0,0,0,0,,,,85,27,55,0,9,9,2.18\r\n,Curran Middle,Bakersfield City,Kern,662,1,15,1,1,1,70,0,12,0,90,1,8,15,23,9,N/A,24,22,51,33,41,16,7,3,2.05\r\n,Sea View Elementary,Coachella Valley Unified,Riverside,662,1,2,1,0,0,86,0,11,0,97,4,7,52,11,7,25,22,N/A,93,34,45,14,6,1,1.95\r\n,\"Johnnie Cochran, Jr., Middle\",Los Angeles Unified,Los Angeles,662,1,20,0,0,0,80,0,0,0,100,7,0,27,34,12,N/A,24,22,43,44,35,13,7,1,1.84\r\n,Memorial Scholars & Athletes,San Diego Unified,San Diego,662,1,4,0,0,0,94,0,1,1,100,13,0,45,31,22,N/A,26,26,73,45,36,12,5,1,1.81\r\n,Alpaugh Elementary,Alpaugh Unified,Tulare,662,1,0,0,4,0,88,0,9,0,96,0,7,72,4,3,16,25,N/A,99,69,22,8,1,0,1.42\r\n,Chavez (Cesar) Elementary,San Francisco Unified,San Francisco,661,1,4,1,2,3,83,1,2,1,87,1,6,74,6,14,19,22,N/A,80,27,44,18,10,1,2.12\r\nD,Leadership Public Schools - San Jose,Santa Clara County Office of E,Santa Clara,661,2,1,1,2,1,87,1,5,1,78,0,0,40,31,9,N/A,N/A,27,95,54,24,13,7,1,1.78\r\n,,Klamath-Trinity Joint Unified,Humboldt,660,B,0,79,1,0,4,0,10,5,88,0,0,0,0,20,16,18,18,89,10,42,32,12,5,2.59\r\n,Ann Soldo Elementary,Pajaro Valley Unified,Santa Cruz,660,1,0,0,1,1,94,0,4,0,91,9,10,72,11,9,27,30,N/A,58,35,24,24,12,5,2.27\r\n,Winton Middle,Hayward Unified,Alameda,660,1,13,0,3,5,69,2,7,0,81,5,2,29,32,9,N/A,N/A,28,81,32,35,22,9,1,2.13\r\n,Edison High,Stockton Unified,San Joaquin,660,2,13,3,10,14,58,0,2,0,77,14,4,19,27,9,N/A,N/A,27,81,39,29,18,9,5,2.12\r\n,Scandinavian Middle,Fresno Unified,Fresno,660,1,8,1,24,0,60,0,5,0,100,1,3,24,21,12,N/A,N/A,25,76,36,34,24,5,1,2.02\r\n,Elsie Allen High,Santa Rosa City Schools,Sonoma,660,2,2,1,6,0,74,0,15,1,74,19,6,36,35,14,N/A,N/A,19,94,50,27,12,9,2,1.87\r\n,Tamarack Elementary,Reef-Sunset Unified,Kings,660,1,0,0,1,0,96,0,3,0,100,1,14,56,23,8,28,29,N/A,95,45,34,15,6,0,1.82\r\n,East Oakland Pride Elementary,Oakland Unified,Alameda,660,1,21,0,1,0,74,1,1,0,49,41,0,64,9,13,20,20,N/A,48,50,29,15,6,1,1.8\r\n,Coliseum College Prep Academy,Oakland Unified,Alameda,660,2,15,0,1,0,81,2,1,0,37,18,1,38,39,11,N/A,24,26,44,57,23,11,7,2,1.76\r\n,Las Palmitas Elementary,Coachella Valley Unified,Riverside,660,1,0,4,0,0,93,0,2,0,100,3,26,70,12,9,28,22,N/A,93,64,27,5,3,1,1.49\r\n,,Placer County Office of Educat,Placer,659,B,3,3,1,0,27,0,62,4,53,0,0,13,4,8,7,7,13,79,10,24,35,21,10,2.97\r\nD,Los Angeles County Online High,Antelope Valley Union High,Los Angeles,659,2,14,1,5,0,29,1,47,1,27,2,0,3,8,8,N/A,N/A,28,58,8,46,17,21,8,2.77\r\nD,Diego Valley Public,Julian Union Elementary,San Diego,659,2,3,0,3,0,63,0,29,0,77,0,3,26,9,17,N/A,N/A,4,94,30,18,24,18,9,2.58\r\n,Edendale Middle,San Lorenzo Unified,Alameda,659,1,21,0,5,5,60,1,5,0,75,3,1,28,33,13,N/A,30,29,70,20,37,27,14,2,2.42\r\nD,Kid Street Learning Center Charter,Santa Rosa City Schools,Sonoma,659,1,6,3,0,0,43,0,23,23,100,0,0,17,0,0,,,,94,21,42,18,9,9,2.42\r\n,Piute Middle,Lancaster Elementary,Los Angeles,659,1,32,0,0,1,56,0,9,1,89,8,2,20,14,13,N/A,33,25,100,38,31,22,7,2,2.04\r\n,San Pasqual Valley Elementary,San Pasqual Valley Unified,Imperial,659,1,1,48,0,0,42,0,3,4,98,0,10,29,2,17,20,21,N/A,78,28,47,22,2,1,2.02\r\n,Crawford IDEA,San Diego Unified,San Diego,659,2,22,0,31,0,42,0,2,0,99,9,0,40,36,15,N/A,N/A,11,89,42,33,12,8,5,2.01\r\n,Ganesha High,Pomona Unified,Los Angeles,659,2,5,0,1,1,92,0,1,0,88,6,0,35,30,12,N/A,N/A,30,82,41,40,14,3,2,1.84\r\n,Sunset,Vineland Elementary,Kern,659,1,0,0,0,0,97,0,3,0,98,0,15,36,43,6,N/A,30,23,75,48,28,19,5,0,1.81\r\n,Avenal Elementary,Reef-Sunset Unified,Kings,659,1,0,0,2,0,96,0,2,0,100,9,15,54,29,8,29,24,N/A,94,49,29,17,5,1,1.81\r\n,Baker Junior High,Baker Valley Unified,San Bernardino,659,1,0,0,0,0,87,0,10,0,68,0,0,39,0,23,N/A,N/A,12,87,56,26,19,0,0,1.63\r\n,Abraham Lincoln Continuation,Riverside Unified,Riverside,659,B,6,0,0,0,93,0,0,1,78,1,0,39,14,1,N/A,N/A,27,95,69,13,14,4,0,1.52\r\n,Santa Ana High,Santa Ana Unified,Orange,659,2,0,0,0,0,98,0,0,0,90,8,2,50,40,10,N/A,N/A,31,90,69,20,7,2,1,1.45\r\nY,Visalia Technical Education Center,Visalia Unified,Tulare,658,2,1,1,0,0,61,1,36,1,65,6,1,9,13,9,N/A,N/A,25,91,13,22,43,14,8,2.83\r\n,Cabrillo High,Long Beach Unified,Los Angeles,658,2,15,0,3,9,68,3,1,0,79,0,1,31,32,11,N/A,N/A,30,73,34,29,17,17,3,2.26\r\n,Harte (Bret) Elementary,San Francisco Unified,San Francisco,658,1,39,1,3,2,35,15,0,2,96,0,0,37,1,16,18,21,N/A,70,27,36,25,11,1,2.23\r\n,Broadway High,San Jose Unified,Santa Clara,658,B,2,0,2,0,75,0,14,4,78,4,0,28,13,12,N/A,N/A,17,93,31,32,27,5,4,2.18\r\nD,Lifeline Education Charter,SBE - Lifeline Education Chart,Los Angeles,658,2,30,0,0,0,64,0,0,3,93,0,0,19,0,4,N/A,39,43,75,38,31,20,9,2,2.05\r\n,Rodriguez Elementary,San Diego Unified,San Diego,658,1,3,1,0,0,95,0,1,0,100,20,0,72,12,13,20,28,N/A,91,47,33,15,4,0,1.76\r\n,Saddleback High,Santa Ana Unified,Orange,658,2,0,0,2,1,95,0,1,0,83,8,1,49,35,14,N/A,N/A,29,92,60,24,12,3,0,1.59\r\n,William C. Overfelt High,East Side Union High,Santa Clara,658,2,2,0,10,8,78,1,1,0,84,4,1,37,34,11,N/A,N/A,28,94,62,25,8,5,0,1.57\r\n,Valley High,Santa Ana Unified,Orange,658,2,0,0,1,0,96,0,1,0,86,7,4,53,36,11,N/A,N/A,29,97,74,17,7,1,1,1.38\r\nD,Mission View Public,William S. Hart Union High,Los Angeles,657,B,20,2,1,1,37,0,32,6,70,0,0,5,1,10,6,N/A,5,87,16,26,32,20,5,2.73\r\n,Central High (Continuation),Morgan Hill Unified,Santa Clara,657,B,3,1,3,0,70,0,21,1,61,3,3,25,8,7,N/A,N/A,3,89,16,35,32,9,7,2.56\r\n,Preparatory Literary Academy of Cultural,Oakland Unified,Alameda,657,1,64,0,2,0,26,0,5,1,55,15,0,21,5,7,21,24,N/A,48,29,25,27,14,5,2.43\r\n,,Kern County Office of Educatio,Kern,657,B,11,2,1,0,47,0,38,1,62,0,0,11,6,9,7,7,4,90,30,25,25,13,7,2.43\r\n,Alternative Learning Center,San Bernardino City Unified,San Bernardino,657,2,19,1,0,0,47,1,31,0,91,4,0,7,13,14,N/A,5,14,84,24,41,20,12,3,2.31\r\nD,Manzanita Middle,West Contra Costa Unified,Contra Costa,657,1,4,0,0,0,91,0,4,1,85,0,0,31,39,10,N/A,25,26,97,34,31,16,11,8,2.27\r\n,Amesti Elementary,Pajaro Valley Unified,Santa Cruz,657,1,0,0,0,1,97,0,1,0,93,9,17,68,17,14,25,28,N/A,43,38,30,19,8,5,2.13\r\n,Tennyson High,Hayward Unified,Alameda,657,2,13,0,7,8,62,6,4,0,71,9,1,29,33,12,N/A,N/A,28,75,33,37,18,10,2,2.11\r\n,Alexander Hamilton Elementary,Stockton Unified,San Joaquin,657,1,12,3,8,2,73,0,3,0,99,3,5,43,20,9,28,30,28,84,41,32,14,5,8,2.06\r\n,Wilhelmina Henry Elementary,Stockton Unified,San Joaquin,657,1,3,4,3,1,80,0,8,0,99,3,8,47,17,10,31,28,31,74,43,33,16,4,4,1.94\r\n,Orchard Academies 2B,Los Angeles Unified,Los Angeles,657,1,0,0,0,0,97,0,2,0,90,6,1,24,37,17,N/A,22,24,73,47,26,19,5,3,1.92\r\n,San Bernardino High,San Bernardino City Unified,San Bernardino,657,2,14,0,1,0,75,0,6,0,98,5,0,24,30,13,N/A,N/A,28,74,47,32,13,5,3,1.86\r\n,Jefferson Elementary,Bakersfield City,Kern,657,1,8,2,0,1,81,0,5,2,98,0,10,40,13,6,21,26,N/A,78,47,34,14,2,3,1.81\r\n,Carlos Santana Arts Academy,Los Angeles Unified,Los Angeles,657,1,4,0,4,1,88,1,2,0,100,4,0,62,20,12,22,23,N/A,81,45,38,11,3,2,1.79\r\n,Grand Island Elementary,Pierce Joint Unified,Colusa,657,1,0,0,0,0,84,0,16,0,84,0,10,60,24,8,17,22,N/A,98,55,35,6,4,0,1.59\r\n,Mark Twain Special Center,Garden Grove Unified,Orange,657,C,6,0,41,3,29,0,18,0,68,0,0,9,35,100,12,N/A,N/A,0,0,0,0,0,0,\r\nY,eScholar Academy,Mineral Elementary,Tehama,656,B,1,0,0,0,12,0,82,3,73,0,0,0,0,5,2,3,19,94,4,41,42,13,1,2.66\r\n,California City Middle,Mojave Unified,Kern,656,1,29,1,0,1,33,0,26,5,72,0,1,7,10,8,N/A,N/A,26,82,22,34,28,11,4,2.41\r\n,,Los Angeles County Office of E,Los Angeles,656,B,16,1,2,1,67,0,9,2,81,0,0,26,12,15,11,15,24,70,37,23,14,17,9,2.38\r\n,Lincoln Elementary,Lindsay Unified,Tulare,656,1,0,0,7,0,90,0,3,0,100,9,21,53,15,4,23,29,N/A,98,34,32,22,7,4,2.15\r\n,Alternative Opportunity Programs,Los Angeles County Office of E,Los Angeles,656,B,4,0,1,0,89,0,2,4,96,0,0,33,20,4,,,,61,45,31,6,12,6,2.04\r\n,,Reef-Sunset Unified,Kings,656,B,0,0,1,0,95,0,3,0,99,9,15,48,36,10,27,23,21,93,52,29,13,5,1,1.73\r\n,Los Angeles School of Global Studies,Los Angeles Unified,Los Angeles,656,2,1,1,3,3,91,0,0,0,91,8,0,23,59,6,N/A,N/A,28,55,54,31,12,2,1,1.66\r\nD,Juan Bautista de Anza,Borrego Springs Unified,San Diego,655,2,0,3,0,0,30,0,47,20,43,0,0,0,0,7,N/A,2,4,60,6,56,28,0,11,2.56\r\n,Calaveras Elementary,Hollister,San Benito,655,1,1,0,1,1,90,0,6,0,83,3,25,54,7,15,29,29,N/A,94,29,39,20,9,3,2.19\r\n,Ambassador School of Global Leadership,Los Angeles Unified,Los Angeles,655,2,4,2,11,3,78,1,1,0,100,9,0,27,38,12,N/A,29,30,48,46,29,10,12,2,1.94\r\nD,Animo Charter Middle No. 3,Los Angeles Unified,Los Angeles,655,1,35,1,0,0,61,0,1,0,85,0,0,19,24,17,N/A,31,18,73,37,38,22,3,1,1.93\r\nD,San Diego Virtual,Mountain Empire Unified,San Diego,654,2,7,4,3,3,37,5,42,0,30,1,0,3,1,7,N/A,N/A,7,84,8,41,22,16,14,2.88\r\n,Rancho Vista High,Temecula Valley Unified,Riverside,654,B,6,2,0,1,50,1,36,2,23,2,0,7,4,8,N/A,N/A,17,92,16,18,38,25,4,2.83\r\n,Foothill Plus,Shasta Union High,Shasta,654,B,0,10,0,0,5,0,76,10,52,10,0,0,0,0,N/A,N/A,22,95,10,20,60,5,5,2.75\r\nD,California Aerospace Academy,Twin Rivers Unified,Sacramento,654,2,13,1,0,0,38,0,43,4,51,0,0,11,5,11,N/A,N/A,18,90,19,12,48,16,4,2.74\r\n,Horizon,Desert Sands Unified,Riverside,654,2,2,0,0,0,66,0,31,1,49,6,0,8,19,5,14,4,7,99,25,30,29,13,4,2.42\r\n,Community High,Moorpark Unified,Ventura,654,B,0,1,2,0,67,0,30,0,55,1,4,11,30,12,N/A,N/A,17,90,29,37,22,11,1,2.18\r\n,La Salle Avenue Elementary,Los Angeles Unified,Los Angeles,654,1,64,0,0,0,36,0,0,0,100,2,0,19,8,16,18,18,N/A,54,21,46,29,3,1,2.18\r\n,Oakdale Heights Elementary,Oroville City Elementary,Butte,654,1,7,4,17,0,22,1,38,10,89,0,0,21,2,24,27,27,N/A,92,31,29,36,3,1,2.15\r\n,Marshall (Thurgood) High,San Francisco Unified,San Francisco,654,2,14,0,57,3,20,4,0,0,80,15,0,44,27,12,N/A,N/A,23,64,28,47,13,11,1,2.12\r\n,Van Buren Elementary,Stockton Unified,San Joaquin,654,1,20,1,15,0,62,0,1,0,100,4,4,43,13,5,18,21,20,79,51,26,13,2,8,1.91\r\n,Roosevelt High,Fresno Unified,Fresno,654,2,5,0,12,0,78,0,5,0,100,17,4,31,31,11,N/A,N/A,25,85,45,33,15,4,3,1.87\r\nD,\"Casa Ramona Academy for Technology, Comm\",San Bernardino City Unified,San Bernardino,654,1,0,0,0,0,99,0,0,0,100,0,0,45,38,5,N/A,N/A,15,90,43,40,6,9,2,1.87\r\n,Rise Community,Oakland Unified,Alameda,654,1,29,0,1,0,67,2,0,0,49,21,0,49,11,5,22,24,N/A,51,44,37,11,7,1,1.84\r\n,Access Juvenile Hall,Orange County Department of Ed,Orange,654,B,3,1,3,0,78,1,12,1,95,0,0,45,7,18,N/A,8,N/A,55,48,30,13,8,1,1.83\r\nY,Choice 2000 On-Line,Perris Union High,Riverside,653,2,5,0,1,1,64,1,26,3,23,3,0,10,17,0,N/A,N/A,21,95,16,24,36,18,5,2.71\r\n,Cesar Chavez Elementary,Coachella Valley Unified,Riverside,653,1,0,0,0,0,99,0,0,0,98,7,6,70,7,9,24,24,N/A,91,40,38,15,5,2,1.92\r\nD,Klamath River Early College of the Redwo,Del Norte County Office of Edu,Del Norte,652,B,0,41,0,0,18,0,26,13,90,0,0,0,0,15,N/A,8,4,18,14,29,29,14,14,2.86\r\nD,Guajome Learning Center,Vista Unified,San Diego,652,2,1,1,1,1,52,0,40,3,9,0,0,5,4,5,12,N/A,12,96,18,15,44,16,7,2.78\r\n,La Tijera,Inglewood Unified,Los Angeles,652,1,55,1,1,0,43,1,0,0,88,2,0,2,1,9,32,34,27,99,31,28,27,10,4,2.29\r\n,San Diego Business,San Diego Unified,San Diego,652,2,15,1,1,2,74,1,4,2,100,16,0,23,33,17,N/A,N/A,24,78,26,38,22,9,4,2.27\r\n,Blythe Middle,Palo Verde Unified,Riverside,652,1,7,0,1,1,62,0,28,0,68,8,3,7,12,13,N/A,N/A,18,70,30,43,19,6,1,2.05\r\n,Century High,Santa Ana Unified,Orange,652,2,0,0,3,0,97,0,0,0,91,8,4,52,40,12,N/A,N/A,24,96,79,14,5,1,1,1.31\r\n,Tuolumne County Special Education,Tuolumne County Superintendent,Tuolumne,651,C,6,2,0,0,19,2,63,4,69,0,0,0,0,100,8,N/A,9,65,6,16,42,23,13,3.19\r\nD,California Pacific Charter School of San,Mountain Empire Unified,San Diego,651,2,8,1,3,2,35,1,45,0,24,0,0,1,3,6,N/A,3,21,75,8,18,47,19,9,3.04\r\n,Vista Alternative,Fremont Unified,Alameda,651,2,9,1,12,6,22,1,45,3,22,6,0,6,6,1,,,,97,4,37,31,18,9,2.9\r\n,Upper Lake High,Upper Lake Union High,Lake,651,2,0,10,3,0,24,0,59,4,75,0,2,1,1,13,N/A,N/A,26,98,13,32,42,6,6,2.61\r\n,Big Pine High,Big Pine Unified,Inyo,651,2,0,54,0,0,4,0,42,0,62,8,0,4,0,12,N/A,N/A,8,100,15,31,46,8,0,2.46\r\n,Green Valley High,Yucaipa-Calimesa Joint Unified,San Bernardino,651,B,2,0,0,0,43,0,54,0,68,2,0,2,4,2,N/A,N/A,19,86,15,50,17,17,2,2.42\r\n,,Monterey County Office of Educ,Monterey,651,B,2,1,0,1,69,0,24,2,40,0,0,21,17,15,18,25,N/A,85,30,34,17,14,5,2.29\r\n,Mojave Elementary,Mojave Unified,Kern,651,1,22,2,1,1,51,0,22,0,82,0,1,21,8,8,27,24,N/A,79,28,38,24,7,4,2.2\r\n,Kennedy Elementary,Lindsay Unified,Tulare,651,1,0,1,2,0,90,0,7,0,100,6,21,54,13,6,21,30,27,94,44,26,21,6,3,1.98\r\n,Academy of Environmental & Social Policy,Los Angeles Unified,Los Angeles,651,2,0,0,0,0,100,0,0,0,100,5,2,21,58,7,N/A,N/A,20,57,51,27,13,6,2,1.81\r\n,Yucca Elementary,Palmdale Elementary,Los Angeles,651,1,19,1,0,1,73,0,3,1,95,3,1,43,6,14,27,23,N/A,93,48,32,17,2,1,1.77\r\n,Cesar Chavez Elementary,Ravenswood City Elementary,San Mateo,651,1,6,0,1,0,82,9,0,1,91,0,5,69,17,10,N/A,32,N/A,95,53,28,12,4,3,1.76\r\n,Academic Leadership Community,Los Angeles Unified,Los Angeles,651,2,2,1,1,3,94,0,0,0,93,9,0,33,52,11,N/A,N/A,23,53,54,31,7,6,2,1.71\r\n,Sequoia Middle,Fresno Unified,Fresno,651,1,6,1,15,0,76,0,2,0,100,4,3,32,28,11,N/A,N/A,21,81,54,29,14,2,1,1.68\r\n,Huntington Park Senior High,Los Angeles Unified,Los Angeles,651,2,0,0,0,0,99,0,0,0,100,9,0,28,53,11,N/A,N/A,28,72,58,29,8,4,1,1.61\r\nY,Oakdale Charter High,Oakdale Joint Unified,Stanislaus,650,2,4,2,0,0,21,0,67,6,21,0,2,2,2,4,,,,98,6,24,45,16,10,3\r\n,Painted Hills Middle,Palm Springs Unified,Riverside,650,1,10,1,1,1,71,1,17,0,92,6,0,25,22,8,N/A,33,35,94,35,37,22,3,2,2\r\n,Maricopa High,Maricopa Unified,Kern,650,2,0,0,0,2,30,0,68,0,85,0,4,6,21,4,N/A,N/A,9,85,27,60,11,2,0,1.89\r\n,Del Vallejo Middle,San Bernardino City Unified,San Bernardino,650,1,22,1,2,0,64,1,8,1,93,5,0,25,16,13,N/A,25,28,80,44,33,16,5,2,1.87\r\n,Monterey Continuation,Los Angeles Unified,Los Angeles,650,B,0,0,0,0,100,0,0,0,88,5,0,17,45,2,N/A,N/A,16,48,50,35,5,10,0,1.75\r\n,Los Angeles River at Sonia Sotomayor Lea,Los Angeles Unified,Los Angeles,650,2,0,0,1,7,91,0,0,0,95,8,0,18,55,15,N/A,N/A,29,73,49,33,12,4,2,1.75\r\n,ARTLAB at Sonia Sotomayor Learning Acade,Los Angeles Unified,Los Angeles,650,2,3,0,2,5,88,1,1,0,94,6,0,20,47,14,N/A,N/A,24,68,51,32,12,4,1,1.74\r\n,Whaley Middle,Compton Unified,Los Angeles,650,1,11,0,0,0,89,0,0,0,88,10,0,39,41,8,N/A,26,28,80,55,30,10,3,2,1.67\r\n,Miguel Contreras Learning Complex,Los Angeles Unified,Los Angeles,650,2,1,0,1,1,97,0,0,0,93,8,1,30,60,10,N/A,N/A,28,65,59,31,6,3,2,1.57\r\n,Briones (Alternative),Martinez Unified,Contra Costa,649,B,5,5,0,0,25,0,59,3,24,2,0,2,7,5,N/A,N/A,22,95,5,20,39,27,9,3.14\r\n,Skyline High,Oakland Unified,Alameda,649,1,33,1,19,1,34,2,8,1,66,21,0,13,27,13,N/A,N/A,28,70,25,31,23,15,7,2.49\r\n,Fresno High,Fresno Unified,Fresno,649,1,9,1,8,0,68,0,12,0,100,14,1,16,19,11,N/A,N/A,26,89,31,34,26,6,4,2.18\r\n,La Vista High (Continuation),Fullerton Joint Union High,Orange,649,B,3,0,1,0,83,0,12,0,61,3,0,32,19,9,N/A,N/A,19,83,33,35,19,9,3,2.16\r\n,Crawford Multimedia and Visual Arts,San Diego Unified,San Diego,649,1,20,0,24,0,52,0,4,0,100,11,0,36,36,13,N/A,N/A,13,82,40,37,15,7,2,1.93\r\n,Southeast Elementary,Fresno Unified,Fresno,649,1,3,0,21,0,74,0,2,0,100,1,3,53,16,12,27,27,N/A,75,61,26,12,1,1,1.56\r\nD,San Francisco Flex Academy,SBE - San Francisco Flex Acade,San Francisco,648,1,22,0,9,1,28,1,26,10,97,0,0,3,1,7,N/A,N/A,10,79,8,16,18,45,14,3.41\r\n,Orange County Special Education,Orange County Department of Ed,Orange,648,C,4,0,12,4,49,0,30,1,17,0,0,20,3,100,5,8,N/A,63,11,17,23,23,25,3.34\r\nD,Coleman Tech Charter High,San Diego Unified,San Diego,648,1,17,0,1,3,31,1,44,1,25,21,0,5,11,22,N/A,N/A,12,92,3,21,37,24,15,3.26\r\nD,Leadership High,San Francisco Unified,San Francisco,648,1,20,0,2,3,67,2,2,1,67,6,1,23,19,13,N/A,N/A,24,94,20,33,32,8,7,2.5\r\nD,Charter School of San Diego,San Diego Unified,San Diego,648,B,13,1,3,3,53,1,24,0,73,12,0,9,7,10,N/A,N/A,4,99,22,33,24,15,6,2.5\r\n,Dool Elementary,Calexico Unified,Imperial,648,1,0,0,0,0,100,0,0,0,100,2,10,73,13,9,29,29,N/A,97,31,25,25,14,5,2.36\r\n,Slater Elementary,Fresno Unified,Fresno,648,1,21,0,6,0,61,1,9,0,100,0,1,12,7,10,22,23,N/A,90,23,37,32,5,3,2.28\r\n,,Del Norte County Office of Edu,Del Norte,648,B,1,12,1,0,12,0,72,2,62,6,0,4,1,16,6,14,4,98,15,57,19,6,3,2.26\r\nD,Iftin High,San Diego Unified,San Diego,648,1,45,0,0,1,50,0,3,1,100,8,0,35,33,16,N/A,N/A,17,77,31,41,18,6,4,2.11\r\n,Roosevelt Elementary,Stockton Unified,San Joaquin,648,1,9,3,7,1,73,0,6,0,99,1,5,40,16,11,19,21,20,83,35,42,11,8,5,2.05\r\n,Woodrow Wilson Senior High,Los Angeles Unified,Los Angeles,648,1,1,0,3,0,94,0,0,0,90,12,1,19,43,14,N/A,N/A,20,54,41,36,15,6,2,1.92\r\n,Robert Fulton College Preparatory,Los Angeles Unified,Los Angeles,648,1,2,0,2,3,89,0,3,0,100,9,0,30,45,15,N/A,27,30,74,48,33,12,6,2,1.81\r\n,Greenfield High,South Monterey County Joint Un,Monterey,648,1,0,0,1,0,96,0,2,0,77,0,7,34,43,14,N/A,N/A,28,88,53,28,12,3,4,1.75\r\n,Academy of Scientific Exploration (ASE),Los Angeles Unified,Los Angeles,648,1,3,0,0,1,94,0,1,0,87,8,0,23,42,11,N/A,N/A,28,50,55,28,9,4,3,1.72\r\n,Sheridan Way Elementary,Ventura Unified,Ventura,648,1,1,0,0,0,95,0,3,1,100,4,5,80,3,8,24,30,N/A,100,57,27,11,4,1,1.64\r\n,Orosi High,Cutler-Orosi Joint Unified,Tulare,648,1,0,0,0,4,95,0,1,0,100,5,3,44,35,4,N/A,N/A,26,80,67,19,10,3,1,1.53\r\n,Boynton High,Campbell Union High,Santa Clara,647,B,3,1,7,1,42,1,39,6,25,0,0,12,12,8,N/A,N/A,15,92,12,27,31,21,10,2.9\r\nD,West County Community High,West Contra Costa Unified,Contra Costa,647,1,12,0,0,1,72,0,8,7,63,0,0,8,25,12,N/A,N/A,22,91,21,35,26,14,5,2.47\r\nD,Metropolitan Arts & Technology High,San Francisco Unified,San Francisco,647,1,27,1,2,2,44,2,5,12,69,0,0,9,14,17,N/A,N/A,20,90,20,33,39,4,3,2.37\r\n,International Studies Academy,San Francisco Unified,San Francisco,647,1,32,1,9,8,35,7,6,2,72,14,1,21,10,16,N/A,20,18,49,14,53,20,12,2,2.35\r\n,Los Angeles Senior High,Los Angeles Unified,Los Angeles,647,1,11,1,5,1,81,0,1,0,85,8,0,28,45,12,N/A,N/A,21,55,44,31,12,10,3,1.96\r\nD,Arts In Action Community Charter,Los Angeles Unified,Los Angeles,647,1,0,0,0,1,99,0,0,0,98,0,0,52,19,7,20,26,N/A,45,55,32,5,5,3,1.68\r\n,Floyd I. Marchus,Contra Costa County Office of,Contra Costa,647,C,16,0,5,0,18,0,61,0,47,0,0,2,0,100,8,8,9,0,0,0,0,0,0,\r\nD,Kaplan Academy of California-Central,Corcoran Joint Unified,Kings,646,1,9,3,3,3,41,0,38,0,22,0,0,3,9,0,N/A,N/A,10,69,14,23,32,9,23,3.05\r\n,Polaris High (Alternative),Anaheim Union High,Orange,646,1,4,2,6,3,43,0,36,2,56,8,0,13,16,0,,,,33,20,27,24,24,5,2.66\r\n,Hoopa Valley Elementary,Klamath-Trinity Joint Unified,Humboldt,646,1,0,92,0,0,3,0,3,1,97,0,0,0,0,20,15,18,N/A,84,9,43,31,12,6,2.64\r\nY,La Sierra High,Tulare County Office of Educat,Tulare,646,1,0,0,1,0,73,0,23,3,70,0,0,17,16,8,N/A,N/A,18,96,29,21,18,22,9,2.61\r\n,,Glenn County Office of Educati,Glenn,646,B,2,1,0,1,34,0,61,0,69,0,0,12,9,10,18,15,7,95,28,31,25,9,7,2.36\r\nD,West Sacramento Early College Prep Chart,Washington Unified,Yolo,646,1,4,3,4,0,63,1,24,2,75,8,0,16,34,7,N/A,N/A,1,100,31,26,33,7,3,2.25\r\n,Banning High,Banning Unified,Riverside,646,1,10,4,8,1,60,0,13,2,84,10,0,16,21,9,N/A,N/A,30,88,29,30,30,9,1,2.23\r\n,Woodcrest Elementary,Los Angeles Unified,Los Angeles,646,1,40,0,0,0,60,0,0,0,100,5,0,41,11,12,16,15,N/A,38,25,36,34,3,1,2.19\r\nD,Frederick Douglass Academy High,Los Angeles Unified,Los Angeles,645,1,64,0,0,0,12,0,1,18,72,0,0,2,0,9,N/A,N/A,29,82,6,24,32,32,5,3.05\r\nY,San Juan Choices Charter,San Juan Unified,Sacramento,645,1,14,2,1,0,14,0,65,2,37,4,0,3,2,16,N/A,N/A,7,69,11,24,25,32,8,3.03\r\n,Calaveras County Special Education (SELP,Calaveras County Office of Edu,Calaveras,645,C,0,0,0,0,21,0,72,7,55,0,0,3,3,100,N/A,N/A,21,97,4,32,43,18,4,2.86\r\nD,Rio Valley Charter,Lodi Unified,San Joaquin,645,1,1,1,1,0,49,1,44,1,59,1,1,19,7,5,N/A,32,N/A,95,20,23,33,17,7,2.68\r\n,Visitacion Valley Middle,San Francisco Unified,San Francisco,645,1,24,0,24,13,25,9,3,1,75,13,0,33,13,18,N/A,19,18,44,16,60,17,6,1,2.16\r\n,,San Pasqual Valley Unified,Imperial,645,B,1,47,0,0,45,0,3,4,97,4,12,28,6,14,20,14,11,71,21,56,20,2,1,2.05\r\n,Fremont Academy of Engineering and Desig,Pomona Unified,Los Angeles,645,1,2,0,2,0,94,0,2,0,93,6,0,41,29,12,N/A,N/A,28,86,36,45,14,3,2,1.9\r\n,ROOTS International Academy,Oakland Unified,Alameda,645,1,28,0,3,1,65,2,1,0,50,21,0,36,28,10,N/A,24,26,33,50,32,13,2,3,1.74\r\n,Belmont Senior High,Los Angeles Unified,Los Angeles,645,1,2,0,5,5,87,0,1,0,100,8,0,34,49,13,N/A,N/A,21,59,55,28,8,7,2,1.73\r\n,Tehipite Middle,Fresno Unified,Fresno,645,1,6,1,8,0,81,0,3,0,100,2,1,26,22,14,N/A,N/A,20,79,55,29,12,3,1,1.65\r\n,Vista (Alternative),Bonita Unified,Los Angeles,644,1,6,0,0,0,52,0,27,4,50,4,0,10,0,6,N/A,N/A,14,60,3,21,41,34,0,3.07\r\n,Chautauqua High (Continuation),Bear Valley Unified,San Bernardino,644,B,1,0,0,0,20,2,70,0,78,1,0,1,5,7,N/A,7,19,94,13,35,40,12,0,2.51\r\n,Shoshone Elementary,Death Valley Unified,Inyo,644,1,0,0,0,0,27,0,60,13,67,0,0,13,0,20,N/A,2,N/A,40,17,67,0,17,0,2.17\r\n,Linda Verde Elementary,Lancaster Elementary,Los Angeles,644,1,29,1,1,0,58,0,8,2,90,6,2,33,4,19,30,29,N/A,100,38,28,22,9,3,2.09\r\n,Williams High,Williams Unified,Colusa,644,1,0,1,3,0,88,0,9,0,77,0,13,30,49,15,N/A,N/A,22,72,47,29,17,4,3,1.87\r\n,Walton Middle,Compton Unified,Los Angeles,644,1,23,0,0,0,75,1,0,0,89,12,0,25,43,12,N/A,24,19,80,48,29,17,4,2,1.82\r\n,John Muir Middle,Los Angeles Unified,Los Angeles,644,1,20,0,0,0,80,0,0,0,90,5,0,32,30,13,N/A,21,22,54,55,27,12,5,2,1.72\r\n,East Los Angeles Renaissance Academy at,Los Angeles Unified,Los Angeles,644,1,0,0,0,0,100,0,0,0,100,7,1,28,42,12,N/A,N/A,31,51,66,19,9,5,1,1.55\r\n,Monte Vista High,Newport-Mesa Unified,Orange,643,1,0,0,8,3,10,0,77,3,28,3,0,3,5,8,,,,90,9,9,23,51,9,3.43\r\n,Alta Vista Alternative High,Santa Barbara Unified,Santa Barbara,643,1,3,1,0,0,41,1,53,0,17,17,0,8,9,4,N/A,N/A,45,96,10,15,29,29,18,3.3\r\nD,Lou Dantzler Preparatory Charter Middle,Los Angeles Unified,Los Angeles,643,1,91,1,0,0,8,0,0,0,81,0,0,4,3,10,N/A,23,33,93,7,36,36,13,8,2.79\r\n,Crossroads High (Alternative),Newark Unified,Alameda,643,1,13,0,0,3,58,3,16,8,58,5,0,8,24,8,,,,100,16,26,39,16,3,2.63\r\n,Banning Independent Study,Banning Unified,Riverside,643,B,9,6,1,0,43,1,37,0,9,9,0,5,10,2,,,,68,17,27,44,8,3,2.54\r\nD,Community Collaborative Charter,Twin Rivers Unified,Sacramento,643,B,11,3,1,0,21,0,63,1,81,1,0,37,14,9,21,25,19,92,20,41,30,9,1,2.29\r\n,Juniper Intermediate,Palmdale Elementary,Los Angeles,643,1,16,1,0,1,71,0,8,1,88,7,2,19,21,13,N/A,N/A,26,91,36,31,24,6,3,2.08\r\n,Frick Middle,Oakland Unified,Alameda,643,1,55,0,1,1,38,4,0,1,63,27,0,18,19,17,N/A,25,23,32,33,38,21,6,2,2.04\r\n,,Upper Lake Union High,Lake,642,B,0,10,3,0,23,0,60,4,75,0,2,1,1,14,N/A,N/A,26,98,13,33,42,6,6,2.61\r\n,Lee V. Pollard High,Corona-Norco Unified,Riverside,642,B,6,1,1,1,69,0,19,0,59,2,0,8,27,5,N/A,N/A,25,86,30,30,24,12,4,2.31\r\nD,Los Angeles Academy of Arts & Enterprise,Los Angeles Unified,Los Angeles,642,1,0,0,1,1,96,0,0,1,99,0,0,49,38,8,N/A,6,2,40,40,26,12,16,6,2.2\r\n,Avenal High,Reef-Sunset Unified,Kings,642,1,0,0,1,0,94,0,4,0,100,17,18,39,49,11,N/A,N/A,23,98,56,30,8,6,1,1.68\r\n,Sweetwater Community Day,Sweetwater Union High,San Diego,641,B,5,0,0,5,81,0,9,0,91,9,0,28,7,5,N/A,N/A,6,100,12,42,33,7,7,2.56\r\n,Emery Secondary,Emery Unified,Alameda,641,1,60,0,12,0,22,0,3,0,80,0,0,8,15,12,N/A,N/A,23,75,13,39,34,14,0,2.49\r\n,Edward R. Roybal Learning Center,Los Angeles Unified,Los Angeles,641,1,1,0,3,5,88,0,1,0,100,8,0,34,52,10,N/A,N/A,22,60,52,32,8,7,2,1.75\r\nD,Alliance College-Ready Academy High No.,Los Angeles Unified,Los Angeles,641,1,17,0,0,0,82,0,1,0,79,0,0,30,37,8,N/A,N/A,29,99,47,41,9,2,1,1.7\r\n,Avalon High,Los Angeles Unified,Los Angeles,641,B,2,0,0,2,95,0,0,2,76,3,2,25,32,3,N/A,N/A,18,88,69,17,6,4,4,1.56\r\n,Mission High,San Francisco Unified,San Francisco,640,1,14,1,32,4,37,0,8,1,66,16,1,43,20,11,N/A,N/A,20,49,19,39,20,18,5,2.51\r\n,Taylor Leadership Academy,Stockton Unified,San Joaquin,640,1,16,5,19,13,45,0,2,0,100,2,1,42,11,14,30,27,28,83,43,22,21,11,3,2.1\r\nD,\"Options for Youth-Hermosa Beach, Inc.\",Hermosa Beach City Elementary,Los Angeles,640,1,4,1,1,0,64,0,26,2,84,0,0,11,25,4,N/A,N/A,1,96,43,24,24,6,2,2\r\n,,Maricopa Unified,Kern,640,B,0,1,0,0,31,0,64,0,84,0,2,14,9,9,2,3,6,87,23,62,7,8,0,1.99\r\n,Westwood High,Westwood Unified,Lassen,639,1,2,3,0,0,20,0,75,0,29,0,0,0,10,29,N/A,N/A,8,53,10,42,32,16,0,2.55\r\n,Davis Middle,Compton Unified,Los Angeles,639,1,16,0,0,0,82,1,0,0,90,15,0,36,40,8,N/A,21,23,82,51,31,12,4,2,1.77\r\n,Florence Griffith Joyner Elementary,Los Angeles Unified,Los Angeles,639,1,30,0,0,0,70,0,0,0,100,2,0,41,15,9,19,18,N/A,70,50,32,14,3,1,1.73\r\n,William Jefferson Clinton Middle,Los Angeles Unified,Los Angeles,639,1,6,0,0,0,94,0,0,0,100,5,0,33,45,11,N/A,29,29,51,65,27,6,2,1,1.49\r\n,San Antonio High (Continuation),Petaluma City Schools,Sonoma,638,B,4,2,0,0,33,0,59,2,70,4,0,15,13,15,N/A,N/A,14,87,25,28,23,15,10,2.58\r\n,,Orange County Department of Ed,Orange,638,B,3,1,6,0,59,1,26,2,9,0,0,30,7,5,20,24,12,68,33,19,19,17,12,2.57\r\n,Palm View Elementary,Coachella Valley Unified,Riverside,638,1,0,0,0,0,100,0,0,0,100,2,16,68,9,11,24,27,N/A,82,49,35,12,3,1,1.71\r\n,Parlier High,Parlier Unified,Fresno,638,1,0,0,1,0,99,0,0,0,95,3,37,56,27,9,N/A,N/A,19,77,57,26,12,5,0,1.65\r\nD,Stanford New,Ravenswood City Elementary,San Mateo,638,1,13,0,1,0,78,7,1,0,99,0,0,64,18,9,N/A,N/A,19,100,56,30,8,5,1,1.65\r\n,Twin Palms Continuation,Palo Verde Unified,Riverside,638,B,16,0,0,0,59,0,25,0,71,1,1,8,11,3,N/A,N/A,20,67,53,35,12,0,0,1.59\r\n,,Solano County Office of Educat,Solano,637,B,19,2,5,6,34,2,28,3,50,0,0,14,1,61,6,8,14,72,12,27,30,23,8,2.87\r\nD,Westwood Charter,Westwood Unified,Lassen,637,1,2,6,0,0,12,1,78,0,63,1,0,1,0,12,1,1,4,87,8,39,42,11,0,2.57\r\n,Orchard Academies 2C,Los Angeles Unified,Los Angeles,637,1,0,0,0,0,99,0,1,0,92,6,1,25,39,12,N/A,25,26,67,47,34,13,5,1,1.79\r\n,Engineering and Technology Academy at Es,Los Angeles Unified,Los Angeles,637,1,0,0,0,0,99,0,0,0,99,10,0,27,49,12,N/A,N/A,30,50,59,29,8,2,2,1.59\r\n,George Washington Carver Middle,Los Angeles Unified,Los Angeles,637,1,8,0,0,0,92,0,0,0,90,4,0,35,45,9,N/A,21,19,61,65,22,9,1,2,1.53\r\n,Canyon Oaks High,Monrovia Unified,Los Angeles,636,B,6,0,0,0,81,0,11,2,67,1,0,6,24,12,N/A,N/A,13,73,20,38,30,8,5,2.41\r\nD,Ambassador Phillip V. Sanchez Public Cha,Raisin City Elementary,Fresno,636,B,4,1,5,0,68,1,14,5,79,0,0,21,8,1,N/A,N/A,8,57,23,41,11,23,1,2.37\r\n,Morningside High,Inglewood Unified,Los Angeles,636,1,29,0,0,0,68,0,1,0,90,3,0,3,1,13,N/A,N/A,25,91,37,42,12,7,2,1.95\r\n,,West Park Elementary,Fresno,636,B,3,1,6,0,78,0,11,0,39,1,2,31,13,7,14,16,8,90,44,35,14,6,1,1.85\r\n,King Elementary,West Contra Costa Unified,Contra Costa,636,1,34,0,4,2,58,0,2,0,90,2,0,45,11,14,21,28,N/A,87,38,50,6,6,1,1.83\r\n,Reef Sunset Middle,Reef-Sunset Unified,Kings,636,1,1,0,2,0,94,0,2,0,100,12,16,46,36,9,N/A,N/A,20,96,56,29,11,4,1,1.64\r\n,Shasta Lake Alternative,Gateway Unified,Shasta,635,1,3,7,0,0,10,0,75,4,56,1,0,0,0,10,4,N/A,16,87,8,41,34,14,3,2.63\r\n,Herlong High,Fort Sage Unified,Lassen,635,1,2,13,0,0,9,0,73,4,67,0,0,0,0,16,N/A,N/A,13,85,9,43,43,6,0,2.47\r\n,John Muir High,Pasadena Unified,Los Angeles,635,1,29,0,0,1,65,0,2,2,82,5,0,15,31,17,N/A,N/A,24,85,39,26,19,11,5,2.17\r\n,Montvue Elementary,Pomona Unified,Los Angeles,634,1,11,0,4,0,79,0,5,0,95,2,0,43,12,9,27,32,N/A,89,21,38,29,9,4,2.36\r\n,El Cajon Valley High,Grossmont Union High,San Diego,634,1,9,0,1,2,37,0,49,0,69,33,0,47,19,11,N/A,N/A,22,97,26,40,21,10,3,2.23\r\n,Reagan Elementary,Lindsay Unified,Tulare,634,1,1,1,2,0,88,1,7,0,100,4,25,48,13,4,22,29,N/A,97,46,25,20,6,4,1.98\r\n,Bret Harte Preparatory Middle,Los Angeles Unified,Los Angeles,634,1,28,0,0,0,71,0,0,0,73,6,0,23,30,12,N/A,18,21,77,50,32,13,4,2,1.75\r\n,Folsom Lake High,Folsom-Cordova Unified,Sacramento,633,B,7,0,0,2,17,0,67,7,24,2,0,0,0,10,N/A,N/A,19,90,3,18,39,18,21,3.37\r\n,El Sereno Alternative Education,San Juan Unified,Sacramento,633,1,3,2,0,0,20,2,74,0,36,8,0,3,1,3,N/A,N/A,2,82,7,20,27,30,16,3.27\r\n,San Joaquin County Special Education,San Joaquin County Office of E,San Joaquin,633,C,11,1,9,4,39,1,31,0,64,0,0,27,0,100,8,10,N/A,57,10,29,21,34,7,2.99\r\n,Don Pedro High,Big Oak Flat-Groveland Unified,Tuolumne,633,1,5,5,0,0,29,0,52,0,38,0,0,0,0,0,N/A,N/A,8,71,0,40,53,7,0,2.67\r\n,,Elk Hills Elementary,Kern,633,B,1,0,0,0,15,0,85,0,63,0,0,1,1,10,,,,76,17,23,41,19,1,2.64\r\n,Elk Hills Elementary,Elk Hills Elementary,Kern,633,1,1,0,0,0,15,0,85,0,63,0,0,1,1,10,,,,76,17,23,41,19,1,2.64\r\nD,National University Academy,Lakeside Union Elementary,San Diego,633,B,5,1,2,1,48,0,38,5,62,0,0,9,7,12,11,N/A,24,94,23,29,24,15,10,2.6\r\n,Ridgway High (Continuation),Santa Rosa City Schools,Sonoma,633,B,5,2,1,2,40,0,35,7,58,1,2,15,19,17,N/A,N/A,18,79,24,31,28,13,4,2.42\r\n,El Camino Real Continuation High,Placentia-Yorba Linda Unified,Orange,633,B,3,0,0,1,67,0,25,4,39,1,0,18,22,4,N/A,N/A,14,62,28,32,17,19,4,2.4\r\n,Gardena Senior High,Los Angeles Unified,Los Angeles,633,1,23,0,4,3,68,1,1,0,79,11,0,17,37,10,N/A,N/A,30,63,38,27,23,8,4,2.11\r\n,Buena Vista High,Paramount Unified,Los Angeles,633,B,10,0,0,1,87,0,1,0,89,4,0,38,20,4,N/A,N/A,18,79,35,38,17,6,4,2.06\r\n,Gonzales High,Gonzales Unified,Monterey,633,1,0,0,1,1,94,0,4,0,85,11,37,28,46,10,N/A,N/A,25,92,48,23,16,10,2,1.95\r\nD,Mercury On-Line Academy of Southern Cali,Nuview Union,Riverside,632,1,32,0,1,0,35,0,21,10,3,0,0,4,0,2,22,13,17,94,4,29,43,18,6,2.93\r\n,Chinese Camp Elementary,Jamestown Elementary,Tuolumne,632,1,9,0,0,0,41,0,45,0,91,5,0,36,0,14,18,N/A,N/A,95,19,38,33,10,0,2.33\r\n,Antelope Valley High,Antelope Valley Union High,Los Angeles,632,1,33,1,1,1,52,0,11,0,20,0,2,16,16,19,N/A,N/A,27,71,32,28,26,9,4,2.26\r\n,Lynwood High,Lynwood Unified,Los Angeles,632,1,6,0,0,0,93,0,0,0,81,11,1,29,43,9,N/A,N/A,31,67,38,37,17,6,2,1.96\r\n,\"Arts, Theatre, Entertainment (ArTES) at\",Los Angeles Unified,Los Angeles,632,1,6,5,0,0,87,0,2,0,86,8,0,24,38,8,N/A,N/A,28,45,46,29,20,3,2,1.86\r\n,West Adams Preparatory High,Los Angeles Unified,Los Angeles,632,1,8,0,1,0,91,0,0,0,100,7,0,36,45,13,N/A,N/A,23,45,59,29,8,3,1,1.58\r\n,Granada High,Le Grand Union High,Merced,632,B,0,0,0,0,95,0,5,0,100,0,5,63,16,0,,,,95,72,17,11,0,0,1.39\r\n,Oak View High,Oak Park Unified,Ventura,631,B,4,0,4,0,8,0,83,0,4,0,0,4,0,8,N/A,N/A,12,88,5,10,29,43,14,3.52\r\n,Village High,Pleasanton Unified,Alameda,631,B,6,0,3,0,30,1,60,0,21,2,0,8,7,17,N/A,3,16,91,8,15,31,26,20,3.34\r\n,Corona-Norco Alternative,Corona-Norco Unified,Riverside,631,1,3,1,2,0,49,0,43,1,37,4,0,6,10,13,,,,94,20,28,31,13,9,2.64\r\n,Verde Elementary,West Contra Costa Unified,Contra Costa,631,1,28,0,4,0,67,1,0,0,100,4,0,56,10,7,24,32,N/A,99,54,33,8,4,1,1.64\r\n,,Stone Corral Elementary,Tulare,631,B,0,0,0,0,98,0,2,0,97,4,17,68,6,3,22,23,8,98,60,25,11,3,1,1.6\r\n,City of Angels,Los Angeles Unified,Los Angeles,630,B,18,1,1,1,69,1,9,1,62,8,0,12,26,2,1,4,7,57,38,33,16,9,4,2.07\r\n,Rincon High (Continuation),Carpinteria Unified,Santa Barbara,630,B,9,4,0,0,78,0,9,0,48,0,0,39,17,9,N/A,N/A,12,91,48,24,29,0,0,1.81\r\nD,Woodland Polytechnic Academy,Yolo County Office of Educatio,Yolo,629,1,3,1,0,0,56,0,38,2,79,8,0,4,11,8,,,,93,8,36,30,18,9,2.85\r\n,,Dunsmuir Joint Union High,Siskiyou,629,B,2,0,0,2,17,2,74,2,54,20,2,0,0,9,,,,97,5,35,46,8,6,2.76\r\n,West Hollywood Opportunity,Los Angeles Unified,Los Angeles,629,B,26,0,5,1,60,0,7,0,74,6,0,21,25,16,N/A,N/A,18,63,29,25,10,27,8,2.59\r\n,Forty-Second Street Elementary,Los Angeles Unified,Los Angeles,629,1,66,1,0,0,32,0,1,0,100,4,0,14,6,11,15,12,N/A,31,21,30,32,17,0,2.46\r\n,McLane High,Fresno Unified,Fresno,629,1,9,1,21,0,63,0,6,0,97,13,4,25,26,13,N/A,N/A,25,82,36,37,21,4,2,2\r\n,Perris Lake High (Continuation),Perris Union High,Riverside,629,B,7,2,1,1,70,1,18,0,79,1,0,23,16,1,N/A,N/A,30,99,40,33,23,1,3,1.95\r\nD,Alliance Technology and Math Science Hig,Los Angeles Unified,Los Angeles,629,1,2,0,3,2,90,0,2,0,66,0,0,28,45,12,N/A,N/A,34,99,46,28,16,7,2,1.9\r\n,Stone Corral Elementary,Stone Corral Elementary,Tulare,629,1,0,0,0,0,98,0,2,0,97,4,17,68,6,2,22,23,N/A,99,60,25,11,3,1,1.6\r\nD,Escuela Popular Accelerated Family Learn,East Side Union High,Santa Clara,629,1,0,0,0,0,81,0,0,1,80,0,0,74,17,7,21,18,20,92,65,23,6,1,4,1.57\r\n,Needles High,Needles Unified,San Bernardino,628,1,1,15,2,0,27,1,51,3,46,5,0,0,0,13,N/A,N/A,17,95,12,35,34,12,6,2.65\r\nD,Civicorps Elementary,Oakland Unified,Alameda,628,1,33,0,1,0,9,1,1,0,70,0,1,3,0,2,,,,0,0,0,0,0,0,\r\nD,Pivot Online Charter - North Bay,Oak Grove Union Elementary,Sonoma,627,1,1,1,1,0,21,0,66,0,21,0,0,4,3,19,N/A,N/A,3,94,10,16,40,24,11,3.11\r\n,Dunsmuir High,Dunsmuir Joint Union High,Siskiyou,627,1,2,0,0,2,17,2,74,2,54,20,2,0,0,9,,,,97,5,35,46,8,6,2.76\r\n,San Juan High,San Juan Unified,Sacramento,627,1,13,2,3,1,28,1,51,1,68,2,0,16,16,17,N/A,N/A,15,59,18,38,19,22,4,2.56\r\n,Palo Verde High,Palo Verde Unified,Riverside,627,1,8,1,1,1,60,0,30,0,56,4,2,7,13,13,N/A,N/A,28,73,37,40,11,10,2,1.99\r\n,Edwin Markham Middle,Los Angeles Unified,Los Angeles,627,1,26,0,0,0,73,0,0,0,83,7,0,27,29,15,N/A,23,22,40,56,29,11,4,1,1.65\r\n,Nevada County Special Education,Nevada County Office of Educat,Nevada,626,C,0,0,2,0,7,0,80,7,40,0,0,0,0,100,8,8,N/A,96,5,30,28,16,21,3.19\r\n,San Pasqual Academy,San Diego County Office of Edu,San Diego,626,B,19,0,1,0,47,1,8,19,97,0,0,10,3,19,,,,94,22,19,7,51,0,2.88\r\nD,Fresno Academy for Civic and Entrepreneu,Fresno Unified,Fresno,626,1,5,0,1,0,64,0,23,3,95,0,0,14,7,7,N/A,N/A,25,85,22,21,28,23,6,2.7\r\nD,ASA Charter,San Bernardino City Unified,San Bernardino,626,1,18,0,1,0,66,0,5,7,99,0,0,15,0,5,22,20,5,76,17,30,27,23,2,2.63\r\n,Calaveras Hills,Milpitas Unified,Santa Clara,626,B,6,0,5,23,47,2,15,1,53,2,0,17,12,11,N/A,N/A,18,96,17,36,27,17,3,2.54\r\n,,Ventura County Office of Educa,Ventura,626,B,3,0,1,3,68,1,18,3,52,0,0,24,16,27,13,11,8,62,41,23,21,13,2,2.11\r\nY,Burton Pathways Charter Academy,Burton Elementary,Tulare,626,1,2,2,0,0,72,0,23,0,87,0,23,23,17,1,N/A,N/A,23,93,45,13,36,4,1,2.03\r\n,Glassbrook Elementary,Hayward Unified,Alameda,626,1,7,0,3,3,81,4,2,0,90,0,10,62,14,8,28,28,N/A,78,36,41,14,6,2,1.97\r\n,Insights High (Continuation),Elk Grove Unified,Sacramento,625,B,45,0,8,2,22,2,20,0,86,0,0,2,10,0,N/A,N/A,3,90,20,34,30,11,5,2.45\r\n,,Modoc County Office of Educati,Modoc,625,B,12,6,0,0,27,0,55,0,49,0,0,6,0,51,1,N/A,2,63,29,26,29,16,0,2.32\r\n,Reach Academy,Oakland Unified,Alameda,625,1,53,0,5,1,34,5,1,0,50,42,1,33,4,6,23,26,N/A,46,30,28,30,5,5,2.27\r\nD,Diego Hills Charter,Dehesa Elementary,San Diego,625,B,15,2,4,0,66,1,11,1,71,0,0,20,11,13,N/A,N/A,8,94,35,35,18,10,2,2.1\r\n,Stege Elementary,West Contra Costa Unified,Contra Costa,625,1,67,0,8,1,18,2,3,0,86,3,0,19,2,9,19,23,N/A,60,19,59,16,5,1,2.1\r\n,Susan Miller Dorsey Senior High,Los Angeles Unified,Los Angeles,625,1,50,0,0,0,48,0,0,0,78,4,0,18,18,16,N/A,N/A,18,35,33,38,19,7,3,2.09\r\n,Mojave Jr./Sr. High,Mojave Unified,Kern,625,1,14,1,0,1,58,0,23,0,77,0,1,14,23,9,N/A,N/A,21,78,34,42,17,5,1,1.97\r\nD,Insight School of California - North Bay,Windsor Unified,Sonoma,624,1,11,3,3,4,20,1,55,2,31,0,0,1,6,12,N/A,N/A,28,59,4,52,16,22,7,2.76\r\n,Theodore Bird High,Sonora Union High,Tuolumne,624,1,0,8,0,0,5,0,87,0,42,0,0,0,2,3,,,,90,11,31,39,17,2,2.67\r\n,Mountain View (Alternative),Kings Canyon Joint Unified,Fresno,624,B,0,0,3,3,70,0,22,3,30,0,3,24,16,22,N/A,7,29,100,32,32,16,14,5,2.27\r\n,San Jose High Academy Plus,San Jose Unified,Santa Clara,624,B,5,0,0,0,68,0,11,0,58,11,0,5,42,5,N/A,N/A,20,79,47,47,7,0,0,1.6\r\n,,Stony Creek Joint Unified,Glenn,623,B,1,41,0,0,8,0,43,2,76,0,0,1,0,6,17,15,8,90,25,33,28,3,11,2.4\r\n,San Diego LEADS,San Diego Unified,San Diego,623,1,16,0,0,0,79,0,3,1,99,13,0,27,31,15,N/A,N/A,21,86,28,37,23,10,3,2.23\r\n,Cal Burke High,Los Angeles Unified,Los Angeles,623,B,3,0,0,1,93,0,1,0,92,5,1,36,44,11,N/A,N/A,16,68,54,32,9,4,1,1.67\r\n,County Community,Amador County Office of Educat,Amador,622,B,1,6,1,2,28,0,56,4,70,2,0,1,10,2,N/A,N/A,11,94,15,38,27,15,6,2.6\r\n,Mt. Lukens Continuation,Los Angeles Unified,Los Angeles,622,B,8,0,0,0,76,0,17,0,83,1,0,24,24,1,N/A,N/A,18,68,43,30,19,6,2,1.92\r\n,Barack Obama Global Preparation Academy,Los Angeles Unified,Los Angeles,622,1,33,0,0,0,67,0,0,0,100,5,0,24,22,14,N/A,22,28,45,48,26,19,5,2,1.87\r\n,United for Success Academy,Oakland Unified,Alameda,622,1,10,0,7,1,79,1,1,0,44,23,1,49,33,7,N/A,33,26,37,58,29,8,3,1,1.6\r\n,Lopez Continuation High,Lucia Mar Unified,San Luis Obispo,621,B,1,1,0,0,41,0,53,3,58,6,0,12,8,8,N/A,N/A,10,87,21,23,28,23,5,2.68\r\n,Kings County Special Education,Kings County Office of Educati,Kings,621,C,6,2,1,3,58,0,12,1,57,0,0,1,0,97,11,7,N/A,92,18,28,40,11,4,2.56\r\n,Summit View Independent Study,Riverside Unified,Riverside,621,B,8,1,2,0,51,0,35,1,46,5,0,7,12,3,26,N/A,14,96,21,28,32,14,4,2.52\r\n,Mountain Lakes High,Gateway Unified,Shasta,621,B,1,8,6,0,10,0,73,1,70,0,0,4,3,4,N/A,N/A,16,85,18,42,32,7,2,2.32\r\n,Central Coast High,Monterey Peninsula Unified,Monterey,621,B,7,0,1,0,54,1,12,1,64,0,0,25,16,3,N/A,N/A,12,78,44,29,15,12,0,1.94\r\n,Colusa Alternative Home,Colusa Unified,Colusa,620,1,0,0,0,0,49,2,49,0,31,4,0,13,13,5,,,,100,16,24,42,16,2,2.64\r\n,Sierra High,Fillmore Unified,Ventura,620,B,0,0,0,0,90,0,10,0,87,0,8,35,28,13,N/A,N/A,17,77,35,43,13,7,2,1.98\r\n,East Valley Senior High,Los Angeles Unified,Los Angeles,620,1,3,0,2,1,90,0,3,0,88,6,0,25,47,14,N/A,N/A,29,64,46,30,15,7,2,1.89\r\n,East Los Angeles Performing Arts Academy,Los Angeles Unified,Los Angeles,620,1,1,0,0,0,98,0,1,0,100,11,1,22,43,10,N/A,N/A,27,57,58,25,11,4,1,1.65\r\n,Kern County Special Education,Kern County Office of Educatio,Kern,619,C,10,0,2,1,52,0,35,0,89,0,0,8,7,100,6,8,N/A,35,11,41,25,8,15,2.75\r\n,Prospects High (Alternative),Antioch Unified,Contra Costa,619,1,23,2,3,1,30,1,40,0,41,1,0,5,5,14,1,1,4,73,14,34,32,16,5,2.64\r\n,San Diego MVP Arts,San Diego Unified,San Diego,619,1,13,0,1,1,78,0,5,2,100,14,0,30,32,14,N/A,N/A,23,81,29,35,22,11,4,2.27\r\n,Ortega High,Lake Elsinore Unified,Riverside,619,B,3,1,2,1,73,0,20,0,71,0,0,28,21,8,N/A,N/A,18,100,38,35,21,5,2,1.98\r\n,Desert Mirage High,Coachella Valley Unified,Riverside,619,1,0,1,0,0,97,0,0,0,92,11,19,48,42,12,N/A,N/A,22,89,76,15,5,2,1,1.36\r\n,Liberty High,Benicia Unified,Solano,618,B,8,0,0,3,30,0,45,10,43,0,0,3,10,8,N/A,N/A,18,93,11,27,41,14,8,2.81\r\n,Arrow High (Continuation),Charter Oak Unified,Los Angeles,618,B,2,0,0,0,79,2,14,2,58,0,0,14,14,2,N/A,N/A,17,86,30,32,19,11,8,2.35\r\n,Vineyard Alternative,Livermore Valley Joint Unified,Alameda,617,B,2,0,2,1,24,0,63,8,30,6,0,3,5,14,,,,94,9,20,35,26,10,3.08\r\n,Independence High,Liberty Union High,Contra Costa,617,1,9,1,2,2,28,0,55,2,21,4,1,7,8,7,N/A,N/A,13,94,8,28,42,18,4,2.82\r\nD,Learning for Life Charter,Monterey Peninsula Unified,Monterey,617,1,10,0,0,1,60,1,21,7,72,0,0,23,1,3,N/A,N/A,15,70,32,36,12,19,1,2.23\r\n,Lincoln High,San Diego Unified,San Diego,617,1,23,0,6,2,65,1,1,1,100,11,0,33,23,15,N/A,N/A,27,78,31,35,21,9,5,2.21\r\n,Frida Kahlo High,Los Angeles Unified,Los Angeles,617,B,6,0,0,0,93,0,1,0,100,2,0,30,46,9,N/A,N/A,24,52,49,23,16,9,4,1.95\r\nD,Imagine Schools at Imperial Valley,El Centro Elementary,Imperial,616,1,2,1,0,0,92,1,4,0,80,0,0,66,0,5,2,3,N/A,44,15,23,27,22,13,2.94\r\n,Future Bound Independent Study Secondary,Ramona City Unified,San Diego,616,1,0,0,0,0,35,0,56,9,41,0,0,11,9,2,,,,93,18,30,30,12,10,2.66\r\n,Eagle Summit Community Day,Snowline Joint Unified,San Bernardino,616,B,24,0,0,0,31,0,40,0,82,0,0,11,2,44,N/A,17,10,82,19,38,38,5,0,2.3\r\n,Knox Middle,San Diego Unified,San Diego,616,1,19,0,1,1,75,1,0,1,100,17,0,47,18,16,N/A,24,29,65,36,36,16,8,4,2.08\r\n,Henry David Thoreau Continuation,Los Angeles Unified,Los Angeles,616,B,14,0,2,0,71,0,12,2,80,6,0,18,39,0,N/A,N/A,13,61,42,19,29,10,0,2.06\r\nD,Animo Watts Charter High,Los Angeles Unified,Los Angeles,616,1,27,0,0,0,72,0,0,0,94,0,0,25,25,11,,,,80,49,29,18,3,1,1.78\r\n,North Region Community School of Greater,San Diego County Office of Edu,San Diego,615,1,6,2,0,0,74,2,12,4,95,0,0,41,18,16,,,,100,41,17,33,7,1,2.09\r\n,Ronald Reagan Academy,Dinuba Unified,Tulare,615,1,0,0,1,1,91,0,7,0,99,1,4,25,29,4,N/A,N/A,14,99,49,26,17,6,2,1.86\r\nD,Lou Dantzler Preparatory Charter High,Los Angeles Unified,Los Angeles,614,1,91,0,0,0,2,0,0,0,77,0,0,0,0,7,N/A,N/A,26,58,8,20,47,15,10,2.98\r\nD,Yuba City Charter,Yuba City Unified,Sutter,614,1,5,4,2,2,27,0,58,0,69,0,0,4,5,19,7,9,9,96,3,37,43,12,6,2.81\r\n,Buena Vista High (Continuation),Taft Union High,Kern,614,B,0,0,0,0,32,0,68,0,70,0,0,8,14,6,N/A,N/A,8,100,26,26,38,6,4,2.36\r\n,San Pasqual Valley High,San Pasqual Valley Unified,Imperial,614,1,0,37,0,0,59,0,1,4,96,6,13,31,14,9,N/A,N/A,13,63,4,80,16,0,0,2.12\r\n,School of Math and Science,Los Angeles Unified,Los Angeles,614,1,2,0,1,0,96,0,1,0,100,8,1,16,49,10,N/A,N/A,17,47,50,29,16,2,3,1.78\r\n,Charles Drew Middle,Los Angeles Unified,Los Angeles,614,1,17,0,0,0,82,0,0,0,88,7,0,29,36,12,N/A,N/A,20,57,65,23,9,2,1,1.52\r\n,Indian Hills Continuation High,Las Virgenes Unified,Los Angeles,613,B,3,0,0,0,30,0,61,6,21,0,0,9,6,15,N/A,N/A,11,73,13,17,29,29,13,3.13\r\nY,Crossroads Charter,Armona Union Elementary,Kings,613,B,5,2,0,1,54,0,38,0,59,0,0,3,5,5,N/A,5,4,91,15,30,36,15,4,2.63\r\n,Magnolia Independent Learning Center,Shasta County Office of Educat,Shasta,613,1,4,2,0,0,13,0,78,2,31,0,0,0,0,4,,,,78,14,49,26,3,9,2.43\r\n,Peninsula High (Continuation),San Mateo Union High,San Mateo,613,B,2,0,0,4,68,10,11,5,51,0,0,26,23,2,N/A,N/A,19,91,27,38,22,14,0,2.22\r\n,Futures Elementary,Oakland Unified,Alameda,613,1,43,0,4,0,48,1,3,0,53,14,0,39,9,7,22,26,N/A,50,37,35,22,5,2,1.99\r\n,Santa Cruz County Special Education,Santa Cruz County Office of Ed,Santa Cruz,612,C,6,0,0,1,29,0,50,4,38,0,0,10,1,100,8,7,N/A,15,0,0,30,60,10,3.8\r\n,Santee Education Complex,Los Angeles Unified,Los Angeles,612,1,6,0,0,0,94,0,0,0,99,8,0,33,50,11,N/A,N/A,28,58,63,24,8,3,2,1.56\r\n,North Marysville Continuation High,Marysville Joint Unified,Yuba,611,B,6,2,0,0,31,0,52,6,72,4,0,6,4,7,N/A,N/A,17,85,15,33,46,4,2,2.46\r\nD,Career & Technical High,San Joaquin County Office of E,San Joaquin,611,1,9,0,1,4,66,1,19,0,70,0,4,13,10,7,N/A,N/A,16,96,31,35,18,10,5,2.24\r\n,Oakland High,Oakland Unified,Alameda,611,1,34,0,42,2,19,1,2,0,83,14,0,20,33,11,N/A,N/A,29,73,37,35,18,8,3,2.06\r\nD,Animo Locke Technology High,Los Angeles Unified,Los Angeles,611,1,26,0,0,0,72,0,0,1,95,0,0,19,29,9,N/A,N/A,31,69,50,30,16,2,2,1.75\r\n,Portola Opportunity,Plumas County Office of Educat,Plumas,610,1,0,13,0,0,13,0,67,7,87,0,0,0,0,13,,,,100,33,33,27,7,0,2.07\r\n,Millennium High Alternative,Piedmont City Unified,Alameda,609,B,10,0,2,0,15,0,65,6,0,0,0,2,2,35,N/A,N/A,16,96,2,4,6,32,56,4.36\r\n,Pacific Beach High,San Luis Coastal Unified,San Luis Obispo,609,B,4,2,0,0,27,0,64,2,60,0,0,13,2,11,N/A,N/A,34,87,13,23,36,18,10,2.9\r\n,Plaza Robles Continuation High,Lodi Unified,San Joaquin,609,B,24,3,12,9,38,3,11,0,67,2,0,14,2,5,N/A,N/A,15,74,14,37,37,6,6,2.53\r\n,Lafayette Elementary,Oakland Unified,Alameda,609,1,53,0,4,1,25,0,8,1,54,19,0,31,6,16,17,22,N/A,43,34,36,24,6,0,2.01\r\n,David Starr Jordan Senior High,Los Angeles Unified,Los Angeles,609,1,19,0,0,0,81,0,0,0,100,7,0,23,36,11,N/A,N/A,28,35,64,22,9,3,0,1.54\r\n,Independence High,Paso Robles Joint Unified,San Luis Obispo,608,1,3,1,0,0,36,0,57,2,39,3,1,10,10,10,N/A,N/A,10,83,8,22,49,14,7,2.88\r\n,Loma Vista,Chico Unified,Butte,608,C,11,5,0,0,11,0,74,0,26,0,0,0,0,100,N/A,5,N/A,63,17,42,33,0,8,2.42\r\n,Prospect Education Center,Porterville Unified,Tulare,608,1,0,5,0,1,53,0,39,1,62,2,2,13,11,7,N/A,11,10,96,29,25,32,10,4,2.34\r\n,Silver Valley Academy,Silver Valley Unified,San Bernardino,607,1,0,0,0,0,33,0,48,0,52,0,0,0,0,24,,,,81,6,29,18,35,12,3.18\r\n,Valley High (Continuation),Dublin Unified,Alameda,607,B,4,2,4,2,35,2,47,4,28,0,0,12,4,14,N/A,N/A,11,89,2,37,43,14,4,2.8\r\n,Ridgeview High (Continuation),Paradise Unified,Butte,607,B,1,1,0,0,16,1,74,7,71,2,0,1,0,23,N/A,N/A,14,100,17,29,41,8,5,2.54\r\n,Nueva Vista Continuation High,Jurupa Unified,Riverside,607,B,3,1,0,0,80,1,15,0,74,3,0,38,13,18,N/A,N/A,13,92,37,35,19,7,2,2.01\r\n,School of Engineering and Technology,Los Angeles Unified,Los Angeles,607,1,1,0,1,0,98,0,0,0,100,8,1,26,47,17,N/A,N/A,19,41,62,21,12,2,2,1.63\r\nD,Eel River Charter,Round Valley Unified,Mendocino,606,1,0,24,0,0,32,0,24,18,100,0,0,24,0,0,20,N/A,N/A,100,26,24,41,9,0,2.32\r\nD,Desert Sands Charter,Antelope Valley Union High,Los Angeles,606,B,17,1,0,0,55,0,21,4,77,0,0,15,5,13,N/A,N/A,6,91,28,41,17,12,2,2.18\r\n,El Camino High (Continuation),Norwalk-La Mirada Unified,Los Angeles,606,B,4,0,1,0,78,0,7,1,95,0,0,13,15,2,N/A,N/A,19,93,28,49,17,5,1,2.01\r\nD,IvyTech Charter,Moorpark Unified,Ventura,605,1,1,1,2,0,20,0,73,0,28,0,0,0,0,0,N/A,1,3,85,3,23,27,33,15,3.35\r\nY,Delta Charter,Santa Cruz City High,Santa Cruz,605,B,2,2,2,1,24,1,63,3,22,2,0,5,5,5,N/A,N/A,14,83,6,15,36,31,12,3.28\r\n,Enterprise Alternative,Clovis Unified,Fresno,605,B,7,2,4,0,37,1,46,3,57,2,0,4,4,11,N/A,N/A,6,94,7,24,37,22,11,3.06\r\n,Adelante High (Continuation),Roseville Joint Union High,Placer,605,B,4,2,1,2,42,1,45,2,61,0,0,9,7,7,N/A,N/A,12,90,13,29,36,13,8,2.73\r\n,,Round Valley Unified,Mendocino,605,B,1,73,0,0,11,0,15,0,95,0,0,6,0,8,17,11,12,13,14,33,39,8,6,2.58\r\n,Placer County Community Schools,Placer County Office of Educat,Placer,605,B,3,3,2,0,36,0,51,4,69,0,0,19,6,6,N/A,1,17,74,16,35,31,17,1,2.53\r\nD,Envision Academy for Arts & Technology,Alameda County Office of Educa,Alameda,605,1,48,4,2,0,35,1,5,4,65,0,0,12,13,9,N/A,N/A,28,93,27,23,35,6,10,2.5\r\n,Zupanic High,Rialto Unified,San Bernardino,605,1,5,0,0,0,79,2,14,0,41,7,0,24,7,0,N/A,N/A,1,93,41,24,31,4,0,1.98\r\n,Cesar Chavez Continuation High,Compton Unified,Los Angeles,605,B,31,0,0,0,61,1,0,0,59,1,0,29,24,8,N/A,N/A,18,78,49,29,17,5,1,1.8\r\nD,\"National University Academy, Armona\",Armona Union Elementary,Kings,605,B,2,2,0,0,79,0,16,0,95,0,0,7,7,5,N/A,N/A,24,95,56,20,15,7,2,1.8\r\n,Dominguez High,Compton Unified,Los Angeles,605,1,16,0,0,0,83,1,0,0,84,7,0,35,42,8,N/A,N/A,29,79,54,29,11,4,2,1.69\r\n,Apollo High,East Side Union High,Santa Clara,605,B,0,0,1,9,84,1,1,0,65,0,1,21,35,0,N/A,N/A,20,84,58,25,11,5,2,1.68\r\n,Indian Valley Elementary,Stony Creek Joint Unified,Glenn,604,1,0,21,0,0,14,0,64,0,57,0,0,0,0,14,N/A,15,N/A,93,23,31,31,0,15,2.54\r\n,Junipero Serra High,Capistrano Unified,Orange,604,1,1,0,0,1,59,0,36,3,64,1,0,22,25,6,N/A,N/A,10,52,29,20,30,16,6,2.5\r\nD,Full Circle Learning Academy,Los Angeles Unified,Los Angeles,604,1,70,1,0,0,26,1,0,3,39,0,0,8,7,13,,,,70,17,39,33,7,4,2.41\r\n,Helen Bernstein High,Los Angeles Unified,Los Angeles,604,1,2,0,3,5,85,0,5,0,87,6,0,34,48,14,N/A,N/A,21,62,46,32,12,6,5,1.91\r\nD,one.Charter,San Joaquin County Office of E,San Joaquin,603,1,16,4,7,2,44,0,24,0,98,0,0,11,2,7,N/A,N/A,22,87,19,29,38,8,6,2.54\r\nD,REALM High,Berkeley Unified,Alameda,603,1,24,0,2,1,56,2,8,5,95,0,0,49,0,21,N/A,N/A,19,100,30,32,19,15,4,2.31\r\n,Los Angeles Teachers Preparatory Academy,Los Angeles Unified,Los Angeles,603,1,3,1,3,3,90,1,1,0,100,3,0,61,23,3,N/A,N/A,23,46,68,23,3,4,1,1.47\r\n,Oak Grove Middle,Mt. Diablo Unified,Contra Costa,602,1,6,0,3,3,78,2,7,0,88,2,0,45,29,14,N/A,20,20,60,40,29,15,10,6,2.13\r\n,Kings Canyon Continuation,Kings Canyon Joint Unified,Fresno,602,B,0,0,0,0,87,0,11,2,90,0,7,33,23,0,N/A,N/A,19,77,49,32,15,2,2,1.77\r\n,Shasta County Special Education,Shasta County Office of Educat,Shasta,601,C,0,2,0,2,4,0,90,2,77,0,0,0,0,100,5,9,N/A,69,9,27,58,3,3,2.64\r\n,,Mono County Office of Educatio,Mono,601,B,3,6,0,0,53,0,38,0,78,0,0,31,16,9,N/A,N/A,10,0,0,0,0,0,0,\r\n,Culver Park High,Culver City Unified,Los Angeles,600,B,24,0,6,0,53,0,15,3,29,0,0,18,6,3,,,,94,16,25,31,22,6,2.78\r\n,Carlsbad Village Academy,Carlsbad Unified,San Diego,600,B,1,0,2,0,60,1,34,0,48,8,2,20,23,13,N/A,N/A,20,91,24,28,25,19,5,2.54\r\n,Twain High,San Diego Unified,San Diego,600,1,9,0,6,3,56,2,20,4,74,14,0,20,26,10,N/A,N/A,15,79,26,31,22,16,5,2.44\r\n,Maricopa Elementary,Maricopa Unified,Kern,600,1,0,1,0,0,28,0,65,0,82,0,1,14,1,14,21,11,N/A,89,14,64,9,13,0,2.2\r\n,Santa Barbara County Juvenile Court,Santa Barbara County Office of,Santa Barbara,600,B,4,1,0,0,76,0,17,0,94,0,1,34,11,13,,,,62,39,24,25,9,3,2.12\r\n,San Benito County Opportunity,San Benito County Office of Ed,San Benito,600,B,0,0,0,0,85,0,14,0,56,0,14,33,8,19,N/A,N/A,1,71,38,46,14,2,0,1.8\r\n,Independent Learning Center (Alternative,El Dorado Union High,El Dorado,599,1,0,1,0,3,12,0,83,1,13,4,0,1,1,10,N/A,N/A,18,93,0,19,31,36,14,3.45\r\n,Yolo County Special Education,Yolo County Office of Educatio,Yolo,599,C,3,0,4,0,46,1,35,5,66,0,0,22,1,96,5,6,N/A,46,5,31,24,26,14,3.14\r\n,Willow Glen Plus (Continuation),San Jose Unified,Santa Clara,599,B,7,0,0,0,93,0,0,0,86,0,0,29,43,0,N/A,N/A,20,86,33,42,8,17,0,2.08\r\n,Hillview High (Continuation),Tustin Unified,Orange,599,B,4,0,1,0,86,1,7,1,75,1,0,46,16,11,N/A,N/A,23,93,51,20,13,13,3,1.96\r\n,Martin Luther King Jr. Technology Academ,Twin Rivers Unified,Sacramento,599,1,20,1,21,0,43,2,11,2,87,13,0,29,19,19,N/A,N/A,25,73,42,34,21,2,1,1.84\r\n,Lovonya DeJean Middle,West Contra Costa Unified,Contra Costa,599,1,28,0,5,1,63,1,2,0,86,10,0,31,27,17,N/A,N/A,26,84,44,38,11,7,0,1.82\r\n,Vista West Continuation High,Kern Union High,Kern,598,B,7,1,1,1,38,0,48,6,55,0,1,3,9,3,N/A,N/A,15,96,13,37,26,16,8,2.7\r\n,Carpe Diem High (Continuation),Petaluma City Schools,Sonoma,597,B,5,0,0,0,38,0,52,5,33,0,0,14,5,10,N/A,N/A,21,95,10,10,35,30,15,3.3\r\nD,Educational Outreach Academy,Red Bluff Joint Union High,Tehama,597,1,2,6,0,0,12,0,76,4,32,0,0,0,0,0,N/A,N/A,8,96,6,23,40,23,8,3.04\r\n,Irwin O. Addicott Elementary,Fresno Unified,Fresno,597,C,13,0,5,0,74,0,8,0,100,0,3,16,0,100,5,6,N/A,63,25,25,33,4,13,2.54\r\n,,Allensworth Elementary,Tulare,597,B,0,0,0,0,100,0,0,0,100,0,0,63,13,2,1,N/A,N/A,5,0,67,33,0,0,2.33\r\n,Allensworth Elementary,Allensworth Elementary,Tulare,597,1,0,0,0,0,100,0,0,0,100,0,0,63,13,2,1,N/A,N/A,5,0,67,33,0,0,2.33\r\n,Keith McCarthy Academy,Lake Elsinore Unified,Riverside,597,1,7,0,1,0,57,0,33,2,49,2,0,17,13,10,,,,98,19,40,37,2,2,2.3\r\n,Inglewood High,Inglewood Unified,Los Angeles,597,1,39,0,0,0,59,0,0,0,82,5,0,1,0,12,N/A,N/A,28,93,23,45,20,9,3,2.24\r\n,Horace Mann Junior High,Los Angeles Unified,Los Angeles,597,1,56,0,0,0,43,0,0,0,100,3,0,16,14,21,N/A,17,17,39,35,38,18,7,3,2.05\r\n,John C. Fremont Elementary,Stockton Unified,San Joaquin,597,1,5,3,5,3,75,0,9,0,99,3,5,48,13,8,30,27,29,93,42,34,16,6,2,1.92\r\n,Academic Performance Excellence Academy,Los Angeles Unified,Los Angeles,597,1,3,0,1,0,92,0,4,0,87,5,0,30,52,14,N/A,N/A,28,57,50,32,11,6,1,1.74\r\nD,All Tribes Charter,Warner Unified,San Diego,597,1,0,55,2,0,21,2,4,11,74,0,0,0,0,17,N/A,N/A,9,77,56,36,6,3,0,1.56\r\n,,Plumas County Office of Educat,Plumas,596,B,0,11,0,0,16,0,71,2,76,0,0,0,0,20,,,,84,21,29,34,8,8,2.53\r\n,Prospect High (Continuation),Oroville Union High,Butte,596,B,6,7,6,1,24,1,52,2,69,1,0,5,6,15,N/A,N/A,19,79,21,42,20,15,2,2.33\r\n,Silverado High,Saddleback Valley Unified,Orange,595,B,2,0,1,1,56,2,35,1,42,2,0,20,15,1,N/A,N/A,19,93,22,28,30,13,7,2.53\r\nD,Mojave River Academy,Oro Grande Elementary,San Bernardino,595,B,5,1,1,1,55,0,35,2,49,0,0,11,6,5,5,6,19,99,26,23,39,9,3,2.4\r\n,Century High,Alhambra Unified,Los Angeles,595,B,0,0,8,2,90,0,0,0,66,0,4,28,10,2,N/A,N/A,18,96,42,40,10,4,4,1.9\r\n,Compton High,Compton Unified,Los Angeles,595,1,18,0,0,0,81,0,0,0,86,6,0,31,42,10,N/A,N/A,26,75,50,32,12,4,1,1.75\r\n,Renaissance High,Santa Paula Union High,Ventura,594,B,0,0,0,0,100,0,0,0,85,0,9,65,11,0,N/A,N/A,18,78,56,25,11,6,3,1.75\r\n,Humanitas Academy of Art and Technology,Los Angeles Unified,Los Angeles,594,1,0,0,0,0,99,0,1,0,100,8,0,25,40,12,N/A,N/A,29,47,61,26,6,5,2,1.62\r\n,Whitman Continuation,Los Angeles Unified,Los Angeles,593,B,26,0,8,2,55,0,9,0,83,8,0,17,32,0,N/A,N/A,19,60,47,3,16,25,9,2.47\r\nY,Denair Charter Academy,Denair Unified,Stanislaus,593,1,2,2,1,1,36,0,54,4,34,0,1,9,6,6,,,,89,19,36,31,9,5,2.45\r\n,Davila Day,San Diego County Office of Edu,San Diego,593,C,4,0,0,7,86,0,4,0,75,0,0,18,0,100,7,9,N/A,89,36,32,16,12,4,2.16\r\nD,Animo Charter Middle No. 4,Los Angeles Unified,Los Angeles,593,1,52,0,0,0,46,0,0,0,69,0,0,17,15,17,,,,34,32,37,25,5,1,2.07\r\n,Manual Arts Senior High,Los Angeles Unified,Los Angeles,593,1,17,0,0,0,82,0,0,0,94,5,0,33,38,12,N/A,N/A,28,59,54,30,9,4,2,1.7\r\n,CIS Academy,Pasadena Unified,Los Angeles,592,1,7,0,2,0,78,1,8,3,68,7,0,21,36,1,N/A,N/A,20,85,29,22,22,21,5,2.49\r\n,Sonoma County Court,Sonoma County Office of Educat,Sonoma,592,B,6,2,2,0,64,0,20,3,98,0,0,20,3,26,,,,29,14,46,25,11,4,2.43\r\n,Laguna High,West Sonoma County Union High,Sonoma,590,B,1,4,0,1,12,0,76,4,37,0,0,3,1,10,N/A,N/A,13,94,5,33,37,19,6,2.89\r\n,Monroe High (Continuation),Tehachapi Unified,Kern,590,B,0,1,0,0,44,0,51,3,51,3,0,6,15,8,N/A,N/A,15,67,15,31,33,19,2,2.63\r\n,Oasis Continuation High,Kingsburg Joint Union High,Fresno,590,B,0,3,0,0,60,0,27,3,63,0,0,17,17,13,N/A,N/A,12,80,17,38,21,21,4,2.58\r\n,Birch High (Continuation),Fontana Unified,San Bernardino,590,B,9,0,1,1,77,2,10,0,71,1,0,33,17,4,N/A,N/A,22,90,38,36,16,8,2,1.99\r\n,Ronald McNair Academy,Ravenswood City Elementary,San Mateo,590,1,10,0,1,1,76,9,1,1,90,0,4,54,24,15,N/A,28,N/A,96,49,33,12,3,3,1.78\r\nD,Los Angeles Education Corps Charter,Nevada County Office of Educat,Nevada,590,1,13,1,1,0,85,1,0,1,100,0,0,0,0,7,N/A,N/A,10,79,60,21,7,11,0,1.7\r\n,Monument Alternative/Continuation,Morongo Unified,San Bernardino,589,B,12,0,0,3,24,0,53,9,62,3,0,0,3,15,N/A,N/A,16,88,10,33,40,7,10,2.73\r\n,Palomar High,Sweetwater Union High,San Diego,589,B,5,0,1,0,87,1,6,0,67,5,0,33,25,9,N/A,N/A,9,83,23,44,17,15,1,2.27\r\n,Sun Valley High,Los Angeles Unified,Los Angeles,589,1,2,0,1,2,94,0,1,0,87,6,0,32,46,16,N/A,N/A,26,69,61,23,10,3,2,1.62\r\n,Thomas Jefferson Senior High,Los Angeles Unified,Los Angeles,589,1,7,0,0,0,92,0,0,0,89,6,0,39,46,14,N/A,N/A,24,53,63,23,8,3,3,1.59\r\n,Independence High (Alternative),Merced Union High,Merced,588,B,6,2,1,0,55,0,34,1,76,0,1,11,14,11,N/A,N/A,18,90,25,28,30,13,4,2.42\r\n,East Oakland School of the Arts,Oakland Unified,Alameda,588,1,46,0,0,0,49,3,1,1,88,10,1,16,30,8,N/A,N/A,13,53,41,27,23,6,3,2.05\r\n,Santana High (Continuation),Rowland Unified,Los Angeles,588,B,2,0,2,2,91,0,3,1,66,1,1,42,9,6,N/A,N/A,21,97,46,33,16,4,1,1.82\r\nD,Opportunities Unlimited Charter High,Los Angeles County Office of E,Los Angeles,588,1,44,0,0,0,49,0,0,5,100,0,0,23,13,9,N/A,N/A,2,59,67,17,9,7,0,1.57\r\n,Cesar E. Chavez High,Santa Ana Unified,Orange,588,B,0,1,1,0,97,0,1,0,82,3,2,56,30,5,N/A,N/A,18,91,70,20,9,1,1,1.43\r\n,Aggeler Community Day,Los Angeles Unified,Los Angeles,588,B,18,0,1,0,68,0,12,1,46,1,0,25,6,22,N/A,N/A,9,21,72,22,6,0,0,1.33\r\n,Floyd A. Schelby,Merced County Office of Educat,Merced,587,C,3,0,3,0,63,0,30,0,73,0,0,53,0,100,12,N/A,N/A,63,21,42,21,16,0,2.32\r\n,Estrellita Continuation High,Galt Joint Union High,Sacramento,587,B,2,0,2,0,57,2,35,2,80,6,11,23,17,8,N/A,N/A,15,88,28,40,18,12,2,2.19\r\n,\"Wellington M. Smith, Jr.\",Monterey County Office of Educ,Monterey,587,B,0,0,2,0,93,0,2,1,100,0,0,45,13,24,,,,63,62,28,2,5,3,1.6\r\n,Prospect High (Continuation),Mt. Diablo Unified,Contra Costa,586,B,0,0,9,3,29,0,59,0,35,0,0,15,3,6,N/A,N/A,23,59,0,30,25,40,5,3.2\r\n,Chana High (Continuation),Placer Union High,Placer,586,B,1,4,0,0,11,0,79,5,67,0,0,5,2,16,N/A,N/A,16,93,16,28,36,11,9,2.69\r\n,Jordan (June) School for Equity,San Francisco Unified,San Francisco,586,1,24,1,8,5,54,2,2,2,83,10,1,30,19,21,N/A,N/A,20,54,22,37,22,15,4,2.42\r\n,Pathways Community Day,Twin Rivers Unified,Sacramento,586,B,38,0,0,0,29,0,33,0,95,5,0,5,0,38,14,8,N/A,67,21,43,21,7,7,2.36\r\n,Cache Creek High (Continuation),Woodland Joint Unified,Yolo,586,B,0,0,1,0,77,0,18,1,83,2,4,24,21,2,N/A,N/A,18,89,40,31,19,5,5,2.05\r\n,College Preparatory and Architecture Aca,Oakland Unified,Alameda,586,1,15,0,13,1,59,4,6,0,89,5,0,54,19,4,N/A,N/A,18,63,59,25,11,4,1,1.62\r\nY,Butterfield Charter High,Porterville Unified,Tulare,585,1,0,6,1,0,53,0,37,0,46,2,4,12,14,4,,,,95,32,31,25,8,4,2.21\r\n,Val Verde High,Val Verde Unified,Riverside,585,B,21,0,2,0,68,0,6,1,79,1,0,23,15,6,N/A,N/A,21,84,34,27,28,9,3,2.2\r\n,Maple High,Lompoc Unified,Santa Barbara,585,B,1,0,1,0,73,0,22,3,77,1,0,26,10,3,N/A,N/A,18,89,38,26,25,5,5,2.12\r\n,Hillcrest High,Inglewood Unified,Los Angeles,585,B,33,0,0,0,49,5,0,0,63,0,0,8,6,5,N/A,N/A,14,78,29,53,6,12,0,2.02\r\n,CIVITAS School of Leadership,Los Angeles Unified,Los Angeles,585,1,1,0,4,2,91,0,0,0,100,7,0,43,41,12,N/A,N/A,20,60,60,25,11,3,1,1.6\r\n,Public Service Community at South Region,Los Angeles Unified,Los Angeles,585,1,4,0,0,0,96,0,0,0,89,6,1,30,41,6,N/A,N/A,11,49,62,30,4,1,3,1.52\r\n,Chaparral High (Continuation),Bonita Unified,Los Angeles,584,B,7,0,0,0,71,4,16,0,71,2,0,5,4,7,N/A,N/A,10,62,6,21,32,32,9,3.18\r\n,San Antonio High (Continuation),Claremont Unified,Los Angeles,584,B,11,0,7,0,61,0,17,0,69,0,0,5,12,3,N/A,N/A,15,81,13,33,26,20,8,2.77\r\n,North State Independence High,Shasta Union High,Shasta,584,1,4,6,3,0,14,0,71,3,64,5,0,0,1,7,N/A,N/A,14,89,14,29,41,10,6,2.65\r\n,Cheviot Hills Continuation,Los Angeles Unified,Los Angeles,584,B,20,1,0,0,75,1,3,0,70,0,0,15,39,0,N/A,N/A,24,59,26,45,21,7,0,2.1\r\n,Richmond High,West Contra Costa Unified,Contra Costa,584,1,7,0,6,2,83,1,2,0,82,6,0,45,31,10,N/A,N/A,28,76,62,27,8,3,0,1.54\r\n,Larsson (Sture) High (Continuation),Lincoln Unified,San Joaquin,583,B,20,0,6,2,44,0,27,0,73,0,0,10,3,14,N/A,N/A,19,93,19,31,37,10,3,2.45\r\n,Vista High (Continuation),Escalon Unified,San Joaquin,583,B,4,0,0,0,58,0,38,0,54,4,17,17,25,4,N/A,N/A,24,92,27,27,36,5,5,2.32\r\n,Nueva Vista Continuation High,Bassett Unified,Los Angeles,583,B,0,0,0,0,98,0,2,0,76,2,0,29,18,0,N/A,N/A,15,61,47,33,10,10,0,1.83\r\nY,Academic/Vocational Charter Institute,Pajaro Valley Unified,Santa Cruz,583,B,0,0,0,0,98,0,2,0,89,9,7,57,30,5,N/A,N/A,14,23,60,20,10,0,10,1.8\r\n,Abraxas Continuation High,Poway Unified,San Diego,582,B,8,5,5,2,21,0,60,0,24,0,0,6,5,11,N/A,N/A,9,90,9,14,43,16,18,3.2\r\n,Vista High (Continuation),Lynwood Unified,Los Angeles,582,B,13,0,0,0,82,0,0,0,81,1,1,33,14,6,N/A,N/A,21,68,41,47,6,6,0,1.78\r\n,John C. Fremont Senior High,Los Angeles Unified,Los Angeles,582,1,11,0,0,0,89,0,0,0,100,6,0,35,43,13,N/A,N/A,28,51,62,24,9,4,2,1.59\r\n,Calvine High,Elk Grove Unified,Sacramento,581,B,26,0,6,2,39,0,20,6,60,0,0,11,9,2,N/A,N/A,13,96,12,36,36,10,7,2.63\r\n,Encina Preparatory High,San Juan Unified,Sacramento,581,1,30,2,5,2,40,2,18,1,92,1,0,26,11,16,N/A,26,15,52,27,36,16,19,2,2.33\r\n,Vista High (Alternative),West Contra Costa Unified,Contra Costa,581,B,25,0,7,3,44,1,18,3,44,3,0,18,15,6,,,,87,24,39,27,8,1,2.23\r\nD,School of Unlimited Learning,Fresno Unified,Fresno,581,B,11,1,4,0,70,0,9,4,98,0,0,18,4,6,N/A,N/A,15,98,43,21,32,3,0,1.97\r\n,Eastin-Arcola High,Madera Unified,Madera,581,1,3,1,1,0,88,0,7,0,88,1,8,37,30,9,N/A,N/A,17,99,60,26,9,3,2,1.6\r\n,Capital City Independent Study,Sacramento City Unified,Sacramento,580,B,23,1,8,0,46,2,16,4,65,3,0,18,12,2,7,5,26,91,26,33,25,10,6,2.39\r\n,George Washington Preparatory High,Los Angeles Unified,Los Angeles,580,1,54,0,0,0,44,0,0,0,100,4,0,18,18,17,N/A,N/A,19,39,38,31,23,6,3,2.05\r\n,New Horizon High,Banning Unified,Riverside,580,B,7,3,0,2,57,0,18,2,85,3,0,25,8,0,N/A,N/A,19,78,57,28,9,6,0,1.64\r\nD,W. E. B. DuBois Public Charter,Washington Unified,Fresno,579,B,26,0,4,0,65,0,2,2,98,0,0,30,8,5,18,15,10,84,40,31,14,4,11,2.13\r\n,Ruben Salazar Continuation,El Rancho Unified,Los Angeles,579,B,0,0,0,1,98,0,1,0,57,2,0,30,9,7,N/A,N/A,18,88,31,41,23,4,1,2.04\r\n,Back Bay High,Newport-Mesa Unified,Orange,578,B,1,0,3,0,53,2,42,0,59,3,0,27,9,15,N/A,N/A,11,86,20,27,29,17,6,2.62\r\n,Hanford Night (Continuation),Hanford Joint Union High,Kings,578,B,4,0,0,0,81,0,12,0,46,0,0,8,12,0,N/A,N/A,18,96,4,76,16,4,0,2.2\r\n,Liberty High,Lodi Unified,San Joaquin,578,B,0,2,0,0,69,0,27,0,71,2,5,36,14,5,N/A,N/A,11,69,34,44,17,2,2,1.95\r\n,Social Justice Leadership Academy at Est,Los Angeles Unified,Los Angeles,578,1,0,0,0,0,99,0,1,0,100,5,1,26,37,13,N/A,N/A,29,50,57,25,14,2,2,1.68\r\nD,\"Architecture, Construction & Engineering\",Oxnard Union High,Ventura,577,1,3,0,1,2,52,0,39,1,15,0,0,4,6,4,N/A,N/A,25,56,10,15,38,22,15,3.16\r\n,Kings River High (Continuation),Sanger Unified,Fresno,577,B,0,0,4,0,89,0,7,0,100,0,0,39,11,14,N/A,N/A,15,100,39,29,21,11,0,2.04\r\n,Argus High (Continuation),Ceres Unified,Stanislaus,577,B,2,1,1,1,72,1,20,1,81,1,4,29,11,9,N/A,N/A,18,95,44,41,11,1,2,1.74\r\n,Teacher Preparation Academy at Valley Re,Los Angeles Unified,Los Angeles,577,1,4,0,0,1,89,0,2,0,83,3,0,26,30,17,N/A,N/A,25,44,54,26,14,3,3,1.74\r\n,Fernando R. Ledesma Continuation High,El Monte Union High,Los Angeles,577,B,0,0,3,1,95,0,2,0,100,1,2,35,20,3,N/A,N/A,8,100,58,28,11,3,0,1.6\r\n,Liberty High (Continuation),Paso Robles Joint Unified,San Luis Obispo,576,B,0,0,2,2,56,2,36,2,56,0,2,16,22,11,N/A,N/A,14,84,13,24,39,24,0,2.74\r\n,MetWest High,Oakland Unified,Alameda,576,1,26,0,3,2,61,0,6,0,78,11,0,22,35,11,N/A,N/A,17,74,31,35,18,8,9,2.29\r\n,Hillside High,Upland Unified,San Bernardino,575,B,16,0,0,1,59,1,20,1,69,0,0,18,2,15,N/A,N/A,16,93,18,34,41,5,3,2.41\r\n,Live Oak High (Continuation),Antioch Unified,Contra Costa,575,B,25,0,2,1,44,1,25,0,65,0,0,12,8,21,N/A,N/A,13,60,22,44,20,8,6,2.32\r\n,Tulare County Court,Tulare County Office of Educat,Tulare,575,B,3,1,1,0,84,0,11,0,100,0,0,28,9,15,N/A,N/A,15,48,39,34,13,14,0,2.02\r\n,Crawford Law and Business,San Diego Unified,San Diego,575,1,28,0,23,0,44,0,3,1,100,7,0,53,22,13,N/A,N/A,11,72,48,34,11,6,1,1.78\r\n,Edward C. Merlo Institute of Environment,Stockton Unified,San Joaquin,575,1,6,3,2,1,88,0,2,0,85,8,8,23,51,6,N/A,N/A,26,90,63,25,8,2,3,1.57\r\n,Redwood Continuation High,Castro Valley Unified,Alameda,574,B,11,0,4,2,37,0,40,6,41,2,0,5,5,15,N/A,N/A,15,97,6,22,47,17,8,3\r\n,Kinney High (Continuation),Folsom-Cordova Unified,Sacramento,574,B,27,1,2,0,28,0,35,4,52,1,0,10,10,10,N/A,N/A,18,81,16,22,39,14,8,2.76\r\n,North Star Independent Study,Amador County Unified,Amador,574,1,0,8,0,0,13,0,75,5,51,4,0,0,5,8,,,,98,11,30,42,14,3,2.69\r\n,,Amador County Office of Educat,Amador,574,B,0,6,0,1,26,0,59,5,70,1,0,2,7,41,5,5,7,86,13,37,31,13,6,2.61\r\n,Summit High (Continuation),Desert Sands Unified,Riverside,574,B,3,0,0,0,74,0,23,0,75,5,0,14,16,0,N/A,N/A,12,95,20,39,28,5,8,2.42\r\n,Yosemite High (Continuation),Merced Union High,Merced,574,B,5,0,4,0,70,0,21,1,85,2,1,15,18,12,N/A,N/A,21,91,30,32,27,8,3,2.23\r\n,Rudsdale Continuation,Oakland Unified,Alameda,574,1,58,0,0,0,42,0,0,0,67,4,0,25,13,8,N/A,N/A,19,54,46,21,14,18,0,2.04\r\n,Nueva Vista High,Santa Rosa City Schools,Sonoma,574,B,0,0,9,0,83,0,9,0,83,0,0,17,61,17,N/A,N/A,11,96,59,14,9,14,5,1.91\r\n,Daily (Allan F.) High (Continuation),Glendale Unified,Los Angeles,573,B,2,1,2,5,58,0,33,0,67,2,0,39,36,7,N/A,N/A,18,86,26,38,11,19,6,2.42\r\n,Coronado High (Continuation),West Covina Unified,Los Angeles,573,B,7,0,1,3,83,0,7,0,64,2,0,9,11,3,N/A,N/A,21,85,24,27,38,11,0,2.36\r\nY,Life Learning Academy Charter,San Francisco Unified,San Francisco,573,B,50,0,2,2,31,7,5,0,62,2,0,14,7,2,N/A,N/A,7,38,25,44,13,19,0,2.25\r\n,,San Benito County Office of Ed,San Benito,573,B,0,0,1,1,83,0,13,1,42,0,10,27,7,14,N/A,N/A,1,67,30,40,23,7,1,2.1\r\nD,Learning Works!,Pasadena Unified,Los Angeles,573,B,23,0,1,1,71,0,4,0,95,1,1,12,9,10,N/A,N/A,9,71,38,30,23,4,4,2.06\r\n,Crossroads High (Continuation),Mt. Diablo Unified,Contra Costa,573,B,6,0,0,0,75,0,19,0,91,3,0,38,19,19,N/A,N/A,26,94,50,23,13,10,3,1.93\r\n,Highland Park Continuation,Los Angeles Unified,Los Angeles,573,B,2,0,0,2,95,0,2,0,75,9,0,22,32,6,N/A,N/A,11,72,47,32,11,11,0,1.85\r\n,School of Law & Government at Roosevelt,Los Angeles Unified,Los Angeles,573,1,1,0,0,0,95,0,0,0,96,4,3,38,38,14,N/A,N/A,21,42,58,27,10,4,2,1.65\r\nD,Sunrise Middle,San Jose Unified,Santa Clara,573,1,0,0,4,0,94,0,3,0,100,0,0,55,35,15,N/A,20,17,82,64,33,3,0,0,1.39\r\n,Alessandro,Moreno Valley Unified,Riverside,572,C,36,3,0,2,31,0,26,2,77,2,0,10,2,97,8,11,9,87,19,26,40,13,2,2.53\r\n,Sky Alternative/Continuation,Morongo Unified,San Bernardino,572,B,3,0,0,3,41,0,49,5,79,0,0,5,8,15,N/A,N/A,19,82,22,28,34,6,9,2.53\r\n,Mountain High,Rim of the World Unified,San Bernardino,572,B,2,0,0,0,40,0,58,0,72,2,0,7,11,4,N/A,N/A,19,88,28,18,40,8,6,2.46\r\n,Montecito High (Continuation),Ramona City Unified,San Diego,572,B,1,4,1,0,53,1,36,3,68,0,5,24,19,20,N/A,N/A,24,89,25,28,28,12,6,2.45\r\n,Earl F. Johnson High (Continuation),Hanford Joint Union High,Kings,572,B,12,1,0,1,57,0,28,0,42,0,2,15,7,1,N/A,N/A,24,93,21,51,23,4,1,2.13\r\n,East Los Angeles Community Day,Los Angeles County Office of E,Los Angeles,572,B,6,0,1,0,90,0,2,0,95,0,0,31,18,2,,,,25,44,27,10,12,8,2.12\r\n,San Andreas Continuation High,San Benito High,San Benito,571,B,0,3,0,0,83,0,14,1,41,0,10,20,6,9,N/A,N/A,16,65,33,40,19,8,0,2.02\r\n,Sierra Vista High (Alternative),Whittier Union High,Los Angeles,571,B,1,0,0,0,86,0,11,0,49,0,0,10,14,0,N/A,N/A,13,89,36,37,20,5,2,2\r\n,Lincoln (Abraham) (Alternative),Marysville Joint Unified,Yuba,570,1,4,5,3,0,31,1,50,1,74,3,0,9,4,9,1,N/A,N/A,62,18,41,30,11,0,2.33\r\nD,Mirus Secondary,Hesperia Unified,San Bernardino,570,B,12,1,1,0,59,0,28,0,79,1,0,7,1,11,N/A,N/A,6,98,22,42,22,11,3,2.29\r\n,Pegasus High,East Side Union High,Santa Clara,570,B,7,0,4,0,79,5,4,2,54,0,0,14,23,0,N/A,N/A,18,86,31,39,18,10,2,2.14\r\n,Vista Continuation High,Kern Union High,Kern,570,B,17,3,0,0,66,0,9,4,87,0,0,13,15,5,N/A,N/A,20,93,29,43,18,6,4,2.12\r\n,Whitney Young Continuation,Los Angeles Unified,Los Angeles,570,B,77,3,0,0,18,0,0,3,92,5,0,5,0,3,N/A,N/A,17,33,38,38,8,8,8,2.08\r\n,Samuel Gompers Middle,Los Angeles Unified,Los Angeles,570,1,34,0,0,0,66,0,0,0,100,3,0,27,24,20,N/A,21,21,41,56,26,13,4,2,1.71\r\n,Shery (Kurt T.) High (Continuation),Torrance Unified,Los Angeles,569,B,11,1,10,3,41,0,30,3,52,0,0,8,6,3,N/A,N/A,21,81,8,33,27,24,8,2.91\r\n,Country High,Vacaville Unified,Solano,569,B,12,0,0,1,51,0,30,5,42,0,2,10,8,11,N/A,N/A,17,94,18,33,24,21,4,2.59\r\n,\"Independent Study, Sojourner Truth\",Oakland Unified,Alameda,569,1,50,1,3,0,32,2,10,2,62,5,0,10,13,8,,,,61,27,31,21,14,7,2.44\r\n,ABC Secondary (Alternative),ABC Unified,Los Angeles,569,B,10,1,2,2,66,0,16,2,41,3,8,23,7,8,,,,91,23,38,21,14,5,2.41\r\n,Miguel Leonis Continuation,Los Angeles Unified,Los Angeles,569,B,1,3,3,3,54,0,33,3,61,11,0,15,29,13,N/A,N/A,7,57,32,27,17,24,0,2.34\r\n,Dewey Academy,Oakland Unified,Alameda,569,B,57,1,10,0,29,0,1,0,79,3,0,18,15,10,N/A,N/A,28,78,28,38,23,8,4,2.21\r\n,Mountain View High,San Jacinto Unified,Riverside,569,B,14,2,2,0,65,1,14,2,62,2,0,26,8,13,N/A,N/A,21,91,28,36,26,7,2,2.18\r\n,Alameda County Opportunity,Alameda County Office of Educa,Alameda,569,B,22,0,0,0,70,0,0,8,97,0,0,32,27,5,N/A,N/A,13,97,44,39,11,3,3,1.81\r\n,Credence High,Lassen Union High,Lassen,568,B,0,8,0,0,4,0,81,8,46,4,0,0,0,4,N/A,N/A,13,85,5,32,50,9,5,2.77\r\n,Costanoa Continuation High,Santa Cruz City High,Santa Cruz,568,B,4,0,3,0,54,0,26,9,57,3,4,24,13,7,N/A,N/A,22,84,25,32,21,19,4,2.46\r\n,Wilson Alternative,Santa Clara Unified,Santa Clara,568,1,2,0,4,2,58,2,25,6,65,1,2,25,16,10,N/A,N/A,13,85,29,29,25,16,1,2.31\r\n,Tracy (Wilbur) High (Continuation),ABC Unified,Los Angeles,568,B,7,1,2,1,82,1,6,3,75,1,8,32,16,13,N/A,N/A,21,85,35,32,24,8,1,2.08\r\n,Transitional Learning Center (Continuati,Lake Tahoe Unified,El Dorado,568,B,0,0,7,7,71,0,14,0,86,0,0,43,7,29,N/A,N/A,6,79,27,55,9,9,0,2\r\n,Valley Vista High (Continuation),Huntington Beach Union High,Orange,568,B,3,8,3,0,43,0,37,1,42,1,0,15,12,8,N/A,N/A,8,0,0,0,0,0,0,\r\n,Brea Canyon High (Continuation),Brea-Olinda Unified,Orange,567,B,2,2,5,3,56,0,33,0,28,0,0,8,10,7,N/A,N/A,18,92,14,16,45,13,13,2.93\r\n,Albert Powell Continuation,Yuba City Unified,Sutter,567,B,2,4,3,1,42,1,40,5,65,1,4,8,17,10,N/A,N/A,10,92,25,32,29,10,4,2.35\r\n,Alvord Continuation High,Alvord Unified,Riverside,567,B,7,0,2,0,65,0,24,2,44,2,0,22,4,6,N/A,N/A,14,96,27,37,27,6,4,2.23\r\n,Marie L. Hare High,Garden Grove Unified,Orange,567,B,1,0,10,2,80,0,6,0,71,1,0,53,26,6,N/A,N/A,21,57,32,37,14,14,3,2.2\r\n,Mount Toro High,Salinas Union High,Monterey,567,B,1,1,0,2,90,1,5,0,68,0,6,41,22,3,N/A,N/A,9,93,46,31,14,5,5,1.92\r\n,Creekside High,Irvine Unified,Orange,567,B,8,1,9,1,38,0,38,5,34,0,0,11,3,15,N/A,N/A,16,0,0,0,0,0,0,\r\n,Red Bluff Independent Study High,Red Bluff Joint Union High,Tehama,566,1,1,2,0,0,21,0,67,5,10,0,0,2,1,5,,,,19,33,20,20,20,7,2.47\r\n,Crenshaw Senior High,Los Angeles Unified,Los Angeles,566,1,66,0,0,0,31,0,0,2,91,6,0,11,10,15,N/A,N/A,19,35,32,36,20,9,4,2.17\r\n,March Valley,Moreno Valley Unified,Riverside,566,B,18,0,3,1,69,0,8,0,77,7,0,29,16,1,N/A,N/A,19,88,29,40,24,7,0,2.09\r\n,Independence Continuation,Los Angeles Unified,Los Angeles,566,B,6,0,0,1,89,0,4,0,71,11,0,10,16,26,N/A,N/A,19,38,42,32,21,5,0,1.89\r\n,Bowman (Jereann) High (Continuation),William S. Hart Union High,Los Angeles,565,B,9,1,2,2,46,0,40,1,47,1,0,10,9,15,N/A,N/A,18,91,8,24,39,23,6,2.95\r\n,Independence High,San Francisco Unified,San Francisco,565,1,24,1,16,9,32,0,15,1,59,13,1,15,19,8,N/A,N/A,3,64,16,46,21,13,4,2.44\r\n,Pershing Continuation High,Central Unified,Fresno,565,B,19,0,6,0,61,1,8,2,81,1,1,10,7,16,N/A,N/A,15,79,23,32,37,6,3,2.34\r\n,New Vision High,Manteca Unified,San Joaquin,565,B,19,2,2,4,62,2,9,0,72,2,2,15,30,13,N/A,N/A,17,83,15,51,26,8,0,2.26\r\n,Brenkwitz High,Hayward Unified,Alameda,565,B,29,4,3,1,51,3,8,1,68,1,1,16,16,20,N/A,N/A,16,77,41,26,18,13,2,2.08\r\n,Independence High (Continuation),Wasco Union High,Kern,565,B,3,0,2,0,88,0,8,0,86,0,3,38,29,0,N/A,N/A,16,86,48,29,11,5,7,1.95\r\n,Center for Alternative Learning,Chico Unified,Butte,564,1,7,9,2,0,30,0,53,0,75,2,0,5,5,7,N/A,N/A,11,86,12,29,43,10,6,2.69\r\n,,Citrus South Tule Elementary,Tulare,564,B,0,47,0,0,38,0,16,0,88,0,0,0,0,0,8,5,N/A,91,17,38,38,0,7,2.41\r\n,Citrus South Tule Elementary,Citrus South Tule Elementary,Tulare,564,1,0,47,0,0,38,0,16,0,88,0,0,0,0,0,8,5,N/A,91,17,38,38,0,7,2.41\r\n,Buena Vista Continuation High,Chino Valley Unified,San Bernardino,564,B,2,0,1,2,81,1,13,0,61,0,0,24,19,5,N/A,N/A,15,61,39,25,17,10,8,2.24\r\n,Mojave High,Hesperia Unified,San Bernardino,564,B,11,1,0,0,65,0,19,2,82,0,0,21,5,14,N/A,N/A,18,82,28,35,29,5,2,2.18\r\n,Raincross High (Continuation),Riverside Unified,Riverside,564,B,8,1,1,0,65,1,23,0,71,2,0,15,4,9,N/A,N/A,17,91,33,36,21,7,3,2.11\r\n,Midrose High,Santa Rosa City Schools,Sonoma,564,B,5,0,0,5,59,0,32,0,45,0,0,41,0,23,N/A,N/A,19,100,50,32,9,5,5,1.82\r\n,Academy of Medical & Health Sciences at,Los Angeles Unified,Los Angeles,564,1,0,0,0,0,97,0,1,0,98,6,1,30,48,15,N/A,N/A,16,53,55,29,11,4,2,1.69\r\n,Independence,Lodi Unified,San Joaquin,563,B,5,0,16,1,33,0,42,1,43,5,1,17,9,3,2,2,5,83,18,31,31,15,6,2.59\r\n,Garfield High,San Diego Unified,San Diego,563,1,14,1,1,1,79,1,3,1,71,14,0,29,34,13,N/A,N/A,16,79,39,32,19,6,4,2.04\r\n,J. C. Montgomery,Kings County Office of Educati,Kings,563,B,7,0,0,2,85,0,7,0,98,0,0,24,5,25,N/A,N/A,22,81,42,33,23,0,2,1.88\r\n,Renaissance High Continuation,Pajaro Valley Unified,Santa Cruz,563,B,2,0,0,0,94,1,4,0,79,3,7,49,27,17,N/A,N/A,8,46,43,42,5,8,2,1.83\r\n,Humanitas Art School at Roosevelt High,Los Angeles Unified,Los Angeles,563,1,0,0,0,0,99,0,0,0,99,6,1,32,46,17,N/A,N/A,18,50,57,28,13,1,1,1.6\r\n,North Valley High,Anderson Union High,Shasta,562,B,3,9,3,0,16,0,63,6,80,0,0,0,2,16,N/A,N/A,12,94,15,28,37,12,8,2.7\r\n,East Region Community School of Greater,San Diego County Office of Edu,San Diego,562,1,22,0,1,0,53,0,20,2,87,0,0,20,13,12,,,,89,36,24,20,10,10,2.34\r\n,Fairvalley High (Continuation),Covina-Valley Unified,Los Angeles,562,B,4,1,1,1,79,2,12,0,70,0,0,13,9,7,N/A,N/A,15,97,22,39,31,6,3,2.3\r\n,Mt. Madonna High,Gilroy Unified,Santa Clara,562,B,1,1,0,0,92,0,5,0,79,1,2,33,21,6,N/A,N/A,21,64,45,25,17,11,2,2\r\nD,Father's Heart Charter,Palm Springs Unified,Riverside,561,1,7,0,0,0,65,0,22,7,98,0,0,13,4,20,16,26,N/A,54,8,20,24,36,12,3.24\r\nD,Dr. Lewis Dolphin Stallworth Sr. Charter,Stockton Unified,San Joaquin,561,1,55,1,0,0,16,0,4,22,79,0,0,3,0,9,8,6,4,45,6,40,30,23,2,2.75\r\n,Zoe Barnum High,Eureka City Schools,Humboldt,561,B,4,15,0,0,28,0,33,17,67,2,0,13,11,11,N/A,N/A,14,91,17,38,29,10,7,2.52\r\n,New Valley Continuation High,Santa Clara Unified,Santa Clara,561,B,6,0,4,7,59,2,20,2,66,2,1,18,15,12,N/A,N/A,18,90,20,38,26,11,4,2.42\r\n,Redwood High,Sequoia Union High,San Mateo,561,B,5,0,0,0,72,9,9,3,83,1,3,43,20,8,N/A,N/A,16,82,48,24,17,6,5,1.95\r\n,Bounce Back Independent Study High,Sweetwater Union High,San Diego,560,B,3,0,0,4,85,1,6,0,54,4,0,31,27,13,N/A,N/A,6,86,21,36,21,15,7,2.51\r\nY,West Park Charter Academy,West Park Elementary,Fresno,560,B,5,1,0,0,75,0,18,0,78,1,2,20,9,4,1,1,8,85,34,38,19,8,0,2.03\r\n,McClellan High (Continuation),Center Joint Unified,Sacramento,559,B,18,2,5,2,26,0,44,0,70,0,0,10,8,2,N/A,N/A,21,98,15,20,35,23,7,2.87\r\n,Creekside High,Murrieta Valley Unified,Riverside,559,B,14,0,0,1,56,0,27,1,50,0,0,3,5,9,N/A,N/A,21,92,13,24,39,14,10,2.85\r\n,Richard H. Lewis Alternative,Konocti Unified,Lake,559,1,3,7,0,1,14,0,62,4,80,4,0,1,0,7,N/A,46,N/A,100,18,54,26,3,0,2.14\r\n,View Park Continuation,Los Angeles Unified,Los Angeles,559,B,69,0,0,0,31,0,0,0,62,0,0,3,7,3,N/A,N/A,12,31,44,22,22,11,0,2\r\n,Lancaster Alternative and Virtual Academ,Lancaster Elementary,Los Angeles,558,1,41,0,1,2,18,0,32,4,77,4,0,3,2,12,12,32,4,98,15,19,45,13,7,2.77\r\nD,Hope Academy Charter,Morongo Unified,San Bernardino,558,1,2,0,0,0,17,0,75,5,73,0,0,0,0,10,14,N/A,19,98,19,20,49,7,5,2.59\r\n,Gold Strike High,Calaveras Unified,Calaveras,558,1,0,7,0,0,12,0,71,10,49,27,0,0,10,7,N/A,N/A,14,61,16,36,40,8,0,2.4\r\n,Street Academy (Alternative),Oakland Unified,Alameda,558,B,49,9,5,0,32,1,1,3,77,7,1,9,16,11,,,,59,30,28,26,11,5,2.34\r\n,Columbus Continuation,Downey Unified,Los Angeles,558,B,4,0,0,1,89,0,7,0,55,0,0,13,13,7,N/A,N/A,10,100,21,45,28,5,1,2.21\r\n,Citrus High (Continuation),Fontana Unified,San Bernardino,558,B,6,0,0,0,89,1,4,0,86,2,0,43,26,7,N/A,N/A,23,85,37,34,18,9,2,2.03\r\n,Leadership Preparatory High,Oakland Unified,Alameda,558,1,54,0,1,1,33,8,1,2,85,8,0,15,18,22,N/A,N/A,11,52,31,49,9,11,0,2\r\n,Green Design at South Region High No. 2,Los Angeles Unified,Los Angeles,558,1,4,0,0,0,94,0,0,0,89,4,1,32,43,13,N/A,N/A,12,50,59,29,9,2,1,1.58\r\n,Berenece Carlson Home Hospital,Los Angeles Unified,Los Angeles,557,C,9,0,3,1,66,1,19,1,60,7,0,33,11,55,2,2,2,73,27,24,20,23,7,2.58\r\n,Orangewood High (Continuation),Redlands Unified,San Bernardino,557,B,7,0,2,1,59,1,26,4,79,0,0,15,3,4,N/A,N/A,14,98,25,29,36,7,3,2.34\r\nD,Watts Learning Center Charter Middle,Los Angeles Unified,Los Angeles,556,1,50,1,0,0,48,0,0,1,99,0,0,19,14,12,N/A,2,2,12,17,56,0,28,0,2.39\r\n,Elk Creek Elementary,Stony Creek Joint Unified,Glenn,556,1,0,59,0,0,0,0,37,4,89,0,0,0,0,0,17,N/A,N/A,96,35,27,23,4,12,2.31\r\n,Shadow Ridge,Hesperia Unified,San Bernardino,555,1,6,0,2,0,59,0,31,1,0,0,0,12,6,1,,,,86,29,33,22,14,2,2.27\r\n,West Oakland Middle,Oakland Unified,Alameda,555,1,82,1,2,0,9,0,6,0,58,24,0,12,3,13,N/A,27,24,33,29,43,16,10,2,2.12\r\n,Gilbert High (Continuation),Anaheim Union High,Orange,555,B,5,0,1,2,76,0,14,0,80,3,0,34,19,13,N/A,N/A,35,26,47,24,15,13,2,1.98\r\n,Ralph Richardson Center,San Juan Unified,Sacramento,554,C,20,2,0,0,14,3,61,0,56,0,0,3,0,98,,,,42,0,11,37,26,26,3.67\r\n,Frontier High,Oxnard Union High,Ventura,554,B,2,0,0,0,86,1,10,0,79,2,5,32,16,2,N/A,N/A,23,84,32,33,22,8,4,2.2\r\n,Harold McAlister High (Opportunity),Los Angeles Unified,Los Angeles,554,B,6,0,0,1,92,0,1,0,90,4,0,32,39,7,N/A,N/A,14,52,51,30,8,8,3,1.81\r\nD,ARISE High,Oakland Unified,Alameda,554,1,4,4,0,1,54,0,9,15,3,0,0,74,8,5,N/A,N/A,28,93,63,24,10,2,1,1.55\r\n,Albert Einstein Continuation,Los Angeles Unified,Los Angeles,554,B,7,0,0,1,91,0,0,0,89,2,0,43,33,0,N/A,N/A,21,71,64,22,14,0,0,1.5\r\nD,Alta Vista Public,Adelanto Elementary,San Bernardino,553,B,26,1,0,0,43,1,19,7,77,0,0,3,1,10,N/A,N/A,6,54,25,35,14,23,2,2.44\r\n,Centennial High,Compton Unified,Los Angeles,553,1,31,0,0,0,68,0,0,0,80,2,0,20,39,12,N/A,N/A,24,79,46,28,19,4,2,1.87\r\n,Monterey High (Continuation),Burbank Unified,Los Angeles,552,B,3,1,3,3,55,0,32,2,49,2,0,7,28,7,N/A,N/A,14,93,10,16,42,27,5,3.02\r\n,Independence High (Alternative),Alhambra Unified,Los Angeles,552,B,2,0,7,2,82,0,5,0,49,2,0,13,13,2,,,,95,25,37,29,6,4,2.27\r\n,Gateway High (Continuation),Clovis Unified,Fresno,551,B,9,3,3,0,42,1,40,1,69,1,0,4,2,6,N/A,N/A,14,88,9,30,37,19,6,2.81\r\n,Sutter County Special Education,Sutter County Office of Educat,Sutter,551,C,5,0,7,1,38,0,45,3,64,0,0,15,4,100,10,10,N/A,43,12,31,33,22,3,2.73\r\n,George and Evelyn Stein Continuation,Tracy Joint Unified,San Joaquin,551,B,8,0,1,6,62,3,21,0,54,0,0,21,13,9,N/A,N/A,16,78,20,26,33,15,7,2.62\r\n,Central High (Continuation),Barstow Unified,San Bernardino,551,B,14,2,0,0,48,1,31,3,61,6,0,13,3,9,N/A,N/A,13,93,18,38,33,7,4,2.41\r\n,American Legion High (Continuation),Sacramento City Unified,Sacramento,551,B,33,2,12,1,41,4,4,4,75,0,0,24,6,7,N/A,N/A,20,96,27,44,21,6,2,2.11\r\n,Sequoia High,Merced Union High,Merced,551,B,8,4,2,1,62,0,17,6,88,0,1,14,19,7,N/A,N/A,16,90,42,27,21,6,4,2.04\r\n,Foothill High,East Side Union High,Santa Clara,551,B,7,1,5,3,79,1,3,1,58,0,2,18,21,8,N/A,N/A,20,89,43,33,14,8,3,1.96\r\nD,New Village Charter High,Los Angeles Unified,Los Angeles,551,B,5,0,1,2,92,0,0,0,94,0,0,39,44,6,N/A,N/A,2,22,63,26,5,5,0,1.53\r\n,Redondo Shores High (Continuation),Redondo Beach Unified,Los Angeles,550,B,12,2,2,0,42,0,38,5,28,0,0,7,2,22,N/A,N/A,11,80,8,27,31,25,8,2.98\r\n,Independence High (Continuation),Amador County Unified,Amador,550,B,0,2,0,0,16,0,75,7,69,0,0,4,0,4,N/A,N/A,14,96,9,43,34,9,4,2.55\r\n,Daylor (William) High (Continuation),Elk Grove Unified,Sacramento,550,B,53,0,14,2,18,3,5,6,76,0,0,11,11,6,N/A,N/A,13,95,24,37,30,6,3,2.29\r\nD,SAVA: Sacramento Academic and Vocational,Twin Rivers Unified,Sacramento,550,B,20,2,9,1,50,1,15,0,69,0,0,13,10,8,N/A,N/A,15,94,30,32,26,10,2,2.23\r\n,Goodwill High,Victor Valley Union High,San Bernardino,550,B,36,1,1,0,49,0,10,3,76,1,0,13,10,6,N/A,N/A,21,94,27,31,37,5,1,2.22\r\n,Desert Oasis High (Continuation),Central Union High,Imperial,550,B,3,1,0,0,91,0,2,0,69,2,18,52,12,10,N/A,N/A,17,90,43,32,14,8,3,1.95\r\n,Sierra High,San Bernardino City Unified,San Bernardino,550,B,15,1,1,0,74,0,7,0,90,2,0,25,10,7,N/A,N/A,20,73,46,34,8,8,4,1.89\r\n,Jane Addams Continuation,Los Angeles Unified,Los Angeles,550,B,6,1,0,1,86,0,6,0,77,4,1,19,39,8,N/A,N/A,13,52,45,27,24,1,2,1.88\r\n,Community Day,Sanger Unified,Fresno,550,B,0,0,6,0,94,0,0,0,100,0,0,37,17,17,N/A,N/A,9,100,43,40,14,3,0,1.77\r\n,Mono County Opportunity,Mono County Office of Educatio,Mono,549,B,5,5,0,0,50,0,41,0,82,0,0,32,14,9,,,,0,0,0,0,0,0,\r\n,Far West,Oakland Unified,Alameda,548,1,76,1,3,0,12,1,6,2,73,8,0,3,5,15,N/A,N/A,19,63,23,32,19,19,8,2.57\r\n,Cajon Valley Community Day,Cajon Valley Union,San Diego,548,B,32,0,3,0,27,3,32,3,84,0,0,8,5,54,N/A,N/A,13,89,24,58,18,0,0,1.94\r\n,Montebello Community Day,Montebello Unified,Los Angeles,548,B,0,0,0,0,99,1,0,0,78,3,0,30,33,20,N/A,N/A,14,83,50,20,28,1,0,1.81\r\n,Ramona Opportunity High,Los Angeles Unified,Los Angeles,548,B,1,1,0,0,97,0,1,0,100,2,0,31,25,9,N/A,N/A,14,33,54,31,10,3,3,1.69\r\n,Lovell High,Cutler-Orosi Joint Unified,Tulare,548,B,0,0,0,0,92,0,3,0,97,0,3,56,18,8,N/A,N/A,15,64,72,16,8,0,4,1.48\r\n,Somerset Continuation High,Bellflower Unified,Los Angeles,547,B,20,1,0,3,61,0,13,0,65,3,0,18,7,16,N/A,N/A,19,89,29,23,37,11,0,2.28\r\n,San Diego Communication,San Diego Unified,San Diego,547,1,10,1,1,0,84,2,2,0,100,5,0,59,15,13,N/A,N/A,16,68,39,37,17,5,1,1.92\r\n,Central Unified Alternative/Opportunity,Central Unified,Fresno,546,B,8,1,7,1,59,1,23,2,12,0,0,7,4,9,N/A,N/A,14,93,17,40,28,11,4,2.44\r\n,Santa Cruz County Community,Santa Cruz County Office of Ed,Santa Cruz,546,B,1,1,1,0,49,0,39,6,18,0,0,23,5,14,,,,89,32,26,18,18,5,2.38\r\n,Elwood J. Keema High,Twin Rivers Unified,Sacramento,546,1,17,2,6,0,38,2,26,3,57,6,0,17,7,1,N/A,N/A,10,87,32,33,29,5,1,2.1\r\n,Kern County Juvenile Court,Kern County Office of Educatio,Kern,546,B,16,1,0,0,62,0,20,0,98,0,0,20,8,20,N/A,N/A,3,79,45,32,14,8,1,1.88\r\n,Alameda County Community,Alameda County Office of Educa,Alameda,545,B,25,0,3,2,52,2,10,5,85,0,0,15,13,10,N/A,N/A,9,82,25,35,26,8,6,2.33\r\n,Alessandro High,Hemet Unified,Riverside,545,B,10,0,0,0,57,1,29,2,80,3,0,19,8,1,N/A,N/A,23,100,34,35,25,3,2,2.03\r\n,,San Diego County Office of Edu,San Diego,545,B,10,1,1,1,73,1,9,4,89,0,0,35,13,20,19,25,N/A,89,41,30,17,9,2,2.03\r\n,Kennedy High,West Contra Costa Unified,Contra Costa,544,1,31,0,5,2,56,2,3,0,77,4,0,33,19,14,N/A,N/A,22,81,38,44,11,5,1,1.86\r\n,Stoney Point Continuation,Los Angeles Unified,Los Angeles,544,B,10,0,0,4,67,0,19,1,85,2,0,17,25,12,N/A,N/A,27,54,49,31,11,9,0,1.8\r\n,Odyssey Continuation,Los Angeles Unified,Los Angeles,544,B,1,1,0,0,97,0,0,0,94,2,1,34,33,0,N/A,N/A,25,61,46,39,10,3,2,1.75\r\n,\"School of Communications, New Media and\",Los Angeles Unified,Los Angeles,544,1,0,0,0,0,100,0,0,0,100,5,2,39,42,14,N/A,N/A,21,50,62,23,10,4,0,1.56\r\nY,Soledad Enrichment Action Charter High,Los Angeles County Office of E,Los Angeles,544,B,15,1,0,0,82,0,1,0,93,0,0,40,21,11,N/A,N/A,22,99,63,25,10,2,1,1.55\r\n,Mesquite Continuation High,Sierra Sands Unified,Kern,543,B,4,0,0,3,25,0,66,1,52,1,0,7,1,0,N/A,N/A,16,94,12,33,42,9,4,2.61\r\n,San Luis High (Continuation),Los Banos Unified,Merced,543,B,4,1,0,3,69,0,24,0,65,0,0,33,9,19,N/A,N/A,24,84,30,31,25,12,1,2.24\r\n,Marlton,Los Angeles Unified,Los Angeles,543,C,29,0,0,0,68,0,2,0,100,0,1,43,7,66,10,10,11,55,43,29,18,6,4,1.98\r\n,Robertson High (Continuation),Fremont Unified,Alameda,542,B,13,1,7,4,49,3,19,3,46,1,0,25,9,12,N/A,N/A,17,94,19,36,25,16,4,2.52\r\n,La Sierra High (Alternative),Fullerton Joint Union High,Orange,542,B,2,0,2,0,80,1,13,1,51,5,0,32,17,7,N/A,N/A,18,84,33,32,23,9,3,2.17\r\n,Sequoia High,Visalia Unified,Tulare,542,B,6,2,3,0,68,0,15,5,41,2,1,16,11,10,N/A,N/A,21,86,26,44,20,6,3,2.16\r\n,Magnolia Park,Burbank Unified,Los Angeles,541,C,4,0,0,4,31,0,58,4,8,4,0,4,8,92,N/A,4,N/A,73,11,16,42,11,21,3.16\r\n,Adelante High,Riverbank Unified,Stanislaus,541,B,2,0,0,0,76,0,21,0,86,2,7,36,17,0,N/A,N/A,19,98,44,41,10,0,5,1.8\r\nD,Bay Area School of Enterprise,Alameda City Unified,Alameda,541,1,13,3,3,0,71,0,5,2,83,0,0,67,3,5,N/A,N/A,23,88,43,42,9,2,3,1.79\r\nD,Animo Locke Charter High School #2,Los Angeles Unified,Los Angeles,541,1,34,0,0,0,65,0,0,0,94,0,0,26,29,15,N/A,N/A,22,69,47,30,19,2,1,1.79\r\n,Ivy High (Continuation),Fallbrook Union High,San Diego,541,B,2,3,1,0,77,0,15,1,71,5,5,29,34,4,N/A,N/A,20,68,56,21,14,8,2,1.77\r\n,San Andreas High (Continuation),Tamalpais Union High,Marin,540,B,8,0,0,0,24,0,60,0,32,4,0,0,8,12,N/A,N/A,11,72,0,6,50,17,28,3.67\r\n,Tulare Technical Preparatory High,Tulare Joint Union High,Tulare,540,1,6,0,0,0,66,0,26,2,64,0,4,10,12,10,N/A,N/A,17,94,32,36,26,4,2,2.09\r\nY,Kern Workforce 2000 Academy,Kern Union High,Kern,540,1,7,0,0,1,81,1,10,1,67,0,5,15,24,1,N/A,N/A,17,97,38,33,19,7,4,2.07\r\n,Del Mar High,San Gabriel Unified,Los Angeles,540,B,3,0,10,3,72,0,7,0,62,0,0,31,7,0,N/A,N/A,16,86,32,36,28,4,0,2.04\r\nD,MAAC Community Charter,Sweetwater Union High,San Diego,540,B,2,0,0,1,94,0,2,0,76,0,0,66,10,7,N/A,N/A,16,78,47,22,21,5,4,1.96\r\n,March Mountain High,Moreno Valley Unified,Riverside,539,B,21,1,1,2,67,1,6,2,79,4,0,24,18,4,N/A,N/A,10,88,26,39,23,11,1,2.23\r\n,Bayside Community Day,Moreno Valley Unified,Riverside,539,B,15,0,2,0,76,0,8,0,83,3,0,26,16,1,N/A,N/A,23,84,28,36,26,8,2,2.22\r\n,Jane Frederick High,Stockton Unified,San Joaquin,539,B,12,9,9,2,62,1,5,0,78,2,2,21,8,12,N/A,N/A,12,77,41,33,16,8,3,1.99\r\n,Castlemont High,Oakland Unified,Alameda,539,1,37,0,3,0,56,3,0,1,87,13,0,27,24,15,N/A,N/A,17,57,51,31,15,3,0,1.71\r\n,California School for the Deaf-Fremont,California School for the Deaf,Alameda,538,C,10,1,6,3,42,0,36,2,100,0,0,0,0,100,5,8,7,96,16,19,32,14,19,3.01\r\n,Silver Springs High (Continuation),Nevada Joint Union High,Nevada,538,B,2,1,0,1,10,1,84,1,59,0,0,1,0,17,N/A,N/A,10,97,8,30,47,8,8,2.78\r\n,Stanislaus County Special Education,Stanislaus County Office of Ed,Stanislaus,538,C,7,1,3,2,45,0,39,2,44,0,0,18,0,90,9,8,14,56,18,33,25,11,13,2.68\r\n,Richland Continuation High,Orange Unified,Orange,538,B,1,0,2,0,74,0,20,1,60,0,0,34,12,13,N/A,N/A,18,89,41,30,20,5,3,2.01\r\n,Salinas Community,Monterey County Office of Educ,Monterey,538,B,2,0,0,0,86,1,8,2,75,0,0,31,17,13,,,,80,50,28,13,8,1,1.83\r\n,River Bend,Visalia Unified,Tulare,536,C,10,8,0,3,31,0,46,3,67,3,0,3,8,97,5,13,8,90,14,20,34,23,9,2.91\r\n,Pride Continuation,Linden Unified,San Joaquin,536,1,4,2,0,2,48,0,40,0,67,0,2,15,8,12,N/A,N/A,21,75,31,38,23,8,0,2.08\r\n,South Valley High (Continuation),Ukiah Unified,Mendocino,536,B,0,26,0,0,46,0,26,3,82,1,12,18,14,11,N/A,N/A,16,86,45,25,23,2,5,1.95\r\n,Centennial Independent Study,Golden Valley Unified,Madera,535,1,0,0,0,0,25,0,75,0,17,0,0,13,8,17,,,,88,10,29,48,10,5,2.71\r\n,Bridgepoint High (Continuation),Newark Unified,Alameda,534,B,6,0,0,10,50,4,13,6,48,0,0,15,19,17,N/A,N/A,15,85,12,29,24,29,5,2.85\r\n,San Marin High School-Plus,Novato Unified,Marin,534,1,0,0,0,0,56,0,39,6,50,0,0,17,28,11,N/A,N/A,20,94,18,18,41,12,12,2.82\r\n,Oakview High (Alternative),Anderson Union High,Shasta,534,1,4,9,1,0,8,0,75,3,65,0,0,0,4,3,,,,89,16,28,30,13,12,2.76\r\n,Vicente Martinez High,Martinez Unified,Contra Costa,534,B,6,4,0,0,28,0,57,5,47,1,0,7,1,12,N/A,N/A,21,93,5,41,36,12,5,2.71\r\n,,Santa Cruz County Office of Ed,Santa Cruz,534,B,2,1,1,0,56,0,33,5,18,0,0,26,6,15,8,7,21,86,35,27,18,15,5,2.28\r\n,East Region Community School of Greater,San Diego County Office of Edu,San Diego,534,1,18,4,1,1,50,0,20,5,80,0,0,19,13,5,,,,95,32,29,33,5,1,2.16\r\n,Twin Oaks High,San Marcos Unified,San Diego,534,B,2,2,0,1,74,0,19,2,68,3,6,30,20,16,N/A,N/A,11,97,46,22,19,11,2,2\r\n,Ralph J. Bunche High,Oakland Unified,Alameda,534,1,67,0,2,0,29,2,0,0,78,2,0,14,12,6,N/A,N/A,20,57,38,34,21,7,0,1.97\r\n,Deep Creek Academy,Farmersville Unified,Tulare,534,B,3,0,0,0,82,0,13,0,95,3,5,26,21,5,N/A,N/A,11,85,45,33,15,6,0,1.82\r\n,Owensmouth Continuation,Los Angeles Unified,Los Angeles,534,B,1,1,1,0,95,0,2,0,88,2,0,40,42,0,N/A,N/A,20,49,60,34,4,0,2,1.5\r\n,Quest Academy,La Mesa-Spring Valley,San Diego,533,1,29,0,0,5,38,0,29,0,0,5,0,19,5,33,N/A,7,10,86,6,17,50,28,0,3\r\n,Educational Partnership High,Long Beach Unified,Los Angeles,533,B,16,0,5,2,67,1,8,1,61,0,0,26,35,4,,,,79,37,36,11,14,2,2.08\r\n,John R. Wooden High,Los Angeles Unified,Los Angeles,533,B,6,0,1,0,80,1,11,1,86,2,0,26,37,8,,,,61,51,25,14,10,0,1.82\r\n,HBUHSD Community Day,Huntington Beach Union High,Orange,533,B,5,10,5,5,33,0,43,0,57,0,0,10,19,0,N/A,N/A,4,0,0,0,0,0,0,\r\nY,Stockton High,Stockton Unified,San Joaquin,532,1,9,9,3,1,62,0,16,0,77,5,0,15,7,3,N/A,N/A,19,85,33,34,25,4,4,2.12\r\n,Desert Valley High (Continuation),Brawley Union High,Imperial,531,B,1,0,0,0,96,0,2,0,49,4,21,24,25,9,N/A,N/A,19,99,29,31,35,3,2,2.19\r\n,San Jacinto Home Education,San Jacinto Unified,Riverside,531,1,13,6,1,0,56,2,20,2,47,2,0,15,14,7,N/A,N/A,4,90,34,35,23,5,2,2.05\r\n,Eagle Tree Continuation,Los Angeles Unified,Los Angeles,531,B,15,0,0,2,72,7,4,0,61,2,0,13,12,6,N/A,N/A,14,46,39,45,12,4,0,1.82\r\n,Richard A. Alonzo Community Day,Los Angeles Unified,Los Angeles,531,B,5,0,0,2,90,0,3,0,84,6,0,33,33,8,N/A,N/A,19,57,48,28,20,3,1,1.8\r\n,Endeavor Alternative,Ceres Unified,Stanislaus,530,1,3,1,1,0,61,1,31,1,79,4,7,19,19,8,N/A,N/A,33,99,41,41,12,5,1,1.86\r\nD,Crescent Valley Public Charter,Stone Corral Elementary,Tulare,529,B,4,1,2,0,64,0,23,6,81,0,0,7,4,10,N/A,N/A,8,70,24,41,17,16,4,2.35\r\n,Liberty High (Alternative),San Jose Unified,Santa Clara,529,B,1,1,1,1,70,1,14,2,43,6,0,26,12,3,N/A,N/A,17,88,28,33,24,13,2,2.3\r\n,Business and Information Technology High,Oakland Unified,Alameda,529,1,32,0,1,0,50,10,1,1,77,10,1,26,22,5,N/A,N/A,12,53,46,30,11,10,3,1.93\r\n,Performing Arts Community at South Regio,Los Angeles Unified,Los Angeles,529,1,5,0,0,0,93,0,1,0,87,3,1,35,43,12,N/A,N/A,10,54,62,26,6,4,1,1.56\r\n,Chaparral High,Grossmont Union High,San Diego,528,B,13,3,1,0,36,1,46,0,68,0,0,16,7,19,N/A,N/A,11,96,13,38,35,8,7,2.59\r\n,,Yuba County Office of Educatio,Yuba,528,B,2,4,0,1,38,1,46,7,83,0,0,7,4,17,8,7,2,69,22,29,32,15,2,2.46\r\n,Feather River Academy,Sutter County Office of Educat,Sutter,528,B,5,0,3,0,44,0,45,2,57,0,0,7,3,9,N/A,N/A,15,85,21,34,32,9,5,2.43\r\n,Washington High,Colton Joint Unified,San Bernardino,528,1,7,1,2,1,79,0,11,1,66,7,0,22,9,17,7,N/A,7,82,32,39,21,4,3,2.07\r\n,Jack London Continuation,Los Angeles Unified,Los Angeles,528,B,5,0,0,0,90,0,5,0,78,4,0,26,41,2,N/A,N/A,31,57,59,22,11,7,1,1.69\r\nD,Animo Charter High No. 1,Los Angeles Unified,Los Angeles,528,1,17,0,0,0,79,0,2,0,83,0,0,40,25,11,,,,52,59,28,11,2,0,1.55\r\n,Del Rio Continuation High,Atascadero Unified,San Luis Obispo,527,B,1,1,1,1,32,0,57,5,52,1,0,7,4,11,N/A,N/A,10,100,7,32,39,16,7,2.84\r\n,Glen View High,Beaumont Unified,Riverside,527,B,8,0,4,0,55,0,32,0,83,1,0,9,15,11,N/A,N/A,15,76,18,32,40,9,2,2.46\r\n,Robert Elliott Alternative Education Cen,Modesto City High,Stanislaus,527,B,7,1,3,0,56,0,23,6,41,1,1,16,8,11,N/A,N/A,14,94,33,38,21,5,3,2.07\r\n,Milor Continuation High,Rialto Unified,San Bernardino,527,B,15,3,0,0,72,0,9,1,74,2,0,27,6,5,N/A,N/A,17,79,42,33,15,9,0,1.91\r\n,Major General Raymond Murray High,Vista Unified,San Diego,527,1,3,1,0,1,88,0,7,0,74,7,4,23,47,0,N/A,N/A,19,80,56,25,10,8,1,1.73\r\n,Vista Nueva Career and Technology High,Twin Rivers Unified,Sacramento,526,B,30,0,9,0,38,5,12,1,74,1,0,20,5,16,N/A,N/A,16,74,34,30,25,9,2,2.14\r\n,Kaweah High,Exeter Union High,Tulare,526,B,0,0,0,0,53,0,42,0,79,0,5,11,0,5,,,,84,44,6,44,6,0,2.13\r\n,Round Valley High,Round Valley Unified,Mendocino,525,1,1,67,0,0,7,0,23,0,95,0,0,4,0,7,N/A,N/A,14,12,10,20,30,30,10,3.1\r\n,Canyon Ridge High,Hesperia Unified,San Bernardino,525,1,6,1,0,0,68,0,23,1,73,0,0,26,7,4,N/A,N/A,20,93,33,36,21,6,4,2.13\r\n,Social Justice: Fine and Performing Arts,Los Angeles Unified,Los Angeles,525,1,12,0,0,0,87,0,0,0,86,5,0,33,36,10,N/A,N/A,24,40,48,34,12,4,2,1.76\r\n,Sonoma Mountain High (Continuation),Petaluma City Schools,Sonoma,524,B,0,5,0,0,33,0,62,0,57,0,0,19,5,29,,,,95,15,10,45,25,5,2.95\r\n,Community School/Independent Alternative,San Bernardino County Office o,San Bernardino,524,B,13,1,1,0,51,0,28,3,80,0,0,12,6,3,,,,97,26,36,26,9,3,2.28\r\n,Noyo High (Continuation),Fort Bragg Unified,Mendocino,524,B,0,0,0,0,50,0,50,0,82,0,9,27,18,0,N/A,N/A,15,82,28,39,22,6,6,2.22\r\n,Del Puerto High,Patterson Joint Unified,Stanislaus,524,B,13,3,0,0,72,0,9,1,71,0,3,30,4,9,N/A,N/A,19,89,37,37,16,9,1,2\r\n,Sierra High,Azusa Unified,Los Angeles,524,B,0,0,1,0,94,0,3,2,76,2,1,31,21,4,N/A,N/A,20,91,45,32,19,4,1,1.83\r\n,Amelia Earhart Continuation,Los Angeles Unified,Los Angeles,524,B,1,1,0,0,96,0,1,0,92,0,0,39,36,10,N/A,N/A,26,65,53,28,13,6,0,1.72\r\n,North Park Continuation High,Baldwin Park Unified,Los Angeles,524,B,0,0,1,0,78,0,3,0,62,0,1,24,26,6,N/A,N/A,8,59,55,34,10,2,0,1.59\r\n,Dario Cassina High,Sonora Union High,Tuolumne,523,B,0,3,0,0,20,0,78,0,88,0,0,0,5,8,N/A,N/A,18,90,8,44,36,8,3,2.53\r\n,Rio Cazadero High (Continuation),Elk Grove Unified,Sacramento,523,B,51,1,4,0,32,1,5,6,74,1,0,17,13,5,N/A,N/A,14,96,26,35,30,8,1,2.22\r\n,Social Justice: Global Issues Academy at,Los Angeles Unified,Los Angeles,523,1,9,0,0,0,91,0,0,0,85,6,0,38,38,14,N/A,N/A,23,39,60,29,7,2,1,1.55\r\n,California School for the Blind,California School for the Blin,Alameda,523,C,11,0,3,0,36,0,47,0,0,0,0,8,0,100,,,,0,0,0,0,0,0,\r\n,,Sacramento County Office of Ed,Sacramento,522,B,35,1,7,0,29,0,19,6,68,0,0,9,3,46,22,9,10,39,20,34,27,20,0,2.47\r\n,Media College Preparatory,Oakland Unified,Alameda,522,1,47,1,11,1,37,1,1,1,87,7,0,19,20,9,N/A,N/A,17,68,40,35,15,9,1,1.95\r\n,Access County Community,Orange County Department of Ed,Orange,522,B,3,1,3,0,73,1,17,1,1,0,0,38,8,4,16,12,N/A,59,50,23,18,7,2,1.89\r\n,Juvenile Hall/Community,Mariposa County Office of Educ,Mariposa,521,B,0,17,3,3,11,0,63,3,91,0,0,3,0,26,N/A,N/A,10,97,18,50,18,9,6,2.35\r\nD,Big Picture High School - Fresno,Fresno County Office of Educat,Fresno,521,1,18,0,2,0,72,0,7,0,80,1,0,33,2,10,N/A,N/A,17,85,34,25,30,9,3,2.22\r\n,South Lindhurst Continuation High,Marysville Joint Unified,Yuba,521,B,5,5,2,0,45,0,36,5,79,2,0,12,14,2,N/A,N/A,28,72,31,45,21,2,0,1.95\r\n,Shattuck Educational Park,Delhi Unified,Merced,521,B,0,0,0,0,88,0,12,0,82,0,6,53,21,3,N/A,N/A,45,85,52,45,3,0,0,1.52\r\nY,Crossroads Trade Tech Charter,Armona Union Elementary,Kings,519,B,11,1,0,1,64,0,20,0,78,0,0,3,3,8,N/A,N/A,16,89,23,38,30,5,5,2.3\r\n,Reid High,Long Beach Unified,Los Angeles,519,B,20,0,3,0,73,3,1,0,75,0,2,31,36,6,N/A,N/A,32,66,35,32,17,16,0,2.13\r\n,Cambridge Continuation High,Fresno Unified,Fresno,519,B,19,2,8,0,66,0,4,0,97,3,1,26,9,10,N/A,N/A,17,90,39,36,15,9,2,2\r\n,Park West High (Continuation),Pomona Unified,Los Angeles,519,B,6,0,2,0,87,1,1,1,85,1,1,48,8,10,N/A,N/A,17,70,43,40,12,4,1,1.79\r\n,Thornton High,Jefferson Union High,San Mateo,518,B,6,0,2,13,40,3,18,16,21,0,0,18,11,14,N/A,N/A,27,90,8,33,24,27,8,2.94\r\n,La Paloma High (Continuation),Liberty Union High,Contra Costa,518,B,24,3,2,0,30,2,37,2,43,0,0,9,3,17,N/A,N/A,15,92,19,30,28,16,7,2.62\r\n,Conejo Valley High (Continuation),Conejo Valley Unified,Ventura,518,B,3,1,0,1,48,0,46,1,55,2,0,21,15,15,N/A,N/A,10,48,31,27,21,16,5,2.37\r\n,Vail High (Continuation),Montebello Unified,Los Angeles,518,B,1,0,1,1,96,0,1,0,58,3,0,24,31,3,N/A,N/A,16,85,48,35,11,4,1,1.76\r\n,Alta Vista High (Continuation),Vista Unified,San Diego,518,B,2,0,0,0,89,0,8,0,84,1,1,45,22,6,N/A,N/A,18,79,49,36,9,6,0,1.72\r\n,John Morse Therapeutic Center,Sacramento City Unified,Sacramento,517,C,46,0,3,0,15,0,34,2,100,2,0,10,0,93,8,7,9,64,18,26,29,16,11,2.74\r\n,Whitcomb Continuation High,Glendora Unified,Los Angeles,517,B,5,0,3,2,52,2,35,0,22,2,0,9,5,23,N/A,N/A,12,91,10,37,39,7,7,2.63\r\n,San Andreas High,San Bernardino City Unified,San Bernardino,517,B,17,0,0,0,69,1,12,0,98,1,0,28,12,11,N/A,N/A,20,70,50,31,11,8,1,1.79\r\n,John Hope Continuation,Los Angeles Unified,Los Angeles,517,B,7,0,0,0,85,0,0,0,78,0,0,42,27,3,N/A,N/A,9,54,64,25,8,3,0,1.5\r\n,\"Nidorf, Barry J. Juvenile Hall\",Los Angeles County Office of E,Los Angeles,516,1,20,0,1,0,68,0,7,5,100,0,0,28,12,26,,,,43,23,33,9,29,7,2.64\r\n,Thomas E. Mathews Community,Yuba County Office of Educatio,Yuba,516,B,3,3,0,0,38,0,46,8,92,0,0,11,0,19,N/A,N/A,2,49,28,28,17,28,0,2.44\r\n,Renaissance Community Day,Los Angeles County Office of E,Los Angeles,516,B,24,0,0,0,66,0,2,6,97,0,0,34,11,6,,,,59,35,30,16,17,3,2.22\r\n,,Merced County Office of Educat,Merced,516,B,6,1,2,0,73,0,15,2,70,0,0,18,8,17,10,11,18,89,32,32,25,8,3,2.18\r\n,,Alameda County Office of Educa,Alameda,516,B,37,0,2,1,46,1,4,8,94,0,0,15,11,18,20,24,7,73,28,45,17,6,3,2.11\r\n,South Region Community,San Diego County Office of Edu,San Diego,516,B,8,0,0,2,84,0,3,3,66,0,0,23,14,11,,,,85,37,36,17,5,5,2.07\r\n,Mandela High,Oakland Unified,Alameda,516,1,40,0,2,1,51,4,0,1,90,7,0,28,21,16,N/A,N/A,18,68,52,25,14,7,1,1.8\r\n,Bidwell Continuation High,Antioch Unified,Contra Costa,515,B,55,4,0,4,21,0,16,0,58,0,0,11,3,19,N/A,N/A,11,78,17,22,43,13,4,2.66\r\n,Apollo High,Simi Valley Unified,Ventura,515,B,1,1,1,1,45,0,50,1,53,0,0,14,12,19,N/A,N/A,10,79,27,33,21,10,9,2.4\r\n,,Humboldt County Office of Educ,Humboldt,515,B,1,12,0,0,17,0,55,13,99,0,0,6,0,17,,,,49,19,43,18,16,3,2.4\r\nY,Yuba County Career Preparatory Charter,Yuba County Office of Educatio,Yuba,514,1,1,4,0,1,38,1,47,6,81,0,0,7,4,16,N/A,N/A,2,74,22,30,33,13,2,2.43\r\n,Foothills High,San Marcos Unified,San Diego,514,B,1,0,1,1,61,1,27,6,45,6,5,26,17,13,N/A,N/A,7,90,35,23,22,16,4,2.32\r\n,,Contra Costa County Office of,Contra Costa,513,B,29,0,2,0,42,2,14,9,50,0,0,26,3,26,7,20,19,30,14,44,18,22,2,2.53\r\nD,Anchor Academy Charter,Washington Unified,Fresno,513,1,45,0,1,0,51,0,1,1,100,0,0,1,0,8,10,12,17,6,40,0,60,0,0,2.2\r\n,Mt. Tallac High,Lake Tahoe Unified,El Dorado,512,B,4,0,2,0,40,0,54,0,48,0,0,18,6,14,N/A,N/A,21,80,23,43,23,8,5,2.3\r\n,Eel River Community,Humboldt County Office of Educ,Humboldt,512,B,0,5,0,0,21,0,57,13,100,0,0,13,0,14,,,,55,23,42,19,16,0,2.29\r\n,Valley Community,Merced County Office of Educat,Merced,512,B,6,0,2,0,72,0,16,2,75,0,0,15,6,13,N/A,N/A,18,92,30,33,27,9,1,2.2\r\n,William J. Johnston Community Day,Los Angeles Unified,Los Angeles,512,B,18,0,0,0,78,0,3,0,97,3,0,19,29,20,N/A,N/A,20,65,55,23,13,6,4,1.81\r\n,STAR at Anderson Community Day,San Bernardino City Unified,San Bernardino,512,B,42,0,0,0,38,0,17,0,100,0,0,17,0,21,5,8,N/A,54,54,38,8,0,0,1.54\r\n,Travis Education Center,Travis Unified,Solano,511,B,10,0,0,0,30,0,47,13,23,0,0,3,3,17,N/A,N/A,14,93,4,21,54,14,7,3\r\nY,School of Extended Educational Options,Pomona Unified,Los Angeles,511,B,7,1,0,0,85,0,4,3,64,3,0,29,16,6,N/A,N/A,25,82,36,34,25,3,2,2.02\r\n,Glenn County Opportunity,Glenn County Office of Educati,Glenn,511,B,0,3,0,0,49,0,49,0,86,0,0,27,8,16,,,,89,45,33,15,6,0,1.82\r\n,San Benito County Juvenile Hall/Communit,San Benito County Office of Ed,San Benito,510,B,0,0,2,2,81,0,12,2,23,0,5,19,5,7,,,,61,17,29,37,14,3,2.57\r\n,,Riverside County Office of Edu,Riverside,510,B,15,1,1,0,65,1,15,1,61,0,0,28,2,17,7,8,N/A,34,36,38,13,9,3,2.06\r\n,Rose City High (Continuation),Pasadena Unified,Los Angeles,510,B,19,0,1,0,69,1,6,2,70,1,0,28,26,4,7,9,18,76,44,26,20,8,3,2.01\r\n,Calaveras River Academy,Calaveras County Office of Edu,Calaveras,509,B,0,5,0,0,19,0,76,0,88,0,0,2,2,31,N/A,11,10,83,14,40,31,14,0,2.46\r\n,Henderson Community Day,Lodi Unified,San Joaquin,509,B,13,1,2,2,43,1,34,1,76,2,2,24,6,18,N/A,N/A,16,81,23,38,30,7,2,2.26\r\n,Lorin Griset Academy,Santa Ana Unified,Orange,509,B,0,0,0,0,99,0,1,0,79,4,2,60,27,3,N/A,N/A,22,93,68,24,6,1,0,1.43\r\n,Salisbury High (Continuation),Red Bluff Joint Union High,Tehama,508,B,0,4,1,0,23,0,67,5,83,0,0,2,0,12,,,,33,22,26,48,0,4,2.37\r\n,Heartland High (Continuation),Selma Unified,Fresno,508,1,2,0,0,0,89,0,9,0,91,0,2,36,11,13,N/A,N/A,12,91,48,27,15,6,4,1.92\r\n,Sem Yeto Continuation High,Fairfield-Suisun Unified,Solano,507,B,25,1,2,4,38,1,14,14,57,1,0,8,14,11,N/A,N/A,23,96,20,36,30,14,1,2.41\r\n,Communication and Technology at South Re,Los Angeles Unified,Los Angeles,507,1,9,0,0,0,90,0,1,0,80,3,0,30,40,14,N/A,N/A,10,46,61,27,8,3,2,1.57\r\n,Yellen Learning Center,Palmdale Elementary,Los Angeles,506,C,53,1,1,0,20,0,19,5,89,0,0,4,0,97,7,8,N/A,89,15,26,41,9,8,2.71\r\n,Baden High (Continuation),South San Francisco Unified,San Mateo,506,B,3,0,0,10,69,3,13,2,56,3,0,27,16,19,N/A,N/A,14,97,20,33,27,10,10,2.57\r\n,,Shasta County Office of Educat,Shasta,506,B,9,3,1,0,20,0,62,5,60,0,0,2,0,16,10,7,3,69,19,31,32,13,4,2.51\r\n,Bill M. Manes High,San Pasqual Valley Unified,Imperial,506,B,0,48,0,0,24,0,8,8,80,0,0,8,0,12,N/A,N/A,2,60,13,67,7,7,7,2.27\r\n,Pacific High,Ventura Unified,Ventura,505,B,4,2,0,3,58,1,32,1,100,2,0,24,5,9,N/A,N/A,5,97,27,35,25,12,2,2.28\r\n,,Santa Barbara County Office of,Santa Barbara,505,B,3,1,0,1,83,0,11,0,88,0,1,36,13,10,7,7,10,60,48,22,22,7,2,1.94\r\n,San Antonio Continuation,Los Angeles Unified,Los Angeles,505,B,1,0,0,0,97,0,1,0,75,1,0,18,48,3,N/A,N/A,31,58,51,34,2,7,5,1.8\r\n,,San Luis Obispo County Office,San Luis Obispo,504,B,3,3,1,1,48,0,42,2,70,0,0,21,7,20,9,8,14,84,26,24,33,13,4,2.45\r\n,R. K. Lloyde High,Centinela Valley Union High,Los Angeles,504,B,19,0,0,1,74,1,3,1,57,7,0,31,19,4,N/A,N/A,32,86,39,39,15,5,2,1.94\r\n,Fresno County Court,Fresno County Office of Educat,Fresno,504,B,22,1,3,0,59,0,12,0,90,0,0,17,5,17,N/A,N/A,14,90,57,24,11,7,1,1.7\r\n,Eureka Community,Humboldt County Office of Educ,Humboldt,503,B,3,12,0,0,16,0,56,13,98,0,0,4,1,14,,,,53,21,40,19,16,3,2.4\r\n,,Sutter County Office of Educat,Sutter,503,B,5,0,3,0,47,0,43,2,61,0,0,8,4,9,10,10,15,86,28,34,28,7,4,2.27\r\n,Citrus High,Porterville Unified,Tulare,503,B,1,6,1,0,74,0,14,3,78,1,8,19,15,2,N/A,N/A,23,95,44,25,19,9,3,2.02\r\n,La Cuesta Continuation High,Santa Barbara Unified,Santa Barbara,503,B,1,0,0,0,90,0,9,0,81,3,0,35,23,14,N/A,N/A,17,99,44,28,17,10,1,1.97\r\n,Gompers (Samuel) Continuation,West Contra Costa Unified,Contra Costa,503,B,45,0,2,0,42,1,0,2,73,0,0,28,5,10,N/A,N/A,23,74,39,45,11,5,0,1.83\r\n,Desert Winds Continuation High,Antelope Valley Union High,Los Angeles,501,B,26,1,1,0,57,0,14,0,38,0,1,20,11,4,N/A,N/A,18,84,28,32,29,8,3,2.26\r\n,Central Bay High (Continuation),North Monterey County Unified,Monterey,501,B,0,0,0,0,85,0,15,0,59,1,3,34,27,3,N/A,N/A,15,69,51,29,14,6,0,1.76\r\n,Youth Opportunities Unlimited,Los Angeles Unified,Los Angeles,501,B,24,0,0,0,75,0,0,0,75,2,0,36,24,4,N/A,N/A,20,39,53,32,6,8,2,1.74\r\n,Kingsburg Independent Study High,Kingsburg Joint Union High,Fresno,500,1,0,2,0,0,49,0,46,2,32,2,0,7,15,5,N/A,N/A,12,95,15,23,28,26,8,2.87\r\n,Lincoln High (Continuation),San Leandro Unified,Alameda,500,B,42,0,0,2,50,0,4,0,67,2,0,17,8,19,N/A,N/A,14,92,27,41,25,5,2,2.14\r\nY,Sequoia Charter,William S. Hart Union High,Los Angeles,499,1,5,0,0,5,32,0,51,7,41,0,0,5,10,100,N/A,N/A,8,85,11,14,46,17,11,3.03\r\n,Gunderson Plus (Continuation),San Jose Unified,Santa Clara,499,B,4,4,4,4,57,0,22,4,57,4,0,9,30,9,N/A,N/A,18,100,35,22,35,4,4,2.22\r\n,J. E. Young Academic Center,Fresno Unified,Fresno,498,B,8,2,5,0,69,0,14,0,100,6,1,15,12,6,,,,85,29,36,26,5,4,2.2\r\n,Riverside County Opportunity,Riverside County Office of Edu,Riverside,498,B,7,0,1,0,69,1,21,0,88,0,0,34,0,7,,,,51,31,46,14,3,6,2.06\r\n,Ellington (Duke) High (Continuation),Los Angeles Unified,Los Angeles,498,B,55,0,0,0,45,0,0,0,67,0,0,23,10,8,N/A,N/A,21,38,43,35,17,4,0,1.83\r\n,California School for the Deaf-Riverside,California School for the Deaf,Riverside,497,C,11,0,2,1,55,1,26,3,100,0,0,0,0,100,6,7,7,94,23,28,27,16,6,2.54\r\n,El Centro Jr./Sr. High,Sacramento County Office of Ed,Sacramento,497,B,35,0,4,0,30,0,16,8,96,0,0,7,2,42,N/A,N/A,9,36,15,40,23,21,0,2.51\r\n,Matt Garcia Learning Center,Fairfield-Suisun Unified,Solano,497,1,38,1,0,1,33,2,20,6,84,1,1,11,8,11,7,10,15,96,19,32,36,9,4,2.47\r\n,Dover Bridge to Success,Fairfield-Suisun Unified,Solano,497,1,17,7,2,2,47,3,15,8,77,0,0,18,13,2,N/A,N/A,17,98,22,32,31,15,0,2.39\r\n,Santa Clara County Juvenile Hall,Santa Clara County Office of E,Santa Clara,497,B,9,1,3,1,78,0,5,1,68,0,0,39,11,22,N/A,N/A,10,86,34,28,25,10,3,2.2\r\n,,San Bernardino County Office o,San Bernardino,497,B,23,1,1,1,51,0,16,2,81,0,0,15,4,20,13,10,N/A,87,29,42,17,8,3,2.13\r\n,Riverside County Juvenile Court,Riverside County Office of Edu,Riverside,497,B,26,0,1,0,60,1,12,1,99,0,0,26,0,29,,,,44,45,39,7,7,1,1.81\r\n,Island High (Continuation),Alameda City Unified,Alameda,496,B,30,0,8,6,37,2,15,3,61,3,1,16,4,13,N/A,N/A,20,94,16,23,41,18,3,2.69\r\n,Royal Sunset (Continuation),San Lorenzo Unified,Alameda,496,B,30,2,1,2,49,4,10,1,46,1,0,20,7,6,N/A,N/A,18,71,19,31,38,9,3,2.46\r\n,,Mariposa County Office of Educ,Mariposa,496,B,0,11,2,2,15,0,68,3,88,0,0,3,0,23,3,1,5,97,17,44,30,6,3,2.34\r\n,East High (Continuation),Fortuna Union High,Humboldt,496,B,0,17,0,0,25,0,58,0,71,0,0,13,4,17,N/A,N/A,16,100,38,33,21,8,0,2\r\n,El Puente,Salinas Union High,Monterey,496,1,1,0,0,0,87,0,11,0,35,1,10,32,27,5,N/A,N/A,10,84,47,33,12,5,3,1.83\r\n,Phoenix High (Continuation),Cotati-Rohnert Park Unified,Sonoma,495,B,8,4,4,4,16,4,44,16,52,0,0,4,12,4,N/A,N/A,16,92,22,26,26,26,0,2.57\r\n,Tierra Del Sol Continuation High,Kern Union High,Kern,495,1,6,1,0,0,82,0,9,0,90,1,2,10,12,3,N/A,N/A,24,95,40,28,19,6,7,2.14\r\n,Merced County Juvenile Hall/Community,Merced County Office of Educat,Merced,495,B,7,0,2,0,80,0,9,1,73,0,0,13,1,13,N/A,N/A,17,87,52,35,11,0,1,1.63\r\n,Oak Glen High,Valley Center-Pauma Unified,San Diego,494,B,2,18,0,0,51,2,25,2,61,0,6,25,18,10,N/A,N/A,25,98,38,38,18,4,2,1.94\r\n,Independence Continuation,El Dorado Union High,El Dorado,493,B,0,7,1,1,21,1,64,4,46,2,0,1,4,12,N/A,N/A,21,82,12,25,45,12,5,2.73\r\n,Crossroads Alternative Education Center,Los Banos Unified,Merced,493,1,3,0,0,2,59,0,31,2,56,0,1,15,10,1,,,,77,22,20,39,16,3,2.58\r\n,,San Mateo County Office of Edu,San Mateo,493,B,8,0,2,4,61,4,11,2,63,0,0,27,3,32,8,7,14,58,28,35,16,17,4,2.35\r\n,Bob Murphy County Community Day,San Bernardino County Office o,San Bernardino,493,1,18,1,1,1,71,0,5,0,71,0,0,21,3,17,,,,96,25,63,3,6,4,2\r\n,R. Rex Parris High,Antelope Valley Union High,Los Angeles,493,B,20,0,0,0,73,0,5,1,52,0,1,31,12,11,N/A,N/A,21,85,45,32,16,5,1,1.86\r\n,Pacific Career and Technology High,Twin Rivers Unified,Sacramento,492,B,37,1,0,0,31,1,28,1,81,1,0,3,5,14,N/A,N/A,16,74,20,30,36,12,1,2.43\r\n,Aurora High (Continuation),Calexico Unified,Imperial,492,B,0,0,0,0,98,0,1,0,99,0,11,70,12,11,N/A,N/A,18,88,35,26,17,12,10,2.36\r\n,Lassen County Special Education,Lassen County Office of Educat,Lassen,492,C,6,13,0,6,6,0,63,6,75,0,0,0,0,100,1,N/A,N/A,44,0,86,0,14,0,2.29\r\n,Slover Mountain High (Continuation),Colton Joint Unified,San Bernardino,492,B,6,0,0,0,81,1,7,0,57,1,0,20,17,4,N/A,N/A,19,77,46,28,23,2,2,1.85\r\n,Amador County Special Education,Amador County Office of Educat,Amador,491,C,1,3,0,0,22,1,66,7,69,0,0,6,2,100,5,5,4,82,10,39,34,13,3,2.6\r\n,Puente Hills High,Hacienda la Puente Unified,Los Angeles,491,1,0,1,4,1,79,0,13,1,77,0,1,16,9,76,5,5,6,56,22,35,22,18,4,2.47\r\n,Delta High,Santa Maria Joint Union High,Santa Barbara,491,B,0,0,0,0,87,0,9,2,70,0,9,37,20,3,N/A,N/A,19,87,43,25,22,7,2,2\r\n,Ron Hockwalt Academies (Continuation),Walnut Valley Unified,Los Angeles,490,B,10,0,13,0,57,0,20,0,33,0,0,7,3,17,N/A,N/A,14,83,8,32,28,24,8,2.92\r\n,Valley Oak High,Napa Valley Unified,Napa,489,B,3,4,2,0,60,0,27,3,53,3,0,17,25,8,N/A,N/A,17,90,27,28,33,10,1,2.29\r\n,S.F. County Civic Center Secondary,San Francisco County Office of,San Francisco,489,B,31,2,9,5,29,7,8,1,58,6,0,21,12,18,,,,44,21,49,19,9,2,2.23\r\n,Frontier High (Continuation),Whittier Union High,Los Angeles,489,B,1,0,0,1,91,0,7,0,74,0,0,14,15,3,N/A,N/A,30,62,38,36,16,8,2,1.99\r\n,Highlands Academy,Konocti Unified,Lake,489,B,5,11,2,0,23,0,48,9,98,0,2,2,0,32,8,6,12,100,34,41,20,5,0,1.95\r\n,Mission Education Center,San Francisco Unified,San Francisco,489,1,0,0,0,0,100,0,0,0,71,0,2,100,0,0,7,10,N/A,59,45,34,7,14,0,1.9\r\n,Centennial Continuation High,Corning Union High,Tehama,489,B,0,4,2,0,53,0,41,0,100,0,0,18,22,0,N/A,N/A,10,84,44,32,17,5,2,1.9\r\n,MacGregor High (Continuation),Albany City Unified,Alameda,488,B,24,7,14,0,24,3,28,0,28,0,0,10,0,10,N/A,N/A,12,28,13,0,50,25,13,3.25\r\n,Calla High,Manteca Unified,San Joaquin,488,B,5,2,2,2,52,2,34,2,64,2,0,14,10,5,N/A,N/A,17,84,16,41,29,12,2,2.43\r\nD,Crown Ridge Academy,San Bernardino City Unified,San Bernardino,488,1,4,0,0,0,88,0,5,2,100,0,0,84,0,7,N/A,N/A,16,64,41,35,9,12,2,1.99\r\n,Valley Alternative High (Continuation),Hacienda la Puente Unified,Los Angeles,488,B,3,0,0,0,92,0,4,0,78,1,0,28,11,16,N/A,N/A,12,52,44,37,15,5,0,1.8\r\n,Pueblo de Los Angeles Continuation,Los Angeles Unified,Los Angeles,488,B,0,0,2,0,98,0,0,0,89,0,0,10,10,7,N/A,N/A,11,36,64,18,14,5,0,1.59\r\n,Evergreen High,Yosemite Unified,Madera,487,1,4,7,0,0,26,0,63,0,37,0,0,4,0,19,N/A,N/A,17,81,18,18,45,9,9,2.73\r\n,Riverside High (Continuation),Pittsburg Unified,Contra Costa,487,B,33,0,1,1,54,1,8,1,72,0,0,29,7,9,N/A,N/A,14,82,32,35,25,7,1,2.1\r\n,Santa Barbara County Community,Santa Barbara County Office of,Santa Barbara,487,B,3,1,0,1,87,0,8,0,91,0,0,37,15,8,N/A,N/A,13,60,51,20,22,6,1,1.87\r\n,Thomas Riley High,Los Angeles Unified,Los Angeles,487,B,20,1,0,0,77,1,0,1,90,3,0,27,31,7,N/A,N/A,12,51,71,23,2,3,0,1.38\r\n,,San Joaquin County Office of E,San Joaquin,486,B,22,2,4,1,53,1,14,2,85,0,1,18,5,6,12,16,20,87,37,31,23,5,4,2.08\r\n,McClymonds High,Oakland Unified,Alameda,485,1,86,0,2,1,7,2,1,2,69,3,0,3,3,7,N/A,N/A,25,57,25,41,18,13,2,2.26\r\n,Oakdale,Chico Unified,Butte,484,1,3,0,0,0,34,0,61,0,63,0,0,6,10,11,,,,94,17,24,40,9,10,2.71\r\n,San Luis Obispo County Community,San Luis Obispo County Office,San Luis Obispo,484,B,1,3,0,0,45,0,46,4,73,0,0,23,5,18,N/A,N/A,14,82,27,26,28,15,4,2.44\r\n,Taft High,Sanger Unified,Fresno,484,B,2,0,3,0,78,0,16,1,56,1,0,23,12,5,N/A,N/A,8,97,28,26,32,14,0,2.31\r\nY,Pioneer Technical Center,Madera County Office of Educat,Madera,484,B,8,0,0,0,80,0,6,2,46,0,0,26,15,6,N/A,N/A,16,95,37,28,25,7,4,2.13\r\n,Ocean Shores High (Continuation),Oceanside Unified,San Diego,484,B,8,1,0,2,66,3,16,3,57,0,3,27,24,13,N/A,N/A,25,68,41,25,20,11,3,2.09\r\n,Olympic Continuation High,Mt. Diablo Unified,Contra Costa,483,B,13,1,1,2,54,2,22,3,80,2,0,30,13,29,N/A,N/A,11,65,28,33,21,15,3,2.33\r\n,Windsor Oaks Academy,Windsor Unified,Sonoma,483,B,0,0,0,0,68,0,28,0,34,2,0,28,14,6,N/A,N/A,11,56,36,14,36,14,0,2.29\r\n,Abraham Lincoln Alternative,Southern Kern Unified,Kern,482,1,11,2,0,0,42,0,40,3,61,1,7,8,17,16,,,,70,21,46,16,16,0,2.28\r\n,Core Learning Academy at Conley-Caraball,New Haven Unified,Alameda,482,B,22,0,5,4,58,3,7,1,64,1,1,22,16,19,N/A,N/A,31,90,29,33,30,8,0,2.17\r\n,Desert Mountain Community Day,San Bernardino County Office o,San Bernardino,482,B,38,0,0,1,42,0,13,2,90,0,0,7,2,5,,,,94,39,36,18,6,2,1.94\r\n,Mt. San Jacinto High,Palm Springs Unified,Riverside,481,B,13,1,0,1,67,0,18,0,72,1,0,23,18,10,N/A,N/A,20,85,38,31,24,5,1,1.99\r\n,Metro Region Community,San Diego County Office of Edu,San Diego,481,B,10,0,2,0,80,0,3,3,85,0,0,41,18,18,,,,78,55,26,11,6,2,1.73\r\n,,Fresno County Office of Educat,Fresno,480,B,19,2,5,0,59,0,12,0,84,0,0,19,7,17,10,11,12,88,54,27,12,6,1,1.73\r\n,San Joaquin County Juvenile Hall,San Joaquin County Office of E,San Joaquin,480,1,25,0,10,0,54,0,8,3,18,0,1,21,4,8,,,,96,56,30,12,2,0,1.59\r\n,Mt. McKinley,Contra Costa County Office of,Contra Costa,479,B,30,0,3,0,45,2,11,8,68,0,0,33,1,32,N/A,N/A,18,19,12,40,20,28,0,2.64\r\n,Sonoma County Alternative Education Prog,Sonoma County Office of Educat,Sonoma,479,B,3,3,0,0,61,0,26,4,63,0,0,41,2,11,,,,59,43,24,15,13,5,2.14\r\nD,Carden Virtual Academy,San Bernardino City Unified,San Bernardino,479,1,9,1,0,0,75,0,11,3,72,0,0,25,4,12,1,1,18,78,36,37,10,15,2,2.09\r\n,Berkeley Technology Academy,Berkeley Unified,Alameda,478,1,61,1,1,0,22,0,4,7,45,6,0,16,6,10,N/A,N/A,17,84,20,29,38,13,2,2.48\r\n,Harris Newmark Continuation,Los Angeles Unified,Los Angeles,477,B,1,0,0,1,96,0,1,0,81,4,0,31,42,6,N/A,N/A,17,55,57,30,8,3,3,1.65\r\n,Riley/New Dawn,San Diego Unified,San Diego,476,C,25,2,2,1,39,0,27,4,100,7,1,25,2,90,6,10,9,61,14,21,30,26,9,2.94\r\n,S.F. International High,San Francisco Unified,San Francisco,476,1,1,0,54,3,35,0,5,1,71,0,0,99,0,2,N/A,N/A,18,38,37,38,14,11,1,2.01\r\n,Somavia High,Gonzales Unified,Monterey,476,B,0,0,0,0,96,0,0,0,82,0,25,43,29,4,N/A,N/A,12,89,64,16,12,0,8,1.72\r\n,Heritage Valley Independent Study,Fillmore Unified,Ventura,475,1,0,0,4,0,78,0,15,4,33,4,7,37,4,11,N/A,N/A,21,70,21,42,32,0,5,2.26\r\n,,Yolo County Office of Educatio,Yolo,474,B,1,4,3,0,66,1,20,3,91,0,0,26,8,9,5,11,13,42,22,34,22,13,9,2.53\r\n,Opportunity Program,Riverside Unified,Riverside,473,B,9,0,3,0,60,0,27,0,67,1,0,12,13,10,N/A,N/A,14,95,28,23,34,10,6,2.43\r\n,,Sonoma County Office of Educat,Sonoma,473,B,6,3,1,0,53,0,32,4,80,0,0,26,3,36,9,9,N/A,44,34,26,21,12,6,2.29\r\n,,Madera County Office of Educat,Madera,473,B,5,1,0,0,79,0,12,1,48,0,0,33,13,11,7,8,12,94,43,28,20,4,4,1.98\r\nD,New Millennium Institute of Education Ch,Fresno Unified,Fresno,472,B,17,0,3,0,72,0,5,2,99,0,0,6,0,0,,,,85,54,27,8,9,2,1.78\r\n,Alta Vista Academy,Sweetwater Union High,San Diego,471,1,27,0,0,0,35,0,35,2,8,0,0,4,2,40,N/A,N/A,2,10,0,40,40,0,20,3\r\n,Marin County Community,Marin County Office of Educati,Marin,471,B,11,0,1,0,63,0,20,5,63,0,0,20,30,15,N/A,N/A,19,89,38,17,21,15,8,2.37\r\n,Fair View High (Continuation),Chico Unified,Butte,470,B,10,5,1,0,26,1,55,1,73,0,0,9,4,17,N/A,N/A,18,82,16,25,44,7,8,2.68\r\n,Sacramento County ED Special Education,Sacramento County Office of Ed,Sacramento,470,C,31,4,4,0,10,2,40,6,44,0,0,0,0,98,8,10,19,0,0,0,0,0,0,\r\n,Enterprise High,Kerman Unified,Fresno,469,B,0,0,2,0,69,0,18,0,60,3,3,17,11,9,N/A,N/A,9,82,26,26,34,6,8,2.42\r\n,Roselawn High,Turlock Unified,Stanislaus,469,B,1,2,1,0,71,2,21,1,96,2,1,26,10,9,N/A,N/A,11,97,35,39,19,5,2,2\r\n,Valley High,Tulare Joint Union High,Tulare,468,1,9,6,0,0,73,0,12,0,82,0,6,15,6,12,N/A,N/A,15,88,24,28,34,14,0,2.38\r\nD,Carter G. Woodson Public Charter,Fresno Unified,Fresno,468,B,8,2,3,0,74,0,9,3,100,0,0,15,4,8,N/A,N/A,21,77,34,37,15,12,2,2.11\r\n,S.F. County Court Woodside Learning Ctr,San Francisco County Office of,San Francisco,467,B,45,3,4,1,27,6,4,0,53,12,0,16,4,43,,,,43,15,39,30,3,12,2.58\r\n,East Valley Community Day,San Bernardino County Office o,San Bernardino,467,B,28,1,1,2,54,1,10,1,84,0,0,12,2,15,,,,72,27,47,16,5,4,2.1\r\n,Olympic High (Continuation),Santa Monica-Malibu Unified,Los Angeles,466,B,13,0,0,0,50,0,33,2,42,0,0,8,12,12,,,,58,11,17,46,17,9,2.94\r\n,West End Community Day,San Bernardino County Office o,San Bernardino,466,B,10,1,0,1,63,0,15,4,72,0,0,23,6,24,,,,89,26,31,25,12,6,2.41\r\n,High Desert Premier Academy,Apple Valley Unified,San Bernardino,466,1,13,0,0,1,41,1,41,1,62,6,0,6,5,5,N/A,16,27,89,21,36,32,8,3,2.37\r\n,Del Valle Continuation High,Livermore Valley Joint Unified,Alameda,466,B,8,2,4,0,60,0,14,0,44,0,0,34,6,14,N/A,N/A,11,76,34,16,37,8,5,2.34\r\n,Peoples High (Continuation),Vallejo City Unified,Solano,465,B,62,1,1,4,15,0,4,6,68,0,0,4,5,14,N/A,N/A,19,95,18,35,34,11,3,2.46\r\n,Oasis Community,Shasta County Office of Educat,Shasta,464,B,13,3,1,0,25,0,52,5,73,0,0,4,0,19,,,,61,26,25,33,15,2,2.41\r\nY,South Monterey County Charter Independen,South Monterey County Joint Un,Monterey,464,1,0,0,0,0,88,0,13,0,18,0,0,36,32,9,N/A,N/A,16,89,46,30,12,6,6,1.96\r\n,Maine Prairie High (Continuation),Dixon Unified,Solano,463,B,4,0,0,0,58,0,39,0,56,4,5,23,23,9,N/A,N/A,19,95,22,43,19,13,4,2.33\r\n,Sierra Vista High,Tulare Joint Union High,Tulare,463,1,0,0,1,0,69,0,29,0,69,2,1,19,12,8,N/A,N/A,38,93,23,37,32,5,3,2.28\r\n,Irwin High (Continuation),Hilmar Unified,Merced,463,B,4,0,0,0,61,0,35,0,83,0,4,26,9,0,N/A,N/A,9,91,33,29,33,5,0,2.1\r\nD,Provisional Accelerated Learning Academy,San Bernardino City Unified,San Bernardino,463,B,16,1,1,0,80,0,2,1,0,0,0,34,0,4,,,,64,37,38,12,10,2,2.02\r\n,Kern County Community,Kern County Office of Educatio,Kern,463,B,15,1,0,0,60,0,22,0,90,0,1,15,7,10,1,2,3,90,43,29,20,6,2,1.95\r\n,North Region Community School of Greater,San Diego County Office of Edu,San Diego,463,1,3,0,0,2,86,0,10,0,92,0,0,51,25,19,,,,100,52,30,13,5,0,1.7\r\n,,Kings County Office of Educati,Kings,462,B,8,2,1,1,72,0,9,2,71,0,0,14,2,30,11,7,21,83,33,33,24,4,6,2.15\r\n,Mission Continuation,Los Angeles Unified,Los Angeles,462,B,0,0,0,0,100,0,0,0,96,0,0,42,39,16,N/A,N/A,18,64,65,23,5,2,5,1.58\r\n,Natural High (Continuation),Lakeport Unified,Lake,460,B,0,17,0,0,36,0,42,6,44,0,11,3,14,19,,,,94,29,32,21,12,6,2.32\r\n,Rare Earth High (Continuation),Southern Kern Unified,Kern,460,B,13,5,0,0,51,0,27,2,78,0,7,5,20,20,N/A,N/A,10,73,30,45,23,0,3,2\r\n,Zane Grey Continuation,Los Angeles Unified,Los Angeles,460,B,3,0,2,3,86,1,5,0,80,5,0,20,24,5,N/A,N/A,17,44,48,31,11,5,6,1.9\r\n,,Marin County Office of Educati,Marin,459,B,13,1,3,0,55,0,24,4,64,0,0,21,21,33,6,9,13,75,37,17,22,15,9,2.42\r\n,John B. Allard,Stanislaus County Office of Ed,Stanislaus,459,1,5,1,1,1,62,1,26,0,71,0,0,17,0,1,N/A,21,15,81,31,28,24,8,9,2.34\r\nY,Rite of Passage,El Dorado County Office of Edu,El Dorado,458,B,27,1,1,1,57,1,6,6,97,0,0,14,0,29,N/A,N/A,13,47,19,34,20,25,1,2.56\r\n,Downtown High,San Francisco Unified,San Francisco,458,B,26,1,5,4,51,9,3,0,66,5,1,32,13,15,N/A,N/A,18,62,27,46,13,11,2,2.15\r\n,Dorothy V. Johnson Community Day,Los Angeles Unified,Los Angeles,458,1,40,0,0,0,59,0,0,1,76,1,0,23,17,9,N/A,N/A,17,32,38,50,4,4,4,1.85\r\n,Golden Gate Community,Contra Costa County Office of,Contra Costa,457,B,24,0,1,1,40,2,19,11,46,0,0,20,5,15,N/A,10,17,36,19,40,17,19,4,2.49\r\n,,Santa Clara County Office of E,Santa Clara,457,B,6,0,5,2,77,0,8,1,78,0,0,34,13,16,22,23,19,91,32,19,35,10,3,2.33\r\n,Valley High (Continuation),Escondido Union High,San Diego,457,B,2,0,0,0,82,0,13,0,73,2,3,37,26,2,N/A,N/A,16,70,54,26,15,3,3,1.75\r\n,Will Rogers Continuation,Los Angeles Unified,Los Angeles,456,B,2,1,0,1,93,0,4,0,73,1,0,21,43,16,N/A,N/A,18,49,68,19,6,3,3,1.55\r\n,Sierra Vista High,Vista Unified,San Diego,455,C,13,3,0,0,48,5,25,3,93,0,0,23,5,100,N/A,5,6,75,33,20,20,27,0,2.4\r\n,Lincoln High Continuation,Garden Grove Unified,Orange,455,B,0,0,0,0,93,0,7,0,75,0,0,46,39,11,N/A,N/A,11,7,50,50,0,0,0,1.5\r\n,Eugene A. Obregon,El Rancho Unified,Los Angeles,454,C,0,0,0,0,97,0,3,0,72,0,5,28,5,100,8,3,7,92,25,25,36,14,0,2.39\r\n,San Joaquin High (Continuation),McFarland Unified,Kern,454,B,2,0,0,0,85,0,12,0,100,0,2,27,37,12,N/A,N/A,13,98,65,23,5,0,8,1.63\r\n,,Napa County Office of Educatio,Napa,452,B,4,1,2,2,68,1,24,0,65,0,0,28,26,22,,,,89,47,31,17,5,0,1.81\r\n,The Academy Community Day,Perris Union High,Riverside,451,B,15,0,0,0,74,2,8,1,95,2,0,26,14,9,N/A,N/A,13,99,40,32,21,4,3,1.99\r\n,Del Amigo High (Continuation),San Ramon Valley Unified,Contra Costa,450,B,13,0,8,3,8,0,58,8,13,0,0,8,3,32,N/A,N/A,7,74,0,18,54,25,4,3.14\r\n,Wells (Ida B.) High,San Francisco Unified,San Francisco,450,B,30,0,18,2,40,3,5,1,70,7,0,23,20,18,N/A,N/A,19,76,24,46,16,12,2,2.2\r\nY,Madera County Independent Academy,Madera County Office of Educat,Madera,450,1,3,1,0,0,79,0,15,0,32,0,0,33,14,7,,,,97,46,26,20,3,5,1.94\r\n,Creekside High,Sonoma Valley Unified,Sonoma,449,B,0,0,0,4,46,0,46,4,61,0,0,32,11,21,N/A,N/A,10,96,33,22,22,19,4,2.37\r\n,North Campus Continuation,West Contra Costa Unified,Contra Costa,449,B,21,0,11,1,56,1,4,0,58,0,0,29,5,7,N/A,N/A,21,56,19,58,17,4,2,2.11\r\n,Amistad High (Continuation),Desert Sands Unified,Riverside,449,B,3,0,1,0,90,0,4,1,85,3,1,26,22,8,N/A,N/A,6,90,48,39,9,2,2,1.71\r\n,,Lassen County Office of Educat,Lassen,447,B,4,8,0,4,24,0,52,4,72,0,0,8,0,48,1,N/A,N/A,48,17,50,17,17,0,2.33\r\n,Central Valley High (Continuation),Kern Union High,Kern,447,B,0,0,0,0,79,0,21,0,86,0,0,19,28,2,N/A,N/A,20,98,38,48,12,2,0,1.79\r\n,Sunrise (Special Education),Mt. Diablo Unified,Contra Costa,446,C,25,3,3,3,25,0,38,3,80,0,0,20,0,100,6,5,N/A,43,6,29,41,18,6,2.88\r\n,,Stanislaus County Office of Ed,Stanislaus,445,B,6,2,2,1,57,1,27,2,64,0,0,18,0,9,18,19,15,75,31,29,24,8,8,2.34\r\n,El Monte Union High School Community Day,El Monte Union High,Los Angeles,445,B,4,0,7,0,85,0,4,0,100,0,11,59,19,26,N/A,N/A,2,85,48,43,4,4,0,1.65\r\n,Sierra Vista High (Continuation),Dinuba Unified,Tulare,442,B,0,0,0,0,100,0,0,0,100,4,2,49,15,0,N/A,N/A,13,81,45,45,8,3,0,1.68\r\n,Gateway Community,Ventura County Office of Educa,Ventura,440,B,4,0,0,1,76,1,13,4,29,0,0,31,15,15,N/A,N/A,10,74,43,22,22,13,1,2.08\r\n,Campo High (Continuation),Mountain Empire Unified,San Diego,439,B,0,22,0,0,35,0,26,9,74,4,0,9,0,9,N/A,N/A,2,83,37,42,5,16,0,2\r\n,County Community,Santa Clara County Office of E,Santa Clara,438,B,4,0,6,2,78,0,8,2,86,0,0,33,15,9,N/A,7,13,98,31,16,40,10,3,2.4\r\n,Tulare County Community,Tulare County Office of Educat,Tulare,437,B,6,0,3,0,81,0,7,2,96,0,0,19,10,12,N/A,N/A,15,50,52,26,13,7,2,1.79\r\n,Robert H. Lewis Continuation,Los Angeles Unified,Los Angeles,437,B,2,2,0,0,94,0,2,0,92,6,0,35,41,4,N/A,N/A,21,69,63,17,9,9,3,1.71\r\n,Summit High (Continuation),Mt. Diablo Unified,Contra Costa,436,B,8,0,0,0,46,0,44,0,59,3,0,21,18,15,N/A,N/A,12,67,35,23,23,19,0,2.27\r\n,East Stanislaus High,Oakdale Joint Unified,Stanislaus,435,1,3,5,0,0,40,0,50,0,65,0,3,8,10,3,N/A,N/A,20,88,23,43,20,11,3,2.29\r\n,Valley Community Day,Hacienda la Puente Unified,Los Angeles,435,B,4,0,4,0,93,0,0,0,93,0,4,18,7,21,N/A,N/A,11,54,33,67,0,0,0,1.67\r\n,La Familia Continuation High,Coachella Valley Unified,Riverside,435,B,0,0,0,0,99,0,1,0,93,2,16,70,13,19,N/A,N/A,17,89,76,22,1,0,1,1.29\r\n,Rancho del Mar High (Continuation),Palos Verdes Peninsula Unified,Los Angeles,434,1,0,0,6,0,33,0,54,0,10,0,0,10,2,17,N/A,N/A,21,77,14,3,43,30,11,3.22\r\n,Valley Oak Junior and Senior High,Oakdale Joint Unified,Stanislaus,433,1,0,2,0,0,19,0,75,2,38,0,0,6,2,8,,,,92,18,30,43,5,5,2.48\r\n,Portola-Butler Continuation High,South Monterey County Joint Un,Monterey,432,B,3,0,0,0,93,0,5,0,63,0,0,43,28,3,N/A,N/A,26,78,58,29,10,3,0,1.58\r\n,Community Day Intermediate and High,Santa Ana Unified,Orange,432,B,0,0,0,0,99,0,0,0,99,0,5,74,13,16,N/A,N/A,17,97,77,20,3,0,0,1.26\r\n,Dewolf Continuation High,Fresno Unified,Fresno,430,B,22,2,1,1,63,0,9,0,100,4,1,12,8,9,N/A,N/A,21,83,33,27,30,6,3,2.18\r\n,Central High,Los Angeles Unified,Los Angeles,427,B,11,2,0,1,82,0,2,1,84,3,1,33,22,25,N/A,N/A,16,61,48,30,12,6,3,1.85\r\n,King (Martin Luther) High (Continuation),Davis Joint Unified,Yolo,426,B,6,0,0,0,47,0,36,3,58,3,0,22,6,8,N/A,N/A,7,78,21,21,29,18,11,2.75\r\nY,Moreno Valley Community Learning Center,Moreno Valley Unified,Riverside,426,B,26,0,1,2,60,0,9,2,85,3,0,22,10,20,N/A,9,19,86,25,34,32,5,4,2.28\r\n,Mt. Olive Alternative Education,Duarte Unified,Los Angeles,426,B,10,0,0,0,88,0,2,0,72,0,2,18,22,17,N/A,N/A,11,97,48,31,19,2,0,1.74\r\n,Orange Grove High,Corona-Norco Unified,Riverside,425,B,3,1,1,0,79,1,14,1,85,1,0,25,18,15,N/A,N/A,12,89,40,27,28,3,2,2\r\n,La Vista Center,San Juan Unified,Sacramento,423,C,21,0,1,0,10,1,66,1,71,1,0,0,0,100,N/A,N/A,8,70,6,65,16,12,2,2.39\r\n,Beach High-Intensive Learning Program,Long Beach Unified,Los Angeles,423,1,29,1,1,0,61,2,4,1,72,0,2,26,21,4,,,,73,36,29,14,18,3,2.21\r\n,Phoenix High,East Side Union High,Santa Clara,423,B,8,0,0,0,73,0,12,4,31,0,0,15,4,0,N/A,N/A,23,73,32,37,21,11,0,2.11\r\nD,Abraxis Charter,Santa Rosa City Schools,Sonoma,423,B,10,0,2,0,53,0,24,12,76,0,0,8,12,12,,,,73,49,30,14,5,3,1.84\r\n,,Imperial County Office of Educ,Imperial,421,B,2,0,0,0,96,0,2,0,48,0,6,36,11,13,9,10,N/A,41,38,20,30,9,3,2.2\r\n,Imperial County Juvenile Hall/Community,Imperial County Office of Educ,Imperial,421,B,2,0,0,0,96,0,2,0,48,0,6,36,11,13,,,,41,38,20,30,9,3,2.2\r\n,Petersen Alternative Center for Educatio,Stanislaus County Office of Ed,Stanislaus,420,B,8,2,4,0,54,0,24,3,52,0,0,26,1,3,N/A,N/A,19,72,33,29,23,9,6,2.24\r\n,Selma Independent,Selma Unified,Fresno,420,1,1,1,1,0,88,0,8,0,76,1,5,31,10,6,,,,85,40,36,17,5,1,1.91\r\n,Discovery Hills and Valley,San Diego County Office of Edu,San Diego,419,C,2,4,0,0,44,0,38,8,16,0,0,0,4,100,8,N/A,N/A,88,30,9,39,11,11,2.66\r\n,San Bernardino County Juvenile Detention,San Bernardino County Office o,San Bernardino,419,B,26,0,1,0,50,0,11,3,91,0,0,21,4,31,,,,86,34,42,15,6,3,2.02\r\n,El Camino High,Cotati-Rohnert Park Unified,Sonoma,418,B,0,4,5,0,48,0,39,2,57,0,0,16,24,8,N/A,N/A,28,93,32,29,36,3,0,2.09\r\n,Steps Community Day,Jurupa Unified,Riverside,418,B,2,0,0,0,88,0,7,0,84,2,0,51,7,23,N/A,N/A,8,88,45,32,16,8,0,1.87\r\n,Napa County Community,Napa County Office of Educatio,Napa,418,B,2,1,0,2,69,1,25,0,71,0,0,32,25,22,,,,92,46,29,19,5,0,1.83\r\n,Alameda County Juvenile Hall/Court,Alameda County Office of Educa,Alameda,415,B,49,0,2,0,36,1,1,11,100,0,0,11,6,27,N/A,N/A,10,64,25,57,11,6,2,2.03\r\n,Boyle Heights Continuation,Los Angeles Unified,Los Angeles,415,B,0,0,0,0,100,0,0,0,97,0,0,46,35,6,N/A,N/A,20,40,44,44,0,8,4,1.84\r\n,Pioneer Continuation High,Shasta Union High,Shasta,414,B,7,8,2,0,10,1,69,3,75,0,0,1,1,39,N/A,N/A,17,76,4,40,36,16,5,2.79\r\n,Nueva Vista High (Continuation),Mt. Diablo Unified,Contra Costa,414,B,3,0,0,6,19,0,68,0,39,0,0,16,3,10,N/A,N/A,11,77,17,25,33,25,0,2.67\r\n,Palisade Glacier High (Continuation),Bishop Unified,Inyo,414,B,0,12,0,0,31,0,46,12,58,0,0,15,8,27,N/A,N/A,9,96,12,36,32,16,4,2.64\r\n,Phoenix High (Continuation),Livermore Valley Joint Unified,Alameda,414,B,4,0,2,2,50,0,39,2,63,0,2,22,9,15,N/A,N/A,6,80,28,28,28,12,5,2.37\r\n,Ramon Alternative Center,Palm Springs Unified,Riverside,414,B,9,0,0,1,75,0,14,1,88,0,0,33,16,7,N/A,N/A,9,90,28,45,21,5,1,2.06\r\n,NU Tech High,Nevada Joint Union High,Nevada,409,B,0,0,0,0,0,7,87,7,40,0,0,0,0,13,N/A,N/A,8,100,0,13,73,13,0,3\r\n,Oakland International High,Oakland Unified,Alameda,409,1,7,0,42,0,41,1,8,0,38,0,0,97,1,1,N/A,N/A,24,64,61,26,6,4,3,1.62\r\n,Simon Rodia Continuation,Los Angeles Unified,Los Angeles,409,B,30,0,0,0,70,0,0,0,72,2,0,22,7,1,N/A,N/A,14,34,82,11,4,4,0,1.29\r\n,Yolo High,Washington Unified,Yolo,406,B,15,2,1,0,51,1,18,6,78,2,0,9,7,14,N/A,N/A,19,94,32,39,27,0,2,2.01\r\n,Community Day/Alternative Education/Spec,Anaheim Union High,Orange,405,B,4,0,2,5,77,0,10,1,82,5,0,40,23,14,N/A,N/A,18,23,37,26,32,5,0,2.05\r\n,Greenfield Community,Greenfield Union,Kern,405,1,22,0,0,1,63,0,10,2,74,2,0,18,20,12,,,,57,37,43,12,4,4,1.94\r\n,,San Francisco County Office of,San Francisco,404,B,36,2,7,4,32,4,8,1,53,6,0,21,9,45,,,,39,20,46,21,9,4,2.33\r\n,\"Kirby, Dorothy Camp\",Los Angeles County Office of E,Los Angeles,403,1,22,0,0,0,69,0,4,6,100,0,0,24,7,52,,,,57,16,39,13,26,6,2.68\r\n,Solano County Community,Solano County Office of Educat,Solano,403,B,29,2,4,4,43,4,9,7,43,0,0,14,2,16,N/A,N/A,15,75,12,40,29,14,5,2.6\r\n,Mendocino County Community,Mendocino County Office of Edu,Mendocino,403,B,2,13,1,1,38,2,38,3,83,0,0,17,7,23,N/A,N/A,12,77,31,28,36,5,0,2.15\r\n,Santa Cruz County Court,Santa Cruz County Office of Ed,Santa Cruz,403,B,1,1,0,0,95,0,2,0,17,0,0,46,12,15,,,,74,51,30,19,0,0,1.67\r\n,New School Community Day,Pajaro Valley Unified,Santa Cruz,403,B,0,0,0,0,100,0,0,0,76,3,5,70,24,8,N/A,N/A,10,22,88,13,0,0,0,1.13\r\n,Lincoln Plus High,San Jose Unified,Santa Clara,402,B,0,0,0,0,71,0,29,0,57,0,0,7,21,14,N/A,N/A,20,100,21,29,14,21,14,2.79\r\n,John J. Cairns Continuation,Lindsay Unified,Tulare,400,B,0,0,0,0,92,0,7,0,98,0,20,47,20,8,N/A,N/A,17,93,63,23,14,0,0,1.52\r\n,San Pasqual Vocational Academy,San Pasqual Valley Unified,Imperial,396,1,0,85,0,0,15,0,0,0,100,0,0,15,0,8,N/A,N/A,16,46,0,83,17,0,0,2.17\r\n,Enterprise Secondary,Madera County Office of Educat,Madera,396,B,6,0,0,0,84,0,6,2,91,0,0,45,13,22,,,,94,58,27,10,2,3,1.65\r\n,Jack London Community Day,Los Angeles Unified,Los Angeles,396,1,5,0,1,0,91,0,2,0,90,7,0,42,32,2,N/A,N/A,14,64,69,21,10,0,0,1.4\r\n,Valley Los Banos Community Day,Merced County Office of Educat,Merced,395,B,2,1,1,0,89,2,4,2,81,0,0,24,6,5,N/A,N/A,20,96,33,37,23,4,3,2.08\r\n,Blue Heron,Konocti Unified,Lake,395,B,2,7,0,0,18,2,67,4,93,2,0,0,2,16,N/A,N/A,26,96,33,53,14,0,0,1.81\r\n,,Mendocino County Office of Edu,Mendocino,394,B,2,15,1,1,35,2,39,5,86,0,0,14,6,25,7,N/A,11,79,26,32,34,9,0,2.25\r\n,North Region Community School of Greater,San Diego County Office of Edu,San Diego,392,1,5,0,0,0,84,0,10,1,96,0,0,50,16,35,,,,100,49,29,11,8,2,1.85\r\n,Tri-C Community Day,Los Angeles Unified,Los Angeles,387,B,33,1,1,0,64,0,1,0,84,2,0,27,21,35,N/A,N/A,13,51,50,36,12,1,1,1.68\r\n,CDS Secondary,Los Angeles Unified,Los Angeles,383,B,16,1,0,0,76,1,6,1,79,2,0,29,11,38,N/A,N/A,8,43,55,26,16,3,1,1.69\r\n,Kings County Community,Kings County Office of Educati,Kings,382,B,10,3,2,1,68,0,11,3,65,0,0,13,1,20,N/A,N/A,20,84,33,34,19,5,9,2.21\r\n,Stockton Intermediate,Stockton Unified,San Joaquin,381,1,24,9,2,0,59,0,6,0,95,2,2,18,8,17,N/A,9,10,88,38,41,16,3,2,1.9\r\n,Valley Atwater Community Day,Merced County Office of Educat,Merced,381,B,9,1,3,0,74,0,14,0,88,0,0,35,20,21,N/A,N/A,17,76,50,32,14,1,3,1.74\r\n,Evergreen Continuation,Los Angeles Unified,Los Angeles,378,B,6,1,0,0,90,0,3,0,82,2,0,31,17,14,N/A,N/A,13,52,43,35,13,9,0,1.87\r\n,Gateway Center,San Mateo County Office of Edu,San Mateo,375,B,9,0,2,0,58,4,11,2,47,0,0,22,1,19,N/A,N/A,16,56,30,40,11,14,5,2.25\r\n,Palmiter Special Education,Sacramento County Office of Ed,Sacramento,375,C,25,3,2,0,14,0,37,19,70,0,0,0,0,100,N/A,N/A,9,11,29,57,0,14,0,2\r\n,Willow Park High,Apple Valley Unified,San Bernardino,369,B,0,0,0,0,30,0,70,0,35,4,0,4,0,0,,,,74,12,18,65,6,0,2.65\r\n,Crossroads Community Day,Lancaster Elementary,Los Angeles,368,B,52,0,0,0,38,0,7,0,95,0,2,16,2,30,7,8,10,98,36,33,26,5,0,2\r\n,S.F. County Opportunity (Hilltop),San Francisco County Office of,San Francisco,367,B,24,2,2,2,67,2,0,0,59,5,0,40,14,21,,,,45,27,46,19,4,4,2.12\r\n,Grossmont Union High Special Education P,Grossmont Union High,San Diego,364,C,9,4,1,1,37,1,46,2,43,8,0,13,9,25,N/A,N/A,6,95,9,35,33,16,7,2.78\r\n,Mountain View High (Continuation),Mojave Unified,Kern,358,B,63,0,0,0,16,0,21,0,84,0,0,11,0,0,N/A,N/A,23,95,28,39,22,6,6,2.22\r\nY,San Joaquin Valley Charter,Parlier Unified,Fresno,355,B,0,0,0,0,96,0,4,0,78,0,24,53,10,4,N/A,N/A,9,78,42,39,11,5,3,1.87\r\n,Lewis Opportunity,Santa Rosa City Schools,Sonoma,354,1,5,16,0,0,53,1,20,3,85,0,1,24,17,9,N/A,N/A,4,60,42,33,18,2,4,1.93\r\n,East County Academy of Learning,Lakeside Union Elementary,San Diego,348,C,8,0,0,0,13,0,71,8,54,0,0,8,0,96,N/A,N/A,1,96,4,57,26,13,0,2.48\r\n,Sunset High,Del Norte County Unified,Del Norte,344,B,1,17,0,0,15,0,65,1,77,8,0,6,3,7,N/A,N/A,14,92,25,42,29,5,0,2.14\r\n,Fresno County Community Day,Fresno County Office of Educat,Fresno,341,B,17,3,8,0,62,0,9,1,73,0,0,22,11,8,N/A,N/A,18,97,50,31,13,5,1,1.76\r\n,Central Juvenile Hall,Los Angeles County Office of E,Los Angeles,339,1,29,1,1,0,60,0,4,5,100,0,0,18,6,25,,,,56,26,42,9,22,1,2.28\r\nY,Charter Alternatives Academy,Visalia Unified,Tulare,337,B,6,1,3,0,73,0,15,1,99,1,3,17,13,28,N/A,N/A,23,93,32,36,21,8,2,2.12\r\n,,Colusa County Office of Educat,Colusa,336,B,0,3,0,0,85,0,12,0,88,0,0,53,9,15,N/A,N/A,10,91,48,23,16,13,0,1.94\r\n,Esperanza High,Cutler-Orosi Joint Unified,Tulare,330,1,0,0,0,0,93,0,5,0,98,2,5,50,17,19,4,N/A,13,79,64,30,3,3,0,1.45\r\n,La Entrada Continuation High,San Juan Unified,Sacramento,321,B,26,0,0,3,19,1,49,0,76,0,0,6,0,14,N/A,N/A,15,51,32,38,11,11,8,2.24\r\n,Phoenix High Community Day,Antelope Valley Union High,Los Angeles,317,B,54,1,0,0,39,0,6,0,15,1,0,14,4,39,N/A,N/A,13,84,31,27,27,12,3,2.28"
  },
  {
    "path": "week-3/height-weight.csv",
    "content": "name,height,weight\r\nJoyce,51.3,50.5\r\nLouise,56.3,77\r\nAlice,56.5,84\r\nJames,57.3,83\r\nThomas,57.5,85\r\nJohn,59,99.5\r\nJane,59.8,84.5\r\nJeffrey,62.5,84\r\nJanet,62.5,112.5\r\nCarol,62.8,102.5\r\nHenry,63.5,102.5\r\nJudy,64.3,90\r\nRobert,64.8,128\r\nBarbara,65.3,98\r\nMary,66.5,112\r\nWilliam,66.5,112\r\nRonald,67,133\r\nAlfred,69,112.5\r\nPhilip,72,150"
  },
  {
    "path": "week-3/titanic.csv",
    "content": "pclass,survived,name,age,embarked,home.dest,room,ticket,boat,gender\r\n1st,1,\"Allen, Miss Elisabeth Walton\",29,Southampton,\"St Louis, MO\",B-5,24160 L221,2,female\r\n1st,0,\"Allison, Miss Helen Loraine\",2,Southampton,\"Montreal, PQ / Chesterville, ON\",C26,,,female\r\n1st,0,\"Allison, Mr Hudson Joshua Creighton\",30,Southampton,\"Montreal, PQ / Chesterville, ON\",C26,,-135,male\r\n1st,0,\"Allison, Mrs Hudson J.C. (Bessie Waldo Daniels)\",25,Southampton,\"Montreal, PQ / Chesterville, ON\",C26,,,female\r\n1st,1,\"Allison, Master Hudson Trevor\",0.9167,Southampton,\"Montreal, PQ / Chesterville, ON\",C22,,11,male\r\n1st,1,\"Anderson, Mr Harry\",47,Southampton,\"New York, NY\",E-12,,3,male\r\n1st,1,\"Andrews, Miss Kornelia Theodosia\",63,Southampton,\"Hudson, NY\",D-7,13502 L77,10,female\r\n1st,0,\"Andrews, Mr Thomas, jr\",39,Southampton,\"Belfast, NI\",A-36,,,male\r\n1st,1,\"Appleton, Mrs Edward Dale (Charlotte Lamson)\",58,Southampton,\"Bayside, Queens, NY\",C-101,,2,female\r\n1st,0,\"Artagaveytia, Mr Ramon\",71,Cherbourg,\"Montevideo, Uruguay\",,,-22,male\r\n1st,0,\"Astor, Colonel John Jacob\",47,Cherbourg,\"New York, NY\",,17754 L224 10s 6d,-124,male\r\n1st,1,\"Astor, Mrs John Jacob (Madeleine Talmadge Force)\",19,Cherbourg,\"New York, NY\",,17754 L224 10s 6d,4,female\r\n1st,1,\"Aubert, Mrs Leontine Pauline\",NA,Cherbourg,\"Paris, France\",B-35,17477 L69 6s,9,female\r\n1st,1,\"Barkworth, Mr Algernon H.\",NA,Southampton,\"Hessle, Yorks\",A-23,,B,male\r\n1st,0,\"Baumann, Mr John D.\",NA,Southampton,\"New York, NY\",,,,male\r\n1st,1,\"Baxter, Mrs James (Helene DeLaudeniere Chaput)\",50,Cherbourg,\"Montreal, PQ\",B-58/60,,6,female\r\n1st,0,\"Baxter, Mr Quigg Edmond\",24,Cherbourg,\"Montreal, PQ\",B-58/60,,,male\r\n1st,0,\"Beattie, Mr Thomson\",36,Cherbourg,\"Winnipeg, MN\",C-6,,,male\r\n1st,1,\"Beckwith, Mr Richard Leonard\",37,Southampton,\"New York, NY\",D-35,,5,male\r\n1st,1,\"Beckwith, Mrs Richard Leonard (Sallie Monypeny)\",47,Southampton,\"New York, NY\",D-35,,5,female\r\n1st,1,\"Behr, Mr Karl Howell\",26,Cherbourg,\"New York, NY\",C-148,,5,male\r\n1st,0,\"Birnbaum, Mr Jakob\",25,Cherbourg,\"San Francisco, CA\",,,-148,male\r\n1st,1,\"Bishop, Mr Dickinson H.\",25,Cherbourg,\"Dowagiac, MI\",B-49,,7,male\r\n1st,1,\"Bishop, Mrs Dickinson H. (Helen Walton)\",19,Cherbourg,\"Dowagiac, MI\",B-49,,7,female\r\n1st,1,\"Bjornstrm-Steffansson, Mr Mauritz Hakan\",28,Southampton,\"Stockholm, Sweden / Washington, DC\",, ,D,male\r\n1st,0,\"Blackwell, Mr Stephen Weart\",45,Southampton,\"Trenton, NJ\",,,-241,male\r\n1st,1,\"Blank, Mr Henry\",39,Cherbourg,\"Glen Ridge, NJ\",A-31,,7,male\r\n1st,1,\"Bonnell, Miss Caroline\",30,Southampton,\"Youngstown, OH\",C-7,,8,female\r\n1st,1,\"Bonnell, Miss Elizabeth\",58,Southampton,\"Birkdale, England Cleveland, Ohio\",C-103,,8,female\r\n1st,0,\"Borebank, Mr John James\",NA,Southampton,\"London / Winnipeg, MB\",D-21/2,,,male\r\n1st,1,\"Bowen, Miss Grace Scott\",45,Cherbourg,\"Cooperstown, NY\",,,4,female\r\n1st,1,\"Bowerman, Miss Elsie Edith\",22,Southampton,\"St Leonards-on-Sea, England Ohio\",,,6,female\r\n1st,1,\"Bradley, Mr George\",NA,Southampton,\"Los Angeles, CA\",,,15,male\r\n1st,0,\"Brady, Mr John Bertram\",41,Southampton,\"Pomeroy, WA\",,,,male\r\n1st,0,\"Brandeis, Mr Emil\",48,Cherbourg,\"Omaha, NE\",,17591 L50 9s 11d,-208,male\r\n1st,0,\"Brewe, Dr Arthur Jackson\",NA,Cherbourg,\"Philadelphia, PA\",,,,male\r\n1st,1,\"Brown, Mrs James Joseph (Margaret Molly\"\" Tobin)\"\"\",44,Cherbourg,\"Denver, CO\",,17610 L27 15s 5d,6,female\r\n1st,1,\"Brown, Mrs John Murray (Caroline Lane Lamson)\",59,Southampton,\"Belmont, MA\",C-101,,D,female\r\n1st,1,\"Bucknell, Mrs William Robert (Emma Eliza Ward)\",60,Cherbourg,\"Philadelphia, PA\",,,8,female\r\n1st,0,\"Butt, Major Archibald Willingham\",45,Southampton,\"Washington, DC\",,,,male\r\n1st,1,\"Calderhead, Mr Edward P.\",NA,Southampton,\"New York, NY\",,,7-May,male\r\n1st,1,\"Candee, Mrs Edward (Helen Churchill Hungerford)\",53,Cherbourg,\"Washington, DC\",,,6,female\r\n1st,1,\"Cardeza, Mrs James Warburton Martinez (Charlotte Wardle Drake)\",58,Cherbourg,\"Germantown, Philadelphia, PA\",B-51/3/5,17755 L512 6s,3,female\r\n1st,1,\"Cardeza, Mr Thomas Drake Martinez\",36,Cherbourg,\"Austria-Hungary / Germantown, Philadelphia, PA\",B-51/3/5,17755 L512 6s,3,male\r\n1st,0,\"Carlsson, Mr Frans Olof\",33,Southampton,\"New York, NY\",,,,male\r\n1st,0,\"Carrau, Mr Francisco M.\",NA,Southampton,\"Montevideo, Uruguay\",,,,male\r\n1st,0,\"Carrau, Mr Jose Pedro\",NA,Southampton,\"Montevideo, Uruguay\",,,,male\r\n1st,1,\"Carter, Mr William Ernest\",36,Southampton,\"Bryn Mawr, PA\",,,C,male\r\n1st,1,\"Carter, Mrs William Ernest (Lucile Polk)\",36,Southampton,\"Bryn Mawr, PA\",,,4,female\r\n1st,1,\"Carter, Miss Lucile Polk\",14,Southampton,\"Bryn Mawr, PA\",,,4,female\r\n1st,1,\"Carter, Master William T. II\",11,Southampton,\"Bryn Mawr, PA\",,,4,male\r\n1st,0,\"Case, Mr Howard Brown\",49,Southampton,\"Ascot, Berkshire / Rochester, NY\",,,,male\r\n1st,1,\"Cassebeer, Mrs Henry Arthur jr (Genevieve Fosdick)\",NA,Cherbourg,\"New York, NY\",,,5,female\r\n1st,0,\"Cavendish, Mr Tyrell William\",36,Southampton,\"Little Onn Hall, Staffs\",,,-172,male\r\n1st,1,\"Cavendish, Mrs Tyrell William Julia Florence Siegel\",NA,Southampton,\"Little Onn Hall, Staffs\",,,6,female\r\n1st,0,\"Chaffee, Mr Herbert Fuller\",46,Southampton,\"Amenia, ND\",,,,male\r\n1st,1,\"Chaffee, Mrs Herbert Fuller (Carrie Constance Toogood)\",47,Southampton,\"Amenia, ND\",,,,female\r\n1st,1,\"Chambers, Mr Norman Campbell\",27,Southampton,\"New York, NY / Ithaca, NY\",,,5,male\r\n1st,1,\"Chambers, Mrs Norman Campbell (Bertha Griggs)\",31,Southampton,\"New York, NY / Ithaca, NY\",,,5,female\r\n1st,1,\"Cherry, Miss Gladys\",NA,Southampton,\"London, England\",,,8,female\r\n1st,1,\"Chevre, Mr Paul\",NA,Cherbourg,\"Paris, France\",,,7,male\r\n1st,1,\"Chibnall (Bowerman), Mrs Edith Martha\",NA,Southampton,\"St Leonards-on-Sea, England Ohio\",,,6,female\r\n1st,0,\"Chisholm, Mr Roderick Robert\",NA,,\"Liverpool, England / Belfast\",,,,male\r\n1st,0,\"Clark, Mr Walter Miller\",27,Cherbourg,\"Los Angeles, CA\",C-87,,,male\r\n1st,1,\"Clark, Mrs Walter Miller (Virginia McDowell)\",26,Cherbourg,\"Los Angeles, CA\",C-87,,4,female\r\n1st,0,\"Clifford, Mr George Quincy\",NA,Southampton,\"Stoughton, MA\",,,,male\r\n1st,0,\"Colley, Mr Edward Pomeroy\",NA,Southampton,\"Victoria, BC\",,,,male\r\n1st,1,\"Compton, Mrs Alexander Taylor (Mary Eliza Ingersoll)\",64,Cherbourg,\"Lakewood, NJ\",,,14,female\r\n1st,0,\"Compton, Mr Alexander Taylor, Jr\",37,Cherbourg,\"Lakewood, NJ\",,,,male\r\n1st,1,\"Compton, Miss Sara Rebecca\",39,Cherbourg,\"Lakewood, NJ\",,,14,female\r\n1st,1,\"Cornell, Mrs Robert Clifford (Malvina Helen Lamson)\",55,Southampton,\"New York, NY\",C-101,,2,female\r\n1st,0,\"Crafton, Mr John Bertram\",NA,Southampton,\"Roachdale, IN\",,,,male\r\n1st,0,\"Crosby, Captain Edward Gifford\",70,Southampton,\"Milwaukee, WI\",,,-269,male\r\n1st,1,\"Crosby, Mrs Edward Gifford (Catherine Elizabeth Halstead)\",69,Southampton,\"Milwaukee, WI\",,,5,female\r\n1st,1,\"Crosby, Miss Harriet R.\",36,Southampton,\"Milwaukee, WI\",,,5,female\r\n1st,0,\"Cumings, Mr John Bradley\",39,Cherbourg,\"New York, NY\",C-85,,,male\r\n1st,1,\"Cumings, Mrs John Bradley (Florence Briggs Thayer)\",38,Cherbourg,\"New York, NY\",C-85,,4,female\r\n1st,1,\"Daly, Mr Peter Denis \",NA,Southampton,\"Lima, Peru\",,,A,male\r\n1st,1,\"Daniel, Mr Robert Williams\",27,Southampton,\"Philadelphia, PA\",,,7,male\r\n1st,0,\"Davidson, Mr Thornton\",31,Southampton,\"Montreal, PQ\",,,,male\r\n1st,1,\"Davidson, Mrs Thornton (Orian Hays)\",27,Southampton,\"Montreal, PQ\",,,3,female\r\n1st,1,\"de Villiers, Madame Berthe\",NA,Cherbourg,\"Belgium  Montreal, PQ\",,,6,female\r\n1st,1,\"Dick, Mr Albert Adrian\",31,Cherbourg,\"Calgary, AB\",,,3,male\r\n1st,1,\"Dick, Mrs Albert Adrian Vera Gillespie\",17,Cherbourg,\"Calgary, AB\",,,3,female\r\n1st,1,\"Dodge, Dr. Washington\",NA,Southampton,\"San Francisco, CA\",,,13,male\r\n1st,1,\"Dodge, Mrs Washington (Ruth Vidaver)\",NA,Southampton,\"San Francisco, CA\",,,7-May,female\r\n1st,1,\"Dodge, Master Washington\",4,Southampton,\"San Francisco, CA\",,,7-May,male\r\n1st,1,\"Douglas, Mrs Frederick Charles (Suzette Baxter)\",27,Cherbourg,\"Montreal, PQ\",,,6,female\r\n1st,0,\"Douglas, Mr Walter Donald\",50,Cherbourg,\"Deephaven, MN / Cedar Rapids, IA\",,,-62,male\r\n1st,1,\"Douglas, Mrs Walter Donald (Mahala Dutton)\",48,Cherbourg,\"Deephaven, MN / Cedar Rapids, IA\",,,2,female\r\n1st,1,\"Duff Gordon, Sir Cosmo Edmund\",49,Cherbourg,London / Paris,,11755 L39 12s,1,male\r\n1st,1,\"Duff Gordon, Lady (Lucille Wallace Sutherland)\",48,Cherbourg,London / Paris,,17485 L56 18s 7d,1,female\r\n1st,0,\"Dulles, Mr William Crothers\",39,Cherbourg,\"Philadelphia, PA\",,,-133,male\r\n1st,1,\"Earnshaw, Mrs Boulton (Olive Potter)\",23,Cherbourg,\"Mt Airy, Philadelphia, PA\",,,7,female\r\n1st,1,\"Eustis, Miss Elizabeth Mussey\",53,Cherbourg,\"Brookline, MA\",,,4,female\r\n1st,0,\"Evans, Miss Edith Corse\",36,Cherbourg,\"New York, NY\",,,,female\r\n1st,1,\"Flegenheim, Mrs Alfred (Antoinette)\",NA,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Flynn, Mr John Irving\",NA,Southampton,\"Brooklyn, NY\",,,7-May,male\r\n1st,0,\"Foreman, Mr Benjamin Laventall\",30,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Fortune, Miss Alice Elizabeth\",24,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,0,\"Fortune, Mr Charles Alexander\",19,Southampton,\"Winnipeg, MB\",,,,male\r\n1st,1,\"Fortune, Miss Ethel Flora\",28,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,1,\"Fortune, Miss Mabel\",23,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,0,\"Fortune, Mr Mark\",64,Southampton,\"Winnipeg, MB\",,,,male\r\n1st,1,\"Fortune, Mrs Mark (Mary McDougald)\",60,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,0,\"Franklin, Mr Thomas Parham\",NA,Southampton,\"Westcliff-on-Sea, Essex\",,,,male\r\n1st,1,\"Frauenthal, Dr Henry William\",49,Cherbourg,\"New York, NY\",,,5,male\r\n1st,1,\"Frauenthal, Mrs Henry William (Clara Heinsheimer)\",NA,Cherbourg,\"New York, NY\",,,5,female\r\n1st,1,\"Frauenthal, Mr Isaac Gerald\",44,Southampton,\"New York, NY\",,,5,male\r\n1st,1,\"Frolicher, Miss Marguerite\",22,Cherbourg,\"Zurich, Switzerland\",,,5,female\r\n1st,1,\"Frolicher-Stehli, Mr Maxmillian\",60,Cherbourg,\"Zurich, Switzerland\",,,5,male\r\n1st,1,\"Frolicher-Stehli, Mrs Maxmillian (Margaretha Emerentia Stehli)\",48,Cherbourg,\"Zurich, Switzerland\",,,5,female\r\n1st,0,\"Futrelle, Mr Jacques\",37,Southampton,\"Scituate, MA\",,,,male\r\n1st,1,\"Futrelle, Mrs Jacques (May Peel)\",35,Southampton,\"Scituate, MA\",,,9,female\r\n1st,0,\"Gee, Mr Arthur H.\",47,Southampton,\"St Anne's-on-Sea, Lancashire\",,,-275,male\r\n1st,1,\"Gibson, Miss Dorothy\",22,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Gibson, Mrs Leonard (Pauline C. Boeson)\",45,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Goldenberg, Mr Samuel L.\",49,Cherbourg,\"Paris, France / New York, NY\",,,5,male\r\n1st,1,\"Goldenberg, Mrs Samuel L. (Edwiga Grabowsko)\",NA,Cherbourg,\"Paris, France / New York, NY\",,,5,female\r\n1st,0,\"Goldschmidt, Mr George B.\",71,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Gracie, Colonel Archibald IV\",54,Southampton,\"Washington, DC\",C-51,113780 L28 10s,B,male\r\n1st,0,\"Graham, Mr George Edward\",38,Southampton,\"Winnipeg, MB\",,,-147,male\r\n1st,1,\"Graham, Miss Margaret Edith\",19,Southampton,\"Greenwich, CT\",C-125,17582 L153 9s 3d,3,female\r\n1st,1,\"Graham, Mrs William Thompson (Edith Junkins)\",58,Southampton,\"Greenwich, CT\",C-91,17582 L153 9s 3d,3,female\r\n1st,1,\"Greenfield, Mrs Leo David (Blanche Strouse)\",45,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Greenfield, Mr William Bertram\",23,Cherbourg,\"New York, NY\",,,7,male\r\n1st,0,\"Guggenheim, Mr Benjamin\",46,Cherbourg,\"New York, NY\",B-82/4,17593 L56 18s 7d,,male\r\n1st,1,\"Harder, Mr George Achilles\",25,Cherbourg,\"Brooklyn, NY\",,,5,male\r\n1st,1,\"Harder, Mrs George Achilles (Dorothy Annan)\",21,Cherbourg,\"Brooklyn, NY\",,,5,female\r\n1st,1,\"Harper, Mr Henry Sleeper\",48,Cherbourg,\"New York, NY\",,,3,male\r\n1st,1,\"Harper, Mrs Henry Sleeper (Myna Haxtun)\",49,Cherbourg,\"New York, NY\",,,3,female\r\n1st,0,\"Harris, Mr Henry Birkhardt\",45,Southampton,\"New York, NY\",C-83,36973 L83 9s 6d,,male\r\n1st,1,\"Harris, Mrs Henry Birkhardt (Irene Wallach)\",36,Southampton,\"New York, NY\",C-83,36973 L83 9s 6d,D,female\r\n1st,1,\"Hawksford, Mr Walter James\",NA,Southampton,\"Kingston, Surrey\",,,3,male\r\n1st,0,\"Hays, Mr Charles Melville\",55,Southampton,\"Montreal, PQ\",,,-307,male\r\n1st,1,\"Hays, Mrs Charles Melville (Clara Jennings Gregg)\",52,Southampton,\"Montreal, PQ\",,,3,female\r\n1st,1,\"Hays, Miss Margaret Bechstein\",24,Southampton,\"New York, NY\",,,7,female\r\n1st,0,\"Head, Mr Christopher\",NA,Southampton,London / Middlesex,,,,male\r\n1st,0,\"Hilliard, Mr Herbert Henry\",NA,Southampton,\"Brighton, MA\",,,,male\r\n1st,0,\"Hipkins, Mr William Edward\",NA,Southampton,London / Birmingham,,,,male\r\n1st,1,\"Hippach, Miss Jean Gertrude\",16,Cherbourg,\"Chicago, IL\",B-18,111361 L57 19s 7d,4,female\r\n1st,1,\"Hippach, Mrs Louis Albert (Ida Sophia Fischer)\",44,Cherbourg,\"Chicago, IL\",B-18,111361 L57 19s 7d,4,female\r\n1st,1,\"Hogeboom, Mrs John C. (Anna Andrews)\",51,Southampton,\"Hudson, NY\",D-?,13502 L77,10,female\r\n1st,0,\"Holverson, Mr Alexander Oskar\",42,Southampton,\"New York, NY\",,,-38,male\r\n1st,1,\"Holverson, Mrs Alexander Oskar (Mary Aline Towner)\",35,Southampton,\"New York, NY\",,,,female\r\n1st,1,\"Homer, Mr Harry\",35,Cherbourg,\"Indianapolis, IN\",,,15,male\r\n1st,1,\"Hoyt, Mr Frederick Maxfield\",38,Southampton,\"New York, NY /  Stamford CT\",C-93,,D,male\r\n1st,1,\"Hoyt, Mrs Frederick Maxfield (Jane Anne Forby)\",35,Southampton,\"New York, NY /  Stamford CT\",C-93,,D,female\r\n1st,0,\"Hoyt, Mr William F.\",NA,Cherbourg,\"New York, NY\",,,14,male\r\n1st,0,\"Isham, Miss Anne Elizabeth\",50,Cherbourg,\"Paris, France New York, NY\",C-49,,,female\r\n1st,1,\"Ismay, Mr Joseph Bruce\",49,Southampton,Liverpool,B-52/4/6,112058 Complimentary,C,male\r\n1st,0,\"Jones, Mr Charles Cresson\",46,Southampton,\"Bennington, VT\",,,-80,male\r\n1st,0,\"Julian, Mr Henry Forbes\",NA,Southampton,London,,,,male\r\n1st,0,\"Kent, Mr Edward Austin\",58,Cherbourg,\"Buffalo, NY\",,,-258,male\r\n1st,0,\"Kenyon, Mr Frederick R.\",41,Southampton,\"Southington / Noank, CT\",,,,male\r\n1st,1,\"Kenyon, Mrs Frederick R. (Marion)\",NA,Southampton,\"Southington / Noank, CT\",,,8,female\r\n1st,1,\"Kimball, Mr Edwin Nelson Jr.\",42,Southampton,\"Boston, MA\",,,5,male\r\n1st,1,\"Kimball, Mrs Edwin Nelson Jr. (Gertrude Parsons)\",40,Southampton,\"Boston, MA\",,,5,female\r\n1st,0,\"Klaber, Mr Herman\",NA,Southampton,\"Portland, OR\",,,,male\r\n1st,1,\"Leader, Dr Alice Farnham\",NA,Southampton,\"New York, NY\",,,8,female\r\n1st,0,\"Lewy, Mr Ervin G.\",NA,Cherbourg,\"Chicago, IL\",,,,male\r\n1st,0,\"Lindeberg-Lind, Mr Erik Gustaf\",42,Southampton,\"Stockholm, Sweden\",,,,male\r\n1st,1,\"Lindstrom, Mrs Carl Johan (Sigrid Posse)\",55,Cherbourg,\"Stockholm, Sweden\",,,6,female\r\n1st,1,\"Lines, Mrs Ernest H. (Elizabeth Lindsey James)\",50,Cherbourg,\"Paris, France\",,,9,female\r\n1st,1,\"Lines, Miss Mary Conover\",16,Cherbourg,\"Paris, France\",,,9,female\r\n1st,0,\"Lingrey, Mr Edward\",NA,,,,,,male\r\n1st,0,\"Long, Mr Milton Clyde\",29,Southampton,\"Springfield, MA\",,,-126,male\r\n1st,1,\"Longley, Miss Gretchen Fiske\",21,Southampton,\"Hudson, NY\",D-?,13502 L77,10,female\r\n1st,0,\"Loring, Mr Joseph Holland\",30,Southampton,\"London / New York, NY\",,,,male\r\n1st,1,\"Madill, Miss Georgette Alexandra\",15,Southampton,\"St Louis, MO\",B-5,24160 L221,2,female\r\n1st,0,\"Maguire, Mr John Edward\",30,Southampton,\"Brockton, MA\",,,,male\r\n1st,1,\"Marechal, Mr Pierre\",NA,Cherbourg,\"Paris, France\",,,7,male\r\n1st,0,\"Marvin, Mr Daniel Warner\",NA,Southampton,\"New York, NY\",,,,male\r\n1st,1,\"Marvin, Mrs Daniel Warner (Mary Graham Carmichael Farquarson)\",NA,Southampton,\"New York, NY\",,,,female\r\n1st,0,\"McCaffry, Mr Thomas Francis\",46,Cherbourg,\"Vancouver, BC\",,,-292,male\r\n1st,0,\"McCarthy, Mr Timothy J.\",54,Southampton,\"Dorchester, MA\",,,-175,male\r\n1st,1,\"McGough, Mr James R.\",36,Southampton,\"Philadelphia, PA\",,,7,male\r\n1st,0,\"Meyer, Mr Edgar Joseph\",28,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Meyer, Mrs Edgar Joseph (Leila Saks)\",NA,Cherbourg,\"New York, NY\",,,6,female\r\n1st,0,\"Millet, Mr Francis Davis\",65,Southampton,\"East Bridgewater, MA\",,,-249,male\r\n1st,1,\"Minahan, Miss Daisy E.\",33,Queenstown,\"Green Bay, WI\",,,14,female\r\n1st,0,\"Minahan, Dr William Edward\",44,Queenstown,\"Fond du Lac, WI\",,,-230,male\r\n1st,1,\"Minahan, Mrs William Edward (Lillian E. Thorpe)\",37,Queenstown,\"Fond du Lac, WI\",,,14,female\r\n1st,1,\"Mock, Mr Philip E.\",NA,Cherbourg,\"New York, NY\",,,11,male\r\n1st,0,\"Molson, Mr Harry Markland\",55,Southampton,\"Montreal, PQ\",,,,male\r\n1st,0,\"Moore, Mr Clarence Bloomfield\",47,Southampton,\"Washington, DC\",,,,male\r\n1st,0,\"Natsch, Mr Charles H.\",36,Cherbourg,\"Brooklyn, NY\",,,,male\r\n1st,0,\"Newell, Mr Arthur Webster\",58,Cherbourg,\"Lexington, MA\",,,-122,male\r\n1st,1,\"Newell, Miss Madeleine\",31,Cherbourg,\"Lexington, MA\",,,6,female\r\n1st,1,\"Newell, Miss Marjorie\",23,Cherbourg,\"Lexington, MA\",,,6,female\r\n1st,1,\"Newsom, Miss Helen Monypeny\",19,Southampton,\"New York, NY\",,,5,female\r\n1st,0,\"Nicholson, Mr Arthur Ernest\",64,Southampton,\"Isle of Wight, England\",,,-263,male\r\n1st,1,\"Omont, Mr A. Fernand\",NA,Cherbourg,\"Paris, France\",,,7,male\r\n1st,0,\"Ostby, Mr Engelhart Cornelius\",64,Cherbourg,\"Providence, RI\",,,-234,male\r\n1st,1,\"Ostby, Miss Helen Raghnild\",22,Cherbourg,\"Providence, RI\",,,5,female\r\n1st,0,\"Ovies y Rodriguez, Mr Servando\",28,,\"?Havana, Cuba\",,,-189,male\r\n1st,0,\"Parr, Mr William Henry Marsh\",NA,,Belfast,,,,male\r\n1st,0,\"Partner, Mr Austin\",NA,Southampton,\"Surbiton Hill, Surrey\",,,-166,male\r\n1st,0,\"Payne, Mr Vivian Ponsonby\",22,Southampton,\"Montreal, PQ\",,,,male\r\n1st,0,\"Pears, Mr Thomas\",NA,Southampton,\"Isleworth, England\",,,,male\r\n1st,1,\"Pears, Mrs Thomas (Edith)\",NA,Southampton,\"Isleworth, England\",,,8,female\r\n1st,0,\"Penasco, Mr Victor de Satode\",18,Cherbourg,\"Madrid, Spain\",,,,male\r\n1st,1,\"Penasco, Mrs Victor de Satode (Josefa de Soto)\",17,Cherbourg,\"Madrid, Spain\",,,8,female\r\n1st,1,\"Peuchen, Major Arthur Godfrey\",52,Southampton,\"Toronto, ON\",C-104,,6,male\r\n1st,0,\"Porter, Mr Walter Chamberlain\",46,Southampton,\"Worcester, MA\",,,-207,male\r\n1st,1,\"Potter, Mrs Thomas, Jr. (Lily Alexenia Wilson)\",56,Cherbourg,\"Mt Airy, Philadelphia, PA\",,,7,female\r\n1st,0,\"Reuchlin, Jonkheer John George\",NA,Southampton,\"Rotterdam, Netherlands\",,,,male\r\n1st,1,\"Rheims, Mr George Lucien\",NA,Cherbourg,\"Paris /  New York, NY\",,17604 L39 12s,A,male\r\n1st,1,\"Robert, Mrs Edward Scott (Elisabeth Walton McMillan)\",43,Southampton,\"St Louis, MO\",B-3,24160 L221,2,female\r\n1st,0,\"Roebling, Mr Washington Augustus 2nd\",31,Southampton,\"Trenton, NJ\",,,,male\r\n1st,1,\"Romaine, Mr Charles Hallace\",NA,Southampton,\"New York, NY\",,,15,male\r\n1st,0,\"Rood, Mr Hugh R.\",NA,Southampton,\"Seattle, WA\",,,,male\r\n1st,1,\"Rosenbaum (Russell), Miss Edith Louise\",33,Cherbourg,\"Paris, France\",A-11,17613 L27 14s 5d,11,female\r\n1st,0,\"Ross, Mr John Hugo\",NA,Cherbourg,\"Winnipeg, MB\",,,,male\r\n1st,1,\"Rothes, the Countess of (Noel Lucy Martha Dyer-Edwardes)\",27,Southampton,\"London  Vancouver, BC\",,,8,female\r\n1st,0,\"Rothschild, Mr Martin\",55,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Rothschild, Mrs Martin (Elizabeth L. Barrett)\",54,Cherbourg,\"New York, NY\",,,6,female\r\n1st,0,\"Rowe, Mr Alfred G.\",NA,Southampton,London,,,-109,male\r\n1st,0,\"Ryerson, Mr Arthur Larned\",61,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,,male\r\n1st,1,\"Ryerson, Mrs Arthur Larned (Emily Maria Borie)\",48,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,female\r\n1st,1,\"Ryerson, Miss Emily Borie\",18,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,female\r\n1st,1,\"Ryerson, Master John Borie\",13,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,male\r\n1st,1,\"Ryerson, Miss Susan (Suzette) Parker\",21,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,female\r\n1st,1,\"Saalfeld, Mr Adolphe\",NA,Southampton,\"Manchester, England\",,,3,male\r\n1st,1,\"Salomon, Mr Abraham L.\",NA,Southampton,\"New York, NY\",,,1,male\r\n1st,1,\"Schabert, Mrs Paul (Emma Mock)\",NA,Cherbourg,\"New York, NY\",,,11,female\r\n1st,1,\"Seward, Mr Frederic Kimber\",34,Southampton,\"New York, NY\",,,7,male\r\n1st,1,\"Shutes, Miss Elizabeth W.\",40,Southampton,\"New York, NY / Greenwich CT\",C-125,17582 L153 9s 3d,3,female\r\n1st,1,\"Silverthorne, Mr Spencer Victor\",36,Southampton,\"St Louis, MO\",,,5,male\r\n1st,0,\"Silvey, Mr William Baird\",50,,\"Duluth, MN\",,,,male\r\n1st,1,\"Silvey, Mrs William Baird (Alice Munger)\",39,,\"Duluth, MN\",,,,female\r\n1st,1,\"Simonius-Blumer, Col Alfons\",56,,\"Basel, Switzerland\",,,3,male\r\n1st,1,\"Sloper, Mr William Thompson\",28,Southampton,\"New Britain, CT\",,,7,male\r\n1st,0,\"Smart, Mr John Montgomery\",56,Southampton,\"New York, NY\",,,,male\r\n1st,0,\"Smith, Mr James Clinch\",56,Cherbourg,\"St James, Long Island, NY\",,,,male\r\n1st,0,\"Smith, Mr Lucien Philip\",24,Southampton,\"Huntington, WV\",,,,male\r\n1st,1,\"Smith, Mrs Lucien Philip (Mary Eloise Hughes\",18,Southampton,\"Huntington, WV\",,,6,female\r\n1st,0,\"Smith, Mr Richard William\",NA,Southampton,\"Streatham, Surrey\",,,,male\r\n1st,1,\"Snyder, Mr John Pillsbury\",24,Southampton,\"Minneapolis, MN\",,,7,male\r\n1st,1,\"Snyder, Mrs John Pillsbury (Nelle Stevenson)\",23,Southampton,\"Minneapolis, MN\",,,7,female\r\n1st,1,\"Spedden, Mr Frederick Oakley\",45,Cherbourg,\"Tuxedo Park, NY\",,,3,male\r\n1st,1,\"Spedden, Mrs Frederick Oakley (Margaretta Corning Stone)\",40,Cherbourg,\"Tuxedo Park, NY\",,,3,female\r\n1st,1,\"Spedden, Master Robert Douglas\",6,Cherbourg,\"Tuxedo Park, NY\",,,3,male\r\n1st,0,\"Spencer, Mr William Augustus\",57,Cherbourg,\"Paris, France\",,,,male\r\n1st,1,\"Spencer, Mrs William Augustus (Marie Eugenie)\",NA,Cherbourg,\"Paris, France\",,,6,female\r\n1st,1,\"Staehlin, Dr Max\",32,Cherbourg,\"Basel, Switzerland\",,,3,male\r\n1st,0,\"Stead, Mr William Thomas\",62,Southampton,\"Wimbledon Park, London / Hayling Island, Hants\",C-89,,,male\r\n1st,1,\"Stengel, Mr Charles Emil Henry\",54,Cherbourg,\"Newark, NJ\",,,1,male\r\n1st,1,\"Stengel, Mrs Charles Emil Henry (Annie May Morris)\",43,Cherbourg,\"Newark, NJ\",,,5,female\r\n1st,1,\"Stephenson, Mrs Walter Bertram (Martha Eustis)\",52,,\"Haverford, PA\",,,4,female\r\n1st,0,\"Stewart, Mr Albert A.\",NA,Cherbourg,\"Gallipolis, Ohio / ? Paris / New York\",,,,male\r\n1st,1,\"Stone, Mrs George Nelson (Martha E.)\",62,,\"Cincinatti, OH\",,,6,female\r\n1st,0,\"Straus, Mr Isidor\",67,Southampton,\"New York, NY\",,17483 L221 15s 7d,-96,male\r\n1st,0,\"Straus, Mrs Isidor (Ida Blun)\",63,Southampton,\"New York, NY\",,17483 L221 15s 7d,,female\r\n1st,0,\"Sutton, Mr Frederick\",61,Southampton,\"Haddenfield, NJ\",,,-46,male\r\n1st,1,\"Swift, Mrs Frederick Joel (Margaret Welles Barron)\",46,Southampton,\"Brooklyn, NY\",,,8,female\r\n1st,0,\"Taussig, Mr Emil\",52,Southampton,\"New York, NY\",,,,male\r\n1st,1,\"Taussig, Mrs Emil (Tillie Mandelbaum)\",39,Southampton,\"New York, NY\",,,8,female\r\n1st,1,\"Taussig, Miss Ruth\",18,Southampton,\"New York, NY\",,,8,female\r\n1st,1,\"Taylor, Mr Elmer Zebley\",48,Southampton,\"London /  East Orange, NJ\",C-126,,5,male\r\n1st,1,\"Taylor, Mrs Elmer Zebley (Juliet Cummins Wright)\",NA,Southampton,\"London /  East Orange, NJ\",C-126,,5,female\r\n1st,0,\"Thayer, Mr John Borland\",49,Cherbourg,\"Haverford, PA\",,,,male\r\n1st,1,\"Thayer, Mrs John Borland (Marian Longstreth Morris)\",39,Cherbourg,\"Haverford, PA\",,,4,female\r\n1st,1,\"Thayer, Mr John Borland, jr.\",17,Cherbourg,\"Haverford, PA\",,,B,male\r\n1st,0,\"Thorne, Mr George (alias of: Mr George Rosenshine)\",46,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Thorne, Mrs Gertrude Maybelle\",NA,Cherbourg,\"New York, NY\",,,D,female\r\n1st,1,\"Tucker, Mr Gilbert Milligan, jr\",31,Cherbourg,\"Albany, NY\",,,7,male\r\n1st,0,\"Uruchurtu, Mr Manuel E.\",NA,Cherbourg,\"Mexico City, Mexico\",,,,male\r\n1st,0,\"Van Derhoef, Mr Wyckoff\",61,Southampton,\"Brooklyn, NY\",,,-245,male\r\n1st,0,\"Walker, Mr William Anderson\",47,Southampton,\"East Orange, NJ\",,,,male\r\n1st,0,\"Warren, Mr Frank Manley\",64,Cherbourg,\"Portland, OR\",,,,male\r\n1st,1,\"Warren, Mrs Frank Manley (Anna S. Atkinson)\",60,Cherbourg,\"Portland, OR\",,,5,female\r\n1st,0,\"Weir, Col John\",60,Southampton,\"England Salt Lake City, Utah\",,,,male\r\n1st,1,\"White, Mrs J. Stuart (Ella Holmes)\",55,Cherbourg,\"New York, NY / Briarcliff Manor NY\",,,8,female\r\n1st,0,\"White, Mr Percival Wayland\",54,Southampton,\"Brunswick, ME\",,,,male\r\n1st,0,\"White, Mr Richard Frasar\",21,Southampton,\"Brunswick, ME\",,,-169,male\r\n1st,0,\"Wick, Mr George Dennick\",57,Southampton,\"Youngstown, OH\",,,,male\r\n1st,1,\"Wick, Mrs George Dennick (Martha Hitchcock)\",45,Southampton,\"Youngstown, OH\",,,8,female\r\n1st,1,\"Wick, Miss Mary Natalie\",31,Southampton,\"Youngstown, OH\",C-7,,8,female\r\n1st,0,\"Widener, Mr George Dunton\",50,Cherbourg,\"Elkins Park, PA\",,,,male\r\n1st,1,\"Widener, Mrs George Dunton (Eleanor Elkins)\",50,Cherbourg,\"Elkins Park, PA\",,,4,female\r\n1st,0,\"Widener, Mr Harry Elkins\",27,Cherbourg,\"Elkins Park, PA\",,,,male\r\n1st,1,\"Willard, Miss Constance\",20,Southampton,\"Duluth, MN\",,,,female\r\n1st,0,\"Williams, Mr Charles Duane\",51,Cherbourg,\"Geneva, Switzerland / Radnor, PA\",,,,male\r\n1st,0,\"Williams, Mr Fletcher Lambert\",NA,Southampton,\"London, England\",,,,male\r\n1st,1,\"Williams, Mr Richard Norris II\",21,Cherbourg,\"Geneva, Switzerland / Radnor, PA\",,,A,male\r\n1st,1,\"Woolner, Mr Hugh\",NA,Southampton,\"London, England\",,,D,male\r\n1st,0,\"Wright, Mr George\",NA,Southampton,\"Halifax, NS\",,,,male\r\n1st,1,\"Young, Miss Marie Grice\",36,Cherbourg,\"New York, NY / Washington, DC\",,,8,female\r\n1st,1,\"Barber, Ms \",NA,Southampton,,,,,female\r\n1st,1,\"Bazzani, Ms Albina\",NA,Cherbourg,,,,,female\r\n1st,1,\"Bidois, Miss Rosalie\",NA,Cherbourg,,,17754,,female\r\n1st,1,\"Bird, Ms Ellen\",NA,Southampton,,C-97,17483,,female\r\n1st,1,\"Bissetti, Ms Amelia\",NA,Cherbourg,,C-99,,,female\r\n1st,1,\"Burns, Ms Elizabeth Margaret\",NA,Cherbourg,,,,,female\r\n1st,1,\"Chaudanson, Ms \tVictorine\",NA,Cherbourg,,,17608,,female\r\n1st,1,\"Cleaver, Ms Alice\",NA,Southampton,,C22,,11,female\r\n1st,1,\"Daniels, Ms Sarah\",NA,Southampton,,C-22,,8,female\r\n1st,1,\"Endres, Miss Caroline Louise\",NA,Cherbourg,\"New York, NY\",C-45,17754 L224 10s 6d,4,female\r\n1st,0,\"Farthing, Mr John\",NA,Southampton,,C-55 (?C-95),17483,,male\r\n1st,0,\"Fleming, Ms Margaret\",NA,Cherbourg,,,,4,female\r\n1st,1,\"Francatelli, Ms Laura Mabel\",NA,Cherbourg,,,17485,,female\r\n1st,0,\"Fry, Mr Richard\",NA,Southampton,,B-102,112058,,male\r\n1st,1,\"Geiger, Miss Emily \",NA,Cherbourg,,,,,female\r\n1st,0,\"Giglio, Mr Victor\",NA,Cherbourg,,B-86,17593,,male\r\n1st,0,\"Harrington, Mr Charles\",NA,Southampton,,,,,male\r\n1st,0,\"Harrison, Mr William \tHenry\",40,Southampton,,,112059,-110,male\r\n1st,0,\"Hassah, Mr Hamad\",NA,Cherbourg,,,,,male\r\n1st,1,\"Icabad (Icabod), Ms\",NA,,,,,,female\r\n1st,0,\"Keeping, Mr Edwin\",32,Cherbourg,,,,-45,male\r\n1st,1,\"Kenchen, Ms Amelia\",NA,Southampton,,,,2,female\r\n1st,1,\"LeRoy, Miss Berthe\",NA,Cherbourg,,,,2,female\r\n1st,0,\"Lesneur, Mr Gustave\",NA,Cherbourg,,B-?,,,male\r\n1st,1,\"Maloney, Ms\",NA,Southampton,,,,8,female\r\n1st,0,\"Oliva, Mlle\",NA,Cherbourg,,,,,female\r\n1st,1,\"Pericault, Ms\",NA,Southampton,,,,,female\r\n1st,0,\"Ringhini, Mr Sante\",33,Cherbourg,,,,-232,male\r\n1st,0,\"Robbins, Mr Victor\",NA,Cherbourg,,C-62,17754,,male\r\n1st,1,\"Segesser, Mlle. Emma\",NA,Cherbourg,,,,,female\r\n1st,0,\"Seredeca, Ms\",NA,Southampton,,,,,female\r\n1st,0,\"Ward, Ms Anna\",NA,Cherbourg,,,,,female\r\n1st,1,\"Wilson, Ms Helen\",NA,Cherbourg,,,,,female\r\n2nd,0,\"Abelson, Mr Samuel\",30,Cherbourg,\"Russia New York, NY\",,,,male\r\n2nd,1,\"Abelson, Mrs Samuel (Anna)\",28,Cherbourg,\"Russia New York, NY\",,,12,female\r\n2nd,0,\"Andrew, Mr Edgar Samuel\",18,Southampton,\"Buenos Aires, Argentina / New Jersey, NJ\",,,,male\r\n2nd,0,\"Andrew, Mr Frank\",NA,Southampton,\"Cornwall, England Houghton, MI\",,,,male\r\n2nd,0,\"Angle, Mr William A.\",34,Southampton,\"Warwick, England\",,,,male\r\n2nd,1,\"Angle, Mrs William A. (Florence)\",32,Southampton,\"Warwick, England\",,,,female\r\n2nd,0,\"Ashby, Mr John\",57,Southampton,\"West Hoboken, NJ\",,,,male\r\n2nd,0,\"Bailey, Mr Percy Andrew\",18,Southampton,\"Penzance, Cornwall / Akron, OH\",,,,male\r\n2nd,0,\"Baimbrigge, Mr Charles R.\",23,Southampton,Guernsey,,,,male\r\n2nd,1,\"Balls, Mrs Ada E. Hall\",36,Southampton,\"Bristol, Avon / Jacksonville, FL\",,,,female\r\n2nd,0,\"Banfield, Mr Frederick J.\",28,Southampton,\"Plymouth, Dorset / Houghton, MI\",,,,male\r\n2nd,0,\"Bateman, Rev Robert James\",51,Southampton,\"Jacksonville, FL\",,,-174,male\r\n2nd,1,\"Beane, Mr Edward\",32,Southampton,\"Norwich / New York, NY\",,,,male\r\n2nd,1,\"Beane, Mrs Edward (Ethel Clarke)\",19,Southampton,\"Norwich / New York, NY\",,,,female\r\n2nd,0,\"Beauchamp, Mr Henry James\",28,Southampton,England,,,,male\r\n2nd,1,\"Becker, Mrs Allen Oliver (Nellie E. Baumgardner)\",36,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,11,female\r\n2nd,1,\"Becker, Miss Marion Louise\",4,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,11,female\r\n2nd,1,\"Becker, Master Richard F.\",1,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,11,male\r\n2nd,1,\"Becker, Miss Ruth Elizabeth\",12,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,13,female\r\n2nd,1,\"Beesley, Mr Lawrence\",34,Southampton,London,D-56,248698 L13,13,male\r\n2nd,1,\"Bentham, Miss Lilian W.\",19,Southampton,\"Rochester, NY\",,,12,female\r\n2nd,0,\"Berriman, Mr William S.\",23,Southampton,\"St Ives, Cornwall / Calumet, MI\",,,,male\r\n2nd,0,\"Botsford, Mr William Hull\",26,Southampton,\"Elmira, NY / Orange, NJ\",,,,male\r\n2nd,0,\"Bowenur, Mr Solomon\",NA,Southampton,London,,,,male\r\n2nd,0,\"Bracken, Mr James H.\",27,Southampton,\"Lake Arthur, Chavez County, NM\",,,,male\r\n2nd,1,\"Brown, Miss Edith E.\",15,Southampton,\"Cape Town, South Africa / Seattle, WA\",,,14,female\r\n2nd,0,\"Brown, Mr Thomas William Solomon\",45,Southampton,\"Cape Town, South Africa / Seattle, WA\",,,,male\r\n2nd,1,\"Brown, Mrs Thomas William Solomon (Elizabeth C.)\",40,Southampton,\"Cape Town, South Africa / Seattle, WA\",,,14,female\r\n2nd,1,\"Bryhl, Miss Dagmar\",20,Southampton,\"Skara, Sweden / Rockford, IL\",,,12,female\r\n2nd,0,\"Bryhl, Mr Kurt Arnold Gottfrid\",25,Southampton,\"Skara, Sweden / Rockford, IL\",,,,male\r\n2nd,1,\"Buss, Miss Kate\",36,Southampton,\"Sittingbourne, England / San Diego, CA\",E-?,27849,9,female\r\n2nd,0,\"Butler, Mr Reginald Fenton\",25,Southampton,\"Southsea, Hants\",,,-97,male\r\n2nd,0,\"Byles, Rev. Thomas Roussel D.\",NA,Southampton,London,,,,male\r\n2nd,1,\"Bystrom, Mrs Carolina\",42,Southampton,\"New York, NY\",,,,female\r\n2nd,1,\"Caldwell, Mr Albert Francis\",26,Southampton,\"Bangkok, Thailand / Roseville, IL\",,,13,male\r\n2nd,1,\"Caldwell, Mrs Albert Francis (Sylvia Mae Harbaugh)\",26,Southampton,\"Bangkok, Thailand / Roseville, IL\",,,13,female\r\n2nd,1,\"Caldwell, Master Alden Gates\",0.8333,Southampton,\"Bangkok, Thailand / Roseville, IL\",,,13,male\r\n2nd,1,\"Cameron, Miss Clear\",31,Southampton,\"Mamaroneck, NY\",,,,female\r\n2nd,0,\"Campbell, Mr William\",NA,,Belfast,,,,male\r\n2nd,0,\"Carbines, Mr William\",19,Southampton,\"St Ives, Cornwall / Calumet, MI\",,,-18,male\r\n2nd,0,\"Carter, Rev Ernest Courtenay\",54,Southampton,London,,,,male\r\n2nd,0,\"Carter, Mrs Ernest Courtenay (Lillian Hughes)\",44,Southampton,London,,,,female\r\n2nd,0,\"Chapman, Mr Charles Henry\",52,Southampton,\"Bronx, NY\",,,-130,male\r\n2nd,0,\"Chapman, Mr John Henry\",30,Southampton,\"Cornwall / Spokane, WA\",,,-17,male\r\n2nd,0,\"Chapman, Mrs John Henry (Elizabeth Lawry)\",30,Southampton,\"Cornwall / Spokane, WA\",,,,female\r\n2nd,1,\"Christy, Mrs Alice Frances\",NA,Southampton,London,,,,female\r\n2nd,1,\"Christy, Miss Julie\",NA,Southampton,London,,,,female\r\n2nd,0,\"Clarke, Mr Charles V.\",29,Southampton,\"England / San Francisco, CA\",,,,male\r\n2nd,1,\"Clarke, Mrs Charles V. (Ada Maria)\",NA,Southampton,\"England / San Francisco, CA\",,,14,female\r\n2nd,0,\"Coleridge, Mr Reginald Charles\",29,Southampton,\"Hartford, Huntingdonshire\",,,,male\r\n2nd,0,\"Collander, Mr Erik\",27,Southampton,\"Helsinki, Finland Ashtabula, Ohio\",,,,male\r\n2nd,1,\"Collett, Mr Sidney C. Stuart\",24,Southampton,\"London / Fort Byron, NY\",,,9,male\r\n2nd,0,\"Collyer, Mr Harvey\",35,Southampton,\"Bishopstoke, Hants / Fayette Valley, ID\",,,,male\r\n2nd,1,\"Collyer, Mrs Harvey (Charlotte Tate)\",31,Southampton,\"Bishopstoke, Hants / Fayette Valley, ID\",,,14,female\r\n2nd,1,\"Collyer, Miss Marjorie\",8,Southampton,\"Bishopstoke, Hants / Fayette Valley, ID\",,,14,female\r\n2nd,0,\"Cook, Mrs Selena Rogers\",22,Southampton,Pennsylvania,F-33,,14,female\r\n2nd,0,\"Corbett, Mrs Walter H. (Irene Colvin)\",30,Southampton,\"Provo, UT\",,,,female\r\n2nd,0,\"Corey, Mrs Percy C. (Mary Phyllis Elizabeth Miller)\",NA,Southampton,\"Upper Burma, India Pittsburgh, PA\",,,,female\r\n2nd,0,\"Cotterill, Mr Harry\",20,Southampton,\"Penzance, Cornwall / Akron, OH\",,,,male\r\n2nd,0,\"Cunningham, Mr Alfred Fleming\",NA,,Belfast,,,,male\r\n2nd,0,\"Davies, Mr Charles Henry\",21,Southampton,\"Lyndhurst, England\",,,,male\r\n2nd,1,\"Davis, Mrs Agnes\",49,Southampton,\"St Ives, Cornwall / Hancock, MI\",,,,female\r\n2nd,1,\"Davis, Master John Morgan\",8,Southampton,\"St Ives, Cornwall / Hancock, MI\",,,,male\r\n2nd,1,\"Davis, Miss Mary\",28,Southampton,\"London / Staten Island, NY\",,,13,female\r\n2nd,0,\"Deacon, Mr Percy\",18,Southampton,,,,,male\r\n2nd,0,\"de Brito, Mr Jose Joaquim\",NA,,\"Portugal / Sau Paulo, Brazil\",,,,male\r\n2nd,0,\"del Carlo, Mr Sebastiano\",28,Cherbourg,\"Lucca, Italy / California\",,,-295,male\r\n2nd,1,\"del Carlo, Mrs Sebastiano (Argenia Genovese)\",22,Cherbourg,\"Lucca, Italy / California\",,,,female\r\n2nd,0,\"Denbury, Mr Herbert\",25,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Dibden, Mr William\",18,Southampton,\"New Forest, England\",,,,male\r\n2nd,1,\"Doling, Mrs Ada\",32,Southampton,Southampton,,,,female\r\n2nd,1,\"Doling, Miss Elsie\",18,Southampton,Southampton,,,,female\r\n2nd,0,\"Downton (?Douton), Mr William James\",NA,Southampton,\"Holley, NY\",,,,male\r\n2nd,0,\"Drew, Mr James Vivian\",42,Southampton,\"Greenport, NY\",,28220 L32 10s,,male\r\n2nd,1,\"Drew, Mrs James Vivian (Lulu Thorne Christian)\",34,Southampton,\"Greenport, NY\",,28220 L32 10s,,female\r\n2nd,1,\"Drew, Master Marshall Brines\",8,Southampton,\"Greenport, NY\",,28220 L32 10s,,male\r\n2nd,1,\"Duran y More, Miss Asuncion\",NA,Cherbourg,\"Barcelona, Spain / Havana, Cuba\",,,12,female\r\n2nd,1,\"Duran y More, Miss Florentina\",NA,Cherbourg,\"Barcelona, Spain / Havana, Cuba\",,,12,female\r\n2nd,0,\"Eitemiller, Mr George Floyd\",23,Southampton,\"England / Detroit, MI\",,,,male\r\n2nd,0,\"Enander, Mr Ingvar\",21,Southampton,\"Goteborg, Sweden / Rockford, IL\",,,,male\r\n2nd,0,\"Fahlstrom, Mr Arne Jonas\",19,Southampton,\"Oslo, Norway Bayonne, NJ\",,,,male\r\n2nd,0,\"Faunthorpe, Mr Harry\",NA,Southampton,\"England / Philadelphia, PA\",,,-286,male\r\n2nd,1,\"Faunthorpe, Mrs Lizzie (see Wilkinson, E.)\",NA,,,,,,female\r\n2nd,0,\"Fillbrook, Mr Charles\",NA,Southampton,\"Cornwall / Houghton, MI\",,,,male\r\n2nd,0,\"Fox, Mr Stanley H.\",38,Southampton,\"Rochester, NY\",,229236 L13,-236,male\r\n2nd,0,\"Frost, Mr Anthony (Archie) W.\",NA,,Belfast,,,,male\r\n2nd,0,\"Funk, Miss Annie C.\",38,Southampton,\"Janjgir, India / Pennsylvania\",,,,female\r\n2nd,0,\"Fynney, Mr Joseph J.\",35,Southampton,\"Liverpool / Montreal, PQ\",,,-322,male\r\n2nd,0,\"Gale, Mr Harry\",35,Southampton,\"Cornwall / Clear Creek, CO\",,,,male\r\n2nd,0,\"Gale, Mr Shadrach\",38,Southampton,\"Cornwall / Clear Creek, CO\",,,,male\r\n2nd,1,\"Garside, Miss Ethel\",24,Southampton,\"Brooklyn, NY\",,,,female\r\n2nd,0,\"Gaskell, Mr Alfred\",16,Southampton,\"Liverpool / Montreal, PQ\",,,,male\r\n2nd,0,\"Gavey, Mr Lawrence\",26,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Gilbert, Mr William\",45,Southampton,Cornwall,,,,male\r\n2nd,0,\"Giles, Mr Edgar\",24,Southampton,\"Cornwall / Camden, NJ\",,,,male\r\n2nd,0,\"Giles, Mr Frederick\",21,Southampton,\"Cornwall / Camden, NJ\",,,,male\r\n2nd,0,\"Giles, Mr Ralph\",22,Southampton,\"West Kensington, London\",,,-297,male\r\n2nd,0,\"Gill, Mr John W.\",NA,Southampton,\"Clevedon, England\",,,,male\r\n2nd,0,\"Gillespie, Mr William\",34,Southampton,\"Vancouver, BC\",,,,male\r\n2nd,0,\"Givard, Mr Hans Christensen\",30,Southampton,,,,-305,male\r\n2nd,0,\"Greenberg, Mr Samuel\",50,Southampton,\"Bronx, NY\",,,-19,male\r\n2nd,0,\"Hale, Mr Reginald\",30,Southampton,\"Auburn, NY\",,,-75,male\r\n2nd,1,\"Hamalainen, Mrs William (Anna)\",23,Southampton,\"Detroit, MI\",,,,female\r\n2nd,1,\"Hamalainen, Master Viljo\",1,Southampton,\"Detroit, MI\",,,,male\r\n2nd,0,\"Harbeck, Mr William H.\",44,Southampton,\"Seattle, WA / Toledo, OH\",,248749 L13,-35,male\r\n2nd,0,\"Harper, Rev John\",28,Southampton,\"Denmark Hill, Surrey / Chicago\",,,,male\r\n2nd,1,\"Harper, Miss Nina\",6,Southampton,\"Denmark Hill, Surrey / Chicago\",,,11,female\r\n2nd,1,\"Harris, Mr George\",30,Southampton,London,,,,male\r\n2nd,0,\"Harris, Mr Walter\",NA,Southampton,\"Walthamstow, England\",,,,male\r\n2nd,0,\"Hart, Mr Benjamin\",43,Southampton,\"Ilford, Essex / Winnipeg, MB\",,13529 L26 5s,,male\r\n2nd,1,\"Hart, Mrs Benjamin (Esther)\",45,Southampton,\"Ilford, Essex / Winnipeg, MB\",,13529 L26 5s,14,female\r\n2nd,1,\"Hart, Miss Eva Miriam\",7,Southampton,\"Ilford, Essex / Winnipeg, MB\",,13529 L26 5s,14,female\r\n2nd,1,\"Herman, Miss Alice\",24,Southampton,\"Somerset / Bernardsville, NJ\",,,9,female\r\n2nd,1,\"Herman, Miss Kate\",24,Southampton,\"Somerset / Bernardsville, NJ\",,,9,female\r\n2nd,0,\"Herman, Mr Samuel\",49,Southampton,\"Somerset / Bernardsville, NJ\",,,,male\r\n2nd,1,\"Herman, Mrs Samuel (Jane Laver)\",48,Southampton,\"Somerset / Bernardsville, NJ\",,,9,female\r\n2nd,1,\"Hewlett, Mrs Mary D.\",NA,Southampton,\"India / Rapid City, SD\",,,13,female\r\n2nd,0,\"Hickman, Mr Leonard Mark\",34,Southampton,\"West Hampstead, London / Neepawa, MB\",,,-256,male\r\n2nd,0,\"Hickman, Mr Lewis\",32,Southampton,\"West Hampstead, London / Neepawa, MB\",,,,male\r\n2nd,0,\"Hickman, Mr Stanley George\",21,Southampton,\"West Hampstead, London / Neepawa, MB\",,,,male\r\n2nd,0,\"Hiltunen, Miss Marta\",18,Southampton,\"Kontiolahti, Finland / Detroit, MI\",,,,female\r\n2nd,1,\"Hocking, Mrs Elizabeth\",53,Southampton,\"Cornwall / Akron, OH\",,,4,female\r\n2nd,0,\"Hocking, Mr George\",23,Southampton,\"Cornwall / Akron, OH\",,,,male\r\n2nd,1,\"Hocking, Miss Ellen (Nellie)\",21,Southampton,\"Cornwall / Akron, OH\",,,4,female\r\n2nd,0,\"Hocking, Mr Samuel James\",NA,Southampton,\"Devonport, England\",,,,male\r\n2nd,0,\"Hodges, Mr Henry Price\",52,Southampton,Southampton,,,-149,male\r\n2nd,0,\"Hold, Mr Stephen\",42,Southampton,\"England / Sacramento, CA\",,,,male\r\n2nd,1,\"Hold, Mrs Stephen (Annie Margaret)\",36,Southampton,\"England / Sacramento, CA\",,,,female\r\n2nd,0,\"Hood, Mr Ambrose, Jr\",21,Southampton,\"New Forest, England\",,,,male\r\n2nd,1,\"Hosono, Mr Masafumi\",41,Southampton,\"Tokyo, Japan\",,,13,male\r\n2nd,0,\"Howard, Mr Benjamin\",NA,Southampton,\"Swindon, England\",,,,male\r\n2nd,0,\"Howard, Mrs Benjamin (Ellen Truelove)\",NA,Southampton,\"Swindon, England\",,,,female\r\n2nd,0,\"Hunt, Mr George Henry\",33,Southampton,\"Philadelphia, PA\",,,,male\r\n2nd,1,\"Ilett, Miss Bertha\",17,Southampton,Guernsey,,,,female\r\n2nd,0,Jacobsohn Mr Sidney Samuel,NA,Southampton,London,,,,male\r\n2nd,1,\"Jacobsohn, Mrs Sidney Samuel (Amy Frances Christy)\",NA,Southampton,London,,,,female\r\n2nd,0,\"Jarvis, Mr John Denzil\",NA,Southampton,\"North Evington, England\",,,,male\r\n2nd,0,\"Jefferys, Mr Clifford\",NA,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Jefferys, Mr Ernest\",NA,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Jenkin, Mr Stephen Curnow\",NA,Southampton,\"St Ives, Cornwall / Houghton, MI\",,,,male\r\n2nd,1,\"Jerwan, Mrs Amin S. (Marie Thuillard)\",23,Cherbourg,\"New York, NY\",,,,female\r\n2nd,0,\"Kantor, Mr Sinai\",34,Southampton,\"Moscow / Bronx, NY\",,,-283,male\r\n2nd,1,\"Kantor, Mrs Sinai (Miriam Sternim)\",NA,Southampton,\"Moscow / Bronx, NY\",,,,female\r\n2nd,0,\"Karnes, Mrs J. Frank (Claire Bennett)\",22,Southampton,\"India / Pittsburgh, PA\",,,,female\r\n2nd,0,\"Keane, Mr Daniel\",NA,Queenstown,,,,,male\r\n2nd,1,\"Keane, Miss Nora A.\",NA,Queenstown,\"Harrisburg, PA\",E-101,,10,female\r\n2nd,1,\"Kelly, Mrs Florence (Fannie)\",45,Southampton,\"London / New York, NY\",,,,female\r\n2nd,0,\"Kirkland, Rev Charles Leonard\",NA,Queenstown,\"Glasgow / Bangor, ME\",,,,male\r\n2nd,0,\"Knight, Mr Robert\",NA,,Belfast,,,,male\r\n2nd,0,\"Kvillner, Mr Johan Henrik Johannesson\",31,Southampton,\"Sweden / Arlington, NJ\",,,-165,male\r\n2nd,0,\"Lahtinen, Rev William\",30,Southampton,\"Minneapolis, MN\",,,,male\r\n2nd,0,\"Lahtinen, Mrs William (Anna Sylvan)\",26,Southampton,\"Minneapolis, MN\",,,,female\r\n2nd,0,\"Lamb, Mr John James\",NA,Queenstown,,,,,male\r\n2nd,1,\"Lemore, Mrs Amelia\",34,Southampton,\"Chicago, IL\",F-33,,14/D,female\r\n2nd,0,\"LaRoche, Mr Joseph\",26,Cherbourg,Paris / Haiti,,,,male\r\n2nd,1,\"LaRoche, Mrs Joseph (Juliet)\",22,Cherbourg,Paris / Haiti,,,,female\r\n2nd,1,\"LaRoche, Miss Louise\",1,Cherbourg,Paris / Haiti,,,,female\r\n2nd,1,\"LaRoche, Miss Simonne\",3,Cherbourg,Paris / Haiti,,,,female\r\n2nd,1,\"Lehmann, Miss Bertha\",NA,Cherbourg,\"Berne, Switzerland / Central City, IA\",,,,female\r\n2nd,1,\"Leitch, Miss Jessie\",NA,Southampton,\"London / Chicago, IL\",,,11,female\r\n2nd,0,\"Levy, Mr Rene Jacques\",NA,Cherbourg,\"Montreal, PQ\",,,,male\r\n2nd,0,\"Leyson, Mr Robert William Norman\",25,Southampton,,,,-108,male\r\n2nd,0,\"Lingan, Mr John\",NA,Queenstown,,,,,male\r\n2nd,0,\"Louch, Mr Charles Alexander\",48,Southampton,\"Weston-Super-Mare, Somerset\",,,-121,male\r\n2nd,1,\"Louch, Mrs Charles Alexander (Alice Adelaide)\",NA,Southampton,\"Weston-Super-Mare, Somerset\",,,14,female\r\n2nd,0,\"Mack, Mrs Mary\",57,Southampton,\"Southampton / New York, NY\",E77,,-52,female\r\n2nd,0,\"Malachard, Mr Noel\",NA,Cherbourg,Paris,,,,male\r\n2nd,0,\"Mallet, Mr Albert\",NA,Cherbourg,\"Paris / Montreal, PQ\",,,,male\r\n2nd,1,\"Mallet, Mrs Albert (Antoinette)\",NA,Cherbourg,\"Paris / Montreal, PQ\",,,,female\r\n2nd,1,\"Mallet, Master Andre\",2,Cherbourg,\"Paris / Montreal, PQ\",,,,male\r\n2nd,0,\"Mangiavacchi, Mr Serafino Emilio\",NA,Cherbourg,\"New York, NY\",,,,male\r\n2nd,0,\"Mantvila, Rev Joseph\",27,Southampton,\"Worcester, MA\",,,,male\r\n2nd,1,\"Marshall, Mrs Kate Louise Phillips\",19,Southampton,\"Worcester, England\",,,,female\r\n2nd,0,\"Matthews, Mr William John\",30,Southampton,\"St Austall, Cornwall\",,,,male\r\n2nd,0,\"Maybery, Mr Frank H.\",20,Southampton,\"Weston-Super-Mare / Moose Jaw, SK\",,,,male\r\n2nd,0,\"McCrae, Mr Arthur Gordon\",45,Southampton,\"Sydney, Australia\",,,-209,male\r\n2nd,0,\"McCrie, Mr James Matthew\",NA,Southampton,\"Sarnia, ON\",,,,male\r\n2nd,0,\"McKane, Mr Peter D.\",46,Southampton,\"Rochester, NY\",,,,male\r\n2nd,1,\"Mellenger, Mrs Elizabeth Anne\",41,Southampton,\"England / Bennington, VT\",,,14/12,female\r\n2nd,1,\"Mellenger, Miss Madeleine Violet\",13,Southampton,\"England / Bennington, VT\",,,14/12,female\r\n2nd,1,\"Mellor, Mr William John\",19,Southampton,\"Chelsea, London\",,,B,male\r\n2nd,0,\"Meyer, Mr August\",30,Southampton,\"Harrow-on-the-Hill, Middlesex\",,,,male\r\n2nd,0,\"Milling, Mr Jacob Christian\",48,Southampton,\"Copenhagen, Denmark\",,,-271,male\r\n2nd,0,\"Mitchell, Mr Henry Michael\",71,Southampton,\"Guernsey / Montclair, NJ and/or Toledo, Ohio\",,,,male\r\n2nd,0,\"Moraweck, Dr Ernest\",54,Southampton,\"Frankfort, KY\",,,,male\r\n2nd,0,\"Morley, Mr William\",NA,Southampton,\"Petworth, Sussex\",,,,male\r\n2nd,0,\"Mudd, Mr Thomas C.\",NA,Southampton,\"Halesworth, England\",,,,male\r\n2nd,0,\"Myles, Mr Thomas Francis\",64,Queenstown,\"Cambridge, MA\",,,,male\r\n2nd,0,\"Nasser (Nasrallah), Mr Nicholas\",32,Cherbourg,\"New York, NY\",,,-43,male\r\n2nd,1,\"Nasser (Nasrallah), Mrs Nicholas\",18,Cherbourg,\"New York, NY\",,,,female\r\n2nd,1,\"Navratil, Master Edmond Roger\",2,Southampton,\"Nice, France\",,230080 L26,D,male\r\n2nd,0,\"Navratil, Mr Michel\",32,Southampton,\"Nice, France\",,230080 L26,-15,male\r\n2nd,1,\"Navratil, Master Michel M.\",3,Southampton,\"Nice, France\",,230080 L26,D,male\r\n2nd,0,\"Nesson, Mr Israel\",26,Southampton,\"Boston, MA\",,,,male\r\n2nd,0,\"Nicholls, Mr Joseph Charles\",19,Southampton,\"Cornwall / Hancock, MI\",,,-101,male\r\n2nd,0,\"Norman, Mr Robert Douglas\",NA,Southampton,Glasgow,,,-287,male\r\n2nd,1,\"Nourney, Mr Alfred (aka Baron von Drachstedt)\",20,Cherbourg,\"Cologne, Germany\",D-38,,7,male\r\n2nd,1,\"Nye, Mrs Elizabeth Ramell\",29,Southampton,\"Folkstone, Kent / New York, NY\",F-33,,11,female\r\n2nd,0,\"Otter, Mr Richard\",39,Southampton,\"Middleburg Heights, OH\",,,,male\r\n2nd,1,\"Oxenham, Mr Percy Thomas\",22,Southampton,\"Pondersend, England / New Durham, NJ\",,,,male\r\n2nd,1,\"Padro y Manent, Mr Julian\",NA,Cherbourg,\"Spain / Havana, Cuba\",,,,male\r\n2nd,0,\"Pain, Dr Alfred\",24,Southampton,\"Hamilton, ON\",,,,male\r\n2nd,1,\"Pallas y Castello, Mr Emilio\",NA,Cherbourg,\"Spain / Havana, Cuba\",,,,male\r\n2nd,0,\"Parker, Mr Clifford R.\",28,Southampton,\"St Andrews, Guernsey\",,,,male\r\n2nd,0,\"Parkes, Mr Francis (Frank)\",NA,,Belfast,,,,male\r\n2nd,1,\"Parrish, Mrs Lutie Davis\",50,Southampton,\"Woodford County, KY\",,,12,female\r\n2nd,0,\"Pengelly, Mr Frederick\",20,Southampton,\"Gunnislake, England / Butte, MT\",,,,male\r\n2nd,0,\"Peruschitz, Rev. Joseph M.\",40,Southampton,,,,,male\r\n2nd,1,\"Phillips, Miss Alice\",42,Southampton,\"Ilfracombe, Devon\",,,12,female\r\n2nd,0,\"Phillips, Mr Robert\",21,Southampton,\"Ilfracombe, Devon\",,,,male\r\n2nd,1,\"Pinsky, Miss Rosa\",32,Southampton,Russia,,,,female\r\n2nd,0,\"Ponesell, Mr Martin\",34,Southampton,\"Denmark / New York, NY\",,250647,,male\r\n2nd,1,\"Portaluppi, Mr Emilio\",NA,Cherbourg,\"Milford, NH\",,,,male\r\n2nd,0,\"Pulbaum, Mr Frank\",NA,Cherbourg,Paris,,,,male\r\n2nd,1,\"Quick, Mrs Frederick C. (Jane Richards)\",33,Southampton,\"Plymouth, Devon / Detroit, MI\",,,11,female\r\n2nd,1,\"Quick, Miss Phyllis May\",2,Southampton,\"Plymouth, Devon / Detroit, MI\",,,11,female\r\n2nd,1,\"Quick, Miss Winifred Vera\",8,Southampton,\"Plymouth, Devon / Detroit, MI\",,,11,female\r\n2nd,0,\"Reeves, Mr David\",36,Southampton,\"Brighton, Sussex\",,,,male\r\n2nd,0,\"Renouf, Mr Peter Henry\",34,Southampton,\"Elizabeth, NJ\",,,,male\r\n2nd,1,\"Renouf, Mrs Peter Henry (Lillian Jefferys)\",30,Southampton,\"Elizabeth, NJ\",,,,female\r\n2nd,1,\"Reynaldo, Mrs Encarnacion\",28,Southampton,Spain,,,,female\r\n2nd,0,\"Richard, Mr Emil\",23,Cherbourg,\"Paris / Montreal, PQ\",,,,male\r\n2nd,1,\"Richards, Master George Sidney\",0.8333,Southampton,\"Cornwall / Akron, OH\",,,4,male\r\n2nd,1,\"Richards, Mrs Sidney (Emily Hocking)\",25,Southampton,\"Cornwall / Akron, OH\",,,4,female\r\n2nd,1,\"Richards, Master William Rowe\",3,Southampton,\"Cornwall / Akron, OH\",,,4,male\r\n2nd,1,\"Ridsdale, Miss Lucy\",50,Southampton,\"London, England / Marietta, Ohio and Milwaukee, WI\",,,,female\r\n2nd,0,\"Rogers, Mr Harry\",NA,Southampton,,,,,male\r\n2nd,1,\"Rugg, Miss Emily\",21,Southampton,\"Guernsey / Wilmington, DE\",,,12,female\r\n2nd,0,\"Sedgwick, Mr Charles Frederick Waddington\",NA,Southampton,Liverpool,,,,male\r\n2nd,0,\"Sharp, Mr Percival\",NA,Southampton,\"Hornsey, England\",,,,male\r\n2nd,1,\"Shelley, Mrs William (Imanita)\",25,Southampton,\"Deer Lodge, MT\",,,12,female\r\n2nd,1,\"Silven, Miss Lyyli\",18,Southampton,\"Finland / Minneapolis, MN\",,,,female\r\n2nd,1,\"Sincock, Miss Maude\",20,Southampton,\"Cornwall / Hancock, MI\",,,11,female\r\n2nd,1,\"Siukonnen, Miss Anna\",30,Southampton,\"Finland / Washington, DC\",,,,female\r\n2nd,0,\"Sjostedt, Mr Ernst Adolf\",59,Southampton,\"Sault St Marie, ON\",,,,male\r\n2nd,1,\"Slayter, Miss Hilda Mary\",30,Queenstown,\"Halifax, NS\",,,13,female\r\n2nd,0,\"Slemen, Mr Richard James\",35,Southampton,Cornwall,,,,male\r\n2nd,0,\"Smith (Schmidt), Mr Augustus\",22,Southampton,\"Newark, NJ\",,,,male\r\n2nd,1,\"Smith, Miss Marion\",NA,Southampton,,,,,female\r\n2nd,0,\"Sobey, Mr Hayden\",25,Southampton,\"Cornwall / Houghton, MI\",,,,male\r\n2nd,0,\"Stanton, Mr Samuel Ward\",41,Cherbourg,\"New York, NY\",,,,male\r\n2nd,0,\"Stokes, Mr Philip Joseph\",25,Southampton,\"Catford, Kent / Detroit, MI\",,,-81,male\r\n2nd,0,\"Sweet, Mr George\",14,Southampton,\"Somerset / Bernardsville, NJ\",,,,male\r\n2nd,1,\"Toomey, Miss Ellen\",50,Southampton,\"Indianapolis, IN\",,,9,female\r\n2nd,0,\"Troupiansky, Mr Moses Aaron\",22,Southampton,,,,,male\r\n2nd,1,\"Trout, Mrs William H. (Jessie L.)\",NA,Southampton,\"Columbus, OH\",,,9,female\r\n2nd,1,\"Troutt, Miss Edwina Celia\",27,Southampton,\"Bath, England / Massachusetts\",E-101,34218 L10 10s,16,female\r\n2nd,0,\"Turpin, Mr William John\",29,Southampton,\"Plymouth, England\",,,,male\r\n2nd,0,\"Turpin, Mrs William John (Dorothy Anne Wonnacott)\",27,Southampton,\"Plymouth, England\",,,,female\r\n2nd,0,\"Veale, Mr James\",30,Southampton,\"Barre, Co Washington, VT\",,,,male\r\n2nd,0,\"Waelens, Mr Achille\",22,Southampton,\"Antwerp, Belgium / Stanton, OH\",,,-140,male\r\n2nd,1,\"Walcroft, Miss Nellie\",35,Southampton,\"Mamaroneck, NY\",,,,female\r\n2nd,0,\"Ware, Mr John James\",30,Southampton,\"Bristol, England / New Britain, CT\",,,,male\r\n2nd,1,\"Ware, Mrs John James (Florence Louise Long)\",28,Southampton,\"Bristol, England / New Britain, CT\",,,12,female\r\n2nd,0,\"Ware, Mr William J.\",23,Southampton,,,,,male\r\n2nd,0,\"Watson, Mr Ennis Hastings\",NA,Southampton,Belfast,,,,male\r\n2nd,1,\"Watt, Miss Bertha\",12,Southampton,\"Aberdeen / Portland, OR\",,,9,female\r\n2nd,1,\"Watt, Mrs James (Bessie Inglis Milne)\",40,Southampton,\"Aberdeen / Portland, OR\",,,9,female\r\n2nd,1,\"Webber, Miss Susan\",36,Southampton,\"England / Hartford, CT\",E-101,,,female\r\n2nd,0,\"Weisz, Mr Leopold\",28,Southampton,\"Bromsgrove, England / Montreal, PQ\",,,-293,male\r\n2nd,1,\"Weisz, Mrs Leopold (Mathilde)\",32,Southampton,\"Bromsgrove, England / Montreal, PQ\",,,,female\r\n2nd,1,\"Wells, Mrs Arthur H. (Addie Trevaskis)\",29,Southampton,\"Cornwall / Akron, OH\",,,,female\r\n2nd,1,\"Wells, Miss Joan\",4,Southampton,\"Cornwall / Akron, OH\",,,,female\r\n2nd,1,\"Wells, Master Ralph Lester\",2,Southampton,\"Cornwall / Akron, OH\",,,,male\r\n2nd,1,\"West, Miss Barbara J.\",NA,Southampton,\"Bournmouth, England\",,,,female\r\n2nd,1,\"West, Miss Constance Mirium\",NA,Southampton,\"Bournmouth, England\",,,,female\r\n2nd,0,\"West, Mr Edwy Arthur\",36,Southampton,\"Bournmouth, England\",,,,male\r\n2nd,1,\"West, Mrs Edwy Arthur (Ada Mary)\",33,Southampton,\"Bournmouth, England\",,,,female\r\n2nd,0,\"Wheadon, Mr Edward\",NA,Southampton,\"Guernsey, England / Edgewood, RI\",,,,male\r\n2nd,0,\"Wheeler, Mr Edwin\",NA,Southampton,,,,,male\r\n2nd,0,\"Wheeler, Mr Frederick\",NA,,,,,,male\r\n2nd,1,\"Wilhelms, Mr Charles\",32,Southampton,\"London, England\",,,9,male\r\n2nd,1,\"Wilkinson, Mrs Elizabeth Anne\",NA,Southampton,\"Manchester, England\",,,,female\r\n2nd,1,\"Williams, Mr Charles Eugene\",NA,Southampton,\"Harrow, England\",,,14,male\r\n2nd,1,\"Wright, Miss Marion\",26,Southampton,\"Yoevil, England / Cottage Grove, OR\",,,9,female\r\n2nd,0,\"Yrois, Miss Henriette\",NA,Southampton,Paris,,,,female\r\n2nd,0,\"Aldworth, Mr Charles Augustus\",30,Southampton,\"Bryn Mawr, PA, USA\",,248744 L13,,male\r\n2nd,1,\"Brown, Miss Mildred\",24,Southampton,\"London / Montreal, PQ\",F-33,,11,female\r\n2nd,0,\"Pernot, Mr Rene\",NA,Cherbourg,,2131,L15 1s,,male\r\n2nd,0,\"Swane, Mr George\",18,Southampton,,F-?,,-294,male\r\n3rd,0,\"Abbing, Mr Anthony\",42,Southampton,,,,,male\r\n3rd,0,\"Abbott, Master Eugene Joseph\",13,Southampton,\"East Providence, RI\",,,,male\r\n3rd,0,\"Abbott, Mr Rossmore Edward\",16,Southampton,\"East Providence, RI\",,,-190,male\r\n3rd,1,\"Abbott, Mrs Stanton (Rosa)\",35,Southampton,\"East Providence, RI\",,,A,female\r\n3rd,1,\"Abelseth, Miss Anna Karen\",16,Southampton,\"Norway Los Angeles, CA\",,,16,female\r\n3rd,1,\"Abelseth, Mr Olaus\",25,Southampton,\"Perkins County, SD\",,,A,male\r\n3rd,1,\"Abraham, Mrs Joseph (Sophie Easu)\",18,Cherbourg,\"Greensburg, PA\",,,,female\r\n3rd,1,\"Abrahamsson, Mr August\",20,Southampton,\"Taalintehdas, Finland Hoboken, NJ\",,,15,male\r\n3rd,0,\"Adahl, Mr Mauritz Nils Martin\",30,Southampton,\"Asarum, Sweden Brooklyn, NY\",,7076,-72,male\r\n3rd,0,\"Adams, Mr John\",26,Southampton,\"Bournemouth, England\",,,-103,male\r\n3rd,0,\"Ahlin, Mrs Johanna Persdotter\",40,Southampton,\"Sweden Akeley, MN\",,,,female\r\n3rd,0,\"Ahmed, Mr Ali\",24,Southampton,,,,,male\r\n3rd,0,\"Aijo-Nirva, Mr Isak\",41,Southampton,\"Finland Sudbury, ON\",,,,male\r\n3rd,1,\"Aks, Mrs Sam (Leah Rosen)\",18,Southampton,\"London, England Norfolk, VA\",,392091,13,female\r\n3rd,1,\"Aks, Master Philip\",0.8333,Southampton,\"London, England Norfolk, VA\",,392091,11,male\r\n3rd,0,\"Alexander, Mr William\",23,Southampton,\"England Albion, NY\",,,,male\r\n3rd,0,\"Alhomaki, Mr Ilmari Rudolf\",20,Southampton,\"Salo, Finland Astoria, OR\",,,,male\r\n3rd,0,\"Ali, Mr William\",25,Southampton,Argentina,,,-79,male\r\n3rd,0,\"Allen, Mr William Henry\",35,Southampton,\"Lower Clapton, Middlesex or Erdington, Birmingham\",,,,male\r\n3rd,0,\"Allum, Mr Owen George\",17,Southampton,\"Windsor, England New York, NY\",,,-259,male\r\n3rd,0,\"Andersen, Mr Albert Karvin\",32,Southampton,\"Bergen, Norway\",,,-260,male\r\n3rd,0,\"Andersen, Mr Thor Olsvigen\",20,Southampton,\"Oslo, Norway Cameron, WI\",,,-89,male\r\n3rd,0,\"Andersson, Mr Anders Johan\",39,Southampton,\"Sweden Winnipeg, MN\",,,,male\r\n3rd,0,\"Andersson, Mrs Anders Johan (Alfrida K. Brogren)\",39,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Miss Ebba Iris\",6,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Miss Ellis Anna Maria\",2,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,1,\"Andersson, Miss Erna\",17,Southampton,\"Ruotsinphyhtaa, Finland New York, NY\",,,,female\r\n3rd,0,\"Andersson, Miss Ida Augusta Margareta\",38,Southampton,\"Vadsbro, Sweden Ministee, MI\",,,,female\r\n3rd,0,\"Andersson, Miss Ingeborg Constancia\",9,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Mr Johan Samuel\",26,Southampton,\"Hartford, CT\",,,,male\r\n3rd,0,\"Andersson, Miss Sigrid Elizabeth\",11,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Master Sigvard Harald Elias\",4,Southampton,\"Sweden Winnipeg, MN\",,,,male\r\n3rd,0,\"Andreasson, Mr Paul Edvin\",20,Southampton,\"Sweden Chicago, IL\",,,,male\r\n3rd,0,\"Angheloff, Mr Minko\",26,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Arnold, Mr Josef\",25,Southampton,\"Altdorf, Switzerland\",,,,male\r\n3rd,0,\"Arnold, Mrs Josef (Josephine Frank)\",18,Southampton,\"Altdorf, Switzerland\",,,,female\r\n3rd,0,\"Aronsson, Mr Ernst Axel Algot\",24,Southampton,\"Sweden Joliet, IL\",,,,male\r\n3rd,0,\"Asim, Mr Adola\",35,Southampton,,,,,male\r\n3rd,0,\"Asplund, Mr Carl Oscar Vilhelm Gustafsson\",40,Southampton,\"Sweden  Worcester, MA\",,,-142,male\r\n3rd,1,\"Asplund, Mrs Carl Oscar (Selma Augusta Johansson)\",38,Southampton,\"Sweden  Worcester, MA\",,,4,female\r\n3rd,0,\"Asplund, Master Carl Edgar\",5,Southampton,\"Sweden  Worcester, MA\",,,,male\r\n3rd,0,\"Asplund, Master Clarence Gustaf Hugo\",9,Southampton,\"Sweden Worcester, MA\",,,,male\r\n3rd,1,\"Aspland, Master Edvin Rojj Felix\",3,Southampton,\"Sweden Worcester, MA\",,,4,male\r\n3rd,0,\"Asplund, Master Filip Oscar\",13,Southampton,\"Sweden Worcester, MA\",,,,male\r\n3rd,1,\"Asplund, Mr John Charles\",23,Southampton,\"Oskarshamn, Sweden Minneapolis, MN\",,,,male\r\n3rd,1,\"Asplund, Miss Lillian Gertrud\",5,Southampton,\"Sweden Worcester, MA\",,,4,female\r\n3rd,0,\"Assaf, Mr Gerios\",NA,Cherbourg,\"Ottawa, ON\",,,,male\r\n3rd,1,\"Assaf, Mrs Mariana\",45,Cherbourg,\"Ottawa, ON\",,,C,female\r\n3rd,0,\"Assam, Mr Ali\",23,Southampton,,,,,male\r\n3rd,0,\"Attalah, Miss Malaka\",17,Cherbourg,,,,,female\r\n3rd,0,\"Attala (Kalil), Mr Solomon\",27,Cherbourg,\"Ottawa, ON\",,,,male\r\n3rd,0,\"Augustsson, Mr Albert\",23,Southampton,\"Krakoryd, Sweden Bloomington, IL\",,,,male\r\n3rd,0,\"Baccos, Mr Rafoul\",20,Cherbourg,,,,,male\r\n3rd,0,\"Backstrom, Mr Karl Alfred\",32,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,male\r\n3rd,1,\"Backstrom, Mrs Karl Alfred (Maria Mathilda Gustafsson)\",33,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,female\r\n3rd,1,\"Baclini, Miss Eugenie\",3,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Baclini, Miss Helene\",NA,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Baclini, Miss Maria\",NA,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Baclini, Mrs Solomon (Latifa)\",NA,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Badman, Miss Emily Louisa\",18,Southampton,\"London Skanteales, NY\",,,,female\r\n3rd,0,\"Badt, Mr Mohamed\",40,Cherbourg,,,,,male\r\n3rd,0,\"Balkic, Mr Cerin\",26,Southampton,,,,,male\r\n3rd,1,\"Banoura, Miss Ayout\",15,Cherbourg,\"Syria Youngstown, OH\",,,,female\r\n3rd,0,\"Barbara, Mrs Catherine\",45,Cherbourg,\"Syria Ottawa, ON\",,,,female\r\n3rd,0,\"Barbara, Miss Saude\",18,Cherbourg,\"Syria Ottawa, ON\",,,,female\r\n3rd,0,\"Barry, Miss Julia\",27,Queenstown,\"New York, NY\",,,,female\r\n3rd,0,Barton Mr David,22,Southampton,\"England New York, NY\",,,,male\r\n3rd,0,\"Beavan, Mr William Thomas\",19,Southampton,England,,,,male\r\n3rd,0,\"Bengtsson, Mr John Viktor\",26,Southampton,\"Krakudden, Sweden Moune, IL\",,,,male\r\n3rd,0,Berglund. Mr Karl Ivar Sven,22,Southampton,\"Tranvik, Finland New York\",,,,male\r\n3rd,0,\"Betros, Mr Tannous\",20,Cherbourg,Syria,,,,male\r\n3rd,1,\"Bing, Mr Lee\",32,Southampton,\"Hong Kong New York, NY\",,,,male\r\n3rd,0,\"Birkeland, Mr Hans\",21,Southampton,\"Brennes, Norway New York\",,,,male\r\n3rd,0,\"Bjorklund, Ernst Herbert\",18,Southampton,\"Stockholm, Sweden New York\",,,,male\r\n3rd,0,\"Bostandyeff, Mr Guentcho\",26,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Boulos, Master Akar\",6,Cherbourg,\"Syria Kent, ON\",,,,male\r\n3rd,0,\"Boulos, Mr Hanna\",NA,Cherbourg,Syria,,,,male\r\n3rd,0,\"Boulos, Mrs Joseph (Sultana)\",NA,Cherbourg,\"Syria Kent, ON\",,,,female\r\n3rd,0,\"Boulos, Miss Laura\",9,Cherbourg,\"Syria Kent, ON\",,,,female\r\n3rd,0,\"Bourke, Mr John\",40,Queenstown,\"Ireland Chicago, IL\",,,,male\r\n3rd,0,\"Bourke, Mrs John (Catherine)\",32,Queenstown,\"Ireland Chicago, IL\",,,,female\r\n3rd,0,\"Bourke, Miss Mary\",NA,Queenstown,\"Ireland Chicago, IL\",,,,female\r\n3rd,0,\"Bowen, Mr David\",26,Southampton,\"Treherbert, Cardiff, Wales\",,,,male\r\n3rd,1,\"Bradley, Miss Bridget Delia\",18,Queenstown,\"Kingwilliamstown, Co Cork, Ireland Glens Falls, NY\",,,13,female\r\n3rd,0,\"Braf, Miss Elin Ester Maria\",20,Southampton,\"Medeltorp, Sweden Chicago, IL\",,,,female\r\n3rd,0,\"Brahim, Mr Youssef\",NA,Cherbourg,,,,,male\r\n3rd,0,\"Braund, Mr Lewis Richard\",29,Southampton,\"Bridgerule, Devon\",,,,male\r\n3rd,0,\"Braund, Mr Owen Harris\",22,Southampton,\"Bridgerule, Devon\",,,,male\r\n3rd,0,\"Brobek, Mr Karl Rudolf\",22,Southampton,\"Sweden Worcester, MA\",,,,male\r\n3rd,0,\"Brocklebank, Mr William Alfred\",35,Southampton,\"Broomfield, Chelmsford, England\",,,,male\r\n3rd,1,\"Buckley, Mr Daniel\",21,Queenstown,\"Kingwilliamstown, Co Cork, Ireland New York, NY\",,,,male\r\n3rd,0,\"Buckley, Miss Katherine\",20,Queenstown,\"Co Cork, Ireland Roxbury, MA\",,,-299,female\r\n3rd,0,\"Burke, Mr Jeremiah\",19,Queenstown,\"Co Cork, Ireland Charlestown, MA\",,,,male\r\n3rd,0,\"Burns, Miss Mary Delia\",18,Queenstown,\"Co Sligo, Ireland New York, NY\",,,,female\r\n3rd,0,\"Cacic, Mr Grego\",18,Southampton,Croatia,,,,male\r\n3rd,0,\"Cacic, Mr Luka\",38,Southampton,Croatia,,,,male\r\n3rd,0,\"Cacic, Mr Manda\",NA,Southampton,Croatia,,,,male\r\n3rd,0,\"Cacic, Mr Maria\",30,Southampton,Croatia,,,,male\r\n3rd,0,\"Calic, Mr Peter\",17,Southampton,,,,,male\r\n3rd,0,\"Canavan, Miss Mary\",21,Queenstown,,,,,female\r\n3rd,0,\"Canavan, Mr Patrick\",21,Queenstown,\"Ireland Philadelphia, PA\",,,,male\r\n3rd,0,\"Cann, Mr Ernest\",21,Southampton,,,,,male\r\n3rd,0,\"Caram (Kareem), Mr Joseph\",NA,Cherbourg,\"Ottawa, ON\",,,,male\r\n3rd,0,\"Caram (Kareem), Mrs Joseph (Maria Elias)\",NA,Cherbourg,\"Ottawa, ON\",,,,female\r\n3rd,0,\"Carlsson, Mr Carl Robert\",24,Southampton,\"Goteborg, Sweden Huntley, IL\",,,,male\r\n3rd,0,\"Carlsson, Mr Frans Olof\",33,Southampton,\"New York, NY\",,,,male\r\n3rd,0,\"Carlsson, Mr Julius\",33,Southampton,,,,,male\r\n3rd,0,\"Carlsson, Mr August Sigfrid\",28,Southampton,\"Dagsas, Sweden Fower, MN\",,,,male\r\n3rd,1,\"Carr, Miss Helen\",16,Queenstown,\"Co Longford, Ireland New York, NY\",,,,female\r\n3rd,0,\"Carr, Miss Jeannie\",37,Queenstown,\"Co Sligo, Ireland Hartford, CT\",,,,female\r\n3rd,0,\"Carver, Mr Alfred John\",28,Southampton,\"St Denys, Southampton, Hants\",,,,male\r\n3rd,1,\"Cassem, Mr Nassef Belmenly\",NA,Cherbourg,\"Syria Fredericksburg, VA\",,,,male\r\n3rd,0,\"Celotti, Mr Francesco\",24,Southampton,London,,,,male\r\n3rd,0,\"Chartens, Mr David\",21,Southampton,\"Ireland New York, NY\",,,,male\r\n3rd,0,\"Chebab, Mr Emir Farres\",NA,Cherbourg,,,,,male\r\n3rd,0,\"Chip, Mr Chang\",32,Southampton,\"Hong Kong New York, NY\",,,,male\r\n3rd,0,\"Christmann, Mr Emil\",29,Southampton,,,,,male\r\n3rd,0,\"Chronopoulos, Mr Apostolos\",26,Cherbourg,Greece,,,,male\r\n3rd,0,\"Chronopoulos, Mr Demetrios\",18,Cherbourg,Greece,,,,male\r\n3rd,0,\"Coelho, Mr Domingos Fernandes\",20,Southampton,Portugal,,,,male\r\n3rd,1,\"Cohen, Mr Gurshon (Gus)\",19,Southampton,\"London Brooklyn, NY\",,,,male\r\n3rd,0,\"Colbert, Mr Patrick\",24,Queenstown,\"Co Limerick, Ireland Sherbrooke, PQ\",,,,male\r\n3rd,0,\"Coleff, Mr Fotio\",24,Southampton,,,,,male\r\n3rd,0,\"Coleff, Mr Peyo\",36,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Conlin, Mr Thomas Henry\",31,Queenstown,\"Philadelphia, PA\",,,,male\r\n3rd,0,\"Connaghton, Mr Michael\",31,Queenstown,\"Ireland Brooklyn, NY\",,,,male\r\n3rd,0,\"Connolly, Miss Kate\",30,Queenstown,Ireland,,,,female\r\n3rd,1,\"Connolly, Miss Kate\",22,Queenstown,Ireland,,,,female\r\n3rd,0,\"Connors, Mr Patrick\",NA,Queenstown,,,,-171,male\r\n3rd,0,\"Cook, Mr Jacob\",43,Southampton,,,,,male\r\n3rd,0,\"Cor, Mr Bartol\",35,Southampton,Austria,,,,male\r\n3rd,0,\"Cor, Mr Ivan\",27,Southampton,Austria,,,,male\r\n3rd,0,\"Cor, Mr Ludovik\",19,Southampton,Austria,,,,male\r\n3rd,0,\"Corn, Mr Harry\",30,Southampton,London,,,,male\r\n3rd,1,\"Coutts, Mrs William (Minnie)\",36,Southampton,\"England Brooklyn, NY\",,,2,female\r\n3rd,1,\"Coutts, Master Neville\",3,Southampton,\"England Brooklyn, NY\",,,2,male\r\n3rd,1,\"Coutts, Master William Leslie\",9,Southampton,\"England Brooklyn, NY\",,,2,male\r\n3rd,0,\"Coxon, Mr Daniel\",59,Southampton,\"Merrill, WI\",,,,male\r\n3rd,0,\"Crease, Mr Ernest James\",19,Southampton,\"Bristol, England Cleveland, OH\",,,,male\r\n3rd,0,\"Cribb, Mr John Hatfield\",44,Southampton,\"Bournemouth, England Newark, NJ\",,,,male\r\n3rd,1,\"Cribb, Miss Laura Alice\",17,Southampton,\"Bournemouth, England Newark, NJ\",,,,female\r\n3rd,0,\"Daher, Mr Tannous\",NA,Cherbourg,,,,,male\r\n3rd,1,\"Dahl, Mr Charles Edward\",45,Southampton,\"Australia Fingal, ND\",,,15,male\r\n3rd,0,\"Dahlberg, Miss Gerda Ulrika\",22,Southampton,\"Norrlot, Sweden Chicago, IL\",,,,female\r\n3rd,0,\"Dakic, Mr Branko\",19,Southampton,Austria,,,,male\r\n3rd,1,\"Daly, Mr Eugene\",29,Queenstown,\"Co Athlone, Ireland New York, NY\",,,B,male\r\n3rd,1,\"Daly, Miss Marcella\",30,Queenstown,\"Co Athlone, Ireland New York, NY\",,,,female\r\n3rd,0,\"Danbom, Mr Ernst Gilbert\",34,Southampton,\"Stanton, IA\",,,,male\r\n3rd,0,\"Danbom, Mrs Ernst Gilbert (Anna Sigrid Maria Brogren)\",28,Southampton,\"Stanton, IA\",,,,female\r\n3rd,0,\"Danbom, Master Gilbert Sigvard Emanuel\",0.3333,Southampton,\"Stanton, IA\",,,,male\r\n3rd,0,\"Danoff, Mr Yoto\",27,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Dantchoff, Mr Khristo\",25,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Davies, Mr Alfred\",24,Southampton,\"West Bromwich, England Pontiac, MI\",,,,male\r\n3rd,0,\"Davies, Mr Evan\",22,Southampton,,,,,male\r\n3rd,0,\"Davies, Mr John\",21,Southampton,\"West Bromwich, England Pontiac, MI\",,,,male\r\n3rd,0,\"Davies, Mr Joseph\",17,Southampton,\"West Bromwich, England Pontiac, MI\",,,,male\r\n3rd,0,\"Davison, Mr Thomas Henry\",NA,Southampton,\"Liverpool, England Bedford, OH\",,,,male\r\n3rd,1,\"Davison, Mrs Thomas Henry (Mary Finck)\",NA,Southampton,\"Liverpool, England Bedford, OH\",,,,female\r\n3rd,0,\"Dean, Mr Bertram\",26,Southampton,\"Devon, England Wichita, KS\",,,,male\r\n3rd,1,\"Dean, Mrs Bertram (Eva)\",33,Southampton,\"Devon, England Wichita, KS\",,,12,female\r\n3rd,1,\"Dean, Master Bertram Vere\",1,Southampton,\"Devon, England Wichita, KS\",,,12,male\r\n3rd,1,\"Dean, Miss Elizabeth Gladys (Millvena)\",0.1667,Southampton,\"Devon, England Wichita, KS\",,,12,female\r\n3rd,0,\"Delalic, Mr Regyo\",25,Southampton,,,,,male\r\n3rd,1,\"De Messemaeker, Mr William Joseph\",36,Southampton,\"Tampico, MT\",,,15,male\r\n3rd,1,\"De Messemaeker, Mrs William Joseph (Anna)\",36,Southampton,\"Tampico, MT\",,,13,female\r\n3rd,1,\"De Mulder, Mr Theo\",30,Southampton,\"Belgium Detroit, MI\",,,,male\r\n3rd,0,\"Denkoff, Mr Mito\",NA,Southampton,\"Bulgaria Coon Rapids, IA\",,,,male\r\n3rd,0,\"Dennis, Mr Samuel\",23,Southampton,,,,,male\r\n3rd,0,\"Dennis, Mr William\",26,Southampton,,,,,male\r\n3rd,1,\"Devaney, Miss Margaret\",19,Queenstown,\"Kilmacowen, Co Sligo, Ireland New York, NY\",,,C,female\r\n3rd,0,\"Dewan, Mr Frank\",65,Queenstown,,,,,male\r\n3rd,0,\"Dibo, Mr Elias\",NA,Cherbourg,,,,,male\r\n3rd,0,\"Dimic, Mr Jovan\",42,Southampton,,,,,male\r\n3rd,0,\"Dintcheff, Mr Valtcho\",43,Southampton,,,,,male\r\n3rd,0,\"Dooley, Mr Patrick\",32,Queenstown,\"Ireland New York, NY\",,,,male\r\n3rd,1,\"Dorkings, Mr Edward Arthur\",19,Southampton,\"England Oglesby, IL\",,,B,male\r\n3rd,1,\"Dowdell, Miss Elizabeth\",30,Southampton,\"Union Hill, NJ\",,,13,female\r\n3rd,0,\"Doyle, Miss Elizabeth\",24,Queenstown,\"Ireland New York, NY\",,,,female\r\n3rd,1,\"Drapkin, Miss Jennie\",23,Southampton,\"London New York, NY\",,,,female\r\n3rd,0,\"Drazonovic, Mr Josef\",NA,Cherbourg,\"Austria Niagara Falls, NY\",,,,male\r\n3rd,1,\"Driscoll, Miss Bridget\",24,Queenstown,\"Ballydehob, Co Cork, Ireland New York, NY\",,,,female\r\n3rd,1,\"Duquemin, Mr Joseph\",24,Southampton,\"England Albion, NY\",,,D,male\r\n3rd,0,\"Dyker, Mr Adolf Fredrik\",23,Southampton,\"West Haven, CT\",,,,male\r\n3rd,1,\"Dyker, Mrs Adolf Fredrik (Anna Elizabeth Judith Andersson)\",22,Southampton,\"West Haven, CT\",,,,female\r\n3rd,0,\"Econovic, Mr Joso\",NA,Southampton,Austria-Hungary,,,,male\r\n3rd,0,\"Edvardsson, Mr Gustaf Hjalmar\",18,Southampton,\"Tofta, Sweden Joliet, IL\",,,,male\r\n3rd,0,\"Eklund, Mr Hans Linus\",16,Southampton,\"Karberg, Sweden Jerome Junction, AZ\",,,,male\r\n3rd,0,\"Ekstrom, Mr Johan\",45,Southampton,\"Effington Rut, SD\",,,,male\r\n3rd,0,\"Elias, Mr Elias\",NA,Cherbourg,Syria,,,,male\r\n3rd,0,\"Elias, Mr John\",NA,Cherbourg,Syria,,,,male\r\n3rd,0,\"Elias, Mr Joseph\",NA,Cherbourg,\"Syria Ottawa, ON\",,,,male\r\n3rd,0,\"Elsbury, Mr James\",47,Southampton,\"Illinois, USA\",,,,male\r\n3rd,1,\"Emanuel, Miss Virginia Ethel\",5,Southampton,\"New York, NY\",,,13,female\r\n3rd,0,\"Emmeth, Mr Thomas\",NA,Southampton,,,,,male\r\n3rd,0,\"Everett, Thomas James\",NA,Southampton,,,,,male\r\n3rd,0,\"Farrell, Mr James\",NA,Queenstown,\"Aughnacliff, Co Longford, Ireland New York, NY\",,,,male\r\n3rd,1,\"Finoli, Mr Luigi\",NA,Southampton,\"Italy Philadelphia, PA\",,,,male\r\n3rd,0,\"Fischer, Mr Eberhard Telander\",NA,Southampton,,,,,male\r\n3rd,0,\"Flynn, Mr James\",NA,Queenstown,,,,,male\r\n3rd,0,\"Flynn, Mr John\",NA,Queenstown,,,,,male\r\n3rd,0,\"Foley, Mr Joseph\",NA,Queenstown,\"Ireland Chicago, IL\",,,,male\r\n3rd,0,\"Foley, Mr William\",NA,Queenstown,Ireland,,,,male\r\n3rd,1,\"Foo, Mr Choong\",NA,Southampton,\"Hong Kong New York, NY\",,,,male\r\n3rd,0,\"Ford, Mr Arthur\",NA,Southampton,\"Bridgwater, Somerset, England\",,,,male\r\n3rd,0,\"Ford, Miss Doolina Margaret\",21,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,female\r\n3rd,0,\"Ford, Mr Edward Watson\",18,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,male\r\n3rd,0,\"Ford, Miss Maggie\",9,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,female\r\n3rd,0,\"Ford, Mrs Edward (Margaret Ann)\",48,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,female\r\n3rd,0,\"Ford, Mr Neil Watson\",16,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,male\r\n3rd,0,\"Fox, Mr Patrick\",NA,Queenstown,\"Ireland New York, NY\",,,,male\r\n3rd,0,\"Franklin, Mr Charles\",NA,Southampton,,,,,male\r\n3rd,0,\"Gallagher, Mr Martin\",25,Queenstown,\"New York, NY\",,,,male\r\n3rd,0,\"Garfirth, Mr John\",NA,Southampton,,,,,male\r\n3rd,1,\"Georges, Mrs Shahini Weappi\",NA,Cherbourg,\"Youngstown, OH\",,,,female\r\n3rd,0,\"Gilinski, Mr Leslie\",22,Southampton,,,,,male\r\n3rd,1,\"Gilnagh, Miss Katie\",16,Queenstown,\"Co Longford, Ireland New York, NY\",,,,female\r\n3rd,1,\"Glynn, Miss Mary Agatha\",NA,Queenstown,\"Co Clare, Ireland Washington, DC\",,,13,female\r\n3rd,0,\"Goldsmith, Mr Frank John\",33,Southampton,\"Strood, Kent, England Detroit, MI\",,,,male\r\n3rd,1,\"Goldsmith, Mrs Frank John (Emily A. Brown)\",NA,Southampton,\"Strood, Kent, England Detroit, MI\",,,C,female\r\n3rd,1,\"Goldsmith, Master Frank John William\",9,Southampton,\"Strood, Kent, England Detroit, MI\",,,C,male\r\n3rd,0,\"Goldsmith, Mr Nathan\",41,Southampton,\"Philadelphia, PA\",,,,male\r\n3rd,0,\"Goncalves, Mr Manuel Estanslas\",38,Southampton,Portugal,,,,male\r\n3rd,0,\"Goodwin, Mr Frederick\",40,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Mrs Frederick (Augusta)\",43,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,female\r\n3rd,0,\"Goodwin, Mr Charles E.\",14,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Miss Lillian A.\",16,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,female\r\n3rd,0,\"Goodwin, Master Harold V.\",9,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Miss Jessie A.\",10,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,female\r\n3rd,0,\"Goodwin, Master Sidney L.\",6,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Master William F.\",11,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Green, Mr George\",40,Southampton,\"Dorking, Surrey, England\",,,,male\r\n3rd,0,\"Gronnestad, Mr Daniel Danielsen\",32,Southampton,\"Foresvik, Norway Portland, ND\",,,,male\r\n3rd,0,\"Guest, Mr Robert\",NA,Southampton,,,,,male\r\n3rd,0,\"Gustafsson, Mr Alfred Ossian\",20,Southampton,\"Waukegan, Chicago, IL\",,,,male\r\n3rd,0,\"Gustafsson, Mr Anders Vilhelm\",37,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,male\r\n3rd,0,\"Gustafsson, Mr Johan Birger\",28,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,male\r\n3rd,0,\"Gustafsson, Mr Karl Gideon\",19,Southampton,\"Myren, Sweden New York, NY\",,,,male\r\n3rd,0,\"Haas, Miss Aloisia\",NA,,,,,,female\r\n3rd,0,\"Hagardon, Miss Kate\",NA,,,,,,female\r\n3rd,0,\"Hagland, Mr Ingvald Olsen\",NA,,,,,,male\r\n3rd,0,\"Hagland, Mr Konrad Mathias Reiersen\",NA,,,,,,male\r\n3rd,0,\"Hakkarainen, Mr Pekko Pietari\",NA,,,,,,male\r\n3rd,1,\"Hakkarainen, Mrs Pekko Pietari\",NA,,,,,,female\r\n3rd,0,\"Hampe, Mr Leon\",NA,,,,,,male\r\n3rd,0,\"Hansen, Mr Claus Peter\",NA,,,,,,male\r\n3rd,1,\"Hansen, Mrs Claus Peter\",NA,,,,,,female\r\n3rd,0,\"Hansen, Mr Henrik Juul\",NA,,,,,,male\r\n3rd,0,\"Hansen, Mr Henry Damsgaard\",NA,,,,,,male\r\n3rd,0,\"Harknett, Miss Alice\",NA,,,,,,female\r\n3rd,0,\"Harmer, Mr Abraham\",NA,,,,,,male\r\n3rd,0,\"Hart, Mr Henry\",NA,,,,,,male\r\n3rd,0,\"Hassan, Mr M. Houssein\",NA,,,,,,male\r\n3rd,0,\"Healy, Miss Nora\",NA,,,,,,female\r\n3rd,1,\"Hedman, Mr Oscar\",NA,,,,,,male\r\n3rd,0,\"Hee, Mr Ling\",NA,,,,,,male\r\n3rd,0,\"Hegarty, Miss Nora\",NA,,,,,,female\r\n3rd,1,\"Heikkinen, Miss Laina\",NA,,,,,,female\r\n3rd,0,\"Heininen, Miss Wendla Maria\",NA,,,,,,female\r\n3rd,1,\"Hellstrom, Hilda Maria\",NA,,,,,,female\r\n3rd,0,\"Hemming, Miss Nora\",NA,,,,,,female\r\n3rd,0,\"Hendekovic, Mr Ignaz\",NA,,,,,,male\r\n3rd,0,\"Henery, Delia\",NA,,,,,,female\r\n3rd,0,\"Henriksson, Jenny Lovisa\",NA,,,,,,female\r\n3rd,1,\"Hirvonen, Mrs Alexander\",NA,,,,,,female\r\n3rd,0,\"Hirvonen, Miss Hildur E.\",NA,,,,,,female\r\n3rd,0,\"Holm, Mr John Frederik Alexander\",NA,,,,,,male\r\n3rd,0,\"Holthen, Mr Johan Martin\",NA,,,,,,male\r\n3rd,1,\"Honkanen, Miss Eluna\",NA,,,,,,female\r\n3rd,0,\"Horgan, Mr John\",NA,,,,,,male\r\n3rd,1,\"Howard, Miss May\",NA,,,,,,female\r\n3rd,0,\"Humblin, Mr Adolf Mathias Nicolai Olsen\",NA,,,,,,male\r\n3rd,1,\"Hyman, Mr Abraham\",NA,,,,,,male\r\n3rd,0,\"Ilieff, Mr Ylio\",NA,,,,,,male\r\n3rd,0,\"Ilmakangas, Miss Ida Livija\",NA,,,,,,female\r\n3rd,0,\"Ilmakangas, Miss Pieta Sofia\",NA,,,,,,female\r\n3rd,0,\"Ivanoff, Mr Konio\",NA,,,,,,male\r\n3rd,1,\"Jansen, Mr Carl Olof\",NA,,,,,,male\r\n3rd,0,\"Jardin, Mr Jose Netto\",NA,,,,,,male\r\n3rd,1,\"Jensen, Miss Carla Christine\",NA,,,,,,female\r\n3rd,0,\"Jensen, Mr Hans Peder\",NA,,,,,,male\r\n3rd,0,\"Jensen, Mr Niels Peder\",NA,,,,,,male\r\n3rd,0,\"Jensen, Mr Svend Lauritz\",NA,,,,,,male\r\n3rd,1,\"Jermyn, Miss Annie\",NA,,,,,,female\r\n3rd,0,\"Johannesen-Bratthammer, Mr Bernt\",NA,,,,,,male\r\n3rd,0,\"Johanson, Mr Jakob Alfred\",NA,,,,,,male\r\n3rd,0,\"Johansson, Mr Erik\",NA,,,,,,male\r\n3rd,0,\"Johansson, Mr Gustaff Joel\",NA,,,,,,male\r\n3rd,1,\"Johansson, Mr Karl Johan\",NA,,,,,,male\r\n3rd,0,\"Johansson, Mr Nils\",NA,,,,,,male\r\n3rd,1,\"Johansson, Oscar L.\",NA,,,,,,male\r\n3rd,0,\"Johnson, Mr Alfred\",NA,,,,,,male\r\n3rd,1,\"Johnson, Miss Eleanor Ileen\",NA,,,,,,female\r\n3rd,0,\"Johnson, Mr Malkolm Joackim\",NA,,,,,,male\r\n3rd,1,\"Johnson, Master Harold Theodor\",NA,,,,,,male\r\n3rd,0,\"Johnson, Mrs Oscar W.\",NA,,,,,,female\r\n3rd,0,\"Johnson, Mr William Cahoone Jr.\",NA,,,,,,male\r\n3rd,0,\"Johnston, Mr Andrew G.\",NA,,,,,,male\r\n3rd,0,\"Johnston, Mrs Andrew G.\",NA,,,,,,female\r\n3rd,0,\"Johnston, Miss Catherine H.\",NA,,,,,,female\r\n3rd,0,\"Johnston, Master William A.\",NA,,,,,,male\r\n3rd,0,\"Jonkoff, Mr Lazor\",NA,,,,,,male\r\n3rd,1,\"Jonsson, Mr Carl\",NA,,,,,,male\r\n3rd,0,\"Jonsson, Nils Hilding\",NA,,,,,,male\r\n3rd,0,\"Jussila, Miss Aina Maria\",NA,,,,,,female\r\n3rd,1,\"Jussila, Mr Erik\",NA,,,,,,male\r\n3rd,0,\"Jussila, Miss Katriina\",NA,,,,,,female\r\n3rd,0,\"Kallio, Mr Nikolai Erland\",NA,,,,,,male\r\n3rd,0,\"Kalvig, Mr Johannes K. Halverson\",NA,,,,,,male\r\n3rd,0,\"Karajic, Mr Milan\",NA,,,,,,male\r\n3rd,1,\"Karlsson, Mr Einar Gervasius\",NA,,,,,,male\r\n3rd,0,\"Karlsson, Mr Julius Konrad Eugen\",NA,,,,,,male\r\n3rd,0,\"Karlsson, Mr Nils August\",NA,,,,,,male\r\n3rd,1,\"Karun, Miss Anna Mary\",NA,,,,,,female\r\n3rd,0,\"Karun, Mr Franz\",NA,,,,,,male\r\n3rd,0,\"Kassem, Mr Fared\",NA,,,,,,male\r\n3rd,0,\"Keane, Mr Andrew\",NA,,,,,,male\r\n3rd,0,\"Keefe, Mr Arthur\",NA,,,,,,male\r\n3rd,0,\"Kekic, Mr Tido\",NA,,,,,,male\r\n3rd,1,\"Kelly, Miss Anna Kate\",NA,,,,,,female\r\n3rd,0,\"Kelly, Mr James\",NA,,,,,,male\r\n3rd,0,\"Kelly, Mr James\",NA,,,,,,male\r\n3rd,1,\"Kelly, Miss Mary\",NA,,,,,,female\r\n3rd,0,\"Kennedy, Mr John\",NA,,,,,,male\r\n3rd,0,\"Khalil, Mr Betros\",NA,,,,,,male\r\n3rd,0,\"Khalil, Mrs Betros\",NA,,,,,,female\r\n3rd,0,\"Khalil, Mr Saad\",NA,,,,,,male\r\n3rd,0,\"Kiernan, Mr John\",NA,,,,,,male\r\n3rd,0,\"Kiernan, Mr Philip\",NA,,,,,,male\r\n3rd,0,\"Kilgannon, Mr Thomas\",NA,,,,,,male\r\n3rd,1,\"Kink, Mr Anton\",NA,,,,,,male\r\n3rd,0,\"Kink, Mrs Anton (Louise Heilmann)\",NA,,,,,,female\r\n3rd,1,\"Kink, Miss Louise Gretchen\",NA,,,,,,female\r\n3rd,0,\"Kink, Miss Maria\",NA,,,,,,female\r\n3rd,0,\"Kink, Mr Vincenz\",NA,,,,,,male\r\n3rd,0,\"Klasen, Miss Gertrud Emilia\",NA,,,,,,female\r\n3rd,0,\"Klasen, Mrs Hulda Kristina\",NA,,,,,,female\r\n3rd,0,\"Klasen, Mr Klas Albin\",NA,,,,,,male\r\n3rd,0,\"Kraeff, Mr Theodor\",NA,,,,,,male\r\n3rd,1,\"Krekorian, Mr Neshan\",NA,,,,,,male\r\n3rd,0,\"Lahowd, Mr Sarkis\",NA,,,,,,male\r\n3rd,0,\"Laitinen, Miss Kritina Sofia\",NA,,,,,,female\r\n3rd,0,\"Laleff, Mr Kristo\",NA,,,,,,male\r\n3rd,1,\"Lam, Mr Ali\",NA,,,,,,male\r\n3rd,0,\"Lam, Mr Len\",NA,,,,,,male\r\n3rd,1,\"Landegren, Miss Aurora Adelia\",NA,,,,,,female\r\n3rd,0,\"Lane, Mr Patrick\",NA,,,,,,male\r\n3rd,1,\"Lang, Mr Fang\",NA,,,,,,male\r\n3rd,0,\"Larsson, Mr August Viktor\",NA,,,,,,male\r\n3rd,0,\"Larsson, Mr Bengt Edvin\",NA,,,,,,male\r\n3rd,0,\"Larsson-Rondberg, Mr Edvard\",NA,,,,,,male\r\n3rd,1,\"Leeni, Mr Fahim\",NA,,,,,,male\r\n3rd,0,\"Lefebre, Mrs Frank\",NA,,,,,,female\r\n3rd,0,\"Lefebre, Master Henry\",NA,,,,,,male\r\n3rd,0,\"Lefebre, Miss Ida\",NA,,,,,,female\r\n3rd,0,\"Lefebre, Miss Jeannie\",NA,,,,,,female\r\n3rd,0,\"Lefebre, Miss Mathilde\",NA,,,,,,female\r\n3rd,0,\"Leinonen, Mr Antti Gustaf\",NA,,,,,,male\r\n3rd,0,\"Lemberopolous, Mr Peter L.\",NA,,,,,,male\r\n3rd,0,\"Lemom, Mr Denis\",NA,,,,,,male\r\n3rd,0,\"Lemon, Miss Mary\",NA,,,,,,female\r\n3rd,0,\"Leonard, Mr Lionel\",NA,,,,,,male\r\n3rd,0,\"Lester, Mr James\",NA,,,,,,male\r\n3rd,0,\"Lindahl, Miss Agda V.\",NA,,,,,,female\r\n3rd,0,\"Lindblom, Miss Augusta Charlotta\",NA,,,,,,female\r\n3rd,0,\"Lindell, Mr Edvard Bengtsson\",NA,,,,,,male\r\n3rd,0,\"Lindell, Mrs Edvard Bengtsson\",NA,,,,,,female\r\n3rd,1,\"Lindqvist, Eino William\",NA,,,,,,male\r\n3rd,0,\"Linehan, Mr Michael\",NA,,,,,,male\r\n3rd,0,\"Ling, Mr Lee\",NA,,,,,,male\r\n3rd,0,\"Lithman, Mr Simon\",NA,,,,,,male\r\n3rd,0,\"Lobb, Mr William Arthur\",NA,,,,,,male\r\n3rd,0,\"Lobb, Mrs William Arthur\",NA,,,,,,female\r\n3rd,0,\"Lockyer, Mr Edward\",NA,,,,,,male\r\n3rd,0,\"Lovell, Mr John\",NA,,,,,,male\r\n3rd,1,\"Lulich, Mr Nicola\",NA,,,,,,male\r\n3rd,0,\"Lundahl, Mr Johan\",NA,,,,,,male\r\n3rd,1,\"Lundin, Miss Olga Elida\",NA,,,,,,female\r\n3rd,0,\"Lundstrom, Mr Thure Edvin\",NA,,,,,,male\r\n3rd,0,\"Lyntakoff, Mr Stanko\",NA,,,,,,male\r\n3rd,0,\"MacKay, Mr George William\",NA,,,,,,male\r\n3rd,1,\"Madigan, Miss Margaret\",NA,,,,,,female\r\n3rd,0,\"Madsen, Mr Frithiof\",NA,,,,,,male\r\n3rd,0,\"Maenpaa, Mr Matti Alexanteri\",NA,,,,,,male\r\n3rd,0,\"Mahon, Miss Delia\",NA,,,,,,female\r\n3rd,0,\"Maisner, Mr Simon\",NA,,,,,,male\r\n3rd,0,\"Makinen, Mr Kalle Edvard\",NA,,,,,,male\r\n3rd,1,\"Mamee, Mr Hanna\",NA,,,,,,male\r\n3rd,0,\"Mangan, Miss Mary\",NA,,,,,,female\r\n3rd,1,\"Mannion, Miss Margareth\",NA,,,,,,female\r\n3rd,0,\"Mansour, Mr Hanna\",NA,,,,,,male\r\n3rd,0,\"Mardirosian, Mr Sarkis\",NA,,,,,,male\r\n3rd,0,\"Marinko, Mr Dmitri\",NA,,,,,,male\r\n3rd,0,\"Markim, Mr Johann\",NA,,,,,,male\r\n3rd,0,\"Markoff, Mr Marin\",NA,,,,,,male\r\n3rd,1,\"Masselmany, Mrs Fatima\",NA,,,,,,female\r\n3rd,0,\"Matinoff, Mr Nicola\",NA,,,,,,male\r\n3rd,1,\"McCarthy, Miss Katie\",NA,,,,,,female\r\n3rd,0,\"McCormack, Mr Thomas J.\",NA,,,,,,male\r\n3rd,0,\"McCoy, Miss Agnes\",NA,,,,,,female\r\n3rd,0,\"McCoy, Miss Alice\",NA,,,,,,female\r\n3rd,0,\"McCoy, Mr Bernard\",NA,,,,,,male\r\n3rd,0,\"McDermott, Miss Delia\",NA,,,,,,female\r\n3rd,0,\"McElroy, Mr Michael\",NA,,,,,,male\r\n3rd,1,\"McGovern, Mrs Hugh\",NA,,,,,,female\r\n3rd,0,\"McGowan, Miss Anna\",NA,,,,,,female\r\n3rd,0,\"McGowan, Miss Katherine\",NA,,,,,,female\r\n3rd,0,\"McMahon, Mr Martin\",NA,,,,,,male\r\n3rd,0,\"McNamee, Mr Neal\",NA,,,,,,male\r\n3rd,0,\"McNamee, Mrs Neal\",NA,,,,,,female\r\n3rd,0,\"Meanwell, Miss Marion Ogden\",NA,,,,,,female\r\n3rd,0,\"Mechen, Mr John\",NA,,,,,,male\r\n3rd,0,\"Meek, Mrs Thomas\",NA,,,,,,female\r\n3rd,0,\"Melkebuk, Mrs Philemon\",NA,,,,,,female\r\n3rd,0,\"Meo, Mr Alfonso\",NA,,,,,,male\r\n3rd,1,\"Midtsjo, Mr Karl Albert\",NA,,,,,,male\r\n3rd,0,\"Mihoff, Mr Stoytcho\",NA,,,,,,male\r\n3rd,0,\"Miles, Mr Frank\",NA,,,,,,male\r\n3rd,0,\"Mineff, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Minkoff, Mr Lazar\",NA,,,,,,male\r\n3rd,0,\"Mirko, Mr Dika\",NA,,,,,,male\r\n3rd,0,\"Mitkoff, Mr Mito\",NA,,,,,,male\r\n3rd,1,\"Mocklare, Miss Helen Mary\",NA,,,,,,female\r\n3rd,0,\"Moen, Mr Sigurd H.\",NA,,,,,,male\r\n3rd,1,\"Moor, Mrs Beila\",NA,,,,,,female\r\n3rd,0,\"Moor, Master Meier\",NA,,,,,,male\r\n3rd,0,\"Moore, Mr Leonard Charles\",NA,,,,,,male\r\n3rd,1,\"Moran, Miss Bertha\",NA,,,,,,female\r\n3rd,0,\"Moran, Mr Daniel J.\",NA,,,,,,male\r\n3rd,0,\"Moran, Mr James\",NA,,,,,,male\r\n3rd,0,\"Morley, Mr Henry Samuel\",NA,,,,,,male\r\n3rd,0,\"Morrow, Mr Thomas Rowan\",NA,,,,,,male\r\n3rd,1,\"Moubarek (Borak), Mr Hanna (John)\",NA,,,,,,male\r\n3rd,0,\"Moubarek, Mrs George\",NA,,,,,,female\r\n3rd,0,\"Moubarek, Master George\",NA,,,,,,male\r\n3rd,0,\"Moubarek, Master William George\",NA,,,,,,male\r\n3rd,0,\"Moss, Albert Johan\",NA,,,,,,male\r\n3rd,0,\"Moussa, Mrs Mantoura Baloics\",NA,,,,,,female\r\n3rd,0,\"Moutal, Mr Rahamin\",NA,,,,,,male\r\n3rd,1,\"Mullins, Miss Katie\",NA,,,,,,female\r\n3rd,0,\"Mulvihill, Miss Bertha E.\",NA,,,,,,female\r\n3rd,0,\"Murdlin, Mr Joseph\",NA,,,,,,male\r\n3rd,0,\"Murphy, Miss Katherine\",NA,,,,,,female\r\n3rd,0,\"Murphy, Miss Margaret\",NA,,,,,,female\r\n3rd,0,\"Murphy, Miss Nora\",NA,,,,,,female\r\n3rd,0,\"Myhrman, Mr Pehr Fabian Oliver Malkolm\",NA,,,,,,male\r\n3rd,1,\"Nackid, Miss Maria\",NA,,,,,,female\r\n3rd,0,\"Nackid, Mr Said\",NA,,,,,,male\r\n3rd,0,\"Nackid, Mrs Said\",NA,,,,,,female\r\n3rd,0,\"Nahill, Mr Toufik\",NA,,,,,,male\r\n3rd,0,\"Naidenoff, Mr Penko\",NA,,,,,,male\r\n3rd,0,\"Nancarrow, W. H.\",NA,,,,,,male\r\n3rd,0,\"Niklasen, Sander\",NA,,,,,,male\r\n3rd,0,\"Nosworthy, Richard C.\",NA,,,,,,male\r\n3rd,1,\"Najib, Miss Adele Kiamie\",NA,,,,,,female\r\n3rd,0,\"Nancarrow, Mr William Henry\",NA,,,,,,male\r\n3rd,0,\"Nankoff, Mr Minko\",NA,,,,,,male\r\n3rd,0,\"Nasr, Mr Mustafa\",NA,,,,,,male\r\n3rd,0,\"Nassr, Mr Saade Jean\",NA,,,,,,male\r\n3rd,0,\"Naughton, Miss Hannah\",NA,,,,,,female\r\n3rd,0,\"Nemaugh, Mr Robert\",NA,,,,,,male\r\n3rd,0,\"Nenkoff, Mr Christo\",NA,,,,,,male\r\n3rd,1,\"Nicola-Yarred, Miss Jamila\",NA,,,,,,female\r\n3rd,0,\"Nicola-Yarred, Master Elias\",NA,,,,,,male\r\n3rd,0,\"Nieminen, Miss Manta Josefina\",NA,,,,,,female\r\n3rd,0,\"Niklasson, Mr Samuel\",NA,,,,,,male\r\n3rd,0,\"Nilsson, Mr August Ferdinand\",NA,,,,,,male\r\n3rd,1,\"Nilsson, Miss Berta Olivia\",NA,,,,,,female\r\n3rd,0,\"Nilsson, Miss Helmina Josefina\",NA,,,,,,female\r\n3rd,0,\"Niskanen, Mr Johan\",NA,,,,,,male\r\n3rd,0,\"Nosworthy, Mr Richard Cater\",NA,,,,,,male\r\n3rd,1,\"Novel, Mansouer\",NA,,,,,,male\r\n3rd,0,\"Nysten, Miss Anna\",NA,,,,,,female\r\n3rd,0,\"Nysveen, Mr Johan H.\",NA,,,,,,male\r\n3rd,0,\"O'Brien, Mr Denis\",NA,,,,,,male\r\n3rd,0,\"O'Brien, Mr Thomas\",NA,,,,,,male\r\n3rd,1,\"O'Brien, Mrs Thomas\",NA,,,,,,female\r\n3rd,0,\"O'Connell, Mr Patrick D.\",NA,,,,,,male\r\n3rd,0,\"O'Connor, Mr Maurice\",NA,,,,,,male\r\n3rd,0,\"O'Connor, Mr Patrick\",NA,,,,,,male\r\n3rd,1,\"Odahl, Mr Nils Martin\",NA,,,,,,male\r\n3rd,0,\"O'Dwyer, Miss Nellie\",NA,,,,,,female\r\n3rd,0,\"Ohman, Miss Velin\",NA,,,,,,female\r\n3rd,0,\"O'Keefe, Mr Patrick\",NA,,,,,,male\r\n3rd,0,\"OLeary, Miss Norah\",NA,,,,,,female\r\n3rd,0,\"Olsen, Master Arthur\",NA,,,,,,male\r\n3rd,0,\"Olsen, Mr Charlie (Carl)\",NA,,,,,,male\r\n3rd,0,\"Olsen, Mr Henry Margido\",NA,,,,,,male\r\n3rd,0,\"Olsen, Mr Ole M.\",NA,,,,,,male\r\n3rd,0,\"Olsson, Miss Elida\",NA,,,,,,female\r\n3rd,0,\"Olsson, Mr Nils Johan\",NA,,,,,,male\r\n3rd,1,\"Olsson, Mr Oscar Johansson\",NA,,,,,,male\r\n3rd,0,\"O'Neill, Miss Bridget\",NA,,,,,,female\r\n3rd,0,\"Oreskovic, Mr Jeko\",NA,,,,,,male\r\n3rd,0,\"Oreskovic, Mr Luka\",NA,,,,,,male\r\n3rd,0,\"Oreskovic, Mr Maria\",NA,,,,,,male\r\n3rd,0,\"Osen, Mr Olof Elon\",NA,,,,,,male\r\n3rd,1,\"Osman, Miss Maria\",NA,,,,,,female\r\n3rd,0,\"O'Sullivan, Miss Bridget\",NA,,,,,,female\r\n3rd,0,\"Panula, Mr Ernesti Arvid\",NA,,,,,,male\r\n3rd,0,\"Panula, Mr Jaako Arnold\",NA,,,,,,male\r\n3rd,0,\"Panula, Master Juha Niilo\",NA,,,,,,male\r\n3rd,0,\"Panula, Mrs John\",NA,,,,,,female\r\n3rd,0,\"Panula, Master Urho Abraham\",NA,,,,,,male\r\n3rd,0,\"Panula, Master William\",NA,,,,,,male\r\n3rd,0,\"Pasic, Mr Jakob\",NA,,,,,,male\r\n3rd,0,\"Paulner, Mr Uscher\",NA,,,,,,male\r\n3rd,0,\"Paulsson, Master Gosta Leonard\",NA,,,,,,male\r\n3rd,0,\"Paulsson, Mrs Nils\",NA,,,,,,female\r\n3rd,0,\"Paulsson, Master Paul Folke\",NA,,,,,,male\r\n3rd,0,\"Paulsson, Miss Stina Viola\",NA,,,,,,female\r\n3rd,0,\"Paulsson, Miss Torborg Danira\",NA,,,,,,female\r\n3rd,0,\"Pavlovic, Mr Stefo\",NA,,,,,,male\r\n3rd,0,\"Peacock, Master Alfred Edward\",NA,,,,,,male\r\n3rd,0,\"Peacock, Mrs Benjamin\",NA,,,,,,female\r\n3rd,0,\"Peacock, Miss Treasteall\",NA,,,,,,female\r\n3rd,0,\"Pearce, Mr Ernest\",NA,,,,,,male\r\n3rd,0,\"Pecruic, Mr Mate\",NA,,,,,,male\r\n3rd,0,\"Pecruic, Mr Tome\",NA,,,,,,male\r\n3rd,0,\"Pedersen, Mr Olaf\",NA,,,,,,male\r\n3rd,0,\"Peduzzi, Mr Joseph\",NA,,,,,,male\r\n3rd,1,\"Pekoniemi, Mr Edvard\",NA,,,,,,male\r\n3rd,0,\"Peltomaki, Nikolai Johannes\",NA,,,,,,male\r\n3rd,0,\"Perkin, Mr John Henry\",NA,,,,,,male\r\n3rd,1,\"Persson, Mr Ernst Ulrik\",NA,,,,,,male\r\n3rd,0,\"Peter (Joseph), Miss Mary\",NA,,,,,,female\r\n3rd,0,\"Peter (Joseph), Mrs Catherine\",NA,,,,,,female\r\n3rd,0,\"Peter (Joseph), Master Michael J.\",NA,,,,,,male\r\n3rd,0,\"Peters, Miss Katie\",NA,,,,,,female\r\n3rd,0,\"Petersen, Mr Marius\",NA,,,,,,male\r\n3rd,0,\"Petranec, Miss Matilda\",NA,,,,,,female\r\n3rd,0,\"Petroff, Mr Nedeca\",NA,,,,,,male\r\n3rd,0,\"Petroff, Mr Pentcho\",NA,,,,,,male\r\n3rd,0,\"Pettersson, Miss Ellen Natalia\",NA,,,,,,female\r\n3rd,0,\"Peterson, Mr Johan Emil\",NA,,,,,,male\r\n3rd,1,\"Pickard (Trembisky), Mr Berk\",NA,,,,,,male\r\n3rd,0,\"Plotcharsky, Mr Vasil\",NA,,,,,,male\r\n3rd,0,\"Potchett, Mr George\",NA,,,,,,male\r\n3rd,0,\"Radeff, Mr Alexander\",NA,,,,,,male\r\n3rd,0,\"Raibid, Mr Razi\",NA,,,,,,male\r\n3rd,0,\"Reed, Mr James George\",NA,,,,,,male\r\n3rd,0,\"Reynolds, Mr Harold\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Albert\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Arthur\",NA,,,,,,male\r\n3rd,0,\"Rice, Master George\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Eric\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Eugene\",NA,,,,,,male\r\n3rd,0,\"Rice, Mrs William\",NA,,,,,,female\r\n3rd,0,\"Riihiivouri, Miss Sanni\",NA,,,,,,female\r\n3rd,0,\"Rintamaki, Mr Matti\",NA,,,,,,male\r\n3rd,1,\"Riordan, Miss Hannah\",NA,,,,,,female\r\n3rd,0,\"Risien, Mr Samuel\",NA,,,,,,male\r\n3rd,0,\"Risien, Mrs Samuel\",NA,,,,,,female\r\n3rd,0,\"Robins, Mr Alexander A.\",NA,,,,,,male\r\n3rd,0,\"Robins, Mrs Alexander A.\",NA,,,,,,female\r\n3rd,0,\"Rommetvedt, Mr Karl Kristian Knut\",NA,,,,,,male\r\n3rd,0,\"Rogers, Mr William John\",NA,,,,,,male\r\n3rd,0,\"Rosblom, Mrs Viktor\",NA,,,,,,female\r\n3rd,0,\"Rosblom, Miss Salli Helena\",NA,,,,,,female\r\n3rd,0,\"Rosblom, Mr Viktor Rickard\",NA,,,,,,male\r\n3rd,1,\"Roth, Miss Sarah\",NA,,,,,,female\r\n3rd,0,\"Rouse, Mr Richard Henry\",NA,,,,,,male\r\n3rd,0,\"Rush, Mr Alfred George John\",NA,,,,,,male\r\n3rd,1,\"Ryan, Mr Edward Ryan\",NA,,,,,,male\r\n3rd,0,\"Ryan, Mr Patrick\",NA,,,,,,male\r\n3rd,0,\"Saad, Mr Amin\",NA,,,,,,male\r\n3rd,1,\"Saad, Khalil\",NA,,,,,,male\r\n3rd,0,\"Sadlier, Mr Matthew\",NA,,,,,,male\r\n3rd,0,\"Sadowitz, Mr Harry\",NA,,,,,,male\r\n3rd,0,\"Sage, Miss Ada\",NA,,,,,,female\r\n3rd,0,\"Sage, Miss Constance\",NA,,,,,,female\r\n3rd,0,\"Sage, Miss Dorothy\",NA,,,,,,female\r\n3rd,0,\"Sage, Mr Douglas\",NA,,,,,,male\r\n3rd,0,\"Sage, Mr Frederick\",NA,,,,,,male\r\n3rd,0,\"Sage, Mr George\",NA,,,,,,male\r\n3rd,0,\"Sage, Mr John\",NA,,,,,,male\r\n3rd,0,\"Sage, Mrs John\",NA,,,,,,female\r\n3rd,0,\"Sage, Miss Stella\",NA,,,,,,female\r\n3rd,0,\"Sage, Thomas (child)\",NA,,,,,,male\r\n3rd,0,\"Sage, Master William\",NA,,,,,,male\r\n3rd,0,\"Salander, Mr Karl Johan\",NA,,,,,,male\r\n3rd,1,\"Salkjelsvik, Miss Anna\",NA,,,,,,female\r\n3rd,0,\"Salonen, Mr Johan Werner\",NA,,,,,,male\r\n3rd,0,\"Samaan, Mr Elias\",NA,,,,,,male\r\n3rd,0,\"Samaan, Mr Hanna\",NA,,,,,,male\r\n3rd,0,\"Samaan, Mr Youssef\",NA,,,,,,male\r\n3rd,1,\"Sandstrom, Miss Hjalmar\",NA,,,,,,female\r\n3rd,0,\"Sandstrom, Miss Beatrice Irene\",NA,,,,,,female\r\n3rd,0,\"Sandstrom, Miss Marguerite Rut\",NA,,,,,,female\r\n3rd,0,\"Sather, Simon Sivertsen\",NA,,,,,,male\r\n3rd,0,\"Saundercock, William Henry\",NA,,,,,,male\r\n3rd,0,\"Sawyer, Mr Frederick\",NA,,,,,,male\r\n3rd,0,\"Scanlan, Mr James\",NA,,,,,,male\r\n3rd,0,\"Sdycoff, Mr Todor\",NA,,,,,,male\r\n3rd,0,Seman Master Betros,NA,,,,,,male\r\n3rd,0,\"Serota, Mr Maurice\",NA,,,,,,male\r\n3rd,0,\"Shaughnesay, Mr Patrick\",NA,,,,,,male\r\n3rd,0,\"Shedid (Sitik), Mr Daher (Docart)\",NA,,,,,,male\r\n3rd,1,\"Sheerlinck, Mr Jean\",NA,,,,,,male\r\n3rd,0,\"Shellard, Mr Frederick B.\",NA,,,,,,male\r\n3rd,1,\"Shine, Miss Ellen\",NA,,,,,,female\r\n3rd,0,\"Shorney, Mr Charles\",NA,,,,,,male\r\n3rd,0,\"Simmons, Mr John\",NA,,,,,,male\r\n3rd,0,\"Sirayanian, Mr Arsun\",NA,,,,,,male\r\n3rd,0,\"Sivic, Mr Husen\",NA,,,,,,male\r\n3rd,0,\"Sivola, Mr Antti\",NA,,,,,,male\r\n3rd,1,\"Sjoblom, Miss Anna Sofia\",NA,,,,,,female\r\n3rd,0,\"Sholt, Mr Peter Andreas Lauritz Andersen\",NA,,,,,,male\r\n3rd,0,\"Skinner, Mr Henry John\",NA,,,,,,male\r\n3rd,0,\"Skoog, Master Harald\",NA,,,,,,male\r\n3rd,0,\"Skoog, Master Karl\",NA,,,,,,male\r\n3rd,0,\"Skoog, Miss Mabel\",NA,,,,,,female\r\n3rd,0,\"Skoog, Miss Margit\",NA,,,,,,female\r\n3rd,0,\"Skoog, Mr William\",NA,,,,,,male\r\n3rd,0,\"Skoog, Mrs William\",NA,,,,,,female\r\n3rd,0,\"Slabenoff, Mr Petco\",NA,,,,,,male\r\n3rd,0,\"Slocovski, Mr Selman\",NA,,,,,,male\r\n3rd,0,\"Smiljanovic, Mr Mile\",NA,,,,,,male\r\n3rd,1,\"Smyth, Miss Julia\",NA,,,,,,female\r\n3rd,0,\"Solvang, Mrs Lena Jacobsen\",NA,,,,,,female\r\n3rd,0,\"Somerton, Mr Francis William\",NA,,,,,,male\r\n3rd,1,\"Sop, Mr Jules\",NA,,,,,,male\r\n3rd,0,\"Spector, Mr Woolf\",NA,,,,,,male\r\n3rd,0,\"Staneff, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Stankovic, Mr Jovan\",NA,,,,,,male\r\n3rd,1,\"Stanley, Miss Amy Zilla Elsie\",NA,,,,,,female\r\n3rd,0,\"Stanley, Mr Edward Roland\",NA,,,,,,male\r\n3rd,0,\"Storey, Mr Thomas\",NA,,,,,,male\r\n3rd,0,\"Stoyehoff, Mr Ilia\",NA,,,,,,male\r\n3rd,0,\"Strandberg, Miss Ida Sofia\",NA,,,,,,female\r\n3rd,1,\"Stranden, Mr Juho\",NA,,,,,,male\r\n3rd,0,\"Strilic, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Strom, Mrs Wilhelm\",NA,,,,,,female\r\n3rd,0,\"Strom, Miss Telma (Selma) Matilda\",NA,,,,,,female\r\n3rd,1,\"Sunderland, Mr Victor Francis\",NA,,,,,,male\r\n3rd,0,\"Sundman, Mr Johan Julian\",NA,,,,,,male\r\n3rd,0,\"Sutehall, Mr Henry, Jr\",NA,,,,,,male\r\n3rd,0,\"Svensson, Mr Johan\",NA,,,,,,male\r\n3rd,1,\"Svensson, Mr Johan Cervin\",NA,,,,,,male\r\n3rd,0,\"Svensson, Mr Olof\",NA,,,,,,male\r\n3rd,0,\"Tannous, Mr Thomas\",NA,,,,,,male\r\n3rd,1,\"Tenglin, Mr Gunnar Isidor\",NA,,,,,,male\r\n3rd,0,\"Theobald, Mr Thomas Leonard\",NA,,,,,,male\r\n3rd,1,\"Thomas, Mrs Alexander\",NA,,,,,,female\r\n3rd,0,\"Thomas, Master Assad Alexander\",NA,,,,,,male\r\n3rd,0,\"Thomas, Mr Charles\",NA,,,,,,male\r\n3rd,0,\"Thomas, Mr John, Jr\",NA,,,,,,male\r\n3rd,0,\"Thomas, Mr John (? 1st/2nd class)\",NA,,,,,,male\r\n3rd,0,\"Thomson, Mr Alexander\",NA,,,,,,male\r\n3rd,0,\"Thorneycroft, Mr Percival\",NA,,,,,,male\r\n3rd,1,\"Thorneycroft, Mrs Percival\",NA,,,,,,female\r\n3rd,0,\"Tikkanen, Mr Juho\",NA,,,,,,male\r\n3rd,0,\"Tobin, Mr Roger\",NA,,,,,,male\r\n3rd,0,\"Todoroff, Mr Lalio\",NA,,,,,,male\r\n3rd,0,\"Toerber, Mr Ernest William\",NA,,,,,,male\r\n3rd,0,\"Tomlin, Mr Ernest Portage\",NA,,,,,,male\r\n3rd,0,\"Torfa, Mr Assad\",NA,,,,,,male\r\n3rd,1,\"Tornquist, Mr William Henry\",NA,,,,,,male\r\n3rd,0,\"Touma (Thomas), Mrs Darwin\",NA,,,,,,female\r\n3rd,0,\"Touma (Thomas), Master George\",NA,,,,,,male\r\n3rd,0,\"Touma (Thomas), Miss Hannah\",NA,,,,,,female\r\n3rd,0,\"Turcin, Mr Stefan\",NA,,,,,,male\r\n3rd,1,\"Turja, Miss Anna Sofia\",NA,,,,,,female\r\n3rd,0,\"Turkula, Mrs Hedvig\",NA,,,,,,female\r\n3rd,0,\"Uzelas, Mr Joso\",NA,,,,,,male\r\n3rd,0,\"Van Billiard, Mr Austin Blyler\",NA,,,,,,male\r\n3rd,0,\"Van Billiard, Master James William\",NA,,,,,,male\r\n3rd,0,\"Van Billiard, Master Walter John\",NA,,,,,,male\r\n3rd,0,\"Van der Planke, Miss Augusta\",NA,,,,,,female\r\n3rd,0,\"Van der Planke, Mr Jules\",NA,,,,,,male\r\n3rd,0,\"Van der Planke, Mrs Jules\",NA,,,,,,female\r\n3rd,0,\"Van der Planke, Mr Leon\",NA,,,,,,male\r\n3rd,0,\"Van der Steen, Mr Leo Peter\",NA,,,,,,male\r\n3rd,0,\"Van de Velde, Mr John Joseph\",NA,,,,,,male\r\n3rd,0,\"Vandewalle, Mr Nestor Cyriel\",NA,,,,,,male\r\n3rd,0,\"Van Impe, Miss Catharine\",NA,,,,,,female\r\n3rd,0,\"Van Impe, Mr Jean Baptiste\",NA,,,,,,male\r\n3rd,0,\"Van Impe, Mrs Jean Baptiste\",NA,,,,,,female\r\n3rd,1,\"Vartunian, Mr David\",NA,,,,,,male\r\n3rd,0,\"Vassilios, Mr Catavelas\",NA,,,,,,male\r\n3rd,0,\"Vendel, Mr Olof Wdvin\",NA,,,,,,male\r\n3rd,0,\"Vereruysse, Mr Victor\",NA,,,,,,male\r\n3rd,0,\"Vestrom, Miss Hulda Amanda Adolfina\",NA,,,,,,female\r\n3rd,0,\"Vonk, Mr Jenko\",NA,,,,,,male\r\n3rd,0,\"Ware, Mr Frederick\",NA,,,,,,male\r\n3rd,0,\"Warren, Mr Charles William\",NA,,,,,,male\r\n3rd,0,\"Wazli, Mr Yousif\",NA,,,,,,male\r\n3rd,0,\"Webber, Mr James\",NA,,,,,,male\r\n3rd,1,\"Wennerstrom, Mr August Edvard\",NA,,,,,,male\r\n3rd,0,\"Wenzel, Mr Linhart\",NA,,,,,,male\r\n3rd,0,\"Widegren, Mr Charles Peter\",NA,,,,,,male\r\n3rd,0,\"Wiklund, Mr Jacob Alfred\",NA,,,,,,male\r\n3rd,1,\"Wilkes, Mrs Ellen\",NA,,,,,,female\r\n3rd,0,\"Willer, Mr Aaron\",NA,,,,,,male\r\n3rd,0,\"Willey, Mr Edward\",NA,,,,,,male\r\n3rd,0,\"Williams, Mr Howard Hugh\",NA,,,,,,male\r\n3rd,0,\"Williams, Mr Leslie\",NA,,,,,,male\r\n3rd,0,\"Windelov, Mr Einar\",NA,,,,,,male\r\n3rd,0,\"Wirz, Mr Albert\",NA,,,,,,male\r\n3rd,0,\"Wiseman, Mr Phillippe\",NA,,,,,,male\r\n3rd,0,\"Wittevrongel, Mr Camiel\",NA,,,,,,male\r\n3rd,1,\"Yalsevac, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Yasbeck, Mr Antoni\",NA,,,,,,male\r\n3rd,1,\"Yasbeck, Mrs Antoni\",NA,,,,,,female\r\n3rd,0,\"Youssef, Mr Gerios\",NA,,,,,,male\r\n3rd,0,\"Zabour, Miss Hileni\",NA,,,,,,female\r\n3rd,0,\"Zabour, Miss Tamini\",NA,,,,,,female\r\n3rd,0,\"Zakarian, Mr Artun\",NA,,,,,,male\r\n3rd,0,\"Zakarian, Mr Maprieder\",NA,,,,,,male\r\n3rd,0,\"Zenn, Mr Philip\",NA,,,,,,male\r\n3rd,0,\"Zievens, Rene\",NA,,,,,,female\r\n3rd,0,\"Zimmerman, Leo\",NA,,,,,,male"
  },
  {
    "path": "week-3/week-3-1-class.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## ## Week 3-1 - Linear Regression - class notebook\\n\",\n    \"\\n\",\n    \"This notebook gives three examples of regression, that is, fitting a linear model to our data to find trends. For the finale, we're going to duplicate the analysis behind the Washington Post story \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from sklearn.linear_model import LinearRegression\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 1 - Single variable regression\\n\",\n    \"We'll start with some simple data on height and weight.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>name</th>\\n\",\n       \"      <th>height</th>\\n\",\n       \"      <th>weight</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>Joyce</td>\\n\",\n       \"      <td>51.3</td>\\n\",\n       \"      <td>50.5</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>Louise</td>\\n\",\n       \"      <td>56.3</td>\\n\",\n       \"      <td>77.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>Alice</td>\\n\",\n       \"      <td>56.5</td>\\n\",\n       \"      <td>84.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>James</td>\\n\",\n       \"      <td>57.3</td>\\n\",\n       \"      <td>83.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>Thomas</td>\\n\",\n       \"      <td>57.5</td>\\n\",\n       \"      <td>85.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>5</th>\\n\",\n       \"      <td>John</td>\\n\",\n       \"      <td>59.0</td>\\n\",\n       \"      <td>99.5</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>6</th>\\n\",\n       \"      <td>Jane</td>\\n\",\n       \"      <td>59.8</td>\\n\",\n       \"      <td>84.5</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>Jeffrey</td>\\n\",\n       \"      <td>62.5</td>\\n\",\n       \"      <td>84.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>8</th>\\n\",\n       \"      <td>Janet</td>\\n\",\n       \"      <td>62.5</td>\\n\",\n       \"      <td>112.5</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9</th>\\n\",\n       \"      <td>Carol</td>\\n\",\n       \"      <td>62.8</td>\\n\",\n       \"      <td>102.5</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>10</th>\\n\",\n       \"      <td>Henry</td>\\n\",\n       \"      <td>63.5</td>\\n\",\n       \"      <td>102.5</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>11</th>\\n\",\n       \"      <td>Judy</td>\\n\",\n       \"      <td>64.3</td>\\n\",\n       \"      <td>90.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>12</th>\\n\",\n       \"      <td>Robert</td>\\n\",\n       \"      <td>64.8</td>\\n\",\n       \"      <td>128.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <td>Barbara</td>\\n\",\n       \"      <td>65.3</td>\\n\",\n       \"      <td>98.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>14</th>\\n\",\n       \"      <td>Mary</td>\\n\",\n       \"      <td>66.5</td>\\n\",\n       \"      <td>112.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>15</th>\\n\",\n       \"      <td>William</td>\\n\",\n       \"      <td>66.5</td>\\n\",\n       \"      <td>112.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>16</th>\\n\",\n       \"      <td>Ronald</td>\\n\",\n       \"      <td>67.0</td>\\n\",\n       \"      <td>133.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>17</th>\\n\",\n       \"      <td>Alfred</td>\\n\",\n       \"      <td>69.0</td>\\n\",\n       \"      <td>112.5</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>18</th>\\n\",\n       \"      <td>Philip</td>\\n\",\n       \"      <td>72.0</td>\\n\",\n       \"      <td>150.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"       name  height  weight\\n\",\n       \"0     Joyce    51.3    50.5\\n\",\n       \"1    Louise    56.3    77.0\\n\",\n       \"2     Alice    56.5    84.0\\n\",\n       \"3     James    57.3    83.0\\n\",\n       \"4    Thomas    57.5    85.0\\n\",\n       \"5      John    59.0    99.5\\n\",\n       \"6      Jane    59.8    84.5\\n\",\n       \"7   Jeffrey    62.5    84.0\\n\",\n       \"8     Janet    62.5   112.5\\n\",\n       \"9     Carol    62.8   102.5\\n\",\n       \"10    Henry    63.5   102.5\\n\",\n       \"11     Judy    64.3    90.0\\n\",\n       \"12   Robert    64.8   128.0\\n\",\n       \"13  Barbara    65.3    98.0\\n\",\n       \"14     Mary    66.5   112.0\\n\",\n       \"15  William    66.5   112.0\\n\",\n       \"16   Ronald    67.0   133.0\\n\",\n       \"17   Alfred    69.0   112.5\\n\",\n       \"18   Philip    72.0   150.0\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"hw = pd.read_csv(\\\"height-weight.csv\\\")\\n\",\n    \"hw\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's look at the distribution of each of these variables.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x11bfb05c0>\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nAABJRU5ErkJggg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"hw.height.hist()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x11f389d30>\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAW4AAAD8CAYAAABXe05zAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBo\\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAADq5JREFUeJzt3X+M5Hddx/Hnmx601y5eqUcHvDZu\\nlaYGe2J7E4Q0kl1QvNLG84/GlNTKKWb/MFRizuAh0YQ/jDWKWBNEmwJFg6zatEoKHFZkJCS2uAe0\\n159Seyftpb8IcDInodz59o+ZynHs3n57t9/59r3zfCST3Zn57Hze7/vcvO67n/nOXGQmkqQ6XtB1\\nAZKk58bglqRiDG5JKsbglqRiDG5JKsbglqRiDG5JKsbglqRiDG5JKmZDGw+6efPmnJ2dbeOhW3H4\\n8GHOOuusrsuYKHueDtPYM9Tse+/evV/NzJc2GdtKcM/OzrK0tNTGQ7diMBgwNzfXdRkTZc/TYRp7\\nhpp9R8R/NR3rVokkFWNwS1IxBrckFWNwS1IxBrckFdMouCPi7Ii4JSIejIgHIuK1bRcmSVpe09MB\\nbwD2ZOZVEfEi4MwWa5IkncCqwR0Rm4DXATsBMvMZ4Jl2y5IkraTJVskFwNPAhyLiixFxU0TUekuS\\nJK0jsdp/FhwRfeBO4LLMvCsibgD+OzN/97hxC8ACQK/X27a4uNhSyWtvOBwyMzPTdRkTNRwO2X/o\\naGfzb92yaeJzTus6T1vPULPv+fn5vZnZbzK2SXC/DLgzM2fH138a2J2ZV6z0M/1+P33L+/PbYDBg\\n557Dnc1/4PoV//q0ZlrXedp6hpp9R0Tj4F51qyQznwAejYiLxje9Abj/FOqTJJ2CpmeVXAd8ZHxG\\nySPAr7RXkiTpRBoFd2Z+CWh0CC9JapfvnJSkYgxuSSrG4JakYgxuSSrG4JakYgxuSSrG4JakYgxu\\nSSrG4JakYgxuSSrG4JakYgxuSSrG4JakYgxuSSrG4JakYgxuSSrG4JakYgxuSSrG4JakYgxuSSrG\\n4JakYgxuSSrG4JakYgxuSSrG4JakYgxuSSpmQ5NBEXEA+CZwFDiSmf02i5IkraxRcI/NZ+ZXW6tE\\nktSIWyWSVExk5uqDIvYDXwcS+MvMvHGZMQvAAkCv19u2uLi4xqW2ZzgcMjMz03UZEzUcDtl/6Ghn\\n82/dsmnic07rOk9bz1Cz7/n5+b1Nt6GbBveWzDwYEecCdwDXZeZnVxrf7/dzaWmpccFdGwwGzM3N\\ndV3GRA0GA3buOdzZ/Aeuv2Lic07rOk9bz1Cz74hoHNyNtkoy8+D461PAbcCrT748SdKpWDW4I+Ks\\niHjxs98DbwTubbswSdLympxV0gNui4hnx/9NZu5ptSpJ0opWDe7MfAR41QRqkSQ14OmAklSMwS1J\\nxRjcklSMwS1JxRjcklSMwS1JxRjcklSMwS1JxRjcklSMwS1JxRjcklSMwS1JxRjcklSMwS1JxRjc\\nklSMwS1JxRjcklSMwS1JxRjcklSMwS1JxRjcklSMwS1JxRjcklSMwS1JxRjcklRM4+COiNMi4osR\\ncXubBUmSTuy5HHG/HXigrUIkSc00Cu6IOA+4Arip3XIkSatpesT9p8A7gP9tsRZJUgORmSceEHEl\\n8KbM/PWImAN+KzOvXGbcArAA0Ov1ti0uLrZQbjuGwyEzMzNdlzFRw+GQ/YeOdjb/1i2bJj5nl+u8\\n7+ChTubtbYRzz5n8n3XXKj6n5+fn92Zmv8nYJsH9B8C1wBHgDOAHgFsz85dW+pl+v59LS0vNK+7Y\\nYDBgbm6u6zImajAYsHPP4c7mP3D9FROfs8t1nt398U7m3bX1CNdds6OTubtU8TkdEY2De9Wtksx8\\nZ2ael5mzwNXAv5wotCVJ7fI8bkkqZsNzGZyZA2DQSiWSpEY84pakYgxuSSrG4JakYgxuSSrG4Jak\\nYgxuSSrG4JakYgxuSSrG4JakYgxuSSrG4JakYgxuSSrG4JakYgxuSSrG4JakYgxuSSrG4JakYgxu\\nSSrG4JakYgxuSSrG4JakYgxuSSrG4JakYgxuSSrG4JakYgxuSSpm1eCOiDMi4vMRcXdE3BcR755E\\nYZKk5W1oMObbwOszcxgRLwQ+FxGfzMw7W65NkrSMVYM7MxMYjq++cHzJNouSJK0sRrm8yqCI04C9\\nwCuA92Xmby8zZgFYAOj1etsWFxfXuNT2DIdDZmZmui5joobDIfsPHe1s/q1bNk18zi7Xed/BQ53M\\n29sI554z+T/rrlV8Ts/Pz+/NzH6TsY2C+/8HR5wN3AZcl5n3rjSu3+/n0tJS48ft2mAwYG5urusy\\nJmowGLBzz+HO5j9w/RUTn7PLdZ7d/fFO5t219QjXXbOjk7m7VPE5HRGNg/s5nVWSmd8APgNsP5nC\\nJEmnrslZJS8dH2kTERuBnwUebLswSdLympxV8nLgw+N97hcAf5eZt7dbliRpJU3OKrkHuGQCtUiS\\nGvCdk5JUjMEtScUY3JJUjMEtScUY3JJUjMEtScUY3JJUjMEtScUY3JJUjMEtScUY3JJUjMEtScUY\\n3JJUjMEtScUY3JJUjMEtScUY3JJUjMEtScUY3JJUjMEtScUY3JJUjMEtScUY3JJUjMEtScUY3JJU\\nzKrBHRHnR8RnIuL+iLgvIt4+icIkScvb0GDMEWBXZn4hIl4M7I2IOzLz/pZrkyQtY9Uj7sx8PDO/\\nMP7+m8ADwJa2C5MkLe857XFHxCxwCXBXG8VIklYXmdlsYMQM8K/A72fmrcvcvwAsAPR6vW2Li4tr\\nWWerhsMhMzMzXZcxUcPhkP2HjnZdxkT1NsKT3+q6isnqbYRzz9nUdRkTV/E5PT8/vzcz+03GNgru\\niHghcDvwqcz8k9XG9/v9XFpaajL/88JgMGBubq7rMiZqMBiwc8/hrsuYqF1bj/CefU1e1lk/dm09\\nwnXX7Oi6jImr+JyOiMbB3eSskgA+ADzQJLQlSe1qssd9GXAt8PqI+NL48qaW65IkrWDV3xsz83NA\\nTKAWSVIDvnNSkooxuCWpGINbkooxuCWpGINbkooxuCWpGINbkooxuCWpGINbkooxuCWpGINbkoox\\nuCWpGINbkooxuCWpGINbkooxuCWpGINbkooxuCWpGINbkooxuCWpGINbkooxuCWpGINbkooxuCWp\\nGINbkooxuCWpmFWDOyI+GBFPRcS9kyhIknRiTY64bwa2t1yHJKmhVYM7Mz8LfG0CtUiSGojMXH1Q\\nxCxwe2ZefIIxC8ACQK/X27a4uHhSBe07eOikfu5U9DbCuedsmvi8z+qq5ye/NfFpO2XP06Orvrdu\\nOfkcmZ+f35uZ/SZjN5z0LMfJzBuBGwH6/X7Ozc2d1OPs3P3xtSqpsV1bj/CLJ1nvWuiq5/fsW7Pl\\nL8Gep0dXfR+4Zm4i83hWiSQVY3BLUjFNTgf8KPBvwEUR8VhEvLX9siRJK1l1Eygz3zyJQiRJzbhV\\nIknFGNySVIzBLUnFGNySVIzBLUnFGNySVIzBLUnFGNySVIzBLUnFGNySVIzBLUnFGNySVIzBLUnF\\nGNySVIzBLUnFGNySVIzBLUnFGNySVIzBLUnFGNySVIzBLUnFGNySVIzBLUnFGNySVIzBLUnFNAru\\niNgeEQ9FxMMRsbvtoiRJK1s1uCPiNOB9wOXAK4E3R8Qr2y5MkrS8JkfcrwYezsxHMvMZYBHY0W5Z\\nkqSVNAnuLcCjx1x/bHybJKkDkZknHhBxFbA9M39tfP1a4Kcy823HjVsAFsZXLwIeWvtyW7MZ+GrX\\nRUyYPU+HaewZavb9w5n50iYDNzQYcxA4/5jr541v+x6ZeSNwY6PynmciYikz+13XMUn2PB2msWdY\\n/3032Sr5d+DCiLggIl4EXA18rN2yJEkrWfWIOzOPRMTbgE8BpwEfzMz7Wq9MkrSsJlslZOYngE+0\\nXEuXSm7xnCJ7ng7T2DOs875XfXFSkvT84lveJamYqQvuiDg7Im6JiAcj4oGIeG1EnBMRd0TEl8df\\nX9J1nWspIn4zIu6LiHsj4qMRccb4xea7xh9j8LfjF55Li4gPRsRTEXHvMbctu7Yx8mfj/u+JiEu7\\nq/zkrdDzH43/ft8TEbdFxNnH3PfOcc8PRcTPdVP1qVmu52Pu2xURGRGbx9fXxTofb+qCG7gB2JOZ\\nPwa8CngA2A18OjMvBD49vr4uRMQW4DeAfmZezOgF5quBPwTem5mvAL4OvLW7KtfMzcD2425baW0v\\nBy4cXxaA90+oxrV2M9/f8x3AxZn5E8B/AO8EGH9UxdXAj49/5s/HH2lRzc18f89ExPnAG4GvHHPz\\nelnn7zFVwR0Rm4DXAR8AyMxnMvMbjN7C/+HxsA8Dv9BNha3ZAGyMiA3AmcDjwOuBW8b3r4ueM/Oz\\nwNeOu3mltd0B/FWO3AmcHREvn0yla2e5njPznzLzyPjqnYzeewGjnhcz89uZuR94mNFHWpSywjoD\\nvBd4B3DsC3frYp2PN1XBDVwAPA18KCK+GBE3RcRZQC8zHx+PeQLodVbhGsvMg8AfMzoKeRw4BOwF\\nvnHMk3s9f4zBSms7LR/l8KvAJ8ffr9ueI2IHcDAz7z7urnXZ87QF9wbgUuD9mXkJcJjjtkVydJrN\\nujnVZrynu4PRP1o/BJzFMr9mToP1trariYh3AUeAj3RdS5si4kzgd4Df67qWSZm24H4MeCwz7xpf\\nv4VRkD/57K9P469PdVRfG34G2J+ZT2fmd4BbgcsY/cr47Hn8y36MwTqx0to2+iiHqiJiJ3AlcE1+\\n95zf9drzjzI6MLk7Ig4w6usLEfEy1mnPUxXcmfkE8GhEXDS+6Q3A/Yzewv+W8W1vAf6xg/La8hXg\\nNRFxZkQE3+35M8BV4zHrredjrbS2HwN+eXzWwWuAQ8dsqZQWEdsZ7fX+fGb+zzF3fQy4OiJOj4gL\\nGL1g9/kualxLmbkvM8/NzNnMnGV0gHbp+Pm+Ptc5M6fqAvwksATcA/wD8BLgBxmdcfBl4J+Bc7qu\\nc417fjfwIHAv8NfA6cCPMHrSPgz8PXB613WuQZ8fZbSP/x1GT963rrS2QDD6D0L+E9jH6KybzntY\\no54fZrSv+6Xx5S+OGf+ucc8PAZd3Xf9a9Xzc/QeAzetpnY+/+M5JSSpmqrZKJGk9MLglqRiDW5KK\\nMbglqRiDW5KKMbglqRiDW5KKMbglqZj/A97Dnf8YQrMRAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"hw.weight.hist()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Really, the interesting thing is to look at them together. For this we use a scatter plot.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x11f45dc88>\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nJJUyICRJpf4/8ei83bN1CkMAAAAASUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"hw.plot(kind=\\\"scatter\\\", x=\\\"height\\\", y=\\\"weight\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Clearly there's a trend that relates the two. One measure of the strength of that trend is called \\\"correlation\\\". We can compute the correlation between every pair of columns with `corr()`, though in this case it's really only between one pair.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>height</th>\\n\",\n       \"      <th>weight</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>height</th>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.877785</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>weight</th>\\n\",\n       \"      <td>0.877785</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"          height    weight\\n\",\n       \"height  1.000000  0.877785\\n\",\n       \"weight  0.877785  1.000000\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"hw.corr()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If you want to get better at knowing what sort of graph a correlation coefficient corresponds to, play the remarkable 8-bit game [Guess the Correlation](http://guessthecorrelation.com/)\\n\",\n    \"\\n\",\n    \"So far so good. Now suppose we want to know what weight we should guess if we know someone is 60\\\" tall. We don't have anyone of that height in our data, and even id we did, they could be above or below average height. We need to build some sort of *model* which captures the trend, and guesses the average weight at each height.\\n\",\n    \"\\n\",\n    \"*ENTER THE REGRESSION*.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"x = hw[['height']].values\\n\",\n    \"y = hw[['weight']].values\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/Users/jonathanstray/anaconda/lib/python3.6/site-packages/sklearn/linear_model/base.py:509: RuntimeWarning: internal gelsd driver lwork query error, required iwork dimension not returned. This is likely the result of LAPACK bug 0038, fixed in LAPACK 3.2.2 (released July 21, 2010). Falling back to 'gelss' driver.\\n\",\n      \"  linalg.lstsq(X, y)\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"LinearRegression(copy_X=True, fit_intercept=True, n_jobs=1, normalize=False)\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# This does the actual regression\\n\",\n    \"lm = LinearRegression() \\n\",\n    \"lm.fit(x, y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Ok, now we've got a \\\"linear regression.\\\" What is it? It's just a line `y=mx+b`, which we can recover like this:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 3.89903027])\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"m = lm.coef_[0]\\n\",\n    \"m\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([-143.02691844])\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"b = lm.intercept_\\n\",\n    \"b\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can plot this line `y=mx+b` on top of the scatterplot to see it.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[<matplotlib.lines.Line2D at 0x11f528a58>]\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"hw.plot(kind=\\\"scatter\\\", x=\\\"height\\\", y=\\\"weight\\\")\\n\",\n    \"plt.plot(hw.height, m*hw.height+b, '-')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"So if we want to figure out the average weight of someone who is 60\\\" tall, we can compute\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 90.91489769])\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"m*60 + b\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There's a shortcut for this, which will come in handy when we add variables\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[ 90.91489769]])\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lm.predict(60)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 2 - Multi-variable regression \\n\",\n    \"\\n\",\n    \"We can do essentially the same trick with one more independent variable. Then our regression equation is `y =  m1*x1 + m2*x2 + b`. We'll use one of the built-in `sklearn` data test as demonstration data.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Diabetes dataset\\n\",\n      \"================\\n\",\n      \"\\n\",\n      \"Notes\\n\",\n      \"-----\\n\",\n      \"\\n\",\n      \"Ten baseline variables, age, sex, body mass index, average blood\\n\",\n      \"pressure, and six blood serum measurements were obtained for each of n =\\n\",\n      \"442 diabetes patients, as well as the response of interest, a\\n\",\n      \"quantitative measure of disease progression one year after baseline.\\n\",\n      \"\\n\",\n      \"Data Set Characteristics:\\n\",\n      \"\\n\",\n      \"  :Number of Instances: 442\\n\",\n      \"\\n\",\n      \"  :Number of Attributes: First 10 columns are numeric predictive values\\n\",\n      \"\\n\",\n      \"  :Target: Column 11 is a quantitative measure of disease progression one year after baseline\\n\",\n      \"\\n\",\n      \"  :Attributes:\\n\",\n      \"    :Age:\\n\",\n      \"    :Sex:\\n\",\n      \"    :Body mass index:\\n\",\n      \"    :Average blood pressure:\\n\",\n      \"    :S1:\\n\",\n      \"    :S2:\\n\",\n      \"    :S3:\\n\",\n      \"    :S4:\\n\",\n      \"    :S5:\\n\",\n      \"    :S6:\\n\",\n      \"\\n\",\n      \"Note: Each of these 10 feature variables have been mean centered and scaled by the standard deviation times `n_samples` (i.e. the sum of squares of each column totals 1).\\n\",\n      \"\\n\",\n      \"Source URL:\\n\",\n      \"http://www4.stat.ncsu.edu/~boos/var.select/diabetes.html\\n\",\n      \"\\n\",\n      \"For more information see:\\n\",\n      \"Bradley Efron, Trevor Hastie, Iain Johnstone and Robert Tibshirani (2004) \\\"Least Angle Regression,\\\" Annals of Statistics (with discussion), 407-499.\\n\",\n      \"(http://web.stanford.edu/~hastie/Papers/LARS/LeastAngle_2002.pdf)\\n\",\n      \"\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"from sklearn import datasets\\n\",\n    \"from mpl_toolkits.mplot3d import Axes3D\\n\",\n    \"diabetes = datasets.load_diabetes()\\n\",\n    \"\\n\",\n    \"print(diabetes.DESCR)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>age</th>\\n\",\n       \"      <th>sex</th>\\n\",\n       \"      <th>bmi</th>\\n\",\n       \"      <th>bp</th>\\n\",\n       \"      <th>s1</th>\\n\",\n       \"      <th>s2</th>\\n\",\n       \"      <th>s3</th>\\n\",\n       \"      <th>s4</th>\\n\",\n       \"      <th>s5</th>\\n\",\n       \"      <th>s6</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0.038076</td>\\n\",\n       \"      <td>0.050680</td>\\n\",\n       \"      <td>0.061696</td>\\n\",\n       \"      <td>0.021872</td>\\n\",\n       \"      <td>-0.044223</td>\\n\",\n       \"      <td>-0.034821</td>\\n\",\n       \"      <td>-0.043401</td>\\n\",\n       \"      <td>-0.002592</td>\\n\",\n       \"      <td>0.019908</td>\\n\",\n       \"      <td>-0.017646</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>-0.001882</td>\\n\",\n       \"      <td>-0.044642</td>\\n\",\n       \"      <td>-0.051474</td>\\n\",\n       \"      <td>-0.026328</td>\\n\",\n       \"      <td>-0.008449</td>\\n\",\n       \"      <td>-0.019163</td>\\n\",\n       \"      <td>0.074412</td>\\n\",\n       \"      <td>-0.039493</td>\\n\",\n       \"      <td>-0.068330</td>\\n\",\n       \"      <td>-0.092204</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>0.085299</td>\\n\",\n       \"      <td>0.050680</td>\\n\",\n       \"      <td>0.044451</td>\\n\",\n       \"      <td>-0.005671</td>\\n\",\n       \"      <td>-0.045599</td>\\n\",\n       \"      <td>-0.034194</td>\\n\",\n       \"      <td>-0.032356</td>\\n\",\n       \"      <td>-0.002592</td>\\n\",\n       \"      <td>0.002864</td>\\n\",\n       \"      <td>-0.025930</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>-0.089063</td>\\n\",\n       \"      <td>-0.044642</td>\\n\",\n       \"      <td>-0.011595</td>\\n\",\n       \"      <td>-0.036656</td>\\n\",\n       \"      <td>0.012191</td>\\n\",\n       \"      <td>0.024991</td>\\n\",\n       \"      <td>-0.036038</td>\\n\",\n       \"      <td>0.034309</td>\\n\",\n       \"      <td>0.022692</td>\\n\",\n       \"      <td>-0.009362</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>0.005383</td>\\n\",\n       \"      <td>-0.044642</td>\\n\",\n       \"      <td>-0.036385</td>\\n\",\n       \"      <td>0.021872</td>\\n\",\n       \"      <td>0.003935</td>\\n\",\n       \"      <td>0.015596</td>\\n\",\n       \"      <td>0.008142</td>\\n\",\n       \"      <td>-0.002592</td>\\n\",\n       \"      <td>-0.031991</td>\\n\",\n       \"      <td>-0.046641</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"        age       sex       bmi        bp        s1        s2        s3  \\\\\\n\",\n       \"0  0.038076  0.050680  0.061696  0.021872 -0.044223 -0.034821 -0.043401   \\n\",\n       \"1 -0.001882 -0.044642 -0.051474 -0.026328 -0.008449 -0.019163  0.074412   \\n\",\n       \"2  0.085299  0.050680  0.044451 -0.005671 -0.045599 -0.034194 -0.032356   \\n\",\n       \"3 -0.089063 -0.044642 -0.011595 -0.036656  0.012191  0.024991 -0.036038   \\n\",\n       \"4  0.005383 -0.044642 -0.036385  0.021872  0.003935  0.015596  0.008142   \\n\",\n       \"\\n\",\n       \"         s4        s5        s6  \\n\",\n       \"0 -0.002592  0.019908 -0.017646  \\n\",\n       \"1 -0.039493 -0.068330 -0.092204  \\n\",\n       \"2 -0.002592  0.002864 -0.025930  \\n\",\n       \"3  0.034309  0.022692 -0.009362  \\n\",\n       \"4 -0.002592 -0.031991 -0.046641  \"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The variables to be used for prediction\\n\",\n    \"df = pd.DataFrame(diabetes.data, columns=['age','sex','bmi','bp','s1','s2','s3','s4','s5','s6'])\\n\",\n    \"df.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 151.,   75.,  141.,  206.,  135.,   97.,  138.,   63.,  110.,  310.])\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The variable we are trying to predict (it's not a DataFrame so we can't use head(), but this shows first 10 vals)\\n\",\n    \"diabetes.target[:10]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"LinearRegression(copy_X=True, fit_intercept=True, n_jobs=1, normalize=False)\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Which columns do we want to use to try to predict? I'm choosing age and BMI here\\n\",\n    \"# (BMI is \\\"body mass index\\\", it's a measure of weight compared to height)\\n\",\n    \"indices = (0, 2)\\n\",\n    \"\\n\",\n    \"x = diabetes.data[:, indices]\\n\",\n    \"y = diabetes.target\\n\",\n    \"\\n\",\n    \"lm2 = LinearRegression()\\n\",\n    \"lm2.fit(x,y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Ok awesome, we've fit a regression with multiple variables. What did we get? Let's check the coefficients\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 133.01372901,  924.81645876])\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lm2.coef_\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we have *two* coefficients. They're both positive, which means that both age and BMI are associated with increased disease progression. We have an intercept too, the predicted value of the target variable when both age and BMI are zero (which never happens, but that's the way the math works)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"152.13348416289674\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lm2.intercept_\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To really see what's going on here, we're going to plot the whole thing in beautiful 3D. Now instead of a regression line, we have a regression *plane.* Are you ready for this?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Helpful function that we'll use later for making more 3D regression plots\\n\",\n    \"def plot_regression_3d(x, y, z, model, elev=30, azim=30, xlab=None, ylab=None):\\n\",\n    \"    fig = plt.figure()\\n\",\n    \"    ax = Axes3D(fig, elev=elev, azim=azim)\\n\",\n    \"\\n\",\n    \"    # This looks gnarly, but we're just taking four points at the corners of the plot, \\n\",\n    \"    # and using predict() to determine their vertical position\\n\",\n    \"    xmin = x.min()\\n\",\n    \"    xmax = x.max()\\n\",\n    \"    ymin = y.min()\\n\",\n    \"    ymax = y.max()\\n\",\n    \"    corners_x = np.array([[xmin, xmin], [xmax, xmax]])\\n\",\n    \"    corners_y = np.array([[ymin, ymax], [ymin, ymax]])\\n\",\n    \"    corners_z = model.predict(np.array([[xmin, xmin, xmax, xmax], [ymin, ymax, ymin, ymax]]).T).reshape((2, 2))\\n\",\n    \"    ax.plot_surface(corners_x, corners_y, corners_z, alpha=0.5)\\n\",\n    \"\\n\",\n    \"    ax.scatter(x, y, z, alpha=0.3)\\n\",\n    \"\\n\",\n    \"    ax.set_xlabel(xlab)\\n\",\n    \"    ax.set_ylabel(ylab)\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot_regression_3d(x[:,0], x[:,1], y, lm2, elev=20, azim=0, xlab='age', ylab='BMI')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 3 - Analysis of 2016 voters\\n\",\n    \"\\n\",\n    \"Aside from prediction, we can use regression to attempt explanations. The coefficient `m` in the above encodes a guess about the existence and strength of the relationship between `x` and `y`. If it's zero, we guess that they're unrelated. Otherwise, it tells us how they are likely to vary together.\\n\",\n    \"\\n\",\n    \"In this section we're going to try to understand what motivated people to vote for Trump but looking at the relationship between vote and other variables in the [2016 American National Election Study data](http://electionstudies.org/project/2016-time-series-study/). \\n\",\n    \"\\n\",\n    \"There were quite a few statistical analyses of this \\\"why did Trump win?\\\" kind after the election, by journalists and researchers. \\n\",\n    \"\\n\",\n    \"- [Racism motivated Trump voters more than authoritarianism](https://www.washingtonpost.com/news/monkey-cage/wp/2017/04/17/racism-motivated-trump-voters-more-than-authoritarianism-or-income-inequality) - Washington Post\\n\",\n    \"- [The Rise of American Authoritarianism](https://www.vox.com/2016/3/1/11127424/trump-authoritarianism) - Vox\\n\",\n    \"- [Education, Not Income, Predicted Who Would Vote For Trump](https://fivethirtyeight.com/features/education-not-income-predicted-who-would-vote-for-trump/) - 538\\n\",\n    \"- [Why White Americans Voted for Trump – A Research Psychologist’s Analysis](https://techonomy.com/2018/02/white-americans-voted-trump-research-psychologists-analysis/) - Techonomy\\n\",\n    \"- [Status threat, not economic hardship, explains the 2016 presidential vote](http://www.pnas.org/content/early/2018/04/18/1718155115) - Diana C. Mutz, PNAS\\n\",\n    \"- [Trump thrives in areas that lack traditional news outlets](https://www.politico.com/story/2018/04/08/news-subscriptions-decline-donald-trump-voters-505605) - Politico\\n\",\n    \"- [The Five Types of Trump Voters](https://www.voterstudygroup.org/publications/2016-elections/the-five-types-trump-\\n\",\n    \"voters) - Voter Study Group\\n\",\n    \"\\n\",\n    \"Many of these used regression, but some did not. My favoite is the Voter Study Group analysis which used clustering -- just like we learned last week. It has a good discussion of the problems with using a regression to answer this question. \\n\",\n    \"\\n\",\n    \"We're going to use regression anyway, along the lines of the [Washington Post piece](https://www.washingtonpost.com/news/monkey-cage/wp/2017/04/17/racism-motivated-trump-voters-more-than-authoritarianism-or-income-inequality/?utm_term=.01d9d3764f2c) which also uses ANES data. In particular, a regression on variables representing attitudes about authoritarianism and minorities.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"(4271, 1290)\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/Users/jonathanstray/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py:2698: DtypeWarning: Columns (790,1129,1131) have mixed types. Specify dtype option on import or set low_memory=False.\\n\",\n      \"  interactivity=interactivity, compiler=compiler, result=result)\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>version</th>\\n\",\n       \"      <th>V160001</th>\\n\",\n       \"      <th>V160101</th>\\n\",\n       \"      <th>V160101f</th>\\n\",\n       \"      <th>V160101w</th>\\n\",\n       \"      <th>V160102</th>\\n\",\n       \"      <th>V160102f</th>\\n\",\n       \"      <th>V160102w</th>\\n\",\n       \"      <th>V160201</th>\\n\",\n       \"      <th>V160201f</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>V168123</th>\\n\",\n       \"      <th>V168124</th>\\n\",\n       \"      <th>V168125</th>\\n\",\n       \"      <th>V168126</th>\\n\",\n       \"      <th>V168127</th>\\n\",\n       \"      <th>V168128</th>\\n\",\n       \"      <th>V168129</th>\\n\",\n       \"      <th>V168130</th>\\n\",\n       \"      <th>V168131</th>\\n\",\n       \"      <th>V168132</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>ANES2016TimeSeries_20171219</td>\\n\",\n       \"      <td>300001</td>\\n\",\n       \"      <td>0.827</td>\\n\",\n       \"      <td>0.887</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.842</td>\\n\",\n       \"      <td>0.927</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>121</td>\\n\",\n       \"      <td>21</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>ANES2016TimeSeries_20171219</td>\\n\",\n       \"      <td>300002</td>\\n\",\n       \"      <td>1.080</td>\\n\",\n       \"      <td>1.160</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.013</td>\\n\",\n       \"      <td>1.084</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>123</td>\\n\",\n       \"      <td>23</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>ANES2016TimeSeries_20171219</td>\\n\",\n       \"      <td>300003</td>\\n\",\n       \"      <td>0.387</td>\\n\",\n       \"      <td>0.416</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.367</td>\\n\",\n       \"      <td>0.398</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>121</td>\\n\",\n       \"      <td>21</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>ANES2016TimeSeries_20171219</td>\\n\",\n       \"      <td>300004</td>\\n\",\n       \"      <td>0.359</td>\\n\",\n       \"      <td>0.385</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.366</td>\\n\",\n       \"      <td>0.418</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>118</td>\\n\",\n       \"      <td>18</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>ANES2016TimeSeries_20171219</td>\\n\",\n       \"      <td>300006</td>\\n\",\n       \"      <td>0.647</td>\\n\",\n       \"      <td>0.693</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.646</td>\\n\",\n       \"      <td>0.726</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>113</td>\\n\",\n       \"      <td>13</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 1290 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                       version  V160001  V160101  V160101f  V160101w  V160102  \\\\\\n\",\n       \"0  ANES2016TimeSeries_20171219   300001    0.827     0.887       0.0    0.842   \\n\",\n       \"1  ANES2016TimeSeries_20171219   300002    1.080     1.160       0.0    1.013   \\n\",\n       \"2  ANES2016TimeSeries_20171219   300003    0.387     0.416       0.0    0.367   \\n\",\n       \"3  ANES2016TimeSeries_20171219   300004    0.359     0.385       0.0    0.366   \\n\",\n       \"4  ANES2016TimeSeries_20171219   300006    0.647     0.693       0.0    0.646   \\n\",\n       \"\\n\",\n       \"   V160102f  V160102w  V160201  V160201f   ...     V168123  V168124  V168125  \\\\\\n\",\n       \"0     0.927       0.0      121        21   ...          -1       -1       -1   \\n\",\n       \"1     1.084       0.0      123        23   ...          -1       -1       -1   \\n\",\n       \"2     0.398       0.0      121        21   ...          -1       -1       -1   \\n\",\n       \"3     0.418       0.0      118        18   ...          -1       -1       -1   \\n\",\n       \"4     0.726       0.0      113        13   ...          -1       -1       -1   \\n\",\n       \"\\n\",\n       \"   V168126  V168127  V168128  V168129  V168130  V168131  V168132  \\n\",\n       \"0       -1       -1       -1       -1       -1       -1        1  \\n\",\n       \"1       -1       -1       -1       -1       -1       -1        1  \\n\",\n       \"2       -1       -1       -1       -1       -1       -1        1  \\n\",\n       \"3       -1       -1       -1       -1       -1       -1        1  \\n\",\n       \"4       -1       -1       -1       -1       -1       -1        1  \\n\",\n       \"\\n\",\n       \"[5 rows x 1290 columns]\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"anes = pd.read_csv('anes_timeseries_2016_rawdata.csv')\\n\",\n    \"print(anes.shape)\\n\",\n    \"anes.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The first thing we need to do is construct indices of \\\"authoritarianism\\\" and \\\"racism\\\" from answers to the survey questions. We're following exactly what the Washington Post did here. Are \\\"authoritarianism\\\" and \\\"racism\\\" accurate and/or useful words for indices constructed of these questions? Our choice of words will hugely shape the impression that readers come away with -- even if we do the exact same calculations.\\n\",\n    \"\\n\",\n    \"We start by dropping everything we don't need: we keep only white voters, only people who voted, and just the cols we want\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(3412, 1290)\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"white_col = 'V161310a'\\n\",\n    \"anes = anes[anes[white_col]==1]\\n\",\n    \"anes.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(2037, 1290)\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"voted_col = 'V162034a' # 1=Clinton, 2=Trump, 3=Johnson, 4=Stein, negative numbers = didn't vote or won't say\\n\",\n    \"anes = anes[(anes[voted_col]==1) | (anes[voted_col]==2)]\\n\",\n    \"anes.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>V162034a</th>\\n\",\n       \"      <th>V162239</th>\\n\",\n       \"      <th>V162240</th>\\n\",\n       \"      <th>V162241</th>\\n\",\n       \"      <th>V162242</th>\\n\",\n       \"      <th>V162211</th>\\n\",\n       \"      <th>V162212</th>\\n\",\n       \"      <th>V162213</th>\\n\",\n       \"      <th>V162214</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>14</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"    V162034a  V162239  V162240  V162241  V162242  V162211  V162212  V162213  \\\\\\n\",\n       \"0          2        2        2        1        1        1        5        5   \\n\",\n       \"1          2        1        2        2        1        3        2        4   \\n\",\n       \"7          2        2        2        2        2        4        5        5   \\n\",\n       \"13         2        2        2        2        1        2        5        4   \\n\",\n       \"14         1        1        1        2        1        4        1        2   \\n\",\n       \"\\n\",\n       \"    V162214  \\n\",\n       \"0         1  \\n\",\n       \"1         3  \\n\",\n       \"7         2  \\n\",\n       \"13        3  \\n\",\n       \"14        5  \"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"authoritarian_cols = ['V162239','V162240','V162241','V162242']\\n\",\n    \"racial_cols = ['V162211','V162212','V162213','V162214']\\n\",\n    \"anes = anes[[voted_col] + authoritarian_cols + racial_cols]\\n\",\n    \"anes.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we have to decode these values.\\n\",\n    \"\\n\",\n    \"For the child-rearing questions, the code book tells us that 1 means the first option and 2 means the second. But 3 means both and then there are all sorts of codes that mean the question wasn't answered, in different ways. And then there's the issue that the questions have different directions: Options 1 might mean either \\\"more\\\" or \\\"less\\\" authoritarian. So we have a custom translation dictionary for each column. This is the stuff that dreams are made of, people.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# These variables are proxies for authoritarian attitudes. Why are these questiones about children? \\n\",\n    \"# Because that's the only way to get honest answers! It's a long story. \\n\",\n    \"# See https://www.vox.com/2016/3/1/11127424/trump-authoritarianism\\n\",\n    \"\\n\",\n    \"# All authoritarian traits are coded 1 for first option and 2 for second\\n\",\n    \"# We turn this into +1/0/-1 where +1 is the more authoritarian option, and 0 means no data\\n\",\n    \"\\n\",\n    \"# Child trait more important: independence or respect\\n\",\n    \"anes['V162239'].replace({1:-1, 2:1, 3:0, -6:0, -7:0, -8:0, -9:0}, inplace=True)\\n\",\n    \"\\n\",\n    \"# Child trait more important: curiosity or good manners\\n\",\n    \"anes['V162240'].replace({1:-1, 2:1, 3:0, -6:0, -7:0, -8:0, -9:0}, inplace=True)\\n\",\n    \"\\n\",\n    \"# Child trait more important: obedience or self-reliance\\n\",\n    \"anes['V162241'].replace({1:1, 2:-1, 3:0, -6:0, -7:0, -8:0, -9:0}, inplace=True)\\n\",\n    \"\\n\",\n    \"# Child trait more important: considerate or well-behaved\\n\",\n    \"anes['V162242'].replace({1:-1, 2:1, 3:0, -6:0, -7:0, -8:0, -9:0}, inplace=True)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# All racial questions are coded on a five point scale, 1=agree strongy, 5=disagree strongly\\n\",\n    \"# We recode so that least tolerant = +2 and most tolerant =-2\\n\",\n    \"\\n\",\n    \"# Agree/disagree: blacks shd work way up w/o special favors\\n\",\n    \"anes['V162211'].replace({1:2, 2:1, 3:0, 4:-1, 5:-2, -6:0, -7:0, -8:0, -9:0}, inplace=True)\\n\",\n    \"        \\n\",\n    \"# Agree/disagree: past slavery make more diff for blacks\\n\",\n    \"anes['V162212'].replace({1:-2, 2:-1, 3:0, 4:1, 5:2, -6:0, -7:0, -8:0, -9:0}, inplace=True)\\n\",\n    \"\\n\",\n    \"# Agree/disagree: blacks have gotten less than deserve\\n\",\n    \"anes['V162213'].replace({1:-2, 2:-1, 3:0, 4:1, 5:2, -6:0, -7:0, -8:0, -9:0}, inplace=True)\\n\",\n    \"\\n\",\n    \"anes['V162214'].replace({1:2, 2:1, 3:0, 4:-1, 5:-2, -6:0, -7:0, -8:0, -9:0}, inplace=True)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>V162034a</th>\\n\",\n       \"      <th>V162239</th>\\n\",\n       \"      <th>V162240</th>\\n\",\n       \"      <th>V162241</th>\\n\",\n       \"      <th>V162242</th>\\n\",\n       \"      <th>V162211</th>\\n\",\n       \"      <th>V162212</th>\\n\",\n       \"      <th>V162213</th>\\n\",\n       \"      <th>V162214</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>14</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-2</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"      <td>-2</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"    V162034a  V162239  V162240  V162241  V162242  V162211  V162212  V162213  \\\\\\n\",\n       \"0          2        1        1        1       -1        2        2        2   \\n\",\n       \"1          2       -1        1       -1       -1        0       -1        1   \\n\",\n       \"7          2        1        1       -1        1       -1        2        2   \\n\",\n       \"13         2        1        1       -1       -1        1        2        1   \\n\",\n       \"14         1       -1       -1       -1       -1       -1       -2       -1   \\n\",\n       \"\\n\",\n       \"    V162214  \\n\",\n       \"0         2  \\n\",\n       \"1         0  \\n\",\n       \"7         1  \\n\",\n       \"13        0  \\n\",\n       \"14       -2  \"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"anes.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Finally, add the authority and racial columns together to form the composite indexes.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>vote</th>\\n\",\n       \"      <th>authority</th>\\n\",\n       \"      <th>racial</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>-2</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>14</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-4</td>\\n\",\n       \"      <td>-6</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>16</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-4</td>\\n\",\n       \"      <td>-4</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>17</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>18</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>-4</td>\\n\",\n       \"      <td>-6</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>21</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>-2</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>22</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>-1</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"    vote  authority  racial\\n\",\n       \"0      2          2       8\\n\",\n       \"1      2         -2       0\\n\",\n       \"7      2          2       4\\n\",\n       \"13     2          0       4\\n\",\n       \"14     1         -4      -6\\n\",\n       \"16     1         -4      -4\\n\",\n       \"17     2          4       4\\n\",\n       \"18     1         -4      -6\\n\",\n       \"21     2         -2       4\\n\",\n       \"22     1          0      -1\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"anes['authority'] = anes[authoritarian_cols].sum(axis=1)\\n\",\n    \"anes['racial'] = anes[racial_cols].sum(axis=1)\\n\",\n    \"anes['vote'] = anes[voted_col]\\n\",\n    \"anes = anes[['vote','authority','racial']]\\n\",\n    \"anes.head(10)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Data prepared at last! Let's first look at the scatter plots\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x1200439b0>\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"anes.plot(kind=\\\"scatter\\\", x=\\\"authority\\\", y=\\\"vote\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Er, right... all this says is that we've got votes for both candidates at all levels of authoritarianism. To get a sense of how many dots in each point, we can add some jitter and make the points a bit transparent.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# add a  noise to the values in the array\\n\",\n    \"def jitter(arr):\\n\",\n    \"    # pick a standard deviation for the jitter of 3% of the data range\\n\",\n    \"    stdev = .02*(max(arr)-min(arr))\\n\",\n    \"    return arr + np.random.randn(len(arr)) * stdev\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.collections.PathCollection at 0x11fd77be0>\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.scatter(x=jitter(anes.authority), y=jitter(anes.vote), alpha=0.05)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Note that, generally, as you move to the right (more authoritarian) there are more Trump voters. We can do this same plot with the racial axis.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.collections.PathCollection at 0x110a16668>\"\n      ]\n     },\n     \"execution_count\": 33,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.scatter(x=jitter(anes.racial), y=jitter(anes.vote), alpha=0.1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Similar deal. The axis is smoother because we are summing numbers from a five point agree/disagree scale, rather than just the two-option questions of the authoritarianism subplot. \\n\",\n    \"\\n\",\n    \"Now in glorious 3D.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"fig = plt.figure()\\n\",\n    \"ax = Axes3D(fig, elev=30, azim=30)\\n\",\n    \"ax.scatter(anes.authority, anes.racial, anes.vote)\\n\",\n    \"ax.set_xlabel('authority')\\n\",\n    \"ax.set_ylabel('racial');\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Same problem: everything is on top of each other. Same solution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\nkWVZ8bpaeidbwutq2XNRq9U2anryVrmess6SSVZXVyvWIGs3TlvWMf38/BokbTiRV86RnHJsbSSM\\nZpmoAHd6BfyZUVbojFTojWj1Rs4UatHWmOjk7UjfIM+bWm0MBgPp6enIstzotUNLJm95SKmqqsLB\\nwaFeoGzIeWVZJikpifj4eN544w3Gjx/fatmhyWQiPDycn3/+WXH9rlu3ju7duzfrdYqLi8nLyyMq\\nKgqz2czs2bMJCQlh9OjRtG/fnilTpvD6668TGRl5t60ziqDYmowfP17JEDQaDZ6enhw+fPiq44KD\\ngxWdlkqlumumMW7kdbUU8TTUuGMJuhkZGQ3ec7GlMBgMFBYWkpmZiSzLite1tZV1FkwmE+fOnaO8\\nvJzIyMhbelAorNBTqTPi4qDCz82+WT7ThmaHjcGSyVsC5c36VsvLy5kzZw7FxcWsWLGCDh06NOt4\\nbkZKSgrx8fFs374dgH//+98AzJkzp1nObzAYsLOz49ChQ2zatAlPT0/Kysro0qULZ86c4eTJk3z8\\n8cd89tlnqFQqPvroo2a57m2E2CWjNfnmm2+Uv7/yyis3XKxPTk62qn/UGqhUKnr16kWvXr2YPn36\\nVV7XjRs3NsjrWl1dTXp6Ovb29kRHR1u9YjEnJ4eioiKioqLw8PCop6wrLCzk7NmzmM3meq0JLaVO\\nu3TpEqdPn6Zjx46EhYXd8jX83ByUpv6mYrH1yLLcYt8nR0dHHB0dFflB3b7VgoICzpw5Q2pqKvv2\\n7SMoKIjt27cza9YspkyZYpXs6OLFiwQFBSn/DgwMRK1WN8u5DQYDzz//PK+99ho+Pj5s2rQJjUbD\\nokWLGDduHGazmdWrVzN79mx8fHyQZRmj0djqa/+3A+ITaWZkWebbb79l586d1h5Km0aSJDw9PRk+\\nfDjDhw8H/vS67t+/n61bt/LOO+9QU1NDnz596NevH0eOHKGqqor58+e3+E4EN0Oj0XDq1Cn8/PyI\\niYlRbrKSJOHs7Iyzs7OSidRV1mVlZTWbss5CXYF37969W2X3kxvRktnhjZAkCRcXF1xcXOjYsSMA\\nISEhnDhxgrS0NHr27MmSJUv48ssveeaZZ5gyZUqrja0lMZlM2NnZsXDhQjQaDa6urkyfPp0//viD\\nqqoq5bjJkycTERHB6tWr2blzpwiI10F8Ks3Mb7/9hr+/P2FhYdd8XZIkHnroISRJYvr06UybNq2V\\nR9h2sbGxISwsjLCwMCZNmgTUGmBWrVrFhx9+SEBAAFVVVTzzzDNER0crbSE+Pj6tNn1qNBo5e/Ys\\nWq2Wnj17Nmh60sbGRgl+Fuoq6y5cuIBer79q2rUhBUOWKtfOnTvTrVs3q1ZPWrJDwOpZPNQWg82c\\nOZNnn32WVatWKQ8upaWllJaWtvp4AgICyMnJUf594cIFAgICmnROy5Q91IoHNmzYQEpKCtu2bePH\\nH39k8+bNBAcHM2TIEGRZ5t577+Xee+9l6NChbN++nREjRjTp+nciIijeAg3Zx2zdunU89dRT1z3H\\nnj17CAgIoLCwkOHDh9OtWzfuv//+Fhvz7c65c+dISEggOTmZkJAQZTPglJQUUlJSWLhwYat5XS0Z\\nUOfOnYmIiGhSALK3t8fX11cpyKk79Zefn68I1K9U1lmuaTEHmUymVt9w91oUFBSQkZFxXZdra6LX\\n65k3bx5qtZp169YRERFR73UvLy+rzDTExMRw5swZMjMzCQgIYP369Xz99ddNOqckSZw7d45//vOf\\n9OjRgzlz5rB7925WrlzJ1KlTOX78OBs2bCA3N5eMjAyee+45vLy8cHFxsfr3qa0iCm2aEcsOAwcP\\nHiQwMPCmx8fHx+Pq6sqrr77a4GvEx8fz+eefKzfTefPm8fDDD191nLVLv5uTmzUZW7yulmrX5va6\\n6vV60tPTsbGxISIiotUyoGsZYezs7FCpVFRUVNC1a9cmZxpNpaamhvT0dCRJatXP5nocPXqUf/7z\\nn4wdO5ZZs2a1uSnCxMREXnrpJUwmE5MnT+aNN964pf9vuV9bfpaPHDnC3LlzCQ0NZcGCBQDs3r2b\\nF198ka1bt+Lo6MiiRYvYsmULn3zyCcOHDychIYEtW7bw2WefWf371cqI6tPWJikpiX//+9/8+uuv\\n13xdq9UqRRdarZbhw4fz1ltvMXLkyAZfoyGBtLVKv9sqV3pdU1NTyc3NJTQ0lP79+xMTE0O/fv1u\\n2usmyzIXL14kJyeHsLAwqxdH6XQ6/vjjD8xmM66urlRWVra6sq4ubSk7NBgMLFy4kG3btrFixYo7\\nsgevbvuEZaeS/Px83nzzTbKzs9m6dasS5N577z127typ1DbULaqxVKnehYjq09Zm/fr1V02d5ubm\\nMnXqVBITEykoKODxxx8Han9IJ0yYcEsBsaGkpqYSGhpK165dAXjyySfZsmXLXRMUJUnCx8eHhx9+\\nWMmi63pdv/vuO+UJ3eJ1jYmJITQ0VLnp5OTkUFBQgJubGzExMVbNOCxTxtnZ2YSHh9ez9dRV1l28\\neFERcTe3sq4uluzQxsaG/v37W/0Ge+rUKWJjY/nrX//K7t2779jsx/KzOW/ePPbt24ePjw/vvfce\\n06ZNY+3ataxdu5bJkycDMGPGDI4cOcLp06eV3VhMJhO2trZW/361dUSmeJsRHx/P6tWrcXd3p3//\\n/vznP/+5an1k48aNJCUlsXLlSgC+/PJL1Go1n332mTWG3CaRZRmtVqt4XdVqNWfPnqVDhw7Y2tqS\\nnZ3Nhg0bCA4Otmrxyq1sNWXheso6d3d3PD09m7T/YVvKDk0mE8uWLWP9+vUsXbqUAQMGWHU8LcGV\\nSwcffPABe/bsYdmyZXz00UcUFRXx5ptvcvDgQfbu3cvkyZOVz+Eua8xvCCJTvF25UUHP888/z9y5\\nc5Ekiblz5/LKK6/wxRdfWGGUtzeSJOHq6soDDzzAAw88ANRWDsfGxtKjRw/CwsKYNm0aVVVVREVF\\nKeuTreV1lWWZ7Oxs8vLy6NatW4O2mrKgUqnw9vbG29tbOZel0b2kpISMjIwGKevq0tayw/Pnz/Pi\\niy/Su3dv9uzZY/U2lObmyrVDC5WVlYwePZrAwEA+/fRTJk2axLZt23jhhRc4duwY33//PdHR0dja\\n2mJjY3M3Sr+bjAiKbZBffvmlQcf94x//YPTo0Vd9vSVKv+90ZFkmMTGRTZs2ERISonxdr9dz+PBh\\npdK1NbyulZWVnDx5Ei8vL2JiYprscpUkCScnJ5ycnJS+wbrKuuzsbEVZVzebdHR0RJIkJTtsC/o6\\ns9nMmjVrWLFiBQsXLuSvf/2rVcfTEnz//ff4+vpy7733kp+fz9dff83AgQO59957sbW1pbq6moqK\\nCtzc3HjxxReJi4tTWk+CgoLq/byIgHjriKB4m5GXl6c0hW/evJmePXtedUxTS79nzZrFjz/+iL29\\nPSEhIaxateqamcqdpKyTJEnRbtXFwcGBgQMHMnDgQOBPxZyliGf58uUUFRURERHRZK+rReBdXFxM\\nZGQkbm433iaqKVgE2+7u7oplxWAwKNOuubm5VFVVYTQacXBwICQkxOrChLy8PGJjYwkKCmLPnj0t\\n+vlYE8sWbdXV1fzrX/8iIiKC7du389hjjzFp0iTi4uJo164dTzzxBHv37mXw4MFIkkRkZCQgpk2b\\nilhTvM2YNGkShw8fRpIkgoODWb58OR06dKhX0ANNK/3+6aefGDp0KCqVitmzZwPw4YcfXnVccHAw\\naWlpVq/KtDZ1va5qtZojR45gZ2dHv379lEB5M6/rrQq8WxJZlikoKCAzM1PJPCxtIa2lrLtyPBs2\\nbGDBggV88MEHjBo16o7LgAoLCzGbzbRvX7s35YQJE9Dr9TzxxBM8+eSTHDp0iHHjxrFz507Onj3L\\nhg0bOH36NM7OzixZsoTOnTtb+R3cFoiWDEHT2bx5Mxs3buSrr7666jURFK/NlV5XtVpdz+saExND\\ndHQ0rq6uaLVakpOT6dChwy0LvFsCS0+mSqUiPDz8qrXDusq6srIytFotKpWq2ZR1V1JUVMTMmTNx\\ncnJi0aJFyjrpnYTRaOTrr7/GxsYGjUZDdXU1w4YNIzY2lkmTJjF16lTs7Oz46KOPSEhIYNeuXQAc\\nP35cmSkS2WGDEEFR0HQeeeQRxo8fz8SJE696rUuXLnh5eQllXQMwm81kZGQou4QcPHiQkpIS9Ho9\\nDz30ENOnT6dbt27NshdkY6ibHd7q2mFdZV15eXmjlXVXjichIYF3332Xt99+m3HjxrVadpiTk8PT\\nTz9NQUEBkiQxbdo04uLiWuRalkKY5ORknnzySXx9fVm0aBFDhw5l4cKF7N+/n/nz59OpUycABgwY\\nwMSJE5kxY4ZyDkurheCmiKAouD4NUda9//77pKWlsWnTpmvekC5evFhPWbd48WKhrGsAFRUVvPba\\na5w7d46pU6eSnZ2NWq3m1KlT+Pr6KpWureV1vVl2eKvUVdaVlZVRUVGBLMvXVdZdiUajYfbs2VRU\\nVLB8+fJWlYpD7dplXl4e/fr1o6KigujoaL7//vsW6/M9duwYVVVVrFu3jpqaGmbNmkWXLl2A2mnU\\nHj16MGPGDNzc3CgtLbX62u5tjAiKgsazevVqli9fzo4dO3B2dr7p8Y1R1t2taDQaEhISmDBhQr3A\\nUNfrun//flJTUykrK1O8rjExMURFRTVbc7osy+Tn55OVldXixh6TyURFRQUajUZR1tnb2yvTrSqV\\nivbt27Nr1y7mzJnDK6+8wqRJk9rElOCjjz5KbGyssptLU6nbJpGbm8uHH36Ih4cH//M//0NcXBzt\\n27dn4sSJBAUFceLECcaPH8+yZcu47777lHOI7LBRiKAoaBxJSUnMnDmTX3/99brTaE1R1t3My6rX\\n63n66ac5ePAgPj4+fPPNNwQHBzfHW7vtMBgMHDt2TAmUx44dw8XFpcle1+bODhuDXq+nrKyMQ4cO\\n8e6771JcXIzBYGD69OmMHDmSvn37Wl10npWVxf3338/x48dxd3fu9dxbAAALP0lEQVRv0rnqBkPL\\neqDZbGbHjh2sXbuWKVOm0KFDB95++23Gjx9PcXExoaGhODk53ZFiAisggqKgcYSGhqLX6xWd2KBB\\ng1i2bFm9CteMjIyrlHUNqXBtiJd1yZIlHD16VLGVbN68ud4mznczFq9ramqqUsSTm5tLSEiIkk3e\\nyOvamtlhQ0lJSeHVV19lypQpDBkyhAMHDqBWq6murmbt2rVWG1dlZSV/+ctfeOONNxg7dmyjz3Ot\\nRnwfHx/ef/99nnvuOYqLi/nxxx9JTk5m6dKl/PLLLyQmJvLrr7/yv//7v0pAFI34TUYERUHbIyUl\\nhfj4eLZv3w6g9AbOmTNHOWbEiBHEx8czePBgjEYj7du3p6ioSNwQrkNdr6tarebQoUPIsnyV1zUn\\nJ4eff/6Ze+65h7CwMKtbaXQ6nbJuvXLlyuvuQWoNDAYDo0ePZsSIEcycObNZzrlv3z4SEhIYM2YM\\nBoOBcePGkZ6ejpeXFwcPHuS1115jyJAhxMfHU1lZiaura7NcV6DQoBuI9SfsBXcVFy9eVJrFAQID\\nA7l48eJ1j7GU+5eUlLTqOG8nbGxsiIyMZPLkySxfvhy1Wk1ycjJPPfUUxcXFvP3220RGRjJs2DCO\\nHTtGbm4uWq2WW3wgblYOHTrE8OHDad++PTt37mxTAVGWZaZMmUJkZGSzBcT33nuPl156iXvuuYen\\nnnqKkpISHnzwQSZMmABAnz598PHxoaioiMLCQiUgmkymZrm+oOGIoCgQ3GHU9bpa2mRGjBhBUlIS\\nw4YNY+fOnTzxxBPcd999TJ8+nZUrV3L06FGMRmOLj81gMDBv3jxeffVV1qxZw6xZs9pcwcjevXv5\\n8ssv2blzJ3369KFPnz6KFKOx2Nvbs337dmRZRq/Xs2jRIqZPn05mZibPPfccPXr0oFevXixevLie\\naL2tfTZ3A0LzJmhVGuJltRwTGBiI0WikrKys3nZJgobj5OREXFwcQ4cOBaBXr148+eSTwNVe1/T0\\ndDw8PIiJiVEKeZrT6/rHH38QGxvLyJEj2b17t9Wnb6/Hfffd1+xZ9KxZs/jqq69Ys2YNmZmZvPXW\\nW8yfP58lS5ZQVVXFo48+yqhRowDRiG9tRFAUtCoN8bKOGTOGNWvWMHjwYDZu3MjQoUMbdWNuSBP2\\nrl27ePTRR5W+sLFjx/LWW281/g22MZydnZWAeCU387quWLGiWbyuJpOJ//73v2zcuJFly5bRv3//\\nJr+v2w1Jkrhw4QK9e/fG3t6e6OhovvnmG2RZrif1FwHR+ohCG0GTaEy/1LW8rG+99Rb9+/dnzJgx\\n6HQ6Jk2axKFDh/D29mb9+vXKhsm3QkOasHft2sXHH3/M1q1bb/n8dwMWr+v+/fvZv3//LXtdMzMz\\neeGFFxgwYADvvvtuo0TpdwpJSUksXrwYd3d38vPzefPNNxk2bJi1h3U3IapPBa2LLMuYzWYkSWqT\\nT7vXasIWQfHWkGWZ8vJypSUkNTWV8+fP07lzZ2XKNTo6GhcXF7744gu++OILFi1aJExH1K6nHjhw\\ngK1bt/Lyyy8rPcCi1aLVEEFR0LKsW7cOV1dXIiMjCQ0NveGx1v7Fv14T9q5duxg3bhyBgYF07NiR\\njz/+mB49elhtnLcj1/K6ZmRk8Le//Y3FixeL1oLrIKw0rY4IioKWw2QyERgYyIABA9BqtXh5eeHk\\n5ISnpyfPPPMM0dHR1/2/er2e48eP06VLl1bZ9eBGTdjl5eXY2Njg6upKYmIicXFxnDlzpsXHdKdT\\nXFyMt7d3m5wxaAtY+yHxLkUERUHLkZWVRUxMDL///jtBQUEUFBSg0WhQq9Vs376dxYsX4+3tjdls\\nJjExkY4dO9K3b18kSUKn0/Hjjz8qWykZjUZlyrW5bxS32oQttsMSCO5YGnRzEdWngkZx7Ngxevbs\\nSVBQECUlJXz33XccOnSIvn37cuzYMQoKCvDw8ODvf/87KpWK3NxcSkpK+OWXX5AkiaioKLp16wbU\\nNuhfyaVLl/j9998ZNGhQo6ffGtKEnZ+fr7QdpKamYjabG9X+ERwcjJubG7a2tqhUKtLS0q4aS1xc\\nHImJiTg7O7N69Wr69evXqPcl+BOTyUT//v0JCAgQ68KCZkEERUGjOHjwoDJF+t///pcDBw4wY8YM\\nvvrqK7y8vKioqGDr1q1kZWWxf/9+AEpLS3Fzc2Pz5s0sWrSI3377jdTUVBYuXEivXr0YOnSo4nnM\\nyMhg7ty5bNiwodFB0dKEHRUVRZ8+fQCYN28e2dnZADz33HNs3LiRpUuXolKpcHJyYv369Y3OVpOT\\nk6+bYW7bto0zZ85w5swZ1Go1zz//PGq1ulHXEfzJp59+SmRkJOXl5dYeiuAOQQRFQaPYsWMHkydP\\nBuDkyZOMHTuW4cOHU1JSQlJSEi4uLhw/flzZm1Gn0+Hl5YVOpyM/P5+YmBgAOnfuTFxcHL/99hsL\\nFixg4cKF+Pv7k5+fT1BQEIGBgY0eY0OasGNjY4mNjW30NRrKli1bePrpp5EkiUGDBqHRaMjLy6ND\\nhw4tfu07lQsXLpCQkMAbb7zBggULrD0cwR2CWAUXNIqPPvqIxx57DIDevXuzYMECZsyYwTvvvIMs\\ny/To0YPU1FQ8PDwAlP606upq0tPTiYqKAkCtVpOQkEBAQAC+vr6sWrUKSZJIT0+/ynTTlpEkiYce\\neojo6GhWrFhx1esNcb4Kbo2XXnqJ+fPni2IeQbMiMkVBoxg0aJDy99dff52xY8dy9OhRoqKicHNz\\nw2QyMW3aNL799ls6depEjx496NKlC5cuXSI/P5+hQ4eyZMkSDh8+THBwMIcOHeK7775j4cKFAJw7\\nd+6GFaxtjT179hAQEEBhYSHDhw+nW7duojevBdm6dSt+fn5ER0eza9cuaw9HcAchgqKgWQgPDyc8\\nPLze10aMGMGZM2dYvXo1RUVFJCQkcOHCBfLy8ggICCAtLY2hQ4cyceJEdDodCQkJdO/encLCQvLz\\n8+nbt6+V3s2tY8lq/fz8ePzxx0lNTa0XFBvifBU0nL179/LDDz+QmJiITqejvLyciRMnWnX/RcEd\\ngizLt/JHIGgSWVlZ8urVq2VZluXExEQ5IiJCfvnll+Vnn31WDgwMlGVZllNSUuQxY8bIVVVV1hxq\\ng6msrJTLy8uVvw8ePFjetm1bvWO2bt0qjxw5UjabzXJKSoocExPTqGulp6fLvXv3Vv64ubnJn3zy\\nSb1jkpOTZXd3d+WYd955p3Fv7DYhOTlZ/tvf/mbtYQjaPg2KcyJTFLQqnTt35plnnkGWZUaNGoWX\\nlxcZGRlUVFSg1WqB2r32zGYzTk5OVh5twygoKODxxx8Hal2hEyZMYOTIkSxbtgyorXJ9+OGHSUxM\\nJDQ0FGdnZ1atWtWoa0VERHD48GGgth0hICBAuXZdhgwZIloUBIJGIJr3BW2O06dPk52dzYMPPmjt\\nobRpfvrpJ9555x327t1b7+vC5yoQXJMG9VqJsi1BmyM8PFwExAawfv16nnrqqWu+lpKSQu/evRk1\\nahQnTpxo5ZEJBLcvIlMUCG5Dampq6NixIydOnMDf37/ea8LnKhBcE5EpCgR3Ktu2baNfv35XBUQA\\nd3d3xQL08MMPYzAYKC4ubu0hCgS3JSIoCgS3IevWrbvu1Gl+fr5i8mmKz1UguBsR1acCwW2GVqvl\\n559/Zvny5crX6la6NqfPVSC42xBrigKBQCC4G2iRraPE46ZAIBAI7ljEmqJAIBAIBJcRQVEgEAgE\\ngsuIoCgQCAQCwWVEUBQIBAKB4DIiKAoEAoFAcBkRFAUCgUAguIwIigKBQCAQXEYERYFAIBAILiOC\\nokAgEAgElxFBUSAQCASCy/x/1XO9SMzNp+sAAAAASUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"fig = plt.figure()\\n\",\n    \"ax = Axes3D(fig, elev=30, azim=30)\\n\",\n    \"ax.scatter(jitter(anes.authority), jitter(anes.racial), jitter(anes.vote), alpha=0.3)\\n\",\n    \"ax.set_xlabel('authority')\\n\",\n    \"ax.set_ylabel('racial');\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"You can definitely see the change alog both axes. But which factor matters more? Let's get quantitative by fitting a linear model. Regression to the rescue!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# This is some drudgery to convert the dataframe into the format that sklearn needs: \\n\",\n    \"data = np.asarray(anes)\\n\",\n    \"x = data[:,1:] # an Nx2 matrix for the dependent variables\\n\",\n    \"y = data[:,0]  # a N dimensional vector for the indpendent variable\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"LinearRegression(copy_X=True, fit_intercept=True, n_jobs=1, normalize=False)\"\n      ]\n     },\n     \"execution_count\": 37,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# This does the actual regression\\n\",\n    \"lm3 = LinearRegression() \\n\",\n    \"lm3.fit(x, y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot_regression_3d(jitter(anes.authority), \\n\",\n    \"                   jitter(anes.racial), \\n\",\n    \"                   jitter(anes.vote), \\n\",\n    \"                   lm3, \\n\",\n    \"                   elev=30, \\n\",\n    \"                   azim=10, \\n\",\n    \"                   xlab='authority', \\n\",\n    \"                   ylab='racial')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Well that looks cool but doesn't really clear it up for me. Let's look at the coefficients.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 0.02124645,  0.06037413])\"\n      ]\n     },\n     \"execution_count\": 39,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lm3.coef_\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Looks like the coefficient on `racial` is higher. But wait, we choose the numbers that we turned each response into! We could have coded `racial` on a +/-1 scale instead of a +/-2 scale, or a +/-10 scale. So... we could get any number we want just be changing how we convert the data.\\n\",\n    \"\\n\",\n    \"To fix this, we're going to standardize the values (both dependent and independent) to have mean 0 and standard deviation 1. This gives us [standardized coefficients](https://en.wikipedia.org/wiki/Standardized_coefficient).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>vote</th>\\n\",\n       \"      <th>authority</th>\\n\",\n       \"      <th>racial</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0.908220</td>\\n\",\n       \"      <td>0.766243</td>\\n\",\n       \"      <td>1.469289</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>0.908220</td>\\n\",\n       \"      <td>-0.774943</td>\\n\",\n       \"      <td>-0.216163</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>0.908220</td>\\n\",\n       \"      <td>0.766243</td>\\n\",\n       \"      <td>0.626563</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <td>0.908220</td>\\n\",\n       \"      <td>-0.004350</td>\\n\",\n       \"      <td>0.626563</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>14</th>\\n\",\n       \"      <td>-1.100514</td>\\n\",\n       \"      <td>-1.545537</td>\\n\",\n       \"      <td>-1.480252</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"        vote  authority    racial\\n\",\n       \"0   0.908220   0.766243  1.469289\\n\",\n       \"1   0.908220  -0.774943 -0.216163\\n\",\n       \"7   0.908220   0.766243  0.626563\\n\",\n       \"13  0.908220  -0.004350  0.626563\\n\",\n       \"14 -1.100514  -1.545537 -1.480252\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"normalized_anes=(anes-anes.mean())/anes.std()\\n\",\n    \"normalized_anes.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"LinearRegression(copy_X=True, fit_intercept=True, n_jobs=1, normalize=False)\"\n      ]\n     },\n     \"execution_count\": 41,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x = normalized_anes[['authority','racial']].values\\n\",\n    \"y = normalized_anes[['vote']].values\\n\",\n    \"lm4 = LinearRegression() \\n\",\n    \"lm4.fit(x, y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"What we have now is the same data, just scaled in each direction\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 42,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAcUAAAE1CAYAAACWU/udAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBo\\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJzsvddzHOmap/ekz/IF7wh6Tzbbne6Z\\n3tPHzZmdHbOh0UoToStFbChCEYpQ6D/RtUL3utBqYnY2tGY0MTtnzPHdfZrdbEMSBAnCEK5QPqsq\\nfX66yEI1DQCCJIAm2d8TgQBQLrNc/vJ9v/f9vYoQAolEIpFIJKB+2zsgkUgkEsnLghRFiUQikUj6\\nSFGUSCQSiaSPFEWJRCKRSPpIUZRIJBKJpI8URYlEIpFI+khRlEgkEomkjxRFiUQikUj6SFGUSCQS\\niaSP/oy3l/Y3EolEInkVUfZzIxkpSiQSiUTSR4qiRCKRSCR9pChKJBKJRNJHiqJEIpFIJH2kKEok\\nEolE0keKokQikUgkfaQoSiQSiUTSR4qiRCKRSCR9pChKJBKJRNJHiqJEIpFIJH2kKEokEolE0keK\\nokQikUgkfaQoSiQSiUTSR4qiRCKRSCR9pChKJBKJRNJHiqJEIpFIJH2kKEokEolE0keKokQikUgk\\nfaQoSiQSiUTSR4qiRCKRSCR9pChKJBKJRNJHiqJEIpFIJH2kKEokEolE0keKokQikUgkffRvewck\\nLy9CCJIkQVEUgMHvx/+WSCSS1wUpipJdCYIA3/cxDGPH6x8XyZ3EU1XVXW+/22NJJBLJt4UURcmO\\nxHGM67oYhvGIsEEaQT6OEGLwsxu1Wo0gCJiamnriup0E82Gh3e3/p/0tkUgkz4IURckTCCHo9XrA\\nzgKzl+jsdV0cx3ie91SR3f7/aSKrKMqO1yuKQpIkNBoNRkdHB5dJgZVIJE9DiqLkCVzXJYoidP1g\\nPx6qqpIkyROXP6/I7nT9tkjGcczCwgIjIyODy/cS2P1uY7c08V6X77W/Eonk5UKKouQRttcRNU07\\n8MfeTRQPkm3RUVUVIcQLR307RbE7CeyNGze4ePEilmXta/8e/ltGsRLJy4MURcmAJElwXRdVVQ/l\\ngHsUorjNbqnV53mc/Vy+XaX7eGr4YQ4qTey6Lo7jMD4+/kR0+rwCu9P/Esl3ESmKEuCbdUQhxKFE\\niXC0orgdKR4V+xGUg0oTB0FAvV5nYmJicNl+BXa/23hYZMMwRNf1wcmSjGIlrzNSFCUA+L5PFEX7\\nqjR9Xo5SFOFg9/1pHFRkuh+208L7jWL3+5g7/Z8kCV988QXnz58nm83u+/FkmljyqiJFUUIURVy/\\nfp0LFy4cWpQIR58+PWqOUoQPmqcJrKZpe6aGH+Z508Tbt7lz5w4XLlzYdf9kT6zkMJGi+B0nSRJ6\\nvR5Jkhy6YB11pHiUvM4H2scLlp7Gi6SJkySh2WwOBO55e2L3u39RFBEEAfl8XkaxEkCK4ncaIQSu\\n65IkCZqmSVF8QV7lSPFl4Vkqhg8iTdxut6lUKly8ePG5e2If/1umiV9tpCh+hwmCgDAMUVUVTdOI\\n4/iJ27zKa4pHyet8QHvWSPFFSJJk32na52GnvtadCoj2e9+d/t8rit3a2iKKoh1dnR7fxvP2xL7O\\nn8WjQIrid5RtG7ftA8JRCNbrLIpw9IU9R8VRiuJRbgsYZEmeh+eJYn3fBzgw68THMU3zUOsCvgtI\\nUfwOspONm6qqO0aKB8nrLIpHLVJHyesUKT5OHMdHvr2dDB4OIk38un63jho5T/E7yLaN28NnlEex\\npniUbQvfBq/rc3udRfF1357k2ZGR4neM3WzcdoviarUajUYDXdfRdR1N03b8e/tnLzec13mt43V+\\nbjJ9enA8fjJ60LzOn8OjQorid4i9bNx2KrTxPI+7d+9y6dIl4jgmiiLiOMb3fbrd7uD/KIoGP48L\\n63YRz7Zoep7H/Pz8jqL6+P+HZTd3GLzOUfDrHCnGcbzrvNDD4KhFWPLsSFH8jiCEYH19nfX19Sca\\no+HJSFEIwc2bNzl//jzDw8PPXf6eJMkjwtloNCiVSgcisHsJ6nY62Pf9IxPY11UUj5JvI1I8ahGW\\novhyI0XxO4Lv+wghdi2mUVWVMAwH/y8tLVEulymXy8+9TUVR0DQNTdMwTRMAXdcZHx9/5sfaSWAf\\n/tlJYD3P48svv9xVYHdLAT9PBHvUEe3rWn36bazxvU7pU8mLI0XxO0AYhriui67ruxbTaJo2KBdv\\nt9vUajXefvvto9zNPdlJYJ+G4zi88847O5a/J0myY3T6vBGs53l0u10ymcyegvr4Za9Kivh1XVM8\\n6urTwxbhV+Gz9LIjRfE1Z9vGbTsy2k0Ut9OnURRx+/Zt3njjjcHB4lX9ou3lQrItsC/KtsDevHmT\\nsbExstnsCwvs08TUdV1c16Xdbr+SArsXr3s1qEyfvvxIUXyN2bZx2x4HtVcv4nahzZ07d5idnSWT\\nyTzyOAd5sD2qaOAoil8eFljLsigWi8/9WE+LYKMowvd9Op0OvV6P5eXlfQnsflLCL0sEuz2X8ii3\\nd5SiGEURun7wh125nn1wSFF8jQmCgCAIBmemu1m5QXoA7XQ6GIbB5OTkoe3TtlAdxYHvKGcqHsTz\\n2W8EW61WqdVqOxZMbbNfgd1PBNvpdPjtb3/7TAL78OXPIrDbtmtHxVGvKR7mZ38/VnWSpyNF8TVl\\n28ZN07RHPBF3E4kwDHEchw8++OBQv1jbadqjOPAddZvEy3S2fpAp4l/96le89957+xbYx2/3LBHs\\n9mNUKpUXFtj9cNRrivDqLkd8V5Ci+BoihKDb7QL7c+EXQrC4uEg+nz/0nq2jnql4lNt6mUTxIDmM\\nNdjdBHZbFFut1jML7H7MJR4XWOkwI3kcKYqvIQ+Pg3qcnQ7cS0tLFItFPM879H07SlF81dKnL/P2\\nDoq9BFYIQaMXgmJz7MQpMubeIvysKeKdBLbb7XL9+vWBKf6ztOYcZgT7PHzb239dkKL4mhEEAdev\\nX+fatWv7uv12+8XVq1e5efPmjrc5yHWQo44UX8f06esYkQoh+N1Sk4/utUEk3Pc2+OnFMYZzu7ff\\nHEQE+/HHH/POO+8MzB4OI0X8sHj6vs/KysqeUezLILDfZaQovkZs27j5vr+vL9V2+8XVq1f3bNc4\\nSF6X9GmcCMI4wdL3N4tvLxq9gF4QkzN1ytmjsxx7mdjqBMxtdhjJqmiKjmWo/PZ+nT+9enhFX/DN\\nmuJhpYgfFs/t2aVCiAMR2Mf/HxkZeeF9l0hRfG3YHge1HdXtFt09fN38/Dyzs7Nks9nBF/mweR0i\\nxbWmy68X6kSxoJjR+eHZUeD5Irg7mw6fLDVRFRACfu/kEGfG80+9nxCCxWqXrU5AwdY5M5bD0F7d\\ntTE/StBUBUUAKmRNjVonOPTtHkY16ONtOtuEYUgmk+H48ePPtH87CexObTov4j4l+QYpiq8Jvu8T\\nRdHAHzSO4x37obZ7Fev1OnEcD9ovjipd86qvKXb8iF/crVGwdWxDo9kL+eW9KmfMVICXaj3qvYCi\\nbXByJD3ZuL3Rodr1GcoYXJoqYuqpeLlBzKfLLcbyJrqmEsYJnyw1OTaUwTKejFiS5JvnMlcLaDVq\\n5CwdN4xZb3n86Nwoqrr7+5gkgqabWvmVMgbaDrft+BGNboCuqcRxwlYnYKkd824Y77hPB4EQAltX\\niPs2fjldp9YJmClnnn7nA+CoPvvP07i/m8A+TpIkh9L/+F1EvoqvAds2btvtF3vNRtQ0Ddd1WVxc\\n5O233z7ytYtXPVLs+hGJENh9gShnDTbbHqEm+Gq9y5rnYRsafpSw3nRBgaW6S8HSWW95VLshPzmf\\nilcQJyiA3o/wDE0liGMWaz0KtsFYwRxEf7c3HG48aJEIGNVD7tZ8rp21UVWFMgbrLY+leo8HDZde\\nEDM7lOHCRJ7FustSrUcYJ3zxoMVWJ8DSVc6N5/jJxXGOle3BZ6DWCfjZ7S2iJGHL8an3Aq5MF7nX\\nTPjZ3BZ/eHF8IOgHhR/G/OJujU+XG6w3fTy3w6VJhbdOD/PeiW8inzBOiGKBbex/vS2IEu5sdmh7\\nIWN5kzNj+T1PGg4b6Xv6aiBF8RXnYRu37YPFXs41qqoyNzfHuXPn9t1+cZDC8qqvKdqGRiLSNUVN\\nVegFMRlDRyCYr7mcmUoFTwjBvWqXKIGTIxkURSFv62y0PNpeRDlrkDU1sqZGyw0p2jqVts/CVhdN\\nUQCFkbzBT86PUe0EfLLUYKJgoaoKcyst6m4MDx3fg0jw8/k0grUMlesrTe5tdWm6IXlL5798ucaD\\nps9kwaLhhny91max1uNfX5vineOp+Hy63MAyVEZtk8VajzBO3/dhW6HZC6k4PseGnj16a/ZCqh2f\\nLSeg4vigwMWJPOcn8ny20uLjxQZ+FDNZsrjfc1BVhd8/NTyITBeqXT5ZbCAEDOcMPjw7SnaXytQk\\nEYNU7M/vVtlyfGxDY6Hape1FvHti6Jn3/6CQY6NeDaQovsJsryM+njrZy7nG8zyKxSJDQ9/OweFV\\njxRLGYN3j5e5vtxEUUBXVX5yYZTKagdEzHYQkxbfAAgEqX5t78v2bQxN5UfnR/ntQp3NdkCjG3Bm\\nLM9UP2242fJYqHbxo4SMoQ0iynJGp+GobLZ9CpZOL4gxdYU4EYNCHaNg8Yv5Gv/i7DCbLZ+KE5II\\nuFvtoigKtq6wXHe5vtzg1GiWoaxJL4zJ9IUoEaCpCvH2W9V/LXtBzK11h44fMlWyOTOaY63lsd7y\\nsAyVCxOFQRQNsNn2+ce5LdpuyNfrDpMli6tTRT5abKBrKqutHh0/YjRnoqoKGUPF8WLWWz6jBZNm\\nN+Q39+qM9qPmWsfno/t1fnJh7In3pt4N+Pl8DS+MCeIEP4wH67MFW+dOpcOp0RyOFxHGCRlToxMc\\nXSXvYfueyorVg0GK4itMEASEYfjEF203UWy32wRBsKuNmxDi0C3YXnVRBLg4WeBYOYMXxeSt/tqi\\npjBdNNho+xRtnW4QM1m0KWUM7la6ZEwNN4g5MZKlaH/ztStlDP7VlQmSRPDP81UcPxpcZ+gqXpiQ\\nt3X86JvXzIsEF0ctrh4vs9n2OD6coZwx+NVCfXCbKBHomkKSQK0bYBoqjh8iBP31OyhkdNZa/iAi\\nPDGU5eaGw3jBYixvcGvDQ1EE7UAwpauUMgb/cHuLbhCRMTRWGk2+WnNYrHZZb3tECUwVLf7nH5xk\\nKJu2UlxfaZKztL7wGTxouNQ6AYam4AYR3SDm7laHStuglNW5Xw9YaMbU/XksQ2c0b9HohYzkhwEY\\nyplsOv4T70kUJ/x8voqqKIwXLTYdj69WO5wYyaFr6efZ8SL+9utNukHE7Y0OeVPHb4UYc1t8eHbk\\n0AuVDjt9KkXxYJCi+Iqyk43bNjsJTxRFzM3NMTw8vOtjbhemvC6ieJjbyts6+Ye+Pqqq8vZ0hobI\\nUukEzJQyXJkuYGgqY3mLWjegnDU4NZLd8fVVVYVjZZvfLjaxdZVEgBcmTBQtxgoWS/Ue6y0PRUlF\\n7fywxcXJAhcnC0C65jaWN1lveeiaQhQJ/vjKOHe30vXEoqXT8SL8KKLrp+Jc6Itzqf/7jZkiiYCv\\n1lo0uiGmpvLlgzZqKPjx+VHcMKblpRGiSAS1js//88U6pYzO6dEctqGx1vT42e0Kf/HOMSBd17N0\\nFUNTqLsR9V7I+XELTVH4/EGbc2M5To/kuFPpMLfhIJKI8ZLO3a0ewzkDx41IgIVqh4uTRRwvYijz\\nZNrfCxPc/usFMJazyJo6K/Uew3mTrh8Rx4K8pbNcdxnNmcxvdQk7Mf/xxjoVx+fP35x6JMp9nChO\\neNBw8cKYkXz6vuxGkgjuVDrcr/awdJU3j5Vk+vQVQYriK4gQgoWFBYaGhnasSNspUpyfn+fYsWP0\\ner091xsP2/bqdYgUd0NT4Y2p0hOXnx7LcXos99T7nxnL40eCWxsOqqLwwelhpvup1J+cH6PWDRBC\\nEHabuB3nkfsamspPLoyxUnfxopix/kH79Gie2xsOtq5yZbrIzfU2fpRwrGwTxYI/f3NisHanayqn\\nx7J8tdam1gswdQ1DhUjA7U2H06O5wTLmcsNlbrNDECd0vIjlusvpsRwZU6PRjUgSgaoqnB7NceNB\\nk3LWxAtj4iQhiBJydrqeauoqf3BxnIyh8Wu/RhIlxIlgqxOgKBDGULQ1FrZ6DGUtMobKeyeHuLfV\\npeL45C2d8+M5TF1FV8GPYixdI0oE5ybyXJzI44cJ49NFvlhrYWoKbn8/3CCibGiUsgbNXsTXaw7v\\nnti5rSFO0jXbtZaHoSlEseD7Z4aZGcrwoOESxgmjeWtgNvDFaovPVlqMFy3aXsjf367w9ojAkKL4\\n0iNF8RVjexxUtVqlUCjsSxQrlcqg/WJxcXHPytSdWjle5UKbV8nmTVUVrs4UuTrz5PgpTVUo2jpB\\nlBCz87YMTX1CfMcKqThenSmyUnd5Z7ZMywsxNJWzYznOTzzaE3m30sGPErKWzlDGoO1GxEKwXHd5\\n78QQo3mTzbbH3KaDrqlcmsyzWHPpeBEVxyNrGsyU7UGV55WpAgpwv9bjylSBO5X08pyh0dXSVLGu\\nKZi6gm3oaGpE0l+P9cKEqVJa2FS2dS5P5rkwWWB+s8Pnq23yloYfJqw1Xd6YKRIlCb+6W2M4azFZ\\nNJkq2cxXugjANjVODWX5eqNDydaZ2+ygqQp6/6Ucyum0vXDX96ba8VlveUyXbSCNgD9ebFCudKg4\\nPrqqEkQxb8wU2Wj7/POdGpqWprFPjWZx2z4Vx+N4effo8kWR6dODQYriK0YYhvi+v2cxzcPXeZ73\\nSPvF08ZHHbZgqapKGO5+8DlIXiebt3uVDp8sN0FA6HW5MvRs2xrKmoN1vr1IBBgaiIS0QEiBMEmb\\n6XVN5cfnx7i31WGt6TFZshjLW9x40OLzlRampnFtusAPzo0OHm9b6C9PFfjbrzfZ6vjEAlabHgVb\\nZyxvUWn7CBQmihau41ENRb8CN00Ld/yE06MqX6059IKE+7Uuk0Ur7bPMwMJWl+V6j/GCxUTB5uaG\\nQ7NrsNL0eHu2hKoq3Fx3eHu2xNXpArdVhXovIGkliFjh8mSeMBZMFncXrDiBh7s5dFWh1gsJooTp\\noQxuGPPJosNvFupYhkYSJ0yWbZbrPXKWRiIECkKmT18BpCi+QjzcfqHr+lPFTQjBrVu3Hmm/eJoo\\n7nbdQXGUJt1HHZUeFi035KPFBiP5tALzgdvlszWXd64e/LbOjOW4W+mStzTWGh5hElM0VH7vVLoW\\nbeoql6aKGJrKb+83aHsRx8oZLk0W+P7ZEYr2zqYAvSCm5UV8eGaUTpBGiF0/5g8ujqIoCo43xN/f\\nqvDJnMOoaWJqMbPDGdZaHjlTY6xgM1GyWKh2B/2d2zheSL5f3FTpBJwczrLpeHSjhHo3YLxoU8ro\\nVByfn1wY463ZMovVIf7D9RVuLnVYbXp8/8wI5ycKu74uWVMlQVB1fPK2TqMbcnwoQ8tLn8titcd2\\nmfFkMV1Drjkhuq6wVOvx1rESI2YgRfEVQIriK8J2+wWkB/u9DviaphGGIcvLy0+0X6iqShRFu95v\\np8dsNpt4nrfnOJ79isLrmj6Fw4sUe0GMoiiD6siCpbHsCKK4b412gII8mrf4o8vj3Nns0OgFTBdN\\n2g9cxh8rKjk7nidjaFQcn4yhcnosv2djfyqUApS04jZJBF6QkDV1cpbOSM6knDXI6ApnxvPUvZj1\\npsdowWR2KMNCtcdQzkRV4eJonrvV3iB9OpIzAYV6NyRjqsRCkLXSVHOzFzJetHH71cAAm22PX96r\\nc2LIxg4scjmTkby1o5hD2if58WKDIBIst7qcm8hx7ViJ2SGbv7uZtpu03BA/ipkpZQYVw2M5Ey9K\\neOtYmQ/PjrC40JbVp68AUhRfEXzff6T94mnp016vR6/X4+23337iOt9/sqQddhasXq/H3Nwcx44d\\nG1jJ7eS/+DCKouxqXux5Hp7nPTFEdvvnIIt89iOKbhCx1ffYHMtbTx1X9CLbel5yppYW2MQJhqbi\\n+BGWrvCLuzU22z7FjM7vnxrec6LEs7C9DhnFCY7rc3N954PtzFCGmX0282dMjatTRW6sttFUhSQR\\nXJ0ukLPSQ5AXJsQJXB03mD1W4vO1LoamkrN0vCghThKWa10uTRd57+QQ40WbStsnb2mcHMnyy3s1\\nNloetU5qsff2sRJfrLZx/JjNtkfB0rkyna7VrjU9bEPFVBJsU6ecNVmu9zizQzGU40V8tNBgOG8w\\nXkgLaVQFrk4XUBSFP7w0xucrLYayBqaucGWywJfrDmtNj4mCzXsnSnxwerhvm3e4fYqSg0GK4ivA\\n4zZusLcoCiGoVqu8++67T4jM0yLMhx9TCMHt27e5cOECo6OjO95nJ/YyMA6C4JEhso9f//i+7Wem\\n3W4jeMJY4AQhI0H8hNjFieCj+3X+85cbhHHCsaEMJ0dy/PTiGHnr2b8WL3qWHkQJq02XKBaMFdKo\\nxfEiNDUtoHljpsjXa07fCiA1A9jqpA3u7V7Ev/vdA947XmZmKDOoWH1Wwjih2gm4veGw5fisNl3K\\ntsbWRshsrcfxkewLPcc3jpUYL1p0vIicpQ/aJyAttkGBMEpQVAVDVwh6gvcmC2x1AhZrXc6O5/nB\\nmRF0TeXMWO4REfvpxXHOjOX41b0aQqQG4x+cGuKNmRK6pjCUNQeRrGWoRLEgURNURSXoN/LvRC+I\\nQBHfROm2zmbbI0oEhqYwnDP5g4tj/PDcCJ8uN1mo9pgdyvCHF8c4PZqnaOuDoqPDEsXXcZTYt4kU\\nxZecnWzcYG9RXF9fJ5fLkc0+eRB7lkKbpaUlyuUypdKTbQZ7oaoqpmlimk9GLrZtI4Tg3LlzT30c\\nIcQjornbhIDHL6t2AxYbAffqIRkdrOvLXB7RmClZA9Fcaif8csUjiAV522B500cEHr/TQ96ZLe8Z\\nvcaJIIgSTF19JOX2vAenIEr4h7kKtW6IpijUuwEKUO0GzFccJksZ3pgucm4si23oLG943NsMGRtX\\nubnucLfSwXEjLE3ldqXL+yfKXJh8dH1sy/Fp9kJsU2Om9E116DYdP+Ifblf4dLlF2wuJIkHeUgki\\ng6yh8OuFOsM5k7z9YoeMiaLNxJPFtRiayvsnh/h39xepOGm0pyukLjumxh9dnuD7Z0Z2TXGausr5\\niQKnRnPUuyGKAsNZY+AC9DCnR3MsbPVYq3boeDEFBS5P7ryemDN1FJRBlN72QgqW8USjv66l667f\\nOzGEAjt6rEpHm1cDKYovMQ+Pg9rJtWanKs7t9ovdHPX3Gyk6jkOtVnsi/fqiPIsf6cNp2P2yWO3y\\n9XyNhbiNZ7jksgpvnTtGyw04f3kMQxFEUcT87S2KWej4MZoKChGtTo+NSshS0npEZB8Wu7Yv+Lqe\\nEKGSMTTenckymrfodruDtd4nhsZqGqvtgGonIowFM0MZpkr2wL9zpd7j5nram2iqKgu1Dr0gJoxT\\nf9UHTZeCqfLVaovxok1BDfhy0+XzyhKmoRLHAstQafsRV4Yz3HjQ4vxEfnCQvLfV5TcLdXQ1tYI7\\nOZrlg1PDjxy4ry+lRTMKMFPO8Olyk/FSAceLyCgKAkHF8XjQSN+7Y0PZRwSy7YY0eiFtNyKI017B\\n02O5XT1Kd+L0aI73J3XOnB2hkDHJmjrNXoimKozlzX2ZeRua+kgEuhO2ofEvL41xaymi2Yp5/8rk\\nrvuZt3V+//QwH92vkwhB1tT58Ozucwt3E23YXRQPwjBDCuLBIUXxJWY3GzfYOeLbbr+4dOkSi4uL\\nOz7mfiLFOI65ffs2ly9fPvBq0cMutPndUpNSRidjauRVg3rXx4sSUFRiNEr9toTJkZCqr+I1PDK2\\nhq+EFAsW339zmtnhRyPsIEr4crXNWsvjltPm5HGbjhfw5ZrD3bmQ/+HNMiUzJEkSwjBks9llfssl\\niCImM4L1TsRCPWC1HeHGULIUZgsK709Z5C2Nnz+I+N16iJ8IghjafmofN5Y3yRga3SDi06UmAuh4\\nIX4Q0g1i2qHPsXKGphdxNp9ly/EQUwUSkc5mVJTUWeV3Sw3ypsqG4xNGgkYv4OJEgZG8yVKtx++W\\nmny61GCsYKWtAwpYmspmy8UNYlw1QikE/MPcFkEs0FWVoWybf3V5gmLGYH7T4Z/mq/T8mM9XWmRM\\njVMjOc6MZ/mTK5M7pibDOMENYmrdADeMKWdMpkoWOV1wYiSHH6Wfue2+QD+METF7Os48C5ahMVUw\\nKCj2U4X75EiW6ZLd96BVd4w+98Pjotjq9Lh+a4HLp48xMSJnIb4sSFF8SYnjmBs3bjA7O0s+/+TQ\\n2Z3W/7bbLyzL2lV49hKl7esWFhaYnJwkl3u6C8uzcpiiKIQgStLBv6au4voJKGkxjalrjxz83pgp\\nUen4g1mEJdvgT69MPCGIQgh+s1BjreVjagoVx2er47PZ9lEUBS+M+fdfN/nTczbnR2yKo1N8dHMT\\no5THUmG5ExDYMcdnNZSmS9HWaXoRM6M5suM5zoxm+Ki9TLLVgDih64e0vHQtNIoT8qaG40fkTYhj\\nqDZ8NrsxRQN0kdB2HIII7m94rNVUPKfBibLN//G3m1i6zuXJDJtVj3UnRFU1DF2j2g2ZW89zdqLI\\nL+/WGMmbzA7bzG92KecM6p0QhYT5TZe8reMlMeFWB0i9R4WAtqczv9lBVeEvP10DBPNbXSxNJfYF\\nlY5Px4+4NlPi7GNDk6sdn3+a2+JOpUutE3BxMo9t6rw1UyROEj5abHC/2kNR4ORwDkNTuFPpoChw\\nYjjL+yeHdhSmJBEs1no0eiGljM6p0Ryamr5HG+20uGy8YA0+B3Ec71nYFfXd0HVNxdTVFx6btS2K\\nq5U6v7t5l/nldc6fmJaC+JIhRfElRAhBt5tOM9hPgz7wSPvF9vrbfu73MKqq0m638TyPs2fPvvgT\\n2WUbhyWKiqJwdizH3GaH40MZPq61CYIYVVX4wdnhR6KMgq3zx5cnqHdDNBVGcuaOB1ovTFhr+kyU\\nrNRD1Da4sdoia2oUbQ1LV7EMlRtrLueGLVYa6QzF7WkVQZRwc91lupQZtE9EkcDxQtZaHmfH82Rt\\nm6lyhq/XOvTCBNtUAUEnUtCmyVVxAAAgAElEQVQMjUzGYGY4w0jO5O5Wl7zwQMQcL+eoOj4jmdQu\\nrWipOInA17KcHDIIo5jPNjz8IGSl3iNnKIRJgongnz6b505O8MBJaNkKYSxwWzG1OszkNWJPMJZR\\nyOmCihOztlynlNHJKlm8KOF+JabS7OJFgm6YcGI4ixvEoAvKOZOCpVHtBvxivsrnKy3KWYPvnSiT\\nMTV+Pl8lIS2GGS+abLR9vnciy1frDuvrAYsrKxQzOqdH83y0WCNJFK7NFgfOOKWMMagkfZhPl5vM\\nbXbImCpukLDp+Lw5U+Rnc1U6XoSqpBHiH10aJ2/ru1oaJong8wctbm84hFHCxakC750YeqFZjEmS\\nsLhR4+7f/pL1agMAQ9f48btXnvsxH0amTw8OKYovGds2btvjoPYjbu12m2q1Olj/26/bzU5Uq1W+\\n973vPfElOyij8MNOn147VmSh2uXGqkPGULk0bPPnb06RNZ/8qNuGxnR579SZpqZVkXGSViBemMzx\\n6XIDPwTf0Dg2ZBOEgobr8+tFB5FR8cMY8hZxLIjjhCHbwAujQT9bsxfi+CGxEPz2fp3pksXP58N+\\n32FqBm6qMJw3Gc1ZvDFTpJw1mSha1DoBehKR01ViQ+NBGDOetyjaGigK92s9IuHSi9ODfRBptN2Y\\ntY4gShIKto6mKWTIUcrl8SKfk6eHuLXRIS98hjSYKRms3G8SJwlrvZAwSu3KukHMpw8cypbCeiei\\n23XJGoKWJ1jZbKAAGyF4PfBa0AgUhoTDTNHghpPw1x8LJnImG52Q6ZJFsxdjFi0q7ZB5CypOwG8X\\nYhTDQVFU7lW6TBRtCraO40XkTI2tts9/+HyN+9Uu758aHvRPukHMZytNGt2AIBaM5U0WtrqoQKsX\\n4EUCL4zQVIVb6w7vnRra1aD77laHLx+0qPUCmm7IZystqh2fP706uet3wAtj5itd3DBiqmgPMg5e\\nEPLl/BLXby3w9e0FZmdnB/d5/+p5ivkXq+jdRoriwSFF8SXjYRu3/a7/zc3NceXKlcFZ715fkL1E\\naX19nUKhgG3bL/5EnmP7B8F6y8OPBT+5MIrTbrNUaXFns8Nbs8+WouoFMbWOj6aqXJzM8/Wag6Er\\nhDH8m7em+OxBC0NVcYOYlhsyaoIbCax+GrEXJqw0erTcEFNVGcqlbjReGDNWsLgyVWCyZLPpBFyb\\nynNlukS1E9Lt+ORNDU1VyBga5YyBUBTuV3vMbXR450QJx1H5cs2h0vIp2AYrTZeSrTNWtEFRWKh1\\nKWdT78+P7tdJEHhROnw3SAKURGCoCseHs/hhxM9ubyFQKGd1FCH421vpTMJekBBGCZYGiqYxkrfp\\nBjG5nMm0kZAzNR40exi6Si+KiOMETVNoRulPIgQdJYvI5Ai6Lqg+91sh92oe95s+JIL71Q6CtLBr\\nqR3hhYIw8BEJVFowv+YwU4LqVhVVU3EjhTMjBhsbHn+1XuEPzpUpZy2anuDLlQZ5U2PdCfjlXR/b\\nUPnJuVE22j4ZS8PSdWodn1LG5L1TQzTdEFUzGA3jR7IIq02XjbZHL0oYzpqYmspny03emi0zVbSp\\ndQOiRFDOGOlMRi/krz5bp+0FjGRNvnzQ5sqERa9R5cu7SwThk2YZ5UKO968eTDZGtmQcLFIUXyLi\\nOKbX6w36EZ8W8UVRxPz8PDMzMzu2X+zEboUzW1tbCCF2FcSDOhM9bFFs9kIyhoqqKKiKSs5QqPab\\n85/lMX52u4IfJQhgPG/yo3MjOH5EwTaYLlp8cLrLJ0tpdNT2Q0r4KCRMlDK4Qcxq02OyaKMoSr/5\\nHq7OlLm31eXCZJ6inaZXTU0hEvC9E0NMliz++rM1qp30oBsnCS0v4v2izZvHSjS6AQXbwC4JPl1p\\n83unhjA1lX+8XaHSCRnNW5weyXJ7s8NG20fXFMJEEMUxuqagqSrNXkgxo9HoRfzibo3hnImhKrx3\\nsoyqpgf/YsYgTiBrKHRFgoLCufF8OihZUTgxkqXq+Hy97hAn4IURUZygaypGvzFf1xUsXePGeo92\\nAMfKNg+cEFApZy06QUQYCYJAcH48xxvHSvQWG9zdcDBNHUVJG+cLWYOTkyXylsbNdYdLE1lCVeE3\\nqy5uGGOpCh+ezLLe9BCByxeVEMePcMPUs/X/ri+ja3CqpDBiK7iJyp2wxV+7FW5tdjEMg8K9Ot8/\\nWWQoZ/HLRYf/crvJSt3DtjQmixmypsbZiTyNXtA/OXFYqvfoBakB+FbH5/pyC0UIGu02ttfgL50G\\n7x4fYij75JgrgB9/7yr6AbZnyEjx4JCi+JLwsI3bfhr0t51pdF1namrqhbbt+z7379/n7NmzVCqV\\nXffvVUifFjMGXhinwq9AJ4j7NmD758aDFoqiMFlKTxDWWx5nYsHlqW/WsS5MFga9gP/5iw1arRBF\\npM9LVVRG8yYz5QxNNyRv6bTcEEtX+6OVAjKGRpyI/iQIm+PDWZYbqZ2abWjkTI2cqQ/mMAKUsgZV\\nJ2A2o5DR1YHJwNnxPF+sOkyXbfw4YThrMFEwyZsaUZyQMXTcKEEkoKgKfpRg62DqCtVuwIXxHI1e\\nRDmro6sqSSwYy1u4UYTWE+gipmgblDLp9rKmzldOGy+IKWcNdF2j3vFxg5hOkraRZFEYK+hU2gHV\\njo8QCbamst5yUVWVgmXgiAhTg7GcydfrDh0vSs3HVQVNTW3tRnIG0+UMl6eLeBEkisJyK0DTDUSi\\n8kVDcO5kmYvn85xtP6CVNOg1XQpG2vpjm+kYqdCw6Bk6p4ZtNBWWAoXRQkQuYyNUk8/WXFTh8Jdf\\nNdEQdIOIlhfR83xGLFDcBp/6G9xvx1S7CV6iUHUFXy5t0Qli9KBDr7lFy+miq6kL0Y3lGufGcowV\\nrEfWLk9Oj3N2dudB35JvHymKLwnbTegPr3FomkYQ7BzlhGGI53m8++67LyRWQgjm5uY4c+YMlmUd\\nuiH4YfuRnhjOUnF87m11cd2IsqXuWJSxF24YYxnfHMR0VSGIdn9d3jxW5D9tViGOoOUxljfp+CpJ\\n/3l6UYyiQBwLZko2Fyfz3NnsoqkKH54ZZqLvyfmjcyO03ZCOH+EGMVlTRShpb6FBagw+mjeZyELe\\nVNls+5SyBpqmcGo0i6aqjNg6QZjQCxIsMyFva3TdmIKts9Zy6S+R0vZCDF3F0tOoumjr+GFCECdM\\n9WcttpshM2WLKTNiejzHD86N8ut76UzBkq3DUIZeEGOo0HAjVAGaBkEoCOIAIRIURcHSVXpRQhQJ\\nar2Igq1hqSoFW6MXxCw3PeI4IRIirWz1Q2xdYyyvo6kqw7l0FuO5iSw3Hjhpa4SpMl3KAIL/76tN\\neucibE3FjxJAQVcVTMtAVxSi/gxHP0r4dMVhKGeQt3SyCVwuZujEGuuOz1Y7plTIgRCYbhfihETR\\nGCrnOHesxIdvThHOVaGRDnweNUMWV1Zprq0TR+lapqqAH4GixKy1fJIopNHSGLbT7+zqgwe8MV3k\\nN7/5DfBoL+5+nZoOwxJR8g1SFF8CdrJxg90jxe32C8uyBtMvdmI/0d36+jqWZTEyMjIo8DlMDjvN\\no6oK758c4spUkWarRWMreOZS+tmhDJ+tNDEKFlGStnmM7jFlfXY4y49Ol1iuOZw+UebkcJZGL+AX\\nd2uM5EwWaz3OjecJE8GPzo8yXrC4Mv2kS9BE0aLjh7TciGJGZ6sTMp43aHtp1FKwUo/TTrPKX1wt\\n82lNZ6sTcG26xJ+8MZmmXeOE25sOArB0le8dL6dWdlHCObtAHKdri50gImdpnB3N44Yxl6cKvHO8\\nzJ3NDl+utql1fS5N5RmyIO42+bP3j9N0Qwq2wYejeT7RG7hBxPUHLR40PJI0MCeM099RnP49nNUZ\\nzlvYupp6yxoa1U5AnCSM5ywUJcQNYppuyETBZNgCK2ORCIWMqXJ6NNuvKNV461iJi5OCxa0ew3mD\\nWAjmNrocK1tstH2+WG0B6fQNFUFepOusugJZS0dXFSZLFqqS2rxttgJW5uqYpslI1qDuRbR6Ib0g\\nGhRWHRuyyds6E0WboayJAjjdHmsry7RqVRzXJwhT0wNFST/fmpqmjnVdZWyogADKIxka1Qr/7R/9\\niB9/75vxJg9bIu7047rujk5OD5tKqKrK97///Wf6jEt2R4rit8xuNm6wuyguLy9TKBR2nXYB36Qp\\nd3PQAHBdl9XVVd55553B9nYTxYNKnx4FiqKkJfeBQfM57n9pskAUJ9zd6qJrKj88O8Jofm+XlJGc\\ngY3Fmf74oclShv/m2hRumCBEQiIUcpa2Z/N52E9b6lpawHN82KactfjjK+Poapp61VSFDjBZMPnf\\n3jz9yP2n+uneTccnSsSgH++H58Zw3ABNVTg2nOXX92qsNlxMQyNv68xkMozkLTKmzpuzZa5MF4kT\\nwYOmx+2VLTq99EDfn3OBpqUzEj9eqGOqCtl+C4lCaj6QJIKcrXF1qkDW0slbelroYqr89NI4ny23\\nKGY0lusulq5i6+m8xjBOyFlQyJm0vYicqWPqGj88P4qhqVQ7ARN5i1Yvot4NqPUCcpbGG8fKLNV6\\nOH7ERNHi1GiOL1ZbFCyd4+UMfpxwcjRLnKTRai9KGMtpfHo/BCXh5Hh6YmlrKltRTCwgEQI/iPGj\\nhPWWz1bbY3Wzhqgvc//WXaotlzBOJ5XYRhrxqigoKJiaSgJk+r2xbhgTJ4KsbfHBtQuPvGd7WSLu\\nlyRJXpnv5quAFMVvkW3jbsMwdrQy26klw3GcQfvFp59+uutjbwvqTqK43f9469Ytzp8/P7jNXvMU\\nX4UvnR+mI5a2I8NnsZR7GFVVeHO2zJv9ilUvTCtMs6b2hOflNju9PpahYT2jA0ve1jkznh+cuFTa\\nAZaukTE1kkQMGsr34vJkgZ/frRFECVGSULR1Lozn+Hy1ha7ClakifpTw7vESxYxJECUDQYW0Wf3u\\nlsMniw10EbHVjfmvtzb5yYUxSrZOpV/Ec3IkS87U+GKtTcsNablpgZCiCD44PYJlqJiaylDGYLnh\\nMj1dZKpk403FfO/EEHe3OtQ6Acu1HqtNl2oQ0/YhUEPytkbHj/jiQYu3Z8sM502GsgZtN+R/+dEp\\n7lU63NpwSAQcG8rw9VqLBMhZBpNFC1NXmSpa/I+/f4Kv19vMb3bwooS5TYecobFUd1GEoJDT0FUF\\no/+ZmSpl0DSFVjcgASbyJlrQ4f6dr/nfP25jGyp5S+PMWJ61lksbhZyZpqE7/QhVUeifgGRSj1xN\\nxVDhzQsnsMzdMzuSlwMpit8iQRBw8+ZNrl27tuP1j0eK2/ZrD7df7BbBPa1IZ3l5+Qmz76OcdXiQ\\nRHHCx4sNFmupC8qVqSJvzBQPZP1yodrl4/sNBJAxVH50fvSRCfZBlHB9ucmXi3VE5JMdcZl6zikV\\nBUtnsmiz3vLImhpdP+b0WJaMqbFc6/HRYiONpoTHheHdT1KOj2T5qaawXHdRFHjQdFluuMSx4Ppy\\ni8uTRf67t6b7kx5Urk4XKWUePVh/ttLE8SI8z8dUFbwowfEi/vDSeDroN0qYPDPC1+ttlho9vDCm\\nlLXImQnjBYur08XUgNzQKFhpxGdqGtWOz4dnR7jcH1T85WqLH5wfZb3p8vH9Bg2nh2UoDGVMDC2t\\nHL5f6zKcN3G8iFImHeE0XrC4PF3k725WqLR9TE3FC9MTAC9MB2wP5ywKts77J4Yo2TqLtR6GqtDs\\nBaw0XY6XdKxcBj9KWGm4ZE2NS5MFpssZ7qw3+acb82xstRjNqAhdZdPxmSha5C0dP0qwdI2pUvp3\\nEAlsQ1C0DbKmim1oZAwN21CZKtlMlHKcm514rs+F5GiRovgtEccxruui6/q+Rzk93n6xV4p0L4F7\\neLTUs9zn24wWgyjh67U2tW7AaN7k8lRxEBHe3uhwv9ZjsmghBFxfabJc79HzfNo1jxPnwkEF57PQ\\neWiWnq4odIKYX96t8a/fmESIdILDjZUWi/Uew1mdpuPxz/M1/uTqxBMisx9UVeGNmSKOF9L1Yy5P\\nF7g2U0rXJ++l65OmrjK/0iaOBBf3GDQyVc4wVc7w5WqbZi8ib2ucGM0yGQrOjud4+/jufZsdL+Lr\\ntXZ6UhGFtDoBF3Pp5A7b0B6pwvXDmDdnSnwuWliawnsnR/iza5Pk+2t4USIQQmDqqWhp6jeR/MXJ\\nPM1ewIOmR8bU+bf/4jj/188aZIaLlGydrKkRJWlV6mbbJ2tqvH/ym4HZOVPjh+dGqXV8Lk7lmbxb\\nZ6HaJWNqHB/O8uHZ4cHremmqyKX+ft+rdMhndD6b6zKct2h6MV4Y8z/9i+PcWWvwxc05lh6sYrk+\\n40UbQ1fxgrhvCJ6aJFhGmgo3tTS13PUiyhmD2eEMWUMjTAQXJlJ7O0VR+MFbF4j93jN/JvaDohzs\\noOnvOlIUvwUetnHTdZ0oinacarHdiwhpH2EYho+0X2ynO/drGA7p+kO3230k2nzZSRLBz+9WqToB\\nOVvj1oZDyw354blRFEVhq+NTtPX+wQE2Wx6bLZ/LExnW/ISfzVX4s6uT+zKT9sMYN0yNn7tBRJgk\\n3NnoUOula3Il26DeDfjdUpN6L+Sz5SaXpgpk9bTKUiBoueFAFKM4YW6zQ8XxKWcMzo7lMHUVy0gH\\nBy/Vemx1Agq2Tjlr8Pe3tlhp9qg6Abc2HEp2WoHpRzG9ICJJNIYyOpsdd1+v3d2Kw60Nh5ypkSAY\\nL1jMlJ/sRXW8iM9WmnT8iDBKGM/bVLsBiUjdbDpePKiS3abi+Pxyoc50OUMpa1DvRnxwZuiRYcfm\\nQ9Zo28bgYZwQxgJbV/nw7AjdIEYBDCXh/gmb37XB8SOabsip0Rz/9vePk7N0CrY+ENSNlsuv7tXx\\no5i2GzFWsLg8WeDH50ex9dQsYbehy6MFi7xpMFNQyeRMDD3m6qjG6v15VpfXUYOY0yNZjg/ZPGi4\\nBHGCQmoFuG20LoSgYOmM5E2Waz0iIcjpKrVOSFuLOPnQ7Mk3zh5npJSnVtt5uPeLIpv3DxYpikfM\\nwzZuT3Ot2b5uu4/w7bff3vdMxd2uW1hYIJPJ7Dpa6qjOOJ8l8uz4EVuOPzgo50yd1aZHN0inSZRs\\ng03HJ2fpxEmSemkeL2PoKlkDgkjQ7IVMlvYWxfWmyy/u1UgS0FR4Z7bEYrVHlCQ0ewF3tnqQCDZa\\nLhcmC+nB1dL4bLnJuWGdnJJgJTyy7vjrezU+WWpQ74astzxMXeOD00OcG8+TMTS+Xm+jKQpNNxys\\nSXlBwkzZptYJ+PefrZGzNP7+1hYFW2e8YDGdFYzaOz+XJBFsOj5+lJA1VdZbaWqxYOsIYL7S4Ufn\\nxkgSMaiW9MOYn92u0PPT0tHFWg8FeGu2yEqliYXBtWPFR6p4txyff7y9RdXx2YgT2n4abf3V9XX+\\n1x9nKOwyd/FBw+U3C3WiOLWc++G5UYr9E4ggCDg3bPL+26f4eq2Nraucmyhwv5amZ0+MZDk/nseP\\nEn4+Xydva7TckHu1LhUn4Mp0gVov4E+uTJDbY1B0KWPw04tjVB8soEYOfrPC3aqPooCqKA8NmdbI\\nWzpRItBVhZYbstr0+qKYTvAYyqYnSecn8jR6YToDNGHQtG+bBh++fZlOu3mosxQlB4cUxSPmYRs3\\n2N8op1u3bnH27Nkn2i/2qhbd6XEbjQaO45DP57/VtcO90r473l5REOIbId3u/1P7onp5usBWx2ej\\n7SGSdHJ9OWuiKAkiEQMBaPQChEgPio/PvQuihF/eq5G3dGxDwwtjPl1uUcym0yDmNjoUMhpZU+fm\\nukOjFzJesFiqu2nBRVfHVBL+zfs6Xhjzm3t11louf/PVBi03QlchSqDtuqikIh3FCbPDWW5uOADM\\nbXSwDZUL/VmIhq6yUO3iRwknh7JUegHLdZe2I/jvrxT42a0K/3Rni9Wmx4nhDH/x7gxtL+LeVhdN\\nVWn3QtpuyOywzZbjIwQMZQz+388e8H/+c8BYweRPrk4yU07XMTfaPm0vot7xaLpR2mcYx+iKwrWZ\\nb9aeVxsu/3hniy0n4PZGBy+MeeNYAV1VUBX4fKXJD86NDm7vhzHVbkAviPnofoORvIGlm7TckF/e\\nTdPN20VRqqpydjzP2fE8HS/ib77axNDTis5PFhsIIRgv2MRCYBsa8xUHkaSTN0ythBOklak7iWIY\\nJzR7IUEQsvRglZW7Nxkdn0SDtI9kB7S+kQDAcC6d8ZgOHFaw+wYMAijYxkBMe0E8OOH7/lsXyWUs\\nWg05YPhVQYriEfK4jRswSJ/uRhiGDA8PMzw8/MR1+xHUbbYt4a5du8bKysqhN+nvxbOKYs7SODOW\\nY77SwTY03DDh8mR+0HJgGxo/vTiWDslVUpu2Xy/UCaOI9W7Mj4dsbm84g7P8kZzJj86NPlIZ6oYx\\nUfLNvD7bSKOQiXwqGJP9qKDrRQRazHLdZaJooSAoZ0xmh0yKWkSl7VPt1FBVhf96c5Oleg/b0HC8\\nkCgWjOYsOkHMjQctgn6Bx2Qpg2WoWDrcr3bp+THlrE4viKk4AV4Ypc3ohoapqmyFMX833+ZmrUnT\\nDUEIbm44/G6pyenRLKMFC1VRaHshKw2PqaLFlekihgZ/81WFKBbkbY27WyH/8cY6f3B+jLlNBwWF\\ne1tdVpsubpCwXO9StHRmixpL9R6qqtDxIv7q+iqOH2HqKqoq6AQR6y2foYzBqbEsHT/G8SI+ul9n\\no+Vxp5IOTfbChCCO+ZMrk+iqSiljsNn2CWOBqX8jir0gxg1iNtsesRCMZtI06JhqMV/pcnw4CwiW\\n6z1Wmz6qAnECN9cdpso29V5aBTuWN8n37fTcIOY/fbbEF3P3WV1fJ2uoKF7IKKnZeyJSk4ZtbekF\\nMY1ugKKk47Iyg8+Fiv2QsUOaUtdpexG2oRFECYaWVqOOlou8ef4UsPuAYcnLhxTFI2InGzfYW9gc\\nxyEMQ06fPr3j9c+SPp2fn2d2dhbbtp9aZbpTavPbHDSsKArvnRhivGDRdtOimdmhR71edU0drCEN\\nZU26fsw/zm0SRIK5DQdVTRvBFUWh0va5ue48UmySMdLSfDeMyRgabhBjaiq/d7LMV+vt9CDZCQhj\\nQScIyRo6tW5IEAuOlW0KlsqIIbi71eP7Z0fYaHsEsUhTu20Px4+JE0D4uFFEGAsyuvZQqlNDUVQu\\nTxboBDErDRc/Smh7ET0/RtOgaOnEQjCS0aj2Irzg/2fvzWIjy/L0vt85d4udwX3Jfamsfetapqda\\nPW71yOqRLWlmLIxlyA9+sv3kV8+TARl685MNw1DDEAwDY2MAybJlDSDJUo+mp6un967qqq4lFzKZ\\nmWRyjX2721n8cIIsZibJzKxmtaZsfkBVsXgjghFxb8R3/v/z/77PMsoUke/2J++1Y3JjODdd5pf3\\nu2AtmTJsdBO2+xnPz1fwBFRKAeXIp5fkfLDe4Zf3OzQGmSMt5apqCyQ5CBR3O5r//k+X+cYz07Ri\\nF3g8WwmoFUOKvkc19FiohVybq3J9e0DkwXv3WtQKAauNEZ9sOgu681Mlvrfc4J++f59n56ucmypQ\\nL0YEnrvWrLXsjjQ3PtxkkCg2ujGeEOPBFScvmSiGlCOfNy9M8t/9q5sMM/f+PDNXYaMX0xmlfH+5\\nQXuYE/qSv/vmEi/O+Pyz73/EL29vUIo8Ik/Qi3O83NIaZmx0k/1r4PxUiUwbbu8OMdZirKUxcO3R\\nyPdQxu0vjnK9f40sThTwZcYgdYYIi7UCnhR88+2X8catdK31sUYbnxen+4knj1NS/DUhSZJHbNzg\\naGLbk18Ui8UjB2KelBR3d3dRSrGwsPDY+z1tFfd58HmkH1IKLs08WejxKNN8tNnj8kwFv++mHncH\\nCZdnSvQTxTBT3NjuU4k8UmWZq7kR/996Zpp3bzXpxTmhJ/mtZ2aYrUb851+7wD/4F9e5Pczc/lzk\\nUwx9ir7k3KTLSSyHgk6sma44Yg7GYndfCFLt7MsEkGjDsKepFXwqFZ9cGXb6Cc8v1qhpS6otLy7V\\n+PHtFnGmiTxJ7rnBlCQ3GGsplD02ejnt2JAqS+jZcffPMkw1qzt9trsJjUHGXC1ivlZgrTXCE9CK\\nNYVMkxvLyk6f9khRCCW+hURZtIUAQIAUzlR7pODG9gCwZNrS6CdsdGPqxZAocAuHxVqRjzb73N4d\\nMMoU91oxvhSUQs8J7Qcp97sJ1cjpD0eZ4nu3mnzt8jTfvdngjfN18kzxUUMRTaR8tNGnNczY7MZ8\\n91aDWuTje5K/+8YSAJ1RhpBwaaZMKCW9OCfyJBvdFG0t1UjSaDT4H/7xJ7wyF5Fp996t7g7HtnuC\\nkjWYjpO/SCkYZYrNbozA/TzKzdilx1COXHdnmGq2+ymZ0kyWAkqhT70YcH6qxMF15LMXz3BhcXb/\\n/7XWX2j6zGn79ORwSoq/BhzcRzzMteYwf9Nbt26xtLTExsbG59IiSilRSpFlGaurq7z22mtPZDR+\\nGCnu+aNqrZ/Kp/GoD+oXrYccpgqsa4FaLPMTEavNEfdbMcuNIb0kJ1OGmztDrs2XUevwV65McXGm\\nzO++tkiaG6JA7g/MTJQCliacz+d0OeTMZJG7zRHDXPPMbIVUayLfMj/h8eK1OX5+r4MvJbWCxyed\\nmNATBJ5Pplw0EoC2lnacI4VgwvMQ1rLeTXh+oYLShubQSRCMNdSKPr04pxBKtLbcHyiC8QSksW4R\\n4EtJ6AmksKyM0+ez8d5XmruUjPYoQ1i4302424pRyiAFeAgUBjEuOvIxgWsLCLDCIhE0hzntUYa0\\noLFooxgkkhcWavze60v8t3/yKYmydEaKQaJINEC+f156zRhPwpXpEoXAo1YIiALJxxt9Prjf5ZXZ\\nkK2BYTQckGSaSugq9mGqKfmSa/MV/tmHW+wMMn50u0VnlHO7MSLyJZ5w+5nt3ohs0CbvNzDavb/d\\nmqReDPigMURri+c5L9scS0UbQiPpj4dkMuWmSntjWz0APXY3OlN310A3zpAIBqnen3hOcr0/XXtY\\nePAX2T49JcSTxSkpfkNPrvcAACAASURBVMHQWtNsNikWi4devL7v77dV97Anv1haWmJ7e3ufjB7G\\nk0RLXb9+nStXrjxgI3UcKe095sFWz/r6OtZaLly4cKg341G+jQdx0Pi41+uxsrJCsVj8lcj1KBRD\\nR4a5MTDWll2cLvHLzR6h77FYK9JPcrSxFHyPqCh5b63LxZkygScfmB7NteH7y00GqQuoHWWa9ihn\\nuhJyYarEH3zlDPVSQLvdZnt7m+cXa5RDn41uwtwb5/jffnyPTzZ7CGsp+D65dvueAovRFissCxMV\\nLs6UqZdDuomr4uaqEZm2GCvoJwpPSrR2Lb5MKTJjma2GdEY5qbL4HoSexyDTlMOAWtHHjr+4wWUz\\n5greuljjF2uS9faI2VpEJ1bkxpIqSyGARI09TMcEqS3ECiLfkimN1pbh2N90o5tTGzvPfLDeZXl3\\nyHp7hO9J1BFrHm1gq5vwnU+2KUQ+99uuohzlmn/+njPFl36OL50uNM4MYShpDjM+ut8jVob37nbY\\n6MTEuSP9++0EkyXofpNBrw3W4EuBJ6EUeGDdsI/ShmGqUNZV8DmW7iin0U8xMLZqgzOTBYap2jcR\\n18aSKpe8Ygz4QiKl24McphqlLY1hxrx0TjqHhQef7il+eXBKil8grLUMBgM+/fRT3nzzzUNv8zCx\\nPSy/2Dt+FCkeNaTjeR69Xo9CocD09PQjx45K33iYMEejEVtbW7z55ptHyjieBAeNj69fv87k5CRR\\nFP1K5BoEAcoKEiMphgHT1cJ+ksAL0wHvbwxpxYaZTPGfvHmG73y6y0wlpJdqPtnoYXEVmycEm52Y\\nf3t9l2IgeX6xiiclUsAw0/RTzW9emeIHKy22eynLOwPeuTLFX3t+jsnxPuZB95zz0yXOj3Vq91qO\\nKBJlGaYKKSH0QFtBojXnp8r81rVpdvs5F6fLFAMPYy2LtYiP7vcwuOgqcF/C/VRhrCFVGozg7ESB\\nWFlHRNpS1B6lyGeUakLPfbGXaz7bvZTnFyr4UuJ7Yt9r1JOgcvdln1lcMgdgMldFGgMaZ/DdGblo\\nJ/dcwFjoxpr/9Uf3ePVMDWMNo0yjjea4PkAvM/QzQynTNAcZpUCSaYMPDFJQNufgUi9PDVlmXJ5l\\n5HO7OWQQ5+TGYtMhvd1tdNJ/4G8oY9lrKg9SRXvk7p8rQ+hLcm2INYTDjEGm8cbylErksdVLyZRL\\n1hik2nmmGnf+fE9SDt3+sy8FnVhRLwV0Rjn9RPH6xRneevHKI6/5lBS/PDglxS8QaZqitT62VXiQ\\nFPfSLw7KL54kU/EwKKXo9/u89NJLjxx7kkpx7/lcv379AX/Uz4uDxseFQoFqtUq9frSrylE4SK47\\nvZjv3mySK02uYi5PKq5OOr/YQGteKGbU64qZbIPbH68TNxU/u2Mp+nC/ZUBIpk2H+0OLQRDlfWIt\\n+L9+6mQMhcANTSSxYmmyxDefnaY5VHTjnP/sN88/YPd2VDW7MFHg7GSRUe6qlO4oQ1mIPEdOLyyU\\nMVbw0pkqm90EgzOjnipH/OG3rtEamwYUfMl/8yfXma8VaPZc9dLPNL4veWFpgoLvqq0P13s0BymZ\\ntiS5ZbIkqZd8ztYLGAPLuyNmKgFppmiMFAXftRYFLl1ib090vZMQSEGcK3LtKkaJqxAFruKzgC9g\\nu5dywx9wpl6iHKU0B070fxxCD8qRT2uYI3HaPj8QWAFFXzDIP3sAiatclQJPaNqjjLTfRfUbSBW7\\nNu9DEDjiTrVlvROjtCVOHVkroxl3hsm0HpOyZbocuMov12TKEbyx7BO8tjiC1IbaeHJWALlyCxkP\\nwYWLlwkOWcCetk+/PDglxS8ISimSJDm0wjuIgyS0trZGpVJ5QH7xeQT61lru3r1LrVZ76rbrQcJc\\nW1tjYmLiAX/Uk8DnNeqGB8n1o+UeU/UqlcjHWMtWN+XNhbkHEi1+8IMf8M47XwXgTWX4YL3L/W7M\\nM9biYR3J7gw4OxHgS7i1M3TSDp0TypyP7/XwsOzu7OBhGeWaq3XJp7/Y2X8+e1Z9aZpy/fr1B1q/\\nNk34ylKR9W7OMPO4kWumygHT5YhSFNBLXCjwO5enGaSKu60RnnBm27ViwNkpV3Faa1msFRhlitmK\\nz2LFo698orHxdaXo8eFaj1y71uEwUxR9yUwlolbweXlpgkLg8d2buzSHOYuTRUqFnM4w5zcuTvHC\\nYo3//Sf33ABRIPeHSZR2QnXXipSk2pArN4SDgMATGFybWVvLy2cq/MVyB4vZryofOf9AFMj9alxb\\ngcCSaFedCilw3kDu70S+INcWoRX9ZhPdb6G126s89iqyYwencbW3d1sp3XitMpZRZpDSTZn2EsEw\\n02RKY8ak/zDfmvG/OqOciVJAJfSwOFOCt66dY352hsNwSopfHpyS4heAPfnFk3gS7ukU+/0+Ozs7\\n+zFOB48/qRZxD4+LljquUtyzjhsOh2xvbz/ij3oSOIlBG2stg1QxW3WVjRQCT0By1DcxEPqSty5O\\n8haTD/z+Tz7cdNVY4EHXMlUPmJurM1MJifopLy3WkBKag4ytXuKmSCshb52fpBS6gaZ2u83m5iaz\\ns7MPtH4XC4aVLGHSUwgU8wXNG1OWQKbEyjLIodju8t7PVj8Lj/V9NgY+Ow/trb61VODPV3tMRoI4\\nB88XPDtfYaufojqG7X7KZClwocjaMFUKCX2PYuCz2hzxh9+6RqIU319uc2m6xDDTLO8OSLTBYPjW\\nS3Msb4+Yn4jY7iXcbSlXIY7JDylYrBTojDL6qSPfeinEGEuu3Z5jc6BYmiwwUwm530qcNMW4aq8U\\nCsqBZJRbBIJcaWpFH2Mh9ARxmpNbSPNx69aCsKCzmCBu0Wu3sOPrRuII6qiCVAp3vqUYR16N7dmw\\njkT2pBXlyBs/dztu/Rq0+awiPuzxzfjvZ8qQSkkplMS54dzFi1yarRz6fL4oUjyVZJw8TknxhPGw\\njdvjcHAg5oUXXnhEfvG0leJgMGB3d5cXX3yRmzdvPvH9Hj5248YNnn322S/EH/UkSFEIwdJEgc1e\\nwmw1Ih2P2dceshdLlOWHK03acc58tcDLZ2qPhA6/cmaCd5ebRIFGKYuUgnoxGEc1WabKIQu1iH/T\\n2nGBsaWQ9ijnz281+NaL80RRRLFYJAiCR/ZvLwBXLys2OjEIy1Y34147xpPOmec3L09xabp0bNjs\\n3vTyK1OKwcDwyWaMzA1nCj4TWUwBS18b2kZTLXg0E/CtYTCKmQg0zbYLK97Z2uRKxbJSFsRJSjHw\\n+O1npqmWAv7GiwsEnuRffLTFe/e6zNcizk2VuLfbpR27VnMxlEyWQq7OlmkOcpSxYCFWGiEsl2dK\\nXN8ecqEWMV0J8YR0Az8GZqohczUX2twdZWz33Z720oQLXE5zQ6fX5/urbfqZm+gc9rswaKKSPlHo\\nU/QFqXLHcm0RB4gOAYW98zo2aAikJDeGODeMMnd7hPNjlUiwLgux4MNQqHH8ExjPpWzYw0pFPjO/\\nUdrie870fHFpib/z1iXma4fvu59Wil8enJLiCSPLMrIse4BM9kjgMILxPI/RaMTly5cplx/V4T0N\\nKRpjuH79Os899xxBEDx1hbl3bHd3l3q9Tq32WRrCv0vx/lF46+IkP7zdYruXEEjJO5eniHPNcCyd\\nMNbyZ/dyakmT2UpEZ+hS1f/K1ekHvkgujCUCW92Ya3MV7rdHNIdur/ZsvcDt3QGfbPZYaQy5OlvG\\nk4LJUsh2L2GQKpfILj4b6himzt1kYkysy7sDbmwPkELwypkqz8xXXNRSMdg3HNjzwX3cMNMLz8P9\\n+/e50xhyNyuxMP4STpUmWuuxWAvpDFN+fLdNmmsuzhSJPMmriwXyPKfmZSxEmn6aIFLD9rDF3LTg\\nw/fWAChlljdKhnJqsMInLxo8a+hm4FmLZ3P+9rU6S/Ui378zoDly+5oXpkqcmSrx4tIE37vVoJ8o\\nioGHLIf8/muLhL6kMcyZKPi8fWmSH660ybSmXgrdOUs0b8xLaoFmZbvP/Y37aBLiSENUpBz5hJ7k\\nk80emXZsJYTbmw19tz9rEUwW3bTyG+fr9JKcld0hg0SPDQIEUrrhqlIg8XCm5HshwMpYyqGHSpwe\\n0zvK+k04swiLq0Dn6mX+wX/673HmIUOJgzjq83+Kv3w4JcUTxF4clJTyEdcapdSh6dqNRgNrLUtL\\nS4c+5uMmTA8S3+3bt5mbm9v3Nn0aX9SDr6HT6fDVr371yNf5q+JJSbGfKJJcUy34jyRcKG3Y7iUs\\nTUQ8v1hlshTwvVsNdgeZM3UOPbQ13OkZnpuyrOwOiHyPG9t9tLG8fr7+QLzTfC3aX+W/vFRjlGla\\no4x3l5sEUnBje8D7a11WG0NeWprgTL2AtZ+Zf7u0jpyPf7nlhjOs5Y2xY85HGz3mawWMtfz0bpdv\\nPjvDpZkyjUHKWjumGvlPHW1VL/psKEFn5Jxb2qOM33lpnl6ccz/w+Z1aCSksgZRMV0KuzJSpFQMu\\nlkMuX9bcaQzJtWWxXmBqTEx3WyNW17oIoOqn7PYTjNdBCUWt4LFQC5gteSitKdiU31qCYWoQJsfo\\nIXdWM9Z6ik47Zy1zLdevzPnMpobQBBQQbLUs73YbzNcilns5zTaEgc/rSyV++uEKP/3wLoUoRKWZ\\nm0j13L7j4kQBKQW/UZhioxsTepJunFMp+GhjaY+c4UIx9Lk8U2a2GlErBsSZMzjIlBuama6E5MoQ\\nZ5pcGZpDp08sRT4SSJXZrzg9AaG1KOus4PYhBKEnqBYC3rkyxe9/4y1ePDt56Hk6iNOK7suBU1I8\\nIRxl4wZH7wvuyS+iKDryA/OkpNjpdOj3+7z22muAI56jqrujjMSNMezs7DA/P/+FrmofJkVjLMPM\\nvY7K2Dnk080e7691nQRDCv7qszP7AzTaWL53q8lGN8H3BFpbluou6mgvQX69FbPSGFLyncxglDty\\nOj9VYqef8i8/2uLyTBlr3YTo+anPdKRSCioFn483exQDj91+irGWS9MlurGLWBpmFb5+ZXrfBFob\\nyy+2U5694u8bRf/8bptgvK9lrAv0LQSSnX7Keifh/XsdjLEEnuCbz89x+QkdewDKoeRrV6b4eKOH\\nxfIbF13yxp40ZO+1rOwO+fFqi51+irHwxvk61+YqVIsBSe78SL9zfYftXsov1ru8tFTj3GSR7V5C\\nY6QAgRQeb16eZqIUcr8T06XC1avnHng+P1ptkZsh/XTA2UXNwkSBFxYqbHUT5i5MYrTmp9d3CSSo\\nTLO1lfDibMjPVpss31vnz/5tm7JI8TJDcyiwxjnrTETQyyztVoKUAiEkJQEXJ0LuWGiMUuczWvTw\\nPMGl6Yj5qvu8hZ7k2YUqQsBqc8RUOUQbS5JrhICzVZ9ERARjgi2GzgjeE27gpl706SWaXBuS3Dgn\\nHGCuFjFZCnluvsKrlxd556XDbRh/XTgl25PFKSmeEPZs3J5UT3hQfrGysnLk4x4nu9gjRaUUN2/e\\n5OWXXz7yA2Kt5cb2gBs7Q4S1+L2MVx+6zb179yiXy4dWtCeJg6SYa8OPbrdY67h8wPOTJZ5bqPLe\\nWpe5auQCXDPF95db/O6rC64i66ds9hKqBZ/VxpBhpvh4s8frZz+bko18N9E4WRC0Rznr7RiL5Zm5\\nMvVSuD+FuVQvcHN3yFsX6jy3UH3weQpX8XXjnFLkIYXg7KQLnX31zAQIwb/4aJtK5HGuKh8wFJcC\\n7rUThqkiVZqpcshsJeS9e13+/MY2dxoxsdJI6fHsfJn1TsJ//a1nKIWfkezd5mjcng1Ymihwrx3T\\nGKSMujEbnZjBmiUKPIq+YFjR3G2OCDyJsRYpYLOX8m8+2WFxokAUSAaJ4v/+YIMXFqt0Y40n4eb2\\nkNlqwLmxyfaH692xQYFLuS8aj1bs4rgKgUfkywerJpyby2pjSCGQ3GuN8KWkO8q5OFXC9zykF7DW\\nVUzXq9QKPt0455Pbm/wvH91C5kNCT0JYZKgklxYiCuUKxkDou2t5eWdIPk7riHPFdCCplQNeLEZs\\ndlM6icIDposQ6phmc7jfKbHWUrYglWa7FZNpJ9UYKSgAwgMtBAGgc4M1UC35FH0fZS3FQFDwPZbq\\nBXwpmCwHLNSKBJ6gFPp88+2jP3O/Lvy7/vv/X8MpKZ4Abt68ybe//W3+/t//+4ceP6xSPCi/WFlZ\\n+dxWbtbafbPvYrF45HNcaYx4b63HbCUk15oPdxRv9lPmqhHGWtrdPju7u5w/d44kSR65/0nvKea5\\nG6lf3hlwrx2zOFFwUpLWCLBumnQc2VMOfba6CWpcVWnr2mEf7A6dc4mQtAYjbu0OKUUuiDZVlqtz\\nFVYHO5ydKdPop8xWIpcpuD1gmGlmKiETxYBS6DIRFycKFANvfxDn6lyF240RRlvaw4yC7yNw1Vej\\nnzFVDrk6V2ajk/DpuusS3O+M2Ok5k+ndfsrffHme242Ye60R3/lkh2IoafQSuqkl8MATgkGS88b5\\nCf785i5TpQhlDVvdhPZIEQWS2zuu1VkIPa7OlvjBjRbr3YwXz0m6sUIby51mTDdRhJ50e2k7A2Yq\\nIVu9lDhXjHJL0XfC84/u9/g7XzlDMfTIdI+trnOq2e1n9BMX7qu0cfmCWqOMJc2d6P1KtcxivUA/\\nUaS53tfuDRLFeiemUvAZJIqtfsY//vm6G2QJJJUoIFeKP/nRTd77dHUcsg2vnp1wPqSRz+5oNJ5E\\nlXCgW35xpsRWN6Ub52RG4FtJN/dYmChxLipR6KdYYKocUCsEKO2M0hGCcujhScHMvOLHq23MeOo0\\nSDNibZgpBXRiRS2SeALqHkwVLIG0dGLFTmaoBBaZp8TKyUe6aQcpJTPnFtjdWKO9s/lYVybnhnO6\\nr/hlwCkpngB83+fWrVvHtkAPEtvD8ovjTLiPI0Vgf0Jxz+z7KKy1YyaK/r6NWSBhq+cCaN9dbnJ9\\nZZULZ5eYzMH7grMWD1aK7VFOeewZKYRzWsmU8yJJck0h8GiPMjdNON6/myqFZNoySBQz1ZBerJiq\\nhNxrj2gNc+ZrEf/+c7M8t1jl/2jd5cx0CaUNH97vcbsxpDNUZNrJAQDaw4z3112r1pOCr1+dZmGi\\nwGQp5FsvzPPJZI9frHdpDlLutGKenSuz0U3Z7rsoqrvNEYM4oyoU91Y7lCMPTwiqBZ+tfsbr5ybY\\n6MTkxjIbeqykFgOkGsAyUoq/WGmz0U2IAp9homgOMxZrEeWCz+JEgetbA2arIc1+SnOUIYWTEWx0\\nE2oFn0GmsNYN9fTTnEGm2dnsk+QaPbYnG0pBbgKEFPzZjV0myxE73YTmMKMYSFqjnNYwd6keiXKL\\nBKlIchettThRIBw7uvzzDza414ppjVzL+tOtPv1YcXm8AGkPMwaJ5NVzE/zw5jZh1uWTlbssb7tQ\\nZWd1B3dbI67NV9HGLYSkFPtVcjfJqUY+F2fKTJYC7rVG44Bfj+YwI1GaUep8XYUQ3GnGnJmw7AxS\\n1FjRH/mSpXqBwJPMVkLYk2go1xafrZV4djF0wzrStZ7X2gmxtUQVwfPTPp2RW8BdrDrjeGstYeDz\\nd/+DrxP63iPTwmmaMhwOH5geHo1G/PjHP35kcRkEwb4L097Ph/3/wX88zzsl1y8Qp6R4AqjVavT7\\n/SOPH8xM3Eu/OCi/2Dv+tKSYZRlpmvLGG28c2zbdIxtHQO732oDvCd5dadFoNDg/M0G5WOCna0Ne\\nmzp8D/OoavZpcZAUp8ohq43RflL7KNW8sFDluYUKP7jdohvnTJYCvnblM6lDMfT4+tXpffuzSuTR\\nHhkuTZX4yvk6m72UiVJAIfC4Uvd5/fIkW72Eb1yboRvngOD6Vp/NTkq14PGT1TbPL1aZq0XEueb7\\ny01+97VFAk9SLwW8c2Wal8/U+Pb3VpmvuWGO5rDH3VZMmreZr0UorZkoWXwpefviJFII3rvXZaef\\n8vxClW6cUQolvVQfqn0b5obV3SHVgk88jm/qJorGMKMzytkdpHSTjDg1GKMwFvp5F20NrUFGKfAo\\n+pK7rRFJbtDakhnjyMHi7OXG+kVrDcs7Q14755Mqw/1u4oJxx+4tAheIvNNPKQWWhUpIteDz7FyV\\nuVrIn99skCiXZ7jVjXl3uUkp8Ihzxd3miNy4cOeAnJ9/uI4ddZmvhIzG/rGl0EcIS5xp2sOcQeLO\\nyVzZtah/eb/HVi8h9KXLpxxmY3cdF+u1O0ipRD7b/ZSpUkA5CtiLqLjTGlEMPAJPMEgVa60RjUFG\\nteCPo7hyPCnJsozIE1yYLu/nIyrtthhCX1DwPFLlzMhfWKw+cN0LIfj66y8wPflkjkx5nvP+++/z\\n9ttvP/D7gzIcrTV5nj+1r3C1Wn1E23yKXw2npHgCeBwpHiS25eVllpaWHpBffF7XmuvXrxNF0ZF7\\ngAcr0OcXqmx2U7Z6KWAphzBfjfj57QY6GTB75gpSSBrWubZ8kThIildny7SGGXeargq4NFPi6lwF\\nTwp+/7UllHZtu4fJ+Jm5Cu9cnmJ3kLGyO0QAV2creJ6kEvk0BhmXZspu8GTsg1kvBftepZ6ES9Ml\\n4txwaa7M5Vl3PoqBRy/OSXOzX5nm2vDucpM4N+TK8MPbTRr9lNYwQwhBY5BxfjKkFadIm7Pbz7g8\\nU+bKbImPNvp8fL8LSDJlaA6yIwXnQwVkzlbNvV5XofRT506TKUuiDHkO1vmykShDOfRY3hnQjXP6\\nLpriAWsyAVjDOC/REHkSbTR/fqtBIAW5MhjjxPJ79mcSyJWlp2GQZdzttfmH31thshyy20tpDDI2\\newmZMlgLo1SRaZDWopI+qt8gVEPKhYA016S528M01jqRvnGyh8q4S3B1rkzcV6TKsNVLxgkhbgG0\\n00uZqYT40nmW7vRS7mQjfCloDlLO1ItUIp/2KCNThno5YJQ6ac4o00gvx5Ow1ooxWKy1KKWpRR5x\\nptjq5fQShRTCZST6AdZaIt9jmKjxAvKz8zRTr/Has5f2r42DBvKH4SiN4kF3ps+LLzJt5v+vOCXF\\nE0AQBEdOiIIjtjzPaTQapGnKtWvXHjn+tKS4tbVFGIakaXpkBXeQFGsFn7/+/CzNcZr4mr5PJZTs\\n7Gxx9fwZpHBfOFII/OPNs35lHCRF35P85uUpXh0Pybiw3XHElRR48nDBc+BJvnFtlvsdJ2nY7adM\\njn0741zvi/iFEASe4MpMieWdIdWiM8tenCjwzpVpjIVekrtR/APhwtGBdPXWMKczynn93AS/WOuw\\nO8hoDjMmS4ETr+eKYlBktaWZ8g0frne534l5Zr7CH7yxyCcbff7a8zP8k58nbHaPf2+McVV8OXBt\\nRK0Nge9cVwJfUPQl0hpSDamyaO0qnE7s4rA8CdnYkWWvU7evQR//0Esycg2BNEgpiHP7gKWZffg+\\n2nmIfrTRpxa5YOTQE/TTz+jdGoMZdVD9XWzuBsNiQMc5nhDOwBz3XHvjSWMB6ECy1oqZLAaksSLW\\nlsbA3b/gu/3dTBu3b5kqWsOcdCyvMBYybbi+1aMQ+BQCl3V5pzGiVnBxW9padntOfpEqZ6SujHt1\\n/dTwf/7CRbNJIQl9gbFusVgMPabL4fgafPCz9c23X2aYab6/skNnlFMt+HztyvS+5vRhnJqBf7lw\\nSooniKPIyfd9BoMBW1tbD+Qa7uFptIgAcRyztrbGV77yFT744IPH7kfumYuXQo9S6IZxNqXg/to9\\nvnZ1hrUsYGeQYi28daGOao8eeayTxMOSDCEE5ejpL8XQl1yaKbM0UeB7t5psdRNAcLZe4Mq48tsb\\nRnrjfJ1K5LPTTzlXL/LCYhV/vML/+tVp3l12rdq9cOGDq/+901WOfN66MMWtnQFSFpksuQGK9XbC\\n8u6IaiD4D19ewPck9zsxr5+dwFgoFwJyZfCkpBRJRpk51DDbwxFZIAEpiDxJuRTsGwVYBH4gyJWr\\ndBFuWMfiIqasdXuxkYT4iGLf90Br2JN9Wg73D3346QmcMUGcKVIFsXK3sCpHD5roQQtr1AO3d8bh\\nzicu04ZK6DNI8337tMh370WuE35wW1HyLd3U0E801sJAOpcZa6E1TFH6weeqDEjhMiUTlRNmglGq\\nSZSmFyssTgbjSUGSaRcDNSZTa10VrXKDBAqBYZhaQt9ju5cgpOBuc8Tzi1V2+i41oxvnLC7M0cp9\\nPri5ix7LeQaJ4rs3d/mbLy8+4pYEXzwpnk6fnixOSfEE8LiLcs8l5rnnnju0VXKcv+nDpHgwuWJv\\n0/2oD91xFagxhlarxdtf+QqvjH0fi4HEs4qbzV9fpXgSiAKPbz43SzfOEQImCoEzfeazSKfAk7y4\\nVOPFQ+6/MFHkd19dHFeL8pF22FQpYKbiiCnyPWYrBQaZk0rs9jOWJgosVH0WvQEzVaelzMaVpx3/\\nPMpcQkMp8PCBfmb2W5t7iQ6+JxG4fdbFuhsgCqUECZ4nGaauAhYCCj4Y4TIWQ9+1/RASKQzpEU0L\\nf+zEkipDJQywY1/TYXb0udgjMAtkBy4lk8XofgM96nxWkj4Et2XudKahJxlle1WaQzIOXVQasIr+\\n2EnG4hYi2sDowHM71If0wC8zbcm0euDWuXbaQgoekS/oJc64/IHHAEZ74c+ZHleHkBvLz+62+XSz\\nTyHwmKkW+J3nn+H9tS69RPHKuLtRKfhs9xKGmSL0H/18n1aKXy6ckuIJYa/aOxjOu4dWq4XneQ+k\\nXzx836PI62HCXVtbo1ar7ccuPU6ycdgxYwxJkvDaa68hpaQUuioSIM/tsdOuJ4GTJkVwrdbD2ldP\\nmsgR+vLQVT44IvnGtVmWdwcMUsXfe/scv1hrkxsn6J+rFZgve3z3g2VybcbDLM49pRL53G2OuLk9\\nIFWGUuQxX43Y6ibEuaYU+sxUQpR18UmehOlyNLYi8ygXfDLlAoW/cr5E6AlWtzvsDjX1ckh7pEly\\nTeC5MOVCELLRTZAaCoFrie9nIHqu3RhJgcQlVaRK4wtQY4LkQFSSJ3gwlslabNJ3qfbJ4DHnAwLp\\n2tC5tihj9g0ajVUEQgAAIABJREFU9h9u7xwBo9xJJcyB352ECGjvMdLc7OdnHgeXgmH3Q5KFcBVy\\npi1T8zO8tzHi7Ut11tsx2TibUWl348g/nPhOzcC/XDglxRNCtVql3+8/Qnz9fp9Wq0WpdLQv4uNk\\nF3sYDAaPJGk8bj/yMEK4c+cOURRRKBQeOXYcYX0R06dfNA6G/z4May23dgYs7wzxpOC1cxPM1x59\\nT8CR5guLn3nBXpopcb+TEEg4P10GnbN+1yfONaGUfPO5mf28xW9cm+GlpSpaG35yp00p8jk7VaJe\\n9LnXTCgXJc1Bzpm600leminz8UaPFxerbHQS1jsJdc8nU4ZA+sxWQuarFiUipsuWdpxRCn0CKZkq\\nBxT8LneaCZXIY5RZ7LgKKgYelcjnG1en2e5ntOKcYepalFs9t9cs9tIphFsoaaVRxhB329hhA5Wl\\nR+44HyQya0EZg28EgSeJfJdSv3f1PMC14/+aQ353ErA4A3FPPhnZ7kdMjd8LXwJewMzCAv1YsdPL\\n+Mq5Op1RPvY/tbx1ob6/sHwYp+3TLxdOSfGEUKvV6PV6D5Dinvzi2rVr3Lt378j7HrenuIeDZt8H\\nNUpPO6TT6/Vot9uUy+VD73ccYZ3Uh+/XSYrH2d0t7wz48Wqb6UpIqg1/en2X33lx/siBiYOYKocP\\n3C5NFZfrHm+++qiHre9JFiaK/Be/dYmFepGdgUuouDhV4uxbEf/6012WxRCAWsGnFHo8t+D2PJ9d\\nrBIrw2Y3dhOYnuTSZIQvBW9eO8tCLSJTlp/cabHeSWgOUy5Ml6lEAffHe6zFUHC2XuTSbJnfuDjJ\\nf/zGGXb6Gd+9uUs/VUS+4B+9e5d2nFMIJNYILs8UwSjW7m1SzntUrKGDwgskybjqAteS3ZtYBWes\\nIKWr3F28kqUUuSrKHzts27GXqMVVo3tTr18kDG6I6Wmu4L3WrABqs2cY5pZyAQSCbzw3C9ZVkcXQ\\ne8BH92GcJmR8uXBKiieEvUrxIPbkF8dlG4LbUzzMReYgDpp9H8TTpmjcuHGDF154gbt37x5KTL+O\\nD9mvSorOOs1JEaLg+C+b49qnq80Rk+Vw35otzjRbveSJSPGwv/M4RIHHf/T60lgrCRPFwLmtVAss\\nb/f5eHNA4AlmKiF/46V5bmwNWN4ZMF+LGCQKX0rOTRapYukkispY2A4wWQ643RiitOXqrDP/fu9e\\nm+1eyiBVVAsBS/UCr52dQErJwkSBwPe4UHZE+1/+1iX+6XsbCAFTgWbY2cTPBjxfHHLhwgRbQ8O7\\nt5rocRAwMNYcevvG6NoY+qlCAhIxNuRWBJ4cTwMX2B2kZNo5EzmHIokyFmOcNd3e/uXe9OxxV4kE\\nQs/tdYqHW71H4EnI92A1K4CoXOP84iyvna8zWQr4vdeW9j1vK4XHf4We7il+uXBKiieEh7WKD8sv\\njiOBx7VPjTH0ej1ef/31p7rvw8dWV1eZn5+nXC4/ccv2IP4ytE9Xdof85E6LvQGOb1ybYbZ6dNzS\\nce3TyPcYZhl7nmLaWGcx9jnxJHs8h+19TpVD3r48zduXpx05jFnnrYuTvH5uAikEN7b7/Oxum4WJ\\nIts7QzJtmTuQ3TdbjR55H7529fAU+P2/WwpoDTMmyyFz1YivnQ2RcYv7202KUhNVA/TIGZrPlENK\\nodwnM2cDJ5gsBRQDb/xeOlMBbQy+52GMHRN5gUxZCoHH0kQRZZzBthSWOHePlSk3AFMe6xMt4EtB\\nN3l0MSlxJCilwPMEHpZq5DPMtMvAHFeh+++5cKSdKvNEpCjHj23GBheXL13mzUtTvHJ2ktfO1liq\\nH95iPwoHJ8BP8Zcfp6R4Qthrn4JLv7h9+/YD8ovjvjCPIyilFEmS8Pzzz38ub9Q98un1enS73X1i\\nfVpistbSaDTwPO9Q26mnweclxUGq+OmdNlNjy7c407y73OT3Xl3cJ5KHcRwpvnymxr/5dIftXoIx\\nrnI7N/mZf+ydxpAP7/cw1vL8QpVr85UjFwVbvZQ7XcVCa8SZevHI5/M4PHy/PdnIs/NVlLZc3x6Q\\nKsubZ0rMHbMYeBK8dXGS73y8xU8+XuHuvTXKntMCLu84X9JCIIlsTrXqfFfPTpZYa8ckuSLyPYqh\\nRyHwmSgFXJurUI48NjsJv1jv0k8UvieYKgdUIp96PaReDrjfTsi1wVjnT7rZTSmFIf1EMUxTpssh\\nUeDhSadpFGONoxnbwCFACoEd++NaC0VfcmGq6ByGlCESLnklVQZfOv2htRBEHnFuMMYeWYFK4cgY\\nIShFknBijmqtQmOgePVMlaX60f7CR0Frfej+/UngtH168jglxRPCXqW4J5m4cuXKEztVHLenuLy8\\nTKlUOnKledSE6d7jZlmG1pobN27w4osvfiaMf8pKcXNzk0ajQaVSecRy6mGCO8yv8WFfxyzL6Pf7\\n+8c8z3vsBzzOnEXanmSiGHr0E0WmDYUjRP7HkeJUOeRvvDjPTj/Fk4KlicJ+O3azE/P9lSZT5RAp\\nJD+928H35L7+8SA+2ezxszstNjqK9FaTK7Mlvnppikw5cfzjHE+eBFIKXj47wctnJ1hbM7/y5GF/\\nGPP+9dvcvXGHfJRytuYxTOHe1ohS5GzS4tzQTw39VLNQlMxWw7GlXs52L8ViqUQes+MpWyFgqV4k\\n9CXLu468J4o+ke8xPxERepLnFirY8SDPdi8l9DyMtUyXQ1pdRaUU8MxclZlqiDGW99dcasco066C\\nE65l2Rq6FrQUzqloqhxSCH1u7Qww1pWaF6bLTBQDRpnCE4JektNPFb1Y7ctBPMG+NCXwpZuwxV1b\\nnh9w+eIFhqniTmvI//hnt/mv/uoVzkw+HTGe7il+uXBKiieEiYkJ+v0+6+vrlEolpqenH3+nMY7S\\nKTYaDfI8p1QqHUt8jxP+r66usrCw8MAE7NNUa2masr6+zttvv/1YoncWWo96Ne75Ou75OeZ5zs2V\\n2wyTHGkU8qG1u5TyEVJVVtJujdBxQCkKGOWW0PfJ0xhpQ3zff2AIyVqL4XhJRq0YUDtkSGKjm44r\\nIfdlViv4rLdHj5Di3eaQf/TuKoEn8WPDbCVgeWdIN1a0hhlSwEtLE7y4VN2PvXp/rUOqnJzjhcXq\\nU1WVW92YH9/ru/ZiLX7qymWr0ebnn97m+p37++/LnvdnI3MBzXvvYCAFqbH7JHZhqsxmN8b3JIsT\\nBaZKAVHgUQ79fYMDIT5r5ca5E+FHvnzAFWbvtsVQEviSSuTe42QouDJT3m8LS09waabERjdhuhJi\\nLCyMHzvJNZk25NowTDWdOKcUeLxzeYpK5JNrpw0FwbX5MpHv8fFGj2lj6YwyNtpDEJ5rtY5fYMGX\\nB6zuBLXZM2ggzi0XpgoIIfjX17f5e2+ee+xe9kGcSjK+XDglxRPCxMQE29vbbG9vH2rQuzfwcZi7\\n/WFVW5Zl+y3Y1dXVY0nxqLxFKSWj0Ygsy7hy5cpj/+Zhz9Vay40bN7hy5cqhWZGH3TcIgsfuoazc\\n3+WOnSHzLNKHr12Z5ux4Bb4Xs3MYqX4Vj5/c69MaJITS8upcwPKtLkopRmnOzsh9EVsLd3qGJNfM\\nrrR563yNSuHw1IHDKtnIl+Tqsy+dVBmKD30RbvcS/uH3VrnfSykHkn5Pc6YxZJBoEmW4MFUcVzsd\\npsquyvrT67sUQ4/QF/xivYMybjAm8MQjX7TtUcZ79zqMMs35ySKztQJ/dr1BmmoEgj+72eC3n51h\\nYeJ4YjTGsLK+zc8+WWZ9u3nk7QqBpOA7kX2AJMk1vhT7Zu2BJzg/dbS06GE8/H49jFohYHHCsN1N\\nQUA1FMxUH1x0zVQiSqFPpg2BlJTHBFoMPVodZ7fnS+eNO1EMjt3ve2Gxyr1WzDBVXKxJbFCkEyva\\no4xaIcDi8jBDTyCjEqZcpz1SXJ4pcXayyDDTWOsCiP8ykCKcVopfBE5J8YQQRRF/9Ed/xB/8wR8c\\nSnx71eCTkOIeEV2+fJkwDD+XNyq4D0yr1eLNN9881FrucXuRUkp2dnbwfZ/p6ekTW5lqY/llQ/H8\\njGSy5JMqzV+sNPnbryxSHHufep7nyCl6cN9sYQFeecaQaUvBl/tVVpxpvvPpDnmoyJTho40eb12u\\nE7d3yGWBbVvhynz1kRSCPM8fSSjQWpNpy8a24pYCKSSlyOOsLfLxaHOfOP+f5SHNbsxUJBmkOYky\\n/HilyVw1pDVM+clqi1xb6qWAhZqznrPW4knBbj9jkOT80/fWeWFpAgG8eaHO+akSg1RhrOW7Nxt4\\nUlAMPD7a7GM3ekjhNHeBFBQDyWozPpIUs1zx0fJd3rt+m3Zv+NjzMlkKWaoX2ezGjDJNrRgw6+v9\\navmk0Rhk7PadPnKmEpJp8A75fJRCjxIPPodMG9rDfNy2dS3y5jBjthoReIcTRSFwYcGpMqSDmMmp\\nMovasNlNCDxJP1VMFHwybfmrX30V5UXcaYyYqUUMM82lmRKhJ596GOt0+vTLhVNSPCH88R//MQsL\\nC0e2TY9zvHlYS7e1tYXv+8zMzOzf9/OQ4ubmJsVi8dDwYSnlY9uuxhju3r176NTrr4JUGTLjwoPB\\nTYEaq1w00BEC6IPwPcnD5iH32iMGmWZhouDallKw3cuYlB4T1Yi+9qjXJ5+qVfmOMrx/r831rT6l\\nUFCbK3GmFpBmOT+72+GX2wkb3ZTQAx9LN4Hc9Fhrwihz/qJVH3Yk+KMmby0VuNEytBLLQFnWe85S\\n7GLFUCmE/JOftBjmbgI2CgNCT/LKuTpCCOarEd9fbjDINGTOp3bJRJw9UBk1BxkfrHdp9YeM2jus\\n399klGaEvjy2atPGumlQCWfrBeaqTgIiBHRb8RO/X3uP1RyktMdG4DOViHrp0Wu+G+dsdJP9LM3t\\nfko+MsQ7Q4y1zFRCZiqfLYiGqWI4zk6sj43YEZ9VSmKc0WgPqCYPg5uUlXSUpWrc4uq5hSqpMtxp\\njugniueunOfSwjSeL/jbryzwFyttAs/tDb9+buKJZBgPvCenpPilwikpngCWl5fpdrucOXPmyNsc\\n5296EEmS7Jt97+HzkGKn0yFJkkcqrSd5zL1K8fbt21y6dOnEx8kjXxJKGGaKcugqRU+Ix7bbjkOu\\nLHtFRuDJcUVlEL5glGmqVe+pJ0Jbw5Tl3RHT1QJCwPubCbVKmVwEtE3CM0uT3Ovt0k01xkBq4PWz\\ns+z0M243hmTWspu5dIuWqKFq05RUzJ1Rj0HuDKsLvuAnawOenQ75V592KQWCsi8o+E5aQHeTyBdk\\n2nJvV48nKd0+34/aI9Sgzb37m1yeLvKnN3bZ2d6h0Wyy1cswFqrFgIIvmSyHJLlhNNYNFgOPwJeM\\nMsV2L0WOMzdnxyG69zsJG92EUZxSb+3y6rk6ixPFB6qwXDs5xd6+nBCC5d0B2z1noA0QBUMuTZe5\\nOldGCtd6zLWL0Ao9sX9OjLFsDQ21SfCldFZ1wslX2qOctfYIX0q0sXRGOeemihQDj0GiiAIXy1WJ\\n/EequFxbBolznqlE/thEvkSn3UQby1wl3HcxmqtGpAS8/MpzTFYC3jw/Sa0YcG6qzCBVFAK571L0\\nNDhtn365cEqKJ4CrV6/y7W9/mz/8wz888jZPMu1preXTTz/dN/t+kvsedkxrzc2bN4910jlu0EZK\\nSbPZxFrL7Ozssc/588CTgldmfEbKsJ0keFLwzpXpJ6oSj8JSvcAv7/ecFEAK6oUA3xO0RppSSfPX\\nLx/uO3sUjLH8csMl10+J0Hl4Fgx3WzG1gk8USOLMUPAlvVFOrAxFAZvdlFQpjLYuuw+L0IKtXsr1\\n7RGdUUasJRdnagxSTaI1XuDxUVvjBQGX5qsgXD5hOfCIZieYLIVoY3i1njJR8Lmz2WB3mFP2JDuJ\\n5NYvN+g3t1HxgFIoGaaK7V6OwBInjkRXDEwXoJtBolweozaQG2d87UtJ0Rc0ewGhL9kd5uPjlu1+\\nxg9WmsxVI2aqEVMll1S/1UtoDTN6sQLhWthRICmNjdCd0blgp59SLwYgYL0do4xlmCoKgcd8TdIZ\\n5ay1Y9LcyW7qxYCC79GNFVPlkK1uQin094d1dnoJnTjHl04zWQzcBOzByhLcomilMSQfBy1bazk3\\nWeReO2Z3ZBEFjbEugPi1Z87x+nOXOb8w8wjRVAv+/r7q58EpKX65cEqKJ4R6vX5s0LDv+4+1cltb\\nW6Nare6bfe9hT8JwGA4jxZWVFc6cOXOkldtR99uDEIK1tTXeeOONY5/vr4JaJPjtVxaJM7dndZQZ\\n95Niqhzyzedm+Wiji9KWP3jzLJOlgFu3V5mrV48V+D8MYyw/Wm3x/t0O2/2UjV7CK2cmyLUl9Jxg\\nPc4Ua52YwBNIT1D1fPpxRnuYoowlt4ZMuWZevSiQwrLdd+G5WMP2IOVsvcj9rkJbS5wb5sohxloK\\nvkdPW85ORvz2s7N40rUG/6fv3ma7lyKUc6nJ4j6DvIvKxoHHgJdZhhkoJIGUWN9zwcKRRBQCtMqI\\njUsT8aVklDppw/5e5yCnXpSMUjfdmWmwuCzCQZzT7Q/YCiTKuszHTmIZKmdmri0MUxiM45pSZekl\\ngulSQKOfMFKGQaJAuNzCzW5Cc5AyzDSBJwk9SydW+J50nYNwXEVaOzYrt7RHOeudmLlqgblqiFCW\\nyJeHeta2RzlKW4q+x84gpZ8olneH+J7AxxIruHh+kfOXL/C3vv7MI7mJJ4WjBuxO8ZcTp6R4Qjgo\\n3j8MT+Jas729fSgR+b5PHB++t/Pw47bbbUajEc888wzWHp14cZy+sd/vMz8//4j84qRHwH0pDpVD\\nfF7M1yLma3MP/G6uEhI95SJ9q5dyuzHixTNV1H3XrvvZ3TavnZ3guYUq1YLPs/MVfrDSojFUiHGb\\nL8syktzge2K8jydRWu+3hUNPMl2OuDJT5oe326S55qsXJ6lGAR+sd1jrJOz0EqLQmX//rZcXeHah\\nCsD//O4qIKj4hlv31tnY2mG67BNUIjwhSJQhyTSlyGeYKBJtmC57+FLQTjVxpmkOM3Jt0IaxgN2d\\nf39Muql2BJPjESu1n66xByMEIogg9JHWUi6H9HVMnmVk2o6t2Sza6H1TcaygOzJsWldNe8IlaFgL\\no8RgfcH/y96bxUia3uWev/fbY8+M3CuX6qy1q6r39tIYMIej8YHjweagYYQRGkDII4Gw5CsQ0kho\\n8I3vGTOakUZzrLkAjma4sAGbg+ewDcem2+62e6+qXKoqK/fIJfb41vedizciKpfIrSqrcXXnI6Wq\\nMt74lozle77/9jyuECAF9RCaW3U2KgbDWZuh0TSNhiRrKTbrPpFUrFRDbarcDFkut0g7JnnPZjiv\\nxzRA1zXrQUylFQOKrab+u03RrjaaDqPDA0xfvspKNaZyv0H572b56UuDvDBZOJW50r04i+ieHHwk\\nSPG3fuu3+Ku/+iuGh4d555139q0rpfjyl7/Mt771LdLpNF//+td7jlUcBs/zDozm4PBIsWPl9Nxz\\nzx17ZKODneQWxzEzMzM899xzRyrpHOSgsbW1hZSSfD7fY6vTQyd9+7gbEA4b3j8IYSJ116dj8dJk\\nH+tVn0aY8HM3Rrqalx8/X+T+lk+crLLZCHEtg+E0CNfl0mCGsh+xVG7RCASuJbQhriG4OpJlMOdi\\nW1rHdHoww82VGtfG8pimYKXiYxkGX/63F/nktE75xonkvYU1aptrVLa3oN7AUJKaHyOlHqWQUlHM\\nOGRcS1swtSLCWM/wxVJiGYIwlsTJfjWXjsehaFtI9Kds1qv7x3zitkpMGEc0Qz2H2Wqb93YaUToS\\ncKZpYLUfcx2T/r40RitCCIFjCfxIYkcB0gA/VjiWIJQJ/Z5FMWVhGLo7td+LSRsK34h4uxS2U85Q\\nqmu5t20B91WL95erpGxwLe3dOJC2KPuSSqDHSgqehZPOkxkpUhNp5sOEhdltHMvg4kCGlbLPn/zD\\nHNfHcvz89VFujOcfW+R4mjgj29PHR4IUf/M3f5MvfelL/Pqv/3rP9W9/+9vMzMwwMzPDq6++yu/8\\nzu/w6quvPtSxDtIHPWzI/s6dO3ied6AU1FGk2MHc3BwTExPd/Rz2helVU0yShNnZWQYHBx/7YPCP\\nMykWUhZKKYI4wTENLMvgY2P5LiGCJrh/+/QQN1erIPRFvuAIBgfT9GV1/UynWROyns35YgrPNkkU\\nrFZ8JvrS/DdPD9GMEt5crDA9lOFcX4og1oPoz40XkFIyc3+F778zx71bs1T9CENAxU/wbEFf2kWh\\nU5eOZbRTkDq9Ww9iDNFWZhGmnrHr9frwQPhapyxNgkSR8yzCRrTb4kmhO0DbZKGd7CUSnToVUuFa\\nAqkExbSuTSogiiXbTS0MsFrxMQw9HO+3yRRB12vRsiwK2RQb9ZD1liA2bMb7PIbTgmR9DWUoVPLA\\ne7HjZCGBRqybnRxT0Yq1B2KQgJEpEKUGMS2PxIeIRP/VsRYvJwzR2VeD22GdZnmT2bEUN0bSx5pr\\nPUuNfrjwkSDFT3/609y9e/fA9W984xv8+q//OkIIXnnlFcrlMisrK4yNjR37GEfdsZmm2dMJo1Kp\\nUKlUyGazD6Va08HW1ha+73cFyI9CL6Kdn59nfHy8O6v3OPFB2Uc9DCn2px0+fXmAV++UqSQx0wNp\\nnm+7rO9EMePwOz9zgb99f50gVty9U+ffvzzBaMHhn2a2WK34DOc9RvMun748SJhI1qtBe/QhhWub\\nRInuJJVS4doGpgH1VsCbN+d5e+YOlXoTgL60dncPE0krUvSnTG0blUhaYUIkDSrNiIof4bZdKVK2\\nSZDItkpLss9L0Da0JijoZpWxvhSOKdhu6SYYy4i6Zrug056GoY16XdsgSRSJ1LVAzza6km1Ou1u2\\nGUUYCCKpcCztouHHidYwRUfAYaIl1pSCtKFnEreaIaDwbG2jtVzxUVIRJ9r8V7SfD7v9EaXS3aaJ\\nVPimjZ0fJJsrEqNvRqIdf7xAINDH3oygLgVjBY+BYpYr41kaiWRgoG+XeERnrnWvWtPez9dOwuw4\\n4Ny5c2eXpOHe5xxH5vAMHww+EqR4FJaWlpicnOz+PjExwdLS0olIER4owfSKfnqNZHS6RJ955hnu\\n37//UE0xoKPT2dnZXWnTo7B3n5VKhXq9zqVLl1haWupJWKcZPX5QpHhY7fQwTPSnmehP73Kt6IWB\\nrMt/9+I4lVbED4P7fGK6HyEE/8NAlrofE0sddZmGIMV+372sZ/HsuTxvLlUJ/RZ37i8hmtusuA+i\\njzhRSAVXRrL4UcLSVp1WLNlqRsRS0QxiroxmGchoYW0h4NJwhtVKgGMZLGw1u84StqFJSkGbwAw8\\n2+LSUIahrEsjjIkSRcWPSTkWrSBGGLpGmnMtbNOg0opQ7c7U7idCdTwUBXlPj3yEiWK7GeK1O1IX\\nyyGJBAxFkijCtmN9hyRDdD2w0oqwTdG9oWlFWiHIMgWOFISIrh/j3k+k6WUQmQGsdF6ncxXEPT62\\nO82QkwSUaRDEikYsyaZTWlBg8HCXkV7Yq8QUhiGlUgnXdYnjmEaj0VMGce9ntJfw/t4INZVKPTah\\n8Y8yzkjxFJHL5ajX6xQK+6OKXsQ2OzvL+Pg4qVTqWBqmByEIAi5dunTgF6RXSncnKUkpuX37dlcw\\n/IMgrB/nSHEnjjPb6FgGQzmXrCN2vc7HHfIuOglq+z537i5jW4LUns4ghY4mM55F2rWoN31add01\\nmnVMUIogkvRnHPozDo0gpj/lkCR6SD7rWkipqAdGt34opQ65Jvo8sq5N1rPwY4khBD9xochKxefO\\nZpNKrYGwdK1ysphiabtFK9JScKrdFWqZBsWMS3/GJu/ZSKWJzTQVrcjEtQS1IEYgSKSWSgvbEaxr\\nCkzDIEoktgmJ0qlRx9RR88J2i2LG1jJ4lkEziHeZBberoZjpAmZuUOsEy3bUKA/3T1ToG4WcZ5F2\\nDbKuhSVMthoRn7n2cKNIhmHgOE63SS2KIjzP49y5/ebTB55Xu0Fur8xhR3kpCAIajQZJkpxIY/kM\\nx8MZKQLj4+Pcv3+/+/vi4uKhg/gHIZfLUa1We5Li3kabzc3NXX6LD6tas7m5iZSSkZGRnusdUthL\\nijt/7/gsdgTDDcMgiqJD/tJHx5NCio8LUkpuL6zw+ntzLJe2AMinen8dOya91SDGtTSxDaQtpgf0\\n+3V3s0nQznNG7SYhxzKYLKYYjnVX5ux6g4XtJrbUoxd5z8OyBE8VMwzlHMpN/X73p2082+TScJZz\\nfSlu3mmRuGlMQ6AkjOQ9+tI2a9UQy9C1xL6UBQguD2sD7LVqwES/1n2VChxTsF7TTWhSPTAQBh0Z\\nWibt9KrWrR3Ou2w3IzZqIZYhGGrPHzaChL60g2PrkZFEGLjZAeJUPy0pyDomrm1QDyQ512C7GemZ\\nzEPeB9cyGCu42JbJC+N5Mp7Fz98YZrRwOhHYw8woCiG60eBB0AIOP36f6w8DzkgR+PznP8/XvvY1\\nvvCFL/Dqq69SKBROnDqF/UbDO7GT2KIoYm5ubpff4lHNNL2+AHEcMzc3RyaTOVJs/KBmgFqtRrlc\\n3qeg82GJFA967f614IcRb8/c443356k2msfebqI/xUZ7pm8oY9GKFXH77yqkbUyhpdBMQ3C+mO52\\nTrqWgWsZ3DiXI0okq1WfrGdhWYKcY+HZOtWZKuy/cKcdk6G0wbnxvrYYtq49IuCdxSp+LOlP29jt\\nbtK+lBZMCGJJualnIa8OZ2lGCX7UVr5Btec9DWKpm3TiRGJbhvZGbI+vjORdNmqhjpxtbWWVdS2k\\nUlw6N4CTHyJ2ckgEOdfi9nqdIE7oS9vYhsF2M6QZSYJYf6f2fgIMYHowhW0a5DwbzzYopG1+7vrI\\nqREiPH6Jt7M65OnjI0GKv/qrv8o//MM/sLGxwcTEBH/0R3/UjYR++7d/m89+9rN861vf4tKlS6TT\\naf7jf/yPD3Wcw0ixEyl2/Banp6d3zQEep5lmL2ZmZpiammJtbY0kSXreWR5GcB3h8b0GxgcR1pNY\\nU+zUef9s3ufLAAAgAElEQVS1Ua41eOP9ed6evUcYnex9Bl2v6wyol62IZqxoKf2eXRrKkPdsYqm6\\nM4d74dkmn3iqn/nNJuWmrtn1pWwGs0fLlunIcvdn65mJPAtbTfxIomKYKqa7AgyT/SnOtYnFbDfz\\nTPSluLvZ4O2lKpapyLkWNV/r3dqm4FyfR73RxG4P/rdCrXM6mHEIY92Qc3lqlMnxca49NcZSpcU7\\nS1WKnk0QSyb6PV6e6udzz43y5z9Y5G/eWSPtWPhRQhCDiY5QEyBtobt3UzZZz+anLha5vd4g51ms\\nVHxG896J9U0PwpmazZOHjwQp/tmf/dmh60II/uRP/uSRj3PYAH8nYltbW8OyrH3yaZZlHTrnuBeb\\nm5tEUcTIyAgbGxsPNaQfhmFX+abXuT5OfBTSp0oplta3+MF7c8zeXznV88i5Fudyu9+3g9whOjAM\\nwaWhTFeX1DaNngR6HDimwaWhLLFUmGI/Ee/1T0w5JtfG8ri2yQ/vVxBCj76kHJPhnMto3mE+1N21\\nQymHlG0yVUxRzKUYHRnh6YtTXBsfZLMR8v5qjfP9aa6P5GmEupnp6ZEc04NpLNOgP+UwWvCotiKi\\nOME2FUpKHNsgiBT9GYt+R5LzLPpSNsuVgPF+7dO4Vgv4+9slfu76yCOrLMGZGPiTiI8EKX5Q6BgN\\n94IQgiRJWFhY6CkMcBIi6qRfn3/++W5jzEnrkZ0uuKmpqX1rhxHWQXOYJ8WHmRSTRHJ7YZnX35tj\\nZWP7Az32cXAaF/sOrBMOuD81kCaMJeVWhFJQ9WNStokfJaRswaXRHJ5lMFLM89PPX+bGxSlc50HH\\nbtazOD9wuKfjQM6hmHG4PJwll7Ko+wlhW1mo7sc8M5pm0I4YHh3ilaf6efXuNiN5FyEErmWyVg2o\\ntKITSQMehDNSfPJwRoqniFwudyApKqUIgoDnnnvuwDTncQTDhRDMzMxw/vz5rgOGZVkHEkyv/XbS\\npp3Gmoc5l0fFh7GmGEYxr70zwxs356k1Tma59FGBIXRDTtWPSaTWkm1GCWEYk8nZvPL0JC9fv8iF\\n8ZGHvvl6ZbrI7dU68xsNQGCZBk+PZrkwmOHpsRx+o8rWdpVPXRtmIOPw/YVyu+FH30DJtg7saeAs\\nffrk4YwUTxGFQoGVlZWea4uLixiGQX9/f8/1owTDO0RVLpdJkoTh4Qcan4d5I/aKIhcXFykUClSr\\n1Z5zlR+2kYzHfZztap03bs7z1999h7FzW4/1WB8GmIZW3emgmPW4OD5E3pL8m5/+1CPvv5Cy+R9/\\n6jzvrdaptiLc9shMPmUznHNZW4uouTHD7UjwpckCr90tY5mCJFFMD6Z3nd+j4CxSfPJwRoqniFwu\\nx8zMzL7HG40Ga2truK57qAzcYdFZRxljfn5+V9dqZ9vDIsWda61Wi9XVVV566SXeffddkiTZ55f4\\nYSPFxxEpKqVYXN/k9ffmmL2/ilKK+DFH1x825DIpXrw6zbOXz5NEIXfu3Dm1fXuOxUtTfT3X9t4I\\nXhnJUUg5lFshacdivOCdWhT2uEhRKXUmL/eYcEaKp4heNUUpJe+//z5Xr15lZmbm0C7Rw0jRNE3m\\n5+d56qmn9rlXHHfGsZM2vXz5MqZpHkhMB+0vjmM2Nzd7qmycVKbqSSXFJJHcvrfMD96bZXWzfGr7\\n/ShhfLjIi09f4MrUOcy2I0U1DD6wdGCvESXtsPLoNcRexzptk+4OztKnjwdnpHiK6DWScffuXYaG\\nhsjlct0U6cOQYhiGCCF2pU2Ps+3OtZWVFdLpdNev8aDtDiKsmZmZrsxUL7WNvcftJU3V+Wk0GoCe\\nk3xYYj0OTosUW0HIW7fv8sNbd87qhQ8BwzC4ev4cL1+/yNjg/hLCB+k5+EEeK0mSMym2JwxnpHiK\\n2DuSUalUKJfLvPjii8DRA/oHRU5hGFKv13n66ad7rh9mQtypNwZBwOLi4q7O14OO2as5ZXt7mzAM\\neeaZZ45MB+2VqdorohwEAa1WizAMu2sPQ6x7H+tFrI8akW5VdL3wndl7RPFZevSkSHkuL1x5iheu\\nPkU2nTrweafV1XwcSCkfW/S2F2c1xScPZ6R4iug0r8Buse/Ol/2wZprDLgi3b9+mr6/vwOccFSn6\\nvs+tW7e4dOnSrij1uF2mSZJ0fRqPc4d9HJmqVCpFo9Hg4sWLPdePQ6z1ev3IiBW0Nuybb755bGI1\\nDIPF9S1ef2+WucW1HytFnCcFQ/0FXr52gaenx7EP+Rx08EFHih8UUZ11nz55OCPFU8TOmuJOse8O\\nHmbUYX19HSEEuVzuobRRTdOkVqth2zbFYnHX2nGjqLt37zI2NnaqaaDOsWXb7WBvC/xxiPUoKKWo\\n1WrMzMxw8eLFI4k1CEPml9Z57+4K27UHEmyGYRz606nPKqWI47j7+EcNQgguTY7y4tMXmBodPNFF\\nW0r5r1pTfJzHOiPFJwtnpHiKSKVS+L6/T+y7g5NKuYVhyN27d3nxxRe7Um69cBgpJklCpVLhlVde\\nOdF2HdTr9V3aqKeZ5prd9Hm9vIQCrgxneGGy71TdzjvEahgG2Wz2wOe1gpA3b9/lh3eWqTdDsn0D\\nZPseuA9o8u79kyQJYRh2/18qlbprO3FcYt378yTAtW2euTTFS9cu0LdHZee4+CC7KT/omuJZ+vTJ\\nwhkpniKEENi2zVtvvcVP/uRP7iOPXp6Ke7ff+YW9ffs209PT3VrZw1hLLS8vk81me9ZQjuPTeOvW\\nLa5cuXLqd6Xr9Zh313yev+IgBLy/WifdlgI7TRwWDW9V6rz+/hzvzi0cWi88LkH5vn+gkPxxiXXv\\nT6/ziOO4W0c+ilQf58W/P5/hpacv7FOdeRh8mBttzkjxycIZKZ4y6vU6Kysr+8Ym4OhIcaejxdra\\nGoZhdDVSTdMkCIKe2x0k81YqlQB6nktnu8PSp4uLi/T19ZHL5Q58zkkh235+W36CY2jn89WKz52N\\nJsvlFo5pMD2Y6foYJvLR1EX2dp8qpVhY3eD19+aYW1x9tD/mBDgNguoQZblcxjAMPM/rPtYxqj0u\\nsR43Wu2F82NDj6w6sxcfdKPNWU3xDAfhjBRPEX/2Z39GqVTiC1/4Qs/1o0S/O6SolOLevXvdrtWd\\nawdtt/fiF0URd+7c4dq1awcORZumeahv4srKCi+//PKB6yeBlIrv39viP79XotKMUElEEvqk1uss\\nlH2qLW3187V/nOeT00V+9sogby1W2WiEZByTn7w4wMAOR4cwloSxxLMNLPNgsumQYpJIbt5d5Afv\\nzbG+VTmVv+mDRoeoOrXWg2T6DsNhEWsURT0fu3//PqZh8NRokcsTwwwULMprS7y1udazUanX70eN\\n23zQ0dtZpHiGg3BGiqeImzdvcunSJZrNZs8a1nEG9OM45s6dO1y4cGFXyvOkJsSzs7NMTU3hed6J\\nx0CUUvi+z9WrV0/lC11pRfzgziZ/+c46adtgdr3GUrmJoeCHpUXO5T0sw+DKaJbNesgPF8q8fb/M\\n1ECavpRDoiR/d6vE554bpRkmvHpnk7eXavRnbIZzHp++NIBtGigUWdfadfFt+hGvzyzy2vwGTb93\\npH0U4kTRihKEgIxjPbSzxGnhUbphTxqxbq6v8Us//7M8e/k8ac89tCs4iiJarda+juBOFLsTnXGb\\nDmm2Wq2uuP3DEutx8WFN1Z7hdHBGiqeIr3zlK7z22mtUq9WepHiUvqllWZRKJSzLYnBwcNfaSUhx\\na2urayvVK4V21D5LpRKGYZDP76/vHfeCXG6GvLlYYaMWMFdqsLDlM79RY6sRsu0/OJ9GFKISxVif\\ny4/ul6n7MWnXZHG7RV/KIpdymOxPcXUky//9+hI/uLfNYrnFuYLLUsVgNBfy5kKZlGOyWg0Yyrn8\\n0gtjDKbgv7x+k7/9wS3WNzYZGRxgqpjGsx9coLYaIeVWhGUIhnPerrUOglgyv9EgkQqlIOtanB9I\\nYey4OCdSsVEPWG9K0o2QYtr5VyfOR0VHdWZj6S6ffPZBw9hpdQXvJdbl5eXuZ+thifW4EesHmT6F\\nx5fmPEufPh6ckeIp4zCj4eN0e66srPCJT3ziRNvu/HLEcczs7OwuW6nj6qKCTrvevXuXXC730EPv\\nW42A/+Xv5yk3I26u1WgGCeN9HpuNiLK/e58xsN6IKDUiTAFZ16DS0u7tsYQolryzVOHNxTJ9no0f\\nK0DxVj0k51rcXKlR92MuDKWZ6Evx1vwS3/vBG5zzEupBjGebeKYmrtvrdS4MpknZJtvNiOVKC882\\n8SNJpVXnykgWgSbLRCkKKZvNhk53Z1z9Van7MdVWTF9bMFoqxVypQStKCGLFvc0ma1WflG1imQZZ\\nV3v2HXX9ihNFqR4QxJKsazKQcT9wYjUMg+nxUc5PTTA62M9Q1mF7ZeHUj9OLWCuVCpZlMTExcax9\\nPErE2mg0eP311xFCPDSxnhHShxdnpHjKOMw+6rBGG6UU29vbjI6O9rwLP6pztYP5+XnGx8e7tlKH\\nfXl7NejMzc0xNTXF1tbWQ9tH/cv8FpVWjGsZ1P2YKJHMbzRpBod0ugKxgnogkUo7ozeCmGorpBGB\\nZUCtFSMQOJZ2Zi83QizDIJQxb94u8XZzmyTyAdhK2Xi2ST5lsVST0KxhCGi2iTKIEwwhaIWSSisk\\niCVVP8K1TDzLwDQFW40Iher68FVbEbFS9KW1Oa5SipWKz53NJq5l4Efgt0JK6yECgW0Jxgspxvo8\\nJvsPVnORSnFns0EYa/uiqh8TJYqxwgcjD9ZRnbkwNcG/LFS5tS25ubVBMW2T6ZEYqLYiwkSScy1c\\n+3QirpOOZDxKxPrqq6/y8ssvd280e4lDPEoqeOdPFEXd7M9pEeuZmMTjxUeKFP/mb/6GL3/5yyRJ\\nwhe/+EX+4A/+YNf617/+dX7v936P8fFxAL70pS/xxS9+8UTH2Cv1thOHEdvq6uqhzRPHiTLL5TKN\\nRoPLly8f61z3kmK5XMb3fUZGRqhUKg8dKfqxBKFYq4WYhqDS0scIj/FdjtvPaUY6Iuw+LnWzjkRB\\nuzdIJTFJfRNV30ImEaYBSmkhgPVYYhmClQoksUKKEKnQhBpJGkFC2jGpBzFOu1Gn5sdYhsG5Po9i\\nxqbqR9T9mCBOqPoxnWvRdiNgIOtiGoJGkGAbAs8yKIUKkYSEsaI/rSPQlWoL04BixiZt63qkVIpq\\nS98spB0LhH7Nsu1o1DYFm42Qkby7K0172tirOvO9uU2kgtG2MPbSdotGc/eb9vZihbeWqxhC35z8\\n7JUhipne3c0nwb9GnW8nsT6sMMXOiLUXsUop2d7ePrVUcGc8y7Kss2j1MeEjQ4pJkvC7v/u7fOc7\\n32FiYoKPf/zjfP7zn+f69eu7nvcrv/IrfO1rX3vo4xyVPu0VKQZBwP379xkbGzuRL+JOKKWYmZnZ\\nJSt3FHamT6WUu7Y/6niH4cZYjv/3/RKr1YAkSYgSOA0/jM4+ZOST1DZIGmVQD/Yct/+bJAqBIgAE\\nkLJ0ZCGUZKsRkUiFEFALIsJYEScSIcA2BNLS9dCVig8ogljSCOL2nhRSQT2ICSKFaxsYQpBxLVpR\\nQiIVzShGCMFaLWgfR7BRC7mz2WQg43BtNEcrktSDGCHAj5r0p53uqMpOCE7/oneQ6kyUSKp+DEJR\\nqgUYQmAKRbjjI7BZD3lrqarJ2hDU/Zjvzm3xC8+NPvJ5fZAjGacpFHAYsUopWVpa2ifi0et8Thqx\\njo+PHypIcYaHx0eGFF977TUuXbrEhQsXAPjCF77AN77xjX2k+Kg4jBR7CW0rpbpdq1EU4ft+z22P\\numCEYcjU1NQuWbmjsDP6vHv3LiMjI93tD/JoPE7q5uponl94dpT/9R/nsU0TQySgHo0YlVJIv05S\\n20D6vV/fXc/f8a9SIIQmtEaoIz7HMpBtcozbTTQBCiuWJLFEAq5tkkhFonR0txOldq3RbhvmurZB\\nNYBIyQdU1o4KLQNaYcK2iHh7qUpf2mYg67BRD6kHMVvNiJRlIpXCtUziRDKS96gFEeVmhCEEg1kH\\n74BUpVSKMNYyaa5l7FvbqIf4Mdy4OMUvfuoGYwMPGqikVLy5WOHmWo2FzSY31+qM93koBUpJfrL/\\nwf78OMEw6M6QZlyT9Vq4i9CkVNzZbLJRD8h7FpeGs9iHjMw8OI8PX5fmcccxThqxnqVPHy8+XJ/C\\nQ7C0tMTk5GT394mJCZaWlvY97y/+4i947rnn+OVf/mXu379/4uPsFAU/DlZWVvA8j2Kx+FDaqKDt\\nl5IkYXS09x37Qe7znSacRqPB1tbWriaHR3WXuH4uz+eeHaOYdbGsh48AlJIk9S3C1Rmi0p1jEeJe\\nBIm+WMdSAQIhdCNPlCiipE167ecahkEkFYmUWIYmzB5BXBeRVGw2I1YqAYnS8aRs/6j276YQWKaB\\nENCKEqJEUfNjSrVA1yqbEUGSECcKAYSJZGGryVuLVRpBwmrV5/WFCgtbTap+TBA/eF+iRDf6zJYa\\n3F6rs1z22XnNrIYGTW+I9OTTLMR5/stMmSh5sP2dzSbvrtQYyrl4toFpGLSihIyrXeqjHR+BnGuB\\nEoTt4281IkZy7q4bth8tVvje/BZLZZ/vzW/xv/3jHf6fN5b459lNmuHhmY4PWzrwbEbxycRHhhSP\\ng8997nPcvXuXt956i8985jP8xm/8xon3cVikuBe+77O4uNh1ingYUpRScuvWLbLZ7IF3kIdZRCVJ\\nwq1bt7h69equO/WHJegOBjMOlSCmmLYopmzynslJuFElMXFljXDpJtHWIiryeyYTTaFVcXqh87BE\\n1yotAxxTYLYX1I7nCTr7URgCHEvXBOPDGLF7skqnP3uch4IH+1APhM9vrdYo1QO2GrrWqSQslX2W\\nyi0MIQgThR8lrNcDan7MdiPkX+a3+ftbJX600mKtFtIMY95eqrBa9bFNQcY12WiE1IKYydEhPvni\\n85RzU4RuH45lk/Ns3rhf4f7WAz/ImbUadzcb/NfZTWZLDfpSJtMDGV6cyoOCe5WY91aqvLVYYasR\\n8qmL/dT8mLWqTyFl8cqFByLzYSy5uVZntOCSsgzeWary3flNZtfrzG/U+efZjZ5pYvhoR4oPgw/b\\nDcSPEz4y6dPx8fFdkd/i4mK3oaaDgYEHItBf/OIX+f3f//0TH+coUtwpO3bz5k0uX77c7aA7ao4R\\n9t9RLywsMDg4SL1eP3KOcW+nnhCCKIooFov7pNweNVLMehbPjecJ44RGmLDZCBEC6n5C1OO6aAsw\\nDRCRT1jbIKyXMVHYBgTt0+gQigKKaYtGKDGEvhhHidqVMtXPB0MIlFQUMw6tKNERI+BagiiRKAWJ\\n0oQoFSQJCBPStkkzTI5119iJEHfek+y8ZEkFzTAGTCb6U1T9CCH0eZpCIJVktepjGrp5perH+FGC\\nbQqqrYiBjMNqNcAyHuz33dUmC9WEzUYEKEq1kIxr4+T6uTJ6kYHJc7y2VOadpRqebdAIJcWMhWkY\\n1ALdqbReC3hjoczttRqxFDTDuK0SpMl1qx6QNBLu/fM9np/IYxqCy8NZfumFMRKpcCxj12dR6Zwr\\nAO+tVlmq+BhCH0cqhYFoR6H7LztnkeIZflzwkSHFj3/848zMzHDnzh3Gx8f58z//c/70T/9013NW\\nVla6gs7f/OY3uXbt2omPcxQpdghqfX2ddDpNf3//vrWD0CGqzhet0WiwsbHBSy+9xK1bt07sohEE\\nAVEUMT093fNYvQj6JPWM66M5SvWAZ87luLvZZL7UoBHEvLVYwY8Vpmjf8SrJp897RLVN1kpbrAgf\\nu+ASxBLXMlitBgihCU6gtxnJeVT8mEQprY8qdNoRBLUgxjUFidSEZBkJowWXlYqPH0lUnIDSqULT\\n0OMdKBACTFMwkHHoT9uUWxGr1aOj5U6k2bmFsARYpn6vbMvAs0wUevA/lFKTrWGQdaAeJNR8iTDA\\nxSBKFJ5tECUSP9LjKbqJR1JIOcSJ1oJt+AlmmFDwLEJlUrdzRH1D2K7Dd+82+ZeFWQopC8cyaIQJ\\n1AOkTJjoSzOUdZkrNfjT7y/w+t1tNuoRnmNS8CwGMg7LFZ+BjMNLEzleu12hP23RCBKujma5vV7n\\n2miOfGq/ALhrm1waynJzrcadjSab9YCsZ1FpRVT9mMGMiyng7kaDjUZEzjW5MJTBbr9WZ5Hi8fFh\\nu4H4ccJHhhQty+JrX/saP/dzP0eSJPzWb/0WN27c4A//8A/52Mc+xuc//3n++I//mG9+85tYlkWx\\nWOTrX//6iY9zHFJsNBosLi7u0xU9jgxc54vWadDppD0P2/agqO/27du4rtvzi3uYAPlxMTWQ5lNy\\ngPdWalwayvEfnj9HM4z5n77xHkM5l/XSBq0gZGNtmXXh0Je2ybgW10dz+JEkkrL9r67ruZZBIhVh\\nIrkymiXr2qxUdMpRCChmHKTUzSVRO/1YbkXI0McyDAazLq0wptSeg0TpyMW1DFzLwLEM8p5N2jFx\\nLIMBQ1Cq60aSpMe9gNjxr20aJO3X2LNNUraBHxv0pW0EWhlnox4SJzrCsk1oxlpUQKAwhYECGkFM\\nM7SQSjFe8IgVBHFCytHEpFAEocSPJaPZHM9dmWYttHl3pUYoDQYdk1YkWSy3qPkWk0WPctOgFsSc\\ns10+dbGIZQq+d3OT9VpIEOvXK070+T01YGEgmCqm6E87ugnE1HOd763UmC81UBJ+5sog5wf2jw+9\\nfL6PrGfyj7c3mCym0D20go16wHi/x821Om8vVcm4Fs0wZqXi8+nLg11SjBKpO19P0UJsJz7IJpXH\\nRYofxqj6xwkfGVIE+OxnP8tnP/vZXY995Stf6f7/q1/9Kl/96lcf6RhHNdqYpsns7CxXrlzZ94U5\\nLinCfgeLk2qjdqTcDhp+ftT0aQfTA2miRHJvs8nCdovrY1mGUib37y+wvbxANu3ioWt3zTChmHE4\\nV/AI4qTb+TlfqrPdjKj4MbYhGMp6jOQ8DEOQ87JcGs5QbkZEiSLjmqRsk3IrIk4UzShh5n5A1Y+w\\nDIPxvhT9GactKK6oB3E3dSqVjtKk0sQ1lndZruhu4EorItzBjAKwTEEiFbYhMASYJowUUiAEGcek\\n7mu9VB31Je1mG0EzTMi4JoYhsE2DfMpqR4WazKVUTA9kuDiUQQjYqIdkHZP3V+tYpkGmr8CVsXF8\\nK0M6V6Dohzh2k6JnodCzmLYpsE2TjXrEQMYln7L4xHSRz1wfZqOuO2f9MME2wXO0OIGBvvEYLXjM\\nlRoUHEHKNFiv+vSlHaotn8limsGcwz/PbZLzrH0ziqYhuD6W56XJAssVn1hqUh8puFwdyfH9e9uM\\n5l1MU98wLFf99nslef1+lZVGGYHguYk810Zzh178E6m4vVZjtRqQdS1unMuTdg4noV4Sb0GUEElF\\n2ja7nbWngbP06ZOJjxQpfhAoFAqHRopBEOC6Ln19ffvWjkuKrVaL1dXVrvHvUdvuXeuIjr/wwgu8\\n+eabPe88jyUW0Iy4uVojSiTni2mmekQO76/WeON+hWLaZn5li+9870fk61vElTKG0mnLqyNZro5k\\noZ0iBbrjB0rpCNA0DIbzLklb6WXnxcsQYt/FeWDn73WT4nARQwg822CjHrJeC7AN3dASS0khZVNu\\nRrSihLxnc34gTdY1GdlqsdUI6U87NMMY2xTtqE6LhEtDdCObnKnwLJNixsEwBH0pxf3tFmEscSyD\\ntKNHPHKeHuI/X0yx3QxphpKsZxJEkrQtyLoWk/2pbrQ0nHMZ6cswdf48F5+aIGjUGSqkubmVaGUZ\\nz+a5cwXubzc1uRmCc4UUhtAk15e2mSx6/PcvjZPzbOpBAu1zLqRtMo5J3E7bjuRdPnVxgLsbDUwB\\nF/stnpoe5vv3ylwaznTTnULEVP34wMH9T0wXeWOhjGsb0I7yPdvk1lqdm0qRcS2ujjyoY89vh9Rs\\nn6mhHFLBGwsVCp7N+CFKQD+6X+b91TqFlEWp/Z7+u+vDh46A7HXIuLla44f3K+3PjM1PXRo8kliP\\nizNSfDJxRoqnjEwmQ6PR6LnWarVoNpucP3++5/pRKZHO8P/MzMy+SPMkpDg3N8fk5CSO4+yrU3aw\\nN1KUSrFaDbi3uEyrukWgLF5fjUnZJv1pizekwSfO53hqILNLhePdpW2iWoXv31xifXObhh8zWUzx\\n0xcHmFvwmTjXTyF1sIC2EDDRnyLn6SaQlKNTnCeBZUBhRw1sNO9hGbr2mDc12ToHXEhfme5nvtSg\\nFScMZBzG+1LMrjdYrwcEkaQ/bVPwLO5tt4iDFn1pi3zKphklXBjI0J92mNtoECd62L/aijGEIJ+y\\neHGyj4WtJu8s1zAQ5FzrAeG3X4+O6sz0xCh//W5J67HGLRKp50H/w/PnsAw9YvKfXrvPf75ZIuea\\neLZB1Y+xTYOfujTIz98Y7hLYaN7FswTNIGGlGpCyjW669IXJPixDkPNsfuZCjo10lReeGcU2dQrW\\nNvWsrZQKzzqYfF6YLFD19VxmxjG5OpLhf/+nO8yX6mQ8m9E8fHduk09fGiDvWWw0JcOjttYjFeDa\\nBpuN8EBS1Fq2DUYLbltAAdaqAdvNiOGce+B57axdlmoBP7i3zUjewzR0iveNhTI/dWngwO1PgrOa\\n4pOJM1I8ZRzULNCpAQ4ODj50XcM0TUqlEplMhkKhsG/tsJpiZ61SqdBsNrsqGzvrlAdto5Ti+/cq\\n3Fwus7q8iswNs1ZpsVyN8SzJRQwuFz1mN3z6XYGMI5RMmFnZ5v/423eoNVt4FhRdQSgFVlAmwWCz\\nGVO5t85AxmIgY2ObZm+jWyFwTIFnW6R2DLDHUhElEtswsMyDLxKdjt/OhUQIGMq5DB1y8ezAs02u\\nn9vtFnJtLMdlqcXDO9FcLmUztxTgthtb+tv10YxrkfUs3lupEks41+fimibTgxkcy+DiUJYwkZSb\\nMTlP/+2uZXBjepyPXb+4S3XmUxeKfHd+i81WTEpZ/PvrAzhtYko5Jr/5U0/xM08P8Y0fLTNbajDe\\nn38FpfoAACAASURBVGKiL0XaMXZFP+u1kFYk+fwLY8yXGixut8inLIZzLmEiWa/p5qi+lMVm+9gf\\nO9/P391aZ63qIxVcGc4ykj/49SvVAlarAeN9KTbqAf/nd++x3YrJOhZr7RGS8/0pXpjq0ylhS9GK\\nJZ38SRjJnl2q3feUHR2/nREbpY7UANpJivUgxtxRvyykbNZqj1ZH34kkSXbZv50mzkjx8eGMFB8D\\n9l6EQYsH5HI5HMc5cuziICilKJVKfPKTn9y3ZhjGgYbBHXUaKSW3b9/mxo0b3XM7qHa4U9Fmuxlp\\n+6RaiYnxEd5ej1iuhRRSDmnXYqmW0JczMYTJD8suhnCZ7rf5i9ffJJQgTYe6hCgyeHokq22eKj61\\nOMY2TCoVSStRPFXURLzT7DaIEu5XIsqBrjsWXMFUziCSsOELEHoY/1zeJu/ZPV3kdWTzIBrebkas\\nVX0UMJR1GMzuvrgnUh3Z6GF1xkMUKBSjeY962SCVssl4Dn07ItOBjMNPXBig0oqQSns+dshdCHh6\\nNEepFhAkgmcuTfGLP3GD0YH9tl2TxTSfz7q8d7vBYF+eiR5R1PRghotDWS4MZci0vSVXKj5r1aDb\\nGFP3IyzToJhxKGYcro/liRLJz98YoerHOJagP+1Qq9W6n5O+tM1nnxml0tIp5P60feiF+e2lKnlP\\n3xSUaj7lZoRjmWQ9E9f2iBJJf8bRggDAUwWTLddireIjgcliivPFg1OnhqHrjq8vVEjZBkEsGct7\\nR+qw7vwcpB1TCzdI1ZWtG8gefaN0XCRJ8tCaqmf418MZKZ4yOheKnaTYbDZZWVnhpZdeYm1t7cha\\nXa8an1KKra0thoeHD+wWPSx9Gscx9+7dY3h4eJfo+EHb7STLWCoa9RqubeO4Hn7Ywg8lcRJSqoc4\\nlsE7y1XG8i71QM/2/V9/9QbLpS1AE0jKMWmFCavVgEgqWoGWW8ulbMIEQkyk5e2uBQL3NpsE9QbZ\\nrL6jL9UCwoYFqG7qMooTFqohhTDBMRP6PYM48WmGCZYAFUWsrKyglKIVK1YaCs/U79X6hmAkZ5F3\\nTUotyWZT1/8yrkkx7ZBydDrUtsyuiHTnNVnYarJc9rEMwVDexbMMRvNub5cTQ+z72zoYKGT5zCef\\n48bFKVzn8Mgi5ZgUPJPUYXUvAdaOc9WqrTv3YZFI3dhjCIEfJ4zkXFLO7v3u/Rx6tnmg1NxeJEp1\\n676mYaAQDOccGmFCK5SYAq6OPBjtcAzFv7s+TD3UNyR9KfvIppdrozlyrsVGPSTjWkwPpo+8mdlZ\\nUxzOuTw3nuedtsB51rX42Pn9tf6HxVlN8cnEGSk+BnieRxAEpFKpbtq0UwM0TZMwDA/c9qBB+7W1\\nNSzLOlDb9CCt0s5arVajWq3uas6BwyPFDllmbEG9vEVhchITxXo9AKGY7PPYaESEsaTpx8QZh7Ql\\n+P7b7zO3VCJp154UAhraMSOI5QO90URi2XpGzjRMkj1zD3GiWKv5+FFCPmXTCnVjiRknZByLqp/g\\n2CaRFDRjsKXBWiPivZI+lmvpOcQcFi9PjWFbJisVnyQV4ZoGG/WAUEYsNhRGUxLGWgyg5cdsNEKW\\nyz4FV2AAAylwDT0PKRUs1SXrTa1r2ozhTgmyliRmi2LW7Rmx7nW9Pz82xMvXL3JhfORU02HXx/J8\\nb36TrGd1h/F31tnGCi7XRnPcXKtjCMi5Ni9O7SeDR2n9vzqS47tzmxTSNrmURd6zSCT0p2zSjuTF\\n8b5dajhSSlzbIuWezD5qsphmstjbWaYXdqZPhRA8N1HgwlCGOFFkXe2BeVo4qyk+mTgjxceAXC5H\\ntVollUqxuLhIoVDo1gCP8kXsRYphGLKwsMDExMSBqdejTIg3NjZ45pln9tU8jxMpLi3c5b99YYr7\\nLZtaKHlmvMBGLaTcjMh6Fitln61mSNmPyScVFhYWtX0UnaF2XesRCuJEEsRaSi2WsFoLyLhme05Q\\nX7QSqVjcbjG/2aTSivAjPfDut3VD/TChFSYIIfAjTZQd70Y/lm0RbRjIOqQdm42aZKsRMlLQHZ3N\\nIKGuYip+TJBI4kTPPpqGQcGzSZIY07L02ES7OcbCIWvraEQqKK3UyBsh262IUCWgFLVIsFxPcBxJ\\nzddyawbgmgo/kqAk/Z7BtYkBLk8M05cVbCzdo7K+3NNvLxYmpmmRTzk4jtNdP6omfWEwTZxI/nl2\\nkzCRvDhZwN5RcxVC8PL5fq6M5Iiltqw6qGPzYS++FwbTCKEj/YG0w//8C9d4c6nCRj1ksj/FKxeK\\n3XoofHCzd72ayrKH1C4fBWeR4pOJM1J8DOgM8OdyOVZXV3cN6Z9kFrGD27dvd909DnLROGy/HVfz\\nfH5/neowXVQpJdVqlXq9zvPPX+QpKXEch6H5bdZrASnL5K/fXSWW2t1ha2uT+aV5lFLsvWxbujOf\\nRKl2p6kmRpQmx4ofM7/R5FwhRSOM2/ZF0Jeyud9qUWlFegftzsSKH2G3o8GaH9M0dAQXRJIw0SnQ\\nqh/jWQahVGw2AtKuRSOIWK/5bSk1iWcb2KbQYwoqIU6012Kq/bgEUraefTQErFR8RvMehgA/1tZS\\nSkEk9ZcpUAarLUEQGWw2dWoyjiXXJooUBkcwMv2MXRlhdCiDaxkUMxb9ntm1DIqiiDCK+IeZMvNb\\nLSwhmcyZXCsaILW9ULPZZHl5mdnZWa2tioXnWGQ8TZyGafHqok+SQMGzeeteiXqjyacuDnRJVwhB\\nztv99a/7MdutCMc0GM45j0RUQgguDGa4MJjpPtZrZGfvNo8bH6RyzhkpPpk4I8XHgHw+T6VSoVqt\\n7hPaPkrfdO96qVRCCMHg4CDb29sPJeVWKpX2dasetV2nWej27dtcvXq1G70ahsFLUwX+6fYmVT/m\\nzkaTrGMRRz6t9YV9gs+d3yxDK7ZEiZYu6wy/KwEjOZcw1l2PG/WQIJakbC2N1gwTJHoWMWlHnFHb\\niVi2yXUo67BY9rvuEaKthyqVYnE7QQDlVkJtpaYbPkyDlK3JFBSJNIhiiVJ6ZhGgFkgdKQoQptGe\\nT9T7dS1NKPe2GlRbEYnU2qmRgPmNJq7tI6Ue6HczOVIDRe6beZZrJrJc5+3lBoNZl6cGUlwcyvKZ\\na0NcGMpSaUUYtuIvXlvgn27XKGZsUo5D5LtcHxhlejBDpRXx7swdhvvzDA4UeW+lxlY9oFoJueJ4\\nPFdMUWmGNKIW/Z5BFLaoVAP+6v4GpdVlJrPo+dA9n4FabPCjdV1vE6bB+X6P6wMWjUaDUqm0z+h2\\nZ331ScLeOcXHfayz9OmThzNSfAzI5XJsb28zPT29Lzo7SaQYRVF3yP6obQ9am5mZYXJykkqlcqLt\\nOscfHR3t1kY7X/CMY/GZ60OsVQP+0+uL1Fot1u/OYIpOFAidS0GHI7W0mWC7JbGh7TWon2ebgqov\\nybkWtSBuz4yFmAag6FoVdTwZlVJYpoFhCPxIdgW9O/U+FCSAjBXKUIwVdD3NMgTlVsREXwqvPQfn\\nR1ILcxvgx+AJ7ZAB0Ay10HgxYxPFkgDFcNbVhC60gJkhNDkLIJG6E9VIwErnGR4dQ9opyq2QoJmQ\\n96DV9mJKpKKQMvnh/W1WKi3ynkWUKO5sNHl/rYZrGazVQzK2QT4VUPNDihmPxa0Wy9tVLgz4WE6V\\ngYxDLYjYaoT8aKnO7FSBn740SDafMNTncWejSUU0cDKKDdMjwuZzL4zRn9ZNPx2D22/8aJnpcYlt\\nKuI4Zq0aMJpOMJKE7e3tXea3ne7gndhJms1E4EsTz9Fzl+6O1O9OR/nTIifV1r89Tj3wLFI8w1E4\\nI8XHhK9+9at85zvf2fd4pxP0IOwkqdnZWc6fP4/jOPvWDtuug42NDUC7f2xvb/fc7qD0aUcsfGpq\\nCtlOm+6KeA2DmVKDp0dy/H+vzRAFLVCQaWtvdsjRACwheGGygG0I3lkqa+FuYXbNff1YYpuw1QzJ\\nexY512JdKpJE0oxkW4lGUPWTB04YSiGlbtgxpcKzTV0vDJMuEQva8m0Igigh61ooRdu5Q9cuZfuC\\nmshOl6bANkQ32pweyNCMJMsVn6cGUuRTNkGcsNZxfthBxqZpkR0YIlccohEJtmOBSGKCSK/XgoQO\\nvwuRsFT2EQhWyj6WKXhqIMVMqU4YJ0SRJEHhh5pAK62QPrdFyjExlORHS3X6MjHfq/mI9lhKM5Is\\nbDZ4436Fi4MZgjjh5lodxxQooSg1IuY3mlRaMZ+6WGQg63Ku4FH3E95cqeNaJsNZl6cGCwQiIN9n\\nYgVmd6a13IwIE0m+nXb1I0naMbFN0SXLuxt13prbRsqEKPYZq0Q8O2wjezjL76yNNhoNfvCDH+yL\\nSA/7v2marFV9vju/jR8ljOY9fuJC8dDO3F41xceFM1J8MnFGiqeMOI75y7/8S37t136t5x3pUY02\\nnfTp5uYmURQxPDzcXTuJ6Hccx8zPz/P8888jhDhyXGMvZmZmcF23u+9eX+7tRkTGLzFgR1g5l5of\\nM5x1WKsFtNpk5lq67udHCV7KwiZhoJDBNA0aQUzGMQliSTOUtMKkS1LDWQfLNNhqhFT9iCBWmAZI\\nqdOuWcdCGDDVn6Lq6/P34weu950xhETBSjnAzyTEUpPYUtknUQrbeCDibRg6alVKEbUNiQ2htU2n\\n+lPUgpjVakAjlNT8iKWyTz2ICRMQdgorN4CT6cP2LIRpMuTqmmYgFa5lECdyV51VSkmlpfVYs57J\\nUNqhHkhMQxAn+jyjRBIlYBsxmXYUXfFjthsxpmnihFpqzTQNhNIuIb4pMFDESYJtQN4xSbsG5UZM\\nHCfc2Wxwa63G6wvbvDJdZDjn4scJOcei7EcsbCfUw5iRnMNWM2J7OyC92aDcivmv85usVQIaQcxI\\n3mWiP41tCj59eZChnB5FeW9jm4nhAq6lRetXqwF9o8M9VWbWqj7LZR/HMvBn3+LZZ5/dRZodEg2C\\ngHq9vuuxOI6pBzGvrsSkLHBNwf17gvl5m09MpLvEuZdM6/U6tm0ThuGxo1UpFbfX68yXGjiWwfMT\\nhWMJPzyOqLRzI3GWPn18OCPFU8a3v/1tbty40VPbFI4W2jZN3XSxsLDQJbSda4d1mO7E/Pw8ExMT\\nuK5LkiQnctDY3NzsHg84UJWjvl1i7t59zhU8BjI267WQgYzNaJ/HnY0GfiSxTS3CnXFNglaTqWKa\\nemKQKMVg1mW8z6VUC/Fsk5VqQBAnNIKEnGcxmLaY7Pe4tV6n3NCD76YhyDiWJkgFL04WWK+HrFV8\\nnHrIejXAFoowbqubCJ3irPoxY3mPc30eS2UfR2gn+eWyNi92TIPEACWVrh8a4Jr6nBphQjOSCLRb\\nx0rF1+4a2QJ2qkhsZxBC4Dm6btrn2aQck1zKJkq0C8Z2M6LmR91IMZbQDBKGcxYKwfxGQz8WxsQJ\\nZFwdSbsO5DwLpRTbzZhmpGukrgHNIAbxoHPTMaEVS/pTDvUg4d2VOijFjxbroKAeJviRbMvNRSxu\\nN2mFWiv1xliWuY0mpZrPWsVnut/lzYUtDCRLb6+wWtGRsWUaLJdbLFd8zhU8bNviH2+X+MXnx7ri\\n55ZhdS/eBrrjeC8WNpv80+wmnm0QS8XyesJPGhbZEwzPr1R8lp013eiUKIY9g2YYc/6pQZI2gYZR\\nxNx6g5VqgGtI+mngWoKtra190aoQomdEulBNeK8UMpBxkAj+eqPKz98YZjCfxjTNQwnqcZDXGSE+\\nXpyR4injc5/7HLVajVu3bj3U9qZpsrq62iW0vWuHRZmdL3i1WqXRaHD58mXgcCLeu88kSZibm+PZ\\nZ5/lnXfeYW5uDtd1d9WCLMtifbvGwtxtXFOb01ZautNTR1cw1Z8mTBQ5V3v6VZoBdhzy7PQ4jVCC\\nUqQck+1m1HWnn+jzqPkxkdRtplqizMQ2DVarPnc3W+35Q0GUKKYHM6Qci6l+k8GMw1QQM7NWZ6ni\\nE0QRdntOUfsTKvoyDq0woZjWotgpWw+rS6WJxxSw1YzIOCYICCNNrM1QW1CdL6ZJuzZeXw6sAiMD\\nOUq1kDCSFNI2T4+kacUwVnAIIsV6LaDiR0gBxYyNQuDZUtcdEUilpcVqYUy5lZB2TCzDwI+0xuto\\n3qHmJzht3dFGnJAkYJm6Dpvx/n/23ixGkvu89vzFHpF7VmXWlrX3Ur03m2SToiRql3xN2xIMe0Ye\\nXMsY2B4LGHtgwAusJ49gWAD9YMAj+MEzgK+vRxiZlAT7SjZGMrWLlEg2t+bSa3V37VtWVe5LrP+Y\\nh6hMdnUt3U2zhZlhH4BgdWZkZEZVRpz4f993ztFwt2rFjh/1VrN6NBy0VLO3zA008kmT1xeq0WpY\\nlii1PNqeQFtv4YmQ/qSBriocHUgy0Ruj3PZouALZrjJ54AAVO+DcbIXRrZWhqUeGCavVNicLKeq2\\nT8OO+rNJXWap1KIvGf2uFQkSutR1W+pc0F9fqEQmBFtmAFe9kOVqm7Ge2I6LfifFIq6r2wX9YcjF\\n5Tq6JqMqMtPrAVP9CdI39fFfX6iw4ApSmSRtL+B6BT41mWekMLTjXBBCbFuJdv6/uLhJXBX4bpsg\\nCNiou7z4RonBGDuqLIqidAm13W4zPT29awn41jLwffy/B/dJ8R7gdkkZ+8G2bVzX7YYd34yOZdl+\\n6Fi5HTt27Cavz73vLG8lzNnZWQYHB1FVlWPHjnVXmZ2LRLvdplxr8K1nX6NlO8SCAHxByQ4wVImO\\ncsIOiGQadtSfkwKXoVyCVrOJsiViF77AUiEQgkAIwlBGU2UG4hqyJHWT3Ts+pQf7EsysN6m0PXJx\\nlYEt701Jkohvke+yqaLXgq4EJOojRhM9hiIj6VFvLGYo2H5U4s1YkT9ppKkEXZFouVEpU1MkUpZG\\nIOsMjowxOVKgdr1EsxpZlyHEFknJWLpGb1IhqSm8VKySS+ikYxotxydEYrw3zsxmG9eLSp5TfQma\\nboBbDshaGgNpg5imsFRpEYRRBNNqzWa+1EaVZdK6jGKArKjEdJWYIeP6EVGkCKm1fQw1kpH0Jwx0\\nTSEb0zE0hWvFBi03CmE2lOiXEwSCRtvnzHAU86TIkW3dA8Mpfnp5mXgigaZqyJLA90Nark/CNHH9\\noBtNVWn7qKrCj69tcn6+iu0Jmo5PzFDJxDR+5WQ/MX3nZSYIBaokEYaCZquFrmkEQYDj+fhbulNJ\\nkrhabHB+oRatwC2Nxw/1EN/aX8v1SVkqLVfgh5FLjqlKCCGQJAkhQi6tNuhL6iiyFGlq13xq7u7n\\nkCzL6Lre7eF3MFiO/Gw7EhalanNqsoeJm+Qm8PbQUudcqVQqZDKZLrm2Wq0dhOv7/rbzT5Kk2/ZU\\n0+n0ffu4e4j7pHgPcLug4d28USFapa2srJDNZt9RiUSSJObn58nlctus3PbDzSvFZrNJuVzmzJkz\\nCCGIx+M7s+dcjx+/9RzJdIbklsrD9gLs9Wb3YgUhddtjssfEDQTtVovQDzENfYe3qRCClPDZdAI2\\nmiExTaLiQdZU2FxvbXOCkSSZMPDRpZBQ+Fwv1hnOmPRuOcgU6w5KKBhJyIz2Jrm+0UKW2EplMLqS\\njZ64TkxXUGTwMgZCRF6atbbPYCpKXVgotxEipNCf5yNnDvFaUZA2NeYqNjFdYTJn0bADSl5AJqZz\\nYjDORC7GQ2MZViptik2XfMLA1BRabpSr+PBYmh9e2WAwZVK1PfwgWvG1PQNFdulLGlTaHl4Api4z\\nu9mibns0tyZy44ogkYhTt6McxPeNZzE0mVLDo+UF9CV1YrrKL57o43sX15neaFF3fGY2m7hb4caq\\nEhGf40PMUBnKWpweThE3ounXjKWRMBR+9FIJKz/EjfUmF1br9KcNFis2DcejLxEZh8+WWixU2mQt\\nlen1BkEo0XR8Nhsu75/McmIwxWuLNfpSO+37jgwkOTdbIWWqXF9cY7AvT9sTfPP1ta3SusbRgSSv\\nLtTIx3UURaLUdHlprsJHDuUA8IOAkaxJTItKzYoEqhp9n10/Wt0+f32D/pTBkf4ESVPF2ypPv3hj\\ng+WqTcrUODOSJm1t93K9+edThRTfv7JOqekiwpCBlEEhY9GwfebLLQIBI1mLTOxt4jJNE1VVyefz\\nd3z+wtur1VuJ0/M8PM+j1WoRj8dvv6P7eMd4T5Lid77zHf7wD/+QIAj43d/9Xb7whS9se95xHH7r\\nt36LV155hd7eXp5++mnGx8fveP+pVGrfoOG94ppmZmbI5XK39UbdCx3D8JvNAm6HDil2NImHDx/u\\nTs3d+vnCMOTbP32Vzcp2wtdVGVOL+jm6GpkzpyyduGUQC0OalU2Ghob2LRNNhmHXvcbSZJKGso04\\nhRA0bJ+mG2CpEqHwCEXI9dUWfjL6fS7WRZRMoMrYzQZJDVI6TGTBUH0cAZIkYyVUDG3Ly1SWaThR\\nkr0mS3giJGXpTE2MUCZJbyaJlYzzi3mVmu3z6kKVB9MmxwspFpeWaZPioyeGGUxbaIpELq7zylyZ\\nn92obJWTQ0otl1NDSartqK85X26TT+okTJnThTQ9MY3/7Yc3mNts0XB8sgmdkYzJtfUWJwZTlFse\\nl1YqCFkhpqs4fsgnj/bx3z00xDMX1zmcTyLL0VDQZtOlL2HyqWN9zP90ntcXa8Q0mfFcDM+PhpmS\\nZrSPfEJnve5wfqHGp08PIEsS5xerXF3aQNMN8mmLF2bKHB9MMtpj0XB8lioOHz7cw8Xl6DvQm9D5\\n2fQms5s2h/oT2F5AzFC5sNrgw4fzaK7MWs3ZQYoH83E0WebaWoWsLvjwsUGeu1amN67hBoLXF2u8\\ntlAjE9MYTEXDKhlLZ6PhdQlrIG2hq3WCMBrmqrY9HimkkSSJb5xf5dX5Kr4IeXO5zkbD5dhAAl3Y\\nbHoKy9Um2ZhGqenw/ctFfvF4P8YeUVgZU6Y/rvL6Uh1ZBpHQ2Ky3efb6Jn4QaWjfWqrwyaN5euJR\\n9aKzWr21snO7m929Vqsd/Lycf97LeM+RYhAE/P7v/z7f/e53GR4e5uzZs3z605/m2LFj3W3+/u//\\nnmw2y7Vr13jqqaf4sz/7M55++uk7fo/blU87E6Y3k0StVqNWq3H48GHm5ubu+rjCMMS2bY4fP77r\\nxNteZdcOQa+urhKPx4nH4wghdjW1fu78Za4vru3chyQx1hNjrRZNnfbEdPpTBpIkUS6XSaVSt+2b\\nyJLU1c51sIOUVZ+YI3VXpGEYonkBg4NRQruzWma92kaLxWi2PDRJoJsq1UBmJKFjEm4RbEC77SKE\\nwAsESzUvWkXKKmqylwP5HDFDQ/Zdpsw6g7JDXjeQLBXFkak4Pm6jCl6LbDZNrymRjyldp5gHRzMs\\nVV2eu75JGEZRU6amkDRU8sNpJnNx1ho2v3JygP5UVAb7X395ir9/bo6q7TPVF6fpCVaqLr4ImcjF\\nWNko4comg2mT/3y2wMeP9iFLEieGUry5VIv0ksBDo2l0VWYoY/E/fXCUr7ywSMJUSRgKmw2X+bJN\\nte3RE5dJmhqH+mIEYchipc1q1WGxYlMvb9DTN0ix5nIgF6eQifx2M5aO44cMZywuLNfpT0afPWGq\\nBCKELYNxIUI0TcHbCnDejWwkSWI8F8PemOfkmUlctmQwgeD8YhURRmXulUqbHkujJ65Ts316428P\\nfSUMlY8fyXNxpY7jCY4NRT3RlZrD+YUqw1kTRZKIbw1LpRWHR47082bNpT8ZfT8NVWGt7lCzA/pT\\nkVdslBspdXM7lyptFqsux4aSyJLEet3lB1fWkWSJfCL6zkY3LnXeNxF9N+v1OoZh7Cm/2mtVutfP\\n3XMgDH9uOsv3Kt5zpHju3DkOHjzYtU37jd/4Db75zW9uI8VvfvObfPGLXwTg13/91/mDP/iDu7pD\\ny2Qy+5LircMtnT7g0aNHbztME/VKdo56r66uoqrqnqWVvUq2nWnXhYUFHnjggW4G3K37vzSzyLm3\\npvf8XJoi74gy6pR7CoXCnq+7G0SWbDJtL+gG6+YSevfYVLdBLpvhxkYbTZHJJQ0yVjRUI2nGrh6X\\nazWbwaTFmakJCgN9zJTaxDSZkazFWEYnF1e7U4wt2+NMQePcfJ3pxSK6YTBEnfJSnY35YNsFsB/4\\nzKCMrKpYesCPFzxEQkdRoxV46AoqlQoWMVRVpZDU+PUHh7i82qA/ZbJUafPSbBkRQrNZpz9t8f6p\\nIf7zIyPbkiBOFlIMpAyabqTDzCXevrHojRtRhJQepVv0xHQG0lG+IiHEDRVFlijWHWxPsFC2Scge\\nbU2jL51gqdLGDULaboClK1TbHilT7Xql2l6AqSmM98ZJmirllocsSSiSRC6hsdF0yCcMRvYICvY8\\nj3K5zNTUFBtbpcli3YFQQpejQStDlbm4WudwX4KEofLIeHbbPjKWxvtvMhYHaLs+uiIjAlBViVzc\\nIMQm5paZHH+AixdL+FtTxmEYdqeaK22PH13dwPEi677jQ0lOFlJU29H+FCk6J1KmykypRX/CQNp6\\nTFWiyePOebOyskKhUNh2Hu11Y7rfNPqteOaZZ7hx4wZ/8id/csevuY+7w3uOFJeWlhgZGen+e3h4\\nmBdffHHPbTqN7c3NTXK53B29RyKRoNFo7Pn8rdrAubk5crkc8Xi820PYC52V3c0nm+u6LCwskEwm\\nbyvuv3UFKMtyd1JVkiRkWd6xzcpGmX9//vy+x7wbNjc36e3tfdfKPaosM9Ebo1h3cANBNmbQu0UC\\n1WqVVDJBOpOg6YruJGcHt34CWZI4PDbE4XgWoVjdVUEurjOUMbddfEtNl+dmWlskoPPowT7GLJsH\\nH3hgW3jvzbh56ML3fWa9daotl6Qq0bR9fNfDbVRYbJS62zRtl2LRZ2YmRBBywAoplW3W3ICjA3FO\\np1rMz83uGLywVJVkXEXTlG03Proq88EDPTx3vUTN9lEViY9P9VJ3Al6YKaGpMr4b+dQOpU0urTZY\\nXlljpDC0tSKReHwiy4XlOrW6T8pU+eDBHjRF5gOTPTx7LbL6Cwn5nz8ywcXlGoEISZlRBFNftfOe\\nBwAAIABJREFU0qQvZaDv4TSzuLhIoVCIhqkSBieGkjxzsUjN9sjGdA73xQnCkMP9cc6OZ6MUiztY\\nJaVMjZGsyVrdRfYkqm2f8YzCQNrCMk3OjmX42Y0SMhJBGDKZi9ET1/jupXUIo0gpIULeWq4xkDZI\\nW1FJt5O7WLN9pvoTFGsONTu6EWg4AWfHoj5+sOUCNDU1te1z7XUe3M358dWvfpU//dM/vePt7+Pu\\n8Z4jxZ8HFEXZd0r0ZgF/o9Fgc3OzG+l0c+L9fq+9mbimp6eZmJhgc3NzX1Lc7Y60Xq8jhCCXy+1a\\nNp0pVnjqOz/FdV3i+v6arJvRbDaRJAnLsiIHmJqDG0QXzFxCR95nP2EYpVYEWyJ6kIhtjd3r6s4V\\naRAErJVrJDJ5vEY0sLLecNDkcMusXEaSolWhrGicPTbBpx6aIhm3uL7e5IWZcrck23SDbUJzLxD8\\neHoTTZboTxo0HI9/feka/+NHju1JiLB9ihDgU6dMXrhRpthwSWdlfvFAD/ldNHnvCwSlpockQcqQ\\nmZ+dIRAhQ4MD24YvbNvedSDj5r9/5zNMyAqBqhA3NBobNqqiMBEXLNZsDE3l0UIKSw44nIHvzArS\\nvkSl7nAgF+dgPs6BfBwvEOjK236nA2mTXzo5QNP1sTSFhKHy+IFeHD+Slhjq/uXyTsn+kUce6T52\\nqpAmG9P53qUiMU2Jcje9gPdN9GwLbb4d8kmDjx3J8/z1Mk3X59hgknF5g7HRUQDGe2MkTZVKy8XU\\nVAbT0XBVNNUc3WTJW65GticYzpgcH0pwebUJQF9C5wMHeqi1fS6tNhBhyIOjaYa2yszFYpG+vr53\\nvfdXqVS4ceMGZ8+efVf3ex/b8Z4jxUKhwMLCQvffnbvV3bbpRDVVq1V6e3vv+r32KrnePNxy5cqV\\nbabht+sXdFaZHQ3j5uYmQgjy+TyVSmVfkf6tzwkhuH79OrqubzP87uDCUoX/45s/plarRyn1SZ2B\\n1Nuj4GIrL1GRI82dLBE5v1RtNktlJgZzuH7ApdUGri9wPMFsIOhPGhwbTFJpuUwXmzS9AFOVycQ0\\nDEUhEAInEGw2XCRJoiemo6sSE7k4miJt5R5Gkg0/EFyYK1JxdbJND18I6raPqSk4skAIaHsBG67E\\nofFRHj48ii1gse5zNA4TuRgtN+DiSh1JgtPDqW2J720vwPUFmS2iDF0bZBXFvPMMP4j8Yj9+JI8v\\nxL6rHU2R6d+SmnScjR555JF3pGUTQmyTCNzsFFNIePSbMr7v0iqtcrXoUy6XOZ1VsavzaDIEvsTL\\nG/tr7KKbNJWmHz1mmnfmErO6ukoul9txXCNZi199YIjp9QZCRH+f3dxwboep/iQTuTiBCJGFz/nz\\nC9sMNXrj+o7hn4FUZCTRG9fxAkEYSiSNqE/8wHCGw31JRBgS0xVkSSKfVHZ1tllaWuL48eN3/Zlv\\nh3/5l3/h137t1+73FO8x3nOkePbsWaanp5mZmaFQKPDUU0/x1a9+dds2n/70p/nHf/xHHnvsMb7x\\njW/wsY997K7u+m63bWfQZmEhOlGTyeQd7/vmnmNHaH/69Okdz+33ug4WFhbI5/MUi0UkSdp2gXK8\\ngP/ru+fw7RbxLa3fRsPdIiiZcstldiMSf7fcAEWWCLYu+DHZw5c1Xl+u4wW1rQtMJAVImCoL5TYS\\nkdepH0Qm4svVKM4pbWqUWpEzjiRJkdF2GCJCieVKG19EcU3OlqVbteWyWXfoScVZq9sEIjL3Tlsa\\n85U2VjzN5OgovmqiJ0ykLb3fq/NVjvQnkCWJk4UU/SmDq8UG5ZbHas1mMB0Ro6kqyHLkg6qpEvPL\\ny+RyQ4Qi8iS9XdL7rbiT8t/Nf59CofCOxd0dKYumaXuGU3fQbDa5fPkyH7lpcvnWEvCt5NpqtXYl\\n3JsrEp1y/M1kqigKS0tLjI2N7ZrAkbZUzo5ld/uYdwVdibz7Zmbmu2Xa/XB2LMtPr2+yVndQJInH\\nJrJkYm+vUPerDHTQbDaRZfm2v++7RRiGPP3003zlK195V/d7HzvxniNFVVX527/9W37hF36BIAj4\\n7d/+bY4fP86f//mf8/DDD/PpT3+a3/md3+Fzn/scBw8epKenh6eeeuqu36fjr3irKw1EBNVut9nY\\n2Lgr+UTntR1y6xD7zR6ld0qK7XabYrHImTNnWF5eZnp6Gk3Tuheol68uMDu/EA2nSBIhEkEQEghB\\nyw05v1glDCP7tLrto26RQ9sNiKmCdNzCCwSVduRkEgKaLGM3XMIwGt4ICcknIv2gqSpRYLAfhf6u\\n1hxiukpcV3B9QVyPpgRTpoamyBRrNsWGi+N6hMiIhhvZjPkhMVNnINHLZH8PimHSmzJ4eb5KqeVx\\nbb1JfMsl50AuxiMTWSotj+9dWsfSI0eeH5bbfPRwL4NpC12VeWyih5/eKEVxYL6OGcp8+2KRuK7w\\n+MHebRdOgM2Gw8XVyFptMhejsMegSQelpsP3Lm2wVG0zkrX45NE+4prE8soKDz509p6M4ftC8OZS\\njfmSTdxQMJsrHBoZ27bNrSXgd4KW41Fq2EgiIK693W8zDCPyf61WdxDubiXgW//bb+XamQKG3cu0\\neyGmK3ziSB7HF6iKdFc3MB0sLy+/a4NlN2NmZgZN0xjdKgHfx73De44UAZ544gmeeOKJbY/9xV/8\\nRfdn0zT5+te//h96j2Qy2R3LvhWyLLO6usqxY8f2LIXcrvRar9ep1WocOHBgx3O74WbC7GgSDx48\\nSBiG3WiqzsXp2vwK5y/fQJMEG/U2DSfADaKlnuLUaPsh1UYktG+1w2j0nsgJJhAhTQ/choMfhKhy\\nlODg+gKUaMWXiUVCcU2J+jimGhlzO74ga2k0w2iqseH40Uj9Te4zqixRsyObsrYbRDoxGcpNl55U\\nnHR/HxMjBbxQIhQhxarNesPFD3yWypEpuK7KFNImP7i6QSamcW62wmsLFVRZJp/QSJga37u0wemR\\nFHFNYaPpogD18iZ9fQUKaRNTU6jbPs9e3+SXTvR3e6RX1ur81+cXECIkl9C5sdnkY1M5RrJRuVV0\\nPEG3tm84Pl99aYn5kk3SUHhxtsJa3eVU2uGtZpIrrywzkDQ5OpBgo+lgewH9KYuhjLltmlaEIWs1\\nB8cXpC11h7zlVry+WOPqWoPeuM61tSovX63wuJtmogqPTmR37QlW2x4rNRtVlihkrK5F216otDx+\\ncGUDN4iyKg/1JXhotIf5+XmOHj16RxWSMAz3XKn6vk+73d7271sTODzPIwxD3njjjR3EuRe56u8w\\n1koIwcbGxrZz8t3CU089xW/+5m/e1yj+HPCeJMWfBzoC/t0mVmu1WlQm2iP4dy9xP7zdU5ydneXo\\n0aM7DMP38zjtPLexsYGmaaRSqa5zTecisF6u8dLVqKxrJQJenqtgSCHqVpn0aj1KqzdMiWRMox7Y\\nOLYXlRElUKQoFNgPwi4BBEKgSmyRJHiuQJNCVAk221H0kh9G5a4wCNGQkAQoCKQwQBIKaUuhaQfM\\nbnoEYUit7eH5Al2T0a0UQSyLmclyZChJ0w1Yqdo4vo+hRFICxxP4QmDpUcSULEtcWq3zk2mN526U\\nKFZt/FCCMNwS9kcm3W0viKYZYx51LKYX62iaiqFKXFppUKw5VNsuhYzFatXlh1eKNJwATZFZqdqM\\n2TFGMhYy8OJchcVSm1zC4HBfnCODSdbrDssVm/6kjqbImKrMhaUqz10oo8XSJIwKnh/wfzoCmZCW\\nLxjJWjw8luHxg71RDFcYMrths1xrY6kySBLHB5PkkwYpUyW+ixTl+nqTfMKg7QVcXtwgm04SMzRW\\nqjavzld57BaZw2bT5fuXN3C8gLbrk7I0PvPA4L7E+OJsGVWWyMYMRBhyZa1BrxER5J22DDom3XuZ\\n0t8Or7zyCocPH0bTtHe1BLwbudZqNdLpdFe4/24RmBCCf/3Xf+XZZ599V/Z3H/vjPineI+xl9Wbb\\nNqVSiWx2755JZ8W3Fymur6/T09OzQ5PY0Rzut0/f95mZmeHUqVNd4u0QYst2+G8/PIfnRytKCYm0\\npaHKEteKza0wXpkwhIbrY6gycUOhavvIkoTn+8RNjUBEptWOHxLTFNxAIEuR2LqzckxZalRTVR3y\\nCR0ZKNYdYoZCj6XiBgF+IBhPq0gELFVtAicAT+D5IS1Xwkj2kMvn8BQTL4CEGpJTHXwnZCghUW4r\\nNJwAQ5YIlSjhwtRkFCTqdpQwcX6hiu+HKIpMy45WknXb58hAgsurdaq2T8bSuOTWcdUE8+UqF5Zq\\nhKFAhFECx2ypiamqHBlIsFy1cXxBXFfxw5D1+QqWJvPWSp2FchtLk1mo2JybK3OgN07KUrmy1kAC\\nUpaGLMG11SpND2LtKKqo7QlcX6Cr0pY+UNCX1PnHF5pM9SV5a7nKjY02B/NxBjMmEiFfObfIgyMp\\nZFnmwwd7GUhHA1I12+P5G2XOL1RJWRr5uILnuGTSGRQZspbBStXufm/cIFqRn1+o0nI85svRcxdW\\nG8yV24z2WFiqwqMTWQbT2/0461u/uyAUVFo+Ndvj4vV5Hp36+ZQAG40GkiTdVc9+N9xqFH7zf47j\\n0Gw28X2fYrGIZVm89tprOyo2d1LyvfWxDqm++OKLnDx5ckdg+X3cG9wnxXuEZDK5w+qtM206Ojq6\\nrw1cZzW4m9VTEATUarVdp9vuZNBmZmaG4eHhbuRNh3iDQPCtH79Erdl6+zVyJMRuuwI3EFiaQhCG\\nZGIaIZC0IpIbzVrMrlepOjKGKqOrSiR2VqJBGS8QjPVYKLJMw4ly8GKawkbDZSIX78ohDE2Nwoll\\nibgRib47ww1rXo2htELMNCkMDnBhrcGGSCLLMgkjksD0Wir1IGQkG620L661SWgSbS+g1g5xA9is\\nechbZuE9JhQDGyHLWBLYhLS9kIQu43ouNTtACLBbHnVfxgvaJA2Fmu3RcEJiuoQKLFcD4rqPocvU\\nbZ8gBFMNI09YL+Cl+QoPDGXIxjTaruDqWpO+pM5G0+Gl+TK27xMIWKs5SBKIIESSZWw/ymCstn0k\\noqEfL4By0+bbb67Sn7ZIGiqBYOuYQhbLbRqOTyamkU9E3rMvzJZ5bCLLRtPlpdkysiQxkbO4vNLg\\n6mIdVYuiv9KmRt2OVoEQrQ5/Mr2J6wsur9WptzwG0haqIjFfanFltU7bCbB9wUtzFf77h4Y4Pfx2\\n9WMoYzK70aLYcNhouDQdjw1R57EH7oykWm5A0/ExNLmrI4XoPIoitKR9h18WFxe3aZLfKW5nvQbR\\nzW6j0eDhhx/e8dztSsC2be9KuN///vf52te+RrvdJp1O88u//MtkMhnGx8f5y7/8y//wcd3H7rhP\\nivcIu60UV1dXMQyDbDZLqVTa87V7BRGHYcja2hq9vb279jxu11NstVrU63UmJye7msRO8sb3z73B\\nUnH7Z1JkidEei+liA1+EeEKQsXQCEUUtHd+yL5vdaJBUBSO5DHU7Mq8OgYSuEhI5gIz2WN07347+\\nMF5uR+W/6OiQZYnx3hhxQ9mhYxzK9zBcGOLw6BBLK8uctpL09ma4XmzS9gQjWZMPHezhR9ObtNxI\\nWzZdWWOtZiOEjGmESJ4PcjQBGtMVHp/sodhwqbWjkqwWuJihT9JQaLoBuhKtlLwgoO1BICCmBGhE\\npNpwQ1QgAGq2YGmzQcuDUIAuCQQSYxkdPwxZKjdIWRorNTfanxswV7aptX0O5hIYqsyNzRaVWhOh\\nybSdSBIQEk3uCqBqBwgREAItL8T1BT+7UUKTJTaaHg3bR5NlSm2XoYzJQMrg6ECSa+tNGo5PteXy\\nb2+t4QYhWUuLCNh2ODycxgtCFspt4rrCw2MZRBjy7JY+M5M0sD2ff12qkzAjIXvbi0rEQRgylDYp\\ntVxenqtQyFhdV52HRtMsVdrMl9r0xDUGtYCY1csbS3U+ctigZnu4fkjS3KlrXK3a/ORaZJMXAmdG\\nUvSnTJYrbS6u1LG9aBjmYD7BiS37Nf0mOznf93cV0N8rLC8vMzS0M44K3nkJ+NFHH+WP/uiPePzx\\nx/nZz35Go9GgWq1i2/btX3wf7xj3SfEe4VZS7LjOPPjgg1392F7Yi9zW1tYwDGPPk+t2pFgsFjl1\\n6tQOw+9XL9/gzWvzu74ubqicLKQj8ttsY/uRxdp4TwxLU3B8wepmjXwmiWFoxHWVhuszmo0RiBBV\\nkUia6vbepyyhyBKFjMnsZoum6xOGkI1FCQ2dbTuuMw8encSKJ/jRlQ2Wy02WSw2eeN9Jjg+ltvIY\\nQ8pNj5fmKuQTJhdW6ry+VCOpK7gxDQkZQkHNicjW0mVOFVJYmsqooSKFEutNh6SpYamRSQCELFVt\\nCnGP0yM5vjNdp2EHFHotrq41kRwPCdhqQyIBrpAw1Ij0wzBkMKnRa0r4gaDabrFcCtiww4jkXBs3\\ngJINrt3iaF6nRxGUQlDlaJtAhARbMUcSEdl2/rpBCEsVGyHA0GRMTaLS8nCDMNIYCsE3Kg6TuSox\\nXeH4UJLvXt5gteogAfW2D6EgY2mkYyo3NlpoioyuRkkXuiJRdzwGU1Z0PIAIBa/MV8gndLwgJBAB\\naVPD29KGbjRc5kutLikaqsLJoRQtJ6A/qTNzY52B4QHanuCt5RpvLUXaUE2R+ehUL9mYTsPxKbdc\\nfnB5g3xSx9IiX9WfTG+iKzKbTZfFrR7scMbkn19b5sfTOoW0xWQ+xkOjGRRZYmVlpRu/5m5Nk+5n\\nGNFBIEJubDSp2h69MZ2x3thtX9e5Wb2TCde7xbe//W2eeOIJUqkUqVRqT+K9j3cP90nxHuFWUrxy\\n5QqTk5PdVeB+Vm67kZvneczPz3PgwAE2Nzfv+HUdVKtVdF3HsqxtzjWzy0V+/MqFfY9FkSWODCQZ\\nTJu03ABTk7tRO23bJgxDDMMkJEppKLeiUMW+lEFP3Nhz4MDUFA72xXG8aLLU1CLHFMvQOXV4jAcO\\nT5CIvd2neuJEPy+8+jof+sAUY4NRma5zAT43W6YnpmFqCh861MN8qU3d9kkYChdWGliazMxmi5im\\nIMKIdDQFBtMxzo5lUBWZpKmQsTSWKzabLZeZYpUL0/Mkkil+9YEEL85W2Gy66KpETAfHA0mGcGsC\\nNpQkMjGdtKWiKjJjPSYj2Tj5pM6/XyqSz8qw3qTpBpRsn7ipkrbABuaaKknZZSpvsNaGpu8hSxG5\\nNh0wNfB82Eq/QoQRMQL4nsALopVsAPRoYLsCpIClkmAwafLDiy3abjTNKwDPF7gCJDngxZkKMV0l\\nG9PoiRn86MoG6ZjKxZUmV1abxHSFSttDlWWyyajEPZQ2KTYc1uptanaArspsNlxenClTsz0O5hPE\\ndIU3l2u8uVznDbfNeCZOqR0w0avz5lKNvoSBLEs0HJ/nb5Q5O5bhh1c3cf2A15dqTPUnONQXR5El\\nlqoOh3JxNFWmL6lzY7PNtfUmlXbUqxztsbhWbJIyVab6EywuLjJ14jTPXFpnve6gKTIfPtTDQHpv\\neUwYhrwwU2Ku1MZSFS6vNtlsejw8ltnzNQClUolMJnNPwoK/+tWv8uSTT77r+72PvXGfFO8R0uk0\\nN27cACLbJ1mWu5Ootwb73ordyG16eprx8XEMw7grgT5EUVibm5v09PRsK5uWqnX+7dlXuE1u8dvH\\nZGmkre29nUalTD6boun62J5gs+mRi2skDJVi3d1yqtm7F6PKMqoRlb1ymRQPHZ3kyEQBdZcLTLNe\\nJaVLjA3uzKiTiEq2nZ91VSaf1KNVbW+MtZqNrshYukIuoYEkcSCf4H2T2R12a4WsRSFrIZXmefDx\\nw6SzWeK6ymdOD7JYtjk3W+a1+TJXii0UWWKtbuMFIVkzCgrWFJmjQynGsyaOH7LecJnqS+AEgnLL\\nR5JdPD+ynzs2nKDtCmzPZ1QXHDs0wf99YY2xXBLHD9hs+pSbDkcHE5xfqOO1PTwBN//JFECVJQwl\\nksM4oYQkS6iSRFKXiak+CxWHUEQ3A4oEbRG9TgkF1UaLCvDWNZsj/RZvFj0KaYOpjM7los1LSw4p\\nUyEUIbIEmirx4UO9rNYcZAneWqnTlzQYzVosVWz+7c01zozYLJRtJnpjnB1L8+M31pnXezl7JEYh\\nbbFQtpG3tK1xXWG94fL8TIm4rpCLa6xWba6vN+lPGuiqTChCEoaCKxSWyjYt2yduKsQ1hbSlcWO9\\nxdGBJOsNh3KlyvPrMk99+3oUZaUpWIbCdLHB//KRSdKx3SstdcdnvmTTG49M5C1N4ifTG1wrNjA1\\nhZOFFAfyOw33l5aW7ipa7k5RLBbZ3NzkxIkT7/q+72Nv3CfFe4SOJMPzPGZnZ7taQLhzx5sOSqXI\\nNDqfz9Nut++aFK9du0ahUOi6baiqSttx+W8/Oofj7j6teieo1WrE4zEGMwnW6y4L5Ta5hE5PLFpF\\narJE2xPsd58tSXBgeIAHj0wy3L+3eXgYhkxPT+95gTg+lOS5ayUcTeAJQcJQef9klpdmK/TGIwL6\\nT8f7ONyXQFdlElsJEXuhXq/jui4jg33dx5KmxtFBjb6kzsXVBof64qxU7ciAIBBk4xpJM5rWPTOc\\n4rHJHppOZG7wlRcXuVZsoEiRCYKmSvTGdFKmjuM7eK6Dlk3zs5kygYhKo3FD4YFCkqWqji/CrV6n\\nj0REbrIcrQ4h0ilqqoziCxwvRFEkdENG0w2OjWRphFV8X+CW2wQixPEDLEMhn9Kj4aBAUBEmV2sq\\nThgylLFQpJDjfTqLlTYEAaoIsVsORTvkJ26VAxmF0ZTEjBegNBUuV2VsHyRZQjRD5os2vtOi2nRQ\\nVQ0ZSKohpiaxUG5xY72FqkQrxZguo8oSJwopJEni2FCK2kyJ1ZrDQMrgiRN9XFtvkYvrXFda2EGI\\nISKZjSxJ2H5AywvQXYnzlxaRYymWV5vUbJ98UmdQMSl7Hi/PV/j4kd2Df8MQ3CDgtYUWjhdQrNss\\nVhw+PtXLaE+cF2ZKmJrcjdKCqC3Sbrf/wxOuu+HrX/86n/3sZ+9rE3/OuE+K9wid8un09DRjY2P7\\nTq7diptTNIIg4Nq1a5w6darr7nE3/qalUgkhBNlsltXVVZaWllBVlWdeusDyeqUryXg73f7OTkDf\\n96nX6wwNDSHLMoNpE0mCjS2/UqArlN8NuqZy8uAoD0xNkEnePkl8ZWWFdDpNLLa75+hYTwx9SmKx\\nYmOqCgfycWK6wqeO9W0NhUi3Nam+GdeuXePgwYO7PtebMPj0qX7OL9Y4M5Km2HBZq9icGE7hBgJN\\nkjhdSKMrMnpMj2zwJAlTjyQimZhOUgTYgWClFqXZT8R9dCvOsBWlPFi6TLHmkEsa/PqDBS6t1fne\\n5XVySY2FksNG040+S1ylumWP15c0WK3Z+IEgbenEzWgV5Qn4xJE8biCYLjaYXqniWdCTThBTFdYV\\nl0rbo+qGlG2HbFzD12L0py2ECBnajCZ4k6bKUsUmZ8HwYJL/4bERLq02kSqrlAPBuuOgyXC0N0Yi\\npqMrDleLLXpUG1M3WFiv8A8/qjGWgvWaT8UOWW6FaLLE+ws6C42QlfUNTvdb+JLMoAEfKsTpTSpo\\nKhjoLFRdHhlLEddk1psuCgEXVxvkEzqPjGeQRYAcBrSDziS03DX77olF07V7IWmqtNyAUtPF1GTm\\nyzYihPlym7ojmOyNsVpztpHiysoKQ0ND7zpxhWHIN77xDb71rW+9q/u9j9vjPineI6TTaTzPw3Ec\\n+vr6djy/V74hRKToOA4As7OzDA0NYZpm97m9+pG3lmU7hHrixAkURWFycpIwDHn2/GVmFte2pdoH\\nQbCjpNuJkrqVOGVZptFoEI/H8Tyv+1hvPCKAzuBMyor6VDcjk4xz5sgExydHMPQ7m8YLgoC5ubld\\nx91vxmDa6nqWdn+XsrRrjuJe8IXg2YuLnF/wmJNbnB3Vd9i0lZouw1kLSYJKy2c8F6Nu+5ybrWwF\\n/ybR1Lf/ri03YDxncag/ztW1RhS3FIZ89HCepKnwg9evc3RokOu1SPeoKnCqkKLa4/GByR7Gc3EO\\n9Sd4YDjNc9dLXCs2eGuphqXLpCydUAiycZ180qRYs5nqS5C0NJpuwEbd4SNTOY4NJllvuHxyKse1\\ni+cxB45wfrnJ5dU6CVOhP6Uzko3hiSgN43qx1bU5+/DhHmY321iawrGhZNSP9AXferPIxeU6JwvJ\\nqNesqyxX2hwczKKrCqN94KzV8H1B1bcY6I3irWY8wQOHUsR1ldeXaigSDPfHOKJKvLRQwVUNTAUe\\nGjGJqyGNeh3f91E9jxF8fM/njZqNaAdoYUiPBPVai+ffahCTAwQKtVqNjBayUnUx5ABblkkbsFRq\\n8Pz1DU4NZ3aYGsiSxHivhRTCtY0m+aSBH4SYW8M+a3WbUyNvawXDMGRlZeWurRrvBJcuXSKfz9Pf\\n3/+u7/s+9sd9UrxHkGWZZ555hj/+4z/elfg6YcH7udbU63UqlUo3Vqqz3736kbe+z9zcHAMDA+i6\\nThiG9PX1ceH6Agsb9X3NAyA64cMw3JU4XdftelTWarVtz2lhiCWiaUmlLbPmVFEUhUI+y8kDI0wU\\n+tA0jUq5tMMI+mYjgZsxOztLoVB4x64md4MLyzVeuLzAqUOjyIrMT66V+IVjeXq2EhUurtQ5v1iN\\nBlZCeN9Ehmxc5zsXinzoYC+aIlNquZybrfDRw1EPORPTECEkDZVHx7MsV20O9yd4ZDxLu93mwiUP\\nV4mRT0RTmT1bNxdxQ6X/JkH8aE+MX00aOJ5guWpzabWOCOHYYIJD+ThuELLZcPjpjTJeEN1wTQ0k\\nOTqYRFNkhtImKysrjAz0cfBgnsn+FFfXkrw0V6Fh++iqTKsdcChv4Qv46OFeYrqKqck8d73EatVG\\nAoptj75ElDNo6QozG20eGktzuD/BG4s1bC+So3z8SB6vtkk81ctqS5AyIn2rGwTMbrY4PZxBlqL+\\nqK5q6IbCieFefu2BgdvarM0py6QMlVLL5cJKA0LBoZzJtbkFenszNOserZbHSEqLvsvDwCEMAAAg\\nAElEQVQiwG618A2Hn76+zrk3BA/1K13PXkVRorZFE1o1QTwMQRUstQX1ZkiIRMaIMxiTcV0XVVWp\\n1WokEol78r38p3/6Jz73uc+96/u9j9vjPineI3z5y18mkUjsaeDbKYPuRoqdnuLVq1eZmpraRna3\\nK9N0nm82m5RKJU6fPk0YhmiaxvJ6me+de3Pb9mEYpU6EgLFVaursp7NSvHX75eXlLtnuhTAMUWSZ\\nw6MDnDgwTDpu4bpud/K21WptEyx3fr45h1JRFBpeyJW1JqlMlvFSk0I2tqv7x36kejd4a3aNvpRF\\nzIxWh5LtU2q59MR1mo7PG0tV+hIGiizhBZFo/ZHxDBKRtAAga2kU6063EpBPGDw6nuWV+QoihMlc\\nnAdGounZubk5nnjoAJvColh3GUjrxHWVhKlyuC+xw0bN0hQsTSET0zg2uL2PpauRa1Dc0CjWbXRV\\nZjQb64b8hmHI3NwcZ86cQZIkBlImfUkDQ1X4xqvLW4G70YRnWlPpvykm7EMHeym1XAjhe1fW6Ysb\\nXQ1qse5Qbfs0nIAHRtJ8+FDUG26329zIhKwqBrbbJKaFnCikqLc93lyq0fai4GPPj3qcbS/g/ZPZ\\nO/obHu5L8MZSlc2GG1kVGhpq6DLcm+HweD8H8nFmN5uIECxV4Y3lGqM9Vnf1u1a3OTyVpy9pbEsD\\nmXQ90otVXp6rsrnZ5vSAjiIJ/EDwUI/L4tyN7ne13W6jqiovvPBCl1T3+m7u9txexxkEAc888wxf\\n+tKXbv+FvY93HfdJ8R7Atm1isdie/S/Y37VGURTq9To9PT0kEom7fv8wDHn+9UtsKr1cO7/KeG+M\\nqb4Y3/rxS9tWmSIMWarYVNqR5s7SFMZ6rC2d3u6o1+uYprkvISZiJmemJjh5cBTLNFgstfj3a2U8\\nETLVn+CB4VSXQPY7hnLT4b9+73VSqT5k0+LNkotpQT4muqTadj2qLQ8ReJjS9n5q50K11wXq1p9l\\nWaZW2iBfePtGRoiw24uMjAak7oCOpsiIMLK+E2HYjZJqOAFpa7s280A+zkQu0m52jr3dblOr1Zia\\nmqLwLvakcgm9K1W5Gevr62QymW0m9bIkbVm0Gbw4U95y41H4wIHt3qeKLHWndHvjOg3XJ2VqHBtI\\nYHsBshQd4+mtQRmA+fl53n98Ai2Z5XuXivgi+n2GSPzaQ0OkTY33TfREGs9AbLnw3Fl24vGhJJoi\\n8fyNMnUn4FQhxdLcDeK9g2TjGsNZqxtGLcKQmVKLyF8pQhhGQ16wPYnDNE0+dCzJB48WWK3azJai\\nMvLhvsS2NBTf93n55Zd59NFHo/fYsoK71bHG87yuv+qtz93qr7q8vMw//MM/dDXEf/M3f0MmkyGT\\nyXS1ivvh61//Ol/84he5dOkS586d27PdMD4+TjKZ7J4fL7/88h39zt8ruE+K9wCmafLlL3+ZM2fO\\n7LnNfgMznbvQdzrmfW1uiYsVhYMjFqoSmT9//2cvE5e39yKrbY9yyyNpKIBEy/Up1iM3lN0QBAHV\\napVc/yArVRsRhqRMleSWBddQPsuDRyY5ODKIonTuyB3+y/MLuIFAlWGp3EaR4MHR/bVfkiRxfaVM\\nEAomh/sIRIgrOVxryExN9EcmAY7PD69s0JIDhBRyIB/n4bEM8la/Vgix62rU9/2uX+XNj7daLUZj\\nARdn5pgW0Xhnf0KltFCmuabhCpnpxQavuSG9cY1s3CCXMEipAYdyJtMbNrIkYagy7xvfGUotSxJr\\nDZvLqw2CEOTaCicnJn4u04VhGDI7O8vJkyd3fX60J8Zg2sQLQkxN3lew/sh4lh9d2aBYdxBhyC+f\\n6ud0Ib3tODzPo1QqcejQIWRZ5ldODTJdbGB7gsG00U0NeaeQpUg7O5mP85PpDRbWa9R8mfFMjKn+\\nxI5tTxZSvDpfxVRlnEAwmDbp2UcqJEsSQxmLoczuusbV1VUGBga6x9whst1Sce4EQgiazSaTk5P8\\n9V//NZ/4xCcYGxujUqmwsLCwr665gxMnTvDP//zPfP7zn7/ttj/84Q93DSu4j/ukeM+x3zDNbl/0\\nzsXLNM19xcB77VeSJC7PLNLbO4SuRHq1+ZnrzK2Vd5TbXF9s9VTeXvm0vL1PvlKpRCKVYbbURmyF\\n+ZZbPh85Ncinzh5lMLezT/nybJma7TOatRBEQcWvL1ZvS4phGLIwP0d/fz+BCHlruc5azSa2JaX4\\nwIEevv1WkdWazUjWYiBlMF1sUshYFDJm19f1doLqhuPjBQJLlXjtlZf5hcce46NCotSMnF8yhkQo\\notLav721xmpDUGt7LFcdhhJt+ocN/v4Ha/h+gCELDmZkUobE5TfmdqxU657EuWWHhBmZoc+ulmkq\\nKfRVl3zS4nghjbFL6oTtBSyU23hBZKl2a37jnaBUKhGPx/cNv9UUmdukQQGQsTR+8UQfdTtAVSQy\\n1s7Ps7S0RKFQ6JYILU3hVGH3VJim61Np+WiKRC6h35HzTAe6IvORwzleaK7ywfFxJgq5XXMQj/Qn\\nSBkq6w2XuKEw3hu764Dom7G8vNwN9343IMsyyWSSyclJrl69ytNPP33XrYCjR4++a5/nvYz7pHiP\\ncCdaxN1WisViEV3X970z3C9aynEchocKXKgAEly5Nsv8ShFd2fl5LE3BF1HobyBClqtRHyoMGwxn\\nLKybzJYdx4kmTWNp/MCmN2kxMTrM4MAgyYS5KyECNJyg+97ylsBehLu7BQQiZLrYYK3u4DXrDGYT\\nrMqR9+py1Sauq5wcShEIwVdfWqTUcFFliQtLNep2DENT+Nn1DSRJoi9hMJGPU7c9vCDc5snZwY+u\\nrPODqxuEQFy0+aUj/VEZDYjp21cyazWHl5dd+jMJxvIqDcfD0lWKks7xg1EY8UbDIZOx+MCBnl1X\\nqkvzFSwjIKbKbGxu0Ag0fnBplYNZmdcdn3NvhJzKv71KUxQFISm8ti5oBxIgs9L0GUyZDGdNzo6m\\n6UmY24h3r+/dzMzMvhfN9brDS3MVbC9grDfGqcL+JW5DVTASuzOoEIKVlRXOnj275+s7KDVdvn9l\\nHSEgCEPGe2K8bzJ7V8QofB/Va3FwuG/P45ckqWvK8B9FJyf1na4K98M3v/lNPvOZz/yHe+P7QZIk\\nPvWpTyFJEp///Of5vd/7vXv2Xv9fxH1SJLqL/uxnP8vs7Czj4+N87Wtf23U6U1GUbvlpdHT0thqi\\njm5wt+TyvazcOoMQ58+f33O/e0VLVatVhBAcGOqlIdm8NL3AxcvXkYCR3E4tYNJU6U8arNcd1hsu\\nmiLRnzTwRZR9l7ZUZFmiN65T3dggn8+jxZL0DI7xwKFRFEWh5e7t4QpwMB9jutig1HKRiMKGz47v\\nvkp8fbHKm8s16m2X168vMT7Uz2cfTqJI0PIEh/JxUqbGWs2m3PTwRciFlTquH/LqUpWspTKctVBl\\nBdsL8IXg2ECSvpTJxZUGHznc05VsPHdtk//9uTlUWUJVJNxGjVQ6w/HDYfeC7AWCC8t1VmoO19ai\\n6KdK28cXglxco7ylfYs0gyEpU+vGLu22Us03JUqeRlKHtc0SspXmcG+MA/k4ry5UeHapxlwY46OH\\ncrx/MoulyVxZrWLaZQqWwutLdYIwoGp7JOoh//5mg/cVdAh2hut2vieqqhKGIbZtM7e4jKapxAx9\\nG5HaAXxvuoKhqZRbLpdXG6zWbJ443v+OSrtra2vkcrldv/e34qW5CoaikIxHn3N2s8VELrYjhmo/\\ndNLuf14i96WlpXviQRqGIU899RR/93d/t+c2n/jEJ1hdXd3x+Je+9CU+85nP3NH7PPfccxQKBYrF\\nIp/85Cc5cuQIH/rQh97x5/7/G+6TIvDkk0/y8Y9/nC984Qs8+eSTPPnkk/zVX/3Vju0sy9qXrG5F\\nMpmkXt9d/nCraw1EgvGxsbHbjnjvRqhCCKanp0mlUgS+z3ha4qeby4z2WJiqsquIXpIk+lMGGUtF\\nhCFJUwUkwlBQrEcWXroqc7lS4qGxAT77nx4nm03z3UsblNsBmiJoeQEfvGUo42acKESm3Tc2WwgB\\nHxvs5cTQzjJa2wv4zsUiK1Wb1XKDkZRF3RF85dwi470WthelRfiBoGr7tByfxYpDzfa7gcYxVaHc\\n8jnSb/H6UpVy02W94XJiMEk2rnN+ocb/w957Bll2V+fevx1PTp1zz3T35KwwAgWTQca2QGUKXIho\\nKNtVIId6MVbZVRgXZX+x69rlwrHAmA+vAubC5V5fXgkJhAAJaaRRGI00qeN07pPjznu/H3afM93T\\ncVrdY4Pm+dIzZ5/e+5zT+/zXf631rOfpTISoGDbPjOQQF5mh2UKRsiPz40tZWmIB3jqQQkDgwVNT\\nzJV0dreGOT9XxnJcZooamuVwacGjM64iCZAMq7geZCoGg61hRjO+NRSL1kYl3eb12TLzJYOxTI1q\\nMUt7Uwqv5JIMyfzvM7OcnytjOy7ZisVIukq6bPCRW7uRZZVQMIgaVHAlg46mEJIoMNSbYKFs0Lv7\\nyriI6bi8MlViOq8RDUic6IkTlj3OvPoqlXAH52ZsXNeiJ26yNyU3ysJTBZ2JGZ2Fqo3pgCh4XLo8\\niz4/zkBTYEOiUtHwKBgu0aBCdzLE5OQkR48eXfcerqNmOkQXKxI+21lY4pyyMeqzgpvJSrcDjuPs\\nmPvGzMwMpmmuKRoB8MQTT7zh63R3dwPQ1tbGvffey6lTp24ExSW4ERTxSxY//vGPAfjkJz/J29/+\\n9lWD4rWiLvW2VtZpmmbj//l8HtM0Vx30X+13rw6KU1NTNDc3o+s6+WKZx184T0CCoLxx/0mRRSRJ\\nxFnsE5Z12zdnDQUY6Oukqhnccdsxejv8xvx7DrRycaGC7Xj0JINrkhHAL7O9c38rJw3fiDiiSqvu\\n6M9Ml8hVLSzbQfVMym4Yu2wQDUgMNodpi6qcnfVFom/qSXB+royLRzQgIwo+q1FVRAzLYSJbw3Fd\\nyoZD2bDRTJf+piCa5fDeg23oltsoDVuOTUEzMYUAnWGFeFDmf708y0imxmxRJ6xKZMeLRIMiHr7l\\nFR4okoBuu77dUkAhXTaoGA6aYfPIC9Moki8HlgjJlHQL2/Z4cbLASKYKps7RYILjPQmevJTh0nyF\\nmmUjixItAZGK7vDkxQzJiEIypGLYDlXTHwExbZdDXbFFFieLpsMORc3mpcnConKLSr5m808/HScs\\neSxkLTraBWLBEI7jcrkGe/tb2dvmE1KSRZ1haxYzaJAKq+iWg4OHmwxz4EDLukSlqYLOC9Magudg\\n2S4xxeFAwuXll19el/1b/9mkukwUdNoTQRxPALxl+robIZPJkEqlNpWVbgcWFhZobW3dkaz04Ycf\\n5r777tvRjLdareK6LrFYjGq1yg9+8AO+9KUv7dj1fhFxIyjil3vqNjMdHR3Mz8+v+jxd17nllluQ\\nZZkHHniAD37wg+uet54probVpNyOHDmyqS/E1f1IXdeZm5vjxIkTzM7O8fBjPyNdKC8rpdWvWVef\\nMV2BnO67xydDCs0Bkdmy7vcrJZljB3fzruN7mV+YI5FsXqY+Ew3I3NS7PlFmKURBWGYSuxrmigYH\\nOiI8fiaPooaoGr4vYyoUJKTK9DapJEIK7znQhiwK7GuPYtgu6bKJJELFdMADy4VczaRmOpiO2+gj\\nzpdNdjeHKRu+c0ZHIkB/U4jzU1nKtkw0KHJTb4KRdI2nLuUWh+1FEkGFom4xXzRxHQ/H8QgoIgFJ\\nQrdtslWXkm6B6D9+MV0jGpBpi6q0xRKcn6v4Cj9ApmIRFEziyQgLJZ2LCxXwPKqmg+N6CHgUdN/J\\nIl0xuThfpSfp4iEQUiX2tUeYKeqMZqpcXKjy1t0pbMfl8XMZdNu3ddrbFiUakDkzVeDcfJUIGmld\\n5KfT0+xqCrOrOYTjCZydKbFnMSh2xAN0JYIMp6v+fCqwvyOKJAoNJaU6TNv1hcA9j+6oyuu1NEf2\\niAQXGTrPv3aJXfv3MtjZtC77t1KpYNs2SddiuqZxZs5EwmVfSuT8K1ON+3WjLHVsbIzBwUEsy1q3\\np7pdmJmZ4eDBg9t+Xtd1+e53v8sPf/jDLZ/ju9/9Lvfffz/pdJpf+7Vf4/jx4zz22GPMzMzw2c9+\\nlu9///vMz89z7733Aj7L/aMf/Sh33333dr2NXwq8aYLierX4pagPra+GiYkJuru7GR0d5Z3vfCdH\\njhxhcHBwzWuuZjRcx9LAVleeWboA1RVvVmu4X61xevHiRYaGhnBdlzPj86iRON2R5TNNdeKH4/hu\\n8FOZGiIiguAxV9ZpCooc7UrQ095KPBri9YzN6dcuLs5SKhTUMi9mlBU7/fX+fS1kgVhQolZzOZCC\\nDEFf3FmSSIUVUmGlYfckCX5JcldLGN1ySFcMMhWboOr3Po90RRnOaiwUdQKy5PcLbZfOeICAIvsO\\n9orE2/e2YBkmTgV0NcGBjhgIkK4YKJL/+TseFHWbimZTNW0s16OkWaiKiC45xAIKruSh2w4TWY2o\\nKmE7HnMlg0LNRJV9AW/LcdEtl8u5KpbloNQMQMd0PAKSiO0uWj95Dm7NJRKU6W8O0xEP0BJVWSgb\\nBCQBRfbdJFJhlT2tIdIVk//z6hzJkEpHTCEVUri4UGVkocbFhTIl3WLeckDwZydHszVmSgY9CZX5\\n5ivZvSgI3H2ojdmixnCmRlCRmCpo3H1wedXCsB1+eD5DQbMo6xaXFqoUazYDbRGOdMaQ8Dd5oXB4\\n0+xfgGOHV7Kp1xqpqRkm4zmNmlEiLNg4us7U1NSaPdXNzqjW/71eUK3Var612ToM3q3i5ZdfZnBw\\ncEOlqfVw7733NgLeUnR1dfH9738fgIGBAV555ZUtX+PNgDdNUFyvFt/e3t4wJZ2dnV2zhFmvxQ8M\\nDPD2t7+dl156acOgWCqVVj1WzxQrlQr5fH6ZlFv9uOM4qwaWpeXTdDqNJEkkk0mePXOBS5Nza45q\\n1Bepmm2hyAqRgIwkiRzsaKe7u5uP3XGll3FHzeQHT7/Irv497O9tIaqKGw4n1x9fS51mvcVodxRe\\nem2WrvZmuuSgP/8XlpnJG2SrJrbrcaAjutj3hLuGmqkaDv15naNdMgOtEeJBGcvx+PCtvfzDj0eZ\\nKepUDIfdLRFsx6OvKUR88fdbowEOBAu8++5DyKEIP76Y5fnxAooscLAjxnjO7x0GJIGCBzf3JfHw\\nuDhfZbqgAQKKJLKrKYgiSxhWBWMxABVrFoWaxaHOGI7nUdRspnIaFcNGEUVqpo1he7TFVAzbQxZF\\nRDxcAaJBme5kiN7UFbbsbEHnhxfSKKJAvmrhuP5oRios89PhAt2JIJbrEVZFXp/VaIkFcDwPx7Zw\\nPAHXc7Fd0CwXSRTI1hxqhs18yaCkW0QCMqokEA0qDDT7AgOCAPJVjOWJrEZRs4ioEo+/vkCu5ns+\\nVqdsDNOhiQrtLU2k1pn/WwvLZhwdl5rpEJDFZRtFy3F58UKGrOahSGFem53lHft3c2yod8X5NppT\\nrWeqSx/bKKiWy2VCoRDT09NbCqrr4cEHH+QTn/jEln73BrYXb5qguB7uuecevvnNb/LAAw/wzW9+\\nc1UWVz6fJxwOEwgEyGQyPP3003zxi19c97wbZYq2bXPhwgX27t274stUP74a6aZ+zLZtxsbGOHr0\\nKBfGp/n5q5c2tTMXBFCDAQ7v3c2u3i4cpBUzW3oxy7HeJPv3djYe2+pw8noLVF00vVQqcaLZhYAO\\nboWgbiMaAs26R81ySQQVhKzC2dKVbLUvAOmEQEdCQZRs3EWz3URA5LN39PODc2mKmoXpuAy2RLj7\\n0BXKfqFQ8Ec3WnyS0PsP+8LLuuXSHg/Qkajw0mSRfW0xbu6XCMoSY9kaJ/tTnMIjW7WwXZe9HTEC\\nksir00VkScB1wVRFbMfjtbkqJ/uTdCeCZCsaYRkEScKwHQQ8QrJfldAt38apN+mTaN67rxVPEqga\\nDppl8uJUAdN2UWQRG4+y5vDyZJGALHJ+rsL52TKqLKJZDoIAt/QnaA6JPPG6huP5BBxFFFAkX2g0\\nEhDJaxaPnVtgtmiQq5rEghK9yTAHO+NYjkuhZnFxocaeNn+2da6o85+vzjGW9W2VZko6YdXPvDXb\\nYSxdRonofPydRwirWzfbLdQsfnwpu7jBgFv7kwwsMqdHM1UuLVToiAeJBySmrRqXawqrTQteS6a6\\nGpZKv9m2jWmapNNpurq6cBwHwzCuOahe/W/wqzzxeJynnnqK//E//sc1v87Nqtg8+uij/MEf/AGO\\n4/DZz36WBx54YEufy5sBN4Ii8MADD/DhD3+Yr3/96/T39/Otb30LgBdeeIF//ud/5mtf+xrnzp3j\\nd3/3dxszgg888MCGvYX1gqIkSdRqNZqbm1f1YlvLG3HpsbpQdr5c5QfPvrKpcmVXa4q79+5mSpPJ\\n1myKhoeHxdv3XFG3sG2b8fHxDV0pNouNFijXdTl16hS333brih4WXFmgrg6qkmoSVnSmc2UkPCqG\\nzb6UwMsvp7Ftm12OR0XwkBSBFqfI62fTyLKMJEmk02k6OjqYnZ1tLFS39YR5erzEQlknElD41Fv7\\nuaU/yWimxk8uZbEcl1zVQJEl9rYHkQQYy9Q42BmlJRogr/lZl+O/aCKqiCTC5bxOVTPobYrQFPUd\\n62cLGjXLBUQUSUAWRWzHJSjLpGIqJ3oTjGdrXM5rKIsWSCFF5nJOY97UCRoyPYkA8aBMpmqi6Tax\\ngITjwWTeYCCsM9gWYTSrIwr+RkgQIBqQaI34bNmSZqFbDm1RleGFKvmqRVgV+flYnrmiTkgVSYYk\\nDnUl+PZLs0wXdXJVk7GsBp6HIopEAxK5qoXkmIQ6EkwWdFKRrc/vPTOaQwTaYgEsx+W5sTwtURXT\\n9vjRhQxj2RqZioVka/QnkjibdcgGSrpFWXcIKr6jSx0102E4XaFm+mo7fanQMuk38Ak2bW1tjWrR\\nRrg6qF597xqGQbFY5B/+4R9YWFigWq1y1113NaTf/vIv/3JTvb7NqNg4jsPnPvc5Hn/8cXp6erj1\\n1lu55557dqQ3+suAG0ERaG5uXrXBfcstt/C1r30NgNtvv51XX311xXPWQzKZZHJyctVjjuOgaRq7\\nd+9e9fhGQbFSqVAul2nv7OKhR3+G43prBkVRENi3q5sT+3c3huz3Oi7TBR3LcWmNBpappIyOjtLb\\n23tdXCnAZ862trauGhCBFQvUUrR3dDK8UEWzHDriAXoXF7Sl8Dxv2YKUyWQa2rSmaS6TfOsXTIqa\\nBZ6LMwun5vxztVkimgiZmk2zIrI74ZNpypZHb8TjV/cneOTlNAEZUqKMZjqUdJuJbI32iEx/FCY0\\nG1G2CMgigy0RapaDaXtYrkt/U4jeZJCOZIiiZhFSJO4YbEYczdEZC5CtWeiLBsM1y2WgWWFfe5R0\\nxSIWkBFF6IgFqBgOqZBIvqLx9v19pKZKVE2b2aKBCESCCoOtURBhOF0lHpAZy+jMV3TsksdUvgaC\\nQCKs0J0I8j9fnsNxYSJbozsRQgAmcjWqlkvFsKkavqh3R8DmyK52Xp8tM9Qa3VK2aDkuJd2mJaKS\\nq5q4nu/JqZkur86UaImq5KoWggDjc0Xi0S5ubrsyf+t5fj+3rNtEgzKd8UDjXpjM13h6JIeAQNWw\\n6UmFONwdJxWW+dGFLDXT9i2z0lVO7ko2SEh1TE9Ps2fPnk2/l/Xu2aV46KGH+NjHPsZXv/rVLVlQ\\nbUbF5tSpUwwNDTEwMADAb/3Wb/G9733vRlBcAzeC4g5ivZ7i8PAwgUBgzexpvaAoiiLpdJpDhw/z\\nnz85Tbmmr3qeUEDl6N5+ju/dTTS8POAoksiu5pX6k5VKhWKxeE0LwHowbIdCzUYUfSHpq5VKLMti\\nenqakydPbun8IUXiSPf6QsmCIKAoftk1GAxy7tw5jh07tmYQvhpLxZ5fGM8xkq0RFGEkXWO2bFKp\\n6fxKn8pt7SIXsxohEbrCHrZr0oaBWrE40qrgZVxaghaqKpGperxjd4SQqvCz8QqW6zHQHKArGSRX\\nsxsZUDwkM9gaJVLSODdXQRDgRG8C0/GwHJewKpKtOoQUCd3y2bYhV+PkgW7StsLe9iivz5a5cyBF\\nLKjSlgiwuznE/35lntmCzrBpo1su0YBEQJaYK5sc7YrS1xwhIIlUDYf5koHj+X3GsuEw0BxhtqjT\\nGg+wUDbZlZC4qSeC6YBuuliOC6y8H4fTVc5MFXE9ONAZ5WBHrBG0ZgoaL04WOTtdomLYJEIKngem\\n6/Lu/a1opkM8oHCsJ865qRyKIrO/M+4TpBZxdqbMmekSsig0etA39SVxXI9nxwqkQioVw+JyXuO1\\nOV+MoSWqUjEcYgGZy7kamuXww/M2Q62RxmvTdR3btrckzr8Rcrkcly9fXlcn+Y1ienqa3t4rfdee\\nnh6ee+65HbveLzpuBMUdxFrl04WFhUYZby2sZyZcKBRQFIVnXxtlOp1bcZ6WZJybDwywf3c38jX0\\nVDzP4+LFi6v2OLeCimHzowsZqqaD5/kzjXcMNi/rX46OjtLf37/l3s+1YnZ2lqampk0HRPA3Iaqq\\noqoqNw+q5Kw0z48XsF2FvrYIvU0hsrLCn3ywldmijmY7BCW/DBmVHebn5ujp6SPUVOPmnihV3eSl\\nqRIhRcKxLNqCLuN5g3Iuy9n0AorgcsGeYkQUsBwPLethGyDbLnuTCgcSNpmay+tTGr0JFceScBCQ\\nRWiLKaSMPAtWO5GAxP72GN3JINMFnfceaKO3Kcj/enmOk7uSqLLIkxfTGK5LZzBIRyKIabtkazZ7\\n2kQsx8P1YE9bmLmywWimSlm3CUgCh7rjdCdDXJqvkPKKFLwU5y6mCSoSL0wUuGuoeZlgxHRB49mx\\nHK2RAKIAL0+WCMgiQ61RCprFT4azxAMKvU1BnryQxfOgOabSEwszkauxqznMq9MlmiMK1VIRJRBh\\nuqjz4uXi4ibB5bXZMh2xAKIo4HoeFxeq7GuPIksCjuuhyiKXJmtEVRlREGiOqov2PiEAACAASURB\\nVEzkNHTTpmq6CAKLNlgWvakg7zvUhrzoXrETCjYA3/nOd/jQhz60butjO1RsbmDzuBEUdxCrBcV6\\nv+748ePrquOspY1qmiaZTIaZQo3RhTKiKC6OkcBgTwc37R+gp725EdSmCxoTOY2ALLKnLbLuvODC\\nwgLBYJBEYnXh5mvFK1MlLNulI+b3mKbyOpP5Grua/ZJXtVqlWCyyd+/ebbneRnAch4mJiTfUK40E\\nZG4fSDFb1GmJBEiEZBRJZKFsYNgu/Uuy76Ju85/Pvk4i2cRk0eQtgy0c6Upguy5FV6VqOKQCMkNh\\nk442h55UkFRI5XB3vFF+9DyPWy2bkYUyP7qQoTehgOcSDdsoisHtPUGEXSr5molm2ojWAsGoy/Oj\\n46QCi5qzokjVFpmbKKOnFeYXDFqjCnsTMlNNAWZLJp1xmZaIhNXsj3pM5DXERdLOwa4Ee9pi/Ohi\\nmmdGCsiiz8Z1PWhVHQpFk/mqza6WMIMtUdIVk/Pz5WUC4PMlg7AiNwJlPCgzWzAYao2Sq/giFiFV\\nQpUk9ndEkESR23ansGyPmulwa38KD49nLqWZqVi890Q/qbDCxfkK0YBE76Kmqbi44fIrEr7YQliV\\naIkoZCpGw/5LFgU8D6byGvmqSa5moUgiAVmkJxnimdE8nYkgJ3oTzM/P74hijud5fOtb3+Lhhx9e\\n93lvVMWmu7t7WRtnampq073RNyNuBMUdRCKRWBEUR0ZG6OvrW9ePENYunw4PD0MgwgvnXqe5pYVg\\nQOXonn6O79tNMrZc33QiV+Pp4RxhVcJ2PSayGu872EoksPLP7jgOo6OjW+prrIWKYS/rLSmSSM28\\nIuF16dIl9uzZc900K6empujo6HjDvdJYUCEVVkmFFSTRz0Jg5QhDUrYA8CR/zlIzXTzPH8F4254W\\nXposkq2a9DWFOd6bWGEoDH7pN6gqHOhOsVBzmS8ZRAISNc/m5N5Wbh24IrFn2zbPP/88t548ifZ6\\nGs+FaFCiZlhENYt9gykkHPboecZyGlHFpjsqMFdyKZQqlEplYrLHezsgrBiokkCzWeLMS3MoisKA\\nLLNrr8RwwSGXy5IMq/QKWbp62mk3RJpiASTRHw3J16xl7yOoSMvk2wz7iqqQKvtqSuA7cJzVbcKK\\nTFGzMW2HobYkkihwtDvB+OUpAgOtDaJMLCizUDbZ2x6lLaqSLhvEQwoV3SIVVokG/DGJ2webeW48\\nTyBTo6Tb3Nyf5PXZMookcHJXimfH8osyfXHiQRlJFBnJVOmPOCQSiR1RzBkZGSEUCu14gLr11lu5\\ndOkSY2NjdHd38/DDD/Pggw/u6DV/kXEjKO4grs4UC4UCmqY1MqM6k3WtWcSlMnDgj4XkihVeGJlD\\nkQQO9bdxaKCXcCiIaxmUSs4y6veFuQqJkNIITPNlndmSzlDryt7I2NgYPT09Gwbra0FnIsBrM2Xa\\nZBHH9Xtg9dm7XC6HIAhvaFh5NZiOy+VcDcN2aYsFGqa1lmUxMzOzrHdZ0CxenixSMWx6UyEOdcVW\\ntR26GiFF4lhPnJcmi4iCX6q7aZWg9tjpYQZ7OmhPxfA83wGkrylERzxIWF1p5FuH5bgMp/1SZXNE\\nZXdLGFHw7bLOz5Up1mwGWyPsbV++CZqamqKrqwtZkrhrqJmfDmdZKJuoksg797fTsiiy/a54grMz\\nJeZKJrt7JD58u8rF+SouHgc6Ygy2Rhq936UkpTpRqb3F/3e5XCaT8dDtGtMLGtWCh2M75DSH3UmR\\nZ7PDDcKJK0hUsg7z8z4TORqQSTW7pNMWIUmmOQiTuQolw6VmuniezanxPLf2Jxlq9d+n67ropTxq\\n8ooJtGb6GbYoCNwx1MQrUyUyFZOeVIhjvYlGqT6sSrxjbwt3DKQ4M13mcq7mi9P3pwirEtNFg4Ju\\n4big2x772oIoosj09DT9/f0b3hNbwUMPPcTHP/7xN7Qp3IyKjSzLfPWrX+V973sfjuPw27/92xw6\\ndGgb38kvF4SrpcA2wDU9+c0OTdN429vexg9/+ENc1+X06dMcPny4oYjx0ksvcfjw4VUzl2w2S6FQ\\naIgDuK7Lz599jrKrsqurjabFxX61ub8GKWTOwnIgKPsLUcGEIx1BdjeFlgVP13W5fPkyR44caRBS\\n6mXZjVAxbC4tVLBW0UG1XZcXLxcZy9QQRbipN8lgawTP83j++ec5fPgw4fByso/puEiCsCWvO8tx\\n+dGFDLmqiSyKmK7Lrww10ZsKMzw8TDAYpKenx//bWA7/39kFRMEPcrmayVBblFv715evK2gWRc1n\\nkEqigGa6RALSMoo/+Bugf//JBQ7vGWi8l/mSzlsGmlYlONXheh4/Hc4yXdAJKxIV0+HgImFkPTiO\\nw6lTpzh58mSjP+t6HrrlosrCpoL9inO6Hh7emr979uxZurq6SKZSvHi5yHC6iud59DeFuXVXEkUS\\nGypKlmWhGSbzRQ3LtokrIHhXRhYM02S+bPKzSYOE4hJRRDzPo2AJvLU7QFNExTRNDMtm0oqS10GU\\nJZrCCr+yp5loUG3cz5tVUnryon+vNIV9As6PL2Zpiqh0xgOEVInb+mOkx85z8uTJba9muK7L7bff\\nzs9//nMikZUONjewI9jUH/FGpriDCAaDjWxvYsI3zF0qEbXegP7V5dOJiQm6Ojvp6+vFdV1UVd3w\\ny9+d93U8Q4qIZTskPJcTgwkU4Qqb0jRNpqeniUajTExMNALr0mvX2ZuyLIMoMVJ0Sdc8FFlCswVC\\nAYmAIvPaFNy1p4WB1hiiKCKLIid3pbi5L7k4K7fINJyZIZlMLguIluPywkSBiZwvpXWsO87+jpXz\\nm+thoewPonfE/YxItxxenizRGhLJZDLLssR8zcJ0HNpj/nPbYgHGMlVu6UusuQBO5TV+OpxdlODz\\nGGgNc9uu1KrPHx0d5dhQLwtVg+ZIANP2NUwTofW/ciXNZrao0xkPUjV8N5DHXlugNaau61Y/MzND\\ne3v7MsKSuCiJd63wPN+S67WZMh6wty3CsZ7Eso2KruvUajVSKf/939Kf5HBXDNeDkHJlQ1XX2lUU\\nhXA4THNq7eBuOS65wCztsStzjnMlnaGBBKmgyKuvvsru/j524ZtAW7ZNSHTJLcwxv2QzWJ/1q19/\\nTRWlsEQurzFRrSFLEp99aw+hgILlejRHVCrZOTo7O3ekvP/MM89w/PjxGwHxvyFuBMXrgEqlQjab\\nXVPKbTUsPVar1chkMpw4cQLXdRuZ3EboSYV51z6RybyGIokMtUWIXtVPTKfTJBIJDh8+vOZ5lo4k\\nPDuaJWvVSEVFLudqjOR0bu0MYlsuhm7z+PNpbm4Tly1MSyXe6uMkvb29y+SyzmcMhjM6HYkggihx\\n+nKRZFhpBLiNkK+ZjGdrFDWLtmgABKgaNlXT4cKlEQYGBpZ9ZnWiRR224yGLa+veep7H06NZdNPB\\nA5oiCi9NFqkaDq0xlcGWSKNXm8/nkWWZt+5p43++NMtj5xYQgTuHmhoydevCE9BMh5enSnh4VA2H\\nJy9kefd+gZZogPmyget5tEYDhFUJ13WZmpraNrGFy3mNV6ZKtMcCCAKcn6sQVqVlm5TJyUl6e3uX\\nfV7BVXqi1wJFEulKBJgtGjRH1EWpN4mWeBhLrxEMBhss0M124VYboG/IENo6h1MONd3Cc21qczlK\\ni6o0Gc+jVqsRjUbJZrPrOn1sRertoYce4pOf/OQb+LRuYKdwIyjuIOpfjrqU29WBbDVPxTrqQXHp\\nmITrutcsXdWR8Kn2q8FxHEZGRjackaqPJCiKQtoQ2d3RhCgI2FKIWb1ArKmJ5oiKZjqIosDJQ1e0\\nY6+WeBsfH6etrY1QKNRQ9rBtm9fHytiOw0TBxXUcCrrHU4UJ+uMb2w9lNJfnLlfIVG1OT5Z4fiJP\\nWyyAbnl0RiWemi/y21cxXFuiKt3JIJN5HVkUcDxvzR4f+OXWU2N5Fsp+5m86LvGgTFARyVZNRjM1\\n3nugjbAqMTo6yr59+5jIamSrFvvbI1RMh+fGC2iWy68faWO2aDKRqyEKsKc9Smfc74vFgjJtcZVX\\nFofua4avwJKrWbw4WUAURF9cAIGgIvKu/S1UcmlaWlrWJBB5nkdBs7Acb/E1S3iex1ReI1O1iAVl\\ndjWHGmXSdMUgrFyR/osFZdJlk/0d/vls2yaTyayr+7tV3LY7xenLRWaLOrGAzMldKYKKxOilyWWz\\ndptF/ftyrfKExWKRy5cvc/DgwXXlCTeSelt6zwqCwDe+8Q2i0Sg/+9nP+MAHPsBPfvITkskkfX19\\nJJMbO8/slCF6/TVfL9Lbf2fcCIo7jEgkwmOPPbYqq3O9TLEeMOtjErFYDMdxtpUFNz4+Tmdn56YX\\nDEEQCMiizxxUJJJhBUn0F2lZFKiZDncMNa34nfrCpGka1WqVW2+9dcUGISvnmCnoNEVU3zi2ZPCW\\nwSb6mkIriB71n3U1mh9fKlHVLV7LmqiOy1TaZToNR1pEArjogsr/+dkZjneFlwXTwYhEUhSZLlsY\\njsDrUwXOTpdQF8dX6qMjrufxwkSBmYKOstjHGstU0UxfDSiiysyXdOaKOpJdo2BJzNTgP1+dY6Zo\\nsFC5Qpgay9R4eapIRzxAWJE5M10iXzMZao3wweOdHO2Oc+dQM1XTYTxbBVGgKaKSKevMl3QOdsbo\\niAfwgLJm89pMGWHh8ooqRB2e53H6cpFLCxUEQfBJN/tamMxrnJkuEVz8e84UdO4c8jc7sYCMbjuA\\nH2TrZJY6ZmZm6OzsvCYXlM0iIEvcPrD8HrIsi1KptCn1lu3C9PQ03d3d26KfWr9ndV3n2LFjvPji\\niw23ikKhQKFQ4N577+Wee+7Z8JzbZYheJ/iNjY1RKBR2VDzgFw03guIOYmZmhrNnz/L1r3991ePr\\nDejXj01MTHDs2DFs275mO6b1oGkamUzmmuevTvYn+clwlpJu47oe7znQQiqsYjkevakg3esYDg8P\\nDzM0NLTqezjaEydXtVgo++opu5pD9CxKttXJP6vB8zxeLM6QnivjyDWiEYmwpxNRJdrbwkS8Mrs6\\nepAFj66u2JVdvmkxvFDk/HyNyYJJUoXhvIUiuAwmRJ57FY40i3TEFC4U4MV5m1zFQhJFTEMED8KK\\nRLVSRQypmLbNSLrE/31hmEA0SXFshNaIgr1oN1XUbBRJYFdTiNmCjmX7XpY100aRRMq6w3demiES\\nkGiNBjjSHeenl7LEgjKO66FIIrLnMZnXGcvUsBwXx/WYTLvc3hFfkzW8UDa5MF+hIx5AFARKusXP\\nx3KUNJv2WKCRDc4UdIqaP8Yw0BJhuqAzV9YREEiFlYZyjOu6TE9Pb1iqncprzBZ1QqrEUGtky6XV\\nmulw5uIEUrwV2/V8UfMdhm3b2xKEr5Z6i8VifOxjH+M73/kOf/u3f7slmbXtMkSvfwd/+tOf8pWv\\nfIW/+Iu/4KMf/eg1n+eXETeC4g7iK1/5Cnv37l1h9lvHWgP64N+0mqY1gkg949ouXLx4kT179lxz\\nkO1Khrj7UDuFmoUqi43FdiMUCgVs26a5uXnV4xFV5j0HWylqFpIgkAwrmzqvIAj0pkL84FwaVRQR\\n8H+3WLNZyGTZf6ifkuVxvDdBInGlJ/bsWI55RyDjghIOUQH6OwVcBHrbfe3OaECirz3Cq2dmCUcq\\neLkyjgsVC1pDIrbnkckXmc+62LbFz84aeK6H5OVZKDnMLYDtQVoD24WYKpApOYiChIyN7rjgiQiC\\nSFj1DXwfO7tAU1QFfAWWlkVpvPZ4gIsLZcaztUWFGoNM1SQnabQk+tldMWiNBqiZDh4eYUXyHThs\\nv6Rd/ywjqky2auJ5sJTg6wm+eg34vb1b+1NM5GpIgsBAa5iA7N976XSapqamdWc9Ly1UeG6sQESV\\nMB2HyZzGuw60okrXdq8VNYsnzi9w4dIsvX39FC5meNvelms+z7Vibm6O9vb2HSklzs3NvaGAu92G\\n6J/4xCfYu3cv//Iv/4Lnedx3333ASn/LNxNuBMUdxN/+7d/yqU99al2nDMuyVj1WLpdxXZe2tjZc\\n193WLDGTySAIAk1Na/fQ1kMypJAMbX4A3vM8Ll26tOFCoEpiY67wWnC0J85QS5jRbA3DduiIB5G9\\nKpGAStXxFVL2tV+ZzdQsh/GsRkcswHRBBxWm8zoeEqoECP44giyJuIjkDZdQMMjJ3SrnZ8uUDYfe\\ntgT3HuukZrmoskhbROWBb71AUyqJJUp0qi6vz5VxHYeAIuBZDrYHC1WXvqTE5ZxvMmy7HgFJAKuG\\nJHiUCwKHmvxNkFlyGC5K9CcVRosiuAIdQY/RWY2C4dIcEkmovhfiK5dzJCJBRtJVQKA7GeQtu1Mk\\nggp4fsBVZb//2dsUQhRgNF0jHpTRLIemsNpgxuZrJj+6kMF2PFzPI1M1uX2gCd1yePylUVq7+3Dn\\nyuxtiy5jpBZqFmXD5pnRHJ3xIIokAgpzJZ102aQ7uTZpqqRbZCsmkijSmQigSCJnpktUq1V6mqP0\\npMLMFnUmcxqDrTvL2JydneXo0aM7cu7/+I//4Ld+67fWDTjX2xD9LW95C5Ikcf/99zM7O8sXvvCF\\nN21AhBtBcUdR7wWu56mo6/qKx13X5eLFiwQCgUbtf7uyRNd1GR4e5vjx49tyvs1gfn6eWCy2I4LK\\n4Gc/79zfStdcGc/zg16bl+cz7zlONBJekXHW/+cBfU0hXp8tI4tg2g4eIpbtM2cPdcYIKCKu6+G4\\nLs1hlUPdcQKyyNv3tnCi7wrB4fSlSXRXQLc8ArLLpXQF3XKQRRFVEggqEprlEJQlBtqTRMoGswUd\\nwwZB9MhYcHNviv2dUboSfgm6o+aPHfQmgziOxenJIi+M+gQc0YNZwyDZGiAzv8CYYeI4HqnFPcXY\\nmMfMmMy+1hCtDpyfcPEEkc54gC7ZQ1UVSEBOM+lJBDnSnUBa/JxevFxEFgVSIYWCZnN6okBQFhib\\nK7BgSiQ9iZcuF9FMpzE/OZap8txYAQR4baaM6XgMLfogbrS8Zip+EHY9F9eF1pjK2/a2oFkOlUKe\\n3b0+11SR/P7nVjGaqXJmqoTreezriHKgI7bi3iiXyyiKsiXf0I3geR7f/va3+f73v7/u83baEL2+\\npvzN3/wNqqpy6tQpDhw4wO23386f/umfcvHiRf7qr/6KlpaWVc/9y44bQXGHkUgk1nTKWItoMz09\\nTVNTE5lMBmBbyTX1eclrEcR+I3Ach7GxsW2Vj1sNN/UliAZk5ksGVq1IR3Mz8ejqGUVQkRhoCXNp\\noUpEleiMB5BTQY50xQmrMoos0BkPkljMhu8+1M5/vDhNxbRpiwaIBmR6lxBPPM/j9ZEp3jLQykje\\nYKaoY9gu3ckgluNR1G1cFxBE9rVHuXOomUdOT9OVDLG7OcxMQWO+rLOrOYSHr5AjADXL40RfEwc6\\nYvzwfJpQOEo4YFA2IaebxGQQwwkSbQl2h2UqhoPrepiOR0KE5qjK/oEElmVxwrIwDAsWB+a1aoUU\\nNlHZwq7kOP/aZZ/M5Ho8PekQED10VySjg+4IzMxnsE2Nm/pTGLUSIUnilXGNoZSMKEmcGs/TFFFR\\nJJFDnTFemSoRC0hkKiam7TJf0mmNqstEwsEvkX735Rk002VXc5hYUGa2pDNb1GkLCZzWHWRFRbcc\\nLNelNbY1xaXZosbPR/OL5WhfkFyVRfZcpe40MzOzY7JrdbGD1tbWLZ9jOwzRRVGkVqtx7tw5jh8/\\nzmc+8xlOnz7N7bffzgc+8AEefvhh/uVf/oU/+7M/2/Lr/EXGjaC4iJ1ysF5N/7SO1UYydF1ndnaW\\nEydOkM1muXTpUmMcYr0Zqc0o0Oi6zvz8/JZtmraCy5cv09XVta3ycatBFkUOdsbY3x7h1Klh9h9a\\nnY1Zxy39SZoWffv2dUQZao0slvtW4mh3nKAi8vpsBQE41BVbNkifyWRIREOowRhDnQlOjeUXRyBc\\n39svICPia6MmwwoBScRzPWTZ9/mbzOtolsOz43lu351koSwgCB67W8PsaYvgeh7pikFQErA91w+k\\nWZN4JEKhZvEre5rQLZf/97mphgJNQbd47wHfo3KzGyDNcnjyQoZgU4npnEbZsNnVHMSwHTrDcGpU\\nQ5BUbMvGrOmUahZjYxo1w2JsQiOvXpGGC5gerw6XMByBvqTK06+VuTCucsfuBAHVJ05pNjw1WmIi\\nW0OWRPKaxbHuOJIgYDkuQSPHW/d1kjNsZEnkzsGmLZXXAeZLJsFFs2aARFBmKqcvC4qO45DL5bbN\\nNu1q1GXd3gjeqCF6JpOhpaWF7373u3zwgx/kN37jNwB4xzve0bjGkSNHOH78OL//+7+/qgH6Lztu\\nBMVF7JSD9Xrl09UyxUuXLjXKHIcPH8ZxnGUDyFeb4tbp3kvPI4riqgF0fn6elpYW8vn8imM70UMw\\nDOO6B+GpqSna2to2DMKiIPiampvoTwmCwL72GPvaVy4QnucxNjbGHUcO8vREhaphEw/KiKJARJU4\\nP1dBEEQOd0Xpawoxkq6RrpjcNdTMa7Nlzs1VCCoifbEwfakwo1mDz7+9k3hIWaalGg8qzBQ0JFHE\\nsi0UEbpSEZojKl2JEPMlA0UWsV0XF+hKBClpq5O41sL5uTJVw+amniQhWeYnIxnKhsdtu5up5ufp\\nbklgyBHkgEi2aDDUH6atL0V7TKUSzVDUbFIhhbJh0+K4VHWT1oiM57o4rsNcUaeo20QsE9u2Ob9Q\\nYy5rEDJtpkoOkuDx08w8zWGRNkPFMyq0tbXRGTb9aknFZEZfeV9vZlMYVEVM9wrhTbdd2mLLWxLp\\ndJrW1tYdGTWxbZsnnnhiS0zRpXijhugvvvgijz/+ON/61reWZY8Ap0+fprW1FVVV+fKXv/ymDIhw\\nIyg2sFMO1olEgtnZ2VWPXZ0p1gkwqVQKx3EIh8Nb+oIuHZav/8zn843h/2w2u2Lo+OqB46sz0fWG\\n59fqdw4PD69QktlJ2LbN9PT0jtj8rIV0Ok0sFqM5EeU9B0LMFXWOdse5lK5S0myKmkVHPMD+zhj5\\nms2Hb+7mUFcMx/X4/msLTBd8SbeORICALKFVDQRBWCEu/taBFN8/axEPKqSzeXqa4/Q2hehLhZBE\\nAQ8YaAn75rx4BCR/4P9aWIQVw1eQkUSBg51RijWTgCoSkmEkX+XOfUO0RAP831dnSVdMpgs6o5ka\\ndw42c8dgMy9M5JkvGyRDCsd7m/jh+QzB4BVj6Zqn0t3VRtOiTmw5WCAjFhmKqnRXTcayNZIhlY/e\\n2o1ZTFOr1ejq6loxPK9p2or7ey1ZwkbQFCQ8zeBiESRJJBJU6E9EMU2zQWKbnp7esVnIJ598kjvv\\nvHNHepXXgttuu40XXniB+fl5zp49y+///u9z+PBh3vWud/GFL3yBf/7nf6avr49Pf/rT/6Wv878S\\nN4LiNWArDtaxWIxLly6temxppli3bjp27BiO4zQ0I7cCURQJBAKNL6DruoyMjHD8+PFl2qurYTVX\\nhKUKHvUsdenjq2lNep5HpVJBVVVqtdq65d/tylInJibo6enZEZuf1VDPEo8dOwb4wuK7F8kl+zqi\\nVHSHd+5rYTRTQ7ccbu5LsK89iigIiJLAu/a18NLlgj+HKIpkqgZtsSCRwMpNRiqs8qGbOumMCjx9\\ntszegTYUSeTOIX/EpSmiEFQkDMslqIgsVEz2t0ev6bPtTAS4nNMIq77iTU8qSCqiMp/OsL+3lbft\\nbeEHry/geAJ722N4HuSrNmemS+xpi/Ire5YTM/a2RTg3VyGiSmiWS3s80OjT1oXkz8/5JWlJFBb7\\nsBKTeQ17boYTx49vKYgslSWs36eGadGXcJkuGkRkh56ow/zUONNL7nVd1zlz5swyWcK1NoJLj23m\\nHn7wwQf5gz/4g2t+L9uJf/zHf+RTn/oUX/ziF7nvvvuwbZtHH32U119/nUcffRRVVdm3b9+azj1v\\nFrypguJ/hYP1ej3FpUFxfHzct/1ZdK3YzoV9cnKSlpaWDQMisOGw/EaoK3icOXOGwcFBVFVtLDqr\\nBdSre6qbWYiuLpuBb76cTqeva6l2YWGBRCKxas9OFkWSYZFkWKEntfrnHg3I/PbtfXzr9DRFzaYr\\nEeTe4x1E1NX/9gFZos3N88m7hojGk0QDV0x7Q4rEO/e1LMrDORzpinOw89rKXwMtETTT5dxcGUGA\\n2waa2Nsa5tSpcU7echLbg6rpoMqiz1QVQBDAdj1sdyUr9HhvgkRIIVMxCch1ZmuBrkSQkUwNVRK5\\nc7CZc3Mlzs6UedueZna3RHhlIkObsHUGaF2WsF5Cdz2Pnw1nmTKCKOEwRcdhX1uKPW1X+onDw8NE\\no1Ha29uXVVo2knZb7R6u35u2bfOv//qvRKNRTp8+zfDwMPl8nmQyyeDgIB0dHWu+h424C4Zh8IlP\\nfILTp0/T3NzMI488wq5du9Y8n+d5BAIBQqEQv/qrv8pNN93Epz/9aT73uc+haRqO4yzb3L6Z8aYK\\niv8VDtZXeyouhSAIjYyqUChw/PhxHMfZlAPGZmEYBrOzs9etpFgvz0YikWtm8S3NUpcuOkuz1KsX\\no/oXWdd1FEXhlVde2XRglSRpy1mq53mMj4+/4dGWvqYw/8+7hzBsF0US17XM0jQNTdM41NG66utO\\nhHwbpa1CFASOdMc53OUHU0EQmJmZobW11f+sPI9kSCYgCxQ1X7yhtjjjeLXQfP18g60ReptCPHEu\\nTVm3UCWJiwtVqoZNf1MYVRZpjQXoSlqEVBlREDArBbyOrTM0r0a2ajK1WKYG343jpcliwzfSdV3S\\n6TQDAwPLZAm3gqX3sKZp/MZv/AY/+clPOHr0KJlMphEY3/e+9/Hrv/7rq55jM9yFr3/966RSKYaH\\nh3n44Yf5kz/5Ex555JE1X5cgCHzmM5+hWq3y53/+5zz00EN85CMfoampid/8zd/k3nvvbQTpN3OW\\nCG+yoPhGsRUH63g8vuZIBvCGBb83Qp24s53nXA+u6zI6OrolLcWlWepmdoZtswAAIABJREFUsto6\\narUaZ8+e5aabblq39Lua5+TSa19LhprJZEgmk9vSIxIEYVMyaOPj4/T39+/4YHX9/J7nMTk52Qj8\\noiBw11ALpu1xMV2hbNic3JXkfQda12TuAqTL5mJv1Q9KYVtirqST16yG1Jxpu0RUCcu2KNVMbm5K\\nbNv7cV0QlkxLSqKA6+G7pAi+d2lTU9O2BIOr7+Ff+7Vf4x//8R/5xje+we7duzd1js1wF773ve/x\\n5S9/GYAPfehDfP7zn1+3f1wviX7uc5/jox/9KH//939PLpfjySef5Bvf+AbPP/88//Zv//bG3vwv\\nCW4ExUXslIP1euVT8MkhqVSKSCSy7YLfhUIBy7Ku6xDu5OQkbW1t15VQMDIywuDg4DKdyWvFUjPc\\nqwOqrusrMtdCoUAoFOLZZ58FWNGHWs9eaCtZqmEYlEol9u/fv6X3txXkcjmi0eiyv2UyrPCB4x2L\\n5sXiJiXXvGUD/IIAvckQnckgMwUdVRK5qS/JQtkgm8vT2ZLicFd8295HKqwQDfhG0iFFolCzGGqL\\nNLLy6elphoaGtu16S3H58mWAdUubV2Mz3IWlz5FlmUQiQTabXfO7Lopiwzv1Pe95D0AjS/zN3/xN\\narUawJu+nwg3gmID9957L/fee++Kx7u6upYpULz//e/n/e9//6bPu15QNE0Ty7Lo6+vbdsHvegZ6\\n+PDh6ybZZJomMzMz17WvVyqVsCxrTU3VzWKpGe5GmJ2dJRaLsXfRjupqe6yrf2qatuLxq9mSG2Wm\\ndRNhy7K29T5ZDxMTE433uBSyKBINbP76LVGVSFAmUzEIyBJlw+amvgQHOmKYtovjefz0UpbxbJVq\\npUyyf3WVlq1ClX1nkDPTJcq6zZHuOAc6/X5ifcOzU2pLDz/8MB/72Mf+W8imvfLKK0xOTvI7v/M7\\n3H///cuk7OqG32/2gAg3guKOIxQKrSrlBn6GEwqFGsSa7SxxTk1N0dTUtMzdfqcxOjrKrl27rlup\\nFq44b1wvuK7LxMTEMqumN9qHWo0tuTSgFgoFstksruuSy+WwLGvZCI0kSZvOUOv32UaLdLlcRhCE\\nbQkWAdknAV2Yq1A1HQ53x9jd7N+XqixyYb5MtmrSqjqEOxNYDpybK3Nz38b+gptFJCDz1oGVWr+z\\ns7MN4+Lthuu6fO973+Opp566pt/bDHeh/pyenh5s26ZYLG64MZRlmd/7vd/jtdde45/+6Z9IJBLs\\n37+fD3zgA6t6Mr5ZcSMo7jCW9meWLkT5fB7TNAkEAo2y6Xbt0kzTZGpq6rpmbNVqlXK5zL59+67b\\nNXO5HLIsE49vX6ltI8zNzdHc3LytCj1XsyWvxsjICENDQ/T09Kw4VvfsWy2gbnWmT5blhhtGNptd\\nEWS3cp9GVLmhk3o1qqZDQBbJzGbo7e3F8iQqxuqWatsJz/OYn5/f0AZrq3jhhRfYv38/icS19Uc3\\nw12oy7299a1v5dvf/jbvfOc7N9zonDhxghMnTnDx4kVGRkY4f/48Tz31FHfccceNoLgEN4LiDmO1\\nG7Uuyn348GFGRkaYnJwkGo2uOyh/LQtRfWj+emZsdSuq61Um8jyPkZGRDXu62wnXdbl8eW1D351A\\n3Wj6tttuW/X4UoLQVvRs61nq1YHUMAxEUWxkpkufs5az/GaISqspz7RFVV4ez+J5Aoqski0b7G3f\\nWScM8Dem8Xh8x+ZaH3zwQT75yU9e8++txV340pe+xC233MI999zDZz7zGT7+8Y8zNDREU1MTDz/8\\n8KrnchwHSZJ44okneOihh3jmmWf4yEc+wt13380f/dEfNb63N3AFwlpef2vgmp58Az6OHz/OU089\\n1Qhs4+PjAPT29qJpGqZprrvb32ghWvqzLq128OBBVFXd9rLsashms0xPT++Y3c5qmJ+fJ5fLXVc3\\n9qmpKXRdv67l2vHxcQRBoL+//7pdc3h4mHA4vGFZ8Wpn+bV+biRHKEkS52ZLzBgqwWCIoZYQR7pj\\nqEs2iDshR/jqq6/S19d3zZncZmAYBnfddRcvv/zydROTWA+HDx/m7/7u74jH4zz++OMNwe/1ZC1/\\nCbGpm+e//q/1JkA4HEbTNCKRCJqmkU6nOXHiREPK7Vq+lOstRLquMzk5SSqVYnx8fMUsH1xRnNlI\\nxm2z/SfP8xgeHr6uAdF1XcbGxrY09vFGrjk5ObljpbbV4DgOs7Oz17UM7jgO6XR6zcx0Ka52lr9W\\n1MlJuq5TqZzlHTft9u9Xx0HXNMql0jXLEa73c+nm0LIsarXajpXeH330Ud773vf+twiI58+fJ5FI\\n8O53vxuAkydP8ulPf5r777+f++67b8dIRr+o+K//i70JEIvFKJVKhMNhLl68yNDQEJ7nbckncb2F\\naGpqio6OjlUZg7A9LMmrF5q6hFupVFpVzm0nyqkzMzO0tLRc17GP6elp2tratqz0sxXUGafXsww+\\nMzNDR0fHdWEh1uUI5+fn6e7upn0Nb8DV8EblCC3LQhRFzp49u6mAeq338kMPPcRXvvKVa/o8dgqt\\nra3s27ePv//7v+e+++4jFosxMjLC1NQU0Wj0mvRx3wy4ERSvA+pjGZIkoaoqiUQCx3GWyZS9UViW\\nxeTk5LrKNdvFkqwvNLquMzc3R29vL7VarTHDt3ShWorNZqfr9VEdx9nwfW43HMdhamrqumaJrute\\n92t6nsf09PSOe19efc2ZmZlrvuYbkSP0PI/nnnuOw4cPA6zIRjcjR7ha4KxUKvz85z8nEAgwNjaG\\nqqrMzc2RSqU23MBtJOv27//+7/zxH/9xg4X6+c9/ns9+9rOber/Nzc38zu/8Dn/913/N2bNnAb8s\\n/4d/+IcADdGQG/BxIyheB9QzxaVSbpIkbetufGRkhF27du1oueZqluTCwgK7d+9elRV5Neo7+9Wy\\nVMMwqFQqKx5fbexA13VkWWZiYuKaCR1bxfT0NB0dHdc1S5ybm6OlpeW6XjOdTpNMJq/rNXO5HLFY\\n7Lpes1QqEYlEtlw2XEuOsFwuMzMzw/nz54nH43zlK1+hUCiQz+f5oz/6Iz784Q+ver7NWtJ95CMf\\n4atf/eqmXmN9CN+yLEZGRujt7eWRRx7h6aefplgscvTo0cbw/42AuBw3guJ1QDweZ25ujv+/vTOP\\naurO4vg3IaAGCARkURAX0JGiQj3YcSu1VWilirU6UtspOJZxpoo67VGr0zme0Rm3mS7n9NjpaB3R\\nmR7Eqq2iBmxxdKzLASla0GoNS5A1GEjYzcabP/C9sgSykDxQ7uecHBLyeL8XTfJ99917v3fq1Klw\\ncnKy+5lZY2MjmpqaeG2HaG1tRV1dncX5rr6e2RuNRrS2tiI/Px8hISGdotaWlpZOX1KmJnf0FI2a\\n80Q1Go28j6NiGIb3KlegvVmfjZ74oqysjLMz44uKigqrfXk70pMdoZ+fH6ZMmYLo6GicOHECI0aM\\nsGh/toykMwd7wr1+/XrU1dWhoKAAPj4+SExMRFxcHLy9vbvNciXaIVHkAb1ejw8//BBZWVl2N/xm\\nGAZ3797FxIkTec0LyOVyhISE8LImm0etqqrC2LFjrbat662y15wnqk6ng1AoxI8//mhWTO2VR62p\\nqYGnp6ddeyHNUV9fDxcXF6s8Z/sK20PJZ58p2+juqKrle/fuwcPDw2JBBCwfSXfixAlcunQJEyZM\\nwMcff9zpbzqi1+vh7OyM+vp6nD9/HpcvX4abmxtkMhlSU1ORnJyMrKwszJgxw/oXOAggUXQwRqMR\\nZ8+eRUJCAndJw55RIms5xueUbI1Gg7a2tj5bq1lDa2sr1Gq1TT1VbB7V2sIco9GInJwcREREdHOd\\nYfv5Ghsbu+VSe6qQtOSnQCBAaWkpr9W8QHuUyGfbB9BeGGbJpXd7olQq4e/v77CTuSNHjuDNN9+0\\n+34XLlyI5cuXY8iQIdi3bx8SExPx3//+1+S2KSkpUCgUmDx5MhYsWABXV1e4uLhwPqcqlYpXP+TH\\nDRJFB3PhwgWEhoZyZ+D2zJ3o9XqUlpbyXoxx7949XpvmgXYLOXa0D1+UlZVh5MiRNkdPPeWeDAZD\\nj6OwdDodDAYDbt68adJkvLfiJFvzqGyzvqen/WzVzGE0GqFSqRAcHMzbmkB7de3kyZMdsm+j0YjM\\nzExueoWlWGLr1vEENCkpCZs2bepxf2FhYbhx4wYOHDgAtVqNbdu2YcWKFQgICICrqysJohlIFB3M\\nvHnzoFKpUFBQYPfimuLiYgQFBfFeACKRSODq6njHEZampia0trby+mE2GAx97hG0ZRRWbm4uQkND\\nIRaLu7XPdIxGzdm3dcyjmvtZUlKCoKAgm1+nLSiVSvj4+PBqQN3U1GSz848lXLlyBZGRkVb7DVti\\n61ZVVcVdkk1PT+/x8i/DMJg1axZmzZqF4uJiFBQU4Pjx41i9ejUmTJiAmTNnYvny5bxemn/cIFHk\\nAaVSiYMHDyI3Nxeenp6QSqXw8PDg7nt6enL32cdisRgCgaDHM//i4mLU1tb22JPoCIxGIxQKBa+R\\nKfCz6TffUWJAQACvlXlqtRouLi7cCUdf22d66kft2HKg0+mgVqtRX1+PkpISAN1nS5prpbHFD7Wi\\nosJhEVtva/alwMYcqampWLlypdV/Z4mt2yeffIL09HSIRCJ4eXnh0KFDJvdVU1MDiUSCjRs3Ijg4\\nGO+88w4WLVqE8vJypKWl4erVqzZZzw0myOaNB9ra2tDS0gKNRoO6ujrU1dVx99VqNXdjy7c1Gg03\\n3wwAXFxcOCGVSqVwd3dHRkYGlixZgokTJ3JCyv50c3PrVVBtpbi4GCKRiNeoQq1W4/79+wgPD+dt\\nTYPBgOvXr+OZZ57hVRTz8vIwfvx4XvPDCoUCQqGw0/9px/aZrn2nfbUhFIlEnBXhpEmTeLEhBNo/\\ng9nZ2fjlL3/pkOi0ubkZ8+bNw40bN/pt/BLDMDh58iSuXbuGo0ePYseOHZg/fz5cXFzg7u6O27dv\\nw9fXFz4+PoO1YZ9s3mzh2LFj+POf/4w7d+4gJyenx6hozJgxcHd35/I+ubm5Pe5TKBTCzc0Nbm5u\\nVhUWsF807PggVlBPnz4NPz8/SKVS3L17t5OgqtVqNDc3c/twdnaGp6cnJ6hsVGrqJpVKIZFITApq\\naWkp8vLy8Oqrr1p8/H2FtZDj098UaB8MGxgYyKsgNjQ0QCAQ8CqIbW1tJi8R26N9xpR46nQ6NDc3\\nQ6lUYujQofjxxx9Nts/Y04aQpaamBsOHD3eYYJ0+fRoLFy7s13mEAoEAc+bMgVwuh6urKy5cuID8\\n/HxEREQgMDAQixYtQkFBAbctYRoSxS5MmjQJX331lUVGuRcuXHBonot944rF4k4GzSkpKTh27Fiv\\n1Z+soGq1WqjV6k4RKiuecrm8W5Ta1NTE/a1IJOIu8yoUCoSGhqK0tLTbZd+OgmrPpvkHDx5ALBbz\\n6s2o1+uhVCot8v60JyUlJRg7diyvayqVSgwfPtyu4m/OD1Wn06G2thZTp041+T7pKKhdo1NbbAjZ\\nn2VlZQgKCkJDQ4PdbQgZhkFaWprFjfWOoq2tDVKpFC+++CJef/11uLi44Ouvv8Y333yDYcOGYdWq\\nVQgMDOSq4AnTkCh2ge+oxBZSUlLMbsN+2IcOHYoRI0ZY1TfFiqJOp4NGo8Hly5exZ88exMfHc+JZ\\nVFTEiSn7u8bGRu6sXygUcoJqKiLt+tjDw6PTWb/BYMDBgwc5Kyq+uH//PkaNGsV7AYjBYOC1+pNh\\nGJSVlfHe+lFRUYGRI0f2KEb2tCHsmEM1Go1obm5GfX19j+0zttoQVldXo6Wlxap2oZUrV+LMmTPw\\n9fXlrNc6wjAM1q9fD5lMBrFYjEOHDpk1cxAKhTAajfj0009hMBjw/PPPIy4uDqtWrYJer+eKayhK\\n7B0SRRsRCASIiYmBQCDA7373O6xataq/D8lusB+aIUOGwM/PD3V1dThw4IBFX6Dsl4xer0d9fX2n\\nvCl7v7S0FDdv3uwUtTY0NHQSVIFAgKFDh3KRaU+iyt5nI5O+fOD1en2vswsdhUKhwJgxY3hdU61W\\nQywWO6wS0xQMw6C6utph7kA9DWsuLCxEcHBwryeGXdtnzNkQGgwGZGVl4ejRozAYDHBycuIm2Eul\\nUqxdu7bXdpMVK1YgOTkZCQkJJp/PyMiAXC6HXC5HdnY23n77bZMN/V3R6XR44403UFpaivz8fJw5\\ncwZBQUGYPn06lixZAoBE0RyDUhTnzZuH6urqbr/fsWMHFi1aZNE+Ll++jICAANTU1CA6OhoTJ05E\\nVFSUvQ91QPDb3/7W4m3ZD5yLiwt8fHzg4+Nj1VoMw6CpqQkzZszAvn370NbW1klQKysrcfv27U6C\\nWl9fz11GY/NypiLRrnlV9guMzZ3t3bsXc+bM4TVKbG1tRWtrK7y8vHhbE2jPEfM5FxJovxwulUp5\\nHafU1taGBw8emL00bUv7zDPPPIMtW7YgKioKX331FYRCIfeeNDfJPioqipuraopTp04hISEBAoEA\\n06dPh0aj6dSW0RPDhg3Dc889h9bWVsyePRsZGRk4cuQI9/oHaYGNVQxKUczKyurzPtjSbl9fXyxe\\nvBg5OTlPrCjyiUAgQF1dHf70pz9Z3frBjsZiI1RWONn7NTU1+Omnn7oJKnv2X1NTg4yMDJOC2lOE\\nyrrk2PpFo1AoMHr0aF6/qNi8MZ9FPUB7Uzqf/rxA+wBsqVTqsKKp/Px8jB49mnMD6sl6zVpMWb9V\\nVFT0KooqlQrbt2/Hhg0bEBQUhHHjxmHNmjX47rvv6LvJCgalKPaV5uZmtLW1wd3dHc3Nzfjmm2+w\\ndevW/j6sJ4aOXzLWwI7G8vLysjry2rJlCyZMmIDFixd3u+Sr0WigUqlQWFjIVQGzuVSdTgegXZBd\\nXV3NCmrHXlSlUol9+/bh448/tvq19oX79+/z3qzPVkTzafoAtIuLI11zUlNTHWLrZgt6vR4KhQLT\\npk3DqFGjkJSUhBEjRuDatWuc0TtFieYhUezC119/jbVr1+LBgwd4+eWXERERgXPnzqGyshJJSUmQ\\nyWRQKpVYvHgxgPaCkNdffx0vvfRSPx850RfCw8OxdOlSiEQiqwteGIbhLvt27T1lhbWkpKRbL2p1\\ndTV8fX0xa9YsDB061KSY9iSow4YNs6kXVavVorGxkfeCsrKyMt59TrVaLXQ6ncMiYr1ejwsXLuDD\\nDz+0+74tsX7rSltbG7Zt2waRSISMjAwcPnwYTz31FPbv3w8A3Mg6oneoeZ8g+oG6ujrMnTsX169f\\nh1AoREtLS6fcadf7XQW1tbUVQLsgdxVUiURi8lKvVCrFP/7xD0RFReGll17iLWpgzRCmT5/Oa6RS\\nUlICZ2dnh4lxZmYmzp8/j08//dSmv1coFFiwYIHJ6tOzZ89i7969kMlkyM7Oxrp165CTk9NtO7a9\\n4saNG/jjH/+Ihw8f4qeffkJ8fDyefvppjBs3DjNmzCAxbIea9wlioCIUCvH5559zRSesuYM1OSn2\\nhLY3t6TKykpOSFUqFbKzs3Hp0iX85S9/AdDehtDRLaknkwf2d+7u7lZHqFVVVQ6dTGEKhmGgVCod\\nakmYmpraqzF3byxfvhwXL16ESqVCYGAgtm3bBr1eDwD4/e9/j9jYWMhkMoSEhEAsFvfYhsW+Bw4f\\nPozExER4enriP//5DyZNmoTVq1dj1apVmD17tm0vcJBCkSJBDBL27dsHlUqF999/n/syffjwYTdz\\nh64mDx2j1Obm5k7mDj25JbGPJRIJ3n33XaSmpsLf39+u5g69UVdXh6qqKodNc9FoNFiwYAFyc3MH\\nRCN8TEwMDh48iHfffRfvvPMOZsyYgQ0bNmDatGmIj4+nS6ftWPTGI1EkiEHC/fv3IZFI+mwS0NEt\\nyZyf7927d1FSUgJ/f380NjZyf+vk5GS1uYM1gvrDDz9g9OjRDjNESElJgUajwfvvv++Q/VtLdXU1\\nvLy8sHPnTty9exevvfYatmzZgu+++45GRf0MiSJBEP3LsmXLsGnTJu4yZkdzh64iaqpIiY1QGxoa\\nOgmqRCIxKapsH+QHH3yAlJQUeHl5wdPTk4uS7GXrNn/+fHzxxRe8V/GaQ6VS4aOPPkJlZSUCAwPx\\n17/+lWzdfoZEkSCI/qWyspLz7LUHrOF4b4J64cIF6HQ6+Pj4cILa0dyBjZY73nrrRWXNHVhBLS4u\\nxvr165GVlWWxyJqzdbt48SIWLVrENdm/+uqrNrd56XQ6ODs7c8dGDfscVGjzJLBx40acPn0aLi4u\\nCA4ORkpKislLQpmZmVi/fj2MRiOSkpKwefPmfjhaguiMPQUR+NlwfPjw4T1eFszMzMTJkye7Pc+a\\nO3QU1I73q6urcefOnW7mDgaDgduHu7s7ampq8Oabb1olNOZs3QDg2WefxZkzZyzeZ090tbkjQbQO\\nEsUBTnR0NHbt2gWRSIT33nsPu3btwp49ezptYzQasWbNGnz77bcIDAzEtGnTEBcXh6eeeqqfjpog\\n+o+MjAyTvYmsuYO3t3evE2ZMwQpqQ0MDioqKrPaqNWfrRgwc6ELzACcmJoYr258+fTrKy8u7bZOT\\nk4OQkBCMGzcOLi4ueO2113Dq1Cmb1jt27BjCwsIgFAp7nRE5ZswYTJ48GREREQ4teycIa3FEsz4r\\nqFKpFJGRkQ4pXrl27RrCw8Mxf/583L592+77JyyDIsXHiIMHDyI+Pr7b7035JFriqG+KgTRPkiAG\\nC1OnTkVpaSnc3Nwgk8nwyiuvQC6X9/dhDUooUhwAzJs3D5MmTep26xjt7dixAyKRCG+88YZDjyU0\\nNJRX02ZLI9PMzEz84he/QEhICHbv3s3b8REEH0gkEm6YdmxsLPR6PVQqVT8f1eCEIsUBgLmpHYcO\\nHcKZM2dw/vx5k0lzW3wS+4q95klaEplSzpR40qmuroafnx8EAgFycnLQ1tZmdd6TsA8kigOczMxM\\n/O1vf8P//vc/iMVik9tMmzYNcrkcJSUlCAgIQFpaGlJTU3vc50CaJ2mJMXXHnCkALmdqqyjW1dUh\\nPj6eG+775Zdfmpx/5+TkhMmTJwMAgoKCkJ6ebtN6BGHO1u348eP47LPPIBKJMGzYMKSlpVHVaD9B\\nojjASU5OhlarRXR0NID2Ypt//vOfnaZ2iEQi7N27Fy+++CKMRiNWrlzZq73V4zZP0p45UwDYvXs3\\n5s6di82bN2P37t3YvXt3t4peoH1g682bN21ehyBYjhw50uvzycnJSE5O5uloiN4gURzgFBYWmvz9\\nyJEjIZPJuMexsbGIjY3l5ZisnSdpj8jUnpw6dQoXL14EACQmJmLOnDkmRbGvmOsd1Wq1SEhIwPff\\nfw9vb28cPXrU6lJ/giDsC4ki0QlHzJPsa2Rq75ypUqnkJpj7+/tDqVSa3O7hw4eIjIyESCTC5s2b\\n8corr1i8hiV50H/961+QSqUoLCxEWloa3nvvPRw9etTm10UQhB1gB6RaeCMIh/Dcc88x169fN/mc\\nXq9nxo4dyxQXFzNarZaZMmUKc+vWrV73N3fuXCYsLKzb7eTJk4yHh0enbT09PU3uo7y8nGEYhikq\\nKmJGjx7NFBYWWvx6rl69ysTExHCPd+7cyezcubPTNjExMczVq1e51+jt7c20tbVZvIYpMjIymAkT\\nJjDBwcHMrl27uj2fkpLCDB8+nAkPD2fCw8OZzz//vE/rEcRjhEU6R5Ei0a9YEplamzMFeo9O/fz8\\nUFVVhREjRqCqqgq+vr4mt2Oj0XHjxmHOnDm4ceMGgoODLXpdluRBO24jEong4eGB2tpam3s/La3S\\njY+Px969e21agyCedKhPkehXFi9ejPLycmi1WiiVSpw7dw6A6ZzpvXv3UFRU1OdxPXFxcTh8+DCA\\n9uGspvKaarUaWq0WQPvkgStXrgz4FhB7OhtZysqVK+Hr64tJkyaZfJ5hGKxbtw4hISGYMmUK8vLy\\nHHo8BNFXSBSJQcfmzZvx7bffYvz48cjKyuIKYHJzc5GUlAQAuHPnDiIjIxEeHo7nn38emzdvtkoU\\nLcmDdtzGYDCgvr6+T71ppqLTioqKbtudOHECU6ZMwdKlSzsdoy2sWLECmZmZPT6fkZEBuVwOuVyO\\n/fv34+233+7TegThaEgUiUGHt7c3zp8/D7lcjqysLHh5eQEAIiMjceDAAQDAzJkzUVBQgB9++AEF\\nBQV46623rFqjY++oTqdDWloa4uLiOm3TMWI9fvw4XnjhBYf3pi1cuBAKhQL5+fmIjo5GYmJin/YX\\nFRXF/fuZ4tSpU0hISIBAIMD06dOh0WhQVVXVpzXNRacXL16Eh4cHIiIiEBERge3bt/dpPWJwQaJI\\nEA6gYx40NDQUy5YtQ1hYGLZu3cqZALz11luora1FSEgIPvrooz7b11kSnXp7e2PIkCEAgKSkJHz/\\n/fd9WtMclkav1mAuOgXaxzDdvHkTN2/etHkuITE4oUIbgnAQpnpHO0YtQ4cOxbFjx+y2niXORmyB\\nEQCkp6db5Cg00KAxTIQjIVEkiCeEnqp0t27disjISMTFxeGTTz5Beno6RCIRvLy8cOjQIYceU3/4\\n8gI/j2EaOXIkPvjgA7PVygTBImAYxprtrdqYIB4X2B6ljo8FAgGEQsowmEOhUGDBggW4detWt+fO\\nnj2LvXv3QiaTITs7G+vWrUNOTo5D12xoaIBQKOTGMK1fv57GMBEAYFHCniJFgkD71A9ri1yam5ux\\nf/9+BAUFYcmSJTAYDNw+WEE1GAyQy+WQSqXw9/d3xKH3K+aMrmNjYyGTyRASEgKxWIyUlBSHH5NE\\nIuHux8bGYvXq1VCpVDT7k7AIihSJQc+mTZtQXFwMgUAAT09PeHp6oqamBs8++yzi4+O5Se7l5eVo\\namqCh4cHfH194eTkBKC9aZ6935Xa2lr84Q9/wMyZM6kdwY70Fil2HcO0dOlSlJaW0tQJgiJFgrCE\\nS5cuYeLEidi4cSPUajUEAgGMRiMOHToEPz8/LFy4EJcuXcKBAweCvdJpAAACpUlEQVRQVFQElUqF\\nv//973jhhRewYcMGLF++HFFRUdi2bRtu3boFLy8vrFq1CpGRkTAajRCLxbzk0QYLNIaJcCQkisSg\\nx8nJCUuWLEFYWBjKy8vxxRdfwMXFBTdu3MCoUaOwcOFCbN++Hb/61a/w73//G0B7zrGiogJ1dXUQ\\nCoUQCARYsmQJFixYgPz8fKSnpyMoKAgCgQCNjY1ctEn0HRrDRDgSqiIgBjVGoxFAe/8cAKxduxbN\\nzc3w9vaGv78/nJ2dIZfLIZFIMGvWLACAXq+HQCCAXq+H0Wjkclh5eXlITU1Ffn4+jh07hoqKCjg5\\nOUGr1XbKcxEEMXChSJEY1Oj1euh0Onh5eUGtVuP27dv48ssv4ezsjHPnzkEoFMLX1xfl5eVc3tDZ\\n2RkAoNPpoNVqERAQgAMHDiA3NxdPP/003N3dcfLkSbi6uqK1tRV6vZ5EkSAeE0gUiUGNVquFRqOB\\nWCyGVCrF5MmTsWzZMowfP54zAffw8MD48eORkZEBZ2dnODk5ISgoCA8fPgTDMJBIJDh//jxefvll\\n/PrXv8a9e/cgEong5uaGlpYWAKDLpwTxmECiSAxqPDw8kJeXx4nWnj17kJubC4PBgNmzZ8PX1xcM\\nw+Czzz7D6tWrcfLkSej1eshkMuh0OrS2toJhGPzmN7/B1q1bcfbsWQwfPhylpaWQSCSorKyERqOB\\nq6trP79SgiAsgVoyCKIPtLS0QCwWw2g04sqVK1CpVBgzZgyuXbuGNWvW4N69ezhy5Ai2bt1KFZAE\\n0b9Y9AG0VhQJgiAI4omFqk8JgiAI4hEkigRBEATxCBJFgiAIgngEiSJBEARBPIJEkSAIgiAeQaJI\\nEARBEI8gUSQIgiCIR5AoEgRBEMQjSBQJgiAI4hEkigRBEATxiP8DaG/juePJ8p8AAAAASUVORK5C\\nYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot_regression_3d(jitter(normalized_anes.authority), \\n\",\n    \"                   jitter(normalized_anes.racial), \\n\",\n    \"                   jitter(normalized_anes.vote), \\n\",\n    \"                   lm4, \\n\",\n    \"                   elev=30, \\n\",\n    \"                   azim=10, \\n\",\n    \"                   xlab='authority', \\n\",\n    \"                   ylab='racial')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Finally, we can compare the coefficients directly. It doesn't matter what range we used to code the survey answers, because we divided it out during normalization.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[ 0.11076786,  0.57563486]])\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lm4.coef_\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"So there we have it. For white voters in the 2016 election, the standardized regression coefficient on racial factors is quite a bit bigger than the standardized coeffiecient on authoritrianism. But what does this actually mean?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ -1.19304588e-16])\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lm4.intercept_\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-3/week-3-1-homework.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Week 3-1 - Linear Regression - homework\\n\",\n    \"\\n\",\n    \"This assignment is inspired by a 2006 [story in the Pioneer Press](\\n\",\n    \"https://www.twincities.com/2010/07/09/schools-that-work-despite-appearances-schools-doing-better-than-expected-have-traits-in-common/) which asked, what makes a school succeed despite disadvantages? The reporters performed a regression of standardized test scores vs. the number of low income students at that school (actually we only have the number of students who are eligable for free meals at school, but this is a widely used proxy for the economic status of the students.)\\n\",\n    \"\\n\",\n    \"The 2006 story explains the purpose of doing the regression:\\n\",\n    \"\\n\",\n    \"\\\"Schools with large numbers of students from low-income families — or who move often, are learning English or have other special needs — almost always fare worse on standardized tests, most educators agree. The Pioneer Press analyzed three years of test scores from all 731 Minnesota elementary schools to predict how well each school should do when its percentage of low-income students is taken into account — effectively leveling the playing field between the haves and have-nots.\\\"\\n\",\n    \"\\n\",\n    \"The reporters then visited those schools that out-performed their predicted scores, trying to determine what made them succeed despite the odds.\\n\",\n    \"\\n\",\n    \"This file was adapted from a notebook created by Chase Davis and Richard Dunks for the 2015 version of this course, gratefully used with permission.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np \\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from sklearn.linear_model import LinearRegression\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1. Load the data\\n\",\n    \"\\n\",\n    \"Load the file and take a look. Each row is one school. The fields all have abbreviated names, and you can look at the [data dictionary](http://www.cde.ca.gov/ta/ac/ap/reclayout12b.asp) to see what's what.\\n\",\n    \"\\n\",\n    \"This is standardized test score results and many other variables for schools in California, from 2012. We are going to be looking at a variable called the Academic Performance Index (API) which is basically standardized test scores. This way of measuring school performance has was discontinued in 2017, but we're going to use this data anyway, because we can closely reproduce the original Pioneer Press analysis.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Index(['CHARTER', 'SNAME', 'DNAME', 'CNAME', 'API12B', 'ST_RANK', 'PCT_AA',\\n\",\n       \"       'PCT_AI', 'PCT_AS', 'PCT_FI', 'PCT_HI', 'PCT_PI', 'PCT_WH', 'PCT_MR',\\n\",\n       \"       'MEALS', 'P_GATE', 'P_MIGED', 'P_EL', 'P_RFEP', 'P_DI', 'ACS_K3',\\n\",\n       \"       'ACS_46', 'ACS_CORE', 'PCT_RESP', 'NOT_HSG', 'HSG', 'SOME_COL',\\n\",\n       \"       'COL_GRAD', 'GRAD_SCH', 'AVG_ED'],\\n\",\n       \"      dtype='object')\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Load `apib12tx.csv` and take a look at the raw data\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 2. Looking at one variable at a time\\n\",\n    \"\\n\",\n    \"To start with, let's look at some histograms of single variables, to get an idea what the data (and the students) look like.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Make a histogram of the API12B column, which is standardized test scores for grade 12\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Make a histogram of the MEALS column, which is the percentage of students enrolled in free/reduced-price lunch programs, which is often used as a proxy for poverty.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"You also find it interesting to look at variables like `PCT_WH` which is the percentage of white students, and `AVG_ED` which is the average education level of the parents of the students at that school.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 3. Looking at two variables at a time\\n\",\n    \"\\n\",\n    \"Looking at histograms of one variable at a time cant't tell us about the relationship between variables, so let's do some scatter plots to get a qualitative sense of the relationships.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Make a scatter plot of test scores (`API12B`) vs the percentage of students with subsidized lunches (`MEALS`)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As expected, test scores decrease with an increasing fraction of students in poverty. The parents' education is also strongly correlated with test scores.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Make a scatter plot of test scores vs parents' education (`AVG_ED`)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Linear regression\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's draw trend lines through these scatter plots. Or, more precisely, we're going to use single variable linear regression to build a model of the relationship between two variables (test scores, which is the \\\"dependent\\\" variable, and one \\\"independent\\\" variable.\\\")\\n\",\n    \"\\n\",\n    \"Let's start with text scores vs. our poverty proxy.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# To start with, let's have the MEALS variable on the X axis and the API12B variable on the Y axis \\n\",\n    \"# This is some drudgery to convert dataframes into the NumPy arrays that sklearn needs\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Make a LinearRegression object and fit our data to it \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now let's see what we've got. Make the scatter plot of scores vs. meals, and add the regression line\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# scatter plot of test scores vs percentage of students eligable for subsidized meals\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What is the slope of this line? That is, how many test score points do we lose \\n\",\n    \"# for every percentage point increase in students receiving subsidized meals?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# And what is the intercept? That is, what does the model predict for MEALS=0?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We now have a model that predicts test performance based on the number of students receiving subsidized meals. This is a pretty naive mdodel, but it's a start. And we can already learn things from it: there are some schools that seem to be doing much better than would be expected given the number of impoverished students attending. Essentially by, subtracting off the regression line we are \\\"taking poverty out of the equation.\\\"\\n\",\n    \"\\n\",\n    \"Let's take a look at some of these schools. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Print out all schools with MEALS greater than 80 and API12B > 900\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's look specifically at Solano Avenue Elementary, which has an `API12B` of 922 and 80 percent of students being in the free/reduced lunch program. \\n\",\n    \"\\n\",\n    \"How well would we expect this school to do, based on its `MEALS` of 80?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Use the linear model to predict the score for this school\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"With an index of 922, clearly the school is overperforming what our simplified model expects. What is different about this school? Use your favorite search engine to look for relevant articles and see if you can figure out anything that might matter (remembering that our data is from 2012)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"(your answer here)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 1\n}\n"
  },
  {
    "path": "week-3/week-3-2-class.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Lede Algorithms 2018 Week 2 class 2 - Logistic Regression\\n\",\n    \"\\n\",\n    \"This notebook builds up to logistic regression, that is, fitting a model that predicts the output where there are only two choices. But before that, we're going to do many comparisons and visualizations to talk about the underlying ideas that regression is getting at -- especially the idea of \\\"controlling for\\\" another factor. \\n\",\n    \"\\n\",\n    \"Throughout we'll be using data on citations for speeding from Massechusets from 2001. This data was originally analyzed by the Boston Globe for their series [Speed Trap: Who gets a ticket, who gets a break?](http://archive.boston.com/globe/metro/packages/tickets/). You can read about their analysis in this [methodology document](http://archive.boston.com/globe/metro/packages/tickets/study.pdf), and get the original data [here](http://archive.boston.com/globe/metro/packages/tickets/warnings.zip). I've added a header row the CSV file, but otherwise `tickets-warnings.csv` in this directory is identical.\\n\",\n    \"\\n\",\n    \"Why such old data? Well, for one thing it's a classic example of multi-variable regression in journalism. But also, for a brief period of April and May 2001, the state government entered both tickets and warnings from the paper citations. In Massechusets at that time, both were written on the same form, with only a checkbox indicating which it was. A ticket means a fine and a raises your insurance premium. A warning means nothing. Having data on both means we can ask who gets a ticket vs. a warning for the same circumstances.\\n\",\n    \"\\n\",\n    \"We have a ton of data about each stop, including the speed, age, race, gender, and home zip code of the driver. The journalistic question is, are some groups more likely to get tickets, and not warnings, than others?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>TYPE</th>\\n\",\n       \"      <th>CITATION</th>\\n\",\n       \"      <th>DATE</th>\\n\",\n       \"      <th>DOW</th>\\n\",\n       \"      <th>AGENCY</th>\\n\",\n       \"      <th>AGENCY2</th>\\n\",\n       \"      <th>AGENCY3</th>\\n\",\n       \"      <th>LOCAL</th>\\n\",\n       \"      <th>OFFICER</th>\\n\",\n       \"      <th>LICSTATE</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>V_YEAR</th>\\n\",\n       \"      <th>V_AGE</th>\\n\",\n       \"      <th>V_AGEGRP</th>\\n\",\n       \"      <th>COLOR</th>\\n\",\n       \"      <th>HOMESTATE</th>\\n\",\n       \"      <th>HOMETOWN</th>\\n\",\n       \"      <th>INTOWN</th>\\n\",\n       \"      <th>INSTATE</th>\\n\",\n       \"      <th>INTOWN2</th>\\n\",\n       \"      <th>INSTATE2</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001506</td>\\n\",\n       \"      <td>20010411.0</td>\\n\",\n       \"      <td>Wednesday</td>\\n\",\n       \"      <td>State Police Troop A-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Tewksbury</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001507</td>\\n\",\n       \"      <td>20010417.0</td>\\n\",\n       \"      <td>Tuesday</td>\\n\",\n       \"      <td>State Police Troop A-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1988.0</td>\\n\",\n       \"      <td>13.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>WHITE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001509</td>\\n\",\n       \"      <td>20010420.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001510</td>\\n\",\n       \"      <td>20010420.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001511</td>\\n\",\n       \"      <td>20010427.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>2000.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>new</td>\\n\",\n       \"      <td>BLACK</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Haverhill</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>5</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001513</td>\\n\",\n       \"      <td>20010502.0</td>\\n\",\n       \"      <td>Wednesday</td>\\n\",\n       \"      <td>State Police Troop A-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Topsfield</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>6</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K0001514</td>\\n\",\n       \"      <td>20010506.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>State Police Troop A-1</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K0001515</td>\\n\",\n       \"      <td>20010506.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>State Police Troop A-1</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>8</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K0001516</td>\\n\",\n       \"      <td>20010506.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>State Police Troop A-1</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Lawrence</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K0001517</td>\\n\",\n       \"      <td>20010506.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>State Police Troop A-1</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1992.0</td>\\n\",\n       \"      <td>9.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>BLUE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Waltham</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>10</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K0001518</td>\\n\",\n       \"      <td>20010506.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>State Police Troop A-1</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>11</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K0001519</td>\\n\",\n       \"      <td>20010506.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>State Police Troop A-1</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>ME</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>ME</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>12</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K0001520</td>\\n\",\n       \"      <td>20010506.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>State Police Troop A-1</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>2000.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>new</td>\\n\",\n       \"      <td>BLUE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Winchester</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001521</td>\\n\",\n       \"      <td>20010506.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>State Police Troop A-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Bedford</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>14</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001522</td>\\n\",\n       \"      <td>20010508.0</td>\\n\",\n       \"      <td>Tuesday</td>\\n\",\n       \"      <td>State Police Troop A-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1994.0</td>\\n\",\n       \"      <td>7.0</td>\\n\",\n       \"      <td>old</td>\\n\",\n       \"      <td>WHITE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Tewksbury</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>15</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001523</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>ME</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>ME</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>16</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001524</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>2000.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>new</td>\\n\",\n       \"      <td>BLACK</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Southbridge</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>17</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001525</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>18</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001526</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1998.0</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"      <td>old</td>\\n\",\n       \"      <td>WHITE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Framingham</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>19</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001527</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>ME</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1999.0</td>\\n\",\n       \"      <td>2.0</td>\\n\",\n       \"      <td>new</td>\\n\",\n       \"      <td>BROWN</td>\\n\",\n       \"      <td>ME</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>20</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001528</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>21</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001530</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>CT</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1987.0</td>\\n\",\n       \"      <td>14.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>WHITE</td>\\n\",\n       \"      <td>CT</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>22</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001531</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>23</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001532</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Stoneham</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>24</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001535</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Dedham</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>25</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001536</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A HQ</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Reading</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>26</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K0001539</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-1</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1997.0</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>old</td>\\n\",\n       \"      <td>WHITE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Haverhill</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>27</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K0001540</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop A-1</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247791e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>28</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001541</td>\\n\",\n       \"      <td>20010404.0</td>\\n\",\n       \"      <td>Wednesday</td>\\n\",\n       \"      <td>State Police Troop A-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247714e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>29</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K0001546</td>\\n\",\n       \"      <td>20010407.0</td>\\n\",\n       \"      <td>Saturday</td>\\n\",\n       \"      <td>State Police Troop A-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247714e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1999.0</td>\\n\",\n       \"      <td>2.0</td>\\n\",\n       \"      <td>new</td>\\n\",\n       \"      <td>BLACK</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Malden</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166339</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K2755981</td>\\n\",\n       \"      <td>20010516.0</td>\\n\",\n       \"      <td>Wednesday</td>\\n\",\n       \"      <td>State Police Troop E-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247830e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1993.0</td>\\n\",\n       \"      <td>8.0</td>\\n\",\n       \"      <td>old</td>\\n\",\n       \"      <td>RED</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166340</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K2757244</td>\\n\",\n       \"      <td>20010418.0</td>\\n\",\n       \"      <td>Wednesday</td>\\n\",\n       \"      <td>State Police Troop E HQ</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247833e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Framingham</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166341</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K2769107</td>\\n\",\n       \"      <td>20010423.0</td>\\n\",\n       \"      <td>Monday</td>\\n\",\n       \"      <td>State Police Troop E-3</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247766e+15</td>\\n\",\n       \"      <td>ON</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166342</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K2849461</td>\\n\",\n       \"      <td>20010425.0</td>\\n\",\n       \"      <td>Wednesday</td>\\n\",\n       \"      <td>Brockton</td>\\n\",\n       \"      <td>Brockton</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.248014e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>2001.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>new</td>\\n\",\n       \"      <td>GRAY</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Marshfield</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166343</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K2861734</td>\\n\",\n       \"      <td>20010422.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>Fitchburg</td>\\n\",\n       \"      <td>Fitchburg</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.248350e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1987.0</td>\\n\",\n       \"      <td>14.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>BLUE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Fitchburg</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166344</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K2865495</td>\\n\",\n       \"      <td>20010514.0</td>\\n\",\n       \"      <td>Monday</td>\\n\",\n       \"      <td>Concord</td>\\n\",\n       \"      <td>Concord</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247364e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1988.0</td>\\n\",\n       \"      <td>13.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>WHITE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Maynard</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166345</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K2906089</td>\\n\",\n       \"      <td>20010401.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>Springfield</td>\\n\",\n       \"      <td>Springfield</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247734e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Springfield</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166346</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K2919980</td>\\n\",\n       \"      <td>20010516.0</td>\\n\",\n       \"      <td>Wednesday</td>\\n\",\n       \"      <td>Dracut</td>\\n\",\n       \"      <td>Dracut</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247045e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>2000.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>new</td>\\n\",\n       \"      <td>GRAY</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Dracut</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166347</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K4044170</td>\\n\",\n       \"      <td>20010424.0</td>\\n\",\n       \"      <td>Tuesday</td>\\n\",\n       \"      <td>Boston Police Area B</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>B</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247627e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166348</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K4263838</td>\\n\",\n       \"      <td>20010501.0</td>\\n\",\n       \"      <td>Tuesday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247462e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1996.0</td>\\n\",\n       \"      <td>5.0</td>\\n\",\n       \"      <td>old</td>\\n\",\n       \"      <td>WHITE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Amesbury</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166349</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K4280528</td>\\n\",\n       \"      <td>20010511.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop D-1</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247877e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166350</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K4327412</td>\\n\",\n       \"      <td>20010403.0</td>\\n\",\n       \"      <td>Tuesday</td>\\n\",\n       \"      <td>Boston Police Area J</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>B</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247645e+15</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1987.0</td>\\n\",\n       \"      <td>14.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>BLUE</td>\\n\",\n       \"      <td>FL</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166351</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K4330493</td>\\n\",\n       \"      <td>20010405.0</td>\\n\",\n       \"      <td>Thursday</td>\\n\",\n       \"      <td>Lawrence</td>\\n\",\n       \"      <td>Lawrence</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247841e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1991.0</td>\\n\",\n       \"      <td>10.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>YELLOW</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Lawrence</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166352</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K4773328</td>\\n\",\n       \"      <td>20010401.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>State Police Troop A-2</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.247727e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166353</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K5015626</td>\\n\",\n       \"      <td>20010430.0</td>\\n\",\n       \"      <td>Monday</td>\\n\",\n       \"      <td>Swansea</td>\\n\",\n       \"      <td>Swansea</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.248403e+15</td>\\n\",\n       \"      <td>RI</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>RI</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166354</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K5038113</td>\\n\",\n       \"      <td>20010507.0</td>\\n\",\n       \"      <td>Monday</td>\\n\",\n       \"      <td>Quincy</td>\\n\",\n       \"      <td>Quincy</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.248284e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Marshfield</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166355</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K5071038</td>\\n\",\n       \"      <td>20010503.0</td>\\n\",\n       \"      <td>Thursday</td>\\n\",\n       \"      <td>Plymouth</td>\\n\",\n       \"      <td>Plymouth</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.248479e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1990.0</td>\\n\",\n       \"      <td>11.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>BLUE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Rockland</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166356</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K5272457</td>\\n\",\n       \"      <td>20010531.0</td>\\n\",\n       \"      <td>Thursday</td>\\n\",\n       \"      <td>Lynn</td>\\n\",\n       \"      <td>Lynn</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.248257e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1990.0</td>\\n\",\n       \"      <td>11.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>BLUE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Lynn</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166357</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K5777712</td>\\n\",\n       \"      <td>20010503.0</td>\\n\",\n       \"      <td>Thursday</td>\\n\",\n       \"      <td>Boston Police Area H</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>B</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.248499e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1986.0</td>\\n\",\n       \"      <td>15.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>BLACK</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166358</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K5779586</td>\\n\",\n       \"      <td>20010509.0</td>\\n\",\n       \"      <td>Wednesday</td>\\n\",\n       \"      <td>Boston Police Area B</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>B</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247500e+15</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166359</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K5781261</td>\\n\",\n       \"      <td>20010525.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>Boston Police Area F</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>B</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.248287e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1990.0</td>\\n\",\n       \"      <td>11.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>RED</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Saugus</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166360</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K5816512</td>\\n\",\n       \"      <td>20010406.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>Lawrence</td>\\n\",\n       \"      <td>Lawrence</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.248439e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Methuen</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166361</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K5856781</td>\\n\",\n       \"      <td>20010402.0</td>\\n\",\n       \"      <td>Monday</td>\\n\",\n       \"      <td>Boston Police Area A</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>B</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247546e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166362</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K6040681</td>\\n\",\n       \"      <td>20010423.0</td>\\n\",\n       \"      <td>Monday</td>\\n\",\n       \"      <td>Weymouth</td>\\n\",\n       \"      <td>Weymouth</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247664e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>2001.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>new</td>\\n\",\n       \"      <td>BROWN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Kingston</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166363</th>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>K6090282</td>\\n\",\n       \"      <td>20010408.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>Gloucester</td>\\n\",\n       \"      <td>Gloucester</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247323e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1989.0</td>\\n\",\n       \"      <td>12.0</td>\\n\",\n       \"      <td>older</td>\\n\",\n       \"      <td>WHITE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Gloucester</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166364</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K6228716</td>\\n\",\n       \"      <td>20010404.0</td>\\n\",\n       \"      <td>Wednesday</td>\\n\",\n       \"      <td>Canton</td>\\n\",\n       \"      <td>Canton</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247429e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Canton</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166365</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K9010748</td>\\n\",\n       \"      <td>20010506.0</td>\\n\",\n       \"      <td>Sunday</td>\\n\",\n       \"      <td>Weymouth</td>\\n\",\n       \"      <td>Weymouth</td>\\n\",\n       \"      <td>L</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.247748e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Quincy</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166366</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K9012312</td>\\n\",\n       \"      <td>20010525.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>State Police Troop D-4</td>\\n\",\n       \"      <td>State Police</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>8.248466e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1996.0</td>\\n\",\n       \"      <td>5.0</td>\\n\",\n       \"      <td>old</td>\\n\",\n       \"      <td>BLUE</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Brookline</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166367</th>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>K9016102</td>\\n\",\n       \"      <td>20010427.0</td>\\n\",\n       \"      <td>Friday</td>\\n\",\n       \"      <td>Boston Police Area L</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>B</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>8.248491e+15</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>2002.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>new</td>\\n\",\n       \"      <td>RED</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>Boston</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>166368</th>\\n\",\n       \"      <td>\\u001a</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>166369 rows × 57 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"       TYPE  CITATION        DATE        DOW                   AGENCY  \\\\\\n\",\n       \"0         T  K0001506  20010411.0  Wednesday   State Police Troop A-4   \\n\",\n       \"1         T  K0001507  20010417.0    Tuesday   State Police Troop A-4   \\n\",\n       \"2         T  K0001509  20010420.0     Friday   State Police Troop A-4   \\n\",\n       \"3         T  K0001510  20010420.0     Friday   State Police Troop A-4   \\n\",\n       \"4         T  K0001511  20010427.0     Friday   State Police Troop A-4   \\n\",\n       \"5         T  K0001513  20010502.0  Wednesday   State Police Troop A-4   \\n\",\n       \"6         W  K0001514  20010506.0     Sunday   State Police Troop A-1   \\n\",\n       \"7         W  K0001515  20010506.0     Sunday   State Police Troop A-1   \\n\",\n       \"8         W  K0001516  20010506.0     Sunday   State Police Troop A-1   \\n\",\n       \"9         W  K0001517  20010506.0     Sunday   State Police Troop A-1   \\n\",\n       \"10        W  K0001518  20010506.0     Sunday   State Police Troop A-1   \\n\",\n       \"11        W  K0001519  20010506.0     Sunday   State Police Troop A-1   \\n\",\n       \"12        W  K0001520  20010506.0     Sunday   State Police Troop A-1   \\n\",\n       \"13        T  K0001521  20010506.0     Sunday   State Police Troop A-4   \\n\",\n       \"14        T  K0001522  20010508.0    Tuesday   State Police Troop A-4   \\n\",\n       \"15        T  K0001523  20010511.0     Friday   State Police Troop A-2   \\n\",\n       \"16        T  K0001524  20010511.0     Friday   State Police Troop A-2   \\n\",\n       \"17        T  K0001525  20010511.0     Friday   State Police Troop A-2   \\n\",\n       \"18        T  K0001526  20010511.0     Friday   State Police Troop A-2   \\n\",\n       \"19        T  K0001527  20010511.0     Friday   State Police Troop A-2   \\n\",\n       \"20        T  K0001528  20010511.0     Friday   State Police Troop A-2   \\n\",\n       \"21        T  K0001530  20010511.0     Friday   State Police Troop A-2   \\n\",\n       \"22        T  K0001531  20010511.0     Friday   State Police Troop A-2   \\n\",\n       \"23        T  K0001532  20010511.0     Friday   State Police Troop A-2   \\n\",\n       \"24        T  K0001535  20010511.0     Friday   State Police Troop A-2   \\n\",\n       \"25        T  K0001536  20010511.0     Friday  State Police Troop A HQ   \\n\",\n       \"26        W  K0001539  20010511.0     Friday   State Police Troop A-1   \\n\",\n       \"27        W  K0001540  20010511.0     Friday   State Police Troop A-1   \\n\",\n       \"28        T  K0001541  20010404.0  Wednesday   State Police Troop A-4   \\n\",\n       \"29        T  K0001546  20010407.0   Saturday   State Police Troop A-4   \\n\",\n       \"...     ...       ...         ...        ...                      ...   \\n\",\n       \"166339    T  K2755981  20010516.0  Wednesday   State Police Troop E-4   \\n\",\n       \"166340    T  K2757244  20010418.0  Wednesday  State Police Troop E HQ   \\n\",\n       \"166341    T  K2769107  20010423.0     Monday   State Police Troop E-3   \\n\",\n       \"166342    T  K2849461  20010425.0  Wednesday                 Brockton   \\n\",\n       \"166343    T  K2861734  20010422.0     Sunday                Fitchburg   \\n\",\n       \"166344    T  K2865495  20010514.0     Monday                  Concord   \\n\",\n       \"166345    T  K2906089  20010401.0     Sunday              Springfield   \\n\",\n       \"166346    T  K2919980  20010516.0  Wednesday                   Dracut   \\n\",\n       \"166347    T  K4044170  20010424.0    Tuesday     Boston Police Area B   \\n\",\n       \"166348    T  K4263838  20010501.0    Tuesday   State Police Troop A-2   \\n\",\n       \"166349    T  K4280528  20010511.0     Friday   State Police Troop D-1   \\n\",\n       \"166350    W  K4327412  20010403.0    Tuesday     Boston Police Area J   \\n\",\n       \"166351    T  K4330493  20010405.0   Thursday                 Lawrence   \\n\",\n       \"166352    T  K4773328  20010401.0     Sunday   State Police Troop A-2   \\n\",\n       \"166353    W  K5015626  20010430.0     Monday                  Swansea   \\n\",\n       \"166354    W  K5038113  20010507.0     Monday                   Quincy   \\n\",\n       \"166355    W  K5071038  20010503.0   Thursday                 Plymouth   \\n\",\n       \"166356    W  K5272457  20010531.0   Thursday                     Lynn   \\n\",\n       \"166357    T  K5777712  20010503.0   Thursday     Boston Police Area H   \\n\",\n       \"166358    T  K5779586  20010509.0  Wednesday     Boston Police Area B   \\n\",\n       \"166359    T  K5781261  20010525.0     Friday     Boston Police Area F   \\n\",\n       \"166360    T  K5816512  20010406.0     Friday                 Lawrence   \\n\",\n       \"166361    T  K5856781  20010402.0     Monday     Boston Police Area A   \\n\",\n       \"166362    W  K6040681  20010423.0     Monday                 Weymouth   \\n\",\n       \"166363    T  K6090282  20010408.0     Sunday               Gloucester   \\n\",\n       \"166364    W  K6228716  20010404.0  Wednesday                   Canton   \\n\",\n       \"166365    W  K9010748  20010506.0     Sunday                 Weymouth   \\n\",\n       \"166366    W  K9012312  20010525.0     Friday   State Police Troop D-4   \\n\",\n       \"166367    W  K9016102  20010427.0     Friday     Boston Police Area L   \\n\",\n       \"166368    \\u001a       NaN         NaN        NaN                      NaN   \\n\",\n       \"\\n\",\n       \"             AGENCY2 AGENCY3 LOCAL       OFFICER LICSTATE   ...     V_YEAR  \\\\\\n\",\n       \"0       State Police       S     N  8.247791e+15       MA   ...        0.0   \\n\",\n       \"1       State Police       S     N  8.247791e+15       MA   ...     1988.0   \\n\",\n       \"2       State Police       S     N  8.247791e+15       NH   ...        0.0   \\n\",\n       \"3       State Police       S     N  8.247791e+15       NH   ...        0.0   \\n\",\n       \"4       State Police       S     N  8.247791e+15       MA   ...     2000.0   \\n\",\n       \"5       State Police       S     N  8.247791e+15       MA   ...        0.0   \\n\",\n       \"6       State Police       S     N  8.247791e+15       NH   ...        0.0   \\n\",\n       \"7       State Police       S     N  8.247791e+15       NH   ...        0.0   \\n\",\n       \"8       State Police       S     N  8.247791e+15       MA   ...        0.0   \\n\",\n       \"9       State Police       S     N  8.247791e+15       MA   ...     1992.0   \\n\",\n       \"10      State Police       S     N  8.247791e+15       NH   ...        0.0   \\n\",\n       \"11      State Police       S     N  8.247791e+15       ME   ...        0.0   \\n\",\n       \"12      State Police       S     N  8.247791e+15       MA   ...     2000.0   \\n\",\n       \"13      State Police       S     N  8.247791e+15       MA   ...        0.0   \\n\",\n       \"14      State Police       S     N  8.247791e+15       MA   ...     1994.0   \\n\",\n       \"15      State Police       S     N  8.247791e+15       ME   ...        0.0   \\n\",\n       \"16      State Police       S     N  8.247791e+15       MA   ...     2000.0   \\n\",\n       \"17      State Police       S     N  8.247791e+15       NH   ...        0.0   \\n\",\n       \"18      State Police       S     N  8.247791e+15       MA   ...     1998.0   \\n\",\n       \"19      State Police       S     N  8.247791e+15       ME   ...     1999.0   \\n\",\n       \"20      State Police       S     N  8.247791e+15       NH   ...        0.0   \\n\",\n       \"21      State Police       S     N  8.247791e+15       CT   ...     1987.0   \\n\",\n       \"22      State Police       S     N  8.247791e+15       NH   ...        0.0   \\n\",\n       \"23      State Police       S     N  8.247791e+15       MA   ...        0.0   \\n\",\n       \"24      State Police       S     N  8.247791e+15       MA   ...        0.0   \\n\",\n       \"25      State Police       S     N  8.247791e+15       MA   ...        0.0   \\n\",\n       \"26      State Police       S     N  8.247791e+15       MA   ...     1997.0   \\n\",\n       \"27      State Police       S     N  8.247791e+15       NH   ...        0.0   \\n\",\n       \"28      State Police       S     N  8.247714e+15       NH   ...        0.0   \\n\",\n       \"29      State Police       S     N  8.247714e+15       MA   ...     1999.0   \\n\",\n       \"...              ...     ...   ...           ...      ...   ...        ...   \\n\",\n       \"166339  State Police       S     N  8.247830e+15       MA   ...     1993.0   \\n\",\n       \"166340  State Police       S     N  8.247833e+15       MA   ...        0.0   \\n\",\n       \"166341  State Police       S     N  8.247766e+15       ON   ...        0.0   \\n\",\n       \"166342      Brockton       L     Y  8.248014e+15       MA   ...     2001.0   \\n\",\n       \"166343     Fitchburg       L     Y  8.248350e+15       MA   ...     1987.0   \\n\",\n       \"166344       Concord       L     Y  8.247364e+15       MA   ...     1988.0   \\n\",\n       \"166345   Springfield       L     Y  8.247734e+15       MA   ...        0.0   \\n\",\n       \"166346        Dracut       L     Y  8.247045e+15       MA   ...     2000.0   \\n\",\n       \"166347        Boston       B     Y  8.247627e+15       MA   ...        0.0   \\n\",\n       \"166348  State Police       S     N  8.247462e+15       MA   ...     1996.0   \\n\",\n       \"166349  State Police       S     N  8.247877e+15       MA   ...        0.0   \\n\",\n       \"166350        Boston       B     Y  8.247645e+15      NaN   ...     1987.0   \\n\",\n       \"166351      Lawrence       L     Y  8.247841e+15       MA   ...     1991.0   \\n\",\n       \"166352  State Police       S     N  8.247727e+15       NH   ...        0.0   \\n\",\n       \"166353       Swansea       L     Y  8.248403e+15       RI   ...        0.0   \\n\",\n       \"166354        Quincy       L     Y  8.248284e+15       MA   ...        0.0   \\n\",\n       \"166355      Plymouth       L     Y  8.248479e+15       MA   ...     1990.0   \\n\",\n       \"166356          Lynn       L     Y  8.248257e+15       MA   ...     1990.0   \\n\",\n       \"166357        Boston       B     Y  8.248499e+15       MA   ...     1986.0   \\n\",\n       \"166358        Boston       B     Y  8.247500e+15       NH   ...        0.0   \\n\",\n       \"166359        Boston       B     Y  8.248287e+15       MA   ...     1990.0   \\n\",\n       \"166360      Lawrence       L     Y  8.248439e+15       MA   ...        0.0   \\n\",\n       \"166361        Boston       B     Y  8.247546e+15       MA   ...        0.0   \\n\",\n       \"166362      Weymouth       L     Y  8.247664e+15       MA   ...     2001.0   \\n\",\n       \"166363    Gloucester       L     Y  8.247323e+15       MA   ...     1989.0   \\n\",\n       \"166364        Canton       L     Y  8.247429e+15       MA   ...        0.0   \\n\",\n       \"166365      Weymouth       L     Y  8.247748e+15       MA   ...        0.0   \\n\",\n       \"166366  State Police       S     N  8.248466e+15       MA   ...     1996.0   \\n\",\n       \"166367        Boston       B     Y  8.248491e+15       MA   ...     2002.0   \\n\",\n       \"166368           NaN     NaN   NaN           NaN      NaN   ...        NaN   \\n\",\n       \"\\n\",\n       \"       V_AGE V_AGEGRP   COLOR  HOMESTATE     HOMETOWN  INTOWN  INSTATE  \\\\\\n\",\n       \"0        NaN        U     NaN         MA    Tewksbury       N        Y   \\n\",\n       \"1       13.0    older   WHITE         MA       Boston       N        Y   \\n\",\n       \"2        NaN        U     NaN         NH          NaN       N        N   \\n\",\n       \"3        NaN        U     NaN         NH          NaN       N        N   \\n\",\n       \"4        1.0      new   BLACK         MA    Haverhill       N        Y   \\n\",\n       \"5        NaN        U     NaN         MA    Topsfield       N        Y   \\n\",\n       \"6        NaN        U     NaN         NH          NaN       N        N   \\n\",\n       \"7        NaN        U     NaN         NH          NaN       N        N   \\n\",\n       \"8        NaN        U     NaN         MA     Lawrence       Y        Y   \\n\",\n       \"9        9.0    older    BLUE         MA      Waltham       N        Y   \\n\",\n       \"10       NaN        U     NaN         NH          NaN       N        N   \\n\",\n       \"11       NaN        U     NaN         ME          NaN       N        N   \\n\",\n       \"12       1.0      new    BLUE         MA   Winchester       N        Y   \\n\",\n       \"13       NaN        U     NaN         MA      Bedford       N        Y   \\n\",\n       \"14       7.0      old   WHITE         MA    Tewksbury       N        Y   \\n\",\n       \"15       NaN        U     NaN         ME          NaN       N        N   \\n\",\n       \"16       1.0      new   BLACK         MA  Southbridge       N        Y   \\n\",\n       \"17       NaN        U     NaN         NH          NaN       N        N   \\n\",\n       \"18       3.0      old   WHITE         MA   Framingham       N        Y   \\n\",\n       \"19       2.0      new   BROWN         ME          NaN       N        N   \\n\",\n       \"20       NaN        U     NaN         NH          NaN       N        N   \\n\",\n       \"21      14.0    older   WHITE         CT          NaN       N        N   \\n\",\n       \"22       NaN        U     NaN         NH          NaN       N        N   \\n\",\n       \"23       NaN        U     NaN         MA     Stoneham       N        Y   \\n\",\n       \"24       NaN        U     NaN         MA       Dedham       N        Y   \\n\",\n       \"25       NaN        U     NaN         MA      Reading       N        Y   \\n\",\n       \"26       4.0      old   WHITE         MA    Haverhill       N        Y   \\n\",\n       \"27       NaN        U     NaN         NH          NaN       N        N   \\n\",\n       \"28       NaN        U     NaN        NaN          NaN       U        N   \\n\",\n       \"29       2.0      new   BLACK         MA       Malden       N        Y   \\n\",\n       \"...      ...      ...     ...        ...          ...     ...      ...   \\n\",\n       \"166339   8.0      old     RED         MA       Boston       Y        Y   \\n\",\n       \"166340   NaN        U     NaN         MA   Framingham       N        Y   \\n\",\n       \"166341   NaN        U     NaN        NaN          NaN       U        N   \\n\",\n       \"166342   0.0      new    GRAY         MA   Marshfield       N        Y   \\n\",\n       \"166343  14.0    older    BLUE         MA    Fitchburg       Y        Y   \\n\",\n       \"166344  13.0    older   WHITE         MA      Maynard       N        Y   \\n\",\n       \"166345   NaN        U     NaN         MA  Springfield       Y        Y   \\n\",\n       \"166346   1.0      new    GRAY         MA       Dracut       Y        Y   \\n\",\n       \"166347   NaN        U     NaN         MA       Boston       Y        Y   \\n\",\n       \"166348   5.0      old   WHITE         MA     Amesbury       N        Y   \\n\",\n       \"166349   NaN        U     NaN         MA       Boston       N        Y   \\n\",\n       \"166350  14.0    older    BLUE         FL          NaN       N        N   \\n\",\n       \"166351  10.0    older  YELLOW         MA     Lawrence       Y        Y   \\n\",\n       \"166352   NaN        U     NaN         NH          NaN       N        N   \\n\",\n       \"166353   NaN        U     NaN         RI          NaN       N        N   \\n\",\n       \"166354   NaN        U     NaN         MA   Marshfield       N        Y   \\n\",\n       \"166355  11.0    older    BLUE         MA     Rockland       N        Y   \\n\",\n       \"166356  11.0    older    BLUE         MA         Lynn       Y        Y   \\n\",\n       \"166357  15.0    older   BLACK         MA       Boston       Y        Y   \\n\",\n       \"166358   NaN        U     NaN         NH          NaN       N        N   \\n\",\n       \"166359  11.0    older     RED         MA       Saugus       N        Y   \\n\",\n       \"166360   NaN        U     NaN         MA      Methuen       N        Y   \\n\",\n       \"166361   NaN        U     NaN         MA       Boston       Y        Y   \\n\",\n       \"166362   0.0      new   BROWN         MA     Kingston       N        Y   \\n\",\n       \"166363  12.0    older   WHITE         MA   Gloucester       Y        Y   \\n\",\n       \"166364   NaN        U     NaN         MA       Canton       Y        Y   \\n\",\n       \"166365   NaN        U     NaN         MA       Quincy       N        Y   \\n\",\n       \"166366   5.0      old    BLUE         MA    Brookline       N        Y   \\n\",\n       \"166367  -1.0      new     RED         MA       Boston       Y        Y   \\n\",\n       \"166368   NaN      NaN     NaN        NaN          NaN     NaN      NaN   \\n\",\n       \"\\n\",\n       \"        INTOWN2 INSTATE2  \\n\",\n       \"0           0.0      1.0  \\n\",\n       \"1           0.0      1.0  \\n\",\n       \"2           0.0      0.0  \\n\",\n       \"3           0.0      0.0  \\n\",\n       \"4           0.0      1.0  \\n\",\n       \"5           0.0      1.0  \\n\",\n       \"6           0.0      0.0  \\n\",\n       \"7           0.0      0.0  \\n\",\n       \"8           1.0      1.0  \\n\",\n       \"9           0.0      1.0  \\n\",\n       \"10          0.0      0.0  \\n\",\n       \"11          0.0      0.0  \\n\",\n       \"12          0.0      1.0  \\n\",\n       \"13          0.0      1.0  \\n\",\n       \"14          0.0      1.0  \\n\",\n       \"15          0.0      0.0  \\n\",\n       \"16          0.0      1.0  \\n\",\n       \"17          0.0      0.0  \\n\",\n       \"18          0.0      1.0  \\n\",\n       \"19          0.0      0.0  \\n\",\n       \"20          0.0      0.0  \\n\",\n       \"21          0.0      0.0  \\n\",\n       \"22          0.0      0.0  \\n\",\n       \"23          0.0      1.0  \\n\",\n       \"24          0.0      1.0  \\n\",\n       \"25          0.0      1.0  \\n\",\n       \"26          0.0      1.0  \\n\",\n       \"27          0.0      0.0  \\n\",\n       \"28          NaN      0.0  \\n\",\n       \"29          0.0      1.0  \\n\",\n       \"...         ...      ...  \\n\",\n       \"166339      1.0      1.0  \\n\",\n       \"166340      0.0      1.0  \\n\",\n       \"166341      NaN      0.0  \\n\",\n       \"166342      0.0      1.0  \\n\",\n       \"166343      1.0      1.0  \\n\",\n       \"166344      0.0      1.0  \\n\",\n       \"166345      1.0      1.0  \\n\",\n       \"166346      1.0      1.0  \\n\",\n       \"166347      1.0      1.0  \\n\",\n       \"166348      0.0      1.0  \\n\",\n       \"166349      0.0      1.0  \\n\",\n       \"166350      0.0      0.0  \\n\",\n       \"166351      1.0      1.0  \\n\",\n       \"166352      0.0      0.0  \\n\",\n       \"166353      0.0      0.0  \\n\",\n       \"166354      0.0      1.0  \\n\",\n       \"166355      0.0      1.0  \\n\",\n       \"166356      1.0      1.0  \\n\",\n       \"166357      1.0      1.0  \\n\",\n       \"166358      0.0      0.0  \\n\",\n       \"166359      0.0      1.0  \\n\",\n       \"166360      0.0      1.0  \\n\",\n       \"166361      1.0      1.0  \\n\",\n       \"166362      0.0      1.0  \\n\",\n       \"166363      1.0      1.0  \\n\",\n       \"166364      1.0      1.0  \\n\",\n       \"166365      0.0      1.0  \\n\",\n       \"166366      0.0      1.0  \\n\",\n       \"166367      1.0      1.0  \\n\",\n       \"166368      NaN      NaN  \\n\",\n       \"\\n\",\n       \"[166369 rows x 57 columns]\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"tw_raw = pd.read_csv('tickets-warnings.csv')\\n\",\n    \"tw_raw\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"For a complete description of all 57 fields, see the [methodology](http://archive.boston.com/globe/metro/packages/tickets/study.pdf). For our purposes, we are only intersted in the citations for speeding, and most interested in the fields `TYPE` (ticket or warning), `MINORITY`, `SEX`, `AGE`, and `MPHOVER`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>DATE</th>\\n\",\n       \"      <th>TYPE</th>\\n\",\n       \"      <th>AGENCY3</th>\\n\",\n       \"      <th>SEX</th>\\n\",\n       \"      <th>MINORITY</th>\\n\",\n       \"      <th>AGE</th>\\n\",\n       \"      <th>MPH</th>\\n\",\n       \"      <th>MPHOVER</th>\\n\",\n       \"      <th>INTOWN</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>20010411.0</td>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>M</td>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>21.0</td>\\n\",\n       \"      <td>80.0</td>\\n\",\n       \"      <td>15.0</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>20010427.0</td>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>M</td>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>24.0</td>\\n\",\n       \"      <td>85.0</td>\\n\",\n       \"      <td>20.0</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>20010502.0</td>\\n\",\n       \"      <td>T</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>M</td>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>37.0</td>\\n\",\n       \"      <td>80.0</td>\\n\",\n       \"      <td>30.0</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>20010506.0</td>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>M</td>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>30.0</td>\\n\",\n       \"      <td>80.0</td>\\n\",\n       \"      <td>15.0</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>20010506.0</td>\\n\",\n       \"      <td>W</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"      <td>F</td>\\n\",\n       \"      <td>M</td>\\n\",\n       \"      <td>22.0</td>\\n\",\n       \"      <td>75.0</td>\\n\",\n       \"      <td>10.0</td>\\n\",\n       \"      <td>N</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"         DATE TYPE AGENCY3 SEX MINORITY   AGE   MPH  MPHOVER INTOWN\\n\",\n       \"0  20010411.0    T       S   M        W  21.0  80.0     15.0      N\\n\",\n       \"1  20010427.0    T       S   M        W  24.0  85.0     20.0      N\\n\",\n       \"2  20010502.0    T       S   M        W  37.0  80.0     30.0      N\\n\",\n       \"3  20010506.0    W       S   M        W  30.0  80.0     15.0      N\\n\",\n       \"4  20010506.0    W       S   F        M  22.0  75.0     10.0      N\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"tw = tw_raw[tw_raw['DESCRIPT']=='SPEEDING'].reset_index(drop=True)\\n\",\n    \"tw = tw[['DATE', 'TYPE', 'AGENCY3', 'SEX','MINORITY','AGE','MPH','MPHOVER','INTOWN']]\\n\",\n    \"tw.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's start with the total number of minority vs. white drivers\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>DATE</th>\\n\",\n       \"      <th>TYPE</th>\\n\",\n       \"      <th>AGENCY3</th>\\n\",\n       \"      <th>SEX</th>\\n\",\n       \"      <th>AGE</th>\\n\",\n       \"      <th>MPH</th>\\n\",\n       \"      <th>MPHOVER</th>\\n\",\n       \"      <th>INTOWN</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>MINORITY</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>M</th>\\n\",\n       \"      <td>12836</td>\\n\",\n       \"      <td>12836</td>\\n\",\n       \"      <td>12836</td>\\n\",\n       \"      <td>12836</td>\\n\",\n       \"      <td>12833</td>\\n\",\n       \"      <td>12836</td>\\n\",\n       \"      <td>12609</td>\\n\",\n       \"      <td>12836</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>U</th>\\n\",\n       \"      <td>1633</td>\\n\",\n       \"      <td>1633</td>\\n\",\n       \"      <td>1633</td>\\n\",\n       \"      <td>1633</td>\\n\",\n       \"      <td>1632</td>\\n\",\n       \"      <td>1633</td>\\n\",\n       \"      <td>1592</td>\\n\",\n       \"      <td>1633</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>W</th>\\n\",\n       \"      <td>79275</td>\\n\",\n       \"      <td>79275</td>\\n\",\n       \"      <td>79275</td>\\n\",\n       \"      <td>79275</td>\\n\",\n       \"      <td>79262</td>\\n\",\n       \"      <td>79275</td>\\n\",\n       \"      <td>78071</td>\\n\",\n       \"      <td>79275</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"           DATE   TYPE  AGENCY3    SEX    AGE    MPH  MPHOVER  INTOWN\\n\",\n       \"MINORITY                                                             \\n\",\n       \"M         12836  12836    12836  12836  12833  12836    12609   12836\\n\",\n       \"U          1633   1633     1633   1633   1632   1633     1592    1633\\n\",\n       \"W         79275  79275    79275  79275  79262  79275    78071   79275\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"tw.groupby('MINORITY').count()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"What fraction of citations were given to minorities? \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.13935360597539925\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"12836/(12836+79275)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Is 13% a lot or a little? We could compare to the minority population of the towns where these stops happened, but what about people driving through? And there's no guarantee drivers in both groups have the same distribution of speeds. \\n\",\n    \"\\n\",\n    \"This is often called the \\\"denominator problem.\\\" To deal with this issue, we're going to compare the probability of getting a warning, as opposed to a ticket, between the groups.\\n\",\n    \"\\n\",\n    \"First, let's clean up the data a little but dropping the (relatively small) number of records where the minority status is unknown.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# drop the unknown race entries\\n\",\n    \"tw = tw[tw['MINORITY'] != 'U'].reset_index(drop=True)  # renumber the rows, and don't create a new column\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"MINORITY  TYPE\\n\",\n       \"M         T        7731\\n\",\n       \"          W        5105\\n\",\n       \"W         T       40126\\n\",\n       \"          W       39149\\n\",\n       \"dtype: int64\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"sz = tw.groupby(['MINORITY','TYPE']).size()\\n\",\n    \"sz\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>TYPE</th>\\n\",\n       \"      <th>T</th>\\n\",\n       \"      <th>W</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>MINORITY</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>M</th>\\n\",\n       \"      <td>7731</td>\\n\",\n       \"      <td>5105</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>W</th>\\n\",\n       \"      <td>40126</td>\\n\",\n       \"      <td>39149</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"TYPE          T      W\\n\",\n       \"MINORITY              \\n\",\n       \"M          7731   5105\\n\",\n       \"W         40126  39149\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pd.crosstab(tw.MINORITY,tw.TYPE)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x10fd280b8>\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"pd.crosstab(tw.MINORITY,tw.TYPE).plot(kind='bar')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.60229043315674669\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# percent of minority citations which were tickets\\n\",\n    \"sz['M']['T'] / sum(sz['M'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.50616209397666356\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# percent of non-minority citations which were tickets\\n\",\n    \"sz['W']['T'] / sum(sz['W'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can make a nice little chart of this...\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x1190d4d30>\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAXcAAAEaCAYAAADqqhd6AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBo\\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAET1JREFUeJzt3X+Q3Hddx/Hni6QhjJYf0x7q5FIu\\nQBgIP0S4FigqDNChLZo6gpgqCAOYcaYZqjhIqlhn6jj8ckCBjEPEKjC2AToCxzRtVH44/CrNgfxK\\nSuxNQXLRkRAqIFrahLd/3AaW49Lby21ubz/7fMzczH2/++nue0p49pvvd/e7qSokSW25z6AHkCT1\\nn3GXpAYZd0lqkHGXpAYZd0lqkHGXpAYZd0lqkHGXpAYZd0lq0NpBvfC5555bExMTg3p5SRpKn/nM\\nZ75RVWOLrRtY3CcmJpienh7Uy0vSUEry772s87SMJDXIuEtSg4y7JDVoYOfcJWlQ7rnnHmZnZ7nr\\nrrsGPcoprV+/nvHxcc4666zT+ueNu6SRMzs7y9lnn83ExARJBj3Oj6kqjh07xuzsLJs2bTqt5/C0\\njKSRc9ddd3HOOeesyrADJOGcc85Z1t8seop7kouTHEoyk2TnKdY8P8nBJAeSXHfaE0nSClitYT9p\\nufMtelomyRpgF3ARMAvsTzJVVQe71mwGrgKeWlV3JnnwsqaSJC1LL+fcLwBmquoOgCR7gMuAg11r\\nfhvYVVV3AlTV1/s96KBM7Lxx0CM05auvfc6gR5B+TL//f97Ln/Obb76ZK6+8khMnTvCyl72MnTsX\\nPCly2no5LbMBONy1PdvZ1+0RwCOSfCLJLUkuXuiJkmxPMp1k+ujRo6c3sSQNuRMnTnDFFVdw0003\\ncfDgQa6//noOHjy4+D+4BP26oLoW2Aw8Hbgc+OskD5y/qKp2V9VkVU2OjS16awRJatKtt97Kwx/+\\ncB760Ieybt06tm3bxgc+8IG+vkYvcT8CbOzaHu/s6zYLTFXVPVX1FeDfmIu9JGmeI0eOsHHjD7M6\\nPj7OkSPzs7o8vcR9P7A5yaYk64BtwNS8Ne9n7qidJOcyd5rmjj7OKUlagkXjXlXHgR3APuA24D1V\\ndSDJNUm2dpbtA44lOQh8BHhlVR07U0NL0jDbsGEDhw//8FLm7OwsGzbMv5S5PD19QrWq9gJ75+27\\nuuv3Al7R+ZEk3Yvzzz+f22+/na985Sts2LCBPXv2cN11/f14kLcfkDTyVvotumvXruWtb30rz372\\nszlx4gQveclLePSjH93f1+jrs0mSenLppZdy6aWXnrHn994yktQg4y5JDTLukkbS3PtAVq/lzmfc\\nJY2c9evXc+zYsVUb+JP3c1+/fv1pP4cXVCWNnPHxcWZnZ1nN97g6+U1Mp8u4Sxo5Z5111ml/w9Gw\\n8LSMJDXIuEtSg4y7JDXIuEtSg4y7JDXIuEtSg4y7JDXIuEtSg4y7JDXIuEtSg4y7JDXIuEtSg4y7\\nJDXIuEtSg4y7JDXIuEtSg4y7JDWop7gnuTjJoSQzSXYu8PiLkxxN8rnOz8v6P6okqVeLfs1ekjXA\\nLuAiYBbYn2Sqqg7OW/ruqtpxBmaUtICJnTcOeoSmfPW1zxn0CH3Vy5H7BcBMVd1RVXcDe4DLzuxY\\nkqTl6CXuG4DDXduznX3zPTfJF5LckGTjQk+UZHuS6STTq/lbxyVp2PXrguoHgYmqehzwT8A7FlpU\\nVburarKqJsfGxvr00pKk+XqJ+xGg+0h8vLPvB6rqWFV9r7P5duCJ/RlPknQ6eon7fmBzkk1J1gHb\\ngKnuBUl+pmtzK3Bb/0aUJC3Vou+WqarjSXYA+4A1wLVVdSDJNcB0VU0BL0+yFTgOfBN48RmcWZK0\\niEXjDlBVe4G98/Zd3fX7VcBV/R1NknS6/ISqJDXIuEtSg4y7JDXIuEtSg4y7JDXIuEtSg4y7JDXI\\nuEtSg4y7JDXIuEtSg4y7JDXIuEtSg4y7JDXIuEtSg4y7JDXIuEtSg4y7JDXIuEtSg4y7JDXIuEtS\\ng4y7JDXIuEtSg4y7JDXIuEtSg4y7JDXIuEtSg3qKe5KLkxxKMpNk572se26SSjLZvxElSUu1aNyT\\nrAF2AZcAW4DLk2xZYN3ZwJXAp/s9pCRpaXo5cr8AmKmqO6rqbmAPcNkC6/4UeB1wVx/nkySdhl7i\\nvgE43LU929n3A0meAGysqhvv7YmSbE8ynWT66NGjSx5WktSbZV9QTXIf4I3A7y+2tqp2V9VkVU2O\\njY0t96UlSafQS9yPABu7tsc7+046G3gM8NEkXwWeDEx5UVWSBqeXuO8HNifZlGQdsA2YOvlgVX2r\\nqs6tqomqmgBuAbZW1fQZmViStKhF415Vx4EdwD7gNuA9VXUgyTVJtp7pASVJS7e2l0VVtRfYO2/f\\n1adY+/TljyVJWg4/oSpJDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg\\n4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5J\\nDTLuktQg4y5JDeop7kkuTnIoyUySnQs8/jtJvpjkc0k+nmRL/0eVJPVq0bgnWQPsAi4BtgCXLxDv\\n66rqsVX1eOD1wBv7PqkkqWe9HLlfAMxU1R1VdTewB7ise0FVfbtr8yeA6t+IkqSlWtvDmg3A4a7t\\nWeBJ8xcluQJ4BbAOeMZCT5RkO7Ad4LzzzlvqrJKkHvXtgmpV7aqqhwGvAl59ijW7q2qyqibHxsb6\\n9dKSpHl6ifsRYGPX9nhn36nsAX5lOUNJkpanl7jvBzYn2ZRkHbANmOpekGRz1+ZzgNv7N6IkaakW\\nPedeVceT7AD2AWuAa6vqQJJrgOmqmgJ2JHkWcA9wJ/CiMzm0JOne9XJBlaraC+ydt+/qrt+v7PNc\\nkqRl8BOqktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5J\\nDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLuktQg4y5JDTLu\\nktSgnuKe5OIkh5LMJNm5wOOvSHIwyReSfCjJQ/o/qiSpV4vGPckaYBdwCbAFuDzJlnnL/hWYrKrH\\nATcAr+/3oJKk3vVy5H4BMFNVd1TV3cAe4LLuBVX1kar6387mLcB4f8eUJC1FL3HfABzu2p7t7DuV\\nlwI3LfRAku1JppNMHz16tPcpJUlL0tcLqkleAEwCb1jo8araXVWTVTU5NjbWz5eWJHVZ28OaI8DG\\nru3xzr4fkeRZwB8BT6uq7/VnPEnS6ejlyH0/sDnJpiTrgG3AVPeCJD8HvA3YWlVf7/+YkqSlWDTu\\nVXUc2AHsA24D3lNVB5Jck2RrZ9kbgJ8E3pvkc0mmTvF0kqQV0MtpGapqL7B33r6ru35/Vp/nkiQt\\ng59QlaQGGXdJapBxl6QGGXdJapBxl6QGGXdJapBxl6QGGXdJapBxl6QGGXdJapBxl6QGGXdJapBx\\nl6QGGXdJapBxl6QGGXdJapBxl6QGGXdJapBxl6QGGXdJapBxl6QGGXdJapBxl6QGGXdJapBxl6QG\\n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\\nzZnCIQAAAABJRU5ErkJggg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"pd.DataFrame([sz['M']['T'] / sum(sz['M']), sz['W']['T'] / sum(sz['W'])], index=['Minority','White']).plot(kind='bar')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"But how do we know that the drivers in these two groups are really the same? We imagine that there are more tickets given to faster drivers (`MPHOVER` is how much over the speed limit the driver was). Legend also has it that traffic cops are harsher to drivers from out of town (`INTOWN` records where the driver was from.)\\n\",\n    \"\\n\",\n    \"To get a sense of this, let's compare histograms of the two groups.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x1190d4588>\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nUuX/ACKORil7OMZhAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"tw['MPHOVER'].hist()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We've used `MPHOVER` because speed over the limit is probably more interesting than how fast in absolute terms. But checking raw `MPH`, we see a problem with the data: some of the entries don't record the speed! Fortunately, not very many. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x11923f9b0>\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"tw['MPH'].hist()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To see if the distributions are different between white and minorities, let's try plotting them on the same chart.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\nkjqGgySpYzhIkjqGgySpYzhIkjqGgySpYzhIkjqGgySpYzhIkjqGgySpYzhIkjqGgySpM204JNmW\\n5HCSJ4dqZyXZneTZ9ryi1ZPk9iQTSR5PcsHQPptb+2eTbB6q/3qSJ9o+tyfJXA9SkvT2zOSTw9eB\\njSfUbgEeqKp1wANtHeBKYF17bAHugEGYALcCFwEXArceD5TW5neH9jvxtSRJJ9m04VBV3wWOnlDe\\nBGxvy9uBq4fqd9fAQ8DyJOcCVwC7q+poVb0M7AY2tm2/XFUPVVUBdw8dS5K0QGZ7zeGcqjrUll8E\\nzmnLK4EXhtodaLW3qh+YpD6pJFuS7E2y98iRI7PsuiRpOiNfkG7v+GsO+jKT17qzqsaranxsbOxk\\nvKQkLUmzDYeX2pQQ7flwqx8EVg+1W9Vqb1VfNUldkrSAZhsOO4HjdxxtBu4bql/X7lraALzapp/u\\nBy5PsqJdiL4cuL9tey3JhnaX0nVDx5IkLZAzpmuQ5JvAxcDZSQ4wuOvoi8A9SW4Angc+3prvAq4C\\nJoCfAtcDVNXRJJ8H9rR2n6uq4xe5f5/BHVHvAv6iPSRJC2jacKiqa6fYdOkkbQu4cYrjbAO2TVLf\\nC3xwun5Ikk4evyEtSeoYDpKkjuEgSeoYDpKkjuEgSeoYDpKkjuEgSeoYDpKkjuEgSeoYDpKkjuEg\\nSeoYDpKkjuEgSeoYDpKkjuEgSeoYDpKkjuEgSeoYDpKkjuEgSeoYDpKkjuEgSeoYDpKkjuEgSeoY\\nDpKkjuEgSeoYDpKkzkjhkOSHSZ5I8liSva12VpLdSZ5tzytaPUluTzKR5PEkFwwdZ3Nr/2ySzaMN\\nSZI0qjPm4Bj/vKp+NLR+C/BAVX0xyS1t/dPAlcC69rgIuAO4KMlZwK3AOFDAI0l2VtXLc9A3TWLr\\n7mdG2v/my94/Rz2RdKqaj2mlTcD2trwduHqofncNPAQsT3IucAWwu6qOtkDYDWych35JkmZo1HAo\\n4L8neSTJllY7p6oOteUXgXPa8krghaF9D7TaVHVJ0gIZdVrpN6rqYJJ/COxO8jfDG6uqktSIr/H/\\ntQDaAnDeeefN1WElSScY6ZNDVR1sz4eBPwMuBF5q00W058Ot+UFg9dDuq1ptqvpkr3dnVY1X1fjY\\n2NgoXZckvYVZh0OSdyf5B8eXgcuBJ4GdwPE7jjYD97XlncB17a6lDcCrbfrpfuDyJCvanU2Xt5ok\\n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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"w_over = tw[tw['MINORITY']=='W']['MPHOVER'].dropna()  # need dropna because some rows don't record speed\\n\",\n    \"m_over = tw[tw['MINORITY']=='M']['MPHOVER'].dropna()\\n\",\n    \"\\n\",\n    \"bins = np.linspace(0, 100, 20)\\n\",\n    \"plt.hist(w_over,bins,alpha=0.5)\\n\",\n    \"plt.hist(m_over,bins,alpha=0.5)\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Still very hard to see, because the scaling is so different. Let's normalize the histograms to display percentages instead of counts.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(array([  2.20001586e-03,   4.55674518e-02,   6.66936315e-02,\\n\",\n       \"          5.09318741e-02,   1.58973749e-02,   5.50003965e-03,\\n\",\n       \"          2.03426124e-03,   6.78087081e-04,   3.01372036e-04,\\n\",\n       \"          9.04116108e-05,   4.52058054e-05,   3.01372036e-05,\\n\",\n       \"          0.00000000e+00,   1.50686018e-05,   1.50686018e-05,\\n\",\n       \"          0.00000000e+00,   0.00000000e+00,   0.00000000e+00,\\n\",\n       \"          0.00000000e+00]),\\n\",\n       \" array([   0.        ,    5.26315789,   10.52631579,   15.78947368,\\n\",\n       \"          21.05263158,   26.31578947,   31.57894737,   36.84210526,\\n\",\n       \"          42.10526316,   47.36842105,   52.63157895,   57.89473684,\\n\",\n       \"          63.15789474,   68.42105263,   73.68421053,   78.94736842,\\n\",\n       \"          84.21052632,   89.47368421,   94.73684211,  100.        ]),\\n\",\n       \" <a list of 19 Patch objects>)\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nyP8DiTVfuyhAGRMAAAAASUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.hist(w_over,bins,alpha=0.5,density=True)\\n\",\n    \"plt.hist(m_over,bins,alpha=0.5,density=True)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Hmm, they look pretty close. The minorities plot has a slightly fatter tail, so that's some evidence that they're driving faster, but it doesn't seem to be a huge difference. Let's take a look at the averages, just to get another sense.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"15.066798170895723\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"w_over.mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"15.575303354746609\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"m_over.mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"So, about half a mile an hour on average difference. Still, this could make the difference if, for example, it pushes a lot of drivers greater than some threshold like 20 mph over the limit. We're going to need to untangle the effects here.\\n\",\n    \"\\n\",\n    \"In fact there could be all sorts of things going on here. Age and sex could be factors. In town or out of town drivers could matter. The `AGENCY` column records whether the stop was made by Massechusets state police, Boston police, or all other police departments, and that could matter both in terms of how the different agencies operate and in terms of who is driving within their jurisdiction. \\n\",\n    \"\\n\",\n    \"For our purposes, bias means that minorities get a ticket more often than white people *when everything else is equal.* Is everything else equal? Let's plot a pile of histograms to take a look.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def comparehist(colname):\\n\",\n    \"    w = tw[tw['MINORITY']=='W'][colname].dropna()\\n\",\n    \"    m = tw[tw['MINORITY']=='M'][colname].dropna()\\n\",\n    \"    \\n\",\n    \"    if tw[colname].dtype == np.float64:\\n\",\n    \"        # it's numeric, plot a histogram\\n\",\n    \"        bins = np.linspace(0, 100, 20)\\n\",\n    \"        plt.hist(w,bins,alpha=0.5,density=True)\\n\",\n    \"        plt.hist(m,bins,alpha=0.5,density=True)\\n\",\n    \"    else:\\n\",\n    \"        # if not numerican, assume it's categorical and plot a bar chart of value counts normalized to percentages\\n\",\n    \"        wc = w.value_counts()\\n\",\n    \"        wc /= sum(wc)\\n\",\n    \"        plt.bar(wc.index, wc, alpha=0.5)\\n\",\n    \"        mc = m.value_counts()\\n\",\n    \"        mc /= sum(mc)\\n\",\n    \"        plt.bar(mc.index, mc, alpha=0.5)\\n\",\n    \"        \\n\",\n    \"    plt.title(colname)\\n\",\n    \"    plt.show()\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\nRK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nyLOQgx2oxrsAAAAASUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n1YnPAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nSUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nrkJggg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"comparehist('AGE')\\n\",\n    \"comparehist('SEX')\\n\",\n    \"comparehist('MPH')\\n\",\n    \"comparehist('MPHOVER')\\n\",\n    \"comparehist('AGENCY3')\\n\",\n    \"comparehist('INTOWN')\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"What can we say here? The minority drivers in this sample have more people in their 20s, skew male, are going slightly faster when they're pulled over, are less likely to be stopped by local police and more likely to be stopped by Boston police, and tend to be out of town more often. Any or all of these effects could account for the difference in ticketing rates. There could even be interactions here: suppose Boston police are harder on people who drive more than 10 mph over the limit. These minority drivers are both more commonly in Boston and going faster on average.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Enter logistic regression\\n\",\n    \"We're going to use regression to try to analyze the relationships between the variables and whether someone gets a ticket. But everything is going to be a little bit different than last class because the variable we are going to try to predict is binary: it's a yes/no, did they get a ticket or not, instead of a numeric value.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.linear_model import LinearRegression,LogisticRegression\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To set up the regression, let's look at a graph of MPH over the limit on the x axis, vs. whether the driver got a ticket on the y axis, represented as 0 or 1. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# add a column that is 1 if they got a ticket (not a warning)\\n\",\n    \"tw['BUSTED'] = tw['TYPE'].replace({'W':0, 'T':1})\\n\",\n    \"\\n\",\n    \"# Remove rows where MPH is unknown\\n\",\n    \"tw = tw[~tw['MPHOVER'].isnull()].reset_index()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# sort by MPHOVER (makes the plotting below simpler)\\n\",\n    \"tw = tw.sort_values(by='MPHOVER')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x11dbdbf28>\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"x = tw[['MPHOVER']].values\\n\",\n    \"y = tw[['BUSTED']].values\\n\",\n    \"tw.plot(kind='scatter',x='MPHOVER',y='BUSTED')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This has a general \\\"upward slope.\\\" Let's use linear regression to try to fit a trend line to it.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/Users/jonathanstray/anaconda/lib/python3.6/site-packages/sklearn/linear_model/base.py:509: RuntimeWarning: internal gelsd driver lwork query error, required iwork dimension not returned. This is likely the result of LAPACK bug 0038, fixed in LAPACK 3.2.2 (released July 21, 2010). Falling back to 'gelss' driver.\\n\",\n      \"  linalg.lstsq(X, y)\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[<matplotlib.lines.Line2D at 0x119907fd0>]\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\niEiX/w8wQ1buZNiSawAAAABJRU5ErkJggg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"lm = LinearRegression()\\n\",\n    \"lm.fit(x,y)\\n\",\n    \"tw.plot(kind='scatter',x='MPHOVER',y='BUSTED')\\n\",\n    \"plt.plot(x,lm.predict(x),'-',color='m')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is a little strange, because we're trying to predict binary outcome with a straight line. If you like, you can imagine that whenever this line is 0.5 or greater, we guess \\\"got a ticket.\\\" But really we should use a model that always predicts a value between 0 and 1 -- a probability. \\n\",\n    \"\\n\",\n    \"To do this we fit a \\\"logistic\\\" function, not a line. This is a function which is an S-shape, and turns any number into a number from 0 to 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[<matplotlib.lines.Line2D at 0x11995f3c8>]\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAXcAAAD8CAYAAACMwORRAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBo\\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAH/xJREFUeJzt3Xt4nHWd9/H3dyanNj2kbdJzSwKU\\n0nIoraGAoKIUKIggeALWXd3qsrvK7nrtiouPPjxe6q6Lrj7qyqqssnhAEHgAq5SWgyCLQG2hB5qe\\nSM9Jm2Np2iZpDjPf54+ZlCEkzTSZyT0z+byua6779JvMN/fc88md39wHc3dERCS3hIIuQEREUk/h\\nLiKSgxTuIiI5SOEuIpKDFO4iIjlI4S4ikoMU7iIiOUjhLiKSgxTuIiI5KC+oFy4tLfXy8vKgXl5E\\nJCu98sorTe5eNlC7wMK9vLyctWvXBvXyIiJZycz2JNNO3TIiIjlI4S4ikoMU7iIiOUjhLiKSgxTu\\nIiI5aMBwN7N7zKzBzDb1s9zM7PtmVm1mG81sUerLFBGRk5HMnvu9wNITLL8KmBN/3AL8cOhliYjI\\nUAx4nLu7P29m5Sdoch3wc4/dr+9lMysxs2nufiBFNYpIjuqOROmMROnoShxG6Ox2IlGnKxqlO+J0\\nR6J0RZ1INEokCpGoE3WnO+pE4+NRJzaMvjnu7jgQjcaHTmyeg9Mz5C3TPXpuQdozz4/P75l+6/Le\\n3jK7V6PL5k1hwaySIay5gaXiJKYZwL6E6Zr4vLeFu5ndQmzvntmzZ6fgpUUkKO7OobYuGo500Hik\\ng+bWDg63d3H4WDct7V0cbu+ipb2LI8e6aevspq0zQntXJDaMj0eiI+cezmZvjk8eV5QV4Z40d78b\\nuBugsrJy5LyrIlnI3Wk40sGuplZ2N7Wyu7mN3U2tHGhpp/FIB41HO+iK9P0xLswLMW5UPuNH5TO2\\nKI/RBWEmFhcyuiDM6IIwo+LDwrwwhXkhCuKPwrxwbDxshEMh8sJGfs8wPi9sRigE4ZCRFzJCFnuE\\nQ4YZx6dDITCMkIFZfIhhITBi82LD+Px4+B4fJs6jZ5n1mn7r/EySinCvBWYlTM+MzxORLBGJOjsa\\nj7J+7yHW7TvExppD7Gxspb0rcrxNftiYNXE0M0pGcdrkMUweW0TZ2EImxx+TxhQwblQ+44ryKcoP\\n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\\nByncRURy0P8HWNAvW1ORBcQAAAAASUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"def logistic(x):\\n\",\n    \"    return 1 / (1 + np.exp(-x))\\n\",\n    \"\\n\",\n    \"linear_range = np.linspace(-10,10)\\n\",\n    \"plt.plot(linear_range, logistic(linear_range))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The exact center of this function, at x=0, has a probability of 0.5, meaning \\\"I'm indifferent guessing between these two options.\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.5\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"logistic(0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's apply logistic regression and plot the answer. To interpret the output, we take our normal `y=mx+b` line but run it through the logistic function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/Users/jonathanstray/anaconda/lib/python3.6/site-packages/sklearn/utils/validation.py:578: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().\\n\",\n      \"  y = column_or_1d(y, warn=True)\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[<matplotlib.lines.Line2D at 0x119bf2fd0>]\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\ngg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Run the logistic regression on our data\\n\",\n    \"lm = LogisticRegression()\\n\",\n    \"lm.fit(x,y)\\n\",\n    \"\\n\",\n    \"# plot original data\\n\",\n    \"tw.plot(kind='scatter',x='MPHOVER',y='BUSTED')\\n\",\n    \"\\n\",\n    \"# Now plot the prediction of the fitted model\\n\",\n    \"m = lm.coef_[0]\\n\",\n    \"b = lm.intercept_\\n\",\n    \"line_y = m*x+b\\n\",\n    \"prediction = logistic(line_y) \\n\",\n    \"plt.plot(x, prediction, '-', color='m')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can do the same thing with the `predict_proba` function (though it returns two columns: one is the probability of  FALSE and the other is the probability of TRUE, so we plot only the second column)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[<matplotlib.lines.Line2D at 0x11e032470>]\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\ngg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"tw.plot(kind='scatter',x='MPHOVER',y='BUSTED')\\n\",\n    \"plt.plot(x, lm.predict_proba(x)[:,1], '-', color='m')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Odds ratios\\n\",\n    \"\\n\",\n    \"Here's a useful fact: the \\\"slope\\\" coefficients of a logistic regression means something when the indepenent variable is binary: it's the *odds ratio*.\\n\",\n    \"\\n\",\n    \"Suppose we have a dinner party where each person eats chicken or fish. But oh no! Some people got sick afterwards. To see if it was related to what they ate, we can calculate the odds ratio.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>fish</th>\\n\",\n       \"      <th>sick</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>5</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   fish  sick\\n\",\n       \"0     0     1\\n\",\n       \"1     0     0\\n\",\n       \"2     0     0\\n\",\n       \"3     1     0\\n\",\n       \"4     1     1\\n\",\n       \"5     1     1\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# the fish column is 0 if they ate chicken, 1 if fish\\n\",\n    \"dinner = pd.DataFrame([[0,1],[0,0],[0,0],[1,0],[1,1],[1,1]], columns=['fish','sick'])\\n\",\n    \"dinner\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The \\\"odds\\\" of getting sick if you ate chicken are just the number of people who ate chicken and got sick, divided by the number of people who ate chicken and did not get sick.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>sick</th>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <th>1</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>fish</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"sick  0  1\\n\",\n       \"fish      \\n\",\n       \"0     2  1\\n\",\n       \"1     1  2\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# useful little function\\n\",\n    \"ct = pd.crosstab(dinner.fish, dinner.sick)\\n\",\n    \"ct\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.5\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# odds of getting sick if you ate chicken\\n\",\n    \"chicken_odds = ct[1][0] / ct[0][0]\\n\",\n    \"chicken_odds\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2.0\"\n      ]\n     },\n     \"execution_count\": 39,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# odds of getting sick if you ate fish\\n\",\n    \"fish_odds = ct[1][1] / ct[0][1]\\n\",\n    \"fish_odds\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Then \\\"odds ratio\\\" is, yup, the ratio of these sets of odds. It measures how your odds of getting sick *changed* if you ate the fish. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4.0\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"fish_odds / chicken_odds\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now let's do a logistic regression to predict who gets sick\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/Users/jonathanstray/anaconda/lib/python3.6/site-packages/sklearn/utils/validation.py:578: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().\\n\",\n      \"  y = column_or_1d(y, warn=True)\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"LogisticRegression(C=100000.0, class_weight=None, dual=False,\\n\",\n       \"          fit_intercept=True, intercept_scaling=1, max_iter=100,\\n\",\n       \"          multi_class='ovr', n_jobs=1, penalty='l2', random_state=None,\\n\",\n       \"          solver='liblinear', tol=0.0001, verbose=0, warm_start=False)\"\n      ]\n     },\n     \"execution_count\": 35,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x=dinner[['fish']].values\\n\",\n    \"y=dinner[['sick']].values\\n\",\n    \"lm = LogisticRegression(C=1e5) # this C thing... we just need some large value here, it's a long story\\n\",\n    \"lm.fit(x,y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[ 3.99979205]])\"\n      ]\n     },\n     \"execution_count\": 36,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# To get the odds ratio, we use the following formula:\\n\",\n    \"np.exp(lm.coef_)\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Controlling for other variables\\n\",\n    \"\\n\",\n    \"We can feed as many independent variables as we like into linear regression. With two variables, instead of fitting a plane to the data we are fitting a curved surface. \\n\",\n    \"\\n\",\n    \"But here's the cool thing: just like linear regression each coefficient tells us how much that independent variable effects the probability of getting a ticket *if all other variables stay the same.*\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Code these variables a binary\\n\",\n    \"tw.SEX = tw.SEX.replace({'M':0,'F':1, 'U':0})\\n\",\n    \"tw.MINORITY = tw.MINORITY.replace({'W':0,'M':1})\\n\",\n    \"tw.INTOWN = tw.INTOWN.replace({'N':0,'Y':1, 'U':0})\\n\",\n    \"\\n\",\n    \"# remove unknown ages\\n\",\n    \"tw = tw[~tw.AGE.isnull()].reset_index()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/Users/jonathanstray/anaconda/lib/python3.6/site-packages/sklearn/utils/validation.py:578: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().\\n\",\n      \"  y = column_or_1d(y, warn=True)\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>MPHOVER</th>\\n\",\n       \"      <th>MINORITY</th>\\n\",\n       \"      <th>SEX</th>\\n\",\n       \"      <th>AGE</th>\\n\",\n       \"      <th>INTOWN</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1.169127</td>\\n\",\n       \"      <td>1.461251</td>\\n\",\n       \"      <td>0.72036</td>\\n\",\n       \"      <td>0.985098</td>\\n\",\n       \"      <td>0.508197</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"    MPHOVER  MINORITY      SEX       AGE    INTOWN\\n\",\n       \"0  1.169127  1.461251  0.72036  0.985098  0.508197\"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Do a logistic regression on many fields at the same time\\n\",\n    \"fields = ['MPHOVER','MINORITY','SEX', 'AGE', 'INTOWN']\\n\",\n    \"x = tw[fields].values\\n\",\n    \"y = tw[['BUSTED']].values\\n\",\n    \"lm = LogisticRegression() \\n\",\n    \"lm.fit(x,y)\\n\",\n    \"       \\n\",\n    \"# print out the odds ratios for each variable\\n\",\n    \"results = pd.DataFrame(np.exp(lm.coef_), columns=fields)\\n\",\n    \"results\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-3/week-3-2-homework.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Week 3-2 - Logistic Regression - homework\\n\",\n    \"\\n\",\n    \"In this assignment, you'll do a logistic regression to look at the effect of sex and class on survival on the titanic, by computing odds ratios.\\n\",\n    \"\\n\",\n    \"Some references:\\n\",\n    \"\\n\",\n    \"- [What are odds vs. probability?](https://towcenter.gitbooks.io/curious-journalist-s-guide-to-data/content/analysis/counting_possible_worlds.html)\\n\",\n    \"- An example of a story based on an odds ratio: [Deadly force in black and white](https://www.propublica.org/article/deadly-force-in-black-and-white)\\n\",\n    \"- [Building A Logistic Regression in Python, Step by Step](https://towardsdatascience.com/building-a-logistic-regression-in-python-step-by-step-becd4d56c9c8) Here it's being used for prediction by looking at the output, whereas we are using it for explanation by looking at the coefficient, but setting it up works the same.\\n\",\n    \"- [How do I interpret odds ratios in logistic regression?](https://stats.idre.ucla.edu/other/mult-pkg/faq/general/faq-how-do-i-interpret-odds-ratios-in-logistic-regression/) This one's a little more technical, but has good examples.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np \\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Load the data\\n\",\n    \"\\n\",\n    \"Read in the `titanic.csv` data set again.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Load titanic.csv\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The first thing we need to do is code the pclass and gender variables numerically. Let's use the following scheme:\\n\",\n    \"- pclass: 1,2,3\\n\",\n    \"- gender: 0=male, 1=female, and let's call the column called \\\"female\\\" to remind us which is which\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# recode the pclass and gender variables so they are numeric\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 2. Looking at one variable at a time\\n\",\n    \"\\n\",\n    \"First, do a logistic regression of the `female` variable alone. Below is some code that will help you plot the result.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# function to plot single variable logistic regression results\\n\",\n    \"def plot_logistic_regression(x, y, lm):\\n\",\n    \"\\n\",\n    \"    # plot original data\\n\",\n    \"    plt.scatter(x=x,y=y)\\n\",\n    \"\\n\",\n    \"    # Now plot the prediction of the fitted model\\n\",\n    \"    predict_x = np.linspace(x.min(), x.max(), 10).reshape(-1, 1) # some evenly spaced points to predict\\n\",\n    \"    predict_y = lm.predict_proba(predict_x)[:,1] #  probability of result = true\\n\",\n    \"    plt.plot(predict_x, predict_y, '-', color='m')\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Do a logistic regression of survived against pclass\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The plot may not look like much, because there are only two values of `female` so most of the dots are on top of eachother. But the regression should capture the fact that more women survived than men, by sloping upward. \\n\",\n    \"\\n\",\n    \"Most of the information will be in the resulting odds ratio. This will tell us how much the odds of surivial differ between men and women. Compute it now.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What is the odds ratio of on the class variable?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 3. Looking at two variables at a time\\n\",\n    \"\\n\",\n    \"We know from the earlier assignment that class also affects survival, so let's add that to our model. Compute a logistic regression on the variables `pclass` and `female`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Logistic regression on two variables\\n\",\n    \"\\n\",\n    \"    \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now compute the odds ratio on each variable. You can print it out slightly prettier by using the trick in the class where we changed it into a dataframe.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# print out the odds ratios for each variable\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 4. What does this mean\\n\",\n    \"\\n\",\n    \"What is the odds ratio on the `pclass` variable? What happens to the odds of survival when we move from 1st to 2nd or from 2nd to 3rd class?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Bonus: How much effect did opinion of Obamacare have in the 2016 election?\\n\",\n    \"\\n\",\n    \"Let's look at votes for Trump in the ANES data again. Try it on the following columns:\\n\",\n    \"\\n\",\n    \"- Who did you vote for? This will be our dependent variable\\n\",\n    \"- Do you approve or disapprove of Obamacare?\\n\",\n    \"- What political party are you registered for?\\n\",\n    \"\\n\",\n    \"Start by doing a one variable logistic regression on vote vs. health care. Then add in political party, so that we are comparing the effect of opinion on health care only within voters who are registered to the same party. What happens to the odds ratio on the health care variable when we take into account which party they are registered to? Why?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# The columns we'll use\\n\",\n    \"voted_col = 'V162034a' # 1=Clinton, 2=Trump, 3=Johnson, 4=Stein, negative numbers = didn't vote or won't say\\n\",\n    \"health_care_col = 'V161085' # pre-election survey. 1=approve, 2=dissaprove,  negative numbers = didn't vote or won't say\\n\",\n    \"registered_col = 'V161019' # 1=democratic, 2=republican, 3=none, 4=other, negative = not applicable or refused\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# load the data and keep only the columns we need\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# throw out all rows where:\\n\",\n    \"# - didn't vote Dem or GOP\\n\",\n    \"# - wasn't registered demo or GOP \\n\",\n    \"# - answer on health care question is not approve or disaprove\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Recode each variable so it's 0-1 instead of 1-2\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Do a single variable logistic regression of vote on health care, and plot\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# What is the odds ratio of voting for Trump?\\n\",\n    \"# That is, starting with the odds of voting for Trump if you approve of Obamacare,  \\n\",\n    \"# how do the odds change if you dissaprove of Obamacare?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Do a multiple variable logistic regression of vote on health care and party registration\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# What is the odds ratio of voting for Trump if you dissaprove of Obamacare now?\\n\",\n    \"# What is the odds ratio of voting for Trump if you are a registered Republican?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Explain what you've learned from the single and multiple variable regression \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"What happens to the odds ratio on the health care variable when we take into account which party they are registered to? Why?\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.8.5\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 1\n}\n"
  },
  {
    "path": "week-4/GSS-spending.csv",
    "content": "Gss year for this respondent                       ,Welfare,Highways and bridges,Social security,Mass transportation,Parks and recreation,Assistance for childcare,Supporting scientific research        ,Developing alternative energy sources,Foreign aid,\"Military, armaments, and defense\",Improving the conditions of blacks,Respondent id number,Space exploration program,Improving & protecting environment,Improving & protecting nations health,Solving problems of big cities,Halting rising crime rate,Dealing with drug addiction,Improving nations education system,Ballot used for interview\r\n2016,About right,About right,Too much,Too little,About right,About right,About right,Too little,Too much,Too much,Too little,1,Too little,Too little,About right,About right,Too little,Too much,About right,Ballot a\r\n2016,Don't know,Too little,Don't know,Too little,Too much,Too little,Don't know,Too little,Don't know,Too much,Too little,2,Don't know,Don't know,Too little,Don't know,Too much,Too little,Too little,Ballot b\r\n2016,Don't know,Too little,Too little,Don't know,About right,Don't know,Don't know,Too little,Too much,Don't know,About right,3,Too little,About right,Too little,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,Too much,Too little,Too much,Too little,Too little,Too much,Too little,About right,4,About right,About right,Too much,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too much,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,5,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too much,Too little,6,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,About right,Too little,Too little,About right,Too little,Too little,7,About right,About right,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too much,About right,Too little,Too much,About right,Too little,Too much,About right,About right,About right,About right,8,About right,Too little,About right,Too little,About right,Too much,Too little,Ballot c\r\n2016,Too much,Too little,About right,About right,Too little,Too little,Don't know,Too little,About right,About right,Don't know,9,About right,Too little,About right,About right,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,10,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too little,About right,About right,Too much,Not applicable,Not applicable,Not applicable,11,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,About right,Too little,About right,About right,About right,About right,About right,12,Too little,Too little,About right,Too little,Too much,Too much,About right,Ballot a\r\n2016,Too little,Too much,Too little,Too little,Too little,Too little,Too much,Too little,Too much,Too much,Too little,13,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,About right,Don't know,About right,About right,About right,Don't know,Don't know,Too much,About right,Too little,14,Don't know,Don't know,Too little,Too much,About right,Too little,About right,Ballot c\r\n2016,Too little,Too little,About right,Too much,About right,Too little,Too little,Too little,Too much,About right,Too little,15,Too much,Too little,Too little,Too little,Too little,Too much,Too little,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,About right,About right,Too much,About right,Too little,16,About right,About right,Too little,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too much,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,17,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too much,Too little,Too little,Too little,About right,About right,About right,Too much,About right,Too little,18,Too much,About right,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,19,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,About right,Too little,Too little,About right,About right,About right,About right,Too little,20,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,About right,About right,Too little,Too much,Too little,Too little,21,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Too little,About right,Don't know,About right,Too little,Too little,Don't know,Don't know,Don't know,Don't know,Too little,22,Don't know,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,23,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,24,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,Too little,Too much,Too little,About right,Too much,Too little,25,About right,Too little,Too little,About right,Too little,About right,About right,Ballot c\r\n2016,Not applicable,About right,Too little,Too much,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,26,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,No answer,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,27,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Don't know,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,28,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,About right,About right,About right,Too little,Too little,Too much,About right,Too little,29,Too much,Too little,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,30,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,About right,About right,Too little,Too little,Too little,About right,Too much,Too little,31,Too little,Too little,Too little,About right,About right,Too little,Too little,Ballot b\r\n2016,Too much,About right,Too little,About right,Too little,Too little,Too little,About right,About right,Too little,Too little,32,Too little,About right,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,About right,About right,Too little,About right,About right,About right,About right,About right,Too much,Too little,About right,33,About right,About right,Too much,About right,About right,About right,About right,Ballot a\r\n2016,Not applicable,About right,Too much,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,34,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,35,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,About right,Too little,About right,Too little,About right,About right,Too little,Too little,36,Too little,About right,Too much,About right,Too little,About right,Too much,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,37,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,About right,Don't know,Too little,About right,Don't know,Too little,Not applicable,Not applicable,Not applicable,38,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,About right,Too little,About right,Too little,Too much,Too little,About right,39,Too much,About right,Too much,About right,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too little,Too little,About right,About right,Too little,About right,Too little,About right,Too little,Too little,40,About right,About right,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Too much,Too much,About right,Too much,About right,Too much,About right,About right,Too much,About right,Too much,41,Don't know,Too little,Too little,Too much,Too little,Too little,Too little,Ballot c\r\n2016,About right,Too much,Too little,About right,About right,Too little,About right,Too much,About right,Too much,About right,42,Too much,Don't know,About right,About right,About right,About right,Too little,Ballot a\r\n2016,About right,About right,Don't know,Too little,Too little,Too little,Too little,Don't know,Don't know,Too little,About right,43,About right,About right,Don't know,Don't know,About right,About right,About right,Ballot b\r\n2016,Too little,About right,Too little,Too little,About right,Too little,About right,Too little,Don't know,Too much,Too little,44,About right,Too little,Too little,About right,Too much,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,45,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,46,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,About right,About right,About right,Too little,Too little,About right,About right,Too little,47,Too little,Too little,Too little,About right,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,48,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too much,Too little,About right,Don't know,Too little,Too little,Too much,About right,About right,49,Too little,Too little,Too little,About right,About right,About right,About right,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,50,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too much,Too little,About right,Too little,About right,About right,Don't know,Too little,Too little,51,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too little,Too little,About right,Too much,About right,Too little,Too little,Too little,About right,Too much,Too little,52,About right,Too little,Too little,About right,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too much,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,53,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too much,Too much,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,54,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,Too much,About right,About right,Too little,About right,Too little,About right,55,Too much,Too little,Too little,Too little,Too little,About right,About right,Ballot a\r\n2016,About right,About right,Too little,About right,About right,About right,Too little,About right,Too much,About right,Too much,56,Too much,About right,Too little,About right,About right,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,57,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,58,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Don't know,Too little,Don't know,About right,About right,Too little,About right,About right,Don't know,Too much,Too little,59,Too little,Too little,Too much,No answer,No answer,Too little,Don't know,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,60,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,About right,About right,Too little,Too little,About right,Too little,About right,About right,Too little,61,About right,About right,About right,About right,About right,About right,About right,Ballot c\r\n2016,About right,About right,About right,About right,About right,About right,Too little,About right,Too much,Too much,About right,62,About right,About right,About right,About right,About right,Too little,About right,Ballot b\r\n2016,About right,Too little,Too little,Too much,Too little,Too little,Too much,Too much,Too much,About right,Too little,63,Too little,About right,About right,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,64,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,Too much,About right,Too little,About right,Too much,Too little,About right,About right,65,Too much,About right,About right,About right,About right,Too little,About right,Ballot a\r\n2016,Not applicable,About right,Too little,Too much,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,66,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,Too little,About right,Too little,About right,Too little,Too much,Too much,Too much,67,Too much,Too little,About right,About right,About right,No answer,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,68,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,69,About right,About right,About right,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Too much,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,70,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too much,Too little,Too little,Too little,Too little,Don't know,Too little,Too little,71,Too much,About right,About right,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,72,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,No answer,Too little,Too little,Too little,About right,Too little,Don't know,Too little,Too little,Too much,Too little,73,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,74,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,Too little,Too little,Too little,Too little,About right,About right,Too little,75,Too little,Too little,Too much,About right,About right,Too little,Too little,Ballot a\r\n2016,Too much,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,76,About right,About right,About right,About right,About right,About right,About right,Ballot b\r\n2016,Too little,About right,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too much,Too little,77,About right,Too little,Too little,Don't know,Too much,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,78,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,About right,About right,About right,Too little,About right,Too little,About right,Too much,Too little,79,Too little,Too little,Too much,Too little,About right,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,80,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too much,About right,About right,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,81,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,82,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,83,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,Too much,Too little,About right,About right,Not applicable,Not applicable,Not applicable,84,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Don't know,Too little,About right,Don't know,Don't know,Too little,Too much,Too much,Too little,85,Don't know,Too little,Too little,Too little,Don't know,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,About right,Too little,About right,Too much,Too little,About right,86,Too much,Too little,Too little,Too little,Too little,About right,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,87,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,Too little,Too little,About right,Too much,About right,88,Don't know,Too little,Too little,Too much,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,About right,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,89,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,90,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too little,About right,About right,Too little,91,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,Too little,Too little,About right,About right,About right,Too little,Too little,About right,Too little,92,Don't know,Too little,Don't know,Too little,Too little,Too little,About right,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,93,Don't know,Too little,Too little,Too little,Don't know,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,94,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,Too little,About right,Too much,About right,Too little,Too much,About right,Too much,95,About right,About right,About right,Too little,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,96,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,Too little,About right,Don't know,About right,Too little,Too much,Too much,Don't know,97,About right,Too little,About right,Too little,Too little,Don't know,Don't know,Ballot b\r\n2016,Too little,Too little,About right,Too little,About right,Too little,About right,About right,Too little,Too much,Too little,98,Too little,Too little,Too little,Too little,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,99,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,Too little,Too little,Too little,Too much,Too much,Too little,100,Too little,Too little,Too little,About right,About right,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,Too little,Too much,Too much,Too little,101,Too much,About right,Too much,Too much,Too much,Too much,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,102,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,103,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Don't know,Too little,Don't know,Don't know,Don't know,Don't know,About right,About right,Too much,Don't know,Don't know,104,Too much,Don't know,Too little,Don't know,Don't know,Don't know,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,105,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,Too much,About right,Don't know,Too much,About right,Not applicable,Not applicable,Not applicable,106,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,Too much,Too much,Too little,Too little,107,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Too little,Too little,About right,Too little,Too little,Too little,About right,Too little,Too much,About right,Too little,108,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too little,Too little,Too little,Too little,About right,About right,About right,About right,About right,About right,About right,109,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,Too little,About right,About right,About right,110,About right,Too little,About right,About right,About right,About right,Too little,Ballot c\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,About right,About right,About right,About right,Too little,111,Too much,Too little,Too little,About right,About right,About right,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,112,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,113,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,114,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too much,About right,About right,Too little,Too little,About right,About right,About right,About right,About right,115,About right,About right,Too little,About right,About right,About right,Too little,Ballot b\r\n2016,About right,Too much,About right,About right,About right,Too little,About right,Too little,About right,Too much,Too little,116,Don't know,About right,Too little,Too little,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,117,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too little,Too little,118,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too much,Too little,Too little,About right,Too little,Too little,Too little,About right,About right,About right,119,About right,Too little,Too little,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,120,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,Too little,Too little,Don't know,About right,Too little,Too much,About right,About right,121,Too little,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too much,Don't know,About right,Not applicable,Not applicable,Not applicable,122,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,About right,Too little,Too little,Too little,Too little,About right,About right,About right,123,Too little,Too little,Too much,About right,About right,About right,Too much,Ballot c\r\n2016,About right,About right,Too little,About right,Too little,Too little,About right,About right,Too much,About right,Too little,124,Too much,About right,Too little,Too little,About right,Too little,About right,Ballot a\r\n2016,About right,Too little,About right,About right,Too little,Too little,Too little,Too little,About right,Too little,Too little,125,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,126,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,About right,Too little,Too much,About right,Too much,Too little,Too little,127,About right,About right,Too little,Too much,Too little,Too little,Too much,Ballot a\r\n2016,About right,About right,About right,Too little,About right,Too little,About right,About right,Too much,Too much,Too little,128,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,129,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,130,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,131,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too little,132,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too little,About right,Too little,About right,Too little,Too little,About right,About right,About right,About right,Too little,133,About right,About right,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,About right,Too much,About right,Too little,134,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,135,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,Too little,Too little,Too little,About right,Too much,About right,136,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,137,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,138,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,139,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too much,Too little,Too little,Too little,Too little,Too much,Too little,Too much,140,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,Too little,Don't know,Too much,Too much,Too little,About right,141,About right,Too much,Too much,Too little,Too little,About right,Too much,Ballot a\r\n2016,Not applicable,Don't know,Too little,Too much,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,142,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,143,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,Don't know,About right,About right,About right,About right,Too much,About right,About right,144,About right,About right,Too little,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,About right,Too much,About right,Too little,Too little,Too much,Not applicable,Not applicable,Not applicable,145,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,Too little,About right,Too little,About right,About right,About right,About right,Too little,146,About right,Too little,About right,About right,Too little,Too little,Too little,Ballot b\r\n2016,Too much,About right,About right,About right,About right,Don't know,Too little,Too little,About right,Too much,Don't know,147,About right,Too little,Too little,About right,About right,Don't know,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,148,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,Too little,Don't know,Too little,Too little,149,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,150,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,151,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too much,Too little,Too little,Too little,About right,Too little,Don't know,Too much,Too little,152,Don't know,Too little,Too little,Too little,About right,Too little,Too little,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,Too little,153,No answer,About right,About right,About right,Too little,About right,About right,Ballot c\r\n2016,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too little,About right,About right,About right,154,About right,Too little,Too little,Too little,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,155,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too much,Don't know,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,156,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,Too little,About right,About right,Don't know,Don't know,Don't know,157,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,About right,Too much,About right,Too little,Too much,Too little,158,About right,About right,About right,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,159,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,About right,About right,Too little,Too little,Don't know,Too much,Too much,Don't know,160,Too much,Too little,Too much,Too little,Too little,Too little,About right,Ballot a\r\n2016,About right,Too much,About right,About right,About right,Too little,About right,Too little,About right,Too much,Don't know,161,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,162,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,163,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,Too little,Too little,Too little,Too little,About right,About right,Too much,Too little,164,About right,About right,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too much,Don't know,Don't know,Too little,Too much,Don't know,Don't know,Too much,Too much,About right,165,Too much,About right,About right,Too much,Don't know,About right,Too much,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,166,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Don't know,About right,Don't know,Too little,Too little,Too much,Don't know,Too much,Too much,Don't know,167,Don't know,About right,Too little,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Don't know,Don't know,Too little,About right,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,168,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,169,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too much,About right,Too little,Too much,Too little,Too much,Too much,Too little,170,Too much,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too much,Too little,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,171,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,172,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too much,Don't know,Too much,Too little,Too little,Don't know,Don't know,Don't know,Don't know,Don't know,173,Don't know,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too little,About right,Too little,About right,About right,About right,About right,About right,Too much,About right,174,Too little,About right,About right,About right,Too much,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,175,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too little,About right,Too little,Don't know,Too much,Too little,Too little,176,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,177,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,Too little,Too little,Too little,Too little,Too much,Too much,About right,178,Too little,Too little,Don't know,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,About right,Too little,About right,Too little,Too little,179,Don't know,Don't know,Too little,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,180,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too much,Too little,Too little,Too little,Too little,Too much,Too little,Too little,Too little,181,About right,About right,Too much,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,About right,Too little,Too little,About right,Too little,Too little,182,Too little,Don't know,Don't know,About right,Too little,Don't know,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too much,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,183,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,Too much,Too little,Too much,About right,About right,Too much,Too much,About right,184,Too much,Too little,About right,Too much,Too little,Too much,Too little,Ballot b\r\n2016,Too little,Too much,Too little,Too much,Too much,About right,About right,Too little,Too much,About right,Too little,185,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too much,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,186,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,187,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,188,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,189,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too much,Too little,Too much,Don't know,Don't know,Not applicable,Not applicable,Not applicable,190,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,Too little,About right,Don't know,Don't know,Not applicable,Not applicable,Not applicable,191,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,Too little,Too little,About right,About right,About right,Too much,Too much,192,Too much,Too little,Too little,About right,Too little,About right,Too little,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,193,About right,About right,About right,Don't know,Too little,About right,About right,Ballot c\r\n2016,Too much,About right,About right,About right,About right,About right,Don't know,About right,About right,Too much,About right,194,Too much,About right,About right,About right,About right,Too little,About right,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,195,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,196,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,197,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,198,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too much,Don't know,199,Don't know,Too little,Too little,Too little,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,200,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too little,201,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Don't know,About right,Not applicable,Not applicable,Not applicable,202,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,203,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too much,Too little,About right,About right,About right,Too little,Too little,About right,About right,204,Too much,Too little,About right,About right,Too little,About right,About right,Ballot b\r\n2016,About right,Too little,Too little,Too little,Too little,About right,Too little,Too little,No answer,Too much,No answer,205,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,206,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,Too little,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,207,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too much,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,208,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,About right,About right,About right,Too little,Too much,Too much,Too little,209,About right,Too little,Too little,About right,Too much,Too much,Too little,Ballot b\r\n2016,Not applicable,About right,Too much,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,210,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,Too much,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,211,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,Too little,Too little,About right,About right,Too little,212,About right,Too little,About right,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,213,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,Too little,Too little,About right,About right,Too little,About right,About right,About right,214,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,215,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,216,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,About right,About right,Too little,About right,Too little,About right,217,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Don't know,About right,About right,Don't know,Too much,Too much,Not applicable,Not applicable,Not applicable,218,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,About right,Too little,About right,Too little,Too little,Too little,About right,About right,About right,219,About right,About right,Too little,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,220,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,No answer,Too much,Too much,Too little,Too much,About right,About right,Too little,Too much,221,About right,Too little,About right,Too little,About right,About right,Too little,Ballot b\r\n2016,Too much,Too much,About right,Don't know,About right,About right,Too much,Too little,About right,About right,About right,222,Too much,Too little,Too much,Too little,About right,About right,Too much,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,223,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,Too much,About right,About right,Too little,About right,Too much,About right,About right,224,About right,About right,About right,About right,About right,About right,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,225,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,Too much,Too little,Too little,Too little,About right,Too much,226,Too little,About right,Too much,Too much,About right,Too much,About right,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,227,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,Don't know,Don't know,Don't know,Too little,About right,About right,Too much,About right,228,Too little,About right,Too little,Too little,About right,Too little,Too little,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too little,Too little,Too much,Too little,About right,229,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too much,About right,About right,Don't know,About right,Not applicable,Not applicable,Not applicable,230,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,231,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,232,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,Too little,About right,Don't know,About right,Too little,About right,Too little,Don't know,233,Too little,About right,Too much,Too little,About right,About right,Too little,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,Too little,About right,About right,About right,About right,Too little,234,About right,About right,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,235,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,Too little,About right,Too little,Too little,Too little,Too much,About right,Too little,236,Too little,Too little,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,About right,About right,Too little,About right,About right,About right,About right,About right,About right,About right,About right,237,About right,About right,About right,About right,About right,About right,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,238,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Don't know,About right,About right,Too little,Don't know,Too little,Don't know,Too much,Too little,239,Don't know,Too little,About right,Too little,Too much,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Don't know,Don't know,About right,Don't know,240,Too much,Too little,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,241,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too little,Too little,242,Too little,Too little,Too little,Too much,Too little,Too much,Too little,Ballot a\r\n2016,Too much,Don't know,About right,Too little,About right,About right,Don't know,Don't know,Don't know,Too little,About right,243,Don't know,Too little,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,About right,No answer,Too much,Too little,Not applicable,Not applicable,Not applicable,244,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,About right,Don't know,Don't know,Don't know,Too much,Too little,Too much,Too little,About right,245,Too much,Too much,Too much,Too little,About right,Don't know,Don't know,Ballot a\r\n2016,Not applicable,About right,About right,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,246,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,About right,About right,About right,Don't know,About right,Too little,Don't know,247,About right,Too little,Too little,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,248,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,About right,About right,Too little,About right,About right,Don't know,Too little,249,About right,Too little,Too little,Too little,About right,Don't know,Too little,Ballot b\r\n2016,Too much,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,About right,250,Too much,Too little,Too little,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,251,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,252,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,253,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,Too little,About right,About right,About right,Too little,Too much,Too little,About right,254,About right,Too little,Too little,About right,Too little,About right,Too little,Ballot b\r\n2016,Too little,About right,About right,About right,Too much,Too little,Too much,Too much,About right,Too much,Too little,255,About right,Too little,Too little,Too much,About right,Too much,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,256,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,About right,Too little,Too much,About right,Too little,Too much,About right,257,Too little,About right,Too little,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,258,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,Too little,About right,About right,About right,About right,About right,Too little,About right,259,About right,Too much,About right,About right,About right,About right,Too little,Ballot c\r\n2016,Too much,Too little,Too little,Too little,Too little,About right,Too little,About right,Too much,Too little,Don't know,260,About right,Too little,Too little,About right,About right,About right,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,261,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,Too little,About right,About right,About right,Too little,About right,Too much,Too little,262,About right,Too little,Too little,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,263,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,About right,About right,Too little,Too little,Too little,Too little,About right,Too little,264,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Too much,About right,About right,Too little,About right,Too little,About right,Too little,About right,Too little,Too little,265,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,266,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too little,About right,About right,Too little,About right,Too much,Too little,Too much,267,Too much,Too much,Too little,Too little,Too much,Too little,Too little,Ballot a\r\n2016,About right,Too little,About right,About right,Don't know,Don't know,Too much,About right,Too much,Too little,Too little,268,Too much,Don't know,About right,About right,Too little,Too little,Too little,Ballot b\r\n2016,About right,About right,About right,About right,About right,Don't know,About right,About right,Too much,Too much,About right,269,Too much,Too little,About right,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,270,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,271,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too much,Don't know,272,About right,Too little,Too little,Too little,Too much,Too much,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,273,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too much,Too little,About right,About right,Don't know,About right,Not applicable,Not applicable,Not applicable,274,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,Too much,Too little,Too little,About right,Too little,Too much,About right,Too little,275,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,276,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,Too little,Too little,Too little,Too little,Too little,About right,Too much,About right,277,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too much,Too much,Too much,Too little,Too little,278,Too much,Too much,About right,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,279,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too much,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too much,Don't know,280,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Don't know,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,281,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too much,Too much,Too little,Too little,Too much,Too much,Too much,Too little,282,About right,About right,Too little,Too much,Too little,Too much,Too much,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,283,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,284,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,About right,About right,About right,About right,About right,Too little,About right,285,About right,About right,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too much,Too little,Too much,Too little,Too little,286,Too much,About right,Too little,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,287,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,288,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,289,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,Too little,About right,About right,About right,About right,About right,290,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Too little,Too little,About right,Too little,Too little,Don't know,Don't know,Too little,Too much,Too much,Too little,291,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,292,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too little,Too little,About right,Too little,Too little,293,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,294,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,295,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,296,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,Too little,About right,About right,Too little,Too little,Too much,Too much,Too little,297,Too little,Too little,Too little,Too little,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,298,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,299,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,300,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,About right,About right,About right,Too little,About right,About right,Too little,301,About right,Too little,Too little,About right,Too little,Too much,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,302,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,303,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,304,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,305,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,About right,Too little,About right,Too little,About right,Too much,Too much,306,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,Too little,Too little,Too much,Too little,Too little,About right,Too little,Too little,307,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Don't know,Don't know,About right,Don't know,Don't know,Don't know,Not applicable,Not applicable,Not applicable,308,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too much,Too little,About right,About right,About right,Too little,Too little,About right,Too much,About right,309,Too little,Too little,About right,Too little,Too little,About right,Too much,Ballot a\r\n2016,Too much,Don't know,About right,Don't know,About right,About right,Don't know,About right,Don't know,Too little,Too little,310,About right,Too little,About right,About right,Too little,Too much,About right,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,311,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,312,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Not applicable,Not applicable,Not applicable,313,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,Too little,About right,Too little,About right,Too much,About right,314,About right,About right,About right,Too little,Too little,About right,About right,Ballot b\r\n2016,About right,About right,About right,Too little,About right,About right,About right,Too little,Too much,About right,Too little,315,About right,Too little,About right,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Don't know,About right,About right,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,316,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,About right,About right,Too little,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,317,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,318,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,Too much,About right,About right,About right,About right,319,About right,Too little,Too little,About right,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,320,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Don't know,About right,About right,About right,Don't know,About right,About right,Too much,About right,321,Don't know,About right,About right,Too little,About right,Don't know,About right,Ballot c\r\n2016,Not applicable,Don't know,Too little,About right,Too little,Too much,Too much,Too little,Not applicable,Not applicable,Not applicable,322,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,About right,Too little,Too little,Too little,323,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,324,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,About right,About right,About right,Too little,About right,About right,About right,Too much,Too much,325,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,Too little,About right,Too little,Too much,Too little,Too little,326,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,327,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,328,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too much,About right,Too much,Too much,Too little,Too much,About right,Too much,Too much,Too little,329,Too much,Too little,Too little,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Too much,About right,Too much,About right,About right,Too little,About right,About right,Too much,About right,About right,330,Too much,About right,Too much,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,331,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too much,Too much,Too little,About right,Too much,About right,Too much,Too much,About right,332,About right,About right,About right,Too little,About right,About right,About right,Ballot b\r\n2016,Not applicable,About right,Too much,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,333,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too much,Too much,Too much,Too much,Too much,Too much,Too much,About right,Too much,334,About right,Too much,Too much,Too much,Too much,Too much,Too much,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too little,Too much,Not applicable,Not applicable,Not applicable,335,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,Too little,About right,Too little,Too little,About right,About right,About right,About right,336,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,About right,About right,About right,About right,About right,About right,About right,Too much,About right,Too much,337,About right,Too much,Too much,Too much,About right,About right,Too much,Ballot c\r\n2016,About right,About right,Too little,About right,About right,About right,Too little,About right,Too much,Too little,About right,338,Too much,About right,Too much,Too little,Too much,About right,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,339,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,About right,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,340,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,341,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,Too little,About right,About right,About right,Too much,Too little,342,Too much,About right,Too little,About right,About right,About right,Too little,Ballot b\r\n2016,About right,About right,About right,About right,About right,Too little,Too little,Too little,About right,Too little,About right,343,About right,About right,Too little,About right,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,344,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,345,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too much,About right,Too little,Too little,About right,About right,Too little,Too little,Too much,About right,346,Too little,Too little,Too little,About right,Too much,Too little,About right,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,347,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,About right,About right,Too little,Too little,Too little,Too much,Too little,About right,348,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Don't know,About right,Too little,About right,About right,Don't know,Too little,Too little,Too much,Too much,Don't know,349,Too much,Too little,Too little,Too much,About right,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,350,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,About right,About right,Too much,About right,Too much,About right,About right,Too much,About right,351,About right,Too little,About right,Too little,Too little,About right,Too little,Ballot c\r\n2016,Too little,Don't know,Too much,Too little,About right,Too little,Don't know,Too little,Too much,Too much,Too little,352,Don't know,Too little,Too little,Too little,Don't know,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,Don't know,Too little,Too little,Too little,Too little,Don't know,Too little,Don't know,353,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,Too much,Too much,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,354,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,About right,355,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,356,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Don't know,About right,About right,Too little,Don't know,About right,About right,About right,Too little,357,Don't know,Too little,About right,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,358,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,359,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,360,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,About right,Too little,Too little,Too little,Don't know,Too much,Too little,361,Too little,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,362,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,About right,About right,No answer,Too little,About right,About right,Too little,Too little,363,Too little,Too little,Too little,Too little,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,364,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,About right,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,365,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,366,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,About right,Too little,About right,About right,Too little,Don't know,Too little,Too little,367,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,About right,About right,Too little,Too much,Too much,Don't know,368,Too much,Too little,Too little,Don't know,Don't know,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,369,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,About right,About right,About right,About right,Too much,Too little,Too little,370,Too little,About right,About right,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,Don't know,About right,Don't know,About right,About right,About right,About right,Don't know,Don't know,Don't know,371,About right,About right,Too much,Don't know,Don't know,About right,About right,Ballot c\r\n2016,Not applicable,About right,Don't know,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,372,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,373,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Don't know,About right,About right,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,374,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,375,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,Too little,Too little,Don't know,Too little,About right,Don't know,About right,Too little,376,Too little,Too little,Too little,Don't know,Don't know,About right,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,377,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too much,Too much,Too much,Too little,Too much,Too little,Too much,Too much,Too much,378,Too little,Too little,Too much,Too little,Too little,Don't know,Too little,Ballot a\r\n2016,Not applicable,About right,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,379,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,380,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,381,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,About right,Too little,About right,About right,About right,Too little,About right,About right,Too little,382,About right,About right,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,383,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,About right,About right,Too little,About right,Too little,Too much,Too much,Too little,384,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,About right,Too little,About right,Too little,Too little,Too much,Too little,Too much,Too little,Too little,385,Too much,Too little,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,386,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,About right,Too little,Too little,About right,About right,Too much,Too much,Too little,387,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,388,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Don't know,About right,Not applicable,Not applicable,Not applicable,389,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,About right,Too little,Too little,About right,About right,Too little,390,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,About right,Too little,About right,Too little,About right,Too little,About right,About right,Too little,Too little,391,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,392,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,Too little,About right,Too little,About right,Too much,Too little,393,About right,Too little,Too little,Too little,About right,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,394,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,395,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,396,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,About right,Too little,About right,Too little,Too much,Don't know,Too much,Don't know,Too little,397,Don't know,Too little,Too much,Too much,Too little,About right,Too little,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,Too little,Too little,Too little,Too little,About right,Too little,398,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too much,Don't know,Too much,About right,Too little,About right,Don't know,Too much,About right,Don't know,399,Don't know,Too little,Too little,About right,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Don't know,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,400,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,401,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,About right,About right,Too much,About right,Too much,Too little,About right,402,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too much,About right,Too little,403,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,404,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,About right,Too little,Too little,Too little,Too much,About right,About right,405,About right,About right,Too much,About right,Too little,About right,About right,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,406,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,Too little,About right,About right,About right,Too much,About right,Too little,407,Too little,About right,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,408,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too much,Too little,About right,Too little,Too little,Too little,About right,About right,Too little,409,About right,Too little,Too little,Too little,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,410,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,411,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,About right,Too little,Too little,About right,Too much,Too little,About right,412,About right,Too little,Too little,About right,About right,Too little,Too much,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,413,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too much,About right,About right,Too much,About right,About right,About right,Too little,Too little,414,Too little,Too much,About right,About right,Too little,Too little,Too much,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,415,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,Too little,Too little,About right,Too little,About right,Too little,About right,416,Too much,Too little,About right,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,About right,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,About right,417,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,Too much,Too much,Too much,Too much,Too much,Not applicable,Not applicable,Not applicable,418,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too much,Too little,Too much,About right,Too little,About right,Too little,About right,Too much,Too little,419,About right,Too little,About right,Too little,Too little,Too little,Too much,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,420,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,421,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too much,Too little,Too little,422,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,About right,About right,About right,About right,Too much,Too little,About right,About right,About right,About right,About right,423,About right,About right,Too little,About right,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,424,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,Too little,About right,Too little,Too much,Too much,Too little,425,About right,Too little,About right,Too little,About right,About right,About right,Ballot b\r\n2016,About right,About right,Too little,About right,About right,About right,About right,Too little,Too much,About right,About right,426,Too much,Too little,About right,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,427,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,About right,About right,About right,Too little,About right,About right,About right,428,About right,Too little,About right,About right,About right,Too little,Too little,Ballot a\r\n2016,About right,Too little,Too little,About right,Too little,Too little,Too little,About right,Too little,Too little,Too little,429,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,430,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,About right,About right,Too little,Too much,About right,Too little,431,Don't know,Too much,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Too little,About right,Too little,About right,Too much,Too little,Too much,Too much,Too much,About right,Too little,432,Too much,Too little,Too little,About right,Too little,Too little,About right,Ballot b\r\n2016,About right,Too much,Don't know,About right,Too little,Too little,Too much,Too little,Don't know,Too much,Too little,433,Too much,Too little,About right,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,434,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Don't know,About right,About right,Too little,Too little,About right,Too much,About right,About right,435,About right,About right,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too little,About right,About right,About right,Too little,Too little,About right,Too much,Too little,Too little,436,Too little,About right,Too little,Too little,Too little,Too little,Too much,Ballot b\r\n2016,Not applicable,Too little,Don't know,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,437,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too little,Too much,Too little,Too little,About right,Too much,Too little,Too little,438,About right,Too little,Too little,About right,Too little,Too much,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,439,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,Too little,Too little,About right,Too little,About right,About right,Too much,Too little,440,Too little,Too little,About right,About right,About right,Too much,About right,Ballot a\r\n2016,Too little,About right,Too much,About right,About right,Too little,About right,About right,About right,About right,Too little,441,About right,Too little,About right,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,442,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,443,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,444,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,445,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,446,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,About right,Too much,Too much,Too much,447,Too much,About right,About right,About right,Too little,Too little,About right,Ballot a\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too much,Too little,448,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,449,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,450,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too little,About right,About right,About right,451,About right,Too little,Too little,About right,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,452,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,About right,Too little,Too little,About right,About right,About right,About right,About right,453,About right,Too little,Too little,Too much,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too little,About right,Too little,About right,Don't know,Too little,About right,About right,Too much,Too little,454,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,455,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,Too little,Too little,Too little,About right,About right,Too little,456,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,Too little,About right,Too little,About right,Too little,Too little,457,About right,Too little,Too much,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,458,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,Too little,About right,About right,About right,About right,Too little,459,About right,Too little,Too little,Too much,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,460,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,About right,About right,About right,Too little,Too much,Too much,Too little,461,About right,Too little,Too little,About right,About right,About right,About right,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,462,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,463,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,About right,About right,Too little,Too little,About right,Don't know,Too much,About right,464,Too little,Too little,Too little,Don't know,About right,Too little,Too little,Ballot b\r\n2016,Too much,About right,About right,Too much,Too much,Too much,About right,Too much,Too much,Too much,About right,465,Too much,About right,Too little,About right,About right,Too little,Too much,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,466,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,467,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,468,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too much,About right,About right,About right,Too little,Too little,About right,About right,About right,Too little,469,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,470,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too little,Too little,About right,Too little,Too little,471,About right,About right,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,472,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too much,Too little,Too much,About right,About right,Too much,About right,Too much,Too little,About right,473,About right,About right,Too much,About right,Too little,Too little,Too much,Ballot b\r\n2016,Not applicable,About right,Too little,Too much,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,474,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too much,Too much,Too little,About right,Don't know,About right,About right,About right,Too much,Too little,475,About right,Too little,Too little,About right,About right,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,476,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Don't know,Too little,Too little,Too little,Too much,Too little,Too little,About right,Too much,Too little,About right,477,Too little,About right,Too little,Don't know,Too little,Too little,Too little,Ballot a\r\n2016,About right,Too little,About right,About right,About right,Too little,Too little,Too little,Too much,Too much,Too little,478,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,Too much,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,479,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too little,480,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,About right,About right,About right,About right,Too little,About right,About right,Too much,Too much,Too little,481,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,482,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,Too little,About right,About right,About right,Too little,Too little,Too little,About right,483,About right,About right,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Too much,Too little,About right,Too little,About right,Too little,Too much,About right,About right,About right,Too little,484,Too much,Too little,About right,Too little,About right,Too little,Too little,Ballot a\r\n2016,Too much,Too little,About right,Too much,About right,Too little,About right,Too much,Too much,Too little,Too much,485,Too much,About right,About right,About right,Too little,Too little,About right,Ballot b\r\n2016,About right,About right,Too little,About right,Too much,Too little,Too little,About right,About right,About right,Too little,486,About right,About right,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too much,Too much,Too much,Too much,About right,Not applicable,Not applicable,Not applicable,487,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,About right,About right,Too little,About right,Too little,About right,Too much,Too little,488,About right,Too little,Too little,Too little,About right,About right,About right,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,489,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,490,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Don't know,Don't know,Too little,About right,About right,Too little,About right,Too little,Don't know,491,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too much,About right,About right,About right,Don't know,Not applicable,Not applicable,Not applicable,492,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too much,Too much,About right,About right,Too much,Too much,About right,Too much,About right,493,Too much,Too little,About right,Too much,Too little,Too little,About right,Ballot b\r\n2016,Too little,About right,Too little,Too little,About right,About right,Too little,Too little,About right,Too much,About right,494,Too little,Too little,About right,Don't know,Too little,Don't know,About right,Ballot c\r\n2016,Not applicable,Too much,About right,About right,About right,About right,Don't know,Too little,Not applicable,Not applicable,Not applicable,495,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,Too little,Too little,About right,Too much,About right,Too little,Too much,Too little,496,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,497,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,498,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,499,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,500,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,Too much,Too little,Too little,About right,About right,Too much,Too little,Too much,501,Too much,About right,Too much,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,502,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too little,Too much,About right,About right,503,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Don't know,About right,About right,About right,Don't know,Don't know,Not applicable,Not applicable,Not applicable,504,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too much,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,505,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,506,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,507,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,Too little,Too little,Too little,Too little,Too little,About right,Too much,Too little,508,About right,Too little,Too little,About right,Too much,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,509,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too little,510,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,511,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,Too little,Too little,About right,About right,Too little,Too little,About right,About right,512,Too much,About right,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,513,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too much,About right,Too little,Not applicable,Not applicable,Not applicable,514,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too little,Too little,About right,Too little,Too little,515,About right,About right,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,516,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too little,About right,About right,Don't know,Too little,Too much,Too little,Too little,517,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Don't know,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,518,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,Too much,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,519,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Don't know,About right,About right,About right,Too much,About right,Too much,About right,Too little,520,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,521,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,Too much,Too little,About right,522,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,523,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,Too little,About right,About right,About right,Too little,About right,Too much,About right,524,Don't know,Too little,Too little,About right,About right,Too much,About right,Ballot a\r\n2016,Too little,Too little,About right,Too little,About right,Don't know,About right,Too little,Too little,Too much,Too little,525,About right,Too much,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,526,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,About right,About right,Too much,Too much,Too little,Too much,About right,527,Too much,Too little,About right,Too much,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Don't know,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,528,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,Too little,About right,About right,Too little,Too little,About right,About right,Too little,529,About right,Too little,Too little,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Don't know,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,530,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,531,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,532,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too little,Too little,533,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,Too little,About right,Too little,Too much,About right,Too little,534,About right,Too little,Too little,About right,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too much,About right,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,535,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,About right,About right,About right,About right,About right,Too much,Too much,Too little,536,Too little,Too little,Too little,Too little,About right,About right,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,537,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,Don't know,Too little,About right,Too little,Too little,About right,About right,No answer,538,Don't know,About right,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,Don't know,Too little,About right,Too little,539,About right,About right,About right,About right,Too little,Too little,About right,Ballot a\r\n2016,Too much,Too much,About right,About right,Too much,Too much,Too much,Too much,Too much,About right,Too much,540,About right,Too much,About right,About right,About right,Too little,Too much,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,541,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,542,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,About right,About right,About right,Too little,About right,Too much,Too much,About right,543,About right,About right,About right,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,544,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,545,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,About right,About right,About right,About right,Too much,Too little,546,About right,Too little,About right,Too little,About right,Too little,About right,Ballot b\r\n2016,Too little,Too little,Too little,About right,Too little,Too little,About right,Too little,Too little,About right,Too little,547,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too much,Too much,About right,Too little,About right,About right,Too much,Too much,Too much,Too much,548,Too little,Too little,Too little,Too much,Too little,Too much,Too little,Ballot a\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,Don't know,About right,About right,549,About right,About right,About right,About right,Too much,About right,About right,Ballot b\r\n2016,About right,Too much,About right,About right,Too little,Too little,Too little,Too little,About right,Too much,Too little,550,About right,Too little,Too little,Too little,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,Don't know,Too little,Too little,Don't know,About right,Not applicable,Not applicable,Not applicable,551,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,552,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too little,Too little,Too much,Too little,Too little,Too much,Too little,Too much,Too little,553,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,554,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,555,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too much,About right,Too little,About right,Too little,About right,About right,Too little,About right,556,About right,About right,Too much,About right,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too much,Too little,About right,Not applicable,Not applicable,Not applicable,557,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,About right,About right,About right,Too much,Too little,About right,558,About right,Too little,About right,About right,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,559,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,Don't know,About right,About right,Don't know,Don't know,Too much,Too little,Don't know,560,Don't know,About right,Too little,Too much,Too little,Too little,About right,Ballot b\r\n2016,Too much,About right,Too much,About right,About right,Too much,About right,About right,Too much,Too much,Too much,561,Too much,Too much,About right,Too much,Too much,Too much,Too much,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,562,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,563,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,564,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,565,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Don't know,Too little,About right,Don't know,Too little,About right,About right,About right,Too little,Too little,566,About right,Too little,Too little,Too little,About right,Too little,About right,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,567,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,568,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,569,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,Too little,About right,About right,Too little,Too little,Too much,About right,About right,570,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too much,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,571,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,Too little,Too much,Too little,About right,572,Too little,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too much,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,573,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,Too much,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,574,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too much,About right,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too little,575,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too much,About right,Too much,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,576,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,About right,Too little,About right,Don't know,Too much,577,Don't know,Too little,Too little,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,578,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too little,About right,Too much,Too little,Too much,About right,Too much,Too little,Too little,579,Too much,Too little,Too little,Too much,Too much,Too much,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,Too little,Too much,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,580,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,Too little,Too little,Too little,Too much,Too little,Too little,Too much,Too much,Too little,581,Too much,Too much,Too little,Too little,Too little,Too little,Too much,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,582,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,About right,About right,Too much,Too much,About right,About right,Too much,About right,583,Too much,About right,Too little,About right,About right,Too much,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too much,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,584,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too much,Too little,Too little,585,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,Too little,Too much,Too little,About right,Too much,Too little,Too much,Too little,About right,586,Too much,About right,Too much,Too much,Too much,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,587,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,About right,About right,Too little,About right,Too much,Too much,About right,Too little,588,Too much,Too much,Too little,Too little,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too much,About right,Not applicable,Not applicable,Not applicable,589,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,About right,About right,Too little,Too much,Too much,Too little,About right,590,About right,About right,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,Too much,About right,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,591,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,Too little,Too little,About right,Too little,Too much,Too much,Too little,592,About right,Too little,About right,Too little,About right,Too little,Too little,Ballot c\r\n2016,Too much,About right,About right,Don't know,About right,About right,About right,About right,About right,About right,About right,593,About right,About right,About right,Too much,About right,Too much,Too little,Ballot a\r\n2016,Too much,Too little,Too little,Too little,About right,Too much,Too little,About right,Too much,Too little,Too much,594,Too much,Too little,Too little,Too little,Too little,Too much,Too little,Ballot a\r\n2016,Too much,Too much,Too little,About right,Too much,Too little,About right,Too little,Too much,Too little,Too little,595,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,596,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,Too little,About right,About right,Too little,Too little,Too much,Too little,About right,597,About right,Too little,Too little,About right,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,598,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,About right,Too much,About right,Too much,About right,Too little,Not applicable,Not applicable,Not applicable,599,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,600,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Don't know,Too little,Don't know,About right,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,601,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,Too much,Too little,Too little,Too little,Too much,Too little,Too much,602,Too much,Too little,Too little,Too little,Too much,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,603,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,About right,About right,About right,About right,Too much,About right,About right,604,About right,About right,About right,About right,Too little,About right,About right,Ballot c\r\n2016,Not applicable,About right,About right,Too much,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,605,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Don't know,About right,Too little,Don't know,Too little,Too little,Too much,About right,Don't know,606,Too much,Too little,Don't know,Don't know,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,607,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,608,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,Too little,About right,About right,About right,About right,About right,About right,Too little,609,About right,Too little,Too little,Too little,Too little,About right,Too much,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,610,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too much,Too little,Too little,Too little,Too little,Too little,Too much,Too little,About right,Too little,611,Too much,About right,Too little,Too little,Too much,Too much,About right,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,About right,About right,Don't know,Don't know,Not applicable,Not applicable,Not applicable,612,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,Too little,About right,About right,Too little,Too little,Too little,About right,Too little,Too little,613,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,614,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,Too little,About right,Too little,About right,Too much,Too little,Don't know,615,Too little,Too little,Too little,About right,Too little,About right,Too little,Ballot c\r\n2016,Too much,About right,About right,About right,About right,About right,About right,Too little,Too much,Too little,Too little,616,About right,About right,Too much,Too little,Too little,About right,Too little,Ballot a\r\n2016,Too much,Too much,Too little,About right,About right,Don't know,About right,About right,Too much,About right,Too little,617,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,618,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Don't know,About right,Don't know,About right,Don't know,Too little,Don't know,Too much,Too little,619,Don't know,Too little,About right,About right,Don't know,Too little,About right,Ballot c\r\n2016,Don't know,Too little,Too little,About right,About right,Too little,Too little,Too little,About right,Too much,Too little,620,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too little,Too little,Too much,Not applicable,Not applicable,Not applicable,621,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,622,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too much,Too little,Too little,623,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,624,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Don't know,About right,About right,Don't know,Don't know,Too little,Too much,Don't know,Don't know,625,Don't know,Too little,Too little,Too little,Don't know,Don't know,Too little,Ballot b\r\n2016,Too much,Too little,About right,Too little,Too little,Too much,Too little,Too little,About right,About right,Too much,626,Don't know,Too little,Don't know,Don't know,Don't know,Too little,Too little,Ballot c\r\n2016,Too much,About right,About right,Too little,Too much,About right,About right,About right,About right,About right,About right,627,Too much,Too little,Too little,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,628,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too little,About right,Too much,Too little,629,About right,Too little,Too little,Too little,No answer,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Don't know,About right,Don't know,About right,About right,About right,Not applicable,Not applicable,Not applicable,630,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,About right,About right,Don't know,About right,About right,Too much,About right,Too much,631,About right,Too little,Too little,Too little,About right,About right,About right,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,632,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,Too little,About right,Too much,About right,About right,633,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,634,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,Too little,About right,Too much,About right,Too little,Too much,Too little,Too much,635,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,About right,Too much,Too little,Too much,636,Too little,Too much,Don't know,About right,About right,Too much,Too much,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too little,Too much,Too little,Don't know,Too much,Too little,Don't know,637,Too much,Too little,Too little,Don't know,Don't know,Too little,Too little,Ballot c\r\n2016,About right,Too little,About right,About right,About right,About right,Too little,Too little,Too much,About right,Too little,638,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too much,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,639,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,Too little,Too little,About right,About right,Too little,About right,640,About right,Too little,Too little,About right,Too little,Too little,About right,Ballot b\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too little,Don't know,About right,About right,641,About right,Too little,About right,Don't know,Too little,About right,About right,Ballot c\r\n2016,About right,About right,About right,About right,Too little,Too little,Too little,Too little,About right,About right,Too little,642,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,643,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,About right,About right,Too little,Too little,644,Don't know,About right,About right,Too little,Too little,About right,About right,Ballot a\r\n2016,Too little,Too little,Don't know,Don't know,About right,Too little,Don't know,Too little,Too much,Too much,Too little,645,Too much,Too little,Too little,Too little,Don't know,Don't know,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,646,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,About right,About right,About right,Too little,Too much,Too much,Too much,647,Don't know,About right,Too much,Don't know,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,648,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too much,Too much,Too much,Don't know,Don't know,Don't know,649,Too little,About right,No answer,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too much,About right,Too much,About right,Not applicable,Not applicable,Not applicable,650,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too much,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,651,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,652,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Don't know,Too little,Too little,Don't know,Don't know,Don't know,Too little,Too little,Too little,About right,Too little,653,Don't know,Too little,Too little,Don't know,Don't know,Too little,Too little,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too little,About right,Too little,About right,About right,654,Too little,About right,About right,Too much,About right,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too much,Don't know,Don't know,Don't know,Too little,Not applicable,Not applicable,Not applicable,655,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,656,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,Too little,Too little,Too little,Too little,About right,Too much,Too little,Too little,657,About right,Too little,Too little,Too little,Too little,Too little,Too much,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,658,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,Too little,Too little,Too little,About right,Too little,Too much,About right,Too little,659,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too much,About right,Not applicable,Not applicable,Not applicable,660,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,Too little,Too little,Too little,About right,About right,About right,Too little,Too little,661,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,662,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,About right,About right,About right,Too little,Too little,About right,About right,About right,663,Too much,Too little,About right,Too little,About right,About right,Too little,Ballot b\r\n2016,Too little,About right,Too little,About right,About right,Too little,Don't know,About right,Too much,Don't know,Too little,664,Don't know,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too much,Too much,About right,Too little,About right,Not applicable,Not applicable,Not applicable,665,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,About right,Too little,Too little,About right,About right,Too much,About right,Too little,666,Too little,Too much,Too little,About right,About right,Too little,Too little,Ballot c\r\n2016,About right,About right,About right,About right,About right,About right,Too little,Too little,Don't know,Too little,Too little,667,About right,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,668,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Don't know,Too much,Too little,About right,About right,Too little,Don't know,About right,Too little,Too little,Too little,669,Don't know,Too little,Too little,Too much,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,670,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Don't know,About right,Too little,Don't know,About right,Too little,About right,Don't know,About right,About right,Too little,671,About right,About right,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,672,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Don't know,Too little,Don't know,Don't know,Too little,Too little,Too little,Too little,Too much,Too much,Don't know,673,Don't know,Too little,Too little,Don't know,Don't know,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Don't know,About right,About right,Don't know,Don't know,Too little,Not applicable,Not applicable,Not applicable,674,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,About right,About right,About right,Too little,Too little,Too much,About right,Too much,About right,675,About right,About right,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,676,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,677,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Don't know,Too little,About right,About right,About right,Too little,Too much,About right,About right,678,About right,About right,Too little,Too much,About right,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too much,Too little,Too little,Too little,Don't know,Don't know,Too much,Too little,About right,679,Don't know,Too little,Too little,Too little,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too much,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,680,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,681,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,682,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,Too little,Don't know,Too little,About right,Too much,Too little,Too little,About right,683,About right,Too little,Too little,Too little,Don't know,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,Too much,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,684,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,About right,Too much,About right,Too little,685,About right,About right,Too little,About right,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too much,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,686,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too much,About right,About right,Too much,Too little,Too much,Too little,Too little,Too much,Too little,687,Too little,Too little,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,688,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,About right,About right,About right,Too little,About right,About right,Too little,Too much,689,Too much,About right,About right,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too much,About right,Too little,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,690,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,691,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,Too little,Too much,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,692,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too much,About right,About right,Too little,About right,693,Too much,About right,Too little,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,Too little,Too much,Not applicable,Not applicable,Not applicable,694,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too much,About right,About right,About right,About right,About right,Too little,Too much,About right,Too little,695,Too much,Too little,Too little,Too much,Too much,Too much,Too much,Ballot c\r\n2016,About right,Too much,About right,About right,Too much,Too little,About right,Too much,About right,About right,Too little,696,About right,Too little,Too little,About right,Too little,About right,About right,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,697,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too much,Too little,Too little,Too little,Too little,Too much,Too much,Too much,Too little,Too little,698,Too much,Too much,Too much,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Too much,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,699,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,Too little,About right,Too little,About right,About right,About right,Too little,About right,700,About right,About right,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,701,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,About right,About right,About right,Too little,About right,About right,Too little,About right,Too little,702,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,703,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,About right,Too little,Too little,Too little,About right,Too little,Too much,Too little,Too little,704,About right,About right,Too much,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,About right,Too little,Too little,About right,Too little,About right,About right,About right,Too little,Too little,705,About right,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too much,Too little,Too much,Too little,About right,About right,Not applicable,Not applicable,Not applicable,706,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,Too little,Too little,Too little,Too much,Too little,Too little,Too much,Too little,707,About right,About right,Too little,About right,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too much,Too little,Too much,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,708,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,709,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,Too little,Too little,Too little,About right,About right,About right,About right,About right,710,Too much,Too little,Too little,About right,About right,About right,About right,Ballot b\r\n2016,Too little,About right,About right,About right,About right,Too little,Too little,About right,About right,Too much,Too little,711,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,712,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,About right,About right,About right,About right,Too little,About right,About right,Too much,Too little,713,About right,Too little,Too little,About right,Too little,About right,About right,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,714,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too much,About right,Too little,Too little,About right,Too little,About right,About right,Too little,715,About right,About right,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,716,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,Too little,Too little,About right,Too little,Too little,Too much,Too much,717,About right,Too little,About right,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,718,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,Too little,About right,Too little,Too little,Too much,Too much,Too little,719,Too little,Too little,Too little,Too little,Too little,About right,About right,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,Too little,About right,Too little,Too little,720,Too much,Too much,Too much,Too much,Too much,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,721,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,About right,About right,About right,Too little,Too much,About right,Too much,722,About right,About right,Too much,About right,About right,Too much,Too little,Ballot c\r\n2016,About right,Too much,Too little,About right,Too little,About right,About right,Too little,About right,Too little,Too little,723,Too much,Too little,About right,About right,About right,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,About right,About right,Too little,Too much,About right,About right,Not applicable,Not applicable,Not applicable,724,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too little,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,725,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,726,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,Too little,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,727,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,728,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,Too little,About right,Too little,About right,About right,About right,Too little,Too little,729,About right,Too little,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,730,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,Too much,Too little,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,731,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,732,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,Too much,About right,About right,Too little,About right,Too much,733,Don't know,About right,About right,About right,Too little,Too little,About right,Ballot c\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too much,Too little,734,About right,About right,About right,Too much,Too little,Too little,About right,Ballot b\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too little,Too much,Too much,About right,735,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,736,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,About right,Too little,About right,Too much,About right,About right,737,About right,Too little,Too little,About right,About right,Too little,About right,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,738,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,Don't know,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,739,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,Too little,Too little,About right,Too little,Too much,Too little,Too much,740,About right,About right,Too much,Too much,Too little,Too much,Too little,Ballot c\r\n2016,Too much,Too much,Too little,About right,Too little,About right,About right,Too little,Too little,About right,Too much,741,Too much,About right,About right,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too much,About right,About right,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,742,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,Don't know,Too little,Too little,About right,About right,Too much,Too little,No answer,743,About right,Too little,Don't know,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,744,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too much,Too little,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,745,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,Too little,Too little,About right,Too little,About right,About right,Too little,Too little,746,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too little,About right,Too little,Too little,Too little,About right,Too little,About right,About right,Too little,747,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,748,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too little,749,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,750,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too much,Too little,About right,About right,About right,About right,About right,Don't know,About right,About right,751,About right,Too little,Too little,Too little,Too little,Don't know,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,752,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,753,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,Don't know,Too little,About right,Not applicable,Not applicable,Not applicable,754,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Don't know,About right,About right,About right,About right,About right,About right,About right,About right,About right,Don't know,755,About right,About right,About right,About right,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,756,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,About right,Too much,Don't know,About right,Not applicable,Not applicable,Not applicable,757,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,758,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,About right,Too much,About right,Too little,759,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,About right,Too little,Don't know,About right,About right,Too little,About right,Too little,About right,About right,Don't know,760,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too little,About right,Too little,About right,Too little,About right,Too little,Too little,Too much,About right,About right,761,About right,Too little,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,762,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too little,About right,About right,About right,Too much,Too little,Don't know,763,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,764,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,About right,About right,About right,Too little,About right,Too little,No answer,About right,No answer,765,Don't know,Too little,Too little,Too much,Too little,Don't know,About right,Ballot b\r\n2016,Too much,About right,Too little,About right,Too little,Too little,About right,About right,Too much,Too little,About right,766,About right,Too little,Don't know,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,767,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too much,About right,About right,Too little,Too little,Too little,About right,About right,Too little,768,About right,Too little,About right,Too much,Too little,About right,Too little,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too little,Too little,Too much,About right,About right,769,Too little,Too little,About right,About right,About right,About right,Too little,Ballot c\r\n2016,Too much,About right,About right,Too little,About right,Too little,About right,Too little,Too much,About right,Too little,770,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,771,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too much,Too little,Too little,About right,Too little,About right,About right,About right,About right,Too little,772,About right,Too little,Too little,Too little,Too little,Too little,About right,Ballot c\r\n2016,Too little,About right,Too little,Too little,About right,About right,Too much,Too little,Too much,Too little,Too little,773,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too much,About right,Not applicable,Not applicable,Not applicable,774,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,About right,About right,Too little,Too much,About right,Too little,775,About right,About right,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,776,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,777,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,Too much,Too much,About right,778,About right,Too little,About right,Too much,About right,About right,About right,Ballot b\r\n2016,Not applicable,About right,Too little,Too much,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,779,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,780,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too little,About right,About right,Too little,781,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,782,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,No answer,783,Too little,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,784,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,785,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,About right,About right,Too little,Don't know,Too little,About right,Don't know,Too little,786,Don't know,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,787,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,788,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,About right,About right,Too little,Too much,About right,Too little,789,About right,About right,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,790,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too much,Too little,About right,Too little,Too little,Too much,Too little,Too much,About right,About right,791,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,About right,Too much,About right,About right,About right,About right,Too little,About right,About right,Too little,About right,792,About right,Too little,About right,Too much,About right,Too little,About right,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,Too little,About right,Too little,Too much,About right,About right,793,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too much,Too little,Too little,Too little,About right,About right,Too little,Too much,Too much,Too little,794,Too much,Too little,Too little,Too little,Too much,Too much,Too little,Ballot c\r\n2016,Too little,Too much,About right,About right,About right,Too little,About right,About right,About right,Too little,About right,795,Too little,Too little,Too little,About right,Too little,Too little,About right,Ballot a\r\n2016,Too much,Too much,Too much,About right,About right,Too little,Too little,About right,About right,About right,Too little,796,Too much,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too little,Too much,About right,About right,Too little,Too little,About right,About right,Too little,Too much,About right,797,Don't know,Too little,About right,About right,About right,Too little,Too little,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,About right,About right,Too little,About right,Too little,Too much,798,About right,About right,About right,Too much,Too little,Too much,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,799,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,About right,About right,About right,Too little,Too little,Don't know,Too little,About right,About right,800,About right,About right,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,801,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,About right,Too little,About right,About right,Too little,Too little,Too much,About right,Don't know,802,About right,Too little,About right,About right,Too little,Too little,About right,Ballot a\r\n2016,About right,About right,About right,Too little,Too little,Too little,About right,Too little,About right,Too little,Too little,803,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,About right,About right,Too little,About right,About right,Too little,Too much,Too little,Too little,Too much,Too little,804,Don't know,Too little,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,805,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Not applicable,Not applicable,Not applicable,806,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,Too much,About right,About right,Too much,About right,About right,807,Too little,About right,Too much,Too much,About right,About right,About right,Ballot a\r\n2016,About right,Too little,Don't know,Too little,Too little,Too little,Don't know,Too little,About right,Too much,Don't know,808,About right,Too little,About right,Too little,About right,Too little,Too little,Ballot b\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,Too little,Too much,Too much,About right,809,About right,Too little,About right,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,Don't know,Don't know,Don't know,Not applicable,Not applicable,Not applicable,810,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too little,811,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too little,About right,Too little,812,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,813,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,About right,Too little,Too little,Too much,Too much,About right,814,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot b\r\n2016,Too little,Too little,Too little,About right,About right,Too little,Too little,About right,Too much,About right,Too little,815,Too much,About right,About right,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,816,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,Too little,Too little,Too little,About right,About right,About right,About right,Too little,817,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,818,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too much,Too little,About right,About right,Too little,About right,Too much,Too much,Too much,Too little,819,Too much,About right,Too little,Too little,Too little,Too much,Too little,Ballot c\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,820,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,821,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,822,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too much,About right,About right,About right,Don't know,About right,About right,Don't know,Too little,About right,823,Too much,About right,Too little,Too little,Too little,Too much,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,824,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,Too little,Too little,About right,Too much,About right,Too little,825,About right,Too little,Too little,About right,About right,About right,Too little,Ballot b\r\n2016,Too much,About right,Too little,About right,Too little,Too little,About right,Too little,Too much,About right,Too little,826,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,827,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too much,Too little,Too little,Don't know,Too little,Too much,Too much,Too much,Don't know,Too little,828,Don't know,About right,Too little,Too much,Too little,About right,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,829,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too much,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,830,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Don't know,Too little,About right,Not applicable,Not applicable,Not applicable,831,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,832,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,833,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,About right,About right,Too much,About right,Too little,About right,834,Too little,About right,Too little,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,835,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,Too little,About right,Too little,Too much,Too little,Too little,836,About right,Too little,Too much,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,837,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,Too little,About right,About right,Too little,About right,About right,Too little,838,Don't know,Don't know,Don't know,Don't know,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,Too much,Too little,About right,About right,Not applicable,Not applicable,Not applicable,839,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,840,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,About right,Too little,Too much,About right,Too much,Too much,Too little,841,Too much,Too much,Too little,Too much,Too little,Too little,Too much,Ballot c\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,842,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,843,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Too little,Too much,Too little,About right,844,Too much,About right,About right,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,845,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,Too much,About right,Not applicable,Not applicable,Not applicable,846,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,Too little,About right,Too little,Too much,About right,Too little,847,About right,Too little,Too little,About right,Too little,Too much,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,848,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,849,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,About right,About right,Too much,Too little,Too little,850,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,Too much,Too little,About right,Too much,Too much,Too much,Not applicable,Not applicable,Not applicable,851,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,About right,About right,About right,Too little,Too little,About right,Too much,Too little,852,Too little,Too little,About right,Too little,About right,Too much,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,853,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,Too little,About right,About right,Too little,Too little,About right,Too much,About right,854,Too little,Too little,Too little,About right,Too little,Too much,About right,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,855,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,856,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,857,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,About right,Too little,Too little,About right,About right,Too little,858,Too much,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,Too much,Too much,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,859,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,About right,About right,About right,About right,Too little,Too much,About right,Too little,860,Too little,Too little,Too little,Too much,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,861,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,862,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,863,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,Too little,Too little,Too little,Too little,About right,Too much,Too little,864,Too little,Too little,Too little,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too much,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,865,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,About right,About right,Too little,Too little,Too much,Too much,About right,866,About right,Too little,Too little,About right,About right,Too little,About right,Ballot c\r\n2016,About right,About right,About right,Too little,About right,Too little,About right,About right,Too much,Too much,Too little,867,Too much,Too little,Too little,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,868,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Don't know,Too little,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,869,Too much,About right,Don't know,Don't know,Too little,Don't know,Don't know,Ballot b\r\n2016,About right,About right,About right,Too little,About right,Too much,About right,About right,Too much,Too much,About right,870,Too little,Too little,About right,Too much,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,871,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too much,Too little,About right,About right,Too little,Too little,Too much,Too much,Too much,Too little,872,Too much,Too little,Too little,Too little,Too much,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,873,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,Too little,Too little,Too little,Too little,Too much,About right,About right,874,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,875,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,About right,Too little,About right,About right,Too little,About right,Too little,About right,876,Too much,About right,About right,About right,Too little,Too little,About right,Ballot b\r\n2016,Too little,Too little,Too little,Too little,Too little,About right,Too little,Too little,About right,Too much,Too little,877,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,878,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,About right,Too little,About right,Too little,About right,Too little,About right,About right,About right,879,About right,Too little,Too little,About right,About right,About right,Too little,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too much,Too little,880,Too little,Too little,Too little,About right,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,881,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,882,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too little,About right,Too little,About right,Too little,About right,About right,Too little,883,Too little,Too little,About right,Too little,About right,Too little,Too little,Ballot a\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too much,Too much,About right,About right,884,About right,About right,Too little,Too little,Too little,About right,About right,Ballot c\r\n2016,About right,About right,About right,About right,About right,About right,About right,Too little,About right,About right,Too little,885,About right,Too little,Too little,About right,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Not applicable,Not applicable,Not applicable,886,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,887,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,About right,About right,About right,Too little,Too little,About right,Too much,About right,Too little,888,About right,Too little,Too little,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,889,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too little,Don't know,Too little,Too little,890,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too little,Too little,About right,About right,About right,Too little,Too little,Too little,About right,Too much,Too little,891,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,892,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,About right,About right,About right,Too little,893,Too little,Too little,About right,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,Too little,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,894,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,About right,About right,Too little,Too little,Too little,Too much,Too little,About right,895,About right,Too little,Too little,About right,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,896,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,897,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,Too much,About right,About right,Too little,About right,About right,Too little,About right,898,About right,Too much,About right,About right,Too little,About right,About right,Ballot b\r\n2016,Not applicable,About right,About right,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,899,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,900,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,About right,Too little,Too little,Too much,Too much,About right,901,Too little,Too little,Too little,Too little,About right,Too little,Too little,Ballot a\r\n2016,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,902,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,903,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too much,Don't know,About right,Too little,Too little,Too little,Too little,Don't know,Too much,Don't know,904,Don't know,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Don't know,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,905,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Don't know,About right,Too little,Too much,About right,Too little,Don't know,Don't know,Don't know,About right,Don't know,906,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,907,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,908,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,909,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too little,Too much,Too much,Too little,910,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Don't know,About right,About right,Don't know,Too little,About right,911,About right,About right,Too little,About right,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,912,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,Too little,Too little,About right,Too little,About right,About right,About right,913,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot a\r\n2016,About right,About right,Too little,About right,About right,About right,About right,About right,About right,About right,About right,914,Too much,Too little,Too little,Don't know,About right,About right,About right,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,915,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,916,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,Too little,Too little,Too little,Too little,About right,Too much,About right,About right,917,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Too much,About right,Too much,About right,Too little,Too much,About right,About right,Too much,Too little,About right,918,Too much,About right,Too little,Too little,Too much,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,919,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,920,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,921,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too little,About right,Too little,About right,922,About right,Too little,Too little,About right,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,923,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,924,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,Too little,About right,Too little,About right,Too much,About right,About right,925,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,926,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,About right,About right,Too little,Too much,Too little,Too little,927,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,928,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too much,About right,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,929,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,930,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,931,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,Too little,Too little,Too little,Too much,About right,About right,Too much,Too little,932,About right,Too little,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,About right,About right,About right,About right,About right,Too little,Too much,About right,About right,Too much,About right,933,Too much,Too little,About right,About right,Too little,Too little,Too little,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,About right,Too much,Too much,About right,934,About right,Too little,About right,Too little,About right,About right,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,935,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too much,About right,Too little,Too little,Too little,Too much,Too much,About right,936,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,937,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,About right,Too little,Too little,Don't know,Too little,Too much,Too much,Too little,Don't know,938,Don't know,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,939,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too much,Don't know,About right,Don't know,Don't know,Don't know,Not applicable,Not applicable,Not applicable,940,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Don't know,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too much,Too little,941,Don't know,About right,Don't know,About right,Too much,Too much,Too little,Ballot a\r\n2016,Not applicable,About right,Too much,Don't know,Too much,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,942,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,About right,About right,Don't know,Too much,About right,943,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,944,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,945,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,946,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,About right,About right,Too little,Too little,About right,About right,No answer,947,Too little,Too little,About right,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,948,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,949,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too much,Too little,Too much,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,950,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,951,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,About right,About right,About right,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,952,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,Too little,Too much,Too much,About right,About right,Too little,Too much,Too much,Too much,953,About right,About right,Too little,Too little,Too much,Too much,About right,Ballot c\r\n2016,Too much,About right,Too little,Too much,About right,Too little,Too little,Too little,Too much,Too much,Too little,954,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,955,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,About right,Too little,About right,Too little,Too little,About right,Too little,Too little,956,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,957,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too much,Too little,Too much,Too much,Too little,958,Too much,Too little,Too little,Too little,Too much,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,959,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,960,Don't know,Too little,Too little,Don't know,Don't know,Don't know,Don't know,Ballot a\r\n2016,Not applicable,Too much,About right,Too much,About right,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,961,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,Too much,Too little,About right,Don't know,Not applicable,Not applicable,Not applicable,962,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,963,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too much,About right,Too little,Too little,Too much,Too little,Too much,964,About right,About right,Too much,Too much,About right,Too much,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too much,Too much,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,965,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too much,About right,Too little,Too little,Too little,Too little,Too much,Too much,Too much,966,Too little,Too little,Too little,Too much,Too much,Too much,Too little,Ballot b\r\n2016,Not applicable,About right,Too much,Too much,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,967,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,968,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,969,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,970,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,Too little,About right,About right,Too little,About right,Too much,Too little,971,About right,Too little,Too little,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too much,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,972,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,973,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,974,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Don't know,Too little,Too little,About right,About right,Don't know,About right,Too little,Too little,Too much,About right,975,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,976,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,Too little,Too little,About right,Too little,About right,Too little,Too little,977,About right,Too little,Too little,Too little,Too little,About right,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,978,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,Too much,About right,Too much,Too much,Too much,Too much,Too much,979,Too much,About right,About right,Too much,About right,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,980,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,981,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,982,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,About right,About right,Too much,Too little,983,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,Too little,Too little,Too little,Too much,Too little,Too little,984,Too little,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,About right,About right,About right,Too much,Too little,About right,985,Too little,Too little,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,986,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,Too little,About right,About right,Too much,Too much,About right,987,About right,Too little,Too little,About right,Too much,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,988,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,989,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,990,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,991,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,About right,About right,Too much,Too much,About right,Too little,Not applicable,Not applicable,Not applicable,992,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,993,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,About right,Too much,Too much,Too much,Too little,About right,994,Too much,About right,Too much,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too little,About right,About right,About right,Too little,Too little,Too little,Too little,Too much,About right,About right,995,Too much,Too little,Too little,About right,About right,Too little,About right,Ballot c\r\n2016,About right,About right,About right,Too little,About right,About right,Too little,Too little,About right,Too much,Too little,996,About right,Too little,Too little,About right,About right,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,997,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,Too little,Too little,Too little,About right,About right,Too much,Too little,About right,998,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,999,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1000,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1001,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1002,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1003,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,Too much,About right,About right,1004,About right,About right,Too little,About right,About right,About right,About right,Ballot a\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,About right,Too much,About right,Too little,1005,Too much,About right,About right,Too little,Too little,About right,About right,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1006,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,About right,About right,Too little,About right,Too much,About right,About right,1007,About right,About right,About right,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1008,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too much,About right,Too little,Too little,About right,Too much,Too much,About right,1009,Too little,Too little,Too much,Too much,About right,Too little,Too little,Ballot a\r\n2016,About right,About right,About right,Too much,About right,Too little,Too little,Too little,About right,Too little,Too little,1010,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Don't know,About right,Not applicable,Not applicable,Not applicable,1011,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,Too little,Too little,About right,Too little,About right,Too much,Too little,1012,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1013,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Don't know,Too little,Too little,Too little,Too little,Too much,About right,Too little,1014,Too much,Too little,About right,Too little,Too little,Too little,Too much,Ballot b\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too little,Too little,Too little,About right,1015,Too much,About right,Don't know,Too much,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,About right,Too little,Don't know,Too little,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,1016,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,Too little,Too little,Too little,Too much,Too much,About right,1017,Too little,Too little,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too much,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1018,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,1019,Too little,Too little,Too little,Too little,About right,Too little,Too little,Ballot b\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,1020,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too much,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1021,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,Too little,Too little,Too little,Too little,About right,About right,Too little,1022,Too much,Too little,Too little,Don't know,About right,Don't know,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,Don't know,About right,Not applicable,Not applicable,Not applicable,1023,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,About right,About right,Too much,About right,About right,Too much,About right,About right,1024,About right,About right,Too much,About right,About right,About right,About right,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1025,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,1026,Too much,Too little,Too much,About right,Too much,Too little,Too little,Ballot a\r\n2016,Too little,Too little,Too little,About right,Too much,Too little,Too little,Too little,About right,Too little,Too little,1027,Too little,Too little,Too little,Too little,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,1028,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1029,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too much,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1030,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,About right,About right,About right,About right,About right,About right,1031,About right,About right,About right,About right,About right,About right,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1032,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,About right,About right,About right,About right,Too much,Too little,About right,1033,Too little,About right,Too little,About right,About right,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1034,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1035,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too much,About right,About right,Too little,Too much,About right,Too much,Too little,Too little,1036,Too little,About right,Too much,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,About right,Too little,Too much,About right,Too little,1037,Too little,Too little,About right,Too little,Don't know,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1038,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,Too little,About right,About right,Too little,Too little,About right,Too much,About right,1039,About right,Too little,About right,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,1040,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1041,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Too much,Too much,Too little,About right,1042,About right,Too much,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too little,Too little,About right,About right,Too little,About right,About right,Too little,About right,About right,Too little,1043,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,Too little,About right,About right,Too much,Too little,About right,1044,About right,About right,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Too much,Too little,Don't know,Too little,About right,About right,Too little,Too little,About right,Too little,Don't know,1045,About right,About right,About right,Don't know,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,1046,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,Too much,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1047,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1048,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1049,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too much,Too much,About right,Too little,About right,Too little,About right,Too much,Too little,1050,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,Too much,About right,About right,1051,Too much,About right,About right,About right,Too much,Too little,About right,Ballot c\r\n2016,Too little,About right,Too little,Too little,About right,Too little,Too little,Too little,About right,Too much,Too little,1052,About right,Too little,Too much,Too little,Too much,Too much,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1053,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1054,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1055,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,1056,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1057,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too much,Too little,Too much,Too little,Too much,Too much,Too little,Too little,About right,Too much,1058,About right,About right,Too much,About right,Too much,Too much,Too much,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1059,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1060,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1061,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,About right,About right,About right,About right,Too much,About right,Too little,1062,About right,About right,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,Too much,Too little,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,1063,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,About right,Too little,About right,About right,Too little,Too much,About right,About right,1064,Too much,About right,About right,About right,About right,Too much,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1065,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,About right,About right,About right,Too little,Too little,About right,About right,Too little,1066,Too little,Too little,About right,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1067,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1068,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,1069,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too much,About right,About right,Too little,Too little,Too little,Too much,Too much,Too little,1070,Too little,Too little,Too little,About right,About right,Too little,Too little,Ballot c\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,Too much,Too little,Don't know,1071,About right,About right,Too much,Too little,Too little,Too little,About right,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,About right,Don't know,Too little,Too much,Too much,About right,1072,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1073,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,1074,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too much,Too little,Too much,Too much,Too little,Too much,Too much,Too little,1075,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1076,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1077,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too much,About right,About right,Too much,Too much,About right,Too much,About right,Too much,Too little,1078,Too much,Too much,About right,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1079,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,Too much,Too little,Too much,Too little,Too much,Too little,Too much,Too much,Too little,1080,Too much,Too little,Too little,Too little,Too little,Too much,Too little,Ballot a\r\n2016,About right,Too little,About right,About right,About right,Too little,Too little,Too little,Too much,About right,About right,1081,Too much,Too little,Too much,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1082,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,Too little,About right,About right,Too little,About right,About right,Too little,About right,1083,About right,About right,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1084,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too much,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1085,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too little,Don't know,Too much,Too little,Don't know,1086,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1087,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too much,Too little,1088,Too little,Too little,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1089,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Don't know,Too little,Too little,Too little,Too little,Too much,About right,Too little,1090,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1091,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1092,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1093,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Too little,Too much,Too little,About right,1094,Too little,Too much,Too much,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too little,Too much,Too little,Too little,Too little,Too little,Too much,About right,Too much,Too little,Too little,1095,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1096,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1097,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,About right,About right,About right,About right,Too little,Too much,Too much,Too little,1098,Too much,Too little,Too little,About right,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1099,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too little,Too little,About right,Too much,Too little,1100,About right,About right,About right,Too much,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too much,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1101,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,About right,Too little,Too little,Too much,About right,Too much,1102,About right,About right,About right,About right,About right,About right,About right,Ballot a\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1103,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too much,About right,Too much,Not applicable,Not applicable,Not applicable,1104,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,About right,About right,About right,About right,About right,About right,1105,About right,About right,Too little,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1106,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,Too little,About right,Too little,Too much,Too much,Too much,1107,Too much,Too much,About right,Too little,Too little,Too much,Too little,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,Too little,Too little,Too little,Too much,Too little,Too little,1108,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,About right,Too little,Too little,About right,Too little,Too little,Too much,Too little,About right,1109,About right,Too little,Too little,About right,Too little,Too much,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1110,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,Too little,Too much,About right,Don't know,1111,About right,Too little,About right,About right,Too much,Too much,About right,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1112,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,Don't know,Too much,Too little,Too much,About right,Too much,Too little,Too much,1113,About right,Too much,Too little,Too little,Too little,Too little,Too much,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,1114,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,About right,Too little,About right,About right,Too little,About right,About right,Too little,1115,Too little,Too little,Too much,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1116,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,Too little,Too little,Too little,About right,Too much,About right,1117,Too little,Too little,About right,About right,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too much,About right,Too little,About right,About right,Too much,Not applicable,Not applicable,Not applicable,1118,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,Too little,About right,About right,About right,Too little,Too much,Too little,About right,1119,About right,Too little,Too little,Don't know,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1120,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,About right,Too much,Too little,About right,Too little,About right,About right,About right,1121,About right,About right,About right,Too much,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,1122,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Don't know,Too little,Don't know,About right,Too little,Too little,Too little,Too much,Too much,Too little,1123,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1124,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too much,About right,Too little,About right,Too little,About right,Too little,About right,About right,Too little,1125,About right,About right,Too little,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1126,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too little,Too little,1127,About right,Too little,Too little,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Too much,About right,Too little,Don't know,About right,No answer,About right,About right,No answer,Too little,Don't know,1128,About right,Don't know,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,About right,About right,Too little,About right,About right,About right,About right,About right,About right,About right,About right,1129,Too much,Too little,Too little,Too little,About right,About right,Too little,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,About right,About right,About right,1130,About right,About right,About right,About right,About right,About right,Too little,Ballot a\r\n2016,Not applicable,About right,Too much,About right,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,1131,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1132,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1133,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,Don't know,About right,About right,Don't know,Too little,About right,1134,Don't know,About right,About right,Don't know,Don't know,Don't know,Don't know,Ballot c\r\n2016,Not applicable,Too much,About right,About right,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1135,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,About right,1136,About right,About right,Too little,About right,Too little,About right,About right,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1137,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1138,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too much,Too little,Too little,About right,Too little,About right,Too little,Too much,Too much,About right,1139,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,Don't know,Don't know,Too little,Not applicable,Not applicable,Not applicable,1140,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too much,About right,Too little,1141,Too little,Too much,Too little,Don't know,Too little,Too little,Too little,Ballot a\r\n2016,Too little,About right,About right,About right,Too little,About right,About right,About right,Too little,About right,About right,1142,About right,About right,About right,Too much,About right,Too little,About right,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1143,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too little,Too little,Too much,1144,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too little,About right,About right,About right,Too little,About right,Too little,Too little,About right,About right,About right,1145,About right,About right,About right,About right,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1146,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,Too much,Too much,About right,Too much,About right,1147,Too much,Too little,Too little,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too much,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1148,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,Too much,About right,Too much,Too much,About right,About right,1149,About right,About right,About right,About right,About right,About right,Too much,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1150,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too much,About right,1151,About right,Too little,Too little,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too much,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1152,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,1153,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too much,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too little,Too little,1154,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too little,Too little,Don't know,Too little,Too little,Too little,Too much,Too little,Don't know,Don't know,Don't know,1155,About right,Too little,About right,About right,Too much,Don't know,About right,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1156,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too much,About right,Too little,Too little,About right,Too little,Too much,Too little,About right,1157,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1158,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1159,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too much,Too little,About right,About right,Too little,About right,Too little,Too much,Too little,Too much,1160,Too much,Too little,Too little,Don't know,Too little,Too little,Don't know,Ballot c\r\n2016,Not applicable,About right,Too little,Don't know,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1161,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,Too much,About right,Too little,About right,Too much,Too little,1162,Too much,Too little,Too little,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too much,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1163,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Don't know,Too little,Don't know,Too little,Too little,1164,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1165,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Don't know,Too little,Too much,Too little,Too little,Too little,Too much,About right,Don't know,1166,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1167,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too much,About right,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,1168,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,Too little,Don't know,Don't know,Don't know,1169,Too little,Too little,Too little,About right,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1170,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,No answer,1171,Too much,Too little,Too much,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1172,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,1173,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,About right,About right,Too little,Too little,Too little,About right,About right,About right,About right,1174,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too much,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1175,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,Don't know,About right,Don't know,Don't know,Too little,Too much,Too little,Too little,1176,Don't know,Don't know,Too little,Don't know,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1177,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,Too little,Too little,About right,Don't know,1178,Too little,Too little,Too little,Too little,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1179,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too much,About right,About right,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,1180,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,1181,About right,About right,About right,About right,About right,About right,About right,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1182,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too much,Too much,About right,Too little,Too little,Too little,Too much,About right,Too little,1183,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,About right,About right,About right,Too little,Too little,1184,About right,Too little,About right,Too little,Too much,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,1185,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1186,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,Too little,Too little,About right,Too little,Too little,About right,About right,Too little,1187,Too little,Too little,About right,Too much,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1188,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1189,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,About right,Too much,About right,About right,1190,About right,About right,About right,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1191,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,1192,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1193,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,Too little,About right,Too little,Too little,1194,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1195,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,Too little,Too little,Too little,About right,Too much,About right,1196,Too little,Too little,Too little,About right,Too much,Too much,Too little,Ballot c\r\n2016,Too little,Too little,About right,Too much,About right,Don't know,Too little,About right,About right,Too much,Too little,1197,Too much,Too little,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,Too much,Too little,Too much,About right,About right,Too little,Too little,Too little,Too much,Too much,About right,1198,Too little,Too little,Too little,Don't know,About right,Too little,Too little,Ballot c\r\n2016,About right,About right,About right,Too little,About right,Too little,Too little,Too little,About right,About right,Too little,1199,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,1200,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,Don't know,About right,Don't know,About right,Don't know,Too much,About right,About right,1201,About right,Too little,Too little,About right,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1202,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,Too little,Don't know,Don't know,About right,Not applicable,Not applicable,Not applicable,1203,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,1204,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,1205,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Don't know,Too little,About right,About right,Too little,Too little,Too much,Too little,Don't know,1206,About right,Too much,Don't know,Don't know,Too little,Too much,About right,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,About right,Too much,Too little,Too much,1207,About right,About right,Too much,Too much,Too little,About right,About right,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1208,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too much,Too little,About right,About right,Too little,About right,Too little,About right,About right,About right,1209,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot a\r\n2016,About right,Too little,Too much,Don't know,About right,Don't know,Too little,Too little,Too much,About right,About right,1210,Don't know,Too little,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too much,About right,About right,About right,Too little,Too little,Too little,Too little,About right,About right,Too little,1211,Too little,Too little,Too much,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,Too little,About right,Too much,About right,Not applicable,Not applicable,Not applicable,1212,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too much,About right,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1213,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,About right,Too much,Too much,Too much,Don't know,Don't know,Too little,Too little,Too little,1214,Don't know,About right,Too much,Too much,About right,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1215,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1216,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,Too little,About right,Too much,About right,Don't know,Not applicable,Not applicable,Not applicable,1217,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1218,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1219,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too little,About right,Too much,Too little,Too much,1220,Too much,Too little,Too much,About right,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1221,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,Too little,Too little,Too little,About right,About right,Too much,Too little,Too much,1222,About right,About right,About right,Too much,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1223,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,Too much,About right,Too little,Too little,Too little,Too much,Too little,About right,1224,Too little,About right,Too much,Too much,About right,About right,About right,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,About right,About right,Too little,Too much,Too much,About right,1225,About right,Too little,Too much,Too little,Too little,Too much,Too little,Ballot b\r\n2016,Too much,About right,About right,About right,About right,About right,Too much,About right,Too much,About right,About right,1226,Too much,About right,About right,About right,About right,About right,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1227,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,Too little,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,1228,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,Too little,About right,Too much,Don't know,1229,Too much,Too little,Don't know,Don't know,About right,About right,Too little,Ballot b\r\n2016,Too much,Too much,Too little,About right,About right,Too much,Too little,About right,About right,Too little,Too little,1230,Don't know,About right,Too much,Too little,Too little,Too much,Too little,Ballot c\r\n2016,Not applicable,Too little,Too much,Too little,Too little,Too much,Too little,About right,Not applicable,Not applicable,Not applicable,1231,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1232,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1233,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1234,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1235,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,About right,Too little,About right,About right,About right,Too little,1236,Too little,About right,About right,Too little,Too little,About right,About right,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too much,Too little,About right,Not applicable,Not applicable,Not applicable,1237,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1238,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Too little,Too little,Too little,About right,Too little,Too much,Too little,About right,1239,About right,Too much,Too much,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,Too little,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,1240,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,About right,About right,About right,About right,About right,Too little,1241,About right,About right,Too little,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1242,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too much,Too much,About right,Too little,About right,About right,Too much,Too much,Too little,1243,About right,About right,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Don't know,About right,About right,Too little,About right,Don't know,Too little,About right,Don't know,Too little,Too little,1244,Don't know,About right,About right,Too little,Don't know,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,1245,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,About right,About right,Too much,About right,1246,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1247,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,Too much,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1248,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1249,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,Too little,About right,Too little,About right,About right,Don't know,Too much,Too little,1250,Don't know,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,1251,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,Too much,Too much,Too little,Too little,Too little,About right,Too little,About right,1252,Too much,Too little,Too little,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1253,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too much,Too little,Too much,Too little,Too little,Too much,About right,Too little,Too much,Too little,1254,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,About right,About right,Too little,About right,Too little,Don't know,Too little,About right,Too little,About right,1255,Don't know,Too little,Too little,About right,Too little,Too little,About right,Ballot a\r\n2016,Too much,Too much,Too little,Too much,Too little,Too little,Too little,Too little,Too much,Too much,About right,1256,Too much,Too little,Too much,About right,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too much,Too much,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,1257,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1258,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too much,Too little,Don't know,Too little,About right,About right,Too little,Too much,About right,Too much,1259,About right,Too little,Too much,Don't know,About right,Too little,About right,Ballot a\r\n2016,Too little,Too little,Too little,Don't know,About right,Too little,About right,Too little,Too much,About right,Too little,1260,Too much,Too little,Too little,Don't know,Too little,About right,Too little,Ballot c\r\n2016,About right,About right,Too little,Too much,About right,Too little,Too little,About right,Too much,Too little,About right,1261,About right,Too little,Too little,Too much,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1262,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,Too much,1263,Too much,About right,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,Too much,About right,About right,About right,About right,1264,About right,Too little,Too little,About right,Too little,About right,Too little,Ballot c\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,Too little,About right,Too little,Too little,About right,1265,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,Too much,Too little,About right,Not applicable,Not applicable,Not applicable,1266,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,Too little,About right,Too little,Too little,Too little,Too little,About right,About right,1267,Don't know,Too little,About right,About right,Too little,Too little,Too little,Ballot b\r\n2016,About right,About right,Too little,Too little,About right,Too little,About right,Too little,Too much,Too much,Too little,1268,About right,Too much,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,About right,About right,Too much,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1269,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1270,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,Too little,Too much,About right,About right,About right,Not applicable,Not applicable,Not applicable,1271,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1272,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1273,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,About right,Don't know,Too little,Too much,Too much,About right,1274,Too little,Too little,About right,About right,About right,About right,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Not applicable,Not applicable,Not applicable,1275,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,Too little,About right,Too little,Too little,Too little,Too little,About right,Too little,1276,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too little,Too little,About right,Too little,Too much,Too much,Too little,Too much,About right,No answer,1277,About right,Too much,Too much,Too little,Too little,Too much,About right,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1278,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1279,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,1280,About right,About right,About right,About right,About right,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1281,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too little,Too much,About right,About right,Too much,About right,Too much,Too little,Too much,1282,Too little,Too little,Too much,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too much,About right,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,1283,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,About right,About right,About right,Too little,About right,About right,About right,1284,About right,Too little,About right,About right,Too little,About right,Too little,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,About right,Too little,Too little,Too little,Too much,About right,1285,About right,About right,Too much,About right,About right,Too little,Too much,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1286,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too much,Too much,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1287,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too little,Too much,Too little,Too little,1288,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1289,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too little,1290,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,About right,Too much,About right,About right,Too little,Too little,Too much,Too much,About right,Don't know,Too little,1291,About right,Too little,About right,Too little,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1292,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,Too much,About right,Too little,Too much,Too much,Too much,Too much,Too much,Too much,1293,Too much,Too much,Too much,About right,Too little,Too much,Too much,Ballot c\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,About right,Too little,Don't know,Too little,Too little,1294,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,Too much,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1295,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,About right,Too little,About right,Too little,Too little,Too much,Too little,Too little,1296,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1297,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1298,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Don't know,Not applicable,Not applicable,Not applicable,1299,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,About right,Too much,Too little,Too much,1300,Too little,Too much,About right,Too much,About right,Too little,About right,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1301,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too much,About right,About right,About right,About right,Too little,About right,Too little,Too little,1302,About right,Too little,About right,About right,About right,Too little,Too much,Ballot b\r\n2016,About right,About right,Too little,About right,Too little,Too little,Too little,Too little,Too much,About right,Too much,1303,About right,Too little,Too little,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,1304,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1305,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1306,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Don't know,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,1307,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,Too much,About right,About right,1308,About right,About right,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Too much,Too much,About right,Too much,Too much,Too little,Don't know,Too much,Too much,Too much,About right,1309,Too little,About right,Too much,Too much,Too much,Too much,Too much,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1310,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1311,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too much,About right,About right,Too little,Too little,Too little,Too much,About right,Too little,1312,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Don't know,About right,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,1313,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,About right,About right,About right,Too much,Too much,Too much,Too little,1314,Don't know,Too much,Too much,Too much,Too little,About right,About right,Ballot a\r\n2016,Not applicable,Too little,About right,Too much,Too much,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1315,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Too little,Too much,About right,About right,1316,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,1317,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,About right,About right,About right,About right,Too little,Too much,Too little,Too little,1318,About right,About right,About right,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1319,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,Too much,Too little,About right,1320,Don't know,About right,Don't know,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1321,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too little,Too much,About right,Too little,Too much,Too little,Too much,1322,Too much,Too little,About right,Too much,Too little,About right,Too much,Ballot a\r\n2016,Not applicable,About right,About right,Too little,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,1323,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1324,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,Too little,Too little,About right,Too little,Too much,1325,About right,Too little,Too much,Too little,Too little,Too little,About right,Ballot c\r\n2016,Too much,Too little,Too little,Too much,Too little,Too much,Too little,Too much,Too much,Too little,Too much,1326,Too little,Too much,Too much,Too much,Too little,Too much,Too much,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1327,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too much,Too little,About right,Too little,Too little,About right,Too much,Too little,About right,1328,About right,Too much,About right,Too much,About right,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1329,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,About right,Too much,Too little,Too little,1330,Too little,About right,About right,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1331,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1332,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,Too little,About right,Too little,About right,Too little,Too much,Too much,About right,1333,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot b\r\n2016,Don't know,Too little,Too little,Too little,Too little,About right,Too little,Too little,About right,Too much,Too little,1334,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1335,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too much,About right,Too much,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,1336,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,Too little,Too much,Too little,About right,About right,Too much,About right,1337,Too little,Too little,Too little,About right,Too little,Too much,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1338,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1339,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1340,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,About right,About right,Too little,Too little,Too little,Too much,Too much,Too little,1341,About right,Too little,About right,Too much,Too little,Too little,About right,Ballot a\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,About right,Too little,Too much,Too little,About right,1342,About right,About right,About right,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1343,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,About right,Too much,Too much,Too much,Too little,Too much,1344,Too little,Too little,About right,Too little,Too little,Too much,About right,Ballot a\r\n2016,About right,About right,Too little,About right,About right,About right,About right,About right,Too much,About right,Too much,1345,Too much,About right,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Don't know,About right,About right,About right,Not applicable,Not applicable,Not applicable,1346,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,No answer,No answer,Too much,No answer,No answer,No answer,No answer,No answer,No answer,No answer,No answer,1347,No answer,No answer,No answer,No answer,No answer,No answer,No answer,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,About right,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,1348,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1349,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too much,Too little,Too little,Too little,Too much,Too much,About right,About right,About right,1350,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1351,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1352,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,Too little,Too little,Too little,Too much,Too much,About right,1353,About right,About right,Too much,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1354,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1355,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,1356,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,About right,About right,Too little,Too little,Too little,Too much,About right,About right,1357,About right,Too little,About right,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,1358,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too much,About right,Too little,About right,About right,Too little,About right,Too little,About right,1359,Too little,Too little,About right,Too much,About right,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,About right,Too much,Too much,Too much,Too little,Too little,1360,Too much,Too much,Too little,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,1361,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,1362,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1363,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too little,About right,Too little,About right,Too little,About right,About right,Too little,1364,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Don't know,Too little,About right,Don't know,Don't know,About right,Not applicable,Not applicable,Not applicable,1365,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too much,Too little,About right,Too little,Too little,Too much,Too little,About right,Don't know,Too little,1366,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Too little,Don't know,Too much,Not applicable,Not applicable,Not applicable,1367,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Don't know,About right,Don't know,About right,1368,About right,Too little,Too little,Don't know,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1369,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,About right,Too little,About right,About right,Too little,Too little,Too little,About right,Too little,1370,Too much,Too little,About right,Don't know,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,About right,Don't know,Too little,About right,Not applicable,Not applicable,Not applicable,1371,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,About right,Too little,About right,About right,Too much,Don't know,Not applicable,Not applicable,Not applicable,1372,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,Too little,Too little,Too much,Too little,1373,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1374,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,About right,About right,Too little,Too little,Too little,Don't know,Too much,About right,About right,1375,Don't know,Too little,Too much,Too little,About right,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Don't know,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1376,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,Too little,About right,About right,Too little,Too much,Don't know,Too little,Too much,Too much,1377,Too much,Too little,Too little,Too much,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,1378,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,1379,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Don't know,About right,Don't know,Too little,About right,Don't know,Don't know,Don't know,Don't know,About right,Too little,1380,Don't know,About right,Too little,Too little,Too little,About right,About right,Ballot b\r\n2016,Not applicable,Don't know,Too little,Too much,About right,Too little,Too much,Don't know,Not applicable,Not applicable,Not applicable,1381,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,Too little,About right,Too little,Too little,Too little,Too much,Too much,About right,1382,About right,Too little,Too little,About right,Don't know,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Don't know,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1383,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,Too little,Too much,Too little,About right,Too much,Too little,About right,About right,1384,Too little,Too much,Too little,About right,Too little,Too little,Too much,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1385,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,Too little,Too little,About right,Too little,About right,About right,Too little,1386,Too much,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,1387,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Don't know,Don't know,Too little,Don't know,Too little,About right,Too little,About right,1388,Don't know,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1389,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,Too little,Too little,Too little,Too little,Too little,Too little,About right,1390,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too little,Too little,About right,Too much,About right,About right,Too little,Too much,Too little,About right,1391,Too little,Too much,Too little,Too little,Too little,About right,About right,Ballot c\r\n2016,Don't know,About right,About right,About right,Too little,Too much,Too little,Too little,Too much,Don't know,Too much,1392,Too much,Too little,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,Too little,1393,Don't know,Too much,About right,Too little,About right,Too little,Too little,Ballot c\r\n2016,Too much,Too much,Too much,About right,Too much,Too much,About right,About right,Too much,Too much,Too much,1394,About right,About right,Too much,Too much,About right,About right,About right,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1395,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,About right,About right,Too much,About right,Too much,Too much,Too much,About right,Too little,1396,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Too much,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1397,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,About right,Too much,Too little,About right,1398,Too much,Too much,Too much,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,About right,About right,Too little,Too little,Too little,About right,Too little,Too much,Too little,About right,1399,Don't know,Don't know,Too little,Too little,About right,Too little,Too little,Ballot b\r\n2016,About right,About right,Too little,Too much,Too little,About right,Too little,Too little,About right,About right,About right,1400,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1401,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,Too much,Too little,Too little,Too little,About right,Too much,Too little,Too much,Too little,1402,Too much,Too little,About right,Too much,Too little,Too little,Too little,Ballot c\r\n2016,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,1403,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,Don't know,Too little,Not applicable,Not applicable,Not applicable,1404,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,About right,About right,Too little,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,1405,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too much,About right,Too little,Too little,Too little,Too little,Too little,Too little,1406,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1407,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,About right,About right,About right,Too little,Too little,Too much,Too much,About right,1408,About right,Too little,Too much,About right,Too much,Too much,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1409,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1410,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,Don't know,Too little,Too little,Too much,Too little,Too little,1411,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1412,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,About right,Too much,Too little,About right,Too much,About right,Too little,1413,Too much,Too little,Too little,Too little,Too little,About right,About right,Ballot a\r\n2016,Too much,Too little,Too little,Don't know,Too much,Too little,Too much,Don't know,Too much,Too little,Don't know,1414,Don't know,Don't know,Too little,Too much,Too little,Don't know,Too much,Ballot a\r\n2016,About right,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,1415,Too little,Too little,About right,About right,Too little,Too much,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1416,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,Too little,About right,About right,Too little,About right,Too much,Too little,About right,1417,Too little,Don't know,About right,Don't know,About right,Too little,About right,Ballot c\r\n2016,Too much,Too little,Too little,Too little,About right,About right,About right,About right,Too much,Too much,Too little,1418,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,About right,Too little,About right,Too little,About right,Too little,Too little,About right,Too much,About right,Too little,1419,About right,Too little,Too little,About right,About right,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too much,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1420,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1421,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1422,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Don't know,Too little,Too little,Too little,Too little,About right,Too little,Too much,About right,Too little,1423,Too much,About right,About right,Too little,Don't know,Too little,Too little,Ballot b\r\n2016,About right,About right,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too little,1424,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1425,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Too little,Too little,Too little,About right,About right,About right,Too much,About right,1426,Don't know,Don't know,Too little,Too little,Too little,Don't know,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1427,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Don't know,Too little,About right,About right,Don't know,About right,Too little,Too little,Too much,About right,Too little,1428,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,1429,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1430,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,About right,Too little,Too much,About right,Too much,Too much,Too much,Too much,1431,About right,About right,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,1432,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Don't know,About right,About right,Too much,About right,About right,Too much,Too much,About right,About right,Too little,1433,Too little,Too little,About right,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too much,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1434,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too much,Too little,Too little,1435,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Too much,Too much,About right,Too little,Too little,Too little,About right,Too little,About right,Too much,Too little,1436,Too little,Too little,Too little,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Too much,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1437,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,Don't know,About right,Don't know,Too much,About right,About right,1438,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1439,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,About right,About right,Too little,About right,About right,Too much,Too little,Too little,1440,Too little,About right,Too little,Too little,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1441,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,About right,About right,About right,Too little,Too much,Too much,Too little,1442,Too little,About right,About right,Too little,Too little,About right,Too little,Ballot c\r\n2016,About right,Too little,About right,Too much,About right,About right,Too little,Too little,Too much,About right,Too little,1443,Too much,Too little,About right,About right,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1444,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,About right,About right,About right,Too little,Too much,Too little,Too little,1445,About right,Too much,About right,Too much,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Too little,Don't know,Too little,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,1446,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,Too little,About right,About right,Too little,1447,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too little,About right,About right,Too little,1448,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1449,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,Too much,About right,Don't know,Too much,Too much,About right,Too much,1450,Too much,Too much,About right,Too much,Too little,Too little,Too much,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,About right,Don't know,Too little,About right,Not applicable,Not applicable,Not applicable,1451,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,About right,About right,Too little,Too little,About right,About right,Too little,1452,Too little,Too little,Too little,About right,About right,Too little,Too little,Ballot b\r\n2016,About right,About right,Too little,Too much,About right,About right,About right,Too little,Too much,Too little,Too little,1453,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,1454,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,Don't know,Don't know,Don't know,Too much,Too little,Don't know,1455,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,About right,Too little,Too little,Too much,Too much,About right,1456,Too little,Too little,About right,About right,About right,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1457,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,Too little,Too much,Too little,About right,About right,Too little,Too much,About right,Don't know,1458,Don't know,Too little,Too little,Too much,Too little,Too little,Too much,Ballot c\r\n2016,Not applicable,About right,Too much,About right,Too much,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,1459,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,About right,About right,Too little,Too little,Too little,Too little,Too little,Too much,Too little,1460,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,Too much,Too much,About right,About right,Not applicable,Not applicable,Not applicable,1461,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1462,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1463,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,About right,About right,Too little,Too little,About right,About right,1464,Too much,About right,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,About right,About right,Don't know,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1465,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,Too much,Too much,About right,About right,About right,Too much,Too little,About right,1466,About right,Too much,About right,About right,Too little,About right,Too much,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1467,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,About right,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,1468,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,About right,About right,Too little,Too little,Too little,Too little,About right,Too much,Too little,1469,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Too much,About right,About right,About right,About right,About right,About right,Too little,About right,About right,Too little,1470,About right,About right,Too much,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Too much,Too much,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1471,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Don't know,About right,Too much,Don't know,Too much,About right,Too little,Too much,Too much,Too little,About right,1472,About right,About right,Too much,Too much,About right,About right,Too little,Ballot a\r\n2016,Too little,About right,About right,Too little,About right,Too little,Too little,Too little,About right,About right,About right,1473,About right,Too little,About right,Too little,About right,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too much,About right,About right,About right,Too much,About right,Not applicable,Not applicable,Not applicable,1474,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too little,1475,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,1476,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,Too little,About right,About right,About right,About right,About right,Too little,Too little,1477,About right,Too little,About right,Too little,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1478,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,Don't know,Too little,Too little,Too little,About right,Don't know,Too little,Too little,1479,Don't know,Don't know,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,Too little,Too much,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,1480,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,About right,Too little,Too much,Too little,Too little,1481,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Don't know,About right,About right,Too much,Too little,Too much,1482,Too little,About right,About right,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1483,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too much,Too much,About right,About right,Too much,Too little,Too much,1484,About right,About right,Too little,Don't know,Too little,Too much,Too little,Ballot c\r\n2016,Too little,Too little,About right,Too little,About right,Too little,About right,Too little,About right,About right,Too little,1485,Too much,Too little,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Too much,About right,Too little,Too much,About right,About right,About right,Too little,Too much,Too little,About right,1486,Too little,Too little,Too little,Too little,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,1487,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,About right,Too little,Too little,About right,About right,About right,Too much,About right,1488,About right,Too little,Too much,About right,Too little,About right,About right,Ballot a\r\n2016,Not applicable,About right,Too much,About right,About right,Too much,About right,Too much,Not applicable,Not applicable,Not applicable,1489,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,About right,About right,Too little,Don't know,Too little,Too much,Too little,About right,1490,Too little,Too little,About right,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1491,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,About right,About right,Too little,Too little,About right,Too little,Too little,Too much,About right,1492,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1493,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,About right,Too little,About right,Too much,About right,Too little,About right,1494,Too much,About right,Too little,About right,Too little,About right,Too much,Ballot c\r\n2016,Not applicable,About right,About right,Too much,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1495,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Don't know,Too little,Too much,About right,Too little,1496,Too much,Too little,Too little,About right,Too much,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too much,About right,Too much,Not applicable,Not applicable,Not applicable,1497,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,About right,Too little,About right,About right,About right,About right,About right,Too much,1498,About right,About right,About right,Too little,Too little,About right,Too little,Ballot b\r\n2016,Too much,Too much,Too little,About right,About right,Don't know,Too little,Too much,Too much,About right,About right,1499,Too much,Too little,About right,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1500,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,About right,About right,Too much,About right,Too little,1501,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,About right,About right,Too little,Too much,Too much,Too little,1502,About right,Too little,About right,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1503,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too much,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1504,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too little,1505,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too much,Too much,About right,Not applicable,Not applicable,Not applicable,1506,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,Don't know,About right,Don't know,About right,About right,Don't know,Don't know,About right,1507,Don't know,About right,Don't know,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1508,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,About right,About right,About right,Too little,Too little,Too much,About right,About right,1509,Too much,Too little,About right,About right,Too little,Too little,About right,Ballot b\r\n2016,About right,About right,About right,About right,About right,Too little,About right,About right,About right,About right,About right,1510,About right,About right,About right,About right,About right,About right,Too little,Ballot c\r\n2016,About right,Too little,Too little,About right,Too little,Too little,About right,About right,About right,Too little,Too little,1511,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1512,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1513,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,1514,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1515,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1516,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,About right,Too little,About right,1517,About right,About right,Too little,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1518,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too much,Too much,About right,About right,Too little,About right,Too little,Too little,About right,About right,1519,About right,About right,Too little,About right,Too much,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too much,Don't know,Not applicable,Not applicable,Not applicable,1520,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,Too little,About right,About right,About right,About right,Too little,No answer,1521,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,Too little,Don't know,Too little,Don't know,Too little,About right,Too much,Too little,Don't know,1522,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1523,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,About right,About right,Too little,About right,About right,Too much,About right,About right,1524,About right,About right,About right,About right,Too little,About right,About right,Ballot b\r\n2016,Not applicable,About right,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Not applicable,Not applicable,Not applicable,1525,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,About right,Don't know,About right,Don't know,Too much,Too little,Too little,1526,Too much,About right,Too little,Too much,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1527,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,Too little,About right,About right,Too little,Too little,Too much,Too much,Too little,1528,About right,Too little,Too little,About right,Too little,About right,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,1529,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,Too little,About right,About right,Too little,Too little,Too much,About right,Too little,1530,About right,About right,About right,About right,Too little,Too little,Too little,Ballot c\r\n2016,About right,Too little,About right,Too little,About right,About right,About right,Too little,Too much,Too much,Too little,1531,Too little,Too little,Too little,Too little,About right,About right,About right,Ballot a\r\n2016,Not applicable,About right,About right,Don't know,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1532,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,About right,About right,About right,About right,Too little,Too much,Too much,About right,1533,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,About right,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,1534,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,About right,About right,About right,About right,About right,Too much,About right,Too little,1535,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Don't know,Don't know,Too little,Too little,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,1536,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,About right,Too little,About right,Too little,About right,Too little,About right,Too much,Too little,1537,Too much,Too little,Too little,About right,About right,About right,Too little,Ballot c\r\n2016,Too much,Too little,About right,Too little,About right,Don't know,Too little,Too much,Too much,Too little,Too little,1538,About right,Too much,Too much,Too much,Too little,About right,Too much,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1539,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,About right,About right,Too much,About right,About right,Too much,Too little,Too much,1540,About right,About right,Too little,Too little,Too little,Too much,About right,Ballot c\r\n2016,Not applicable,Too much,Too much,About right,Too little,Too much,About right,Too little,Not applicable,Not applicable,Not applicable,1541,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,About right,About right,About right,Too little,Too little,About right,About right,Too much,1542,About right,Too little,Too little,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1543,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Too little,Too much,Too much,Too little,1544,About right,Too little,Too little,Too little,About right,About right,Too little,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,About right,Too much,Too much,Too little,Too much,1545,About right,Too much,Too much,Too much,About right,Too much,Too much,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1546,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1547,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Don't know,Too little,About right,About right,About right,About right,Too much,About right,About right,Too little,1548,Too much,Too little,About right,About right,Too much,Too little,Too little,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,About right,Too little,Too little,Too much,Too much,Don't know,1549,About right,Too little,Too little,Too little,Don't know,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Not applicable,Not applicable,Not applicable,1550,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Don't know,About right,About right,About right,About right,Don't know,Don't know,Too much,Don't know,1551,About right,Too little,About right,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1552,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Don't know,About right,About right,Too little,Too little,Too little,Too much,Too much,Don't know,1553,Too little,Too little,Too little,Don't know,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1554,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,Too much,Too much,About right,About right,1555,About right,Too little,About right,About right,About right,About right,Too much,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1556,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,About right,Too little,About right,Too little,Too little,Too little,Too much,About right,About right,1557,About right,Too little,Too little,Too little,Don't know,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1558,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,1559,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1560,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,Too little,Too little,Too little,Don't know,Too little,Too much,Too little,About right,1561,Too much,Too little,Too little,Too little,Too little,Too little,About right,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,About right,About right,Too much,Too little,Too little,1562,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Don't know,About right,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,1563,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too much,Too little,About right,Too little,Too little,Too little,Too much,About right,Too little,1564,Too little,Too little,About right,Too little,About right,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too much,Too much,About right,Not applicable,Not applicable,Not applicable,1565,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too little,About right,Too little,About right,1566,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too little,Too little,About right,About right,Too little,Too little,Too little,Too much,About right,Too little,1567,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1568,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1569,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too little,About right,About right,Too little,Too little,Too much,About right,Too little,1570,About right,Too little,Too little,Too little,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1571,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too much,About right,Too little,About right,Too little,About right,Too little,Too little,Too much,Too little,1572,About right,Too little,Too little,Too little,Too much,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1573,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too little,About right,About right,Too little,1574,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,About right,About right,About right,Too much,About right,Too little,1575,Too much,Too little,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1576,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too much,Too little,Too little,Don't know,About right,Too much,Too little,Too little,1577,Too little,Too little,Too little,Too much,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too much,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,1578,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,Too little,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1579,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1580,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,About right,About right,About right,About right,Too much,Too much,Don't know,1581,Too much,About right,Too much,Don't know,About right,Too little,Too much,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1582,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too little,Too little,1583,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1584,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,Too much,Too little,Too little,Too little,Too much,Too little,About right,1585,About right,Too little,Too little,Too much,Too much,Too much,Too little,Ballot a\r\n2016,Don't know,About right,Too little,Too much,About right,Too little,Too much,Too little,Too much,Don't know,Too much,1586,Too little,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot b\r\n2016,About right,Don't know,About right,Too little,About right,Too little,About right,About right,About right,Too little,Too little,1587,Too much,About right,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,1588,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too much,Too little,Too little,Too little,Too little,Too much,Too much,About right,1589,Too little,Too little,Too little,Too little,Too much,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too much,Too little,Too much,About right,About right,Not applicable,Not applicable,Not applicable,1590,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,No answer,Too little,Not applicable,Not applicable,Not applicable,1591,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too much,Too little,About right,About right,Too much,Too much,Too much,Too much,1592,Too much,Too much,Too little,Too much,Too little,Too little,About right,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,About right,1593,About right,Too little,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1594,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,About right,Too little,About right,Too much,Too little,About right,1595,About right,About right,About right,Too much,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,1596,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too much,About right,About right,About right,About right,Too much,Too much,Too much,1597,Too much,About right,Too little,Don't know,About right,Too much,Too little,Ballot c\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,About right,Too little,Too much,About right,Too little,1598,About right,Too little,Too much,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,1599,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1600,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too little,About right,About right,Too little,About right,Too much,About right,About right,1601,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1602,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1603,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too little,Too little,Too much,Too much,Don't know,1604,About right,Too little,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1605,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too much,Too little,About right,About right,Too little,About right,Too little,Too much,Too little,Too little,1606,About right,About right,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1607,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1608,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too much,Too much,Too little,Too much,About right,About right,Too much,Too much,About right,1609,Too much,About right,About right,Too much,About right,About right,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1610,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1611,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1612,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1613,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1614,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1615,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,About right,Too much,About right,About right,About right,Too little,1616,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,About right,Too little,Too little,No answer,Too much,Too little,1617,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1618,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Don't know,About right,Too little,About right,Too little,Too little,Too much,Too little,Too much,Don't know,Too little,1619,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,About right,Too much,Too much,About right,1620,About right,About right,Don't know,About right,About right,About right,About right,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1621,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,1622,Too little,Too little,Too little,About right,About right,Too little,Too little,Ballot c\r\n2016,Too little,Too much,Too little,About right,About right,About right,Too little,Too little,Too much,About right,Too little,1623,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1624,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,About right,1625,About right,Too much,Too little,Too little,About right,Too much,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Don't know,Too little,Too much,About right,Too little,Not applicable,Not applicable,Not applicable,1626,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,Too little,About right,About right,Too much,Too little,About right,1627,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Too little,No answer,About right,About right,Too little,Too little,Too little,Too little,Don't know,Too much,Too little,1628,Too little,Too little,Too little,Don't know,Don't know,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1629,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,Too little,About right,Too little,Too little,Too much,About right,About right,1630,Too much,Too little,Too little,About right,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1631,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,Don't know,About right,Too little,About right,Too little,About right,Don't know,Too little,1632,About right,About right,Too little,About right,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Don't know,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1633,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,1634,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Don't know,Too little,About right,About right,About right,Too little,Too much,About right,Too little,1635,Too much,Too little,Too little,Too little,About right,Too little,Too little,Ballot b\r\n2016,Too much,Too little,About right,About right,Too little,About right,Too little,Too little,Too little,About right,About right,1636,Too much,About right,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too much,Too much,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1637,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Too much,Too much,About right,Too much,1638,Too much,About right,Too little,Too much,Too much,Too much,About right,Ballot a\r\n2016,Too little,Too much,Too little,Too little,Too little,Too little,Too little,Too little,About right,About right,About right,1639,Don't know,Too much,Too little,About right,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Too much,Too little,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1640,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Don't know,Don't know,Too much,Too much,Too little,Not applicable,Not applicable,Not applicable,1641,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,About right,About right,Too little,Too little,About right,About right,Too much,Too little,Too little,1642,Too much,Too little,Too little,Too much,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1643,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,Too little,Too little,About right,About right,Too little,About right,About right,1644,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,About right,About right,Too little,Too little,About right,Don't know,Too little,Too little,Too much,Too little,Don't know,1645,Don't know,Don't know,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,Too little,About right,Too much,Too little,Too much,1646,Too little,About right,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,1647,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too much,About right,About right,1648,About right,Too little,Too little,Don't know,Too much,Too little,Too little,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,About right,1649,Don't know,About right,About right,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1650,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too little,1651,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1652,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,No answer,Too little,Too little,About right,Don't know,Too little,About right,Not applicable,Not applicable,Not applicable,1653,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1654,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too much,About right,About right,Too much,Too little,About right,1655,About right,About right,About right,About right,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,1656,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,About right,Too little,Too much,About right,Too little,1657,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,Too much,Too little,Too little,1658,About right,Too little,Too little,About right,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1659,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too much,Too little,Too little,Too little,About right,Too little,Too much,Too much,About right,1660,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too little,About right,About right,About right,Too little,Too much,About right,Too much,Too little,About right,1661,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too much,Too little,About right,Too little,Too little,About right,About right,About right,About right,Too little,1662,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,About right,Too little,About right,Too little,About right,Too little,Too little,Too little,About right,About right,About right,1663,Too little,About right,Too little,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1664,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,Too little,Too little,Too little,About right,About right,Too much,About right,About right,1665,Don't know,About right,Too much,Too much,About right,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1666,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1667,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,About right,About right,About right,About right,About right,About right,Too little,1668,Don't know,About right,About right,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1669,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,Too little,About right,About right,About right,Too little,Too much,Too much,About right,1670,About right,Too little,Too little,About right,About right,About right,About right,Ballot b\r\n2016,About right,About right,Too little,Too little,About right,Too little,About right,Too little,About right,Too much,Too little,1671,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Don't know,Don't know,Too little,Don't know,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,1672,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too little,1673,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too much,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1674,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1675,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1676,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too much,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too much,Too little,1677,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,1678,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too little,Too little,About right,About right,Too little,About right,About right,About right,Too little,About right,1679,About right,Don't know,About right,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1680,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too much,Too little,No answer,1681,About right,Too much,Too little,Too much,Don't know,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1682,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too much,Too little,About right,Too much,Too little,Too much,1683,About right,About right,Too little,About right,About right,Too much,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Don't know,About right,About right,Don't know,Don't know,Not applicable,Not applicable,Not applicable,1684,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,Too little,Too little,Too little,Too little,About right,Too much,Too much,About right,1685,Too little,About right,About right,Too much,Too much,Too much,About right,Ballot b\r\n2016,Not applicable,Too little,About right,Too much,Too much,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,1686,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too much,Don't know,Too much,Too little,No answer,1687,Don't know,Too little,Too much,Too little,Too much,Too little,Too little,Ballot c\r\n2016,Too much,Too little,Too little,Too much,Too little,Too little,About right,Too little,Too little,About right,Too little,1688,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,Too little,Don't know,About right,Don't know,Too little,Too little,Too much,Too little,Don't know,1689,About right,Too much,About right,Don't know,Too little,Too little,Too little,Ballot b\r\n2016,Too little,Too much,Too little,Too little,Too much,Too little,Too much,About right,Don't know,Too much,Too little,1690,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too little,About right,Too much,Too little,Too little,Too little,Too little,Too much,Too little,Too much,1691,Too little,About right,Too little,About right,About right,Too much,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1692,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too much,Too little,About right,Too little,Too little,About right,Too little,Too little,Too much,Too little,1693,About right,Too little,Too little,Too little,Too much,About right,Too little,Ballot c\r\n2016,About right,About right,Too little,About right,Too little,Too little,Too little,About right,Too little,Too little,Too little,1694,About right,Too little,About right,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Don't know,Too little,About right,About right,Too little,Don't know,About right,Not applicable,Not applicable,Not applicable,1695,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1696,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Don't know,Too much,Too much,Don't know,Too little,Don't know,Not applicable,Not applicable,Not applicable,1697,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Don't know,Too little,About right,Not applicable,Not applicable,Not applicable,1698,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1699,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,Too little,Too little,Too little,Too little,About right,Too little,Too little,1700,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1701,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,About right,About right,Too little,Too little,Too little,Too much,Too much,About right,1702,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1703,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1704,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too much,Too little,About right,Too little,Too little,Too little,About right,Too much,Too much,Too little,1705,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too little,About right,About right,Too little,Too little,Too little,Too little,Too much,Too little,Too much,1706,About right,About right,About right,Too much,Too little,About right,Too little,Ballot a\r\n2016,Too little,About right,Too little,Too little,Too little,Too little,About right,Too little,About right,About right,About right,1707,Too little,Too little,Too little,About right,About right,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1708,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,About right,About right,Too little,Too little,Too little,Too little,Too much,Too little,1709,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too much,About right,About right,Too much,Not applicable,Not applicable,Not applicable,1710,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1711,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,1712,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Don't know,Don't know,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1713,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1714,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,About right,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1715,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,About right,Too much,About right,About right,Too little,About right,Too much,Too much,Too little,1716,About right,Too little,About right,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1717,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1718,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1719,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too much,Too much,Too little,Too much,About right,Too much,Not applicable,Not applicable,Not applicable,1720,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Don't know,About right,About right,Too little,Too little,Too little,Don't know,About right,About right,1721,About right,About right,Too little,About right,Too little,Too little,About right,Ballot c\r\n2016,Too little,Too much,Too little,Don't know,Don't know,Too little,Don't know,Don't know,Don't know,About right,Don't know,1722,Too little,Too little,Too little,Don't know,Don't know,Too little,Too little,Ballot a\r\n2016,Too much,About right,About right,About right,Too much,Too much,Too much,About right,Too much,About right,About right,1723,Too much,About right,Too much,Too much,About right,Too much,About right,Ballot b\r\n2016,Too little,About right,Too little,Too little,Too little,Too little,About right,About right,About right,About right,Too little,1724,Too little,Too little,Too little,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1725,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1726,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,Too little,Too little,About right,About right,About right,About right,About right,Too little,1727,About right,About right,Too little,About right,About right,About right,About right,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too little,Don't know,About right,Don't know,About right,Too little,Too little,1728,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,1729,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Don't know,Too little,Too little,About right,About right,Too little,Too much,About right,About right,About right,Too little,1730,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too much,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1731,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Don't know,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,1732,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,Too much,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,1733,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Don't know,About right,Too little,Too little,Too little,About right,Too little,Don't know,1734,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,About right,Too much,Too little,About right,Too little,Too little,Too much,Too little,Too little,About right,Too little,1735,Too much,Too little,About right,Too little,Too little,Too much,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1736,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,Too little,Too much,Too much,Too much,1737,Too little,Too much,Too much,Don't know,Too little,Too little,About right,Ballot a\r\n2016,Too little,About right,Don't know,About right,Too little,About right,Don't know,About right,Don't know,About right,Too much,1738,Don't know,About right,Too little,About right,About right,Don't know,About right,Ballot b\r\n2016,Too much,Too little,About right,Too little,Too little,Don't know,About right,Too little,Too much,Too little,Too little,1739,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Don't know,Too little,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,1740,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,Too little,Too little,About right,Too little,About right,Too little,Too little,1741,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,Too much,About right,About right,About right,About right,Too much,Too little,About right,1742,Too much,Too much,About right,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,Too little,Too much,Too little,Too little,1743,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1744,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,Don't know,About right,Too little,Too much,Too little,About right,1745,Don't know,Don't know,About right,Too much,Too much,Too little,Too much,Ballot b\r\n2016,Too much,Too little,Too much,Too much,About right,About right,Too little,Too little,About right,About right,Too little,1746,About right,Too little,Too much,About right,Too little,About right,Too little,Ballot a\r\n2016,Too much,About right,About right,Too little,Too little,About right,About right,About right,About right,Too little,Too little,1747,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1748,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1749,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too much,Too little,Too little,Too little,No answer,Too much,Too much,Too little,No answer,1750,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1751,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,About right,Too little,Too little,About right,Too much,Too much,Too much,About right,About right,1752,Too much,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1753,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1754,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too little,About right,About right,Too much,Too little,Too little,Too much,About right,Too little,1755,About right,Too little,About right,Too much,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too much,About right,Too much,Not applicable,Not applicable,Not applicable,1756,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1757,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too much,About right,Too little,1758,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too little,Too little,About right,About right,Too little,About right,About right,Too little,About right,About right,About right,1759,About right,About right,About right,About right,About right,About right,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1760,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,Too little,Too little,Too little,About right,About right,Too little,Too little,1761,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1762,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too little,1763,Too much,Too little,Too little,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1764,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too little,Too little,Too little,Too little,About right,About right,Too little,Too little,Too little,1765,Too much,About right,Too little,Don't know,Too much,Too little,Too little,Ballot b\r\n2016,About right,About right,Too little,Too little,About right,About right,About right,Don't know,About right,About right,About right,1766,About right,About right,Too little,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1767,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,About right,About right,About right,Too little,Too little,1768,Too much,About right,Too little,Too much,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1769,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1770,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Don't know,Don't know,Don't know,Not applicable,Not applicable,Not applicable,1771,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too little,About right,About right,Too little,About right,Too much,Too much,Too much,Too little,1772,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,About right,Too little,Don't know,Too little,Don't know,About right,Too little,Too much,Don't know,Too little,1773,Don't know,Too little,About right,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1774,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1775,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,About right,Too little,About right,Too little,About right,Too little,Too much,Too much,Too little,1776,Too little,Too little,About right,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1777,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too little,Too little,Too little,Too little,Too little,Too much,Too much,About right,Too little,1778,Too much,Too much,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1779,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,No answer,Don't know,Too little,Too little,About right,About right,Too little,Too little,Too much,Too little,Too little,1780,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1781,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too much,Too much,Too much,Too much,Too much,Too little,Not applicable,Not applicable,Not applicable,1782,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too little,About right,About right,Too little,Too much,Too little,Too little,1783,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1784,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,Don't know,About right,Don't know,About right,About right,Too much,About right,Don't know,1785,About right,About right,About right,Too little,Too little,Too little,About right,Ballot a\r\n2016,About right,About right,About right,About right,About right,About right,Too much,Too little,Too much,Too much,About right,1786,About right,About right,Too little,Too little,About right,About right,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Too little,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1787,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,About right,Too little,About right,About right,No answer,Too little,Not applicable,Not applicable,Not applicable,1788,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,Too little,Too little,About right,About right,Too little,Too much,About right,About right,1789,Too little,Too little,About right,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1790,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,1791,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,About right,Too little,Too much,Too much,Too little,1792,About right,Too little,Too much,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too much,Too little,About right,About right,Too little,Too much,About right,About right,About right,Too little,1793,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Don't know,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1794,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,Too little,About right,About right,About right,Too little,Too much,Too little,Too much,1795,Too little,Too little,About right,Too little,Too little,About right,About right,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,About right,Too little,Too little,About right,Too little,Too little,1796,About right,About right,About right,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too much,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1797,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,Too little,About right,Too much,Too little,Too much,Too much,Too little,1798,Too much,About right,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1799,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Don't know,Too little,Don't know,Not applicable,Not applicable,Not applicable,1800,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1801,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1802,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too much,About right,About right,Don't know,About right,Not applicable,Not applicable,Not applicable,1803,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,About right,Too little,About right,Too little,Too little,Too little,Too much,About right,Too little,1804,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1805,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,1806,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,No answer,About right,Too little,Not applicable,Not applicable,Not applicable,1807,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,Too little,Too much,Too little,About right,1808,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Too little,Too little,Too little,About right,About right,Don't know,About right,Too little,About right,Too much,Too little,1809,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,Too much,Too much,Too little,Too much,Too much,About right,1810,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,About right,Too much,Too little,Too much,Too little,Too little,1811,Too much,Too little,Too little,Too much,Too little,Too much,Too little,Ballot b\r\n2016,About right,Too little,About right,Too little,About right,Too little,Too little,Too little,About right,About right,Don't know,1812,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1813,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,Too little,About right,Too little,About right,Too much,Too little,Too much,1814,Too little,Too much,Too much,Too much,About right,About right,Too much,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,About right,Too little,Too little,Too much,Too much,Don't know,1815,Too much,Too little,About right,Too little,Too little,Don't know,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1816,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,About right,Too little,Too little,About right,About right,About right,Too little,Too little,1817,Too much,About right,About right,About right,Too little,Too little,About right,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,Too much,About right,No answer,1818,Too much,Too little,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Too much,Too much,Too little,Too much,About right,Too much,About right,About right,Too much,Too little,Too much,1819,Too little,Too little,Too much,Don't know,About right,About right,Too much,Ballot c\r\n2016,Not applicable,Don't know,About right,Don't know,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1820,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,1821,Too little,Too little,Too little,Too little,Don't know,Too little,Too much,Ballot c\r\n2016,Not applicable,Too little,Too little,Don't know,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1822,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,About right,About right,About right,Too little,Too little,Too much,Too much,About right,1823,Don't know,Too little,Too little,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,About right,Too little,Too much,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1824,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Don't know,Too much,Too little,Too little,Too little,Too little,Don't know,Don't know,Don't know,Too little,Don't know,1825,Too much,Don't know,Too little,Too little,Too little,Too little,Don't know,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1826,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Don't know,About right,Too little,Too little,Too little,Too much,Don't know,About right,1827,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1828,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1829,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,Too much,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1830,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1831,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Don't know,Don't know,About right,Not applicable,Not applicable,Not applicable,1832,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,Don't know,About right,Too much,Not applicable,Not applicable,Not applicable,1833,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,Too little,About right,Too little,About right,Too little,Too little,About right,Too much,1834,About right,Too little,Too little,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1835,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Don't know,About right,Don't know,About right,Don't know,About right,Too little,Too much,Too little,Too little,1836,Too much,Too little,Too little,Too little,Too much,About right,Too little,Ballot a\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,About right,Too little,About right,About right,Too little,1837,Too much,Too little,Too much,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too little,Too little,Too much,Too much,Don't know,1838,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1839,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,About right,Too little,About right,Don't know,About right,Too much,About right,Don't know,1840,Don't know,About right,About right,Too little,Too little,Don't know,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,1841,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,Too little,Too little,Too little,Too much,About right,Too much,Too little,Too little,1842,Too much,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Too much,Too little,Too little,Don't know,Too much,Don't know,Too much,Don't know,Too much,Too little,About right,1843,About right,Too much,Too much,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Don't know,Don't know,About right,Not applicable,Not applicable,Not applicable,1844,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too little,About right,1845,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1846,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Don't know,Don't know,Too little,Don't know,About right,Too little,Too much,Don't know,Too much,Too little,Don't know,1847,About right,Too much,Too little,Don't know,Too much,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Don't know,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1848,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too much,About right,About right,Too little,Too little,About right,Too little,Too much,Too little,About right,1849,About right,About right,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,Too much,Too much,About right,About right,About right,About right,Too much,Too much,Too much,Too much,About right,1850,Don't know,Too much,Too much,Too much,About right,Too much,Too much,Ballot c\r\n2016,Too much,About right,Too little,About right,Too little,Too much,About right,Too little,Too much,Too little,Too much,1851,About right,About right,About right,Don't know,About right,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1852,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,Too little,About right,Too much,Too much,Too little,1853,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1854,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,1855,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too little,1856,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too much,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1857,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,About right,About right,Too little,About right,About right,Too little,About right,Too little,1858,Too much,Too little,Too little,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,About right,About right,About right,Too little,Too little,About right,Too little,Too little,Too little,1859,Too much,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,1860,Too much,About right,About right,About right,About right,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1861,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too little,About right,About right,About right,Too little,About right,Too much,Too little,About right,1862,Too much,Too little,Too little,Too much,Too little,Too much,Too much,Ballot b\r\n2016,Too much,About right,About right,About right,Too little,Too much,Too much,Too much,Too much,Too little,Too much,1863,Too little,About right,Too much,Too much,Too much,Too much,Too much,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,1864,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Don't know,About right,Don't know,Too little,Too little,About right,Too little,Too little,1865,About right,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,1866,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,About right,Too much,About right,About right,Too much,Too much,Too little,1867,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Don't know,Too little,Too little,Don't know,Too little,Too little,About right,Too little,Too much,Don't know,Don't know,1868,Too much,Too little,Too little,Too much,Don't know,Don't know,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,Too little,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,1869,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Don't know,About right,Too little,About right,Too little,Too little,Don't know,Too little,Too little,About right,Don't know,1870,Don't know,Don't know,Too little,Too little,Too little,Don't know,Don't know,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too little,Too little,About right,Too little,Too little,1871,Too much,Too much,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Don't know,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1872,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Too little,1873,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too much,Too much,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1874,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,About right,About right,About right,About right,Too little,About right,About right,Too little,1875,About right,About right,About right,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1876,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Don't know,About right,Too much,Don't know,About right,About right,Too little,Too little,No answer,1877,Too little,About right,Too little,Don't know,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,1878,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,Don't know,Too much,Too much,Too little,Too much,1879,Too little,Too little,Too much,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1880,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too much,Too much,About right,Too much,Too much,Too little,Too much,Too little,Too much,1881,Too little,Too much,Too much,Too little,Too little,Too little,Too much,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too much,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1882,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Don't know,Too little,Too much,Too little,Don't know,Too little,Too much,Too little,Don't know,1883,Too little,Don't know,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too much,Too much,Too much,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,1884,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,About right,Too much,About right,Too little,1885,About right,About right,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,1886,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too much,Too little,Don't know,1887,Too little,Don't know,Too little,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too little,Don't know,Don't know,About right,Too little,About right,Too little,Too much,About right,Too little,1888,Too much,About right,About right,Don't know,About right,About right,Too little,Ballot a\r\n2016,Too little,Too little,About right,About right,Too little,Too little,Too little,Too little,Don't know,About right,Too little,1889,Too little,Too little,About right,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,1890,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Don't know,Don't know,About right,Too much,Too much,Too much,Too much,Too little,Don't know,1891,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Too little,Ballot c\r\n2016,Not applicable,Don't know,Don't know,Too little,Too little,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1892,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too much,About right,Too much,Too much,Too little,Too little,1893,Don't know,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too much,Too little,Too little,Too little,Too little,Too much,Too little,Too little,Too little,Too little,1894,Too much,Too much,Too much,Don't know,Too much,Too much,About right,Ballot b\r\n2016,Not applicable,Too little,About right,About right,Too much,Too much,About right,About right,Not applicable,Not applicable,Not applicable,1895,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,Too little,Too little,About right,Too little,Too much,Too little,Too little,1896,About right,About right,Too little,Don't know,Too little,Don't know,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1897,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,Don't know,Too little,Too little,Too much,Too little,Too little,1898,Too little,Don't know,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too much,Too little,Too little,Don't know,Don't know,Too little,Not applicable,Not applicable,Not applicable,1899,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,Don't know,Too little,Too little,Too much,Too little,Too little,1900,Too little,About right,Too little,About right,Don't know,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1901,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,Too little,Too little,Too little,About right,Too little,Too little,1902,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1903,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Don't know,Don't know,Too little,Don't know,1904,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Too little,About right,Too little,About right,1905,About right,About right,About right,About right,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1906,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,1907,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Don't know,Too little,Don't know,Too little,Too much,Too much,Too little,Too much,1908,Don't know,Too much,Too little,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,About right,About right,Too little,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1909,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,Too much,Too much,About right,About right,1910,About right,About right,About right,About right,Too much,About right,About right,Ballot b\r\n2016,Too little,About right,Too little,About right,Too little,Too little,About right,About right,Too little,Too little,Too little,1911,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Don't know,About right,Don't know,Don't know,Don't know,Not applicable,Not applicable,Not applicable,1912,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,About right,Too little,Too little,About right,About right,Too little,1913,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1914,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too little,1915,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too little,Too much,Too little,Too little,Too little,Too little,About right,Too little,Too much,Too much,Too little,1916,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,About right,Too little,Too little,About right,About right,About right,Too little,About right,About right,Too little,1917,About right,About right,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1918,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,Too little,About right,About right,Too much,Too much,Too much,Too little,1919,Don't know,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too much,Too little,Too little,Too much,Not applicable,Not applicable,Not applicable,1920,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Don't know,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1921,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Don't know,Too much,Don't know,Too little,About right,Too little,Too much,Too much,Too little,About right,1922,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1923,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,1924,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,Too little,Too much,About right,Too much,About right,About right,1925,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1926,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,Don't know,About right,Too little,About right,1927,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,1928,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1929,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,Too much,Too much,Too little,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,1930,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too much,Too little,Too much,Too much,Too much,Too little,Too little,1931,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too much,Too little,Don't know,About right,Too much,About right,Too little,About right,About right,Too little,1932,Too little,Too little,About right,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,1933,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,Too little,Too little,Too little,About right,Too much,Too little,1934,Too little,Too little,Too little,Too little,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too much,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1935,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,1936,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,1937,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,Too little,Too little,About right,Too much,About right,Too little,1938,About right,About right,Too little,Too little,Too little,About right,About right,Ballot c\r\n2016,Too much,About right,Too little,Too little,About right,About right,Too little,Too little,Too much,About right,About right,1939,About right,Too little,Too little,About right,Too little,About right,About right,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,1940,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,Don't know,Too little,About right,About right,About right,Too little,Too little,1941,About right,About right,Too little,Don't know,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,1942,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too much,Too little,Too little,About right,Too little,Too little,About right,Too little,Too little,1943,Too little,Too little,Too little,Don't know,About right,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too much,About right,Too much,1944,Too little,Too little,Too little,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Don't know,About right,Don't know,About right,Too little,Too little,Don't know,Too little,About right,Too little,Don't know,1945,Too little,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1946,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1947,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Don't know,Too little,Too little,About right,Too little,Too little,Too much,About right,Too little,1948,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too little,Too little,1949,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1950,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,Too much,Too much,Too little,About right,1951,About right,Too much,About right,Too little,About right,Too little,About right,Ballot c\r\n2016,Not applicable,About right,About right,About right,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,1952,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Don't know,Too much,Don't know,About right,Too little,About right,Too little,Too much,Too little,About right,1953,About right,Too much,About right,About right,Too little,Too little,About right,Ballot a\r\n2016,About right,About right,About right,About right,Too little,Too little,About right,About right,About right,About right,About right,1954,About right,Too little,About right,About right,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,Too little,Too little,Too little,Too much,About right,Too little,1955,Too much,Too little,Too much,About right,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,About right,About right,Too little,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,1956,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Don't know,Don't know,Too little,Not applicable,Not applicable,Not applicable,1957,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,Too little,About right,Too much,Don't know,Too little,Too much,Too little,Too little,1958,Don't know,About right,About right,Too much,Too little,Too little,Too much,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1959,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1960,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Don't know,Don't know,Too little,Don't know,Too little,Don't know,Too little,Too little,1961,Don't know,Don't know,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too much,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1962,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,Too much,About right,Too little,About right,Too little,Too much,Too little,Too much,1963,Too much,About right,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,1964,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,About right,About right,About right,About right,1965,About right,Too little,About right,Too little,About right,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too much,About right,About right,About right,About right,About right,About right,Too much,Too little,1966,About right,Too little,Too little,About right,About right,Too much,About right,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,1967,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,Too little,About right,Too much,About right,Too little,Not applicable,Not applicable,Not applicable,1968,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too much,Too little,Too little,Too much,Too little,About right,Too much,Too little,About right,Too little,1969,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1970,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1971,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Don't know,About right,About right,Don't know,About right,Too little,About right,Too little,Don't know,Don't know,Don't know,1972,Too much,Too little,Too little,Don't know,Don't know,Don't know,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1973,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,1974,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1975,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too much,Too little,Don't know,About right,Too little,Too much,Too much,Don't know,About right,About right,1976,Too much,About right,About right,Too much,Too little,Too little,Too much,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,1977,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,Too much,About right,About right,Too little,Too little,About right,Too little,About right,1978,Don't know,About right,Too little,Don't know,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,1979,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Don't know,About right,Too little,Too much,About right,Don't know,Don't know,Too much,Don't know,Too little,Don't know,1980,Too much,About right,Too little,Don't know,Don't know,Don't know,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Don't know,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,1981,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too much,About right,Don't know,About right,Not applicable,Not applicable,Not applicable,1982,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too much,About right,Too little,Too much,Too much,Too much,Too little,Don't know,1983,About right,Too much,Too little,Don't know,Too little,Too little,Too much,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1984,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,About right,About right,About right,About right,Too much,About right,About right,1985,About right,Too much,About right,About right,Too little,Too little,Too little,Ballot c\r\n2016,Too much,About right,About right,About right,Too little,Too little,About right,About right,Too much,Too little,Too little,1986,About right,Too much,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,Too little,Too little,About right,About right,Too much,Too much,Too little,Too much,1987,Too little,Too little,About right,Too much,Too much,About right,Too much,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1988,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1989,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too much,About right,About right,Too little,About right,About right,No answer,Too little,About right,1990,Too much,Too little,Too little,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,1991,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,About right,Too little,Too little,About right,Don't know,About right,Don't know,About right,About right,1992,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,1993,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,About right,About right,Too little,Too much,Too little,Too much,About right,About right,1994,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too much,About right,About right,Too little,Not applicable,Not applicable,Not applicable,1995,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Don't know,Too little,Not applicable,Not applicable,Not applicable,1996,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Don't know,About right,Don't know,About right,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,1997,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,Too little,About right,About right,Too little,Too little,Too much,Too little,About right,1998,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too little,Too little,Too little,Too little,Too little,About right,Too little,Too much,About right,Too little,1999,About right,Too little,Too little,Too much,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2000,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,Don't know,Don't know,Too much,Too much,Too little,Too little,About right,2001,Too much,About right,About right,Too much,Too little,About right,About right,Ballot a\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Don't know,Don't know,Don't know,About right,Too little,2002,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,2003,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,Too little,Too little,Too much,Too much,About right,2004,Don't know,Too little,Too little,Too little,About right,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2005,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2006,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2007,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too much,Too much,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2008,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2009,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2010,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,Too little,Too much,Too much,Too little,2011,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,Too little,About right,About right,Too little,Too little,Too much,Too little,Too little,2012,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Don't know,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2013,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2014,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too much,About right,About right,About right,Too little,About right,Too much,Too much,Too little,2015,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2016,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,Too little,About right,Too little,Too little,Too little,About right,About right,Too little,2017,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2018,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,About right,Too much,Too little,Too little,About right,Too much,About right,About right,2019,Don't know,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2020,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,Too little,About right,Too little,About right,Too little,Too much,About right,About right,2021,About right,About right,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2022,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too much,About right,Too much,Too much,Too little,2023,Too much,About right,Too little,About right,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2024,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,About right,Too little,Too little,Too little,Too much,About right,2025,About right,Too little,Too little,Too little,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2026,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,No answer,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2027,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,About right,Too much,About right,Too much,Too much,No answer,2028,About right,About right,About right,About right,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,Too little,Too much,About right,About right,About right,About right,Too much,Too little,Too much,2029,About right,Too much,Too little,Too little,About right,Too much,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2030,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2031,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2032,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too much,Too much,About right,Too much,Too much,Too little,Too much,2033,About right,Too much,About right,About right,Too little,Too little,About right,Ballot c\r\n2016,Too much,About right,About right,About right,About right,About right,Too little,Too little,Too much,Too little,About right,2034,Too little,Too little,About right,Don't know,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2035,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2036,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Don't know,Too little,About right,Too little,Too little,Too little,Too much,About right,2037,About right,Too little,About right,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2038,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,Too much,Too much,Too much,2039,About right,About right,About right,About right,About right,Too much,About right,Ballot a\r\n2016,About right,About right,Too little,About right,About right,About right,Too little,Too little,Too much,About right,Too much,2040,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,About right,Too little,About right,About right,About right,Too little,About right,Too much,About right,Too little,2041,Too much,About right,Too little,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2042,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2043,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,Too little,Too little,About right,About right,About right,Too little,About right,2044,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Don't know,Too little,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2045,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,Too little,Too much,About right,About right,2046,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,Too much,Too little,Too much,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,2047,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,Don't know,About right,About right,About right,Don't know,Not applicable,Not applicable,Not applicable,2048,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,Too much,About right,About right,Too little,About right,Too little,Too much,2049,About right,Too little,Too little,No answer,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too much,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2050,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2051,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,About right,Too much,Too much,Too much,About right,About right,2052,About right,About right,About right,Too much,About right,About right,About right,Ballot c\r\n2016,Not applicable,Too little,About right,Too much,Too much,Too much,About right,Too much,Not applicable,Not applicable,Not applicable,2053,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too much,Too much,About right,About right,Not applicable,Not applicable,Not applicable,2054,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,About right,About right,Too little,About right,2055,About right,About right,Too little,About right,Too little,About right,Too little,Ballot b\r\n2016,Don't know,Too little,Don't know,Don't know,Too little,About right,Too little,Too little,Too much,Too much,Don't know,2056,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,Too little,Too little,About right,Too much,Too little,Too much,Too much,Too much,2057,About right,Too much,Too much,Too much,Too much,Too little,Too much,Ballot b\r\n2016,About right,Too little,Too little,Too little,About right,About right,About right,Too little,About right,Too much,Too little,2058,About right,Too little,Too little,Too much,Too much,About right,Too little,Ballot c\r\n2016,Too much,Too little,About right,Too little,About right,Too little,About right,About right,About right,Too much,Don't know,2059,Too little,Too much,About right,Too little,About right,Too much,Too much,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2060,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,About right,About right,Too little,Too little,Too little,Too much,Too much,Too little,2061,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2062,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too little,2063,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too little,About right,Too much,About right,About right,Too little,Too little,About right,Too little,Too little,2064,About right,About right,About right,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2065,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too little,About right,Too little,Too little,2066,Too little,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2067,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,About right,Too little,About right,Too little,About right,About right,Too much,Too little,Too little,2068,Too little,Too little,About right,Too much,Too little,Too much,Too little,Ballot b\r\n2016,Too little,Too little,Too little,About right,About right,Too little,Too little,Too little,About right,Too much,Too little,2069,Too little,Too little,Too little,About right,About right,Too little,Too little,Ballot b\r\n2016,Too little,About right,Too much,About right,Too little,Too little,About right,Too little,Too much,About right,Too little,2070,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,2071,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too much,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2072,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2073,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,About right,Too little,About right,Too little,Too little,About right,Too little,Too much,Too little,2074,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2075,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,About right,About right,Too little,Too much,Too little,About right,2076,Too little,About right,About right,About right,Too little,About right,About right,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2077,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,About right,About right,Too little,Too little,Too little,About right,About right,About right,2078,About right,Too little,Too little,About right,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2079,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too little,2080,Too little,Too little,About right,Too little,Too much,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2081,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,2082,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,About right,Don't know,About right,Not applicable,Not applicable,Not applicable,2083,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Too little,About right,Don't know,Not applicable,Not applicable,Not applicable,2084,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,Too little,About right,Too little,Too little,Too little,About right,Too little,About right,2085,Too much,Too little,About right,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2086,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2087,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2088,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,Too little,Too little,About right,Too little,Too much,Too little,About right,2089,About right,Too little,About right,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2090,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2091,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too little,Too little,Too little,Too little,Too little,2092,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2093,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,Too much,About right,Too little,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,2094,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Don't know,Don't know,Too little,Too little,2095,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2096,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too much,About right,Too much,About right,About right,Too much,Too little,About right,2097,Too much,Too much,Too much,Too much,About right,Too much,Too much,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2098,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,2099,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2100,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,Too much,About right,Too much,About right,Too much,Too little,About right,2101,Too much,About right,Too little,Don't know,Too little,Too little,About right,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,About right,Too much,Too little,About right,2102,Too much,Too much,Too little,Don't know,Too little,Too little,Too little,Ballot a\r\n2016,About right,Too little,About right,Too little,About right,Too little,Too little,Too little,About right,Too much,About right,2103,About right,Too little,Too little,Don't know,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2104,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too little,2105,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2106,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2107,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Don't know,About right,Too little,Don't know,Don't know,Don't know,Too little,Too little,2108,Don't know,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too much,About right,Not applicable,Not applicable,Not applicable,2109,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2110,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,About right,Too little,Too little,Too little,About right,Too much,Too little,Too little,2111,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,Too little,Too much,Not applicable,Not applicable,Not applicable,2112,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too little,Too much,About right,Too much,Too little,Too much,About right,About right,2113,Too much,Too little,Too little,About right,Too little,Too much,Too little,Ballot b\r\n2016,Too much,About right,About right,About right,About right,About right,Too little,Too little,About right,Too much,About right,2114,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,2115,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,About right,Too little,Too little,Too much,Too little,About right,Too little,Too much,2116,Too much,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2117,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,About right,Too much,About right,About right,2118,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Don't know,Don't know,Too little,Don't know,Don't know,Too much,Don't know,Don't know,Don't know,Too little,No answer,2119,Don't know,Don't know,Don't know,Don't know,Don't know,Too little,Don't know,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2120,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,Too much,About right,Too much,About right,Don't know,2121,Too much,Too little,Too little,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too much,Too little,About right,Not applicable,Not applicable,Not applicable,2122,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,About right,Too little,About right,Too little,Too little,2123,About right,About right,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,Too much,About right,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,2124,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,2125,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,Too little,About right,Too little,Too little,About right,Too little,About right,2126,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Don't know,Don't know,Don't know,Too much,Too much,Not applicable,Not applicable,Not applicable,2127,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,Too much,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2128,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2129,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Too much,About right,Too much,About right,About right,Too much,Too little,About right,2130,About right,About right,Too much,Too much,About right,About right,Too much,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2131,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Don't know,About right,About right,Too little,Don't know,Don't know,Don't know,About right,Don't know,2132,Don't know,About right,About right,Don't know,Too little,Don't know,About right,Ballot b\r\n2016,No answer,About right,No answer,About right,About right,About right,Don't know,Don't know,Too much,Too little,No answer,2133,About right,Don't know,Too little,Don't know,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too much,About right,Too much,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2134,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,Too much,Too much,Too little,Too much,2135,Too little,Too much,Too much,Too much,Too much,Too little,Too much,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2136,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,Too much,About right,About right,About right,Too much,Too much,Too little,Too much,2137,Too much,Too much,Too much,Too much,About right,About right,About right,Ballot b\r\n2016,Not applicable,Too much,Too little,Too much,Too much,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,2138,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,About right,About right,Don't know,Too little,Too much,About right,Too little,2139,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Don't know,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2140,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2141,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,About right,About right,Too little,About right,Too little,Too little,Too little,2142,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2143,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,Too much,About right,About right,Too little,Too little,Don't know,About right,Don't know,2144,About right,About right,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,2145,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,Too much,About right,About right,About right,Too much,About right,Too little,Too little,2146,Too much,About right,About right,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,About right,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,2147,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2148,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,About right,About right,About right,Too little,2149,Too much,About right,About right,Don't know,Too little,Too little,About right,Ballot a\r\n2016,Too much,Too little,Too little,Too much,Too little,Too much,Too much,Too little,Too little,Too much,Too little,2150,Too much,Too much,Too much,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too much,Too much,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2151,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2152,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,Too little,Too little,Too little,About right,Too little,About right,2153,About right,Too little,Too little,Too little,Too little,About right,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2154,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2155,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,Too little,About right,Too little,About right,About right,Too much,Too little,Too little,2156,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,About right,About right,Too much,Too little,Too little,About right,About right,Too much,2157,About right,Too much,Too much,Too much,About right,About right,Too much,Ballot b\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too little,2158,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too little,2159,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too much,Too little,About right,Too little,Too little,Too little,Too little,About right,Too little,Too little,2160,Too much,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2161,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,About right,About right,Too little,About right,About right,Too little,2162,About right,About right,Too little,About right,About right,About right,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2163,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,Too little,Too little,Too little,About right,Too little,Too little,About right,2164,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2165,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,Don't know,About right,Too little,About right,Too little,Too much,About right,Too much,2166,Don't know,Too little,Too little,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too much,About right,About right,Too much,Too little,About right,2167,About right,Too much,About right,About right,Too little,Too little,Too little,Ballot c\r\n2016,Don't know,About right,Don't know,About right,About right,Don't know,Don't know,Too little,Too much,About right,Don't know,2168,Don't know,Too little,Too little,Don't know,Don't know,Don't know,Too little,Ballot b\r\n2016,Too much,Too little,Don't know,About right,Too little,About right,About right,Too little,Too much,Too little,Too little,2169,Don't know,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2170,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too much,Too much,Too little,Too much,Not applicable,Not applicable,Not applicable,2171,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,About right,About right,About right,Too little,Too much,About right,Too little,2172,About right,Too little,About right,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2173,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2174,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too much,About right,Too much,About right,Too much,About right,Too little,Too much,About right,Too much,2175,Too little,Too much,Don't know,Too much,About right,Don't know,Too much,Ballot c\r\n2016,Not applicable,About right,Too little,Don't know,About right,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,2176,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2177,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,Too little,2178,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2179,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,Too much,About right,Too little,About right,About right,About right,Too little,Too little,2180,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,Too little,Too little,About right,Too little,Too little,Too much,Too little,Too much,Too much,Don't know,2181,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2182,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too much,Too little,2183,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too much,About right,Not applicable,Not applicable,Not applicable,2184,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,About right,About right,About right,Too much,About right,Too much,Too little,About right,2185,Too much,About right,About right,About right,Too little,About right,About right,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2186,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Don't know,About right,Don't know,Too little,Too little,Too much,Too little,Too much,2187,Don't know,Don't know,Too much,Too much,Too little,Too little,Too much,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,Too little,Too much,About right,Too much,2188,About right,About right,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Too little,Too little,About right,About right,About right,About right,About right,About right,About right,About right,Too little,2189,About right,Too little,Too little,About right,About right,About right,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2190,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too much,About right,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,2191,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2192,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,About right,Too little,About right,Too little,Too little,Too little,About right,Too much,About right,2193,Too little,About right,Too little,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too much,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,2194,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too much,About right,Too little,About right,Too little,Too much,About right,Too little,2195,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2196,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,Too little,Too little,Too little,Too much,Too little,Too much,About right,2197,About right,Too much,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too much,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,2198,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,Too little,About right,Too little,Too little,Too little,About right,Too much,Too little,2199,Too much,Too much,Too much,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2200,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,2201,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Don't know,Too little,Don't know,About right,Don't know,About right,Don't know,Not applicable,Not applicable,Not applicable,2202,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Don't know,About right,Too little,Too much,Too little,Too much,Too little,Don't know,2203,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2204,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too much,Too little,About right,About right,About right,About right,Too much,About right,About right,2205,About right,About right,About right,About right,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2206,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2207,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,Too little,About right,About right,Too much,About right,Too much,About right,About right,2208,Too much,About right,About right,Too much,Too little,About right,About right,Ballot b\r\n2016,About right,Too little,Too little,Too much,About right,Too little,Too little,About right,Too much,About right,Too little,2209,About right,Too little,Too little,Too little,Too little,Too much,Too little,Ballot c\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,Too little,Too little,2210,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2211,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,About right,About right,Too little,About right,About right,Too little,About right,About right,Don't know,2212,Too little,Too little,Too little,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2213,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,Too little,About right,Too little,About right,Too little,About right,About right,Too little,2214,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2215,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,About right,Too much,Too little,Too little,Too little,Too much,About right,Too little,2216,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Don't know,Too little,About right,About right,About right,About right,Too little,Too little,Don't know,About right,About right,2217,About right,About right,Too much,About right,Too little,Don't know,Don't know,Ballot b\r\n2016,Not applicable,About right,Don't know,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2218,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,Too little,Too little,About right,Too little,Too much,Too much,About right,2219,Too much,About right,Too little,About right,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too much,Too little,About right,Too much,About right,Not applicable,Not applicable,Not applicable,2220,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Don't know,Too little,About right,About right,Too little,Too little,About right,About right,About right,About right,Don't know,2221,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,About right,Too much,About right,About right,2222,Too much,About right,Too little,Too little,Too little,Too much,Too little,Ballot a\r\n2016,Not applicable,About right,About right,Too little,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2223,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,Too much,Too much,Too little,Too little,About right,About right,About right,Too little,2224,Too little,Too little,About right,About right,Too much,About right,Too little,Ballot b\r\n2016,About right,Too little,Don't know,About right,Too little,Too little,About right,About right,About right,About right,Too little,2225,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2226,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,Too much,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2227,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Don't know,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,2228,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,About right,Too little,Too little,Too much,Too little,Too little,Too much,Too little,2229,Too much,Too little,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2230,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too much,Too little,About right,About right,Too little,Too little,Too much,About right,About right,2231,About right,About right,About right,Too much,About right,About right,Too little,Ballot b\r\n2016,Not applicable,Too much,About right,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2232,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Don't know,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2233,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2234,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,Too little,About right,Too little,Too little,About right,About right,Too little,2235,About right,About right,About right,About right,About right,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2236,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,About right,About right,Too little,Too little,Too little,Too much,Too much,Too little,2237,Too little,Too little,Too little,About right,Too much,About right,Too little,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,About right,About right,About right,2238,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Not applicable,Not applicable,Not applicable,2239,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2240,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,About right,About right,About right,Too much,About right,Too little,2241,Too much,Too little,Too little,Too little,About right,Don't know,Too little,Ballot b\r\n2016,Too little,About right,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too little,Too little,2242,Too little,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2243,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,2244,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,Too little,Too little,About right,Too much,Too little,Too little,2245,Too little,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,About right,About right,Too little,About right,Too little,Too little,About right,About right,Don't know,About right,Too little,2246,About right,About right,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,About right,About right,About right,Too little,About right,About right,About right,About right,About right,About right,About right,2247,About right,About right,About right,About right,About right,About right,About right,Ballot c\r\n2016,Not applicable,Too much,Too little,Too much,Too much,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,2248,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Don't know,About right,Too little,Too little,About right,About right,About right,Too little,2249,About right,Too little,Too little,About right,Too much,Too much,Too little,Ballot b\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,About right,Too much,Too little,Too little,2250,Too much,Too little,Too little,Too much,About right,About right,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2251,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,Too little,Too little,About right,Too little,About right,About right,Too little,2252,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,About right,Too little,Too little,Too much,2253,About right,Too little,Too little,Too much,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2254,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,2255,About right,About right,About right,About right,About right,About right,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Don't know,About right,Don't know,Don't know,Don't know,Not applicable,Not applicable,Not applicable,2256,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2257,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too much,Too little,Too much,Too little,Too little,Too much,Too much,Too much,Too much,Too little,2258,Too much,About right,Too little,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Don't know,Too little,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,2259,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Don't know,Not applicable,Not applicable,Not applicable,2260,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,About right,Too much,Too little,About right,2261,About right,About right,Too much,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2262,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,About right,Too much,About right,Not applicable,Not applicable,Not applicable,2263,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,Don't know,Not applicable,Not applicable,Not applicable,2264,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2265,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,About right,Too little,Too little,About right,Too much,Too much,About right,About right,2266,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2267,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Don't know,About right,Not applicable,Not applicable,Not applicable,2268,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too much,Too little,Don't know,About right,About right,Too little,About right,Too much,About right,Too little,2269,Too much,About right,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Don't know,About right,Not applicable,Not applicable,Not applicable,2270,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Don't know,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2271,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Don't know,Too little,About right,Don't know,About right,Too little,About right,About right,Too much,Too little,Don't know,2272,About right,Too little,Too little,Don't know,About right,About right,Too little,Ballot a\r\n2016,About right,Don't know,About right,Don't know,About right,Don't know,Don't know,Don't know,About right,About right,Don't know,2273,Don't know,About right,About right,Don't know,About right,About right,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2274,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too much,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2275,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,Too little,Too little,Too much,Too much,Too much,Too little,2276,Don't know,Too little,Too little,Don't know,Too much,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too much,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2277,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,2278,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2279,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Don't know,About right,About right,Too little,Too little,Too much,Too little,Too little,2280,About right,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too much,Too little,Too little,Too little,About right,Too much,About right,Too much,Too little,Too little,2281,Too much,Too little,Too little,Too little,Too little,Too little,Too much,Ballot a\r\n2016,About right,About right,Too little,About right,Too little,Too little,About right,About right,About right,About right,Too little,2282,Too much,Too little,Too little,About right,About right,About right,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2283,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,Too little,About right,Too little,Too much,About right,Too much,About right,Too little,2284,Too little,Too little,Too much,About right,About right,About right,About right,Ballot c\r\n2016,Too little,Too much,Too little,About right,About right,Too little,About right,About right,Too much,Too much,Too little,2285,Too much,About right,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,Too much,Too little,Too much,Too little,Too little,2286,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,2287,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too much,About right,About right,About right,About right,About right,Too much,About right,About right,Too little,2288,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,About right,About right,Too little,Too little,About right,About right,Don't know,About right,Too much,Too much,About right,2289,Too much,Don't know,About right,About right,Don't know,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,2290,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,About right,Too little,About right,About right,Too little,About right,Too much,About right,2291,Too little,About right,Too little,About right,About right,About right,About right,Ballot b\r\n2016,Not applicable,About right,Too much,About right,Too little,About right,Too much,About right,Not applicable,Not applicable,Not applicable,2292,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2293,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,Too much,Too little,Too little,Don't know,About right,Not applicable,Not applicable,Not applicable,2294,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,About right,About right,Too little,About right,About right,About right,About right,Too little,2295,About right,About right,Too little,About right,Too little,Too little,Too much,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,2296,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,Too little,Don't know,Don't know,About right,Too much,Too much,About right,2297,About right,About right,Too little,Don't know,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2298,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2299,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Don't know,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2300,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,Too little,About right,Too little,About right,2301,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,2302,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2303,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,Too little,About right,Don't know,About right,Don't know,Too much,About right,2304,Too much,About right,Too little,Too much,About right,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2305,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,About right,About right,About right,About right,About right,Too little,2306,Don't know,About right,Too little,Too little,About right,Too little,Too little,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,Too little,About right,Too little,About right,Don't know,Don't know,2307,Too much,Too little,Too little,About right,Too little,Don't know,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,Too little,About right,About right,Don't know,About right,Not applicable,Not applicable,Not applicable,2308,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too much,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2309,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,About right,Too much,Too much,About right,Too little,Too much,Too little,2310,Too much,Don't know,About right,Too much,About right,About right,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2311,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,Don't know,About right,Too little,About right,Too little,Too much,2312,About right,Too much,Too much,Don't know,Too much,Too much,Too much,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,2313,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,About right,About right,Too little,Too little,About right,About right,About right,Too much,Too little,2314,About right,Too little,About right,About right,About right,About right,About right,Ballot c\r\n2016,Too much,About right,Too little,Don't know,About right,Too little,About right,Too much,Too much,Too little,Don't know,2315,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too little,About right,Too little,Too little,Too little,About right,Too much,Too little,About right,Too much,Too little,2316,Don't know,Too little,Don't know,About right,Don't know,Too little,Too little,Ballot b\r\n2016,Too much,About right,About right,Too little,About right,Too little,Too little,Too little,About right,About right,Too little,2317,About right,Too little,About right,About right,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2318,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,Don't know,About right,Too little,About right,Too little,No answer,2319,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2320,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,About right,Don't know,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2321,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,Too little,About right,About right,Don't know,2322,Too little,Too little,About right,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2323,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2324,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Don't know,About right,About right,Don't know,About right,Too much,About right,Too much,About right,2325,Don't know,About right,About right,About right,Too little,About right,About right,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too little,Too little,About right,About right,About right,2326,Too little,About right,Too little,About right,About right,Too little,About right,Ballot a\r\n2016,Too much,Too little,Too much,Too much,About right,Too little,About right,About right,Too much,Too little,Too little,2327,Too little,About right,About right,About right,Too little,Too little,About right,Ballot b\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too little,About right,2328,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too much,About right,Don't know,Not applicable,Not applicable,Not applicable,2329,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too much,About right,Too much,Too much,Too much,Too much,Too little,Too little,Too much,About right,2330,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,About right,About right,About right,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,2331,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too much,About right,Too little,About right,Too much,Too much,About right,About right,2332,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2333,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too much,About right,About right,Too little,Too little,Too little,About right,Too much,Too little,Too much,2334,About right,Too little,Too little,Too much,About right,Too little,Too much,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2335,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,Too little,Too little,About right,About right,About right,Too much,Too little,2336,Too little,About right,Too little,Too much,About right,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too much,About right,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,2337,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,About right,Too little,About right,About right,Too little,About right,2338,Too little,About right,About right,About right,About right,Too little,Too little,Ballot c\r\n2016,Too much,About right,About right,About right,Too little,Too little,Too little,Too little,Too little,Too much,About right,2339,About right,Too little,Too little,About right,Too much,Too little,Too little,Ballot a\r\n2016,About right,About right,About right,About right,Too little,Too little,About right,About right,Too much,Too much,About right,2340,About right,About right,Too little,About right,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,2341,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2342,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,About right,About right,Too little,Too much,Too little,Too much,Too much,Too little,2343,Too much,Too little,Too much,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,About right,Too little,Too little,About right,About right,Too little,Too little,Too much,Too much,About right,2344,Too little,Too little,About right,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,About right,Too little,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,2345,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,About right,About right,Too little,Too little,About right,Too little,Too little,Too little,Too little,2346,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,2347,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too much,Too much,Too much,Not applicable,Not applicable,Not applicable,2348,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,About right,Too much,Too little,Too much,Too little,Too much,Too much,About right,2349,Too much,About right,Too little,Too little,About right,About right,Too little,Ballot a\r\n2016,Too much,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too little,2350,About right,Too little,Too much,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,Too little,About right,About right,About right,About right,About right,Too little,Too much,Too much,Too little,2351,About right,Too little,Too little,Too little,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2352,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2353,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,Too little,About right,Too little,About right,Too much,Too little,Too much,2354,Too little,Too much,Too much,About right,About right,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too much,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2355,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Don't know,About right,About right,Don't know,Too little,Too little,Don't know,Too much,About right,2356,About right,Too much,About right,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,Too much,Too little,Too much,Not applicable,Not applicable,Not applicable,2357,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,About right,About right,About right,Too little,Too little,Too little,Too little,No answer,2358,Too much,Too little,Too little,About right,Too little,About right,Too little,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,Too little,About right,About right,About right,Too little,About right,2359,About right,About right,Too little,About right,About right,About right,About right,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2360,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,Too little,Too little,About right,About right,About right,Too much,About right,About right,2361,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,2362,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2363,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,About right,Too little,Too little,About right,Too much,About right,2364,Too little,Too little,Too little,About right,About right,About right,Too little,Ballot c\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too little,About right,About right,About right,2365,About right,Too much,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2366,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too much,Too much,Too much,Too little,Too much,Don't know,Not applicable,Not applicable,Not applicable,2367,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,Too little,About right,About right,Too little,Too much,Too little,About right,Too little,2368,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too much,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,2369,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,Too little,About right,About right,About right,About right,Too much,Too little,Too much,2370,About right,Too much,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,About right,Too little,Don't know,Too little,About right,Too little,Too little,Too little,Too much,Too much,Too little,2371,Too little,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2372,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,About right,Too much,Too much,Too much,About right,Too much,2373,About right,Too much,Too much,Too much,Too little,Too much,Too much,Ballot a\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,2374,About right,About right,About right,About right,About right,About right,About right,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,Too little,Too little,Too little,About right,Too little,2375,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,2376,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,Too little,Too little,Don't know,Too much,Too little,About right,2377,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2378,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,Too little,About right,Too little,About right,2379,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too much,Too much,Too little,2380,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,2381,Don't know,About right,About right,About right,About right,About right,About right,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2382,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too much,About right,Too much,About right,Too much,About right,About right,About right,About right,2383,About right,Too little,Too much,Too little,About right,About right,About right,Ballot b\r\n2016,Too much,About right,About right,About right,Too little,Don't know,Too much,About right,Don't know,About right,Don't know,2384,Too much,About right,About right,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,Too much,About right,About right,Not applicable,Not applicable,Not applicable,2385,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too much,Too much,About right,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,2386,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,About right,About right,Too little,About right,Too much,Too little,Too little,2387,Too little,Too much,About right,Too little,Too little,About right,Too much,Ballot c\r\n2016,Not applicable,About right,About right,About right,Too much,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2388,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,Too much,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2389,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,About right,Too little,Too little,About right,Too little,About right,About right,About right,2390,About right,Too little,About right,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,Too much,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2391,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2392,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,Too much,Too little,Too little,About right,About right,Too much,About right,About right,2393,Too much,About right,About right,Too little,Too little,About right,Too little,Ballot b\r\n2016,Too much,About right,Too little,Too much,About right,Too little,Don't know,Too much,Don't know,About right,Don't know,2394,About right,Too little,About right,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2395,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,Too little,Too much,Too little,Too much,About right,Too little,Too little,Too much,2396,About right,Too little,Too much,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too much,Too much,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2397,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2398,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too much,Too little,Too little,Too little,About right,About right,Too little,About right,Too little,2399,Too much,Too little,About right,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2400,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too much,Too little,About right,About right,Too much,Too little,Too much,About right,2401,About right,About right,Too much,Too much,Too much,Too little,About right,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,2402,About right,About right,About right,About right,About right,About right,About right,Ballot c\r\n2016,Too much,Too little,About right,About right,Too little,Too little,Too little,About right,Too little,About right,Too little,2403,Too much,Too little,About right,About right,Too little,About right,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2404,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,2405,About right,Too much,About right,About right,About right,About right,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2406,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too much,Too little,About right,Too little,Too little,Too little,About right,Too much,Too much,About right,2407,Don't know,Too little,Too little,About right,Too much,Don't know,Too little,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Don't know,Too much,Too little,2408,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,2409,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,About right,About right,About right,About right,About right,No answer,Too little,2410,About right,About right,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too much,Too little,About right,About right,About right,Too little,Too much,Too much,Too little,About right,2411,About right,Too little,About right,Too little,Too little,Too much,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,Too little,About right,Too little,Too little,Too much,Not applicable,Not applicable,Not applicable,2412,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2413,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too much,Too much,Too much,Too little,About right,Too little,Too much,Too much,Too much,2414,About right,About right,Too much,Too much,Too much,Too much,Too much,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too much,About right,Too little,Not applicable,Not applicable,Not applicable,2415,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,Too little,About right,No answer,Too little,Too little,Too much,Too little,About right,2416,Too little,Too much,Too little,About right,Too little,Too much,Too little,Ballot c\r\n2016,Too much,About right,Too little,Too little,Don't know,Too little,About right,About right,Don't know,About right,Too little,2417,About right,Too little,Don't know,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,Too much,Too much,Too much,Too much,Not applicable,Not applicable,Not applicable,2418,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Don't know,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2419,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Too much,About right,Too little,About right,About right,Too much,Too much,About right,2420,Too much,About right,Too little,Too much,About right,About right,Too little,Ballot a\r\n2016,Too much,Too little,About right,Too little,About right,Too little,About right,Too little,Too much,Too much,Too little,2421,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,About right,About right,About right,Too little,About right,Too little,About right,About right,About right,About right,Too little,2422,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2423,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too much,About right,About right,Too little,About right,Too much,Too little,Too much,Don't know,2424,About right,Too little,About right,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2425,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,Too little,About right,About right,Too little,Too much,Too little,About right,2426,Too much,About right,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Don't know,About right,About right,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,2427,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,Too little,Too little,Too little,Too little,About right,Too much,Too little,2428,About right,Too little,Too little,About right,Too much,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2429,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,Too little,About right,About right,Too little,Too much,Too much,About right,2430,Don't know,Too little,Too little,Too little,About right,About right,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2431,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2432,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,2433,Too much,About right,About right,About right,About right,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,2434,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2435,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Don't know,About right,About right,About right,About right,Too little,About right,About right,Don't know,About right,Too little,2436,Don't know,Too little,About right,About right,About right,About right,Too little,Ballot a\r\n2016,About right,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,About right,2437,About right,Too little,Too little,Too little,About right,About right,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2438,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,2439,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,Too much,About right,About right,2440,About right,About right,About right,About right,Too little,About right,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,2441,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,About right,About right,About right,Too much,Too much,About right,2442,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2443,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,Too little,Too little,About right,Too little,Too much,Too much,Too little,2444,About right,Too little,Too little,About right,Too much,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Don't know,Don't know,Too little,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,2445,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,Too little,Too little,Too little,Too little,About right,About right,Too much,Too little,2446,Too little,Too little,Too little,Too little,Too much,Too little,About right,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2447,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,Too little,About right,Don't know,Too little,Too little,Too much,Too much,Too little,2448,Too little,Too little,About right,Too much,Too much,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,About right,About right,Too much,Too little,About right,Too much,Too little,Too much,2449,Too little,About right,Too much,Too much,Too much,Too much,Too much,Ballot b\r\n2016,Not applicable,Too little,About right,Too much,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,2450,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too much,About right,2451,Too little,Too little,About right,About right,Too little,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2452,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,Too little,Too little,About right,Too little,About right,Too much,Too little,2453,Too little,Too little,About right,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2454,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too much,Too little,Too little,About right,About right,Too much,Too little,About right,2455,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,Too much,Too much,Don't know,Too little,Too little,About right,Too little,About right,2456,Too little,Too much,About right,Too much,Too little,Too little,About right,Ballot b\r\n2016,Too much,Too little,Too much,Too much,Too much,Too much,About right,Too much,Too much,Too little,Too much,2457,Too much,Too much,Too much,Too much,About right,Too much,Too much,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,About right,Too much,About right,Not applicable,Not applicable,Not applicable,2458,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too much,About right,Too much,About right,About right,Too much,Not applicable,Not applicable,Not applicable,2459,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,About right,About right,About right,Too much,Too little,Too much,Too little,Too little,2460,Too little,Too little,Too little,Too little,About right,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too much,About right,About right,Too much,About right,Not applicable,Not applicable,Not applicable,2461,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2462,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,About right,Too little,About right,Too much,Too little,Too much,2463,About right,About right,Too little,About right,Too little,Too little,About right,Ballot b\r\n2016,Too little,About right,Too little,About right,About right,Too little,Too little,Too little,Too much,Too much,Too little,2464,Too little,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,No answer,Too little,Too little,About right,Too much,Too little,Don't know,Too little,About right,Too much,About right,2465,Too little,About right,About right,Too little,Too little,Too little,Too little,Ballot a\r\n2016,About right,About right,Too little,Too little,Too much,About right,Too little,Too little,Too little,About right,Too little,2466,Too much,Too little,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Don't know,Too little,Don't know,Not applicable,Not applicable,Not applicable,2467,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too much,About right,Too little,Too little,Too little,About right,Too little,About right,Too much,About right,2468,Too much,About right,Too little,Too little,Too little,About right,About right,Ballot c\r\n2016,Too little,Too little,Too little,About right,About right,Too little,Too little,Too little,About right,Too much,Too little,2469,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,2470,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,About right,About right,About right,Too little,Don't know,Don't know,Don't know,About right,About right,2471,About right,About right,Too little,About right,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too much,About right,Too much,About right,About right,Too much,Not applicable,Not applicable,Not applicable,2472,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Don't know,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2473,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Don't know,Don't know,Don't know,Don't know,About right,Don't know,Don't know,About right,Don't know,Too much,Too little,2474,About right,Too little,Don't know,Don't know,Don't know,Too much,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too much,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,2475,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,Too little,Too little,About right,Too little,Too much,About right,Too much,2476,Too little,Too little,About right,Too much,Too little,Too much,Too little,Ballot b\r\n2016,About right,Too little,Too little,Too little,Too little,Too little,About right,Too little,About right,Too much,No answer,2477,Don't know,Too little,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,About right,Too little,About right,Too little,About right,Too little,About right,Too little,Too little,Too much,Too little,2478,Too little,Too little,Too little,Too little,About right,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Don't know,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2479,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,Too little,About right,About right,Don't know,2480,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,Too little,Don't know,Too much,Too little,Too little,Don't know,Too much,Too much,Too little,Too much,2481,Too little,Too much,About right,Too much,Too little,Too much,Too much,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2482,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,About right,About right,Don't know,Don't know,Don't know,Too little,About right,About right,Don't know,2483,About right,Don't know,Don't know,Don't know,About right,Don't know,About right,Ballot a\r\n2016,Not applicable,Too little,About right,Too much,Too little,Too much,Too much,About right,Not applicable,Not applicable,Not applicable,2484,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too much,About right,About right,Too little,Too much,Too much,Too little,About right,2485,About right,Too much,Too much,Too much,Too little,About right,Too much,Ballot b\r\n2016,Too much,About right,About right,Too much,About right,Too much,About right,About right,About right,Too little,About right,2486,Don't know,Too much,Too much,About right,Too little,About right,About right,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2487,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2488,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Too little,About right,Too little,Too little,Too little,Too much,About right,Don't know,2489,Too little,Too little,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2490,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2491,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,Don't know,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2492,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2493,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2494,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too much,About right,Too little,About right,Too much,Too much,About right,Too much,2495,Too much,About right,Too much,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Don't know,Don't know,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2496,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,Too little,Too little,Too little,About right,About right,About right,Too little,2497,Too much,About right,Too much,Too much,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Don't know,Too little,Don't know,Don't know,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2498,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,Too much,About right,Too much,About right,About right,Too little,About right,2499,Too much,Too much,About right,About right,About right,About right,About right,Ballot a\r\n2016,Too much,Too much,Too little,Too much,Too little,Too little,Too much,About right,Too much,Too little,About right,2500,About right,Too much,About right,Too much,Too much,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,2501,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too much,Too much,Too little,2502,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2503,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Don't know,About right,Too little,About right,About right,About right,About right,Too much,2504,About right,About right,Too little,Too little,About right,About right,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,2505,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,About right,Too little,Too little,About right,Too little,About right,Too little,About right,2506,About right,Too little,Too little,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2507,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too much,Too little,Too little,Too little,About right,Too much,Too much,About right,Too little,About right,2508,Too much,Too little,Too little,Too little,Too little,Too little,Don't know,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2509,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,2510,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too much,About right,Too much,Too much,No answer,2511,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2512,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,Too little,Too little,About right,Too little,Too little,2513,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2514,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,About right,Too little,Too little,Too little,Too little,Too much,About right,About right,2515,Too little,Too little,About right,No answer,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2516,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too much,Too much,About right,About right,About right,About right,Too much,About right,Too little,2517,Too little,Too little,Too much,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2518,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,Too little,About right,Too little,Too little,Too much,Too little,About right,2519,Too little,Too little,About right,About right,Too little,About right,Too little,Ballot c\r\n2016,About right,About right,Too little,Too little,About right,Too little,Too little,Too little,Too much,Too little,Too little,2520,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2521,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,About right,About right,Too little,About right,2522,About right,About right,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2523,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too much,Too little,Too much,Too little,Too little,Too little,Too little,Too little,Too little,About right,2524,About right,Too little,Too little,Too little,Too little,About right,Too little,Ballot c\r\n2016,Too much,Too little,Too little,Too little,About right,About right,Too little,Too little,About right,Too little,About right,2525,About right,About right,Too much,Too little,About right,About right,Too little,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,About right,Too little,About right,Too little,About right,2526,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,2527,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,Too little,Too little,Too little,Too little,About right,Too much,Too little,About right,2528,Too much,About right,Too little,Too little,About right,Too much,Too little,Ballot c\r\n2016,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too little,About right,Too little,About right,2529,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too much,Too little,About right,Too little,Too much,Too little,About right,2530,No answer,Too much,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Don't know,Too little,Too little,About right,Too little,Too little,Don't know,Don't know,Too much,Too little,Don't know,2531,Don't know,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2532,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,Too little,Don't know,Too little,Too much,Don't know,Too much,Too much,Too little,Don't know,2533,Too much,Too much,Too much,Too much,Too much,Too much,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2534,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2535,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Don't know,About right,About right,Don't know,Too much,About right,Too little,Too much,About right,2536,Too much,About right,Too much,About right,Too little,Too little,Too little,Ballot b\r\n2016,Too much,Too little,Don't know,Too little,About right,Too little,Too little,Too little,Too much,Too little,Too little,2537,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2538,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2539,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,Too little,About right,Too little,About right,Too much,About right,About right,2540,About right,About right,Too much,Too much,Too little,About right,Too little,Ballot c\r\n2016,Too much,Too little,Too little,Don't know,Too much,About right,Too much,Too little,Too much,Too little,Too much,2541,Too much,Too much,Too much,Don't know,Don't know,Too little,Too much,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2542,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,Too little,About right,Too little,Too little,Too little,Too little,About right,2543,Don't know,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2544,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2545,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,Too much,About right,About right,Too little,About right,Too much,Too much,Too much,2546,Too little,About right,About right,Too little,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2547,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,Too little,2548,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,About right,About right,About right,About right,2549,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Don't know,About right,Don't know,Don't know,Don't know,Not applicable,Not applicable,Not applicable,2550,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,2551,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,About right,About right,Too little,Too little,2552,Too little,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too much,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2553,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,About right,Too little,Too little,Too little,Too little,Too little,About right,About right,Too little,2554,Too little,Too little,Too much,Too little,About right,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,Too little,About right,Too little,Too little,2555,Too little,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Don't know,Don't know,Don't know,Don't know,Don't know,Don't know,Too much,Too much,Too little,Don't know,2556,Don't know,Don't know,Too little,Don't know,Too little,Too little,Too little,Ballot a\r\n2016,Too much,About right,About right,About right,Too little,Too little,About right,Too much,Too little,About right,Too little,2557,About right,Too little,About right,Too much,About right,Too much,Too little,Ballot b\r\n2016,About right,Too little,About right,Too little,About right,About right,Too little,Too little,Too much,Too little,About right,2558,Too little,About right,About right,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,About right,Too little,Too much,Too little,Too little,Too much,Too little,Too little,Too much,Too little,2559,Too much,Too little,Too little,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,Too much,Too little,Too much,About right,About right,Not applicable,Not applicable,Not applicable,2560,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too little,About right,Too much,Too little,Too much,Too much,Too much,Too little,Too little,2561,Too much,About right,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Too little,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2562,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,About right,Too little,2563,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,About right,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,2564,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Too much,Too much,Too little,About right,2565,About right,Too much,About right,Too little,About right,About right,Too little,Ballot c\r\n2016,About right,About right,Too little,About right,About right,Too little,Too little,Too little,Too much,Too little,Too little,2566,Too little,Too little,Too much,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,Too little,About right,About right,Too much,About right,About right,2567,About right,Too little,About right,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2568,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2569,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Don't know,Too little,Too little,Too little,Too little,Don't know,About right,Too little,2570,Too much,Too little,Too little,Don't know,Too little,Too much,Too little,Ballot c\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2571,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Too little,About right,About right,Too little,About right,About right,About right,Too little,Too little,2572,About right,Too little,About right,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,2573,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,Too little,2574,Too little,About right,Too little,About right,About right,Too much,Too little,Ballot a\r\n2016,Too much,Too little,Too little,Too little,About right,About right,About right,About right,Too much,Too little,Too much,2575,Too much,Too little,Too little,Too little,Too little,Too much,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2576,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,About right,Too little,Too little,Don't know,About right,Too much,About right,Don't know,2577,About right,Too much,About right,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2578,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,Too little,Too little,Too much,Too little,Too little,Too much,Too much,Too little,Don't know,2579,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,About right,Too little,Too little,Don't know,About right,Too much,About right,About right,2580,About right,About right,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2581,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2582,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,Too little,Too little,Too little,About right,Too much,Too little,Too little,2583,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2584,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Don't know,Too little,Too much,About right,About right,Too much,Too much,Too little,Too little,2585,Too much,About right,Too little,Too little,Too little,Too little,About right,Ballot c\r\n2016,Too little,About right,Too little,Too little,About right,Too little,About right,Too little,About right,Too much,About right,2586,About right,Too little,Too little,Too little,Too little,About right,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2587,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,Too little,Too little,About right,Too little,Too much,About right,Too little,2588,Don't know,Too little,Too little,Too little,Too much,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,Too much,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2589,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Don't know,Too little,Don't know,Don't know,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2590,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,Don't know,About right,Not applicable,Not applicable,Not applicable,2591,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,2592,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,Too much,Too much,About right,About right,Not applicable,Not applicable,Not applicable,2593,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too much,Too little,Too little,2594,About right,About right,About right,About right,Too much,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too much,Too little,Too much,About right,Not applicable,Not applicable,Not applicable,2595,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2596,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too much,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2597,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,About right,Too much,Too little,Too much,Too little,About right,2598,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2599,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,Too much,Too much,Too much,Too little,Too much,2600,Too much,About right,Too little,Too much,Too much,Too little,Too little,Ballot a\r\n2016,Not applicable,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2601,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,About right,Too little,About right,About right,Too little,2602,Too much,Too little,Too little,Too little,About right,Too much,About right,Ballot b\r\n2016,Not applicable,About right,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2603,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,About right,Too much,About right,About right,2604,About right,Too little,About right,Too little,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2605,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Don't know,Too little,Not applicable,Not applicable,Not applicable,2606,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too much,Too much,Too much,Not applicable,Not applicable,Not applicable,2607,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too much,Too little,Don't know,Too little,Too little,Too little,Don't know,Too much,Too much,Too much,2608,Too much,Too much,Too little,Too much,Don't know,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Don't know,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2609,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too much,Too little,Too much,2610,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2611,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2612,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Don't know,Too little,About right,Too little,Too little,Too much,Too little,Too much,2613,Too little,Too little,Too little,Too little,Too little,About right,About right,Ballot c\r\n2016,Too much,About right,About right,About right,About right,About right,About right,About right,Too much,Too little,Too little,2614,Too much,Too little,Too little,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,About right,About right,Too little,About right,About right,About right,Not applicable,Not applicable,Not applicable,2615,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2616,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Don't know,About right,Too little,Don't know,About right,Don't know,Don't know,Don't know,Don't know,Don't know,Too much,2617,Too much,Too much,Too little,Don't know,Don't know,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2618,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2619,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,Too little,Don't know,About right,Too little,Don't know,Too little,Too much,Too little,Don't know,2620,Too much,Too little,Too little,Don't know,About right,About right,Don't know,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2621,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Too little,Too much,Too much,About right,2622,Too much,Too little,Too little,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2623,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too much,Too much,Too little,Not applicable,Not applicable,Not applicable,2624,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,2625,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,Too little,About right,Too little,About right,Too little,Too little,Too little,About right,About right,Too little,2626,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,About right,Too much,Too little,Too little,2627,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2628,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,Too little,Too much,About right,About right,Too little,Too little,Too little,Too little,2629,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,Too little,Too much,Too little,Don't know,2630,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2631,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Don't know,Don't know,Don't know,About right,About right,About right,Don't know,About right,About right,Too much,2632,About right,About right,About right,Too little,About right,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2633,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too much,Too little,About right,About right,About right,About right,Too much,About right,About right,2634,About right,About right,About right,About right,About right,About right,Too much,Ballot c\r\n2016,Not applicable,About right,Too little,Don't know,Don't know,Too little,Don't know,About right,Not applicable,Not applicable,Not applicable,2635,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2636,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Too little,2637,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too much,Too much,About right,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,2638,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,Too little,About right,Too little,About right,Too little,Too little,About right,Too little,Too little,2639,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2640,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Too much,Don't know,Too little,About right,About right,Too much,Too little,Too little,2641,Too little,Too little,Too much,Don't know,Too little,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2642,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,Too little,Too little,About right,About right,Too little,Too little,Too little,2643,About right,Too much,About right,About right,Too little,Too little,About right,Ballot b\r\n2016,Too much,Too much,Too little,Don't know,About right,About right,Too much,Don't know,Too much,Too little,Too little,2644,Don't know,Too little,Too little,Too little,Don't know,Too little,About right,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,Too much,Too little,Not applicable,Not applicable,Not applicable,2645,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2646,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,Too little,About right,Too little,Too much,Too little,Too little,2647,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2648,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,Too little,Too little,Too little,About right,About right,About right,About right,Too little,2649,Too much,Too little,Too little,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2650,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,Too little,Too little,Too little,About right,About right,Too little,Too little,2651,About right,Too little,Too little,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2652,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,Too little,About right,About right,About right,About right,Too much,Too much,About right,2653,About right,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Don't know,Don't know,About right,Don't know,Don't know,Too much,Not applicable,Not applicable,Not applicable,2654,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too little,About right,About right,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Don't know,2655,About right,Too little,About right,About right,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2656,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2657,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,Don't know,Don't know,Not applicable,Not applicable,Not applicable,2658,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too little,About right,Too little,About right,Too little,Too little,Too much,Too little,About right,2659,Too little,Too much,About right,Don't know,Too little,Too little,Too much,Ballot b\r\n2016,About right,Too much,Too little,About right,About right,Don't know,Too little,Too little,Too much,Too much,About right,2660,Too little,Too little,About right,About right,Don't know,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too much,Too much,Too much,Too much,About right,Too much,Not applicable,Not applicable,Not applicable,2661,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too much,Too little,Too little,Too little,Too much,Too much,Too little,2662,About right,Too little,Too little,About right,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2663,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too little,About right,Too much,About right,Too little,Too much,Too little,Too much,2664,Don't know,Too little,Too little,Don't know,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too much,About right,Not applicable,Not applicable,Not applicable,2665,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Too little,Don't know,Don't know,Not applicable,Not applicable,Not applicable,2666,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,Don't know,About right,Don't know,About right,Too little,Too much,About right,Too little,2667,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Don't know,Too little,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2668,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,Don't know,About right,About right,Don't know,Too little,Don't know,About right,Don't know,2669,About right,Too little,Too little,Don't know,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2670,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,Too much,Too much,About right,About right,Too little,About right,Too much,About right,About right,2671,Don't know,Too little,Too little,About right,Too little,Too little,About right,Ballot b\r\n2016,Too much,Too little,Don't know,Too much,Too little,Too little,Don't know,About right,Too much,Too little,Too much,2672,About right,Too much,Don't know,Too much,Too little,Too little,Too much,Ballot c\r\n2016,Too little,Too much,Too little,About right,About right,About right,Too much,About right,About right,About right,Too little,2673,About right,About right,Too little,About right,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2674,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too little,Too much,Too much,Don't know,2675,About right,Too little,Too little,Too little,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2676,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,Too little,About right,Too much,Too much,Too little,Too little,2677,Too much,Too much,About right,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2678,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,About right,About right,Too little,Too little,About right,About right,Too little,About right,About right,2679,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Don't know,Too little,Don't know,Too much,About right,About right,Don't know,Not applicable,Not applicable,Not applicable,2680,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,Too little,Don't know,Too much,Too much,Too much,Too much,About right,Too much,2681,Don't know,Too much,No answer,Too much,Too much,Too much,Too much,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2682,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Don't know,Too much,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2683,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too much,Don't know,About right,Too little,Don't know,Too little,Too little,About right,Too much,Don't know,2684,About right,Too little,Too little,Too little,About right,Too little,About right,Ballot b\r\n2016,About right,About right,Too little,About right,About right,About right,About right,About right,About right,About right,About right,2685,About right,About right,Too little,About right,Too little,About right,About right,Ballot a\r\n2016,Too little,Too little,Too little,Too little,About right,About right,About right,Too little,About right,About right,About right,2686,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,Too much,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2687,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,2688,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Don't know,About right,Don't know,About right,About right,About right,Too much,Too much,About right,About right,2689,About right,About right,About right,About right,About right,About right,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2690,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,About right,About right,About right,Too little,About right,Too much,Too little,2691,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,2692,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,About right,Too much,Too little,About right,2693,Too much,About right,Too little,About right,Too little,About right,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2694,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2695,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,Too little,About right,2696,About right,About right,About right,About right,About right,About right,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2697,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,About right,Too little,About right,Too little,About right,About right,About right,About right,Too little,2698,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2699,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,Too little,About right,Too little,About right,Too much,Too little,About right,2700,Too little,About right,Too little,Too little,Too little,Too little,About right,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,About right,About right,Too little,About right,2701,Too little,Too little,Too little,Too little,Too little,About right,About right,Ballot b\r\n2016,About right,Too little,About right,Too little,Too little,Too little,Too little,Too little,About right,About right,Too little,2702,Too little,Too little,About right,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2703,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,About right,Too little,About right,Too much,About right,Too little,2704,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,About right,About right,About right,Too little,Too little,About right,Too little,About right,About right,Too little,2705,Too little,Too little,Too little,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2706,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2707,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,Too little,Too little,Too much,Too little,About right,2708,About right,Too little,Too little,Too much,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,2709,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too much,About right,About right,2710,About right,Too much,Too little,Too little,Too little,About right,Too little,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,About right,About right,About right,Too much,Too little,Too little,2711,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too much,Too little,About right,About right,Too little,Too much,About right,Too much,Too much,Too little,2712,Too much,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2713,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,Too little,About right,Too little,Too little,Too little,About right,Too little,Too little,2714,About right,About right,Too little,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too much,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2715,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,About right,About right,About right,About right,About right,About right,About right,About right,Too little,2716,About right,Too little,About right,Too little,About right,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Too little,About right,About right,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,2717,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,About right,About right,Too much,About right,About right,Too little,About right,About right,About right,2718,About right,About right,About right,Too little,About right,About right,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2719,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,Too little,Too much,About right,Too little,Too little,2720,Too little,Too little,Too little,Too little,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2721,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,About right,About right,Too little,Too much,About right,Too little,2722,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too much,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,2723,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,Too little,About right,Too little,Too much,Too much,About right,2724,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2725,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Don't know,Too much,Too much,Don't know,About right,Too much,Too much,Too little,Don't know,2726,About right,Too much,About right,Too much,Too little,Too little,About right,Ballot c\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2727,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too much,Don't know,Too little,Too much,Too much,Too little,Too much,Too much,2728,Too little,Too much,Too little,Too much,Too little,Don't know,Too little,Ballot a\r\n2016,Too little,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too little,Too little,2729,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too much,Too much,Too little,Not applicable,Not applicable,Not applicable,2730,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too much,Too little,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2731,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2732,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,About right,About right,About right,About right,Too little,About right,About right,About right,2733,About right,About right,About right,About right,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Don't know,Too much,No answer,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,2734,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Don't know,Too little,About right,Too little,Too little,Too little,About right,Too little,About right,About right,Don't know,2735,About right,Too little,About right,Don't know,About right,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too much,Too much,Too little,Not applicable,Not applicable,Not applicable,2736,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too much,About right,Too much,Too much,About right,Too much,Too much,Too little,About right,2737,About right,Too much,Too much,Too much,Too much,About right,Too much,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,About right,About right,Too much,Not applicable,Not applicable,Not applicable,2738,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2739,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2740,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,2741,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too much,Too much,About right,About right,About right,About right,About right,About right,2742,Too much,About right,Too little,About right,Too little,About right,About right,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,Don't know,Too much,Too much,Too much,Not applicable,Not applicable,Not applicable,2743,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,Too little,About right,About right,Too little,2744,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,About right,Too little,About right,Too little,Too little,2745,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,About right,Too little,Too little,About right,Too little,Too little,About right,About right,Too little,About right,2746,About right,Too little,About right,About right,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2747,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,Too much,About right,About right,About right,Too little,Too much,Too little,About right,2748,Too much,About right,Too little,About right,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2749,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,About right,Too much,Too little,About right,2750,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too much,Not applicable,Not applicable,Not applicable,2751,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too much,About right,Don't know,About right,About right,Don't know,About right,Don't know,About right,No answer,2752,Don't know,About right,About right,Don't know,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2753,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,About right,About right,Too little,Too little,Too little,About right,Too little,Too much,Too little,Too little,2754,About right,About right,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2755,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,Too much,Too much,Too little,Too much,About right,Too much,Too little,About right,2756,Too much,About right,Too little,Too little,About right,Too little,Too little,Ballot a\r\n2016,Not applicable,Too much,About right,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2757,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,Don't know,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2758,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2759,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2760,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,Too much,About right,About right,About right,Too little,2761,Too much,Too much,Too little,Too little,Too little,About right,About right,Ballot a\r\n2016,Too much,Too little,About right,Too little,Too little,Too little,About right,Too little,About right,About right,Too little,2762,Too much,Too little,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Too little,About right,Too little,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2763,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,About right,About right,About right,About right,Too much,About right,Too much,2764,Too much,About right,Too little,Too much,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,About right,Don't know,About right,About right,Don't know,About right,Not applicable,Not applicable,Not applicable,2765,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2766,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,About right,About right,About right,About right,About right,About right,About right,About right,About right,2767,About right,Too little,Too little,Too much,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2768,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too much,Too little,Too little,Too little,Too little,Too little,Too much,About right,About right,2769,About right,Too little,Too little,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,Too little,Too little,Don't know,Don't know,Too little,Not applicable,Not applicable,Not applicable,2770,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,Too little,Too little,About right,About right,Too little,About right,Too much,About right,About right,2771,Too much,About right,Too little,About right,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2772,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,Too little,Too much,About right,Too much,Too much,Too much,Not applicable,Not applicable,Not applicable,2773,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2774,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2775,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,Too little,Too little,Too little,About right,2776,About right,About right,Too little,About right,Too much,Too much,Too much,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2777,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Too little,2778,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Don't know,About right,Too little,Too little,Don't know,Not applicable,Not applicable,Not applicable,2779,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,About right,About right,Too little,Too little,Too little,About right,About right,Too little,2780,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too little,Too little,Too much,Too little,Too little,Too much,Too much,About right,Too little,About right,2781,About right,About right,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,About right,About right,Too little,About right,About right,About right,Too little,Too little,About right,Too little,About right,2782,Too little,Too little,About right,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,About right,About right,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2783,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too much,Too little,Too little,Too much,Too little,Too little,About right,About right,About right,Too little,2784,Too much,About right,Too little,Too much,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,2785,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,About right,Too little,Too little,About right,About right,2786,About right,Too little,Too little,Too little,Too little,About right,About right,Ballot c\r\n2016,Too little,Too much,Too little,About right,About right,Too little,About right,Too much,About right,About right,Too little,2787,Don't know,About right,Too little,Don't know,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,Too much,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2788,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too much,Too little,Too much,Too much,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,2789,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2790,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Don't know,Too little,Too little,About right,Don't know,Too little,Don't know,About right,Too little,2791,Don't know,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Don't know,Don't know,About right,Don't know,About right,Don't know,Not applicable,Not applicable,Not applicable,2792,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,About right,About right,Don't know,About right,Too little,About right,Don't know,Too much,Don't know,Don't know,2793,Don't know,Don't know,Too much,Don't know,About right,About right,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2794,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,Too little,About right,About right,Too little,About right,2795,About right,Too little,Too little,Too little,Too little,Too much,Too little,Ballot a\r\n2016,Not applicable,Too little,Too little,Don't know,Don't know,Don't know,About right,Too little,Not applicable,Not applicable,Not applicable,2796,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,Too much,About right,Too little,Too little,Too little,Too little,About right,Too little,About right,2797,About right,Too little,Too little,Too much,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too little,Too little,Too little,Too little,About right,Too little,About right,Too little,Too little,About right,2798,Too much,About right,Too little,Too little,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2799,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2800,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too much,About right,About right,Too much,About right,Too much,Too much,Not applicable,Not applicable,Not applicable,2801,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,Too little,Too little,Don't know,About right,Not applicable,Not applicable,Not applicable,2802,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too little,About right,About right,About right,About right,Too little,About right,About right,About right,About right,About right,2803,About right,Too little,About right,About right,Too much,About right,Too little,Ballot b\r\n2016,Too little,About right,Too little,Too much,Too much,Too much,Too much,Too much,Too much,About right,Too much,2804,Too much,About right,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Too little,Too little,Too little,Too much,Too much,Too little,Too much,Too much,Too little,Too much,Too little,2805,Too much,Too little,Too little,Too much,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too much,Too little,Too little,Too little,About right,Not applicable,Not applicable,Not applicable,2806,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,About right,About right,About right,About right,About right,About right,2807,About right,Too little,Too little,About right,Too little,Too little,About right,Ballot a\r\n2016,Not applicable,Too much,Too much,About right,About right,Don't know,About right,About right,Not applicable,Not applicable,Not applicable,2808,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too little,About right,Too little,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2809,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too little,About right,Too little,About right,About right,Too little,About right,About right,Too little,About right,Too little,2810,About right,Too little,Too little,About right,About right,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,Too little,Too little,Too little,About right,Too much,Not applicable,Not applicable,Not applicable,2811,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,About right,About right,Too little,Too little,Too much,About right,Too little,2812,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Ballot a\r\n2016,About right,Too little,About right,About right,About right,About right,Too little,Too little,Too much,Too little,About right,2813,About right,Too little,Too little,Too little,Too little,About right,About right,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2814,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,About right,Too little,Too little,About right,About right,Too little,About right,About right,Too much,Too little,Too little,2815,Too much,About right,About right,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Don't know,About right,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2816,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,Don't know,Don't know,About right,Don't know,Too little,Too little,Not applicable,Not applicable,Not applicable,2817,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,About right,Too little,About right,Too little,Too little,About right,Too much,About right,Too little,2818,Too little,Too little,About right,Too little,Too little,About right,Too little,Ballot a\r\n2016,Not applicable,About right,Don't know,Too little,About right,About right,About right,About right,Not applicable,Not applicable,Not applicable,2819,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,Too little,Too little,About right,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2820,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,Too much,About right,Too little,Too much,Too little,Too little,Not applicable,Not applicable,Not applicable,2821,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,About right,About right,About right,Too much,About right,Too much,2822,Too much,About right,About right,Too much,Too much,Too much,About right,Ballot c\r\n2016,Too much,About right,Too little,About right,Too little,Too little,Too little,Too little,Too much,Too little,About right,2823,Too little,Too little,Too little,Too much,Too much,Too much,Too little,Ballot a\r\n2016,Not applicable,About right,About right,Too much,Too little,Too little,Too little,Too much,Not applicable,Not applicable,Not applicable,2824,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Not applicable,About right,About right,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2825,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too much,About right,Too little,About right,About right,About right,About right,Too much,Too little,About right,2826,About right,Too little,Too little,Too little,Too little,About right,About right,Ballot a\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,About right,About right,Too little,About right,2827,About right,Too little,About right,Too little,About right,About right,Too little,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2828,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,Too little,Too little,About right,About right,About right,About right,Too little,Too much,Too little,About right,2829,Too much,About right,About right,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,Too little,Too little,Too little,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2830,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Don't know,About right,Too little,Too little,About right,Too little,Don't know,Too little,Don't know,Don't know,Too little,2831,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,About right,About right,About right,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2832,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,About right,About right,Too much,Too little,About right,Too little,Too little,About right,Too much,About right,2833,Too little,Too little,Too much,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too much,Too much,Too much,Too much,Too little,About right,Not applicable,Not applicable,Not applicable,2834,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Not applicable,Too little,About right,About right,About right,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2835,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,About right,About right,Too little,About right,About right,Too little,About right,Too little,Too much,About right,Too little,2836,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,Too little,Too little,About right,Too little,Too little,Too little,Too little,Too little,Too little,Too much,Too little,2837,Too little,Too little,About right,Too little,Too much,Too little,Too little,Ballot a\r\n2016,Not applicable,About right,Too little,Too much,Too much,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2838,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Don't know,About right,About right,About right,Don't know,About right,Don't know,Don't know,Don't know,2839,Don't know,About right,Don't know,Don't know,Too little,Too little,About right,Ballot b\r\n2016,Not applicable,Too little,About right,Too little,About right,About right,About right,Too little,Not applicable,Not applicable,Not applicable,2840,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too much,About right,About right,About right,Too little,Too little,About right,Too much,Too much,Too little,2841,About right,About right,About right,Too little,Too little,Too little,Too much,Ballot b\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,About right,About right,About right,About right,About right,2842,About right,About right,About right,About right,Too little,Too little,Too little,Ballot c\r\n2016,Not applicable,About right,Too little,About right,About right,Too little,Too much,Too much,Not applicable,Not applicable,Not applicable,2843,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,About right,Too little,Too little,About right,Too much,Too little,Too little,2844,Too little,Too little,Too little,Too little,About right,Too little,About right,Ballot b\r\n2016,Not applicable,About right,Too little,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2845,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Too much,Too little,About right,Too much,About right,Too much,Too much,About right,About right,Too little,About right,2846,Too much,About right,Too little,Too much,Too little,Too much,Too little,Ballot c\r\n2016,Not applicable,Too much,Too little,Don't know,About right,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2847,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,About right,Too little,Too little,Too little,About right,Too much,About right,About right,2848,Too little,Too much,About right,Too much,Too little,About right,Too much,Ballot a\r\n2016,Not applicable,Too little,About right,Too little,About right,Too little,About right,About right,Not applicable,Not applicable,Not applicable,2849,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,Too little,Too little,About right,Too little,Too little,2850,About right,Too little,Too little,Too little,Too little,Too little,Too little,Ballot c\r\n2016,About right,Too little,About right,Too little,About right,About right,About right,Too little,About right,About right,About right,2851,About right,Too little,Too much,About right,About right,Too little,About right,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2852,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,Too much,Too little,About right,About right,About right,About right,About right,Too much,Too much,Too little,About right,2853,About right,About right,Too much,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,Too little,Too little,Too little,Not applicable,Not applicable,Not applicable,2854,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,Too little,About right,About right,About right,Too little,About right,Not applicable,Not applicable,Not applicable,2855,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,About right,Too little,About right,About right,Too little,Too little,Too little,Too much,Too much,Too little,2856,Too little,Too little,Too little,Too little,Too little,Too much,Too little,Ballot b\r\n2016,Not applicable,Too much,Too little,About right,Too little,Too little,About right,Too little,Not applicable,Not applicable,Not applicable,2857,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,About right,Too little,Too little,Too much,Too little,Too much,Too little,Not applicable,Not applicable,Not applicable,2858,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,About right,Too little,About right,About right,Too little,About right,About right,Too much,About right,Don't know,2859,Don't know,Too little,Too little,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,Too little,Too little,Too little,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2860,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,About right,Too much,Too little,Too little,Too much,Too little,Too much,2861,About right,Too little,Too little,Don't know,Too much,Too little,Too much,Ballot a\r\n2016,Not applicable,Too little,Too little,Too much,About right,Too much,Too much,Too little,Not applicable,Not applicable,Not applicable,2862,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n2016,About right,Too little,Too little,Too little,About right,Too little,About right,Too little,About right,About right,Too little,2863,About right,Too little,About right,Too little,Too little,Too little,Too little,Ballot b\r\n2016,Not applicable,Too little,About right,Too much,About right,Too much,About right,Too much,Not applicable,Not applicable,Not applicable,2864,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot a\r\n2016,Not applicable,Too little,About right,About right,Too much,Too much,Too little,Too much,Not applicable,Not applicable,Not applicable,2865,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot b\r\n2016,Too much,Too little,Too little,Too little,Too little,Too little,About right,Too little,Too much,Too little,Don't know,2866,About right,About right,Too little,About right,About right,Too little,About right,Ballot a\r\n2016,Not applicable,Too little,Too little,Too little,About right,About right,Too little,Too little,Not applicable,Not applicable,Not applicable,2867,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Not applicable,Ballot c\r\n,,,,,,,,,,,,,,,,,,,,\r\nSource,\"Data collection: General Social Survey\rCase Selection: (Combined.year = 2016)\",,,,,,,,,,,,,,,,,,,"
  },
  {
    "path": "week-4/Machine learning with Overview.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"**This notebook reads in a CSV of tags assigned in Overview (overviewdocs.com) and tries to generlate them using machine learning, producing a new CSV for import back into Overview.**\\n\",\n    \"\\n\",\n    \"Overview is an open source document mining tool does OCR, search, and visualization of document sets up to the millions.\\n\",\n    \"\\n\",\n    \"To use this script:\\n\",\n    \"\\n\",\n    \"- Manually tag a bunch of documents in Overview. Ensure that each document you review gets exactly one tag (could be \\\"None\\\" or \\\"Other\\\") and that all documents you didn't review have no tags. \\n\",\n    \"- Then export as CSV in \\\"all tags in one column\\\" format. \\n\",\n    \"- Copy the CSV into the same directory as this notebook and call it `overview-tags-in.csv`\\n\",\n    \"- Run this notebook. It will write `overview-tags-out.csv`\\n\",\n    \"- Import this CSV into Overview to create a new document set with computer-assigned tags (Unfortunately there is currently no way to merge tags into an existing document set.)\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"from sklearn.ensemble import RandomForestClassifier\\n\",\n    \"from sklearn.feature_extraction.text import CountVectorizer\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>id</th>\\n\",\n       \"      <th>title</th>\\n\",\n       \"      <th>text</th>\\n\",\n       \"      <th>url</th>\\n\",\n       \"      <th>tags</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Statement on Black History Month\\\\n   ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Praises Susan G. Komen For Reversing ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Applauds Dentists’ Pro-Bono Work For ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Healthcare</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Senator Menendez Applauds Passage of STOCK Act...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Hails Banking Committee Passage of Ir...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Iran</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   id  title                                               text  \\\\\\n\",\n       \"0 NaN    NaN  Menendez Statement on Black History Month\\\\n   ...   \\n\",\n       \"1 NaN    NaN  Menendez Praises Susan G. Komen For Reversing ...   \\n\",\n       \"2 NaN    NaN  Menendez Applauds Dentists’ Pro-Bono Work For ...   \\n\",\n       \"3 NaN    NaN  Senator Menendez Applauds Passage of STOCK Act...   \\n\",\n       \"4 NaN    NaN  Menendez Hails Banking Committee Passage of Ir...   \\n\",\n       \"\\n\",\n       \"                                                 url        tags  \\n\",\n       \"0  http://menendez.senate.gov/newsroom/press/rele...         NaN  \\n\",\n       \"1  http://menendez.senate.gov/newsroom/press/rele...         NaN  \\n\",\n       \"2  http://menendez.senate.gov/newsroom/press/rele...  Healthcare  \\n\",\n       \"3  http://menendez.senate.gov/newsroom/press/rele...       Other  \\n\",\n       \"4  http://menendez.senate.gov/newsroom/press/rele...        Iran  \"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Load document text and tags \\n\",\n    \"df = pd.read_csv('overview-tags-in.csv')\\n\",\n    \"df.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Create document vectors from the text\\n\",\n    \"vectorizer = CountVectorizer(stop_words='english', min_df=2) # keep only words that appear in at least 2 docs\\n\",\n    \"matrix = vectorizer.fit_transform(df.text)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Take a look at the document vectors\\n\",\n    \"vectors = pd.DataFrame(matrix.toarray(), columns=vectorizer.get_feature_names())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"72\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Add the tags into the vectors dataframe, so we can split into train/predict sets\\n\",\n    \"df2 = pd.concat([df.tags, vectors], axis=1)\\n\",\n    \"\\n\",\n    \"# Split into documents that have a tag (training data), and those that don't (data to predict)\\n\",\n    \"train = df2[~pd.isnull(df.tags)]\\n\",\n    \"predict = df2[pd.isnull(df.tags)]\\n\",\n    \"len(train)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"RandomForestClassifier(bootstrap=True, class_weight=None, criterion='gini',\\n\",\n       \"            max_depth=None, max_features='auto', max_leaf_nodes=None,\\n\",\n       \"            min_impurity_decrease=0.0, min_impurity_split=None,\\n\",\n       \"            min_samples_leaf=1, min_samples_split=2,\\n\",\n       \"            min_weight_fraction_leaf=0.0, n_estimators=10, n_jobs=1,\\n\",\n       \"            oob_score=False, random_state=None, verbose=0,\\n\",\n       \"            warm_start=False)\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# build the model\\n\",\n    \"x = train.iloc[:,1:].values\\n\",\n    \"y = train.iloc[:,0].values\\n\",\n    \"rf = RandomForestClassifier()\\n\",\n    \"rf.fit(x,y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Actually predict new tags\\n\",\n    \"x_predict = predict.iloc[:,1:].values\\n\",\n    \"y_predict = rf.predict(x_predict)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>id</th>\\n\",\n       \"      <th>title</th>\\n\",\n       \"      <th>text</th>\\n\",\n       \"      <th>url</th>\\n\",\n       \"      <th>tags</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Statement on Black History Month\\\\n   ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Praises Susan G. Komen For Reversing ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Applauds Dentists’ Pro-Bono Work For ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Healthcare</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Senator Menendez Applauds Passage of STOCK Act...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Hails Banking Committee Passage of Ir...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Iran</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>5</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Transportation Subcommittee Chair Says Biparti...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Transit</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>6</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez, Lautenberg Announce More than $2 Mil...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Fire Dept</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Hosts NJ Small Business Leaders at Na...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Jobs</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>8</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Senator Menendez Slams Unfair Imprisonment of ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Hails President Obama’s Plan to Help ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Housing</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>10</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Calls for FHFA Inspector General to I...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Housing</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>11</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez: Bipartisan Senate Transit Bill Will ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Transit</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>12</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Promotes \\\"Made In America\\\" At Girl Sc...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Appearances</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U.S. Senator Robert Menendez on International ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>14</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez, Burr Applaud President for Joining C...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Energy</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>15</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez, Lautenberg Announces $25,000 to Prom...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Environment</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>16</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez: Heartened to Hear Bonilla Sisters Ar...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>17</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Senators Menendez, Rubio, and Bill Nelson Cond...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>18</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Senator Menendez Calls President’s Speech a Fa...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>19</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>U.S. Senator Robert Menendez on Arrest in Anti...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>20</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Applauds Implementation of New Airlin...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>21</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez Urges the International Community to ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>22</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Lautenberg, Menendez Announce More than $15 Mi...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Disaster</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>23</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Statement from Menendez on PIPA\\\\n             ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>24</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Lautenberg, Menendez Announce $34 Million for ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Energy</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>25</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez, Senators Call On The SEC To Require ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>26</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez, Representatives Call on GAO To Repor...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Housing</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>27</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Lautenberg, Menendez Announce Nearly $100,000 ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Fire Dept</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>28</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez, Lautenberg Hail Department of Agricu...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Airport</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>29</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Lautenberg, Menendez Announce $3.5 Million for...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>Transit</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1500</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>\\\"END THE CYPRUS OCCUPATION\\\" RESOLUTION INTRODU...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1501</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>\\\"END THE CYPRUS OCCUPATION\\\" RESOLUTION INTRODU...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1502</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>LAUTENBERG, MENENDEZ ANNOUNCE $495K IN FEDERAL...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1503</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>SEN. MENENDEZ VOTES IN FAVOR OF FEINGOLD AMEND...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1504</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>SENATORS OUTLINE GOALS FOR CLIMATE CHANGE LEGI...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1505</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>BUSH VETO OF CHILDREN'S HEALTH PROGRAM A REFLE...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1506</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Sens. Salazar, Menendez, and Reid Introduce Re...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1507</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>DEMOCRATS, LOCAL OFFICIALS DISCUSS IMPORTANCE ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1508</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>As Deployments to Iraq Strain National Guard, ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1509</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>SEN. MENENDEZ STRONGLY SUPPORTS NJ STATE LAWSU...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1510</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>LEADERSHIP ON CLIMATE CHANGE HAS BEEN ABSENT I...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1511</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>SEN. MENENDEZ SPEAKS OUT IN SUPPORT OF MEASURE...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1512</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez, Lautenberg, Pallone Call on EPA to G...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1513</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NEW, INNOVATIVE, BIPARTISAN PLAN FOR LATIN AME...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1514</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>REPORT ON HIGHLY POROUS CANADIAN BORDER A CAUS...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1515</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>ON FLIGHT DELAYS, PRESIDENT'S LACK OF ACTION B...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1516</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>MENENDEZ, SIRES INTRODUCE LEGISLATION TO DESIG...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1517</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>LAUTENBERG, MENENDEZ PUSH FOR GREATER SAFETY A...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1518</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Lautenberg, Menendez, Pascrell Fight to Make G...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Healthcare</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1519</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>PRESIDENT, FAA MUST ANNOUNCE STRONG ACTION TO ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1520</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Menendez, Lautenberg Announce Over $900K in Fu...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1521</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Committee Statement on The Role of Credit Rati...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1522</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Lautenberg, Menendez Praise Passage of Water R...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1523</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>SENATE PASSES GANGS LEGISLATION WITH MENENDEZ ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1524</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>LAUTENBERG, MENENDEZ ANNOUNCE $2.3 MILLION FOR...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1525</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>REPUBLICAN UNWILLINGNESS TO CHANGE COURSE IN I...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1526</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>CHILDREN'S HEALTH INSURANCE DEAL ANNOUNCED; SE...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1527</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>FEDERAL DECISION ON ELECTRICITY DISPUTE WILL N...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1528</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>SEN. MENENDEZ CONTINUES TO FIGHT FOR EQUITABLE...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Other</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1529</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>SEN. MENENDEZ STATEMENT ON FEINGOLD AMENDMENT ...</td>\\n\",\n       \"      <td>http://menendez.senate.gov/newsroom/press/rele...</td>\\n\",\n       \"      <td>bot-Appearances</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>1530 rows × 5 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"      id  title                                               text  \\\\\\n\",\n       \"0    NaN    NaN  Menendez Statement on Black History Month\\\\n   ...   \\n\",\n       \"1    NaN    NaN  Menendez Praises Susan G. Komen For Reversing ...   \\n\",\n       \"2    NaN    NaN  Menendez Applauds Dentists’ Pro-Bono Work For ...   \\n\",\n       \"3    NaN    NaN  Senator Menendez Applauds Passage of STOCK Act...   \\n\",\n       \"4    NaN    NaN  Menendez Hails Banking Committee Passage of Ir...   \\n\",\n       \"5    NaN    NaN  Transportation Subcommittee Chair Says Biparti...   \\n\",\n       \"6    NaN    NaN  Menendez, Lautenberg Announce More than $2 Mil...   \\n\",\n       \"7    NaN    NaN  Menendez Hosts NJ Small Business Leaders at Na...   \\n\",\n       \"8    NaN    NaN  Senator Menendez Slams Unfair Imprisonment of ...   \\n\",\n       \"9    NaN    NaN  Menendez Hails President Obama’s Plan to Help ...   \\n\",\n       \"10   NaN    NaN  Menendez Calls for FHFA Inspector General to I...   \\n\",\n       \"11   NaN    NaN  Menendez: Bipartisan Senate Transit Bill Will ...   \\n\",\n       \"12   NaN    NaN  Menendez Promotes \\\"Made In America\\\" At Girl Sc...   \\n\",\n       \"13   NaN    NaN  U.S. Senator Robert Menendez on International ...   \\n\",\n       \"14   NaN    NaN  Menendez, Burr Applaud President for Joining C...   \\n\",\n       \"15   NaN    NaN  Menendez, Lautenberg Announces $25,000 to Prom...   \\n\",\n       \"16   NaN    NaN  Menendez: Heartened to Hear Bonilla Sisters Ar...   \\n\",\n       \"17   NaN    NaN  Senators Menendez, Rubio, and Bill Nelson Cond...   \\n\",\n       \"18   NaN    NaN  Senator Menendez Calls President’s Speech a Fa...   \\n\",\n       \"19   NaN    NaN  U.S. Senator Robert Menendez on Arrest in Anti...   \\n\",\n       \"20   NaN    NaN  Menendez Applauds Implementation of New Airlin...   \\n\",\n       \"21   NaN    NaN  Menendez Urges the International Community to ...   \\n\",\n       \"22   NaN    NaN  Lautenberg, Menendez Announce More than $15 Mi...   \\n\",\n       \"23   NaN    NaN  Statement from Menendez on PIPA\\\\n             ...   \\n\",\n       \"24   NaN    NaN  Lautenberg, Menendez Announce $34 Million for ...   \\n\",\n       \"25   NaN    NaN  Menendez, Senators Call On The SEC To Require ...   \\n\",\n       \"26   NaN    NaN  Menendez, Representatives Call on GAO To Repor...   \\n\",\n       \"27   NaN    NaN  Lautenberg, Menendez Announce Nearly $100,000 ...   \\n\",\n       \"28   NaN    NaN  Menendez, Lautenberg Hail Department of Agricu...   \\n\",\n       \"29   NaN    NaN  Lautenberg, Menendez Announce $3.5 Million for...   \\n\",\n       \"...   ..    ...                                                ...   \\n\",\n       \"1500 NaN    NaN  \\\"END THE CYPRUS OCCUPATION\\\" RESOLUTION INTRODU...   \\n\",\n       \"1501 NaN    NaN  \\\"END THE CYPRUS OCCUPATION\\\" RESOLUTION INTRODU...   \\n\",\n       \"1502 NaN    NaN  LAUTENBERG, MENENDEZ ANNOUNCE $495K IN FEDERAL...   \\n\",\n       \"1503 NaN    NaN  SEN. MENENDEZ VOTES IN FAVOR OF FEINGOLD AMEND...   \\n\",\n       \"1504 NaN    NaN  SENATORS OUTLINE GOALS FOR CLIMATE CHANGE LEGI...   \\n\",\n       \"1505 NaN    NaN  BUSH VETO OF CHILDREN'S HEALTH PROGRAM A REFLE...   \\n\",\n       \"1506 NaN    NaN  Sens. Salazar, Menendez, and Reid Introduce Re...   \\n\",\n       \"1507 NaN    NaN  DEMOCRATS, LOCAL OFFICIALS DISCUSS IMPORTANCE ...   \\n\",\n       \"1508 NaN    NaN  As Deployments to Iraq Strain National Guard, ...   \\n\",\n       \"1509 NaN    NaN  SEN. MENENDEZ STRONGLY SUPPORTS NJ STATE LAWSU...   \\n\",\n       \"1510 NaN    NaN  LEADERSHIP ON CLIMATE CHANGE HAS BEEN ABSENT I...   \\n\",\n       \"1511 NaN    NaN  SEN. MENENDEZ SPEAKS OUT IN SUPPORT OF MEASURE...   \\n\",\n       \"1512 NaN    NaN  Menendez, Lautenberg, Pallone Call on EPA to G...   \\n\",\n       \"1513 NaN    NaN  NEW, INNOVATIVE, BIPARTISAN PLAN FOR LATIN AME...   \\n\",\n       \"1514 NaN    NaN  REPORT ON HIGHLY POROUS CANADIAN BORDER A CAUS...   \\n\",\n       \"1515 NaN    NaN  ON FLIGHT DELAYS, PRESIDENT'S LACK OF ACTION B...   \\n\",\n       \"1516 NaN    NaN  MENENDEZ, SIRES INTRODUCE LEGISLATION TO DESIG...   \\n\",\n       \"1517 NaN    NaN  LAUTENBERG, MENENDEZ PUSH FOR GREATER SAFETY A...   \\n\",\n       \"1518 NaN    NaN  Lautenberg, Menendez, Pascrell Fight to Make G...   \\n\",\n       \"1519 NaN    NaN  PRESIDENT, FAA MUST ANNOUNCE STRONG ACTION TO ...   \\n\",\n       \"1520 NaN    NaN  Menendez, Lautenberg Announce Over $900K in Fu...   \\n\",\n       \"1521 NaN    NaN  Committee Statement on The Role of Credit Rati...   \\n\",\n       \"1522 NaN    NaN  Lautenberg, Menendez Praise Passage of Water R...   \\n\",\n       \"1523 NaN    NaN  SENATE PASSES GANGS LEGISLATION WITH MENENDEZ ...   \\n\",\n       \"1524 NaN    NaN  LAUTENBERG, MENENDEZ ANNOUNCE $2.3 MILLION FOR...   \\n\",\n       \"1525 NaN    NaN  REPUBLICAN UNWILLINGNESS TO CHANGE COURSE IN I...   \\n\",\n       \"1526 NaN    NaN  CHILDREN'S HEALTH INSURANCE DEAL ANNOUNCED; SE...   \\n\",\n       \"1527 NaN    NaN  FEDERAL DECISION ON ELECTRICITY DISPUTE WILL N...   \\n\",\n       \"1528 NaN    NaN  SEN. MENENDEZ CONTINUES TO FIGHT FOR EQUITABLE...   \\n\",\n       \"1529 NaN    NaN  SEN. MENENDEZ STATEMENT ON FEINGOLD AMENDMENT ...   \\n\",\n       \"\\n\",\n       \"                                                    url             tags  \\n\",\n       \"0     http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1     http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"2     http://menendez.senate.gov/newsroom/press/rele...       Healthcare  \\n\",\n       \"3     http://menendez.senate.gov/newsroom/press/rele...            Other  \\n\",\n       \"4     http://menendez.senate.gov/newsroom/press/rele...             Iran  \\n\",\n       \"5     http://menendez.senate.gov/newsroom/press/rele...          Transit  \\n\",\n       \"6     http://menendez.senate.gov/newsroom/press/rele...        Fire Dept  \\n\",\n       \"7     http://menendez.senate.gov/newsroom/press/rele...             Jobs  \\n\",\n       \"8     http://menendez.senate.gov/newsroom/press/rele...            Other  \\n\",\n       \"9     http://menendez.senate.gov/newsroom/press/rele...          Housing  \\n\",\n       \"10    http://menendez.senate.gov/newsroom/press/rele...          Housing  \\n\",\n       \"11    http://menendez.senate.gov/newsroom/press/rele...          Transit  \\n\",\n       \"12    http://menendez.senate.gov/newsroom/press/rele...      Appearances  \\n\",\n       \"13    http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"14    http://menendez.senate.gov/newsroom/press/rele...           Energy  \\n\",\n       \"15    http://menendez.senate.gov/newsroom/press/rele...      Environment  \\n\",\n       \"16    http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"17    http://menendez.senate.gov/newsroom/press/rele...            Other  \\n\",\n       \"18    http://menendez.senate.gov/newsroom/press/rele...            Other  \\n\",\n       \"19    http://menendez.senate.gov/newsroom/press/rele...            Other  \\n\",\n       \"20    http://menendez.senate.gov/newsroom/press/rele...            Other  \\n\",\n       \"21    http://menendez.senate.gov/newsroom/press/rele...            Other  \\n\",\n       \"22    http://menendez.senate.gov/newsroom/press/rele...         Disaster  \\n\",\n       \"23    http://menendez.senate.gov/newsroom/press/rele...            Other  \\n\",\n       \"24    http://menendez.senate.gov/newsroom/press/rele...           Energy  \\n\",\n       \"25    http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"26    http://menendez.senate.gov/newsroom/press/rele...          Housing  \\n\",\n       \"27    http://menendez.senate.gov/newsroom/press/rele...    bot-Fire Dept  \\n\",\n       \"28    http://menendez.senate.gov/newsroom/press/rele...      bot-Airport  \\n\",\n       \"29    http://menendez.senate.gov/newsroom/press/rele...          Transit  \\n\",\n       \"...                                                 ...              ...  \\n\",\n       \"1500  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1501  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1502  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1503  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1504  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1505  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1506  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1507  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1508  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1509  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1510  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1511  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1512  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1513  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1514  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1515  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1516  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1517  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1518  http://menendez.senate.gov/newsroom/press/rele...   bot-Healthcare  \\n\",\n       \"1519  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1520  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1521  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1522  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1523  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1524  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1525  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1526  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1527  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1528  http://menendez.senate.gov/newsroom/press/rele...        bot-Other  \\n\",\n       \"1529  http://menendez.senate.gov/newsroom/press/rele...  bot-Appearances  \\n\",\n       \"\\n\",\n       \"[1530 rows x 5 columns]\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Marge the predicted tags back into the main dataframe. \\n\",\n    \"# To do this we need to give them the index of predict frame (basically, so they can remember their row numbers)\\n\",\n    \"predicted_tags = pd.DataFrame(y_predict, index=predict.index, columns=['tags'])\\n\",\n    \"\\n\",\n    \"# Prefex all coputer-generated tag names with 'bot-'\\n\",\n    \"predicted_tags = 'bot-' + predicted_tags\\n\",\n    \"\\n\",\n    \"# Merge tages\\n\",\n    \"df.update(predicted_tags)\\n\",\n    \"df\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Output!\\n\",\n    \"df.to_csv('overview-tags-out.csv')\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-4/bills.csv",
    "content": "text,topic\r\n\"An act to amend Section 44277 of the Education Code, relating to teachers.\",Education\r\n\"An act to add Section 8314.4 to the Government Code, relating to public funds.\",Public Services\r\n\"An act to amend Sections 226, 233, and 234 of, and to add Article 1.5 (commencing with Section 245) to Chapter 1 of Part 1 of Division 2 of, the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Sections 12920, 12921, 12926, 12940, and 12955.2 of the Government Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 186.8 of, and to add Section 236.4 to, the Penal Code, relating to human trafficking.\",Crime\r\n\"An act to amend Section 13823.17 of the Penal Code, relating to domestic violence.\",Social Issues\r\n\"An act to add Sections 5017.1, 5017.5, and 5103.5 to the Business and Professions Code, relating to accountants.\",Business and Consumers\r\n\"An act to add Section 15817.5 to the Government Code, relating to state buildings.\",Housing and Property\r\n\"An act to amend Section 35012 of the Education Code, relating to governing boards.\",Education\r\n\"An act to amend Sections 8869.82, 91501, 91502, 91502.1, 91503, 91504, 91527, 91530, 91531, 91533, 91538, 91539, 91541, 91555, 91559, 91571, and 91573 of the Government Code, relating to bonds, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act to amend Section 3010 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 2069 and 2099 of, and to add Section 2840 to, the Fish and Game Code, and to amend Section 25524 of, to add Section 25619 to, and to add and repeal Sections 21081.8 and 21097.5 of, the Public Resources Code, relating to renewable energy resources, and making an appropriation therefor.\",Energy\r\n\"An act to add Section 3021 to the Penal Code, relating to corrections.\",Military\r\n\"An act to add Section 381c to the Penal Code, relating to nitrous oxide.\",Legal Issues\r\n\"398.5, 399.2.5, 399.8, 399.11, 399.12, 399.12.5, 399.13, 399.15, 399.16, 399.17, 454.5, 464, 848.1, 1001, 1731, 1768, 1822, 2774.6, 2826.5, 2827, and 9502 of, to add Sections 322, 345.1, 345.2, and 411 to, to repeal Sections 346, 350, 360, 365 of, and to repeal Article 2 (commencing with Section 334) of Chapter 2.3 of Part 1 of Division 1 of, the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to add and repeal Section 680.1 of the Penal Code, relating to sexual assault crimes.\",Crime\r\n\"An act to amend Sections 13308 and 13337 of, and to add Section 13308.1 to, the Government Code, relating to state finance.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Division 10.56 (commencing with Section 11972.10) to the Health and Safety Code, relating to alcohol abuse programs, and making an appropriation therefor.\",Other\r\n\"An act to add Section 5006.43 to the Public Resources Code, relating to parks.\",Environmental\r\n\"An act to amend Section 18942 of, and to add Sections 116064.1 and 116064.2 to, the Health and Safety Code, relating to swimming pools.\",Public Services\r\n\"An act to amend Section 399.20 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Section 179 of the Government Code, relating to state government.\",Public Services\r\n\"An act to add Section 25785 to the Public Resources Code, relating to energy.\",Energy\r\n\"An act to add and repeal Section 6398 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to add and repeal Section 62.3 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to amend Section 2830 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to add Section 99500.5 to the Government Code, relating to international relations.\",Resolutions\r\n\"An act to amend Section 25501 of the Public Resources Code, relating to energy.\",Energy\r\n\"An act to add and repeal Article 2.75 (commencing with Section 14087.481) of Chapter 7 of Part 3 of Division 9 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Section 1276.5 of the Health and Safety Code, relating to health facilities.\",Health\r\n\"An act to add Section 33355 to the Education Code, relating to interscholastic sports.\",Education\r\n\"An act to amend Section 17085 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Labor and Employment\r\n\"An act to add Section 905 to the Code of Civil Procedure, relating to civil actions.\",Legal Issues\r\n\"An act to add Section 116281 to the Health and Safety Code, relating to drinking water.\",Environmental\r\nAn act relating to air pollution.,Energy\r\n\"and to amend Sections 14006.01 and 14139.3 of the Welfare and Institutions Code, relating to continuing care retirement.\",Senior Issues\r\n\"An act to amend Section 121023 of the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend Sections 703.150 and 704.730 of the Code of Civil Procedure, relating to enforcement of judgments.\",Housing and Property\r\n\"An act to amend Section 16727 of, and to add Section 63037 to, the Government Code, relating to state funds, and making an appropriation therefor.\",Commerce\r\n\"An act to amend Section 1255.7 of the Health and Safety Code, relating to child protection.\",Family and Children Issues\r\n\"An act to add and repeal Article 18 (commencing with Section 18887) of Chapter 3 of Part 10.2 of Division 2 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 3042 of the Family Code, relating to child custody.\",Family and Children Issues\r\n\"An act to add Article 3.7 (commencing with Section 989) to Chapter 6 of Division 4 of the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Section 7361 of, to amend, renumber, and add Section 7362 of, to add Section 7364 to, and to repeal Sections 7360 and 7363 of, the Fish and Game Code, relating to sport fishing.\",Recreation\r\n\"An act to add Section 1766.2 to, to add and repeal Chapter 4 (commencing with Section 1400) of Part 1 of Division 2 of, and to repeal Chapter 4 (commencing with Section 1300) of Part 1 of Division 2 of, the Welfare and Institutions Code, relating to juveniles.\",Family and Children Issues\r\n\"An act to amend Sections 11834.02, 11839.6, and 11876 of the Health and Safety Code, relating to alcoholism or drug abuse treatment.\",Public Services\r\n\"An act to amend Section 4581 of the Public Resources Code, relating to forest practices.\",Environmental\r\n\"An act to amend Sections 10830, 11020, 11450, 11450.12, 11450.13, and 11451.5 of, to add Section 18900.11 to, and to repeal and add Sections 11004.1, 11265.1, 11265.2, 11265.3, and 18910 of, the Welfare and Institutions Code, relating to public social services.\",Labor and Employment\r\n\"An act to amend Sections 11155, 11155.1, and 11257 of the Welfare and Institutions Code, relating to CalWORKs.\",Transportation\r\n\"Sections 1793.62, 129174.1, 25169.3, 25245, 25359.5, 25359.6, and 25396 of the Health and Safety Code, to amend Section 11655 of the Insurance Code, to amend Section 15643 of the Probate Code, to amend Section 4107 of the Public Contract Code, to amend Section 11923 of the Revenue and Taxation Code, to amend Section 9185 of the Streets and Highways Code, and to amend Section 9859 of the Vehicle Code, relating to bankruptcy.\",Legal Issues\r\n\"An act to amend Sections 2102, 2142, 2150, 2162, and 2194 of, and to add Section 2101.5 to, the Elections Code, to amend Section 6254.4 of the Government Code, to add Section 19584.5 to the Revenue and Taxation Code, and to amend Section 12950.5 of, and to add Section 12500.5 to, the Vehicle Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Section 23394.7 to the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to repeal and add Section 1353.8 of the Civil Code, relating to common interest developments.\",Environmental\r\n\"An act to amend Sections 17250.25 and 81703 of the Education Code, and to amend Sections 20133, 20175.2, and 20209.8 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend Sections 17250.25 and 81703 of the Education Code, and to amend Sections 20133, 20175.2, and 20209.8 of the Public Contract Code, relating to public contracts.\",Housing and Property\r\n\"An act to amend Sections 17250.30 and 81704 of the Education Code, and to amend Sections 20133, 20175.2, and 20209.7 of the Public Contract Code, relating to public contracts.\",Housing and Property\r\n\"An act to amend, repeal, and add Section 4590 of the Public Resources Code, relating to forest practices.\",Environmental\r\n\"An act to amend Sections 39807.5, 41850, 48853.5, and 49069.5 of the Education Code, and to amend Sections 358.1, 11460, 16010, and 16500.1 of, and to add Section 10104 to, the Welfare and Institutions Code, relating to children.\",Education\r\n\"An act to add Section 9024 to the Elections Code, relating to elections.\",Legislative Affairs\r\n\"An act to amend Sections 4802, 4808, 4810, 4848, 4848.3, 4849, 4875, 4875.2, 4875.6, 4876, 4883, 4885, 4886, 4887, 4900, 4901, 4901.1, and 4901.2 of, to amend, repeal, and add Section 4839 of, and to add Section 4841.4 to, the Business and Professions Code, relating to veterinary medicine, and making an appropriation therefor.\",Other\r\n\"An act to amend Sections 801.01, 2006, 2008, 2225.5, 2227, and 2425.3 of, and to add Section 804.5 to, the Business and Professions Code, and to amend Sections 12529, 12529.5, 12529.6, and 12529.7 of the Government Code, relating to healing arts.\",Health\r\n\"An act to amend Sections 2001, 2020, 2460, 2701, 2708, 3010.5, 3014.6, 3685, 3710, 4001, 4003, 4110, 4127.8, 4160, 4400, and 5810 of, to add and repeal Section 3686 of, and to repeal Section 4127.5 of, the Business and Professions Code, relating to professions and vocations, and making an appropriation therefor.\",Labor and Employment\r\n\"An act to amend Section 8879.55 of, and to repeal Section 8879.56 of, the Government Code, relating to transportation, and declaring the urgency thereof, to take effect immediately.\",Public Services\r\n\"An act to amend Section 7027.3 of the Business and Professions Code, relating to contractors.\",Labor and Employment\r\n\"An act to add Sections 187 and 14408.5 to the Financial Code, relating to financial institutions.\",Commerce\r\n\"An act to add Section 17140.6 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Military\r\n\"An act to add Section 71103.5 to the Public Resources Code, relating to the environment.\",Environmental\r\n\"An act to add Section 1389.21 to the Health and Safety Code, and to add Section 10384.17 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 1257.7 of the Health and Safety Code, relating to health facilities.\",Health\r\n\"An act to amend Sections 65961, 66023, and 66452.22 of, and to add Section 66019 to, the Government Code, relating to local planning.\",Commerce\r\n\"An act to add Section 39601.5 to the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 3400 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to add Section 5420 to the Business and Professions Code, relating to outdoor advertising.\",Commerce\r\n\"An act to amend Section 1281.85 of the Code of Civil Procedure, relating to arbitration.\",Legal Issues\r\n\"An act to add Section 71410 to the Public Resources Code, relating to natural resources.\",Environmental\r\nAn act relating to health care.,Health\r\n\"An act to amend Section 87482.6 of the Education Code, relating to community colleges.\",Education\r\n\"An act to amend Sections 12220 and 12260 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 17309, 17315, 81141, and 81147 of the Education Code, relating to school facilities.\",Education\r\n\"An act to add Section 24458 to the Revenue and Taxation Code, relating to taxation, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act to amend Section 33204.4 of the Public Resources Code, relating to parks and open space.\",Public Services\r\n\"An act to add Section 111187 to the Health and Safety Code, relating to bottled water.\",Environmental\r\n\"An act to amend Section 13160 of the Water Code, relating to water quality.\",Environmental\r\n\"An act to add Section 750 to the Public Utilities Code, relating to electricity.\",Energy\r\n\"An act to add Chapter 5.6 (commencing with Section 25460) to Division 15 of the Public Resources Code, relating to energy, and making an appropriation therefor.\",Energy\r\n\"An act to add Section 57006 to the Health and Safety Code, relating to environmental protection.\",Environmental\r\n\"An act to add and repeal Section 2800 of the Public Utilities Code, relating to utility service.\",Energy\r\n\"An act to amend Section 56375 of, and to add Sections 56057.5 and 56858 to, the Government Code, relating to local government.\",Legislative Affairs\r\n\"An act to amend Section 17144.5 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to amend Section 26003 of, and to add Section 26011.7 to, the Public Resources Code, relating to energy.\",Energy\r\n\"An act to amend Section 5068.5 of the Penal Code, relating to prisoners.\",Health\r\n\"An act to amend Section 5099.12 of the Public Resources Code, relating to natural resources, and making an appropriation therefor.\",Environmental\r\n\"An act to add Sections 1638.2 and 2259.8 to the Business and Professions Code, relating to cosmetic surgery.\",Health\r\n\"An act to amend Section 11770 of the Insurance Code, relating to the State Compensation Insurance Fund, and declaring the urgency thereof, to take effect immediately.\",Insurance\r\n\"An act to amend Sections 7195 and 7197 of, and to add Sections 7195.5, 7195.7, and 7195.9 to, the Business and Professions Code, relating to home inspectors.\",Housing and Property\r\nAn act relating to works of improvement.,Other\r\n\"An act to amend Sections 100001.5, 100161, 100163, and 100164 of the Public Utilities Code, relating to transportation.\",Transportation\r\n\"An act to add and repeal Chapter 2 (commencing with Section 10050) to Part 1 of Division 10 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 22351.5 and 22358 of the Business and Professions Code, relating to professions and vocations.\",Labor and Employment\r\n\"An act to amend Section 56505 of the Education Code, relating to special education.\",Education\r\n\"An act to add Section 1232 to the Government Code, relating to state employees, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\n\"An act to amend Sections 17074.50, 17074.52, and 17074.56 of the Education Code, relating to school facilities.\",Education\r\n\"An act to amend Sections 8589.11, 8589.12, 8589.13, 8589.14, 8589.15, 8589.16, 8589.17, 8589.18, 8589.19, 8589.20, 8589.21, and 8589.22 of, and to add Article 5.6 (commencing with Section 8589.25) to Chapter 7 of Division 1 of Title 2 of the Government Code, relating to emergency services, and making an appropriation therefor.\",Public Services\r\n\"An act to amend Section 12027.1 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Section 1367.65 of the Health and Safety Code, and to amend Section 10123.81 of the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Section 52052.6 to the Education Code, relating to education.\",Education\r\n\"An act to amend Section 12811 of, and to add Section 4150.3 to, the Vehicle Code, relating to anatomical gifts.\",Transportation\r\n\"An act to amend Sections 18520, 18521, 18522, and 18540 of, and to add Section 18522.5 to, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 103, 9602, and 11303 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 4602 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 13995.47 of the Government Code, relating to California tourism.\",Commerce\r\n\"An act to amend Section 7302 of the Business and Professions Code, relating to barbering and cosmetology.\",Other\r\n\"An act to amend Sections 17053.74 and 23634 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 237 to the Welfare and Institutions Code, relating to juveniles.\",Family and Children Issues\r\n\"An act to amend Sections 42250, 42253, and 42254 of, to amend and renumber Section 42257 of, to repeal Section 42256 of, and to add Sections 42258, 42259, 42260, 42261, and 42262 to, the Public Resources Code, relating to carryout bags.\",Commerce\r\n\"An act to amend Sections 14018.2 and 14019.4 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to add Section 1367.225 to the Health and Safety Code, and to add Section 10123.197 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 5604 of the Business and Professions Code, relating to architects, and making an appropriation therefor.\",Other\r\n\"An act to amend Section 47605.1 of the Education Code, relating to charter schools.\",Education\r\n\"An act to add Section 118276 to the Health and Safety Code, relating to public health.\",Health\r\n\"An act to add Section 16168 to the Welfare and Institutions Code, relating to foster youth.\",Health\r\n\"An act to amend Section 87500.1 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 131502, 131511, 131520, 131521, and 131540 of, and to add Sections 131532 and 131542 to, the Health and Safety Code, relating to health care coverage.\",Health\r\n\"Code, to amend Sections 45855, 45863, 45981, and 45982 of the Revenue and Taxation Code, and to amend Section 31560 of the Vehicle Code, relating to solid waste.\",Environmental\r\n\"An act to amend Section 22651 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 19510, 19520, and 19604 of, and to add Section 19532.2 to, the Business and Professions Code, relating to horse racing, and declaring the urgency thereof, to take effect immediately.\",Recreation\r\n\"An act to add Section 76000.10 to the Government Code, relating to emergency services.\",Public Services\r\nAn act relating to the California Interscholastic Federation.,Education\r\n\"An act to amend Section 21107.8 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 84362 of the Education Code, relating to community colleges.\",Labor and Employment\r\n\"An act to amend Section 65460.2 of the Government Code, relating to transit facilities.\",Transportation\r\n\"An act to amend Sections 20211 and 20301 of, and to add Section 20916.1 to, the Public Contract Code, and to repeal and add Section 103222 of the Public Utilities Code, relating to transportation.\",Labor and Employment\r\n\"An act to add Section 1632.5 to the Civil Code, relating to contracts.\",Labor and Employment\r\n\"An act to amend Section 19635 of the Government Code, relating to state employment.\",Labor and Employment\r\n\"An act to amend Section 1250 of the Health and Safety Code, relating to health facilities.\",Health\r\n\"Sections 1808.4, 4156, 22651, and 26708 of the Vehicle Code, to amend Sections 35521, 79441, and 83002 of the Water Code, to amend Sections 223.1, 241.1, 391, 903.1, 4688.6, 4691, 4783, 4860, 5777, 11402.6, 12315, 14005.25, 14007.9, 14011.16, 14091.3, 14105.19, 14105.191, 14105.3, 14105.86, 14107.2, 14126.033, 14126.034, 14132.725, 14154, 14154.5, 14166.9, 14166.25, 14199.2, 14301.1, 14526.1, and 15660 of, and to amend and renumber Section 618.5 of, the Welfare and Institutions Code, and to amend Section 5 of Chapter 898 of the Statutes of 1997, Section 2 of Chapter 235 of the Statutes of 2008, and Section 65 of Chapter 758 of the Statutes of 2008, and to add Section 3 to Chapter 635 of the Statutes of 1999, relating to the maintenance of the codes.\",Other\r\n\"An act to amend Sections 3041 and 3041.5 of the Penal Code, relating to parole.\",Crime\r\n\"An act to add Section 12058 to the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Section 127 of the Business and Professions Code, relating to professions and vocations.\",Labor and Employment\r\n\"An act to amend Section 1790 of the Health and Safety Code, relating to continuing care contracts.\",Senior Issues\r\n\"An act to amend Section 5028 of, and to add Section 5058.2 to, the Business and Professions Code, relating to accountants.\",Health\r\n\"An act to add Section 290.47 to the Penal Code, relating to sex offenders, and making an appropriation therefor.\",Housing and Property\r\n\"An act to amend Section 75470 of, to amend the heading of Chapter 5 (commencing with Section 75470) of Part 8 of Division 21 of, and to add Section 74200.5 to, the Water Code, and to add Sections 4.5 and 5.5 to Chapter 819 of the Statutes of 1971, relating to water conservation districts.\",Environmental\r\n\"An act to add Article 5.7 (commencing with Section 14186) to Chapter 7 of Part 3 of Division 9 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to repeal and add Section 53395.8 of the Government Code, and to amend Section 96.1 of the Revenue and Taxation Code, relating to infrastructure financing districts.\",Municipal and County Issues\r\n\"An act to add Chapter 7 (commencing with Section 8260) to Division 8 of the Welfare and Institutions Code, relating to homelessness.\",Welfare and Poverty\r\n\"An act to amend Section 1874.87 of the Insurance Code, relating to motor vehicle insurance.\",Transportation\r\n\"An act to add Part 9 (commencing with Section 38650) to Division 25.5 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to add Section 92612.5 to the Education Code, relating to the University of California.\",Labor and Employment\r\n\"An act to amend Sections 84203, 84204, 84215, 84218, 84225, 84605, 85200, 86100, 86107, and 86118 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"71020 of, the Education Code, to repeal Articles 8 (commencing with Section 550) and 10 (commencing with Section 592) of Chapter 3 of Part 1 of Division 1 of the Food and Agricultural Code, to amend Section 67480 of the Government Code, and to amend Sections 104145, 104500, and 104530 of the Health and Safety Code, relating to public postsecondary education.\",Education\r\n\"An act to amend Sections 9562 and 9565 of the Welfare and Institutions Code, relating to seniors.\",Senior Issues\r\n\"An act to amend Section 103425 of the Health and Safety Code, relating to birth certificates.\",Legal Issues\r\n\"An act to amend Section 43845 of the Health and Safety Code, relating to air pollution.\",Labor and Employment\r\n\"An act to add Division 26.7 (commencing with Section 79700) to the Water Code, relating to financing a water supply reliability and water source protection program, by providing the funds necessary therefor through an election for the issuance and sale of bonds of the State of California and for the handling and disposition of those funds.\",Environmental\r\n\"An act to amend Sections 156 and 156.1 of, and to add Sections 156.5 and 156.6 to, to repeal Section 156.4 of, and to repeal and add Section 156.3 of, the Streets and Highways Code, relating to fish passages.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 1365.5 of the Health and Safety Code, and to add Section 10140.2 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 401 of the Military and Veterans Code, relating to military service.\",Military\r\n\"An act to amend Section 25660 of the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to add Section 11250.5 to the Welfare and Institutions Code, relating to public social services.\",Public Services\r\n\"An act to add Title 21 (commencing with Section 99600) to the Government Code, relating to state government.\",State Agencies\r\n\"An act to amend Section 8286 of the Education Code, relating to child care and development programs.\",Family and Children Issues\r\n\"An act to amend Sections 12650, 12651, 12652, and 12654 of the Government Code, relating to the False Claims Act.\",Legal Issues\r\n\"An act to amend Sections 8592.1, 8592.4, and 8592.5 of the Government Code, relating to public safety.\",Technology and Communication\r\n\"An act to amend Section 18901.3 of the Welfare and Institutions Code, relating to food stamps.\",Welfare and Poverty\r\n\"An act to repeal and add Section 53395.8 of the Government Code, and to amend Section 96.1 of the Revenue and Taxation Code, relating to infrastructure financing districts.\",Municipal and County Issues\r\n\"Welfare and Institutions Code, relating to foster children.\",Other\r\n\"An act to amend Sections 809, 809.2, and 809.3 of, and to add Sections 809.04, 809.07, and 809.08 to, the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to amend Section 758.5 of the Insurance Code, relating to motor vehicle insurance.\",Transportation\r\n\"An act to amend Section 1367.36 of the Health and Safety Code, and to add Sections 10123.56 and 12693.56 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 8879.59 of the Government Code, relating to transportation.\",Transportation\r\n\"An act to amend Section 27803 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 422.55 of the Penal Code, relating to hate crimes.\",Crime\r\n\"An act to amend Section 68130.5 of the Education Code, relating to student tuition.\",Education\r\n\"An act to add Section 2912.5 to the Penal Code, relating to alien inmates.\",Immigration\r\n\"An act to amend Section 853.6 of the Penal Code, relating to criminal procedure.\",Legal Issues\r\n\"An act to amend Sections 697.510 and 697.670 of the Code of Civil Procedure, relating to judgment liens.\",Judiciary\r\n\"An act to amend Section 1367 of the Health and Safety Code, relating to health care service plans.\",Health\r\n\"An act to add Article 3 (commencing with Section 43300) to Chapter 2 of Part 5 of Division 26 of the Health and Safety Code, relating to vehicle emissions.\",Environmental\r\n\"An act to add Sections 19852.2, and 19852.4 to the Government Code, relating to public employment.\",Labor and Employment\r\n\"An act to amend Section 29413 of the Food and Agricultural Code, relating to honey.\",Agriculture and Food\r\n\"An act to amend Sections 35550 and 35650 of, and to add Section 35617 to, the Public Resources Code, relating to ocean resources.\",Agriculture and Food\r\n\"An act to amend Section 1386 of, and to add Article 6.2 (commencing with Section 1385.01) to Chapter 2.2 of Division 2 of, the Health and Safety Code, and to add Article 4.5 (commencing with Section 10181) to Chapter 1 of Part 2 of Division 2 of the Insurance Code, relating to health care coverage, and making an appropriation therefor.\",Health\r\n\"An act to amend Sections 12509 and 12814.6 of, and to add Section 12811.2 to, the Vehicle Code, relating to vehicles.\",Transportation\r\nAn act relating to water.,Environmental\r\n\"An act to amend Sections 89090, 89090.5, 92630, and 92630.9 of, and to add Sections 89090.3 and 92630.3 to, the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to add Section 44257.3 to the Education Code, relating to linked learning.\",Education\r\n\"An act to amend Section 149.9 of the Streets and Highways Code, relating to transportation.\",Transportation\r\n\"An act to add and repeal Section 4001 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 1505, 1568.03, and 1569.145 of the Health and Safety Code, relating to community care facilities.\",Housing and Property\r\n\"An act to add Section 66302 to the Education Code, relating to online harassment.\",Social Issues\r\n\"An act to add Section 44929.24 to the Education Code, relating to certificated school employees.\",Labor and Employment\r\n\"An act to amend Sections 5047, 5047.5, 5062, 5063.5, 5132, 5150, 5151, 5211, 5212, 5213, 5220, 5222, 5231, 6610, 7132, 7150, 7151, 7211, 7212, 7213, 7220, 7222, 7231, 8610, 9132, 9151, 9211, 9212, 9213, 9220, 9222, 9241, 9680, 9916, 12233, 12241, 12242.5, 12330, 12331, 12351, 12352, 12353, 12360, 12362, 12371, 12630, 12694, 18360, and 24001.5 of, to add Sections 5039.5 and 12228.5 to, and to add Article 6 (commencing with Section 9260) to Chapter 2 of Part 4 of Division 2 of Title 1 of, the Corporations Code, relating to corporations.\",Health\r\n\"An act to amend Sections 809, 809.2, and 809.3 of, and to add Sections 809.04, 809.07, and 809.08 to, the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to add Section 11713.07 to the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 52240 of the Education Code, relating to pupils.\",Education\r\n\"An act to add Section 2062.5 to the Penal Code, relating to prisoners.\",Education\r\n\"An act to add Section 9723.3 to the Business and Professions Code, relating to cemeteries, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to amend Sections 81361, 81367, 81370, 81372, and 81375 of, to add Section 81523.5 to, and to repeal Sections 81371 and 81373 of, the Education Code, relating to community colleges.\",Education\r\n\"An act to add Section 19826.3 to the Government Code, relating to state employees.\",Labor and Employment\r\n\"An act to add Section 106.3 to the Water Code, relating to water.\",Environmental\r\n\"An act to add Chapter 3.01 (commencing with Section 6204) to Division 7 of Title 1 of the Government Code, relating to public records.\",State Agencies\r\n\"An act to amend Section 9002 of the Penal Code, relating to sex offenders.\",Housing and Property\r\n\"An act to amend Section 1219 of the Code of Civil Procedure, relating to domestic violence.\",Social Issues\r\n\"An act to add Title 25 (commencing with Section 100000) to the Government Code, relating to retirement, and making an appropriation therefor.\",Senior Issues\r\n\"An act to amend Section 69504 of the Education Code, relating to student aid.\",Education\r\n\"An act to add Section 4592.5 to the Public Resources Code, relating to forestry.\",Environmental\r\n\"An act to amend Section 30106 of the Public Resources Code, relating to coastal resources, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\nAn act relating to prisoners.,Crime\r\n\"An act to amend Section 84203.5 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 42921 of the Education Code, relating to foster youth services.\",Family and Children Issues\r\n\"An act to add Section 9114.5 to the Welfare and Institutions Code, relating to area agencies on aging.\",Senior Issues\r\n\"An act to add Article 4 (commencing with Section 790) to Chapter 2.5 of Division 1 of the Public Resources Code, relating to forestry and fire protection.\",Environmental\r\n\"An act to amend Sections 3030 and 3030.5 of the Family Code, relating to child custody.\",Family and Children Issues\r\n\"An act to amend Section 1162 of the Code of Civil Procedure, relating to unlawful detainer.\",Crime\r\n\"to add Sections 11549.7 and 11549.8 to, to add the headings of Article 1 (commencing with Section 11549) and Article 2 (commencing with Section 11549.5) to Chapter 5.7 of Part 1 of Division 3 of Title 2 of, and to repeal Section 11549.2 of, the Government Code, to amend Sections 12100.7, 12101, 12103, 12104, 12105, 12120, and 12121 of the Public Contract Code, to amend Sections 41030, 41031, 41032, 41136, 41136.1, 41137, 41137.1, 41138, 41139, 41140, 41141, and 41142 of the Revenue and Taxation Code, and to amend Section 16501.7 of the Welfare and Institutions Code, relating to state government information technology.\",State Agencies\r\n\"An act to amend Sections 110, 1210, 1211, 1212, 1501.2, 1583, 14250, 14313, and 14315 of, to add Sections 220, 221, 222, 223, 230.5, 236, 250.5, 291, 292, 292.5, 352, 353, 354, 355, 356, 357, 511, 770, 1339, 3828, and 14212 to, to add Article 7 (commencing with Section 295), Article 8 (commencing with Section 305), and Article 9 (commencing with Section 335) to Chapter 2 of Division 1 of, to repeal Sections 100, 101, 107.5, 116, 117, 118, 684, 1910, 1911, 1911.5, 1912, 1913, 1913.5, 1951, and 1952 of, to repeal Chapter 17 (commencing with Section 3100) of Division 1 of, and to repeal Chapter 11 (commencing with Section 31700) of Division 15 of, the Financial Code, relating to financial institutions.\",Commerce\r\n\"An act to amend Section 14007.9 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Section 3111 of, to add Article 2.5 (commencing with Section 3116) to Chapter 8.5 of Division 4 of Title 1 of, and to repeal and add Article 2 (commencing with Section 3113) of Chapter 8.5 of Division 4 of Title 1 of, the Government Code, relating to volunteer service.\",Labor and Employment\r\n\"An act to amend Sections 3001, 3009, 3017 of, and to add Section 3025 to, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Section 1797.259 to the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend Sections 86109.5 and 86116 of, and to add Section 86119 to, the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to add Section 23153.5 to the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Chapter 1 (commencing with Section 100000) to Title 20 of the Government Code, relating to international trade.\",Commerce\r\n\"An act to add Section 16752.2 to the Government Code, relating to state finance.\",State Agencies\r\n\"An act to amend Section 9088 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\nAn act relating to fish and game.,Animal Rights and Wildlife Issues\r\n\"An act to amend Section 273ab of the Penal Code, relating to child abuse.\",Family and Children Issues\r\n\"An act to add Section 49062.5 to the Education Code, relating to pupil data.\",Education\r\n\"An act to amend Section 25600 of the Business and Professions Code, relating to alcoholic beverages, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to amend Section 11834.03 of the Health and Safety Code, relating to alcohol and drug abuse treatment facilities.\",Health\r\n\"An act to amend Section 51 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 12072 of the Penal Code, relating to firearms.\",Business and Consumers\r\n\"An act to amend Section 1363.5 of the Health and Safety Code, and to amend Section 10123.135 of the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Article 2.5 (commencing with Section 2811) to Chapter 2 of Division 3 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Section 5023.3 to the Penal Code, relating to prisoners.\",Health\r\n\"An act to add Sections 7099.1 and 21028 to the Revenue and Taxation Code, and to add Section 13019 to the Unemployment Insurance Code, relating to taxation, and declaring the urgency thereof, to take effect immediately.\",Business and Consumers\r\n\"An act to add Chapter 5.7 (commencing with Section 19245) to Part 2 of Division 5 of Title 2 of the Government Code, relating to public employment.\",Labor and Employment\r\n\"An act to amend Sections 1513, 1513.5, 1514, 1516, 1520, 1532, 1560, and 1577 of the Code of Civil Procedure, relating to unclaimed property.\",Legal Issues\r\n\"An act to amend Section 39625.5 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 45277.5 of the Education Code, relating to public school employees.\",Labor and Employment\r\n\"An act to amend Section 12935 of the Water Code, relating to water resources.\",Environmental\r\n\"An act to add Section 89267.5 to the Education Code, relating to nursing degree programs.\",Education\r\n\"An act to amend Section 16540 of the Welfare and Institutions Code, relating to child welfare services.\",Family and Children Issues\r\n\"An act to amend Sections 930, 977, 982, 1252, and 1279 of the Unemployment Insurance Code, relating to unemployment insurance, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\n\"An act to add Section 39 to the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Chapter 5 (commencing with Section 85390) to Part 3 of Division 35 of the Water Code, relating to the Sacramento-San Joaquin Delta.\",Environmental\r\n\"An act to amend Section 68074 of the Education Code, relating to student fees.\",Education\r\n\"An act to amend Section 543 of the Public Resources Code, relating to parks.\",Public Services\r\n\"An act to add Section 41514.15 to the Health and Safety Code, relating to air pollution.\",Environmental\r\nAn act relating to veterans.,Military\r\n\"An act to amend Section 125001 of the Health and Safety Code, relating to newborn screening, and making an appropriation thereof.\",Health\r\n\"An act to amend Sections 2101 and 2212 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 14016.55 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Sections 903.1 and 903.45 of, and to add Section 903.47 to, the Welfare and Institutions Code, relating to juvenile court costs.\",Family and Children Issues\r\n\"An act to add Section 857 to the Business and Professions Code, and to add Section 128051.5 to the Health and Safety Code, relating to healing arts.\",Health\r\n\"An act to amend Section 104113 of the Health and Safety Code, relating to defibrillators.\",Health\r\nAn act relating to air pollution.,Environmental\r\n\"An act to add Article 5.5 (commencing with Section 14182) to Chapter 7 of Part 3 of Division 9 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Sections 382 and 382.1 of the Public Utilities Code, relating to public utilities.\",Public Services\r\n\"An act to add Chapter 1.5 (commencing with Section 125325) to Part 5.5 of Division 106 of the Health and Safety Code, relating to public health.\",Reproductive Issues\r\n\"An act to repeal and add Chapter 4.5 (commencing with Section 1701) of Part 6 of Division 2 of the Labor Code, relating to talent services.\",Other\r\n\"An act to add Article 6 (commencing with Section 32297) to Chapter 2.5 of Part 19 of Division 1 of Title 1 of the Education Code, relating to pupil safety.\",Education\r\n\"An act to add Chapter 6 (commencing with Section 14550) to Division 7 of the Unemployment Insurance Code, relating to workforce development.\",Labor and Employment\r\n\"An act to amend Section 10618.6 of the Welfare and Institutions Code, relating to public social services.\",Family and Children Issues\r\n\"An act to add and repeal Section 8600.5 of the Family Code, and to amend, repeal, and add Sections 294, 358.1, 361.5, 366.21, 366.22, 366.25, 366.26, 366.3, 16120, 16508, and 16508.1 of, and to add and repeal Section 366.24 of, the Welfare and Institutions Code, relating to Indian children.\",Indigenous Peoples\r\n\"An act to amend Section 2142 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Article 4 (commencing with Section 8195) to Chapter 2.8 of Division 1 of Title 2 of the Government Code, relating to the State Capitol Sustainability Task Force.\",State Agencies\r\n\"An act to add Section 1353.9 to the Civil Code, relating to common interest developments.\",Labor and Employment\r\n\"An act to amend Section 66484 of the Government Code, relating to subdivisions.\",Transportation\r\n\"An act to add Section 710 to the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Section 66468 of the Government Code, relating to subdivision map approval.\",Other\r\n\"An act to amend Section 107.4 of the Revenue and Taxation Code, relating to taxation.\",Military\r\n\"An act to amend Sections 8203 and 8600 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 18370 of, and to add Section 319.5 to, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Chapter 1.5 (commencing with Section 993) to Title 6 of Part 2 of the Penal Code, relating to courts.\",Judiciary\r\n\"An act to add Section 96.70 to the Revenue and Taxation Code, relating to local government finance.\",Housing and Property\r\n\"An act to amend Sections 1803 and 12810 of, and to add Section 38304.1 to, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 3102, 3103, and 3103.5 of, and to add Sections 3103.6 and 3103.7 to, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 17041.5 of, to add Section 17041.6 to, and to add Chapter 3.8 (commencing with Section 7295) to Part 1.7 of Division 2 of, the Revenue and Taxation Code, relating to taxation, and making an appropriation therefor.\",Transportation\r\n\"An act to amend Section 107.4 of the Revenue and Taxation Code, relating to taxation.\",Military\r\n\"An act to add Section 5007.6 to the Public Resources Code, relating to the state park system.\",Environmental\r\n\"An act to amend Section 2945.7 of the Civil Code, relating to foreclosure consultants.\",Housing and Property\r\n\"An act to amend Section 12948 of, and to repeal Section 12949.6 of, the Water Code, relating to water desalination.\",Environmental\r\n\"An act to amend Sections 8483.5 and 8483.51 of the Education Code, relating to before and after school programs.\",Education\r\n\"An act to add Section 5080.42 to the Public Resources Code, relating to state parks, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Section 399.12.5 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Section 1749.2 of the Insurance Code, relating to insurance agents and brokers.\",Insurance\r\n\"An act to amend Section 1788.1 of the Civil Code, relating to debt collection.\",Business and Consumers\r\n\"An act to add Section 14216.5 to the Elections Code, and to add Section 14902.5 to the Vehicle Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 21200 of the Financial Code, relating to pawnbrokers.\",Business and Consumers\r\n\"An act to amend Sections 1202a, 3600, and 3700.5 of, and to repeal Sections 3601 and 3602 of, the Penal Code, relating to prisoners.\",Crime\r\n\"An act to amend Section 273.5 of the Penal Code, relating to domestic violence.\",Social Issues\r\n\"An act to add Section 6142 to the Penal Code, relating to the California Rehabilitation Oversight Board.\",Health\r\n\"An act to amend Sections 12031 and 12050 of the Penal Code, relating to concealed firearms.\",Guns\r\n\"An act to add Section 13148 to the Water Code, relating to water softeners.\",Housing and Property\r\n\"An act to add Section 3103.7 to the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend, repeal, and add Sections 1208.2, 2900.5, and 4532 of, and to add and repeal Sections 1203.018, 1203.019, and 1269d of, the Penal Code, relating to electronic monitoring.\",Crime\r\n\"An act to amend Section 54952 of the Government Code, relating to open meetings.\",Public Services\r\n\"An act to amend Section 185024 of the Public Utilities Code, relating to high-speed rail.\",Transportation\r\nAn act relating to sentencing.,Crime\r\n\"An act to add Section 41020.9 to the Education Code, relating to school districts.\",Education\r\n\"An act to amend Section 23114 of the Vehicle Code, relating to vehicles.\",Commerce\r\n\"An act to amend and repeal Section 5076 of, and to add and repeal Section 5076.1 of, the Business and Professions Code, relating to accountants.\",Business and Consumers\r\n\"An act to amend Section 63021.5 of the Government Code, relating to the Infrastructure and Economic Development Bank.\",Commerce\r\n\"An act to amend Section 149.9 of the Streets and Highways Code, relating to transportation.\",Transportation\r\n\"An act to amend Section 13320 of, and to add Section 13335.5 to, the Government Code, relating to the state budget.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 41964 of the Health and Safety Code, relating to air pollution, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Sections 14528.5 and 14528.55 of, to amend, repeal, and add Section 14528.6 of, and to add Sections 14528.56 and 14528.65 to, the Government Code, and to amend Sections 392, 485, and 538 of the Streets and Highways Code, relating to transportation, and making an appropriation therefor.\",State Agencies\r\n\"An act to add Section 524 to the Evidence Code, and to add Part 10.1 (commencing with Section 15706) to Division 3 of Title 2 of the Government Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Sections 53508.9 and 53509.5 to, and to repeal Section 53508.5 of, the Government Code, relating to bonds.\",Municipal and County Issues\r\n\"An act to amend Section 193 of the Streets and Highways Code, relating to highways.\",State Agencies\r\n\"An act to add Section 90001.5 to, to add Article 1.5 (commencing with Section 76010) to Chapter 1 of Part 47 of Division 7 of Title 3 of, and to add Article 6.5 (commencing with Section 92660) to Chapter 6 of Part 57 of Division 9 of Title 3 of, the Education Code, relating to foster youth.\",Family and Children Issues\r\n\"An act to amend Sections 15002 and 15003 of the Unemployment Insurance Code, relating to workforce investment.\",Labor and Employment\r\n\"An act to amend Sections 2933 and 4019 of the Penal Code, relating to inmates, and declaring the urgency thereof, to take effect immediately.\",Crime\r\n\"An act to repeal and add Chapter 3 (commencing with Section 7150) of Part 2 of Division 7 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 1644.5 of the Health and Safety Code, relating to tissue donation, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Section 60010 of the Education Code, relating to instructional materials.\",Technology and Communication\r\n\"An act to repeal and add Section 22659.5 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Article 2.5 (commencing with Section 4659.5) to Chapter 5 of Division 4.5 of the Welfare and Institutions Code, relating to services for persons with developmental disabilities.\",Health\r\n\"An act to add Section 76038 to the Education Code, relating to community college districts.\",Education\r\n\"An act to add Chapter 10.1 (commencing with Section 46100) to Division 17 of the Food and Agricultural Code, relating to organic foods.\",Agriculture and Food\r\nAn act relating to family connection grants.,Legal Issues\r\n\"An act to amend Section 38505 of, and to add Section 38573 to, the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Sections 48313 and 48315 of the Education Code, relating to pupil attendance, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to amend Section 510 of, and to add Section 511.5 to, the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Chapter 7 (commencing with Section 63095) to Division 1 of Title 6.7 of the Government Code, relating to community block funds, and making an appropriation therefor.\",State Agencies\r\n\"An act to add Section 9025.5 to the Government Code, relating to the Legislature.\",Legislative Affairs\r\n\"An act to amend Section 86203 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to add Section 69508.5 to the Education Code, relating to student financial aid.\",Education\r\n\"An act to amend Sections 2101 and 3011 of, and to add Sections 3020.5 and 14216.5 to, the Elections Code, and to add Section 14902.5 to the Vehicle Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 640.7 and 640.8 of the Penal Code, relating to vandalism.\",Crime\r\n\"An act to amend Section 120190 of the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend, repeal, and add Sections 8880.4, 8880.63, and 8880.64 of, and to add and repeal Section 8880.4.5 of, the Government Code, relating to the California State Lottery, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act to add Section 13997.8 to the Government Code, relating to state government.\",State Agencies\r\n\"An act to amend Section 510 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Sections 3011 and 3019 of the Elections Code, and to add Section 14902.5 to the Vehicle Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 8730.1 of the Water Code, relating to water.\",Environmental\r\n\"An act to amend Section 9537 of the Water Code, relating to flood control.\",Health\r\n\"An act to amend Section 32121 of the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend Section 27491.43 of the Government Code, relating to coroners.\",Health\r\n\"An act to add Section 3533.5 to the Government Code, relating to state employees.\",Labor and Employment\r\n\"An act to add Section 2781.5 to the Revenue and Taxation Code, relating to taxation, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to add Sections 49423.4 and 49426.3 to the Education Code, relating to pupil health.\",Education\r\n\"An act to add Section 51150.5 to the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to add Section 52052.7 to the Education Code, relating to public school accountability.\",Education\r\n\"An act to add Chapter 14 (commencing with Section 25995) to Division 20 of the Health and Safety Code, relating to public health.\",Agriculture and Food\r\n\"An act to amend Sections 116760.20, 116760.40, and 116761.23 of the Health and Safety Code, relating to drinking water.\",Environmental\r\n\"An act to add Section 13827.3 to the Penal Code, relating to gangs.\",Crime\r\n\"An act to amend Section 1465.6 of the Penal Code, and to amend Sections 4461, 4463, 22511.57, 40203.5, and 42001.3 of, and to add Sections 40200.1 and 40203.6 to, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 14313 to the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 1345, 1348, 1796, 3004, 4011, 5654, 7149.45, 8035, 8036, 8276.2, 8276.3, 8279.1, 8280.1, 8280.2, 8280.3, 8280.4, 8280.5, 8280.6, 8405.4, 12002.1, 12159, 12160, and 12161 of, and to add Sections 392, 393, 859, 860, 1050.8, 2011.5, 2020, and 12014 to, the Fish and Game Code, and to amend Sections 8670.3, 8670.61.5, and 8670.67 of the Government Code, relating to natural resources.\",Environmental\r\n\"An act to amend Section 23217 of, and to add Section 23595 to, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 11011.27 to the Government Code, relating to state property.\",State Agencies\r\n\"An act to amend Section 3426.7 of the Civil Code, relating to trade secrets.\",Commerce\r\n\"An act to add Section 8543.8 to the Government Code, and to amend Section 11771.5 of the Insurance Code, relating to the State Compensation Insurance Fund.\",Insurance\r\n\"An act to amend Section 25608 of the Business and Professions Code, relating to alcoholic beverages.\",Education\r\n\"An act to amend Section 1389.8 of the Health and Safety Code, and to amend Section 10119.3 of the Insurance Code, relating to health care coverage.\",Health\r\nAn act relating to health care.,Health\r\n\"An act to add Chapter 17 (commencing with Section 26495) to Part 2 of Division 2 of Title 3 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to add Section 38562.5 to the Health and Safety Code, relating to air pollution.\",State Agencies\r\n\"An act to amend Sections 2851 and 2852 of the Public Utilities Code, relating to energy.\",Environmental\r\n\"An act to amend Section 5096 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Section 1302 of the Streets and Highways Code, relating to transportation.\",Transportation\r\n\"An act to amend Section 1599.64 of, and to add Section 1599.645 to, the Health and Safety Code, relating to long-term health care facilities.\",Health\r\n\"An act to amend Sections 50675.1 and 50675.14 of the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to amend Section 60061.5 of the Education Code, relating to instructional materials.\",Other\r\n\"An act to add the heading of Chapter 1 (commencing with Section 99500) to Title 20 of, to add Chapter 2 (commencing with Section 99600), Chapter 3 (commencing with Section 99700), and Chapter 4 (commencing with Section 99800) to Title 20 of, to repeal Chapter 4 (commencing with Section 6300) of Division 7 of Title 1 of, and to repeal Chapter 8 (commencing with Section 8700) and Chapter 8.1 (commencing with Section 8710) of Division 1 of Title 2 of, the Government Code, relating to state government.\",State Agencies\r\n\"An act to amend Section 8046 of the Business and Professions Code, relating to shorthand reporting.\",Other\r\n\"An act to amend Section 14083 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Sections 10631 and 10633 of the Water Code, relating to water.\",Public Services\r\n\"An act to amend Section 204 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 25214.10.1 of the Health and Safety Code, relating to hazardous waste.\",Environmental\r\n\"An act to amend Section 14126.023 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Section 35414 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 1797.98a of the Health and Safety Code, relating to emergency medical services.\",Public Services\r\n\"An act to add Section 2290.6 to the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to add Section 11250.5 to the Welfare and Institutions Code, relating to public social services.\",Public Services\r\n\"An act to add Chapter 5 (commencing with Section 33700) to Part 20 of Division 2 of Title 2 of the Education Code, relating to education.\",Education\r\n\"An act to amend Section 234 of the Public Utilities Code, relating to telecommunications.\",Technology and Communication\r\n\"An act to amend Section 2762 of the Fish and Game Code, relating to fisheries.\",Agriculture and Food\r\n\"An act to amend Sections 17052.12 and 23609 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\nAn act relating to civil actions.,Legal Issues\r\n\"An act to amend Sections 1635, 1644, and 1644.5 of the Health and Safety Code, relating to tissue donation, and declaring the urgency thereof, to take effect immediately.\",Health\r\nAn act relating to public health.,Agriculture and Food\r\n\"An act to amend Sections 25354.5 and 25400.16 of the Health and Safety Code, relating to hazardous materials.\",Environmental\r\n\"An act to amend Sections 15375, 15501, 15503, and 15505 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Section 318.1 to the Corporations Code, relating to corporations.\",Business and Consumers\r\n\"An act to add Section 23126 to the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 25503.6 of the Business and Professions Code, relating to alcoholic beverages.\",Commerce\r\n\"An act to amend Section 11122.5 of the Government Code, relating to public meetings.\",State Agencies\r\nAn act relating to postsecondary education.,Education\r\n\"An act to amend Section 1016.5 of the Penal Code, relating to criminal procedure.\",Judiciary\r\n\"An act to add and repeal Section 6398 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to amend Section 21655.9 of, to amend and repeal Section 40000.13 of, and to add and repeal Section 5205.5 of, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Article 2.5 (commencing with Section 11570) to Chapter 6 of Part 1 of Division 3 of Title 2 of the Government Code, relating to boards and commissions.\",Labor and Employment\r\n\"An act to amend Sections 4512, 4513, and 4551 of, and to add Section 4512.5 to, the Public Resources Code, relating to forest resources.\",Environmental\r\n\"An act to amend Section 319 of the Penal Code, relating to gambling.\",Gambling and Gaming\r\n\"An act to add and repeal Section 17203.6 of the Government Code, relating to state funds, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend Section 850 of the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Section 51101.1 of the Education Code, relating to public schools.\",Education\r\n\"An act to add Chapter 3.5 (commencing with Section 110286) to Part 5 of Division 104 of the Health and Safety Code, relating to food and drug safety.\",Agriculture and Food\r\n\"An act to amend Sections 5093.34, 5093.35, and 5093.39 of the Public Resources Code, relating to state lands.\",Environmental\r\n\"An act to amend Section 1054.3 of the Penal Code, relating to criminal procedure.\",Judiciary\r\n\"An act to add Section 56510 to the Education Code, relating to special education.\",Education\r\n\"An act to amend Section 3010 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Section 9012.5 to, and to repeal Section 9653 of, the Welfare and Institutions Code, relating to senior wellness.\",Senior Issues\r\n\"An act to add Chapter 6.6 (commencing with Section 5809.1) to Division 5 of the Public Resources Code, relating to watersheds.\",Environmental\r\n\"An act to add Section 1359.1 to the Health and Safety Code, and to add Section 10119.4 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Sections 6376.3 and 6376.4 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to amend Sections 1630 and 1632 of, to add Sections 1632.1 and 1632.6 to, and to repeal Section 1631 of, the Business and Professions Code, relating to dentistry.\",Health\r\n\"An act to amend Section 15620 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 44283 of, and to add Sections 39626.1 and 44287.2 to, the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 2107 of, and to add Article 4.5 (commencing with Section 2170) to Chapter 2 of Division 2 of, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Chapter 4.2 (commencing with Section 829.5) to Title 3 of Part 2 of the Penal Code, relating to code enforcement officers, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to add Section 7192 to the Business and Professions Code, relating to contractors.\",Labor and Employment\r\n\"An act to amend Sections 101, 149, 205, 2220.5, 2530.2, 2531, 2531.2, 2534, 2534.2, 3300, 3306, 3307, 3320.1, 3326, 3327, 3327.5, 3328, 3329, 3350, 3352, 3353, 3354, 3356, 3357, 3358, 3360, 3362, 3364, 3400, 3401, 3402, 3403, 3404, 3421, 3422, 3423, 3424, 3426, 3430, 3451, 3452, 3454, 3455, and 3456 of, to add Sections 2531.06 and 3322 to, to add Article 9 (commencing with Section 2539.1) to Chapter 5.3 of Division 2 of, to repeal Sections 3321, 3325, and 3330 of, and to repeal and add Sections 2531.05 and 3320 of, the Business and Professions Code, relating to hearing aids.\",Health\r\n\"An act to amend Section 1269a of the Penal Code, relating to bail.\",Crime\r\nAn act relating to building standards.,Housing and Property\r\n\"An act to amend Sections 16118 and 16119 of, and to add Section 16132 to, the Welfare and Institutions Code, relating to adoption assistance.\",\"Federal, State, and Local Relations\"\r\n\"An act to amend Section 6276.24 of the Government Code, to amend Sections 1250, 1344, 1366.4, 1374.64, 1375.4, 1376.1, 1377, 1399, 116283, 116286, 116380, 116540, 116650, 116725, 121360.5, 127662, 127664, 127665, 128730, and 128745 of, and to add Sections 116451 and 116552 to, the Health and Safety Code, and to amend Sections 14043.26, 14043.28, 14043.29, and 14115.8 of the Welfare and Institutions Code, relating to health.\",Health\r\n\"An act to amend Sections 1357 and 1357.50 of the Health and Safety Code, and to amend Sections 10198.6 and 10700 of the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Chapter 3.5 (commencing with Section 24300) to Division 20 of the Health and Safety Code, relating to medical homes, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Sections 1358.4, 1358.6, 1358.8, 1358.9, 1358.11, 1358.12, 1358.13, 1358.17, 1358.18, and 1358.20 of, and to add Sections 1358.81, 1358.91, and 1358.24 to, the Health and Safety Code, and to amend Sections 785, 10192.4, 10192.6, 10192.8, 10192.9, 10192.11, 10192.12, 10192.13, 10192.17, 10192.18, 10192.20 of, and to add Sections 10192.81, 10192.91, and 10192.24 to, the Insurance Code, relating to health care coverage, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Sections 16361 and 16374 of, and to add Section 16361.1 to, the Probate Code, relating to the Uniform Principal and Income Act.\",Business and Consumers\r\n\"An act to amend Sections 6069, 6248, 7339, 60003, 60501, and 60508 of, to add Sections 7339.1, 55041.1, and 60003.1 to, and to repeal Sections 60508.1, 60508.2, 60508.4, and 60509 of, the Revenue and Taxation Code, relating to taxation.\",State Agencies\r\n\"An act to add Section 33043.5 to the Financial Code, relating to payment instruments.\",Other\r\n\"An act to amend Sections 697.530, 697.590, and 700.140 of the Code of Civil Procedure, relating to judgment liens.\",Judiciary\r\n\"An act to amend Section 53760 of, and to add Sections 8860, 8861, 8862, 8863, 8864, 8865, and 53760.5 to, the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to amend Section 80130 of the Water Code, relating to electricity.\",Military\r\n\"An act to add Section 13142.6 to the Water Code, relating to water.\",Environmental\r\n\"An act to amend Sections 50826 and 50832.1 of the Health and Safety Code, relating to community development.\",Other\r\n\"An act to amend Sections 7560, 7562, and 7563 of the Government Code, relating to state government.\",Campaign Finance and Election Issues\r\n\"An act to add Sections 15571 and 15572 to, and to repeal and add Section 15570 of, the Government Code, relating to economic development, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend Section 51225.3 of the Education Code, relating to high school curriculum.\",Education\r\n\"An act to add Section 612 to the Unemployment Insurance Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 6325 of, and to add Section 6333 to, the Labor Code, relating to employment.\",Health\r\n\"An act to amend Section 2929 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Section 2825 to the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 4406 of the Commercial Code, relating to financial institutions.\",Commerce\r\n\"An act to amend Section 10205 of the Unemployment Insurance Code, relating to the employment training panel.\",Labor and Employment\r\n\"An act to add Article 8.3 (commencing with Section 999.90) to Chapter 6 of Division 4 of the Military and Veterans Code, relating to military and veterans.\",Military\r\n\"An act to amend Section 69 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to amend Section 1363.03 of the Civil Code, to amend Sections 354.5, 13107.3, 13307, and 14225 of the Elections Code, and to amend Section 22970.20 of the Water Code, relating to voting.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 13314 and 15104 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 9162, 9286, and 10229 of the Elections Code, and to amend Section 4716 of the Health and Safety Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 19510, 19513, 19605.7, 19605.71, 19605.9, and 19606.3 of the Business and Professions Code, relating to horse racing, and making an appropriation therefor.\",Recreation\r\n\"An act to add Section 12012.54 to the Government Code, relating to gaming, and declaring the urgency thereof, to take effect immediately.\",Gambling and Gaming\r\n\"An act to amend Section 4369.2 of the Welfare and Institutions Code, relating to problem gambling.\",Health\r\n\"An act to amend Sections 19614.4, 19617, and 19617.2 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to amend Section 24044.5 of the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to amend Section 21628 of the Business and Professions Code, relating to secondhand goods.\",Business and Consumers\r\n\"An act to amend Sections 17008.5, 17020.6, 17024.5, 17041, 17052.12, 17062, 17063, 17072, 17085, 17132.5, 17144.5, 17152, 17206, 17250, 17250.5, 17255, 17275.5, 17276, 17501, 17551, 17952.5, 18165, 18180, 18631, 19116, 19131, 19134, 19164, 19166, 19172, 19179, 19443, 21015.5, 23045, 23051.5, 23456, 23609, 23712, 23732, 23772, 24305, 24356, 24357, 24357.1, 24357.7, 24358, 24416, 24949.5, 24990.6, and 24993 of, to add Sections 17020.15, 17132.8, 17204, 17225, 17257, 17257.2, 17257.4, 17275.2, 17275.3, 17279.6, 17560.5, 17681.3, 17755, 18031.5, 18037.5, 18151.5, 18155.6, 19165, 19172.5, 19185, 19186, 23046.5, 23703.7, 24329, 24349.2, 24462, 24831.3, 24941.5, 24950.5, 24990.2, and 24990.8 to, and to repeal Sections 24355.3, 24981, and 24988 of, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Federal, State, and Local Relations\"\r\n\"An act to amend Section 21083.9, and to add and repeal Sections 21080.27 of, of the Public Resources Code, relating to the environment.\",Environmental\r\n\"An act to amend Sections 56426.5, 56663, 57051, 57052, 57116, and 57150 of, and to amend and renumber Section 56426.5 of, the Government Code, relating to local agencies.\",Municipal and County Issues\r\n\"An act to amend Sections 41510, 41511, and 41512 of the Education Code, relating to education finance.\",Education\r\n\"An act to amend Sections 9795 and 10242.5 of, and to add Section 10231.5 to, the Government Code, relating to state agency reports, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to add Section 28767.8 to the Public Utilities Code, relating to transportation.\",Military\r\n\"3879, 3880, 3881, 3882, 3883, 3884, 3885, 3886, 3887, 3888, 3889, 3890, 3891, 3892, 3893, 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, 3901.5, 3902, 3903, 3904, and 4509 of, the Food and Agricultural Code, relating to fairs, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Recreation\r\n\"An act to amend Section 2923.5 of, and to add Article 1.7 (commencing with Section 2946) to Chapter 2 of Title 14 of Part 4 of Division 3 of the Civil Code, relating to mortgage defaults, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to add Section 4626.1 to, and to add Division 4.8 (commencing with Section 4910) to, the Welfare and Institutions Code, relating to developmental services.\",Business and Consumers\r\n\"An act to add Section 123612 to the Health and Safety Code, relating to perinatal health care, and making an appropriation therefor.\",Health\r\n\"An act to amend Sections 215 and 225.5 of, and to add Section 212.5 to, the Labor Code, relating to wages.\",Labor and Employment\r\n\"An act to amend Sections 19999.3, 21353, 21354.1, 21363.1, 21363.4, and 21369.1 of, and to add Sections 19829.7, 19829.8, 19829.9, 19829.95, 20037.14, 20677.6, 20677.7, 20677.9, 20677.95, and 21369.2 to, the Government Code, relating to state employees, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\n\"An act to amend Section 14043.46 of the Welfare and Institutions Code, relating to adult day health care centers.\",Health\r\n\"An act to add Chapter 1.5 (commencing with Section 115) to Division 1 of the Water Code, relating to the Sacramento-San Joaquin Delta.\",Environmental\r\n\"An act to add Section 14005.60 to the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to add Section 25622 to the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to add Article 5.5 (commencing with Section 14183) to Chapter 7 of Part 3 of Division 9 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Sections 667.1, 667.5, and 1192.7 of the Penal Code, relating to human trafficking, and declaring the urgency thereof, to take effect immediately.\",Crime\r\n\"An act to amend Sections 128385 and 128390 of the Health and Safety Code, relating to nurses.\",Education\r\n\"An act to add Section 22856 to the Government Code, to add Section 1374.74 to the Health and Safety Code, and to add Section 10144.8 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Part 21 (commencing with Section 42001) to Division 2 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add and repeal Section 17303.5 of the Education Code, relating to school facilities.\",Education\r\n\"An act to amend Section 487i of the Penal Code, relating to crimes.\",Housing and Property\r\n\"An act to amend Section 1872.81 of the Insurance Code, relating to motor vehicle insurance.\",Transportation\r\n\"An act to amend Sections 601 and 1501 of the Corporations Code, relating to corporations.\",Business and Consumers\r\n\"urgency thereof, to take effect immediately.\",Education\r\n\"the Statutes of 2009, relating to human services, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Public Services\r\n\"Session of the Statutes of 2009, relating to health, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Sections 8879.52, 8879.61, 8879.65, and 14556.7 of the Government Code, to amend Sections 185024 and 185035 of, and to add Section 185032.1 to, the Public Utilities Code, to amend Sections 167 and 2103 of, and to add Article 4.6 (commencing with Section 172) to Chapter 1 of Division 1 of, the Streets and Highways Code, and to amend Sections 2413, 2814.1, and 12811 of, and to add Section 2814.2 to, the Vehicle Code, relating to transportation, and declaring the urgency thereof, to take effect immediately.\",Transportation\r\n\"An act to amend Sections 25173.6, 25187, 25214.3, and 25215.7 of, and to add Sections 44272.3 and 44272.7 to, the Health and Safety Code, to amend Sections 4137, 4142, 14560, 14581, 25421, 25449.4, 25461, 25806, and 48004 of, to amend, repeal, and add Section 71305 of, to add Sections 4124, 5016.2, 14556, and 25464 to, and to add and repeal Section 3402.3 of, the Public Resources Code, to add Sections 13628.5 and 85214 to the Water Code, and to amend Section 1 of Chapter 384 of the Statutes of 2009, relating to resources, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\n\"4.7 of Division 3 of Title 2 of, the Government Code, to amend Section 50199.9 of the Health and Safety Code, to amend Sections 62.9, 1771.3, 1771.5, 1771.7, 1771.75, 1771.8, and 1777.5 of the Labor Code, to add Section 11105.8 to the Penal Code, to amend Section 5164 of the Public Resources Code, to amend Sections 11006 and 19558 of the Revenue and Taxation Code, to amend Sections 1088, 1112.5, 1113.1, 1275, 13021, and 13050 of, and to add Article 9 (commencing with Section 1900) to Chapter 7 of Part 1 of Division 1 of, the Unemployment Insurance Code, to amend Section 1673.2 of the Vehicle Code, and to amend and supplement the Budget Act of 2009 (Chapter 1 of the 2009̢\"\"10 Third Extraordinary Session) by amending Item 0820-001-3086 of Section 2.00 of that act, relating to state government, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend, repeal, and add Section 6322.1 of the Business and Professions Code, to add and repeal Section 367.6 of the Code of Civil Procedure, to amend Sections 12419.10, 25257, 25258, 25259, 70372, 76000, and 77206 of, to amend and repeal Section 70602 of, to amend, repeal, and add Sections 70603 and 70617 of, to add Sections 25259.7, 25259.8, 25259.9, 25259.95, 68106, and 72010 to, and to add and repeal Sections 68526, 70371.9, 70602.5, and 76000.3 of, and to add, repeal, and add Section 72011 to the Government Code, to amend Sections 1214 and 1463.02 of, and to amend, repeal, and add Sections 1463.007 and 1465.8 of, the Penal Code, and to amend Sections 40510.5 and 42007 of, and to add Section 42008.7 to, the Vehicle Code, relating to courts, and declaring the urgency thereof, to take effect immediately.\",Judiciary\r\n\"An act relating to elections, and declaring the urgency thereof, to take effect immediately.\",Campaign Finance and Election Issues\r\nAn act relating to the Budget Act of 2010.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2010.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 22954 of the Education Code, and to add and repeal Sections 16327 and 16327.5 of the Government Code, relating to state finance, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2010.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 1367.27 to the Health and Safety Code, and to add Section 10123.197 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Section 44559.11 to the Health and Safety Code, relating to economic development, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act making appropriations for the support of the government of the State of California and for several public purposes in accordance with the provisions of Section 12 of Article IV of the Constitution of the State of California, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2010.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2010.,\"Budget, Spending, and Taxes\"\r\n\"An act making appropriations for the support of the government of the State of California and for several public purposes in accordance with the provisions of Section 12 of Article IV of the Constitution of the State of California, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2010.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 35031.5 to the Education Code, relating to school districts.\",Education\r\n\"An act to add Section 104152 to the Health and Safety Code, and to amend Section 30461.6 of the Revenue and Taxation Code, relating to cancer screening.\",Health\r\n\"An act to amend Section 25608 of the Business and Professions Code, relating to alcoholic beverages, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to amend Sections 35179.1 and 49032 of the Education Code, relating to training for high school coaches.\",Education\r\n\"An act to amend Sections 23015, 23358, 23358.2, and 23390.5 of the Business and Professions Code, relating to alcoholic beverages.\",Agriculture and Food\r\n\"An act to amend Section 18000 of the Business and Professions Code, and to amend Section 14013 of, and to add Sections 14001 and 14013.2 to, the Unemployment Insurance Code, relating to microenterprises.\",Commerce\r\n\"An act to add Chapter 2.7 (commencing with Section 2200) to Part 1 of Division 2 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend Section 38004 of the Education Code, and to amend Section 165 of the Vehicle Code, relating to school districts.\",Public Services\r\n\"An act to add and repeal Sections 369.6 and 739.6 of the Welfare and Institutions Code, relating to dependent children.\",Health\r\n\"An act to add Title 1.1B (commencing with Section 1739.80) to Part 4 of Division 3 of the Civil Code, relating to fur products.\",Animal Rights and Wildlife Issues\r\n\"An act to add Section 7073.2 to the Government Code, relating to economic development.\",Commerce\r\n\"An act to add Article 7.5 (commencing with Section 9147.7) to Chapter 1.5 of Part 1 of Division 2 of Title 2 of the Government Code, relating to state government.\",State Agencies\r\n\"An act to amend, repeal, and add Sections 525 and 526 of, and to add and repeal Section 526.1 of, the Harbors and Navigation Code, relating to vessels.\",Transportation\r\n\"An act to amend Section 21662.4 of the Public Utilities Code, relating to airports.\",Transportation\r\n\"An act to add Sections 195.167, 195.168, 195.169, 218.4, 17207.6, and 24347.9 to the Revenue and Taxation Code, relating to disaster relief, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Public Services\r\n\"An act to repeal Section 12318 of, and to repeal Article 3.5 (commencing with Section 12060) of Chapter 1 of Title 2 of Part 4 of, the Penal Code, relating to ammunition.\",Guns\r\n\"An act to amend Section 3543.2 of the Government Code, relating to school employees.\",Education\r\n\"An act to amend Sections 31479.1, 34873, 34875, 34900, 34901, 34902, 36508, 36511, 36512, 36515, 36516.1, 36516.5, 36804, 36811, 50271, 57377, 57379, and 65063.7 of the Government Code, and to amend Sections 40225 and 40326 of the Health and Safety Code, relating to local government.\",Municipal and County Issues\r\n\"An act to add, repeal, and add Article 4 (commencing with Section 789) of Chapter 2.5 of Division 1 of the Public Resources Code, relating to forestry and fire protection.\",Environmental\r\n\"An act to amend Section 51225.3 of the Education Code, relating to high school graduation.\",Education\r\n\"An act to amend Sections 382 and 430 of the Streets and Highways Code, relating to highways.\",Transportation\r\n\"An act to amend Section 25060 of the Government Code, relating to county government.\",Municipal and County Issues\r\n\"An act to amend Section 39511 of, to add Section 39510.5 to, and to amend, repeal, and add Section 39510 of, the Health and Safety Code, relating to the State Air Resources Board.\",Campaign Finance and Election Issues\r\n\"An act to add Section 52526 to the Education Code, relating to adult education.\",Education\r\n\"An act to add Section 1065 to the Government Code, relating to elected officials, and declaring the urgency thereof, to take effect immediately.\",Campaign Finance and Election Issues\r\nAn act relating to public safety.,Resolutions\r\n\"An act to amend Sections 781 and 827 of the Welfare and Institutions Code, relating to juveniles.\",Family and Children Issues\r\n\"An act to add and repeal Section 4001 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 12000 and 12001 of the Education Code, relating to education.\",Education\r\n\"An act to amend Section 325 of the Code of Civil Procedure, relating to civil actions.\",Legal Issues\r\n\"An act to add Section 40440.15 to the Health and Safety Code, relating to air pollution.\",Energy\r\n\"An act to add and repeal Section 6018.9 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 290 of the Penal Code, relating to sex offenders.\",Crime\r\n\"An act to amend Sections 6002, 6003, 6020, 6023, 6024, 6041, 6042, 6080, 6082, 6101, 6105, 6108, 6122, 6145, 6160, 6180, 6240, 6241, and 6950 of, to repeal Sections 6004, 6005, 6021, 6086, 6087, and 6100 of, to add and repeal Section 7110 of, and to repeal Article 11 (commencing with Section 6200) of Chapter 1 of Part 1 of Division 6 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 121060 of the Health and Safety Code, relating to communicable disease.\",Health\r\n\"An act to add Sections 195.164, 195.165, 195.166, 218.2, 17207.2, and 24347.7 to the Revenue and Taxation Code, relating to disaster relief, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Public Services\r\n\"An act to amend Section 11062 of the Penal Code, relating to law enforcement.\",Crime\r\n\"An act to amend Section 13332.18 of, and to add Section 13332.185 to, the Government Code, relating to the General Fund.\",Other\r\n\"An act to amend Sections 18929.1, 18934.8, and 18942 of the Health and Safety Code, relating to building standards.\",Housing and Property\r\n\"An act to add Division 10.56 (commencing with Section 11972.10) to the Health and Safety Code, relating to alcohol abuse programs, and making an appropriation therefor.\",Other\r\n\"An act to amend Section 4703.5 of the Labor Code, relating to workers̢ compensation.\",Legal Issues\r\n\"An act to amend Section 68085 of the Government Code, and to amend Section 1465.8 of the Penal Code, relating to courts.\",Judiciary\r\n\"An act to amend Section 49024 of the Education Code, relating to school volunteers.\",Education\r\n\"An act to amend, repeal, and add Section 273 of the Code of Civil Procedure, relating to court reporters.\",Judiciary\r\n\"An act to amend Sections 6051.7, 6201.7, 10752, 10752.1, 17041, 17054, and 17062 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Transportation\r\n\"An act to amend Section 4145 of the Business and Professions Code, and to amend Section 11364 of the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend Section 84810.5 of the Education Code, relating to community colleges.\",Education\r\n\"An act to amend Section 21080.21 of the Public Resources Code, relating to the environment.\",Environmental\r\n\"An act to add Sections 17131.3 and 24303 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Energy\r\n\"An act to repeal and add Section 53395.8 of the Government Code, and to amend Section 96.1 of the Revenue and Taxation Code, relating to infrastructure financing districts, and declaring the urgency thereof, to take effect immediately.\",Municipal and County Issues\r\n\"An act to amend Section 3075.1 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 1765.1 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to add Section 654.3 to the Business and Professions Code, and to add Section 1395.7 to the Health and Safety Code, relating to dental services.\",Health\r\n\"An act to amend Section 1202.4 of the Penal Code, relating to victims.\",Crime\r\n\"An act to amend Section 25200 of the Public Resources Code, relating to energy.\",Energy\r\n\"An act to add Sections 45211 and 88211 to the Education Code, relating to school employees.\",Labor and Employment\r\n\"An act to amend Sections 48800, 76002, and 84760.5 of, and to repeal Section 10701 of, the Education Code, relating to public education.\",Education\r\n\"An act relating to the payment of claims against the state, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act relating to state claims, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend Section 65995.7 of the Government Code, relating to land use.\",Other\r\n\"An act to add Section 13300.7 to the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 53684 of the Government Code, and to add Part 10.6 (commencing with Section 20800) to Division 2 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to add and repeal Section 6377 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to amend Section 25608 of the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to amend Sections 7504, 7504.2, 7506.5, 7506.9, 7507.3, 7507.9, and 7507.12 of the Business and Professions Code, and to amend Sections 14602.8 and 22651 of the Vehicle Code, relating to collateral recovery.\",Other\r\n\"An act to amend Section 240 of, and to add and repeal Section 1390 of, the Evidence Code, relating to evidence.\",Legal Issues\r\n\"An act to amend Section 13385 of the Water Code, relating to water quality.\",Environmental\r\n\"An act to add Sections 52050.7 and 52052.3 to the Education Code, relating to school accountability.\",Education\r\n\"An act to amend Section 43.7 of the Civil Code, relating to personal rights.\",Legal Issues\r\n\"An act to amend Section 1936 of the Civil Code, relating to vehicle rental agreements.\",Transportation\r\nAn act relating to parks.,Public Services\r\n\"An act to add Section 12019.5 to the Government Code, relating to state government.\",State Agencies\r\n\"An act to amend Section 11343.4 of the Government Code, relating to regulations.\",Legal Issues\r\n\"An act to add Sections 17053.13 and 23623.2 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Education\r\n\"An act to amend Section 8310.5 of, and to add Section 8310.7 to, the Government Code, relating to state agencies.\",State Agencies\r\n\"An act to amend Section 6228 of the Family Code, relating to domestic violence.\",Social Issues\r\n\"An act to amend Sections 35511, 35706, 35708, 35710, and 35711 of, to amend and renumber Section 35535 of, and to add Sections 35710.3, 35780.1, and 35787 to, the Education Code, relating to school district reorganization.\",Education\r\n\"An act to amend Section 44017.4 of the Health and Safety Code, and to amend Section 4750.1 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 7513.8, 82002, and 82039 of, and to add Sections 7513.86, 7513.87, 82025.3, 82047.3, and 86206 to, the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 19635 of, and to add Chapter 10.4 (commencing with Section 3524.1) to Division 4 of Title 1 of, the Government Code, relating to public employees.\",Labor and Employment\r\n\"An act to amend Section 103680 of the Health and Safety Code, relating to vital records.\",Health\r\n\"An act to amend Section 5600 of, and to add Section 5600.05 to, the Business and Professions Code, relating to architects.\",Education\r\n\"An act to amend Section 25608 of the Business and Professions Code, relating to alcoholic beverages.\",Education\r\n\"An act to amend Section 14132.725 of the Welfare and Institutions Code, relating to telemedicine.\",Health\r\n\"An act to amend Section 23396.1 of the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to amend Sections 667 and 1170.12 of the Penal Code, relating to sentencing.\",Judiciary\r\n\"An act to amend Section 1257 of the Health and Safety Code, relating to health facilities.\",Health\r\n\"An act to amend Sections 330a, 330b, and 330.1 of the Penal Code, relating to slot machines.\",Gambling and Gaming\r\n\"An act to amend Section 18901.3 of the Welfare and Institutions Code, relating to food stamps.\",Welfare and Poverty\r\n\"An act to amend Sections 1450, 1451, 1453, 1454, 1455, 1456, and 1457 of, and to add Sections 1450.1 and 1450.2 to, the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Sections 18250, 18251, 18253, 18253.5, 18254, 18255, and 18256.5 of, to amend the heading of Chapter 4 (commencing with Section 18250) of Part 6 of Division 9 of, to add Section 18258 to, and to repeal and add Section 18256 of, the Welfare and Institutions Code, relating to public social services.\",Municipal and County Issues\r\n\"An act to amend Section 1374.20 of the Health and Safety Code, and to amend Section 10199.48 of the Insurance Code, relating to health care coverage.\",Health\r\n\"amend Sections 1758.97 and 2071.1 of the Insurance Code, to amend Sections 298.1, 599aa, 868.7, and 1203.098 of the Penal Code, to amend Section 4423.1 of the Public Resources Code, to amend Section 1611 of the Revenue and Taxation Code, and to amend Section 19639 of the Welfare and Institutions Code, relating to the maintenance of the codes.\",Other\r\n\"An act to add and repeal Article 6.5 (commencing with Section 217) of Chapter 1 of Division 1 of the Streets and Highways Code, relating to transportation.\",Labor and Employment\r\n\"An act to amend Section 69435 of the Education Code, relating to student financial aid.\",Other\r\n\"An act to repeal and add Section 10026 of the Business and Professions Code, relating to real estate.\",Housing and Property\r\n\"An act to amend Sections 12301.6 and 12305.86 of, and to add Section 15661 to, the Welfare and Institutions Code, relating to public social services, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to add and repeal Section 18005 of the Government Code, relating to state employment.\",Labor and Employment\r\n\"An act to add Section 19851.5 to the Government Code, relating to public employment.\",Labor and Employment\r\n\"An act to add Section 2316 to the Business and Professions Code, and to amend Section 128335 of the Health and Safety Code, relating to healing arts.\",Health\r\n\"An act to amend Section 15820.917 of the Government Code, relating to county jails.\",Crime\r\n\"An act to amend, repeal, and add Section 13001 of the Elections Code, relating to elections, and declaring the urgency thereof, to take effect immediately.\",Campaign Finance and Election Issues\r\n\"An act to add Section 103628.6 to the Health and Safety Code, and to add Section 18309.8 to the Welfare and Institutions Code, relating to vital records.\",Municipal and County Issues\r\n\"An act to amend Section 2807 of the Penal Code, relating to public contracts.\",Business and Consumers\r\n\"An act to add Sections 12606.1, 13188.4, and 13197.6 to the Health and Safety Code, relating to fire protection.\",State Agencies\r\n\"An act to amend Section 13552.2 of, and to add Section 13552.3 to, the Water Code, relating to water.\",Environmental\r\nAn act relating to health facilities.,Health\r\n\"An act to add Chapter 9.1 (commencing with Section 8758) to Division 1 of Title 2 of the Government Code, and to add Section 7101.2 to the Revenue and Taxation Code, relating to the arts.\",Commerce\r\n\"An act to add Chapter 1.7 (commencing with Section 6096) to Division 7 of the Government Code, relating to state promotions.\",State Agencies\r\n\"An act to amend Section 17144.5 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to amend Section 6203 of the Revenue and Taxation Code, relating to taxation.\",Commerce\r\n\"An act to amend Section 85225.25 of the Water Code, relating to the Delta Stewardship Council.\",Other\r\n\"An act to add and repeal Chapter 7.1 (commencing with Section 1964) of Division 2.5 of the Streets and Highways Code, and to amend Sections 21251 and 21260 of the Vehicle Code, relating to neighborhood electric vehicles.\",Transportation\r\n\"An act to amend Section 16418 of the Government Code, to amend Sections 218, 17207, and 24347.5 of, and to add Chapter 7 (commencing with Section 199) to Part 1 of Division 1 of, the Revenue and Taxation Code, relating to disaster relief, and making an appropriation therefor.\",Public Services\r\n\"An act to amend Sections 14043, 14043.1, and 14043.26 of the Welfare and Institutions Code, relating to Medi-Cal.\",Legal Issues\r\n\"An act to add Section 100160.2 to the Public Utilities Code, relating to transportation.\",Transportation\r\n\"An act to add Section 5023.3 to the Penal Code, relating to prisoners.\",Health\r\n\"An act to amend Section 366.3 of the Welfare and Institutions Code, relating to dependent children.\",Family and Children Issues\r\n\"An act to amend Section 11346.2 of the Government Code, relating to administrative procedures.\",Other\r\n\"An act to amend Section 12585.7 of the Water Code, relating to water.\",Environmental\r\n\"An act to amend Section 41787 of the Public Resources Code, relating to solid waste.\",Environmental\r\n\"An act to repeal Sections 3884.1 and 3884.2 of the Food and Agricultural Code, relating to the Orange County Fair, and declaring the urgency thereof, to take effect immediately.\",Municipal and County Issues\r\n\"An act to amend Section 19616.51 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to amend Section 1353.8 of the Civil Code, relating to common interest developments.\",Housing and Property\r\n\"An act to amend Section 38562 of the Health and Safety Code, relating to greenhouse gases.\",Environmental\r\n\"An act to add Section 11345.8 to the Business and Professions Code, relating to real estate appraisers.\",Other\r\n\"An act to add Section 148 to the Water Code, relating to the State Water Resources Development System, and making an appropriation therefor.\",Environmental\r\n\"An act to amend Section 3014 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 34902, 36512, 57377, and 57379 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"Sections 3.60, 3.90, 4.01, 4.12, 12.00, 12.32, 12.42, 17.00, 25.50, and 35.50 of, by adding Sections 3.55, 4.85, 8.55, 12.45, 12.50, 12.55, 13.10, 13.25, 13.50, 15.30, 17.50, 17.80, 18.00, 18.10, 18.20, 18.30, 18.40, 18.50, 24.60, and 25.25 to, and by repealing Section 24.65 of, that act, relating to the State Budget, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 12305.84 of the Welfare and Institutions Code, relating to public social services.\",Senior Issues\r\n\"An act to add Section 49414.6 to the Education Code, relating to pupil health.\",Education\r\n\"An act to amend Section 1611.5 of the Unemployment Insurance Code, relating to employment.\",Labor and Employment\r\n\"An act to add and repeal Section 21099 of the Public Resources Code, relating to the environment, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Section 17152 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 87482.5 of the Education Code, relating to community colleges.\",Labor and Employment\r\n\"An act to add Chapter 9.4 (commencing with Section 7199.5) to Division 3 of the Business and Professions Code, relating to home inspections.\",Housing and Property\r\n\"An act to amend Section 21628.2 of the Business and Professions Code, and to amend Sections 11106, 12001, 12021.3, 12071, 12072, 12073, 12076, 12077, 12077.5, 12078, and 12082 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Sections 11014.5, 11364.5, 11364.7, and 11532 of the Health and Safety Code, relating to controlled substances.\",Crime\r\n\"An act to add Section 6377 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to amend Sections 6254.21 and 6254.24 of the Government Code, relating to public officials.\",State Agencies\r\n\"An act to amend Section 12940 of the Government Code, relating to employment.\",Labor and Employment\r\nAn act relating to energy.,Energy\r\nAn act relating to state property.,State Agencies\r\n\"An act to add Chapter 6.7 (commencing with Section 8549) to Division 1 of Title 2 of the Government Code, relating to the Office of the California Inspector General.\",State Agencies\r\n\"An act to amend Section 4600.5 of the Business and Professions Code, relating to massage therapy.\",Health\r\n\"An act to amend Section 50784 of the Health and Safety Code, relating to mobilehomes.\",Housing and Property\r\n\"An act to add Section 10123.865 to, and to add and repeal Section 10123.866 of, the Insurance Code, relating to health care coverage.\",Reproductive Issues\r\n\"An act to add Section 1367.225 to the Health and Safety Code, and to add Section 10123.197 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Sections 13601, 13602, and 13603 of, to amend the heading of Title 4.5 (commencing with Section 13600) of Part 4 of, and to repeal and add Section 13600 of, the Penal Code, relating to corrections.\",Crime\r\n\"An act to add Section 1821 to, and to repeal Section 648.1 of, the Military and Veterans Code, and to amend Sections 19.8 and 532b of the Penal Code, relating to military decorations.\",Military\r\n\"An act to add Section 185036.1 to the Public Utilities Code, relating to high-speed rail.\",Transportation\r\n\"An act to amend Sections 8482.3 and 8483.55 of the Education Code, relating to after school programs.\",Education\r\n\"An act to amend Section 9001 of the Elections Code, relating to initiatives.\",Other\r\n\"An act to add Section 11346.31 to the Government Code, relating to regulations.\",Commerce\r\n\"An act to add Section 17211 to the Business and Professions Code, relating to business.\",Commerce\r\n\"An act to amend Sections 17041 and 17062 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 1765.1 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to add and repeal Sections 3485.5 and 3486.5 of the Civil Code, relating to unlawful detainer.\",Crime\r\n\"An act to add Section 38006 to the Education Code, and to add Section 10752.3 to the Revenue and Taxation Code, relating to schools.\",Education\r\n\"An act to amend and repeal Section 56836.155 of the Education Code, relating to special education, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to amend Section 14002 of the Financial Code, relating to credit unions.\",Commerce\r\n\"An act to amend Sections 56021.1 and 56346 of the Education Code, relating to special education.\",Education\r\n\"An act to amend Section 186.26 of the Penal Code, relating to gangs.\",Crime\r\nAn act relating to water.,Environmental\r\n\"An act to amend Sections 220, 236.1, 264, 264.1, 286, 288, 288a, 289, 290.04, 290.05, 290.06, 290.46, 666, 667.61, 1203.067, 2962, 3000, 3000.1, 3008, and 13887 of, and to add Sections 290.09, 3053.8, and 9003 to, the Penal Code, and to amend Section 18846.3 of the Revenue and Taxation Code, relating to sex crimes, and declaring the urgency thereof, to take effect immediately.\",Crime\r\n\"An act to amend Sections 21159, 21159.1, and 21159.4 of the Public Resources Code, relating to the environment.\",Environmental\r\n\"An act to amend Section 1202.42 of the Penal Code, relating to criminal procedure.\",Legal Issues\r\n\"An act to add Section 466.65 to the Penal Code, relating to crimes.\",Transportation\r\n\"An act to amend Section 42238.1 of the Education Code, relating to education finance.\",Education\r\n\"An act to amend Sections 358.1, 360, and 16206 of the Welfare and Institutions Code, relating to dependent children.\",Family and Children Issues\r\n\"An act to add Section 48204.1 to the Education Code, relating to school attendance.\",Education\r\n\"An act to amend Section 22511.55 of the Vehicle Code, relating to vehicles.\",Military\r\n\"An act to amend Section 19596.2 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to amend Section 25608 of the Business and Professions Code, relating to alcoholic beverages, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to amend Section 273a of the Penal Code, relating to child abuse.\",Family and Children Issues\r\n\"An act to amend Section 41514.1 of the Health and Safety Code, relating to air pollution.\",Energy\r\n\"An act to amend Section 16531.1 of the Government Code, relating to Medi-Cal, and making an appropriation therefor.\",Health\r\n\"An act to amend Section 50843.5 of the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to add Section 11250.5 to the Welfare and Institutions Code, relating to public social services.\",Public Services\r\n\"An act to amend Section 65583.1 of the Government Code, relating to land use.\",Housing and Property\r\n\"An act to amend Section 10291.5 of, and to add Section 10116.2 to, the Insurance Code, relating to insurance.\",Insurance\r\nAn act relating to pharmacy.,Health\r\n\"An act to amend Section 33671 of the Health and Safety Code, relating to redevelopment.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 14105.18 of the Welfare and Institutions Code, relating to health care.\",Health\r\n\"An act to add Section 41344.6 to the Education Code, and to repeal Section 11 of Chapter 53 of the Statutes of 2004, relating to education finance.\",Education\r\n\"An act to add Chapter 7 (commencing with Section 8260) to Division 8 of the Welfare and Institutions Code, relating to public social services.\",Welfare and Poverty\r\n\"An act to amend Section 62074 of the Food and Agricultural Code, relating to milk.\",Agriculture and Food\r\n\"An act to amend Section 14771 of the Government Code, relating to state government forms.\",Other\r\n\"An act to add Section 737.1 to the Public Utilities Code, relating to utility charges.\",Energy\r\nAn act relating to corrections.,State Agencies\r\n\"An act to amend Section 1194.2 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Section 1255.4 to the Health and Safety Code, relating to health facilities.\",Health\r\n\"An act to add and repeal Section 103628.4 of the Health and Safety Code, and to add and repeal Section 18309.7 of the Welfare and Institutions Code, relating to domestic violence.\",Crime\r\n\"An act to add Section 147.3 to the Water Code, relating to water.\",Health\r\n\"An act to amend Section 602.4 of the Penal Code, relating to malicious mischief.\",Transportation\r\n\"An act to amend Sections 1127, 1137, and 1150 of, and to add Section 1193 to, the Harbors and Navigation Code, relating to harbors and ports.\",Commerce\r\n\"An act to amend, repeal, and add Section 5924 of the Government Code, relating to state finances, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 2080.8 of, and to repeal Section 2080.9 of, the Civil Code, relating to property.\",Legal Issues\r\n\"An act to amend Sections 87861, 87863, 87866, and 87867 of, to add Section 87861.5 to, and to repeal Section 87868 of, the Education Code, relating to community colleges.\",Labor and Employment\r\n\"An act to add Article 5.5 (commencing with Section 49010) to Chapter 6 of Part 27 of Division 4 of Title 2 of the Education Code, relating to pupil safety.\",Education\r\n\"An act to amend Section 170.6 of the Code of Civil Procedure, and to amend Section 68616 of the Government Code, relating to judges.\",Judiciary\r\n\"An act to amend Section 11770 of, to add Section 11806 to, and to repeal Article 7 (commencing with Section 11885) of Chapter 4 of Part 3 of Division 2 of, the Insurance Code, relating to the State Compensation Insurance Fund.\",Insurance\r\nAn act relating to bonds.,Commerce\r\n\"An act to add Sections 11004.4, 11004.5, 11004.6, and 11004.7 to the Government Code, relating to state agencies.\",State Agencies\r\n\"An act to add Division 27.5 (commencing with Section 44570) to the Health and Safety Code, relating to product labeling.\",Environmental\r\nAn act relating to the Budget Act of 2010.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 5007.7 and 6030 of the Penal Code, and to amend Sections 222 and 1774 of the Welfare and Institutions Code, relating to inmates.\",Sexual Orientation and Gender Issues\r\n\"An act to amend Sections 66002 and 66003 of the Education Code, relating to postsecondary education.\",Education\r\n\"An act to amend Section 10529 of the Unemployment Insurance Code, relating to workforce development.\",Labor and Employment\r\n\"An act to add Section 1349.3 to the Health and Safety Code, and to add Section 699.6 to the Insurance Code, relating to health care coverage.\",Commerce\r\n\"An act to add Section 11402.4 to the Welfare and Institutions Code, relating to foster care.\",Family and Children Issues\r\n\"An act to add Section 904.7 to the Penal Code, relating to grand juries.\",Judiciary\r\n\"An act to add and repeal Section 47612.8 of the Education Code, relating to charter schools.\",Education\r\n\"An act to amend Section 16326 of the Government Code, and to amend Section 2103.1 of the Streets and Highways Code, relating to state cash resources, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act to add Chapter 7.5 (commencing with Section 6750) to Division 7 of Title 1 of the Government Code, relating to the Ronald Reagan Centennial Commission, and declaring the urgency thereof, to take effect immediately.\",Resolutions\r\n\"An act to add Chapter 28 (commencing with Section 79601) to Part 2 of Division 22 of the Food and Agricultural Code, relating to bees, and making an appropriation therefor.\",Agriculture and Food\r\n\"An act to add and repeal Section 22204.5 of the Education Code, and to add and repeal Section 20139 of the Government Code, relating to retirement.\",Senior Issues\r\n\"An act to amend Sections 8281, 8283, 8284, and 8285 of the Public Utilities Code, relating to public utilities.\",Public Services\r\n\"An act to add Section 22204.5 to the Education Code, and to add Section 20139 to the Government Code, relating to retirement.\",Labor and Employment\r\n\"An act to amend Section 87500.1 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to add Chapter 3.9 (commencing with Section 8680) to Part 6 of Division 1 of Title 1 of, the Education Code, relating to civil rights education.\",Education\r\n\"An act to amend Section 12305.82 of the Welfare and Institutions Code, relating to in-home supportive services.\",Senior Issues\r\n\"An act to add Chapter 2.97 (commencing with Section 1001.95) to Title 6 of Part 2 of the Penal Code, relating to veterans courts.\",Judiciary\r\n\"An act to amend Sections 68150 and 68151 of the Government Code, relating to court records.\",Judiciary\r\n\"An act to amend Section 1368 of, and to add Section 1360.2 to, the Civil Code, relating to common interest developments.\",Housing and Property\r\n\"An act to amend Section 2301 of the Fish and Game Code, relating to invasive aquatic species.\",Environmental\r\n\"An act to amend Sections 31 and 7145.5 of the Business and Professions Code, to amend Sections 6203, 18661, 18663, 19025, 19116, 19136, 19136.1, 19504, 19571, 19755, and 19777 of, and to add Sections 6225, 18407.5, 18662.5, 18664, 19265, 19266, 19560.5, and 19777.1 to, the Revenue and Taxation Code, and to amend Section 13020 of the Unemployment Insurance Code, relating to taxation, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 104336 and 104337 of, and to repeal Sections 104339.5 and 104339.6 of, the Health and Safety Code, relating to injury prevention.\",Health\r\n\"An act to amend Section 48853.5 of the Education Code, relating to foster children.\",Education\r\n\"An act to amend Sections 7574.14 and 7582.2 of the Business and Professions Code, and to amend Sections 626.9, 12001, 12025, 12026, 12026.2, and 12590 of, and to add Section 12037 to, the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Section 25128.5 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Business and Consumers\r\n\"An act to amend Sections 17276, 17276.9, 17276.10, 24416, 24416.9, and 24416.10 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 49403 of the Education Code, relating to pupil health, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to repeal Section 1620.1 of the Business and Professions Code, relating to dentistry.\",Health\r\n\"An act to amend Section 47115 of the Public Resources Code, relating to solid waste.\",Environmental\r\n\"An act to amend Section 3520 of the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to amend Section 49076 of the Education Code, and to add Section 16501.9 to the Welfare and Institutions Code, relating to foster children.\",Family and Children Issues\r\n\"An act to amend Sections 5007 and 22511.55 of the Vehicle Code, relating to vehicles.\",Military\r\n\"An act to amend Section 107.4 of the Revenue and Taxation Code, relating to taxation.\",Military\r\n\"An act to add Section 387.8 to the Public Utilities Code, relating to solar energy.\",Energy\r\n\"An act to add Section 11349.95 to the Government Code, relating to regulations.\",Other\r\n\"An act to amend Sections 14502.1, 47604, 47605, 47605.6, and 47607 of, and to add Section 47630.6 to, the Education Code, relating to charter schools.\",Education\r\n\"An act to amend Section 12509 of, and to add Section 12509.5 to, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Article 6 (commencing with Section 3500) to Chapter 3 of Part 1 of Division 2 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend Sections 399.2.5 and 399.12 of the Public Utilities Code, relating to electricity.\",Energy\r\n\"An act to amend Section 19348 of, and to add Section 19348.2 to, the Food and Agricultural Code, relating to wildlife.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 11346.4 of, and to add Section 11346.41 to, the Government Code, relating to regulations.\",Municipal and County Issues\r\nAn act relating to state government.,State Agencies\r\n\"An act to amend, repeal, and add Section 18663 of the Revenue and Taxation Code, and to amend, repeal, and add Section 13020 of the Unemployment Insurance Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Article 17 (commencing with Section 43121) to Chapter 2 of Division 17 of the Food and Agricultural Code, relating to agriculture.\",Agriculture and Food\r\n\"An act to amend Section 6141 of the Penal Code, relating to prisons.\",Health\r\n\"An act to add and repeal Section 105206 of the Health and Safety Code, relating to pesticide poisoning.\",Agriculture and Food\r\n\"An act to amend Sections 18400.1, 18424, and 18502 of the Health and Safety Code, relating to mobilehomes.\",Housing and Property\r\n\"An act to amend Section 14132.100 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend, repeal, and add Sections 48000 and 48010 of the Education Code, relating to pupil admission.\",Education\r\n\"An act to amend Sections 336, 342, 9001, 9002, 9003, 9004, 9005, 9006, 9007, 9008, 9009, 9034, 9035, 9050, 9051, 9053, 9054, 9063, 9086, 13262, 13282, and 18602 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 12301.65 to the Welfare and Institutions Code, relating to public social services.\",Senior Issues\r\n\"An act to amend Sections 89090, 89090.5, 92630, and 92630.9 of, and to add Sections 89090.3 and 92630.3 to, the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to amend Section 148 of the Penal Code, relating to resisting lawful authority.\",Crime\r\n\"An act to repeal and amend Sections 17053.80 and 23623 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Article 12 (commencing with Section 1399.850) to Chapter 2.2 of Division 2 of the Health and Safety Code, and to add Chapter 7.5 (commencing with Section 10650) to Part 2 of Division 2 of the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Section 55.5 to the Labor Code, relating to employment.\",Commerce\r\n\"An act to amend Section 1597.09 of the Health and Safety Code, relating to child day care.\",Family and Children Issues\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 4800, 4802, 4804.5, 4807, 4809.8, 4839, 4840.7, and 4887 of, to amend and repeal Sections 4832, 4833, 4834, and 4835 of, to amend, repeal, and add Section 4810 of, to add Sections 4830.8, 4839.5, and 4841.1 to, and to repeal and add Section 4801 of, the Business and Professions Code, and to amend Section 8659 of the Government Code, relating to healing arts.\",Science and Medical Research\r\n\"An act to amend Section 2982 of the Civil Code, and to amend Sections 42861, 42885, 42886, and 42889 of, and to add Sections 42860.5 and 42885.1 to, the Public Resources Code, relating to recycling.\",Environmental\r\n\"An act to amend Section 47605 of, to add Section 47604.2 to, and to add and repeal Section 47602.1 of, the Education Code, relating to charter schools.\",Education\r\n\"An act to add and repeal Article 18 (commencing with Section 18887) of Chapter 3 of Part 10.2 of Division 2 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 1978 of the Streets and Highways Code, relating to highways.\",Military\r\n\"An act to amend Section 6240 of the Probate Code, relating to wills.\",Legal Issues\r\n\"An act to amend Sections 31460 and 31461 of, to add Sections 7500.5, 31460.2, 31461.8, 31539.5, 31540, 31541, 31569, 31680.10, 45309.6, 45309.7, 50871.6, and 50871.7 to, and to repeal and add Section 31539 of, the Government Code, relating to public retirement systems.\",Labor and Employment\r\n\"An act relating to the Chino Valley Unified School District, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to amend, repeal, and add Section 1000 of, and to add Section 1000.1 to, the Education Code, relating to county boards of education.\",Campaign Finance and Election Issues\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 19481 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to add Section 3212.13 to the Labor Code, relating to workers̢ compensation.\",Health\r\n\"An act to amend Section 1053 of, and to add Section 1053.1 to, the Fish and Game Code, relating to fish and wildlife.\",Legal Issues\r\n\"An act to amend an initiative act entitled ̢An act prescribing the terms upon which licenses may be issued to practitioners of chiropractic, creating the State Board of Chiropractic Examiners and declaring its powers and duties, prescribing penalties for violation thereof, and repealing all acts and parts of acts inconsistent therewith̢ approved by electors November 7, 1922, by amending Section 12 thereof, relating to chiropractors, and making an appropriation therefor.\",Health\r\n\"An act to add and repeal Section 76072 of the Education Code, relating to student financial aid.\",Education\r\n\"An act to amend Section 42257 of, to add Chapter 5.3 (commencing with Section 42280) to Part 3 of Division 30 of, and to repeal Sections 42254 and 42285 of, the Public Resources Code, relating to solid waste, and making an appropriation therefor.\",Environmental\r\n\"An act to add Sections 1389.9, 1389.10, 1389.11, 1389.13, 1389.14, 1389.15, 1389.16, 1389.17, 1389.18, 1389.19, 1389.20, 1389.22, and 1389.24 to, and to repeal and add Section 1389.1 of, the Health and Safety Code, and to amend Sections 10270.95, 10291.5, and 12957 of, and to add Sections 10384.1, 10384.12, 10384.14, 10384.16, 10384.18, 10384.2, 10384.22, 10384.24, 10384.26, 10384.28, 10384.29, 10384.3, 10384.32, and 10396 to, the Insurance Code, relating to health care coverage.\",Health\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 121690 of the Health and Safety Code, relating to rabies.\",Health\r\n\"An act to add Section 18949.7 to the Health and Safety Code, relating to building standards.\",Housing and Property\r\n\"An act to amend Section 923.5 of, and to repeal Section 11558 of, the Insurance Code, relating to reserve requirements.\",Other\r\n\"An act to add Section 50035 to the Government Code, relating to local government.\",Legislative Affairs\r\n\"An act to add and repeal Section 6220 of the Government Code, relating to governmental linguistics.\",Other\r\n\"An act to add Section 86119 to the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to add Section 19852.4 to the Government Code, relating to public employment.\",Labor and Employment\r\n\"An act to amend Section 76104.6 of the Government Code, relating to county penalties.\",Municipal and County Issues\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 50710.1 of the Health and Safety Code, relating to housing.\",Labor and Employment\r\n\"An act to amend Section 1203.097 of the Penal Code, relating to crimes, and declaring the urgency thereof, to take effect immediately.\",Social Issues\r\n\"An act to amend Section 597 of the Penal Code, relating to cruelty to animals.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 52052 of the Education Code, relating to education.\",Education\r\n\"An act to amend Sections 18961.5 and 18986.46 of the Welfare and Institutions Code, relating to child abuse.\",Family and Children Issues\r\n\"An act to amend Section 2924b of the Civil Code, relating to common interest developments.\",Housing and Property\r\n\"An act to add Article 15.1 (commencing with Section 51875) to Chapter 5 of Part 28 of Division 4 of Title 2 of the Education Code, relating to education technology.\",Education\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 7630, 7662, 7667, 8620, 8710, 8814.5, and 9001 of, and to repeal Section 7631 of, the Family Code, and to amend Section 1516.5 of the Probate Code, relating to family law.\",Legal Issues\r\n\"An act to amend Sections 13108, 13145, and 13146 of the Health and Safety Code, relating to fire protection.\",Public Services\r\n\"An act to amend, repeal, and add Sections 10102 and 10103.5 of the Insurance Code, relating to property insurance.\",Housing and Property\r\n\"An act to amend Sections 15620, 15621, 16401, and 16421 of, and to add Chapter 8.5 (commencing with Section 15560) to Division 15 of, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Section 2944.8 to the Civil Code, relating to loan modification.\",Commerce\r\n\"An act to amend Section 14166.2 of the Welfare and Institutions Code, relating to Medi-Cal, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to add and repeal Section 46300.8 of the Education Code, relating to online education.\",Education\r\n\"An act to amend Sections 56.10 and 56.104 of the Civil Code, relating to medical information.\",Health\r\n\"An act to amend Section 18114 of the Health and Safety Code, relating to mobilehomes.\",Housing and Property\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add and repeal Article 2.2 (commencing with Section 1301) of Chapter 5 of Part 1 of Division 1 of the Unemployment Insurance Code, relating to unemployment insurance, and making an appropriation therefor.\",Labor and Employment\r\n\"An act to add Section 10295.2 to the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to add Section 1308.10 to the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Section 50505.5 to the Health and Safety Code, relating to homelessness.\",\"Federal, State, and Local Relations\"\r\n\"An act to amend Sections 35021, 35021.1, 35021.2, 44836, and 49024 of the Education Code, relating to public school volunteers.\",Education\r\n\"An act to add Section 1759.11 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Chapter 3.5 (commencing with Section 8350) to Division 4.1 of the Public Utilities Code, relating to electricity.\",Environmental\r\n\"An act to amend, add, and repeal Sections 31, 476, and 7145.5 of, and to add and repeal Section 494.5 of, the Business and Professions Code, and to add and repeal Sections 19265 and 19571 of the Revenue and Taxation Code, relating to taxes.\",Business and Consumers\r\n\"An act to amend Sections 18986.60 and 18986.61 of, and to repeal Section 18986.62 of, the Welfare and Institutions Code, relating to public social services.\",Public Services\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 17072 and 19184 of, to amend and repeal Sections 17131.4, 17131.5, 17215, 17215.1, and 17215.4 of, and to add Sections 17138.5, 17138.6, 17215.2, and 17216 to, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Health\r\n\"An act to amend Sections 33020 and 33021 of, and to add and repeal Section 33137 of, the Health and Safety Code, relating to redevelopment.\",Housing and Property\r\n\"An act to amend Section 9656 of the Business and Professions Code, relating to cemeteries.\",Other\r\n\"An act to amend Section 6223 of the Penal Code, relating to restitution centers.\",Other\r\n\"An act to amend Section 66205 of the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to amend Sections 17620 and 17621 of the Education Code, and to amend Section 65995 of the Government Code, relating to school facilities.\",Education\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 33444.6 of the Health and Safety Code, relating to housing and community development.\",Housing and Property\r\n\"An act to add Section 8588.17 to the Government Code, relating to emergency services.\",Public Services\r\n\"An act to add Section 10290.4 to the Public Contract Code, relating to public contracts.\",State Agencies\r\n\"An act to amend Section 12050 of the Penal Code, relating to concealed firearms licenses.\",Guns\r\n\"An act to amend Section 2933.1 of the Penal Code, relating to sex offenses.\",Crime\r\n\"An act to amend Section 1050 of the Penal Code, relating to criminal procedure.\",Judiciary\r\n\"An act to amend Section 859b of the Penal Code, relating to criminal procedure.\",Judiciary\r\n\"An act to amend Sections 1266, 1267, 1269, 1271.5, and 1272 of, to amend the heading of Article 1.5 (commencing with Section 1266) of Chapter 5 of Part 1 of Division 1 of, and to add Sections 1266.1, 1269.1, 1274.5, and 1274.20 to, the Unemployment Insurance Code, relating to unemployment insurance, and making an appropriation therefor.\",Labor and Employment\r\n\"An act to amend, repeal, and add Section 1936 of the Civil Code, relating to vehicle rental agreements.\",Transportation\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 7111 to the Public Contract Code, and to amend Sections 7261 and 7262 of the Revenue and Taxation Code, relating to fixed price contracts.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend and renumber Section 789.9 of, and to add Article 6.4 (commencing with Section 789.11) to Chapter 1 of Part 2 of Division 1 of, the Insurance Code, relating to annuity transactions.\",Labor and Employment\r\n\"An act to amend Section 22502 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 1203.4a of the Penal Code, relating to expungement standards.\",Other\r\n\"An act to repeal and add Section 60200.1 of the Education Code, relating to instructional materials.\",Education\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 14082 of the Food and Agricultural Code, relating to fumigants.\",Agriculture and Food\r\n\"An act to add Title 2.5 (commencing with Section 3550) to Part 3 of, the Penal Code, relating to inmates.\",Health\r\n\"An act to add Sections 124121 and 124122 to the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend Sections 14132, 14522.4, 14525.1, and 14526.2 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to add Section 5093.346 to the Public Resources Code, relating to natural resources.\",Environmental\r\n\"An act to amend Section 10764 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to add Section 17537.10 to the Business and Professions Code, relating to advertising.\",Commerce\r\n\"An act to amend Sections 4029 and 4033 of the Business and Professions Code, relating to pharmacy.\",Health\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 1266, 1274, 1510, 5200, 15235, 35331, 35534, and 35542 of the Education Code, relating to education.\",Education\r\n\"An act to add Sections 41344.11, 41344.12, and 41344.13 to the Education Code, and to amend Section 17559 of, and to add Sections 17562.5 and 17579.5 to, the Government Code, relating to local educational agencies.\",Municipal and County Issues\r\n\"An act to amend Section 53201 of the Education Code, relating to school accountability.\",Education\r\n\"An act to add Section 1596.808 to the Health and Safety Code, relating to child day care facilities.\",Health\r\n\"An act to amend Section 53545 of the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to amend Sections 11105 and 11302 of the Elections Code, relating to recall elections.\",Campaign Finance and Election Issues\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 6254.19 to the Government Code, relating to public records.\",Public Services\r\n\"An act to amend Sections 60005, 60200, 60200.4, 60204, and 60400 of, and to add Sections 60602.5 and 99237.7 to, the Education Code, relating to instructional materials.\",Other\r\n\"An act to amend Section 20104 of the Public Contract Code, relating to contracting by local agencies.\",Labor and Employment\r\n\"An act to amend Section 1808.4 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 399.12 of, and repeal and add Section 399.15 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Sections 17958.5 and 18941.5 of the Health and Safety Code, relating to building standards.\",Environmental\r\n\"An act to add Sections 18112 and 18604 to the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 977 of the Penal Code, relating to criminal procedure.\",Judiciary\r\n\"An act to amend Section 66704 of, and to add Section 66704.05 to, the Government Code, relating to the San Francisco Bay Restoration Authority.\",Municipal and County Issues\r\n\"An act to amend Section 4003 of the Business and Professions Code, relating to pharmacy.\",State Agencies\r\n\"An act to amend Section 66424 of the Government Code, relating to land use.\",Other\r\nAn act relating to solid waste.,Environmental\r\n\"An act to amend Section 13477 of the Water Code, relating to water quality.\",Environmental\r\n\"An act to amend Section 13477.6 of the Water Code, relating to water quality.\",Environmental\r\n\"An act to amend Sections 9855, 9855.1, 9855.2, and 9855.9 of, and to add Sections 9855.15 and 9855.85 to, the Business and Professions Code, to amend Section 1794.41 of the Civil Code, and to amend Section 12800 of the Insurance Code, relating to service contracts.\",Commerce\r\n\"An act to add Part 2.7 (commencing with Section 60) to Division 1 of the Civil Code, and to amend Section 130202 of the Health and Safety Code, relating to privacy.\",Health\r\n\"An act to amend Sections 17041.5 and 18663 of, to add Chapter 3.8 (commencing with Section 7295) to Part 1.7 of Division 2 of, and to add Chapter 2.2 (commencing with Section 17065) to Part 10 of Division 2 of, the Revenue and Taxation Code, and to amend Section 13020 of the Unemployment Insurance Code, relating to taxation, and making an appropriation therefor.\",Transportation\r\n\"An act to amend Section 12050 of the Penal Code, relating to firearms.\",Military\r\n\"An act to amend Section 170.9 of the Code of Civil Procedure, relating to judges.\",Judiciary\r\n\"An act to amend Sections 1513, 1513.5, 1514, 1515, 1515.5, 1516, 1517, 1518, 1519, 1520, 1521, 1540, and 1564 of the Code of Civil Procedure, relating to unclaimed property.\",Legal Issues\r\n\"An act to amend Section 11713.20 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 12c to the Code of Civil Procedure, relating to civil procedure.\",Technology and Communication\r\n\"An act to amend Section 25402 of the Public Resources Code, relating to energy.\",Energy\r\n\"An act to amend Section 798.15 of the Civil Code, relating to mobilehomes.\",Housing and Property\r\n\"An act to add Sections 185033.2 and 185033.4 to the Public Utilities Code, relating to high-speed rail.\",Transportation\r\n\"An act to add Section 93.5 to the Streets and Highways Code, relating to highways.\",State Agencies\r\n\"An act to add Sections 35620 and 35621 to the Public Resources Code, relating to coastal resources.\",Environmental\r\n\"An act to amend Sections 17935, 17941, 17948, and 23153 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Business and Consumers\r\n\"An act to add Section 14133.67 to the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Section 7583.40 of, and to repeal and add Section 7583.39 of, the Business and Professions Code, relating to private security services.\",Insurance\r\n\"An act to amend Sections 18987.7 and 18987.72 of, and to add Section 16524.5 and to, the Welfare and Institutions Code, relating to foster care.\",Family and Children Issues\r\n\"An act to amend Section 22502 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend and supplement the Budget Act of 2009 (Chapter 1 of the 2009̢\"\"10 Third Extraordinary Session) by amending Items 5180-151-0001 and 5180-153-0001 of Section 2.00 of that act, relating to the state budget, and making an appropriation therefor.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 2621.7 of the Public Resources Code, relating to geologic hazards.\",Science and Medical Research\r\n\"An act to add Section 25503.45 to the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to add Chapter 5 (commencing with Section 48800) to Part 7 of Division 30 of the Public Resources Code, relating to solid waste.\",Environmental\r\n\"An act to add Section 1367.27 to the Health and Safety Code, and to add Section 10123.24 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Chapter 3.3 (commencing with Section 13825.8) to Title 6 of Part 4 of the Penal Code, relating to crime prevention.\",Crime\r\n\"An act to add Section 790.5 to the Welfare and Institutions Code, relating to juvenile offenders.\",Judiciary\r\n\"An act to amend Sections 15200, 15300, 15302, 15306, 15308, 15311, 15311.1, 15312, and 22526 of, and to amend, repeal, and add Sections 1803.5, 1808.7, and 41501 of, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 1714.22 of the Civil Code, relating to drug overdose treatment.\",Crime\r\n\"An act to amend, repeal, and add Section 17072 of, and to add and repeal Section 17206.2 of, to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Health\r\n\"An act to amend Sections 31470.4, 31470.5, 31470.6, 31720.5, 31801, 31887, 31904, 32204, 32204.5, 32206, 32207, 32208, 32234, 32235, 32300, 32327, 32328, 32337, 32338, 32339, 32350, 32352, and 33003 of the Government Code, relating to county retirement.\",Senior Issues\r\nAn act relating to Compton Community College.,Education\r\n\"An act to add and repeal Section 1257.10 of the Health and Safety Code, relating to health facilities.\",Public Services\r\n\"An act to amend Section 3001 of, and to add Section 3007.8 to, the Elections Code, relating to vote by mail ballots.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 12078 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Sections 20104 and 20104.2 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend Section 44265.1 of the Education Code, relating to teacher credentialing.\",Education\r\n\"An act to amend Section 20112 of the Public Contract Code, relating to public contracts.\",Education\r\n\"An act to amend Sections 1255.410 and 1255.450 of the Code of Civil Procedure, and to amend Section 625 of the Public Utilities Code, relating to eminent domain.\",Public Services\r\n\"An act to amend Section 4590 of the Public Resources Code, relating to forest practices, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Section 84308 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to add and repeal Section 21080.30 of the Public Resources Code, relating to the environment, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Section 6529 of the Government Code, relating to joint exercise of powers.\",Public Services\r\n\"An act to amend, repeal, and add Sections 4992.1, 4996.1, 4996.3, 4996.4, and 4996.17 of the Business and Professions Code, relating to clinical social workers.\",Social Issues\r\n\"An act to add Section 6523.3 to the Government Code, relating to joint exercise of powers.\",Environmental\r\n\"An act to add Article 5.4 (commencing with Section 14180) to Chapter 7 of Part 3 of Division 9 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to add Section 1374.205 to the Health and Safety Code, and to add Section 10199.485 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Section 52372.6 to the Education Code, relating to career technical education.\",Labor and Employment\r\n\"An act to amend Section 14132.25 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\nAn act relating to education.,Education\r\n\"An act to add Article 10.03 (commencing with Section 25210.13) to Chapter 6.5 of Division 20 of the Health and Safety Code, relating to hazardous waste.\",Environmental\r\n\"An act to add and repeal Section 18416.5 of the Revenue and Taxation Code, relating to taxation.\",Technology and Communication\r\n\"An act to add Section 8484.1 to the Education Code, relating to the After School Education and Safety Program.\",Education\r\n\"An act to amend Section 66903 of, to add Chapter 12.5 (commencing with Section 67050) and Chapter 12.7 (commencing with Section 67070) to Part 40 of Division 5 of Title 3 of, to repeal Sections 66742 and 66743 of, and to repeal Chapter 4.5 (commencing with Section 99180) of Part 65 of Division 14 of Title 3 of, the Education Code, relating to postsecondary education.\",Education\r\n\"An act to amend Sections 10106, 10107, and 10108 of the Public Contract Code, relating to public contracts.\",Legislative Affairs\r\n\"An act to add Section 6102 to the Public Contract Code, relating to state contracts.\",State Agencies\r\n\"An act to add Section 1199.6 to the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 7100 of the Health and Safety Code, relating to disposition of remains.\",Health\r\n\"An act to amend Sections 4984.7, 4989.68, 4996.3, and 4999.120 of, and to add Sections 4984.41, 4989.45, 4997.1, and 4999.113 to, the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to repeal Section 14080.5 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Sections 19962 and 19963 of the Business and Professions Code, relating to gambling.\",Gambling and Gaming\r\n\"An act to add and repeal Chapter 2 (commencing with Section 101990) to Part 6 of Division 101 of the Health and Safety Code, relating to health facilities.\",Education\r\n\"An act to add Section 65054.7 to the Government Code, relating to small business.\",Business and Consumers\r\n\"An act to amend Section 4369.2 of the Welfare and Institutions Code, relating to problem gambling.\",Health\r\n\"An act to amend Section 8050 of the Welfare and Institutions Code, relating to mental health.\",Science and Medical Research\r\n\"An act to add and repeal Section 3054.5 of the Penal Code, relating to parole.\",Legislative Affairs\r\n\"An act to amend Section 4512 of, and to add Section 4512.5 to, the Welfare and Institutions Code, relating to developmental services.\",Other\r\n\"An act to amend Section 1527.3 of the Health and Safety Code, relating to foster care.\",Insurance\r\n\"An act to add Section 779.3 to the Public Utilities Code, relating to public utilities.\",Public Services\r\n\"An act to amend Section 290.015 of, and to add Section 290.96 to, the Penal Code, relating to sex offenders.\",Crime\r\n\"An act to amend Section 155 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Section 120917 of the Health and Safety Code, relating to public health, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to add Section 633.8 to the Penal Code, relating to interception of communications.\",Technology and Communication\r\n\"An act to add Section 709 to the Welfare and Institutions Code, relating to minors.\",Health\r\n\"An act to amend Sections 871.5, 872, 873, and 878 of the Public Utilities Code, relating to telecommunications.\",Technology and Communication\r\n\"An act relating to public resources, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Sections 611, 613, and 1209 of the Code of Civil Procedure, and to amend Sections 166, 1122, and 1128 of the Penal Code, relating to jurors.\",Judiciary\r\n\"An act to amend Sections 6221 and 6228 of the Penal Code, relating to restitution centers.\",Other\r\n\"An act to amend Sections 1596.616 and 1596.656 of the Health and Safety Code, relating to child care, and declaring the urgency thereof, to take effect immediately.\",Family and Children Issues\r\n\"An act to amend, repeal, and add Section 11834.02 of the Health and Safety Code, relating to alcoholism or drug abuse treatment.\",Public Services\r\n\"An act to add Section 3004.7 to the Fish and Game Code, relating to wildlife.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 25288 of the Health and Safety Code, relating to hazardous substances.\",Health\r\n\"An act to repeal and add Section 18663 of the Revenue and Taxation Code, relating to taxation, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\n\"An act to amend Section 8588 of the Government Code, relating to emergencies.\",Health\r\n\"An act to amend Section 6147 of the Business and Professions Code, relating to attorneys.\",Legal Issues\r\n\"An act to amend Section 22507.5 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 18961.5 of, and to add and repeal Section 18961.7 of, the Welfare and Institutions Code, relating to child abuse reporting.\",Family and Children Issues\r\n\"An act to repeal and add Chapter 7 (commencing with Section 119300) of Part 15 of Division 104 of the Health and Safety Code, relating to body art.\",Health\r\n\"An act to add Section 25405.8 to the Public Resources Code, relating to energy.\",Energy\r\n\"An act to amend Section 5007.5 of the Penal Code, relating to inmates.\",Health\r\n\"An act to add Section 5023.1 to the Penal Code, relating to inmates.\",Health\r\n\"An act to amend Section 1170.9 of the Penal Code, and to amend Sections 5346, 5600.3, 5600.6, 5600.7, 5813.5, and 5814 of the Welfare and Institutions Code, relating to mental health.\",Senior Issues\r\n\"An act to amend Section 54.3 of the Civil Code, relating to disabled persons.\",Civil Liberties and Civil Rights\r\n\"An act to add Section 2923.2 to the Civil Code, relating to mortgages.\",Housing and Property\r\n\"An act to add Section 1616 to the Civil Code, relating to contracts.\",Labor and Employment\r\n\"An act to amend Section 5058 of the Penal Code, relating to corrections.\",State Agencies\r\n\"An act to amend Section 19819 of the Business and Professions Code, relating to gaming.\",Gambling and Gaming\r\n\"An act to amend Section 1700.6 of the Labor Code, relating to talent agencies.\",Labor and Employment\r\n\"An act to amend Section 54.25 of the Civil Code, relating to civil law.\",Legal Issues\r\n\"An act to amend Sections 1357.06 and 1357.51 of, and to add Article 11.7 (commencing with Section 1399.825) to Chapter 2.2 of Division 2 of, the Health and Safety Code, and to amend Sections 10198.7 and 10708 of, and to add Chapter 9.7 (commencing with Section 10950) to Part 2 of Division 2 of, the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Section 243.93 to the Penal Code, relating to battery.\",Crime\r\n\"An act to amend Section 1797.98b of the Health and Safety Code, relating to emergency medical care.\",Public Services\r\n\"An act to amend Section 12050 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Section 49024 of the Education Code, relating to school employees and volunteers.\",Education\r\n\"An act to add Section 23394.1 to, and to add Chapter 19 (commencing with Section 26000) to Division 9 of, the Business and Professions Code, to amend Sections 7597 and 68152 of the Government Code, to amend Sections 1596.795, 11014.5, 11054, 11357, 11364.5, 11370, 11470, 11488, 11532, 11703, 11705, 118880, 118885, 118890, 118895, 118900, 118905, 118915, 118925, and 118935 of, to add Division 10.3 (commencing with Section 11720) to, and to repeal Sections 11358, 11359, 11360, and 11485 of, the Health and Safety Code, to amend Section 6404.5 of the Labor Code, to amend Section 561 of the Public Utilities Code, to add Part 14.6 (commencing with Section 34001) to Division 2 of the Revenue and Taxation Code, to amend Sections 23222 and 40000.15 of the Vehicle Code, and to amend Sections 4138 and 18901.3 of the Welfare and Institutions Code, relating to marijuana.\",Legal Issues\r\n\"An act to amend Section 33333.6 of the Health and Safety Code, relating to redevelopment.\",Other\r\n\"An act to add Chapter 9 (commencing with Section 119420) to Part 15 of Division 104 of the Health and Safety Code, relating to flushable products.\",Business and Consumers\r\nAn act relating to public safety.,Public Services\r\n\"An act to add Section 1349.3 to the Health and Safety Code, and to amend Section 740 of, and to add Section 10112.7 to, the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 9143 of the Government Code, relating to the Legislature.\",Legislative Affairs\r\n\"An act to amend Sections 186.22, 186.33, 1170, 1170.1, 1170.3, 12021.5, 12022.2, and 12022.4 of the Penal Code, relating to sentencing.\",Crime\r\n\"An act to add Section 1463.011 to the Penal Code, relating to debt collection.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 60905 to the Education Code, relating to public school instruction.\",Education\r\n\"An act to amend, repeal, and add Section 35254 of the Education Code, relating to school district records.\",Education\r\n\"An act to amend Section 7071.6 of the Business and Professions Code, relating to contractors.\",Labor and Employment\r\n\"An act to add Section 11223 to the Health and Safety Code, relating to alcohol and drug abuse.\",Health\r\n\"An act to add Section 108 to the Labor Code, relating to labor standards.\",Labor and Employment\r\n\"An act to amend Sections 24012 and 24015 of the Food and Agricultural Code, relating to horses.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 1310 of the Probate Code, relating to probate.\",Legal Issues\r\n\"An act to amend Section 52124.3 of the Education Code, relating to class size.\",Education\r\n\"An act to amend Sections 52050.5, 52051, and 52051.5 of, and to add Section 52051.6 to, the Education Code, relating to educational performance accountability.\",Education\r\n\"An act to amend Section 12304.2 of the Welfare and Institutions Code, relating to in-home supportive services.\",Senior Issues\r\n\"An act to amend Section 457.1 of the Penal Code, relating to arson.\",Crime\r\n\"An act to amend Section 10608.26 of the Water Code, relating to water.\",Environmental\r\n\"An act to amend Sections 17052.12 and 23609 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 11011.24 to the Government Code, relating to state property, and making an appropriation therefor.\",State Agencies\r\n\"An act to amend Sections 2827 and 2827.8 of, and to repeal Section 2827.5 of, the Public Utilities Code, relating to electricity.\",Energy\r\n\"An act to add Section 6377 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to amend Sections 1502.1 and 2117.1 of the Corporations Code, relating to corporations.\",Business and Consumers\r\n\"An act to amend Section 1633.11 of the Civil Code, relating to electronic transactions.\",Technology and Communication\r\n\"An act to amend Sections 7003, 7006, 7006.5, 7010, 7010.5, 7051, 7052.5, 7054.3, 7054.4, 7054.7, and 7055 of, to add Section 7001.5 to, and to add Article 8 (commencing with Section 8365) to Chapter 2 of Part 3 of Division 8 of, the Health and Safety Code, relating to alkaline hydrolysis.\",Health\r\n\"An act to add and repeal Chapter 4.5 (commencing with Section 630.01) of Title 8 of Part 2 of the Code of Civil Procedure, relating to civil actions.\",Judiciary\r\n\"An act to amend Section 7071 of the Government Code, relating to enterprise zones.\",Commerce\r\n\"An act to amend Section 4581 of the Public Resources Code, relating to timber harvesting plans.\",Environmental\r\n\"An act to add Chapter 5 (commencing with Section 127640) to Part 2 of Division 107 of the Health and Safety Code, relating to public health.\",State Agencies\r\n\"An act to amend Sections 44010.5, 44012, 44014, 44014.2, 44014.5, 44015, 44024.5, 44036, 44052, 44055, and 44056 of, to add Sections 44001.1 and 44014.6 to, to repeal Sections 44050.5, 44051.5, 44053, and 44054 of, and to repeal and add Sections 44050 and 44051 of, the Health and Safety Code, relating to air pollution.\",Transportation\r\n\"An act to amend Section 16361 of the Probate Code, relating to the Uniform Principal and Income Act.\",Business and Consumers\r\n\"An act to amend Section 3003 of the Penal Code, relating to parole.\",Crime\r\n\"An act to amend Section 2954.8 of the Civil Code, relating to mortgages.\",Housing and Property\r\n\"An act to amend Section 4190 of, and to amend the heading of Article 14 (commencing with Section 4190) of Chapter 9 of Division 2 of, the Business and Professions Code, relating to pharmacy.\",Health\r\n\"An act to amend Sections 21100 and 21200 of, and to add Section 467.5 to, the Vehicle Code, relating to pedicabs.\",Transportation\r\n\"An act to amend Section 25782 of the Public Resources Code, relating to energy.\",Energy\r\n\"An act to amend Section 76140 of, and to add Section 76140.3 to, the Education Code, relating to community colleges.\",Education\r\n\"An act to amend Sections 33350, 51210.1, and 51210.2 of, and to add Section 51220.7 to, the Education Code, relating to physical education.\",Education\r\n\"An act to amend Sections 1366.20, 1366.21, 1366.22, and 1366.25 of the Health and Safety Code, and to amend Sections 10128.50, 10128.51, 10128.52, and 10128.55 of the Insurance Code, relating to health care coverage, and declaring the urgency thereof, to take effect immediately.\",Insurance\r\n\"An act to add Section 1798.825 to the Civil Code, relating to Internet transactions, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to amend, repeal, and add Section 124981 of, and to add Section 124982 to, the Health and Safety Code, relating to genetic counselors.\",Health\r\n\"An act to add Sections 66721.4, 66721.8, and 66739.6 to the Education Code, relating to postsecondary education.\",Education\r\n\"An act to add Section 4000.7 to the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 10752, 10753.2, 10753.5, and 10753.7 of the Water Code, relating to groundwater.\",Environmental\r\n\"An act to add Section 52052.3 to the Education Code, relating to academic performance.\",Education\r\n\"An act to add and repeal Article 1.5 (commencing with Section 8275) of Chapter 3.5 of Division 1 of Title 2 of the Government Code, relating to the California Constitution Revision Commission.\",Government Reform\r\n\"An act to amend Section 241 of the Education Code, relating to instructional materials.\",Social Issues\r\n\"An act to amend Section 977 of the Unemployment Insurance Code, relating to unemployment insurance.\",Labor and Employment\r\n\"An act to amend Section 276.1 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Section 910 of the Government Code, relating to government tort claims.\",Legal Issues\r\n\"An act to amend, add, and repeal Sections 25845, 38773.1, and 38773.5 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to add Section 66020.9 to the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to amend Section 236.1 of the Penal Code, relating to human trafficking.\",Family and Children Issues\r\n\"An act to amend Sections 47605 and 47607 of, and to repeal Section 47605.5 of, the Education Code, relating to charter schools.\",Education\r\n\"An act to amend Sections 830, 5328, 10850.1, 15610.55, 18951, and 18961.5 of, and to add Section 18961.6 to, the Welfare and Institutions Code, relating to public social services, and declaring the urgency thereof, to take effect immediately.\",Senior Issues\r\n\"An act to add and repeal Section 8449 of the Education Code, relating to child care and development services.\",Labor and Employment\r\n\"An act to amend Section 5056.5 of the Penal Code, relating to the Department of Corrections and Rehabilitation Reentry Advisory Committee.\",Other\r\n\"An act to add Division 4 (commencing with Section 13900) to the Insurance Code, relating to risk pools.\",Housing and Property\r\n\"An act to amend Section 14032 of, and to add Section 14033 to, the Elections Code, relating to elections, and declaring the urgency thereof, to take effect immediately.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 7145.5 of the Business and Professions Code, relating to contractors.\",Labor and Employment\r\n\"An act to add Section 1202.9 to the Penal Code, relating to inmates.\",Municipal and County Issues\r\n\"An act to add Section 41055 to, and to add and repeal Section 41054 of, the Education Code, relating to education finance.\",Education\r\n\"An act to add Section 85308.5 to the Water Code, relating to the Delta.\",Other\r\n\"An act to add Section 7513.75 to the Government Code, relating to investments.\",Senior Issues\r\n\"An act to amend Section 38026 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 11167 of the Penal Code, relating to child abuse reporting.\",Family and Children Issues\r\n\"An act to add Section 16523 to the Welfare and Institutions Code, relating to foster youth.\",Family and Children Issues\r\n\"An act to amend Section 1351 of the Civil Code, relating to common interest developments.\",Other\r\n\"An act to amend Section 2786 of the Business and Professions Code, relating to nursing.\",Education\r\n\"An act to amend Section 11011 of the Government Code, relating to state property.\",Housing and Property\r\n\"An act to amend, repeal, and add Section 2924f of the Civil Code, relating to mortgage defaults.\",Housing and Property\r\n\"An act to add and repeal Section 26840.14 of the Government Code, to add and repeal Section 103628.3 of the Health and Safety Code, and to add and repeal Section 18309.8 of the Welfare and Institutions Code, relating to domestic violence.\",Family and Children Issues\r\n\"An act to amend Section 14206 of, and to add Section 14021 to, the Unemployment Insurance Code, relating to workforce development.\",Labor and Employment\r\n\"An act to amend Section 1317.1 of, and to add Section 1317.4a to, the Health and Safety Code, relating to emergency services.\",Public Services\r\n\"An act to amend Section 207 of the Welfare and Institutions Code, relating to juveniles.\",Family and Children Issues\r\n\"An act to amend Sections 4652 and 4799.13 of the Public Resources Code, relating to forest resources.\",Environmental\r\n\"An act to add Section 14132.70 to the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to add Section 66908.5 to the Government Code, and to amend Sections 31108, 33208, and 33350 of, and to add Sections 32351, 32539, 32573.5, 32604.5, 32638.5, and 33510 to, the Public Resources Code, relating to conservancies.\",Environmental\r\nAn act relating to public health.,Health\r\n\"An act to amend Section 14661 of the Government Code, and to repeal Section 4 of Chapter 252 of the Statutes of 1998, relating to public works.\",Public Services\r\n\"An act to add Section 5006.10 to the Public Resources Code, relating to state parks.\",Environmental\r\n\"An act to amend Section 84211 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 12061, 12077, 12318, and 12323 of the Penal Code, relating to ammunition.\",Guns\r\n\"An act to amend Section 46141 of the Education Code, relating to public school instruction.\",Education\r\n\"An act to amend Sections 2051 and 2067 of the Labor Code, relating to car washes.\",Labor and Employment\r\n\"An act to amend Section 4799.13 of the Public Resources Code, relating to forest resources.\",Environmental\r\n\"An act to amend Section 12246 of the Business and Professions Code, relating to weights and measures.\",Legal Issues\r\n\"An act to amend Section 47605 of the Education Code, relating to charter schools.\",Education\r\n\"An act to amend Sections 1030, 1032, 1256, 1329, 1329.1, 1537, and 3011 of, and to repeal Division 5 (commencing with Section 12100) of, the Unemployment Insurance Code, relating to unemployment insurance, and making an appropriation therefor.\",Labor and Employment\r\n\"An act to amend Sections 401, 402, 404, 405, 406, 407, 408, 409.1, 409.3, and 409.4 of, and to add Sections 409.14, 812, and 829 to, the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Sections 42238, 42238.485, and 42241.2 of the Education Code, relating to education finance.\",Education\r\n\"An act to amend Section 923 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Section 86203 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 3103.5 of, and to amend and repeal Sections 3102 and 3103 of, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 48306 and 48307 of, and to add Section 48311.5 to, the Education Code, relating to school districts.\",Education\r\n\"An act to add Section 12172.8 to the Government Code, relating to the Secretary of State.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 487 of the Penal Code, relating to crimes.\",Crime\r\n\"An act to amend Section 19870 of the Health and Safety Code, relating to building standards.\",Housing and Property\r\n\"An act to amend Section 12315 of the Welfare and Institutions Code, relating to public social services.\",Senior Issues\r\n\"An act to add Section 12805.3 to the Government Code, relating to fish and wildlife.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 50825 of the Health and Safety Code, relating to community development.\",Housing and Property\r\n\"An act to amend Section 25741 to the Public Resources Code, relating to energy.\",Energy\r\n\"An act to amend Section 25244.17.1 of the Health and Safety Code, relating to environmental protection.\",Environmental\r\n\"An act to amend Section 399.11 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Section 11166 of the Penal Code, relating to child abuse.\",Family and Children Issues\r\n\"An act to amend Section 54954 of the Government Code, relating to open meetings.\",Municipal and County Issues\r\n\"An act to add Article 4.7 (commencing with Section 66042) to Chapter 2 of Part 40 of Division 5 of Title 3 of, and to repeal Section 66042.3 of, of the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to add Section 13450 to the Government Code, relating to bonds.\",Commerce\r\n\"An act to amend Sections 830.2 and 830.5 of the Penal Code, relating to peace officers.\",Public Services\r\n\"An act to add and repeal Section 714 of the Business and Professions Code, relating to the Armed Forces.\",Military\r\n\"An act to amend Section 4011.10 of the Penal Code, relating to county jails.\",Health\r\n\"An act to amend Section 25205.16 of the Health and Safety Code, relating to hazardous waste.\",Environmental\r\n\"An act to amend Sections 44253.3, 44325, 44326, 44328, 44398, 44399, and 44830.3 of, and to repeal Sections 44329 and 44329.5 of, the Education Code, relating to teacher credentialing.\",Education\r\n\"An act to amend Sections 2933, 2933.3, and 2933.6 of the Penal Code, relating to parole.\",Crime\r\n\"An act to amend Sections 262, 262.2, 262.4, 687.010, 699.060, 699.510, 699.520, 699.560, 701.030, 701.660, 706.026, 706.101, 712.020, and 1993 of, and to add Chapter 2 (commencing with Section 263) to Title 4 of Part 1 of, the Code of Civil Procedure, relating to civil procedure.\",Other\r\n\"An act to amend Section 12921.3 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to add Chapter 20 (commencing with Section 42970) to Part 3 of Division 30 of, and to repeal Section 42980 of, the Public Resources Code, relating to recycling.\",Business and Consumers\r\n\"An act to amend Section 13802 of the Health and Safety Code, relating to fire protection districts.\",Public Services\r\n\"An act to add Section 89013 to the Education Code, relating to the California State University.\",Education\r\n\"An act to amend Sections 2 and 3 of Chapter 188 of the Statutes of 1999, relating to conveyances.\",Environmental\r\n\"An act to add Article 3 (commencing with Section 78040) to Chapter 1 of Part 48 of Division 7 of Title 3 of the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to amend Section 66202 of the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to add Section 89030.5 to the Education Code, relating to the California State University.\",Education\r\n\"An act to amend Sections 481 and 730 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Section 12990 of the Water Code, relating to water.\",Environmental\r\n\"An act to amend Section 13200 of the Water Code, relating to the California regional water quality control boards.\",Environmental\r\n\"to repeal Section 11549.2 of, and to repeal Chapter 9 (commencing with Section 14930) of Part 5.5 of Division 3 of Title 2 of, the Government Code, to amend Sections 12100.7, 12101, 12103, 12104, 12105, 12120, and 12121 of the Public Contract Code, to amend Sections 2872.5, 2892, and 2892.1 of the Public Utilities Code, to amend Sections 41030, 41031, 41032, 41136.1, 41137, 41137.1, 41138, 41139, 41140, 41141, and 41142 of the Revenue and Taxation Code, and to amend Section 16501.7 of the Welfare and Institutions Code, relating to state government information technology.\",State Agencies\r\n\"An act to amend Section 13879.80 of the Penal Code, relating to child abuse.\",Family and Children Issues\r\n\"An act to amend Section 120 of, and to add Part 9 (commencing with Section 12880) to Division 2 of, the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Section 37222 of, to add Sections 37222.10, 37222.11, 37222.12, 37222.13, 37222.14, and 37222.16 to, and to repeal Section 37222.5 of, the Education Code, and to add Section 6723 to the Government Code, relating to Ronald Reagan Day.\",Resolutions\r\n\"An act to amend Section 193 of the Penal Code, relating to crimes.\",Crime\r\n\"An act to amend Section 3047 of the Family Code, relating to child custody.\",Military\r\n\"An act to amend Section 224.1 of the Welfare and Institutions Code, relating to Indian children.\",Family and Children Issues\r\n\"Sections 19825 and 25284.1 of the Health and Safety Code, to amend Sections 98.9, 3099, 3099.2, and 6652 of the Labor Code, to amend Sections 396 and 830.3 of the Penal Code, to amend Sections 6100, 6805, 10262, 10762, 20103.5, 20175.2, 20193, 20209.7, 20688.6, 20919.4, and 22010 of the Public Contract Code, to amend Section 327 of the Public Utilities Code, to amend Section 143 of the Streets and Highways Code, and to amend Section 1095 of the Unemployment Insurance Code, relating to contractors.\",Labor and Employment\r\n\"An act to amend Section 597.5 of the Penal Code, relating to crimes.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 2080.1 of the Fish and Game Code, relating to protected species.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 12670.14 of the Water Code, relating to water resources.\",Environmental\r\n\"An act to add Section 65596.5 to the Government Code, and to add Section 10631.8 to the Water Code, relating to water conservation.\",Public Services\r\n\"An act to amend Sections 201 and 202 of, and to repeal Section 201.7 of, the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Section 65584.9 to the Government Code, relating to land use.\",Housing and Property\r\n\"An act to amend Sections 200 and 703 of the Fish and Game Code, relating to game hunting.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 67345.1 of the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to amend Section 597.1 of, and to add Section 597.9 to, the Penal Code, relating to animal abuse.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 19020 of the Welfare and Institutions Code, relating to blind individuals.\",State Agencies\r\n\"An act to amend Section 399.11 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Section 1095 of the Unemployment Insurance Code, relating to unemployment insurance.\",Labor and Employment\r\n\"An act to amend Section 52240 of, and to add Section 52245 to, the Education Code, relating to pupil instruction.\",Education\r\n\"An act to amend Sections 28, 2915.5, 2915.7, 4980.37, 4980.39, 4980.43, 4996.25, 4996.26, 4999.32, and 4999.33 of the Business and Professions Code, relating to elder and dependent adult abuse.\",Senior Issues\r\nAn act relating to county employees retirement.,Senior Issues\r\n\"An act to amend Sections 91502, 91503, 91504, and 91558 of, and to add Article 6 (commencing with Section 91600) to Chapter 1 of Title 10 of, the Government Code, relating to economic development.\",Commerce\r\n\"An act to amend Section 798.23.5 of the Civil Code, relating to mobilehome parks.\",Housing and Property\r\n\"An act to add Section 22856 to the Government Code, to add Section 1374.74 to the Health and Safety Code, and to add Section 10144.8 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 75.21 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Section 99501 of, to add the heading of Chapter 1 (commencing with Section 99500) to, and to add Chapter 2 (commencing with Section 99530) to, Title 20 of, the Government Code, relating to state government.\",State Agencies\r\n\"An act to amend Section 46600 of the Education Code, relating to school districts.\",Education\r\n\"An act to add and repeal Section 52372.7 of the Education Code, relating to career technical education.\",Social Issues\r\n\"An act to amend, repeal, and add Section 51225.3 of the Education Code, relating to graduation requirements.\",Education\r\n\"An act to amend Sections 66021.2 and 69435 of the Education Code, relating to student financial aid.\",Education\r\n\"An act to amend Section 20659 of, and to add and repeal Section 20651.7 of, the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to add Section 2027.1 to the Business and Professions Code, relating to physicians and surgeons.\",Health\r\n\"An act to amend Section 88550 of the Education Code, relating to community colleges.\",Education\r\n\"An act to amend Sections 3225, 3236.5, 3743, and 3744 of, to add Section 3763 to, and to repeal and add Sections 3350, 3351, 3352, 3353, 3354, 3355, 3356, 3762, 3764, 3765, 3766, 3767, and 3768 of, the Public Resources Code, relating to oil and gas.\",Energy\r\n\"An act to amend Sections 800 and 811 of the Military and Veterans Code, relating to military benefits.\",Military\r\n\"An act to amend Sections 1797.184 and 1797.200 of the Health and Safety Code, relating to emergency medical services.\",Public Services\r\n\"An act to add Division 22 (commencing with Section 70000) to the Financial Code, relating to financial literacy.\",Commerce\r\n\"An act to add Section 11376.5 to the Health and Safety Code, relating to controlled substances.\",Legal Issues\r\n\"An act to amend Sections 4750.1 and 9565 of the Vehicle Code, relating to vehicles.\",Transportation\r\nAn act relating to school attendance.,Education\r\n\"An act to amend Sections 8210, 8211, 8212, 8214, 8215, and 8216 of, to add Sections 8212.5, 8215.5, and 8218 to, and to repeal Section 8212.3 of, the Education Code, relating to child care and development services.\",Family and Children Issues\r\n\"An act to amend Sections 12509 and 12814.6 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 14718 to the Government Code, relating to pest management.\",State Agencies\r\n\"An act to amend Sections 11343.4 and 11349.3 of, and to add Section 11349.35 to, the Government Code, relating to regulations.\",Legal Issues\r\n\"An act to amend Sections 3006, 3007.5, and 3205 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Section 1034 to the Labor Code, relating to lactation accommodation.\",Labor and Employment\r\n\"An act to add Section 39615 to the Health and Safety Code, relating to air pollution.\",State Agencies\r\n\"An act to amend Section 11170 of the Penal Code, relating to child abuse.\",Family and Children Issues\r\n\"An act to amend Sections 1365, 1367.01, 1367.15, 1368, 1389.21, and 1389.3 of, and to repeal Sections 1357.11, 1357.53, and 1357.54 of, the Health and Safety Code, and to amend Sections 10123.135, 10273.4, 10273.6, 10384.17, and 10713 of, and to add Section 10273.7 to, the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 8164 of, and to add Section 8163.9 to, the Government Code, relating to state government.\",Other\r\n\"An act to amend Section 1506 of, and to add and repeal Section 1506.3 of, the Health and Safety Code, relating to community care facilities.\",Family and Children Issues\r\n\"An act to amend Sections 7072 and 7072.5 of the Government Code, relating to enterprise zones.\",Commerce\r\n\"An act to repeal and amend Section 14005.25 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Section 1708.8 of the Civil Code, and to amend Section 23103 of, and to add Section 40008 to, the Vehicle Code, relating to stalking.\",Legal Issues\r\n\"An act to amend Section 71205 of, and to amend the heading of Division 36 (commencing with Section 71200) of, the Public Resources Code, relating to ballast water management.\",Public Services\r\n\"An act to amend Section 7302 of the Business and Professions Code, relating to barbering and cosmetology.\",Other\r\n\"An act to add Section 70901.3 to the Education Code, relating to community colleges.\",Education\r\n\"An act to amend Sections 4, 26.5, and 26.7 of, to add Section 29 to, and to repeal Section 26.6 of, the Santa Clara Valley Water District Act (Chapter 1405 of the Statutes of 1951), relating to the Santa Clara Valley Water District.\",Environmental\r\n\"An act to amend Sections 2895 and 4548 of the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to amend Section 1714 of the Civil Code, relating to social host liability.\",Crime\r\n\"An act to amend Section 170.1 of the Code of Civil Procedure, relating to judges.\",Judiciary\r\n\"An act to amend Sections 81305, 81337, 81422, 81460, 81608.5, and 81630 of, and to add Section 81423 to, the Water Code, relating to water.\",Municipal and County Issues\r\n\"An act to amend Section 21960 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 1289.4 of the Health and Safety Code, relating to health facilities.\",Health\r\n\"An act to add Section 3041 to the Civil Code, relating to medical liens.\",Health\r\n\"An act to amend Sections 64, 480.1, 480.2, and 482 of, and to add Section 480.8 to, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to add Section 19135 to the Government Code, relating to personal services contracts.\",Labor and Employment\r\n\"An act to amend Section 334 of the Public Utilities Code, relating to electricity.\",Energy\r\n\"An act to amend Sections 22979, 22980, and 22980.1 of the Business and Professions Code, to add Section 104557.1 to the Health and Safety Code, to amend Section 308.1 of the Penal Code, and to amend Sections 30101.7 and 30165.1 of, and to add Section 30165.2 to, the Revenue and Taxation Code, relating to tobacco products.\",Health\r\n\"An act to amend Section 7508 of the Public Utilities Code, relating to railroad corporations.\",Transportation\r\n\"An act to amend Section 1382 of the Penal Code, relating to criminal procedure.\",Judiciary\r\n\"An act to amend Sections 32280, 32281, 32282, 32285, and 32286 of, to add Sections 32286.1, 32287.1, 32289.1 to, to repeal Section 32289 of, and to repeal and add Section 32288 of, the Education Code, relating to public schools.\",Education\r\n\"An act to amend Section 10980 of the Welfare and Institutions Code, relating to public social services.\",Labor and Employment\r\n\"An act to amend Section 116275 of, to add Section 116331 to, and to add Article 12 (commencing with Section 116755) to Chapter 4 of Part 12 of Division 104 of, the Health and Safety Code, relating to drinking water.\",Environmental\r\n\"An act to amend Section 65460.2 of the Government Code, relating to transit facilities.\",Transportation\r\n\"An act to amend Section 130051 of the Public Utilities Code, relating to transportation.\",Transportation\r\n\"An act to amend Section 39602.5 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 9620 of, and to add Chapter 7.7 (commencing with Section 2835) to Part 2 of Division 1 of, the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Section 116380 of, and to add and repeal Section 116761.25 of, the Health and Safety Code, relating to drinking water, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Section 15152 of the Government Code, relating to state government.\",State Agencies\r\n\"An act to amend Section 16727 of, and to add Section 63037 to, the Government Code, relating to economic development, and making an appropriation therefor.\",Commerce\r\n\"An act to amend Section 2827 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to add Section 2417.5 to the Business and Professions Code, relating to the practice of medicine.\",Health\r\n\"An act to add Section 14533.1 to the Government Code, relating to transportation.\",Transportation\r\n\"An act to amend Section 77206 of the Government Code, relating to courts.\",Judiciary\r\n\"An act to amend, repeal, and add Section 9004 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Section 6377.2 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\nAn act relating to taxation.,Housing and Property\r\n\"An act to amend Section 9007 of the Elections Code, relating to ballot measures.\",Campaign Finance and Election Issues\r\n\"An act to add Sections 17071.5 and 24304 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Transportation\r\n\"An act to add and repeal Section 11346.35 of the Government Code, relating to regulations.\",State Agencies\r\nAn act relating to career technical education.,Labor and Employment\r\n\"An act to add and repeal Section 33131.5 of, and to add and repeal Article 10.5 (commencing with Section 33427) of Chapter 4 of Part 1 of Division 24 of, the Health and Safety Code, relating to redevelopment.\",Commerce\r\n\"An act to amend Sections 1793.22 and 1793.23 of the Civil Code, relating to consumer warranties.\",Business and Consumers\r\n\"An act to amend Section 1367.02 of the Health and Safety Code, and to amend Section 10123.36 of the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Section 38573 to the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Sections 10089.11 and 10089.16 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Section 11425.40 of the Government Code, relating to state agencies.\",State Agencies\r\n\"An act to amend Sections 1755, 1757, 2124, 2626, and 2629 of, and to add Section 1755.1 to, the Unemployment Insurance Code, relating to unemployment insurance.\",Labor and Employment\r\nAn act relating to taxation.,Health\r\n\"An act to amend Sections 120130, 121022, and 121025 of the Health and Safety Code, relating to public health.\",Health\r\n\"An act to add Article 7 (commencing with Section 72700) to Chapter 6 of Part 45 of Division 7 of Title 3 of the Education Code, relating to community colleges.\",Education\r\n\"An act to add Section 47607.1 to the Education Code, relating to charter schools.\",Education\r\n\"An act to amend Section 34501.2 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 12132 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Sections 11165 and 11165.1 of, and to add Sections 11165.2 and 11165.3 to, the Health and Safety Code, relating to controlled substances.\",Health\r\n\"An act to amend Section 11011.11 of the Government Code, relating to surplus state property.\",Housing and Property\r\n\"An act to add Chapter 22.3 (commencing with Section 22585) to Division 8 of the Business and Professions Code, relating to Internet security.\",Technology and Communication\r\n\"An act to amend Section 11503 of the Public Utilities Code, relating to public utilities.\",Public Services\r\n\"An act to amend Sections 15268 and 15270 of, and to add Section 15151 to, the Education Code, relating to education finance.\",Education\r\n\"An act to amend Sections 2 and 16 of the Los Angeles County Flood Control Act (Chapter 755 of the Statutes of 1915), relating to the Los Angeles County Flood Control District.\",Public Services\r\n\"An act relating to aging, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to add Section 820.27 to the Government Code, relating to liability.\",Health\r\n\"An act to amend Section 20160 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend Section 1798.17 of, and to add Section 1798.87 to, the Civil Code, relating to information practices.\",Public Services\r\n\"An act to amend Section 25503.5 of the Health and Safety Code, relating to hazardous materials.\",Environmental\r\n\"An act to add Section 12001.6 to the Education Code, relating to education finance, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"345.1, 345.2, and 411 to, to repeal Sections 346, 350, 360, and 365 of, to repeal Article 2 (commencing with Section 334) of Chapter 2.3 of Part 1 of Division 1 of, and to repeal Division 1.5 (commencing with Section 3300) of, the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Sections 25420 and 25421 of the Health and Safety Code, relating to hazardous materials.\",Environmental\r\nAn act relating to construction inspectors.,Other\r\n\"An act to amend Section 21089 of the Public Resources Code, relating to the environment.\",Environmental\r\n\"An act to add Section 2417.5 to the Business and Professions Code, relating to the practice of medicine.\",Health\r\n\"An act to amend Section 40207 of, and to add and repeal Article 3.6 (commencing with Section 40245) of Chapter 1 of Division 17 of, the Vehicle Code, relating to vehicles.\",Transportation\r\nAn act relating to intellectual property.,Legal Issues\r\n\"An act to amend Section 33020 of the Health and Safety Code, relating to housing and community development.\",Housing and Property\r\n\"An act to amend Sections 5360, 5373.1, 5374, 5374.5, 5378, 5378.6, 5385, 5392, and 5411.5 of the Public Utilities Code, relating to charter-party carriers of passengers.\",Transportation\r\n\"An act to amend Section 69.5 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Section 1727 of the Health and Safety Code, relating to home health agencies.\",Housing and Property\r\n\"An act to add Article 5.5 (commencing with Section 4564) to Chapter 8 of Part 2 of Division 4 of the Public Resources Code, relating to resources.\",Environmental\r\n\"An act to add Section 13004.2 to the Unemployment Insurance Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 1386 of, and to add Article 6.2 (commencing with Section 1385.01) to Chapter 2.2 of Division 2 of, the Health and Safety Code, and to add Article 4.5 (commencing with Section 10181) to Chapter 1 of Part 2 of Division 2 of the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Title 18.2 (commencing with Section 99090) to the Government Code, relating to infrastructure financing and development.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 836 of the Penal Code, relating to domestic violence.\",Social Issues\r\n\"An act to add Section 834.1 to the Penal Code, relating to felonies.\",Crime\r\n\"An act to add Division 18 (commencing with Section 40000) to the Financial Code, relating to banking development districts.\",Commerce\r\n\"An act to amend Section 1203.4a of the Penal Code, relating to criminal procedure.\",Legal Issues\r\n\"An act to add Sections 45266.5 and 88026.25 to the Education Code, relating to school district employees.\",Education\r\n\"An act to amend Section 10140 of the Public Contract Code, relating to public contracts.\",Legislative Affairs\r\n\"An act to amend Sections 1367.26 and 1380 of, and to add Section 1373.68 to, the Health and Safety Code, and to add Sections 10133.35 and 10133.4 to, and to repeal Section 10133.1 of, the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Section 1367.001 to the Health and Safety Code, and to add Section 10112.55 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to repeal and add Section 1781 of the Civil Code, and to add Section 383 to, and to repeal and add Section 382 of, the Code of Civil Procedure, relating to civil actions.\",Legislative Affairs\r\n\"An act to amend Section 13337 of, and to add Sections 9143.5, 9145, 10247.5, 13335.3, and 13335.5 to, the Government Code, relating to state finance.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 990 to the Civil Code, relating to copyrights.\",Other\r\n\"An act to amend Section 19876 of, and to add Section 19955 to, the Business and Professions Code, relating to gambling.\",Gambling and Gaming\r\n\"An act to amend Section 11713.3 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 6315 to the Public Resources Code, relating to tidelands and submerged lands.\",Environmental\r\n\"An act to add Article 5.15 (commencing with Section 14165.50) to Chapter 7 of Part 3 of Division 9 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to add Chapter 2.3 (commencing with Section 2030) to Part 1 of Division 2 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend Section 10177 of the Business and Professions Code, to add Section 2923.1 to the Civil Code, and to amend Section 50505 of, to add Sections 1242, 14961, and 22346 to, and to add Division 1.9 (commencing with Section 4995) to, the Financial Code, relating to lending.\",Commerce\r\n\"An act to amend Section 8589.19 of, and to add Section 8589.24 to, the Government Code, relating to firefighting, and making an appropriation therefor.\",Public Services\r\nAn act to relating to community colleges.,Education\r\n\"An act to amend Section 8544.5 of, and to add and repeal Article 9.5 (commencing with Section 11362) of Chapter 3.5 of Part 1 of Division 3 of Title 2 of, the Government Code, relating to administrative regulations.\",Other\r\n\"An act to amend Section 12140 of the Unemployment Insurance Code, relating to unemployment insurance.\",Labor and Employment\r\n\"An act to amend Section 2070 of the Insurance Code, relating to insurance.\",Insurance\r\nAn act relating to pests.,Agriculture and Food\r\n\"An act to amend Section 22877 of the Government Code, relating to the Rural Health Care Equity Program.\",Health\r\n\"An act to amend Sections 12071 and 12807 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Sections 49076 and 49076.5 of the Education Code, relating to pupil records.\",Education\r\n\"An act to amend Section 8754 of the Government Code, relating to state government.\",Arts and Humanities\r\n\"An act to amend Section 25214.10.1 of the Health and Safety Code, and to amend Section 42463 of the Public Resources Code, relating to recycling.\",Environmental\r\n\"An act to amend Section 53069.4 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to add and repeal Chapter 5.10 (commencing with Section 25499) of Division 15 of the Public Resources Code, relating to energy.\",Energy\r\n\"An act to amend Section 35550 of, and to add Section 35618 to, the Public Resources Code, relating to ocean resources.\",Agriculture and Food\r\n\"An act to amend Section 3017 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Sections 17053.81 and 23625 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 27297.7 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to amend Section 25450 of the Public Resources Code, relating to energy, and making an appropriation therefor.\",Energy\r\n\"An act to repeal Section 45103.1 of the Education Code, relating to school districts.\",Education\r\n\"An act to add Section 85322 to the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 2131 of the Elections Code, relating to voter education.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 10115.1, 10115.4, 10115.10, and 10115.15 of the Public Contract Code, relating to state contracts.\",State Agencies\r\n\"An act to amend Sections 14202, 14203, 14204, 14205, 14221, and 14230 of, and to add Section 14013.5 to, the Unemployment Insurance Code, relating to workforce development.\",Labor and Employment\r\n\"An act to amend Sections 1507.3, 1566.45, and 1568.0832 of the Health and Safety Code, relating to health facilities.\",Housing and Property\r\n\"An act to add and repeal Section 130246 of the Public Utilities Code, relating to transportation.\",Transportation\r\n\"An act to repeal and amend Sections 17053.80 and 23623 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Labor and Employment\r\n\"An act to add Section 653.65 to the Penal Code, relating to law enforcement.\",Labor and Employment\r\n\"An act to amend Section 166 of the Penal Code, relating to contempt of court.\",Judiciary\r\n\"An act to amend Section 7074.2 of the Government Code, relating to enterprise zones.\",Commerce\r\n\"An act to amend Section 121060 of the Health and Safety Code, relating to communicable disease.\",Health\r\n\"An act to amend Section 7074.2 of the Government Code, relating to enterprise zones.\",Commerce\r\n\"An act to add and repeal Section 1171.6 of the Harbors and Navigation Code, relating to bay pilots.\",Environmental\r\n\"An act to amend Section 19066.5 of the Revenue and Taxation Code, relating to taxation.\",Business and Consumers\r\n\"An act to amend Section 998 of the Government Code, relating to the Lake Davis Northern Pike Eradication Project.\",Environmental\r\n\"An act to amend Section 37222 of the Education Code, and to add Section 6715 to the Government Code, relating to state observances.\",Military\r\n\"An act to amend Section 3020 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 38570 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 5912 of the Welfare and Institutions Code, relating to mental health, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Sections 4150 and 4453 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 21531 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend Section 104162.2 of the Health and Safety Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Section 31 of the Business and Professions Code, and to add Sections 19265 and 19571 to the Revenue and Taxation Code, relating to taxes.\",Business and Consumers\r\n\"An act to amend Section 3003 of the Government Code, relating to forfeiture of office.\",Campaign Finance and Election Issues\r\n\"An act to add Section 11362.768 to the Health and Safety Code, relating to medical marijuana.\",Health\r\n\"An act to add Section 9026.2 to the Government Code, relating to regulations.\",Legislative Affairs\r\n\"An act to amend Section 17533.6 of the Business and Professions Code, relating to solicitations.\",Legal Issues\r\n\"An act to add Chapter 2.5 (commencing with Section 13987) to Part 4.5 of Division 3 of Title 2 of the Government Code, relating to transportation.\",Transportation\r\n\"An act to add Part 14 (commencing with Section 15987) to Division 3 of Title 2 of the Government Code, relating to business licensing.\",Business and Consumers\r\n\"An act to add Section 14537 to the Government Code, relating to transportation.\",Transportation\r\n\"An act to add Section 5080.42 to the Public Resources Code, relating to state parks, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to add Section 217 to the Military and Veterans Code, relating to mental health.\",Military\r\n\"An act to add Section 769 to the Public Utilities Code, relating to electricity.\",Energy\r\n\"An act to add Article 7.1 (commencing with Section 53834) to Chapter 4 of Part 1 of Division 2 of Title 5 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to add Sections 6224.3, 6224.4, and 6224.5 to the Public Resources Code, relating to public lands.\",Environmental\r\n\"An act to add and repeal Sections 17053.88 and 23688 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Energy\r\n\"An act to amend Sections 116450 and 116761.23 of the Health and Safety Code, relating to drinking water.\",Environmental\r\n\"An act to amend Section 50079 of, to amend and renumber Section 50079.1 of, and to add Section 50079.3 to, the Government Code, relating to taxation.\",Education\r\n\"An act to add Article 4 (commencing with Section 8195) to Chapter 2.8 of Division 1 of Title 2 of the Government Code, relating to the State Capitol Sustainability Task Force.\",State Agencies\r\n\"An act to amend Section 3000.03 of the Penal Code, relating to parole.\",Crime\r\n\"An act to amend Sections 782.5 and 4324 of the Family Code, relating to family law.\",Legal Issues\r\n\"An act to amend, repeal, and add Section 1268.6 of the Health and Safety Code, relating to health facilities.\",Health\r\n\"An act to amend Section 2924g of, and to repeal and amend Section 2924 of, the Civil Code, relating to mortgages.\",Housing and Property\r\n\"An act to repeal Chapter 4.5 (commencing with Section 13290) of Division 7 of the Water Code, relating to water quality.\",Public Services\r\n\"An act to amend Section 728 of the Public Utilities Code, relating to public utilities.\",Public Services\r\n\"An act to amend Section 38570 of the Health and Safety Code, relating to greenhouse gases.\",Environmental\r\n\"An act to amend Sections 2544, 2553.6, 2559.4, and 2564 of, and to add Section 3070.1 to, the Business and Professions Code, relating to optometry.\",Health\r\n\"An act to add and repeal Sections 17057.6, 17057.7, 23670, and 23671 of, the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 7110 of the Corporations Code, relating to nonprofit corporations.\",Other\r\n\"An act to amend Section 121690 of the Health and Safety Code, relating to public health, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Sections 38594 and 38598 of, and to add Section 38598.5 to, the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to add Section 14022.2 to the Corporations Code, relating to small business.\",Business and Consumers\r\n\"An act to amend Section 2830 of the Public Utilities Code, relating to energy.\",Municipal and County Issues\r\n\"An act to amend Section 60010 of, and to add Section 60052 to, the Education Code, relating to instructional materials.\",Other\r\n\"An act to add Chapter 27 (commencing with Section 79401) to Part 2 of Division 22 of the Food and Agricultural Code, relating to agriculture, and making an appropriation therefor.\",Other\r\n\"An act to amend Sections 15002 and 15003 of the Unemployment Insurance Code, relating to workforce investment.\",Labor and Employment\r\n\"An act to add Section 87406.5 to the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 10618.6 of the Welfare and Institutions Code, relating to public social services.\",Family and Children Issues\r\n\"An act to amend Section 451.5 of the Penal Code, relating to arson.\",Crime\r\n\"An act to amend Section 391 of the Welfare and Institutions Code, relating to dependent children.\",Family and Children Issues\r\n\"An act to amend Sections 299 and 2010 of the Family Code, relating to domestic partner registration.\",Family and Children Issues\r\n\"An act to add Section 18955.5 to the Health and Safety Code, relating to the State Historical Building Code.\",Recreation\r\n\"An act to amend Section 4646.4 of, and to add Section 4646.7 to, the Welfare and Institutions Code, relating to developmental services.\",Other\r\nAn act relating to transportation.,Transportation\r\n\"An act to amend Sections 8482.3, 8483.3, 51210, and 51222 of the Education Code, relating to physical education.\",Education\r\n\"An act to amend Section 51.7 of the Civil Code, relating to civil rights.\",Civil Liberties and Civil Rights\r\n\"An act to amend Section 101 of the Business and Professions Code, relating to regulatory boards.\",State Agencies\r\n\"An act to add Sections 14838.8 and 14838.9 to the Government Code, relating to public contracts.\",State Agencies\r\n\"An act to amend Sections 50952, 50953, 51050, 51051, 51055, 51059, and 51065 of the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to amend Sections 9801, 9802.5, and 9808 of the Unemployment Insurance Code, relating to employment development.\",Family and Children Issues\r\n\"An act to amend Section 33333.6 of the Health and Safety Code, relating to redevelopment.\",Housing and Property\r\n\"An act to amend Section 7074.2 of the Government Code, relating to enterprise zones.\",Commerce\r\n\"An act to amend Section 21080 of the Public Resources Code, relating to the environment.\",Environmental\r\n\"An act to amend Section 14021 of the Corporations Code, to add Chapter 2 (commencing with Section 13986) to Part 4.5 of Division 3 of Title 2 of, and to repeal Article 7 (commencing with Section 65054) of Chapter 1.5 of Division 1 of Title 7 of, the Government Code, relating to the Office of Small Business Advocate.\",State Agencies\r\nAn act relating to sentencing.,Judiciary\r\n\"An act to amend Sections 30525 and 30804.5 of the Food and Agricultural Code, and to amend Section 38792 of the Government Code, relating to dogs.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 14571.2 of, and to add Sections 14526.8 and 14571.6.5 to, the Public Resources Code, relating to recycling, and making an appropriation therefor.\",Environmental\r\n\"An act to add and repeal Sections 6245 and 6246 of the Public Resources Code, relating to oil and gas leases.\",Environmental\r\n\"An act to add and repeal Article 3 (commencing with Section 104660) of Chapter 2 of Part 3 of Division 103 of the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend Section 17010 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 130201 of the Health and Safety Code, relating to public health.\",Health\r\n\"An act to add Section 399.22 to, and to add and repeal Section 2853 of, the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Section 14230 of the Unemployment Insurance Code, relating to employment development.\",Labor and Employment\r\n\"An act to add Section 432.9 to the Labor Code, relating to applicant information.\",Labor and Employment\r\n\"An act to amend Section 21157.1 of the Public Resources Code, relating to the environment.\",Environmental\r\n\"An act to amend Section 19280 of the Revenue and Taxation Code, relating to courts.\",Judiciary\r\nAn act relating to taxation.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 10700 of, and to add Sections 10708, 10709, 10710, 10711, and 10712 to, the Elections Code, and to amend Section 1773 of the Government Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 22971 22973.1, 22977.2, 22979, 22980.2, and 22980.3 of, and to add Sections 22971.5, 22980.4, and 22980.5 to, the Business and Professions Code, relating to cigarette and tobacco products.\",Health\r\n\"An act to amend Section 15570 of, to add Chapter 1.6 (commencing with Section 12096) to Part 2 of Division 3 of Title 2 of, and to repeal Article 7 (commencing with Section 65054) of Chapter 1.5 of Division 1 of Title 7 of, the Government Code, relating to economic development.\",Commerce\r\n\"An act to add and repeal Section 62.3 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\nAn act relating to employment.,Labor and Employment\r\n\"An act to amend, add, and repeal Section 11346.2 of the Government Code, relating to regulations, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to amend Sections 48000 and 48001 of, to add Section 48001.5 to, and to add Article 2.1 (commencing with Section 48010) to Chapter 2 of Part 7 of Division 30 of, the Public Resources Code, and to amend Section 45901 of the Revenue and Taxation Code, relating to solid waste.\",Environmental\r\n\"An act to amend Section 3294 of, and to add Section 3333.8 to, the Civil Code, relating to civil damages.\",Legal Issues\r\n\"An act to amend Section 1795 of the Health and Safety Code, relating to care facilities.\",Health\r\nAn act relating to economic development.,Commerce\r\n\"An act to amend Section 11628 of the Insurance Code, relating to motor vehicle insurance.\",Transportation\r\n\"An act to add Section 5024.2 to the Penal Code, relating to prisoners.\",Health\r\n\"An act to amend Section 1266 of the Unemployment Insurance Code, relating to unemployment insurance.\",Labor and Employment\r\n\"An act to amend Sections 14250 and 14251 of the Penal Code, relating to missing persons, and declaring the urgency thereof, to take effect immediately.\",Science and Medical Research\r\n\"An act to amend Section 492 of the Food and Agricultural Code, relating to biotechnology.\",Agriculture and Food\r\n\"An act to add Sections 33544 and 51882 to the Education Code, relating to schools.\",Education\r\n\"An act to amend Sections 130051.9, 130051.11, 130232, and 130242 of, to amend and renumber Section 130051.21 of, and to repeal Section 130243 of, the Public Utilities Code, relating to public contracts.\",Transportation\r\n\"An act to amend Section 6530 of the Business and Professions Code, relating to professional fiduciaries.\",Commerce\r\n\"An act to amend Sections 10131.6 and 10131.7 of the Business and Professions Code, to amend Section 798.56a of the Civil Code, to amend Sections 65583 and 65589.5 of the Government Code, and to amend Sections 18902, 18921, 18926, 18931, 18934.7, 18941.7, 18949.4, 19996, 33334.3, 33418, 33440, 33449, 33490, 50517.10, 50705, and 53545 of, to amend and renumber the heading of Chapter 8.5 (commencing with Section 50705) of Part 2 of Division 31 of, to add Section 18931.8 to, to add and repeal Section 50963 of, and to repeal Sections 50517.11 and 50802.1 of, the Health and Safety Code, relating to housing, and making an appropriation therefor.\",Housing and Property\r\n\"An act to amend Sections 69614 and 69615 of the Government Code, relating to courts.\",Judiciary\r\n\"An act to amend Section 6213 of the Business and Professions Code, relating to attorneys.\",Legal Issues\r\n\"An act to amend Sections 703.150, 1085, and 1103 of the Code of Civil Procedure, to amend Section 9213 of the Corporations Code, to amend Section 7643 of the Family Code, to amend Sections 53647.5, 53679, 68084.1, 68092, and 71601 of, and to add Section 27473 to, the Government Code, and to amend Section 13510 of the Penal Code, relating to civil law.\",Legal Issues\r\n\"An act to amend Section 321.6 of, and to repeal Section 1701.6 of, the Public Utilities Code, relating to the Public Utilities Commission.\",Public Services\r\n\"An act to amend Sections 131103 and 131241 of the Public Utilities Code, relating to transportation.\",Transportation\r\n\"An act to add and repeal Section 559 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 226.6 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 98.2 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 1033 of the Code of Civil Procedure, relating to civil actions.\",Legal Issues\r\n\"An act to repeal and add Section 6432 of the Labor Code, relating to employment.\",Health\r\n\"An act to amend Sections 1063.1 and 1063.75 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Sections 31, 33, 34, 674.9, 1192.9, 1621, 1623, 1625, 1637, 1639, 1729, 1749, 1749.3, 1758.96, 1758.992, 1802.1, 1807.5, 1807.7, 1808, 1810.7, 1811, 1871.7, 1874.86, 12962, 14090, 14090.1, 15054, and 15059.1 of, to add Sections 1742.3, 1807.8, and 1807.9 to, and to repeal Section 1673 of, the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Section 35 of the Business and Professions Code, relating to professions and vocations.\",Military\r\n\"An act to add Section 87 to the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Sections 120130 and 121025 of the Health and Safety Code, relating to public health.\",Health\r\n\"An act to repeal and add Chapter 14 (commencing with Section 1800) of, and to repeal Chapter 14A (commencing with Section 1851) of, Division 1 of, and to repeal Division 16 (commencing with Section 33000) of, the Financial Code, relating to money transmission.\",Commerce\r\n\"An act to amend Section 19596.2 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"the Penal Code, to amend Sections 715, 2802, 2803, 2811, 2814, 2815, 3233, 25701, and 43035 of the Public Resources Code, to amend Sections 2774.5, 2872.5, 2892.1, 7661, 7662, 7663, 7665.2, 7665.3, 7665.4, 7673, 7710, and 7718 of, and to add Section 7665.1 to, the Public Utilities Code, to amend Section 97.2 of the Revenue and Taxation Code, to amend Sections 165, 5066, 9706, 23112.5, 25258, and 34061 of the Vehicle Code, to amend Sections 128, 6025.6, 12994, 13271, 13272, 73503, and 79522 of the Water Code, and to amend Sections 1789, 9625, 14085.54, 18277, 18278, and 18278.5 of, to add Section 18275.5 to, and to repeal Section 1789.5 of, the Welfare and Institutions Code, relating to the California Emergency Management Agency.\",State Agencies\r\n\"An act to amend Sections 19401, 19460, 19613.05, 19617, and 19617.2 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to add Title 16.5 (commencing with Section 98020) to, to repeal Sections 12012.25, 12012.30, 12012.35, 12012.40, 12012.45, 12012.46, 12012.465, 12012.47, 12012.475, 12012.48, 12012.485, 12012.49, 12012.495, 12012.5, 12012.51, 12012.515, 12012.52, 12012.53, 12012.75, 12012.85, and 12012.90 of, to repeal Chapter 7.5 (commencing with Section 12710) of Part 2 of Division 3 of Title 2 of, and to repeal Chapter 3 (commencing with Section 98055) of Title 16.5 of, the Government Code, relating to gaming.\",Gambling and Gaming\r\n\"An act to amend Sections 56100, 56332, 56375, 56381, 57075.5, 57127, 57129, 57377, and 57379 of, and to add Section 56037.2 to, the Government Code, and to amend Section 99 of the Revenue and Taxation Code, relating to local government.\",Municipal and County Issues\r\n\"An act to amend Sections 9166, 9501, and 9503, relating to Elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 302, 2130, 15281, 19370, 19380, and 19384 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 13997.2 of the Government Code, relating to economic development.\",Commerce\r\n\"An act to add the heading of Chapter 1 (commencing with Section 99500) to Title 20 of, to add Chapter 2 (commencing with Section 99600), Chapter 3 (commencing with Section 99700), and Chapter 4 (commencing with Section 99800) to Title 20 of, to repeal Section 99803 of, to repeal Chapter 4 (commencing with Section 6300) of Division 7 of Title 1 of, and to repeal Chapter 8 (commencing with Section 8700) and Chapter 8.1 (commencing with Section 8710) of Division 1 of Title 2 of, the Government Code, relating to international relations.\",Other\r\n\"An act to add Section 10089.55 to the Insurance Code, relating to the California Earthquake Authority.\",State Agencies\r\n\"An act to amend Section 8879.23 of the Government Code, to amend Section 20209.11 of the Public Contract Code, to amend Section 99243 of the Public Utilities Code, and to amend Sections 13005, 21100.4, and 27602 of the Vehicle Code, relating to transportation.\",Transportation\r\n\"An act to add Chapter 5 (commencing with Section 48800) to Part 7 of Division 30 of the Public Resources Code, relating to solid waste.\",Environmental\r\n\"An act to amend Section 20 of the Corporations Code, relating to corporations.\",Business and Consumers\r\n\"An act to amend Section 9250.14 of the Vehicle Code, relating to vehicles, and making an appropriation therefor.\",Transportation\r\n\"An act to add Chapter 14 (commencing with Section 4868) to Division 4.5 of the Welfare and Institutions Code, relating to developmental services.\",Labor and Employment\r\n\"An act to amend Section 185024 of the Public Utilities Code, and to add Chapter 20.1 (commencing with Section 2704.25) to Division 3 of the Streets and Highways Code, relating to high-speed rail.\",Transportation\r\n\"An act to amend Section 1373 of the Health and Safety Code, and to amend Section 10277 of the Insurance Code, relating to health care.\",Health\r\nAn act relating to housing.,Social Issues\r\n\"An act to amend Sections 19804, 19805, 19824, 19841, 19846, 19851, 19852, 19868, 19880, 19882, 19890, 19892, 19893, 19900, 19912, 19921, 19932, 19941, and 19984 of, to amend the heading of Article 6 (commencing with Section 19890) of Chapter 5 of Division 8 of, and to add Sections 19890.5 and 19966 to, the Business and Professions Code, relating to gambling.\",Gambling and Gaming\r\n\"An act to amend Section 11105 of, and to add Section 11105.06 to, the Penal Code, relating to criminal history information.\",Crime\r\n\"An act to amend Section 904.1 of the Code of Civil Procedure, relating to appeals.\",Legal Issues\r\n\"An act to amend Sections 706.7, 730, 735.5, 736, 900.2, 942, 1170, 1182, 1197, 1215.5, 11136, 11580.011, and 12968 of, and to amend and renumber Section 10123.83 of, the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Sections 14202, 14203, 14204, 14205, 14221, and 14230 of, and to add Section 14013.5 to, the Unemployment Insurance Code, relating to workforce development.\",Labor and Employment\r\n\"An act to amend Sections 100, 2102, 2106, 2150, and 2205 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend, repeal, and add Section 66473.7 of the Government Code, and to amend, repeal, and add Section 10910 of the Water Code, relating to subdivision map approvals.\",Environmental\r\n\"An act to amend Section 111130 of, and to add Section 111131 to, the Health and Safety Code, relating to vended water.\",Business and Consumers\r\n\"An act to add Section 14085.57 to the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Section 8222 of the Education Code, relating to child care and development.\",Family and Children Issues\r\n\"An act to amend Section 338.1 of the Code of Civil Procedure, and to amend Section 25515 of the Health and Safety Code, relating to hazardous materials.\",Environmental\r\n\"An act to add Section 14838.8 to the Government Code, relating to public contracts.\",Business and Consumers\r\n\"An act to amend Section 14838.5 of, and to add Section 14841 to, the Government Code, and to amend Section 10105 of the Public Contract Code, relating to public contracts.\",Business and Consumers\r\nAn act relating to employment.,Labor and Employment\r\n\"An act to amend Sections 401.17, 441, and 1153.5 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to add Section 28767.7 to the Public Utilities Code, relating to transportation.\",Military\r\n\"An act to add Section 1366.4 to the Civil Code, relating to common interest developments.\",Other\r\n\"An act to amend Sections 60061, 60200, 60421, and 60422 of the Education Code, relating to instructional materials.\",Insurance\r\n\"An act to amend Section 340.6 of the Code of Civil Procedure, and to amend Sections 851.8, 4901, 4903, and 4904 of, and to add Section 851.86 to, the Penal Code, relating to wrongful convictions.\",Crime\r\n\"An act to amend Section 4750.1 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 336, 342, 9001, 9002, 9003, 9004, 9005, 9007, 9008, 9034, 9035, 9050, 9051, 9052, 9053, 9054, 9063, 9086, 13247, 13262, 13281, 13282, and 18602 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 6254.21 of the Government Code, relating to public records.\",State Agencies\r\n\"An act to amend Section 15820.917 of the Government Code, relating to county jails.\",Municipal and County Issues\r\n\"An act to amend Section 69.5 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Sections 9100 and 9400 of, and to add Section 9009 to, the Welfare and Institutions Code, relating to aging.\",Senior Issues\r\n\"An act to amend Sections 17072 and 19184 of, to amend and repeal Sections 17131.4, 17131.5, 17215.1, and 17215.4 of, and to add Sections 17138.5 and 17216 to, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Health\r\n\"An act to amend Section 23153 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Business and Consumers\r\n\"An act to amend Section 1633.3 of the Civil Code, and to amend Sections 560, 570, 658, 662, 666, 771.02, 779.19, and 1759.7 of, to add Sections 38.5 and 38.8 to, and to add Article 6 (commencing with Section 580) to Chapter 6 of Part 1 of Division 1 of, the Insurance Code, relating to electronic transactions.\",Technology and Communication\r\n\"An act to amend Sections 1923.2 and 1923.5 of the Civil Code, relating to reverse mortgages.\",Housing and Property\r\n\"An act to add Section 15005 to the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 51760 of, and to add Section 51760.1 to, the Education Code, relating to work-based learning, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\n\"An act to amend Section 65961 of, and to add Section 66452.22 to, the Government Code, relating to land use, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to add Section 14011.11 to the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to add Section 924 to the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 76140.5 of the Education Code, relating to community colleges.\",Public Services\r\n\"An act to amend Section 781 of the Welfare and Institutions Code, relating to juvenile court records.\",Family and Children Issues\r\n\"An act to amend Sections 53395.1, 65460.1, 65460.2, and 65460.4 of, and to add Sections 53395.7.5 and 65460.2.5 to, the Government Code, relating to transit facilities.\",Transportation\r\n\"An act to amend Sections 12000 and 12001 of the Education Code, relating to education finance.\",Education\r\n\"An act to add and repeal Sections 17053.81 and 23623.2 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\nAn act relating to taxation.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Chapter 11 (commencing with Section 49700) to Part 27 of Division 4 of Title 2 of the Education Code, relating to pupils.\",Military\r\n\"An act to amend Sections 355 and 446 of, and to add Section 301.3 to, the Streets and Highways Code, relating to state highways.\",State Agencies\r\n\"An act to amend Section 52302.8 of the Education Code, relating to regional occupational centers or programs.\",Labor and Employment\r\n\"An act to add Section 21100.7 to the Water Code, relating to the South Bay Irrigation District.\",Agriculture and Food\r\n\"An act to amend Section 17581 of, and to add Section 13337.1 to, the Government Code, relating to state mandates.\",State Agencies\r\n\"An act to add Division 21 (commencing with Section 60000) to the Financial Code, relating to debt.\",Business and Consumers\r\n\"An act to amend Section 51222 of, and to add Section 51242.1 to, the Education Code, relating to physical education.\",Education\r\n\"An act to amend Section 33353 of the Education Code, relating to public records.\",Public Services\r\n\"An act to amend Sections 338 and 340 of the Code of Civil Procedure, relating to civil actions.\",Legal Issues\r\n\"An act to amend Section 120325 of, and to amend, repeal, and add Section 120335 of, the Health and Safety Code, relating to vaccinations.\",Health\r\n\"An act to amend Section 12050 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Sections 1000 and 1000.1 of the Penal Code, relating to criminal procedure.\",Crime\r\n\"An act to add Sections 17053.87 and 23687 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 8483.55 and 44393 of, and to add and repeal Section 44394 of, the Education Code, relating to after school programs.\",Education\r\n\"An act to amend Section 16531.1 of the Government Code, and to repeal Section 14041.1 of the Welfare and Institutions Code, relating to Medi-Cal, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Section 6804.1 of the Public Resources Code, relating to state lands.\",State Agencies\r\n\"An act to amend Section 14043.46 of the Welfare and Institutions Code, relating to adult day health care centers.\",Health\r\n\"An act to add Section 66020 to the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to amend Sections 7028 and 7028.16 of the Business and Professions Code, relating to contractors.\",Labor and Employment\r\nAn act relating to community colleges.,Education\r\n\"An act to amend Section 12040 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Section 3064 of the Family Code, relating to child custody.\",Family and Children Issues\r\n\"An act to add Division 25.8 (commencing with Section 38900) to the Health and Safety Code, relating to greenhouse gas emission offsets.\",Environmental\r\n\"An act to amend Sections 23001, 23027, and 23035 of, and to add Sections 23005.5, 23010.5, 23016.5, and 23036.5 to, the Financial Code, relating to deferred deposit transactions.\",Commerce\r\n\"An act to add Sections 45266.5 and 88086.25 to the Education Code, relating to classified employees.\",Labor and Employment\r\n\"An act to add Section 68085 to, and to repeal Section 68075.5 of, the Education Code, relating to postsecondary education.\",Military\r\n\"An act to add Chapter 5 (commencing with Section 3100) to Division 3 of the Labor Code, relating to energy.\",Energy\r\n\"An act to add Section 710.9 to the Unemployment Insurance Code, relating to unemployment insurance, and making an appropriation therefor.\",Labor and Employment\r\n\"An act to amend Section 2636 of the Penal Code, relating to the Department of Corrections and Rehabilitation.\",State Agencies\r\n\"An act to amend Section 803 of the Penal Code, relating to criminal procedure.\",Judiciary\r\n\"An act to amend Sections 401.17, 441, and 1153.5 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Section 84750.5 of the Education Code, relating to community colleges.\",Education\r\n\"An act to amend Section 538e of the Penal Code, relating to firefighting uniforms.\",Public Services\r\n\"An act to amend Sections 10236.1 and 10236.13 of, and to repeal and add Section 10236.12 of, the Insurance Code, relating to insurance.\",Health\r\n\"Sections 4138 and 18901.3 of the Welfare and Institutions Code, relating to marijuana.\",Legal Issues\r\n\"An act relating to long-term health care facilities, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Section 1793.05 of the Civil Code, relating to vehicle warranties.\",Transportation\r\n\"An act to amend Section 3072 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Sections 3186 and 3252 of the Civil Code, and to amend Section 10261 of, and to add Section 7201 to, the Public Contract Code, relating to works of improvement.\",Housing and Property\r\n\"An act to amend Section 40402 of, to amend and repeal Sections 40420, 40421.5, and 40422 of, and to add Section 40421 to, the Health and Safety Code, relating to the South Coast Air Quality Management District.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 4354, 4354.5, 4357, 4357.1, 4358.5, 4359, and 14132.992 of, to repeal Section 4357.2 of, and to repeal and add Sections 4355 and 4356 of, the Welfare and Institutions Code, relating to acquired brain trauma.\",Health\r\n\"An act to amend Section 22708 of the Education Code, and to amend Section 20731 of, and to add Sections 20969, 75103.6, and 75605.1 to, the Government Code, relating to public employee benefits.\",Labor and Employment\r\nAn act relating to the Constitutional Convention.,Government Reform\r\n\"An act to amend Section 22064 of the Financial Code, relating to financial institutions.\",Commerce\r\n\"An act to add Section 1308.10 to the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 1917 of the Business and Professions Code, relating to dental hygienists.\",Health\r\n\"An act to amend Section 32132.5 of the Health and Safety Code, relating to health care districts.\",Labor and Employment\r\n\"An act to add Article 5.3 (commencing with Section 44540) to Chapter 3 of Part 25 of Division 3 of Title 2 of the Education Code, relating to school personnel.\",Labor and Employment\r\n\"An act to amend Sections 1771 and 1788 of, and to add Article 9 (commencing with Section 1793.80) to Chapter 10 of Division 2 of, the Health and Safety Code, relating to continuing care retirement communities.\",Senior Issues\r\n\"An act to amend Section 1063.5 of the Insurance Code, relating to the California Insurance Guarantee Association.\",Insurance\r\n\"An act to amend Section 926.2 of, and to add Section 926.3 to, the Insurance Code, relating to insurer investments.\",Insurance\r\n\"An act to amend Section 75027 of the Public Resources Code, and to amend Section 13577 of the Water Code, relating to water resources.\",Environmental\r\nAn act relating to health facilities.,Health\r\n\"An act to amend Section 11411 of the Penal Code, relating to hate crimes.\",Crime\r\n\"An act to add Section 17052 to the Business and Professions Code, relating to unfair competition, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\n\"An act to amend Section 44297 of, and to add Section 44297.5 to, the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 1569.3 of the Health and Safety Code, relating to residential care facilities for the elderly.\",Senior Issues\r\n\"An act to add Section 4640.4 to the Welfare and Institutions Code, relating to developmental services.\",Business and Consumers\r\n\"An act to amend, repeal, and add Section 4202 of the Business and Professions Code, relating to pharmacy.\",Health\r\n\"An act to add and repeal Article 1.6 (commencing with Section 123259) of Part 2 of Division 106 of the Health and Safety Code, relating to maternal health, and making an appropriation therefor.\",Reproductive Issues\r\n\"An act to amend Section 18350 of, and to add Section 18350.5 to, the Welfare and Institutions Code, relating to foster care, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to add Division 114 (commencing with Section 140000) to the Health and Safety Code, relating to youth and families.\",State Agencies\r\n\"An act to amend Sections 53114.2, 53115.1, and 53115.2 of the Government Code, relating to emergency telephone systems.\",Public Services\r\n\"An act to amend Section 4000.38 of the Vehicle Code, relating to vehicles.\",Transportation\r\nAn act relating to code enforcement officers.,Legal Issues\r\n\"An act to amend Section 11105 of the Penal Code, relating to criminal history records.\",Crime\r\n\"An act to amend Section 10089.7 of the Insurance Code, relating to the California Earthquake Authority.\",Labor and Employment\r\nAn act relating to state funds.,State Agencies\r\n\"An act to add Chapter 3.1 (commencing with Section 18934.10) to Part 2.5 of Division 13 of the Health and Safety Code, relating to building standards.\",Housing and Property\r\n\"An act to amend Section 8483.9 of the Education Code, relating to after school programs.\",Education\r\n\"An act to amend Sections 4514, 4629, 4731, and 5328 of, and to add Section 4637 to, the Welfare and Institutions Code, relating to developmental services, and declaring the urgency thereof, to take effect immediately.\",Business and Consumers\r\n\"An act to add Section 9004.5 to the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Section 2887 to the Public Utilities Code, relating to telecommunications.\",Technology and Communication\r\nAn act relating to Medi-Cal.,Health\r\n\"An act to amend Section 671.5 of the Streets and Highways Code, relating to highways.\",Legal Issues\r\n\"An act to amend Section 1185 of the Civil Code, relating to notaries public.\",Other\r\n\"An act to amend Sections 75507 and 75595.5 of, and to add Chapter 14 (commencing with Section 6300) to Part 1 of Division 4 of, the Food and Agricultural Code, relating to apple pests.\",Agriculture and Food\r\n\"An act to amend, repeal, and add Section 65965 of the Government Code, relating to land use.\",Environmental\r\n\"An act to amend Section 106955 of the Health and Safety Code, relating to radiological technologists.\",Legal Issues\r\n\"An act to amend Sections 987, 987.4, 987.8, and 987.81 of the Penal Code, relating to criminal procedure.\",Crime\r\n\"An act to amend Sections 310 and 313 of the Business and Professions Code, and to add Section 11818 to the Government Code, relating to consumer affairs.\",Commerce\r\n\"An act to add and repeal Article 5.5 (commencing with Section 11082) of Chapter 1 of Part 1 of Division 3 of Title 2 of the Government Code, relating to advertising.\",Commerce\r\n\"An act to add and repeal Article 2.11 (commencing with Section 65893) of, and to repeal the heading of Article 2.11 (commencing with Section 65892.13) of, Chapter 4 of Division 1 of Title 7 of the Government Code, relating to land use.\",Energy\r\n\"An act to add Section 12318 to the Welfare and Institutions Code, relating to public social services.\",Senior Issues\r\n\"An act relating to air pollution, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Section 68130.5 of the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to amend Sections 3084 and 3146 of the Civil Code, relating to liens.\",Business and Consumers\r\n\"An act to amend Sections 2104, 2106, and 2107 of the Family Code, relating to dissolution.\",Other\r\n\"An act to add and repeal Section 15360.5 of the Elections Code, relating to elections, and declaring the urgency thereof, to take effect immediately.\",Campaign Finance and Election Issues\r\nAn act relating to water salinity.,Environmental\r\n\"An act to add and repeal Section 1203.044 of the Penal Code, relating to economic crimes, and declaring the urgency thereof, to take effect immediately.\",Crime\r\n\"An act to add Article 3.5 (commencing with Section 66026) to Chapter 2 of Part 40 of Division 5 of Title 3 of the Education Code, and to add Section 17044 to the Revenue and Taxation Code, relating to public postsecondary education, and making an appropriation therefor, to take effect immediately, tax levy.\",Education\r\n\"An act to amend Section 32000.5 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 69613.8 of the Education Code, relating to postsecondary education.\",Education\r\n\"An act to add Section 11505.5 to the Education Code, relating to schools.\",Education\r\n\"An act to amend Sections 13.2 and 20 of, to add Sections 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 7.10, 7.11, and 8 to, and to repeal and add Sections 7, 7.1, and 7.3 of, the Santa Clara Valley Water District Act (Chapter 1405 of the Statutes of 1951), relating to the Santa Clara Valley Water District.\",Environmental\r\n\"An act to amend Sections 3005 and 12281 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 6452.1, 6453, 6487.3, and 18510 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend, repeal, and add Section 17052.25 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 11042, 11043, 12517, 12518, 12521, 12522, 12542, 12574, 12591, and 12593 of the Government Code, relating to legal services.\",Legal Issues\r\n\"An act to amend Section 1102.6b of the Civil Code, and to amend Sections 5898.12, 5898.14, 5898.20, 5898.21, 5898.22, 5898.24, 5898.28,  and 5898.30 of, and to add Section 5898.31 to, the Streets and Highways Code, relating to contractual assessments.\",Labor and Employment\r\n\"An act to amend Section 33333.6 of the Health and Safety Code, relating to redevelopment.\",Housing and Property\r\n\"An act to amend Section 7000.5 of the Business and Professions Code, relating to contractors.\",Labor and Employment\r\n\"An act to amend Sections 41730, 41731, 47134, 41735, 41736, 41800, 42926, 44004, and 50001 of, and to add Sections 40004, 41734.5, and 41780.01 to, and to add Chapter 12.8 (commencing with Section 42649) to Part 3 of Division 30 of, the Public Resources Code, relating to solid waste.\",Environmental\r\n\"An act to add Section 16724.3 to the Government Code, relating to state bonds.\",Commerce\r\n\"An act to amend Section 798.21 of the Civil Code, relating to mobilehomes.\",Housing and Property\r\n\"An act to add Chapter 3.6 (commencing with Section 1024.5) to Part 3 of Division 2 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 31 of the Business and Professions Code, and to add Sections 19265 and 19571 to the Revenue and Taxation Code, relating to taxes.\",Business and Consumers\r\n\"An act to add Part 5 (commencing with Section 1500) to Division 2 of the Labor Code, relating to the Civil Air Patrol.\",Labor and Employment\r\n\"An act to amend Section 8630 of the Government Code, relating to local emergencies.\",Municipal and County Issues\r\n\"An act to amend Sections 60510 and 60511 of, and to add Section 60510.1 to, the Education Code, relating to instructional materials.\",Other\r\n\"An act to amend Sections 8040, 8041, 8047, 8052, 8053, 8055, 8057, 8058, 8059, 8060, 8061, 8062, 8063, 8064, 8065, 8067, 8068, and 15003 of, to amend the heading of Article 7.5 (commencing with Section 8040) of Chapter 1 of Part 3 of Division 6 of, to amend and repeal Section 8051 of, to amend, repeal, and add Section 8042 of, and to add Section 8041.5 to, the Fish and Game Code, relating to commercial fishing.\",Agriculture and Food\r\n\"An act to amend Sections 122350 and 122354 of the Health and Safety Code, relating to pet stores.\",Business and Consumers\r\n\"An act to amend Section 87482 of the Education Code, relating to community colleges.\",Education\r\n\"An act to add Article 14 (commencing with Section 32436) to Chapter 3 of Part 19 of Division 1 of Title 1 of the Education Code, relating to early childhood education.\",Education\r\n\"An act to amend Section 13001 of the Elections Code, relating to elections, and declaring the urgency thereof, to take effect immediately.\",Campaign Finance and Election Issues\r\n\"An act to add Section 21655.11 to the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 2016.020, 2031.010, 2031.020, 2031.030, 2031.040, 2031.050, 2031.060, 2031.210, 2031.220, 2031.230, 2031.240, 2031.250, 2031.260, 2031.270, 2031.280, 2031.290, 2031.300, 2031.310, and 2031.320 of, and to add Sections 1985.8 and 2031.285 to, the Code of Civil Procedure, relating to civil discovery, and declaring the urgency thereof, to take effect immediately.\",Technology and Communication\r\neffect immediately.,Public Services\r\n\"An act to amend Sections 2054 and 2435 of, and to add Section 2088 to, the Business and Professions Code, relating to medicine.\",Health\r\nAn act relating to state employees.,Labor and Employment\r\n\"An act to add Section 13515.45 to the Penal Code, relating to peace officers.\",Public Services\r\n\"An act to amend Section 3003.5 of the Penal Code, relating to sex offenders.\",Housing and Property\r\n\"An act to amend Section 63040 of the Government Code, relating to economic development.\",Commerce\r\n\"An act to add Section 12814.8 to, and to add and repeal Section 12814.9 of, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 2800.2 of, and to add Section 2800.25 to, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 2827 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Section 2827 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to add Section 1367.625 to the Health and Safety Code, and to add Section 10123.875 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to repeal and add Chapter 7 (commencing with Section 119300) of Part 15 of Division 104 of the Health and Safety Code, relating to body art.\",Health\r\n\"An act to amend Sections 52055.51 and 52055.57 of, and to add Section 52055.57.1 to, the Education Code, relating to public school accountability.\",Education\r\n\"An act to amend Sections 1627, 1628, and 1630 of, and to amend, repeal, and add Sections 102247, 103605, and 103625 of, the Health and Safety Code, relating to umbilical cord blood banking, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to add Section 6256 to the Government Code, relating to public records.\",Public Services\r\n\"An act to add Section 857 to the Public Utilities Code, relating to utility property.\",Public Services\r\n\"An act to add Section 8879.501 to the Government Code, relating to transportation.\",Transportation\r\n\"An act to amend Section 130060 of the Health and Safety Code, relating to health facilities, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Section 60510 of, and to repeal Section 60511 of, the Education Code, relating to instructional materials.\",Other\r\n\"An act to add and repeal Article 14 (commencing with Section 2340) of Chapter 5 of Division 2 of the Business and Professions Code, relating to physicians and surgeons.\",Health\r\n\"An act to add Section 1174.1 to the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Sections 56100.1, 56700.1, 57009, and 82035.5 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to add Section 17216 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Education\r\n\"An act to add and repeal Section 18005 of the Government Code, relating to state employment.\",Labor and Employment\r\n\"An act to amend and repeal Section 3485 of, and to add, repeal, and add Section 3486 of, the Civil Code, to amend Section 1161 of the Code of Civil Procedure, and to repeal and add Section 11571.1 of the Health and Safety Code, relating to unlawful detainer.\",Crime\r\n\"An act to amend Section 25402.10 of the Public Resources Code, relating to energy.\",Energy\r\n\"An act to amend Section 1524 of the Penal Code, relating to search warrants.\",Legal Issues\r\n\"An act to amend Sections 35179.1 and 49032 of the Education Code, relating to training for high school coaches.\",Education\r\n\"An act to add Section 52499.67 to the Education Code, relating to pupils.\",Labor and Employment\r\n\"An act to amend Section 25245 of the Health and Safety Code, relating to hazardous waste.\",Environmental\r\n\"An act to amend Section 653y of the Penal Code, relating to crimes.\",Public Services\r\n\"An act to amend Sections 8545.2, 8546, 8546.1, 8546.4, and 8547.7 of the Government Code, relating to the State Auditor.\",State Agencies\r\nAn act relating to the California Emergency Management Agency.,State Agencies\r\n\"An act to add Section 8543.4 to the Government Code, relating to the State Auditor.\",State Agencies\r\n\"An act to amend Section 20104 of the Public Contract Code, relating to contracting by local agencies.\",Labor and Employment\r\n\"An act to amend Sections 123492 and 123493 of the Health and Safety Code, and to repeal Section 7 of Chapter 878 of the Statutes of 2006, relating to perinatal care, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to add Section 23024.5 to the Financial Code, relating to deferred deposit transactions.\",Commerce\r\n\"An act to add Section 6377 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Energy\r\n\"An act to amend Sections 15053 and 15061 of the Food and Agricultural Code, relating to commercial feed, and making an appropriation therefor.\",Agriculture and Food\r\n\"An act to amend Sections 1209.1 and 1264 of, and to add Section 1264.5 to, the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to amend Section 10912 of the Water Code, relating to water.\",Environmental\r\n\"An act to add Division 22 (commencing with Section 70000) to the Financial Code, relating to financial literacy.\",Commerce\r\n\"An act to amend Section 52302.8 of the Education Code, relating to education finance.\",Education\r\n\"An act to amend Section 51225.3 of the Education Code, relating to graduation requirements.\",Education\r\n\"An act to add and repeal Article 1.5 (commencing with Section 48805) of Chapter 5 of Part 27 of Division 4 of Title 2 of the Education Code, relating to community colleges.\",Education\r\n\"An act to amend Section 19130 of the Government Code, relating to personal services contracts.\",Labor and Employment\r\n\"An act to amend Section 46003 of the Food and Agricultural Code, relating to organic products.\",Agriculture and Food\r\n\"An act to add and repeal Section 680.1 of the Penal Code, relating to sexual assault crimes.\",Crime\r\n\"An act to amend Section 236.1 of the Penal Code, relating to human trafficking.\",Family and Children Issues\r\n\"An act to amend Section 1367.65 of, and to add Section 1367.651 to, the Health and Safety Code, and to amend Section 10123.81 of, and to add Section 10123.815 to, the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 2827 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Sections 241.5 and 243.65 of the Penal Code, relating to crimes against highway workers.\",Transportation\r\n\"An act to add Article 12 (commencing with Section 1399.850) to Chapter 2.2 of Division 2 of the Health and Safety Code, and to add Chapter 7.5 (commencing with Section 10650) to Part 2 of Division 2 of the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Sections 18707 and 18709 of the Revenue and Taxation Code, relating to taxation, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 708 to the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Section 66427.5 of the Government Code, relating to mobilehome parks.\",Housing and Property\r\n\"An act to amend Sections 8545.1, 8545.2, 8545.4, 8546.2, 8547.2, 8547.4, 8547.5, 8547.6, 8547.7, and 8548.9 of the Government Code, relating to government practices.\",Government Reform\r\n\"An act to add and repeal Section 1276.45 of the Health and Safety Code, relating to health facilities.\",Labor and Employment\r\n\"An act to amend Sections 50843.5 and 53545.9 of the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to add Section 47604.1 to the Education Code, relating to charter schools.\",Education\r\n\"An act to add Section 1286.5 to the Health and Safety Code, relating to health facilities.\",Health\r\n\"An act to add Section 647.8 to the Penal Code, relating to sex offenders.\",Crime\r\n\"An act to amend Section 1202.4 of the Penal Code, and to amend Section 730.6 of the Welfare and Institutions Code, relating to vandalism.\",Crime\r\n\"An act to amend Section 2031.240 of the Code of Civil Procedure, relating to discovery.\",Other\r\n\"An act to amend Section 337a of, and to add Section 336.9 to, the Penal Code, relating to sports betting pools.\",Gambling and Gaming\r\n\"An act to amend Section 84362 of, and to add Section 84363 to, the Education Code, relating to community colleges.\",Labor and Employment\r\n\"An act to amend Section 70616 of the Government Code, relating to courts.\",Judiciary\r\n\"An act to add and repeal Chapter 8.1 (commencing with Section 1966) of Division 2.5 of the Streets and Highways Code, and to amend Sections 21251 and 21260 of the Vehicle Code, relating to neighborhood electric vehicles.\",Transportation\r\n\"An act to amend Section 3344.1 of the Civil Code, relating to deceased personalities.\",Other\r\n\"An act to amend Section 594 of the Penal Code, relating to vandalism.\",Crime\r\n\"An act to amend Section 11005 of the Revenue and Taxation Code, relating to local government finance.\",Municipal and County Issues\r\n\"An act to amend Section 25660 of the Business and Professions Code, relating to alcoholic beverages.\",Military\r\n\"An act to add Article 9.6 (commencing with Section 6159.5) to Chapter 4 of Division 3 of the Business and Professions Code, and to amend, repeal, and add Sections 68085.1 and 70626 of, and to add Chapter 2.1 (commencing with Section 68650) to Title 8 of, the Government Code, relating to the practice of law.\",Legal Issues\r\n\"An act to amend Section 1808.4 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 37911 of the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to amend Section 65583.1 of the Government Code, relating to land use.\",Housing and Property\r\n\"An act to amend Section 1522 of the Health and Safety Code, and to amend Section 361.4 of the Welfare and Institutions Code, relating to children, and declaring the urgency thereof, to take effect immediately.\",Family and Children Issues\r\n\"An act to amend Section 92 of the Streets and Highways Code, relating to transportation.\",Transportation\r\n\"An act to amend Sections 100702 and 100703 of the Health and Safety Code, relating to laboratories.\",Crime\r\n\"An act to add Section 9023 to the Elections Code, relating to elections.\",Other\r\n\"An act to add and repeal Section 41055 of the Education Code, relating to education finance.\",Education\r\n\"An act relating to state property, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend Section 1872.81 of the Insurance Code, relating to motor vehicle insurance.\",Transportation\r\n\"An act to amend Sections 65009, 65589.3, and 65755 of the Government Code, relating to land use.\",Other\r\n\"An act to amend Section 51873 of the Education Code, relating to education technology.\",Education\r\nAn act relating to state real property.,Housing and Property\r\n\"An act to amend Section 790 of the Welfare and Institutions Code, relating to juveniles.\",Family and Children Issues\r\n\"An act to add Section 65040.15 to the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to add Section 8588.16 to the Government Code, relating to emergency services.\",Public Services\r\n\"An act to add Section 3027.3 to the Family Code, relating to custody and visitation.\",Family and Children Issues\r\n\"An act to amend Sections 14133.01 and 14133.9 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Section 13353 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 11547.5 to the Government Code, relating to state government.\",Environmental\r\n\"An act to amend Section 11545 of the Government Code, relating to the office of the State Chief Information Officer.\",State Agencies\r\n\"An act to amend Section 27602 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 6407, 17929, 22355, 22452, 22454, and 22457 of the Business and Professions Code, relating to county clerks.\",Municipal and County Issues\r\n\"An act to add Section 12979.1 to the Food and Agricultural Code, relating to pesticides.\",Agriculture and Food\r\n\"An act to amend Section 5600 of, and to add Section 5600.05 to, the Business and Professions Code, relating to architects.\",Education\r\n\"An act to amend Section 14941 of, and to add Section 14944 to, the Health and Safety Code, relating to cigarette lighters.\",Other\r\n\"An act to add and repeal Section 49546.5 of the Education Code, relating to child nutrition.\",Agriculture and Food\r\n\"An act to amend Sections 23302, 40255, and 40273 of, and to add Section 23301.8 to, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 17577.5 to the Education Code, and to add Section 75020.5 to the Public Resources Code, relating to school facilities.\",Education\r\n\"An act to add Section 1794.45 to the Civil Code, relating to service contracts.\",Commerce\r\n\"An act to add Section 11250.5 to the Welfare and Institutions Code, relating to public social services.\",Public Services\r\n\"An act to add Section 1708.9 to the Civil Code, relating to privacy.\",Social Issues\r\n\"An act to amend Section 2636 of the Penal Code, relating to the Department of Corrections and Rehabilitation.\",State Agencies\r\n\"An act to amend Section 831.7 of the Government Code, relating to liability.\",Environmental\r\n\"An act to add Article 1 (commencing with Section 3000) to Chapter 3 of Part 1 of Division 2 of the Public Contract Code, relating to public contracts, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to add Section 705 to the Fish and Game Code, to amend Sections 25740.5, 25742, 25746, 25747, and 25751 of, and to add Section 25500.1 to, the Public Resources Code, and to amend Sections 399.2.5 and 454.5 of, to add Sections 399.13, 399.26, and 1005.1 to, and to repeal and add Section 399.14 of, the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to add Section 1203.077 to the Penal Code, relating to sentencing.\",Judiciary\r\n\"An act to amend Section 10295 of, and to add Part 1.5 (commencing with Section 10000) to Division 2 of, the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to add Division 22.3 (commencing with Section 32300) to the Public Resources Code, relating to conservancies.\",Environmental\r\n\"An act to add Part 17 (commencing with Section 106000) to Division 10 of the Public Utilities Code, relating to transportation.\",Transportation\r\n\"An act to amend Sections 6735, 6735.3, 6735.4, 6764, 8750, 8761, and 8764.5 of the Business and Professions Code, relating to professional engineers and land surveyors.\",Other\r\n\"An act to amend, repeal, and add Section 2401 of, and to repeal Section 2401.1 of, the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to amend Section 4465 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add and repeal Chapter 6.5 (commencing with Section 124871) of Part 4 of Division 106 of the Health and Safety Code, relating to rural hospitals.\",Health\r\n\"An act to add Article 1.6 (commencing with Section 10507.1) to Chapter 2.1 of Part 2 of Division 2 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to add Part 6.7 (commencing with Section 22959.90) to Division 5 of Title 2 of the Government Code, relating to public employee health benefits, and making an appropriation therefor.\",Labor and Employment\r\n\"An act to amend Section 6330 of the Corporations Code, relating to corporations.\",Business and Consumers\r\n\"An act to add Section 35400.7 to the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 21702.5, 21705, 21706, 21707, and 21709 of, and to repeal and add Section 21710 of, the Business and Professions Code, relating to self-service storage facilities.\",Business and Consumers\r\n\"An act to add Chapter 8 (commencing with Section 99500) to Part 65 of Division 14 of Title 3 of the Education Code, and to add Part 21 (commencing with Section 42001) to Division 2 of the Revenue and Taxation Code, relating to postsecondary education, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Energy\r\n\"An act to add Section 127162 to the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend, repeal, and add Section 6018.6 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 49110 of the Education Code, relating to schools.\",Labor and Employment\r\n\"An act to amend Section 7145.5 of the Business and Professions Code, and to add Chapter 1.9 (commencing with Section 13200) to Part 2 of Division 12 of, and to repeal Sections 13200.02 and 13200.05 of, the Health and Safety Code, relating to fire suppression.\",Other\r\n\"An act to add Sections 56836.16 and 56836.161 to the Education Code, relating to special education, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to add Article 9.6 (commencing with Section 6159.5) to Chapter 4 of Division 3 of the Business and Professions Code, to add Section 367.6 to the Code of Civil Procedure, to add Sections 756 and 756.5 to the Evidence Code, and to amend, repeal, and add Section 68563 of the Government Code, relating to legal services.\",Legal Issues\r\n\"An act to amend Section 16131.5 of the Welfare and Institutions Code, relating to children.\",State Agencies\r\n\"An act to add Section 66474.02 to the Government Code, and to amend Section 4290 of the Public Resources Code, relating to subdivisions.\",Housing and Property\r\n\"An act to amend Section 602 of the Penal Code, relating to trespass.\",Crime\r\n\"An act to add Section 68085 to the Education Code, relating to postsecondary education.\",Education\r\n\"An act to add Article 9 (commencing with Section 89280) to Chapter 2 of Part 55 of Division 8 of Title 3 of the Education Code, relating to nursing degrees.\",Education\r\n\"An act to add Section 21655.10 to the Vehicle Code, relating to vehicles.\",Military\r\n\"An act to amend, repeal, and add Section 52335.4 of the Education Code, relating to regional occupational centers or programs.\",Labor and Employment\r\n\"An act to amend Section 1170.9 of the Penal Code, relating to criminal procedure.\",Military\r\n\"An act to add Section 17206.2 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Education\r\n\"An act to add and repeal Section 6018.9 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 1720.5 to the Labor Code, relating to public works.\",Public Services\r\n\"An act to amend Section 51871.5 of the Education Code, relating to education technology.\",Education\r\n\"An act to amend Section 791.10 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to add Chapter 5.3 (commencing with Section 42280) to Part 3 of Division 30 of the Public Resources Code, relating to solid waste.\",Environmental\r\n\"An act to amend Section 56.104 of the Civil Code, relating to confidentiality of medical information.\",Health\r\n\"An act to amend Section 52055.57 of the Education Code, relating to local educational agencies, and declaring the urgency thereof, to take effect immediately.\",Municipal and County Issues\r\n\"An act to amend Section 14224 of, and to repeal Section 19363 of, the Elections Code, relating to voting.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 853.6 of the Penal Code, relating to crime.\",Crime\r\n\"An act to amend Sections 30121 and 30131.1 of the Revenue and Taxation Code, relating to taxation.\",Health\r\n\"An act to amend Section 66602 of, and to add Section 92022 to, the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to add Sections 6591.6, 7655.5, 8876.5, 12631.5, 30281.5, 32252.5, 40101.5, 41095.5, 43155.5, 45153.5, 46154.5, 50112.1, 55042.5, and 60207.5 to the Revenue and Taxation Code, relating to taxation.\",State Agencies\r\n\"An act to repeal Chapter 642 of the Statutes of 1929, relating to tidelands and submerged lands.\",Environmental\r\n\"An act to amend Section 399.14 of the Public Utilities Code, relating to renewable energy.\",Public Services\r\n\"An act to add Section 21166.5 to the Public Resources Code, relating to the environment.\",Environmental\r\n\"An act to amend Sections 851 and 853 of the Public Utilities Code, relating to utility property.\",Public Services\r\n\"An act to amend Section 15570 of, and to add Section 13997.5 to, the Government Code, relating to economic development, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act to add Chapter 9.1 (commencing with Section 8758) to Division 1 of Title 2 of the Government Code, and to add Section 7101.2 to the Revenue and Taxation Code, relating to the arts.\",Commerce\r\n\"An act to amend and repeal Section 20112 of, and to add Section 20112.1 to, the Public Contract Code, relating to public contracts.\",Education\r\n\"An act to amend Section 50506.5 of the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to amend Section 52372.1 of the Education Code, relating to career technical education.\",Education\r\n\"An act to amend Sections 361.5, 366.21, 388, and 11404.1 of, and to add Section 361.49 to, the Welfare and Institutions Code, relating to dependent children, and declaring the urgency thereof, to take effect immediately.\",Family and Children Issues\r\n\"An act to amend Section 12715 of the Government Code, relating to gaming.\",Indigenous Peoples\r\n\"An act to amend Sections 12012 and 12157 of, and to repeal and add Sections 12013 and 12154 of, the Fish and Game Code, relating to fish and wildlife.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Sections 5371.4 and 5374 of, and add Section 5374.1 to, the Public Utilities Code, relating to charter-party carriers.\",Transportation\r\n\"3 of, and to repeal and add Chapter 3.2 (commencing with Section 41500) of Part 24 of Division 3 of Title 2 of, the Education Code, relating to public school finance, and making an appropriation therefor.\",Education\r\n\"An act to amend Section 116.220 of the Code of Civil Procedure, relating to small claims court.\",Judiciary\r\n\"An act to add Section 5028.5 to the Penal Code, relating to undocumented criminal aliens.\",Immigration\r\n\"An act to add Section 722 to the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to add Section 37222.5 to the Education Code, and to add Section 6715 to the Government Code, relating to state observances.\",Military\r\n\"An act to add Section 18901.4 to the Welfare and Institutions Code, relating to public social services.\",Public Services\r\n\"An act to add Section 49079.5 to the Education Code, relating to pupil data.\",Education\r\n\"An act to amend Sections 65400, 65582, 65583, and 65583.1 of the Government Code, relating to land use.\",Housing and Property\r\n\"An act to add Section 1374.74 to the Health and Safety Code and to add Section 10144.7 to the Insurance Code, relating to health care coverage.\",Health\r\nAn act relating to community colleges.,Labor and Employment\r\n\"An act to amend Section 2040 of the Family Code, to amend Sections 250, 267, 279, 5000, 5302, 13111, 13206, and 13562 of, to amend and renumber Sections 5600, 5601, 5602, 5603, and 5604 of, to add Section 69 to, to add the heading of Chapter 3 (commencing with Section 5040) to Part 1 of Division 5 of, to add and repeal Part 4 (commencing with Section 5600) of Division 5 of, and to repeal the heading of Part 4 (commencing with Section 5600) of Division 5 of, the Probate Code, relating to nonprobate transfers.\",Legal Issues\r\n\"An act to amend Sections 11629.7 and 11629.84 of the Insurance Code, relating to auto insurance.\",Transportation\r\n\"An act to amend Section 164 of the Streets and Highways Code, relating to transportation.\",Transportation\r\n\"An act to amend Sections 927.2, 927.6, 927.7, and 927.11 of the Government Code, relating to resource conservation districts.\",Environmental\r\n\"An act to amend Section 14166.245 of the Welfare and Institutions Code, relating to Medi-Cal, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Sections 20209.12 and 20209.14 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend, repeal, and add Section 26840.10 of the Government Code, to amend Sections 103627 and 103627.5 of the Health and Safety Code, and to amend Section 18309 of the Welfare and Institutions Code, relating to domestic violence.\",Family and Children Issues\r\n\"An act to amend Section 273ab of the Penal Code, relating to child abuse.\",Family and Children Issues\r\n\"An act to amend Sections 217, 217.7, 217.8, and 217.9 of the Streets and Highways Code, relating to transportation.\",Transportation\r\n\"An act to amend Section 185036 of the Public Utilities Code, relating to high-speed rail.\",Transportation\r\n\"An act to amend Sections 72027, 72051, and 72060 of the Food and Agricultural Code, relating to wheat.\",Agriculture and Food\r\n\"An act to amend Section 52890 of the Education Code, relating to school-based programs.\",Education\r\n\"An act to amend Sections 41730, 41731, 41734, 41735, 41736, 41800, 42926, 44004, and 50001 of, and to add Sections 40004, 40116.5, and 41734.5 to, to add Chapter 12.8 (commencing with Section 42649) to Part 3 of Division 30 of, and to add and repeal Section 41780.01 of, the Public Resources Code, relating to solid waste.\",Environmental\r\n\"An act to add Section 25395.33 to the Health and Safety Code, relating to hazardous materials.\",Environmental\r\nAn act relating to energy.,Energy\r\nAn act relating to public safety.,Senior Issues\r\n\"An act to amend Section 89514 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 362.1 and 16002 of, and to repeal and add Section 16010.6 of, the Welfare and Institutions Code, relating to foster care.\",Family and Children Issues\r\n\"An act to add Section 1759.11 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 1091.5 of the Government Code, relating to conflicts of interest.\",Legal Issues\r\n\"An act to amend Sections 32370, 32371, and 32372 of the Education Code, relating to school facilities.\",Environmental\r\n\"An act to add Section 64.5 to the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Section 19574 of the Government Code, relating to public employment.\",Labor and Employment\r\n\"An act to amend Section 14166.245 of the Welfare and Institutions Code, relating to Medi-Cal, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Section 851.90 of, to amend and renumber Section 1000.8 of, and to add Chapter 2.6 (commencing with Section 1000.8) to Title 6 of Part 2 of, the Penal Code, relating to drug diversion.\",Judiciary\r\n\"An act to amend Section 666.5 of the Penal Code, and to amend Section 10851 of the Vehicle Code, relating to theft.\",Crime\r\n\"An act to amend Sections 303, 336, 342, 9003, 9004, 9005, 9007, 9008, 9034, 9035, 9050, 9053, 9054, 9063, 13247, and 13282 of, to add Sections 303.5, 9016, 9017, and 9018 to, to repeal Sections 9052, 13280, and 13281 of, and to repeal and add Sections 9001, 9002, 9006, 9009, 9012, 9013, 9014, 9015, and 9051 of, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 19050.8 of the Government Code, relating to civil service appointments.\",Labor and Employment\r\n\"An act to add Section 10111.5 to the Public Contract Code, relating to public contracts.\",Technology and Communication\r\n\"An act to add Section 17141 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Education\r\n\"An act to add Section 25943 to the Public Resources Code, and to add Sections 381.2 and 385.2 to the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Section 10127.17 of the Insurance Code, relating to life insurance and annuity products.\",Business and Consumers\r\n\"An act to add Chapter 17 (commencing with Section 26495) to Part 3 of Division 2 of Title 3 to the Government Code, relating to the Orange County Fire Authority.\",Public Services\r\n\"An act to add Section 798.47 to the Civil Code, relating to mobilehomes.\",Housing and Property\r\n\"An act to amend Section 19601.2 of, and to add Section 19596.21 to, the Business and Professions Code, relating to horse racing, and declaring the urgency thereof, to take effect immediately.\",Recreation\r\n\"An act to amend Sections 10085, 10085.5, and 10133.1 of, to add and repeal Section 6106.4 of, and to add, repeal, and add Section 10085.6 of, the Business and Professions Code, and to add and repeal Section 2944.6 of the Civil Code, relating to real estate brokers.\",Housing and Property\r\n\"An act to amend Section 17059 of the Revenue and Taxation Code, relating to taxation, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to add Section 22358.2 to the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 368 of the Penal Code, relating to elder abuse.\",Senior Issues\r\n\"An act to amend Section 8236 of, and to add Section 8235.5 to, the Education Code, relating to state preschool.\",State Agencies\r\n\"An act to amend Section 40206.5 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Sections 16000.5 and 16000.6 to the Welfare and Institutions Code, relating to Indian tribes.\",Family and Children Issues\r\n\"An act to amend Sections 779, 779.2, 779.5, 10009.6, and 10010 of the Public Utilities Code, relating to residential utility services.\",Public Services\r\n\"An act to add Chapter 17 (commencing with Section 26495) to Part 2 of Division 2 of Title 3 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to add Section 17214 to the Government Code, relating to local government finance.\",Municipal and County Issues\r\n\"An act to add Section 988.6 to the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to add Section 3001.5 to the Penal Code, relating to inmates.\",Crime\r\nAn act relating to state government.,State Agencies\r\nAn act relating to state employees.,Labor and Employment\r\n\"An act to amend Sections 48800, 48800.5, 48802, and 76001 of the Education Code, relating to pupils.\",Education\r\n\"An act to add Section 14310.1 to the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 65080 of, and to add Section 65080.02 to, the Government Code, and to amend Section 21159.28 of the Public Resources Code, relating to transportation planning.\",Transportation\r\n\"An act to add Chapter 1.2 (commencing with Section 8020) to Division 1 of Title 2 of the Government Code, relating to state government.\",State Agencies\r\n\"An act to amend Sections 700 and 703 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to add Section 3060.95 to the Penal Code, relating to parole.\",Crime\r\n\"An act to amend Section 1524 of the Penal Code, relating to search warrants.\",Legal Issues\r\n\"An act to amend Sections 218, 17207, and 24347.5 of, and to add Sections 195.152, 195.153, and 195.154 to, the Revenue and Taxation Code, relating to disaster relief, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Public Services\r\n\"An act to add Section 1232 to the Government Code, relating to state employees, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\n\"An act to amend Sections 17514 and 17592 of the Business and Professions Code, relating to business.\",Business and Consumers\r\n\"An act to add Section 355.5 to the Code of Civil Procedure, relating to employment discrimination.\",Labor and Employment\r\n\"An act to add Section 44235.5 to the Education Code, relating to teacher credentialing.\",Education\r\n\"An act to amend Section 14000 of the Education Code, relating to education finance.\",Education\r\n\"An act to amend Section 48205 of the Education Code, relating to pupils.\",Education\r\n\"An act to add Division 3 (commencing with Section 64100) to Title 6.7 of the Government Code, and to amend Section 149.7 of the Streets and Highways Code, relating to transportation, and making an appropriation therefor.\",Transportation\r\n\"An act to amend Section 51182 of the Government Code, and to amend Section 4291 of the Public Resources Code, relating to public resources.\",Environmental\r\n\"An act to amend and repeal Section 42238.21 of, and to add Section 41054 to, the Education Code, relating to education finance.\",Education\r\n\"An act to amend Section 115841 of the Health and Safety Code, relating to reservoirs.\",Environmental\r\n\"An act to amend Sections 1644, 1652, 1655, 1656, 1658, 1661, 1683, 1718, 1729, 1749, 1749.3, 1749.31, 1751, 1758.3, 1758.692, 1758.7, 1758.81, 1758.92, and 12418.3 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Section 2301 of the Fish and Game Code, relating to invasive aquatic species.\",Environmental\r\n\"An act to amend Section 11504 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 1016.5 of the Penal Code, relating to criminal procedure.\",Judiciary\r\n\"An act to amend Sections 6220, 6221, 6227, and 6228 of the Penal Code, relating to restitution centers.\",Other\r\n\"An act to amend Section 13558 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 23051.5 of the Revenue and Taxation Code, relating to taxation.\",\"Federal, State, and Local Relations\"\r\n\"An act to amend Section 48850 of  the Education Code, relating to interscholastic athletics.\",Education\r\n\"An act to amend Sections 1789.30 and 1789.35 of the Civil Code, and to amend Sections 13004.1 and 14610.1 of the Vehicle Code, relating to identification documents.\",Legal Issues\r\n\"An act to add Section 25503.42 to the Business and Professions Code, relating to alcoholic beverages, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act to repeal and add Section 1611.5 of the Unemployment Insurance Code, relating to unemployment insurance.\",Labor and Employment\r\n\"An act to amend the heading of Article 5 (commencing with Section 827) of Chapter 1 of Part 2 of Division 3.6 of Title 1 of, and to add Sections 828 and 12511.6 to, the Government Code, relating to government liability.\",Legal Issues\r\n\"An act to amend Section 1279.7 of the Health and Safety Code, relating to health facilities.\",Health\r\n\"An act to amend Sections 350, 653h, 653s, 653u, 653w, 653z, 653aa, and 1202.4 of, and to add Chapter 5.8 (commencing with Section 13849) to Title 6 of Part 4 of, the Penal Code, relating to intellectual property piracy, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to add and repeal Sections 369.6 and 739.6 of the Welfare and Institutions Code, relating to dependent children.\",Health\r\n\"An act to amend Sections 19889.7 and 22959.6 of the Government Code, relating to public employees, and making an appropriation therefor.\",Labor and Employment\r\n\"An act to add Article 5 (commencing with Section 17615) to Chapter 5 of Part 10.5 of Division 1 of Title 1 of the Education Code, relating to school facilities.\",Education\r\n\"An act to add Chapter 2 (commencing with Section 101990) to Part 6 of Division 101 of the Heath and Safety Code, relating to health facilities.\",Education\r\n\"An act to amend Section 1622.6 of, and to repeal and add Sections 1612.5 and 1612.7 of, the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Sections 56836.08 and 56836.10 of the Education Code, relating to special education.\",Education\r\n\"An act to amend Section 18930.5 of the Health and Safety Code, and to add Section 25402.11 to the Public Resources Code, relating to building standards.\",Environmental\r\n\"An act to amend Section 1799.102 of the Health and Safety Code, relating to personal liability, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to amend Sections 1367.21 and 1370.4 of the Health and Safety Code, to amend Sections 10123.195 and 10145.3 of the Insurance Code, and to amend Sections 14105.43 and 14133.2 of the Welfare and Institutions Code, relating to drugs and devices.\",Health\r\n\"An act to amend Section 8545.1 of the Government Code, relating to the State Auditor.\",State Agencies\r\n\"An act to amend Section 1936 of the Civil Code, relating to rental vehicles.\",Transportation\r\n\"An act to add Chapter 7 (commencing with Section 42900) to Part 4 of Division 26 of the Health and Safety Code, relating to air pollution.\",Agriculture and Food\r\n\"An act to add Article 15.1 (commencing with Section 51875) to Chapter 5 of Part 28 of Division 4 of Title 2 of the Education Code, relating to education technology.\",Education\r\n\"An act to add Section 46300.8 to the Education Code, relating to school attendance.\",Education\r\n\"An act to add Section 142.8 to the Labor Code, relating to working conditions.\",Health\r\n\"An act to amend Section 3019 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 19401 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to amend Sections 1400, 1401, 1402, 1402.5, and 1403 of, and to add Sections 1400.5, 1401.5, and 1401.6 to, the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Sections 19570 and 19590 of the Government Code, relating to state employees. .\",Labor and Employment\r\n\"An act to amend Sections 17553, 17557, 17557.2, and 17558 of, and to add Article 2.5 (commencing with Section 17590) to Chapter 4 of Part 7 of Division 4 of Title 2 of, the Government Code, relating to state-mandated costs.\",Education\r\n\"An act to amend Section 5056.5 of the Penal Code, relating to corrections.\",Crime\r\n\"An act to add Section 12999.7 to the Food and Agricultural Code, to add Sections 25196.5 and 43032 to the Health and Safety Code, to add Section 6437 to the Labor Code, and to add Section 13363 to the Water Code, relating to civil and administrative penalties.\",State Agencies\r\n\"An act to amend Section 14838 of the Government Code, relating to state contracting.\",Business and Consumers\r\n\"An act to amend Section 12945.2 of the Government Code, relating to family and medical leave.\",Labor and Employment\r\n\"An act to amend Section 21606.5 of, to repeal Section 21608.3 of, and to repeal and amend Section 21608.5 of, the Business and Professions Code, relating to junk dealers and recyclers.\",Business and Consumers\r\n\"An act to amend Section 1090 of the Government Code, relating to conflicts of interest.\",Business and Consumers\r\n\"An act to amend Section 42238 of, to amend and repeal Sections 42238.21, 42238.22, and 42241.2 of, to amend, repeal, and add Sections 45023.1 and 45023.4 of, and to add Section 42238.485 to, the Education Code, relating to education finance.\",Education\r\n\"An act to amend Section 441 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Sections 56425 and 56430 of, and to add Sections 56033.5 and 56650.1 to, the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to add Section 273 to the Labor Code, relating to employment.\",Labor and Employment\r\nAn act relating to taxation.,Technology and Communication\r\n\"An act to add Section 14236 to the Unemployment Insurance Code, relating to workforce development.\",Labor and Employment\r\n\"An act to amend Sections 11378 and 11379 of the Health and Safety Code, and to add Section 1203.077 to the Penal Code, relating to controlled substances.\",Crime\r\n\"An act to amend Sections 44024.5, 44062.1, and 44094 of, and to add Section 44012.7 to, the Health and Safety Code, relating to air pollution.\",Transportation\r\n\"An act to amend Section 12168.7 of the Government Code, relating to state records.\",State Agencies\r\n\"An act to amend Section 261 of the Penal Code, relating to sexual assault.\",Crime\r\n\"An act to add Section 19609 to the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to add Section 8588.8 to the Government Code, relating to emergencies.\",Public Services\r\n\"An act to amend Section 10089.13 of the Insurance Code, relating to the California Earthquake Authority.\",State Agencies\r\n\"An act to amend Section 798.2 of, and to add Article 8.5 (commencing with Section 798.89) to Chapter 2.5 of Title 2 of Part 2 of Division 2 of, the Civil Code, relating to mobilehome parks.\",Housing and Property\r\n\"An act to amend Sections 42250, 42251, 42252, 42253, and 42254 of, to amend the heading of Chapter 5.1 (commencing with Section 42250) of Part 3 of Division 30 of, to add Sections 42252.5 and 42252.7 to, and to repeal and add Sections 42256 and 42257 of, the Public Resources Code, relating to single-use carryout bags.\",Environmental\r\n\"An act to amend Section 626.10 of the Penal Code, relating to crime.\",Crime\r\n\"An act to amend Section 42270 of, and to add Section 42270.5 to, the Education Code, relating to education finance.\",Education\r\n\"An act to amend Section 60200 of the Education Code, relating to instructional materials.\",Other\r\n\"An act to amend Section 4466 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 115800 of the Health and Safety Code, relating to recreational activities.\",Recreation\r\nAn act relating to local government.,Recreation\r\n\"An act to amend Sections 5956, 5956.1, 5956.2, 5956.3, 5956.4, 5956.5, 5956.6, 5956.7, 5956.8, 5956.9, and 5956.10 of, and to add Section 5956.11 to, the Government Code, relating to infrastructure financing.\",Other\r\n\"An act to amend Section 101.10 of the Streets and Highways Code, relating to highways.\",Transportation\r\nAn act relating to criminal procedure.,Crime\r\n\"An act to add Division 11 (commencing with Section 19900) to the Welfare and Institutions Code, relating to social services, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Senior Issues\r\n\"An act to amend Section 11165.7 of the Penal Code, relating to mandated child abuse reporting.\",Family and Children Issues\r\nAn act relating to energy.,Energy\r\n\"An act to add Section 25608.2 to the Business and Professions Code, relating to alcoholic beverages.\",Education\r\n\"An act to amend Sections 5832, 5833, 5834, 5841, 5841.5, and 5842 of, and to repeal Section 5842.5 of, the Public Resources Code, relating to open-space preservation, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to add Article 2.5 (commencing with Section 30130.5) to Chapter 2 of Part 13 of Division 2 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Health\r\n\"An act to add Section 116335 to the Health and Safety Code, relating to public water systems.\",Health\r\n\"An act to add Article 2.5 (commencing with Section 11250) to Chapter 3 of Title 1 of Part 4 of the Penal Code, relating to gang abatement.\",Housing and Property\r\n\"An act to amend Sections 39626.5 and 39627.5 of the Health and Safety Code, relating to air pollution, and making an appropriation therefor.\",Environmental\r\n\"An act to amend Section 46600 of the Education Code, relating to education.\",Education\r\n\"An act to amend Sections 9005 and 9087 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 14102 and 14272 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend and repeal Section 14105.18 of the Welfare and Institutions Code, relating to health care.\",Health\r\n\"An act to amend Sections 17533.6 and 17537.9 of the Business and Professions Code, to amend Section 1195 of the Civil Code, to amend Section 3505 of the Commercial Code, and to amend Sections 8205, 8208, 8211, and 27287 of, and to add Section 12181 to, the Government Code, relating to documents.\",Other\r\n\"An act to amend Sections 82015 and 82031 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 1799.102 of the Health and Safety Code, relating to personal liability.\",Legal Issues\r\n\"An act to add Article 6 (commencing with Section 8290) to Chapter 7 of Division 4 of the Public Utilities Code, relating to public utilities.\",Public Services\r\n\"An act to amend Section 51298 of, to add Section 51298.5 to, and to repeal Chapter 8 (commencing with Section 51298) of Part 1 of Division 1 of Title 5 of, the Government Code, relating to local government finance.\",Municipal and County Issues\r\n\"An act to amend Sections 48100, 48623, 48624, 48631, 48632, 48645, 48650, 48651, 48652, 48653, 48656, 48660, 48660.5, 48661, 48662, 48670, 48673, 48674, 48690, and 48691 of, to add Sections 48620.2 and 48651.5 to, and to repeal Sections 48633 and 48634 of, the Public Resources Code, relating to oil, and making an appropriation therefor.\",Environmental\r\n\"An act to amend Section 1203.1b of the Penal Code, relating to probation.\",Crime\r\n\"An act to amend Sections 13386 and 23576 of, and to add and repeal Chapter 5 (commencing with Section 23700) of Division 11.5 of, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Sections 41017.5 and 41028 to the Revenue and Taxation Code, relating to telecommunications.\",Public Services\r\n\"An act to add and repeal Section 1257.10 of the Health and Safety Code, relating to health facilities.\",Public Services\r\n\"An act to amend Section 13385 of the Water Code, relating to water.\",Legal Issues\r\n\"An act to amend Section 13385 of the Water Code, relating to water quality.\",Legal Issues\r\n\"An act to amend Section 25740 of the Public Resources Code, and to amend Sections 399.11, 399.12, 399.14, and 399.15 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Sections 13291 and 13291.5 of the Water Code, relating to water quality.\",Public Services\r\n\"An act to add Chapter 2 (commencing with Section 150) to Division 1 of the Welfare and Institutions Code, relating to charitable donations.\",Other\r\n\"An act relating to state claims, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend Section 2827 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to add and repeal Section 60100.2 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Energy\r\n\"An act to amend Section 1808.4 of the Vehicle Code, relating to the Department of Motor Vehicles.\",State Agencies\r\n\"An act to amend Section 47602 of the Education Code, relating to charter schools.\",Education\r\n\"An act to add Chapter 6.3 (commencing with Section 42380) to Part 3 of Division 30 of the Public Resources Code, relating to recycling.\",Environmental\r\n\"An act to amend Section 14837 of the Government Code, to amend Section 999 of the Military and Veterans Code, and to amend Sections 10111, 10302, 10344, and 12104.5 of the Public Contract Code, relating to public contracts.\",State Agencies\r\n\"An act to amend Section 1375 of the Civil Code, relating to common interest developments.\",Housing and Property\r\n\"An act relating to the payment of claims against the state, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to amend Section 1261.5 of the Health and Safety Code, relating to health facilities.\",Public Services\r\n\"An act to amend Sections 8278.3, 8279.4, 8279.5, and 8279.6 of the Education Code, relating to child care and development services, and making an appropriation therefor.\",Family and Children Issues\r\n\"An act to add Section 140 to the Water Code, relating to water.\",Environmental\r\n\"An act to amend Section 1417.2 of the Health and Safety Code, relating to long-term health care facilities.\",Health\r\n\"An act to amend Section 23036 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 12314 to the Penal Code, relating to destructive devices.\",Other\r\n\"An act to amend Section 7260 of the Government Code, to amend Sections 37002, 37022, 37034, and 37035 of the Public Resources Code, and to amend Sections 17053.30 and 23630 of the Revenue and Taxation Code, relating to conservation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 7620, 7845, 8616.5, 8814.5, 9007, and 9211 of the Family Code, relating to adoption.\",Family and Children Issues\r\n\"An act to amend Sections 69614 and 69615 of the Government Code, relating to courts.\",Judiciary\r\n\"An act to add Chapter 3.6 (commencing with Section 1024.5) to Part 2 of Division 2 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 18671.1 of the Government Code, relating to public employment.\",Labor and Employment\r\n\"An act to amend Section 201.3 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 76141 of the Education Code, relating to nonresident tuition.\",Education\r\n\"An act to amend Section 8879.69 of the Government Code, relating to transportation.\",Transportation\r\n\"An act to amend Sections 1250, 1250.1, 1266, 1746, and 128755 of, and to add Sections 1749.1 and 1749.3 to, the Health and Safety Code, relating to hospice care.\",Health\r\n\"An act to amend Sections 5378, 5378.5, 5411, 5411.3, 5412, 5412.2, 5413, 5413.5, and 5414 of the Public Utilities Code, relating to charter-party carriers.\",Transportation\r\n\"An act to amend Section 1808.22 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 12929.5 to the Insurance Code, relating to the Insurance Commissioner.\",Insurance\r\n\"An act to amend Section 3304 of the Government Code, relating to public safety officers.\",Public Services\r\n\"An act to add Section 14106 to the Government Code, relating to air pollution.\",State Agencies\r\n\"An act to add and repeal Article 1.8 (commencing with Section 1103.20) of Chapter 2 of Title 4 of Part 4 of Division 2 of, the Civil Code, relating to real property, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to amend Sections 25299.81, 25299.105, 25299.109, and 25299.117 of, and to amend and repeal Section 41964 of, the Health and Safety Code, relating to public health, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Energy\r\n\"An act to add Article 14 (commencing with Section 10485) to Chapter 2 of Part 2 of Division 2 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend Section 12316 of, to add Sections 12317 and 12318 to, to add Article 3.5 (commencing with Section 12060) to Chapter 1 of, to add a heading for Chapter 2.6 (commencing with Section 12316) to, and to repeal the heading of Chapter 2.6 (commencing with Section 12320) of, Title 2 of Part 4 of, the Penal Code, relating to ammunition.\",Guns\r\n\"An act to amend Section 22708 of the Education Code, and to amend Section 20968 of the Government Code, relating to state employees, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\nAn act relating to state employees.,Labor and Employment\r\n\"An act to amend Section 2610 of the Family Code, and to amend Sections 20037.6, 20037.7, 20037.8, 20037.9, 20037.10, 20037.11, 20037.12, 20039.5, 20069, 20164, 20195, 20221, 20228, 20281.5, 20283, 20305, 20475, 20479, 20636.1, 20962, 20967, 21117, 21118, 21252, 21264, 21296, 21753, 22839, 22960.15, 75006, 75028.5, and 75507 of, to add Sections 20831.2, 21310.5, and 75080.5 to, and to repeal Sections 20041 and 20043 of, the Government Code, relating to public employee benefits.\",Labor and Employment\r\n\"An act to amend Section 1240.010 of the Code of Civil Procedure, relating to eminent domain.\",Housing and Property\r\n\"An act to amend Sections 13576 and 13577 of, and to repeal Section 13578 of, the Water Code, relating to water.\",Environmental\r\n\"An act to add Section 60605.85 to the Education Code, relating to school curriculum.\",Education\r\nAn act relating to elections.,Campaign Finance and Election Issues\r\n\"An act to add Section 42135 to the Education Code, relating to school finance.\",Education\r\n\"An act to amend, repeal, and add Section 305.6 of the Welfare and Institutions Code, relating to minors.\",Family and Children Issues\r\n\"An act to add Sections 48950.1, 48950.2, and 48950.3 to the Education Code, relating to pupil rights, and declaring the urgency thereof, to take effect immediately.\",Social Issues\r\n\"An act to amend Section 51745 of the Education Code, relating to public schools.\",Education\r\n\"An act to add Sections 1020 and 1021 to the Fish and Game Code, relating to fish and game.\",Animal Rights and Wildlife Issues\r\n\"An act to add Section 10123.865 to the Insurance Code, relating to health care coverage.\",Reproductive Issues\r\n\"An act to add Section 41320.4 to the Education Code, relating to school finance.\",Public Services\r\n\"An act to amend Section 70377 of the Government Code, relating to court facilities.\",Judiciary\r\n\"An act to amend Sections 14560, 14571.2, 14571.8, 14574, 14575, 14581, and 14585 of, to add Sections 14515.3, 14526.8, 14571.6.5, 14571.6.6, 14571.6.7, and 14580.5 to, and to amend, repeal, and add Section 14504 of, the Public Resources Code, relating to recycling, and making an appropriation therefor.\",Environmental\r\n\"An act to amend Sections 12956.1 and 12956.2 of, to add Section 27361.05 to, and to add Article 3.6 (commencing with Section 27310) to Chapter 6 of Part 3 of Division 2 of Title 3 of, the Government Code, relating to real property.\",Housing and Property\r\n\"An act to amend Section 789 of the Insurance Code, relating to senior insurance.\",Senior Issues\r\n\"An act to amend Section 21628 of the Business and Professions Code, relating to secondhand goods.\",Business and Consumers\r\n\"An act to add Part 8.2 (commencing with Section 7935) to Division 5 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Sections 301.5, 301.7, 1300, 1301, 1502.1, 2115, 2117.1, 25014.7, 25100, 25101, 25117, 25211, 25219, 25231, and 25247 of the Corporations Code, relating to corporations.\",Business and Consumers\r\n\"An act to amend Section 17537.9 of the Business and Professions Code, relating to unfair business practices.\",Commerce\r\n\"An act to amend Section 42310 of the Public Resources Code, relating to solid waste.\",Environmental\r\n\"An act to amend Section 1635.1 of the Health and Safety Code, relating to tissue banks.\",Health\r\n\"An act to add Section 68106 to the Government Code, relating to courts.\",Judiciary\r\n\"An act to add Section 290.47 to the Penal Code, relating to sex offenders.\",Crime\r\n\"An act to add Section 14132.70 to the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\nRelative to calling a convention for the revision of the California Constitution.,Government Reform\r\nRelative to support for Israel.,Other\r\nRelative to teen dating violence.,Social Issues\r\nRelative to Buy California Small Business First Month.,Business and Consumers\r\nRelative to the Joe Colla Interchange.,Resolutions\r\nRelative to the Los Angeles County Deputy Sheriff Juan Abel Escalante Memorial Highway.,Public Services\r\n\"Relative to Martin Luther King, Jr. Day.\",Resolutions\r\nRelative to Perinatal Depression Awareness Month.,Health\r\nRelative to Black History Month.,Civil Liberties and Civil Rights\r\nRelative to the Roy Wilson Memorial Highway.,Transportation\r\nRelative to the Lunar New Year 4707 celebration.,Resolutions\r\nRelative to Step Up California Month and Step Up California Day.,Resolutions\r\nRelative to California Civics Day for Teachers.,Resolutions\r\nRelative to Cuss Free Week.,Resolutions\r\nRelative to the Bracero Memorial Highway.,Transportation\r\nRelative to a Day of Remembrance.,Resolutions\r\nRelative to California Safe Digging Month.,Resolutions\r\nRelative to California Lab Day.,Resolutions\r\nRelative to Rare Disease Day.,Health\r\nRelative to Spay Day USA 2010.,Animal Rights and Wildlife Issues\r\nRelative to Boy Scouts of America.,Family and Children Issues\r\nRelative to the National Purple Heart Trail.,Military\r\nRelative to Read Across America Day.,Education\r\nRelative to County Government Month 2010.,Resolutions\r\nRelative to the Eric W. Rood Memorial Expressway.,Transportation\r\nRelative to the California Memorial Project Remembrance Day.,Resolutions\r\nRelative to health facilities.,Health\r\nRelative to the El Salvador Community Corridor.,Other\r\nRelative to school recycling.,Environmental\r\nRelative to international treaties.,Other\r\nRelative to decennial census.,Public Services\r\nRelative to the Arnold C. Garcia Memorial Highway.,Transportation\r\nRelative to Historic Highway Route 94.,Transportation\r\nRelative to the John F. Reginato Boat Ramp.,Transportation\r\nRelative to Earth Hour.,Environmental\r\nRelative to Child Abuse Prevention Month.,Resolutions\r\nRelative to West Nile Virus and Mosquito and Vector Control Awareness Week.,Health\r\nRelative to the Lake County Veterans Memorial Highway.,Transportation\r\nRelative to Latino Education and Advocacy Week.,Resolutions\r\nRelative to the California Community Colleges.,Education\r\nRelative to Cinco de Mayo Week.,Other\r\nRelative to the California Global Warming Solutions Act of 2006.,Environmental\r\nRelative to incarceration.,Immigration\r\nRelative to Viral Hepatitis Awareness Day.,Health\r\nRelative to pollution.,Environmental\r\nRelative to Genocide Awareness and Prevention Month.,Resolutions\r\nRelative to California Healthy Schools Day.,Resolutions\r\n\"Relative to the Sergeant Mark Dunakin, Sergeant Ervin Romans, and Officer John Hege Memorial Bridge.\",Transportation\r\nRelative to Financial Aid and Literacy Month.,Commerce\r\nRelative to the Kevin Murray Highway.,Transportation\r\nRelative to the John Sanford Todd Memorial Highway.,Transportation\r\nRelative to African American Mental Health Awareness Week.,Resolutions\r\nRelative to in-home supportive services.,Health\r\nRelative to vehicles.,Transportation\r\nRelative to Equal Pay for Women Day.,Labor and Employment\r\nRelative to Sexual Assault Awareness Month and Denim Day California.,Crime\r\nRelative to Asian and Pacific Islander American Heritage Month.,Other\r\nRelative to Women Veterans Recognition Month.,Military\r\nRelative to the CHP Officer Johnny R. Martinez Memorial Highway.,Transportation\r\n\"Relative to the Joint Rules of the Senate and Assembly for the 2009̢\"\"10 Regular Session.\",Legislative Affairs\r\nRelative to California Nurses Week 2010.,Resolutions\r\nRelative to Disability History Week.,Resolutions\r\nRelative to domestic worker rights.,Labor and Employment\r\nRelative to the Deputy Sheriff Joel B. Wahlenmaier Memorial Highway.,Transportation\r\nRelative to the Mayor Dick DeWees Memorial Highway.,Transportation\r\nRelative to Students with Epilepsy Month.,Education\r\nRelative to chronic obstructive pulmonary disease.,Health\r\nRelative to Hearing Aid Awareness Month.,Resolutions\r\nRelative to American Heart Month and Wear Red Day.,Health\r\nRelative to the Williamson Act.,Legislative Affairs\r\nRelative to Yellow Ribbon Week.,Other\r\nRelative to the Ernest N. Mobley Memorial Interchange.,Resolutions\r\nRelative to Native Plant Week.,Resolutions\r\nRelative to the Deputy Sheriff Kenneth James Collier Memorial Bridge.,Transportation\r\nRelative to the Detective Monty L. Conley and Detective Joe R. Landin Memorial Highway.,Transportation\r\nRelative to the 20th anniversary of the Americans with Disabilities Act.,Resolutions\r\nRelative to state employee merit awards.,Labor and Employment\r\nRelative to the Paul Johnson Highway.,Transportation\r\nRelative to Lyme Disease Awareness Month.,Health\r\nRelative to the Joint Committee on the Master Plan for Higher Education.,Education\r\nRelative to California Native American Day.,Resolutions\r\nRelative to Red Ribbon Week.,Resolutions\r\nRelative to Spay Day USA 2009.,Animal Rights and Wildlife Issues\r\n\"Relative to Martin Luther King, Jr. Hospital.\",Health\r\nRelative to a Day of Remembrance.,Resolutions\r\nRelative to Read Across America Day.,Education\r\nRelative to Black History Month.,Civil Liberties and Civil Rights\r\nRelative to the John Knabenbauer Fifth Street Bridge.,Transportation\r\nRelative to Mitochondrial Disease Awareness Week.,Resolutions\r\nRelative to arts education.,Resolutions\r\nRelative to World Languages and Cultures Month.,Arts and Humanities\r\nRelative to Eating Disorders Awareness Week.,Resolutions\r\nRelative to health disparities.,Social Issues\r\nRelative to the Los Angeles County Deputy Sheriff David Powell Memorial Highway.,Public Services\r\nRelative to California Holocaust Memorial Week.,Resolutions\r\nRelative to Native American tribal rights.,Legal Issues\r\nRelative to the Deputy Kent Hintergardt Memorial Highway.,Transportation\r\nRelative to the Los Angeles County Deputy Sheriff Maria Cecilia Rosa Memorial Highway.,Transportation\r\nRelative to Viral Hepatitis Awareness Day.,Health\r\nRelative to the Greatest Generation Memorial Highway.,Transportation\r\nRelative to California Public Safety Telecommunicators Week.,Technology and Communication\r\nRelative to Financial Aid and Literacy Month.,Commerce\r\nRelative to children.,Resolutions\r\nRelative to the investments of the University of California.,Education\r\nRelative to West Nile Virus and Mosquito and Vector Control Awareness Week.,Health\r\nRelative to California Indian Heritage Month.,Resolutions\r\nRelative to Motorcycle Awareness Month.,Resolutions\r\nRelative to the federal decennial census.,\"Federal, State, and Local Relations\"\r\nRelative to California Holocaust Memorial Week.,Resolutions\r\nRelative to Cinco de Mayo Week.,Other\r\nRelative to the Deputy James Throne Memorial Highway.,Transportation\r\nRelative to the California Law Revision Commission.,Legal Issues\r\nRelative to California Science Education Month.,Resolutions\r\nRelative to the 2009 State Scientist Day.,Science and Medical Research\r\nRelative to Cambodian Genocide Memorial Week.,Resolutions\r\nRelative to high technology.,Technology and Communication\r\nRelative to Autism Awareness Month.,Health\r\nRelative to education finance.,Education\r\nRelative to workplace bullying training at the University of California.,Labor and Employment\r\nRelative to acupuncture.,Health\r\nRelative to the Dalai Lama and Tibet Awareness Day.,Other\r\nRelative to the Deputy David G. Graves Memorial Freeway.,Transportation\r\nRelative to chronic obstructive pulmonary disease.,Health\r\nRelative to Foster Care Month.,Family and Children Issues\r\nRelative to Hepatitis B Awareness Month.,Health\r\nRelative to higher education.,Education\r\nRelative to American Stroke Month 2009.,Resolutions\r\nRelative to Public Service Recognition Week.,Public Services\r\nRelative to NASCAR Day.,Resolutions\r\n\"Relative to Dr. Martin Luther King, Jr. Day.\",Resolutions\r\nRelative to Asian and Pacific Islander American Heritage Month..,Other\r\nRelative to the Milton La Malfa Memorial Highway.,Transportation\r\nRelative to Pain Awareness Month.,Health\r\nRelative to the Early College High School Initiative.,Education\r\nRelative to promotores and community health workers.,Health\r\nRelative to Day of Inclusion.,Resolutions\r\nRelative to the California Global Warming Solutions Act of 2006.,Environmental\r\nRelative to the CHP Officer John P. Miller Memorial Highway.,Transportation\r\nRelative to the Sergeant Daniel Sakai Memorial Highway.,Transportation\r\nRelative to California Fitness Month.,Health\r\nRelative to a Bill of Rights for the Children and Youth of California.,Family and Children Issues\r\nRelative to Yellow Ribbon Week.,Other\r\nRelative to employment.,Labor and Employment\r\nRelative to the California Constitution Revision Commission.,Government Reform\r\n\"Relative to New United Motor Manufacturing, Inc.\",Transportation\r\nRelative to Sonoma Wine Country Weekend.,Agriculture and Food\r\nRelative to support for human rights for Iranian citizens.,Resolutions\r\nRelative to Education.,Education\r\nRelative to Italian American Heritage Month.,Resolutions\r\nRelative to Korean-American Day.,Resolutions\r\nRelative to Alcohol and Drug Addiction Recovery Month.,Resolutions\r\nRelative to pet adoption.,Resolutions\r\nRelative to the release of convicted Lockerbie bomber Abdelbaset Ali Mohmed Al Megrahi.,Resolutions\r\nRelative to Red Ribbon Week.,Resolutions\r\nRelative to the CHP Officer Joseph P. Sanders Memorial Highway.,Transportation\r\nRelative to California Native American Day.,Resolutions\r\nRelative to Korean-American Day.,Resolutions\r\nRelative to Make a Difference Day.,Resolutions\r\nRelative to the Lunar New Year 4708 celebration.,Resolutions\r\nRelative to the Day of the Special Educator.,Education\r\nRelative to Social Security.,Labor and Employment\r\nRelative to National Multicultural Cancer Awareness Week.,Resolutions\r\nRelative to blood donation.,Health\r\nRelative to the Armenian Genocide.,Resolutions\r\nRelative to the Uniting American Families Act.,Family and Children Issues\r\nRelative to journalism shield laws.,Other\r\nRelative to HIV/AIDS health disparities.,Social Issues\r\nRelative to marriage.,Family and Children Issues\r\nRelative to Mexican braceros.,Housing and Property\r\nRelative to the federal Housing Opportunity and Mortgage Equity Act.,Housing and Property\r\nRelative to the Dairy Industry.,Agriculture and Food\r\nRelative to Iranian persecution: Baha̢i.,Resolutions\r\nRelative to the economy.,\"Budget, Spending, and Taxes\"\r\nRelative to marine air pollution.,Environmental\r\nRelative to Filipino World War II veterans.,Military\r\nRelative to climate change.,Environmental\r\nRelative to the Colombia-United States free trade agreement.,Commerce\r\nRelative to health care coverage.,Insurance\r\nRelative to offshore oil drilling.,Environmental\r\nRelative to geothermal power projects and tax incentives.,Energy\r\nRelative to special education funding.,Education\r\nRelative to gender discrimination.,Sexual Orientation and Gender Issues\r\nRelative to aviation.,Transportation\r\nRelative to hearing aids.,Health\r\nRelative to public resources.,Animal Rights and Wildlife Issues\r\nRelative to the Voter Registration Modernization Act of 2009.,Campaign Finance and Election Issues\r\nRelative to immigration.,Immigration\r\nRelative to public resources.,Public Services\r\nRelative to Economic Stimulus Funds.,Commerce\r\nRelative to gang violence prevention.,Crime\r\nRelative to Santa Monica Airport.,Transportation\r\nRelative to the Medicare Secondary Payer Enhancement Act of 2010.,Public Services\r\nRelative to television audio loudness.,Technology and Communication\r\nRelative to Lifelong Learning Accounts.,Education\r\nRelative to autism in military families.,Military\r\nRelative to Guantanamo Bay detainees.,Legal Issues\r\nRelative to elder citizens.,Other\r\nRelative to stem cell research.,\"Federal, State, and Local Relations\"\r\nRelative to marine mammal protection.,Animal Rights and Wildlife Issues\r\nRelative to the Ryan White HIV/AIDS Treatment Modernization Act of 2006.,Health\r\n\"An act to amend Sections 123870 and 123955 of the Health and Safety Code, to amend Sections 12693.43, 12693.70, 12693.73, 12693.76, and 12694 of, to add Sections 12693.55.1, 12693.56, 12693.57, 12693.701, and 12693.983 to, and to add Chapter 16.2 (commencing with Section 12694.1) to Part 6.2 of Division 2 of, the Insurance Code, and to amend Section 14005.23 of, and to add Sections 14005.26, 14011.01, 14011.02, and 14011.61 to, the Welfare and Institutions Code, relating to health care coverage.\",Health\r\n\"An act to add Part 5.6 (commencing with Section 11160) to Division 2 of the Revenue and Taxation Code, relating to local government finance.\",Campaign Finance and Election Issues\r\n\"An act to add Sections 44227.1 and 52214 to the Education Code, relating to pupils.\",Education\r\n\"An act to add Section 2951 to the Civil Code, relating to mortgage appraisals.\",Housing and Property\r\n\"An act to amend Section 3 of Chapter 1358 of the Statutes of 1987, relating to state property.\",Environmental\r\n\"An act to amend and repeal Section 32132.5 of the Health and Safety Code, relating to health care districts.\",Health\r\n\"An act to amend Sections 82023, 82024, 82036, 82036.5, 84101, 84200.5, 84215, and 85204 of, to add Section 84200.9 to, and to repeal and add Section 84225 of, the Government Code, relating to the Political Reform Act of 1974.\",Senior Issues\r\n\"An act to amend Section 23055 of the Business and Professions Code, relating to alcoholic beverages.\",State Agencies\r\n\"An act to validate the organization, boundaries, acts, proceedings, and bonds of public bodies, and to provide limitations of time in which actions may be commenced, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to add and repeal Section 21099 of the Public Resources Code, relating to the environment, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Section 21100 of the Public Resources Code, relating to environmental quality.\",Environmental\r\n\"An act to amend Section 78531 of the Water Code, relating to water resources.\",Environmental\r\n\"An act to amend Section 79171 of the Water Code, relating to groundwater.\",Environmental\r\n\"An act to amend Section 78.5 of the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Section 80 of the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Section 2715 of the Commercial Code, relating to commercial transactions.\",Business and Consumers\r\n\"An act to amend Section 66499.7 of the Government Code, relating to subdivided lands.\",Other\r\n\"An act to validate the organization, boundaries, acts, proceedings, and bonds of public bodies, and to provide limitations of time in which actions may be commenced, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to add Sections 9143.5, 13335.3, and 13335.5 to the Government Code, relating to the State Budget.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 14681.5 of the Government Code, relating to state buildings.\",State Agencies\r\n\"An act to amend Section 25503.9 of the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to amend Section 57077 of, and to add and repeal Sections 56853.5 and 56853.6 of, the Government Code, relating to local government.\",Other\r\n\"An act to add Section 68667 to the Government Code, relating to courts.\",Judiciary\r\n\"An act to add Sections 6591.6, 7655.5, 8876.5, 12631.5, 30281.5, 32252.5, 40101.5, 41095.5, 43155.5, 45153.5, 46154.5, 50112.1, 55042.5, and 60207.5 to the Revenue and Taxation Code, relating to taxation.\",State Agencies\r\n\"An act to amend Sections 4145 and 4148 of, and to repeal Section 4140 of, the Business and Professions Code, and to amend Section 11364 of, to add Section 121281 to, and to repeal Chapter 13.5 (commencing with Section 121285) of Part 4 of Division 105 of, the Health and Safety Code, relating to public health.\",Health\r\n\"An act to validate the organization, boundaries, acts, proceedings, and bonds of public bodies, and to provide limitations of time in which actions may be commenced.\",Other\r\n\"An act to amend Section 3951 of the Family Code, relating to child support.\",Family and Children Issues\r\n\"An act to add Article 17.1 (commencing with Section 2399) to Chapter 5 of Division 2 of, and to repeal Section 2399.7 of, the Business and Professions Code, relating to medicine.\",Health\r\n\"An act to amend Section 6126.5 of the Penal Code, relating to corrections.\",Crime\r\n\"An act to amend Section 38570 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend, repeal, and add Section 12811.1 of the Public Utilities Code, relating to utility charges.\",Public Services\r\n\"An act to amend Section 19551.1 of the Revenue and Taxation Code, relating to taxation.\",Commerce\r\n\"An act to amend Section 667.6 of the Penal Code, relating to sex offenses.\",Crime\r\n\"An act to amend Section 4231 of, and to add Section 4231.5 to, the Probate Code, relating to powers of attorney.\",Judiciary\r\n\"An act to add Section 19.5 to the San Diego Unified Port District Act (Chapter 67 of the Statutes of 1962, First Extraordinary Session), relating to harbors and ports.\",Commerce\r\n\"An act to amend Section 281 of the Public Utilities Code, relating to telecommunications, and declaring the urgency thereof, to take effect immediately.\",Technology and Communication\r\n\"An act to amend Section 1260 of the Evidence Code, relating to hearsay evidence.\",Legal Issues\r\n\"An act to repeal Article 4 (commencing with Section 25420) of Chapter 5 of Part 2 of Division 2 of Title 3 of the Government Code, relating to local government.\",Military\r\n\"An act to add Chapter 2.7 (commencing with Section 18900) to Division 8 of the Business and Professions Code, relating to personal trainers.\",Health\r\n\"An act to amend Section 23399 of the Business and Professions Code, relating to alcoholic beverages.\",State Agencies\r\n\"An act to amend Sections 811.2, 900.2, 913, 915, and 940.2 of, and to add Sections 905.9, 912.5, and 935.9 to, the Government Code, relating to government liability.\",Education\r\n\"An act to amend Sections 53313.5 and 53324 of, and to add Sections 53328.1, 53329.6, 53355.5, and 53355.7 to, the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to amend Sections 1269c and 1270.1 of the Penal Code, relating to crimes.\",Crime\r\n\"An act to amend Section 6103.6 of the Business and Professions Code, and to amend Sections 2583, 15642, 16062, 21310, and 21355 of, and to add Part 3.7 (commencing with Section 21360) to Division 11 of, the Probate Code, relating to donative transfers.\",Other\r\n\"An act to add and repeal Section 49414.7 of the Education Code, relating to pupil health.\",Public Services\r\n\"An act to add Section 12218 to the Public Contract Code, and to amend Section 42926 of the Public Resources Code, relating to electronic waste.\",Technology and Communication\r\n\"An act to add Section 6377 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to amend Section 27362.1 of the Vehicle Code, relating to child passenger restraint systems.\",Transportation\r\n\"An act to add Section 11546.6 to the Government Code, relating to the State Chief Information Officer.\",State Agencies\r\n\"An act to add Sections 17053.81 and 23623.3 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Military\r\n\"An act to amend Section 6703 of the Government Code, relating to state holidays.\",State Agencies\r\n\"An act to amend Sections 331, 332, 3686, 4332, 4656, 4751, 4902, and 4903 of, to add Section 3953 to, to repeal Section 3685 of, and to repeal and add Sections 3684 and 4334 of, the Fish and Game Code, relating to hunting.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Sections 53234 and 53235.1 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to amend Section 266i of the Penal Code, relating to crimes.\",Crime\r\n\"An act to add Section 30914.2 to the Streets and Highways Code, relating to transportation.\",Military\r\n\"An act to amend Sections 7480, 70372, 70375 and 70625 of, and to repeal Section 70401 of, the Government Code, to amend Section 668 of the Harbors and Navigation Code, to amend Sections 266h, 266i, 273.6, 290.06, 786, 1203e, 1233.1, 1328d, 1417.6, 12021, 13821, 13885, 13885.1, 13885.2, 13885.4, 13885.6, and 13885.8 of, and to repeal Chapter 3 (commencing with Section 1228) of Title 8 of Part 2 of, the Penal Code, to amend Section 40000.7 of the Vehicle Code, and to repeal Section 58 of Chapter 28 of the Third Extraordinary Session of the Statutes of 2009, relating to public safety.\",Senior Issues\r\n\"An act to amend Section 12693.21 of the Insurance Code, relating to health care coverage.\",Education\r\n\"An act to amend Sections 125290.20, 125290.30, 125290.40, 125290.45, and 125290.60 of, and to add Sections 125290.71 and 125290.80 to, the Health and Safety Code, relating to stem cells.\",Health\r\n\"An act to amend Section 18533 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 6126 of, and to add Section 5040 to, the Penal Code, relating to corrections.\",Crime\r\n\"An act to amend Section 12838.3 of the Government Code, and to add Section 1710.5 to the Welfare and Institutions Code, relating to juveniles.\",Family and Children Issues\r\n\"An act to amend Section 23402 of, and to add Section 23363.4 to, the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to amend Section 3501 of, and to add Sections 3502.2 and 3502.3 to, the Business and Professions Code, to amend Sections 44336, 49406, 49423, 49455, 87408, 87408.5, and 87408.6 of, and to add Section 49458 to, the Education Code, and to amend Section 2881 of the Public Utilities Code, relating to physician assistants.\",Health\r\n\"An act to add and repeal Section 6363.4 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 65007 of the Government Code, relating to land use.\",Environmental\r\n\"An act to amend Sections 17052.12 and 23609 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Energy\r\n\"An act to amend Sections 821 and 824 of the Military and Veterans Code, relating to military service.\",Military\r\n\"An act to amend Section 485 of the Food and Agricultural Code, relating to agriculture.\",Agriculture and Food\r\n\"An act to add Section 11190.5 to the Penal Code, relating to inmates.\",Crime\r\n\"An act to amend Section 6528 of the Government Code, relating to charter schools.\",Education\r\n\"An act to add Sections 626.91 and 830.95 to, to add Title 2 (commencing with Section 12001) to Part 4 of, to add Part 6 (commencing with Section 16000) to, to repeal Section 653k of, and to repeal Title 2 (commencing with Section 12000) of Part 4 of, the Penal Code, relating to nonsubstantive reorganization of deadly weapon statutes.\",Guns\r\n\"An act to amend Section 20896 of the Government Code, relating to public employees̢ retirement.\",Senior Issues\r\n\"An act to amend Section 22009 of the Government Code, relating to public retirement.\",Senior Issues\r\n\"An act to amend Section 1250.8 of the Health and Safety Code, relating to health facilities.\",Health\r\nAn act relating to poverty.,Commerce\r\n\"An act to add Section 19567 to the Revenue and Taxation Code, relating to the Franchise Tax Board.\",Business and Consumers\r\n\"An act to amend Section 1202.4 of the Penal Code, relating to identity theft.\",Crime\r\n\"An act to amend Section 53088.7 of the Government Code, relating to cable television.\",Technology and Communication\r\n\"An act to amend Sections 1812.601 and 1812.607 of the Civil Code, relating to auctioneers.\",Housing and Property\r\n\"An act to amend Section 326.3 of the Penal Code, relating to gaming.\",Recreation\r\n\"An act to amend Section 32130.6 of the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend Section 809.3 of, and to add Section 809.04 to, the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to amend Sections 12718 and 12727 of, to add Sections 12712.5 and 12715.5 to, and to add and repeal Section 12721.5 of, the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Sections 25500.1, 25500.2, and 25502.1 of the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to amend Sections 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, and 2799 of the Public Utilities Code, relating to utility services.\",Energy\r\n\"An act to amend, repeal, and add Section 6106.7 of, to add Section 18897.98 to, to add Chapter 2.8 (commencing with Section 18900) to, and to repeal Chapter 2.5 (commencing with Section 18895) of, Division 8 of, the Business and Professions Code, relating to athlete agents.\",Recreation\r\n\"An act to amend Sections 11410 and 15200.5 of, and to add Section 11410.5 to, the Welfare and Institutions Code, relating to foster care.\",Family and Children Issues\r\n\"An act to add Article 8.10 (commencing with Section 31699.1) to Chapter 3 of Part 3 of Division 4 of Title 3 of the Government Code, relating to county employees retirement.\",Senior Issues\r\n\"An act to amend Sections 11163.6, 11174.5, 11174.7, 13515, 13823.16, 13836.1, and 14213 of, to amend the heading of Article 2.7 (commencing with Section 11174.4) of Chapter 2 of Title 1 of Part 4 of, to add Section 368.5 to, and to add a heading as Chapter 13 (commencing with Section 368) to Title 9 of Part 1 of, the Penal Code, and to amend Sections 4427.5, 15650, 15654, and 15763 of the Welfare and Institutions Code, relating to people with disabilities.\",Crime\r\n\"An act to add Article 3 (commencing with Section 42450.1) to Chapter 8 of Part 3 of Division 30 of the Public Resources Code, relating to product stewardship.\",Business and Consumers\r\n\"An act to amend Section 25503.4 of the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to amend Section 4000 of, to add Sections 4101.5, 4102.2, 4102.4, and 4102.6 to, and to repeal and add Sections 4101 and 4102 of, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 2207 of the Public Resources Code, relating to surface mining.\",Environmental\r\n\"An act to amend Section 1367.51 of the Health and Safety Code, and to amend Section 10176.61 of the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 1872.81 of the Insurance Code, relating to motor vehicle insurance.\",Transportation\r\n\"An act to amend Section 4171 of the Business and Professions Code, relating to pharmacy.\",Health\r\n\"An act to amend Sections 19312 and 19314 of the Food and Agricultural Code, to amend Section 16050 of the Public Resources Code, and to add Chapter 7.8 (commencing with Section 13590) to Division 7 of the Water Code, relating to grease.\",Environmental\r\n\"An act to add Section 14838.8 to the Government Code, relating to public contracts.\",Business and Consumers\r\n\"An act to amend and repeal Section 130105 of, to repeal Sections 130110, 130115, 130120, 130125, 130130, 130135, 130140, 130140.1, 130145, 130150, 130151, and 130155 of, and to repeal and add Section 130100 of, the Health and Safety Code, relating to child development, and declaring the urgency thereof, to take effect immediately.\",Family and Children Issues\r\n\"2815.6, 2669.2, 2770.18, 3534.12, 4375, and 4873.2 to, to add Article 10.1 (commencing with Section 720) and Article 16 (commencing with Section 880) to Chapter 1 of Division 2 of, and to repeal Article 4.7 (commencing with Section 1695) of Chapter 4 of, Article 15 (commencing with Section 2360) of Chapter 5 of, Article 5.5 (commencing with Section 2662) of Chapter 5.7 of, Article 3.1 (commencing with Section 2770) of Chapter 6 of, Article 6.5 (commencing with Section 3534) of Chapter 7.7 of, Article 21 (commencing with Section 4360) of Chapter 9 of, and Article 3.5 (commencing with Section 4860) of Chapter 11 of Division 2 of, the Business and Professions Code, to add Section 12529.8 to the Government Code, and to amend Section 830.3 of the Penal Code, relating to regulatory boards, and making an appropriation therefor.\",Legal Issues\r\n\"An act to amend Section 44281 of, and to add Section 40708.5 to, the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"2962, 3057, 4852.03, 4852.17, 4854, 11105, 11105.03, 11106, 11108, 11413, 11418, 11460, and 13730 of the Penal Code, to amend Section 10334 of the Public Contract Code, and to amend Sections 676, 707, 727, 1772, 4514, 5328.4, 6500, 8100, 8103, 8104, and 15657.03 of the Welfare and Institutions Code, relating to the nonsubstantive reorganization of the deadly weapons statutes.\",Guns\r\n\"An act to add Article 6 (commencing with Section 33195) to Chapter 2 of Part 20 of Division 2 of Title 2 of the Education Code, relating to heritage school instruction, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to amend Section 3291 of the Civil Code, to amend Section 685.010 of the Code of Civil Procedure, and to amend Section 970.1 of the Government Code, relating to judgments.\",Judiciary\r\n\"An act to amend Sections 1812.540, 1812.542, 1812.543, and 1812.544 of, to amend the heading of Chapter 8 (commencing with Section 1812.540) of Title 2.91 of Part 4 of Division 3 of, and to add Sections 1812.545 and 1812.546 to, the Civil Code, relating to health care.\",Health\r\n\"An act to amend Sections 1247.2, 1247.4, 1247.6, 1247.63, 1247.64, and 1247.8 of, to add Section 1247.61 to, and to add and repeal Section 1247.62 of, the Business and Professions Code, relating to healing arts, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Section 38570 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 554 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 10226.5 of the Business and Professions Code, relating to real estate.\",Housing and Property\r\n\"An act to add Sections 19843.5 and 19943.5 to the Business and Professions Code, relating to gaming.\",Gambling and Gaming\r\n\"An act to add Section 4510.5 to the Welfare and Institutions Code, relating to developmental disabilities.\",Health\r\n\"Section 99 of the Revenue and Taxation Code, to amend Sections 1550, 1550.1, 1552, and 5100 of, to repeal Sections 1551, 1553, and 1554 of, and to repeal and add Section 1550.2 of, the Streets and Highways Code, to amend Sections 376, 40355, 55336, 55371, 55371.5, 55372, and 55373 of the Water Code, and to amend Sections 4.1, 5.1, 5.2, 5.3, 5.5, 5.6, 5.7, and 5.20 of, to amend and renumber Section 8.2 of, to add Section 6.2 to, and to repeal Sections 5.8, 5.9, 5.10, 5.11, 5.12, 5.13, 5.14, 5.15, 5.16, 5.17, and 8.1 of, the North Delta Water Agency Act (Chapter 283 of the Statutes of 1973), relating to local government.\",Municipal and County Issues\r\n\"An act to amend Section 2807 of the Penal Code, relating to corrections.\",Crime\r\n\"An act to amend Section 680 of the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to add Section 15627 to, and to repeal Part 10 (commencing with Section 15700) of Division 3 of Title 2 of, the Government Code, and to add Section 20.5 to the Revenue and Taxation Code, relating to governmental organization.\",Government Reform\r\nAn act relating to vehicles.,Transportation\r\n\"An act to repeal Sections 35555, 35556, and 45121 of the Education Code, relating to school employees.\",Education\r\n\"An act to add and repeal Section 14041.61 of the Education Code, relating to education finance, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to amend Sections 20197, 20199, 20228, 20969, 21337, 21337.1, 21670, 21671, 21672, 21674, 21675, 21676, 21677, 21679, 21680, 21681, 21682, 21683, 21685, 21750, 22775, 22814, 22910, and 22960.83 of, and to add Sections 21671.5 and 22819.1 to, the Government Code, relating to state retirement, and making an appropriation therefor.\",Labor and Employment\r\n\"An act to amend Section 14005.28 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Section 2107 of, and to add Article 4.5 (commencing with Section 2170) to Chapter 2 of Division 2 of, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 21670, 21670.1, 21670.4, 21675.1, 21678, 21679, and 21682 of, to add Section 21682.1 to, and to repeal Section 21677 of, the Public Utilities Code, relating to airports.\",Transportation\r\n\"An act to amend Section 33308.5 of the Education Code, relating to education.\",Education\r\n\"An act to amend Section 51040 of the Education Code, relating to pupil instruction.\",Education\r\n\"An act to amend Sections 22165 and 22166 of, and to add and repeal Article 3.5 (commencing with Section 22348) of Chapter 2 of Division 9 of, the Financial Code, relating to finance lenders.\",Commerce\r\n\"An act to amend Sections 1161.2 and 1166 of, and to add and repeal Section 1161c of, the Code of Civil Procedure, relating to residential tenancies and foreclosure.\",Housing and Property\r\n\"An act to amend Sections 1360, 3103, and 18150 of, and to add Section 1225.5 to, the Government Code, relating to public employment.\",Labor and Employment\r\n\"An act to amend Sections 651 and 2023.5 of, and to add Section 2027.5 to, the Business and Professions Code, and to amend Sections 1248, 1248.15, 1248.2, 1248.25, 1248.35, 1248.5, 1248.55, and 1279 of the Health and Safety Code, relating to healing arts.\",Health\r\n\"An act to amend Section 1812.117 of the Civil Code, relating to discount buying services.\",Commerce\r\n\"An act to amend Sections 25102, 28047, 28100, 28152, 28154, 28400, and 28404 of, to add Sections 28047.1 and 28111 to, to repeal Sections 28401, 28402, and 28403 of, and to repeal and add Article 2 (commencing with Section 28820) of Chapter 12 of Division 3 of Title 4 of, the Corporations Code, relating to capital access companies.\",Business and Consumers\r\n\"An act to amend Section 11320.31 of the Welfare and Institutions Code, relating to CalWORKs.\",Labor and Employment\r\n\"An act to amend Section 1502.3 of the Health and Safety Code, relating to community care facilities.\",Health\r\n\"An act to amend Sections 16430, 17211, 17212, 17222, 17240, 17243, 17244, 17245, 17253, 17271, 17275, and 17276 of the Government Code, relating to public finance, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to add Sections 9143.5 and 13305.5 to the Government Code, relating to state fiscal analysis.\",State Agencies\r\n\"An act to amend Section 17070.51 of the Education Code, relating to school finance.\",Education\r\n\"An act to amend Section 11208 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 1357.03, 1374.21, 1374.22, and 1389.25 of, and to add Article 6.2 (commencing with Section 1385.01) to Chapter 2.2 of Division 2 of, the Health and Safety Code, and to amend Sections 10113.9, 10199.1, 10199.2, and 10705 of, and to add Article 4.5 (commencing with Section 10181) to Chapter 1 of Part 2 of Division 2 of, the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 1250 of the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend Section 12078 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Sections 1798.29 and 1798.82 of the Civil Code, relating to personal information.\",Legal Issues\r\nAn act relating to state real property.,Housing and Property\r\n\"An act to amend, repeal, and add Sections 937 and 939.2 of, and to add and repeal Sections 904.9 and 923.1 of, the Penal Code, relating to grand juries.\",Judiciary\r\n\"An act to amend Section 17516 of the Government Code, and to amend Sections 175, 182, 186, 1055, 1055.2, 1228.5, 1228.7, 1241, 1241.6, 1410, 1675, 1701.3, 1703.6, 13176, 13193, 13204, 13220, 13261, 13274, 13285, 13291, 13304.1, 13320, 13330, 13376, 13392, 13392.5, 13395.5, 13396.7, 13426, 13442, 13521, 13522, 13523, 13523.1, 13528, 13540, 13552.4, 13553, 13576, 13578, 13580.9, 13627, 13627.4, 13755, 13800, 13801, 13903, 13904, and 13952.1 of, to amend the headings of Article 1 (commencing with Section 13300) and Article 2 (commencing with Section 13320) of Chapter 5 of Division 7 of, to amend and renumber Section 13274 of, to add Section 13248 to, and to repeal Sections 1062 and 1241.5 of, the Water Code, relating to water.\",Environmental\r\n\"An act to amend Section 14087.329 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Sections 22, 473.1, 473.15, 473.2, 473.3, 473.4, 473.6, and 9882 of, to add Sections 473.12 and 473.7 to, to repeal Sections 473.16 and 473.5 of, and to repeal and add Sections 101.1 and 473 of, the Business and Professions Code, relating to regulatory boards.\",Legal Issues\r\n\"An act to amend Sections 13550, 13551, 13552.2, and 13552.6 of, and to add Section 13052 to, the Water Code, relating to recycled water.\",Environmental\r\n\"An act to add and repeal Section 13995.95 of the Government Code, relating to economic development.\",Commerce\r\n\"An act to amend Section 17003 of the Food and Agricultural Code, relating to animals.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 580b of the Code of Civil Procedure, relating to real property.\",Housing and Property\r\n\"An act to add Section 3040 to the Fish and Game Code, relating to hunting.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 16501.1 of, and to add Section 16501.8 to, the Welfare and Institutions Code, relating to child welfare services.\",Family and Children Issues\r\n\"An act to amend Section 922 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 512 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 44691 of, and to add Section 44278 to, the Education Code, relating to teachers.\",Education\r\n\"An act to add Section 14464.5 to the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Section 17072 of, and to add Section 17239 to, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Sections 33000, 33030, 33031, 33032, 33111, and 33301 of, to add Chapter 1.7 (commencing with Section 33090) to Part 20 of Division 2 of Title 2 of, and to repeal Section 33034 of, the Education Code, relating to education governance.\",Education\r\n\"An act to amend Section 24177.5 of the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend Sections 65584.04 and 65584.05 of, and to add Sections 65584.10 and 65584.11 to, the Government Code, relating to land use.\",Housing and Property\r\n\"An act to amend Section 678.3 of the Insurance Code, relating to professional liability insurance.\",Insurance\r\n\"An act to amend Section 52055.765 of the Education Code, relating to education funding.\",Education\r\n\"An act to add Sections 17072.19 and 17074.31 to the Education Code, relating to school facilities, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to add Section 41814 to the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 1596.656 of the Health and Safety Code, relating to child care.\",Family and Children Issues\r\n\"An act to repeal and amend Sections 17053.85 and 23685 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Business and Consumers\r\n\"An act to amend Section 25213 of the Public Resources Code, relating to energy.\",Energy\r\n\"An act to add Article 3.5 (commencing with Section 66027) to Chapter 2 of Part 40 of Division 5 of Title 3 of the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to amend Section 290.06 of, and to add Section 2963 to, the Penal Code, and to amend Sections 6601 and 6601.3 of the Welfare and Institutions Code, relating to sex offenders.\",Crime\r\n\"An act to amend Sections 9084 and 9086 of the Elections Code, and to amend Sections 88001 and 88002 of the Government Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 290.013 and 290.015 of the Penal Code, relating to sex offenders.\",Crime\r\n\"An act to amend Section 685.010 of the Code of Civil Procedure, relating to civil judgments.\",Legal Issues\r\n\"An act to amend Sections 65302 and 65302.5 of, and to add Section 65040.7 to, the Government Code, and to add Section 21083.01 to the Public Resources Code, relating to land use.\",Health\r\n\"An act to amend Section 1651.5 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 14183 of the Penal Code, relating to crime prevention.\",Crime\r\n\"An act to amend Section 138.7 of the Labor Code, relating to workers̢ compensation.\",Technology and Communication\r\n\"An act to amend Sections 1526.8 and 1596.792 of, and to amend, add, and repeal Section 1516 of, the Health and Safety Code, and to amend Sections 11400.1, 11402, and 11462.7 of, the Welfare and Institutions Code, relating to crisis nurseries.\",Other\r\n\"An act to add and repeal Chapter 10.2 (commencing with Section 4529.25) of Division 5 of the Government Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend Sections 12206, 17058, and 23610.5 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to repeal and add Section 12479 of the Government Code, relating to state government.\",Labor and Employment\r\nAn act relating to fisheries.,Agriculture and Food\r\n\"An act to amend Section 5898.24 of the Streets and Highways Code, relating to contractual assessments.\",Labor and Employment\r\n\"An act to add Part 2.11 (commencing with Section 10920) to Division 6 of, and to repeal and add Section 12924 of, the Water Code, relating to water.\",Environmental\r\n\"An act to amend Section 35002 of the Vehicle Code, relating to vehicles, and declaring the urgency thereof, to take effect immediately.\",Public Services\r\n\"An act to amend Sections 2924 and 2924c of the Civil Code, relating to mortgages.\",Housing and Property\r\n\"An act to amend Section 26840.11 of the Government Code, to amend Section 103628 of the Health and Safety Code, and to amend Section 18309.5 of the Welfare and Institutions Code, relating to domestic violence.\",Legal Issues\r\n\"An act to add Sections 17202.2 and 17412 to the Financial Code, relating to escrow agents.\",Commerce\r\n\"An act to amend, repeal, and add Section 41700 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Sections 8335.1, 8335.4, 8335.5, and 8335.7 of the Education Code, relating to child care.\",Municipal and County Issues\r\n\"An act to amend Section 21080.21 of the Public Resources Code, relating to environmental quality.\",Environmental\r\n\"17315, 81136, and 81147 of the Education Code, relating to school facilities.\",Education\r\nAn act relating to liability insurance.,Insurance\r\n\"An act to amend Section 53086 of the Education Code, relating to career development.\",Labor and Employment\r\n\"An act to amend Section 6108 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend Section 2166.5 of the Elections Code, and to amend Section 6206.5 of, and to repeal Sections 6211 and 6217 of, the Government Code, relating to confidential address programs.\",Legal Issues\r\n\"An act to add Section 188.7 to the Water Code, relating to water.\",Public Services\r\n\"An act to add Section 2885.7 to the Public Utilities Code, relating to telecommunications.\",Technology and Communication\r\n\"An act to add and repeal Section 14133.55 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to add Sections 115111, 115112, and 115113 to the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend Section 43011.5 of the Health and Safety Code, relating to air pollution.\",Transportation\r\n\"An act to amend Section 42407 of, and to add Chapter 3.4 (commencing with Section 39640) to Part 2 of Division 26 of, the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 32126 of, and to add Section 32121.6 to, the Health and Safety Code, relating to local health care districts.\",Health\r\n\"An act to amend Sections 621 and 13009 of, and to add Sections 623 and 928.7 to, the Unemployment Insurance Code, relating to employment taxes, and making an appropriation therefor.\",Labor and Employment\r\n\"An act to add Section 149.10 to the Streets and Highways Code, and to amend Section 21655.5 of the Vehicle Code, relating to transportation.\",Transportation\r\n\"An act to amend Sections 1206.5, 1209, and 3613 of, and to add Sections 3640.2 and 3640.3 to, the Business and Professions Code, relating to naturopathic medicine.\",Health\r\n\"An act to add Section 5028.5 to the Penal Code, relating to undocumented criminal aliens.\",Immigration\r\n\"An act to amend Section 107.4 of the Revenue and Taxation Code, relating to taxation.\",Military\r\n\"An act to amend Section 19777.5 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 1203.066 of the Penal Code, relating to probation.\",Crime\r\n\"An act to amend, repeal, and add Section 49431.5 of the Education Code, relating to schools.\",Education\r\n\"An act to amend Section 37222 of, to add Sections 37222.10, 37222.11, 37222.12, 37222.13, 37222.14, and 37222.17 to, and to repeal Section 37222.5 of, the Education Code, and to add Section 6724 to the Government Code, relating to Ed Roberts Day.\",Resolutions\r\n\"An act to amend Section 103 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to add Sections 8587.3 and 8587.4 to the Government Code, and to add Section 16031 to the Insurance Code, relating to emergency services, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Section 19850.6 of the Business and Professions Code, and to amend Sections 326.3, 326.45, and 326.5 of the Penal Code, relating to bingo, and declaring the urgency thereof, to take effect immediately.\",Recreation\r\n\"An act to amend Section 23396.1 of the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\nAn act relating to the environment.,Environmental\r\n\"An act to add Sections 22869.5 and 22917 to the Government Code, and to amend Sections 17072, 17131.4, 17131.5, 17215, 17215.1, 17215.4, and 19184 of, and to add Sections 17138.5, 17138.6, and 17216 to, the Revenue and Taxation Code, relating to health care, and making an appropriation therefor.\",Health\r\n\"An act to add Section 38599.5 to the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to add Article 2 (commencing with Section 5515) to Chapter 9 of Division 2 of the Public Utilities Code, relating to commercial airlines.\",Transportation\r\n\"An act to amend Section 4360 of the Welfare and Institutions Code, relating to judicially committed patients.\",Crime\r\n\"An act to amend Section 4532 of, and to add Section 1170.05 to, the Penal Code, relating to inmates.\",Family and Children Issues\r\n\"An act to amend Sections 226.3, 1288, and 1391 of, and to add Section 3723 to, the Labor Code, relating to labor violations.\",Labor and Employment\r\n\"An act to amend Section 104113 of the Health and Safety Code, relating to automatic external defibrillators.\",Health\r\n\"An act to amend Section 53300 of the Education Code, as added by Section 2 of Chapter 3 of the Statutes of the Fifth Extraordinary Session of 2010, relating to public schools.\",Education\r\n\"An act to add Section 40 to the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 23399.6 of the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to amend Sections 1010.6 and 1013 of the Code of Civil Procedure, relating to service of process.\",Technology and Communication\r\n\"An act to amend Section 2923.5 of, and to add and repeal Sections 2923.4, 2923.7, 2923.73, 2923.75, and 2923.77 of, the Civil Code, relating to mortgages.\",Housing and Property\r\n\"An act to add Section 697.335 to the Code of Civil Procedure, relating to liens.\",Public Services\r\n\"An act to add Sections 600.6, 600.7, and 600.8 to the Penal Code, relating to animal abuse.\",Animal Rights and Wildlife Issues\r\n\"An act to add Section 60200.8 to the Education Code, relating to instructional materials, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to add and repeal Chapter 4.4 (commencing with Section 18259.7) of Part 6 of Division 9 of the Welfare and Institutions Code, relating to sexually exploited minors.\",Family and Children Issues\r\n\"An act to add Division 25.6 (commencing with Section 38700) to the Health and Safety Code, relating to climate change.\",Environmental\r\n\"An act to add Article 4.3 (commencing with Section 4146) to Chapter 1 of Part 2 of Division 4 of the Public Resources Code, relating to fire protection.\",Public Services\r\n\"An act to amend Section 1714.21 of the Civil Code, and to repeal Section 1797.196 of the Health and Safety Code, relating to emergency medical services.\",Public Services\r\nAn act relating to health care coverage.,Health\r\n\"An act to amend Sections 13385 and 13385.1 of the Water Code, relating to water quality.\",Environmental\r\n\"An act to add Section 23647.5 to the Vehicle Code, relating to driving under the influence.\",Transportation\r\n\"An act to amend Section 23002 of the Revenue and Taxation Code, relating to taxation.\",Business and Consumers\r\n\"An act to amend Section 18075.55 of the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to add Article 6 (commencing with Section 33195) to Chapter 2 of Part 20 of Division 2 of Title 2 of the Education Code, relating to heritage school instruction, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to amend Section 4001 of the Family Code, relating to child support.\",Labor and Employment\r\n\"An act to amend Section 2827 of the Fish and Game Code, relating to fish and wildlife.\",Environmental\r\n\"An act to amend Sections 5101.4 and 5101.8 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 104113 of the Health and Safety Code, relating to automatic external defibrillators.\",Health\r\n\"An act to amend Section 42605 of the Education Code, relating to categorical education programs.\",Labor and Employment\r\n\"An act to add Chapter 3 (commencing with Section 42280) to Division 18 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 17041 and 19602 of, to add Section 17063.1 to, to repeal Sections 17043 and 19602.5 of, and to repeal Chapter 2.1 (commencing with Section 17062) of Part 10 of Division 2 of, the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act relating to the King City Joint Union High School District, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to add Section 51230 to, and to add Article 3.7 (commencing with Section 32230) to Chapter 2 of Part 19 of Division 1 of Title 1 of, the Education Code, relating to pupils.\",Social Issues\r\n\"An act to amend Section 49062 of the Education Code, relating to pupil records.\",Education\r\n\"An act to amend Section 60 of the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Sections 2086 and 2087 of the Fish and Game Code, relating to protected species.\",Agriculture and Food\r\n\"An act to add Part 5.5 (commencing with Section 1508) to Division 2 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Section 38575 to the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to add Sections 6830.5 and 6830.6 to the Revenue and Taxation Code, relating to taxation, and making an appropriation therefor.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 15570 of the Government Code, relating to economic development.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 110388 to the Health and Safety Code, relating to food.\",Agriculture and Food\r\nAn act relating to employment.,Labor and Employment\r\n\"An act to amend Section 58608.1 of the Food and Agricultural Code, relating to marketing.\",Agriculture and Food\r\n\"An act to amend Section 11502 of the Food and Agricultural Code, relating to pest control.\",Agriculture and Food\r\n\"An act to amend Sections 12026.2, 12070, 12076, and 12078 of the Penal Code, relating to firearms.\",Business and Consumers\r\n\"An act to amend Section 13825.4 of the Penal Code, relating to crimes.\",Crime\r\nAn act relating to pupil attendance.,Education\r\nAn act relating to parent empowerment.,Family and Children Issues\r\n\"An act to add Section 48263.6 to the Education Code, and to add Section 270.1 to the Penal Code, relating to truancy.\",Education\r\n\"An act to amend Section 14556.40 of, and to repeal Section 14529.15 of, the Government Code, to amend Sections 21669.6, 24908, 29034.7, 29035.5, 99221, 99313.1, 99633, and 132820 of, and to repeal Section 132352.6 of, the Public Utilities Code, to amend Sections 149.5, 301, 302, 319, 339, 358, 371, 372, 374, 379, 383, 384, 411, 444, 451, 460, 464, 470, 560, 30914, and 30914.5 of, to add Section 575 to, and to repeal Section 301.5 of, the Streets and Highways Code, and to amend Sections 2800, 5201, 14611, 21754, 21755, 22452, 22511.55, 24400, 26100, 26101, 26505, 29004, 34518, and 40802 of, and to add Section 667 to, the Vehicle Code, relating to transportation.\",Transportation\r\n\"An act to add Chapter 7.8 (commencing with Section 3575) to Division 2 of the Business and Professions Code, relating to healing arts, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Section 640 of the Penal Code, and to amend Sections 99580 and 99581 of the Public Utilities Code, relating to transportation.\",Transportation\r\n\"An act to add Section 18926.5 to the Welfare and Institutions Code, relating to public social services.\",Agriculture and Food\r\n\"An act to amend Section 25600.5 of the Business and Professions Code, relating to alcoholic beverages.\",Other\r\n\"An act to amend Section 6253 of the Government Code, relating to public records.\",Commerce\r\n\"An act to add Section 502.10 to the Penal Code, relating to crimes.\",Agriculture and Food\r\n\"An act to add Section 2854 to the Public Utilities Code, relating to solar energy.\",Energy\r\n\"An act to add Section 1569.686 to the Health and Safety Code, relating to residential care facilities for the elderly.\",Senior Issues\r\n\"An act to add Article 9.3 (commencing with Section 31142.20) to Chapter 1 of Part 5 of Division 12 of the Water Code, relating to the Alameda County Water District.\",Environmental\r\n\"Code, to amend Sections 4465, 4466, 11709.4, 13386, 21455.5, 27602, 40002, and 42001.13 of the Vehicle Code, to amend Sections 10608.24, 10608.44, 10853, 10933, 12645, 12647, and 30779 of the Water Code, to amend Sections 4691, 4860, 5806, 14083, 14085.57, 14105.3, 14132.725, 14154, 14163, 14166.221, 14167.3, 14167.6, 14167.7, 14167.10, 14522.4, 14598, 16124, 18220.1, and 18987.62 of the Welfare and Institutions Code, to amend Section 5.1 of the Castaic Lake Water Agency Law (Chapter 28 of the Statutes of 1962, First Extraordinary Session), to amend Section 1 of the Osteopathic Act, to amend Section 1 of Chapter 226 of the Statutes of 2009, to amend Section 2 of Chapter 405 of the Statutes of 2009, and to amend Section 3 of Chapter 426 of the Statutes of 2009, relating to the maintenance of the codes.\",Other\r\n\"An act to add Chapter 3 (commencing with Section 3710) to Title 3 of Part 3 of the Penal Code, relating to the death penalty.\",Civil Liberties and Civil Rights\r\n\"An act to amend Section 2820 of the Fish and Game Code, relating to wildlife resources.\",Environmental\r\n\"An act to amend Section 510 of, and to add Section 511.5 to, the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 18663 of the Revenue and Taxation Code, and to amend Section 13020 of the Unemployment Insurance Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 487 of the Penal Code, relating to crimes.\",Agriculture and Food\r\n\"An act to amend Section 2701 of the Public Utilities Code, relating to water.\",Environmental\r\n\"An act to amend Sections 224.71 and 1712.1 of, and to add Section 209.5 to, the Welfare and Institutions Code, relating to juveniles.\",Family and Children Issues\r\n\"An act to amend Section 44272 of the Health and Safety Code, to amend Sections 26100, 26104, 26121, and 26123 of the Public Resources Code, and to add Sections 5898.15, 5898.23, and 5899.3 to the Streets and Highways Code, relating to energy.\",Energy\r\n\"An act to amend Section 130232 of the Public Utilities Code, relating to public contracts.\",Transportation\r\n\"An act to amend Section 12223 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 800.41 of the Civil Code, relating to real property.\",Housing and Property\r\n\"An act to amend Sections 53601.8 and 53635.8 of the Government Code, relating to local agency investments.\",Municipal and County Issues\r\n\"An act to amend Section 653o of the Penal Code, relating to dead animal parts.\",Animal Rights and Wildlife Issues\r\n\"An act to add Sections 10708, 10709, 10710, 10711, 10712, and 10713 to the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Section 14521.5 to the Government Code, relating to transportation.\",Transportation\r\n\"An act to amend Section 597n of the Penal Code, relating to animal abuse.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 38505 of, and to add Section 38566 to, the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 48850 of the Education Code, and to amend Sections 16001.9, 16010, and 16501.1 of the Welfare and Institutions Code, relating to education.\",Education\r\n\"An act to amend Sections 54690, 54691, and 54692 of the Education Code, relating to instructional programs.\",Education\r\n\"An act to add and repeal Section 4007.5 of the Family Code, relating to child support.\",Family and Children Issues\r\n\"An act to amend Sections 15202 and 15203 of the Government Code, relating to counties.\",Municipal and County Issues\r\n\"An act to amend Section 48070.6 of, and to add Section 60901 to, the Education Code, relating to pupil data.\",Education\r\n\"An act to amend Section 53081 of the Education Code, relating to the School-to-Career Program.\",Education\r\n\"An act to add and repeal Section 18919 of the Welfare and Institutions Code, relating to public social services.\",Public Services\r\nAn act relating to state real property.,Housing and Property\r\n\"An act to amend Section 2810 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Part 2.7 (commencing with Section 60) to Division 1 of the Civil Code, relating to privacy.\",Technology and Communication\r\n\"An act to amend Sections 21455.5 and 40518 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 17405.5 to the Financial Code, relating to escrow agents.\",Commerce\r\n\"An act to add Sections 4011.3 and 5007.3 to the Penal Code, relating to prisoners.\",Crime\r\n\"An act to amend Section 108555 of the Health and Safety Code, relating to public safety.\",Business and Consumers\r\nAn act relating to elections.,Campaign Finance and Election Issues\r\n\"An act to amend Section 25740 of the Public Resources Code, and to amend Sections 399.11 and 399.15 of the Public Utilities Code, relating to renewable energy.\",Energy\r\n\"An act to amend Sections 129040 and 129050 of the Health and Safety Code, and to amend Sections 12695.18 and 12705 of the Insurance Code, relating to health, and making an appropriation therefor.\",Health\r\n\"An act to amend Section 163 of the Military and Veterans Code, relating to the military.\",Military\r\n\"An act to amend Section 2751 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Chapter 20.5 (commencing with Section 2704.75) to Division 3 of the Streets and Highways Code, relating to transportation, and declaring the urgency thereof, to take effect immediately.\",Transportation\r\n\"An act to amend Section 33333.11 of the Health and Safety Code, relating to redevelopment.\",Other\r\n\"An act to amend Section 6007.5 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 1357.03 of the Health and Safety Code, relating to health care service plans.\",Health\r\n\"An act to amend Section 7287 of the Revenue and Taxation Code, relating to local taxation.\",Transportation\r\n\"An act to add Section 17078.73 to the Education Code, relating to school facilities.\",Education\r\n\"An act to amend Sections 46300, 48000, and 48010 of the Education Code, relating to kindergarten.\",Education\r\n\"An act to amend Section 554 of the Military and Veterans Code, relating to state military.\",Military\r\nAn act relating to military and veterans.,Military\r\n\"An act to add Section 705 to the Military and Veterans Code, relating to the Department of Veterans Affairs.\",Military\r\n\"An act to amend Sections 64, 66.5, and 67 of the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Section 972.1 of the Military and Veterans Code, relating to veterans, and making an appropriation therefor.\",Military\r\n\"An act to amend Section 44062.3 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to add Section 6009 to the Public Resources Code, and to amend Sections 2, 14, 19, 21, 30.5, 51, 57, and 68 of the San Diego Unified Port District Act (Chapter 67 of the Statutes of 1962, First Extraordinary Session), relating to tidelands and submerged lands.\",Environmental\r\n\"An act to add Sections 4076.7 and 4076.9 to, and to repeal and add Section 4076.5 of, the Business and Professions Code, relating to pharmacy.\",Health\r\n\"An act to add Sections 17060 and 23603 to the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 44019, 44041, 44081, and 44081.6 of the Health and Safety Code, to amend Sections 10770, 10856, 10858, and 10902 of, and to add Section 10752.7 to, the Revenue and Taxation Code, and to amend Sections 506, 1651.5, 4602, 5004.5, 9559.5, and 9700 of, and to add Article 1.5 (commencing with Section 9200) to Chapter 6 of Division 3 of, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add and repeal Chapter 3 (commencing with Section 63060) of Part 35 of Division 4 of Title 2 of the Education Code, relating to education funding.\",Education\r\n\"An act to amend Sections 3070 and 3073.1 of, and to add Sections 3075.5, 3075.6, and 3075.7 to, the Labor Code, relating to apprenticeships.\",Labor and Employment\r\n\"An act to amend Section 100 of, and to add Section 100.96 to, the Revenue and Taxation Code, relating to local government finance.\",Housing and Property\r\n\"An act to add Article 3 (commencing with Section 6940) to Chapter 2 of Part 3 of Division 4 of the Food and Agricultural Code, relating to nurseries, and declaring the urgency thereof, to take effect immediately.\",Agriculture and Food\r\nAn act relating to health facilities.,Health\r\n\"An act to amend Sections 14560 and 14574 of the Public Resources Code, relating to beverage containers.\",Agriculture and Food\r\n\"An act to amend Section 43023 of, and to add Sections 39619.7 and 43024 to, the Health and Safety Code, relating to air pollution, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend Section 15570 of the Government Code, relating to economic development.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 13002, 13004, 13005, 13006, 18400, 19202, 19214, and 19214.5 of, to add Section 19212.5 to, and to repeal Section 13007 of, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 10127.7 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Section 10083 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Section 11797 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Sections 1025.5, 1067.02, 1067.03, 1067.04, 1067.05, 1067.055, 1067.07, 1067.08, 1067.09, 1067.10, 1067.11, 1067.12, 1067.13, 1067.16, and 1067.17 of the Insurance Code, relating to insurance, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Sections 14166.12 and 14166.25 of the Welfare and Institutions Code, relating to Medi-Cal, and making an appropriation therefor.\",Health\r\n\"An act to amend Section 2177 of, and to add Sections 2177.5 and 2177.7 to, the Business and Professions Code, relating to medicine.\",Health\r\n\"An act to add Section 528.5 to the Penal Code, relating to impersonation.\",Technology and Communication\r\n\"An act to amend Sections 60300, 60305, 60306, 60309, 60315, 60316, 60317, 60317.5, and 60325 of the Water Code, relating to water.\",Environmental\r\n\"An act to amend Sections 321.6 and 1733 of, the Public Utilities Code, relating to the Public Utilities Commission.\",Public Services\r\n\"An act to amend Section 69.5 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to add Section 17152.5 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 2550, 2551, 2555, and 2557 of the Streets and Highways Code, relating to highways.\",Transportation\r\n\"An act to amend Section 243.9 of the Penal Code, relating to peace officers.\",Public Services\r\nAn act relating to school enrollment.,Education\r\nAn act relating to education funds.,Education\r\nAn act relating to the Race to the Top program.,Education\r\nAn act relating to the Race to the Top program.,Education\r\n\"An act to amend Sections 22112.5, 22119.2, 22461, 22905, 25009, 26302, and 26505 of, to amend, repeal, and add Sections 24214.5 and 26806 of, and to add Section 26307 to, the Education Code, and to amend Sections 20221, 20630, 20636, 20636.1, and 21220 of, and to add Sections 7500.5 and 21220.3 to, the Government Code, relating to public retirement systems.\",Labor and Employment\r\n\"An act to amend Sections 13308 and 13337 of the Government Code, relating to the state budget.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Sections 2929.4 and 2929.45 to the Civil Code, relating to foreclosures.\",Housing and Property\r\n\"An act to amend Sections 629.50, 629.51, 629.52, 629.53, 629.54, 629.56, 629.58, 629.60, 629.62, 629.64, 629.66, 629.68, 629.70, 629.72, 629.74, 692.76, 629.78, 629.80, 629.82, 629.86, 629.88, 629.89, 629.90, and 629.94 of the Penal Code, relating to intercepted communications.\",Crime\r\n\"An act to amend Section 50075 of the Government Code, relating to local government.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 25395.91, 25395.109, and 25395.110 of the Health and Safety Code, relating to hazardous materials.\",Environmental\r\n\"An act to amend Section 12699.53 of the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 17070.80 of the Education Code, relating to school facilities.\",Education\r\n\"An act to add Section 42411 to the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to add Sections 11547.5 and 11547.7 to the Government Code, relating to state government.\",State Agencies\r\n\"An act to add Section 1326.5 to the Unemployment Insurance Code, relating to unemployment insurance.\",Labor and Employment\r\n\"An act to amend Section 19605.25 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to amend Sections 4789.1 and 4789.3 of, and to add Section 4556 to, the Public Resources Code, relating to forest resources.\",Environmental\r\n\"An act to add Article 3 (commencing with Section 66745) to Chapter 9.2 of Part 40 of Division 5 of Title 3 of the Education Code, relating to public postsecondary education.\",Education\r\nAn act relating to public health.,Health\r\n\"An act to amend Section 12994.5 of the Water Code, relating to water.\",Environmental\r\n\"An act to add Section 51207 to the Education Code, relating to pupil instruction.\",Education\r\n\"An act to amend Section 209 of the Welfare and Institutions Code, relating to juveniles.\",Family and Children Issues\r\n\"An act to add Sections 52050.7 and 52052.3 to the Education Code, relating to school accountability.\",Education\r\n\"An act to amend Section 11357 of the Health and Safety Code, and to amend Section 23222 of the Vehicle Code, relating to controlled substances.\",Crime\r\n\"An act to amend Section 3000.03 of the Penal Code, relating to parole.\",Technology and Communication\r\n\"An act to repeal Chapter 5.8 (commencing with Section 42359) of, and to repeal and add Chapter 5.7 (commencing with Section 42355) of, Part 3 of Division 30 of the Public Resources Code, relating to recycling.\",Environmental\r\n\"An act to amend Section 32130.6 of the Health and Safety Code, relating to public health, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Section 404 of the Penal Code, relating to disturbing the public peace.\",Legal Issues\r\n\"An act to amend Section 349 of the Streets and Highways Code, relating to highways.\",Transportation\r\n\"An act to amend Section 68130.7 of, to amend, repeal, and add Section 68130.5 of, and to add Sections 66021.6, 66021.7, and 76300.5 to, the Education Code, relating to student financial aid.\",Education\r\n\"An act to amend Section 65919.10 of the Government Code, and to amend Section 21083.9 of the Public Resources Code, relating to land use planning.\",Other\r\n\"An act to add Article 2 to Chapter 8 (commencing with Section 2848) of Part 2 of Division 1 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Section 6501 of the Business and Professions Code, relating to professional fiduciaries.\",Commerce\r\nAn act relating to the Sacramento-San Joaquin Delta.,Environmental\r\n\"An act to amend Section 5216.1 of, and to add Section 5412.5 to, the Business and Professions Code, relating to outdoor advertising.\",Commerce\r\n\"An act to amend Section 10123.7 of the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add Section 1279.7 to the Unemployment Insurance Code, relating to unemployment insurance.\",Labor and Employment\r\n\"An act to amend Section 1156.3 of the Labor Code, relating to employment.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 12804.9, 12810.3, 23123, 23123.5, and 23124 of, and to add Section 23124.5 to, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 44508, 44542, 44543, and 44553 of the Health and Safety Code, relating to the California Pollution Control Financing Authority, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Section 10608.20 of the Water Code, relating to water conservation.\",Environmental\r\n\"An act to amend Sections 31527 and 31582 of, and to add Section 31618.5 to, the Government Code, relating to public employment.\",Labor and Employment\r\n\"An act to add Section 115102 to the Health and Safety Code, relating to mammography.\",Health\r\n\"An act to amend Section 435 of the Military and Veterans Code, relating to the state militia.\",Military\r\n\"An act to add Chapter 5.2 (commencing with Section 19990.01) to Division 8 of the Business and Professions Code, relating to Internet gambling, and declaring the urgency thereof, to take effect immediately.\",Gambling and Gaming\r\n\"An act to amend Sections 19401, 19481.5, and 19501 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to amend Sections 2933 and 4019 of the Penal Code, relating to inmates, and declaring the urgency thereof, to take effect immediately.\",Crime\r\n\"An act to amend Sections 6362 and 8625 of the Public Resources Code, relating to state lands, and making an appropriation therefor.\",Environmental\r\n\"An act to amend Sections 2065, 2096, 2102, 2103, 2177, 2184, 2516, 2530.2, 2539.1, 2539.6, 2570.19, 3025.1, 3046, 3057.5, 3147, 3147.6, 3147.7, 3365.5, 4013, 4017, 4028, 4037, 4052.3, 4059, 4072, 4076.5, 4101, 4119, 4127.1, 4169, 4181, 4191, 4196, 4425, 4426, 4980.40.5, 4980.43, 4980.80, 4982.25, 4984.8, 4989.54, 4990.02, 4990.12, 4990.18, 4990.22, 4990.30, 4990.38, 4992.36, 4996.17, 4996.23, 4999.46, 4999.54, 4999.58, and 4999.90 of, to add Section 4200.1 to, to add and repeal Sections 4999.57 and 4999.59 of, to repeal Sections 2026, 4980.07, 4982.2, and 4984.6 of, and to repeal Article 3 (commencing with Section 4994) of Chapter 14 of Division 2 of, the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act relating to the payment of claims against the state, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to amend Sections 5092, 5094.6, and 5096.12 of the Business and Professions Code, relating to professions and vocations, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Sections 5020, 5021, 5024, 5076, 5090, 5109, 5120, 5122, 6750, 6751, 6756, 6758, 6759, 6763, 6799, 7028.6, 7028.7, 7028.9, 7058.5, 7099.2, 7110, 7210.7, 7316, 7317, 7320.1, 7352, 7410, 8740, 8746, 8748, and 8805 of, and to repeal Section 5109.5 of, the Business and Professions Code, and to amend Sections 7054.6 and 8344 of, and to repeal Section 8340 of, the Health and Safety Code, relating to professions and vocations.\",Labor and Employment\r\n\"An act to amend Sections 19191 and 19194 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 42463 of the Public Resources Code, to amend Sections 61, 63.1, 69.5, 218, 401.10, 1604, 4831, 5096, 41030, 41031, 41032, 41136.1, 41137, 41137.1, 41138, 41139, 41140, 41141, 41142, 45855, 45863, 45981, and 45982 of, and to repeal Sections 1624.3, 1636.2, and 1636.5 of, the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 1095 of the Unemployment Insurance Code, relating to unemployment insurance.\",Labor and Employment\r\n\"An act to amend, repeal, and add Sections 186.22, 186.33, 1170.1, 12021.5, 12022.2, and 12022.4 of the Penal Code, relating to sentencing.\",Crime\r\n\"An act to add and repeal Part 4.7 (commencing with Section 14700) of the Penal Code, relating to reentry.\",Judiciary\r\n\"An act to amend Section 4024 of the Penal Code, relating to jails.\",Crime\r\n\"An act to amend Section 668 of the Harbors and Navigation Code, to amend Section 11836 of the Health and Safety Code, and to amend Section 13352 of the Vehicle Code, relating to vessels.\",Transportation\r\n\"An act to amend Section 11379.7 of the Health and Safety Code, relating to controlled substances.\",Family and Children Issues\r\n\"An act to amend Section 21809 of, and to amend and repeal Section 25253 of, the Vehicle Code, relating to vehicles.\",Public Services\r\n\"An act to amend Sections 12206, 17058, 19611, and 23610.5 of, and to add Sections 17058.6 and 23610.6 to, the Revenue and Taxation Code, relating to taxation, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to add Section 66021.6 to the Education Code, relating to student financial aid.\",Education\r\n\"An act to add Section 1367.655 to the Health and Safety Code, and to add Section 10123.205 to the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 50078.1 of the Government Code, relating to local government.\",Public Services\r\n\"An act to amend Section 56001 of the Government Code, relating to local government.\",Municipal and County Issues\r\nAn act relating to disaster relief.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 44017.4 of the Health and Safety Code, and to amend Section 4750.1 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 18871.12 to the Health and Safety Code, relating to special occupancy parks.\",Environmental\r\n\"An act to amend Sections 42885.5 and 42889 of the Public Resources Code, relating to solid waste.\",Environmental\r\n\"An act to amend Section 32731 of the Food and Agricultural Code, relating to milk products.\",Agriculture and Food\r\n\"An act to add Chapter 4 (commencing with Section 8360) to Division 4.1 of the Public Utilities Code, relating to electricity.\",Energy\r\n\"An act to amend Sections 44839 and 44839.5 of the Education Code, relating to public schools.\",Labor and Employment\r\n\"An act to amend Sections 2224, 2225, and 2226 of the Elections Code, relating to voters.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 12070, 12072, 12078, and 12083 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Section 395.5 of the Public Utilities Code, relating to electricity.\",Energy\r\n\"An act to amend Section 1464 of the Penal Code, and to amend Sections 27315, 27315.3, and 27360 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 14673.9 to the Government Code, relating to state property, and making an appropriation therefor.\",State Agencies\r\n\"An act to amend Section 248 of the Welfare and Institutions Code, relating to juveniles.\",Family and Children Issues\r\n\"An act to add Section 26 to the Health and Safety Code, relating to health and safety.\",Legal Issues\r\n\"An act to amend Sections 87482, 87482.6, and 87482.7 of the Education Code, relating to community colleges.\",Education\r\n\"An act to amend Section 34515 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 12022.1 of the Penal Code, relating to punishment.\",Legal Issues\r\n\"An act to amend Section 510 of, and to add Section 511.5 to, the Labor Code, relating to employment.\",Labor and Employment\r\n\"and Safety Code, to amend Section 11751.82 of the Insurance Code, to amend Section 218.5 of the Labor Code, to amend Sections 4107.7, 7103, 10222, 10822, 20104, 20134, 20461, 20496, 20682.5, 20688.4, 20813, 20815.3, 20991, 21061, 21071, 21081, 21091, 21101, 21111, 21121, 21131, 21141, 21151, 21161, 21171, 21181, 21196, 21212, 21231, 21241, 21251, 21261, 21271, 21311, 21321, 21331, 21341, 21351, 21361, 21371, 21381, 21391, 21401, 21411, 21421, 21431, 21441, 21451, 21461, 21491, 21501, 21511, 21521, 21531, 21541, 21572, 21581, 21591, 21601, 21622, and 21631 of, the Public Contract Code, and to amend Section 136.5 of the Streets and Highways Code, relating to mechanics liens.\",Other\r\n\"An act to amend Sections 10601, 10601.5, 10802, 10804, and 60900 of the Education Code, relating to education data.\",Education\r\n\"An act to amend Sections 98 and 98.02 of the Revenue and Taxation Code, relating to property taxation, and declaring the urgency thereof, to take effect immediately.\",Transportation\r\n\"An act to amend Section 47660 of the Education Code, relating to charter schools.\",Education\r\n\"An act to add and repeal Section 52124.2 of the Education Code, relating to class size reduction.\",Education\r\n\"An act to amend Section 66290 of the Education Code, relating to postsecondary education.\",Social Issues\r\n\"An act to amend Sections 1255.1, 1255.2, and 1255.25 of the Health and Safety Code, relating to emergency medical services.\",Health\r\n\"An act to amend Sections 1335, 1337, and 1341 of the Penal Code, relating to domestic violence.\",Social Issues\r\n\"An act to amend Section 32130.6 of the Health and Safety Code, relating to health care districts.\",Health\r\n\"An act to amend Sections 99200, 99200.5, 99201, and 99202 of, and to repeal Section 99206 of, the Education Code, relating to postsecondary education.\",Education\r\n\"An act to amend Sections 1798.29 and 1798.82 of the Civil Code, relating to personal information.\",Legal Issues\r\n\"An act to amend Section 320.5 of the Penal Code, relating to raffles.\",Technology and Communication\r\n\"An act to amend Section 21100.4 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend the heading of Article 1 (commencing with Section 12000) of Chapter 1 of Part 8 of Division 1 of Title 1 of, and to add Section 12001.5 to, the Education Code, relating to education finance, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to amend Sections 14105.24, 14167.1, 14167.2, 14167.3, 14167.4, 14167.5, 14167.6, 14167.8, 14167.9, 14167.10, 14167.11, 14167.12, 14167.14, 14167.31, 14167.32, 14167.35, and 14167.354 of, to amend and renumber and add Section 14182 of, and to add Sections 14089.07, 14132.275, 14166.252, 14182.1, 14182.15, 14182.2, 14182.3, and 14182.4 to, the Welfare and Institutions Code, relating to Medi-Cal, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Section 55.54 of the Civil Code, relating to disability access.\",Legal Issues\r\n\"An act to add Section 5523 to the Fish and Game Code, relating to fishing.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 42005 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 11834.255 to the Health and Safety Code, relating to residential facilities.\",Health\r\n\"An act to amend Section 56668 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to amend Section 66406 of the Education Code, relating to college instructional materials.\",Education\r\n\"An act to add Section 89500.5 to, and to add Article 2 (commencing with Section 92010) to Chapter 1 of Part 57 of Division 9 of Title 3 of, the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to amend Section 8547.10 of the Government Code, relating to improper governmental activities.\",Government Reform\r\n\"An act to amend Section 25256.1 of the Health and Safety Code, relating to hazardous materials.\",Health\r\n\"An act to amend Section 930 of the Unemployment Insurance Code, relating to unemployment compensation, and making an appropriation therefor, to take effect immediately, tax levy.\",Labor and Employment\r\n\"An act to amend Section 44281 of, and to add Section 40708.5 to, the Health and Safety Code, relating to air pollution, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Section 786 of the Penal Code, relating to identity theft.\",Crime\r\n\"An act to amend Section 42954 of the Public Resources Code, relating to waste tire haulers.\",Business and Consumers\r\n\"An act to amend Section 25205.5 of the Health and Safety Code, relating to hazardous waste.\",Environmental\r\n\"An act to amend Section 44017.4 of the Health and Safety Code, and to amend Section 4750.1 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 5653.2 to the Fish and Game Code, relating to fish and wildlife, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to amend Section 89500 of the Education Code, relating to the California State University.\",Labor and Employment\r\n\"An act to amend Section 51221.5 of the Education Code, relating to curriculum.\",Education\r\n\"An act to amend Sections 11302, 11314, 11315.5, 11409, and 11422 of, to add Sections 11315.1, 11320.5, 11328.1, 11345, 11345.05, 11345.1, 11345.2, 11345.3, 11345.4, 11345.45, 11345.6, 11346, and 11406.5 to, and to repeal and add Section 11343 of, the Business and Professions Code, and to amend Section 1090.5 of the Civil Code, relating to real estate appraisers, and making an appropriation therefor.\",Housing and Property\r\n\"An act to repeal and add Section 532f of the Penal Code, relating to crimes.\",Housing and Property\r\n\"An act to amend Section 487h of the Penal Code, relating to theft.\",Commerce\r\n\"An act to amend Section 21809 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"Safety Code, relating to food facilities, and declaring the urgency thereof, to take effect immediately.\",Agriculture and Food\r\n\"An act to add Section 51.15 to the Civil Code, relating to civil rights.\",Civil Liberties and Civil Rights\r\n\"An act to amend Section 19800 of the Business and Professions Code, relating to gambling control.\",Gambling and Gaming\r\n\"An act to amend Section 25503.6 of the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to amend Section 12301.6 of, and to add Section 12301.61 to, the Welfare and Institutions Code, relating to in-home supportive services.\",Senior Issues\r\n\"An act to add Section 60422.1 to the Education Code, relating to instructional materials.\",Other\r\n\"An act to amend Section 271 of, and to add Article 6 (commencing with Section 66295) to Chapter 4.5 of Part 40 of Division 5 of Title 3 of, the Education Code, relating to educational equity.\",Education\r\n\"An act to add Sections 30804.6 and 31751.4 to the Food and Agricultural Code, relating to animals.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Sections 65584.05 and 66412 of the Government Code, to amend Sections 18031.7, 18062.9, 33334.14, and 53545.9 of the Health and Safety Code, and to amend Sections 3692.4, 12206, 17058, and 23610.5 of the Revenue and Taxation Code, relating to housing.\",Housing and Property\r\n\"An act to amend Section 17582 of the Education Code, relating to school facilities.\",Education\r\n\"An act to amend, repeal, and add Section 51225.3 of the Education Code, relating to graduation requirements.\",Education\r\n\"An act to repeal and add Section 19525 of the Business and Professions Code, relating to horse racing.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 1351 of the Civil Code, relating to common interest developments.\",Other\r\n\"An act to add Section 14673.3 to the Government Code, relating to state property, and making an appropriation therefor.\",State Agencies\r\n\"An act to amend Section 20111.5 of, and to add Section 20111.6 to, the Public Contract Code, relating to public contracts.\",Education\r\n\"An act to amend Section 1363.09 of the Civil Code, relating to common interest developments.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 13431 of the Business and Professions Code, relating to petroleum products.\",Energy\r\n\"An act to amend Section 30315 of, and to add Section 30315.2 to, the Public Resources Code, relating to coastal resources.\",Environmental\r\n\"An act to amend Section 61105 of the Government Code, relating to community services districts.\",Municipal and County Issues\r\n\"An act to amend Section 60850 of the Education Code, relating to pupil assessment.\",Education\r\n\"An act to add Sections 3060.3 and 5072 to the Penal Code, relating to parole, and making an appropriation therefor.\",Crime\r\n\"An act to add and repeal Article 10 (commencing with Section 48350) of Chapter 2 of Part 27 of Division 4 of Title 2 of the Education Code, relating to public schools.\",Education\r\nAn act relating to environmental protection.,Environmental\r\n\"An act to add Section 4576 to the Penal Code, relating to correctional facilities.\",Crime\r\n\"An act to add Section 53084.5 to the Government Code, relating to local government, and declaring the urgency thereof, to take effect immediately.\",Municipal and County Issues\r\n\"An act to amend Section 49600 of the Education Code, relating to educational counseling.\",Education\r\n\"An act to amend Sections 124250 and 124251 of the Health and Safety Code, and to amend Sections 13823.15 and 13823.16 of the Penal Code, relating to domestic violence.\",Family and Children Issues\r\n\"An act to amend Section 69.5 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to amend Sections 6704, 6706.3, 6730, 6737.3, 6738, 6740, 6741, and 6787 of, to add Sections 6702.3, 6702.4, 6702.5, 6702.6, 6702.7, 6702.8, 6702.9, 6702.10, 6702.11, 6730.6, 6730.7, and 6731.7 to, and to repeal Section 6704.1 of, the Business and Professions Code, relating to engineers.\",Other\r\n\"An act to amend Section 5020 of the Probate Code, relating to nonprobate transfers.\",Housing and Property\r\n\"An act to add Section 97.79 to the Revenue and Taxation Code, relating to local government finance, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to amend Section 20090 of the Government Code, relating to public employees̢ retirement.\",Labor and Employment\r\n\"An act to amend Sections 53313.5 and 53324 of, and to add Sections 53328.1, 53329.6, 53355.5, and 53355.7 to, the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to amend Sections 1202a, 3600, 3602, and 3603 of, and to add Section 3603.5 to, the Penal Code, relating to prisons, and declaring the urgency thereof, to take effect immediately.\",Crime\r\n\"An act to add Section 2081.3 to the Fish and Game Code, relating to endangered species.\",Animal Rights and Wildlife Issues\r\n\"An act to add Part 8.2 (commencing with Section 7940) to Division 5 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 512 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Section 13211.7 to the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 1265.8 and 130060 of, and to add Sections 1265.9, 130064, 130065.1, and 130066 to, the Health and Safety Code, relating to health facilities, and making an appropriation therefor.\",Health\r\n\"An act to add Section 4107.5 to the Food and Agricultural Code, and to amend Section 8300 of, and to add Section 11011.23 to, the Government Code, relating to state surplus property, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend Section 1946.1 of the Civil Code, relating to tenancy.\",Housing and Property\r\n\"An act to add Chapter 9.9 (commencing with Section 6280) to Title 7 of Part 3 of the Penal Code, relating to prisoners.\",Crime\r\n\"An act to amend Sections 48000 and 48010 of the Education Code, relating to pupil admission.\",Education\r\n\"An act to add Section 38561.5 to the Health and Safety Code, relating to air pollution, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Section 1368.015 of, and to add Sections 1367.29 and 1368.016 to, the Health and Safety Code, and to add Sections 10123.198 and 10123.199 to the Insurance Code, relating to health care coverage.\",Health\r\nAn act relating to science and mathematics instruction.,Education\r\n\"An act to amend Section 401 of the Unemployment Insurance Code, relating to unemployment insurance.\",Labor and Employment\r\n\"An act to amend Section 923 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act relating to state property, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to amend Section 21654 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 1418.9 and 1599.1 of, and to add Section 1599.15 to, the Health and Safety Code, relating to nursing facility residents.\",Health\r\n\"An act to amend Section 5810 of the Public Utilities Code, relating to cable and video service.\",Technology and Communication\r\n\"An act to add Section 17075.20 to the Education Code, relating to school facilities.\",Education\r\n\"An act to amend Sections 2923.5, 2923.6, 2924.8, and 2924f of, and to amend, repeal, and add Section 2943 of, the Civil Code, and to amend Section 17312 of the Financial Code, relating to real property transactions.\",Housing and Property\r\n\"An act to amend Section 38505 of, and to add Section 38575 to, the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to add Chapter 27 (commencing with Section 16100) to Division 7 of the Water Code, relating to water quality.\",Environmental\r\n\"An act to add Section 33009.7 to the Education Code, and to add Section 15491 to the Government Code, relating to public meetings and hearings.\",State Agencies\r\n\"An act to add Article 1.5 (commencing with Section 49310) to Chapter 8 of Part 27 of Division 4 of Title 2 of the Education Code, relating to pupil safety.\",Education\r\n\"An act to add Section 598.1 to the Penal Code, relating to dogfighting.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 209 of the Code of Civil Procedure, relating to jury service.\",Judiciary\r\n\"An act to amend Section 399.20 of, and to add Section 387.6 to, the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Sections 1716 and 1717 of the Code of Civil Procedure, relating to judgments.\",Judiciary\r\n\"An act to amend Section 701 of the Public Utilities Code, relating to public utilities.\",Public Services\r\n\"An act to amend Section 69984 of the Education Code, and to add and repeal Chapter 3.5 (commencing with Section 18900) of Part 10.2 of Division 2 of the Revenue and Taxation Code, relating to taxation.\",Education\r\n\"An act to amend Section 350 of the Penal Code, relating to crimes.\",Crime\r\n\"An act to amend Sections 290.04, 290.05, 290.06, 290.07, and 1203 of the Penal Code, and to amend Section 706 of the Welfare and Institutions Code, relating to sex offenders.\",Crime\r\n\"An act to amend Section 65584.09 of the Government Code, relating to land use.\",Housing and Property\r\n\"An act relating to state claims, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend Section 5000 of the Penal Code, relating to the Department of Corrections and Rehabilitation.\",State Agencies\r\n\"An act to amend Sections 28, 4980.02, 4980.03, 4980.35, 4980.38, 4980.40, 4980.43, 4980.44, 4980.50, and 4980.54 of, to amend and repeal Sections 4980.37, 4980.39, 4980.41, 4980.80, and 4980.90 of, and to add Sections 4980.36, 4980.72, 4980.74, 4980.76, and 4980.78 to, the Business and Professions Code, to amend Section 1010 of the Evidence Code, to amend Sections 6924 and 6929 of the Family Code, and to amend Sections 1277 and 123115 of the Health and Safety Code, relating to marriage and family therapy.\",Health\r\n\"An act to amend Sections 54440, 54441.5, 54442, 54443.1, 54444.1, and 54444.2 of the Education Code, relating to migrant education.\",Education\r\n\"An act to amend Section 23109 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Part 8 (commencing with Section 38600) to Division 25.5 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 17072.10 of the Education Code, relating to school facilities.\",Education\r\n\"An act to amend Section 11011.15 of the Government Code, relating to state property.\",Housing and Property\r\n\"An act to amend Section 5272 of the Business and Professions Code, relating to outdoor advertising.\",Commerce\r\n\"An act to amend Sections 26001, 26002, and 26003 of the Public Resources Code, relating to energy.\",Energy\r\nAn act relating to education.,Education\r\n\"An act to add Section 102.5 to the Elections Code, relating to petitions.\",Legislative Affairs\r\n\"An act to add Article 7 (commencing with Section 111657) to Chapter 6 of Part 5 of Division 104 of the Health and Safety Code, relating to pharmaceuticals.\",Health\r\n\"An act to add Section 125293 to the Health and Safety Code, relating to stem cells.\",Legal Issues\r\n\"An act to amend Sections 237, 368, 1048, and 14213 of the Penal Code, relating to crime.\",Crime\r\n\"An act to add Section 31787.65 to the Government Code, relating to death benefits.\",Municipal and County Issues\r\n\"An act to add Article 13.5 (commencing with Section 25250.50) to Chapter 6.5 of Division 20 of, and to repeal Section 25250.65 of, the Health and Safety Code, relating to hazardous materials.\",Environmental\r\n\"An act to amend Section 1936.015 of the Civil Code, relating to passenger vehicle rentals, and declaring the urgency thereof, to take effect immediately.\",Transportation\r\n\"An act to amend Section 17582 of the Education Code, relating to school facilities.\",Education\r\n\"An act to amend Section 21655.5 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 1536.1, 1538.5, and 1567.3 of the Health and Safety Code, and to amend Section 740 of the Welfare and Institutions Code, relating to juveniles.\",Health\r\n\"An act to amend Sections 17072 and 19184 of, to amend and repeal Sections 17131.4, 17131.5, 17215.1 and 17215.4 of, and to add Sections 17138.5 and 17216 to, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Health\r\n\"An act to add and repeal Chapter 3.7 (commencing with Section 7292) of Part 1.7 of Division 2 of the Revenue and Taxation Code, relating to taxation.\",State Agencies\r\n\"An act to add Chapter 35 (commencing with Section 22949) to Division 8 of the Business and Professions Code, relating to economy hotels.\",Business and Consumers\r\n\"An act to amend Sections 11346, 11346.2, 11346.3, 11346.45, 11346.5, 11349.1, 11350, and 11350.3, and 11357 of the Government Code, relating to regulations.\",Business and Consumers\r\n\"An act to amend Section 12718 of the Government Code, relating to gaming.\",Indigenous Peoples\r\n\"An act to amend Section 14030 of, and to add Article 10 (commencing with Section 14077) to Chapter 1 of Part 5 of Division 3 of Title 1 of, the Corporations Code, relating to Indian tribes, and making an appropriation therefor.\",Commerce\r\n\"An act to amend Sections 6275, 6276.02, 6276.04, 6276.06, 6276.08, 6276.10, 6276.12, 6276.14, 6276.16, 6276.18, 6276.22, 6276.24, 6276.26, 6276.28, 6276.30, 6276.32, 6276.34, 6276.36, 6276.38, 6276.40, 6276.42, 6276.44, 6276.46, and 6276.48 of the Government Code, relating to records.\",Other\r\n\"An act to amend Section 1276.4 of, and to add Section 1276.45 to, the Health and Safety Code, relating to direct care nurses.\",Health\r\n\"An act to amend Section 17070.20 of the Education Code, and to amend Section 15490 of, to add Section 15490.5 to, and to repeal Section 14620 of, the Government Code, relating to the State Allocation Board.\",State Agencies\r\n\"An act to amend Section 2827 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Section 1831 of the Military and Veterans Code, relating to the POW/MIA Flag.\",Resolutions\r\n\"An act to amend Sections 2101, 3011, and 4103 of, and to add Sections 3020.5 and 14216.5 to, the Elections Code, and to add Section 14902.5 to the Vehicle Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Division 26.7 (commencing with Section 79700) to the Water Code, relating to financing a water supply reliability and water source protection program, by providing the funds necessary therefor through an election for the issuance and sale of bonds of the State of California and for the handling and disposition of those funds, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Section 5019.50 of the Public Resources Code, relating to state parks.\",State Agencies\r\n\"An act to add Chapter 2.7 (commencing with Section 18900) to Division 8 of the Business and Professions Code, relating to personal trainers.\",Health\r\n\"An act to add Section 17075.20 to the Education Code, relating to school facilities.\",Education\r\n\"An act to add Section 21090.2 to, and to add Chapter 3.5 (commencing with Section 25250) to Division 15 of, the Public Resources Code, relating to energy.\",Energy\r\n\"An act to add Section 69614.4 to the Government Code, relating to courts.\",Judiciary\r\n\"An act to amend Section 47614.5 of the Education Code, relating to charter school facilities.\",Education\r\n\"An act to amend Section 1596.792 of the Health and Safety Code, relating to child care.\",Legal Issues\r\n\"An act to amend Sections 226.7 and 512 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Section 11267 to the Welfare and Institutions Code, relating to public social services.\",Labor and Employment\r\n\"An act to amend Section 44011 of the Health and Safety Code, relating to vehicles.\",Transportation\r\n\"An act to add and repeal Section 66406.8 of the Education Code, relating to college textbooks.\",Education\r\n\"An act to amend Sections 13204, 14287, 15154, and 15208 of the Elections Code, relating to ballots.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 144 of, and to add Sections 144.5 and 144.6 to, the Business and Professions Code, relating to professions and vocations.\",Labor and Employment\r\n\"An act to amend Sections 42023.1, 42023.2, 42023.3, 42023.4, 42023.5, and 42023.6 of, and to add Section 40118 to, the Public Resources Code, relating to solid waste, and making an appropriation therefor.\",Environmental\r\n\"An act to amend Sections 65072 and 65073 of, and to add Sections 14000.6, 65071, 65072.1, and 65072.2 to, the Government Code, relating to transportation planning.\",Transportation\r\n\"An act to amend Sections 7025, 7028.5, 7029, 7065, 7065.1, 7065.5, 7068, 7068.1, 7068.2, 7069, 7071, 7071.7, 7071.8, 7071.9, 7071.11, 7071.17, 7072.5, 7075.1, 7076, 7076.2, 7085.6, 7090, 7090.1, 7096, 7121, 7121.1, 7121.5, 7121.6, 7122, 7122.1, 7122.2, 7122.5, 7137, 7138, 7152, 7159, and 7159.10 of, and to add Sections 7071.6.5 and 7071.19 to, the Business and Professions Code, and to amend Section 17002 of the Corporations Code, relating to contractors, and making an appropriation therefor.\",Labor and Employment\r\n\"An act to amend Section 3291 of the Civil Code, and to amend Section 685.010 of the Code of Civil Procedure, relating to judgments.\",Judiciary\r\n\"An act to add Sections 862 and 15002 to the Financial Code, relating to financial institutions.\",Commerce\r\n\"An act to amend Section 2000 of the Business and Professions Code, relating to medical practice.\",Health\r\n\"An act to amend Section 1707.7 of the Insurance Code, relating to the Insurance Commissioner.\",Insurance\r\n\"An act to amend Sections 789.10 and 10127.7 of the Insurance Code, relating to life insurance.\",Insurance\r\n\"An act to amend Section 18691 of the Health and Safety Code, relating to mobilehomes.\",Housing and Property\r\n\"An act to amend Section 1170 of the Penal Code, relating to sentencing.\",Crime\r\n\"An act to add Section 5008.9 to the Public Resources Code, relating to public resources.\",Public Services\r\n\"An act to repeal and add Section 1798.89 of the Civil Code, and to amend Section 4506 of the Family Code, relating to social security numbers.\",Public Services\r\n\"An act to amend Sections 17008.5, 17020.6, 17024.5, 17041, 17052.12, 17062, 17063, 17072, 17085, 17132.5, 17144.5, 17152, 17206, 17250, 17250.5, 17255, 17275.5, 17276, 17501, 17551, 17952.5, 18165, 18180, 18631, 19116, 19131, 19134, 19164, 19166, 19172, 19179, 19443, 21015.5, 23045, 23051.5, 23456, 23609, 23712, 23732, 23772, 24305, 24356, 24357, 24357.1, 24357.7, 24358, 24416, 24949.5, 24990.6, and 24993 of, to add Sections 17020.15, 17131.3, 17132.8, 17204, 17225, 17257, 17257.2, 17257.4, 17275.2, 17275.3, 17279.6, 17560.5, 17681.3, 17755, 18031.5, 18037.5, 18151.5, 18155.6, 19172.5, 19185, 19186, 23046.5, 23703.7, 24303, 24329, 24349.2, 24462, 24831.3, 24941.5, 24950.5, 24990.2, and 24990.8 to, and to repeal Sections 24355.3, 24981, and 24988 of, the Revenue and Taxation Code, relating to taxation.\",\"Federal, State, and Local Relations\"\r\n\"An act to add Section 7026.13 to the Business and Professions Code, relating to contractors.\",Labor and Employment\r\n\"An act to amend Section 65040.6 of, and to add Section 65083 to, the Government Code, to amend Sections 41081, 44223, and 44225 of the Health and Safety Code, to amend Section 75125 of the Public Resources Code, and to amend Sections 9250.2 and 9250.17 of, and to add Section 9250.6 to, the Vehicle Code, relating to land use.\",Environmental\r\n\"An act to amend Section 12370 of the Penal Code, relating to body armor, and declaring the urgency thereof, to take effect immediately.\",Crime\r\n\"An act to amend Sections 11106, 12030, 12076, 12077, and 12078 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Sections 9600.5, 14000, and 14230 of, and to add Section 14230.7 to, the Unemployment Insurance Code, relating to workforce investment.\",Labor and Employment\r\n\"An act to amend Section 17701 of the Business and Professions Code, relating to coupons.\",Commerce\r\n\"An act to amend Section 379.6 of the Public Utilities Code, relating to electricity.\",Energy\r\n\"An act to amend Sections 31520.1, 31520.2, 31520.3, 31520.4, and 31520.5 of, to add Section 31523.1 to, and to repeal and add Section 31523 of, the Government Code, relating to county retirement.\",Senior Issues\r\n\"An act to amend Section 23987 of the Business and Professions Code, relating to alcoholic beverages.\",Legal Issues\r\n\"An act to add Section 49437 to the Education Code, relating to antibiotics.\",Health\r\nAn act relating to military and veterans.,Military\r\n\"An act to amend Section 699.5 of the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Section 972.1 of the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Section 1636 of the Military and Veterans Code, relating to the military.\",Military\r\n\"An act to amend Section 890 of the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Section 11713.1 of, and to add Section 11713.13 to, the Vehicle Code, relating to vehicles, and declaring the urgency thereof, to take effect immediately.\",Transportation\r\n\"An act to add Section 60006 to the Education Code, relating to public school instruction.\",Education\r\n\"An act to amend Sections 9875, 9880.1, 9884.8, 9884.9, and 9889.20 of, and to add Section 9884.76 to, the Business and Professions Code, relating to automotive repair.\",Transportation\r\n\"An act to amend Section 1 of Chapter 937 of the Statutes of 1931, relating to tide and submerged lands.\",Environmental\r\n\"An act to amend Section 201 of the Public Utilities Code, relating to public utilities.\",Public Services\r\n\"An act to add Section 34004.1 to the Health and Safety Code, relating to redevelopment.\",Municipal and County Issues\r\n\"An act to amend Section 1203.9 of the Penal Code, relating to probation.\",Crime\r\n\"An act to amend Section 1203c of the Penal Code, relating to restitution.\",Crime\r\n\"An act to amend Section 1808.22 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Section 4576 to the Penal Code, relating to correctional facilities.\",Crime\r\n\"An act to amend Sections 7030, 7159, and 7159.5 of the Business and Professions Code, relating to contractors.\",Labor and Employment\r\n\"An act to amend Section 298 of, and to amend the heading of Article 4 (commencing with Section 298) of Chapter 6 of Title 9 of Part 1 of, the Penal Code, relating to forensic data.\",Crime\r\n\"An act to amend Sections 667.5 and 1192.7 of the Penal Code, relating to sentencing.\",Crime\r\n\"An act to amend Sections 1200, 1213, and 1218.1 of, and to add Section 1218.3 to, the Health and Safety Code, relating to clinics.\",Health\r\n\"An act to amend Sections 17052.12 and 23609 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 22435.5 of the Business and Professions Code, relating to shopping carts.\",Business and Consumers\r\n\"An act to add Section 11102.2 to the Penal Code, relating to criminal records.\",Crime\r\n\"An act to add and repeal Article 3.7 (commencing with Section 2089.2) of Chapter 1.5 of Division 3 of the Fish and Game Code, relating to fish and wildlife.\",Other\r\n\"An act to amend Sections 21636, 21637, 21638, and 21643 of, to amend, repeal, and add Sections 21628 and 21628.1 of, and to add Section 21628.2 to, the Business and Professions Code, and to amend Section 12071 of the Penal Code, relating to firearms.\",Guns\r\n\"An act to add and repeal Section 52124.2 of the Education Code, relating to class size reduction, and declaring the urgency thereof, to take effect immediately. (PU 20090SB__019394ENR )\",Education\r\n\"An act to add Section 102222 to the Health and Safety Code, relating to child protection.\",Health\r\n\"An act to amend Section 113947.3 of, and to add Sections 113790, 113790.1, and 113948 to, the Health and Safety Code, relating to food safety.\",Agriculture and Food\r\n\"An act to amend Sections 65863.10, 65863.11, and 65863.13 of the Government Code, relating to land use.\",Environmental\r\n\"An act to amend Section 185020 of the Public Utilities Code, relating to high-speed rail.\",Transportation\r\n\"An act to add Division 26.7 (commencing with Section 79700) to the Water Code, relating to financing a water supply reliability and water source protection program, by providing the funds necessary therefor through an election for the issuance and sale of bonds of the State of California and for the handling and disposition of those funds, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Sections 29702, 29725, 29727, 29733, 29735, 29735.1, 29738, 29741, 29751, 29752, 29754, 29756.5, 29765, 29771, and 29780 of, to add Sections 29703.5, 29722.5, 29728.5, 29759, 29763.1, 29763.2, 29763.3, 29773, 29773.5, and 29778.5 to, to repeal Section 29763.5 of, and to repeal and add Sections 29736, 29739, 29753, 29760, 29761, 29761.5, 29762, 29763, and 29764 of, the Public Resources Code, relating to the Sacramento-San Joaquin Delta.\",Environmental\r\n\"An act to amend Section 6302.1 of, and to add Sections 6302.2, 6302.3, 6302.4, and 6302.5 to, the Public Resources Code, relating to tidelands and submerged lands.\",Environmental\r\n\"An act to amend Section 801.1 of the Penal Code, relating to statutes of limitation.\",Crime\r\n\"An act to amend Section 1185 of the Civil Code, relating to notaries public.\",Legal Issues\r\n\"An act to add and repeal Sections 17053 and 23650 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Energy\r\n\"An act to add and repeal Sections 17053.110 and 23601.110 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Energy\r\n\"An act to add and repeal Sections 17053.91 and 23649.1 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Environmental\r\n\"An act to add Section 14218.3 to the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 25163.3 of the Health and Safety Code, relating to hazardous waste.\",Environmental\r\n\"An act to amend Section 2807 of the Penal Code, relating to public contracts.\",Business and Consumers\r\n\"An act to amend Section 39000 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Sections 4040 and 4076 of the Business and Professions Code, relating to pharmacy.\",Health\r\n\"An act to add and repeal Sections 18154 and 24996 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to amend Section 10130 of the Business and Professions Code, relating to real estate.\",Housing and Property\r\n\"An act to amend Section 7200.7 of the Business and Professions Code, relating to guide dogs for the blind.\",Health\r\n\"An act to amend Section 21177 of the Public Resources Code, relating to the environment.\",Environmental\r\n\"An act to amend Section 7311.1 of, and to add Section 7311.25 to, the Labor Code, relating to employment safety.\",Labor and Employment\r\n\"An act to amend Section 2945 of the Civil Code, relating to mortgages.\",Housing and Property\r\n\"An act to amend Section 22435.5 of the Business and Professions Code, relating to shopping carts.\",Business and Consumers\r\n\"An act to add Article 8 (commencing with Section 3470) to Chapter 2 of Part 1 of Division 4 of the Fish and Game Code, relating to wildlife.\",Transportation\r\n\"An act to add Section 23606 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Business and Consumers\r\n\"An act to amend Sections 11100 and 11106 of, and to add Section 11375.5 to, the Health and Safety Code, relating to controlled substances.\",Health\r\n\"An act to add Article 4.6 (commencing with Section 172) to Chapter 1 of Division 1 of the Streets and Highways Code, relating to transportation.\",Transportation\r\n\"An act to add Article 3.3 (commencing with Section 47115) to Chapter 1 of Part 7 of Division 30 of the Public Resources Code, relating to medical waste.\",Health\r\n\"An act to amend Section 6050 of the Penal Code, relating to prisons.\",Legislative Affairs\r\n\"An act to add Section 66907 to, and to add Chapter 7 (commencing with Section 94700) to Part 59 of Division 10 of Title 3 of, the Education Code, relating to private postsecondary education.\",Labor and Employment\r\n\"An act to amend Section 17059 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to repeal and add Division 3 (commencing with Section 28000) of Title 4 of the Corporations Code, relating to capital access companies, and declaring the urgency thereof, to take effect immediately.\",Business and Consumers\r\nAn act relating to water conservation.,Environmental\r\n\"An act to add Section 17321 to the Family Code, relating to child support services.\",State Agencies\r\n\"An act to add Section 10150.5 to the Business and Professions Code, relating to real estate.\",Housing and Property\r\n\"An act to add and repeal Chapter 12.4 (commencing with Section 42615) of Part 3 of Division 30 of the Public Resources Code, relating to school recycling programs.\",Environmental\r\n\"An act to amend Section 12578 of the Water Code, relating to water.\",Environmental\r\n\"An act to amend Sections 130060 and 130061 of, and to add and repeal Section 130022 of, the Health and Safety Code, relating to health facilities, and making an appropriation therefor.\",Health\r\n\"An act to amend Section 13823.95 of the Penal Code, relating to victims of sexual assault.\",Crime\r\nAn act relating to housing.,Housing and Property\r\n\"An act to add Section 53060.2 to the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to add Title 21 (commencing with Section 99600) to the Government Code, relating to state government.\",State Agencies\r\n\"An act to add Section 16794 to the Government Code, relating to general obligation bonds.\",Legal Issues\r\n\"An act to amend Section 3004 of the Penal Code, relating to sex offenders.\",Technology and Communication\r\n\"An act to amend Sections 65302 and 65302.5 of, and to add Section 65040.7 to, the Government Code, and to add Section 21083.01 to the Public Resources Code, relating to local planning.\",Health\r\n\"An act to amend Section 41964 of the Health and Safety Code, relating to air pollution, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to add Sections 17053.76 and 23622.9 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 1270, 14035, 16197, 17584, 17592.5, 24216.5, 37254, 44259, 44961, 47660, 51452, 52052, 52127, and 54026 of, and to repeal Sections 41857 and 47623 of, the Education Code, and to amend Section 53892.1 of the Government Code, relating to education.\",Education\r\n\"An act to add the heading to Article 1 (commencing with Section 2930) of, and to add Article 2 (commencing with Section 2940) to, Chapter 13 of Division 3 of, the Fish and Game Code, relating to the Salton Sea Restoration Council.\",Environmental\r\n\"An act to amend Sections 10134, 10135, 10136, 10137, 10138, 10139, 10139.3, and 10139.5 of the Insurance Code, relating to structured settlements.\",Commerce\r\n\"An act to amend Sections 60641, 69613, 69613.6, 69667, 70101, 70104, 70124, 87482, and 87882 of the Education Code, and to amend Section 68926.3 of the Government Code, relating to education.\",Education\r\n\"An act to amend Sections 44221, 44225.6, 44251, 44259, 44263, 44332.5, 44421, 44422, 44426, 44830.7, 44853, 44856, 44917, 44980, 44987.3, 52127, 52163, and 52165 of the Education Code, relating to teacher credentialing.\",Education\r\n\"An act to amend Section 104323 of, and to add Sections 104323.1, 104323.2, and 104323.3 to, the Health and Safety Code, relating to public health.\",Health\r\n\"An act to amend Section 13385 of the Water Code, relating to water quality.\",Environmental\r\n\"An act to amend Section 52302 of the Education Code, relating to career technical education.\",Education\r\n\"An act to add Chapter 4 (commencing with Section 2200) to Division 2.5 of the Welfare and Institutions Code, relating to the California Youth Legislature.\",Education\r\n\"An act to repeal Sections 3404 and 3405 of, and to repeal and add Sections 3401, 3402, and 3403 of, the Government Code, relating to the Public Safety Officer Medal of Valor.\",Public Services\r\n\"An act to amend Section 313 of the Education Code, relating to pupil testing.\",Education\r\n\"An act to amend Section 13292.5 of the Government Code, relating to state agencies.\",State Agencies\r\n\"An act relating to transportation, and declaring the urgency thereof, to take effect immediately.\",Transportation\r\n\"An act to add Section 4576 to the Penal Code, relating to correctional facilities.\",Crime\r\n\"An act to amend Section 143 of the Streets and Highways Code, relating to transportation.\",Transportation\r\n\"An act to amend Sections 63049, 63049.4, and 63049.5 of the Government Code, relating to tobacco settlement moneys, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to amend Section 33684 of the Health and Safety Code, relating to redevelopment.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 25502.5 of the Government Code, relating to counties.\",Municipal and County Issues\r\n\"An act to add Section 74.8 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to amend Sections 5205.5, 21655.9, and 40000.13 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to repeal Article 2 (commencing with Section 3240.5) of Chapter 2 of Part 1 Division 4 of the Fish and Game Code, relating to fish and game.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 13504 of the Penal Code, relating to peace officer training.\",Crime\r\n\"An act to amend Sections 44662, 44664, 48260.5, and 48264.5 of the Education Code, and to amend Section 17617 of the Government Code, relating to school districts.\",Education\r\n\"An act to amend Sections 13002, 13004, 13005, 13006, 18400, 19202, 19214, and 19214.5 of, to add Section 19212.5 to, and to repeal Section 13007 of, the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 25782 of the Public Resources Code, and to amend Section 2851 of, and to add Section 2853 to, the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Sections 6200, 6203, and 6204 of the Business and Professions Code, to amend Sections 1219 and 1798.79 of the Civil Code, to amend Section 706.108 of the Code of Civil Procedure, to amend Section 68516 of the Government Code, and to amend Section 2620 of the Probate Code, relating to civil law.\",Legal Issues\r\n\"An act to amend Section 100.4 of, and to add Section 622.2 to, the Streets and Highways Code, relating to transportation.\",Transportation\r\n\"An act to add Sections 25250.29 and 25250.30 to the Health and Safety Code, and to amend Sections 48100, 48623, 48631, 48632, 48645, 48650, 48651, 48652, 48653, 48656, 48660, 48660.5, 48662, 48670, 48673, 48674, 48690, and 48691 of, to add Sections 48620.2, 48651.5, and 48654 to, and to repeal Sections 48633 and 48634 of, the Public Resources Code, relating to oil, and making an appropriation therefor.\",Energy\r\n\"An act to amend Section 999.5 of the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to add Section 7401.5 to the Business and Professions Code, relating to barbering and cosmetology.\",Other\r\n\"An act to amend Section 25501 of, to add Section 25227 to, and to repeal and add Section 25107 of, the Public Resources Code, relating to energy.\",Energy\r\n\"An act to add Sections 33544 and 51882 to the Education Code, relating to schools.\",Education\r\n\"An act to add section 41814 to the Health and Safety Code, relating to air resources.\",Environmental\r\n\"An act to amend Section 116.820 of the Code of Civil Procedure, to amend Section 3140 of the Probate Code, and to amend Section 19280 of the Revenue and Taxation Code, relating to courts.\",Judiciary\r\n\"An act to add Division 10.56 (commencing with Section 11972.10) to the Health and Safety Code, relating to alcohol abuse programs.\",Health\r\nAn act relating to taxation.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 16809.4 of, and to add Article 2.82 (commencing with Section 14087.98) to Chapter 7 of Part 3 of Division 9 of, the Welfare and Institutions Code, relating to health plans.\",Health\r\n\"An act to amend Section 65080 of the Government Code, relating to transportation planning.\",Transportation\r\n\"An act to amend Section 10620 of the Water Code, relating to water.\",Public Services\r\n\"An act to amend Section 8592.2 of the Government Code, relating to emergency services.\",Public Services\r\n\"An act to add Section 6610 to the Welfare and Institutions Code, relating to sexually violent predators.\",Crime\r\n\"An act to amend Sections 6103.1 and 6103.4 of the Government Code, to amend Sections 1052, 1055, 1055.2, 1055.3, 1120, 1228.5, 1228.7, 1525, 1535, 1538, 1551, 1825, 1845, 5103, and 5106 of, and to add Sections 1051.1, 1052.5, 1826, 1846, and 1847 to, the Water Code, relating to water resources.\",Environmental\r\n\"An act to add Section 653.77 to the Penal Code, relating to monitoring devices.\",Technology and Communication\r\n\"An act to add Sections 17041.7 and 23151.7 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 53081 of the Education Code, relating to career technical education.\",Labor and Employment\r\n\"An act to amend Sections 1399.805 and 1399.811 of, and to add and repeal Sections 1356.2 and 1357.55 of, the Health and Safety Code, to amend Sections 10901.3, 10901.9, 12718, 12725, 12727, and 12739 of, to add Sections 12712.5 and 12715.5 to, to add and repeal Sections 10127.19, 10198.11, 12719, 12721.5, 12724, and 12737.5 of, and to add and repeal Chapter 7.5 (commencing with Section 12738.1) of Part 6.5 of Division 2 of, the Insurance Code, relating to health care coverage, and making an appropriation therefor.\",Health\r\n\"An act to amend Sections 8880.4, 8880.56, 8880.64, 8880.65, and to repeal Section 8880.63 of the Government Code, relating to the California State Lottery, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act to add Section 3724.32 to the Public Resources Code, relating to public resources.\",Energy\r\n\"An act to amend Section 37222 of the Education Code, and to add Section 6721 to the Government Code, relating to Harvey Milk Day.\",Resolutions\r\n\"An act to amend Section 5096.520 of the Public Resources Code, relating to resource conservation.\",Environmental\r\n\"An act to amend Section 84810.5 of the Education Code, relating to community colleges.\",Education\r\n\"An act to amend Sections 65080, 65583, and 65588 of the Government Code, and to amend Section 75123 of the Public Resources Code, relating to local planning.\",Housing and Property\r\n\"An act to amend Section 101.9 of the Streets and Highways Code, relating to highways.\",Public Services\r\n\"An act to amend Section 19605 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to amend Section 17433.5 of the Family Code, relating to child support.\",Family and Children Issues\r\n\"An act to amend Sections 48623, 48624, 48632, 48651, 48651.5, 48652, 48653, 48660.5, 48662, 48670, 48673, 48674, 48676, and 48691 of, to add Section 48610.3 to, and to repeal Section 48654 of, the Public Resources Code, relating to oil, and making an appropriation therefor.\",Energy\r\n\"An act to amend Sections 800, 803.1, 805.5, and 2027 of, and to add Sections 805.3, 805.8, and 2191.5 to, the Business and Professions Code, relating to physicians and surgeons.\",Health\r\n\"An act to amend Sections 3751, 4061, 4063, and 17422 of the Family Code, relating to child support.\",Health\r\n\"An act to amend Section 2828 of the Public Utilities Code, relating to electricity.\",Energy\r\n\"An act to add Section 3020.5 to the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Section 290.47 to the Penal Code, relating to sex offenders.\",Crime\r\n\"An act to amend Sections 290.014, 290.015, and 1203.047 of, and to add Section 3005 to, the Penal Code, relating to sex offenders.\",Technology and Communication\r\n\"An act to amend Section 107160 of the Health and Safety Code, relating to nuclear medicine technology.\",Health\r\n\"An act to repeal Section 9003 of the Penal Code, relating to sex offenders.\",Crime\r\n\"An act to amend Sections 331, 332, 1528, 3686, 4332, 4656, 4751, 4902, and 4903 of, to add Sections 711.1 and 3953 to, to repeal Section 3685 of, and to repeal and add Sections 3684 and 4334 of, the Fish and Game Code, relating to hunting.\",Gambling and Gaming\r\n\"An act to amend Section 1050 of the Penal Code, relating to criminal procedure.\",Judiciary\r\nAn act relating to education.,Education\r\nAn act relating to adult education.,Education\r\n\"An act to amend Section 50675.5 of, and to add Part 14 (commencing with Section 53600) to Division 31 of, the Health and Safety Code, and to amend Section 980 of the Military and Veterans Code, relating to housing, by providing the funds necessary therefor through the issuance and sale of bonds by the State of California and by providing the handling and disposition of those funds, and declaring the urgency thereof, to take effect immediately.\",Military\r\n\"An act relating to state employees, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\n\"An act to amend Section 8545 of the Family Code, to amend Section 1506 of the Health and Safety Code, and to amend Sections 4094, 11462, 11463, 16119, 16120.1, 16121, 16121.05, and 16501.1 of, and to add Sections 366.215 and 16010.2 to, the Welfare and Institutions Code, relating to services for children.\",Family and Children Issues\r\n\"An act to amend Sections 30104, 30108, and 30181 of, and to add Article 4 (commencing with Section 30135) to Chapter 2 of Part 13 of Division 2 of, the Revenue and Taxation Code, relating to taxation, making an appropriation therefor, to take effect immediately, tax levy.\",Health\r\n\"An act to add Section 22973.4 to the Business and Professions Code, relating to cigarette and tobacco products.\",Legal Issues\r\n\"An act to amend Sections 113947.2 and 113947.3 of, and to add Sections 113790 and 113948 to, the Health and Safety Code, relating to food safety, and declaring the urgency thereof, to take effect immediately.\",Agriculture and Food\r\nAn act relating to public education.,Education\r\n\"An act to add and repeal Section 21080.23.5 of the Public Resources Code, relating to the environment.\",Environmental\r\n\"An act to amend Sections 2436.5 and 2455 of, and to add Section 2455.1 to, the Business and Professions Code, and to amend Sections 128330 and 128553 of the Health and Safety Code, relating to physicians and surgeons, and making an appropriation therefor.\",Health\r\n\"An act to add Division 12.8 (commencing with Section 132800) to the Public Utilities Code, relating to transportation.\",Transportation\r\n\"An act to add Section 130064 to the Health and Safety Code, relating to health facilities, and making an appropriation therefor.\",Health\r\n\"An act to amend Section 653o of the Penal Code, relating to crimes.\",Animal Rights and Wildlife Issues\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 19864.5 to the Business and Professions Code, relating to gaming.\",Gambling and Gaming\r\n\"An act to add Sections 17053.50 and 23650 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Labor and Employment\r\n\"An act to amend Sections 72401, 72420.1, 72421, 72430, and 72441 of, and to amend and repeal Section 72440 of, the Public Resources Code, relating to vessels.\",Transportation\r\n\"An act to add Section 21101.5 to the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 12599 of the Government Code, relating to charitable fundraising.\",Commerce\r\n\"An act to add Section 387.5 to the Code of Civil Procedure, relating to civil actions.\",Other\r\n\"An act to repeal and add Section 399.15 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to add Section 2455.2 to the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to add Sections 12206.5, 17058.5, and 23610.8 to the Revenue and Taxation Code, relating to taxation, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to add Section 53593.5 to the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to amend Sections 1270, 1270.1, 1272.1, 1275, and 1319 of the Penal Code, relating to crime.\",Crime\r\n\"An act to add Section 740.2 to the Public Utilities Code, relating to electrical infrastructure.\",Energy\r\n\"An act to add Section 22894 to the Government Code, relating to county employees.\",Senior Issues\r\n\"An act to add Section 3260.3 to the Civil Code, relating to works of improvement.\",Other\r\n\"An act to amend Section 2101 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"Institutions Code, relating to domestic violence.\",Social Issues\r\n\"An act to add Section 10752.5 to the Revenue and Taxation Code, relating to vehicle license fees.\",Transportation\r\nAn act relating to education finance.,Education\r\n\"An act to amend Sections 22, 473.1, 473.15, 473.2, 473.3, 473.4, 473.6, and 9882 of, to add Sections 473.12 and 473.7 to, to repeal Sections 473.16 and 473.5 of, and to repeal and add Sections 101.1 and 473 of, the Business and Professions Code, relating to regulatory boards.\",Legal Issues\r\n\"An act to amend Sections 2550, 2558.46, 17070.766, 42238.146, 42605, 44259, 45023.1, 45023.4, 46010.2, and 52124.3 of, to amend, repeal, and add Section 17587 of, and to add and repeal Section 52055.60 of, the Education Code, to amend Sections 7906 and 8880.5 of the Government Code, to amend Items 6110-488, 6440-001-0001, 6610-001-0001, and 6870-101-0001 of Section 2.00 of, and to amend Section 12.42 of, the Budget Act of 2008 (Chapters 268 and 269 of the Statutes of 2008), and to amend Section 42 of Chapter 12 of the Statutes of 2009, relating to education finance, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 52302.2 and 52302.8 of the Education Code, relating to career technical education.\",Labor and Employment\r\n\"An act to amend Section 14838.5 of, and to add Section 14841 to, the Government Code, and to amend Section 10105 of the Public Contract Code, relating to public contracts.\",Business and Consumers\r\n\"An act to amend Sections 927.6 and 927.7 of the Government Code, relating to the California Prompt Payment Act.\",Military\r\n\"An act to amend Section 67600 of the Education Code, relating to military training.\",Military\r\n\"An act to amend Section 66025.6 of, to add Sections 66025.4 and 66025.5 to, and to add the heading of Article 3.7 (commencing with Section 66025.3) to Chapter 2 of Part 40 of Division 5 of Title 3 of, the Education Code, relating to student financial aid.\",Military\r\nAn act relating to transportation.,Transportation\r\nAn act relating to transportation.,Transportation\r\n\"An act to amend Section 52052.1 of, and to add Section 48070.6 to, the Education Code, relating to pupil retention.\",Education\r\nAn act relating to state employees.,Labor and Employment\r\n\"An act to add Section 10609.45 to the Welfare and Institutions Code, relating to human services.\",Housing and Property\r\n\"An act to amend Section 3511 of the Government Code, relating to public employment.\",Labor and Employment\r\n\"An act to add Section 1714.43 to the Civil Code, and to add Section 19547.5 to the Revenue and Taxation Code, relating to human trafficking.\",Crime\r\n\"An act to amend Sections 6011 and 6012 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to amend Section 14529.9 of the Government Code, relating to transportation.\",Transportation\r\n\"An act to add Section 1923.1 to the Civil Code, relating to reverse mortgages.\",Housing and Property\r\n\"An act to amend Sections 1569.884 and 1569.885 of the Health and Safety Code, relating to residential care facilities for the elderly.\",Senior Issues\r\n\"An act to amend Sections 26840.7 and 26840.8 of the Government Code, and to amend Sections 18293, 18304, and 18305 of the Welfare and Institutions Code, relating to domestic violence.\",Social Issues\r\n\"An act to add Chapter 8.1 (commencing with Section 1966) to Division 2.5 of the Streets and Highways Code, and to amend Sections 21251 and 21260 of the Vehicle Code, relating to neighborhood electric vehicles.\",Transportation\r\n\"An act to amend Section 51246 of the Government Code, relating to agricultural land.\",Environmental\r\n\"An act to amend Section 512 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Section 62 of the Labor Code, relating to employment.\",Commerce\r\n\"An act to amend Section 60.8 of the Labor Code, relating to employment.\",State Agencies\r\n\"An act to amend Section 290.018 of the Penal Code, relating to sex offenders.\",Crime\r\n\"An act to amend Section 6605 of the Welfare and Institutions Code, relating to sexually violent predators.\",Crime\r\n\"An act to add Section 5653.1 to the Fish and Game Code, relating to dredging, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to add Section 527.1 to the Water Code, relating to the South Tahoe Public Utilities District.\",Public Services\r\n\"An act to amend Section 15956 of the Public Utilities Code, relating to public utility districts.\",Public Services\r\n\"An act to amend Sections 651 and 2023.5 of, and to add Section 2027.5 to, the Business and Professions Code, and to amend Sections 1248, 1248.15, 1248.2, 1248.25, 1248.35, 1248.5, 1248.55, and 1279 of the Health and Safety Code, relating to healing arts.\",Health\r\n\"An act to add and repeal Article 5.5 (commencing with Section 54698) of Chapter 9 of Part 29 of Division 4 of Title 2 of the Education Code, relating to partnership academies.\",Education\r\n\"An act to add Section 236.3 to the Penal Code, relating to human trafficking.\",Crime\r\n\"An act to add and repeal Chapter 3 (commencing with Section 1228) of Title 8 of Part 2 of the Penal Code, relating to probation.\",Crime\r\n\"An act to add Section 5013.2 to the Public Resources Code, relating to state parks.\",Housing and Property\r\n\"An act to amend Sections 48301, 48303, 48306, 48307, 48310, 48313, and 48315 of, to add Section 48316 to, and to repeal Section 48314.5 of, the Education Code, relating to school attendance.\",Education\r\n\"An act to add Section 96.11 to the Revenue and Taxation Code, relating to local government finance.\",Municipal and County Issues\r\n\"An act to amend Section 11564.5 of, and to add Section 11564.7 to, the Government Code, relating to state boards and commissions.\",Labor and Employment\r\n\"An act to amend Sections 5216.1 and 5412 of the Business and Professions Code, relating to outdoor advertising.\",Commerce\r\n\"An act to amend Sections 52370 and 52371 of the Education Code, relating to career technical training.\",Labor and Employment\r\n\"An act to amend Section 19604 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to amend Sections 327, 382, 739.1, and 747 of, and to add Sections 365.1, 739.9, 745, and 748 to, the Public Utilities Code, and to amend Section 80110 of the Water Code, relating to energy, and declaring the urgency thereof, to take effect immediately.\",Energy\r\n\"An act to amend Sections 12126, 12130, and 12132 of, and to add Sections 12134 and 12135 to, the Penal Code, relating to firearms.\",Guns\r\n\"An act to amend Sections 2550.1 and 2558.46 of the Education Code, relating to juvenile court schools.\",Family and Children Issues\r\n\"An act to amend Sections 800, 803.1, 805, 805.1, 805.5, 2027, and 2220 of, and to add Section 805.01 to, the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to amend Section 56195.1 of the Education Code, relating to special education.\",Education\r\n\"An act to amend Section 80 of the Military and Veterans Code, relating to veterans.\",Military\r\n\"An act to amend Item 5240-301-0660 of Section 2.00 of the Budget Act of 2003 (Chapter 157 of the Statutes of 2003), and to amend Items 5225-301-0660 and 5225-491 of Section 2.00 of the Budget Act of 2008 (Chapters 268 and 269 of the Statutes of 2008), relating to the state budget.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 5440 of the Business and Professions Code, relating to outdoor advertising.\",Commerce\r\n\"An act to add Part 4 (commencing with Section 11975.10) to Division 10.5 of the Health and Safety Code, to amend Section 11165.7 of the Penal Code, and to amend Section 15630 of the Welfare and Institutions Code, relating to public health.\",Health\r\n\"An act to amend Section 62074 of the Food and Agricultural Code, relating to milk.\",Agriculture and Food\r\n\"An act to amend Section 2000 of the Fish and Game Code, relating to fish and wildlife.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 2536 of the Fish and Game Code, relating to hunting and fishing guides.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 54957.6 of the Government Code, relating to public meetings.\",Labor and Employment\r\n\"An act to amend Sections 17039.2 and 23036.2 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 6011 and 6012 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to amend Sections 99400 and 99401.5 of, and to add Sections 99232.1, 99232.2, and 99232.3 to, the Public Utilities Code, relating to transportation.\",Transportation\r\n\"An act to amend Sections 70, 70.2, 70.4, 70.8, 71.2, 71.4, 71.8, 72, 72.2, 76, 76.3, 76.5, 76.6, 86, 131, 133, 264, 300, 301, 302, 304, 305, 306, 307, 308, 505.5, 571, 652, 654.5, 658.3, 668.1, 738, and 780 of, to add Sections 309 and 310 to, to repeal Section 660.2 of, and to repeal Chapter 2.5 (commencing with Section 110) of Division 1.5 of, the Harbors and Navigation Code, relating to boating and waterways.\",Recreation\r\n\"An act to amend Section 10830 of the Welfare and Institutions Code, relating to public social services.\",Public Services\r\n\"An act to add Title 21 (commencing with Section 99600) to the Government Code, relating to state government.\",State Agencies\r\nAn act relating to electricity.,Energy\r\n\"An act to amend Sections 12891 and 12892 of, and to add Section 14033 to, the Government Code, and to amend Sections 25620 and 25620.1 of, and to add Part 5 (commencing with Section 71400) to Division 34 of, the Public Resources Code, relating to energy.\",Energy\r\n\"An act to amend Section 42477 of the Public Resources Code, relating to electronic waste.\",Environmental\r\n\"An act to add Section 52332 to the Education Code, relating to regional occupational centers or programs.\",Labor and Employment\r\n\"An act to add Section 1366.30 to the Health and Safety Code, and to add Section 10128.60 to the Insurance Code, relating to health care coverage, and declaring the urgency thereof, to take effect immediately.\",Insurance\r\n\"An act to amend Section 43845 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 38501 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 399.4 of the Public Utilities Code, relating to energy efficiency.\",Energy\r\n\"An act to add Section 1203.83 to the Penal Code, relating to probation.\",Crime\r\n\"An act to amend Section 13964 of, and to add Section 13963.1 to, the Government Code, relating to grants for trauma centers.\",Crime\r\n\"An act to amend Sections 14530.1 and 14679 of the Government Code, to amend Sections 44011 and 44126 of the Health and Safety Code, and to amend Sections 4000.1, 9103, 12810.3, 21650, 21800, 22507.8, 22511.7, 22511.8, 34501.2, and 40215 of, and to add Sections 231.5 and 231.6 to, the Vehicle Code, relating to transportation.\",Transportation\r\n\"An act to add Division 26.7 (commencing with Section 79700) to the Water Code, relating to financing a water supply reliability and water source protection program, by providing the funds necessary therefor through an election for the issuance and sale of bonds of the State of California and for the handling and disposition of those funds, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to add Part 5.2 (commencing with Section 5200) to Division 2 of the Water Code, relating to water.\",Environmental\r\n\"An act to amend Sections 21670, 21670.1, 21670.4, 21671.5, 21674.7, 21675.1, 21678, 21679, and 21679.5 of, and to repeal Section 21677 of, the Public Utilities Code, relating to airports.\",Transportation\r\n\"An act to amend Section 32500 of, and to add Sections 32501, 32502, and 32503 to, the Education Code, and to amend Section 2053.4 of the Penal Code, relating to inmate education.\",Education\r\n\"An act to add Section 84307.5 to the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 14310, 17301, and 17302 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 1799.111 of the Health and Safety Code, relating to mental health.\",Health\r\n\"An act to repeal Section 9027 of, and to repeal and add Section 9028 of, the Government Code, relating to meetings of the Legislature.\",Legislative Affairs\r\nAn act relating to gun safety.,Guns\r\n\"An act to amend Section 110480 of the Health and Safety Code, relating to food safety.\",Agriculture and Food\r\n\"An act to amend Section 14304 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to amend Section 44275.4 of, and to add Article 14 (commencing with Section 44401) to Chapter 2 of Part 25 of Division 3 of Title 2 of, the Education Code, relating to teachers.\",Education\r\n\"An act to amend and repeal Section 653o of the Penal Code, relating to exotic animals.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 9002 of the Elections Code, relating to elections.\",Other\r\n\"An act to amend, repeal, and add Sections 14838.5 and 14839 of, and to add and repeal Chapter 15 (commencing with Section 8899.50) of Division 1 of Title 2 of, the Government Code, and to amend Sections 19152, 19403, and 19404 of, and to add Section 19404.1 to, the Welfare and Institutions Code, relating to state contracts.\",State Agencies\r\n\"An act to add Chapter 1.6 (commencing with Section 1212) to Title 8 of Part 2 of the Penal Code, relating to parolees.\",Crime\r\n\"An act to add Article 10.5.1 (commencing with Section 25215.6) to Chapter 6.5 of Division 20 of the Health and Safety Code, relating to lead.\",Other\r\nAn act relating to energy.,Energy\r\n\"An act to add Section 14673.11 to the Government Code, relating to state property, and making an appropriation therefor.\",State Agencies\r\n\"An act to amend Section 460 of the Business and Professions Code, relating to professions and vocations.\",Health\r\n\"An act to add Section 66452.22 to the Government Code, relating to land use, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to add Section 19605.10 to the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to amend Section 125 of the Family Code, relating to family law.\",Legal Issues\r\n\"An act to amend Section 1578 of the Civil Code, relating to contracts.\",Labor and Employment\r\n\"An act to add Chapter 12.5 (commencing with Section 67050) to Part 40 of Division 5 of Title 3 of, and to repeal Chapter 4.5 (commencing with Section 99180) of Part 65 of Division 14 of Title 3 of, the Education Code, relating to postsecondary education.\",Education\r\n\"An act to amend Section 13320 of, and to add Section 13335.5 to, the Government Code, relating to the state budget.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 15504 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 1569.683 to the Health and Safety Code, relating to residential care facilities for the elderly.\",Housing and Property\r\n\"An act to amend Section 185033 of the Public Utilities Code, relating to high-speed rail.\",Transportation\r\nAn act relating to education finance.,Education\r\nAn act relating to education finance.,Education\r\n\"An act to amend Section 87100 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 728 and 4990 of, to add Chapter 16 (commencing with Section 4999.10) to Division 2 of, and to repeal Sections 4999.32, 4999.56, 4999.58, and 4999.101 of, the Business and Professions Code, relating to professional clinical counselors.\",Legal Issues\r\n\"An act to amend Sections 1151.6, 1156, 1156.2, 1156.3, 1156.4, 1157, 1160.3, and 1160.6 of, and to add Section 1156.35 to, the Labor Code, relating to employment.\",Campaign Finance and Election Issues\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 51347 of the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to amend Section 23002 of the Revenue and Taxation Code, relating to taxation.\",Commerce\r\n\"An act to amend Section 18602 of the Elections Code, relating to elections.\",Other\r\n\"An act to amend Sections 1366.35 and 1399.801 of, and to repeal Section 1399.818 of, the Health and Safety Code, and to amend Sections 10785 and 10900 of, and to repeal Section 10902.6 of, the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to add and repeal Chapter 12 (commencing with Section 108940) of Part 3 of Division 104 of the Health and Safety Code, relating to product safety.\",Business and Consumers\r\n\"An act to add Section 53593.5 to the Government Code, relating to local agencies.\",Municipal and County Issues\r\n\"An act relating to state finance, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend, repeal, and add Sections 60603, 60604, 60605.6, 60640, 60642.5, 60643, and 60643.1 of the Education Code, relating to pupil assessment.\",Education\r\n\"An act to amend Section 798.71 of the Civil Code, relating to mobilehomes.\",Housing and Property\r\n\"An act to amend Section 4304 of, and to add Section 4750.2 to, the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 65583 of the Government Code, relating to housing.\",Housing and Property\r\n\"An act to amend Section 625 of the Public Utilities Code, relating to public utilities.\",Housing and Property\r\n\"An act to amend Sections 408, 480.1, 480.2, 482, and 483 of, and to add Section 11935 to, the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Sections 179 and 179.5 of the Military and Veterans Code, relating to military and veterans.\",Military\r\n\"Welfare and Institutions Code, relating to professions and vocations and making an appropriation therefor.\",Labor and Employment\r\n\"An act to amend Sections 800, 803.1, 805, 805.1, 805.5, 821.5, and 2027 of, to add Sections 805.01 and 821.4 to, and to repeal Section 821.6 of, the Business and Professions Code, relating to healing arts.\",Health\r\n\"Code, to amend Sections 28, 5201, and 24603 of the Vehicle Code, and to amend Section 3 of Chapter 294 of the Statutes of 2004, relating to consumer affairs.\",Business and Consumers\r\n\"An act to amend Sections 72, 155.20, 441.5, and 2823 of, and to add Section 205.6 to, the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Sections 2512, 2781, 2782, 3731, 3791.4, and 3793.1 of, and to amend and renumber Section 4839.2 of, the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to amend Sections 15609 and 15641 of the Government Code, and to amend Sections 69, 69.3, 214.6, 276, 480.3, and 480.4 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 8592.1, 8592.3, 8592.4, 8592.5, and 8592.7 of, to add Sections 8592.01 and 8592.8 to, and to repeal and add Sections 8592.2 and 8592.6 to, the Government Code, relating to public safety communication.\",Senior Issues\r\n\"An act to add Section 19824.5 to the Business and Professions Code, relating to gambling.\",Gambling and Gaming\r\n\"An act to add Section 65089.20 to the Government Code, and to add Section 9250.4 to the Vehicle Code, relating to traffic congestion.\",Transportation\r\n\"An act to amend Section 8880.321 of the Government Code, relating to the California State Lottery, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act to amend Sections 44501, 44502, 44506, 44507, 44508, 44510, 44520, 44525, 44525.6, 44525.7, 44526, 44530, 44532, 44534, 44536, 44537, 44542, 44543, 44545, 44550, 44552.5, 44553, 44554, 44555, 44559.1, and 44559.4 of, and to repeal Sections 44525.5, 44533, 44535, 44546, and 44547 of, the Health and Safety Code, to amend Sections 6206.5 and 41780 of the Public Resources Code, to amend Section 6010.10 of the Revenue and Taxation Code, and to amend Section 13476 of the Water Code, relating to resources, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Sections 51177 and 51182 of the Government Code, to amend Sections 2772.7, 4291, 5096.518, 5097.98, and 30716 of the Public Resources Code, to amend Sections 7 and 12 of Chapter 543 of the Statutes of 2004, and to amend Sections 1 and 15 of Chapter 660 of the Statutes of 2007, relating to natural resources.\",Environmental\r\n\"An act to add Section 1201.3 to the Penal Code, relating to court orders.\",Judiciary\r\n\"An act to add Chapter 8.2 (commencing with Section 11820) to Part 1 of Division 3 of Title 2 of the Government Code, relating to government reorganization, and making an appropriation therefor.\",Government Reform\r\n\"An act to amend Section 104150 of the Health and Safety Code, relating to breast cancer screening, and making an appropriation therefor.\",Health\r\n\"An act to amend Sections 1366.21, 1366.22, 1366.25, and 1366.27 of, and to add Chapter 1.1 (commencing with Section 24100) to Division 20 of, the Health and Safety Code, and to amend Sections 10128.51, 10128.52, 10128.55, and 10128.57 of the Insurance Code, relating to health care coverage, and declaring the urgency thereof, to take effect immediately.\",Insurance\r\n\"An act to add Section 8594.5 to the Government Code, relating to emergency alerts.\",Public Services\r\n\"An act to amend Section 39 of Chapter 2 of the Fourth Extraordinary Session of the Statutes of 2009, relating to education finance, and making an appropriation therefor.\",Education\r\n\"An act to amend Section 152.3 of the Penal Code, relating to reporting crimes.\",Crime\r\n\"An act to validate the organization, boundaries, acts, proceedings, and bonds of public bodies, and to provide limitations of time in which actions may be commenced, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to validate the organization, boundaries, acts, proceedings, and bonds of public bodies, and to provide limitations of time in which actions may be commenced, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to validate the organization, boundaries, acts, proceedings, and bonds of public bodies, and to provide limitations of time in which actions may be commenced.\",Other\r\n\"An act to add Sections 9143.5, 9145, 10247.5, 13335.3, and 13335.5 to the Government Code, relating to state finance.\",\"Budget, Spending, and Taxes\"\r\n\"An act relating to education finance, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to add Sections 96.11 and 97.81 to the Revenue and Taxation Code, relating to local government finance.\",Municipal and County Issues\r\nAn act relating to the Budget Act of 2010.,\"Budget, Spending, and Taxes\"\r\n\"the Statutes of 2009, relating to human services, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Public Services\r\n\"4474.3, 4474.4, 4474.5, 4474.8, 4684.50, 4684.53, 4684.55, 4684.58, 4684.60, 4684.63, 4684.65, 4684.70, 4684.75, 5370.2, 10022, 14005.11, 14089, 14089.05, 14089.4, 14091.3, 14126.023, 14126.027, 14126.033, 14132, 14154, 14165.4, 14301.1, and 14301.11 of, to amend the heading of Article 3.5 (commencing with Section 4684.50) of Chapter 6 of Division 4.5 of, to add Sections 4101.5, 4646.55, 4701.1, 4791, 5813.6, 14105.08, 14105.28, 14105.281, 14105.456, 14126.022, 14132.925, 14167.351, and 14183.6 to, to repeal Article 3.8 (commencing with Section 14126) of Chapter 7 of Part 3 of Division 9 of, to repeal and amend Section 14005.25 of, and to repeal and add Section 4684.74 of, the Welfare and Institutions Code, and to amend Section 10 of Chapter 13 of the Third Extraordinary Session of the Statutes of 2009, relating to health, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Sections 8879.52, 8879.61, 8879.65, and 14556.7 of the Government Code, to amend Sections 185024 and 185035 of, and to add Section 185032.1 to, the Public Utilities Code, to amend Sections 167 and 2103 of, and to add Article 4.6 (commencing with Section 172) to Chapter 1 of Division 1 of, the Streets and Highways Code, and to amend Sections 2413 and 12811 of the Vehicle Code, relating to transportation, and declaring the urgency thereof, to take effect immediately.\",Transportation\r\n\"the Revenue and Taxation Code, to amend Sections 1088, 1112.5, 1113.1, 1275, 13021, and 13050 of, and to add Article 9 (commencing with Section 1900) to Chapter 7 of Part 1 of Division 1 of, the Unemployment Insurance Code, to amend Section 1673.2 of the Vehicle Code, and to amend and supplement the Budget Act of 2009 (Chapter 1 of the 2009̢\"\"10 Third Extraordinary Session) by amending Item 0820-001-3086 of Section 2.00 of that act, relating to state government, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend, repeal, and add Section 6322.1 of the Business and Professions Code, to add and repeal Section 367.6 of the Code of Civil Procedure, to amend Sections 12419.10, 25257, 25258, 25259, 70372, 76000, and 77206 of, to amend and repeal Section 70602 of, to amend, repeal, and add Sections 70603 and 70617 of, to add Sections 25259.7, 25259.8, 25259.9, 25259.95, 68106, and 72010 to, and to add and repeal Sections 68526, 70371.9, 70602.5, and 76000.3 of, and to add, repeal, and add Section 72011 to, the Government Code, to amend Sections 1214 and 1463.02 of, and to amend, repeal, and add Sections 1463.007 and 1465.8 of, the Penal Code, and to amend Sections 40510.5 and 42007 of, and to add Section 42008.7 to, the Vehicle Code, relating to courts, and declaring the urgency thereof, to take effect immediately.\",Judiciary\r\n\"An act relating to elections, and declaring the urgency thereof, to take effect immediately.\",Campaign Finance and Election Issues\r\n\"An act to add Section 89500.5 to, and to add Article 2 (commencing with Section 92010) to Chapter 1 of Part 57 of Division 9 of Title 3 of, the Education Code, relating to public postsecondary education.\",Education\r\nAn act relating to the Budget Act of 2010.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 22954 of the Education Code, and to add and repeal Sections 16327 and 16327.5 of the Government Code, relating to state finance, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2010.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 44559.11 to the Health and Safety Code, relating to economic development, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act making appropriations for the support of the government of the State of California and for several public purposes in accordance with the provisions of Section 12 of Article IV of the Constitution of the State of California, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 25102 of the Corporations Code, relating to securities offerings.\",Commerce\r\n\"An act to amend Sections 17276.9 and 24416.9 of, and to add Sections 17207.7, 19057.5, 19306.5, and 24347.7 to, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend, repeal, and add Sections 27297.6 and 27387.1 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to add Article 3 (commencing with Section 115810) to Chapter 4 of Part 10 of Division 104 of the Health and Safety Code, relating to public safety.\",Recreation\r\n\"An act to add Chapter 9 (commencing with Section 119405) to Part 15 of Division 104 of the Health and Safety Code, relating to electronic cigarettes, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Section 1749.5 of the Civil Code, relating to gift certificates.\",Business and Consumers\r\n\"An act to add Section 12301.26 to the Welfare and Institutions Code, relating to social services.\",Senior Issues\r\n\"An act to add Section 5653.2 to the Fish and Game Code, relating to fish and wildlife, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\n\"An act to amend Section 1389.5 of, and to add Sections 1366.5, 1367.001, and 1367.003 to, the Health and Safety Code, and to amend Section 10119.1 of, and to add Sections 10112.1, 10112.3, and 10112.58 to, the Insurance Code, relating to health care coverage.\",Health\r\n\"Resources Code, to add Sections 21670.6 and 29236 to the Public Utilities Code, to amend Section 99.02 of the Revenue and Taxation Code, to amend Sections 35424, 50655, and 50656 of the Water Code, and to amend Section 3.2 of Chapter 283 of the Statutes of 1973, relating to local government.\",Municipal and County Issues\r\n\"An act to amend Section 56011 of the Government Code, relating to local government.\",Municipal and County Issues\r\n\"An act to amend Section 66452 of the Government Code, relating to land use.\",Housing and Property\r\n\"An act to amend Sections 8483.7 and 8483.75 of the Education Code, relating to after school programs.\",Education\r\n\"An act to amend Section 19596.3 of the Business and Professions Code, relating to horse racing, and declaring the urgency thereof, to take effect immediately.\",Recreation\r\n\"An act to add Section 8543.9 to the Government Code, relating to the State Auditor.\",State Agencies\r\n\"An act to amend Section 8879.501 of the Government Code, relating to transportation.\",Transportation\r\n\"An act to amend Section 14831 of the Health and Safety Code, relating to fire protection.\",Public Services\r\n\"An act to add Section 200.5 to the Labor Code, relating to employment.\",Legal Issues\r\n\"An act to amend Section 3242 of the Fish and Game Code, relating to hunting.\",Animal Rights and Wildlife Issues\r\n\"An act to amend Section 3350 of the Public Resources Code, relating to oil and gas.\",Environmental\r\n\"An act to amend Sections 300, 400, 402, 420, 421, 422, 423, 425, and 426 of the Family Code, relating to marriage.\",Family and Children Issues\r\n\"An act to add Article 6 (commencing with Section 65050) to Chapter 1.5 of Division 1 of Title 7 of the Government Code, relating to the Office of Federal Funding Information and Assistance.\",State Agencies\r\n\"An act to amend Sections 226.7 and 512 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Sections 1786.16 and 1786.20 of the Civil Code, relating to personal information.\",Business and Consumers\r\n\"An act to amend Section 18724 of the Revenue and Taxation Code, relating to taxpayer contributions.\",Senior Issues\r\n\"An act relating to state claims, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act relating to the payment of claims against the state, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Legal Issues\r\nAn act relating to public postsecondary education.,Education\r\n\"An act to amend Section 17059 of, and to add and repeal Section 17059.1 of, the Revenue and Taxation Code, relating to taxation, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to amend Section 82013 of the Government Code, relating to the Political Reform Act of 1974.\",Campaign Finance and Election Issues\r\n\"An act to amend Section 9001 of the Elections Code, relating to elections.\",Other\r\n\"An act to amend Section 39000 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to add Section 66024.5 to the Education Code, relating to public postsecondary education.\",Education\r\n\"An act to amend Sections 13350 and 13521 of, and to add Chapter 7.3 (commencing with Section 13560) to Division 7 of, the Water Code, relating to water recycling.\",Environmental\r\n\"17138.6, and 17216 to, and to add and repeal Sections 17053.58, 17053.77, 17204, 23658, and 23677 of, the Revenue and Taxation Code, and to amend Sections 14043.26 and 14133 of, to add Sections 14026.7, 14029.7, 14079.7, 14132.104, 14132.105, and 14164.5 to, to add Article 2.94 (commencing with Section 14091.50) to Chapter 7 of Part 3 of Division 9 of, and to add Division 23 (commencing with Section 23000) to, the Welfare and Institutions Code, relating to health care, and making an appropriation therefor.\",Health\r\n\"An act to add Section 2887 to the Public Utilities Code, relating to telecommunications.\",Technology and Communication\r\n\"An act to amend Section 22100 of the Financial Code, relating to financial institutions.\",Commerce\r\n\"An act to amend Section 49062 of the Education Code, relating to pupil records.\",Education\r\n\"An act to amend Section 89500 of the Education Code, relating to public postsecondary education.\",Labor and Employment\r\n\"An act to amend Section 65583 of the Government Code, relating to land use.\",Housing and Property\r\n\"An act to amend Section 21655.5 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to add Article 10.10 (commencing with Section 25219.5) to Chapter 6.5 of Division 20 of the Health and Safety Code, relating to consumer product safety.\",Business and Consumers\r\n\"An act to amend Sections 33445 and 33679 of, and to add Sections 33445.1 and 33505 to, the Health and Safety Code, relating to redevelopment.\",Housing and Property\r\n\"An act to add Section 52052.7 to the Education Code, relating to pupil assessments.\",Education\r\n\"An act to add Section 580e to the Code of Civil Procedure, relating to mortgages.\",Housing and Property\r\n\"An act to amend Section 4800 of the Business and Professions Code, relating to veterinary medicine.\",Science and Medical Research\r\n\"An act to amend Section 1748.30 of, and to add Section 1748.33 to, the Civil Code, relating to debit cards.\",Business and Consumers\r\n\"An act to amend Section 10004 of the Water Code, relating to water resources.\",Environmental\r\n\"An act to amend Section 6093 of the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 10 of the Family Code, relating to family law.\",Legal Issues\r\n\"An act to amend Sections 1808.4 and 2431 of the Vehicle Code, relating to the Department of Motor Vehicles.\",Transportation\r\n\"An act to amend Sections 17053.74 and 23622.7 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 10026, 10085, 10133.1, and 10177 of, to add Section 10147.6 to, and to add and repeal Sections 6106.3 and 10085.6 of, the Business and Professions Code, to amend Section 2945.1 of, to add Section 2944.6 to, and to add and repeal Section 2944.7 of, the Civil Code, and to amend Section 22161 of the Financial Code, relating to mortgage loans, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to amend Section 288 of the Penal Code, relating to crime.\",Crime\r\n\"An act to amend Section 5002 of the Public Resources Code, relating to parks and recreation.\",Public Services\r\n\"An act to amend Section 11349.3 of, and to add Article 5.5 (commencing with Section 11348.5) to Chapter 3.5 of Part 1 of Division 3 of Title 2 of, the Government Code, relating to regulations.\",Other\r\n\"An act to amend Section 19542 of the Business and Professions Code, relating to horse racing.\",Recreation\r\n\"An act to amend Section 1602 of the Fish and Game Code, relating to fish and wildlife.\",State Agencies\r\nAn act relating to state property.,State Agencies\r\n\"An act to amend Sections 21 and 21100 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Sections 18400.1, 18400.3, 18424, and 18502 of the Health and Safety Code, relating to mobilehomes.\",Housing and Property\r\n\"An act to amend Section 2397 of the Business and Professions Code, relating to healing arts.\",Health\r\n\"An act to amend Sections 22, 102.3, 473, 473.15, 473.16, 473.2, 473.3, 473.4, 473.5, 473.6, 474, 474.1, 474.2, 474.3, 474.4, 1620.1, 1632.5, 1634.2, 1638.1, 1638.7, 4001.5, 4200.1, 4200.3, 4934.2, 5000, 5811, 6704.1, 7000.5, 7303.2, 9882, 18824, and 18882 of, to amend the heading of Division 1.2 (commencing with Section 473) of, and to add Chapter 3 (commencing with Section 474.5) to Division 1.2 of, the Business and Professions Code, and to amend Sections 9148.52 and 9148.8 of the Government Code, relating to legislative procedure.\",Business and Consumers\r\n\"An act to amend Sections 1294, 1296, 14501, 44662, 44929.21, 44936, 44944, 44945, 44955, and 44956 of, to amend and repeal Section 44660 of, to add Sections 44660.5, 44955.1, and 44955.2 to, and to repeal Section 44949 of, the Education Code, relating to school districts, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to add Section 14025 to the Unemployment Insurance Code, relating to workforce development.\",Labor and Employment\r\n\"An act to amend Section 69439 of the Education Code, relating to student financial aid.\",Education\r\n\"An act to add Chapter 6.8 (commencing with Section 50676) to Part 2 of Division 31 of the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to add Section 65923, 65923.1, 65923.2, 65923.3, and 65923.4 to, and to add Article 4 (commencing with Section 65946) and Article 4.5 (commencing with Section 65948) to Chapter 4.5 of Division 1 of Title 7 of, the Government Code, relating to development, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to amend Sections 17041 and 17062 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add and repeal Section 1367.655 of the Health and Safety Code, and to add and repeal Section 10123.205 of the Insurance Code, relating to health care coverage.\",Health\r\n\"An act to amend Section 2625 of, and to add Section 2626 to, the Penal Code, relating to prisoners.\",Family and Children Issues\r\n\"An act to add Section 14631 to the Government Code, relating to the State Capitol.\",State Agencies\r\n\"An act to add Section 185039 to the Public Utilities Code, relating to workforce training, and making an appropriation therefor.\",Labor and Employment\r\n\"An act to add Section 185036.5 to the Public Utilities Code, relating to transportation.\",Transportation\r\n\"An act to add Article 5.5 (commencing with Section 14183) to Chapter 7 of Part 3 of Division 9 of the Welfare and Institutions Code, relating to Medi-Cal.\",Health\r\n\"An act to add Article 7 (commencing with Section 10390) to Chapter 2 of Part 2 of Division 2 of the Public Contract Code, relating to public contracts.\",Labor and Employment\r\n\"An act to amend Section 17144.5 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to add Article 5 (commencing with Section 125286.1) to Chapter 2 of Part 5 of Division 106 of the Health and Safety Code, relating to genetic disease services.\",Health\r\n\"An act to add Section 3055.4 to the Penal Code, relating to parole.\",Crime\r\n\"An act to amend Section 1635 of, to add Section 1643.3 to, and to repeal and add Section 1639.01 of, the Health and Safety Code, relating to tissue banks.\",Health\r\n\"An act to amend Section 34100 of the Health and Safety Code, relating to community development.\",Other\r\n\"An act to amend Section 11100 of the Vehicle Code, relating to vehicles.\",Education\r\n\"An act to add Part 14 (commencing with Section 15987) to Division 3 of Title 2 of the Government Code, relating to business licensing.\",Business and Consumers\r\n\"An act to amend Section 5007 of the Vehicle Code, relating to vehicles.\",Military\r\n\"An act to amend Section 1861.02 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to add Sections 17053.13 and 23623.2 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Education\r\n\"An act to amend Section 328.2 of the Public Utilities Code, relating to energy.\",Energy\r\n\"An act to amend Section 374 of the Public Utilities Code, relating to electrical restructuring.\",Energy\r\n\"An act to add Section 11349.95 to the Government Code, relating to regulations, and declaring the urgency thereof, to take effect immediately.\",Other\r\n\"An act to amend Section 6547 of, to add Sections 6503.6, 6548.5, 6592.1, and 53895.7 to, and to add Chapter 10.7 (commencing with Section 5870) to Division 6 of Title 1 of, the Government Code, relating to joint exercise of powers.\",Other\r\n\"An act to amend Section 512 of the Labor Code, relating to employment, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\n\"An act to amend Section 3001 of the Penal Code, relating to parole.\",Crime\r\n\"An act to amend Section 13001 of the Elections Code, relating to elections.\",Campaign Finance and Election Issues\r\n\"An act to add Section 66452.10.5 to the Government Code, relating to housing.\",Housing and Property\r\n\"An act to amend Section 900 of the Insurance Code, relating to insurance.\",Insurance\r\n\"An act to amend Section 1262.5 of, and to add Sections 1262.9 and 1264.5 to, the Health and Safety Code, and to add Division 13 (commencing with Section 22100) to, and to repeal Section 22104 of, the Welfare and Institutions Code, relating to long-term care services.\",Health\r\n\"An act to amend Section 2570.19 of the Business and Professions Code, relating to healing arts.\",Health\r\n\"Relative to the adoption of the Joint Rules of the Senate and Assembly for the 2009̢\"\"10 Regular Session.\",Legislative Affairs\r\nRelative to Railroad Safety Month.,Transportation\r\nRelative to the Northern California Golf Association Foundation.,Recreation\r\nRelative to California Golf Week.,Recreation\r\nRelative to Cinco de Mayo Week.,Other\r\nRelative to Foster Care Month.,Family and Children Issues\r\nRelative to the National Purple Heart Trail.,Military\r\nRelative to federal immigration policy reform.,Immigration\r\nRelative to California Golf Week.,Recreation\r\nRelative to the integration of college sports.,Education\r\nRelative to Pain Awareness Month and Women In Pain Awareness Day.,Health\r\nRelative to California Chronic Kidney Disease Education Week.,Resolutions\r\nRelative to Arizona law.,Other\r\nRelative to California Youth Crisis Line Awareness Month.,Resolutions\r\nRelative to Bone Marrow Donation Awareness Month.,Resolutions\r\nRelative to the Douglas B. Dunaway Memorial Bridge.,Transportation\r\nRelative to the defense of Israel.,Military\r\nRelative to the Correctional Officer Jose Rivera Memorial Highway.,Transportation\r\nRelative to the Steve Faris Memorial Highway.,Transportation\r\nRelative to the CHP Officer Earl Scott Memorial Highway.,Transportation\r\nRelative to the creation of the Joint Committee for the Protection of Lake Tahoe.,Environmental\r\nRelative to Prostate Cancer Awareness Month.,Health\r\nRelative to Earth Hour.,Environmental\r\nRelative to DMV/Donate Life California Registry.,Transportation\r\nRelative to Irish American Heritage Month.,Other\r\nRelative to Respiratory Syncytial Virus Awareness Month.,Health\r\nRelative to Jewish American Heritage Month.,Resolutions\r\nRelative to the selection of the Legislative Counsel of California.,Legislative Affairs\r\nRelative to the Children of Incarcerated Parents Bill of Rights.,Family and Children Issues\r\nRelative to the Joint Legislative Committee on Emergency Management.,Legislative Affairs\r\nRelative to Colorectal Cancer Awareness Month.,Health\r\nRelative to Chabad Day.,Resolutions\r\nRelative to Valley Fever Awareness Month.,Health\r\nRelative to Automotive Career Month.,Labor and Employment\r\nRelative to National Library Week.,Education\r\nRelative to senior volunteers.,Senior Issues\r\nRelative to Black April Memorial Week.,Resolutions\r\nRelative to a constitutional convention.,Government Reform\r\nRelative to the Betty Meltzer Memorial Highway.,Transportation\r\nRelative to Scleroderma Awareness Month.,Health\r\nRelative to emergency medical services.,Public Services\r\nRelative to Foster Care Month.,Family and Children Issues\r\nRelative to adolescent health.,Health\r\nRelative to the State Air Resources Board.,Environmental\r\nRelative to Amyotrophic Lateral Sclerosis Awareness Month.,Health\r\nRelative to the Senator Daniel E. Boatwright Highway.,Transportation\r\nRelative to juvenile justice.,Family and Children Issues\r\nRelative to California Microenterprise Development Month.,Resolutions\r\nRelative to Classified School Employee Week.,Labor and Employment\r\nRelative to California Water Awareness Month.,Environmental\r\nRelative to child care.,Family and Children Issues\r\nRelative to United States Travel Rally Day.,Transportation\r\nRelative to Aquatics Safety Month.,Health\r\nRelative to education funding.,Education\r\nRelative to Filipino American History Month.,Resolutions\r\nRelative to spending federal economic recovery plan funds.,Campaign Finance and Election Issues\r\nRelative to the Marine Corporal Christopher D. Leon Memorial Highway.,Transportation\r\nRelative to earthquakes.,Resolutions\r\n\"Relative to New United Motor Manufacturing, Inc.\",Transportation\r\nRelative to Health Care Decisions Week.,Health\r\nRelative to coastal development and Marina del Rey.,Environmental\r\nRelative to the CHP Officer David M. Romero Memorial Highway.,Transportation\r\nRelative to hate speech.,Civil Liberties and Civil Rights\r\nRelative to the American Recovery and Reinvestment Act of 2009.,Labor and Employment\r\nRelative to the Prefecture of Athens.,Other\r\nRelative to public safety.,Environmental\r\nRelative to proclaiming National Mentoring Month.,Education\r\nRelative to the William L. Cavala Legislative Office Building.,Legislative Affairs\r\nRelative to secondhand goods.,Business and Consumers\r\nRelative to American Heart Month and Wear Red Day.,Health\r\nRelative to Teen Driving Safety Week.,Transportation\r\nRelative to Colorectal Cancer Awareness Month.,Health\r\nRelative to the American flag.,Resolutions\r\nRelative to Ronald Reagan Day.,Resolutions\r\nRelative to the CHP Officer Richard D. Duvall Memorial Highway.,Transportation\r\nRelative to kidney cancer.,Resolutions\r\nRelative to the 22nd Annual State Scientist Day.,Resolutions\r\nRelative to Black History Month.,Civil Liberties and Civil Rights\r\nRelative to Irish American Heritage Month.,Other\r\nRelative to the California Task Force on Youth and Workplace Wellness.,Labor and Employment\r\nRelative to senior volunteers.,Senior Issues\r\nRelative to wildfires.,Environmental\r\nRelative to human trafficking.,Crime\r\nRelative to Childhood Obesity Prevention and Fitness Week.,Health\r\nRelative to National Library Week.,Education\r\nRelative to Portuguese Heritage Month.,Resolutions\r\nRelative to information and communication technologies digital literacy.,Education\r\nRelative to Lyme Disease Awareness Month.,Health\r\nRelative to California Plan Your Giving Day.,Resolutions\r\nRelative to Neurofibromatosis Awareness Month.,Resolutions\r\nRelative to the Patricia Ann Weston Memorial Highway.,Transportation\r\nRelative to the Joseph A. Zanger Memorial Flyover.,Resolutions\r\nRelative to Prostate Cancer Awareness Month.,Health\r\nRelative to American Stroke Month.,Resolutions\r\nRelative to the Officer Larry Lasater Memorial Overcrossing.,Transportation\r\nRelative to the James F. McManus Memorial Bridge.,Transportation\r\nRelative to affordable in-home Internet service.,Housing and Property\r\nRelative to Autism Awareness Month.,Health\r\nRelative to taxation.,\"Budget, Spending, and Taxes\"\r\nRelative to Summer Learning and Wellness Month.,Education\r\nRelative to World War II.,Resolutions\r\nRelative to Asian Pacific American Mental Health Day.,Resolutions\r\nRelative to spinal muscular atrophy.,Health\r\nRelative to Lupus Awareness Month.,Resolutions\r\nRelative to military health care.,Military\r\nRelative to Guantanamo Bay.,Civil Liberties and Civil Rights\r\nRelative to new dialysis clinic licensure and certification.,Health\r\nRelative to medical marijuana.,Health\r\nRelative to public health laboratories.,Health\r\nRelative to veterans̢ educational benefits.,Military\r\nRelative to greenhouse gases.,Environmental\r\nRelative to marine aquaculture.,Environmental\r\nRelative to immigration.,Immigration\r\nRelative to college textbook affordability.,Education\r\nRelative to the Port Chicago disaster.,Other\r\nRelative to horses.,Animal Rights and Wildlife Issues\r\nRelative to research for mitochondrial disease.,Health\r\nRelative to violence against women.,\"Federal, State, and Local Relations\"\r\nRelative to the Filipino Veterans Equity Compensation Fund.,Military\r\nRelative to the Armenian Genocide.,Resolutions\r\nRelative to reunification of Ireland.,Other\r\nRelative to the 2020 Census.,Legislative Affairs\r\nRelative to the aerospace industry.,Transportation\r\nRelative to Taiwan.,Health\r\nRelative to deferred compensation plans.,Legal Issues\r\nRelative to persons with disabilities.,\"Budget, Spending, and Taxes\"\r\nRelative to career technical education.,Education\r\nRelative to national freight policy.,Commerce\r\nRelative to California wines.,Agriculture and Food\r\nRelative to the federal Gulf of the Farallones and Cordell Bank National Marine Sanctuaries Boundary Modification and Protection Act.,Environmental\r\nRelative to pedestrian safety.,Transportation\r\nRelative to pancreatic cancer.,Health\r\nRelative to electronic cigarettes.,Health\r\n\"An act relating to taxation, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\nAn act relating to taxation.,Commerce\r\n\"Institutions Code, relating to the Department of Corrections and Rehabilitation.\",State Agencies\r\n\"An act to add Sections 6051.7 and 6201.7 to, to add Chapter 5.8 (commencing with Section 32231) to Part 14 of, and to add Part 21 (commencing with Section 42001) to, Division 2 of, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 8543.9 to the Government Code, relating to the State Auditor.\",State Agencies\r\n\"An act to repeal and add Sections 45103.1, 45103.5, 88003.1, and 88004.5 of the Education Code, and to add Section 3562.3 to the Government Code, relating to public education.\",Labor and Employment\r\n\"An act to amend Sections 4639.5, 4640.6, 11453, 12201, and 12201.05 of the Welfare and Institutions Code, relating to human services.\",Public Services\r\n\"An act to add Section 7203.3 to the Revenue and Taxation Code, relating to local government finance.\",Municipal and County Issues\r\n\"An act to add and repeal Section 18005 of the Government Code, relating to state employment, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\n\"An act to amend Section 10177 of the Business and Professions Code, to add Section 2923.1 to the Civil Code, and to amend Section 50505 of, to add Sections 1242, 14961, and 22346 to, and to add Division 1.9 (commencing with Section 4995) to, the Financial Code, relating to lending.\",Commerce\r\n\"An act to amend Section 511 of the Labor Code, relating to employment.\",Labor and Employment\r\nAn act relating to the Budget Act of 2008.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 11011 of the Government Code, to add Section 43018.2 to the Health and Safety Code, to add and repeal Sections 21080.41 and 21080.42 of the Public Resources Code, and to add Section 130240.5 to the Public Utilities Code, relating to state government.\",State Agencies\r\n\"An act to add Section 8543.9 to the Government Code, relating to the State Auditor.\",State Agencies\r\n\"An act to add Section 1936.015 to the Civil Code, relating to vehicle license fees.\",Transportation\r\nAn act relating to the Budget Act of 2008.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2008.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2008.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 511 of the Labor Code, relating to employment.\",Labor and Employment\r\nAn act relating to the Budget Act of 2008.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 11011 of the Government Code, to add Section 43018.2 to the Health and Safety Code, to add and repeal Sections 21080.41 and 21080.42 of the Public Resources Code, and to add Section 130240.5 to the Public Utilities Code, relating to state government.\",State Agencies\r\n\"12.50, 12.55, 13.10, 13.25, 13.50, 15.30, 17.50, 17.80, 18.00, 18.10, 18.20, 18.30, 18.40, 18.50, 18.60, 24.60, and 25.25 to, and by repealing Section 24.65 of, that act, relating to the State Budget, and making an appropriation therefor.\",\"Budget, Spending, and Taxes\"\r\n\"An act calling an election, and declaring the urgency thereof, to take effect immediately.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 8880.5.5 and 8880.56 of, to add Article 4.5 (commencing with Section 8880.46.5) to Chapter 12.5 of Division 1 of Title 2 of, and to repeal Sections 8880.43 and 8880.67 of, the Government Code, relating to the California State Lottery, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act relating to elections, and declaring the urgency thereof, to take effect immediately.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 31 and 7145.5 of the Business and Professions Code, to amend Sections 6203, 18661, 18663, 19025, 19116, 19136, 19136.1, 19504, 19571, 19755, and 19777 of, and to add Sections 6225, 18407.5, 18662.5, 18664, 19265, 19266, 19560.5, and 19777.1 to, the Revenue and Taxation Code, and to amend Section 13020 of the Unemployment Insurance Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\nAn act to relating to taxation.,Business and Consumers\r\n\"An act to amend Item 5240-301-0660 of Section 2.00 of the Budget Act of 2003 (Chapter 157 of the Statutes of 2003), and to amend Items 5225-301-0660 and 5225-491 of Section 2.00 of the Budget Act of 2008 (Chapters 268 and 269 of the Statutes of 2008), relating to the state budget.\",\"Budget, Spending, and Taxes\"\r\nAn act relating to the Healthy Families Program.,Health\r\nAn act relating to Medi-Cal.,Health\r\n\"An act to amend Sections 17282 and 24436.1 of, and to repeal Sections 17281 and 24436 of, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Business and Consumers\r\n\"An act to amend Section 6203 of the Revenue and Taxation Code, relating to taxation.\",Commerce\r\n\"An act to amend Section 23040 of the Revenue and Taxation Code, relating to taxation.\",Commerce\r\n\"An act to amend Section 41964 of the Health and Safety Code, relating to air pollution.\",Environmental\r\nAn act relating to economic stimulus.,Education\r\n\"An act to amend Section 44955 of the Education Code, relating to school employees, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\nrelating to energy.,Energy\r\n\"An act to amend Sections 25450, 25450.1, and 25450.3 of, to add Section 25450.4 to, and to repeal and add Section 25450.2 of, the Public Resources Code, relating to energy.\",Energy\r\n\"An act relating to the Chino Valley Unified School District, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"1 (commencing with Section 41800) of Chapter 7 of Part 2 of Division 30 of, to add Section 40400 to, to repeal Sections 42416 and 48502 of, and to repeal Chapter 3 (commencing with Section 40400) of Part 1 of Division 30 of, the Public Resources Code, to amend Section 7718 of the Public Utilities Code, to amend Sections 45855, 45863, 45981, and 45982 of the Revenue and Taxation Code, and to amend Section 31560 of the Vehicle Code, relating to integrated waste management.\",Environmental\r\n\"An act to amend Section 13311.1 of the Government Code, to amend Section 2103.1 of the Streets and Highways Code, to add Section 12104 to the Welfare and Institutions Code, and to amend Section 39 of Chapter 12 of the Third Extraordinary Session of the Statutes of 2009, relating to state finances.\",\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 1240.3, 2558.46, 8279.7, 8357, 8447, 42238.146, 60422.1, 66021.2, 69432.7, and 76300 of, to amend and repeal Section 33128.3 of, to amend, repeal, and add Section 47634.1 of, to add Sections 8481, 41202.5, and 84043 to, to add and repeal Sections 17463.7, 46201.2, 60422.2, and 60851.5 of, to repeal Section 8278 of, and to repeal Article 22 (commencing with Section 8460) of Chapter 2 of Part 6 of Division 1 of Title 1 of, the Education Code, and to amend Item 6110-113-0890 of Section 2.00 of the Budget Act of 2009 (Chapter 1 of the Statutes of 2009, Third Extraordinary Session), relating to education finance, and making an appropriation therefor.\",Education\r\n\"14526.2, and 14550.6 to, and to repeal Sections 14522.3, 14526.1, and 14550.5 of, the Welfare and Institutions Code, relating to health.\",Health\r\n\"An act to amend Sections 95004, 95014, and 95020 of, and to add Section 95021 to, the Government Code, to amend Sections 4648, 4648.1, 4659, 4677, 4685, 4686, 4689, 4784, and 7502.5 of, to amend the heading of Chapter 4 (commencing with Section 4570) of Division 4.5 of, to amend and repeal Sections 4418.1 and 4570 of, and to add Sections 4435, 4571, 4648.35, 4648.5, 4648.6, 4686.2, 4686.5, 4688.1, 4688.2, 4688.3, 4689.05, and 4692 to, the Welfare and Institutions Code, relating to public social services.\",\"Budget, Spending, and Taxes\"\r\n\"amend Section 679.02 of the Penal Code, to amend Sections 7204.3 and 7273 of the Revenue and Taxation Code, and to add Sections 10214.6 and 14022 to the Unemployment Insurance Code, relating to state government.\",State Agencies\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 5845, 5846, 5847, and 14154 of, and to add Sections 14131.10 and 14166.225 to, the Welfare and Institutions Code, relating to health, and declaring the urgency thereof, to take effect immediately.\",Health\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 5 of Chapter 3 of, and to repeal Section 39 of Chapter 2 of, the Fourth Extraordinary Session of the Statutes of 2009, relating to education finance, and making an appropriation therefor.\",Education\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 4639.5, 4640.6, 11453, 12201, 12305.1, and 12306.1 of, to add Sections 11450.02 and 12200.019 to, and to add and repeal Section 12200.018 of, the Welfare and Institutions Code, relating to human services, and declaring the urgency thereof, to take effect immediately.\",Public Services\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 17221.5 of the Government Code, relating to state funds, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 1520.5 of the Code of Civil Procedure, relating to unclaimed property.\",Other\r\n\"An act to amend Section 14043.46 of the Welfare and Institutions Code, relating to adult day health care centers.\",Health\r\n\"An act to add Section 57006 to the Health and Safety Code, relating to environmental protection.\",Environmental\r\n\"An act to add and repeal Section 18005 of the Government Code, relating to state employment.\",Labor and Employment\r\n\"An act to add Section 65701 to the Government Code, relating to land use.\",Recreation\r\n\"An act to amend Section 7074.2 of the Government Code, and to amend Section 26003 of, and to add Section 26011.7 to, the Public Resources Code, relating to economic development.\",Commerce\r\n\"An act relating to housing, and making an appropriation therefor.\",Housing and Property\r\n\"(commencing with Section 41800) of Chapter 7 of Part 2 of Division 30 of, to repeal Sections 42416 and 48502 of, the Public Resources Code, to amend Section 7718 of the Public Utilities Code, to amend Sections 45855, 45863, 45981, and 45982 of the Revenue and Taxation Code, and to amend Section 31560 of the Vehicle Code, relating to solid waste.\",Environmental\r\n\"An act to amend Sections 8869.82, 91501, 91502, 91502.1, 91503, 91504, 91527, 91530, 91531, 91533, 91538, 91539, 91541, 91555, 91559, 91571, and 91573 of the Government Code, relating to bonds.\",Commerce\r\n\"An act calling an election, and declaring the urgency thereof, to take effect immediately.\",Campaign Finance and Election Issues\r\n\"An act to amend Sections 8880.5.5 and 8880.56 of, to add Article 4.5 (commencing with Section 8880.46.5) to Chapter 12.5 of Division 1 of Title 2 of, and to repeal Sections 8880.43 and 8880.67 of, the Government Code, relating to the California State Lottery, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"7350-011-0001, 7350-012-0001, 7980-101-0784, 8855-011-0001, 8940-001-3085, and 9350-104-6065 to, and by repealing Items 0558-001-0001, 0650-001-0214, 0650-011-0001, 0650-101-0214, 3480-101-0867, 3600-001-0404, 3860-101-0544, 4200-001-3019, 4200-101-3019, 4200-105-0001, 4260-101-0236, 4260-111-0233, 4265-111-0232, 4265-111-0233, 4265-111-6051, 4265-301-0001, 4280-101-0236, 4280-104-0236, 4280-104-0890, 4280-111-0232, 4300-101-3148, 6110-008-0046, 6110-111-0046, 6110-111-3116, and 6870-301-6028 of, Section 2.00 of that act, and by amending Sections 3.60, 3.90, 4.01, 4.12, 12.00, 12.32, 12.42, 25.50, and 35.50 of, by adding Sections 3.55, 4.85, 8.55, 12.45, 12.50, 12.55, 13.10, 13.25, 13.50, 15.30, 17.50, 17.80, 18.00, 18.10, 18.20, 18.30, 18.40, 18.50, 18.60, 24.60, and 25.25 to, and by repealing Section 24.65 of, that act, relating to the State Budget, and making an appropriation therefor.\",\"Budget, Spending, and Taxes\"\r\n\"An act calling an election, and declaring the urgency thereof, to take effect immediately.\",Campaign Finance and Election Issues\r\n\"An act to amend and supplement the Budget Act of 2009 by amending Item 0840-001-0001 of Section 2.00 of that act, relating to the State Budget, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Item 5240-301-0660 of Section 2.00 of the Budget Act of 2003 (Chapter 157 of the Statutes of 2003), and to amend Items 5225-301-0660 and 5225-491 of Section 2.00 of the Budget Act of 2008 (Chapters 268 and 269 of the Statutes of 2008), relating to the state budget.\",\"Budget, Spending, and Taxes\"\r\n\"An act to repeal and add Sections 45103.1, 45103.5, 88003.1, and 88004.5 of the Education Code, and to add Section 3562.3 to the Government Code, relating to public education.\",Labor and Employment\r\n\"An act to add Section 17203.5 to the Government Code, relating to state warrants.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend and repeal Section 130105 of, to repeal Sections 130110, 130115, 130120, 130125, 130130, 130135, 130140, 130140.1, 130145, 130150, 130151, and 130155 of, and to repeal and add Section 130100 of, the Health and Safety Code, relating to child development, and declaring the urgency thereof, to take effect immediately.\",Family and Children Issues\r\n\"An act to add Section 116760.45 to the Health and Safety Code, and to amend Sections 10631.5, 13476, and 13480 of the Water Code, relating to drinking water, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 17059 of the Revenue and Taxation Code, relating to taxation, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to amend Section 17059 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"1 (commencing with Section 41800) of Chapter 7 of Part 2 of Division 30 of, to add Section 40400 to, to repeal Sections 42416 and 48502 of, and to repeal Chapter 3 (commencing with Section 40400) of Part 1 of Division 30 of, the Public Resources Code, to amend Section 7718 of the Public Utilities Code, to amend Sections 45855, 45863, 45981, and 45982 of the Revenue and Taxation Code, and to amend Section 31560 of the Vehicle Code, relating to integrated waste management.\",Environmental\r\n\"of the Statutes of 2008, relating to education finance, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Education\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 5845, 5846, 5847, and 14154 of, and to add Sections 14131.10 and 14166.225 to, the Welfare and Institutions Code, relating to health, and declaring the urgency thereof, to take effect immediately.\",Health\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 23606 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Business and Consumers\r\n\"An act to amend Section 13823.95 of the Penal Code, relating to victims of sexual assault.\",Crime\r\n\"An act to amend Sections 14560, 14571.2, 14571.8, 14572, 14574, 14575, 14581, 14585, and 43021 of, to add Sections 14515.3, 14526.8, 14571.6.5, 14571.6.6, and 14571.6.7 to, and to amend, repeal, and add Section 14504 of, the Public Resources Code, relating to recycling, and making an appropriation therefor.\",Environmental\r\n\"An act to amend Section 4648.35 of the Welfare and Institutions Code, relating to developmental services, and declaring the urgency thereof, to take effect immediately.\",Business and Consumers\r\n\"8550-001-0942, and 8550-011-0942 of, Section 2.00 of that act, and by amending Sections 3.60, 3.90, 4.01, 4.12, 12.00, 12.32, 12.42, 17.00, 25.50, and 35.50 of, by adding Sections 3.55, 4.85, 8.55, 12.45, 12.50, 12.55, 13.10, 13.25, 15.30, 15.45, 17.50, 17.80, 18.00, 18.10, 18.20, 18.30, 18.40, 18.50, 18.55, 24.60, and 25.25 to, and by repealing Section 24.65 of, that act, relating to the State Budget, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 8879.65 and 16965 of the Government Code, to amend Sections 99312 and 99315 of, and to add and repeal Section 21683.3 of, the Public Utilities Code, to amend Sections 7102 and 7103 of the Revenue and Taxation Code, and to amend Sections 1678, 12814.5, 14900, 14900.1, 14901, 14902, 15250.6, 15250.7, 15255.1, and 15255.2 of the Vehicle Code, relating to transportation, and declaring the urgency thereof, to take effect immediately.\",Transportation\r\n\"Section 679.02 of the Penal Code, to add Section 42102.5 to the Public Resources Code, to amend Sections 7204.3 and 7273 of the Revenue and Taxation Code, and to add Sections 10214.6 and 14022 to the Unemployment Insurance Code, relating to state government, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\n\"An act to amend Sections 18663, 19025, 19136, and 19136.1 of the Revenue and Taxation Code, and to amend Section 13020 of the Unemployment Insurance Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 18661 of, and to add Sections 6225 and 18664 to, the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 12301.6, 12305.7, 12305.71, and 12305.82 of, and to add Sections 12301.15, 12301.22, 12301.24, 12301.25, 12305.73, 12305.85, and 12305.86 to, the Welfare and Institutions Code, relating to in-home supportive services.\",Health\r\n\"an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to add and repeal Sections 6245 and 6246 of the Public Resources Code, relating to oil and gas leases.\",Environmental\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Sections 14003, 41207.2, and 41207.3 to the Education Code, relating to education finance, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to add Section 6356.7 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Transportation\r\n\"An act to amend Sections 5080.31 and 5080.40 of, and to add Section 5080.30.5 to, the Public Resources Code, relating to state parks.\",State Agencies\r\n\"An act to add Section 5023.7 to the Penal Code, relating to corrections.\",Crime\r\n\"An act to add Section 19993.9 to the Government Code, relating to state-owned motor vehicles.\",Transportation\r\n\"An act to amend Section 73 of the Streets and Highways Code, relating to highways.\",State Agencies\r\nAn act relating to the Lieutenant Governor.,Executive Branch\r\n\"14550.6 to, and to repeal Section 14522.3, 14526.1, and 14550.5 of, the Welfare and Institutions Code, relating to health, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to add Section 14166.221 to, and to add Article 5.4 (commencing with Section 14180) to Chapter 7 of Part 3 of Division 9 of, the Welfare and Institutions Code, relating to Medi-Cal, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend Sections 11453 and 12201 of, to amend, repeal, and add Sections 11327.5 and 11454 of, and to add Section 11320.2 to, the Welfare and Institutions Code, relating to human services.\",Public Services\r\n\"An act to amend Sections 95004, 95014, and 95020 of, and to add Section 95021 to, the Government Code, to amend Sections 4648, 4648.1, 4659, 4677, 4685, 4686, 4689, 4784, and 7502.5 of, to amend the heading of Chapter 4 (commencing with Section 4570) of Division 4.5 of, to amend and repeal Sections 4418.1 and 4570 of, and to add Sections 4435, 4571, 4648.35, 4648.5, 4648.6, 4686.2, 4686.5, 4688.1, 4688.2, 4688.3, 4689.05, and 4692 to, the Welfare and Institutions Code, relating to public social services, and declaring the urgency thereof, to take effect immediately.\",Health\r\nRelative to the economy.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"and 4352 of, and to add Section 67 to, the Labor Code, to amend Section 1012.3 of, and to add Article 8.2 (commencing with Section 999.80) to Chapter 6 of Division 4 of, the Military and Veterans Code, to amend Section 679.02 of the Penal Code, to add Section 42102.5 to the Public Resources Code, to amend Sections 7204.3 and 7273 of the Revenue and Taxation Code, and to add Sections 10214.6 and 14022 to the Unemployment Insurance Code, relating to state government, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",State Agencies\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 2652.7 to the Penal Code, relating to prisoners.\",Health\r\n\"An act to add Section 7073.5 to the Government Code, relating to economic development.\",Commerce\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 52052.7 to the Education Code, relating to school accountability.\",Education\r\nAn act relating to public schools.,Education\r\n\"An act to amend Sections 47602, 47605, 47605.6, and 47607 of, and to add Section 47605.9 to, the Education Code, relating to charter schools.\",Education\r\n\"An act relating to the Chino Valley Unified School District, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to amend Section 44227 of the Education Code, relating to teachers.\",Education\r\n\"An act to add and repeal Section 44262.1 of the Education Code, relating to teacher credentialing.\",Education\r\n\"An act to amend Section 44932 of, and to add Section 44660.1 to, the Education Code, relating to teachers.\",Education\r\n\"An act to amend Sections 14502.1, 47602, 47605, 47605.6, 47607, 60601, 60603, 60604, 60605.6, 60606, 60640, 60643, 60643.1 of, to amend and repeal Section 60605 of, to add Sections 44665.5, 47630.6, and 60604.5 to, to add and repeal Sections 60605.7 and 60605.8 of, and to add and repeal Chapter 18 (commencing with Section 53100) of Part 28 of Division 4 of Title 2 of, the Education Code, relating to public schools.\",Education\r\nRelative to the Day of the Special Educator.,Education\r\n\"An act to amend Sections 52052.5, 60601, 60603, 60604, 60605.6, 60606, 60640, 60643, 60643.1, and 60900 of, to add Sections 10601.6, 10802.5, 10807, 49079.7, 44227.2, 60604.5, 60605.7, 60605.8, and 60605.9 to, and to add Chapter 18 (commencing with Section 53100) to Part 28 of Division 4 of Title 2 of, the Education Code, and to amend Section 1095 of the Unemployment Insurance Code, relating to public schools.\",Education\r\n\"An act to amend Section 1798.24 of the Civil Code, and to amend Sections 10802 and 49076 of, to add Section 49079.5 to, and to add and repeal Section 49079.6 of, the Education Code, relating to pupil data.\",Education\r\n\"An act to amend Sections 60640 and 60643 of the Education Code, relating to pupil assessments.\",Education\r\n\"An act to add Article 10 (commencing with Section 48350) to Chapter 2 of Part 27 of Division 4 of Title 2 of, and to add Article 3 (commencing with Section 53300) to Chapter 18 of Part 28 of Division 4 of Title 2 of, the Education Code, relating to public schools.\",Education\r\n\"An act to add Part 21 (commencing with Section 42001) to Division 2 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add and repeal Section 18005 of the Government Code, relating to state employment.\",Labor and Employment\r\n\"An act to amend Section 7074.2 of the Government Code, and to amend Section 26003 of, and to add Section 26011.7 to, the Public Resources Code, relating to economic development.\",Commerce\r\n\"An act to add Sections 17131.3, 23456.3, and 24303 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Energy\r\n\"An act to add and repeal Section 17059.1 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\nAn act relating to taxation.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 17144.5 of the Revenue and Taxation Code, relating to Taxation Code, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to amend Section 17533.7 of the Business and Professions Code, relating to advertising.\",Legal Issues\r\n\"An act to amend Section 7074.2 of the Government Code, relating to economic development.\",Education\r\n\"An act to add and repeal Sections 18154 and 24996 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to add Sections 17053.76 and 23622.9 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 26003 of, and to add Section 26011.7 to, the Public Resources Code, relating to energy.\",Energy\r\n\"An act to amend Sections 17072 and 19184 of, to amend and repeal Sections 17131.4, 17131.5, 17215.1, and 17215.4 of, and to add Sections 17138.7 and 17217 to, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Health\r\n\"An act to amend Section 17144.5 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to amend Section 10214.6 of, to add Section 10214.10 to, and to repeal Section 976.8 of, the Unemployment Insurance Code, relating to employment training, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Labor and Employment\r\n\"An act to add Part 13.3 (commencing with Section 31001) to Division 2 of, and to add and repeal Section 31006 of, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Division 8.9 (commencing with Section 22992) to the Business and Professions Code, relating to cannabis licensing.\",Legal Issues\r\n\"An act to amend Section 25128.5 of, and to add Section 6377 to, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 19567 to the Revenue and Taxation Code, relating to the Franchise Tax Board.\",Business and Consumers\r\n\"An act to add Section 7283.52 to the Revenue and Taxation Code, relating to taxation.\",Housing and Property\r\n\"An act to add Sections 17060 and 23603 to the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 17059 of, and to add and repeal Section 17059.1 of, the Revenue and Taxation Code, relating to taxation, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to add and repeal Section 17059.1 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 6011 and 6012 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to repeal Section 19138 of the Revenue and Taxation Code, relating to taxation.\",Legal Issues\r\n\"An act to add Sections 17053.82 and 23623.1 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Military\r\n\"An act to add Section 6377 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to amend Sections 17052.12 and 23609 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"public resources, and making an appropriation therefor.\",Public Services\r\n\"An act to repeal and add Section 12924 of, and to add Part 2.11 (commencing with Section 10920) to Division 6 of, the Water Code, relating to groundwater.\",Environmental\r\n\"An act to amend Sections 6103.1 and 6103.4 of the Government Code, to amend Sections 1052, 1055, 1055.2, 1055.3, 1120, 1228.5, 1228.7, 1525, 1535, 1538, 1550, 1551, 1825, 1845, 2525, 2526, 2550, 2763.5, and 5106 of, and to add Sections 1051.1, 1240.5, 1826, 1846, and 1847 to, the Water Code, and to amend and supplement the Budget Act of 2009 (Chapter 1 of the 2009̢\"\"10 Third Extraordinary Session) by amending Items 3940-001-0439 and 3940-001-3058 of Section 2.00 of the Budget Act of 2009, relating to water resources, and making an appropriation therefor.\",Environmental\r\n\"An act to add Chapter 1.5 (commencing with Section 115) to Division 1 of the Water Code, relating to the Sacramento-San Joaquin Delta.\",Environmental\r\n\"An act to add Division 26.7 (commencing with Section 79700) to the Water Code, relating to financing a safe drinking water and water supply reliability program, by providing the funds necessary therefor through an election for the issuance and sale of bonds of the State of California and for the handling and disposition of those funds, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to add Division 13.6 (commencing with Section 21200) to the Public Resources Code, relating to the environment, and making an appropriation therefor.\",Environmental\r\n\"An act to amend Section 13201 of the Water Code, relating to water quality.\",Environmental\r\n\"An act to amend Section 13160 of the Water Code, relating to water quality.\",Environmental\r\n\"An act to add Section 148 to the Water Code, relating to the State Water Resources Development System.\",Environmental\r\n\"An act to amend Sections 5100, 5101, 5103, and 5107 of, to add Chapter 2.7 (commencing with Section 348) to Division 1 of, and to repeal Section 5108 of, the Water Code, relating to water diversion.\",Environmental\r\nAn act relating to water.,Environmental\r\n\"An act to amend and repeal Section 10631.5 of, to add Part 2.55 (commencing with Section 10608) to Division 6 of, and to repeal and add Part 2.8 (commencing with Section 10800) of Division 6 of, the Water Code, relating to water.\",Environmental\r\n\"An act to amend Sections 29702, 29725, 29727, 29733, 29735, 29735.1, 29738, 29741, 29751, 29752, 29754, 29756.5, 29763, 29771, and 29780 of, to add Sections 29703.5, 29722.5, 29722.7, 29728.5, 29759, 29773, 29773.5, and 29778.5 to, to add Division 22.3 (commencing with Section 32300) to, to repeal Section 29762 of, and to repeal and add Sections 29736, 29739, 29753, 29761, 29761.5, and 29764 of, the Public Resources Code, and to add Division 35 (commencing with Section 85000) to, and to repeal Division 26.4 (commencing with Section 79400) of, the Water Code, relating to public resources, and making an appropriation therefor.\",Public Services\r\n\"An act to add Division 26.7 (commencing with Section 79700) to the Water Code, relating to financing a safe drinking water and water supply reliability program, by providing the funds necessary therefor through an election for the issuance and sale of bonds of the State of California and for the handling and disposition of those funds, making an appropriation therefor, and declaring the urgency thereof to take effect immediately.\",Environmental\r\n\"(commencing with Section 85000) to, to repeal Section 5108 of, to repeal Division 26.4 (commencing with Section 79400) of, to repeal and add Section 12924 of, and to repeal and add Part 2.8 (commencing with Section 10800) of Division 6 of, the Water Code, and to amend and supplement the Budget Act of 2009 (Chapter 1 of the 2009̢\"\"10 Third Extraordinary Session) by amending Items 3940-001-0439 and 3940-001-3058 of Section 2.00 of the Budget Act of 2009, relating to public resources, and making an appropriation therefor.\",Public Services\r\n\"An act to add Part 2.11 (commencing with Section 10920) to Division 6 of, and to repeal and add Section 12924 of, the Water Code, relating to groundwater.\",Environmental\r\n\"An act to amend and repeal Section 10631.5 of, to add Part 2.55 (commencing with Section 10608) to Division 6 of, and to repeal and add Part 2.8 (commencing with Section 10800) of Division 6 of, the Water Code, relating to water.\",Environmental\r\n\"An act to amend Section 12935 of the Water Code, relating to water resources.\",Environmental\r\n\"An act to amend and supplement the Budget Act of 2009 (Chapter 1 of the 2009̢\"\"10 Third Extraordinary Session) by amending Items 4265-001-0890 and 4265-111-0890 of Section 2.00 of that act, relating to the support of state government, and making an appropriation therefor.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 14533.2 to the Government Code, relating to transportation.\",Transportation\r\n\"An act to amend Section 8879.53 of the Government Code, relating to port and maritime security, and making an appropriation therefor.\",Commerce\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 16324, 16325, 16325.5, and 16326 of the Government Code, and to amend Section 2103.1 of the Streets and Highways Code, relating to state cash resources, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2010.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 218, 17207, and 24347.5 of, and to add Sections 195.158, 195.159, and 195.160 to, the Revenue and Taxation Code, relating to disaster relief, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Public Services\r\n\"An act to amend Section 13337 of the Government Code, relating to state fiscal affairs.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add and repeal Section 18005 of the Government Code, relating to state employment.\",Labor and Employment\r\n\"An act to add and repeal Section 17059.1 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 26003 of, and to add Section 26011.7 to, the Public Resources Code, relating to energy.\",Energy\r\n\"An act to add Sections 8587.3 and 8587.4 to the Government Code, and to add Section 16031 to the Insurance Code, relating to emergency services, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to add and repeal Section 21099 of the Public Resources Code, relating to the environment, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to repeal and add Section 1781 of the Civil Code, and to add Section 383 to, and to repeal and add Section 382 of, the Code of Civil Procedure, relating to civil actions.\",Legislative Affairs\r\n\"An act to add Section 14533.1 to the Government Code, relating to transportation.\",Transportation\r\n\"An act to amend Section 3294 of, and to add Section 3333.8 to, the Civil Code, relating to civil damages.\",Legal Issues\r\n\"An act to add Part 21 (commencing with Section 42001) to Division 2 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 8589.19 of, and to add Section 8589.24 to, the Government Code, relating to firefighting, and making an appropriation therefor.\",Public Services\r\n\"An act to add Section 11250.5 to the Welfare and Institutions Code, relating to public social services.\",Public Services\r\n\"An act to amend Section 22954 and 22955 of the Education Code, to add Section 16324 to, and to add and repeal Sections 16325, 16325.5, and 16326 of, the Government Code, and to amend Section 2103.1 of the Streets and Highways Code, relating to state finance, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act to amend and supplement the Budget Act of 2009 (Chapter 1 of the 2009̢\"\"10 Third Extraordinary Session) by amending Items 4265-001-0890 and 4265-111-0890 of Section 2.00 of that act, relating to the support of state government, and making an appropriation therefor.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Section 14533.2 to the Government Code, relating to transportation.\",Transportation\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add Sections 8587.3 and 8587.4 to the Government Code, and to add Section 16031 to the Insurance Code, relating to emergency services, and declaring the urgency thereof, to take effect immediately.\",Health\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\n\"An act to add and repeal Section 17059.1 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Section 26003 of, and to add Section 26011.7 to, the Public Resources Code, relating to energy.\",Energy\r\n\"An act to amend Section 8504 of the Government Code, relating to state government.\",Legislative Affairs\r\n\"An act to amend Section 8879.53 of the Government Code, relating to port and maritime security, and making an appropriation therefor.\",Commerce\r\n\"An act to amend Section 17144.5 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Housing and Property\r\n\"An act to add Chapter 6.8 (commencing with Section 50676) to Part 2 of Division 31 of the Health and Safety Code, relating to housing.\",Housing and Property\r\n\"An act to amend Section 53545.9 of the Health and Safety Code, relating to housing, and making an appropriation therefor.\",Housing and Property\r\n\"An act to add Sections 19852.2, 19852.3, and 19852.4 to the Government Code, relating to public employment.\",Labor and Employment\r\n\"An act to add Article 3.7 (commencing with Section 81665) to Chapter 3 of Part 49 of Division 7 of Title 3 of the Education Code, relating to community colleges.\",Energy\r\n\"An act to amend Sections 17008.5, 17020.6, 17024.5, 17041, 17052.12, 17062, 17063, 17072, 17085, 17132.5, 17144.5, 17152, 17206, 17250, 17250.5, 17255, 17275.5, 17276, 17501, 17551, 17952.5, 18165, 18180, 18631, 19116, 19131, 19134, 19164, 19166, 19172, 19179, 19443, 21015.5, 23045, 23051.5, 23456, 23609, 23712, 23732, 23772, 24305, 24356, 24357, 24357.1, 24357.7, 24358, 24416, 24949.5, 24990.6, and 24993 of, to add Sections 17020.15, 17131.3, 17132.8, 17204, 17225, 17257, 17257.2, 17257.4, 17275.2, 17275.3, 17279.6, 17560.5, 17681.3, 17755, 18031.5, 18037.5, 18151.5, 18155.6, 19165, 19172.5, 19185, 19186, 23046.5, 23703.7, 24303, 24329, 24349.2, 24462, 24831.3, 24941.5, 24950.5, 24990.2, and 24990.8 to, and to repeal Sections 24355.3, 24981, and 24988 of, the Revenue and Taxation Code, relating to taxation.\",\"Federal, State, and Local Relations\"\r\n\"An act to amend the heading of Article 1 (commencing with Section 12000) of Chapter 1 of Part 8 of Division 1 of Title 1 of, and to add Section 12001.5 to, the Education Code, relating to education finance, and declaring the urgency thereof, to take effect immediately.\",Education\r\n\"An act to add Sections 17072.19 and 17074.31 to the Education Code, relating to school facilities.\",Education\r\n\"An act to add Chapter 9.6 (commencing with Section 2425) to Division 3 of the Streets and Highways Code, relating to transportation.\",Transportation\r\n\"An act relating to air pollution, and making an appropriation therefor.\",Environmental\r\n\"An act to amend Section 2923.5 of, and to add and repeal Sections 2923.4, 2923.7, 2923.73, and 2923.75 of, the Civil Code, relating to mortgages.\",Housing and Property\r\n\"An act to amend Section 17059 of, and to add and repeal Section 17059.1 of, the Revenue and Taxation Code, relating to taxation, making an appropriation therefor, and declaring the urgency thereof, to take effect immediately.\",Housing and Property\r\n\"An act to add Sections 8587.3 and 8587.4 to the Government Code, and to add Section 16031 to the Insurance Code, relating to emergency services, and declaring the urgency thereof, to take effect immediately.\",Health\r\n\"An act to amend and repeal Section 130105 of, to repeal Sections 130110, 130115, 130120, 130125, 130130, 130135, 130140, 130140.1, 130145, 130150, 130151, and 130155 of, and to repeal and add Section 130100 of, the Health and Safety Code, relating to child development, and declaring the urgency thereof, to take effect immediately.\",Family and Children Issues\r\n\"An act to add and repeal Section 21099 of the Public Resources Code, relating to the environment, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to add and repeal Sections 18154 and 24996 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to add Section 6377 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act relating to public resources, and making an appropriation therefor.\",Environmental\r\n\"An act to amend Sections 6011 and 6012 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Commerce\r\n\"An act to amend Sections 17072 and 19184 of, to amend and repeal Sections 17131.4, 17131.5, 17215.1 and 17215.4 of, and to add Sections 17138.5 and 17216 to, the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Health\r\n\"An act to add Sections 11349.10 and 11349.11 to the Government Code, relating to the State Auditor.\",State Agencies\r\n\"An act to amend Section 38570 of the Health and Safety Code, relating to air pollution.\",Environmental\r\n\"An act to amend Section 22954 and 22955 of the Education Code, to add Section 16324 to, and to add and repeal Sections 16325, 16325.5, and 16326 of, the Government Code, and to amend Section 2103.1 of the Streets and Highways Code, relating to state finance, and declaring the urgency thereof, to take effect immediately.\",Commerce\r\n\"An act to repeal and add Division 3 (commencing with Section 28000) of Title 4 of the Corporations Code, relating to capital access companies.\",Business and Consumers\r\n\"An act to amend Section 7074.2 of the Government Code, relating to economic development.\",Education\r\n\"An act to add Division 8.9 (commencing with Section 22992) to the Business and Professions Code, relating to medical marijuana.\",Health\r\n\"An act to add Section 19137 to, to add Chapter 9.2 (commencing with Section 19740) to Part 10.2 of Division 2 of, and to repeal Section 19138 of, the Revenue and Taxation Code, relating to taxation.\",\"Budget, Spending, and Taxes\"\r\n\"An act to repeal and amend Sections 17053.85 and 23685 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Business and Consumers\r\n\"An act to add Chapter 4.7 (commencing with Section 21159.40) to Division 13 of, and to repeal Section 21097 of, the Public Resources Code, relating to environmental quality.\",Environmental\r\n\"An act to add Section 43705.5 to the Health and Safety Code, relating to air pollution, and declaring the urgency thereof, to take effect immediately.\",Environmental\r\n\"An act to amend Sections 17052.12 and 23609 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Sections 17053.76 and 23622.9 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to amend Sections 22, 102.3, 473, 473.15, 473.16, 473.2, 473.3, 473.4, 473.5, 473.6, 474, 474.1, 474.2, 474.3, 474.4, 1620.1, 1632.5, 1634.2, 1638.1, 1638.7, 4001.5, 4200.3, 4934.2, 5000, 5811, 6704.1, 7000.5, 7303.2, 9882, 18824, and 18882 of, to amend the heading of Division 1.2 (commencing with Section 473) of, and to add Chapter 3 (commencing with Section 474.5) to Division 1.2 of, the Business and Professions Code, and to amend Sections 9148.52 and 9148.8 of the Government Code, relating to legislative procedure.\",Business and Consumers\r\n\"An act to repeal and add Sections 45103.1, 45103.5, 88003.1, and 88004.5 of the Education Code, and to add Section 3562.3 to the Government Code, relating to public education.\",Labor and Employment\r\n\"An act to add Part 13.3 (commencing with Section 31001) to Division 2 of the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",\"Budget, Spending, and Taxes\"\r\n\"An act to add Sections 17053.81 and 23623.2 to the Revenue and Taxation Code, relating to taxation, to take effect immediately, tax levy.\",Military\r\n\"An act to repeal Part 13 (commencing with Section 2698) of Division 2 of the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to add Section 1349.3 to the Health and Safety Code, and to add Section 699.6 to the Insurance Code, relating to health care coverage.\",Commerce\r\n\"An act to amend Section 510 of, and to add Section 511.5 to, the Labor Code, relating to employment.\",Labor and Employment\r\n\"An act to amend Sections 11709, 11806, 11812, and 11819 of the Vehicle Code, relating to vehicles.\",Transportation\r\n\"An act to amend Section 25213 of the Public Resources Code, relating to energy.\",Energy\r\n\"An act to amend Section 2715 of the Commercial Code, relating to commercial transactions.\",Business and Consumers\r\n\"An act to amend Sections 226.7 and 512 of the Labor Code, relating to employment.\",Labor and Employment\r\nAn act relating to the Budget Act of 2009.,\"Budget, Spending, and Taxes\"\r\nEducation finance: CalWORKs Stage 3.,Education\r\nMinimum wage: annual adjustment.,Labor and Employment\r\nMental Health Services Act.,Health\r\nHealth care coverage: cancer treatment.,Health\r\nVehicles: special interest license plates.,Transportation\r\nCalifornia Water Plan: stormwater recovery.,Environmental\r\nProfessional and vocational licenses.,Labor and Employment\r\nForest practices: timber harvesting plan.,Environmental\r\nVehicles: automated traffic enforcement systems.,Transportation\r\nIncome tax: credits: full-time employees: hires.,Labor and Employment\r\nLaw enforcement: communications.,Other\r\nMedi-Cal: cooperative arrangements.,Health\r\nState officers.,State Agencies\r\nPrivate postsecondary education.,Education\r\nFood facilities: definition.,Agriculture and Food\r\nMarijuana cultivation: reduced penalty.,Legal Issues\r\nPublic employees.,Labor and Employment\r\nState government.,State Agencies\r\nHealth.,Health\r\nBallot measures: fiscal analysis.,Campaign Finance and Election Issues\r\nSex offenders: registration.,Crime\r\nMaintenance of the codes.,Other\r\nHarbors and ports: inland pilots.,Transportation\r\nAssault: force likely to produce great bodily injury.,Legal Issues\r\nLocal publicly owned electric utilities: utility poles and support structures.,Energy\r\nCommunity colleges: course approval.,Education\r\nState cash resources.,Commerce\r\nCigarette and tobacco taxes: violation: penalties.,Health\r\nVehicles: driving under the influence (DUI): undocumented drivers.,Transportation\r\nCommunity facilities districts: financing.,\"Budget, Spending, and Taxes\"\r\nCharter schools.,Education\r\nState employees: memorandum of understanding.,Labor and Employment\r\nRegulations: small business impact.,Business and Consumers\r\nState employees: memorandum of understanding.,Labor and Employment\r\nIndian Gaming Special Distribution Fund.,Gambling and Gaming\r\nDevelopmental services.,Health\r\nState employees: memorandum of understanding.,Labor and Employment\r\nRegistered warrants: taxation.,\"Budget, Spending, and Taxes\"\r\nLocal government: bonds.,Municipal and County Issues\r\nHunting or taking game.,Animal Rights and Wildlife Issues\r\nVehicles: motorcycle safety.,Transportation\r\nSchools: low-achieving schools.,Education\r\nTransportation.,Transportation\r\nState government.,State Agencies\r\nState property: surplus.,Housing and Property\r\nLocal government: penalties and fees.,Other\r\nPublic Utilities Commission: solicitation of contributions from regulated persons or corporations.,Other\r\nPublic postsecondary education: community colleges.,Education\r\nSales and use taxes: exemption: manufacturing.,\"Budget, Spending, and Taxes\"\r\nEmergency medical care.,Public Services\r\nHuman services.,Public Services\r\nConsumer warranties: vehicles.,Transportation\r\nPublic social services.,Public Services\r\nAutomobile insurance: underinsured motorist coverage.,Transportation\r\n\"Highway Safety, Traffic Reduction, Air Quality, and Port Security Bond Act of 2006: shoreside electrical power infrastructure.\",Transportation\r\nPupil transfers: records.,Education\r\nPublic health care: Medi-Cal: demonstration project waivers.,Health\r\nIncome taxes: credits: film: extension.,Recreation\r\nPublic resources.,Public Services\r\nEducation finance: revenue limits.,Education\r\nCredit unions.,Commerce\r\nState parks: Colonel Allensworth State Historic Park.,Environmental\r\nLegislature: former members: employment prohibition: state boards and commissions.,Labor and Employment\r\nPersonal income taxes: credit: higher education.,Education\r\nEducation.,Education\r\nInternet transactions: verification: banking and financial services.,Other\r\nState government: federal immigration policy enforcement.,State Agencies\r\nPowers of attorney: statutory form power of attorney.,Legal Issues\r\nHealth care coverage.,Health\r\nSchool attendance: interdistrict attendance.,Education\r\nTransactions and use taxes: County of Alameda.,\"Budget, Spending, and Taxes\"\r\nCities and counties: public safety services: contracts.,Municipal and County Issues\r\nState agencies: collection of demographic data.,State Agencies\r\nCriminal justice alignment.,Legal Issues\r\nTaxation: property tax deferment.,Housing and Property\r\nContractors.,Labor and Employment\r\nStudent financial aid: Military and Veterans Benefits Offices.,Military\r\nCourts: official reporters.,Judiciary\r\nTransit projects: domestic content.,Housing and Property\r\nTaxes: credits: small businesses.,\"Budget, Spending, and Taxes\"\r\nCourts.,Judiciary\r\nRetail food facilities: toys and incentives.,Other\r\nState Auditor.,State Agencies\r\nLand use: housing element.,Housing and Property\r\nVehicles: driving-under-the-influence (DUI).,Transportation\r\nVehicles: bicycles: rules of the road: bicycle lanes.,Transportation\r\nDrinking water: point-of-use devices.,Environmental\r\nCriminal justice realignment.,Legal Issues\r\nDependent children of the juvenile court: county responsibilities: Supplemental Security Income Eligibility.,Family and Children Issues\r\nDebt collection: homeless youth.,\"Budget, Spending, and Taxes\"\r\nOil spill prevention and administration fee: State Lands Commission.,Environmental\r\nInmates: involuntary administration of psychotropic medications.,Crime\r\nWorkforce development: training services.,Labor and Employment\r\nEmergency services: populations with limited English proficiency.,Public Services\r\nAnimal abuse: penalties.,Animal Rights and Wildlife Issues\r\nPupil instruction: health education: organ and tissue donation.,Education\r\nHealth facility licensing compliance: delegation to local health departments.,Health\r\nBudget Act of 2010: revisions.,\"Budget, Spending, and Taxes\"\r\nCorrectional health care facilities.,Health\r\nJuvenile offenders: tattoo removal.,Crime\r\nState projects: risk analysis.,State Agencies\r\nPhysicians and surgeons: unprofessional conduct.,Health\r\nVehicles: Terminal Island Freeway: special permits.,Transportation\r\nGrand jurors: conflict of interest.,Judiciary\r\nCrimes: punishment.,Crime\r\nEmployment safety: health facilities.,Labor and Employment\r\nEconomic development: foreign trade.,Trade\r\nState policies.,State Agencies\r\nBills.,Legislative Affairs\r\nEducation finance.,Education\r\nCalWORKs: eligibility: time limit.,Family and Children Issues\r\nVoter education: citizenship.,Campaign Finance and Election Issues\r\nResidential care facilities for the elderly.,Senior Issues\r\nEmployee housing.,Labor and Employment\r\nPolitical Reform Act of 1974.,Campaign Finance and Election Issues\r\nDependent children: status reports.,Family and Children Issues\r\nBeverage containers: recycling and litter reduction: funds.,Environmental\r\nTransportation.,Transportation\r\nSelf-generation incentive program.,Other\r\nPublic retirement systems: investments: Iran.,Labor and Employment\r\nGroundwater.,Environmental\r\nAlcoholism and drug abuse recovery or treatment facilities.,Drugs\r\nCalifornia Nursery Producers Commission.,Other\r\nPupils: bullying.,Education\r\nDeferred deposit transactions.,Commerce\r\nState government: income and expenditure data.,State Agencies\r\nCriminal justice realignment.,Legal Issues\r\nCooperative corporations.,Business and Consumers\r\nWildlife: poaching.,Animal Rights and Wildlife Issues\r\nEducation: California Educational Facilities Authority.,Education\r\nFederal transportation funds.,\"Federal, State, and Local Relations\"\r\nDomestic violence: probation: terms.,Crime\r\nHomelessness: Interagency Council on Homelessness.,Welfare and Poverty\r\nAir pollution: toxic air contaminants.,Environmental\r\nCriminal justice realignment.,Legal Issues\r\nVehicles: ski or toboggan on roadway.,Transportation\r\nPesticides: toxic air contaminant.,Environmental\r\nSales and use tax.,\"Budget, Spending, and Taxes\"\r\nWeights and measures.,Other\r\nCalWORKs eligibility: asset limits: vehicles.,Transportation\r\nCalifornia Environmental Quality Act: retail facilities: project review.,Environmental\r\nCalifornia Water Plan: safe drinking water.,Environmental\r\nRecycling: batteries.,Environmental\r\nState government.,State Agencies\r\nSales and use taxes: consumer: destination management company.,\"Budget, Spending, and Taxes\"\r\nLocal government finance.,Municipal and County Issues\r\nImmunization information: pertussis.,Health\r\nAccountancy.,\"Budget, Spending, and Taxes\"\r\nDrinking water.,Environmental\r\nWhistleblower protection.,Business and Consumers\r\nLand use: housing element: regional housing need assessment.,Housing and Property\r\n\"Abolition of Child Commerce, Exploitation, and Sexual Slavery Act of 2011.\",Family and Children Issues\r\nVoter registration.,Campaign Finance and Election Issues\r\nHigh-speed rail: contracts: small businesses.,Transportation\r\nTrial courts: administration.,Judiciary\r\nBudget Act of 2011.,\"Budget, Spending, and Taxes\"\r\nNot-for-profit corporations.,Other\r\nElectrical transmission.,Energy\r\nVehicles: electronic processing of documents: titling and registration.,Transportation\r\nLand use: notice of proposed change: assisted housing developments.,Housing and Property\r\nLand use and planning: cause of actions: time limitations.,Other\r\nState Water Quality Control Fund: State Water Pollution Cleanup and Abatement Account.,Environmental\r\nMedi-Cal: Public Assistance Reporting Information System.,Health\r\nHealth facilities: licensing.,Health\r\nPrisons.,Crime\r\nElections.,Campaign Finance and Election Issues\r\nState government: economic development.,Commerce\r\nEmployment: hiring practices: electronic employment verification.,Labor and Employment\r\nSchool districts: Open Enrollment Act.,Education\r\nPersonal income tax: rates.,\"Budget, Spending, and Taxes\"\r\nPolitical Reform Act of 1974: contributions.,Campaign Finance and Election Issues\r\nEmergency medical services.,Health\r\nInstructional materials.,Other\r\nInsurance: guaranteed asset protection.,Insurance\r\nRedevelopment.,Other\r\nPolitical Reform Act of 1974: statements of economic interests.,Campaign Finance and Election Issues\r\nHigh-speed rail: contracts.,Transportation\r\nEnergy: renewable energy resources.,Energy\r\nState Air Resources Board: membership.,State Agencies\r\nBeverage containers: recycling and litter reduction: funds.,Environmental\r\nEnterprise zones.,Commerce\r\nCourts: judicial appointments.,Judiciary\r\nSales and use tax.,\"Budget, Spending, and Taxes\"\r\nLocal government renewable energy self-generation program.,Municipal and County Issues\r\nCharter schools.,Education\r\nStatewide Bail Commission: statewide bail schedule.,Crime\r\nLocal government: Williamson Act.,Environmental\r\nPhysicians and surgeons: certificate.,Health\r\nTelecommunications: usage notification.,Technology and Communication\r\nRegulations: effective date.,Legal Issues\r\nProperty tax: exemption.,\"Budget, Spending, and Taxes\"\r\nState property: surplus.,Housing and Property\r\nBoards and commissions.,Other\r\nFalse documents.,Legal Issues\r\nHealth facilities: smoking.,Health\r\nAnimal shelters.,Animal Rights and Wildlife Issues\r\nState Air Resources Board: alternative actions to assessing penalties.,Other\r\nDepartment of Corrections and Rehabilitation.,State Agencies\r\n\"Safe, Clean, and Reliable Drinking Water Supply Act of 2012.\",Environmental\r\nProbation bonds.,Crime\r\nWage disputes: waiver of claims.,Labor and Employment\r\nLocal government: audits.,Other\r\nCourt facilities.,Judiciary\r\nLocal government: fines and penalties: assessments.,Municipal and County Issues\r\nVehicles: existing and emerging technologies.,Transportation\r\nLocal workforce investment board.,Labor and Employment\r\n\"Health Care Eligibility, Enrollment, and Retention Act.\",Health\r\nMedi-Cal: mental health.,Health\r\nMarine fisheries: forage species.,Animal Rights and Wildlife Issues\r\nPublic school volunteers.,Education\r\nStudent financial aid: eligibility: California Dream Act of 2011.,Education\r\nMedical marijuana.,Health\r\nRetail tobacco sales: STAKE Act.,Business and Consumers\r\nLinked learning.,Education\r\nHighway Users Tax Account: appropriation of funds.,Transportation\r\nStudent financial aid.,Education\r\nOvertime wages: agricultural workers.,Labor and Employment\r\nAir resources: Alternative and Renewable Fuel and Vehicle Technology Program.,Environmental\r\nLawyer-client privilege: injury to financial interests or property.,Legal Issues\r\nCommunity development: plan consistency.,Public Services\r\nCivil damages.,Other\r\nProduct safety: bisphenol A.,Environmental\r\nCar washes: regulations: civil penalties.,Other\r\nRegulations: principles of regulation.,Other\r\nProfessional fiduciaries.,Commerce\r\nCalifornia Higher Education Endowment Corporation: oil and gas severance tax.,Energy\r\nKen Maddy California Cancer Registry.,Health\r\nHigh-speed rail.,Transportation\r\nGraduation requirements: career technical education.,Education\r\nDeadly weapons.,Guns\r\nState Air Resources Board: abolishment.,State Agencies\r\nState parks.,Environmental\r\nCoastal resources: local coastal programs.,Environmental\r\nRedevelopment.,Other\r\nIncome tax credits: emergency standby generators.,Energy\r\nAppropriation of water: Sacramento Regional County Sanitation District.,Other\r\nCity of Bell: Sanitation and Sewerage System District: unlawful increases and charges.,Municipal and County Issues\r\nDirector of Education: experimental work in education.,Education\r\nPublic contracts: roof projects.,Other\r\nVote by mail: procedures: permanent vote by mail voters: failure to return ballot.,Campaign Finance and Election Issues\r\nLocal governance.,Other\r\nLocal government: audits.,Other\r\nDivision of Apprenticeship Standards: certification of electricians.,Labor and Employment\r\nOil and gas: geothermal: operations: enforcement actions.,Environmental\r\nPaternity: conflicting presumptions.,Family and Children Issues\r\nState Air Resources Board: membership: small business owner.,Business and Consumers\r\nProperty taxation: override rates: validation by auditor.,\"Budget, Spending, and Taxes\"\r\nUnderground storage tanks: fees: deficiency determinations.,Other\r\nTaxation: vehicle license fees.,\"Budget, Spending, and Taxes\"\r\nPublic contracts: public works projects: notice.,Other\r\nCivil procedure: discovery: objections.,Other\r\nCity officials: standards.,Municipal and County Issues\r\nAlcoholic beverage licensees: winegrower: brandy manufacturer: duplicate licenses.,Other\r\nVoter registration.,Campaign Finance and Election Issues\r\nTelecommunications: universal service: speech disabilities.,Technology and Communication\r\nPhysicians and surgeons: employment.,Health\r\nPupil attendance: electronic attendance accounting systems.,Education\r\nVoter registration: information sharing.,Campaign Finance and Election Issues\r\nPrivate postsecondary education: student financial aid: notice.,Education\r\nSurplus state property.,Housing and Property\r\nPersonal and corporate income taxes: deductions: illegal activities.,\"Budget, Spending, and Taxes\"\r\nHealth care coverage: mammographies.,Health\r\nEmployment agencies.,Labor and Employment\r\nPeace officers: airport law enforcement.,Transportation\r\nEconomic development: public pension funds.,Commerce\r\nElder Economic Planning Act of 2011.,Senior Issues\r\nState government: California Environmental Protection Agency.,Environmental\r\nPublic contracts: contract awards.,Other\r\nHIV counselors.,Health\r\nUnemployment insurance: compensation benefits.,Labor and Employment\r\nExpungement standards.,Other\r\nElectricity.,Energy\r\nEarnings withholding orders.,Other\r\nState claims.,State Agencies\r\nEnergy crisis litigation.,Energy\r\nEnergy.,Energy\r\nHealth care facilities: financing.,Health\r\nPublic employment.,Labor and Employment\r\nEmployment contract requirements.,Labor and Employment\r\nWorking hours.,Labor and Employment\r\nEmployment records: right to inspect.,Labor and Employment\r\nRedevelopment: Fremont Redevelopment Agency.,State Agencies\r\nClaims against the state: payment.,Legal Issues\r\nPublic social services.,Public Services\r\nEmployment: minors.,Labor and Employment\r\nDeadly weapons.,Guns\r\nCivil actions.,Civil Liberties and Civil Rights\r\nCivil rights.,Civil Liberties and Civil Rights\r\nGeneral obligation bonds.,Other\r\nRegulations: small businesses.,Business and Consumers\r\nJurors: electronic communications.,Judiciary\r\nEconomic development: enterprise zones.,Other\r\nVote by mail.,Campaign Finance and Election Issues\r\nElections.,Campaign Finance and Election Issues\r\nForestry: timber harvesting.,Environmental\r\nAdult day health care.,Health\r\nInsurance omnibus.,Insurance\r\nDepartment of Alcoholic Beverage Control: report: due date.,State Agencies\r\nCriminal procedure: pleas.,Judiciary\r\nInsurance.,Insurance\r\nPupil records: privacy rights.,Education\r\nVoter registration.,Campaign Finance and Election Issues\r\nBudget Bill: public availability.,Legislative Affairs\r\nChild abuse reporting.,Family and Children Issues\r\nMinimum wage: annual adjustment.,Labor and Employment\r\nFirearms.,Guns\r\nPersonal income taxes: credit: higher education.,Education\r\nVoter registration: paid registration activities.,Campaign Finance and Election Issues\r\nHigh-speed rail.,Transportation\r\nState Air Resources Board: membership.,State Agencies\r\nIndividual health care coverage.,Health\r\nTransportation.,Transportation\r\nHealth.,Health\r\nHealth.,Health\r\nSubdivisions.,Other\r\nHuman services.,Public Services\r\nDevelopmental services.,Health\r\nTaxation: administration.,\"Budget, Spending, and Taxes\"\r\nEducation finance.,Education\r\nLocal government: ethics training: disclosure.,Municipal and County Issues\r\nPublic safety.,Senior Issues\r\nCommunity redevelopment.,Municipal and County Issues\r\nCivil service: personal services contracts.,Labor and Employment\r\nCriminal justice realignment.,Legal Issues\r\nWorkforce development: California Renewable Energy Workforce Readiness Initiative: local workforce investment boards.,Labor and Employment\r\nPublic contracts: Prison Industry Authority.,Business and Consumers\r\nPolitical Reform Act of 1974: statement of economic interests.,Campaign Finance and Election Issues\r\nMedicare supplement coverage.,Health\r\nIncome tax: health savings accounts.,Health\r\nMedi-Cal.,Health\r\nFood banks: grants: voluntary contributions: income tax credits.,Agriculture and Food\r\nCalifornia Major Risk Medical Insurance Program.,Health\r\nFirearms.,Guns\r\nState Board of Equalization: administration: retailer engaged in business in this state.,Business and Consumers\r\nState claims.,State Agencies\r\nVehicles: high-occupancy vehicle lanes.,Transportation\r\nHealth care coverage: mental health services.,Health\r\nPractice of medicine: cosmetic surgery: employment of physicians and surgeons.,Health\r\nDevelopment: expedited permit review.,Other\r\nState Board of Equalization: administration: retailer engaged in business in this state.,Business and Consumers\r\nHousing.,Housing and Property\r\nDevelopmental services: regional centers.,Public Services\r\nFirearms.,Guns\r\nGambling control.,Gambling and Gaming\r\nPublic contracts: school districts: bidding requirements.,Education\r\n\"Safe, Clean, and Reliable Drinking Water Supply Act of 2012.\",Environmental\r\nHigh-speed rail.,Transportation\r\nPupil fees.,Education\r\nCivil actions: damages.,Legal Issues\r\nCommunity care facilities: foster family agencies.,Family and Children Issues\r\nMortgages and deeds of trust: foreclosure.,Housing and Property\r\nHigh-Speed Rail Authority.,Transportation\r\nConcurrent enrollment in secondary school and community college.,Education\r\nMortgages and deeds of trust: foreclosure.,Housing and Property\r\nLocal public employee organizations: impasse procedures.,Labor and Employment\r\nLocal water supply projects: inventory.,Health\r\nTrespass: private property.,Crime\r\nHigh-speed rail.,Transportation\r\nLocal government: financial reports.,Commerce\r\nMultiple-party accounts.,Other\r\nTransition to Organics Act.,Agriculture and Food\r\nChild abuse.,Family and Children Issues\r\nDepartment of Forestry and Fire Protection: employment: criminal background checks.,Labor and Employment\r\nRetirement: public employees.,Labor and Employment\r\nMedi-Cal: cards.,Health\r\nHealth care coverage: durable medical equipment.,Health\r\nState highways: naming and designation by the Legislature.,Transportation\r\nPupil fees.,Education\r\nPublic employees: rights.,Labor and Employment\r\nSan Francisco Bay Restoration Authority.,Municipal and County Issues\r\nCorporation taxes: minimum franchise tax.,Business and Consumers\r\nHorse racing.,Recreation\r\nCalifornia Stolen Valor Act.,Other\r\nLocal Safety and Protection Account: appropriation.,Other\r\nIndian Gaming Special Distribution Fund.,Gambling and Gaming\r\nEducation finance.,Education\r\nState Budget: key liabilities.,\"Budget, Spending, and Taxes\"\r\nBankruptcy.,Legal Issues\r\nDevelopmental services: regional centers: Inland Regional Center.,Other\r\nCalifornia Global Warming Solutions Act of 2006.,Environmental\r\nChild Abuse Central Index.,Family and Children Issues\r\nChild abuse reporting.,Family and Children Issues\r\nElections: voter identification.,Campaign Finance and Election Issues\r\nState agencies: information: Internet Web site.,State Agencies\r\nVoting: polling place procedures.,Campaign Finance and Election Issues\r\nHealth care programs: provider reimbursement rates.,Health\r\nHealth.,Health\r\nHealth care coverage: tobacco cessation.,Health\r\nSchools: nutrition: beverages.,Education\r\nInmates: transfers.,Crime\r\nElectricity: rates.,Energy\r\nStandardized testing: valid identification.,Education\r\nVehicles: additional registration fees.,Transportation\r\nEconomic development.,Commerce\r\nJuveniles: parenting classes.,Crime\r\nKindergarten.,Education\r\nLocal transportation funds.,Transportation\r\nState employment: salary freeze.,Labor and Employment\r\nMedi-Cal: cooperative arrangements.,Health\r\nEducation: academic performance.,Education\r\nHealth care coverage.,Health\r\nHousing.,Housing and Property\r\nHealth care coverage.,Health\r\nCharter schools: funding.,Education\r\nChild abuse reporting.,Family and Children Issues\r\nPolitical Reform Act of 1974: statements of economic interests.,Campaign Finance and Election Issues\r\nBail.,Crime\r\nAlcoholic beverage licenses: self-service checkouts.,Legal Issues\r\nRecycling: reusable bags.,Environmental\r\nSex offenders.,Crime\r\nHuman trafficking.,Crime\r\nContractual assessment programs: seismic safety improvements.,Legal Issues\r\nWhistleblower protection.,Business and Consumers\r\nMaternity services.,Reproductive Issues\r\nReportable diseases and conditions.,Health\r\nHealth facilities: licensure.,Health\r\nRenewable energy resources.,Energy\r\nState Auditor: audits: high-risk local government agency audit program.,State Agencies\r\nChild day care facilities: nutrition.,Health\r\nCredit unions.,Commerce\r\nProperty tax exemption: principal residence: veterans and their unmarried surviving spouses.,Military\r\nState Fire Marshal: certification.,Other\r\nEducation funding.,Education\r\nBuilding standards: water meters: multiunit structures.,Housing and Property\r\nVehicle Code violation: additional penalty: spinal cord injury research.,Transportation\r\nLocal government finance: property tax revenue allocations: negative sum counties.,\"Budget, Spending, and Taxes\"\r\nSales and use taxes: exemption: manufacturing.,\"Budget, Spending, and Taxes\"\r\nCredit unions.,Commerce\r\nSafe routes to school.,Education\r\nPublic safety: Local Safety and Protection Account: appropriation.,Other\r\nService contracts.,Commerce\r\nPolling place designation.,Campaign Finance and Election Issues\r\nDepartment of Veterans Affairs: consolidation of services to veterans.,Military\r\nState government.,State Agencies\r\nPupil records: privacy rights.,Education\r\nPublic postsecondary education: priority enrollment: foster youth.,Education\r\nEmergency medical services.,Health\r\nLocal public employee organizations.,Labor and Employment\r\nJuvenile offenders: tattoo removal.,Crime\r\nPeace officers.,Other\r\nIncome taxes: credit: earned income.,\"Budget, Spending, and Taxes\"\r\nTimber harvesting plans.,Environmental\r\nSalvageable personal property: collection boxes.,Other\r\nAdoption: fingerprinting of adoptive parents.,Family and Children Issues\r\nRedistricting.,Other\r\nSchool curriculum: social sciences: Filipinos in World War II.,Education\r\nSentencing: methamphetamine.,Judiciary\r\nPostsecondary education: Educational and Economic Goals for California Higher Education.,Education\r\nConstruction defect actions: attorneys.,Legal Issues\r\nSacramento-San Joaquin Delta.,Environmental\r\nPupil assessment.,Education\r\nEducation finance: revenue limits.,Education\r\nVeterans courts.,Judiciary\r\nEconomic development.,Commerce\r\nProfessional fiduciaries.,Commerce\r\nLocal educational agencies: reimbursable state mandates.,Municipal and County Issues\r\nIncome taxes: credits: film: extension.,Recreation\r\nBail Fugitive Recovery Persons Act.,Crime\r\nPublic schools: parent empowerment: school intervention.,Education\r\nCharter schools: suspension and expulsion of pupils.,Education\r\nArson.,Crime\r\nHealth care service plans.,Health\r\nFamily and medical leave.,Labor and Employment\r\nProstitution: human trafficking: expungement.,Crime\r\nRegulations: adoption: disability access.,Health\r\nState Board of Equalization: administration: interest.,State Agencies\r\nElections: vote by mail ballots.,Campaign Finance and Election Issues\r\nMortgages and deeds of trust.,Housing and Property\r\nVoter registration: paid registration activities.,Campaign Finance and Election Issues\r\nImmunizations for children: reimbursement of physicians.,Health\r\nVehicles: unlicensed drivers.,Transportation\r\nSchool attendance: residency requirements.,Education\r\nLand use: subdivision maps: expiration dates.,Other\r\nVote by mail ballots.,Campaign Finance and Election Issues\r\nEnvironment: CEQA: lead agency: documents.,Environmental\r\nState Budget: key liabilities.,\"Budget, Spending, and Taxes\"\r\nMaternity services.,Reproductive Issues\r\nLand use: housing element: regional housing need assessment.,Housing and Property\r\nCalifornia Fostering Connections to Success Act.,Other\r\nPolitical Reform Act of 1974.,Campaign Finance and Election Issues\r\nAdministrative Procedure Act: notice of proposed actions: local government agencies.,Municipal and County Issues\r\nPeace officers: training.,Public Services\r\nPeace officers: airport law enforcement.,Transportation\r\nProfessional photocopiers.,Labor and Employment\r\nEmergency services: Emergency Medical Air Transportation Act.,Health\r\nMobilehome parks.,Housing and Property\r\nHealth care coverage.,Health\r\nMobile telephony service.,Technology and Communication\r\nEnergy: renewable energy resources.,Energy\r\nHazardous materials: chemicals of concern.,Environmental\r\nForestry: timber harvesting plans.,Environmental\r\nWorkplace smoking prohibition: long-term health care facilities.,Labor and Employment\r\nPublic postsecondary education: community colleges: expulsion hearing.,Education\r\nEmployment: meal periods.,Labor and Employment\r\nArson.,Crime\r\nTaxation: estate taxes and sales and use taxes.,Housing and Property\r\nAlcoholic beverages: tied-house restrictions.,Legal Issues\r\nRenewable energy resources.,Energy\r\nCalifornia Recidivism Goals Development and Achievement Act.,Other\r\nRenewable energy resources.,Energy\r\nEmployment: credit reports.,Labor and Employment\r\nInterstate Compact for Juveniles.,Family and Children Issues\r\nVehicles: high-occupancy vehicle lanes.,Transportation\r\nThe Housing and Emergency Shelter Trust Fund Acts of 2002 and 2006: supportive housing.,Housing and Property\r\nGovernment reorganization: realignment or closure.,Government Reform\r\nElections: statewide ballot pamphlet.,Campaign Finance and Election Issues\r\nPublic records.,Public Services\r\nCriminal history records.,Crime\r\nPolitical Reform Act of 1974.,Campaign Finance and Election Issues\r\nSchool accountability: Academic Performance Index.,Education\r\nPublic health: food access.,Health\r\nSolar Water Heating and Efficiency Act of 2007.,Energy\r\nChild custody: ex parte orders.,Legal Issues\r\nCivil actions.,Civil Liberties and Civil Rights\r\nNuisance: landfill activities.,Environmental\r\nUnemployment insurance: reporting requirements: status of funds.,Labor and Employment\r\nEducation technology planning.,Education\r\nInsurance omnibus.,Insurance\r\nLand use: housing element: regional housing need.,Housing and Property\r\nControlled substances.,Drugs\r\nEnterprise zones.,Commerce\r\nEducational equity.,Education\r\nPersonal income taxes: voluntary contributions: California YMCA Youth and Government Fund.,\"Budget, Spending, and Taxes\"\r\nSex offenses: rape: worktime credits.,Crime\r\nDevelopmental services: Employment First Policy.,Labor and Employment\r\nIncome tax: credits: full-time employees: hires.,Labor and Employment\r\nControlled substances.,Drugs\r\nPublic records: clemency records.,Other\r\nHealth care coverage.,Health\r\nCalWORKs eligibility: asset limits: vehicles.,Transportation\r\nTissue donation.,Health\r\nIncome taxes: credits: qualified employees.,\"Budget, Spending, and Taxes\"\r\nPrisoners: pharmacy services.,Health\r\nVehicles: public transit buses: illuminated signs.,Transportation\r\nState government: agency repeals.,State Agencies\r\nProbation.,Crime\r\nCrime laboratories: oversight.,Crime\r\nWater recycling.,Environmental\r\nCalifornia Postsecondary Education Commission: feasibility study: Chula Vista.,Education\r\nCompensation recovery actions: liquidated damages.,Labor and Employment\r\nInsurance: rates.,Insurance\r\nEnergy efficiency.,Energy\r\nGambling: moratorium.,Gambling and Gaming\r\nStudent financial aid: Cal Grant Program.,Education\r\nTaxation.,\"Budget, Spending, and Taxes\"\r\nMortgages and deeds of trust: foreclosure.,Housing and Property\r\nLabor contractors.,Labor and Employment\r\nSales and use taxes.,Commerce\r\nUnclaimed property.,Legal Issues\r\nProperty taxation.,Housing and Property\r\nLos Angeles County Metropolitan Transportation Authority: contracting.,Transportation\r\nChild care: contractors: electronic payment.,Family and Children Issues\r\nCalWORKs eligibility: periodic drug testing.,Family and Children Issues\r\nProperty taxation: refunds.,Housing and Property\r\nMedi-Cal: managed care.,Health\r\nCourt security.,Judiciary\r\nRural health.,Health\r\nFinancial institutions.,Commerce\r\nContractors.,Labor and Employment\r\nState government.,State Agencies\r\nPolitical Reform Act of 1974.,Campaign Finance and Election Issues\r\nState government.,State Agencies\r\nDepartment of Corrections and Rehabilitation.,State Agencies\r\nPublic contracts: school districts: bidding requirements.,Education\r\nNet energy metering.,Energy\r\nAlcoholic beverage control: licensees.,Other\r\nAppliances: tankless water heater venting materials.,Other\r\nLocal agencies: accounting.,Other\r\nMortgages and deeds of trust: foreclosure.,Housing and Property\r\nPublic utilities.,Public Services\r\nDevelopmental services: Employment First Policy.,Labor and Employment\r\nCalifornia State Lottery.,Commerce\r\nPublic Safety Officers Procedural Bill of Rights Act: Brady lists.,Other\r\nHazardous waste: latex paint: collection facility.,Environmental\r\nContractors.,Labor and Employment\r\nProbation.,Crime\r\nCalifornia Global Warming Solutions Act of 2006: offsets.,Environmental\r\nInmate release: notification.,Crime\r\nRabies: vaccinations.,Health\r\nVehicles: high-occupancy vehicle lanes.,Transportation\r\nState surplus property.,Housing and Property\r\nCounty public defender.,Legal Issues\r\nDirector of Education: experimental work in education.,Education\r\nIllegal immigrants.,Legal Issues\r\nVehicles: driver license compact.,Transportation\r\nSales and use taxes.,Commerce\r\nLocal public employee organizations.,Labor and Employment\r\nProperty tax: tax-defaulted property.,Housing and Property\r\nEmployment: Labor Commissioner: hearings.,Labor and Employment\r\nCalifornia regional water quality control boards: boundaries.,Environmental\r\nSchool facilities: construction.,Education\r\nRenewable energy resources.,Energy\r\nTransitional housing.,Housing and Property\r\nPeace officers: training.,Public Services\r\nProperty taxation.,Housing and Property\r\nTenancies: unlawful detainer.,Other\r\nEducation technology: grants.,Education\r\nCommunity colleges: inmate education programs: computation of apportionments.,Education\r\nElectronic court reporting.,Technology and Communication\r\nEducation.,Education\r\nEmployment contracts.,Labor and Employment\r\nEconomic development: enterprise zones.,Other\r\nEmployment records: right to inspect.,Labor and Employment\r\nEmployment contract requirements.,Labor and Employment\r\nWorking hours.,Labor and Employment\r\nEducation.,Education\r\nAgriculture.,Agriculture and Food\r\nCharter schools: pupil health and safety.,Education\r\nHorse racing.,Recreation\r\nAlcoholic beverages.,Legal Issues\r\nTribal gaming.,Gambling and Gaming\r\nEnergy.,Energy\r\nWhistleblower protection.,Business and Consumers\r\nState budget.,\"Budget, Spending, and Taxes\"\r\nSatellite wagering.,Technology and Communication\r\nWhistleblower protection.,Business and Consumers\r\nAppeals: class actions.,Legal Issues\r\nHealth care facilities: financing.,Health\r\nRegulations: economic impacts review.,\"Budget, Spending, and Taxes\"\r\nUnemployment insurance benefits: claims: right to respond.,Labor and Employment\r\nRainwater Capture Act of 2011.,Environmental\r\nHigh-speed rail: power supply.,Transportation\r\nMortgages and deeds of trust: foreclosure.,Housing and Property\r\nSales and use taxes: wireless communication devices: bundled transactions.,\"Budget, Spending, and Taxes\"\r\nHorse racing: California-bred horses and parimutuel tickets.,Gambling and Gaming\r\nContempt: gang injunctions.,Crime\r\nPublic schools.,Education\r\nProperty taxation: refunds.,Housing and Property\r\nCommunity colleges: property tax revenues.,Education\r\nPublic officers: minors.,Family and Children Issues\r\nPublic postsecondary education: community colleges: expulsion hearing.,Education\r\nTarget Area Contract Preference Act.,Other\r\nHigh-speed rail: agricultural lands.,Agriculture and Food\r\nVote by mail ballots.,Campaign Finance and Election Issues\r\nCalifornia Case Management System.,Other\r\nSolid waste: single-use carryout bags.,Environmental\r\nVehicles: confidential home addresses: citations.,Transportation\r\nHealth facilities: security plans.,Health\r\nSafe Body Art Act.,Health\r\nMedi-Cal: managed care.,Health\r\nIncome taxes: credits: hiring credit.,\"Budget, Spending, and Taxes\"\r\nDymally-Alatorre Bilingual Services Act.,Other\r\nEnergy: piezoelectric transducers: study.,Energy\r\nJoint powers agreements: public agency: federally recognized Indian tribe.,Indigenous Peoples\r\nCriminal investigations: eyewitness identification: lineups.,Crime\r\nPublic officers: removal from office.,Labor and Employment\r\nLand use: high-speed rail: local master plan.,Transportation\r\nPrescription drugs.,Drugs\r\nEmployment: labor standards: consultation unit.,Labor and Employment\r\nCivil rights: homeless persons.,Civil Liberties and Civil Rights\r\nResidential care facilities for the elderly.,Senior Issues\r\nCourt facilities.,Judiciary\r\nSurplus line brokers.,Other\r\nMobilehomes.,Housing and Property\r\nAlcoholic beverage control: public schoolhouses.,Education\r\nEnvironmental quality: California Environmental Quality Act (CEQA): determination: dispute.,Environmental\r\nJuvenile offenders: obscene material.,Crime\r\nForensic evidence: rape kits.,Crime\r\nPublic schools.,Education\r\nCounterfeit marks.,Crime\r\nInverse condemnation: comparative fault.,Other\r\nCounty board of supervisors: vacancy: appointment.,Municipal and County Issues\r\nLocal agencies: redevelopment.,Other\r\nThe Leroy F. Greene School Facilities Act of 1998.,Education\r\nElder abuse.,Senior Issues\r\nCommunity college board members: absence from the state.,Education\r\nOcean resources: Ocean Protection Council: sustainable seafood.,Environmental\r\nRegulations: legislative validation: effective date.,Legal Issues\r\nSolid waste: diversion.,Environmental\r\nOffice of Planning and Research.,Other\r\nRedevelopment plans: environmental goals.,Environmental\r\nRedevelopment.,Other\r\nVehicles: State Highway Route 101: licensed carriers of livestock.,Transportation\r\nDisplaced Janitor Opportunity Act.,Labor and Employment\r\nRadiologist assistants.,Health\r\nEstates and trusts: property: wrongful taking.,Housing and Property\r\nParole: day treatment: crisis care.,Crime\r\nPublic works projects: local hiring policies.,Labor and Employment\r\nEqual access rights: construction-related access claims.,Legal Issues\r\nGroundwater management plans.,Environmental\r\nIncome and employment taxes: federal conformity: Health Care and Education Reconciliation Act of 2010.,Health\r\nCharter schools.,Education\r\nBenefit corporations.,Other\r\nCalifornia State Lottery.,Commerce\r\nRestitution: asset seizures: fraud and embezzlement.,Legal Issues\r\nHigh-speed rail: contracts: small businesses.,Transportation\r\nMinimum annual tax: exemptions.,\"Budget, Spending, and Taxes\"\r\nHealth care coverage: prescription drugs.,Drugs\r\nSmart grid deployment: smart meters.,Other\r\nAppliances: tankless water heater venting materials.,Other\r\nState motor vehicle fleet.,Transportation\r\nCalWORKs: time limits for aid.,Family and Children Issues\r\nShark fins.,Animal Rights and Wildlife Issues\r\nPharmacy.,Health\r\nBail Fugitive Recovery Persons Act.,Crime\r\nResources: watersheds.,Environmental\r\nDepartment of Transportation.,Transportation\r\nAir inspectors: administrative and civil penalties.,Other\r\nPublic postsecondary education: community colleges.,Education\r\nHigh-speed rail.,Transportation\r\nCriminal procedure: search warrants: tracking devices.,Crime\r\nBleeding disorders.,Health\r\nSpecial education: funding.,Education\r\nVehicles: identification cards: notification of renewal.,Transportation\r\nRalph M. Brown Act: posting agendas.,Other\r\nAdministrative Procedure Act: legislative intent.,Other\r\nEmployment regulation: volunteers.,Labor and Employment\r\nNewborn screening program.,Health\r\nState Fire Marshal: certification.,Other\r\nHuman remains: hydrolysis.,Other\r\nEmployment: paid sick days.,Labor and Employment\r\nCalFresh program: School Lunch Program: information.,Education\r\nPublic postsecondary education: joint-use facilities.,Education\r\nAdjustable rate mortgages: balloon payments.,Housing and Property\r\nPupil assessment: dual language immersion programs.,Education\r\nRegulations: adoption: disability access.,Health\r\nEmergency medical services.,Health\r\nElections: all-mailed ballot elections.,Campaign Finance and Election Issues\r\nPupils: homework assignments for suspended pupils.,Education\r\nHealth care coverage.,Health\r\nStructural pest control.,Animal Rights and Wildlife Issues\r\nTidelands and submerged lands: City and County of San Francisco: Pier 70.,Environmental\r\nState parks.,Environmental\r\nMental health: sexually violent predators: civil commitment proceedings.,Health\r\nInformation Practices Act of 1977: definitions.,Other\r\nState government: Infrastructure and Economic Development Bank.,State Agencies\r\nPawnbrokers.,Business and Consumers\r\nState regulations: review.,Other\r\nTransit fare evasion.,Transportation\r\nTransportation bond funds: transit system safety.,Transportation\r\nHealth care coverage: fertility preservation.,Health\r\nRegulations: effective date.,Legal Issues\r\nMedi-Cal: eligibility.,Health\r\nState finance: budget process.,\"Budget, Spending, and Taxes\"\r\nRetired public accountants.,Labor and Employment\r\nBirth certificates: issuance.,Health\r\nCounty penalties: forensic laboratories.,Science and Medical Research\r\nState Department of Public Health: dental program.,Health\r\nHealth care information.,Health\r\nInmates: release: notification.,Crime\r\nTransportation planning.,Transportation\r\nVehicles: material damage: definition.,Transportation\r\nRedevelopment.,Other\r\nPolitical Reform Act of 1974.,Campaign Finance and Election Issues\r\nProperty taxation: change in ownership.,Housing and Property\r\nTelecommunications: mobile telephony service: emergency contact information.,Technology and Communication\r\nCharter-party carriers of passengers: alcoholic beverages: open containers.,Legal Issues\r\nSchools: district employees.,Education\r\nState employees: scientists.,Labor and Employment\r\nProtective orders: early termination.,Reproductive Issues\r\nPublic employment: local public employee organizations.,Labor and Employment\r\nPublic works contracts: relief for bidders.,Other\r\nGuardianship.,Other\r\nLocal government: cities.,Municipal and County Issues\r\nCalifornia Community Colleges.,Education\r\nWrite-in candidates.,Campaign Finance and Election Issues\r\n\"Food and agriculture: fruits, nuts, and vegetables: inspections.\",Agriculture and Food\r\nHighway Route 59.,Transportation\r\nGardening or landscape maintenance services: regulation.,Environmental\r\nCommon interest developments: assessments.,Other\r\n\"Environment: Safe Drinking Water, Water Quality and Supply, Flood Control, River and Coastal Protection Bond Act of 2006.\",Environmental\r\nSchools: open enrollment.,Education\r\nControlled substances: overdose: punishment.,Legal Issues\r\nUnfair competition.,Labor and Employment\r\nVehicles: offstreet parking: electric vehicles.,Transportation\r\nElections: vote by mail ballots.,Campaign Finance and Election Issues\r\nPolitical Reform Act of 1974: campaign disclosure.,Campaign Finance and Election Issues\r\nHousing finance.,Housing and Property\r\nCommission on Correctional Peace Officer Standards and Training.,Other\r\nDevelopment: expedited permit review.,Other\r\nIncome taxes: tax tables.,\"Budget, Spending, and Taxes\"\r\nAlcoholic beverages: possession: Sacramento River.,Legal Issues\r\nState property: Harts Mill Forest Fire Station: transfer.,State Agencies\r\nSchool safety: comprehensive school safety plans.,Education\r\nHousing and community development: emergency shelters.,Housing and Property\r\nMinors: medical care: consent.,Health\r\nIncome and corporation taxes: gross income: exclusion: capital gains: exclusion: disaster loss carryovers: San Bruno gas explosion.,\"Budget, Spending, and Taxes\"\r\nUnemployment Insurance Code: penalties.,Labor and Employment\r\nPublic school employment.,Education\r\nProcessing write-in votes.,Campaign Finance and Election Issues\r\nSchool districts: County of Santa Barbara: special taxes.,Education\r\n\"Displaced public transit, solid waste handling, and recycling services employees.\",Transportation\r\nPayroll cards.,Labor and Employment\r\nRadiation control: health facilities and clinics: records.,Health\r\nLocal government renewable energy self-generation program.,Municipal and County Issues\r\nEnforcement of obligations: gambling debt.,Gambling and Gaming\r\nPublic postsecondary education: community colleges: extension program.,Education\r\nSafe routes to school.,Education\r\nElder and dependent adult abuse: mandated reporters.,Senior Issues\r\nPupil discipline: restraint and seclusion.,Education\r\nHealth care coverage: rate approval.,Health\r\nBail.,Crime\r\n\"Vacation of public streets, highways, and public service easements.\",Transportation\r\nUnemployment insurance: employer contributions.,Labor and Employment\r\nPublic officials: financial interests.,Commerce\r\nFish and game: steelhead trout.,Animal Rights and Wildlife Issues\r\nGroundwater.,Environmental\r\nPupil assessments.,Education\r\nArea agencies on aging: independent living centers: funding.,Senior Issues\r\nCivil rights: homeless persons.,Civil Liberties and Civil Rights\r\nRegulations: 5-year review and report.,Other\r\nPhysicians and surgeons.,Health\r\nVehicles: commercial vehicles: weight restriction: State Route 154.,Transportation\r\nVehicles: commercial vehicles: length restrictions: State Route 33.,Transportation\r\nDrinking water.,Environmental\r\nMedi-Cal: alcohol and drug screening and brief intervention services.,Health\r\nCalifornia Small Business Board.,Business and Consumers\r\nLand use: housing element.,Housing and Property\r\nSex offenders: social networking prohibition.,Crime\r\nState surplus personal property: centralized sale.,State Agencies\r\nDomestic violence: corporal injury.,Social Issues\r\nSales and use taxes.,Commerce\r\nVoting.,Campaign Finance and Election Issues\r\nCounty budgets: requests to the administrative officer or auditor.,\"Budget, Spending, and Taxes\"\r\nRecycling: electronic waste.,Environmental\r\nUnemployment compensation: employer: motion picture industry.,Labor and Employment\r\nSacramento-San Joaquin Delta: peripheral canal.,Environmental\r\nPublic contracts: prevailing wage requirements: violations.,Labor and Employment\r\nEmployment: minors.,Labor and Employment\r\nEmployment safety: hazardous materials.,Labor and Employment\r\nEmployment: workforce services.,Labor and Employment\r\nLocal agency formation.,Other\r\nPunitive damages.,Other\r\nVeterans: National Guard: California Interagency Council on Veteran Services and Programs.,Military\r\nTaxation: retirement plan distributions: penalties.,\"Budget, Spending, and Taxes\"\r\nCivil actions: costs.,Legal Issues\r\nProfessional limited liability partnerships.,Labor and Employment\r\nVentura County Watershed Protection District: indebtedness.,Environmental\r\nProperty taxation: assessor: disclosure: appraisal information.,\"Budget, Spending, and Taxes\"\r\nIncome taxes: voluntary contributions: Municipal Shelter Spay-Neuter Fund.,Animal Rights and Wildlife Issues\r\nConservation: State Coastal Conservancy.,Environmental\r\nResources: surface mining.,Environmental\r\nTransportation funds: capital improvement projects.,Transportation\r\nPregnant inmates and wards: least restrictive restraints.,Crime\r\nBusiness licensing: Business Master License Center.,Business and Consumers\r\nMetropolitan Transportation Commission.,Transportation\r\nEmissions of greenhouse gases: California Global Warming Solutions Act of 2006.,Environmental\r\nCorporations: distributions.,Business and Consumers\r\nAttorneys: annual membership fee.,Judiciary\r\nAlcoholic beverages: tied-house restrictions.,Legal Issues\r\nProgram of All-Inclusive Care for the Elderly.,Senior Issues\r\nDietetics.,Health\r\nHigh-speed rail.,Transportation\r\nPublic health: food access.,Health\r\nOpen meetings: local agencies.,Public Services\r\nElectronic waste: administration.,Technology and Communication\r\nAdministrative regulations: legislative review.,Legislative Affairs\r\nPublic works: volunteers.,Labor and Employment\r\nTenancy: victims of domestic violence.,Family and Children Issues\r\nFamily and medical leave.,Labor and Employment\r\nSales and use taxes.,Commerce\r\nOil and gas production: hydraulic fracturing.,Environmental\r\nCalifornia Department of Aging and Adult Services.,Senior Issues\r\nState highways: naming and designation by the Legislature.,Transportation\r\nChild care: CalWORKs recipients: rights.,Family and Children Issues\r\nCalifornia Financial Literacy Fund.,Commerce\r\nPrivacy: medical information.,Health\r\nSentencing.,Crime\r\nOakland Unified School District: audits.,Education\r\nVehicles: transfer of interest: power of attorney.,Transportation\r\nLocal government: housing.,Housing and Property\r\nEnergy: renewable resources: endangered species: environmental impact reports.,Energy\r\nNeedle exchange programs.,Health\r\nEnvironmental quality: California Environmental Quality Act: transportation impacts.,Environmental\r\nHunting and fishing.,Animal Rights and Wildlife Issues\r\nVehicles: public transit buses: illuminated signs.,Transportation\r\nHealth care coverage: telemedicine.,Health\r\nNeighborhood electric vehicles.,Transportation\r\nPrivate postsecondary education: unaccredited doctoral degree program.,Education\r\nParks and recreation: districts: repayment of indebtedness.,Environmental\r\nAmmunition.,Guns\r\nHigh-speed rail.,Transportation\r\nCourt interpreters.,Judiciary\r\nMassage therapy.,Health\r\nVehicle rental agreements.,Transportation\r\nCivil grand juries.,Judiciary\r\nAlcoholic beverage licensees: limited off-sale retail wine license.,Other\r\nCalifornia Organized Investment Network.,Other\r\nSex offender registration.,Crime\r\nDistance learning: definition.,Education\r\nVehicles: off-highway vehicle recreation: County of Inyo.,Transportation\r\nVeterans cemetery.,Military\r\nPublic postsecondary education: tuition and fees.,Education\r\nPupil safety: bullying.,Education\r\nPublic utilities: electric vehicle charging stations.,Transportation\r\nRegulations: legislative notice.,Legislative Affairs\r\nCalifornia State University: acquisition or replacement of motor vehicles.,Education\r\nVertebrate pest control: carbon monoxide.,Animal Rights and Wildlife Issues\r\nMilitary service: benefits.,Military\r\nSchool choice: G.I. Jr. Grant Program.,Military\r\nControlled substances.,Drugs\r\nWater discharges: mandatory minimum civil penalties.,Environmental\r\nLong-term care.,Health\r\nLocal public employee organizations: impasse procedures.,Labor and Employment\r\nPests: Asian citrus psyllid insect.,Animal Rights and Wildlife Issues\r\nClemency.,Other\r\nElections: statewide ballot pamphlet.,Campaign Finance and Election Issues\r\nBlue Ribbon Task Force on Public Transportation for the 21st Century.,Transportation\r\nInitiatives: paid circulators.,Other\r\nChild health.,Health\r\nSex offenders: registration of Internet accounts and identifiers.,Technology and Communication\r\nLocal government: historical property.,Housing and Property\r\nHealing arts: peer review.,Health\r\nCorporations: statement of information: Secretary of State.,Business and Consumers\r\nVital records: certified copies.,Other\r\nTaxation: vehicle license fees.,\"Budget, Spending, and Taxes\"\r\nElections: voter identification.,Campaign Finance and Election Issues\r\nDisorderly conduct.,Other\r\nMedi-Cal: subacute care program.,Health\r\nSentencing: methamphetamine.,Judiciary\r\nChild welfare services: education and training requirements.,Family and Children Issues\r\nEmergency medical services.,Health\r\nOffice of Multicultural Health: LGBT communities.,Sexual Orientation and Gender Issues\r\nVehicles: registration fees.,Transportation\r\nContinuing education.,Education\r\nTransportation funds.,Transportation\r\nEducation finance: Oakland Unified School District: sale of surplus property.,Education\r\nLand use: housing element.,Housing and Property\r\nTax Equity Allocation formula: County of Santa Clara.,\"Budget, Spending, and Taxes\"\r\nState property: inventory.,State Agencies\r\nState water policy.,Environmental\r\nLocal sales and use taxes: transaction and use taxes.,\"Budget, Spending, and Taxes\"\r\nAdoption.,Family and Children Issues\r\nFood and drugs: sale.,Agriculture and Food\r\nSenior nutrition benefits.,Senior Issues\r\nPortable electronics insurance.,Technology and Communication\r\nCivil service: employee hearings.,Labor and Employment\r\nJuvenile offenders.,Crime\r\nVehicles: motorcycles: safety helmets: exceptions.,Transportation\r\nBergeson-Peace Infrastructure and Economic Development Bank Act.,Other\r\nAir pollution permit streamlining: report,Environmental\r\nNonprobate transfers: revocable transfer upon death deeds.,Legal Issues\r\nState employment: salary freeze.,Labor and Employment\r\nInfrastructure and Economic Development Bank.,Other\r\nMissing persons: mobile telephone location.,Technology and Communication\r\nProstitution: human trafficking: expungement.,Crime\r\nProperty taxation: welfare exemption: nature resources and open-space lands.,Environmental\r\nSecondhand goods.,Business and Consumers\r\nInsurance: risk retention.,Insurance\r\nCrimes involving hidden recordings: statute of limitations.,Crime\r\nPolitical Reform Act of 1974: lobbyists.,Campaign Finance and Election Issues\r\nLocal planning: infill and transit-oriented development.,Transportation\r\nProperty taxation: administration: rebuttable presumption: owner-occupied.,\"Budget, Spending, and Taxes\"\r\nRecycling: beverage containers.,Environmental\r\nHealth care coverage: California Health Benefit Exchange.,Health\r\nHealth care programs: provider reimbursement rates.,Health\r\nChild Abuse Central Index.,Family and Children Issues\r\nCigarettes and tobacco products: retailers: licenses.,Labor and Employment\r\nSpecial education: funding.,Education\r\nHealth care coverage: acupuncture.,Health\r\nPublic contracts: uniform construction cost accounting provisions: alternative procedures.,Other\r\nRenewable energy resources: solar energy systems.,Energy\r\nUtility rates: costs and rate increases.,Energy\r\nEnergy: public goods charge.,Energy\r\nUtility service: undergrounding of electrical and communications facilities.,Energy\r\nPersonal income taxes: exclusions: rollovers.,\"Budget, Spending, and Taxes\"\r\nPublic social services: benefit requirements.,Public Services\r\nPublic welfare benefits: time limit.,Other\r\nDependency proceedings: public access.,Other\r\nCalWORKs eligibility: periodic drug testing.,Family and Children Issues\r\nFirefighting.,Public Services\r\nPupil records: privacy rights.,Education\r\nCharter schools: funding.,Education\r\nPersonal services contracts.,Labor and Employment\r\nOnsite wastewater disposal.,Environmental\r\nCalifornia Water Plan.,Environmental\r\nPupils: cyber bullying.,Education\r\nPupil instruction: online programs.,Education\r\nContinuing care retirement communities: contracts.,Senior Issues\r\nDepartment of Alcoholic Beverage Control: report.,Other\r\nDocuments: notaries public: solicitations.,Other\r\nFreeway construction.,Transportation\r\nTidelands and submerged lands: sea level action plan.,Environmental\r\nElective office: military service.,Military\r\nSex offenders: CAL E-STOP.,Crime\r\nElectronic benefits transfer system.,Technology and Communication\r\nSex offenders: public information.,Crime\r\nAlcoholic beverages: advertising.,Commerce\r\nHigh-speed rail.,Transportation\r\nOptometrists.,Health\r\nPublic health: medical waste.,Health\r\nState Capitol Sustainability Task Force.,State Agencies\r\nPublic employment: benefits.,Labor and Employment\r\nGovernmental reorganization: tax functions.,Government Reform\r\nEmergency telephone systems.,Public Services\r\nCommon interest developments: requests for documents: fees.,Other\r\nVehicles: unlicensed drivers.,Transportation\r\nHealth facilities: licensure.,Health\r\nAlcoholic beverages: tied-house restrictions.,Legal Issues\r\nControlled substances: unlawful use.,Legal Issues\r\nGambling.,Gambling and Gaming\r\nPublic contracts: fixed price contracts: sales and use taxes rate changes: transactions and use taxes.,\"Budget, Spending, and Taxes\"\r\nPublic employee benefits: audits.,Labor and Employment\r\nState finance: debt reduction.,State Agencies\r\nHealth insurance.,Health\r\nSolid waste: tire recycling.,Environmental\r\nDependent children: birth certificates.,Family and Children Issues\r\nHealth care coverage: California Health Benefit Exchange.,Health\r\nInsurance producers: reverse mortgages.,Insurance\r\nPublic postsecondary education: smoke-free campuses.,Education\r\nPrivate postsecondary education: schools of cosmetology.,Education\r\nJoint powers agreement: public agencies.,Public Services\r\nCommercially sexually exploited minors.,Family and Children Issues\r\nDivision of Juvenile Justice: facilities: closures.,Family and Children Issues\r\nPresidential primary: election date.,Campaign Finance and Election Issues\r\nBoards and commissions: time reporting.,Other\r\nOnline education: school attendance.,Education\r\nElectronic court reporting.,Technology and Communication\r\nUnemployment compensation: disability benefits: paid family leave.,Labor and Employment\r\nCommon interest developments.,Other\r\nCommon interest developments.,Other\r\nFirearms.,Guns\r\nSales and use taxes: exemptions: fuel and petroleum products: air common carriers.,\"Budget, Spending, and Taxes\"\r\nFirearms: Private Patrol Operators: registration and assignment.,Guns\r\nSex offenders: punishment: parole.,Crime\r\nTeacher salaries.,Labor and Employment\r\nInstructional programs: State Seal of Biliteracy.,Other\r\nVehicles: automated traffic enforcement system.,Transportation\r\nVehicle rental contracts.,Transportation\r\nSolid waste: multifamily dwellings.,Environmental\r\nVehicles: firefighting equipment.,Transportation\r\nProperty taxation: fee: preparation of certificate.,\"Budget, Spending, and Taxes\"\r\nMinimum annual tax: exemptions: corporations.,Business and Consumers\r\nPublic postsecondary education facilities: Kindergarten-University Public Education Facilities Bond Act of 2012.,Education\r\nRural hospitals: physician services.,Health\r\nLand use: housing element.,Housing and Property\r\nPeace officers: firearms.,Guns\r\nEnvironment: CEQA exemption: recycled water pipeline.,Environmental\r\nEmployment: flexible work schedules.,Labor and Employment\r\nMinimum annual tax: exemption: single member limited liability company.,\"Budget, Spending, and Taxes\"\r\nCalWORKs: maximum aid payments.,Family and Children Issues\r\nLocal government: contracts.,Municipal and County Issues\r\nCommunity colleges: Economic and Workforce Development Program.,Education\r\nSecondhand goods.,Business and Consumers\r\nPupil nutrition: federal School Breakfast Program participation.,Education\r\nElections: new citizens.,Campaign Finance and Election Issues\r\nEmployee Housing Act: agricultural land use.,Labor and Employment\r\nTobacco.,Drugs\r\nFoster youth: identity theft.,Family and Children Issues\r\nPharmacy: clinics.,Health\r\nSchool facilities: security locks.,Education\r\nDistance learning.,Education\r\nPublic postsecondary education: community colleges: temporary faculty.,Education\r\nIncome tax: health savings accounts.,Health\r\nTaxation: cancellation of indebtedness: mortgage debt forgiveness.,Housing and Property\r\nState: gifts of real and personal property.,Housing and Property\r\nFalse advertising.,Legal Issues\r\nVehicles: registration fees.,Transportation\r\nCharter schools: authorization: petition.,Education\r\nDevelopmental services: regional centers.,Public Services\r\nFoster care: insurance.,Insurance\r\nElectricity: self-generation incentive program.,Energy\r\nProperty tax: exclusion from newly constructed: active solar energy system.,\"Budget, Spending, and Taxes\"\r\nHome furnishings: inspections: compensation.,Other\r\nCivil service: employee hearings.,Labor and Employment\r\nEmployment: compensation.,Labor and Employment\r\nPrisoners.,Crime\r\nIn-Home Supportive Services program.,Senior Issues\r\nFood labeling: genetically engineered food.,Agriculture and Food\r\nMental health: involuntary commitment: transportation.,Health\r\nSex offenders: registration.,Crime\r\nSexually violent offenders: notification of offender registration by law enforcement.,Crime\r\nGender.,Sexual Orientation and Gender Issues\r\nDomestic work employees.,Labor and Employment\r\nEnvironment: CEQA exemption: roadway improvement.,Environmental\r\nTheft: motor vehicle: penalties.,Crime\r\nDepartment of Transportation: environmental review process: federal pilot program.,Transportation\r\nState government: economic development.,Commerce\r\nElections: voter registration.,Campaign Finance and Election Issues\r\nHorse racing: quarter horse racing.,Gambling and Gaming\r\nCrime victims: restitution: fine.,Crime\r\nPupil rights: bullying.,Education\r\nHuman trafficking: minors.,Family and Children Issues\r\nTaxation: property tax delinquency and sales.,Housing and Property\r\nDisposition of remains: authorized agent.,Health\r\nMental health: state hospitals: safety.,Health\r\nCommunity colleges: student financial aid: pilot program.,Education\r\nLocal government: organization.,Municipal and County Issues\r\nCalifornia Solar Initiative.,Energy\r\nState agencies: sunset review.,State Agencies\r\nCrimes: felonies.,Crime\r\nCertificated employees: evaluation and assessment.,Labor and Employment\r\nPublic employees: rights.,Labor and Employment\r\nWorkforce development: Lifelong Learning Accounts Initiative Program.,Labor and Employment\r\nPhysicians and surgeons: direct employment.,Health\r\nHealth facilities: seismic safety.,Health\r\nHousing and community development: mobilehome parks.,Housing and Property\r\nDebtor exemptions: bankruptcy.,\"Budget, Spending, and Taxes\"\r\nElections: City of Bell.,Campaign Finance and Election Issues\r\nThe California Building Standards Commission.,Housing and Property\r\nEnvironment: CEQA exemption: housing projects.,Environmental\r\nPublic employment benefits: state safety members.,Labor and Employment\r\nPrivileged communications.,Other\r\nVessels: emission reduction control.,Environmental\r\nPublic water systems.,Environmental\r\nCriminal justice realignment.,Legal Issues\r\nPublic Utilities Commission: report.,Other\r\nEducation.,Education\r\nGeneral Fund: fines.,Other\r\nEducation finance.,Education\r\nPublic contracts: competitive bidding: best value.,Other\r\nCalWORKs eligibility: fraudulent representations: fines.,Labor and Employment\r\nPublic resources.,Public Services\r\nEmployment: drayage truck operators.,Labor and Employment\r\nHigh-speed rail.,Transportation\r\nHigh-speed rail.,Transportation\r\nWater replenishment districts.,Environmental\r\nMarriage and family therapy: interns and trainees: advertisements.,Legal Issues\r\nTransportation omnibus bill.,Transportation\r\nRegulatory boards: limitations periods.,Other\r\nCalWORKs and CalFresh: reporting.,Agriculture and Food\r\nRecycling: electronic waste.,Environmental\r\nRetirement systems: solvency.,Labor and Employment\r\nCommunity colleges: full-time faculty hiring.,Education\r\nPublic cemetery districts: nonresident burial.,Public Services\r\nEducation: school districts.,Education\r\nMedi-Cal: clinical laboratory and laboratory services.,Health\r\nHealth care services.,Health\r\nPersonal income tax: voluntary contributions: California Sea Otter Fund.,\"Budget, Spending, and Taxes\"\r\nProfessional employer organizations.,Labor and Employment\r\nState tax agency consolidation.,\"Budget, Spending, and Taxes\"\r\nSales and use taxes: exemption: manufacturing.,\"Budget, Spending, and Taxes\"\r\nBudget Act of 2011.,\"Budget, Spending, and Taxes\"\r\nCalifornia Pollution Control Financing Authority: Capital Access Loan Program.,Environmental\r\nSafe Drinking Water State Revolving Fund.,Environmental\r\nIncome taxes: credits: Mojave Air and Space Port Region.,\"Budget, Spending, and Taxes\"\r\nElections: official canvass: manual tally.,Campaign Finance and Election Issues\r\nFinance lenders.,Commerce\r\nPublic works: prevailing wages.,Public Services\r\nPrevailing wages.,Labor and Employment\r\nCalifornia Children and Families Act of 1998: use of funds.,Family and Children Issues\r\nCourt transcripts.,Judiciary\r\nState government: licenses: California Licensing and Permit Center.,State Agencies\r\nMediation and counseling services: discipline and immunity.,Health\r\nOutdoor advertising.,Commerce\r\nEnvironmental quality: CEQA: public assistance and information program: recommendations: review of transit-oriented development.,Environmental\r\nProfessional fiduciaries.,Commerce\r\nBudget Bill: public availability.,Legislative Affairs\r\nLong-term care insurance.,Health\r\nRelative to the Armenian Cathedral Complex.,Other\r\nRelative to California Arbor Week.,Environmental\r\nRelative to Teen Dating Violence Awareness and Prevention Month.,Family and Children Issues\r\nRelative to Lupus Awareness Month.,Resolutions\r\nRelative to Campus Safety Month.,Resolutions\r\nRelative to a Day of Remembrance.,Resolutions\r\nRelative to Rare Disease Day.,Health\r\nRelative to the Lunar New Year 4709 celebration.,Resolutions\r\nRelative to Multiple Sclerosis Awareness Week.,Health\r\nRelative to Colorectal Cancer Awareness Month.,Health\r\nRelative to Sexual Assault Awareness Month and Denim Day California.,Crime\r\nRelative to Child Abuse Prevention Month.,Resolutions\r\nRelative to Boy Scouts of America.,Family and Children Issues\r\nRelative to Rare Disease Day.,Health\r\nRelative to California Public Safety Telecommunicators Week.,Technology and Communication\r\nRelative to chronic obstructive pulmonary disease awareness.,Health\r\nRelative to West Nile Virus and Mosquito and Vector Control Awareness Week.,Health\r\nRelative to Foster Care Month.,Family and Children Issues\r\nRelative to the United States Constitution and the Declaration of Independence.,Legislative Affairs\r\nRelative to California Holocaust Memorial Week.,Resolutions\r\nRelative to National Multicultural Cancer Awareness Week.,Resolutions\r\nRelative to the American flag.,Resolutions\r\nRelative to Cinco de Mayo Week.,Resolutions\r\nRelative to Asian and Pacific Islander American Heritage Month.,Other\r\nRelative to the Detective Monty L. Conley and Detective Joe R. Landin Memorial Highway.,Transportation\r\nRelative to a Day of Remembrance.,Resolutions\r\nRelative to Campus Safety Month.,Resolutions\r\nRelative to Multiple Sclerosis Awareness Week.,Health\r\nRelative to Black History Month.,Civil Liberties and Civil Rights\r\nRelative to Spay Day USA 2011.,Resolutions\r\nRelative to Water Awareness Month.,Resolutions\r\nRelative to California School Bullying Prevention Awareness Month.,Education\r\nRelative to Colorectal Cancer Awareness Month.,Health\r\nRelative to Child Abuse Prevention Month.,Resolutions\r\nRelative to arts education.,Resolutions\r\nRelative to chronic obstructive pulmonary disease.,Health\r\nRelative to Cinco de Mayo Week.,Resolutions\r\nRelative to Earth Hour.,Health\r\nRelative to Teen Dating Violence Awareness and Prevention Month.,Family and Children Issues\r\nRelative to Korean-American Day.,Resolutions\r\nRelative to Read Across America Day.,Education\r\nRelative to the CHP Officer Earl Scott Memorial Highway.,Transportation\r\nRelative to child sexual abuse.,Health\r\nRelative to the Officer Richard T. Steed Memorial Highway.,Transportation\r\nRelative to ethnic studies.,Other\r\nRelative to National Surgical Technologist Week.,Health\r\nRelative to Asian and Pacific Islander American Heritage Month.,Other\r\nRelative to the CHP Officer Justin W. McGrory Memorial Highway.,Transportation\r\nRelative to the Joint Legislative Committee on Emergency Management.,Legislative Affairs\r\nRelative to California Holocaust Memorial Week.,Resolutions\r\n\"Relative to Martin Luther King, Jr. Day.\",Resolutions\r\nRelative to Irish American Heritage Month.,Other\r\nRelative to Neurofibromatosis Awareness Month.,Resolutions\r\nRelative to the American flag.,Resolutions\r\nRelative to Buy California Small Business First Month.,Business and Consumers\r\nRelative to human trafficking.,Crime\r\nRelative to the 23rd Annual State Scientist Day.,Resolutions\r\nRelative to American Heart Month and Wear Red Day.,Health\r\nRelative to Yellow Ribbon Week.,Other\r\nRelative to Red Ribbon Week.,Resolutions\r\n\"Relative to Martin Luther King, Jr. Day.\",Resolutions\r\nRelative to Cinco de Mayo Week.,Resolutions\r\nRelative to Centennial Ronald Reagan Day.,Resolutions\r\nRelative to Korean-American Day.,Resolutions\r\nRelative to American Heart Month and Wear Red Day.,Health\r\nRelative to human trafficking.,Crime\r\nRelative to Ronald Reagan Day.,Resolutions\r\nRelative to Boy Scouts of America.,Family and Children Issues\r\nRelative to the California Law Revision Commission.,Legal Issues\r\nRelative to undocumented criminals.,Crime\r\nRelative to California wines.,Agriculture and Food\r\nRelative to taxation.,\"Budget, Spending, and Taxes\"\r\nArmenian Genocide: Day of Remembrance.,Resolutions\r\nRelative to the federal Gulf of the Farallones and Cordell Bank National Marine Sanctuaries Boundary Modification and Protection Act.,Environmental\r\nRelative to the Armenian Genocide.,Other\r\nRelative to economic development.,Commerce\r\nRelative to taxation.,\"Budget, Spending, and Taxes\"\r\nRelative to the Transportation Infrastructure Finance and Innovation Act.,Transportation\r\nRelative to mortgages.,Housing and Property\r\nRelative to transportation.,Transportation\r\nRelative to Filipino veterans.,Other\r\nRelative to the Armenian Genocide.,Other\r\nRelative to the USS Iowa.,Military\r\nRelative to a public alert and warning system.,Public Services\r\nHealing arts.,Health\r\nTransportation.,Transportation\r\nHealth.,Health\r\nAthlete agents: conflicts of interest.,Other\r\nDevelopmental services.,Health\r\nTaxation: administration.,\"Budget, Spending, and Taxes\"\r\nEducation finance.,Education\r\nPublic resources.,Public Services\r\nHealth.,Health\r\nTelecommunications: customer privacy.,Technology and Communication\r\nPublic safety.,Senior Issues\r\nCommunity redevelopment.,Municipal and County Issues\r\nState regulations: review.,Other\r\nEducation finance.,Education\r\nState government: meetings.,State Agencies\r\nPublic safety.,Senior Issues\r\nState government.,State Agencies\r\nLabor representatives: elections.,Campaign Finance and Election Issues\r\nHuman services.,Public Services\r\nCriminal justice realignment.,Legal Issues\r\nJuveniles.,Family and Children Issues\r\nPublic safety: snow sport helmets.,Recreation\r\nSpecial elections.,Campaign Finance and Election Issues\r\nCalifornia Community Colleges: board of governors.,Education\r\nBear Lake Reservoir: recreational use.,Public Services\r\nState claims.,State Agencies\r\nPhysical education: California Interscholastic Federation.,Education\r\nVehicles: automated traffic enforcement systems.,Transportation\r\nNewborn screening program.,Health\r\nInmates: medical treatment.,Health\r\nSurface mining: idle mines.,Environmental\r\nElections: vote by mail ballot processing.,Campaign Finance and Election Issues\r\nLocal government: reorganization.,Municipal and County Issues\r\nThe State Water Resources Law of 1945.,Environmental\r\nSales and use taxes: wireless communication devices: bundled transactions.,\"Budget, Spending, and Taxes\"\r\nOrganized camps.,Recreation\r\nElections: special: vote by mail.,Campaign Finance and Election Issues\r\nLocal government: omnibus bill.,Transportation\r\nLand use: mitigation lands: nonprofit organizations.,Other\r\nPharmacy: clinics.,Health\r\nPublic utilities.,Public Services\r\nRegistered warrants.,Other\r\nRecycling: reusable bags.,Environmental\r\nCivil rights: language restrictions.,Civil Liberties and Civil Rights\r\nPublic records.,Public Services\r\nCalifornia Pollution Control Financing Authority: Capital Access Loan Program.,Environmental\r\nState mandates: claiming instructions.,Other\r\nState mandates: reimbursement.,Other\r\nHuman trafficking.,Crime\r\nMarriage.,Family and Children Issues\r\nWells: reports: public availability.,Public Services\r\nPublic employees: pensions: forfeiture.,Labor and Employment\r\nInsurance.,Insurance\r\nIncome taxes: credits: film: extension.,Recreation\r\nPublic contracts: prohibitions: discrimination based on gender or sexual orientation.,Sexual Orientation and Gender Issues\r\nMaintenance of the codes.,Other\r\nNatural community conservation plans.,Environmental\r\nMedical marijuana.,Health\r\nElections.,Campaign Finance and Election Issues\r\nEmergency youth shelter facilities.,Family and Children Issues\r\nOil spill prevention and administrative fee.,Environmental\r\nIncome taxes: credits: film: extension.,Recreation\r\nState funds: registered warrants.,State Agencies\r\nPupils: foster children: special education.,Education\r\nOptometry.,Health\r\nProfessional fiduciaries.,Commerce\r\n\"California Runaway, Homeless, and Exploited Youth Act.\",Family and Children Issues\r\nProfessions and vocations.,Labor and Employment\r\nProfessions and vocations: regulatory boards.,Labor and Employment\r\nMassage therapy.,Health\r\nClaims against the state: appropriation.,Legal Issues\r\nLand use: general plan: safety element: fire hazard impacts.,Health\r\nVehicles: toll highways or vehicular crossings: evading toll payments: penalties.,Transportation\r\nPaternity.,Family and Children Issues\r\nEnergy: energy conservation assistance.,Energy\r\nOfficial medical fee schedule: physician services.,Health\r\nAthletic trainers.,Other\r\nSchool facilities funding: high-performance schools.,Education\r\nMedical marijuana: qualified patients and primary caregivers: employment discrimination.,Labor and Employment\r\nPupils: teen dating violence prevention.,Education\r\nInsurance: fraud prevention.,Insurance\r\nInterrogation: electronic recordation.,Technology and Communication\r\nVehicles: automated traffic enforcement systems.,Transportation\r\nVehicles: electronic wireless communications devices: prohibitions.,Transportation\r\nCalifornia Community Colleges: board of governors.,Education\r\nHealth care coverage.,Health\r\nVehicles: traffic violator schools.,Transportation\r\nSchool facilities: state planning priorities.,Education\r\nPupil assessments: public hearings.,Education\r\nCareer technical education: expansion: local advisory committees.,Education\r\nScience education: science curriculum.,Education\r\nPostsecondary education: textbooks.,Education\r\nNatural resources: Cache Creek Resource Management Plan.,Environmental\r\nEmployment: labor standards: consultation unit.,Labor and Employment\r\nCredit cards.,Commerce\r\nCommute benefit policies.,Other\r\nPublic contracts: bid preferences: solar photovoltaic system.,Technology and Communication\r\nPeace officers.,Other\r\nVessels.,Transportation\r\nMeal periods.,Labor and Employment\r\nCalifornia Community Colleges: board of governors.,Education\r\nSchool districts.,Education\r\nDevelopmental services.,Health\r\nAlcoholic beverage control: licensees: returns.,Other\r\nState Auditor.,State Agencies\r\nJoint Legislative Committee on Job Creation and Economic Development.,Legislative Affairs\r\nState Budget.,\"Budget, Spending, and Taxes\"\r\nInstructional materials.,Other\r\nElections: payment of expenses.,Campaign Finance and Election Issues\r\nAgriculture.,Agriculture and Food\r\nSales and use taxes.,Commerce\r\nCommunity redevelopment.,Municipal and County Issues\r\nElectrical rates.,Technology and Communication\r\nAlcoholic beverages: instruction: tastings.,Other\r\nSurface mining: idle mines.,Environmental\r\nLong-term care insurance.,Health\r\nEmployment: meal periods.,Labor and Employment\r\nDivision of Labor Statistics and Research.,Labor and Employment\r\nInsurance.,Insurance\r\nInternet gambling.,Gambling and Gaming\r\nVehicles: bicycles: passing distance.,Transportation\r\nFurniture: flammability standards.,Other\r\nMortgages and deeds of trust: foreclosure.,Housing and Property\r\nMortgages and deeds of trust: foreclosure.,Housing and Property\r\nCrime victims: restitution.,Crime\r\n\"Partnership academies: Clean Technology and Renewable Energy Job Training, Career Technical Education, and Dropout Prevention Program.\",Education\r\nPhysicians and surgeons.,Health\r\nDonahoe Higher Education Act.,Education\r\nVoter-approved local assessment: vehicles.,Campaign Finance and Election Issues\r\nEnergy: State Energy Resources Conservation and Development Commission: natural gas.,Energy\r\nState budget.,\"Budget, Spending, and Taxes\"\r\nCommon interest developments.,Other\r\nIn-Home Supportive Services program.,Senior Issues\r\nPublic lands: general leasing law: littoral landowners.,Housing and Property\r\nChild welfare services.,Family and Children Issues\r\nNursing.,Labor and Employment\r\nPostsecondary education: textbooks.,Education\r\nMarriage licenses: vital records: fees: domestic violence: Solano County.,Legal Issues\r\nTimber harvesting plans.,Environmental\r\nMaternity services.,Reproductive Issues\r\nPersonal income tax: rates.,\"Budget, Spending, and Taxes\"\r\nHealth facilities.,Health\r\nIncome taxation: net operating losses: fraudulent investment arrangement losses.,\"Budget, Spending, and Taxes\"\r\nEmployment: meal periods.,Labor and Employment\r\nProfessions and vocations.,Labor and Employment\r\nProfessions and vocations.,Labor and Employment\r\nHorse racing.,Recreation\r\nCommunity redevelopment commission.,Public Services\r\nRedevelopment.,Other\r\nRenewable energy: Department of Fish and Game: expedited permitting.,Energy\r\nLocal government: reorganization.,Municipal and County Issues\r\nSchools: emergency medical assistance: administration of epilepsy medication.,Education\r\nElections: vote by mail ballot processing.,Campaign Finance and Election Issues\r\nSale and use tax.,\"Budget, Spending, and Taxes\"\r\nPetitions: compensation for signatures.,Legislative Affairs\r\nInsurers: examination fees.,Other\r\nProperty tax revenue allocations: Cordelia Fire Protection District.,Housing and Property\r\nSchool districts: Open Enrollment Act.,Education\r\nCommunity care facilities.,Health\r\nPublic contracts: bid preferences: solar photovoltaic system.,Technology and Communication\r\nIn-Home Supportive Services.,Senior Issues\r\nCongregate living health facilities.,Health\r\nHazardous materials: green chemistry.,Environmental\r\nSex offenders: parole.,Crime\r\nPolitical Reform Act of 1974: gifts.,Campaign Finance and Election Issues\r\nConsumer transactions: public social services: unreasonable fees.,Public Services\r\nPublic postsecondary education: student fee policy.,Education\r\nJudiciary: demographic data.,Judiciary\r\nBallots: identifying information.,Campaign Finance and Election Issues\r\nLand use: zoning regulations.,Environmental\r\nPublic postsecondary education.,Education\r\nThe Controller.,Other\r\nFamily law.,Legal Issues\r\nCivil actions: jurisdiction.,Legal Issues\r\nMechanics liens.,Other\r\nValidations.,Other\r\nValidations.,Legal Issues\r\nValidations.,Other\r\nLocal government: omnibus bill.,Transportation\r\nVeterans affairs: administration.,Military\r\nState militia: Adjutant General: duties.,Military\r\nElections: vote by mail ballots.,Campaign Finance and Election Issues\r\nMortgage loans.,Housing and Property\r\nFood facilities: menu labeling.,Agriculture and Food\r\nFlexible purpose corporations.,Business and Consumers\r\nCounty employee retirement: boards.,Senior Issues\r\nLocal alternative transportation improvement program.,Municipal and County Issues\r\nVoter registration: paid registration activities.,Campaign Finance and Election Issues\r\nClaim against the state: appropriation.,Legal Issues\r\nState claims.,State Agencies\r\nCommon interest developments: electric vehicle charging stations.,Transportation\r\nLong-term care: assessment and planning.,Health\r\nPawnbrokers.,Other\r\nInfrastructure financing districts: voter approval: repeal.,Other\r\nInvasive aquatic species: mussels.,Environmental\r\nPublic utilities: intrastate natural gas pipeline safety.,Environmental\r\nCommissioner of Financial Institutions.,Commerce\r\nCommissioner of Financial Institutions.,Commerce\r\nHigh-speed rail.,Transportation\r\nLife insurance: group policies.,Insurance\r\nSmall claims court: jurisdiction.,Judiciary\r\nMaternity services.,Reproductive Issues\r\nVoter-approved local assessment: vehicles.,Campaign Finance and Election Issues\r\nPublic contracts: Department of Water Resources.,Environmental\r\nCalifornia Pollution Control Financing Authority: Capital Access Loan Program.,Environmental\r\nBusiness and professions: licensure.,Business and Consumers\r\nIncome Taxes: corporate.,\"Budget, Spending, and Taxes\"\r\nEnergy: renewable energy resources.,Energy\r\nBusiness license taxation.,Business and Consumers\r\nRegulatory boards: healing arts.,Arts and Humanities\r\nInstructional materials: legislative intent.,Education\r\nEmergency services and care.,Public Services\r\nGoods Movement Emission Reduction Program.,Environmental\r\nWater conservation districts: reduction in number of directors.,Environmental\r\nCalifornia Public Records Act.,Public Services\r\nCalifornia Global Warming Solutions Act of 2006: agriculture.,Environmental\r\nAthlete agents.,Recreation\r\nTeacher credentialing.,Education\r\nPersonal information: privacy.,Legal Issues\r\nEnvironment: California Environmental Quality Act (CEQA).,Environmental\r\nSocial networking Internet Web sites: privacy: minors.,Technology and Communication\r\nHigh school graduation: courses required.,Education\r\nCalifornia Global Warming Solutions Act of 2006: offsets.,Environmental\r\nMinors: fitness hearing.,Legal Issues\r\nForensic specimens: offenders.,Crime\r\nCorrectional facilities: wireless communication devices.,Crime\r\nHealth care coverage: acquired brain injuries.,Health\r\nMarriage: putative spouses.,Family and Children Issues\r\nHealth care coverage: breast cancer.,Health\r\nMedi-Cal: California Medical Assistance Commission.,Health\r\nBodily injury: offense.,Health\r\nHigher education: employees.,Education\r\nChild custody: deceased parent.,Legal Issues\r\nIndividual retirement accounts.,Labor and Employment\r\nWells: reports: public availability.,Public Services\r\nRecreational activities: skateboard parks.,Recreation\r\nPolitical Reform Act of 1974: committees.,Campaign Finance and Election Issues\r\n\"Education employment: termination, reappointment, and opportunity for substitute service.\",Education\r\nWater supply planning: renewable energy plants.,Environmental\r\nSchool attendance: interdistrict attendance.,Education\r\nState employees: compensation.,Labor and Employment\r\nLeave of absence: organ donation.,Labor and Employment\r\nMultiple-party accounts.,Other\r\nHealing arts.,Health\r\nInsurance: regulation of insurers.,Insurance\r\nPublic safety: ski resorts.,Other\r\nBusiness: self-service storage facilities.,Business and Consumers\r\nVehicles: electronic wireless communications devices: prohibitions.,Transportation\r\nPupil assessments: public hearings.,Education\r\nCareer technical education: expansion: local advisory committees.,Education\r\nScience education: science curriculum.,Education\r\nEducation: curriculum.,Education\r\nReal property: marketable title.,Housing and Property\r\nMassage therapy instruction: fraud: criminal prosecutions.,Health\r\nRedevelopment.,Other\r\nConditional sale contracts.,Other\r\nLocal government: independent special districts.,Other\r\nVehicles: automated traffic enforcement systems.,Transportation\r\nNeighborhood electric vehicles.,Transportation\r\nBail.,Crime\r\nPayment bonds: laborers.,Labor and Employment\r\nPublic postsecondary education: community colleges: site acquisitions.,Education\r\nCriminal street gangs: injunction: petition for exemption.,Crime\r\nEmployment: pregnancy or childbirth leave.,Labor and Employment\r\nTelecommunications: universal service.,Technology and Communication\r\nFood safety: food handlers.,Agriculture and Food\r\nElections: all-mailed ballot elections: San Diego County.,Campaign Finance and Election Issues\r\nSatellite wagering: minisatellite facilities.,Technology and Communication\r\nAccountancy.,\"Budget, Spending, and Taxes\"\r\nJoint Legislative Audit Committee.,Legislative Affairs\r\nCrime.,Crime\r\nFirearms.,Guns\r\nProbation.,Crime\r\nFirearms.,Guns\r\nEphedrine and pseudoephedrine.,Health\r\nMeal periods: exemption: transportation industry.,Transportation\r\nKings River Fisheries Management Program.,Animal Rights and Wildlife Issues\r\nCivil service: rejected probationer: investigation.,Labor and Employment\r\nMeal and rest periods: exceptions.,Labor and Employment\r\nAlcoholic beverages: definitions: rectifiers.,Other\r\nPublic social services: hearings.,Public Services\r\nState employees: memorandum of understanding.,Labor and Employment\r\nRetirement.,Labor and Employment\r\nBeverage container recycling.,Environmental\r\nCentral California Railroad Authority.,Transportation\r\nCourt records: public access.,Judiciary\r\nElections: procedure.,Campaign Finance and Election Issues\r\nCounty penalties: forensic laboratories.,Science and Medical Research\r\nElder and dependent adult abuse.,Senior Issues\r\nRetail tobacco licenses.,Legal Issues\r\nVehicles: speed limits.,Transportation\r\nElections: statewide ballot pamphlet.,Campaign Finance and Election Issues\r\nMedi-Cal: hospitals: quality assurance fee.,Health\r\nEmergency room crowding.,Public Services\r\nCriminal street gangs,Crime\r\nRemote caller bingo.,Recreation\r\nEnergy: efficiency.,Energy\r\nBusiness licenses taxation.,Business and Consumers\r\nElections: vote by mail ballots.,Campaign Finance and Election Issues\r\nChiropractors.,Health\r\nRegulations: economic analysis.,Other\r\nEnvironmental quality: California Environmental Quality Act (CEQA).,Environmental\r\nEducation employment: certificated employees.,Education\r\nControlled Substance Utilization Review and Evaluation System.,Crime\r\nMarriage and family therapists.,Health\r\nDeferred deposit transactions.,Commerce\r\nRegulations: agency review.,Other\r\nEmployment: working hours.,Labor and Employment\r\nDungeness crab.,Agriculture and Food\r\nEnergy: State Energy Resources Conservation and Development Commission: natural gas.,Energy\r\nEnergy: net energy metering.,Energy\r\nElectrical corporations.,Energy\r\nDistributed generation.,Energy\r\nRetirement: Contra Costa County.,Labor and Employment\r\nGambling control: key employee licenses.,Gambling and Gaming\r\nPaternity.,Family and Children Issues\r\nPaternity.,Family and Children Issues\r\nEmployment: alternative workweek schedules.,Labor and Employment\r\nRadiation control: health facilities and clinics: records.,Health\r\nSchool attendance: residency requirements.,Education\r\nDevelopmental services: regional centers: complaints.,Other\r\nRemote caller bingo.,Recreation\r\nCivil actions.,Civil Liberties and Civil Rights\r\nTidelands and submerged lands: public trust doctrine: Lake Tahoe.,Environmental\r\nEmployment: meal periods.,Labor and Employment\r\nAlcoholic beverages: caffeinated beer beverages.,Other\r\nCrimes: assault and battery: search and rescue teams.,Crime\r\nTransportation: California Transportation Commission.,Transportation\r\nRegulations: review process.,Other\r\nOnline voter registration.,Campaign Finance and Election Issues\r\nHealing arts: advertising.,Health\r\nMortgages.,Housing and Property\r\nInternet poker.,Gambling and Gaming\r\nRegulations: impact on businesses.,Business and Consumers\r\nRegulations: repeal provisions.,Other\r\nLand use: housing element.,Housing and Property\r\nJudgeships.,Judiciary\r\nBattery: security officers and custodial officers.,Crime\r\nHealth facilities: licensure.,Health\r\nFlood control: Department of Water Resources.,Environmental\r\nHypodermic needles and syringes.,Health\r\n\"Energy: Public Interest Research, Development, and Demonstration Program.\",Energy\r\nMortgages: deficiency judgments.,Housing and Property\r\nHealth facilities.,Health\r\nState highways: relinquishment.,State Agencies\r\nElectronic benefits transfer cards: prohibition of use for alcohol and tobacco purchases.,Technology and Communication\r\nPublic Utilities Commission.,Public Services\r\nSolid waste: home-generated sharps.,Environmental\r\nSynthetic cannabinoid compounds.,Science and Medical Research\r\nReporting of certain communicable diseases.,Health\r\nMechanics liens: design professionals.,Labor and Employment\r\nCruelty to animals: fighting.,Animal Rights and Wildlife Issues\r\nTenancy: eviction: notices.,Housing and Property\r\nStrangulation.,Crime\r\nPharmacies: regulation.,Health\r\nWorkplace safety: lodging establishments: housekeeping.,Labor and Employment\r\nCharter schools: suspension and expulsion of pupils.,Education\r\nMortgages and deeds of trust.,Housing and Property\r\nLand use: mitigation lands: nonprofit organizations.,Other\r\nOrange County Transportation Authority.,Transportation\r\nPrevailing wages: public work.,Labor and Employment\r\nPolitical Reform Act of 1974: PERS: STRS: gift limits.,Campaign Finance and Election Issues\r\nPublic utilities: gas pipeline emergency response standards.,Environmental\r\nPublic resources: power facility and site certification: geothermal powerplants.,Environmental\r\nElections: contributions.,Campaign Finance and Election Issues\r\nHospitals: interpreters.,Health\r\nLand use: subdivisions: rental mobilehome park conversion.,Housing and Property\r\nCalifornia Public Records Act: library records.,Public Services\r\nOntario International Airport.,Transportation\r\nElections.,Campaign Finance and Election Issues\r\nController: local agency financial review.,Other\r\nInternet gambling.,Gambling and Gaming\r\nRedevelopment.,Other\r\nStudent financial aid: Cal Grant C awards.,Education\r\nCharter schools: funding.,Education\r\nHousehold hazardous waste: transportation.,Housing and Property\r\nMortgages: deficiency judgments.,Housing and Property\r\nInternational trade marketing and promotion.,Trade\r\nHigh school equivalency certificates.,Education\r\nSchool districts: Year-Round School Grant Program.,Education\r\nProperty taxation: new construction exclusion: fire protection devices.,\"Budget, Spending, and Taxes\"\r\nJoint Legislative Committee on Job Creation and Economic Development.,Legislative Affairs\r\nLand use: development project review: superstores.,Other\r\nSales and use taxes: exemption: manufacturing and research activities.,\"Budget, Spending, and Taxes\"\r\nCommercial fishing: salmon stamp.,Agriculture and Food\r\nCalFresh.,Other\r\nEarly intervention services: assessments.,Family and Children Issues\r\nEducation finance: categorical programs.,Education\r\nFood safety.,Agriculture and Food\r\nSchool districts: reporting of expenditures.,Education\r\nPublic social services: domestic violence.,Public Services\r\nPublic beach contamination: standards: testing: closing.,Environmental\r\nThe University of California and the California State University: summer session fees.,Education\r\nPublic records: health care services contract records.,Health\r\nCalifornia Children and Families Program: funding.,Family and Children Issues\r\nAlcoholic beverages: returns.,Legal Issues\r\nPolitical Reform Act of 1974: slate mailers.,Other\r\nElectricity: net energy metering.,Energy\r\nLocal government: emergency response: fees.,Municipal and County Issues\r\nDeath penalty.,Crime\r\nSexually violent predators: civil commitment.,Crime\r\nState surplus property.,Housing and Property\r\nCalifornia regional water quality control boards: perchloroethylene.,Environmental\r\nUnclaimed property.,Legal Issues\r\nState Water Resources Development System.,Environmental\r\nBureau for Private Postsecondary Education: Successorship.,Education\r\nRedevelopment: tax increment calculations.,Business and Consumers\r\nIntervention: initiatives.,Other\r\nPartnership academies.,Education\r\nTidelands and submerged lands: City of Newport Beach.,Environmental\r\nBonds.,Commerce\r\nFish: licenses: trout hatcheries.,Animal Rights and Wildlife Issues\r\nState finance: warrants.,State Agencies\r\nProperty taxation: change in ownership statement.,\"Budget, Spending, and Taxes\"\r\nInstructional materials.,Other\r\nHealth care coverage.,Health\r\nDextromethorphan: sale to minors prohibited.,Health\r\nRecycling: product stewardship: batteries: universal waste management facilities.,Environmental\r\nSales and use taxes: exclusion: trade-in motorcycle.,Transportation\r\nHigh-Speed Rail Authority.,Transportation\r\nReal estate licensees.,Housing and Property\r\nTaxation: direct broadcast satellite television service: tax.,\"Budget, Spending, and Taxes\"\r\nSearch warrants: HIV testing.,Health\r\nVictims of sexual assault.,Crime\r\nNursing.,Labor and Employment\r\nNursing.,Labor and Employment\r\nSex offenders: residency restrictions: petition for relief.,Crime\r\nDentistry.,Health\r\nBusiness and professions: regulatory boards.,Business and Consumers\r\nProfessions and vocations: regulatory boards.,Labor and Employment\r\nTransportation.,Transportation\r\nEggs: assessment fees.,Agriculture and Food\r\nParole: placement at release: registration.,Crime\r\nLocal government: Mello-Roos Community Facilities Act of 1982.,Other\r\nRegulations: effective date.,Legal Issues\r\nHealth facilities: direct care nurses.,Health\r\nLocal government: community facilities districts.,Municipal and County Issues\r\nIncome taxes: federal conformity: Creating Small Business Jobs Act of 2010.,Business and Consumers\r\nFamily justice centers.,Family and Children Issues\r\nElder and dependent adults: abuse or neglect: damages.,Senior Issues\r\nDiscrimination: genetic information.,Legal Issues\r\nApprenticeship oversight.,Other\r\nRegulations: small businesses.,Business and Consumers\r\nHousing omnibus bill.,Housing and Property\r\nCommon interest developments: meetings.,Other\r\nEnergy efficiency.,Energy\r\nTransportation.,Transportation\r\nAlcoholic beverages: tied-house restrictions.,Legal Issues\r\nRecycling: plastic products.,Environmental\r\nRecycling: polystyrene food containers.,Environmental\r\nAlternative and Renewable Fuel and Vehicle Technology Program: electrical work.,Transportation\r\nGas corporations: natural gas production and storage.,Energy\r\nPeace officers.,Other\r\nPupils: transportation.,Education\r\nSmoking in the workplace.,Environmental\r\nBear Lake Reservoir: recreational use.,Public Services\r\nSchools: pupils in foster care: course credit.,Education\r\nGovernment tort claims.,Legal Issues\r\nAntelope Valley Fairgrounds EE and PV Synergy Demonstration Project.,Other\r\nState parks: acquired land: limits on disposition or use.,Environmental\r\nCommute benefit policies.,Other\r\nOil spill prevention and administrative fee.,Environmental\r\nEnergy: solar energy systems: funding.,Energy\r\nBanks and credit unions: signature stamps.,Commerce\r\nGovernment tort claims: charter schools.,Education\r\nCoastal resources: California Coastal Act of 1976: enforcement: penalties.,Environmental\r\nParole: release.,Crime\r\nLife insurance.,Insurance\r\nAdministrative regulations: reductions.,Other\r\nDairy cattle supply liens.,Animal Rights and Wildlife Issues\r\nPolitical Reform Act of 1974: Tahoe Regional Planning Agency: members: statement of economic interests.,Commerce\r\nEnergy: net energy metering.,Energy\r\nTidelands and submerged lands: removal of vessels.,Environmental\r\nInsurance: disclosures.,Insurance\r\nWater companies.,Environmental\r\nTelecommunication services.,Technology and Communication\r\nLife insurance: retained-asset account.,Health\r\nReal estate: appraisal and valuation.,Housing and Property\r\nPublic contracts: school districts: bidding requirements.,Education\r\nFrivolous litigation: sanctions.,Legal Issues\r\nProbation.,Crime\r\nVehicles: implements of husbandry.,Transportation\r\nPrison Industry Authority: nonprofit organizations: prison-made goods.,Crime\r\nPublic Employment Relations Board: final orders.,Other\r\nWiretapping: authorization.,Civil Liberties and Civil Rights\r\nFirearms: license to carry concealed firearm.,Guns\r\nPostsecondary education: instructional strategies.,Education\r\nInstructional materials: open-source.,Education\r\nCalifornia Private Postsecondary Education Act of 2009: exemptions.,Education\r\nLocal government: Los Angeles County: notice of recordation.,Municipal and County Issues\r\nCalifornia Environmental Quality Act: retail facilities: project review.,Environmental\r\nInsurance: life: disability: discretionary clauses.,Insurance\r\nSex offenders: registration.,Crime\r\nEmissions of greenhouse gases: California Global Warming Solutions Act of 2006.,Environmental\r\nVehicles: driving schools and traffic violator schools: licensees.,Transportation\r\nAcupuncture: regulation.,Health\r\nPupil and personnel health: automatic external defibrillators.,Education\r\nMarriage and family therapists.,Health\r\nBonds: fine for unauthorized use.,\"Budget, Spending, and Taxes\"\r\nKindergarten: transitional kindergarten.,Education\r\nHealth care: workforce training.,Health\r\nPersonal information: Internet disclosure prohibition.,Technology and Communication\r\nPublic Safety Officers Procedural Bill of Rights Act: Brady lists.,Other\r\nRegulations: economic impact analysis.,Commerce\r\nState mandates: school district test claims: procedure.,Education\r\nIncome and corporation taxes: tax credit: employment.,Labor and Employment\r\nVoter registration.,Campaign Finance and Election Issues\r\nVehicles: manufacturers and distributors.,Transportation\r\nAdministrative procedures.,Other\r\nCharter schools: charter renewal.,Education\r\nCivil law: omnibus bill.,Legal Issues\r\nLocal government: Williamson Act.,Environmental\r\nLocal government: contracts: special services.,Municipal and County Issues\r\nPupil health: prescription pancreatic enzymes.,Education\r\nPostsecondary education: the College Promise Partnership Act.,Education\r\nRedevelopment.,Other\r\nSales and use taxes: retailer engaged in business in this state.,\"Budget, Spending, and Taxes\"\r\nLocal government: cities and counties.,Municipal and County Issues\r\nVacuum or suction dredge equipment.,Other\r\nLicensed funeral establishments: price list: Internet posting.,Other\r\nImmunizations: disclosure of information: tuberculosis screening.,Health\r\nImperial County: registrar of voters.,Other\r\nHousing authorities: housing certificates.,Housing and Property\r\nFinancial institutions.,Commerce\r\nGovernment tort claims.,Legal Issues\r\nLocal government: Williamson Act.,Environmental\r\nGreenhouse gas reduction: carbon sequestration.,Environmental\r\nPublic contracts: small business participation.,Business and Consumers\r\nOccupancy taxes.,\"Budget, Spending, and Taxes\"\r\nShorthand reporters: continuing education requirements.,Education\r\nElectricity: rates: interregional parity.,Energy\r\nEnergy: planning and forecasting.,Energy\r\nTelecommunications: master-metering: data security.,Technology and Communication\r\nPrivate postsecondary education: non-English speaking students.,Education\r\nIndustrial hemp.,Other\r\nMedi-Cal: eligibility.,Health\r\nProbation: community corrections multidisciplinary teams.,Crime\r\nEnergy: energy conservation projects: financial assistance: local governments and public institutions.,Energy\r\nCorrections: Internal Affairs.,Crime\r\nEarly intervention services: assessments.,Family and Children Issues\r\nCriminal procedure: informants.,Crime\r\nRegulations: legislative approval.,Legislative Affairs\r\nPublic retirement systems.,Labor and Employment\r\nHealth care coverage: discrimination.,Health\r\nProfessional engineers.,Other\r\nPublic contracts: local agencies.,\"Federal, State, and Local Relations\"\r\nDental care.,Health\r\nMedi-Cal: county juvenile detention facilities.,Health\r\nVeterinary medicine.,Science and Medical Research\r\nWorkforce development: high-performance boards.,Labor and Employment\r\nPupil instruction: graduation requirements: pupil in foster care.,Education\r\nEducation finance: Budget Act of 2011.,Education\r\nHealing arts: licensees: Board of Behavioral Sciences.,Health\r\nNatural gas: service and safety.,Environmental\r\nInsurance.,Insurance\r\nInsurance: proceeds: disclosure.,Insurance\r\nInsurance: holding companies.,Insurance\r\nAnnuity transactions.,Other\r\nInsurance: surplus lines insurers: reinsurance.,Insurance\r\nElder or dependent abuse.,Senior Issues\r\nVehicles: motor carrier of property: insurance.,Transportation\r\nHuman services.,Public Services\r\nHome financing programs.,\"Budget, Spending, and Taxes\"\r\nRestraining orders.,Legal Issues\r\nPrevailing wages.,Labor and Employment\r\nFire suppression: fire sprinkler systems.,Guns\r\nPublic works: prevailing wages.,Public Services\r\nMortgages and deeds of trust: foreclosure.,Housing and Property\r\nClaims against the state: appropriation.,Legal Issues\r\nCivil actions.,Civil Liberties and Civil Rights\r\nHigh-speed rail: business plan: contracts: small business participation.,Transportation\r\nOrganized camps.,Recreation\r\nDepartment of Alcoholic Beverage Control: report: due date.,State Agencies\r\nPorts: congestion relief: air pollution mitigation.,Commerce\r\nDevelopmental services.,Health\r\nPupil assessment.,Education\r\nAlternative Protest Pilot Project.,Other\r\nMedicine.,Health\r\nMedical Providers Interim Payment Fund.,Health\r\nWater submeters: testing.,Environmental\r\n\"Continuing education: lesbian, gay, bisexual, and transgender patients.\",Education\r\nCalifornia Transportation Commission: guidelines.,Transportation\r\nCalifornia Children and Families Act of 1998: use of funds.,Family and Children Issues\r\nVehicles: key information access.,Transportation\r\nHealth care coverage: provider contracts.,Health\r\nPupils: English learners: assessment.,Education\r\nSex offender registration.,Crime\r\nCommon interest developments: artificial turf.,Housing and Property\r\nMental Health Services Act.,Health\r\nFish and wildlife: taking and possession.,Animal Rights and Wildlife Issues\r\nEnvironmental protection: California Performance Plus Program.,Environmental\r\nAlcoholic beverages: licensees: advertising restrictions.,Legal Issues\r\nPublic contracts: Department of General Services: approval.,Other\r\nVehicles: radio frequency identification (RFID) technology.,Transportation\r\nAlcoholic beverages: licensees: electronic data services.,Other\r\nAccountants.,Health\r\nPublic postsecondary education: parking fees.,Education\r\nBonds.,Commerce\r\nAdministration of justice.,Other\r\nVehicles: driving offenses: punishment.,Transportation\r\nProbation: electronic monitoring.,Crime\r\nPresidential primary elections.,Campaign Finance and Election Issues\r\nIdentity theft.,Crime\r\nEnvironmental quality CEQA: compliance: environmentally mandated projects.,Environmental\r\nControlled substances.,Drugs\r\nMental health: sexually violent predators.,Health\r\nSchool facilities.,Education\r\nElectricity: community choice aggregation.,Energy\r\nSurface mining: mineral resource management policies.,Environmental\r\nLos Angeles Community College District: design-assist contract pilot program.,Education\r\nBattery: gassing.,Crime\r\nHealth.,Health\r\nProperty taxation: exemption: property owned by the Redevelopment Agency of the City of San Diego.,\"Budget, Spending, and Taxes\"\r\nLong-term care.,Health\r\nState government.,State Agencies\r\nVoluntary Greenhouse Gas Emission Offset Program Fund.,Environmental\r\nPolitical Reform Act of 1974: statement of economic interests.,Campaign Finance and Election Issues\r\nElections: voting.,Campaign Finance and Election Issues\r\nHealth care districts: transfers of assets.,Health\r\nSales and use taxes: consumers: veterans: itinerant vendors.,Business and Consumers\r\nLand use and planning: cause of action: time limitations.,Other\r\nVeterans: educational assistance: dependents.,Military\r\nBudget Act of 2011.,\"Budget, Spending, and Taxes\"\r\nVeterans: memorial districts: buildings.,Other\r\nFlag protocol: POW/MIA Flag.,Other\r\nMilitary personnel: political activity while in uniform.,Military\r\nEmergency assistance: military: Civil Air Patrol.,Military\r\nState contracts: participation goals.,State Agencies\r\nFood labeling: olive oil.,Agriculture and Food\r\nFirearms.,Guns\r\nState cash resources.,Commerce\r\nInfrastructure plan.,Other\r\nOpticians: regulation.,Health\r\nSmall Business Appeals Board.,Business and Consumers\r\nMedi-Cal: prepaid health plans.,Health\r\nCalifornia Global Warming Solutions Act of 2006.,Environmental\r\nIntegrated regional water management plans: contents.,Environmental\r\nRenewable energy resources: cost reporting.,Energy\r\nResidential real property disclosures.,Housing and Property\r\nCredit cards: finance charges.,\"Budget, Spending, and Taxes\"\r\nFinance lenders and brokers.,Commerce\r\nBudget Act of 2010: revisions.,\"Budget, Spending, and Taxes\"\r\nSolid waste: enterprises: contracts.,Environmental\r\nHealth facilities: general acute care hospitals.,Health\r\nCentral Valley Flood Protection Plan: planning and land use.,Environmental\r\nCourt of appeal districts.,Judiciary\r\nFinancial information: privacy.,Other\r\nEducation finance.,Education\r\nMedical records: confidential information.,Health\r\nTransportation.,Transportation\r\nCorrections: victim notification.,Crime\r\nPenalty enhancements: alcohol and drugs.,Drugs\r\nRenewable energy resources.,Energy\r\nVehicles: records: confidentiality.,Transportation\r\nTax administration: Franchise Tax Board: State Board of Equalization.,\"Budget, Spending, and Taxes\"\r\nSouthern California Goods Movement Authority.,Environmental\r\nEmissions of greenhouse gases: market-based compliance mechanisms.,Environmental\r\nContractors: expertise: legal representation.,Labor and Employment\r\nHealth care coverage: prescription drugs.,Drugs\r\nBuild California Bonds.,Other\r\nLease contracts: warranties.,Other\r\nAutomotive repair dealers: airbags.,Transportation\r\nReal estate licensees.,Housing and Property\r\nTidelands and submerged lands: shore protection: lease of structures.,Environmental\r\nPublic water systems: point-of-use treatment.,Environmental\r\nElections: names of candidates.,Campaign Finance and Election Issues\r\nCommon interest developments: electric vehicle charging stations.,Transportation\r\nDependent children: parental control.,Family and Children Issues\r\nEmployers: good faith defense.,Labor and Employment\r\nSprinkler fitters: licensing.,Other\r\nThe protection and advocacy agency.,Other\r\nFirearms: felons.,Guns\r\nHealth facilities: inspections.,Health\r\nResidential care facilities for the elderly.,Senior Issues\r\nCarl Moyer Memorial Air Quality Standards Attainment Program.,Environmental\r\nSentencing.,Crime\r\nMortgages and deeds of trust: foreclosure.,Housing and Property\r\nCorporations: California Small Business Financial Development Corporations.,Business and Consumers\r\nPublic retirement systems: investments: Iran.,Labor and Employment\r\nEnvironment: agency.,Environmental\r\nTelecommunications: universal service.,Technology and Communication\r\nMaster Plan for Infrastructure Financing and Development Commission.,\"Budget, Spending, and Taxes\"\r\nTreated wood waste: disposal.,Environmental\r\nAdult day health care centers.,Health\r\nVehicles: bicycles: passing distance.,Transportation\r\nRecycling: plastic bags.,Environmental\r\nSex offenses: sexting.,Technology and Communication\r\nAnimal abuse.,Animal Rights and Wildlife Issues\r\nMutual water companies: boards of directors.,Environmental\r\nBudget Act of 2011.,\"Budget, Spending, and Taxes\"\r\nCalWORKs: fraud prevention.,Family and Children Issues\r\nDependent children: relative placements: disclosure.,Family and Children Issues\r\nJuvenile case files.,Crime\r\nIn-home supportive services: enrollment and fingerprinting requirements.,Health\r\nPayroll cards.,Labor and Employment\r\nSpeech-language pathology and audiology: hearing aid dispensers.,Health\r\nBureau of State Audits.,State Agencies\r\nBallast water.,Environmental\r\nPublic social services.,Public Services\r\nAlcoholic beverages.,Legal Issues\r\nEducation.,Education\r\nEducation.,Education\r\nHealing arts.,Health\r\nProperty taxation.,Housing and Property\r\nProperty taxation.,Housing and Property\r\nState cash resources.,Commerce\r\nGovernment reorganization: realignment or closure.,Government Reform\r\nBudget Act of 2011.,\"Budget, Spending, and Taxes\"\r\nIndividual health care coverage.,Health\r\nPublic water systems: point-of-use treatment.,Environmental\r\nPublic postsecondary education: executive officer compensation.,Education\r\nInmates: electronic monitoring.,Crime\r\nAdult day health care.,Health\r\nRenewable energy resources.,Energy\r\nNursing.,Labor and Employment\r\nMortgage loans.,Housing and Property\r\nBudget Act of 2011.,\"Budget, Spending, and Taxes\"\r\nRelative to the selection of the Legislative Counsel of California.,Legislative Affairs\r\nRelative to West Nile Virus and Mosquito and Vector Control Awareness Week.,Health\r\nRelative to Irish American Heritage Month. .,Other\r\nRelative to taxation.,\"Budget, Spending, and Taxes\"\r\nRelative to declaring Schoolbus Drivers Day.,Education\r\nRelative to Sexual Assault Awareness Month and Denim Day California.,Crime\r\nRelative to Prostate Cancer Awareness Month.,Health\r\n\"Public schools: pupil, teacher, and parent surveys.\",Education\r\nRelative to early childhood education.,Family and Children Issues\r\nRelative to the Constitutional Convention.,Government Reform\r\nRelative to California Safe Digging Month.,Resolutions\r\nRelative to the Martinez Police Sergeant Paul Starzyk Memorial Overcrossing.,Resolutions\r\nRelative to Neurofibromatosis Awareness Month.,Resolutions\r\nRelative to Small Business Month.,Business and Consumers\r\nRelative to the California Highway Patrol Officer Thomas P. Coleman Memorial Highway.,Transportation\r\nRelative to Black April Memorial Week.,Resolutions\r\n\"Relative to Martin Luther King, Jr. Day.\",Resolutions\r\nRelative to the National Purple Heart Trail.,Military\r\nRelative to Senior Volunteer Month.,Senior Issues\r\nRelative to Viral Hepatitis Awareness Day.,Health\r\nRelative to Scleroderma Awareness Month.,Health\r\nRelative to Black History Month.,Civil Liberties and Civil Rights\r\n\"Relative to the adoption of the Joint Rules of the Senate and Assembly for the 2011̢\"\"12 Regular Session.\",Legislative Affairs\r\nRelative to California Plan Your Giving Day.,Resolutions\r\nRelative to Pain Awareness Month and Women In Pain Awareness Day.,Health\r\nAffordable housing: in-home Internet service accessibility.,Housing and Property\r\nRelative to Prostate Cancer Awareness Month.,Health\r\nRelative to Irish American Heritage Month.,Other\r\nRelative to Pain Awareness Month and Women In Pain Awareness Day.,Health\r\nCeliac Disease Awareness Month.,Resolutions\r\nRelative to Sunshine Week.,Resolutions\r\nRelative to the Fresno Food Expo.,Recreation\r\nRelative to Scleroderma Awareness Month.,Health\r\nRelative to California Plan Your Giving Day.,Resolutions\r\nPostsecondary education: the Morrill Act.,Education\r\nRelative to Internet gambling.,Gambling and Gaming\r\nIndividuals with disabilities: tax exempt accounts.,\"Budget, Spending, and Taxes\"\r\nRelative to toxic substances control.,Environmental\r\nState employment: salary freeze.,Labor and Employment\r\nPrison health care: overpayments.,Health\r\nEconomic development: enterprise zones: targeted employment areas.,Labor and Employment\r\nLocal government finance: property tax revenue allocations: negative sum counties.,\"Budget, Spending, and Taxes\"\r\nEnergy: renewable resources: endangered species: environmental impact reports.,Energy\r\nEnergy: energy upgrade financing.,Energy\r\nLong-term care.,Health\r\nState Air Resources Board: alternative actions to assessing penalties.,Other\r\nLocal government finance.,Municipal and County Issues\r\nRedevelopment.,Other\r\nCommunity redevelopment.,Municipal and County Issues\r\nState Board of Equalization: administration: retailer engaged in business in this state.,Business and Consumers\r\nRegulations: 5-year review and report.,Other\r\nRedevelopment.,Other\r\nEducation finance.,Education\r\nBudget Act of 2011.,\"Budget, Spending, and Taxes\"\r\nBudget Act of 2011.,\"Budget, Spending, and Taxes\"\r\nVehicle license fees.,Transportation\r\nState finance.,\"Budget, Spending, and Taxes\"\r\nRegulations: effective date.,Legal Issues\r\nVehicle license fees.,Transportation\r\nRegulations: legislative notice.,Legislative Affairs\r\nRegulations: economic impacts review.,\"Budget, Spending, and Taxes\"\r\nGeneral Fund: fines.,Other\r\nTransportation bond funds.,Transportation\r\nTaxation: vehicle license fees.,\"Budget, Spending, and Taxes\"\r\n\"Partnership academies: Clean Technology and Renewable Energy Job Training, Career Technical Education, and Dropout Prevention Program.\",Education\r\nLocal government finance.,Municipal and County Issues\r\nBudget Act of 2011.,\"Budget, Spending, and Taxes\"\r\nCommunity redevelopment.,Municipal and County Issues\r\nEducation finance.,Education\r\nEnergy: renewable energy resources.,Energy\r\nRedevelopment.,Other\r\nPublic postsecondary education: executive officer compensation.,Education\r\nCommunity redevelopment.,Municipal and County Issues\r\nRedevelopment.,Other\r\nMinimum wage: annual adjustment.,Labor and Employment\r\nSafe Drinking Water State Revolving Fund.,Environmental\r\nLand use: subdivision maps: expiration dates.,Other\r\nSafe Drinking Water State Revolving Fund.,Environmental\r\nPeace officers: airport law enforcement.,Transportation\r\nFinance lenders.,Commerce\r\nVoter registration: affidavits: rebuttable presumptions.,Campaign Finance and Election Issues\r\nElections: write-in candidates.,Campaign Finance and Election Issues\r\n\"Safe, Clean, and Reliable Drinking Water Supply Act of 2012.\",Environmental\r\nCalifornia Global Warming Solutions Act of 2006: offsets.,Environmental\r\nSolid waste: single-use carryout bags.,Environmental\r\nDomestic violence: corporal injury.,Social Issues\r\nRestraining orders.,Legal Issues\r\nLand use: housing element.,Housing and Property\r\nInfrastructure financing.,Other\r\nDepartment of Veterans Affairs: consolidation of services to veterans.,Military\r\nIndividual health care coverage.,Health\r\nAmmunition.,Guns\r\nAmmunition.,Guns\r\nProperty taxation: change in ownership.,Housing and Property\r\nEnergy: solar energy systems: funding.,Energy\r\nCalWORKs eligibility: asset limits: vehicles.,Transportation\r\nEducation finance: inflation adjustment to revenue limits.,Education\r\nCoastal resources: coastal development permits: penalties.,Environmental\r\nTransactions and use taxes: County of Alameda.,\"Budget, Spending, and Taxes\"\r\nEconomic development: enterprise zones.,Other\r\nState government: federal immigration policy enforcement.,State Agencies\r\nTaxation: cancellation of indebtedness: mortgage debt forgiveness.,Housing and Property\r\nPolitical Reform Act of 1974.,Campaign Finance and Election Issues\r\nCalifornia State University: trustees.,Education\r\nIncome tax credits: emergency standby generators.,Energy\r\nEconomic development.,Commerce\r\nBudget Bill: public availability.,Legislative Affairs\r\nState government: economic development.,Commerce\r\nRelative to Read Across America Day.,Education\r\n\"Relative to Martin Luther King, Jr. Day.\",Resolutions\r\nRelative to American Heart Month and Wear Red Day.,Health\r\nRelative to Ronald Reagan Day.,Resolutions\r\nRelative to human trafficking.,Crime\r\nRelative to Black History Month.,Civil Liberties and Civil Rights\r\nRelative to the Armenian Genocide.,Other\r\nRelative to immigration.,Immigration\r\nCalifornia Transportation Commission: guidelines.,Transportation\r\nElections: voter registration.,Campaign Finance and Election Issues\r\nCommercially sexually exploited minors.,Family and Children Issues\r\nCalFresh.,Other\r\nDevelopmental services: regional centers.,Public Services\r\nBear Lake Reservoir: recreational use.,Public Services\r\nIndividual health care coverage.,Health\r\nPolitical Reform Act of 1974: campaign disclosures.,Campaign Finance and Election Issues\r\nPolitical Reform Act of 1974: slate mailers.,Other\r\nPolitical Reform Act of 1974.,Campaign Finance and Election Issues\r\nMedi-Cal: eligibility.,Health\r\nPolitical Reform Act of 1974: campaign disclosures.,Campaign Finance and Election Issues\r\nTaxation: cancellation of indebtedness: mortgage debt forgiveness.,Housing and Property\r\n\"Safe, Clean, and Reliable Drinking Water Supply Act of 2012.\",Environmental\r\nThe Leroy F. Greene School Facilities Act of 1998.,Education\r\nPersonal information: privacy.,Legal Issues\r\nSchool safety plans.,Education\r\nTeacher credentialing.,Education\r\nInternet gambling.,Gambling and Gaming\r\nLocal government finance.,Municipal and County Issues\r\n\"A resolution to propose to the people of the State of California an amendment to the Constitution of the State, by adding Section 10 to Article III thereof, relating to state audits.\",State Agencies\r\nRelative to the selection of the Legislative Counsel of California.,Legislative Affairs\r\nRelative to a constitutional convention.,Government Reform\r\n\"Relative to the adoption of the Joint Rules of the Senate and Assembly for the 2013̢\"\"14 Regular Session.\",Legislative Affairs\r\nRelative to Black History Month.,Civil Liberties and Civil Rights\r\nMedi-Cal: eligibility.,Health\r\nHealth care coverage.,Health\r\nMedi-Cal: eligibility.,Health\r\nHealth care coverage.,Health\r\n\"Relative to the Joint Rules for the 2013̢\"\"14 First Extraordinary Session.\",Legislative Affairs"
  },
  {
    "path": "week-4/category-training.csv",
    "content": "Owner,First Priority Title Llc,F4300\nSENIOR PARTNER,ARES MANAGEMENT,Z9500\nCEO,HB AGENCY,Z9500\nAKERS & ARMEY INSURANCE,,F3100\nOWNER,OPTIONCARE,Y4000\nVI,NATIONAL COUNCIL OF JEWISH WOMEN,J5100\nAESTHETIC & RECONSTRUCTIV,,H1000\nMINER,MCCOY ELKHORN COAL CORPORATION,E1210\nVICE PRESIDENT,BAYSTATE HEALTH,H0000\nCHIEF EXEC OFF,LARTA INST/CHIEF EXEC OFF,Y4000\nWUHN-AM/WEINER/PRESIDENT,,C2100\nTeacher,C N U,Y4000\n\"consultant, private investigator\",CJ Consultants/Self,Y4000\nBAY AREA PLASTIC SURGERY ASSOC,,H1130\nATTORNEY,FULLENWEIDER & WILHITE,K1000\nWENDLING NOE NELSON & JOHNSO,,Y4000\nCHAIR,SAMISH NATION,Y4000\nHYDRA POWER SYSTEMS,,Y4000\nBENEFIT COMMUNICATIONS INC,,F4200\nPhysician,Team Radiology,H1130\nLAWYER,LLOYD W KENDALLS JR,Y4000\n\"BARNES INT'L INC\",,Y4000\nPROBATE JUDGE,STATE OF CT,X3000\nEXECUTIVE,AMERITRADE WORLDWIDE INC.,Y4000\nBAKER OWNER,,G2100\nPRESIDENT,FORMULA FRANCHISING ITALIANO,Y4000\nHUSCH BLACKWELL SANDERS LLP,,K1000\nN/A,American Airlines,T1100\nUNION REPRESENTATIVE,UFCW LOCAL 1036 P.O. BOX 2878,J1200\nGENERAL MANAGER,GTECH CORPORATION,G6500\nOWNER,OUALIE BEACH HOTEL,T9100\nVICE PRESIDENT,NORFOLK SOUTHERN CORP,Z9500\nPOWER ROGERS SMITH,,K1000\nENGINEER,CDI CORP.,G5250\nATTORNEY,\"MARION'S INN LLP\",Y4000\nN/A/RETIRED HOUSEKEEPER,,X1200\nPLUM AR TIMBER,,A5000\nSIGMAN LAW FIRM,,K1000\nBUSINESS,SHADETREE AV,Y4000\nBEAR ENTERPRISES,,Y4000\nFINANCE DIRECTOR,SHAYS FOR SENATE,J1100\nATTORNEY,\"KLEHR, HARRISON, HARVEY, BRANZBUG, & E\",K1000\nlawyer,\"Keenan Law Firm, PA\",Z9500\nTHE FAY COMPANY,,Y4000\nAttorney,Reiner & Reiner PA,Y4000\nEXECUTIVE VP,\"NBC UNIVERSAL, INC.\",C2300\nSALES REP,CERTIFIED HEATING SYSTEMS,B3400\nGraphic Designer,Colorado Print & Digital,C1300\nTREASURER,TECHSPEC INC,Y4000\nEconomic development,Self employed,F5000\nYUMA HEART INSTITUTE,,Y4000\nPolitical,MSNBC,C2300\nPRESIDENT & CEO,ALTIOSTAR NETWORKS,Y4000\nPETROLEUM INDUSTRY,REQUESTED,E1120\nPresident,Quincy Recycle Paper,M2400\nATTORNEY,COOLEY GODDARD,K1000\nPR consultant,self,Z9500\nINVESTMENT MANAGER,COWEN GROUP INC,Z9500\nDirector,Seven Acres Jewish Sr Care,Y4000\nEXECUTIVE,\"MAX-FRANCE, INC.\",Y4000\nPHYSICIAN,C.C.A.,H1100\n\"Vice President, Sales\",\"Plastic Safety Systems, Inc\",Y4000\nPARTNER,POWELL POWELL & POWELL,K1000\n43rd St Conarte,,Y4000\nOwner,Designs By Maida,G5000\nR.F.O.A.,,Y4000\nInsurance,PROTECTIVE LIFE CORP,F3300\nPhysician,Surgical Associates of SW Ohio,H1130\nPHYSICIAN,VANDERBILIT UNIVERSITY,H5100\nOffice Manager,Independent Radio Services,C2100\nPresident,John Veleris & Assocs. Inc.,Y4000\nPhysician,Woodland Radiology,H1130\nTRI-UNION INTERNATIONAL LLC,,Y4000\nCounselor/Mental Health,Self employed,Y4000\nEditor,Oxford University Press,C1100\nFASHIONISTA,LOUIS VUITTON,Y4000\nCEO,Chester Perfetto Agency Inc,Y4000\nC.E.O.,AKERS PACKAGING SERVICE INC.,M7100\nCOTTO ENERGY,,Y4000\nQUEEN CITY STEEL,,M2100\nPolicy Director,Nevada Conservation League,Y4000\nAttorney,Frank and Gramling,K1000\nCAMARA DE COMERCIO DE PUERTO RICO,,G1100\nPRESIDENT,JB HAMLIN,Y4000\nSAM SAAD & ASS,,Y4000\nAttorney,Metropolitan Museum,X4200\nNBSC BANK,,F1000\nWENGER FEED MILL,,A2300\nProgram Director,J Paul Getty Trust,X4100\nPHYSICIAN,UNITY HEALTH,H0000\nChurch Worker / Music,LA Open Door Church Director,X7000\nMMIC-MN,,F3100\nATTORNEY,CNMC,Y4000\nSoftware Developer,Mimosa Systems,C5120\nProducer,Caps Universal,Y4000\n\"DOMINICK'S\",,G2400\nOWNER,SCHRYVER MEDICAL CO.,Y4000\nPIPE FITTER,WESTCON INDUSTRIES,Y4000\nPRESIDENT,DETROIT INTERNATIONAL BRIDGE CO.,T3100\nFARMER/OWNER,BENEVEDES FARMS,A1000\nDERMATOLOGIST,ROBERT DEANGELIS MD LTD,H1100\nDeputy Voter File Manager,Ohio Campaign for Change,Y4000\nBookkeeper,Hands Across The Water Inc.,Y4000\nBROKER,\"GOGGANS, INC.\",K2000\nSWIDLER & BERLIA,,K1000\nPhysician,Illinois Masonic Medical,Y4000\nPRESBYTERIAN PASTOR,TRADITIONAL VALUES,Y4000\nBOOK STORE OWNER,SELF EMPLOYED,J7400\nSOLUTIONS FIBERS INC,,Y4000\nEXECUTIVE,FIRST PRIVATE TRUST,Y4000\nPUBLIC AFFAIRS MANAGER,STATE FARM,F3400\nAttorney,Brown Chiari,K1000\nCONSULTANT/CHEM ENG.,SELF-EMPLOYED,Y4000\nENGINEER,REDDING LINDEN BURR,B4400\nConsultant,\"Figueroa's Community Consulting\",Y4000\nPHYSICIAN,CHATTANOOGA ORTHEPEDIC GROUP,H1130\nOil and Gas,\"Sid Bass, Inc.\",E1150\nEvents Manager,Newschools Venture Fund,Y4000\nCivil Engineer,\"Kor-Ko, Ltd\",Y4000\nOwner,\"Apple's Northside Market\",Y4000\nLOBBYIST,MESSERLI & KRAMER,K1000\nAUTO AUCTION,SPARKLING CITY A.A. OF SAN ANTONIO,Y4000\nWESTERN WI TECH COLLEGE,,H5200\nAUTOMOBILE MECHANIC,SELF EMPLOYED,T2400\nAttorney,Lehman Brothers,F2100\nDirector,Anbp,Y4000\nManagement,\"MAGUIRE IRON, INC.\",M5000\nCPC,,T2100\nINTERMOUNTAIN GAS CO,,E1140\nHomemaker/Philanthro,N/A,H4100\nWAYTECH CORPORATION,,Y4000\nAttorney,Self,E1110\nWAYNE BANK & TRUST,,F1000\nVice President,Colorado Trophies,Y4000\nSENIOR VP GLOBAL,BOSTON SCIENTIFIC,H4100\nPRESIDENT & CEO,\"COEUR MINING, INC.\",E1220\nVICE PRESIDENT,GLENMEDE TRUST COMPANY,F5000\nOSU DEPARTMENT OF OBSTETRICS & GYNE,,H5150\nOwner,Univ. Appraisal Network,F4700\nE.V.P.-OPERA,CASTLE ROCK INDUSTRIES,Y4000\nPHYSICIAN,METRO INFECTIOUS DISEASE CONSULTANTS,Y4000\nPhysician,St. Mary Medical Center,J1200\nMARY KAY COSMETICS SALES,,M3300\nSTANLEY BRUCE POWELL PA,,K1000\nExecutive,Roto Rooter Inc,Y4000\nGETHSEMANE BAPTIST,,X0000\nSales,Vacation.Com,C5140\nAMBASSADOR,DEPARTMENT OF STATE,X3000\nPRESIDENT,COM-PAIR SERVICES,G1200\nCHIEF POLICY OFFICER,WESTED,Y4000\nBUTLER,CATERPILLAR,X1200\nINDEPENDENT FILM PRODUCER,SELF/INDEPENDENT FILM PRODUCER,J7400\nAnalyst,Osterweis Capital Management,F2100\nDUPUIS OIL COMPANY,,E1100\nprofessor/writer,Smith College/self,Z9500\nIT/BI CONSULTANT,INDEPENDENT-SELF EMPLOYEED,Y4000\nSTAAB FUNERAL HOME,,G5400\nCoton Producer,Self-employed,A1100\nLawyer,Speranza & Bates,Y4000\nPhysician,UTMB,H5150\nPhysician,\"Rocky Mountain Radio, P.C.\",C2100\nINVESTOR,VANETIK INTERNATIONAL/INVESTOR,G5200\nPRES,INTERNATIONAL BANK OF COMMERCE,F1100\nClient Executive,Unisys Corporation,C5130\nREAL ESTATE,DMB PACIFIC VENTURES LLC/REAL ESTAT,Y4000\nvolunteer,The Jason Foundation,Y4000\nPresident,Downey Publishing,C1100\nHELENA RUBINSTINE,,M3300\nBuilding Manager,The Equity Manor Group,Y4000\nPRESIDENT A,\"SEVEN OAKS COMPANY, LLC\",Y4000\nHuman Resources,\"Pepsico, Inc\",G2600\nINSURANCE,RUBIN GOLDMAN AND ASSOC.,F3100\nASS,AMERICAN CIVIL RIGHTS INSTITUTE,Y4000\nROMET MCGUIGHAN SABONOSH,,Y4000\nEXECU,JUKI AUTOMATION SYST. HOLDING,M2300\nPresident,Westcoast Precision,Y4000\nPRINCIPAL - CREATIVE,FENTONWORKS,Y4000\nExecutive Vice Presi,Medical Properties Trust Inc.,F4100\nDoctor,Self Employed,H5100\nInsurance Consultant,Retired,X1200\nPIPER JAFFRAY COMPANIES INC,,F2100\nSCOTT FOODSTORES INC,,Y4000\nOWNER,LEN LIBBY CANDIES,J1100\nEnergy Management,Consumer Powedine,Y4000\nOWNER,FABRIC RETAIL STORE,M8000\nCollege vp,Sarah lawrence college,H5100\nSCHLESSER INC,,A5000\nHOUSE-SITTER,SELF-EMPLOYED,Y4000\nASST DIR OF RESOURCE DEV,PELL STATE,Y4000\nConsultant,Curbs Etc Corporation,Y4000\nGOVERNOR,STATE OF VIRGINIA,X3000\nInvestor,John Houston,J1200\nCEO,LIBERTY MUTUAL GROUP,F3400\nCPA,Doherty & Stuart Pc,F5100\nSAILBOAT CENTRE,,Y4000\nSales,Southwest Dealer Ser,Y4000\nAttorney,\"Pelletheri, Rabstein & Altman\",K1000\nCANADA DRY DIST,,Y4000\nCEMENT DISTRIBUTORS INC,,B5100\nMANAGING PARTNER,BRE DEVELOPMENT LLC,Y4000\nENGINEER,DAVIDSON ENTERPRISES INC.,T3100\nPRIVATE INVESTOR,SELF-EMPLOYED,F5100\nPRODUCER,CASEY-WERNER PRODUCTIONS,C2300\nPresident,Giusti Farms Llc,A1000\nLAWYER,SLAWSON COMPANIES INC.,Y4000\nAT,CASTLE MEINHOLD & STAWIARSKI LLC,Y4000\nFINANCIAL ADVISOR,AMERICAN EXPRESS,F2000\nWEST VALLEY PHYSICA,,H0000\nGOVT. RE,\"TIDEWATER CONSULTING, INC.\",K1000\nOWNER,KIRK & COMPANY LLP,F5100\nAnesthesiolocist,\"Children's Hospital\",H2100\nHUBINGER CO,,J6200\nGOVERNMENT AFFAIRS,AMERICAN DEFENSE INTERNATIONAL,K2000\nFINELY ASSOCIATES,,Y4000\nHUNT PLYWOOD CO,,A5000\nDealer,Ritchey Cadillac,T2300\nHealth care analyst/,Calif Assn of Rehab Facilities,J7400\nRADIO,ATLANTA RADIOLOGY CONSULTANTS,J1200\nAttorney,\"Sugarman & Susskind, PA\",K1000\nHYATT DEVELOPMENT CORPORATION,,J7150\nKENNY CONSTRUCTION,,B3600\nGOVERNMENT AFFAIRS,WESTINGHOUSE ELECTRIC COMPANY,E1320\nCHRISTIAN MUSIC,LEGARY FIVE,Y4000\nAVP DSGN/CNSTRCTN,UNITED SERVICES AUTOMOBILE ASN,F3100\nManager,\"Pushwa International, Inc\",Y4000\nFire Fighter/EMS,CUYAHOGA FALLS FIRE DEPARTMENT,L1400\nMOTION PICTURE ASSOCIATION,,K1000\nEDUCATOR,NYC BOE,X3500\nCEO,Southwood Partners,Y4000\nDIRECTOR OF MARKETING,REZMAR INC.,Y4000\nPrivacy Requested,Private,H2100\nINVESTMENTS,HILAN CAPITAL,X4110\nATTORNEY,\"BROWNSTEIN, HYATT & FARBER, PC\",K1000\nOwner,\"Absolute Style, LLC\",Y4000\nPHYSICIAN,\"ROME RADIOLOGY GROUP, PA\",H1130\nNEUROSURGEON,BAYSTATE MEDICAL CENTER,H2100\nEngineer,Saturn Electronics Engineers,B4400\nProfessor,Georgia Institute of Technolog,H5100\nLawyer,Holland & Knight,K2000\nChief Staff Officer,Tedeschi Food Shops Inc,G4300\nFERRONICS INCORPORATED,,Y4000\nATTORNEY,MCHUGH FULLER LAW GROUP,K1000\nREAL,COAST AND MOUNTAIN PROPERTIES,F4000\nOWNER,\"COOK'S GARDEN CENTER\",Y4000\nPAUL HASTINGS & ASSOC,,K1000\nAROINI NEWSPAPER,,C1100\nManaging Director,Jenstar Capital,F2600\nENGINEER,GE AIRCRAFT ENGINES,T1300\nEXECUTIVE,GRAZIANO CONSTRUCTION,B1500\nSOFTWARE & DATABASE DEVELOPER,SELF-EMPLOYED,C5120\nLIBRARIAN,THE OAKRIDGE SCHOOL,Y4000\nCONSTRUCTION,INTEGRITY CONSTRUCTION,B1500\nMETRO COLLISION CENTER,,T2400\nTeacher,Greenwich Board of Education,X3500\nINSURAN,FIA INSURANCE SERVICES INC.,F3100\nJ MICHAEL JASPER MD,,H1100\nLOPATIN MILLER FREEDMAN,,Y4000\nPRESIDENT,ARI FLEISCHER SPORTS COMMUNICATIONS,Y4000\nCEO,A&E AUTO ELECTRICINC,Y4000\nLAWYER,\"PASTEMAK & FIDIS, P.C.\",Y4000\nCo-Founder,Echostar,C2200\nUrologist,GWU - MFA,H1100\nAttorney,Nichols Wolff Ledbetter & Campbell,K1000\nDIRECTOR,DAVID BOHNETT FOUNDATION,J1200\nPHOTOGRAMMETRIST,AERO-METRIC,B4300\nCEO,\"NEW LIFE AGENCY, INC\",Y4000\nV. P. Nuclear Engineering,FLORIDA POWER & LIGHT,E1600\nCOMMUNITY VOLUNTEER,SELF,C4000\nSec/Treas,Granite Halmar Construction Co,B1000\nInterior Design Consulta,Self employed,Y4000\nTRIPLE-S ANNS PLACE RESTAURA,,G2900\nWEB DEVELOPER,DUET PRODUCTIONS,Y4000\nATTORNEY,LOCKE LIDDELL AND SAPP L.L.P.,K1000\nFAMILY PHYSICIAN/CLINICIAN-TEACHER,UNIVERSITY OF NORTH CAROLINA AT CHAPEL,H5100\nMARILYN SORENSEN,NONE,Y4000\nSCHUMAN LICHTENSTEIN,,Y4000\nSCHOOL PSYCHOLOGIST,BUCKINGHAM BROWNE  AND NICHOLS,Y4000\nIndustrial Specialty Cont Llc/con,\"ISC, LLC\",Y4000\nCALIFORNIA FASHION INDUSTRIES,,M3100\nATTORNEY,\"JONES& ROSTANT, P.C.\",Y4000\nBUSINESS UNIT LEADER /  MANAGER,CHRYSLER GROUP LLC,T2100\nStorycorps,,Y4000\nATTORNEY,THE BOUCHET LAW FIRM,K1000\nPRESIDENT,DOSSETT BIG 4 BUICK CADILLAC GMC HONDA,T2300\nTRANSTECTOR,,Y4000\nProcessing Tech,Gwinnett Detention,Y4000\nADMINISTRATOR,ST. JOSEPHS HOSPITAL,H2100\nSELF-EMPLOYED,CHERIANS INC.,Y4000\nRadiologist,Doshi Diagnostics,Y4000\nPARAMONT COMPANIES,SELF EMPLOYED,J6200\nOFFICE SERVICES MANA,ITASCA COUNTY,X3000\nSENIOR VICE PRESIDENT,ENER BANK USA,Y4000\nSOUTHVIEW HEALTH CARE,,H2200\nAttorney,The Capitol Company,Y4000\nOwner,Victoria Villa Inc.,Y4000\nPROP-A-GANDA,,Y4000\nEXECUTIVE,WASHINGTON COMPANIES,B1000\nRealtor,Quinn Gillespie & Associates,K2000\nEVP PUBLIC,\"DOM RESOURCES SVCS, INC.\",E1620\nCEO/President,Grey Eagle Distributors,G2850\nGRUB STREET PRODUCTION,,Y4000\nPresident,JWM Investments,E1120\n\"CONNELLY, SOUTAR\",,Y4000\nPresident/Investor,Pattco,F2100\nOwner,Midtown Rehabilitation Center,Y4000\nDIRECTOR,GUINNESSUDV NORTH AMERICA,G2820\nvolunteer,n/a,X4110\nPresident,Goldberg Realty Associates,F4500\nENVIRONMENTAL PLANNE,\"ADVANCED ENVIRONMENTAL SOLUTIONS, INC\",Y4000\nPHYSICAL THEROPIST,MERITER HOSPITAL,J7400\nFoundation Director,Self,X4100\nRANCHER,PHINIZY RANCH,A3000\nPALMER AND CAY,,T6100\nASSISTANT,ENDEAVOR,Y4000\nPresident,1st Mariner Bank,F1100\nDANA FORBER CANCER INSTITUTE,,H2100\nManager,Thomson-West,C1100\nACCOUNTANT,TEACHER,H5100\nEXECUTIVE,BOSMA ENTERPRISES,Y4000\nBanking Investment I,The Marbury Corp,Y4000\nREALTOR,WINDEMEER,F4000\nASSOCIATED DISTRIBUTIONS,,G2850\n\"VICE PRESIDENT, G\",ESSEX CORPORATION,F2100\nOffice Manager,Farmers Implement Co,A4200\nCEO,KEMPER CPA GROUP,F5100\nCorp Executive,Dayton Forging & Heat Tr,Y4000\nSECRETARY,C.D.M. CO.,Y4000\nPresident,Loving Lincoln-Mercury,T2300\nEntertainment Executive,Crossroads Media,C2000\nOwner,KS Printing Co,C1300\nZACHARY SHUSTER LLC,,Y4000\nOWNER,RAY SMITH RENTALS & FARM,T2300\nAttorney,\"Mackall, Crounse & Moore, Plc\",K1000\nCENTRAL NATIONAL LIFE,,F3300\n\"AVP, FINANCE\",WELLCHOICE INC.,F3200\nOWNER,CLOWER INDUSTRIES/OWNER,Y4000\nOFFIT HALL CAPITAL MGM,,F0000\nATTORNEY,SMITH PACHTER-MCWHORTER,Y4000\nDivision Controller,\"The Nunes Company, Inc\",Y4000\nASSISTAN,FEDERAL RESERVE BANK OF NY,X3000\nPIT STOP QUICK OIL,,E1100\nPSYC,SELF & MANHATTAN PSYCHIATRY CL,H1110\nLENTZ,,Y4000\nPresident,Royal Sausage Company Inc.,G2300\nofficer,Fitzpatrick & Weller,A5000\nAttorney,Jeffrey M Silverstein & Associates,K1000\nLAWYER,LINDER AND HOLLOWELL,K1000\nCo-Owner,Spur Lake Cattle Company,A3000\nConsultant,The Ric Group,Y4000\nAuxiliary Professor,Drexel University,H5100\nReal Estate Agent,Melvin Plutsky,Y4000\nVENTURES ASSOCIATE,BAIN CAPITAL,F2600\nPRESIDENT/GENERAL MANAGER,VINOEX ENERGY CORP.,Y4000\nREALTOR,REMAX PRESTIGE,F4000\nPHARMACEUTICAL RESCH & MFGR OF,,H4300\nALL STATE,,J1200\nPROGRAMMER,R/GA,Y4000\nEASTERN OIL CO,,E1160\nPRESIDENT AND CEO,LOUSIANA BANKERS ASSOCIATION,F1100\nATTORNEY,WASHINGTON STATE BAR,JE300\nPRINCIPAL,DELOITTE,F5100\nVANDEVEER GARZIA,,Y4000\nREGIONAL PRESIDENT,UNION FIRST MARKET BANK,F1100\nOWNER,TALISMAN GROUP,Y4000\nPRESIDENT & COO,SOJOURN CARE,H2200\nTOWING,,T2400\nCEO Owner,NGG LTD INC,Y4000\nLedger Investments LLC,Real Estate Manager,F7000\nPHYSICIAN,FAMILY HEALTH CENTER LLP,H1100\nAttorney,Myers Brier & Kelly LLP,K1000\nDUTKO,,Y4000\nCONSULTANT,NRB STRATEGIES,J5100\nTULSA ADJUSTMENT BUREAU INC,,F5200\nWAUSAU HOSPITAL,,H1100\nCEO,ASPEN MARKETING SERVICES,G5280\nINSU,CAL-SURANCE BENEFIT PLANS INC.,F3100\nmarine engineer,Horizon Lines,J1100\n\"WAITE, SCHNEIDER, BAYLESS, CHESLEY,\",,K1000\nBUSINESS OWNER,KTL ASSOCIATES INC.,Y4000\nOTIS COLLEGE OF ART AND DESIGN,\"ARTIST, EDUCATOR\",J7400\nSOFTWARE SUPPORT,INTERSYSTEMS,C5120\nENGINEER,QUALI-TECH INC,Y4000\nINFO REQUESTED,P and G. Consulting Ltd. Liability,Y4000\nPARTNER,STEWART INVESTMENTS LLC,F7000\nManagement Consulting,The Levers Group (Self),Y4000\nOWNER,GUN GEARS AND GADGET,Y4000\nREAL ESTATE BROKER,LYON REAL ESTATE-W. ROSEVILLE,F4200\nSPECIAL EDUCATION TEACHER ASSISTANT,ANCHORAGE SCHOOL DISTRICT,X3500\nSAUSAGE MANUFACTURING,CON AGRA,G2100\nSR. VP & GENERAL COUNSEL,\"MC WANE, INC.\",B5300\nVice Chairman,\"Observatory Group, LLC\",G5210\nOIL & GAS EXPLORATION,WSHLAND INC.,Y4000\nPRES,CITIZENS UNION BANK OF SHELBYV,F1100\nNon-Exec Chairman of,Verizon Communications Inc.,C4100\nInfo Requested,Anu R. Pathak M.d.,H1100\nDIRECTOR OF MARKETIN,MINERVA HEALTH,Y4000\nINVESTMEN,RETIREMENT PLAN SOLUTIONS,Y4000\nOwner,NeSmith Chevrolet,T2300\nSALES MGR.,DOW AGROSCIENCES,A1100\nATTORNEY,\"GRANT, KONVAUNKA, & HARRISON,\",Y4000\nMGR RLG,BEHTLEHEM STEEL CORPORATION,M2100\nWRITER AND EDITOR,SELF,G0000\nOPERATIONS ENGINEER,XTO ENERGY,E1120\nEXECUTIVE,LOGICALIMAGES,Y4000\nMD,Atlanta Resurgens,H3000\nPRESIDENT,\"KILRUSH PETROLEUM, INC.\",J1100\nALBRIGHT ABSTRACT & GUARETY,,F4300\nN Y STATE GOER,,X3000\nPHYSICIAN,THE WOMENS PAVILION,Y4000\nManager,402Eight Ave Corp,Y4000\nProjects Coorindator,Waterbury Public Schools,X3500\nPRESIDENT,BEAVERTOWN BLOCK CO./PRESIDENT,Y4000\nSpecial Representati,International Assoc of Machinists,LM100\nSENIOR VICE PRESIDENT AND GENERAL COUN,THE ELECTRIC COOPERATIVES OF SOUTH CAR,Y4000\nDIRECTOR,STAMFORD CONSULTING,Y4000\nWENVENTURE INC./PRESIDENT/CEO,,G2900\nSECRET,JACK DONNELLY AND ASSOCIATES,K1000\nCOO,Information Manufacturing Corp.,C5130\nBusiness Owner,Westan Home Services Inc,Y4000\nOil & Gas/Rancher,Self,G0000\nENGINEER,JMIFT,Y4000\nGREENHILL AND COMPANY,,F2000\nBRAND GROUP DIRECTOR,UNITED PARCEL SERVICE INC,T7100\n\"DEBLASIO, FIGMAN &\",,Y4000\nOwner,Chas S Middleton And Sons,Y4000\nREALITY RESEARCH,,Y4000\nManager,Warner Chilcott,Y4000\nOWNER,TARPON WOODS DEVELOPMENT,Y4000\nSTEPHENS ENGINEERING C,,C5130\nINFO REQUESTED,Vinyltechnology,Y4000\nSALES,TRI STATE TRUCK & EP INC.,Y4000\nEXECUTIVE,RMD INC.,Y4000\nINV,J. F. B. PLANNING SERVICES INC.,Y4000\nEXCEL MINING SYSTEMS,,E1200\nBUSINESSMAN/PRESIDEN,UNITED TECHNOLOGIES,D2000\nPhysician,\"Robert K. Wenger M.D.,P.A.\",Y4000\nAttorney,Madison Law and Strategy Group,K1000\nMORSE & MOWBRAY,,Y4000\nInfo Requested,Clemedtson Properties,F4000\nOFFICE WORKER,DTE ENERGY,E1620\nWriter,\"Bell-Phillip Television,\",C2100\nAssistant,NMSU,H5100\nCEO,SAFEGUARD SCIENTIFIC,C5100\nSOFTWARE DEVELOPER,,J9000\nPresident & CEO,EDCO,E3000\nVICE,BANK OF AMERICA SECURITIES LLC,F2100\nENTREPRENEURIAL CORPORATE GROUP,,F7000\nVICE CHAIRMAN,ARIEL CAPITAL MANAGEMENT,F2100\nBERLAND FLYING EAGLE INC,,G5270\nKIMBALL HILL HOMES,,F5100\nOperator,Blue Spruce,J1200\nICI MUTUAL INSURANCE COMPANY,,F3100\nFOOD STORE,,G2400\nCONSULTA,\"CALIFORNIA STRATEGIES, LLC\",K2000\n\"VP INT'L BUSINESS DEVELOPMENT\",SCIENTIFIC GAMES CORPORATION,G6500\nPresident,Market Basket,G2400\nBUSINESSMAN,,G1200\nLAWYER,\"COLE, SCOTT & KISSANE, P.A.\",K1000\nPRESIDENT & CEO,\"DST SYSTEMS, INC.\",C5130\nowner,Rainbow Carpet,Y4000\nAttorney,Berowitz & Schagrin & Cooper,K1000\nLAWYER,STANDARD PACIFIC CAPITAL,Z9500\nATTORNEY,CHESAPEAKE ENERGY,E1120\nON-SITE ADMINIS,ST. JOSEPH HOSPITAL,H2100\nOWNER,\"STREAMLINE PRECISION, LLC\",Y4000\nATTORNEY,STATE OF TEXAS,X3000\nFAMILY SERVICE AGE,,Y4000\nEXECUTIVE,GOVERNMENT EMPLOYEE,X3000\nSALES,DAPHNE WARNER & ASSOCIATES,Y4000\nDIR-SALES PLANNING_PERFORMANCE,UNITED PARCEL SERVICE INC.,T7100\nFLAPDOODLES INC,,Y4000\nATTORNEY,CREWFORD LAW FIRM,K1000\nDirector,D & S Investments,Y4000\nBUSINESS,GE TRANSPORTATION SYSTEMS,M2300\nCEO,City Liquidators,Y4000\nPresident,\"Jemm International, LLC\",Y4000\nPhysicist,\"Brookhaven Nat'l Lab\",Y4000\nCredit Manager,Woodard,Y4000\nNORTHEAST VENTURES,,Y4000\nCIVIL ENGI,BAYSIDE ENGINEERING INC.,B4400\nPresident,International Matex Tank,T7200\nHome Maker,Na,Y2000\nVIETNAME EDUCATION FOUNDATION,,Y4000\nPRESIDENT,\"H&N FOODS INTERNATIONAL, INC\",G2000\nK & G MANAGEMENT BURGER KIN,PARTNER,G2900\nNORTHROP GRUMAN CORP,,D2000\nREAL ESTATE BROKER,\"LEPIC-KROEGER CORRIDOR, REALTO\",F4200\nSENIOR DIRECTOR,GENENTECH,H4500\nLA PLATA FAMILY MEDICINE,,Y4000\nDiagnostic Radiologist,Windsong Radiology Group,H1130\nVICE PR,UNITED HERITAGE MUTUAL LIFE,Y4000\nELECTRAMOTIVE INC,,Y4000\nSelf-Employed,Self,E1100\nGeneral Manager,Monarch Casino Reno,G6500\nMortgage Lending,Hinton Mortgage,F4600\nDEALER,MCKAY MOTORS INC,T2300\nREAL ESTATE,RALSTON MANAGEMENT INC.,F4000\nOWNER,SANTA MARIA VINEYARD & WINERY,G2820\nREED SMITH LLP,,K2000\nTED GLASRUD & ASSOCIATES,,Y4000\nInvestment Banking,Atlantic-Pacific Capital,F2100\nBERENS CAPITAL MANAGEMENT,,F0000\nATTORNE,\"SANCHEZ, MOWRER & DESIDERIO\",K1000\nHARRY OUTDOOR ADV,,G5230\nCONSU,STATE DEPARTMENT OF EDUCATION,Y4000\nSIGNATURE FINANCIAL,,Y4000\nATTORNEY,NTE LAW,Y4000\nUNIVERSITY MEDICAL CENTER,,H5150\nCOUNSEL,SENATOR JOHN KERRY,X3000\nICE CREAM CHURN INC,,Y4000\nATTORNEY,SCHRIFFIN & BARROWAY LLP,K1000\nSALES,DIGNITY FUNERAL HOMES,G5400\nVice President,St Paul Area Association of Realtors,F4200\nPRESIDENT,VEIT COMPANIES,Y4000\nCFO/OWNER,SCOPE IMPORTS,M3100\nPARSONS BRINCKERHOFF QUADE & DOUGLS,,B4000\nPresident,\"CORUM'S FLOWERS\",G1200\nSALESM,INDUSTRIAL FITTINGS & VALVEZ,Y4000\nHospital Administration,Boston Medical Center,H2100\nEXECUTIVE VICE PRESIDENT AND GENERAL M,MEREDITH CORPORATION,C1100\nPRODUCER,GRANADA AMERICA,J1200\nSR CATEGORY DIRECTOR,G-P CONSUMER PRODUCTS LP,E1160\nSELF-EMPLOYED,KINGSBURY ELEVATOR INC.,A4300\nNEW ENGLAND INST OF TECHNOLOGY,,H5200\nLUCERO & WRIGHT,,Y4000\nlobbyist,Kline Associates LTD,Y4000\nNational Historic Landmark Director,Historic Hudson Valley,X4200\nATTORNEY,C.I.R. LAW OFFICES,K1000\nREAL ESTATE,JAMSHID GOLTCHE,Y4000\nInvestor,Wells Fargo,F1100\nHousewife,None,J2200\nALLIED CONST SERVICE INC,,B1500\nPresident,Harmon and Company,F2600\nLAWYER TEACHER PUBLISHER,,J7700\nPresident of Chief S,Exsentoch Solutions,Y4000\nPHYSICIAN,PHYSICIAN,J1200\n\"NATIONS' EDUCATIONAL DEVEL CORP\",,Y4000\nHEALTH CARE,CHROME HEART,Y4000\nEXECUTIVE,NEC HEALTH LLC,Y4000\nPhysician,M. D. Visk M.D. PA,H1100\nPresident,Staab Agency,G1200\nAGRI-BUSINESS,BERRIEN PEANUT CO.,A1600\nEVP/CFO,Physical Therapy associates of Queens,J7500\nATTORNEY,JONES WALKER ET AL,K1000\nDirector,Hewlett-Packard Company,C5100\nVICE PRESIDENT-PUBLIC,\"EHEALTH, INC.\",F3100\nDAVID EFRON LAW OFFICES,,K1000\nPRES,FLORIDA CONSULTANT INCORPORATE,Y4000\nPRESIDENT,FORT LEE HOTEL MANAGEMENT,T9100\nRN Admin,Community Care,Y4000\nVeterinarian,United States Dept. Of A,X3000\nLIFE INSURANCE,NORTHWESTERN MUTUAL,F3300\nManager,Daedalus Books,Y4000\nEXECUTIVE VP,U. S. SUGAR CORPORATION,A1200\nPRESIDENT,\"LODGE LUMBER CO., INC.\",B5200\nTeacher,North Syracuse School District,X3500\nOperations Manager,Tahirih Justice Center,J9000\nCHAIRMAN & CEO,WOLFENSOHN AND COMPANY LLC,F2600\nSHAREHOLDER,\"LEONARD, STREET & DEINARD\",K1000\nGOVERNMENTAL AFFAIRS,USA FUNDS,F1400\nSTANDARD COMMERCIAL CORPORATION,,A1300\n\"Vice President, Radi\",NAB,C2100\nZUCCARO & SONS INC,,B3600\nDOCTOR,HARVEY GLASSER MD,H1100\nBroadcaster,Northern Broadcasting,C2000\nPHYSICIAN,\"CHILDREN'S HOSPITAL OF PHILADELPHIA\",Z9500\nExecutive,ADC Telecommunications,C4600\nOwner,AAA Rent to Own,G5300\nSENIOR,\"ONE-TO-ONE CONSULTING, INC.\",Y4000\nWarehouse,Cingular Wireless,J1200\nTCHR/INSTRUCT/PRG ASST,WAUKESHA COUNTY TECHNICAL COLLEGE,L1300\nDR MUSTO,,E3000\nEnvironmental,Hdr Engineering Inc.,B4400\nATTORNEY,WILBURN & SUGGS,K1000\nNON PROFIT ADMINISTRATION,OUR UNITED VILLAGES,Y4000\nO & S CATTLE,,A3000\nDIXIE MOVING,,T3100\nPres.,Robinson Farms Food Co.,Y4000\nInterior Design,Kier Group Inc,Y4000\nCEO,Purity Whoesale,G2500\ngraduate student,UC Davis,Z9500\nMISSOURI NURSING MANAGEMENT,,H0000\nEXECUTIVE,OCEAN ENERGY CORP,E1000\nChief Operating Offi,\"Triad Hospital, Inc\",H2100\nProfessor,Ut Austin,Y4000\nPresident,\"Lawyers Title of Topeka, Inc\",F4300\nL J KEEFE CO,,Y4000\nAMERICAN EXPRESS PROPERTY CASUALTY,,F4000\nTHE BOLLES SCHOOL,,H5100\nfilmmaker,self,J7400\nCOMMUNITY VOLUNTEER,COMMUNITY VOLUNTEER,G0000\nTreasurer,Werner Corporation,Y4000\nATTORNEY,MARILYN WEISS,Y4000\nCEO,OATREX INC,Y4000\nOWNER,COASTAL TIE AND TIMBER INC,Y4000\nPresident/CEO,Lance Johnson Building Company,B2000\nPRESIDENT,GO INDUSTRY,Y4000\nAttorney,Law Offices of Louis Spitters,K1000\nEXECUTIVE,GOULD PAPER CORPORATION,A5200\nSurgeon,\"Brigham and Women's Physician Organiza\",J1200\nFIRST STATE-JUNCTION CITY,,F1100\nCOMOTION FILMS/PRESIDENT/EXECUTIVE,,C2400\nCOLORADO INSTITUTE PIPSHIRE CO,,Y4000\nWESTERMAN ENTERPRISE,,Y4000\nExecutive,Quadrant Group,Y4000\nFARMING,HILLSIDE FARM,Y4000\nConsultant,Slef,X4110\nFuneral Director,Ransdell Funeral Chapel,G5400\nSOUTH WASHINGTON COUNTY SCHOOLS,,X3500\nCARB LUVIG COOK & KUFELD,,Y4000\nTeacher,Human Potential Project,Y4000\nReal Estate Agent,Millbrook Properties,F4000\nOWNER,MVT,Y4000\nPresident,Usa Delivery Service,Y4000\nROCKEFELLER FAMILY & ASSOCIATES,,X4100\nJESSE SUTTON,,B0500\nTEACHER,NORTHEASTERN UNIV.,H5100\nMechanical Engineer Designer,Retech Systems LLC,Y4000\nOFFICE MANAGER,WHITLOCK LAW FIRM,K1000\nTechnical Informatio,UPMC,H2100\nPSYCHIATRIST VETERANS,,X3000\nFOREST MANOR HEALTH CARE,,H0000\nKEYSTONE,,G4900\nFundraiser,\"Bettina Duval, Inc.\",J7400\nFREDERICK IMPLEMENT CO,,Y4000\nTRANSAMERICA FINANCIAL ADVISORS INC,,Y4000\nHARLEY DAVIDSON MOTORCYCLE DEALER,LATUS MOTORS HARLEY DAVIDSON,T8100\nTeacher,Pittsfield Public,X3500\nDIRECTOR,LAMPS PLUS INC.,M6000\nNurses Aid,Briarfield Of Milan,Y4000\nINFORMATION REQUESTED,NOT EMPLOYED,J5100\nManager,Milios Sandwiches,J1200\nO,LAW OFFICE OF JOSEPH F MCGOWAN JR,K1000\nPresident,Aloha Partner,C4500\nPRIMAVERA & BOYLE,,Y4000\nIntergovernmental Relations,\"Simon and Company, Inc.\",K2000\nPRINCIPAL,FLORIDA PRIME HOLDINGS/PRINCIPAL,Y4000\nELECTROLLAY DIV OF G O,,Y4000\nExecutive,Center Point Properties,F4000\n\"CRAIG'S CLEANERS\",,G5500\nRATHE PRODUCTIONS INC,,M2300\nPHYSICIAN,ST. VINCENTS,Y4000\nBANANA REPUBLIC,THE GAP,G4100\nPRESIDEN,TARGET DISPLAYS & EXHIBITS,Y4000\nCEO,WEBER SHANDWICH,G5210\nCFO,\"UNA VITA, INC.\",Y4000\nSOAR FOUNDATION,,J5000\nREAL ESTATE DEVELOPER/RANCHER,FIVE STAR LAND CO.,F4000\nMusician,Boston Symphon,C2800\nVP Engineering,\"Comcast of Ca/Co/Tx/Wa, Inc\",C2200\nCONSULTANT,AW ST. CHARLES & ASSOC. INC.,Y4000\nChairman/C.E.O.,Londen Insurance Group,F3100\nSelf Emp,Tms Restoration Inc,Y4000\nLawyer,Retired,F4000\nReal Estate/Construction,COLEMAN & WISE,F4000\nCONSULTANT,\"SMILOW & HALLOWELL, LLC\",Y4000\nWASHINGTON REPRES,FISHER CONSULTING,Y4000\nTRAILER MARINE TRANSPORT CORP,,T6200\nOwner,Bnp Construction Llc,B1500\nOWNER,\"LEESVILLE MOVING & STORAGE, INC.\",Y4000\nCEO,Delta Dental,H1400\nATTORNEY,HORVITZ & LEVY,K1000\nPARTNER,APRILLA LLC,Y4000\n\"LAW OFFICES OF JOHN O'SULLIVAN\",,K1000\nCAPITAL ORTHOPEDIC & SPORTS MEDICIN,,H1130\nChairman & CEO,Pegasus Communications,C2200\nREAL ESTATE MANAGER,LANGSAM PROPERTY SERVICES,J5100\nMEMBER OF CONGRESS,US CONGRESS,X3000\nHEALTHCARE,AM SURG CORPORATION,Y4000\nHARFORD COUNTY SCHOOLS,,X3500\nReal Estate,DACS Investments,F7000\nPUBLISHING,TIME INC.,C1100\nTN SOYBEAN PROMOTION,,Y4000\nCEO/CHAIRMAN,ANNEX BRANDS INC,Y4000\nARCHITECT,ARCHITECTS SOUTHWEST,B4200\nCO-OWNER,\"TARTER-CATE CO., LLC\",Y4000\nScientist,N I H,X3000\nsocial ser,Information Requested,H6000\nSECRETARY,IMHOTEP CONSTRUCTION GROUP,Y4000\nCONSTRUCTION CONTRACTOR,ASPRO,B1500\nCO-CHAIRMAN,KARR BARTH & ASSOCIATES,Y4000\nATTORNEY,HUDSON POTTS BERNSTEIN LLP,Z9500\nFILM AND TELEVISION PRODU,ABRAMS-JJ,C2400\nDIVISION 71 LOCAL CHAIR,BLET,Y4000\n\"President, Ford Cred\",Ford Motor Company,T2100\nCEO,ECONOMY ADVERTISING CO.,G5210\nattorney,\"o'melveny & myers\",K1000\nC.E.O.,PETERSON HOLDING CO.,Y4000\nDEVELOPER,METCO BUSINESS,Y4000\nCEO,OHIO CENTRAL RAILROAD,T5100\nMA EXTENDED CARE,,H2200\nmarketing consultant,Self employed,G5280\nVP/Branch Manager,\"Texas AgFinance, Farm Credit Services\",A4000\nPOLY-CARB INC,,M1500\nPRESIDE,SALEM PROFESSIONAL BASEBALL,Y4000\nPHYSIC,LOUISVILLE BEHAVORIAL HEATLH,Y4000\nInvestment,Shufro Rose and Co. INC,J1200\nOwner,Barnett Capital,F0000\nOwner,Seme Consulting LLC,Y4000\nBARNISTER GARDERNS INC,,Y4000\nVP GENER,HANSON PIPE & PRODUCTS INC,M2300\nStock Trader,\"Self/Free Health Care,Please\",G0000\nAttorney,\"Ellis & Irwin, LLP\",K1000\nexecutive,\"joremi enterprises, inc.\",J1200\nCHIEF FINANCIAL OFFICER,\"ISE, INC.\",F2400\nEng,Ecac Star Chem,Y4000\nEXECUTIVE,CUSTOM PUMP & EQUIPMENT,Y4000\nOWNER,\"WILSHIRE INT'L FINANCIAL NET.\",Y4000\nCONSULTANT,M & R STRATEGIES,Y4000\nFENTON H S,,L1300\n\"O'GARA HOME INSPECTIONS INC\",,Y4000\nPROJECT MGR./CONSULTANT,HARRIS ASSOC./PROJECT MGR./CONSULTA,F2100\nBUSINESS REPRESENTATIVE,SHEET METAL WORKERS LOCAL #12,LB100\nSELF,DENTIST,J7400\nCRONIN FRIED ET AL,,Y4000\nDC GOODMAN AND SONS,,B3400\nSpeaker/Coach,Self Employed,X0000\nHospital Administrat,Orange County Emergency Pet Clinic,Y4000\nManaging Partner,\"Texas Highway Markings, LLC\",Y4000\nCONTROLS ENGINEER,PARSEC AUTOMATION CORPORATION,Y4000\nLEAR FAN CORPORATION,,Y4000\nRETIRED,ESTCHESTER COMM. COL,X1200\nVICE PRESIDENT AND GENERAL MANAGER,KXLY-TV,C2100\nManagement Analyst,US Army,X5000\nIDEAL MEDICAL CENTER,,H2000\nCHAIRMAN,JOLLY RISSLER INC.,Y4000\nWESLEY LONG COMMUNITY,,H1100\nOwner,Schwend Transportation,A1000\nCOMUTER ARCHITECT,INCEL CORPORATION,B4200\nSALESMAN,AAA,T9400\nReal Estate Broker,Dakota Commercial,F4200\nPhysician,University of North Caro,H5100\nTELECOMM RESELLERS ASSOC,,Y4000\nFINANCIAL CONSULTANT,SELF,F5000\nHCR.MANORCARE INC./PRESIDENT/CEO,,H2200\nCONSULTANT,ETHOS LLC,Y4000\nUS Senate,US Senate,X3000\nREAL ESTATE BROKER,KELLER WILLIAMS MARKET PLACE,F4200\nArchitect,Integrated Design,Y4000\nREGISTERED NURSE,VA CONNECTICUT,Y4000\nEXECUTIVE,HAROLD W. MOORE & SONS,Y4000\nPresident,Cemetary Services Inc,Y4000\nOPERATIONS ANAL,G.R.C. INCORPORATED,Y4000\n,\"HOLISTIC STUDIES INSTIT. & SPIRIT,\",Y4000\nFRANKEL & ASSOC,,F4100\nFUTURECARE HEALTH & MGMT.,,H2200\nU S MARINES CORP,,X5000\nMANAGING DIRECTOR INST. SALES,BARCLAYS GROUP US INC.,F1100\nVP of IT,Fidelity National Financial,F4300\nSEATTLE ART MUSEUM,,X4200\nATTORNEY,COMBINED INSURANCE,Z9500\nPRESIDENT,ADAMS BENEFIT CORPORATION/PRESIDENT,Y4000\nAGENT,\"Amick & Associates, Inc\",F3300\nPRESIDENT,AFLAC,F3200\nDIRECTOR,GLOBIX CORPORATION,Y4000\nPRESIDENT,BOX CLEANERS AND LAUNDRY,G5500\nAttorney and Mediator,self,K1000\nPRESIDENT,\"CLEAR DEFENSE, LLC\",Y4000\nAdministrator,John and Mary Kirby Hospital,H2100\nattorney,Maury A Herman plc,J1200\nattorney,Johns Manville Corp.,J7400\nCARDENAS FINANCIAL SERVICES CONSULT,,F0000\nINFORMATION REQUESED,,Y2000\nExecutive,Sutter Home Winery,G2820\nCHIEF EXECUTIVE OFFICER,ST. ANTHONY SUMMIT MEDICAL CENTER,H2100\nOhio State University,,H5100\nATTORNE,NATIONAL VEHICLE PROTECTION,Y4000\nCLIENT SERVICES,ADAROO.COM LLC,Y4000\nMERRILL & BRODERICK,,K1000\nVICE PRESIDENT MARINE CORPS SYSTEMS,BOEING,D2000\nPresident,M. Jacob & Sons,Y4000\nED,BUS PROJECT,Y4000\nPrincipal,Griffin Johnson Madigan Peck,K2000\nQUALITY MGR,CAMBER CORPORATION,C5130\nCEO,The Wexler Group,K2000\nMayor,City Of Inglewood,X3000\nJOHNSTON & ASSOCIATES,,K1000\nEXECUTI,NEW ENTERPRISE STONE & LIME,B5100\nKARPAY COMPANY,,J5100\nPresident (Sub-Part),KOCH FERTILIZER LLC,E1160\nVICE PRESIDENT,ALDRIDGE ELECTRIC INC,B3200\nOWNER,DAVID CLANTON,Y4000\nYACOUBIAN JEWELERS,,G4600\nTHE ROSEN FUND GROUP,,J1200\n\"ANGELO & BANTA, P.A./PRESIDENT/CEO\",,K1000\nCONSTRUCTION EQUIPMENT DISTRIBUTOR,OHIO CAT,G5300\nPANTRY RESTAURANT & MOBILE TRUCK ST,,G2900\nMOVIE PRODUCER,RAINFOREST FILMS/MOVIE PRODUCER,C2400\nDerivatives Sales Rep,WELLS FARGO BANK N A,F1100\nDirector Alliances,\"Peoplesoft U.S.A., Inc.\",C5120\nHOWE INDUSTRIES,,Y4000\nlobbyist,tech net,C2600\nSEALY POSTUREPEDIC,,Y4000\nLattice Engines,,Y4000\nGallery Owner,Edward Tyler Nahem Fine Art,Y4000\nPresident,Foundation,X4100\nVICE PRESIDENT,EMBRAER,Y4000\nWASHINGTON STEEL CORP,,M2100\nPHYSICIAN,XRC,Y4000\nPARTNER,UNWIRED REVOLUTION,Y4000\nASSMEBLYWOMAN,ST OF CA,X3000\nreal estate,Keller Williams Realty - Ab,F4200\nPart-Time Clerical,Lincoln Public Schools,X3500\nConsultant,Hamilton gullett Davis & Romin,Y4000\nINTRAFI,,Y4000\nDENIS STONE CPA PC,,F5100\nOwner,Picker Media,Y4000\nRODMAN WARD,,Y4000\nS & H ALUMINUM PRODUCTS INC,,B2000\nOwner,C F Bean Corporation,Y4000\nSELF EMPLOYED,RUSHINGS,J1100\n1ST NATIONAL OF OAK BROOK,,J1100\nHEAD OF PUBLIC POLICY,GUGGENHEIM PARTNERS LLC,F2100\nDENTIST,JAMES L. CARAZOLADMD PA,H1400\nCHAIRMAN,VANTAGE PARTNERS L.L.C.,F2500\nLEGISLATOR,NEW JERSEY LEGISLATURE,X3000\nSenior Vice President,DLZ Corporation,B4000\nEXECUTIVE,COLSA INC.,D4000\nMinister-Educator,American Bible Society,Y4000\nMANAGER,\"COLUMBIA FRUIT PACKERS, INC\",A1400\nINVESTMENTS,SELF EMPLOYED,Y1000\nVICE P,RINKER MATERIALS CORPORATION,B1000\nPresident of Digital,McGraw-Hill,C1100\nM.A. Inernationasl R,Douglas Elliman Real Estate,F4000\nPhysicist,\"Rayotek Scientific, Inc\",J1200\nConsultant,\"ADS Ventures, Inc.\",G5280\n\"AVP, Dir of Compensa\",Brown-Forman Corporation,G2820\nPresident,Katharine Gibbs School,H5200\nEXECUTIVE OFFIC,BIRMINGHAM AREA AOR,F4200\nTeacher,Tahlequah Public Schools,X3500\nOwner,Van Morris Crop,Y4000\nOWNER,HP VIDEO,Y4000\nRONALD L GARNETT ATTORNEY AT LAW,,K1000\nMedia Consultant/Ran,Information Requested,G5200\nMARKETING MANAGER,UC HEALTH,J1200\nARCHITECTURAL CONSULTANT,SELF,B4200\nJANYS HARVEY REAL ESTATE INC,,F4200\nHUBBARDGT@GMAIL.COM,NONE,Z9500\nBERWANGER OVERMYER AND ASSOC,,F3100\nTRAINING CONSULTANT,TSI STRATEGIES,Z9000\nNEWMANS INC,,M2300\nSPCC,,H1110\nEMPIRE FOOD DIRECTORS,,G2000\nMINIFIBERS INC,,Y4000\nOWNER,MAINSTREET VENTURES,Y4000\nSO SUBURBAN GASTROENTEROLOGY,,H1130\nATTORNEY,OLSEN & WHITE LLP,Z9500\nPRESIDENT,BLUE RIDGE DRILLING,J6200\nattorney,\"Barna, Guzy & Steffen\",K1000\nRUBIN BAUM LEVIN CONSTANT,,K1000\nEVP AND GENERAL COUNSEL,NASDAQ OMX GROUP,F2400\nCONSULTANT,FROGUECLARK,K2000\nCPA,Neff & Ricci LLP,Y4000\nEXECUTIVE,GLOBAL PARTNERSHIPS,X4000\nPresident,Suncoast Chrysler Jeep,T2300\nInformation Requeste,Newmark,F4000\nOWNER,FLIGHTWARE SOLUTIONS,Y4000\nPUTZEL ELEC CONTR,,Y4000\nGOLDRICH/KEST/HIRSCH,,F4000\nCongressman,,Z1100\nCHIEF EXECUTIVE OFFICER,LA MAESTRA FAMILY CLINIC,Y4000\nCFO,Steve Summers Voice-Overs,Y4000\nATTORNEY,GIBBONS,Y4000\nRetired,San Francisco Police,X3200\nOWNER/CEO,EBERHARDT COMPANY,J1100\nM,\"MARITIME PROTECTIVE SERVICES, INC\",Y4000\nCREDIT SUISSE/FIRST BOSTON/EQUITY A,,F2100\nWESTERN OKLAHOMA CHAPTER,,B3200\nJOHN M WARD OIL & GAS INV,,E1100\nOwner,Wintec Energy Ltd,E1000\nPRESIDENT,\"FLOW CONSTRUCTION COMPANY, INC\",B1500\nCUSHMAN CAPITAL,,Y4000\nchemist,onyx enviormental services,J1200\nFINANCIAL SERVICES,JUMBO LOANS,Y4000\nPHYSICIAN,ARA,H1130\nTrib,Prairie Band Potawatomi Nation,G6550\nRICHMOND LUMBER CO,,B5200\nMANAGER,AIG,F3100\nAttorney,Philip F. Maher & Associates,K1000\nCEO,FRANZ BAKERY,G2100\nPROPERTY ADVISING GROUP,,Y4000\nOWNER,\"SCHNEIDER, BLUHM AND LOEB GALLERY/O\",J5100\nCONSULTANT,THE HOHLT GROUP,K2000\nEXECUTIVE PRODUCER,MAGGIE VISION PRODUCTIONS,C2000\nSALES,RE/MAX REALTY TEAM,F4200\nUCLA/ADMIN/EDUCATOR,,H5100\nDIRECTOR OF FIELD SERVICES,U.S.E.C.,Y4000\nPhysician,Starcare,H1100\nVICE P,LEGACY TOYOTA OF TALLAHASSEE,T2310\nJOHNSTON REED AND MITCHE,,Y4000\nENGINEER,CPM HOLDINGS,Y4000\nPATENT ATTORNEY,\"Mlr, LLC\",Y4000\nCHIEF EXECUTIV,HIGHLANDS UNION BANK,F1100\nWAUESHA COUNTY,,X3000\nHOFF & EVANS L L C,,K1000\nOwner,Roxanne Lee Atty. at Law,K1000\nDRAKE PETROLEUM CO,,E1160\nCONSULTANT,\"SELF-EMPLOYED (CLEAR VIEW STRATEGIES,\",G5200\nFinancial Consultant,\"Ffriend Enterprises, Ltd\",Y4000\nExecutive,Lamar Leasing Company,Y4000\nInsurance Sales,Thrivent,Y4000\nSALES,NORTH SHORE STEEL,Y4000\nASM,At&T,C4100\nRETIRED PEDIATRICIAN,RETIRED,X1200\nSTANLEY HIRSH,,F4500\nConstruction,GM Sager Construction Compan,B1500\nENGINEERING SUPERVISOR,\"THUNDER BASIN COAL COMPANY, LLC/ENG\",E1210\nBUSINESS OWNER,BRENDA ATHLETIC CLUB,G5800\nPUBL,SOCIAL SECURITY ADMINISTRATION,X3000\nENGINEER,JETTA OPERATING COMPANY INC.,E1150\nSTEPHENS MILLIRONS HARRISON & GAMMO,,K1000\nPRESIDENT & CEO OF PSCO,EXCEL,Y4000\nREAL ESTATE BROKER,ATTORNEY,K1000\nVALUEQUEST LTD,,Y4000\nFINKEL WHITEFIELD SELIK,ATTORNEY,K1000\nTHE THORNDIKE COMPANY,,Y4000\nGAY & MCCALL,,K1000\nFINANCIAL OFFICER,TURBO RESOURCES,Z9500\nChairman,The Global Panel Foundation,Y4000\nDEVELOPMENT,UNCG,Y4000\nEXECUTIVE DIRECTOR,CREATING GREAT PLACES,Y4000\nSELF-EMPLOYED WIFE STATE GOV,,G0000\nMother & Venture Phi,None,J1200\nFINANCE EXECUTIVE,FEDEX CORPORATION,T7100\nEXECUTIVE,LONE MOUNTAIN CONTRACTING,B1000\nCONSULTANT,GAME OF WORK,Y4000\nCredit Analyst,Gavilon,Y4000\nPRESIDENT,W.A.I.,Y4000\nAUTO DEALER-GM,JIM WEPNIG INC.,Y4000\nAttorney,Walter Pollock & Sheehan PC,K1000\n\"ANESI, OZMON & ROBIN LTD\",,K1000\nTRAINER,BODDIE-NOELL ENTERPRISES,G2900\nATTORNEY/NON PROFIT EXEC,LINCOLN PARKS FOUNDATION/ATTORNEY/N,Y4000\nANESTHESIOLOGI,COMPREHENSIVE ANESTH,H1130\nOLATHE OB/GYN/PHYSICIAN,,H1130\nOBER KALER GRIMES & SHRIVE,,K1000\nPRESIDENT,MC CORMICK FARMS,G1200\nReal Esate Developme,Metropolitan Properties of Chicago LLC,F4000\nDOWCO INC,,T8300\nMANAGING PARTNER,MOHR PARTNERS,Y4000\nCEO,HUNTINGTON BANK,F1100\nOwner,Sherman and Nathanson PC,Y4000\nOwner,Meyer Automotive,T2300\nPRESIDENT,EXPRESS MAUNE INC.,J1100\nAttorney,Goodell Stratton Edmonds,Y4000\nCITY OF WAYNESBORO,,X3000\nSENIOR PLANNER/SCHEDULER,\"FIRCROFT, INC.\",Y4000\nPRESIDENT,SARKOWSKY INVESTOR CORP.,F4000\nCOMMUNICATIONS DIRECTOR,ARAMARK/COMMUNICATIONS DIRECTOR,G2910\nHAYDON BOLTS INC,,Y4000\nSales,Pro Tech Laboratories,Y4000\nPRESIDENT,\"SMITH DEVELOPMENT COMPANY, INC.\",Z9500\nLOBBYIST/LAWYER,HEWLETT-PACKARD COMPANY,Z9500\nPhysician/Dental Sur,JB Dental Implant Center,H1400\nDevelopment,HOOVER INSTITUTION,H5100\nPRINCIPAL RESEARCH ENGINEER,MITRE CORPORATION,D3000\n\"ACTIVISION, INC./CHAIRMAN/CEO\",,C5120\nAcount Director,Creative Group,Y4000\n\"JACK FRY'S RESTAURANT\",,G2900\nINS SALES INTER AGENCY INSURANCE SE,,F3100\nWRITER,FIELDSTEAD & COMPANY,X4110\nCEO,Big Spring Govt EFCU,F1300\nPRESIDENT/CEO,ARKANSAS RESEARCH ALLIANCE,Y4000\nsocial worker,\"SUNY, University at Buffalo\",H5100\nWarehouse Driver,Victory Van Corp,Y4000\nSYDNEY FETNER ASSOCIATES,,F4500\nPHYSIC,LONG ISLAND COLLEGE HOSPITAL,H1130\nREAL ESTATE INSPECTOR,SELF,F4000\nDOCTOR,PHYSICAL MEDICINE & REHABILITATION,Y4000\nATTORNEY,SHOOK HARDY & BACON,J7400\nCO-FOUNDER/CO-CIO,KLS DIVERSIFIED,Y4000\nStudent,Georgetown University Law Center,H5170\nManager,bgb,Y4000\nInsurance Sales,Gleason Corporation,F3100\nPRESIDENT,BHS LLC,Z9500\nSOCIAL WORKER,PEOPLES COMMUNITY HEALTH CLINIC/SOC,Y4000\nWASSERMAN MANCINI & CHANG,,Y4000\npartner,Paul Weiss,K1000\nCONSULTANT,KENNETH LARSON/CONSULTANT,Y4000\nVice President,DMG Marketing Group,Y4000\nExecutive Vice President,Innovative Artistist,Y4000\nCONSU,ETHICS & PUBLIC POLICY CENTER,Y4000\nNEWAN PRINTING CO INC,,G1200\nEngineer,H2M Group,B4200\nPublisher,Creative Media,C1100\nInvestor,Skymoon Ventures,Y4000\nNon-Dir Intl VP,UFCW LOCAL A060,LG100\nBUSBY CONSTRUCTION CO,,B1500\nCHAIRMAN,AMERICAN INSTITUTE OF PUBLIC SERVICE,Y4000\nPresident,Ryan Community,H2000\nEFFORTS SYSTEMS,,Y4000\nPresident,Suffolk Construction Co.,B1000\n\"WOMEN'S POL CAUCUS\",,J7400\nOWNER,VANDALIA ENT,G5270\nMARINE DEALER,JAMISON MARINE INC,Y4000\nM.D.-Group Head,Citicorp / Citibank,F1100\nPROFESSOR,WORCESTER POLYTECHNIC INSTITUTE/PRO,H5100\nBESI CORP,,Y4000\nCEO,ACNM,Y4000\nsoftware engineer,Lawrence Berkeley National Laboratory,X3000\nHANLEY & SPADORO,,Y4000\nARTISTS,,X0000\nExecutive,Alaten Co Inc,Y4000\nUnion flooring Insta,Floodrends Inc.,Y4000\narchitect,ICON Architecture,B4200\nAIM WINDOW & DOOR CO,,Y4000\nRESTAURANTEUR,SELF-EMPLOYED,J1100\nPresident,Diversified Lithographics Inc,C1300\nOWNER/PRESIDENT,\"GARD'N WISE DISTRIBUTORS\",Y4000\nJJ GREGORY & SON INC,,Y4000\nOwner,J&L Harley,Y4000\nCORRECTION CORP OF AMER,,G7000\nCHAIRMAN,SQUIRE SANDERS & DEMPSEY,F2100\nlawyer,Shopoff & Cavallo LLP,K1000\nFormer County Commission,Not employed,Y1000\nMAYER BROWN,,K1200\nSVP - Healthcare,\"Community Health Systems, Inc\",H2100\nMIDWEST TOOL & ENG. CO.,,M2300\nLOGISTICS,BUZZI UNICEM USA,B5100\nMORTGAGE BANKER,COUNTRY WIDE,Y4000\nPROGRAMMER ANALYST,JANSSEN RESEARCH AND DEVELOPMENT LLC,Y4000\nEditor World Refugee,U.S. Committee for Refugees & Immigran,Z9500\nATTO,WATSON JIMMERSON GIVHAN MARTIN,K1000\nOWNER,\"PERRY'S ICE CREAM\",G2100\nRESEARCH MANAGER,NOTRE DAME,H5100\nVice President,\"Hardrives Paving, Inc\",B3000\nACCOUNTANT,IN DEMAND,Y4000\nPresident & CEO,Credit Union Direct Lending,F1300\nScientist,Sloan Retforn,H2100\nVP/General Manager,Community Asphalt Corp,B1000\nhomenaker,homemaker,Y1000\nVICE PRESIDENT,CONAGRA FOODS INC.,G2100\nSHOWBUSINESS,SELF,J1100\nPresident,R Smith And Sons Toyota,T2300\nSR. VICE PRESIDNET,OGILVY GOVERNMENT RELATIONS,K2000\nEMERGENCY PHYSICIAN,MACNEAL HOSP,H1100\nNE FED REP WOMEN,,J1100\nDIRECT OF OPERATIONS,JIB MANAGEMENT INC.,Y4000\nSalesman,Midstate Printing Corp.,C1300\nOPHTHALMIC SURGE,SPOKANE EYE CLINIC,H1120\nTeacher,Hoff-Barthelson Music Sc,Y4000\nSHIP PILOT,JAMES FRUDAKER,J6200\nPARTNER,TELEMUS CAPITAL,F0000\nCEO,BIAX CORPORATION,J1100\nEXECUTIVE,ARMED FORCES MKT COUNCIL,G5200\nPRESIDENT,BEBCO INC.,Y4000\nATTORNEY,TRIDENT CAPITAL INC,F2500\nCHABLISS & BAHNER,,Y4000\nOWNER,RM SEAFOOD,Y4000\nPATTERSON SMITH & ASSOCIATES,,Y4000\nREAL ESTATE DE,THE HABITATE COMPANY,F4200\nAIDE,CHARLIE CRIST FOR U.S. SENATE,J1300\nFINANCIAL PLANNER,\"BROWNSON, REHMUS\",F2100\nC.E.O.,SELF-EMPLOYED,M2300\nDEAN WITTER & ASSOC,,F2100\nZAPPIA FLAGELLA & ZAPPIA ATTORN,,K1000\nPHYSICIAN,PCOM SULLIVAN COUNTY MEDICAL CENTER,H1130\nDOME CAPITAL,,C5130\nM D ANDERSON HOSPITAL,,H1130\nPASTOR,WILMINGTON LUTHERAN CHURCH,X7000\nManager,Dairy Queen,A2000\nCHIE,E.J. NOBLE HOSPITAL-GOUVERNEUR,H2100\nManaging Partner,\"LaPorte & Associates, Inc\",B0500\nDIR. OF HUMA,EQUAL 3 COMMUNICATIONS,Y4000\nATTORNEY,SIEGFRIED BINGHAM,K1000\nFAN RONGVED ERICKSON,,Y4000\nPresident,EAH Housing,Y4000\nPresident/Property M,A.J. Dwoskin & Company,F4100\nEXECUTIVE,HIRSCHFELD STEEL CO.,M2100\nPART,GLOBAL INFRASTRUCTURE PARTNERS,F2600\nMANAGEMENT,SCEA,Y4000\nBUSINESS OWNER,GP GROUP,Y4000\nINVESTMENT MANAGER,EQUITY MANAGEMENT ASSOCIATION/INVES,F2100\nOWNER,MCCORVEY SHEET METAL WORKS,J6200\nBANK,SOUTHERN COMMUNITY BANK & TRUS,F1100\nEXECUTIVE,DON ALLEN CAR DEALERSHIP,T2300\nComputer Manager,Requested,C5100\nATTORNEY,HAWKINS & PARNELL,Y4000\nBusiness Administrat,Self,F2100\nREAL ESTAT,TRAIL HEAD LAND DEVELOPM,F4100\nVP BRAND MGMT & PUBLIC AFFAIRS,PACIFIC LIFE,F3300\nAMERITRUST NATIONAL,,Y4000\nADVANCE FOR F RAISER,,Y3000\nWESTERN CAREER COLLEGE,,H5200\nREALTOR,ADVANTAGE REALTY,F4200\nDentist,Retired,J5100\nPRIVATE INVESTOR,UNITED VENTURES L.L.C.,Y4000\nSTOLL NUSSBAUM & POLAKOV,,Y4000\nWILLCOX GIBBS INC,,Y4000\nRURAL OPPORTUNITIES I,,J9000\nANTIQUE RESTORATIONS,SELF EMPLOYED,G4600\nREAL,DAVE PERRY MILELR & ASSOCIATES,Y4000\nU OF ARIZONA,,H5100\nOwner,Rice Lake Construction Group / Deerwoo,B1500\nPROFESSOR,AUSTIN COMMUNITY COL,H5100\nPRESIDENT AND CE,MICHAEL BAKER CORP,B4000\nHomemaker/Real Estat,Self,F4000\nReal Estate Investment,\"Hilby Wilson, Inc\",F4000\nAUTO DEALER,EASY AUTO,Y4000\nPilot,Maya Air LLC,Y4000\nREDSTONE THEATRES,,C2200\nmilitary,Navy,X5000\nPARTNER,\"ADAMS AND REESE, LLP/PARTNER\",K1000\nINVESTMENT EXECUTIV,SELWAY PARTNERS,Y4000\nMEDICAL DOCTOR,PEDIATRICS PLUS,H1100\nOWNER,KOREK LAND COMPANY,Y4000\nPres,AGG Rok Materials,B1000\nINVESTMENT M,\"KEYSTONE CAPITAL, INC.\",F0000\n\"MUNOZ, HOCKEMA ET AL\",,K1000\nHUDSON PHYSICAL THERAPY,,H1700\nBUSINESSMAN,LINDSAY AND COMPANY,Y4000\nInvestment Advisor,Shepherd Kaplan,Y4000\nPresident & Ceo,Visit Orlando,T9000\nCEO,\"Tenenbaum Recycling Group, LLC\",M2400\nPORTFOLIO MANAGER,TOTH FINANCIAL,Y4000\nFARMING-REAL ESTATE MANAGEMENT,,F4000\nAttorney,Richard Raskin,J1200\nNATIONAL SUPERIOR,,M3000\nOwner/Executive,Paradigm Construction Corporation,B1500\nPRESIDENT AND CEO,AMERICAN TRAFFIC SAFETY SERVICES ASSOC,Y4000\nRJ GORDON & COMPANIES,,C5140\nMANAGER,ANNENBERG,Y4000\nDRIVER,E & K CAR SERVICE,T4200\nPROPERTY MANAGEMENT,JSM APARTMENTS,F4500\nOPERATIONS MANAGEMENT INT,,Y4000\nHotel Management,White Lodging Services,T9100\nCA. COASTAL COMMISSION,,Y4000\nPresident & CEO,\"Summit Materials, LLC\",B1000\nRETIRED,GSU,X1200\nCOMMERCIAL BUILDING CONTRAC,,Y4000\nEXTERNAL AFFAIRS DIRECTOR,VERIZON,C4100\nATTORNEY,DURWARD DUPRE,Y4000\nCATHOLIC DIOCESE OF PHOENIX,,X7000\nTech,Best Software,J1200\nINVESTMENT MGMT,OLSON MANAGEMT CORP,Z9500\nINFO REQUESTED,Parthenon Capital,F0000\nKIENOWS,,Y4000\nDELTA PRIVATE EQUITY PARTNERS,,F2600\nPresident,HOLLENBACK & NELSON,Y4000\nVICE PRESIDENT SALES,BURFORD CORPORATION,G2100\nBusiness Owner (Meat Processing),\"La Quercia, LLC\",Y4000\nMarketing,Showtime Networks,C2400\nVISTA INDUSTRIAL PRODUCTS INC,,J1100\nUW-EAU CLAIRE,,H5100\nBUSINESS DEV,A.G. CONSULTING L.L.C.,Y4000\nVP General Sales Man,Southern Wine & Spirits of Central FL,G2850\nPROPISAL CONSULTANT,SELF-EMPLOYED,Y4000\nCHAIRMAN,EVERCORE PARTNERS INC.,F2100\n2ND LETTER MAILED,,E1100\nOWNER,KULLMAN CONSULTING,Y4000\nHUBBA INC,,B1500\nCommercial Insurance,Lupfer Frakes Inc.,Y4000\nOwner,Dusty Rhoades Marina,Y4000\nScientist,Defenders of Wildlife,JE300\nHR MANAGER,UNITED PARCEL SERVICE INC,T7100\nDICTOGRAPH/WESTERN CT SECURITY/SECU,,Y4000\nJOHN FRESHMAN ASSOCIATES INC.,,K2000\nMANAGING DIRECTOR & S,MADISON GROUP,K2000\nREPUBLIC BANCORP,,F4200\nExecutive,Insource Contract Services,Y4000\nPhysician,\"Brad Wysong, M.D.P.A.\",H1100\nRICE FARMER,LOGAN CREEK RANCH,A1600\nREGI,FIRST AMERICAN TITLE INSURANCE,F4300\nATTORNEY,\"HALL, FESTILL, ETAL\",K1000\nAgent,Self,F3400\nBRANCH BANKING & TRUST CO,,F1100\n\"STONE, LEYTON, GERSHMAN\",,Y4000\nDir Of Sales,Radio One Inc,J1200\nHOWES LINEBERRY,,Y4000\nCEO,GALACTIC VILLAGE GAMES,Y4000\nBILL ALEXANDER AUTO CTR,,T2300\nJOHN F SCIAME CONSTRUCTION,,B1000\nJAMISON AND SULLIVAN,,G5270\nEXECUTIVE,CHECKFREE CORPORATION,F5000\nWESTBROOK CAPITAL PARTNERS LLC,,Y4000\nDENTIST,CASTLE VALLEY DENTAL,Y4000\nI E TECHNETICS,,Y4000\nAdvisor,Capital Guardian,Z9500\nManufacturing Business Owner,Anderson Manufacturing Company Inc,Y4000\nAMERICAN LAND TITLE ASSOCIATION,,F4300\nOil & Gas,\"Upland Exploration, Inc.\",Y4000\nChef Resturanteur,Pane e Vino Tvaltarian,C2100\nPRES,IKE AUEN DISTRIBUTING CO. INC.,G2850\nPRESIDENT,THE JOHN TEMPLETON FOUNDATION,X4100\nBATES MECKLER BULGER,,K1000\nlawyer,selfemployed,K1000\nARMY MAT TECH,,X5000\nCARROLL & HALBERG,,Y4000\nExecutive,Anric Corp.,A5200\nManager of Distribution Lending,CoBank,E1610\nIMMIGRANT,CANAL COMMUNITY ALLIANCE,Y4000\nDUNNAVANT ENTERPRISES,,Y4000\nNORWOOD CO,,Y4000\nSenior VP,Corcoran Group Real Estate,F4200\n\"Alpaca Breeder, Rancher and Sale Promo\",Self employed,A3000\nPHYSICIAN,CANCER CENTERS OF CAROLINAS,H2000\nOwner,Ignition Interlock Systems/IA,J1100\nADVERTISING SALES EXEC,REALNETWORKS,C5120\nPHCP DISTRIBUTOR,MKS PIPE & SUPPLY,B5300\nINSURANCE,LEXINGTON INSURANCE,F3100\nREALTOR,ADVANCE REALTY MANAGEMENT,J5200\nVP,K LIMITED,T3100\ndeveloper,Ellicot Development Company,F4100\nHOUSEWIFE,SELF,A5000\nADMINISTRATOR,YELLOW TRANSPORTATION,T3100\nJBW LAND AND MINERALS CO,,Y4000\nCo-Owner,\"Ocala Recycling, Inc\",M2400\nSALES,PEPCO CONTROLS/SALES,Y4000\nATTORNEY,\"FELDMAN, KLEIDMAN, A\",K1000\nTREBANA INSTRUCTOR,SELF EMPLOYED,Y4000\nPUBLISHER,\"SCOTUS, LLC\",Y4000\nDealer,Iverson Chrysler Center,T2300\nSecretary,Lucier LLC,Y4000\nPSYCHOLO,VOLUNTEER TREATMENT CENTER,Y4000\nVP - SALES,ASH GROVE CEMENT CO.,B5100\nMAY NATIONAL BANK OF MARYLAND,,F1100\nI SURGEONS,,H1100\nPresident & COO,Robison International Inc.,K2000\nDELTA MARINE INDUSTR INC,,Y4000\nTHE CONSULTING GROUP,,J7400\n\"DIR, REGIONAL SALES, EP\",ST. JUDE MEDICAL,H4100\nN J DEPT LAW & PUBLI,,X3000\nINSURANCE AGENT,HIA,Y4000\nSMALL BUSINESS O,STERLING WHOLESALE,Y4000\nCEO,AMBER PROPERTIES,F4000\nPRESIDENT/CEO,ECM,Y4000\n,\"BARTLIT, BECK, HERNAN, PALENCHAR &\",K1100\nPRINTER/PROORFREADER,GOVERNMENT PRINTING OFFICE,C1300\nMIDDLESEX DISTRICT ATTY OFFICE,,X3200\nCEO,\"The Laclede Group, Inc\",Y4000\nSTAFFER,LINDA FOR SENATE 2012,Y4000\nNurse,South Shore Home Health Services,J1100\nAttorney,Robins Kaplan Miller,J1200\nSALES,COMMONWEALTH BRANDS INC.,A1300\nPrincipal,Magnolia Marketing Company,J5100\nNEENAH PUBLIC LIBRARY,APPLETON,X4200\nOWNER,BADIA SPICES,J5200\nPharmaceutical Representative,Merck & Co Inc,J1200\nCONSU,SCHRAMM WILLIAMS & ASSOCIATES,Y4000\nDean/Professor,UC Berkeley School of Law,H5170\nHAITHANH MARKET,,Y4000\nMN DEPARTMENT OF HEALTH,,X3000\nAttorney,\"O'Malley & Langan, P.C.\",K1000\nCLAIMS ADJUSTER,LIBERTY MUTUAL INSURANCE,F3400\nREGIONAL DRECTOR,RURAL/METROCORP,H3000\nActress/Producer,Self,C2400\nSELF EMPLOYED - FARMER,BERNARD A TE VELDE DAIRY,A2000\n\"O'NEILL & ANTHY\",,K2100\nConduit total listed in Agg field,self,G0000\nFAMCO INVESTMENTS,,F4100\nEXECUTIVE,CIMA,Y4000\nOPTICAL CONSULTANT,SELF EMPLOYED,G0000\nPHYSICIAN,UNC AT CHAPEL HILL,H5100\nArchitect,\"P A Joelson & Co, Inc\",B4200\nSALES,ARUBA NETWORKS,C4300\nKENNEDY RICE/CONSULTANT/CONSULTANT,,A4000\nAssociate,Self,G0000\nPrrofessor,University of California,H5100\nHarvey Lindsay Commercial Real Estate,Self,F4000\nSTEPHENS & STEPHENS L L P,,K1000\nGENERAL DECOR MFG CORP,,Y4000\nFood Manufacturing,American Sprinkle Company LLC,Y4000\nExecutive - Business Development,GE Technology Infrastructure,M2300\nInsurance Broker,Body-Borneman Insurance,F3100\nCAR DEALER,INFORMATION REQUESTED PER BEST EFFORTS,T2300\nATTOR,MC LAUGHLIN & MC CAFFEY L.L.P,K1000\nVICE PRESIDENT/MARKE,STATION CASINOS,G6500\nRESEARCH PROFESSOR,UNIVERSITY OF NEBRASKA,H5100\nPRINCIPAL/PARTNER,\"BHMM ENERGY SERVICES, LLC\",E1000\nPresident,Self Reliance Foundation,J1200\nVice President  Ops Mgt,Comcast Cable Communications I,C2200\nFund Development Manager,Bucyrus Community Hospital,Y4000\nTHE COMPUCARE COMPANY,,J7400\nAdministrator,Prime Time Shuttle,Y4000\nEngineer,Trinity Associates Inc.,G5200\nMACFARLANE REALTY,,F4200\nLAWYER,ROBERT PARKERSON LAW OFFICES,J7400\nACTRESS,,C5130\nLAWYER,PHILIP MORRIS INTERNATIONAL,A1300\nOWNER,NORFLEET CATTLE COMPANY,Y4000\nHUMAN RESOURCES CONSULTANT,SELF,Z9500\nDIRECTOR GENERAL AME,AMERICAN TOWER,Y4000\nATTORNEY,BROWN & BROWN LAW OFFICE,K1000\nFINANCE DIRECTOR,JULIA BROWNLEY FOR CONGRESS,J1200\nPhysician,California Emergency Phy,H1100\nAT,ROBINSON BRADSHAW & HINSON P. A.,K1000\nConsultant,Gray-Bowen,Y4000\nTAG AGENT,SELF-EMPLOYED/TAG AGENT,X3000\nSecurities Analyst,Institutional Capitol,J5100\nFARMER,\"SARBJIT ATHWAL, FARMER\",G2100\nMEDICAL,MIDWEST MEDICAL SUPPLY MMS,Y4000\nMalcom Pirnie,,Y4000\nPAUL HASTINGS/ATTORNEY/PARTNER,,K1000\nPresident,Century 21 Lake Isabella Realt,F4200\nATTORNEY,CALVERT LAW,K1000\nCORPORATE COUNSE,FIRST MARINER BANK,F1000\nChief Scientist,Physical Optics Corp,M9100\nCommunications Director,Carmouche for Congress,J1200\nPROJECT ADMIN,TOWNSHIP OF MONTCLAIR,X3000\nAttorney,\"Orrick, Herrington & Sutcliffe llp\",K1200\nFINANCIAL PLANN,CABLEVISION SYSTEMS,C2200\nTHONET ASSOCIATES,,Y4000\nDOUBLE EAGLE DISTRIBUTING,,G2850\nCEO,Radiant Oil Co,E1100\nCONSULTANT,\"THE DRAKE'S NEST\",Y4000\nSALES,QAD,Y4000\nVice President,Post & Schell,K1000\nCOUNSTLOR,SCHOOL,H5000\nExecutive,red hat,C5120\nauthor/architect ret,Self,J7400\nOwner,Staples Building,Y4000\nChief Executive Officer,\"St John's Health Care\",Y4000\nAttorney,\"Sears, Roebuck & Co.\",G4300\nMURPHY OPERATING CORP,,E1100\nDOCTOR,VALLEY ENT,Y4000\nrequested,None,X1200\nBENNETT HOMES FOUNDATION,,B2000\nMGR.,FREEDOM TRANSPORT INC,T0000\nCEO,ENERGEN,Y4000\nGENERAL,P.J. WYER CONSTRUCTION INC.,B1500\nOWNER,SHERWOOD CONSTRUCTION,B1500\nSmall Business Owner,Dixie Workshop Inc,Y4000\nOWNER,RICKARD METALS INC.,Y4000\nSenior Fellow,Resources for the Future,JE300\nCOMPUTER PROGRAMMER,USDA,X3000\nAsst Secy & Assoc Gen Cnsl,UTC,D2000\nEXECUTIVE,PARK STRATEGIES LLC,G5200\nI,CBIZ BENEFITS & INSURANCE SERVICE,F3100\nCultural Anthropologist Phd and two ma,no job,H5100\nMILLARD METAL SERVICE CENTER,,M5000\nRDOEQUIPMENT COMPANY,,Y4000\nLOCHER INTERESTS LTD,,Y4000\nTHE HALL AUTO MALL,,T2310\nPHYSICIAN,\"S.E. ANESTHESIOLOGY CONSULTANTS, P.A.\",H1130\nOwner/operator,Ric Brown Family Funeral Home,G5400\nPLANNER,BUREAU OF LAND MANAGEMENT,X3000\nPRESIDENT,BLACKMORE ROWE INSURANCE,F3100\nPRESIDEN,BENEFIT DESIGN CORPORATION,Y4000\nMINIMART GAS STATION,,E1170\n\"DAW'S CRITICAL CARE REG INC\",,Y4000\nENGINEER,MICHAEL MELVIN,Y4000\nre,n,J1200\nARCHITECT,JENSEN YORBA LOTT INC,Y4000\nTelecom Technician,Digivoice,Y4000\nMEDICAL RESEARCH,TEXAS CENTER FOR DRUG DEVELOPMENT,Y4000\nPROFESSOR,ANTIOCH UNIVERSITY LOS ANGELES,H5100\nOWNER,\"J P. SCHERRMAN, INC.\",Y4000\nPARTNER,CALDWELL PAVING & GRADING,B3000\nattorney,Susman & Watkins,Y4000\nPRESIDENT AND CEO,JANNEY MONTGOMERY SCOTT LLC.,J1100\nERADICO SVCS,,Y4000\nVPHR,Barnes & Noble,G4600\nCPA,Wgcpas,J1200\nCEO,JURIS,Y4000\nOWNER,COMMERCIAL BUILDERS INC.,Y4000\nOwner,Xenophon Corp,Y4000\nEXECUTIVE,TOYOTA,T2310\nEconomist,US Department of Commerce,X3000\nVP,LOOMIS SAYLES & COMPANY,F2100\nAttorney,Orzick 7 Hupert,J1200\nCAMECO MEATS,,G2300\nSEALIFT,,T6200\nPAISANO PUBS INC,,C1100\nPRESIDENT & CEO,VIRTUA HEALTH,H0000\nGENERAL MANAGER,,A8000\nTEACHER,ACTRESS,J7400\nPRESIDENT,CONSOLIDATED PRODUCTS INC,Y4000\nUJA FEDERATION OF NEW YORK,,Y4000\nPRE,NATIONAL BENEFIT ADMINISTRATORS,J5100\nEXEC.,BOOTH CREEK MANAGEMENT CORP.,G2300\nOWNER,AMBROSE PROPERTIES,F4000\nInformation Requeste,Landmark Builders,Y4000\nBusinessman,Sinclair Broadcast Group,C2100\nCPA,Cole and Reed PC,Y4000\nWORLD OF COMMUNITIES INC,,T2300\nOWNER - LETTER PERFECT,SELF,J1200\nLAWYER,CROWE & SHANAHAN,Y4000\nAttorney,Texas Credit Union League,F1300\nCIVIL ENGINEER,LANGAN ENGINEERING,B4000\nCHAIRMAN & CEO,AVONDALE MILLS,M8000\nOWNER,MCKAY CREEK GOLF COURSE,Y4000\nCPA,ENERGY ASSOCIATES,E1000\nC O O,BAPTIST MEMORIAL HEALTHCARE CORP,H2100\nCONSULTING,MARSH & MACCLENNAN,Y4000\nREAL ESTATE,MRR GENERAL TRADING,F4000\nPOULTRY EQ. DEALER,SELF,A2300\nDIRECTOR,A&B/FHB/BANCWEST/PACIFIC GUARDIAN,Y4000\nCONSTRUCTION INDUSTRY CONSULTANT,SELF-EMPLOYED,F3000\nDOCTOR,SELF-EMPLOYED/DOCTOR,H1130\nALATOLIA MINERALS,,Y4000\nManager Financial Pl,Basf Corporation,J1200\nDirector,The Jacob and Malka Goldfarb Charitab,Y4000\nTHE GART COMPANIES,,M3600\nPRESIDEN,W.B. DRIGGERS & ASSOCIATES,Y4000\nV I P CONTRACTORS INC,,Y4000\nHIGH SCHOOL TEACHER,BERKELEY UNIF SCHOOL/HIGH SCHOOL TE,H5100\nEXEC,TOYOTA WEST,T2310\nRENEE SACKS ASSOCIATES I,,Y4000\nBUSINESS OWNER,IMPEX GLOBAL,Z9500\nCAPITAL STRATEGIC ARCHTYPES INC,,Y4000\nCOMMERCE PROPERTIES INC,,F4000\nPRESIDENT,MEG CORP,Y4000\nVICE PRESIDENT,MASCO CORP,M4100\nMULLENHOLZ & BRIMSEK,,K2100\nFERRELL-DUNCAN CLINIC INC,,Y4000\nACTOR,SELF-EMPLOYEED,C2400\nPhysician,\"Texas Oncology, P.A. - Dallas Main Off\",H1130\nNursing,Alameda County Publi,Y4000\nCALDWELL STAFFING SERVICES,,G5250\nHEDGE FUND MANAGER,SELF-EMPLOYED,F2100\nProgrammer,Blue Cross,Z9500\nLAZARD FERES INC,,F2300\nL ASSN,FOUNDERS S,Y4000\nMarket Research,Peryam & Kroll Research,Y4000\nRETIRED ATTORNEY,\"DIANA G. SHAW, ESQ. A PROF. CORP./R\",Y4000\nCONSTRUCTION,H&S CONSTRUCTION,B1500\nSEN. VICE,ENERGY CONVERSION DEVICES,E1500\nAttorney,ABM Industries,Y4000\nPresident,American Sporting Goods,Y4000\nCFO,TOFEL CONSTRUCTION,B1500\nFINANCIAL ADVISOR,SELF,J1200\nPAULA FINANCIAL,,Y4000\nPRESIDENT,EXPERT PARKING,F4000\nInternational Sales Manager,ATD American Co,Y4000\nVP,TRY-IT DISTRIBUTING CO INC,G2850\nSELF,IT PROFESSIONAL,Y4000\nATTORNEY,NOLAN AND ALDERSON,K1000\nExecutive Director,Upper Des Moines Opportunity,JH100\nAttorney & Township,Dilworth Paxson and East Whiteland,K1000\nDIAGNOSTIC RADIOLOGIST,UNIV OF PUERTO RICO SCHOOL OF ME,H1130\nSR. VP,GENESIS HEALTH CARE,H2200\nPEACHTREE RD UNITED METHODIST,,Y4000\nGUARD INSURANCE GROUP,,F3100\ndirector,NFWF,Y4000\nDentist,\"Drs. Yung & Jelinek, D. D. S.\",H1400\nHOUSTON-STAFFORD ELECTRIC,,B3200\nAttorney,Az Attorney Generals,K1000\nAQUINAS CORP.,,Y4000\nSelf Employed,Donald Groninga,Y4000\nFinancial Services,Self Employed,F0000\nCABINETRY,D& D ENTERPRISES,Y4000\nOwner,\"Hyman's Furniture Store\",M4100\nLAWYER,\"CARLSON, HARMOND & PALLOCK\",Y4000\nCOO,FAUQUIER HOSPITAL,H2100\nPresident & CEO,Tri Star,E1170\nVICE PRESID,BOARDMAN PETROLEUM INC.,E1170\nHE,AIDS PROJECT OF SOUTHERN VERMONT,J1200\nAnesthesiologist,Central Wis. Anes. S. C.,H1130\nACE ANESTHESIOLOGY DEPT OF ANESTHES,,H1130\nKLUCIKOWSKI & CO,,Y4000\nEXECUTIVE VICE PRESIDENT,Berkshire Mortgage Finance,F4600\nchemical engineer,DuPont,M1000\nPOACH MARKETS INC,,J1100\nOWNER PRESID,ATLANTA PACIFIC REALTY,F4200\nEXECUTIVE/ATTORNEY,SPECTRUM GAMING GROUP,Y4000\n\"GOV'T. AFFAIRS CONSULTANT\",CAPITOL COUNSEL LLC,K2000\nSmall Business Owner,Barrett-Porter Enterprises,Y4000\nPRESIDENT,\"GREENLIGHT CAPITAL, INC.\",F2700\nINFORMATION SYSTEMS VICE PRESIDENT,LIFETOUCH INC.,G5240\nDeveloper,Argyle Holdings,Y4000\nPRIVATE TRUSTEE,NICHOLS & PRATT LLP,Y4000\nCPA,Corren Goldberg & Co,Y4000\nSTATE OF MARYLAND/ADMINISTRATOR/M.T,,X3000\nC.E.O.,MCLANE COMPANY INC.,G2500\nCOOPERS & LYBARD,,F5100\nCEO,HILTZIK STRATEGIES,J1200\nPresident,\"Med-Pay, Inc.\",Y4000\nInsurance Agent,Dave Gregory Ins,F3100\nPRESIDENT & CEO,QTHINK,Y4000\nAbrams Airborne Mfg,,Y4000\nCEO,\"Newpoint Investments, LLC\",F7000\nPRESIDENT &,\"FRIEDMAN'S SUPERMARKETS\",G2400\nV.P. HOG PROCUREMT/INTEGRATION,\"SEABOARD FARMS, INC.\",G2300\nIDB COMMUNICATIONS GROUP,,C4400\nCEO,YAKIMA NEIGHBORHOOD HEALTH,Y4000\nINFO REQUESTED,JB MANAGEMENT INC,Y4000\nGENERAL CONTRACTOR HENRY BRO CO,,B1000\nWOLF & TIEDKEN,,Y4000\nTHE SANFORD AGENCY,,F3100\nMUNICIPAL EMPLOYEE,CITY OF SAN FRANCISC,X3000\nAccountant,Asturias Realty Corporation,F4200\nManager,mWV COG,Y4000\nPresident,California Waste Solutions,E3000\nSenior Vice President,John T Boyd Company,E1200\nFENG SHUI CONSUTLANT,,Y4000\nTREASURER,JOHN E. BOURNE CO. INC.,Y4000\nVP COMMUNICATIONS,STATE OF NEW YORK,X3000\nEducator,Portland Public Schools,Z9500\nInsurance,Accredited Surety&Casualty,F3400\nOWNER,CINCO DE MAYO RESTAURANT,G2900\nPARTNER,SQUIRE SANDERS & DEMPSEY,K1000\nGINSENG GROWER,,Y4000\nHEALTH FIRST MEDICAL GRP,,Y4000\nManager/Owner,Corby Energy Services,E1000\nCEO,\"H. J. MARTIN & SON, INC\",Y4000\nC P A,\"Fortson & Company, P. C.\",F5100\nMANAGER,KYLE W SHAPIRO FOUNDATION,Y4000\nPresident,\"Crofton Children's Center\",G1200\nCRANIO SOCIAL THERAPIST,SELF-EMPLOYED,G0000\nUNIV OF S FL,,H5100\nAttorney,\"Smith Tozian & Hinkle, PA\",K1000\nPRESIDENT,\"THE KAPLAN GROUP, INC.\",F4200\nECONOMIST,BERMAN AND CO.,G5210\nLobbyist,Novartis Pharmaceuticals,H4300\nExecutive,\"Artistic Tile, Inc.\",Y4000\nEFCO CORPORATION,,M2100\nOWNER,EXIT 132 PONTIAC BUICK GMC,T2300\nSenior VP,Bryan Cave Strategies,K1000\nNOT EMPLOYED,NA/NOT EMPLOYED,J7400\nHealthcare executive,Idaho Home Health & Hospice,H3100\nWOODWARD & LOTHROP,,G5200\nConsultant,Bickford Pacific Group,Y4000\nExecutive,\"Heritage Transportation, Inc\",Y4000\nMECHANIC,B P,E1110\nGARDNER,SLEF-EMPLOYED,G5000\nTHE HEBEL COMPANY,,Y4000\nHOUSE HUSBAND,NONE,JE300\nGM DEPT OF DEFENSE,MICROSOFT CORPORATION,C5120\nOWNER,PEER SOFTWARE,C5120\nCEO,Steelhead Partners,F2100\nInvestor,Intellectual Ventures,J1100\nSENIOR DIRECTOR,JOHNSON & JOHNSON,H4000\nEast West Medical Research Institut,,Y4000\nIBARRA AND ASSOCIATES,,Y4000\nhealth care consulta,JSI,Y4000\nCEO,Karaoke.Com,C5140\nConsultant,Greenwich Associates,G5200\nadministrator,\"Rod Klima, DDS\",H1400\nBoard of Directors,\"Bullion Monarch Mining, Inc\",E1200\nCLIFFS DRILLING,,E1150\nBANKING,INDEPENDENCE BANK,F1000\nSUMMER INTERN,PRIDES CORNER FARM,A1000\nDIRECTOR,OK HOSPITAL ASSN,H2100\nGORDON-CONWELL THEOLOGICAL SEMINARY,,X7000\nATTORNEY,WELBORN SULLIVAN MECK & TOOLEY PC,Y4000\nCPA,\"O'CONNOR & HANNAN\",K2000\nHEALTH PRODUCTS DISTR,SELF EMPLOYED,H0000\nN.A. PROPERTY INC.,,F4000\nPRESIDENT,DELAWARE BEVERAGE CO.,Y4000\nAttorney,NBA,J7600\ndecorator,self,C5140\nconsultant,\"Palumbo&Cerrell, Inc.\",Y4000\nFACTORY WORKER,RETIRED/FACTORY WORKER,X1200\nPhysician,So Sierra Med Clinic,Y4000\nOIL & GAS,SMITH MANAGEMENT CO.,F2100\nCPA,SELF-EMPLOYED,G2300\nC E O,,K2000\nCOW CREEK BAND UMPQUA TRIBE,,G6550\nVP OF HUMAN RESOURCE,L.M.C.,B5100\nBUFFALO GENERAL RADIOLOGY GROUP,,H1130\nShop Laborer,Fire Engineering Company,B4400\nparalegal,self,J7400\nPIETRO INDUSTRIES,,Y4000\n\"SVP CHIEF INFORMATION,INNOVATION & IMP\",WALGREEN CO.,G4900\nAccount Executive,\"Blackboard, Inc\",C5120\nScientist,VaxInnate,Y4000\nPresident,Staten Island Pulmonary,Y4000\nART DIRECTIONS & FILM PRODUCTION,,C2400\nCeo,Weirton Geriatric,H1130\nPresident/CEO,Leon Medical Centers,H1100\nDEVELOPER,ARCHITECT,B4200\nExecutive Director,\"Children's Literacy Foundation\",Y4000\nCHAIRM,\"SHORENSTEIN  PROPERTIES, LLC\",F4000\nApartment Owner,Self Employed,F4500\nINFORMATION REQUESTED,SELF-EMPLOYED,J7600\nLawyer,Eduardo Angell,Y4000\nELKS REHAB,,Y4000\nCORPORATE MANAGER,NATIONAL SYSTEMS & R,Y4000\nPT,Centennial Medical Center,H1700\nEXECUTIVE,AMERICAN CHEMICAL TECH,Y4000\nPRODUCT MANAGER,EMPOWER SOFTWARE,C5120\nEXECUTIVE VP,IDT CORPORATION,C4200\nCHIEF,\"ORANGE COUNTY'S CREDIT UNION\",F1300\nPILOT,WCF AIRCRAFT CORPORATION,J1100\nPhysician,Eye Clinic Of  Idaho Falls,Y4000\nPresident and Chief Executive Officer,Provena Mercy Medical Center,H2100\nTHE JEAN & E FLOYD KVAMME FND,,F2500\nEATON MANUFACTURING CO,,Y4000\nINSITUTIONAL LABOR ADVISORS,,Y4000\nDirector/Christian Education,CHRIST ESPICOPAL CHURCH,X7000\nCOB,FIBERDYNE LABS INC,Y4000\nPRESIDENT,SKY CAPITAL HOLDINGS LTD.,Y4000\nKANE RUSSELL COLEMAN & LOGAN P,,K1000\nCHAIRMAN & PRESIDENT,ALLIANCE BANK,F1100\nconsultant,WSW,K2000\nSELF-EMPLOYED,PEPIN COMPUTERS,Y4000\nDirector,\"ArborOne, ACA\",A4000\nPHILANTHROPY CONSULTA,SELF-EMPLOYED,J7400\nPharmaceutical Sales,Berlex Laboratories,H4300\nDENNY MILLER MCBEE ASSOC,,K2000\n\"GOVERNOR'S OFFICE\",,X3100\nBrown U,Brown Univ.,H5100\nMarketing,Moveo,J1200\nToolmaker,Flotron,Y4000\nCEO,HEALY RESTAURANTS,G2900\nREADING REFORM FOUNDATION,,X4100\nPharmacist,Omnicare Pharmacies,Y4000\nEducator,Ann Arbor Public Schools,X3500\nPARTNER,AKIN GUMP STRAUSS HOMER & FELD,Z9500\nVERIZON COMMUNICATION,,C4100\nCOHASSET KNOOL,,Y4000\nPresident,Eiger Corporation,F4100\nTRANSPORTATION PERSO,SELF-EMPLOYED,T1600\nAccountant,Ymca,X4000\nVIKING DRILL & TOOL INC,,M2300\nVice President/General Manager,WPIX,C2100\nProf.,Northeastern Univers,H5100\nECONOMICS CONSULTANT,,J5100\nAttorney,Ajilon,Y4000\nChairman & CEO,\"Strategic Learning Services, Inc.\",Y4000\nSPEECHWRITER,US EPA,X3000\nPRESIDENT,\"HME SPECIALISTS, LLC\",Y4000\nCHARIMAN,WNC & ASSOCIATES,Y4000\nManager,City Looks,J1200\nOREGON LEGAL ASSEMBLY,,X3000\nMARKETING EXECUTIVE,BANK OF AMERICA,J7150\nConsultant,Thomas Group Inc.,Y4000\nINVESTER,SELF EMPLOYED,J1200\nDATA ANALYST,COMPASS SOLUTIONS,Y4000\nPARKS CHESIN & MILLER,,K1000\nE J DELMONTE CORPORATION,,F4100\nOWNER,AIRLINK TOURS AND TRAVEL INC.,T9400\nVP-W,UNITED STATES STEEL CORPORATIO,M2100\nH T HACKNEY CO,,G2500\nATTOMEY,SIROTE PARMUTT,K1000\nSVP CHIEF INVESTMENT OFFICER,\"PEOPLE'S UNITED BANK\",F1200\nREMAX XECUTEX,,F4200\nBEND AGGREGATE & PAVING,,B3000\nSTUDENT,,JH100\nGRAND CANYON AIR,,T1100\nVICE PRESIDENT,EDISON MISSION GROUP,Y4000\nEXEC V,NISOURCE GAS TRANS & STORAGE,E1620\nOWNER & CEO,NATIONAL CARE NETWORK/OWNER & CEO,Y4000\nBAPTIST HOSPITAL,,H2100\nExecutive,The Rothbury Corporation,G5200\nRETIRED PROFESSOR,UNIV OF MICHIGAN,H5100\nOWNER,\"JCCT PROPERTIES, LLC/OWNER\",F4000\nKENNEDY & ASSOCIATES,,G2900\nPsychietrist,MITM,H1110\nACADEMY ADMINIST,HARVARD UNIVERSITY,H5100\nInsurance S,Wausau Signature Agency,Y4000\nLOUIS BERGIE ASSOC,,B4000\nHUGHSTON CLINIC,,H1130\nDirt Contractor,Self Employed,B1500\nPhysician,Medical Park Anesthesiologists,H1130\nCFO,BUZZ OATES ENTERPRISES,F4100\nRentals And Investments,Self,F7000\nHuman Resources,\"Harrah's Entertainment\",G6500\nBLACK ENTERPRISES INC,,Y4000\n\"Vice President, Engineering\",IEM,Y4000\nPRESIDENT,EDWARD LEVY CO.,B5100\nCEO,SHIFT RESEARCH,C5130\nEXECUTIVE,NORTHWEST TEL,Y4000\nChairman/CEO,MacAndrews & Forbes Holdings,M3300\nSoftware Designer,Self,J1200\nREALTOR,HUNTER REAL ESTATE,F4000\nAHLSTROM DEVELOPMENT CORP,,B3000\nMANAGER,GOLF PRO,G6100\nSCHERMER & SCHWAPPACH,,Y4000\nExecutive,\"CTB, Inc.\",Y4000\nPROFESSOR OF NURSING,CAL STATE SAN MARCOS/PROFESSOR OF N,Y4000\n\"Greensfelder, Hemker  amp; Gale, P.\",,K1000\nPRESIDENT/CEO,THE PATTIE GROUP INC.,Y4000\nWELDER,WELD SEAM INC,Y4000\nVice-President,The Landon Companies,F4100\nOT,Univ of Minnesota,H1700\nAtty,Self employed,K1000\nUNIV OF CAL RIVERSIDE,,H5100\nU OF HAWAII,,J1200\nBE Meyers and Co.,executive,K2000\nPROJECT MANAGER,PACCAR,T1400\nRECORDER,Fulton County,X3000\nCUSTOMER SERVICE REP,R R DONNELLEY,J1200\nPRESIDENT,W.T. YOUNG STORAGE CO,T7200\nEXECUTIVE,BULLOCK INDUSTRIAL SUPPLY,Y4000\nPresident,Graphic Consortium,J7500\nROBERT CHEVROLET INC,,T2300\nSENIOR INTERNA,CASSIDY & ASSOCIATES,K2000\nENVIRONMENTAL S,HEADLANDS INSTITUTE,Y4000\nDOCTOR,SEARS FAMILY PED.,H1100\nAttorney,\"Griffin Law Firm, LLC\",K1000\nVP-CONTROLLER,BANK MUTUAL,F1100\nPartner,\"Schwartz, Page & Harding, LLP\",Y4000\nMANAGING PARTNER,BLUE WAVE CAPITAL LLC,Y4000\nVICE PRESIDENT,HENSLEY COMPANY,G2850\nDIRECTOR,NEVADA YELLOW CAB CORPORATION,T4200\nPolice Officer,State University,H5100\nDANIELS AND DANIELS,,M5100\nFire Fighter/EMS,Colorado Springs Fire Dept.,L1400\nOWNER,METROGUARD,Y4000\nSURGEON,,J7300\nSALES,TACTARA,Y4000\nATTORNEY,LAW OFFICES OF STEVEN C. LAIRD PC,K1000\nAttorney,Hendler PC,Z9500\nMANAGEMENT,\"MCKINSEY & CO., INC.\",G5270\nVICE PRESIDENT,AMF ELECTRIC,B3200\nNAYER TISEO & HINDO INC,,Y4000\nWYLER-RYMLAND PRODUCTIONS,,J7400\nHealthcare Admin,St Raphael Healthcare System,Y4000\nCHRIST GATZONIS ELECTRICAL ET AL,,B3200\nManaging Director,Total Awareness Coaching,Y4000\nGovernment Affairs,American Federation of Teachers,L1300\nTAYLOR PORTER ET AL,,Y4000\ncfo,Systems for Professional Development,Z9500\nTHREE M COMPANY,,Y4000\nHOLLINGSWORTH & ASSOCIATE,,Y4000\nHANSELL MITEEL LLC,,Y4000\nCOUNSELOR,KEARNY DOANVAN & MCGEE PC,K1000\nMARKETING CALL CENTE,IN TOUCH,Y4000\nBAKER,HAYDEH ENTERPRISES  INC.,Y4000\nIT EXECUTIVE,CAROLINA HOSIERY MILLS INC,M3100\nMANAGER,CARBON SERVICE CORP.,Y4000\nPilot,Mesabi Airlines,T1100\nPRESIDENT,MULTITECH PROPERTIES INC.,F4000\nOwner,\"Chuck's Sewer & Drain Cleaning\",Y4000\nRESIDEN,ELFANT WISSAHICKON REALTORS,F4200\nSwartz Mowing Inc.,,Y4000\nMANAGER,BELK,G4300\nOwner,\"E. & A. INDUSTRIES, INC.\",M1600\nEMPLOYEE,B2BW COMPUTER SERVICES INC,Y4000\nPH,GREATER HOUSTON ANESTHESIOLOGIST,H1130\nCPA,\"BRADSHAW, GORDON, CLINKSCALES\",F5100\nInvestment Manager,\"Taconic Capital Advisors, LLC\",F2700\nOWNER,MORGAN MANUFACTURING,Y4000\nSenior Vice Presiden,Stateside Associates,Y4000\nFinancial Consultan,Smith Barney,F2100\nSENIOR ADVISOR,OAKTREE CAPITOL MANAGEMENT,Z9500\nST FRANCIS COUNTY,,X3000\nCEO,THE ALLIANCE/CEO,Y4000\nATTORNEY,\"CORBOY AND DEMETRIO, P.C./ATTORNEY\",K1000\nSenior Vice President & General Manage,\"Crowley Marine Services, Inc.\",T6200\nMgmt/Excutive,Berkshire Health Partners,Y4000\nWriter/Researcher,Self,C1100\nTransit Planning Consultant,Steer Davies Gleave,Y4000\nUnearned,Stocks and Bonds,Y4000\nORTHOPAEDIC SURGEON,ORTHOPAEDIC ASSOCIATES OF LANC,H1130\nATTORNEY,\"SIVE, PAGET & RIESEL, PC\",Z9500\nSCHNEIDER GALLERY,,J5100\nPRESIDENT & OWNER,MOUNTAIRE CORP.,J1100\nOWNER,INDUSTRIAL PIPING,Y4000\nRETIRED,FPMI SOLUTIONS INC,X1200\nSUPERVISOR,Ann Arbor Township,X3000\nADM,WENATCHEE VALLEY MEDICAL CENTER,H2100\nCENTURY PRODUCTS,,Y4000\nPresident,Chester Insurance Group,F3100\nATTORNEY,RUSSELL BRITT,Y4000\nPROGRAM ASSOCIAT,HUMAN RIGHTS WATCH,Y4000\nCOLEMAN PHARMACY,,G4900\nPartner,Quantum Insight,Y4000\nATTORNEY,\"THE SPERDUTO LAW FIRM, PLC\",K1000\nBROWNWOOD BULLETIN,,Y4000\nRONCO CONSULTING CORPORATION,,Y4000\nEXECUTIVE,THE CASHION COMPANY INC.,F3100\nORTHODONTIST,UNIV. OF CALIF. AT SF,H5100\nOK TRANSPORTATION,,Y4000\nMANAGER OF A,MELLON FINANCIAL CORP.,J7400\nLegislative Affairs,IBEW,LC150\nFARMER,WILLAMETTE EGG FARMS,A2300\nFJC,,G5290\nVice-President,Mar-Jac Poultry,A2300\nSTADEN HOMES INC,,Y4000\nCONTINENTIAL HEAT TREATING,,Y4000\nVINTNER,HALL WINERY,G2820\nWELLS FARGO/LENDER/BANKER,,F1100\nATTORNEY/PARTNER,\"SKADDEN ARPS, SLATE,  MEAGHER & FLOM L\",K1200\nComputer Technician,Catholic Charities,J1200\nMedical Doctor - Sel,\"Vincent Phillips M.D., Inc.\",H1100\nATTORNEY,\"BURKE WISE MORRISSEY & KAVENY, L.L.\",G2850\nTeacher,Los Angeles Community CollegeDistrict,J1200\nSTAFF MEMBER,TERMINAL MANAGEMENT,Y4000\nHUNTINGTON PARNTER,,Y4000\nYOUTH COUNSELOR,GRANT WOOD AEA,Y4000\nOWNER,CONCORD COACH LINE,Y4000\nINFORMATION TECHNOLOGY,UNIVERSITY OF OKLAHOMA,H5100\nPresident,Georgia Association of  Convenience St,G4300\nCONSULTANT,PROPHET,Z9500\nReal Estate Broker,Kehoe Real Estate Services,Z9500\nOWNER,R&R WELDING & FABRICATION,Y4000\nINSTRUMENTAL DESIG,GENERAL ELECTRIC,M2300\nDirector,\"Davita, Inc.\",H3200\nFINANCIAL CONSULTANT,FIRST MERIT INVESTMENT SERVICE,F2100\nStrategic Sourcing,ATI,T0000\nIND FUEL & ASPHALT,,B5100\nForeign Policy Consultant,Self employed,G0000\nCITIZENS BANK,,X1200\nInsurance Broker,Crc Insurance Srvioc,F3100\nReal estate manager,\"George Comfort & Sons, Inc\",F4000\nCEO,FULL EMPLOYMENT COUNCIL,G5250\n\"BINGHAM, SUMMERS, WELSH & SPILMAN\",,K1000\nexecutive,Voyager Financial Services Corp,F0000\nBUSINESS OWNER,P.C.E.,Y4000\nOwner,\"Gaetano's\",Y4000\nSRPM,PANATTONI,B1500\nCACHERIS AND TREANOR,,Y4000\nCHIEF RISK OFFICER,\"CIT GROUP, INC./CHIEF RISK OFFICER\",F1400\nPresident,Arcadia University,H5100\nCHAIRMAN,\"MILLER-ST. ZAZIANZ, INC.\",A4200\nWINGATE PARTNERS/FOUNDING PARTNER/F,,Y4000\nPhysician,TOPA,H1100\nTeacher,WWC Board of Ed.,X3500\nMOYER & ASSOC,,Y4000\nRESTAURANT DEVELOPMENT/MANAGEMENT,\"RCF BOBBY PASTA, INC.\",Y4000\nMANAGING PAR,INTERMEDIA PARTNERS LP,F2600\nANALYST,JK&B CAPITAL,F0000\nPresident,Winds of Change,J9000\nELBOW ROOM RESTAURANT,,G2900\nATTORNEY,STAMFORD URBAN REDEVELOPMENT COMM.,X3000\nBusinessman,Empresas Chipi,Y4000\nPRES NATIONAL SOFT DRINK ASSOC,,G2600\nRANCH AND FARM,SELF-EMPLOYED/RANCH AND FARM,A3000\nVice President,Pfizer,H4300\nAssociate Professor,University of Notre Dame,J1200\nDIRECTOR OF UNDERWRITING,FCCI INSURANCE GROUP,F3400\nMARINE CONSTRUCT,ED NIX COMPANY INC,B1500\nUNEMPLOYED STUDENT,UNEMPLOYED STUDENT,Y4000\nSecretary/Treasurer,Jones & Mitchell Co,F3100\nCEO,Warren Distributing Co.,G2850\nPhilanthropher,Self Employed,E1120\nMANAGER,SCHMITT E.G. INC.,Y4000\nExecutive,\"Edison Properties, LLC\",F4000\nPRESIDENT & CHIEF EXECUTIVE OFFICER,BUDCO GROUP,G2810\nPOLITICAL SCIENTIST,SELF EMPLOYED,J7400\nBEIRNE MAYNARD & PARSONS,,K1000\nJUNO LIGHTING INC,,Y4000\nOWNER OF RECYC,THE PELTZ GROUP INC.,Y4000\nPresident,\"Sexton, Inc.\",Y4000\nCONSULTANT,TABOR 100,Z9500\nATTORNEY,BURNS AND STOWERS,Y4000\nADMINISTRATO,FLORIDA EDUCATIONAL TV,C2100\n\"NELSON, MULLINS, RILEY, AND SCARBOR\",,K1000\nPolicy Analyst,Cascadia Discovery Institute,Y4000\nCEO,GENESIS,Y4000\nInvestor,Soros Fund Management,J1200\nBroker,Canaan Enterprises,Y4000\nManager,Access Industries,M2300\nTARGET GROUP,,Y4000\nPRESIDENT,BELCO MANUFACTURING COMPANY,Y4000\nC.O.O.,A.G.C. NATIONAL,Y4000\nMANUFACTURER,WALKER DIE CASTINGS INC,M5000\nPHYSICIAN,WESTERN MONTANA CLINIC,H1130\nMANAGER,MOBIL OIL,J7400\nFINANCE,SBE LTD.,Y4000\nEDUCATOR SENIOR FACILITATOR,USN (CIVIL SERVICE),Z9500\nMANAGER,CONCEPT FOODS,G2000\nPUBLIC AFFAIRS MANAGER,NACE INTERNATIONAL,JW100\nREAL ESTATE DEVELOP,GLC DEVELOPMENT,F4100\nCEO,SHELTER CORP,J1200\nDL COOK CORPORATION,,Y4000\nAttorney,\"Bernstein & Lipsett, PC\",J7400\nPREMIUM CONNECTION INC,,Y4000\nINVESTOR,SELF - CHARLES M. MOOS,F7000\nPRESIDENT,HEARTLAND BANK & TRUST,F1000\nWHEATLEY TXT,,E1150\nASSOCIATES WEST,,Y4000\nSVP SHARED,AEP SERVICE CORPORATION,E1600\nNOTE: REQUESTED 10/19/00 & 12/5/00/,,H1100\nWERTZ LAW FIRM,,K1000\nPILOT TRAVEL CENTERS LLC,,E1170\nPRES & CEO & RS BOD,NOVELL,G4200\nOWNER,CT MANAGEMENT,J7300\nVOLUNTEERING,RETIRED,X1200\nArchitect,ELMER BOTSAI F.A.I.A.,B4200\nIDAHO HOME HEALTH INC,,H3100\nPLANTERS STOCKMAN BANK,,F1100\nOWNER,CARMOUCHE FARMS/OWNER,A1000\nPresident,\"Dyna Empire, Inc\",T1300\nVarnum Consulting,Consultant,G5200\nDept Director,Town of Cumberland,X3000\nExecutive Vice President,\"Express Check Advance, LLC\",F1400\nCONSULTANT,PROSPERITY VENTURE PARTNERS,Y4000\nCrop insurance agent,Crop Management Solutions LLC,A4000\nHEALTH POLICY STRATEGIES,,H2100\nBUILDER,OLD WORLD HOMES,B2000\nOwner,Tufflite Inc.,Y4000\nN J STATE GOVT,,X3000\nRODGER KEITH INSURANCE AG,,F3100\nSOUCIE BUCHMAN GROVER & BOLT,,K1000\nOWNER,J & N SIGNS,Y4000\nConsultant,\"Federated Department Stores, Inc.\",J1200\nADMINISTRATOR/NURSE,GRASMERE PLACE,Y4000\nAttorney,Policelli Law Office,K1000\nTRADE SHOW PRODUCER,\"GEORGE LITTLE MANAGEMENT, INC.\",X1200\nPresident,Helene Blue Musique,Y4000\nDIR. OF GRANTS & FED RELATIONS,MCALLISTER & QUINN,K2000\nEXECUTIVE DIRECTOR,UHCAN OHIO/EXECUTIVE DIRECTOR,Y4000\nAdmin Asst,Clemson University,H5100\nLegislative Affairs Director,The Nickles Group LLC,K2000\n\"FOLWER GOEDECKE ELLIS & O'CONN\",,F4600\nCPA,Bradley Allen and Associates,F5100\nTV WRITER PRODUCER,SELF-EMPLOYED,Y4000\nPENNSY CORPORATION,,Y4000\nEAST PARK RESEARCH,,Y4000\ndesign,self-employed,J7300\nKEYSTONE INTL,,Y4000\nSr. VP Global Commun,Este Lauder Companies,M3300\nCEO,\"BLUE STAR, INC.\",C5000\nFINANCIAL SERVICES,CPI COMPANIES,Y4000\nSENIOR VICE PRESIDENT,GENERAL ELECTRIC,M2300\nBELL MCANDREWS HILLTACHK &  DAVIDIA,,J7150\nOwner,Orchard Grove Inn,T9100\nTHE VANDILER GROUP,,Y4000\nRESTAURENT,SELF EMPLOYED,J1100\nIntergovernmental Re,\"Thomas Walters & Associates, Inc.\",K2000\nCONTRACTOR,MEINEKE JOHNSON CO.`,B1500\nExecutive,The Robson Co,G6400\nLawyer,\"Nossaman, Guthner, Knox & Elli\",K1000\nOWNER,FMJ ENTERPRISES,Y4000\nDOMENIGONI-BARTON PROP,,Y4000\nCeo,Worenklein and Co.,G0000\nRetired,Macrovision,Y4000\nVP,PL SLATON INC,Y4000\nOWNER,MDM GROUP,Y4000\nOwner,MAZD Ltd.,Y4000\nHospital Administrat,Unity Health System,H2100\nCHAIR,GEORGE CROWN DISTRIBUTING CO.,G2850\nWELLS FARGO,,F4600\nADS MANAGEMENT/TUFTS UNIVERSITY/SEN,,J1200\nATTORN,PARTNER-PRSKAVER ROSE L.L.P.,Y4000\nContractor,Construction ASI,B1500\nDESIGN ENGINEER,GENERAL ATOMICS,E1320\nVice President,Lexecon Inc.,Y4000\nRECTOR PHILLIPS MORSE,,F2300\nCONSULTANT,\"BRANT ENERGY, INC.\",E1000\nOWNER,MAKAI DIVERS,Y4000\nIRIDIUM LLC,,C4300\nDIVERSIFIED MANAGEMENT SERVICES,,Y4000\nOWNER,P.S. EIILOTT,Y4000\nInvestor - River Guide,Self employed,Y4000\nConsultant,RSBA & Assoc,G5200\nLobbyist,Federal Home Loan Bank of Atlanta,F4600\nCONSULTANT - PHILANTHROPY/LEADERSHIP,SELF-EMPLOYED,G0000\nOwner,\"Pella Texas, Inc.\",Y4000\nAttorney,\"First Title Agency, Inc.\",F4300\nREALTOR,TEXAS ASSN OF REALTORS,J9000\nTHE EQUIPMEN,R.H. CARUSO & CO. INC.,G5300\nIndustrial Operations Analyst,\"US Fed Gov't / GSA\",X3000\nCOMPUTER PROGRAMMER,PARTNERS HEALTHCARE,H2000\nMCEA,,L0000\nITSERV,,Y4000\nSUPERMARKETS @ CHERRY HIL,,G2400\nTEACHER,UNIV OF PENN,H5100\nEWZ ENVIRONMENTAL INC,,Y4000\nHILGERS & WATKINS PC,,K1000\nPRINTER,ALLEGRA PRINT & IMAGING,C1300\nCONSTRUCTION EXECUTI,,B1500\nCHIEF FINANC,THE PETERSON COMPANIES,F4100\nStudent/housewife,N/A,Y1000\nCEO,MEDICAL PARK HOSPITAL,H2100\nRESEARCH PROFESSOR,MOUNT DESERT ISLAND BIO LAB,H3400\nVICE PRESIDENT,GEORGIA BANK & TRUST,F1000\nKIRBY RISK SUPPLY CO,,G3000\nPolicy,Edwards for President,J1200\nEXECUTIVE,MESSER CONSTRUCTION CO,B1500\nChairman/CEO,Uniroyal Technology Corp,B4400\n\"VICE PRESIDENT, RISK MANAGEMENT\",THE HARTFORD,F3100\nPresident,Quinnipiac College,H5100\nVICE PRESIDENT MERGE,AT&T BROADBAND,C2200\nAccountant,Merit Insurance,F3100\nTourism Expert,Self Employed,Y4000\nGovernment Relations,WHDGA,K1000\nPROFIT CAPITAL MANAGEMENT,,F2100\nMGR.,LIBERTY ELECTROWLIS,Y4000\nPHYSICIAN,GOOD SAMARITAN HEALTH CENTER,Y4000\nPhysician,Kalamazoo Emergency Assoc.,Y4000\nPHYSICIAN,THE UROLOGY CLINIC,H1130\nOWNER,DUKE SAMDWICH COMPANY,Y4000\nCARDIOLOGIST,NEBRASKA HEART INSTITUTE,H1130\nPRESIDENT,VAN KAY INC.,Y4000\nBlender,I.p.c.,Y4000\nNORTHEAST BENEFITS,,Y4000\nPhysician,Abilene Eye Institute,H1100\nQUANTUM INDUSTRIES,,Y4000\nCOURTALERT.COM,,C5140\nPHYSI,ANESTHESIA ASSOCIATES OF MACO,J1100\nCivil engineer,JMT Engineering Firm,B4400\nENGINEER,SOI,Y4000\nPresident,The Common Company,Y4000\nDirector,Council for Exceptional Children,H5000\nROSENTHAL AND ROSENTHAL INC,,F1400\nGARDEN MANAGEMENT SERVICES INC,,Y4000\nInformation Requeste,Baker Donelson,K1000\nComputers,Self employed,C5100\nPRESIDENT,\"INTER ISLAND EXPEDITING, INC.\",E1500\nVice President,Abengoa Bioenergy Corp.,E1000\nconstruction,Crystal Holdings,Y4000\nPresident,Bettilyon Realty Co.,F4200\nPARTNER/ATTORNEY,PROSKAUER,K1000\nREAL ES,\"SUN VISTA ENTERPRISES, INC.\",F4200\nECA MKGT INC,,J1100\n\"REANISSANCE TECHNOLOGIES, LLC\",,F2700\nEDF,,Y4000\nEL DORADO DAIRY,,A2000\nAdministrator,University of Missouri - Colum,H5100\nSHARP TOP TREES,,Y4000\nChief Executive Officer,Iconix International Inc.,Y4000\nCHIROP,GOODYEAR CHIROPRACTIC CLINIC,H1500\nCONTRACTOR,\"PAUL'S ELECTRICAL CONTRACTING\",Y4000\nKELLY & MCKEE PA,,Y4000\nPROFE,LAMAR INSTITUTE OF TECHNOLOGY,Y4000\nCHIEF HR OFFICER,FIRST HORIZON,F1100\nPrincipal,Huntington Beach Union School District,X3500\nBanker,Citizens State-Milford,F1000\nPRODUCT MANAGEMENT,IHS,C5130\nVice President,Pulse Tech,Y4000\nVice President  Financial Planning,Cablevision Systems Corporation,C2200\nOHIO DIESEL TECHNICAL INSTITUTE,,H5200\nDirector of Technology,Panduit Corp,J1100\nMaint. Supervisor,Narvick Lumber,B5200\nEXECUTIVE,KARR-MCGEE CORP.,Y4000\nPOLITICAL CONSULTANT,FIRST STRATEGIC,G5260\n\"President, Western Division\",Vulcan Materials,Y4000\n\"CHICAGO BUILDERS' CHAPTER\",,B1000\nLazard,,F2100\nDirector,Stratus,Y4000\nFIXED INCOME ANALYST - HEALTHCARE,BARCLAYS CAPITAL,F2100\nVICE PRESIDENT,HUGO NEU CORP.,M2400\nEXECUTIVE DIRECTOR,INET,Y4000\nexec director,Ounce of Prevention Fund,J7700\nEXECUTIVE,ENERGY CORPORATION OF AMERICA,E1000\nAttorney,\"BREGA & WINTERS, P.C.\",K1000\nManager,Enterprise Advisory Services,Y4000\nBUSINESSMAN,AGAIN TRADING CORP,Y4000\nSELF EMPLOYED,MAINE MASONRY,B3000\nCEO,SINGPOLI,Y4000\nJAMES CITY FIRE DEPT,,X3000\nManagement Consultant,The Boston Consulting Group,G5270\nGBC MASONRY,,B3000\nCECIL B DAY INVEST CO,,Y4000\nLAW PROFESSER,WAKE FOREST UNVERSITY\\,H5100\nSOLAR & ASSOCIATES,,K1000\nTrucking and Investment Properties,Self employed,T3100\nCO,\"MISSY EDWARDS STRATEGIES, L.L.C.\",K2000\nPRINCIPAL,\"BUSINESS INFORMATION GRAPHICS, INC.\",Y4000\nPUBLIC,LINHARES & OLWELL ASSOCIATES,Y4000\nExecutive Director P,Southern States PBA,Y4000\nJULIUS LEMBRECHTS,,Y4000\n\"DIRECTOR, GOVE\",AMERICAN HEALTH CARE,H0000\nAttorney,Mahlowitz Law Group,Y4000\nWOMBLE CARLYLE SANDRIDGE & RICE P.L,,K1000\nDirector,The Childrens Aid So,Y4000\nPRESIDENT,TMODEL CORP.,G1200\nmedical doctor,Fort Worth Brain and Spine,Y4000\nOIL AND,ROBERT FERGUSON INDEPENDENT,J1100\nGOVERNMENT AFFAIRS CONSULTANT,WEST VIRGINIANS FOR RESULTS,Y4000\nOWNER,HARRIS MC KAY REALTY CO.,F4200\nNE,DAKOTA NEUROSURGICAL ASSOCIATES.,H1130\nINFO REQUESTED,Sftk Corp.,Y4000\nTEACHER,ROCKY HILL SCHOOL,Y4000\nRETIRED,GOODENOW,Y4000\nHOMEMAKER,SELF EMPLOYED,T5100\nLt Governor,State of IL,X3000\nRETAIL,\"MESMERALDA'S LTD\",Y4000\nLEVERTY & ASSOCIATES LAW CHTD,,Y4000\nCONSTRUCT II,,B1500\nE FUNDS CORP,,Y4000\nAGENT,SOUTHERN CROP INSURANCE,F3100\nMAXXUM INC,,Y4000\nCFO,TCF,F1100\nPhysician,\"Bellevue Ear, Nose and Throat\",Y4000\nVice President,Bank of Commerce,F1100\ninvestment consultan,Morningstar Associates,Z9500\nPRINCIPAL,OGDEN C.A.P. PROPERTIES,F4000\nRetired Consultant,Self employed,X1200\nAdvertising,Targeted 101,Y4000\nCommercial Real Estare Advisor,\"Richard Berzine & Company, Ltd\",F4000\nDeveloper,MCM Corporation,J5200\n\"SAINT JOHN'S UNIVERSITY, COLLEGEVIL\",,Y4000\nFOOD SERVICE,PLANO ISD,X3500\nWINDY HILL PET FOOD CO,,F1100\nATTORNEY,BARON & BLUE,J7400\nOwner,Burger Boat Company,Y4000\nScientist,Univer Of Cincin,J1200\nvolunteer,self-employed,J7400\nX-RAY TECH,MAYO CLINIC,H2100\nPRESIDENT,KAP TEXTILES INC.,M8000\nCENTRO FINANCIERO AMIGO,,F0000\nANESTHESIOLOGIST,D L DRENNON MD PA,H1100\n\"SR. VP, INTERNATIONAL TRADING\",\"KOCH SUPPLY & TRADING LP/SR. VP, IN\",E1160\nAID ASSOCIATION,,Y4000\nURBAN PLANNING AND DEVELOPMENT- RETIRE,PHDAHM@SBCGLOBAL.NET,Y4000\nCEO,\"O'Neill & Associates\",K1000\nBANKER,FRONTIER STATE BANK,F1000\nADMINISTRATIVE CONSTRUCTION MANAGEM,,B1500\nMARCAP CORP,,J5100\nCHAIRMAN,AXLOM INTERNATIONAL INVESTOR,F2500\nArtist/Massage Therapist,Self employed,G0000\nATTORNEY,HENSLEY LEGAL GROUP,K1100\nPRESIDENT,MAPP CONSTRUCTION,B2000\nInvestor,First American Holdings,J1100\nSystems Administrato,\"Ultimate Solutions, Inc\",Y4000\nEngineer,Aps,H5000\nAttorney,Blue Cross/Blue Shiels of MA,F3200\nEXECUTIVE TOPDIVBUSLDR,PFIZER INC,H4300\nhomemaker,\"Parkway Properties, Inc.\",F4100\nINVESTME,SIMPSON INVESTMENT COMPANY,A5000\nHOGANS AND HARTSON,,K1000\nPhyscian,Nbhn,Y4000\nOWNER,OWENS LLC,Y4000\nManager/Partner,\"DuTEL Telecom, Inc.\",C4000\nADVANCED SCIENCES INCORPORATED,,E2000\nSTANDARD CHARTERED BAN,,F1100\nGREENE NAFTALI,,Y4000\nPRESIDENT,ROBERT K. DAWSON & ASSOC.,K2000\nChair,Tribe,G6550\nATTORRNEY,FDIC,X3000\ndoctor,Unv AL,H5100\nState Director,Sentor Mitch McConnell,Y4000\nSENATE CANDIDATE,,J1100\nOWNER,SYNERGY CONSULTING INC.,J7500\nM CORPORATION,IDEAL ROOFING & S,B3000\nPRESIDENT,LEBENTHAL & CO.,F2100\nATTORNEY,MALIZIA SPIDI,Y4000\nIntentional Software,,C5120\nGIFT STORE,,G4600\nMARCH FEDERAL CREDIT UNION,,F1300\nEducational Software Developer,Innovations for Learning,Y4000\nManager,Columbia College,J1200\nMCLD CORP,,Y4000\nDIRECTOR,STATE OF OHIO,X3200\nH & H TRAILER COMPANY,,Y4000\nOptometrist,Monroe Vision Clinic,Y4000\nSECURITY ENFORCEMENT,\"MARINE SECURITY SERVICE, INC.\",G5290\nHARRISON-ORR A/C/MECHANICAL ENGINEE,,Y4000\nPRINCIPA,CHICKASAW ELECTRICAL CORP.,B0500\n\"WYATT, FERRANT & COM\",,K1000\nDealer,Honda of Seattle.,T2310\nOFFICE MANAG,HOWARD SMITH AND LEVIN,Y4000\nassisstant director,self,J5100\nASSISTANT,DISTRICT OF COLUMBIA DOT,T5100\nEFG,Self,Y4000\nManager,Automated Building Corp,B1000\nMFG,BRY AIR,Y4000\nDiagnostic Radiologist,Pitts Radiology,H1130\nPRESIDENT & CEO,BAILEIGH INDUSTRIAL INC.,Y4000\nInvestment Manager,City National Bank,F1100\n\"VP, Operations\",Capital One,F1400\nEXECUTIVE DIRECTOR AND ATTORNEY,MAINE TURNPIKE AUTHORITY,X3000\nPaster,\"Fonntain of Life, Kingdom Church\",X7000\nDIAMOND ANTENNA &,,Y4000\nFASHION DESIGNER,LANE CRAWORD,M3100\nPsychotherapist,Self employed,H1110\nINTERIOR DESIGNE,MURPHY LONG DESIGN,Y4000\nOwner,\"Brite's Transmission Service\",Y4000\nHEDGEFUND MGR,\"BILONTROVE MANAGEMENT, LLC\",Y4000\nCEO,All American Containers Inc.,M7000\nLawyer,\"Davis, Parry & Tyler, PC\",K1000\nArchitect,Space Planning & Design,Y4000\nCHAIRMAN,ALLIED DISTRICT PROPERTIES,F4000\n\"Associate Director, Research And Devel\",Procter & Gamble,M3300\nVenture Capitalist and Entrepreneur,Self-employed,F2500\nCEO,CHANEY ENTERPRISES,Y4000\nPRESIDENT,MOSKI CORPORATION,Y4000\nEXECUTI,AMERITAS LIFE INSURANCE CO.,F3300\nPresident,\"The Barr Group, PC\",Y4000\nPHARMACIST,ASTELLAS,Y4000\nSENIOR VICE PRESIDENT,CATERPILLAR INC.,B6000\nInsurance,France and Associates,Y4000\nExecutive,\"Simon Golub & Sons, Inc.\",Y4000\nEXECU,PACIFIC INDUSTRIAL PROPERTIES,F4000\nFLORASYNTH INC,,M1000\nMANAGING,NATIONAL ARBITRATION FORUM,K1000\nEXECUTIVE,\"THE OB/C GROUP, LLC\",H1130\nCEO,Alstra Capital,F0000\nRETIRED,U.S. DEPARTMENT OF DEFENSE,X1200\nCASCADE ROOFING & SHEET METAL,,B3000\nOMEGA TEXTILE CORPORATION,,M8000\nWEST PARK PLAZA,,Y4000\nPharmaceutral Sales,\"Biogen, Inc.\",H4500\nBANKERS SYSTEMS,,F1000\nBULB & FLOWER PRODUCER,,A8000\nDH2 INC,,J5100\nAttorney,Tristan And Gonzalez,J9000\nInvestments,Grosvenor Capital Investments,J5100\nFAMILY INVESTMENTS,KENNEDY INVESTMENTS INC,F0000\nATTORNEY,\"SLAWSON, CUNNINGHAM, WHALEN & SMITH\",K1100\nReal Estate,Pacific NW Realty,F4200\nPresident,\"Imic, Inc\",Y4000\nLANDSCAPE EST,SANDERS LANDS INC,B3600\nCOMMMUNITY OUTREACH,\"IN GROUP, INC.\",Y4000\nInvestment Manager,Oaktree Capital Management,F0000\nRetired,Not employed,C5110\nRACHER,EAGLES WING RANCH,A3000\nManager,First Command Financial Planning,F0000\nADMIN/RECEPTION,BARRETT FOUNDATION,Y4000\nJR GOODTIMES,,G2900\nFINANCIAL DESIGNS INC,,F0000\n\"RN, TRAUMA NURSE\",ST JOSEPHS MEDICAL CENTER,J1100\nBUSINESS OWNE,SIMMONS BENEFIT GROUP,Y4000\nLABOR RELATIONS,IBEW LOCAL 48,LC150\nPUBLIC SPEAKER  & AUTHOR,,J7400\nSR.,\"SEABOARD SHIP MANAGEMENT, INC.\",G2300\nPRESIDENT,NATIONAL TENANT NETWORK,Y4000\nAdministrator,First Baptist Church,X7000\nATTORNEY,\"WEIR & PARTNERS, LLP\",Y4000\nATTORNEY,KEARNEY DONOVAN & MCGEE P.C.,K1000\nOWNER,RUD-COR ENTERPRISES,Y4000\nHILLCREST MEDICAL CENTER ANESTHESIA,,H1130\nSUB & DIP,,Y4000\nPubliciist,M Silver Assoc,Y4000\nORANGE COMMERCIAL CREDIT,,F1400\nHomaker,none,J1200\nPRESIDE,\"FREEPORT DISTRIBUTORS INT'L\",Y4000\nPresident,\"Grand/Sakwa Properties, LLC\",F4000\nUROLOGIST,\"UROLOGY, P.C.\",H1130\nAUTO DEALER,CALDWELL CHEVROLET,T2300\nPresident,\"Martha's Vineyard Shipyard\",T6100\nBiologist,State of MN,X3000\n\"Director, Information Te\",\"Watson Pharmaceuticals,\",H4300\nMUSICIAN,DAVE MATTHEWS BAND/MUSICIAN,C2800\nPresident,Great Western Distg. Co. of Amarillo,G2850\nPROFESSOR,KCCD,Y4000\nChairman of the Board,Moretrench American Corp,B3000\nRETIRED (P,GEORGE FAMILY FOUNDATION,X1200\nBusiness Manager,Renal Physicians of North Texas,H1100\nOPTHALMOLOGIST,OCALA EYE,Y4000\nATTORNEY,,T9300\nrestaurant publicist,none,G2900\nVP HUMAN RESOURC,TISHMAN HOTEL CORP,T9100\nFormer Ambassador,Retired,J1100\nCAMPAIGNE & ASSOCIATES,,Y4000\nADVANCED FLUID SYSTE,,Y4000\nCONTRACTOR,SELF,F4500\n\"O'DONNELL REEVES AND SHAEFFER\",,K1000\nFINANCIAL SERVICES,ELLIOTT MANAGEMENT CORPORATION,F2700\nATTORNEY,MORGAN,Z9500\nTEACHER,CAPITAL DAY SCHOOL,Y4000\nDMG INVESTMENTS INC,,Y4000\nretired elementary e,N/A,J7400\nPHYSICIAN,LAKESIDE MEDICAL CENTER,H2000\nCALHOUN COLLEGE,,H5100\nBusinessman,Central Ohio Excavating,B3600\nOwner,Henry Fischer Builder,B2000\nFORMER PUBLIC SCHOOLTEACHER,RETIRED,X1200\nBUSINESS OWNER,THE GALLEGOS CORP.,Y4000\nWAKEFIELD HEARING CTR,,Y4000\nLANE ADVERTISING & PUBLIC RELA,,G5210\nANSCHUTZ FAMILY FNDT,,X4100\nCONTRACTOR,MORROW & SONS,G1200\nPROFESSOR,MASS INST OF TECH,Y4000\nPARTNER,KALORAMA PARTNERS LLC,G5270\nPUBLISHER,STRATEGIC NEWS SERVICE,Z9500\nEnvironmental Scient,Coastal Environmental Inc.,E2000\nINTERIOR DESIGN,,F2500\nmathamatician,retired,Z9500\nExecutive/Manufacturer,Asher Chocolates,G2200\nAir Traffic Controle,ATCS US Gov,Y4000\nMARTINO-WHITE,,C1300\nATTORNEY,\"MARK R. VOGEL, P.A./ATTORNEY\",J5100\nSupervisory Contract,Us Army Tacom,X5000\nPRESIDENT,AMERICAN IRON WORKS,Y4000\nREAL ESTATE,CRANSTON,F4000\nLAWYER,SELF,LT300\nHUMAN RESOURCES,DEGUSSA-HULS,M1000\nVP FLIGHT OPERATIONS,FEDEX,T7100\nCEO,CHRONIX BIO MEDICAL,Y4000\nSLM ASSOCIATES,,Y4000\nATTORNEY,\"KEESON, YOUNG AND LOGAN\",K1000\nPRESIDENT,FAN SALES AND LEASING LLC,G4000\nBUSINESS OWNER,PERMCO,Y4000\nOwner,\"Lark Drug Pharmacy, Inc\",H1750\nWISMER DISTRIBUTING CO./PRESIDENT/C,,G2850\nProperty Investor,\"Doris Davis, Inc.\",F4500\nPrivate Equity,Pine Street Capital Partners,Z9500\nn/a,n/a,C2400\nROBERT E SHURE INC,,Y4000\nV.P. Software,Caliper Corp,J1200\nPRESIDEN,UNIVERSIDAD INTERAMERICANA,H5100\nADVERTISING,GREY WORLDWIDE,G5210\nDirector Of Government Affairs,Exelon Generation,Y4000\nTOM DINSDALE CHEVROLET CADILLAC,,T2300\nPresident,W S Electrical And Air Cond Co,B3400\nIA MED SOCIETY,,H1100\nManaging Partner,Mercurio Capital Partners,F0000\n\"CHAIRMAN, REAL ESTATE INVESTMENT\",\"MARCUS & MILLICHAP, INC.\",F4200\nWESTERN LAMINATES,,Y4000\nUNITEC CO INC,,Y4000\nPresident & CEO,Anacostia ECA,Y4000\nPT,Wendy Webb Schoenewald Physical Therap,H1700\nPRESIDENT,SIVAGE HOMES,B2000\n\"Product Developer, Manuf\",Self employed,Y4000\nJeweler,Self employed,J1200\nSOLE PROPRIETOR,\"FIVE J'S DAIRY/SOLE PROPRIETOR\",A2000\nS & H MURPHY,,K1000\nPROFESSOR,UNIV. OF OK,H5100\nPresident,West Georgia National Bank,Y4000\nBON SECOURS HEALTH SYS INC,,H2100\nPRESIDENT,BRADSHAW AUTOMOTIVE GROUP,T2000\nSCIENTIST/ADMINISTRA,UMCES,Y4000\nWAREHOUSING,SELF EMPLOYED,J6200\nTgech. Marketing Mgr,Hewlet - Packard,C5100\nReal Estate,\"pm International and Associates, inc\",F4000\nEXECUTIVE,BURGER KING CORP,G2900\nattu/,Kelly Townsend & Thomas,K1000\nPRESIDENT,NEW STAR MEDIA,Y4000\nEXECUTIVE VICE PRESI,YOUTH DEVELOPMENT INC.,Y4000\nDentist,Morrow,Y4000\nBROOKWOOD RETIREMENT COMM,,H2200\nPRESIDENT,\"TYLER SALES CO., INC.\",G2850\nSADDLEBACK HOMES LTD,,Y4000\nINSURANCE,AON P.L.C.,Y4000\nFarmer,Self Employed,B0500\n\"HANSON, BRIDGETT ET AL\",,K1000\nAttorney,Polsinelli Shugart PC,Y4000\nCLAYCO CONSTRUCTION CO,,B1000\nVenture Capitalist,USVenture Partners,Y4000\nDIAMOND VENTURES,,K2000\nPHYSICIAN,\"MHHS, GRANTSVILLE WV\",J1200\nNurse,Erie Health Center,H1100\nCEO,SARTAIN CONSULTING,Y4000\nCHAIRMAN,PARK CATTLE COMPANY,Y4000\nWOLF TRAP FOUNDATION,,X4100\nPHYSICIAN,GREENWOOD ENT,Y4000\nPathologist,New York Univ Med Ctr,H1130\nVARNADO INC,,Y4000\nATLANTIC TOYOTA,,T2310\n\"PRESIDENT, HOUSTON ELECTRIC\",\"CENTERPOINT ENERGY, INC.\",E1600\nSEN. VICE,HENRY FORD HEALTH SYSTEMS,H2100\nPHYSICIAN ASSISTANTS,DRA IMAGING,Y4000\nsales,Heinecken & Associates,Y4000\nATTORNEY,\"DAVE & BUSTER'S, INC.\",Y4000\nCNO,The Regional Med Ctr of Acadia,H2100\nTribe,native american,G6550\nDIR FED R,OFFICE OF ADMININSTRATION,Y4000\nPHYSICIAN,JOHNS HOPKINS OUTPATIENT CTR,H1130\nOWNER,THE WIKERT GROUP INC.,T8100\nBanking,Loop Capital Markets LLC,F2300\nFITNESS CONSULTING,,G5800\nBiochemist,MIT,H5100\nPIONEER EYECARE,,H1120\nATTORN,\"REHM, BENNETT AND MOORE P.C.\",K1000\nPHYSICIAN,COLLIN A. MBANUGO M.D.,H1100\nPHYSICIAN,LOWRYDAVID W.MD,H1100\nTRADE ASSOCIATION EXECUTIVE,RARE-THE ASSOCIATION FOR RARE EARTH,Y4000\nInvestor,Self-employed,J5100\nCIC PLAN,,F5200\nUnknown,Unknown,X3000\nPresident/CEO,Datahouse Consulting,Y4000\nExecutive,Miller & Chevalier,K2000\nManaging Member,PreX Capital & Partners,Y4000\nPRINTER,MINUTE MAN PRESS,Y4000\nRetirement Representative,FIDELITY F.M.R.,F2100\nPENN CENTER,,Y4000\nExecutive,\"Central States Ent., Inc.\",Y4000\nLEXUS-NEXUS,,C5130\nMANAGER,DOD,Z9500\nTHE WORNICK GROUP,,G2100\nSOFTWARE ENGINEERING MANAGER,NATIONAL APPRAISAL GUIDES,Y4000\nVP,WALBRIDGE,Y4000\nARNOLD ET AL,,K1000\nENGINEER,MERCK,H4300\n\"Director, Producer\",PumpkinHouse Productions,Y4000\nVice President & CTO,American Pacific Corporation,M1000\nSENIOR  HUMAN RESOURCES MANAGER,MICROSOFT CORPORATION,Z9500\nLAWN MAN,MISSION FOREST LAWNS,A5000\nPARALEGAL,STATE OF NEW MEXICO,X3000\nReal Estate,TRI Commercial,Z9500\nMANAGING PARTNER/C.F.O.,CORDOBA CORPORATION,B4000\nCFO,CALTECH,H5100\nHOMEMAKER,PR CONSULTANT,G5210\nADMINISTRATOR,ROSE HAVEN NURSING HOME,H2200\nADMINISTRATOR,WA STATE UNIVERSITY,H5100\nPhysicians,Washington Primary Care,H1100\nMETH UNITED HOS,,Y4000\nMORTGAGE BROKER,CFM,F4600\nCEO,PERSONAL MANAGEMENT SOLUTIONS,Y4000\nEMERGENC,JERSEY CITY MEDICAL CENTER,H2100\nCPA,self-employed,Z9500\nREAL ESTATE,\"KITSON & PARTNERS REALTY, LLC\",F5100\nINTERIOR DESIGNER,VINTAGE SAVVY. INTERIOR DESIGN STORE,Y4000\nINSURANCE EXECUTIVE,BEST EFFORT,F3100\nVP/CFO,IOWA HEALTH SYSTEM/VP/CFO,H0000\nCEDARS SINAI MEDICAL GROUP,,H2100\nTHEATER PRODUCTION,,C2900\nSales,RR Donnelley,C1300\nBUSINESS OWNER,\"MANAGEMENT, INC\",Y4000\nCHAI,HEALTH CARE PROPERTY INVESTORS,F7000\nCHAIRMAN,PASSCO COMPANIES,F4000\nATTOR,STEBBINS LAZOS & VAN DER BEKE,K1000\nCEO,WALKER FOODS,G2000\nFINANCE,\"CIT GROUP, INC./FINANCE\",F1400\nCONSULTANT,MCKINSEY,G5270\nSALES,GOLDMAN SACHS & COMPANY,F2300\nTreasurer,Bradford Evsd,Y4000\nINFO REQUESTED,Chec All Alternatives For Seniors,Y4000\nEvent Planner,My Kind of Town Tour,J1200\nFOAMADE INC,,M1500\nMILDRED ELLEY,,Y4000\nPRESIDENT,MADIAS BROTHERS INC./PRESIDENT,Y4000\nCOLUMBIA - SMACNA,,B3400\nOIL & GAS CORP,,E1100\nVP,\"ATHENA COSMETICS, INC\",Y4000\nHOPKINS SHOEMART,,M3200\nOwner,Woodhall Wine Cellars,G2820\nPRESIDENT,\"WABASH PLASTICS, INC.\",M1500\nATTORNEY,HANSEN JACOBSON,Y4000\nPRESIDENT AND CHIEF EXECUTIVE,OUTRIGGER HOTELS & RESORTS/PRESIDEN,T9100\nChief Executive,CHATEAU COMMUNITIES INC,Y4000\nOWNER,OIL AND GAS PROPERTIES,E1100\nAttorney,\"Ivey, Barnum & O'mara\",K1000\nATTORNEY,NIXON PEABODY,K2000\nVICE CHAIRMAN,\"DEHCO, INC.\",Y4000\nPRESIDENT,ACTORS FEDERAL CU,Y4000\nEXECUTIVE,CORE COMMUNITIES,Y4000\nVp Operations,Cinemagic Theatres,C2700\nPATRICOF & CO VENTURES I,,F2100\nASSISTANT HEAD MASTER,BOSTON LATIN SCHOOL,Z9500\nFARMER,,Y4000\nRace Track Promoter/,International Speedway Corp.,G6400\nAttorney,Walters McPherson McNeill,Y4000\nINAMED CORP.,,Y4000\nPVC CHEMICAL,,M1000\nINTERNATIONAL RELATIONS,NATIONAL DEMOCRATIC INSTITUTE,J1200\nCONTRACTO,JOHN J. CAMPBELL CO. INC.,B3000\nConsultant,Kirkland Partners LLC,Y4000\nTeacher,Vinton County Schools,X3500\nOWNER,PEARSALL OPERATING COMPANY,T9300\n\"Chf of Staff-Chrmn, CEO & Pres\",Aetna Inc,H3700\nCo Group Chairman,J&j Worldwide Headqtrs,H4000\nPHILLIP BROS CHEMICALS INC,,M1000\nMCCORMICK TAYLOR & ASSOC,,B1000\nBRIDGE MEDICAL INC,,H0000\nPhysician,\"VISTAR EYE CENTER, INC.\",H1120\nLicensing Agency Par,Act III Licensing,K1200\nBUSINESS DEVELOPMENT MANAGER,\"SAAB DEFENSE AND SECURITY USA, LLC\",Y4000\nEditor,American Fisheries Society,Y4000\nSENIOR VICE PRESIDENT AND CHIEF OPERAT,CENTRASTATE HEALTHCARE SYSTEM,H2100\nPRINCIPAL,SCHIMANSKI & ASSOCIATES,K1000\nBUSHAND AUTO,,Y4000\nSr Manager,Devon Energy Corp,E1150\nPRESIDENT,TEACHERS ASSOC OF BALTIMORE CO,L1300\nRN,CJW Medical Center,H2000\nCOMPASS RETAIL PROPERTY,,G4000\nEXECUTIVE,GS/EXECUTIVE,Y4000\nProfessor/Researcher,Wright State University,H5100\nMCLESKEY-TODD PHARMACY,,G4900\nVETERINARIAN,BASIS ANIMAL CLINIC,Y4000\nVICE PRESIDENT AND CHIEF OPERATING OFF,ALEGENT HEALTH-MERCY HOSPITAL,H2100\nMANAGE,SO. BAYSIDE SYSTEM AUTHORITY,Y4000\nHAZMAT/WMD Director,INTERNATIONAL ASSOCIATION OF FIRE FIGH,L1400\nPRESIDENT,SOUTHERN WINE & SPRIRITS,G2850\nVISCONSI LIMITED LTD,,J1100\nAttorney,De la Parte & Gilbert,K1000\nengineer,SystemOne,Y4000\nExecutive,Wholesale Lighting,M6000\nTENN DEPT OF AGRICULTURE,,X3000\nCorporate Executive,Sony,C5000\n\"COMMERCIAL BUILDER, DEVELOPER AND INVE\",DIXON COMPANIES INC.,Y4000\nSenior Vice President,\"Waddell & Reed, Inc\",F2100\nTeacher,Neshaminy School District,X3500\nPRESIDENT/CEO,SUTTON SIDING & REMODELING INC,B2000\nG M REALTY CO,,F4200\nManufacturing Manager,Kraft Foods,G2100\nPHYSICIAN,HENNEPIN CTY MED CENTER,Y4000\nCHAIRMAN O,MB KAHN CONSTRUCTION CO.,B1500\nOwner/President,Cottonwood Properties,F4000\nEXECUTIVE,GANN LAW BOOKS,K1000\nRabbi,Congregation Agudath Shalom,X7000\nEUREKA CORP,,T9100\nMD,COASTAL EYE SPECIALISTS,Y4000\nAccountant,Plante & Moran,J1200\nVice President,\"Strategic Communications Consultants,\",Y4000\nexec vice-president,H Lee Moffitt Cancer Center,H2000\nPRESIDENT,PETERSEN FARMS,G1200\nOWNER,BALDWIN ASSOCIATES LLC,Y4000\nGOVERNMENT RELATIONS,EDWARD JONES,F2100\nPrincipal,Capital Solutions,Y4000\nGEN.CONT.,SELF,Y4000\nFOLEY & ASSOCIATES,,B1000\nCEO,NOSTRUM MOTORS,Y4000\nOZYURT AND STONE IN,,Y4000\nNURSE ANESTHETIST,QUEST ANESTHESIA,H1130\nDEALER ACCOUNT MANAGER,WESTLAKE FINANCIAL SERVICES,Y4000\nPODIATRIC PHYSICIAN,CHARLESTON PODIATRY,H1130\nPAVIA & HARCOURT,,K1000\nOwner,Graffiti Company,Y4000\nMANAGING DIRECTOR/CO-DIRECTOR OF MARKE,BROWN CAPITAL MANAGEMENT,F2100\nVice President of Lending,Toledo Area Community CU,F1300\nBIRCH TELECOM/SR VP/PUBLIC RELATION,,Y4000\nHIGHWAY CONTRACTOR,DEAN WORD CO.,B1000\nEXECUTI,LUMBERMANS MUTUAL INSURANCE,F3100\nCLINICAL THERAPIST,SELF,J5100\nINDIANA COALITION HOUSING & HOMELES,,J7300\nATTORNE,INTERNATIONAL LAW INSTITUTE,Y4000\nreal estate develope,\"Druker Company, Ltd\",F4100\nFARMER,ADAMS FERTILIZER,Y4000\nAccounting Specialis,Halls For School,Y4000\nS & S OIL,,E1100\nSUBSTITUT,WILLIAMSON COUNTY SCHOOLS,X3500\nPresident/Owner,Mid Georgia Ambulance,H3000\nATTORNEY,WILENTZ GOLDMAN,Y4000\nINFO REQUESTED,SAUNDERS INSURANCE AGENCY INC,F3100\nDirector Government and Public Affairs,American Association of Museums,G0000\nController,Federation of American Hosp.,H2100\nSCHOOL DISTRICT #81,,X3500\nATTORNEY,ARIAGNO KERNS MANK & WHITE,Y4000\nAcoustical Consultan,self,G0000\nPresident,Allied Instrument Co. Inc.,Y4000\nOWNER,DESTEFANO FOODS INC.,Y4000\nFINDORFF CONSTRUCTION,,B1000\n\"RIDER, BENNETT, ET A\",,K1000\nPHILANTHROPY,THE OVERBROOK FOUNDATION,X4100\nEnvironmental Planner,\"T&B Planning Consultants, Inc\",Y4000\nINFO REQUESTED,ARIZONA CANCER CTR,Y4000\nGUY CARPENTER INC,,F3100\nHOMEMAKER,BIG HAT RANCH,A3000\nPHARMACIST,\"JABO'S PHARMACY\",H1750\nPROFESSOR OF BIOCHEMISTRY,MEDICAL UNIVERSITY OF SOUTH CAROLINA,H5150\nDairy Farming,Self,A2000\n\"VP, NUCLEAR FINANCE\",XCEL ENERGY,E1620\nARCHITECT,SELF,B4200\nTeacher,Lawton Public School,X3500\nPhysician,Parkway Cardiology,H1130\nProject Manager,\"Pfizer, Inc\",H4300\nBetween Jobs,None,Y1000\nAttorney At Law,Information Requested,K2000\nDIRECTOR,SAVE OUR HERITAGE,X4000\nABRATIQUE & ASSOCIATES INC,,B4000\nSELF EMPLOYED,,H2100\nOFFICE MANAGER,MINOOKA MOTOR SALES,T2300\nHousewife,Refused,J1100\nRETAIL SALES,TOLLEFSONS INC,Y4000\nDEVELOPER,INTEGRA,Z9500\nSTAFF AGENCY OWNER,SELF-EMPLOYED/STAFF AGENCY OWNER,G5250\nCoordinator,Town of WNY,X3000\nFULLER ENTERPR CORP,,B1000\nACCOUNTANT,\"CARBURETION & TURBO SYSTEMS, INC.\",Y4000\nREFCO INC,,F2200\nFLORY INVESTMENTS INC,,Y4000\nINFORMATION REQUESTED PER BEST EFF,CREATIVE DIRECTOR,G0000\nhotelier,Irving House Corporation,T9100\nN/A/CIVIC LEADER,,F4100\nCT CITIZEN ACTION GROUP,,J3000\nDirector of Operatio,\"Tru-Cut Saw, Inc.\",J1200\nPRIVATE EQUITY,G.T.C.R.,F2100\n\"SKADDEN, ARP, SLATE, MEAGHER & FLOM\",,K1200\nAttorney,JUGE NAPOLITANO ETAL,K1000\nG&B MARINE,,Y4000\nAdministrator,Colleg of Dupage,H5100\nCONSTRUCTION,OHIO WEST VIRGINA EXCAVATING CO,B3600\nBEL AIR SURGERY,,H1710\nBusiness Executive,\"Stockwell Elastomerics, Inc\",Y4000\nReal Estate,Post Properties,F4500\nCEO,Freight Desk Technologies,T3100\nMEDICAL DIRECTOR OF PERIOPERATIVE SERV,HIGHLAND HOSPITAL - UNIVERSITY OF ROCH,H1130\nCORP EXEC,DAVID ALLEN COMPANY,B5100\nInvestment,Farallon Capital Management,F2700\nPolitical and PAC Di,PCI,F3100\nPLASTIC SURGEON,NEW YORK EYE AND EAR INFIRMARY,H1130\nVALLEY WIDE RESTORATION SERV,,Y4000\nCEO,\"Consists International, Inc.\",Y4000\nTEAC,SCHOOL ADMINISTRATOR,Y4000\nSCADDA CORPS,,K1000\nLEGISLATIVE STAFF,THE PEW CHARITABLE TRUSTS,X4100\nCEO,NEW BREED LOGISTICS,G5200\nA,\"ONCALL CORPORATE JET REPAIR, INC.\",J1100\nATTORNEY,\"PULMAN, CAPPUCCIO, PULLEN & BENSON, LL\",K1000\nPartner,Goodman Properties,F4000\nDESYN,,F4000\nFOUNDER AND CHAIRMAN EMERITUS,THE WINE GROUP,G2820\nEXECUTIVE DIRECTOR,THE WAY YOUTH INITIA,Y4000\nVICE PRESIDENT GLOBAL HR,INVISTA SARL,E1160\nMARSHALL COMPANIES,,G4300\nLawyer,\"American International Group, Inc\",F3100\nAttorney,Sonnenschein,J1200\nHistorian,US Army,X5000\nATTORNEY,\"MASTAGNI, HOLSTEDT,  AMICK, MILLER & J\",Y4000\nGENERAL,HARLEY DAVIDSON OF LAKELAND,Y4000\nDance Instructor,Self,J7400\nSNOHOMISH COUNTY,,X3000\nCPA,SE,F5100\nSOCIA,CA COMMUNITY COLL. FOUNDATION,H5100\nprofessor,naropa university,H5100\nINTERIM OFFICE PROFESSIONALS,,Y4000\nAUTO BROKER,SELF,T2300\nTECHNICIAN,P & O PORTS,Y4000\nFinance,\"NRG Energy, Inc\",E1630\nATTORNEY,AWKO,Y4000\nPresident,Upper Peninsula Health Plan,Y4000\nKOPPERS INDUSTRIES,,M1600\nMUNICIPAL,M. CAPITAL MARKETS GROUP.,F0000\nUNIVERSITY OF,PROFESSOR OF ENGLISH,J1200\nPRESIDENT,REI INVESTMENTS,G1100\nWILBUR ELLIS CO,,A4100\nNOBLE ADVERTISING,,G5210\nBUSINESS AGENT,UFCW LOCAL 1776,LG100\nSenior VP,Grubb & Ellis Co,F4200\nPOINTSERVE,,C5140\nCEO,Southern Machinery Repair,G5600\nPEOPLLOUNGERS INC,,Y4000\nPresident,Cornerstone Govt Affairs,K2000\nRestaurateur,Liberty House Restaurant Corp. DBA Bon,G2900\nRADIATION ONC,RADIATION ONCOLOGY PA,H1130\nMASSIE FEEDENLEY GOLDBERG LLC,,F5100\nWEST VALLEY MISSION CCD,,Y4000\nH W KETCHUM COLLECTION SVC INC,,F5200\nCHAIRMAN / C.E.O.,AT&T INC.,C4100\nOWNER,BK LIGHTING,M6000\nHEYNES AND BOONE,,Y4000\nCommissioner,Federal Energy Regulatory Commission,Z9500\nKILLDEER MOUNTAIN MFG,,Y4000\nOWNER,SUN MOUNTAIN LUMBER LLC,A5000\nMCGINNIS INVESTMENTS,,F7000\nInsurance and Bonding Sales,AAron Bonding,Y4000\nPresident/Chief Executive Officer,Texas Bank and Trust Company,F1100\nPIERCE KENNERLY & HAAS INC,,Y4000\nOWNER,REALTY CENTER GMAC,F4200\nSELF EMPLOYED,PRECISION  GEOPHYSCAL INC,Y4000\nInsurance Agent,Broussard + Bush,Y4000\nPRESIDENT AND CEO,DELTIC TIMBER CORPORATION,A5000\nTRI M. CORPORATION/CHAIRMAN / C. E.,,C4600\nC.E.O,BOSTON COMMUNITY CAPITAL,F0000\nBERWANGER OVERMYER ASSOCIATES INC,,F3100\nPACIFIC BUILDING INTERIORS,,Y4000\nInvestment Banker,Self-Employed,F2600\nSHORT BROS USA INC,,T2300\nLMT STEEL PRODUCTS,,J5100\nENGINEER,MICREL SEMICONDUCTOR,Y4000\nGIUSTINA WOODLANDS,,A5000\nFINANCE,STANDARD GENERAL LP,Y4000\nLAINER INVESTMENTS,,J5100\nAFFORDABLE HOUSING,AREA INC,Y4000\nNurse,Self employed,J1100\nAccountant,Magnus Flaws & Company,F5100\npresident,Ring Power Corp.,F4000\nBAY PINES MED CENTER,,H2100\nConsultant,\"KBK Enterprises, Inc\",Y4000\nSYSTEM ADMINISTRATOR,ERT CORP,Y4000\nSOFTWARE ENGINEER,\"MACROMEDIA, INC.\",C5120\nCEO,NEW SIDELINES,J7400\nOwner,Jamie Howard & Associates LLC,Y4000\n\"ADVANCE BEVERAGE CO., IN\",,G2820\nPRESIDENT,SHURLING AND CO.,F4000\nTHE ARCHITECTURAL TEAM I,,B4200\nCNO,Medical Center of McKinney,H2100\nDentist,Ribbond,J1200\nCONSULT,\"CREDIT RISK MANAGEMENT, LLC\",F5200\nContractor,\"Allstate Sheet Metal, Inc\",B3400\nMAYOR DAY CALDWELL & KEETER,,K1000\nRETIRED,CIA/RETIRED,X3000\nWBIO-FM/THE CROMWELL GROUP/PRESIDEN,,Z9500\nDEALER,LEXUS OF MONTEREY PENINSULA,T2310\nAttorney,\"Van Scoyoc Associates, Inc.\",K2000\nLEWIS-BURKE ASSC,,K2000\nWARD CONSTRUCTION INC,,B1500\nSELIGMAN ADVISORS INC,,Y4000\nINFO REQUESTED,SELECTIVE LANDSCAPES,B3600\nLawyer,\"Sawicki & Phelps,\",J1200\nOUZTS CONCRETE,,B5100\nGOLDEN GRAIN ENTERPRISES,,Y4000\nVICE PRESIDENT,CSIS,Y4000\nMOORPARK UNIFIED S D,,Y4000\nPRESIDENT,GREEN HILLS HOMES INC,B2000\nAnesthesiologist,\"Northwest Anesthesia, PC\",H1100\nSupplier Diversity,Self,Y4000\nDEMO & RAINEY LLP,,Y4000\nEXECUTIVE,A. & F.,G4100\nPolitical Consultant,Moxie Media,JE300\nSUMMIT CO REP CENTRAL,,J1100\nRODEFELLER FRANCEAL SERV,,J7400\nCEO,Vision Service Plan,F3200\nBudget Specialist,Nurc/CMS/Uncw,Y4000\nDELAWARE INV ADV,,Y4000\nKAMMER & STUDINSKI,,Y4000\nHOSPITAL,GEORGETOWN HEALTHCARE SYS,H0000\nL.W.P. CLAIMS SOLUTIONS,,Y4000\nSELF/HORSE FARM OWNER/ AND WRITER,,JE300\nBOND SALES,CANTOR FITZGERALD,F2100\nATTORNEY,PRATT AND TOBIN,K1000\nCEO,Clear Vista Construction,B1500\nOwner,\"Michals Banquet Facility & Uncle Joe's\",Y4000\nPresident,Honickman Foundation,G2700\nPRESIDEN,WALTERS MANAGEMENT COMPANY,Y4000\nINSURANCE EXECUTIVE,EMC,F3100\nExecutive,Stride Rite Foundation,J5100\nNYC BOARD OF EDUCAT,,X3500\nChairman,Iberia Tiles Corp,Y4000\nWEBMASTER,SELF,Z9500\nAccountant,Sabic Innovative Plastics,M1500\nPSYCHIATRIST,UNIVERSITY OF MARYLAND,H5100\nProfessor,Western New England Law School,H5170\nCHIMICLES JACOBSEN & TIKELLIS,,K1000\nFilm Writer/Director,Bordertown Pictures,Y4000\nVP-Business Development,Ultralife Corporation,Y4000\nVICE PRESIDENT,\"RESTORX OF TEXAS, LLC\",F4500\nMONTGOMERY COUNTY LIBRARY,,X4200\nDUELL FUEL,,Y4000\nPhysicist,Caltech,H5100\nBEVERAGE,SELF,G2840\nDIRECTOR OF SHAREHOLDER SERVICE,\"BRONSTEIN, GEWIRTZ & GROSSMA\",Y4000\nED HICKS IMPORTS,SELF,T2300\nRETIRED,CITY OF DETROIT HEAL/RETIRED,X1200\nTeacher,John Dewey Academy,Y4000\nPRESIDENT AND CEO,CIG FINANCIAL,F0000\nCHIEF FINANCIAL OFFICER,,M2200\nVice-President Commercial Lendin,CitiNational,Y4000\nCASHIER,SAN DIEGO ELECTRIC,B3200\nBLUFF CITY BRITISH CARS,,T2310\nEXECUTIVE,RATIO ARCHITECTS,B4200\n\"VP, Operations\",Fisher Scientific International,M9000\nAttorney,Crpe,Y4000\nPRINCIPAL,PETTIGREW & ASSOCIATES,B4000\nBUSINESS RE,TENNESSEE CARPENTERS RC,LB100\nHorse Racing Partnership Sales,Cherry Prospect Mgt (Self),Y4000\nINVESTMENT BANKER,FREEMAN SPAGI & CO.,F2100\nReal Estate Broker,Walters Power International,E1700\nMGT CONSULTING,SELF EMPLOYED,J1200\nGovernment Relations,Fidelity Investments,F2100\nAUDITOR,US GOVT,X3000\nManager,Tonuca Basu,Y4000\nV P RENTAL OPE,PENSKE TRUCK LEASING,T3100\nOWNER,SUMMIT INSURANCE GROUP INC.,F3100\nTAUSS CONSULTING,,Y4000\nDISNEY CHANNEL,WALT DISNEY CO,C2200\nBUSINESS DEV,US SMALL BUSINESS ADM,X3000\nRESEARCH IN MO,GOVERNMENT RELATIONS,C4300\nEvent Producer,self,G0000\nHOWARD-PAYNE UNIVERSITY,,H5100\nSelf- Employed,N/A,Y4000\nPartner,American Financial and Retirem,Y4000\nCITY OF APPLETON,,Y0000\nCOMP PROGRAMMER,SELF EMPLOYED,C5120\nCLIO INC,,Y4000\nPARTNER,LEEDS MORELLI & BROWN,K1000\nLOBBYIST,ITC HOLDINGS GROUP,E1620\nInsurance Agent,Dimond Brothers Agency,F3100\nGENERAL MANAGER,C.M.C.,Y4000\nU OF ROCHESTER,,H5100\nDistributor Sales Mg,Miller Brewing Company,G2810\nVP & GEN MGR - AG PR,Union Pacific Railroad,T5100\nManager,Key Bank,Z9500\nCHIE,CARDIAC SURGERY ASSOC.OF NE PA,H1130\nEXECUTIVE MANAGER,ROBERT L. BAYLESS PRODUCER LLC,Y4000\nGEORETOWN PARTNERS,,J7500\nOwner - Letter Perfect,Self,Y4000\nCOMMERCIAL REAL ESTATE AGENT,,F4200\nREAL ESTATE DE,THE BARRY CO. L.L.C.,J1100\nATTORNEY,FLEISCHMAN AND WALSH LLP,K1000\nowner,Jackson Burglar Alarm,Y4000\nTHE WORTHINGTON GROUP,,K2100\nEXECUTIVE,CAP,F3100\nDir Environmental,PAB,G2600\nVice President & Chi,A&E Television Networks,C2200\nTALISMAN SUGAR CORP,,A1200\nExecutive Vice President & COO,Newland Communities,K1000\nHUTCHISON HAMES INTL INC,,Y4000\nBRONX CENTER FOR HEALTH CARE,,H3000\nINV,HOWARD HUGHES MEDICAL INSTITUTE,J1200\nSALES,WASTEQUIP MCLAUGHLIN,Y4000\nManager,Ewa Beauty Supply & Salon,Y4000\nMusic Industry,Rca Records,J1200\nSr. VP,American Health Insurance Plan,K2000\nGROUP TECHNOLOGY EXECUTIVE,WELLS FARGO BANK N A,F1100\nATTORNEY,US DEPT. OF JUSTICE,J1200\nREALTOR,OLD TOWN DEVELOPMENT,Y4000\nHR,Cisco Systems,C5110\nOwner,Craft House Studio Arts Inc.,Y4000\nDEVELOPER,JAN DEVELOPMENT CO.,Y4000\nCHIEF INFORMATION OFFICER,GENTIVA HEALTH SERVICES,H3100\nNURSE,Not employed,Y1000\nPhysician,Virginia Mason Hospital,H2100\nCollege President,Hampden-Sydney College,H5100\nManager,Integrated Microwave,Y4000\nLAWYER,HANKINS AND HICKS,K1000\nAttorney,\"Robertson, Freilich\",K1000\nConstruction,Kiewit,B1000\nSecretary,Leyendecker Construction,B1500\nCLASSROOM TEACHER,TOPEKA PUBLIC SCHOOLS,L1300\nEXECUTIVE,HOLIDAY WHOLESALE,Y4000\nVENTURE CAPITAL,CHINAVEST INC.,Y4000\nNeurosurgeon,self,H1130\nPresident,Ram Engineering & Const. Inc.,B0500\nFOUN,SPARTANBURG REGIONAL HEALTHCAR,H2100\nGEOGRAPHY CLERK,U. S. BUREAU OF THE CENSUS,X3000\nHOMEMAKER,N/A/HOMEMAKER,G2500\nINVESTOR,RUSTIC CANYON PARTNERS,J1200\nsales,Comcast Spotlight,C2200\nENGINEERING VP,TOSHIBA AMERICA INFORMATION SYSTEMS,Y4000\nPHYSICIAN,STAMFORD MEDICAL CENTER,H1100\nFRANCIS M LETRO,,Y4000\nCONTRACTOR,\"CAJUN CONSTRUCTORS, INC./CONTRACTOR\",B1500\nP.O.A.,,F2600\nDUBLIN CAPITAL,,F0000\nA DUCHINI,,B5100\nCEO,S.J. LOCKWOOD & CO. LLC,F4100\nGILES & RANSOME,,Y4000\nMICHIGAN INSURANCE FED,,F3100\ninf,inf,Y4000\nInvestments,SELF-EMPLOYED,F2100\nPresident,Tooley Oil Co,E1100\nPROFESSOR,CORNELL,Y4000\nBISON ENGINEERING,,B4400\nAUTO DEALER,HEINTZ AUTO,Y4000\nManaging Dircetor,\"McKenna, Long & Aldridge, LLP\",K1000\nLIEBEN WHITTED,,K1000\nSTAINLESS INC,,J1100\nRODGERS DEALERSHIP,,Y4000\nChairman & C.E.O.,The Scotts Company,A4100\nCHRISTENSON-SIMMS FUNERAL,,G5400\nPRINCIPAL,WINDWATER CAPITAL,F0000\nPRESIDENT,SUNCOAST BEVERAGE,Y4000\nKB JUECHTER MD PC,,H1120\nJFK INSTITUTE,,Y4000\nReal Estate Investor,Gould Investors,J5100\nASSISTANT PUBLIC DEFENDER,\"ORANGE COUNTY PUBLIC DEFENDER'S OFFICE\",Y4000\nRENAISSANCE PUBLISHING CO INC,,C1100\nSALES MANAGER,MARSHALLTOWN COMPANY,Y4000\nSTARTUP,SELF,J1200\nCENTER FOR ENVIRONMENTAL EDUCATION,,JE300\nREAL ESTATE MA,DOMINION REALTY INC.,F4200\nE A GOODMAN & COMPANY,,F1100\nPhysician,Los Angeles County Harbor-UCLA Medical,Y4000\nFinancial Adviser,Headley Financial Services,F3300\nDefense Consultant,\"Whitney, Bradley & Brown, Inc\",K1000\nAttorney,FAYARD AND HONEYCUTT,K1000\nPHYSICIAN,ORO VALLEY ANESTH,H1130\nRetired,Not employed,X3200\nBUSINESS EXECUTIVE,AT&T,C4100\nMANAGING PARTNER,BARNES & THOMBURG LLP,K2000\nEXECUTIVE,VALLEY FORGE INVESTORS,F7000\nPresident,LONGWOOD INVESTMENTS,Y4000\nAttorney,Nicholls & Crampton PA,K1000\nLIBERTY HEALTHCARE/SURGEON/ADMIN.,,H0000\nEXECUTIVE,SPIROL INTL CORP,Y4000\nPIPEFITTER LOCAL #455,,LB100\nBusiness Consulting,Hawaii Information S,Y4000\nCOMPUTER PROGRAMME,GOLDER HELIX INC,C5120\nDIRECTOR OF I,UNIVERSITY OF WYOMING,H5100\nEMPRESAS SERAFIN INC,,Y4000\nBEST EFORTS,,J5100\nCommunications Director,NCBA,A3000\nGEM PRODUCTIONS,,Y4000\nSmall Business Owner,Well Testing,E1150\n\"THE WELDER'S SUPPLY CO\",,B5000\nVp,Nutley Supply,Y4000\nPORTFOLIO MANAGER,CAPITOL GROUP,K1000\nAT HOME,,M2300\nVenture Capitalist,Coastview Capitol,F2500\nSCHOOL LIBRARIAN,SOUTH PASADENA UNIFIED SCHOOL DISTRICT,X3500\nATTORNEY,BANKSTON & BICKHAM,J1200\nCAL MICROWAVE INC,,C4600\nTELEVISION EXECUTIVE,DISCOVERY,C2000\nInformation Requested,Bella Energy,E1000\nExecutive,Strategic Public Partners,K2000\nNETHELIX INC,,Y4000\nBEER DISTRIBUTOR,DANA DISTRIBUTORS INC.,Y4000\nSR VP FEDERAL GOVERNMENT AFFAIRS,TECHAMERICA,Y4000\nLabor Union Official,AFSCME,L1200\nCEO,BOWA Builders Inc.,B2000\nCONTRACT,FLYNN BROTHERS CONTRACTORS,B1000\nMT ZION MBC,,Y4000\nPresident,Denver Rock Island Railroad,T5100\n\"Business Owner, CEO\",\"Bradley Consulting Group, PC\",F5100\nDARTH VADER IMPERSONATER,SELF,Z9500\nRetired,Dress Barn,G4100\nOWENER,ADCOX CHEVROLET,T2300\nChairman,Julyan,K1000\nManaging Director,Mckinsey & Company,Z9500\nPARTNER,SCHROLL & SCHROLL LAW OFFICES,K1000\nMANAGER,\"CHU'S MOBIL\",Y4000\nBRAMAN MANAGEMENT ASSOC,,J5100\nVALUE RX,,Y4000\nVice President,MacAndrews & Forbes,M3300\nGeneral Mgr,PEMTooling Inc,J1100\nBroker,Cavalier Mortgage Group,F4600\nPartner,Dixon Davis Media,Y4000\nBUSINESS WOMAN,,J1100\nSocial Worker,US Dept of Veterans Affairs,X3000\nPRODUCT DEVELOPEMENT,OHIO NATIONAL LIFE INS,F3300\nOASIS EDCTN CENTER,,Y4000\nCOMPUTER ENGINEER/TROUBLESHOOTER,NEW TECHNOLOGY ASSOCIATES,Y4000\nSenior Advisor,Matson Logistics,T7200\nNATIONAL EVALUATION SYSTEMS,,Y4000\nphysician -- urologist,marshfield clinic -- employed,Y4000\nPartner,Cypress Healthcare Management of Georg,Y4000\nCONTRACTOR,ENTREPENEUR,Y4000\nPRESIDENT,A.L.S. INC.,H3000\nSr. Vice President/Chief Product Offi,LexisNexis,C5130\nINTERPERSONAL COMMUNICATION,,Y4000\nPresident,King Cadillac GMC,T2300\nSALES REP.,MOTIVE COMM.,Y4000\nTREC-ADVANCED COMPUTER SYSTEMS INC,,C5100\nBAY HARBOR MANAGEMENT,,Y4000\nPRESIDENT,HYNES ASSOC ARCHITECTS,B4200\nfuneral director,A J Desmond & Sons FD,G5400\nBELK LINDSAY,,J7400\nPHYSICIAN,W.B. CARRELL CLINIC,J1100\nTeacher,Wakefield Public Schools,X3500\nCPA,CRAIN & CO.,F5100\nATTORNEY,\"PHILLIPS, NIZER, L.L.P.\",K1000\nInformation Requested,Self employed,C5120\nProject Manager,UNITED HEALTHCARE,H3000\nGRANUM COMMUNICATION,,C2100\nPHYSICIAN,POUDRE VALLEY INTERNISTS,Y4000\nKAJELAAN & P ARJOLO ASSO,,Y4000\nVP GOVERNMENT AFFAIRS,RESEARCH IN MOTION,C4300\nPRESIDENT,\"MEADOWBROOK ASSOCIATES, LLC\",Y4000\nPathologist,Holy Name Hosp,H1130\nSERA,,Y4000\nEXECUTIVE AIR,,T1000\nCASTLE IN THE SAND HOTEL,,T9100\nBankrupcy Attorney,Self,Z9500\nCommunity Volunteer,Self employed,T1500\nREAL ESTATE & INVESTMENT,MANDELBAUM,F4000\nThe Ohio Neurosurgical Institute,,Y4000\nWALK HAYDEN & ASSOC,,B4000\nATTO,MCKENNA STORER ROWE WHITE & FA,K1000\nMEDICAL DOCTOR,FLORENCE RADIOLOGY ASSOC.,H1130\nEXECUTIVE DIRECTOR,OREGON LEAGUE OF CONSERVATION VOTER,Y4000\nPROF (RETIRED),U T EL PASO,H5100\nPARTNER/FOUNDER,\"UNLIMITED CONSTRUCTION SERVICES, INC.\",B1500\nTHE CHARLES SCHWAB CORPORATIO,,F2100\nACCOUNTANT,GALLINA,Y4000\nCRP CUS SER M,UNITED PARCEL SERVICE,T7100\nExecutive Officer,Lawrence Livermore National Laboratory,D4000\nBUSINESS EXEC.,RETIRED,Z9500\nSENIOR EXEC VICE PRESIDENT GENERAL COU,PINNACLE ENTERTAINMENT,G6500\nGENERAL MANAGER - SOUTH,BAKER DISTRIBUTING CORP. - SOUTH,G2850\nconsulting,self,G5260\nWILSON BUSINESS MACH,,Y4000\nStudent,Stanford University,J1200\nNetwork Administrator,The Reading Hospital & Medical Center,H2100\nNORMAN BOGGESS CHEVROLET,,T2300\nCOMMUNICATION,FEDERAL,Z9500\nJACKSON BROTHERSLLC/CONSERVATOR/PAR,,Y4000\nOwner,El Camino Palo Alto Llc,Y4000\nEXECUTIVE,HANDY WACKS CORPORATION,Y4000\nWAREHOUSE WORKER,[Information Requested],J1200\nSALOMON BROTHERS INCORPORATED,,F2100\nPARTNER,MOORE TRUCK & EQUIPMENT,Y4000\nLAW OFFICE OF FRANK P BLANDO,,K1000\nPRESIDENT,LEGITSCRIPT,Y4000\nPRESIDENT,TUFTS UNIVERSITY,H5100\nPHYSICIAN,AMG/PHYSICIAN,H1130\nTech Support Mgr,Satmetrix Systems,Y4000\nCeo,\"Pragmatic Marketing, Inc.\",Y4000\nREAL ESTATE DEVELO,RPS HOLDINGS INC,Y4000\nMERCK-MEDCO,,H0000\nEXECUTIVE,MORGAN CHASE,Y4000\nAMERICAN HEALTH CARE ASSOCIATION,,G4900\nOWNER,FROSTY TOWEL,Y4000\nExecutive,Health Futures Devp. Group,G5270\nRaleigh America,President,G0000\nFLETCHER HEALD & HILDRET,,K1000\nCONSULTANT,PAC/WEST COMMUNICATIONS,Y4000\nPRESIDENT,WAGONHAMMER CATTLE CO,Y4000\nUROLOGY CENTER OF CHESTER COUNTY PC,,H1130\n\"VAN FLEET, METZNER & MEREDITH\",,Y4000\nPartner,\"Copaken, White & Blitt LLC\",K1000\nEcon Dev Consultant,Rubin Advisors Inc,Y4000\nQA ANALYST,CITY OF SEATTLE,X3000\nPRESIDENT,JP WEST INC.,Y4000\nDNR CONSOLIDATED,,Y4000\nPRESIDENT--C.E.O.,\"WINCO FOODS, LLC\",Z9500\nTRADEMARK INSURANCE INC,,F3100\nREED & JOSEPH,,J1100\nEXECUTIVE,PILOTO CIGARS,A1300\nCEO,TRIAM CONSULTANTS,Y4000\nNURSE AN,ELYRIA ANESTHESIA SERVICES,H1130\nREAL ESTATE LEASING &,SELF EMPLOYED,F4000\nEnvironmental Planner,Matrix Environmental Planning,Y4000\nEXECUTIVE DIRECTOR,FUND FOR RECONCILIATION AND DEVELOPMEN,Y4000\nBoard Member,Lakeland Bank,Y4000\nATTORNEY,ITT ESI.,Y4000\nBANKHOFF ASSOCS,,Y4000\nManager,J & W Seligman Company,J1100\nE T L COMPANY INC,,Y4000\nMECHAN,VALVOLINE INSTANT OIL CHANGN,E1100\nschool principal,school district,X3500\nlobbyist,The Loeffler Group,K2000\nPEDIATRIC DENTIST,N. PHOENIX PEDIATRIC DENTISTRY,H1400\nINVENTOR,A2D,Y4000\nentertainment,self,Z9500\nCONE OIL,,J2200\nself,RETAIL,G4000\nADMINISTRATOR,STATE OF PENNSYLVANIA,J1200\nMANAGING DIRECTOR,\"HORTON INT'L, LLC\",Y4000\nABBY BROOKS INC,,Y4000\nRe-Tried,Hershey Foundation,X4200\nAttorney,S.S.A./O.H.A.,Y4000\nRetired,\"Dechert, Price & Rhodes\",X1200\nTURNER & SEYMOUR MFG CO,,Y4000\nOWNER,J. SMITH LANIER & COMPANY,F3100\nSALES,SELF INSURED SOLUTIONS,G0000\nCHIROPR,NORTHLAND HEALTH & WELLNESS,Y4000\nMarketing Communications Manager,Honeywell International,M2300\nREAL ESTATE,ARNOFF & ASSOCIATES,Y4000\nINVESTMENTS,BERKSHIRE PARTNERS LLC.,F2600\nPHYSICIAN,AA INC.,Y4000\nMinister,Friendship Missionary Baptist Chur,X7000\nPartner,\"DeYoe, Heissenbuttel\",K1000\nSPECIAL ASSISTANT TO THE PRESIDENT,\"US GOV'T\",J7300\nPRESIDENT,FSM CAPITAL,Y4000\nrealtor,First Weber Group Realtors,F4000\nChairman & CEO,\"Citigroup, N.A.\",F1100\nMORGAN GUARANTY TRUST CO OF NY,,Y4000\nOwner,Progress Glass,Y4000\nCEO,MILLER PROPERTIES,F4000\nCO-FOUNDER,KANGA,Y4000\nVice Pres.,Grupe Co.,B2000\nSouthern Star Central Gas Pipeline,,E1100\nCO- CHAIRMAN,REYCO HOLDINGS L.L.C.,Y4000\n\"R J CARR'S\",,Y4000\nGARCEVEUR CORP,,B5100\nSENIOR VICE PRESIDENT,METROPOLITAN THEATRES,C2700\nPresident,Dwyer Engineering,B4400\nInvestment Advisor,Oak Value Capital Management,F2100\n\"SANDLER O'NEILL & PARTNERS\",,F2300\nMEDIA EXEC.,NEWS CORPORATION,C2400\nCENTRAL VT PUBLIC SERVICE,,Y4000\nCo-President,Roadside Attractions,C2400\nPresident,Lawrence Grossman & Assoc. Pc,Y4000\nBanks,LSND,Y4000\nENTERTAINMENT MUSIC/PRODUCTION,SELF EMPLOYED,G0000\nLIFE INSURANCE AGENT,THE KENTOR COMPANY,F3300\nPHARMACIST,\"MADDEN'S PHARMACY\",G4900\nUNITED PROPERTY SALES,,F4200\nGovernment Affairs,Capital Hill Strategies,K2000\nCAROLINA FRIENDS,,Y4000\nSALES ENGINEE,MONVOE EQUIPMENT INC.,Y4000\nVICE PR,FLIGHT SAFETY INTERNATIONAL,T1600\nCFO,SOROS FUND MANAGEMENT,F2700\nNurse Anesthetist,Martin Anesthesia Group,H1130\nPresident,IASC,X4000\nMORTGAGE LENDER,STEARNS LENDING,F4600\nCONSULTANT,AMERICA GROUP,K2000\nSALES MANAGER,KABC-TV,C2100\nPHYSICIST,PLASMA DYNAMIC CORPORATION,Y4000\nPresident & CEO,Roxann Management,Y4000\nOwner,Dr  Hillsman MD,H1100\nACCOUNTOR,MNAP DIAGNOSTIC CENTER,Y4000\nAntique Appraiser,\"Merritt Appraisals, LLC\",F4700\nAttorney,\"Applegate & Thorne-Thomsen, P.C.\",Z9500\nPresident,Pennington Associates Inc,Y4000\nHILTON REALTY INVESTMENT,,Y4000\nTILE HELPER,COX TILE INC.,Y4000\nREALTOR,CORNERSTONE REAL ESTATE INTERNATIONAL,F4000\nEmergency Physician,Lancaster General Hosp ED,H1100\nOwner,Superstar Lending Group Inc.,Y4000\nRealtor,Victorian Property,J1200\nMUSICIAN,HOUSTON SYMPHONY ORCHESTRA,B2000\nENGINEER,MILLER TECHNICAL SERVICES,J1100\nPublisher,Central Illinois Business Publ,Y4000\nAttorney,Bernstein Liebhard & Lifshitz,Z9500\nCHIEF/CONGRESSIONAL AFFAIRS,NATIONAL GEOSPATIAL INTELLIGENCE AG,Y4000\nExecutive Director,IL Network for Centers for Independen,Y4000\nEXECUTIVE,NEWPORT HOTEL GROUP,T9100\nATTORNEY,JOSEPH D. KAPLAN & SON,K1000\nGRUNTEL & ASSOCIATES,,F2100\nOFFICE MANAGER,ROBERT MCGILL CONSTRUCTION,B1500\nEAST CHATHAM H S,,X3500\nANDERSEN CORPORATION,,J1100\nPHAMACIST,OMNICARE INCORPORATED,Y4000\nCNMI,,Y4000\nRANCHO JOHANSEN & PURCELL,,Y4000\nATTORNEY,WINBURN LEWIS & BARROW,K1000\nCLASSROOM TEACHER,GRANITE DISTRICT,L1300\nSafety Director,QCI Thermal Systems,B0500\nOIL & GAS,CACTUS WELL HEAD,Y4000\nOWNER,KAUFMAN LYNN CONSTRUCTION,B1500\nCEO,SENTEK CONSULTING,J1200\nRESEARCH ANALYST,FISHER INVESTMENTS,F7000\nHABIB ADVERTISING,,G5210\nEngineer,Pickering,B4000\nFinance,India Capital Research and Advisors Pv,F2100\nINTERNATIONAL SPEEDWAY,,G6400\nSurgeon,Oregon Health & Science Univ.,H5100\nSoftware Developer,f5 Networks,C5120\nCEO,AEROPAC INC,Y4000\nLanscaper,Self employed,B3600\nPHYSICIA,STRATTON VA MEDICAL CENTER,H1100\nBANGEL BANGEL &,,K1000\nAccount Executive,\"Sport Supplements South, Inc.\",Y4000\nOFFICE MAN,AMERICAN MUSLIM ALLIANCE,J7500\nSOLUTIONS ARCHITECT,KBM GROUP,Y4000\nMORTGAGE BROKE,OHIO FINANCIAL GROUP,F4600\nKAISER AEROSPACE & ELEC,,Y4000\nconsultant,JBMB Consulting Inc.,J1200\nPRESIDENT,FIELDS GROUP,Y4000\nRICHARD J SCHWARTZ CORP,,F2100\nCLAUDE SITI DDS,,H1400\nTHE EDEN STATE BANK,,F1100\nEXECUTIVE,ARMSTRONG UTILITIES,C2200\n\"JONES, GALLEGOS\",,Y4000\nEngineering Contractor,JR Filanc Construction,B1500\nBUSINESS OWNER,M & A WELDING SUPPLY CO./BUSINESS O,Y4000\nREAL ESTATE,GOLDBERG COMPANIES INC,F4500\nSelf employed,Self employed,J7300\nInvestment Advisory Consultant,Self employed,F2100\nAttorney,Oarling Law,Y4000\nPartner,1634 Associates,Y4000\nAttorney,\"Salzmann, Hughes & Fishman, PC\",K1000\nChairman,Value Click,C5140\nAttorney,Klein Law Firm,K1000\nPROGRAM MANAGER,WIPRO,Y4000\nLiterary Agent,Self,G0000\nDEALER,FEENY DODGE INC,T2300\nTWICHELL ONSTAD,,Y4000\nPartner - CPA firm,Crowe Horwath LLP,F5000\nENGINEER,LIGHTSPRAY,Y4000\nTEAM LEADER,\"METRO, ST. LOUIS SEWER DISTRICT\",Y4000\nChairman,Palisades Pictures,G5210\nCORNELIUS JOHNSON,,Y4000\nHEALTHCARE CONSULTANT,IMPACT ADVISORS,Y4000\nWDAC RADIO COMPANY,,C2100\nattorney,\"Blank,Rome,Comisky et al Cherry Hill,\",K1000\nPortfolio Manager,\"Partner Fund Management, LP\",Y4000\nDSSF,,Y4000\nDENTIST,KELLY DENTAL CARE,J6200\nEngineer,Aveva Drug Delivery Systems,Y4000\nEXECUTIVE VICE PRESIDENT,REGIONALCARE HOSPITAL PARTNERS,H2100\nBUSINESS OWNER,WESTMINSTER ADVANCED INSTITUTE,Y4000\nCHIEF OPERATING OFFICER,SHINE AMERICA,Y4000\npublic affairs,\"Triadvocates, LLC\",K2000\nPACE ENTERTAINMENT COR,,C2800\nNATION HOSIERY MILLS INC,,M8000\nowner,Gulf Island Development,Y4000\nPresident,Business Benefits Inc,F3100\nPRESIDENT,SOXLAND INT`L INC.,Y4000\nHIGGINBOTHAM MANAGEMENT INC,,Y4000\nPhysician,Stowe Family Practice,Y4000\nAOG,,X1200\nSOFTWARE DEVELOPER,SUNGARD,Y4000\nPRESIDENT AND CEO,JUPITER ALUMINIUM,Y4000\nATTORNEY,DAVID L. COLVIN & ASSOC.,Y4000\nPAUL ROGERS AND ASSOCIATES,,Y4000\nDIETERMAN LINDEN & CO,,F5100\nNEW MEXICO SPORTS FITNESS & PHYSICA,,Y4000\nVice Pres Sales,\"Pace Lithographers, Inc\",C1300\nASSOC. GEN. COUNSEL,WESTFIELD,F4100\nPARKINSON & HINTON PC,,Y4000\nREALTOR,MARSH TEAM REALTY LLC,J9000\nMD,MASLEY OPTIMAL HEALTH CENTER/MD,Y4000\nUnemployed,Best Effort,Y2000\nGeneral Manager,Inland Empire Utilities,Y4000\nSALES,SIEMENS POWER GENERATION INC.,C5000\nTROP-EX REALTY,,F4200\nATTORNEY,LAW OFFICES OF WILLIAM B. KINGMAN,K1000\nPUBLISHER,GROESBECK JOURNAL/PUBLISHER,Y4000\nTechnical Editor,Self-employed,Y4000\nANESTH,EAU CLAIRE ANESTHESIOLOGISTS,H1130\nTHE AEROSPACE CORPORATION/ENGINEER/,,T1700\nDENTIST,\"THOMAS W. HERFORT, INC\",Y4000\nMARKED TOOL,,Y4000\nSales Engineer,Siemens Water Technologies Corp,E3000\nCPA,\"MONAHAN, LAMPMAN & HAYS, PC\",Y4000\nHuman Resource Manager,Miners & Colfax Medical Center,H2100\nDirector Dispresment,Stanford Uni.,H5100\nQa Analyst,ASG Industries,J1200\nExecutive Director,Ohio Auto & Truck Recyclers Assoc,M2400\nFINE JEWELRY EXCHANGE OWNER,,G4600\nEDUCATOR,EAU CLAIRE AREA SCHOOLS,Y4000\nOwner,\"International Systems, Inc.\",D9000\nSr Investor,JP Morgan Securities LLC,F1100\nINVESTMENT,GROWTH POINT TECHNOLOGY,Y4000\nPHYSICIAN,FOOD & DRUG ADMINISTRATION,X3000\nPOLICY A,FARM CREDIT ADMINISTRATION,X3000\nSTUCHELL ENTERPRISES,,F1200\nSALES REPRESENTATIVE,SELF EMPLOYED,F2700\nChief Clinical Officer,\"Newhope Bariatrics, Inc\",Y4000\nHomemaker,Self-Employed,F4100\nENGINEER,TRW INC.,D3000\nWOODBINE,,Y4000\nVertis Incorporated,Business Executive,Y4000\nRABBI,TEMPLE BETH AM,Y4000\nANESTHESIOLOG,CHESHIRE ANES & ASSOC,H1130\nSENIOR COUNSEL,BROWNSTEIN HYATT FARBERSCHRECK,K1000\nattorney,\"Berenbawn, Weinsheink\",K1000\nPRESIDENT,BROWNSWAY ENTERPRISES,G2900\nPROFESSOR,UNIVERSITY OF NY,H5100\nPRESIDENT AND,VIGNETTE CORPORATION,C5120\nRETIRED,TUCKER ANTHONY INC,F2000\nDirector,Congressional Joint Economic Committee,Y4000\nMANAGER,LWM,Y4000\nPhysician,Pathogenesis Corp.,Y4000\nPRESIDENT,LASALLE SYSTEMS LEASING,C5100\nDirector,Urban Core,Y4000\nASSOCI,GEORGE WASHINGTON LAW SCHOOL,H5100\nSales,TAC,J1200\nINVESTMENT ADVISORS,CANTERBURY WEALTH ADVISORS LLC,Y4000\nCEO,ROCKET GAMING SYSTEMS,Y4000\nVice President,Jupiter Oxygen Corporation,M2250\nENGINEERING TECHNICI,NNE PHARMAPLAN,Y4000\nGeologist,Self-employed,J1100\nMANA,INTERNATIONAL FACILITIES GROUP,Y4000\nEXECUTIVE,COLUMBIA COMPANIES,F0000\nAT HOME,,X4100\nmerchant,self,Z9500\nCompulter Consultant,Self,Z9500\nP W P INC,,Y4000\nJEFFERIES AND COMPANY,BANKER,F1100\nPRESIDENT,MAXIS HEALTH SYSTEM,Y4000\nExecutive Director,UBS Warburg,F2300\nDEBORAH HEART,,H1130\nUNITED WASTE SERVICE INC,,Y4000\nMANAGER,NADER IK INC.,Y4000\nRICHARD ELECTRIC INC,,B3200\nINVESTMENT ADVISOR,\"LONG WHARF INVESTORS, INC.\",Z9500\nOrthopedic Surgeon,\"L.A. Konkin, MD\",H1100\nH J SMITH INTERNATIONAL INC,,G5270\nPennsylvania State Univ,Physician,J7400\nPsychotherapist/Psychoanalyst,Everett Mclaren,Y4000\nCHIEF OF STAFF,ACLI,Y4000\nEDUCATIONAL CONSULTANT,\"LAROCCO & ASSOCIATES, INC.\",K2000\nFire Fighter/EMS,West Covina Fire Dept.,L1400\nWESTERN TEXTILE PROD,,M8000\n\"LIEFF, CABRASER & HEIMANN\",,J7300\nHEA,LEAR VON KOCH M.D. & ASSOCIATES,Y4000\nPresident,Nobles` Expedited Transportation,Y4000\nGIFT STORE OWNER,SELF-EMPLOYED,G0000\nABSTRACT PAINTER,SELF-EMPLOYED,G0000\nAttorney,\"Gleason & Matthews, P.C.\",K1000\nattorney,Commonwealth of Virginia,X3000\nVP AFFLUENT INVEST,OPPENHEIMERFUNDS,F2100\nPHYSICIAN,MONTEREY PENINSULA SURGERY CENTER,H1130\nExecutive Chef,Sage and Swift Catering,Y4000\n49FSS/FSRD (USAF CIVILIAN)/COMPUTER,,Y4000\nFARMERS INVESTMENT COMPANY,VICE PRESIDENT AND COUNSEL,J7400\nStillwater Public Schools,,X3500\nIT CO,HARVARD CONSULTING GROUP INC.,Y4000\nForeign Service Offi,Dept Of State Usg,X3000\nREAL ESTATE,LIMESTRON TITLE & ESCROW/REAL ESTAT,F4300\nCORP. EX,ARCHER DANIELS MIDLAND CO.,A4300\nJOHNSON SMITH DO,,K2100\nMEDICAL DIRECTOR,ST. LUKES HOSPITAL,H2100\nReal estate,self,F4000\nPresident,\"Garkane Energy Cooperative, Inc\",E1610\nHOME REALTY RICHMO,,F4200\npolice officer,City of Memphis,X3000\nBuilder/developer,Priority Developers,F4100\nRE BROKER/INVESTOR,CRA,Y4000\nRETINAL PHYSICIAN,RCALTD,H1120\nProduct Manager,\"Mspot, Inc\",Y4000\nMANAGING PARTNER,FENWAY PARTNERS,M3600\nANESTHESIOLOGIST,\"ANESTHESIA ASSOCIATES OF NEW MEXICO, A\",H1130\nFORMER SECY TREASURER,,J1100\nCEO,Nau Country Ins Company,F3100\nLAWYER,BROWN HAY STEPHENS,K1000\nCPA,ELIASEN CPA,F5100\nMETAL BLDG MNF,,M5000\nANESTHESIOLOGIST,NORTHWEST ANES INC,H1130\nBENEFITS AUDITOR,SELF-EMPLOYED,Y4000\nDIRECTOR,ALLIANCE CAPITAL MANAGMENT,F2100\nSAVAGE CORNELY & SAVAGE,,Y4000\nTRUCKING,\"RICHARD B. RUDY, INC\",Y4000\nCEO,NORTHROP GRUMMAN/CEO,D5000\nBROTHERS INVESTMENT COMPANY,,Y4000\nDirector of Washington Affairs - Trans,Union Pacific Corporation,T5100\nATLAS SWITCH CO INC,,M2300\nMAJOR REALTY REAL ESTATE,,F4200\nC.I.O.,NORTH AMERICAN BREWERIES,Y4000\nLLP INFLUND SAN FILIPPE,,Y4000\nATTORNEY,HONIGMAN MILLER SCHWARTZ & COHN,K1200\nMANAGER,KOLDING OIL & GAS,Y4000\nTreasurer,Rob 4 Congress,Y4000\ninsurance,\"Webb Insurance Agency, Inc\",G1200\nAK SMALL BUSINESS DEV CENTER,,Y4000\nCHEMIST,ENVIROMENTAL HEALTH LABS,H3400\n\"GROPPE, LONG, & LITTLE\",,Y4000\nteacher,Stanford Nursury School,Y4000\nCeo,Universal Communication Services,Y4000\nATTORNEY,MORROW MORROW RYAN,Y4000\nVice-President of St,\"Continental Airlines, Inc.\",T1100\nSENIOR VP TAX,ALLIANCE/EPSILON,Y4000\nUnknown,Louisiana Water Company,E5000\nLawyer,Brady Vorwerck,Y4000\nSANTA BARBARA MEDICAL FOU,,H0000\nPRESIDENT,DATA RECOVERY,Y4000\nLOBBYIST,OB-C GROUP,K2000\nAttorney,Barnes & Thornburg L.L.P.,K1000\nTITAN GROUP INC,,G4300\nREALTOR,REMAX PINNAICLE,F4000\nCONTROLLER,PBGH,J1200\nPROFESSOR,GEORGE MASON UNIVERSITY LAW SCHOOL,H5170\nBuilder,RHC Communities,F4100\nADMIN STAFF,United Parcel Service(South),LT300\nRESEARCHER,LAWRENCE NATIONAL LABORATORY,Y4000\n\"BERRIGAN, LITCHFIELD ET AL\",,K1000\nNon-Profit Executive,The Synergos Institute,X4000\nAttorney,Hanf and Fride Law Firm,K1000\nSEEMAC INC,,Y4000\nPayroll Advisor,Cullom Corporation,F5500\nASSOCIATE,\"TROUTMAN SANDERS, LLP\",K1000\n\"CPA, Partner\",Marks Paneth & Shron,F5100\nSVP/REGIONAL MANAGER,\"NEXSTAR BROADCASTING GROUP, INC.\",C2100\nDIRECTOR,MACATAWA BANK,F1100\nPORTFOLIO MANAGER/ANALYST,FRANKLIN MUTUAL ADVISERS LLC/PORTFO,Y4000\nCEO,CIPA,E1120\nOWNER TRANSPORTATION,NEW PRIME INC,J1100\nMARINA DODGE INC,,T2300\n\"VP, SHARED SERVICES\",\"CAREMARK, L.L.C\",G4900\nMETROPOLITAN MUSEUM/DESIGNER/MANAGE,,X4200\nKellog School of Business,,Y4000\nACCOUNTANT,ACE GROUP,F3400\nINVESTMENT BANKER,\"BRUIN HOLDINGS, INC.\",Y4000\nPECORP INC,,Y4000\nBusiness Consultant,Sapient,C5130\nCEO,Pcono Environmental Education Center,Y4000\nOwner,\"Aj's Landscaping & Design\",B3600\nEASTBANK,,F1100\nPARK FARMS,,A2300\nEXECUTIVE DIRECTOR,SANTA CLARA COUNTY REPUBLICAN PARTY,J1100\nINVESTMENT,BEN A SMITH & ASSOCIATES,Y4000\nMerchant Banker,GEM,F2600\nLAWYER,\"KRAMER LEVIN NAFTALIS & FRANKEL, LLP\",K1000\nRESOURCE HOLDINGS LTD,,F1100\nRequested,Transportation Safety Admin.,Y4000\nFUNDRAISER,\"M.J.M. CONSULTING GROUP, INC.\",Y4000\nPRESIDENT,UNICAST COMPANY,Y4000\nRETIRED,SACRAMENTO CO,X3000\nATTORNEY,SABA ENDLER & ASSOC,K1000\nENGINEER,CONNECTEC,Y4000\nMEMBER RELAT,POKER PLAYERS ALLIANCE,Z9500\nAttorney,Ungaretti and Harris,K1000\nATTORNEY,BROWNSTEIN  HYATT FARBER SCHRECK,K1000\nFERROOS PROCESSING &,,Y4000\nREILLY JAR & CHEMICAL,,M1000\nINSURANCE,VSP VISION SERVICES/INSURANCE,Y4000\nOWNER,SEPCO,Y4000\nEconomist/Publisher,Self employed,F5500\nScientist,Brookhaven Natl Laboratory,Y4000\nGeneral Manager,Emerald Coal Resources LP,E1200\nManager,John R Jurgensen Co,Y4000\nBUSINESS OWNER,INDUSTRIAL CONSULTING & SUPP,Y4000\n\"MEYERS, RODBULL, ROSENBAUM PA\",,Y4000\nExecutive,Robert Weed Plywood Corp.,Y4000\nsales,REI,M3600\nPsychotherapist,AIDS Project,H3500\nCROWLEY-MANDELBAUM REALTORS,,F4200\nINVESTMENT BANKER,USB AMERICAS,Y4000\nCYTEC INDUSTRIES,,Y4000\nsailor,Mittal Steel,M2100\nCORRIGAN ASSOCIATES,,K1000\nOPTOMETRIST,CHICAGO GLAUCOMA CONSULTANTS,Y4000\nRETIRED AIR FORCE OF,NONE,Y1000\nPEOPLES BANK OF GREENSBORO,,F1000\nCOO,Liberty Power,B5500\nMETALADE OF,,Y4000\nOWNER,MILNER INVESTMENT CORP,F0000\nTEACHER,MEXICO ACADEMY CS FA,L1300\nAttorney,Honstein Law Firm,K1000\nAttorney/Mediator,Peachtree ADR LLC,K1000\nCHAIRMAN AND CEO,MIDSOUTH BANK,F1000\nPHYSICIAN,MARI,Z9500\nPRESIDENT,\"G. GREENSTREET, INC.\",Y4000\nTRANSPORTATION PLANNER,\"BOLTON AND MENK, INC.\",Y4000\nCALIFORNIA LUTHERAN,,H2200\nCHATTANOOGA BAKERY CO,,G2100\nTALENT,SNY,J1100\nAttorney,\"Manatt, Phelps, & Phillips, LLP\",K1000\nPRESIDENT,VANDE BUNTE EGGS,Y4000\nMONTGOMERY-WATSON ENVIRONMENTAL,,Y4000\n\"GREEN'S INC\",,C1300\nSANFORD HOLSHOUSER,,K1000\nINVESTOR,BLOCK & COLUCCI,Y4000\nPHYSICIAN,SUNY @ STONY BROOK,H1130\nBONRAY ENERGY CORP,,Y4000\nPartner,\"Sentis Technologies, LLC\",Y4000\nCHAIRMAN & C.E.O.,CAMERON INTERNATIONAL CORP,E1150\nPURCHASING DIRECTOR,ENERGY TRANSFER,E1000\nPRESIDENT & CEO,KRA CORPORATION,Y4000\nCOO and Co-Founder,Primedia Inc,C1100\n\"PIERRE'S CONSTRUCTION CO\",,B1500\nSKAER ENTERPRISES INC,,Y4000\nOffice Manager,Whitewater Rock & Supply Company,Y4000\nATTORNEY,V.P. & COUN.,Y4000\nPRESIDENT - ORANGE HILL MEDIA,OWNER,G0000\nRETIRED,SAN FRANCISCO,H1100\nReal Estate Examiner,Self-Employed,G0000\nPRUDENTIAL FLORIDA REALTY,,F4200\nEDWARD JONES INC,,F2100\nPRESIDENT & CHIEF EXECUTIVE OFFICER,ONEAMERICA,F3300\nCADDELL & CONWELL,,J7400\nMarketing,Royer Labs,Y4000\nTHERMAL SRVS INC,,Y4000\nEXECUTIVE,SIMMONS COMMUNICATIONS,C2200\nGLENDALE UNIFIED SCHOOL DISTRICT,,X3500\nGOVERNMENT RELATIONS ASSOCIATE,DEL MONTE CORPORATION,G2100\n\"VP, COMMUNITY RELATIONS\",INGRAM INDUSTRIES,T6200\nCHAIR,INTERNATIONAL INDUSTRIES INC.,E1210\nBOARD OF DI,TRUSTMARK INSURANCE CO.,F3100\nLAWYER,OLSHAN,Y4000\nDiagnostic Radiologist,Univ of South Alabama,H1130\nBusiness Representative/Treasurer,IUOE LOCAL 004,LB100\nCEO,IMPERIAL FIRE & CASUALTY,Y4000\nATTORNEY,\"UNDERWOOD WILSON, ET AL.\",K1000\nCOO BAJA FRE,FRESH ENTERPRISES INC.,G2900\nVICE PRESIDENT,SAPOADE SOFTWARE,C5120\nM A MORTENSON COMPANY,,B1000\nAMSCOT FINANCIAL,EXECUTIVE VICE PRESIDENT,F1400\nBANKING,RBS,F1100\nDENVER INVESTMENT ADVISORS LLC,,F7000\nDUPONT,,E1100\nDirector of Companie,self-employed,J1100\nACCTS PAYABLE SUPERVISOR,CROSBY TUGS LLC,T6200\nSenior research scientist,Boston Scientific Corporation,H4100\nMAINE CHAMBER OF COMMERCE,,G1100\nPresident,Alexander Company,F4100\n\"CLARK, PERDUE, ROBERTS & SCOTT\",,K1000\nVenture Capatilist,Self Partner,F2500\nSuperintendent of Op,Rasmussen Group,B1000\nEXECUTIVE VICE PRESIDENT & CFO,LEVEL 3 COMMUNICATIONS,C4000\n\"ANESTHESIOLOGIST, MD\",JLR MEDICAL GROUP,H1130\nLAWYER,SCHIFFHARDIN LLP,Y4000\nTAUMAN KOUKOL BENTON,,Y4000\nCoo,Lighthouse Computer Solutions,Y4000\nmedical profession,Curtis Medical Group,H1100\nVP Financial,Otis Elevator Company,Y4000\nAsst. Researcher,UW- Madison,H5100\nEXECUTIVE,A.D. WINSTON CORP.,B3400\nMANAGER,DFS NORTH AMERICA,Y4000\nPresident,Red River Service Corporation,Y4000\nEXECUTIVE,\"PRECISION COMPONENTS, INC.\",F4500\nINFO REQUESTED,SELF-HOPE ENTERPRISE FIELD SERVICE,Y4000\nKLEINBARD BELL BRECKER,,K1000\nMANAGER,TN FARMERS MUTUAL,Y4000\nCOCHRAN CHERRY GIVENS SMITH & ET AL,,K1000\nDIS H&F DIV MGR,UNITED PARCEL SERVICE INC.,T7100\nATTOR,\"SWEENY WINGATE & BARROW, P.A.\",K1000\nCLERGY,RELIGIOUS INSTITUTION,Y4000\nPhysician,Gwinnett Pulmonary Group,Y4000\nOWNER,TUTTLE-CLICK AUTOMOTIVE,T2300\nEXECUTIVE,THE BAUMAN FOUNDATION,J7400\nInsurance Broker,Lundstrom Insurance,F3100\nREBEL RENTS,,G5300\nPHYSICIAN,SKAITOOK OSTEOPATHIC CLINIC,H1130\nSUNLINK CORPORATION,,Y4000\nSENIOR ESTIMATO,GARNEY CONSTRUCTION,B1000\nFIRST NATIONAL BANK OF CLINTON,,F1100\nUNIVERSITY OF SOUTHERN FLORIDA,,H5100\npresident,CArolinas Medical System,Y4000\nPhysician,Univ of Colorado,H1130\nHEADMASTER,CHARLOTTE LATIN SCHOOL,X3500\nGARDNER SHELFER DUGGAR & BIST PA,,F1100\nELKRIDGE FAMILY DENISTRY,,G1200\nEXECUTIVE VICE PR,WELLS FARGO & CO.,F2100\nWISCONSIN LEGISLATURE,,J1100\nPhysician,UAB,Y4000\nGALVESTON SHIP BUILDING,,T6100\nMARKETING,WHITING PETROLEUM,E1100\nCOPPERSMITH GORDON SCHERMER,,J7400\nAG LOAN CONSULTANT,SELF,F1000\nJERRY SMITH FUNERAL HOME INC,,G5400\nREAL ESTATE,\"SLEIMAN HOLDINGS, INC.\",Y4000\nINTEC ACCUTINE INC,,Y4000\nOwners,Barber Fords,Y4000\nTIPTON TEMPORARY SERVICE,,G5250\nFAGEN EXCAVATING,,B3600\nCONSULTANT,MCBEE STRATEGIC CONSULTING,K2000\nContractor,Moses Grass Company,Y4000\nATTO,\"ERICKSON & SEDERSTROM, P.C.LLO\",K1000\nFarmer,Flying F Farms,G1200\nPartner,Campbell Crane & Associates,K2000\nC.E.O.,ADVIZOR SOLUTIONS INC.,Y4000\nVP -Sugar,Cargill,A1000\nexecutive director,NJ Turnpike Authority,Z9500\nexecutive,Jim Doyle Ford,Y4000\nPRESIDENT,DELTA FOOD MART INC.,G2400\nFAMILY P,DFD RUSSELL MEDICAL CENTER,H2000\n\"CINCINNATI CHILDREN'S HOSPITAL MEDI\",,H2100\nDISCOVERY INTERNATIONAL ASSOCIATION,,Y4000\nVICE PRESIDENT SALES,ELIE TAHARI,M3100\nPHARMACIST,THE APOTHECARY,Y4000\nMGR TRANS,OCCIDENTAL CHEMICAL CORP.,E1110\nROLLINS ENV,,E3000\nVice President,Tri-State Commercial Closing Inc,Y4000\nstudent,student,G5200\nOWNER,ROARK BUILDING CONTRACTOR,Y4000\nCEO,\"PEAK6 INVESTMENTS, LP\",F7000\nPRESIDENT,SERNA & ASSOCIATES,Y4000\nINSURANCE,D&S LIFE AGENCY,F3100\nOFFICE MANA,RANGER ENTERPRISES INC.,Y4000\nself-employed,,X0000\nMOORE ENG & PRODUCT,,Y4000\nLIFETOUCH INC,,G5240\nFIREFIGHTER,GE IDAHO FALLS,Y4000\nSTEPHEN & CANNEL PROD,,\nGENERAL AUTO SPECIALTY CO INC,,T2000\nATTOR,U.S. SENATE BANKING COMMITTEE,JD200\nMORTGAGE BROK,CASCADE HOME MORTGAGE,F4600\nDVM,FOREST OAKS ANIMAL CLINIC,A4500\nDAVID MCDAVID AUTO,,T2000\nCONCRETE DYNAMICS,,B5100\nCEO,Project Samaraton Helath Services,Y4000\nPR,ARCANA TECHNOLOGIES INCORPORATED,Y4000\nPROBATE JUDGE,COLBERT COUNTY,Y4000\nBUSINESS EXECUTIVE,ALSCO.INC.,A4000\nCOMPUTER NETWORK INC,,C5100\nSENIOR VICE PRESIDENT,KONE  INC.,Y4000\nINRESERVE CORP,,Y4000\n,MERCURY PRINTING & PROMOTIONS INC.,C1300\nPhysician,Texas Tech Health Sciences Center,H2100\nPRESIDEN,BROOKS TORREY & SCOTT INC.,F4000\nInvestment Broker,\"Heidtke & Company, Inc\",F7000\nFINANCIAL ANALYST,BARCLAYS,F1100\nCEO,SILVERRAIL TECHNOLOGIES,Y4000\n\"ELLIOT'S PIZZA & GRILL\",,G2900\nPresident,Donohoe Construction Co.,B0500\nEXECUTIVE,ALLIED AUTOMATION,Y4000\n\"CEO, PUBLIC RELATION\",\"DYE, VAN MOL & LAWRENCE, INC.\",Y4000\nPHYSICIAN,UNIVERSITY OF IOWA COLLEGE OF MEDICINE,Z9500\nCAMPBELL CRANE ASS,,K2000\nCONSULTANT,\"WINNING RESULTS, INC.\",J7400\nPHYSICIAN,MSPB,H1100\nManager,\"Norpac Foods , Inc.\",G2000\nINVEST ANALYST,,K1000\nInfo Requested,\"Harry's Cafe\",G2900\nBANKER,SUN TRUST BANK,F1100\nJob Training,Lorain County JVS,Y4000\nTRADER,TRILOGY CAPITAL,F2100\nPRINCIPAL,OHIO NORTHLAND REALTY LLC,F4200\nDURYEA PRESBYTERIAN CHURC,,Y4000\nRadiation oncologist,Volunteer Radiation Oncology,H1130\nOWNER,TEACO INC.,Y4000\nAccounts Representat,Denver Public Library,X4200\nPresident,Kramer Printing,C1300\nTITON WHEELS,,Y4000\nAttorney,\"Hayek, Hayek & Brown\",K1000\nVice President,Admin Controls Mgmt Inc,B4000\nINVESTMENTS,ADWON PROPERTIES,F4000\nSr Managing Director,Bear Stearns & Co,F2300\nTEACHING,UT SCHOOL OF PUBLIC HEALTH,Z9500\nGENER,BLUE FLAME ENERGY CORPORATION,E1100\nANESTHESIOLOGIST,MERCY ANESTHESIOLOGY ASSOCIATES,H1130\nDEMETER INC,,A3100\nMANAGING C,ENTERGY MISSISSIPPI INC.,E1620\nCEO,South Central Communications Corp,C2100\nATTORNEY,PHEBUS & KOESTER,Z9500\nCHASE BANK - DALLAS,,F1100\nRegistered Nurse,Overlake Medical Center,J1100\nFULL TRUCKLOAD TEAM LEADER,EMERSON ELECTRIC CO./FULL TRUCKLOAD,C5000\nFOUNDER,KAMUELA KAYAKS CORP,Y4000\nPRESIDENT,SOUTHLAND LOG HOMES,B2000\nEngineer,Ecito Construction,B1500\nCAPITAL MARKETS,MORGAN STANLEY,F2300\nPHYSIC,\"MARIANNA SPANAKI-VARELAS, MD\",H1100\nOHIO OUTDOOR ADVERTISING CORP,,G5230\nILLINOIS SMALL BUS GROWTH CORP,,G1200\nOIL & GAS,HAMMACK OIL COMPANY,E1100\nBusiness Executive,IDPA,Y4000\nATTORNEY,LAW OFFICES OF STEPHANIE R COO,J7400\nTAX ATTORNEY,\"DODSON, CHASE LLC\",E1210\nIT Director,Dell,C5100\nCOO,\"Doctor's Hospital - Columbus\",H2100\nVP - GOVERNMEN,\"BELLSOUTH D.C., INC.\",C4100\nPRESID,NORTHERN ILLINOIS UNIVERSITY,H5100\nLEMANS CORPORATION,,Y4000\nOwner,\"Travis Barlow Co(Triad,Inc\",Y4000\nOWNER,MCGILL REALTY,F4200\nATTORNEY,LIPTON AND LIPTON,K1000\nATTORNEY,\"ALBERT, HARPER PC\",Y4000\nDirector of Trade,\"Verner, Lipfert, McPhereson\",J1200\nSALES,AMSCO SUPPLY,Y4000\nPhysician,U of OK Hlth Science Ctr,H5100\nOwner,JDM Trucking & Rigging Inc.,T3100\nCON-WAY/PRESIDENT/CEO,,T3100\nPre-K Teacher,Shady Hill School,H5100\nAttorney,\"Smith, Stratton, Wise, Herbert and Bre\",J7150\nLOW INCOME HOUSING,SELF EMPLOYED,J7150\nLLOYDS OF THE US,,Y4000\nREADING AREA COMMUNITY COLLEGE,,H5100\nGEORGE REED,,B1000\nPRESIDENT/COO,DICHELLO DISTRIBUTORS,Z9500\nENTERPRISE ASSET,,F4000\nMASTER SCULPTOR,SELF,Y4000\nA,WEAR TRAVERS KRUEGER & PERKINS PC,Y4000\nPHYSICIAN,DELMARVA RADIOLOGY,H1130\nC.P.A. / Broker,BANK OF WASHINGTON,F1100\nRE Broker,Benchmark,Y4000\nMARKETING,SAUK VALLEY BANK,F1000\nFactory Worker,Whirlpool Corporation,M4300\nCEO,USDA-FSA,X3000\nC.O.O.,THE DONOHUE COMPANIES,F4500\nCOLLEGE STUDENT,,Y1000\nATTORNEY,\"CLINIC STRATEGIES, LLC\",Z9500\nMOTION PICTURE ADVERTISING,SELF,Z9500\nMANAGEMENT ANAL,C-CUBED CORPORATION,Y4000\nELCA ROCKY MTN SYNOD,,Y4000\nOWNER,\"MINSKY'S PIZZA\",G2900\nMED SCHOOL PROF,VANDERBILT UNIV/MED SCHOOL PROF,H5100\nBANK OF WICHITA,,F1100\nAccountant & Tax Preparer,Self,J7400\nHOME PRODUCTS MKTG C,,Y4000\nPhysical Therapist,Self-employed,H1700\nASCS,,Y4000\nINFORMTICS/PHYSICIAN,\"CUSTOM EHG, LLC/NM ONCOLOGY HEMATOLOGY\",Y4000\nTeacher,Trinity Christian Academy,Y4000\nPRESIDENT,TWH FOUNDATION,Y4000\nG & N MANAGEMENT CO,,Y4000\nPresident,B J Sales Llc,Y4000\nPresident & CEO,Westland Corporation,Y4000\nlobbyist,ncta,Z9500\nANESTHESIOLOGIST,UNIVERSITY OF MIAMI,H1130\nSELF-EMPLOYED/INSURANCE BROKER/AGEN,,F3100\nREALTOR,SCHOFIELD REALTY,F4200\nBeautican,Bogart Inc,Y4000\nFUELS,GREENENERGY USA,Y4000\nPresident,Automated Enterprises,Y4000\nLAWYER,\"CUNEO GILBERT & LADUCA, LLP\",K1000\nPRESIDENT,SEQUOIA HOSPITAL,H2100\nUNEMPLOYED,,J9000\nKENS CORNER ASSOC,,Y4000\nCONSULTANT,SELF EMPLOYED/ SAME NAME,G5200\nPresident/CEO,Kenny Johnson Homes Inc,B2000\nUSA FINANCIAL SRVCS INC,,F1400\nPHYSICIAN,THE EYE CENTER,H1120\nSR. MANAGER ATS,COMCAST,Z9500\nAttorney/Senior Director,Purdue Pharmacy,H4300\nCHAIRMAN,\"RALPH S INOUYE CO., LTD.\",B1000\nArchitect,SHCA,Y4000\nHealth Products,Herb Pharm,Y4000\nGOLFVIEW DEVELOPMENT CENTER,,Y4000\nFNB OF LAWRENCE CO,,F1100\nExecutive,Camp Dresser & McKee,B4000\nREAL ESTATE DEVELOPER,THE TERRILL COMPANY,J1100\nFINANCIAL ANALYST,BANK OF TOKYO -- MITSUBISHI,Y4000\nHUNTINGTON BERLIN INSTR FOR PERF,,G2900\nATTORNEY,WEA INSURANCE CORP/ATTORNEY,F3100\nCPA,Bert Smith & Co.,F5100\nPresident,Arcade Amusement Inc.,Y4000\nKELLAHAN AND ASSOC. ENGINERIERS INC,,Y4000\nSALES/RECRUITING,HUMAN CAPITAL LLC,F0000\nATTORNEY,MCGUINESS & YAGER LLP,K2000\nCEO,JEFFERSON GOVERNMENT RELATIONS,K2000\nOWNER,AMERICASH LOANS,Y4000\nAttorney,United Steel,LM100\nVGC/Coach Cleaner,CSX,LT600\nCONNELL-BARRON,,B2000\nHEGG COMPANIES/PRESIDENT/CEO,,Y4000\nPARTNER,FLORENCE DOINOSTIC ASSOC,H1100\nEXECUTIVE DIRECTOR,YORKTOWNE BUSINESS INSTITUTE,H5200\nMining Engine,Southwest Energy Inc.,E1000\nVice President,James Ware Construction Inc.,B1500\nAttorney,The Loeffler Group,K1000\nPENNSYLVANIA DEM STATE COMMITTEE,,J1200\nALLAIRE CAPITAL CORP,,Y4000\nBOOKEEPER,FRED WACKER AGENCY,F3100\nCISU,,Y4000\nOIL & GAS PRODUCTION,,E1120\nRN,Turtle Crk Vlly MH/MR,J1200\nORIX U S A CORP,,F1400\nATTORNEY,SUROVELL ISAACS PETERSEN & LEVY,Z9500\nnon-profit director,NW Childrens Outreach,Y4000\nREAL ESTATE,WILLIAM CUMMINGS REALTY,F4200\nDIR CAR,BNSF Corporation,T5100\nSHANER HOTEL GROUP,,T9100\nBEURER DARREN,BEURER DARREN,Y4000\nPRESIDENT,BROOKINGS SCHOOL DISTRICT,Y4000\nEASTER ASSO INC,,Y4000\nsales,MHI Homebuilders,B2000\nBusinessman,Maxine Jacoby & Assoc,Y4000\nPodiatrist,Massapequa Foot Care,Y4000\n\"SIMEONE & MILLER, LLP\",ATTORNEY,K1000\nG2,,Y4000\nWarehouse Manager,Self-Employed,Y4000\nMONEY MANAGER,UBS,J1200\nCHOCTOW TRANSPORTATION,,T0000\nTelentis,,F2500\nAttorney,AK Steel Corporation,J1200\nEXECUTIVE,\"SHURTAPE TECH, LLC\",Y4000\nDEVELOPER,I & MJ GROSS CO,B2000\nGREEWICH CAPITAL MARKETS,,Y4000\nEXECUTIVE,DEAN & COMPANY,H1100\nHoward Cosgrove,,Y4000\nGAS SERVICE WORKER,CONSUMERS ENERGY,E1620\nPRESIDENT,HOLLAND AMERICAN WAFER CO,G2100\nSR. BU,NORFOLK SOUTHERN CORPORATION,T5100\nMECHANICAL ENGINEER,\"RESOURCETEK,LLC\",Z9500\nDRS DES ROSIERS-WERNECKE,,H1100\nM.D.,PAIN MGMT. ASSOC.,H1130\n\"Director, Export Sal\",\"Bridgestone/firestone, Inc.\",M1500\nOWNER,HAAGEN DAZS ICE CREAM,Y4000\nBUSINESS OWNER,\"PETE'S HARBOR\",T6000\nPARTNER,KMB PERF,J1100\nNOTHLAND STAINLESS INC,,Y4000\nNEW ENGLAND SOUTHERN R R COM,,T5100\nWaiter,\"Lulu's Cafe\",G2900\nPHYSICIAN,PLASTIC SURGICAL CENTER,H1100\nTax Principal,Ernst & Young LLP,F5100\nSOUTH TEXAS CORRUGATED PI,,B5300\nOWNER,\"FORT WORTH ENERGY CO, LLC\",E1000\nREQUESTED INFORMATION,,B4000\nCONSULTANT,TLC CONSULTING,Y4000\nPRESIDENT,I.F.A. ED. FOUNDATION,Y4000\nAttorney,Walton Isaacson,Y4000\nPRIVATE INVESTOR,NONE,J1200\nDIRECTOR OF COMMUNICATIONS,THE OPPORTUNITY AGENDA,Y4000\nHuman Resource,ABNB FCU,F1300\nSALES REPRESENTATIVE,M-PAK INC.,Y4000\nROYAL AND VAUGHAN,,Y4000\nLECLAIR & FRAMME,,K1000\nCONTRACTOR,HOMEMAKER,Y1000\nDir. Business Dev.,Giant Campus,Y4000\nSCHAFER REALTY,,F4200\nOWNER,BROWN & BROWN INSURANCE AGENCY,F3100\nATTORNEY,FARMERS INVESTMENT CO.,A1400\nFEEDLOT OWNER,,A3300\nDIV MGR CREDIT RISK,\"Wells Fargo Financial, Inc.\",F1100\nSELF EMPLOYED,ANIMA MUNDI (SELF EMPLOYED),Y4000\nOwner,\"General Mgmt Ser, Inc\",Y4000\nOWNER,DH GRIFFIN WRECKING,B3000\nVp Trade Mktg Development,Rj Reynolds Tobacco Co,A1300\nINVESTMENT M,CORRY CAPITAL ADVISORS,F2100\nVICE PRESIDENT,\"SAIGON CENTRAL POST, INC\",J1200\nManager,Aristeia Capital,F0000\nCAULDROU CO,,J7120\nANA/C/LOBBYIST,,H1710\nNASH BUILDERS,JIMMY NASH HOMES,F4100\nPresident & CEO,The PINK Spirits Company,G2820\nCOMMUNITY VOLUNTEER,SELF-EMPLOYED,H5100\nProject Manager,\"Volute, Inc\",Y4000\nCMR COMP MED,,J1100\nPRIMARY CONTACT,CH2M HILL,B4000\nOWNER,KINGDONS TV & HOME CENTER,Y4000\nTRI-M CORPORATION,,B0500\nRetired,Bennett Forest Industries,X1200\nEngineer,COLSA,G5200\nU. METH. PASTOR,RETIRED,X1200\nSchool Social Worker,Harlem Academy,Y4000\nPresident,Roebuck & Associates,B5100\nBUSINESS OWNER,PREMIER MEDICAL,Z9500\nNURSE MIDWIFE,PHYSICIAN AMERICA,Y4000\nEXECUTIVE DIRECTOR,MNMFOUNDATION,Z9500\nPRESIDENT,DEWBRE PETROLEUM,E1100\nCEO,STANSTEEL,J1100\nCHAIRMAN OF THE BOARD,LEPRINO FOODS,A2000\nAPPLIED AERO LLC,,Y4000\nASST GEN COUNSEL MERGERS&ACQ,JOHN DEERE SHARED SERVICES INC,A4200\nOwner,\"Delicious Monster Software, LLC\",J1200\nEDGAR W WILDER FARMS,,A1200\nJERRAL W JONES OIL & GAS,,\nAttorney,\"Finnegan, Henderson, Farabow, Garrett\",Z9500\nASIAN-AMERICAN POLITICAL,,Y4000\nANESTHESIOLOGIST,APOLLO MD,H1100\nCEO,Bill Gunter & Associates,Y4000\nTHE NASDAQ STOCK MARKET,,F2400\nPhysician,Keti Medical Center,H2100\nGORDON FEINBLATT ROTHMA,,J5100\nSVP Client Experienc,TIAA,F2000\nINSURANCE CLAIMS AD,MUTUAL OF OMAHA,F3100\nAdministrative Ass,Grounds for Health,H0000\nCFC CONSULTING,,J5100\nRETIRED,PARKVIEW MGT. CORP.,F4100\nPres/CEO,\"Gulfstream Marine Finance, Inc\",Y4000\nArtist & Homemaker,Self-employed,JD200\nEXECUTIVE,J.T.M.,Y4000\nSTOCK BROKER,J.C. BRADFORD,F2100\nattorney,Mason and Mason,Y4000\nInformation Requested,Evangelical Lutheran Church in America,X7000\nCLINICAL PSYCH,NEVADA RURAL CLINICS,H1100\nRequested,Self-Employed,E1620\nACME,,M2000\nPRESIDENT,FOREVER LIVING PRODUCTS,M3300\nVP- RETIRED,3M,M2300\nLITTLE CAESARLS,,G2900\nBUSINESS OWNER,DEL-SER INC,Y4000\nLaw Professor,Washburn University,H5100\nBiochemist,Abbott Laboratories,H4300\nR & R DEVELOPMENT CORP,,Y4000\nRETIRED CHAIRMAN,CRYSTAL FLASH PETROLEUM CO,X1200\nAttorney,Cass Levy & Leone,F5100\nREP,UNITED AUTO WORKERS,LM150\nGOV. AFFAIRS,DS2 GROUP,K2000\nPRESIDENT,ZANA-DI JEANS,G4100\nSoftware En,Pacific Star Comm. Inc.,C5120\nPRIME WEST COMPANIES,,F4100\nINSURANCE BROKE,GLEASON AGENCY INC.,F3100\nRetired,Emeritus Professor George Wash U Law,X1200\nDirector,Camp Wahnee,Y4000\nEXECUTIVE,CHELSEA CLOCK CO.,Y4000\nHOMEMAKER831H,,Y1000\nPresident,Care Medical Equipment,H4100\nINFO REQUESTED,COMMERCIAL TIRE COMPANY,M1500\nREALTOR,D. REAL ESATE,F4000\nCFO,Toledo Area Community CU,F1300\nEQUIPMENT SALES,GCI,J1100\nInformation Requested,Blue Valley Physical Therapy,Y4000\nCOHASSET PUB SCHOOL,,Y4000\nFarmer,Engel Family Farm,A1500\nLPN/CMA,University Hospital Dermatology Assoc.,H2100\nCAREN WILCOX & ASSOCIATES DC,,Y4000\nRealtor,Remerica Hometown One,J9000\nPsychotherapist,Navos,Y4000\nPresident,Jonathan Lewis and Associates,J9000\nRancher/Business Owner,A.V. Tomas Produce,A1400\nGENERAL PARTNER,RIVERSIDE PARTNERS,F2100\nRetired,U Of Colorado,H5100\nCEO,SUPER SOD,A1000\nKWIK LOK CORP,,G2100\nDirector - Deputy,SpaceX,T1700\nAttorney,\"Greenberg, Felsen & Sargent, LLC\",K1000\nBANKER,1ST NATIONAL BANK OF WAVERLY,F1100\nHOSPITAL & HERMANOS MELENDEZ,,H2100\nMATHMATICA,,Y4000\nHEAVY EQUIPMENT O,SAMMIS POWERHOUSE,LB100\nRICH GRAPHICS CORPORATION,,C1300\nCONDUCTOR,AMTRAK,Z9500\nCONSULTANT,GAVRILIS GROUP CONSULTING,D3000\nFUNERAL DIRECTOR,\"MCCOLLEY'S CHAPELS\",X7000\nKISER AUTO,,T2200\nCOMMERCIAL LITHOGRAPHING COMPANY,,C1300\nM.D.,LOYOLA UNIVERSITY OF CHICAGO,H5100\nI G I,,Y4000\nMANAGEMENT,BARINOWSKI INVESTMENT CO. L. P./MAN,F7000\nProgram Director,Arasa,Y4000\nPHYSICIAN,NORTHWEST HOSPITAL CENTER,H2100\nBETTER ROAD INC,,B1000\nPOLITICAL CONSULTANT,RIGHTON STRATEGIES,G5260\nCOMMERCIAL MORTGAGE BROKER,DOUGLAS J. KELLY ASSOCIATES/COMMERC,Y4000\nBRANCH SALES MANAGER,UNION PLANTERS BANK,F1100\nPresident/CEO,\"Envisioneering, Inc\",Y4000\nFINANCIAL ADVI,FIDELITY INVESTMENTS,F2100\nOIL AND GAS CONSULTANT,INFORMATION REQUESTED PER BEST EFFO,E1100\nVice-President,\"Pete Lien and Sons, Inc\",J1100\nPRESIDENT,RAYMOND NELSON INSURANCE AGENCY,F3100\nLawyer,KIRKLAND & ELLIS,K1000\nPRESIDENT,STEPPERSEN INC.,Y4000\nGROUP,ORIX FINANCIAL SERVICES INC.,G5300\nEXECUTIVE,KORTEC INC.S,Y4000\nB/COM 3 GROUP/PRESIDENT/COO,,G5210\nR P SCHERER CORPORATION,,M1000\nManaging Partner,Ian Reid LLC,J7500\nPRESIDENT,MATRIX PETROLEUM L.L.C.,E1160\nOwner,\"Rambie's Restaurant\",G2900\nU OF O SCHOOL OF LAW,,H5170\nCEO,STUDIO IMAGE INC.,Y4000\nSCIENTIFIC EDITOR,THE NATURAL HISTORY MUSEUM,X4200\nVICE,BUCKHEAD LIFE RETAURANT GROUP,G2900\nNAPERVILLE DIST 203,,Y4000\nVICE PRESIDENT,COMCAST NBCUNIVERSAL,C2200\n\"EXECUTIVE-VP, INTERNATIONAL PRODUCTION\",STUDIO CANAL,Y4000\nSTATISTICIAN,US DEPT. OF EDUCATION,X3500\nPRESIDENT,TELECARE,Y4000\nATTORNEY,NUNN & GREENE,K1000\nRadiation Safety Officer,Univ of Texas at San Antonio,H5100\nATTORNEY,KELLER FISHBACK LLC,K1000\nWESTERN TEMPORARY,,G5250\nPRESIDENT,THE COLLABORATIVE FIRM,Y4000\nMWW GROUP INC./AD/MARKETING,,K2000\nPROFESSOR OF AGRONOMY,UW-MADISON,H5100\nPROSKAUER ROSE LLP,,J5100\nVICE PRESIDENT,ELLIOTT CONTRACTING CORPORATION,B3200\nLOBBY,MCCLURE GERARD & NEUENSCHWAND,K2000\nReal Estate/Retired,Self Employed,G0000\nSales Manager,BP Amco,E1110\nVenture Capitalists,BioVenture Investors,F2500\nINTERGRATED HEALTH SVS,,Y4000\nTechnician,University Of Nebraska,J1200\nPRESIDENT,LUNDS FISHERIES,G2350\nAttorney,Williams & Jensen PLLC,J1200\nOwner,LaSalle News Tribune,C1100\nCOMPUTER INSTRUCTOR,ACCD,Y4000\nVICE PRESIDENT-PRO,GENERAL DYNAMICS,D2000\nATTORNEY,MELLON BANK,F1000\nSALES,RAYMOND JAMES FINANCIAL,F2100\nREAL ESTA,DAVIDSON DEVELOPMENT INC.,F4000\nAttorney,\"Carluccio,Leone,Damon,Doyle & Sacks LL\",K1000\nWESTERN FARM SERVICE INC,,A1400\nPrivate Banker,Credit Suisse,F2300\n\"CLEEK'S INC\",,G4000\nR.E.,JORDAN REAL ESTATE INVESTMENTS,J1200\nCOMMUNICATION,ALAN BLINKEN CAMPAIGN,Y4000\nCOUNSELOR,GREAT BEND,L1300\nVERN CLARK & AS,PRESIDENT,K2000\nSECRETARY,RH BAILEY DDS,H1400\nSOFTWARE,EMPLOY TECHNOLOGY,Y4000\nINSURANCE & SECURITI,LES CHANDLER + ASSOCIATES,Y4000\nMULTINATIONAL BIBLE COLLEGE,,H5100\nAttorney,Scott Scriven & Wahoff,K1000\nATTORNEY,\"SLAPPEY & SADD, LLC\",Y4000\nCHINATOWN CULTURAL SERVICES CENTER,,Y4000\nC M HOLTZINGER FRUIT,,A1400\nTelecommunications Manager,US Air Force,X5000\nCONSULTANT,\"IVC MEDIA, LLC\",Y4000\nAUTOMOTIVE WRITER,,C1100\nPRESIDEN,P.A.R. LIMITED PARTNERSHIP,Y4000\nCONTRACTOR,\"M-W DRILLING, INC.\",Y4000\neco-theologian,self-employed,Y4000\nINVESTOR - DEVELOPER,,F7000\nPresident,Alcorn BeverageCorp,G2850\nSCHLUSTER CO,,A4200\nPHYSICIAN (PED.,PED NEURO ASSOC. PA,H1130\nSENIOR MANAGING PAR,THE DUTKO GROUP,K2000\nPRESIDENT,MPW PROPERTIES,J1100\nJACOBSON AGENCY,,F3100\nE,PARADIGM ASSET MANAGEMENT CO. LLC,F2100\nDOCTOR,COX MEDICAL CENTER,H2100\nENGI,AMERICAN COUNCIL OF ENGINEERIN,B4000\nOwner,Haynie Utility Construction,B1500\nEAGLE VIEW MANAGEMENT,,Y4000\nEXECUTIVE,SELF,G5250\nPHARMACEUTICALS,FOREST LABORATORIES,H4300\nLINCOLN PARK ANESTHESIA,,H1130\nEx VP and General Counsel,Dow Chemical Co,M1000\nDEPT OF EDUC GOVERNMENT OF GUAM,,X3500\nELECTRONICS EXECUTI,PRINTRONIX INC.,C5110\nFARMER,SELF-TED SHEELY/FARMER,A1000\nMONEY MANAGER,LA CAPOTIAL,F2100\nConsultant,Cna Financial/Total Home LLC Constr,F3400\nVICE PRESIDENT,FIBERTEK INC.,Y4000\nExecutive,Giglios Distributing,Y4000\nsoftware,s,J1200\nCounty Sorter,Waste Management,E3000\nDirector of Communications,The Breck School,H5100\nRON LEMASTER INSURANCE,,F3100\nAccountant,\"U S Gov't\",X3000\nOwner,Bugmaster Inc,Y4000\nATTORNEY,DRYER & COLLORA,K1000\nCAPE ELECTRICAL SUPPLY,,B5500\nPROPRIETOR,BENEFITS ONE,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,N. R. S. C.,J1100\nGIMBELS OF MAINE INC,,Y4000\nPHYSICIAN AND DENTIST,,H1100\nRETAIL EDUC. & TRAINING,AUDIO INNOVATIONS MARKET SMART,Y4000\nPRESIDENT,QUALITY STEEL CORP.,M2100\n\"BOATMEN'S NATIONAL MORTGAGE CO\",,F1100\nPodiatric Physician,Foot & Ankle Care Center,H1130\nVP CORPORATE AFFAIRS,MARS INCORPORATED,G2200\nTHE BRACE PLACE,ORTHODONTIST,H1400\nBiotechnology,Self employed,H4500\nPresident,Prospect Waterproofing Co,B0500\nWRITER,ELYRIA CHRONICLE TELEGRAM,C1100\nMANAGING DIRECTOR,CROSSROAD STRATEGIES,K2000\nPresident,LeMunyon Group LLC,K2000\nINVESTOR,FREEMAN CO.,F4200\nSOUTHERN PUBLIC SERVICE CO,,Y4000\nPresident,The Dana Group,Y4000\nMarketing,Babcak & Brown,Y4000\nDFI INTERNATIONAL,,G5280\nDisabled Pediatric Physician,Self,H1130\nInsurance Agent,\"Sierra Life Solutions, L.L.C.\",F3100\nPHILIP BANKS REAL ESTATE,,F4200\nSOCIAL WORKER,LESLEY K. IRITANI,Y4000\nVICE PRES,HIGHVIEW MOTORS INC,T2300\nPR,INFO.TECHNOLOGY ASSN. OF AMERICA,C5100\nFINANCE,STERLING INVESTMENT PARTNERS,F2100\nPRINCIPAL,BARTLETT & BENDALL,K2000\nTEACHE,NORTH KINGSTOWN SCHOOL DEPT.,Y4000\nSOFTWARE ENGINEER,PRIME THERAPEUTICS,H4400\nBUS DRIVER,MULLEN PUBLIC SCHOOLS,Y4000\nBUSINESS PLANNING ASSOCIATES,,F3100\nSTRATEGIC ADVISOR,BROWNSTEIN HYATT FARBER SCHRECK,K1000\nR D WOOD INS ASSOC,,F3100\nOWNER/MANAGER,MEDICINE MAN PHARMACY,H1750\nDIRECTOR OF P,CARNIVAL CRUISE LINES,T6250\nBROADCASTER,ENTERCOM COMMUNICATIONS,C2100\nMEMORIAL MEDICAL CENTER,,J7400\nEATON VANCE MANAGEMENT,,F2600\nACCESSORY LADY INC,,G4000\nPUTNAM CITY BANK,,F1100\nMedina County School System and Wal,,\n\"EVP, CONTENT AND ENTERTAINMENT\",UNIVISION COMMUNICATIONS INC,C2100\nMOBILE BANKING PRODUCT MANAGER,EAST WEST BANK,F1100\nContract,Judge Quality Painting Inc,B3000\nINDEPENDENT CONSULTANT,RAMESH SUVA,Y4000\nOwner,Beyond Cotton,G4100\nBusiness Owner,Cds2,Y4000\nVice President of Go,Assn. of Illinois Electric Co-ops,E1610\nLAW OFFICE OF SCOTT L STERLING P A,,K1000\nSYSTEM OPERATIONS,UNITED PARCEL SERVICE INC.,T7100\nDENTIST,COMMUNITY HEALTH CENTER INC,H0000\nDIR. OF BUS.,ARCTIC STORM MGT GROUP,G2350\nLobbyist,Capitol Services Inc.,K2000\nGACHMAN METAL AND RECYLING IN,,M2400\nATTORNEY,LAND PARKER & WELCH,Y4000\nINFORMATION REQUESTED PER BEST EFF,\"WATERMARK HOTEL COMPANY, INC.\",T9100\nPresident,A La Carte Foodservice Consulting,G2900\nDesigner,NANA/Colt Engineering LLC,B4400\nWALT DISNEY TV & TELECOMMUNICA,,C2000\nAttorney,Scanlon Genringer,K1000\nVULCAN GRATED PRODUCTS,,Y4000\nPHYSICIAN,ABQ HEALTH PARTNERS,Z9500\nPLASTICS MANUFACT,INSULFAB PLASTICS,M1500\nMARKETING EXECUTIVE,\"LEWIS & CO., MARKETING COMMUNICATIONS,\",J1100\nLAWYER,POWERS PYLES & SUTTER,K1000\nIRONBOUND PARTNERS,,F2100\nVICE PRESIDENT - TAX,LUNIE INVESTMENTS INC.,Y4000\nRETIRED RN,RETIRED/RETIRED RN,X1200\nCEO,Harper International,G5200\nATTORNEY,FELDMAN KRAMER MONACO,K1000\nCEO,Jessnic Home Health,H3100\nCEO,\"West Coast Aggregates, Inc.\",B5100\nOPERATIONS MANAGER,LIFE ADVENTURE GROUP,Y4000\nCare Giver,Self employed,J1200\nVP,AMERICAN DEVELOPMENT CORPORATION,M1000\nTrustee,North Shore Medical Center,H2100\nROSNER GALLERY,,Y4000\nProfessor of Law,University of Louisville,H5100\nPROGESSIVE PLANNERS INC,,Y4000\nC.E.O. / President,Self-Employed,G5270\nRN,Hillbrook Nursing Home,H2200\nDIRECTOR,DISNEY,C2000\nACCOUNTANT,ACCOUNTANT,J1200\n\"VICE PRESIDENT, GOVT RELATIONS\",GENERAL ELECTRIC,M2300\nBUSINESS OWNER,\"GHILOTTI BROS., INC.\",Y4000\ninfromation requeste,information requested,Y2000\nSENIOR VICE PRESIDENT,COMCAST CORPORATION/SENIOR VICE PRE,C2200\nMID ATLANTIC MARKETING,,Y4000\nOFFICE MANAGER,STATE FARMS INS. CO.,F3400\nVP,DELTA AIRLINES,T1100\nIE INDUSTRIES,,E1620\n2ND ASST EN,INTEROCEAN UGLAND MGMT.,LT500\nattorney,\"Mitchell & Forest, P.C.\",K1000\nENVIRONMENTAL PLANNING CONSULTANT,SELF,Y4000\nBUSIN,ENTERPRISE DEVELOPMENT INATL.,Y4000\nBIT SERVICE CO,,Y4000\nSURNAMER WEISSMAN & CO,,F2400\nRAMPELL & RAMPELL P A,,F5100\nPartner & Co-Founder,Elevations Partners,F2100\nCEO,METRO TRANSIT AUTHORITY,T4000\nOWNER,DETROIT OXYGEN & MEDICAL,Y4000\nATTORNEY,\"LAW OFFICE OF OUSAMA M. RASHEED, ESQ.\",K1000\nTHE WEST GROUP INC,,Y4000\nExecutive,Business Image,J7400\nState Superintendent,State of Montana,X3000\nSenior Asset Manager,Triple Net Properties,F4000\nATTORNEY REPRESENTING LABOR,JONES -- GRANGER,Y4000\nARCHER GREINER,,K1000\nPresident,Institute for Health Policy,Y4000\nLANE SIMPSON ROBINSON ETC,,K1000\nENGINEERING MANAG,CISCO SYSTEMS INC,C5110\nCAROLINAS MEDICAL CENTER,,J7400\nAttorney,Gould & Ratner LLP,K1200\nMOULTRIE INTERNAL MEDICINE,,H1130\nFEDERAL GOVERNMENT AFFAIRS CONSULTANT,SELF-EMPLOYED,K2000\nEDUCATOR,HARVARD UNIV.,H5100\nATTORNEY,PARRISH & SMEJKAL,K1000\nACCOUNTANTS INC,,F5100\nCONSULTANT,OWNERSHIP THINKING LLC,Y4000\n\"KNOBBE, MARTENS, OLSON & BEAR\",,J1100\nATTORNEY,BLUE BELL CREAMERIES,A2000\nCEO,GE ERC,F3100\nAttorney,Surovell Markle Isaacs & Levy PLC,Z9500\nMarketing,Johnson & Johnson,H4000\nCONSULTANT,DEVELOPMENT SPECIALISTS INC,G5270\nPARTNER,JAMES J. BURKE & ASSOC.,K1000\nACCOUNTANT,CROWE HORWATH L.L.P.,F5000\nLegislative Counsel,Mortgage Bankers Association,F4600\nCope Associates Inc,,B4200\nPRESIDENT,FIRST CENTRUM,F4100\nBanker,Swiss Group,Y4000\nOWNER,THE PALMS CASINO,G6500\nKY DEPT OF CHARITABLE GAMING,,X3000\nSALES MANAGER,SYNAGRO,J1100\nPROGRESSIVE CASUALTY INSURANCE COMP,,F3100\nLally Pipe & Tubing,,Y4000\nSMITH BARNEY/CITIGROUP SUBSIDIARY/F,,F2100\nDeputy Mayor,City Of Los Angeles,X3000\nCASHMERE PRODUCTIONS,,C2000\nSALES,OTSUKA AMERICA PHARMA INC.,Y4000\nMANAGER SECURITY-BU,COCA-COLA ENTERPRISES INC,G2700\nRAD ENERGY CORP,,E1170\nTeacher,BD OF EDUCATION CALDWELL/WEST CALDWELL,X3500\nCorporate Director of Operations,\"Fresh Mark, Inc\",G2300\nVice President,Madison Coal and Supply,E1210\nCEO,FORTE & TABLADA,B4400\nTHE FRIEDKIN CORP,,J1100\nGOVT. RELATIONS,HEWLETT PARKARD,J7400\nCEO,The Aristos Group,J7400\nMANAGER,SODEXO INC.,G2910\nFarmer?Marketer,\"Epic Roots,Inc\",J1200\nAttorney/Professor,West VA University,K1000\nPRESIDENT,DEPENDABLE DRYWALL,G1200\nENGINEER,DYCE USA,M1000\nDIRECTOR OPERATIONS,\"SAM'S TOWN TUNICA/DIRECTOR OPERATIO\",G6500\nL DEAN JOHN PC,,J1100\nOWNER,\"KENNETH  T. SIM  M. D., FACS\",H1100\nACC,\"O.L.P. MANAGEMENT COMPANY, INC.\",Y4000\nEXECUTI,ASSOCIATES GRAPHIC SERVICES,J1100\nPEDIATRIC NEURO PSYCHIATRIST,PEDIATRIC NEURO PSYCHIATRIST,Y4000\nPHYSICIAN SCIENTIST,US NAVY,X5000\nMEMBER,CA. STATE BD. OF EQUAL.,X3000\nBROKER,AGENCY ONE,Y4000\nDirector-Government Relations,Fannie Mae,F4600\nPROFESSOR,TUNXIS COMMUNITY COLLEGE,H5100\nHEALTH CARE DIRECTOR,FRANKLIN HEALTH CENTERS,Y4000\nExecutive,Quantum Fuel Systems Tech.,Y4000\nUNITED TECHNOLOGIES CORPORATION,,Z9500\nGEORGIA LUNG ASSOCIATION P C,,H1100\nPRESIDNET,STM MFG INC.,J1100\nRetailer,WOW Inc,Y4000\nOwner,Hartman Oil,E1100\nATTORNEY,QUINN GILLESPIE & ASSOC.,K2000\nPostal Supervisor,US Postal Service,L1500\nPRESIDENT,TRANS-BRIDGE LINES INC.,T4100\nREUTTER,,B4400\nNED BURLESON & ASSOC,,Y4000\nSTUDENT,UC DAVIS,Z9500\nDEPARTMENT OF TRASU,,X3000\nSALES,TEMPSERV,Y4000\nEXECUTIVE,QUALITY INSURANCE CONCEPTS,F3100\nLAWYER,WINSTON AND STRAWN,K1000\nPhysician,Krueger & Pasquel Md,H1100\nLOBBYIST/GOVT AFFAIRS PROFESSIONAL,UNION SQUARE STRATEGIC,Z9500\nSales,TXU Power,E1620\nPRESIDE,SCHMITZ DEVELOPMENT COMPANY,Y4000\nANALYST,CREDITSIGHTS/ANALYST,F5000\nCEO,ALLIANCE OF AUTOMOBILE MANUFAC,T2100\nGOLDEN PANTRY FOOD STORES INC,,G2400\nKRISTAL BROCK REUSCHER,,Y4000\nSALES ENGINEER,CLYDEUNION PUMPS,Y4000\nEXECUTIVE,CAMP OIL,E1170\nPHYSICIST,JOHNS HOPKINS U/APL,H5100\nATTORNEY AND PROGRAM CONSULTANT,SELF,K1000\nPROSKAUER ROSE GOETZ & MENDELSHON,,J1100\nINNSBROOK CONFERENCE CNTR & RESORT,,T9300\nNEUR,BARRON NEUROSURGICAL RESOURCES,H1100\nBuilder,Earthrise Inc,J1200\nExecutive Vice President  Ad Sales,LIFETIME Entertainment Services,C2200\nOWNER,INTERIOR EXPRESSIONS,Y4000\nAGRICULTURE RELATED,SELF,Y4000\naviation,Papillon Helicopters,T1100\nSPORTS NUTRITIONIST,SELF-EMPLOYED,H1130\n\"Full Partner, LLC\",Information Requested,Y4000\nOwner,TRM Inc.,Y4000\nANTHEM BLUE CROSS &,,F3200\nMANAGEMEN,ALGODONES ASSOCIATES INC.,Y4000\nLEGAL AID FOUNDATION OF LOS ANGELES,,X4000\nChief Executive Offi,MedImmune Inc.,H4300\nWRITER/AUTHOR/COACH/BUSINESS OWNER,THE ACADEMIES INC.,Y4000\nPHYSICIAN,\"NOVO NORDISK, INC.\",H4100\nECONOMIST,UC,Z9500\nCASTILLEJ,UNTIED CHURCH OF CHRIST,X7000\nPhysician,Georgia Heart Physicians LLC,H1130\nAMERICAN EAGLE AIRLINES/USNAVY/AIRL,,T1100\nACUPUNCTURIST,BALANCEPOINT INTEGRATIVE MEDICINE/A,Y4000\nSALES,FINANCIAL CATALYST GROUP,Y4000\nRESEARCH SCIENTIST,US FOREST SERVICE,X3000\nAttorney,UN Foundation,J7400\nDIRECTOR OF FINANCE,PENNY FOR CONGRESS,J1200\nPRESIDE,DIELECTRIC LABORATORIE INC.,Y4000\nBusiness Manager,Manpower,G5250\nMayor,City of Alexandria,J7300\nAttorney,Hogan,Y4000\nPARTNER,CONSENSUS COMMUNICATIONS,G5210\nDIVISION OF HEMATOLOGY-SUNY,,J5100\nPrincipal,Pal Alto Unitied School District,X3500\nPHYSICIAN,HEAD & NECK ASSOCIATES,H1130\nATTORNEY,WILLIAMS AND JENSON,K2000\nPRESIDENT,Georgia Assn Of Educators,L1300\nDirector,Fulton County Counts,Y4000\nOwner,Southern Pipe and Supply,B5300\nX-Ray Tech,St Joesph Hospital,H2100\nCONSENSUS,,Y4000\nPRESIDENT,TITLE RESOURCE GROUP,Y4000\nATTORNEY,\"SMITH, MCKENZIE, ROTHWEL\",Y4000\nUNIVERSITY OF WI,,J6200\nInsurance Rep,Nationwide Insurance,F3100\nOfficer,Rugs by Design Gallery Inc,Y4000\nGAMMEX,,Y4000\nUPPER LAKE UNION HIGH SCHOOL DISTRI,,X3500\nWILLINSURE CO,,J1100\nEXECUTIVE,COCA COLA,K2000\nsoftware,Marketing Technologies,Y4000\nLOWELL SPINNERS,,Y4000\nFarmer,Loftis Farms,A1400\nHAGO CO,,Y4000\nSENIOR ANALYST,DYNEGY INC.,E1600\nNEST USA INC,,Y4000\nNATIONAL UTILITY CONTRACTORS A,,B1000\nFINANCIAL SERVICES,ROCKEFELLER FINANCIAL,J7400\nATTORNEY,MORRISSEY HAWKINS & LYNCH,Y4000\nPRUENTIAL SECURITIES,,F2100\nINSURANCE,BOLLINGER,F3100\nCONSOLIDATED MEDIA,,Y4000\nConsultant for Nonprofits,Self employed,G5200\nAstronomer,Self,X0000\nPresident,Heather Podesta + Associates,K2000\nCommunity Development Finance,Enterprise Community Investment,F2100\n\"General Manager, OS\",GE Infrastructure,M2300\nPRESIDENT & CHAIR,CENTRAL COCA-COLA,G2600\nOFFICES OF DF GENCARELLI,,K1000\nChairman,Republic Property Corp,Z9500\nConsultant,Hildebrand Tewes Consulting,G5260\nMCCOLLAM INS,,Y4000\n\"LANDS' END\",,G4100\nPRINT SHOPPE,,G1200\nBUSINESS OWNER,RAY FERGUSON TRUCKING,T3100\nPARTNER,\"THE LASTER FAMILY, LTD\",Y4000\nAttorney,Nexsen Pruet Jacobs & Pollard LLC,K1000\nBRODER KURLAND WEBB OFFNER,,G5200\nSecurities,Weeden & Co,Y4000\nOWNER/OPERATOR OF SMALL BUSINESS,SELF-EMPLOYED,G0000\nVP - Deputy General,Federal Home Loan Mortgage Corporation,F4600\nREAL ESTATE AGEN,L.A.H. REAL ESTATE,F4000\nConsultant,Svanda Consulting,Y4000\nPETIJAN POULTRY,,A2300\nCorp. Credit Manger,\"Konica U. S. A., Inc.\",Y4000\n\"WATERS, MCPHERSON, MC\",,K1000\nMETZLER LOCRICCHIO AND CO,,Y4000\nBLONDER & CO INC,,Y4000\n\"U S ADV CMTE ON INTERGOV'TAL REL\",,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,INFORMATION REQUESTED PER BEST EFFORTS,T1000\nINTERNIST,CHARLES RIVER MEDICAL ASSOCIATES,Y4000\nCOMPOSER (MUSIC),SELF-EMPLOYED,G0000\nOwner,ONiells pub,G2900\nMEMBER,CISCO HOMES,Y4000\nFinancial Manager/Di,La Plata Investments,B2000\nTeacher,Nernix Hall HS,J1200\nINTERNIST,PRIME HEALTHCARE SERVICES INC.,H3000\nSTIEGLER WELLS BRUNSWICK,,Y4000\nInformation Requested,Mohyuddin Medical Center,H2100\nENVIRONMENTAL MANAGER,PEABODY GROUP,E1210\nLAWYER,MIDAMERICAN ENERGY CO.,E1620\nMUTUAL LIFE INS CO OF NEW YORK,,F3100\nAZOFF ENTERTAINMENT CO,,C2400\nnurse practitioner,self,J1200\nMONTANA,,F1100\nRetail Grocery,\"Warehouse Market, Inc.\",G2400\nManaging Director,US Global Leadership Campaign,G5200\nREAL ESTATE DEVELOPER,BERLONI AMERICA,F4000\nSecurity Analyst,Alliance Capital,F2100\nOwner,Griffin Partners,Y4000\nMANAGING D,ANCASTIA-PACIFIC COMPANY,T5100\nANESTHESIOLOGIST,PHYSICIANS ANESTHESIA SERVICE,H1130\nATTORNEY,BALCH & BINGHAM LLP,K1000\nBW REALTY HOLDING PARTNERS,,F4200\nJONAS & ASSOC,,J1200\nS L CHEN AND ASSOCIATES,,Y4000\nAdministrator,N I H,X3000\nPRESIDENT OIL,HILLCREST BEVERLY OIL,E1100\nKRAEMER BURNS MYTE,,Y4000\nMINER,CONTRACTOR,Y4000\nVice President Information Services,\"AvalonBay Communities, Inc\",F4100\nPHYSICIA,PRESBYTERIAN CANCER CENTER,H1100\nHOBBY CONSTRUCTION,,B1000\nBELL-SEALE FUNERAL HOME INC,,G5400\nENTREPRENEUER,SELF-EMPLOYED,J1200\nStone,Victor Oolitic Stone Co.,B5100\nPIERCE KENNEDY HARTHE,,G5200\nEducation Researcher,\"University of Washington, and Universi\",H5100\nEnvironmental Industry,Self-Employed,Y4000\nPresident,EL Wiegand Foundation,Y4000\nPRESIDENT,RENTEX INC.,Y4000\nInformation Requested,,LG100\nPARTNER,\"AKIN, GUMP\",K1000\nFIRST BANK TRUST,,F1100\n\"Sr Anlst, Bus Sys\",NRG Energy,E1630\nCELEBRITY INC,,A8000\nCOMPUTER TECH,US ARMY,X5000\nExecutive,Pattco LLC,F2100\nBUSINESS DEVELOPMENT,\"MICROVISION, INC.\",C5000\nRETZLOFF INDUSTRIES,,\nROY NICHOLS,,Y4000\nDIREC,ADP NATIONAL ACCOUNT SERVICES,Y4000\nOWNER,GEISE CONTRACT SERVICES,Y4000\nREAL ESTATE,GORMAN & COMPANY INC.,F4000\nMicrosoft Corp,Software Engineer,J1200\nVice President and General Counsel,Volvo Penta of the Americas,T8300\nExecutive,Henry Gonsalves Company,G1100\nGeneral Manager,KSL -TV/Bonneville International Corp.,C2100\nANESTHESIA ASSN OF KC,,H1130\nS M LAWRENCE COMPANY,,Y4000\nEngineer,\"Wanco, Inc\",M2300\nEXECUTIVE DIRECTOR (PATHOLOGIST),NOVARTIS PHARMACEUTICALS,H4300\nMember,Bocrest Realty,F4200\nBENNETT-RONES ASSOCIATES INC,,Y4000\nCHIEF COMPLIANCE OFFICER,TPM CO,Z9500\nPRESIDENT,FORREST CITY GROCERY,G2400\nPresident,Bernstein Management Corp,F4200\nFIRST DEVELOP CORP,,Y4000\nBUSINESS OWNER,PRONAILS,Y4000\nPHYSICIAN,ALAN A ZELCER MD,Z9500\nConsultant,Hilburg Associates,G5210\nReal Estate Develope,Trotman Company,Y4000\nPRESIDENT & CEO,MEDIVEST,Y4000\n(CONSTR) MNGR ADVERTISING,,G5210\nRetired,\"Creative Electric, Inc.\",B3200\nTRANSPORTATION INDUSTRY ANALYST,US DEPARTMENT OF TRANSPORTATION,X3000\nCONSULTAN,HEALEY CONSULTING COMPANY,Y4000\nUROLOGIST,\"JOSEPH A. VEYS, MD\",H1130\nANESTHESIOLOGIST - PHYSICIAN,\"ASSOCIATED ANESTHESIOLOGISTS, P.C.\",H1130\nHealth Care,Self Employed,H2000\nTIVOL JEWELRY,,G4600\nExecutive Director,Joseph Bryan Foundation,Y4000\nInsurance Agent,\"Roth Agency, Inc\",F3100\nSargeant,Detroit Police Dept,X3200\nDICKSON LAW FIRM,,K1000\nENVIORNMENTAL RECOVERY/CEO/CEO,,Y4000\nANESTHESIOLOG,FREEMONT RIDEOUT HOSP,H1130\nMANAGING PARTNER,AMORITAS HOLDINGS,Y4000\nSr. Programmer/Analy,\"SBC Services, Inc\",Y4000\nATTORNEY,MCBRAYER MCGINNIS LESLIE & KIRKLAND,Y4000\nPresident,Accountants Business Service,F5100\nDIRECTOR OF FINANCE,RETIRED,X1200\nCorp. Officer,Rosenberg Housing Group Inc.,Y4000\nPLAN PROCESSOR,SELF-EMPLOYED,Y4000\nInformation Requested Per Best Efforts,Information Requested Per Best Efforts,F1400\nATTORNEY,FRIEDMAN & FRIEDMAN P.C.,K1000\nARCHITECT/ENGINEER,JOSEPH E. LAGRASSE & ASSOCIATES INC,Y4000\nCHIEF,EFFECTIVE TACHING & LEARNING,H5000\nCONTINENTAL CAPITOL,,F2100\nPHYSICIAN,\"SOHOMD, PLLC\",Y4000\nBANKER,BANK OF GRANITE CORPORATION,F1100\nBROWN HARRIS AND STEVENS INC,,J7400\nEXECUTIVE,EMERALD INTL CORP.,Y4000\nPETROLEM ENGI,LEE KERLING AND ASSOC,Y4000\nSr. Exec. V.P.,Ameriquest,F4600\nINFO REQUESTED,Reverse Loan ABC,Y4000\nPRESIDENT AND CEO,TRINITY CONSULTING,A1100\nTEACHER,MINISINK VLY TA,L1300\nBUSINESSMAN,TERRAL RIVER SERVICE,Y4000\nMAN,INTERTRADE AVIATION CORPORATION,Y4000\nDIPLOMAT,US DEPARTMENT OF STATE,F5500\nCHRISTOVICH & KEENEY,,Y4000\nUNIVERSITY OF TEXAS SOUTHWESTERN ME,,H1100\nInsurance Agent,Self-employed,J7120\nRETINA & VITREOUS AS,,H1120\nCORP EXEC,M&M WELDING AND FAB. INC.,Y4000\nEngineer,City of Vancouver,X3000\nFIRST SOURCE MORTGAGE,,F4600\nParalegal,Bashein & Bashein,K1000\nFinance Director,DaVita,H3200\nChief Executive Officer,Connect EDU,Y4000\nVolunteer Mission Agency Representativ,World Concern,Y4000\n\"VP, TECHNOLOGY\",ALLIANCE RESIDENTIAL COMPANY,F4100\nINSURANCE RESOURCES ALLIANCE,,F3100\nINSURANCE BROKER,SUSAN M. TOMICH,Y4000\nPartner,Ourso Beychok Johnson,G5260\nCONSULTANT,TRAMMELL AND COMPANY,F4100\nAnalyst,Analysis Corp.,Y4000\nHEATING,SYDNEY PYLES PLUMBING,B3400\nReal Estate Development,Rkw Development Corporation,F4100\n,NIAGARA NURSING AND REHABILITATION,Y4000\nEXEC,TCW GROUP,F2100\nVICE PRESIDENT,PARSONS INFRASTRUCTURE & TECHNOLOGY GR,B4000\nVP & CTO,FUELCELL ENERGY INC.,E1700\nAUTO REPAIR,CARS & CONCEPTS,Y4000\nStorefront Political Media,Storefront Political Media,G5210\nINVESTMENT MANAGER,STRONG CAPITAL MGMT,F2100\nARCHITECT,FLEMING ASSOCIATES,B4200\nSTEEL FABRICATION,TUTTLE INC.,Y4000\nPresident,\"Aspen Learning, Inc\",Y4000\nCO,UNITED CENTRAL INDUSTRIAL SUPPLY,M2300\nPres,Tabenken Trading Ltd,Y4000\nCHO YOUNG KUGIES INVESTMENT COMPANY,,F7000\nMedia Specialist - Cataloger,The American School in Japan,Y4000\nJOCKS SPORTS BAR,SELF,J1100\nCEO,Act I Personnel,G5250\nPriest,Not employed,X7000\nENGINEER,SCHIRMER ENGINEERING,B4400\nINFORMATION REQUESTED PER BEST EFFORTS,GOLDMAN SACH & CO.,Y4000\nREAL EST,FELLOWES CONSTRUCTION INC.,B1500\nOwner,National Land Explorer Inc.,Y4000\nAMERICAN FAMILY FUNDING/PRESIDENT/C,,F4600\nWRITER/MUSIC CRITIC,SELF-EMPLOYED,C1100\nATTORNEY,SABER SCHLESINGER,Y4000\nExecutive,DaimlerChrysler,T2100\nVICE PRESIDENT,COOPER LEASING INC.,Y4000\nRequest Pending,Fairbanks Title Agency,B2000\nATTORNEY,\"RIDENOUR, HIETON ET AL\",K1000\nASSOCIATE,SYLVAN LEARNING,H5000\nOWNER,VIRAL JEWELRY INC,G4600\nUNITED CONSULTING ENGINEERS INC,,B4000\nExecutive,United Labor Bank,F1000\nAttorney,Rep Chris Van Hollen,Y4000\nSPECIAL ASSISTANT TO THE CEO,ONE CAMPAIGN,J7000\nFilm Producer,Brillstein Grey Enterprises,C2600\nARTOFF CONSTRUCTION,,B1000\nBUSINES,CAST AND CREW ENTERTAINMENT,Y4000\nSR. V P  CORRECTIONS.,MANAGEMENT & TRAINING CORP,G7000\nHorse Trainer,Self employed/Viking Farts Inc,Y4000\nCPA,\"SCHMIDT + ASSOCIATES CPA'S\",B4200\nOLD POWAY MARKET,,Y4000\nGREENBERG TRAUIG ET AL,,J5100\nPresident,First Financial Bankshares,F1100\nDEPUTY CHIEF OF STAFF,NYC COUNCIL/DEPUTY CHIEF OF STAFF,Y4000\nProfessor,HaverfordCollege,H5100\nINSURANCE,IRA G. MOHLER & SON INC.,Y4000\nBookkeeper,Drachman Insurance Services,F3100\nCATTLE RAISER,SELF EMPLOYED,J1100\nAttorney,Robinson Bradshaw & Henson,K1000\nPRESIDENT,\"SULSAN CO., LTD.\",Y4000\nAttorney,Goldberg Kohn Bell & Black,J5100\nSoftware Engineer,Sony Media Software and Services,C5120\nHEALTH POLICY ANALYST,SELF,Z9500\nLEGISLATIVE AIDE,ASM. JOHN DIMAIO,Y4000\nCONSOLIDATED AERONAUTICS CORP,,Y4000\npresident cheif scientific officer,divergence inc,Y4000\nGENERAL MANAGER,INSTANT SYSTEMS,Y4000\nVIDOR DISTRIBUTOR,,Y4000\nW T W BOWLING CORP,,G6100\nKISTLEA FIFAN ADVISORS,,Y4000\nAttorney,\"Wallace, Creech & Sarda, LLP\",K1000\nGrant Writer,Valley Presbyterian Hospital,H2100\nFINANCIAL ADVISOR,PENN MUTUAL,F3300\nADVISOR,MOWATT FINL. INC.,Y4000\nPresident,SPM,Y4000\nPresident,Crest Chevrolet Inc,T2300\nATTORNEY,TAX LEGISLATIVE SOLUTIONS LLC,Y4000\nOWNER,WYCREST CAPITAL,Y4000\nIndependent Researcher/Consultant,Self employed,Y4000\nSURET,BOWEN MICLETTE AND BRITT INC.,F3100\nUNEMPLOYED,NONE/UNEMPLOYED,A3000\nCHAIRMAN AND CEO,\"WOMETCO ENTERPRISES, INC.\",G6100\nEDMOND COLLETT PSC,,Y4000\nInvestment Managemen,Greenhaven Associates Inc.,F2100\nINTERNATIONAL EMPLOYMENT SERVICES,,G5250\nKOSMONT COMPANIES,,Y4000\nKORB ROOFERS INC,,B3000\nCEO,CARPENTERS & COMPANY,M1000\n\"DEPT OF ECD, ATTORNEY\",STATE OF TENNESSEE,X3000\nREGIONAL MGR,ACSC,Y4000\nManager Sales II,ConAgra Foods Inc.,G2100\nREAL ESTATE INVESTMEN,MMA FINANCIAL,F4100\nHEMOPHILIA FOUNDATION OF MI,,Y4000\n\"DICKERT, PRICE & RHO\",,K1000\nsales,Star Equipment,B5100\nPRESIDENT & CEO,RAALSTON FOODS,G2100\nOil & Gas Exploratio,\"Sequoia Production, Llc\",Y4000\nattorney,Corporation for Supportive Housing,F4100\nGENERAL MANAGER,DIAMOND RESORT,Y4000\nOwner,Courtnet Raymond Consultants,Y4000\nCPA,\"JOHN J REINHART, PLLC\",Y4000\nACTUA,AMERICAN ACADEMY OF PRESIDENT,Y4000\nExecutive,dme Corporation,J1100\nCEO,MERIT MANAGEMENT GROUP,Z9500\nENERGY MGNT CONSLT,,J7400\nED PHILLIPS & SONS,,Y0000\nGRADUATE ASSISTANT,UNIVERSITY OF SOUTH FLORIDA,J1200\nTeam Leader,The Dow Chemical Company,M1000\n\"CEO,\",BIZO,Y4000\nKMC GRADING INC,,Y4000\nAttorney,Goldman and Rosen LTD,K1000\nPRESIDENT,\"SRI, INC.\",Y4000\nAGRI-INDUSTARIAL,,A1200\n\"Vice President, Television\",WVUE-TV/Emmis,C2100\nEICHLEAY CORP,,B2000\nMAC GROUP,,Y4000\nCHIEF EXECUTI,COMPUWARE CORPORATION,C5120\nCEO,THERANGENICS CORPORATION,H4000\nGeneral Counsel,AGI,H5300\nconductor,norfolk southern rail corp.,T5100\nASSIST,\"ST. LUKE'S CORNWALL HOSPITAL\",H2100\n\"Attorney,\",Guarini & Guarini,K1000\nOWNER,KLEAN WASH,Y4000\nHospitality,Self-employed,T9100\nPresident,Embassador Toys,G4600\nPRESIDENT A,CLARIAN HEALTH PARTNERS,H2100\nITALIAN FOOD & WINES,SELF EMPLOYED,Y4000\nExecutive,Acadia Investments,F2000\nExe.,SY Coleman,Y4000\nSIMPSON SIGN,,G5230\nVICE PRESIDENT,\"BEACON BAY ENTERPRISES, INC.\",Z9500\nGM,BMW HOUSTON NORTH,T2300\nMANAGER,CAUSLEY TRUCKING,T3100\nExecutive,Stark Truss Inc.,B5000\n\"PHYSICIAN PRIMECARE MANAGEMENT, LTD\",,H1100\nRESIDENTIAL REAL ESTATES,,F4200\nFinance,US Cable Corp,C2200\nARGONAUT INSURANCE GROUP,,F3100\nHEALTHCA,SELECT MEDICAL CORPORATION,H2000\nDAVIESS COUNTY BOARD OF EDUCATION,,X3500\nExecutive Director,\"Int'l Human Rights Funders Group\",Z9500\nMOFFA YARN CO,,M8000\nInvestor,\"Mallard Investments, Inc.\",F2100\nVICE PR,\"SWISHER INTERNATIONAL, INC.\",A1300\nCommunity Relations Director,City of San Jose,Y4000\nTrustee,Bradford Regional Medical Center,H2100\nPRESIDENT,PAYDAY NOW INC.,Y4000\nANESTHESIOLOGIST,TWIN CITIES ANESTHESIA ASSOCIATES,H1130\nCPA,Kurtzy Hornak,F5100\nARCHITECT,SCHENKELSHULTZ,Y4000\nMining,\"KenAmerican Resources, Inc\",E1210\nSPFTWARE ENGINEER,VOLT CONSULTING,Y4000\nOPHTHALMOLOGIST,SILVERSTEIN EYE CARE,Y4000\nWIFE AND MOM,NONE,J1100\nDR WILLIAM MCCARTHY,,Y4000\nExecutive,Council for Opportunity in Ed.,X4000\nJAK CONSTRUCTION,,B1500\nPRESIDENT,DRT MFG CO.,Y4000\nPhysician,Oswego Hospital,H2100\nD & D PLUMBING INC,,B0500\nDOCTOR,,E1110\nKPMG PEAT MARWICK,,B1000\nCOMMUNITY ACTIVIST,,C2200\nAttorney,\"Ruben & Aronson, LLP\",K1000\nTEACHER,MASS. TEACHERS ASSOCIATION,L1300\nDARDIS & HIPPERT,,K1000\nPHYSICIAN,CENTRAL MISSISSIPPI MEDICAL CENTER,Y4000\nATTORNEY,HODES PESSIN & KAR,K1000\nDesigner,Yale University Press,H5100\nconsultant,CDA Consulting,Y1000\nBUSINESS DEVELOPMENT MANGER,MEDICAL SERVICE CORPORATION INTERNATIO,Z9500\nAcademic Counselor,\"University of California, Irvine\",H5100\nPRESIDENT,THE TIME GROUP,Y4000\nRETIRED PROFESSOR,WEST CHESTER UNIVERSITY,Z9500\nAttorney,Buklad & Buklad,Y4000\nSELF-EMPLOYED,REILLY ADVISORS,Y4000\nFEC # C00374603,,Z1200\nTRANSATIVE CORP,,Y4000\nCONTROL,FLUOR FEDERAL SERVICES INC.,B1000\nFinancing Consultant,Primetime Capital,F0000\nVLADECK WALDMAN ELIAS & ENGELHARD P,,K1000\nREALTOR,CBPP,F4200\nCONSULTANT,SPITZER2002,Y4000\nSPECIAL ASSISTANT,U.S. ARMY,X5000\nHealthcare,Ft Walton Beach Medical Center,H2100\nAttorney,\"Riscassi & Davis, PC\",K1000\nVENTUR,SPRING MILL VENTURE PARTNERS,Y4000\nPRESIDENT,SOUTH AMERICAN RESTAURANT CORPORATION,G2900\nPRESIDENT,\"AMERITITLE, INC.\",F4300\n\"SCHUCKER'S IRON WORK'S INC\",,Y4000\nPresident,Francis E Provencher Insurance,F3100\nConstruction,Gilbane Building Co.,B4000\nhousewife/momma,self and family,G0000\nCPA,DUBINA LEE/CPA,Y4000\nMEDICAL DIRECTOR,SPINEONE,H1130\nOR,KENNEDY-WHITE ORTHOPAEDIC CENTER,H1130\nPresident,Farmers Bank of Liberty,F1100\nOWNER,DABNEY FEED SUPPLY,Y4000\nInvestment Counselor,\"Asset Management, Inc\",F2100\nGENERAL ELECTRIC CAPITAL CORPORATIO,,F0000\nSALES,TRANSFIRST,Y4000\nCEO CANNER INC.,CARL  CANNER,Y4000\nEXECUTIVE,\"VAN OPERATION, LTD.\",E1120\nBEASLY ALLEN,,K1100\nSCIENTIST,ARETE ASSOCIATES,D4000\nattorney,RYAN PHILLIPS UTRECHT & MACK,K2000\nOFFICE OF NAVAL RESARCH (RET),RET FEDERAL OFFICIAL,Y4000\npolicy analyst,Hudson Institute,X4000\nBURNETTE MARKETING SERVICES,,G5210\nExecutive Vice President,\"Osceola Farms, Inc\",A1000\n\"Director, National S\",Dean Foods Midwest,A2000\nPRODUCT MANAGER,\"CISCO SYSTEMS, INC\",C5110\nFINANCE,CAPITOL GROUP,F5000\nATTY,Jacobs Grudberg Belt & Dow,Y4000\nA C EDWARDS,,Y4000\nPresident Pratt & Wh,Pratt & Whitney,D2000\nSenior Project Manager,Update Graphics,Y4000\nMASCO,,J9000\nOwner,\"Wisconsin Metal Sales, Inc\",Y4000\nATTORNEY,STROBL & SHARP PC,K1000\nUS DHS TSA,,X3200\nCEO,SW JACK DRILLING CO,E1150\nDR BOB LISS,,H1100\nPRESIDENT,JACKLIN SEED,F1100\nOWNER & PHARMACIST,CIRCLEVILLE APOTHECARY,Y4000\nPHY,PODIATRICS OF SOUTHWEST HOUSTON,H1130\nCOMMERCIAL DIRECTOR,ALCOA INC,M2250\nProfessor,M.C.C.C.D.,H5100\nQUAKER VALLEY COUNSELING SERVICE,,Y4000\nPurchasing,Morpac Industries Inc,Y4000\nOFFICER,\"KLUCK, INC.\",Y4000\nOWNER,COASTAL BEND MARINE,Z9000\nExecutive Director,N. Environment Support Trust,Y4000\nVALID LOGIC SYSTEMS INC,,C5100\nClient Services,\"Wilkinson O'grady & Co, Inc\",F2100\nMECHANICAL CONTRA,MECHNICAL SYSTEMS,Y4000\nCONSULTANT,GLOBAL EPROCURE/CONSULTANT,Y4000\nSenior Vice President-Product Marketin,QBE FIRST,F4600\nSalesperson,Vonmaur,Y4000\nNATIONAL SECRETARY- TREASURER,UTILITIY WORKERS UNION OF AMERICA/N,LE200\nExecutive,AmeriDream,X4000\nExecutive,Daiichi Sankyo Pharma Dev,Y4000\nProducer,First Stage Productions Limited,Y4000\nINVESTMENT COUNSELOR,,F0000\nATTOR,\"FIREBAUGH & ANDREWS, P.L.L.C.\",K1000\nMANAGING PARTNER,SUN RANCH GROUP,A3000\nRetired,Saxonburg Ceramics,X1200\n,SMITHCRAFT REAL ESTATE CORPORATION,F4000\nInvestment Manager,Oaktree Capital Management LLC,F2100\nCONSULTANT,MGS CONSULTING SERVICES,Y4000\nFIREFIGHTERS RETIREMENT SYSTEM,,Y4000\nMANATEE MEMORIAL HOSPITAL,,H1130\nSR VP - S REGION LEG,BellSouth Telecommunications,C4100\nEXECUTIV,EDINGTON PEEL & ASSOCIATES,K2000\nPRESI,CLY-DEL MANUFACTURING COMPANY,M5000\n,\"ROCKFORD ANESTHESIOLOGISTS ASSOC.,\",H1130\nCLIENT EXECUTIVE,SIRIUS COMPUTER SOLUTIONS,Y4000\nAUGUSTA LUMBER CO,,B5200\nSAW SERVICE,SELF,G0000\nCPA,SCANNELL WEALTH MANAGEMENT,Y4000\nReal Estate,KEN Management Corp,F4000\nAssociate Professor,Quinnipiac University,H5100\nCORONADO TECH INTL,,Y4000\nCONSULTANT,\"TECHNOLEGIS, LLC\",Y4000\nENGINEER,\"Gannett Fleming, Inc.\",B4000\nACCOUNTANT,\"ROSS AND ASSOCIATES, P.C.\",Y4000\nLawyer,Baizer and Kolar,Z9500\nDirector of Governme,Clarion Healthcare,H0000\nMARKETING,MARKET GENOMICS,Y4000\nOwner,Desert Tree Farms,A5000\nWAVERLY MILLS,,M8000\nManaging Partner,Qmc Llc,Y4000\nPOWER GRAPHICS INC,,G5240\nPartner,Kirkland Ellis,K1000\nPUBLIC FINANCE CONSULTANTS INC,,F0000\nOwner,New Horizons Properties LLC,F4000\nRICHARD & GISNER,,Y4000\nSales Rep,Pepsi Bottling Group,G2700\n09609-REGION CONSTRUCTION MGR,Rite Aid Corporation,G4900\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,NUCLEAR ENERGY INSTITUTE,E1300\nATTORNEY,INSTITUTE OF INTL BANKING,F1000\nLAWYER,MICHAEL GRAVES & ASSOC.,K1000\nphysician,\"Carolina Retina Center, P.A.\",Y4000\nUROLOGIST,BLUE RIDGE UROLOGY/UROLOGIST,H3200\nPRESIDENT,JOHN A. LEVIN & CO.,F2100\nFORMER CEO OF CARMAX,RETIRED,F2500\nPresident,\"SIMMS LUMBER COMPANY, INC.\",B5200\nMANAGER,\"FACE REALITY, INC.\",Z9500\nRTD.,NONE,X1200\nLAWYER,EDWARDS WILDMAN,K1000\nGENERAL ELECTRIC CO,,T1300\nCEO,FIRST AMERICAN EQUIPMENT FINAN,F0000\nNORTHWOOD VENTURES,,Y4000\nCONSTRUCTION SUPERVISOR,CRAMER & ASSOCIATES,B1000\nGOODHUE ARONS & NEARY,,J7150\nLegislative Affiars,State Auto,Y4000\nFederal Relations,NYS Dept of Labor,X3000\nTEXAS STERLING CONSTRUCTO,,B1500\nStudent,Hunter College,H5100\nPresident,Koontz Electric Co Inc,B3200\nvtullman@mac.com,none,Z9500\nSELF/RETIRED/INVESTMENTS,,X1200\nAttorney,Kravitz & Geurra,K1000\nPartne,Verboon Milstein & Peter LLP,K1000\nCEO,CRETESEAL,Y4000\nPHYSICIAN,NORTH DALLAS SURGICAL SPECIALISTS,Y4000\nPresident,Delta Mechanical,B3400\nPhysician,Centennial Peaks Hospital,H1110\nPATHOL,MEDICAL CITY DALLAS HOSPITAL,H1130\nAttorney,\"Bice & Palermo, LLC\",K1000\nPRIVATE INVESTOR,AURORA INVESTMENTS,F7000\n\"DISTRICT ATTORNEY'S\",MCLENNAN COUNTY,J1100\nOwner,Aquisition Resources,Y4000\nSTROOCK STROOCK & LAVON,,K1000\nLOBB,MURRAY SCHEER MONTGOMERY ET AL,K1000\nSr IT Director,\"Aptimus, Inc - An Apollo Group Compan\",Y4000\nCo-Chairman,Premier Pacific Vineyards,G2820\nCITY COUNCIL,NAPLES CITY,Y4000\nPresident,Bunzl Extrusion,Y4000\nCHAIRMAN,HUDSON GROUP,G3000\nDAVID F SWAIN & CO,,Y4000\nATTORNEY,\"BIRNBAUM & GODKIN, LLP\",Y4000\nPETROLEUM ENGINEER,BP,E1110\nPRESIDENT,GFP,JE300\nattorney,MFS Investment Management,F2100\nCONSULTANT,COLSON,Y4000\nVP-CONSTRUCTION,VILLAGE GREEN,F4000\nWISTOW & BARYLICK INC,,K1000\nCSS INDUSTRIES,,Y4000\nHP PRODUCTS,,Y4000\nSENIOR ATTORNEY,\"WILLIAMS WPC-I, INC\",E1140\nChief Executive Offi,Clear Channel Worldwide,C2100\nTHE RAIDERS,,Y4000\nTHE SINGER FUNDS,,F2100\nSoftware Engineer,Sarnoff Corporation,D3000\nSALES,INOVIS,Y4000\nSocial Worker,Swan Society in Boston,Y4000\nUNIV OF TEXAS AT ARLINGTO,,H5100\nPHELPS DODGE REFINING CO,,E1220\nGeneral Manager,Balderson Motor Sales Inc,T2300\nInvestment Manager,Self,Z9500\nBUSINESS ANALYST,GENESIS 10,G5200\nADULT CARDIOLOGY,Centro Cardiovascular de Caguas,H1100\nMCFALL GLIDDEN SHERWOOD & BREITBELL,,Y4000\nPRESIDEN,ADI TECHNOLOGY CORPORATION,G5270\nEngineer,\"Flextronics Int'l\",C5000\nLAWYER,IOWA ATTORNEY GENERAL,X3000\nA,\"J. MESINGER CORP. JET SALES, INC.\",Y4000\nDirector,Library of Pittsburgh,X4200\nVETERINARY CONSULTANT,SELF EMPLOYED,A4500\nCEO,JEFFREY J. KIMBELL & ASSOCIATE,G5200\nAEE,,E1600\nCO-HEAD OF ORIGINATION,GUGGENHEIM PARTNERS,F4600\nCEO,PANTHER RACING LLC,Y4000\nTUELECTRIC,,Y4000\nREAL ESTATE BROKER,INSIGHT REALTY GROUP,F4200\nBKD/LLP/CPA,,Y4000\nmarketing,Cerenzio & Associates,Y4000\nBUSINESS,LAMAR COMPANY,G5230\nEDELMAN CORPORATION/VICE PRESIDENT/,,Y4000\nTHE ACCESS PROJECT,,Y4000\nReal Estate Finance,\"MMA Financial, LLC\",F4100\nPRESIDENT,\"MEURER BROTHERS, INC\",A8000\nRetired,Reitz Memorial High School,Y4000\nAMITYVILLE PODIATRY ASSOCIATES,,H1130\nINSURANCE AGENT,ALFA INSURANCE,F3100\nPresident & Ceo; Kir,Silicon Valley Community Foundation,J1200\nSAB ENGINEERING AND CONSTRUCTION,,B4400\nPublic Health,US PHS,Y4000\nBusiness Development,Best Buy,G4200\nEX VP GEN COUNSEL & SEC,AK STEEL CORPORATION,M2100\nRIS CONSULTING,,Y4000\nAttorney,Pension Benefit Gran,Y4000\nMCDONALD/FRANCHISEE/MCDONALDS,,Y4000\nPHYSICIAN,S. GOLDBLATT PATHOLOGY ASSOC,Z9500\nUSED VEHICLE DIRECTOR,AN CALIFORNIA REGIONAL OFFICE,T2300\nATTORNEY,FRANCIS A. FORD LAW OFFICE,K1000\nCORBALLY GARTLAND & RAPPLYEA,,Y4000\nCONSULTANT,FRANK N MAGID ASSOCIATES,Y4000\nFinancial Advisor,\"Black Point Partners, Inc.\",Y4000\nINFORM PRODUCT DEVELOPMENT,,Y4000\nFINLEY ASSOCIATES INC,,Y4000\nCAIN & BULTMAN,,B5200\nBRINKER INTERNATIONAL,,J1100\nPARTNER,STURCO LLC,Y4000\nChairman and CEO,Essence Communications,C1100\nRETAURANT OWNER,,Y4000\nPRESIDENT,LLOYD A.J. PRAGASM INC.,Y4000\nBT - ALEX BROWN,,G1300\nVP  PORTFOLIO MANAGEMENT SERVICES,MORNINGSTAR INC,C1100\nTMA TOOL SERVICES,,M5000\nret.,Information Requested,JD100\n\"VANNESS, FELDMAN, SUTCLIFF ET AL\",,K1000\nPresident,American Cemetery Consultants Inc.,G5400\nBusiness Development,Shell WindEnergy,E1000\n\"Actor, Producer, Director\",\"The Players, Inc\",C2000\nSTUDENT/SALES,SELF-EMPLOYED,G0000\nPRUDENTIAL SECURITIES,,G5300\n\"O'CONNELL DEVELOPMENT\",,Y4000\nENGINEER,REQUESTED,B4400\nNO OCCUPATION,RETIRED,X1200\nPHYSICIAN,KOSOW SURGICAL ASSOC.,Y4000\nPROGRAMMER,\"INTIFIC, INC.\",Y4000\nChairm & CEO,Centex Corp.,B2000\nC REED DAVIS CONTRACTORS,,B0500\n\"SENIOR DIRECTOR, FINANCIAL REPORTING\",ATLAS AIR WORLDWIDE HOLDINGS,T1500\nPresident and CEO,Flowers Communications Group,Y4000\nOWNER,HART EYE CENTER,Y4000\nEvents,Charles Schuab,F2100\nVICE PRESIDENT,AFFORDABLE DENTURES,Y4000\nCONSULTANT,CRESA PARTNERS,F4000\n\"INTEGRATED MANAGEMENT SERVICES, INC\",,Y4000\nAttorney,\"Leboeuf,Lamb,Greene, MacRae, LLP\",K1000\nSALES,MCCULLOUGH,Y4000\ntrial lawyer/partner,Prince Kelley Coombs,Y4000\nPRESIDENT,RICHMOND PRIMOID INC.,Y4000\nQUIK PAWN SHOP,,Y4000\nFITZERALG ABBOTT & BEARDSLEY,LAWYER,K1000\nVice President,The Rockey Company,Y4000\nEDUCATOR,HOLY COMFORTE SCHOOL,K2000\n\"GIANT GROUP, LTD.\",,G2900\nBRENDA MCKENZIE & ASSOC,,G5270\nRETIRED,THE HOLDEN COMPANY,F2100\nCARDIOLOGIST,HEART RHYTHM CONSULTANTS,Y4000\nPublisher,NM Tourism Dept/NM Magazine,C1100\nCALCO INSURANCE BROKERS & AGENTS,,F3100\nCITIZENS HEALTH CORP,,H3000\nBURNSIDE WALL ET AL,,Y4000\nPresident,\"Onslow-Sheffield, Inc.\",B0500\nLoan Officer,Academy Mortgage Corporation,F4600\nChairman & CEO,\"G III Apparel Group, Ltd\",M3100\nLAW OFFICES OF BILL EVANS,,K1000\nEXECUTIVE,ALAMO TITLE,B2000\nMT LAUREL SCHOOL DISTRICT,,X3500\nVICE-PRESIDENT,BLUM FRANK & KAMINS,F4000\nENGINEER,\"BLEVINS ENTERPRISES, INC.\",Y4000\nMANHATTAN INC,,Y4000\nVICE PRESIDENT/SECRETARY,\"FREEDOM MEDICAL SERVICES, INC.\",J5100\nPresident,Lasco Ford,T2300\n,LAS VEGAS METROPOLITAN POLICE DEPT,X3200\nOWNER,PENDER NURSERY,A8000\n\"ENGLE'S FRAME SER\",,Y4000\nPresident,Mary Kraft & Associates Inc.,G5250\nTECHNOLOGY CONSULTANT,SBS CONSULTING -- DISTRIBUTION,Y4000\nJEWELER,JOHNSON & VAUGHN JEWELERS,Y4000\nMERRILL MANUFACTURING,,Y4000\nSENIOR MANAGER TECH. POLICY,INTUIT,C5120\nInvestment Broker,Allen & Company,F2300\nPHYSICIAN,DEACONESS HOSPITAL,H2100\nSelf Employed,Suler & Co Inc,Y4000\nOwner,Hahn Engineering,B4400\nSoftware Developer,\"Iowa Interactive, LLC\",Y4000\nCONSULTANT,GUARDIAN DEVELOPMENT,F7000\nattorney,\"Nelson and Associates, PA\",Y4000\nRn,Midred Mitchell Hospital,H2100\nMEDICAL DIRECTOR,WUESTHOFF MEDICAL CENTER - ROCKLEDGE,H2100\nOwner,Rusty`s Towing Svc. Inc.,T3100\nPLANT PRODUCTION,,Y4000\nOFFICE,,J5100\nPHYSICIAN,TCVSA,Y4000\nAttorney,Robinson Brug et al,K1000\nEDUCATIONAL ADMINISTRATOR,READING AREA COMMUNITY COLLEGE,H5100\n\"COTCHETT, ILSTON\",,Y4000\nWIND SERVICES,\"SHERMCO INDUSTRIES, INC./WIND SERVI\",E1500\nM H DAVIDSON & CO INC,,J7150\nSmall Business Owner / Artist,Techniques Technical Writing & Illustr,Y4000\nCATHOLIC PRIEST,MISSIONARY SOCIETY,Y4000\nCONSUL,LAWRENCE ROMANS & ASSOCIATES,G5200\nCEO,ATLANTIC DOMINION DISTRIBUTORS,G3000\nAT,HOFSTRA UNIVERSITY SCHOOL OF LAW,J7400\nOwner,Jafar Mobasseri Md,H1100\nCEO,BARNES AND NOBLE COLLEGE,Y4000\nW K B N BROADCASTING,,C2100\nBanker,\"Rhone Group, LLC\",F2300\nM AND M CHEVROLET INC,,T2300\nCEO,CALAWAY INTERESTS,Y4000\nEXECUTIVE DIRECTOR,HARMONIE INSTITUTE,X4100\nNOTIONS EXPORTER & D,A.C. INTERNATIONAL INC.,Y4000\nPhysician,Univ CA,H5100\nRetail Store Buyer,Mapsco,Y4000\nDIETITIAN,EASTERN MAME MEDICAL CENTER,H2100\nConsultant,Public Affairs Association,Y4000\nA D T SECURITY SERVIC,,Y4000\nComjpany Owner & C.E.O.,\"Springhill Services, Inc.\",Y4000\nPART-TIME SECRETARY,\"ST. MARY'S CHURCH\",X7000\nBusinessman,P&B Inc,Y4000\nAGRICULTURE,SHAWNEE FARMS INC.,A1000\nINFORMATION SYSTEMS,VITREO-RETINAL AASOCIATES,Y4000\nNICCOLI BROTHERS HEATING,,B3400\nBarro McNamara & Scanlon,,Y4000\nGREATER LOUISVILLE FUN,,Y4000\nMANTHEI DEVELOPMENT CORP,,Y4000\nGOVERNMENT,FINE GEDDLE & ASSOCIATES,Y4000\nPartner,\"LSN Partners, LLC\",K2000\nInterior Designer,Blinken Interiors,Y4000\nROPAK CORP,,M1500\nCHAIRMAN OF THE BO,LAYTON COMPANIES,B1500\nEUTHENICS INC,,B4400\nORTHOPEDIC SURGEON,RETIRED,X1200\nConstruction Supervisor,REQUESTED,B1500\nINDEPENDENCE ASSET,,Y4000\nPRIDE MOBILITY PRODUCTS CORP,,H4100\nTUTOR.,SVC,Y4000\nBLUE ROCK PRODUCTS CO,,Y4000\nMANAGING PARTNER,FA TECH VENTURES,Y4000\nCUSTOMS BROKER,\"HOYT SHEPSTON, INC\",Y4000\nUNITED NATIONS FEDERAL CREDIT UN,,F1300\nOwner,Self-employed,X1200\n\"PARDO'S TRUCK SERVICE PARTS\",,T2200\nCorporate Secretary,Law office of Edward Thomas,K1000\nMANAGING PAR,\"COLSON, HICKS + EIDSON\",K1000\nATTORNEY,SPILMAN THOMAS & BATTLE PLLC,K1000\nMERCHANT-WAKEFIELD INC,,F1100\nDEVELOPER,PEDERSON GROUP INC.,F4100\nRequested,Requested,K2000\nCEO,CITEL TECHNOLOGIES,J1200\nattorney,Madia Law LLC,K1000\nBusiness,Alamo Group,A4200\nPROFESSOR,VANDERBILT UNIVERSITY,J1100\nAPPALACHIAN PROPERTIES,,F4000\nFILET PAINT SPECIALISTS,,M1600\nOwner,\"Martha's Mex. Restaurant\",G2900\nMUSEUM CURATOR,UNIV OF PENNA,H5100\nCOPIAIT BANK N A,,F1100\nMechanic,Gulfstream Aerospace,T1200\nEngineer,Cummins Inc.,J1200\nBERKOWITZ DEVELOP,,F4100\nEXECUTIVE DIRECTOR,THE COUNCIL OF CHURCHES OF THE CITY OF,Z9500\nCFO,National Communications,C2100\nTHE PROCTOR & GAMBLE,,M1300\n,METROPOLITAN VETERINARY ASSOCIATES,J1200\nCEO,THE REMI GROUP,Y4000\nPACIFIC MISSLE RANGE FACILITY,,Y4000\nEngineer,American Nickeloid Company,Y4000\nWEIL GOLSHAL & MENGES,,K1000\nFTQ REALTY COMP,,F4200\nProfessor,Fingerlakes Community College,H5100\nWRITER/ART HISTORIAN,RETIRED,X1200\nFinance Exec,Merrill Lynch,J1200\nAviation Fuel,Self Employed,G0000\nMotivational Speaker,Phoenix Safety Management,Y4000\nChief Asst. Prosecut,Hamilton County Prosecutor,X3200\nInternal Medicine,HealthPartners,H0000\nCO,VANCE SMITH CONSTRUCTION COMPANY,B1500\nREALTOR,DOWN THE SHORE,F4200\nMarketing,Pharmanite Corporation,Y4000\nPARTNER,HERALD GROUP,Y4000\nOwner,\"Akivako, LLC\",Y4000\nKAROUB ASSOC,,Y4000\nFARMER,BRAVO MANAGEMENT,A0000\nBLUMENTHAL & GRUBER LLP,,K1000\nEXECUTIVE,SONIC INDUSTRIES,G2900\nCDS RESOURCES,,J6200\nINVESTMENT ADVISOR,\"CHRISTOPHER WEIL & CO., INC.\",Y4000\nDIRECTOR,NATIONAL ASSOCIATION OF REALTORS,J9000\nSalesman-owner,Burlington Instruments,Y4000\nexecutive,Beef Packers,G2300\nEXECUTIVE,GRW INC,B2000\nISLANDER RV RESORT,,T9000\nOWNER,RLJ MANAGEMENT COMPANY -,F4100\nExecutive,Marjan Communications,G5210\nBanker,CPC,F4000\nTHORSTAD CHEVROLET,,T2300\nPROFESSOR,UNIV OF WASHINGTON,H5100\nINSURANCE,BROWN & BROWN METRO,F3100\nPRESIDENT,BROWN MEDIATIONS,Y4000\nInsurance Agent,BCG,Y4000\nCO OF SANTA BARBARA,SELF-EMPLOYED,Y4000\nFinancial advisor,Keating and Associates,Y4000\nPresident,Munro Manufacturing Company,M3000\nEILEEN & ROBERTA,,G4600\nCDI COMMERCIAL DEVELOPMENT,,Y4000\nCEO,Lonestar Steel Company,Y4000\nGALIANO MARINE,,T6000\nReal Estate,Belegram Group,Y4000\nSALES,PETITBON ALARM COMPANY,Y4000\nAdmin & Fundraiser,Wheaton College,H5100\nVice President International Content A,Comcast,C2200\nREAL ESTATE,PRESTON & GERACI,F4000\nLAWYER,\"PHIL REDENBAUGH, P.C.\",Y4000\nRealtor,Weichert Realtors,J9000\nPHILANTHROPIST,ELIZABETH AITKEN,Y4000\nPACESETTER INDSUTRIES,,Y4000\nNot employed,n/a,G6500\n\"BULTER, SNOW, O'MARA, STEVENS ET AL\",,K1000\nBUILDER,DESIGNER,J1200\nCOASTAL EQUIPMENT CORP,,B6000\nSALES,GRADINER- TRANE,Y4000\nAssociate,Barbour & Griffith & Rogers,K2000\n\"Managing Dir, Corpor\",American Airlines,T1100\nSenior Managing Dire,HFF,F4100\nadministration,Seattle King County Public Health,Y4000\nEXECUTIVE VICE PRESIDENT,SAVANTAGE,Y4000\nNURSE PRACTITIONER,OBGYN NORTH,Y4000\nLOCKHEED MARTIN ENERGY SYSTEMS INC,,F1100\nPrincipal/Accountant,Lewis B Freeman & Partners Inc,F5100\nPARTNER,DUTKCO GROUP,K2000\nDUKE SANDWICH COMPANY,,Y4000\nSoftware Engineer,Tradeweb LLC,Y4000\nOwner/Principal/Part,Stratford Building Corp,B2000\n\"Owner, Small Business\",Self Employed,K1000\nSuperintendent,Macomb Intermediate School District,X3500\nKENWALL STEEL CORP,,M2100\nPublic Policy,Akerman Senterfit,K1000\nDOT Courier,FedEx Express,T7100\nNURSERYMAN,SHERMAN NURSERY CO.,A8000\nSR DIRECTOR FOR LABOR RELATIONS,UNITED AIRLINES,T1100\nATTO,GARWOOD MCKENNA MCKENNA & WOLF,Y4000\nConsultant,\"Ecorp Consulting, Inc.\",Y4000\nCONTRACTING ENTERPRISES INC,,B1500\nOwner,DaCosta Constru,B1500\nEXECUTIVE,OPK BIOTECH LLC,Y4000\nG B ARMSTRONG,,Y4000\nSUNNYBROOK HEALTH SCIENCE CENTER,,H1130\nREALTOR,COLDWELL BANKER - HPW,Z9500\nCULLUM COMPANIES INC,,G2400\nEXECUTIVE,\"KIDS N. PLAY, INC.\",Y4000\nVice President,Monsanto,A4000\nDEAN OF EDUCATION,CARRINGTON COLLEGE,H5100\nPHYSICIAN,\"TULSA MEDICAL LAB, LLC\",J6200\nMANAGING VICE PRESIDENT FIELD MANAGEME,\"TOWER GROUP, INC.\",F3100\nADMINI,RIDGEWOOD HEALTH CARE CENTER,H0000\nPUBLIC RELATI,NATIONAL DISTRIBUTING,G2850\nEXEC SALES,BUFFALO HOSPITAL SUPPLY,H2100\nManager,Dimo Trading LLC,Y4000\nOFFICE WORKER,UNION PACIFIC RAIL,J1200\nMANAGEMENT,WILDCAT SILVER CORP/MANAGEMENT,Y4000\nRETIRED,T. ROWE PRICE,F2100\nPresident Entrepreneurs Training,Edmondson Associates,Y4000\nCIO,ARKEMA INC.,M1500\nIntern,Abso Lutely,Y4000\nAttorney/mediator,Self-employed,K1000\nPHYSICIAN,UNIVERSITY OF IOWA CARVER COLLEGE,H5150\nEx. Director,Cali. Tchrs. Assoc.,J7400\nLEDIC MANAGEMENT GROUP,,B2000\nPARTNER,WEINGEROFF ASSOCIATES,Y4000\nOWNER,ACTION APPRAISAL,F4700\nGATE HOUSE GROUP,,F4100\nSR. VICE PRESIDENT,STATE FARM,F3400\nPhysician,Mayo Regional Hospital,H1100\nEDUCATOR,DES MOINES UNIVERSITY,H5100\nGOLF COURSE OWNER,SELF-EMPLOYED,G6100\nProgram Officer,Marin Community Foundation,Y4000\nDENTIST,H ZACK SMITH DDS,H1400\nConsultant,James P. Simmons Assoc.,Y4000\nHealth Educator,Hult Health Education,Y4000\nREAL ESTATE DEVELOPER,THE MUNGO COMPANY,B2000\nASSOCIATE GENERAL COUNSEL,\"WELLMARK, INC.\",F3200\nDAYTON PROPERTIES,,Y4000\nSales/Marketing Executive,Apotex Corp,H4400\nOWNER,ABOVE ALL AND SON LLC,Y4000\nNational First Bank of Texas,,F1100\nSUNNY DUPREE,,Y4000\nBusiness Person,Scanr,Y4000\nOwner,Summite Consulting & Engineering,B4400\nCSA ENGINEERING CONSULTANTS,,B4200\nEDUCATOR,HOPKINS HOUSE,Z9500\nPresident Emeritus,Covenant College,H5100\nGRAND VICTORIA,,G6500\nExec Directr,Jewish Vocational Services,Y4000\nUC Hastings,Professor,H5100\nANALYTICAL SYST ENGIN C,,C5000\n\"INVESTMENT SERVICES INT'L CO\",,F7000\nCEO,BRANT HICKEY & ASSOC.,Y4000\n\"CH2M HILL, INC\",CONSULTANT,Z9500\nPERSONAL TRAINER,FLEX GYM,Y4000\nVP SAFETY,VALERO,E1160\nRetired,Mission Community Hospital,H2100\nGROTON SD,,L1300\nMASON C,KIRBY CONSTRUCTION SVC. INC,B3000\nContractor,Best Roofing,B3000\n\"President, CEO\",SCF Arizona,J1200\nC R RHOADES,,Y4000\nUSER EXPERIENCE DESIGNER,TYLER TECHNOLOGIES,C5120\nDeputy Chairman,\"Soros Fund Management, LLC\",F2700\nPUBLISHER,HISTORY COMPASS,Y4000\nAttorney,Morgan Madden Brashear & Colli,K1000\nADVANCED UND,BADES ORGANIZATION INC,F3100\nMICHELLE ROSENFELD INC FINE ARTS,,Y4000\nPHYSICIAN,UPPER VALLEY SERVICES/PHYSICIAN,Y4000\nCHEMICAL BANK MICHIGAN,,F1100\nPHILADELPHIA ANTIQU,,Y4000\nJUDICIAL ATTORNEY,\"3RD CIRCUIT COURT, WAYNE COUNTY\",Y4000\nCornell University Retiree,Retired,X1200\nMONIWARY PATHOLOGY,,H1130\nWAYNE COUNTY COURT OF APPEALS,,X3200\nProfessor,U M,Y4000\nTHORAC,HANS SWART MD. & ASSOC. INC.,Y4000\nNY STATE FACILITIES,,Y4000\nMICROPOLIS CORP,,C5110\nW C PAYNTER INC,,Y4000\nPHYSICIAN,CONTINUUM HEALTH PARTNERS,H2100\nQLTRADING,FINANCE,F0000\nPHYSICIAN,\"DALE CAPULONG, MD\",H1100\nFinancial Service,Warburg Pincus,J7400\nATTORNEY,\"COSSICH, SUMICH, PARSIOLA & TAYLOR, LL\",Z9500\nHSI INC./BUSINESS OWNER/SELF-EMPLOY,,G0000\nLITVIN BLUMBERG MATSON & YOUNG,,K1000\nPATHOGENESIS CORP,,G5200\nCIVIL SERVANT,STATE OF MARYLAND,X3000\nPhysician,GAGA,Y4000\nVICE PRES,OLDCASTLE MATERIALS GROUP,Y4000\nLEGAL ASSIST,KAWASALIC MATARS CORP.,Y4000\nSR. VP FOR PUBLIC AFF,PHILIP MORRIS,A1300\nVICE PRESIDEN,UNITED LAWNSCAPE INC.,Y4000\nHEAD THOMAS WEBB & WILLIS LLC,,Y4000\nPHARMACEUTICAL SCIENCES,ACTELION PHARMACEUTICALS,Y4000\nC & B PRINTING,,C1300\nAttorney,Hofmann & Schweitzer,K1000\nFISH FARMER,KEO FISH FARMS,A1000\n\"VP, Communications\",\"Health Care REIT, Inc\",H2200\nPARKER TOWING COMPANY,,T3100\n\"HAYES, COFFEY & BERRY\",,K1000\nFOUNDRY MAINTENANCE,FORD MOTOR CO.,T2100\nTRANSACTION ATTORNEY,IBM,C5100\nTECHNOLOGY MANAGEMENT,FIDELITY INVESTMENTS,F2100\nC & L CONTRACTING,,B1500\nBORN INFO SERVICES GROU,,Y4000\nOREGON STATE UNIVERSITY,,JD200\nREAL ESTATE DEVELOPM,MERRILL LAND COMPANY,F4100\nANESTHESIO,SOUTHEAST ANESTH CONSULT,H1130\nLEGISLATIVE,SENATOR JAMES JEFFORDS,Y4000\nPRESIDENT,E.W. BULLOCK & ASSOCIATES,Y4000\nSOLE PROPRIETOR,CAPITOL ORTHOPEDICS,H1130\nSr VP Finance,Webcor Builders,B1000\nEMERGENCY PHYSICIAN,UNIV OF VA HLTH SVC-DEPT OF EM,H1100\nBUSINESS,CITIGROUP,F1100\nDEFENSE CONTRAC,SENTLEN CORPORATION,Y4000\nDirector,\"MSA Industries, inc\",Y4000\nCHAIRMAN,UNION PLANTERS CORP.,F1100\nD & M METAL PRODUCTS CO,,M5000\nLegal Assisstant,Sparks Law Group Pllc,K1000\nOTHER,LOUDON COUNTY SCHOOL DISTRICT,L1300\nCONSULTING,TDY,K2000\nSOUTHWAY TIRE CO,,Y4000\n\"US COMMISSIONER, INT'L JOINT COMMISISO\",US GOVT,X3000\nLICHT AND SEMONOFF,,J1200\nFire Officer,Dept of the Interior,X3000\nSupr.,OGE Energy,E1620\nBUSINE,DISTINCTIVE MAINTENANCE INC.,Y4000\nBOARD MEMBER,FLATHEAD ELECTRIC,E1610\nPRESIDENT,FARMERS BANK,F1000\nAttorney,Laminack Pirtle & Martines LLP,K1100\nlibrarian,unemployed,X4200\nBUSINESS OWNER,SEQUOYAH ELECTRIC,Y4000\nATTORNEY,\"HARVEY & BATTEY, P.A.\",K1000\nIOWA PORK PRODUCERS ASSOCIATION,,A3000\nLimited Partner,GOLDMAN SACHS GROUP,F2100\nREAL ESTATE,HEGG COMPANIES INC,F4200\nUS AEROMOTIVE,,T1300\nPRESIDENT,EAGLE AIRE,T1400\nCHAIRMAN & CEO,PERRY ELLIS,C2600\nPublic Affairs,Planned Parenthood Federation Of Ameri,J7150\nBusiness Owner,Wendys Franchise,G2900\n\"GIBSON, DUNN & CRUTCHER LLP\",,K1200\nCEO,\"MARY KAY, INC.\",M3300\nVICE PRESIDENT,WOHLSEN CONSTRUCTION COMPANY,B1500\nGovernment Relations,Preston Gates Ellis & Rouvelas Meeds L,K1000\nOWNER,BURNS AND BURNS,Y4000\nChief Executive Offi,Byrd Regional Hospital,H2100\nCinematographer-Director,Perigo Productions,Y4000\nACCOUNTANT,HCTV,Y4000\nJOE JOHNSON CHEVROLET OLD,,T2300\nComputer Consultant,Technology Partners,Y4000\nHUTCHINSON CLINIC,,H2000\nPRINCIPAL,TOMAH SCHOOLS,Y4000\nProfessor,U Chicago,Z9500\nInvestment Banker,Lazard Middle Market,Y4000\nCEO/President,\"Mary T, Inc.\",J7400\nASSOCIATE,CAPITOL COUNSEL LLC,K2000\nKANSAS HOSPITAL SERVICE CORP,,H2100\nNATIONAL COMP SERVICES INC,,C5100\nBUYER,EASTMAN KODAK COMPANY,M9200\nRet,Self-Employed Consultant,X1200\nActuary,GE Insurance Solutions,F3100\nLINTON & KIMURA,,Y4000\nCOMPUTER SCIENTIST,COMMERCE NET,J5100\nUniversity Professor,Ucla,H5100\nSUPERINTENDENT,CROTHERSVILLE COMMUNITY SCHOOL,Y4000\nNPOMS,,Y4000\nPRESIDENT,PAY LESS SUPERMARKET,Y4000\nRETIRED,KOKOSING CONSTRUCTION,B1500\nAttorney,Gregory Lambron,Y4000\nDELTA MATERIALS HANDLING INC,,Y4000\nCOMPUTER PROGRAMMER,\"FACILIS CONSULTING, LLC\",Y4000\nPresident/Owner,\"Ricardo's of Las Vegas, Inc.\",G2900\nPINNACLE NATIONAL BANK,,Y4000\nINDUSTRIAL DESIGNER,A DESIGN CONSULTANCY,Y4000\nWarren Company,,Y4000\nHOSPITAL MANAGER,MAIMONIDES MEDICAL CENTER,J1200\nVice President,ICE Railroad Company,T5100\nPOST CARRIER,US MAIL,Y4000\nMANAGING MEMBER,TERLEPHONE COMPANY BLDG LLC,Y4000\nAttorney,ny Legal Assistance Group,Y4000\nEARLY CHILDHOOD EDUCATION,THE EARLY YEARS,J7400\nTELECOM,BAKER INSTALLATIONS,Y4000\nNeuropsychologist,Self,G0000\nAgent,Reliable Travel International,T9400\nPresident - Sales & Distribution,Aviva,F3300\nPodiatrist,Touding Grand Podiatry,Y4000\nDIRECTOR,HOLY ROSARY CATHLIC CHURCH,X7000\nVICE PRESIDENT,PRINCESS CRUISES,Y4000\nBRAVO GROUP,,G5210\n\"Vice President, Political Affairs\",Independent Insurance Agents & Brokers,F3100\nManager,Leeward Construction,B1500\nSTUDENT,COLUMBIA LAW SCHOOL,Z9500\nOWNER,MARION CREDIT COMPANY,Y4000\nAttorney,\"Wachowski & Johnson, S.c.\",J1200\nSALES MGR.,LEO PHARMACUTICAL,Y4000\n\"CPA, Technology Consulting\",\"Morrison & Morrison, Ltd\",J5100\nALKY HERRAR DSC,,H1120\nAttorney,Dewey & LEBoeuf,J7150\nDIRECTOR,BCBSA,F3200\nVeternarian,Lenoir Veternary Hospital,H2100\nBARBARA FRANKLIN ENTERPRISE,,G5200\nENGINEER,\"CLOUGH HARBOUR & ASSOCIATES, LLP\",B4000\nExecutive,Cardi Corp.,B1500\nPHYSICIAN,ASSOC. VISION,Y4000\nConsultant/Coordinator,Colorado Department of Education,X3000\nWCA INC,,Y4000\nSELF,\"BADGER BLUEGRASS CO, INC\",Y4000\nATTORNEY-FUNDIN,PLUNKETT JAFFE P.C.,K1000\nTECHNICAL WRITER,GE HEATHCARE,Z9500\nSENIOR VICE PRESIDENT/WEALTH ADVISOR,MORGAN STANLEY/SENIOR VICE PRESIDEN,F2300\nPHYSICIAN,JOHNSON CITY MEDICAL GROUP,Y4000\nBOARD MEMBER,KILPATRICK LIFE INSURANCE CO,F3300\nBuilder Member,Derrick Construction Co. Inc.,B2000\nENT ASSOCIATES OF GREATER KANSAS CI,,Y4000\nRIVERSIDE COMMUNITIES,,Y4000\nCOMMODITY MGR,THE TIMKEN COMPANY,M5000\nCommunity Organizer,NY Lawyers for the Public Interest,K1000\nOwner,TTI,Y4000\nOWNER,THE HARRIS COMPANY,Y4000\nSELF-EMPLOYED/RETIRED/CONSULTING EN,,X1200\nSales,Secure Global Solutions Inc,Y4000\nOAK PARK PUBLIC LIBRARY,,X4200\nCHAIRMAN,ATLAS ENERGY OIL & GAS,E1100\nR. N.,Retired,X1200\nARCHITECT,CANNON DESIGNS INC,B4200\nREINERTSON TELEPHONE,,C4100\nATTO,HILL HILL CARTER FRANCO COLE &,F1100\nASSOCIATE,BOCKORNY GROUP/ASSOCIATE,K2000\nOWNER,SURGARLOAF PEAT CO,Y4000\nInvestment Counselor,Chase Investment,J1100\nACADEMIC,RETIRED,Z9500\nATTORNEY,KEY INVESTMENTS,F2600\nSOCIAL STUDIES SCHOOL SER,,J1200\nOwner,Neon Deli,G2900\nCunningham Bounds Yance Crowder and,,Y4000\nDirector Government Relations,Fierce & Isakowitz,K2000\ninvestment advisor,Smith Barney,F2100\nCHAIRMAN,DISNEY MUSIC GROUP,C2000\nCENTRAL PUCHASING IN,,Y4000\nATTO,LAW OFFICES OF DAVID M. LIPMAN,J1200\nOFFICE MANAGER,\"PINGLETON SAWMILL, INC.\",Y4000\nAccountant,Blumenthal Lansing Co,Y4000\nMANAGER,PEROT SERVICES,Z9500\nLEWIS - GALE CLINIC,,H1100\nLAWYER,AMERICAN EXP.,F1400\nPAUL WEISS RISKIRD WHARTON AMB,,K1000\nRANCHER,BAKMAN RANCH,A1000\nInformation Requeste,Becker Realtors,F4200\nATTORNEY,UPDIKE KELLY ET AL.,J1200\nMANAGER,UNITED TECHNOLOGIES CORPORATION,D2000\nDirector,PA Office of Health Care Reform,Y4000\nREAL EST,PRIVATEPORTFOLIO GROUP-LLC,Y4000\nCEO,QUALITY CONNECTOR SYSTEMS,Y4000\nCURTIS FREILICH,,Y4000\n,EMERGENCY ALERT SECURITY EQUIPMENT,Y4000\nPARTNER,SELF-FUNDRAISING SUPPORT SERVICES,Y3000\n\"GES, INC\",,Y4000\nATTORNEY,RICHARD J. SIRIANI P.C.,K1000\nATTORNEY,ATTORNEY AT LAW,Z9500\nInformation Requeste,Foundation for Senior Living,Y4000\nPRESIDENT,\"P&W INTERNATIONA TECH CO., INC.\",Y4000\nBUSINESS CONSULTANT,ROBERT HOLF,Z9000\nAttorney,Newman Trockman Lloyd Flynn & Rhinelan,Y4000\nPRESID,FOREST HILLS FINANCIAL GROUP,F3300\nExecutive,Prouzo Constructors,B1500\nLANDSCAPE ARCHITECT,,J7150\nINVESTOR,P & P PROPERTIES,F4000\nFinance Analyst,Verizon Business,Z9500\nREAL ESTATE,\"SOTHEBY'S\",G4800\nADMINISTRATOR,EXTENDICARE HEALTH SERVICE,H0000\nFIDUCIARY MNGT ASSOC,,Y4000\nGLORY BB,,Y4000\nTARCCA & ASSOC,,Y4000\nconsultant,Brendan J Kennedy & Assoc,K2000\nPresident,Ron Perrella DRS,G5220\nengineer,\"Todd & Sargent, Inc\",B1000\n\"ROBB, LEONARD & MULVIHILL\",,K1000\nPRESIDENT,SREE HOTELS,T9100\nCEO,SONS OF ITALY FOUNDATION,Y4000\nMEAD-ADAM & CO INC,,Y4000\nReal Estate,Gordon Properties,F4000\nExecutive,Four Seasons Sale & Service,Y4000\nINTERACTIVE RESOURCES,,Y4000\nMONUMENT ADVISORS,,Y4000\nMARKETING/SALES OFFICER,SEH,Z9500\nLOBBYIST,MEYERS & ASSOCIATES,K2000\nCORPORATE OFFICER,\"THOMAS COMMERCIAL INTERIORS, INC.\",Y4000\nNYS ASSN OF PUBLIC BROADCASTER,,C2100\nReal Estaten Broker,Self-Employed,F4000\nCOLLEGE OF SAN FRANCISCO,,Y4000\nPRESIDENT,WILDENSTEIN & CO.,Y4000\nATTORNEY,PATTERSON KINNEY & RUGA,Y4000\nPHYSICIAN,\"CONSULTANTS IN CARDIOLOGY, PA\",H1100\nVice President,Ford Foundation,X4100\nExecutive,Solar Energy Services,E1000\nPRESIDENT,\"ELG & ASSOCIATES, INC.\",Y4000\nCitrus,McKenna Groves,Y4000\nRealtor,Re/Max Ability Plus,Y4000\nMERCANTILE BANK OF KANSAS,,F1100\nFINANCE SUPERVISOR,ECASC,F1420\nPresident,NiSource Corp Services,Y4000\nPRESIDENT,MUNCIE POWER PRODUCTS INC,G1200\nSVP Exploration,Pogo Producing Co.,Y4000\n\"FOREIGN SERVICE OFFICER, RETIRED\",DEPT. OF STATE,Z9500\nWriter,Linea Solutions,Y4000\nNEWSPAPER PERSONAL REL,,C1100\nSANTA CLARA DISTRICT OF SMACNA,,B3400\nCEO,ARONS KISSENA FARMS/CEO,A1000\nCONSULTANT,\"HILL SOLUTION'S, L.L.C.\",K2000\nRAILROAD CONDUCTOR,MASS BAY COMMUTER,Y4000\nPRESIDENT,MACRO OIL CO.,E1160\nSELF EMPLOYED/PILOT/ REAL ESTATE,,F4000\nRETIRED DIRECTOR,AFSCME,L1200\nPresident,Pollack,Y4000\nFinancial & Real Estate Consultant,Self-Employed,F4000\nSEIU,DISTRICT 1199P,LG300\nTHOMPSON-ARTHUR PAVING,,B5100\nNURSE,SWMC,H1710\nATTORNEY GENERAL,STATE OF COLORADO,X3000\nC.E.O.,AEGIS SCIENCES CORPORATION,F3100\nExecutive,Telebeam Telecommunicati,C4100\nLand Surveyor,Clark County Dept of Public Works,X3000\nATTORNEY,BGR/ATTORNEY,K2000\nPartner,Flake & Kelley Management,Y4000\nSecretary-Treasurer,Utility Workers Union,Z9500\nREAL ESTATE,VERITAS GROUP/REAL ESTATE,Y4000\nANDREOTTI BROS TRUCKING,,T3100\nPHYSICIAN,ANESTHELIOLOGY CONSULTANTS OF MARIA,H1130\nPRINCESS TOURS,,T9000\nGREATLAND EXPLORATIONS,,Y4000\nLANE CAJUN CONTRACTORS,,B1500\nCPA,\"LANDAKER & ASSOCIATES, INC., CPA'S\",Y4000\nADULT CHOIR DIRECTOR,SALEM LUTHERAN CHURCH,X7000\nFORMAN BROTHERS,,G2850\nCHAIRMAN & CEO,AV INTERNATIONAL,F3100\nCEO,Murphy Brothers Exposition,G6700\nINFO REQUESTED,NORTHEAST REGIONAL MEDICAL CTR,H0000\nCHIE,NORTH SHORE-L.I. JEWISH H.SYS.,H2100\nPhysician,Nethorlgly Physicians LLC,Y4000\nWWII VET,INFORMATION REQUESTED,J1100\nNMI,,D0000\nSCIENTIST,MASS GENREAL HOSPITAL,H2100\nOW,\"BRYANT HAMMETT & ASSOCIATES, LLC\",Y4000\nTHE GILLETTE COMPANY,,M3300\nPhotographer,Buntrock-Salie Studio,Y4000\nNEUROLOGICAL ASSOCIA,,J7300\nTHE DUNCAN BANNER,,Y4000\nINFO REQUESTED,SELF EMPLOYED,J6200\n\"VP, COMMERCIAL DEVELOPMENT & OPERATION\",EMERGENT BIOSOLUTIONS,D9000\nDeputy Unk,\"King County, Washington\",X3000\nDERMATOPATHOLGIST,DERMATOLOGY SPEC OF OMAHA,Y4000\nNATIONAL FEED SCREW &,,Y4000\nGeneral Manager,Ray Skillman Automotive,T2000\nManager,Hewlett-Packard Company,C5100\nProject Manager,NCEC Services,Y4000\nPENGUIN PUTNAM,,C1100\nEXECUTIVE,E J FINANCIAL,F0000\nWHEAT INTL COMMUNICATIONS,,G5200\nENGINEERS,BURKE BALES MILLS,B4200\ngovt. affairs,Atremis Strategies,K2000\nSenior Associate Dir,AFT,L1300\nVice President,Valley Electrical Consolidated Inc,B3200\nAttorney,Exelon Business Services Company,E1600\nCEO,Mercy Health Systems,F1100\nMETRO TRANSIT,,T4000\nPresident,Commercial Federal,Y4000\nSales,Jp Morgan Chase,F1100\nPublishing,SPS Sutdios,Y4000\nWARNER ELEKTRA ATLANTIC CORPORATION,,C2000\nCOMMERCIAL MANAGER,COMING INC.,C4000\nAVP TRANS NETWORK,Norfolk Southern Corporation,T5100\nAttorney,LSNY,J7400\nVICE PR,PRECISION SCREW THREAD CORP,Y4000\nEA,BRODIE ACCOUNTING SERVICES LLC,F5300\nTITLE ATTORNEY,,K1000\nBEEBE MEDICAL CENTER/PRESIDENT/CEO,,H2100\nCommunity Activist,Self Employed,X4100\nRHN ASSOC,,J5100\nPROFESSOR,PRINCETON UNIV.,Y4000\nPresident,Karya Technologies,Y4000\nPhysician,Westport Anesthesia,H1130\nPRINCIPAL,A. E. SMITH ASSOCIATES,K0000\nCEO,Key Capital Partners,Y4000\nLUMBERTON RADIOLOGICAL ASSOCIATES,,H1130\nATTORNEY,\"SUISMAN, SHAPIRO, ET AL\",Z9500\nOWNER,TRI COUNTY FUNERAL HOMES,G5400\nGENERAL M,PHILADELPHIA COUNTRY CLUB,G6100\nTHOMAS CREEK LUMBER,,A5000\nATTORNEY,FIELSTRA SHIBLEY,Y4000\nMAYOR,CITY OF SALISBURY N.C.,X3000\nPresident,Germania Corp,Y4000\nArtist,Patrick Gordon,Y4000\nCounty Commissioner,Montgomery County,X3000\nELECTRICIAN,MALKO ELECTRIC/ELECTRICIAN,B3200\nEXECUTIVE,JAMES HALL PROPERTIES,Y4000\nExecutive,Advance Steel,Y4000\nED SAYLOR PO-BU GMC INC,,T2300\nKAUFMAN GELBERT BERN,,K1000\nSHELBYVILLE CENTRAL SCHOOLS,,X3500\nExec Director,The Avater Academy,H5100\nREAL ESTATE DEVELOPM,THE GARDER COMPANY,J1100\nCONSULTANT,PROFESSIONAL COUNSELLING FUND,Y4000\nRegional Director of,\"HCR Manor Care, Inc.\",H2200\nReal Estate Broker,\"Sullivan Realty, Inc\",F4200\nOPERATIONS EXECUTIVE,\"LAKESIDE OIL CO., INC.\",E1170\nadministrator,San Jose State University,J7400\nPRESIDENT,CLYDE D. FISHER INC.,Y4000\nFILM MAKER,JEFFREY CLEGG,Y4000\nTHOROUGHBRED HORSE OWNER & BREEDER,SELF-EMPLOYED,G0000\nGENERAL AGENT,,F3300\nKEYSTONE MINING SERVICES,,E1200\nDIRECTOR MARKET DEV,SUNPOWER CORP,E1500\nManaging Partner,Summit Equity Group,F2100\nFINANCIAL CONSULTANT,INVESTMENT DECISION ANALYTICS/FINAN,F5000\nVIC,AMERICAN PHYSICAL THERAPY ASSN.,JH100\nPROFESSOR OF POLITIAL SCIENCE,N.E. UNIVERSITY,H5100\nREAL ESTATE & INVEST,,F4000\nPHYSI,CENTRAL INDIANA EYE INSTITUTE,H1120\nPHYSICIAN,REGIONAL HEALTH INC,H1100\nPhysician,Sleep Healthcenters,Y4000\nDIRECTOR M,ANHEUSER-BUSCH COS. INC.,G2810\nATTORNEY,JAMES GREENFIELD PA,Y4000\nBACC BUILDER,,Y4000\nSCIENTIST,CONSULTING IN PUBLIC,Y4000\nLA ASSN INDEPENDENT COLLEGES & UNIV,,H5100\nOTTAWA TOWNSHIP HIGH SCHOOL,,L1300\nOWNER,REEL TIME TACKLE & TOURS,Y4000\nTHE IRA KAUFMAN CHAPEL INC,,G5400\nCROWELL E MORING,,Y4000\nEXECUTIV,WI DEPT OF HEALTH SERVICES,X3000\nComputer Analyst,Siemens,C5000\nTREASURER/ADMIN. ASS,\"STRAWM, ARNOLD & LEECH ASSOC.\",Y4000\nGARZA GARZA & PACHECO,,K1000\nBEVERAGE DISTRIBUTOR,BIBB DIST. CO,G2850\nSPECIAL EDUCATION TEACHER,RETIRED,X1200\nSCIENTIST,REGENERON PHARMACEUTICALS,H4300\nCADENCE DESIGN SYS,,Y4000\nRETAIL MARKETING,SELF,J1200\nPRESIDENT,FBT MORTGAGE LLC,F4600\nEXECUTIVE DIRECTOR,OHIO LOTTERY COMMISSION,G6500\nHairdresser,O-65 Salon,Y4000\nLAW PROFESSOR,OHIO STATE UNIVERSITY,H5100\nLAWYER,\"NEWEDGE USA, LLC\",F1100\nEXECUTIVE,COALITION FOR A DRUG FREE,Y4000\nOWNER,ASIA WORLD SUPER MARKET,Y4000\nEXECUTIVE VICE PRESIDENT,BRC RUBBER & PLASTICS INC.,Y4000\nDIGEME CORPORATION,,Y4000\nVICE PRESIDENT DEVELOPMENT,ST. JOSEPH MERCY HOSPITAL,H2100\nINTERNATIONAL DEVELOPER,WORLD BANK,X4200\nAttorney,Gonzalez & Associates Law Firm Ltd,K1000\nCOMP SOFTW CONTRACT,,Y4000\nOFFICE MANAGER,VISION CONSTRUCTION,J1200\nPresident,\"Blaylock Robert Van, LLC\",Y4000\nCHAIRMAN / CEO,REDD REALTY SERVICES/CHAIRMAN / CEO,F4200\nADVERTISING SPECIALITY INSTIT,,J5100\nCHIEF EXECUTIVE OFFICER,GENESYS HEALTH SYSTEM,H0000\nCEO,Emcare Inc.,Y4000\nCHAIRMAN OF,BERRY INVESTMENTS INC.,M3600\nSAME,,Y0000\nPresident/ Owner,Lerner et Cie,J7400\nREALTORS ASSN OF N M,,F4200\nGRADUATE,TARLETON STATE UNIVERSITY,H5100\nSales Consultant,International Horizons Ltd.,Y4000\nFundraising Consultant,Tippingsprung Cause,Y4000\n\"CAMPBELL'S SOUP\",,G2100\nExec Dir,American Academy of Orthotists & Prost,H1130\nArchitect,Meis Architects,B4200\nOwner,D And B Cycles,Y4000\nCHIEF INFORMATION O,CITY OF DETROIT,X3000\nP,INLAND PAPERBOARD & PACKAGING INC,M7100\nInvestor,Matlin Patterson,Y4000\nSTATE CONSERVATIONIST,USDA,X3000\nPhysician,Oklahoma Oncology,H1130\nPRESIDENT,\"JMB TRADING CORP., BARRINGTON, IL\",F2200\nCUMMINS UTILITY SUPPLY,,Y4000\nVice President,Zurich Financial Services,F3000\nChairman,Pyramid Companies,F4100\nREALTOR,MADDOX & CO. REALTORS/REALTOR,F4200\nOWNER,\"E.M. RIVERA & SONS, INC.\",Y4000\nCHIEF OPERATING OFFICER,ONLIFE HEALTH,F3200\nOILFIELD WORKER,PATTERSON UTI DRG,Y4000\nAttorney,nixon peabody,K1000\nLawyer,Cox Smith Matthews Inc,K1200\nLawyer,Euronet Worldwide In,Y4000\nEXECUTIVE,GOLDEN RULE INSURANCE,F3100\nSociologist,Iowa St Univ,J1200\nIMPORT DIRECTOR,\"REISS WHOLESALE HARDWARE CO., INC./\",Y4000\nCEO,WHAT I LIKE INC.,Y4000\nCOO,INSULET CORPORATION,H4200\nSVP AND ASSOCIATE GENERAL COUNSEL,\"INTERCONTINENTALEXCHANGE, INC.\",F2400\nMANAGER,MACOT REALTY TRUST,Z9500\nPRESIDENT,,G4600\nInsurance Agent,White River Insurance Agency,F3100\nENGINEER,SOUND TRANSIT,T5000\nWALKER & COMPANY,,F3100\nSENIOR ECECUTIVE,WELLCARE,F3200\nPHYSICIA,PHYSICIANS ASSOCIATES INC.,H1100\n\"REUBEN, QUINT, & VALKEVICH\",,K1000\nCONSTRUCTION MA,\"DOWNEY & SCOTT, LLC\",Y4000\nCUMMINS CUMBERLAND INC,,LM100\nGENERAL MANAGER,READING PHILLIES BASEBALL,Y4000\nUS customs compliance specialist,reebok international,M3200\nCAMP BARSH BATES TATE,,K1000\nEXECUTIVE DIRECTOR,PAULS FOUNDATION,J7300\nAircraft Executive,\"Air Tractor, Inc\",T1200\nEXECUTIVE,CYALUME SPECIALTY PRODUCTS,Y4000\nDIRECTOR,G.K.C. CHAMBER OF COMMERCE,G1100\nSALES,BROWNSTRAW ELECTRIC,B3200\nAssociate,BAH,Y4000\nOwner,Krishna Jewlers,G4600\nEXECUTIVE,CAPE FEAR COMMERCIAL,Y4000\nEXECUTIVE,SILVER DOLLAR CITY INC.,J1100\nLaw Professor,University of Cincinnati,H5100\nGarbage pickup (Upper Valley Disposal),Self employed,E3000\nCOUNTY JUD,YAZOO COUNTY MISSISSIPPI,Y4000\nReal Estate Executive,Alagem Capital Group,F7000\nBOSTON TECHNOLOGY,,Y4000\nCONTRACTOR,C&L REFRIGERATION,JE300\nBaker,Hostess Brands Inc,Y4000\nSE & M CONTRACTORS,,Y4000\nRNC NATIONAL COMMITTEE MEMBER,SELF-EMPLOYED/RNC NATIONAL COMMITTE,Y4000\nAttorney,plunkett & cooney pc,K1000\nCHEVRON OIL & GAS COMPANY,,J1100\nINSURANCE,HARDAKER INSURANCE SERVICES,F3100\nField Land Manager,Williams,Y4000\nFRANCO REALITY,,Y4000\nSUTTER HEALTH/PRESIDENT/CEO,,H2100\nFARM CREDIT COUNCIL,,A4000\nHELICOMB INT,,Y4000\nHUGHES MEMORIAL CEMETARY,,G5400\nMARDINI INC,,C5130\nJW CHILDS & ASSOC,,J2200\nProfessor,Northwestern Tech,Y4000\nPASSENGER SERVICE AGENT,AIR WISCONSIN AIRLINES CORPORATION,T1100\nMANAGING DIRECT,THOMAS H. LEE & CO.,Z9500\nBLANK ROME COMISKY & MC,,J7150\nATTORNEY,SELF EMPLOYED,G5200\nMO Board Member,Western Water Consultants Inc. dba WWC,B4000\nPRES,ADAMS STEEL,M2400\nPHYSICIAN,CFG,H1100\nSALES/BUSINESS OWNER,BALCON ENTERPRISES INC.,Y4000\nBULLARD FURNITURE,,M4100\nVASCULAR SURGEON,ANCHOR HEALTH CENTERS,H1130\nMANAGEMENT,COPART INC.,T2300\nElectronics technician,Verizon Communications,C4100\nPRESIDENT & CHAIRMAN,BURK ROYALTY COMPANY/PRESIDENT & CH,E1120\nSECRETARY,SLOPE ELECTRIC CO-OP INC.,E1610\nUT HEALTH SCIENCE CENTER,,H0000\nVICE CHAIR,CHICAGO METROPOLIS 2020/VICE CHAIR,J9000\nMARKETING,ERIC FRENCHMAN LLC,Y4000\nPOLICY ADVISOR,BROWNSTEIN HYATT,K1000\nSYSTEM ANALYST,,F3300\nN/A,117 Portland Ave. #702,J7400\n\"O'NEILL\",MCDERMOTT,K2000\nSVP-TAXES,MAY CORPORATE DIVISION,G4300\nVP FOR P,ENVIRONMENTAL DEFENSE FUND,Y4000\nST RAYMONDS SCHOOL FOR BOYS,,X3500\nMERCHANT,PATILLAS LUMBER YARD,B5200\nASSOCIAT,\"HARVILL & ASSOCIATES, P.C.\",Y4000\nOWNER,PS. HEIBER INC.,Y4000\nLGP,,Y4000\nMEDICAL DOCTOR,UNIVERSITY OF NEBRASKA MEDICAL CENTER,H1130\nLAND TRUST PRESIDENT,FEATHER RIVER LAND TRUST,Y4000\nEXECUTIVE/PROFESSIONAL,F.I.S.,C5130\nChief Executive Offi,Illinois Association of Realtors,G0000\nPHYSICIAN,MONTEFIORE MEDICAL CENTER,J1200\nFARMER,TWO B UNLIMITED,A1400\nRANCHER FARMER OIL,SELF EMPLOYED,A3000\nVP,EWA Government Systems Inc.,D3000\n\"Director, ADM Board\",Archer Daniels Midland,A4300\n\"PERMIT ME, INC.\",RETIRED,J7400\nOwner,Asahi Grill,G2900\nAttorney,\"M. Mark Mendel, Ltd.\",K1100\nMCDONALD-CARANO-WILSON,,Y4000\nOwner,Mattlin Special Co,Y4000\nROLLS ROYCE MOTOR CARS INC,,T1300\nPresident,Nagamine Okawa Engineers Inc,B4400\nINFO REQUESTED,DALLAS EYE CARE ASSOC.,Y4000\nEXECUTIVE BENEFITS CONSULTANT,\"FUTCRUM PARTNERS, LLC\",Y4000\nCEO,Townsend Analytics LTD,Y4000\nExcutive Director,Nc Um Camp Retreat,Y4000\nMANAGEMENT,LSI,Y4000\nChairman Emeritus,Trammel Crow Company,F4500\nConstruction,Keystone Construction,B1500\nComputer Repair Shop Owner,Self employed,G0000\nALASKA INTERSTATE CONSTRUCTION INC,,B1000\nFRANCHISE SALES,SELF-EMPLOYED,G0000\nVP & Sr. Counsel,Capital Research and Management Compan,F2100\nCERT. FIN PL,CORNERSTONE FIN STRAT.,Y4000\n\"MODEL MAKER, BUISNESS OWNER\",\"JURMAN METRICS, INC.\",J1100\nCEO,RWJ Univ Hospital-Hamilton,JH100\nATTORNEY,POWELL GOLDSTEIN ET AL.,K2000\nTRUPP HODNETT ENTERPRI,,F4000\nCommercial Real Estate,SELF-EMPLOYED,F4200\nBUSINESS OWNER,\"HAAR CAPITAL MANAGEMENT, L.L.C.\",F2100\nTeacher,University of Tennessee,J1200\nMCDERMOTT WILL EMERY,,K2100\nSTUDENT-HOMEMAKER,,Y1000\nWPSD-TV,,C2100\nREALTOR,MACKINTOSH INC REALTORS,F4200\nCOAL MARKETING,SELF EMPLOYED,E1210\nVICE PRESID,UNION FIRST MARKET BANK,F1100\nADVANCED PRINTING,,C1300\nPRESIDENT,REPUBLICANS FOR ENVIRONMENTAL PROTECTI,JE300\nENERCO GROUP INC./CHAIRMAN/CEO,,Y4000\nSenior Vice President & Treasurer,National Farm Life Insurance,F3300\nPresident/C.E.O.,\"Administaff, Inc.\",G5250\nReal Estate Development and Management,Belgarde Property Services,F4000\nCONS,PUBLIC AFFAIRS ASSOCIATES INC.,K2000\nInternet Manager,Self-Employed,C5140\nINVESTMENT,GREENBRIAR EQUITY GROUP,F2100\n\"VP, LEGAL OPERATIONS\",COX COMMUNICATIONS,C2200\nENGINEER,EPA,Y4000\nDEALER,\"O'MALLEY CADILLAC HONDA/DEALER\",T2300\nemeritus professor,Southwestern College,H5100\nPRESIDENT,P&G BROKERAGE INC,Y4000\nGALL CITY SCHOOLS,,X3500\nCHAIRMAN AND CEO,SABAN ENTERTAINMENT/CHAIRMAN AND CE,C2300\nREAL ESTATE,SIMON PROPERTIES,F4100\nLAZER APTHEKER,,K1000\nBanking,Credit Suisse/First Boston,F2100\nJ W FERGUSSON AND SONS,,Y4000\nPRESIDENT,G & G COMMERCIAL SYSTEM INC.,G1200\nSENIOR ADVISOR,SUNCOKE ENERGY/SENIOR ADVISOR,E1000\nWriter/Editor/Publisher,Self employed,C1100\nATTORNEY,DWYER CAMBRE,K1000\nPNC BANK NJ,,F1100\nOWNER,CER APPRAISERS,F4700\nAttorney,Leroch Coughlin,K1100\nJEWELS OF G DARRELL OLSON,,G4600\nBUSINESS OWNER,BLAZE MOBILE,Z9500\nLANCASTER SURGICAL CENTER,,H1130\nScientist,Sylint,Y4000\nMortgage Bankers,Lenders One,Y4000\nSystems Analyst,Information Dynamics Inc,Y4000\nINFORMATION SECUR,OPPENHEIMER FUNDS,F2100\nGENERAL DATACOMM,,Y4000\nREYNOLDS,,Y4000\ncomputer scientist,oracle,Z9500\nAT,LOCKRIDGE BRINDAL NAUER P.L.L.P.,K1000\nsemi-retired-geologi,self,G0000\nClinical Psychology,Self,G0000\nAttorney,Northeast Government Consulting LLC,Y4000\nDIRECTOR,LAS VEGAS SANDS CORP,H1100\nPRESIDENT,WSJM,Y4000\nPresident,ITEX Corp,Y4000\nCEO,PROPERTY INTERNATIONAL CORP.,Y4000\nPartner,A-T Group Inc,Y4000\nSENIOR FINANCE M,ORACLE CORPORATION,C5120\nPRESIDENT,HUMBOLDT CREAMERY,Y4000\nWE,,E1620\nOWNER,FIRST ELECTRIC MOTOR SERVICE,Y4000\nNEBRASKA ORTHOPAEDIC AND SPORTS MED,,H1130\nFINANCIAL ADVISOR,INTEGRATED WEALTH SOLUTIONS,Y4000\nPresident,Classic Designs,Y4000\nLOBBYIST,WALMART,Z9500\nVP,HOME TELEPHONE CO.,C4100\nRETIRED TRUCK DRIVER,,X1200\nOWNER,PEERY INVESTMENTS,Y4000\nHOMEMAKER,INFORMATION REQUESTED,C1100\nPresident,Thomas E Javery MD,H1100\nATTORNEY,LOEFFLER TUGGEY PAUERSTEIN ROSENTHAL,K2000\nBUSINESSMAN,1-800-CONTACTS,H3300\nCENLAR-CENTRAL LOAN ADMINISTR,,F4600\nMANAGER,WINROCK INTERNATIONAL,X4000\nSTELLAR GROUP CP,WINDERMERE,F4200\nROGERS BROTHERS CORP./PRESIDENT/OWN,,Y4000\nManager,Alacare Home Health & Hospice,H3100\nOUTPATIENT ADOLESCENT CLINICIAN,HENRICO AREA MENTAL HEALTH & DEVELO,Y4000\nVice President,Rab  Inc,J1100\nDBA,ANADARKO,E1120\nELECTRIC CITY CORPORATION,,B3200\nWRITER,,J7600\nO R S A,,Y4000\nAssociate,The Symington Group,Y4000\nCLINICAL CARDIOLOGY/GENERAL CARDIOLOGY,CENTRO CARDIOVASCULAR DE ARECIBO,H1100\nLLC,DVSM,Y4000\nInsurance,\"McGriff, Seibels & Williams, Inc.\",F3100\nEconomist,Council On Foreign Relations,J5000\nPRESIDENT,REPLICA GLOBAL,Y4000\nReal Estate Owner/Manager,SELF-EMPLOYED,F4000\nPRESIDENT,\"WALKER'S MARATHON\",G1200\nHuman Resources Manager,Kohls Department Store,G4300\nLAWYER,SKUDDEN ARPS,K1200\nReal Estate Broker,Windermere Pacific Northwest,J1200\nPresident,Linhart Petersen Powers Assoc.,G1200\nMARINE LOGISTICS,\"C-LOG MARINE, LLC\",J1100\nEXECUTIVE,TURF VALLEY COUNTRY CLUB,G6100\nFOUNDER,ENERGY MANAGEMENT INC.,E1000\nProfessor,St of Connecticut,Y4000\nPRESIDENT,\"BUSCH PRECISION, INC.\",Y4000\nOWNER,ALARM CENTER,Y4000\nCUTLER,LOUME,K1000\nPartner,\"Jenkins' Mgmt. Ltd.\",Y4000\nGreenskeeper,City Of Grand Rapids,J1200\nCertified Public Accountant,\"Wilmer, Cutler & Pickering\",K1000\nPRESIDENT,GEORGIA CORE,Y4000\nBEER WHOLESALER,CITY BEVERAGES,G2850\nINVESTMENT,SPRING CAPITAL PARTNERS,F2500\nBUSINESS OWNER,\"CRIKAT17, INC.\",Y4000\nSECRETARY,ST. STANISLAVS CHURCH,X7000\nLAWYER,AKINGUMP STRAUSS,K1000\nASSOCIATE DIRECTOR,NYU/ASSOCIATE DIRECTOR,H5100\nEXECUTIVE,FAIRMONT HOMES/EXECUTIVE,B2400\nSELF,,E1150\nBAHER & HOSTETLEAUP,,Y4000\nCOMMUNICATIO,WASHINGTON MEDIA GROUP,Y4000\n\"Sustainable Alternatives, LLC\",,Y4000\nPROFESSOR OF PHYSICS,DEPAUW UNIVERSITY,H5100\nDir of Sales & Clien,Chicago Equity Partners,F2100\n\"VP, WWW DEVELOPMENT & SERVICE\",AMAZON.COM HOLDINGS INC.,C5140\nSVP - CMO,HAP,F3200\nFARMER,CENTRAL WAREHOUSE,Y4000\nSOFTWARE QA ANALYST,BUSINESS SOFTWARE  INC,C5120\nCENTRAL ARIZONA IRRIGATION & DRAINAGE,GENERAL MANAGER,G0000\nENGINEER,URS GREINER INC.,B4000\nHEALTHCARE FOUNDATION OF NORTHERN L,,Y4000\nBiotechnology,Dyadic International,Z9500\nWELL MILL REHAB AGENCY INC,,Y4000\nInvestments,Rockerfeller & Co.,Y4000\n\"VP, Development & Construction (Real e\",Fort Lincoln New Town Corp 3298 Fort,Y4000\nEXECUTIVE,RUBENSTEIN ASSOCIATES,G5210\nATTORNEY,AT&T SERVICES INC.,Y4000\nPresident,National Soft Drink Assoc.,G2600\nOPTHALMOLOGIST,GEORGIA EYE CLINIC,Y4000\nPRESIDENT/OWNER,HODGES COLLISION,Y4000\nINFO REQUESTED,S & L PROPERTIES LLC,F4000\nAttorney,\"Fizpatrick, Hagood, Smith, &\",Y4000\nFINANCIAL PROFESSIONAL,FINANCIAL WEST GROUP,F0000\nEXECUTIVE,BLAINE CONSTRUCTION,B1500\nFinancial Advisor,Stanford Group Company,F2000\nHARTE-HANKS INC,,C1100\nAEA INVESTORS INC,,J7400\nPRIVATE INVESTOR,,G5270\nGOVT. AFFAIRS,BOEHRINGER INGELHEIM,H4300\nOFFICE SUPPLY COMPANY,SELF,G4600\nPRESIDENT,ARIENS CO.,M4000\nFILTER SPECIALISTS INC,,Y4000\nNEW HAVEN SCHOOL,,H5000\nExecutive,General Tools & Instruments,Y4000\nPHYSICIA,PRESYBERTIAN HEALTH SYSTEM,Y4000\nAttorney,Mandel Norwood & Grant,K1000\nAttorney,Cascadia Law Group PLLC,K1000\nOFFICE MANAGER,MS&M SALES,Y4000\nINSURANCE,SYNAXIS GROUP INC.,F3100\nart Advisor,Self employed,G0000\nSOFTWARE DEVELOPER,NEPTUNE,Y4000\nCOURT CLERK,RETIRED,X1200\nINFO REQUESTED,Cardiologists Of Lubbock,H1130\nSATELLITE NETWORK SYSTEMS,,Y4000\nAgency Director,City and COunty of Honolulu,X3000\nPHILADELPHIA COCA-COLA,,G2700\nFURNITURE,\"BATTE FURNITURE CO., INC.\",Y4000\nPRINTING,PUBLISHING,T1400\nC.P.A.,INFORMATION REQUESTED PER BEST EFFORTS,F5100\nPresident,Interconsult LLC,Y4000\nCONNECTICUT FACTORS,,F4000\nSENIOR VICE,HORIZON BCBS NEW JERSEY,F3200\nSR. VICE PRES,SENECA RESOURCES CORP,E1140\nORTHOPAEDIC S,WASHINGTON UNIVERSITY,H5100\nExecutive,NFWL,Y4000\nFISERV/IPS - SENDER/SOFTWARE SUPPOR,,J7120\nINVESTMENTS,SELF,J1200\nPRESIDENT,IKN INC.,Y4000\nPresident,\"Belleville Shoe South, Inc.\",Y4000\n\"SENATOR, SALES\",STATE OF INDIANA,X3000\nChief Executive Offi,Monadnock Community Hospital,H2100\nLEAD ACCT. EXECUTIVE,KEYSPAN,E1620\nAttorney,Robinson and Scwabb,Y4000\nattorney,self-employed/retired,J7400\nPRINCIPAL,FAIRVIEW INSURANCE AGENCY,F3100\nDir Ad Sales,Comcast (CC) of Willow Grove,C2200\nGAS BUYER,PHILADELPHIA GAS WORKS,E1100\nPR,OGILVY,Y4000\nENGINE,WARREN MANUFACTURING COMPANY,Y4000\nPRESIDENT,COIL SPECIALTY CHEMICALS,Y4000\nJP MECHANICAL CORP,,Y4000\nAttorney,Ratzan & Alters,K1100\nhealthcare,National Renal Alliance,Y4000\nconsultant,Connolly Strategies & Initiatives,Y4000\nCAPTAIN,FEDERAL EXPRESS,T7100\nPB SULLIVAN CO,,F2100\nCHAIRMAND & CEO,RIVERVIEW COMMUNITY BANK,F1100\nOwner,Colorado Auto Finders,Y4000\nAttorney,Pomerantz,Y4000\nOWNER,LIVE WELL INTERNATIONAL,Y4000\nI.T. DIRECTOR,WALBRIDGE ALDINGER,B1000\nVice President,Rolls-Royce Fuel Cell Systems,Y4000\nExecutive,The Barrrett Group,Y4000\nATTORNEY,JACKSON LEWIS LLC,K2000\nOil Industry Consultant,Frear Consulting Inc,Y4000\n\"VP, Workforce Stgy &  Dvlp\",Xcel Energy,E1620\nTOLLMAN-HENDLEY HOTELS,,T9100\nAttorney,\"Ryan, Phillips, Utrecht &  MacKinnon\",Z9500\nManaging Director,Rothschild,F2300\nCENTRAL GEORGIA EMC,,Y4000\nMACROVISION INC,,C4600\nMANAGING,\"THE LIVINGSTON GROUP, LLC\",K2000\nAttorney,Osborne Maledon,Y4000\nKEY CADILLAC INC,,T2300\nFITNESS EXPERT AND ENTREPRENEUR,THE CORE CONNECTION LLC,Y4000\nAPARTMENT MANAGEMENT,AMBER PROPERTIES COMPANY,F4000\nPres,DYS,Y4000\nAttorney,\"EFP, Inc\",J1200\nStudent,Harvard Law School,H5170\nHERRIN-GEAR CHEVROLET,,T2300\nGROUP OF THIRTY,,G5200\nSELF-EMPLOYED,HOC,Y4000\nGeriatric Psychiatri,Mercy Fitzgerald Hospital,H1100\nCAPTA,\"ESSEX COUNTY SHERRIF'S OFFICE\",Y4000\nChairman,Skyler Technology Inc.,Y4000\nIT MANAGER,JAKO ENTERPRISE,Y4000\nCEO,Kennametal Inc.,M5100\nTeacher,Redondo Beach Unified School District,X3500\nM.D.,UNIV OF CINCINNATI COLLEGE OF MEDICINE,H5100\nRealtor,Preston Carlton Real Estate Se,F4000\nAnalyst,Duty Free American,J1200\nLaboratory Fellow,Los Alamos National Lab,X3000\nVP OPERATIONS,THE KIDZ CLUB,G5000\n\"VICE PRESIDENT, DIRECTOR\",JP MORGAN CHASE & CO.,F2100\nManager,Borough Of Kennet Sq,Y4000\nMEDIATOR/ARBITRATOR,SELF,G5200\nMorgage Banker,\"Coast Cities Financial, Inc.\",F0000\nSelf Employed,\"Energywise Construction, LLC\",B1500\nFRIEDMAN DRIEGERT & HSUEH LLC,,J1100\nBRISCOE DRILLING,,E1150\nOwner,Tipton Linen Co.,G2900\nINSUREANCE BROKER,\"THE FRIEND INS AGENCY, INC\",Z9500\nWEALTH ADVISOR,NORTHWESTERN MUTUAL,F3100\nChief Deputy Mayor,City of Indianapolis,X3000\nFOUNDING PARTNER,\"THE CORMAC GROUP, LLP\",K2000\nPhysician,Cape Few Regional Urologic Clinic,H1130\nPERSONAL INVESTMENTS,SELF,J1100\nPOLITICAL ANALYST,,J7150\nCEO,DEERHORN AVIATION,E1120\nLEYDON RESTORATION,,Y4000\nEXECUTIVE,JK PETROLEUM,Y4000\n\"DAVENPORT, EVANS, HURWIT\",,K1000\nPREVIOUS RECRUITING MANAGER FOR HAYNES,RETIRED,X1200\nBUSINESSMAN,SELF- EMPLOYED,T7200\nHEALTH EDUCATOR,,H1000\nAdvertising Producer,Trailer Park,F4400\nDOSIMETRIST,BASSETT HOSPITAL,Z9500\nNORWEGIAN DRYWALL AMERICA,,B3000\nPRESIDENT,\"FIBER MILLS MANAGER, LLC\",Y4000\nExecutive,Culby Group,J1200\nNON- PROFIT EXEC,1 CLIP AT A TIME,Z9500\nSYSTEMS ANALYST,WELLS FARGO,F1100\nCLU CHTD FINAN CNS,,F3300\nCHARTER MFG CO,,M0000\nHome Manager,N/A,F2300\nVice President  Field Human Resources,Cox Communications,C2200\nVICE PRESIDENT,RULIN CO,Y4000\nOWNER,DE VEG MGMT GROUP,Y4000\nKOEPPEL VOLKSWAGEN,,Y4000\nROCK ROAD COMPANY INC,,Y4000\nSELF,REAL ESTATE BROKER,Z9500\nMARTIN SUPPLY CO INC,,Y4000\nStudent,Marquette University,H5100\nFITCH PUBLIC AFFAIRS,,Y4000\nHomebuilder,Ideal Homes,B2000\nEXECUTIVE,ARAXID,Y4000\nRUSSELL BUSINESS FORMS,,Y4000\nCONTRACTS COORDINATOR,DOMINION NUCLEAR CT. INC.,Y4000\nOWNER,LANDSCAPE MANAGEMENT CO/OWNER,B3600\nInterior Designer/Owner,THE DESIGN SOURCE,Y4000\nPRESIDENT,HARROP INDUSTRIES INC.,Y4000\nENGINEER,CPLANE INC,T1400\nBMG MUSIC PUB,,C2600\nREAL ESTATE,CHILDRESS KLEIN PROP,F4100\nOWNER,FALLBROOK COMMUNICATIONS,Y4000\nCOOPER CONSTRUCTION,,B1500\nAdministrator,Peace Corps,X3000\nNJ/NY - LEE/NOLAN #143 AGENCY/AGENT,,Y4000\nOffice Coordinator,Oakland Co Dem Party,J1200\nROBERT A MENDELSOHN & ASSOCIATES,,F4100\nINSURANCE,BAGATTA ASSOCIATES,Y4000\n\"NOTTINGHAM, BREAK & PENNINGTON\",,Y4000\nPresident And Ceo,Peoples Emergency Center,J1100\nCOACH,PHOENIX SUNS,G6400\nINV. ADVISOR,SELF,G0000\nTHE RAINBOW SCHOOL FOR CHILD DEVELO,,H1700\nELECTRICAL ENGI,CORPORATE RESOURCES,Y4000\nManager,Fresh Express,J1200\nDANBURY RADIOLOGICAL ASSOCIATES P.C,,H1130\nATTORNEY,ROBBIE COLWELL PC,Y4000\nSTOCK TRADER,PAX CLEARING,J5100\nAttorney,us Government,J1200\nTRIBROOK,,G5270\nPRESIDENT,KORTE AND LUITJOHAN CONTRACTORS INC,Y4000\nFINANCIAL AGENT SERVICES,,Y4000\nRegional Director,UWVA - Utility Works Union,Y4000\n\"MADISON, DEARBORN & PARTNER\",,F2600\nINSIGNIA FINANCIAL GROUP INC.,,F4500\nProperty Development,Miles Property LLC,F4000\nSCOTT SHUPTRINE,,G4400\nPartner,\"Olsson, Frank & Weeda\",K2000\nPLATEAU GMAC REAL ESTATE,,F4000\nVICE PRESIDENT,,B4000\nAstrophysicist,University of Chicago,Z9500\nINSURANCE A,THE THOMPSON GROUP INC.,F3100\nPRESID,\"BROOKS, TORREY, & SCOTT INC.\",J1100\nAPPEALS AUDITOR,,Y4000\nORAL S,RICHMOND ORAL SURGERY ASSOC.,H1400\nPHYSICIAN,OWNER - MEDICAL OFFICE,H0000\n\"TRIANGLE ORTHOPAEDIC ASSOCIATES, PA\",,H1100\nDirector,Pearlstine Distributors Inc,G2850\nPhysician,Orthopaedic Consultants,H1000\nPRESIDENT,MERUELO GROUP,Y4000\nCHAIRMAN,BUSINESS PUBLICATION CORP.,C1100\nSOCIETY OF CARDIOVASCULAR AND INTER,,G0000\nSEAWRIGHT FACE INC,,Y4000\nINVESTMENTS,APEX ASSET MANAGEMENT,F2100\nAttorney,Arco Capt Research,Y4000\nACCOUNTS ADJUSTMENT BUREAU OF VENTU,,F5200\nFinancial Advisor,THE AYCO COMPANY,F2100\nOwner,T & R Farms,A1000\nENGINEER,AGATE PETROLEUM INC.,E1100\nCorporate Executive,Jonathan Lewis Ass.,G5270\nADMINISTRATOR,\"GREINES MARTIN STEIN & RICHLAND, LLP\",Y4000\nCEO/PRESIDENT,CHARTER HOLDINGS,F4000\nInsurance Sales/partner,Kent & Kent,F3100\nCLEAR LAKE BANK & TRUST CO,,F1100\nSenior Vice Presiden,Kaiser Permanente Vallejo Medical Cent,H2100\nENGINEER/OWNER,SUPERIOR DRAFTING + ENG,Y4000\nM J NESS CONSTRUCTION CO INC,,B0500\nMANUFACTURING EX,WM R. HALL COMPANY,Y4000\nVENEBLE LP,,Y4000\nRegistered Represent,Principal Financial Group,F0000\nINVESTMENT BANKING,MUTUAL SECURITIES/ SELF-EMPLOYED,F2100\nNE RIGHT TO WORK,,Y4000\nCRITICAL HEALTH SY,ANESTHESIOLOGIST,H1130\nBUDDY ROBERTS SALES CORP,,Y4000\nAttorney,\"Bergner, Bockorny, Clough et al\",K2000\nArtistic Director,Cherry Lane Theater,J6100\nLawyer,American Express Company,J1200\nOWNER,GOURMET INN,T9100\nREALTOR,FIRST CAROLINA REALTORS,F4200\nPRESIDENT,G.C.X. ADVISORS L.L.C.,Y4000\nPRESIDENT,NORTHSTAR PROPERTY MANAGEMENT INC.,F4500\nPRESIDENT,APPLIED ECO LOGIC INC.,Y4000\nVP Operations Cobb V,\"Tyson Foods, Inc.\",G2300\nBOLLING & HILL,,Y4000\nMIDDLE KINGDOM,,Y4000\nMANAGER,INVERTIX CORPORATION,Y4000\nLawyer,Marsswen Amber Ross,K1000\nGREG JORDAN INC,,G5000\nUS SENATE FOREIGN RELATION CMTE,,X3000\nPHYSICIAN,CHATTANOOGA WOMENS SPEC.,H1100\nSPENCER & JONATTI,,Y4000\nOfficer,Color Graphic Printing,C1300\nAIRCRAFT MECHANIC,DEER HORN AVIATION,Y4000\n\"SVP, ARCHITECTURE\",BELMONT VILLAGE SENIOR LIVING,H2200\nPatent Attorney,Loeb  amp; Loeb LLP,K1000\nCOO,CESAR CHAVEZ FOUNDATION,Y4000\nSoftware Developer,Hewitt Associates,G5270\nPRESIDENT,HICKEY FAMILY CORPORATION,F4000\nINVESTMENTS,HEXAGON INVESTMENTS,F0000\nBroker,\"HayFields Realty, Inc.\",Z9500\nPHY,ABINGTON UROLOGICAL SPECIALISTS,H1130\nExec.,Petroleum Sales,E1160\n\"TURVEY'S ON THE GREEN\",,Y4000\nFounder & Managing Partner,Corstone Capital,F2600\nBEDFORD STUYVESAN HEALTH CTR,,H2000\nOWNER,DAN T. MOORE COMPANY,F2500\nAttorney,Levine Sullivan Koch & S,K1000\nChief Executive Officer,\"St. Joseph's Medical Center\",H2100\nMANAGER,INTERMOUNTAIN POWER AGENCY,E1600\nPHYSICIAN,\"H. VINCENT MITZELFELT, MD\",H1100\nPRESIDENT,LRF SLATER CO INC,T1400\nConsultant,Flx Communications,G5200\nVAXA CAPITAL MANAGEMENT,,F2100\nCHAIRMAN & CHIEF EXECUTIVE OFFICER,CHARMER SUNBELT GROUP,G2850\nINDEPENDENT OIL OPER./INVESTOR,SELF,J1100\nTAPEMARK,,X1200\nRetired Ceo Of Metlife,Metlife,F3300\nCEO,Kokosing Contruction Co,B1500\nATTORNEY,\"FAUNCE, SINGER & OATMAN\",K1000\nANESTHESIOLOGIST,UNIVERSITY OF CT,H1130\nBUSINESS CONSULTANT,CARPENTER SMITH CONSULTING,Y4000\n\"BLACK, CROTTY, SIMMS ET AL\",,J1200\nSECOND GENESIS LTD,,Y4000\nPRESIDENT,NEILL CORP,Y4000\nCO OWNER,RED STONE PARTNERS,Y4000\nDLSW ARCHITECTS,,B4200\nPRESIDENT,ZECO ELECTRIC COMPANY,B3200\nACORDIA NORTHEAST,,F1100\nSTEPHAN MACHINERY CORP,,G2100\nURBAN PUBLISHER,,C1100\nVICE PRESIDENT,KLONDYKE INC,Y4000\n\"FOX, ROTHSCHILD, O'BRIEN, ET AL\",,K1000\nDeputy Director,Center for Lesbian & Gay Studies,Y4000\nCOUNTY OF COL,COL MEMORIAL HOSPITAL,H2100\nRetired,N a,Z9500\nINFO REQUESTED,SACKMAN HOMES LLC,B2000\nLINDBURG PHARMACY INC/OWNER/MANAGER,,G4900\nlobbyest,Assoc. of Minnesota Telephone Util,C4100\nFIRST HORIZON NATIONAL CORPORATION,,F1100\nPRESIDENT,EURO-WINDOOR,Y4000\nSenior Vice Presiden,Inova Health System,H2100\nLaw Firm National Manager,Foley & Lardner,K1000\nCHIEF PUBLIC DEFENDER,STATE OF ARKANSAS,X3000\nZUMWALT & ASSOCIATES,,G5270\nATTORNEY,\"COOPER CARGILL CHANT, PA\",K1000\nCHUCK COLVIN FORD,,T2300\nMERRITT-CARE HOSP,,H1710\nExecutive Vice Presi,Erickson Retirement Communities,H2200\nR W FOWLER & ASSOCIATES,,B5300\nEngineer,P G S,Y4000\nFINANCIAL EXECUTIV,DEMATTEO MONNESS,F2100\nPRESIDE,\"CAJUN DEEP FOUNDATIONS, LLC\",B1500\nPHYSICIAN,SUTTER DELTA MEDICAL CENTER,Y4000\nSPEECHWRITER,SELF,Y4000\nDIRECTOR OF KALASHRI SCHOOL OF ART,SELF EMPLOYED,Y4000\nPRESIDENT BINGHAM,TIME WARNER CABLE,C2000\nInvestments,Philip Gaskin,Y4000\nWHITEHALL FINANCIAL GROUP,,F0000\nDIRECTOR,ABSOLUTE ENERGY,E1500\nOwner,Richman Trucking,T3100\nGOVERNMENT AFFAIRS,JOHNSTON & ASSOCIATES,K2000\nPhysicion,Mayo Clinic,J1200\nVP,HAMILTON CONSTRUCTION CO,B1000\nAttorney,Funding Exchange,Z9500\nWQOW,,C2100\nANALYST,RENTEE,Y4000\nOPTOMOTHRIST,\"DRS. COHN, REINIGER PC\",Y4000\nCOMMERCIAL FRAMING CONTRACTOR,LAKAMP CONSTRUCTION INC,B1500\nExecutive,Georgia Crown Dist. Company,G2850\nCEO,POTOMAC COUNSEL LLC,K2000\nLEXIS NEXIS,,C5130\nNED R HEALY & CO,,Y4000\nADMINISTRATIVE ASSIS,SHADES MOUNTAIN BAPTIST CHURCH,X7000\nOWNER,JAY PACKAGING,Y4000\nAREA MANAG,ZACHRY CONSTRUCTION CORP,B1000\nLegal Administrative Assistant,Wells Fargo Bank,F1100\nPUBLIC AFFAIRS ADVOCATE,SELF-EMPLOYED,Y4000\nF M YOUNG CONTRACTORS INC,,B1000\nBUSINESSMAN,,G5200\nBOLLINGBROOK GROUP,,F4100\nPartner,\"Fidelity Insurance, LLC\",F3100\nSRS FARMS,,A1200\nPresident and CEO,\"Medica Healthcare Plans, Inc\",H0000\nBusiness Owner,OTSP,Y4000\nEXECUTIVE DIR.,ALFRED P. SLOAN FDN.,X4000\nRANCHER,SCHULTE RANCHES,Y4000\nBUSINESS MANAGEMENT,SKULL CANDY,Y4000\nSR. VICE PRES.,THE WASHINGTON GROUP,K2000\nGLOBAL N,UNITED PARCEL SERVICE INC.,T7100\nLawyer,Jones & Mayer,K1000\nOWNER,ALLENS OIL CO,Y4000\nPRESIDENT,KYO-YA COMPANY,T9100\nInformation Requeste,Security National Bank,F1100\nLAKE HADWARE,,Y4000\nPRESIDENT/ OWNER,\"LET'S DO LINENS INC.\",Y4000\nPARTNER,ST. JUDE IMPROVEMENT,Y4000\nClerical,L&T Investments,F4000\nOwner,Warthen Buick,J1100\nPRESIDENT,MARTINS SUPER MARKETS,G2400\nAttorney,Dilworth Paxson LLP,K1000\nTemple Isarael,,X7000\nIANELLA & MUMMOLO,,Y4000\nPHYSICIAN,KAA,H1130\nPhysician,VA med Center,H1100\nREC. FISHERMAN,REPUBLIC INDUSTRIES,Y4000\nBartender,Dragonfish,Y4000\n\"Dir., Internal Commu\",Brown-Forman Corporation,G2820\nCHAIRMAN,ROSNER AUTO GROUP,Y4000\nBusiness Management Consultant and Law,Abercrombie Consulting,Y4000\nSALES EXECUTIVE,FIRST AMERICAN TITLE INSURANCE COMPANY,F4300\n\"MILLER, JAMES, MILLER, WYLY & HORNS\",,K1000\nREGISTER OF DEEDS,KENOSHA COUNTY,X3000\nREAL,TISHMAN REALTY & CONSTRUCTION,B4000\nCHILD SUPPORT SPECIALIST,COUNTY OF KENOSHA/CHILD SUPPORT SPE,X3000\nMERCY HOSPITAL OF FAIRFIELD,,H1100\nloan officer,self,J1200\nCHAIRMAN,RADNEY MANAGEMENT,Y4000\nPAYROLL SUPER,CHICKASAW ENTERPRISES,G6550\nPRESIDENT,GUESSOUS HOLDING INC.,Y4000\n\"RIDDELL, WILLIAMS, ET AL\",,J1200\nPRESIDENT,GARAVENTA ENTERPRISES,F4000\nBUSINESS OWNER,\"SUN-TECH SERVICES, INC.\",Y4000\nSELF EMPLOYED,SILVER TRIDENT INTERNATIONAL,Y4000\nPRESIDENT,Z-CORP CONSTRUCTION,B1500\nINFORMATION REQUESTED PER BEST EFFORTS,INFORMATION REQUESTED PER BEST EFFORTS,H3000\nAnalyst,\"Arbor Research & Trading, Inc\",Y4000\nMAIN STREET FASHIONS INC,,M3100\nHOMEMAKE,HOMEMAKER,Y1000\nPARTNER,FRANKLIN LOGGING,Y0000\nFINANCE EXEC,HUMANA INC,H3700\nCONSULTANT,WILLOW CREEK CONSULTING,Y4000\nCHARFOOS & CHRISTINESEN,,Y4000\nGENERAL CONTRACTOR,SELF,E4200\nLARROL SUPPLY,,Y4000\nEmergency Physician,Jupiter Med Ctr,H1100\nEXECUTIVE,USS,Y4000\nDevelopment Company,\"NBM Development, LLC\",Y4000\nMERCHANT,CONNORS DAMESHEK FONG & MANCUSO INC,Y4000\nAnalyst,UC Berkeley,J1200\nEXECUTIVE DIRECTOR,\"ALIGHT, INC.\",Y4000\nOwner,Medical Equipment,H4100\nEducator,Wested,Y4000\nLawyer,First Rockford Group,F4000\nWEISMAN ASSOC,,Y4000\nDIRECTOR,CITY OF CHICAGO,X3000\nOwner/ranch,Creamer Ranch,A3000\nCEO,ARISTA HEALTH CARE SERVICES,Y4000\nOwner,Law Office Of Victoria L. Penley,K1000\nGOVERNMENT AFFAIRS,\"RIKIN, LIVINGSTON, LEVITAN & SILVER, L\",K2000\nMUSICIAN,\"SAGEARTS/MARLEY'S GHOST\",Z9500\nJAMES T JOHNSON & COMPANY,,Y4000\nBEDNER CO,HIRSCH,G5000\nBD MEMBER NON-PROFITS,,J7400\nPresident,K R Commercial Interiors,Y4000\nREAL ESTATE,BOSTON LAND DEVELOPER,F4100\nADMINISTRATION,UNIVERSITY OF SOUTHERN CALIFORNIA,H5100\nVICE P,COMPREHENSIVE GOVT RELATIONS,K2000\nOWNER,MR. HANDYMAN,Y4000\nCEO,Annenberg Ctr. for Health Sciences,Y4000\nVP,SOURCE CAPITAL GROUP INC.,Y4000\nPRESIDENT,WILLIS ALLEN REAL ESTATE,F4200\nPRODUCT MANAGER,BIO-RAD LABORATORIES/PRODUCT MANAGE,Y4000\nSELF,INFO REQUESTED,T9300\nChairman,National Distributing Company,G2850\n\"Medical Doctor, Obstetrician-Gynecolog\",\"George D Hilliard, MD, PA\",H1100\nVice President & Gen,Pacific Steel Casting,M2100\nIN DEPTH ENVIRONMENTAL,,Y4000\nConsultant,Kilroy for Congress,Z9500\nVICE PRESIDENT,KODAK COMPANY,M9200\nHYDROGEOLOGIS,\"DISPOSAL SAFETY, INC.\",E3000\nProfessor,DeVry Uniiversity retired,Y4000\nboard of director,Alliant Techsystems,D8000\nOPTHAMOLOGIST,SELF EMPLOYED,H1120\nCEO,C8 MEDISENSORS INC.,H4100\nWYSONG MEMORIAL HOSPITAL,,H1100\nAttorney,\"Krieg, DeVault, Alexander & Ca\",K1000\nOffice Worker,Sovereign Bank,J1200\nCEO,CARDON OUTREACH,Z9500\nROUTING CONTRACTOR,E.F. DOUGLAS,Y4000\nCALDWELL-SPARTIN,,C5100\nDISCUSS DENTAL,,H1400\nCASCO,,Y4000\nPRESIDENT,KELLER & KIRKPATRICK,B4400\nGeneral Manager,Dealers Electric,B3200\nLawyer,Hutton-Higgins,Y4000\nBANKER,OPPENHEIMER & COMPANY/BANKER,F2100\nINSURANCE AGENT,SWEET & CO.,Y4000\nFINANCIAL PLANNER,\"SOFER, STEINER\",J5100\nCHICAGO COMMUNITY DEVELOPMENT CORP.,,Y4000\nfoundation executive,Rockefeller Family Fund,X4100\nJ F WHITE,,B1000\nVENTURE CAPITAL,WESTON PRESIDIO,F2500\nC,\"WOLF BLOCK PUBLIC STRATEGIES, LLC\",K2000\nOwner,The Car Place Inc.,Y4000\nDISTRICT COURT,131ST DISTRICT COURT,Y4000\nSMALL BUSINESS OWNER,CHEROKEE DATA SOLUTIONS,Y4000\n\"O'RORKE LOGGING\",,A5000\nLAND SURVEYOR,BOWMAN CONSULTING,Y4000\nPRESIDENT,JOHNNY ROCKETS,G2900\nMEDLOCK SW MANAGEMENT CORP,,F4200\nReal Estate,Newman Realty Group,F4200\nSpanish Professor,\"Curry College Milton, MA\",H5100\nBANKER,TM CAPITOL GROUP,Y4000\nREAL ESTATE MANAGEMEN,SELF-EMPLOYED,J5100\nIDP INC,,C5130\nteacher,Hoboken Charter School,Z9500\nNon-Profit Executive,National Peace Corps Association,Y4000\nATTORNEY,DOCTOR & ASSOCIATES,Y4000\nSpecial Events Designer,Self employed,Y4000\nRETIRED - ENGINEER,RETIRED,X1200\nStagehand,Local 1,Y4000\nInvestments,IIRM,Y4000\nINS BROKER,GENESIS FINANCIAL & INS,F3100\nATTOR,LAW OFFICES JEFFREY M. TAYLOR,K1000\nGRAPHIC ARTIST,Information Requested,G5240\nInvestment Banker,Miller Buckfire & Co,F2100\nAXIOM,,G5270\nVICE PRESIDE,SANDERS GALE & RUSSELL,Y4000\nEXEC DIRECTOR,ORTHOWORX,Y4000\nCEO,Self,G0000\nPHYSICIAN,\"MICHAEL L. WACH, DPM\",H1100\nJudge/Arbitrator,Self employed,G0000\nDirector Public Affa,County of Wayne,X3000\nATTORNEY,TURTLE BAY GROUP,Y4000\nPublic Servant,U.S.Dept of Health and Human Services,X3000\nBROKER/OWNER REAL ESTATE,RE/MAX PROFESSIONAL ASSOCIATE,Y4000\nWESTWAY MEDALLION SALE,,Y4000\nM. W. E./ AIRMATE/MECHANIC,,Y4000\nGOVERNMENT AFFAIRS D,ORANGE COUNTY BUSINESS,Y4000\nCHIEF ENG,\"PACIFIC GULF MARINE, INC.\",LT500\nProgramer,Cray,C5110\nProfessor,Gannon University,H5100\nTech Consultant,Self employed,J1200\nCONSULTANT,UNITED WAY WORLDWIDE,X4000\nPRESIDENT,TRANSPORT INTERNATIONAL,Y4000\nKVSC FM 91.5,,C2100\nNETWAVE,,Y4000\nDirector or Client and Portfolio Servi,Pzena Investment Management,F2100\nATTORNEY,KAYE SCHULER LLP,K1000\nBUSINESS OWNER,FORSHAW INC.,Y4000\nINVESTMEN,VOLPE BROWN WHELAN ET AL.,F2100\nPROPERTY MANAGER,SARES*REGIS GROUP,F4100\nHOTEL MANAGEMENT,PULSAR P.R. INC,T9100\nCeo,Charmer Sunbelt Group,G2850\nFRIGHT HAULER FLAT BED DROP DE,CONTRACT CARRIER CO,Y4000\nMANAGER OF BUS. DEVELOPMENT,DUNCAN OIL PROPERTIES,J9000\nPHYSICIA,PREMIER PHYSICIANS CENTERS,H1100\nINVESTOR,PANGAEA,Y4000\nChief Operatig Officer,Doctors Community Hospital,H2100\nSELF-DISABLED,,Y1000\nPeriodontist,Dr. Robert Brandes,Y4000\nPRESIDENT,METAL MANAGEMENT,M2400\nPOLI,CRANBURY TOWNSHIP POLICE DEPT.,X3200\nCHIEF FINANCIAL OFFICER,INFIGEN INC,Y4000\nJIMENEZ GRAFFMAN & LAUSEL,,K1000\nSelf/Writer/Researcher,,\nconsultant,self- employed,G5200\nRIVERVIEW RANCH,,A1100\nSALES REP,HAYNES FURNITURE,M4100\nCEO,S W Jack Driller,E1150\nDENTIST,BRUCE D. GRBACH DDS INC.,H1400\nDIRECTOR,UNION STATE BANK,F1100\nCLASSROOM TEACHER,North Pocono SD,L1300\nRental Estate Group,United Property Grp,Y4000\nPhysician,ESSE Health,H0000\nEXECUTIVE,NE BEEF,G2300\nVP DIRECTOR OF GOVERNM,ENTRUST INC.,C5130\nDirector,FNMA,F4600\nTchr/Instruct/Prg Asst,FAIRBANKS NORTH STAR BORO S/D,L1300\nCEO,GIVE ECO ENERGY,Y4000\nCEO,\"Pacific Datavision, Inc.\",Y4000\nWHITE DOG RESTAURANT,,G2900\nMANAGE,US CHAMBER OF COMMERCE CENTE,J1100\nTax Director,Fuoco Group,Y4000\nEXXONMOBIL CHEM CO,,E1110\nPRESIDENT,KMA INC.,Y4000\nPRESIDENT,SPORTS FAN CORPORATION,Y4000\nVINSON & DAVIS,,K1000\nLAW OFFICE OF MICHAEL KORMORN,,K1000\nWEST LUMBER COMPANY,,J1100\nEducator-Substitute,Columbus City Schools,X3500\nVice President,Cordell Mfg. Inc.,Y4000\nINVESTMENT B,FRANKLIN CAPITAL GROUP,Y4000\nLAWYER,CHAMBLISS BAHNOR STO/LAWYER,K1000\nINSURANCE SALES,HARTLEY COMPANY,Y4000\n\"Senior Director, Adv\",Motorola,Z9500\nScientist,Exelixis Plant Sciences,Y4000\nDirector for Democracy and Rule of Law,\"Mpri, an L-3 Company\",K1000\nPrivate Banker,Hsbc,F1100\nROCKY MTN EYE CENTER,,Y4000\n\"WOMEN'S HEALTH CARE\",,H1100\nGRAND RIVER RUBBER & PLASTICS CO,,M1500\nLIBERTY STATE ASSET MANAGEMENT,,Y4000\nSHOWBIZ PIZZA INC,,G2900\nHANKIN SANDSON & SANDMAN P A,,Y4000\nSUFFOLK CNTY DISTRICT ATTORNEY,,X3200\n\"DIRECTOR, LEGAL AFFAIRS\",T-MOBILE,C4300\nCHAIRMAN,NFP,Y4000\nAttorney,Self - JMORRISON,Z9500\nCEO,SS & K,G5210\nPHYSICIAN,AMEET GOYAL MD PC,H1100\nReal Estate,Senior Lifestyle Corp.,J5100\nPHYSICIAN,THOMASTON OB-GYN ASSOC PC,H1100\nATTORN,SHEARMAN & STERLING PARTNERS,K1200\nCEO,GONYEA,Y4000\nExec. V.P.,The First American Corp,F4300\nENTREPRENUER,INSCRIBE,Y4000\nCONSULTANT-BUSINESS,INFO REQUESTED,G0000\nCatholic priest,Diocese of San Bernadino,Z9500\nOWNER,DJ ENGINEERING,B4400\nPRESIDENT,BABB INC,Y4000\nPhysician,self,H1110\nOWNER (NEW),MAIN STREET SITE AND UTILITY LLC,Y4000\nInvestments,Trade Link LLC,F2200\nManager,Vaquillas Trading,Y4000\nTEU COMMUNICATIONS INC,,Y4000\nSTRATEGIC FINCL,,Y4000\nATTORNEY,PATTERSON BELKNAP WE,K1000\nINVESTMENT BANKER,EDGEWATER CAPITAL,Y4000\nPresident,Hsi,Y4000\nSenior Interactive Developer,WGBH Educational Foundation,Y4000\n\"SKIVA INT'L CORP\",,M3100\nAttorney,S.R. Wojdak and Associates,K2000\nATTORNE,BERSTEIN LIEHARD & LIFSHITZ,K1000\nRealtor,Terra Firma Global Partners,Z9500\nOWNER,THE M. K. MORSE CO.,Y4000\nExecutive,The Hamilton Companies,G5300\nOFFICES AND CLINICS OF DOCTORS,SELF,H1100\nSENIOR COUNSEL,SIEMENS CORPORATION,C5000\nBanker,First Federal Savings Bank,F1200\nPresident,Bob Penkhus Volvo Mazda Volkswagen,T2300\nASSETS ADM & MGMT INC,,F5000\nEXECUTIVE VICE PRESIDENT,MASSACHUSETTS HOSPITAL ASSOCIATI/EX,H2100\nAttorney,Self-employed,JE300\nLAW OFFICES OF LEONARD SHARENOW,,K1000\nChief Executive Offi,Lake City Medical Center,H2000\nREAL ESTATE DEVELOPMENR,GINSBERG PROPERTY GROUP,F4000\nRESEARCH SCIENTIST,MONSANTO COMPANY,A4000\nFinancial Advisor,Mmgc,Y4000\nTRACTOR DEALER,,A4200\nCUMBERLAND REAL ESTATE,,F4000\nMgmt Spec.,Nat. Park Serv.,Y4000\nOWNER,WOODS ICE CREAM SHOP,G2100\nFI,BALTIMORE COUNTY FIRE DEPARTMENT,L1400\nEXECUTIVE DIRECTOR,NMHR,Y4000\nATTORNEY,CONNER RILEY FRIENDMAN & WEICHLER,K1000\nPRESIDENT,BANK OF EASTERN OREGON,F1100\nInfo. Requested,,B4000\nSELF-EMPLOYED,REEVES BROS TRUCKING INC.,T3100\nVice President and Controller,American Ecology Corporation,E3000\nART DIRECTOR,REVERSE ART SPACE,Y4000\nTHE CLINTON EXCHANGE,,F4100\nCEO,COALITION OF BEHAVIORAL HEALTH AGENCIE,Y4000\nBOONE PC,,Y4000\nLABORER,TDX CONST CORP,LB100\nNeo Tech Owner,,Y4000\nDirector,\"Population Services Int'l\",Y4000\nOWNER,\"LARRY'S PIZZA\",G2900\nChairman,Regency Builders,B0000\nCFO,\"Dragonfly Pictures, Inc.\",Y4000\nCHAIRMAN AND CEO,EXCENTUS CORPORATION,Y4000\nGIBRALTER STEEL CORP,,M2100\nEXECU,ATLAS INDUSTRIAL ELECTRIC CO.,B3200\nSTATE LEGISLATOR,STATE OF FLORIDA/STATE LEGISLATOR,X3000\nPIONEER OF AMERICA,,Y4000\nHomemaker,N/A,G2600\nSUPPORT ONCOLOGY SERVICES/DOCTOR/CE,,H1130\nINSURANCE SALES,INSURANCE MARKETERS,Y4000\nMYERS SMITH & GRANADY/PRESIDENT/CEO,,Y4000\nretired,Georgetown University,H5100\nECONOMIST,JMD CONSULTING,Y4000\nFOUNDATION PRES,,J7400\nphysician,ISA,Y4000\nCompany E,International Crystal Lab,Y4000\nOWNER,LAW OFFICES OF G. SALEM,J5400\nSvp; Human Resources - Src,Sears; Roebuck; & Co.,G4300\nChairman/CEO,Sierra Monolithics,Y4000\nOffice Manager,U.S. Department Of Agriculture,X3000\nEMERALD BAY,,Y4000\nPresident,Door Direst Inc.,Y4000\nCHINA DOLL,,Y4000\nRestaurant Owner,Grand Slam Management,Y4000\nNorth American Sales,Vaisala,Y4000\nOWNER,KAUFMAN MANAGEMENT,J1200\nTRADE ASSOCIATION EXECUTIVE,SPACE TRANSPORTATION ASSOCIATION,T0000\nATTORNEY,HILES BORGESON,K1100\nDECORATOR,SELF-EMPLOYED,G0000\nGOVERNOR DAVIS,,Y4000\nOWNER,PETER THE GREAT CRUISES,Y4000\nHome Builder,\"C3 Construction, LLC\",B1500\nSHUCK PROPERTIES INC,,Y4000\nSALES,WHIRLPOOL ASSOCIATES INC,Y4000\nLawyer,Gillespie Hart Altizer Whitese,K1000\nPresident,Quickpen International Corp.,Y4000\nCHAIRMAN,HISTORIC BEAUFORT FOUNDATION,Y4000\nPresident,Coca-Cola Bottling Company,G2600\nPhysician,Medical Faculty Assoc.,J1200\nPrivate Equity,Blue Wolf Capital Ma,F2100\nLIBRARIAN,NOT EMPLOYED/LIBRARIAN,X4200\nROTH CHOATE & AFFILIATES,,G4300\nJP MORGAN SECURITIES LTD,,F2100\nDYNIFTIC CORPORATION,,C5100\nADVERTISING,RM&D,Y4000\nPORTFOLIO MANAGER,FORE RESEARCH & MANAGEMENT,Y4000\nSr.,G. & J. Pepsi Cola Bottles Inc.,Y4000\nORGANIZER,SE1U 1199P,LG300\nINVESTMENT,GRIFFIN FINL GROUP LLC,Y4000\nPhysician Assistant,State of NC DOC,X3000\nINFO REQUESTED,Angel Logistics,Y4000\nELECTRICIAN ROBOT REP,CHRYSLER CORP.,T2100\nTHE ADVANI LAW FIRM,,K1000\nEngineer,Newpark Drilling Fluids,E1150\nBANKER,\"SAGE CAPITAL BANK, NA\",F1100\nMETRO-NO AMER,,Y4000\nPresident,Pettey Oil,Y4000\nChairman,\"Gulf South Capitol, Inc.\",F0000\nPHYSICIAN,COOK COUNTY HEALTH & HOSPITALS,Z9500\nMERIDIAN HEALTHCARE,,H0000\nJIMLAR CORPORATION,,Y4000\nFINANICAL ADVISOR,NORTHWESTERN MUTUAL,F3100\nUNIVERSITY OF MICHIGAN FLINT,,H5100\nCEO,HRUBETZ OIL COMPANY,E1100\nSOFTWARE ENGINEER,\"THE HAMMERS COMPANY, INC.\",Y4000\nSENIO,MACDONALD-GARBER BROADCASTING,C2100\nCATTLE RANCHER,GORDON RANCH INC.,G1200\nEXECUTIVE,\"THE SCHNIDER GROUP, LLC\",J1200\nOwner,Mark Joyner Inc.,Y4000\nExecutive/Business O,International Crystal Labs,Y4000\nNeurosurgeon,The Methodist Hospital,H2100\nRBN CORPORATE TRAINING CO,,Y4000\nEducational Sr VP,Equity Residential Properties,F0000\nBORONA A & G,,Y4000\nOwner,Phil Hay & Sons Inc.,Y4000\nLaw School Administr,Georgetown University Law Center,H5170\nASSOC. PROFESSOR,OSU,H5100\nTRIJICON INC,,M5300\nHR,GENTAX,Y4000\nNADEAU AND SIMMONS PC,,K1000\nAT&T,SELF-EMPLOYED,C4100\nLINKS DEVELOPMENT,,Y4000\nGOLDEN DRAGON,,Y4000\nMEDICAL STUDENT,MEDICAL STUDENT,Y1000\nWHITE STAR PUBLISHING,,J1100\nGovernment,State of New Jersey,X3000\nLEGISLATO,G.A. STATE REPRESENTATIVE,X3000\nORRICH HERRINGTON SUTCLIFFE,,J1200\nSCIE,WELCOME TRUST SANGER INSTITUTE,Y4000\nCounsel Executive,\"The Wellpoint Companies, Inc\",H3700\nSales Rep,Fort Dodge Animal Health,Y4000\nHUBBARD PROPERTIES,,J1100\nBARNWELL COUNTY UNITED WAY,,F1100\nVICE PROVOST FOR RES,UNIVERSITY OF MISSOURI,H5100\nPresident,Normandy Group,K2000\nECONOMIST,BBVA COMPASS,F1100\nATTORN,\"MCINTYRE, TATE, LYNCH & HOLT\",K1000\nSoftware Engineer,Quantum Corporation,C5110\nOPTO,ARKANSAS OPTOMETRIC PHYSICIANS,H1100\nMERIT CAPITAL,,Y4000\nSECRETARY,RALEIGH COUNTY BOARD OF EDUCATION,X3500\nCORPORATE V.P.,PUBLIC AFFAIRS,H4100\nCHAIRMAN,CASSIDY & ASSOCIATES/CHAIRMAN,K2000\nLBUSD,,Y4000\nRetired Air Force Of,N/A,Z9000\nOB MCCART APTS,,F4500\nPRESI,ROCKPORT MORTGAGE CORPORATION,F4600\nOWNER - RESIDENTIAL CONTRACTOR,SELF,Y4000\n\"FARMER, REAL ESTATE DEVELOPER\",SELF,F4000\nConstruction Manager,Tishman Construction Corporation,F4500\nDirector,Southern Company,E1620\nSales,Intralor  LLC,Y4000\nPROFESSOR,U OF HAWAI`I,J1200\nvice-president,\"WellCare Health Plans, Inc.\",F3200\nVP,DICKINSON FUEL CO. INC.,Y4000\n\"KAMAN AEROSPACE INT'L\",,M2300\nExec VP & CFO,MOC Insurance Services,F3100\nINVESTMENT PROFESSIONAL,PARTHENON CAPITAL LLC,F2600\nSTATE OF MASSACHUSSE,,J7300\nChief Operating Offi,KidRo Productions,J7300\nPreside,Lloyd and Mabel Johnson Fnd,Y4000\nIT,SNS-DTRA,J1100\nPROGRESSIVE BENEFITS,,Y4000\nExecutive Director,Southern Colo Econ Dev District,J1200\nBUSINESS OWNER,TACTICOM USA,Y4000\nUNIVERSITY PROFESSOR,YALE UNIVERSITY,H5100\nCEO,\"Earth Turbines, Inc\",Y4000\nOWNER,WEL COMPANY,Y4000\nTEACHER,SIOUX CITY COMM. SCHOOLS,X3500\nGANNETT OUTDOOR COMPANY,,G5230\nPERFORMING ARTS COALITION,,Y4000\nPsychologist,Roslyn Meyer,Y4000\nQuality Control,Novelis Corp,Y4000\nCEO,The Quintin Little Company,E1120\n\"SR VP, CORP. DEVELOPMENT & CHIEF LEGAL\",GOOGLE,C5140\nCR,VALLEY AMBULABORY SURGERY CENTER,H1710\nPARTNER,\"FISHER DEVELOPMENT ASSOCIATES, LLC\",Y4000\nPARTNER,THE C2 GROUP,K2000\nROMANO BROS BEV CO,,G2820\nMIDWEST BIOMEDICAL RESOURCES,SERVICE MANAGER,Z9500\nPUBLIC AFFAIRS,FRESENIUS MEDICAL CARE,H3200\nRabbi,none,Y1000\nORTHOPAEDIC SURGEON,KATZ ORTHO SURGERY & SPORTS MEDICINE,H1130\nLawyer,U. S. Dept of HHS,X3000\nBusiness Owner,IN Truck Sales & Service,T3000\nconstruction/farming,Dave Inloes Construction,B1500\nPRESIDENT,DANVILLE TOYOTA/PRESIDENT,T2310\nNetwork Security Eng,Booz Allen Hamilton,G5270\nPARTNER,REAGOR AUTO MALL,T2300\nCONSULT,\"INDUSTRIAL CONSULTANTS, INC\",J5100\nteacher/writer,Portland State University,Z9500\nC.A.O.,MCKINLEY INC.,F4000\nChairman & CEO,Homeland Security Capital Corporation,F2500\nEstimator,Hendershot Management Co,Y4000\nVideogames,Electronic Arts,C5000\nDELANO OIL CO,,E1100\nBookkeeper,Hendricks Law Firm,K1000\nNATL MUSIC PUB ASSOC,,C2600\nPRESIDENT/CEO,DICK BROADCASTING CO. INC.,C2100\nEXECUTIVE,A.T.S.,Y4000\nENGINEER,EATON AEROSPACE,Y4000\n\"SENIOR VP, HUMAN RESOURCES\",EXPRESS SCRIPTS,H3000\nRN,Hospital,H2100\nPRINCIPAL,MCCARTHY STRATEGIC SOLUTIONS,Z9500\nSELF-EMPLOYE,SILVIO DEVELOPMENT CO.,Y4000\nPRESIDENT,\"JH BIOTECH, INC\",Y4000\nCEO,\"WILCO, INC\",Z9500\nPresident and CEO,\"Mulkey Engineers & Consultants, Inc.\",B4000\nADMINISTRATOR,CHALK HILL CONSULTING GROUP,G5270\nATTORNEY,WEIL GOTSHAL & MANGES L.L.P,K1000\nATTORNEY,\"FERRAIUOLI, LLC\",Y4000\nAttorney,\"Squire, Sanders and Dempsey LLP\",J1200\nMARKET COACH,\"MID-SOUTH BELLS, LLC\",G2900\nJOHNSON JUNCTION INC,,G4300\nTOUBIN INSURANCE AGENCY,,F3100\nVICE PRESIDENT,AMERICAN PATRIOT GROUP,E1200\njournalist,princeton retail analysis,Y4000\nATTORNEY,CENTER FOR JUSTICE AND DEMOCRACY,J7000\n6TH STREET BEER DISTRIBUTORS,,G2850\nAttorney,\"Haygood & Harris, LLC\",K1000\nAttorney,Stolar Partnership,K1000\nExecutive,First Bank,F1000\nCEDAR HILL MEMORIAL PK,,G5400\nArtist,Susan Jorgensen,Y4000\nTeacher,Dartmouth Public Schools,J1200\nPARTNER,CAPITAL SOLUTIONS,Y4000\nPROJECT MANAGER,NASPAA,J1200\nTHIRD FEDERAL SAVINGS BANK,,F1200\nOFFICE WORKER,BRAMM INC.,G4500\nLAW PROFESSOR,HARVARD UNIVERSITY,H5170\nPROJECT MANAGER,TAISEI CORPORATION,Y4000\nSTEEL BAR CORPORATION,,M5000\nINFORMATION MANA,FEDERAL GOVERNMENT,Y4000\nOperations Manager,\"PRIMEDIA, INC.\",C1100\nPRESIDENT,RANDOLF ORAL SURGERY CTR,H1400\nBanker,Colonial Savings,F1200\n\"GVP, PUBLIC AFFAIRS\",TIME WARNER CABLE,C2200\nTeacher,Whitnall School District,X3500\nCHADDERTON TRUCKING INC,,T3100\nMANAGING DIRECTO,LATORNA ASSOCIATES,Y4000\nATTORN,\"LAW OFC. JACK M. BAILEY, JR.\",K1100\nAMERICAN FARMS,,A8000\nBAPTIST MEDICAL CENTER,,JH100\nHOME BUILDER,\"GRANVILLE HOMES, INC\",B2000\nCONSULTANT,\"ALIX PARTNERS, L.L.C.\",G5200\nREALTOR,WALLACE & WALLACE,Y4000\nCPA,\"RSM MCGLADREY, INC.\",J5100\nCOO,THE FURMAN GROUP INC.,K2000\nMTL,,Y4000\nMANVILLE CORPORATION,,Y4000\nAttorney,Latham and Watkins,K1000\nDIRECTOR OF OPERATIONS,STATDNA,Y4000\nJAMES V STANTON & ASSOC,,K2000\nBUSINESS NEWS PUBLISHING,,C1100\nStanford University,Quinn Emanuel,K1100\nArt Historian,Self employed,J7300\nMEDMARC MUTUAL INSURANCE GROUP,,F3100\nMORRISON RESTAURANTS,,G2900\nENGIENEER,SUPERCONDUCTOR TECH,C4600\nBEST EFFORT,PROKOS RENTALS OWNER,Y4000\nPRESIDENT,THE WILD FOUNDATION,Y4000\nMerchant Marine,Matson Navigation Company,T6200\nPREMIER DESIGNS INC,,Y4000\nLOYOLA UNIV PHYSICIANS FOUND,,H1130\nOwner,P&M Dairy,H2200\nCEO,ICARIAN,Y4000\nfinance,Chatham Asset Management,F2100\nManaging Partner,\"Jim Gonzalez and Associates, LLC\",G5210\nTRX,,Y4000\nNORTH DAKOTA FARMERS UNION,,A6000\nExecutive,OT Liquor,G2840\nPRESIDENT,THE CLAWSON GROUP,Z9500\nTAR-HEEL DEVELOPMENT & BUILDING,,Y4000\nPresident and CEO,\"Winterthur U.S. Holdings, Inc.\",F3400\nEngineer,Virage Logic Corp,C5110\nPartner,The New Teacher Project,Y4000\nKISS STRAW & KOLONDER,,Y4000\nBUSINESS OWNER,BRIEGAN CONCRETE CONSTRUCTORS,B1500\n25F / 25N,\"US Army, Iraq\",X5000\nBUSINESSMAN,\"RAILWAY RESEARCH, INC.\",Y4000\nADMINISTRATOR,EPISCOPAL SENIOR COMMUNITIES,Z9500\nArea Administrator,Meadows Group,Y4000\nADMINISTR,CONCORDE STAFF SOURCE INC,G5250\nAttorney,Goranson Bain Larsen Greenwald Maultsb,K1000\nLITE DEPALMA GREENBER & RIVAS,,K1000\nIndependent Consultant With Arbonne in,Self employed,G5200\nInsurance Agent,Hoeltel Insurance,F3100\nCHIEF TECHNOLOGY OFFICE,DIRECT EDGE,Y4000\nAUTO DEALER,BROWN & BROWN CHEVROLET,Y4000\nPresident,Interamerican Economic Council,Y4000\nSELF EMPLOYED/BUILDER/DEVELOPER,,B1500\nFINANCE,ECOBAN FINANCE LIMITED,Y4000\nInterior Designer,Ryan Young Interiors,Y4000\nproprietor,\"Avenue Pub, LLC\",G2900\nBARNETT BANK OF NASSAU COUNTY,,F1100\nPARTNER,PORTER GORDON SILVER,K2000\nREP CAROLYN MCCARTH,,X3000\nCARDAN CONSTRUCTION,,B1500\nSOFTWARE ENGINEER,INOVALON,Y4000\n\"Director, Space & Intelligence Systems\",Boeing,D2000\nPEERLESS LANDFILL CO,,Y4000\nGraduate Student,UC Berkeley,Z9500\nENGINEER,ARCOT SYSTEMS INC,Y4000\nCIO,CHUBB CORP.,F3400\nAttorney at Law,\"Gibson, Dunn & Crutcher LLP\",J7400\nEAST WEST CAPITAL ASSOC,,F2500\n\"MILLIEN, PITT & MCANALLY\",,K1000\nDELOITTE-TOUCHE LLP,,F5100\nVice President - Worldwide Taxation,Herbalife International,H4600\nAttorney,Drazin & Warshaw,G6500\nPHYSICIAN,\"MASAO S. YU MD, INC.\",H1100\nAttorney,Toralard Associates,Y4000\nPPL SUSQUEHANNA LLC,,Y4000\nPRINCIPAL,CMS,Y4000\n\"DEVINE LAW OFFICES, LLC\",,K1000\nEntrepreneur,William Frick Company,Y4000\nUNITED GOLF MANAGEMENT,,G6100\nSelf,Custer Consulting Group,Y4000\nReal Estate manageme,\"Weinstein Management Co., Inc.\",J1200\nPHYSICIAN (MD),SELF,H1100\nPRESIDENT,\"BASIC COMPONENTS, INC.\",B2400\nTrainer,Center for Teacher Leadership,Y4000\nWildlife Geologist,Us Fish Wildlife,Y4000\nGROUP US,,Y4000\nSUN LAND VILLAGE EAST,,F4000\nPROFESSOR OF ECONOMICS,DUKE UNIVERSITY,H5100\nOMER CONSTRUCTION CO INC,,B1500\nOWNER,INFO REQUESTED,M1000\nSTAFF ASSISTANT,US HOUSE OF REP,Z9500\nTURPIN WACHTER ASSOCIATES INC,,Y4000\nConsultant,The Boandi Corporation,Y4000\nGENERAL,SELLEN CONSTRUCTION COMPANY,B1500\nReal Estate Broker,\"Carrier Sotheby's Int Realty\",F4200\nMAGNA COMMUNICATIONS,,Y4000\nADMINISTRATOR,NH CHARITABLE FOUNDATION,Y4000\nGOVER,\"MURRAY MONTGOMERY & O'DONNELL\",K1000\nCouncilman,City of North Miami Beach,X3000\nEXEC,NATIONAL ASSOC OF MANUFACTURER,M0000\nCFO,UNMC,H2100\nASST CORPORATE COUNCIL,,Y4000\nNUTRTIONIST,SUNSHINE HEALTH INC,Y4000\nCEO,CLEMENTS EXPLORATION CO,E1120\nHALL AND BARTLEY,,J1100\nEXPEDITION LEADER AN,LINDBLAD EXPEDITIONS,Y4000\nADVISOR TO THE MAY,CITY OF NEW YORK,X3000\nCONSULTANT,SAGAWAJOSPIN,Y4000\nRETIRED,HOTELS.COM,J5100\nOWNER,VRABLE HEALTHCARE CO.,Y4000\nFARMER-KAERCHER GRAIN INC,SELF,Y4000\nADMINISTRATOR,OHIO UNIVERSITY,J7400\nCFO,OVERSEAS FREIGHT,Y4000\nTraining Consultant,Self employed,G0000\ncommercial banking officer,Bank of Hawaii,F1100\nC.E.O.,ENCORE,Y4000\nPRESIDENT   COORS BREWERY,COORS BREWING CO.,J1100\nLIBRARY SUPERV,CITY OF GLENDALE LIB,X4200\nWATERWORKS,,Y4000\nDRK INC,,G5210\nDEPUTY SHERIFF,,X3200\nCHAIRMAN OF THE,CHAPMAN INDUSTRIES,Y4000\nOWNER,PUGILA ENGINEERING,B4400\nBurgundy Farm Country Day School,,J1200\nCLERK OF COURT,FAIRFAX CIRCUIT CT.,Y4000\nN W MUTUAL,,F3300\nCARDIOLOGIST,MIDWEST HEALTH ASSOCIATES,Y4000\nEstimator/PM,Self employed,G5000\nAttorney,Viveson Elkins,K1000\n\"INT'L LIGHTING MFG CO\",,M6000\nRETIRED ECONOMICS PR,UW-PLATTEVILLE,Y4000\nPRESIDENT,\"MEYERS & ASSOCIATES, INC.\",K2000\nPROFESSOR,WVU,Z9500\nEXECUTIVE,SEVERSON ENVIRONMENTAL,Y4000\nReal Estate,Borst Management,Y4000\nVice President,Sandmeyer Steel,M2100\nPRESIDENT,RED HEN SYSTEMS,Y4000\nAMERICAN PARKING LOT MAINTENANCE,,F4500\nWriter and Editor,Self-employed,C1100\nHealthcare Managemen,Roundtable Healthcare,H0000\nELECTRICAL ENGINEER,DRS INC.,Y4000\nC.B.E. GROUP,,F5200\nFILMMAKER,KOVNO COMMUNICATIONS,Z9500\nINVESTMENT M,REED CONNER & BIRDWELL,F2100\nCommunity Associate,City of New York,X3000\n\"MCCARTY, MARCUS, HENNINGS LTD\",,Y4000\nMD/Gastroenterologis,Information Requested,H1130\nRURAL WATER ASSOC,,Y4000\nMOORING RECOVERY SERVICES/OWNER/PRE,,J1100\nPhysician,Seattle Indian Health Board,H0000\nSTATE EXEC DIRECTOR,TX CORN GROWERS,A1500\nOWNER,THE ZIDELL COMPANIES,T6100\nOWNER/AGENT,STATE FARM,F3400\nSOFTWARE ENGINEER,\"ADECN, INC\",J1300\n\"Printer, Secretary/T\",Madison Press Inc,Y4000\nN/A,Information Requested,X1200\nDICKINSON WRIGTH ET AL,,J7300\nOwner/Advertising,Pure,Y4000\nATTORNEY,SHEARMAN & STERLING,K1000\nORTHOPAEDIC SURGEON,KETTERING HEALTH NETWORK,H1130\nWESTPORT LTD,,Y4000\nSCHOLAR,,Y3000\nSenior Group VP - Fr,\"IBP, Hides Div.\",G2300\nTHE HB NITKIN GROUP,,F4000\nComputer programmer,\"Adobe Systems, Inc\",C5120\nPest Control Advisor,Integrated Crop,Y4000\nENGINEER,\"MANATEE, INC.\",Z9500\nDIRECTOR,CEPT. OF VETERANS AFFAIRS,Y4000\nCourt Hearing Officer,LA Superior Court California,Y4000\nCpa,Edward Isaacs & Comp,F5100\nExecutive,The Zitelman Group,F5100\nCOMMERCIAL REAL ESTATE,CU REIT,Y4000\nCONSULTANT,SELF/REID STREET CONSULT,Z9500\nMarketing Analyst,American Express,F1400\nPARTNER,PAM BENGARD FARMING COMPANY,A6000\nATTORNEY,\"SEVILA, SAUNDERS, HUDDLESTON & WHITE,\",Y4000\nBUILDER,LAVIGNE ENTERPRISES,Y4000\nRetired / Army Civil,U. S. Army,X5000\nCHAIRMAN,ROGERS GARDENS,Y4000\nPHYSICIAN - VASCULAR INTERVENTIONAL RA,RADIOLOGY WAUKESHA,H1130\nPresident,\"Innovative Mgmt. Consulting, Inc.\",Y4000\nPresident,Alpha Omega Business Systems,C1300\nPharmacist,St. Eugene Medical Center,Y4000\nExecutive Vice President,The Mountain Co,Y4000\nOWNER,WEATHERALL NORTHWEST,Y4000\nSURGEON,NE ORTHO. SURGEONS,H1130\nFinancial Systems Advisor,ConocoPhillips,E1110\nNATL ACCT,UNITED PARCEL SERVICE INC,T7100\nDIRECTO,ATLAS RESOURCE PENNSYLVANIA,E1140\nRBC CAPITAL MARKETS,DIRECTOR,F2300\nREALTOR,C21 HERITAGE REAL ESTATE,F4200\nRESURGENCE,,G5290\nSR STAFF LANDMAN,DEVON ENERGY,E1150\nRetired Teacher/ Librarian,Retired,X1200\n\"INT'L CREATIVE MANAGEMENT\",,Y4000\nMarketing,Empire State Development/New York Stat,X3000\nOWNER,FRR INC,Z9500\nTHE INNOVATIVE EDGE,CONSULTANT,J1200\nATTO,LAW OFFICE OF THOMAS D. WEAVER,K1000\nEXECUTIVE,AEGON/TRANSAMERICA,F3100\nCITY PLANNER,ISLES/CITY PLANNER,X4000\nEducator Principal,Grace Church School,X7000\nEXECUTIVE,PEARSALL OPERATING CO,T9300\nUNIVERSITY A,UNIVERSITY OF MARYLAND,H5100\nPRESIDENT,THE FIRST NATIONAL BANK,F1200\nScientist,\"Goforth Scientific, Inc\",Y4000\nSr VP,\"Webb and Brooker, Inc\",F4200\nJOHNSON JOHNSON & JOHNSON LAW,,K1000\nPARTNER,AMBER MOUNTAIN,F2000\nVETERINARIAN,ISU,Y4000\nBEST WAY GROCERY,,G2400\nInformation Requeste,The Madison Group,F3300\nCALTECH EMPLOYEES FCU,,F1300\nWRITER,MARTA KAUFFMAN PRODUCTIONS,Z9500\nCEO,IE,J1100\nEXECUTIVE VICE PRESIDENT,ALABAMA CATTLEMENS ASSOCIATION,A3000\nPhysician and Software Developer,Self employed,G0000\nComputer Programmer,Autodesk,C5120\nVice President,Auburn University,H5100\nSOFTWARE DEVELOPER,UNIVERSITY OF MINNESOTA,H5100\n\"TOBEY'S CONSTR & CARTAGE INC\",,B1000\nDirector of Quality,DAKCS Software Systems,J7400\nattorney,John Silberman Associates PC,K1000\nPUBLIC AFFAIR,CATHEREN WOOLARD INC.,Y4000\nInformation Requeste,University of California,H5100\nMOSCOW-RUSSIA,,J1100\nManager,Peacehealth/Sacred Heart Medical Cente,H0000\nVEDDER & PRICE,,J1100\nFIREFIGHTER,SOMERVILLE,X3200\nFinancial Sales & Sales Mgt,Self,F0000\nWEXFORD MANAGEMENT LLE,,G5270\nGRANADA CORPORATION,,\nCHAIRMAN & CEO,LINCOLN INDUSTRIES,F3300\nATTORNEY,CBS CORPORATION,J7400\nOilfield Service,Star Testing Services,Y4000\nAttorney,Hummer Law Offices,J1200\nBroker,Agents Around Atlanta,Y4000\nSTUCCO SUPPLY COMPANY/PRESIDENT/OWN,,Y4000\nCAFRITZ-FREEMAN GROUP,,Y4000\nCEO,Dant Clayton,M4100\nLIFE CARE CENTERS OF AMERICA,,H2200\nSR. VP & CHIEF TECH. OFFICER,\"EDUCATION REALTY TRUST, INC.\",F4100\nAnimator,Mark Mitchell,Y4000\nPRESIDENT,SHAMLIAN PROPERTIES,G1200\nUNIV OF BALTIMORE LA,,H5100\n\"INVESTOR, NONPROFIT VOLUNTEER\",SELF,K1000\nPLAN MANAGER,\"R.A. ZWEIG, INC.\",T2200\nWDHR,WPKE,C2100\nSVP,\"Alliance Bernstein, LP\",F2100\nProfessor of Mathema,MSU-Billings and UC Irvine,Y4000\n\"HEANEY, BUTLER, ET AL\",,K1000\nMULTI TRUST FED,,Y4000\nLAW ENFORC,UNITED STATES GOVERNMENT,X3000\nADVERTISING,LAUNCHPAD ADVERTISING,G5210\nManager,Allscrap Recycling LLC,Y4000\nManager,Cbg Root,Y4000\nBoard Member,Holland Partner Group,F4100\nSurgeon,University Physicians Of Bklyn,H1100\nCEO,WILLIAMS GROUP INTL,B1000\nOwner/Executive,Velocity Electronics,Y4000\nENGINEERING MANAGEMENT,TESLA MOTORS,T2100\nBUSINESS OWNER,TWO MEN AND A TRUCK INTERNATIONAL,T3100\nCHIEF MEDIC,KINDRED HEALTHCARE INC.,H2100\nCEO,WECHSLER ROSS & PARTNERS,Y4000\nOWNER,STANLEY F. KIJEK,Y4000\nCHAIRMAN,HORIZON BANK,F1100\nCOBB COUNTY LIBRARY,,X4200\nOIL & GAS OPERA,,E1120\nNATIONAL FARM LIFE,,F3300\nVP HR,ASHLAND INC.,Z9500\nFARMER,SELF-EMPLOYED,T3100\nAnalyst,Central Intelligence Agency,X3000\nCO-FOUNDER,HIGHLAND CAPITAL MANAGEMENT,F2100\nInsurance Agent,Ernest S. Sagalyn Insurance Ag,F3100\nPROJECT MANAGER,EMPOWER SOFTWARE,C5120\nTEACHER,WEBSTER UNIVERSITY,H5100\nCivil Service,Dept of State,X3000\nSEN,DIAGNOSTIC PRODUCTS CORPORATION,J5100\n\"CEO, Free Clinic\",\"WV Health Right, Inc.\",J1200\nNATIONAL STRUCTURED SETTLEMENTS,,Y4000\nSOUTHPAW ENTERPRISES,,Y4000\nMANAGER,TOP SECURITY INC,G5290\nGOVERNMENT AFFAIRS,CITIGROUP,F1100\nHEALTHCARE EXECUTIVE,BRANDYWINE SENIOR CARE,H2200\nEngineering & Constr,OPE Inc.,Y4000\nHEALTH & HOSPITAL CORP OF MARION CO,,H2100\nPhysician,James H Johnson Jr MD PA,H1100\nNTL MISSOURI DIRECTOR,,Y4000\nBEASLEY BILKISON RIL,,K1000\nSelf-Employed,Self-Employed,B1500\nPRESIDENT,HEADS UP OF NC INC.,Y4000\nINSURANCE INDUSTRY CONSUL,,F3100\nConsultant,AARP,J7200\nCEO,REPUBLIC CLOTHING,Z9500\nRetail Sales,Target,G4300\nTELECOMMUNICATIONS,AIT TECHNOLOGIES,Y4000\nSULLIVAN DENTAL,,H4100\nLAWYER,KMKLLP,Y4000\nPHYSICIAN,PARTNERS IN WOMENS HEALTH,H1100\nTraining Director,Youth Build,H5000\nBUSINESS O,PERFECT STORM MEDIA LTD.,Y4000\n\"THOMPSON, MURARO, RAZOOK & HART\",,Y4000\nTRADER,CARGILL,A1000\nREAL ESTATE D,RALPH SCHLESINGER CO.,F4000\nWILLIAMSON RALEIGH &,,Y4000\nPresident & Ceo,Oven Poppers Inc.,Y4000\nPhysician,UCVA,Y4000\nPrincipal,\"Adams Street Partners, LLC\",F2500\nFORMER UNIV ADMIN,RETIRED,X1200\nCONSULTANT,BEAL COMPANIES,F4000\nCEO,Texas State Bank,F1100\nMACHINIST,PETITPAS ENT LLC,J1200\nInvestor,Charter Dah Capital Partner,F0000\nPEDIATRIC DENTIST,DICKSON PEDIATRIC DENTISTRY,H1400\nCATHEDRAL PRE-SCHOOL,,H5000\nEXECUTIVE,H.S.A.G.,Y4000\nOWNER,HALL PROPERTIES,F4000\nFRANCHISE OWNER,EXPRESS OF SHERMAN,G5250\nElectrician,Rosendin Electric,Z9500\nTHE GRAND PROPERTIES,,J5200\nC J PROPERTIES,,Y4000\nDealer,Transitowne Dodge,T2300\nLAS CRUCES PUB SCHL,,Y4000\nPRESIDENT,OSU-TULSA,Y4000\nCOO,\"OHIO PRECIOUS METALS, LLC\",Y4000\nOWNER,BSE-LLC.,Y4000\nPATHOLOGIST,SKIN DIAGNOSTICS GROUP,H1130\nMANAGING MEMBER,EGAN MANAGED CAPITAL  L.L.C.,Y4000\nPresident & CEO,L.I.S.C.,Y4000\nDIRECTOR,PUGET SOUND,E1620\nHARDING UNIV,,H5100\nREMAX RESULTS/FT WAYNE. IN/REALTOR,,F4200\nPediatrician,Friend Family Health Center,Y4000\nJOHN ADAMS ASSOC,,K2100\nLAWYE,YOUNG & ALEXANDER COMPANY LPA,K1000\nMANAGER,LONGTOWN SUPPLY CO,Y4000\nTAX COLLECTOR,MONTEREY COUNTY/TAX COLLECTOR,X3000\nAttorney,Morrison Cohen LLP,K1000\nHOOPER OWEN GOULD & WINBURN,,K2100\nOWNER,EXPRESS BUSINESS SERVICES,Y4000\nCITY OF ST FRANCIS,,X3000\n\"FRANK'S REALTY COMPANY\",,J5100\nPRESIDENT,HOLLAND PARTNER GROUP,F4100\nETHYL CHEMICAL CORP,,M1000\nExecutive,Nebraska Association of Check,Y4000\nANALYST,\"PRIMETRICA, INC\",Y4000\nCITY OF FRANKFORT,,X3000\nPhysician,Univ Of CO,H5100\n\"SEYFARTH, SHAW ET AL\",,Y0000\nBookseller,Books and Books,Y4000\nREAL ESTATE,EXECUTIVE REALTY,F4200\nKLEIN FINANCIAL CORP,,F4000\nInvestment Manager,Investco,F2100\nAntiques broker,Self employed,Y4000\nREAL ESTA,C.D. REALTY ADVISORS INC.,F4200\nDIAGNOS,\"ST VINCENT'S MEDICAL CENTER\",H1130\nCEO,URBAN MOTION INC,Y4000\nCEO,FISCHER & WIESER,Y4000\nAttorney,\"Stinson, Morrison, Hecker, LLP\",Z9500\nPresident,Pulliam Motor Company,Z9500\nDONALD J GROSSMAN LTD,,Y4000\nTeacher,The Bush School,H5100\nChairman of the Boar,Exchange Bank,F1100\nProfessor,West Chester University of PA,H5100\nCLEMSON UNIV,,H5100\nMANAGER,L. E. C. G. CORPORATION,Y4000\nKURCHOCK EQUIPMENT,,Y4000\nRancher,Jones North Ranch Ltd Prtshp,A3000\nOwner,George Moore Truck & Equipment,Y4000\nFRAME PERSON,INNOVATED TELEPHONE,C4100\nConsultant,Taylor Rafferty,F5000\nPartner,WSJ Properties,F4000\nSELF-EMPLOYED,STATE FARM INDEPENDENT AGENT,Y4000\nEDITOR,HOLLYWOOD MEDIA,Z9500\nCONSULTANT,ART1ST.COM,J1200\nEXECUTIVE,THE GRANGER GROUP,Y4000\nPresident/CEO,\"Hacienda Builders, Inc.\",B2000\nSALES,BLUE WATER,Y4000\nPETER J HUGHES A P C,,Y4000\nHERIDAL INC,,Y4000\nATTORNEY,\"GLASER, WEIL\",K1000\nnot employed - retired,none,X1200\nAttorney,\"Taylor English Duma, LLP\",Y4000\nAttorney,Downs & Stanford; P.C.,J1200\nDAYTONA COLLEGE/OWNER/ADMINISTRATOR,,J7400\nENTREPRENEUR,SIGMA ACTUARIAL CONSULTING GROUP INC.,Y4000\nPHYSICIAN,\"EMERGENCY SERVICES, INC\",H2000\nCORP. PRESIDENT,IOWA VET SUPPLY CO.,A4500\n3T ENTERPRISES,,Y4000\nFLYNN-HILL ELEVATOR CORPORATION,,B3000\nCONSULTANT,SALESFORCE.COM/CONSULTANT,C5140\nPublic Relations,H J Rubenstein & Associates,G5210\nEXECUTIVEA,RETIREDA,X1200\nChief of Staff,U.S. Representative Dennis Moore,Y4000\nProfessor,Southwestern University,Y4000\nMerchandiser,Pepsi,G2600\nCommercial Real Estate Management,Orchard Commercial,Y4000\nENGINEER,STOCK EQUIPMENT CO/ENGINEER,Y4000\nPROFESSOR,UNIVERSITY SYSTEM OF NH,H5100\nCALIFORNIA ASSEMBLY,,X3100\nSINGLE-FAMILY S,COSTA PACIFIC HOMES,B2000\nProducer,Black Hills Agency Incorporated,F3100\nEXECUTIVE DIRECTOR,SONORAN INSTITUTE,Y4000\nINSURA,ARTHUR-MEINDERS & ASSOCIATES,F3100\nteacher (on good day,Baltimore City Public School System,X3500\nCITY OF LACROSSE,,LT000\nC.E.O.,American Airlines,T1100\nCLASSROOM TEACHER,SANTA CRUZ CO. OFFICE OF EDUCA,L1300\nActress,Shoe Money Productions,Y4000\nWOMEN & CIVIL SOCIETY ADVISOR,US DEPARTMENT OF STATE,X3000\nBERGEN INDUSTRIES,,Y4000\nPRESIDENT,CAFCO CONSTRUCTION,B1000\nPRESIDENT,MEATS BY LINZ,Y4000\nFORT WORTH INDEPENDENT SCHOOL DISTR,,X3500\nDoctor,Cornell Univ,J1200\nMANAGER,AFAB PRECISION MACHINING,Y4000\nPASTOR,MT. CALVARY BAPTIST CHURCH,X7000\nReal Estate,Citrus,A1400\nLAWYER,EUROPEAN BANK FOR RECONSTRUCTION AND D,Y4000\nGOVERNMENT RELATIONS,NAPPI & HOPPE LLC,K2000\nPHYSICIAN,CAREFIRST BDBS,F3200\nDentist,Vaseey Dental Partners,H1400\nrequested,Firstgate Group,Y4000\nPHYSICIAN/SOCIAL WORKER,SELF,H1100\nCFO,Spring Creek Development,Y4000\nPRESIDENT,BASELL NORTH AMERICA INC.,M1000\nASSOCIATE DIRECTOR,NASULGC,Y4000\nCEO,PEACE HEALTH,H0000\nSELF/ACTOR/DESIGNER,,C2400\nClarus Ventures,,F2500\nCOMPUTER SECURITY,GIT GROUP INC,Y4000\nARCHIVIST,OREGON SHAKESPEARE FESTIVAL,G6000\nADVISOR,MORGAN STANLEY & COMPANY,F2300\nHEALTHCARE,UNIVERSAL HEALTH SYSTEMS,Y4000\nDODGE/CHRYSLER/PLYMOUTH JEEP,,T2300\nOFFICER,NAVY,X5000\nRetired,\"All Saints' Episcopal School\",H5100\nVICE PRESIDENT,LIVING WORD CHRISTIAN CENTER,X7000\nC.E.O.,MOC 1,Y4000\nHOMEMAKER,NA,M3200\nPartner,Simons and Carter Contracting and Remo,Y4000\nAUDIOLOGIS,MAYO CLINIC JACKSONVILLE,H1700\nInformation Requeste,UW,Y4000\nLOMAS & NETTLETON,,F4600\nEXECUTIVE,\"CROSS GATES, INC.\",F4000\nBLANCHFIELD CORDLE MOORE P A,,K1000\nPUBLIC AFFAIRS,SYMATEC,Y4000\nDIRECTOR EMPLOYEE RELA,WALGREEN CO.,G4900\nCOMMUNITY ORGANIZER,TURNING POINT,Y4000\nGENERAL ENTERPRISES INC,,J7400\nPresident,Florida Transportation Builders As,B1000\nFUNDRAISER,BIG BEND HOSPICE,Z9500\nALLENBERG COMPANY,,Y4000\nPRINCIPAL,LUCCO SCHWARTZ,Y4000\nUnited States Senate,,J2100\nPRUDENTIAL HOME MRTG,,F4600\nCEO,Qualcomm. Inc.,J7150\nREGISTERED NURSE,FRANKFORT REGIONAL MEDICAL CENTER,Y4000\nDIAGNOSTIC RADIOLOGIST,DEANES HOSPITAL/DIAGNOSTIC RADIOLOG,H1130\nProfessor,University of Illinois Chicago,H5100\nMarble Management,,Y4000\nCOMPUTER SYSTEMS ANALYS,BAE SYSTEMS,D2000\nCAPITOL COUNSEL GROUP,,K2000\nAttorney,\"Sommer, Schwartz\",K1100\nSTAY AT HOME MON,STAY AT HOME MOM,Y1000\nRTD INC,,G1200\nHEALTHCARE MANAGER,\"WELLSPRING ASSOCIATES, INC.\",G5270\nCEO,MORGAN INDUSTRIES,Y4000\nMANAGER,CITIGROUP,F1100\nINSURANCE,ARBOR BENEFIT GROUP,Y4000\nPresident,\"Oates Associates, Inc\",B4000\nNORTH AMERICAN INDUSTRIAL,,Y4000\nPRESIDENT,SUMMITEC CORPORATION,Y4000\nPARTNER,WINSTON TERREL GROUP,Y4000\nFISH ASSOCIATES,,A4200\nNORTH PACIFIC PROCESSORS INC,,Y4000\nCEO,ROCHESTER ATHLETIC CLUB,G5800\nAccountant,Bethany King CPA,F5100\nLegislative Director,Rep Stephanie Herseth Sandlin,Y4000\nPresident,Startex,M1000\nHotel Manager,Sunstone Hotel Properties,T9100\nENGINEER,MAC QUANE BANK LTD.,Y4000\nRADIOLOGIST,INFORMATION REQUESTED PER BEST EFFORTS,H2100\nSTAFF SCIENTIST,CSP2,Y4000\nCONSULTANT,HUNTRESS ASSOCIATES LLC,Y4000\nCORP EXECUTIVE,RETIRED,J1200\nCO FOUNDER,CROSSROADS CATTLE,Y4000\nMOREMAN-YERIAN INSURANCE,,F3100\nRealtor,Houston Metropolitan Realty,F4200\nEXECUTIVE,RSVP PERSONNEL AGENCY INC,Y4000\nREAL ESTATE PRACTICE,SELF-EMPLOYED,F4000\nCPA,PESTA FINNIE,F5100\nTEACHER,CASE WESTERN,Y4000\n\"HOLLAND, GROVES, SCHNELLER & STOTZA\",,K1000\nSocial Worker,Icc,Y4000\nReal Estate Insurance,Austin Co Inc,F4000\n\"ATTORNEY, CLERGYMAN, COUNSELOR, EDU\",\"ELIZABETHTOWN COLLEGE, MCCANN SCHOO\",H5100\nFormer Ambassador to Peru,Retired,X1200\nAttorney,Rothstein Rothfeldt,K1000\nPRESIDENT AND CEO,\"CALIFORNIA WASTE SOLUTIONS, INC\",E3000\nEXECUTIVE VICE PRESIDENT PUBLIC AFFAIR,PHRMA,H4300\nRAHR MATTING CO,,Y4000\nDeveloper,Hilton Inc.,J1100\nBUCK MEDICAL ASSOC,,H0000\nSOFTWARE,APPIAN,B4200\nExec,24-7 Fitness Clubs,G5800\nHVASS WEISMAN & KING,,K1000\nCONANT HAY ASSOC,,Y4000\nAttorney,Kauff Mcclain & Mcguire LLP,K1000\nGeneral Counsel and Senior Vice Presid,Microsoft Corporation,C5120\nBRACKEN EXPLORATION,,E1150\nSTOREOWNER,,J5100\npolicy analyst,the Urban Institute,H6000\n\"ICE, MILLER\",,K1000\nLAND DESIGN CONSULTANTS INC,,B2000\nPARTNER,DOBBS BROTHERS MANAGEMENT,T2300\nMANAGING BROKER,EWM REALTORS INC,F4200\nOWNER,DUFFY EQ CO,Y4000\nTRI-ARC FOOD SYSTEMS,,G2000\nINDEPENDENT TRAVEL AGENT,LEGENDARY WORLD,Y4000\nATTORNEY,CHAMBERS STEINER PC,K1000\nPRESIDENT,OIL OPERATOR,G1200\nphysician,Centracare,Y4000\nTeacher,UB Law School,H5170\nFARIS MAILING INC,,Y4000\nRADIA,UNIVERSITY HOSPITALS CASE MED,H1130\nBUDDY MAJOR CATTLE CO,,A3000\n\"MILLER'S MUTUAL INSURANCE\",,F3100\nGENERAL MANAGER,LIBERTY CASKET COMPANY,Y4000\nOWNER,GILLROY & ASSOCIATES,Y4000\nINVESTOR,\"HARBORVIEW ADVISORS, LLC\",Y4000\nEngineer/Rancher,Self,A3300\nREALTOR,REAL ESTATE INTEREST GROUP,F4000\nCo-Owner,Florida Crystals,A1200\nLANFORD BROTHERS,,Y4000\nRETIRED,USC,J5100\nVice President,InVision Technologies,C5000\n,METROPOLITAN WASH COUNCIL OF  GOVT,X3000\nCONSULTANT,CAPITOL STRATEGIES,J1100\nART CONSULTANT,BAVER-NARRINEZ,Y4000\nOWNER,MELVIN & MELVIN,K1000\nHONDERD JEWERLERS,,G4600\nTeacher,Hanover County Public Schools,X3500\nexecutive,\"the O'Sullivan Group Inc.\",Y4000\nRESTAURANT CO-OWNER,SELF,Z9500\nPhysician,The Abner Center for Plastic Surgery,H1130\nPROGRAM MANAGER,CAMPAGNA CENTER,Z9500\nProfessor Retired,University Of PA,H5100\nINVESTMENT PARTNER,APOLLO MANAGEMENT,F2600\nSENIOR VICE PRESIDENT,ICE,F2400\nPresident,Stillwaters Consultation,Y4000\nBIOMEDICAL RESEARCH,FORSYTH INSTITUTE,JH100\nSecretary,\"Nor-Cal Products, Inc.\",Y4000\nretired,Eglinton Investment Company,Z9500\nCEO,SYSTEM SUPPORT SOLUTIONS,Y4000\nPARTNER/CEO,\"HARDESTY & HANOVER, LLP\",B4000\nDirector,Center for a New American Dream,J1200\nBEARING SERVICE CO,,F2300\nClinical Director,RG Psychological Svcs,Y4000\nRetired,Saint Paul Public Sc,X3500\nPRESIDENT,\"TRIAN FUND MANAGEMENT, LP\",G2900\nMarketing Director,Trust For Public Lan,JE300\nASSISTANT PRINCIPAL,LEE COUNTY SCHOOL DISTRICT,X3500\nTEACHER,\"AOYAMA EIGO GAKUIN, JAPAN\",Y4000\nPRESIDENT,ADAMS BUILDING AND CONSULTING CO,Y4000\nPHYSICIAN,JOHNS HOPKINS UNIV,H5100\nSTATE OF KENTUCKY,,J1200\nHAROLD DICKEY TRANSPORTATION,,T0000\nPRESIDENT AND CEO,WALKER AND ASSOCIATES,H1110\nConsultants,\"Algodones Associated, Inc.\",Y4000\nPHYSICIAN,NO. SHORE UNIV HOSPITAL,H1130\nManagement Consultan,Deloitte & Touche LLP,Z9500\nGroup President,NBC,G5210\nWADDELL CO.,,Y4000\nREAL ESTATE,NEWMARK,Y4000\nDrafting,Anderson Engineering,B4400\n\"SVP, Chief Informati\",Fidelity Investments,F2100\nPRESIDENT,MEDIGUIDE,Y4000\nPublic Affairs,the Merrill Group,Y4000\nPRESIDE,GLASSMERE FUEL SERVICE INC.,G4300\nIndependent Artist/performer,Self Imployed,Y4000\nLAWYER,BALLARD SPAHR ANDREWS & INGERSOLL/L,K1000\nAcupuncturist,Lehigh Valley Acupuncture Cent,H2100\nPRESIDENT,SUTTER MASONRY,B3000\nBUSINESS OWNER,SELF-EMPLOYED,H5200\nLOAN OFFICER,JEFFERSON TITLE GROUP,J2200\nAttorney,\"WILLIAM A. STREFF, P.C.\",K1000\n\"VP, Sales/Mkt SRG Vi\",\"Alcon Laboratories, Inc.\",H4000\nDISTRIBUTOR,DCNE,Y4000\nOWNER,AURELIUS ADVISORS,F2100\nREAL ESTATE INVESTMENT MGMT,N/A,F4000\nC.P.A.,R.S.M.  MCGLADREY,F5100\nRealtor-Home Builder,Self-Emplyed,F4200\nPRESIDENT &,BLUE CROSS OF MICHIGAN,F3200\nATTORNEY,\"FREEMAN D'AIUTO PIERCE\",K1000\nMinister,Brown Memorial Baptist Church,X7000\nSUTHERLAND & ASSOC INC,,Y4000\nPrincipal and Founder,\"NW Financial Group, LLC\",F2300\nEXECUTIVE VICE PR,THE KOFFLER GROUP,Y4000\n\"Senior Director, Operations\",\"Serious Materials, Inc\",Y4000\nClinical Psychologist,Kaiser Permanente,H3700\nPresident,\"Pet's Rost Inc\",Y4000\nPRESIDENT,MOLDED FOAM PRODUCTS,Y4000\nCHAIRMAN,BUFFETT FOUNDATION,X4110\nHOUSEWIFE,HOUSEWIFE/HOUSEWIFE,G4000\nTHE SHORENSTEIN COMPAN,,F4000\nRELIABLE CREDIT CORP,,F1400\nHEALTHCARE EXECUTIVE,AHASA,M3300\nOWNER,KEM-TEC LAND SURVEYORS,B4300\nConsultant,Organization Resources Counselors,J7400\nAssociate Professor,Univ Of Texas,H5100\nOWNER,\"GRIGSBY PETROLEUM, INC.\",E1100\nEXECUT,POHAKU FUND OF THE TIDES FDN,JE300\nORAL & MAXILLO FACIAL,SELF EMPLOYED,H1400\nR&H MENS SHOP,,Y4000\nREALTOR,RINEHART REALTY CORPORATION,F4200\nMANAGEMENT INSURANCE CONSULTANTS,,F3100\nENGINEERING TECH,MARICOPA COUNTY,X3000\nG & L DAVIS MEAT COMPANY,,G2300\nR. R. J. FARMS INC.,,A1000\nOWNER,THE HAMILTON COMPANIES,F4100\nOFF,SEVEN GROUP FINANCE CORPORATION,Y4000\nPOND NORTH LLP,,K1000\nConsultant,Brazile Associates LLC,Y4000\nADMINISTRATOR,4C FOR CHILDREN/ADMINISTRATOR,Y4000\nVice President,Uranium Energy Corp,E1000\nAREA RESEARCH LIGHTING I,,Y4000\nSKC ELECTRIC,,E1600\nKOPPERS COMPANY,,B1000\nAttorney,Barnes & Thomburg,K1000\n\"GOMEZ, BAKER AND ASSOC\",,Y4000\nPolicy Analyst,National Center for Children & Fam,J1200\nOWNER,\"ASSET ENTERPRISES, INC.\",Y4000\nPRES,BRUCE CARTER ASSICIATES L.L.C.,Y4000\nBETTERMAN KATLEMAN,,Y4000\nABBOTT OIL,,E1180\nMARKETING,A.G.F.A. HEALTHCARE,H0000\nJ M YOUNG & SONS INC,,B0500\nKOEHN & ASSOC,,B2000\nWHITE HOUSE,,J1200\nHARBOUR ENTERPRISES,,Y4000\nHospital administrat,Sacred Heart Medical Center,H2100\nPROCESS/INVESTIGATIONS,SELF-EMPLOYED/PROCESS/INVESTIGATION,G0000\nRetired College Prof,(Former) University Of Wi-Stevens Poin,H5100\nArt historian,Metropolitan Museum,X4200\nPresident,Omni Facility Services,Y4000\nREAL ESTATE,THE SELECTIVE GROUP,F4000\nPHYSICIAN,CONTRACTED MES GROUP,Y4000\nExecutive Director,Crescent Place,Y4000\nPhysician,Quality Radiology,J1200\nCEO/PRESIDENT,\"BOURIS INDUSTRIES, INC.\",J7500\nTEACHER,PRINCETON CITY SCHOOLS,X3500\nEXECUTIVE VP/CFO,WARNER BROTHERS,C2000\nRN. QAPI COORDINATOR,CHEROKEE ELDER CARE,Y4000\nAMBOSE CORPORATION,,Y4000\nLawyer/Partner,\"O'Melveny & Myers\",K1000\nReal Estate Development,\"AHD, Inc.\",F4000\nAttorney,Sherin & Lodgen,K1000\nSTAMP DEALER,SELF,G4600\nNCNB BANK,,F1100\nM&S ARAIN,,H1100\nPHYSICIAN/OWNER,GOODHEALTH P.C/PHYSICIAN/OWNER,Y4000\nATTORNEY,JOHNSTON COMPANY,C2300\nMANAGER,AZUR ENTERPRISES LLC,G5200\nBGH ENTERPRISES,,Y4000\nlaw enforcement,Hillsborough County,X3000\nteacher,Sacramento Co. office of Ed,Y4000\nrequested,requested,F1200\nACTUARIAL CONSULTANT,MILLIMAN INC.,F5500\nAUDIO TECHNICIAN,IATSE LOCAL 52,Z9500\nEXECUTIVE,GMRI,Y4000\nretail buyer,Bellevue Arts Museum,J7400\nCONSULTANT,ABRAHAM CONSULTING,Y4000\nACCOUNTANT,OSBORNE RINCON,Y4000\n\"Vice-President, Memb\",Hospital Association of Southern Calif,H2100\nVP GOVERNMENT RELATIONS,DARDEN,Y4000\nA&R MARKETING/SALES/MARKET. MGR.,,Y4000\nretired,\"land o lakes, inc.\",Z9500\nSCIENTIST,US PHARMACOPEIA,Y4000\nCourt Reporter/Business Owner,\"Fernandez & Associates, Inc\",G5200\nOF COUNCIL,QUINN EMANUEL,K1100\n\"CHAMBERLAIN D'AMANDA\",,K1000\nPHYSICIAN,PHOENIX PATHOLOGISTS,H1130\nCHAIRMAN & CHIEF EXE,SAGITTARIUS BRANDS,Y4000\nFundraiser,Safe Kids World Wide,J7700\nATTORNEY,YAMAMOTO AND SETTLE,K1000\nRETAIL,REQUESTED,Y4000\n\"SOFTWARE ENGINEER,\",LOCKHEED MARTIN,D2000\nGA PUBLIC SERVICE,,X3000\nLUNDY PACKING COMPANY,,G2300\nBOW STEEL CORPORATION,,M5000\nFINANCE CONSULTANT,SELF-EMPLOYED BANK FINANCIAL SERVICES,F5000\nCARE WESTERN,,J7400\nMARICOPA CO. MED EXAMR OFC,,Y4000\nretired professor,Michigan State University,X1200\nATTORNEY,\"SEATON, BECK & PETERS\",K1000\nMAXIM INTERGRATED PRODUCTS,,B4400\nPresident,Louis Stern Fine Arts,Y4000\nVP of Public Policy,Biocom,Y4000\nCPA,ROGER DESLAURIERS,J1100\nWORDSMITH,,Y4000\nSr. VP,Deere & Co.,A4200\nBoard Member,NRA,G2900\nsoftware engineer,IBM Corp.,C5100\nINVESTMENT MANAGER,\"BOSTON PROVIDENT, L.P.\",F2100\nW & J MGMT CO INC,,Y4000\nCITY OF SAN FRAN,,X3000\nBusiness Development Manager,SYSCO Minnesota,G2900\nCENTRAL BAPTIST OF,,Y4000\nSenior Vice President,Missouri Bankers Association,F1100\nAttorney/Executive,Summit Entertainment,C0000\nAttorney,Artabane & Belden PC,K1000\nINFO REQUESTED,Advantus,Y4000\nCEO,Butler Memorial Hospital,H2100\nHOEBNER BAGGETT & DANIELS,,Y4000\nOWNE,BONHAM CHRYSLER CAR DEALERSHIP,T2300\nAttorney,\"Wertz Law Firm, PC\",K1000\nSoftware engineer,Self employed,J1200\nCosntruction Equipment Distributor,Leppo Rents/Bobcat of Akron,B6000\nROBERT KEYS & ASSOCIATES,,Y4000\nADMINISTRATOR,UNITED NATIONS,X8000\nAttorney,\"McInerny and Assoc, (Public Affairs)\",K1000\nExecutive Vice Presi,Comcast Programming Investment,C2200\nExecutive Vice President,SUSQUEHANNA COMMERCIAL FINANCE INC,G5300\nInformation Requested,Sourcedesign,Y4000\nCOMMERCIAL INFO SYSTEM,,Y4000\nSOUTH SAN FRANCISCO UNIFIED SCHOOL,,X3500\nEXECUTIVE DIRECTOR,PGE,E1620\nCeo,E. D. Walton Construction Co,B1500\nATTOR,\"PRETI, FLAHERTY, BELIVEAU, ET\",K1000\nForensic Accountant,Cauley Bowman Carney & Williams,K1100\nExecutive Director,Fox Valley Clinical Research,Y4000\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,ST. JOSEPH HEALTH CENTER,H2100\nAttorney,BLF Strategies,Y4000\nMed Tech,Univ Of Wa Medical C,H2100\nRETIRED PROF,UNIV OF CAL AT DAVIS,H5100\nSENIOR VICE PRESIDENT,SALESFORCE.COM,C5140\nSEDGEWICK JONES OF GA,,F3100\nCONSTRUCTION,GUS CONSTRUCTION,B1500\nROBERT E LAHM PLLC,,K1000\nHEALT,PRESBYTERIAN MEDICAL SERVICES,H2100\nFEDERAL EMPLOYEE,ENVIRONMENTAL PROTECTION AGENCY,X3000\nEXECUTIVE DIRECTOR,NLCOG,Y4000\n\"LUBY'S INC\",,G2900\nBUSINESS EXECUTIVE,DERM101 LLC,Y4000\nWealth Management,UBS Finacial Services,F2100\nINSURANCE @ FINANCIAL SERVICES,STATE FARM,F3400\nFinance Exec.,Microsoft,C5120\nUnion Representative,SEIU 250,LG300\nRESTEEL SUPPLY,,Y4000\nKAPLAN DRYSDALE,,Y4000\nCIVIL ENGI,TERRACON CONSULTANTS INC,Y4000\nMEDICAL DIRECTOR,GREATER HOUSTON EMERGENCY,Y4000\n\"SECURITY NAT'L BANK\",,F1100\nOwner/President,Niehaus Landscape Co.,B3600\nFABRIC STORE,TEXTILE,M8000\nPrivate Equity,Calvert Street Capital Partner,F0000\nContract Transportation Specialist,Usps,X3700\nATTORNEY,MARY & DANIEL LOUGHMAN FOUNDATION,Y4000\nSELF,HOUSTON FINANCIAL,Y4000\nGENERAL CO,NATIONAL WEATHER SERVICE,X3000\nSRS INTERNATIONAL CORPORATION,,Y4000\nSENIOR CHAIRMAN,W.W. GRAINGER INC.,G4500\nNATIONAL TELEPHONE ASSOCIATION,,Y4000\nHOLLIDAY FENOGLIO FOWLER,,F4600\nATTORNEY,\"JOHNSON & NELSON, PC\",K1000\nTREASURER,INFINEAN TECH.,Y4000\nNYACC,,Y4000\nCEO,PRUITT CORPORATION,H2100\nPresident,Circle Financial Group,J1200\nTRUCK DRIVER,LA DEPT OF WATER ANDPOWER,Y4000\nRESEARCH DIRECTOR,S.J.S.U. FOUNDATION,Y4000\nSTUDENT,STUDET,Y1000\nWorkshop Manager,Hope Services for Developmentally Disa,Y4000\nC D WEST AND COMPANY,,F3100\nMake up Artist,Jeanine Lobell,Y4000\nZYMARK CORP,,Y4000\nGENERAL MANAGER,GENYSIS GROUP,Y4000\nEXECUTIVE O,SCANTIBODIES LABORATORY,Y4000\nOCCUPATIONAL T,D.B.K. O.T. SERVICES,Y4000\nAnarchist,\"Radiology Services, PA\",H1130\nEVENT MANAGER,\"PREMIERE RACING, INC\",Y4000\npartner,Bockorny-Petrizzo,K2000\nSENIOR MANAG,BEAR STEARNS & CO INC.,F2300\nCounty Supervisor,Columbia County,X3000\nDAWSON GALANT AND SULIK,,Y4000\nRESEARCHER,STATE OF TX,X3100\nPHYSICIAN,LAKE REGION HEALTH CARE,Z9500\nSTRATEGIC ADVISOR,US DEPT OF THE ARMY,X5000\nVP,PHILADELPHIA FEDERATION/VP,Y4000\nHI DEPT OF EDUCATION,,X3500\nCreative Artist,3 Arts Entertainment,C2000\nAdministrative Assistant,MIT Sloan Center for Information Syste,Y4000\nLAWYER,GUIAN STEVENS RYBAK,K1000\nAttorney,Dykema Gossett,H5100\nNATL BOARD OF PROF TEACHING STANDAR,,H5000\nDISTRICT OPS MANAGER,UPS,T7100\nHOME MAN,BLUE HERON HOME MANAGEMENT,Y4000\nInvestor,Torrey and Associates,F7000\nFINANCIAL PLANNER,LIFETIME WEALTH MANAGEMENT,Y4000\nJOINT COO,SIPCAM AGRO USA,A4100\nPhysician,Suniti Medical Corporation,H0000\nINVESTM,NMEW ENGLAND PENSION CNSLT.,F2000\nPRES,MISSISSIPPI LIMESTONE CORP/PRES,B1000\nVENTURE CAPITALIST,JVEN CAPITAL,F0000\nProfessor,Antioch Univ,H5100\nOwner,Sr Networking Inc,Y4000\nBROKER,WELLS FARGO SBA LENDING,G2900\nCARRIAGE RENTAL,,Y4000\nChief Information Of,Lions Gate Entertainment,Y4000\nCIVIL ENGINEER,\"FENTZ CONTRACTORS, INC/CIVIL ENGINE\",Y4000\nKELLY HOUSE LP,,F4500\nFounder & Co-Chairma,T.C. Motor Company,Y4000\nCONTRAC,TENNESSEE ELECTRIC CO. INC.,B3200\nPILGRIM BAXTER AND ASSOCIATES,,F2100\nTELEDYNE-BROWN ENGR,,D3000\nPROVIDENCE NEWBURG HOSP,,H2100\n\"BUREAU CHIEF, CYFD\",STATE OF NEW MEXICO,X3000\nNurse,Kaiser Permanonte,H3700\nExecutive Director,NY Foundation for The Arts,Y4000\nPRESIDENT AND CEO,HEREFORD STATE BANK,F1100\nTOTAL LOGISTICS RESOURCE,,T7000\nEICAK COMPANY,,Y4000\nATTORNEY,BROWN AND CONNERT,K1000\nCENTURY EQUIP. INC.,,Y4000\nEAP,Ford Motor Company,T2100\nCEO,Prosper Marketpalce,C5140\nTeam Leader,Northern Trust,J1200\nEDUCATOR,COUNTY OFFICE OF EDUCATION,J1100\nU S ENVIROSYSTEMS INC,,Y4000\nFIGHTING BULL TECHNOLOGY,,Y4000\nTeacher,Richland Cty School Dist.,X3500\nLegislative Liaison,State of Wisconsin Supreme Court,Y4000\nNURSE,CAMBRIDGE MANOR HEALTH CARE,J1100\n4D CITRUS & SOD,,A1400\nState Coordinator,Aflac,F3200\nConsultant,Transystems,B4000\nCONTRACTOR,ANTICO ESCAVATING,Y4000\nCORPORATE ACCOUNTS WORLD,KOHLER CO.,T9100\nNetwork Administrato,Hammond Collier Wade Livingstone,Y4000\nATTORNEY,\"MAYNARD, COOPER & GALE, PC\",Z9500\nExecutive,Signature Flooring Systems,Y4000\nOMNIBUS INC,,Y4000\nVice President,Citigroup Inc,Z9500\nNeal Gerber Eisenberg,,K1000\nInformation Requeste,\"Jones, Day, Reavis, & Pogue\",K1000\nWEBER PUB. RELATION WORLDWIDE,,G5210\nMktg Exec,Self employed,G0000\nGLOBAL MILITARY MARKETING,,Y4000\nAssistant Professor,Singapore Management University,J1200\nBUSINESS AGENT,SHEET METAL WORKERS LOCAL #162,LB100\nADULT CARDIOLOGY,Newark Beth Israel Medcl Ctr,H1100\nMETROPOLITAN DADE COUNTY ASSOCIATIO,,L1400\nPhysician,ABINGTON HERMATOLOGY ONCOLOGY,H1130\nExecutive,Kissinger Associates Inc,G5200\nBACOLER FASHION COLLEGE,,H5200\nSELF-EMPLOYED,COMMERCIAL TRANSPORT CONCEPTS,Y4000\nSHAW PITTMAN POTTS TROWBR,,K1000\nPRESIDENT,IVP,Y4000\nEXEC.,NES. INC.,Y4000\nOWNER,THE EARLY YEARS SCHOOL,Y4000\nDEALER,BELL WASIK INC,T2300\nWAYNFERTE SCHOOL,,H5100\nCO/OWNER & BOOKEEPER,INFORMATION STATION SPECIALISTS,J1100\nFinancial Analyst,Wachovia Securities,F2100\nPRESIDENT,CASE WESTERN RESERVE UNIV,H5100\nVP,CAROLINA LUMBER,Y4000\nAT HOME,AT HOME,C5130\nLabor Attorney,\"Herrick, Feinstein LLP\",K1000\nJUSTICE,MI SUPREME COURT,X3200\nConstruction,\"Nelson Construction, Inc\",B1500\nSTAKER & PARSON CO.,,B5100\nAttorney,\"Bendich, Stobaugh and Strong\",K1000\nSWINGSHIFT,,J1200\nEPIDEMIOLOGIST,NANO SCIENCE AND TECHNOLOGY INSTITUTE,Y4000\nSMALL B,\"DELTA TECHNOLOGIES, LIMITED\",Y4000\nEditor,Gawker Media,J1200\nLumber Business,\"H.S. Farrell, Inc.\",Y4000\nPHYSICIAN,PUBLIC HEALTH SEATTLE,Y4000\nattorney,NY State AG,Y4000\nChairman,Information Requested,G0000\n,\"GREENSFELDER, HEMKER & GALE, PC-IL\",K1000\nSelf Employed,Honeycutt Consulting Group,Y4000\nPHYSICIAN,PATHOLOGY SERVICES PC,H1130\nORTHODONTIST,CENTRAL MISSOURI ORTHODONTICS,Y4000\nDEVELOPER,BUILD,F4100\nCOO,PACIFIC DEFENSE SOLUTIONS,Y4000\nNAVIGATION TECHNOLOGIES CORP,,Y4000\nADAMS LITHO,,C1300\nExecutive,First Affirmative Financial Network,F0000\nEXEC,NHS LEASING AND CONSULTING LLC,H2200\nATTOTNEY,\"LITCHFIELD & LITCHFIELD, PC\",Z9500\nDOE ST LOUIS,,B1000\nCouncilman,City Of Compton,X3000\nPhysician,U.C.I Medical,H0000\nPRES,AMERICAN METALS CO INC,M2400\nTelcom,World Data,Y4000\nInvestor,ACON Investments,F7000\nLEGISLATIVE RES,SENATOR MARK DAYTON,Y4000\nNATIONAL ACCOUNTS MANAGER,AMERICAN HOTEL REGISTER,T9100\nREALTOR,KELLER WILLIAMS SOUTHERN ARIZONA,Y4000\nPATHOLOGIST,S OK PATHOLOGY ASSOC,H1130\nMECHANICAL ENGINEER,\"MUSTANG MFG., INC.\",Y4000\nATT,LOCKHART COMPANIES INCORPORATED,Y4000\nexecutive,Sandersville Railroad,J1100\nHOMEMAKERS/STUDENT/HOMEMAKERS/STUDE,,Y1000\nPROFESSOR OF,VANDERBELT UNIVERSITY,H5100\nPhysician,Ferrell-Duncan Clinic,H1130\nC.E.O.,ANTONOV AIRCRAFT D.C.,T1200\nExecutive,BROADWAY REAL ESTATE PARTNERS LLC,F4100\nWILLIAM A M BURDEN &,,Y4000\nCITRUS GROWER,\"ALL FLORIDA CGA, INC.\",A1400\nVICE PRESIDENT,CHESTERFIELD CO,Y4000\nTWIN CITY BANK,,F1100\nR D S MFG INC,,Y4000\nNot employed,NA,C5140\nExecutive,Reece Construction Co.,B1500\nSELF EMPLOYED,CITY OF DUBLIN,X3000\nBUSINESS OWNER,HOUSTON-JOHNSON INC/SELF EMPLO,Y4000\nGovernment Relations,Beverly Enterprises,H2200\nTECHER,CASTILLEJA SCHOOL,F2100\nLAWYER,\"CONLIN, MCKENNEY & PHILBRICK\",K1000\nBLACK MOUNTAIN RANCH,,F4000\n\"Director, Women's Institute\",Univ of St Louis,H5100\nLOCKHEED-ENGINEERING & ENVIRO,,D2000\nAccountant,Kpmg,F5100\nCERTIFIED PUBLIC ACC,PLANTE & MORAN,Y4000\nDOWN HOCK COMPUTERS,,C5100\nTRIDENT TOOL CO INC,,M5100\nPhysician,Health CenteR,H2000\nREGISTERED NURSE,\"ADVANCED CASE MANAGEMENT, INC\",Y4000\nNUMISMATIST,\"RAGINS, INC\",Y4000\nHEATING,ROHAN PLUMBING,B3400\nREALTOR,RE-MAX ALLSTARS/REALTOR,Y4000\nPHYSICAL THERAPIST,UNEMPLOYED,Z9500\nPRESIDENT & CEO,SIC INC.,Y4000\nHEALTH ASSISTANT & CLERCK,M.I.S.D.,X3500\nPARALEGAL,MORGAN AND MORGAN,K1000\nTHOMPSON HOLMES INC,,B2000\nCHIEF EXECUTIVE,DAVA PHARMACUTICULS,H4300\n\"GOOD, WILDMAN, HEGNESS & WALLEY\",,J1100\n,TELECOMMUNICATIONS DEVELOPMENT COR,Y4000\nGEOGRAPHER,ICF INTERNATIONAL,G5200\nComputer Software,McKenzie Cooper Limi,Y4000\nPRESIDENT,ALGAR CONSTRUCTION,B1500\nATTORNEY,HATHAWAY LAW FIRM,Z9500\nCEO,\"CHAMPION, INC\",Y4000\nInformation Requested,Upreach International,Y4000\n\"ST JOSEPH'S RECTORY\",,Y4000\nCONSULTANT,ARC ADVISORY GROUP,Y4000\nAttorney,\"Sainler, Oesli, Sheieff\",K1000\nEXECUTIVE DIRECTOR,UNIVERSITY OF HOUSTON,H5100\nIMAGEPOINT,,Y4000\nCONSULTANT,PIERCE ATWOOD CONSULTING,Y4000\nCEO,CONENZA,G1000\nPHYS,UNIVESITY OF TEXAS MED. SCHOOL,H5150\nIN,EMBARCADERO CAPITAL PARTNERS LLC,F0000\nWeb Designer,Bank of America,F1100\nTeacher,\"Glenbard, District 87 Schools\",X3500\nCM SERVICES INC,,Y4000\nAUDIOLOGIST,AUDIOLOGY CLINIC-UCLA MED CTR,H1700\nRETAILER,CUTTING CORNERS INC.,Y4000\nRetired Lawyer,None,J7400\nTRAINMAN,BNSF RAILWAY,T5100\nCOMONENT ASSEMBLY,,Y4000\nDUKE/FLUOR DANIEL/V.P. PROJECT DESI,,B1000\nADMINISTRATO,1ST SOUTHERN FINANCIAL,F5100\nCONSULTANT,MJD INC.,Y4000\nPresident,CMH Inc.,Y4000\nAssociate,Bob Knight Photo,Y4000\nTECH REPS INC,,G5200\nFinancial Consultant,MarketSphere,J1200\nPHYSICIAN,PENSACOLA RADIOLOGY CONSULTANT,H1130\nPresident,Austin Bank Texas,F1000\nCFO,ASSURED GUARANTY LTD.,F5000\nCOMVEST INVESTMENT PARTN,,F7000\nPRESID,DIGITAL AUTHENTICATION TECH.,Y4000\nVP SALES,SPECTRA,Y4000\nPresident/CEO,\"Gotham Organization, Inc\",F4100\nPresident,FCL Builders,B1500\nSales,Allen Aircraft,Y4000\nCeo,BUCKWITH ELECTRIC CO,B3200\nFLOOR TRADER,,F2200\nPASTOR,METROPOLITAN BAPTIST CHURCH,X7000\nDOUGLAS COOPER ATTORNEY AT LAW,,K1000\nretired,,G2500\nLEAVITT & ASSOCIATES,,Y4000\nMETRO MEDIA,,C4100\nVICE PRESIDENT,CAMBRIAN COMM. INC.,Y4000\nZ-VEX EFFECTS,,Y4000\nCOVE SHIPPING,,Y4000\nBONNEVILLE RESEARCH,,G5270\nInvestment Manager,\"Tweedy, Browne Co. Llc\",F2100\nConsultant,Walton Group,Y4000\nPRESIDENT,PACKAGING CO.,Y4000\nSENIOR VP NEW CONSTRUCTION,Irwin Mortgage,F4600\nPsychologist,Kathleen Andree-Rissel,Y4000\nGOVT. ADM,CA ST ASSEMBLY,Y4000\nRetired,SpringForward Press,J1200\nINVESTOR & EDITOR,,JE300\nSELF-EMPLOYED/NURSERYMAN/ FARMER,,A8000\nOwner,Maruch Supermarket,Y4000\nStrategic and Investment Advisor- Phar,Mehta Partners LLC,Y4000\nTrading,Ubs,F2100\nEMANUEL COMPANIES INC,,Y4000\nTAX CONSULTANT,SELF,Z9500\nPhilanthropist,CA Emerging Technology Fund,Y4000\nAttorney,Hogar & Hartson,Y4000\nKASS INDUSTRIAL,,Y4000\nGAYLORD & ARMAMEND,,Y4000\nDevelopment Director,\"Town of Guilderland, NY\",Y4000\nIVEY COMPANIES,,G5270\nAssistant VP/Governm,\"Va., Md. & Del. Assn. of Elec Co-op\",E1610\nComputer Programmer,Aesbus,Y4000\nPresident,D&M Painting,B3000\n\"LAWYER, semi-retired\",Tonkon Torp LLP,K1000\nPartner,Sherman & Sterling,K1000\nCPA/Attorney,\"Houghton-Wagman Enterprises, Inc\",Y4000\nPresident,Scope Technologies/Seating,Y4000\nHILL COUNTRY ENVIRONMENT,,Y4000\nOffice Manager,Msc,Y4000\nCONSULTANT,SELF EMPLOYED,Z9500\nRETIRED,PRIVATE PRACTICE,G0000\nRETIRED,TERRY.HAIGHTGMAIL.COM,J1200\nPresident,John Adams Real Estate,F4000\nEngineer,Oilfield Development Engineeri,B4400\nEngineer,Potowmac Engineers,B4400\nInsurance Agent,Financial Partners,F3200\nATTORNEY,\"BIRCH, HORTON, BITTNER, ET AL\",K1000\nEmergency Physician,\"BOHOMED, PA\",H1100\n\"President, Asset Allocation Division\",FMR LLC,F2100\n\"O'DONNELL OIL CO\",,J1100\nPRINCIPAL,ARGUS,Y4000\nExecutive Director,TCA,B5100\nAttorney,\"Dubbin & Kravetz, LLP\",K1000\nSELTZER & RYDHOLM,,Y4000\nSELF HELP CLEARVIEW SENIOR CENTE,,J7400\nHARMONY CONSTRUCTION CORP,,B0500\nEXHIBIT DEVELOPER - EVALUATOR,\"CHILDREN'S MUSEUM OF WINSTON-SALEM\",X4200\nBUSINESSMAN,A-Z WHOLESALER,Y4000\nPARTNER,WHITTEN & DIAMOND,K2000\nBusinessman,PriceSmart,Y4000\nPresident,Fairs Lee Investments,F7000\nCATTLE BREEDER,MAPLES SHORTHORNS,Y4000\nExecutive Coach,KC & CO,Y4000\nEXECUT,JEWELERS VIGILANCE COMMITTEE,G4600\nINDEPE,\"SELLING PARADISE REALTY, INC\",F4200\nMECHANIC,SELF EMPLOYEED,T2400\nT N HERITAGE ENTERPRISES,,B2000\nTelecommunications,\"Siemens, Icn\",C4600\nMANAGEMENT,MULLIN PLUMBING,B3400\nInvestment Research,Trend Macrolytics LLC,J1100\nGOVERNMENT RELATIONS,\"PECK MADIGAN JONES & STEWART, INC.\",K2000\nCONSULTANT ENGINEER,SELF,G5200\nAdministrator,McLaren Medical Cntr.,H0000\nREAL ESTATE,EAST WEEST PARTNERS,F4100\nRET.,USAF (RET),Y4000\nPETROLEUM INVESTMENTS,SELF,E1100\nWINNING STRATEGIES,,Y4000\nT R REMIXER INC,,Y4000\nMAL-SU BOROUGH SCHOOL DIST,,X3500\nF/V TALON/CREW,,Y4000\nSTANLEY ORCHARDS SALES INC,,Y4000\nALABAMA CENTRAL CREDIT UNION,,F1300\nPartner,Zetlin & Dechiara,K1000\nADMINISTR,SUBURBAN EMERGENCY CENTER,Y4000\nReal Estate Broker,Onorato Realty,F4200\nAttorney,Holiday Management Associates,F4000\nEnvironmental Scientist,Self employed,E2000\nNUMETRICS INC,,Y4000\nHEALTHCARE EXECUTIVE,AMERICHOICE,H3700\nWHITE RIVER GAS CO,,Y4000\nENGINEER,EDGEBORO,Y4000\nINVESTMENT MANAGEMENT,KIDRON CAPITAL LLC,F2000\nSOFTWARE DEVELOPER,ZEMBU LABS,J1200\nOWNER,JON COATS ESQ,Y4000\nHOSPITAL ADMINISTRATOR,GNYHA,H2100\nProduction Supervisor,Atmel Corp,Y4000\nINFO REQUESTED,Albers & Albers,Y4000\nPRESIDENT,COCHRAN TRANSPORT SRVC.,T0000\nResearch & Analysis,DE Shaw & Co,Z9500\nENTREPRENEUR,MOTIONLOFT,Y4000\nChairman/CEO,Tammac Corp.,Y4000\nLAWYER,CLICK 4 COMPLIANCE,Y4000\nPresident/CEO,General Cigar,A1300\nBANKER,\"SECURITY BANK OF BIBB., CO.\",Y4000\nU S MIDEAST TRADING INC,SELF,Y4000\nEXECUTIVE VP,SONY BMG MUSIC ENTERTAINMENT,C2600\nCONSULTANT,THE CRANE GROUP,K2000\nCATAMOUNT MANAGEMENT,,F4200\nENGINEER,SOLIS PARKER & ASSOCIATES,Y4000\nteacher,Georgetown School,Y4000\nEVANS INC,,J5100\nRetired Officer,Sheet Metal Workers Local #66,LB100\nUNION STATION ASSISTANCE CORP,,Y4000\nOWNE,\"CENTPLEX BUILDING SERVICES, LL\",Y4000\nhomemaker,self,A3000\nSALES & MGT,\"AMEX, TERA NEUROSCIENCE\",Y4000\nPATE ENGINEERS,,Y4000\nPartner-Law Firm,Scott & Liburd,K1000\nCEO,Craig Inc.,Y4000\nREAL ESTATE INVESTOR,SELF EMPLOYED,J1100\nWildlife Biologist,Devine Tarbell & Associates,J1200\nPROFESSOR,UNIV OF NORTH CAROLINA,J1200\nSoftware Programmer,Hewlett Packard,J1200\n\"SANDERSON FARMS, INC\",,A2300\nBuilder,The Lawson Company,Y4000\nSocial Worker,Hudson Mohawk Recovery Cente,Y4000\nPublisher,\"ACE Publishing, Inc\",C1100\nReal Estate,Caubox Investments Inc.,Y4000\nHERMANN OAK LEATHER,,M3200\nFILM PRODUCER,NEW MEDIA MAGIC LLC,Y4000\nACSPECT CORP,,Y4000\nBANKER,PACIFIC NORTHWEST BANK,F1000\n\"SANCHEZ O'BRIEN OIL & GAS\",,E1150\nHERMANN OAK LEATHER,,Y4000\nGLASS COMPANY,,J5100\nEngineer,Wind River Systems Inc,C5120\nACCOUNTANT,CASSENS,Y4000\nBUSINESSWOMAN,BROWN COMPANY,K2000\nSurgeon,Crescent Surgical,Y4000\nDENTIST,POTOMAC DENTAL CENTRE PA,Y4000\nINSURANCE AG/ATTORNE,SELF-EMPLOYED,G0000\nPARK NICOLLET CLINIC,,H1130\nPROGRAMMER,THE AUTO CLUB GROUP372822316221008,Y4000\nPres. CEO,Self,G0000\nOFFICE MANAGER,COSMO LAND INC.,Y4000\nOWNER,AIROSA DAIRY,A2000\nCeo,Farmvet,Y4000\nPHYSICIAN,UPMC CHILDREN HOSPITAL,H2100\nMBA SYSTEMS ANALYS,,Y4000\nCOUNTRY FORD-LINCOLN-MERCURY,,T2300\nPresident,\"Stephenson & Co, CPA\",G1200\nCEO,Synovus Foundation,X4100\nCONSULTANT,MCSLARROW CONSULTING LLC,K2000\nDoctor,\"Alexander Carli, MD\",H1100\nSUPERVISOR,NEW YORK STATE,X3000\nPresident,Texas Clinic Healthcare System,H2100\nOWNER,DEMARTINI FARMS,A1000\nSeretary of Treasury,O & S Contractors Inc.,Y4000\nSYSTEMS ADMINISTRATOR,UCOR,Y4000\nInstructor,University Of North Carolina,H5100\nengineer,Lexmark,J1200\nMOSER & JOHNSON,,Y4000\nDONALD MEES MD,,H1130\nConsultant,Self  employed,G5200\nPRESIDENT/CEO,\"MONTGOMERY PETROLEUM, INC\",E1120\nEXECUTIVE,\"TOP INNOVATIONS, INC.\",G5200\nTeacher,Shorewood Public Schools,X3500\nGORE & ASSOCIATES,,Y4000\nEXECUTIVE VP,ENRON,E1140\nCEO,SYNGEST INC.,Y4000\nREAL ESTATE DEVELOPER,DUKE REALTY,F4200\nCounselors,\"Southern Concepts, Inc\",Y4000\nMechanic,Hampton Industrial Svc.,Y4000\nGOLDBERG MD & ASSOCIATES,,H1100\nWriter,FF Publishing,C1100\nPARTNER,\"I. O. CO., L.L.C.\",Y4000\nMANUFACTURING,FLEXTRONICS,Y4000\nREALTOR,FAXON GILLIS,F4000\nAttorney,\"Silverberg, Goldman & Bikoff, LLP\",K2000\nfinancial services,Asset Management Advisors,F2100\n\"INTERIOR WOMEN'S HEALTH\",,H0000\nAccountant,BKD,F5100\nTHE HEARTHSTONE,,Y4000\nRegistered Nurse - Administrat,Self-Employed,G0000\nARCHITECT,COOPER CARRY INC,Y4000\nlottery commission,Commonwealth of Massachusetts,X3000\nPHYSICIAN,VIBRANT HEALTHCARE LLC,Y4000\nLecturer,\"University of California, Davis\",H5100\nPresident,\"Angel Electrical Construction, Inc\",B1500\nCFO,CONRAD PROPERTIES,F4000\nTRADESHOW PR,EATON HALL CORPORATION,Y4000\nSALES,BAXTER,H3000\nExecutive,IBM,Z9500\nCHAMISSIONIS CORP,,Y4000\nPres,My Credit Union,F1300\nNEW ENGLAND FUNDS,,F2100\nCORPORATE OWNER,VECELLIO GROUP INC.,B1000\nBUSINESS OWNER,TURF TECH,Y4000\nAKIN GUNP ETAL,,K1000\nPresident,Lakeside Dental Group,H1400\nNEW AVENUES OF HOPE INC,,Y4000\nTOWILL INC,,Y4000\nTHE PLUMBING COMPANY,,H2100\nENERGY SUPPLIER,BECK SUPPLIERS,Y4000\nC.E.O.,MODERN DROP FORGE COMPANY,Y4000\nATTORNEY,AGILENT TECHNOLOGIES,C5000\nNOTIS PROFESSIONAL SERVICES,,Y4000\nCOMM,\"INTERNAT'L LONGSHRE & WHSE UN.\",Y4000\nOwner,Wfi Bamboo LLC,Y4000\nInvestor,Information Requested,G0000\nCONSULTANT,BILL BROYDRICK AND ASSOCIATES,K2000\nCLM LLC,,J5100\nHOSPITAL EXECUTIVE,CANCER TREATMENT CENTERS OF AMERICA,H2100\nCLERK,NORTHERN MICHIGAN UNIVERSITY,LM150\nCEO,VRC Co.,Y4000\nSENIOR INSTRUMENT TECHNICIAN,\"HOOSIER ENERGY REC, INC.\",E1610\nAGENT,STIBA WEALTH MANAGEMENT GROUP,F3300\nREGISTERED NURSE,CAROLINAS CENTER FOR MEDICAL EXCELLENC,Y4000\nChief Operating Offi,\"Eastside Commercial Bank, National Ass\",F1100\nPROGRAM MANAGER,\"F5 NETWORKS, INC.\",J6200\nHMS ASSOCIATES,EXECUTIVE,G5270\nWILLIAMS SAUSAGE,,G2300\npresident,Stevens Institute of Technology,J1100\nPUBLISHE,DIOCESAN PUBLICATIONS INC.,J1100\nCARDIOLOGIST,CENTENNIAL HEART,Y4000\nQWIC INC,,G5250\nCO-CHAIRMAN,HOFFMAN PORSCHE,T2310\n\"Director, Congressio\",Freddie Mac,F4600\nMERCHANT SEAMAN,INTEROCEAN AMERICAN SHIPPING CORP,LT500\nCITY OF PAGE AZ,,X3000\nSr. Marketing Manage,Network Associates Inc.,C5120\nInvemed Associates L.L.C.,,F2100\nCEO,PRES.,Y4000\nEXEC,EASTERN FISHING AND RENTAL TOO,G5300\nPRESIDENT,MEDCOM PROFESSIONAL SERVICES/PRESID,Y4000\nOWNER,BELL TRAVEL SERVICES,T9400\nPHYSICIAN,STEIN PLASTIC SURGERY,Z9500\nRABBI,OHAVI ZEDEK SYNAGOGUE,X7000\nMUNGER & MUNGER PLC,,K1000\nExecutive Vice President,Oracle,C5120\nFARMER-OIL & GAS PROD,SELF-EMPLOYED,E1100\nPresident and CEO,\"C & S Engineers, Inc\",B4000\nOwner,Nipper Management Services,Y4000\nAdvertising,\"Kalis, Inc\",Y4000\nMULLIGAN CONSTR INC,,B1000\nAssistant Professor,UND,H5100\nTWYMAN-TEMPLETON COMPANY,,Y4000\nATTORNEY,\"ROBINSON, BRADSHAW & HINSON/ATTORNE\",K1000\nRIGBY & ASSOC,,K1000\nWASKER DORR WIMMER P C,,K1000\nCODESOURCE,,Y4000\nPHARMACIST,RITEAID,Y4000\nLEIGHTY ENTREPRISES,,Y4000\nACCOUNTANT,RAJESH MEHTACPA,Y4000\nTEACH,EASTERN WASHINGTON UNIVERSITY,H5100\n\"VP, EXEC RESOURCES/OFFICE SOLUTIONS\",AMERINET,H3000\nLENDING,First State Bank Central Texas,F1100\nSenior Advisor,Ginnie Mae/Dept of Housing and Urban D,Y4000\nSUBSTITUTE TEACHER,RETIRED AND MONTGOMERY COUNTY PUBLIC S,X1200\nTHOROUGHBRED RACEHORSE OWNER & BREEDER,SELF,G6500\nCEO,Glenberough Realty Trust,F4200\nDIRECTOR - NETWORK ENGINEER,VERIZON,C4100\nChemical Engineer,\"Genentech, Inc\",H4500\nHOUSING SPECIALIST,HVD,J7400\nHOMEBUILDER,BRADLEY HOMES INC,B2000\nFOOD PRECESSOR,BUSH BROTHERS & CO.,Y4000\nTEACHER,COWLEY COLLEGE,Y4000\nPSYCHOTHERAPIST,\"ANN FOSTER, LTD.\",Y4000\nDeputy General Couns,Allegheny Energy Service Corpo,E1620\nGRAS,CONSUMER ATTORNEYS ASSOCIATION,K1100\nSales Manager,Brown Printing,C1300\nRetail,Stacks and Stacks,Y4000\nTWIDDY & CO,SELF-EMPLOYED,Y4000\nARCHITECT,CLARK NEXSEN,Y4000\nARCHITECT,HAMILTON-ANDERSON,B4200\nPRESIDENT,CHEMICAL DATA INC,M1000\nATTORNEY,\"HARRIS M. MILLER II, PC.\",Y4000\n\"PAVLOV'S DOGS ENTERTAINMENT\",,J7300\nPRODUCER / MANAGER / INVESTOR,SELF / HEROES AND VILLAINS ENTERTAI,C2000\nATTORNEY,GESTEIN STRAUSS RONALDI LLP,Y4000\nSR. VP,CADARET GRANT & CO. INC.,F2100\nBURRIS & THOMAS P C,,K1000\nSTI INTERNATIONAL INC,,Y4000\nArt Historian,Information Requested,Y4000\nHARMONY HILL SCHOOL,,H5100\nOwner,\"McMahan's Bottle Gas\",E1190\nEXECUTIVE,EXCELSIOR ENERGY INC.,E1600\nBAXLEY DILLARD DAUPHIN & MCKINGHT,,K1000\n\"RED'S MARKET INC\",,G2500\nCONSULTANT,HR CONNEX,Y4000\nEnvironmentalist,The Wilderness Socie,JE300\nMONEY MANAGER,DAVIDS KEMPER CAPITAL MGMT. LLC,F2700\nHOUSEWIFE,,G0000\nBRISTOL-MEYERS INC,,H4300\nOPHTHALOMOLOGIST,SELF-EMPLOYED,Y4000\nATTORNEY,\"ECKLEY M. KEACH, CHTD.\",K1000\nEXECUTIVE,MONTECITO BANK & TRUST,F1000\nGeologist,Mfg Inc,Y4000\nEXECUTIV,NETWORK INTERNATIONAL INC.,E1120\nPresident/Owner,Pinpoint Ventures,Y4000\nSTEINBAUM INVESTMENTS,,F4200\nOWNER,THE CDM GROUP INC.,Y4000\nGARY M HOLMES & ASSOCIATES,,Y4000\nHOUSEHOLDER,,J1100\nPhysician,Johns Hoplins School of Medicine,H5100\nBabson Family Foundation,self-employed/consultant,Y4000\nCertifiied Public Ac,Self,Z9500\nATTOR,BARTINIK BARTINIK & GRATER PC,K1100\nJOHN ALDEN INSURANCE COMPANY,,F3100\nR.D.N. INC.,,Y4000\nNEXENT NEXT ENTERPRISE SOLUTION,,Y4000\nPRESIDENT,INTEGRAL SENIOR LIVING,H2200\nSelf Employed,Atty. Maged Riad,K1000\nALARIO AND ASSOCIATES INCORPORATED,,T6000\nConsultant,YRCI,Y4000\nMANAGER,HANKINS GRAIN CO,J1100\nDirector,Lifeline of Laredo,X4000\nAttorney,Bradshaw & Bryant,K1000\nSTRATFOR,,Y4000\nMANAGER,MS DHS FCU,F1300\nAttorney,\"Law Offices of Mauro Fiore, Jr\",K1000\nWINBURY GROUP,,Y4000\nTEACHER,TRINITY LUTHERAN SCHOOL,X3500\nPHYSICIAN,\"CHILDREN'S MEMORIAL HOSPITAL\",H1100\nSENIOR VICE PR,FIRST AMER. TITLE IN,F4300\nRUSHHANNULAHARKINS & KYLER,,Y4000\nPartner/Attorney,Preston Gates & Ellis,K1000\nCOMMUNICATIONS,FENTON,Y4000\nENGINEER,SPEAR INC.,Y4000\nAttorney,\"Dimond, Kaplan & Rothstein\",K1000\nBUSINESS EXECUT,SIMPSON CAPITAL LLC,F0000\nPRESIDENT,SUNRISE RESEARCH,K2000\nRIVERA & ASSOCIATES,,Y4000\nCOMPUTER ANALYST,NEW ROADS,Y4000\nPRESIDENT,REDLAND CONSTRUCTION CO. LLC,B1500\nMWP INTERIOR DESIGN,,Y4000\nGeneral Manager,Mitsubishi International Corp,J1200\nYALE MEDICAL SCHOOL-DEPT OF DERMATO,,H1130\nWICHITA FALLS ISD,,X3500\nCEO,RAP-A-LOT RECORDS,Y4000\nChairman,\"Phoenix Int'l Consultants\",Y4000\nReal Estate,Jersey Central Management,F4000\nSOFTWARE D,CITADEL INVESTMENT GROUP,F2100\nDentist,Center For Advanced Dentistry,Y4000\nWESTERN TRAILOR,,Y4000\nMD,ME,Y4000\nSHORTY DEANS ROOFING CO,,B3000\nHARD ROCK CONSTRUCTION,,B1500\nReal Estate Investor,Gables Residential Trust,F4000\nVENTURE CAPITALIST,ARCH VENTURE CORP./VENTURE CAPITALI,F2500\nSenior Federal Judge,U.S. Court Of Federal Claims,Y4000\nSUNDANCE KENNELS,,Y4000\nPresident,Kraematon Group,Y4000\nPHYSICIAN,PROMEDICA PHYSICIAN GROUP,H1100\nOBGYN,SELF EMPLOYED,H1130\nHomemaker,Information Requested,B5400\n\"CHILDREN'S MUSEUM OF MANHATTAN\",,J7150\nDISCOUN,BENEFIT SERVICES OF AMERICA,Y4000\nADMINISTRATOR,UNIVERSITY OF MIAMI,H5100\nPETC,,Y4000\nDANBRU WIRE & CABLE INC,,C2200\nYOUTH AND FAMILY MINISTRIES DIRECTOR,FIRST CONGREGATIONAL CHURCH,X7000\nowner,Market Square Plaza,Y4000\nCHAIRMAN,NU SKIN,H4200\nNATIONAL MEAT ASSOCIATION,,G2300\nGRIFFIN PLANNING COMPANY,SELF,J7300\nINSURANCE,ROSE & KIERAN,Y4000\nMCCULLOUGH STEVATER & POLVERE,,Y4000\nPROFFESSOR OF LAW,DULCE UNIVERSITY,H5100\nPRESIDE,FINANCIAL DEVELOPMENT CORP.,Y4000\nNORTH STAR CAPITAL,,F2100\nTOUR OPERATOR,\"ODYSSEYS UNLIMITED, INC.\",Y4000\nDIR.  MIS,ANHEUSER-BUSCH,G2810\nHOGAN & HARTSEN,,K2000\nLandlord,Self employed,Z9500\nManagement,Union Pacific Railroad,T5100\nAttorney,\"Gallagher, Langlas & Gallagher\",K1000\nMANAGING DIR,\"PLUMTREE PARTNERS, LLC\",Y4000\nCABLE COMMUNICATIONS INC,,Y4000\nChairman of the Boar,\"Crafton, Tull And Associates, Inc.\",B4000\nATTORNEY,CRISPIN & ASSOCIATES PLLC,K1000\nALLIANCE FOR GLOBAL,,G5200\nREITRED,TEACHER,Z9500\nSEABROOK TRUCK CENTER INC,,T3000\nDIRECTOR,DEPARTMENT OF HEALTH AND HUMAN SERVICE,X3000\nPHYSICIAN,Avera Health,H0000\nCAPITAL AREA COMMUNITY ACTION,,JH100\nMEMBER,KLETT LIEBER ROONEY & SCHORL,K1000\nPhysician,Lemak Sports Medicine,Y4000\nChairman,Trans National,T9400\nSTONES HOME SUPPLY STORE,,Y4000\nTELECOMMUNICAT,PROTEL SERVICES INC.,Y4000\nSTOCK BROKER,DEAN WITTER INC.,F2300\nCO OWNER & MGR,C & K EGG CO.,A2300\nPRESIDENT,\"KILDARE INVESTMENTS, INC.\",Y4000\nSALES,TELESOURCE L.L.C,Y4000\nSALYER LAND COMPANY,,A4200\nMANAGER,BERRY PLASTICS CORP.,M1500\nVICE PRESIDENT,DIXIE METALCRAFT CORP.,Y4000\n\"MODELL'S INC\",,Y4000\npharmacist,Santa Monica Medical Plaza Pharmacy,G4900\nGeneral Counsel,E! Entertainment,C2200\nSECRETARY/TREASURER,LAWRENCE DISTRIBUTING CO. INC.,G2850\nInsurance agent,Underwriters Inc.,Y4000\nPRESIDENT,ORCORE CONSTRUCTION,B1500\nEXECUTIVE DIRECTOR ACT,IIABA INC.,F3100\nArts Administrator,\"Indianapolis Ballet, Inc\",Y4000\nOIL PRODUCER-RETIRED,RETIRED,X1200\nCFO,Ardent Health Services,H2100\nAttorney,\"Niven and Associates, LLC\",K1000\nTelevision Writer,Warner Bros Television,C2400\nMILITARY SERVICEMEMBER,DEPARTMENT OF DEFENSE,X5000\nMARTE AND TOADVINE,,Y4000\nBROWN BROTHERS HARRIMAN & CO,,F2100\nNETWORK GENERAL,,C5100\nSELF-EMPOLYED,,X1200\nCUMMINS COMPANIES,,Y4000\nATTORNEY,KLEHR HARRISON,Y4000\nChairman and Owner,Kessler Group,G4900\nRANDALL REALTY CORP,,F4200\nSR. SECURITIES ANALYST,HRBFA,F5300\nController,Texas Wesleyan University,H5100\nClerk of The Court,Anne Arundel County,X3000\nENGINEER,\"SOLUTIONS, INC.\",Y4000\nOMELVENY AND MYERS,,K1000\nPHYSICIAN,PRIVATE PRACTICE (GAY),G0000\n\"author, publisher\",Self,J7400\nSt. Louis Physical Therapy,,H1700\nPRESIDENT,CORWIN TOYOTA,T2310\n,\"MAKHTESHIM-AGAN OF NORTH AMERICAN,\",A4100\nBUSINESS OWNER,GALLATIN TRANSPORTATION INC,Y4000\nSR.VICE PR,CABLEVISION SYSTEMS CORP,C2200\nRetired physician,Self,X1200\nWIRKEN GROUP,,Y4000\nMANAGER,ALDEVRON,Y4000\nMANA,TERRA NOVA MARKETING SOLUTIONS,G5220\nRELAX THE BACK STORE,,Y4000\nREAL ESTATE BROKER,\"INFLUENCE REAL ESTATE, LLC\",F4200\nPRINCIPAL TECHNICAL WRITER,VCE,Y4000\nrancher,self employed,F1100\nSystems designer,Tetra Tech Inc,Y4000\nEXECUTIVE,\"FORRESTER RESEARCH, INC\",Z9500\nPresident,Jerry Willkomm Inc.,Y4000\nPhysical Therapist,Sunbelt PT,J1200\nCEO,SUNPOWER MARINE INC.,J7300\nPRESIDEN,THE GRAY INSURANCE COMPANY,F3400\nSCHUETT INVESTMENT CO INC,,Y4000\nCFO,Regency Hospital Company,H2100\nPRESIDENT,LEMA DEVELOPERS,Y4000\nAttorney/Consultant,Givens Pursley LLP,K1000\nElectrician,Idex Global Services,Y4000\nREAL ESTATE DEVELOPMENT,JBG,F4500\nEd. Consultant,Self,J7400\nCONSULTANT,AMERICAN SYSTEMS INTL,G5200\nLANGLEY OLDS,,T2300\nVP & P,FLORIDA ROCK INDUSTRIES INC.,B5100\nHTH CORPORATION,,Y4000\nTeacher,University of Houston,H5100\nTEACHER,UNIVERSITY OF WEST GEORGIA,J1200\nInterior Designer,B Five Studio,Y4000\nMD,EASTON HOSPITAL,H2100\nREADING IS FUNDAMENTAL,,H6000\nGIRARDI AND REESE,,K1000\nPRESIDENT & CEO,EMLOR GROUP/PRESIDENT & CEO,Y4000\nAttorney,Hodgson Russ LLP (Partner),Y4000\nPRESIDENT/CEO,SHELTER PROPERTIES INC/PRESIDENT/CE,B2000\nEngineer,\"Vazquez, Iglesias Associates\",Y4000\nACH Product Manager,Paymentsnation,Y4000\nDESIGN & MFG,SELF EMPLOYED,G0000\nW L GORE & ASSOCIATES,,M1000\nElectrical Contracto,Power Solutions LLC,B3200\nMIKE ALBERT AUTO,,T2000\nNATIONAL INDUSTRIAL WORKERS,,Y4000\nPHARMACIST,CONCORD PHARMACY,G4900\nDENTIST,UNITY DENTAL,H1400\nNATIONAL AGENCY COUNCIL,WFG NATIONAL TITLE INSURANCE COMPANY,F4300\nArchitect,Austin Veum Robbins,Y4000\nIRONWO,GATEWAY CONSTRUCTION COMPNAY,B1500\nEXECUTIVE VICE PRESIDENT,PRIMERICA,F3300\nManager,ACCO Mgmt.,Y4000\nMEDICAL DOCTOR & PROFESSOR,UNIVERSITY OF MIAMI,H5100\nSenior Vice Presiden,Hawaiian Electric Company,B3200\nPROFESSIONAL,LAREDO PETROLEUM,E1120\nVP,RIDE AWAY CORPORATION,Y4000\nBUSINESS OWNER,FRANKLIN LIGHTING,Y4000\nAttoroney,Reed Smith,K1000\npartner,C2 Group,K2000\nATTORNEY,BREWER DEATON & BOWMAN,Y4000\nINSTRUCTOR,MONTCLAIR STATE UNIVERSITY,H5100\nCONTRACT SPEC,FELDHACKER CONTRACTOR,Y4000\nSOUTHERN SCHOOL SUPPLY,,G0000\nBAYVIEW ENVIRONMENTAL SERVICE,,B3000\nRetail,\"Sasha's Boutique\",J1200\nPOLITICAL -,PUBLIC STATEGIES IMPACT,Y4000\nPARTNE,GRIFFIN JOHNSON & ASSOCIATES,K2000\nInvestment Banker,Merrill Lynch,J5100\nOwner,\"Bluestein's Menswear\",M3100\nREAL ESTATE EXECUTIVE,SELF EMPLOYED,J5100\nEXECUTIVE,CR LAURENCE CO. INC.,Y4000\nACE PROPERTY MANAGEMENT,,F4500\nFINANCE,IFEGY,Y4000\nCONSULTANT,PRAIRIE STATE STRATEGIES,Y4000\nGeologist,\"Marshall & Winston, Inc.\",Y4000\nManager,Strauss Marketing,Y4000\nHEALTH CARE PROFESSOR,WESTSIDE/EASTSIDE,J1100\nSALES EXECUT,CARGILL FLAVOR SYSTEMS,A1000\nRealty Investors,,F4200\nComputer Programmer,\"GHR, Inc.\",Y4000\nATTORNEY,MEASURE LAW OFFICE,K1000\nATTORNEY,MS STATE TAX COMM.,X3000\nMANUFACTURER,MIJA,J2100\nCEO,GREENFIELD PARTNERS LLC,F4000\nNEW ROCHELLE DEPT OF ED,,X3000\nPRESIDENT,605 HOLDINGS,Y4000\nALVAMAR DEVELOPMENT,,F5100\nOWENS & TURNER P C,,Y4000\nATTORNEY,TED H S HONG,K1000\nINDEPEND OIL PRODUCE,,E1120\nPrincipal,NYC Deept of Education,X3000\nOil & Gas,Self employed,J1200\nIT Analyst,Self employed,G0000\nPERSONAL ASSISTANT,SELF,J5100\nPublic Relations,Discovery Communications,C2200\nBUS. OWNER,W A THOMPSON INC.,Y4000\nCONNECTICUT FLORISTS ASSN,,A8000\nREGULATORY,LS POWER DEVELOPMENT,E1700\nCHAIRMAN,ARTS FRANCE-USA,Y4000\nLEMATIC INCORPORATED,,Y4000\nTECH,BHP COPPER,Y4000\nREALTOR,ALLIE BETH ALLMAN & ASSOCIATES,F4200\nRoad Contractor,Joseph Mc Cormick Construction,B1500\nMOMENTIX INC./SOFTWARE ENGINEER / M,,J7300\nSOFTWARE ENGINEER,\"NUANCE COMMUNICATIONS, INC.\",C4500\nDEVELOPE,GULF COAST BUILDERS & DEV.,Y4000\nPresident,Miami Municipal Strategies,Y4000\nVice President,Bayshore Ford,T2300\nMANAGER,CHINA GREAT WALL DEPARTMENT,Y4000\nSR. V.P,TEXAS EMVIORMENTAL PRODUCTS,Y4000\nKANO LABS INC,,E1160\nACCOU,PEACOCK ROBINSON & HANKS P.A.,F5100\nPresident,Claniel Foundation,X4100\nTHE YORK GROUP INC,,Y4000\nKEM-HER CONSTRUCTION CO,,B1500\nReal Estate Broker,Hughes Properties,F4200\nSMALL BUSINESS,SPRUCE LINEN SUPPLY,G5500\nGENERAL PART,PRISM VENTURE PARTNERS,F2500\nPHYSICIAN,RAY PINAKI MDPC,H1100\nKRIEGER MEDICAL INC,,Y4000\nPHYSICIAN,THE NEUROMEDICAL CENTER,H2100\nProfessor,University of California; Berkleley,H5100\nChairman,\"Pennoni Associates, Inc\",B4000\nUNIX SYS ADMIN,CHEVRON,E1110\nASSET MGMT INC,,Y4000\nUniversity faculty,University of Georgia,J1200\nPresident,Bob Cook Sales,T2200\nPresident,\"RMI Direct Marketing, Inc.\",G5220\nEXEC,PROVIDENCE PROPERTY & CASUALTY,F3400\n\"oil, gas and ranching\",Roach Oil Company,E1100\nHOLLINS RADIATOR,,Y4000\nCORSAKANA COMMUNICATIONS,,J1100\nOWNER,CHURCH STREET CAPITAL INC.,F0000\nGARDERE AND WYNNE,,K1000\nCONSULTANT,ACCELEVANT. INC,Y4000\nPRES,EXECUTIVE HEALTH SPORTS CENTER,Y4000\nWIRT NORRIS & CO REALTORS INC,,F4200\nPARTNER,\"ABRY PARTNERS, LLC\",F2600\nCHAIRMAN,ZELNICK MEDIA,F2600\nBUILDER,KRISTOF CONSTRUCTION LLC,B1500\nMANAGER,ADAMS CAPITAL MANAGEMENT,F2500\nVICE CHAIRMAN,JABIL CIRCUIT,C5000\nSYSTEMS ADMIN,ITT SYSTEMS,Y4000\nPHYSICIAN,GILMORE MEMORIAL HOSPITAL,H2100\nVolunteer Organization,Self,Y4000\nREAL ESTATE BROKER,WOMACK DEVELOPMENT REALTY,F4100\nPHYSICIAN,BOSTON MEDICAL CENTER,H1130\nTOUR GUIDE,\"BULLDOG TOURS, INC.\",Y4000\nC C S S O,,Y4000\nMinority Business Development,City of Indianapolis,X3000\nREALTOR,ALL STAR REAL ESTATE,J9000\nLAWYER,WASHINGTON STATE UNIVERSITY/LAWYER,H5100\nPRESIDENT,QUICK TRAVEL INC.,T9400\nExecutive Director,New York Foundling,Y4000\nRN,Mission Hospitals,J1200\nConsultant,Topa Enterprises,Y4000\nCOO,PARAGON LABORATORIES,Y4000\nDiagnostic Radiologi,Univ of TX Hlth Sci Ctr,H1130\nTELEVISION DEVELOPMENT,VH1,C2200\nC.E.O.,ALDRIDGE ELECTRIC,B3200\nSales Supervisor,our State Magazine,C1100\nPhysician,University of Missouri,H1110\nPhysician,3M,J5100\nENGINEER,M & E PACIFIC INC,Y4000\nPresident,Trim Usa Inc.,Y4000\nPresident,\"Wetz Investment Company, LLC\",G1200\nFilm Producer,Tribeca Productions,C2400\nN C LICENSE PLATE BUREAU,,Y4000\nPhysician,Western Medical Center,H1100\nPresident,Gene Butman Ford Sales,T2300\nPRESIDENT AND C.E.O.,AMERICAN FOREST & PAPER ASSOC,J7400\nEXECUTIV,TURNER ENTERTAINMENT GROUP,Y4000\nJEWELER,DIAMOND JEWELRY FACTORY,Y4000\nBROOKDALE SENIOR LIVING/EVP/CAO,,H2200\nEXECUTIVE,MASCOM COMMUNICATIONS,Y4000\nPROFESSOR,CHINESE UNIVERSITY,H5100\nPACIFIC CAPITAL GRP,,F4600\n\"MIKE'S PASTRY INC\",,Y4000\nMasage therapist/Gra,Self,G0000\nHORNET III JOINT VENTURE,,Y4000\nFINANCE ADVISOR,BANK OF AMERICA,J1100\nChairman/CEO,Court TV,C2200\nCAHIRMAN,GATX,T5300\nLaser Scientist,\"Sparta, Inc.\",D3000\nTRANS,PAYNE LYNCH & ASSOCIATES INC.,Z9500\nDENTIST,BAGLEY DENTAL PS,H1400\nCCU HEAD START,,Y4000\nMC GILL ASSOCIATES,,Y4000\nWILKES CO SHERIFFS DEPT,,X3200\nCONSULTING,\"ATWELL ASSOCIATES, LLC\",Y4000\nFarmer/Businessman,Cal-Western Farming Co,A1000\nPRESIDENT & C. E. O.,C. M. S.,Y4000\n\"OWNER, PRESIDENT AND\",DALLAS COWBOYS,G6400\nFIRE RESTORATION,DAMAGE CONTROL INC,B2000\nconsultant,SMW National Training Fund,LB100\nCPA,BLOOM & CO CPA,Z9500\n\"OUTDOOR ADVERTISING ASS'N OF AMER\",,\nNET CORP,,Y4000\nREAL ESTATE INVESTOR/SELF EMPLOYED,SYNERGY INVESTMENTS,F2100\nOWNER PATRIOT PONTIAC GMC BUICK,,T2300\nhome maker,none,J7400\nBUSINESS OWNER,POTOMAC RECRUITING,Y4000\nOWNER,JACK LAWTON INC.,E1150\nSTATE LEGISLA,,X3000\nTN TEACHERS C U,,F1300\nOWNER,ALPINE ELECTRIC INC,B3200\nVP CONTAINERBOARD MANUFACTURING EAST,INTERNATIONAL PAPER CO.,A5200\nANAHEIM RX HEALTH CARE,,H0000\nAMERICAN CAPITAL,,F5500\n\"Manager, Provider Services\",Vision Service Plan,F3200\nPresident,Block Communications,Y4000\nCONTRACTOR,RW RHINE INC.,Y4000\nBUS,UNITED GALAXY ASSOCIATES L.L.C.,Y4000\nATTORNEY,LAW OFFICE OF STEPTOE & JOHNSON/ATT,K1000\nEDUCATOR,HAZLET TWP,L1300\nPRES,HARRELL MEDICAL TRANSPORT INC.,Y4000\nGOV AFFAIRS CONSULT,,K2000\nMechanical Engin,self,B4000\nPHYSICIAN,TCO CLINIC,H1100\nCHARTER ONE BANK/PRESIDENT/C.E.O.,,F1100\nZENITH CUTTER CO,,G1200\nEXECUTIVE,MED SERVE INC.,Y4000\nVETERINARIAN,SELF/WSAC,A4500\nManager,Keystone Strategies,Y4000\nPRESIDENT,MAGNOLIA`S OF MARBLEHEAD INC.,Y4000\nRETIRED,VETERAN,Z9500\nPresident,21st Century Research,Y4000\nRETIRED,MICHIGAN NATIONAL BA,Y4000\nPODIATRIC PHYSICIAN,OTTUMWA FOOT & ANKLE CLINIC,H1130\nOWNER,RITEWAY HUGGINS CONSTRUCTION,B1500\nCEO & CHAIRMAN,\"MUNRO & COMPANY, INC.\",M3000\nHOMEMAKER,CRYOLIFE,H4500\nILLINOIS INSURANCE,,F3100\nCOMUTER PROGRAMER,SELF EMPLOYED,C5120\nPresident,Life EMS,Y4000\nBusiness,Unioys,Y4000\nOWNER,DATTEL REALTY COMPANY,F4200\nNODDLE DEVELOPMENT CO,,F4100\nRecruiter,The Prince Houston Group,J7400\nHairdresser,Paree Claree Beauty Salon,Y4000\nSELF EMPLOYED,WIRELESS WIZARD,Y4000\nOwner,LJS Consulting,Y4000\nINFO REQUESTED,LOUISVILLE PULMONARY ASSOC,Y4000\nDIRECTOR,AIDEN MONTESSORI SCHOOL,H5100\nJAY MARKS INSURANCE,,T2310\nUTILITY CONSULTANT,,G0000\nNIH,PHYSICIAN,H1100\nBanker,Bank of Granite Corporation,F1100\nPRESIDENT,METROPLEX TOYOTA,T2300\nREAL ESTATE INVESTOR/DEVELOPER,NEW VILLAGES GROUP LTD,J1200\nATTORNEY,\"RUDOLPH CLARKE & KIRK, LLC\",Y4000\nCONTRACTOR,BELNOR INC.,Y4000\nPRESIDENT/CEO,CAMBRIDGE CORPORATE SERVICES,Y4000\nOwner,Orlando Financial,F0000\nowner,Ruiz Homes,B2000\nSENIOR AUDIT SUPERVISOR,STATE DEPARTMENT OF FINANCE/SENIOR,X3000\nMICHELIN N A,,T2200\nVP OF COMMUNICATIONS,BAE SYSTEMS,Z9500\nPRECISION TOYOTA INC,,T2310\nSELF/TV/FILM PRODUCER,,C2100\nMCGROUGH CONSTRUCTION,,F1200\nDIRECT,CHI WELLNESS LONGWOOD CLINIC,Y4000\nAVON CARTING CO,,Y4000\nEMILIANI BEAUTY SUPPLY CO INC,,G3000\nGOVERNMENT RELATIONS,ENERGI INC.,Y4000\nHERITAGE TITLE OF MCHENRY,,F4300\nAGENT,WILLIAM MORRIS AGENCY INC.,C2900\nINSURANCE - FAMILY BUSINESS,\"GLEN A SCHUBERG, INC\",G0000\nCPA AND FINANCIAL PLANNER,,F5000\nEXECUTIVE,LAKEVILLE MOTOR EXPRESS,T3100\nCFO,HOLDING PICTURES DISTRIBUTION,Y4000\nGLICKEN HAUS CO,,F2100\nRepresentative,Indiana House Of Representatives,X3000\nDIRECTOR,LAKELAND FINANCIAL CORPORATION,Y4000\nPROFESSOR/ASSOCIATE DEAN,MIDDLE TENNESSEE STATE UNIVERSITY,H5100\nVICE PRESIDENT,CATALYST SERVICES,Y4000\nMANAGER,BAY AREA MOBILE MEDICAL,Y4000\nC.E.O.,\"Corporex Companies, L.L.C.\",F4100\nResearch Professor,Georgetown University,H5100\nPRESIDENT,J AND M FULTON AVENUE CORP,Y4000\nPRESIDENT,\"GARY F. GARDNER, INC.\",Y4000\nSr Supply Mgr,\"Air Products and Chemicals, Inc.\",M1000\nPhysician,Doylestown Hospital,H1100\nChairman,Air Pegasus Heliport,T1600\nOwner/Retired,Riverside Lodge,Y4000\nBanking,BC Ziegler Co,F2100\nATTORNEY,HUFFORD AND HORSTMAN/ATTORNEY,K1000\n\"OWNER, INSURANCE BROKER\",ASPEN INSURANCE,F3000\nAttorney,\"McDonald, Woodward & Ivers, P.C.\",Y4000\nDirector of Community and Economic Dev,City of Dearborn Heights,X3000\nENGINEER,\"ANSYS, INC.\",Y4000\nEXECUTIVE,GROUP ONE TRADING LP,F2200\nLobbyist,Patten Boggs,Y4000\nMANAGING DIRECTOR,CHADWICK REAL ESTATE GROUP,F4000\nRUST ENVIRONMENT & INFRASTRUCTURE,,E3000\nAttorney,\"O'donnell, Schwartz & Anderson\",K1000\nSR. SOFTWARE ENGINEER,YOUTH FOR UNDERSTANDING,Y4000\nPRINCIPAL,B. V. I. INC.,Y4000\nITT TECH. INSTITUTE,,H5200\nINTERSTATE TRAFFIC CONTROL INC.,,B1000\nMaterial Examiner &,DLA,L1100\nOWNER,UFC-ACRUSP,Y4000\nEVP - CHIE,AMERICAN EXPRESS COMPANY,F1400\nOWNER,DIVAS HANDBAGS,Y4000\nOnline textbook sales,Self - grimmsbookscom,Y4000\nGarden Teacher,NOCCS,Z9500\nBoard,REsource Capital,G1200\nTROUTMAN SANDERS AND ASHMORE,,K1000\nRealtor,Costantino & Company,Y4000\nMANAGER,ROADRUNNER LTD,T3100\nGeneral Counsel,LPL Financial Services,F2100\nOwner,Diamonz Inc.,Y4000\nSales Director,Persous Book Group,Y4000\nCivil Engineer,Pape-Dawson Engineering,B4400\nPEDESTA,SELF,K2000\nEXECUTIVE,P AND S PAVING,B3000\nIMPORT & EXPORT,SELF-EMPLOYED,G3500\nCORPORATE VICE PRESI,\"LIQUIDITY SERVICES, INC.\",K2000\nCOMCAST COMMUNICATIONS INC,,C2200\nLINDA DE BONE CORP,,B2000\nCFO,OCEAN MIST FARMS,A1000\nOWNER,MDV REMODELING & HOMES,F4100\nSOFTWARE DEVELOPER,REGIONS BANK,F1100\nATTORNE,CALHOUN KADEMENOS & HEICHEL,K1100\nREAL ESTATE,B. C. PROPERTIES,Y4000\nManager,KKP LLC,Y4000\nDEVELOPMENT,HADASSAH,Y4000\n\"DIRECTOR, PROJECT MANAGEMENT\",GILEAD SCIENCES,H4500\nMOM,NONE,J2100\nPRESIDENT & CEO,\"GLC ENTERPRISES, INC.\",F2100\nSELF EMPLOYED,KIRILA REALTY,F4200\nChancellor / Physician,Washington University,H5100\nExecutive,M.E. Fox & Co. Inc.,J1200\nPRESIDENT,NORTHERN DEWALERING,Y4000\nFAYETTEVILLE ART MUS,,X4200\nVP OF INFORMATION TECHNOLOGY,BENCO DENTAL,H1400\nPHYSIC,CANCER CTRS OF THE CAROLINAS,H1130\nEEO Officer,State of Arizona,X3000\nEPIDEMIOLOGIST,UNIVERSITY OF IL AT CHICAGO,H5100\nPresident,Coldwell Banker,F4200\nInsurance Agent,Self-Employed,J1100\nLead Systems Engineer,Sears Holdings Corporation,G4300\nPRESIDENT,LARSON FORD SUZUKI INC,T2300\nPARSONS BRINCKERHOFF ET AL,,B4000\nDoctor,L Mass Mem Healthcr,Y4000\nDENTIST,DR. JUSTIN CHENG/DENTIST,Y4000\nTECHNICIAN,D. R. S. TECHNOLOGIES,D3000\nPRESIDENT,LEHIGH PORTLAND,B5100\nPhysician,S Texas Kidney Specialists,Y4000\nTax Consultant,Self,J7400\nReal Estate,Unidev,F4100\nFINANCE,BRITTANY CAPITAL GROUP,Y4000\nTRADE WIND DESIGNS,,Y4000\nTHE COUNCIL ON ECONOMIC PRIORITIES,,Y4000\nPRESIDENT,SHORE ASSOCIATES,Y4000\nPRESIDENT,SIGHTMART.COM,C5140\nGREAT AMERICAN INVEST CO,,F0000\nDermatologist,Cumberland Dermatology,H1130\nATTORNEY,LAW OFFICES OF GEORGE R SALEM,K1000\nSCHULMAN THEATERS,,Y4000\nCollege Teacher,Austin Community College,H5100\nTeacher,Pennsbury School District,H5100\nAttorney,Kenton County,X3000\nRADIOLOG,DETROIT RECEIVING HOSPITAL,H1130\nInformation Requeste,\"Dr Zinaida Pelkey, DO\",J1200\nSoftware Developer,SAS Institute Inc,C5120\nVASCULAR SURGEON,VALLEY MEDICAL CENTER,H2100\nATTORNEY,\"ESPARZA & GARZA, LLP\",K1000\nSCHOOR & ARCHER,,Y4000\nkitsimon@attnet,Orbitz,Y4000\nPRINCIPAL,CRESCENT DEVELOPMENT LLC,Y4000\nProfessor,University of Connecticut Law School,H5170\nNurse Practioner/Att,Self,G0000\nPortfolio Manager,Winslow Management Company,J1200\nPARTN,AKIN GUMP STRAUSS HAUER ET AL,K1000\nCPA,\"WINTER, HARRIS\",F5100\nDIRE,UNIVERSITY OF LOUISVILLE SPEED,H5100\n\"Managing Director, Kentucky China Trad\",Larkin Trade International,Y4000\nMARKETING MANAGER,TERUMO BCT,Y4000\nOWNER,\"MED2000, INC.\",Y4000\nANCHOR MORTGAGE SERVICES INC,,F4600\nRetired,LaSalle Bank Corporation,F1100\nTraining Manager,TEVA,H4300\nINSURANCE,CBIZ BENEFITS & INSURANCE,F3000\nOwner,Quick N Clean Pressure Washing,Y4000\nSales Representative,Southern Wine & Spirits of FL,G2850\nVP,NEW ENTERPRISE STONE,B5100\nManager,Envirocon Inc.,Y4000\nPRESIDENT,CHISHOLM TRAIL STATE BANK,F1100\nELI WILNER & CO.,,Y4000\nFOX POOLS OF BRANDYWINE,,Y4000\nINVES,DANZELL INVESTMENT MANAGEMENT,F2100\nRealtor,Calit Realty,F4200\nPELLOW BLDR A E,,B2000\nSHOPPING CENTER DEVE,STERLING CENTRECORP,Y4000\nArchivist,NYU,H5100\nSHOP FOREMAN,DIAMOND INSULTATION,Y4000\nPresident & CEO,Eclipse Aviation,T1600\nAuthor,Roberta Berns,Y4000\nPRESIDENT OF OPERATIONS,HCA,H2100\nEXECUTIV,RYAN BROTHERS CONSTRUCTION,F4000\nJ S KIRSCH & CO,,Y4000\nINVESTOR,\"GUTIERREZ GROUP, LLC\",F4100\nTechnical Development Mgr,Skyworks Solutions Inc,C5110\nVice President,Endurance Reinsurance Corporation,F3100\nBusiness Person,Circles,Y4000\nEULEX DIVISION OF ARKLA INC,,Y4000\nHEARTLAND EXPRESS,,Y4000\nNEW DIMENSIONS INC./BUILDER/DEVELOP,,B1500\nMILITARY BUSINESS DEVELOPMENT,BOSE CORPORATION,C5000\nUTILITIES DEPARTMENT,,E5000\nManager,City of Citrus Heights,X3000\nInformation Requested,STRASBURG COUNCIL MEMBER,Y4000\nSURGEON,KETCHIKAN GENERAL HOSPITAL,H2100\nMDP INC,,Y4000\nPRINCIPAL,DRURY CAPITAL,F0000\nOWNER,FARM & FLEET,A1000\nExecutive,Medicis,J1200\nCAPITAL GROUP INVESTMENTS,,Y4000\nSATELLITE BROADCASTING COMM ASSOC,,C2200\nPresident,Cornerstone Online Appraisal Firm,F4700\nMANAGER,TAR ENTERPRISES,Y4000\nDeveloper,Immobiliaria Montemar,Y4000\nA-1 RUBBER STAMP,,M2300\nS C P INC,,Y4000\nINVESTOR; REAL ESTATE,SELF-EMPLOYED,F4000\nFALLMELL DAY CARE CENTER,,G5000\nWIDMER BROS BREWING,,G2810\nVICE PRESIDENT,HOMESTAR MORTGAGE,F4600\nREAL ESTATE BROKER,CONLON,F4000\nExec,TII CANN,Y4000\nATTORNEY,BINGHAM HURST & APODACA/ATTORNEY,K1000\nCHIEF FINANCIAL OF,CRUM AND FORSTER,Y4000\nDEPUTY GEN COUNSEL,\"PNCBANK, N.A.\",F1100\nATTORNEY,CULLEN AND DYKMAN,Y4000\nSoftware Designer,Self employed,C5120\nCASSIS MANAGEMENT,,Y4000\nJP GETTY,,Y4000\nCHIEF,\"ST. VINCENT'S MEDICAL CENTER\",H2100\nMANAGER,HARVARD ENTERPRISES INC,Y4000\nWELTZ AND LUXEMBURG,,Y4000\nRETIRED,MURPHY TOMATOES,A1400\nEXECUTIVE,\"GRADY WHITE BOATS, INC.\",J1200\n\"SUPERVISOR, LEAF PROCESSING\",LORILLARD TOBACCO COMPANY,A1300\nPROFESSIONAL POKER PL,SELF-EMPLOYED,G6500\nCONSTRUCTION,GARNER ASPHALT,B5100\nATTORNEY,KARLIN & FLEISHER,K1000\n\"AIRCRAFT AVIONIC'S SALE'S\",SELF,Y4000\nAttorney,\"Nanett, Philips + Phillip\",K1000\nAttorney,Brown Winnick,K1000\nNAT RURAL WATER,,K2000\nARCHITECT,\"PRITI TRIPATHI ARCHITECTS, INC.\",B4200\nCORPORATE FINANCE,PITNEY BOWES INC,M4200\nRegistered Nurs,Piedmont Healthcare,H3200\nHE,AMBASSADOR MEDICAL SERVICES INC.,H0000\nAdvisor,Self-Employed,A1400\nAttorney,\"Polsinelli Shughart, PC\",K2000\nRegional Account Manager,Apex Billing Solutions,F4500\nPHYSI,SKYLINE PRIMARY HEALTH CENTER,H1100\nPhysician,Unum Inc,F3200\nSENIOR VP,SBC COMMUNICATIONS,C4100\nCO-OWNER,PICCOLO ART,Y4000\nEXECUTIVE,ENSEMBLE THERAPEUTICS,Y4000\nFOUNDATION PRESIDENT,CHRISTIAN A. JOHNSON ENDEAVOR FOUNDATI,J1200\nHUMAN RESOURCES CONS,SELF-EMPLOYED,G5250\nSYKES CARDON BOURDON AND AHERN,,Y4000\nMUTUAL MEDICAL PLANS INC,,F3100\nREAL ESTATE INVESTOR,BLACK EQUITIES/REAL ESTATE INVESTOR,F4200\nNEW VERNON ASSOCIATES INC,,Y4000\nSr System Analyst,Motorola,C4600\nCLEVELAND CLINIC,,H2000\nTECH.,PHILIPS,Y4000\nMICHIGAN GASTROENTEROLOGY INSTITUTE,,H1130\nFirm President,Jacobson Helgoth Consultants Inc.,B4000\nSenior Care Business,Self employed,Y4000\nSUPERINTENDENT,NEW ERA MINE,Y4000\nOwner/Operator,Spynergy,Y4000\nDRS MORI BEAN & BROOKS PA,,Y4000\nINFO REQUESTED,DAVID ENDRES REALTY GROUP LTD.,F4200\nALASKAN FAMILY DENTAL CENTER,,H1400\nSELF EMPLOYED/STORE KEEPER/STORE KE,,JE300\nCHIROPRACTOR,TAYLOR CHIROPRACTIC,H1500\nMOTORSPORTS PROMOTIO,INFO REQUESTED,G0000\nATTORNEY,DOHERTY LAW OFFICES,K1000\nAttorney,\"Christensen, Glaser et al\",J7400\nEXECUTIVE,TESSERA TECHNOLOGIES,C5000\nVP-SENIOR HOUSING,\"HEALTH CARE REIT, INC.\",H2200\nLIVESTOCK DEA,PRAIRIE LIVESTOCK LLC,A3000\nClerk And Master,Anderson County,X3000\nATTORNEY,\"GREEN SCHAAG & JACOBSON, PC\",K1000\nP,\"INDEPENDENT PENSION SERVICES, INC\",F5500\nSALES,AMUSEMENT SERVICES,Y4000\nATC LEASING CO,,T7000\nTHE VILLA GROUP,,Y4000\nEXECUTIVE,\"LA SHERIFF'S PENSION FUND\",Y4000\nMgmt Consultatnt,Lacaro Group,Y4000\nCOO,Bond Companies,F4100\nCONFETT INC,,Y4000\nRet.,none,J1200\nN/A/RETIRED/RETIRED,,J5100\nPharmacist,Village Healthmart Drug,Y4000\nMCDOWELL N W INC,,Y4000\nactress,\"Girl Group, Inc.  (MAD TV)\",C2100\nPR Director,Burson-Mursteller,Y4000\nPROPERTY MANAGER,\"FAYETTEVILLE, AR\",Y4000\nATTORNEY,KLITSAS HUSAIN & VERCHER,K1000\nscientist,Protein Design Labs,H4500\nInvestment Analyst,Madrone Advisors,Y4000\nOwner,Synergy Consulting Inc.,Z9500\n\"MED-PAY, INC./PRESIDENT/CEO\",,F3000\nROSENFELD MAYER & SUSMAN,,K1000\nRERRIER GROUP OF AMERICA,,G2600\nFAMILY SERVICES INC,,F2600\nNORTH ALABAMA NEUROLOGICAL PA,,F1100\nArchitect,Hoya Downs Neenan,Y4000\nCAMPAIGN C,DIAZ-BALART FOR CONGRESS,Y4000\nOWNER/MANAGER,SOLDOTNA PROFESSIONAL PHARMACY,H1750\nPRESIDENT,ICON CONSULTING,D4000\nEXECUTIVE,WHALEN INSURANCE ASSOCIATES,F3100\nMACK FINANCIAL GROUP,,Y4000\nCOMMODITY BROKER,WILKIE MARKETING INC.,Y4000\nOWNER CHIROPRACTIC &,BEAR CANYON HEALTH CIRCLE - ABQ,H1700\nPhysician,\"Ricciardelli Cosmetic Surgery Center,\",H1100\nCEO,Global Delta,J1100\nCONSULTANT,SELF,X1200\nPROGRAMMER,SYMETRA FINANCIAL,F0000\nPresident,Greater New York Hospital ASSC,H2100\nATTORNEY,\"KIRKLAND & WOODS, PC\",K1000\nABIGIAL ABBOTT PERSONNEL COMPANY,,J1100\nMOVING SUPPLIER,,Y4000\nDRS BERK GRADY &,,H1400\nLAWYER,THE BANKRUPTCY FIRM,Y4000\nFRAZEE ENTERPRISES,,G4500\nBRODOVSKY & BRODOVSKY,,K1000\nARMADA CORP,,J5400\nPIAZZA CHIROPRACTIC ASSOCIATES,,H1500\nATTORNEY,ANDERSON HUNTER,K1000\nREALTY VALUE CONSULTANTS,,F4700\nPRESIDENT,\"TDMG COMMERICAL DIVISION, INC.\",Y4000\nMUCK CALI REALTY,,F4500\nOFFICE MANAGER,INTERWORKS,Y4000\nRESEARCHING,SELF EMPLOYED,G0000\nDesigner,Esi Design,G5200\nREAL ESTATE DEVELOPER,MILLENNIUM PARTNERS LLC,F4100\nChairman,The Williford Companies,Y4000\nEAST COOPER COMMUNITY HOS,,H2100\nCFO,GSS,Y4000\nDENTIST,MERIDIAN DENTAL CLINIC,H1400\nVice President  Legal Affairs,Cox Communications Inc,C2200\nEXECUTIVE VICE PRESIDENT,TIME INC.,G5210\nAttorney,\"Scolaro, Shulman, Cohen, Fetter & Bur\",K1000\nS & F,,B5100\nATTORNEY,HENSONFUERST PA,Y4000\nBUSINESS DEVELOPMENT,APPLABS INC.,J1100\nVERNER-LIPVERT BERHARD-MCPHERSON AN,,K1000\nInsurance Executive,The Hartford/Specialty Risk Services,F3100\nVP COMMUNICATIONS,NARAL,J7150\nINTERIOR,,Y4000\nINTERNAL AUDITOR,\"F.M.R., L.L.C.\",Y4000\nATTORNEY,ARLINGHAUS BUILDERS,B2000\nFILMMAKER,BLACK SWAN PRODUCTIONS,C2400\nAdministrator,Northern Ill. University,H5100\nCEO,Republic Bank and Trust,F1000\nADULT EDUCAT,INTERMEDIATE UNIT # 13,J7400\nEngineer,TacShot,J1200\nATTORNEY,LEWIS FEINBEG LEE RENAKER & JACKSON,K1000\nBUSINESS EXECUTIVE,\"METCOR, LTD.\",G5270\nMCCUTCHEN DOYLE BROWN AND EMERSEN,,K1000\nINVE,FIRST NATIONAL CAPITAL MARKETS,Y4000\nProsthetist/Orthotist,Snell Prosthetics & Orthotics,H4100\nPARTNER,PAIR STRATEGIES,J9000\nRIEKES CENTER,,Y4000\nTV F,DIGITAL INNOVATIONS GROUP INC.,J1200\nSITE OIL CO,,E1100\nPARTNER,DYKEMA GOSSETT PLLC,F4600\nDOCTOR,DR. FREDERICK J. GAHL/DOCTOR,G1200\nCITIZENS MORTGAGE,,B4200\nBUSINESS,ULHEIN - WILSON ARCHITECTS,B4200\nCEO,WESTPHAL COMPANIES,Y4000\nPRESIDENT,SAMSON RESOURCE,J7500\nATTORNEY,WORMAN DIXON & MANIS PLLC,Y4000\nSALESMAN,\"ELAN-POLO, INC.\",Y4000\nRESNICK CAPITAL MANAGEMENT,,J9000\nGOLF PRO,SAUGAHATCHEE COUNTRY CLUB,G6100\nVice President,Rene & Associates,Y4000\nB. & L. LANDSCAPE COMPANY INC.,,B3600\nIndependent Mgt. Services,,F4500\nATTORNE,MCGRATH NORTH MULLIN & KRAT,K1000\nPRESIDENT,DOLL DISTRIBUTING,G2850\nPROJ,CORNERSTONE CAPITAL MANAGEMENT,F2100\nOWNER,RONA HOMES,Y4000\nSortware Engineer,Vudu,Y4000\nSENIOR VICE PRESIDENT,VERIZON COMMUNICATIONS,C4100\nPresident,Georgia Real Estate Service Co,F4000\nCHAIRMAN,LEE NATIONAL CORPORATION,F4100\nGRAELAINE CAPITAL MANAGEMENT,,F2100\nENT,AMERICAN MARKETING & MANAGEMENT,F4100\nEX. VICE PR,PENNONI ASSOCIATES INC.,B4000\nIT,HOME DEPOT/IT,G4500\nHousing,Kmx Partners,Y4000\nPOLITICAL,BLACKBURN FOR CONGRESS,J1100\nPHYSICI,RADIOLOGY ASSOC. FOX VALLEY,H1100\nV.P. SALES,C.G.I.,Y4000\nEXECUTIVE,TEXAS CRUDE ENERGY L. L. C.,E1100\nOWNER,WAVE BEAUTY SALON,Y4000\nCHAIRMAN & C.E.O.,U. S. STEEL,M2100\nPRESIDENT,DOW FURNITURE,Y4000\nHomemaker,Not employed,B4300\nIBIS CONSULTING,,C5120\nStatistician,Usc School Of Mechanics,H5100\nINSURANC,SUMMITVILLE CROP INSURANCE,A4000\nBROWNSTEIN AND HYATT,,J5100\nMISSION PRESIDENT,LDS CHURCH,X7000\nExecutive,\"American Commercial Lines, Inc.\",T6200\nWHITLOCK ENTERPRISES INC,,Y4000\nMD,CENTER FOR BIOLOGICAL DIVERSITY,JE300\nBARBARA BRANDT INC,,Y4000\nBUSINESS OWNER,XENOPHON STRATEGIES/BUSINESS OWNER,K2000\nInvestor,Adler Mgmt,F4000\nEXECUTI,BIRCHWOOD LABORATORIES INC.,Y4000\n\"CPA, BUSINESS CONSUL\",Self employed,G0000\nOWNER,\"AMERICA'S MART\",Y4000\nPROV STUMBOAT CO,,Y4000\nATTORNEY,RONALD J. ISRAEL LTD./ATTORNEY,Y4000\nSAATCHIT SAATCHI DFS INC,,Y4000\nVice President of Operations,Home Nursing Agency,H3100\nLAWYER,NUTTER MCCLENNEN AND FISH,K1000\n,\"AKIN GUMP STRASS HAUER & FELD, LLP\",K2000\nATTORNEY,NATIONAL SCIENCE FOUNDATION,X3000\nRYAN & COMPANY,,F5300\nExecutive,Bayside Imports,Y4000\nPASTOR,FIRST PRESBYTERIAN CHURCH - YOUNGSTOWN,Y4000\nMANAGING DIRECTOR,INSIGHT VENTURE PARTNERS,F2500\n\"President and owner, Game Creek Video\",Patrick Sullivan,Y4000\nExecutive,Aramark,K2000\nManager,Zimmer Radio,C2100\nTHE HERB CHAMBERS COMPANI,,T2300\nTUGALOO HOME HEALTH,,H0000\nCRAIN INDUSTRIES INC-HI DIV,,Y4000\nProgram Coordinator,University of Hawaii,H5100\nRESIDENTIAL MORTGAGE SERVICES INC,,F4600\nTHE BOND MARKET ASSOCIATION,,F2100\nPresident,SCR Teansportation,T0000\nATTORNEY,HOGAN AND HARTSON,K2000\nAttorney,CFTC,Y4000\nFiscal,US Dept of Labor,X3000\nBRAY INTERNATIONAL/PRESIDENT/CEO,,Y4000\nFarmer,\"Brian Thibodeaux Farms, Inc.\",A1000\nBROWN-FORMAN BEVERAGES WORLDWIDE,,G2820\nSOFTWARE DEVELOPER,JUNIPER NETWORKS,Z9500\nTelevision Editor,Fremantle Media,Z9500\nINVESTMENT MANAGER,T E.C FINANCIAL MANAGEMENT,Y4000\nOWNER,CORIMAR LATINO SVC.,Y4000\nPhysician,Laurence A Lang MD Inc.,H1100\nPR,Nunn Electric,B5500\nVICE PRESIDENT,THE BOCKORNY GROUP,K2000\nPLANNER,CITY OF HURST,X3000\nCEO,Midwest Heart Foundation,Y4000\nCHAIRMAN OF THE BOARD,SHEEHAN PIPE LINE CONSTRUCTION CO.,B1500\nCredit Union CEO,First Carolina Corporate CU,F1300\nSERALE LABORATORIES,,Y4000\nPresident,Levcor,F4100\nPhysician,Madison Abortion Clinic,J7150\nPresident,Bennett Forest Products,A5000\n\"VP, PRESCRIPTION BENEFIT MGMT\",CVS CAREMARK,G4900\nROBIN BUILDING INC,,Y4000\nCPA,ERNST & YOUNG LLP.,F5100\nRealtor,Northwood Realty,F4200\nATTORNEY,LOWEY DANNENBERG COHEN AND HART,J9000\nCHAIRMAN,MCLAUGHLIN & MORAN INC.,G2850\nNURSE,ROCKFORD HEALTH SYSTEM,H1130\nAUDITOR,CN RESOURCES,Y4000\nM.D.,ENT ASSOCIATES,H1130\nINTERVENTIONAL CARDIOLOGY,CARDIOLOGY CONSULTANTS OF LOUISIANA,H1100\nINDUSTRIAL ELECTRONICS REPAIR INC,,Y4000\nATTORNEY,MCBRIDE ENTERPRISES INC.,Y4000\nENGINEER,HARMONY MANAGEMENT,Y4000\nDIRECTOR OF OPERATIONS,\"INTEREXCHANGE, INC.\",Y4000\nBAYLOR MEDICAL CTR,,H1100\nInvestment Banker,Jefferies &amp; co.,F2100\nPRESIDENT,KKSP INC.,M5000\nPRESIDENT & CEO,MERCY COMMUNITY HOME & HEALTH SERVICE,H3700\nOwner,RJB Properties,F4000\nPRESIDENT,CARY OIL COMPANY,E1170\nCONSULTANT,JAMES K WEBER & ASSOCIATES INC.,Y4000\nReal Estate Manageme,The Solomon Org,F4000\nVP,WIRTZ CORPORATION,G2850\nBRENDA FORTE,,Y4000\nPEERLESS DISTRIBUTING CO,,Y4000\nROBERT QUINN & ASSOC INC,,Y4000\nCOMPUTER CONTRACTOR,SELF EMPLOYED,C5100\nDELIVERY DRIVER,CARDINAL HEALTH,J1200\nMORGAN LEMIS & BECKING,,K1000\nNURSING HOMES,COMMONWEALTH CARE,J1100\nATT,GARDNER MIDDLEBROOKS GIBBONS KI,K1000\nPresident,A D Max Llc,Y4000\nBANKER,PENNSYLVANIA TRUST,Y4000\nPROWALL DRYWALL,,Y4000\nMID-STATES ENGINEERING,,Y4000\nRetired,Hauser Insurance Group,F3100\nprofessional,self employed,J1200\nOwner,Bankos Beverage,F4000\nCEO,POLYCHROMIX,Y4000\nLABORER,EXPRESS EMPLOY. PROFESS.,Y4000\nSVP & CIO,Columbian Mutual Life Insurance Compan,F3300\nEngineer,Broward County,X3000\nF S MAAS & CO,,Y4000\nGROWALD & COMPANY,,JE300\nROCKINGHAM COU,BOARD OF SUPERVISORS,Y4000\nVice President,\"Cedar Fair, L.P.\",Z9500\nHOTEL EXECUTI,MANDALAY RESORT GROUP,G6500\nTYSON FOODS INC,,J1200\nDirector of Events,National Foundation for Teaching Entre,H5100\nHOUSTN U DO IT,,Y4000\nSoldier,Military,X5000\nOwner,Gateway Insurance Company,F3100\nIT Specialist,IBM,J1200\nPhysician,\"Emergency Physicians,Pa\",H1100\nSearch Manager,Microsoft,C5120\nMERCHANT BANKER,LIVINGSTON COMPANY,Y4000\nINVESTOR,JAYMARK KAMER INC,Y4000\nlawyer consultant wr,self/retired,J1200\nFounder,\"America Works of NY, Inc\",Y4000\nexec.,Huizenga Mfg. Group,M2300\nAttorney,\"Keegan Warlin & Pablan, LLP\",K1000\nBUSINES,PROFICIENCY TESTING SERVICE,H1700\nCFO,Maryville Tecnology,Y4000\nVP CABLE TV SALES,DISNEY ABC DOMESTIC TV,C2000\nDairy Farmer,Vierra Dairy,A2000\noperations manager,Revere Mortage,Z9500\nFuneral Director,\"Funeraria Juan-John's Funeral Home\",G5400\nEMERGENCY MANAGER,SHELL,Z9500\nNORTHEAST SECURITY,,G5290\nAttorney,Whatley Drake LLC,K1000\nPARTNER,GREENSTREET ENTERPRISES,Y4000\nSELF-EMPLOYED,LOGIC SPRINGS TECHNOLOGIES,Y4000\nLONG GASOLINE PRODUCTS,,Y4000\nATTORNEY,LUM DANZIS DRASCO ET AL.,K1000\nVICE PRESIDENT,ROSEWOOD HOTELS,T9100\nSALES,WILLIAM J. CHRISTIE ASSOCIATES INC.,Y4000\n\"VP, CHO, CNO\",THE CHRIST HOSPITAL,Z9500\nCEO,MERITAGE HOMES,J5100\nHULL TOWILL NORMAN AND BARRETT,,Y4000\nROSENTHAL CHEV JEEP EAGLE,,T2300\nAUTO BODY,\"RIDGEFIELD AUTO BODY,INC.\",J1100\nSuperintendent,\"Weber Health Care Center, Inc.\",H2200\nSR. CHAIRMAN OF T,JB HUNT TRANSPORT,T0000\nRetired Physicist,Jacobs Engineering,B4400\nLABORER,ALCOA,M2250\nPAINTER,OLSENAUTOBODY,Y4000\nSALES TR,BURLINGTON CAPITAL MARKETS,F0000\nASST. GEN,GUARDIAN INDUSTRIES CORP.,M7200\nNEW YORK STATE OFFICE OF MENTAL RET,,Y4000\nCHIEF FINANCIAL & ADMINISTRATIVE OFFIC,EMPIRE MARKETING STRATEGIES INC.,Y4000\nSHEPHERD TRANSPORTATION,,T0000\nOWNER,TREASURE ISLAND HOTEL,T9100\nBanking,New Haven Savings Bank,F1200\nBUSINESS OWNER,K.P.M. EXCEPTIONAL LLC,Y4000\nPRESIDENT AND CEO,FDR FOUR FREEDOMS PARK,X4000\nHealth Scientist,World Health Organization,Y4000\nATTORNEY,LAW OFFICE JOUMANA KAYROUZ,K1000\nMet One Instruments Inc.,,Y4000\nOwner,Skylink Ltd,Y4000\nCPA,KATZ KATZ & SPARKS,Y4000\nCEO,JEFFERSON LINES,T4100\nOwner,Express Personel Services,G5250\nVP OF FINANCE,RICE UNIVERSITY,H5100\nLegal Recruiting Administrator,Sonnenschein,K1000\nPublic Affairs Consu,The Campbell Company,K2000\nCEO,\"Frye Properties, Inc.\",F4000\nFINANCIAL ANALYST,SELF-HELP,F5000\nDeveloper/Real Estate,Self employed,F4100\nDALLAS INDUSTRIES,,M5000\nVINK PIER & TEAGUE PC,,F5100\nSOLE PROPRIETOR,YING Q. WANG CLINIC,Y4000\nATLANTIC ASSET MANAGEMENT,,H5200\nSTERLING OPHICOL CO,,J5100\nCONTADINA FOODS,,Y4000\nSystems Analyst,\"Casey's General Store\",Y4000\nLIBRARIAN RETIRED,RETIRED,X1200\nDIRECTOR,STEUBEN CO. REAL PROP. TAX,Y4000\nCHIEF EXECUTIVE,\"VANIR CONSTRUCTION MANAGEMENT, INC\",B1500\nBAILLIE FAMILY FARMS,,A1000\nOWNER,\"VET VISION, INC.\",Y4000\nGOVERNMENT AFFAIRS,WL GORE & ASSOCIATES,M1000\nMINUTE-MAN ANCHORS INC,,Y4000\nHousewufe,NA,Y4000\nNATL CITY BANK,,F1100\nSCANA PETROLEUM RES,,E1620\nREAL ESTATE BROKER,BH&G NORTHLAKE,J9000\nMILLER TABAK ROBERTS SECURITIES LLC,,K1000\nATTORNEY,FARBER LAW OFFICE,K1000\nSELF,FORT WAYNE ANODIZING,J1100\nWALKER HEBETS LLC,,Y4000\nINFORMATION REQUESTED,UC HEALTH,Y4000\nATTORNEY,CELANESE CHEMICAL CORP.,Y4000\nBLUE HILL GROUP,,Y4000\nTRATOROS CONSTRUCTION,,B1500\nDoctor-Ophthalmology,SEECA Vision,Y4000\n\"SENIOR VP, DEVELOPMENT\",\"HOME PROPERTIES, INC.\",F4100\nHOMEMAKER,GRANDMOTHER,X1200\nGOVERNMENT RELATION,\"RICCHETTI, INC.\",K2000\nVICE PRESI,BONANZA BEVERAGE COMPANY,G2850\nBUSINESS EXEC,BLOUNT AND ASSOCIATES,B1500\nCAMPAIGN MANAGEMENT,,K2000\nINSIGHT DIRECT INC,,Y4000\nTRAVEL EVENTS DIRECTOR,TREK BICYCLE CORPORATION,J9000\nReal Estate Development,A.G. SPANOS COMPANIES,F4100\nVICE PRESIDENT,HILLS DEVELOPERS,F4100\nSTATE SE,MASSACHUSETTS STATE SENATE,X3000\nManufacturing,Self,T5200\nPHYSICIAN,UNIVERSITY SURGEONS,H1100\nCPA,American Financial Corp.,F3100\nAssistant Treasurer,Harvard University,H5100\nOFF. MGR,CHART HOUSE,Y4000\nINFO REQUESTED,GERRY N. KAMILOS LLC,F4100\nOWNER,EXECUTIVE STRATEGIES,Y4000\nCHAIRPERSON,FREDDIE MAC,F4600\nPRESIDENT,SUSAN KAUFFMAN ASSOCIATES LL,Y4000\nEducator,Montgomery College,H5100\nINVESTMENT MANAGEMENT,ANGELO GORDON,F2600\nHANDCRAFTED PEWTER,,Y4000\nNH CHARITABLE FOUNDATION/EXECUTIVE/,,Y4000\nLEATHERBEE AND COMPANY,,Y4000\nPRESIDENT,SANTIAGO FINANCIAL INC.,B2400\nSPACE SYSTEMS/LORAL/PROGRAM MANAGER,,T1700\nSR VP - ATLANTIC - GULF,\"WILLIAMS WPC-I, INC\",E1140\nFES INC,,Y4000\nUNITED RENT ALL,,G5300\nPresident/ Finance,Capital One,F1400\nLUBBOCK NATIONAL BANK/PRESIDENT/CEO,,F1100\nAttorney,Guttarnar Griffiths & Powell P.C.,Y4000\nCfo,Ayuzando Guardians,Y4000\nPINEVILLE SHOE SHOP,,Y4000\nVICE PRESIDENT TECHNICAL SERVICES,BLAIR COMPANIES,F4000\nSEE ROCK CITY INC,,F1100\nTEACHER,ONEIDA T A,L1300\nOWNER,MCDONALDS RESTAURANTS,G2900\nengineer,Janssen Spaans,B4000\nCORBETT COMPANIES,,Y4000\nDIAGNOSTIC RADI,CHATTANOOGA IMAGING,H1130\n\"SILVER, FREEDMAN & TAFF\",,K1000\n\"MANAGER, REGIONAL SALES-BALA CYNWYD, P\",COMCAST CABLE,C2200\nTeacher,Il Hs District 125,Y4000\nTROUT AND RIGGS,,Y4000\nDEVELOPMENT OFFICER,COLUMBIA LAW SCHOOL,H5170\nPOLATELLO NEIGHBORHO,,Y4000\nPresident,Silver State Masonry,B1000\nMarketing Manager,Lockhead Martin,D2000\nExecutive,Moleculon research corp.,J1200\nALEXANDERS PRINT SHOP,,C1300\nCOO,Blue Cross Blue Shield of NC,F3200\nATTORNEY,HALL & ASSOCIATES,K1000\nVANCE C MILLER INTERESTS,,F4100\nNEW ENGLAND DEVEL,,Y4000\nSUBSTITUTE TEACHER,SAN ANTONIO IND SCH DISTRICT,Y4000\nAssociate,Generation Investment Management,F2600\nPRESIDENT,GHENT MFG.,Y4000\nAttorney,Booth Creek ski Holdings,Y4000\nDIRECTOR OF ADMINIST,\"ACLOCHE'\",G5250\nLawyer,UT Assoc of REALTORS,F4200\nATTOR,KANSAS CITY SOUTHERN RAILROAD,T5100\nChief Exec Officer,ING-US Financial Services,F0000\nLicensed Professional Counselor,\"Deborah S Miller, EdD, LLC\",Y4000\nBANKER,CITI,F4600\nINDEPENDENCE UTILITY CONTRACTOR,,Y4000\nTHORNE TRADING CO. LLC,,Y4000\nCurator,High Mueseum,Y4000\nSergeant Major,US Army,X5000\nInvestor,HPI,F7000\n\"WORKERS' COMPENSATION JUDGE\",\"STATE OF CALIFORNIA/WORKERS' COMPEN\",X3000\nLAWYER,PARTNER - DUANE MORRIS,Y4000\nKEEGAN ENTERPRISES LIMITED,,Y4000\nEMBARCADERIO MEDIA,,Y4000\nRestauranteur,Fleming,G2900\nEMPIRE COLLEGE,,H5200\nBRAUER AND CO,,Y4000\nExecutive,SEACOR Holdings Inc.,T6200\nMOVIE DIRECTOR,HARDING PROD INC,Y4000\nSALES,LUFTHANSA,Y4000\nJUDDS BRO CONSTRUCTION CO S,,B1500\nCeo,Morrill Motors Inc.,Y4000\nSocial Worker,Howard Brown Health Center,J1200\nGROLO ANEST SRVC,,H1130\nConsultant,Ryan,F5300\nWELLINGTON HOTEL CO INC,,T9100\nlawyer,colson hicks eidson,Z9500\nEDUCATION POLICY ADVISOR,\"GOVERNOR O'MALLEY'S ADMINISTRATION\",Y4000\nOWNER,THE GENESIS GROUP,Y4000\nPRESIDENT,AJ KIRKWOOD & ASSOC,J1100\nMISSIONARY,UNITED METHODIST CHURCH,X7000\nCOMMUNICATIONS COORDINATOR,BELLA BEAUTY COLLEGE,H5200\nSenior Vice President,\"Downey McGrath Group, Inc.\",K2000\nc.e.o.,Oil-Dri Corp. of America,E1100\nNAVEL OFFICER,U.S. NAVY,X5000\nWBXX-TV,,C2100\nINVESTMENTS,IRWIN ROSE & CO.,J5100\nWebmaster/Site Desig,Mark B. Vafiades Computer Applications,J1100\nPRESIDENT,BACKAL DENTAL LAB,H1400\nVISITING PROFESSOR,DUKE LAW SCHOOL,H5170\nC.E.O.,ELITE FOOD COMPANY,Y4000\nAnalyst,Diao & Co,Y4000\nCivil Engineer,DGI-Menard Inc.,Y4000\nATTORNEY,\"SCHIFF HARDIN, LP/ATTORNEY\",K1000\nCounty Judge,Galveston County,X3000\nVICE P,VIRGINIA BANKERS ASSOCIATION,F1100\nExecutive,URI,Y4000\nPublic Relations Executive,Century Stategies,G5270\nFARMING,HARRIS FARMS,A4000\nInfo Requested-Best Efforts,Info Requested-Best Efforts,Y2000\nN Y S DEPT OF TRANSP,,X3000\nA,\"ROBBINS, RUSSELL, ENGLERT, ORSECK\",K1000\nRETIRED,ELGIN LOCAL SCHOOLS,Y4000\nProduction,Self employed,J7400\nCRNA,USAF,X5000\nPHY,DUPAGE VALLEY ANESTHESIOLOGISTS,H1130\nREALTOR,MAX GURVITCH REAL ESTATE,F4000\nPhysician,Austin Heart Hospital,H1100\nPATRICK TAYLOR CO,,Y4000\nAuto Sales,D & C Honda,J5100\nEXECUTIVE DIRECTOR,COMPUTER VILLAGE,Y4000\nADMI,UNITED HELLENIC AMER. CONGRESS,Y4000\nPhysician,Anesthesia Associates of Ann Arbor,H1130\n\"DOWDY, KITCHENS, WODDINGTON & ET AL\",,\nPHYSICIAN,RADIOLOGY ASSOC. OF MACON,H1130\nFRANK KERR,,M1000\nATLANTIC AMERICAN CORPORATION,,F3000\nHOLIDAY DRY CLEANING & LAUNDRY INC,,G5500\nSHOWROOM SALES,,Y4000\nLAWYER,HALLETT WHIPPLE,K1000\nTour Driver,ENOA Tours,Y4000\nOCCANIC CABLE,,C2200\nOWNER,\"DANIEL'S CAR CARE\",Y4000\n\"JAMES, MCELROY\",,Y4000\nN/A/DEVELOPER,,F4100\nVice President,Ind Ins Agts & Brokers of South Caroli,F3100\nTechnology Director,Final Finish Properties Inc,F4000\nHR Executive,General Electric Co,M2300\nNeurosurgeons,Goldsboro Neurological Surgery PA,H1130\nPrincipal,School District 45-45A,X3500\nWATER MARK PRESS,,C1100\nINFO REQUESTED,Inventory And Consulting Co. Llc,Y4000\nATTORNEY,VAALCO ENERGY INC.,E1000\nExecutive,Northwest Evaluation Assoc,G5200\nKohlberg Kravis Roberts,,F2600\nGOURMET FOOD PROCESSO,SELF EMPLOYED,G2100\n\"TYREE, MARTIN, ESKEW, ROBERTS ET AL\",,K1000\nDIRECTOR -,AMERICAN ELECTRIC POWER,E1600\nrequested information,,LT500\nATTORNEY,SHUMAKUR WITT GAITHER & WHITAKER,K1000\nCHAIRMAN,\"ZINKAN ENTERPRISES, INC.\",M1000\nATTORN,LAW OFFICE OF ROBERT M KEEFE,K1000\nBEARS PLUMBING INC,,B3400\nGRAPHIC COMMUNICATIONS INC.,,C1300\nCHIEF EXECUTIVE OFFICER,KISH BANK,F1000\nMEDINA CLEANERS & SHOE,,G5500\nVice President/Gener,CF Industries,A4100\nPRESIDEN,\"LAKE NONA CONSULTING, INC.\",Y4000\nPACE CONSULTING,,Y4000\nATTORNEY,\"HARTER SECREST & EMERY, LLP\",K1000\nUNIV OF SOUTHERN CA MED SCH,,H5150\nBUILDER,BA OF WESTERN NEVADA,B2000\nATTORNEY,\"HOLLAND AND KNIGHT, LLP\",K2000\nCONDO DEV.,EASTSIDE REAL ESTATE,F4000\nPHYSICIAN,\"ROSEBURG ANESTHESIOLOGY SPECIALISTS, P\",H1130\nFINANCIAL MANAGER,\"DEBRA E. LEWIS DDS, PC\",H1400\nCEO,American Kiosk Mgmt.,Y4000\nInvestment Managemen,Navellier & Associates Inc,F2100\nBURT SWANSON ET AL,,K1000\nPresident,Kimco Realty Corporation,G4000\nEngineer,Maxtor Corp.,C5110\nBusinessman,Ajax Capital LLC,F2000\nBAXTER LABS,,H4300\nBB GREENBURG CO,,Y4000\nPresident,Dayton Manufacturing,Y4000\nSILK SCREENER,SELF EMPLOYED,Y4000\nFOREIGN SERVICE OFF,U.S. GOVERNMENT,X3000\nCONTRACTOR,ISC CONSTRUCTORS LLC,B3200\nPRESIDENT,GOEKEN GROUP,H3000\nMID-AMERICA DEVELOPMENT CO,,Y4000\nGEORGETOWN COLLEGE,,H5100\nInvestment Advisor,\"Minis & Co., Inc.\",Y4000\nDIRECTOR,PACIFIC WEST BANK,F1100\nHistory/Government Instructor,Blinn College,H5100\nSWAIN MOTORS,,T2300\nSTEFIK REAL ESTATE,,F4200\nCOUNCILMEMBER,CITY OF BERKELEY,X3000\nOPERATIONS MANAGER,SSAB TEXAS INC,M2100\nOCEAN HARBOR CHINESE REST,,G2900\nDEVELOPMENT MANAGER,MICROSOFT,C5120\nPRESIDENT,FIRST SUMMIT BANK,F1000\nSR. LAW ENFORCEMENT,SC DEPT OF PUBLIC SAFETY,X3200\nLAWYER,MORRSION & FOERSTER LLP,Y4000\nHousewife/Artist,Self employed,Y1000\nHomemaker,Homemaker,E1620\nATTORNEY,SELF EMPLOYED ATTORNET,K1000\nANESTHESIOLOGIST,BESSEMER ANES SERV,H1130\nAdministrator,Montana State University,H5100\nExecutive,Asm Investments,Y4000\nPRESIDENT AND CO-OWNER,\"LITTLE GENERAL STORE, INC./PRESIDEN\",Y4000\nGOVERNMENT RELATIONS,BLOOMBERG L.P.,F5500\nLOBBYIST,THE GROSSMAN GROUP,K2000\nDirector Ops & Ventu,\"Koch Industries, Inc.\",E1160\nPresident/CEO,Dacor,J1110\nPRESIDENT,LO & ASSOCIATES,Y4000\nARCHITECT,NICHOLSBOOTH ARCHITECTS,B4200\nTHE SINAY COMPANY LLC,,F4100\nBRIGADE COMMAN,TEXAS NATIONAL GUARD,X5000\nLANDSCAPE DESIGNER,REED HILDERBRAND ASSOCIATES,Y4000\nEDUCATOR,INFORMATION REQUESTED PER BEST EFFO,H5000\nPALACE MOTORS,,Y4000\nDERMATOLOGIST,ADVANCED DERMATOLOGY CENTER,H1130\n\"VP, Sales\",Orchid Island Juice Company,G2500\nEXECUTIV,JACKSONVILLE PAVALION INC.,Y4000\nPHYSICIAN,EMERGENCY CONSULTANTS INC,Y4000\nHURON VALLEY AMBULANCE/OWNER/OPERAT,,H3000\nCORNELL & CO INC,,B1000\nINFORMATION MANAGEMENT CONSULTANTS,,Y2000\nALASKA,BC WASHINGTON,F3200\nGelogist,Self,E1120\n\"JONES, DAY REAVIS ET\",,K1000\nOCEAN YACHTS,,T8300\nPRESIDENT,IRBY INVESTMENTS LLC,F7000\nINVESTMENT B,\"KIDWELL & COMPANY, INC\",F2300\nLEGISLATIVE SPECIALIST,PATTON BOGGS,K1000\nREGISTERED NURSE,ALTUS HEALTHCARE SYSTEM,Y4000\nVICE P,VIENNA GREGOR AND ASSOCIATES,K2000\n\"GOV'T RELATIONS\",R & R PARTNERS,K2000\nRESEARCH SCIENTI,DELPHI CORPORATION,Z9500\nInterior Designer,Thos Ryan Design LLC,Y4000\nEXECUTIVE,MEMMO CONTRACTING,B3000\nPHYSICIAN,BERGEN ORTHOPEDIC SURGERY,J5100\nPARTNER,\"LINKS PARTNERS, LP\",Y4000\nCATERER,LA MAISON CREOLE,Y4000\nLAWYER,BORAH GOLDSTEIN,Y4000\nPAULUS SOKLOWSK AND SARTOR,,B4000\nCOMMUNICATIONS MANAGER,PUBLICATIONS & GEN MANAGEMENT,F5500\nALTER & COMPANY,,F3100\nJEFFERSON CO HEALTH DEPT,,X3000\nLawyer,Pierre Couch Hendric,Y4000\nVICE PRESIDENT/GENERAL MGR,ENTERPRISE RENT-A-CAR COMPANY OF TENNE,T2500\nEnergy Developer,Crown Hydo LLC,Y4000\nLawyer,Self/Lee Intl,Z9500\nTHE HOLLOWAY GROUP/OWNER/PRESIDENT,,Y4000\nPRIVATE INVESTOR,,A4100\nRESEARCH FELLOW/WRIT,VIRGINIA THEOLOGICAL SEMINARY,X7000\nExecutive Director,Beverly Historical Society,Y4000\nEDUCATOR,JOBIN LEEDS PARTNERSHIP FOR DEMOCRACY,Z9500\nRESEARCH PSYCHOLOGIST,MILLS COLLEGE,H5100\nHR Consultant,\"Benetemps, Inc.\",G5250\nBROOKINGS INSTITUTE/ECONOMIST/PROFE,,X4000\nRAD ASSOC OF NO KY,,Y4000\nCLINE GAS INC,,Y4000\nSCOTT HOWELL CO,,Y4000\nPRESIDENT,PIRATES COVE MARINE INC/PRESIDENT,T6000\nPresident,Accu-creste Inc.,Y4000\nCFO,ASTRAZENECA PHARMACEUTICALS,H4300\nKIM HEFLEY EYE CLINIC,,H1120\nNON-PROFIT EXECUTIVE,DETROIT REGIONAL CHAMBER,Y4000\nVP SALES,NORTHSIDE FOODS,G2300\nLawyer,Self-EmployeD,K1000\nINTL CELLULAR VISION ASSOC,,C2200\nCredit Union CEO,Apple FCU,F1300\nDEVELOPER,THE RUMMEL GROUP,J7400\nMANATT PHELPS,,K1000\nProcurement,NASA,X3000\nDirector of Training,AXA Financial,F2100\nNATIONAL STONE,,B5100\nPRESIDENT,CLARK PATTERSON ASSOCIATES,Y4000\nBOOKKEEPER,FOCUS REALTY SERVICE,F4200\nPresident and Chief Executive Officer,The Washington Hospital,H2100\nTechnical Writer,Isilon Systems,Y4000\nOwner,Premier Fence,B5400\nREAL ESTATE,IRVING DEVELOPMENT CO.,Y4000\nInsurance Agent,Lake Insurance Agency,F3100\nHOMART PRESS,,Y4000\nV.P.,INFORMATION REQUESTED PER BEST EFFORTS,Y4000\n\"SNR. VP, RESEARCH & DEVELOPMENT\",\"CONCUR TECHNOLOGIES, INC.\",C5120\nLawyer,\"Stein, Sperling, Bennett, DeJong,\",K1000\nHELLER & ROSENBLATT/PARTNER/ATTORNE,,K1000\nCHAIRMAN & CEO,RC ENTERPRISES,J1100\nCOMP-U-STAFF COMPUTER,,C5100\nREAL ESTATE DEVELOPM,DIVERSIFIED DEVELOPMENT GROUP,F4100\nFARMER WORKER,,A1000\n\"ACCOUNTANT, CPA\",SELF-EMPLOYED,F5100\nSENIRO SYSTEMS ENGINEER,RAYTHEON,D3000\nDirector,City Bank & Trust Company,F1100\nEXECUTIVE,MCRS INC,Y4000\nCHAIRMAN,AUTOZONE,X1200\nVICE PRESIDENT,ST. VINCENT HEALTH,Y4000\nConsultant,Kanner & Associates,Y4000\nPHILLIPS & JORDAN CONSTRU,,B1000\nATTORNEY,V S OPERATING INC.,E1100\nAttorney,First Wind,Y4000\nCORRAL FORD,,T2300\nMARKET SALES LEADER,ALLSTATE INSURANCE COMPANY,F3100\nAttorney,Berman Devalerio & Pease,K1000\nPATTY A CLAY HOSPITAL,,H2100\nMANAGING MEMBER,\"510 VENTURES, LLC\",F2600\nFinancial Service Ex,ING,F3100\nHEAD OF SCHOOL,\"SAINT ANN'S SCHOOL\",H5100\nATTORNEY,\"GARY M. KRASNA, P.A.\",Y4000\nMANAGER,UNITED CENTRAL,J1100\nEMGLO,,Y4000\nC.E.O.,BRADLEY CORPORATION,Y4000\nSales & Water Servic,Self,G0000\nTravel Agent,Jason Travel Inc.,Y4000\nED JACOBS & ASSOCIATES,,Y4000\nVP SALES,BOOKS ARE FUN,G4600\nNEW CAR DEALER,LORENSEN ENTERPRISES,Y4000\nLandman,SELF-EMPLOYED,E1100\nOPPEUHEIMER & CO INC,,F2100\nFIBEROPTIC,WILLIAMS COMMUNICATIONS,Y4000\nTONY DEPAUL & SON,,B1000\nMICHAEL J GRAHAM DMD,,H1400\nCOMMERCIAL REAL ESTATE AGENT,COMMERCE REAL ESTATE SOLUTIONS,F4000\nMEDICAL ADMINISTRATION,PHS,Y4000\nSurgeon,Univ of Minn,H1130\nEmergency Physician,Ohio Valley Med Ctr ED,H1100\nATTORNEY,GREG ESPINOSA LAW,K1000\nATTORNEY,SEARCY DENNEY ET AL,K1000\nOT,Eastern Michigan Univ,H1700\nDoctor,Martin Hersh Md,H1100\nPHYSICIST,U. OF PITTSBURGH,H5100\nPHARMACIST,PLAIN CITY DRUGGIST,H1750\nEXECUTIV,CALIFORNIA ART PRODUCT CO.,Y4000\nBUSINESS EXECUTIVE,THE MANAGEMENT GROUP,C2000\nVP LOGISTICS,FEC RAILWAY,Y4000\nEXECUTIVE VICE PRE,AMLI RESIDENTIAL,F4100\n\"CORPORATE VICE PRESIDENT, PROCUREMENT\",BRIGHT HOUSE NETWORKS,C2200\nCEO,\"ZIFF DAVIS, LLC\",G5210\nBROKER,AON INSURANCE,F3100\n\"TYSON'S HOME APPLIANCE CO\",,Y4000\nASSOCIATE REAL ESTATE BROKER,PRUDENTIAL DOUGLAS ELLIMAN,F4200\nENGINEER,KATY DRILLING LIMITED,Y4000\nGINA YOSHIMORI & ASSOCIATES,,B4000\nENGINEERING MANAGER,SIEMENS,C5000\nHORMEL FOODS INC,,G2300\nBUILDING ADMINISTRATOR,SECOND PRESBYTERIAN CHURCH OF RICHMOND,X7000\nCEO,Rediker Software,C5120\nSANDLER ROSENGARTEN DENIS &,,Y4000\nSK PARTNERS,,Y4000\nRETIRED,INDIANA UNIV,H5100\nSENIOR INFORMATION ENGINEER,MITRE CORP.,D3000\nOffice Manager,Lincoln Trail Ortho Clinic Sc,H1130\nTRANS. CONSULTANT,ADMIRAL MANAGEMENT INTL./TRANS. CON,Y4000\nPRESIDENT,SALES SOLUTIONS,Y4000\nNANA,,G5290\nEXECUTIVE,YOUNG ELECTRIC  INC.,Y4000\nOWNER,SIMMONS FOODS,A2300\nFINANCE MANAGER,MMC,F4500\nKEEGAN MORTGAGE,,F4600\nWriter/Producer,Peter Farrelly Inc.,C2400\nMANAGING DIRECTOR,WARLAND INVESTMENTS,F4000\n\"SVP, MUSIC\",WARNER BROS.,C2000\nLawyer,Ohio Attorney General Office,X3200\n\"NAT'L PUBLIC AFFAIRS GROUP\",,K2000\nMCCLONE INSURANCE AGENCY,,F3100\nCHIEF TECHNICAL OFFICER,\"PROFESSIONAL SERVICE INDUSTRIES, INC.\",G5200\nOWNER,SAN ROQUE SCHOOL,H5100\nSales Mgr.,Gemini G.E.L.,J1200\nDir Train Mgmt,UNION PACIFIC RAILROAD,T5100\nAdvertising,Beaver Building Supply,Y4000\nEXECUTIVE,TAG INC,J5100\nBusiness owner,New Lawrence Grocery,G2400\nDeveloper,Omni New York LLC,F4000\nAttorney,De La O & Marko,K1000\nPRESIDENT,POTTER CONCRETE LTD,B5100\nATTORNEY,STOLL KENNON OGDEN. LLC,Y4000\nPresident,J.W. Childs Assoc,J1100\nGENERAL GROWTH COMPANIES,,J7700\nsocial worker,State of Minnesota,X3000\nINFORMATION REQUESTED PER BEST EFFORTS,GENERAL SURFACE HARDENING INC,Y4000\nEngineer,\"Goodwyn, Mills and Cawood\",K1000\nFAIRCHILD PROP,,F4000\nDermatologist,Self employed,J7400\n\"V.P., Sales--North Division\",Western Wireless Corporation,C4300\nCEO,CINEMA CENTERS,C2700\nEXECUTIVE,STEEL EQUIPMENT SPECIALISTS,Y4000\nSPEECH LANGUAGE PATHOLOGY ASSISTANT,NORTH CLACKAMAS SCHOOL DISTRICT,X3500\nTALK RADIO HOST,AIR AMERICA RADIO,C2100\nENG PROCESS IMPROVEM,UNITED PARCEL SERVICE INC.,T7100\nMANAGING COUNSEL,WFF Acceptance,F1100\nFinancial Services,Venice Capital,T1400\nENGINEER,INPHI,Y4000\nSENIOR ACCOUNT EXECUTIV,BELLEVUE PR,Y4000\nOPERATIONS DIREC,GAUNTLETT & ASSOC.,K1000\nCHIEF EXECUTI,U.S.C. SOLUTIONS INC.,Y4000\nMortgage Banker,AAMG,F1100\nPortfolio Admin,Arnhold Bleichroeder,Y4000\nHomemaker,n/a,E1630\nAEG HOLDINGS,,E1150\nSUPERIOR PACKAGING,,M1500\nPresident,\"Double Deuce Land & Minerals, Inc\",E1200\nPRESIDENT,KLN ENTERPRISES,G2100\nFRUITLAND DRESSED MEAT,,Y4000\nEDUCATOR,UNIVERSITY OF MARYLAND,H5100\nChief Financial Officer,The Mechanics Bank,F1100\nGRIMALDI HALEY & FRANGIO,,Y4000\nBanker,Elmira Savings & Loan,F1200\nOWNER,THE TOBACCO LEAF,Y4000\nHEAVENRICH ENTERPRIS,,Y4000\nNATIONAL PARK,NATIONAL PARK SERVICE,X3000\nPRESIDENT,ATWATER GROUP,Y4000\nPASTOR,EFC OF EATON,Y4000\nInformation Requeste,City of Norwalk,X3000\nOWNER,\"LANE ASSOCIATES, INC.\",Y4000\nAsset Management,Arcoda Capital Management,F2100\nPHYSICIAN,\"HYUN KANG, MD\",H1100\nOWNER,SIPOS REALTY,F4200\nOWNER,DANA COMPANY,F3100\nC.E.O. AND PRESIDENT,CARTER EXPRESS INC,Y4000\nINDIAN DIAMOND & COLORSTONE ASSOC,,Y4000\nPHYSICIAN,GULF COAST KIDNEY ASSOCIATES,Z9500\nRANCH OWNER,NONE,A3000\nPartner,De Anza Ranch,A3000\nAttorney,CA Department of Insurance,Z9500\nParole Commissioner,US Justice Department,X3000\nKINSEY TROXEL JOHNSON & WALBORSKY,,Y4000\nProfessional Enginee,UNIV OF S INDIANA,Y4000\nCo-Owner,Fiorentino and Hewitt,K2000\nUNIVERSAL MUSIC,,C2600\nSELF-EMPLOYED MANUFA,W. A. KRAPF INC.,Y4000\nPresident Hospital D,Kindred Healthcare Inc,H2100\nSuntrust Bank Tampa Bay,,F1100\nVice President,\"Innerpulse, Inc.\",Y4000\nMERCY HEALTH CORP,,H2100\nATTORNEY,PONTIKES & SWARTZ LLC (SELF),Z9500\nPresident and Chief,Phoebe Putney Memorial Hospital,H2100\nPrinceton University,,J1200\nOIL PRODUCER,SELF,J1100\nJOHNRAD MFG INC,,Y4000\nWOMANS CLINIC,,H1100\nSENIOR DIRECTOR - GOVERNMENT AFFAIRS -,NOVO NORDISK,H4100\nFINANCIAL ANALYST,ST. GOBAIN,Y4000\nAttorney,Donovan & Watkins,Y4000\n\"RESEARCH ASSISTANT,\",STANFORD UNIVERSITY,H5100\nCHAIRMAN,WIND-UP RECORDS,C2000\nENGINEER,KELLY IT,Y4000\nPHARMACIST,ELI LILLY & CO,H4300\nKURZMAN KARELSEN & FRANK,,J7400\nVice President of Fe,Advamed,H4100\nACCOUNTING,CLEARWATER INC.,J7400\nManaging Partner,Porter Gordon Silver,K2000\nTRINITY INDUSTRIES INC./PRESIDENT/H,,T5200\nKIPPERMAN & JOHNS,,K1000\nSMITH BUCKLIN AND ASSOCIATES,,Y4000\nCAREER MANAGEMENT CONSULTANT,LEE HECHT HARRISON,Y4000\nMASON COUNTY,,X3000\nPARTNER,\"NEXUS GROUP, LLC\",Y4000\nVice President,\"Northwest Nuculear, Llc\",Y4000\nMaintenance,Hilcorp Energy Company,E1000\nBusiness Owner,Breakaway Courier,Y4000\nPresident,Pisces Intl. Inc.,Y4000\nBusiness Owner,Self Employed,H5200\nSTOCK BROKER,OPPENHEIMER & CO.,F2100\nProsthetist/Orthotist,The Prosthetic Center,H4100\nFLEMMING & MORSE INC,,Y4000\nGW,,Y4000\nReal Estate Sales,Millford,Y4000\nBUSINESS OWNER,ERHM ORTHOPEDICS,H1130\nBusiness Owner,Altstadt Plumbing,B3400\nPHYSICIA,CLARA MAASS MEDICAL CENTER,H1130\nSTATE OF IL DEPT OF AG,,X3000\nWedding Officiant,Self employed,Y4000\nPartner,Robinson Hughes & Christopher,Y4000\nCOUN,\"SCHILLING DISTRIBUTING CO, INC\",Y4000\nChief Executive Offi,Fci & Associates Inc.,Y4000\npsycholgist,retired,J1200\nENGINEER,\"ZTECH, INC\",Y4000\nPRESIDENT,LEYLAND DEVELOPERS,F4100\nProgrammer,\"Mirtech int'l security\",C5000\nBusiness Owner,MCRS,Y4000\nNEW YORK BOARD OF EDUCATION,,X3500\nJASPAN SCHLESINGER SILVE,,Y4000\nPENNY HUFF FINANCE SERVICE,,J7400\nHUNTINGTON SURGERY CENTER,,H1130\nReal Estate,J M Fitzpatrick & Associates,F4000\nPRET,SECOND JUDICIAL DISTRICT COURT,X3200\nPresident,Saftey Vision,Y4000\nDIR UNDERWRITING SERVICES,BLUE CROSS BLUE SHIELD OF NE,F3200\nCONSULTANT,C&M CAPITOLINK,K2000\nPARTNE,LOCKE LORD BISSELL & LIDDELL,K1000\nTONDISCO INC,,Y4000\nPhysician,Albert Einstein Medi,H2100\nWA ST,,Y4000\nJURIKA & VOYLES,,F5000\nSIMANCO INC,,Y4000\nChairman Of Executive Committee,Corrections Cry Of America,Y4000\nConsultant,Haynes & Company,Y4000\nSTATE,IDAHO HEALTH CARE ASSOCIATION,H2200\nCEO,CAMPBELL EWALD,G5210\nPlanner,Infouse,J7400\nPRESIDENT,KMC EXIM CORPORATION,Y4000\nWALSH DDS,,H1400\nDIRECTOR OF ADVERTISING,TEXAS FARM BUREAU,A6000\nAMOCO OIL CORP,,E1110\nCONSULTANT,HEFFLEY & ASSOCIATES,K2000\nMANAGER,GOODTIMES,G2900\nHUMAN RESOURCES MANAGER,NONE,Y4000\nElectronics Engineer,Lakenheath Electronics Design,Y4000\nGrassroots Specialis,NCEMC,E1610\nVP Technical Svcs &P,\"Alliance Coal, LLC\",E1210\n\"MANAGING DIRECTOR, KED INVESTMENTS\",KOCH INDUSTRIES INC,E1160\n,MI DEPT OF LABOR & ECONOMIC GROWTH,X3000\nPRESIDENT,M & D PROPERTIES,F4000\nKINARD CRANE,,K1000\nDIRECTOR OF FINE WINES,NATIONAL DISTRIBUTING COMPANY,G2850\nAttorney,\"Rosner & Chavez, LLC\",K1000\nATTORNEY,BRADLEY ARANT BOULT CUMMINGS,J7400\nEXECUTIVE,KENNY CONSTRUCTION/EXECUTIVE,B1500\nMILLBURN REG DAY SCHOOL,,Y4000\nFacility Specialist,Dod,X5000\nCEO/HOSPITAL ADMINISTRATOR,SIOUXLAND SURGERY CENTER,H1130\nPITT CO SCHOOLS,,X3500\nCEO,AMERICAN COMMERCIAL LINES INC.,T6200\nOWNER,\"SILVA'S H TREE SERVICE-L\",Y4000\nERIE CO AG SOCIETY,,Y4000\nbanker,American Bank & Trust,F1000\nPHILA PUBLIC SCHOOL DISTR,,X3500\nPresident,\"Camp Jam, LLC\",Y4000\nEXECUTIVE,\"CONTACT NETWORK, INC.\",Y4000\nCook,Village Bistro,J1200\nFLYNN READY-MIX,,X3000\nTRANSPLANT SURGEON,UNIVERSITY OF TN,H5100\n\"VICE PRESIDENT, CUSTOMER SERVICES\",COUNTRY VILLA HEALTH SERVICES,H2200\nPRESIDENT,AIRAMID HEALTH MGMT,Y4000\nNICOLA CONSTRUCTION CORP,,B2000\nAccount Executive,Express Title Services,F4600\nFINANCIAL ADVISOR,FFCU/FINANCIAL ADVISOR,Y4000\nTEXA KANA TX I S D,,X3500\nPRESIDENT,ASSOCIATION OF CIVILIAN TECHNI,L5000\nHARVEST ACID MGMT IN,,F4100\nLA LIFE STYLES,,G5000\nInformation Requested,National Environmental Coverage Corp,Y4000\nCEO,Ram Realty Services,F4200\nATTORNEY,HOWARD LAW PC,K1000\nALTAIR ENGINEERING,,C5120\nHOME HEALTH CONNECTION INC,,H3100\nCONSULTANT,SUSAN J WHITE & ASSOCS.,K2000\nSales Manager,PFIZER,H4300\nPROFESSOR,UHD/PROFESSOR,Y4000\nEXECUTIVE VP OPERATIONS,ROSE INTERNATIONAL INC.,Y4000\nATTORNEY,\"WILLIG, WILLIAMS & DAVIDSON\",J7400\nCOURSON OIL & GAS INC,,E1120\nULTRASTECH SLEPPER,,J1100\nPRESIDENT & COO,ACOSTA SALE COMPANY,G5200\nAttorney,Stone Tower Capital,F0000\nENGINEERING ASSOC,,Y4000\nPresident,K-Group Holdings,F4100\nDirector of Patient,PMT Ambulance,H3000\np,Professor of Law,H5170\nATTORNE,\"WYATT, TARRANT & COMBS, LLP\",K1000\nCHAIRMAN OF,FIRST HEALTH GROUP CORP,H3700\n\"Fuller Solutions, Inc\",,Y4000\nattorney,Camb Publ Health Comm,H0000\nRN,Ed Wolanski Md Pc,H1100\nOwner,Peck Enterprizes,JD100\nManager,Elite. Team Realty,F4200\nMEDIA EXECUTIVE,JEHANA@MAC.COM,Y4000\nPROPERTY OWNER,SELF,F4000\nBusiness Owner,\"Art Initiative,Inc.\",Y4000\nFBI,,X3000\nCERTIFIED PUBLIC ACCOUNTANT,COUNCILMAN FARLOW & COMPANY L.L.P.,Y4000\nPRESIDENT,WILLIAMS ENERGY GROUP,E1000\nPORTFOLIO MANAGER,OWL CREEK ASSET MANAGEMENT,F2100\nLADIES GARMENT MFG,,Y4000\nCEO,CR LAINE FURNITURE CO,G4400\nFEDERAL EXPRESS,,J7400\nAttorney,Summers Compton Wells,J7400\nOWNER,LONE STAR RECOVERY,Y4000\nReal Estate,Konover Investments,F4100\nCOMMERCIAL REAL ESTATE - DEVELOPER,SELF,G0000\nABINGTON UROLOGICAL SPECIALISTS,,H1130\nGEOLOGIST,\"MINE MAPPERS, L.L.C.\",Y4000\nPRESIDENT,CARIBBEAN AUTOMART,Y4000\nINFO REQUESTED,THE AUTO OF ENID,Y4000\nPARTNER,RIESTER,Y4000\nEXECUTIVE,BARRETT JACKSON,Y4000\nChairman,\"Timmons & Co, Inc\",K2000\nPRINCIPAL,SYNTEL INC,C5130\nFINANCIAL EXE,MELLON FINANCIAL CORP,F1100\nHUDSON & MONTOGMERY,,Y4000\nSALES,FARM BUREAU INS,A4000\nENGINEER,PATRICK ENGINEERING,B4400\n,\"EATON, DEAGUERO & BISHOP, P.L.L.C.\",K1000\nPresident,Belmont Bank & Trust,F1000\nBUS DEV MGR,FACTEON,Y4000\nREAL ESTATE BROKER,STAUBACH RETAIL,F4200\nKINGS SUPER PHARMACY,,G4900\nREAL ESTATE BROKER,\"JIM BURKE, REALTORS\",F4200\nSVP Insurance Services,California State Automobile Assn Inte,F3100\nCEO,COEUR,E1220\nPresident,The Knapheide Manufacturing Company,T3200\nWeb developer,VML,Y4000\nCPA,BRODIE SUMMERS AND WILKES,Y4000\nRN,Orlando Regional Healthc,H0000\nIA,DAL,Y4000\nCHICAGO AND NORTHEAST ILLINOIS DIST,,LB100\nCLAREMONT MENS COLLEGE,,H5100\nJAMES CAMPBELL & ASSOC,,B2000\nAccountant,\"CFRA, LLC\",G2900\nPR Director,Weber Shandwick,G5210\nConstruction Management,Mast Construction Services,B1500\nADVISOR,MAHMOOD INVESTMENTS CORP.,F7000\nINVESTMENTS,HIGHSTAR CAPITAL LP/INVESTMENTS,F2100\nCoal Miner,Utah American Energy Westridge,E1210\nPURCHASING AGENT,BARTH ELECTRONICS,Y4000\nImmigration Attorney,\"Tocci, Goss & Lee, PC\",K1000\nFRIEDMAN WANG & BLEIBERG,,K1000\nProfessor,University of Southern Mississippi,H5100\nPT,RTG Medical,Y4000\nINVESTMENT ASSOCIATE,U.B.S. FINANCIAL SERVICES,F2100\nKARBRA CO,,M3100\nSELF-EMPLOYED,MONROE TIMBER COMPANY,Y4000\nINSURANCE,HCC EMPLOYEE BENEFITS,F3100\nCOMPUTER SYSTEM & NETWORK ENGINEER,CLEAR NETWORKS LLC,Y4000\nPHYSICIAN,TACOMA ANESTHESIA ASSOCIATES/PHYSIC,H1130\nCAREGIVER,AFFINITY HEALTHCARE INC.,Y4000\nCEO,RTI INTERNATL METALS,Y4000\nConsultant,self,C1100\nRetired Teacher,Baltimore City Publi,X1200\nBROWN-MCMURTRY,,Y4000\nACADEMIC MED CTR STRA,SELF-EMPLOYED,H2100\nCONSULTANT,STRATEGIC TECHNOLOGY,Y4000\nPRESIDENT,ADVANCED TECHNOLOGY SALES,Y4000\nENGINEERING MANAGER,GENERAL MOTORS,T2100\nPRESIDENT,NOUVIR RESEARCH,Y4000\nOwner,KPH Construction Corp,B1500\nSr.  Director,Comcast Cable Communications I,C2200\nattorney,self,J1200\nMANAGING DIRECTOR,U.B.S. A.G.,F2100\noffice manager,\"Fana Medical Group, PA\",H1100\nHealth Admin,Information Requested,Y4000\nphysician,Mazer Hospitalists,H2100\nLagal Assis,Collins & Maxwell LLP,K1000\nORRICK ET AL,,K1200\nPARTNER,COLUMBIA CAPITAL LLC,F0000\noffice manager,\"Metier Law Firm, LLC\",K1000\nAttorney,\"Law Offices of John T O'Rourke\",K2000\nEducator,Wittenburg University,Z9500\nCHAIRMAN,U.S. HISPANIC CONTRACTORS ASSOCIATION,Y4000\nPRESIDENT,BEST ASSOCIATES,F1100\nFinancial Advisor,Hicks & Assoc,Y4000\nDIRECTOR,HEALTHWORKS,Y4000\nHOME MAKER,NA,Y2000\nWOLVERINE LTD,,F2100\nCEO,SCHOONER INFORMATION TECHNOLOG,Y4000\nATTORNEY,CURRIE KENDALL,Y4000\nREGAL PLASTIC COMPANY,,M1500\nOWNER,HIGH GRADE OIL DISTRIBUTION,Y4000\nProfessor,University  of Rochester,Z9500\nFINANCE,DW FINANCIAL,F0000\nEXECUTIVE,DISPLAY PRODUCERS INC.,Y4000\nDIRECTOR,AMER VETERINARY MED ASSOC,A4500\nNAMPA SD,,L1300\nS G KRAUSS CO,,Y4000\nMartin Capitol Management,,F2100\nTrustee,Central Healthcare,H2100\nDevelopment,State of Ohiio,X3000\nOwner,B J`s Trade Ctr,Y4000\nSole Owner,Palmer Contracting LLC,Y4000\nGREATER LOUISVILLE ANESTHESIA SERVI,,H1710\nAttorney,Harowitz & Tigerman LP,K1000\nMARGARET CHASE SMITH CLOTHING,,Y4000\nCOMPUTER &,COMSTOCK CONSULTING LLC,Y4000\nCA ASSOCIATION,,F4200\nExecutive,Urban Chamber of Commerce,G1100\nTEACHER,OIU,Y4000\nCurves,Metamorphosis Fitness Llc,Y4000\nAttorney,Petit & Strauch,K1000\nExecutive,Portman Holding,J5100\nMARKETING ASSIS,\"LAWRENCE STACK, LLC\",Y4000\nPresident,Capitol Concepts Llc,Y4000\nSUBSTITUTE TEACHER,SAN FRANCISCO FRIENDS SCHOOL,Z9500\nWRITER/PRODUCER,ABC STUDIOS,C2300\nAttorney,\"O'Connor and Ryan\",K1000\nCEO,MULVANE STATE BANK-MULVANE,F1100\nMOBERLY MOTOR COMPANY INC,,T2300\nCPA,Goldman Hunt & Notz Llp,J7400\nVP,PACKAGING CORP. OF AMERICA,A5000\nAttorney,Howard Kohn Sprapet,K1000\nPRES:GRP,CSC,C5130\nManager,The Enterprise Center Inc.,Y4000\nFACULTY,THE CATHOLIC UNIVERSITY OF AMERICA,H5100\nADMIN,USP,Y4000\nKULDEEP R PANDIT MD FCCP,,H1100\nSOUTHLAND CORPORATION,,G6500\nREAL ESTATE,GENERAL,F4000\nINVESTMENT MANAGEMENT,REDWOOD CAPITAL MANAGEMENT LLC,J5100\n,ALBAMA DEPARTMENT OF PUBLIC SAFETY,X3000\nLobbyist,Halloranet Sali,Y4000\nATTORNEY,DAVIS WRIGTH TREMAINE,K1000\nDIV OPERATIONS DIRECTOR 3,BLACK & VEATCH,B4000\nattorney,Orrick Herrington Sutcliffe LLP,J1200\nSales Rep.,Henry Schim Corp.,Y4000\nATTORNEY,STRASSBURGER MCKENNA ET. AL.,K1000\nInformation Requeste,Information Requested,E3000\nVice President,Association of Business & Indu,Y4000\n\"BATH & BODY WORKS, INC\",,Y4000\nCollege Professor,Barnard College,J1200\nINS. EXEC.,AOD RISK SERVICES,F3100\nPresident & CEO,\"Walker Communications, Inc.\",Y4000\nAttorney,Cassin Cassin & Joseph LLP,K1000\nPHYSICIAN,IPC OF DELAWARE,Z9500\nWOODS HOLE OCEANOGRAPHIC INST.,,Y4000\nATTORNEY,HOOVER HULL LLP,K1000\nInformation Requested,Chicago Urban League,Y4000\nPartner,Bentley Bentley & Bentley,K1000\nAFRICAN DEVELP BANK,,Y4000\nTAX PROFESSIONAL,PRICEWATERHOUSE COOPERS LLP.,F5100\nIT BUSINESS ANALYST,JP MORGAN,F1100\nOwner,Barker Nestor,Y4000\nFOOD 4 LESS SUPERMARKETS,,G2400\nNon Profit Execut8vi,Coveant Network,Y4000\nPHYSICIAN,BLUE RIDGE OB/GYN,H1130\nEducation,The College of New Jersey,H5100\nPRESIDENT,LANDRY TREBBI INVESTMENTS,Y4000\nSelf Employer,Self Employed,G0000\nCAROLINA SOUTHERN RAILROAD,,T5100\nPRESIDENT,\"TAMOLLYS'\",Y4000\nUNIV MS MEDICAL CTR,,H1120\nRadiologist,D.R.A. Of Flint,Y4000\nATTO,NATURAL RESOURCE DEFENSE COUNC,JE300\nPRESIDENT - INVESTOR,ROCK CREEK CAPITAL,F2100\nATTORNEY,\"LAW OFFICES OF DALE RICHARDSON, LLC\",K1000\nLOUISVILLE FOOD SERVICES COMP,SYSCO,G2900\nEXECUTIVE VP & CFO,MASSMUTUAL,F3300\nYEAGER JUNGBAUER BAREZAK & R,,K1000\nMKT. WIRE,,Y4000\nGOV,BERRY ROMANI DE CONCINI & SYMMS,J7300\nChairman and CEO,Rohm & Haas,M1000\nCPA,\"THOMAS, HEAD AND GREISEN\",Z9500\nOwner,Aerospace Wire and Cable Inc.,Y4000\nEXECUTIVE,VOYAGER GROUP LP,C5120\n\"LANDERS, RIPLEY & DIAMOND\",,Y4000\nCHAIRMAN,HICKORY FUNITURE MNGMT.,G4400\nDIRECTOR OF FEDER,JOHNSON & JOHNSON,H4000\nMANAGER,HALLIBURTON,E1150\nProfessor,Northwestern Michigan College,H5100\nOAKLAND COMMUNITY COLLEGE,,J5100\nSISTERS OF PROVIDENCE HEALTH,,H0000\nOWNER,INS-EXPERT SERVICES,Y4000\nMANAGER,ATTACHMATE CORPORATION,Y4000\nENGINEER/SCIENTIST,\"FIBERTEK, INC\",Y4000\nSENIOR CON,ANHEUSER-BUSCH COS. INC.,G2810\nCEO,KINETICS,B3000\nATTORNEY,MASRY & VITITOE,J1200\nAttorney,\"Senneff, Freeman & Blueston\",K1000\nPolitical Consultant,Nelson Mullins,K2000\nManager,Mattress Land Inc,Y4000\nPROFESSIONAL VOLUNTEER,,X4200\nDoctor,\"Immanuel Brain, Spine & Nerve Surgery\",H1130\nPresident & CEO,Orange & Rockland Utilities,E1620\nEXECUTIVE,SIMMONS & COMPANY INTERNATIONAL,F2300\nPARTNER,HOME LLP,Y4000\nInternal Medicine Physician,MU,J1200\nInterior Designer,Sucasa Designs,Y4000\nPresident,Carnahan Grain,Y4000\nOPHTHALMOLOGIS,BERRY MILNER UHR LLP,Y4000\nCEO,Strong Partners Health Sys,H0000\nPRESIDENT OF PUBLIC RELATIONS & DIVERS,R + W ADVERTISING,G5210\nMORGAN FINANCIAL GROUP,,Y4000\nATTORNEY,BUCKNELL & STEHLICK,K1000\nOWNER,\"BERG'S POWER EQUIPMENT\",Y4000\nHYDROMENTIA INC.,,Y4000\nEXECUTIVE,MGM GRAND HOTEL,G6500\nSupervisor,ADR General Contractors,J1100\nSANDLER GREENBLUM & BERNSTIEN,,Y4000\nMCCABE-HENLEY PROPERTIES,,F4000\nINFO REQUESTED,HOUSTON SOCIETY OF CHNS AMRC,Y4000\nREAL,ORANGE COUNTY PROPERTY COMPANY,F4000\nSALES,SPACE SYSTEMS / LORAL,T1700\nATTORNEY,\"AKIN, GUMP, STRAUSS, HAUER & FELD\",K1000\nPresident,High Grade Business Group,Y4000\nIRONWOOD CAPITAL,,Y4000\nTHE CHURCH PENSION FUND,,X7000\nVICE PRESIDENT,MUNRO & CO,E1150\nPROJ. MGR.,PEARSON EDUCATION/PROJ. MGR.,C1100\n\"GOV'S OFC\",TEXAS FILM COMM,J1200\nWEBPAGE DESIGNER,GEEK TEAM,C5120\nEXECUTIVE,BRENTWOOD SERVICES,F3100\nMUTUAL COMMUNITY SAVINGS BANK,,F1000\nVice President - HR,Cox Communications,C2200\n\"DONALD, LUFKIN ET AL\",,Y4000\nManagement,Holy Name Hospital,H2100\nCHIEF MEDICAL OFFICER,RIVERSIDE COUNTY REGIONAL MEDICAL CENT,H2100\nATTORNEY,CLOUTIER BARRETT,K1000\nINVESTMENTS,GAMCO INVESTMENTS,Y4000\nSTRASBURGER PRICE STRASBURGER,,K1000\nEFFICIENT ENERGY CONTROL INC,,Y4000\nOwner,Yellowstone Electric Co.,B3200\nLAKE UNION DRYDOCK CO,,T6100\nJACOR BROADCASTING CORP,,C2100\nEXECUTIVE,JANSSEN MOTOR COMPANY,Y4000\nRESEARCH ANALYST,DEPT OF DEFENSE,J1100\nCHAIRMAN,SAZREAC,J5100\nCEO,IMMUNO LABORATORIES INC.,Y4000\nPHYSICIAN,SIERRA GI CONSULTANTS,Y4000\nOwner,BOONE & BOONE CONSTRUCTION,B1500\nPARTNER,\"SUPER BRANDS, LLC\",Y4000\nLobbyist,KS AFL-CIO,L0000\nConsultant,Grantworks,Y4000\nATTOR,BREEDEN SALB BEASLEY & DUVALL,J1100\nGLEN HILL ORCHARD/FARMER/OWNER,,J1100\nFirefighter/EMS,SHREVEPORT,L1400\nDICKEYS BBQ,OWNER/CEO,G2900\nPhysician,Rancocas Valley Aresthesia Assoc.,J7300\nPHYSICIAN,GENERAL HEALTH SYSTEM/BRGP,Y4000\nOWNER,\"YGOMI, LLC\",Y4000\nECONOMIST,NATL. ASSN OF REALTORS/ECONOMIST,F4200\nBusiness Owner,Self-Employed,M7000\nEXECUTIVE,BUILDERS SUPPLY CO. INC.,G0000\nCOURT REPORTER,ELITE REPORTING SERVICES (OWNER),Y4000\nDiagnostic Radiologi,Diagnostic Imaging of Chattanooga,H1130\nExecutive,LT Sound,Y4000\nAUDIT SUPERVISOR,STATE OF TEXAS,X3100\nDIRECTOR OF SUPPLY CHAIN & OPS SOURCES,MILLER BREWING CO,J7300\nGRANT & EISENHOFER PA,,K1200\nINVESTMEN,BARNESS PAPAS INVESTMENTS,J5100\nBANKING,\"SANDLER O' NEILL & PARTNERS\",F2300\nKASF,,Y4000\nMUSICIAN,USAF,X5000\nPhysician,\"Meher Tabatabai, MD\",H1100\nPresident,Orbis Energy Advisers Inc,Y4000\nPART TIME PIANO TEACHER,,H5000\nSALVO AUTO PARTS,,T2200\nPresident,\"SAFECO, Inc.\",Y4000\nPRESIDENT,ESTHETIQUE DENTAL GROUP,H1400\nAttorney,\"Whatley, Drake\",K1000\nDoctor,Tampa Bay Ent And Cosmetic Surgery,H1130\nHospital Pharmacist,Community Med Center,H2100\nChairman of the Board,Allegheny Energy Service Corporation,E1620\nMANAGING DIRECTOR,ZIFF BROTHERS INVESTMENTS,F2100\nRETIRED EDUCATOR/MILITARY,RETIRED,Z9500\nVICE-,INTEGRATED DEFENSE TECH. INC.,C5000\nELECTRICIAN,D & G ELECTRIC INCORPORATED,B3200\nPUBLIC RELATIONS,\"MOOSE'S RESTAURANT\",G2900\nOwner,Morris Furniture,Y4000\nDEBEVOISE & PLIMPTON,LAWYER,Y4000\nCLYDE V LEE MOTORS IN,,Y4000\nATTORNEY,\"DAVID S BILLS, P.C.\",Y4000\nSFX BASEBALL GROUP,,Y4000\nSr. VP,Independent Distribution Network,Y4000\nCENTER REAL ESTATE CORP,,B2000\nphysician,univ of mn,H5100\nPhysician,US Army,X5000\nCTO,PALADIN DATA SYSTEMS,C5130\nInfo. Requested,Info. Requested,A4000\nREAL ESTATE INVESTOR,WEST * GROUP,J7400\nWINDCREST PARTNERS,,C5130\nRegional Mgr Public Affairs,Placer Dome US,Y4000\nATTORNEY,LABATON SOCHCROW,K1100\nCPA,\"RAINER & COMPANY, CERTIFIED PUBLIC ACC\",F5100\nASSISTANT MANA,PILOT TRAVEL CENTERS,E1170\nENGINEER,KALLURI GROUP INC.,Y4000\nChemist,Bayer Corporation,H4300\nBEI,,Y4000\nPresident,New Energy Opportunities,E1000\nATTORNEY,CHEROKEE PARK INC,G6100\nLEGISLATIVE DIRECTOR,CALIFORNIA STATE SENATE,X3000\nTHE ARLENE HERSON SHOW,,C2200\nVICE PRESIDENT,CRESENT BAR INC.,Y4000\nAttorney,Foster Swift,K1000\nGINGISS FORMAL WEAR,,G5000\nM,BUILDING MANAGEMENT SERVICES INC.,F4500\nMEMBERSHIP AND OUTREACH,JACPAC,Z9500\ninvestments,Sears Financial,J5100\nComputer Specialist,Nist,Y4000\nREAL ESTATE,BAUR PROPERTIES,Z9500\nSCHOOL ADMINISTRATOR,MENLO SCHOOL,J1200\nATTORNEY,HOLLAND & UNIGHT LLP,K1000\nParamedic,EMS,Y4000\nPresident,B & B Beverage Co.,G2850\nAnalyst,Deutsche Bank,Z9500\nPRESIDENTIAL LAWN AND CARE,,B3600\nMONTEREY BAY AQUARIUM,,JE300\nCHIEF FINANCIAL OFFI,N.T.S. DEVELOPMENT COMPANY,F4100\nManager,Arjay Stationery Inc.,Y4000\nMANAGER,\"TILCON NEW YORK, INC.\",B5100\nREAL ESTATE,ROBERT PITTENGER COMPANY/REAL ESTAT,F4000\nASST DIRECTOR COGNRE,A.M.A.,Y4000\nGOLF COURSE OWNER,SELF EMPLOYED,G6100\nMANAGING PARTNER,ADVENT INTERNATIONAL CORPORATI,F2600\n\"SYBIL'S FAMILY RESTAURANT\",,G2900\nDIRECTOR ENGINEERING,ADVOCATE HEALTHCARE,H0000\nAMGAS CO,,Y4000\nPRESID,SOUTHERN CONTRACTING COMPANY,B3200\nBank One Corp.,,F1100\nExecutive,Lagunitas co,J1200\nBusiness Owner,Pure Life,Y4000\nREAL ESTATE SALESMAN,SELF- EMPLOYED,F4200\nOWNER,\"TEMPLE TAG, LTD.\",Y4000\nLOGISTICS,D.O.N.,Y4000\nVP S,GEM CITY ENGINEERING AND MANUF,M0000\nPARTNER,UTILITY TAX SERVICE LLC,Y4000\nCEO,Dollar Phone Corp.,Y4000\nCONSULTANT,TJG INC.,Y4000\nGAS STATIONS,,E1170\nGeneral Contractor,AHK Contracting,Y4000\nSenior Vice President,Oncor Electric Delivery,E1600\nLandscape Contractor,Pillari Bros.,Y4000\nINFORMATION REQUESTED,\"NATIONAL ASSET DIRECT, INC.\",F7000\nAdmissions Officer,The Brearley School,H5100\nSHIBATA & ASSOC INC,,Y4000\nTelevision  Sales Execut,Katz Media Group,G5210\nPENSION CONSULTANT,INVESMART,F5500\nINSURANCE AGENT,OGDEN INSURANCE,F3100\nGENE,WINCORP INTERNATIONAL INCORPOR,Y4000\nCONSULTANT,ACCESS RICHES LLC,Y4000\nPresident,California Credit Union League,F1300\nSUMMER HOUSE RESTAURANT,,G2900\nCMO,Centennial Med Ctr,H2100\nSales,Cox Radio,C2100\nINFORMATION TECHNOLOGY CONSULTING,SELF,Y4000\nENGINEER,ARENA ENGINEER,E1000\nDE,ROSENBERGHOLTZINSER & GANELES PA,H1400\nLAVONIA MALL,,Y4000\nCEO,Novasol,D3000\nSELF-EMPLOYED,THOMAS FRANKE,Y4000\nCommercial Real Estate Advisor,\"JACOB REAL ESTATE SERVICES, INC.\",F4000\nATTORNEY,\"HEALTH PLAN OF MI, INC.\",Y4000\nINVESTMENTS,A R PARTNERS LLC,Y4000\nW J HINDMAN & ASSOCIATES,,Y4000\nEXECUTIVE SEARCH C,LOCHLIN PARTNERS,Y4000\nMANUFACTURING REPRESENTATI,RPI APEX,Y4000\nTECHNOLOGY,LONE PINE CAPITAL LLC,F2700\nChairman,\"Stewart's Shops Corporation\",Y4000\nSTEPHEN C RYAN & ASSOCIA,,Y4000\nPARTNER,MECHANICAL CONCEPTS LTD,Y4000\nOWNER,MOBILITY MEDICAL,Y4000\nPartner,Dilday Meyer,Y4000\nVICE PR,CENTRAL MICHIGAN UNIVERSITY,H5100\nUROGENESYS INC,,G5200\nBENGMAN SENN PAGELER AND FROCK,,Y4000\nSenior Vice President,Kansas City Chamber,Y4000\nINTERNATIONAL RELIEF,SELF-EMPLOYED,Y4000\nS E PROPERTY MANAGEMENT,,F4500\nPROF OF COUNSEL,SAN DIEGO COMM COLLEGE,H5100\nCTO,Rosetta Stone,C5130\n\"O'NEILL & HASSE\",,K2000\nteacher,Johnson County Community College,H5100\nLAKEVILLE INDUSTRIES,,Y4000\n\"REGAS, FREZGOOS & HARP\",,K1000\nDIRECTOR OF NEW BUSINESS DEV.,LHOIST NORTH AMERICA,Y4000\nOwner,\"Pharma-Source Dme, Inc.\",Y4000\nPresident,First National Capital Corp,F0000\nGBF/BONTEX/PRESIDENT,,Y4000\nPRESIDENT,GIORDANI HEATING AND COOLING,Y4000\nREAL ESTATE FINANCE,NEW WEST INVESTMENT,Y4000\nSELF EMPLOYED,QUEEN CITY PIZZA INC,Y4000\nANNE BARGE COMPANY,,Y4000\nOwner,Retina Consultants Paii,Y4000\nPLUMBER,SOUTHPORT BUILDING PARTNERSHIP,K1000\nGeneral Contractor,\"Seagull Contractors, LLC\",Y4000\nWEILL CORNELL MEDICAL CENTER,,H2100\nCEO,Cap America Inc,Y4000\nPEOPLES FIRST INS,,F3100\nBroker,Stifel Nicolaus,F2100\n\"Director, Regulatory Affairs\",Sunedison,Y4000\nASURA CORPORATION,,F3100\nphysician,Geros Medical Group,Y4000\n\"FACILITIES OPERATIONS, MA\",USEC INC.,E1320\nFounder,Jamba Juice Co,G2600\nMANAGING DIRECTOR ASIA PACIFIC,INVISTA S  R L,E1160\nRealtor,Schostak Brothers & Co.,Y4000\nAttorney,Fetterman & Assoc. PA,J1200\nINVESTOR,NUEVO PARTNERS,Y4000\nKENNEDY COVINGTON ET AL.,,K1000\nPHYSICIAN,CARILION,H1100\nDIAGNOSTIC RADIOLOGIST,WAYNE RADIOLOGISTS/DIAGNOSTIC RADIO,H1130\nHAY GRINDING,SELF,Y4000\nO A N H,,H2200\nMIDLANTIC BANK N A,,F1100\nMANAGER,MCAFEE,Y4000\nAgency Owner,Nationwide,F3100\nPRESIDENT AND CEO,\"QUEEN'S HEALTH SYSTEMS\",H0000\nFirst VP,LASALLE NATIONAL LEASING CORPORATION,G5300\nRemodeling (Pres.),\"Blay Construction, Inc\",B1500\nVICE PRESIDENT,KALSCOTT ENGINEERING,B4400\nPhysician,VA Medical Center,H1130\nCOMPANY OFFICER,JOHN G PENSON OFFICE,X1200\nPARTEE FLOORING,,Y4000\nSALES MGR,VANTICO INC,J7400\nLawyer,\"Woodard&White,P.C.\",Y4000\nprogrammer,FMC,Y4000\nPresident,Henry Hill & Co.,Y4000\nEmployee,Carolina Nurseries Inc,A8000\nMODEL,FORD MODELING AGENCY,Y4000\nATTORNEY,\"KEGEL, TOBIN & TRUCE\",Z9500\nMENTAL HEALTH ASSOCIATES,,J7400\nMIS MANAGER,\"L. FISHMAN & SON, INC.\",Y4000\nSALES,PARAMOUNT,C2400\nExecutive,Human Rights Watch,J1200\nVineyard Mgr,Silverado Farming Co,A1000\nMETER PRODUCTS,,Y4000\nGENERAL INVESTMENT & DEVELOP CO,,F4200\nDYNAMIC BUSINESS SYSTEM,,Y4000\nBANKER,REGIONS,F1000\n\"BERNSTEIN, LITOWITZ, BERGER\",,K1000\nATTORNEY,ROBINS KAPLAN MILLER &,K1100\nFINANCE,FOUNDRY EUROCAP LLC,Y4000\nAssociate,NJ SEA,J1200\ninn Keeper,Amtrim 1844,Y4000\nMANUFACTURING,CEM,J1100\nAdmin Assistant,\"Cassidy Music, Inc\",Y4000\nC.E.O.,JOHNSON FOUNDATION,H4400\nCEO,Cellantenna Corp.,Y4000\nDirector,Turkish Cultural Ctr,Y4000\nMASSAGE THERAPIST,HEALING HANDS,J1200\nINVESTMENTS,VECTOR GROUP LTD.,A1300\nPilates Instructor,\"Body Central, LLC\",Y4000\nHomemaker,Not employed,A4500\nEDUCATION CHAIRMAN AND TRIBAL MEMBER,SAN MANUEL RESERVATION ED. DEPT,Y4000\nPLAYA CAPITAL,,F0000\nRESTAURATEUR,DHC TITLE COMPANY,G2900\n\"Sr VP, Govt & Public Affairs\",ConocoPhillips Co,E1110\nPARTNER,MIDWEST PARS INC.,Y4000\nPRESIDENT,L & S SERVICES LLC,Y4000\nGUARANTEE BANK,,F1100\nPresident,Robert Burdette Corp.,Y4000\nAttorney,\"Goodman, Lister, & Reters\",K1000\nDermatology,Mark Charbonnet MD,H1100\nCLINICAL RESEARCH COORDINATOR,VENTURA HEALTH CONSORTIUM,Z9500\nPASEO OPERATING PARTNERS LTD,,Y4000\n\"BOLNER'S FIESTA PRODUCTS\",,A1400\nExecutive vice Presi,ICVN Inc.,Y4000\nReal estate executive,Ted Carter,Y4000\nFARLI UNLIMITED,,Y4000\nTECHNICAL SYSTEMS,SELF,Y4000\nMID ATLANTIC CORPORATE FEDERAL CR,,F1300\nCHAI,YARDNEY TECHNICAL PRODUCTS INC,Y4000\nProfessor,MIT,J7400\nSCHUMANN M&S,,T3100\nATORNEY,\"MELVILLE JOHNSON, P.C.\",K1000\nHARVEST STATES,,A6000\nUrologist,Urology Group Associates,H3200\n\"Vice President, Busi\",HBO,C2200\nSEARCH MARKETING,\"S.E.I.M., INC.\",Y4000\nOwner,Guidry & Assocs,Y4000\nUSI FLORIDA,,Y4000\nTECHNOLOGY,J. P. MORGAN CHASE,F1100\nJOHN & CARLA LUDWIG DDS PC,,H1400\nOWNER,LIMITED INC.,G4100\nFINANCE,AIG FINANCIAL PRODUCTS CORP,F3100\nCPA/BANKER,HOME & COMPANY P.C.,Y4000\nGEORGIA TEXTILE MANUFACTU,,Y4000\nPhysician,Athens Orthopedic Clinic P.A.,H1130\nRAMMING PARING CO,,Y4000\nOwner,Triumph Mortgage Inc.,F4600\nLAWYER,\"TANNEBAUM WEISS, P.L.\",Y4000\nPRESIDENT,CLEANOLOGY SERVICES & SUPPLY,Y4000\nGENERAL COUNSEL,\"ALLIANCE COAL, LLC\",E1210\nInsurance Agent,Guaranteed Rate,Y4000\n\"WINDLE, FURLEY\",,J7400\nMAINTENANCE,NJ TURNPIKE AUTHORITY,X3000\nLawyer,\"Stroock & Stroock, & Lawn, LLP\",K1000\nVICE P,NATL. ASSN. OF MANUFACTURERS,M0000\nMANAGEMENT CONSULTANT,THE UHLER GROUP,Y4000\nCHAIRMAN OF THE BOAR,REED & GRAHAM INC.,Y4000\nSUPERVISOR,POWELL COMPANIES,B1000\nRETINA VITREOUS ASSOCIATES INC,,H1120\nHOUSTON FOUNDATION,,X4100\nPARTNER,WESTERMEIER & MARTIN DENTAL,Y4000\nAttorney,\"Lee Miller Strategies, LLC\",Y4000\nERGON INC,,G0000\nCOMMERCIAL REAL ESTATE,MALLON INVESTMENT COMPANY L.L.C./CO,F7000\nChairman & Chief Exe,Oxygen Media,C2200\nPresident,California Public Highway Commissi,Y4000\nMD,Cooper Institute,Y4000\nVice President,Rowand Machinery,Y4000\nOCCUPATIONAL HEALTH & MEDICINE INC,,H0000\nMCKENZIE INSURANCE,,F3100\nATTORNEY,SELF EMPLOYEE,K1000\nMechanical Contracto,\"Quackenbush Co., Inc.\",Y4000\nVice President of Fe,The MWW Group,K2000\nI WM SIZELER & ASSOC,,J7500\nKIRSCHNER STOCKS,,Y4000\nModel,Wlehehelmina Models,G5210\nDI,BRENNAN CENTER -- NYU LAW SCHOOL,J7400\nBERKS SURGICAL ASSOC,,H1130\nINTERNATIONAL BUSINE,D.C. ASIA ADVISORY,Y4000\nSUBSTITUTE TEACHER,BRISTOL VA PUBLIC SCHOOLS,X3500\nPROFESSOR OF PHYSICS,UNIVERSITY OF FLORIDA,J1100\n\"MANAGING DIRECTOR, FORESTS AND CLIMATE\",THE NATURE CONSERVANCY,J1200\nLAWYER,\"BUCKLEYSANDLER, LLP\",K1000\nINFRAMATIX,,Y4000\nCHAIRMAN,JOBETE MUSIC COMPANY INC.,Y4000\nAttorney,Bloom Hergott Demer et al,K1000\nDRS KLAUS & COHEN,,H1100\nOWNER,REPUBLIC MONETARY EXCHANGE,Y4000\nAV-TECH INDUSTRIES INC,,G1200\nSTUDENT,SELF-HELP HOME,Y1000\nOwner,Coats Kites,Y4000\nCONSULTANT,SOONER MANAGEMENT,Y4000\n\"Chairman, President\",Lin Tv Corp.,C2100\nInformation Requested,Marwood Sales,Y4000\nCOMPUTER TECHNICIAN,TEGRON,Y4000\nPRESIDENT,\"HELEN S. & MERRILL L. BANK FOUNDATION,\",Y4000\nPRESIDENT,CALIFORNIA EXOTIC NOVELTIES,Y4000\nCEO,THEATER VENTURE INC.,C2700\nEnergy,NYSERDA,Y4000\nMARSTROM ENTERPRISES INC,,Y4000\nTeacher,Burr Ridge Middle School,Y4000\nATTORNEY,MURRAY SCHEER & MONTGOMERY,E5000\nPresident,NPMHU Local No. 297,L1500\nCOBBLESTONE PRO,,Y4000\nMANAGEMENT,MARTIN MARIETTA MATERIAL,B5100\nEXECUTIVE,CBG INC.,Y4000\nFamily Office Manager,Self,Y4000\nself,Gavlick Personnel Service,G5250\nPhysician,KAWEAH DELTA DISTRICT HOSPITAL,H1100\nProgrammer/Analyst,Philips Medical Systems,H0000\nDirector of Church R,Holston United Methodist Home for Chil,Y4000\nINVESTEMENT MANAGEMENT,CONGAREE RIVER LIMITED PARTNERSHIP,F2000\nEXEC. VP,EARTHLINKED TECH,Y4000\nCARLSON CAPITAL LLC,,F2100\nZURICH US,,F3400\nAttorney,Kershaw Cutter & Ratinoff,K1000\nSUKENIK SERGAL & GRAFF,,K1000\n\"BAKER, DONELSON, BEARMAN, CALDWELL\",,K2000\nProfessor,Ohio State Univer,H5100\nTRAD,IND. COMM. BNKRS. OF MINNESOTA,Y4000\nHomebuilder,ASJ Properties,F4000\nSOUTH BEACH CO,,Y4000\nSurgeon,\"Foothills Surgery, PC\",H1130\nSCIENTIST,NATHAN KLINE INSTITUTE/SCIENTIST,Y4000\nCONSULTANT,MONFORT & WOLFE,Y4000\nKIMMEL CARTER ROMAN & PELTZ,,K1000\nBUILDER,ARCHITECT,F4100\nBUSINESS REPRESENTATIVE,SHEET METAL WORKERS LOCAL NO. 22/BU,LB100\nBUSINESS CONSULTING A,SELF-EMPLOYED,Y4000\nV.P. SALES,PORTER WARNER INDUSTRIES,Y4000\nDNBY OFFICE OF PHYSICIAN SVCS,,H1130\nExecutive Chairman,Tom James Company,G4800\nDIR. OF GOVERNMENT AFFAIRS,THE BOEING COMPANY,D2000\nOWNER,RAMA OPERATING CO.,Y4000\nCHAIRMAN,GROUP O INC.,Y4000\nOwner,Rolf Sorg Incorporated,Y4000\nExecutive Producer,Comcast,C2200\nLEGAL AID SOCIETY OF GREATER C,,K1000\nCHMP ENGINEERING,,B4300\nUNIVERSITY,UNIV. OF ILL. AT SPFLD.,H5100\nPresident,\"P.G. Tire, Inc.\",M1500\nAT,DANIELSON HARRIGAN AND TOLLEFSON,K1000\nOWNER,\"GIORDANO'S RESTAURANT\",G2900\nBARBOUR AND ROGERS,,K2000\nAutomobile Dealer,The CAR Group,Y4000\nBLUE WATER FISHERMANS AS,,E4000\nCM COMMUNICATIONS,,Y4000\nPHYSICIAN,SOLO PRACTICE/PHYSICIAN,H1100\nATTORNEY,THOMASON HENDRIX ETAL,K1000\n\"Specialist, Legal\",GE Consumer Finance,M2300\nCHOICE,\"NAT'L REPUB COALITION\",J1100\nCEO,PATTERSON PLANNING,G5270\nPresident,Firstlink,J7400\nPresident,Royal Environmental Service,Y4000\nTruck Driver,United Parcel Service,J7120\nREAL ESTAT,CAPSTONE REALTY ADVISORS,F4200\nOrthopaedic Surgeon,Fox Valley Orthopaedic Associates,H1130\nNASLAND ENG,,B4000\nATTORNEY,MONTGOMERY MCCRACKEN WOLLAR & RHOAD,K1000\nINFO REQUESTED,Reno Clutch & Brake,Y4000\nVICE PRESIDENT; MARKETIN,GE CAPITAL,Z9500\nPRESIDENT,\"FIDUCIARY REAL ESTATE DEV., INC.\",F4000\nGOVERNMENT AFFAIRS,PRIME POLICY GROUP,K2000\nSR VICE PRESIDENT,HESS CORPORATION,E1110\nLeg. Counsel,Alston & Bird,K1000\nTYDLASKA AND COMPANY PC,,Y4000\nConsultant,ICG Government,G5210\nPRESIDENT,JC FLOWERS & CO LLC,F2600\nVP,VRIDE. INC.,T4000\nN/A,NONE,G0000\nEXECUTIVE DIREC,AK DEMOCRATIC PARTY,J1200\nOwner,JV-1 Construction,B1500\nTHE HOLDEN GROUP,,F3300\nELLIOTT BUILDING GROUP LTD/OWNER/PR,,B2000\nAttorney,Miller Miller & Couly,K1000\nPARTNER,\"WAGNER & BROWN, LTD\",E1120\nPRESID,THREE RIVERS PHARMACEUTICALS,Y4000\nPRESIDENT,SOUTH BROOKLYN CASKET CO.,Y4000\nATTORNEY,\"MARCY C. HELFAND, P.C./ATTORNEY\",Y4000\nResidential Designer & Contractor,Self-employed,F4100\nTRAVELINE TRAVEL,,T9400\nAstrophysicist,Self,X0000\nLT. GOVERNOR,STATE OF NEW MEXICO,J7400\nENGINEERING MANAGER,CATERPILLAR,B6000\nCONSULTANT,YOUR NATURAL ELEMENT,G5800\nSTUART FRANKEL DEVELOPMENT,,F4100\nPresident,Doracon Contracting,B3600\nCHACE RUTTENBERG & FREEDMAN,,K1000\nBusiness Executive,\"Telephone and Data Systems, Inc.\",C4100\nOPTHALMOLOGIST,VANCE THOMPSON CLINIC,J1100\nREAL ESTATE SALES,THE REAL ESTATE GROUP,J1200\nMAIRA REAL ESTATE INC,,F4000\nSR. VP,POLO RALPH LAUREN,G4100\nCHIRO CENTER,,H1500\nInformation Requested,University of Massachusetts,H5100\nPRIVATE EQUITY,TPG CAPITAL LP,F2600\nSPANN ROOFING & SHEET METAL,,B3000\nKAISER FOUNDATION HEALTH PLAN & HOS,,H0000\nChief Academic Officer,Harmony Public School,X3500\nEXECUTIVE,COLUMBUS DISTRIBUTING CO.,G2850\nAG CHEM EQUIP CO,,A4200\nPsychotherapist,Affirmations,J7300\nSEWICKLEY CAR STORE,,T2310\nKELLER & HECKMAN,,Y4000\nPresident,\"Golden Sands Motel, LLC\",G1200\nPRINCIPAL,\"SHAFFER SERVICES, INC.\",G6100\nConstruction,II in One Contractors Inc,Y4000\nSUPERVISOR,FAAMA,L1100\nSUPPORT ENGINEER,PERFORCE SOFTWARE,C5120\nENERGY ADVISORS,,Y4000\nattorney,\"Thorp, Compton, and Christian, S.C.\",Y4000\nPRESIDENT,CAPITOL,B1000\nPATENT ATTORNEY,SENNIGER POWERS LLP,Z9500\nPresident,Wyeth,H4300\nPRESIDENT & CEO,FIRST CHOICE HEALTH NET,H0000\nTeacher,New Miami Sch Dist,Y4000\nLumberyard Owner,Self-Employed,G0000\nEmergency Physician,Kaiser Permanente Kona Clinic,H1100\nCEO,AGILIS,Y4000\nManager,The Bon Ton Stores Inc.,G4300\nPOLICE OFFICER,BUFFALO HOUSING POLICE/POLICE OFFIC,X3200\n\"General Mngr, Services & Solutions\",Direct Supply,H4100\nPRESIDENT,RAMSGATE ENGINEERING  INC.,B4400\nAttorney,\"Schottenstein, Zox and Dunn Co, LPA\",K1000\nEDITOR FREE PRESS,,Y4000\nEXECUT,SEAGRAM SPIRITS & WINE GROUP,G2820\nOWNER,JACOB NORTH PRINTING,C1300\nattorney,Economic Development Partnership of Al,Z9500\nBROKERAGE MANAGER,,F2100\nCRAIG SHIRLEY & ASSOC INC,,Y4000\nATTORNEY,LAW OFFICE OF AVEDIS NALBANDIAN,K1000\nPRINCIPAL CONSULTING SECURITY ENGINEER,\"ARCSIGHT, AN HP COMPANY\",Y4000\nDeveloper,Juliet Sears,Y4000\nChief Executive Officer,Ethyl Corporation,M1000\nGM,A&A INDUSTRIAL PIPING INC.,Y4000\nMEDICAL DOCTOR,MISSION HOSPITAL REGIONAL,H5150\nPresident,\"Idm Computer Solutions, Inc.\",Y4000\nPresident And Ceo,\"Arabesque, Inc\",Y4000\nPRESIDENT & CHIEF MERCHAN,BELK INC.,G4300\nEASTON CHEMICAL CO,,M1000\nBARRIS SCOTT DENN & DRIKER,,J5100\n,U. S. DEPARTMENT OF TREASURY - OTS,X3000\nATTORNEY,GOODSTEIN LAW GROUP,K1000\nPHYSICIAN,CINCINNATI SPORTSMEDICINE,H1130\nAttorney,L M T & T LLC,K1000\nEXEC,LD MCFARLAND COMPANY,Y4000\nFILM P,THE KENNEDY MARSHALL COMPANY,C2400\nREAL ESTATE,NORTH RIDGE DEVELOPMENT,F4100\nREPUBLICAN PRO-CHOICE,,J7150\nPRESIDENT,WEATHERSIN CO. INC.,B1500\nAttorney,\"Dickenson, Peatman & Fogerty\",K1000\nINFO REQUESTED,Dr. Pascasio`s Office,Y4000\nSHAPLAND MANAGEMENT,,Y4000\nSr Vice President of Franchise Sales,Golden Corral Buffet & Grill,G1000\nANT HOLDINGS,,Y4000\nENGINEERING CO,HATCH MOTT MACDONALD,B4000\nCostume Designer,\"M-Club, Inc.\",Y4000\nSUNSET MESA SCHOOLS INC,,X3500\nX-ray Tech,Cavalier Mobile X-ray,Y4000\nOWNER,MAGUIRE PRODUCTS INC.,Y4000\nACCOUNTANT,HART CROWSER INC.,K1000\neducator,Rutgers University,H5100\nTeacher,Town Of Westport,X3000\nPrivate IInvestor,Aurora Investments,Z9500\nPresident/CEO,Self-Insurance Institute,F3100\nVICE PRESID,\"BARR LABORATORIES, INC.\",H4300\nDirector,Michican Apple Committee,A1400\nPRES,BLAIR SERVICE ELECTRIC COMPANY,Y4000\nA-K VALLEY FCU/COO/CFO,,F1300\nSELF-EMPLOYED,BOLLINGER SHIPYARDS,T6100\nLOHRMAN ENGINEERING,,Y4000\nPRESIDENT,LIVERPOOL ENTERPRISES,Y4000\nPresident Media,Radical Media,K1000\nGOODWIN PROCTOR,,K1000\nSELF-EMPLOY,RIVERSIDE NURSING HOMES,H2200\n\"PRESIDENT, THE IMLAY FOUNDATION, INC.\",SELF-EMPLOYED,J7400\nBUSINESS EXE,METALAST INTERNATIONAL,M5000\nPublic Policy Associ,Wexler and Walker,K2000\nANCHOR GLASS,,M7200\nFriendship Bridge,,Y4000\nManager,Great Lake Syn,Y4000\nORT,ENGLEWOOD ORTHOPEDIC ASSOCIATES,H1130\nPresident,Bank of Bolivar,F1100\nFORREST PRODUCTS,,Y4000\nELECTRONIC ALARM SYSTEMS INC,,G5290\nCataloger,Hampton University,H5100\nPRESIDENT,\"COLLECTION AGENCY FOR DOCTOR'S\",Y4000\nWEALTH TRANSFER STRATEGIES,,Y4000\nATTORNEY,CLARK & WINFREY PLLC,Y4000\nPresident and Chief,Auto Club Group,F3100\nPROGRESSIVES UNITED,FOUNDING MEMBER,Y4000\nSVP CHIEF INFORMATION OFFICER,EXELON CORPORATION,E1600\nSUPERVISOR,VERIZON COMMUNICATIONS INC,C4100\nJ M C COMMUNITIES,,B2000\nCEO,Mimagratex Corp.,Y4000\nStaff Engineer,Lockheed Martin Aeronautics Co,D2000\nVICE-PRESIDENT,EDMC,Y4000\nEXECUTIVE,MIDAS ADVISORY GROUP,Y4000\nExecutive,Ferrell Gas,E1100\nHotel Broker,Self-Employed,T9100\nPHARMACIST,HUMANA,H3700\nCEO,THE ARC OF SAN DIEGO,Y4000\nPartner,Willkie Farr & Gallagher,C2200\nMARKETING CONSULTANT,SAFE AND SOUND HOME CARE,Z9500\nOWNER,PHYSICIANS MANAGEMENT & ACCOUNTING,Y4000\nUNIDOR UNITED STATES INC,,M3000\nV.P.,DELTA DENTAL PLAN OF WISCONSIN,F3200\nPRESIDENT,HEALTHPRO ASSOCIATES INC.,Y4000\nPresident,Aqua America Water Company,E5000\nR E MANAGEMENT,,Y4000\nLE PLI HEALTH SPA,,Y4000\nFARMER,BRANDT FAMILY FARMS,A1000\nConsultant,Carter Management Group Inc,Y4000\nCHANTER MEDICAL,,Y4000\nHOMEBUILDER,TR HUGHES HOMES,B2000\nTHE GEORGE HYMAN CONST COMPANY,,B1000\nCPA,Grant Thornton,Z9500\nN/A,SUNDANCE,Y4000\nEMERGENCY PHYSICIAN,\"SAINT PAUL ERDOCS, PA\",H1100\nMarketing Manager,At&T,C4100\nINSPECTOR,SELF-EMPLOYED/INSPECTOR,G0000\nPRESI,STARVING ARTISTS INCORPORATED,Y4000\nMath Teacher,NYC DOE,X3000\nGENERAL MGR-KP,MEREDITH CORPORATION,C1100\nPresident/CEO,Farm Credit of the Virginias,A4000\nFINANCE,S.A.C. CAPITAL ADVISORS,F2700\nPresident,Texas Cotton Marketing Corp,A1100\nENERGY,DKRW ADVANCED FUELS LLC,E1210\nBUSINESS ATTORNEY,HARTZOG CONGER/BUSINESS ATTORNEY,K1000\nDirector,District Council 51,LB100\nBUSINESS,COLA HEALTH SERVICES INC.,Y4000\nPUBLIC POLICY ADVOCATE,ECONOMIC FAIRNESS OR/PUBLIC POLICY,Y4000\nrealtor,Kestyn real Estate,F4000\nPresident,Inter-Rail Transport  Inc.,T5100\nHOL-MAC CORP,,Y4000\nBARNES & THORNBERG,,Y4000\nTX GENERAL LAND OFFICE,,X3000\nPresident,Lehigh Hanson West,Y4000\nATTORNEY,NASSAU REGIONAL OFF-TRACK BETT,Y4000\nACCORD ELECTRIC,,Y4000\nPresident,Professional Duplicating Inc.,Y4000\nJC WEST PC,,Y4000\nExecutive,Lyco Holdings Inc,E1000\nPublic Affairs,Scripps Health,H0000\nOWNER/PRESIDENT,HME SPECIALISTS LLC,Y4000\nDIRECTOR,APOLLO GROUP INC.,H5100\nRetired teacher,Solana Beach Presbyerian Preschool,Y4000\nLOEW INSURANCE & FINANCIAL SOL,SELF,F3100\nBusiness Manager,Arch Coal Inc,E1210\nOWNER,BANKTEL,J1100\nDERMATOLOGIST,GEORGIA SKIN SPECIALISTS,H1130\nTEACHER,RESSURECTION SCHOOL IN RYE,Y4000\nInvestment Banker,JP Morgan Capital Corp,F1100\nSVP CFO & TREASURER,\"Harrah's Entertainment Corporate Headq\",G6500\nTELECOMM INDUSTRY ASSOC,,C4000\nADMINISTRATOR,HUSSON COLLEGE,H5100\nVP ENGINEERING,\"WENDY'S INTERNATIONAL INC.\",G2900\nChairman,Pacific Stock Exchange,G5300\nPublic Affairs,non-profit org,Y4000\nPhilanthropist,SELF,J1200\nPartner,Elmendorf Ryan,K2000\nPRESIDE,DOLLAR FINANCIAL GROUP INC.,F5500\nRhino Entertainment,,Y4000\nFire Adjuster,National Fire Adjustment Co.,Y4000\nOral Historian,Maria Rogers Oral History Program,Y4000\nMEDI-RENTS INC,,Y4000\nDirecting Bus Rep,Machinists LU93,LM100\nTHE MC GRAW - HILL CO,,C1100\nPARTNER MOUNTAIN STATES,MORAN & COMPANY,F4100\nDivision Manager,Kaman Aerospace/Raymond,M2300\nEXECUTIVE CH,SFX ENTERTAINMENT INC.,C2000\nPRESIDENT,ROBERTS-MCGRAW INC,Y4000\nEDUCATOR,NORTH CENTRAL COLLEGE,H5100\nOwner,Walker Electric,Y4000\nADVISOR,Capital Intelligence Associates,F3300\nTEACHER,TALLULAH FALLS SCHOOL,Y4000\nDATA & PROGRAMS ADMINISTRATOR,EXELON NUCLEAR,E1300\nManagement,KNK,J1200\nManager,Heidelberg,Y4000\nHOME BUILDER,HAURY & SMITH INC.,Y4000\nDAKOTA BANK,,F1100\nHAMPSHIRE MGMT CO,,F4500\nFINANCI,\"LEGACY WEALTH ADVISORS, LLC\",Y4000\nHOUSING CONSULTANT,ENGLANDER CO.,Y4000\nEVP & CHIEF STRATEGIC OFFICE,\"HENRY SCHEIN, INC.\",H4100\nPRESIDENT,\"EAST-LIND HEAT TREAT, INC./PRESIDEN\",J6200\nADMINISTRATOR,PGE,E1600\nPresident,Wright Runstad & Co,F4000\nDIR TRANS SVCS,UNION PACIFIC RAILROAD,T5100\nFOREIGN EXCHANGE SALES,NOMURA SECURITIES,F2100\nInvestment Analysis,First Colony Capital,F1400\nManager,American Building Corp.,Y4000\nSYNTERRA CORPORATION,,B3600\nPHYSICIA,BUFFALO DIAGNOSTIC IMAGING,Y4000\nInstructor,Self-employed,H5100\nTHE MC GRATH COMPANY,,Y4000\nDevelopment,Coolidge Foundation,X4100\nTHE POETIC GROUP,,Y4000\nJ W V CONSTRUCTION,,B1500\nEVP,CENTURY PACIFIC,F2100\nGENERAL MANAGER,\"OHIO AMERICAN ENERGY, INC.\",E1210\nATTORNEY,KARASYK & MOSCHELLA LLP,K1000\nPARTNER,TEW CARDENAS LLP,K2000\nVice President of Engineering,Intel Corporation,C5110\nGOVERNMENT RELATIONS,J P MORGAN CHASE,F1100\nBroker,James A Olman Real Estate,F4000\nAttorney,Shafer Law Firm,K1000\nA,\"Paul, Hastings, Janofsky & Walker\",K1000\nPHYSI,SOMERSET ORTHOPEDIC ASSO. PA.,H1130\nENTREPRENE,PRECISION AVIATION GROUP,Y4000\nOffice Mgr,\"TAC, LLC\",Y4000\nMgmt Consultant,Self employed,G5270\nAARON SCRAP METAL,,M2400\nVICE PRESIDENT,\"A2Z DEVELOPMENT CENTER, INC.\",C5140\nCONSULTANT,PM ADVISORS INCORPORATED,Y4000\nDesigner,Talbots Inc,G4100\nRetired,McCullough & Assoc,Y4000\nTHE GLEASON AGENCY INC.,,F3100\nEngineer,\"Design South Professionals, Inc.\",B4000\nCONSULTANT,SELF EMPLOYED,F1100\nSheahing Furlong & Bohm,,K1000\nCHAIRMAN,GRAND HOTEL,T9100\nCorporate Executive,EMATS,B4000\nANESTHESIOLOGIST,MID-MISSOURI ANESTHESIOLOGY,H1130\nTeacher,U. Of Nevada,H5100\nCEO,Schlumberger,E1150\nATTORNE,LEBOUEF LAMP GREEN & MACRAE,K1000\nCHIEF OPERATING OFFI,WYNN RESORTS MACAU,G6500\nWAYNE LEBLANC APLC,,Y4000\nMARK PRICE & ASSOCIATES,,T2310\nPartner,Ginsburg Development,F4100\nPILOT,MERIDIAN AIR CHARTER,Y4000\nBRESEE CHEVROLET CO,,T2300\nCHAIRMAN,TURBOCHEF INC.,Y4000\nToffler Associates,,Y4000\nSALES,RADIANT INC.,Z9500\nVICE PRESIDENT,MARSHALL ENTERPRISES,G4100\nFEDERAL AFFAIRS,AHIP,Y4000\nPRESIDENT,IBE TRADE CORP.,A4100\nProfessor,U of Az,H5100\nTres: Iva William Wappner,,G5400\nChairman,Trek Bicycle Corporation,M3600\nDeveloper,1st City Development Corporation,Y4000\nAttorney,AT&T,J7300\nL & W CABINETS,,M4100\nAMERICAN RE CORP,,F3400\nDentist - Anesthesiologist,Self,H1400\nCONSULTANT,LEADERSHIP STRATEGIES LLC,Y4000\nKRAPF COACHES INC.,,T4100\nMANULITE FINANCIAL,,F0000\nOWNER,SISUNG INVESTMENT MANAGEMENT,Y4000\nMarket Research,Boston Research Group,Y4000\nHEIN RANCH COMPANY,,Y4000\nChairman & CEO,Thomas & Betts Corporation,C5000\nMEDICAL ASSOCIATES OF DUBQUE,,H1100\nDIRECTOR OF WOME,HARVARD UNIVERSITY,J7400\nGREENWICH ADMINISTRATIVE SERVICES,,Y4000\nUNIVERSITY OF WIS,,H5100\nKEMPER SPORTS MGT,,Y4000\nSTARMOUNT INSURANCE,,F3300\nOwner,Personal Way Tranportation,Y4000\nMGR CONT ADM SR CORP COUNSEL,BLUE CROSS BLUE SHIELD OF NE,F3200\nCONTRACTOR,R.K. REDDING CONSTRUCTION/CONTRACTO,B1500\nOwner,Morgan & Assoc Ins Agency,Y4000\nMechanic,Pfeiffer Texaco,Y4000\nTHE WINDQUEST GROUP & AMWAY CORP,,G4800\nsocial sculptor,self,Z9500\nPHYSICI,U.S. DEPARTMENT OF COMMERCE,X3000\nFRANKEL MANAGEMENT,,Y0000\nAURA SYSTEMS INC,,Y4000\nSHROEDER & SCHREINER P C,,F5100\nDARNEL INC,,J5100\nCNO,\"Lee's Summit Hospital\",H2100\nPresident of Nautica,VF Corporation,M3100\nHR Mgr,Georgia-Pacific,A5000\nALBERT BORDEN REALTORS,,F4200\nPSYCHOTHERAPIST,BWS/PSYCHOTHERAPIST,Y4000\nCPA,DICKEY RUSH DINCAN ANSELL & CO,Y4000\nMID-AMERICAN BANK & TRUST,,F1100\nMANAGER,TARTIS INC.,Y4000\nBULL/INLEGNS/PROGRAMMER,,Y4000\nCUSTODIAN,FERRIS STATE UNIVERSITY,H5100\nCHAIRMAN,GORMAN-RUPP CO,M2300\nPARTNER,PREMIER MEDICAL IMAGING,H1100\nPHYSICIAN,SURGICAL ASSOCIATION OF MOBILE,J5100\nProgrammer,-,C5130\nLEGAL SECRETARY,BARNES & THORNBURG LLP,K1000\nPortfolio Specialist,Capital International,F2100\nINVEST,AUSTIN INVESTMENT MANAGEMENT,F2100\n\"SCHWAN'S SALES ENTERPRISES INC\",,G2100\nDR WILLIAM M MANGER,,H1100\nExecutive VP - CAC,\"Texas Industries, Inc\",B5100\n\"CONNOR'S PEST CONTROL\",,G5700\nHOUSEWIFE,HOMEMAKER,E1110\nRALEIGH GENERAL HOSPITAL/VP/COO,,H2100\nAT&T/VP/DIR CONGRESSIONAL RELATIONS,,C4200\nManagement Consulting,The Parthenon Group,J9000\nALCO INS INC,,F3100\nISIK JEWELRY,,G4600\nSALES,R. H. I. REFRACTORIES AMERICA,Y4000\nCORPORATE EXECU,RICELAND FOODS INC.,A1600\nAttorney,\"Carmody & Torrance, LLP\",K1000\nOIL FIELD SERVICES,SELF EMPLOYED,E1150\nProduct Planning Manager,\"Fiserv, Inc\",F1000\nCivil and Environmen,\"Wetland Studies and Solutions, Inc.\",Z9500\nWriter,Ici,Y4000\nINVESTOR,SARKOWSKY DEVELOPMENT,F4000\nPRESIDENT,MATH FOR AMERICA,H5000\nNATL MUSIC PUBLISHERS ASSOC INC,,C2600\nCOLLING GILBERT & WRIGHT,,K1000\nPresident,L E Ballance Elec,Y4000\nATTORNEY,\"FREEMAN, MATHIS, GARY LPP\",K1000\nENTREPRENEUR,CYPHY WORKS,Y4000\nATTORNEY,BURG SIMPSON ELDREDGE HERSH & JARDI,K1000\nTHEATER PRODUCER,\"SING OUT, LOUISE! PRODUCTIONS\",Z9500\nCAMP DIRECTOR,CAMP FALLING CREEK,Y4000\nDivision Manager,Genentech Inc,H4500\nPROJECT MANAGER,SABIA & CO. INC.,B3600\nVice President Medic,Samaritan Health Services,H2100\nAttorney,Robins Kaplan Miller & c,K1000\nmanager,Energy Systems Group,E1000\nEXECUTIVE,TRADELEAF LLC,A5000\nWeb Architect,Self,Z9500\nExecutive,The Windquest Group,G5000\nTRUCKER,SELF/TRUCKER,T3100\nRISK MANAGEMENT,SELF,F0000\nROSSMAN BAUMBERGER ETAL,,K1000\nFiduciary Services,Fidelity Management and Research LLC,F2100\nFIRE SERVICES,HALL COUNTY,X3000\nSENIOR VP,INFORMATION REQUESTED,G0000\nLAWYER,FARRATO & BERMAN,K1000\nCEO,MEDSHORE AMBULANCE,H3000\nOWNER,WEST CATTLE CO,Y4000\nAudit Manager,Assurant Health,F3400\nLITEHOUSE INC,,G1200\nConsultant,Daley Construction Consultants,B1500\nBUSINESS OWNER,RA Miller Industries,Y4000\nHEALTHCARE RESOURCE ASSOC,,H0000\nLandscape Architecture,Self employed,B4200\nFINANCE EXECUTIVE,CA TECHNOLOGIES,C5120\nTHE ELKO CLINIC,,E4200\nAttorney,\"Wright, Judd & Winckler\",K1000\nPresident & CEO,Midwest Research Institute,X4000\nPERKS REUTER ASSOC,,B4400\nADVOCACY,NRCAT,Y4000\nCEO,H.W.M.G.,Y4000\nPRINCIPAL,DOUBLE EAGLE BEVERAGE,G2850\nAXEM ENERGY,,E1120\nMUSICIAN,ZANI MATI,Y4000\nstore owner,cancun market,G2400\nATTORNEY,NIX BOWMAN & ZOECKLER,J1200\nBENNET SECURITY,,G5290\nROBINSON-ADAMS INSURANCE,,F3100\nSELF/OIL & GAS CONSULTANT/INVESTOR,,E1100\nTeacher,SD Unified School District,X3500\nPHYSICIAN,DUKE,J1200\nPRESIDENT/CEO,BLUE CROSS BLUE SHIELD OF NORTH DAKOTA,Z9600\nDISABLED VET,DOD USAF,Z5300\nAssistant Professor,University Of New Hampshire,H5100\n\"Senior Vice President, Corporate Affai\",Worldspace Satellite Radio,C2100\nOIL & GAS,ELPAMCO INC,E1100\nIS Director,\"Jackson Tube Service, Inc\",Y4000\nPRO,TARRANT COUNTY COLLEGE DISTRICT,Y4000\n\"MESSER, VICKERS ET AL\",,K1000\nATTORNEY,CORINNE C. HODAK,K1000\nPREFERED PAYMENT SYSTEMS,,Y4000\nCONTRACTOR,CANYON AIR SYSTEMS INC,Y4000\nC.E.O. & C.I.O.,P.D.M. America,F2100\nMANAGER,MFO INVESTEMNTS,Y4000\nALLEGIANCE VAN LINES,,T3100\nBN RAILROAD AVP NETWORK PLANNING,,T5100\nINFO REQUESTED,NORTH HURON MEDICAL CLINIC,H0000\nFull time candidate,N/A,J1100\nDir Govt Contracts&Compliance,Tyco International,G5290\nGUN OWNERS OF AMERICA,EXECUTIVE DIRECTOR,J6200\nPARKOFF OPERATING,,Y4000\nRN,Newton-Wellesley Hospital,H2100\nBANKER,HOUSEHOLD,J1100\nVILLAGE OF HAMBURG NY,,X3000\nExecutive,J-K Polysource,Y4000\nINDMAR PRODUCTS CO,,T8300\n\"President, South Central Division\",\"Martin Marietta Materials, River Distr\",B5100\nFRANKLIN ASSOCIATES INC,,Y4000\nCENTRAL DAUPHIN SD,,L1300\nADMINIST,JERSEY CITY MEDICAL CENTER,H2100\n\"BELLA'S FAT CAT\",,Y4000\n\"CEO, CHAIRMAN OF THE BOARD\",PRIMORIS SERVICES COMPANY,B3000\nBOUVIER KELLY/PUBLIC RELATIONS/ADVE,,Y4000\nCONSULTANT,BOOK ALLEN,Y4000\n\"SVP, Programming & Production\",Outdoor Life Network,C2200\nPHYSICI,\"SALEM PLASTIC SURGERY, INC.\",H1100\nC.E.O,AMERICAN FUNDRAISING FOUNDATION,Y4000\nAttorney,Abourezk Law Office,K1000\nPersonnel,Citistaffing,G5250\nVICE PRESIDENT,PENN HILL GROUP,Y4000\n\"Director of Planned Giving, Stewardshi\",\"Catholic Community Foundation, Inc\",Y4000\nSOUTHWEST ASSET MANAGEMEN,,F0000\nOwner,Affordable Clean Carpet Service,Y4000\nManaging Partner,Clayton Associates,F2100\nAttorney At Law,Williams & Jensen,K2000\nBUYER,HAMILTON COMPANY,G4600\nVICE PRESIDENT,SOUTHEAST FINANCIAL,F0000\nVice President,Optimum Applied Systems Inc.,Y4000\nPresident,North American Publishing,C0000\nHARVARD UNIVERSITY INSTITUTE-POLITI,,H5100\nSCIENTIST,SELF-EMPLOYED,J1100\nGATES CONSTRUCTION CORP,,B1500\nCOUNSEL,LIBERTY MUTUAL,F3400\nORTHOPAEDIC SURGEON,TEXAS ORTHOPAEDIC ASSOC,H1130\n\"DIRECTOR, CORPORATE PUBLIC RELATIONS\",CADENCE DESIGN SYSTEMS,C5130\nPUGET SOUND PHYSICIANS,,H1100\nNAVMAR/PRESIDENT/CEO,,Y4000\nATTORNEY,F.T.I. CONSULTING INC.,G5200\nCEO,Solar Systems,Y4000\nKIDD WHITEHURST AND WATSON,,K1000\nSR. MANAGER,\"VMWARE, INC.\",C5120\nPRESIDENT,KAHN TRUCKING,G1200\nPETROLEUM TRADING,NESTE OIL,J6200\nBIOLOGIST / TEACHER,UC BERKELEY,J1200\nCampus President,Brown Mackie College,H5300\nExecutive,Westwater Group,Y4000\nEXECUTIVE DIRECTOR,IRONDOG/EXECUTIVE DIRECTOR,Y4000\nMortgage Banker,Residential Wholesale Mortgage,F4600\nSALES,GREENPOINT TECHNOLOGIES,Y4000\nPresident/CEO,Invacare,H4100\nCONTRACTOR,NELSON CONSTRUCTION,T1400\nSENIOR CO,QUORUM BUSINESS SOLUTIONS,Y4000\nPROFESSOR,BINGHAMTON UNIVERSITY,H5100\nCEO,DRY STORAGE CORP,T7200\nInsurance Agent,STATE FARM,F3400\nCounty Manager,Fidelity National Title Group,F4300\nMULTNOMAH,,Y4000\nBoard of Directors,Costco,G4000\n\"STATE SENATOR, DISTRICT 4; REGIONAL CO\",NEW ENGLAND LABOR-MANAGEMENT CORPORATI,Y4000\nExecutive,Harbour Group Ltd,J1200\nOwner,All Star Landscaping and Pools,B3600\nBuilder,Bob Perry Homes,B2000\nPROFESSOR,GEORGE MASON UNIVERSITY,J7400\nMASSACHESETTS ELECTRIC CO,,Y4000\nPhysician,NW Ga OBGYN Assoc PC,H1100\nCRNA,WASHINGTON CENTER,H1710\nTCT ENTERPRISES,,A1600\nATTORNEY,JURITAS.COM,C5140\nDirector,Glca,Y4000\nCPA,MURRAY MCDONALD & WINTER,Y4000\nBusinessman,Shout Factory,C2600\nNATIONAL ASSOC OF MFG,,M0000\nMPACT EVENTS/PR/EVENT PLANNER,,Y4000\nNEUROSCIENCE,RETIRED FROM UMDNJ,Z9500\nASTEN JOHNSON INC,,M1400\nREAL ESTATE DEVELOPMENT,CONTINENTAL PROPERTIES,F4100\nStudent,Stanford University,Y1000\nMUDAFORT SPORT CENTER,,Y4000\nOWNER,LANDSMAN & CO.,Y4000\nBusiness Development,Gonzo Studios,Y4000\nEXECUTIVE VICE PRESIDENT MERCHANDISING,ORDHARD HARDWARE,Y4000\nCONCORD ENGINEERING GROUP,,B4400\nPRESIDENT,MG DYESS INC.,B3000\nAttorney,Trowbridge Pittman,Y4000\n\"CPA, INTE\",HOME BUILDERS ASSOCIATION,B2000\nVolunteer,Volunteer,C2400\nOFFICE OF GENERAL SVCES,,Y4000\nCOMPUTERIZED BUSINES,,C5100\nManager,\"American Innovations, in\",Y4000\nSAFEGUARD HEALTH PLANS,,H0000\nWHALEY FORD,MCNALLY,T2300\nAttorney,Rishel & Kopech,K1000\nDATA ANALYST,HEWLETT PACKARD,C5100\n\"ALL SOUTH CONSULTING ENGINEERS, LLC\",,B4400\nAsst Ops Mgr,Sundt Construction Inc,B1000\nEntertainment Execut,20th Century Fox,C2400\nCHOCTAW MFG CO INC,,M0000\nOwner/Operator,R.T. Dooley Construction,B1500\nBanker,\"Gateway Bank, F.S.B.\",Y4000\nCHAIRMAN,\"CURTIS H STOUT, INC\",Y4000\nTECHNICIAN,WYNDALCO,Y4000\nATTORNEY,GOEL AND ANDERSON,K1000\nVICE PRESIDENT,\"PARKDALE MILLS, INC.\",A1100\nWAXIE JANITORIAL SERVICES,,G4200\nPhysician,Dermatology Center of Northwest Indian,H1130\nREAL ESTATES SALES,RE/MAX ALLIANCE,J9000\nAVIONICS ENGINEER,THE BOEING COMPANY,J6200\nPHYSICIAN,LLU FACULTY MEDICAL GROUP/PHYSICIAN,Y4000\nInformation Requeste,Henry L. Stimson Center,X4000\nEXECUTIVE,CONCO SYSTEMS INC.,Y4000\nattorney,\"Allen, Dyer, Doppelt et al\",K1000\n\"Director, Contracting & Corp. Complian\",LRGhealthcare,H2100\nBUSINESS C R C OF S J,,Y4000\nMERCER ENG RESEARCH CENTER,,H5100\nBOSTON HOLT & SOCKELL,,Y4000\nPROFESSOR,RUTGERS/PROFESSOR,H5100\nPRESI,CIVIL ENGINEERING CONSULTANTS,B4000\nSenior Citizen,Retired,X1200\nDEALER,MATTHEWS AUTO IMPORT CENTER,T2300\nC.E.O.,WEEKES CONSTRUCTION,B1500\nHOWE AND WYNDHAM,,Y4000\nCHIEF RISK OFFICER,CITADEL L.L.C./CHIEF RISK OFFICER,F2100\nPHYSICIAN,RADIATION ONCOLOGY OF GREATER LOWELL,H1130\nREAL ESTATE BROKER,MASSEY KNAKAL REALTY,F4200\nEASTERN AIRLINE PILOT,RETIRED,T1100\nLieutenant Navy Comm,U.S. Navy Retired,X1200\nMINS MUSEUM OF ART,,J7400\nHealing Arts Body Work,Self employed,Y4000\nEXECUTIVE,BOND COMPANIES,Y4000\nAssistant Political Director,Afscme,L1200\nHASH ENTERPRISE,,G4200\nVP and Chief Counsel,Time Warner Cable,C2000\nBUSINESS PERSON,MARIN SANITARY SERVICE,Z9500\nPARTNER,\"TS INVESTIGATION, LLC\",Y4000\nLAWRENCE RUBEN CO INC,,J5100\nLoan Officer,Bank of Oklahoma,F1100\nPresident,Carroll Daniel Construction Company,B1000\nCONSULTANT,PARSONS STRATEGY GROUP,Y4000\nOwner,Jurisbiz Consulting,Y4000\nATTORNEY O,FULBRIGHT & JAWORSKI LLP,K1000\nBOATS KEEPER,SELF EMPLOYED,Y4000\nMANUFACTURED HOUSING INST,,B2400\nCEO,WSP CANTOR SEINUK,Y4000\nHERBERTH & NETTLETON,,Y4000\nPresident,School of Visual Arts,H5100\nManaging Partner and,BVI Capital Partners,F2600\nMID-OHIO DEVELOPMENT CORPORATION,,B2000\nTEACHER,SAN FRANCISCO SCHOOLS,J1200\nHOMMEMAKER,HOMEMAKER,Y1000\nEXECUTIVE SALES,XYRATEX INTERNATIONAL,Y4000\nArtist/Writer,Self,X0000\nMANUFACTURING MGR,ROPER CORPORATION,Y4000\nOwner,\"Iteon Consulting, LLC\",Y4000\nCivil Engineer,Nassau & Hemsley,Y4000\nROCK BOTTOM STORES INC,,G4900\nEXECUTIVE,\"SARTIN SERVICES, INC\",Y4000\nARCHITECT,COMMUNITY TECTONICS INC.,B4200\nFOOD INSPECTOR,U.S.D.A.,X3000\nCENTRAL MO PIZZA INC,,G2900\nPartner,Innovative Federal Strategies LLC,K2000\nBUSINESS ANALYST,FYI,Y4000\nPEOPLES BANK & TRUST CORP,,F1000\nSAVANNAH SITE & HIGHWAY,,B1000\nBusiness Owner,\"Joseph's  Fine Jewelry\",Y4000\nHEALTH ADVISOR,GOVERNMENT,X3000\nAUTO DEALER,GAMBLE MOTOR CO.,Y4000\nPROSPECT GROUP,,F2100\nUNIONTOWN ANESTH ASSOC,,H1130\nHomemaker/Oceanograp,Self,G0000\nDIRECTOR,FIRST BOSTON,J5100\nSOUTHWEST CONTRACTORS,,B1500\nAPPLIED THERMAL SCIENCE,,Y4000\nInsurance Broker,RT Specialty,J7400\nSMATHIS SCIENTIFIC SERVICES,,Y4000\nAEROSPACE SPECIALIST,A.V.D.U.C.T.,Y4000\nATTORN,MCANDERSON HELD & MALLY LTD.,K1000\nRETIRED,Not Employed,X1200\nCEO,Kirkwood & Associates,Y4000\nPRESIDENT,TRANS-INC.,Y4000\nW S R C AIKEN SC,,Y4000\nHANNOCH WEISMAN,,Y4000\nPHYSICIAN,U OF IL,H5100\nINVESTOR,ELEVATION PARTNERS/INVESTOR,F2100\nMD,PFIZER,H4300\n\"O'LOUGHLIN & COMPANY\",,Y4000\nEngineer,TMC,Y4000\nEducator,Na,Y4000\nAttorney,\"Pitney Hardin, LLP\",K1000\nOWNER,WOOD ENERGY,E1120\nBroker,Blue Capital Group,F2200\nOwner,Focus Lighting And Controls Inc.,M6000\nANESTHESIOLOGI,MEDICAL ANESTH GROUP,H1130\nFederal Govt Employe,Dept of Navy,X5000\nPLANNING MANAGER,EXXON CHEMICAL CO,E1110\nCOMPLIANCE,JPMORGAN CHASE,F1100\nSELF-EMPLOYED,SALES,G2900\nMedia Consultant,Self employed,G0000\nREAL ESTATE DEVELOPE,THE MACK COMPANY,F4100\nGOVE,COUNCIL FOR OPPORTUNITY IN EDU,H5000\nCARPET CLEANING,SELF EMPLOYED,G5200\nOwner,Watkins Clayton Cnstr Co Inc,B1500\nS,HEALTH INS. ASSOC. OD AMERICA PAC,F3200\nPRESIDENT FORD AUSTRALIA,FORD - AUSTRALIA,T2100\nExecutive,\"ERGS, Inc\",B2000\nOWNER,\"ELEADER TECH, INC.\",Y4000\nVICE PRESIDENT,MERRILL CORPORATION,Y4000\nPRAIRIE MEADOWS RACETRACK & CASINO,,G6500\nPSYCOTHERAPIST,,Y0000\n\"GENERAL MANAGER, MED\",YAHOO! INC.,C5140\nOFFICE EXECUTIVE,LEAHEY & JOHNSON,K1000\nPEPI FOODS SERVICES/OWNER/MANAGER,,Y4000\nPHYSICIAN,CABARRAS FAMILY MEDICINE,Y4000\nNurseryman,Hinsdale Nurseries,A8000\nBusiness Owner,\"Kelly's Medical\",Y4000\nINVESTMENT MANAGER,HAEBLER CAPITAL,F2600\nPHYSICIAN,IOWA METHODIST,Y4000\nBANKER,LL,J1200\nVICE PRESIDENT,ALABAMA POWER CO,E1600\nTREE WORKER,QUALITY TREE CARE,Y4000\nTeacher,Clovis Unified School District,J9000\nMARK INTERIORS,,Y4000\nPresident,Clarion Associates Inc,F3100\nALLAN SWANSON INC,,Y4000\nAttorney,Edelman & Edelman P.C.,K1000\nBiologist,Land Management,F4500\nPROMO,,Y4000\nCPA/Financial Advisor,\"Freedom Advisory, LLC\",Y4000\nHOTEL EXECUTIVE,OUTRIGGER ENTERPRISES,T9100\nArchitect,\"Firman,Dugas Architects LTD\",B4200\nJEFFERSON LOAN CO,,F1400\nPresident,\"The Tech Group, Inc.\",Y4000\nExecutive,The Collyard Group,Y4000\nMAYSTEEL CORPORATION,,Y4000\nLAS VEGAS SANDS CORP,,G6500\nBUSINESS OWNER,CM CONSTRUCTION,B1500\nExecutive,JP Morgan H & Q,F1100\nTRISSEL GRAHAM & TOOLE,,F3100\nEngineer,\"Techniscan, Inc\",Y4000\nINSUR,PALERMO REAL ESTATE,F0000\nDirector,Child Help USA,J1200\nChairman of the Board,\"Intuitive Surgical, Inc\",H4100\nAttorney,Schulman & Schulman Co. LPA,Y4000\nENGINEERING MANAGER,AECOM,B4200\nattorney,Washington Council Ernst & Young,F5100\nVICE PRESIDENT,FORTIS CLEANING,Y4000\nPHYSICIAN,HARVARD MEDICAL FACU,H5150\nAttorney,Pazes & Easter,Y4000\nCONTRACTOR,KIER CONSTRUCTION CORPORATION,B1500\nRE Consultants,\"Commercial Tenant Services, Inc.\",Y4000\nCEO,Schaubach,Y4000\nInvestment Management,The Hamilton Companies,F4100\n\"NAT'L ASS'N OF COMM. HLTH CENTERS I\",,H2000\nMILLER CATTLE CO,,A2000\nPRESIDENT,GOLDEN DOME STRATEGIES,Y4000\nNEWELL ANROSO & MATTIA,,K1000\nCHARITY CHAIRMAN,SELF,Y4000\nInsurance,Woodmen of the World,Y4000\nHAWAII BANKERS ASSOC,,F1100\nInvestments,Hill Development Co.,J7400\nERLE P ANDERSON LUMBER,,A5000\nCHAIRMAN,AMERIQUAL,E1210\nSELF-EMPLOYED,ACTIVIST,Z9500\nPATHOLOGIST,TRMG,Y4000\nTHOROUGHBRED HORSE BREEDER,SELF,J1100\nRequested,Hercules Transport,Y4000\nChairman,EJ McKay International,F2300\nVICE PRESIDENT OF RESEARCH,CANCER TREATMENT CENTERS OF AMERICA,H2100\nARCHITECT,NORTHFIELD DESIGN,Y4000\nprofessor,George Mason U,H5100\nATTORNEY,MORTHOLE & ZEPPETELLO,K1000\nEXEC.,NATL CITY CORP.,F1100\nOWNER,MONTANA PIZZA INC,G2900\nInformation Requested,Stevens Transport Inc,T0000\nENGINEER,PETITT BARRAZA LLC,Y4000\nOWNER,ZOOK MOLASSES CO.,Y4000\nCo-Owner,D. Veerkamp Gen. Engineering,B4400\nExecutive,Southwestern Machinery,Y4000\nCEO,STEVENS CONSTRUCTION CORP,B1500\nDIRECTOR OF WORKFORCE INVESTMENTS,HARTFORD FOUNDATION,Y4000\nResearch Analyst,\"Fed Gov't\",X3000\nPHYSICIAN,SHAH ASSOCIATES,H1100\nEngineer,SIECO,Y4000\nDENTIST,\"BRUCE L. WOLFF, D.D.S. LTD.\",H1400\nReal Estate Develope,St. Armands Development,Y4000\nTres: Mary Fauth,,J2200\nFINISH MASTER,,T2200\nPeoples Services Inc./President,,\nOwner,De Burlo Group Inc.,Y4000\nHealth Care Administrator,Valueoptions,H3800\nProducer,Carsey Werner Maudabach,C2300\nUNIFORM BUSINESS OWNER,SELF-EMPLOYED,J1200\nBEACON COMMERCIAL,,F4000\nCONSULTANT,GARRYFORD CONSULTING,Y4000\nChairman,S L Green Realty Corp,F4100\nCOO,DLZ,Y4000\nEVP/COO,Wind Capital Group,G0000\nRSS INCORPORATED,,Y4000\nPRESIDENT,R.T. OLIVER INVESTMENTS,F7000\nELECTRICAL,SB SAGER AND ASSOCIATES,B3200\nTEACHER,LAKEHURST BORO,L1300\nOwner,Wastren Inc.,Y4000\nSVP,Great Plains Regional Me,Y4000\nAdministrator,La Causa,Y4000\nUNITED HOMES/DIVISION OF UNITED/BUI,,B2000\nANALYST,HIGHLINE CAPITAL,F2100\nOwner,Century 21 Aspen Real Es,F4200\nINVESTOR,\"510 VENTURES, LLC\",J5100\nWHOLESALE PRODU,CARUSO PRODUCE INC.,A1400\nFRED HUGHES BUICK,,Y0000\nCHAS LEVY PUBLISHING,,C1100\nNY NATIONAL BANK,,F1100\nLAWY,CLIFFORD CHANCE ROGERS & WELLS,K1000\nMailander & Company,,K1000\nEXECUTIVE,AZ MULTIHOUSING ASSOC/EXECUTIVE,Y4000\nPRESIDE,BEAUMONT IRON & METAL CORP.,M2000\nMAGNOLIA METAL CORPOR,,E1220\nGREEN LAW GROUP,,K1000\nSpecial Events Director,Cystic Fibrosis Foundation,JH100\nPresident / CEO,Memorial Hermann Healthcare System,H2100\nDOCTOR,WEST MICHIGIAN CARDIOLOGY,H1130\nPresident,\"Chwat & Company, Inc\",K2000\nPILATES INSTRUCTOR,SELF EMPLOYED,Y4000\nTABLETOPPERS INC.,,Y4000\nPUBLIC RELATIONS,HOWARD RUBENSTEIN,Y4000\nOwner,Casa Rio,Y4000\nCEO/CHAIRMAN,EMERGENCE,Y4000\nOLD REPUBLIC RISK MANAGEMENT,,F3100\nCommunity Organizer,\"The Children's Trust\",Y4000\nExecutiv Director,Youth Policy Institute,J1200\nconsultant,Zetlin Strategic Communications,Y4000\nBRANNEY HILLYARD & BARNHART,,Y4000\nVICE PRESIDENT/GENERAL MANAGER,CALPACIFIC INVESTMENT CORP.,Y4000\nOWNER,\"MEIJER, INC\",G2400\nSUMPLIT SECURITY,,Y4000\nManagement Consultan,RCG Associates,Y4000\nPresident,\"Hayward Brown, Inc\",F3100\nENGINEER,MCCLONE CONST CO,T1400\nC I O M,,Y4000\nCEO,GROUP CONCEPTS LTD,Y4000\nSALES,DEALERS AUTO AUCTION OF OKC/SALES,T2300\nOwner,Bay Management Company,F2500\nPATENT ATTORNEY,ARTZ & ARTZ,K1000\nCHAIRMAN,NATL RESTAURANT CORP,G2900\nCEO,SOLID STATE EQUIPMENT CORPORAT,M2300\nsales,self,J1200\nVICE PRESIDENT A,WARNER MUSIC GROUP,C2000\nFIRST BAPTIST SCHOOL,,H5100\nOWNER,MCCOMBS ENTERPRISES,F7000\nOWNER,WINDSOR JEWLERS,G4600\nSelf,Wa Alternative Medicine,Y4000\nWebsite Stuff,Self employed,Y4000\n\"HENRY'S GOURMET COOKIES\",,G2100\nPAM CO,,C2900\nPresident,Group & Pension Administrators,F3300\nInvestments,GSC PARTNERS,F2100\nRADIATOR REPAIR,SELF,G5600\nAttorney,LAW OFFICE OF DONALD SNIDER,K1000\nFACULTY MEMBER,UNIVERSITY OF KANSAS,H5100\nBUSINESS D,CHEVRON ENERGY SOLUTIONS,E1110\nATTORNEY,\"MCWHIRTER, BELLINGER & ASSOCIATES,\",K1000\nENGINEER,VIRTEC ENTERPRISES,Y4000\nATTORNEY,WILLIAMS & JENSEN PLLC,K2100\nCOMMUNITY AFFAIRS DIRECTOR,PBSO,Y4000\nEVPFINANCE&MARKETSEXELO,EXELON CORP,E1600\nDentist,\"Jones, Wilson & Vallejo, PA\",Y4000\nPUBLIC RELATIONS,AMERICAN WIND ENERGY ASSOCIATION,E1500\nCRARESVILLE BLOCK COMPANY,,Y4000\ndistrict representat,california senate,X3000\nReal Estte,Self-Employed,G0000\nPRESIDENT,\"HOMARD HOLDINGS, INC\",E1140\nTRAMMEL AND SARVIS,,K1000\nOWNER,JAMES L. MOORE OIL & GAS CO.,E1100\nCity Council,City of Norfolk,X3000\nAdministrator,AJA Video Systems,Y4000\nTHE BRODY GROUP,,B1500\nGALLO CATTLE COMPANY,,A3000\nOWNER,T.C.P.C.,Y4000\nR. E. Broker,selfemployed,F4200\nTKG MANAGEMENT,,Y4000\nFUNDRAISING,SONOMA LAND TRUST,Y4000\nHomemaker,n/a,T7100\nGENERAL MANAGER,INTERFOR PACIFIC INC.,A5000\nPRESID,\"HOUSE OF RAEFORD FARMS, INC.\",A1000\nCONS,HOLCOMB SCHUBERT INVESTMENT CO,G6500\nCONTRACTOR,STRIKER SHEET METAL INC.,B3400\nDIRECTOR OF IN,BRISTOL-MYERS SQUIBB,H4300\nExecutive,J Way,Y4000\nPrinciple,Emerson Ivestment Group,Y4000\nPHYSICIAN,PEDIATRIC NEUROLOGY ASSOC,H1130\nBusiness,Discovery Group,F2500\nMGR SUSTEM PGM,SLOAN KETTERING CANCER CENTER .,H2100\nPRESIDENT,TRI-R DIES INC,Y4000\nBESTOP INC,,Y4000\nMerchant,Hechinger Co.,J7400\nFOUNDER,ENTERPRISE RENT-A-CAR/FOUNDER,T2500\nLAWYER,ALSTON & BIRD LLP (INDEPENDENT CONTRAC,K1000\nWHEELER BROTHERS GRAIN CO,,A1500\nCORPORA,CHICAGO MERCANTILE EXCHANGE,F2200\nOPHTHALMOLOGIST,KHALID L KHAN MD PC,Z9500\nPASTOR,OCHLOCKNEE BAPTIST CHURCH,X7000\nCFP,C. PHILIP CLARK & ASSOCIATION,Y4000\nCHARCOAL HOUSE RESTAURANT,,G2900\nCHIEF MEDIC,LANGUAGE AND COMPUTINGS,Y4000\nOwner,LGP Enterprises,Y4000\nCONTRACTOR,HOFFMANN BROTHERS HEATING AND AC,B3400\nFundraising,Groduor Community CTR,Y4000\nAttorney,\"Lewis Wagner, LLP\",K1000\nPharmacist,Coker-Hampton Drug Co.,Y4000\nDIRECTOR FIRST NATIONAL BANK,,F1000\nCreative Director,Digitas,G5210\nPaine Hamblen Coffin Brooke,,Z1300\nEXEC. DIREC,SO CA COUNSELING CENTER,Y4000\nERICKSON BEASLEY HEWITT & WILSON,,Y4000\nAttorney,Fox Interactive Media,C5140\nOWNER,NWO BEVERAGE INC.,G2850\nINVESTOR,MASS MUTUAL INSURANCE,F3300\nACCOUNTING,CHRISTOS CENTER,Y4000\nEye Doctor,Tri State Centers for Sight,H1120\nPRESIDENT,SMITH PUBLIC AFFAIRS,J1100\nBusiness Development,PT&C Inc,Y4000\nLAWYER,STEVE F BROWN PLC,Y4000\nPOHANKA HONDA,AUTO DEALER,T2310\nManager,Educational Testing Service,H5000\nPlanning Consultant,Sborgle Associates,Y4000\nFINANCIAL ANAL,MCDONALD INVESTMENTS,F0000\nPHYSIC,JL STORY JR & JE SMITH MD PC,H1100\nAttorney,\"Vanatta, Sullan, Sangrund & Sullan\",Y4000\nPRESIDENT,AGUSTA WESTLAND INC,Y4000\nMEETINGS & SPECIAL E,THE RITZ-CARLTON,T1300\nCONSUL,MITTERMEIER CONSULTING GROUP,Y4000\nGALLOWAY BUICK CO,,T2300\nOrchard owner,Self employed,A1400\n\"VP, Supply Chain\",\"HCA, Inc.\",H2100\nHARDIN INC,,Y4000\nINVESTOR,LAWRENCE WEINBERG,J5100\nAttorney,Lester Knight & Associates,K1000\nBENTLEY SYSTEMS INC,,C5120\nUROLOGIST,HMU,H1130\nAdministrative Coordinator,Lutheran Volunteer Corps,Y4000\nVP/Environmental & G,Murphy-Brown LLC,Y4000\nRENTAL APT MGR,,F4500\nROBINSON BRADSWORTH & HINSON PA,,K1000\nEXECUTIVE,RIVERSIDE RESOURCES,Y4000\nExecutive Director,Columbia University,H5100\nPresident,The Topol Group,J5100\nAssistant Principal,State of DE/CR School District,X3000\nJACK L MASSIE CONTRACTING,,Y4000\nUNIVERSITY OF SOUTH,,H5100\nWELL MILL PT CLINIC,,H1700\nInformation Requeste,Miller Brewing Company,G2810\nPresident,Oaklawn Jockey Club,Y4000\nADMINISTRATOR,DES. OF SANTA TERESA,Y4000\nVP REAL ESTATE LENDING,OCTFCU,F4000\nInvestments,Berry Ventures,Y4000\nCo-President,HW Young Inc,Y4000\nMEDICAL SALES,STERIS CORPORATION,H4100\nVenture Capitalist -,Self,Z9500\nPublisher,Arcom Publishing,C1100\nTECH & MANAGEMT SERVICE,,C5100\nMERCANTILE BANK NEWTON IA,,F1100\n\"DANTE'S DOWN THE HATCH\",,G2900\nSELF-EMPLOYED,\"NANCY E. FERGUSON, INC.\",Y4000\nC.E.O.,\"Greystone Grading, Inc.\",Y4000\nPresident/CEO,\"Electro, Inc\",Y4000\nSCHOOL TEACHER,SCHOOL DISTRICT 23,X3500\nPresident,J T C Inc,G1200\nretired surgeon,self,X1200\nRETIRED SR. VICE PRESIDENT,RETIRED,X1200\nVice President For D,Museum Of Arts & Design,J1200\nSAWYET,SELF EMPLOYED,Y4000\nSELF-EMPLOYE,COMMERCIAL REAL ESTATE,F4200\nProfessor,Palm Beach Comm College,G5100\nWHITE ROSE DISTRIBUTING,,G3000\nPRESIDENT,PANAMA JACK,Y4000\nLOWER CAPE MAY S D,,L1300\nInsurance,La Plata Abstract Co,F4300\nAttorney,Sutkowski & Washkuhn,K1000\nResearch Psychologis,Brandeis U,H5100\nOwner/President,The Boden Inc.,Y4000\nPresident & CEO,The Princeton Review,H5000\nExecutive,Morris Financial,Y4000\nOWNER,\"HOPP,NEWMANN,HUMPKE LLP\",Y4000\nC C DISTRIBUTORS INC,,G5200\nPROSECUTOR,MONGOMERY COUNTY,Y4000\nC.E.O.,NAI  Cummins,F4000\nGM,Pat Lobb Toyota,B3000\nMilitary Officer,US Air Force,Y4000\nCOLLEGE PROFESSOR,GOUCHER COLLEGE,H5100\nLASER FANTASY,,Y4000\nEntertainment,RKO Pictures,C2400\nOWNER,MINE RITE TECH,Y4000\nEXECUTIVE,THE BISYS GROUP,Y4000\nREAL ESTATE,REALTY RESOURCES,F4200\nFinance Manager,Texas Instruments,C5110\nConsumer Attorney,Agnew Brusavich,J1200\nCITIZENS DEVELOPMENT CO,,F1000\n\"Director, Payment Advocacy\",Texas Medical Association,H1100\nFLORIDA BROADCASTING MNGMNT,,C2100\nCEO/PRESIDENT,INTEGRATED RESOURCES HOLDING,Y4000\nLUBOV AND ASSOCIATES,,Y4000\nPresident,Gerald Martin General Contractor,B1000\nPresident/ CEO,Hopewell Federal Credit Union,F1300\nSalesman,C. I. Thornburg,Y4000\nPHYSICIAN,\"JAMES LODDENGAARD, MD\",H1100\nReal Estate Developer,Great Bridge Properties,F4000\n\"VICE PRESIDENT, ELECTRIC OPERATIONS\",PG&E CORPORATION,E1620\nLeadership Training,Self,Y4000\nChief Corporate Actuary,Markel Corporation Group,F3100\nFinance,Western Wireless Corp,C4300\nBW/IP INTERNATIONAL/CONSULTANT,,Y4000\nLUBERT & BLECHMAN,,Y4000\nINVESTINART,,J7400\nOPTOMETRIST,CAPITAL HEALTH PLAN,Y4000\nINSURANCE EXECUTI,YOZELL ASSOCIATES,F3100\nSEN,UNIVERSAL MUSIC GROUP NASHVILLE,Y4000\nVice President,Gumenick Properties,F4100\nFAMILY PRACTICE ASSO OF TIFT AREA,,H1100\nSales,\"Cordis, Johnson and Johnson\",Y4000\nPublic Defender,County Of Sd,Y4000\nCPA,WILKINS CREWS & ASSOCIATES,Y4000\nRECEPTIONIST,\"SIGURD S. KENDALL, D.D.S.\",J1100\nFire Fighter/EMS,ELYRIA FIRE DEPT.,L1400\nGOVERNMENT RELATIONS,THE RHODES GROUP,Y4000\nCONSULTANT,\"HRWK, INC.\",Y4000\nChairman/CEO,Jack Resnick & Sons,J1200\nCLERK,IDOT,Y4000\nOWNER,BAGWELL ENTERTAINMENT L.L.C.,Y4000\nKHOW-AM,,C2100\nCABINET BUILDER,HARDWOOD CREATIONS,Y4000\nATTORNEY,\"THUEL, PUGH AND ROGOSHESKE\",K1000\nBANKER,CENTER STATE BANK OF FLORIDA,F1100\nATHENS STATE COLLEGE,,H5100\nTELETEC CORPORATION,,Y4000\nPHARMA,RAPID CITY REGIONAL HOSPITAL,H2100\nCHAIRMAN,\"LIVONIA, AVON & LAKE RR\",T5100\nACNO,PARKRIDGE MED CTR,H2100\nDALE & KLEIN LLP,,Y4000\nHOUSING FINANCE & DEVELOPMENT,,Y4000\nMUSIC EXEC.,EMI MUSIC PUBLISHING,C1100\nPRESIDENT,PARDEE HOMES,B2000\nAttorney,\"Honigman, Miller Schwartz & Cohn LLP\",J1200\nCEO OF A GREEN PRINTING COMPANY,SELF-EMPLOYED,Y4000\nAVIDYNE,,C5120\nATTORNEY,MAHER GUILLEY & MAHER,K1000\nState Trooper,CT Dept. of Public Safety,X3200\nPresident and Chief Executive Officer,Via Christi Health System,H2100\nOWNER/TAVERN KEEPER,CARDINAL BAR,Y4000\nVP,THE GRAHAM CO.,F3100\nCHADICK ELLIG,CO-CEO,J7400\nMANAGING DIRECTOR,\"DMSA, INC.\",G5220\nBUSINESS,VWS INCORPORATED,B3000\nUnion President,Newspaper Guild of NY,C1100\nmanager,Chicago Winter Company LLC,Y4000\nSHIMEL ACKERMAN THEOS SPAR ET AL,,K1000\nEXEC,DEATH VALLEY NATURAL HISTORY A,Y4000\nINFO REQUESTED,\"MPF ENTERPRISES, LLC\",Y4000\nUNIVERSITY OF WISCONSIN - MADISON,,H5100\nexecutive,Jovian,Y4000\nCRYSTAL WINDOW & DOOR,,Y4000\nProg,John Lysowski,J1200\nP,DERMATOLOGY & LASER CENTER OF SAN,H1130\nMilitary Contractor,General Dynamics,J1200\nWOMEN LAWYERS ASSN OF LA,,K1000\nINVESTMENTS,THE CHURCH PENSION FUND,X7000\nchairman,\"celadon group, inc\",Y4000\nREAL ESTATE MERCHANT BANKER,,G1300\n\"PRESIDENT, THE CHAIR KING\",SELF-EMPLOYED,G4400\nEXECUTIVE DIRECTOR,FEDERAL GOVERNMENT,X3000\nManager,Polyvinyl Films Inc,C2400\nAir Traffic Controller,Dept of Trans FAA,X3000\nPresident,\"AIG, Inc.\",F3100\nBROKER,UBS FINANCIAL PORTLAND,F2100\nBUSINESS DEVELOPME,DRS TECHNOLOGIES,D3000\nHISCOCK & BARCLAY LLP,,K1100\nExecutive,Home Office inc.,Y4000\nPRODUCER,CITRUS GROWER,A1400\nSTATE OF NEVADA RURAL CLINIC,,H1110\n\"MAYER, BROWN & PLATT\",,K2100\nDIRECTOR,\"GREAT PLAINS AG CREDIT, ACA, FLCA\",A4000\nDIRECTOR OF COMM,HERZING UNIVERSITY,JH100\nRABBI,BETH MEDRASH GOVOHA,H5100\n\"Sr. Project Mgr, Construction\",\"Fluor Enterprises, Inc.\",B1000\nBAKER WORTHINGTON CARR,,K1000\nSTRATEGIC NURSING,,Y4000\nDAISYTEK,,Y4000\nAttorney,George F. Gormley,K1000\nCONSULTANT,PRODESTA ASSOCIATES,K2000\nPresident,\"A.M. Rodriguez Associates, Inc.\",Y4000\nINVESTMENT BANKER,WILLIAM BLAIR AND COMPANY,F2300\nChairman and CEO,1st Farmers & Merchants National Bank,F1100\nOrthopaedic Surgeon,All Saints Healthcare,H1130\nBLUE BELL MATTRESS C,,Y4000\nPresident & Chief Ex,Titan Plastics Group,Y4000\nCHAIRMAN,NICKLOS DRILLING COMPANY,E1150\nATTORNEY,MORROW & ERHARD CO LPA,Y4000\nV.P. of Operations,Comcast Cable,C2200\nSTEINHARDT PARTNEARS,,J5100\nR L M GEN CONTRACTOR,,B1000\nBUSINESS MANAGER,\"MSI MANAGEMENT SERIVICES, INC.\",Z9500\nSMALL BUSIN,TRANSPORT SERVICES INC.,T0000\nCEO,Spicy Pickle,Y4000\nHENNEPIN COUNTY MEDICAL,,Y4000\nDAICO COMPANIES,,Y4000\nInkeeper,Harbor Light Inn,T9100\nExecutive,Gordon Thomas Honeywell,K2000\nComputer Programer,\"Script Perfection Ent, Inc\",Y4000\nOwner,Throggsneck Neurological Diagn. & T,H1130\nRESEARCH SCIENTIST,CITY OF HOPE,X3000\nKELCHER & WEILAND,,K1000\nSELF-EMPLOYED,ALACHUA LANDSCAPING LLC,B3600\nMANAGER,ALL MEDS,C5120\nDirector,United Health Care,J1200\nNEWPORT ENTERMINATING,,Y4000\nCivil Engineer,NY City Transit Authority,Y4000\nHEREFORD STATE BANK,,F1000\nCHRISTIAN SCIENCE PRACT,SELF-EMPL,X7000\nDELTAPOINT,,C5120\nINFO REQUESTED,INTELE. BUILDING,Y4000\nBARROW HANLEY MEWHINNENY & STRAUSS,,Y4000\nTHIELE KAOLIN CO,,J2200\nTEXTILE IMPORTER,PENFLI IND. INC.,Y4000\nFinancial Advisor,Ameraprise,Y4000\nField Director,Doherty for Congress,J1100\nTOWER BUS INC,,T4100\nCFO,\"ROYALTY PHARMACEUTICALS, INC.\",F2000\nCEO,\"HFS Concepts4, Inc\",Y4000\nCOOK COUNTY DEPT ENVIRONMENTAL,,X3000\nMANDALAY ENTERTAINMENT,,C2400\n\"FIRST NAT'L BANK OMAHA\",,F1100\n\"KING'S NA\",,T3100\nOWNER,GOLDEN EAGLE DISTRIBUTING,G2850\nPHYSICIAN,GENE RAGLAND MD PC,Z9500\nEG&G MANAGEMENT SERVICES OF SA,,Y4000\nCHAIRMAN OF TH,MILLIKEN AND COMPANY,M8000\nROTH & SCHOLL,,Y4000\nAN,PARISH ANESTHESIOLOGY ASSOCIATES,H1130\nOWNER,J. DEVIN DWYER CONSTRUCTION,B1500\nSHELDON M GORDON,,F4100\nEXECUTIVE,SCOTTS OILS INC.,Y4000\nINFO REQUESTED,PEDATRIC CARDIOLOGY ASSOC.,H1130\nVice President,Denali Asset Management,F2100\nREAL ESTATE DEVELOPER,\"THE WISHCAMPER COMPANIES, INC.\",Z9500\nSR. DIRECTOR,FORSYTHE,Y4000\nPhilosophy professor,Louisiana State University,H5100\nPartner,Hanks Pontiac GMC Buick,T2300\nEXECUTIVE VICE PRESIDENTS,CASSIDY & ASSOCIATES,K2000\nEXEC.,JACOBS INST. OF WOMENS HEALTH,H0000\nSTRUCTURAL ENGINEER,THOS. REWERTS & CO. LLC,Y4000\nPESONHOOD OHIO,SELF,Y4000\nPILOT,B.J. GORSTEIN,Y4000\nCEO,\"DUNCAN OIL, INC.\",E1160\nPhysician - Professo,\"Children's Hospital, Cincinnati\",J7400\nBARTIMUS FRICKLETON ROBERTSON & OB,,K1100\nFULLER BRUSH COMPANY,,M2300\nFILM PRODUCER,A BAR K PRODUCTIONS,F2600\nDIRECTOR,UHS OF DE,H2100\nSURGEON,METHODIST HOSPITAL,H2100\nBUS EXECUTIVE,RUAN TRANSPORTATION,Y4000\nPRESIDENT,DIAMOND CHEMICAL CO. INC./PRESIDENT,Y4000\nBUSINESS D,SATYAM COMPUTER SERVICES,C5130\nAttorney,US Occupational Safety & Health Revi,Y4000\nBanker,Commerical National Bank,F1100\nATTORNEY,CUNNINGHAM & SELF,Y4000\nATTORNEY,PB & G,K1000\nScientist,Blackwell Synergy,Y4000\nINVESTMENT MANA,WILSHIAE ASSOCIATES,Y4000\nPresident/C.E.O.,Lorin Ind,Y4000\nASHBRITT INC.,,E2000\nJOHN SANTORO MD,,H1120\nPACIFIC NW INTL TRADE ASSN,,G3500\n\"WOLF, BLOCK, SCHORR & SALIS-COHEN\",,K1000\nLAWYER,\"GALLOWAY & ASSOCIATES, LLC\",K1000\nMUSICIAN,SELF-EMPLOYED,J7150\nPhysician,University of Texas Southwestern M,Y4000\nENGINEER,AIL QUAL,Y4000\nATTORNEY,ROGITZ AND ASSOC,K1000\nSECURITIES BROKER,B.B. GRAHAM AND CO.,Y4000\nRETIRED,F.R. MCABEEINC.,Y4000\nSTATE INVESTIGATOR,20TH J. D. D. T. F.,Y4000\nEDITOR,\"AMML PUBLISHING CO., INC\",C1100\nProperty Owner,Self-employed,J7400\nSurgeon,Self,J1200\nASSIS,U.S.A.A. FEDERAL SAVINGS BANK,F1200\nKARP & GENAUER P A,,J5100\nINSTALLATION MGR,MARCONI,Y4000\nVice President,Ashford Capital Management Inc.,J1200\nGADSDEN HEALTH CARE CENTER,,H3000\nMUNRO PROPERTIES,,F4000\nPHYSI,COMMONWEALTH ANESTHESIA ASSOC,H1130\nconsultant,The Holzman Group,Y4000\nSOFTWARE ENGINEER,N/A,C5120\nEXECUTIV,BRIGHTHOUSE COMMUNICATIONS,Y4000\nBUSINESS DEV,MASTER CONSULTING P.A.,Y4000\nHuman Resource Consu,\"Colehower & Company, Inc.\",Y4000\nPRES,\"BOULIOU AVIATION SERVICES, INC\",T1100\nATTORNEY,KING AND SPALDING,K2000\nEXECUTIVE,FOUR WINDS CONSULTING LLC,Y4000\nVP RJRT (PRES&GENMGR-,R. J. REYNOLDS TOBACCO CO.,A1300\nJOHN MORRISSEY & ASSOC,,Y4000\n\"WEGMAN'S MARKETS INC\",,G2400\nEVP GENERAL CO,THE MACERICH COMPANY,F4100\nLARRY PEARSON A I A,,Y4000\nATTORNEY,WALLACH ANDREWS & STOUFFER,K1000\nNEW YORK BUILDING CONGRESS,,Y4000\nATTORNEY,CAMPBELL FOLEY LEE MURPHY,K1000\nPARTNER,FLORENCE ELECTRIC,Y4000\nInformation Requested,Cheney & Co,G5210\nNUVIEW RADIOPHARMACEUTIC,,Y4000\nHOSPICECARE,,H3100\nPhysician,Resurrection Medical Center,Y4000\nST JOHN & WAYNE,,K1000\nTravel Agency Owner,CWT/Travel Center,T9400\nVice President,Liberty Diversified Industries,Y4000\nConsultant,Tom Skanke & Associates,K2000\nCORRADO AMERICAN INCORPORATED,,Y4000\nREGISTERED NURSE,ALLERGY ASTHMA ASSOCIATION,H1130\nPROFE,INSTITUTE FOR SYSTEMS BIOLOGY,J6200\nSOLID WASTE AUTHORITY,,Y4000\n\"VP, LEGISLATIVE AFFAIRS\",US STRATEGIES CORPORATION,K2000\nSONGWRITER,WIND-UP RECORDS,C2600\nCabinetmaker,Self-Employed,M4100\nATTORNEY,NETFLIX,C5140\nPhysician,Aaa,T9400\nMANAGER,ROAD MACHINERY,B1000\nCEO,ADVANCE PAYROLL FUNDING,Y4000\nATT,\"BREIT DRESCHER & IMPREVENTO, PC\",K1000\nEXECUTIVE,\"CEO MANAGEMENT SERVICES, INC.\",G0000\nDIRECT RESPONSE GROUP,,Y4000\nOwner,La Silhouette,Y4000\nAttorney,McKesson Corporation,H4400\nANDERSON-STOKES INC,,Z5100\nOwner,Albion Assessments Psychotherapy,Y4000\nAttorney,Law Offices Of Tom Johns,K1000\nCONTRACTOR,LARRY JOHNS,J6200\nBUSINESSMAN,PRICE BROTHERS CO.,B5100\nExecutive,South Bay Auto Auction,G0000\nBuilder,Markovich Homes,B2000\nDUSABLE ASSOC,,B4400\nPRESIDENT,ATHENA CORPORATION,Y4000\nELECTRICIAN - ELECTRONIC TECH.,ROCK ISLAND INTEGRAT,Y4000\nACCOUNTANT,CHAMPION FEEDERS LLC,Y4000\nExecutive,\"Lawry's Restaurants, Inc.\",G2900\nAttorney,King & Ser Auto,Y4000\nOWNER,SHOPRITE OF MANCHESTER,G2500\nPARTNER,PLASTIC ENG,Y4000\nJUSTICE TRAINING INS,,Y4000\nPRESIDENT,ALPHA GROUP,Y4000\nPHOENIX HOLDINGS,,Y4000\nPACIFIC COAST PHARMACY INC,,G4900\nMANAGER,\"MASSEY, WOOD & WEST, INC.\",E1180\nCONSERVATION DEVELOPMENT CORP,,Y4000\nSTATE DIRECTOR RURAL DEVEL,U.S.D.A.,X3000\nHUMPHRIES BUILDING SUPPLY,,G4500\nPRESIDENT,Lakeshore Engineering,B4400\nFOUR SEASONS PRODUCE INC,PRESIDENT,J1100\nHFC (CANADA EXPATS),,F1400\nmiddle school studen,unemployed,J1200\nB,PEOPLES NATIONAL BANK OF CHECOTAH,F1100\nMEDICAL SALES,CYBERONICS,H4100\nProfessor,Tje College of Saint Rose,J1200\nOWNER,ELEANORS ARABIAN FARM,A1000\nGULF WELDING SUPPLY,,Y4000\nCONSULTANT,ERNST & YOUNG,J1200\nREAL ESTATE,KELLEY PROPERTIES,F4000\nPSYCHOLOGIST/PHYSICIAN,SELF/PNC,H1110\nOwner,Roman Regency Jewelers,Y4000\nPRESIDENT,\"CONDORTECH SERVICES, INC.\",Y4000\nreinsurance,signet star re,Y4000\nFINANCIAL ADVISOR,FINANCIAL FOUNDATIONS,Y4000\nFRICK HOSPITAL,,H1100\nTeacher,Marion County School,Y4000\nSR. VICE PRESIDENT,FARM CREDIT SERVICES,F1400\nEX,AMERICAN PLUMBING & HEATING CORP,B3400\nPresident and CEO,HSB Group Inc.,F3400\nHealth Care Executive,Montefiore Medical Center,Z9500\nD. D. S,LANGE & LANGE D. D. S. INC.,Y4000\nProfessor,University of VT,J1200\nREAL ESTATE,AMESBURY MANAGEMENT LLC,Y4000\nTELECO,,C4600\nExecutive Vice President Operating Off,Parker Hannifin,M2300\nPHYSICIAN,HVN,Y4000\nCORP STAFF,,C5110\nCOLLEGE PROFESSOR,VIRGINIA TECH UNIVERSITY,H5100\nLEGAL COUNSEL,LOWES COMPANIES,G4500\nPHYSICIAN,LONG BEACH MEMORIAL,H1130\nMedical Research,DHHS,X3000\nTeacher,Dist 150,Y4000\nEXECUTIVE,MIDWEST MEDICAL,H3000\nPACE MOTOR SPORTS,,G6500\n\"Dir, Strategic Oper Initiative\",NRG Energy,E1630\nCHAIRMAN EMERITUS,PRODESCO INC.,M8000\nSales,Fleet Sales LLC,Y4000\nTV/RADIO PRODUCTION,SELF-EMPLOYED,G0000\nPHYSICIAN,MAYO CLINIC ARIZONA,Y4000\nEXECUTIVE,\"NNA SERVICES, INC.\",Y4000\nFIELD TECH,STONECROP TECHNOLOGIES,Y4000\nPhysician,IPS Medical Associates,Y4000\nCONSULTANT,WESTERN ADVOCATES,Y4000\nPARTNER,\"SHAMROCK II INVESTMENTS, LLC\",Y4000\nCEO,MOLAK CORP.,Y4000\nSOFTWARE ENGINEER,\"CYKIC SOFTWARE, INC.\",C5120\nPHYSICIA,COLUMBIA ORTHOPEDIC CLINIC,H1130\nOWNER,PEPPER VINER HOMES,B2000\nPsycho Analyst,Self employed,G0000\nPOLICE OFFICER,L.A.P.D.,Y4000\nLibrarian,U.S. Government,J7400\nC.E.O.,SCIENTIFIC ATLANTA,C4600\nCorporate and Foundation Relations,Rider University,H5100\nDIRECTOR,COUNTY OF WAYNE,X3000\nRR INTERNATIONAL,,G5270\nIndividual Investor,Tomay Inc,H3700\nPRESIDENT/OWNER,\"FLORIDA FINANCIAL GROUP, LLC/PRESID\",Y4000\nPRESIDENT & CEO,ILLINOIS MANUFACTURING ASSOCIATION,M0000\nVP REAL ESTATE INTER,THE HOME DEPOT,G4500\nPRODUCT HEAD,AGCS MARINE INSURANCE COMPANY,F3100\nAttorney,\"Pepper, Hamilton, LLP\",K1000\nPediatrician,Greater Baltimore Medical Center,H2100\nPHYSICIAN,PLASTIC SURGERY AESTHETICS,H1100\nPEGNATO AND PEGNATO,,Y4000\nOwner,Abrasive Technology,Y4000\nGastroentrologist,Self,G0000\nINFORMATION REQUESTE,HEATON FARMS,A1000\nPRESIDENT,OPS SALES CO.,Y4000\nPRESIDENT,BIG RED DOG ENGINEERING,B4400\nRETAIL PRODUCE,SELF-EMPLOYED,A1400\nWEALTH PLACE INC,,Y4000\nBOWMAN DISTRIBUTION,,Y4000\nEXECUTIVE,WHITNEY DAMRON,Y4000\nProducer,The Producing Office,Y4000\nPRESIDENT,JEFFREY NEW YORK,Y4000\nCONTRACTOR,BENTAR DEVELOPMENT,Y4000\nATTORN,MCDONOUGH KIERNAD & CAMPBELL,K1000\nGARDNER CARTON & DOU,,K1000\nEconomist/ChiefInter,Miller F Chevalier,Y4000\nTRAVEL ADVISOR,SELF-EMPLOYED,T9400\nCEO,NATIONAL FORREST SERVICES,J1100\nPROFESSOR AND D,UNIVERSITY OF MAINE,H5100\nManaging Director/General Counsel,Highfields Capital,F0000\nOWNER/MANAGER,ALOHA DRUGS,H1750\nMANA,\"UNIVERSAL TERRAZZO & TILE, CO.\",Y4000\nCHAIRMAN,THE INTERFACE GROUP INC.,G6500\nMANAGER,MARGUERITA GRILL,G2900\nHEALTH CARE ASSOCIATION OF NEW JERS,,H2200\nSTEGER HUSTEDT ET AL,,Y4000\nH & G CONSTRUCTORS INC,,B1500\nFINANCIAL CONSULTANT,SELF,F1000\nHILL EVANS DUNCAN JORDAN & DAVIS,,Y4000\nPHYSICIAN,DCIPA,Y4000\n\"V.P. & DEPUTY TREASURER, RISK MANAGEME\",GE CAPITAL,M2300\nCERTIFIED PUBLIC ACCOUNTANT,SELF EMPLOYED,A6000\nREGISTERED NURSE,SELF-EMPLOYED,J1200\nATTORNEY,\"LICHTMAN & ELLIOT, PC\",Y4000\nWASHINGTON UNIV SCHOOL OF,,H5100\nV.P. & GENERAL MANAGER,RT COMMUNICATIONS,Y4000\n\"PRESIDENT, BANKING\",CAPITAL ONE,F1400\nVP Government Relati,Keyspan,Y4000\nPETIT-MORRAY,,Y4000\nTHE GLENN ARMENTOR LAW CORPORATION,,K1000\nPROJECT MANAGE,ALDRIDGE ELECTRIC CO,B3200\nOil and Gas Prod,Self,E1120\nBOGUE KOURY & MARYLANDER LLC,,K1100\nORTHOPAEDIC SURGEON,CENTER ORTHOPAEDIC SURGERY,H1130\nBUSINESS E,GERTRUDE HAWK CHOCOLATES,G2200\nPARTNER,JENNIFER BELL & PARTNERS/PARTNER,K2000\nInvestment Advisor,\"Connors Investor Services, Inc.\",Y4000\npresident,AV Consultants,F3100\nChairman of the Board & Chief Executiv,Sammons Financial Group,F3300\nowner,Luxury Limousine,Y4000\nExecutive,Houston Endowment Inc.,J7300\nELLIOTT & WOLDRAN ABSTRACT & C,,F4700\nSales,\"Overlap, Inc\",Y4000\nPHYSICIAN,\"SHEPHERD'S CENTER\",H1100\nM.D.,FAXTON-ST. LUKES,Y4000\nOWNER,ALLEGHANY WAREHOUSE,Y4000\nCEO,\"UNITED BANKSHARES, INC.\",Y4000\nManager,Canterbury Consulting,Y4000\nCantor,Temple Both,X7000\nVice President,MWH Business Solutions,Y4000\nenergy medicine prac,Self Employed,E1000\nVENTURE CAPITALIST,SANDERLING VENTURES,Y4000\nPublic Affairs,NYU,H5100\nSENIOR VICE PRESIDENT,DAVITA HEALTHCARE PARTNERS,H3200\nOwner,Martin Walter Co,Y4000\nPRESIDENT OCN RADAR & SNS,Lockheed Martin,D2000\n,KENNEDY CENTER FOR SPORTS MEDICINE,H1130\nREGIONAL GM,EMERY WORLDWIDE,T3100\nROAD SAFETY SUPERVISOR,LEE CO. FLORIDA SCHOOL DISTRICT,X3500\nCHAIRMAN & CEO,TEREX CORPORATION,B6000\nRADIOLOGI,TEXAS TECH MEDICAL SCHOOL,H1130\nAttorney,Blank Rorme,K1000\nInvestment Managemen,The TCW Group Inc.,F2100\nUNITED STEEL WORKERS,,LM100\nINSURANCE AGENT,SELF-EMPLOYED,J6200\nAMERICAN SHIPBUILDING ASSO,,K2000\nChairman & CEO,Eric Mower & Associates,Y4000\nOWNER,AMS DIST.,Y4000\nphysician,Emergency Physicians of Mid Missouri,H1100\nBERRY FRANCIS,,Y4000\nPRESIDENT,GALEN ENTERPRISES LLC,D2000\nVENTURE CAP,COMMUNICATIONS VENTURES,J1200\nAMERICAN FLORAL SERVICES INC.,,A8000\nConsulting Director,Oracle,C5120\nCEO,WAHVE,J7400\nIN,KINSELL NEWCOMB AND DE DIOS INC.,F2300\nESCROW OFFICER,CLASSIC ESCROW,Y4000\nATTORNEY,BOHN & BOHN LLP,J1200\nTIDWELL CONST,,B1500\nAttorney,U. S. NAVY,X5000\nELECTRONICS ENGINEER,CALCULEX INC,C5110\nREAL ESTATE,BARRIER BEACH PROPERTIES,F4000\nHomemaker,Not employed,G0000\nIT SPECIALIST,IBM CORP,C5100\nstudent,GIT,Y4000\nMID MICHIGAN GROUP,,Y4000\nMOSBEY INSURANCE & ASSOC PLANNERS,,J7400\nAdministrative Assistant,UCSD,J1200\nCHEMIST,OREGON UNIVERSITY SYSTEM,J1200\nEII HOLDINGS,,F2100\nRanching/Investments,Walter G Mize Investments,F7000\nEXECUTIVE,STEPHENS GROUP INC.,F2300\nKAUFMAN ASSOCIATES,,K2000\nNOBLE LOWNDES,,F3100\nCredit Union/Banking,Printing Industries CU,F1300\nMANAGER,NATIONAL CELLULAR INC.,C4300\nENVIRONMENTAL COORD,MOTIVA REFINING,Y4000\nPR COUNSELOR,GREGG COMMUNICATIONS,Y4000\nPRES,NORTHWEST EVALUATION ASSOCIATI,G5200\nIAC INC,,G5210\nAVALON VENTURES,,F2500\nDIRECTOR OF,STATE OF SOUTH CAROLINA,X3000\nCAMELOT RADIOLOGY,,H1130\nGENERAL & AUTOMOTIVE,,T2400\nMICO WORLDWIDE TRADING,,Y4000\nGOODFELLOW BROTHERS INC,,Y4000\nSACRAMENTO INFINITI,,Y4000\nRealtor,Schroud Realty Group,F4200\nPHYSICIAN,\"FREDERICKSBURG HOSPITALIST GROUP, P.C.\",H1100\nVP,Telco,Y4000\nICANN,,C5120\nMarketing executive,NE MS Bottling; CC Clark Inc,G2700\nNORTHWEST AIRLINES,,J7400\nLEVY CORP OFFICES,,B5300\nPRESIDENT & OWNER,FONG CONSTRUCTION COMPANY,B1500\nManager,Cole Taylor Mortgage,F4600\nDirector,Nevada Power Company,E1620\nMORRA ELECTRIC,,B3200\nCHAIRMAN PRESIDENT & CEO,AETNA,H3700\nCHIEF OF STAFF,ADVANCED HEALTHCARE MEDICAL CENTER,H2100\nBOARD OF DIRECTO,THE PROVIDENT BANK,F1200\nHotel Owner,Not employed,T9100\nChief Executive Offi,SES,Y4000\nNORTH STAR STEEL COMPANY,,A1000\nADULT CARDIOLOGY,Roosevelt Cardiology,H1100\nCustomer Service,Exide Technologies,Y4000\nDentist,\"Ceila A Lloyd, DDS PC\",H1400\nteacher,University of Maryland University Coll,J1200\nEXECUTIVE DIRECTOR,QUALITY CARE PHARMACIES,H1750\nCar Detailer,Lexus Of Cherryhill,J1200\nClarksdale Beverage Co. Inc.,,Y4000\nEditor,SIAM,Y4000\nEXECUTIVE,HUDSON MEDICINE,J1100\nLaundry,Self-Employed,G5500\nReal Estate Broker,International Properties,F4200\nCPA,\"SCHMOYER AND COMPANY, LLC\",H5100\nP & H INVESTMENTS INC,,Y4000\nNUCLEAR ENGINEER,TETRA TECH,B4000\nCEO,CYPRESS VENTURES LTD,Y4000\nCONSULTANT,\"ESOP ECONOMICS, INC.\",F5500\nOWNER,J R BOWMAN CONSTRUCTION CO.,B1500\nDigital Artist / Photographer,\"Roundy's\",G2400\nRETIRED MARINE,N/A,X1200\nRetired,National Beauty Culturist,Y4000\nMD.PHD.,,JD200\nTechnical Director,\"OTM Partners, LLC\",Y4000\nATTORNEY,TRENAM KEMKER,Z9500\nEXECUTIVE,REED MANUFACTURING CO.,Y4000\nINVESTOR,JACOBS CAPITAL GROUP,F0000\nRETIRED DEVELOPER,,J7150\nEXECUTIVE,HERMAN MILLER,Y4000\nPartner,\"Young, Pickett & Lee\",K1000\nORAL SURGEON,BAYLOR COLLEGE OF DENTISTRY,H1400\nGOVERNMENT AFFAIRS LIASION,NATIONAL ASSOCIATION FOR HOME,H3100\nConsultant,MPSC,Y4000\nCardiologist/Interna,Glendale Internal Medicine,H1130\nDIRE,INUPIAT COMMUNITY ARCTIC SLOPE,Y4000\nMULTI UNIT BROKERAGE INC,,Y4000\nRadiation Therapist,Self,H1130\n\"JOHN'S ELECTRIC\",,Y4000\nBanker,San Antonio City Employees FCU,F1300\nSELF EMPLOYED,SELF EMPLOYED,H1120\nPRESIDENT,WAYNE JACOBSON BUILDERS,Y4000\nInformation Requeste,Fredrikson & Byron,K1200\nALLIED PHARMACY MCT,,G4900\nINSURANC,HIGHLAND CAPITAL BROKERAGE,F3100\nWATER & WASTE WATER AUTHORITY,,E3000\nPHYSICIAN,MESA MED SER,Y4000\nReal Estate,Brinkoetter & Associates,F4200\nEWING MARTIN KAUFFMAN FOUNDATION,,X4100\n\"WILKE, FARR & GALLAGER\",,K1000\nAdministrator,Valley-Wide Health,Y4000\nSTONEFIELD BISON RANCH,,A3000\nFINANCIAL PLANN,SIMPSON TACOMA KING,Y4000\nLOBBYIST,\"SAIC, INC\",D3000\nPRESIDENT,MERCY CREDIT UNION,F1300\nVP TECHNOLOGY PERFORMANCE,BP,E1110\nPartner,\"18 West Ventures, LLC\",Y4000\nBUSINESS OWNER,CUSTOM INSTALLERS,Y4000\nPRESIDENT,HENWOOD ASSOC.,Y4000\nGeneticist,BRM Inc,H0000\nWHYTE HIRSCHBOECK DUDEK LLC,,K1000\nCEO,Americans for Peace Now,Y4000\nFORESTER,GRAYBACK FORESTRY,A5000\nMISSISSIPPI CHECK CASHERS,,Y4000\nOVERTON MOORE & ASSOCIATES,,Y4000\nFEILD COORDINATOR,LDP,Y4000\nCOO,ARIA HEALTH,Y4000\nCEO,Ultimate Sports Basketball Acadamy,Y4000\nPRESIDENT,ALPHA STRATEGIES,G5200\nART GALLERY,SELF EMPLOYED,G4600\nASSISTANT GENERAL COUNSEL,FL. DEPT. OF JUV.  JUSTICE,X3200\nELLISON CONSTRUCTION CO,,B2000\nAttorney,Law Offices of Eric B Rasmussen,J1100\nDirector,Paramount Pictures,C2400\nCOOPER SPONG AND DAVIS,,K1000\nDIRECTOR OF RESEARCH,CLARK CAPITAL MANAGEMENT,F2100\nPRINCIPAL,AMERICAN SCHOOL IN LONDON,H5100\nFILM TV,CLASSIC MEDIA,Y4000\nInvestment Advisor,KENNEY INVESTMENTS,Y4000\nREALTY,MCBRIDE AGRVER,F4000\nSMALL BUSINESS OW,FLIGHTSOURCE INC.,Y4000\nCONTEMPORARY TECHNOLOGY INC,,Y4000\nSHARED SE,UNITED PARCEL SERVICE INC,T7100\nFREE LANCE COURT REP,,G5200\nVICE PRESIDENT,METRO COMMERCIAL REAL ESTATE,F4000\nVP PUBLIC POLICY,COMCAST CORPORATION,C2200\nCOMMERCIAL REAL ESTATE BROKER,BROKERONE REAL ESTATE,J9000\nKEYFOOD BROKERS,,G2500\nRETIRED,RETEIRED/RETIRED,X1200\nATTORNEY,ARNOLD NEWBOLD AND WINTER,Y4000\nPodiatric Physician,Fairfield Podiatry Associates,H1130\n\"RAFFENSPERGER, HUGHES\",,F2100\nSALES,SELF-EMPOYED,G0000\nDEVELOPER,PLAZA DEVELOPMENT PARTNERS,Y4000\nPILOT,DELTA AIRLINES,T1400\nAttorney,White Fleischner & Fino,Y4000\nTRANSPORTATION MANAGER,IDF,Y4000\nPHYSICIAN,SUMMIT CANCER CARE,Y4000\n\"PICKREL, SCHAEFFER & EBLING\",,J1100\n\"HILL'S PET NUTRITION\",,Y4000\nBUSINES,SAINT JAMES INSURANCE GROUP,F3100\nASSOCIATE VICE PRESIDENT,ADVAMED,H4100\nConsultant,Stephen Avakian,J7500\nARVEY & HODES,,K1000\nREAL ESTATE DEVELOPE,\"UNITED STORE ALL CENTERS, L. L. C.\",Y4000\nExecutive Director,Tri-town Community Action Agency,Y4000\nARN C MCCAIN,,Y3000\n\"WORKER'S COMP CLERK\",CRISP CTY BOARD OF EDUCATION,X3500\nPRESID,PORTS PETROLEUM COMPANY INC.,E1100\nPRESIDENT,GOODPASTURE LTD,Y4000\nReal Estate Broker,Prudential Fox & Roach Realtors,Z9500\nyouth worker,Brigham and Womens Hospital,H2100\nSenior Vice Presiden,Comcast Commercial Services,C2200\nEXECUTIVE,ITRON/EXECUTIVE,C5000\nTeacher/Educator,Stony Brook University,H5100\nCEO,RYLAND GROUP,B2000\nUH-60 PILOT,U.S. ARMY,X5000\nLAWYE,ROUDA FEDER TIETJEN & MCGUINN,Y4000\nKOCH INDUSTRIES,,F3100\nRetired,College Professor,H5100\nSECURITY CAPITAL GROUP,,J5100\nVICE PRESIDENT,STUDIO CENTER,Y4000\nNortel,,C4600\nREALTOR,BAY EAST ASSOCIATION OF REALTORS,J9000\nTHEODORE WOLFBERG,,Y4000\nCO-DIRECTOR,\"LOOKING GLASS ARTS, INC\",Y4000\nPRESIDENT,MET LIFE,F3300\nnot Applicable,not Applicable,F0000\nEXECUTIVE,PARAGON SPORTS,Y4000\nEXECUTIVE VICE PRESI,CONCRETE SUPPLY COMPANY,B5100\nARTHUR A BENSON & ASSOCIATES,,Y4000\nATTORNEY,COLORADO COMMUNITY,Y4000\nGREAT PLAINS REHAB,,Y4000\nPresident,CHARTER CONSTRUCTION,B1500\nPESPSI COLA,,Y4000\nCHASE INVESTMENT COUNSEL CORP,,F7000\nCONTRACTOR,MUGHAL ALUMINUM WORKS,Y4000\nPublic Affairs Director,Washington State Investment Board,Y4000\nATTORNEY,CODIGAN LAW FIRM,K1000\nDIRECTOR OF CORPORATE AFFAIRS,SIERRA PACIFIC INDUSTRIES,A5000\nSCIENTIST,BURNHAM INSTITUTE FOR MEDICAL RESEARCH,D4000\nteacher,Windrush School,J1200\nSTRUCTURED FINANCE,GE CAPITAL,M2300\nRETIRED,WESTSIDE ANIMAL HOSPITAL,X1200\nSupervisor/ Quality Control,General Motors,T2100\nHR DIRECTOR,\"DOCS DIET, INC\",Y4000\nVICE PRESIDENT,ALDRIDGE ELECTRIC INC/VICE PRESIDEN,B3200\nACCOUNTING,CALPINE CORP,E1630\nAttorney,\"Law Offices of Howard Goldman, LLC\",K1000\nCOLLEGE PRESIDENT,MT. WACHUSETT CC,Z9500\nPRESIDENT / CONTRACTOR,HARDISON BUILDING,Y4000\nPRESIDENT,FOX INTERNATIONAL CHANNELS,C2400\nFinancial Advisor,Steckler and Wynns Financial Group,F2000\nexecutive,MED,Y4000\nATTORNEY,THE BOCKORNY GROUP,K2000\nDENTIST,T ALAN PETERSON,Y4000\nAttorney,National Coalition Against Censorship,Y4000\nSCHOOL ADMINISTRATOR,SCHOOL DISTRICT OF HILLSBOROUGH COUNTY,X3500\nPRESIDENT & C.E.O,DELTIC TIMBER CORPORATION,A5000\nATTORNEY,RICHARD W KONIG INC,Y4000\nTEXAS STATE JUDICIARY,,X3200\nCEO & PRESIDENT,\"VERIDYNE, INC\",Y4000\nAYRES ASSOCIATES,,B4000\nSAM NUNN SCHOOL OF INTERNATIONAL AF,,Y4000\nVP-BUSINESS,JOHNSON BROTHERS CORP.,Y4000\nCEO,Herr Foods Inc.,G2100\nPHYSICIAN,BELL HOSPITAL,H1100\nHART FOOD & DRUG,,G2400\nD M CAMP & SONS,,A1000\nProfessor,Universityof VT,H5100\nR & J WHOLESALE,,B5300\n\"VICE PRESIDENT, RETAIL BANKING MANAGER\",THE HONESDALE NATIONAL BANK,F1100\nPAVILION ORGANIZER FOR DEFENSE TRADE S,THE ASSOCIATION OF THE U.S. ARMY,X4000\nPLANNER,US EPA,J1200\nU OF ARIZONA,,H1130\nSUFFOLK CO COMMUNITY,,Y4000\nMEDICAL DOCTOR,TUCSON ORTHOPEDIC INSTITUTE,H1130\nAttorney,Smith Elliott Smith & Garmey,Y4000\nManaging Partner/ Attorney,\"Anesi, Ozmon, Rodin, Novak\",K1000\nPHYSICIAN,PRINCETON MEDICAL GROUP,Y4000\nREACTION MEDIA,,Y4000\nMANAGER,YOUNG PEST CONTROL,G5700\nChairman,J Supply Co. Inc.,Y4000\nLawyer,\"Gallagher,Schoenfeld et al\",K1000\ninternet,Democrats.com,J1200\nPhysician,Howard Univ Hospital,H1100\nCommunications,Fenton,J1200\nRADIO STATIONS,SELF,C2100\nSenior Research Scientist,\"Influmedix, Radnor, PA\",Z9500\nSTATE LEGISLATOR,,K1000\nConsultant,Counterpart International,J1200\nC.E.O.,PIEDMONT PHARMACEUTICALS,H4300\nSCOFIELD GERRARD VERON SINGLETARY,,Y4000\nSales,Kroes Corporation,J1200\nPartner,Shamrock Holdings,F0000\nPHYSICIAN,YANKTON MEDICAL CLINIC,H2000\nSMC,,J7400\nEXECUTIVE,INTERNATIONAL TECHNOLOGY CENTER/EXE,Y4000\nPHYSICIAN,NORTH HOUSTON HEART,H1130\nMENTAL HEALTH,BRIDGES TO A NEW DAY,H1700\nPRIVATE EQUITY INVES,CONSUMER GROWTH PARTNERS,Y4000\nVICE-,\"J.H. BUHRMASTER COMPANY, INC.\",Y4000\nVICE PRESIDENT,VANTEC THERMAL TECHNOLOGIES/VICE PR,Y4000\nMANAGER,DUENOW MANAGEMENT,Y4000\nBOOKKEEPER,\"ROTATION DEVICES, INC.\",Y4000\nSenior Regional Political Manager,National,B0500\nOBLON SPIVAK MCCLELLAND MALER & NEU,,K1000\nPRESIDENT & CEO,PETER G. PETERSON FOUNDATION,F4100\nExecutive,Pine Bluff Sand & Gravel,B5100\nRegistered Nurse,Cigna Healthcare,F3200\nLegal malpractice/ethics Attorney,Beltran & Chandler,K1000\nHealthcare executive,LarsonAllen,Z9500\nARDEN MANAGEMENT COMPANY,,Y4000\nEDWARD J DE BAR,,F4500\n\"VP, GOV'T\",AUTOZONE,T2200\nASSOCIATE,95.1 RADIO WRBS,C2100\nTHE BAILEY PRESS,,Y4000\nPHILLIPES,,Y4000\nMANUFACTURER,TEKTEST INC,J1100\nABRAMS CAPITAL LLC,,F0000\nOwner,WAGNER SCOTT MERCATOR LLC,Y4000\nAttorney,Princeton Public Affairs Group,K2000\nInvestment Advisor,\"Shufro Rose & Co., LLC\",F2100\nCommunications Dir,Republican Party of KY,J1100\nFREMONT-RIDEOUT HEALTH,,H0000\nCODMAN SQUARE HEALTH CTR,,JH100\nASSOC. EXEC,PA BUSINESS COUNCIL,Y4000\nBANK OF AMERICA,,J7300\nIAEC/EVP/GENERAL MANAGER,,E1610\nFire Fighter/EMS,PORTSMOUTH SHIPYARD,L1400\nRIVERVIEW TIRE & AUTO SERVICE,,T2400\nLibrarian,National Association of Home Builders,B2000\nCONSTRUCTION,CMC,J1100\nPRINCE GEORGE CENTER,,J5100\nPres & CEO,Center for Security Policy,Y4000\nPHYSICIAN,\"SUNY, DOWNSTATE\",H5150\nMD ( Gynecology ),Self employed,H1130\nROCKY MOUNTAIN PRODUCTIONS,,C2600\nCEO,Burger King Corporation,G2900\nFAMILY NURSE PRACTITIONER,HANDS ON MEDICINE/FAMILY NURSE PRAC,Y4000\nN W Q INVESTMENT,,F2100\nElementary Teacher,Holland Isd,X3500\nPHYSICIST,NASA,Z9500\nU S SENATE,,J5100\nGRAPHIC DESIGNER,NOT EMPLOYED,Y1000\nBusinessman,Integrated Utility Ctg Gp,B2000\nFABRI LAW FIRM,,K1000\nGM,Ebay,C5140\nPresident,\"Try-pas, Inc.\",Y4000\nINDIA WORLDWIDE MAGAZINE,,C1100\nDoctor,\"Douglas Women's Ctr.\",H1130\nENVIRONMENTAL CONSERVATION,THE OVEBROOK FOUNDATION,Y4000\nVP PUBLIC AFFAIRS,JOHN HANCOCK,F3100\nAttorney,SKWWC,Y4000\nATTO,\"LANIER, FORD, SHAVER & PAYNE P\",K1000\nFARMETCO INC,,Y4000\nTeacher,Pomona College,H5100\nCommunications manag,GoodCents Solutions,J7400\nCPA,4 LIFE/CPA,H4600\nFUNDRAISER,,E1120\nHOME SCHOOL MOM,,Y4000\nGARYS AUTOMOTIVE,,Y4000\nDIR. OF BLDG. FACILITIES,US AID,X3000\nNOT INDICATED,NONE,Y2000\n\"ANDERSON, MCCOY & ORTA\",,Y4000\nSELF EMPLOYED,,G4300\nBUSINESSMAN,PET SOURCE INCORPORATED,Y4000\nOwner,Southern Mortgage Brokers Inc.,F4600\nEnvironmental Co. Ex,Dobbs Environmental,E2000\nLIEMANDTS TOUR AND CONVENTION,,K1000\nWOMBLE CARLYLE S,,K1000\nVHA CENTRAL ATLANTIC,,H2100\nDirector Of Original,INFOSPACE,Y4000\nITALIAN AMERICAN DEM LEADERS,,J7500\nINFORMATION REQUESTED,PLAISANCE FARMERS,Y4000\nVP A,MATSON NAVIGATION COMPANY INC.,T6200\nGAIL INDUSTRIAL SERVICE CORP,,Y4000\nDoctor,Florida Back Institute,Y4000\n\"HORNTHALL, RILEY, ELLIS & MALAND, L\",,K1000\nCEO,AEA Investors,J1200\nPRESIDENT AND CEO,SNVC,Y4000\nVP OF FINANCE,T & L IRRIGATION,A4000\nAttorney,\"Kearney, Donovan & McGee\",K1000\nATTORNEY,ROBERT C. GILBERT P.A.,J5100\nPRESIDENT & CEO,FIRST INDIANA BANK,F1000\nENGINEER,MICROELECTRONICS TECHNOLOGY INC.,Y4000\nVICE PRESIDENT - CORPORATE COMMUNICATI,ALLIANZ LIFE NORTH AMERICA,F3400\nSurgeon,Springfield Clinic,H1130\nPRESIDENT,OPTIMUS URGENT CARE,Y4000\nEXECUTIVE,HEALTHCARE INFORMATION & MANAGEMENT SY,Y4000\nCUSTOMER SERVICE REP,APSCO,Y4000\nCROWDER CONSTRUCTION,,B1000\n\"Managerial, Misc.\",Engineering Aggregates Corp.,B5100\nADVERTISING,WORKSHOP CREATIVE,Z9500\nField Assistant,Senator Mirch McConnell,Y4000\nRE/MAX EAST/WEST OF THE RIVER/TREAS,,Y4000\nATTORNEY,VESTA CORPORATION,F4000\nPRESIDENT,CASTLE FIRE PROTECTION,Y4000\nCITY OF DENVER,COLORADO COLLEGE,H5100\nBEST EFFORT,,C5140\nAttorney,Mehri & Skalet,J1200\nExecutive,JBS International Inc,G5000\nCHRIS ROSE PRODUCTIONS,,Y4000\nSibcy Cline,,F4200\nUN,TRANPORT WORKERS UNION LOCAL 100,LT600\nPresident,CAPITOL LEGISLATIVE SOLUTIONS,K2000\nOWNER,BODIN CONCRETE COMPANY,B5100\nJOY volunteer,Self employed,Y4000\nCUSTOMER SERVICE REPRENSTATIVE,FIFTH RIXSON,Y4000\nEXECUTIVE,DREW ESTATE LLC,A1300\nKEITH SPORTSWEAR INTL,,M3100\nMANAGER,NORTHRUP GRUMMAN CORP,D5000\nEXECUTIVE,DP BUREAU,G5200\nCONTROLLER,SGCPC,A1200\nSALES,TRENDNET INC./SALES,Y4000\nATTORNEY,\"WHITEFORD, TAYLOR, ET.AL.\",K1000\nreal estate,Fercodini Properties,F4200\nCOMPLETE VIDEO SERVICES,,Y4000\nExecutive,\"GBM, Inc.\",Y4000\nORCHARD OWNER,SELF-EMPLOYED,Y4000\nLAWRENCE CHIROPRACTIC CLINIC,,H1500\nEnvironmental Scientist,\"Bioremediation Cleanup, Inc\",Y4000\nFurniture Manufacturer,\"Jenson Custom Furniture, Inc.\",M4100\nAssociate Professor,University of Virginia,H5100\nSTEVEN D BELL AND CO,,F4500\nCOSTEP,,G1000\nDIPLOMATE ABIM,SAI MEDICAL CENTER,Y4000\nSENIOR PARTNER,PATTON BOGGS,K1000\nOwner,Paul T Dehoff Atty.,K1000\nFARMER,KILPATRICK CANE & CATTLE,A3000\nEXECUTIVE,HEALTH DATA SERVICES INC.,H0000\n\"Bartlett, Bendall &\",Self Employed,Y4000\nFISHER RANCH,,A0000\nFundraiser,Intl AIDS Vaccine,Y4000\nBUSI,SHEET METAL WORKERS LOCAL NO 1,LB100\nMANAGER,STAR TOYOTA,T2310\nSURETY BOND PRODUCER,EDWARD J POST COMPANY INC,Y4000\nBUSINESS OWNER,CONSOLIDATED CONTAINER CO LLC,Y4000\nBOOK,COLDWELL BANKER WATERMAN REALT,F4200\nST. LOUIS HONDA/PRESIDENT/OWNER,,T2310\nREALTOR,COLDWELL BANKER PROPERTIES,F4200\nCOLORADO STATE BANK,,F1100\nExecutive Director,Oklahoma City Chamber,Y4000\nDIRECTOR,SANGITA,Y4000\nENGINEER,\"GEO/ENVIRONMENTAL ASSOC., INC.\",Y4000\nAttorney,Crawford Law Firm,K1000\nBUSINESS,NORTH CENTRAL EQUITY LLC,F2100\nREAL ESTATE DEVELOPER,THE RICHMAN GROUP DEVELOPMENT COMPANY,F4000\nCHAIRMAN & CEO,ENTRAVISION COMMUNICATIONS,C2100\nPRESIDENT,CITIZENS FEDERAL S&L ASSOC. OF BELLEFO,F1100\nCOASTAL ORTHOPEDIC ASSOC,,H1130\nChairman and CEO,\"Grady White Boats, Inc\",Y4000\nREAL,\"PRIME PROPERTY INVESTORS, LTD\",J5100\nTHE BANK OF JACKSON,,F1100\nAttorney,Celanese Intl. Corp.,Y4000\nReal Estate,Sentinel Corporation,Y4000\nN/A/RETIRED FIREFIGHTER,,X1200\nAdministrator,OHSU,H5100\nOwner,Torrey Farms,A1000\nPrincipal,Robert D Kahn & Co,Y4000\nCHIEF EXECUTIVE OFFICER,\"BURGESS & NIPLE, INC\",B4000\nREAL ESTAT,MILLER REALTY ASSOCIATES,F4200\nSALES,MILLER COORS,G2810\nLABO,MOTOR FREIGHT CARRIERS ASSSOC.,T3100\nCHARACTER BUSINESS CONSULTANT,,Y4000\nPENTAGON DEPT OF DEFENSE,,X5000\nVICE PRESIDENT,MICROSOFT,C5100\nLAWYER,\"SCHWEBE, WILLIAMSON & WYETT\",J1200\nAttorney,City Of Alexandria,X3000\nphysician,Occupational Health Associates,Y4000\nCAROLINA-CONDREY AGENCY NORTHWEST,,Y4000\nBUSINESS PERSON,BARKER STEEL LLC,M2100\nRESEARCH ASSOCIA,ADVISORY BOARD CO.,H3000\nVice President/Secre,\"Bemiss Distributing Co., Inc.\",G2850\nFARMER,SMITHEAL FARMS,Y4000\nDECAMP,,Y4000\n\"FRIED, FRANK, HARRIS, SHIVER ET AL\",,K1000\nMANAGING PARTNER,US INVESTMENTS GROUP,F7000\nARCHITECT,STEVEN HARRIS ARCHITECTS,J1200\nPHYSIC,WACO GASTROENTEROLOGY ASSOC.,H1100\nForester,U.S.D.A. - Forest Service,X3000\nC&G DISTRIBUTING CO./CEO/PRESIDENT,,Y4000\nPUBLISHING EXECUTIVE,RODALE INC.,C1100\nField Service Direct,IFT,Y4000\nSURGICAL ONCOLOGIST,HUDSON VALLEY MEDICAL GROUP/SURGICA,Y4000\nMONTEL INC,,Y4000\nNOVA MACHINE PRODUCT,NOVA MACHINE PRODUCTS CORP,Y4000\nDIRECTOR OF BASKETBALL,UNIV OF MN,H5100\nProgramming Manager,Connecticut Innovations,Y4000\nSVP,INVACARE,H4100\nOFFICE MANAGER,\"CORONATION PEAK RANCHES, INC.\",A3000\nPresident,American Land,Y4000\nHEALTH CARE MANAGER,AMERICA SERVICE GROUP/HEALTH CARE M,H3000\nGEROUTOLOGIST,UNIVERSITY OF MASSACHUSETTES BOSTO,H5100\nPRESIDENT,MANHATTAN DRUG CO.,Y4000\nRetired-Army Wife,Not Employed,X1200\n66206,DELTA DENTAL,F3200\nREAL ESTATE DEVELOPER,GENERAL GROWTH PROPERTIES INC.,F4100\nChairman,Viejas Tribal Govenrment,G6550\nATTORNEY,\"CBS BROADCASTING, INC.\",C2300\nAttorney,\"Kleiner, Perkins, Caufield, & Byers\",F2500\nPRIVAT AND REGAN,,Y4000\nPHYSICIAN,NORTHER PHYSICIANS ORGANIZATIO,H1100\nExecutive,Capital Realtors,J5100\nPRESIDENT,AMERICAN DESIGN COATINGS,J1100\nBusinessman,Snow Time Inc,T9300\nORTHOPAEDIC SURGEON,\"ORTHOWEST, PC\",H1130\nDESIGNATED REALTOR,ALAIN PINEL REALTORS,F4200\nConsultant,Carlson Communications,Y4000\nREAL ESTATE,MAZZA REAL ESTATE,F4000\n\"CARSTENS, INC\",,H4100\nMANAGER,SOUTHERN GARDEN CITRUS,A1400\nATTORNEY,AARP,J7200\nHomemaker,N/A,K2100\nAudiologist,Advanced Hearing Solutions Of,H1700\nReal Estate Developer,Warren Norman & Company,F4100\nSOFTWARE,MELLMO INC.,Y4000\nPHILANTHROPIST,,F7000\nPROGRAM COORDINATOR,UNIVERSITY OF TEXAS AT AUSTIN,H5100\nOWNER,GRANBERRY PROPERTIES,F4000\nPHYSICIAN,DREXEL UNIV COLLEGE OF MEDICINE,H5150\nKLETT ROONEY LIEBER SCHORLING,,K2000\nMEMBER,JEDESSA PARTNERS/MEMBER,Y4000\nDIRECTOR,CCAG,Z9500\nAero Space Advisor,Self,Z9500\nPROJEC,THE ARC OF THE UNITED STATES,Y4000\nJournalist,DC 37 Afscme Afl-Cio,Z9500\nLandscape Architect,\"Elam, Todd, d'Ambrosi, PA\",J7400\n\"COMPUTING DEVICES INT'L\",,C5100\nCEO,Evo Trans Corp,Y4000\nACCOUNTANT,EISNER LLP,Y4000\nBUSINESS OWNER,NATURAL SOLUTIONS,Y4000\nSOFTWARE ENGINEER,FOUNDRY INTERACTIVE,Y4000\nINSURMARK,,F1100\nATTORNEY,PEPPER HAMILTON LLP,J1200\nANDERSON ELECTRIC,,B3200\nCEO,FOUR FOODS GROUP,Y4000\nCHAIRM,FRIEDE GOLDMAN INTERNATIONAL,Y4000\nSALES,PREMIER GROUP,H2000\nINSURANCE AGENT,INFORMATION REQUESTED PER BEST EFFORTS,G0000\nOWNER,WM. G. MOORE & SON,Y4000\nSpecial Counsel to t,NJ Board of Public Utilities,Y4000\nACCURATE AIR CONO INC,,Y4000\nUR,\"EASTERN UROLOGY ASSOCIATES, P.A.\",H1130\nITC HOLDING COMPANY,,C4100\nVice President,Ctx Mortgage,F4600\nTeacher,Perspectives Math and Science Academy,Y4000\nInsurance,\"Rogers, Gunter, Vaughn Insurance, Inc.\",F3100\nINVESTOR,PEACHTREE PARTNERS,Z9500\nACCOUNT VICE PRESIDENT,UBS,F2100\nDIRECTOR DIABETES PROGRAM,RCG,H3000\nHead Start Teacher,\"Northern AZ Council of Gov't.\",Y4000\nFINANCE,KLH CAPITAL,F0000\nSENIOR VP,CAPITAL MANAGEMENT,F0000\nOwner,\"Universal Bookbindery, Inc\",C1100\nSALES REP.,ALABAMA CONTRACT SALES,M4100\nINVESTMENT ADVISOR,\"TODD HILL CAPITAL, L.L.C.\",Y4000\nATTOR,AMERICAN FAMILY MUT. INS. CO.,F3100\nSHEFFIELD MANAGEMENT CORP,,Y4000\nDoctor,Creighton Univ. Medical Center,H1100\nFERRELL & SCHULTZ,,Y4000\nPAVEMENT SEALANTS CORP,,B5100\nCARIBE GENERAL CONTRACTORS,,B1000\nEXEC,THE HAWTHORN HOTEL,T9100\nCEO,Payne Investments,F7000\nPresident & CEO,Eaton Metal Products Company LLC,M5000\nEXECUTIVE VP,CHAMPION ENTERTAINMENT,Y4000\nExecutive,Ce De Candy,G2200\nRUSSELL REALTY,,F4200\nchemist,syntech Labs Inc,Y4000\nTALLEY DEFENSE SYSTEMS/DIR OF CUST/,,D8000\nOWNER,TITAN TRANFER SHOP,Y4000\nSUPPORT COORDINATOR,SELF-EMPLOYED/SUPPORT COORDINATOR,G0000\nCEO,B&K HOME MEDICAL SERVICES,H4100\nCONSULTANT,GCW,Y4000\nAMERICAN FACTORS CORP,,Y4000\nMECO METAL BOX MANUF CO,,Y4000\nDR. SIDON DENTAL PRACTICE,,H1400\nEXEC. VP SPIRITS AMERICA,SWS AMERICA/EXEC. VP SPIRITS AMERIC,G2850\nSE,BLAIN SUPPLY,Y4000\nEXECUTIVE,YATES CONSTRUCTION,B1500\nAttorney,Hope Hospice,H2200\nCHANCEL,CITY UNIVERSITY OF NEW YORK,H5100\nATTORNEY,\"JOSHUA TEVEROW, ESQ., LTD.\",Y4000\nLIBRARIAN,\"ALSTON & BIRD, LLP\",K1000\nAttorney,Ruth E. Bernstein Law Firm,K1100\nHOMEMAKER NOT EMPLOYED,NONE,Z9500\nHOUSEWIFE,WIDOW,Y1000\nAgency Executive,WA Higher Ed Coordinating Board,Y4000\nCEO,Marketing Management Corporati,M3000\nSpace Consultant,Self Employed,G0000\nAdministrator,\"Eurocapital Inversores, SL\",Y4000\nReal Estate Appraise,Self employed,G0000\nMOSS DRUG,,G4900\nMETROPOLITAN MEDICAL,,H0000\nADVERTISING,MARKETING ARCHITECTS,B4200\nUrologist,\"Brian M Keuer, MD\",H1130\nCFO,Harrison College,H5300\nSUPERIOR UTILITIES CO INC,,Y4000\nOwner,Canagie Management & Development Corp,Y4000\nPRESIDENT,NORTHSTAR CONCRETE CORPORATION,B5100\nSECRETARY/TREASURER,SUPAC,Y4000\nATTORNEY,RADNER & RADNER PC,K1000\nAttorney,Sands Anderson,Y4000\n.Information Request,.Information Requested,X3000\nOwner,\"Sargent's Court Reporting Serv\",K0000\nSENIOR VICE PRESID,NORTH SHORE BANK,F1200\nAcademic,University of Colorado,J1200\nLIBRARIAN,NEW YORK UNIVERSITY,H5100\nVP FINAN,OCCIDENTAL OIL & GAS CORP.,Z9500\nASSOCIATE PU,THE HOLLYWOOD REPORTER,C1100\nPhysician,Hossein Alimadadian MD,H1100\nSales/Marketing,Requested,G0000\nConsultant,\"The Sentinel HS Group, LLC\",J1200\nPresident,NAHB Research Center,B2000\nATTORN,LAW OFFICES OF NATE G. KRAUT,K1000\nAMOS LOVITT & TOUCHE INSURANCE,,F3100\nVEISION CAPITAL LLC,,F0000\nBROPHY & REILLY,,Y4000\nEXECUTI,TRAVELERS INSURANCE COMPANY,F3400\nFRUIT BROKER,CHAPMAN FRUIT CO,A1400\nEXECUTIVE,\"BPI TECHNOLOGY, INC.\",G2300\nEngineer,Vannoy & Associates,Y4000\nPARTNER,ROBINSON FAMILY PARTNERS,Y4000\nExecutive,Clipper Navigation Inc.,T9400\nPT,Colby Community College,H1700\nSELIGMAN & ASSOC,,F4100\nCHILD DAY CARE OWNER,SELF-EMPLOYED,J1200\nCA STATE BOARD OF EQUAL,,X3000\nEXECUTIVE CACH,THEWEALTHSOURCE,Y4000\n,INDIANTRAILCHIROPRACTIC & REHAB P.,H1500\nOWNER,NEW MILLENIUM CAPITAL LTD.,Y4000\nSENIOR AN,SANFORD C. BERNSTEIN & CO,F2100\nPresident,Cystinosis Research Foundation,F4500\nZIP-O-LOG MILLS,,A5000\nVP DGC & DIVISION COUNSEL CPG,NISOURCE CORPORATE SERVICES CO,E1620\nProfessor,Russell Sage College,H1710\nSENIOR PARTNER,LABATON-SUCHAROW,K1100\nChief Executive Officer,Cape Medical Supply,Y4000\nPHY AMERICA,,Y4000\nElectrician,I.B.E.W. Local #569,LC150\nBUSINESS DEV.,LADCO,Y4000\nWILKINSON CO,,Y4000\nPRESIDENT,DELTA MUSIC,Y4000\nBOB WALSH & ASSOC,,Y4000\nPresident,\"Handwerker-Winburne, Inc\",A1100\nOWNER,RENT-A-CENTER,G5300\nGLOUCESTER HOUSE REST,,Y4000\nRADIATION O,\"CANCER CARE GROUP, P.C.\",H1130\nCPA,TIMMONS ADVISORS LLC.,Y4000\nHAROLD WILLIAMS ASSOC,,Y4000\nEXECUTIVE,WINNER AND ASSOCIATES,G5210\nVice President,K.P. Kauffman Co. Inc,E1120\nSALES CONSULTANT,AXCET HR,Y4000\nREAL ESTATE,GREENHILL GROUP,Y4000\nAttorney,Intl. Association Of Amusement Parks,K2000\nPRODUCT MARKETING,OPEN TEXT INC,Y4000\nOBERMAN TIVOLI MILLER LTD,,J1200\nDIRECTOR SALES,MORNINGSTAR FOODS,A2000\nC. E. O.,\"Lancaster Company, Inc.\",Y4000\nSPLICING TECHNICIAN,AT&T WEST INC.,Y4000\nCLONTECH INC,,J7500\nASSOCIATE LAB DIRECTOR,UT-BATTELLE,D4000\nREGISTERED DENTAL HYGIENIST,\"STEPHANIE KAHLE, DDS\",H1400\nPHYS,SHAWNEE MISSION MEDICAL CENTER,Z9500\nAttorney General,STATE OF TENNESSEE,X3000\nMILITARY CONSULTANT,WESTAR ADG,Y4000\nCattle Feeder,SELF-EMPLOYED,A3300\nPRESIDENT/CEO,WORLDWIDE INFORMATION NETWORK SYSTE,C5130\nOWNER,\"MR. ED'S OYSTER BAR & FISH HOUSE\",Y4000\nlawyer,unemployed,Y1000\nVP  Technical Ops and Training,Suddenlink Communications,C2200\nOWNER/CEO,S&J MAINTENANCE CO,Y4000\nCo-Op Organizer,Self,Y4000\n\"CHIEF SCIENTIST, VICE PRESIDENT OF RES\",RENAISSANCE TECHNOLOGIES,J2100\nPROGRAM MANAGER,\"MICRON TECHNOLOGY, INC.\",C5110\nPRESIDENT,LIM COLLEGE,Y4000\nCONSTRUCTION MA,S.B.S. CONSTRUCTION,B1500\nProfessor,STANFORD UNIV,H5100\nVice President,NEAL T. BAKER ENTERPRISES,G5000\nRETIRED,RETIRED,G5000\nCONTRACTOR,RAWLINGS MECHANICAL CORP.,Y4000\nAttorney,\"Porter & Hedges, Llp\",K1000\n\"Vice-President, Co-Owner\",\"Mid-Ohio Ambulance Service, Inc\",Y4000\nConsultant,Mid Continent Ventures,F2500\nHESS ASSOCIATES,,Y4000\nORTHOPAEDIC SURGEON,\"RAVEN ORTHOPAEDICS, INC\",H1130\nExecutive,Ranger Capital Management,F0000\nGLENN BUICK,,T2300\nU.S. SENATOR,USA,J1200\nOWNER,WENMARR MGMT. CO. LLC,Y4000\nPRESIDENT,CAMSAN INC.,Y4000\nUnion Carpenter,E & L Construction Grp,B1500\nSALES,\"NIKE, INC.\",Z9500\nBANKER,FIRST FEDERAL,F1000\nRADIOLOGY ASS OF SAN,,J1100\nPRESIDENT,\"AIR TECH COOLING, INC.\",Y4000\nPresident,\"T H Mfg, Inc\",G1100\nTAX CONSULTANT,URBAN SWIRSKI & ASSOCIATES,K2000\nPHYSICIAN,\"NJ SPINE GROUP, LLC\",H1000\nRETIRED,GOD,Z9500\nPublisher,Weiss Research Inc,F5500\nPresident,\"Lewis Bear Co, The\",G2850\nPIZZA HUT OF SOUTHERN WI INC,,G2900\nManager of Comm,IBM,C5100\nMCPS,,Y4000\nnone,retired psychiatrist,J1200\nEXECUTIVE VI,R & R MARKETING L.L.C.,G2850\nAttorney,Cooper Shifman,J1200\nEducational Sales,Universal Technical Institute,H5200\nPresident and CEO,Grundy Bank,F1100\nDean,OSU,H5100\nPresident,Zappa Records,Z9500\nAREA BUSINESS MANAGER,ALLERGAN,H4300\nSchool Principal,Federal Hocking High School,Z9500\nCEO,JAPS OLSON CO,Y4000\nSOFTWARE ENG,THERMO FISHER/SOFTWARE ENG,M9000\nPHYSICIAN,UNIVERSITY OF TENNESSEE,J1100\nVETERANS ADMINISTRATION,,J7400\nTOTAL SERVICE DEVELOPMENT LLC,,B2000\nENGINEER,NOVUS ENERGY PARTNERS,J1200\nPRESIDENT,NEW CASTLE SCHOOL TRADE,Y4000\nPRESIDEN,TOTAL CELLUAR TECHNOLOGIES,Y4000\nPhysician,Family Physicians Group,J1200\nSTATE PUBLIC ADMIN DEPT OF ATTY GEN,,X3200\nScientist,\"Neogenix Oncology, Inc.\",H1130\nChief of Staff,Rep Wexler,X3000\nA1 TECHNICAL SERVICE INC.,,Y4000\nPRESIDENT,TOM BOLAND FORD,T2300\nLAZER GRAPHIX,,Y4000\nRANCHER AND INVESTOR,SELF-EMPLOYED,A3000\nARKIN SCHAFFER & SUPIRO,,K1000\nPhysician,Spinal Specialties,Y4000\nPRUDENTIAL-BACHE CAPITAL FUNDING,,F2100\nConsultant,Estrella & Assoc,Y4000\nGROLOGIST,,E1000\nCHIROPRACTOR,Self,H1500\nDiagnostic Radiologi,St Elizabeth Hospital,H1130\nFounder/DirectorEmeritus,Alza Corporation,H4300\n\"VP, Govt Business\",Raytheon,D3000\nPHYSICIAN,PEE DEE CARDIOLOGY ASSOCIATES,H1130\nNON PROFIT MANA,SOLIDAGO FOUNDATION,Y4000\nCONGRESSMAN,,Z4100\nPHYSICIST,SETI INSTITUTE,H5100\nPHYSICIAN,\"ROGER T. BRILL MD, FACS, PA\",H1100\nMANAGING DIRECTOR,IPM,J5100\nINSURANCE,TALBOT INSURANCE SERVICE,F3100\nFIRST FEDERAL BANK,,F1200\nOwner,Red Barn,Y4000\narborist,retired,X1200\nMD,UAMS,Z9500\nMANAGER,SELF,J7120\nAttorney,\"Quarles & Brady, LLP\",K1200\nEXECUTIVE VI,COLUMBUS PROPERTIES LP,F4100\nCOMPUTER PROGRAMMER,UNIVERSITY OF CHICAGO,H5100\nPARTNER,READ PROPERTY GROUP,F4100\nPrincipal,Corporate Air,Y4000\nCOMMUNICATIONS DIRECTOR,JOHN SNOW INC.,Y4000\nExecutive,Kushner Locke,Z9500\n\"Vice President, Congressional Affairs\",National Mining Association,E1200\nPR,\"KENOSHA BEEF INTERNATIONAL, LTD.\",G2300\nPHYSICIST,JDS UNIPHASE CORPORATION (JDSU),Y4000\nAENTA HEALTH PLAN,,F3100\nAttorney,\"'Kelly, Drye&amp;Warren llp'\",K1000\nSCI CORP,ENVIRO,Y4000\nSENIOR,BANK OF AMERICA CORPORATION,F1100\nORANGE & BLUE DISTRIBUTING CO INC,,G2850\nCEO,BARR & BARR INC.,Y4000\nOwner,Bowman Gas Co,E1190\nATTORNEY,BLITZ BARDGETT & DEUTSCH,K1000\nVice President,\"Consoer Townsend Envirodyne Engineers,\",B4000\nDoctor,Island Spine and Sports,Y4000\nSOFTWARE PRODUCT COMPANY,,C5120\nPhysician,US Public Health Service,X3000\nINSTRUCTIONAL SPECIALIST,GUILFORD CO SCHOOLS,L1300\nCEO,NIC,Y4000\nMARK LINE IND,,B2400\nAMER GULF SHIPPING,,T6200\nPARTNER,TRAXI LLC,Y4000\nOBRIEN & HICKS,,Y4000\nDeveloper,McArthur Glen,Y4000\nPhysician,Pavilion Family Physician,Y4000\nU S GOV,,J1200\nMANUFACTURING,BROWN STOVE WORKS INC,Y4000\nreceptionist,Washington Christian Academy,Y4000\nRETIRED,INTERSTATE GLASS/RETIRED,X1200\nFEDERAL,DEPT. OF DEFENSE,X5000\nEASTERN HEALTH SYSTEM INC,,H2100\nEmergency Physician,Plaza Med Ctr of Ft Worth,H1100\nSenior Vice Presiden,New York Hospital Queens,H2100\nEDUCATIONAL CONSULTANT,OAKLAND SCHOOLS,X3500\nFLORENCE CITY EXECUTIVE,NBSC,F1100\nCHEM ENG.,NOT EMPLOYED,J1200\nBUILDER,STALLO CONSTRUCTION,B1500\nPhysical Therapist,,H1700\nManager,Cerner Corp,C5120\nREAL ESTATE DEVELOPER,\"BUCCINI/POLLIN GROUP, INC\",Y4000\nSTAGE  MANAGER,SELF,Z9500\n\"RAYMOND JAMES FINANCIAL SERVICES, I\",,F2100\nDepartment Chair,UW Department of Family Medicine,Y4000\nBanker,TD BankNorth,F1000\nCATO OIL INC,,E1160\nPHARMACIST,SETON MEDICAL CENTER,H2100\nPHYSICIAN,DR. LYNN J. RAMIREZ,Y4000\nJ D KISER INC,,Y4000\nGOVERNMENT AFFAIRS,CN,Y4000\nINSURANCE SALES,BRADDOCK INS AGCY INC,Y4000\nMANAGER,MURPHY BROWN,A3000\nHEALTH SAL,FORTIS INSURANCE COMPANY,F3100\nMCWHORTER PROPETIES,,B1500\nEXECUTIVE VICE PRESIDENT & CFO,\"REVLON, INC.\",M3300\nPresident,\"Loeb & Associates, LLC\",Y4000\nMANAGER,INTERPOWER CORPORATION,Y4000\nGeneral Manager,Rent-all Inc.,G5300\nFLOW GENERAL,,Y4000\nPresident/CEO,SAFTI,Y4000\n\"Teacher, Department\",Kansas City MO School District,Z9500\nOMELET KING,,G2900\nDEESIDE TRADING,,Y4000\nOWNER,MCINTYRE MANAGEMENT CORP.,Y4000\nMayor,\"Page, AZ\",Y4000\nFLOYD AND BAXTER AMUSEMENTS,,Y4000\nPRESIDENT,\"LODESTAR MEDIATION, LLC\",Y4000\nUNSWORTH PRPERTIES INC,,Y4000\nPHYSICIAN,\"STEVEN TRADONSKY, MD\",H1100\nGENERAL MANAGER,CLEVELAND INDIANS,G6400\nCLEANING,INFORMATION REQUESTED,G5500\nACCOUNTING ASSIST,STATE OF MICHIGAN,J5400\nTRINITY SEAFOODS,,Y4000\nCPA,CONSOLIDATED CREDIT SERVICES,Y4000\nVENTURE,GREYLOCK MANAGEMENT,F7000\nYK TRADING,,Y4000\nLETTER SENT,INFORMATION REQUEST,H1750\nAFFILIATED ANESTHESIOL,,H1130\nExecutive,F. B. Clemore & Company,Y4000\nPresident/CEO,Empire Merchants North,G2850\nSIERRA FOUNDATION,,X4100\nWlup FM Senior AE,Emmis Communications,C2100\n\"VICE PRESIDENT, OPERATIONS\",\"BLATTNER ENERGY, INC.\",E1500\nPRESIDENT,MAGNUM VENUS PLASTECH,J1100\nGASTROENTEROLOGIST,DIGESTIVE DISEASE SPECIALISTS INC.,Y4000\nVICE PRESIDENT CO,ALTRIA GROUP INC.,A1300\nATTORNEY,COHEN COOPER ESTEP & ALLEN,Y4000\ntv & Film Producer and Director,Self employed,C2400\nAttorney,Isda,Y4000\nFAYETTEVILLE FAMILY PRACTICE CENTER,,H1100\nOwner,G. T Plumbing,B3400\nIT SERVICES MANAGER,NOT EMPLOYED,Y1000\nDENTIST,NOVA SOUTHEASTERN UNIVERSITY,H5100\nPHYSICIAN,POMERANCE EYE CENTER,Y4000\nC.E.O.,THE SIERRA GROUP INC.,Y4000\nCHAIRMAN,COMMUNICATIONS EQUITY ASSOCIATES,F2300\nPRESIDENT,\"ADVANTAGE ASSOCIATES, INC.\",K2000\nCIVI,KNIK ARM BRIDGE & TOLL AUTHORI,T0000\nPRESIDENT TIME WA,TIME WARNER CABLE,C2200\nSALES,HANDCRAFT MFG.,Y4000\nECONOMIST,LAFFER ASSOCIATES,F2100\nMANAGER,\"AXIOM ELECTRONICS, LLC\",Y4000\nPRESIDENT,W.B. MOORE COMPANY OF CHARLOTTE,Y4000\nOIL & GAS EXPLORATIO,KINNEY OIL COMPANY,E1150\nCOURTER COMPUTER,,C5100\nANGONES HUNTER ET AL,,K1000\nPRESIDENT,STRATEGIC INVESTMENTS,F0000\nDIRECTOR,URBAN REDEVELOPMENT AUTHORITY,Y4000\nACCOUNTANT,UNIVERSITY OF GEORGIA,H5100\nOWNER,REMINGTON ASSOC,Y4000\nEASTERN INDS,,Y4000\nATTORN,THRASHER WHITLEY HAMPTON & M,K1000\nATTORNEY,ZACK SMITH LTD,Y4000\nCA FINANCIAL SERVICE ASSN,,J7300\nIBM BLDG,,T9100\nManufacturer,Drew Estate LLC,A1300\nANESTHESIOLOGIST,VAMC,H1130\nPhysician,\"America's Blood Cent\",Y4000\nOwner,Maurice`s Lawn & Landscape Lighting,B3600\nVICE PRESIDENT,NORTH HIGHLAND,Y4000\nPhysician,Riken pachero,Y4000\nPRESIDENT & OWNER,BARANCO PONTIAC,T2300\n\"CYNDELLE'S\",,Y4000\n,\"KIMMICH'S PAINTING & WALLCOVERINGS\",B0500\nEXECU,BANK OF AMERICA MERRILL LYNCH,J2200\nBusiness,\"Gridpoint, Inc\",E1500\nPRINCIPAL,OR COLAN ASSOC,Y4000\nSENIOR MANAGING DIRECTOR,GSO CAPITAL PARTNERS LP,F2700\nHOWARD HOFFMAN DDS PC,,H1400\nOWNER,\"ANALYTICAL INDUSTRIES, INC.\",Y4000\nOWNER,ADVANCE SPECIALTY TRAVEL,Y4000\nLUM DANZIS DRASCO POSITAN KLEINBERG,,J1100\nEnvironmental Consul,Bergeson & Campbell,Y4000\nGENERAL MANAGER,\"RABIH TRADE, INC.\",Y4000\nCOMMONWEALTH UNITED MORTGAGE,,F4600\nEngineer,Modis Professional Services,Y4000\nWAYNE COUNTY EXECUTIVE OFFICE,,C2100\nPresident / CEO,\"Shelco, Inc.\",Y4000\nANALYST,US GOVT,X5000\nSALES,DOLLAR DEVELOPMENT COMPANY,T2500\nSOFTWARE ENGINEER,ENDORSE INC.,Y4000\nPATHOLOGISTS ASSOCIATED,,H1130\nVP/PARTNER,DTS LP,Y4000\n315 N HIGH ST ASSOCIATES,,Y4000\nSALES,PARAGON PRINTING,Y4000\nRetired Educator,Information Requested,X1200\nEXECUTIVE,AGT INTERNATIONAL,Y4000\nBanker,ING,F3100\nPHYSICIAN,VA FT. HARRISON,Y4000\nInstructor,Kansas State University,H5100\nATTORNEY,SHEPPARD&MULLIN,K1000\nORGANIZATION DEVELOPMENT,,Y4000\nPEGASUS GOLD MINE,,M4000\nATTORNEY,KOSKOFF KOSKOFF & BREDER,K1000\nTEACHER,ISD 477,Y4000\nFINANCE DIREC,FRIENDS OF MAX BAUCUS,K2000\nCEO,DESE CORP.,Y4000\nExecutive Vice Presi,Information Requested,T1500\nEXECUTI,DRILLCO NATIONAL GROUP INC.,Y4000\nCLAREMONT CONSTRUCTION GROUP,,B1500\nBUISNESS OWNER,SELF-EMPLOYED,F4500\nSTARWOOD CORPORATION,,Y4000\nGERMER & GERTZ,,Y4000\nDUTCHESS QUARRY & SUPPLY,,B5100\nlawyer,Self-Employed,F5100\nTrial Lawyer,Messina Bulzomi Christensen,K1000\nBUSINESS EXEC.,ANGELO INVESTMENT CO. PARTNERSHIP,F7000\nU. OF SOUTH ALABAMA,,H5100\nTEACH,FAIRLESS LOCAL BOARD OF EDUC.,X3500\nRealtor,Libby Allen Realty,F4200\nEXECUTIVE,PINNACLE WEST,E1600\nPresident,The Clay City Banking Company,F1100\nOWNER,PRT,Y4000\nCHIEF OF RELATIONSHIP DEVELOPMENT,TRANZACT TECHNOLOGIES,Y4000\nBanking,Firstar Banks,Y4000\nVICE PRESIDENT - CONSULTING,\"ASTRON INTERNATIONAL, INC.\",Y4000\nHAWKINS & CO,,Y4000\nCPA,MARKET SPACE FINANCIAL,Y4000\nFinancial Advisor,\"Northwestern Mutual, Steven M Carter,\",F3100\nBONAFIDE READY MIX,,B5100\nManager,Corem Rose,Y4000\nCEO,DAN D. INC.,Y4000\nMARMET CLINIC,,H1100\nPRESIDENT,\"UTC POWER, INC.\",E1500\nCONSULTANT,JAMES FRENCH/CONSULTANT,Y4000\nPERFORMANCE LABS INC,,G4600\nENVIRONMENTAL SERVICES,INFORMATION REQUESTED PER BEST EFFORTS,Y4000\nTHE RYLAND GRP,,Y4000\nPRESIDENT,ORDINARY PEOPLE FOUNDATION,Z9500\nPRESIDENT,ROGERS BROTHERS CO. INC.,Y4000\nVice President,Pessolano Development Grp. Inc.,Y4000\nINSURANCE BRO,PARK FAMILY INSURANCE,F3000\nBUILDER,MONUAN CO.,Y4000\nMANANA GAS,,Y4000\nINDEPENDENT INS AGENTS OF AMERICA,,F3100\nGIBSON MCASKILL,,Y4000\nExecutive,Dorma Group North America,Y4000\nMANAGING PARTNER,IETAN CONSULTING,K2000\nROBERT WADINGTON,,Y4000\nCEO,SENRYO TECHNOLOGIES/CEO,Y4000\nWESTFALL-STEVEFORE COMPANY,,T6000\nDIRECTOR,THE LIEN RESOLUTION GROUP,Y4000\nGENERAL MANAGER,OCEANIC TIME WARNER MEDIA,Y4000\nBANKER,SLOCOMB NATIONAL BANK,F1100\nPhysician,Clinic for Women,F1100\nOWNER,OREGON TRACTOR AND EQUIPMENT,A4200\nMCFERRIN ENGINEERING & MANUFACTURIN,,G1100\nDIRECTOR OF BU,CASSIDY & ASSOCIATES,K2000\nInsurance Broker,\"BB&T - Iler, Wall & Shonter\",F3100\nManager,Ret.,X1200\nGM,NOBEL OIL LTD,Y4000\nMIKE MURPHY MEDIA,,Y4000\nANDALEX GROUP,,F4500\nFREELANCE ACTOR MSICIAN,,G6000\nPresident,Baugher Motors Inc,T2300\nAttorney,\"Kruglaik, Wilkins, etc.\",K1000\nPhysician,Dermatology Specialists,H1130\nEngineer,RFA,J1200\nHOSP ADMIN/STATE TRO,MA STATE TROOPERS,Y4000\nPRESIDENT,RAPOPORT FOUNDATION,J1200\nINVESTMENT,GC ANERSON PARTNERS LLC,Y4000\nEXECUTIVE,BRISTOL TECHNOLOGY,Y4000\n\"ROSE, KLEIN & MARIES\",,K1000\nATTORNEY,CAMNER LIPSITZ & POLLER,K1000\nAFRICAN ART DEALER,YEBO AFRICAN ART,G4600\nChemical Engineer,\"Flexsys America, LP\",M1000\nInsurance Clerk,Boise Cascade Corporation,A5200\nChief Executive Offi,Carnegie Tri-County Municipal Hospital,H2100\nPRESI,APPLIED EDUCATIONAL SYSTEMSIN,Y4000\nCertified Financial Planner,Self-Employed,F5500\nPOLITICAL CONSULTING,BARKLAGE AND KNODELL,Y4000\nJOHNSON - ROSS CORPORATION,,Y4000\nBusiness Manager,Silicon Laboratories,C5000\nINVESTMENTS,,F2700\nReal Estate,\"Nick J. Hackstock, Inc.\",Y4000\nSR. VICE PRESIDENT & CFO,\"APOLLO GROUP, INC.\",H5300\nINFORMATION PENDING,,G5270\nPRESIDENT,\"UNITED UNDERWRITERS, INC.\",F3100\nOwner/founder/manage,Outsourcing Alliance Group,Y4000\n\"EVP, SALES\",OASIS OUTSOURCING,G5270\nSIEMENS,NONE,C5000\nEXECUTIVE,\"AVON PRODUCTS, INC.\",M3300\nFINANCIAL SERVICES,EVERCORE PARTNERS,F2100\nINVESTOR,ABC-PACIFIC CORP,F7000\nFINANCIAL ADVISOR,PNC CAPITAL ADVISORS,F1100\nHelein & Marashlian LLC,,K1000\nReal Estate,Diversifiep Develpoment Group,J6200\nPRESIDENT,ARKANSAS ONE INSURANCE AND INVESTMENTS,F3100\n\"Mg Dir,South Tier,Pub Sector\",\"Koch Industries, Inc.\",E1160\nFAMILY PHYSICIAN,TRI-COUNTY FAMILY PHYSICIANS,H1100\nOWNER,COPPER STATE WHOLESALE LUMBER,B5200\nOWNER,REGAN LTD. PARTNERSHIP,Y4000\nOWNER,LIFE ENHANCEMENT SYSTEMS,Y4000\nTeacher,St. Leonard School,H5100\nSap Materials Management,\"Air Products and Chemicals, Inc.\",M1000\nTHE HERITAGE GROUP,,M5100\nPresident,DCD Capital,Y4000\nFRISBIE MUG & STG,,T3100\nPRES.,WABASH VALLEY,A2300\nESTHETICIAN,HAND & STONE,Y4000\nBROWNSTEIN HYATTT & FARBER,,K1000\nCHAIRMAN,PALM HARBOR HOMES INC.,B2000\nPHYSICIAN,WILLIAM BEOUMONT HOSPITAL,H1100\nCRENCO FOOD STORES,,G2400\nINSURANCE,,H4300\nREF-CHEM,,M1000\nCommunity Affairs,AEG,G6400\nEDGEWOOD PROPERTIES,,J1200\nRsearch Scientist,Kerr Corp,Y4000\nSales Management,GlobalEnglish Corporation,Y4000\nCOOK NOELL TOLLEY BATES AND MIC,,K1000\nNEUROLOGIST,MGH PROFESSIONAL ORGANIZATION,H1130\nAIRPLANE MECHANIC,ELLIOT AVIATION,Y4000\nAttorney,Seaton Beck and Peters,K1000\nPresident,\"UMAC, Inc.\",Y4000\nAttorney,Fidelity National Information Services,Y4000\nSpanish teacher,Self-Employed,G0000\nAttorney,Stuart & Branigin LLP,J1200\nPHYSICIAN,\"G. WILLIAM NEWTON, MD PA/PHYSICIAN\",H1100\nPHYSICIAN,NEUROLOGICAL INST. OF CENTRAL FLA./,H1130\nOwner,\"College Hill Drug, Inc.\",G4900\nINFO REQUESTED,C M F REALTY,F4200\nENTERGY-TEXAS,,E1600\nHomemaker,\"C. Caramanico & Sons, Inc.\",B3600\nEXECUTIVE,\"NEWTON ASSOCIATES I, LTD.\",G2900\nTREBAR KENWORTH SALES,,T2400\nORANGE JULIUS,,Y4000\nAnalyst,World Bank Group,Y4000\nRALEIGH DRAPERY & CARPET,,G4600\nOwner,Care Free Home Improvements  Llc,Y4000\nSENIOR VP--HUMAN RESOU,\"COPART, INC.\",T2300\nIc New England,ISO New England,E1600\nPUBLIS,BIBLICAL ARCHAEOLOGY SOCIETY,Y4000\nHAWAII PORT PILOT,SELF-EMPLOYED,T0000\nREVIAN MACHINES,,Y4000\nPatent Attorney,Self,Z9500\nDoctor,San Jose Eye And Laser Med Center,H1120\nDIGITRON COMMUNICATIONS,,Y4000\nMALCOLM MEATS COMPANY,,G2500\nBanker,Commerce National Bank & Trust,F1000\nCLINICAL CARDIOLOGY/GENERAL CARDIOLOGY,Atlanta Heart Associates,H1100\nAttorney,Church Kritselis & Wyble,K1000\nPRESIDENT,HOWARD PROPERTIES,F4200\nAttorney,Holcombe Dunbar,Y4000\nETOILE INC,,Y4000\nPORTFOLIO MGR.,FMR LLC,Y4000\nChief Executive Officer,Dow Chemical Company,M1000\n\"GOV'T RELATIONS\",NORTHROP GRUMMAN,J7400\nRestaurateur,\"Domino's Pizza\",G2900\nDIVERSIFIED REALTY/DEVELOPER/PRESID,,F4200\nEXECUTIVE,CHRISTY/CHRISTY,G2900\nPresident,Jm & Associates,Y4000\nPEREZ BROS,,A1100\nCFO,Dumas Central,Y4000\nBROWN & WILLIAMSON TOBACCO COR,,A1300\nARCHITECT,APPLETON AND ASSSOCIATES ARCHITECTS,B4200\nFILM PRODUCTION COOR,RUNNING SCARED INC.,Y4000\nDUCKETT REALTY INC,,F4200\nSEABOARD MANAGEMENT CORP,,F2100\nOwner/CEO Of Development Company,Self-Employed,G0000\nBILL GOSSARD,,X1200\nACCOUNTANT,HM INC.,Y4000\nCEO,CENTRAL GARDEN & PET,Y4000\nUNITHREE INVESTMENT CORP,,F7000\nscientist,va med center,Y4000\nHOTELIER,SHERATON NEW ORLEANS,Y4000\nCARLSON BALES & SCHWED,,Y4000\nBUSINESS OWNER,SELF,Z9000\nACCOUNTANT,EOG RESOURCES INC.,E1140\nGODWIN PUMPS OF AMERICA,,Y4000\nCONSULTING ENGINEER,MATHWORKS,C5120\nExecutive,Balance Consulting Inc,Y4000\nENGINEER,\"ROBERTSON-BRYAN, INC.\",Y4000\nMPLS INSTITUTE OF ART,,J7400\nPHYSICIAN ENTREPRENEUR,SELF,G0000\nExecutive,GJ Grewe,F4100\nPresident,Papillion Grand Cyn Helicopter,T1100\nREALTOR,HENKLE SCHNELER & ASSOCIATES,F4200\nNBC,,G5210\nCouncil Member,City of Long Beach,X3000\n\"CONTICO INT'L\",,Y4000\nSCHOOL SUPERINTENDENT,MEXICO CENTRAL SCHOOL DISTRICT,Z9500\nLegal Assistant,Wivera Barnett,Y4000\nDOCTOR ON CALL,,Y4000\ndriver,Turbovac inc,Y4000\nEXECUTIVE,MCLANE COMPANY,G2500\nSIEGFRIED RIVERA & LERN,,Y4000\nOWNER,DRESSEL ELECTRICAL CONSULTING,B3200\nSELF EMPLOYED/FILM/TELEVISION PRODU,,Z9500\nREAL ESTATE INVESTOR,THEORY R PROPERTIES,J1100\nHOUSEWIFE,NA,A3000\nDEVELOPER,MCL COMPANIES,Y4000\nPresident,RAL Group Inc,Y4000\nREAL ESTATE,A. GWYNN STEWART REALTY,F4200\nREPAIR SERVICE,SELF-EMPLOYED,G0000\nPREIS & LABORDE LAW FIRM,,K1000\nExecutive,NexGen Systems Corp.,Y4000\nRetired,Havekost & Assoc Pc,Y4000\nNone,None,A1500\nCLAY COUNTY SCHOOL BOARD,,X3500\n\"GERRY'S KITCHEN INC\",,Y4000\nBUSINES,\"THE HAMILTON COMPANIES, LLC\",F4100\nAttorney,Titchell Maltzman et al.,K1000\nPRESIDENT & CEO,\"NHS MANAGEMENT, LLC\",H2200\nComputer Programmer,Excelsior Software Inc,C5120\nplanner,So CA Assoc of Non-profit Housing,Y4000\nSANTA FE OPERA,,G2900\nVICE PRESIDENT OF SALES,ARRIS  INC.,C2200\nSocial Worker,Independent Contractor,B3000\nPresident,Madisonville Chamber of Commerce,J7400\nPRESIDENT,CHATEAU PRODUCTS INC.,M5100\nCEO & President,Thesco Benefits LLC,Y4000\nExecutive,Edith & Herbert Lehman,F5500\nFULTON AND BARR,,K1000\nSECRETARY TREASURER,KM BIGGS INC.,Y4000\nSELF-EMPLOYED/TRAVEL CONSULTANT/REA,,Y4000\nLawyer,Davis Graham Stubbs,K1000\nENGINEER,AMERICAN OAK AND WALNUT CO,Y4000\nREAL ESTATE BROKER,RIVER RIDGE REALTY,F4200\nComedianne,Self,C2900\nDIRECTOR OF R&D,NCFI POLYURETHANES,Y4000\nFinancial Planning,Commonwealth Partners,Y4000\nATTORNEY,WILENCHIK AND ASSOCIATES,K1000\nReal Estate Inv,Self,J1200\nUS Diplomat,Department of State,X3000\nSELF-EMPLOYED,MARCUS,Y4000\nMD- ORTHOPEDIC SURGEON,SELF,Z9500\nInsurance Broker,Edgewood Partners Insurance Center (EP,F3100\nGeneral Counseling,Boyd Gaming,G6500\n\"O'DWYER & BERNSTEIN, LLP/PARTNER/AT\",,Y4000\nCHAPMAN HEXT & CO P C,,F5100\nEXECUTIVE,AMERICAN GAS ASSOCIATION,K2000\nBENNER MOBILE HOMES,,F4400\nCALVIN KLEIN CORPORATION,,M3100\nATTO,LAW OFFICES OF ELLEN STEINBERG,K1000\nRegional Manager,Crawford & Co,F3100\nANTHROPOLOGY CONSULTANT,,Y4000\n\"THIBSHEANE'S PHARMACY\",,G4900\nCFO,\"21ST CENTURY REHAB, PC\",Y4000\nPresident,Spicer Automotive; Inc.,G1200\nOWNER,AUERBACH CHEVROLET,T2300\nTeacher,Hcpss,Y4000\nCPA,Mack Roberts,Y4000\nDRIGGS GROUP INC,,B1000\nSENIOR MANAGER OF BUSINESS DEVELOPMENT,DISCOVER FINANCIAL SERVICES,F1400\nREG,SPALDING PLASTIC SURGERY CENTER,H1130\nnon profit director,consumer bankruptcy project,Y4000\nROUND THE CLOCK RESOURCES INC,,Y4000\nPRESIDENT,DIAMOND HILL,Y4000\nVICE PRESIDENT OF NURSING,ROPER HOSPITAL,H2100\nADVISOR,NORWEST EQUITY PARTNERS,F1100\nAttorney,\"Welsh & Recker, PC\",J1200\nOwner,Excelsior Real Estate,J9000\nATTORNEY,SAPERSTON DAY,K1000\nVice President,ABC Family Channel,C2300\nRia,\"Hsi, Inc.\",Y4000\n\"EXECUTIVE DIRECTOR, GOV'T AFFAIRS GE A\",GE,M2300\n\"SR VP, ASIA PACIFIC\",3M HONG KONG LIMITED,M0000\nSHELBY WILLIAMS INDUSTRIES INC,,J5100\nScience Education,Self employed,G0000\nSustainable Landscape Designer,Landis Garden Design,Y4000\nCPA,CHERRY BELLAERT & HOLLAND,F5100\nATTORNEY,\"FASA, INC.\",Z9500\nENGINEERING,TRINITY COAL CORP.,E1210\nMANAGEMENT,NET,Y4000\nDAIRY BUSINESS,SELF,G0000\nPRESIDENT & CEO,NATIONAL MUSIC PUBLISHERS ASSOC.,C2600\nCFO,ATHENA COMPANIES,Y4000\nPRODUCER,SELF-EMPLOYEDF,J1100\nVICE PRESIDENT,\"FABIANO BROTHERS, INC.\",G2850\nOwner,Olson Electric,Y4000\nPRESIDENT,RASKY BARLEIN STRATEGIES,K2000\nPRESIDENT,HILL SCHWARTZ SPILKER KELLER LLC,Y4000\nlobbyist,Avenue Solutions,K2000\nReal Estate Broker,WEA,Y4000\nPHYSICIAN,WRIGHT STATE UNIV. SCHOOL OF MEDICINE,Y4000\nPresident/CEO,LRP Construction Services,B2000\nCOUNTY TREASURER,NEW HAMPSHIRE,Y4000\nPartner,Shulman Rogers,C1100\nDistrict Attorney,City Of New York,X3000\nMANAGEMENT,\"METROPCS, INC.\",Y4000\nPresident,Computer Systems Software Corp,C5120\nRN,VA MEDICAL CENTER,J6200\nArchitect,\"Gregory T Hicks & Associates, PC\",Z9500\nPOLITICA,BERLINROSEN PUBLIC AFFAIRS,Y4000\nEXECUTIVE,ROBERT MARINI BUILDERS,Y4000\nMANAGING DIR. GOV,\"ADMINISTAFF, INC.\",G5270\nNURSE CONSULTANT,STATE OF ALASKA,X3000\nTEACHER,BOSTON PUBLIC SCHOOLS,J1200\nBSI/ALLENIATE/REALTOR,,F4200\nENGINEERED FABRICS CORP,,M1500\nBOWEN SCARFF MOTORS,,T2300\nRealtor,Kerry Melcher PC,F4200\nDENTAL HYGIENIST,OVEN AND PADULA/DENTAL HYGIENIST,Y4000\nFUNDRAISER,MYERBERG SHAIN - ASSOCIATES,Y4000\nPRESIDENT S,CONCEPT PACKAGING GROUP,M7100\nENGINEER SALES,PHOENIX ENGINEERING SALE INC,Y4000\nEngineer,Allied Sigma,G5270\nM L STERN & CO INC,,Y4000\nALAMO FARMS,,A1000\nREAL ESTATE ANALYST,G.A.P,G4100\nEXECUTIVE,CE SHEPHERD,Y4000\nPHYSICIAN,\"WRS, S.C.\",Y4000\nNON-PROFIT MANAGER,NET LITERACY,Y4000\nSoftware Consultant,Itis Corp,Y4000\nEXEC. DIRECTOR,SUPPORTIVE HOUSING NEWORK,Y4000\nVice President - Information Technolog,Fresenius Medical Care NA,H3200\nmanaging principal,Quadrangle Group LLC,F2100\nOwner,Bil-Dol Farm,G1200\nNATIONAL VICE PRESIDENT FOR CORPORATE,SAP NATIONAL SECURITY SERVICES (SAP NS,Y4000\nATTORNEY,DAVIS POLK & WARDWELL LLP,K1000\nCHIEF EXECUTIVE OFFICER,ARGO MARKETING GROUP,Y4000\nUS REP TO UN,US DEPT OF STATE,J7400\nHORWICH INDUSTRIES,,J5100\nHealth care executiv,Bane Care Management,Z9500\nEXECUTIVE,BLOCK DRUG CO. INC.,G4900\nEducator/Writer,Juilliard,Y4000\nPharmacist,Boone Hospital,H2100\nOWNER,ELK COUNTRY MOTELS,T9100\nSchool Dist Administrator,Retired,X1200\nATTORNEY,OLLILA LAW GROUP,Z9500\nVICE PRESIDENT,TEACO,Y4000\nVP,AMERICA ONLINE,C5140\nAttorney,\"Axinn, Veltrop & Harkrider LLP\",Z9500\nDESIGNER,BARRAKOS & LANDINO,Y4000\nExecutive,Modern Display,G5300\nCUMBERLAND FARMS INC./PRESIDENT/CEO,,G4300\nPhysician,San Francisco Health Plan,Y4000\nCEO,Oregon Ironworks,M5000\nConsultant,\"VPR Associates, LLC\",K2000\nSUNY UPSTATE MEDICAL UNIV,PRESIDENT,G0000\nExecutive,DOLPHIN HOLDINGS,F0000\n\"DAVIS MELM AND D'AGOSTINE\",,Y4000\nOIL-TRADING EXECUTIVE,VITOL S.A.,Y4000\nGroup President,MAXIMUS INC,G5200\nREAL ESTATE BROKER,OWNER,F4200\nExecutive,Gryphon L.C.,Y4000\nMATHEWS CONSTRUCTION COMPANY,,B1500\nSales,Live Nation,C2800\nHOME BUILDE,METRO CONSTRUCTION INC.,B1500\nSCOTT LEET HEATING COMPANY,,B3400\nATTORNEY,\"KOPELMAN AND PAIGE, P.C.\",Y4000\nInsurance Inspector,\"Mutual Inspection Bureau,Harrisburg\",Y4000\nPhotographer,David Bacher Photography,Y4000\nSAFETY MEDICAL SYSTEMS,,H0000\nFORMER CLA,RETIRED (FORMER US GOVT),X1200\nJOHN J OLIVERI PA,,Y4000\nSELF-EMPLOYED,SELF-EMPLOYED,B3400\nResearch Analyst,Algorithmics,F5500\nCIVIC LEADER FOR WOMEN,,Y4000\nAutomatic Data Processing,,G5200\nDENTIST,TROY MILLER DDS,H1400\nANDREWS & WALKER,,Y4000\nDentist and Attorney,Self,K1000\nTHE TALBOTT HOTEL,,T9100\nLOGISTICIAN,DEPT OF DEFENSE,X5000\nSenior Project Manag,Gilbane Building Company,B1000\nPresident,\"Bloom Consultants, LLC\",Y4000\nPresident and CEO,Consol Energy,E1210\ntruck driver,mca logistics,Z9500\nPresident & Chief Ex,Henry County Memorial Hospital,H2100\nAsst Claims Manager,Island Insurance Company,F3100\n\"RICHARDSON, GROSECLOSE, KORNMANN\",,Y4000\nAMERICAN PACIFIC TRANSPORT C,,T0000\nSOCIAL SERVICE MANAGER,\"NYC ADMIN. FOR CHILDREN'S SERVICES\",Y4000\nReal Estate Executiv,\"Rose Associates, Inc\",F4000\nATTORNEY,SELL,Y4000\nRISK MANAGEMENT DIRECTOR,TRAMMELL CROW RESIDENTIAL,F4100\nConsultant,\"e4, Inc\",Y4000\nWAGNER INVESTMENT MGT,,F0000\nDR AMBROSE G HAMPTON,,K1000\nATTORNEY,BICKERSTAFF HEATH,K1000\nD.L.A. PIPER U.S. L.L.P./ATTORNEY/P,,K1000\nprogrammer,Isi,Y4000\n\"D'ANNUNZIO & SONS INC\",,Y4000\nDEALER PRINCIPAL,PEAK KIA,T2300\nPresident,Koontz Electric Co. Inc.,B3200\nDOCTOR,GROUP HEALTH COOPERATIVE,Y4000\nPRESCOTT BALI & TURBIN INC,,Y4000\nNurse Anesthetist,Anesthesia Associates,H1130\neducator,Mobile County BOE,Y4000\nEXECUTIVE,REDPOINT VENTURES,F2500\nSENIOR VICE PRESIDENT,COMMUNITY 1ST BANK LAS VEGAS,F1100\nAttorney,Empire Fire & Marine Insurance Co,F3100\nVICE PRESIDENT OF GOVERNMENT &REGULATO,AMERICAN LAND TITLE ASSOCIATION,F4300\nMONEY MANAGER,BECK MACK AND OLIVER,F2100\nExecutive Vice Presi,Mana Products,M3300\nJournalist,Microsoft,C5120\nCONSTRUCTION,INFO REQUESTED,Y4000\nAVP Comp & Benefits,UNION PACIFIC RAILROAD,T5100\nCompany owner,Eureka Cartography,Y4000\nVice President,Dow Lohnes Government Strategies,K2000\nEngineer,INtel,J1200\nJOURNALISM,SELF-EMPLOYED,Y4000\nManaging Director,Trident Capital,F2500\nJMAG,,T2300\nPresident & CEO,Home Savings Bank of Eden,F1200\nChairman/CEO,Shorenstein Company,F4000\nDRS MORAN & MORAN S C,,Y4000\nCONSULTANT,ROSE & KINDEL,K2000\nCEO,\"RADNET, INC/CEO\",Y4000\nINV,WACHOVIA CAPITAL MARKETS L.L.C.,F2100\nField Coordinator,Baker Hughes,E1150\nOffice Mgr,Burnettfoods,G0000\nChairman of the Board,\"Southwest Beverage Co, Inc\",G2850\nEDUCATION TECHNOLOGY,TALES2GO,Y4000\nPRESIDENT,WINN COMMUNITITES,F4000\nCOLUMBUS CHEMICAL INDUSTRIES,,M1000\nEMERGENCY PHYSICIAN,DR. RYAN D KIRKPATRICK,H1100\nCONSULTING,ELECTION COMPANY,Y4000\nNEWTRENDS,,Y4000\nCREMATION & FUNERAL GALLERY,,G5400\nVery Large Global GM1004658,\"PPG Industries, Inc\",M1600\nEngiengineer,Avaya,Y4000\nDENTIST,L. CARY ORTON DDS INC,H1400\nOWNER,COMMERCIAL ROOFERS INC.,B3000\nHIGH SCHOOL,WILMINGTON CITY SCHOOLS,X3500\nVP,Jefferson Consulting Group LLC,K2000\nVp-Oversizy Partners,AOL,C2000\nPharmacuticals Execu,Orphan Medical Inc.,H0000\nENGINEER,ROBBINS & MYERS,Y4000\nLONG ALDRICK & NORMAN,,K2000\nHealthcare Consultant,Self-Employed,J7400\nHomeland Security Advisor,State of Massachusetts,X3000\nGovernment Affairs C,Next Generation Strategies,Y4000\nMANAGEMENT,MUNDY SERVICE CORP,Y4000\nDeveloper,Jaydee Contractors,Y4000\nCONSOLIDATED ELEVATORS,,Y4000\nLawyer,ROBERT HANSEN P.C.,K1000\nFISH CREEK VENTURES,,F2100\nPRESIDENT,MELROSE INDUSTRIES,Y4000\nANALYST,CHRISTENSEN FAMILY FARMS,A1000\nBUSINESS DEVELOPMENT,MANDUS GROUP,Y4000\nFRIENDS OF ROSA DELAURO,FRIENDS OF ROSA DELAURO,J1200\nHYDROGEOLOGIST,ROUX ASSOCIATES,Y4000\nCONTINUM,,Y4000\nEngineer,Rfnetwork Inc,Y4000\nATTORNEY,THORP REED & ARMSTRONG,K1000\nPsychoterapist,Self,H1110\nKEMP ASSOCIATES,,Y4000\nAttorney,Stonehenge Holdings,F0000\nRETIRED PHYSICI,\"NONE, SELF-EMPLOYED\",G0000\nCo Chairman,Simon DeBartolo Group,Y4000\nCEO,\"MAVERON, LLC\",Y4000\nOWNER / PHARMACIST,MEADOW DRUGS & SURGICAL,Y4000\nITT EDUCATIONAL SVCS,,H5200\nYOGA & MEDITATION TEACHER,SELF EMPLOYED,Y4000\nDirector,PNC Bank,F1100\nNORTH SIDE BANK & TRUST CO,,F1100\nPROJECT CONTROLS,BP,Z9500\nEDITOR-IN-CHI,COSMOPOLITAN MAGAZINE,C1100\nPRIVATE CAPITAL,,F7000\nMEPHROLOGY DEPT VANDERBILT MED CTR,,H1100\nEQUITY TRADER,BARCLAYS CAPITAL,F2100\nARISTECH CHEMICAL CORP,,M1000\nATTORNEY,WOND RES INST,Y4000\nEducator,Philadelphia University,H5100\nSALES,CENTRAL STEEL CO,M2100\nFERRELL-DUNCAN CLINIC INC,,H1100\nOil Executive,Camac,E1110\nOpthalmologist,,H1120\nOWNER,EVO,Y4000\nSOUTH COUNTY REALTY,,F4200\nTV PRO,JERRY BRUCKHEIMER TELEVISION,C2100\nCEO,\"SALADINO'S FOOD SERVICE\",Y4000\nAMERICAN MEDIBANC INC,,H3000\nV-G BERG & SONS CO,,G2500\nCONGRESSMAN,US CONGRESS,Z9500\nChief Public Affairs,UMass Lowell,H5100\nFINANCE/COMMUNICATIONS,CREDIT SUISSE,F2300\nLOURIE AND CUTLER,,K1000\nGrantmaker,Petsmart Charities,Y4000\nSecurities Analyst,\"Credit Suisse Asset Management, LLC\",F2100\nATTORNEY,SELF - PORTIA COHEN,K1000\nSUPERVISOR,CDC,X3000\nPHYSICIAN,WOMENS SPECIALTY CENTER,Y4000\nADMINISTRATIVE DIRECTOR,S.C.O. MED,Y4000\nWeb Design Consultan,Self Employed,G0000\nFinancial Planner,D.A. Davidson & Co.,Y4000\nCOMMITTEE CLERK,HOUSE COMMITTEE ON COUNTY AFFAIRS,Y4000\nPhysician,Duke University Medical Center,H5150\nFRANCHISEE,WENDAY EAST LLC,Y4000\nROOFING CONTRACTOR,CRS INC.,B3000\nATTORNEY,\"SHEPPARD MULLIN HAMPTON & RICHER, LLP\",K1000\nAttorney,Cole Raywid & Braverman,K1000\nR-DIR-BUS DEPLOYMENT LEAD-EAM,PPL ELECTRIC UTILITIES CORP.,E1600\nPHYSICIAN,\"ASTRAZENECA PHARMECEUTICALS, L.P\",Y4000\nPARTNER,HUMMER WINBLAD VENTURE PARTNERS,F2500\nGCNC,,Y4000\nBusiness Director,The Beacons Company,F4100\nVP of Operations,\"Brookdale Senior Living, Inc\",H2200\n\"O'CONNOR & ASSOCIATE\",,J5100\nCEO,CINTAS CORPORATION/CEO,M3100\nExecutive Director,Bush-Cheney,J1100\nPATHOLOGI,\"ST. JOHN'S REG HEALTH CTR\",H1130\nSELF,C SHEAFE COMPANY,Y4000\nTORKELSON ASSOCIATES,,Y4000\nPresident,Monarch Foods,G2910\nCOMMUNICATIONS DIRECTOR,SD-IMPERIAL COUNTIES LABOR COUNCIL,Y4000\nALMAND CO,,Y4000\nCOMPUTER PROGRAMMER,CALPONT CORP,Z9500\nPodiatric Physician,Waterbury Podiatry Consultants,H1130\nPUBLIC RELATIONS/PROFESSOR,FOWLER COMMUNICATIONS INC/UNIVERSITY O,G5210\nINSURANCE UNLIMITED,,F3100\nGENERAL CONTRACTOR,DON KRUEGER CONST. CORP.,Y4000\nTHE ORTHOPAEDIC PAC,,H1130\nEngineer,Sallie mae/Upromise,F1410\nManagement,Otay Water District,Y4000\nCONGREGATION NEVE SHALOM,NEVE SHALOM CONGREGATION,Y4000\n\"SONNENSCHEIN NATH AND ROSENTHAL, LL\",,K1000\nPhysician,Columbia Basin Hematology,H1130\nCONSULTANT,CHESAPEAKE ENTERPRISES,K2000\nCRNA,Owensboro Mercy Hospital,H2100\nCOPIC,,F3100\nDirector of Emergenc,Sisters of Charity Providence Hospital,H2100\nA,LAW OFFICE OF WILLIAM G. MITCHELL,K1000\nCONSULTANT,CITIGROUP,F1100\nAdvertising,Symmetri Marketing,Y4000\nPANDOL BROS,,Y4000\nUSAIR PILOT,,T1100\nNone/Retired,Information Requested,J5100\nDirector of Human Re,\"Saint Mary's College of California\",H5100\nPHYSICIAN,\"PHYSICIAN'S TOTAL REHAB\",H1100\nOWNER,ARRAY SERVICES GROUP INC.,Y4000\nTHOMAS & HARDY,,K1000\nGOVERNMENT RELATIONS,\"CENTERPOINT ENERGY, INC.\",E1620\nDIRECTOR,BATTELLE ENERGY ALLIANCELLC,E1320\nBUILDER,JOEY CORP,Y4000\nPRESIDENT,SUMMIT HOTEL MGT./PRESIDENT,T9100\nREAL ESTATE,THE THACKERAY COMPANY,F4100\nVICE CHAIRMAN,\"KINDER MORGAN, INC.\",E1140\nBARTON-ASCHMAN ASSOCIATES,,Y4000\nDUFFORD BROWN,,Y4000\nhealth policy,Institute for Health Policy Solutions,J1200\nOWNER,BRAD AUTO SALES,T2300\nCHAIRMAN,RANDALL PUBLISHING CO.,C1100\nPresident,Colon & Rectal Clinic - Fort,Y4000\nLEGISLATIVE COUNSEL,CLINICAL DENSITOMETRY,Y4000\nCONSOLIDATED BUSINESS MAN,,G0000\nOWNER,\"BECKY S. LINDEMOOD, P.C\",Y4000\nGENERAL CONTRACTOR,PUGLIESE CONTRACTING,B1000\nTHE BARNESS ORGANIZ,,F4100\nHI TECH INC,,Y4000\nVice-President,Cardin Distribution Company,Y4000\nPROJECT ENGINEER,RUGGLES & BOHM PA,B2000\nATTORNEY,LAW OFFICES OF GAIL BERRITT,K1000\nVice President/Sales & Commercial Deve,Southern Ionics,Y4000\nPharmaceutical Rep,Centocor,Y4000\nSANOS HILL COAL CO,,E1210\nKAUL FUNERAL HOME,,G5400\nTHEATRE MANAGER,THE FLICKS,J1200\nEXECUTIVE,THE INSTITUTE FOR HUMAN SERVICES,Y4000\nChief Executive Offi,Community Memorial Healthcenter,H2100\nCORPORATE VP,SSM HEALTH CARE,JH100\nMANAGER PROCUREMENT,ANHEUSER-BUSCH INC.,G2810\nREAL ESTATE BROKER,OSULLIVAN REALTY,F4200\nDermatologist,Center for Skin Surgery,H1130\nART THERAPIST,NONE,J7400\nOBERMAYER REBMAN MAXWELL,,K1000\nATTORNEY,ARNZEN & WENTZ,K1000\nMCPHERSON CONTR,,Y4000\nVP-MANAGEMENT,ROBERTO ECHEVARRIA,Y4000\nPROFESSOR OF ART & DESIGN,UNIVERSITY OF IDAHO,J1200\nManager,\"Gianna's Restaurant\",J1200\n\"Cpuc, State of California\",,Y4000\nCLEVELAND CLINIC FLORIDA,,Y4000\nPASTORAL MINISTER,INCARNATION CHURCH,Z9500\nChairman & CEO,Comfort Systems,Y4000\nCEO,BOOKS A MILLION,C5140\nNurse,Cardinal Cushing Hospital,H2100\nFirefighter,City of Tracy,X3000\nRETIRE,OWNER REAL ESTATE INVESTS AG,J1100\nINSURANC,BRUCE Q WHITE & ASSOCS INC,F3100\nBusiness Owner,Heartland Food Products INC,G2000\nBOND TRADER,ROBERT W. BAIRD & CO. INC.,F2100\nOWNER C.E.O.,MY LITTLE SWANS L.L.C.,T9400\nWEIR ASSOC INC,,J5100\nUNDERWRITER,CHASE BANK,F1100\nFund Manager,\"Ironwood Partners, LLC\",Y4000\nPRIMEBANK,,F1200\nAST. GN. CNSL.,NATIONAL FUEL GAS,E1140\nLEND LEASE,,F4700\nLawyer,Chadbourne& Parke,K1000\nTechnologist,Jp Morgan Chase,F1100\nSCIENTIST,NATIONAL JEWISH HEALTH,H2100\nSCOTCH PLYWOOD CORP,,A5000\nPRODUCER,LINDA ROBIN,Y4000\nPRESIDENT,\"ROHER'S QUARRY INC.\",G1200\nCoordinator,Vance Family Medicine,Z9500\nWholesale Distributo,\"O & W, Inc.\",Y4000\nBANK EXECUTIVE,BANK OF STOCKTON/BANK EXECUTIVE,F1100\nSales,SpringDot,J1200\nPhysical Therapist,Lk Wash School Dist,X3500\nBLUE CROSS & BLUE SHIELD OF MINNESO,,F3200\nOWNER,A.V. THOMAS PRODUCE,A1400\nOWNER,BENTON ENERGY SERVICES COMPANY TUBULAR,Y4000\nACCOUNTANT,STEVEN GRYCZMAN,Y4000\nEMMERSON ELECTRIC,,M2300\n\"BUS, MGMT.\",ARA,Y4000\nWESTERN BUILDING MAINTENANCE,,Y4000\nRE MAX PINNACLE,,F4200\nFOR MOST PACKAGING INC,,Y4000\nMANAGER,RH BARRINGER,G2850\nBROOKLINE PUBLIC SCHOOLS,,X3500\nExecutive Director,law Income Housing Institute,K1000\nAttorney,J. Minza and Associates,K1000\nFin Advisor,Wachovia Sec,F2100\nDIRECTOR,SIEMENS CORPORATION,C5000\nLEAP,,Y4000\nINVESTOR,NOT EMPLOYED,Y1000\nECL ENTERPRISES,,Y4000\nCONSU,AKINS CRISP PUBLIC STRATEGIES,G5210\nExecutive VP,Humane Society of the US,J7600\nMGT,GEN MANAGER,Y4000\nreserach biologist,US FDA,X3000\nICERA INV CORP,,Y4000\nSTOCKBROKER,HILLIARD-LYONS/STOCKBROKER,F2300\nOwner/manager,Rj Rolfe Building And Remodeling,Y4000\nCEO,ARDEN REALTY INC.,F4000\nFinancial Services,Milkie Ferguson Investments,F7000\nVP,Corning Inc,Z9500\nTOFIAS FLEISHMAN & SHAPIRO,,F5100\nBenefits Consultant,Aon Consulting,G5250\nKORYO HEALTH CENTER,,H0000\nPISTON PACKAGING CO,,Y4000\nPhysician,\"Robert Agulnek, MD\",H1100\nAttorney,Buehanan Ingersoll & Rooney PC,K1000\nOWNER,PACIFIC HOSPITALITY GROUP,Y4000\naccountant,\"Holmes & Company, PA\",F5100\nEXECUTIVE,CHARLES LEE POWELL FOUNDATION,Y4000\nSILVER QUEEN INC,,Y4000\nGGP LIMITED PARTNERSHIP/SVP/SENIOR,,F1100\nAttorney,LIND JENSEN SULLIVAN & PETERSON P.A.,K1000\nPR Consultant,Not Employed,Y1000\nLawyer,\"Ecology & Environment, I\",E2000\nGlobal Marketing,Avon Products Inc,M3300\nLAW OFFICE OF JILL KOTVIS,,K1000\nPUBLIC RELATIONS DIR,VARIAN MEDICAL SYSTEMS,H4100\nPhysician,Johs Hopkins University,H5100\nSALES,MERISANT CORPORATION,Y4000\nHealthcare Executive,Clarian,Y4000\nSALES PETROLEUM PRODUCTS-PRES.,J. E. DEWITT INC./SALES PETROLEUM P,Y4000\nEXECUTIVE,KALPA SYSTEMS,C5130\nPUBLIC RELATIONS,NEWMAN PR,Y4000\nCOMPUTER PROGRAMMER,CLEARVIEW INPUT,Y4000\nDirector,International Transportation,Y4000\nDIR. TECHNI,BOYD GAMING CORPORATION,G6500\nUNION OFFICER,CFEPE,Y4000\nMARKET DEVELOP GROUP,,Y4000\nREPUBLICAN DUNCAN HUNTER,,Y4000\nPRESIDENT/CEO,GEPHARDT GOVERNMENT AFFAIRS,K2000\nSEMINOLE COUNTY PUBLIC SCHOOLS,,X3500\nA LA FRANCAISE,,Y4000\nCEO,SIMCO,Y4000\nPRESIDENT,COMMERCIAL NATIONAL BANK,F1100\nBIOPHARMACEUTICAL CONSULTANT,SELF EMPLOYED,Z9500\nPartner,Atlantic Realty,F4200\nFINANCIAL CONSULTANT,\"TEMPLE BOY VENTURES, INC.\",F5000\nSTATE STREET PARTNERS,,F2000\nATTORNEY,METRO WATER RECLAMMATION DISTRICT,Y4000\nProducer,Shiva Enterprises,X1200\nCASTLE & COOKE,,A1400\nARCHITECTURAL HISTORIAN,,J7400\nROUEN CHRYSLER PLY DODGE,,T2300\nPRIVATE EQUITY,RIVER CAPITAL,F2500\nADMINSTATION OFFICE,ODOT,Y4000\nPRODUCER,JUST SO INC.,JE300\nChief Financial Officer,\"Renegade Swish, LLC\",F2100\nHOLY INNOCENTS SCHOOL,,H5100\nBANKING,SECURITY NATIONAL BANK,F1100\nDirector,Ciena,C4600\nTeacher,Milwaukee Area Tech College,J1100\nChief Executive Offi,Ardent Health Services,H3000\nSr. Vice President o,\"Morton's of Chicago National Headquart\",G2900\nPRIVATE EQUITY,JPB ENTERPRISES,Y4000\nBROKER,PAYNE LYNCH AND ASSO,Y4000\nINSURANCE BROKER,SIGHT HOUSE INSURANCE,Y4000\nSTONE FARM,,A1000\nCONSULTANT,\"HUMANLY POSSIBLE, INC.\",Y4000\nRETIRED ATTORNEY,NOT EMPLOYED/RETIRED ATTORNEY,X1200\nHAYS ORTHO. CLINIC,,H1130\nOwner,Dan H Constable Dds & Assoc Inc,H1400\nATTORNEY,THE BYRD LAW FIRM,K1000\nAttorney,\"Bryon, Gerber, Petri & Kalb\",K1000\nPARTNER,\"SIMPSON, THACHER & BARTLETT\",K1000\nENGINEER,MARTINS CONSTRUCTION,B1500\nVA STATE DEMOCRATIC PARTY,,Y4000\nPresident,Midwest Health,H2100\nREAL ESTATE,MARIPOSA LAND CORP,Y4000\nInformation Requeste,Citigroup Inc,F1100\nComputer Programmer,Ysi Incorporated,Y4000\nINTACT INC.,,Y4000\nATTORNEY,AMSTERDAM & CAMDEN,K1000\nCHIEF EXE,DR. PEPPER - SEVEN UP CO.,F2100\nHEFNER & ASSOC,,F3100\nMANUFACTURER,REFLECTIONS OF DALLAS,Y4000\nLAW OFFICES OF JOEL S,,K1000\nCNRD & B,,K1000\nVP DEALER SERVICES,MANHEIM AUCTIONS,C2200\nOWNER,ASSALI FARMS,A1000\nCHAIRMAN,\"THE FIRST BANCSHARES, INC.\",Y4000\nImaging Specialist,AGFA Corporation,Y4000\nYUROSEK FARMS,,A1000\n\"Lynch, Cox, Gilman & Mahan\",,K1000\nATTORNEY,FERRARA ROSETTI & DEVOTO,K1000\nManager,Deskey,Y4000\nFEDERAL GOVERNMENT EMPL,WHITE HOUSE,J1100\nDEALER,LEHMAN TOYOTA,T2310\nLEO BURNETT CO. INC.,,G5210\nMID SOUTH SHOOTERS SUPPLY,,Y4000\nORTHOPAEDIC SURGEON,SCOTT & WHITE,H1130\nFINANCE DIRE,AUDI SALES AND SERVICE,Y4000\nCity Of Summit,Reference Librarian,X4200\nPRESIDENT,CHARLES JERGENS CONSTRUCTION,B1500\nDIRECTOR UNIVERSITY RELATIONS,OKLAHOMA WESLEYAN UNIVERSITY,Y4000\nSECRETARY-TREAS,TEAMSTERS LOCAL 959,LT300\nNURSE ANESTHETIST,SALEM ANESTHESIA,H1130\nDIRECTOR FEDERAL AFFAIRS,GENERAL MOTORS COMPANY/DIRECTOR FED,T2100\nISLER DARE RAY RADCLIFFE & CONNOLLY,,K1000\nPublic Policy Direct,Lgbt Fairness Fund,J7300\nCommunications/Philanthropy,Rhode Island Foundation,Y4000\nCAL LUTHERAN,,Y4000\nPRESIDENT,OTIS & AHEARN,Y4000\nVP SRF,ACE USA,F3100\nBROKER,BOSTON STOCK EXCHANGE,F2400\nTVSM INC,,C1100\nH&N CONSTRUCTION INC,,B1500\nPresident,\"James L. Shireman, Inc\",Y4000\nAon Corporation,,F3100\nMGR.,PRINCETON ELECTRIC SERVICE,Y4000\nOILFIELD EQ,\"HORN EQUIPMENT CO., INC\",Y4000\nOWNER,HIGH PURITY NEW ENGLAND,Y4000\nN/A,N/A,D6000\nSenior Manufacturing Coordinator,HR Textron Systems,Y4000\nEAGLE DSTB,,Y4000\nRANCHER,HUNT RANCH,A3000\nINSURANCE,MARAN ASSOCIATES,F3100\nREAL ESTATE,CRIM & ASSOCIATES,Y4000\nBUS DRIVER,CONEMAUGH HEALTH SYSTEM,H2100\nWESTERN AUTO,,T2000\nCREME DE LA CREME,,G2900\nSTERN-SLAVUIAN,,Y4000\nTRIAL LAWYER,WEIK NITSCHE DOUGHARTY,K1000\nMANAGER- READY TO EAT,\"PERDUE FARMS, INC.\",A2300\nN/A/NONE,,C5110\nCOO,GIE,Y4000\nEXECUTIVE VICE PRESIDENT,HILIO/GLOBAL,Y4000\nINSURANCE BROKERAGE SERVICES,,F3100\nCEO,EAGLE COMMUNICATIONS/CEO,Y4000\nCRIME VICTIM SERVICES,,Y4000\nINGRAM WALLIS & CO PC,,Y4000\nOWNER,H. J. STABILE & SON/OWNER,B2000\nINFO REQUESTED,SSJ ARCHIECTURAL STAINED GLASS,M7200\nSelf Employed,Scott Riddle,Y4000\nInvestore,Megcator Asset Management,F2100\nLawyer,self-employed,K1000\nADMINISTRATI,\"HOME HEALTH CARE, INC.\",H3100\nConsultant,DLA Piper,K2000\nCPA,JONES & MCINTYRE PLLC,Y4000\nADVISOR/CHAIRMAN,CONCERO GLOBAL,Y4000\nAttorney,Rubin Rudman LLP,Y4000\nFinancial Adv,Wachovia Secs,Z9500\nSHECHTEL CO,,Y4000\nChairman & President,\"Michelin North America, Inc.\",M1500\nBENMAR CONDITIONING CORP,,Y4000\nengineer,Casepick,T1400\nMARINE REPAIRS,SELF,G0000\nAttorney,Davis Shapiro Lewit & Hayes,K1000\nHASTINGS,,Y4000\nADMINISTRATOR,ALTRU HEALTH SERVICES,H3000\nDIRECTOR,THE BANK OF SOUTHSIDE VIRGINIA,F1100\nINFO REQUESTED,PAYCHECK ADVANCE,Y4000\nFEDERAL GOVT RELATIONS,DAVIDOFF HUTCHER & CITRON,K1000\nProduction Management,Harpo Productions,C2400\nINSURANCE,G.E. INSURANCE SOLUTIONS,F3100\nSCHNEIDER ENGINEERING,,B4400\nATTORNEY,\"INTERNATIONAL UNION, UAW\",Y4000\nPARTNER,SUN COMMUNITIES,F4000\nCROCKETT SOUTHWEST,,Y4000\nMICROFLEX RENO,,H4100\nFINANCIAL CTR CU,CEO,F1300\nCM EQUITY PARTNERS LP,,Y4000\nEAGLE BELTING,,Y4000\nPOLITICAL DIRECTOR,NATIONAL ASSOCIATON OF REALTORS,J9000\nHANGER ORTHOPEDIC,,H1130\nCEO,WINVISTA CORP.,Y4000\nIRVINE & SONS INC,,Y4000\nA T CROSS COMPANY,,JE300\nFIRST CAPITAL BENEFIT,,F5500\nCATTLE RAISER,SELF-EMPLOYED/CATTLE RAISER,A3000\nEnvironmental Manger,Strategies Limited,Y4000\nIT CON,VIRTUAL TECHNOLOGY SOLUTIONS,Y4000\nMarketing,Columbia University,H2100\nEAST CAROLINA SCHOOL OF MED,,H5150\nTHORP/BAILEY EYE ASSOC./PHYSICIAN,,H1120\nEXECUTI,JOE SLADE WHITE AND COMPANY,J1200\nINTERNATION BUSINESS INVS INC,,Y4000\nBAY AREA DISTRIBUTING COMPANY,,Y4000\nPromotional Advertising,Arc Worldwide,Y4000\nREAL ESTATE INVES,\"HARWELL CO., LTD.\",F4000\nSr. Member Research,Bosch Security Systems,Y4000\nNVR MORTGAGE,,F4600\nPRINCIPAL,\"CAPITOL STRATEGIES, LLC\",G5260\nManager,Win-win Cleaning,G5000\nPRESIDEN,\"TERRACON CONSULTANTS, INC.\",B4000\nAGRICULTURAL CONSULTANT,SELF,Y4000\nCOUNTY SUPERVISOR,JOHNSON COUNTY/COUNTY SUPERVISOR,H5100\nRealtor,The Grubb Co,F4200\nOWNER,ELLISON ED. EQU INC.,M2300\nNot In Workforce,Not In Workforce,F1000\nLawyer,Hickey & Liebman,K1000\nCHRIS HALVORSON MD,,H1100\nADMINISTRATIVE,GSA,X3000\nATTORNEY,\"CELESTIA L. MAYS, P.C.\",Y4000\nBroker,Key Realty,F4200\nFENNERMORE CRAIG,,K1000\nATTORNEY,LAW OFFICES OF THOMAS H. BURTON/ATT,K1000\nDEAN WITTER FINANCIAL SER,,F2100\nOwner,Mktg. Strategies,Y4000\nTALMAN HOME MORTGAGE,,F4600\nPresident/CEO,The Dallas Mavericks,G6400\nCHILD CARE CAPITAL INVESTMENT FUND,,Y4000\nPresident/CEO,Coltex/Tex-Fil Inc.,Y4000\ngreenwood homecare inc,,H4100\nADMINISTRAT,LIFE CELEBRATING HEALTH,Y4000\nVAK PAK INC,,B2000\nAM AGUA INC.,,E4200\nGEORGIA REPUBLICAN PARTY,,A3100\nOWNER,KAZAKOS BROTHERS,Y4000\nMARKET DEVELOPMENT INC,,G5200\nCIO,IHOP CORP.,G2900\n\"SVP, HR\",\"SAP AMERICA, INC\",C5120\nFINANCE,NED DAVIS RESEARCH,Y4000\nTEMPORARY SERVICES OF,,Y4000\nACADEMIC SPECIALIST,MEDAILLE COLLEGE,H5100\nNURSE PRA,FAMILY CARE IN THE PLAINS,Y4000\nPhysician,Progressive Physicians Assoc.,Y4000\nOwner,Abc Fire Extinguisher Co Inc,Y4000\nLCM PATHOLOGISTS P C,,H1130\nDIR LAW & PSYCH PROGRAM/PROFESSOR,DREXEL UNIVERSITY,H1110\nPresident,United Fashions of Texas,G4100\nSARASOTA COUNTY ATTORNEYS OFF,,X3200\nDirector,\"Clinton County Electric Cooperative, I\",E1610\nOwner,Family Mart Inc,G2400\nHOUSTON OIL PROD ENT INC,,E1100\nADMINISTRATOR,RAHWAY HOUSING AUTHORITY,Y4000\nMANAGER,POLYVINYL FILMS INC.,C2400\nWASHINGTON COMMUNICATIONS,,K2000\nSoftware Engineer,Siemens Dematic Pa Ltd.,M2300\nBOULEVARD LIQUOR STORE,,G2840\nExecutive,Total Energy Corp,E1000\nNEAL POPE CHRYSLER PLYMOU,,T2300\nManager,\"Silverback 7, Woodbridge, VA\",Y4000\nVETERINERIAN,SELF-EMPLOYED,A4500\nENGINE,AIRPORT ENGINEERING CO. INC.,B4400\nATTORNEY AT LAW,PRINCE LOBEL TYE LLP,Y4000\nBANKER,NAVIDAR HOLDINGS L.L.C.,Y4000\nRegional Finance Dir,US Oncology Inc,H1130\nATTORNEY,\"GELBER & O'CONNELL\",Y4000\nDIRECTOR OF EXTERNAL AFFAIRS,PORT OF OAKLAND,T6000\nOwner,Richardson Homes Llc,B2000\nProgrammer,Hewkett Packard,C5100\nLAWYER,\"HUGHES D'LUCE LLP\",K1000\nTeacher,Spencer Owen Schools,Y4000\nMANAGER,CDDC,Y4000\nREAL ESTATE BROKE,TREATY REALTY INC,F4200\nDIRECTOR,ALTRIA GROUP,A1300\nATTORNEY,MMR GROUP INC.,Y4000\nSAM S SCHAHET AND,,Y4000\nCBI,,Y4000\nSOUTHWEST,LUKE SOULES,G4300\nBROKER,PERCIVAL FINANCIAL PARTNERS,F2100\nAttorney,NEXSEN PRUET,K1000\nHealthcare Admin.,Cigna,J7400\nSales manager,Lehman Brothers Inc.,F2100\nINSURANCE AGENCY EXECUTIVE,U.S. RISK INSURANCE GROUP INC.,F3100\nCHERIANS INC.,,G4600\nteacher,CUNY,H5100\nBUSINESS MANAGEME,INTERMARKETS INC.,Y4000\nFinance,Comerica,F1100\nPHYSICIAN,TRIAD RADIOLOGY ASSOCIATES,H1130\nREGION 6 VICE PRESIDENT,SEIU LOCAL 521,LH100\nMORRISEN & FOSTER,,Y4000\nAttorney,IASCO,Y4000\nCO FOUNDER,PARAMOUNT CAPITAL ASSET,J5100\nUT MEDICAL BRANCH,,H5150\nEXECUTIVE,SPORTMANS MARKET,G4100\nSCOTTIS INSURANCE AGENCY,,F3100\nARCHITECT,STEPHEN RANKIN ASSOCIATES,B4200\nReal Estate Broker,W C & A N Miller REALTORS,F4200\nPresident,R.A. Cohen & Associates Inc.,F4100\nCPA,O2CONSULTING GROUP,Y4000\nPROJECT MANAGER,\"OC JONES -- SONS, INC.\",Y4000\nCPA,\"ARAWAK INSURANCE AGENCY, INC.\",F3100\nOwner,\"Verrastro's Distributors\",Y4000\nFILM TECHNICIAN,SELF-EMPLOYED,JE300\nDevelopment,World Resources Institute,Y4000\nGENER,GLOBAL TECHNOLOGY INVESTMENTS,F2500\nSales/Marketing,Berje Inc,Y4000\nCPS Sales,Hormel Foods Corporation,G2300\nWALKER BOAT YARDS,,T6100\nPARALEGAL,WEIL GOTSHAL & MANG,K1000\nPRESIDENT,PETITPREN INC./PRESIDENT,G2850\nElectrical Contracto,Utilities Service Corp (USC),B3200\nPRESIDENT,EDUCATION MANAGEMENT,H5300\nBUILDER,DOUBLETREE CONSTRUCTION,B1500\nINVESTOR,ROUTH STREET INV.,F7000\nPOTOMAC PARTY CRUISER,,Y4000\nOWNER,RICHARD A SMITH PRODUCTIONS,Y4000\nAMERICAN HEURISTICS CORP,,Y4000\nVice President,Holland Hospital,H2100\nPresident/CEO,Homestead Construction,B2000\nMaintenence,Ohio Valley Coal,E1210\nFINANCIAL ADVISOR,NEW YORK LIFE,J5000\nPHYSICIAN,ALLIANCE MEDICAL,H1100\nSELF-EMPLOYED/OIL PRODUCER/OPERATOR,,E1120\nMAINE MHMRSAS,,Y4000\nOwner,Coughlin Associates,Y4000\nCOMPUTER PROGRAMMER,INFINIDB INC.,J7400\nOwner,Pascap Co.,Y4000\ncaterer,self,G2910\nVI,RAYMOND JAMES AND ASSOCIATES INC,F2100\nLIFE INSUR,NORTHWESTERN MUTUAL LIFE,J1100\nSECRETARY,NEVADA TIME/SECRETARY,Y4000\nPresident,\"AF Management, Inc.\",Y4000\nCOUNTRYSIDE HOMES,,B2000\nRESEARCH SCIENTIST,LAMONT-DOHERTY EARTH OBSERVATORY,Y4000\nPRESIDENT,GENTEX CORP.,M8000\nBUSINESS OWNER,HUSER CONSTRUCTION COMPANY,B1500\nBUSINESS OWNER,SELECSOURCE INC,Y4000\nEXECUTIVE VICE PRESIDENT & PROVOST,OHIO STATE UNIVERSITY,H5100\nBusiness Owner,Burger King Franchise,Y4000\nPHYSICIAN,\"BAO CHANG, MD\",H1100\nPRESIDENT,MBK  INDUSTRIES INC.,Y4000\nPRESI,\"MATRIX CONSTRUCTION CO., INC.\",B1500\nRetail Vice Presiden,Best Buy Co.,G4200\nMANUFACTURING,F. & M. DESIGNS,Y4000\nExecutive,Warren Steven,Y4000\nDIR FINANCE,SQUILLLACE & ASSOC,Y4000\nRETIRED - HEAD OF HR,RETIRED - MARRIOTT,X1200\nMCCOY ELKHORN COAL CORP,,E1210\nEXECUTIVE,VILLAGE HOMES OF COLORADO,B2000\nInformation Requested,Stewart Holding Co,Y4000\nASSOCIATE DIRECTOR -,TWENTIETH CENTURY FOX,C2400\nOWNER,NEW ENGLAND FOAM AND COATING INC,Y4000\nLobbyist,Piper Jaffray,F2100\n\"SERV BEHAVIORAL HEALTH SYSTEM, INC.\",,H1110\nPRESIDENT,RCL ENVIRONMENTAL INC,E2000\nPEARLE OPTICAL,,Y4000\nAttorney,\"Watts, Guerra, Craft, LLP\",K1000\nMICHIGAN HEADACHE & NEURO INSTITUTE,,H1100\nPublisher,\"Playbill, Inc.\",C1100\nSECRETARY,ST. JOSEPH EQUIPMENT INC.,Y4000\nINFO EQ,INFO REQ,Y2000\nLOBBYIST,THE  RUSSELL GROUP,K2000\nENGINEER,A. I. SOLUTIONS,Y4000\nPresident,Law Office/R Michael Larrinaga,G1200\nBONITZ OF GEORGIA/N/A,,Y4000\nPRESIDENT,SONDEREN PACKAGING/PRESIDENT,M7100\nINFORMATION REQUESTED PER BEST EFFO,,J7150\nIV PHARMACEUTICAL WHOLE,,H4300\nREALTOR,PETER ANTHONY REAL ESTATE,F4000\nPATHOLOGIST,KEYSTONE MEDICAL LABORATORIES,H1130\nHORIZON GENERAL,,Y4000\nAttorney,Burbank Mediation,K1000\nRTI INSURANCE,,F3100\nSCIENCE ADVIS,GEORGETOWN UNIVERSITY,J1200\nECONOMIST,UNIVERSITY OF CALIFORNIA,Z9500\nKRISTEN DISTRIBUTING,,G2850\nDoctor,Flagler Medical Association,H1100\nOwner,\"Anwarul Haq, Md, Pc\",Y4000\nPRESIDE,SOUTHEASTERN BEVERAGES INC.,G2850\nCAFARO CO,,F4100\nExecutive Vice President,Pride Mobility Products Corp.,H4100\nLARRABEE & ASSOCIATES,,Y4000\nCHAIRMAN OF BOARD,JOHNSTON ENTERPRISES,A4000\nLobbyist,\"Government Edge, Inc\",K2000\nSR. MGR. RESIDENT - EHS,ANHEUSER-BUSCH COS. INC.,G2810\nSMA,C.A. RICHARDS & ASSOCIATES INC.,X1200\nYUKON CLEANERS,,G5500\nATTORNEY,UNIVERSITY OF MICHIGAN LAW SCHOOL/A,H5170\nEXECUTIVE,PAPAMARKOU WELLNER ASSET MANAGEMENT IN,Y4000\nCHAIR,SOUTHGATE DEMOCRATIC CLUB,Y4000\nEMERGENCY PHYSICIAN,GOOD SAMARITAN HOSP,H1100\nRealtor,Buena Vista Real Estate,F4200\nVALLEY FRUIT,,Y4000\nHousewife,N/A,A3000\nPRESIDENT,S. C. JOHNSON & SON INC.,M1300\nATTORNEY & NONPROFIT DIRECTOR,TENANTS TOGETHER,Y4000\nFixed Income Sales,Royal Bank of Canada,F1000\nBanker,Plains Capital Bank,F4200\nCEO,CW JOHNSON EXPRESS,Y4000\nClient Services Manager,Google,C5140\nRINKIN RODLER & KREMER,,K1000\nDENTIST,HORTON MABRY REHDER D.D.S.,H1400\nFACILITY MANAGER,YMCA,G5800\nELECTRICAL ENGINEER,SCHNIDER ELECTRIC,M2300\nOwner,P L C Financial,Y4000\nPROMUS,,T9100\nChairman; President,Sierra Pacific Resources,E1600\nElectric Power,Self,E1600\nCA CABLE TELEVISION ASSN,,C2200\nMAUNFACTURING DIRECTOR,FMC CORP,M1000\nDENTI,DRS HOWELL & WHITEHEAD & ASSC,H1400\nOWNER,DESCRIPTIVE LC,Y4000\nEXECUTIVE DIRECTOR,NEW YORK MANUFACTURED HOUSING ASSOCIAT,B2400\nASH FINE ART LLC,,J1200\nREAL ESTATE,BRAND COMMERCIAL REAL ESTATE S,F4000\nJEWISH BOARD OF VOLUNTEERS,,Y4000\nMAYOR,CITY OF ALBANY NY,K1000\nATTORNEY,MICHAEL BEST & FRIEDRICH  LLP,K1000\nBICKLEY & PRESCOTT,,Y4000\nORGANIZER,\"INTERNATIONAL UNION, UAW\",LM150\nPETERBILT OF MISSISSIPPI,,Y4000\nGovernment Affairs,The Podesta Group,J7500\nPHARMAC,NOSTRUM PHARMACEUTICALS LLC,H4300\nPHYS,\"CARDIOVASCULAR SPECIALISTS, PC\",H1130\nOWNER AND CEO,DEDHAM WHOLESALE TIRE COMPANY,M1500\nCEO,\"MEAD, ADAM, & CO., INC.\",Y4000\nAttorney,Salans Law Firm,K1000\nPRESIDENT,COSTCO,G4000\n\"TAORELLO'S MARKETPLACE\",,Y4000\nExecutive,C&S Wholesale Grocers,G2500\nFINANCIAL SERVICES,INFORMATION REQUESTED PER BEST EFFORTS,X3500\nOWNER,LAMARCA CONSTRUCTION,B1500\nHOMEMAKER,NICOLE SMITH,J6200\nI & S ENGINEERS & ARCHITECTS,,B4200\nA & A AUTO,,T2000\nCHAIRMAN OF THE BOARD,\"HEADWATERS, INC.\",E1000\nPENN INSURANCE & FINANCIAL GRP INC,,F3100\nRETIRED,RETIERD,X1200\nWAGNER VAUGHAN & MCLAUGHLIN,,K1000\nC,MORTGAGE BANKERS ASSN. OF AMERICA,F4600\nWARD LUMBER CO INC,,G1200\nCHAIRMAN & C,INTERNET CAPITAL GROUP,C5140\nORANGE COUNTY COMMISSIONER,RETIRED SOCIAL SCIENTIST,X1200\nPRESIDEN,CENTRAL STATES ENTERPRISES,Y4000\nSEBRIGHT PRODUCTS INC,,Y4000\nATTORNEY,\"FLEISCHMAN & WALSH, LLP\",K1000\nEPIC ELECTRIC,,B3200\nCEO,SENTARA HEALTH CARE,H0000\nLEGISLATIVE ADVOCATE,WATERMAN & ASSOCIATES,K2000\nGOVERNMENT AFFAIRS,BLUESTONE STRATEGIES LLC/GOVERNMENT,K2000\nTruck,Toyota Motor Sales U.S.A. Inc,T2310\nPresident,Epoch Restestuart Group,Y4000\nPARTNERSHIP FOR DRUG FREE AM,,J9000\nLawyer,Petros & White LLC,K1000\nSECURITIES BRO,LEBENTHAL & CO. INC.,Y4000\nTRITON MANAGEMENT,,G2900\nPRESIDENT/CEO,LENCO INDUSTRIAL SVCS,J1100\nPRESIDENT,WASHINGTON CORP,B1000\nPRESIDENT,ZETIAN SYSTEMS INC.,Y4000\nAssociate General Counsel,Visa,F1400\nPres/Ceo,Blac & DeMaiolli,Y4000\nSEA CHANGE INTERNATIONAL,,Y4000\npresident,Rosenzweig Financial Services,F0000\nOFFICER,PRESTIGE TITLE,F4300\nVIGNETTE CORP,,C5120\nROSENBERG RICH BAKERBERMA,,Y4000\nBARANCO PONTIAC,,T2300\nOil Gas Operator,Self-Employed,G0000\nINFORMATION REQUESTED,UNIVERSITY OF CHICAGO,H5100\nCONSULTANT,SLT CONSULTANTS LTD.,Y4000\nGeneral Manager,ACRECITI DEVELOPMENT,F4100\nBusinessman,East West Trading Company,Y4000\n\"VP, General Council\",General Electric Co,J1200\nEXECUTIVE,EQT,E1140\nOrthopaedic Surgeon,Rush Memorial Hospital,H1130\nMarketing Consultant,Theshold Managment,J1200\nTeacher,Tucson Unified SD,X3500\nMedical Research,Baylor Coll. Med. / VA Medical Center,H5150\nCHAIRMAN & CEO,FIRST POTOMAC REALTY TRUST,F4200\nCONSUL,RICHARD D. JACOBS CONSULTANT,J7300\nRETAILER,,G2840\nHALE & DORE,,K1000\nEditor,Chicago Wilderness,J7400\nBLAIR GOGGINS & HERD,,K1000\nSONOSKY CHAMBERS SACHSE ET AL,,K1000\nPRES.,TTSI,J1100\nCARPET SALES,W.D. MATHEWS INC.,Y4000\nINVESTOR,STONEHOUSE PARTNERS,C1100\nFlight Surgeon,USAF,X5000\nCAREER COLLEGE ASSOCIATIO,,H5200\nManager,Boone Electric,J1200\nLawyer,Schaab,Y4000\nCOOPERATIVE MARKETING,,Y4000\nGENERAL ANALYTICS CORP,,C5130\nBroker,Steve Scott Realtor,F4200\nCORNELL MEDIAL COLLEGE,,H5150\nBENGARD & ASSOCIATES,,Y4000\nCASTING DIRECTOR,DREAMWORKS STUDIOS,C2400\nBCS FINANCIAL,,Y4000\nVETTER HEALTH SERVICE,,H2200\nPRESIDENT,\"AWK CONSULTING ENGINEERS, INC.\",B4400\nPresident,\"Dahlem Company, Inc.\",F4000\nESTES & ASSOCIATES,,Y4000\nVP HVAC CONTRACTOR,S.E. MECHANICAL CONTRACTORS,Y4000\nSENIOR MECHANICAL ENGINEER,THE SHAW GROUP,J6200\nChairman & CEO,\"Time, Inc\",C1100\nState Representativ,Oregon,J1200\nBANKER,HAMMOND KENNEDY WHITNEY CO.,Y4000\nExecutive,The DeBartolo Corporation,Y4000\nBERNARD C MORRISSEY INURANCE,,Y4000\nDIRECTOR,FLASKEN OLI & RANCH LTD.,Y4000\nATTORNEY,THE BARNETT LAW FIRM,K1000\nATTORNE,NOELLE BRENNAN & ASSOCIATES,K1000\nResearch Faculty in Public Health,University of Utah,H5100\nEXECUTIVE,VRINGO INC.,Y4000\nBUILDER,BREHM COMMUNITIES,B2000\nOwner,DG Holsinger LLC,Y4000\nFINANCE,GSC PARTNERS,F2100\nLAWYER,PATTON AND BOGGS,K2000\nATTORNEY,BEAR STEARNS,J7500\nRETIRED,UBS FINANCIAL SERVICES,F2100\nIT Systems Engineer,Lexisnexis,C5130\nExecutive,Sherr Development Corp,F4200\nINDUSTRIAL SALES,\"T. L. A, INC.\",Y4000\nDAVID NASSIF ASSOCIATION,,F4500\nMANAGER,PRESBYTERIAN INTERCOMMUN. HOSP,Y4000\nANESTHESIOLOGIST,ANESCO NORTH BROWARD. LLC,H1130\nOwner,\"Bns Enterprises, Inc.\",Y4000\nDoctor,Neurospine Center,H1130\nSENIOR EXECUTIV,DISTRIBUTION CENTER,Y4000\nMANAGING PARTNER,RIDGEWOOD PARTNERS,Y4000\nASPHALT MATERIAL & CONSTR INC,,B1000\nATTORNEY,EDWARD Z. TABASH,Y4000\nMARYS BP,,Y4000\nReal Estate Manager,Razore Land LCC,Y4000\nCOST/PRICE ANALYST,ARMY CONTRACTING COMMAND -WARREN,X5000\nBUISNESS OWN,BLUFF SPRINGS PAPER CO,A5200\nNONE,CITIGROUP,F1100\nVice President,Capital Factors,Y4000\nATTORNEY,PROSKAUER ROSE  LLP,K1000\nAdministrator,The Energy Foundation,E1000\nKRAMER COLEMAN WACTLAR & LIEBERM,,Y4000\nMIDWEST FOREST PRODUCTS,,A5000\nEXECU,STEPHEN J. CHRISTIAN & ASSOC.,Y4000\nDIRECTOR,FSLA ACADEMY,Y4000\nOwner,D & S Fencing,Y4000\nAccounts Payable,Peccole Enterprises,Y4000\nA,N,Y2000\n\"Co-Founder, Partner\",PrinceGoldsmith LLC,G5250\nPresident & COO,Promise Healthcare,H2100\nCEO,Thoemke Enterprizes,Y4000\nBrokerage Manager,John Hancock Life Ins,F3300\nVICE PRESI,\"MARTIN'S FAMOUS PASTRIES\",J1100\nInformation Requeste,Information Requested,J7150\nSoftware Engineer,Self,C5120\nREAL ESTATE,RAND COMMERCIAL,J5100\nEngineer,Walter P Moore,Y4000\nOWNER,\"JIM DIAMOND, INC.\",Y4000\nFilm Maker,WSB Productions Inc,Y4000\nCENTRAL PARK MINERAL CORP,,E1200\nMARINE CHARTERING/VESSEL/EQUIPMENT,,Y4000\nCENTURY INSURANCE GROUP INC,,F3100\nAMERICAN MONEY MANAGEMENT CO,,F2100\nVIVRA INC,,J9000\nUNITED SCRAP METAL,,Y4000\nSr Policy Advisor,Akin Gump Strauss Hauer & Feld,K2000\nRED LAKE FALLS PUBLIC SCHOOLS,,X3500\nATTORNEY,\"DAVID S. BROWN ENTERPRISES, LTD.\",F4100\nVICE PRES.,BERGNER BOCKORNY INC.,K2000\nACCOUNT EXECUTIVE,SHI INTERNATIONALCORP,Y4000\nREAL ES,TOWN & COUNTRY PROPERTY MEN,F4000\nINSURANCE BROKER,HILB ROYAL & HOBBS,F3100\nSOUTHWEST STRUCTURAL STEEL INC,,Y4000\nCorp. Executive,\"Jasper Products, L.L.C.\",Y4000\nbanker,seacoast capital partners,Y4000\nCONSULTANT,BUSINESSPERSON,G0000\nSATTERLEE STEPHENS BURKE & BUCKE,,Y4000\nTeacher,NC Association of Educators,L1300\nPHYSICIAN,MAVERICK FAMILY MEDICAL PC.,J1200\nATTORNEY,\"DICKERSON LAW FIRM, P.A.\",K1000\nART DEALER,KAIKIDO,Y4000\nATTORNEY,ROMANO & ASSOCIATES,Z9500\nCARISMITH CASE NUKAI,,Y4000\nExecutive VP,Farm Credit East,A4000\nCIO,PHOENIX STAR CAPITAL LLC,F2700\nBALF CO,,Y4000\nPHYSICIAN,LEONARD BARLEY  M.D.,H1100\nARTS MANAGER,SELF/ARTS MANAGER,J1200\nPresident,Otoe County Bank & Trust,F1000\nEXECUTIVE,CREST INVESTMENT CO.,F2600\nTRUMAN TRANSFER & STORAGE INC,,T3100\nEXECUTIVE DIRECTOR,CENTRAL MI PREGNANCY SERVICE,Y4000\nEngineer,Information Requested,Z9500\nINSTITUTIONAL EQUITY,U.B.S. FINANCIAL SERVICES,F2100\nK & W CAFERERIAS,,G2900\nPresident and CEO,Internat Dairy Foods Assoc,A2000\ncollege professor,state of north carolina,X3000\nVP OF SALES DEVELOPMENT,MDI,G2500\nINSURANCE,GREENBERG RHEIN & MARGOLIS INC.,Y4000\nHEALTH CARE PROVIDER,\"PHYSICIAN STAFFING, INC\",Z9500\nSTUDENT LOAN FUNDING CORP,,F1400\nVP/General Manager,Mitchell & Best Group LLC,B2000\nSupply Systems Analyst,Department of Defense,X5000\nOwner,China Mist Tea,G2600\nPresident,Meridian Group,A3000\nGERHARD KLAUER MATTISON,,Y4000\nINMAN INVESTMENT MGMT,,F2100\nExecutive,Safeway Stores inc,G2400\nWILLIAM JEFFERSON CLINTON FOUNDATIO,,Y4000\nBANKER,BNAFUS,B2000\nPHARMACIST,MCGUFFEE DRUG INC.,Y4000\nReal Estate Investment/Mgmt,Self employed,F4000\nCONESTOGA TITLE INSURANCE,,F4300\nEXECUTIVE,NORQUICK DISTRIBUTING,Y4000\nAUDIOLOGY,MONCLAIR STATE UNIVERSITY,H1700\nMayor,City of Perris,X3000\nBOARDMEMBER,S&J INVESTMENTS,J1100\nAttorney,\"Gilmore & Bell, Pc\",J1200\nPHYSICIAN,MILLTOWN FAMILY PHYSICIANS I.N.C./P,H1100\nVP,INTERIM TECHNOLOGY,G5250\nBARDES & GLEASON INSC AG,,Y4000\nDoctor,Southeast Orthopedics,H1130\nOWNER/ACCOUNTANT,KENT MANAGEMENT LLC,Y4000\nProfessor & Dean,NYC College of Nursing,H5150\nVICE CHAIRMAN,METLIFE,F3300\nDIRECTOR,WEBCO GENERAL PARTNERSHIP,D9000\nPRESIDENT,UNIV. PROF. OF IL,L1300\nCATHEDRAL BOOKSTORE,,G4600\nPROFESSOR,HARVARD SCHOOL,H5100\nFOUN,ROUNDTABLE HEALTHCARE PARTNERS,H4100\nHOME BU,OLSON INVESTMENT GROUP INC.,F7000\nEmployee,Aarons,J1100\nATTORNEY,CASEY GERRY LAW OFFICES,K1000\nFinance,Fortress Investments,F2700\nSALES MANAGER,HERITAGE PLASTICS COMPANY,Y4000\nCeo,Attalus Capital,Y4000\nHOLLYWOOD MUSEUM AND GARDENS,,X4200\nLAWYER,NEW YORK STATE OFFICE OF THE ATTORNEY,X3200\nPOST GRAD CTR FOR MENTAL HEALTH,,J7400\nVice President,Glens Falls National Bank,Z9500\nINFORMATION REQUESTED,METROPOLITAN TRANSPORTATION COMMISSION,T4000\nATTORN,\"GRANT, KOHUALINKA & HARRISON\",K1000\nAttorney,\"Sorling,Northrup,Hanna,Cullen&Cochran\",K1000\nPresident,Bank Of Rhode Island,F1000\nSANTA CLARA FIRE DEPARTME,,X3000\nEXEC,BEUTOPIA CORP,Y4000\nWI INVESTMENT BOARD,,Y4000\nVICE-PRESIDENT,REYNOLDS-LAND INC.,Y4000\nBARTLETT BECK & HERMAN,,K1100\nSPECTRUM FITNESS CLUB,,Y4000\nKARMK CORP. DBA/ PRO MARK/SELF EMPL,,Y4000\nVICE PRESIDENT,\"HANKINS, INC.\",Y4000\nDU PONT COMPANY ENGINEERING DEPT,,M1000\nTECHNICAL S,GYLLING DATA MANAGEMENT,Y4000\nProfessional Staff M,Senate Armed Services Cmte,Y4000\nDENTIST,ABBEY DENTAL,H1400\nAttorney,Private Law Firm,K1000\nREAL ESTATE/BUSINESS,\"SAV. ENTERPRISES, INC.\",F4000\nVICE PRESIDENT,\"RB PROPRIETIES, INC.\",Y4000\nATTORNEY,JAMECK DEVELOPMENT INC.,Y4000\nResearcher,Ucsf,H5100\nPROFESSOR EMERITUS,WASHINGTON UNIVERSITY,H5100\nATTORNEY,NINIGRET GROUP,Y4000\nREAL ESTATE AGENT,HALSTEAD,Y4000\nTOYOTA LIFE OF ARIZONA,,Y4000\nDM STEEL CO,,Y4000\nGraphic Artist,Self-Employed,J1200\nEXECUTIVE,HOFFMAN CORP,J1100\nPHYSICIAN,CLAREMORE SURGEONS,H2100\nPHYSICIAN,S. HILLS FAMILY MEDICINE,Y4000\nACCOUNT EXECUTIVE,LOREAL USA,M3300\nAttorney,Miller law Firm,K1000\nBusiness Information,Wyeth,H4300\nATTORNEY,NC WASHINGTON,Y4000\nCEO,American Slide Charts,M9000\nATTORNEY,\"AKIN, GUMP ET AL.\",J1100\nCEO,John Pollard,Y4000\nAttorney,\"Howell & Thornhill, Pa\",J1200\nVP,EDWARDS & KELLEY,B4000\nPharmacist/Nutritionist,Joseph Dimatteo Inc,Y4000\nFederal Contract Spe,AOUSC,Z9500\nDENTIST,RANDEL G DIETZE DDS,H1400\nDELAWARE MANAGEMENT COMPANY INC,,F2100\nFederal Government Relations,Principal Financial Group,Z9500\nDEPUTY DIRECTOR LA COUNTY D,RETIRED,X1200\nESL TUTOR,RETIRED/ESL TUTOR,X1200\nWHEELINGS DISPOSAL,,E3000\nPRESIDENT OF HOTEL/C,G.N.O.C. CORPORATION,Y4000\nSTUDENT,KROGER CO PHARMACY TECHNICIAN,G2400\nWILSEY BENNETT,,T3100\nSALES,MARK SPACE,Y4000\nInsurance,I.O.A.,Y4000\nGEOLOGIST,WILL-DRILL RESOURCES,E1150\nBUSINESSMAN,IR INC.,Y4000\nC. E. O.,WRIGHT TREE SERVICE,B3600\nTravel,Adventure Travel,Y4000\nExecutive,Greenwood Mount Olivet Co.,G5400\nJAMES J ANDERSON CONSTRUCTION,,B1000\nBOARD MEMBER/SECRETARY OF THE BOARD,PLANNED PARENTHOOD OF CENTRAL OHIO,Y4000\nBusiness Owner,Design Resources,Y4000\nPHARMACIST,HICKORY HILL PHARMACY,H1750\nConsultant -Higher Education,Self employed,G5200\nPRESIDENT,F & M BANK,J9000\n\"BAAL & O'CONNOR\",,K1100\nPRESIDENT-COMP ST BD MED EXAMINERS,,H1130\n\"Writer, Educator\",\"Self, Volunteer\",C1100\nHOME MAKER,NONE,F1100\nASTORIA FEDERAL SAVINGS/VP/SR MANAG,,F1200\nInformation Requeste,n,H4300\nDeveloper,Jeck & Company Inc,B2000\nATTORNEY,LESTER SCHWAB KATZ & DWYER,K1000\nLAWRENCE-AMES LTD,,Y4000\nSecretary of State,State of Nebraska,X3000\nIT SPECIALIST,BUREAU OF PUBLIC DEBT,Y4000\nOWNE,HANDICAP SVCS. OF JACKSONVILLE,Y4000\nMICROBIOLOGIST,FAREVA,Y4000\nCONTRACT,LUNDIN ROOFING COMPANY LLC,B3000\nVice President,\"Meridican, Inc\",Y4000\nSALES,GHM,Z9500\nInformation Requested,\"Ensync Interactive Solutions, Inc\",Y4000\nBANKER,CITY BANK JEYAS,F1000\nCPA,Milroy Inc,Y4000\nDIRECTOR,SARON BUSINESS SYSTEM,Y4000\nRETIRED,PENN STATE UNIVERSITY,Z9500\nINVESTOR,SNOWMARK CORP.,Y4000\nLEG,LANGE & DE VINE LAW OFFICES LLC,K1000\nREAL ESTATE BROKER,B J MARTIN & CO.,J7400\nENVIR ACTIVIST,,JE300\nATTORNEY,GIBSON & HUGHES,Y4000\nWASHINGTON MEIN PACK,,Y4000\nATTORNEY,FLELAHMAN HILLARD,Y4000\nFNP,\"ABUNDANT HEALTH CARE, INC.\",H3100\nENGINEER,DIGITAL RESOURCES INC,Y4000\nLEXUS OF A C,SHORE TOYOTA,T2310\nOWNER,SANCTUARY SALON AND SPA,Y4000\nSANOCKI NEWMAN AND TURRET,,Y4000\nPartner,\"O;Neill, Athy and Casey\",K2100\nN/A/HOUSEWIFE/VOLUNTEER,,J7400\nOWNER,THE WAYS BOATYARD LLC,Y4000\nCHAIRM,THE DYSON-KISSNER-MORAN CORP,F2600\nContractor,\"Mann Bros., Inc.\",Y4000\nSales,Okeechobee Materials,Y4000\nATTORNEY,MARTIN COUNTY FL,X3000\nEDUCATION,,F2600\nPRESIDENT,LA AMAPOLA INC.,Y4000\nMADISON PARK BANK,,F1100\nExecutive,Standard Insurance,F3100\n,CLARK ENGINEERING & SURVEYING P.C.,B4300\nJAMES E WOODSIDE & CO,,Y4000\nEngineer,ITT Industries,C5000\nExecutive Vice Presi,Superior Floors,F4500\nBANKER,METCALF BANK,Y4000\nPRESID,ALASKA SIGNS & BARACADES INC,Y4000\n\"MANAGER, SOUTHEA\",\"TRANSAMMONIA, INC.\",A4100\nDIRECTOR OF TALENT ACQUISITION,WHIRLPOOL CORPORATION,M4300\nWINBURN AND JENKINS,,K2000\nPublic Relations,McNeely Pigott & Fox,G5210\nFOUNDING PARTNER,THE LIVINGSTON GROUP LLC,K2000\nELLZEY HEATING,,Y4000\nAttorney,Fulbright & Jaworski LLP,J7400\nAccountant,Eddie I Moriguchi CPA,F5100\nImplement Dealer/Far,Self Employed,A4200\nOWNER,CORDI WINERY,G2820\nATTORNEY,PARTNER OF KATTEN MUCHIN ROSENMAN LLP,Z9500\nSurgeon,Swedish Cancer Institute,H1100\nRealtor,Cronerstone Comm. Real Estate,F4000\nManager Government Relations,SRP,K2000\nUNEMPLOYED,UNEMPLOYED,G1000\nAIR TRAFFIC SYSTEMS SPECIALIST,U.S. GOVERNMENT D.O.T./F.A.A./AIR T,X3000\nEVP & PR,A. O. SMITH WATER PRODUCTS,M2300\nCAPITAL FO,,G5270\nProfessor of Mathematics,New York University,H5100\nIT MANAGER,DIRECTV,C2200\nBERNSTEIN COMPANY,,F4200\nSALES,SWANSON INDUSTRIES,M2300\nACCOUNTANT,JACK HUGHES & ASSOC,F5100\nBRIER MORTGAGE,,F4600\nOWNER,RADIANT OIL,E1100\nMANAGING DIRECTOR,BLACKROCK FINANCIAL MANAGEMENT,F2100\nPRESIDENT,ARTHUR J. HURLEY COMPANY/PRESIDENT,Y4000\nDEPUTY GENERAL MANAGER,AEROVIRONMENT,M2300\nPresident,Fox-Wood & Wood Tax Attorneys,G1200\nEMMONS CO,,Y4000\nFinancial Executive,PRATT & WHITNEY,D2000\nPROPERTY MANAGER,SELF,J1100\nSTRATEGIC WEATHER SERVICE,,Y4000\nPRESIDENT,BOB LAWRENCE AND ASSOC.,K2000\nCODIKOW CARROLL GUIDO,,K1000\nRADIO PRODUCER,SELF,C2100\nATTORNE,JOEL R. JUNKER & ASSOCIATES,K1000\nPRESIDENT,ECLIPSE AVIATION CORP,T1600\nAttorney,Schwarzwald Mcnair & Fusco LLP,J1200\nInsurance Executive,\"Delmarva Underwritiers, LTD\",Y4000\nPresident & CEO,N-Star Community Bank,Y4000\nMD,TriHealth,H1100\nTELECOMM MANAGER,COX COMMUNICATIONS,C2200\nPresident,\"MBS Associates, LLC\",Y4000\nstudent,student,H5150\nComputer Technician,\"Hi-Lex Controls, Inc\",Y4000\nMEAT BROKER,,G2350\nOPTOMETRIST,EYE CARE 4 U S.E.,Y4000\nESTEE LAUDER COMPANIES,,J7150\nPARTNER,EMERALD BAY EQUITY,Y4000\nBUSINESS OWNER,XANADU SYSTEMS,C5100\nREALTOR,SELF_EMPLOYED,F4200\nSALES EXECUT,RESTAURANT ASSN OF MD.,J7400\nVENTURE,CROSSPOINT VENTURE PARTNERS,Y0000\nVice President,Legacy Bank,F1100\nOPHTHALMDOGIST,SELF-EMPLOYED,H1120\nPublic Health Program Manager,Engenderhealth,Y4000\nCONTRACTOR,LAKEVILLE CONSTRUCTION INC.,B1500\nPULASKI BATTERY CO,,M2300\nANESTHESIOLOG,WENINGER MEDICAL CORP,H1130\nT B A INSURANCE INC,,F3100\nREAL ESTATE BROKER,BOBBY SHAW REALTY,F4200\nBusiness Developer,SESCO,E2000\nBLACK JACK BONDING,,Y4000\nOWNER,\"MON VALLEY INTEGRATION, LLC\",Y4000\nSENIOR DIRECTOR/ CORPORATE FINANCE,KB HOME,B2000\nCEO,KIPP Foundation,Z9500\nAttorney,Leader & Berkon LLP,J5100\nWHITE,BLESSING,Y4000\nArchitect,STA Architectural Group,B4200\n\"CEO,\",RELAYRIDES,Y4000\nTUTOR SALIBA CORP,,B2000\nDirector of Communic,BelmontCorp,H2200\nOwner,Willmar Electric,B3200\nOCEAN YACHTS,,Y4000\nU I C,,Y4000\nCEO,\"Science & Tech. Int'l\",Y4000\nadminstrator,friend of blackwater,Y4000\nCOLUMBIA MEDICAL CENTER/SELF/OWNER/,,H2100\nPOOL GUY,,Y4000\nPresident,Power Buying  Dealers (PBD),G4300\nDirector of Operations,Amer-I-Can,Y4000\nPartner,Duane Morris LLP,H2200\nPORT BLAKELY TREE FARNS L P,,A5000\nExecutive,D.A.B. Constructors,B1000\nReal Estate Investment,Cathartes Private Investments,F2100\nPRESIDENT,WESTERN MUTUAL INSURANCE CO,J1100\nMANUFACTURING EXECUTIVE,JAYCO,Y4000\nMORTGAGE BANKER,CHASE,Y4000\nOWNER,\"THE SOAP OPERA, INC\",G4600\nPAPP CLINIC,,Y4000\nTHE EDDIE MAHE COMPANY,,K2000\nCOUNSLER,SELF,G0000\nInterior Decorator,Symonds Associates,Y4000\nManufacturing Manage,Special Devices Inc,Y4000\nPHYSICIAN,\"INTEGRATED WOMEN'S HEALTH\",H1100\nINFORMATION REQUESTED PER BEST EFFORTS,ELLISON DOZER SERVICE,Y4000\nGovernment Relations Consultant,Fleishman-Hillard Government,K2000\nBECK REDDEN SEACRIST,,Y4000\nAdministrator,CIty of St Paul,X3000\nCEO/PRESIDENT,OHCA,Y4000\nCEO,CSMI,H5300\nCivil Engineer,Dept of Defense,X5000\nExecutive,Capital Reserve Life Insurance,F3300\n\"REGIONAL DIRECTOR, OPERATIONS\",EXTENDICARE,H2200\nSERVICE SUPPORT,JOHN DEERE,E1500\nEXECUTIVE,COMPUTER AID INC,C5130\nPresident,Wise Group Inc.,Y4000\nPRESIDENT,MCGRATH ELECTRICAL INC.,B0500\nRETIRED,,B5500\nPresident,Jones Realty & Construction,B1500\nDirector Of Training and Organ,Pearl River Resort,Y4000\nConsultant,Monfort & Wolfe,Y4000\nCRNA,Carolinas Medical Center,H1710\nManager,Pumps & Equipment Sales,Y4000\nDoctor,Jaimes Medical Group,Y4000\nPARTNER,PALO ALTO MEDICAL CLINIC,H2000\nCOMPUTER ANALYST,\"DB-NET, INC.\",Y4000\nHOLLYWOOD PICTURES COMPANY,,Y4000\nHomemaker,.,F2100\nBusiness Manager,Laborers International Union of North,Y4000\nMUNICIPAL INV. B,MORGAN STANLEY CO.,F2300\nCOLLEGE TRUST,,X4000\nREAL ESTATE DEVELOPER,BANK OF AMERICA/REAL ESTATE DEVELOP,F1100\nCEO,Foretravel Motorcoach,Y4000\nEXECUTIVE DIRECTOR,COOPER KIRK PLLC,K2000\nDIRECTOR - WORLD TECH,COBB VANTRESS,A2300\nCEO,\"HUDDLESTON ENTERPRISES, INC.\",Y4000\nGEN CONTRACTOR PRES,,B1000\nCHAIRMAN AND CHIEF EXECUTIVE,SS&C TECHNOLOGIES INC.,F2000\nMortgage Broker,Country Funding Inc,F4600\nHARMON MGMT,,Y4000\nCUSTOM CARPENTRY,,Y4000\nAttorney,\"Conlee, Schmidt & Emerson LLP\",K1000\nController,Morgan Melhub,Y4000\nAccount Executive,Corporate Synergies grou,Y4000\nHOMEMAKER,SPOUSE OF MEMBER,G5300\nINFORMATION REQUESTED,TX MX INVESTIGATIVE NETWORK,Y4000\nArchitect,Pafkel Vinely Arch,Y4000\nBANKER,INDEPENDENT ALLIANCE BANK,Y4000\n\"Senior VP, Member and Consumer Service\",Food Marketing Institute,G2400\nINVESTMENT SERVICES,STATE STREET BANK AND TRUST CO,F2000\nDIRECTOR OF MAINTANCE,Z JETS,Y4000\nWOMENS HEALTH PTRS,,H1100\nCPC INTERNATIONAL,,G2100\nLAWYER,AMERICAN BANKERS ASSOCIATION,F1100\nSenior Account Executive,Advanced Technology Services,G5200\nTHOMAS LEE COMPANIES,,Y4000\nPHYSICIAN-PSYCHIATRIST,,H1100\nretired teacher,Los Angeles Unified Schools,Z9500\nAttorney,\"Hacker, Kanowsky & Braly\",K1000\nADMINISTRATOR,HORIZON BLUE CROSS BLUE SHIELD NJ,F3200\nCLUB TAN RESORT,SELF,Y4000\nTUCKER AND ASSOCIATES,,B4300\nTaco Bell Franchisee,\"Tacala, Inc\",G2900\nOWNER,PSI,C5000\nIT and Internet specialist,Self employed,G5000\nVice President,New Edge Networks,Y4000\nFARMER,KAMALJIT S. TAKHAR,Y4000\nBIOTECHNOLOGY WRITER/CONSULTANT,SELF,Z9500\nYOGA INSTRUCTOR,YOGA MATTE,Y4000\nHead of Operations,Zurich Financial,Y4000\nSAIVA SCHLESINGER SATZ AND GOLDSTEI,,K1000\nSELF-EMPLOYED,THE WINDSOR COMPANY,K1000\nResearch Manager,Pearson Knowledge Technologies,J1200\nPRESIDENT,STOLLER GROUP,Y4000\nManagement,Cedar Fair,Y4000\nSALES,ISG INC.,Y4000\nCITY OF FARMINGTON,,X3000\n\"SVP Distribution, Blockbuster\",Viacom,C2000\nREGISTERED NURSE,LEGACY HEALTH,H2000\nDISTRIB METABOLIFE,RETAIL OUTLET,H4600\nOWNER,DOLE FOOD COMPANY,A1400\nconsultant,Workplace Development Incorporated,F5500\nPresident,BestWay Distributing,Y4000\nALL SOUTH COPIERS,,Y4000\nRN,CENTRAL ARKANSAS VETERANS HEALTHCARE,Y4000\nDoctor,Catholic Health Care West,H2100\nEDGEPARK SURGICAL SUPPLY,,G4600\nOWNER,OCEAN TITLE & ABSTRACT INC.,F4300\nEAM LAND SERVICES,,Y4000\nATTORNEY,PRESTON GATES ELLIS ET AL,K1000\nWaxman Cavner & Laws,Principal,H5000\nWHITE MOUNTAINS INS GROUP,,F3400\nMADISON COUNTY TRANSIT,,T4100\nEXECUTIVE,LEWMAR ENTERPRISES,Y4000\nFRANCHSING,RE/MAX LLC,F4200\nCHAIRMAN & CEO,DFB PHARMACEUTICALS,H4300\nJournalist/Public Re,Levitt PR Group,Y4000\nSELF-OWNER BRD CHWN,,Y4000\nManaging Director,BeechTree Partners,Y4000\nPEQUOD ASSOCIATES,,G5200\n\"Village Associates, Inc\",President,F4000\nPORTFOLIO MANAGER,CAPITOL GROUP,F2100\nREAL ESTATE,FC HOPKINS CONSTRUCTION,B1500\nROYAL IMEX CO,,G3500\nFIRST BANK,EXECUTIVE VICE PRESIDENT,F1000\nSOLAR TURBINES,,Y4000\nEXECUTIVE DIRECTOR,CCOF,Y4000\nVP Corp Quality & Reliability,AM General,D8000\nPresident,Q-Bird Productions,Y4000\nCONSULTANT,BT,Y4000\nAttorney,Callister Nebeker An,Y4000\nADCO ELECTRICAL CORPORATION,,B3200\nTHE HOLLYWOOD REPORTER,,C1100\nManager,Dept of Veterans Affairs,X3000\nEXECUTIVE,THL PARTNERS,F2600\nVP,COMMUNITY HEALTH SYSTEMS,H2000\nUniv Prof,retired,X1200\nVice President,Dorel Steel Erection Corporation,J1200\nADVERTISING,KIOSK MEDIA,K0000\nMarketing,L A County,X3000\nSALESMAN-INSURANCE,SELF-EMPLOYED,F3100\nMD,Independent Anesthesia,H1130\nFFI PRESIDENT,ADVANCED PCS,H4400\nATTORNEY AT LAW,NONE,K1000\nPollster,Greg Smith & Associates,Y4000\nUTAH SYMPHONY GUILD BOARD,,C2900\nInvestment Advisor,Performance Trust,F2100\nLAWYER,\"LAW OFFICES OF MANUEL KLAUSNER, P.C.\",K1000\nOWNER,SPITZER MANAGEMENT,Y4000\nOwner,Diversion Fabricators,Y4000\nPROFESSIONAL,KPMG LLP,F5100\nEXECUTIVE,BRISCO INC.,Y4000\nANESTHESIOLOGIST,MAPC/ANESTHESIOLOGIST,Y4000\nCENTRAL OK ANESTHESIOL,,H1130\nAttorney,Goldberg,K1000\nFIRST NATIONAL BANK OF HO,,F1100\nGRANUM LIMITED,,Y4000\nPresident,Palace Furniture,Y4000\nFERTITTA ENTERPRISES,STCI,G6500\nLawyer,BKGG,Y4000\nOwner,Action Appliance,Y4000\nEXECUTIVE,DYNASTY GROUP,B4400\nCHAN,UNIVERSITY OF NEVADA LAS VEGAS,H5100\nAttorney,Hunton & Williams Llp,K1000\nIMAGE CARE LLC,,Y4000\nL M SANDERS & SONS,,J5100\nGRENSTEIN ASSOCIATES,,Y4000\nSenior Vice Presiden,Wilmington Trust Company,F1100\nChairman,Central Federal Savings & Loan,F1200\nORTHOPAEDIC SURGEON,ORTHO SPECIALISTS OF THE CAROLINAS,H1130\nPartner,Vincent B. Zaninovich & Sons,A1400\nSYSTEMS MANAGER,KRAFT FOODS,G2100\nATTORNEY,LAW FIRM OF RAVI BATRA,K1000\nVP SALES & CUSTOMER,EXXON MOBIL LUBES & PET SPEC,E1110\nPresident,Healthfirst,F3200\nOwner - Hvac Contractor,\"Mid-Atlantic Air, Inc\",B3000\nSr Vice President - Operations,GuideOne Insurance,F3100\nWardrobe stylist,Self-Employed,G0000\nEXECUTIVE,1-800-FLOWERS,A8000\nDirector,NJM Insurance Group,F3100\nKRESBERG CORPORATION,,Y4000\nORAL SURGEON,COLE & CLARK OMS GROUP,H1400\n,GLOBAL SEASCAPE VENTURE GROUP LTD.,Y4000\nSCHICK DATABANK,,Y4000\nGREENBRIER TECHNICAL SERVICES INC,,Y4000\nPRESIDENT,RETAIL PROPERTIES,F4000\nLOS ANGELES CLIPPERS,,J5100\nVeterinarian,Albemarle Animal Clinic,A4500\nPUBLISHER,INSIDE HIGHER ED,J1200\nATTORNEY,\"JONES, SWANSON, HUDDELL, & GARRISON, L\",K1000\nTrack & Field Coach,Sandia Prepatory School,J1200\nVeterinarian,Iowa VMA,A4500\nExecutive / Inventor,PK Contracting,B1000\nEXECUTIVE,\"NYX, INC.\",Y4000\nBELL MAISON,,Y4000\nELLISON REALTY,,F4200\nMEDIATOR,MARKS ADR LLC,Y4000\nGES EXPOSITIONS,,Y4000\nGrower,Walcott Turkey Farms,A2300\nManaging Director,Prime Policy Group,J1200\nCEO,SPECTRUMFIVE,C4500\nC.O.O.,LITIGATION SERVICES L.L.C.,Y4000\nOPTHALMOLOGIST,MARIETTA EYE CLINIC,H1120\nCONSULTANT,\"DIXON/DAVIS MEDIA GROUP, LLC\",JE300\nTRUCK DRIVER,WATTERS & MARTIN INC.,Y4000\nSVPDIVOPSWALMARTUSD,WAL-MART STORES INC.,G4300\nFoundation Director,Monroe Clinic,H2100\nInformation Requeste,Simpson Thacher & Bartlett,K1000\nMarketing consultant,The Peer Group,J1200\nCIO,VAIL RESORTS,T9300\nPRESIDENT FINANCIAL ADVISOR,BIG INVESTMENT SERVICES,Y4000\nCOMPUTER DESIGN/WRIT,SELF-EMPLOYED,Y4000\nSALES,ROAD MACHINERY,Y4000\nBUSINESS OWNER,TOP LINE MANAGEMENT,Y4000\nChairman & C.E.O.,ARAMARK CORPORATION,G2910\nLAW & ECONOMIC,CORNERSTONE RESEARCH,Y4000\nHEALTHFIRST/PRESIDENT/CEO,,H3000\nPENN DELCO SCHOOL DIST,,X3500\nTANDLER TEXTILES,,J1200\nAttorney,\"Childrens' Hospital\",H2100\nINVESTMENTS,STONE POINT CAPITAL,F2600\nENERGY EXECUTI,DOMINION ENERGY INC.,E1620\nowner,Cantrell Properties,F4000\nProfl Terr Manager,Wyeth,H4300\nPRESIDENT,BELL SOUTH ENTERPRISES,C4100\nFINANCIAL ADVISOR,CREDIT SUISSE SECURITIES,J5100\nExecutive,Lewis Operating Corp.,F4500\nREAL ESTATE AGENT,PICARD & BONNETTE RE ASSOC LLC,Y4000\nEXECUTIVE VICE PRESIDENT,P.A.A.,Y4000\nPARTNE,ECKERSLEY ENTERPRISES L.L.C.,Y4000\nEXECUTIVE,CH2M HILL INC.,B4000\nAnalyst,Ohio National Life Ins.,F3300\nMGR REVENUE MGMT,BNSF RAILWAY COMPANY,T5100\nAttorney,\"Tolmage, Peskin, Harris & Fali\",K1000\nPOLICE LIEUTENANT,TOWN OF NEW CANAAN/POLICE LIEUTENAN,X3000\nOwner,Rumpke,Y4000\nEMSI,,Y4000\nInvestment analyst,Citigroup,J1100\nINVESTOR-OIL AND GAS,SELF,E1100\nCROSLAND COMPANY INC,,F4200\nGENERAL,PENISULA DEVELOPMENT GROUP,Y4000\nEXECUT,SHORE MICROSURFACING SYSTEMS,C5100\nENGINEER,,X3000\nAttorney,\"Law Office of Joseph J Pulgini,PC\",K1000\nTAX ATTORNEY,CITGO,Y4000\nOWNER,RED JACKET ORCHARDS,Y4000\nANALYST,NATIONWIDE INSURANCE,F3100\nSTEP COMPANY,,Y4000\nEngineer,Ruhlin Co.,Y4000\nOWNER,GOLDEN ZHENG HARMONY QIGONG,Y4000\nCFO,Radiance Technologies,C5120\nOptometrist,Kaiser Permante,H3700\nPRESIDENT,R J P,G1200\nAuditor,State of Texas,X3000\nBEACON CONSULTING GROUP,,H0000\nPARSONS,COST ENGINEER,B4400\n\"PERLMAN REAL ESTATE, INC\",,F4200\nOWNER,GILDEA ENTERPRISES,Y4000\n\"MEMBER, PRINCIPAL\",\"ACCELERATING POTENTIAL, LLC\",Z9500\nCONSTRU,W.H. LYMAN CONSTRUCTION CO.,B1500\nTEACHER,MONTCLAIR-KIMBERLY ACADEMY,Y4000\nmanager,freedom transport inc,T0000\nRANCHER,SILVIES VALLEY RANCH,A3000\nCEO,\"Bozutto's Inc.\",Y4000\nPECHANGA TRIBAL COUNCIL,PECHANGA INDIAN RESERVATION,G6550\nLAWYER/AUTHOR,CONSTANTINE CANNON LLP/LAWYER/AUTHO,K2000\nA,\"HARRISON, NORTH, COOKE & LANDRETH\",Y4000\nVICE PRESIDENT,LA DEAU COMPANY,Y4000\nBrigadier General,US ARMY,X5000\nPhysicist,Johns Hopkins,H5100\nMANAGER,RUTLAND PLASTICS,Y4000\nTMI AGENCY/TOM MICHAEL INSURANCE/IN,,F3100\nDir Industrial Rel,\"Air Products and Chemicals, Inc.\",M1000\nKUKRA ENTERPRISE IN,,Y4000\nJUDITH STRULL,PSYCHIATRIST,H1110\nKRAMER LEVIN NAFTAL,,K1000\nCPA,\"CANTEY, TILLER, PIERCE & GREEN\",Y4000\nSALES MANAGER,BRAND TECH SCIENTIFIC TECHNICAL,Y4000\nPREVENTIVE HEALTH AND WE,HEALTHTANK,Y4000\nFOUNDATION,CLANELL ENTERPRISES INC.,J7400\nD.I. Operator,\"Sweetheart Cup, Inc.\",M7000\nTRADE SALE,P. S. INTERNATIONAL LTD.,Y4000\nManager,Cate - Idaho Equipment,Y4000\nAttorney,\"Pennington, Moore, Wilkinson, Bell & D\",K1000\nCEO,VALERO L.P.,E1160\nATTO,LAW OFFICES OF ROBERT CLIFFORD,K1100\nTEACHER NURSING,,Y4000\nAttorney,Goldberg Kohn Bell,Y4000\nVICE CHAIR & CEO,SALLIE MAE,F1410\nCommidities Trader,Sempra Energy Trading Corp.,E1620\nPHYSICIAN,LSU HSC SHREVEPORT,H5150\nVERITAS ADVISORS INC,,F0000\nCAMBRIDGE ENERGY RESEARCH ASSOCIATI,,E1000\nBROUSSARD BROS,,Y4000\nPresident,\"Southern Landscaping & Construction, I\",B1500\nAccountant,Watkins Meegan,Y4000\nOWNER/ PHARMACIST,GRANT CO DRUGS WILLIAMSTOWN LLC,Y4000\nINTERVENTION ASSOCIATE,,Y4000\nFISHING CHARTER SERVICE,,E4100\nKELEHER OUTDOOR ADV,,G5230\nOWNER,MACAGO MEXICAN RESTAURANT,G2900\nOwner,Evergreen Subaru,T2300\nExecutive Director,HEC,Y4000\n\"Investment Manager,\",\"Cambridge Trust, State of New Hampshir\",Y4000\nINDEPENDENT CONSULTANT,NOT EMPLOYED,Y1000\nDUKE MEDIA ENTERPRISES,,Y4000\nBUSINESSMAN,,JH100\nPROFESSOR,NORTHERN MI UNIVERSITY,H5100\nADAMS RD DEVELOPMENT CORP,,F4100\nART TEACHER,WINSTON-SALEM FORSYTH COUNTY SCHOOLS,X3500\nBUSINESS OWNER,H&H MOBIL TOWING SER/BUSINESS OWNER,T3100\nEXEC/LAWYER,OGDEN NEWSPAPER INC/EXEC/LAWYER,C1100\nEX. DIRECTOR,ALASKA CRAB COALITION,E4100\nSTATISTICIA,UNIVERSITY OF MINNESOTA,H5100\nINTERNATIONAL ENERGY SERVICES,,E1000\nCONSTRUCTORS OF COLORADO SPRGS,,B1500\nSIDNEY & GREFE,,K1000\nInvestment Mgmt,Permal Group,F2100\nREAL ESTATE DEVELOPMENT,MOUNTAIN DEV. CORP,Y4000\nPresident,Vandermost Consulting,J1100\nPresident,Talent Buyers Network,Y4000\nCPA,\"COHEN AND COMPANY, LTD\",F5100\nManager,Lockheed Martin Corp.,D2000\nEXECUTIVE,APPLIED MINDS INC.,Y4000\nAttorney,Horvitz & Levy LLP,Z9500\nLENOWES & BLOCHER,,X4100\nProgram Director,Sioux Empire CX,Y4000\nPRESIDENT,A. D. MORGAN CORPORATION,Y4000\nRETIRED CIVIL SERVICE GS-1,USAMICOM,X1200\nOWNER,BEHR SNYDER GROUP INC.,Y4000\nArchitect,Cameron Armstrong Architects,B4200\nEVP Corporate Planni,\"Barton Beerts, Ltd.\",G2820\nW B PERKINSON AND ASSOC LTD,,H1400\nCARPET,SELF EMPLOYED,Y4000\nSELTZER CAPLA ET AL,,J1100\nPRESIDENT/FOOD DISTR,ALOHA GOURMET PRODUCT,Y4000\nGLEOFANTI@HOTMAIL.COM,PEPPER CONSTRUCTION COMPANY,Z9500\nREALTOR,STANBERRY & ASSOCIATES,Y4000\nManager,Arrowmark Facility Services,Y4000\nOrganizational Facil,\"Groups-That-Work, LLC\",Y4000\nOWNER,RON GIROD CONSTRUCTION INC.,B1500\nHUMIDIFIER MFG & SALES,SELF,G0000\nPresident,Enterprise Protective Services Inc.,Y4000\nPRESIDENT,PROTOCOM CONSULTING,Y4000\n\"DIR, WAREHOUSE OPERATIONS\",FIRSTENERGY,E1600\nBRENNER FAMILY OF DEALERSHIPS,,Y4000\nASSOCIATE PROFESSOR,MED COLLEGE OF WISCONSIN /SCI,H5150\nINVESTOR,TRT HOLDINGS INC,E1150\nOwner,Lewis & Rasberry Realtors,F4200\nATTORNEY,RAINN,Y4000\n\"Rossmann and Moore, LLP\",,K1000\nADMIN SAP DATABASE,SANOFI PASTEUR,H4300\nOFFICE MANAGER,ALBERT E. RYCKMAN M.D.,H1100\nSenator,Senate of Pennsylvania,J5100\nPotomac Electric Company Political,,E1600\nEXECUTIVE,EVELYN ADAMS INSURANCE,F3100\nATTORN,\"DAVIS, WRIGHT & TREMAINE LLP\",K1000\nexecutive,Berry Investments,M3600\nCRNA,DH Anesthesia Svc Inc,H1710\nSOVRAN BANK CENTRAL SO,,F1100\nBARRETT & MULLAGNY,,K1000\n\"VP, FEDERAL POLICY\",NATIONAL ALLIANCE FOR PUBLIC CHARTER S,Z9500\nFAMAH,,Y4000\nPARTNER,THE TIBERTI COMPANY,B1000\nESSENCE MAGAZINE INC,,J7500\nPeople Against Drugs,,Z1100\nDIRECTOR OF AFRICAN PRESIDENTIAL ARCHI,BOSTON UNIVERSITY,H5100\nPROGRAM SPECIALIST,STATE OF TEXAS,X3100\n\"Manager, Gov't Relat\",Plug Power,E1630\nCTR. FOR HEALT,UMASS MEDICAL SCHOOL,H5150\nFinance,SKF USA Inc,Y4000\nPRESIDENT,FREEPORT LOGISTICS INC.,G5000\nOFFICE MANAGER,INTERNAL MEDICINE ASSOC.,H1130\nINVESTMENTS,FERRIS BAKER WATTS,F2000\nALFORD & ALFORD,,Y4000\nCONSULTANT,\"21TECH, LLC\",Y4000\nSelf-Employed,Tires Plus Bismark,Y4000\n\"LITTELL'S GAS SERVICE\",,Y4000\nCompliance Officer,Medco Health Solutions,J1200\nR B CONSTRUCTION INC,,J1100\nUROLOGY SURGICAL ASSOC.,,H1130\nBAY AREA UROLOGY ASSOCIATES,,H1130\nCSX CORPORATION,,J7400\nMANAGER,CROWN DEVELOPMENT,Y4000\nCONGRESSIONAL A,CONGRESSMAN HOEFFEL,X3000\nHOUSTON PLATING COMPANY,,G1100\nOWNER,CROSS SOUND FERRY SERVICE,T6200\nMarketing,Market Systems Inc.,J1200\nWEISFUSE AND WEISFUSE LLP,,K1000\nATTORNEY,THE KRANSOVE LAW FIRM,K1000\nEXECUTIVE,CITICORP CREDIT SVCS INC. USA,F1100\nGEORGIA PACIFIC CORP.,,A5000\n\"Vice President, Government Affairs\",University Hospitals,H2100\nRESEARCH,SMITH-KETTLENELL INSTITUTE,Y4000\nELANCO ANIMAL HEALTH-ELI LILLY,,H4300\nCEO,IDEC Pharmaceuticals,H4300\nCollege Administrator,Lesley University,H5100\nOWNER,HENRY H,X1200\n\"ENVIRONMENTAL SYSTEMS PRODUCTS, INC\",,T2200\nPresident,Corning Communications,C5110\nMARKETING DIRECTOR,MUSCO,M6000\nVP,Advance America,F1420\nNon-Profit Consultant,Retired,X1200\nTechnical Consultant,Computer Sciences Corporation,C5130\nSenior Program Manager,Alion Science Technology,Y4000\nTeacher,Ursuline College,H5100\nWINDSOR ASSOCIATION,,F2100\nJ KEITH FEILLE & CO PC,,Y4000\nJOSEPH HILTON & ASSOCIATE,,F4200\nFINANCIAL INVESTMENT CONSULTANT,GARRISON INVESTMENT GROUP,F7000\nEXTERMINATOR,,G5700\nPROGRAM MANAG,MICROSOFT CORPORATION,J1200\nSponsor,Houghton Mifflin,C1100\nART HISTORIAN,,J1200\nMANAGEMENT,SCHALLER TOOL AND DIE CO.,Z9500\nPRESIDENT,HEALTH SERVICES,H0000\nDIRECTOR,STAIR SKEDTHA,Y4000\nWEILER ARNOW MGT INC,,F4000\nESTRADA HINOJOSA & COMPANY,,F2300\nCROCE & CO ACCOUNTANCY CORP,,F5100\nCASINO,CASINO,G6550\nATTORNEY,HULSE & LACEY,K1000\nController,\"Savant Resources, L.L.C.\",Y4000\nCounty Commissioner,\"Sherburne County, MN\",Y4000\nState Director,US Senator Johnny Isakson,J1100\nCIVIL ENGINEER,PHOTO SCIENCE INC.,B4300\nOKLAHOMA COUNTY,,X3000\nARTHUR ANDERSEN & COMPANY,,\nReal Estate Dev,Ryan Cos,Y4000\nManager,\"Driscoll's Strawberry Associates, Inc.\",Y4000\nMILWAUKEE VANS,,Y4000\nGENERAL PARTNER,PEGASUS CAPITAL ADVISORS,F2100\nVP,WOLTERS KLUWER,C1100\nHOMEMAKERA,,F2700\nVICE PRESIDENT,DLZ,B4200\nOWNER,\"G2, INC\",Y4000\n\"Chief of Research, D\",State of CT,X3000\nPROFESSOR,UNIVERSITY OF CALIF IRVINE,Z9500\nOT,UNIVERSITY OF SOUTHERN INDIANA,H1700\nACCOUNTANT,PARKER HUNTER SPIVEY CPA,F5100\nOwner,Howard Mc Clure & Assoc.,Y4000\nBusiness Executive,MBI Inc.,J1100\nDEALER PRINCIPAL,KENWORTH SALES CO,Y4000\nLEROY SPRINGS & COMPANY INC,,Y4000\nSELF EMPLOYED,DR JERRY SCHOENBORN,Y4000\nJ R HOBBS CO ATLANTA INC,,Y4000\nMAGELLEN HEALTH CARE,,H3700\nIT CONSULTANT,\"JON NEWMAN & ASSOCIATES, INC\",Y4000\nFLORIDA MED CTR,,Y4000\nPsychologist-Healthcare Cosultant,Self employed,H1110\nMARKETING CONSULTANT,STERLING-RICE GROUP,Y4000\nREAL ESTATE OWNERSHIP,FOXCROFT INC.,Y4000\nattorney,\"peacock myers, pc\",Z9500\nKAHN REALITY,COLDWELL BANKER,F4200\nAttorney,\"Farrell Fritz, PC\",K1000\nINVESTOR,NORMAN METCALFE,J1100\nCEO,CANYON MEDICAL BILLING/CEO,Y4000\nExecutive,Promens,Y4000\nHEALTH PLAN OF NEVADA,,H1100\nPresident,Marks Intl Wines Inc,Y4000\nCollege Professor,RI College,H5100\nFLIESLER DUBB MEYER & LOVEJOY,,Y4000\n\"COBB, COBB & PACKARD\",,Y4000\nEASTER ASSOC INC,,Y4000\nLAWYER,SIFMA,F2100\nCELL THEAUPEAHES INC,,Y4000\nPRESIDENT,BROTHERS CHEVROLET OLDSMOBILE,T2300\nFARM CR SYS ASSISTANCE BOARD,,Y4000\nENGINEER,\"PICKETS ENGINEERING, LLC\",B4400\nGUNTHER R BAUER MD,,H1100\nGovernment Affairs,Columbia University,H5100\nCEO,\"Advertising.com, Inc.\",G5210\nNatural resources manager,self-employed,Y4000\nAttorney,Phico Insuance Company (In Liquida,Y4000\nEXECUTIVE,E-VISION INC.,Y4000\nWINGRA TECHNOLOGIES,,Y4000\nProfessor,UT Southwestern Medical School,H2100\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,EINSTEIN MEDICAL CENTER PHILADELPHIA,H2100\nFABRIC DISTRIBUTOR,COTTON BOLT,M8000\nSALTZMAN COHEN MASSARO & CO,,Y4000\nENGINEER - GNC - SENIOR,SPACEX,T1700\nProduction Designer,Self,G5200\nMANAGEMENT,SOLE TO SOUL,Y4000\nBusiness,Gordon Terminal Service Co.,Z9500\nM.D.,NKY DERM,Y4000\nSENIOR PROJECT MANAGER,WILSON MEANY,Y4000\nOwner,Matthew S Fedor Plc,Y4000\nMortgage Broker,Accurate Funding and Investment,Y4000\nMANAGER,BROWN BEAR SOFTWARE,C5120\nATTORNEY,FARRELL &AMP; CAMPO,Y4000\nEXECUTIVE,NCDR LLC,Y4000\nPRINCIPAL,GRICE FINANCIAL GROUP,F3300\nEXECUTIVE,E-BAY INC.,C5140\nNATI,INSTITUTE FOR SEFENSE ANALYSES,Y4000\nOF COUNSEL,ROBBINS GELLER RUDMAN & DOWD LLP,K1100\nKERRIGAN COUNTRY REALTY,,F4200\nPELINO & LENTZFFRIN,,Y4000\nCONSULTANT,KENT GLASS,B5300\nINSURANCE INVESTIGATOR,INFORMATION REQUESTED,F3100\nCHAIRMAN EMERITAS,LANK OIL COMPANY,E1100\nCONSULTANT,BHA,Z9500\nExecutive,\"ACS, Ltd.\",Y4000\nGREAT A&P TEA CO,,G2400\nSelf,Bobes Pizza Express,G2900\nCAPTAIN,MILLENNIUM MARITIME,Y4000\nINVESTMENTS/FARMING,SELF,F7000\nCPA,ANGLINREICHMANNSNELLGROVE,Y4000\nAccounting Clerk,Retired,X1200\nNATIONAL SOUTHWIRE,,M5000\n\"Attorney, Rfetired\",None (Retired),X1200\nFARM/FOREST PROPERTY MGR,SELF EMPLOYED,G0000\nManaging Partner,GCG Partners,F2500\nTECHNICAL MANAGER,AUSTIN POWDER,M1100\nMANAGER,A. T. & T./MANAGER,C4100\nRN,FIRST HOSPITAL,H2100\nEmergency Physician,Crestwood Hosp,H1100\nLEYDIG VOIT & MAYER,,Y4000\nSR. VICE PRESIDENT,COMERICA BANK,F1100\npresident,Bridge Row Communications,Z9500\nCEO,ITAC ENGINEERS& CONSTRUCTORS,B1500\nDesigner,Connie Krupin Interiors,Y4000\nDoctor,University of Al,H5100\nPHYSICIAN,UNIVERSITY OF PITTSBURGH,J7400\nEDUCATION,NATIONAL WRITING PROJECT,Y4000\nAT,NM STATE TAXATION + REVENUE DEPT,X3000\nIT Software Developer,Self-Employed,C5120\nCEO,HOSPITAL SAN PABLO,H2100\nHNTB  CORPORATION,,B4000\nPhysician,\"Jonathan S. Lyons, MD, LLC\",H1100\nAHTNA CORP,,J7500\nBRS INC,,B1000\nExecutive Vice Presi,Turner Broadcasting System  In,C2200\nOWNER,OWNER OF MC DONALDS,Y4000\nCUMMINS-ALLISON,,M4200\nFARMER,SOMERSET PLANTATION,Y4000\nPRESIDENT & CEO,RIVER COMMUNITY BANK,F1100\nCOMMUNICATIONS SERVICES,,C2100\n\"SENIOR VICE PRESIDENT, FINANCE\",FRONTIER AIRLINES,T1100\nLAFOURCHE TELE CO,,C4100\nJudge,East Mesa Justice Court,X3200\nCEO,\"CHOICE HOTELS INT'L INC\",T9100\nST GEORGE SCHOOL OF MEDICINE,,H5150\nEditor,self,C1100\nCODERYTE,,J1200\nANESTHESIOLOGIST,MONTGOMERY ANESTHESIA ASSOCIATES,H1130\nPRESIDENT,CERRELL ASSOC,Y4000\nMETROPOLITAN CHICAGO HEALTHCARE ASS,,H0000\nOwner,Souza Realty,F4200\nMEDICAL SCHOOL DEAN,UNIVERSITY OKLAHOMA COLLEGE OF MEDICIN,H5150\nGovernment Liaison,Clark County Government,J7500\nEXECUTIVE,ALLEN-HOFFMAN EXPLORATION CO.,Y4000\nCONSULTANT,\"BLACKSTONE, LLC\",F2600\nREGION MANAGER,RESOURCE MGMT SERVICE,A5000\nGOVERNME,R. DUFFY WALL & ASSOCIATES,T9100\nCEO,DL Saunders,T9100\nEconomist,Scudder Stevens & Clark,Y4000\nPilot,\"Benoit Flying Service, Inc\",Y4000\nEXECUTIVE,\"STIRLING AIRPORTS INT'L.\",T1600\nMARES STEINHILBER SWANSON,,F5200\nCOMMERCIAL PRESS,,C1300\nTrust administrator,Tersens Corp,Y4000\nComputer Programmer,Oracle America,Y4000\nADMINISTR,DEPARTMENT OF AGRICULTURE,X3000\nSALES,\"MEDI-PROMOTIONS, INC.\",Y4000\nEducational Administrator,Boston Public Schools,X3500\nPresident,Nano Film,C2400\naccountant,Clearwater Cardiovascular,H1130\nDentist,Kid Smiles- Dentistry for Children,Y4000\nReal Estate,Holladay Properties,F4000\nVP CURRICULUM,ITT ESI/VP CURRICULUM,Y4000\nInvestment Advisor,Birkelbach Corp,Y4000\nINVESTMENT BANKER,SEABROOK PARTNERS L.L.C.,Y4000\nEXEC,SCHOCK ENGINEERING CORPORATION,B4400\nSite Manager,Duke Fluor Daniel,B1000\nINVESTOR,KAIROS,Y4000\nA,\"PEACE RIVER CITRUS PRODUCTS, INC.\",A1400\nRETIRED CO,HOUSE OF REPRESENTATIVES,X1200\nAYNSK,Military Sealift Command,X5000\nASST. DIRECTOR,AMERICAN ENERGY CORP.,E1210\nRetired,Marquette General Hospital,H2100\nEngineering Coordina,Eda Staffing,G5250\nSTUDE,UNIVERSITY OF HAWAII AT MANOA,H5100\nRN,PANHANDLE COMMUNITY SERVICES/RN,Y4000\nHomemaker & Dance Teacher,Self Employed,H5000\nAPPLIED MATHEMATICIAN,TERAFLUX CORPORATION,Y4000\nAMERICAN INFUSION INC,,H3100\nRADIO BROADCASTING,RADIO PLUS,Y4000\nPRINCIPAL,CEISLER JUBELIRER MEDIA & ISSUE ADVOCA,G5210\nEXECUTIVE,NATIONAL HYDROPOWER ASSOC,Y4000\nMCKANZIE PATTERSON GROUP,,Y4000\nBUSINESS OWNER,MYERS & RIEDEL/BUSINESS OWNER,Y4000\nATTORNEY,\"GOLDSTEIN, DEMCHAK, BALLER\",K1000\nEXECUTIVE STAFF,KANSAS CAA ASSN.,JH100\nVICE PRESIDENT,SCOTT SPECIALY GASES,Y4000\nPresident/ Chief Executive Officer,\"Nat'l Assn of Broadcasters\",G5200\nStationary Engineer,Vassar College,H5100\nVice Pres Operations,Alied Transportation Co,Y4000\nINVESTMENT ADVISER,GRANOFF ASSOC.,Y4000\nPENN VALLEY CONSTRUCTORS,,B1500\n\"O'CONNER AND AHNNAN\",,K1200\nPRESIDENT,CASINFO LLC,Y4000\nPATERSON INSURANCE GROUP,,F3100\nRADIO SUPPLY INC,,Y4000\nPROGRAM MANAGER,ATK,Z9500\nMONARCH BEVERAGE INC,,Y4000\nSenior Vice President,Eads North America,D2000\nINVESTMENTS,\"LEE PROPERTIES, INC\",F4000\nTHE DYSON-KISSNER-MORAN GRP,,F2600\nSENIOR COUNSEL,\"SCHNUCK MARKETS, INC.\",G2400\nDir Annual Giving,New Canaan Country School,H5100\nSIEMENS,,Y4000\nPHYSICIAN,INTERNAL MEDICINE OF SW FL,H1100\nCOX & ASSOCIATES,,J6200\nLawyer,Law Office of Paul Adelman,K1000\nINFORMATION REQUESTED,\"SOLERA CAPITAL, LLC\",Y4000\nAMERICAN FINANCIAL CO,,Y4000\nC.E.O.,INTERNATIONAL TEXTILE GROUP,M8000\nGOVERNMENT RELATIONS,WEXLER & WALKER,K2000\nPROF.,OHIO UNIVERSITY,Z9500\nPresident,NCCBH,Y4000\nGUARANTY FEDERAL BANK,,F1100\nBEAN COUNTER,FORT WORTH CAMERA,J1200\nSCHUMACHER FINANCIAL SERVICES,,F5500\nOwner,\"Laser Tech, Inc\",Y4000\nSecretary - treasurer,Eli & Associates,Y4000\nCORP RISK MGR,UNITED PARCEL SERVICE INC,T7100\nC.E.O.,\"PERSHING, L.L.C.\",F2100\nENGINEER,VETRONIX RESEARCH CORPOR,Y4000\nPresident,\"John S. Noe, Dds\",H1400\nINS CARRIERS & MAINSTAY,,F3100\nDIRECT MARKETING,MAMMOTH MARKETING,Y4000\nEXECUTIVE,SALTCHUCK RESOURCES INC,T6200\nC.E.O. / OWNER,AIR MECHANICAL SALES,Y4000\nCIVIL ENGINEER,MORTENSON CONSTRUCTION,B1500\nConsultant,Ecos Llc,Y4000\nTRIBAL AU,MASHANTUCKET PEQUOT TRIBE,G6550\nATTORNEY,WILMERHALE LLP,Z9500\nSurgeon,Dr.julian Supplice Md,H1100\nAttorney,\"Seidel, Cohen, Hof & Reid\",K1000\n\"ROMAJAL, L.L.C.\",,Y4000\nLife Scientist,Environmental Protection Agency,X3000\n\"Director, Education\",Northrop Grumman,D5000\nEngineer,U S Environmental Protection Agency,X3000\nSoftware Engineer,Cisco Systems,JE300\nPresident,Seaside Com Dev Corp,Y4000\nSELF-E,PIPING TECHNOLOGY & PRODUCTS,M5000\nPresident,TEJAS WESTERN,Y4000\nRetired,dayton bd of education,X1200\nSalesforce.com,,G5270\nMedical Technologist,Putnam County Hospital,H2100\nBusiness Consulting,Sun Dog Consulting,Y4000\nRadiologist,Midwest Radiological Associates,H1130\nDIRECTOR,,E1600\nKEYBOARD ADVANCEMENTS IN,,Y4000\nSR. DIVISION UNDERWRITER,FIRST AMERICAN TITLE INSURANCE COMPANY,F4300\nJACOBSON MAYNARD TUSCHMAN,,Y4000\nPROJECT MANAGER,ELLIOTT ELECTRIC INC.,B3200\nSELF-EMPLOYED,DBEST PRODUCTS INC,Y4000\nVice President,DLZ Corp,B4000\nBENTLEY GRAPHIC COMM. INC.,,C1300\nPHYSICIAN,COPOF,Y4000\nEvent Producer,Great American Expo,Y4000\nYORK SCHOOL DEPT,,X3500\n\"OZZARD, WHARTON\",,K1000\nPHYSICIAN CONSULTANT,ASCENT CLINICAL QUALITY IMPROVEMENT,Y4000\nCATALOG SALES,AUDIO PARTNERS INC.,Y4000\nBUSINESS,HERITAGE HOMES OF NEBRASKA,B2000\nFINANCE,JAMES OATES,Y4000\nSECRETARY,ARCHER VOLKSWAGEN ARCHER KIA,J1100\nHAIFA CHEM,SALES MGR./HAIFA CHEM,Y4000\nRetired,Best Case Solutions,Y4000\nSMALL BUSINESS OWNER,HAL SYSTEMS CORP..,Y4000\nGRADUATE STUDENT,JOHNS HOPKINS SCHOOL OF ADVANCED INTER,Y4000\nTrustee,Clinton COmunnity College,H5100\nReal Estate,Loeb Partners Realty,F4000\nCOPPER LANTERN,,G1200\nTHE PICUS GROUP,,B4000\nPresident/CEO,Westborough Bank,F1100\nPOLYPATHS/OWNER/PARTNER,,Y4000\nCPA,Munninghoff & Lange,F5100\nAttorney,University Of North Florida,H5100\nBANKER,COUNTRY CLUB BANK,F1100\n\"LES PEOPLES MUTUALITY ASS'N INC\",,Y4000\nVP TAXATION,VP TAXATION,H4000\nPRINCIPAL,GATEWAY FINANCIAL,F0000\nPHYSICIAN,BLACK HILLS URGENT CARE,Y4000\nOwner,\"K-Bob's USA Inc Tinsley Hospitality Gr\",G2900\nPHYSICIAN,MICHAEL GORDON MD INC,H1100\nPRESIDENT,ACCUFAB INC.,Y4000\nBible Study Teacher,Self-Employed,Y4000\nmanager,Cartier,Y4000\nHEALTHCARE BUSINESS SOLUTIONS,,H0000\nVET,Self employed,A4500\nZIFF BROTHERS INVESTME,,F2100\nPhysician,Cardiovasculer Consultants Gro,H1100\nUNM,,Y4000\nSOFT DRINKS & MIXERS,,G2600\nProgram Manager,\"Sumaria Systems, Inc\",Y4000\nPartner,DCI,Y4000\nRECRUITER,RUSSELL REYNOLDS ASSOCIATES,G5250\n\"DIRECTOR, HUMAN RESOURCES\",SYNESIS 7,Y4000\nTEXTILE,FIBER CONVERSION INC.,Y4000\nPRESIDENT,\"HAZMED, INC.\",Y4000\nADMINISTRATOR,BRIGHAM YOUNG UNIV.,H5100\nEXECUTIVE,HOGAN MOTOR LEASING INC,J1100\nREAL ESTATE CONSULTANT,APPLIED REAL ESTATE ANALYSTS,F4000\nBUILDER & DEVE,PARADIGM DEVELOPMENT,F4100\nManager,Alaska Legacy,Y4000\nCommunications Director,The Brookings Institution,X4000\n\"OWNER'S SPOUSE\",NEW YORK JETS,G6400\narchitect,Christopher Glass Architect,Z9500\nBRAY & SINGLETARY,,K1000\nFARMER,\"DUARTE NURSERY, INC.\",A8000\nSVP & CFO,AMERICAN GENERAL FINANCE,F1400\nPOLITICAL VOLUNTEER,,F2500\nCHARTER MANUFACTUR,,M0000\nMEEHAN & GOODIN PC,,Y4000\nEXECUTIVE DIRECTOR,AMERICAN SNOWSPORTS EDUCATION CENTER,Y4000\n\"WELSH, CARSON, ANDERSON\",,Y4000\nGeneral Agent,John Hancocl Life In,F3100\nOWNER,JULIE STAMPLER VOICE OVERS,Y4000\nPresident,American Insurance Agents Inc.,F3100\nSELF-EMPLOYED/ARTIST/ILLUSTRATOR,,X0000\nEnvironmental Advoca,Prairie Rivers Network,JE300\nSecretary Treasurer,TV Management,Y4000\nCFA,Peregrine,Y4000\nOWNER,ALEXANDER WESTERHOFF ANTIQUES,Y4000\nSR.,\"BARRIERE CONSTRUCTION CO., LLC\",B1500\nOwner,\"Physicians Business Office, I\",H1100\nParalegal,Seth D Josephson,Y4000\nINSURANCE,AFBIS INC.,Y4000\n\"EVP, CORPORATE DEVELOPM\",CAPITAL ONE,F1400\nSupervisor,new York State,J1200\nLawyer,Weingarten,Y4000\nRadiologist,Diagnostic Radiology Associates,H1130\nNAMAN HOWELL SMITH & LEE PC,,K1000\nPHYSICIAN,RADIOLOGY GROUP OF ABINGTON,H1130\nHEALTH CARE ADMINISTRATOR,CLINICAL DEL CAMINO,J1200\nRD,LAWRENCE MEMORIAL HOSPITAL,H1700\nHANSON WATSON HOWE,,Y4000\nReal Estate/Marketing,Self-Employed,F4000\nVeterinarian,Newport Animal Hospital,A4500\nATTORNEY,\"GROVE, JASKIEWICZ AND COBERT\",Y4000\nSenior Systems Analys,4Point Solutions Ltd,Y4000\nMERCHANT BANKER,\"PALISADES ASSOCIATES, INC\",F2600\nCpa,Tmt Observatory Corp,Y4000\nOWNER,JOHNNIES RESTAURANT,G2900\nowner,\"Greenberg Family, LLC\",Y4000\nMCG/DULWORTH INC./PRESIDENT,,Y4000\nattorney,Environmental Defense Fund,JE300\nSculptor,Self-Empl,Z9500\nPresident/COO,\"Loveland Distributing Co., Inc.\",G2850\nREPRESENTATIVE,NFIB,G1200\nSW MICHIGAN ABSTRACT & TILE CO,,J8000\nATTORNEY,TOMASIK KOTIN KASSERMAN,K1000\nMUSEUM SPECIALIST,SMITHSONIAN AMERICAN ART MUSEUM,X4200\nTHE REDSTONE COMPANIES,,Y4000\ninsurance agent,Insurance Office of America,F3100\nREAL ESTATE INVEST,MARLIN GROUP LLC,Y4000\nEngineer,Burk Kleinpeter,Y4000\nFRAGRANCE DEVEL CORP,,Y4000\nChairman of Cardiova,Morristown Memorial Hospital,H2100\nPresident,Privident Strategies,Y4000\nDAVID BERNSTEIN INC,,Y4000\nSATTEN MEDICAL GROUP,,Y4000\nSr. VP - Division,Emerson Electric Co.,C5000\nSTOMPOLY STROUD ET AL,,Y4000\nCPA,\"Dr. T.J. Parr, Jr., M.D.,P.A.\",F5100\n\"GRAUL'S MARKET\",,G2400\nARCHAEOLOGIST,CCRG INC.,Y4000\nW R VERNON,,Y4000\nMDC HOLDING INC,,J5100\nOTR driver,none,Y4000\nPROFESSIONAL RADIOLOGY INC,,H1130\nPresident,Complete Healthcare Resources,Z9500\nGEOLOGIST DIRECTOR,DSP GEOSCIENCES AND ASSOCIATES,Y4000\nMarketing Researcher,General Mills,G2100\nUNIV. OF CHICAGO,,H5100\nAnesthesiologist,Midwest Anesthesia Associates,H1130\nLAWYER,SOUTHERN MAINE AAA,Y4000\nSENIOR ACCOUNT MANAGER,LIFE INS. CO. OF NORTH AMERICA,F3200\nSILVER BEARE TRAVEL AGENCY,,Y4000\nPhysician,CT State Medical Society,Y4000\nself employed--teacher,none,H5100\nENGLISH TE,RE-4 WELD COUNTY SCHOOLS,X3500\nD H CONSTRUCTION,,B1500\nSCIENTIST,DEPARTMENT OF ENERGY,X3000\nDIRECTOR BUSINESS DR,,C5120\nPresident,Cannon Designs,Y4000\n\"VP, LITIGATION RESEARCH\",\"HISTORY ASSOCIATES/VP, LITIGATION R\",Y4000\nReal Estate,Amerimont Inc,F4000\nSELF,DESIGN MOBILE SYSTEMS,J1100\nNORTON ACCOUNTING & CONSULTING P.C.,,F5100\nPrivate Equity Investor,Quadrangle Group LLC,F2100\nATTORNEY,HEARN & PIVAC,Y4000\nPRESIDENT & CEO,\"TPS, INC.\",Y4000\nUSMC/F/A-18 PILOT,,X5000\nBUSINESS EX,COUSINS PROPERTIES INC.,F4000\nLAWYER,BARBER& SHOULDERS,K1000\nOwner,Saga Global,Y4000\nCOMPTEL,AMNEX,Y4000\nPROFESSOR,UNC SCHOOL OF PUBLIC HEALTH,Y4000\nPEDIATRICIAN,BEAUFORT PEDIATRICS,H1130\nRetired Judge/Attorn,Retired,X1200\nPROPERTY MANAGEMENT,WINDSOR INVESTMENTS,Y4000\nPROPERTY BY OWNER INC,,Y4000\nBANKERS TRUST CO,,E1120\nAttorney,\"Schertler, Onorado LLP\",K1000\nRETAILER,OCEAN STATE JOBBERS,Y4000\nVICE PRESIDENT,CHARLES RIVER ASSOCIATES,F5000\nSTUDENT,STUDENT,J5000\nGOVERNMENT RELATIONS,HARRIS CORP,D3000\nALLEGHENY INTER,,Y4000\nFRANKLIN PLASTICS,,M1500\nPARTNER,PRETI FLAHERTY,Y4000\nANALYST,TIDEN CAPITAL,F0000\nSMALL BUSINESS OWNER,RIZZETTA MANAGEMENT SERVICES,Y4000\nDirector of IT,Alltel,C4300\nVP of Marketing,American Capital - Necco,F0000\nOwner,Athens Steel Building Corp,M2100\nAdvertising,Deutsch,G5210\nHedge Fund Manager,Exemplar Capital,F0000\nSUPERIOR MORTGAGE CORP.,,F4600\nPES INC,,T2200\nBU,SHEET METAL WORKERS LOCAL NO. 11,LB100\nATTORNEY,\"EDWARDS, TOLSTEDT & FRICKLE\",K1000\nFinance Manager,Ossur Americas,Y4000\nPartner,\"Labaton Sucharow & Rudoff, LLP\",K1100\nMedical Director,UMMC,Y4000\nPRESIDENT,AMERICAN COUNCIL ON EXERCISE,Y4000\nReal Estate Sales,The Ryness Company,Z9500\nTEXTILE EXECUTIVE,\"PHARR YARNS, INC.\",M8000\nCOSTAMAR CONSTRUCTION SE,,B1500\nEXECUTIVE,SENECA DATA,Y4000\nFIREMAN,TWPS OF IRVINGTON,Y4000\nEXECUTIVE,CHECK EXCHANGE,F1420\nSENI,US PATENT AND TRADEMARK OFFICE,X3000\nMARVIN GOLD MANAGEMENT CO INC,,F4200\nFLIGHT SYSTEMS,,B4400\nSOCIAL SCIENTIST,U.S. DEPARTMENT OF COMMERCE,X3000\nPRESIDENT,MIDLANDS CONTRACTING INC,Y4000\nREALE ESTATE INVESTOR,RETIRED,X1200\nSCHEECE TRUCK EQUIP,,T3200\nCONSULTANT,VISION IT,Y4000\nBusiness Owner,Wood & Hyde Leather,Y4000\nATTORNEY,\"KORHMAN, JACKSON & KRANTZ\",K1000\nSONOMA GLASS WORK,MANAGER,G0000\nATTORNEY / PRESIDENT,THE BUSCH CORP,K1200\nChairman,\"CRO, Inc\",Y4000\nExecutive,\"Durotech, LP\",Y4000\nReal Estate,Shier Realty,F4200\nDentist,Delta Dental Plan of Wisconsin,F3200\nMANUFACTURING,PARATECH INC.,Y4000\nPresident,Nollenberger Truck Center,T2300\n\"JAMESON, LOCKE & FULLERTON\",,Y4000\nTAPESTRY HEALTH SYSTEMS,,J7300\nPARTNER,BERNSTEIN LILOWITZ ET AL,K1000\nNonprofit Organization Administration,\"Education Through Music, Inc\",Y4000\nSTRATEGIC PLANNER,PORT AUTHORITY,X3000\nReal Estate Agent,Goodman Properties Inc.,F4100\nREQUEST DENIED,REQUEST DENIED,H5200\nMATHEMATICIAN,MASSACHUSETTS INSTITUTE OF TECHNOLOGY,H5100\nEXECUTIVE,PRIME INVESTMENTS INC.,F7000\nC.E.O.,THE ENTWISTLE COMPANY,Y4000\nARLINGTON CAPITAL MORTGAGE CORP,,F4600\nPhysician,University Of California,H1100\nATTORNEY,\"CRUMBIE LAW GROUP, LLC\",K1000\nPHYSICIANS ASSOUATED,,H1100\narchitect,KMW Architects,B4200\nSenior Vice President,Citizens Insurance Company of America,F3300\nPRESIDENT/OWNER,CLS GROUP,Y4000\nMACIEL AND SONS,,Y4000\nPrincipal,Newbrook Capital Advisors,F4100\nSUPERINTENDENT,EDU-PRIZE,Y4000\nDIANE POMPONI CLEANING SERVICE,SELF-EMPLOYED,G0000\nCONSULTANT,DAVID JOHNSON LLC,Z9500\nVERNER LIIPFERT BERNARD MCPHERSON,,K1000\nDOLOITTE & TOUSHE LOP,,F5100\nINFO REQUESTED,INFO REQUESTED,X5000\nW H LINDER & ASSOCIATES INC,,B4000\nSr. Managing Directo,Bear Sterns & Co,F2300\nInformation Requeste,Commodity Futures Trading Commission,Y4000\nAccountant,\"Lipsey, Millimaki &amp; Company\",Y4000\nGENERAL MANAG,AUDETTE CADILLAC INC.,T2300\nCHAIRMAN,GIOIA MANAGEMENT,G5270\nINVESTMENT BANKER,CHARTWELL FINANCIAL ADVISORY/INVEST,F5500\nJOAN N KELLEHER,,A3000\nROUTE 34 AUTO,,T2000\nROSENSHEIN ASSOCIATES,,Y4000\nMayor Of Dresden,City of Dresden,X3000\nEQUITY LIFESTYLE PROPERTIES INC,,B2400\nInsurance Agent,Riverland Insurers,F3100\nMANAGER,SANDSTONE GROUP INC.,Y4000\nPROFESSOR,PURDUE UNIVERSITY/PROFESSOR,H5100\nPRESIDENT,FOUR OAKS BANK,F1000\nPartner,\"Grain Capital, LLC\",F0000\nVICE PRESIDENT TECHNOLOGY,MISYS,Y4000\nLADDS GROUP LLC,,Y4000\nPension consultant,\"GPW & Associates, Inc\",F5500\nEXECUTIVE,ROCKWELL LAB LTD.,Y4000\nMerchant,\"ABFORM, Inc\",Y4000\nPartner,Jones Walker,K2000\nFIRST LINE SERVICES,,Y4000\nREAL ESTATE ADVISOR,MIDDLEGEY FINANCIAL COMPANY,F4200\nENGINEER,KAI HAWAII INC.,Y4000\nExecutive Vice President - Janitorial,Environment Control of Wisconsin,Y4000\nSYSTEMS ATLANTA,,Y4000\nBANKER,FIRST SENTRY BANK,F1100\nHomebuilder,\"Caruso Homes, Inc.\",B2000\nMOSES LAKE SCHOOLS,,X3500\nPRESIDENT,LNR PROPERTIES,F4000\nHEALTH WOR,PUBLIC HEALTH DEPARTMENT,X3000\nPROSTHETIC DENTIST,\"DR. IRVING S. LEBOVICS, DDS\",H1400\nHousewife,No,Y2000\nSenior V.P.,Capital Research & Management,F2100\nSEAFOO,SHAWS SOUTHERN BELLE FF INC.,A3500\nExecutive,Syracuse Castings,Y4000\nANESTHESIOLOGIST,GEORGE WASHINGTON UNIV,H1130\nEXECUTIVE,BECKER CHARITY TRUST,Y4000\nAttorney,\"Baim, Gunti, Mouser et al\",K1000\nSPEECH/LANGUAGE PATHOLOGIST,SUNDANCE REHAB,Y4000\nDATABASE PROGRAMMER,\"SOCIAL SERVICES SOFTWARE, LLC\",C5120\nPartner,Lorber Greenfield & Polito LLP,K1000\n,RUDEN MCCLOSKY SMITHE SCHUSTER & R,K1000\nInformation Requeste,M Squared,G5270\nCEO,\"FUTUREODONTICS, INC.\",J1200\nCCO,JEWISH FUNDS FOR JUSTICE,J7500\nPhysician,Affiliates & Canton Dermatology,H1130\nATTORNEY,\"NEUSTAR, INC.\",C5140\nMONTGOMERY CTY BOARD OF ELECTIONS,,X3000\nGOODE CASSEB JONES RIKLIN,,K1000\nLawyer,Corington & Burling,Y4000\nHOTEL,,T9100\nSales,Prentice Hall,G0000\nPresident,\"Rio-Energy, Inc.\",E1000\nMORTGAGE BROKER,EAST COAST EQUITY,F2100\nPresident,\"Center Street Foods, Inc.\",F2000\nPRESIDENT,PETS PLUS,Y4000\nMarketing Executive,Beanstalk Group,J5100\nRETIRED,RELIANCE ELECTRIC CO.,J1100\nCompliance Officer,\"Emily's List\",J1200\nTELEPHONE OPERATOR,PACIFIC BELL,C4100\nSenior Product Manager,Microsoft Corporation,C5120\nCHIEF EXECUTIVE OFFICER,NDS AMERICAS INC.,C2200\nELECTRICAL ENGINEER,\"MARVELL SEMICONDUCTOR, INC.\",Z9500\nPERFORMANCE SAMPLE INC,,Y4000\nALL-TECH MANUFACTURING CO,,Y4000\nOwner,Kings Tire Service,Y4000\nBusiness Representat,IATSE Local No. 695,LG400\nAttorney,\"Schull, Bray, Aycock, Abel, and Living\",K1000\nSystems Programmer,RightNow Tech,Y4000\nCEO,UNITED MEDICAL SUPPLIES INC.,Y4000\nReal Estate Executiv,\"General Growth Properties, Inc.\",F4100\nCONSULTANT,THE WESSEL GROUP,Z9500\nAttorney,\"RadioFrame Networks, Inc.\",C2100\nSPECIALIST,HUD,X3000\nCHAIRMA,FOREST CITY ENTERPRISES INC,F4100\nVICE PRESI,T. ROWE PRICE ASSOCIATES,F2100\nNORTHERWESTERN NATIONAL LIFE,,Y4000\nNEWMARK NEW SPECTRUM REALTY,,F4200\nSENI,CENTRAL VERRMONT PUBLIC SERVIC,Y4000\nPartner,Aloma Oil Company,E1100\nMEDICAL RADIOLOGIC CONSULTANTS PC,,H1130\nOwner,Dr. Truong Medical Clinic,Y4000\nExecutive,The Coventry Group,F3300\nCONSULTANT,KITTY HAWK CONSULTING,Y4000\nATTORNEY,HALF PRICE BOOKS,G4600\nCEO,\"ELCAN & ASSOCIATES, INC.\",F4200\nCity Counciil Member,City Of Tucson,X3000\nReal Estate,Carnegie Morgan,F4000\nVP INTERMODAL OPNS,Norfolk Southern Corporation,T5100\nCPA,\"HOSKINS & COMPANY,CPA'S\",F5100\nCONSULTANT,VENTURE TECHNOMICS LLC,Y4000\nPRUDENTIAL PALMS REALTY,,F4200\nHUGHESSOIL INC,,E1150\nBANK OF BENTONVILLE,,F7000\nPHARMACIST,RUSH UNIVERSITY MEDICAL CENTER,J1200\nGENERAL MANAGEMENT S,BUSINESS OWNER,Y4000\nINVESTOR/REAL ESTATE,\"H.P. CAPITAL, INC.\",F0000\nGENERAL MA,\"PARRY, ROMANI, DECONCINI\",K2000\nGovernment Affairs Consultant,Self employed,K2000\nVP,CHESAPEAKE,Z9500\nPRESIDENT,\"ODDO DEVELOPMENT COMPANY, IN\",Y4000\nINVESTMENT AD,OPPENHEIMER & COMPANY,F2100\nHERSCHEL HOBSON LAW FIRM,,K1000\ninsurance & financial services,Cordeiro Insurance,F3100\nAPPLIED MATHEMATICIA,\"GENERAL NETWORK SERVICE, INC.\",C5130\nREAL ESTATE,PACIFIC SOUTHWEST REALTY SERVICES,F4200\nBILL DELUCA CHEVY PONTIAC,,T2300\nPRESIDENT,GOLD COAST BEVERAGE DIST.,G2850\nNONE,NOT EMPLOYED,G5250\nW C C INTERESTS INC,,Y4000\nQUILL GILLESPIE,,Y4000\nDIRECTOR,FINANCIAL-NEVADA CORP,Y4000\nPRESIDENT STATE CA C,UNITED FAMILIES INT.,Y4000\nPHYSICIAN,RATCHFORD EYE CENTER LLC,Y4000\nRN,Villa Maria Residence,Y4000\nS E E,,Y4000\nPRESIDENT,J & P BIKE SHOP,Y4000\nEXECUTIVE ASST,ELLIOTT MANAGEMENT,F2700\nTHOMAS JEFF UNIV,,H5100\nCEO,Reilly Plating Co.,M5200\nCARMEN GROUP,,K2000\nBusiness Solutions A,Acxiom Corp,C5130\nIMMUNEX CORPORATE,,H4300\nINSURANCE AGENT,GOOD FINANCIAL GROUP LLC,F3300\nSR. SAFETY SPECIALIST,SANTEE COOPER,Y4000\nFIORE NORDBERG WALKER ETC,,Y4000\nCEO,CEMO COMMERCIAL,Y4000\nPARTNER,H & S VENTURES LLC,F2500\nPARTNER,MCEAGLE DEVELOPMENT L.C.,Y4000\n,BIOMEDICAL VISUALIZATION ANIMATION,Y4000\nEXECUTIVE,HENDRICK COMPANIES,T2300\nVICE-PRESIDENT,LTK ENG. SVCS.,B4000\nCONSTRUCTINO MGMT.,\"GRAHAM CONSTRUCTION & MGMT, INC\",J6200\nConsultant,Van Fleet Meredith Group,JD100\nChairman and CEO,\"Young's Market Co.\",Y4000\nCOASTAL DEVELOPMENT,,F2100\nCOAL BROKER,PEERLESS MATERIALS LLC,Y4000\nPublic Affairs,The Resources Group,Y4000\n\"Asher's Chocolates\",Owner,G2200\nADROIT SYSTEMS INC./CFO/VP,,D4000\nEBSCO INC,,Y4000\nPOLITICS,,J1100\nQUALITY WINE AND SPIRITS,,G2820\nPROFESSOR,OREGON STATE UNIVERSITY,JE300\nConsultant,Catalyst Partners Asia,Y4000\n\"V.P. GOV'\",LOUIS DREYFUS CORPORATION,E1120\nGRADUATE ASSISTANT,UNC CHARLOTTE,Y4000\nNEW YORK STATE DEPT OF SOC SRV,,X3000\nOWNER,ARIZONA ICED TEA,G2600\nSTAF,\"LABOR FINDERS INTERNATIONAL, I\",G5250\nMedical Doctor,Hartsough Dermatology,H1130\nPHYSICIAN,PALMETTO IHEALTH ALLIANCE,Y4000\nHOOD MILLER,,Y4000\nOwner,Rbc Tile and Stone,B5400\nATTORNEY,GILMORE AND BELL P.C.,K1000\nExecutive,Rowen/Warren,G5280\nBiotechnology,Protein Science Corporation,Y4000\nInvestment Management,Panmar Capital LLC,F0000\nCORA BETT THOMAS REALTY,,F4200\nPUBLIC EDUCATION ADVOCATE,STAND FOR CHILDREN,JH100\nPRESCOTT MEDICAL COMMUNICATIONS GRO,,Y4000\nTRANSPORT MANAGER,PACIFIC LTD,J9000\nGALFAND & BERGER,,Y4000\nTRAVEL IN STYLE,,Y4000\nOWNE,\"FOUNTAINHEAD DEVELOPMENT, INC.\",Y4000\nOwner,Kitchen Cooked Co,Y4000\nS LIEBMANN INC,,Y4000\nWHOLESALE DRUGGIST,,Y4000\nFINANCIAL ADVISORY CORPORATION,,F0000\nAero Space Scientist,\"Laser Guidance, Inc.\",Y4000\nRETIRED PROFESSOR NONE,,Y4000\ndeveloper,North Avenue Properties LLC,F4000\nCEO,\"Inverness Medical Innovation, Inc\",Z9500\nSARANAC PROPERTIES,,F4000\nATTORNEY,\"WATSON & DAMERON, LLP\",Y4000\nSENIOR VICE PRESIDENT,\"ENGLAND, INC.\",Y4000\nELECTRONIC CALIBRATION,SELF,Z9500\nSalesman,Orchid-Anzon,Y4000\nATTORNEY,\"HERRICK, FEINSTEIN LLP\",K1000\nInvestmen,City Services Corporation,F2100\nM STEELE ENTERPRISES INC,,Y4000\nLIBERTY INVESTORS,,Y4000\nINFO REQUESTED,SOYKA SMITH DESIGN STUDIOS,Y4000\nHEALTH PLAN SERVICES INC.,,H3000\nVP SALES,AIRLINE HYDRAULICS,T1100\n\"Co-Chairman, CEO\",Full Sail University,H5300\nMANAGING PARTNER,HAWK HILL ADVISORS LLC,Y4000\nVICE,COMMUNITY COLLEGE PHILADELPHIA,H5100\nExecutive,Xsunt Corporation,Y4000\nWILLIAM S RICH,,Y4000\nChief Executive Officer,Adtek,Y4000\nCFO,OVERLAND PARK REG. MED. CENTER,H2100\nMCKENZIE DEVELOPMENT,,Y4000\nBOOMERSHINE PONT GMC INC,,T2300\nCEO,\"D & D POWER, INC.\",Y4000\nCHIEF EXCUTIVE,LAKE FOREST HOSPITAL,H2100\nEXECUTIVE,J SCOTT CONSTRUCTION,B1500\nGeneral Counsel,Unitehere,LG000\nManager,Twin County Recycling,M2400\nMTO,,Y4000\nPresident,Prudential Tropical,F4200\nACTOR,INDEPENDENT,C2400\nInvestment Manager,Brandywine Global Investment Mgmt,F2100\nU S D A - RURAL DEVELOPMENT,,X3000\nEDUCATIONAL CONSULTANT,,J7700\nSOLUTIONS FOR PROGRESS,,Y4000\nCORIGAN MOVING SYSTEM,,T3100\nAttorney,Jill Orr and Reno,Y4000\nCALIF VALLEY VAULT CO INC,,Y4000\nOWNER,APPRAISAL SERVICE,F4700\nCEO,KOSS FINANCIAL GROUP,J5100\nPRESIDENT,ANNE MESSENGER & ASSOCIATES,Y4000\nDAVID GELBAUM,,J7500\nPresident,BAF Technologies,Y4000\nConstruction/ Drywal,Self employed,G0000\nCOMMERCIAL DEVELOPER,LORMAX STERN,Y4000\nChairman & CEO,Chesapeake Corporation,M7000\nEMERGENCY PHYSICIAN,APOLLO M.D.,H0000\nPresident & CEO,National Assn. of Broadcasters,C2100\nPODESTA GROUP,ATTORNEY,Z9500\nSenior VP,Waste Management,E3000\nASSOCIATE,WAL*MART,G4300\nINFORMATION TECHNOLOGY CONSULTANT,TRUE BRIDGE RESOURCES,Y4000\ndirector,Natural-Immunogenics Corp,Y4000\nDIRECTOR,GSA ENTERPRISE,Y4000\nSTONE CAPITAL,,F1200\nShipping and Receiving,General Atomics,E1320\nCONTROLLER@F,ALASKA LAW OFFICES INC,K1000\nPROFESSOR,NEW MEXICO STATE UNIVERSITY,H5100\nPERIODICAL EDITOR,\"LANDE' NAST PUBLICATIONS/VOGUE\",C1100\nPRESIDENT,ROSENBURG FOUNDATION,X4100\n\"VP, ADMINISTRATION\",DEVON ENERGY CORP,E1120\nDIR COM,LOCKHEED MARTIN CORPORATION,D2000\nOwner,Hamilton News,Y4000\nOWNER,POLACH APPRAISAL,F4700\n\"Sculptor, MD and real estate developer\",Self employed,G0000\nController,Ames Deptmnt Stores,G4300\nUNITED GUINITE,,B2000\nPRESIDENT,\"CMB PROPERTY MANAGEMENT, LLC\",F4500\nRetired,Ca State,Y4000\nGovernment Affairs Consultant,Murtha Cullina LLP,K1000\nCONCUR TECHNOLOGY,,C5120\nAssistant General Manager,\"Golden Corral of Manassas, LLC\",G2900\nSALES,\"EDUCATIONAL SYSTEMS PRODUCTS, INC.\",C5120\nOLDBEST RECORDS,,Y4000\nManager,Newspring Industrial,J1200\nCEO,EXACT SCIENCES CORP,H4100\nDIRECTOR OF GAS ENGINEERING,COSERV ELECTRIC,E1610\nN V E C,,Y4000\nPhysician,Palo Alto VA,Y4000\nBRITE BELT TECHNOLOGIES,,Y4000\nACCOUNTANT,AITNEN-ROGERS,Y4000\nRADIATION,SIGMAN RADIATION ONCOLOGY,H1130\nCEO,ATTICA HYDRAULEX EXCHANGE,Y4000\nOWNER,MAKERS MARK,G2820\n\"Museum Lecturer, Inv\",Self employed,G0000\nFounder,Atlas Maui Corporation,Y4000\nATTORNEY,PFIZER INC.,J1200\nOrthopaedic Surgeon,Intermountain Orthopedics,H1130\nUMPQUA BANK/SVP/CONTROLLER,,F1100\nAEGIS CAPITAL MARKETS,,F2100\nPricing Analyst,Dart Container,J1200\nEXECUTIVE,TONER CABLE EQUIP,C4600\nPresident,A.V.I. FOOD SYSTEMS,G2000\nMANAGER,FLORIDA BOYS BBQ,G2900\nENGINEER,LEON S. AVAKIAN/ENGINEER,Y4000\nEXECUTIVE,DOT FOODS INC,G2000\nTeacher,Presidio Hill School,Y4000\nconsultant,Murray Scheer & Montgomery,K1000\nAttorney,Lawrence S. Goldman,J1200\nCARE INC,,M2400\nReal Estate Developm,Self employed,F4100\n\"SUE'S LANDSCAPING\",,B3600\nBUSINESS E,RENAISSANCE LEARNING INC,C5120\nINVESTOR,SELF-EMPLOYED/AVON INVESTMENTS,F7000\nACLU OF KANSAS AND WESTERN MISSOURI,,J7300\nCARDIOVASCULAR ASSOCIATES PA,,H1100\nENGINEERING MANAGER,BAHALLE ENERGY ASSOCIATES,E1000\nBUILDING CONTRACTOR,CONTRACTOR,B1500\nMANAGER - BUSINESS SYSTEMS,CHESAPEAKE ENERGY CORP.,E1120\nHILAND POTATO CHIP CO,,G2100\nOHIO ASSISTED LIVING ASSOCIATION,,Y4000\nINCUBIX CORP,,Y4000\nChairman & CEO,Sammons Financial Group,F3300\nDAKOTA FISHERIES,,Y4000\n\"ASSOCIATE GENERAL COUNSEL, POLITICAL L\",KOCH CO PUBLIC SECTOR LLC,E1160\nCPA,KMPG CONSULTING,F5100\nTRUGREEN-CHEMLAWN,,G5200\nFOREIGN AFFAIRS,RAND,Y4000\nMECHANICAL CONT,THERMO-DYNAMICS LLC,Y4000\nSales,Houston Supply,Y4000\nNORWALK-LA MIRADE LOCAL,,L1300\nINVESTMENT MANAGER,GPS FUND,Y4000\nCFO,PEGASYSTEMS,C5120\nATTORNEY,\"MELVILLEJOHNSON, PC\",Z9500\nCHAIRMAN OF BOARD/RETIRED,RALPH S. INOUYE CO. LTD.,B1000\nREAL ESTATE,\"SOTHEBY'S REALTORS\",G4800\nExecutive,The Ayco Company,F2100\nPhysician,Lakeview Clinic,J1200\n\"Exec,\",Luverne Truck Equipment,T3000\nVENT,\"KLEINER, PERKINS, CAUFIELD & B\",F2500\n\"FELLOW, GASTROENTEROLOGY\",UNIVERSITY OF ARKANSAS FOR MEDICAL SCI,H5150\nFINANCIAL ANALYST,AMERICAN EXPRESS,F1400\nLEVETT & ROCKWOOD,,K1000\nFIRST AR BANK & TRUST,,F1100\nREAL ESTATE,SCHNAER REAL ESTATE LP,F4000\nCommunity Organizer,United For A Fair Economy,Y4000\nManagement,D&D,Y4000\nD/A/RETIRED,,X1200\nExecutive,Books A Million,C5140\n\"OLIVER, WYMAN & COMPANY\",,Y4000\nKELLOGG & GEORGE,,Y4000\nTEACHER,DANVILLE DIST. 118 SCHOOLS,X3500\nVP Strategic Sales,ING,F3100\nPRESIDENT,CROWNE INVESTMENTS,F0000\nDUFFY KEKEL JENSEN &,,Y4000\nELLEN & CO INC,,Y4000\nENTREPRENEUR COACH,UND CENTER FOR INNOVATION,Y4000\nReal Estate Investme,Self Employed,X1200\nTRS COMMERCIAL ROOFING,,B2000\nRefuse,Refuse,H5100\nFINANCIAL ADVISOR,AMPER FINANCIAL,Y4000\nBusiness Owner,\"Buckman, Buckman, & Reed\",Y4000\nCIBC-OPPENHEIMER,,F2100\nACCOUNTANT,DANAHER CORPORATION,M2300\nExecutive,\"MILLENNIUM FINANCIAL SERVICES, INC.\",F0000\nManager,\"United Silicon Enterprises, Inc\",Y4000\nLOCHNAN,,F2100\nManager,Kaiser Permanente IT,H3700\nBOND ANALYST,FITCH RATINGS,J1200\nLAND DEPT.,MARBOB,E1000\nINVESTMENT,MOUNT VERNON INVESTMENTS,F7000\nMANAGEMENT,DATA SOLUTIONS,Y4000\nSTATE REPORTING SERVICES,,F5200\nVICE PRESIDENT-BUS. DEVELOPMENT,QUARK INDUSTRIES,Y4000\nArchitect,TCA,B4200\nEducation,11e,Y4000\nEXECUTIVE,SHARON GANS,J1200\nVICE PRES,JORDAN SPECIALTY PLASTICS,M1500\nVP,SJI,Y4000\nCEO- NOT FOR PROFIT,ARTHUR ASHE INSTITUTE FOR URBA,Y4000\nChairman,Oak Grove Village At Fort Campbell LLC,J7300\nPROGRAM MANAGER,CSC/PROGRAM MANAGER,C5130\nMURDOCK ASSOC,,F4000\nRET.,DIMENSIONS HEALTH CARE SYSTEM,H0000\nGUSTAVO E FUENTES P A,,Y4000\nMANAGING DIRE,POST CAPITAL PARTNERS,F2100\nDIRECTOR,CALFEE CO. OF DALTON INC.,G4300\nNUNES BROTHERS DAIRY,,A2000\nA & A FASHION CORP,,Y4000\nSALES,MUSSELLSHELL VALLEY EQUIPMENT,Y4000\nARIZONA AVIATION,,G1200\nPRESIDENT,BECKLEY LOAN,Y4000\nDirector,Bridgeside INC,Y4000\nPhysician,Texas Tech University,H5100\nSTOWE INSURANCE AGENCY INC,,F3100\nLYNNFIELD CENTER COUNTRY CLUB,,G6100\nPsychologist,Self-Employed;Private PR,H1110\nCHILDRENS RIGHTS ACTIVIST,,J7700\nTeacher,DMPS,Y4000\nConsultant,\"IBC, Inc.\",Y4000\nINVESTMENT MANAGER,COATUE MANAGEMENT LLC,Y4000\nDISTRICT ATTORN,CONTRA COSTA COUNTY,X3000\nSelf/Mechanical Engineer,,\nGENERATIONS ONLINE,,Y4000\nExecutive,Home Medical Specialities,H3100\nPRESIDENT,BIOTECHNOLOGY,H4500\nCEO,American Association of Colleges f,H5100\nJACOBSEN TEXTRON,,Y4000\nWESTMARK INTERNATIONAL,,H4100\nEditor,The Limited Editions Clu,Y4000\nAMERICAN ORGANIZATION OF NURSE EXEC,,H2100\nFOX CORP,,C2400\nGOVERNMENT RELA,WILLIAMS AND JENSON,K2100\nRUBIN FIORELLA FRIEDMAN,,K1000\nChief Executive Officer,Merchants Bank of California,J1100\nPRESIDENT/CEO,NATIONAL PARK FOUNDATION,Y4000\nEDUCATOR,UPPER FREEHOLD REGIONAL SCHOOL DISTRIC,X3500\nHomebuilder,Shea Homes,B2000\nLAWYER,THOMAS DEMPSEY LAW CORP.,J1200\nCLERK,HAGAN FARMS,A1000\nORTHODONDIST,,Y4000\nP&N COAL INC,,E1210\nAttorney/Retired,Self,J1200\nOWNER,GULF GAS UTILITIES,Y4000\nContractor,\"Atlantic Sheet Metal Works, Inc.\",B3400\nWHITECO INDUSTRIES,,G5230\nJEFFERSON CO,,Y4000\nCEO,Popp Telecom,Y4000\nINSURANCE BROKER,LATORRE INSURANCE GROUP,Y4000\nENGINEER,WSRC,B1000\nATTORNEY,WOOTEN HONEYWELL & KEST,K1000\nEVANGELIST,,X1200\nLOGGER,,A5000\nBUSI,SHEET METAL WORKERS LOCL NO. 3,LB100\nPHYSICIAN,THE CARNEY CENTER,Y4000\nManager Human Resour,News. Bsebse,M7000\nPhysician,Weston Ear Nose and Throat Clinic,H1130\nOwner,Plumbing Express Inc.,B3400\nPHARMACIST,WELLHEALTH RX,Y4000\n\"MANAGER, POLICY & RESEARCH\",BIO,H4500\nVICE PRESIDENT REGIO,WASHINGTON GROUP INTERNATIONAL INC.,B1000\nBUILDERS MASONRY PROCUTS/OWNER/MANA,,B5100\nCHEMIST,FOOD AND DRUG ADMINI,X3000\nBP CAPITAL MARKETS,,F2000\nEXECUTIVE,BALON CORPORATION,E1150\nExecutive VP/General Manager,Iowa Lakes Electric Cooperative,E1610\nJFC CONSULTING ASSOCIATION,,Y4000\nInformation Requeste,AQR Capital,F2700\nPhysician,\"Bruce Joseph, MD\",H1100\nDirec-Bus Dev,\"Findica, Inc\",Y4000\nMASSACHUSETTS GENERAL HOSPITAL,,H2100\nDesigner,Brown Davis Design,G5200\nSVP & CHIEF HR OFFICER,ALPHA NATURAL RESOURCES,E1210\nAdministrator,Univ of Michigan,H5100\nPHYSICIAN,NORTHSHORE/L.I.J.,Y4000\nNite Club Manager,Far In Enterprise LLC,Y4000\nCEO,Rapid CFG,Y4000\nTHOMSON ADVISORY GROUP L,,Y4000\nPARTHENIA DE MURALT,,Y4000\nPresident & CEO,AGI Capital Group,F0000\nTEACHER,SHORELINE SCHOOL DISTRICT,X3500\nACTUARY,OPTUMINSIGHT,Y4000\nVP SALES,CONTINULINK HEALTH TECHNOLOGIE,H3100\nGLOBAL RISK MANAGERS INC,,F3000\nND EYE CLINIC,,H1120\nHARRY BARNES REALTY INC,,F4200\nStudent,requested information,G4800\nProgrammer,Information Requested,C5130\nOrthopaedic Surgeon,SW Michigan Ortho & Sports Med,H1130\nMAGISTRATE,STATE OF VERMONT/MAGISTRATE,X3000\nVP SUSTAINABILITY/CORP AFFAIRS,WEYERHAEUSER NR COMPANY,A5000\nOwner,Versaggi Seafood,G2350\nCo-owner,Lozier Homebuilders,Y4000\nATTORNEY,MOORS & CABOT,F2100\nVice President,Anderson Direct Marketing,Y4000\nEducator,County Board of Education,X3500\nREAL ESTATE SALES,MEADOWMONT REALTY,J1200\nMARCY A KELLY P A,,Y4000\nOwner,\"King Technology, Inc.\",G0000\nBUILDER,RAFANELLI AND NAHAS,F4000\nKENWORTH OF ST LOUIS INC,,Y4000\nMaintanance,Keyspan Energy,E1620\nGARRISON PHELAN ET,,K1000\nCO-CHAIRMAN,ISLANDO ONE RESORTS,Z9500\nPublic Relations,Gruma Corp.,Y4000\nR E BORAH & ASSOCIATES,,Y4000\nInformation Requeste,Self employed,A3000\nEXECUTIVE,PACKET DESIGN,C5110\nVICE CHAIRMAN,FIRST COMMUNITY INVESTMENT CO,Y4000\nPROFESSOR,\"UNIVERSITY OF MADISON, WI\",H5100\nCONTROLLER,ADVANCEME. INC,Y4000\nBUSINESS MANAGEMENT,BEN LOMOND INC,J1100\nPRESIDENT & C.E.O,CLASSIC WINE VINEGAR COMPANY INC.,Y4000\n\"SENIOR VICE PRESIDENT, TECHNICAL\",GOOGLE INC.,C5140\nArchitect Engineer Real Estate,The Aguitar Group In,F4000\nATTORNEY,STINSON MORRISON HECKLER,K1000\nVP TECHNICAL PROJECTS,LEAR CORP.,T2200\n\"VP, Global Citizenship & Policy\",Abbott,H4300\nSales Representative,Siemens,C5000\nSVP,Chesapeake Energy Corp,E1120\nREAL E,COLDWELL BANKER STEINBRENNER,F4200\nATTORNEY,FAY AND KAPLAN,K1000\nCEO,WESTERN NEW MEXICO TELEPHONE COMPANY,C4100\nMedical Administrato,Methodist Specialty & Transplant Hospi,Y4000\nDesigner,Honeywell Inlt,Y4000\nSoftware Developer,CyberPath Inc,J1200\nSenior VP,Ogilvy Govt Relations,K2000\nADMINISTRATIVE SERVICES DIRECTOR,,Y4000\nAccountant,Shores Tagman Butler And Company Pa,F5100\nSenior Vice Presiden,\"America Online, Inc.\",C5140\nCEO,TOUCHSTONE HOME AT RAPALLO INC,Y4000\nCOLLINS FAMILY TRUST,,Y4000\nCOAST NEPHROLOGY,,J7400\nSenior Consultant,jmj Associates,Y4000\nCAPITOL DISTRIBUTORS INC,,G2850\nWULFF BROS MASONRY CORPORATION,,B3000\nEXECUTIVE,TELEPHONICS,C4100\nSALESMAN,N.A.,Z9500\nHORIZON TRAVEL,,T9400\nMANAGER,UNIVERSITY OF CHICAGO MEDICAL CENTER,H2100\nCEO,UNITED STUDIOS,Y4000\nowner,Greg Hill Management Inc,Y4000\nPROFESSIONAL DIRECTIONAL/MANAGER/OW,,Y4000\nTEMPE ELEMENTARY SCHOOLS,,X3500\nJAN PAUL KOCH PSC,,Y4000\nRestaurateur,New England Coffee Co,G2900\nINVESTOR,RBC DAIN ASSET MANAGEMENT,F2100\nWellness consultant,self employed,Y4000\n\"BOLLINGER SHIPYARDS, INC./CHAIRMAN/\",,JE300\nMUSEUM ADMINISTRATOR,ALBRIGHT-KNOX ART GALLERY,Z9500\nproperty manager,Kurnick Properties,J7400\nPRESIDENT & CEO,\"ALOHA PETROLEUM, LTD. DBA ALOHA ISLAND\",G4300\nCOMPTROLLE,OHIO VALLEY COAL COMPANY,E1210\nLAVENTHOL & HOROWATH,,F5100\nPrincipal,Edison Galliano,T6000\nCHIEF EXECUTIVE OFFICER,NEW TRADITIONS NATIONAL BANK,Y4000\nAUDIO MIXER,ABC,J1200\nCEO,Youth Consultation Service,Y4000\nMedical Assistant,Pulmonary Assoc of NJ,H1130\nMc Executive Vice Pr,WLLS FARGO,F1100\nPhoto Journalist,self,C1000\nDIR ADV TRAIN CONT SYS,Norfolk Southern Corp,T5100\nRestaurantuer,Frontier Enterprises,Y4000\nSocial Worker,Brookline High School,X3500\nPARTNER,STEVEN K. BERRY LLC,Y4000\nPresident-OKC,Spirit Bank,F1100\nPastor,Community Church of Barrington,Z9500\nCAROLINA HEALTH SPECIALIST,,H0000\nLaw Firm Relationship Manager,Arrowpoint Capital Corp,F0000\nMerchandising Manage,ADM Expatriate Service,A4300\nMover,Herlihy Moving & Storage,T7000\nATTORNEY,POWERS PYLE,Y4000\nCONSULTANT,MICROVISION; SEATTLE,C5000\nSenior Vice Presiden,\"USEC,Inc.\",Y4000\nTEACHER,USD 402,Y4000\nCMB INVESTMENT COUNSELORS,,Y4000\nReal Estate Development,KDE,Y4000\nCAMBRIDGE FRIENDS SCHOOL,,H5100\nMAGUIRE AND SCHNEIDER,,K1000\nElectrical Engineer,ADMMicro,Y4000\nREPUBLICAN NAT COMM,,J2400\nVice President,Columbus Serum/Webster Veter,Y4000\nPHYSICIAN,\"DR. ROBERT COLTON, MD\",H1100\nConstruction,Stacy And Witbeck,B3200\nMANAGIN,FINANCIAL SERVICES VOL CORP,F0000\nWILLIAMS R E COMPANY,,F4000\nMANAGER,\"EXPRESS RECOVERY SERVICES, INC\",Y4000\nNURSE,DIOCESE OF FALL RIVER,Y4000\nOWNER,FT JAMES CONSTRUCTION,B1500\nSALES,SELF - EMPLOYED/SALES,G0000\nEAGLE AD CORP INC,,Y4000\nContractor,Simms Custom Construction,B1500\nPresident,Art Development,F4100\nPRESIDENT,BWC INC,Y4000\nBANKING,MORGAN STANLEY,F2300\nGRAPE GROWER,W ANDREW BECKSTOFFER,Y4000\nREALTOR,FAXON GILLIS HOMES,B2000\nMANAGEMENT,COMPAK TRADING,Y4000\nATTORNEY,THE NEWSWEEK/DAILY BEAST COMPANY LLC,C1100\nMAGNET PORTFOLIO SERVICES INC,,F4600\nSENIOR VICE PRESIDENT,AETNA,H3700\nCEO,RIVER OAKS HOSPITAL,H2100\nATTORNEY GENERAL,STATE OF RI,X3000\n\"SR. VP, ACCOUNTING\",\"MCKESSON CORPORATION, INC.\",H4400\nVP-INTERNAL AUDIT,\"ESSEX PROPERTY TRUST, INC.\",F4100\nSCHULLER INTERNTL INC,,M2300\nKUNEC OF LAYUG LLD,,Y4000\nDESIGN PROFESSIONAL,RETIRED,X1200\nPRESIDENT,ESTATE AND TRUST STRATEGIES,Y4000\nMANAGER,PSECU,Y4000\nMOREL ALLSOCIATES,,Y4000\nBRIARWOOD MANOR (JERNIGAN CATERING),,Y4000\nPRESIDENT,\"BROWN BUILDERS, INC.\",B1500\nLobbyist,Rich Feuer,K2000\nPRESIDENT,BALDWIN HACKETT,Y4000\nminister,Unity Church in Milwaukee,X7000\nMassey University,,H5100\nTeacher,Berkeley Unified School District,J7400\n\"Member, Board of Directors\",\"Public Storage, Inc\",F4100\nCPA,KHP,J1200\nATAA PAC,,J5000\nLAKE ERIE ELECTRIC INC,,B3200\nCar Dealer - Ft Myers,Volvo Dealership,T2300\nREAL ESTATE,\"TRICOUNTY REALTY, INC.\",F4200\nSUPERIOR FLORALS INC,,A8000\nINVESTOR,HOUDE FINANCIAL,Y4000\nPRESIDENT/ CEO,ROUSE GROUP DEVELOPMENT CO.,Y4000\nASC INCORPORATED,,T2200\nFARMER,CAL WESTERN FARMING CO,A1000\nHr Consultant,Hewitt Associates,J1200\nPRESIDENT,VERSATECH INC,J2200\nInvestment Banker,Protective Life Corporation,F3300\nReal Estate Developm,Brighton Development Corp,Y4000\nATTORNEY,ANDREW E BOGEN,K1000\nEAST WEST CONSTRUCTION,,B1000\nFARM OWNER,SELF EMPLOYED,A1600\nDIRECTOR,\"WOMEN'S MINISTRIES\",Y4000\nENTREPRENEUR,MUSICTEC HOLDINGS,Y4000\nSURGEON,DEACONESS HEALTH SYSTEM,H1130\nChairman,Amoi Electronics,Y4000\nINVITATION STATION,,Y4000\nauralvisual artist,self,G0000\nPara-Legal,\"Aadorono & Yoss, LLR\",K0000\nRETIRED,FIRST Q. CAPITAL,F0000\nSELF-EMPLOYED,LIFE SAVER POOL FENCE,Y4000\nVP FEDERAL RELATIONS,CAREMARK,G4900\nOWNER,INSITE CONSTRUCTOR`S INC,B1500\nC,COLLISON-GOOD WILLIAMS & DUNNIGAN,Y4000\nSILVIOS FIRST AM EUROPEAN CENTER,,Y4000\nCOST ACCO,YORK ELECTRIC COOPERATIVE,E1610\nGREENLEAF HEALTH SYSTEMS,,H0000\nMARKETING RESEARCH,PFIZER,H4300\nAttorney,Gallagher & Gallagher,K1000\nSales,CTI Group,Y4000\nGOVT AFFAIRS,OGILVY GROUP,K2000\npublic policy advisor,\"Patton Boggs, LLP\",K1000\nMTI BUSINESS COLLEGE,,H5100\nMECHANICAL ENG,AFFILIATED ENGINEERS,B4400\nOWNERSHIP AMERICA,,Y4000\nOrthopaedic Surgeon,\"St John's Clinic\",H1130\nPartner,Chow Consulting Services,Y4000\nACTRESS,MISS PEACH PRODUCITON/ACTRESS,C2000\nPromotion Marketing,General Mills,G2100\nAttorney,MW Injury Resolutions,Y4000\nPARTNER,ERICKSON & CO,G5260\nManager,Crowley Maritime,T6200\nOccupational Health Nurse,Smithsonian Institute,X4200\nCONSTRUCTION,SHLETS SEXTON COMPANY,Y4000\nSr VP Merchandising,\"Lowe's\",Z9500\nProfessional Land Surveyor,None,B4300\nTHE SEAM/PRESIDENT/CEO,,Y4000\nFounding Partner,Jacoby & Meyers,K1000\nHistorian,None,X0000\nPRESIDENT,MG NATIONAL TRUST BANK,Y4000\nAMERICAN EXPRESS FINANCIAL,,F1400\nAttorney,Scott Douglass & Mc Curnico,K1000\nVICE PRESIDENT,LIZ CLAIRBORNE INC.,M3100\nOwner,Lockton Companies LLC,F3100\n\"Int'l. Trade Advisor\",Mayer Brown & Platt,K1000\nPRESIDENT/CEO,\"FM VISITORS & CONVENTION BUREAU, INC.\",Y4000\nAttorney,\"OBrien Abeles, LLP\",K1000\nENGINEER,THE GREAT LAKE CONSTRUCTION CO,B1500\n\"COMMONWEALTH OF MASS, GOV ADMIN, PU\",,X3000\nGRIFFIN REALTY,,F4200\nATTORNEY,,J8000\nMANAGING DIRECTOR,FLORIDA PHYSICIANS SERVICE/MANAGING,H1100\nChairman & CEO,\"GA & FC Wagman, Inc.\",Y4000\nERGON,APPLIED ERGONOMICS CONSULTING,Y4000\nTHE THORP LAW FIRM,,K1000\nPRESIDENT,TRANSITOWNE DODGE CHRYSLER JEEP RAM OF,T2300\nATTORNEY,DIRK FULTON,K1000\nLAWYER,PINNISI & ANDERSON,Z9500\nPRESIDENT,F I I,J1100\nConsultant,Capitol Hill Strategies,K2000\nVENTURE CAPITALIST,AFFINITY CAPITAL,F2500\nMEDICAL INFORMATICS RESEARCHER,PHILIPS ELECTRONICS,C5000\nVice President,\"J S Ward & Son, Inc.\",F3100\nFRUIT/FLOWER GROWER,SELF,G0000\n\"President,Property,Management\",Concordia Enterpriaea,Y4000\nOWNER,EXCEL GROUP,Y4000\nCLERICAL,CLAY COUNTY MEDICAL CLINIC,J1100\nCGC R&D COMM & OPS IMID ONC,J&J Worldwide Headqtrs,H4000\nMANAGING,MILLS AND LYNN ENTERPRISES,F2600\nMEDICAL SALES,COVIDIEN,H4100\n\"LUXENBERG, GARBETT & KELLY P C\",,Y4000\nRD BARR CO,,Y4000\nNORWEST NATIONAL BANK,,F1100\nPROPERTY MANAGEMENT,C.S.V. INC.,Y4000\nExecutive,KURM,Y4000\nPrivate Practice,Madeleen M Mas Md,H1100\nPresident,Linfield Hunter & Junius,B4000\nSAFETY,CITY OF CHANDLER,X3000\nALPERT & EDELBERG ALL REASONS TRAVE,,T9400\nSHOOTING ENTERPRISES,,Y4000\nBUSINESS OWNER,METALFLOW CORP,M5000\nGeneral Counsel,Magma Design Automation,Y4000\nEXECUTIVE,EADS-NA,Z9500\nREAL ESTATE BROKER,THE HOME TEAM,F4200\nSales,Services and Hardware,Y4000\nOwner,Liberty Lake Animal Clinic,Y4000\nPRIVATE EQUITY,CCMP CAPITAL,F2600\nHOGAN AND HARTSON,,K2100\nPINE VIEW FLORIST,,A8000\nPhysician,Seton,H0000\nATTORNEY,PBE LTD.,Y4000\nBRENNER BROS,,Y4000\nNew Valley Corp.,,F4000\nSTOCK TRADER,SELF,J5100\nFIRE SAFETY,EXCEL GUARD CORPORATION,Y4000\nCRNA,CARLE CLINIC,H1130\nNEBRASKA PETROLEUM MARKETERS & CON,,E1170\nINVESTMENTS AND TRUST,,Y4000\nINTEGRATED SIGN ASSOCIATION,,Y4000\nVp,Commercial Envelope,M7000\nFOY INSURANCE GROUP INC.,,F3100\nAdministrator,John Deere,A4200\nAttorney,The Law Offices of Jack M. Bailey,K1100\nwriter/editor and de,self,Z9500\nVenture Capitalist,\"Medmax Ventures, LLC\",F2500\nAttorney,Washington University,H5100\nCorporate Tax Consul,\"Skinner Tax Consulting, Inc.\",F5300\nPHARMACIST/OWNER,PRESTON ROAD PHARMACY,G4900\nAttorney,\"Podhurst, Orseck, et al.\",J5100\nINVESTOR,LEVEROCKS,Y4000\nCEO,BASHAS CORP.,G2400\nRESOLUTIONS LLC,,Y4000\nPACKAGING DEPA,THE MORMING CALL INC,C1100\nQUAN YIN INC,,Y4000\nIT Consultant,Compass Group,G2910\nInsurance Broker,\"Miller United Insurance Brokerage, Inc\",F3100\nCARDIOLOGIST,SONORAN HEART,Y4000\nREAL ESTATE BROKER,\"MAX BROOCK, BIRMINGHAM\",F4200\nNEW SHAWMUT MINING CO,,Y4000\nSECRETARY,XEROX CORPORATION,M4200\nEMT,ACUTE CARE MEDICAL TRANSPORT,Y4000\nHUNT CLEANERS INC,,G5500\nRN,OCEAN MEDICAL CENTER,H2100\nCEO,AmericLux,Y4000\nPRESID,THE YODOCH WALL COMPANY INC.,B5400\nELECTRICAL CONTRACTOR,\"WIRING, INC.\",Y4000\nInformation Requested,Emml Properties,F4000\nCIVIL SERVANT,US DEPT. OF JUSTICE,X3200\nENGINEER,HERITAGE-ES LLS,J1100\nEXECUTIVE,VARNEY INC,T2300\nPOLICY ANALYST,STAND FOR CHILDREN,JH100\nPUEBLO CHIEFTAIN,,X0000\nCAPITAL PAINTING CO./MANAGER/OWNER,,B3000\nBELLVIEW OB/GYN/PHYSICIAN,,H1130\nCertified Public accountant,Self employed,F5100\nOWNER,SATCHER MOTOR CO.,T2300\nAttorney,Loeffler Tuggey LLP,K1000\nATTORNEY,SCHWARTZ DOWNY,Y4000\nPSE & G,,E1620\nPRESIDENT/CEO,INDEPENDENT HEALTH CARE PROPERRTIES LL,Y4000\nLOUDCLOUD,,C5100\nProfessor (retired),none (retired),Z9500\nPRESIDENT AND CEO,DIALOG ON DIVERSITY,J7500\nWEALTH ADVISORY,MOUNT YALE CAPITAL,F0000\nATTORNEY,\"FORBES, FIELDS & ASSOCIATES CO. LPA\",Y4000\nGREEN & MARKS PE LLP,,Y4000\nTOM PEEBLES BLDRS INC,,Y4000\nPHYSICIST,NJIT,H5100\nOIL OPERATOR,GARY WILLIAMS ENERGY CORP.,E1000\nINDEPENDENT CONSULTANT,CRAIG TALLARD,Y4000\nF & R CONSTRUCTION S E,,B1500\nATTORNEY,POWELL GOLDSTEIR,Y4000\nOWNER,\"DEPOSITECH, INC.\",Y4000\nBest Effort,Teamsters Local 222,Y4000\nPEDIATRICIAN,VIA CHRISTI HOSPITAL,J7400\nNORTH MEMORIAL MEDICAL CENTER,,H1100\nSALES,SNIDER FLEET SOLUTIONS,Y4000\nCHAIRMAN,\"HAYNES BESLO GROUP, LLC\",Y4000\nCEO,Global strategy group,G5280\nPARK SUPERVISOR,TOWN OF HEMPSTEAD,X3000\nPRESIDENT,POTOMAC STRATEGIC DEVELOPMENT CO. LLC,K2000\nGENERAL MANAGER,J M LEXUS INC,T2300\nManaging Director,ENERGY CAPITAL PARTNERS,F2600\nEXECUTIVE,MILLENNIUM DIGITAL MEDIA,C2200\nLAWYER,\"FIDDLER, GONZALEZ & RIVERA\",K1000\nNeurosurgeon,Bay Care Clinic,H1100\nGMC,DOUG HENRY GM,Y4000\nPRUDENTIAL ELLINGHOUSE,,F4200\nTHE MAXWELL COMPANY,,Y4000\nRisk Manager,Dowd Wescott,F2100\nDoctor,Sharp Rees-Stealy Medical Group Inc,H1100\nCONTRACTOR,WEST HILLS CONSTRUCTION INC.,B1500\nEXECUTIVE SEARCH,COOK ASSOCIATES,Z9500\nOwner,IDT,Y4000\nSHEPORD SCHWARTZ & HARRIS,,J5100\nATTORNEY,\"OLIFF & BERRIDGE, PLC\",K1000\nVETERINARIA,RETIRED - SELF EMPLOYED,X1200\nRETIRED,DAS COLAND CORPORATI,X1200\nGOORLAND & MANN INC,,Y4000\nOwner/Pharmacist,Palmetto Breathing Solutions,Y4000\nEXECUTIVE,J.G. GRAY ESTATE,Y4000\nINVESTMENTS,T.E.D. INVESTMENTS,Y4000\nEVECUTIVE VICE PRESIDENT,\"STANFORD WHITE, INC.\",B4000\nHINE & NIEDRACH,,Y4000\nSVP,\"Gap, Inc\",G4000\nCOLORADO SPRINGS SYMPHON,,C2900\nFREELANCE PUBLICIST,NOT EMPLOYED,G5200\nCEO,JLNV Inc.,Y4000\nMCKENNA & CUNEO,,A4100\nELECTRON MICROSCOPE ASSOCIATE,,Y4000\nARCHITECT,MBH ARCHITECTS,B4200\nCONSULTANT,HEARTLAND STRATEGIES LLC,Y4000\nCONST SUPT,,B4000\nINFO REQUESTED,SELF,F4700\nEVEREN,,F2100\nENGINEERING MANAGER,MONOTYPE,Y4000\nINVESTMENT,MERIDIAN CAPITAL MARKETS,Y4000\nCTO,Tierranet Inc,Y4000\nphysical therapist,THERAPY 2000,Z9500\nEXECUTIVE,INTREPID MUSEUM,X4200\nVP,INSTITUTIONAL SALES,Y4000\nFORMER VICE PRESI,\"GIANT EAGLE, INC.\",G2400\nDevelopment,Avera,Y4000\nMCCARTHY TRANSFER,,Y4000\nCEO,A.G. SPANOS CO.,F4100\nPhysician,Park Place MRI,Y4000\nProfessor of Law,\"Pace University, School of Law\",H5170\nMANAGER,U.S. DEPT. OF VA,X3000\nBRASSFIELD ENTERPRISES,,Y4000\nVP Government Affairs,\"Methodist Hospital, The\",H2100\nM V P INC,,Y4000\nCPA,\"Cherry, Bekaert & Holland, LLP\",F5100\n\"LEO'S FOOD MART\",,J7500\nBUILDER,CAROLINA MODEL HOMES,B2000\nMEYER AND ASSOCIATES,,B4400\nCONFEDERATED KAUFMANN FUND,,F2100\nAttorney,Williams Kastner & Gibbs,Y4000\nPresident/CEO,Wexford Custom Homes of Texas,B2000\nLEGISLATOR,STATE OF ALABAMA,Z9000\nRANCHING/REAL ESTATE,Self employed,A3000\nMC NEIL & CO,,Y4000\nOrganization Develop,Countrywide Financial Corp.,F4600\nAd Exec,Haley Miranda,Y4000\nVP OPERATIONS,MEDICA,H0000\nEXXECUTIVE,TACC,Y4000\nFOOD & BEVERAGE,,H1130\nmom/Advocate/Artist,Lisa Setos,Y4000\nCompliance Officer,US Army,L1100\nV.P. OF HUMAN RESOUR,TEXAS DIE CASTING,M5000\nRetired,Deputy Commissioner of the Revenue,Y4000\nExecutive,\"System DevelopmentIntegration, LLC\",J1200\nACCOUNT REP,MA ST FOULDS CO,Y4000\nRetailer,Great American Heritage,Y4000\nCERTIFIED PUBLIC ACCOUNTANT,\"ZELENKOFSKE AXELROD, LLC\",F5100\nTEACHER,MSSD STATE OF MISSOURI/TEACHER,X3000\nOil Operator,Mackinaw Two L.L.C.,Y4000\nEXECUTIVE DIRECTOR,COLDWELL BANKER,F4200\nOwner,Canton Beverage,Y4000\nConsultant,Toffler Associates,Z9000\nDIRECTOR,WCIRB OF CALIFORNIA,Y4000\nATTO,PICARDO MCCALL MILLER & NORTON,K1000\nAttorney,Lambda Legal Defense & Education Fund,K1000\nPHYSI,\"THE EAR, NOSE & THROAT CENTER\",Y4000\nConsulting,Orchard Medical Consulting,J7400\nIMAGE INDUSTRIES INC,,Y4000\nOFFICE S,WASHINGTON SCHOOL DISTRICT,X3500\nT M CRANE SERVICE,,Y4000\nSHOTMEYER BROTHERS,,E1160\nDIRECT,PARADIGM HEALTHCARE SERVICES,Y4000\nATTORNEY,RICHIE FELTS DILLARD,Y4000\nManaging Director,Moroccan American Center for Policy,J5400\nFORD DEALER,BOB THOMAS FORD,T2300\nProgrammer,R/GA,Y4000\nLAWYER,GEICO,F3100\nprofessor (tenured),San Jose State (semi retired; working,Y4000\nHomemaker,Self-Employed,G5000\nVENDING MARKUPS,SELF-EMPLOYED,Y4000\nMEGGITT SAEFTY SYSTEMS,,Y4000\nKOHLBERG & ROBERTS CO,,F2600\nPRESIDENT,OFFICE-COMMERCIAL CLEANING OF WV,Y4000\nPRESIDENT,KESSLER & ASSOC.,K2000\nATTORNEY,AIG GLOBAL REAL ESTATE/ATTORNEY,F4000\nCARDIOLOGIST,CVC,Y4000\nLELAND CONSULTING LLC,,Y4000\nVP/GM,\"KERZNER INT'L\",J1200\nPartner,Mintz Levin,K1000\nCustomer Service Rep,Union Pacific Railroad,T5100\nLAWYER,FEDERAL EXPRESS,T7100\nSTOCKWELL SIENERT LAW FIRM,,K1000\nAnalyst,RS Investments,F7000\nPHYSICIAN,CENTRAL FLORIDA ANESTH,H1130\nDesigner,Samuel Botero & Associates,Y4000\nPUBLIC REL,FD DITTUS COMMUNICATIONS,Y4000\nPhysician,VA HOSPITAL,H1100\nWINE DISTRIBUTOR,SAGE CELLARS,Y4000\n\"STATE'S ATTORNEY\",STATE OF ILLINOIS,X3000\nREQUESTED,INFO,J7400\nFARMER,HANSEN FARMS,A1000\nNurse consultant,State of Alaska,X3000\nPRESIDE,THOMAS JEFFERSON UNIVERSITY,H5100\nEXEC,EDARDS ANGELL,Y4000\nMARION COUNTY SCHOOLS,,X3500\nATTORNEY,\"RILEY & FANELLI, P.C.\",K1000\nATTORN,BROCHSTEIN BANTLEY & BABCOCK,K1000\nBANKE,CROCKETT COUNTY NATIONAL BANK,F1100\nPharmacist,St Marys Pharmacy,G4900\nPROGRAM MANAGER,GENERAL ELECTRIC,M2300\nCEO,Spring Creek,Y4000\nPresident,\"Rgb Mechanical Contractors, In\",B3000\nSALES,LODGE LUMBER COMPANY,B5200\nHR CONSULTAN,FREDERIC W. COOK & CO.,Y4000\nEXECUTIV,METROPOLITAN TRANSIT AUTH.,T4000\nFINANCIAL ADVISOR,ALBION WEALTH MANAGEMENT,Y4000\nBIBLE TEACHER,SELF,Y4000\nOWNER,SMITH & SMITH,Y4000\nC.E.O.,Christensen Shipyards,T6100\nPHYSICIAN,CENTER FOR PLASTIC SURGERY,H1130\nNORTHERN TRUST CORPORATION,,F0000\nLAWYER,\"MAS TEC, INC.\",B1000\nBANKER,SKY FINANCIAL GROUP,F0000\nRESEARCH ADMINISTRATOR,COLD SPRING HARBOR LAB/RESEARCH ADM,H3400\nVice Chair,Geoff Wood,Y4000\nAttorney,Day Berry Howard,Y4000\nMINISTER,PRESBYTERY OF TROPICAL FLORIDA,Y4000\nCOUNSELOR,BIRMINGHAM GROVES,Y4000\nSR. VICE PRESIDENT/G,MC CRTMICK & COMPANY,Y4000\nHUGHES LUMBER,,B5200\nSENIOR VICE PRESIDENT,HEALTHTRUST,Y4000\nMusic Publisher,\"Songs Music Publishing, LLC\",C2600\nRETIRED,NORTH DALLAS ORTHOPEDICS & REHAB,H1130\nATTORNEY,THE SIPP LAW FIRM,K1000\nArchitect,Rpa,Y4000\nAttorney,\"Thompson & Knight, LLP\",Z9500\nPROGRAMMER,WORLDSPAN,J1200\nHealth Care Consultant,DGA Partners,JE300\nOwner,John A Clark,Y4000\nHOWARD UNIV COL OF MEDICINE,,H5150\nEXOTEC,,Y4000\nPHYSICIAN,UMDNJ-NJ MEDICAL SCHOOL,Y4000\nCOLLEGE PROFESSOR,DRURY UNIVERSITY,H5100\nACCOUNTANT,RED WING PUBLISHING CO,C1100\nProfessor,Washington University in St. Louis,B1000\nFOREIGN POLICY CONSULTANT,SELF,Y4000\nPhysician,Metro Anesthesia Consultants,H1130\nADKINS FARMS INC,,A1500\nINSURANCE,CORISH & CO. INC,Y4000\nALTSHULER BORZEN LAW FIRM,,K1000\nCOORDINATOR,Information Requested,Y4000\nRetired,J C & K C Company,Y4000\nINSURANCE,CITY UNDERWRITING AGENCY,F3100\nBUSINESSPERSON,\"YOGO, LLC\",Y4000\nGov Affairs,Self - Employed,G0000\nPHILIP MORRIS MGMT CORP,,A1300\nTLC AMERICA,,Y4000\nINVESTMENTS,EDS,J1200\nCHAIRMAN,STRATEGIC GROWTH CAPITAL,Y4000\nLAIRD-NORTON,,A5200\nRetired,Applied Data Research,J1200\nATTORNEY,THE NATURE CONSERVATORY,JE300\nNO HAVEN CERAMIC TILE/SECRETARY/TRE,,J1200\nVENTURE C,STERLING CAPITAL PARTNERS,F2500\nNEWTON DENTAL ASSOCIATES,,H1400\nM I S PROFESSIONALS INC,,Y4000\nAdministrator--Cente,UPMC,H2100\nJUDYS DELI,,G2900\nVICE PRESI,NEPHROGENEX INCORPORATED,Y4000\nCEO,OMT Inc,Y4000\nDIRECTOR OF FUND DEVELOPMENT,SILICON VALLEY EDUCATION FOUNDATION,Y4000\nPRESIDENT,BERTRANG FINANCIAL,Y4000\nCOLLEGE PROFESSOR,GEORGE WASHINGTON UNIVERSITY,J1200\nHE,SANDRA SHELLEY & ASSOCIATES INC.,Y4000\nJACK FIRST INC (GUN STORE),,Y4000\nAttorney,Self,X4100\nREAL ESTATE BROKER,COLDWELL BANKER FUNKHOUSER/REAL EST,F4200\nPRESID,BRIAN MEARE PUBLIC RELATIONS,G5210\nOWNER,ANDIAMOS,G2900\nCeo,Michigan Assn. Of Homebuilders,Y4000\nAirfield,Self employed,J1100\nWALKER DIGITAL CORP,,Y4000\nUNEMPLOYED,INFORMATION REQUESTED PER BEST EFFORTS,Y4000\nFRANCHISEE,\"WENDY'S\",Y4000\nINTERN,WHITE HOUSE,X3000\nExecutive VP,Meridan Health,Y4000\nENGINEER,HEFLIN ENGINEERING INC.,Y4000\nFORMER JUDGE,STATE,X3000\nInformation Requested,Usdoj,X3200\nExecutive,\"Flix Connection, Inc.\",Y4000\nASSOCIATE,GLOBAL ENVIRONMENT FUND,F2600\nPresident/CEO,Financial Services Roundtable,F0000\nTE,PIEDMONT UNIFIED SCHOOL DISTRICT,J7400\nCALFEE CO. OF DALTON INC.,,G4300\nFire Fighter/EMS,FORT MEADE FIRE DEPT.,L1400\nPEREGRINE SYSTEMS,,C5120\nAttorney,\"Latham & Watkins, LLP\",K1000\nPRESIDENT,\"COOTS MATERIALS CO., INC.\",B5100\nVICE PRESIDENT,CENTER MARKETING CO,Y4000\nEXECUTIVE,WESTWARD SEAFOODS,G2350\nCommunity Volunteer,Unemployed,J7400\nPartner,\"Chaffee & Associates, LLC\",F3300\nPHYSICIAN/PODIATRIST,SARMONT PODIATRY,Y4000\nVP,LOS ANGELES LAKERS,G6400\nPRESIDENT,RW DEVELOPMENT,F4100\nScientist,Philips,Y4000\nT C MORRISON LAW FIRM,,K1000\nRetired,Exxonmobil Corporation,E1110\nMUSEUM EXHIBIT TECHNICIAN,RETIRED,X1200\nChairman,JR Butler and Company,Y4000\nOwner,Professional Staffing,G5250\nBUSINESS OWNER,\"SUBIA, INC.\",G2900\nCPA,KENNETH SMITH,Y4000\nEDITOR/COLUMNIST,ZAMAN AMERICA,Y4000\nEXECUTIVE VP,HERBALIFE,H4600\nSELF EMPLOYED,\"COMER HOLDINGS, LLC\",Z9500\nCEO,COTTONWOOD DE TUCSON,Y4000\nSELF-EMPLOYED/SEMI-RETIRED/CONSULTA,,X1200\nNYS OFFICE OF TEMP & DISAB ASSIST,,Y4000\nIt Director,Mcnc,J1200\nSENIOR VICE PRESIDENT,COASTAL FEDERAL CREDIT UNION,F1300\nMANAGER,SCARINCI & HOLLENBECK,K1000\nLAWYER,SANDBERG PHOENIX LAW FIRM,K1000\nPresident,\"Jon Lancaster, Inc.\",T2310\n\"VICE PRESIDENT, SCRIPTED SERIES\",LIFETIME NETWORKS,C2200\nV,NATIONWIDE HEALTH PROPERTIES INC.,H2200\nVAN SCHAAK,,F4000\nCOLLEGE WEAR,,M3100\nLEE SEXTON & ASSOCIATES,,Y4000\nHIGHER EDUCATION,UNIVERSITY OF TEXAS,H5100\nBLUE RIDGE AMBALATORY,,Y4000\nLecturer-artist,UCSD-self,H5100\n,MERCURY INTERNATIONAL TRADING CORP,Y4000\nMD,Selfemployed,H1100\nVice President - Sma,Chatfield Air Ambulence,Y4000\nSUMRELL SUGG CARMICHAEL HICKS & HAR,,Y4000\nFINANCIAL EXECUTIVE,FREEHOLD SAVINGS BANK,Y4000\n\"SENIOR ASSOC, INTERNATIONAL SERVICES\",BOB LAWRENCE & ASSOCIATES,K2000\n\"MECHANICAL SYSTEMS, INC.\",,Y4000\nROWLAND AND ROWLAND,,K1000\nFarmer,Perry Farms,A1000\nNeurologist,\"Vancouver Radiologists, PS\",Z9500\nBARNES & THORNBURY,,K1000\nMENLO VENTURES,,F2500\nPSYCHOLOGIST,UNIVERSITY OF PA,H5100\nDIRECTOR OF OPERATIO,ASYLUM SOCCER,Y4000\nPresident/CEO,Heritage Construction Co.  Inc,B2000\nCivic Volunteer,Self-employed,Z9500\n\"Manager, Conference Programming\",Consumer Electronics Association,C0000\nLeg. Assistant,US Senator Murray,X3000\nBOOKKEEPER,\"HARRISON UROLOGY CLINIC, P.A.\",H1130\nHEINZ-DANIER ASSOCIATES,,F3100\nGM,Lexus of Valencia,T2310\nAttorney,Rome McGuigan Sabanosh,K1000\nAttorney,Thornton Early and Naumes,K1100\nKLEIN INVESTMENT GROUP LP,,F0000\nCEO,AMERICAN WATER,E5000\nPCA,MID VALLEY AG SERVICE,Y4000\nMCLANAHAN CORP,,E1240\nAttorney,Walker & Levesque Llc,K1000\nCEO,The Battery Source Inc,J1200\n\"VP, INT'L GOVERNMENT RELATIONS\",THE BOEING COMPANY,D2000\nGRABER REAL ESTATE,,F4200\nTeacher,Arizona State University,H5100\nPresident,Wrencare,Y4000\nPROJECT DIRECTOR,PRO-CHOICE AMERICA,J1200\nBRIDGEPORT RADIOLOGY ASSOC,,H1130\nSPECIAL EVENTS PLANNER,SELF EMPLOYED,G5200\nVETERINAR,ELGIN VETERINARY HOSPITAL,A4500\nREALTY INVESTMENT COMPANY,,H2200\nINV RELATIONS CONSULTANTS,,Y4000\nAttorney,Garwin Gerste & Fisher Llp,K1000\nBROADCAST,\"KOOR COMMUNICATIONS, INC.\",Y4000\nMATRIX PARTNERS,,F2500\nINSURANCE SALES,WATSON INSURANCE,F3100\nWAREHOUSE DIRECTOR,SOUTHWESTERN COMPANY,G4800\nCONSULTING GEOLOGIST,,E1000\nSECRETARY,\"KENNEDY'S\",Y4000\nSELF CO,,Y4000\nVICE,\"RELIANCE HEALTHCARE MGT, INC.\",H0000\nSOUTHWEST TEXAS STATE UNI,,Y4000\nOWNER,ABBOTT WORKHOLDINGS PRODUCTS,J9000\nPresident,Land Advisors,Y4000\nRetired,NUCLEAR MGMT CORPORATION,Y4000\nRETAIL,MICHAEL CHINZEL CHOCOLATES,Y4000\nREAL ESTA,\"O'CONNOR CAPITAL PARTNERS\",F0000\nSingleton Associates,,F4100\nCAPRA FARMS HELIPORT/OWNER/MANAGER,,Y4000\nPRESIDENT & CEO,\"CAID, INC.\",M5000\nImport Business,Self-Employed,G3500\nAGENT,BRESKE INSURANCE,F3000\nADMINISTRATOR,MCLEOD HOSPITAL,H2100\nRESTRUANT OWNER,LAS CASAS,G2900\nHERNANDEZ ENGINEER INC,,Y4000\nDATABASE ADMINIST,NEW PROCESS STEEL,M2100\nSystems Administrato,CSC,Y4000\nAttorney,Smith and Sowalsky,K1000\nManager,Liberty Mechanical Contractors,B3000\nLAWYER,PNC FINANCIAL SERVICES GROUP,F1100\nCEO,\"Entrac, Inc\",M2300\nCLIENT SERVICE AGENT,BW INSURANCE AGENCY,Y4000\n.Information Request,.Information Requested,X1200\nOwner,Hillcrest Stables,Y4000\nPresident,Jet Holding Company,Y4000\nPresident,Power Plant Professionals LLC,Y4000\nInsurance Agent,\"Wiseman Insurance Agency, LLC\",F3100\nConsultant,Weber Shandick,J7400\nEXECUTIVE DIRECTOR,\"NATIONAL AMBUCS, INC.\",Y4000\nExecutive,Northern Properties,B2400\n\"ATTORNEY GENERAL'\",STATE OF COLORADO,X3000\nSystems Support,Bank of America,F1100\nOWNER,ADVANCED CLEANING SERVICES,Y4000\nFOUNDER,\"NATIONAL NEURO TESTING, INC\",H1130\nPRESIDENT,VARIS DEVELOPMENT/PRESIDENT,Y4000\nREAL ESTATE AGENT,DRUCKER AND FALK,F4000\nProfessor,Webster University,H5100\nBUSINESSMAN,LMR INC.,Y4000\nPRESIDENT & CEO,MADISON FINANCIAL,F0000\nATTORNEY,\"JONES, HURLEY ET ALL\",K1000\nGeneral Partner,NJK Investments,Y4000\nSABU,,C2600\nVETERINA,CALIFORNIA ANIMAL HOSPITAL,A4500\nART CURATOR,\"SAGAMORE PARTNERS, LTD\",T9100\nExecutive,\"ProLogic, Inc\",C5130\nGeneral Partner/Real Estate Agent,AVG Partners,Y4000\nLAWYER,EISNER & FRANK,K1000\nPHYSICI,INDIAN RIVER MEDICAL CENTER,H1130\nSCIENTIST,WYETH RESEARCH/SCIENTIST,H4300\nARKANSAS MOTOR CARRIERS,,Y4000\nACOUSTIC CONSULTANT,SELF-EMPLOYED/ACOUSTIC CONSULTANT,Y4000\nGENERAL MANAGER,BALDWIN ENTERPRISES,T9100\nCHAIR,IRISH AMERICAN DEMOCRATS,J1200\nCONSULTANT,TARGET CONSULTING,Y4000\nPresdient,The Barnhart Group,Y4000\nPARTNER,PLATINUM ENERGY LLC,E1000\nFRANCHISEE,MSH RESTAURANT MGMT INC.,G1000\nBANK TEXAS GROUP,,F1000\nhomemkaer,none,J1200\nSENIOR TAX COUNSEL,\"CITIGROUP, INC.\",F1100\nEXECUTIVE,PETITTO MINE EQUIPMENT,Y4000\nTECH PROJECT MANAGER,PRICEGRABBER.COM,Y4000\nEXECUTIVE VICE PRESIDENT,AMERICAN SOCIETY OF ANESTHESIOLOGISTS,G0000\nL S STARRETT CO,,M5100\nConsultant,Southeastern Michigan Health Associati,Y4000\nWALL CONCRETE PIPE,,B5100\nProfessor,Harvard Professor,Y4000\nAttorney,\"Media Rights Capital II, LP\",Y4000\nOwner,Patriot Systems Llc,Y4000\nSupervisory Public Health Analyst,CDC/Nchs,X3000\nUSA HOME HEALTH CARE,,H3100\nInfo Requested by Campaign,Info Requested by Campaign,Y2000\n\"SONNY BRYAN'S SMOKEHOUSE\",,Y4000\nDirector,Curtiss-Wright,T1300\nBanker,HVB,Y4000\nCORPORATE SECRETARY,PINNACLE WEST,E1600\nINORGANIC VENTURES INC,,Y4000\n\"BRANDENBURG, STAEDLER, MOORE\",,F4100\nPHYSICIAN,BETHANY WOMENS HEALTHCARE,Y4000\nINSTRUCTIONAL COACH,LAUSD/INSTRUCTIONAL COACH,X3500\nCALIFORNIA CASUALTY CO,,F3100\nNORTHBROOK COMPUTERS,,G4200\nENERGY INVESTOR,SELF-EMPLOYED,E1000\nBERGH ELEVATOR,,E1610\nTEACHER,FPL,E1600\nTHE HOUSE OF LA ROSE,,G2850\nAuto Trader & Transport,Self Employed,Y4000\nATTORNEYS,PERSELS AND ASSOCIATES,T1400\nEngineer,\"M.L.B. Industries, Inc.\",Y4000\nPresident,Timberland Boat Company,M3200\nBANKER,FIFTH THIRD BANK,Z9500\nLEGISLATOR,HAWAII HOUSE OF REPRESENTATIVES,Y4000\nPresident,\"Texas TST, INC.- TIMCO Divis\",Y4000\nC,GREAT PLAINS COMMUNICATIONS; INC.,C4100\nVIEW NET INC,,Y4000\nAttorney,\"Archer & Greiner, PC\",K1000\n\"CHAVEZ-GRIEVES, CONSULTING ENGINEER\",,B4000\n\"CARL'S MARKET\",,G2400\nJEFFERSON COUNTY (KY) GOVERNMENT,,X3000\nBROKER,MORGAN REAL ESTATE INC.,F4000\nDENTIST,BROWN DENTAL PA,H1400\nATTORNEY,\"BUCKLES & BUCKLES, PLC\",K0000\nYORK SCHOOL DISTRICT,,X3500\nPRESIDENT,BLUMBERG CAPITAL,J5100\nONOLOGIST,SELF-EMPLOYED/ONOLOGIST,Y4000\nManaging Member,\"Arience Capital Management, L.P.\",F2100\nDIRECTOR OF REAL ESTATE,KWIK TRIP,E1170\nfinancial services,Retired,X1200\nVP-TECHNOLOGY/OPERATIONS,WELLS FARGO,J7500\nAttorney,Kohrman Jackson and Krantz PLL,K1000\nFarm Owner,Hatton Hills Farms Llc,A1000\nARTS ADMINISTRATOR,INTERNATIONAL HOUSE,T9100\nMORTGA,INDEPENDENT MORTGAGE COMPANY,F4600\nPHYS,PRIMARY HEALTH CARE ASSOCIATES,H1100\nPRESIDENT,HAYDEN BUILDING MAINTENANCE CORP.,B3000\nrancher/outfitter,Bear Track Inc,Y4000\nCEO,Elite Security Inc,Y4000\nREALTOR,HOBOKEN BROWNSTONE COMPANY,J1200\nself employed-investor-day trader-libe,self,Y4000\nOwner/Principal/Part,Sleight Construction,B2000\nOwner,Bluegrass Dairy& FoodLLC,A2000\nPresident,Radiology Of South Central Michigan,H1130\nEMPLOYED,,G0000\nEngineer,Bursich Associates Inc,B4300\nAtorney,Berger and Green PC,Y4000\nLawyer,None,K1000\nPHYSI,\"HALL OF FAME WOMAN'S CLINIC I\",H1100\nCLARK-PORCHE CONSTRUCTION,,B2000\nVP PROGRAMMING & RESEARCH,\"FOX TELEVISION STATIONS, INC.\",C1100\nVP,HARRIS CORPORATION,D3000\nReal estate agent,atlantic commercial real estate Inc,F4000\nPRIMORIS SERVICES CORP,EXECUTIVE,B3000\nexecutive,Grow Assoc.,J1200\nPOLICY ANALYST,NATIONAL ASSOCIATION OF REALTORS,F4200\nOWNER,TEAMWERKS,Y4000\nRADIO,VIRGINIA MASON MEDICAL CENTER,H2100\nSKAGG MTRS INC-DODGE CITY,,T2300\nPresident,Alpha Painting & Decorating In,B3000\nRETIRED,RISE,A4100\n\"Sales, Investments\",Self,G0000\nBENEDICT CONSTRUCTION,,B1500\nRESEARCHER,MASS. GENERAL,Y4000\nExec./Forester,\"Starker Forests, Inc\",A5000\nPublic Relations,Marc Jacobs,J1200\nVice President,\"Strategic Marketing Innovations, I\",K2000\nExecutive,Linda Jenckes and Associates,J7400\nCHAIRMAN,HCA,Z9500\nCHIEF INFORMATION OFFICER,PRIMEDIA,G5210\nBest Effort,Best Effort,G6500\nLawyer,\"Ritclay, Fisher, Whitman & Klein\",K1000\nPresident,Las Lomitas Education Foundation,X4100\nLAWYER,MACHUCA & ASSOCIATES,Y4000\nNEUROSURGEON,FRANCISCAN SKEMP HEALTHCARE/NEUROSU,H1130\nMANAGEMENT,AMERICAN GENERAL FINANCIAL SERVICES,F1400\nRETIRED FACTORY WORKER,N/A,J1200\nBanker,First Financial Corporation,F1400\nCRED,RED ROCKS FEDERAL CREDIT UNION,F1300\nOwner,Exsertus Assist,Y4000\nCSI GROUP,,A5200\nPresident,Potomac Group,K2000\nEVANS ROSEN PORTNOY & QUINN,,K1000\nSenior VP & COO,\"Fikes Truck Line, Inc.\",T3100\nPARTNER,GULF OFFSHORE LOGISTICS/PARTNER,E1150\nPOCANTICO DEVELOPMENT ASSOC,,F4100\nPhysician,Univ of  OK hsc,H5100\nVP PRO,FOSTER WHEELER NORTH AMERICA,B4000\nOBERWEIS ASSET MANAGEMENT INC,,F2100\ninformation architect,Razorfish,Y4000\nOWNER,HI-WAY AUTO PARTS,Y4000\nEXECUTIVE VICE PRESIDENT,FIRST FINANCIAL BANCSHARES,F1100\nFINANCIAL OFFICER,GINN COMPANY,Y4000\nPsychologist,Commonwealth Of Massachusetts,X3000\nC E O,\"America's Pharmacy\",G4900\nEXECUTIVE,\"PAYPAL, INC.\",C5140\nLABORER,KALIKOW CONSTRUCTION LLC,LB100\nCEO,\"Medivactor, Inc\",Y4000\nSENIOR DIRECTOR,QUINN GILLESPIE & ASSOCIATES/SENIOR,K2000\nCHAIRMAN OF,WESTERN NEWSPAPERS INC.,C1100\nFSUD,,Y4000\nOW,SUSAN SWENSON HEALTH & LIFESTYLE,Y4000\nAGRIC,\"INT'L CENTER FOR TROP. AGRIC.\",Z5300\nPRESIDENT,THATCHER COMPANY,G1200\nChairman,MacKay Shields LLC,Z9500\nEXECUTIVE,TODD PACIFIC SHIPYARDS,T6100\nPresident,First State Bank,F0000\nBROKER,ART SPECIALIST,G4600\nDirector,Staten Island Economic Development Cor,Y4000\nV-3 INC,,Y4000\nINFO REQUESTED,MIST INC.,Y4000\nHARRIS TRUST & SAVINGS,,F1200\nENGINEER,WASTE ALTERNATIVES INC,E3000\nPres,Blue Flame Energy Corp,E1100\nEXECUTIVE,SONNY MERRYMAN INC.,Y4000\nSWAGELOK CO,,M5000\nMANUFACTURER,GENESIS FURNITURE,Y4000\nManager,Fort Washington Investment Advisors,F2100\nMACED,,Y4000\nPRESIDENT,SETRACON INC,G5290\nAttorney,\"Burns, Doane\",J1200\nTHE CANTON CO,,G2500\nSACRAMENTAL COORDINATOR,ST. MARK THE EVANGELIST,X7000\nHEICK HESTER & ASSOCIATES,,Y4000\nExecutive Director,Bastian Foundation,Y4000\nGOVERNMENT AFFAIRS,MCCANN CAPITOL ADVOCATES,Z9500\nHAREN REALITY CORP,,F4000\nAttorney,\"Kevin L. Murphy & Associates, P.S.C.\",Z9000\n\"CHAIRMAN, EXECUTI\",TIMMONS & COMPANY,K2000\nPresident,\"Blossman Gas, Inc\",E1190\nADMINISTRATION,WNY BD. OF ED.,X3500\nPresident,\"Light Sources, Inc\",Y4000\nBANK OF AMERICA/MERRILL LYNCH/BANKE,,F1100\nGENERAL MANAGER,MARRIOTT SERVICES,Y4000\nBRENTEN STEIL & BASTING SC,,Y4000\nREALTOR,HAYDEN REAL ESTATE,F4000\nPhysical Therapist,Plainfield CCSD 202,Y4000\nPRESIDENT,SPERRY OCEAN DOCK,T6000\nDR GASPIR ARGILAGOS,,H1100\nMISSOURI REPERTORY THEATRE,,C2700\nConsultant,Vistage Worldwide,Y4000\nAdministrator,City Colleges of Chicago,H5100\nChairman,Central Bank and Trust,F1000\nSOMERSET,,B1500\nMARFORK PRESID,MASSEY COAL SERVICES,E1210\nBLOOMBERG,,JE300\nPrincipal,Ash Brokerage,Y4000\nPRESIDENT AN,AVALON PHARMACEUTICALS,H4300\nTEACHER,UNIVERSITY OF PENNSYLVANIA,J1200\nHealth Educator,Health Mark Multimed,Y4000\nEXEC,HERSCHEND FAMILY ENTERTAINMENT,J1100\nSENIO,SUNGARD AVAILIBILITY SERVICES,Y4000\nVICE PRESIDENT,NCHA,H2100\nPresident,Western Wireless Corporation,C4300\nPRESIDENT,DONNA M. GAINES,Y4000\nGEORGIA CREDIT UNION AFFI,,Y4000\nBusiness Executive,PEPSI COLA COMPANY,G2600\nHAYWARD NISSAN,,T2310\nPUBLIC RELATIONS,EMERSON,C5000\nWriter/editor,Self employed,C1100\nI.T. MANAGER,U.S. GOVERNMENT,X3000\nCHIEF COMPLIANCE OFFICER,HEATH INSURANCE INNOVATIONS,Y4000\nESCROW LAND CO INC,,Y4000\nPhysician,Womens Health Specialists Inc,H1100\nExecutive Director,Florida Mainstream Alliance,Y4000\nCEO,\"PARKS MEDICAL ELECTRONICS, INC.\",H4100\nVENTURE CAPITALIST,5AM VENTURES,F7000\nOrthopaedic Surgeon,Emory University,H1130\n\"Heating, Cooling & V\",Winningham Heating & Cooling,B3400\nCARNEGIE FABRICS,,J1200\nVice President,Good Health Network Inc.,Y4000\nCOUNSEL ASSOCIATE,CAPITAL RESEARCH MANAGEMENT COMPANY,F2100\nEXECUTIVE,M.B.N.A.,F1400\nJ M PRODUCTIONS INC,,Y4000\nPresident,Globepharm,J5100\nTeacher,Fabius-Pompey Central,Y4000\nPHYSICIAN,GASTROENTEROLOGY CONSULTANTS OF GREATE,H1130\nOwner/ Director,Faith Home Care Inc.,Y4000\nNU-METAL,,M2000\nOffice Assistant,Voyager Charter School,Y4000\nHOOVER FAMILY MEDICINE,,H1100\nAdministrator,The Lyon Firm,Y4000\nCFP,SELF,Z9500\nprofessor of art,retired professor,X1200\nTEACHER,DEPT. OF EDUCATION DISTRICT 30,L1300\nPHYSICIAN,STEPHEN KOVARIK,Y4000\nPreident,Antioch Univ-McGregor,H5100\nCONVEREYS CORPORATION,,C5130\nPhysicion,Al Diagnostic,Y4000\nAttorney,Sacramento Public Library Authority,X4200\n\"Chief Eng, Sys Des& Comp Integ\",Pratt & Whitney,D2000\nChief Executive Officer,Health Quest Corporation,H0000\nSOFTWARE ENGINEER,LOCALYTITIS INC,Y4000\nPATENT AGENT,PERKINS COIE LLP,K1000\nTELEDYNE CASTING SER,,Y4000\nPresident / Sales,\"Carolina Machine and Tool, Inc.\",M5000\nPHYSICIAN,AMC,Y4000\nLt. Col.,United States military,X5000\nPHYSICI,\"INDIAN HEALTH SERVICE, DHHS\",Y4000\nPHYSICIAN,VA. M.C.,H1100\nWILLIAM BARNET & SON INC,,M1400\nEXECUTIVE DIRE,OHIO SOYBEAN COUNCIL,A1500\nATTORNEY,DOHERTY FINANCIAL GROUP,F0000\nTBI CONSTRUCTION/VP/CFO,,B1500\nOWNER/DESIGNER,TAKOHL DESIGN LTD.,Y4000\nKEAN MILLER,,Y4000\nAttorney,Daper & Kramer,K1000\nVice President,Western National Mutual Insurance Comp,F3100\nINVESTMENT PLANNER,,F2100\nDEVELOPMENT B,COLLEGE OF CHARLESTON,H5100\nCHIROPRACTO,ADVANCE HEALTH SERVICES,H1500\nAUCTIONEER AND R,\"PAUL MCINNIS, INC.\",Y4000\nOWNER/PARTNER,WESTERN VILLAGE SHOPPING CTR,Y4000\nDOCT,ADVANCED PAIN MANAGEMENT CENTE,Y4000\nPRESIDENT,\"BAKER'S MANAGEMENT, INC.\",G2400\nAttorney,Bamberger Law,K1000\nPACIFIC CLAY PRODUCT,,B5000\nPublic Relations Executive,Self Employed,G5210\nTRUST PRESID,TNB FINANCIAL SERVICES,F0000\nRETIRED ELECTED OFFICIAL,NONE,X1200\nSALES REPRESENTATIVE,GOLDN PLUMP POULTRY,A2300\nAttorney,\"Feuerhelm & Kenville, PC\",K1000\nINVESTMENT ADVISOR,\"MILES CAPITAL, INC.\",F2100\nPetroleum,Self-Employed,E1100\nPHYSIATRIST. PROFESSOR,STANFORD UNIVERSITY,J7400\nATTOR,KINNARD CLAYTON AND BEVERIDGE,K1000\nVice President,\"St Mary's College of Maryland\",H5100\nChairman/CEO,Maguire Properties,F4100\nUCSD SCH OF MED,,Y4000\nPRESIDENT & CEO,U.S. COAL CORP/PRESIDENT & CEO,E1210\nChiropractor,Keith Clinic of Chiropractic,H1500\nOWNER,ROY-L-T TRUCKING INC.,T3100\nPhysician,\"Raul Guisado MD, Inc\",H1100\nSOCIAL SERVICE COORDINATOR,PANORAMA CCRC,Y4000\nCONSULTANT,BLUE CANOPY,C5130\nPresident,Laredo Community College,H5100\nATTORN,PIONEER ELECTRIC COOPERATIVE,E1610\nProgram Officer,American Legacy Foundation,J9000\nVAN KIM VO,,H1400\nLAND & CATTLE CO,,A3000\n\"KENTUCKY ATTORNEY GENERAL'S OF\",,X3200\nMoney Manager,\"Chilton Investment Company, Inc.\",F2100\nBUSINESSMAN,SOUTHERN COMPANY,E1600\nBANNEKER INDUSTRIES,,Y4000\nFOLSOM REAL ESTATE,,F4200\nTRANS-TEC,,Y4000\nENGINEER,HAYES ENG. INC.,Y4000\n\"HEAD, RESEARCH AND DEVELOPPMENT\",\"NEURO PROBE, INC\",H1130\nCHIEF OPERATING OFFICER,NORTHWOOD INVESTORS,F4100\nAttorney,BB&T,F1100\nSAINT BARNABAS MEDICAL CE,,Y4000\nADJUDICATIONS OFFICER,FEDERAL GOVERNMENT (USCIS).,Y4000\n\"CEO, FOUNDER\",ACADEMYONE,Z9500\nVice Chairman,\"BANK OF OKLAHOMA, N.A.\",F1100\nD & L VENTURE CORP,,G4100\nGRADUATE ASSISTANT,UNIVERSITY OF DENVER,H5100\nVP,TKC MANAGEMENT SERVICES,Y4000\nINSURANCE AGENT-CONTR,SELF-EMPLOYED,F2500\nFRIEDMAN JEWELERS,,J5100\nADVERTISING,OGILVY & MATHER,K2000\nLAWYER,ARNOLD,K1000\nOwner,Done in a Day- Home Staging,Y4000\nWHITSELL AND CO CPA,,F5100\nHUPPEL SAWYER,,Y4000\nPresident,Gadsden Tomato,Y4000\nCADWELL INDUSTRIES,,Y4000\nPARTNER,KLA HEALTHCARE CONSULTANTS,H0000\nSTUDENT,UVA,Y1000\nJMW SETTLEMENTS INC,,Y4000\nBURGUNDY CITCO,,E1170\nRN,ELLEN MEMORIAL  HOSPITAL,H2100\nattorney,Fontheim International,K2000\nBANKER,GIRARD NATIONAL BANK,Y4000\nPRESIDENT,INCOME PROPERTY MANAGEMENT,F4500\nBUSINESS BROKER,STUMP & COMPANY,Y4000\nCRC HOLDINGS INC,,Y4000\nCPA,NOT EMPLOYED,J5100\nMANAGEMENT,TRADER CONSTRUCTION COMPANY,B1500\nGEO-MORINE INC,,Y4000\nINVESTMENTS,DB ALEX BROWN,Y4000\nTIE KING CORP,,Y4000\nB & E PROPERTIES,,Y4000\nELECTRICAL CONTRACTOR,HELCO ELECTRIC INC,Z9500\nInformation Requeste,Northrop Gurmman Space Technolog,D5000\nDAVID SERNOFF RES CT,,Y4000\nVICCON INTERNATIONAL,,Y4000\nBUSINESS CONSULTANT/ATTORNEY,YORKSHIRE VENTURES LLC,Y4000\nCHIEF EXECUTIVE,WIND CAPITAL GROUP,F0000\nConsultant,P. J. Parker & Co.,Y4000\nINTERMART,,Y4000\nReal Estate - CEO,Maxus Properties,F4000\nANN ASCHER INTERIORS INC,,Y4000\nADMINISTRATION,TOTAL PETROCHEMICALS,M1000\nPresident,Saratoga Lumber Traders Inc.,B5200\nATTORNEY,ROBBINS GELLER,K1100\nPresident,AMERICAN LEASE INSURANCE,G5300\nMANAGING MEMBER,SELF-EMPLOYED,Y4000\n\"ED VOYCE'S CO'S\",,Y4000\nENGINEER,SOLEXANT CORP.,Y4000\nEGAN MCAALLESTER A,,Y4000\nBuilding Contractor,Fitzgerald Builders Inc,B1500\nMETCALF & CO,,Y4000\nUNIVERSITY PROFES,MEOSEO UNIVERSITY,Y4000\nAttorney,\"Dykema, Gossett, Reoks, Pitts\",Y4000\nCPA,BEACH FLEISCHMAN,Y4000\naudiology research,Foundation for Hearing Aid Research,X4100\nHOTELIER,,T9100\nOWNER,TARE GROUP INC.,J7500\nExecutive,Air Technical Industries,Y4000\nATTORNEY,\"GAYLORD & EYERMAN, P.C.\",K1000\nCEO,\"O'NEIL ASSOC.\",K1000\nEx-CEO/ Consultant,Fresh Express Salads,C5120\nSales,Backroads,T8400\nPETER PERLMAN LAW OFFICES,,K1100\nCASUAL COAT,,Y4000\nPresident,Allegis Group Inc.,G5250\nLOUIS M MARTINI,,G2820\nJOHN G PHILLIPS AND ASSOCIATES,,K1000\nTHE COLUMBUS SERUM CO,,H4000\nINVESTMENTS,ARCON PARTNERS,Z9500\nPRESIDENT,BERNUTH AGENCIES INC.,T6200\nPorter,1220 Park Ave Corp,Y4000\nPRICE/HOWLETT INC./GOVERNMENT RELAT,,G5270\nCPA,\"WINEBERG SOLHEIM HOWELL & SHAIN, PC\",J5100\nKIRK ENTERPRISES INC,,Y4000\nRestaurateur,Self Employed,F4000\nNORCROSS SUPPLY COMPANY,,B5000\nNon- profit meetings,RSA United States,J1200\nADRIAN HOMES,,F7000\nScientist,Alcon Research Ltd,Y4000\nATT,INSTITUTE FOR DEMOCRACY STUDIES,Y4000\nAttorney,\"Joseph R. Giannini, Esq.\",K1000\nVANDERBILT HOSP BAPTIST,,H2100\nEngineer,Cozi,C5120\nBANKER,CAPITAL CITY SECURITIES,F2100\nChairperson,Addicts Rehab Center,H3200\nPresident,Warrior Asphalt Refining Corporation,G1200\nHOOVER AND PHILLIPS,,F4300\nPRE,ANDOVER STRATEGIC ALLIANCES INC,G5270\nPHYSICIAN,COL. PRES. HOSPITAL,H2100\nOwner,Morton S Minsley Attorney At Law,K1000\nCEO,Airdat LLC,M9000\nINSURANC,LEMME INSURANCE GROUP INC.,F3100\nSOFTWARE ENGINEER,BLUE STAR SOFTWARE,C5120\nVice President Global Medical Affairs,\"Allergan, Inc.\",H4300\nPhysician,Primary Health Care of Dade,Y4000\nMARCOR ASBESTOS REMOVAL CORPORATION,,E2000\nUNITED DEN CARE,,H1400\nManagement,LTP Mgmt.,G2900\nnone,N/A,J7400\nENTREPRENEUR,THE HILL GROUP,B3000\nVP INDUSTRY AFFAIRS,VALLOUREC & MANNESMANN USA,Y4000\nEDITOR,UNIVERSITY OF ARKANSAS AT LITTLE RO,H5100\nAssistant Vice Presi,Ohio Casualty Group,F3100\nLACTATION CONSULTANT,PRIVATE PRACTICE,G0000\nConsultant,Conwell Hooper and Associates,Y4000\ntruck dealer,\"Marola Motor Sales, Inc.\",Y4000\nGovernment Affairs,Monsanto,A4000\nADVANTAGE RENT A CAR,,T2500\nCorporate Management Consultant,Self employed,G0000\nDEALER PRINCIPAL,LIBERTY CHRYSLER JEEP VOLKSWAGEN SUPER,T2300\nOWNER,RE BENGEL SHEET METAL,M2000\nACCOUNTING,ENERGY PRODUCTS & TECH.,E1000\nVP,Boehringer Ingelheim Corporation,H4300\nREALTOR,BASSETT MIX & ASSOCIATES,Y4000\nGovernment Affairs,Steptoe and Johnson LLP,K2000\nGENERAL COUNSEL,GOLDMAN SACHS & CO.,F2300\nChairman Emeritus,First American Corp.,J1100\nSales,ADT,Y4000\nPhysician,PrimeCare Of Southeastern Ohio Inc,H1100\nCHIEF EXECUTIVE OFFICER,TUMAROUND FOR CHILDREN,X4000\nPresident,Ecological Solutions,H1130\nDOG CARE,NA,J1200\n\"Director, Community/Government Relatio\",\"Children's Hospital Central California\",H2100\nPHYSICIA,NATIONAL INSTITUTE OF PAIN,Y4000\nINVESTMENT COUNSELORS,A.G. EDWARDS,F2100\nLIFELINE HOME HEALTH,,H3100\nPHARMA,PARK SHORE PHARMACY SERVICES,G4900\nMARINE,US MILITARY,X5000\nRADIOLOGIST,CELESTIAL IMAGING,H1130\nPresident/Chief Exec,Superior Die Tool and Machine Co.,M5100\nVP & GENERAL MANAGER-DIVISION,EMERSON ELECTRIC CO.,M2000\nPRESIDENT,BANCROFT & COMPANY,G5270\nEXECUTIVE VICE PRESIDENT,OPI,Y4000\nATTORNEY,SAVAGE LAW FIRM,Z9500\nExecutive Director,Neb. Republican Party,Y4000\nDIRECTOR,PAL-TECH INC.,Z9500\nLawyer,\"Saltz Mongeluzzi Barrett & Bendesky, P\",K1000\nINDEPENDENT FILM PRODUCER,THELONIUS ALEXANDER,Y4000\n\"SR GOV'T RELATIONS C\",HEALTH NET,H3700\nEXECUTIVE,W COLSTON LEIGH INC,Z9500\nOwner,Alpen Cellars,G2820\nNone,Bruce Foods Corporation,F2000\nCEO,Flinchbaugh Engineering,B4400\nPROFESSOR,SUNY ALBANY,H5100\nSALES,PREFERRED PROPERTIES,F4000\nMICHAEL CREWS DEVELOPMENT,,Y4000\n\"SALES, RETAIL\",Hunter Dodge,T2300\nPhysician and Surgeon,Self-Employed,H1100\nData Analyst,Getco LLC,F2200\nRETIRED CONSULTANT,EXXONMOBIL,E1110\nPROFESSOR,ARTIST,X0000\nPresident,DOT Foods,G2000\nSOLID MOTION LLC/SELF/CEO OF TRUCKI,,Y4000\nPhysician,72nd St Medical Associates,H1100\nSystems Analyst,\"Dominion Resources Services, Inc\",E1620\nCPA,DEFENSE CONTRACT AUDIT AGENCY,X5000\nVeterinary Practice Manager,Susan Gregory,Y4000\nRestaurant Owner,D.C. Coast,J1200\nAttorney,\"Powers, Pyles  DC\",K1000\nOWNER,ADDINGTON ENTERPRISES,E1210\nLawyer,Parsher Foe,Y4000\nFacility Maintenance,Palace Indian Gaming Center,Y4000\nLawyer,Herrmann Law Firm,K1000\nOwner,Baxter Hotel,T9100\nPRESIDENT,SOUTHGROUP INSURANCE,F3100\nADVOCATE,AMNESTY INTERNATIONAL,J1200\nJINGOLI & SONS,,J1200\nN/A/HOUSEWIFE,,X1200\nCAL AIIA - PROPERTY DEVEL CO,,F4100\nLawyer,Hogan & Hartson,K1000\nMANAGER,ROYDON MANAGEMENT COMPANY,Y4000\nAMERICAN PARKING SYSTEMS INC,,F4500\nRETIRED,NOT WORKING,Y1000\nVICE PRESIDENT &  GENERAL MANAGER,\"SAM'S TOWN HOTEL GAMBLING HALL\",G6500\nMARRIAGE & FAMILY THERAPIST,SELF-EMPLOYED/MARRIAGE & FAMILY THE,H1700\nAGENCY OWNE,RUBEN SANCHEZ INSURANCE,F3100\nREAL ESTATE,TARGET V ASSOCIATES,Y4000\nSHANNON MARKETING SALES,,G2500\nBAILEYDONOVAN LLC/EXHIBIT DESIGN/GR,,Y4000\nARCHITECT,D & DG,B4200\nINFO REQUESTED,ONLINE EMPLOYMENT SVC.,G5250\nLawyer,Law Office of Colin Cameron,K1000\nOwner,Demarcus Drainage Company,Y4000\nExec. VP/COO,\"Greyhound Lines, Inc\",T4100\nFINANCE DIRECTOR,LOWER SOUTHAMPTON TOWNSHIP,Y4000\nHALL & MUSKA,,Y4000\nLIBEL DEFENSE RESOURCE CENTER INC,,Y4000\nAttorney/Association Manager,American Orthotic & Prosthetic Assoc,Y4000\nINVESTOR,ARMIN JADALLAH,Y4000\nPRESIDENT,RYAN RESTAURANT CORP.,G2900\nATTORNEY,LEBLANC & WADDELL (NOW BARON & BUDD,K1000\nHEALTH CARE,SDC HEALTH SERVICES,Y4000\nJAFFE RAITT HEUER & WEISS PC,,K1000\nWASH WATER POWER,,Y4000\nPHYSICIAN,DARTMOUTH HITCHCOCK CLINIC,H2100\nPROFESSOR,UNIV OF SCRANTON,H5100\nInformation Requeste,\"DST Systems, Inc.\",C5130\nG JOSEPH REARDON INC,,B4400\nTheatre Owner/operat,Mtr Theatre Service Inc.,C2900\nSENIOR VICE PRESIDEN,EXELON NUCLEAR,Y4000\nMANAGER,MELBOURNE GREYHOUND/MANAGER,Y4000\nExecutive,HARRIS ROTHENBERG,Y4000\nARCHITECT,NOT EMPLOYED,Z9500\nattorney,Casale & Bonner,K1000\nVice President  Community Relations,Comcast Corporation,C2200\nPRESIDENT,MCE & ASSOC INC,B4000\nVP & TREASURER,THE DUBERSTEIN GROUP,K2000\nPRESIDENT,PRESTO CONVENIENCE STORES,Y4000\nCHAIRMAN,\"BIG '6' DRILLING CO.\",E1150\nCONTRACTOR,DYNCORPS INTL,D9000\nLicensed Physician And Surgeon,Information Requested,H1130\nFUNERAL DIRECTOR,BOSAK FUNERAL HOME,G5400\nPhysician,St.Louis Orthopedic Institute,H1130\nADMINSTRATION,THORO PACKAGING,M7100\nComputer Applications,Town of Brookline,X3000\nOwner,Breitling Ventures,G6500\nBANKING,CENTURY BANK OF OKLAHOMA/BANKING,F1100\nMERCHANDISE COORDIN,T.J. MAXX STORE,Y4000\nLawyer,Kirkland And Ellis,K1000\nACCOUNT MAN,AVNET APPLIED COMPUTING,Y4000\nDRIVER,SEATTLE GOODWILL,Y4000\nOwner,Saufley Implement,Y4000\nCRAIG TAINES,,Y4000\nPsychiatric RN,State of Kansas,X3000\nCmo/President,Palmleo,Y4000\nVP - STRATEGY,\"ALPHA NATURAL RESOURCES SERVICES, LLC\",E1210\nAstronomer,Carnegie Inst. Of Wa,X4100\nInvestment Manager,PNC Equity Management Corporation,F2100\nEnvironmental Services A,Dublin San Ramon Service,Y4000\nSpeech Analyst,Self employed,Y4000\nTAXI DRIVER,SELF-EMPLOYED/TAXI DRIVER,T4200\nPresident & CEO,Inland Real Estate Investment Corporat,F4100\nAVON,,M3300\nATTORNEY,DAVIS & KUELTMAN,K1000\nChief Operating Officer,Carilion Clinic,H2100\nPresident,National Pawnbrokers Assoc.,G4600\nManaging Director Co,Jpmorgan Chase,F1100\nSUNRIVER RESORT,,F1100\nPresident,Mid Western Restaruant Inc.,G2900\nPHARMACY BENEFIT MANAGER,EXPRESS SCRIPTS,H3000\nPHYSICIAN,COASTAL CARDIOLOGY ASSOCIATES,H1130\nPRINCIPAL,\"A & H COMMERCE PARK, LLC\",Y4000\nCITY OF TUSTIN,,A6000\nSELF,SCI,Y4000\nLOWVEAU,,Y4000\nATTORNEY,COONEY & CONWAY PS,K1000\nReal Estate Broker,Dolan Realtors,Z9500\nCONSULTANT,MFC,Y4000\nProduct Manager,Motorola,C4600\nCIMINI MERIC BURNS COUNCE,,Y4000\n\"Director, Software\",Joyent,Y4000\nSTATE GOVERNMENT RELA,SELF EMPLOYED,Y4000\n\"Dir, Legislative Aff\",Multi-Business Services Corpor,H4100\nDENTIST,\"WM R. JOHNSON D. D. S., INC.\",Y4000\nart dealer,Bergamot Station Ltd,J7400\nCOMPUTER PROGRAMMER,PIXAR ANIMATION STUDIOS,J1200\nWESTGATE GROUP INC,,Y4000\nAttorney,Boyd & Assoc.,K1000\nAuto Dealer,Hal Gilliam Ford Sales Inc,T2300\nREALTOR,ERA REAL ESTATE PROFESSIONALS,J9000\n\"Civil Engineer, Consulting\",KPG Inc,Y4000\nREGIO,SALOMON SMITH BARNEY HOLDINGS,F1100\n\"R.N., J.D.\",DR. DIVYANG TRIVEDI,J1200\nISDANER & CO,,F5100\nPRESIDENT,J&M TANK LINES INC.,T3100\nLawyer,Alacqua & Baierlein Llp,K1000\nPHYSICIAN,MONTEFIERE MEDICAL CENTER,Y4000\nProfessor of English,Drew University,H5100\nDONALDSON LUFKIN & JONRETTE SECURIT,,J5100\nCHAIN CONSTRUCTION CORP,,B0500\nBuilder,Waguespack Homes LLC,B2000\nMC BRIDE & ASSOCIATES,,K2000\nPRESIDENT,A.L. EASTMON & SONS,Y4000\nEnv Associate,BASELINE Environmental,Y4000\nA,N,B5400\nCENTURY 21 NORTHERN IL,,F4200\nASSISTA,\"BROWN PACKING COMPANY, INC.\",G2300\nCORPORATE COUNSEL,RW ARMSTRONG,B4000\nPRODUCE DISTRIBUTO,BROOKS TROPICALS,A1400\nBond Analyst,Abn Amro Inc.,F1100\nLEIGH KING & ASSOC PC,,Y4000\nDALLAS FOWLER & WILLS,,Y4000\nPRESIDENT,CHPA,H4300\nPHIFER WIRE,,G2900\nCUMBERLAND INC,,F4100\nATTORNEY,BRACEWELL & GIULIANI.COM,K1000\nSALES,ROCKY MOUNTAIN IMAGES,Y4000\n\"President, Ford Brazil And M\",Ford Motor Company,T2100\nEngineer,\"MC CORMICK, TAYLOR & ASSOCIATES\",B1000\nVA STATE POLICE,,X3000\nNatl Conservative Campaign Fun,,J1100\nLamb McErlane,,K1000\nVICE PRESIDENT- SPECIAL PROJECTS,CHECKSMART FINANCIAL LLC,F1420\nC.P.A.,BROWNVILLE ACCOUNTING FIRM,Y4000\nATTORNEY,CLEARWIRE,C5120\nINS,CUPERTINO UNION SCHOOL DISTRICT,X3500\nEXECUTIVE,DONGNE-BANGNE,K2000\nSCHEDULER,KB HOME,B2000\nVice President-Finance,The Blackstone Group,F2600\nK & F MANAGEMENT INC,,Y4000\nMORTGAGE BROKER,ALLIED HOME MORTAGE,F4600\nSALISBURY ANESTHESIA AND PAIN,,H1130\nAttorney,\"Rudy, Exelrod & Zieff, LLP\",K1000\nGOVERNMENT RELATIONS CONSULTANT,VIOHL AND ASSOCIATES INC.,K2000\nDentist,Ngoc Q Chu DDS PA,H1400\nSEDGWICK NOBLE LOUNDES,,Y4000\nReal Estate Develope,\"Harper's Development\",Y4000\nlawyer,\"Mayer, Brown, Rowet\",K1000\nU S NAVY / SSP/ENGENIER,,X5000\nMODERN CORPORATION,,F4000\nVP GOVERNMENT RELATIONS,AT&T,C4200\nHORSESHOE GAMING,,Y4000\nBusiness Owner,McGrath Lexus,T2310\nPURCHASING MAN,ASH GROVE CEMENT CO.,B5100\nDevelopment Director,AIDS Action Committee,H3500\nPrin,Michael Andrews Pc,Y4000\nInvestment Management,DB Zwirn & Co,F2700\nReal Estate,Haymaker Bean,F4000\nQUARLES-BRADY LAW FIRM,,K2000\nSales,Vivian Clark Limited,Y4000\nPHILA INTERNATL RECORDS,,Y4000\nIACOBUCCI TUXEDOS,,Y4000\nOFFICE EMPLOYEE,BANK OF HERSCHER,F1000\nSENIOR POLICY ADVISOR,NYC COUNCIL,Y4000\nbusiness,great neck saw mfrs inc,M5100\nTechnician,Landist Gyr Inc,Y4000\nPHYSICIAN,VIRGINIA COMMONWEALTH UNIVERSITY,H1100\nNY ASS OF HOMES & SERVICES FOR THE,,Y4000\nHEA,JOHN HANCOCK LIFE INSURANCE CO.,F3200\nCHAIRMAN & CHIEF EXECUTIVE OFFICER,THE NICKELS GROUP,K2000\nBONE FARMS INC,,J1100\nPHYSICIAN,FRANCISCAN SKEMP HEALTH CTR,H1100\nGLENN LEO BARROGA,,Y4000\nVice President / Chief Information Off,CentraState Healthcare System,Z9500\nSenior Vice President,Hsbc,F1400\nHERRMAN CHIROPRACTIC,,H1500\nAtty,Marstow and Stensky,Y4000\nHAR-WHIT INC,,M5000\nExecutive,Free Markets Inc,G5270\nCorp executive,\"RightPath Payments, Inc.\",Z9500\nTHE MUNDY COMPONTE,,Y4000\nSALLY SHY COMPANY,,Y4000\nConsultant,FTF Consulting,Y4000\nREPRESENTATIVE,CA GENERAL ASSEMBLY/REPRESENTATIVE,Y4000\nTEA,BLUE HILL MAINE SCHOOL DISTRICT,X3500\nSVP Lending,OmniAmerican Credit Union,F1300\nSr. Programmer Analy,United Parcel Service,T7100\nPRESIDENT,\"PRESIDIUM RETIREMENT ADVISERS, INC.\",G0000\nDoctor,Dr. Edgar Cleaver,H1100\nPHYSICIAN,\"ST. JOHN'S CLINIC\",H1130\nOFFICE MANAGER,\"MERVYN SAMUEL, MD\",H1100\nSPORTS JOURNALIST,NOT EMPLOYED,Y1000\nPUBLISHER,SAXE HEALTHCARE COMMUNICATIONS,Y4000\nLEGISLATIVE CANDIDATE,LEGISLATIVE CANDIDATE,Y4000\nCROCKER & CO,,Y4000\nPhysician,\"Women's Clinic Ltd\",H1100\nBusiness Owner,\"Kentucky Truck Sales, Inc\",Y4000\nNAPLES TOMATO GROWERS INC,,Y4000\nExecutive,United States Postal Service,X3700\nUNITED HELENIC AMER CONGRESS,,X4000\nFAMILY PHYSICIAN,,H1100\nDir of Fed Tax Policy/CE,Independent Community Bankers of Ameri,F1100\nSelf,Investments,E1120\nPRESIDENT,RWE HOLDINGS,Y4000\nOLLIE NORMAN REALTY,,F4200\nSETON HILL UNIVERSITY/ORTHODONTIST/,,H5100\nCHAIRMAN,SHEPHERD CENTER INC.,Y4000\nSOLID W,WILLIMANTIC WASTE PAPER INC,E3000\nPresident,Worldwide Travel Marketing,T9100\nCommunity Volunteer,Information Requested,Y4000\nPRESIDENT,FOERTSCH CONSTRUCTION COMPANY INC.,B1500\nRAYMOND JAMES & ASSOC,,F2400\nTECHNOLOGY EXECUT,\"GREEN VOLTS, INC.\",JE300\nATTORNEY,BREDELL AND BREDELL,K1000\nfarmer,self,A1400\nPresident,G J Sullivan Co. E & S Brokers,Y4000\nMANAGER,AEROTECH HOLDING L.T.D.,Y4000\n\"EPSTEIN, BECKER & GREEN\",,J7400\nBAYLIKE PINES SCHOOL,,H5100\nPARK EAST CONSTR,,B1500\nattorney,May Department Stores,J1200\nEAST BAY CLARKLIFT,,Y4000\nLANE & WATERMAN LLP,,Y4000\nSPECIAL EDUCATION SERVICE,,Y4000\nL & M. BINDERY INC./PRESIDENT/ OWNE,,Y4000\nExecutive Director,Philadelphia Futures for Youth,Z9500\nINDP OIL & GAS PRODUCER,,E1120\nExecutive Vice Presi,Berlin-Wheeler,Y4000\nINVESTOR,GRUSS & CO,F7000\nUS ARMY/ANALYST/FT STUDENT,,X5000\nBookeeper And Physician,Anderson Medical Group/Marietta Memror,Y4000\nGENESIS HEALTHCARE CORPORATOIN,,H2200\nOWNER,BASIC ADHESIVES/OWNER,M1700\nOWNER,SCURLOCK ELECTRIC,B3200\nSawmill & timber executive,Hampton Affiliates,A5000\n\"VICE PRESIDENT, MEDICAL AFFAIRS GMC\",OHIOHEALTH CORPORATION,H2100\n\"Director, Federal Affairs\",CSX Corporation,J1100\nCUMMINS DIESEL,,Y4000\nSR. MARKETING SPECIA,E.I. DUPONT,M1000\nCONSULTANT,GUIDE CONSULTING,Y4000\nVP,TRANSATLANTIC LINES,T6200\nOwner,mK Films,C2400\nAMG ENGINEERING,,B4400\nNURSE,STATE OF MARYLAND,X3000\nHUMAN RESOURCES SPECIALIST,NAVY FACILITIES HAWAII,Z9500\nMETROPOLITAN HOSPITAL COUNCIL OF NE,,H2100\nHAIR DRESSER,\"OLEN'S FAMILY HAIRCUT\",G5100\nWeb Developer,Incapsulate,Y4000\nASSOCIATE,CHASE SECURITIES,F4000\nProfessor,Columbia,J1200\nPHARMACIST,ECKERDS PHARMACY,H2100\nCLERGY,ALL SAINTS CHURCH,Z9500\nReal Estate and Mark,Van Zandt Marketing Services,Y4000\nHUNTER & MORTON,,K1000\nMIDAMERICAN ENERGY,,E1620\nDirector of Purchasing,Foss Maritime Company,T6200\nEngineer,Garden State Engineering,B4400\nBookkeeper,\"Nordic Custom Builders,\",Y4000\nPRES,SOUTHWEST MEDICAL PRODUCTS INC,Y4000\nAffiliated Vice President,IUPAT District Council 91,LB100\nINSURANCE,EMETT INSURANCE SERVICES,J1100\n\"WELLS, RICH ETAL\",,G5210\nOPTOMETRIST,CROWN VISION,Y4000\nChairman and CEO AA Board Member,Inman Mills,F1420\nSec/CFO,\"Ramey Wine Cellars, Inc\",G2820\nPediactric Endocrinologist,Univ. of Arkansas Medical School,H5150\nATTORNEY,SEILLER & HANDMAKER,K1000\nPHYSICIAN,\"ERIE FAMILY HEALTH CENTER, INC.\",H1100\nVice President,ZURICH INSURANCE,F3400\nPRESIDENT,NEMAZEE CAPITAL CORP,F2100\nATTORNEY,BATTLE FOWLER,K1000\nPlanner,NYC DEP,Y4000\nOUTBACK STEAKS,,G2900\nAMER ASSN OF ORTHODONTIST,,G0000\nATTORNEY,HODGSON RUSS ET AL.,Y4000\nOrthopaedic Surgeon,North Platte Orthopaedics,H1130\nHORN GOLDBERG GOMY DANIELS ET AL,,K1000\nPRESIDENT,CA INSTITUTE FOR THE ARTS,Y4000\nFEDERAL HOME LOAN BANK BOARD,,F4600\nMANAGER,VONS GROCERY,G2400\nEXECUTIVE,COMMUNITY BANKERS ASSOCIATION OF OHIO,F1200\nSOUTHERN LEATHER CO,,M3200\nPresident and Chief,Covenant Medical Center,H2100\nRetired Social Worker,Self-Employed,J1200\nASPEN HOTEL & MANOR,,T9100\nPOLICY SOLUTIONS LTD,,Y4000\nDiagnostic Radiologist,Univ of Chicago Hospital,H1130\nOWNER,SECOND ST - AN AMERICAN BISTRO,Y4000\nOHIO WESLEY UNIVERSITY,,J1200\nDEARING BEVERAGE COMPANY,,G2850\n\"CAMBRIDGE NEGOTIATION STRATEGIES, I\",,Y4000\nATTORNEY,HARRY S. COHEN,Y4000\nPRES & CEO,GATEWAY FINANCIAL GROUP,F3100\nUNIVERSITY OF MARYLAND SCHOOL OF LA,,Z9500\nRETIRED EXECUTIVE,MONSANTO,A4100\nPresident,\"Stanton Partners, Inc.\",G4000\nchairman,Recycled Energy Development Inc.,J1200\nLESLIE FAY COMPANIES,,J7150\nBUSINESS OWNER,SWEEPING CORPORATION OF AMERICA,Y4000\nPresident,Stonebrook Title,F4300\nFinance,Hamm Financial Group,Y4000\nProfessor/Writer,Brookings Institution,X4000\nATTORNEY,REISTER LAW FIRM,K1000\nWGBY - TV,,X4000\nAttorney,\"Weil, Gotshal & Manages\",Z9500\nCONSULTANT,SELF EMPLOYED/CONSULTANT,K1000\nGROUP VICE PRES,JONES INTERNATIONAL,C2200\n\"CPA, Partner\",Maillie-Falconiero,F5100\nLawyer,Rutan & Tucker,K1000\nOWNER,GREAT LAKES DENTAL,H1400\nInvestment Banking,\"Agincourt, Ltd\",Y4000\nTEACHER,CAMBRIDGE SCHOOL OF WESTOA,H5100\nOwner,Slim Care Inc.,Y4000\nWILLIAMS MULLEN CLARK & DOBBIN,,K1000\nMANAGER,GE SUPPLY,M2300\nOWNER,WCDM DEVELOPMENT,Y4000\nExecutive,Southern Gas Association,E1100\nPediatrician Professor/Author,University of CO School of Medicine,H5100\nPresident,Carolina Cast Stone Co. Inc.,B5100\nDirector Wholesale P,\"GreenPoint Mortgage Funding, Inc.\",F4600\nSOCIAL WORKER,SUBURBAN HOSPITAL,H2100\nAutomotive Executive,Walden Automotive Group,T2000\nComputer software en,unisource,Y4000\nCONSTRUCTION CONTRACTOR,DANZE CONCRETE INC.,B5100\nHOUSEWIFE,NA,F4200\nCommissoiner,FCC,Y4000\nOrganizational Manager,\"Bello's Group\",Y4000\nPharmacist,The Prescription Shop,H1750\nChief Executive Officer,Marvin Johnson and Associates,T3100\nLegislative Aide,Senator Gary Dahl,Y4000\nPresident/ Hospital Administrator,Carilion New River Valley Medical Cent,H2100\nExecutive,Newman Capital Group,F0000\nLAB. TECH.,GAC,Y4000\nLOEB AND ASSOCIATES LLC,,J7400\nPRESIDENT,\"J.L. DAVIS, INC.\",Y4000\nTRACY HEUN BRENNAN & CO,,Y4000\nPRESIDENT,AMERICAN INSURANCE ASSOCIATION,F3400\n\"TAFT, STETTINIUS & HOLLOTON\",,K1000\nHUNTON & WILLIAMS,,Y4000\nJUMP ASSOCIATES,,Y4000\nCREATIVE DIRECTOR/COPYWRITER,SELF-EMPLOYED/DAVOLA GROUP,G0000\nCONSULTANT,GALILEO CONSULTING GROUP,Y4000\nATTORNE,\"SCHIFFRIN AND BARROWAY, LLP\",K1100\nGOVERNMENT AFFAIRS,VENN STRATEGIES,K2000\nPRESIDENT,IAC GROUP,G5280\nNurse Educator,South Carolina State University,H5100\nProduction Supervisor,Draftfcb,G5210\nCEO,AEGILON/CEO,Y4000\nQuality Manager,Mantech International,D9000\nSales,AFP,Y4000\nFINANCIAL ADVISOR,SELF EMPLOYE,F5000\nACCOUNTANT,TRIUMPH ACCOUNTING LLC,Y4000\nN/A,,M1600\nEXECUTIVE,LAKEWOOD PATHOLOGY,H1130\nPROFESSIONAL VO,,Y4000\nL Y Z,,G4100\nMANAGING PARTNER,TOLMAGE PESKIN HARRIS & FALICK,K1000\nPSYCHOLOGICAL ASSOC,,H1110\nEXECUTIVE VICE PRESIDENT,RAZOR & TIE,C2300\nTeacher,Baruch College,Z9500\nPathologist,Metro Path,Y4000\nBUSINESS,US TOY COMPANY,Z9500\nATTORNEY,\"WRIGHT, JUDD & WINCKLER\",K1000\nPHYSICIAN,\"Ilena Blicker, MD\",H1100\nEXECU,K.G.B. TEXAS PUBLIC RELATIONS,G5210\nZAHN CHIROPRACTIC CLINIC,,H1500\nInformation Requeste,Information Requested,A3000\nEATON,,M2300\nATTORNEY,\"QUINN, EMANUEL, URQUHART & SULLIVAN\",K1100\nBANKER,RHONE GROUP LL,H4300\nPRINCIPLE,CLIFF FAMILY,Y4000\nWHITMAN CANDY COMPANY,,Y4000\nHIGHLAND STARGATE,,F7000\nPhysician,Womens Healthcare of Rogers County Inc,H1130\nJEFFREYS & CO,,Y4000\nEXECUTIVE VP/CEO,AMERICAN SOCIETY OF LANDSCAPE ARCHITEC,B4200\nPARKLAND SERVICE INC,,Y4000\nCo-Owner,\"Baskerville-Donovan, Inc\",B4400\nProfessor,North Carolina State Univ.,J1200\nBusines Owner,Seacoast Management,Y4000\nEXTERNAL RELATI,\"CHILDREN'S HOSPITAL\",H2100\nSHELBY SHEFIFS OFFIC,,Y4000\nCHAIRMAN,ELLMAN COMPANIES,F4500\nBUSINESS OWNER,LUNDELL MFG. CORP.,Y4000\nCHIEF SCIENTIST & TECHNOLOGIST,ECD,E1500\nCAPITOL-HUSTINGS CO INC,,G2850\nTECHNOLOGY MANAGEMENT,SELF-EMPLOYED,Y4000\n\"STATE DIRECTOR, OFFICE OF SENATOR SHAH\",UNITED STATES SENATE,X3000\nROKEBY REALTY COMPANY,,F4200\nReal estate consulta,Self employed,F4000\nProfessor,National Defense Univ,H5100\nTEACHER,KING,Y4000\nCANYON MANAGEMENT CO,,G5270\nEXEC V P,AECOM/EXEC V P,B4200\nTeacher,SPPS,J7120\nPresident,Tuscaloosa Newborn Medicine,H0000\nC2 Group,Executive,K2000\nPHYSICIAN,ROCKY MOUNTAIN CANCER CENTERS - PUEBLO,H2000\nVICE PRESIDENT GOVERNMENT RELATIONS,VERIZON,C4100\nOAKDELL EGG FARM,,A2300\n\"WOMEN'S WAY\",,H6000\nSATELLITE TRANSMISSION SYSTEMS,,Y4000\nSR V,CORAL MIDSTREAM PROCESSING LLC,Y4000\nVICE CHAIR,TORRANCE COUNTY DEMOCRATIC PARTY,J1200\nInformation Requeste,Heartman Insurance,F3100\nSenior Vice President Customer Care,Comcast,C2200\nCEO,Spring View Hospital,H2100\nVice President - Ope,\"McGrath Electrical, Inc.\",B0500\nPRESIDENT,THEO DAVIES EUROMOTORS LT,T2300\nJOHANSON TRANSPORTATION SERVICE,,T0000\nOFFICE MANAGER/BOOKKEEPER,AKROS/DOUGLAS CO.,Y4000\nDeputy Commissioner,New York City Admin for Childrens Serv,Y4000\nSOFTWARE ENGINEER,BLUE ORIGIN,Y4000\nFRIENDS OF GROSSE PTE PUBLIC LIBRAR,,X4200\nGENERAL SHELTER,,B5000\nRITEWAY OIL & GAS,,E1100\nPRESIDENT,BRAUN DAIRY FARM,G1200\nKENTUCKY CARPET,,Y4000\nPresident,Intraco Corporation,Y4000\nCAMBRIDGE INVESTMENT GROUP,,Y4000\nRETIRED PUBLIC SCHOOL TEACHER,SLCUSD,Y4000\nAMERICAN SUNRISE INSURANCE,,F3100\nATTORNEY,REICHERT LAW OFFICE,K1000\nHorse Owner/Breeder,Harris Farms Inc.,A3500\nC.P.A.,ENTERGY,E1620\nGENERAL MANAGER,ZIWA CORP,Y4000\nFRANCO LAFRATTA & FARINHOLT,,Y4000\nPresident/CEO,Providence Center,Y4000\nLEGISLATIVE AG,MASS RETIREES ASSOC.,Y4000\n,RADIOLOGISTS OF NO. FT. LAUDERDALE,H1130\nFINANCE,KAPLAN FINANCIAL SERVICES/FINANCE,F2000\nPHYSICIAN,UNIVERSITY OF MISSOURI,H1100\nprofessor,\"The Leader's Edge\",G5270\nPresident,Air Cover,Y4000\nPROPERTY M,NOVA DEVELOPMENT COMPANY,Y4000\nEXIMO INC,,Y4000\nTRIPCO TRAVEL,,T9400\nCOO,JOE FOSS INSTITUTE,Y4000\nINVESTMENT BANKER/EQUITY,KEEFE BRUYETTE & WOODS,F2100\nEMERGENCY PHYSICIAN,SHANDS JACKSONVILLE,H2100\nPresident & CEO,\"Accuval Associates, Inc.\",G5300\nCONSULTANT,ENS RESOURCES,K2000\nPROCESSOR,\"PAUL PIAZZA & SON, INC\",G2350\nEXECUTIVE DIRECTOR,HELLENIC AMERICAN LEADERSHIP COUNCIL,Y4000\n\"Pres, Transporation\",Honeywell International,D2000\nGENERAL & AUTO MACHINE SHOP,,M2300\nOwner,Tynco Electrical Contruction Inc.,Y4000\nPresident,John T Everett Co.,Y4000\nRESEARCH ASSOCIATE,UNIV OF COLORADO,H5100\nINFORMATION REQUESTE,ISAS,Y4000\nCONSULTANT,DARWIN PARTNERS,J1200\nPRESIDENT,SCHMIT INDUSTRIES,K2000\nC.E.O.,AREA AGENCY AGING OF WESTERN A.R. INC.,Y4000\nPhysician,Pinnaclehealth Hospitals,H1100\nADVANTAGE FOODS,,G2000\nATTORNEY,\"GIBSON, DUNN & CRUTCHEN, LLP\",K1200\nINS DEPT OF JUSTICE,,Y4000\nPRESIDENT AND CEO,MILLER PARTNERS RESTAURANT SOLUTIONS I,G2900\nEMIGRANTBANK/MILSTEIN PROP./CHAIRMA,,F1200\nEVE,\"SELF EMPLOYED - KRISTAN O'NEILL\",J1100\nPROPERTY MANAGEMENT,\"MIDDLE KINGDOM ESTATES, LLC\",Y4000\nDOCTOR,PREMIERE ORTHOPEDICS,J1100\nSCHOOL COMMITTEE MEMBER,REVERE PUBLIC SCHOOLS,Z9500\nGEOLOGIST,LONESTAR RESOURCES,Y4000\nOwner,\"O'Connell Co.\",Y4000\nCEO,FORD RESTAURANT GROUP,G2900\nEXECUTIVE,SOUTHWESTERN MACHINERY,Y4000\nUS POST OFFICE,,J7120\nMedical Physicist,Robert Bois Oncology,H1130\nARCHITECT,LENHARDT LOLLIE & RODGERS,B4200\nCLERICAL,DUPONT PIONEER,JE300\nVP,Chesapeake,J7400\nTeacher,MIDDLETOWN BOARD OF EDUCATION,X3500\nAnesthesiologist,Virginia Mason Medical Center,H1130\nOwner,Willow Valley Assoc.,Y4000\nEXECUTIVE,INTERNATIONAL PAPER,A5200\nPHYSICIAN,\"TEXAS CHILDREN'S\",Y4000\nVP HUMAN RESOURCES,PRATT & WHITNEY,D2000\nAtty.,McGuire Woods LLP,F4200\n3DFX INTERACTIVE INC,,C5110\nREAL ESTATE DEV,TREACCAR REALTY CO.,F4100\nPRESIDENT,ATLANTIC YACHT BASIN INC,T8300\nGENERAL PARTNER,MESA PACIFIC LTD.,Y4000\nENGINEER,COMODO INC.,Z9500\nBENCHMARK MORTGAGE CORP,,F4600\nHanna,self,J1200\nInfomation Systems Mgmnt,University of Chicago,H5100\nMedical Worker,\"Los Olivos Women's Medical Group\",Y4000\nReal Estate Broker,Sterling Real Estate Brokerage,F4000\nPETROLEUM ENGINEER,CONCHO RESOURCES,E1120\nExecutive Director,Stonewall Community Foundation,J7300\nSTUTZMAN,,K1000\n\"SOTHEBY\\\"\"S\",,G5200\nOwner,M & M Distributors Inc.,G2850\nStudent,Ucsd,Y1000\nINVESTOR,GLEN EAGLE PARTNERS,Y4000\nOWNER,PILOT KNOB CEDAR WORKS,Y4000\nMAPLE VALLEY FARMS,,A1000\nDirector,Pdap,Y4000\nREAL ESTATE BUSINESS,\"KENCO COMMUNITIES, INC.\",B2000\nENDODONTIST,SOUTHWEST VIRGINIA ENDODONTICS,Y4000\nattorney,Gary Gayton Law Offices,K1000\nPRESIDENT,DORSETT INDUSTRIES L. P.,G1200\nF B GEMINI LIMITED,,Y4000\nPartner,The Northern Trust Company,F1100\nmanager,Tyco,G5290\nMANAGING PARTNER,\"BASIC INDUSTRIES OF SOUTH, TEXAS\",B3000\n\"ADMINISTRATIVE DIRECTOR, PHARMACY SERV\",UNIVERSITY OF UTAH HOSPITALS,H1750\nVICE PRESIDENT,ALTRIA CLIENT SERVICES/VICE PRESIDE,A1300\nVP & CAO,State Farm,F3400\nDIR,HARRIS COUNTY HOSPITAL DISTRICT,H2100\nVounteer President,Stewards of Affordable Housing for the,Y4000\nBUSS OWNER/ORTHOPEDI,SAM MEDICAL,Y4000\nOwner,Mcwhorter Logging Inc,A5000\nPROFESSO,FORT HAYS STATE UNIVERSITY,H5100\nSales,Guardian Protection Services,Y4000\nVICE PRESIDENT,EDELMAN WORLDWIDE,Y4000\nMEMBER,JOSEPH M ARIYAN ESQUIRE LLC,K1000\nGeorgetown University Law Ctr,,\nBondsman,Burns Bail Bonds,G5000\nVICE PRESI,CRUCIBLE RESEARCH CENTER,Y4000\nFire Fighter / EMS,Jackson Township (Canton) Fire Dept.,L1400\nENGINEER,SEPI,Y4000\nStudent,Wheaton College,Y1000\nEXECUTIVE VP,AIMCO,F4100\nVP & GENERAL MGR,SPX COOLING TECHNOLOGIES,B3400\nIN,RUSSELL C. JOSEPH INTERESTS INC.,Y4000\nQUALITY CONT.ANALY,USPS,X3700\nBENEFIT INSURANCE,,Y4000\nSURETY BOND PRODUCER,EDWARD J. POST CO/SURETY BOND PRODU,Y4000\nREAL ESTA,REIDIN MANAGEMENT COMPANY,F4000\nLITERARY AGENT,,J7400\nVICE PRESIDENT,BLUECROSS BLUESHIELD,F3200\nCONTROLLER,GUAYAKI SUSTAINABLE RAINFOREST PRODUCT,A5000\nATTORNEY,THOMPSON HINE LLP/ATTORNEY,K1000\nSUZIO INSURANCE COMPANY,,F3100\nNORTHWEST COATINGS,,Y4000\nASSET MANAGER,UNIT CRANE & SHOVEL,J1200\nChief Executive Officer,Empire Insurance Companies,F3100\nWILLIAMS & ASSOCIATES,,K2000\nEXECUTIVE CHAIRMAN,LAWRENCE & PARTNERS LLC,Y4000\nSMITH & SOWALSKY,,K1000\nT.V.,,C2100\nGILCREST JEWETT,,B5200\nREGISTERE,RENAL SERVICES OF AMERICA,Y4000\nATTORNEY,\"JAY I. SINSLEY, P.A.\",Y4000\nVICE PRESIDENT,GOLDEN WAVE JEWELRY,M3400\nCONTRACTOR,\"ELMO GREER & SONS, INC.\",B1000\nEXECUTIVE,\"C. FUENTE HOLDINGS, INC.\",F0000\nREAL ESTAT,PRUDENTIAL LOCATIONS LLC,Y4000\nExecutive,Louis-dreyfus Corporation,E1120\nCONTROLLER,STAR  PIPE,Y4000\nWENGERS REED MILL,,A3100\nPHYSICIAN,SOUTH DENVER GASTROENTEROLOGY,H1130\nMULT FUNC COMMUNICATIONS,Lockheed Martin,D2000\nBUSINESS MANAGEMENT,WILLIAM DISTRIBUTING,G2850\nPresident,Totem Ocean Trailer,T6200\nINVSTR,RANCHER,A3000\nPhysician,Huron Valley Radiology,H1130\nDRAPER & KRAMER INC.,,F4200\n\"VICE PRESIDENT, GE\",\"COKER FUEL, INC.\",Y4000\nRev,Saint Marys Care Center,Y4000\nBORING & TUNNELING CO OF,,B1000\nTAXI DRIVER AND COOP VICE PRESIDENT,UNION CAB OF MADISON COOPERATIVE,Z9500\nREALTOR,LANDMART/DEAN LAND & REALTY,F4200\nATTORNEY,THE PERLES LAW FIRM PC,J5100\nRETIRED FEDERAL EMP,N/A,J7400\nCEO,International Bank Of Commerce,Y4000\nMCDOALDS,,Y4000\nEXECUTIVE,VERNDALE PRODUCTS INC,Y4000\nPresident,Kuhl Corp,A4200\nCONSTELLATION PARTNERS,,Y4000\nPRESIDENT/C.E.O.,ALLEGIANCE TITLE,F4300\nJOHN S JAMES CO,,Y4000\nPROGRAM MANAGER,PUBLIC HEALTH INSTITUTE,H0000\nLAWYER,PRINCE & GLICK P.A.,J6200\nAdministrative law Judge,Social Security Administration,X3000\nFORDHAM LAW STUDENT,,Y1000\nATLANTIC COAST SPES,,Y4000\nSUPERVALUE,,G2500\nCOSTEP,,F1400\nRETAIL,\"COX'S GIFTS & JEWELRY\",X3000\nFINANCIAL PLANNER,KOSS OLINGER FINANCIAL GROUP,Y4000\nRealtor,Millenium Group,Y4000\nINFORMATION SYSTEMS DIRECTOR,\"MULL GROUP, INC.\",Y4000\nSAWDUST CITY DEV,,F4100\nCompany Group Chairman,Johnson & Johnson,H4100\nPRESIDENT,\"DEKALB DISTRIBUTING CO., INC.\",G2850\nSenior Planner,Atkins N America Holdings Corporation,B4000\nExecutive Director,ACT Theatre,J1200\nHOSPITAL ADMINIST,HARTFORD HOSPITAL,H2100\nEXECUTIVE DIRECTOR,PRESBYTERIAN HEALTHCARE SERVICES,H2100\nCEO,SABTECH INDUSTRIES INC,C5000\nMaine Medical Center,Fundraiser,G5200\nRegistered Nurse,Kaiser Permanete Medical,H3700\nRMC LONESTAR,,B5100\nSOCIAL WORKER,DEFENDER ASSN OF PHILADELPHIA,Z9500\nPHYSICIAN,SOUTHERN ASSOC,H1120\nEXECUTIVE DIR,THE CAMALA FOUNDATION,J1200\nCEO,\"DALATI'S INSURANCE AGENCY, INC.\",Y4000\nLAB DIRECTOR,MICRO ANALYTICAL,J1100\nSENIOR MANAGEMENT ANALYST,DEPARTMENT OF DEFENSE,X5000\nANALYST,GRYPHON TECHNOLOGIES,D9000\nGREAT SOUTHERN EMPLOYEES,,Y4000\nCUSTOMER SERVICE CONSULTANT,,Y4000\nPHYSICIAN,COLUMBIA RETNA CLINIC,Y4000\nVP HUMAN R,BROWN-FORMAN CORPORATION,G2820\nAntique Restorer,Self employed,G0000\nPRESIDENT,\"MALKIN HOLDINGS, LLC\",F4100\nFINANCIA,MORGAN STANLEY SMITH BAMEY,F2300\nEVP AND GLOBAL CFO,FOSBEL INC,Y4000\nCFO / COO,\"North Run Capital, LP\",J1200\nPresident,\"Newcrest Management,\",T9100\nPathologist,Tift Reg Med Ctr,H1130\nGREYSTONE & COMPANY,,Y4000\nREAL ESTATE,\"TAYCO, LLC\",F4000\nophthalmologist,self,H1120\nHOLLEY CHEVROLET CO,,T2300\nPHYSICATRIST,CDCR,Y4000\nREALTOR,THE STOTT TEAM,Y4000\nRATH MANUFACTURING,,M2100\nFUNDRAISING,BUTTON HOLE,Y4000\nATTORNEY,SHARON N. BOGARAD,K1100\nCLINICAL ASST PROF,UW-MADISON,H5100\nCPA,Parrish Moody & Fikes,F5100\nInvestor,HM Capital Partners LLC,Z9500\nSR. VP STRATEGIC PLAN,COMCAST CORP.,C2200\nARCHITECTURAL DESIGNER,THE MULHERN GROUP,Y4000\nAttorney,Samson & Conlon (self employed),K1000\nENERGY POLICY & REGULA,BP ENERGY CO,E1110\nCONSULTANT,FRIENDS OF BILL WHITE,Y4000\nATTORNEY,EVERT & WEATHERSBY LLC,K1000\nINTERIOR DESIGN,\"HDR ARCHITECTS, INC\",B4200\nBook Retailer,\"Books, Inc.\",Y4000\nEXECUTIVE FO,WORLD FINES FOODS INC.,G2000\nVice President,\"Timmons & Company, Inc.\",J1200\nInvestment Banking,Oppenheimer and co,F2100\nVice Chairperson,New York Life Insurance Co.,F3300\nRICHIE CORPORATION,,Y4000\nEXECUTIVE,DIACO INTERNATIONAL,M3400\nCHAZEN ENGINEERING & LAND SURVEYING,,B4300\nCPA,FOX INDUSTRIES,Y4000\nENGINEER,ALMO CORPORATION,Z9500\nCarpenter,two Woodpeckers Constrection,B1500\nWriter,\"Margaret Boyer, Writer\",Y4000\nMarketing,Golden Telecom,Y4000\nARTIST MANAGEMENT,SELF/ARTIST MANAGEMENT,G5200\nENGINEER,BOEING,J9000\nMAIL ORDER,SELF,J7400\nCEO,.decimal,Y4000\nBail Surety Agent,\"Self-  Al Estes Bail Bonds,Inc\",J7120\nController,Glenayre Tech,Y4000\nPRESIDENT,THE TIERNEY GROUP,G5210\nASHLEE PUBLISHING CO,,C1100\nSECURITY TECHNOLOGY MAN,GM HOLDINGS,F0000\nAttorney,BRADLEY ARANT & WASTON JINMERSON,K1000\nreal estate investment,Boston Capital,F4000\nASSOCIATE VICE PRESIDENT,KIDDER MATHEWS,Y4000\nSOFTWRESRV,,Y4000\nCONSUL,QUINN GILLESPIE & ASSOCIATES,J1200\nBOOKKEEP,FJC SECURITY SERVICES INC.,G5290\nATTORNEY,ZEFFEN ET AL,K1000\nSURGEON,TPMG,H1100\nPHYSICIAN,DARTMOUTH-HITCHCOCK CLINIC,H2000\nSenior VP,Consolidated Cigar Corp,A1300\nEXECUTIVE,HAGLER BAILLY CONSULTING,Y4000\nR.E,WASATCH,F4000\nTAX ASSOCIATE,H & R BLOCK,F5300\nFRANCHISE SALE,\"FASTSIGNS INT'L INC.\",K1000\nSIOUX VALLEY HOSPITAL,,J7400\n\"SMITH PACHTER & D'AMBROSIO\",,K1000\nATTORNEY,\"HOOD, HARGETT & ASSOCIATES\",Y4000\nPSYCHOLOGIST,NYU SCHOOL OF MEDICINE,H5150\nSURGEON,CLARIAN HEALTH,H0000\nMICROSOFT/VICE PRESIDENT/MACINTOSH,,C5120\nPolicy,Pfizer,H4300\nBUSINESS SALES,SELF,Y4000\nExecutive,LA Association of Independent Colleges,H5100\nMANAGER,FEMA,X3000\nSCHOCHET ASSOCIATES,,Y4000\nATTORNEY,\"JAMES & HOFFMAN, PC/ATTORNEY\",K1000\nExecutive,Chevron Corp,E1110\nConsultant,Loden Associates,Y4000\n,\"ROBINSON, BRADSHAW, & HINSON, P.A.\",K1000\nSOFTWARE ENGINEER,APPLIED SCIENCE ASSOCIATES,Y4000\nEXECUTIVE,MULLIN TBG,F3300\nELECTED OFFICIAL SUPT OF PUB INST,,Y4000\nOFFICE MANAGER AND BOOKKEEPER,VON G MEMORY PA,Y4000\nASTROLOGER,,J7400\nEXECUTIVE,BAGATELOS ARCHITECTURAL,B4200\nInsurance Agent,Nussear Insurance Agency Inc.,F3100\nChief Deputy Assessor,Scott County Government,Y4000\nCEO,PARO SERVICES CORP.,Y4000\nSYCAMORE ASSOCIATES,,Y4000\nMURCO OIL AND GAS,,E1100\nEXECUTI,BEAR STEARNS COMPANIES INC.,F2300\nPrincipal,The Alpine Group,K2000\nPRESIDE,PRAIRIE STATES MGMT COMPANY,Y4000\nATTO,MADDOX KOELLER HARGETT & CARUS,K1000\nATTORNEY,\"KELLER ROHRBACK, L.L.P.\",K1000\nOPTHALMOLOGY,,H1120\nFarmer Brd Chair,Self Grange Ins,Y4000\nLAWYER,THE ZINSER LAW FIRM,K1000\nVETIA INC,,Y4000\nactress,Self-Employed,G0000\nBRAUNSLEIN & POWELL,,Y4000\nLeon Medical Centers,,J5200\nAG Pilot,Gomes Farm Air Service,A6000\nReal Estate,Presidio Trust,F4000\nLobbyist,Heidepriem & Mager,K2000\nSPILLER FURNITURE,,Y4000\nPHYSICIAN,UNIVERSITY OF KANSAS/PHYSICIAN,H5100\nPRES,FARBEST FOODS,A2300\nWDRM RADIO STATION,,C2100\nEXECUTIVE,MACERICH CO,J1100\nAMERINET INC,,F1400\nBROWN DISTG. CO. OF WEST PALM BEACH,,G2850\nOWNER,RIVER CONSTRUCTION INC.,B1500\nSALES INFORMATION,,Y4000\nInvestment Manager,Sena-Weller-Rohs-Williams LLC,F2100\nPUTNAM LEXUS,,T2310\nCorporate Secretary,JIM BURKE FORD,T2300\nEngineering Director,Dralle Corp,Y4000\nOwner,Bell Captial Mgmt.,G5210\nBanking,Wells Fargo,F1100\nCONSULTANT,\"RESULTS STAFFING, INC.\",G5250\nSenior Government Affairs Manager,Global Traffic Technologies LLC,G5200\nNE ELECTRONICS,,Y4000\nBOLDT DEVELOPMENT CO,,Y4000\nSURGEON,ROME ORTHOPAEDIC CENTER,H1130\nJAMES COMMUNICATIONS PARTNERS,,Y4000\nENGINEER,ANDRITZ INC.,Y4000\nEXECUTIVE D,COUNCIL NE FARMER COOPS,A6000\nPRESIDENT,WESTCOR LAND TITLE INSURANCE CO.,F4300\nSalesman,Self,Z9500\nRETAIL,EASTERN CLOTHING,M3100\nFOUNDING PARTNER,\"ACON INVESTMENTS, LLC\",F7000\nFinancial Consultant,FTI Consulting,G5200\nCONTRACTOR,\"BUQUET & LEBLANC, INC.\",Y4000\nSENIOR VICE PRESIDENT OF OPERATIONS,ARADIGM CORPORATION,Y4000\nCHIROPRACTOR,RETIRED,X1200\nDEVELOPMENT,THE SCOTTSDALE COMPANY,B1000\nOwner,LANDERS AUTO,Y4000\nRETIRED VETERNARIAN,,X1200\nREAL ESTATE,AMELIA BULLOCK REALTORS,F4200\nINSTRUCTOR,RIVERSIDE COMMUNITY COLLEGE DISTRICT,H5100\nEXECUTIVE,\"ROBERTSON'S HONDA\",T2310\nAttorney,Mack Law Firm Chartered,K1000\nEXECUTIVE,\"VERIDYNE, INC\",Z9500\nREAL ESTAT,NORMAN BOBROW & CO. INC.,F4000\nOIL & GAS INVES,,E1100\nCARL KARCHER ENTP,,Y4000\nLEGISLATIVE CONSULTANT,INDEPENENT COMMUNITY BANKERS OF AMERIC,F1100\nAttorney,Logan Carson & Haas,K1000\nLeadership and Teambuilding Coach,Self employed,G0000\nChairman,Arrl Internstional,Y4000\nCOMMERCIAL FISHERMAN,F/V MIDDLETON.INC,Y4000\nCOO,Fallon Community Health Plan,H3000\nANESTHESIOLOGIST,\"MIDWEST ANESTHESIA CONSULTANTS, SC\",H1130\nSales,Phoenix Beverage,Y4000\nDIRECTOR,MANHATTAN INSTITUTE,J1100\n\"OFFICE OF STATE'S ATTORNEY\",,X3200\nOWNER,SOUTHERN PINES PLANTATION,F4000\nSVP Investor Relations,Amerigroup Corporation,H3700\nCHIEF SCIENTIST,USAID,X3000\nRetired,Wulpbeg Reese,Y4000\nOwner,Euro Remodeling Solutions Inc.,Y4000\n\"SVP, GOVERNMENT AFFAIRS\",FARMERS INSURANCE,F3100\nSubstitute teacher,Paramus School District,X3500\nDOCTOR,CHICAGO GYNECOLOGIC ONCOLOGY,H1130\nVIACOM,,C2000\nOwner,\"Manship Gas, Inc\",Y4000\nSECRETARY,KILGORE EYE CARE CENTER,Y4000\nOWNER,D.O.V.E.S.,Y4000\nexecutive,Fanjul Corp,Y4000\nRESEARCH NURSE,MEDIMMUNE INC.,H4500\nReal Estate,Ft Lauderedale Investments,F4000\nUNIVERSITY ADMINISTRATOR,ENMU,Y4000\nMANAGER,\"UNITED DISTRIBUTORS, INC.\",G2850\nFARMING,DRISKELL FARMS/FARMING,A1000\nATTORNEY,MARTIN H WEBSTER,J1200\nPRESIDENT,FAST FOOD MANAGEMENT,G2900\nMinister/Chaplain/Nu,Alpha and Omega WMD,Y4000\nTEXAS COMPRESS & WHSE,,T7200\nexecutive,Altos Sonoma Corp,E5000\nRICHARDSON MOTORS,,T2300\nCELESTE & SABETY LTD,,Y4000\nTODD ELECTRIC INC,,Y4000\nPRESIDENT,\"REPCON, INC\",E1150\nSURGEON,WEILL CORNELL MEDICAL COLLEGE,H1130\nVice President,Merryl Lynch,Y4000\nLaw Professor,UNLV,J7400\nATTORNEY,\"O'DONNELL & SCHAEFFER\",K1000\nRealtor,Global Mortgage,F4600\nP,UNIVERSITY OF MISSOURI - COLUMBIA,H5100\nNATIONAL ASSOCIATION OF RETAIL DRUG,,H1750\nTrial Attorney,James Bates Pope & Spivey,K1000\nExec. Director,Iowa Health Care Assoc.,H1100\nMECURY PLASTICS,,M1500\nSr. Manager,Washington Counsel,K2000\nPAUL LABRECQUE,,Y4000\nUPS STORE OWNER,SELF EMPLOYED,Y4000\nLOEWS HOTEL,,J1200\nFMSM ENGINEERS INC,,B4400\n\"LEGACY PROPERTIES SOTHEBY'S INTERNA\",,Z9500\nMILLARD REALTY & CONSTR,,B2000\nsoftware engineer,craigslist.org,Y4000\nMANAGER,CROWN,Y4000\nBRUSH WELLMAN,,M2200\nPRESIDENT/CEO,\"CENTRAL ELECTRIC COOPERATIVE, INC.\",E1610\nENGINEER,\"LINSCOTT, LAW & GREENSPAN\",Z9500\nAdministrator,Lowell High School,Y4000\nPresident,T&M Associates,B4000\nOwner,Preventative Nutritional Medicine,Y4000\nSALES,\"SCOTT SYSTEMS, INC.\",Y4000\nPhysician,Franciscan Skemp Medical Center,J1200\nExecutive,Central Investments,Y4000\nEXECUTIVE VICE PRESIDENT,\"OCCI, INC.\",Y4000\nRESEARCH,NATIONAL ACADEMY OF SCIENCES,X3000\nPRESIDENT & C. E.,AMERICAN SOFTWARE,C5120\nRUGBY BLDG PROD CARADCO,,B2000\n\"HENDERSON'S LINE-UP/MANUFACTURING /\",,Y4000\nConsultiant,Self-Emlpoyed,G0000\nEXE,GUARDIAN INDUSTRIES CORPORATION,M7200\nDIRECTOR,MCCA,Y4000\nPhysician/Public Pol,U.S.D.H.H.S.,J7400\nInsurance agent,McFadden Insurance,F3100\nPRESIDENT,FRIENDSWOOD DEVELOPMENT,Y4000\nAttorney,Morgan Lewis & Bockius,K1000\nCITY OF GARDEN GROVE CA./PERSONNEL/,,J7400\nUST/VP/CIO,,Y4000\nMANANGER,PARKE DAVIS,H4300\nAEROSPACE ENGINEER,,T1200\nCivil Engineer,J3 Engineering,B4400\nGENOVA BURNS & VERNOIA,,Y4000\nVICE PRESIDENT/DEALER OPERATOR,WHITEMAN CHEVROLET INC,T2300\nAttorney,\"Winburn, Lewis, Barrow, and Stolz\",Z9000\nPresident,Florida Habilitation Network,Y4000\nRICHARD EISNER CO,,Y4000\nDONOVAN LEISURE ET,,J7400\nANN ARBOR ACURA,,T2310\n\"BEEMAN'S PHARMACY\",,G4900\nBROKER,PRUDENTIAL LIFESTYLE REALTY,F4200\nEXECUTIVE,TRIDENT DATA SYSTEMS,C5130\nExecutive,The Schnider Group,J1200\nOwner,Art By Bill,Y4000\nREAL ESTATE,SUSSMAN & SUSSMAN,J5100\nMANAGER,APPLIED MATERIALS,J1100\n\"VICE PRESIDENT, INFO\",LORILLARD TOBACCO COMPANY,A1300\nPOLITIC,JOHN BARDGETT & ASSOC. INC.,G5210\nVP/Manager/Owner,Dressen Medical Supply,Y4000\nSales Engineer,Self employed,G0000\nVICTORY TROPHY,,Y4000\nADMINISTRATOR,UNIVERSITY OF SOUTHERN MAINE,H5100\nExecutive,Triton Technologies Inc,Y4000\nVP OF DEVELOPMENT,\"DOS HEALTHCARE, INC.\",H0000\nAttorney,\"Myman, Abell\",Y4000\nNOT FOR PROFIT EXEC,COMMON CAUSE,Z9500\nREP. FOR,CTR. CULTURAL INTERCHANGE,Y4000\nRETIRED,COMMUNITY COLLEGE ASSOCIATION/RETIR,H5100\nMANAGER GOVERNMENT RELATIONS,SRP,K2000\nCHIEF EXECUTIVE OFFICER,DENTISTRY FOR CHILDREN,H1400\nCHAIRMAN EMER,TRAMMELL CROW COMPANY,F4500\nPRESIDENT,\"R. S. T. CABLE & TAPE, INC.\",C2200\nLEGISLATIVE ASST,RUSS REID,K2000\nBANK OF YELLVILLE,,F1100\nDIRECTOR BUSINESS DEVELOPMENT,DEUTZ CORP.,M2300\nOccupational Therapist,\"D'Youville College\",H1700\nInvestor,PPTY Management,Y4000\nSOUTH BAY HOSPITAL,,H2100\nCIVIC LEADER AND VOLUNTEER,NONE,Y4000\nENGINEER,WEYERHAEUSER,A5000\nKNBZ RADIO,,C2100\nCEO,CARPENTER & COMPANY,M1000\nIMMUNCE SYSTEMS,HEALTH ALERT,Y4000\nSr VP Corporate Development & Emergin,Scantron Corporation,M3300\nDIRECTOR GOVERNMENT AFFAIRS,ALPHA NATURAL RESOURCES,E1210\nTrade Consulting Int,Executive VP,G0000\nOwner,Enzos Italian Chophouse,Y4000\nVICE PRESIDE,BEWLEY PROPERTIES INC.,F4000\nCHAIRMAN & CEO,CHASECOM L.P.,Y4000\nConsultant,The Nexus Group,Y4000\nHARRINGTON AND ASSOCIATES,,Y4000\nBUSINESS CON,VANTAGE CONSULTING LLC,J1100\nPresident,FJB LLC,Y4000\nFAZIO & ASSOCIATES INC,,T2200\nBANKER,RANCHER,A3200\nEXECUTIVE,,F3000\nMANAGER,LEWIS BUILDERS,Y4000\nMarketing Professional,Self,G5280\nDIR.,ENVIRONMENTAL BANC & EXCHANGE,Y4000\nLawyer,Bennett Johnson,K1000\nSTATE REPRESENTATIVE,CONNECTICUT,X3000\nRETIRED LOCOMOTIVE ENGINEER,BNSF,T5100\nPresident,\"Rohlfing of Duluth, Inc.\",G2850\nPRESIDENT- SPAC,ALLIANT TECHSYSTEMS,D8000\nTuna Boat Owner/Self,\"Zolezzi Enterprises, Inc.\",Y4000\nCEO,Rinker Materials Corporation,B5100\nAdvirtisement,Self,G0000\nStock Trader,Knight Securities,F2100\nPension Actuary,Aon Consulting,J1200\nLEEFIELD LEIGHTON RUBIO ET AL,,Y4000\nMANAGIN,\"MUNN, BERNHARD & ASSOCIATES\",Y4000\nSENIOR VICE PRESIDENT,MPA - THE ASSOCIATION OF MAGAZINE MEDI,C1100\nANESTHESIOLOGIST,MONTEFIORE MED CTR,H1130\nB H UNITED SCH DISTRICT,,X3500\nCARR KOREIN ET AL,,K1100\noil and gas,Information Requested,E1100\nINVESTME,EWING MONROE BEMIESS & CO.,F2300\nPresident,Zooka Creative,Y4000\nDEFENSE CONTRACTOR,\"WELKIN ASSOCIATES, LTD.\",Y4000\nLegislative Consulta,The Kate Moss Company,K2000\nREAL ESTATE DEVE,ACCESS DEVELOPMENT,F4000\nDIRECTOR OF OPERATIONS FORESTRY,RESOURCE MGMT SERVICE,A5000\nBANKER INDUSTRIES,,B5000\nSELF EMPLOYED/WHOLESALER/ FARMER,,Y4000\nD R HARNISCH CO INC,,Y4000\n,SINOWAY MCENERGY MESSEY & SULLIVAN,Y4000\nSELF-EMPLOYED,K&S MURRAY LLC DBA AS VISITING ANGEL,Y4000\nATTORNEY,\"MCCANN & GESCHKE, PC\",Z9500\nMANAGING PARTNER,GLUCK WALRATH LLP,Y4000\nPartner,Neighborhood Restorations,F4100\nBAUER & CO.,SELF,Y4000\nIND CASH DRAWER CO,,Y4000\nAPARTMENT/PROPERTY MANAGER,SELF-EMPLOYED,G0000\nNEWTON KIGHT,,F1200\nATTORNE,BUTLERWOOTENFRYHOFERDAUGHTE,K1100\nFinance,The HON Company,Y4000\nFinance,\"Merck & Co., Inc.\",Z9500\nBANKER,WELLS FARGO & CO,F1100\nATTORNEY,\"GOLDENBERG, HELLER\",K1000\nBank Officer,Texas Advantage Bank,Y4000\nNORTH FLA OFFICE PRODUCTS,,G4600\nCFO,DESERT SPRINGS HOSPITAL,H2100\nHOUSEWIFE,NOT APPLICABLE,F1100\nOwner,J & L Schools Llc,Y4000\nExecutive,Laguna Beach House Inc.,G2900\nKUWAITI EMBASSY,,Y4000\nA I DUPONT SCHOOL,,Y4000\nRADIOLOGIST,ST MARYS,J7120\nEXECUTIVE,EDKER INDUSTRIES,Y4000\nEXEC. VICE PRESIDENT/CFO,COX,C2200\nBAKERSFIELD COMMUNITY COLLEGE DISTR,,H5100\nELECTRIC CENTER,,Y4000\nRAVENSWOOD ALUMINUM,,M2250\nProgrammer,TAC Worldwide,Z9500\nA,GRANITE CONSTRUCTION INCORPORATED,B1000\nGENERAL,MCKINLEY CAPITAL MANAGEMENT,F2100\nACCOUNT MANAGER,HARBINGER COMMUNICATIONS CO./ACCOUN,Y4000\nProj Mgt Information Systems - Develop,University of Minnesota,H5100\nM FINANCIAL,,Y4000\nRADIX WIRE INC,,Y4000\nPSYCHIATRIST,US DEPT. OF STATE,X3000\nCPA Attorney,Self employed,K1000\nRE MANAGER,SELF DBA NEW CENTURY,F4500\nCo-Owner,Cerasoli Stafford Media,J1100\nOAK RIDGE BOYS,,C2600\nRUDIN MANAGEMENT COMPAN,,F4500\nATTORNEY,PORTER MENNEN & ASSOCIATES,K1000\nSenior Manager,Comcast,C2200\nSE CONSTRUCTION INC,,B1000\nPRESIDENT,NOVA PHARMACEUTICS,H4300\nCEO,United Commercial Travelers,Y4000\nCEO,TUSC,Y4000\nOWNER,\"FARIS PROPERTIES, LLC\",F4000\nEXECUTIVE,\"SCIAME CONSTRUCTION, LLC\",B1500\nMOM,OWN,Z9500\nMAGIC COAL,,E1210\nGovernment Relations,Davidson Tech,D9000\nEXECUTIVE SECRETARY,UNITE,J1200\nOwner,PIZZA PROPERTIES INC.,G2900\nMUSIC CHOICE,,Y4000\nMarketing Manager,ibid2SAVE,Y4000\nLibrarian,Lcfcu,F1300\nPresident,Lyndall Hughes Co.,Y4000\nREAL ESTATE DEVELOPE,INVESTCO FINANCIAL CORPORATION,F4100\nOWNER,\"PRIME  SHINE, INC.\",Y4000\nVOL BARGE AND TRANSPORT,,Y4000\nEDUCATION,INDEPENDENT EDUCATION SER,Y4000\nNATIONAL HEALTHCARE LP,,H2200\nAuditor,State of Colorado,X3000\nANESTHES,ANESTHESIA CONSULTANTS LTD,J1200\nAGENT,HIGGINBOTHAM INSURANCE,F3100\nSELF-EMPLOYED,SARATI INTERNATIONAL INC.,Y4000\nGRADIN,JOHNSON AND LESLEY CONSTR CO,B1500\nLEE H KOSTER MD PC,,H1100\nSELF EMPLOYED,VILLAGE ASSOCIATES,F4000\nLawyer,\"Gunderson, Palmer,Goodsell\",K1000\nHIGH TECH CONSULTANT,BJS CONSULTING/HIGH TECH CONSULTANT,Y4000\nRETIRED,NOT EMPLOYED,F5000\nAttorney,Snell & Wilmer LLP,J1200\nPRESIDENT,MOUNT VERNON MILLS INC.,M8000\nTHE CHARMER SUNBELT GROUP,,Y4000\nMedical Technologist,Northside Hospital,H2100\nPRESIDENT,BRYAN CAVE STRATEGIES LLC,K2000\nDIR COMMUNICAT,PHILIP MORRIS U.S.A.,A1300\nSoftware,Nobscot Corporation,Y4000\nMEDICAL DOCTOR,HACKENSACK HOSPITAL,H2100\nGENERAL BUILDING CON,JOE P. MOURY CONSTRUCTION INC.,B1500\nVP - SYS,SOUTHWEST AIRLINES,T1100\nMCLEOD LAW FIRM,,K1000\nENTREPRENEUR,IDEAS & SOLUTIONS INC.,Y4000\nphysician,Valley Bone & Joint Clinic,Y4000\nPhysician,DI Imaging,Y4000\nBiotech Entrepreneur,\"Foligo Therapeutics, Ic\",Y4000\nMotion Picture Producer,The Functional Family Company,Y4000\nLAND DEVELOPER,R.L.A. HOMES INC.,B2000\nPRESIDENT AND C.E.O.,EATON METAL PRODUCTS COMPANY,M5000\n\"Dir, Alternate Channels\",Time Warner Cable,C2200\nSUNBURST ENERGY INC,,E1170\nteacher,\"Museum of Fine Arts, Boston\",X4200\nsocial worker,Orange Caregiver Resource,H6000\nDESIGNER,BECKDESIGNS,Y4000\nGEOLOGIST,TALISMAN ENERGY USA,E1000\nVICE PRESIDENT/GENERAL MANAGER,ROSEVILLE CHRYSLER JEEP DODGE,T2300\nBUI,\"ADAMS ROBINSON ENTERPRISES, INC\",B4000\nNURSE PRACTITIONER,MGH,H2100\nHOUTERVILLE STATION,,G2840\nVice President  Client Sales,NBCUniversal,C2200\nEVP-CABLE OPERATIONS,ROCK HILL TELEPHONE CO.,C4100\nHR Director,\"Benshaw, Inc\",Y4000\nGM VICE PRESIDENT,GENERAL MOTORS COMPANY,T2100\nEDITO,INSTITUTE FOR JEWISH RESEARCH,J1200\nSales,Infinia,H4100\nPARTNER,MILENIUM CONSULTING,Y4000\nDAIRYMAN - FARMER,,A2000\n\"Director, Sales & Marketing\",DME Corporation,G0000\nExecutive,PWK Timberland Inc,A5000\nHERACLE HOLDINGS LLC/PRINCIPAL/OWNE,,Y4000\nA,\"GREGORY JOHN BURKE, ARCHITECT, PA\",B4200\nExecutive,AT&T/Bellsouth,C4100\nCOCHRAN INC,,G5210\nKLONTECH INDUSTRIAL SALES,,Y4000\nSVP CREATIVE DIRECTOR,ESTEE LAUDER/SVP CREATIVE DIRECTOR,M3300\nLand Development,Cussoulis Development,F4100\nGREER ELECTRICAL COMPANY,,Y4000\nSELF-EMPLOYED,DEVINE FAMILY PARTNERSHIP,Y4000\nTechnology Coordinat,Time Warner Global Marketing,Y4000\nprincipal market dir,\"Bernardin, Lochmueller, A\",B4000\nOwner,Marietta Dental Care,H1400\nGENERAL MANAGER,COMPEAUS,Y4000\nASSOCIATE GENERAL COUNSEL-ENVI,FLINT HILLS RESOURCES LP,E1160\nATTORNEY,NEMIROFF AUSLANDER PA,K1000\nHOLLYWOOD PARK INC,,G6500\nAttorney,Cahill Wilinsku Rhodes & Joyce,J1200\nENGIN,R. D. ZANDE & ASSOCIATES INC.,B4000\nOWNER,COAL EMISSIONS REDUCTION TECHNOLOGIES,E1210\n\"O'NEIL REALTY\",,F4200\nCONTI COMPANIES,,Y4000\nU.S.Peace Corps,,X3000\nPartner,Childress Klein Properties,F4000\nDIRECTO,NATIONAL ASSN FOR HOME CARE,H3100\nSelf,Moeller Consulting,Z9500\nOUTLOOK GROUP CORP./PRESIDENT/ C.E.,,Y4000\nRetired,Lawrence Natl Lab,D4000\nPhysician,Pathology Consultants,H1130\nPARTNER,\"MB DESIGN CONSULTANTS, LLC\",Y4000\nPrincipal,Abacus Partners,Y4000\nIRECO INCORPORATED,,M1100\nFUNDRAIS,AMERICAN FRIENDS OF HEBREW,Y4000\nOLIVERS RESTAURANT,,G2900\nPresident,Key Electronics,Y4000\nCEO,Convalesent Care Hospital,H2100\nAccountant,\"TRS, Inc\",Y4000\nCHEMICAL SALES,MOSAIC,A4100\nEXECUTIVE,TITAN STEEL,Y4000\nOwner - Auto Body Repair Shop,Rc Enterprises Inc,T2400\nFINANCIAL ADVISER,GLBL WEATH MNGMT,Y4000\nST LUKES-ROOSEVELT HOSPITAL C,,H2100\nResearcher,World Bank,X4200\nConsultant,Securities Industry Asscoiation,F2100\nUNION COUNTY ENGINEER,UNION COUNTY,X3000\nV P,WINTER HAVEN CHRYSLER JEE,T2300\nDIRECTOR OF LEASING,HIGHWOODS PROPERTIES,F4100\nCOMPANY EXECUT,THE PRINCETON REVIEW,H5000\nUN-EMPLOYED,,X1200\nLA JOLLA CANCER RES,,Y4000\nBANKER,HOME TRUST BANK,Y4000\nArt Director,The Cimarron Group,C2000\nretired,Retired,Z9500\nPRESIDENT,MOORE EXCAVATION,B3600\nInsurance Broker,\"McQueary Henry Bowles Troy, LLP\",F3100\nPROPERTY MGR,,J1200\nEXECUTIVE,MITRE CORP,D3000\nSELF EMP BUSINESSMAN,,G0000\nAttorney,\"Hart, King & Coldren\",K1000\nMAJOR GIFTS OFFICER,BOWDOIN COLLEGE,H5100\nPrincipal,Timberman/Beverly Productions,J1200\nINFO REQUESTED,CALL OF THE WILD,Y4000\nBuilder,Tynes Sparks Building Corporation,Y4000\nOWNER,\"LUCIA BENTON INTERIOR, INC.\",G0000\nBusiness & Life Coac,Self employed,Y4000\nTeacher,The Reading Barn,Y4000\nOwner,Houston Medical Equip.,Y4000\nBanker,Central National Bank,F1100\nC.E.O.,ELECTRONIC DATA SYSTEMS CORP,C5130\nHORSE RANCHER,SELF EMPLOYED,A3000\nDIRECTOR,INTEL CORPORATION,C5110\nATTORNEY,CONNOR & WINTERS PC,K1000\nBanker,SELF-EMPLOYED,F1100\nPRESIDENT,\"P'ZAZZZ INDUSTRIES\",Y4000\nRTD,SELF-EMPLOYED,Y4000\nCommissioner,Water Reclamation Dist,J5100\nPresident,Dawson Hill Insurance,F3100\nManager,U.S. Department of Education,X3500\nMK RAIL CORPORATION,,T5100\nPHI CONSULTANTS,,Y4000\nMANAGINE,SHEFFIELD ASSET MANAGEMENT,F2100\nSW ENGINEER,HEWLETT-PACKARD,C5100\nProgram/Management A,U.S. Department Of Homeland Security,X3000\nSCHOONER CAPITAL COR,,F2500\nMechanic,Wilson Bros.,Y4000\nABATON.COM INC,,C5140\nS&S AMUSEMENTS,,G6100\nPRESIDENT,JET LOGISTICS INC.,Y4000\nREAL ESTATE,SCHUCHET ASSOCIATES INC.,F4000\nCEO,WYSE/CEO,C5110\nSTYLE EFFECTS II BEAUTY SALON,,Y4000\nVice Chairman/Consul,New America Alliance,J7500\nVENTURE CAPITALIST,HITEK VENTURE PARTNER,F2500\nDirector of Developm,East Lake Management Development,F4000\nStudent,Not employed,F4300\nLAB D,BROOKHAVEN SCIENCE ASSOCIATES,E2000\nBLANCATO DAUGHTON & HART PLLC,,Y4000\nJAN RUBIN ASSOCIATES,,F4000\nBUSINESS OWNER,SCIX LLC,Y4000\nChairman and CEO,Parkway Corporation,F4500\nOWNER,\"FLYNN FINANCIAL PARTNERS, LTD./OWNE\",X4100\nPIZZA HUT FRANCHISE,SELF-EMPLOYED,G2900\nCONSULTANT,THE WHISK GROUP,H3400\nSenior VP & Counsel,ITAA,K1000\nCORPORATE TREASURER,CATERPILLAR INC./CORPORATE TREASURE,B6000\nCOMPUTER OPERATOR,FLUKE CORPORATION,Y4000\nOWNER,WEISS TRUCKING/OWNER,T3100\nCRACKMORE SONS,,Y4000\nSALES,TAKEDA,Y4000\nEXECUTIVE,\"UNITED CORPORATE SERVICES, INC.\",Y4000\nExecutive,Morris Yorn Barnes & Lev,Y4000\nSTEWART ALEXANDER & CO,,Y4000\nADULT CARDIOLOGY,Prince William Cardiology Associates,H1100\nOwner,Lighting Distributors LLC,Y4000\nPRES,NATIONAL ASSOC. OF MANUFACTURE,M0000\nREAL ESTATE BROKER,BEAR REALTY INC KEN,F4200\nPROJECT MANAGER,IMAGIN STUDIOS,Y4000\nSPECIALTY CONSULTANT CORPORATION,,Y4000\nMANAGER,WEE TEE GOLF,G6100\n\"COASTAL ANESTHESIOLOGY CONSULTANTS,\",,H1130\nPR,RENSSELAER POLYTECHNIC INSTITUTE,H5100\nAdministrative Assistant,Northshore Christian Church,X7000\nREAL EST STEEL PIPE R,SELF-EMPLOYED,Y4000\nArchitect,Frederick + Frederick Architects,B4200\nTRIPLE G FARMS,,A1200\nWHEELER MFG CO,,M3400\nVP OPERATIONS,SOUTHERN WINE & SPIRITS OF CA,G2850\nEXECUTIVE,\"CROMWELL LIQUORS, INC.\",G2840\nDoctor,Family Physicians Health Care,H1100\nMORRIS RODMAN,,J5100\nEXCELLENT POLY,,Y4000\nATTORNEY,\"MEYER, SUOZZI, ENGLISH AND KLEIN P.C.\",K1000\nGRUNFELD DESIDERIO ET A,,K1000\nHILLSBOROUGH,,Y4000\nCOMMUNITY PACIFIC BROADCASTING,,C2100\nATTORNE,\"HUSCH BLACKWELL SANDER, LLP\",K1000\nATTORNEY,WILKIE GALLAGHER,K1000\n\"INT'L VEHICLES CORP\",,Y4000\nPresident,\"Kinghorn, Hilbert, & Associates\",J1200\nIT,Velco,Y4000\nChief Executive Offi,Seagate,Y4000\nAdvertising and Mark,GSD&M Advertising,J7400\nHILLSDALE COLLEGE,SPRING ARBOR,H5100\nOWNER,\"OLIVER'S CANDIES\",G2200\nReal Estate Broker,Thayer Properties,F4200\nHIGHGROVE CU,,Y4000\nSPECIALIST NYSE,LABRANCHE AND CO.,F2100\nVICE PRESI,FARMERS RICE COOPERATIVE,A6000\nPRESIDEN,SILVERPOINT PROPERTIES LLC,F4000\nAttorney/business Ow,Cac Financial,Y4000\nProgram Manager,Parsons,Y4000\n\"VENABLE, BAETJER\",,K1000\nTHE GREENSPUN CO,,Y4000\nLAW PROFESSOR,U.T.,H5100\nCOUMMUNITY DIRECTOR,BANCFIRST,F1100\nATTORNEY,\"CAVERLY, SHEA, PHILLIPS AND ROGERS\",Y4000\nATTORNEY,TAYLOR PORTER BROOKS,K1000\nEXECUTIVE,CLANCO MANAGEMENT,Y4000\nFABRICATED METALS INC,,M2300\nTAX PROFESSIONAL,HARBINGER CAPITAL PARTNERS,F2700\nCOTT,SELF-PHILLIPS PLANTING COMPANY,A1100\nCARLTON FIELD,,K1000\nPRESIDENT,H.C. COMPANIES,F5000\nCeo,Dynamac Corp,E2000\nSCIENTIST,MEDIKINE,Y4000\nINVESTMENT MANAGER,TRAVELERS COMPANIES,F3400\nPresident,Ken Brady Construction Co,B1500\nSoftware Developer,3Leaf Systems,C5100\nSr. Exec. Vice-Presi,\"MZM, Inc.\",D9000\nCHAIRMAN OF THE BOAR,THE HOME DEPOT,G4500\nLinklaters,Attorney,K1000\nBROADCAST-CABLE ASSOCIATES,,Y4000\nCEO,Mary Green Ent,Y4000\nINSURANCE AG,DENNIS HRUBY INSURANCE,F3300\nAstronomer,Univ. Of California,J1200\nEngineer,MCC,Y4000\nTRADES & LABOR ASSEMBLY,,Y4000\nRealtor,Prudential Charlotte Ramsey Realtors,J1200\nWHITEHALL-COPLEY S.D.,,X3500\nCOMPUTER PROGRA,\"OPTECH SYSTEMS, INC\",Y0000\nENGINEER,A A.M.,Y4000\nPROCUREM,COCA-COLA ENTERPRISES INC.,T0000\nOwner,Deluxe Beauty,Y4000\nInformation Requested,E-Lynxx Corporation,C1300\nEXECUTI,ROCKEFALLAN FAMILY & ASSOC.,Y4000\nATTORNEY,BLADES & ROSENFELD,K1000\nPRINCIPAL,DELOITTE CONSULITNG LLP,Y4000\nCONSTRUCTION ENGINEER,SELF EMPLOYED,B4000\nLIFE CARE HOME,,Y4000\nPRESIDENT,PRESTIGE CAPITAL,F0000\nJ P HOU INSTITUTE PA INC,,Y4000\nCPA,STRANG OLSEN AND LYNCH,Y4000\nSHIPPING CLERK,CREATIVE OUTLET,Y4000\nOWNER/EXECUTIVE,\"TWYLIA KING ENTERPRISES, INC.\",Y4000\nPOLICE L,N. Y. C. POLICE DEPARTMENT,X3200\nAttorney,Thurswell law Firm,K1000\nFIELD REPRESENTATIVE,BAC LOCAL #96 MO,LB100\nVice President,\"Faust Distributing Co., Inc.\",G2850\nJ & J MECHANICAL,,B3400\nLand Developer,Wheeler Development,F4100\nABC PEST & LAWN SERVICES,,G5700\nAdministrator,Alan Franken Inc.,C2300\nCONSULTANT,\"PATRICIA POCOCK AND ASSOCIATES, INC.\",Y4000\nBASKETBALL,UNIVERSITY OF NOTRE DAME,H5100\nCPA,US Tax Advantage,Z9500\nPRESIDENT,MOSAICA EDUCATION,Y4000\nMike Mangold Ford,,T2300\nA G EDWARD,,F2100\nProfessor,Dartmouth ColleGE,H5100\n\"REGIONAL&COMMER DIR JAPAN, LA, COMM.\",THE COCA-COLA COMPANY,G2600\nCLAY & LAND INSURANCE INC,,F3100\nCARROLL SEATING CO,,Y4000\nOwner,Tailgate Ranch Co,A3000\nTelevsion Writer,Self,Z9500\nREAL EASTATE BROKER,INFINITY REALTY,F4200\nHILLYARD LYONS,,F2100\nContractor,\"Acoustics, Inc\",Y4000\nGENERAL MANAGER,BILL GATTON CHEVROLET/CADILL,T2300\nVP ASSOCIATE GENERAL COUNSEL,\"ITT INDUSTRIES, INC.\",C5000\nPARALEGA,MAYER BROWN ROWE & MAW LLP,K1000\nSW MEDICAL FOUNDATION,,Y4000\nUNION REPRESENTAT,AFSCME COUNCIL 13,L1200\nDistrict Representative,City of Baltimore,X3000\nVP,S & D Coffee Inc,G4300\nChief Financial Offi,Highlands Regional Medical Center,H2100\nNa,Na,E1100\nATTORNEY,KENT CORPORATION,G2100\nSr Public Policy Advisor,\"Baker, Donelson, et al\",K1000\nCONSERVATION ADVISORS LLC,,JE300\nRv Park Owner,Self-Employed,Y4000\nReal Estate Agent,Impact Realty,F4000\nPROFESSOR AND,OCHSNER HEALTH CLINIC,H1130\nfunction coordinator,Conway Enterprises Enterp.Ltd.,Y4000\n5-BALL CONSTRUCTION INC,,B1500\nExecutive Vice President,Superior Floors,F4500\nCERTIFIED PUBLIC ACCNT,,F5100\nCERTIFIED PUBL,POLSON & COMPANY PSC,Y4000\nAgent,Pacific Underwriters Corp,F3200\nPresident,REV Turf & Tractor,Y4000\nATTORNEY,\"STEPHEN E. HERETICK, PC\",Y4000\nCOMPUTER PROGRAMMER,CALPONT CORP.,Y4000\nDUPONT REGISTRY,,Y4000\nSTEBBINS FIVE CO,,Y4000\nAUTO SERVICE,JIFFY LUBE,T2400\nSpecial Projects Coo,\"Children's Memorial Hospital\",H2100\nSUN ISLE LLC,,Y4000\nSoftware Developer,\"Revenue Management Systems, Inc.\",Y4000\nOWNER,GREEN CANYON OUTFITTERS,Y4000\nOwner,Parker Pawn,Y4000\nATTORNEY AT LAW,\"BECKER & POLIAKOFF, P.A.\",K1000\nPartner,Oxford Management Services,G5200\nCPAEMI,,Y4000\nATTORNEY,\"BARRY CORRADO GRASSI, PC\",Y4000\nSELF EMPLOYED/CONTRACTOR/ DEVELOPER,,G0000\nSCHMITZ J E GENERAL AGENT,,F3300\nOFFICE MANAGER,VIRAMONTES EXPRESS,Y4000\nSecurity Officer,Brookfield Properties,J1200\nSCHAEFER REALTY,,F4200\nINFORMATION REQUESTED,INFORMATION REQUESTED,F4500\nExecutive,\"The Limited, Inc.\",G4100\nPresident of PR firm,Russell Public Affairs Group,Y4000\nCEO,FAB.COM INC.,C5140\nPhysician,IR,X1200\nPHILLIES CIGAR COMPANY,,A1300\nNATIONAL BUSINESS SERVICES INC,,J5100\nBRAIN INJURY SPECIALIST PHYSICIAN,SELF-EMPLOYED,G0000\nPresident and Chief,\"Gillette Children's Specialty Healthca\",H2100\nLibrarian,Patten Free Library,X4200\nOWNER,\"HOWELL CONSTRUCTION GROUP, INC.\",B1500\nATTORNEY,\"BROWSTEIN, HYATT, FOSTER\",K2000\nHealth Policy Analyst and Advocate,Self-Employed,H3000\nIT SERVICE MANAGER,STATE FARM MUTUAL AUTO INS CO,F3400\nAUTOMOBILE DEALER,J.H. BENNETT INC.,J1100\nDIREC,TREASURE CHEST HOTEL & CASINO,G6500\nConsultant,Kathol & Company,Y4000\nCEO,HUBBARD BROADCASTING/CEO,C2100\nINDEPENDENT MUSEUMS & INSTITUTIONS PRO,SELF,X4200\nCONTRACTOR,GENERAL ATOMICS,E1320\nJ H SCHOOL PUBLIC HEALTH,,X3500\nCHAIRMAN,\"ARROWPAC, INC\",Y4000\nBUS DEV MGR,TENIX HOLDING INC.,B4300\nOperation Sales Manager,\"Barrett Paving Materials, Inc.\",B3000\nPilot,\"Abx Air, Inc.\",T1500\nPRESIDENT,FIELDING ELECTRIC INC,B3200\nATTO,SMITH MCDOWELL GINN & MCDOWELL,K1000\nBERKELEY OFFICE,CITY OF EL CERRITO,X3000\nHAURY COMPANY,,B2000\nPRESIDENT,KARANTINIDIS ENGINEERING,B4400\nCivic Leader,None,G0000\nLOCKHART COMPANY,,Y4000\nVP BUSINESS DEVELOPMENT,NEW BREED,G5200\nEXECUTIVE DIRECTO,CITY YEAR DETROIT,Y4000\nEngineer,\"Porticos, Inc\",Y4000\nChairman,D.M.X. MUSIC,Y4000\nB WOOLF ASSOCIATES,,G6400\nActress,Self-employed,G0000\nVET,\"STEPHANIE KENNEDY, DVM\",Y4000\nPartner - Attorney,Thompson Hine LLP,K1000\nOwner,Rasselas Jazz Club,Y4000\nCOMPUTER CONSULTANT,TECHMD.COM,C5140\nWILMINGTON PATHOLOGY,,H1130\nMIDLAND PRESS,,C1300\nOWNER,CRYSTAL BAR,Y4000\nCERTIFIED FINANCIAL P,SELF-EMPLOYED,G0000\nUrologist,UT Health Science Ctr,Y4000\nBusiness Owner / Inventory,Color Matrix Corporation,G0000\nCeo,The Real Estate Team,F4000\nHR Manager,The Legal Aid Society,K1000\nNIGRO KARLIN & STEGAL,,F5100\nLORENZ & WILLIAMS INC,,B4200\nProfessional Driver,Mayfield Motorsports,Y4000\nSELF,\"CENTRANZ, INC\",J1100\nPROFESSOR,NCCU,Y4000\nArtist,Self,X3500\nexecutive,\"Symbetheri, Inc.\",Y4000\nEXECUTIV,STEINER EQUITIES GROUP LLC,F4100\nSR VICE PRESIDENT,FIRST WA CORP,F2000\nCHICAGO INSTITUTE OF NEUROSURGERY A,,H1130\nMERITAS YARNS,,A1100\nCEO,FREDERICKSBURG WINERY,G2820\nNMCI GROUP (NATIONAL MARINE CONSULT,,G5200\nRIEFLER CONCRETE,,B5100\nCONTRACTOR,CHRISTIAN & SONS,Y4000\nDirector Of Human Re,Flb Healthcare,Y4000\nFEDERAL GOVT,US SENATE,X3000\nSTEPHENSON MILL CO,,B5200\nPHILADELPHIA PUBLIC INTEREST LAW CE,,K1000\nENGINEER,REACTION DESIGN/ENGINEER,Y4000\nRN ADMINISTRATOR,DAVITA,H3200\nRUPPERT HOMES,,B2000\nCOUNTY RECORDER,JUAB COUNTY,Y4000\nBARON & BUDD,,K1100\nUP SALES MARKETING,ROBINSON FIN MACHINES,T1400\nGOVERNMENT FINANCE,CITY OF DENVER,X3000\nJEWE,MIA FONSSAGRIVES SOLOW JEWELRY,G4600\nPresident,AMERESCO,E1600\nLOBBYIST,MCKENNA LONG,K2000\nDESIGNER,FUSE PROJECT,Y4000\nDiagnostic Radiologi,Radia,H1130\nBUILDER,WILLIAM RYAN HOMES,B2000\nSMITH CAIRNS MTR SLS CO,,T2300\nPROFESSOR EMERITUS OF FINANCE,CORNELL UNIVERSITY,H5100\nCONSOLIDATED CONSTRUCTION MANAGEME,,B1500\nSales,Valley Valve & Pipe Supply Co,Y4000\nMANAGING DIRECTOR,PRUDENTIAL MORTGAGE CAPITAL COMPANY,F4100\nATTORNEY/EXECUTIVE DIRECTOR,\"CHICAGO LAWYERS' COMMITTEE FOR CIVIL R\",X4000\nTRUCK DRIVER,GROSSMAN AND SON,Z9500\nMINISTER,\"ST JOHN'S CHURCH\",X7000\nANDERSON & BIOLCHINI,,K1000\nCEO,DIVERSIFIED MANUFACTURING,Y4000\nVice President Head of marketing,Linde North America Inc,M1000\nEXECUTIVE,\"MONEY CONCEPTS INTERNATIONAL, INC.\",Y4000\nFOUNDER,\"CAPITOL WASTE SERVICES, INC.\",Y4000\nSELF/BUSINESS OWNER/ATTORNEY,,K1000\nBUILDER,PARADIGM DEVELOPMENT CO.,F4100\nATTORNEY,\"LAW OFFICE OF JOJENE MILLS, P.C.\",K1000\nV.P. PROCESSING,INFORMATION REQUESTED PER BEST EFFORTS,Y4000\nRADNOR RACQUET CLUB,,G5800\nPresident,DJ  A P.C.,B4000\nBUSINESS DEVELOPMENT,VENTE PRIVEE USA,Y4000\nPRESIDENT,\"MGM GRAND HOTEL, LLC\",G6500\nPresident,ManCon,Y4000\nCPA / PROPERTY MANAGEMENT - SELF EMPLO,AUGUST PARTNERS INC.,Y4000\nAMERICAN PHARM ASSN,,Y4000\nlawyer,Skadden Arps Slate Meagher & Flom LLP,K1000\nSenior Advisor,Stewart & Stewart,K1000\nPRESIDENT,SILVER CARE CENTER,H3000\nFUNDAMENTAL/PRESIDENT/CHIEF EXECUTI,,G5270\nTOWNSHIP S,SAGINAW CHARTER TOWNSHIP,Y4000\nFinancial Analyst,Standar & Poars,Y4000\nManaging Director,Summitt Energy Group,J1100\nMassage Therapist,Chesterfield Physical Therapy,Y4000\nREAL ESTATE,THE RADCO COMPANIES,F4100\nBUSINESS DEVELOPMENT,DSM INC.,Y4000\nSENIOR EXECUTIVE V,BANK OF NEW YORK,F2100\nCOMPLIANCE CORPORATION,,G5200\nPEDATRIC DENTIST,,H1400\n\"Director, Environmental Real Estate\",\"Albertson's, Inc.\",G2400\nARCTIC GLACIER PREMIUM ICE,,Y4000\nAttorney,Lyons & Plachmeier,Y4000\nBOND TRADER,PERFORMANCE TRUST,F2100\nPRESIDE,CLAYTON MEDICAL CONSULTANTS,Y4000\nCorporate Banker,Bank Of America,F1100\n,SAN BERNARDINO COMMUNITY COLLEGE D,H5100\nPRESIDENT,DENISON STATE BANK-HOLTON,F1100\nUnion Representative,Univ. HI. Professional Asembly,Y4000\nStay at home mom,N/A,Y1000\nDEVELOPER,HABITAT,F4200\nField Marketing Manager,Comcast Spotlight,C2200\nCHAIRMAN,HAMILTON COUNTY,X3000\nGEORGIA GULF CHEMICALS & VINYLS LLC,,Y4000\nMANAGER,MAIN AT LOCUST PHARMACY,G4900\nDirector,MD Film Festival,Y4000\nPatent Counsel,Danisco,Y4000\nHousewife,self,J1200\nPHICPUTT MOTORS LTD.,,T2300\nSystem VP - Financial Services,McLaren Health Care Corporation,H2100\nSOUTHERN MEDICAL,,H0000\n\"STROOCK, STROOK, LAUAN\",,K1000\nSELF-EMPLOYED,FARMERS INVESTMENT CO INC,J6200\nSTATE,\"LEVIN, POWERS, BRENNAN & SHEA\",K1000\nMEMBER/OWNER,GREENFIELD TERRACE LLC,Y4000\nINFINITI NETWORK & NOS NE,,Y4000\nWALLACE INVESTMENTS,,Y4000\nPRESIDENT,ASSOCIATED BRANCH PILOTS,T6200\nPRESIDENT,BENEFIT & RETIREMENT STRATEGIES INC.,Y4000\nHELICOPTER PILOT,SAUDI ARABIAN OIL CO.,Y4000\nATTORNEY,\"STOLL, KEENON, OGDEN\",K1000\nTECH SPECIALIST,UNITED PARCEL SERVICE INC,T7100\nMuseum Store Manager,Asian Art Museum Foundation,J1200\nExecutive,The Covington Company,F4000\nATTO,SERPE DIZONNO & ASSOCIATES LTD,Y4000\nManagement Consultan,Seeta Resources,Y4000\nPUBLIC RELATIONS,\"GEORGE ARZT COMMUNICATIONS, INC.\",Z9500\nVice President,Pearson-Sibert,Y4000\nPMA/CONSECO/EXECUTIVE,,Y4000\nIndustrial Broker,Henry S Miller Commercial,Y4000\nTELESERVICE REPRESENTATIVE,SOCIAL SECURITY ADMINISTRATION,Z9500\nCeo,Connor Sports Flooring Corporation,Y4000\nPRE,MUNICH AMERICAN REASSURANCE CO.,Y4000\nPhysician,Scott & White Dermatology,H1130\nHR Director,Singerlewak LLP,Y4000\nNOT EMPLOYED (RETIRED),NONE (RETIRED),X1200\nPOLICE DISPATCH,\"CITY OF SEATTLE, WA\",X3000\nTelevision Executive,Fox Networks,C2300\nCEO,OPTIMOS INC./CEO,J7500\n\"ANDERSON, HIBEY & BL\",,K1000\nPRESIDENT,GREENSPUN CORPORATION,F7000\nGeneral Partner,True Blue Inclusion,Y4000\nHOPKINSVILLE KILLING CO,,Y4000\nRESSE PRESS,,C1300\nS,PHILLIPS INVESTMENT RESOURCES LLC,C1100\nDoctor,James J Black M. D. Inc,H1100\nConsultant,Wynn for Congress,J1200\nREGIONAL MANAGER,DIVERSIFIED INVESTMENTS SERVICES,Y4000\nPRESIDENT,GOLDSBORO MILLING CO.,A1500\nUNITED CENTRAL,,Y4000\nOT,Therapy Associates LLC,H1700\nEVERETT GASKINS HANCOCK & STEVENS,,Y4000\nCEO,Houchens Industries Inc,G2400\nOwner,Williams Paint and Body,Y4000\nKLODT INC,,B2000\nPSYCOLOGY,,H1110\nPartner/Owner,Tabar Handbag Salon,Y4000\nDisaster Recovery Planner,Marsh & McLennan Companies,J1200\nOwner,KG Properties,F4000\nRetired Chairman,Capital Bank,F1000\nATTORNEY,UAWLSP,Y4000\nPHYSICIST,ILLINOIS INSTITUTE OF TECHNOLOGY,H5100\nSULDER,,J5100\nINSURANCE INV,SHARE FINANCIAL GROUP,F3100\nATTORNEY,FRIED FRANK ET AL,K1000\nRetired Professor,Georgia Southern University,H5100\nBOSTON CONSULTING GROU,,G5270\nPOLICY,PFIZER INC,H4300\nCEO,CAPITALSOUTH CORPORATION,F2600\nVice President,Minnig Farm,G1200\nEXECUTIVE,AMERICAN ASSOCIATION FOR JUSTICE,K1100\nPhysican,commnity anes assoc,Y4000\nREALTOR,ERA MORRISSON,Y4000\nINVESTOR,LEON TEMPELSMAN & SONS,F2200\nATTORNEY,PACHUSLSKI STANG,K1000\nTEACHER,SUNSHINE MOUNTAIN PRESCHOOL,Y4000\nSTAFF,FRIENDS OF FARR,J1200\nProject Development,\"Dos Health Care, Inc\",Y4000\nPRESIDENT,\"VIRGINIA PILOT'S ASSOC.\",T6000\nSVP FI,HCA - THE HEALTHCARE COMPANY,H2100\nDeveloper,Marbill Mgmt,Y4000\nATTORNEY,K.K. COLE P.C.,Y4000\nmortgage broker,Town and Country Lending,Y4000\nREAL ESTATE,FARMING,A1000\n\"SENIOR VP, PLANNING & DEVELOPMENT\",GENERAL DYNAMICS,D3000\nPRICE PROPERTIES,,Y4000\nOAKWOOD HOMES LLC,,F4400\nGENERAL MANAGER,U.S. CONCRETE PRODUCTS,B5100\nExecutive Development,Guy Sapirstein,Y4000\nCivil Engineer,\"Down Cape Engineering, Inc\",Y4000\nPresident,Donnelly Mfg. Co.,Y4000\nPhysician,Houston MRI & Neuro Diagnostic Center,H1130\n\"LPC, NBCC\",SELF-EMPLOYED,G0000\nBANKING AND COMMERCIAL RE,SELF,Y4000\nWILLS & ASSOCIATES,,Y4000\nFAMILY EYE ASSOCIATES,,H1120\n\"EPSTEIN, BECKER, & GREEN\",,K1000\nConsultant,Growthplans LLC,Y4000\nLANG ENVIRONMENTAL,,E2000\nBuilder,Cardel Homes,B2000\nExecutive,Central Notim Company,Y4000\nSELF-EMPLOYED,JURA FARMS,A1000\nArchitect,Gettliffe Architecture,B4200\nNATIONAL FORGE CO,,Y4000\nRecords Adm,Larson King,Y4000\nEXECUTIVE SEARCH CON,M.R.G. ASSOCIATES L.T.D.,Y4000\nDIRECTOR OF INSTITUTIONAL SERVICES,INTERCONTINENTAL REAL ESTATE CORPORATI,F4000\nCHAIRMAN & CEO,CAPITAL ONE,F1400\nPRIEST,ASSUMPT OF THE BLESSED VIRGIN,Y4000\nAttorney,\"Becker,Meisel LLC\",K1000\nINFORMATION REQUESTED,CHASE MANHATTAN BANK,F1100\nLEFRAK ORGANIZATION INC,,F4100\nDirector,Fannie Mae,F4600\nEARLY CASSIDY & SCHILLING,,F3000\nProject Manager,Charleston Consulting,Y4000\nPRESIDENT/CEO,\"KENTUCKY DERBY FESTIVAL, INC.\",Z9500\nRENO AIR,,T1100\nSCHOOL COUNCELOR,,H5000\nCAMPAIGN MANAG,REHBERG FOR CONGRESS,J1100\nPEONY CORP,,Y4000\nBUSINESSMAN,THE WURTH GROUP,Y4000\nVICE PR,MILLER PROFESSIONAL IMAGING,Y4000\nCONTROLLER,SAGINAW VALLEY DELIVERY SERVICES,Y4000\nOWNER,NOLIN MANUFACTURING,A4200\nINVESTER,,F2500\nPHYSIC,TRINITY PAIN MEDICINE ASSOC.,Y4000\nREGIONAL,AMERISOURCEBERGEN DRUG CO,H4400\nSPEAKER/AUTHOR,\"KILLOLOGY RESEARCH GROUP, LLC\",Y4000\nVAMSC INC,,Y4000\nUEMPLOYED,UEMPLOYED,Y4000\nSQUIBB-TAYLOR INC,,E1190\nTv / Film Producer,Res Lpsa Media,Y4000\nConstruction Consulta,Self Employed,B4000\nEXECUTIVE,VALLEY PROPERTY MGMT.,F4500\nSabin Bennett & Gould,,Y4000\n\"WOMAN'S CLINIC INC\",,Y4000\n\"V.P., Safety & Human Resources\",\"RAG American Coal Holding, Inc.\",E1200\nBOOKKEEPER,HULLCO,Y4000\nCHAIRMAN,JACOBS ENG. GROUP,J5400\nProfessor,Pace Law School,Y4000\nEDUCTOR,PEABDY COLLGE,J1200\n\"Q HOTELS, LLC/PARTNER/HOTEL OWNER\",,T9100\nCOLI ASSOCIATES,,B1500\nBusinessman,Proteus Capital,J1200\nPRESIDENT,NARVER INSURANCE,F3100\nEngineer,\"Sparta, Inc.\",D3000\nExecutive VP & Manager,Callan Assoc,F2100\nFINANCIAL ADVISOR,SELF-EMPLOYED,F3300\nSELF-EMPLOYED/BUSINESSMAN/OWNER,,G0000\nConsultant,E-Rate Central,Y4000\nCATHOLIC EDUCATION F,,Y4000\nEXECUTIVE D,SUBURBAN ADULT SERVICES,Y4000\nACCOUNTING TECHNICIAN,CITY OF FRESNO,X3000\nPHYSICIAN,GRAND VIEW HOSPITAL,H1130\nP,WASHINGTON REAL ESTATE INVESTMENT,F4000\nNorthland Library,,X4200\nMARKETING STRATEGIST,ANDERSON DDB,Y4000\nAttorney,Much Shelist Denenberg Ament & Rubenst,K1000\nMarketing/Sales,Asset Protectors,Y4000\nCHAIRMAN,ANNANDALE CAPITAL LLC,F2100\nCANDIATE FOR U.S. CON,SELF-EMPLOYED,Z9000\nAttorney,\"Gibbs & Bruns, L.L.P.\",K1000\nCEO,Asbury Partners,Y4000\nSelf,Lovett,Y4000\nVICE PRESIDENT,UES SERVICES,Y4000\nGolf Sales,Self employed,Y4000\nCONSULTANT,AVVANTT PARTNERS LLC,Y4000\nSELF,CLINICAL PSYCHOLOGIST,J7400\nCONSULTANT,SCM SOLUTIONS LLC,Y4000\nForestry Consultant,Self Employed,A5000\nCOLONIAL JEWELERS,,G4600\nVICE PRESIDENT,HIGHWAY EQUIPMENT,E1210\nWILLIAM SULLIVAN INS AGE,,F3100\nDisabilities Rights Network of PA,,Y4000\nVICE PRESIDENT,NEWTON COUNTY BANK,F1000\nNET TO NET TECHNOLOGIES,,Y4000\nEST,,K1000\nPARTNER,GIN CREEK,Y4000\nPRESIDENT,HUMAN SOURCE FOUNDATION,Y4000\nVP-Labor Relations,Tenet Healthcare Corporation,H2100\nPolitical Associate,Progressive Majority,J1200\nMCBRIDE INVESTMENTS,,Y4000\nCHEMICAL ENGR,KBC ADVANCED TECH,Y4000\nRISK MANAGER,NONE,Y4000\nWOODS BRIDGE TRAVEL,,T9400\nOwner,Radiant Oil Company,E1100\nHUNTON & WILLIM S,,K1000\nExecutive,Blueroof Technologies,Y4000\nAssociation Executiv,Consortium of Social Science Assoc,Y4000\nOWNER,BREWER OIL,E1100\nOWNER,\"TERRY'S INSTALLATION\",Y4000\nOwner,Interstate Warehouse & Cold Storage,Y4000\nALPINE PODIATRY CENTER,,H1130\nMCDOWEL REFRACTORY,,JE300\nPRESIDENT,JADE DYNASTY,Y4000\nRetired,retired,F4200\nCLARK PATTERSON ASSOCIATES,,B4200\nCEO,\"Shamrock Holdings, Inc\",F4200\nHOME BUILDER,JOHN WILLIS HOMES,B2000\nPRESIDENT /CEO,INFINITI OF CHANTILLY,Y4000\nMarketing and Comunications,IBM,C5100\nPhysician,College Hill Pediatrics,H1130\nExecutive,CEA,C0000\nPENSION MANAGEM,UNITED TECHNOLOGIES,D2000\nNetwork Administrato,State Of Ohio,H5100\nMD,Baton Rouge,H3000\nBacon & Thomas PLLC,Patent Attorney,K1000\nOFFICER,\"MFC, INC\",Y4000\nPRESIDENT,PITTENGER COMPANY,F4000\nAttorney,\"Colliers, Tungy, Martin, Tucker\",K1000\nJEWELRY DESIGNER,KERRY LEE INC.,Y4000\nDEVELOPER,DRIVERS WAY,Y4000\nCHANGE AGENT,PIKE INDUSTRIES INC.,B5100\nConfidential Aide,NYS Racing & Wagering,Y4000\nCONTRACTOR,I.S.C. CONSTRUCTORS L.L.C.,B1500\nSenior Partner,\"'Weil,Gotshel,and Manges'\",K1000\nFINANCE EXECUTIVE,RIVERVIEW FARMS,A1000\nINVESTOR,NORTHSTAR INVESTORS/INVESTOR,Y4000\nLAW PROFESSOR,UNIV CONN SCHOOL OF LAW,H5170\nTeacher Retired,Fergus Falls District #544,Y4000\nBusiness Owner,Cook Concrete Products,B5100\nPRINCIPAL FINANCIAL,,JD200\nOWNER,MULBERRY ON MAIN,Y4000\nDOSSETT PONT CAD GMC INC,,T2300\nAnalyst,Castle Hill,Y4000\nATTORNE,JACK H. OLENDER & ASSOC. PC,J7400\nConsultant,Cold Spring Music,J1200\nMASTEC,,C4000\nRancher,CC&T Land & Livestock,A3000\nSECRETARY,SECURE WEAP OF MIAMI,Y4000\nCOORDINATOR,TOSCO,E1160\nSENIOR TOURS,,Y4000\nPROTON HEALTH PARTNERS,CEO,Y4000\nHARTMAN-COX ARCHITECTS,,B4200\nChief of Staff,Congressman Bart Gordon,Y4000\nCORNERSTONE INSUR,,F3100\nHOMEMAKER,UNEMPLOYED,A5200\nAT,VENABLE BAETJER HOWARD & CIVILET,K2100\nINVESTMENT ADVISOR RE,SELF-EMPLOYED,F2100\nCAL STATE IRVINE,,H5100\nExecutive VP,American Biltrite,M1500\nPHYSICIAN,CHICAGO NEUROLOGY GROUP,H1100\nCOMMUNICATIONS,BCA/COMMUNICATIONS,Y4000\nInvestor,Palladium Equity Partners,F2100\nMANAGER,HAWAII REGIONAL COUNCIL OF CARPENTERS,Y4000\nETTL ENGINEERS & CONSULTING,,B4400\nTREMBLAY & ASSOCIATES,,Y4000\nConstruction,\"Banks Contracting, Inc\",B3000\nEXECUTIVE,ALSTON & BIRD,K1000\nNurse Case Manager,Iona Senior Services,Y4000\nLUBES MANAGER,CONOCOPHILLIPS COMPANY,E1110\nSELF-EMPLOYED,SELF-EMPLOYED,A5000\nKY DEPT FOR LOCAL GOVERNMENT,,X3000\nInformation Requested,Prime Services,Y4000\nScientist,Bectam Dickinson,H4100\nMANAGING PARTNER,ENTREPENEUR PARTNERS,Y4000\nST JOHN CDC,,Y4000\nAttorney,Stokes Lawrence PS,K1000\nMgr,\"Seabrook Int'l\",Y4000\nEXECUTIVE,\"PULL-A-PART, INC.\",G4600\nMACHINE MERCHANT,A.M. INDUSTRIAL,Y4000\nSHANE INDUSTRIES,,B4400\nProgram Manager,PSI,C5000\nFUND MANAG,\"STEELHEAD PARTNERS, LLC.\",F2600\nSALT LAKE CITY S D,,L1300\nPresident,Long Realty Company,J7300\nCFO,\"SWANSON INDUSTRIES, INC.\",JE300\nExecutive,Earl Industries,J5100\nAttorney,\"Weinberg, Wheeler, Hudgins, Gu\",K1000\n\"Senior Gov't Affairs\",\"Olson, Frank & Weeda\",Y4000\nIME COMPANY,,Y4000\nROSS STEEL,,M2100\nTelecommunications S,Earthlink Inc.,C5140\nKING PHARMACEUTICAL,,H4300\nASSOCIATE DEAN,UNIVERSITY OF PACIFIC,Z9500\nENGINEER,U. S. ARMY,X5000\nMANUFACTURER REP,,J7300\nAttorney,\"Jochum Shore & Trossevin, PC\",K1000\nSELF-EMPLOYED/TRACTOR TRAILER O/O,,Y4000\n\"Senior VP, CIT P&S Delivery\",McKesson Corporation,H4400\nMediator,Self-Employed,G5200\nattorney,Beasley Allen,K1100\nAMERICAN AUTO BROKERS INC.,,T2300\nEXECUTIVE,AIR METHODS,H3000\nJUMBO PICTURES,,Y4000\nATTORNEY,\"TURLEY LAW FIRM, P.C.\",K1000\nARCHITECT,APPLIED COMPANIES,B1000\nMEDICAL SUPPLY COMPA,BUSINESS OWNER,H4100\nENCORE STAFFING,,G5250\nMILLER MEDIATION SERVICES,,K1000\nPHYSICIAN,NHCA,Y4000\nCHAIRMAN,KIRKE FINANCIAL SERVICES,J1100\nCOB,CHAIN BRIDGE BANK,F1000\nAdvertising,January Group,Y4000\nCHAIRMAN,\"GREENBERG TRAURIG, LLP\",K1200\nPhysician,Medical Center Emergency Service,H2100\nCREATIVE DIRECTOR,\"LI'L ROBIN DESIGN, INC.\",Y4000\nEXECUTIVE,CITY WIDE MANAGEMENT CO.,Y4000\nGAB BUSINESS SERVICES INC,,Y4000\nFIRST C PVC,,Y4000\nUNION INSTITUTE,,Y4000\nAccountant,Geoerstrand Rentals,G5300\nWEB ASSOCIATE,CLEVELAND CAVALIERS,G6400\nPRESIDENT,READY TRAVEL AGENCY/PRESIDENT,Y4000\nCORP. O,KOMAR CO. & HLS PARTNERSHIP,Y4000\nEducational  Administrator,Texas Tech HSC,Y4000\nE.F.C. ENTERPRISE,,Y4000\nSUPPLI,ARMELLINI EXPRESS LINES INC.,A8000\nExecutive,Massachusetts Institute of Technology,H5100\nGOVERNMENT O,GOVERNOR OF CALIFORNIA,X3000\nCONSULTANT,SELF EMPLOYED - GRASSROOTS,G5200\nGARDEN STATE PARK,,Y4000\nAdministrative Assis,\"University of California, Davis\",H5100\nlawyer,The Rodarti Group,K1000\nMEDICAL SALES,BOSTON SCIENTIFIC/MEDICAL SALES,H4100\nGOVERNOR,COMMONWEALTH OF KENTUCKY,J1200\nDoctor,Ucla,Y4000\nNarratologist,Self,J7400\nCEO,JET SOLUTIONS,Y4000\nLAND DEVELOPMENT,LAND TEJAS COMPANIES LTD.,Y4000\nEngineer,Stokes & Spiehler,Y4000\nPsychotherapist,Mark & Associates,Y4000\nFACTORY WORKER,PETERBILT,LM150\nRailroad Manager,Norfolk Southern Corp.,T5100\nCONSULTANT,HR & A ADVISORS,F4000\nConsultant,Delta Kinetics,Y4000\nPresident,Reinhart Foodservice,Y4000\nSENIOR D,AMERICAN HEART ASSOCIATION,H0000\nAdvertising,\"Dick Davis, Inc\",Y4000\nFACTORY ASSEMBLY WORKER,PACCAR KENWORTH TRUCK CO.,Y4000\nMERLIX PROF & TECHNICAL,,Y4000\nMERION MERCY ACADEMY,,H5100\nPOLITICAL,RNC,J1100\nCLINICAL SUPERVISOR,\"NYSTROM & ASSOCIATES, LTD.\",Y4000\nPhysician,\"Nicholas Halikis, MD\",H1100\nAPTS MANAGER,NELSON MGMT CO,Y4000\nBEREAN MISSIONARY BAPT CHURCH,,X7000\nPresident,Harmony Concepts Inc,Y4000\nPartner,Faegre & Benson,K1000\nRealtor,Ricketts Enterprises Intl. Inc.,Y4000\nAttorney,Phillips & Webster PLLC,K1000\nArchitects,Dake Wilson Architects,B4200\nCEO,CROSS COUNTRY BANK,F1000\nFIRST BANK OF HENNESSEY,,F1100\nHEALTH/NUTRITION COACH,SELF-EMPLOYED,G0000\nCHIEF OPERATING OFFICER,SIGMABLEYZER,Y4000\nVICE PRESIDENT,PHOENIX SALES & SERVICE,Y4000\nACCOUNTANT,THE CAVALIER,Y4000\nComputer Contractor,Self,C5100\nEXECUTIVE,RLI,F3400\nMEMORIAL HERMANN HEALTH NETWORK PRO,,H1130\nAttorney/Partner,Corboy & Demetrio,K1100\nDETROIT PARENT ADVISORY COUNCIL,,Y4000\nINNERWEST STRATEGIES/PRESIDENT/CEO,,Y4000\nPhysician,American College of Surgeory,H1130\nLEGAL ASSISTANT,\"DUDLEY GOAR, ESQ.\",Y4000\nCPA/EXECUTIVE,\"FOSTER & SMITH, INC\",F5100\nHENDERSON ENGINEERING INC,,B4400\nFILMMAKER,WARRIOR POETS,Y4000\nProgram Specialist Manager,U.S. Dept Of Agriculture,X3000\nPresident,Pro Consulting Ass. Ltd.,G5200\n\"PROFESSOR, NURSING\",NOT EMPLOYED,Y1000\nVICE CHAIRMAN,J. H. FLETCHER & CO.,E1240\nPresident Emeritus,College of William & Mary,H5100\nMANAGING DIRECTOR,APCO WORLDWIDE,G5210\nPROFESSOR OF ECONOM,YALE UNIVERSITY,H5100\nCH,FIRST INDEPENDENCE NATIONAL BANK,F1100\nVice President,King Ranch Minerals,Y4000\nAVP OP,NORFOLK SOUTHERN CORPORATION,T5100\nWESTQUAD,,F0000\nPROFESSOR,NEW JERSEY CITY UNIV,H5100\nRABIN WORLDWIDE,,J5100\nPHYSICIAN,\"MICHIGAN HEART, DR. CATHY LISA GLICK,\",Y4000\nDIRECTOR OF,NEVADA HOSPITAL ASSOC.,H2100\nCONSTRUCTION,FA PEINADO LLC,Y4000\nNurse,Gothan Per Diem,Y4000\nHAKATA CONGREGATION,,Y4000\nGLENN-MARR,,Y4000\nNATIONAL BOARD MEMBER,AIPAC,H6000\nPRESIDENT AND,GE COMMERCIAL FINANCE,F1400\nBURNS INSURANCE AGENCY/MANAGER/OWNE,,F3100\nOWNER,THE PRESS,Y4000\nCourson Nickel,Lobbyist,K2000\nDiagnostic Radiologist,Radiology Consultants of Iowa,H1130\nERICKSON,,Y4000\nAttorney,Horizon NJ Health,Y4000\nSales & Marketing Executive,Apotex Corporation,H4400\nVice-President,Frontier Insurance,F3100\ntech exec,own,Y4000\nRN,SURGICAL ONCOLOGY GROUP,H1130\nAUTOMATED PETRO AND ENERGY,,E1170\nReal Estate Manageme,Kole Management Co,F4000\nBanker,William Blair & Company,F2300\nINVESTOR,BLACKHAWK FINANCIAL,F0000\nHEALTH DATA CONSULTANT,SELF,Z9500\nOWNER/BROKER,BOULEVARD REALTY,F4200\nURBAN BUSINESS CONSTRUCTION,,B1500\nOwner,Sl Construction Group Inc.,B1500\nPhysician,Workwright Inc,Y4000\nSENIOR VICE PRESIDENT,HEALTHSMART CASUALTY CLAIMS SOLUTIONS,Z9500\nCPA,Self-employed,G0000\nREAL ESTATE EXECUTIVE,REGENCY CENTERS,F4100\nSCHOOL TEACHER,CATHOLIC SCHOOL,Y4000\nOwner,Wrangler Construction Inc.,B1500\nEDUCATOR,LCSD#1,X3500\nDIRECTOR GOVERNMENT AFFAIRS,CITIGROUP,F1100\nHomemaker / Retired,Information Requested,X1200\nU P S OF AMERICA INC & SUBSIDIARIES,,T7100\ncontractor,superior gunite,Y4000\nOAK RIDGE RESEARCH INST,,Y4000\nNEUROLOGIST,\"MICHAEL STEIN, MD\",H1100\nINDUSTRIAL TOOLS & PARTS STORE,,G4500\nCPA,\"Heather,Sanguinetti,Caminata\",F5100\nATTORNEY,SCHWARZWALD MCNAIR & FUSCO LLP/ATTO,K1000\nREGIONAL V.P,JOHN HANCOCK FINANCIAL,F3100\nYESHIVA RAMBAM,,Y4000\nATTORNEY,DANE COUNTY,X3000\nVICE PRESIDENT,\"VALLEY LIGHTING, LLC\",Y4000\nBUILDER,CORRELL ENTERPRISES,B1500\nSALEM LEASING CORP,,T3000\nREAL ESTATE,ALFRED WEISSMAN REAL ESTATE,F4000\nAUTOMOBILE DEALER,COULTER CADILLAC,T2300\nMANAGER,5TH AVE FASHIONS,M3100\nPARTNER,MUCH SHELIST,K1000\nPROFESSION OF ARMS,UNITED STATE OF AMERICA,Y4000\nInformation Requested,Information Requested,F1100\n\"Manager, Federal Gov't Affairs\",Chevron,E1110\nRAFANELLI EVENTS,,Y4000\nSCHEDULER,\"UCSF, MEDICAL CENTER\",Y4000\nSales,ConocoPhillips,E1110\nENGINEERING CONSULTANT,\"CAVELL, MERTZ & ASSOCIATES/ENGINEER\",Y4000\nAdministrator,University of California,J7400\nFinance analyst,Avista,E1620\nAttorney,Cromwell & Morris,J7400\nTHE GLICK LAW FIRM,,K1000\nOWNER,ESPIRITU & ASSOCIATES,G5200\nCONSULTANT,ROHAN CONSULTING,Y4000\nattorney,\"Greater Media, Inc.\",J1200\nWINERY OWNER,PARRY CELLARS/WINERY OWNER,G2820\nPHYS,INTL. CTR. TOXICOL. & MEDICINE,H1100\nFORMER DIRECTOR OF NEIGHBOR TO NEIG,,X1200\nCONSULTANT,LEBLANC GOVERNMENT RELATIONS,K2000\nATTORNEY,\"THE WINDHAM LAW FIRM, PC\",K1000\nPHYSICIAN,\"CONMED HEALTHCARE MANAGEMENT, INC.\",Y4000\nCHAIRMAN,\"BELK, INC.\",G4300\nATT,DISABILITY LAW CENTER OF ALASKA,K1000\nLOEB & LOEB,,K1000\nExecutive,MediaWorks,Y4000\nAttorney,\"Ceconi & Cheifetz, LLC\",K1000\nCler/Receptionist,Air West Flying Club,K1000\nRetail,Berbiclia,Y4000\nEXEC,CORNERSTONE FINANCIAL ADVISORS,K2000\nA G GUEYMARD,,Y4000\nINVESTMENT MANAGMENT,SELF,G0000\nLAND DEV OF MIAMI CORP,,F4100\nATTO,THE LAW OFFICES OF MARK T HURT,K1000\nAnesthesiologist,NYU Medical Center,H1130\nGeneral Counsel,ZC Sterling,F4600\nENGINEER,MASON INDUSTRIES,Y4000\nPRESIDENT,THE O GROUP,Y4000\nSOCIAL SCIEN,THE PACKARD FOUNDATION,J7400\nH & S DEVELOPERS INC,,F4100\nENGINEER,PARKER HANNAFIN,J1200\nSENIOR ADVISOR,AETOS CAPITOL ASIA/SENIOR ADVISOR,Y4000\nBANKER,KEY BANK REAL ESTATE CAPITAL,F4000\nAtorney,\"Patterson, Belknap, Webb & Tyler, LLP\",K1000\nOperators Manager,Self-Employed,G0000\nPHD CANDIDATE,SMU,H5100\nPRESIDENT,SREE HOSPITALITY GROUP,T9100\n\"VP, Finance\",Plantronics,Y4000\nowner/president,\"text & data technologies, inc.\",Y4000\nCEO,KK BOLD,Y4000\nVP OF HOUSING IMPACT,FANNIEMAE,F4600\nADANCED TECHNOLOGY SYSTEMS,,C5110\nFIRST HEALTH GROUP PAC,,H0000\nAUTOMOBILE DEALER,PHOENIX MOTOR COMPANY,Y4000\nSOFTWARE ENGINEER,THINGD,Y4000\nRealtor,Leahi Realty,F4200\nMEML SLOAN-KETTERING,,Y4000\nAttorney,Socha Perczak,Y4000\nGeologist,State of Wyoming,J1200\nSELECTMAN,TOWN OF NORTH HAVEN,X3000\nCEO/CSO,US HEALTH CENTER,Y4000\nDENTIST,ORMAN DENTAL,H1400\nFIST SUN MANAGEMENT CORP,,Y4000\nSenior Vice Presiden,ITT Educational Services,H5200\nCEO,NORFOLK SOUTHERN CO.,T5100\nOwner,Gulfstreamservice,Y4000\nCOMMERCIAL BROKER,NAI CAPITAL,Y4000\nSenior Analyst,\"Paramount Bio Capital,inc.\",F2500\nTUCKER GRIFFIN BARNES PC,,Y4000\nEXECUTIVE,NUSTAR,Y4000\nProfessor,Mont St Clair,Y4000\nINSURANCE SALES,R.C.S. GROUP INC.,Y4000\nAttorney,Wright & Talisman PC,J1200\nSMALL,IRRIGATION SPECIALTIES CORP.,A4000\nADMINISTRATIVE LAW J,NLRB,X3000\nGEN DIR REMOTE CONTROL OPS,UNION PACIFIC RR,T5100\nINVESTME,COHEN KLINGENSTEIN & MARKS,J1100\nTOMSED CORP.,,Y4000\nExecutive,Premium Standard Farms,A3000\nDoctor,Northeast Ohio Cardiovascular Speciali,H1100\nMEDICAL DIRECT,MS CENTER OF ATLANTA,Y4000\nPHYSICIAN,BETHESDA DERMPATH LABORATORY,Y4000\nstudent,Suu,Y4000\nEXECUTIVE,JAMES CAMPBELL CORPORATION/EXECUTIV,F4000\nCONTRACT INVESTIGATOR,SELF EMPLOYED,Y4000\nTown Manager,Town Woodside,Y4000\nKENTUCKY HISTORICAL SOCIETY,,Y4000\nowner,Berkson & Company,Y4000\nPILOT,SWA,Z9500\nVice President,VNA,Y4000\nInformation Requeste,Brunswick Group,M3100\nPROFESSOR,CASE WESTERN RES UNI,H5100\nPRESIDENT,TEMPLE BETH EL,X7000\nPRINCIPAL,FURNSTAHL & SIMON,Y4000\nBusiness Owner,Sarret Office Equipment Compan,Y4000\nRealtor and EMT I,Brotherhood & Higley Real Estate,F4000\nTRW S & TG,,J6200\nOwner,Mugar Enterprises,F4200\nCOMMISSIONER,WYOMING PUBLIC SERVICE COMMISSION/C,Y4000\nPLUS 4 ARCHITECTS P C,,B4200\nP,PEDIATRIX MEDICAL GROUP OF KANSAS,H1130\nAttorney,Dorris Law Firm PC,K1100\n\"VP,\",WADDELL & REED INVESTMENT MGT.,F2100\nPSYCHOLOGIST,CONNIE J FOOTE,Y4000\nGALLO WINERY/OWNER/VINTER,,G2820\nRANCHER FARMER,,A3000\n\"MANAGER, PUBLIC ADVOCACY/MEMBER RELATI\",HOSPITAL ASSOCIATION OF SAN DIEGO AND,H2100\nLYONS EQUITY CO,,Y4000\nPRESIDENT,METRO EQUIPMENT CORPORATION,Y4000\nPHYSICIAN,NEW YORK FERTLITY INSTITUTE,Y4000\nTHE BIG APPLE CIRCUS,,Y4000\nFLORENCE AND JOHN SCHUMANN FOUNDATI,,JE300\n\"CHIEF, RADIOLOGY DEPT.\",WINTHROP-UNIVERSITYI HOSPITAL,H2100\nTHE TAMPOSI CO INC,,F4000\nJeweler,Not employed,Y1000\nCHESAPEAKE COLLEGE,,H5100\nMANAGER,BRANDYWINE FUND,Y4000\nMarketing,Thomson Corporation,C5130\n\"FREEMAN & D'AIUTO\",,K1000\nBUIL,COASTAL RESTORATION GROUP INC.,Y4000\nConsultant Leadership,LRI,Y4000\nENGINEER/ MANAGER,VIA SAT,Y4000\nAMC,,Y4000\nAubrey,Designer,G5000\nLIGHTLE BEEBE,,Y4000\n\"CALLAHAN ASSOCIATES INT'L\",,G5200\nBRAND ELECTRIC COMPANY,,Y4000\nREID HOSP & HEALTH CARE SRVS INC,,H2100\nS.V.P.,A.T.& T.,C4100\nTHE RAGLAND CO INC,,Y4000\nMarketing,Affinion Group,Y4000\nPhysician,Whalen Rheumatology Group,H1130\nADEMCO,,Y4000\nDealer,Keyser Cadillac Inc,T2300\nATTORNEY,LAMBERT AND NELSON,K1000\nOFFICE M,INTERNATIONAL INTERNS INC.,Y4000\nDav,Us Governement,X3000\nRadio Announcer,Business Monthly,Y4000\nPhysician,COCHISE HEALTH ALLIANCE,H0000\nJOURNALIST,ANGELS INTERNATIONAL,Y4000\nCONSULTANT BUSINESS,SELF,G5200\nCONTRACTOR,BALL DRILLING COMPANY,Y4000\nVIRGIN ISLANDS WASTE MANAGEMENT,,E3000\nAccount Manager,Aetna,J1200\nExecutive,Johnson Timber Corp,A5000\nPARTNER,M.F. ROSA DAIRY/PARTNER,A2000\nWHOLESALE TOBACCO,WEST COAST RESOURCES LLC,Y4000\nRICHFIELD SD,,L1300\nSmall Business Owner,Vander Week Group LLC,Y4000\nROVAWIR ENTERPRISES/OWNER/PRESIDENT,,Y4000\nS B M,,Y4000\nSELF-EMPLOYED,E.D. GEAR L.L.C,Y4000\nPresident,\"CRG Hangars, Inc\",T1400\nENERGY,NORTHERN OIL,E1120\nTRAFFIC C,SPECTRANETICS CORPORATION,Y4000\nATTORNEY,\"BRICKFIELD, BURCHETTE, RITTS & STONE\",K1000\nOwner,Atlas Sales,Y4000\nPRESIDENT/CEO,POMONA VALLEY HOSPITAL MEDICAL CENTER,H2100\nVice President,BCTGM Local 50,LG100\nSELF - PADGETT EXPLORATION,GEOPHYSICAL CONSULTANT,E1000\nInvestor,Boone Capital,F0000\nCHIEF EXECUTIVE OFFICER,CAL FRESCO,G2500\nNATIONAL EQUIPMENT SALES SERVICE,,G1100\nDirector - Business Deve,AT&T,C4100\nOwner,Brawley Engineering,B4400\nFIRST WASHINGTON COR,,F2100\nPHYSICIAN,\"COLUMBUS HEMATOLOGY & ONCOLOGY, PA\",J1100\nLabor Relations Consultant,OEA,Y4000\nEXECUTIVE,FANNE MAE,F4600\nHEALTH POLICY INSTITUTE,,F2100\nGAS PRODUCER,SELF,E1120\n\"ASHLEY'S OFFICE WORLD\",,Y4000\nCLASSIC REALITY LLC,,F4000\nMOBILE HOME SALESMAN,,F4400\nmental health specia,local heath agency,Y4000\nHOWARD DARBY AND LEVIN,,K1000\nO K HARRIS WORKS OF ART,,G4600\nBUYERS MORTGAGE CO,,F4600\nPASTIC SERGEON,SELF,H1130\nKFMW-FM,KWLO-AM,C2100\nPA State Legislative Director,United Transportation Union,LT000\nTUTTLE TAYLOR & HERON,,K2100\nSr Refining Advisor,EM REFINING & SUPPLY,E1110\nFERRARA ROSSETTI & MEARS,,K1000\nEntertainment Manage,Majestic Midways,Y4000\nChairman and CEO,Darden Restaurants,F1100\nAssociate General Counsel,Honeywell International,M2300\nteacher,Bergen Community College,Z9500\nATTORNEY,STOREY  & BURNHAM,K1000\nMEMBER,\"VALUE FOODS CO, LLC\",G2900\nSAUL EWING LLP,,K1000\nCEO,AmberWave Systems,C5110\nGEORGE WELLS MEAT CO,,Y4000\nConsultant/Photographer,Self employed,G0000\nBUSINESS EXECUTIVE,TCS SYSTEMS,J1100\nSHORELINE SIGHTSEEING,,Y4000\nSTARMOUNT LIFE INS,,F3300\nHESS INVESTMENT,,J5100\nFIRST INSURANCE GROUP,,F3100\nENGLEMAN ASSOC,,Y4000\nJANSSEN LAW CENTER,,K1000\nPROFESSOR,THE JOHN MARSHALL LAW SCHOOL,Z9500\nRED RIVER EQUITIES,INVESTOR,F7000\nDOCTOR,GREATER FLORIDA ANESTHESIOLOGY,H1130\nCPA,BECKY FLEMING CPA IN,Y4000\nBanker,\"Dresner, Kleinwort & Wasserst\",J5100\nCROSS-BORDER LEGAL GROUP,,Y4000\nFARMER,JOLLY FARMS,A1000\nATTORNEY,\"ESSEX GROUP MANAGEMENT, CORP\",H2200\nTHOMASVILLE FURNITURE,,M4100\nCPA,SELF-EMPLOYED SEMI-RETIRED,F5100\nNATIONAL DISTRIBUTORS,,G2850\nGEOLOGIST,RETIRED FROM EXXONMOBIL,X1200\nPROGRAMMER,AMERADA HESS,E1110\nJANITOR,KEYSTONE FORD,Y4000\nLAWYER,\"DEWITT, ROSS & STEVENS S.C.\",K1000\nPARTNER,HARTWICK LLP,F4100\nRTKL ASSOC INC,,Y4000\nELECTRICIAN,\"GUSKE ELECTRIC, INC.\",Y4000\nWMG CO,,Y4000\nMANAGING DIRECTOR AND SENIOR PORTFOLIO,WELLS CAPITAL MANAGEMENT,F2100\nPHYSICIAN,\"THE WOMAN'S CLINIC\",C4100\nR & D COATINGS,CHEMICAL SALES,M1000\nATTORNEY,LEVENE NEAL BENDER,Y4000\n\"Executive, Power Generation\",NV Energy,E1620\nSCI TEXAS PARTNERS,,Y4000\nREAL ESTATE OWNER,GEORGE & T LLC,Y4000\nOwner,William Benefield & Assoc. Inc.,Y4000\nTHOMAS J WOLFF CLU,,Y4000\nCHAIRMAN,MEWBOURNE OIL COMPANY,E1120\nPreschool Teacher,Mary Meyer School,X3500\n\"Director, Membership\",Ind Ins Agts & Brokers of Sout,F3100\nSALES,UNITES MRK SRVS.,J1100\nAUTO DEALER,CAVENDER AUTO GROUP/AUTO DEALER,Y4000\nROCKY MTN PED ANESTHESIOLOGY,,H1130\nHAMILTON & CO INC,,G5210\nMANAGEMENT ANALYST,U. S. DEPT. OF HOUSING AND U.RBAN DEVE,X3000\nPresident,Desert Construction Co,B1500\nBUSINESS OWNER,ATMOS TECH LLC,Y4000\nPres. & CEO - Office,American Gen. Life Companies,F3100\nAttorney,Kempton & Russell,K1000\nPRESIDENT & CE,STONYFIELD FARM INC.,A2000\nPublic Relations Off,IT&E,Y4000\nOwner/Manager,Merry Maids,Y4000\nPHYSICIAN,LHA,Y4000\nINVESTMENTS,EXPO DEVELOPMENT CO.,B3600\nATTORNEY,\"COOPER, DEANS & CARGILL\",K1000\nCONSTRUCTION,\"BERRY COMPANIES, INC.\",B6000\nFINANCE EXECUTIVE,ROTHSCHILD,F2300\nRCM CAPITOL MANAGEMENT,,F2100\nOWNER,SANDHILLS PUBLISHING/OWNER,C1100\nSales,Rincon De Mar,Y4000\nMD,PMRI/MD,J1200\nMULLINS & ASSOC,,Y4000\nOWNER,ALTON AUTO BUTLER/OWNER,Y4000\nOIL WELL SURVEY,MACS WELL SERVICE,Y4000\nPrivate Practice Soc,Self,J1200\nSANCHEZ OIL & GAS CORP,,E1100\nTREASURER,COPELAND LOWERY & JACQUEZ,K2000\nAttorney,Dietrich & Associates,K1000\nFREDERICK ROSS CO./PRESIDENT/CEO,,F4000\nOwner,Friends For Eddie Fields,Y4000\nFRENCHWAY TRAVEL,,T9400\nInsurance Brokers,Guaranted,Y4000\nVP Contracts and Pricing,Northrop Grumman Corporation,D5000\nINSURA,\"FISCHER, ROUNDS & ASSOCIATES\",Y4000\nPREMIER HEALTH CARE MANAGEMENT,,H2000\nVice-President,Select Personal Services,Y4000\nOFFICE MANAGER,BRIAN J. YOUNG MD  PL,H1100\nAttorney,City of Newton,X3000\nBOYD BROTHERS TRANSPORTATION,,T3100\nAMBASSADOR,,Y4000\nBH BUILDERS SUPPLY,,Y4000\nDRYWALL FINISHER,,B3000\nAttorney at Law,Sproul & Hinton,K1000\nCPA,BECKY FLEMMING CPA I,F5100\nGOVERNMENT AFFAIRS,AMERICAN PHYSICAL THERAPY,K2000\nRADIOLOGY ENGINEER,CABRERA SERVICES/RADIOLOGY ENGINEER,Y4000\nTECHNOLOGY PARTNERS INC,,Y4000\nARTS ADMINISTRATOR,BUSHNELL CENTER FOR THE PERFORMING ART,Y4000\nDeveloper,Crosland Group,F4200\nFINANCE,HAJOCA CORPATION,Y4000\nEXECUTIVE,BLIZZARD MANAGEMENT LLC,Y4000\nAttorney,\"Cohen, Placitella and Roth\",K1000\nInsurance,Sovereign Insurance Group,F3100\nDIRECTOR OF GUEST SE,FREMONT EXPRESS,Y4000\nSTROUCH & STROUCH,,C2200\nRECYCLING,STERNOFF METALS,Y4000\nWriter Consultant,Self employed,C1100\nPROPERTY MGMT,,F1100\nENGI,JOHNSON PREWITT AND ASSOCIATES,Y4000\nPARTNER,HAYNES INTERESTS,Y4000\nRestaurateur,\"Anand Enterprise, Inc.\",G2900\nVETERINAR,HICKORY PLAZA VET. CLINIC,A4500\nBOOK KEEP,MAPLEWOOD DEVELOPERS INC.,Y4000\nATTORNEY,COLOMBO & BONACCI P.C.,K1000\n\"PERRY ELLIS INT'L\",,J5100\nDIRECTOR,OH PETROLEUM COUNCIL,Y4000\nEXECUTIVE,WOMACK ELECTRONICS CORP.,B3200\nPHYSICIAN,\"JOHN LOCKIE, MD\",H1100\nPRESIDENT - AD AGENCY,TBWA\\MEDIA ARTS LAB,G5210\nCommunity Non-Profit,Self,X1200\nOFFICE MANAGER,BRUCE BOLANDER ARCHITECT,B4200\nRICHARD STAHL & SONS,,G1200\nMANA,TYCOM INTEGRATED CABLE SYSTEMS,M2000\nEXECUTI,PRESCRIPTION POLICY CHOICES,Y4000\nLandscape Architect,\"Design Studios West, Inc\",Y4000\nSheriff,Kenton County,X3000\nMAUPIN TAYLOR & E,,K1000\nSoc. Sci. Research,UC Berkeley,J7400\nMARKETING,INTEL CORP,C5110\nCONSTRUCTION EQUIPM,ROMCO EQUIPMENT,B6000\nTrade Assn. Executive,NEW YORK STATE RETAIL COUNCIL,Y4000\nSTANLEY J CLARK,,Y4000\nproprieter,KEITH KLASS CO.,Y4000\n\"SENIOR VICE PRESIDENT, EXTERNAL AFFAIR\",\"OHIO HEALTH/SENIOR VICE PRESIDENT,\",H0000\nBusiness Manager,Green Gables Design&Restoration Inc,J1200\nGovernment Relations Officer,Sparrow Health System,H2100\nOwner,Eland Electric Corporation,B3200\nMONEY MANAGER,KEMPNER CAPITAL  MANAGEMENT,F2100\nDEALERS ELECTRIC CO,,Y4000\nR.K. HYDRO VAC,,B3000\nSAND DOLLAR REALTY,,F4200\nTEKEDGE,,C5130\n\"GRIFFIN, LEGGETT, HEALEY AND ROTH\",,G5400\nPUBLIC RELATIONS,DRA STRATEGIC COMMUNICATIONS,Y4000\nREAL ESTATE,THE CORCORAN GROUP,Z9500\nLobbyist,Heather Podesta & Partners,J1200\nCOORDINATOR,SANDHILLS TASK FORCE,Y4000\nReal Estate Investor,\"J.I. Kislak, Inc.\",J5100\nCHAIRMAN,HERITAGE GROUP,B0000\nARCHITECT,MSKTD & ASSOCIATES INC,Y4000\n\"Fitzgerarld, Abbott & Beardsley LLP\",,K1000\nREAL ESTATE,JOHN LANG HOMES/REAL ESTATE,B2000\nD J P REALTY ASSOCIATES,,F4200\nSALES,FLOORESOURCE,Y4000\nConsultant,National Student Partnerships,Y4000\nARTS MANAGEMENT,PMG ARTS MANAGEMENT,Y4000\nREAL ESTATE,D.C.M. MANAGEMENT COMPANY,Y4000\nDirector Government,\"Children's Hospital of Alabama, The\",H2100\nAsset Management,Weiler Arnow Mngt CO,J1200\nACCOUNTANT,CDC MANAGEMENT,F4500\nData Processing Cont,Self,Y4000\nManager,D & V Distributing Co.,G2850\nINVESTMENTS,SELF EMPLOYED,Y0000\nPR,CAL ENERGY OPERATING CORPORATION,E1000\nVICE PRESIDENT BUSINESS DEVELOPMENT,BURNETT OIL COMPANY,Y4000\nTRAFFIC ENGINEERING TECH.,\"MONROE COUNTY, NY\",Z9500\nCUSTOMER SVC.,LOWES INC.,Y4000\nA J CORBETT & SONS,,T0000\n\"OWNER, RETAIL COMMUN\",Self employed,G0000\nINVESTME,ROXBURY CAPITAL MANAGEMENT,F2100\nPublisher-Editor,NM Legislative Reports,C1100\nPresident,City Investment Fund LP,F2100\nPrestige Environmental Inc.,,E2000\nA JURICH INC,,Y4000\nCOMMERCIAL REAL ESTATE,STERLING BAY COMPANIES,F4000\nPresident,\"Saren Restaurants, Inc.\",G2900\nPodiatric Physician,W Torrance Podiatrists Group,H1130\nRAMSEY PROPERTY,,F4500\nBANKING,CAPITAL BANK,F1000\nContractor,The Smoot Corp.,Y4000\nATTORNEY,DINSMORE & SHOHL LLP,Z9500\nDir. Homeland Securi,ADT Security Services,G5290\nADMIN,HI-ACRES MANOR NURSING CENTER,H2200\nAUTO DE,JOSEPH TOYOTA OF CINCINNATI,Y4000\nINSURANCE A,MULLIS NEWBY HURST L.P.,Y4000\nPRINCIPAL,KEMP PARTNERS,K2000\nOPTOMETRIST,BROOKS EYE CENTER INC.,Y4000\nJAMES INVESTMENT COMPANY,,B2000\nVice President - Low,\"Koch Carbon, LLC\",E1160\nTrustee,Gregory E Bulger Foundation,Z9500\nPresident & CEO,KB Alloys LLC,Y4000\nCAO,INVACARE CORPORATION,H4100\nOwner,Mimi Boutique Inc.,Y4000\nCompliance Officer,State of CA,X3000\nFINANCIAL EXECUTIVE,HUDSON RIVER TRADING,F2100\nPRESIDENT,JETFLEET MANAGEMENT CORP.,Y4000\nInsurance Executive,The Feldman Agency,Y4000\nInvestor,Century Capital,Y4000\nPRESIDENT,TEMPRITE COMPANY,Y4000\nINNKEEPER,BLUE WATERS MOUNTAIN LODGE,Y4000\nLLC MEMBER,\"FATA REALTY, LLC\",F4200\nPresident,Sigma Im Inc,Y4000\nDirector,University of Washington,J7400\nPhysician,JelksMedical,H1130\nManager,Computers Networks Education & Trai,Y4000\nAttorney,Law Office of Bruce Sinift,K1000\nPROFESSOR,AIU,H5300\nProject Manager,United Nation,X3000\nEXECUTIVE MG,FRESENIUS MEDICAL CARE,H3200\nPRESIDENT & CEO,COLTON GROOME COMPANY,Y4000\nPRESIDENT,\"JOHN G. CAMPBELL, INC.\",K2000\nAttorney,J. Franklin Long Law Ofc.,K1100\nRetired,N/A,C5110\nST PAUL RAMSEY MEDICAL,,H2100\nVice President,MERCURY INTERACTIVE CORP,C5120\nATTORNEY,DENEWTH DUGAN & PARFITT,K1000\nGeneral Manager,Kia of Blue Ridge,Y4000\nASSETS EQUITY GROUP,,K2000\nEXECUTIVE,MACANDREWS AND FORBES,M3300\nCHESTER PHILLIPS CONSTRUCTION CO,,B1500\nONLINE CORPORATION,,Y4000\nDABBS & CO,,Y4000\nCENTER POINT IN ASPEN,,Y4000\nBROKER,SELF EMPLOYED,F3200\nATTORNEY,\"MORGAN, BRASHEAR, COLLINS & YEAST, PLC\",Y4000\nengineer,The Goodyear Tire  amp; Rubber Co,M1500\nC.E.O.,WINTRUST FINANCIAL CORP.,F1100\nWEST HILL INVESTORS,,F0000\nOWNER,DRI-TEC WATERPROOFING,B3000\nTECHNICS DEVELOPMENT,,Y4000\nHOMEMAKER,ACTIVIST,Z9500\nEXECUTIVE VP,MAJOR LEAGUE BASEBALL,G6400\nATTORNEY,HARRIS RENY TORZEWSKI,Y4000\nMANAGEMENT,CAPITAL SANITARY SUPPLY,E3000\nReal Estate Manager,NorthMarq Capital LLC,F2300\nBusiness Analyst,EDS,C5130\nSUBURBAN OLDS-NISSAN,,T2310\nGENERAL MANAGER,NATIONAL PAYMENT CORPORATION,G5200\nSIMMERON TRUCKING INC,,T3100\nCONSULTING,BANTAM INC,Y4000\nOUTFITTER,J&D OUTFITTERS,J6200\nPHYSICIAN,CFHC,Z9500\nCRITICAL RESPONSE NETWORKS/PRES/CEO,,Y4000\nMANAGER,RAM FUNDS GP LLC,Y4000\n\"Director, Information Services\",The Bond Market Association,F2100\nPARTNER,TARPLIN DOWNS YOUNG,K2000\nLEAD STORAGE ADMINISTRATOR,DST SYSTEMS INC.,C5130\nCEO,GENENTECH,H4500\nManager,Employers Reinsurance,M2300\nKANSAS CITY MISSOURI SCHOOL DISTRIC,,Y4000\nCOLDWELL BANKER/BROKER/ASSOCIATE,,F4200\nHOEFFER & ARNETT,,Y4000\nProperty Management,Bessire & Casenhiser,Y4000\nOwner,Centro De Inmamiracion,Y4000\nPAOLI AND PAOLI,,K1000\nPresident & CEO,New York Power Authority,E1600\nOwner,Tonys Wholesaler,Y4000\nROUSH INDUSTRIES,,Y4000\nHOMEMAKER,SELF-EMPLOYED/HOMEMAKER,C2900\nComputer Software Sa,Mercury,Y4000\nSELF EMPLOYED,CINDERELLA THERAPEUT,Y4000\nJudge Executive,Pike County,X3000\nVICE PR,METROPOLITAN CHICAGO HEALTH,Y4000\nVice President and C,Scottsdale Healthcare,H2100\nMARICOPA SUPERIOR COURT,,X3200\nFOUNDATION OFFICER,MATCAP,J1200\nPOLITICAL WO,FRIENDS OF BROSE MCVEY,J1100\nPHARMACIST,RETIRED,Z9500\nMANAGER,ALASKA COPPER,J1100\nPRESIDENT,EN-SYNC GROUP INC,Y4000\nSYSTEMS PROGRAMME,INTEL CORPORATION,C5110\nATTORNEY,PATINO & ASSOCIATES P.A.,K1000\nOwner/Developer,Haury & Smith,B2000\nOWNER,AD BAKER HOMES,B2000\nPUBLISHING,RET.,X1200\nInvestment Manager,\"Oaktree Capital Management, LLC\",F2100\nDIRECTOR/NON-PROFIT,\"SAVE OUR HERITAGE, INC\",X4000\nSenior VP,Driver Alliant Insurance,F3100\nACE PRINTING,,C1300\nCHIEF EXEC,HEALTH CARE PARTNERS INC,H0000\nAttorney,Jensen & Associates,Y4000\nADMINISTRATOR,MARY WASHINGTON HEALTHCARE,Y4000\nINVESTOR,LEVY DEVELOPMENT CORP/INVESTOR,F4100\nPRESIDENT,JOHN M. CLARK INC.,Y4000\nWHITLEY GARNER FUNERAL,,G5400\nDEVELOPER,EQA LANDMARK COMMUNITIES,Y4000\nGARY BOCZ SALON,,Y4000\nEXECUTIVE,GUANA ISLAND CLUB,J1200\nMiles Properties,Real Estate Developer,F4100\nBUILDING PRODUCTS,ECONOMY FORMS,Y4000\nSTUDENT,SELF EMPLOYED,K1000\nBUILDER,\"SINANIAN DEVELOPMENT, INC\",Z9500\nJudge,State of NY,X3000\nLobbyist,Daley Policy Group,K2000\nINVESTOR,STADIUM CAPITAL,F0000\nComputer Programmer,\"BNA, Inc.\",Y4000\nAttorney,wigger law firm,K1000\nPROFESSOR (ECONOMICS),DUKE UNIVERSITY,H5100\nBanker,Springfield Institution for Savings,F1200\nAttorney,Fryberger Buchannan Smith & Freder,K1000\nFERTILIZER COMPANY,CARGILL INC,A1000\nBoard Member,Kunde Estate Family Estates,G2820\nArt Dealer,Lusenhop Fine Art,Y4000\nGE CAPITAL STRUCTURED FINANCE,,M2300\nPHYSICIAN,ROBERT L KRUSE,Y4000\nHOLSTON VALLEY HOSPITAL & MED CTR,,H1100\nSPECIAL ASSISTANT,STATE OF WV,X3000\nLawyer,Jacobs Persinger & Parker,J1200\nADMINISTRATION,ALICE HYDE HOSPITAL,H2100\nOFFICE OF THE GOVERNOR OF MARYLAND,,X3000\nASSISTANT PROFESSOR,UMASS MEDICAL SCHOOL,Y4000\nCUSTOMER SERVICE,CALL CENTER,Y4000\nFRANCZEK AND SULLIVAN,,K1000\nAUTO ELECTIC CO,,T2400\n\"President & CEO, Bayer MaterialScience\",Bayer Corporation,M1000\nExecutive,Net Copr,Y4000\nMERRILL DISTRIBUTING,,A1300\nCHAIRMAN AND CEO,UHS OF DE,H2100\nTAMPA BAY SHIPBUILDING & REPAIR,,T6100\nREAL ESTATE DEVELOP,THE MACKS GROUP,J5100\nCONCERT PROMOTER,RED MOUNTAINT ENTERTAINMENT,Y4000\nPRESIDENT,MELLENNIUM,Y4000\nEXECUTIVE DIRECTOR,NUCLEAR ENERGY INSTITUTE,E1300\nGREENLAND SCHOOL DISTRICT,,X3500\nCFO,Capital One,F1400\n\"VICE PRESIDENT, CIVIL DIVISION\",GRW INC.,B4000\nATTORNEY,\"PERLMAN & PERLMAN,LLP/ATTORNEY\",Y4000\nCEO,\"JORDAN EDMISTON GROUP, INC.\",F2300\nCONSTRUCTION,RESETARITS CONSTRUCTION,B1500\nPRESIDENT,INTOUCH COMMUNICATION,Y4000\nOWNER,ESR ELECTRIC,Y4000\nMEDICAL SPECIALTY GROUP,,H0000\nCEO,JENNINGS ENTERPRISES,Y4000\nAttorney,\"Black & Hughston, P.C.\",Y4000\nNEMENZ FOODS,,Y4000\nOwner,Datalink Computer Products Inc.,C5110\nTHE SELLERS GROUP/ARCHITECT/PRESIDE,,B4200\nMutual Fund Co-Manager,Blackrock,F2100\nEngineer,At&T Inc,C4100\nFINANCES,LION ADVISORS,F2600\nManager,Carnival Cruise Lines,T6250\nCANNERY VILLAGE REALTY,,F4200\nNetwork Administrato,Analog Devices,C5110\nSEAVIEW PETROLEUM CO,,E1100\nPHYSICIAN,DIAGNOSTIC LABORATORIES,Y4000\n\"O'QUINN KERENSKY MCANINCH ET AL\",,K1000\nPRESIDENT & CEO,\"HEADSTRONG, INC.\",Y4000\nCEO/President,DTI,Y4000\nFuneral Director,Hinchliff-Pearson-West Inc,G5400\nHIMELFARB MEDICAL OFFICE,,H1400\nTHE MUNICIPAL CODE COR,,Y4000\nORGANIZER,MUUSJA,Z9500\nPARTNER,EX-AGENTS AND ASSOCIATES,Y4000\nScientist,Sensis Corporation,Y4000\nEXECUTIVE,VALENTINE RESEARCH INC.,C5000\n\"Gov't Affairs Direct\",N.C. Mutual Wholesale Drug,H1750\nCLARKSON & COMPANY,,Y4000\nRETIRED,MIAMI-DADE CHAMBER OF COMMERCE,G1100\nREAL,CHAMPAING CO ASSN OF REALTORS,F4200\nPhysician,CDC,J1200\nRTO DEALER,,Y4000\nRETIRED / CITY COMMISIONER,CITY OF HELENA,X3000\nattorney,Miller Canfield,K1000\nHUMAN RESOURCES,TOYS R US,G4600\nPARTNER,EASTLANDER GROUP LLC,F2100\nInvestments,Self Employed,F2200\nATTORNEY,ANDERSON DONOVAN & POOLE,J7400\nRealtor,Jones Realting,F4200\nActor,Artistic Pit,C2000\nSenior VP Technology,NYSE Euronext,F2400\nANESTHESIOLOGIST,OHIO STATE UNIV,H1130\nAttorney IT Trademark,Bracewell & Giuliani,K1000\nPresident/Ceo,Pfs Group,Y4000\nOIL & GAS INVESTMEMTS,SELF,E1100\nC.E.O.,B.R.E. PROPERTIES INC.,F4100\nL & C EUROPA CONTRACTING CO,,Y4000\nINSURANCE AGENT,BABINEAU INSURANCE,F3100\nAttorney,Fulbright and Jaworski,J7400\nMANULLIFE FINANCIAL,,F0000\nINVESTOR,NCH CAPITOL INC,J5100\nCHIEF FINANCIAL OFFI,\"ARBITRON, INC.\",Z9500\nAPARTMENT,,Y1000\nONE SOURCE CAPITAL,,F2000\nSANFORD B BERNSTEIN,,F2100\nCFO,JOANNE M. MCGEE CLEANING & JANITORIAL,Y4000\nRHEUMATOLOGI,ROCKFORD HEALTH SYSTEM,H1130\nFEITH & ZELL PC,,K2100\nC. E. O.,JOHN B. SANFLIPPO * SON,Y4000\ninvestment banker,Elixir Advisors,Y4000\nPENOBSCOT MANAGEMENT,,F4500\nINTERNAL MEDICINE PH,SELF- EMPLOYED,Y4000\nLAWYER,STATEWIDE LEGAL SERV.,K1000\nEXECUTIVE,\"BLIX STREET RECORDS, INC.\",Z9500\nENGINEER,\"SUMMIT ENGONEERING, INC.\",Y4000\nFINANCIAL ADVISOR,TRAVIS GODLEY,Y4000\nEXECUTIVE,HJ KALIKOW & ASSOCIATES,F4500\nEXECUTIVE,CEED,Y4000\nEngineer,Silber & Associates,Y4000\nCLASS,UNASSIGNED EMPLOYER # NC90014,L1300\nGraduate Teaching Assitant,Oregon State University,H5100\nPRESIDENT,ALLIED CAR RENTAL,T2500\nVP OF GOVT AFFAIRS,SRP,K2000\nADMINISTRATOR,LPS CONSTRUCTION,B1500\nPHYSICIAN,PEDIATRIC ANESTHESIOLOGISTS INC.,H1130\nPRESIDENT,NOBLE OUT REACH,Y4000\nLAWYER,BEVERIDGE & DIAMOND,K1000\nHARVARD U HEALTH SERVICE,,H3000\nSALES DIRECTOR,HOFFMAN HOUSE,Y4000\nEXEC.,NEW BREED,G5200\nMarketing/Sales Mana,Universal Protection Service,Y4000\nDOUGLAS HOUSE,,Y4000\nManager,Paralegal Capital Managment,F2100\nBUSINESS CONSULTANT &,SELF-EMPLOYED,K2000\nGOTHAM ENTERTAINMENT,,J1200\nMERRILL LYNCH & COMPANY INC.,,X1200\nPRESIDE,FOX LATIN AMERICAN CHANNELS,Y4000\nATTORNEY,FRANKS & ROEDER,K1000\nCOMPUTERS,BBV/COMPUTERS,Y4000\nOWNER/MANAGER,\"CHAPMAN HEALTHCARE PHARMACY, INC.\",H1750\nScholar/Author,Demos,Y4000\nPhysician,Baxter Bioscience,Y4000\nSvp Glob Fin & IS,Wyeth,H4300\nWOLFSON OIL CO,,E1100\nCRATE & BARREL,,G4000\nVP Medical Affairs,Blue Cross NEPA,F3100\nEXECUTIVE,PRINTRONIX INC.,C5110\nVICE PRESIDENT,TRACER TECH,J1100\nRetired,Tampham Farms,A1000\nFREELANCER,SELF,G5200\nPINNACLE AUTOMOTIVE GROUP,,T2000\nMARKETING DIRECTOR,MERIAL LIMITED,H4300\nDIRECTOR,INTERMOUNTAIN FARM CREDIT,A4000\nEXECUTIVE,SOURCE CAPITAL L.L.C,F5000\nATTORNEY,TENASKA,J1200\nNISSAN CAR DEALER,PETERS AUTOMOTIVE / NASHUA,Y4000\nQA MGR,METSO MINERALS,Y4000\nMARKETING ASSISTANT,HIGH SPEED PRODUCTIONS,C1300\nMAGARICLE & ASSOCIATES,,Y4000\nKELSET-SEYGOLD CLINIC,,H1100\nASSOC-COMM EMP PROG FOR HOMELESS,,J1100\nStay Home Mom,None,J1100\nSenior Vice President/General Manager,Cablevision Systems Corporation,C2200\nOWNER/PRESIDENT,GREAT SOUTHERN WOOD,B5200\nINVESTME,CENTRE PARTNERS MANAGEMENT,F2100\nFinancial Sales,Retired,X1200\nHome Designer,Self-Employed,B4000\nCEO,Tooling Manufacturing & Technologies A,M5100\nTrainer and Developer,CR Bard,H4100\nSTROME-CALLA PROD,,Y4000\nATTORNEY,DORSEY AND WHITNEY,K1000\nHB MELLOTT ESTATE INC,,B5100\nEXECUTIVE DIRECTOR,LOUISIANA MOTOR TRANSPORT ASSOCIATION,T3100\nEXECUTIVE,TRANS NATIONAL GROUP,Y4000\nREAL ESTATE BROKE,JORDAN BARKS INC.,Y4000\nPARTNER,GELLER & CO.,J5100\nPHYSICIAN,MEZONA ORTHO. PROF. ASSOC,H1100\nPHYSICIAN,ONCOLOGY & HEMATOLOGY PC.,H1130\nLEVIN MANAGEMENT CO,,F4200\nALPHA SQUARED TV,,J1100\nATTORNEY,\"POWER, ROGERS & SMITH, P.C.\",K1000\nSENIOR VP OF ENVESTMENTS,USB,Y4000\nManager,McDuffie Feed and Seed,A4000\nKENNEY MANUFACTURING,,J1100\nBROKER,CREDIT SUISSE,F2300\nVICE PRESIDENT,\"ANNA QUARRIES, INC.\",B5100\nFEDERAL HOUSING FIN,,K2000\nMOBILE CTY SCHOOL SYS,,X3500\nRETIRED,STATE OF MARYLAND,JE300\nPHYSICIST,\"BIO-IMAGING RESEARCH, INC.\",Y4000\nJFG COFFEE CO,,Y4000\nOWNER,SANDS BEACH CLUB,Y4000\nCEO,ENERGI INC.,Y4000\nHomemaker,Information Requested,J1300\nPresident,Sanli Pastore Hill,Y4000\nEXECUTIVE,KENNEDY INFORMATION INC,C1100\nBusiness Representative,Indiana/Kentucky Regional Council,LB100\nPHARMACIST,\"NELSON'S PHARMACY\",G4900\nOwner/Operator,Stockland Livestock Exchange,A3000\nLOBBYIST (FEDERAL),THORN RUN PARTNERS,K2000\nPRESIDENT,MOUNTAIN FOREST PROD.,Y4000\nSoftware Engineer,LM Corp,Y4000\nREAL ESTATE BROKER,GARCIA REALTY,F4200\nPHYSICIAN,DIGESTIVE DISEASE SPECIALISTS,Y4000\nDISTRIC,PFIZER U.S. PHARMACEUTICALS,H4300\nSTOCK BROKER,DOMINIC & DOMINIC,F2100\nATTORNEY,WANDRO & ASSOCIATES,K1000\nELECTRICAL CONTRACTOR,\"WAYNE'S ELECTRIC INC\",Y4000\nCHAIRMAN,THE LOCKWOOD GROUP,G5200\nWRITER JOURNALIST,,J1200\nSELF,PRODUCER,C2000\nFAMILY THERAPIST,THE FAMILY CENTER,J7400\nWA HOTEL,,F1100\nNONPROFIT DIRECTOR,HOMES FOR FAMILIES,J7400\n\"VICE PRESIDENT, DISASTER PREPAREDNESS\",CALIFORNIA HOSPITAL ASSOCIATION,H2100\nREAL ESTATE DE,RMK MANAGEMENT CORP.,F4100\nPsychologist,John Stroger Hospital,J1200\nPresident,Cyberthech,Y4000\nLONGSHORE CLERK,PMA,K2000\nOWNER,PHOTO COMMENCEMENT INC,Y4000\nEXEC SPEECH WRITER,,Y4000\nAttorney,Alston & Bird L. L. P.,K1000\nSr. VP,RBC Dain Rauscher Corp.,F2100\nCRNA,VISION CARE CENTER OF IDAHO,H1710\nExecutive Vice President,American Bankers Assoc,F1100\nATTORNEY,COUNCIL BAVADEL KOSMERL & NOLAN,Y4000\nMARKETING,\"STEPSTONE, INC.\",Y4000\nSAFE HARBOR CAPITAL M,SELF EMPLOYED,Y4000\nATTOR,\"CURTIS, MALLET-PROVOST ET AL.\",K1000\nreal estate,self,J7400\nINTERSTATE SPECIALTIES INC,,Y4000\nPRESID,CAPITOL FIRE & SECURITY INC.,G5290\nDEPUTY DIRECTOR OF PUBLIC AFFAIRS,DEPARTMENT OF TRANSPORTATION,X3000\nEXECUTIVE VICE PRESIDENT & CEO,KAMO POWER,E1610\nPRESIDENT BUSINESS OWNER,SEA CORP,Y4000\nMOVIES,BMH WORLDWIDE,C2400\nFruit Grower &Packer,Evans Fruit Company,A1400\nPROJECT MANAGER,GUIDEWIRE SOFTWARE,C5120\nprivate equity,North Star Advisors,Y4000\nCHAIRMAN,NEXSEN PRUET,K1000\nPRESIDENT,INTEGRACARE REHAB,Y4000\nCEO,OMNI WORKSPACE,Y4000\nExecutive Director,Winnetka Chamber of Commerce,G1100\nMORTGAGE BROKER,EAGLE HOME MORTGAGE,F4600\nVENTURE BANKING,,Y4000\nVP Assoc General Co,MASSACHUSETTS MUTUAL LIFE INS.,F3300\nATTORNEY,THE FEINBERG GROUP LLP,K1000\nInterior Designer,Bebe Johnson Design,Y4000\nVICE PRESIDENT,BROWN & BROWN,F3100\nOFF OF TENN ATTY GENERAL,,X3200\nENTREPRENEUR,STANFORD -- GRIGGS,Y4000\nATLANTA CAPITAL MANAGEMENT CO,,Y4000\nBYRON CENTER FINANCIAL SERVICES INC,,F0000\nI T M,,Y4000\n\"KEN'S\",,Y4000\nHARVARD UNIVERSITY,,G2900\nPRESIDENT,OTERSTUFF,G4100\nENERGY LOGIC/COMMUNICATIONS/MARKETI,,E1000\nMONTGOMERY MAZDA,,T2300\nNEW YORK STATE ATTORNEY GENERAL,,X3200\nPIKE CO INC,,B1000\nPRESIDENT,MARINER FINANCE/PRESIDENT,F1400\nEXECUTIVE MANAGEMENT,UW CREDIT UNION,F1300\nVENTA INC,,G4300\nOrthopaedic Surgeon,Sansum Medical Clinic,H1130\nAttorney,\"Hancock, Rothert & Bunshoft\",K1000\nBusiness Owner,Strategic Media,G5210\nPROPERTY TAX CONSULTANT,\"MERITAX, LLC\",Y4000\nATTORNEY,LAW OFFICES OF BELINDA NOAH,K1000\nAttorney,Central Ca Appellate Program,Y4000\nINFO REQUESTED,Construction Dust Extractors,B3000\nSenior VP,Northern Trust Corp,F1100\nAttorney,Lee & Kaufman,K1000\nPHYSICIAN,NORTHERN ILLINOIS RETINA,H1120\nDEVELOPER,RFR HOLDING,F4100\nDriver,Kendall Medical Plaza,Y4000\nPRESIDENT,TAB CONTRACTORS INC,B1000\nCEO,OLDCASTLE MMG INC.,B5100\nOWNER,FRED HAYMAN,X1200\nASSOC,KY. FOR BETTER TRANSPORTATION,Y4000\nWHITE MOUNTAINS INSURANCE,,J1100\nEDITOR,SELF,J7400\nOwner,\"Summer Hill, Ltd\",Y4000\nPRESIDENT,STACK HEATING AND COOLING,B3400\nMMI,PRESIDENT,G0000\nROSCO HEALTH SYSTEMS,,H1710\nATTORNEY / PARTNER,CAPITOL TAX PARTNERS,K2000\nGeneral Manager,SunFuels Hawaii,Y4000\nBUSINESS,\"LABORERS' LOCAL UNION 803\",LB100\nunemployed programme,H1-B VISA casualty,C5130\nOwner,\"E. L. Wagner Co., Inc.\",Y4000\nEVP,PLAINS COTTON GROWERS INC.,A1100\nHIAWATHA LOG HOMES/PRESIDENT/CEO,,B2000\nOwner,AG Concepts Corp.,Y4000\nPresident,Chusano Cigars-Sarasota FL,A1300\nSupervisor,Amar Oil Company Inc,G4300\nRETIRED,RETIRED/RETIRED,B6000\nexecutive,The McManus Group,K2000\nAUV L FRUIT CO,,A1400\nWriter and Commentator,Self-Employed,G0000\nSR. VP,UNIVERSAL MUSIC GROUP,C2600\natty,\"The Bierlein Law Offices, P.S.\",K1000\nMEDICAL TRANSCRIPTION SERVICE OWNER,SELF-EMPLOYED,G0000\nMITCHELL & WALWYN,,K1000\nSR. VI,SCOTTSDALE HEALTHCARE-OSBORN,H2100\nExecutive - Presiden,Paige Sports Entertainment,J1100\nPhysician Recruiter,Artium Medical Center,H1100\nCodify Corp.,,Y4000\nBETH ISRAEL MEDICAL CNTR,,H2100\nSOCIOLOGIST,TOWN OF BOXFORD,Y4000\nNORTH DAKOTA NATIONAL GUARD,,X5000\nWEST TX MEDICAL ASSOC,,H1100\nSr. VP - Casino Oper,Flamingo Las Vegas,G6500\nPhysician,Mid-Georgia Ortho,H1130\nSOFTWARE DEVELOPER,UNITED TECHNOLOGIES AEROSPACE SYSTEMS,D2000\nOWNER,D.F.W. AUDI,Y4000\nMD,COASTAL EYE SPECIALISTS,H1120\nRetired,Not Emplyed,X1200\nSEEDSMA,CORN STATES HYBRID SERVICES,A4000\nREAL ESTATE,EUCALYPTUS PROPERTIES LLC,F4000\nVICE PRESIDENT,UNITED KNITTING,Y4000\nGOVERNOR,PREFERRED ELECTRIC COMPANY INC,B3200\nCEO,COLLECTIVE HOME CARE INC,Y4000\nPRESIDENT AND OWNER,RA INDUSTRIES INC.,M2300\nBORAN CRAIG & BARBER,,B1000\nAttorney,Jordan Price Wall Gray Jones,K1000\nHEUBERGER MOTORS INC,,T2300\nSISSON COMPANY,,Y4000\nEXECUTIVE RETIRED),TRACTOR SUPPLY CO.,G4600\nWASHINGTON UNIVERSITY,,H3000\nVP HR,XEROX,M4200\nOwner/Manager,\"Frame Service, Inc.\",Y4000\nALOE INVESTMENTS,,F2000\nGENERALCONTRACTOR,SELF,B1500\nSOFTWA,\"ALLURE GLOBAL SOLUTIONS, INC\",Y4000\nTHE MARSON GROUP,,Y4000\nCFO,Pool Professionals Inc,Y4000\nExecutive Vice Presi,U F C W Local 951,Y4000\nSTATE WORKER,TEXAS HHSC,Y4000\nComptroller/ C P A,Better Food Systems Inc.,G2000\nVICE CHAIRMAN,JP MORGAN CHASE & CO.,F1100\nManager,CMA,A3000\nDIRECTOR OF MA,U.W.R. INTERNATIONAL,Y4000\nREAL ESTATE DEVELOPMENT,\"CAMPUS APARTMENTS, LLC\",F4500\n\"EVP, President Meridian\",Meridian Medical Technologies,H4300\nBUSINESS EXEC.,CHI CO.,J1100\npresident,Foundation for Education Technology,X4100\nADVERTISING E,GALLAGHER ADVERTISING,G5210\nREAL ESTATE BROKER,RE/MAX  REALTY CONSULTANTS,F4200\nCongressional Relati,The Lingston Group,Y4000\nKRAMER LAW,,Y4000\nCFO,TEXAS GLASS TINTING,Y4000\nUNITED PACIFIC APPAREL,,M3100\nVice President,\"GreenPoint Mortgage Funding, Inc.\",F4600\nOWNER,MYRON JOHNSON LUMBER CO.,B5200\nGENERAL PARTNER,WORLDVIEW TECHNOLOGY PARTNERS,Y4000\nReal Estate,Partnership,F4000\nR J TOOMEY COMPANY,,Y4000\nATTORNEY,AK STEEL CORPORATION,M2100\nATTORNEY,BOYLE & LOWRY LLP,K1000\nCHAIRMAN,SELECT MEDICAL,H2100\nM.D.,Henry Ford Heath Systems,Y4000\nGOVERNMENT RELATIO,WESTERN WIRELESS,C4300\nDoctor,Bryan Medical Group Inc.,Y4000\nPROFESSIONAL ASSOC CONSULTING SVCS,,Y4000\nOFFICE MANA,SALVATORE J. FORCINA MD,H1100\nGENERAL MANAGER,CHC MECHANICAL,Y4000\nBUSINESS DEVELOPMENT MANAGER,ZURICH,F3000\nPhysician,MVCR Inc,Y4000\nATTORNEY/PARTNER,CLIFFORD LAW OFFICES,K1100\nGENERAL COUNSEL,ACE CASH EXPRESS,F1420\nAttornet,Self employed,K1000\nInstructional Designer,McKesson Corporation,H4400\nCORPORATE SECRETARY-TREASURER,\"NICHOLS TILLAGE TOOLS, INC.\",M5100\nBusiness executive,Clarity Partners,F2600\nSOUTH FL MAINTENANCE,,Y4000\nRETIRED CSU,,X1200\nproject mgr,Clark Construction,J1200\nCFO,Laredo Medical Center,H2100\nION Media Network,,Y4000\nSonographer,Hackensack University Medical Center,H2100\nAPELGREN CORP,,A1200\nKVAC/AK ONE/MEDIA ANNOUNCER,,Y4000\nChairman of Corporation,\"The Copley Press, Inc\",Y4000\nGeneral Counsel and Senior Vice Presid,American Trucking Associations,T3100\nOZER GROUP,,Y4000\nP T,CORPRATE DIRECTOR,G0000\nPHYSICIAN,MENTAL HLTH MED CTR,H1100\nEL BUFALO PAWN SHOP/SALESMAN/SCHOOL,,Y4000\nDirector,UC Berkeley,H5100\nPROFESSOR,FLORIDA INSTITUTE OF TECHNOLOGY,H5100\nMANAGER,WELLS FARGO HOME MORTGAGE,F1100\nPHYSICIST,BROOKHAVEN NATIONAL LAB,Y4000\nn/a,wrote for info 3/10/04,D2000\nChairman,Fidelity Investments,F2100\nOWNER,\"CROSSROADS STRATEGIES, LLC\",K2000\nERA CAPITAL AREA REALTY,,F4200\nReal estate broker,self-employed,F4200\nBATTTY HARVEY & ASSOCIATES,,Y4000\nOwner,Cutting Edge Drapery,Y4000\nCREDIT BUREAU OF BATON ROUGE INC,,F1400\nPlanning,Sudberry Properties,Y4000\nProducer,Fox News Channel,J1200\nBASCOM PALMER EYE INS,,H1100\nOwner,\"M Rentals, Inc\",G5300\nADVOCATE,THE UNITED METHODIST CHURCH,X7000\nTHE BARTON ASSOCIATION,,Y4000\nREAL ESTATE AGENT,KOENIG & STREY,Y4000\nSTAIRS DILLENBECK FINLEY & MERLE,,J1100\nDirector,City Of Seattle,X3000\nAttorney,\"Nix, Patterson & Roech\",G5200\nVOLUNTEER COORDINATOR,MATCH SCHOOL,Y4000\nDIAG,OLIVE VIEW-UCLA MEDICAL CENTER,H1130\nPROPERTY MANAGER,INVESTOR,F7000\nConsultant,The Resort Group,F4000\nVice President CFO,Pel-Bern Electric Inc,B3200\nD O T,N Y S,X3000\nWestern Development Corp,Western Development Corp,F4100\nEVP & CHIEF COMPLIANCE OFFICER,MERCK SHARP & DOHME,H4300\nSECRETARY,KPR INC.,Y4000\nBANK NOTE CAPITAL LLC,,F2100\nUSDA FENS INVESTIGATOR,,X3000\nSECURIT,JOHNS HOPKINS MEDICAL INST.,H2100\nLABOR UNION OFFICER,LOCAL 68 IUOE,LB100\nATTORNEY,\"OVERTURF MCGATH HULL & DOHERTY, PC\",Z9500\nPRESIDENT,\"MOODY DUNBAR, INC.\",Y4000\nJ W CHILDS INC,,F2600\nELLER MEDINA CO,,G5230\nPARALEGAL,NATIONAL PARALEGAL S,Y4000\nBusinessman,Western Land Group,Y4000\nRadiologist,Anniston Radiology,H1130\nWHITIS CABINETS INC,,Y4000\nPRESIDENT-REAL ESTATE,MIDCAP FINANCIAL LLC,H2200\nSchool Admin,MMSD,X3500\nBRIER PATCH,,Y4000\nTEACHER,SCHOOL DISTRICT OF LA CROSSE,H5100\nSLOCUM INDUSTRIAL EQUIPMENT,,Y4000\nPARTNER,THE MIRRAM GROUP,K1000\nPharmacist,Family  Pharmacy,H1750\nReal Estate,Chipster Properties,F4000\nCHAI,CINCINNATI FINANCIAL CORPORATI,F3100\nOwner,Datapath Inc.,Y4000\n\"BETH ISRAEL MEDICAL CENTER, NEW YOR\",,H2100\nEXECUTIVE VP,LAKELAND BANK,F1100\nfarmer,farmer,A1000\nMortgage Broker,McCue Mortgage Co,F4600\nWESTERN RECYCLING,,M2400\nPresident,\"Starfire Systems,inc\",M1000\nOUTSOURCE-FINDER FOR,R.M.K. FINANCIAL,F0000\nSOFTWARE ENGI,STRATUS COMPUTER INC.,C5100\nOwner,Fox And Wood Builders,Y4000\nCEO,ERC CORPORATION,J1200\nPsychologist,Citrus Health Network,H3000\nOWNER,PLANET POOCH LLC/OWNER,Y4000\nTHE WESTERN & SOUTHERN LIFE INS CO,,F3300\nINFO REQUESTED,TEL-STAR INCORPORATED,Y4000\nResearch,ProHealth Physicians,H1100\nATTORNEY,SC DEPT OF REVENUE,Y4000\nTeacher,Fairfield School,Y4000\nElectrical Contracto,Electric Company of Omaha,B3200\nPRESIDENT,\"POWER MONITORS, INC.\",C5000\nExecutive,Petroleum Products Inc,E1100\nROBERTS AND STEVENS PA,,K1000\nrequested,Turner Broadcasting,C2000\nECONOMIST,CAPITAL STRATEGY RESEARCH,F2100\nAerospace Migrant Worker,LANS,Y4000\nPRESIDENT,MACHEN RANCHES,A3000\nManaging Director,Baird & Co,Y4000\nTravel Consultant,Self - Employed,T9400\nLaw,\"ATTORNEY, LEVINE, GOULDIN & THOMPSON\",K1000\nBILL WOODS FORD,,T2300\nAttorney,\"Foley & Mansfield, PLLP\",K1000\nSoftware,Bioware,Y4000\nELECTRICAL CONTRACTOR,DESIGN ELECTRIC,B3200\nExecutive,Mid-Continent Aircraft Corp.,T1200\nWESTERN ALASKA FISHERIES INC,,G2350\nPANTEX,,Y4000\nCOPPERSMITH FOR SENATE,,Y4000\nGovernment Relations,McCarthy and Speaks Strategic Solution,K2000\nComputer Engineer,Hypertech Solutions,Y4000\nVP/Recycler,Lee Iron & Metal Co.,M2100\nGIORGIO ARMANO,,\nWRITER,SELF-EMPLOYED (SAME),C1100\nDirector/Producer of Film,Self Employed,C2400\nOral Surgeon,Alaska OMS Center,H1400\nPRESIDENT,ECHO POINT MEDIA,Y4000\nINCOME TAX CHECK-OFF/N/A,,X3000\nOWNER,AMERILOAN MORTAGE CORP.,Y4000\nOWNER,CHAAR SADDLERY/OWNER,Y4000\nENGINEER,SELF EMPLOYED,G0000\nPRES,L-3 COMMUNICATIONS CORPORATION,D3000\nCPA,WOOD STEPHENS & ONEIL LLP,Y4000\nMUSIC TEAC,BERKLEY BD. OF EDUCATION,X3500\nBUSINESS OWNER,HORIZON GROUP INC. DBA BATTERIES PLUS,Y4000\nAttorney,\"Bond, Botes & Skystus, PC\",K1000\nCEO,Schooner Capital,F2100\nPHYSICIAN,BROOKHAVEN OB-GYN,Y4000\nCHRISTOPHER HURLEY & ASSOCIATES LLP,,Y4000\nPRESIDENT,CHRISP COMPANY,B5400\nSongwriter / Musicia,Bar None Music,Y4000\nPLUMBING AND HEATING,SELF-EMPLOYED,B3400\nDirector,Pain Care Of Long Island,Y4000\nCommunity Volunteer,Volunteer,J7400\nDIRECTOR OF EXTERNAL COMMUNICA,CITI,F1100\nATTORNEY,MARGOLIS & TISMAN LLP,K1000\nFOUNDRY,PURE CASTINGS CO.,J1100\nRetired RN/Healthcar,n/a,J7400\nAccountant,Flint Group Inc,M1600\nAttorney,Woods Fuller Schultz & Smith,K1000\nInvestment Mgmt,Halcyon Asset Mgmt,F2700\nEXECUTIVE,THE MOREY CORPORATION,J1100\nC.E.O.,MARNELL CARRAO ASSOCIATES,Y4000\nBOOTH CREEK INC,,T9300\nBusinessman,Tahitian Noni,Y4000\nLAWYER,COMMONWEALTH OF VIRGINIA,X3000\nExecutive,OMNI Puerto Rico Corporation,Y4000\nPresident,S & W Press Kentucky Llc,Y4000\nMCO Equipment Sales,Self-Employed,Y4000\nPRESIDENT,\"A.M. TRANSPORT SERVICES, INC.\",T3100\nATTORNEY,STEPHENSON & STEPHENSON,Y4000\n\"LOWE'S VP - P\",\"LOWE'S COMPANIES, INC\",G4500\nTARRANT COUNTY TEXAS,,Y4000\nManaging Partner,Rhodes Associates,J1100\nOWNER,GSO INTEGRATED LOGISTICS LLC,Y4000\nPsychologist,The Wellness Institute,J1200\nREAL ESATE BR,DELAWARE HUDSON GROUP,J1100\nREAL ESTATE DEVELOPER,THE HUTTON COMPANY,F4000\nPRESIDENT,LONG INC,G2850\nATTORNEY,CENTER FOR BIOLOGICAL DIVERSITY,H1130\nATLAS MINERALS,,Y4000\nSr. Partner,\"Bartimus, Kavanaugh, Frickleton & Pres\",K1100\nCSR,Integrated Mrktg Techogies,J1200\n,NORTHERN CENTRAL DISTRIBUTING INC.,Y4000\nManaging Atty & Comp,\"Southern Nuclear Operating Co,\",E1300\nCONTRACTS SPECIALIST,AIR ENERGI/CONTRACTS SPECIALIST,Y4000\nATTORNEY,\"CARROLL, CARROLL, DAVIDSON,\",Y4000\nUniversity Professor,Central Missour State,H5100\nSenior Staff Assista,University of Notre Dame,H5100\nKUHKLE PROPERTIES,,F4100\nATTOR,LAW OFFICES OF GARO GHAZARIAN,K1000\nO,DE LA ROSA LATIN AMERICAN IMPORTS,Y4000\nEXEC. DIR. TOUR,PETER PAN BUS LINES,T4100\nACCOUNT,HOWROYD MANAGEMENT SERVICES,Y4000\nCREATIVE DEVELOPMENT GROUP,,Y4000\nINTERNATIONAL FREIGHT DIV MGR,UNITED PARCEL SERVICE INC,T7100\nPresident,Bonanza Oil Company,J1200\nCEO,MERCANTILE BANK,F1000\nPRESIDENT,LONELAND DISTRIBUTION,Y4000\nPHYSICIAN,DUBOIS REGIONAL MEDICAL CANTER,H2100\nMUSICIAN AND TEACHER,Not employed,C2600\nMANAGER SAFETY & INDUSTRIA,,Y4000\nVICE MAYOR,CITY OF HEALDSBURG,X3000\nPERFUSIONIST CARDIOPULMONARY TECHNICIA,\"GOLDEN GATE PERFUSION, INC.\",J1200\nCHAIRMAN,AMERICAN ASSETS TRUST,F4100\nTRADER,TECHNICAN INSTRUCTION CORPORATION,F2700\n\"QUINN, GILLESPIE\",,K2000\nBusiness Developer,MJM Manistee,Y4000\nATTORNEY,WATER KLAUS PAUL,K1100\nDIXON-MILLBRANDS INC,,Y4000\nTRAVEL AGENT,,T9400\nMARSHALL J STEIN,,F2200\nMedical Doctor,Sutter West Medical Group,H1100\nATTORNEY,HOGAN & HARTSON L.L.P.,K1000\nOwner,Aurora Mills Architechtural Salvage,Y4000\nPILGRIM TELEPHONE CO,,C4100\nSales,Builders Kitchens & Supply Co,B2000\nCAMERON - COCA COLA,,Y4000\nContractor,Herzog Contracting,B1000\nTECHNICIAN,CSE,Y4000\nFinancial Ad,Self,J1200\nRAPID CITY OBGYN,,H1130\nINVESTMENT BANKERS/VENTURE CAPITAL,HANOVER INVESTMENT GROUP,F7000\nC.E.O,\"LUDLUM MEASUREMENTS, INC\",Y4000\nENGINEER,AMD,Y4000\nPROJECT MANAGER,ATLANTIC CONCRETE INC.,B5100\nP R C ENVIRONMENTAL MGT INC,,Y4000\nOWNER,THE PRODUCTION WORKS,J1100\nFinance,\"Vining-Sparks ,ibg, Lp\",Y4000\nANALYST,KYOCERA WIRELESS,Y4000\nST Admin,USPO,J1200\nBUILDER & SUZER,,Y4000\nCommercial Real Estate Investor,Northstar Commercial Partners,F4000\nChairman/CEO,Vornado Realty Trust,F4000\nPresident,\"CHWC, Inc\",Y4000\nStockbroker,Information Requested,A1300\nEXECUTIVE,N. C. SCHOOL BOARD ASSOC.,Y4000\nWriter/Advertising,Self,C1100\nPOLO RALPH LAUREN CORPORATION,,M3100\nFORENSIC ENGINEER & C.E.O,REALTY ENGINEERING INC.,F4200\nPELLINO ROSEN MOWRIS,,K1000\nInvestment Advisor,Wheeler Company/,Y4000\nVOCATIONAL NURSE,TRINITY CARE,Y4000\nEQUITABLE LIFE,,J5100\nExecutive,Bradley Development,Y4000\nMC RINLEY TRANSPORT CO,,Y4000\n\"SVP, ADMINISTRATION\",GENESIS HEALTHCARE CORPORATION,H2000\nMARKETING/IT,PACUR,M1500\nManager,\"The Etheridge Company, LLC\",Y4000\nENGINEER,IBTS,Y4000\nAUTO DEALER,LAMOUREUX FORD,Y4000\nPhysician (dermatologist),Self-Employed,H1100\nLIBERTY CARTON COMPANY,,Y4000\n\"PRESIDENT, AMERICAS\",ASURION CORPORATION,G5000\nCONSTRUCTION EXECUTIVE,BALFOUR BEATTY CONSTRUCTION,B1000\nCHILDREN AND FAMILY,CITY OF CHICAGO,L1200\nCPA,\"GARY L. HOWARD, CPA\",F5100\nSENIOR PARTNER,\"CLARK, LYTLE, GEDULDIG\",K2000\nHEALTH LINK INC,,Y4000\nPRESIDENT,BILLINGTREE PAYMENT SOLUTIONS,F5200\nLANDLORD,\"GOLDEN RIO LAND, LLC\",Y4000\nDoctor,Roger Gex,Y4000\nENGINEER,BETA ENGINEERING,B4400\nRETIRED TEACHER MCS,ELBERT HOUSE,Y4000\nPRINCIPAL,\"STERLING & STERLING, INC.\",F3100\nBUCKLEY NAGLE ETAL,,K1000\nCEO,VALOREM REALTY,F4200\nCHICAGO GROUP INC,,Y4000\nEXECUTIVE OF,KANSAS LIVESTOCK ASSOC,A3000\nCOMPUTER PROGRAMMER,BROADTIME.COM LLC,Y4000\nWELLCARE HMO,,Y4000\nKRAMM HEALTH CARE CENTER,,Y4000\nPHYSICIST,MT CARMEL HEALTH SYSTEM,Y4000\nU.N.I.V.E.C./CEO/PRESIDENT,,Y4000\nP & E PROPERTIES INC,,F2100\nPRESIDENT AND,\"BECKMAN COULTER, INC.\",H4100\nBusiness Manager,Lerch Construction Co,J1200\nREAL ESTATE INVESTOR,\"ACCESS LAND CO, LLC\",Y4000\nPARTNER,CORNERSTONE HOLDINGS,F2600\nREAL ESTATE,ATACK PROPERTIES,F4000\nUS NAVY,DEPARTMENT OF DEFENSE,X5000\nCHR. & CEO,HANNAN SUPPLY CO INC.,M6000\nCHAIRMAN/CEO,C&R MECHANICAL CO.,Y4000\nPAINT MONITOR,GENERAL MOTORS,T2100\nOwner,\"MVM, Inc\",G5290\nWriter/artist,Self,J7400\nSOUTHERN CA EDISON,,E1620\nself/Rolling Plains Rural Healthcare,Physician,Y4000\nTEACHER,WAUKON PUBLIC SCHOOLS,X3500\nLAWYER,NATIONAL LABOR ELECE,X3000\nREALTOR,PRUDENTIAL UTAH ELITE,Z9500\nHEALTH INSURANCE A,THE BUFFUM GROUP,F3200\nOwner,Oasis Home Care,Y4000\nRetired,J P Morgan/Chase,X1200\nDir. Career Developm,Harrahs Casino,G6500\nVice-President,\"Safety Storage, Inc.\",Y4000\nPalm Asset Management,,Y4000\nPartner,New Jeresey Anesthesia Associates,H1130\nNIGHT CLUB OWNER,KINGSTON MINES,G2900\nNEUROLOGIST,UNIVERSITY OF KENTUCKY,H5100\nASSOCIATE PROFESSOR,UNIVERSITY OF CHICAGO BOOTH SCHOOL OF,H5100\nAttorney,McGillivray Westerberg & Bender,Y4000\nAttorney,\"Leonard, Nathan, Zucherman...\",J7400\nVP-GENERAL COUNSEL,AGRIBANK FCB,A4000\nREAL ESTATE INVESTMENT,TRICORE DEVELOPMENT CORP,Y4000\nCAROLINA ORTHOPAEDIC,,H1130\nOWNER,JBD INC.,G0000\nDeveloper,\"River Forest Partners, Llc\",A5000\n\"FARM MANAGEMENT, FAR\",FISCHER FARM SERVICES,A1000\nBICKERSTAFF HEALTH,,K1000\nStrategic Communicat,Fleishman-Hillard,Z9500\nElectric Utility,Duck River Electric Co.,Y4000\nRAINBOW OIL CO,,E1100\nMANAGER,UNITED WAY,X4000\nVICE PRESIDE,BARRY BETTE & LED DUKE,B1000\nPARTNER,BERRY BROTHERS,B1000\nVenture Capital,Enertech Capital Partners,F0000\nREAL ESTA,URBAN LAND INTERESTS INC.,Y4000\nUSAA Group Political Action Committ,,F5000\nExecutive Vice President,Baptist Medical Center,H2100\nSIETE OIL CORPORATION,,E1100\nCOAL MINE OPERATOR,SELF,E1210\nCORPORATE ATTORNEY,\"COLLECTIVE BRANDS, INC.\",G4100\nGeneral Management,\"Best Pawn & Exchange Co, Inc.\",Y4000\nSenior Vice President,\"Hi Tech Pharmaceuticals,\",Y4000\nOWNER,OLDE CANAL RESTAURANT,G2900\nMANUFACTURER,CINCINATI INCORPORATED,M5100\nA,\"INTEGRATED DNA TECHNOLOGIES, INC.\",Y4000\nFARMER BOOKKEEPER,,A1000\nCORPORATE OFFICER,WARMINGTON&NORTH CO,Y4000\nCo-Owner,Yoga On Center,J1200\nSOUTHERN KENTUCKY TRUC,,T3000\nENGINEER,AEGIS,F3100\nLAW OFFICES OF DIRK A FULTON,,K1000\nSilver Golub & Teitell LLP,,K1000\nWHALLEY COMPUTER ASSOC,,C5100\nFaculty Member,DePaul University,H5100\nKEYSTONE INVESTMENTS,,F2100\nENGELHARDT DAIRY,,A2000\nFEDERAL EMPLOYEE,\"US GOV'T\",X3000\nChairman,Founders Bank & Trust,F1000\nCET SOFTWARE,,C5120\n,WENDLER ENGINEERING & CONSTRUCTION,B1500\nPRESIDENT &,JORDAN INDUSTRIES INC.,M2300\nCOO,ICF International,G5200\nVITREORETIONAL SURG,,H1120\nreitred teacher,Not employed,X1200\nExecutive Vice Presi,Information Tech Assn,C5100\nExecutive Vice President,\"RE/MAX International, Inc\",F4200\nLAWYER,KING AND SPALDING,K1200\nAttorney,Broening Oberg Woods & Wilson,J1200\nENTREPRENEUR,HIGHER ONE,J1200\nENGINEER,JACOBS,J1100\nPRINCIPAL,CALTHORPE ASSOCIATES,Y4000\nREGIONAL SALE,CREMES UNLIMITED INC.,Z9500\nTHE RINKER CO,,J1100\nController,Olaf Anderson & Sons Const,Y4000\nCOLLEGE ADMINISTRATOR,CITY COLLEGE OF NEW YORK,H5100\nBROKER,DAHLQUIST REALTORS,Z9500\nOwner,Connie Moody Consulting,Y4000\nSR DIRECTOR-PERF EXCELLENCE,MANHEIM AUCTIONS,C2200\nPRESIDENT & CEO,AFFINITY HEALTH SYSTEM,Y4000\nJOHNSTONE SUPPLY OF OKC,,Y4000\nManager,Senior Whole Health,Y4000\n\"Property Management, Investment\",Self employed,G0000\nCPA,LODGEN LACHER,Z9500\nSelf,B&J Martin,Y4000\nHotel Operator,Self,T9100\nRESEARCHER,UBC,Y4000\nEXECUTIVE,CAMBER CORP.,C5130\nTULSA TECHNOLOGY CENTER,,Y4000\nVICE PRESIDENT,WILCO HESS LLC,F4000\nclerical,Sears,J1110\nattorney,state of colorado,X3000\nGEOLOGIST,RET.,X1200\nINVESTOR,CENTRE STREET REALTY,F4200\nAttorney,\"Genetics and Public Policy Center, Joh\",Y4000\nADMINISTRATOR,AUSTIN CAREER,Y4000\nINTERNATIONAL CONTRACTORS,,Y4000\nOwner,Wade Cleaners,Y4000\nConstruction,RCCI,Y4000\nOWNER,BERNSTEIN REAL ESTATE,F4000\nPRESIDENT,DALLAS YELLOW CAB,Y4000\nRetired,Retired School Adminstrator,X1200\nContaractor,Self employed,B1500\nExecutive,Parrott Jungle,F4000\nCHAIRMAN,THE WALT DISNEY COMPANY,C2000\nGARVEY SCHUB BARER,,K1000\n,INTERNATIONAL ATOMIC ENERGY AGENCY,E1000\nR M J TRANS INC,,T0000\nFINANCIAL CONSULTANT,P. F. S. INC.,Y4000\nPEDIATRIC & ADOLESCENT CARE,,H1130\nentrepreneur,\"Kraus Investments, LC\",Y4000\nRetail sales,\"Cheraw Merchant's Association\",Y4000\nBROYDRICK & ASSOC,,J1100\nEXECUTIVE,HILTON HOTELS CORP.,T9100\n\"HARDWICK, HAUSER & SEGREST\",,K1000\nAttorney,Karoub Assoc,J1200\nOrthopaedic Surgeon,\"UTHSC-SA, Dept of Orthopaedics\",H1130\nACTIVIST,SELF,J1100\nOPERATIONS DIRECTOR,MINNESOTA DFL PARTY,J1200\nCOMMUNITY ENGEGEMENT,MY HEALING PLACE,Y4000\nOwner,Busse Combat Knife Co,Y4000\nADVERTISING,PRUDENTIAL,F3300\nCENTRAL TEXAS DIVISION,,H2100\n\"ROSLYN L. BERGER, ESQUIRE\",SELF,Y4000\nTIRE DEALER,SERVICE TIRE TRUCK CTR,T2200\nSuperintendent,Champion Contracting Co.,Y4000\nEDINA HIGH SCHOOL,,X3500\nEDWARD L BLANCHARD AGENCY INC,,F3100\nDentist,Clare Macaulay DDS,H1400\nAdministrative Direc,Bergen PAC,Y4000\nBUREAU OF RECLAMATION,,Y4000\nJET NETWORKS,,Y4000\nPARTNER,SESQUEHANNA PARTNERS,F2100\nOwner,Landes Farms,A1000\nVice President,Manhattan Road And Bridge,B1000\nHEIN SMITH BERZEN,,K1000\nCONTRACTOR,HERMANSON CORPORATION,B3400\nAccounting,State of Washington,X3000\nCULLINAN ENGINEERING CO INC,,B4000\nProgrammer,Anheuser-Busch,J1200\nAttorney,Law Office of Louis Q Marett,K1000\nPHYSCIAN,HEART CONSULTANTS,Y4000\nWHITE KNIGHTS EMERGENCY AUTO ASST,,Y4000\nENTERTAINM,ROBERT BOYETT THEATRICAL,J1200\nPRESIDENT,THE BEAUTY EXCHANGE,J1200\nPhysician,Urologic Assoc Of Allentown,H1130\nSCHLEIFER INTERIORS INC,,Y4000\nWINDWARD LLC,,Y4000\nCRESSMAN & ASSOCIATES,,Y4000\nPresident/CEO,Flexcheck,F1000\nEngineer,Walter P Moore & Assoc,B4400\nDIRECTOR OF SE,CORNING INCORPORATED,C5110\nArchitect,\"Earth Tech, Inc\",E2000\nCONTRACTO,QUALITY SANDBLASTING INC.,Y4000\nOWNER DRIVER,SELF,T3100\nMARITIME PILOTS,SELF,T6200\nManufacturers Representative,\"Pulley, Reeves & Assoc\",Y4000\n\"OBERFIELD'S CONCRETE\",,B5100\nATTORNEY,D&Z,Y4000\nASSET MANAGER,SELF-EMPLOYED,Z9500\nV.P.,UNITED TECHNOLOGIES,D2000\nSEAVIEW ORTHOPEDICS,,H1130\nConsulting Engineer (Civil),Tony Humphrey Engineering,J1100\nATTORNEY,SPANGENBERG SHIBLEY & LIBER,K1000\nEXECUTIVE,DOHERTY ENTERPRISES,Y4000\nCONTRACTOR,THE HILL GROUP/SELF,Y4000\nretired,ex-money manager,J1200\nALLAU PRESS,,Y4000\nSales Rep III,Trinity Industries Inc.,T5200\nATTORNE,\"KEEL O'MALLEY TUNSTALL PLLC\",K1000\nPRESIDENT,STRASBURGER ENTERPRISES,Y4000\nPartner,Self,A0000\nA J AGAN INSURANCE AGENCY INC,,F3100\nCEO,WELDON STEAM GENERATOR,Y4000\nBROOKS CONSTRUCTION CO,,B1500\nCPA,\"Baker Tilly Virchow Krause, LLP\",F5100\nphysician,MBAA,Y4000\nBURGER SERVICES INC,,Y4000\nRN,ST. CLOUD HOSPITAL,H2100\nINTEGRAL CAPITOL PAR,,Y4000\nOWNER,\"PREMIER TECHNOLOGY, INC.\",M2300\nNORTHERN EAGLE BEVERAGE C,,G2850\nGOVERNMENTAL RELATIO,DUKE ENERGY,E1620\nPLUMBING CONT,GERALD KEENE PLUMBING,B3400\nPresident/CEO,\"Kasper Mortgage Capital, LLC\",F4600\nValidation Engineer,Intel,C5110\nATTORNEY,SONNENSCHEIN NATH,K2000\nINSURANCE EXECUTIVE,ING,F3300\nPRINCIPAL,WILLIAM BLAIR & COMPANY,F2300\n\"Vice President, Manager - Construction\",\"Granite Construction, Inc\",B5100\nATTORNEY,KITCHENS NEW LLC,Y4000\nAttorney,Shatl Lay et al,K1000\nAttorney,\"Gunderson, Sharp & Walke, LLP\",K1000\nNurse,Va Hospt Medical Bx,Y4000\n\"THE LAW OFFICE OF DOMINGO GARCIA, P\",,K1000\nANALYST,VA,Y4000\nConstruction Mgr.,\"DPR Construction, Inc.\",J1200\nClerk,Board of Elections,X3000\nINVESTMENT BANKER,KOHLBERG KRAVIS ROBERTS AND CO.,F2600\nCOMMISSIONER,NYC LTC,Y4000\nPresident,\"Sumit Telecom, Inc\",Y4000\nATTORNEY,\"O'CONNER AND HANNAH\",K2000\nEducation,Chippewa Valley Technical College,H5200\nOwner,\"Hasan, LLC\",K1000\nVICE PRESIDE,MITSUNAGA & ASSOCIATES,Y4000\nST ANNE HOSPICE,,H2100\nREEDY CREEK IMPROVEMENT DISTRIBUTOR,,Y4000\nPresident,Daytona Beverage,Y4000\nGIS Applications Developer,Harvard University,H5100\nMANAGING PARTNER,WORK MAGIC,Y4000\nConstruction,\"William A Hazel, Inc\",B1000\nExecutive Vice-Presi,Starmount Life Insurance,F3300\nWEAVER MOSEBACH,,K1000\nRETIRED,STANFORD UNIV,H5100\nTENNESSEE EMPLOYMENT SECURITY,,X3000\nAVP Claim Operation,Health Alliance Plan,F3200\nPARTNER,LANGLEY WILLIAM AND COMPANY,F5100\nPRESIDENT & CEO,ABC BANK,F1000\nPhysician,St Charles Community Health Centers,Y4000\nASSISTANT VICE,PEABODY HOTEL GROUP,T9100\nPROJECT MANAGER,SEPHORA,Y4000\nDoctor,United Rehabilitation Services Pc,Y4000\nWRITER/FILM PRODUCER,CRYSTAL MCCRARY ANTHONY PRODUCTIONS,Z9500\nExecutive Director,Verizon,C4100\nINVESTMENT MANAGEMENT,PPM AMERICA,C5140\nELECTRICAL ENGINEER,THE OHIO VALLEY COAL CO,E1210\nMd,\"Mirta Zorrilla Md,PA\",H1100\nSenior VP,Cornerstone Government Affiars,K2000\nOwner,Dernon Moving & Storage,Y4000\nOwner,B & B Sea Food Market & Cafe,G2350\nAFFORDABLE HOUSING,SELF,Z9500\nExecutive,\"May Tool & Die, Inc.\",M2300\nART DIRECTOR,GMMB,G5210\nPhysician,New Horizons,Y4000\nEXECUTIVE RECRUITER,\"THE HOLMAN GROUP, INC.\",Y4000\nUNIVERSAL FOODS CORPORATION,,G2100\nAttorney,\"Rucka, O'boyle, Lombardo & Mckenna\",K1000\nINTELLIGENCE ANALYST,OSS,Y4000\nCHRISTIAN DORIS INC,,Y4000\nATTORNEY,\"JOHN D. O'BRIEN\",K1000\nOPTHALMOLOG,FISHER-SWALE EYE CENTER,H1120\nCEO,SEATON CORP.,Y4000\nATTORNEY,GT/ATTORNEY,Y4000\nPHYSICIAN,GUNDERSEN-LUTHERAN,H3000\nPianist/piano teache,Self,G0000\nPHYSICIAN,ADVANCED DERMATOLOGIC SURGERY,H1130\nMANAGER,HOP ANGEL BRAUHAUS,Y4000\n\"DIRECTOR, MUNICIPAL SECURITIES\",\"UBS PAINEWEBBER, INC.\",F2100\nVP MARKETING APA,FORD - CHINA* FCO,T2100\nCEO,WR Hambrecht & Co,F2300\nTEACH,PENNSYLVANIA STATE EDUC. ASSN,L1300\nSELF/SEMI-RETIRED,THE GRAND CORP,Y4000\nCHAIRMAN & CEO,VORNADO REALTY TRUST,F4000\npsychotherapist,Self employed,H1110\nDirector,\"America's Agenda\",Y4000\nSOFTWARE CEO,SELF-EMPLOYED,C5120\nACCOUNTING,COOK AND CHEEK CPAS PLLC,F5100\nALCALDE & FAYE,,K2100\nVice-President,Braun Intertec,Y4000\nINDEPENDENT INSURANCE AGENT,FINANCIAL SECURITY GROUP INC.,Y4000\nIDAHO STATE SENATOR,,X3000\nMESSAGE BLASTER.COM,,J1200\nOccupational Therapi,Fairfield BOE,X3500\nLANTANA BOATYARD INC,,T6000\nReal estate broker,Commercial Properties Inc.,F4000\nDEVELOPER,THOMPSON LAND COMPANY,Y4000\nCOMPUTER PROGRAMMER,PIXAR ANIMATION STUDIOS,Z9500\nWOOD HOLDINGS INC,,Y4000\nBUILDING CONTRACTOR,SAM CONSTRUCTION,B1500\n\"NOEL G LAWRENCE, PA\",,Y4000\nPhysician,Midwest OTO-HNS PSC,H1130\nHealth Education Manager,Kaiser Permanente,H3700\nPHYSICIAN,GAINESVILLE RADIOLOGY,H1130\nConsultant,\"Burke, Inc\",Y4000\nCEO,SMOOPA,Y4000\nAttorney,MCM LLC,K1000\nResource Development Manager,United Way of Metropolitan Nashville,Z9500\nREAL ESTAT,LEESBURG COMMERCE CENTER,F4000\nREGISTERED REP.,SELF,Y4000\nFINANCE TRAINING,RETIRED,X1200\nD.O.,MARICOPA MEDICAL ASSOCIATION,Y4000\nPORTFOLIO MANAGER,HOTCHKIS AND WILEY,F2100\nDennis Ott Builders,,Y4000\nKODNER & WATKINS,,K1000\nSCIENTIST,UNIVERSITY OF COLORADO,Z9500\nVice Chairman,East Penn Manufacturing,M0000\nSenior Vice President,Capital Research & Management Co.,F2100\nVICE PRESIDENT,DEAN FOODS,A2000\nDirector Purchasing,ConAgra Foods,G2100\n\"C.W. WRIGHT CONSTRUCTION COMPANY, I\",,B1500\nTEACHER,ST. LUKE SCHOOL,Y4000\nCHIEF ACCOUNTING OFFICER,THIRD FEDERAL SAVINGS & LOAN,F1200\nInformation Requeste,\"Krendl Krendl Sachnoff & Way, PC\",K1000\nPARTNER,VARADERO @ PALMAS/PARTNER,Y4000\nCOMPU,GILDA REED CAMPAIGN COMMITTEE,Y4000\nJOHN F BECKER LLP,,Y4000\nJ C JOHNSON WAX,,M1300\nVP LATIN AMERICAN OPER,\"FESTONE, LLC\",Y4000\nSenior Marketing Con,The MONY Group/Trusted Advisors,F3100\nINVESTMENT BANKING,SKYE BANK INC.,Y4000\nHOOVER DRUG,,Y4000\nCOMMUNICATION DIRECTO,STATE OF UTAH,X3000\nPACIFIC TELESIS,,J7400\nAttorney,\"Farmer & Braun, P.A.\",K1000\nNon-Profit Administr,Coalition of Inst. Aged & Disabled,J1200\n\"RETIRED CONTRACTOR'S SPOUSE\",,B1000\nAUTO DEALER,BEACH FORD INC.,T2300\nAssistant Public Defender,Atlantic Judicial Circuit Public Defen,Y4000\nH & B DISTRIBUTING CO,,Y4000\nCUMBERLAND PACKING CORP,,M7100\nentertainment consultant,Compo Digital Group,Y4000\nAccountant,Eastlake Community Church,X7000\nARCHITECT,RJC ARCHITECTURE,B4200\nBanker,Canaccord Adams,J1200\nCONNOLLY HILLYR & WELCH,,Y4000\nCEO,INLAND REAL ESTATE,F4000\nTest Manager,Jeppesen,Y4000\nSVP & CFO,Triad,F4600\nN/A/HOMEMAKER,,F5300\nSelf Employed,Self-Employed,J1200\nOWNER,\"LOGAN CONTRACTORS SUPPLY, INC.\",G1200\nPOHLMAN & ASSOCIATES,,Y4000\nBREEDEN INSURANCE,,F3000\nADMIRAL RECYCLING INC,,M2400\nCEO,SUBWAY DEVELOPMENT CORP OF WASHINGTON,Y4000\nInvestment banking,Qatalyst,Y4000\nVice Chairman,Team Fishel,Y4000\nNET MED,,Y4000\nPRESIDENT,MATICH CO,B5100\nMACGREGOR MEDICAL ASSOC,,H0000\nIMPORTER/EXPORTER,SIX TREES LTD/IMPORTER/EXPORTER,Y4000\nBUSINESS MANAGER,BRADLEY MACHINERY,Y4000\nMILLCREEK FARMS,,A1000\nINVESTOR,\"WINDY CITY, INC.\",F2100\nDENTIST,DENTAL CARE ALLIANCE/DENTIST,H1400\nMANAGING PARTNER,THE ESPY COMPANY,F4600\nREAL ES,DROSTE DESIGN & DEVELOPMENT,F4100\nBUIL,BEN M. RADCLIFF CONTRACTORINC.,B1500\nCPA,Cawthron Wommack Coker PC,Y4000\nCPA,\"SCOTT CARNAHAN, CPA\",Y4000\nCOMMUNITY,PRINCIPAL FINANCIAL GROUP,F2100\nBRAVO HEALTH/CHAIRPERSON/CEO,,H3000\n\"PACIFIC SEAFOOD PROCESSORS A'N\",,G2350\nAttorney,Cleary Gottlieb Steen & Hamilton Llp,J1200\nAttorney,Regency Productions,Y4000\nLAWYER,MUSIC REPORTS,Y4000\nNJEF STAFF,,JE300\nEXECUTIVE,OFFICEWORKS,Y4000\nSHORE MORTGAGE,,J5400\nVP Sales,B Braun Medical Inc,H0000\nMD,CANCER CENTER OF THE CAROLINAS,Y4000\nSTATE OF CALIFORNIA/COMMISSIONER /B,,X3000\nPartner,Taurus Capital Partners,Y4000\nVP FED. GOV. AFFAIRS,QUALCOMM,C4300\nCAPLAN PARKING,,F4500\nSR VICE PRESIDENT-ADMINISTRATION,WARNER BROTHERS PICTURES,J5100\nCARDIOVASCULAR SURGICAL ASSCS,,H1130\nPRESIDEN,SOUTHERN MEDICAL EQUIPMENT,H3100\nSANTOS & DUTTON PA,,Y4000\nPHYSICIAN,CAROLINA UROLOGICAL ASSO.,H1130\nBunsiness Owner,Self-Employed,Y4000\nPRESIDE,INFINITY FUEL CELL AND HYD.,Y4000\nVP Branch Services,OSU FCU,F1300\nRUDNICK & WOLF,,K1000\nTHEODORE PRESSER CO,,Y4000\nAir Travel,Delta Aircraft Corp.,T1100\nORTHOPAEDIC SURGEON,TRIANGLE ORTHOPAEDICS,H1130\nPRESIDENT,NICOLET HARDWOODS,A5000\nEXECUTIVE,KUHLMANN DESIGN GROUP,Y4000\nTAX ATTORNEY,HOLLAND & HART LLP,K1000\nPartner,Ortegas on the Plaza,Y4000\nPRESIDENT,PROMEDICA,Y4000\nAttorney,Williams and Bailey,K1100\nPresident,The Restaurant Group Rio Associates,G2900\nBookkeeper,Esther S Baum,J1200\nCeo,Vacavalley Auto Body Incorporated,T2400\nC F O,MARKETING ANALYTICS,Y4000\nM,COUNCIL OF THE GREAT CITY SCHOOLS,X3500\nCHAIRMAN,B.S.C. DOWNARD HYDRAULICS,Y4000\nVeterinarian,Preston Road Animal Hospital,A4500\nFACULTY,UNIVERSITY OF SOUTHERN CALIFORNIA,Z9500\nadministrator,Harvard University,J1200\nHOMEMAKER/N/A,,F7000\nPHYSICIAN,CAREGIVERS OF SOUTH CAROLINA,Y4000\nManaging Partner,\"Lan Trust Real Estate Group, LLC\",F4000\nCPA,THE CARLYLE GROUP,F2600\nVP - Government Affairs,Pinnacle West,Y4000\nPresident & CEO,Ovation Pharma,Y4000\nBARTH,,Y4000\nSHREVEPORT RUBBER CO,,M1500\n\"SALSBURY'S DODGE CITY\",,T2300\nPresident,\"F. Tropea Building Contractor, LLC\",G1200\nWEALTH MGR,STARMONT ASSET MGMT LLC,Y4000\nExecutive,Sony Music,C2600\nCEO,Atlantis One Technologies,Y4000\nARTIST GALLERY,,Y4000\nPresident,Summit Bank,J9000\nAttorney/Partner,Morris Yorn,Y4000\nInsurance Executive,Gray & Company,F3100\nUNITED STATES SURGICAL CORP,,H4100\nADMINISTRATOR,\"HER PLACE, INC.\",Y4000\nCENTRAL AREA DEVELOPMENT ASSOC.,,Y4000\nEngineer,Dannenbaum Engineering Corp.,B4000\nWALTER/EDWARDS GROUP/LOBBYIST,,K2000\nALADDIN,,M4000\nPLANT MANAGER,SILGEN CONTAINERS,M7100\nPHYSICIAN,\"RONALD CROWELL, M.D., APC\",Y4000\nOwner/broker,Team Work Realty Inc.,F4200\nCEO,WHE ASSOCIATES,Y4000\nLAWYER,GREGORY AND ADAMS PC,Y4000\nPhysician,EmCare,H3000\nEARLE M CRAIQ JR CORP,,E1160\nExecutive Director,Oregon Beer & Wine Distributors Associ,G2850\nSENIOR VICE PRESIDENT OF PUBLIC AFFA,\"PREMIER, INC.\",H2000\nMARSHALL SHAFER & SPALDING,,F5100\nPhotography,Self-Employed,G5240\n\"NAT'L CHECK PROTECTION\",,Y4000\nSVP,Citi,F1100\nINFORMATION REQUESTED,,A2000\nNEW MEXICO TECH UNIVERSITY,,H5100\n\"MAJOR GOOLSBY'S INC\",,Y4000\nHEAD OF FEDERAL GOVT RELATION,AETNA,H3700\nHUSCH EPPENBERGER,,J1100\nSTATE OF MISSOURI/COMMUNICATIONS /,,X3000\nSedan Owner\\operator,Aba Luxury Sadan Service,Y4000\nEXECUTIV,YOUK MANAGEMENT & RESEARCH,Y4000\nENGINEER,TIRY ENGINEERING INC.,B4400\nV & W DAIRY,,A2000\nPRESIDENT,SPORTS REFERENCE LLC.,Y4000\nSOLE PROPRIETOR,JACK SIOUKAS,Y4000\n\"Director, Government\",Moroccan American Center,J5200\nREAL ESTATE,ORION PROPERTIES,Y4000\nVICE PRESIDENT,MONTGOMERY BENEFITS GROUP,Y4000\nNurse Anesthetist,Self employed,J1200\nPRESIDENT,CHILD TRENDS,J1200\nREALTOR,PREMIER PROPERTIES OF DOOR,F4000\nSurgeon,St. Cloud ENT Clinic,J1100\nSURGEON,MERCY HEALTH SYSTEM,H3700\nCEO,PATRICIAN MANAGEMENT/CEO,Y4000\nNetwork Executive,Viacom,C2000\nLUMBER INDUSTRY,SELF,A5000\n\"Gov't Relations\",The Cormac Group,K2000\nVICE PRESIDENT BUSINESS DEVELOPMENT,\"KOCH MINERALS, LLC\",E1160\nLOBBYIST,N.J.B.I.A.,Y4000\nEXECUTIVE,TIMBERLAND PARTNERS,Y4000\nA B HIRCHFELD PRINTING,,C1300\nPARTNER,\"BBCD HOTEL, LLC\",T9100\nOPERATIONS OFFICER,US NAVY,X5000\nUROLOGIST,VISALIA MEDICAL CLINIC INC.,H1130\nPartner,\"Pyszka, Blackmon, Levy, Mowers & Kelle\",Y4000\nOf Counsel,\"Friedman, Dumas, and Springwater\",K1000\nAttorney,Self,F4600\nBOB JOHNSONS PHARMACY INC.,,G4900\nFRONT DESK ASSOCIATE,COMFORT SUITES,T9100\nPRESIDENT,GREENSPUN CORP,F7000\nREPORTER,RIVERTOWNS ENTERPRISE,Y4000\nFilmmaker/Marketing Designer,Arthur Halpern,Y4000\nPHYSIC,CARDIOTHORACIC SURGERY GROUP,H1130\nPRESIDENT,REESMAN INVESTMENT CORPORATION,Y4000\nPresident & Chief Ex,Nanticoke Memorial Hospital,H2100\nSENIOR VICE,SOUTHWEST AIRLINES CO.,T1100\nREMMELE ENGINEERING,,Y4000\nED PERRY INC,,A2000\nCIVIC VOLUNTEER,,B3600\nCLASSROOM TEACHER,KODIAK ISLAND BOROUGH SCH DIST,L1300\nLAWYER,CLAYMAN & ROSENBERG,K1000\nCASE MA,LEE MEMORIAL HEALTH SYSTEMS,H0000\nphysician,Sfirm,Y4000\nSCREW MACHINE PRODUCTS CO IN,,M5000\nPRESIDENT,BCTGM INTERNATIONAL UNION,LG100\nN/A/REAL ESTATE CONSULTANT,,F4000\nEXECUTIVE,ENSTROM CANDIES INC.,G2200\nDIVISION MANAGER,\"JIM MORAN & ASSOCIATES, INC.\",T2300\nAttorney,U.S. Patent and Trademark Office,X3000\nDRIVER,GENUINE PARTS COMPANY,G4600\nPRESIDENT,ERISA SERVICES INC.,Y4000\nSECOND AMENDMENT,,Y4000\nRetailer of Building Materials,Stine Lumber Co,Z9500\nAdmin/Counselor,Council House,Y4000\nLegal Secretary,\"J, A, & M\",J1200\nGOVERNMENT AFFAIRS A,OTSUKA AMERICA PHARMACEUTICAL INC,Y4000\nState Senator,State of Kentucky,X3000\nMERRILL LYNCH CORPORATE COMMUN,,F2100\nADMIN,COLUMBUS PRESCRIPTON,H4100\nCOMMUN,AGUSTAWESTLAND NORTH AMERICA,Y4000\nEngineer,Rolls-Royce Corp,Y4000\nVP Corporate Affairs,AstraZeneca,J1200\n\"ASSOCIATE DEAN, EMERITAS\",,Y4000\nREAL ESTATE CONSULTING,DENHAM WOLF REAL ESTATE SERVICES,F4000\n0083 PRESIDENT AND C,FEDEX KINKOS,T7100\nMECCO INC,,Y4000\nOIL & GAS EXECUTIVE,\"VOYAGER OIL & GAS, INC\",Y4000\nPRESIDENT,SYS-TEC CORPORATION,Y4000\nprofessor of astrono,Columbia University,J7400\nPARTNER,POTOMAC ADVOCATES,G5210\nPresident,Delosa Software Inc,J1200\nPRINCIPAL,BUCHANAN PARTNERS LLC,Y4000\nPROFESSOR,UNIVERS NORTH CAROLI,Y4000\nLavor Researcher,SeIU,LG300\nEXECUTIVE,PENN MUTUAL LIFE INS. CO,F3300\nPRESIDENT AND CH,MORGAN MEGUIRE LLC,K2000\nNORTHWEST ONCOLOGY-HEMAT,,H1130\nBIOCHEMIST,EXPONENT,Z9500\nSELF EMPLO,HJM BROTHERS CORPORATION,Y4000\nattorney,NYS,X3000\nExecutive Director,Events of the Heart,X4000\nprofessor,NJCity Univ,Y4000\nBusiness Executive,\"Metabasis Therapeutics, Inc\",Y4000\nASSOCIATE VP,VAN SCOYOC,Y4000\nOwner/President,Hales Corners,Y4000\nTeacher,Richardson Indep. School District,X3500\nRETIRED CHAIRMAN AND CEO QUESTAR CORP,RETIRED,X1200\nPERLOW INVESTMENT CORP,,F0000\nEnergy Mgmnt,Westinghouse,E1300\nATTORNEY,SIROTE & PERMUTI,J5100\nFOUNDATION SCHOOLS,,H5100\nATTORNEY,RANDLE AND MCDANIEL,K1000\nSr Project Manager,Gilbane Building Company,B1000\nPARTNER,APEX LLC,Y4000\nSPACECRAFT ENGINEER,SGT INC,D2000\nTrainer/Writer,Self,J7400\nPUBLIC RELATIONS,TIGERCOMM LLC,Y4000\nPRINCIPAL MANAGEMENT,COUNTY OF RIVERSIDE,J1200\nAZTEC GROUP INC,,F1400\nFINANCIAL MUTUAL,NORTHWESTERN MUTUAL,Z9600\n\"VP, Acquisitions & Dispositions\",\"UDR, Inc\",F4100\nFARMER,HALBERT FARMS,A1000\nATTORNEY,\"RANIER LAW FIRM, LLC\",K1000\nLEESTOWN CO,,Y4000\nREALTOR,WALKER REAL ESTATE,F4000\nINVESTMENT MANAGER,STILLWATER INVESTMENT,Y4000\nAGENT,GROUP ASSOCIATES INC.,F3300\nMortgage Banker,Residential Mortgage Corp,F4600\nLEAR ASTRONICS,,Y4000\nTHE FLETCHER GROUP,,Y4000\nSenior Vice President,Wiley Rein LLP,K1000\n\"CROWELL & OWENS, ATTYS AT LAW\",,Y4000\nOwner,Pc Professional Corp,Y4000\nADMINISTRATIVE ASSISTANT,\"3 RIVERS TELEPHONE COOPERATIVE, INC.\",C4100\nATTORNEY,BOGAN LAW FIRM/ATTORNEY,K1000\nEQUIPMENT SALES &,EAST COAST HOIST,Y4000\nATTORNEY,\"ICE, MILLER\",K1100\nMANAG,SOUTHWEST DIAGNOSTICS IMAGING,Y4000\nEXECUTIVE,BERGEY WINDPOWER CO,E1500\nSMIDLEY MEETING,,A3000\nVP SALES,NATIONAL METALWARES,M2000\nAttorney,Lipsen & Hamberger,K2000\nDEVELOPMENT,AUSTRALIAN AGENCY FOR INTERNATIONAL DE,Z9500\nPresident,The Gallagher Group,J1100\nCAMPAINE,SCOTT HARPER FOR CONGRESS,Y4000\nU S GENERAL SERVICE,,Y4000\nTEACHER,None,H5100\nPRESIDENT,\"TEXAN TUBULAR SALES, LP\",Y4000\nSTATE SENATOR CHARLES,,J7400\nGovernment Worker,State of Connecticut,X3000\nPATTERN & JEWELRY MAKER,\"BLUM & FINK, INC/PATTERN & JEWELRY\",Y4000\nANESTHESIOLOGIST,ANESTHESIA CONSULTANTS OF VIRGINIA,H1130\nANESTHESIOLOGIST,TUPELO ANES GRP,H1130\nLABOR ARBITRATOR,SELF-EMPLOYED,G5200\nCONST. MGR.,PARIC CORPORATION,B1000\nOperations,Johnson & Johnson,H4000\nATTORNEY,\"SUFIAN & PASSAMANO, LLP\",X4000\nINSURANCE,FRANK CRYSTAL,Z9500\nPRESIDENT,THE DEBART GROUP,Y4000\nTelecom,Jas Network Inc.,Y4000\nDirector of Human Resources,Cascade County,X3000\nSR. VP - GOVT AFFAIRS,CLEAR CHANNEL,C2100\nDEPUTY FIELD MARSHALL,BEST BUY,G4200\nPrivate Educational Consu,Self employed,Y4000\nREPRESENTATIVE,HOWTING - ROBINSON & ASSOC.,Y4000\nSCIENCE ADVISOR,NATIONAL SCIENCE FOUNDATION,X3000\nCEO,ONE EQUITY PARTNERS,F2100\nREAL ESTATE MGR.,SELF EMPLOYED,J1200\nS ARK CLINIC FOR WOMEN,,H1100\nVOLUNTEER/HOMEMAKER,SELF EMPLOYED,Y1000\nEni & Capital Allocation Leader - Mark,GE Capital,M2300\nFINANCIAL CONSULTING,ASPECT MANAGEMENT CORP./FINANCIAL C,E1120\nPresident,Imagine Global LLC,Y4000\nPARTNER,THE BRIDGESPAN GROUP,G5270\nPACIFIC COMMERCIAL REALTY,,F4200\nPresident and CEO,Lakehead Constructors,B1500\nREAL ESTATE INVESTOR,DSF ADVISORS,F4000\nST JOE LAND COMPANY,,Y4000\nSHIVER DIESEL,,Y4000\nOwner,South Jersey Adjustment Co.,Y4000\nWILLIS & MUYS,,K1000\nAGENT,\"INDIAN HILLS ESTATES, INC.\",Y4000\nELK GROVE UNIFIED,,Y4000\nProfessional Speaker & T,\"Carothers, Bornefeld and\",Y4000\ngovt relations,Rich Feuer Group,K2000\nLUANN BOYLAN & ASSOCIATES,,J7400\nLawyer,\"Van Ness Feldman, PC\",K1000\nWESTERN & ASSOCIATES,,Y4000\nPhysician,\"Emergency Service Physicians, Austin T\",Y4000\nCo Founder,Hill-Townsend Capital,F0000\nSENIOR POLICY,SENATOR MEL MARTINEZ,Y4000\nMining Industry,self-employed,E1200\nSOMALOGIE,,Y4000\nPhilanthroppist,Information Requested,C5100\nNASSAN COUNTY POLICE DEPARTMENT,,X3200\nSHEARSON LEAMON,,F2100\nowner,\"Matrix Resources, Inc.\",Z9500\nReal Estate,\"BAN Cos, Inc.\",Y4000\nSELF EMPLOYED,HOLLIS PARK,Z9500\nTEACHER,JEFFERSON R-7 SCHOOLS,H5100\nPRODUCER,JUST MY LOAN OUT INC.,Y4000\nCHAIRMAN,ROLLINS JAMAICA,T9300\nTEHMAN BRTOS,,Y4000\nVALLEY HOSPITAL ASSN,,H2100\nJEAN DEVELOPMENT,,T9100\nPHYSICIAN,FAMILY PHYSICIANS CLINIC,H1100\nEXECUTIVE,THE NUIDAM GROUP,Y4000\nSELF EMPLOYED/ATTORNEY/LEGAL WRITER,,K1000\nPLANNED BUILDING SERVICES/ATTORNEY/,,K1000\nCEO,INSIKT,Y4000\nManager,Grosvenor Capital Management,J5100\nProject Director,National Academy of Public Admin,Y4000\nEXECUTIVE,ACLU,J9000\nSIEDLER & MCELVEN,,Y4000\nEXECUTIVE,COMMUNITY LOANS OF AMERICA,F1400\nBUSINESS DEVELOPMENT.,\"ALLEGIANT FINANCIAL GROUP, INC.\",Y4000\nATTORNEY,\"ROBIN FRAZER CLARK, P.C.\",Y4000\nLORI,,T1300\nROYALTON COAL,,E1210\nAccountant,Tampa General Hospital,H2100\nJ E SHEEHAN,,F2100\nPresident,Parsons Electric LLC,B3200\nCo-President,Jubitz Corp.,E1170\nCEO,\"GMT VENTURES, LLC\",G5270\nCEO,CERBERUS PARTNERS,F2600\nENGINEER,CH2M MILL,B4000\nGin Manager,Wade Gin Co,A1100\nSpouse of Contractor,Arlan Damper Corp,B3400\nCOO,FALCON GAS STORAGE CO.,E1100\nPhysician,Federal Drug Administration,Y4000\nCOMPUTER ENGINEER,LEVEL 3 COMMUNICATIONS LLC,C4000\nBanker,Citizens Bank of Northern California,F1100\nADVANCED LIFE UNDERWRITING,,Y4000\nTHE CAPSTREET GROUP/PARTNER/CFO,,Y4000\nBANK IV,,F1100\nAIR TRANSPORT,,T1000\nARENSTEIN & ASSOC,,J5100\nSMALL BUSINESS OWNER,INFORMATION REQUESTED PER BEST EFFORTS,G0000\nPRESIDENT,BUTTS MOTORS,T2310\nChairman and Foundin,The Rodel Charitable Foundation of Ari,J7400\nBUILDER,CRAWFORD PROPERTIES,F4000\nPHYSICIAN,ADVANCED OBSTETRICS,H1130\nKOZENY & MCCUBBIN,,K1000\nPHK ENGINEERS,,B4000\nFounder Food Website/Blog,Self-Employed,Z9500\nCARDIAC SURGEON ASSOC,,H1130\nPIMCO INC,,F2100\nATTORNEY,SCBIL/ATTORNEY,J1200\nCEO,\"UNIFIED INDUSTRIES, INC.\",C5130\n\"President, CEO\",Shanghai Kinghill Limited,G4000\nPresident & CEO,OIC International,Y4000\nLONCOLEMAN CORPORATION,,Y4000\nPRESIDENT,\"ADGEO, INC.\",G1000\nINFORMATION REQUESTE,SELF-EMPLOYED,G6400\nPresident,The Heinz Endowment,Y4000\nEXECUTIVE,CHOLLA CATTLE CO.,G2300\nNON-PROFIT ADMINISTRAT,WILD ALABAMA,Y4000\nMCCANDLESS MGT,,Y4000\nElectrical Engineer,Volt Technical Resources,Y4000\nWPP GROUP USA INC,,G5210\nRestaurateur,\"Grandma's Inc.\",G2900\nSpeech Pathologist,Boise Schools,Y4000\nRESEARCH SCIE,UNIVERSITY OF ALABAMA,H5100\nCEO,BELFOR,B3000\nPARTNER-LAW,FAEGRE & BENSON L.L.P.,K1000\nManaging Partner,King & Spalding,K1200\nAUTO DEALER,JAY HATFIELD CHEVROLET,T2300\nCHAIRMAN OF THE BOARD,,Y3000\nOWNER,I.A.C.,C5140\n\"Svp, Business Development\",\"Pandora Media, Inc\",Y4000\nMEDIA CONSULTANT,GODDARD GUNSTER,G5210\nCardiologist,\"Hed Ahmadpour, MD\",H1100\nMANDELL SCHWARTZ AND BOISDOR,,K1000\nTelecommunications C,Connex Technology,Y4000\nEYE SURGEON ASSOCIATES,,H1100\nINSUR,AMERICAN UNITED LIFE INS. CO.,F3300\nRETIRED,RETIRED - PACIFIC ENZYMES,J7150\nGmm/Sales Manager,Citicorp / Citibank,F1100\nPACIFIC SCIENTIFIC,,M2300\nVALLEY HEALTH SYSTEM,,H2100\n\"BINGAMON, HESS, COBLEN\",,K1000\nCONSULTANT,R. K. REBELE CONSULTANT,X1200\nU.S GOVERNMENT PROGRAM MANAGER,G.S.A,X3000\nALASKA RENT-A-CAR,,T2500\nPAMA DEVELOPMENT COMPA,,Y4000\nlaw professor,University of Texas at Austin,J1200\nAttorney,\"Morgan, Lewis & Bockius,\",K1000\nPharmaceutical Execu,\"C V Therapeutics, Inc\",J1200\nREALTOR,BALLESTARY REALTY,F4200\nHomemaker,Self,M1500\nSocial Worker,State of Connecticut,X3000\nCALDWELL COMPANY INC,,Y4000\nSCIENCE,FUN-SCIENCE ACADEMIC GROUP,J1200\nPRESIDENT/CEO,CORPORATE AMERICA FAMILY CREDIT UNION,F1300\n\"business, attorney\",\"G&K Services, Inc\",K1000\nCHAIRMAN,DART TRANSIR COMPANY,F3100\nCHAIRMAN AND EMERITIES,DODGE & COX/CHAIRMAN AND EMERITIES,F2100\nOwner,Corley Ranches Llc,A3000\nOWNER,LOVING HEARTS SOCIAL SERVICES,Y4000\nAttorney,\"Kavee, McClain & McGuire\",K1000\nAgent,Nation Air Insurance,F3100\nCAROLINA MEDICAL ASSOCIATES,,H1100\nBusiness Consultant,\"CH2M Hill, Inc\",B4000\nBUSINESS MANAG,COOK COUNTY ILLINOIS,X3000\nOFFICE OF THE PUBLIC OFFENDER,,Y4000\nIndustrial Psycholog,Cbia,Y4000\nGIRAUX FINE JEWELERS,,Y4000\nTHE WEGMANN CORPORATION,,B3400\nLURIE-LANGLOIS ASSOCIATES,,Y4000\nCOLONIAL WOODWORKERS INC,,J6200\nRETIRED,PACE UNIVERSITY,J7300\nTeacher,Knoxville College,H5100\nLIERTZMAN AND NEHLS,,Y4000\nVENTURE CAPITAL,HEALTHMARK VENTURES,J1100\nToll Collector,NJ Turnpike Authority,Y4000\nINVESTMEN,\"KILIMANJARO ADVISORS, LLC\",Y4000\nLIVING SCRIPTURES,,Y4000\nAUTO RETAILER,DALE WILLEY AUTOMOTIVE,T2000\nPRESIDENT,CHESAPEAKE REALTY,F4200\nOWNER,MEDVED AUTO-PLEX,T2300\nOWNER,AARONS RENTAL,G5300\n\"TOWER GROUP INT'L INC\",,G5200\nConsultant,Inland American,Y4000\nSociology Professor,Moravian College,H5100\nVULCAN,,B5100\nFACTORY WORKER,FEDERAL MOGUL,LM150\nVICE PRESIDENT,HERZOG CONSTRUCTION,B1000\nEXECUTIVE CHAIRMAN,RLTV,C2200\nFire Fighter / EMS,North Plainfield Fire Dept,L1400\nFINANCIAL,FULL SPECTRUM ELECTRONIC PAYMENT SERVI,Y4000\nPresident,Cannon Consultants Inc.,Y4000\nMULTINATIONAL BUSINESS ASSOCIATE,,K2000\n\"TAX MANAGER, ACOMA OIL\",SELF-EMPLOYED,G0000\nINFO REQUESTED PER BEST EFFORTS,INFO REQUESTED PER BEST EFFORT,K1000\nACCOUNTANT,PERLSON LLP,Y4000\nExecutive,Uniland Corp.,Y4000\nINSURANCE AGENT,ROBERTS INSURANCE,Y4000\nExecutive,\"BerePro, Inc.\",Y4000\nCOUNSEL TO COMMISSIO,FEDERAL MARITIME COMMISSION,X3000\nAttorney,Clingan Tull Easley PLLC,Y4000\nBUSINESS OWNER -- PRO,SELF-EMPLOYED,Y4000\nTCI OF OVERLAND PARK,,C2200\nMIRESCO INVESTMENT,,Y4000\nHOSPITAL EXEC,SSFHS INC.,J1100\nHARMON CITY ASSOCIATES,,Y4000\nBARON&BUDD,,K1000\nCommunity Relations,The Nature Conservancy,JE300\nGILDNER GAGNON & HOWE,,F2100\nVENDING MACHINES,,G4850\nFINE ART APPRAISER,,J5100\nCEO,W. ATTLEY BURPEE & CO.,Y4000\nHEALTH SERVI,UNIVERSITY OF MICHIGAN,H5100\nManager,Wamu,F1200\nLawyer,DWT,Y4000\nReal Estate Broker,\"Group, Inc.,The-Harmony\",F4200\npresident & ceo,B D Systems,F5100\nSales,Ross & Yerger,Y4000\nCAROLINAS MED GROU,,Y4000\nTeacher/Administrato,Caruso Middle School,Y4000\nDIRECTOR,METROPOLITAN COMMUNITY COLLEGE,H5100\nLAWYER,KVRG LAW,K1000\nEducator,Learning & Leadership in Fam.,J7400\nInvestment mgt,Self employed,F2100\nSOFTWARE GROUP,,C5120\nOccupational Therapi,Seattle Public Schoo,Y4000\nJB HANOVER & CO,,Y4000\nATTORNEY,NALCO COMPANY,E3000\nPRESIDENT,\"ACCLAMATION SYSTEMS, INC.\",Y4000\nAttorney,\"Klee, Tuchin, Bogdanoff & Stein LLP\",J5100\nSURGICAL EQUIP DIST,,Y4000\nReg Nurse,Leonaro Farmer trust,Y4000\nReal Estate Investme,RREEF / DB Real Estate,F4000\nWITT/THOMAS/HARRIS PRODUCTIONS,,C2300\nSELTZER MANAGEMENT GROUP INC,,Y4000\nDirector,Plaster & Assoc.,Y4000\nDiversity Consultant,AMB Industries,Y4000\nTRUCK SAFETY CONSULT,SELF-EMPLOYED,T3000\nMENTAL HEALTH NON PROFIT LEADER,NYAPRS,Y4000\nOHIO DIRECTOR,CORPORATION FOR SUPPORTIVE HOUSING,F4100\nINVE,BROCKWAY MORAN & PARTNERS INC.,F2600\nINSURANCE BROKER/LAW,MARSH,F5100\nRM DAVIS,,Y4000\nEXECUTIVE DIRECTOR,MINNESOTA STATE ARTS BOARD,Y4000\nMARKETING MANAGER,EWTN,C2100\nVOLM BAG CO,,Y4000\nGVA,,Y4000\nPRINCIPAL,REYES HOLDINGS LLC,G2850\n\"ED'S SUPPLY CO\",,Y4000\nPersonnel Recruiter,CG Card Co Ltd,Y4000\nINVESTMENT MANAGOR,LORD ABBETT FAMILY OF FUNDS,F2100\nANALYST,DIAMOND,Y4000\nCo-Owner,MVI Homecare,H3100\nMusician/Biologist,Self,C2600\nNVISION BUSINESS CONSULTING,,Y4000\nAttorney,CG&M Construction,B1500\nALLISON INC,,B2400\nRESPONSE ELECTRONICS,,C5000\nC.E.O.,BEACON INTERACTIVE SYSTEMS,F4100\nPRESIDENT,OHEKA MANAGEMENT CORP.,T9300\nVICE PRESIDENT,MIDDLETOWN MUSIC,Y4000\nINVESTMENTS,INTERLINK,Y4000\nALLMERICA FINANCIAL,,F3300\nLORAL MICROWAVE NARDA,,D3000\nNAT PEST MANAGEMENT ASSOCIATION,,G5700\nRetired,Univ Of Carolina,H5100\nCOMINCO ALASKA,,Y4000\nPresident,MS Society,Y4000\nOPHTHALMOLGIST,OHSU,H5150\nMECHANIC,CUMMINGS N POWER LLC,Y4000\nChef,Franklin Hills Country Club,G6100\nBANKER,ALLEN & COMPANY LLC,F2300\nEDMOR ELECTRIC INC,,B3200\n\"ODOM'S TENNESSEE PRIDE SAUSAGE INC\",,G2300\nCONSULTANT,USCAN 2007 SL,Y4000\nsales,Brittany Sales,Y4000\nNOSSAMAN GUNTHER LLP/ATTORNEY/LOBBY,,J7400\nOWNER,CRORECH AUTOMOTIVE,Y4000\n\"Admin. Ass't.\",Ingalls Power Products,Y4000\nPRESIDENT,PACIFIC EQUITY MANAGEMENT,J1100\nMEDICAL DOCTOR,DR. JAMES TOWER,Y4000\nCOUNTY COMMISSIONE,LAFAYETTE COUNTY,X3000\nOwner,Isis Development Incorporated,Y4000\nMATH AND READING INSTRUCTOR,SELF,Y4000\n\"Wife, mother, homema\",\"Husband, Kyle Blake\",Y4000\nSCHOOR DE PALMA,,B4400\nMEM. DIRECTOR,CA DUMP TRUCK OWNERS ASSOC.,Y4000\nAttorney,Georgia-Pacific,A5000\nENGINEE,BOLT TECHNOLOGY CORPORATION,Y4000\nCOMPUTER ANALYST,FANNIE MAE,F4600\n\"ZAYDA'S DELI\",,G2400\nATTORNEY,BONE MCALLESTER NORTON PLLC,K1000\nDoctor,Retired,H1100\nORLANDO CUB,,Y4000\nATTORNEY,\"MAYER, BROWN, ROWE & MAUR\",K1200\nDR NASIM ASHRAF,,H1100\nSr Vice President,H W Lochner Inc,Y4000\n,HUNTINGTON BEACH UNION HIGH SCHOOL,J1200\n\"VICE PRESIDENT, FLEET SUPPORT\",EXELON CORPORATION,E1600\nNAID INC,,Y4000\nATTORNEY,EHRLICH PLEDGERLAW,Y4000\nATTORNE,ARTHUR H. DUMAS LAW OFFICES,K1000\nCHAIRMAN,\"COZEN O'CONNER\",K1000\nself emloyed,self employed,G0000\nBehavioral Health Service Line Adminis,JPS Health Network,H2100\nAttorney,Miller Brown & Dannis,J1200\nEDUCATION,CABBRAS SCHOOLS,Y4000\nBrown Investment,,F0000\nReal Estate,MRI Creative,F4000\nHALEY PORCHIO SA,,K1000\nR A L REALTY LIMITED,,F4200\nAttorney,Goldberg Law Offices,K1000\nPRESIDENT,\"COLUMBIA INVESTMENTS, LTD.\",F4000\nGOVT. RELATIONS,\"RONALD L. BOOK, P.A.\",K2000\nPres. Global Mktg. &,Kraft North America,A1300\nTHE E I KANE CO,,Y4000\nACCIDENT & INJURY PAIN CENTER GROUP,,H2000\nCongress,State of Pennsylvania,X3000\nCARON AUTO WORKS,,T2400\nSTAR THEATRE,,Y4000\nPresident,Eagle Distributing Co,G2850\nHOMEMAKER,HOMEMAKER,H1710\nVP CHIEF RISK OFFICER,EXELON,E1600\nInformation Requeste,City of Pasadena,X3000\nCONICA,FORMERLY W,Y4000\nC-CORE CONSULTING GROUP,SELF EMPLOYEED,J1100\nSALES,CHICAGO GAME CO.,G2500\nSELF-EMPLOYED,JUSTICE WORLD CORPORATION,Y4000\nVISION HEALTH MGMT,,H1100\nJudge,Delaware County,X3000\nPRESIDENT,HUIZENGA CAPITAL MGMT.,F2100\nORTHOPAEDIC SURGEON,COVENANT HEALTHCARE,H1130\nFinancial Analyst,Computer Sciences Corporation,C5130\nASSOCIATE GENERAL COUNSEL,\"COMPASS BANCSHARES, INC.\",F1100\nNONPROFIT MANAGEMENT,WARNER FOUNDATION,J7400\nAdministrator,Cathedral High Sch.,Y4000\nPhysician,\"Crystal River Psychiatric Group, PC\",H1100\nNOT EMPLOYED,NONE,G4700\nCEO,PERSEUS LLC,F2500\nOWNER,PANNU TRUCK LINES,T3100\nMINI-STORAGE OWNER,,Y4000\nPhysician,\"KMB,sC\",Y4000\nDENTIST,DESAI DENTAL SCHOOL,H1400\nFLORENCE MEDICAL,,H1130\nMINE ENGINEER,SELF-EMPLOYED,G0000\nANIMAL INSURANCE,HARDING & HARDING,A4000\nPublisher,Honolulu Publishing Co.,C1100\nCONSULTANT,\"NPV DEVELOPMENT, LLC\",Y4000\nSIEMENS,,J7400\nOperations Manager,Goldman Sachs,F2300\nDYMACOL CORPORATION,,F5200\nPRESIDENT,LOURENCO CONSTRUCTION,B1500\nChairman,The Limited/Intimate Brands Inc.,G4100\nNETWAVE DE P R,,C5130\nRetail Director,Citizens Bank of Pennsylvania,F1100\nLEARNING SPECIALIST,COLUMBIA UNIVERSITY,H5100\nWORRELL PASSANANTI,,Y4000\nBUI,PALMETTO S. TRADITIONAL HMS LLC,B2000\nVOLUNTEER/BOARD MEMBER/PARK ATTENDANT,\"VA'S EXPLORE PARK/VOLUNTEER/BOARD M\",Y4000\nHORKEY OIL COMPANY,,E1100\nInvestor,PCRS Corp,Y4000\n\"VP, CORPORATE LEGAL\",AETNA INC.,H3700\nGovernment Affairs,Alston & Bird,K2000\nProject Coordinator,Enlace,J1200\nMANAGER,US DOE,Z9500\nDIRECTOR OF HUMAN RES,EARTHLINK INC,C5140\nEXE OFFICE OF THE PRES,,J1200\nADVERTISING SALES,MICROSOFT,C5120\nGreene & Letts,,K1000\nRETAIL INVESTOR,SELF-EMPLOYED,Y4000\nAttorney,\"Makchall, Crounse & Moore\",K1000\nCONTROLLER,LCTA,Z9500\nCEO,PINNACLE WEST,E1600\nFINANCIAL ANALYSIS,SELF-EMPLOYED,Y4000\nREAL PROPERTY MANAGER,,F4200\nPRITCHARD BUILDING,,Y4000\nSELF-EMPLOYED,ATLAS FENCE COMPANY,Y4000\nVICE CHAIRMAN/CHIEF OPERATING OFFICER,BANK OF THE WEST,F1100\nOwner,\"Jersey Mike's\",J1200\nSR. VICE PRESIDENT,FIRST TRANSIT,Y4000\nEXECUTIVE VICE PRESIDENT,\"BNY MELLON, INC.\",F2100\nFLUOR-DANIEL,,B1000\n2ND LETTER MAILED,BEST EFFORTS,Y2000\nBUSINESS EXECUTIVE,\"CENVIL RECREATION, INC\",F4000\nSAN DIEGO MARINE EXCH,,T6000\nNephrologist,Botsford Kidney Center,H1130\nCio,Perot Systems Corporation,C5130\nIT R&D,IDA,J1200\nCLEAN ENERGY ANALYST,STATE OF NEW MEXICO,X3000\nCOLLEGE PROFESSO,GONZAGA UNIVERSITY,J1200\nOwner,\"Checks Cashed, Etc.\",F1400\nGEN CONTRACTOR,T N CONST. CO. INC.,Y4000\nSPORTS PHYSICAL THERAPY CLIN,ORTHO,H1700\nHENRY FISCHER BUILDING,,Y4000\nCEO,SHERMAN DIXIE CONCRETE,B5100\nFILM & VIDEO EMPLOYER,FREELANCE,J1200\nPRESIDENT,ALWAN PHARMACY,H1750\nPARTNER,CIPOLLA SZIKLAY LLC,Y4000\nGERBER PLUMBING FIXTURES CORP,,J5100\nEASY WAY INC,,G5300\nMANAGER,\"GEORGE'S, INC/MANAGER\",G2900\nOwner,Sugar Hill Rest.,G2900\nPolitical Hack,National Democratic Institute,J1200\nManager,Public Financial Management,J5200\nRETIRED,FAMILY SERVICE,H6000\nAttorney,Constanine Cannon LLP,K2000\nTRUTH SEEKER,CSC,M2300\nRealtor,Realty World-John Horton & A,F4200\nINFO SPACE,,C5140\nCPA,BOISVENU & COMPANY PC,Y4000\nOWNER,FRAUENSHUH CONST/OWNER,F4000\nTAX CONSULTANT,\"ERNEST & YOUNG, LLP\",F5100\nHOGLAND BOGERT BORTERO,,Y4000\nVP SHARED,\"DOM RESOURCES SVCS, INC.\",E1620\nTHYBONY,,Y4000\nBusiness Representat,IBEW Local 11,J1200\nC.E.O.,PROPHASE LABS,Y4000\nPresident,Link It Software,C5120\nAttorney,dgm partners,J1200\nBROKER,Wade Investments,Y4000\nTHE TODD COMPANIES,,Y4000\nINFO REQ,INFO REQ,H3200\nRetailer,Dandelions Flowers & Gifts LLC,A8000\nIntelligence Analyst,NCIS,Y4000\nProfessor,Montana State U,Y4000\nPRESIDENT AND CEO,CCS MEDICAL,H4100\nOwner/ Partner,Worldwide Brands Inc,Y4000\nCFO &,CT GENERAL LIFE INSURANCE CO,F3100\nTHE ARC OF NO VA,,Y4000\nATTO,\"HORGAN, ROSEN, BECKHAM & COREN\",Y4000\nHIGHWAY CONTRACTOR,HINKLE CONTRACTING CORP.,B1000\nlibrarian,Danville Area School,Y4000\nCollege Professor,Alma College,Z9500\n\"FACILITATOR, EDUCATOR\",VITAL SYSTEMS,Z9500\nManaging Director,Tudor Investment Corp,F2700\nPRIVACY ANALYST,AXIOM RESOURCE,H4300\nOWNER,ADV. CERAMICS RESEARCH,Y4000\nSenior Fed Policy Ad,Mosaic Federal Affairs,K2000\n\"VP, WINE\",SWS OF ILLINOIS,G2850\nOWNER,PAYNER RANCH,A3000\nHALLMARK PROPERTIES INC,,F4200\nPHYSICIAN,THE HITCHCOCK CLINIC,H1100\nLawyer,Okun Holdings,K1100\nMEDICAL DOCTOR,NEUROLOGY PEDIATRIC NEUROLOGY,Y4000\nIT MANAGER,FEDERAL GOVERNMENT,X3000\nBILTMORE GROUP,,Y4000\nAttorney,\"LAGOS, LAGOS & RUSH\",K1000\nCEO,\"Liberty Global, Inc\",C2200\nGen Man,Flexcar,Y4000\n\"NAT'L COMMUNITY SERVICES\",,Y4000\nAsst. Exec. Director,American Board Of Ob/Gyn,H1130\nVolunteer,Self-Employed,Y1000\nRICHARDSON INDUSTRY,,Y4000\nPROVOST & SENIOR VP/PROFESSOR,TEXAS WESLEYAN UNIVERSITY/PROVOST &,H5100\nPRESIDENT & CEO,NATIONAL HISPANIC MEDICAL ASSOCIATION,J7500\nPublic Defender,Sate Of Wisconsin,Y4000\nPUBLIC  DIRECTOR,JOHN A HARTFORD FND/PUBLIC  DIRECTO,Y4000\nVAN GUARD CELLUAR TELEPHONE,,C4300\nCONVEYOR SERVICES,,Y4000\nFINANCIAL SERVICES,SELF,F4600\nPRESIDENT,BLUE LINE ADVISORS,J1100\nPRESIDENT / OWNER,\"PINNACLE NORTHEAST, LLC\",Y4000\nA J KUZNESKI,,F3100\nTugboat Engineer,G & H Towing,JE300\nSNAVELY MANAGEMENT,,Y4000\nSOFTWARE EN,SMARTWEB TECHNOLOGY INC,Y4000\nCEO,LAMONT DIGITAL SYSTEMS,Z9500\nGOVT AF,CALVERT HEALTH PARTNERS LLC,Y4000\nPRIVATE EQUITY INVESTOR,AEA INVESTORS LP,F2100\nREAL ESTATE AGENT,LEHBROS LIMITED,F4500\nCPA / ACCOUNTANT,DELOITTE AND TOUCHE LLP,F5100\nPresident,H.D. Lee Corp.,Y4000\nPRESIDENT,\"L. G. EVERIST, INC.\",B5100\nPRES,CRESCENT BEER DISTRIBUTOR INC.,G2850\nPARALEGAL,KRIVIT & KRIVIT PC,Y4000\nATLANTIC HOMES INC,,B2000\nCOUNCILLOR,Self Employed,Y4000\nSALES,HPC FOOD SERVICE,Y4000\nANTHONY L JORDAN,,Y4000\nTOPEKA FIRE DEPT,,L1400\nProfessor,\"University of Californa, Riverside\",J7400\nCOMMUNICATIONS DIRECTOR,PHRMA,H4300\nRED CORP,,Y4000\nInsurance Agent,\"Myers, Benwer Corporation\",F3100\nOWNER,NOLIN MANUFACTURING,Y4000\nRETIR,NEW YORK CITY FIRE DEPARTMENT,X3000\nAdministrator,\"St. Mary's Medical Center of Campbell\",H2100\n\"PRESIDENT, DUKE ENERGY SC\",DUKE ENERGY CORPORATION,E1620\nOwner,Driscoll Financial Services,F0000\nHARLEY DAVIDSON MOTOR CORP,,T8100\nPORETZ GROUP,,G5210\nMATHEMATICIAN,INSTITUTE FOR ADVANCED STUDY,Z9500\nOWNER,THE ARNOLD AGENCY,Y4000\n\"PATTON, BOGGS & BLOW\",,JH100\nGENERAL CONTR,FAST CONSTRUCTION LLC,B1500\nEXECUTIVE VICE PRESIDENT,JOHN DEERE,A4200\nGov.BIologist/Colleg,Nih/G.WASHINGTON UNI,X3000\nCHAIRMAN,LUCAS PETROLEUM INC,E1120\nCIMARRON MACHINE SERVICES INC,,Y4000\nTeacher,Front Range Com College,J1200\nDIRECTO,CURTIS WRIGHT CONTROLS INC.,Y4000\nGRAMERCY COMMUNICATIONS,,Y4000\nPROFESSOR,\"UNIVERSITY OF VIRGINIA, SCHOOL OF LAW\",H5170\nField Coordinator,Castillo for Congress,J1200\nDON BEYER MOTORS INC.,,Z1200\nOwner,\"ServiceMaster of Goleta, CA\",G1000\nOwner,\"J and J Solutions Rocky Mouttain, LLC\",Y4000\nEXECUTIVE,SKYPE,C5140\nDealer,Holloway Buick Pontiac GMC Cadillac,T2300\nIT MANAGER,SARA LEE CORPORATION,G2100\n\"PAUL, HASTINGS, ETC\",,K1000\nExecutive,Operating Enhancements,Y4000\nWISCONSIN CENTRAL LTD,,T0000\nUNITED PARCEL SVC OF AMERICA IN,,T7100\nNurse Prat.,Rae Barton Diabetes,J1200\nWriter,Costar,J1200\nJOS DECOSIMO & CO,,Y4000\n,JONES AND ASSOCIATES COMMUNICATION,Y4000\nEXECUTIVE,AQUA SOLUTIONS,Y4000\nVenture capitalist,Boston Capital,F4000\nPRESIDENT,INTERNATIONAL COUNCIL OF AIR SHOWS,Y4000\nAttorney,Davis & Gugerty,K1000\nOil Field,Self,E1150\nAdministrative Assistant,Unum Insurance Group,F3100\nforestry,Grayback,Y4000\nPRESIDENT,CEMCO INC.,B5100\nPRESIDENT,MOUNTAINEER FABRICATORS,Y4000\nAMIGAS,,E1100\nADMINISTRATOR,CITY OF SAN JOSE,X3000\nATTORNEY,\"KATZ, VICTOR & YOLLES\",J5100\nATTORNEY,MCDERMOTT WILL EMERY,K1200\nLAURAL CONSTRUCTION INC,,B1500\nCORPORATE EXECUTIVE BOARD,,G0000\nRESCO RENTS,,Y4000\nRAND MCNALLY AND COMPANY,,C1300\nMORTGAGE BANKER,PRIME MORTGAGE,F4600\nORAL SURGEON,VA MEDICAL CENTER,H1400\nM D C HOLDINGS INC,,J5100\nConsultant,\"Bartlett, Bendall & Kade\",K2000\nGA STATE REP - DISTRICT 59,STATE OF GA,X3000\nInformation Requeste,DBA Lightspeed Com. Arts,Y4000\nANESTHESIOLOGIST,ANESTH SERVICES,H1130\nMD,Mahesh R Dave Nalini M Dave MD and As,H1100\nPUBLIC RELATIONS,WAGGONER EDSTROM,Y4000\nV.P. Federal Affairs,CIGNA Corp.,K2000\nMIA TRANSATLANTIC,SWS FLORIDA SOUTH/MIA TRANSATLANTIC,G2850\nEASTERN PULMONARY SERVICES,,Y4000\nEDWARD SAM,,Y4000\nFinancial Manager,Discovery Communications LLC,C2200\nPRESIDENT,WALDEN MEDIA/PRESIDENT,C2400\nProfessor,James H. Quillen Col,Y4000\nSENTINEL ADVISORS LLC,,Y4000\nTEACHER,CCSF,Y4000\nPUBLIC RELATIONS,,F2700\nOBSTETRICIAN/GYNECOLOGIST,SELF-EMPLOYED,H1130\nCEO / President,\"Safety Kleen, Inc\",Y4000\nWESTERN CULLEN HAYES INC,,T5200\nPRODUCT MGR.,SORAA,Y4000\nARCHITECT,RONALD SCHMIDT & ASSOC.,B4200\nMONROE COMMUNICATIONS,,Y4000\nVENTURE TAPE CORP,,Y4000\nSTUDENT,UNIV OF BRITISH COLUMBIA,H5100\nENGINEER,ORTH RODGERS,B1000\nSALESMAN,ADD MASTER CORP.,Y4000\n\"MARTINEZ O'DELL CALABRIA &\",,Y4000\nDirector of Marketin,Jefferson Dental Clinics,H1400\nVenture Capital,Arizona Growth Parterners,F2500\nPRESIDENT,CONSUMER DIRECT PERSONAL CARE,Y4000\nIT,Suny,H5100\nAttorney,Metropolitan Jewish Health System,H0000\nAttorney,Brown and Bain PA,K1000\nCEO,Long Island GLBT Services Network,Y4000\nMAYO FOUND,,H1130\nCHAIRM,OPPENHEIMER MGT. CORPORATION,F2100\nChairman,\"Newmark & Company Real Estate, Inc\",F4000\nRPH FIACP,DORNEYVILLE PHARMACY,H1750\nBOONE COUNTY REPUBLICAN CENTRA,,J1100\nCLARION HOTEL,,T9100\nMARTEL INC./PRESIDENT/ GENERAL MANA,,Y4000\nAccountant,Bentley Hunt Corp,J1200\nAssistant Vice President,Credit Suisse,F2100\nengineer,\"J2 Engineering, Inc.\",J1200\nPHYSICIAN,KAISER PERMANTE,H3700\nORTHOPAEDIC SURGEON,HAND SURGERY LTD,H1130\n\"LOWE'S CORPORATION\",,F3100\nnew Video,,Y4000\nEXECUTIVE DIRE,MCKESSON CORPORATION,H4400\nRADIOLOGICAL TECHNOL,SOUTH ARKANSAS ENT. CLINIC,Y4000\n\"SVP, MANAGING DIR ENP\",EXELON CORP,E1600\northopedic surgeon,Self Employed,H1130\nEXECUTIVE DIRECTOR TRANS.,NEXTERA ENERGY,E1600\nOWNER,PR PROPERTIES,F4000\nU S TECHNOLOGY,,B1500\nTHE MAYFORTH GROUP,,K2000\nPSYCHOLOGY RESEARCH PROFESSOR,UNIV OF SOUTHERN CALIFORNIA/PSYCHOL,H5100\nReal Estate Investments,Kennedy Wilson,F4000\nCytogeneticist,University Of Arkansas For Medical Sci,H5150\nATTORNEY,DAVID LOCKARD & ASSOCIATES,K1000\nInvestment Banker,MH Davidson & Co. LLC,F2100\nAL EMER RM ADMIN SERVICES,,H1100\nVIEN DONG RESTAURANTS INC,,G2900\nHybridizer,Self Employed,J1200\nArtistic Director,Boston Center for the Arts,Y4000\nAFFORDABLE HOUSING DEVELOPER,POAH,Y4000\nJWB HOLDINGS LLC PETROTECH RESOURCE,,Y4000\nADMISSIONS ANALYST,VANDERBILT UNIVERSITY,Z9500\nMUSEUM OF PHOTOGRAPHIC ART,,X4200\nCO OWNER,F. MEDINA & ASSOC INC,Y4000\nPresident,\"O'Donnell Agency, Inc.\",F3100\nPRESIDENT,CASTAING AND ASSOC.,X1200\nFANCY THORNE FRAYTAK,,Y4000\nRETIRED,KIA-TENIOR,Y4000\nEXECUTIVE,RAECHELS NETWORK,Y4000\nRADIOLOGIST,ROCK VALLEY RADIOLOGY/RADIOLOGIST,H1130\nTV Producer,New Vision Communications,Y4000\nCARPENTER,RETIRED,X1200\nVICE PRESIDENT,VON SKOYOC ASSOC,K2000\nReal Estate,\"Paradigm Properties, LLC\",F4000\nDIRECTOR OF IT,CON ED ENERGY,E1620\nATTORNEY,SLATTER MARINO ROBERTS,Y4000\nDIR. OF SOFTWARE DEVELO,PEOPLEADMIN,Y4000\nprofessor,Harvard University,J7500\nDELRAN BUILDERS,,Y4000\nInformation Requeste,Self employed,C1300\nBLUE CROSS AND BLUE SHIELD OF FLORI,,F3200\nRETIRED,STEVE MORRIS DEFENSIVE DRIVING SCHOOL,Y4000\nCABLEVISON SYSTEMS CORP,,C2200\nPARTNER,TURNER LAND COMPANY LP,Y4000\nCEO,Federal Express,T7100\nProgrammer,Fiserv,G5200\nRealitor,Samuel Tong School,Y4000\nASSISTANT DEA,MIDWESTERN UNIVERSITY,H5100\nREAL ESTATE EXECUTIVE,STALLER ASSOCIATES,Y4000\nPrincipal,\"Madison Associates, LLC\",Y4000\nOWNER,LANDMARK STAFFING RESOURCES,G5250\nPRESIDENT,\"BECK'S SUPERIOR HYBRIDS, INC.\",A1000\nCEO,UNIFUND,F1400\nACCOUNTING,WTAS,Y4000\nBoard Member,Public Srvice Enterprise Group,F2400\nMANAGING DIRECTOR & EXECUTIVE PRODUCER,PLUMBAGO PRODUCTIONS LLC,Y4000\nENGINEER,P.N.D ENGINEERS INC.,B4400\nOwner,Munz Design,Y4000\nCHIEF EXECUTIVE OFFIC,PNM RESOURCES,E1620\nPresident,Prommesa Usa,Y4000\n\"Exec Dir, Comm\",American Bankers Association,F1100\nGUTHRIE TRAILER & SALES INC,,T3200\nAdmistration,PA House of Representative,Y4000\nR.T.,Fairview Riverside Hospital,H2100\nCPA,HEATHER SANGUINETTI CAMIN,F5100\nDEMENT PRINTING,,Y4000\nProducer,Chopped,Y4000\nSR. V.P. OF FINANCE,AOL-TIME WARNER,C2000\nSELF INC,,Y4000\nChancellor,Eastern Iowa Community College Distric,H5100\nBUSINESS OWNER,CMA FINANCIAL CORPORATION/BUSINESS,F0000\nUMASS MEMORIAL HEALTH CARE,,H0000\nSecurities Analyst,Lehman Bros,F2100\nASSOCIATE SCIENTIST,SANOFI PASTEUR,H4300\nVICE P,METRO COMMERCIAL REAL ESTATE,F4000\nDIRECTOR,OXBOW CARBON & MINERALS LLC,E1200\nn.a.,Homemaker,F2100\nPhelps Industries,chairman,J1200\nAttorney,Honigman Miller Schwartz and Cohn,K1000\nEXECUTIVE,BROOKVILLE EQUIPMENT,Y4000\nATTORNEY,CATLYN,F0000\nPRESIDENT,BEAL CO,F4100\nREGIONAL VICE PRESIDENT,\"REPUBLIC FINANCE, LLC\",F1400\nPhysician,Pediatrix Medical Group of GA,H1100\nPresident,Health Care Intranet Tech,H0000\nFLANAGAN & ASSOC,,Y4000\nDealership Employee,Dan Vaden Chevrolet Cadillac,T2300\nPHYSICIAN,\"KATHRYN J. WOOD,M.D., P.A.\",H1100\nTALENT MANAGEMENT,VINCENT CIRRINCIONE ASSOCIATES,Y4000\n\"Managing Director, R\",GE Infrastructure,M2300\nConsultant,James Gregory & Associates,Y4000\nLAWYER,GADDY JARAMILLO,Z9500\nLAKE FOREST COMMUNITY ASSOC,,G6100\nEXECUTIVE,CARBOLINE,Y4000\nPolitical,Self - Campaign Products Of The Rockie,G5260\nVP Social Media,Edelman,G5210\nROBERT KACH GROUP,,Y4000\nEXEC,STUTTERING FOUNDATION OF AMERI,Y4000\n\"VP, Human Resources\",Carmeuse Lime & Stone,B5100\nMANHATTAN REALTY GROUP,,F4200\nGREEN RIVER SEED & SOD INC,,A4000\nPres,Moretrench American Corp,B1000\nAttorney,Wiles Boyle Burkholder & Bringardner L,K1000\nOWNER,\"BELMONT NURSERY, INC.\",A8000\nDANVILLE DERMATOLOGY ASSOCIATES,,H1130\nPLAINS CAPITAL BANK/CHAIRMAN/CENTRA,,F1000\nCATERING COLLAB,,Y4000\nACCOUNTANT,BCBS,F3200\nFUTURES TRADER,SELF EMPLOYED,J1200\nOwner,R.K. Drywall,B3000\nChemist,Brown University,H5100\nMILBANK TWEED,,J7400\nAttorney,Hangley Aronchick  et al,K1000\nCEO,BRADFORD HEALTH,H3200\nSite Manager,Shaw Group,B1000\nPRESIDENT,MINDEN EXCHANGE BANK,F1000\nFOUNDATION MANAGER,RUTGERS UNIVERSITY,H5100\nCP,JESTER & REED P C,F5100\nPRESIDENT,EECU CREDIT UNION,F1300\nPROFESSOR,WEBSTER UNIVERSITY,J7400\nTEACHER,UNIV. OF MASS.,H5100\nOMEGA REST,,Y4000\nOperating Engineer,Chellino Crane,LB100\nJARDEL ENT INC,,Y4000\nAT HOME,,E1220\nENVIR REGU,UNIVERSITY OF CALIFORNIA,H5100\nBeer Distrubution,North Coast Distrubuting,G2850\nCOLLINS ENGINEERING INC,,B4400\nAttorney,McKenzie & Peden,K1000\nDJ/Writer,Self employed,Y4000\nPresident,Atk Service,Y4000\nBusiness Consultant,TFG Associates Inc,Y4000\n\"Director, Corporate Compliance\",\"Argonaut Group, Inc\",F3400\nHCA HEALTH CARE,COLUMBIA,H2100\nPODIATRIS,CUMB CTY ANKEL & FOOT CTR,Y4000\nWTVN/WCOL/WFII,,C2100\nPhysician,Nasa/Federal Government,X3000\nSALES,SUNCREST NURSE,Y4000\nSELF-EMPLOYED/VICE PRESIDENT,\"LONE BUFFALO, INC./SELF-EMPLOYED/VI\",Y4000\nAttorney,\"McDermot, Will  & Emery\",K1000\nLAWYER,MILLER NASH,K1000\nBookkeeper,Javier Elizondo PC,Y4000\nUS Congressman (OR-1,US Government,X3000\nCorporate Executive,\"Mansermar, Inc.\",Y4000\nTHOMAS N BELL JR DDS PA,,H1400\nRetired,Tarrant County Republican Party,J1100\nPartner,ICG Government,G5210\nDEPUTY SHERIFF,\"WASHINGTON COUNTY, UTAH\",Y4000\nJ M R RESTAURANT CORP,,G2900\nBUSINESS EXECUTIVE,CLEAVES BIOMASS,E1500\nPresident,ESS College of Business,H5300\nInsurance Agent,Rebsamen Insurance,F3100\n\"Geneticist, Assoc. Professor\",University of PA. School of Medicine,H5150\n\"FRIDAY, ELDRIDGE & CLARK\",,K1000\nRegional Field Coord,National Association of Letter Carrier,Z9500\nCEO,\"ESSEX PROPERTY TRUST, INC.\",F4100\nRETIRED,MAYO CLINIC,H2100\nDealer,Red Noland Cadillac Saab,T2300\nSales,North American Graphics,C1300\nV.P. for Advancement,Melmark,Y4000\nATTORNEY,JACQUELINE SAMOLS,K1000\nAttorney,Pension Benefit Guaranty Corporation (,F2000\nPHYSICIAN,WILL CORNELL MEDICAL,Y4000\nPRESIDENT,FALLON CLINIC,H1100\nBUNDY CORPORATION,,M5000\nsocial worker,Kaiser Permanente,H1700\n\"EVP,CHIEFADMINISTRA\",WAL-MART STORES INC.,G4300\nSR DIR IS INFRASTRUC,SANOFI PASTEUR INC,H4300\nCity Recorde,Delta City Corporation,Y4000\nPRESIDENT,SPECIALTY DRILLING INC.,Y4000\nATTORNEY,\"RYAN, MACKINNON, VASAPOLL, & BERZOK LL\",K2000\nNEW BUS. DEVELOPMENT,CARLILE,Y4000\nCPA,AQUINO DE CORDOVA ALFARO & CO.,F5100\nTHE SABEY CORP,,F4500\nLAWYER,PARKER TIDE CORP.,G5270\nContractor,Diversfield Intrors Amarillo,Y4000\nEntrepreneur,Irobot,Y4000\nBUCHANAN & BECKERING,,Y4000\nDENTIST,ANN ARBOR SMILES,Y4000\nMANAGENMENT AND TECHNOLOGY CONSULTANT,SELF EMPLOYED/MANAGENMENT AND TECHN,Y4000\nHEALTH RESEARCHER,\"INGENIX, INC\",H3000\nBROKER,,F4600\nChairwoman,Carol Hochman Designs,Y4000\nINTERFAITH COUNCIL FOR PEACE,,Y4000\nProfessor Emerita,Univ Of North Caroli,H5100\nDoctor,Highland Medical Associates,H1100\nPartner,ITU Ventures,F2500\nAttorney,Ray Quinney and Nebeker,K1000\nC.O.O.,KEISER UNIVERSITY,H5100\nDistributor,Morris Dickson Company,H4400\nASSISTANT CITY MANAGER,,X3000\nDOCTOR,WARREN CLINIC OF MC ALESTER,H1100\nALERGY TESTER,SELF EMPLOYED,Y4000\nU S WEST,,C4000\n\"NAT'L THOROUGHBRED RACING ASSN\",,G6500\ncertified registered,Harper University Hospital,H2100\nFINANCIAL REPRESENTATIVE,OCCIDENTAL UNDERWRITERS,F3300\nMANAGER,CUMBERLAND RESOURCES CORD.,E1210\nHOLIDAY CLEA,,Y4000\nDentist,SmileWorks,Y4000\nOWNER,SHUGARD STORAGE,Y4000\nCLINTON GAS SYSTEMS,,E1140\nSELF-EMPLOYED,AMERICAN DREAM REALTY,F4200\nPHARMACIST,CLINIC PHARMACY INC,G4900\nARTSERVE MICHIGAN,,Y4000\nOWNER,PRISM TECHNOLOGY,Y4000\nIT Professional,\"Insight Global, Inc\",Y4000\nRETIRED,SAN MATEO COUNTY/RETIRED,X1200\nSOFTWARE CONSULTANT,,C5130\nPRINCIPAL,\"TSI ENGINEERING, INC.\",B4400\nATTORNEY,DANIELS KASHTAN ET AL.,K1000\nPhysician,VA Hospital & UAMS,H1100\nSOUTHWEST MO UNIV,,H5100\nCHESAPEAKE REALTY,,J5100\nReal estate broker,\"CS  Associates, LLC\",Y4000\nSECRETARY,FINNEGAN HENDERSON,Z9500\nJOHNSON & BENJAMIN LLP,,K1000\nPHYSICIAN,ADVANCED IMAGING INC.,H1100\nBARTLEY & SPEARS P C,,Y4000\nStatitician,Massachusetts General Hospital,H2100\nOWNER,ISHIER GROUP HOME,Y4000\nPUBLIC AFFAIRS,THE GLOVER PARK GROUP,K2000\nart Dealer/Investor,Self employed,G0000\nMANAGEMENT CONSULT,,J1200\nR & D,UEM,Y4000\n\"Peng Thim Fan, MD, Prof Corp\",,H1100\nFOX PROPERTIES,,F4000\nJOYNER NASH OLIVER QUINN,,Y4000\nWARD AND ASSOCIATES,,Y4000\nATTORNEY,INSIDE EDGE LEGAL,Y4000\nEngineering Mgr,Keystone Foods LLC,Y4000\nSELF EMPLOYED,PHYSICIAN,Z9500\nKENNETH E ORMOND JR ATTORNEY,,B2000\nR+D,TWEAK SOFTWARE,C5120\nTeacher,Canvel District,Y4000\nMEDICAL DOCTOR,DAKOTA ALLERGY & ASTHMA,H1100\nMCNEIL CONSUMER HEALTH CARE,,H4300\nMILTARY DEPUTY,US. ARMY,X5000\nEmergency Medical Sp,Self,G0000\nJ B BRITCHES INC,,Y4000\nDECKHAND,VULCAN MARITIME LIMITED,J1100\nSelf Employed,F & A Dairy Products Inc.,A2000\nAttorney,Abbey Law Firm,K1000\nFinance,Zebra,Y4000\nCOTTON PRODUCER,BAILEY & SONS-SELF,A1100\nJ J B HILLIARD W L LYONS INC,,J7400\nactress,Corday Productions,Y4000\nBUSINESS MANAGER,\"CALVIN Y. H. WONG M.D., INC.\",H1100\nATTORNEY,\"CHRISTOPHER C. TAYLOR, ATTORNEY AT LAW\",K1000\nAttorney,NYS Division of Human Rights,J1200\nVICE,\"LA RABIDA CHILDREN'S HOSPITAL\",J5100\nINVESTING,ECONOMIC VENTURES INC.,C5130\nSUNBELT MANAGEMENT THERAPY SERVICES,,H1700\nConsultant,Better Sales Comp Consultants,Y4000\nCORP,JEFFERSON WHOLESALE GROCERY CO,G2400\nSOFTWARE ENGINEER,ECHO360 INC.,Z9500\nCONTRACTOR,ICI SERVICES LLC,Y4000\nPUBLISHING,C.N.Y. BUSINESS REVIEWS INC.,Y4000\nSTURGIS MOTORCYCLE INC,,Y4000\nBROKER,SOLOMON SMITH BARNEY,F4000\nCorp. Officer,Newell Fuel Service,Y4000\nCHAIRMAN,AMERICAN AVIATION COMPANY,T1000\nJ W CHILDS CO,,F2600\nPresident,Hurricane Fence Co.,Y4000\nMAAC PROJECT,,Y4000\nTITLE INSURANCE/OWNER,NEEL TITLE CORPORATION,F4300\nHuman Rights Speaker,Self-Employed,Z9500\nInvestment Banker,Bank Of America Securities,F1100\n\"CHRISTNACHT, LADENBURG, MCKASY & DU\",,Y4000\nUSTC FRANKLIN PARK,,A1300\nSponsored Programs A,Harvard University,H5100\nMD (OBGYN),,H1130\nATTORNEY,\"FARBER, ROSEN & KAUFMAN P.C.\",K1000\nSOFTWARE ENGINEER,SELF-EMPLOYED,C5100\nMANAGEMENT CONSULTANT,\"GLOBAL TOUCH, INC.\",Y4000\nCHAIRMAN AND CHIEF,GENERAL DYNAMICS,D3000\nFARMERS BANK OF CHINA,,F1100\nATTORNEY,STOEL RIVERS LLP,K1000\nWAGE HOUR INVESTIGATO,DEPT OF LABOR,L1100\nJpmorgan Chase Bank,,F1100\nRETIRED DR,RETIRED,J1100\nSENIOR VP GOVERNMENT RELATIONS,FIERCE ISAKOWITZ & BLALOCK,K2000\nFinancial Planner/Regional CEO,Custer Fin.  Ser./Lincoln Fin.Ser,F0000\nSecretary,Uhhs Bedford Medical Center,J1200\nRETIRED COLLEGE ADMINISTRATOR,RET:CITRUS COMMUNITY COLLEGE,X1200\nBussiness Owner,Kaufman Constrution,B1500\nCONLEY SECURITY AGENCY,,G5290\nVENTURE CAPITAL,FLYWHEEL VENTURES,Z9500\nMID CONTINENT BOTTLERS,,G2700\nNCB CAPITAL IMPACT/PRESIDENT/CEO/EX,,F0000\nVP - OPERATIONS,CONCRETE SUPPLY CO.,B5100\nExecutive,Matson Navigation,T6200\nREAL ESTATE,EWING SE REALTY,J1100\nAtttorney,Pritzker Ruohonen & Associates,K1100\nInvestment Counselor,William Blair & Co.,F2300\nIBEU LOCAL 175,,LC150\n\"CEO, UW MEDICINE\",UNIVERSITY OF WASHINGTON,H5100\nRETIRED,FERRIS STATE UNIV,H5100\nPRESIDEN,\"MRS. GRISSOM'S SALADS INC.\",Y4000\nHOMEMAKER,HOMEMAKER,G6550\nACCOUNTANT,ENGAGING SOLUTIONS,Y4000\nBUSINESS OWNER,ROUTE 128 USED AUTO PARTS,Y4000\nREPUBLICAN ABOARD,,Z5100\nWILLIAMS,ANTHONY,Y4000\nCAREER ADVISOR,OWN COMPANY,G5250\nARCHITECT,JANSON GOLDSTEIN LLP,Y4000\nHEALTH CARE,CATHEDRAL ROCK,Y4000\nFarmer,Spring Hollow Farm,Y4000\nAttorney,Porzio Bromberg & Newman,K1000\nRETIRED,STATE OF AK,X3000\nCOLLEGE PRESIDENT,ENDICOTT COLLEGE,H5100\nSECRETARY,\"BEST BUY IN TOWN, INC.\",G0000\nGrants Manag & VP,Huston Foundation,J1100\nCeo,Journal Register Company,Y4000\nDERMATOLOGIST,UNIV OF UTAH,H1130\nSOFTWARE ENGINEER,SPINDANCE,Y4000\nExec VP/ Attorney,Holden Industries,Y4000\nPres,Parker Construction Co.,B1500\nPHYSICIAN,LOWELL COMMUNITY HEALTH CENTER,Y4000\nATTORNEY,BASS LAW FIRM P.A.,K1000\nCOMPTROLLER,CROWN BUICK G.M.C. INC.,T2300\nCHIEF EXECUTIVE OF,\"DST SYSTEMS, INC\",C5130\nPresident,Noble Custom Homes,B2000\nTHE SHOOSHAN CO./PRINCIPAL/REAL EST,,Y4000\nFounder,Center for Middle East Peace,J5100\nDEFENSE ANALYST,SAIC,D3000\nOWNER,FLIGHT DECK RESTAURANT,G2900\nPHYSI,VIRGINIA ONCOLOGY ASSOCIATION,H1130\nPRESIDENT,WASHINGTON CORPORATIONS,B1000\nMechanical Designer,self,Y4000\nAgency Manger,Georgia Farm Bureau Insurance,A1000\nExecutive,Eastern Penn Supply Co.,Y4000\nJERRY CONN ASSOCIATES,,C2200\nPRESIDENT,ADVANCED COPY CENTER INC.,C1300\nASSOCIATE PROFESSOR,\"UNIVERSITY AT BUFFALO, DEPT. OF COMP.\",H5100\nRealtor,MF Realty,F4200\nLibrarian,University Of California,H5100\nPHYSICAL REHABILITATION MEDICI,,H1100\nVICE PRESIDENT/GENER,MANDALAY BAY RESORT & CASINO,G6500\nKINNAIRD & FRANCKE,,Y4000\nExecutive,Ixis North America Inc,Y4000\nGOVERNMENTAL AF,SIEMENS CORPORATION,C5000\nPATTERSON-BELKNAP-WEBB,,K1000\nClinical Psychologis,Bellarmine University & Self,H5100\nCONTROLLER,THE ATLANTIC PHILANTHROPIES,X4100\nFinance,Ameriprise Financial Services,F2100\nFinancial Advisor,U.S. Bancorp Investments,Y4000\nBook Publisher,Sef-employed,G0000\nSecretary,The Scooter Store,H4100\nJ D H ENTERPRISES INC,,F2100\nGEOPHYSICIST,SHELL INTERNATIONAL E & P INC,E1110\nOWNER,COMPU-ABEL INC,Y4000\nOWNER,OCEAN STATE OIL,Y4000\nPRESIDE,GREENVILLE HOSPITAL SYSTEMS,H2100\nBUILDER,MICHAELS CUSTOM HOMES,B2000\nRetired,Landis Engineering,B4400\nDIAMOND RUG & CARPET MILLS INC,,Y4000\nADMINISTRATOR,LACOURS HEALTHCARE CENTER,Y4000\nPresident,Superior Mechanical Inc,Y4000\nVP - CORPORATE ASSURANCE & COMPLIANCE,BLUE CROSS OF NORTHEASTERN PA,F3200\nNMTBA,,Y4000\nPhysician,Physicians for Womens Health,H1100\nDIXIE ELECTRIC SUPPLY CO,,B5500\nAttorney,Frederickson & Bryon,K1200\nROBERT MOSES CERTIFIED PUBLIC ACCOU,,Y4000\nVICE PRESIDENT,,C4100\nPresident & Manager,\"Mineral  Products & Technology, Inc.\",E1200\nBANKER - PRESI,FIRST COMMUNITY BANK,F1000\nCORPORATE VICE PRESI,S.A.I.C.,D3000\nSOLE PROPRIETOR,Bergstrom Realty And Investmen,F4200\nWILSON DODGE INC,,T2300\nPresident,victory wholesale group,Y4000\nGENERAL MANAGER,STATESVILLE AUTO AUCTION,G5000\nAMERICAN SYSTEMS/CONSULTANT/R.N.,,Y4000\nTARA DERMATOLOGY,,H1130\nMatthew Berger,Matthew Berger,Y4000\nTAYLOR OIL COMPANY,PRESIDENT,G0000\nOFFICE MANAGER,ABLE FAMILY/OFFICE MANAGER,Y4000\nOil & Gas Investment,Self-Employed,E1120\nLand Surveyor,\"CLARK ENGINEERING & SURVEYING, P.C.\",B4300\nCALVERT UTILITIER,,Y4000\nAttorney/Legislative,\"Mercury Strategies, LLC\",C4000\nbusiness,\"celadon trucking, inc\",Z9500\nPRINCIPAL BUSINESS C,UGS,Y4000\nCommissioner,\"Montgomery County, PA\",Z9500\nDATA MANAGEMENT COORDINATOR,,Y4000\nMOORE BRILL AND WAGONER PC,,Y4000\nAttorney,\"Anapol, Schwartz, Weiss & Cohan, P\",K1000\nConsultant,Penn Schoen & Berland Associates,Y4000\nENTREPRENEUR,SPS STUDIES INC.,Y4000\nNED INC,,F4100\nNORTH IOSLAND WINDOW & DOORS,,Y4000\n\"ALAN'S FRAMES SHOP\",,Y4000\nAttorney,Fagel Haber LLC,K1000\nExecutive,Belway Electrical Contracting Corp,B3200\nManager,HSStrygler & CO Inc,Y4000\nBiotech Marketer,Genetech,Y4000\nWATANABE ING KAWASHIMA & KOMEIJI LL,,K1000\nPATHOLOGIST,BETH ISRAEL MED CTR,H1130\nEARTH SCIENCES,,J7400\nCeo,Invacare,H4100\nWESTERN DEBIT CORP,,J1200\nInformation Requeste,\"Dowling ,Ahmann, Inc\",Y4000\npresident,Academica Schools,H5100\nTOUR GIDE,,J1200\nATTORNEY,TUCKER ELLIS LLP,K1000\nCEO,FIRST STATE BANK CENTRAL TEXAS,F1100\nEscrow Officer,Escrow Officer,F4700\nPresident,Havard Development,Y4000\nPHYSICIA,MOUNT SINAI MEDICAL CENTER,J1200\nPrivate Equity,Nautic Partners LLC,F2600\n,\"UNITED CHILD DEVELOPMENT SERVICES,\",Y4000\nMANAGER,EPSI,M2300\nCEO,TOWER INVESTMENT,F4100\nSole proprietorship,Unincorporated,A1000\nROBINSON MUENSTER ASSOCIATES,,Y4000\nHOUSEWIFE,N.A.,H1100\nMANAGING DIRECTOR,HEALTH MARK VENTURES LLC,F2500\nPRESIDENT,PROPER FOODS,G2000\nHOMEMAKER/IO PSYCHOLOGIST,SELF,G0000\nConsultant,Mangelsdorf,F3300\nPresident,Fuel-N-Ovations,Y4000\nVICE PRESIDENT,TRINET,G5250\nOCMULGEE MEDICAL PATH ASSOC,,H1130\nC U MANAGERS INC,,Y4000\nMARKET RESEARCH CONSUL,YARNELL INC.,G5280\nTRADE WEST,,G4850\nNurse Practioner,The Hitchcock Clinic,H2000\nPAYLESS CASHWAYS,,J7150\nBECNEL LANDRY & BECNEL,,K1000\nATTORNEY,ROTATORI BENDER,Y4000\nPlug In America board president,N/A,Z9500\nOWNER,DISH ONE SATELLITE,Y4000\nGEORGETOWN UNIVERSITY HOSPITAL,,H2100\nEXECUTIVE DIRECTOR,SAR DEVELOPMENT CENTER FOR CHILDREN &,Y4000\nREAL ESTATE,WATSON-EASOM ASSOC.,F4000\nDIAGNOSTIC RA,\"AKRON RADIOLOGY, INC.\",H1130\nPROFESSOR,\"UNIVERSITY OF CALIFORNIA, LOS ANGELES\",Z9500\nOWNER,LE PRIVE,Y4000\nCFO,ZT GLOBAL,F7000\nAIRBORNE FREIGHT CORP,,T7100\nTN DEPT OF CORRECTION,,X3200\nLawyer,Axiom Legal,Y4000\nPresident/CEO,Communication Technologies,Y4000\nRETIRED - BENNETT FOREST IND.,,X1200\nEngineer,Aerospace Corp,T1700\nPHYSICIAN,NMVAHCS,Y4000\nATTORNEY,BANNER BOWER P.C.,K1000\nCEO,\"BAMVET LABORATORIES, INC/CEO\",Y4000\nGRADUATE STUDENT,HARVARD DIVINITY SCHOOL,Y4000\nPresident,American Standard Development Company,F4100\nATTORNEY,DOHERT & CATLOW,Y4000\nOwner/Realtor,Redd Realty,F4200\nEngineer,Rogers Engineering,B4400\nDiaryman,Self-Employed,Y4000\nPresident,One Eight Seven Inc.,G1200\nWELDER/ MECHANIC,MASTERFOODS/M & M. MARS U. S. A.,G2100\nGANNETT OUTDOOR OF SO CA,,Y4000\n\"FOAMEX INT'L INC\",,M1500\nLANE REALTY CO,,F4200\nNeurosurgeons,Baylor College of Medicine,H1130\nPRESIDENT AMEREN ENERGY MRKTG,AMEREN SERVICES,E1600\nLAWRENCE BECK & COMPANY,,B2000\nGreenway Administrat,Self Employed,G0000\nGURASICH SPENCE ET AL,,G5210\nFIDELCO,,F4200\nRepresentative,US Alliance Securities,F2100\nENVIRONMENTAL PLANNER,CARDNO ENTRIX,Y4000\n\"SHEPARD'S MOVING CO\",,Y4000\nHEIZER NATIONAL,,F2100\nPres,Progressive Properties Inc.,F4000\nESTIMATER,ITARSCO,J6200\nC. E. O.,\"SUSAN DELL, INC.\",J1200\nSOFTWARE SALES - PURSE DESIGNER,IBM AND WWW.CYNDYESTY.COM,C5140\nREALTOR,FRONT DOOR REALTOR,F4200\nCEO,KINGWOOD MED CTR,H2100\nSOUTHEAST SUN,,Y4000\nSALES,LOS ANGELES TIMES,B4200\nInstructor,\"St John's University\",H5100\nNOT EMPLOYED,US,X3000\nMid Central Financial Advisors,,F0000\nPresident,Weeks & Peters/ASG,F3100\nOIL OPERATOR,SELF,E1120\nPresident,Cody Machinery Inc.,Y4000\nOWNER,\"SUNSHINE METAL CLAD, INC.\",Y4000\nRANCHER,AP RANCH,Y4000\n\"Business Leader, Acc\",MasterCard,F1400\nANESTHESIOLOGIST,ASL,H1130\nReal Estate,Agtown Technology,Y4000\nEXECUTIVE,\"ALDRIDGE ELECTRIC, INC.\",B3200\nPresident,Img Homes,B2000\nInvestment Adviser,Sampers Financial,F0000\nSuperior Court Judge,State of Delaware,X3000\nDIRECTOR OF SEVERAL CORPS,SELF EMPLOYED,G0000\nExecutive Director/Attorney,LSC and Associates,Z9500\n\"SENIOR VP, TPS\",\"TENASKA, INC\",E1630\nCeo,Tecore,Y4000\nCAO,FOX CHASE CANCER CENTER,H2100\nPRESI,PRO-MED NATIONAL STAFFING INC,G5250\nBERKELEY COLLEGES,,H5100\nCUSTOMER SERVICE SPECIALIST,USGS,Y4000\nWEXLER AND WALKER,,K2000\n\"TRASK, BRITT, & ROSSA\",,Y4000\nPRINCIPAL,\"LEWIS AND ROCA, LLP\",K1000\nTeacheer,Great Nick Public School,X3500\nCHIEF EXECUTIVE OFFICER,FARGO ASSEMBLY COMPANY,E1700\nResearch analyst,self employed,F5500\nTHERAPIST,ENDEAVOR REHAB PHYSICAL THERAPY,Y4000\nOWNER,THOMAS C. MEREDITH CO,Y4000\nT LEAVELL & ASSOCIATES,,F1100\nCONSULTANT,\"COURINGTON, INC.\",C2100\nneurosurgeon,Louisiana State University,H1130\nInformation Requeste,Interstate Natural Gas Assoc,E1140\nSELF-EMPLOYED/ABC NEWS/WRITER/INDEP,,C2300\nFLORIDA ASSOCIATION OF BROADCASTERS,,C2100\nSANVAS TECHNOLOGY GROUP/PRESIDENT/P,,Y4000\nZANE DEVELOPMENT GROUP,,Y4000\nCEO & Chairman,The Malrite Company,C2300\nNORTHERN CAPITAL INSURANCE,,F3100\nChairman,Esco Corporation,M5000\nDIVISION M,BROWN-FORMAN CORPORATION,G2820\nBUSI,\"DEFENSTECH INTERNATIONAL, INC.\",Z9500\nLANDIS GRAHAM & FRENCH,,Y4000\nPresident and CEO,NOVA Chemiclas,M1000\nCUSTOMER SERVICE,SALCITO CUSTOM HOMES/CUSTOMER SERVI,B2000\nWPVI,,C2100\nSERVICES GM,CISCO SYSTEMS,C5110\nCEO/Engineer,\"CSI Enterprises, Inc\",Y4000\nConsultant,Progressive Strategy Partners,Y4000\nTeacher,Dc Public School,J1200\nManager,Owenhouse & Associates,Y4000\nMD,\"NORTHWEST PERMANENTE, PC\",H1130\n\"VOLUSIA PATHOLOGY GROUP, MD PA\",,H1130\nEXECUTIVE,FERGUSON LIBRARY,X4200\nEXECUTIVE,INTERNATIONAL INSIGNIA CORP.,Y4000\nBUSINESS OWNE,COTTONWOOD PROPERTIES,J1100\nAdvertising Sales,Dex Media,G5210\nTHERAPIST,OFFICE OF COLENE SAWYER SCHLAEPFER AND,Y4000\nATTORNEY,FISCHER & HAWKER,K1000\nPublic Relations,Sloane PC,F5100\nEnvironmental Non-Profit Board Directo,Self employed,Y4000\nFAST FOOD,SONIC DRIVE INC./FRANCHISE,Y4000\nFinance,Financial Benefits and Research Group,Y4000\nPHYSICIAN,OWNER - SPINE ABILENE,Y4000\nRETAIL SALES,,J1100\n\"SR3 ENGINEERS, LLC\",,B4400\nPRESIDENT,SMART SPACE INC.,Y4000\nManaging Dir-Risk Ca,Aon Financial Services,F3100\nSALES MANAGE,PINNECLE MANUFACTURING,Y4000\nT&R ASC,,Y4000\nPresident,Ralco Inc.,Y4000\nBussinessman,Cameron Machine Shop,Y4000\nOFFICE WORKER,\"MR INDUSTRIAL SERVICES, INC.\",Y4000\nSelf Employed,Self employed,C2000\nMANAGER,\"REDHILLS VENTURES, LLC\",F2100\nSURGEON,ST PAUL ORAL SURGERY,H1130\nDISABLED,DISABLED,Y4000\nVideo Game Developer,\"Hi-Rez Studios, Inc\",Y4000\nPartner,Kaiser,H3700\nRETAIL EXECUTIVE,WALGREEN CO.,Z9500\nR J BRANDES CO,,Y4000\nDIRECTOR OF SALES,COMCAST SPOTLIGHT,C2200\nRIG 6 DRILLING INC,,Y4000\nINDIANA DEMOCRATIC PARTY,,Y4000\nGRIEF COUNSELOR,\"HAMILTON'S FUNERAL HOME\",G5400\nPHYSICIAN,METROHEALTH MEDICAL CENTER,H1100\nATTORNEY,VENABLE/ATTORNEY,K2000\nPHYSICIAN,REHABILITATION PHYSICIANS PC,Y4000\nCHIEF TECHNICAL,ATLANTIC BROADBAND,C2200\nOwner/CEO,\"Options for Life, Inc\",Y4000\nATTORNEY,CONRAD SCHERER,Y4000\nINVESTME,JANELL ISRAEL & ASSOCIATES,Y4000\nHEMINGWAY & BARNES,,Y4000\nSTEINBERG MOORAD AND DUNN LAW O,,K1000\nDirector,First State Bank Central Texas,F1100\nEXEC,EDW LEVY CO,Y4000\nCAP,GBQ PARTNERS LLC,Y4000\nMANAGING DIRECT,ANGELO GORDON & CO.,F2700\nbusinessman,clear channel entertainment,C2800\nACUTE CARE DIV,,Y4000\nConsultant,Pistolero. Ltd,Y4000\n\"Professor, Author, A\",University of California,H5100\nSenior Business Development Officer,Sullivan & Cromwell Law Firm,K1000\nPRUDENTIAL PREMIER REALTY LLC,,F4200\nPARTNER,WCA MANAGEMENT CORP.,F2100\nBROWN BROS,,F2100\nOwner,JL Davis & Co.,Y4000\nCOYLE ENTERPRISES,,Y4000\nCITY OF GLADSTONE,,J1100\nLEGAL ASSISTANT,LAW OFFICE OF PHILIP COHEN,J1200\nINSURANCE,WOOLARD INSURANCE AGENCY,F3100\nSECRETARY,GLASS IN,M7200\nCONSUMER POWER CO,,E1620\nTelevision Journalist/Executive Produc,Bloomberg,F5500\n\"EVP, CUSTOMER OPERATIONS\",CHARTER COMMUNICATIONS,C2200\nExecutive,Omni Development Corp,F4000\nattorney,Casper & de Toledo LLC,K1000\nphysician,Hartford Hospital,H1110\nTHE CLASSIC TOUCH INC/BUSINESSMAN/C,,Y4000\nBOSTON MEDICINE,,JD200\nBANK OF EDISON,,F1100\nMarketing consultant,SELF-EMPLOYED,G5280\nMONTANA BUSINESS CAPITAL CORPORATIO,,F0000\nJ THEIMER & ASSOC,,Y4000\nEXECUTIVE,POWER CONSTRUCTION,B1500\nCHARLES WEBB COMPANY,,J7400\nManager,Knowledge Alliance,H5000\nMACHINIST,SNAP-TITE,Y4000\nPROFESSOR,\"UNIVERSITY OF CALIFORNIA,SAN DIEGO\",H5100\nBUCHALTER NEMIN FIELDS,,K1000\nCONGRESSMAN JAMES SCHEUR,,J5100\nCOUNSELING PSYCHOLOGIST,RETIRED,X1200\nRealttor,Century 21,J1200\nDirector,Cash America International,F1420\nAttorney,\"Hefner, Stark, And Marois, LLP\",K1000\nUNION REPRESENTATIVE,IBEW #47,LC150\nInvestor,Rosenberg Investments,J5100\nCAMILLA DIETZ BERGER,,Y4000\nEngineer,EV3,Y4000\nINFO REQUESTED,THE MATTHEWS FOUNDRY INC.,Y4000\nConsultant,Courson Nickel,K2000\nDoctor,Rhode Island Hospital,H1100\nPartner,Murphy Constructors,T9100\nDISTRICT SALES MANAG,BRAINTREE LABS,Y4000\nPresident,Capitol Catering,G2910\nC.F.O.,FEDEX CORPORATION,T7100\nTOYOTA MGR OF KENTUCKY,,J1100\nCOO,WEST VIRGINIA JUNIOR COLLEGE,H5300\nExecutive Assistant,Chilmark Partners,F2100\nINVESTMENT MANAG,GOLDMAN SACHS & CO,F2300\nResearch Software Developer,\"Children's Hospital Boston\",H2100\nEXECUTIVE,THE PROCUREMENT CENTRE,Y4000\nFISHERMAN,,J7150\nMANAGING PARTNER,ADVISORY BOARD CO.,H3000\nPRESIDENT,DON KING PRODUCTIONS INC.,G6400\nNOT EMPLOYED,,H3100\nVP BUSINESS DEVE,BUFORD MEDIA GROUP,C2200\nPresident/CEO,Amphibious Base Naval Base FCU,F1300\nEmergency Physician,University of Pennsylvania,H5100\nprofessional nurse,state of TN,X3000\nFORREST INVESTMENT,,J5100\nLetterpress Printer; Artist,Self employed,C1300\nPhilanthropy,Tides Foundation,X4100\nDesigner,Self,G0000\nBERNSTEIN SHUR & NELSON,,K1000\nA J WELLER CORPORATION,,Y4000\nNATIONAL MORTGAGE & FINANCE CO,,F4600\nWOODCREST ASSOCIATED CONTRACTORS IN,,F1100\nASSOCIATED INSURORS,,F3100\nATTORNEY,\"HEWITT, WOLENSKY, MCNUTTY\",Y4000\nPRESIDENT,EQUIMAX MORTGAGE & LOAN,F4600\nChairman Of Board,Dublin Building Systems,Y4000\nHOOLSEMA VANDER LUGT & MULDER,,J1100\nSR. VP,METLIFE,F3300\nOwner,K Porter Construction Inc.,B1500\nSys-Tech-Retired,Lucent Technoliges,C4600\nPRESIDENT & CEO,PSEG,E1620\nHARD WORKER,SELF,Y4000\nANALYST,JP MORGAN,Z9500\nGATX LOGISTICS,,Y4000\nbusiness owner,\"Double R Ent., LLC\",G2900\nD & D ROOFING,,B3000\nHomemaker/volunteer,Self,Y1000\nNORTH AMERICA DIRECTOR,FMC,M1000\nBRYANT SUPPLY CORPORATION,,G0000\nRbitrator/Mediator,Self-Employed,G0000\nVice President,Agiltron,M9100\nLOUISIANA NURSING,,Y4000\nCIVIL ENGINEER,VOLKERT & ASSOCIATES,B4000\nMANAGMENT,CALIPER CORP,C5120\nGRUENWALD LAW OFFICE,,K1000\nretired,N/A,F0000\nCHM. BOD,SOUTHERN FURN.,M4100\n\"Chairman, NAFTA CP Regional Head\",Syngenta Crop Protection,A4100\nWRITER,SELF EMPLOYED,J5100\nPHARMACIST,U.S. GOVERNMENT,X3000\nCENTER DIRECTOR,FEDERAL GOVERNMENT/HHS,Y4000\nV. P. BUSINESS DEVEL,\"DEERS & DAVIS ENTERPRISES, L.L.C.\",Y4000\nCEO,GOLDEN AGE FISHERIES,G2350\nTHE CALVIN HOUSE INC,,Y4000\nATTORNEY,ALLAN N. KARLIN & ASSOCIATES,K1000\nBRUDIE & HUNSAKER INC,,Y4000\nPRES.C.E.O.,HANIFEN IMHOFF INC,F2100\nCEO,HealthSpring Management Inc.,H3700\nDIAGNOSTIC RADIOLOGIST,MONTCLAIR BAPTIST MEDICAL CENTER/DI,H1130\nelementary school co,Washington County Public Schools,J1200\nPHYSICIAN,CHESTER MENTAL HEALT,H3800\nATTORNEY,\"GENOVESE, LICHTMAN, JOBLONE & BATTIS\",Y4000\nCFO,BETHESDA ASSOCIATES,Y4000\nDIRECTOR/PRODUCER,HALFLIFE DIGITAL INC.,Y4000\nFINANCIAL EXECUTIVE,CANTOR FITZGERALD PARTNERS,F2100\nMANAGER LEAF PROCESSING,LORILLARD TOBACCO COMPANY,A1300\nChairman,The Springs Company,M8000\nEXECUTIVE,VETERAN STRATEGIES,Y4000\nATTORNEY,INDEPENDENT,Y3000\nC F E D,,J7150\nCENTURY MANAGEMENT,,Y4000\nLAWYER,\"ADAMS, STEPNER, WOLTERMAN & DU\",K1000\nDIPLOMAT,US DEPT OF STATE,Z9500\nCFO,JOHN HANCOCK,F3100\nHOMEMAKER,NONE/HOMEMAKER,B4200\nVP,UNIVERA HEALTHCARE,H3700\nGEMINI IND INC,,Y4000\nATTORNEY,STOWELL AND FREIDMAN,K1100\nTHE W&G GROUP LTD,,Y4000\n\"EVP Gov't Business\",Rolls Royce North America,T1300\nPRESIDENT,PARK CITY INC,Y4000\nProfessional,San Bernardino Medical Group,H0000\nCONSULTANT,ACROSS THE CHARLES,Y4000\nREIREMENT SECURITY,OHIO ORGANIZING COLLABORATIVE,Y4000\nMONEY,DAVIDSON TEMPNER CAPITAL MGM,Y4000\nMedical Affairs,Johnson & Johnson,H4000\nPROPERTY DE,RESTAURANTEER,G2900\nTheater Artist,Flint Cultural Center Corp.,Y4000\nEXECUTIVE OFFICE,FINANCIAL SERVICES,F2100\nPLESSEY AERO PRECISION CORP,,T1300\nDIAGNOSTIC RADIOLOGIST,NORTH METROPOLITAN RADIOLOGY ASSOCI,H1130\nDIRECTOR,CONTRIBUTION,F3200\npharmacist,Witham Hospital,H2100\nKEYSTONE SHIPPING COMPANY,,T6200\nDIRECTOR,RIVERFRONT DEVELOPMENT COMPANY,Y4000\nOWNER,FELSON COMPANIES,F4500\nPH.D. BIOMEDICAL CHE,POLYMERIX CORPORATION,Y4000\nMGA COMMUNICATIONS,,G5210\nPhilanthropist,Self-Employed,G0000\nTEACHER,ELGIN ACADEMY,Y4000\nSELF/PIPE MANUFACTURE/DISTRIBUTION,,J7400\nConstruction,County Line Excavating,B3600\nSCHIFF HARDING & WAITE,,Y4000\nEEO INVESTIGATOR,MICROSOFT,C5120\nPrivate Placement Ag,Lloyd Bridge Advisory Corp.,Y4000\nExecutive,News America (Fox Group),C1100\nCOMMERCIAL REAL ESTATE SALES,\"C.B. RICHARD ELLIS, INC.\",F4000\nPRESIDENT,P. S. S. WAREHOUSING & TRANS.,Y4000\nAUTO BUSINESS OWNER,SELF-EMPLOYED,T2310\nNAT SHERMAN INC,,G4300\nPresident,Town Tire Inc,T2200\nCOPELAND HATFIELD LOWERY & JAC,,K2000\nNON-PROFIT MANAGER,NATIONAL CENTER FOR TRANSGENDER EQU,Y4000\nPUBLIC RE,NEW FUTURE COMMUNICATIONS,Y4000\nNEUROLOGIS,CORPUS CHRISTI NEUROLOGY,J1100\nN/A,\"RMA, INC.\",Y4000\nAttorney,Anderson & Kanenberg,JE300\nAIDE,NEWTON FREE LIBRARY,X4200\nOWNER,\"SHETLAR LAND CO., LLC\",Y4000\nGROUP 360 LLC/LAWYER/LOBBYIST,,K2000\nSTATE GOVERNMENT,STATE OF MARYLAND,Y4000\nPresident,\"Ticket To Ride, Inc\",T9400\nINVESTOR,GROSVENOR CAPITAL,F2700\nPAUL MAGLIOCCHATTI ASSOCIATES INC,,K2000\nRE Consultant,Self employed,F4700\nFLOOD BURNSTAAD MCCREADY/PRESIDENT/,,Y4000\nUNIVERSITY OF COLORADO,,J7150\nCOMMUNICATION,SHEERR COMMUNICATIONS,J5100\nJ K SCANLON CO INC,,Y4000\nVP-GCS OPERATIONS,PITNEY BOWES,M4200\nPhysician,Athens Obstetrics & Gynecology,H1100\nV.P. GIFT SHOP,TEMPLE JUDEA,X7000\nRESTAURANT - OWNER,,G2900\nGovernment Affairs E,Multiple Strategies LLC,K2000\nHomemaker,Self-Employed,B1000\nSR. ADVISOR,CORMAC GROUP,K2000\nASSOCIATE BROKER,REAL ESTATE PROS,F4000\nBusiness Owner,County Fair Food Store,G2400\nLAWYER,\"FRANKEL, RUBIN, BOND, DUBIN, SIEGEL &\",Z9500\nCENTENNIAL VENTURES,,Y4000\nCONTINENTAL ENGINEERING INC,,B4400\nWADE CULLER,WADE CULLER,Y4000\nSmall Business Owner,self-employed,J1200\nPrincipal,KRE Group,F4100\n\"CPA, PRESIDENT\",JOHN FRIEND & CO.,Y4000\nSTERLING PHYSICAL THERAPY,,Y4000\n,TRUCKSTOP & TRAVEL PLAZA INSURANCE,E1170\nowner,Nicholson Communications,Y4000\nOwner,Robert W Later,Y4000\nNON PROFIT EXECUTIVE,AMERICAN JEWISH WORLD/NON PROFIT EX,J7400\nExecutive Director,Philadelphia Futures,J1200\nPRESIDENT,COOK INLET REGION INC,Y4000\nPresident,LIBERTY HELICOPTERS,T1400\nJAZZ & BLUES ENTERTAINMENT PROMOTER,SELF-EMPLOYED,G0000\nAttorney,The Dudenhefer Law Firm,Z9500\nMECHANICAL ENT,SELF EMPLOYED,B4000\nATTORNEY,OBERMAYER REBMANN MAXWELL/ATTORNEY,K1000\nSPILLANE & SPILLANE,,K1000\nPRESIDENT/CEO,THE VALLEY HOSPITAL,H2100\nNONE,NOT EMPLOYED,H5000\nSENIOR VICE PRESIDENT,PROVIDENCE HEALTH,H0000\nAttorney,\"Fried, Frank, Harris, Shriver &amp; Ja\",K1000\nDIESEL MECHANIC,BRUCKER TRUCK SALES,Y4000\nDir State Regulatory,SPRINT NEXTEL CORPORATION,C4300\nPhysician/surgeon,Self,H1100\nCONSUMERS PRODUCE CO INC,,Y4000\nCEO,Guardian Industries,J5100\nBTS ASSOCIATES INTERNATIONAL,,Y4000\nVOICE ACTOR,SELF-EMPLOYED,C2000\nBEEF PACKER,CAVERNESS BEEF PACKERS,G2300\nATTORNEY,Self employed,J1200\n\"GOV'T RELATIONS\",VERIZON,C4100\nBIRMINGHAM SCHOOL DISTRICT,,X3500\nATTORNEY,\"SPOTTSWOOD, SPOTTSWOOD, AND SPOTTSWOOD\",K1000\nCORPORATE D,QUINTILES TRANSNATIONAL,H3400\n\"EXEC DIR,SUPPLY CHAIN MGMT\",COX COMMUNICATIONS,C2200\nBed &Breakfast Inn Owner,Self employed,T9100\nPRESIDENT,COOKERLY PUBLIC RELATIONS,G5210\nSALES,SCHOTT,Y4000\nKING OIL TOOLS,,E1150\nARNOLD COMMUNICATIONS,,Y4000\nGAS BUSINESS OWNER,SELF EMPLOYED,Y4000\nATTORNE,\"NEW CASTLE COUNTY, DELAWARE\",X3000\nCONSULTANT (ATLANTIC NATIONAL,SELF,Y4000\nReal Estate,Fortune Financial and Invsmt,F0000\n\"GREENBAUM, ROWE SMITH, RAVIN ET AL\",,K1000\nVp Operation,Eastern Stars,Y4000\nOwner,Boddie Noell Enterprises,G2900\n\"VP & MEDICAL DIRECTOR, POPULATION HEAL\",\"CHILDREN'S MEDICAL CENTER OF DALLAS\",H2100\nFINANCIAL ADVISOR,RBC WEALTH MANAGEMENT,F2000\nPHMSA ADMINISTRATOR,DOT,Y4000\nPresident,Zipcash,F1420\nGENERAL PARTNER,I-HATCH VENTURES,Y4000\nCPA,BLUE CROSS BLUE SHIELD OF AZ,F3200\nGENERAL CONTRAC,CARDEN COMPANY INC.,B1000\nFirst Care Medical Clinic,,H2000\nEVE,SOUTHERN LEGISLATIVE CONFERENCE,Y4000\nRD MANAGEMENT CORP,,J7400\nSelf Employed,Private Investor,J1100\nLOBBYIST,\"THE GROSSMAN GROUP, LLC\",K2000\nDIRECTOR OF,NFL PLAYERS ASSOCIATION,G6400\nLAWYER,NEW HAMPSHIRE LEGAL ASSISTANCE,Y4000\nCOMMUNITY CABLE SVCS,,J1100\nPhysician,University Services,J7500\nEXECUTIV,MARSHALL BRACHMAN & ASSOC.,K2000\nPrincipal,Michel Government Relations LLC,K2000\nSVP,COBLEVISION,Y4000\nAGRICULTURE PRODUCTION,,A6000\nFAIRFIELD COUNTY MEDICAL ASSOC,,H1100\nAssociate Professor,Catholic University of America,H5100\nController,\"MGM Enterprises, INC\",Y4000\nEckert Seamans,,Y4000\nREMEDIAL PROJECT MANAGER,US EPA,X3000\nGNC CORP,,H4600\nRETIRED TEACHER,Retired,J7400\nExecutive Director,US Columbia Business Partner,Y4000\nVENETIAN HOMES INC,,Y4000\nLegislative Advocate,Capital Strategies Group,F2000\nFire Fighter / EMS,Professional Fire Fighters Of Mount Pl,L1400\nRetired,Sate Dept,Y4000\nHOMEMAKER,Information Requested Per Best Efforts,G4600\nBuilder,Lewis Custom Homes Inc George,B2000\nMANAGING DIRECTOR,NCH CAPITAL INC.,Z9500\nHELLINGS PROPERTIES OF,,F4000\nCHAIRMAN,MONTGOMERY CAPITAL CORPORATION,Y4000\nATTORNEY,GIBSON BUNN & CRUTCHER,K1000\nOwner,The Greenhouse,Y4000\nEXECUTIVE VICE PRESIDENT,\"JAMES C. JUSTICE COMPANIES, INC.\",F4100\nATTORNEY,MAGID & WILLIAMS,K1000\nBOOK FURNITURE RENTAL INC,,G5300\nHealth Policy Consultant/Employee Bene,Self employed,H3000\nAVON PRODUCTS/CORPORATE AFFAIRS/ PR,,M3300\nFACTORY WORKER,SANDVIK,G5200\nRETIRED,\"PELEGRIN & RADEFF, PC\",Y4000\nOwner,Su-Rey Insurance Agency,F3100\nFRANCHISEE - JOS. A. BANKS,SELF,Y4000\nLEGAL SECRETARY,ARNOLD & PORTER,K1000\nEVP - WHOLESALE DIST,\"AXA FINANCIAL, INC\",F3300\nSocial Work,Arc of Hunterdon County,Y4000\nPRESIDENT/CEO,NEW ENGLAND FUEL INSTITUTE,E1120\nVETERINARIAN,LYNE ANIMAL HOSPITAL,A4500\nSTYLE - RITE MFG CO,,Y4000\nMONTOUR TRAIL,,Y4000\nSALES,BRUTON MARKETING,Y4000\nBROADCAST COUNSELOR,,C2100\nEXECUTIVE,REPUBLICAN PARTY OF SEMINOLE COUNTY,J1100\nPRESIDENT,SCOTT-MCRAE GROUP,Y4000\nPROFESSIONAL NURSE,RETIRED,X1200\nATTORNEY,GITTES & SCHULTE,K1100\nNelson Mullins Riley & Scarborough Llp,NELSON MULLINS RILEY & SCARBOROUGH,K1000\nLANIER CORPORATE,,D3000\nIMPERIAL HOLLY CORPORATIO,,A1200\nAttorney,\"Drinler, Biddle Reath\",K1000\nFARMER/INDEPENDENT BUSINESS MAN,SELF-EMPLOYED,A1000\nATTORNEY,BERNSTEIN BURWICK & TUCKER,K1000\nPresident,Marketing Consulting Service,G5280\nPARTNER,BUTLER & HARRIS,K1000\nVP/CHIEF INFORMATION OFFICER,ARIZONA PUBLIC SERVICE,E1600\nCUPERTINO UNION SCHOOL DISTRICT,,X3500\nMILLER OIL COMPANY,,E1100\n\"COZEN & O'CONNER\",,K1000\nLAWRENCE ASSOCIATES,,G5210\nSWANSON MARTIN & BELL,,K1000\nPRINCIPAL,BEADLES LUMBER COMPANY,B5200\nHYGRADE ELECTRIC COMPANY,,B3200\nMarketing,\"Unlimited Events & Marketing, Inc\",Y4000\nBANK OF CALIFORNIA,,Y4000\nOWNER,DEL MAR ENERGY LLC,E1000\nTRU,,J1300\nAffordable Housing,NAHTEF,Y4000\nDairyman,Ben Vander Laan Dairy,A2000\nHOLE MONTERY ET AL,,Y4000\nFINANCE EXECUTIVE,FRANKLIN TEMPLETON INVESTMEN,F2100\nTOOL & DIE MA,CENTRAL PLASTICS INC.,M1500\nSr. Vice President,The Options Clearing Corp,F2200\nPresident,Axess Corporation,Y4000\nDIRECTOR OF ADMISSIONS,NOTRE DAME HIGH SCHOOL,H5100\nBUILDER/DEVELOPER,\"SKORMAN CONSTRUCTION, INC.\",B1500\nOWNER,BARR CONSTRUCTION INC.,B1500\nASSOCIATE MEDICAL DIRECTOR,\"MT SINAI, WORLD TRADE CENTER MEDICAL M\",Y4000\nPARTNER,\"RAY WOOD & BONILLA, LLP\",K1000\nGENERAL COUNSEL,FACEBOOK INC,C5140\nPresident,Tsi Trans Services Inc.,Y4000\nVice Chairman,Monico Capital,F2100\nVice President and I,Bravo! Foods International Corp,Y4000\nCEO,EXPLORYS MEDICAL,Y4000\nANESTHESIOLOGIST,AGA,H1130\nFOUR-YEAR-OLD,WHEATON BIBLE CHURCH,X7000\nATTORNEY,FINNEGAN HENDERSON LLP,K1200\nPRESIDE,CROWN TEAM TEXAS DEVELOPERS,Y4000\nBENEFIT PLANS DESIGN,,F3100\nEDUCATOR,AMERICAN SCHOOL,X3500\nISLAND GRILL RESTAURANT,,G2900\nWATSON PHOTO LAB,,Y4000\nATTORNEY,MUNGER TOLLES AND OLSON LLP,K1000\nEXECUTIVE,ALLTEL CORP./EXECUTIVE,C4300\nREAL ESTATE,URSTADT & BIDDLE,F4100\nATTO,DRAUGHON PROFESSIONAL SERVICES,K1000\nWORLD CHEESE CO INC,,A2000\nOwner,Ruzicka S Catering,Y4000\nSENIOR VP,BOLLINGER PROFESSIONAL LIABILI,Y4000\nREID PETROLEUM,,E1170\nAsst Director,Talbot County Free Library,X4200\nNURSE PRACTITIONER,EMERGENCY MEDICAL ASSOCIATES,Y4000\nSUPERVISOR,UPS,J1100\nPrincipal,Bay Partners,F2500\nOWNER,REFRACTRON TECHNOLOGIES,Y4000\nTEACHER,ST. MARY CATHEDRAL GRADE SCHOOL,X7000\nJ E CARTER REALTY INC,,F4200\nBuilder,Colony Homes,Z9500\nENGINEER,ARIEL CORPORATION,M2300\nMAYNES PETERS & BOND,,Y4000\n,SHENANDOAH ELECTRONIC INTELLIGENCE,C5000\nASSISTANT,NM PUBLIC EDUCATION DEPT,Y4000\nPRESIDNET,JERRY HAMM CHEVROLET INC,T2300\nVENTURE CAPITAL,MASTHEAD MANAGEMENT PARTNERS LLC,F2500\nSpeech Language Path,Self-Employed,J7120\nPresident,Citicorp / Citibank,F1100\nExecutive Vice President,Cornerstone Government Affairs,K2000\nsoftware consultant,Lawson Software,C5120\nWEB DEVELOP,CHROMIUM COMMUNICATIONS,Y4000\nVP OF COMMUNITY AFFAIRS,BATES CONTAINER,B1500\nFRED HUTCHINSON CANCER RESEARCH CEN,,Z9500\nNierenberg Inc,,F2100\nFinancial Services A,Prudential Financial,J7300\nARCHITECT,KENDALL HEATON ASSOCIATES,Y4000\nTEACHER,NE WOOD PELLET,J7400\nOwner,Petpin & Associates Inc,Y4000\nEnvir. Admin.,Pomperaug River Watershed Coalition,Y4000\nCHAIRMAN,XERXES CORP/CHAIRMAN,M2000\nPRESIDENT,BALLAST TECHNOLOGIES,Y4000\nattorney,headstrong,Y4000\nUniv Administrator/ Professor,Southern University at New Orleans,H5100\nOWNER,SUPER MEX MEXICAN RESTAURANTS,G2900\nVICE PRESIDENT,LENOVO,C5110\nSENIOR EXECUTIVE - REGIONAL SALES,GE POWER & WATER,M2300\nPRE,ENGINEERING MICRO RESEARCH INC.,B4400\nENGINEER,OCEANSERVER TECH,Y4000\nPRESIDENT,\"FLORIDA CENTRAL RAILROAD COMPANY, INC.\",T5100\nAccount Exec,CreveCor Mortgage,J1200\nBUSINESS MANAGER,WESTERN CONTRACT,Y4000\n\"school librarian, ret\",Information Requested,Y4000\nPROTECT MANAGER,AETNA,H3700\nMEDSOLUTIONS INC,,Y4000\nMANAGING DIRECTOR,PARETO PARTNERS,F5000\nPRINCIPAL,VLH PHOENIX CONSULTING,Y4000\nEXECUTIVE VICE PRESIDENT,IPAS,Y4000\nSenior Vice Presiden,Kaiser Permanente San Diego,H2100\nCLAYWELL INC,,B3200\nNon Profit Executive,Gemstar Group Inc,Y4000\nDANNENBAUM ENGINEERING CO,,Y4000\nLAWLESS EDWARDS & WARREN,,F2100\nPRESIDENT AND CEO,NATIONAL RESTAURANT ASSOCIATION,G0000\nLEGACY MARKETING,,F3100\nMANAGEMENT,HANES BRANDS,Y4000\nCUSHMAN & WAKEFIELD OF NEW JERSEY,,Y4000\nReal Estate Developer,\"Smith Houston, Inc\",J1200\nMECHANICAL ENGIN,SPIRIT AEROSYSTEMS,T1300\nFEDERAL EMPLOYEE,DEFENSE INFORMATION SYSTEM,L1100\nEngineer,Andigilog,Y4000\n\"AMALO ENTERPRISE INT'L\",,Y4000\nOil Field Const.,Self Employed,G0000\nInsurance Agent,\"Wiseman Agency, Inc\",F3100\nSTATE OF FLORIDA OFFICE OF GOVERNOR,,X3000\nAttorney,\"Sebaly, Schillito & Dyer\",K1000\nAttorney,\"Adleson, Hess & Kelly Apc\",K1000\nBROWDY & BROWDY,,B2000\nCHERIANS INC/REAL ESTATE/REAL ESTAT,,G4600\nMVP COMMUNICATIONS,,C4200\nPhysician,Arnot Ogden Medical Center,H2100\nTHE MILLER AGENCY/PRESIDENT/INSURAN,,G5210\nExecutive,\"N.V.A., L.L.C.\",F3200\nGARY TAYLOR CONSTR CO,,B2000\nPRESIDENT/CEO,MAGIC CITY CASINO,G6500\nPhoto,Weanner Media,Y4000\nRN,St Jude Medical,H4100\nCHAIRMAN,TWSCO- INC,J1100\nconsultant,\"Xron Associates, Inc\",Y4000\nOCEAN SPRAY,,K2100\nRrswiii,New York City Transit,Y4000\nR D HUNTER,,F5100\nBUFFALO ROCK,,Y4000\nSTUDENT,,G2850\nPRESIDENT,\"1STDIBS.COM, INC.\",Y4000\nBUSINESS OWNER,F. & N. ENTERPRISES INC.,Y4000\nPRESIDENT,PAGE AUTO GROUP,T2310\nCHAIRMAN & CEO,COMMERCE WEST BANK,F1000\nREX MEDCIAL INC,,H4100\nOFFICE M,BETTY LABRANCH REAL ESTATE,F4000\nDEVELOPER,FOXBORO COMMUNITIES,Y4000\nPRESIDENT & CEO,MADISON INVESTMENT ADVISORS,F2000\nHISTORIC PRESERVATIO,SELF,Y4000\nFounder,Assoc. of Comm. Employment Pro,J1100\nHOMEMAKER/RN,N/A,H1710\nARTIST,SELF EMPLOYED,C2900\nPRESIDENT,DOMESTIC FASTENER & FORGE INC.,Y4000\nAttorney,Gonsalez Saggio & Harlan,K1000\nCarwash Manager,Self-Employed,G5000\n\"VP, COMPLIANCE MANAGER\",WELLS FARGO,F1100\nGREENFOREST NURSERY INC,,A8000\nRAIN FOR RENT,,A1400\nGMA INC,,G2100\nResource Chief,N I H,X3000\nFIRST AMERICAN CN,,F4300\nOrthopaedic Surgeon,Orthopaedic Assoc. Inc.,H1130\nTHE CLY-DEL MANUFACTURING CO,,J1100\nExecutive,Parkdale Mills,M8000\nGM PRODUCT MRKT,SIEBEL SYSTEMS INC.,C5120\nANENEUM GROUP,,F4100\nCo-C.E.O.,J.M. SMUCKER COMPANY,J1100\nPRESIDENT & COO,CHOICEPOINT,F5200\nDIRECTOR OF SALES,ON SEMICONDUCTOR,C5110\nPLUGPOWER/DIR./GOVT.REL.,,E1630\nSTATEMENTS IN STORE,,Y4000\nEMERGENCY PHYSICIAN,NY METHODIST HOSP,H1100\nWRITER,SELF-EMLOYED,C1100\nOwner,Kearney & Company,F5000\nCROUSE-IRVING HOSPITAL,,H2100\nSTERLING M ENTERPRISES INC,,Y4000\nVICE CHAIRMAN,GCI,C4200\nKISS MY FACE,,Y4000\nOwner,Cedar Valley Exteriors,Y4000\nENERGY SERVICES INC,,Y4000\nSOFTWARE ENGINEER,M.C.I.,C4200\nOPTOMETRIST,KIRMAN EYE,H1120\nPRESIDENT,\"ADMIRAL INDUSTRIES, INC.\",Y4000\nOFFICE ADMINISTRATOR,\"JOHN T. DUDDY M.D., P.C.\",Y4000\nLAW ENFORCEMENT OFFICER,KOOTERAI COUNTY SHERIFF DEPT,Y4000\nIMPERIAL TRADING COMPANY,,Y4000\nCredit Analyst,Creston Electronics,Y4000\nBusiness Manager,Tennyson Partners,Y4000\nSELF-EMPL/ ACTOR/COMM PRINT MODEL,,C2900\nPHYSICIAN RETIRED,Not employed,X1200\nBILVERN PRODUCTS INC,,M2300\nELECTRICAL CONTRACTOR,ROSS ELECTRIC,Y4000\nWOODSTOCK GAS COMPANY,,E1100\nCHAIRMAN,I.E.E. INC,J1100\nATTORNEY,KLINE VEIO PC,K1000\nOWNER,ELEVE,Y4000\nDEVELOPMENTAL EVALUATION CENTER,,Y4000\nD.V.M.,CITY KITTY,A4500\nCHAIRMAN AND CEO,PARAMOUNT PICTURES,C2400\nFILM PRODUC,\"CAPPY PRODUCTIONS, INC.\",Y4000\nPRINTERS,,C1300\nREAL ESTA,CHAFFIN LIGHT REAL ESTATE,F4000\nData Processing,I B M,C5100\nFACULTY,UNIVERSITY OF OKLAHOMA COLLEGE,H1750\nWOODSON FAMILY OFFICE & WAUSAU-MOSI,,K1000\nAssociate Vice President,Drexel University,H5100\nVice Chairman,\"Quinn, Gillespie & Assocites\",K2000\nSELF/OWNER/OPERATOR,,C2600\nPRESIDENT,KEYSTONE PROPERTY GROUP,F4000\nATTORNEY,MANNION & GRAY,K1000\nDIRECTO,ECHOSTAR TECHNOLOGIES CORP.,C2200\nNATIONAL FOUNDATION ON COUNSELING,,Y4000\nAUSTAD COMPANY,,Y4000\nVISITING PROFESSOR,MICHIGAN STATE UNIVERSITY,H5100\nGANER GROSSBACH GA,,Y4000\nPATHOLOGIS,INTEGRATED REGIONAL LABS,H1130\nMANAGEMENT CONSULTANT,\"CSM, INC\",J1100\nGE CAPITAL INVESTMENT ADVISORS,,M2300\nAttorney,Corboy Demitrio,Y4000\nPROFESSOR,UMSL,H5100\nOwner,Bountiful Lands,F4100\nTech Wri,Volt Technical Services,C5120\nBARBARA S BLINDERMAN,,Y4000\nPrincipal of Health,\"AXIA management Consultants, LLC\",Z9500\nPRESIDENT,RESTUARANT ASSOCIOF GRTR WASHI,Y4000\nSales,IPWireless,Y4000\nOwner,Valley View Pediatrics,H1130\nL H BENSON ASSOC INC,,F3100\nprofessor of philosophy,Michigan State University,Z9500\nDVM,PET LOVERS ANIMAL CLINIC,Y4000\nOCCIDENTAL OIL & GAS CORP,,E1110\nA J ROSS CENTURY 21,,Y4000\nCAREINSITE,,Y4000\nVICE CHAI,UMB FINANCIAL CORPORATION,F0000\nSTERN & MILLER,,Y4000\nMAPLE DIE MOLD,,Y4000\nSENIOR E,RICOH AMERICAS CORPORATION,Y4000\nSPOKANE COMM COLLEGE,,H5100\nRetired,Pape Material Handling,Y4000\nPresident,David J Villari & Associates,Y4000\nLIBRARIAN,NYU LANGONE MEDICAL CTR.,H2100\nEXECUTIVE,KLYN NURSERIES,Y4000\nVice Chairman,Harbour Group Industries,M0000\nREAL ESTATE AGENT,WILLIAMS,F4200\nVICE PRESIDENT,PODSHOW,C5140\nASSISTANT REGISTRAR OF VOTERS,CITY OF NEW HAVEN,X3000\nDoctor,The Livingston Group/executive,K2000\nPresident,\"TLC Engineering, Inc.\",B4400\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,SOUTHWESTERN AUTOMATED CLEARING HOUSE,G0000\nCHIEF MEDIA - DIGITAL OFFICER,LINCOLN CENTER FOR PERFORMING ARTS,G6100\nPRESIDENT,AMERICAL MANAGEMENT CO.,J5100\nCEO,HOSPITAL CORP OF AMERICA,H2100\nProfessor,Southern Il Universi,Y4000\nphysician,St Joseph Community Health,J1200\nOwner,Laurel Oil,Y4000\nSVP and Head of Ship,\"Overseas Shipholding Group,Inc\",T6000\nChief Executive Officer,Sierra View District Hospital,H2100\nRegistered Nurse,University of Portland,H5100\nBUSINESS,DELTA ANESTHESIA PCM,H1130\nPresident and Ceo,Revlon Inc.,M3300\nOwner,Lee Holding Co.,Y4000\nChief Financial Officer,Infinia Corporation,H4100\nALLEGHANY CORPORATION,,F4300\nADMIN,KAUFMAN ROSSIN/ADMIN,K1200\nCommunications Tech,Raytheon Polar Services,J1200\nPresident,Stonyfield Farm,A2000\nPARTNER,MAD RRIVER LUMBER,Y4000\nCURRY & FRIEND,,Y4000\nPRODUCER,AGED IN WOOD/PRODUCER,Y4000\nCOACH,UAH,Y4000\nSALES,SEBIN METAL CORP,M2200\nPRESIDENT,CHEMSULTANTS INTL.,Y4000\nAPPLIED GRAPHICS INCORPORATED,,J7400\nPresident,\"Superior Group, Inc\",Y4000\nOwner/Financial Consultant,Watson Financial Services,F5000\nBOB WOOLF ASSOCIATES,,C2900\nQUEENS MED CTR,,Y4000\nBUSINESS OWNER,BREEN CONSULTING GROUP,Y4000\nINSURANCE WOR,BURNS AND WILCOX LTD.,Y4000\nEngineer,National Computer Center,Y4000\nPresident,Morries Automotive Group,T2310\nPRIEST,ROMAN CATHOLIC CHURCH,J7120\nHGA ARCHITECTS AND ENGINEERS,,B4200\nC.E.O.,Industrial Reunidas Sao Jorge,Y4000\nO BRIEN & CALIO,,K2000\nPRIN,GREENWICH INVESTMENT MANAGEMEN,F2100\nReal Estate,IDS Real Estate Group,F4200\nPrivate investigator,Fletcher Investigations,Y4000\nKEITH L DAVIDSON & ASSOCIATES,,K1000\nOwner,Viatales Sports Bar,Y4000\nANCO INSURANCE,,F3100\nCONSULTING,CSP ASSOCIATES,G5270\nBUSINESS,NORTHEASTERN DISTRIBUTING,G2850\nZASTROW CHIROPRACTIC,,H1500\nCEO,Best-Pure Drinking Water,G2600\nBuilder,Southern Originals Llc,B2000\nHomemaker,Homemaker,M4300\nRAF TECHNOLOGIES,,C5000\nEXECUTIVE,MARTIN HAMBERGER & ASSOC.,Y4000\nConsultant,Civil Twilight LLC,Z9500\nTELEPHONY,T.R.C. ENGINEERING SERVICES INC.,Y4000\nPartner,SLCC,Y4000\nFILM PRODUCER,PIONEER PARTNERS,Y4000\nREAL ES,JERRY B. EPSTEIN MANAGEMENT,F4000\nEmergency Physician,Childrens Emer Svcs,H1100\nFood Service,PACIFIC GOURMET,J1200\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,SONY COMPUTER ENTERTAINMENT AMERICA,C5120\nOwner,Douglas Electric Company,Y4000\nPRESIDENT/C.E.O.,\"NEW MEDIA GATEWAY, INC.\",Y4000\nFARM CAPITAL SERVICE,,Y4000\nSCIENTIST,CARNEGIE MELLON UNIVERSITY,H5100\nCEO,DELTIC TIMBER CORP,A5000\nREAL ESTATE DE,SOUTHERN DEVELOPMENT,F4000\nEXECUTIVE,SABRA HEALTH CARE REIT,F4100\nSEARCH CONSULTANT,C.M.R.W.,K0000\nMANAG,NORTHWESTERN MUTUAL LIFE INS.,F3100\nMARKETING CONSULTANT,MARKETING RESOURCES,G5210\nSr. Vice President,American Retirement Corp.,H2200\nLAWYER,\"SAN FRANCISCO PUBLIC DEFENDER'S OFFICE\",Y4000\nOwner/Operator,Yam City Oil Company,E1100\n\"physician, mensch\",\"Nemours Cardiac Center, duPont Childre\",Y4000\nSUPERIOR JOINING TECHNOLOGIES,,Y4000\nDYNAMIC COMPUTER SALES,,C5100\nEngineer/Manager,Webb Murray & Associates Inc.,Y4000\nPRESIDENT,CBS CORP,C2300\nMANA,RITTENHOUSE FINANCIAL SERVICES,F0000\nCONTRACTOR,ALFRED PALMA LLC,B1000\nPresident,Ideal-Supreme Coffee Service,J5100\nTeacher,So Hum Unified School Dist,X3500\nCFO,\"Decolam, Inc\",Y4000\nPresident & CEO,\"Trades Unlimited, LLC\",B0500\nSENIOR POLICY FELLOW,THIRD WAY,X4000\nOWNE,BOB ROBISON COMMERCIAL FLOORIN,Y4000\nEXEC,TOM SAWYER CAMPS,J1100\nPresident,Matrix Properties Corporation,B2000\nAMERICAN CHECK CASHING,,F5500\n\"CONDISCO, INC\",,Y4000\nRON TONKIN LINC MERCURY,,T2300\nSurgeon,Marshfield Clinic,H1130\nMILBERT WEISS ET AL,,K1000\nATTORNEY,LING & SPALDING,K1000\nAttorney,\"Kaylor & Kaylor, P.A.\",K1000\n\"WOOD, BURNEY, COHN & BRADLEY P C\",,K1000\nV.P. SALES & MARKETIN,\"FOCUS ON, LLC\",Y4000\nCEO,CULLINAN PROPERTIES,F4000\nATTORNEY,BCBST,Y4000\nREAL ESTATE,SHEFFIELD HOMES/REAL ESTATE,B2000\nCNC CONSULTANT,CNC OVERLOAD,Y4000\nFinance,Tradewinds Investment Management,F2100\nPresident,\"Davis Vandenbossche Agency, Inc.\",F3100\nAdministrative,University of Illinois at Chicago,H5100\nCommunity Banker,Self,G0000\nFRONTIER,,Y4000\nReal Estate Devleoper,Requested,F4000\nSales,Finish Lines LLC,Y4000\nMANAGING MEMBER,STEIDEL PENSIONSOLUTIONS,Y4000\nFOX TRANSPORT CO,,T0000\nWRITER,SELF-EMPLOYER,G0000\nSALES,LIPHATECH,Y4000\nPRODUCER,MJZ,J1200\nBUSINESS OWNER,PARAGON DATA SERVICES,Y4000\nAnthropologist,Self-employed,J7400\nYakima County Mgr.,First American Title Insurance Co.,F4300\nTIMBER COMPANY,SELF-EMPLOYED,A5000\nSPARK PRODUCTIONS,PRODUCER,J7400\nEducation/Workforce Development Leader,Cael,Y4000\nSALES,,C1300\nOPERATIONS,HAYWOOD COUNTY SCHOOLS,X3500\nCORPORATION FOR PUBLIC BROADCASTING,,X4000\n\"DIRECTOR, BUSINESS DEVELOPMENT & STRAT\",SOUTHERN STAR,E1140\nSales Manager,E. M. C.,C5130\nPHYSICIAN,JIAN SHENG ZHAO,Y4000\nEDUCATION,MEASURED SUCCESS,Y4000\nHARRIS TRUST AND SAVINGS BANK,,F1200\nPRESIDENT,\"THE GOLLMAN GROUP, INC.\",Y4000\nSENIOR VICE PRESIDENT & GENERA,CTAM,C2200\nEXECUTIVE,ESTERLINE,D2000\nINSURANCE AGENT,RET.,X1200\nPRESIDENT/OWNER,AV-TECH INDUSTRIES INC.,Y4000\nARCHITECT,BBG BBGM,Y4000\nREAL ESTATE BROKER,MANDRIN REALTY CORP.,F4200\nATTORNEY,OXYGEN UNLIMITED,Y4000\nCHIEF,US NAVY,X5000\nATTORNEY,\"FAIRCHILD, PRICE, HALEY LLP\",Y4000\nPARTNER,LEWIS JOHS,K1000\nPURCHASING AGE,STATE OF IOWA DASGSE,X3000\nSELF EMPLOYED IN BEIJING PRC,OBUTTO,Y4000\nENGINEER,INFORMATION REQUESTED,C5000\nCEO,\"Ace Relocation Systems, Inc\",Y4000\nSUMMIT ENERGY GROUP,,E1600\nCONSTRUCTION,SELF-EMPLOYED,J6200\nBroker,York Realty,F4200\nROSE ASSOCIATES,,F4500\nABBOTT LABS,,H4300\nInvestment Banker,mzsports.com,C5140\nLAKE MEAD AIR,,Y4000\nSOFTWARE EN,\"OPNET TECHNOLOGIES, INC\",Y4000\nPresident,Valter Captial Corp.,Y4000\nGENERAL MANAGE,BUMBLE BEE FOODS LLC,G2350\nOWNER,CHAIRMASTERS INC,Y4000\nMONTEVERDE MCALEE & HURD PC,,K1000\nPresident and COO,TruNorth,Y4000\nEXECUTIVE VICE PRESI,F.N.F.,Y4000\nPARTNER,ALLGOOD PEST CONTROL,G5700\natty,paul weiss et al,K1000\nBOARD MEMBER,LOUISVILLE BATS,Y4000\nBANKER,STONEHENGE STRUCTURED FINANCE PARTNERS,Y4000\nREQUESTED,REQUESTED,M5300\nConsultant,The Tron Group,Y4000\nActor,CBS Guiding Light,C2200\nCLEMENTS ASSOCIATES/PRESIDENT/OWNER,,Y4000\nHARE WYNN MEWLL & NEWTO,,K1000\nAttorney,\"Nelson Boyd, PLLC\",K1000\nTOLGYESI KATZ HANKIN & KATZ PA,,Y4000\nSHEETZ INC,,F1100\nSmall Business Owner,\"Gemini Tech Services, LLC\",Y4000\nBest Efforts,\"Better Baked Foods, Inc\",G2000\nVICE PRESIDENT BUSINESS OPERATIONS,\"GRANITE CONSTRUCTION, INC./VICE PRE\",B1000\nAttorney,\"Haik, Minvielle & Grubbs\",K1000\nLAWYER,JACKSON- DEMARCO- ET AL,J1100\nPresident CEO,Chopper Trading LLC,J1200\nPARK PLACE BUILDERS INC,,B2000\nOWNER,CABE LAND CO,B5200\nSVP & TREASURER,\"WENDY'S INTERNATIONAL INC.\",G2900\nEXECUTIVE VIC,ADCO ELECTRICAL CORP.,B3200\nHARBOURTON ENTERPRISES,,F3300\nREILLY-PARKS BROTHERS,,Y4000\nMedical Librarian,Virginia Mason Medical C,H0000\nHILL AND DOOR/COMPUT,letter sent,Y4000\nIt Support Tech,Perotsystems,C5130\nDirector,\"Ag New Mexico, FCS, ACA\",A4000\n\"JONES, DAY ET AL\",,K1000\nProfessor,Eastern Mennonite Univer,H5100\nMARIA LEWIS P A,,Y4000\nEULISS OIL,,E1100\nDirector - Executive,At&T Mobility,C4300\nPhysical Therapist,Pacific Medical,H0000\nOWNER,LOS LUPES RESTAURANT,G2900\nPRES,BRANSCUM CONST,Y4000\n\"VP, Strategic Sales\",NDS Americas,C1100\nPresident,Bucks County International Inc,T2300\nSr Vice President,ASCGeosciences,Y4000\nRUDNICK & WOLFE,,G1000\nPHYSICAL THERAPIST,SELFEMPLOYED,H1700\nSales,Visant Marketing Services,Y4000\nATTORNEY,FOSTER WHEELER INC,B1000\n\"SCRUFFY MURPHY'S IRISH PUB & RESTAU\",,G2900\nGORMAN & RAUH,,Y4000\nMANAGING DIRECTOR,RSM MCGLADREY INC,F5100\nPROFESSOR,WASHINGTON & LEE U.,H5100\nConsultant-President,American Educations Institute,J5100\nContract Specialist,Crawford Pacific Inc.,Y4000\nATTORNEY,\"ROSENTHAL MONHAIT AND GODDESS, PA\",Y4000\nREAL ESTATE,AVECO PROPERTIES,Y4000\nANESTHESIOLOGIST,PROFESSIONAL ANESTH,H1130\nREAL ESTATE DE,DEVELOPERS OF NEVADA,F4000\nGeneral Partner,Open Prairie Ventures,F2500\nTORO-AIRE INC,,M2300\nGARY WILLIAMS PARENTI FINNEY LEWIS,,K1000\nVenture capital,NYCommunity Investment Company,F2500\nInvestment Mgmt,Ramer Equities,F2100\nCO CHAIRM,ENFRANCHISEMEN FOUNDATION,F2100\nLAWYER,LIBRARY OF CONGRESS,X4200\nSOUTHEAST ELECTRIC CO-OP,,E1610\nDental Hygienist,\"Dr. Shale, DDS\",H1400\nBenefits Manager,IDB Holdings,Y4000\nBUILDER,BACCO CONSTRUCTION COMPANY,B1500\nConductor,City Opera,C2900\nON CALL SUBSTITUTE TEACHER,PRECHOOL,Y4000\nMANAGER,DOD,X5000\nPush Cart Manufactur,Carretas Inc,Y4000\nEXQUISITE FORM INDUSTRIES INC,,M3100\nCHIEF FINANCIAL OF,\"O'CHARLEY'S INC.\",Y4000\nATTORNEY,DEVELOPING WORLD MARKETS,Y4000\nExecutive Vice President,Roberson Transportation Serv.,T0000\nSENIOR VICE PRESIDENT,AMERICAN AIRLINES,T1100\nCouncilman,Santee,Y4000\nPhysician,Wooster Eye Center,H1120\nMILNES ENGINEERING,,B4400\nLawyer,Law office of Derrick Gibbs,Z9500\nINVESTMENT BA,BROADSPAN CAPITAL LLC,F0000\nRESEARCH PROF.,UCLA,H5100\nBOARD OF EDUCATION OF NEW YORK,,X3500\nExecutive Vice President,\"Kelly & Associates Insurance Group, I\",F3200\nEXECUTIVE,MAHER TERMINALS LLC,T6000\nGeneral Cansel,The Cohen Group,G5210\nATTORNEY,WATSON BLAIR LAW GROUP,Y4000\nDirector,Starion Financial,F1100\nCOLLEGE STUDENT,,F4100\nADMINISTRATO,GALENA-STAUSS HOSPITAL,H2100\nSELF EMPLOYED,LIEN TRANSPORTATION,B1500\nLOBBY,WASHINGTON ALLIANCE GROUP INC,K2000\nLANDLORD FARMER,SELF,G0000\nTEACHER,MOUNDS PARK ACADEMY,H5100\nSpecial Events Producer,\"Fireworks, Inc (Japan)\",Y4000\nOwner,Progressive Concrete,B5100\n\"PA MANUFACTURERS' ASS'N\",,F3400\nPresident,Copes Network Center,Y4000\nEXECUTIVE,ALLEN SYSTEMS GROUP,Y4000\nFILM PRODUCER,,Y0000\nBUSINESS OWNER,ACE HARDWOOD FLOORING INC.,Y4000\nTULANE UNIVERSITY,,J5100\nAUTO DEALER,MOSES AUTOMOTIVE,T2000\nMORTGAGE BANKER,PACIFIC SOUTHWEST MORTGAGE,F4600\nCOVINA VALLEY HOSPITAL,,H2100\nST OF CA,,X3000\nDENTIST,\"CALIFORNIA DENTAL GROUP, GLENDALE - VE\",Y4000\nMINNESOTA STATE,,Y4000\nC C POLLEN,,Y4000\nT,\"Prince George's Community College\",H5100\nATTO,DRESSMAN BENZINGER LAVELLE PSC,Y4000\nCASH CONNECTION,HMC,F5500\nCONSULTANT,SELF EMPLOYED RIVER BLUFFS STRATEGIES,G5200\nMANAGEMENT,JUNE STREET ARCHITECTURE,B4200\nSales,Eisai Inc,H4300\nFAMILY WATER ALLIANCE,,Y4000\nOWNER,LIGHT FARMS,Y4000\nExecutive,SDCF,Y4000\nUTTZ INC,,Y4000\nPRESIDENT & CEO,AVERITT EXPRESS,Y4000\nCEO,NORTH FULTON REGIONAL HOSPITAL,H2100\nMONOGRAM COMMUNITIES INC,,Y4000\nATTORNEY,STILES & HARBISON,K1000\nATTORNEY,\"MCCABE & MACK, LLP\",K1000\nEXEC,TECHINICAL TRAINING CONSULTANT,H5200\nExecutive,\"Move, Inc\",Y4000\nINFO REQUESTED,Fertility & Endoscopy Center,Y4000\nPHYSICIAN,WESTFIELD RED CORPOR,Y4000\n\"JONES, DAY, REAVIS, POG\",,K1000\n\"WEGMAN'S\",,Y4000\nPresident,Venice Italian Restaurant,G2900\nLONGS HUMAN RESOURCE,,Y4000\nWIDEN COLOURGRAPHICS LTD,,C1300\nPILLSBURY WINTHROP LLP,ATTORNEY,Z9500\nLINDSAY MOSES & BARKLEY,,Y4000\nEXECUTIVE,PIASECKI AIRCRAFT CORP,D2000\nOWNER,CLS INC.,Y4000\nGODSEY ASSOC ARCHITECTS,,B4200\nATTORNEY,SCHERR AND LEGATE,K1000\nEXECUTIVE VICE PRESIDENT,DOWLOHNES GOV. STRATEGIES,K2000\nCOUNTY OF BUNCOMBE,,X3000\nSCOTT HOLDINGS,SELF,H3000\n\"COMMUNICATION INVESTMENT GROUP, LLC\",,Y4000\nATTORNEY,BIRDSEY PROPERTY SOLUTIONS,F4000\nINSURANCE,\"MED-PAY, INC.\",H3000\nPRESI,\"WESTECH INTERNATIONAL, INC. B\",Y4000\nSUNSHINE INVESTMENTS,,Y4000\nORTHODONTI,BLACK HILLS ORTHODONTICS,J1100\nDREAMWORKS ASSOCIATION,,C2400\nOwner,Italian Express Restraurant,Y4000\nLAW PROFESSOR,LEWIS & CLARK LAW SCHOOL/LAW PROFES,H5170\nCPA,Wegner LLP,Y4000\nCHIEF FINANCIAL OFFICER,MOUNTAIRE CORPORATION,A2300\nPARTNER,WATERDOG GOLF,Y4000\nRETIRED PRES AN,WINSTON HOTELS INC.,X1200\nWESTMORELAND CO HOUSING AUTHORITY,,Y4000\nBUSINESS OWNER,\"MARKET STREET INVESTORS, INC.\",F3400\nBusiness Owner,Voyager RV Resort,T9000\n\"Maine Attorney General's Office\",,K1000\nTelecommunications Analyst,3M,M2300\nPHILIP O REDWINE & ASSOCIATES,,Y4000\nVC,NOVAK RIDDLE,Y4000\nBusiness Manager,Hookstratten & Hookstratten,J7400\nCOO,\"Brothers Trading Co, Inc\",G2400\nCONSULTANT,N2COMMUNICATIONS,Y4000\nCONSULTANT,SOSA CONSULTATION,G4600\nLEBRANCHE & CO,,Y4000\nMgr,Christopher Brooks,Y4000\nPresident,Dominion Dealer Solutions,C1100\nDISTRIBUTOR,NUTRI-WEST 4-LIFE,Y4000\nPresident,Executive Search & Placement,G5250\nMERCHANT SEAMAN,AMERICAN OVERSEAS,LT500\nDesigner III,Kelly Technical Services,Y4000\nDOWING PARTNERS INC,,Y4000\nPHYSICIAN,PHYSICIANS FOR WOMEN PC,Y4000\nENGINEER,POLYLOK INC.,M2300\nOperations Support Mngr,Alexian Brothers Hospital,H2100\nPRESIDENT,OLD SURVEY LIFE INSURANCE,F3300\nAttorney,Myron M Cherry & Associates,K1000\nVARIOUS,VARIOUS,Y2000\nPRINCIPAL,QUANTUM MEDIA ASSOCIATES,C2200\nAttorney,Slawson Cunningham,K1100\nPRESIDENT,STUYVESANT PLAZA INC,F4000\nDESMAR INCORPORATED,,Y4000\nTOM RYAN DISTRIBUTION,,Y4000\nRealtor,Prudential Georgia Realty,F4200\nW F X S T V DAVIS,,Y4000\nMD,KUAF,H1130\nSERVICE CONNECTED VETERANS,,Y4000\nattorney,Van Cott Bagley Cornwall & McCarthy,Y4000\ninvestment adviser,retired,X1200\nVIDEO EDITOR,U EDIT VIDEO,Y4000\nYACHT SALESMAN,WESLEY DILWORTH,Y4000\nORTHODONTICS,VANDERBILT UNIVERSITY,H5100\nC F O,SOUTHERN CHAMPION TRAY,M7000\nKEVIN SIMS,,H0000\nQA Manager,Yahoo,C5140\nSONNENSHEIN NATH,,K1000\nCALIFORNIA DRIVING SCHOOL,,H5200\nINVESTOR,BASS ENTERPRISES,A3000\nAMOS FARMS,,A1000\nVeterinarian,Mustang Animal Health Cl,A4500\nAttorney,Hertz Schram & Saretsky PC,Y4000\nEYE PHYSICIAN & SURGEON,SELF-EMPLOYED,H1120\nHALSTED TERRACE NURSING CENTER,,H2200\nCONSTRUCTION C,ORLANDO CONSTRUCTION,B1500\nBUSINESS OWNER,MESA CARD COMPANY,Y4000\nEXECUTIVE VICE PRESI,ITT INDUSTRIES,C5000\nATTORNEY,GARFIELD & HECHT PC/ATTORNEY,Y4000\nPRESIDENT,STEWARD TITLE & ESCROW,J7400\nDIRECT,GOLDNER HAWN JOHNSON & MORRI,F2100\nFORESTER,OREGON DEPARTMENT OF FORESTRY,Z9500\nHOSPITAL ADMINISTRATOR,TENT HEALTHCARE,H2100\nPractical Nurse,Woodland Retirement,J1200\nDIR. GOVT. AFFA,IT INDUSTRY COUNCIL,J1200\nSELF-EMPLOYED PHYS,\"SMOOTHSKIN, INC.\",Y4000\nRETAIL MANAGER,SPORTS AUTHORITY,Y4000\nOWNER,CHEYENNE AIR SERVICE,Y4000\nInvestor,Jonathan Laeger,Y4000\nFRED HUTCHINSON CANCER RESEARCH,,H2000\nCEO,FIRST NATIONAL BK-BELOIT,F1100\nKLIETHERMES HOMES &,,J7120\nCPA,\"SMITH,KESLER & CO./CPA\",F5100\nVice Chairman,Inland Real Estate Corporation,F4000\nSAWYER DRILLING SVC,,E1120\nMARK ASSET MANAGEMENT CORP,,F2100\nCONTRACTOR,\"IMC CONSTRUCTION, INC.\",B1500\nLEWIS BOWMAN ST CLAIR WAGNER,,Y4000\nLUMBERMAN,B.J. FORTNER HARDWOOD,Y4000\nTrustee and Special,IBT,LT300\nRequested,Howell Communications,J7400\nOwner,\"About Solutions, Inc.\",Y4000\nAdministration,Sprint,C4200\nCEO,TEXAS CERTIFIED DEVELOPMENT CO.,Y4000\nPRESIDENT,BRIARTEK INC.,C5130\nHEALTH SYSTEM EXECUTIVE,PROGRESSIVE AUTO CARE,Y4000\nPAIN MEDICINE ANESTHESIOLOGIST,ORTHOPEDIC CENTER OF PALM BEACH COUNTY,H1130\nCHIEF EXECUTIVE OFFICER,\"JORDANO'S INC.\",Y4000\nCEO,COMMERCIAL COIN AND LAUND,Y4000\nREAL ESTATE BROKER,AMERICAN REALTY OF NW FL INC,F4200\nSALES,CUSTOM ENGINEERING/SALES,B4400\nTHOMA CRESSEY PARTNERS,,F2500\n\"SENIOR DIRECTOR, GO\",PHARMATHENE INC,H4500\nPresident,\"Restore America's Estuaries\",Y4000\nPRES,TRANS AMERICAN EQUIPMENT CORP.,B6000\nGREEN CONSTRUCTION CO,,B1500\nExecutive,Spartan Motors Inc,T2100\nHUDSON INTERNATIONAL,,E1220\nLATIN AMERICAN IMPORT/EXPORT/COMMER,,Y4000\nTOYOTA SOUTH/GM/VP,,T2310\nKEITH CONSTRUCTION CO INC,,B1500\nPR CONSULTANT,\"GOV'T\",Y4000\nDAIRY RANCH,SELF EMPLOYED,A2000\nERNEST&YOUNG,,F5100\nPresident,Manson Construction Co,B1500\nGOVERNMENT RELATION,ARNOLD & PORTER,K1000\nSALES,BAYER,A1500\nPartner,\"Lam Vinson & Company, Llp\",Y4000\nPSYCHIATRIST,HAZARD PSYCHIATRIC CENTER,Y4000\nEXECUTIVE,CWE INC,Y4000\nDOCTOR,PHOENIX ASSOCIATES,J1100\nDean,Self Employed,H1130\nPICKMAN FOUNDATION,,X4100\nHOBBS STRAUS DEAN & WALKER,,K2000\nFRANCHISE OWNER,BUFFALO WILD WINGS,J1100\nEGI,,F0000\nLIBRARY TECHNICIAN,\"CO ST UNIV, RETIRED\",X1200\n3 RIVERS MEDICAL CTR,,H1130\nPRINCIPAL,HARVEST MGMT LLC,F2100\nRetired,Engineer,B4400\nReal Estate,Roseland Partners,J5100\nGENERAL MANAGER,CAL-FRESH PRODUCE,A1400\nMC DEE SERVICES,,G1200\nChaplin,Retired,X1200\nSafety and Loss Control Manage,Black & Veatch,B4000\nLawyer,Law Office of Gregory J. Pagano,K1000\nGeneral Manager,Hersruds of Sturgis,T2300\nPRESIDENT,SMITH & SACCO PUBLIC RELATIONS,Y4000\nATTORNEY,\"SCHELL, BRAY\",J1200\nINLAND MORTGAGE CO,,F4600\nSENIOR STAFF,VERITAS ANALYTICS INC.,Y4000\nDETROIT MED CENT CORP,,H2100\ngovernment affairs,JHS Consultants,Y4000\nI DO NOT HAVE A JOB,I HAVE NO EMPLOYER,Y4000\nLEADER ELECTRIC SUPPLY,,Y4000\nHERNANDEZ & SON PLUMBING,,B3400\nCHAIRMAN,COMING INC,C4000\nCASS MEDICAL CENTER,,H2000\nSpecial Assistant to the GP,IUPAT,LB100\nTINDELL CORPORATION,,B1000\nMANAGIN,PUBLIC ISSUE MANAGEMENT LLP,Y4000\nEVP,PARAMOUNT PICTURES,C2000\nPharmacist,Valley View Pharmacy,G4900\nHOUSE WIFE,,E1210\nTHE BATH & BEYOND SHOWROOM,,G4600\nGREAT LAKES COMMUNICATIONS,,Y4000\npresident,Bailey Family Foundation,X4100\nSILVERLEAF RESORTS,,F4100\nOperation,Covenant Church,X7000\nPrincipal,Walter/edwards Group,K2000\nEXECUTIVE,CAPITAL MANAGEMENT,F4000\nPHYSICIAN,UROLOGY PC,H1130\nInsurance Real Estate,Self,F4000\nFINANCE,\"E-Z MART STORES, INC.\",G4300\nDomestic Engineer,None,K1000\nADMINISTRATOR,RCRMGT/ADMINISTRATOR,Y4000\nAttorney,\"Siegel,OConnor,ODonnell\",K1000\nPRINCIPAL,\"RF WHITE, INC.\",G5210\n,ELECTRIC SUPPLY COMPANY OF RALEIGH,B5500\nREAL ESTATE A,HOM REAL ESTATE GROUP,F4000\nPARTNER,\"ARENT FOX, LLP\",K1000\nCONSTRUCTION,COURTLAND HOMES,B2000\nPRESIDENT,READY MIX USA LLC,B5100\nBanker,South Coastal,Y4000\nCONTINUING LECTURER,PURDUE UNIVERSITY,H5100\nDiagnostic Radiologist,Kent General Hospital,H1130\nattorney,\"Harrison Law Office, PC\",K1000\nATTORNEY,RICHARDSON & BIRDSONG,K1000\nRealtor,Chesapeake Realy,J5100\nMarketing/Sales,B2B Communications,Y4000\nPhysician,Muncie Oglaryngollogy,Y4000\nPRESIDENT,THE COMPANY JET,Y4000\nMANAGER,DELPHI CAPITAL MANAGEMENT,Z9500\nUNKNOWN,PODESTA GROUP,K2000\nPrivate Invester,Viking Capital Partners,Y4000\nSELF EMPL BUSINESSMAN,,G0000\nMARKETING MANAGER,,B4000\nLANDAUER INC,,G5200\nBASIC FIBERS,,Y4000\nOWNER,ROBERTS SEWING CENTER INC.,G4400\nPHYSICIAN/PROFESSOR,\"UNIVERSITY OF CALIFORNIA, SAN FRANCISC\",H5100\n\"COO, PARTNER\",TIMBER PRODUCTS COMPANY,A5000\n\"VICE PRESIDENT, OPERATIONS AND MARKETI\",THRIFTY WHITE STORES,G4900\nANGELO INVESTMENT COMPANY,,F7000\nPRUDENTIAL LOCATION,,Y4000\nInsurance Agent,AMERICAN INCOME,L5000\n\"ETG, INC\",,Y4000\nLYONS LANG NICKEL ET AL,,Y4000\nTEACHER,WORLD AFFAIRS COUNCIL,Y4000\nPRESIDENT,DOYLE SECURITY SERVICES,Y4000\nPolice Officer,CRANBURY TOWNSHIP POLICE DEPARTMENT,X3200\nFOLZ VENDING,,G4850\nMANAGER,Bell South,K2100\nPHYSICIAN,\"ASSOCIATES IN PM&R, PC\",Z9500\nINVESTOR,THE FOUREM ORGANIZATION,Y4000\nPRESIDENT,1ST STATE BANK,Y4000\nATTORNEY,WESTBROOKS LAW,Y4000\nAttorney/Partner,McConnell/Ferguson,K2000\nENGINEER,\"ENERGETICS TECHNOLOGY CENTER, INC\",Y4000\nMED ADMIN,21C,Y4000\nV.P.,BRUCE & MERRILEES ELEC.,B3200\nSTATE FARM,,F3400\n\"INFORMATION MANAGEMENT CONSULTANTS,\",,G5270\nMANAGE,MADISON RESEARCH CORPORATION,D2000\nAUTO SALES,BILTMORE MOTOR CORP.,Y4000\nFINANCIAL ANALYST,CANENT TECH INC,Y4000\nCEO,Reveal Imaging,H4100\nMANAGEMENT,MARVIN WINDOWS,M4100\nWITTNAUER WORLDWIDE LP,,M9300\nPUBLIC POLICY,FEDERAL GOVERNMENT,X3000\nGENERAL,ANDREASSEN & BULGIN CONST.,B1500\nPRESIDENT,SERVICEMASTER,G5200\nREAL ESTATE,HUDSON ADVISOR,Y4000\nPHYSIC,BROOKHAVEN OB-GYN ASSOCIATES,H1130\nManager,Chessmaen Lounge,Y4000\nASSISTANT SUPERVIS,VERIZON WIRELESS,C4300\nEXECUTIVE,ABX AIR,T1500\nVICE CHAIRMAN,BANK OF VIRGINIA,F1100\nHYJCK & FIX INC,,K2100\nTAX CONSULTANT,PROTAX,Y4000\nPRESIDENT,ALAN MCILVAIN COMPANY,A5000\nATTORNEY,\"KIDS II, INC\",Y4000\nVP & GM,MCWANE,B5300\nSYKESVILLE CONSTRUCTION CO INC,,B1500\nEICHHORN EICHHORN & LINK,,K1000\nOwner,\"Telephone Communications, Inc.\",C4100\nINVESTOR/CONSULTANT,SELF-EMPLOYED,F5000\nAttorney,William B Terry Chartered,Y4000\nPRESIDENT,SKE INTERNATIONAL,Z9500\nSELF EMPLOYED,GERTRUD JORDAN,Y4000\nACG INC,,K2000\nGENERAL MANAGER,BRONCO WINE COMPANY,G2820\nSenior Partner,Christian Smith & Jewell,K1000\nCASTING DIRECTOR / P,SELF / CHELSEA PRODUCTIONS,Y4000\nEMPLOYEE B,THE BENECHOICE COMPANIES,Y4000\nCHAIRMAN AND CEO,BERKSHIRE HATHAWAY,F2600\nCeo,Province Healthcare,H2100\nIRWIN UNION,,F1100\nInvestments,\"Mitilija, LLC\",Y4000\nEngineer,Information Requested,J7120\nPresident,\"Cole Hardwood, Inc.\",A5000\nMARKET DEVELOPMENT,THE DOW CHEMICAL COMPANY,Z9500\n\"CO-FOUNDER, CO-OWNER\",THE SOAP OPERA,J1200\nChairman,\"Downey Chandler, Inc.\",J1200\nMANAGING PARTNER,ALTA OFFICE SERVICES,Y4000\nVP-Millwork,D W Distribution,G3000\nOWNER,BLUE RIDGE LOG CABINS,Y4000\n,MCCORMICK GROUP INTERNATIONAL INC.,Y4000\nVICE PRESIDENT HUMAN RESOURCES,FAUQUIER HOSPITAL,H2100\nBANKER,IBC BANK,F1100\nVice President,\"Ricchetti, Inc\",J7400\n\"KRAUSS, KATZ & ACKERMAN INC\",,Y4000\nEMERITO ESTRADA RIVERA ISUZU DE PR,,Y4000\nCRNA,SOUTH CENTRAL EMERGENCY MED,H1710\nown and Manage Rental Properties,Self employed,Y4000\nATTORNEY,PEABODY & ARNOLD LLP,Y4000\nPHYSICIAN,\"CAMILLE G. CASH, M.D.\",H1100\nProgrammer,\"Internet Services Group of Florida, ll\",Z9500\nProgrammer,Pearson,C1100\nKAYLE SCHOLER,,K1000\nFIRST VP,CBRE,F4100\nAttorney,Milbank Tweed Hadley McCoy LLP,K1000\nMATERIAL SERVICE CORPORATION,,F4200\nCREEKWOOD CORPORATION,,Y4000\nPHYSICIAN,FEDERAL EMPLOYEE,X3000\nPROMEDICUS HEALTH GROUP,,H1100\nNURSE MANAGER,UC DAVIS MEDICAL CENTER,Z9500\n0Owner,MVShipayrd,Y4000\nVP,GULF & OHIO RAILWAYS,T5100\nPAR,SQUIRE SANDERS & DEMPSEY L.L.P.,K1000\nINSTRUCTOR,IPP,Y4000\nBookkeeper,Lakeside Eye Clinic,Y4000\nMANUFACTURER,STAMPINGS INC.,M5000\nPresident,\"Bossong Commerical Delivery, Inc\",Y4000\nAdvertising Executiv,Pinpoint Advertising,G5210\nSystems Analyst,Fedex,T7100\nSTAFF,FRIENDS OF ELLIOT RICHARDSON,Z9500\nREPRESENTATIVE,CT HOUSE OF REPRESENTATIVES,X3000\nPRES,SAINTS MEMORIAL MEDICAL CENTER,H2100\nSchool Administrator,Montgomery County Schools,X3500\nRegional  Vice Presi,\"D & W Food Centers, Inc.\",G2400\nSales,Mimeo.Com,C5140\nSALES,SHELL LUBRICANTS,J1100\nGovernment relations,\"CenTra, Inc\",T3100\nTeacher,Episcopal Academy,Z9500\nCOUNCIL FOR EXCELLENCE IN GOVT,,Y4000\nKSTW TV WASH,,C2100\nGastroenterologist,Gastro Associates,H1130\nBUSINESS OWNER,C.F. BURGLER,Y4000\nATTORNEY,BACKER & BACKER,K1000\nPROF VOLUNTEER,,F4100\nTOM & LINDA PLATT INC,,M3100\nKUTLER BROTHERS,,J5100\nHAYNSWORTH SINKLER BOYD,,K1000\nEngineer,Ancra International Llc,Y4000\n\"VP Gov't Affairs\",Michigan CU League,F1300\nPORTFOLIO MANAGER,CONTRURIAN CAPITAL,Y4000\nPresident,Management Resource Group,Z9500\nINFORMATION REQUESTED PER BEST EFFORTS,INFORMATION REQUESTED PER BEST,Y2000\nVice President,Peoples State Bank,F1000\nScientist,C.E.S.,Y4000\nprofessor,Whitman College,H5100\nKESSLER & JONES,,Y4000\nATTORNEY,CAMMACK & STRONG PC.,K1000\nTHERESA CELIA-FATASCHI,,Y4000\nEngineer,Suncoast Design Services,Y4000\n,\"PULMONARY MEDICINE ASSOCIATES, LLC\",H1100\nATTORNEY,\"GOLDSTEIN, GELLMAN, MELBOSTAD, HARR\",Y4000\nOwner,Concierge Services,J1200\nCEO,FC Capitol Partners,F0000\nINVESTOR,VALTUS REAL ESTATE LLC,F4000\nEXECUTIVE,ADP MGT.,Y4000\nAUDIO LOGICS,\"ALLIED HEARING CENTER, INC.\",Y4000\nPETRIN VENDING COMPANY,,G4850\nDIR OF GLOBAL SECURITY & TECH POLICY,CISCO SYSTEMS,C5110\nOWNER,ARMSTRONG TRANSPORTATION,Y4000\nRUSSELL REYNOLDS ASSOCIATES,,G5250\nPartner,Facilitated Solutions International,Y4000\nGIANT FOODS WASHINGTON,,G2400\nPODIATRIC PHYSICIAN,SELF-EMPLOYED,Y4000\nCOMMUNITY RELATIONS SPECIALIST,SELF,Y4000\nFIMAT USA INC.,,F2200\nAttorney,Info Requested,X3000\nAUTO DEALER,CENTRAL AUTO,Y4000\nNATIONAL ASSN OF STATE ENERGY DIREC,,E1000\nSmall Truck Line,Self-Employed,Y4000\nTEACHER,HIGH SIERRA,H5100\nUS HEAD OF PRIME BRO,UBS,F2100\nWEST CHESTER ANESTH ASSOC,,H1130\nBUSINESS MANAGER,BCTGM LOCAL #6,Y4000\nBRUCE DUTHIC PHD,,Y4000\nPOLITICAL DIRECTOR,IRONWORKERS,LB100\nDONOHOE JAMESON & CARROLL,,K1000\nMARINELLI & MONISI,,K1000\nSTRUCTU,CAAGLEY HARMAN & ASSOCIATES,Y4000\nPRESIDENT/GENERAL MANAGER,KNAB-AM,C2100\nECLIPSE DPM,,Y4000\nOWNER,CHOICE COUNSEL INC.,Y4000\nPhysician,Cnmg,Y4000\nProject Leader,Carrier Corporation,M2300\nBROWN INVESTMENT ADVISORY & TRUST C,,F2100\nSR. VP BUSINESS DEVE,THE SHAW GROUP,B1000\nNurse Practionar,Planned Parenthood MNSD,J7150\nPRESIDENT,SCHULER COMPANY INC.,F4200\nJACKSON PRODUCTS/T.M.T./GENERAL MAN,,Y4000\nINVESTOR,BROOKLINE AVE. PARTNERS,J1100\nVeterinarian,\"Newtown Veterinary Clinic, Inc\",A4500\nWENTE BROS.,,G2820\n\"O'TOOLE'S RESTAURANT\",,G2900\nMarketing,Richard E. Lewis,Y4000\nRTS REALTY,,F4200\nTHE WILLOWS INC,,Y4000\nVP/GM,INTUIT/VP/GM,C5120\nConsultant,\"Dineen Consulting, LLC\",Y4000\nProperty Management,Information Requested,F4500\nSOLAR INSTALLER,\"AMECO SOLAR, INC./SOLAR INSTALLER\",Y4000\nLIGHTING EFFECTS,SELF EMPLOYED,M6000\nBUSH REALTY CO,,F4200\nUNIVERSITY ORTHOPAEDIC CLINIC,,H1130\nWALL STREET PROPERTY CO,,Y4000\nProfessor,University Of Indiana,H5100\nCoach,PCC/ACFC,Y4000\nHEWATT ENTERPRISES,,Y4000\nADDIS WECHSLER & ASSOCIATES,,C2400\nPUBLIC ADMIN,,Y4000\nBUTTONWILLOW LAND & CATTLE CO,,A1100\nACIN GENERAL MANA,DREXEL UNIVERSITY,H5100\nCONCEPT IN TIME INC,,F4100\nINDUSTRY RELATIONS,PIONEER HI-BRED INTERNATIONAL,A4000\nBANKER,STATE BANK,F1000\nAttorney,Inclusive Communities Project,Y4000\nOWNER/PRESIDENT,BYRNES FARM INC.,Z9500\nATTORNEY,\"FRANK, GALE, BAILS, MURCKO & POCRASS,\",K1000\nCONVAID SPECIALTIES,,Y4000\nRETIRED,CHICAGO PUB SCH SYS,G2900\nEducator,Niet,Y4000\nBusiness Owner,GAC Contractors,B1000\nContract/Trademark S,\"Autodesk, Inc.\",J1200\nINVESTMENT BANKER,GREEN GLOBAL INVESTMENTS,F2300\nALTA GROUP,,G5300\nCONSTRUCTION SERVICES,PECKMAN MEDIA,Y4000\nCOLT INVESTMENTS INC,,F3100\nDOCTOR,A FAMILY MEDICAL GRO,H1100\nExecutive Director,Oregon Natural Resources Counc,JE300\nSALES,BABCOCK & WILCOX CO,E1700\nMartial Arts Instructor,Self employed,G5000\nCEO,United South End Settlements,Y4000\nDEALERSHIP DEVELOPMENT,,Y4000\nASSISTANT LIBRARIAN,,X4200\nMortgage Banking,State Bank Mortgage,B2000\nCO-OWNER & PRESIDENT,MASTORS & SERVANT LTD.,Y4000\nEXECUTIVE,GOLDEN TRIANGLE,Y4000\nMEMBER/REAL ESTATE,THE SINAY COMPANY,F4000\nOccupational Therapist,HCR Manorcare,Y4000\nUROLOGIST,\"JOHN WHITE, MD\",H1130\nATTORNEY,JOHNSON AND JOHNSON/ATTORNEY,J1100\nNot Employed,Environmentalist,J1200\nENERGY INVESTMENTS,SELF-EMPLOYED,E1000\nBERENERGY,,E1120\nPastor,Trinity St Marks Ucc,Y4000\nINVESTMENTS,\"SPOTSWOOD CAPITAL, LLC\",F2100\nPartner,\"Cohen, Cooper, Estep & Mudder Llc\",Y4000\nDON JENKINS AUTO GROUP,,Y4000\nPresident,\"Foster-Miller, Inc.\",D3000\nManf Engineer,Self-Employed,B4400\nCHEMICAL MANUFACTURING,SELF-EMPLOYED,G0000\nPresident,Acorn Advisors,Z9500\nCONTRACTOR,NEESER CONSTRUCTION,LT300\nATTORNEY,\"JO ANNE SIMON, P.C.\",K1000\nCASE BIGELOW & LOMB,,K1000\nRADIOLOGIST,JCMG,H1130\nMARKETING,FEDERAL CARTRIDGE COMPANY,Y4000\npresident,\"Thompson Realty Co., Inc.\",F4200\n\"Associate Vice Pres, Federal Relations\",Georgetown University,H5100\nFREELANCE AUDITOR,SELF-EMPLOYED,Y4000\nEngineer Administrator,At&T,C4100\nVICE PR,IMS RECYCLING SERVICES INC.,M2000\nLegal Secretary,Davis & Gilbert,K1000\nMARKETING & P,\"PMH ENTERPRISES, INC.\",Y4000\n\"Pampy's Restaurant\",Owner,G2900\nJESSAMINE CO,,Y4000\nCPA,PETTY & LANDIS,F5100\nVice Chairman,Capital Research & Mgmt Co,J1100\nG A WINTZER & SONS,,A3100\nInvestments,Greenwood Capital,Y4000\nCONSULTANT,NEW NAUTICAL COATINGS,X1200\nSALES,JOHN BURNHAM & CO.,F4500\nEPIC,TRADE SHOWS,Y4000\nPHYSICIAN,ELLIS HOSPITAL,H2100\nDEUTSCHE BANK A. G.,,F1100\nPERFORMANCE COATINGS,\"PPG INDUSTRIES, INC.\",M1600\nFIRST LADY,MARANTHA COMMUNITY CHURCH,X7000\nPRETTY SCHROEDER &,,Y4000\nLAWYER,\"ROBERT L. SHAPIRO, ATTORNEY AT LAW, A\",K1000\nNON-PROFIT ORGANIZATION MGR.,\"SELF; CHERYL KAPLAN, CONSULTANT\",G5200\nVICE PRESIDENT,TERRA CONSTRUCTION INC.,Y4000\nADVERTISING,MADISON MEDIAWORKS,Z9500\nBACHMAN CHEVROLET,,T2300\nHERZING UNIVERSITY,PRESIDENT,G0000\nCHC,Humana,F3200\nAnesthesiologist,Best Efforts,H1130\nDEPT OF ARMY DPW,,X5000\nreitred,Not employed,X1200\nAMF MANAGEMENT SYSTE,,Y4000\nPediatrician,Casa Alegre Pediatrics,H1130\nFuneral Director,Sol Levinson and Brothers. Inc.,G5400\nPresident,Defiance Asset Management,G5270\nUNC -Chapel Hill,,J7400\nDIRECTOR,STREET SQUASH,J7700\nATTORNEY,\"SHUPING, MORSE & ROSS, LLP\",K1000\nDRULEY ENT INC,,Y4000\n\"BAKER-O'NEAL HOLDINGS\",,Y4000\nart Consultant,\"Andrew Butterfield Fine Arts, LLC\",Y4000\nCriminal Defense Attorney/Trial Consul,Self employed,K1100\nDirector of Operations,National Collegiate Honors Council,Y4000\nVIC,COASTAL MECHANICAL SERVICES LLC,Y4000\nOWNER,\"SHERDEC TREE SERVICE, LLC\",Y4000\nDW CLOSS CO,,Y4000\nSHELIA MANNING CASTING,,C2400\nATTORNEY,N.A.K.B.,K1000\nMEADOWLANDS FOOT & ANKLE,,Y4000\nPresident Chief Exec,E2 Ecta Inc.,Y4000\nAttorney,\"Reynoldson, Van Werden, Lloyd et al\",Y4000\nDENTIST,\"CHILDREN'S DENTAL CENTER\",H2100\nCEO,RICHARD HEALTH &ASSO,Y4000\nKERN C WATER AGENCY,,Y4000\nPresident,Nicholas And Company,G2910\nSchool Nurse/Coordin,Harris County Schools,X3500\nLAW OFFICES OF NED GOOD,,K1000\nREAL ESTATE,DENNIS ORGANIZATION,F4000\nSINGER,ENTERTAINER,J1200\nAttorney,\"Seitz Van Ogtrop & Green, P A\",K1000\n\"Bean, Kinney & Korman, PC\",,K1000\nRETIRED,RETIRED FAA,X1200\nSURGEON,CLEVELAND CLINIC FOUNDATION,H1100\nMANAGER NATIONAL ACC,SWS OF FLORIDA,G2850\nGEORGE MASON U (STATE OF VA),,H5100\nOWNER,WILLIS INVESTMENT COUNSEL,F7000\nAssistant Account Executive,Edelman Public Relations,G5210\nEXECUTIVE,HERMAN KAY COMPANY,M3100\nEXECUTIVE,A. ARNOLD WORLD CLASS RELOCATI,T3100\nFIN CONSULTANT,,J1100\nPROFESSOR,U OF NEVADA,J1200\nPresident/CEO,\"Archer Lion, Inc.\",B2000\nEXECUTIVE,DONNEWALD DIST. CO.,J7400\nBOATBUILDER,RETIRED,X1200\nPRESIDENT,\"FREDERICKS FUEL & HEATING SERVICE, INC\",E1170\nGRAPHICS EDITOR,LAKE GEORGE GUIDE,Y4000\nInvestor,Aperture Venture Partners,F2500\nATTORNEY,SPACE EXPLORATION TECHNOLOGIES,T1700\nCLOVIS COMMUNITY HOSPITAL,,H2100\nPRESIDENT,SWIM FINANCIAL CORP,F0000\nCEO,SNP PHARMACY,G4900\nATTORNEY,EPA/ATTORNEY,X3000\nFUNERAL DIR,RUTHERFORD FUNERAL HOME,G5400\nMBC,,T0000\nEngineer,Caltech/JPL,Z9500\nCHIEF EXECUTIVE OFFICER,TRANSPORTATION AGENT GRID,Y4000\nBUSINESS EXECUTIVE,NORTHLIGHT FINANCIAL,F0000\nATTORN,\"ROTHNER, SEGALL & GREENSTONE\",LG400\nPHYSICIAN,\"DANIEL BORRESON, MD\",H1100\nSTATE BANK OF CROSS PLAINS,,F1200\nCONTRACTOR,FISHER CONSTRUCTION CO,JD100\nOwner,Benefits Administrators & Consultants,Y4000\nT J & L CONSTRUCTION CO,,B1000\nCEO,SECURITY HOLDINGS,F5200\nLAWYER/EXECUTIVE,IMAGEM USA,Y4000\nGENERAL MANAGER,MOYER PACKING,Y4000\nHomemaker,Info Requested,C4300\nPilot,International Air Response,Y4000\nAttorney,Hynes Law Offices LLC,K1000\nPASTOR,CHURCH AT ROCK CREEK,X7000\nMANAGER,CAVALRY ASSET MANAGEMENT,F2100\nDENTIST,\"WILLIAM G. LINEBARGER, DDS\",H1400\nPresident,Arcadia Biosciences,A4000\nCATMAN EQUIPMENT,EXECUTIVE,Y4000\nOWN BUSINESS,SELF-EMPLOYED,Y4000\nAMI KENDALL REGIONAL MEDICAL CTR,,H0000\nManager,James W Berling Engineering,B4400\nFIDELITY CAPITAL COMPANY,,F2100\nMANAGER,OSBORN HEIRS COMPANY,Y4000\nHAGERTY SCHWANK DILEN,,Y4000\nOFFICE MANAGER,DENTON DANCE CONSERVATORY,Y4000\nLAWYER,SELF EMPLOYED,J7600\nCA STATE SENATOR,STATE OF CA/CA STATE SENATOR,X3000\nSalon Owner,Self employed,G0000\nCNO,CJW MEDICAL CENTER,H2100\nChase Field LLC,,F2300\nSr Systems Engineer,Scci,B4400\nUetec,Emmy Bldg Co,B2000\nPresident & CEO-Firs,\"Wellmark, Inc.\",F3200\nStore Owner,BP Oil Company,E1110\nPresident/Owner,\"Nutriom, LLC\",G2100\nCAPITAL Z PARTNERS,,K1000\nNURSE-MIDWIFE,Not employed,H1710\nRetired,\"May's Drug Stores, Inc\",G4900\nVP BUS. DEVELOPMENT,VERIZON,C4100\nVETERI,MOUNTAINVIEW ANIMAL HOSPITAL,A4500\nPRESIDEN,THE FREE ENTERPRISE NATION,G1300\n\"Sr Director, Government Affairs\",\"Parmathene, Inc\",Y4000\nPresident,Barden Corporation,M5000\nBARKER BECK & COLLINS,,F3100\nSAGRES PARTNERS LLP,,Y4000\nOWNER,BOALES INSURANCE AGENCY,F3100\nCHAIRMAN,IRI INTERNATIONAL CORP.,Y4000\nFINANCE,SATELLITE ASSET MANAGEMENT,F2100\nBusiness Owner,Choice Furniture,M4100\nApex Systems,,G5250\nWINCO CORPORATION,,B3000\nExecutive,Leedsworld,Y4000\nRecording Sectretary,LIUNA Local 935,Y4000\nCEO,Pinon Management Inc,Y4000\nTEACHER,BRUNSWICK SCHOOL,H5100\nMEDIA EXECUTIVE,GENERATE HOLDINGS LLC,Z9500\nPRESIDENT,MILLER REMICK CORPORATION,Y4000\nCHEECHAKO BAR,,LT300\nPROGRAM COORDINATOR,MISS DEPT OF EDUCATION,Z9500\nPRESIDENT AND CEO,PRICATE EQUITY GROWTH CAPITAL COUNCIL,F2600\nINFORMATION REQUESTED,BLUE CROSS BLUE SHIELD OF TN,F3200\nSENIOR A,INTL ASSOC. OF FIRE CHIEFS,Y4000\nREALTOR,FILLMORE REAL ESTATE/REALTOR,F4000\nIadr,,Y4000\nPRIVATE AIRCRAFT MAIN,SELF-EMPLOYED,Y4000\nInvestment Management,Morgan Stanley,Z9500\nWILLIAMS & BAILY LAW FIRM,,K1100\nDirector - State Relations,Blue Cross Blue Shield of Michigan,F3200\nATTORNEY,VEDDER PRICE KAUFMAN & KAMMHOLZ,K1000\nBuyer,Maryland Quality Meats,J1200\nOwner,Bowman & Associates,Y4000\nC & P TELEPHONE COMPANY,,C4100\nINVESTMENTS & BANKING,SELF-EMPLOYED,F2100\nVolunteer,No,Y2000\nREQUESTED,NEAR NORTH INSURANCE,F3100\nConsultant,Northcenter Foodservice,G2000\nDIRECTOR,THERIAC ENTERPRISES,Y4000\n\"ZULRES D'AGOSTINO HOBLOCK & GREISLE\",,K1000\ngovt affairs,PhRMA,H4300\n.Information request,Information Requested,Y2000\nTechnical Specialist,IBM,C5100\nFOOD SCIENCE ASSOC,,G2000\nPresident,Microtech Mach. Co.,Y4000\nPARTNER,1345 CLEANING SERVICE CO,G5000\nPRESIDENT,PPI BENEFIT SOLUTIONS,Y4000\nCONTRACTS MANAGER,VERISIGN,C5130\nSCOTT SNYDER INC,,A1200\nMOJAVE PIPELINE OPERATING,,Y4000\nASBILL & BECK,,Y4000\nCONSTRUCTION,SUNSET EXCAVATING INC.,B3600\nEXECUTIVE,ATLANTIC BLUE TRUST INC.,Y4000\nTHE MITCHELL COMPANY INC,,Y4000\nCONSULTANT,KEYSTONE STRATEGIES,Y4000\nInvestment Manager,\"Walnut Asset Management, LLC\",F2100\nFALCON RICE MILL,,A1600\nBROKER,WINDERMERE/BROKER,F4200\nCPA,\"Jordan, Jones, CO\",F5100\nPresident,Lhi Mortgage Inc.,F4600\nChief Executive Offi,Alice Manufacturing Company,M8000\nGUN SALESMAN,SELF-EMPLOYED,M5300\nTEACHER/CHOREOGRAPHER,TEXAS STATE UNIVERSITY,H5100\nPRESIDENT & CEO,CABLE ONE INC.,C2200\nTechincal Writer,Harland Financial Solutions,F0000\nEXECUTIVE,GMAC COMMERCIAL HOLDINGS,F1100\nTravel Agent,Adventures in Travel,Y4000\nSmall Business Owner,Hipps and Sons Coins and Precious M,Y4000\nHINDERT ASSOCIATES,,Y4000\nPROJECT MANAGER,ABC HOME AND COMMERCIAL SERVICES,Y4000\nPRESIDENT,\"UNIQUE SOLES, INC.\",Y4000\nBuilder,JCC Homes,B2000\nAttorney,Cablelabs,Y4000\nGuidance Counselor,Woodsville Elementary School,Y4000\nSalesman,Lifetime Marketing,Y4000\nSales,Masterhome Inc,Y4000\nAssociate,Self - Employed,G0000\nVP/COUNSEL,NBWA,G2850\nSelf Employed,Le Video Store,Y4000\nOwner,Village Motor Works,Y4000\nEngineer,Fehr & Peers,Y4000\nBusinessman,First Mark Corporation,Y4000\nFORMADE INC,,Y4000\nEXECUTIVE,HARRISON CONCRETE,B5100\nA F BELL & ASSOCIATES,,Y4000\nUNION SAVINGS BANK/JANUS HOTELS/CEO,,F1200\nVP Business Developm,Magna Legal Services,Y4000\nNASA,ASTROPHYSICIST,X0000\nRICE MILLING,LA RICE MILL,Y4000\nSustainable Real Est,Madison Partners,F4000\nceo,VVSi,J1200\nFOREST PLYWOOD SALES,,A5200\nRealtor,McNair Real Properties,F4200\nPROFESSOR,NEW YORK UNIVERSITY,H5100\n\"GROEN, LAVESON AND GOLDBE\",,K1000\nWASHINGTON MOTOR CO,,T2300\nFARMER,KAL AG,Y4000\nVENTURE CAPITAL,TWJ CAPITAL LLC,F0000\nOccupational therapi,\"Children's Therapy Network\",Y4000\nADMINISTRATOR,SIERRA VISTA HOSPITAL,H2100\nSAFARI USA INC,,Y4000\nPHONE INSTALLATION,,Y4000\nInformation Requeste,Applied Information Resources,Y4000\nOwner,Juergensen Consulting Group,Y4000\nHOME DEVELOPER,ROCK ROSE DEVELOPERS,Y4000\nREALTOR,CAPITAL COMMERCIAL REAL ESTATE,F4000\nPresident,Top Star Inc,E1170\nTOWN OF ROWLEY,,X3000\nMAGNA LOMASON CORP,,T2200\nSvp & Chief Financial Officer Global C,NBC Universal,M2300\nCHAIRMAN,TRI-C RESOURCES INC,Y4000\nCB ASSOCIATES,,Y4000\nSKIRBUNT & SKIRBUNT CO,,Y4000\nExecutive,Tulsa World,B2000\nConsultant,James E. Boland & Associates,K2000\nATTY,COLLERAN OHARA/ATTY,K1000\nCEO,\"HEADWALL PHOTONICS, INC.\",Z9500\nPROGRAM DIRECTOR,DUKE UNIVERSITY,JE300\nPRESIDENT/CEO,EDUCATION FIRST FCU,F1300\nMCJUNKIN CORP,,M2300\nExec. Dir.,Saratoga Economic Development,Y4000\nSenior Executive,Sierra Pacific Industries,A5000\nDEPUTY DIRECTOR MU,UNITED STATES AF,X5000\nANCHOR FINANCIAL SERVICES,,F4600\nProject Manager/Educator,Retired,X1200\nVOICE FACULTY,THE LONGY SCHOOL OF MUSIC,J7400\nEXECUTIVE VP,ANADARKO PETROLEUM,E1120\nVeterinarian,Animal Welfare Society,Y4000\nBUSSINESS MGT.,CARDON CASTA CONCERN,Y4000\nBUSINESS AGENT,IBEW,J1200\nVP,CACI,D9000\nSHELBY PROPERTIES,,Y4000\nLARIO OIL,,E1100\nCREATIVE ARCHITECTS & PLANNERS,,B4200\nRETIRED,MICHIGAN STATE UNIVERSITY,Z9500\nC T TOOL & MFG CO INC,,M5100\nPHYSICIAN,COMMUNITY HEALTH NETWORK,H3000\nInvestment Banker,THAYER CAPITAL PARTNERS,F2600\nRESTAURANTEUR,JOHNS RESTAURANT,G2900\nCONSULTANT,MCBRIDE & ASSOCIATES,Y4000\nHealth Care Executiv,PROVINCE HEALTHCARE,H2100\nRet Psychiatric Soc,N/A,X1200\nVICE PRESIDENT,BIOTECHNOLOGY,Y4000\nGEOLOGIST,5 STATE ENERGY CORP.,J1100\nCONSULTANT,,A8000\nTEMPORARY SPECIALISTS,,G5250\nEXECUTIVE,THE UNIVERSITY OF TOLEDO,H5100\nRealtor,Colliers Wilkinson & Snowden,Y4000\nPRESIDENT/CEO,RS ANDREWS OF TIDEWATER,Y4000\nEXECUTIVE V,MILLER AND LONG COMPANY,B1500\nBUCKLEY GROUP,,Y4000\nTNT BESTWAY,,Y4000\nMIDWEST LAND MANAGEMENT,,Y4000\nReal estate development,Vesta Corporation,F4000\nMCLAUGHLIN TRANSPORTATION,,T0000\nretired,U of F,H5100\nBANKER`,TEXAS BANK AND TRUST,F1100\nCAILLON HEALTH SYSTEM,,H0000\nBusiness Development,Christies,F5500\nINVESTOR,HANOVER CAPITAL PARTNERS,Y4000\nPRESIDENT,BERKSHIRE LIFE INS.,F3100\nSr. VP,Barrett American,B2000\nC.E.O. & OWNER,RENA WARE INTERNATIONAL,Y4000\nSTARLINE CREATIONS,,Y4000\nREAL ESTATE DEVELOPME,SELF-EMPLOYED,B2000\nINVESTOR,TENGRAM CAPITAL PARTNERS,Y4000\nOwner,York County Stove Shop,Y4000\nOWNER,OMNI RECYLCING,Y4000\nbusinessman,Aloe Investment Co.,F2000\nRUDIN MANAGEMENT INC,,J1200\nEDUCATOR,CHAPMAN UNIV,H5100\nSenior Counsel,Arthur J Gallagher & Co.,F3100\nProduct Management/Asset Management,Invesco,F2100\nPRESIDE,THE CAPITAL GROUP COMPANIES,F2100\nPRESIDENT,KUHLMANN FINANCIAL SERVICES INC.,Y4000\nOIL & GAS EXP,THE PUCKETT COMPANIES,E1150\nGOLCO INDUSTRIES,,Y4000\nDoctor,Wayne Radiologists,H1130\n24 FREIGHT SALES,7,T3100\nOFFICE MANAGER,DR. J. ROBERT DAVIS,Y4000\nATTORNEY,COLSON HICKS & ELDSON,K1100\nATTORNEY,GENON CORPORATION,Y4000\nGENERAL COUNSEL,ACCENTURE,G5270\nBUINESS,SINCLAIR BROADCAST GROUP,C2100\nALSTON-BIRD LLP,,K1000\nEXECUTIVE - INVESTMENTS,\"KINSEY INTERESTS, INC./EXECUTIVE -\",E1120\nConsultan,Advisory Board Company,H3000\nDIRECTOR PUBLIC AFFA,POTLATCH,A5000\nWAVELL-HUBER WOOD I,,Y4000\nOwner,Martins E Turk Inc,B2000\nChairman of Board,DTS,Y4000\nOwner,Rig Chem Inc.,Y4000\nHEALTHCARE CONSULTANT,ALJ & ASSOCIATES,Y4000\nBANCO SANTURCE,,F1100\nSales Consultant,\"Elite Racing, Inc.\",Y4000\nPediatric Dentist,Yale-New Haven Hospital,H2100\nPRODUCT MANAGEMENT,FRIEDKIN COMPANIES INC.,T2300\nOwner,Otto Candies LLC,T6200\nBOSS,MOSS INC.,G2900\nDrive Committee Political Fund,,LT300\nEXECUTIVE,HORNICK CORP.,Y4000\nLAKE VILLAGE COMM BANK,,Y4000\nC.F.O.,NEXGEN COAL SERVICES LTD.,E1210\nOwner/CEO,\"ROC Energy, Inc\",E1000\nTHOMPSON VENTULETT STAINBACK,,Y4000\nEXEC DIR,UNITED HEALTHCARE SERVICES INC,H3700\nATTORNEY,LARIVEE & LIGHT,Y4000\nDentist,Liu DDS,H1400\nCOM STORE OWNER,,Y4000\nSTAY-AT-HOME DAD,,F7000\nFOOD SERVICE MANAGEMENT,\"WATSON SERVICES, INC.\",Y4000\nST JOHNS SERVICE CO,,E5000\nGENERAL CONTRACTOR,HEDRICK BROTHERS CONSTRUCTION,B1500\n\"DIRECTOR OF RESEARCH, RECRUITER\",THE HIGGINS GROUP,Y4000\nOWNER,CHARMING SHOPPES,G4100\nDOCTOR,\"DEPT. OF VETERAN'S AFFAIRS\",X3000\nMANAGER,BROCKWAY MORAN + PARTNERS,F2600\nCONSTRUCTION-REAL ESTATE,,B1500\nVECTOR MONKETHIC CORP,,Y4000\nPSYCHOLOGIST,TEXAS STATE UNIV,H5100\nREAL ESTATE SALES,ULTIMATE PROPERTIES,F4000\nManaging Director,Ogilvy Government Relations,Z9500\nVICE PRESIDENT,NEW PARTNERS,G5260\nMONARIOS CONTRACTING,,B1000\nDirector,CA Botana International,H4000\nDIRECTOR GOVERNMENT AFFAIRS,DAVITA/DIRECTOR GOVERNMENT AFFAIRS,H3200\nCHAIRMAN & CEO,\"FRESH MARK, INC.\",G2300\nPhysician,Duane McWaine,H1100\nConsulting,MKG Consulting,K2000\nGEOMETERY GROUP,,J1100\nWriter,Trust for Public Land,JE300\nPRINCIPAL,CIRCON INTERNATIONAL/PRINCIPAL,Y4000\nPresident,Inside Design Inc.,Y4000\nReal Estate,The Davis Companies,F0000\nINFO REQUESTED,COLORTYME,Y4000\nExecutive,Grocery Manufacturers Association,Z9500\nDIRECTOR-MARKET & REG POLICY,\"PPL ENERGYPLUS, LLC\",E1600\nDUB INTERNATIONAL,,Y4000\nPresident,Adams Holdings,Y4000\nPRINCIPAL,FOUNTAIN LAKE SCHOOL DISTRICT,X3500\nGOVERNMENT RELATIONS,QEP RESOURCES INC.,E1120\nPHYSICIAN,CIHS,H1100\nMITSUBISHI INTERNATIONAL CORP,,T2310\nOWNER,AMERICAN PLACEMENT SERVICES,Y4000\nCEO A,\"TWIN CITY FAN COMPANIES, LTD.\",Y4000\nCEO,SOUTHTRUST,F1100\nCONSULTANT,HD BAKER & COMPANY HAWAII LLC,Y4000\nADVERTISING,CONDIT MARKETING COMMUNICATIONS INC,Y4000\nEXECUTIVE CHAIRMAN,RLJ LODGING TRUST,F4100\nCEO,Kendall Jackson,G2820\nPUBLISHER,COVEY PUBLISHING,J6200\nPARTNER,\"WLLEY, REIN & FIELDING\",K1000\nHARPER MEDICAL GROUP,,H1100\nOwner/president,\"Michael's Service Inc.\",Y4000\nEXECUT,FIRST COMM INSURANCE COMPANY,F3100\nJET BLUE AIR WAVE,CEO,T1100\nEXECUTIVE,CAMECO,Y4000\nAttorney,\"Goldstein, Gellman, Melbostad\",K1100\nEXEC.,BROOKSIDE VENEERS LTD.,Y4000\nATTORNEY,SCHROETER GOLDMARK & BEN,Y4000\nCEO,WILCOX & FINAN,Y4000\nATTORNEY AT LAW,\"GENOVA, BURNS & VERONA, ESQS.\",K1000\nRETIRED,THE COCA-COLA CO.,X1200\n\"Cpa, Office Manager\",Information Requested,F5100\nREAL ESTATE IINVESTOR,MENO ENTERPRISES,J1200\nEvent Coordinator,Self employed,G5200\nATTORNEY,\"JHL CAPITAL GROUP, LLC\",F0000\nPRESIDENT,COMMERCIAL PRINT & IMAGING,C1300\nBROKER,CONSULTANT,G5200\nPRESIDENT,INVENTORS HALL OF FAME,Y4000\nEscrow Officer,Commonwealth Lawyers Titile Co,Y4000\nCOMPUTER FOR,COMPUTER SYSTEMS GROUP,Y4000\nPartner,Salas & Co,Y4000\n\"LEONARD, STREET & DEINARD\",,JH100\nPRESIDENT,CENTRAL PROPERTIES LLC,F4000\nR/E Developer,Galloway Sunset,F4100\nCEO,DE RITO PARTNERS,Y4000\nATTORNEY,\"LEVINE, BLASZAK, BLOCK & BOOTHBY\",K1000\nINVESTMENTS,LOEB PARTNERS REALTY L.L.C.,F2100\nHOUSE OF REPRESENTATIVES,MEMBER OF CONGRESS,X3100\nExecutive,Vinemark,Y4000\nCLEANING SERVICE INDUSTRIES INC,,G5200\nLAWYER,RHODE ISLAND HEALTH CENTER ASSOCATION,Z9500\nCSO,FLEXTRONICS/CSO,C5000\nMCM PROPERTIES,,F4000\nchemical engineer,Bay Area Air Quality Mngmt Dist,Y4000\nDAIRYMAN,THREE D DAIRY,A2000\nNurse,\"University of New Mexico, College of N\",Z9500\nVice President - Compensation & Benefi,Chesapeake Energy,E1120\nOIL FIELD CNSLT,WILDCAT ENT INC,Y4000\nPRIVATE EQUITY FIRM PA,LNK PARTNERS,F2600\nRealtor,Weichert Realtors,K2000\nBUSINESMAN,RETIRED,X1200\nSTOCK BROKER,GILDER GAGNON AND HOWE,F2100\nManager,Southern Wine,Y4000\n\"TRADER FRED'S\",,Y4000\nDirector of Racing,Mountaineer Gaming Resort,Y4000\nBUTCHER COMPANY,,Y4000\nTruck Driver,Alabama Motor Express,T3100\nV.P. Director Capita,Commercial Real Estate,F4200\nWESTFIELD COMPAN,,Y4000\nArt Historian,Yale,H5100\nCONTINENTAL ILLINOIS VENTURE CORP,,F2500\nCFO,\"Mantech International, Inc.\",D9000\nEXECUTIVE,BRIDON,Y4000\nMERTENS OI,,Y4000\nLAWYER,,B3200\nDEAN OF LEBOW COL,DREXEL UNIVERSITY,H5100\nGK MURRELL CONSULTANTS,,Y4000\nCPA,CAIN & ASSOCIATES/CPA,Y4000\nPresident,Simmon Ins Agcy Inc,F3100\nOwner,Montera Cattle Co,A3300\nAttorney,Meyers & Associates,K2000\nAttorney/mediator,Self-Employed,K1000\nHr/Od Director,Jost Chemical Co,M1000\nJOHNSON MORTGAGE CO,,F4600\nLobbyist,Lambert And Associates,Y4000\nACCOUNTANT,OURISMAN AUTOMOTIVE OF VA.,Z9500\nPRESIDENT,HANCOCK HOLDING CO.,F1100\nDEBT COLLECTOR ATTORNEY,SELF,J5100\nBanker,\"CLG, LLC\",J1100\nPROPERTY SUPERVISOR,LEASING & MANAGEMENT COMPANY/PROPER,Y4000\nVeterinarian,Adobe Animal Hospital,J1200\nMGMT PRESIDENT,STRUCTURES - LONG ISLAND,D2000\nPHYSICIAN,WHEATON FRANCISCAN HC,H2100\n\"KGV, LLC\",Managing Director,G0000\nRESEARCHER,MEHARRY MEDICAL COLLEGE,H5150\nSOUTHERN ILLINOIS CONSULTANTS FOR K,,H3000\nAttorney,Otterbourg Steindler,K1000\nPolicy Analyst,Environmental Defens,Y4000\nCEO,Mission Regional Medical Center,H2100\nREAL ESTATE FINANCE,RETIRED,X1200\nRealtor,WA Nelson and Associates,Y4000\nPathologist,\"Wilson Pathology Services, PA\",H1130\nPhysician,Aria Orthopedics,H1130\nCEO,T.B. RICHARD EILIS,Y4000\nDeveloper,Loma Verde Properties,J1200\nPartner/Manager,Camilla Boutique,Y4000\nC E O,\"Harvey Development Company, Inc\",Y4000\nPresident and Founder,Crossing The Goal Ministries,Y4000\nWOOD/PATEL/CIVIL ENGINEER,,Y4000\nVP,FEDERALIST GROUP LLC,K2000\nVP OPERATIONS,PENN METAL FAB INC.,J1100\nFinancial Management,Self-employed,J1200\nChairman,Highlander Partners,Y4000\nCAMPBELL DISTRIBUTING CO INC,,G2850\nCONTROLLER,THE RAYLON CORPORATION,Y4000\nChairman,\"Lunsford Capital, Inc.\",F0000\nMANAGER,AT & T WIRELESS,C4300\nDIVISION,WELLS FARGO CARD SERVICES,F1100\nORTHOPEDIC SURGEON,SELF,F1100\nPresident,Social Science Research Council,Y4000\nSales,Star Lincoln,Y4000\nATTORNEY,\"G. MICHAEL FATALL, LLC\",Y4000\nBusiness Owner,Maryland Radiology,H1130\nTEACHER,INCARNATION CHR,Y4000\nMCCAW CELLULAR COMMUNICATIONS,,C4300\nRABB PENNY LAW FIRM,,K1000\nCEO,YETC,Y4000\nChief Of Staff,Congressman John Tierney,Y4000\nFLIM & TV PRODUCTER,TRAILBLAZER STUDIOS,Y4000\n\"CLARK ENTERPRISES, INC./CHAIRMAN/C.\",,F4000\nNEONATOLOGIST,\"PEDIATRIX MEDICAL GROUP OF TENNESSEE,\",H1130\nAccountant,AMS,Y4000\nPRESIDENT & CEO,COMMONWEALTH INC.,Y4000\nBUSINESS,PRES FORGE INDUSTRIES,Y4000\nfaculty,Tufts University,H5100\nSELF,,M2100\nATTORNEY,\"SLIZ, DRAKE, ESTES & ASSOC.\",Y4000\nG C HAUENSTEIN & ASSOC,,Y4000\nBILL COLLINS FORD,,T2300\n3RD ENGINEER DIESE,OSPREY SHIP MGMT,LT500\nAccountant,Board Of Pensions,J1200\nConsultant,Juan Johnson Consulting & Facilitation,Y4000\nDental Health Provider,Laurel Lakes Cosmetic Dentistry,H1400\nBUSINES,LUNDELL MANUFACTURING CORP.,Y4000\nCHIEF OPERATING OFFICER,PROBUILD EAST,B2000\nVENTURE CAD,N.E.A.,L1300\nCPA,ANCHIN,Y4000\nTEXTILE SALES,SELF-EMPLOYED,M8000\nReal Estate Services,Laurex Realty Advisors,F4200\nRN RETIRED,NOT EMPLOYED,X1200\nINSURANCE AGENT,PAULTALBERSINS AGENCY INC,Y4000\nAGUILA MANAGEMENT CORP,,F2100\nFUNDRAISER,FOOD BANK OF CENTRAL NEW YORK,Y4000\nMIDWEST MANAGED MONEY,,F2100\nSELF-EMPLOYED,NONE,H1100\nPARC 55 HOTEL,,T9100\nAssoc. Dir. of Admis,St. Johns College,H5100\nASHLEY COUNTY MEDICAL CENTER,,H2100\nPRESIDENT CEO,HANDS ON ATLANTA,Y4000\nCHMIEL & MATUSZEWICH,,Y4000\nVICE PRESIDENT,Qwest-Federal Relations,C4000\nSELF,CHAUNCEY HILL PROPERTIES,F4000\nExecutive,Amsted Rail Group,Y4000\nCEO,SUNVALLEY ENERGY,E1000\nLAWYER,CHAMBERLAIN HRDLICKA,K1000\nPartner,The Condo Company,Y4000\nRn Ceo Administrator,Lanoitan Home Health,Y4000\nGRAY COMPANY,,Y4000\nINSURANCE AGENT,STATE FARM INS,Y4000\nCHATHAM BOAT COMPANY,,Y4000\nCONTINENTAL REALTY CO,,J7500\nPRES,VIRGINIA INTERNATIONAL UNIVERS,H5100\nPRINCIPAL,TARGET POINT CONSULTING,Y4000\nKREIS ENDERLE CALLANDER & HUDGIN,,K1000\nVP OF DEVELOPMENT,KENNEDY LIBRARY FDN,X4200\nRetired,Parkaging Technology,Y4000\nPT Lecturer,Boston University,H5100\nLawyer,Freshfields,K1200\nELECTRICAL ENGINEER,GENERAL MOTORS CORPORATION,J1100\nINSURANCE BROKE,ROSE & KIERNAN INC.,F3100\nActuary,Regence,Y4000\n\"VICE PRESIDENT, CO\",COCHLEAR AMERICA,Y4000\nPHILLIPS ENG,,Y4000\nATTORNEY,\"MORRIS, HAYNES, HORNSBY\",K1000\nPresident,Rgc Holdings Inc.,Y4000\nLAKEWOOD BEHAVIORAL HLTH,,H3800\n* Info requested,Information Requested,K2000\nNON-PROFIT CONSULTANT,MSII,Y4000\nMEDICAL DEVICE COMPANY,SELF,Y4000\nTHE RINGCO GROUP,,Y4000\nGeneral Manager,Lark Builders,B1500\nJEWISH PROFESSIONAL,MORDECAI M KAPLAN CENTER,J5100\nCONSULTANT,MAX AUTO MARKETING,Y4000\nINVESTOR,PAW PARTNERS,Y4000\nTEACHER,CHAFFEY JOINT UNION H.S.D.,Y4000\nNon-Profit Executive,Howard Hughes Medical in,H0000\nOWNER,VAGABOND BLUES,Y4000\nSOUTHER FIDUCIARY GROUP,,Y4000\nLAWYER,RAMOS LAW FIRM,K1000\nTAX DIRECT,ELLIOTT MANAGEMENT CORP.,F2700\nATTORNEY,LEWIS ROCA ROTHGERBER LLP,Y4000\nCONTRACTOR,\"CARETTI, INC.\",Y4000\nSTAFF,MID-SOUTH SYNERGY,E1610\nExecutive,\"WebEx Communications, Inc.\",J1200\nCOUNSEL,UNMC,H2100\nCEO,AMYLIN PHARMACEUTICALS,Z9500\nPresident,Associated Beneft Mgrs. LLC,Y4000\nENGINEER,MESA LABEL EXPRESS,M7000\nHEADMASTER,BLAIR ACADEMY,H5100\nMANAGER,HARMON FND,Z9500\nMELVIN COMPANIES,,Y4000\nPROTOUCH PAINTING,,B3000\nCO-PROPRIETOR,\"AMAUD'S RESTAURANT\",G2900\nTeacher & Librarian,Taos Day School,Y4000\nProfessor,Carnegie Mellow University,H5100\nAttorney,Patton Boggs LLP.,K1000\nPresident,Ready Mixed Concrete,B5100\nMOREHOUSE MACDONALD,,Y4000\nOrthopaedic Surgeon,New York Orthopaedic & Spine,H1130\nBOARD OF DIRECTORS MEMBER,SMITH CENTER,Y4000\nMEMBER,BRUSH HOLLOW INN LLC,Y4000\nATTORNEY,STATE OF TN,F3200\nTourism Cabitnet,Commonwealth of Kentucky,X3000\nPARTNER,PACIFIC TWEED,Y4000\nGFI AMERICA,,J5100\nATTORNEY,VORYS SATER SEYMOR AND PEASE LLP,Y4000\nLobbyist,Quantum Goverment Relations,Y4000\nB & J POWER EQUIP CO,,Y4000\nHIGH PRARIE,,G6400\nSPECTRUM CONSULTING & ASSOCIATES,,Y4000\nNATIONAL CARRIER EXCHANG,,Y4000\nADMINISTRATION,BOEING COMPANY,D2000\nManager,Richs Toy & Gifts,Y4000\nPRESI,INDIANA MORTGAGE FUNDING INC.,F4600\nALEXANDOR ASSOCIATES INC,,Y4000\nbusiness mgr,QUALCOMM Incorporated,C4300\nEDWARD ISAACS & COMPANY,,F5100\nDIRECTOR HEALTH SCIENCES FINANCE,UNIVERSITY OF UTAH,H5100\nAttorney,UW Forestry Center,JE300\nMANAGER,W.B. CONSTRUCTION,B1500\nJO-KEDD INC,,Y4000\nSCHNEIDER REILLY & COSTELLO,,K1000\nAttorney,Kavanaugh Maloney,K1000\nEPIC,,K2000\nExecutive VP,McBee Strategies,K2000\nRESOURC,EWA GOVERNMENT SYSTEMS INC.,Y4000\nCPA,\"Adams, Brown\",F5100\nSAM MINSKOFF & SONS,,Y4000\nATTORNEY,WEBSTER MRAK & BLUMBERG/ATTORNEY,Y4000\nAttorney,Robert Black,Y4000\nMUTUAL COMM SAVINGS,,F1200\nCO-FOUNDER,RAZOR & TIE DIRECT LLC,Y4000\nlibrarian,Hofstra University,H5100\nESSEX INDUSTRIES INC,,J5100\nReal Estate Develope,Redd Realestate Services,F4100\n\"JOHN L O'BRIEN & CO\",,Y4000\nARLOMA CORP,,Y4000\nJEFFERSON HOSPITAL,,H1100\nAttorney,\"McMillian, Rather Bennett & Rigano\",Y4000\nPRINCIPAL,CAPITOL PARTNERS,F4000\nMATHEMATICS PROFESSO,BRANDEIS UNIVERSITY,H5100\nOWNER,RAY MAR INC.,Y4000\nDIRECTOR OF SALES,ANHEUSER BUSCH INC,G2810\nREGISTERED NURSE,CINCINNATI CHILDRENS,H2100\nNAVIGATOR,USAF,Z9500\nAttorney,Seagate Techology,J7400\nCONSULTANT,MCKINSEY &COMPANY,Z9500\nRealtor,\"Re/Max River Cities, Inc.\",F4200\nWARNER PETROLEUM,,E1100\nEDILOCIAL COMUDAINT,,Y4000\nCONTRACTOR,GRACE CONSTRUCTION,B1500\nVICE PRESIDENT,MONSANTO,A4100\n\"MURRAY, SCHEER, & MONTGOMERY\",,K2000\nEnviornmental Consul,Self-Employed,G0000\nManagement Consultan,Sigma Associates,J1200\nATTORNEY,\"DEWITT, ROSS, STEVENS\",K1000\nAttorney,Parker & Halliday Partnership,K1000\nPresident,Interstate Batteries,G1200\nSENIOR ACCOUNT EXECUTIVE,STRATACOMM LLC,Y4000\nMANAGE,THE MARKET INTERIORS GALARIA,Y4000\nJOHN C BILLS ENTERPRISES,,Y4000\nGOLDBERG GRUENER GENTILE,,K1000\nRequested,Indymac Bank,Y2000\nOWNER,ULRICH BARN BUILDERS,G1200\n\"COMBINED PROPERTIES, INC./ATTORNEY/\",,K1000\nBHP MINERALS INC WEST US MINING,,E1220\nManager,Bills Engineering Inc,B4400\nFINANCIAL ANALYST,OSL SHIPPING,Y4000\nSurgeon,Wright State University,H5100\nTRANS NATIONAL TRAVEL,,F1400\nRESEARCH HEALTH SERVICES,,JH100\nMOBILE HOME PARK MANAGEMENT,,F4400\n\"VP, GMD\",Zenithoptimedia,Y4000\nHampshire Investments,,F7000\nATTORNEY AND JOURNALIST,,K1000\nPRINCIPAL,VIP WIRELESS RETAIL OAKLAND LLC,Y4000\nOwner,Spazm Skateboards,Y4000\nTeacher,Alachua County School Bo,Y4000\nVACATION RENTAL PROPERTY,SELF-EMPLOYED,Y4000\nVICE PRESIDENT,\"ROD'S SON\",Y4000\nDEAN OF STUDENTS,SJVC,Y4000\nReal estate developm,DeLuca Enterprises,B2000\nOwner,Re/Max Olympic Realty,F4200\nRETIRED JUDGE,,J1100\nINSU,LIFE & HEALTH UNDERWRITING INC,J1100\nNEWAGO MONUMENT SALES,,Y4000\nPresident & Chief Executive Of,Consumers Energy,E1600\nconsultant,\"Capitol Counsel, LLC\",F2100\nCivil Engineer,McClure Engineering Co,B4400\nARCHITECT,L.D. ASTORINO COS.,Y4000\nInvestor Relations,Stapleton Communications,Y4000\nENTREPEURER,SELF EMPLOYED,G0000\nBROKER,EXCHANGE FINANCIAL,F0000\nCBC ENVIRONMENTAL LA,,Y4000\nInformation Requeste,AVAYA,J7400\nGas Products,J W Myers Inc,A1400\nCASTLE CABINETRY,,Y4000\nPartner4271,Evensonbest LLC,Y4000\nBAKER & JONES,,K1000\nCOURT REPORTER,CALIFORNIA PUBLIC UT,X3000\nBRAY GEIGER RUDQUIST,,Y4000\n20TH CENTURY TELEVISION,,C2400\nBUILDER,TRUSST BULIDER GROUP,Y4000\nCOURT REP,\"DEPOSITION RESOURCES, INC\",G5200\nAdministrator,PAC Inc,Y4000\nPROVIDENT BANK,,F1000\nCHAIRMAN,COLLEGE BOOKSTORES OF AMERICA,Y4000\nYoga Teacher,Ca. Yoga Works,Y4000\nInsurance,Design Insurance Brokers,F3100\nPHYSICIAN,WESTCHESTER OB/GYN,H1130\nORION PETRO CORP,,Y4000\nRETIRED,SANDIA NATL. LABORATORIES,D4000\nTEACHER,WESTBROOK CT,Y4000\nHomemaker,German & Burke Orthodontists,H1400\nATTORNEY,JOSEPH M. XUEREB COMPANY,K1000\nN Y A C,,Y4000\nLAW OFFICES OF JOEL FRANKLIN,,K1000\nAPPLIED DATA SCIENCES,,Y4000\nRETIRED PRINCIPAL,NYC BOARD OF EDUCATION,X3500\nAttorney,U.S Government,X3000\nPresident,Online Lenders Alliance,F1400\nFAYETTEVILLE NEUROLOGICAL,,H1130\nOWNER,FERRO CAPITAL LLC,Y4000\nPROFESSOR,CSUS/PROFESSOR,Y4000\nProfessor,Weill-Cornell Medical College of Corne,H5150\nCEO,GRAY DEVELOPMENT COMPANY,Y4000\nATTORNEY,DEWEY AND LEBOUEF LLP,K1000\nADMIN,\"HORTON, INC.\",Y4000\nExecutive,Interwoven,C5130\nATTORNEY,\"ASLANIAN & KHOROZIAN, LLC\",K1000\nSenior Principal,\"Inplan Group, LLC\",Y4000\nGENERAL MANAGER,EPC SERVICES CO.,Y4000\nBERGER & BERGER,,J5100\nAttorney,\"Ward McGough, LLC\",Y4000\nVP PROJECT LEADERS & OPERATIONS DSR,SANOFI US SERVICES INC.,H4300\nSelf Employed,Thomas Consulting,Y4000\nSENIOR VICE PRESIDENT,\"FIERCE, ISAKOWITZ,& BLALOCK\",K2000\nDay Trader,Self employed,F2100\nAMERICAN NATIONAL INS,,Y4000\nPRESIDENT & C.E.O.,D.L.D INSURANCE BROKERS,F3100\nBanker,Farmers & Commercial,F1000\nDirector,Global Env. Project Institute,Y4000\nATTORNEY,HOOPES & ADAMS/ATTORNEY,Y4000\nContractor,Self,M2100\nVICE PRESIDENT,VARIAN MEDICAL SYSTEMS,H4100\nGOVERNMENT RELATIONS PRINCIPAL,ERNST & YOUNG,F5100\n\"BARBOSA, GARCIA, MURILLO & BARNES\",,K1000\nOWNER,JCS TEL-LINK,Y4000\nCORPORATE T,ELECTRONIC DATA SYSTEMS,C5130\nMIAMI CHILDRENS HOSPITAL,,H2100\nCFO,PMI ASH TECHNOLOGIES,Y4000\nACTOR,2 WONDER FULL TO BE LTD.,Y4000\nVOICE OF VIETNAM RADIO,,Y4000\nOwner,Ross Insurance Agency,F3100\nMZD INC,,Y4000\nTRI STAR PRECAST,,B5100\nGeneral Manager,Florida Favorite Fertiliz,Y4000\nFOUNDER,ECHOSTAR COMMUNICATION,C2200\nPHYSICIAN,NEUROSURGICAL ASSOCIATES,H1130\nMBA BUILDERS,,J1100\nAttorney,Jaques Admiralty,J1200\nWBKB-TV,,C2100\nA OLYMPIC FORWARDER INC,,T7000\nDMJM,,Y4000\nAttorney,Santa Clara County,J1200\n\"VP, New Business Development\",FMR LLC,F2100\nTEXARKANA CARDIOVASCULAR SURGERY,,H1130\nIMMUNOLOGY RESEARCH INSTITUTE OF NE,,H1130\nPARTNER,UNGSRETTI & HARRIS,K1000\nWRITER,FLINTIDGE PREP,Y4000\n\"LEVY & DRONY, PC\",,K1000\nHERTZ REAL ESTATE/HERTZ FARM M/AGLA,,F4000\nPANCOAST TEMPORARY SERVICES,,G5250\nKRAUS-ANDERSON,,B1000\nTHE IRVINE COMPANY,,J1100\n\"HILB, ROGAL & HAMILTON COMPANY\",,F3100\nPRESIDENT & CEO,N-JET,T1400\nSONY MUSIC PUBLISHIN,,C2600\nSYSTEMS ENGINEER,ASCD,Y4000\nSENI,G.M. NORTH AMERICAN OPERATIONS,Y4000\nProject Manager,Sas Institute,C5120\nCHAIRMAN,\"SPRINGS INDUSTRIES, INC.\",M8000\nSTEWART SUPERIOR CO,,Y4000\nPUBLIC AF,THE TRUST FOR PUBLIC LAND,JE300\nsurgeon,ear nose and throat associates of wate,H1130\nDealer,Lexus North Shore,T2310\nPrincipal/Elementary,retired,X1200\nPhyscian,Total Health,Y4000\nASSISTANT,THE ENTERPRISE GROUP,X1200\nExecutive,CA Community College League,H5100\nSYSTEMS ENGINEER,L-3 COMMUNICATIONS,D3000\nREALTOR,R.W. CALDWELL REALTORS,F4200\nATTORNEY,TRENAM & KEMKER,K1000\nCar Dealer,Folsom Lake Ford,T2300\nCAVANAUGH CONTRACTORS,,B1500\nPRESIDENT,AEG LIVE,C2900\nTEACHER,WASHOR COUNTY SCHOOL DISTRICT,Y4000\nCameraman,Self employed,C2300\n\"CONSULTANT, ARBITRATO\",SELF-EMPLOYED,Y4000\nOwner,H/r Block,Y4000\nCHAIRMAN,CHARTWELL HOTELS/CHAIRMAN,T9100\nWADDELL AND REED INC,,F2100\nENGINEER,TLD CONSTRUCTION,B1500\nVICE PRESIDE,COVENANT HEALTH SYSTEM,H2100\nMORROW COUNTY,,X3000\nTOM GROWNEY EQUIPMENT INC,,B1500\nOwner,StayAliveFoods.com,C5140\nOrthopaedic Surgeon,Black Hills Orthopedic Clinic,H1130\nWeb Development,Beam Interactive,Y4000\nDIRECTOR,PSI,C5000\nBANKER,CHEVY CHASE BANK,Z9500\nADMINISTRATOR,NEW YORK STOCK EXCHANGE,F2400\nRETIRED RN,,J1100\nRD,GOOD MEASURES,H1700\nTHE CREAMER LAW FIRM,,K1000\nGE-HARRIS RAILWAY ELECTRONICS,,M2300\nPHYSICIAN,TRISTATE ANESTHESIA,H1130\nEXECUTIVE VP,MONROE COLLEGE,H5100\nMARINE BROKER,ALASKA BOATS & PERMITS INC.,Y4000\nVENUS PANCAKE,,Y4000\nChairman,\"Int'l Rectifier\",C5110\nInsurance Broker,\"Apex Global Partners, Inc (HQ)\",F3100\nSCHRODERS & COMPANY,,Y4000\nVenture Capital,Self-employed,J7120\nCEO,ASK FOXLEY INC.,Y4000\nOwner,Bower Bird Shop,Y4000\nFirst Vice President,RBC Dain Rauscher Incorporated,F2100\nMANAGER,DADANT AND SONS INC.,Y4000\nCHAIRMAN,NATIONAL INVESTMENT CO.,F4100\nCHIEF EXECU,LAKES ENTERTAINMENT INC,G6550\nBONDSMAN,ACCESS BONDING SERVICE,Y4000\nEXECUTIVE,KENMORE CONSTRUCTION,B1000\nLAWYER,AIR LIQUIDE S.A.,Y4000\nPresident,\"Contech-control Technologies,\",Y4000\nTrade Association Manager,Maine Assoc of Broadcasters,C2100\nExecutive,Chris Craft Industries,C1100\nWriter/Producer,One Flight Up Pictures In,Y4000\nPASTOR,GRACE & TRUTH BIBLE CHURCH,X7000\nInvestment Executive,Intermarket Corp.,Y4000\nPRIMA MARKETING L.L.C.,,E1170\nManager,Conservation Services Group,J1200\nFLEXES INC,,Y4000\nREAL ES,BUYERS REALTY AT TAHOE INC.,F4200\nTRUSTEE,SELF-EMPLOYED/TRUSTEE,Y3000\nPRESIDENT,BONITA FLOWER SHOP,G1200\nPRESIDENT,\"ROCKWALL COUNTY REPUBLICAN MEN'S CLUB\",J1100\nGovernment Affairs,Longaberger Corp.,M4000\nVP FINANCIAL OP,PROVINCE HEALTHCARE,H2100\nEVP,JP Morgan Chase,F1100\nSCHOO,ST. ANTHONY NEW BRIGHTON SCH.,H5100\nPhysician,Mayo Eye Center,H1130\nRetired,N/a,T1400\nChairman of the Boar,The Equitable Bank,F1200\nJUDGE,BLOUNT COUNTY GOVERNMENT,X3000\nPHYSICIAN,DAUPHIN WEST ENT.,Y4000\nADVERTISTING,,G5210\nAssoc. General Couns,Asian Americans For Community Involvem,Y4000\nREALTOR,\"SOTHEBY'S INT'L. REALTY\",Z9500\nADVANCED ELECTRONICS,,Y4000\nEngineer,Pan American Engineers,B4400\nM.D.,LYNDA SMIRZ M.D./M.D.,H1100\nFINANCIAL PLANNER,TRIAD FINANCIAL ADVISORS,J7400\nREGIONAL COORD,PIKE INDUSTRIES INC.,B5100\nCOMMUNICATIONS,DISCOVER,Y4000\nProfessor,USC Law School,X1200\nOwner,HUI,Y4000\nP CHAN & EDWARDS INC,,G5200\nPublic Relations,Cocker Fennessy,G5210\nMARKETING CONSULTANT,CITY OF PORTLAND/MARKETING CONSULTA,X3000\nCONSULTANT,TAYLOR FAMILY ENTERPRISES,Y4000\nCFO,PRIMARY CARE ASSOC,H1100\nAttorney,\"Pathman Lewis, LLP\",K1000\nP FRED K OBRECHT & SONS,,Y4000\nC.E.O.,FISHER BARTON,M5000\nCOAN INCORPORATED,,G1100\nCHAIRMAN,CONNECTICUT REPUBLICAN PARTY,J1100\nPresident,Sundaes the Ice Cream Place,G2100\nUNDERWRITING CONSU,PENN MUTUAL LIFE,Y4000\nDIR STRATEGIC PLANNING,\"AIR TRANSPORT SVCS GRP, INC\",T1500\nTRUCK,DIAMOND TRANSPORTATION SYSTEM,T3100\nGOLDEN PANTRY FOOD STORES,,G2400\nCHRISTOPHER TRAVEL AGENCY,,T9400\nTEACHE,CHRIST CHURCH NURSERY SCHOOL,X7000\nPRINC,AMERICAN INTERNATIONAL SCHOOL,H5100\nBICHON & COLE MEDICAL CLINIC,,H2000\nAuto dealer,Autohaus,Y4000\nTool Maker,Homemaker,Y1000\nAETNA,TRAVELERS,F1100\nCHUCK REECE COMMUNICATIONS LL,,Y4000\nSPRINGFIELD HOUSING,,Y4000\nGENERAL MANAGER,HORN BEVERAGE COMPANY,Y4000\nHendson Housing Corp,,Y4000\nPRESIDENT,CAROLINA MORTGAGE COMPANY,F4600\nTRADER CONSULTANT,,Y4000\nBUSINESS OWNER,ALFRED HUGHES CO.,Y4000\nCRANFILL SUMNER &,,K1000\nVp Human Resources,Usg Insurance Serv.,F3100\nOffice Work,Allied Int. Mkg. Corporation,Y4000\nOwner,Founders Financial Grp,F0000\nINSURANCE,MANAGED BENEFITS STRATEGIES,Y4000\nAgent,Manuel Lujan Agency,F3100\nBULLINGTON & GLEASON,,Y4000\nLEG,\"KING COUNTY PROSECUTOR'S OFFICE\",X3200\nunion rep,UFCW 588,Y4000\nCongressman,US House of Representatives,Y4000\nCOUNTY JUDGE,HARRISON COUNTY,J1200\nAWAIC,,Y4000\nmanager,Sortimat Technology,Y4000\nCMO,HEALTH CARE PARTNERS,H0000\n\"POWELL, JONES & READ\",,Y4000\nHomemaker/Spouse,Homemaker,Y1000\nCEO,UTILITY TRAILER CO.,T5100\nROBKE CHEVROLET,,T2300\nInsurance Agent,Oregon Financial Services Group,F3300\nConstituent Services,Congressman Lampson,X3000\nDirector,Clinton Hospital,H2100\nPHYSICIAN,ST. RAPHAEL HOSPITAL,H1130\nPRESIDENT,MERIDIEN PRODUCTS,Y4000\nMEDICAL SUPPLY SALES,,Y4000\nOWNER,IN STEP FOOD SERVICE,Y4000\nPARTNER,HANNEGAN LANDAU POERSCH ADVOCACY,K2000\nPHYSICIAN,MARTEK,F2100\nVP,STATE STREET BANK,F2000\n\"SWEIG, WEILER & ARNOW MGMT CO INC\",,F4500\nDirector- Sales,Rental Guide,F4500\nCEO,ACTIVISION,C5120\n\"DIRECTOR, EMPLOYEE COMMUNICATIONS\",DOW JONES,Y4000\nAT HOME,HOMEMAKER,Z9500\nCEO,Campania,H3100\nRESTAURATEUR,HAMANN INC.,J1200\nC.F.O.,T.M.S. MANAGEMENT GROUP,Y4000\nPRODUCER,DABROW RADIO,J1200\nCONSULTANT,MATTLYN INC.,Y4000\nPAWN BROKER,GARY FELDMAN,Y4000\nVenture Capital Fund CEO,Cahill & Company,Y4000\nOwner,Craft Gallery,X4200\nUS DEPT OF HUD,,Y4000\nTOXCO,,E3000\nExecutive Director,Ironton-Lawrence County Area C,JH100\nEXECUTIVE,ALEXCOM INC./EXECUTIVE,C2200\nTEACHER,NOT EMPLOYED,H5100\nRETIRED,SAN MATEO CITY COUNCIL,X3000\nMENTAL HEALTH COUNS,,J7400\nCONTRACT ADMINISTRATION MANAGER,LACMTA,Y4000\nATTORNEY,FLOYD LAW FIRM P.C.,K1000\nINVESTMENT BANKER,F.B.R.,Y4000\nsr network engineer,unisys,C5130\nTEACHER,SOUTHWEST ALLEN SCHOOL CORPORATION,Y4000\n\"Standeffer & Harbin, LLP\",,K1000\nOWNER,BURKHART ADVERT,G5210\nEXECUTIVE,CARRIAGE HOUSE,Y4000\nINVESTMENTS,ALLIANZ,F3100\nOwner,C.J. Ashton Interiors,Y4000\nCPA,RSSM & CO.,Y4000\nGovt Relations Director,Arent Fox,K1000\nCHANNEL MANAGER,XO,Y4000\nPhysician,Braidwood Management Inc,Y4000\nPHYSICIAN,GA REGENTS UNIVERSITY,Y4000\nCOO,CNC RESOURCES,Y4000\nVice President for A,Massachusetts Medical Center,H2100\nATTORNEY,JOHNSON MCCONATY & SARGENT,K1000\nOwner,Residential Properties,J7400\nBusines,Paragon Chemical Technology,Y4000\nAGENT,NORTHWEST INSURANCE CENTER,A4000\nPresident & Chief Executive Officer,South Dakota Assoc. of Healthcare Orga,H2100\nEXECUTIVE,NMC,Y4000\nENGINEER,MOLZEN-CORBIN & ASSOCIATES/ENGINEER,B4200\nAttorney,Hardie Law,K1000\nPharmaceutical Regulatory Affairs,IPM,Y4000\nDirector,RBC Dain Rauscher Corp,F2100\nAccounts Receivable,SELF,G0000\nComplaince Office,Barclays Capital Inc,Z9500\nCEO,Hazlehurst and Associates,Y4000\nReal Estate,ANF Group,F4000\nACTOR,,C2900\nSENIOR MANAGING PARTNER,SB&K GLOBAL,Z9500\nSTEVENS SHIPPING & TERMIN,,T6200\nDANCE INSTRUCTOR,SELF EMPLOYED,G5000\nOWNER/MANAGER,PARRIS MEDICAL SERVICES,H1750\nAttorney,\"Bagolie Friedman, LLC\",K1000\nMID MICHIGAN FM,,Y4000\nVICE PRESIDENT OF RE,PEABODY ENERGY,E1210\nAttorney,Ajigo Corporation,Y4000\nAttorney,Stephen E. Haid & Associates,K1000\nINVESTMENT BANKING,BEACON HILL FINANCIAL CORP,Y4000\nCONSULTANT,SAUL NIRENBERG & CO.,Y4000\nInformation Requested,\"St, Thomas More Parish\",Y4000\nPHARMACIST,MCNALLY PHARMACY,G4900\nBEST EFFORT,BEST EFFORT,F2500\nPublic Relations,Alliance Group,K2000\nCEO,DUNLAP & KYLE CO.,T2200\nPROFESSOR,THE UNIVERSITY OF UTAH,H5100\nPolicy Director,Brownstein/Hyatt/Farber/Schreck,K1000\nKENTUCKY HOSPITAL ASSOC,,H2100\nSTUDENT,STANFORD UNIVERSITY,J1100\nCOLLINS PINE,,Y4000\nSecretary,Coast to Coast East,Y4000\nATTORNEY,THE ROCKERFELLER UNIVERSITY,H5100\nSALES,AFFINITY R.V.,Y4000\nATTORNEY,LYLE ANDERSON CORP,Y4000\nWoodworker/Teacher,Self-Employed,Y4000\nPRESIDENT,SUMMA TECHNOLOGY,D3000\nConsultant,\"Metro Strategies, Inc\",J1200\nWHOLESALE BEER DISTRIBUTOR,PETITPREN INC.,Y4000\nDirector,\"Sawteeth, Inc\",Y4000\nPRESIDENT,COMPENSATION SOLUTIONS,G5270\nBERG & BERG DEVELOPERS,,F4200\nPRESIDEN,SANONA ENERGY TECHNOLOGIES,E1500\nINFORMATION REQUESTED PER BEST EFFORTS,SILVI CONCRETE,B5100\nFRUGE SUBURBAN GAS CO,,E1140\nPEDIATRIC ANESTHESIOLOGIST,NEW YORK PRESBYTERIAN HOSPITAL COLUMBI,H1130\nCo-President,Sony Pictures,C2400\nPRESID,NATIONAL CABLE & TELECOM ASS,C2200\nAMERICAN PROPERTIES INC,,Y4000\nPRESIDENT,DAWSON TECHNICAL,Y4000\nBiochemist,UT,Y4000\n\"Physicist, Investor & Director\",\"Critical Solutions International, Inc\",D8000\nVice President,Oracle,Z9500\nGOVERNMENT RELATIONS,INTEL CORPORATION,J1200\nARROW AMBULANCE,,H3000\nATTORN,NOWELL AMOROSO KLEIN BIERMAN,J1200\nResearch Scientist,NYC Dept of Health,X3000\nCONSULTANT,OERTELL,Y4000\nVP Casino Marketing,\"Paris / Bally's\",G6500\nPARTNER,\"NICOLE-STANTON, LLC/PARTNER\",Y4000\nBUSINESS OWNER,TRES-DAC,T7200\nPresident,Lydig Construction,B1500\nGRADING CONTRACTOR,,B0000\nCOBANK,,A6000\nPARTNER,LATHAM AND WATKINS LLP,K1000\nAttorney,Debevoise & Plimpton Llp,K1200\nManager,FINRA,F2000\nVICE PRESIDENT,1ST ACCEPTANCE CORP.,F3100\nMANAGING DIRECTOR,NITU ENTERPRISES LP,Y4000\nNYSPMA PRES/21ST CENTURY FOOTCARE,PRESIDENT OF NYSPA/DPM,Z9500\nAttorney,Kevin L. Murphy & Associates,K1000\nhomemaker,None,JE300\nTax Lawyer,Jones Day,Z9500\nANESTHESIOLOGIST,SANGAMON ASSOC,H1130\nRetail Owner,99 Cent Owner,Y4000\nHOUSE ENGINEER,SELF,F2500\nINVESTMENT,JUNCTION ADVISORS INC.,Y4000\nReal Estate Broker,Langholz Wilson Ellis,F4200\nCHAIRMAN PRESIDENT &,Union Pacific Corporation,T5100\nANESTHESIOL,PINNACLE ANESTH CONSULT,H1130\nINSURANCE,ACORDIA,F3100\nOWNER,J AND J ACOUSTICS INC.,Y4000\nEngineer,Analog Devices,Z9500\nStaff Analyst,The Boeing Company,D2000\nTribe Of Texas,Kickapoo,Y4000\nINT FOREST PROD,,A5200\nMANAGER,COMARK BUILDING SYSTEMS,Y4000\nATTORNEY,BASSI MCCUNE & VREELAND,K1000\nAuto Dealership Mana,Sames Motor Co.,X1200\nRAHWAY MEDICAL ASSOCIATES,,H0000\nMATH TEA,WESTERN DAKOTA TECH. INST.,Y4000\nPRESIDENT,SANDERS BROS. INC.,B1000\nNYLEX BENEFITS,,Y4000\nBAR OWNER,CALIPH LOUNGE,Y4000\nOwner,Silverthorne Cattle Company,Y4000\nNURSE,POLK COUNTY HEALTH DEPARTMENT,Y4000\nSENIOR VICE PRESIDEN,A.C.E.,Y4000\nPhysician,\"David Cassidy, M.D.\",H1100\nManager,Dewalt Mft.,Y4000\nCEO/Attorney,Radoslovich Law Corporation,K1000\nREAL EST,SOUTHERN STATES PROPERTIES,F4000\nADVERTISING,INTERMARK GROUP,Y4000\nconsulting actuary,\"david langer company, inc.\",G5200\nCHAIRMAN & CEO,RIVERSIDE RECOVERY RESOURCES,Y4000\nPRESIDENT,THE BOWMAN GROUP,Y4000\nCRNA,Texas Weslyn Univ,H1710\nHUSBAND IS VICE PRESIDENT OF TRIERW,,Y4000\nPHYCHIATRIST,THE VINES HOSPITAL,H2100\nRIVER CITY DISTRIBUTING INC,,G2850\nOwner,Bayou Wings LLC,Y4000\nDOCTOR,HOUSTON CO SURGICAL CLINIC,H1130\nPHYSICIAN,PHOENIX ORTHOPEDIC,H1130\nPUBLISHER,DENTON PUBLISHING COMPANY,C1100\nINVESTMENT MGR,FAY FINANCIAL/INVESTMENT MGR,Y4000\nFlight Instructor,Lsi,Y4000\nAttorney,\"K, B, H & R\",J1200\nPROFESSOR/PHARMACIST,UNIV. OF TN/PROFESSOR/PHARMACIST,H5100\nSOUTHERN PACIFIC,,T5100\nTISCHER ASSOCIATES,,F3100\nENGINEER,CC&E ENGINEERS,Y4000\nSR CONSULTANT PIPELINE (STP),EXXONMOBIL DEVELOPMENT CO,E1110\nVice President Marke,Shaw Construction,B0500\nSCIENTIST-BIOCH,AVENTIS PASTEUR INC,H4300\nPresident,\"Han-Tek, Inc.\",Y4000\nSELF/INVESTMENTS/BUS. OWNER,,F7000\nATTORNEY,PECKARER ABRAMSON,Y4000\nRETIRED,BCM,J7400\nHistory Professor,Middle Tennessee State Univ.,H5100\nPresident,Altos Sonoma Corp,Y4000\nGOOD-O BEVERAGE,,Y4000\nBUSH & BUSH,,Y4000\nPRESI,CHURCHILL MORTGAGE OF ARIZONA,F4600\nCHERRYTREE INVESTMEN,,F2500\nCHIROPRACTIC ARTS CLINIC,,H1500\nCASSENS & SONS,,T3100\nDirector of Governmental Relations,The Chartwell Law Offices,K1000\nUNIVERSITY ADMINSTRATOR,CA STATE U,H5100\nTRIUMVIRATE ENVIRON,,Y4000\nAttorney,Bracewell & Giuliani LLP,J1100\nATTY,SUP. CT.,Y4000\nATTORNEY,\"TUCKER ARONSBURG, PC\",Y4000\nChairman,Sheridan Broadcasting Corporation,C2100\nRETIRED/SUBSTITUTE TEACHER/RETIRED,,J1100\ntour guide,Self,T9000\nHYPOVORIENSBANK,,F1100\nMANAGEMENT,BYDEX,J6200\nENGINEER,CITADEL INVESTMENTS,F2100\nSelf-Employed,Emerson & Assoc.,Y4000\n\"VICE PRESIDENT, INFO TECH.\",FOXWOODS RESORT CASINO,G6500\nPRESIDENT/CEO,WKS RESTAURANT CORPORATION,G2900\nPRIN,INTERNATIONAL PRINTING COMPANY,C1300\nRPH,\"RICHIE'S PHARMACY\",H4400\nEXECUTIVE,INNOVATE,Y4000\nSYSTEM ENGINEER/ANALYST,CON-WAY ENTERPRISE SERVICES,Y4000\nAdvisor,Global Marketing,G5280\nOperations Director,Jacobs Engineering Inc.,B4000\nSPIRA MANUFACTURING CORPORATION,,G1200\nCoach / Consultant,Self,G0000\nIN POL REVIEW,,Y4000\n\"VP, Operations\",\"O'Gara, Hess & Eisenhardt\",D0000\nATTORNEY,\"MENTOR LAW GROUP, PLLC\",K1000\nVP of Engineering,South Central Power Company,E1610\nROBERT MOWRIS & ASSOCIATES,,Y4000\n\"DAVIS, MINER ET AL\",,K1000\nENGINEER,JEFFERSON COUNTY,X3000\nINVESTMENT BANKER,ROTHSCHILD INC.,J7400\nAttorney,Spence Moriantit Shocky,Y4000\nCARIBBEAN INVESTMENT CENTER INC,,F0000\nVEDDER PRICE KAUFMANN & KAMMHOLZ,,J1100\nMITCHELL SILVERBERG & KNUPP,,K1000\nBuilder/Realestate,Self employed,F4100\nSALES MANAGER,CISCO CAPITAL CORP,J5100\nCOE FINANCIAL SERVICES,,F0000\nCOMMUNICATIONS CONSULTANT,BLUE RUBICON/COMMUNICATIONS CONSULT,Y4000\nCEO,DAIRY FARMERS OF AMERICA,A6000\nPrincipal/Operations,\"Eagle Beverage Co., Inc.\",G2850\nPHYSICIAN,VIRTUA MEDICAL GROUP,Y4000\nOWNER,NH INTERNATIONAL SPEEDWAY,G6400\nWOHLFORD & PALMER,,Y4000\nO,CALIFORNIA HEALTHCARE ASSOCIATION,H2100\nPERRYMAN CONSULTANTS INC,,Y4000\nATTORNEY,POE & BURTON PLLC.,Y4000\nM & S PRODUCTION,,Y4000\nPRESIDENT,\"HUB TECHNICAL SERVICES, L.L.C.\",Y4000\nRegional Vice Presid,Union Pacific,T5100\nK SWISS,,Y4000\nPRESIDENT,LOMBART INSTRUMENTS,Y4000\nSENIOR VICE PRESIDENT,CGI FEDERAL,C5120\nCO. VICE CHAIRMAN,MAZZAM INC.,Y4000\nDealer,Bob Brockland Pontiac GMC Inc,T2300\nSocial studies-teacher,ridgewood high school,Y4000\nADMINISTRATION,\"CHILDREN'S HOSPITAL OAKLAND\",H2100\nGOVERNMENT RELATIONS,LOS ALAMOS NATIONAL LABORATORY,X3000\nPRESIDENT,LITTLE GENERAL STORE,Y4000\ngovt relations,\"Spearman Management, Inc\",K2000\nFAHRNY HUDOME INTERNATIONAL,,Y4000\nVENTURE CAPIT,CHASE MANHATTAN CORP.,F2100\nCADWALADER WICKERSHAM,,K2000\nAdvertising Sales,\"Reader's Digest\",C1100\nCARTER ORTHOPEDICS LTD,,H1130\nENGINEER,BAYER,H4300\nInformation Requested,Statfeld Vantage Insurance Group,F3100\nChairman/ceo,Ridglass Manufacturing Co. Inc.,M7200\nBENEFIT PLAN ADMINISTRATORS IN,,Y4000\nSTRUMWASSERT WOOCHER,,K1000\nPRESIDENT,LAKE MI BROADCASTING INC.,C2100\nPRESIDENT,ADVANCED WORKFORCE SYSTEMS,Y4000\nBUREAU OF LAND MANGMENT,,Y4000\nWATER,MAXIMS WATER WELL SERVICE INC,E2000\nBURNS GEOLOGICAL,,Y4000\nVP-Technologies III,AMEX Travel Related Services,F1400\nEXECUTIVE,AMERICAN HERITAGE HOMES,B2000\nBANKING,TEAM BANK N.A. PAOLA KANSAS,F1000\nADMINISTRATOR-RENFRO,NEXION HEALTH,H2200\nATTORNEY,JOHN E. PHELAN P A/ATTORNEY,Y4000\nCONSULTANT TO CLINIC,CLINICAL RESEARCH SERVICES,Y4000\nDental Specialis,LA County,X3000\nPresident,Shields Construction Company,B1500\nGENERAL MA,BRANDYWINE RECOVERY INC.,Y4000\nOwner,Ribbon Weld LLC,Y4000\nN H SCHEPPERS DISTR CO,,G2850\nPHYSICIAN,\"WOMEN'S HEALTH SPECIALIST\",H0000\nCEO,DBI,Y4000\nINFO REQUESTED,,J5400\nOwner,Parrish Realty Co.,F4200\nGREATER PITTSBURGH LITERACY COUNCIL,,Y4000\nPARAPROFESSIONAL,MINNETONKA PUBLIC SCHOOLS,X3500\nOWNER,INFO REQUESTED,M2100\nCORPORATE OFFI,H.D. HUDSON MFG. CO.,M5000\nL,NATIONAL GAY & LESBAIN TASK FORCE,J7300\nCONSULTANT,BROADGATE CONSULTANTS,G5200\nResearch,Self,G5200\nALEXANDER FORD LINCOLN,,T2300\nDATA,WHITEMARSH INFORMATION SYSTEMS,Y4000\nPartner,Royalton 2525 Ltd,Y4000\nPresident,Yates Petroleum,E1120\no,Visual i,Y4000\nCONSULTING ENGIN,GIRARD ENGINEERING,B4400\nPHYSICIAN,PARTHENIA MEDICAL GROUP,Y4000\nBOSTON PACIFIC COMPANY INC,,Y4000\nSURGEON,VANDERBILT UNIVERSITY,H1130\nOFFICER,SW MEDICAL FOUNDATION,Y4000\nPhysician,\"Rodolfo Hernandez, M.D.\",J5200\nfinancial admin,\"Stouch's Auto Repair Shop, Inc.\",T2400\nOWNER,GAGLIANO GROUP,Y4000\nGeologist,\"IMDEX, Inc.\",Y4000\nLOAN OFFICER,IMORTGAGE,F4600\nATTORN,CALFEE HALTER & GRISWOLD LLP,J1200\nATTORNEY,GANNETT WELSH,F2100\nTHE WHITESELL COMPANY,,Y4000\nWILL ROGERS MEM,,Y4000\nCONTRACTOR,RON & STEEL COMPANY,Y4000\nVice President,Lagasse Sweet),Y4000\nOwner,\"Golden Stella, Inc\",Y4000\nSelf,Jeff Kimbell & Assoc.,J1100\nBROADCASTER,HOLLYWOOD CLOSE-UPS,Y4000\nHealth Care Admin,Sharp Healthcare,H0000\nPHARMACIST,HOSPITAL DISCOUNT PHARMACY,G4900\nPSYCHIATRIC NURSE PRACTITIONER,ELDER SERVICE PLAN OF THE NORTH SHO,Y4000\nPC ACTION FOR CHILDREN,,J7700\nHomebuilder,America South Building & Dev.Inc.,Y4000\nOWNER,SUNSEED NATURAL FOODS,H4600\nCHAIRMAN & C.E.O,\"KAVANAGH ADVISORY GROUP, L.L.C.\",F4100\nCHAIRMAN,CLY-DEL MFG. COMPANY,J9000\nSOCIAL WORKER,CHRISTIAN FAMILY LIFE,Y4000\nATTORNEY,BARON & BUDD PC,K1100\nR.N.,MEDSTAR GEORGETOWN UNIVERSITY HOSPITAL,H2100\nMD,Lsuhsc-Shreveport,Y4000\nPRESIDENT,SECURLINX,Y4000\nCIANCIULLI & OUELLETTE,,Y4000\nPHSYICAL SCIENCE,LOMA LIDA UNIV.,H1130\nPROPERTY MGMT/INVEST,Self employed,G0000\n\"VICE PRESIDENT, ENGINEERING OPERATIONS\",COMCAST CABLE,C2200\nFounder,Hiya Media Inc.,Y4000\nInformation Requeste,Quincy Jones,C2600\nATTORNEY,PRICE WAICUKAUSKI,K1100\nV ECLIPSE,F,Y4000\nOWNER,BARAKA REALTY CO.,F4200\nCEO,BRANDEFINED,Y4000\nSURGE,SURGICAL ASSOCIATES OF FRESNO,H1130\nEconomist,IMF,X3000\nCONSULTANT,FARO ENTERPRISES,Z9500\nTrading,\"SAC Capital Management, LLC\",F2700\nREGIONAL VP,RCG,H3000\nBARNES MOSHER WHITEHURST & PARTNERS,,G5200\nCENTRAL PACIFIC MTG,,F4600\nSales Manager,\"Surveillance Technologies, Inc.\",Y4000\nP,UNIVERSITY OF CINCINNATI HOSPITAL,J1200\nPUBLIC HOUSING PROGRAM SPECIALIST,HUD,X3000\nCPA,St. Paul Travelers,F3400\nGREAT AMERICAN TRADING,,A5000\nINFO REQUESTED,Wingate Bbq,G2900\nGEOTEMPS INC,,Y4000\n\"A SMALL MIRACLE, INC./PRESIDENT/C.E\",,Y4000\nMANAGER BIOTECHNOLOGY,ROBERT SEITZ,Y4000\nEXECUTIVE,\"COX PLASTICS, INC.\",M1500\nLAWYER,PAULE CAMAZINE&BLUMENTHAL,J7300\nDENTI,H. ZACK SMITH D.D.S M.S. P.A.,H1400\nEXECUTIVE,\"OURISMAN COMPANY, LLC\",Y4000\nCRNA,BLOOMFIELD ANESTHESIOLOGY GRP,H1710\nPresident,Ben Federico Frt. Consolidator,Y4000\nMEDIA ONE INTERNATIONAL,,C2200\nWaste Disposal,Self Employed,E3000\nSALES/RENTAL,BUDGET RESALE,Y4000\nATTORNEY,GLASER WEIL ET AL,K1000\nCHIEF COMMINICATIONS OFF,BAYER CORP,H4300\nMIDDLE CREEK FAMILY PRACTICE,,Y4000\nMEDAL ANESTHESIA CONSULTANTS L.L.C.,,H1130\nINVESTMENT PROGRAM ASS,,F0000\nMARSHALL DENNEHEY WARNER & GOGGIN,,Y4000\ncleaner,Cyclone Cleaners,Y4000\nROBERT UTLEY INVESTMENTS,,Y4000\nOffice Manager,SMARTANALYST,Z9500\nOWNER,CONTINENTAL CEILINGS CORPORATION,Y4000\nCONSULTANT,\"MMC 20/20, INC.\",Y4000\nPPM MANAGEMENT COMPANY,,Y4000\nOwner,Marigot Capital Advisors,F2100\nSOCIAL-SECRETARY,,Y4000\neducation/writer,Not employed,X1200\nCEO,\"AUBORM SYSTEMS, LLC\",Y4000\nOAKLAWN FARM,,A1000\nSocial Worker,New York State,X3000\nFANNIE MAE AMERICAN COMMUNITIES FUN,,F4600\nPHELPS DUNBAR L L P,,K1000\nRN,ST. JOSEPH HOSP,H2100\nSocial Worker,North Shore Youth Health Services,J7150\nRETIRED / WW  II VET,RETIRED,X1200\nVP OF F,MERCHANTS DISTRIBUTORS INC.,G2500\nBIOLOGIST,\"NORMANDEAU ASSOCIATES, INC.\",Y4000\nNOVA INSTITUTE,EDUCORP,C5120\nSIX RIVERS NATIONAL BANK,,F1100\nEMU,,H5100\nPRESIDENT,\"BECTON, DICKINSON AND COMPANY\",H4100\nJACOBS ENGINEERING INC,,B4000\nCADILLAC,TITUS-WILL CHEVROLET,J1100\nC,MEMORIAL MEDICAL CENTER - ASHLAND,H2100\nSALOMN BROTHERS,,F2100\nELECTRICIAN,ACE ELECTRIC,Y4000\nFORECT CITY,,F4100\nExecutive Director,Eno Publishers,Z9500\nBROWN SHOE,,Y4000\nCEO,\"R. E. S. FINANCE, INC.\",F0000\nATTORNEY,\"SHEEHAN & SHEEHAN, P.A.\",Y4000\nAttorney,Juniper Bank,F1000\nInformation Requested Per Best Efforts,\"PLASTIC ENTERPRISES COMPANY, INC.\",X1200\nENGINEERING DIRECTOR,LAM RESEARCH,M2300\nSPECIAL ED TEACHER,LIBERTY UNION HSD,Y4000\nHotelier/CEO (retired),Morgans Hotel Group,T9100\nDIRECTOR OF BUSINES,BAKER & DANIELS,K1000\nPhysician,Amoskeag Anesthesia P.L.L.C.,H1130\nINVESTME,ATLANTA CAPITAL MANAGEMENT,F2100\nLOBBYIST,PODESTA & MATTOON,K2000\nTO BE PROVIDED,GIRARD COLLEGE,J7500\nDirector,Prelude To Independent Living,Y4000\nWEBB & SONS INC,,Y4000\nPresident,South Alabama Land & Timber Co. Inc.,B5200\nCEO,ATLAS AIR WORLDWIDE,T1500\nPHYSICIAN,P GILL OBSTETRICS & GYNECOLOGY,Y4000\nPRESIDENT,TRI-ARC FOOD SYSTEMS,G2000\nSTAFF,UNIVERSITY,H5100\nFARMER,STEPHEN N. DORCICH,Y4000\nOwner,Clarks Pump & Shop Inc.,Y4000\nPUBLIC ADMINISTRATION,SELF EMPLOYED,X3000\nTHE STURGES CO,,Y4000\nPresident,Harvest Ford,T2300\nUNDERGROUND CON,BURKS WATER SERVICE,Y4000\nATTORNEY,BLUME GOLDFAGEN,K1100\nexecutive,Geotech Inc,Y4000\nBROWN TERRELL HOGAN ELLIS PA,,K1100\nFIJIT & SNELL P.C.,,Y4000\nFARMER,K.W.ZELLERS INC.,A1000\nPRESIDENT,WILD / CRG,Y4000\nAUTO DEALER,STREET TOYOTA,T2310\nCHIEF OF STAFF,,X3100\nPresident,Pointer Ins Agcy,F3100\nphysician,Denver Health Authority,X3000\nDEVELOPER,LOCKWOOD GROUP,F4100\nEHS PARTNERS LLC,,Y4000\nPublic Health Executive,\"Trust For America's Health\",JH100\nCHIEF EXECUTIVE OFF,HENDRICKS POWER,Y4000\nLawyer,Aniefiok I. Usoro,Y4000\nBuilder Developer,Minnock Construction Co.,B1500\n\"Executive Director,\",Amarillo Ind School District,X3500\nTHE BENEFITS GROUP I,,Y4000\nVIC,\"BARTH SYNDROME FOUNDATION, INC.\",JH100\nHEALTH CARE ALLIANCE,,H3000\nPCM SECURITIES,,F2100\nENVIRO,KY DEPT OF NATURAL RESOURCES,X3000\nSenior Vice Presiden,Regency Centers,F4100\nMANAGING PARTNER,SB&K GLOBAL,Y4000\nComptroller,Intellegence Officer,Y4000\nowner Ayrshire Farm,self,G0000\n\"Vice-President, Busi\",\"Smarte Carte, Inc.\",Y4000\nSELF,ACTIVIST,J7400\nCOMPUTER PROGRAMMER,PEG CONSULTING,Y4000\nSenior Vice President and CNO,University of North Carolina Hospitals,H2100\nTransportation Plann,Alameda County,X3000\nCONTRACT OIL FIELD PUMPER,,E1150\nATTORNEY,AMER- CUNNINGHAM LPA,Y4000\nCOLLETT & ASSOCIATES,,F4200\nPHYSICI,NEONATOLOGY ASSOCIATES P.C.,H1100\nSenior Scientist,Cabot Microelectronics,M5200\nRETIRED,RETIRED,F1400\nChair,Overseas Vote Foundation,J7000\nComputer  programmer,Credit  suisse,F2300\nATTOR,CHEMICAL MANUFACTURERS ASSOC.,M1000\nCEO,AFFIRMATIVE INSURANCE,F3100\nFINANCE,STRATEDGE FUND,Y4000\nROANE PAINTING CO,,B3000\nCHASE PLASTIC SERVICES INC,,Y4000\nDirector,The Leaves,Y4000\nEnergy Services,Ameresco Inc,E1600\nAttorney,\"Public Defender's Office\",X3200\nVP - MARKETING,FIDELITY INVESTMENTS,F2100\nPresident,Shea Commercial,F4100\nMARKETING DIRECTOR,OSU FEDERAL CREDIT UNION,F1300\nSELF EMPLOYED,,F2200\nn/a,,H1700\nCARDIOLOGIST,STEVEN SISKIND/CARDIOLOGIST,Y4000\nAnalyst,\"Moxieinteractive, Inc\",Y4000\nEngineer,WJM Technologies,Y4000\nMEDIATOR-A,SELF-EMPLOYED (MEDIATOR),G5200\nAttorney-at-Law,Munley Munley&Cartwright,K1000\nSPRAGUE DWYER ETC,,J7150\nOwner,\"Terilli's Restaurant\",G2900\nContractor,PIZZAGALLI CONSTRUCTION COMPANY,B1000\nExecutive,Humana Medical,H3700\nMUSICK FINANCIAL MANAGEMENT,,Y4000\nGeologist,Mc Cog Petroleum Corp,Y4000\nEXECUTIVE VICE PRESIDENT,COMMUNITY BANK OF BROWARD,F1100\nAUTO DEALER,KEYES  MOTORS,T2300\nNEW PARIS OIL CO,,E1170\nDEVELOPER,MARTIN FEIN INTERESTS,F4000\nTRAVEL CONSULTANT,CHARMING HOLIDAYS,Y4000\nBAPTIST CHURCH,,X7000\nOWNER,BEZTEK DEVELOPMENT,Y4000\nFOREST HILLS GOLF COURSE,,G6100\nSenior Investment Manage,Earl M Foster Associate,Y4000\nAMERICAN ENVIRON MGT CORP,,E3000\nPresident,Ronald W. Johnson Assoc. Inc.,B0500\nPHYSICIAN,KIDNEY CENTER OF SOUTH LOUISIANA,Y4000\nPHYSICIAN,UMASS MEDICAL SCHOOL,H5100\nPresident,BARNHART INTERESTS,Y4000\nCONSULTANT,MILANO STRATEGIES,Y4000\nLOAN OFFICER,PACIFIC TRUST MORTGAGE,B2000\nPRESIDE,EASTLAKE CAPITAL MANAGEMENT,Y4000\nFRITZ STEIN FARMS,,A1400\nOwner,Brewster and Associates,Y4000\nCEO,\"Sarita Entertainment, Inc\",Y4000\nCREDIT SWISSE FIRST,,F2100\nCIVIL E,ALBA DEVELOPMENT ASSOCIATES,J1100\nEXECUTI,LAPHAM-HICKEY STEEL COMPANY,M2100\nOHIO STATE UNIVERSITY,PROFESSOR,Z9500\nCOGDELL GROUP,,Y4000\nSTORE OWNER,SELE,Y4000\npsychiatrist,none,Z9500\nOWNER,BULLARD FURNITURE,G4400\nFLO-FUM,,A1200\nR.H. MISSNER & CO. INC.,,F7000\nROUGE DRUG STORE,,G4900\nALLIED OUTDOOR ADV,,G5230\nBest Effort,architect/self/uk/7 EX,B4200\nCONTRACTOR,JAN-L,Y4000\nFinancial Executive,\"Spectrum Control, Inc\",C5000\nPARTNER,\"PARRY, ROMANI, DECONCINI & SYMMS\",K2000\nPresident,Reinicke Athens Inc.,G1200\nRetired,NONE,T1400\nRUMPKE CONSOLIDATED COMPANIES,,E3000\nVP-Administratior,Las Colinas Assoc,Y4000\nINSURANCE SALES,\"WRAITH, SCARLETT & RANDOLPH INSURANCE\",Y4000\nOffice Manager,\"INT Information Systems, Inc\",Y4000\nDIRECTOR CO,ALTRIA CORP. SVCS; INC.,A1300\nRETIRED,TIMES PUBLISHING CO.,C1100\nresearcher,boston university,J1200\nInvestments,Camelot Group International,J9000\nRENRO MOLD & TOOL,,Y4000\nGin Manager,\"Coastal Carolina Gin, LLC\",A1100\nSIMIONE CENTRAL CORP,,C5130\nSALES REP,HENRY COMPANY,Y4000\nJ W T DIRECT,,Y4000\nExecutive Officer,\"The Fresh Market, Inc\",Z9500\nMCCLESKEY COTTON COMPANY,,A1100\nInsurance Agent,Nicholson Associates Inc,F3100\nCHIEF OF S,KENTUCKY LT. GOV. OFFICE,K1000\nRICHTON BANK & TRUST CO,,F1100\nPresident,Usa Industries,Y4000\nMLG CORP,,Y4000\nCENTRAL CONNCT CO-OP FARMERS ASSOC,,A6000\nAGENCY,GUARDIAN LIFE INSURANCE CO,F3100\nMANA,CAMPAIGN FOR TOBACCO FREE KIDS,JH100\nDWIGHT LEWIS LUMBER CO INC,,B5200\nDELTA HOSPICE CARE,,H3100\nLandscaper,JFD Landscapes,B3600\nCEO,WOLTERS KLUWER FINANCIAL SERVICES,Y4000\nSelf-employed physician,Self Employed,H1100\nCHIEF EXECUTIVE OFFICER,PLAINS CAPITAL,Y4000\nCONSULTANT,ROBERT A. ROE ASSOCIATES,K2000\nCARDIOLOGIST,CATHOLIC HEALTH INITIATIVES,H0000\nH & N REALTY,,F4200\nPHYSICIST,NAVAL RESEARCH LAB (US GOVT.),Y4000\nExecutive,Amer. Sportfishing Assoc.,Y4000\nTherapist,LA Methodist Childrens Home,Y4000\n\"Director, Govt Affai\",PPG Industries,M1600\nSAFEPLACE CORPORATION,,Y4000\n\"VP, Corporate Taxes\",\"JM Family Enterprises, Inc.\",T2300\nReal Estate Develope,Self employed,F4000\nN/A/HOMEMAKER,,X4200\nCERTIFIED PEDORTHIST,SELF,G0000\nBOOK APPRAISER,LEE PERRON FINE BOOK,Y4000\nEngineering,General Dyanmics,D3000\nSELF-COMMUNICATIONS,,C0000\nVP SALES - PORT SE,VERITAINER CORP.,J1200\nGeneral Counsel,THE SERVICEMASTER COMPANY,G5200\nAttorney,\"Messerli & Kramer, PA\",K1000\nARCHITECT,US DEPARTMENT OF STATE BUREAU OF OVERS,X3000\nROBINSON BRADSHAW & HINSON P H,,K1000\nReal Estate Agent,Higgins Realty,F4200\nEXECUTIVE,\"BREAKDOWN SERVICES, LTD.\",Y4000\nSr. VP,Smith-Free Group,K2000\nInvestment Manager,Lakeside Capital Group LLC,F0000\nPRESIDENT,\"TFT & CO., INC.\",Y4000\nBuilder,Potter Homes,B2000\nRenewalbe Energy Dev,Boreal Renewable Energy Development,Z9500\nUNIV OF NC CHAPEL HILL,,H5100\n\"CHAIRMAN, CEO\",MERIDIAN CAPITAL GROUP,F5000\nTARGETED MARKETING SY,,G5280\nATTORNE,PANZA MAURER MAYNARD ET AL.,K1000\nEXEC DIRECTOR,GRANITE STATE OPERA,C2800\nSTERN HENDY,,F4100\nBEST EFFORT,NAV PAC,J9000\nBusiness Owner,Global Telemedix and Health Partne,H0000\nMuseum president,Museum of Science & Industry,X4200\nPresident,WEISSMONT CO,Y4000\nLanguage Consultant,Self,Z9000\nINSURANCE SALESMAN,,F1400\nCHAIRMAN,ACCESS INDUSTRIES INC.,M2300\nConstruction,Deleon Masonry,Y4000\nCEO,DOUG MOCKETT & COMPANY INC,Y4000\nSU Executive Director of State and Loc,Syracuse University,H5100\nLATTIMORE BLACK MORGAN E,,F5100\nEVP,CASH AMERICA INTERNATIONAL,F2100\nBLACK CONTRACTORS,,B1500\nINDEPENDENT SECTOR,,G0000\nPresident & CEO,Mesa Industries INC,Y4000\nOwners,\"GEO J. SUMMERS TRUCKING, INC.\",T3100\nWILSON SONRISE ET AL,,Y4000\nPartner,\"Lathrop Mossdale Investors, LP\",Y4000\nOWNER,WOODS BODY SHOP,T2400\nVP of Government Affairs,\"G&J Pepsi-Cola Bottlers, Inc\",G2700\nCPA,ROBERT MOISE ACCOUNTANCY CORP.,F5100\nANGLO AMERICAN AUTO,,T2000\nCOOPER-HOROWITZ INC,,Y4000\nSELF,NSS,Y4000\nTEXAS ROAD BORING,,B1000\nMARKETING CONSULTAN,THE BRAND GROUP,G5280\nMarketing,\"Wink Companies, LLC\",Y4000\nPHYSICIAN,PAUL J. WANG,Y4000\nMANAGER,ENVENT CORP,Y4000\nPROJECT MANAGER,FINN STRATEGIES LLC,Y4000\nwriter/musician,Self-Employed,C2800\nOwner,C. Harper Auto Plex,T2000\nstate employee,Maryland Dept of Environment,X3000\nSELF EMPLOYED,DUMAIS ELECTRIC INC.,Y4000\nCPA,MCDIRMID MIKKELSEN & SECREST/CPA,Y4000\nInformation Requested,Wynefield Capital,F2100\nADMINISTRATOR,ARCHDIOCESE OF MIAMI,X7000\nENGINEER,BOOZ ALLEN,G5270\nPhysicist,The Ohio State University,H5100\nCONSULTANT,CLINT HACKNEY CO,K2000\nMidwest Sales Manager,Univision Network,J7300\nNATIONAL CENTRE ON EDU,,X4000\nVICE PRESIDENT SALES,FORTIER INC.,Y4000\nENTERTAINMENT EXECUTIVE,WALT DISNEY COMPANY,C2000\nLABORER,TISHMAN CONSTRN CORP OF NY,LB100\nINSURANC,HARRIS HOMEYER STANTON GRP,F3100\nRETIRED,NONE/RETIRED,J7400\nWEB GUY,WONK NEW MEDIA,C5120\nDOCTOR,AURORA HEALTH CARE,H2100\nPRINCIPAL,IMPALA,F2000\nChemist,University of Southern California,J1200\nCONTRACTORS EQUIP RENTAL IN,,Y4000\nConsultant,\"Permits West, Inc.\",Y4000\nEnterprise Bank,Banker,F1000\nhomemaker,home,Y1000\nAttorney,The PMA Group,K2000\nCONSTRUCTION,GUEPEL DEMAR HAGERMAN,B1500\nMAYOR,CITY OF GLOUCESTER,X3000\nCOntractor,\"Albert Kobayashi, Inc.\",Y4000\nVICE PRESIDENT OPERATIONS,AMERICAN ENGINEERING & MANUFACTURING,D0000\nSTONE SALES,SELF,J1100\nINVESTMENT,SHAY INVESTMENT SERVICES,F7000\nMT PLEASANT CSD,,Y4000\nCERTIFIED PU,MARKS PANETH AND SHRON,F5100\nNONE,HOMEMAKER,B2000\nOWNER,ACE HARDWARE ATLANTIC BEACH,Y4000\nCraftsman,Self Employed,J7400\nIR,National Trust Community Invest Corp,F7000\nINDEPENDENT REGIONAL,THE LONGABERGER COMPANY,M4000\nTax Consultant,Jefferson Wells,F5000\nOIL AND GAS,RICKS EXPLORATION INC.,E1150\nPROFESSOR,TRINITY WASHINGTON UNIVERSITY,H5100\nSECRETARY,CPM,Y4000\nNORTH PARK TRANSIT CO,,T3100\nADMINISTRATOR,\"K M TELECOM, INC\",Y4000\nBROADCASTERS,THE COAST,Y4000\nCO-OWNER,DICKERSON & BOWEN,Y4000\nPresident,HydroGen Inc.,Y4000\nPRESIDENT & C.EO.,DUNAVANT ENTERPRISES/PRESIDENT & C.,A1100\nCEO,E Osterman Inc,E1190\nEXECUTIVE,FL RETAIL FED,Y4000\nCEO,CHARTWELL HOTLES,T9100\nCEO,RPM SYSTEMS CORPORATION,Y4000\nSteen Macek Paper Co,\"Owner, President\",G0000\nMICROLAND ELECTRONICS,,C5100\nVP,Life Cycle Engineering,B4400\nNATIONAL METALWAVES,,Y4000\nSMALL BUSINESS PETROLEUM SALES,SELF-EMPLOYED,G0000\nLIBERTY BROKER,,Y4000\nCRAWFORD COUNTY BANK,,F1100\nCHAIRMAN OF THE BOA,ISP CORPORATION,M1000\nPresident,Vincent Lawrence Plati Inc.,Y4000\nPRESIDENT,SOUTHERN COUNTIES EXPRESS/PRESIDENT,Y4000\nEXECUTIVE,\"RECELLULAR, INC.\",C4300\nVP,ENG. AIR SYSTEMS,Y4000\nNET/TELECOMMUNICATION / I.T.,,Y4000\nINVESTMENT MANAGER,BLUE RIDGE CAPITAL,F2100\nGeographer,SAIC,D3000\nOwner,E-form Inc.,Y4000\nWEISSBERG GROUP,,F4000\nINVESTOR,BAYHILL CAPITAL LLC,Y4000\nCEO,RODDA ELECTRIC INC.,Y4000\nPHYSICIAN,SPINDEL EYE ASSOCIATES,Y4000\nDIE SETTER,,M5000\nINSURANCE AGENT,BANCORP SOUTH,F1100\nOWNER,RAYFORD ENTERPRISES,Y4000\nPRESIDENT,LAITRAM CORP.,M2300\nOwner,Brownit,Y4000\nMANAGER,RENFRO PROPERTY,F4000\nConsultant,Newry Corp,Y4000\nPRESIDENT,PUBLIC POLICY MGMT. GROUP,Y4000\nSTEPHENS SCHLICKSUP & ASSOCIATES,,Y4000\nCOLLECTIVE BANCORP,,F1200\nEXECUTIVE,\"CALLISTO ENERGY, LLC\",E1150\nINVENTORY ASS,KEYS AIRPORT BUSINESS,T1600\nSENIOR STATISTICIAN,WESTAT,Y4000\nBERNSTEIN & CO,,F4500\nCEO AND CHAIRMAN,GRANITE INVESTMENT GROUP,F7000\nOptometrist,Self / Valley Eye Care,J1200\nCONSTRUCTION,DOLAN INC,Y4000\nHARCOURT INDUSTRIES,,M4000\nMETAL STAMPINGS,DIE-MATIC CORP.,Z9500\nExecutive Counsel - Restructuring and,GE Capital,M2300\nEXECUTIVE,COMMUNITY MANAGEMENT INC,Y4000\nminister,United Methodist Church,X7000\nPOLITICAL OPERA,SD GOP VICTORY 2002,Y4000\nDIRECTOR OF RATES,BHSC,E1600\nDIRECTOR/GOVT. RELATIONS,COZEN OCONNOR,K2000\nK W PARTNERSHIP,,Y4000\nMaintenance,Embarq,C4100\nretired,REITRED,X1200\nadministrator,Greenhill School,Y4000\nPresident,SATTLER & ASSOCIATES,G1200\nHOUSING AND COMMUNITY DEVELOPMENT,SELF-EMPLOYED,G0000\nOwner,Jerome Weiss and Associates,Y4000\nLobbyist/partner,Cavarocchi Ruscio Dennis Assoc,K2000\n\"SAFETY CONSULTANT, C\",\"SAFETY PERFORMANCE MANAGEMENT, INC.\",Y4000\nCONSUTLANT,SHIELDS PUBLIC POLICY PARTNERS,K2000\nSales,Self-Employed,F1100\nStatistician,Wyeth,J1200\nOWNER/SENIOR DESIGNER,AIDAN DESIGN,Y4000\nM A ANGELIADES INC,,B1000\nTREASURY DEPARTMENT,,X3000\nCEO,Broin Co.,E1500\nASSOCIATE,CCMP CAPITAL ADVISORS,F2600\nBail Bondsman,Anything Bail Bonds,G5000\nPARTNER/ACCOUNTING,WITT MARES & CO,Y4000\nEDEN FLORAL,,A8000\nORAL AND MAXILLOFACIAL SURGEON,SELF AND UNIVERSITY OF WASHINGTON,Z9500\nHARRINGON LAW FIRM LLC,,K1000\nSUN HEALTH CORP,,H0000\nChairman,Horton Mfg Co,Y4000\nHuman Resources,Fox Entertainment Group,C2000\nREAL ESTATE,CAPITAL LAND,F4100\nAudiologist,Northwestern University,H1700\nCONSULTANT,A.C. ADVISORY INC.,B3400\nexecutive,Promontory Interfinancial Network,F5000\nSCHUMPERT MEDICAL CENT,,H2000\nCEO,INGENIUM CORPORATION,Y4000\nSelf,Billings and Sturbitts,G5200\nNetwork Security Consultant,BT Professional Services,Y4000\nPRESIDENT,NCH CORPORATION,M1000\nCorporat,Curran Manufacturing Corp.,Y4000\nANALYST,KKR,F2600\nPROFESSOR,UNIV. OF WASHINGTON,JD200\nSchool Administrator,Fairfax County Schools,X3500\nFRIEDMAN BAFUNDO & PORTER,,Y4000\nPROPOSAL MANAGER,KFORCE,J7400\nTECHNOLOGY SUPPORT SPECIALIST,BURLINGTON COMMUNTY SCHOOL DISTRICT,Y4000\nSIMON TURNBULL & MARTIN,,K1000\nCHEMIST,FMC,M1000\nTEW AND CARDENAS,,K2000\nDirect Mail,Self,G0000\nMANAGING DIRECTOR,\"PISCES, INC.\",JE300\nPRESIDENT,FRANK W KERR COMPANY,H4400\nTAYLOR ENGINEERING,,B4400\nEXECUTIVE DIRECTOR,HARMONIE INSTITUTE/EXECUTIVE DIRECT,X4100\nInvestment Banker,City National Bank,F1000\nTRANSPORTATION,\"HOWARD SHEPPARD, INC.\",Y4000\nFLORIDA MED CTR,,\nCFO,HASA INC.,Y4000\nUNIVERSITY VICE PRES,PURCHASE COLLEGE SNY,H5100\nCRNA,Univ of North Carolina Hospital,H1710\nRequested,US Security,G5290\nPRESIDENT,TEXAS ASSOCIATION OF BUSINESS,G1000\nCONSULTANT,CORMAC GROUP,K2000\nLAWYER,CAHILL GORDON,K1000\nTO BE ASSIGNED - EX,AEGON INS. GRP.,F3100\nAAA COMPANY,,Y4000\nSOFTWARE DEVELOPER,DELL INC.,C5100\nAttorney,Quinn Emanuel Urquhart O,K1100\nOWNER,THE BIRCHMERE MUSIC HALL,Y4000\nDIR.-SANDRA D,GEORGETOWN UNIVERSITY,H5100\nAudio Music Studio Owner,Self employed,Y4000\nProfessional Staff,District Government,Y4000\nBUSINESS E,BROWN-FORMAM CORPORATION,G2820\nLAWY,YOUNG CONAWAY STARGATT & TAYLO,K1000\nINTERSTATE WELDING COR,,Y4000\nCOOK HOMES INVESTMENT,,Y4000\nSPIRIT PETROLEUM,,E1100\nCIO,State of MN,X3000\nAUTO REPAIR,\"PAUL'S FOREIGN AUTO\",Y4000\nCEO,Economic Security Corp,G5290\nSr Fellow,Honeywell International,M2300\nOperator,Highpoint Marina,Y4000\nORTHOPEDICS OF ENGLEWOOD,,J7400\nLawyer,\"Lieff, Cabraser, Heimann & Bernstein,\",K1000\nConsultant,Dupont Company,M1000\nCOMMUNICATIONS,RDOEQUIPMENT COMPANY,Y4000\nSAP Principal Consultant,\"Datric, Inc\",Y4000\nhomemaker,Garden Homes,B2000\nSERVICE MANAGER,JIM CLICK AUTOMOTIVE TEAM,T2310\nManager,\"EQUILEASE FINANCIAL SERVICES, INC\",G5300\nPRESIDENT AND CEO,\"D.M.B. PACIFIC VENTURES, LLC/PRESID\",Y4000\nPresident,New Visions for Public Schools,X3500\nSELF-EMPLOYED/INVESTOR/TREE FARMER,,F7000\nCEO,INTERNATIONAL FETS INC,T1400\nPHYSICI,MONTGOMERY GASTROENTEROLOGY,H1130\nEXECUTIVE,W. L. KIDD OIL FIELD SERVICE,E1150\nFinance,University of Washington,H5100\nCoach,Self,G6000\nPresident,\"Advanced Bldg. Concepts, Inc.\",Y4000\nLoan Associate,\"Open Access Funding, Inc.\",Y4000\nRETIRED,EVENT CATERING,G2910\nFORSYTH INSTITUTE,,J1200\nPINE CITY NURSING HO,,H2200\nINSURANCE BROKER,\"MC QUERY, HENRY, BOWLES & TROY, L.L.P.\",Y4000\nCONSULTANT,LIBERTY REIGNS INC,Y4000\nSENIOR VICE PRESIDENT,THE BANK OF SOUTHSIDE VIRGINIA,F1100\nFuneral Director,Parker Bros. Funeral Home,G5400\nPRESIDENT,\"BT CONTRACTOR, INC.\",Y4000\nGOVERNMENT,WOMBLE CARLYLE P.L.L.C.,K1000\nPresident,Buffalo Bills,G6400\nOWNER/MANAGER,\"METROPOLIS DRUG, INC.\",H1750\nBOARD MEMBER,DELANEY DISTRIBUTORS INC.,G2850\nMEMBER OF THE HOUSE OF REPRESENTATIVES,STATE OF WASHINGTON,X3000\nH & VAL ROTHSCHILD,,B2000\nREAL ESTATE AGENT,WIECHERT REALTORS,F4200\nVALHALLA SCIENTIFIC,,Y4000\nLIVING STONES FOUNDATION/FOUNDER/CE,,X4100\nBOWLNG ALLEY PROP.,SELF,Z9500\n\"SVP, Medical Management\",Healthspring,H3700\nPartner,\"Barbour, Griffith & Rogers\",K2000\nSales,Delva Tool,Y4000\nNurse-Midwife,Advocate Illinois Masonic Medical Cent,H2100\nCOLLEGE PRESIDENT,EXCELSIOR COLLEGE/COLLEGE PRESIDENT,H5100\nPartner Manager,Adobe Systems Inc,C5120\nATLANTIC TRUST COMPANY,,F2600\nPRESIDENT,WALTER CONSULTING,K2000\nCHIEF MARKETI,BAKER DONELSON ET AL.,K1000\nPOLIS REAL ESTATE,,F4000\nPayroll Clerk,iko Production inc,Y4000\nSENIOR VP,THE SMITH FREE GROUP/SENIOR VP,K2000\nPRINTER,LYLE PRINTING & PUBLISHING,C1100\nINFO REQUESTED,KLEEN TEEM,Y4000\nATTORNEY,ADVOCACY FOR PATIENTS WITH CHRONIC ILL,Z9500\nFL Mayor,City of Penbroke Pines,X3000\nJOYCE INVESTMENT COMPANY,,Y4000\nCEO-PRIVATE LABEL SKIN CARE MANUFACURI,SELF-EMPLOYED,Y4000\nSales Director,Opensoft Technologies,Y4000\nPHYSICAL THERAPIST,INFORMATION REQUESTED PER BEST EFFORTS,K1000\nPR,CARNEY PORTFOLIO MANAGEMENT INC.,Y4000\nFilmmaker,The Metropolitan Museum of Art,X4200\nGATES INC,,F4100\nA R SCHMEIDLER & CO,,Y4000\nEXECUTIVE,BARTH DENTAL LAB,Y4000\nEXECUTIVE,B& J CONCRETE,B5100\nManagement,Cisco Systems,C5110\nOwner,Sela Building Corp.,Y4000\nCommuniactions Consultant,DeMars Consulting,Y4000\nLawyer,Axiom Legal,K1000\nCEO,ACI Telecentrics,Y4000\nTINNIN ENTERPRISES,,F3400\nFAC,FLORIDA INSTITUTE OF TECHNOLOGY,H5100\nVP Program Delivery,United Services Automobile Asn,F3100\nPresident,Schumacher Diamond Cutters,Y4000\nATT,LAW OFFICES OF ZAYTOUN & MILLER,K1000\nOwner,Pat Riha Productions,Y4000\nCHIEF EXECUTIVE OFFIVER,FBL FINANCIAL GROUP,F3100\nBBG INC,,G2900\nACT MATHYS,,Y4000\nElectronics Engineer,Microsemi,C5140\nFire Fighter/EMS,Clarksburg Fire Dept.,L1400\nCEO,EXCALIBUR HEALTH SYSTEMS,H0000\nPROFESSOR,LEBANON VALLEY COLLEGE,H5100\nBRILLSTEIN & GREY ENTERPRISES,,C2400\nCEO,Disability Relations Group,Y4000\nLENDER,\"VIP MORTGAGE, INC.\",F4600\nWAYNE COUNTY COMMISISO,WAYNE COUNTY,J7500\nManager,Bayview Financial,F2100\nOwner,Rowen Laser Vision & Cosmetic Center,Y4000\nCHEMICAL ENGINEER,DOVER HYDRAULICS,Y4000\nNY STATE PARKS COMMISSIONER,,X3000\nSTATE POLICE,RETIRED,X1200\nHOMEMAKER,NOT EMPLOYED,A4500\nPHYSICIAN,SPINEKNOXVILLE,H1000\nNONE,HILLARY LITTLE,Y4000\nCONTRACTOR,CANNON CONTRACTORS INC.,Y4000\nPROFESSOR,CORNELL MEDICAL COLLEGE/PROFESSOR,H5150\nSUMERSET HOUSEBOATS,,T8300\nPartner & Developer,Aqua Land Development,Y4000\nCIVIC VOLUNTEER,SELF-EMPLOYED,F2100\nChairman,RTC Industries,G5210\nBusiness Development,Health Dialog,H1700\nCOCA-COLA BOTTLING CO OF NORTH TEXA,,G2700\nHORSE BREEDER,SAXONY FARM,A1000\nProf,Ub,H5100\nREALTOR,REALTY EXECUTIVE OF UTAH,F4200\nEXEC.,KENMORE CO.,B1500\n\"PUGH'S REPAIR SERVICE\",,G5600\nPUBLIC RELATIONS EXECUTIVE,ENGLANDER KNABE & ALLEN/PUBLIC RELA,K1000\npartner,Shearman & Sterling,K1000\nPRESIDENT/MORTGAGE BANKER,\"U.S. MORTGAGE FUND, INC.\",F4600\nFARM EQUIP MANAGER,,A4200\nTRADE,EDF MAN,Y4000\n\"HARRELL'S ALUMINUM PRODUCTS\",,M2200\nAsoc Exec,Paddlesports Ind Assoc,Y4000\nC,ACQUISITION SPECIALISTS INTERNATL,Y4000\nATTORNEY,ARDAS & LEHN LAW OFFICE,K1000\nPHYSICT,NATIONAL LABORTORY,Y4000\nGeneral Partner,Sandler Capital Managment,F2100\nGENERAL SURGEON,\"LAUREL RIDGE SURGICAL, UNIONTOWN, PA\",Y4000\nPresident,Dakota Evans Restoration,Y4000\n\"COMMERCIAL TITLE GROUP, INC\",,F4300\nATTORNEY,\"CHANDRA LAW FIRM, LLC\",K1000\nEXCEL BANK,,J1100\nMANAGER,KIRBY ENGINE SYSTEMS INC.,T6200\nRANCHER,HOUSTON MUNSON RANCH,A3000\nArchitect/Educator,\"Barton Phelps & Associates, Architects\",B4200\n\"Managing Director, SVP\",Thornburg Funds Group,F2100\nMed Doctor,Self-Employed,H1100\nOPERATING PARTNER,HADLEY CAPITAL,Y4000\nTISHMAN PROPERTY INC,,F4000\nNETWORK COMPUTERS,NYS,Y4000\nOWNER,AMERIWATER INC/OWNER,Y4000\nAnalyst,Applied Data Res Ctr,J1200\nVERMILION INVESTMENTS,,F0000\nCHIEF INVESTMENT OFFICER,PRUDENTIAL,F4200\nsocial worker,Niles Human Services,J1200\nCHAIRMAN & C.E.O.,HOLT COMPANIES/ SAN ANTONIO SPURS,B6000\nFORREST ELECTRICAL,,Y4000\nDENTIST,\"ANGELO ORPHAN, DDS\",H1400\nAttorney,\"Young, de Normandie,\",Y4000\nRETIRED,ONEIDA HOME,Y4000\ncpa,\"Gary Runyan, CPA, P.A.\",F5100\nVICE PRESIDENT,ELEGANCIA FLOORING,Y4000\nPACIFIC SOUTHWEST CONTAINER INC,,M7100\nV.P. INTERNATIONAL S,GULFSTREAM AEROSPACE CORPORATION,T1200\nShipping Agent,\"International Maritime, Inc\",Y4000\nPresident,\"Bagshaw Enterprises, Inc\",G2900\nORTHOPEDIC SURGEON,NEW YORK STATE DEPARTMENT OF HEALTH,X3000\nAttorney,Kerman Senterfitt,K1000\nINTERNATIONAL BANKING & FINANCE,CIFI,Y4000\nFURMAN CORP/OWNER/PRINCIPAL/PARTNER,,B2000\nLawyer,Kelley & Parren,K1000\nATTORNEY,RONALD J. GRICIUS PC,K1000\nDiagnostic Radiologist,\"South County Radiologists, Inc.\",H1130\nManaging Partner,\"Andry, Andry & Williamson\",Y4000\nBanker,Whitney Bank,F1000\nOwner,Romex,Y4000\nAttorney,\"Labaton Sucharow, LLP\",J1200\n\"RAGGIO & RAGGIO, INC\",,K1000\nSVP,COPART INC,T2300\nExecutive/Administrator,\"Hampton Golf, Inc\",G0000\nCOUNTY CONTROLLER,MERCER COUNTY,Y4000\nRIEMEIER LUMBER CO,,B5200\nFinancial Services,Peachtree Settlement Funding,F5500\nGOVERNMENT,ASIAN DEVELOPMENT BANK,X3000\nConsultant,\"Development Services Group, Inc\",Y4000\nATTORNEY,\"PARKER, POE, ADAMS & BERNSTEIN LLP\",Y4000\nCONSULTANT,FLORIDA STRATEGIC GROUP,Y4000\nENGINEER,BERGER GROUP,B4000\nPresident and CEO,Secure Metrics,Y4000\nSales Rep,SILVER LINE WINDOWS,B2000\nJW TEETS ENTERPRISES,,F0000\nPhysician,Eemg,J1200\n\"Darby's Village Pharmacy, Inc\",,G4900\nCHARLES STEWART MOTT FND,,X4100\nExecutive Vice President,Service Professionals Incorporated,Y4000\nBank Director,Self-Employed,F1100\nHOME FEDERAL BANK FOR SAVING,,F1200\nINVESTMENT MANAGER,DOCK STREET ASSET MGMT.,J1100\nDIAGNOSTIC RADIOLOGIST,LAC-USC MEDICAL CENTER,H1130\nSCHNITZER ENTERPRISES,,Y4000\nOWNER,PJ RAIL SALES,Y4000\nStudent,N/A,H1710\nANESTHESIOL,SPECTRUM MEDICAL GROUPL,H1130\nOil & Gas Investment,Self Employed,F7000\nFIRST NATIONAL BANK - WEST,,F1100\nACTUARTY,PACIFICARE HEALTH SYSTEMS,H3700\nPRESIDENT,BANNER LIFE INSURANCE CO,F3300\nARCODIA UNIVERSITY,\"ARCADIA UNIVERSITY, GLENSIDE, PA 19038\",H5100\nCEO,HCSS,B1000\nPresident,Millers Healthcare Products,H3100\nSELF - EMPLOYED,FARMER,A1000\nPANTHEON GROUP,,Y4000\nCOMMISSION FOR THE BLIND,,J9000\nOWNER,CREATIVE TOUCH,Y4000\nDEVELOPER,OMNI NEW YORK LLC,F4000\n,ROANOKE HIGHER EDUCATION AUTHORITY,Y4000\nDept of Physics - Professor,Middle East Technical University,H5100\nPresident & CEO,Allen Communications,Y4000\nINSURANCE,LOVETT TRUCKING COMPANY,T3100\nPHYSICIAN,BAY PATHOLOGY MEDICAL GROUP INC.,H1130\nULTRA CARE SERVICES,,H4100\nSENIOR VP,LYNCH JONES & RYAN INC.,F2100\nM & J MANAGEMENT CORPORATION,,Y4000\nINDEPENDENT FIRE INS CO,,F3100\nVice President & Chief Actuary,VantisLife Insurance Company,F3300\nDirector,See,Y4000\nSURGI-VISION INC,,H1120\nSTEELE-JONES INSURANCE,,F3100\nOwner,Maxspray International Inc Crp,Y4000\nLand Development,Cavalier Land Development Corp,B2000\nVICE PRESIDENT,REYNOLDS & REYNOLDS,T2300\nSECRETARY AND CORPORATE COUNSEL,WESTFIELD MANAGEMENT COMPANY,F3100\nHealthcare Consultant,\"Cerebrio, Llc\",Y4000\nattorney at law,Cooper Deans & Cargill PA,K1000\nEXECUTIVE,CAPITOL BANCORP,Y4000\nOWNER,INTERNET LEAD SOLUTIONS,C5140\nFAIRWAY ELECTRIC CORP,,J5100\nREAL ESTATE AGENT,CORNERSTONE COMMERCIAL,F4000\n\"NATIONAL BEER WHOLESALERS ASS'N\",,J1200\nINFO REQUESTED,\"Natl. Home Mktg. Solutions, Inc.i\",Y4000\nEngineer,Turner Construction Co,B1500\nKING COAL SALES INC,,E1210\nValidation Director,\"Acambis, Inc.\",Y4000\nATTORNEY,ADAMS & WHITAKER P C,K1000\nSalesperson,Commonwealth Land Title,F4300\nVICE PRESIDENT - BRAND DEVELOPMENT,HILL DISTRIBUTING CO.,G2850\nExecutive,Quality King Fragrances,Y4000\nPTA,Home Health Corp,J1200\nTEACHER,SAN FRANCISCO UNIF SCHOOL DIST,X3500\nKENNETH L. PRZYBYSZ LLC/CONSULTANT/,,Y4000\nEXECUTIV,CHILDRESS KLEIN PROPERTIES,F4000\nPresident,\"Double M, Inc\",J7300\nSenior scientist,Cabot Microelectronics,Z9500\nPresident,Systems Research,J1100\nMA,\"DAVE GARVECKY'S OUTREACH OF HOPE\",Y4000\nKRUPIN,GILBERT,Y4000\nWARBURS PINCUS,,F2600\nHR DIRECTOR,CHROMALLOY,T1300\nGLOBAL S,\"EURO-AMER, WOMEN'S COUNCIL\",Y4000\nEXECUTIVE,US EPA,X3000\nphysician,Louisiana State University Health S,H5100\nMTD,City of  Chicago,J7500\nFIN,MACKENZIE PATTERSON FULLER INC.,Z9500\nPRESIDENT,ANNANDALE CAPITAL,F2100\nRetired,MORTICIAN,X1200\nAttorney,Cory Watson Crowder and DeGaris,K1000\nAIR POWER OF OHIO INC,,B6000\nPresident & CEO,Alamogordo Federal Savings & Loan Asso,F1200\nTEACHER,\"CITY OF OAKLAND, HEADSTART\",X3000\nPremiere Radio Networks,,C2100\nPRESIDENT/OWNER,HLH EXPRESS INC,Y4000\nCENTRAL INDIANA ORTHOPAEDICS,,H1130\nBusiness Owner,\"Jcn Enterprises, Inc\",Y4000\nINVESTMENT MANAG,MERITAGE PORTFOLIO,Y4000\nMAYOR,INGLEWOOD,Y4000\nMOSHANNON FALLS MINING,,E1200\nPLAN DE SALUD DE VLE,,Y4000\nOWNER,PATS PIZZA,Y4000\nCIVIL ENGINEER,SAI CONSULTING ENG.,B4400\nSENIOR VICE PRESIDENT,\"LILLY USA, LLC\",H4300\nHALEY & DAVIS,,F3100\nPHYSICIAN,GEORGIA ANESTHESILOGISTS,H1130\nATTORNEY,CISCO SYSTEMS/ATTORNEY,C5110\nPresident,Americas Maid Inc.,Y4000\nPHYSICIAN,OHIO VALLEY PATHOLOGISTS,Y4000\nVice President,\"Camp, Dresser & McKee, Inc.\",J5200\nPRESIDENT,INERGY SERVICES,E1190\nrealty,monarch group,J1200\nCAPE FEAR CENTER FOR DIGESTIVE DISE,,Y4000\nEnvironmental Policy,US Dept. of HUD,X3000\nGODCHAUX SUGAR CO,,Y4000\nCFO,\"ALMOST FAMILY, INC\",H3100\nManager,CTX Mortgage,F4600\nInvestor/Principal,Barness Investments,J5100\nAttorney,\"Drost, Kivlahan & McMahon, Ltd\",K1000\nMONTGOMERY AND HINES,,Y4000\nauthor/trainer,self-employed,G0000\nBULL RUN CORP,,E1220\nREAL ESTATE D,JOSEPH R. MULLINS CO.,F4100\nHARRISON AND HARRISON,,K1000\nINTERNIST,PALO ALTO MEDICAL FOUNDATION,H0000\nNBC,,C2400\n\"SENIOR VICE PRESIDENT, DIRECTOR OF HUM\",UTICA NATIONAL INSURANCE GROUP,F3100\nPresident,Donaldson Bros. Ready Mix,Y4000\nOwner,Lifecycle Technologies,Y4000\nAttorney,Banner Health System,Y4000\nV. P.,Mustang Drilling Ltd,E1150\nCOMM REAL ESTATE DEVELOPER,,F4000\nSINCLAIR MACHINE PRODUCTS INC,,M2300\nPresident,\"Gibraltar Management Co, Inc.\",Y4000\nManaging Director,Voyager Capital,Z9500\nPRESIDENT & C,\"INTEGRA TELECOM, INC.\",C4100\nPresident,\"World's Gold and Diamonds\",G4600\nSENIOR VICE PRESIDENT,MANDALAY RESORT GROUP,G6500\nCOUNTY OF SAN FRANCISCO,CITY,X3000\nREALTOR,WEICHERT FIRST TIER,F4200\nTHE SIERRA CLUB LEGAL DEFENSE FUND,,JE300\nCONCRETE,WILLIAMS FOUNDATIONS INC.,Y4000\nPresident,\"Hunter Properties, Inc.\",F4000\nATTORNEY,\"NELSON, KINDER MOSSEAU AND SATURLEY LL\",Y4000\nVICE PRESIDENT,\"WILLS BURKE KELSEY ASSOCIATES, LTD.\",B4000\nConsultant,\"Catanich Professional Services, LLC\",Y4000\nRESORT MANAGEMENT INC,,Y4000\nSOFTWARE ENGINEER,,C5120\nOWNER,TAULBEE INC.,G2900\nAttorney,Bondurant Law Group,Y4000\nBusiness Systems Ana,\"Metlife Group, Inc.\",F3100\nCHIROPRACTOR,HEADACHE & SPINE OF AUSTIN CHIROPRACTI,H1500\n\"VP, DIVERSITY & COMM AFFAIRS\",TIAA-CREF,F2000\nREAL ES,VENTURE MANAGEMENT & REALTY,F4200\nATTORNEY,BCM ENVIRONMENTAL & LAND LAW,Z9500\nPresident,\"Townsend Building Supply, Inc\",Y4000\nAEXCO PETROLEUM INC,,E1100\nFULTON BREAKEFIELD,,F2100\nEXEC VP & GEN MANAGER,,D5000\nATTORNEY,GREENE & SCHULTZ,Z9500\nJudge,State of IL,K1000\nV.P.,City Point Const Company Inc.,B1500\nGeneral Counsel,Creative Management Realty Company,F4200\nPresident,Spectrum Transformer,Y4000\nCPA,\"EDWIN KEH, CPA/CPA\",F5100\nINTERPRETER,DORIS PEREZ INTERPRETING,Y4000\nFINANCIAL VISIONS,FINANCIAL VISIONS,Y4000\nCONSULTANT,\"QUINN, GILLESPIE & ASSOCIATES, LLC/\",K2000\nPRESIDENT & CEO,TRACINDA CORPORATION,F7000\nTEACHER,HOME SCHOOL,Y4000\nPALMER BUS COMPANY,,Y4000\nPHYSICIAN,BINVILLE REG MED CTR,H1100\nBookkeeper,\"Marine Recovery Services, Inc\",Y4000\nDIRECTOR,VENTURE COMMUNICATIONS COOPERATIVE,C4100\nLANDMARK CORP.,,B1000\nGOVT. RELATIONS,AMEREN UE,E1620\nEXECUTIVE,W.C.A.,Y4000\nMANAGER - PROCUREME,PRATT & WHITNEY,D2000\nPhysician,Univ. of Illinois Medical Ctr.,H2100\n\"KEOL, KIRBY, & ASSOC\",,Y4000\nPathologist,The Permanente Medical Group,Z9500\nPRIVATE INVESTOR,THE RIME COMPANIES,F4100\nSelf Employed/Shipping C,P-J Hardys Dist Ctr,Y4000\nPRESIDENT,BUFFALO ENGINEERING,B4400\nVICE CHAIRMAN,SINGMA IMPORTS,M3500\nREALTOR/DEVELOPER,\"THE LOLLEY GROUP, LLC\",Y4000\nJEFFERSON COUNTY FISCAL,,X3000\nHealth & Safety Coordinator,Chevron,E1110\nACCOUNTANT RETIRED,RETIRED,X1200\nPresident,Silicon Valley Automation,Y4000\nCFO,LINCOLNN EDUCATIONAL SERVICES,H5200\nRetired LAUSD educator,Retired,X1200\nMERIDIAN AGGREGATE,,B5100\nPETER LUGER STEAK HOUSE,,G2900\nattorney,\"Smith, Andrews, Brady & Winter, P.A.\",K1000\nTHE ARNOLD COMPANIES,,G4300\nSr VP UBS,UBS,F2100\nHOME BUILDE,\"CHAMBLISS BUILDERS, INC\",Y4000\nVP-SALES & R,FORT MILL TELEPHONE CO,C4100\nSALESMAN,ACE FENCE,Y4000\nFRANCHISEE,MIRABLE INVESTMENT CORPORATION,G1000\nMANAGER,CAMERON INTERNATIONAL,E1150\nFinancial planner,Self,F5000\nPHYSICIAN,ALCON RESEARCH LTD,Y4000\nChief Executive Offi,First Republic Bank,F1000\nBeauty Products,Self-Employed,Y4000\nAttorney,Connors and Vilardo,K1000\nRUBBER AND ACCESSORIES INC/VP / OWN,,Y4000\nPhysician,The Cardinal Ortho Inst.,H1000\nDIRECTOR,MENORAH MEDICAL CTR.,Y4000\nRETIRED MONEY MANAGER,T ROWE PRICE,J1100\nLAWYER,\"MICHAEL K. BAILEY, P.A.\",Z9500\nTRIBOL CORP,,Y4000\nBUS. OWNER,SOYA,Y4000\nWEBCAST TECHNOLOGIES,,Y4000\nA I P A C,,J5100\nHON TODD TIAHRT,,Y4000\nDENTIST,THE CHILDRENS HOSPITAL,H2100\n\"Global Routes, Inc.\",Director,J1200\nOwner,Hot Java,Y4000\nOWNER,SUPER CHINA BUFFET,Y4000\nMyself,,Y4000\nWANG INSURANCE,,F3100\nGF LEAGUE MFG COMPANY,,Y4000\nCFO,VENTURE TRANSPORT,T0000\nLAW OFFICE OF L P COS,,K1000\nHealthcare,Theragenics,H4000\nPRESIDENT,EDELMANN LOVE PROPERTIES,F4000\nHR Director,Wachovia Corporation,F1100\nLawyer,\"Brad Miller, PC\",Y4000\nAdministrator,Wayne County Commission,X3000\nMARKETER,\"YEAGER'S FUEL, INC.\",E1170\nOPTHALMOLOGIST,EYES OF TEXAS,Y4000\nBUSINESS OWNER,CANDICE RUTTLEY,Y4000\nBUSINESS MANAGER,MORGAN ASPHALT,B0500\nATTORNEY,\"CHAMBERS, NORONHA & KUBOTA/ATTORNEY\",Y4000\nREGIONAL INVESTMENT BANKERS,,F2300\nPoker Manager,Bellagio,G6500\nMANAGEMENT CONSULTIANT,SELF,Z9500\nCONTRACT MANAGER,SELF,G0000\nPRESIDENT,LESLIE ADVERTISING,G5210\nCo-Owner,Dinkel Impl. Co.,Y4000\nVICE PRESIDENT,RUSS REID COMPANY,J7400\nBusiness Manager,BP Solvay Polyethylene North America,Y4000\nAttorney,\"Vorys, Sater, Seymore & Pease\",K1000\nAttorney,\"Kiesel, Boucher & Larson\",K1000\nINFORMATION REQUESTE,SALLIE MAE,F1410\nELLIOTT REIHNER SIEDZIKOWSKI & EGAN,,K1000\nMedia,Three Ships Media,Y4000\nATTORNEY,\"MCIVER & GRAHAM, P.A.\",Y4000\nBEN SPURGIN INSURANCE AGENCY,,F3100\nPRESIDENT,MARINE CONCEPTS,M1000\nLANDON BUTLER & CO,,F4000\nbanker,Woodforest National Bank,F1100\nAdjunct Professor,Ohsu,H5100\nUS PEACE CORPS,,X3000\nInvestor,Joseph M Thomas,Y4000\nPATRICO,,Y4000\nExecutive Vice Presi,Bouchard Insurance,F3100\nCONSULTANT,CONSULT LTD/CONSULTANT,J7400\nFurniture Designer,Steve Hodges Associa,Y4000\nCONSULTANT,POWERS GLOBAL STRATEGIES,Y4000\nPEOPLESOFT USA INC,,Y4000\nBranch manager,Wells Fargo Advisors,F2100\nIN KIND YARD SIGNS,,G5230\nGeologist,US GEOLOGICAL SURVEY,X3000\nREEVES BROTHERS,,M8000\nChairman of the Boar,\"Health Net of California, Inc.\",H3700\nCOO,Medical Facilities of America,H2000\nEDUCATOR,\"NEW THINKER, LLC\",Y4000\nowner,\"Schneider, Bluhm and Loeb gallery\",Z9500\nRegister of Deeds,Comm. of Mass.,X3000\nVice President,The PMA Group,K2000\nEXECUTIVE,T.D. BANK GROUP,F1100\nProfessor,UW-Madison- Dept of Rural Sociolog,H5100\nSubstitute Elementary School Teacher,san Francisco Unified School District,X3500\nAnalyst,Atlantic County Utilities Authority,Y4000\nResearch Director,The Advertising Council,G5210\nMASTER ENCHILADA ROTTER & FORMER DI,,Y4000\nOWNE,SIERRA NEVADA SPAS & BILLIARDS,Y4000\nWATSON BISHOP LONDON,,J7400\nRealtor,Novare Realty,F4200\nINFO REQUESTED,Jessem Tool Co. Inc.,M5000\nCASTLE INSPECTIONS,,Y4000\nCEO,Diamond Comics,Y4000\nConsultant,Ibarra Associates,J7500\nLAND AIR MAPPING INC,,B4300\ndirector,NYS Lottery Division,Y4000\nSITHO ASIA HOLDINGS LTD,,Y4000\nHUD FEDERAL CREDIT U,,F1300\nJACOBSON ELECTRIC,,B3200\nNot employed,,G5270\nPRESIDENT,PR CONSULTING,Y4000\nGovernment Affairs,Integrated Capital Strategies,Y4000\nTHIEL TOOL & MFG CO,,M5000\nPULTIZER INC,,Y4000\nPresident and CEO,American Gateway Bank,F1100\nCONSULTAN,\"DRUMMER & ASSOCIATES, LLC\",K2000\nPARTNER,CULLINAN PROPERTIES,F4000\nCENTRAL ORTHOTIC & PROSTHETIC,,H4100\nVIDEOGRA,\"ADVENTURE PRODUCTIONS, LLC\",Y4000\n\"Director, Center for American Women an\",Rutgers University,J7400\n\"VP, Human Resources\",M Financial,F2100\nMEMORIAL SLOAM,,H2100\nCFO,CLEARWATER CONSULTING CONCEPTS,Y4000\nINTEGRITY TECH SERV,,Y4000\nPHARMACIST,HOFFMAN DRUG,H1750\nBEVERIDGE & DIAMOND,,J1200\nSILL INC,,Y4000\nENGINEER,GALAXY SCIENTIFIC,Y4000\nDIRECTOR,ADVENTURE SAFETY INTL,J1200\nPresident and General Manager,WHNT-TV,C2100\nALLISON RENTALS,,G5300\nFINANCE ADVISOR,J.P. MORGAN SECURITIES/FINANCE ADVI,F1100\nMANAGER,CMU,Y4000\nWINDSOR OAKS,,Y4000\nYoga Instructor Writ,South,Y4000\nHD OF WFHL CUSTOMER EXCELLENCE,WELLS FARGO BANK N A,F1100\nPresident,Tellefsen Investments Inc.,F7000\nCREATIVE DIRECTOR,TIME WARNER,C2000\nUNITED HEALTH SERVICES,,H2100\nCO FOUNDER,ZOOMDOJO,Y4000\ndesigner/lawyer,n/a,Z9500\nSystems Engineer,City And County Of San Francisco,J1200\nJIM WARD ARCHITECH,,B4200\nPartner,\"Blaylock & Partners, LLP\",K1000\nA,\"LEVIN, SIMES, KAISER & GOMICK LLP\",K1100\nOIL & GAS LEASE BROKER,SELF,J1100\nAttorney,Gruber Law Office LLC,K1000\ncommercial Floor Installer,Elite Floor Co,E4200\nVICE PRE,BELVEDERE MANAGEMENT CORP.,Y4000\nCEO,MAIN STREET COMMUNITY BANK,Y4000\nInsurance,Earl Bacon Agency,Y4000\nALTERNATIVE HEALTH CONSULTANT,SELF EMPLOYED,G0000\nCHASTAIN LAW FIRM,,K1000\nLORRANE SURGICAL,,H1130\nChairman/CEO,\"Corvina Investment Holdings, LLC\",F7000\nBUSINESS OWNER,\"CUMMING SOUTHERN PLANS, LLC\",E1700\nMORRIS AUCTION & REALTY,,F4200\nC.E.O.,CANE CREEK PHARMACY,G4900\nCEO & CHAIRMAN,RXR REALTY,F4200\nCFO,Marquis Companies,Y4000\nPhysician,Self,J2200\nDoctor,University Of Ky,H5100\nCOUNSELOR,RECOVERY HEALTHCARE CORP.,H0000\nLANDSCAPE ARCHITECT,SITSCAPES,Y4000\nINFO REQUESTED,E I Steel Inc.,Y4000\nDELIVERY ASSOCIATE,SYSCO OF CENTRAL CALIFORNIA,Y4000\nBANK CENTRAL ASIA,,Y4000\nJames K Weber & Associates Inc,,Y4000\nPARTNER,TECHNTECH LTD.,Y4000\nCONSULTANT - PHARMACHEMIST,SELF-EMPLOYED,M1000\nMANAGEMENT,DELLINGER MANAGEMENT,G5270\nPRES,OVERSEAS PRIVATE INVESTMENT CO,X3000\nATTORNEY,ICSGROUP LLC,Y4000\nProfessor,University of Oregon,J1200\nteacher/writer,University of Maryland,H5100\nResource Coord,\"Children's Hospital\",J1200\nPHYSICIAN,BRIER CREEK PAIN AND SPINE,H1130\nPRESIDE,TALLAHASSEE LINCOLN MERCURY,T2300\nCHEMIST,CIL INC.,Y4000\nRIVIS & POGUE,,Y4000\nAUTO D,BILLY HOWELL AUTO DEALERSHIP,T2300\nATTORNEY,HOFFMAN SILVER GILMAN,Y4000\nGEN. CONTRACTOR,\"TURNER BROS. CONST., INC.\",Y4000\nPresCEO,Stonebridge International,G5270\nMUSEUM DIRECTOR,THE BAKKEN,Y4000\nAsset Manager,RMI Capital Mgt,F2100\nMEDIA CONSULTAN,SQUIRE KNAPP ET AL.,G5200\n\"CONTROLLER, CORP SECRETARY\",CUNNINGHAM DEVELOPMENT COMPANY,F4100\nReal Estate,V.D.I. SERVICES,F4000\nPARTNER,THE LEFRAK ORGANIZATION,F4100\nATTORNEY,\"KAVESH, MINOR & OTIS\",Y4000\nO,DRS ELGART & PINN OPTOMETRISTS PC,H1120\nCOO,\"ASPECT ENERGY, LLC\",E1000\nwriter (retired),retired,X1200\nLIBRARIANS,LIBRARY OF CONGRESS,X4200\nDMR CONSULTING,,J1100\nLawyer,Osborn Maledon,K1000\nHEAD OF THERAPY,VARIAN MEDICAL SYSTEMS,H4100\nSERVICE ENGINEER,QUALXSERV INC.,Y4000\nManager,Internews,C2100\nSr. Director Ops,Comcast,C2200\nPhysician,Woods Cariovascular Internal Medicine,H1130\nATTORNEY,\"BRIKER & ECKLER, LLP\",K1000\nRESEARCH SCIENTIST,\"BOEHRINGER INGELHEIM VETMEDICA, INC.\",Y4000\nSAINT LOUIS LAMP PLANT,,Y4000\nGASTROENTEROLOGY CONSULT,,H1130\nTHOMPSON SIEGEL & WALMSLEY,,F2100\nPresident,Red Star Oil Co. Inc.,E1100\nMANAGER,KUEHN MOTORS,E1500\nConsultant,Bank Of America,F1100\nCEO,Levin Capital Strategies LP,F2100\nPRESIDENT,COLLETTE CONTRACTING,Y4000\nOKLAHOMA INSURANCE DEPARTMENT,,Z9000\nSPM,,Y4000\nSALES,SHERWIN WILLIAMS CO.,M1600\nChief Staff Officer,\"Retired from Spectrum Stores, Inc\",G4300\nVICE PRESIDENT,DOMINION ENERGY,E1100\nEXECUTIVE,EMMERSON ELECTRIC CO.,B3200\nST JOHNS CLINICS,,H1100\nSALES MANAGEMENT,LEVEL 3,C4000\nInformation Technology Administrator,Samol Systems,Y4000\nScience Technician,Columbia University,H5100\nL A GEAR,,Y4000\nSenior Attorney,Emerson Electric Co.,C5000\nOWNER,SOLUTIONS BUSINESS IMAGING,Y4000\nowner,Total Business Solutions,Y4000\nPrincipal,\"Twenty-First Century Group, Inc\",K2000\nSR VP,\"SHIPCOM WIRELESS, INC.\",Y4000\nBYERS CHIROPRACTIC CENTER,,H1500\nPRESIDENT,MISSISSIPPI LIME,Y4000\nVolunteer Outreach Coordinator,Lea Carola,X4100\nMACHINIST,UNITTOOL,Y4000\nOwner,Neimann Properties,F4000\nPhysician,Generations OB-GYN Centers,H1100\nPROFESSOR,MT SINAI MED CTR,H1130\nState Policy and Campaigns Director,\"Communicationworks, LLC\",Y4000\nSpeach Coach,Self Employed,Y4000\nSUPER,SUMNER CO. BOARD OF EDUCATION,X3500\nEAST BRAINERD LUMBER,,Y4000\nSenior counselor,Porter Novelli Life Sciences,G5210\nExecutive,Topham Company,F4100\nPRESIDENT/CEO,FOLK OIL COMPANY INC.,Y4000\nVETRINARIAN,METRO VET ASSOC,Y4000\nDEPUTY GEN MANAG,WACKENHUT SERVICES,G5290\nCUSTOMER SERVICE MANAGER 4,MCKESSON CORPORATION,H4400\nCFO,BACHMANN TRAINS,J1100\nACCIDENT RECONS,,B4000\nService Manager,Posen Construction Inc.,B1500\nSENATOR,ATTORNEY,X3100\nSOUTH BROWARD CARDIOLOGY CONSULTANT,,H1130\nMAYOR,CHAGRIN FALLS,X3000\nAR SPINE CENTER,,H1130\nDIRECTOR PRODUCT DEV,CHAPARRAL STEEL COMPANY,M2100\nAttorney,Chennesky Heyman & Kress,Y4000\nF R LEPAGE BAKING,,G2100\nKING CTY DEPT OF COMM & HUMAN SERVI,,X3000\nLBMI TELECOMMUNICATIONS,,Y4000\nReal Estate,Davis & Bellinson LLC,J5100\nCHIEF OPERATING OFFICER,BLACKHEART INTERNATIONAL,Y4000\nPR,SPACE TRANSPORTATION ASSOCIATION,T0000\nDir Finance I,HP,C5100\nConsulting/Professional Services,Education First Consulting,Y4000\nBINGO WORKER,MICHIGAN DEMOCRATIC PARTY/BINGO WOR,J1200\nTEACHER,T.U.S.D.,Y4000\nREAL ESTATE FINANCE,J.P. MORGAN,F1100\nSelf,Medical Doctor,H1100\nPresident,Gsm,Y4000\nECONOMY SUPPLY,,B5300\nRESEARCH,SEIU,LG300\nACCOUNTANT,CRW CORP.,Y4000\nMARKETING MANAGER,MICROSOFT CORPORATION,C5120\nIndian Tribe,,G6550\nMATHEW OUTDOOR ADVERTISIN,,G5230\nMORTGAGE BROKER,FLORIDA MORTGAGE,F4600\nPHARMACIST,MACS PHARMACY INC.,G4900\nYOUTH SERVICES FOR OKLAHOMA,,Y4000\nExecutive,E.W.M. General Operators,Y4000\nPARALEGAL,LUBIN LAW,Z9500\nPresident,Synergy Professionals Inc.,Y4000\nVERA INST OF JUSTIC,,J7400\nCalifornia State Board of Equalizat,,J7400\nINVESTMENT BANKING,PRINCIPAL CAPITAL,F0000\nSelf - Employed,Woods Outfitting,Y4000\nINFO REQUESTED,SKYLINE PHARMACY,G4900\nSTORE OWNER,SELF-EMPLOYED,J5100\nEXEC,\"CONTINUE CARE, CORP\",Y4000\n\"CARDINAL'S SUPERMARKET\",,G2400\nBRUCE ARTWICK ORGANIZATION,,B4400\nCONSULTANT,SELF,F2600\nExecutive,Margaritaville Holdings,Y4000\nEXECUTIVE DIRECTOR,NUCAORSWA/EXECUTIVE DIRECTOR,Y4000\nDOUBLETAKE MAGAZINE,,C1100\nPERSUS LLC,,F2100\nT J AND A,,Y4000\nATTORNEY,,J7200\nRETAIL,WAL-MART STORES,G4300\nPresident,Safeway Mortgage,F4600\nBANK DIRECTOR,BANK TEXAS N.A.,F1100\nKC MASTERPIECE BBQ,,G2900\nPHARMACIST,\"CHARLIE'S PHARMACY\",H1750\nPROJECT MANAGER,IHS GLOBAL INC,Y4000\nMANAG,CONWAY REGIONAL HEALTH SYSTEM,Y4000\nLIQUOR INSPECTOR,BALTIMORE COUNTY,X3000\nC.P.A.,\"JONES SIMKINS, P.C.\",Y4000\nRETIRED PROFESSOR.,NONE,Z9500\nPresident,VTN-Nevada,B4000\nMANAGEMENT CONSULTANT,\"VIEW ADVISORS, LLC\",Y4000\nALEXANDRIS & SIDERIAS,,Y4000\nFEDERAL EMPLOYEE,US GOVERNMENT,Z9500\nBUSINESS DEVELOPMENT,SIEMENS GOVERNMENT TECHNOLOGIES,Y4000\nU OF NY,,H5100\nOFFICE EQUIP,,Y4000\nALAMO TRUCK STOP,,E1170\nAdministration,Episcopal Homes of MN,B2000\nBUSINESS OWNER,THOMPSON WRECKING CO.,Y4000\nINDUSTRI,\"CHAMPION MINE SUPPLY, INC.\",E1200\nENGINEER,VABAK,Y4000\nCHIEF SCIENTIST,\"ES3, INC.\",C5120\nOWNER,DEWITT SEED,Y4000\n\"POWELL,GOLDSTEIN,FRAZER&M\",,K1000\nChairman,ASCOA,H1130\nManager,PIC,A3000\nDIRECTOR-AG AGENCY,FARM CREDIT BANK OF TEXAS,A4000\nSPRINT NEXTEL,MARKETING MANAGER,C4300\nBuilder,T. L. Wallace Construction,B1500\nPHILANTROPIST,SELF,F2100\nPresident,DT. Tarfonerie Corp,Y4000\nPresident & CEO,\"El Dorado Capital, LLC\",Y4000\nTeacher,New School,JE300\nDOC,NORTHWEST FLORIDA HEMATONCOLOGY,H1130\nInsurance Brokerage,Holmes Murphy & Associates,F3100\nElectrical Contractor,Neal Electric Inc,B3200\nCFO,\"PRICELINE.COM, INC.\",C5140\nELECTRICAL ENGINEER,XILINX,C5110\nPRESIDENT,KINDLER PONTIAC CADILLAC,T2300\nHERBERT KAI FARMS,,A0000\nSenior Vp Development,Lkq Corporation,T2200\nF C BUSINESS SYSTEMS,,Y4000\nDIRECTOR,RIT,Y4000\nDermatology,Palm Beach Esthetics,Y4000\nMANAGEMENT,MTV NETWORKS,C2200\nASSOCIATE,CASTANEA PARTNERS,Y4000\nGENERAL MANAGER,BOB CAL,Y4000\nPHYSIC,CHICAGO NASAL & SINUS CENTER,H1130\nFounder/CEO,Avedafredricsinstitute,Y4000\nCO-OWNER,ELLISON EDUCATIONAL,J1100\nINFO REQUESTED,ARMSTRONG INDUSTRIAL HOSE PRODUCTS,Y4000\nSELECTO PRODUCTION COMPANY,,Y4000\n\"CONDUIT TOTAL: 46,792.51\",,J2100\nParaprofessional,North Hills School District,X3500\nMANAG,LOVELACE RESPIRATORY RESEARCH,Y4000\nD M R ARCHITECTS,,B4200\nInformation Requeste,Information Requested,K1200\nCONSULTING ACTUARY,SELF,F3000\nMarble & Tile Seller,Self-Employed,Y4000\nVice President Rental,\"ERAC CO of San Francisco, LLC\",T2500\nFINANCIAL ADVISOR,HILLIARD,F2300\nPresident,\"Baldwin , Hackett & Meeks, Inc\",C5120\n\"AERIE, LLC\",,Y4000\nExecutive,Benchmark,J1200\nCEO,Wireless Specialists Group,Y4000\nPEDIATRICIAN,HUNTERDON DEVELOPMENTAL PEDIATRIC ASSO,H1130\nSenior General Couns,Norfolk Southern Corp.,T5100\nHANIFY & KING PC,,K1000\nCEO,Ksi Conveyors Inc.,Y4000\nSALESMAN,SELF-EMPLOYED,G0000\nreal estate,Self-employed,F4100\nPresident/CEO,\"Ncompass Media, LLC\",Y4000\n3rd Mate,INTREPID PERSONNEL & PROVISIONING,LT500\nSENIOR VP CORP BUS DE,QUALCOMM INC.,C4300\nPRES,KING FROG 1 HR. PHOTO LAB INC.,Y4000\nCEO,Marinas International,Y4000\nJAMES H DAVIDSON,,K2000\nFilm/Video Editor,\"Giaronomo Productions, Inc\",C2400\nLawyer/Partner,Sutherland Asbill & Brennan,K1000\nPartner,Global Data Consultants Inc,Y4000\nCEO,HOLLYWOOD STUDIO 10 ENTERTAINMENT,Y4000\nPRESIDENT & C.E.O.,ADAMS LABORATORIES,Y4000\nChairman,RCI Construction Group,B1500\nFINANCIAL PL,SAMPERS FINANCIAL INC.,F3100\nVIRGINIA HOUSE OF DELEGATES,MEMBER,Y4000\nCHAIRMAN & C.E.O.,NORTH AMERICAN COMPANY FOR L. & H.,Y4000\nATTORNEY,SANDLER TRAVIS AND ROSENBERG P.A.,K1200\nMCRAE PERRY PECHMANN & WILLIFORD,,Y4000\nH K CAMPBELL & CO,,Y4000\nINSURANCE CONSULTING,NWBG,Y4000\nBusinessman,\"Les Gardner, Businessman\",Y4000\nTEACHER,ADA SCHOOLS,H5100\nPRESIDENT &,CA WATER SERVICE GROUP,E5000\nMANDZIUK FUNERAL HOME,,G5400\nADVERTISING EXEC,\"M.H. MEDIA, L.L.C.\",G5260\nCHIEF EXECUTIVE OFFI,SPARROW`S HAVEN,Y4000\nBUSINESS OWNER,COLORADO WATERJET COMPANY,Y4000\nCHICAGO WILDERNESS MAGAZINE,,J7300\nNews Editor,Local Tv,C2100\nPHOENIX DESIGNS,,J7120\nCEO,PACKAGING CORP. OF AMERICA,M7000\nstructured settlement consultant,\"Ringler Associates/ Jor-Mad, Inc\",F4700\nSALES REP,ENERGY PRO,Y4000\nUS AGNCY FOR INTERNATIONAL DVL,,X3000\nPhysician,Self/Hernando Eye Institute,H1120\nEXECUTIVE,TDX CONSTRUCTION CORP,B1500\nINTERNATIONAL SECRETARY- TREASURER,UNITED FOOD & COMMERCIAL WORKERS,LG100\nRIVERSIDE DISTRIBUTO,,Y4000\nAttorney,\"Herman, Howry, Breen, LLP\",Y4000\nSCHOOL BOARD MEMBER,ORLEANS PARISH,X3000\nPresident,DeMarois Buick GMC Co,T2300\nMarketing,Cavium Networks,Y4000\nMANAGEMENT CONSU,THE RESEARCH BOARD,Y4000\nPRESIDENT,PM COMPANY,Y4000\nLIAISON TO GENERAL PRESIDENT,LIUNA,LB100\nPhysician,\"St Anthony's\",Z9500\nVeterinian,Hollywood Animal Hos,A4500\nCO-OWNER,KWIK MARTS CONVENIENCE STORES,Y4000\nMODEL,SELF-EMPLOYED/MODEL,G5200\nCORRIDER BROKERAGE SERVICES,,J5100\nWholesaler,Bolls Distributing,Y4000\nSR. VP OF GOV. RELATIONS,\"MARY KAY, INC\",M3300\nPRIVATE MONEY MANAGER,\"STEINHARDT MANAGEMENT CO., LLC\",G5270\nCONGRESS AUTO INSURANCE AGENCY INC.,,F3400\nTIRE DISPOSAL INC,,Y4000\nORION BUILDING CORP,,B1000\nPresident & Chief Ex,Mercy Health Partners,H2100\nFinancial Analyst,Us Dept. Of Hhs,X3000\nPRINCIPAL,\"CRD ASSOCIATES, LLC\",K2000\nN/A / CAREER VOLUNTEER,,Y1000\nRegistered Nurse,Dr. Benjamin Lechner,H1710\nAdmission Director,Fryeburg Academy,Y4000\nMarketing Director,Seasons/Dr Goodyear,Y4000\n\"MECKLEY'S LIMESTONE PRODUCTS\",,B5100\nClinical Pediatrics,University Hospitals,H2100\nHEALTHFIELD GROUP INC,,H3100\nAFORCE INC./PRESIDENT/OWNER,,Y4000\nPRESIDENT,BACHMAN MACHINE CO. INC.,M5000\n\"MAHONEY, HAWKENS & GOLDINGS\",,K1000\nPHYSICIAN,ACUH,Y4000\nTHE LVI GROUP INC,,B3000\nSELF,KH ENTERPRISES INC.,Y4000\nTRIME WONNER INC,,C2000\nPresident,Pioneer College Cate,G2910\nDonor Activist,Unemployed,J9000\nadmin,retired,X1200\nPresident and CEO,Jefferson Lines,T4100\n\"POPE & ASSOCIATES, INC./CEO/OWNER\",,Y4000\nATTORNEY,CHAPMAN & CHAPMAN,K1000\nSCHTILLER & PLEVY,,B3400\nENGI,DUANE MILLER ASSOCIATES L.L.C.,Y4000\nCHIEF OPERATING,METROPOLITAN GROUP,Y4000\nBREIT DRECHER AND BREIT,,K1000\ncmo,wenner media,C1100\nmortgage lender,self-employed,Z9500\nHealth Care Consultant,AXIA Management Consultants,J7400\nMember,Spectal,Y4000\nOWNER,LOCAL WINE EVENTS.COM,C5140\nNH CARDIOLOGY CONSULTANTS,,H1130\nConsultant,Redmond Assoc Inc,Y4000\nC. P. A.,PETERSEN SULLIVAN & CO.,Y4000\nDeputy Commisioner,Fire Department of New York,X3000\nIT,State of California,X3000\nmanagment consultant,self,G5270\nCHEF,WINE ON THE WATERFRONT,Y4000\nMANAGER,OIL COMPANY,E1160\nPresident,Tradelink LLC,J1200\nPRESIDENT,MPG,Y4000\nVP GOVERNMENT,VAN SCOYOC ASSOCIATES,K2000\nPRESID,ATLANTIC PAPER TRADING CORP.,A5200\nFire Fighter/EMS,BRIDGEPORT FIRE DEPT.,L1400\nProject Engineer,Tatum DW,Y4000\nManaging Director,\"Credit Suisse (USA), Inc\",F2100\nOwner,Wittrock Tire,Y4000\nPROFESSOR,HAOWARD UNIVERSITY,J7400\nPresident / CEO,California IGCS,J1100\nAPT ASSN OF DALLAS,,F4500\nanalyst,Washington Institute for Near East Pol,Y4000\nMANAGER,A.B.H.L. INC.,Y4000\nA H A GENERAL CONSTRUCTIO,,B1500\nPHYSICIAN,EMERGENCY PHYSICIANS INTERNIST,Y4000\nMERCANTILE BANK OF KANSAS CITY,,F1100\nHORSE TRAINER,GALESWAY FARM,Y4000\nPhysician,Portland VAMC,H2000\nPRINCIPAL AD,RIO TINTO SERVICES INC,E1220\nbroker,\"Janney Montgomery Scott, LLC\",J1100\nVP,YESCO OUTDOOR MEDIA,G5230\nPRESIDENT,PIERRE AND TANA MATISSE FOUNDATION,Y4000\nENGINEER,CHEVRON-TEXACO,J6200\nchairman of higher e,\"Maguire Associates, Inc.\",Y4000\nOrthopaedic Surgeon,Texas Back Institute,H1100\n\"CISCO'S BAR\",,J7400\nBenefits Consulting,B.B.&T. INSURANCE SERVICES,F3100\nAPPLE DAILY,,C1100\nNEIGHBORING CONCEPT,,Y4000\nCHAIRMAN OF,AMER INCOME LIFE INSUR,F3300\nWRITER,GENESEE DEPOT PRODUCTIONS,Y4000\nSCIENTIST,BAYLOR COLLEGE MEDICAL,H5150\nPHYSICIAN,NATCHEZ MORICE MD MBA LLC,Y4000\nSOHO JOURNAL,,Y4000\nADMINISTRATOR,\"ST. MARY'S HOSPITAL\",H2100\n\"ANESTHESIA RESOURCE MANAGEMENT, INC\",,H1130\nConsulting Engineer,The EADS Group,D2000\nEXECUTIVE,PHIBRO ANIMAL HELATH GRP,Y4000\nRetired,Not Employed,C1100\nowner,Laff Associates,H3100\nFINANCIAL,\"ERWIN CAPITAL, INC\",F0000\nBusiness Owner,Ride and Shine Carwash,G0000\nADVISOR,FORWARD STRATEGIES,Y4000\nNational Director Of,Kaiser Pearmanente,H3700\nEXEC,KOHLBERG KRAVIS ROBERTS & COMP,F2600\nCHARLES WRIGHT ENGIN,,Y4000\nCHIEF OPERATING OFFICER,CNSG,Y4000\n\"NAT'L ASS LOCAL ARTS\",,Y4000\nVice President,Staubach Retail,Y4000\nPRESIDENT,NEEDLE MANAGEMENT,Y4000\nFirst Selectwoman,\"Town of Weston, CT\",J1200\nSR DIR OF ENG NATIONAL-NE,TIME WARNER CABLE,C2200\nBEER WHOLESALER,FEDERAL DISTRIBUTERS,Y4000\nSELF,JEFFWAY CONSULTING PARTNERS,Z9500\nMICROWAVE TECH,KY EMERGENCY WARNING SYSTEMS,J6200\nSTEPTOE & JOHNSON,,J7400\nDoctor,Clinica Las Americas,Y4000\nEXECUTIVE,VIRCO MFG. CO,M4100\nOwner,Champion Ford Lincoln Mercur,Y4000\nGENERAL MANAGE,PEPSI BOTTLING GROUP,G2700\nANESTHESIOLOGIST,UNIV OF AR FOR MED SCI ANES DEPT,H1130\nPHYSICAL THERAPIST,AMRC NYC,Y4000\nDAIBES ENTERPRISES/SENIOR VP/CONTRO,,Y4000\nS E MICHIGAN CHAPTER NECA,,B3200\nMURDY & SONS,,Y4000\nTRAVELODGE NEW ORLEANS WEST,,T9100\nLIBLA INDUSTRIES,,Y4000\nDOCTOR,JUNCTION CLINIC,H1100\nVENTURE PARTNER,ALSOP LOUIE PARTNERS,F2500\nConsultant,\"Holbrock, Jonson, Evans & Oliv\",K2000\nMWH HOLDING CO INC,,Y4000\nINVESTMENT,DAWSON JAMES SECURITIES,Y4000\nCAMERON ENGINEERING & ASSOCIATES LL,,B4000\nOPERATING ENGINEER,GEORGE J IGEL CO,Y4000\nIMPERIAL MKTG,,Y4000\nPRESIDENT,CHRISTOPHER BURKE/PRESIDENT,B4400\nATLANTIC RADIOLOGY P A,,H1130\nLumber wholesale,Catawba Hardwood Sales,Y4000\nMANAGER,PROGRESSIVE INC,Y4000\nORTHOPAEDIC P,RESURGENS ORTHOPEDICS,H1130\nFACULTY PROGRAM DIRECTOR,UNK,Y4000\nPublic Policy Direct,Ohio Council Of Churches -,X7000\nRICHARD G BUCH MD,,H1100\nAttorney,INTERNATIONAL ASSOCIATION OF MACHINIST,Y4000\nCOLLEGE PROFESSOR,WELLS COLLEGE,H5100\nRetired,Robbins and Meyers,Y4000\nPROGRESSIVE TRANSPORTATION SE,,Y4000\nEXECUTIVE,SUBWAY DEVELOPMENT,Y4000\nWriter,20Th Century Fox,C2000\nLawyer,\"Miller, Canfield, Paddock & Stone\",K1000\nOWNER,AUTO SERVE,T2200\nVice President,\"HDR Engineering, Inc\",B4400\nConstruction,Genesis Construction Company,B1500\nCEO,Colonial Properties Trust,F4200\nCONSULTANT,MHSA,Y4000\nH W PARTNERS,,F2100\nSOFTWARE CONSULTANT,IBM CORPORATION,C5100\nLab Technician,SUNY,H5100\nMANAGE,MANPOWER OF LANSING MI. INC.,Y4000\nPresident,Hygrade Business Group,Y4000\nHYOSUNG AMERICA INC,,M3100\nFARMER,WELTY FARMS,A1000\nBookkeeper,Atos Computer Store,Y4000\nSENIOR VP,LEGGETT AND PLATT,M4100\nProprietor,Court of Two Sisters,G2900\nPROTECTION ONE,,Y4000\nAttorney,\"Williams, Birnberg & Anderson\",K1000\nINFORMATION REQUESTED PER BEST EFFORTS,INFORMATION REQUESTED PER BEST EFFORTS,M7300\nPROGRAM MA,W.H.C.I. PLUMBING SUPPLY,B3400\nWOOD ODUM & EDGE PA,,K1000\nPRINCIPAL,\"KOUNTOUPES , DENHAM\",K2000\nEXECUTIVE DIRECTOR,EXECUTIVE DIRECTOR,E1600\nRecycling,Wrights Scrap,Y4000\nPhysician,Univ of Michigan,H5100\nEXECUTIVE VICE PRESIDENT & COO,NORTHEAST UTILITIES,E1600\nCHIEF EXECUTIV,MARC ASSOCIATES INC.,K2000\nPRESIDENT,TC TECHNOLOGIES,Y4000\nASSISTANT VP,ATLANTICARE,Y4000\nEXECUTIVE,CARNEGIE MELLON,H5100\nLINDER INDUSTRIAL MACHINERY COMPANY,,Y4000\nDentist,Dr Sowles/Dr Traurig Inc,Y4000\nATTORNE,RONALD I. STRAUSS ESQ. P.A.,Y4000\nAnalyst,Third Way,Y4000\nTechnical Director,SIS,T1400\nVICE PRESIDENT - INFORMATION SYSTEMS A,FARMERS MUTUAL INSURANCE COMPANY OF NE,F3100\nInformation Requeste,United Construction Inc,B1500\nOWNER,PUMA SPRINGS,J1200\nGAS ATTORNEY,PATTON BOGGS LLP,K1000\nENGINEER,\"KENNEDY CONSULTING, LTD\",Y4000\nExecutive Vice President,GNC Colsulting,Y4000\nRetired,State of Oregon-Retired,X1200\nAttorney,\"Landulle, Solrdo& SouthernRR\",K1000\nCORPORATE VICE PRESI,ROY ANDERSON CORPORATION,F4100\nHOLLISTER STIER,,Y4000\nResearch Specialist,California Department of Public Health,X3000\nAttorney,\"Wolf, Block, Schorr & Solis-Cohen,\",J7400\nMINISTER,BASEBALL CHAPEL,X7000\nWADE MANUFACTURING CO,,Y4000\nMgr,Tapia Accessory Group,G0000\nPRESIDENT,A-1 METRO MOVING,Y4000\nGLORY FOODS INC,,Y4000\nCEO,CLARENCE & MAXINE OWENS FOUNDA,Y4000\nEXECUTIVE VICE PRESIDENT,SOUTHWEST AIRLINES,T1100\nPOLITICAL,RETIRED - U.S. AIR FORCE,X1200\nGynecologist,Lloyd B Lifton Md,H1100\nCOMPANY,EXECUTIVE,G0000\nDEEP SEA DIVER,,Y4000\nHospital Administrat,Merrimack Valley Hospital,H2100\nLawyer,Mueth Law Corp.,K1000\nROAN MEYER ASSOC,,Y4000\nPRESIDENT AND C,BKSH AND ASSOCIATES,K2000\nRHYNE & RHYNE,,Y4000\nTW FORD SALES & SERVICE,,T2300\nASST SECRETARY OF DEFENSE,DEPT. OF DEFENSE,X5000\nLARSON RANCH,,A2000\nTeacher,Earlham School of Religion,J1200\nSTATE OF NC OFFICE OF THE LT GOVERN,,X3000\nSCHOOL ADMINIS,ROSE TREE MEDIA S.D.,Y4000\nREALTOR,LIFELINE LAND VENTURES,F4200\nEXECUTIVE,COLLIER ENTERPRISES,F4000\nREAL ESTATE,\"PRIME PROPERTY INVESTORS, LTD.\",J5100\nEXECUTIVE,GRAND RIVER ABSTRACT,F4300\nHMC CORP,,Y4000\nattorney,\"Squire, Sanders, and Dempsey\",K1000\nNURSE ANESTETIST,LAFAYETTE ANESTHIA,H1130\nHERITAGE FEDERAL CU,,F1300\nCHAIRMAN-RETIR,THE CATO CORPORATION,Y4000\nMANAGING DIRECTOR,MELROW FINANCIAL,F0000\nBROADCASTER,SIRIUS RADIO,J1200\ndirector of ark park,state of arkansas,X3000\nPsychologist,Jewish Board of Family Services,H3800\nFIRE,SAN BERNARDINO CITY FIRE DEPT.,X3000\nCeo,Iowa Title Company,F4300\nM&M KNOPF AUTO PARTS,,T2200\nConsultant,Charlie McBride & Associates,K2000\nQuantitative Analyst,Spark  LP,F2100\nSafety Specialist,Hewlett Packard,C5100\nAPPRA,\"E.F. HUCKS & ASSOCIATES, INC.\",F4000\nBUSINESS OWNER,HIGHLAND HOLDINGS,Y4000\nENERGY EXEC,SELF,Y4000\nCREDIT UNION CEO,MAUI FCU,F1300\nPUBLIC HEALTH PHYSI,P.H.S.-H.R.S.A.,Y4000\nVice President,\"Scoma's Restaurant\",G2900\nCREDIT SYSTEMS INC,,Y4000\nTELEDYNE INDUSTRIES INC,,D3000\nExecutive,Interstate Cargo,Y4000\nDistinguish Columbian Professor,George Washington University,H5100\nBANKER,SUNTRUST BANKS OF FL INC.,F1100\nUNITED PLATE GLASS CO.,,M7200\nGRAY PLANT,,JE300\nCOUNTY BANK/PRESIDENT/CEO,,F1100\nPRESIDE,\"RUBENSTEIN ASSOCIATES, INC.\",G5210\nSOCIAL SERVIC,TRIANGLE AIDS NETWORK,Y4000\nBANK OF BREMERTON,,F1100\nCAMPAIGN MANAGER,U.S. SENATOR TOM DASCHLE,J1200\nADMINI,CHARLES JACQUIN ET CIE. INC.,Y4000\nAttorney,Darwerper & Talbott,K1000\nGM,Processors Inc,Y4000\nCLERMONT CHIROPRACTIC CLINIC,,H1500\nSW Engineer,Saic,D3000\nSENIOR PRESIDENT,DIAMOND RES. MORTG,Y4000\nRETIRED,GENUARDI SUPERMARKET,X1200\nCEO,NEUDESICS,Y4000\nRESOURCE,CHELA FINANCIAL,F0000\nATTORNEY,COX HODGMAN & GIAMARCO P C,Y4000\nU S A GROUP INC,,F1400\nPATHOLOGIS,SENTARA NORFOLK GEN HOSP,H1130\nRoofer,Cram Roofing,B3000\nEXECUTIVE,\"DATASOURCE, INC.\",Y4000\nPHYSICIAN,COLUMBIA PREBY. HOSP.,J7400\nCOMMUNICATI,AUSTIN MUSIC FOUNDATION,Z9500\nTELEDATA COMM,,Y4000\nSALES MANAGEMENT,REDPRAIRIE,J1100\nVP,Roadrunner Records,Y4000\nExecutive,\"Essex Meadows, Inc\",H2200\nPARTNER,OLSEN BROTHERS,Y4000\nATTO,WILMER CUTLER PICKERING HALE &,K1000\nGOVERNMENT AFFAIRS,CORNERSTONE,J1200\nMANIS CANNING AND ASSOCIATES,,Y4000\nADMINISTRATION/GOVERNMENT AFFAIRS,BEN BARNES GROUP,K2000\n\"PRESIDENT, HOME\",THE WALT DISNEY CO.,C2000\nLAWYER,\"ANNETTE EVERLOVE, PC\",Y4000\nGarden Design,Self,B3600\nCAPE CORAL HOSPITAL E D,,H1100\nInterim CFO,Shands Jacksonville,H0000\nATLANTA CASUALTY/WINDSOR GROUP/STAF,,F3400\nEXECUTIVE VP,PRIME POLCY,K2000\nSALES MANAGER,ECLIPSE AVIATION,T1600\nCO-OWNER,\"MITCH THE MOVER, LLC\",Y4000\nC. E. O.,Midwest Sign & Screen Printing,C1300\nVOICE-TEL OF NEVADA,,Y4000\nPRESIDENT,GIANT FOODS,G2400\nFinance,UBS Investment Bank,J1200\nFINANCIAL PLANNER,\"LESAVOY FINANCIAL PERSPECTIVES, INC\",Z9500\nGRAPHIC DESIGNER,WONG & THE DESIGN OFFICE,Y4000\nTeamster,UPS,T7100\nLAWYER,KOSKOFF KOSKOFF & BIEDER PC,Z9500\nPresident/CEO,American Heritage Fed CU,F1300\nDBA,Blue Wolf,Y4000\nTHE BOWMARK CONSULTING GROUP,,Y4000\nANHEUSER BUSCH COMPANIES,,G2810\nOWNER,LIBERTY AUTO PLAZA,T2300\nPresident,\"McLane-Garrett Cattle Co., Inc\",Y4000\nCNH GLOBAL,,A4200\nPROGRAMMER,EDGEWATER TECHNOLOGY,C5100\n\"FOX ROTHSCHILD O'BRIEN & FRANKEL LL\",,K1000\nOWNER,R. MARTIN & ASSOCIATES,Y4000\nPrincaple,PODESTA ASSOCIATES,K2000\nOwner,First Wall Street Financial Aid,F2100\nADMIN,UNIV OF ARKANSAS,H5100\nLAW PROFESSOR,NORTHWESTERN UNIVERSITY SCHOOL OF LAW,H5100\nSales,Jcpenny,J1200\nPRESIDENT,CMP,E1600\nAttorney/Owner,\"Bayley Reporting, Inc\",Y4000\nFISHERMANS INN,,G2900\nMember/Vice Presiden,K-Land No 61 LLC,Y4000\nHAMPSHIRE HOUSE RESTAURAN,,G2900\nBUSINESS MANAGER,CENTENNIAL INC,Y4000\nCAREER COUNSELOR,WILLIAM S. RICHARDSON SCHOOL OF LAW/UN,Y4000\nPresident,\"S.A. Foster Electric, Inc.\",B0500\nOHIO CASUALTY CORPORAT,,\nBanker,Bank Int. of Luxembourg,F1000\nExecutive,UPH,Y4000\nOwner,Harvard Refuse Inc.,Y4000\nD&R PRODUCTS COMPANY INC,,Y4000\nRICHLAND CEA,,L1300\nPartner/DVP,\"Stanton & Associates, Inc.\",G2900\nNon-Profit Consultant,Laurie Bernhard,Y4000\nBusiness Consultant,Cad Integration,Y4000\nReal Estate Developer,Keenan Development,F4100\n\"CARR,KOREIN, TILLERY, KUNIN, ET AL\",,J5100\nFARMER,STATE OF COLORADO,X3000\nFOUNDER & P,BP REAL ESTATE FUND LLC,F4000\nVice-President,Sunland Corporation,Y4000\nOWNER,KIRCHOFF COMPANIES,Y4000\nReal Estate Investor,Broadreach Capital Partners,F4000\nInternist,Lahey Clinic,H1100\nRICHARDS MERILL & PETERSON,,Y4000\nWINBURN VAN SCOYOC,,K2000\nYACHT BROKER,EDMISTON COMPANY LLC/YACHT BROKER,Y4000\nCeo,Roseville Precision,Y4000\nVOLUSIA CTY,,X3000\nINFO REQUESTED,AMERICAN LIFT INC,Y4000\nCHAIRMAN & CHIEF E,NEWS CORPORATION,C2400\nSTAFF REPRESENTATIVE,PASNAP,H1710\nMOLINE CONST MGT INC,,B1500\nChief Executive Officer,Tyler Packing Company,G2300\nattorney,\"Williams & Airth, P.A.\",K1000\nPresident,Pezold Management,G2900\nB OF S WEST,1ST N,F1100\nFreelance Consultant,Self-Employed,G5200\nDental Hygienist,Fred A. Mueller,Y4000\nYUBA CITY UNIFIED SCHOOL DIST,,X3500\nPresident,Surface Connection,F4500\nExecutive,Caliper,Y4000\nMARY KAY COSMETICS,,G4800\n\"GROCER'S ICE & COLD STORAGE\",,T7200\nPRINCIPAL,DCRM LLC,Y4000\nPOLARIS AIRCRAFT LEASING,,T1600\nMedical Doctor,J.J.G,Y4000\nCRNA,\"Acces CRNA, SC\",H1710\n\"REGIONAL VICE PRESIDENT, PERSONAL INSU\",STATE AUTO INSURANCE COMPANIES,F3100\nOwner,Jaris Transportation Co,Y4000\nPHYSICIAN,KSF ORTHOPEDICS,H1130\nBOONE-KENTON LUMBER SUPPLY INC,,B5200\nATTORNEY,D.H.S.,K1000\nCEO,Ameriserv Finl,F3100\nCHAIRMAN,NEAR CONTRACTING CO.,Y4000\nSALES REP,MERCK & CO.,H4300\nPresident,Planned Realty Group,F4200\nPRESIDENT,ECOAMERICA/VIVATERRA,JE300\nPRESIDENT,WRAL CAPITOL BROADCASTING,C2100\nHuman Resources Mana,Group One Software,J1200\nINVESTOR,,M7000\nMANAGEMENT CONSULTANT,\"R.W. MANN & COMPANY, INC.\",Y4000\nAuditor,Kolheim Rogers & Taylor,F5100\nPRESIDENT,GREENFIELD COMMUNICATIONS INC,Y4000\nGraphic Designer,Success Designs,Y4000\nPARRY ROMANI & DEANCINI ASSOCIATES,,J1200\nCA DEPT FORESTRY & FIRE PROTECT,,X3000\nInvestor,Lake Capital Management,G5270\nEXECUTIVE,UNITY HEALTH SYSTEM,H0000\nPartner,Williams Mullen,G1000\nPOD ASSOC,,Y4000\nM KARANTINIDIS ENGINEERS,,B4400\nLAWYER,THETFORD & THETFORD,K1000\nATTORNEY,RUBIN AND RUDMAN,K1000\nMORGAN DAVIS DOOR CO,,B5400\nCFO,TECO Pneumatic,Y4000\nSELF,RENEWABLE ENERGY,Z9500\nAttorney,Rodney V. Melton PA,Y4000\nGENERAL COUNSEL,AMERICAN ACADEMY OF ORTHOPAEDIC SURGEO,G0000\nCONSULTANT,MARKETING UNLIMITED,Y4000\nRE BROKER,NAI MATHEWS PARTNERS,Y4000\nPRESIDENT & CEO,KY BANKERS ASSOC.,F1100\nHIGHER ED SVC,,Y4000\nPRINCIPAL,PODESTA GROUPO,K2000\nMANAGER,BRYAN PROPERTIES,F4000\nEngineer,Urban Drainage and Flood Control Distr,Y4000\nLUMBER DISTRIBUTION,,B5200\nRAILROAD CONTRACTOR,,T5300\nPHYSICIAN,MILWAUKEE SPINAL SPECIALISTS,Y4000\nBUSINESS DEV,\"FUTURESELVES USA, INC.\",Y4000\nHealthcare Managemen,Clark Consulting,G5270\nINVESTME,J.P. MORGAN SECURITIES INC,F2100\nPRESIDENT,NORTH SHORE BANK,F1100\n\"Vice President, Public Affairs\",TXU Energy,E1600\nPhysician,St. Francis Hospital,H2100\nZELLER & HARZON,,Y4000\nCLINTONDALE GROUP INCORPORATED,,Y4000\nATTORNEY,\"ZAVONDNICK, PERLMUTTER & BOCCIA\",K1000\nPRES. NUCLEAR OPERATIO,U.S. ECOLOGY,E3000\nPACIFIC COAST FEATHER CO,,M8000\nENGINEER,TETRA TECH,Y4000\nATTORNEY,KLEINFELD KAPLAN & BECKER,K1000\nCEO,LIBERATOR MEDICAL SUPPLY,Y4000\nAttorney,Galbut & Galbut,K1000\nPhysician,SVHS,H1100\nCEO,HARTFORD COMPUTER GROUP,C5100\nENDOWMENT INVESTMENT,PRINCETON UNIVERSITY,H5100\nCHOICE HOME HEALTHCARE,,Y4000\nProfessor,University of California-San Franc,H5100\nPORTFOLIO MANAGER,MAPLE TREE CAPITAL,F2100\nBUSINESS PERSON,VACUUM RESEARCH LTD.,Y4000\nBanker,J.P. Morgan Chase,Y4000\nH G KLUG CO INC,,Y4000\nCONSULTANT,RUSSELL REYNOLDS ASSOCIATES,Z9500\nSELF-EMPLOYED,SELF-EMPLOYED,G5200\nC.E.O.,SELF-EMPLOYED,F4000\nMORTGAGE SERVICES INC,,F4600\nOWNER,WD BOSLEY ELECTRIC,Y4000\nTHOMAS WILCK ASSOCIATES,,G5210\n\"POWELL, INC/PRESIDENT/CEO\",,Y4000\nPartner,RKKA LLC,Y4000\nChairman,\"Wellcare Health Plans, Inc.\",F3200\nAttorner,\"Berkowitz, Lefkovitz, Isom & Kushner\",J5100\nACCOUNTAN,WILLINGTON FINANCIAL CPSS,F0000\nASSET MANAGER,\"KYO-YA COMPANY, LLC\",Y4000\nOUTSIDE SALES,WESCO DISTRIBUTION,C5000\nM,COMPREHENSIVE MECHANICAL SERVICES,Y4000\nLEGAL SECRETARY,\"KIRKLAND & ELLIS, L.L.P.\",K1000\nDIREC,SYRACUSE RESEARCH CORPORATION,D4000\nPRESIDENT,NEW MEXICO OIL CORP.,G1200\nPRESIDENT,FPL ENERGY,H1100\nMEDICAL DIRECTOR,MEHTAESTHETICS VEIN AND LASER,Y4000\nCAPITAL RESEARCH & MANAGEMENT CO.,,F2100\nprofessor,Mass. Inst. Of Tech,H5100\nSELF-EMP,PUBLIC PRIVATE PARTNERSHIP,K2000\nOWNER/CONTRACTOR,R & K CERTIFIED ROOFING OF FL,B3000\nSALES AN MKTG.,EMA,Y4000\nOWNER,CBS PETROLEUM,E1100\nPresident,Interfilm Corporation,Y4000\nEXECUTIVE,FILTRON INC.,Y4000\nEXECUTIVE VICE PR,DAVCO RESTAURANTS,G2900\nSenior Vice Presiden,Time Warner,C2000\nSTOEHR AND SEARSON,,Y4000\nPRESIDENT,NEXIQ TECHNOLOGIES,C5000\nANDERSON & WEBB PKG,,Y4000\n\"FREDDY'S LIQUOR SHOP\",,G2840\nROSS EQUIPMENT,,Y4000\nPRESIDENT,JRJ INVESTMENTS,J5100\nTEXO PROPERTIES,,Y4000\nANALYST,SBIC,Y4000\nLUCIEN LAGRANGE & ASSOC LTD,,B4200\nATTORNEY,MCDERMOTT WILL & EMERY,J7300\nGREENWICH CLEANERS,,G5500\nPRESIDENT,GOJO INDUSTRIES INC/PRESIDENT,M1300\nEXECUTIVE,\"CCA INDUSTRIES, INC.\",F2600\nACMAT CORP,,B3000\nP AND R SCHENCK ASSOCIATION IN EVAN,,Y4000\nElectrical Contractor,Kennedys Electric Inc,J1100\nATTORNEY,\"LINEBARGER, GOGGAN, BLAIR, & SAMPSON L\",Z9500\n\"Manager, Andalusia Farmers Co-op\",Alabama Farmers Cooperative,A6000\nATTORNEY,\"FRANK, GALE, BALLS, MURCKO & POCRASS\",K1000\nPresident,\"Rickey's Grill\",G2900\nMAINLAND OBGYN,,H1130\nPresident and CEO,Phelps Memorial Hospital,H2100\nDRURY INDUSTRIES,,T9100\nAccountant,Optima Fund Management L.P.,F2100\nC,J. EDWARD CONNELLY ASSOCIATES INC,G5220\nMETROPOLITAN THEATRES CORP,,C2700\nPresident,Mark Birdnow Inc,T2300\nCONSULTANT,MATTOON & ASSOCIATES,K2000\nAssociation Executive,MALPH,Y4000\n\"SVP, NASHVILLE OPERATIONS\",DUKE REALTY CORPORATION,F4100\nINDIO GLOBAL CORPORATIO,,Y4000\n\"SOUTHERN BUILDER'S SUPPLY\",,Y4000\nREGISTERED NURSE,FLORIDA HOSPITALS,H2100\nLibrary Assistant,Spertus Institute of Jewish Studies,H5100\nIncome Tax Consultant,Self,Y4000\nVICE PRESIDENT,MCGRAW HILL FINANCIAL,F5500\nSALES,COASTAL CARD SOLUTIONS,Y4000\nAIR WISCONSIN AIRLINES CORP,,T1100\nCHARTER FAIRMOUNT,,H1100\nVINEGAR BEND FARMS,,A1200\nAttorney,\"Levine & Levine, PC\",K1000\nDirector,UCF,Y4000\nRADALAB,,C4600\nPRESIDENT,LEFRAK PRODUCTIONS,F4100\nFinance,Johnson Controls Inc.,T2200\nFINANCIAL ADVISOR,PIPER JAFFRAY,F2100\nOWNER,RIVERTOWN MEMORIAL INC.,G1100\nBusiness,Self,J7500\nREEF DINER,,G2900\nAttorney At Law,\"Weil, Gotshal & Manges LLP\",K1000\n\"VICE PRESIDENT, GOVERNMENT AFFAIRS\",\"TOYOTA MOTOR NORTH AMERICA, INC.\",T2310\nREAL ESTATE BROKER,C-21 ADVENTURE,J1200\nPreschool Director,Kids Connection,Y4000\nRESEARCH SCIENTIST,JOHN HOPKINS UNIVERSITY,H5100\nDOUGLAS ROSS,,Y4000\nLAWYER FARMER,,K1000\nSELF-EMPLOYED,WETZELL TROTT/SELF-EMPLOYED,Y4000\nECHOLS & ASSOC INC,,Y4000\nIL FEDERATION,,L1300\nRegistar of Probate,Commonweath of Massachusetts,Z9500\nConsultant/Lobbyist,Cassidy & Associates,K2000\nbus Owner,Tennis Connection,J1200\nPRESIDENT,RICHLAND COLLEGE,H5100\nRegional Vice President,Coinmach,F4500\nCollege President,Warren Wilson College,H5100\n\"GINN, EDINGTON, MOORE, & WADE\",,Y4000\n\"President And Ceo, L\",Lyondell Chemical Company,M1000\nATTORNEY,MARKS GRAY CONROY & GIBBS,K1000\nPlanner-Grants Manager,Laramie County,X3000\nFUNDRAISER,OCTOBER INC.,Y4000\nRETIRED,TERRA INDUSTRIES,A4100\nInvestment Management,New York Life Investment Management,F2100\nTechnical Manager,America Online,C5140\nEXECUTIVE/ATTORNEY,VELOCITI,Y4000\n,OPERATING ENGINEERS LOCAL UNION NO,LB100\nATTORNEY/NON-PROFIT CONSULTANT,SELF-EMPLOYED/ATTORNEY/NON-PROFIT C,K1000\nMY WAY.COM,C M G I,F2500\nLegislative Counsel,McDermott,K2000\nInsurer,ASI Risk Management,G5290\nPORTFOLIO MANAGER,KEY BANK,F1000\nPublic Safety Teleco,City Of New Britain,X3000\nPresident,Otto Reich Associates,J5200\nATTORNEY,CORY WATSON CROWDER & DEGARIS,K1100\nATTORNE,\"SHEEHY, WARE & PAPPAS, P.C.\",K1000\nCOURTESY PRODUCTS,,M4000\nEXECUTIVE,\"GENPHAR, INC.\",Y4000\nChairman,Milliken & Company,J1100\nEXECUTI,PYRAMID CONSULTING SERVICES,G0000\nTRAILS COMMITTEE V,TOWN OF WOODSIDE,X3000\nGENERAL MANAGER,NUTRI VITAMIN,Y4000\nPRESIDENT & C,\"HAWAIIAN TELCOM, INC.\",C4000\nBRADFIELD PROPERTIES,,J7300\nPEDIATRICIAN,MOSIAC CLINIC,Y4000\nLIFE SKILLS EDUCATION,,Y4000\nAssistant General Co,Cox Communications  inc.,C2200\nSE,NEVADA DEPARTMENT OF CORRECTIONS,X3200\nMEDOA,CABLEVISION,C2200\nTECHNICAL WRITER,NONE,Z9500\nENKIE AMERICAN INC,,M5000\nWORTMAN CENTRAL AIR,,Y4000\nCounselor,City of Philadelphia,Z9500\nRETIRED FEDERAL GOVT,FORMERLY: LIBRARY OF CONGRESS,Y4000\nSales,Dixie Narco Vending Systems,Y4000\nOwner,Diversified Dealer Services,Y4000\nEXECUTIVE,ARMSTRONG,J6200\nSHIFT AND CORP EXECUTIVE,SHIFT4,Y4000\nRANCHER,BUSINESS CONSULTANT,G5200\nEMERITUS PHYSICS PROFESSOR,UNIV. OF MICHIGAN,H5100\nBroker,Burnette Real Estate,F4000\nENTERTAINMENT & SPORTS AGENT,SELF EMPLOYED,G0000\nChairman of the Boar,Associated Distributors,G2820\nATTORNEY,ABHR,K1000\nRETIRED,NEW YORK TELEPHONE CO.,F1200\nTHE CARLSON COMPANIES,,T9000\nGOVERNMENT RE,CAPITOL SOLUTIONS LLC,K2000\nDoctor Epideniologist,Ne Regional Cancer I,Y4000\nAMERICAN HOME SALES,SELF-EMPLOYED,Y4000\nFINANCIAL STRATEG,BUSH INCORPORATED,Y4000\nPRESIDENT,CENTRAL BANK & TRUST,F1000\nHuman Resources/Lega,Ward Trucking,T3100\nSystems Analy,J.C.Penney Company,G4300\nPRINCIPAL,METISNET,Y4000\nHOTEL MANAGEMENT,PEABODY HOTEL GROUP,T9100\nMARTIN & HIGHTOWER F H INC HERITAGE,,G5400\nMANAGER,MISSISSIPPI VALLEY AGC,Y4000\nDEVELOPMENT ALTERNATIVES,,Y4000\nCLARRION LEVER & COHN,,Y4000\nPodiatrist,Family Foot Clinics of Wiscons,Y4000\nManager,Ici Homes,B2000\nReal Estate,Cordano Co.,F4000\nCHESTER ENGINEERS/MANAGER/GOVERNMEN,,B4400\nPacking,Self-Employed,G0000\nILWV,,Y4000\nPICTURE EDITOR,PICTURERESEARCHING.COM,Y4000\n\"DRASE, DEBEAUBIEN\",,Y4000\nRetired Architect,None,Z9500\nOWNE,ALLIANCE ELECTRICAL CONTRACTOR,B3200\nCFO,University of Chicago Hospital,H2100\nInvestment Advisor,Robert Brooke Zevin Assoc,Z9500\nC.O.O.,STRONGHOLD ENGINEERING INC.,B4400\nATTORNEY,\"RODEY DICKASON SLOAN AKIN & ROBB, PA\",Y4000\nPOSTDOCTOR,JOHNS HOPKINS UNIVERSITY,H5100\nbusiness agent,sheet metal workers no 359,LB100\nOWNER,FITZSIMMONS METAL CO.,Y4000\nOFFICE MANAGEMENT,DIVERSIFIED FOAM PRODUCTS/OFFICE MA,Y4000\nLEGAL ASSISTANT,\"SEVILA, SAUNDERS, HUDDLESTON & WHITE P\",Y4000\nIT Manager,Swiss Re,F3100\nProgram Mgr,CGI BAE,Y4000\nATTORN,TRIPLETT WOOLF AND GARRETSON,K1000\n\"O'NEILL AUTO DEALER\",,T2300\nPresident,Echostar,C2200\nPRESIDENT,\"UNIQUE INDUSTRIES, INC.\",Y4000\nATTORNE,RALPH E. CIERVO ATNY AT LAW,K1000\nOwner,\"Vertical Path Recruiting, Inc.\",Y4000\nATTORNEY,VALDER LAW OFFICE,JE300\nOWNER,GOURMET TO GO,Y4000\nPRESIDENT/CEO,COTTONWOOD FINANCIAL,F1400\nOwner,Equipment Express,Y4000\nVice President of Sales and Marketing,\"Hickman's Family Farms\",A1000\nMOORE REALTY,,F4200\nHOLY CROSS HIGH SCHOOL,,Y4000\nHR Mgmt,Altadis USA,A1300\nGOOSIGER INC,,Y4000\nLibrarian,Mississippi State University,H5100\nOwner,Chick-fil-a Of Columbia Maryland,G2900\nJOHN D BECKER & ASSO,,Y4000\nEXECUTIVE,HOLLAND ELECTRONICS,Y4000\nNV MINING ASSOC INC,,E1200\nCONSULTANT,PROCESS INSULATION,B3000\nInvestor,\"BDS, LLC\",Y4000\nPork Producer,Kalmbach,A3000\nRING & RUSSELL CLINIC,,Y4000\nVP SALES,HENKEL,Y4000\nPresident,Visual Telecommunications,C4000\nOLSHAN GRUNDMAN & FROME,,K1000\nPresident,Custom Clay,Y4000\nSchool Board Member,Des Moines School Bd,X3500\nPartner,\"NBA, LLC\",Y4000\nOIL,ANADARDO PETROLEUM CORPORATION,E1120\nAssociate Judge,Cook County,X3000\nEDMOND SCIENTIFIC COMPANY,,M9000\nSelf Employed,Harambee Institute,Y4000\nPublic relations,\"Solomont, McCown, and Co\",Y4000\nLAWYER,\"TRACHTENBERG BODES, & FRIEDBER\",Y4000\nManaging Member/Mark,L&R Trading Llc,Y4000\nPRESIDENT,ALEXANDRIA VOLKSWAGON,Y4000\nMANA,RED ROCK CANYON INTERP. ASSOC.,Y4000\nWHITEHILL LINDEN GRYNKEWICH ET AL,,J5100\nADMINISTRATOR,HOSP COUNCIL OF W PA,Y4000\nMARK HOGAN COMPANIES,,Y4000\nINFO REQUESTED,\"SOMERSET REFINERY, INC\",E1160\nARNOLD & PORTER,,K1000\nCEO,REACH SYSTEMS INC.,Z9500\nGOODMAN WEISS FREEDMAN,,K1000\nCO-OWNER,ELLISON EDUCATION EQ. INC.,X1200\nREAL ESTATE,MA HOUSING INVESTMENT CO,F2100\nLITERACY COUNCIL OF NOVA,,Y4000\nProperty Management,Venture Management,F4500\nFOOTWEAR DEVELOPMENT MGR,NIKE INC,M3200\nPRESIDENT,DAIRY MAID DAIRY,A2000\nCONNOR DEV C,WARREN,Y4000\nPartner,\"Malady & Wotten, LLP\",K2000\nEATONTOWN TV,,Y4000\nTalon LLC,,F2600\nCytotechnologist,Palo Alto Med Clinic,Z9500\nPRINCIPAL,\"WARE & ASSOCIATES, INC.\",Y4000\nHomemaker,Homemaker,T8000\nAnalyst,Cushman & Wakefield,F4200\nEXECUTIVE,L.E. FARRELL CO. INC.,Y4000\nINTERIOR DESIGN,SELF/GARRETT PASCHEN LTD.,G5000\nIMAGINEER,THE WALT DISNEY COMPANY,Z9500\nOwn Powerline Construction Company wit,C & M Pole Line Construction Inc,B1500\nmortgage broker,None,F4600\nCHIEF FINANCIAL OFFI,\"CROWN HOLDINGS, INC.\",M7000\nAthletic Director,UNC Charlotte,H5100\nCollege President,New England College of Finance,H5100\nFarm Services,Self employed,A6000\nPresident/CEO,Autocam Corp,J7120\nCEO,BRADMARK TECHNOLOGIES,Y4000\nHVAC,SDSM&T,Y4000\nDeputy General Counsel,Foundation Coal Corporation,E1210\nEXECUTIVE,CANCER TREATMENT CENTERS OF AMERICA,H2100\nExecutive,P&F Industries,Y4000\nREGIONAL DIREC,WASHINGTON INSTITUTE,J5100\nIt Consultant,Verteks Consulting,Y4000\nCigar Store Retailer,\"Bethesda Tobacco, Inc\",A1300\nBUSINESS M,SHEET METAL LOCAL NO. 88,LB100\nGovernment Relations,National Community Pharmacis,H1750\nVice President,Thomas Jefferson University Hospit,H2100\nPresident/Owner,The Todd Group,Y4000\nRETIRED,NOT PROVIDED,Y2000\nFUND MANAGER,STEELHEAD PARTNERS LLC,F2100\nINVESTMENT MANAGER,\"ALUPKA ASSET MANGEMENT, LLC\",Z9500\nVICTORY WHOLESALE,,G2500\nSOFTWARE DEVELOPER,GENERAL DYNAMICS,D3000\nMAN,INTER-AMERICAN DEVELOPMENT BANK,F1000\nPRESIDENT,H&J PAVING COMPANY,B3000\nSENIOR DIRECTOR OF STATE AFFAIRS,AMERICAN COALITION FOR CLEAN COAL ELEC,E1210\nPUBLIC ADMINISTRATION,MIAMI-DADE COUNTY GOVERNMENT,Y4000\nAttorney,\"Dow, Lohnes & Albertson, PLLC\",C0000\nPresident,TAK Construction Inc,B1500\nCOO,Best Buy Co. Inc.,G4200\nCFO,ALLIANCE FOR CLIMATE PROTECTION,Y4000\nRetired Dentist,Retired,X1200\nTranzon Auction Properties and Bake,,G0000\nATTORNE,SEA CONTAINERS AMERICA INC.,M7100\nWOODS OPERATING,,E1120\nDAVA PHARMACEUTICALS/C.E.O./CHAIRMA,,H4300\nOWNER,FRAN TECH,E1150\nCEO,ROY G. BIV CORPORATION,Y4000\nACC,DIVERSICARE MANAGEMENT SERVICES,H2200\nCHIEF OPERATING OFFICER,\"ACCESS PERSONAL FINANCE, LLC\",Y4000\nMarketing,Career Education Corporation,H5200\nPRESIDENT,PLUM CREEK LUMBER,A5000\nATTORNEY,\"ANTIMICROBIAL THERAPY, INC.\",Z9500\nGraphic Designer,Freelane,Y4000\nPolicy Officer,United Nations,X3000\nATTORNEY,ANDERSON ANDERSON LAW/ATTORNEY,K1000\nRadiologist,UW Health,H0000\nVICE PRESI,TELEPHONE & DATA SYSTEMS,C4300\nBETTER FOODS INC,,G2900\nRESTAURANT OWNER,GRAND CRU,Y4000\nTUTT RENOVATION & DEVELOPMENT INC,,B1000\nOwner,\"Sand Livestock Systems, Inc.\",A3000\nPARK AMBULANCE,,H3000\n\"JACKIER, GOULD, BEAN, UPFAL & EIZEL\",,K1000\n\"DIRECTOR, CORPORATE COMMUNICATIONS\",\"PEPSICO, INC.\",G2600\nPRESIDENT,KEELEY AEROSPACE LTD.,Y4000\nInformation Requeste,\"Cgwc, LLC\",Y4000\nEDWARDS AFFILIATED HOLDINGS,,Y4000\nMULTIQUIP INC,,Y4000\nPediatric Heart Surg,Uams,H5150\nDIRECTOR,BEHAVIORAL CONCEPTS INC.,Y4000\nTRANSPORTATION,DESMOINES TRUCK BROKERS INC.,Y4000\nRE Agent,Nordine Realtors,F4200\nVP Fed Regulation/Ge,CSX Corporation,T5100\nBILLION AUTOMOTIVE,,T2300\nMEDICAL BUSINESS BUREAU INC,,F5200\nE E & CO LLC,,Y4000\nDEPT OF NATURAL RESOURCE,COMM OF KY,Y4000\nV.P. OPERATIONS,BAKER MFG.,M0000\nPresident,Morgantown Area Chamber of Commerc,G1100\nInformation Requested,Information Requested,J7300\nKRACKELER SCIENTIFIC,,Y4000\nCONSULTANT,AE SMITH ASSOCIATES,Z9500\nTECHNOLOGY,WARNER BROS ENTERTAINMENT INC,C2400\nCLARK TRANSCO,,Y4000\nCONSULTANT,SMITHER CONSTRUCTING,B1500\nVP  Intellectual Property Strategy,Comcast,C2200\nCEO,Nextfuels,E1120\nInvestment Banking,UIB Capital,F0000\nPres. & CEO,Maximum Technology Corp.,C5130\nTeacher,Jonathan Alder Schools,Y4000\nA,\"DEMETRACOPOULOS LAW OFFICES, PLLC\",K1000\nRESEARCHER,BENNETT 2008,Y4000\nENGI,DW SMITH ASSLCIATES - ENGINEER,B4400\nLAURUS FUND,,J5100\nLEGISLATOR,WESTCHESTER COUNTY/LEGISLATOR,J7400\nSalf,,Y4000\nGENERAL MANAGER,\"SERVICE 800, INC.\",Y4000\nBOARD MEMBER,FARM CREDIT ADMINISTRATION,X3000\nMANAGER,INDUSTIRAL SUPPLIES,G4600\nPRESIDENT,PROGRESSIVE FINANCE AND INVESTMENT COR,Y4000\nChairman & Chief Executive Officer,Office Depot,G4600\nOWNER/PRESIDENT,CONCOURS BODY SHOP,T2400\nGENERAL MANAGER,APPLE INC.,C5110\nOwner,Del Signore G & Son Cnstr.,Y4000\nSelf Employed,Joseph Quarto,F2100\nEXECUTVE,SEAL DRY USA INC,Y4000\nPRESID,\"E. DEL SMITH & COMPANY, INC.\",K2000\nSR. VICE,KAYE INSURANCE ASSOCIATES,F3100\nPSYCHOLOGIST,\"ASI WORKS, INC.\",Y4000\nlaw enforcement,Manatee County Sheriffs offi,Y4000\nPresident,Atlantic India Rubber Co,M1500\nTELECOMMUNICATIONS,\"CONTINUANT, INC.\",Y4000\nFIELD ORGANIZER,,Y3000\nPresident,Banfield The Pet Hospital,A4500\nPlastics Distributor,Quality Resin Systems Inc.,Y4000\nowner,\"Dubose Strapping, Inc.\",Y4000\nINVESTOR,CAREER STEP HOLDINGS,Y4000\nBRANCH MANAGER,SELF-EMPLOYED,Y3000\nSOUTHFUND COMPANIES,,Y4000\nBALL JANIK/ATTORNEY/GOVERNMENT RELA,,K1000\nTOURISM CABITNET,COMMONWEALTH OF KENTUCKY,X3000\nEXECUTIVE VICE PRESIDENT-HR,CITIZENS BANK & TRUST COMPANY,F1100\nSales,A & B Auto,Y4000\nCPA,\"Morrison & Morrison, LTD\",J1200\nA,VORYS SATER SEYMOUR AND PEASE LLP,K1000\nDAEDANI CONSULTING INCORPORATE,,Y4000\nAccountant,State of Indiana,X3000\nreal estate investor,\"Elm Street Partners, LLC\",F4000\nMANAGER,\"HILLCO, LTC\",Y4000\nCAR DEALER,TROPICAL CHEVROLET,Y4000\nSALES REP.,HEWLETT & PACKARD,C5100\nManager,Bank of the South,F1100\nINSURANCE AGENT,\"ROSE & KIERNAN, INC.\",F3100\nConsultant,\"A Hundred Monkeys, Inc\",G5200\nRETIRED,WEGE FOUNDATION,X4100\nEXECUTIVE,LIBERTY PROPERTY TRUST,F4000\nASSISTANT,SEATTLE WALDORF SCHOOL,Y4000\nDIRECTOR LOSS PRE,AURORA HEALTHCARE,Y0000\nSVP & COO,GABLES RESIDENTIAL TRUST,F4100\nBUSINESS EXECUTIVE,\"QUILTS, INC.\",Z9500\nEXECUTIVE,QUETEL CORPORATION,Y4000\nDAIRYMAN,HIDE-A-WAY DAIRY,A2000\nPRESIDENT & CEO,BOXLEY MATERIALS COMPANY,B5100\nNATL WORKFORCE INC,,Y4000\nConsultant,Chemonics,Y4000\nKETTERING ANESTHESIA ASSOCIATE,,H1130\nPresident,John G. Campbell Inc.,K2000\nPROGRAMMER,LINDEN RESEARCH LLC,Y4000\nSWIMMING POOL SERVICE,SELF-EMPLOYED,G0000\nTHOMPSON SLS & SERV INC,,T2300\nPrincipat,Health Management Associates,H2100\nNURSE,GENTIVA,Y4000\nHARRY SPARKS MECHANICAL SERVIC,,Y4000\nChief SW Architect,GE Healthcare,H4100\nLODI EYE MEDICAL GROUP,,H1120\nReal Estate Investor,Urban Properties,F4000\nEXECUTIVE,Lehman Brothers Holding Inc.,F2100\nPresident,The Windquest Group,J1100\nPresident & COO,Herzog Contracting,B1000\nAttorney,NABOB,K1000\nExecutive,Coors Quality Import Co,G2810\nattorney/administrator,Miller Canfield,K1000\nStudent,Univer Of Missouri,J1200\nUNCLAIMED PROPERTY CLEARINGHOU,,Y4000\nPOELLINGER ELECTRIC INC.,,B0500\nGENE NETWORK SCIENCES,,Y4000\nTHOMAS CO NATIONAL BANK,,F1100\nOwner,Brett S. Purvis & Associate,Y4000\nOWNER,ARROWLINK INTERNATIONAL,Y4000\nBILZIN SUMBERG BAENA PRICE & AXELRO,,K1000\nGrape Grower,Eureka Information Services Group,Y4000\nTECHNICAL STAFFING,\"RANDOLPH ASSOCIATES, INC.\",Y4000\nBERGNER BOCKORNY CASTAGNETTI ET AL,,K2000\nVICE PRESIDENT SALES AND MARKETING,TEAL ELECTRONICS,Y4000\n\"LEAD, TALENT ACQUISITION\",CFPB,X3000\nLOBBYIST ADVOCATE,,K2000\nMARITZ AND SON,,T9400\n\"MGR  POWER, MIDSTREAM GAS\",CONOCOPHILLIPS SERVICES I,E1110\nSAFETY OF,\"NEWELL ROADBUILDERS, INC.\",Y4000\nTEACHER,LIBERTY UNIVERSITY,H5100\nOffice Manager,Key Resource Group,Y4000\nInvestment,Hourglass Trading,Y4000\nCHA,BROWNSTEIN HYATT FARBER SCHRECK,E1100\nEXECUTIVE VICE PRESIDENT,AMERIMAR MIDWEST MANAGEMENT CO,Y4000\nPRESIDENT AND COO,PETER G. PETERSON FOUNDATION,F4100\nGeneral Manager,Hyatt Regency New Orleans,T9100\n\"Assoc Director, CT&D\",\"Genentech USA, Inc\",H4500\nArchitect,Barum Basu Assoc.,Y4000\nARIZONA COMPUTER INSTITUTE,,H5200\nBELL & POLLACK,,K1000\nCEO/President,Halfwit Media,Y4000\nPresident,Toiletry and Fragrance Assn,M3300\nUnemployed,n/a,F4000\nPHYSICIAN,DERMATOLOGY COSMETIC SURGERY ASSOCIATE,H1130\n\"KYOCERA TECHNOLOGY DEVELOPMENT, INC\",,Y4000\nNONE,RETIRED ATTORNEY,J7400\nIFUSE,,Y4000\nSENIOR VP,POPETLAND ENTERPRISES,Y4000\nBUSINESS OWNER,ATWORK FRANCHISE INC.,Y4000\nCHERRY CHERRY & CHERRY,,K1000\nINFORMATION REQUESTED,THE PARC GROUP,F4100\nPHYSICIAN,\"JOHN PAPPAS, MD\",H1100\nMANSOUR GRAVIS GERLACK & MAN,,K1000\nEngineer,Kiweractive Corp.,Y4000\nDIRECT,CAPITAL REGIONAL MEDICAL CTR,H2100\nREAL ESTATE DEVELOPMENT,CENTRUM PROPERTIES,F4000\nSOUTHEASTERN GROUP INC,,Y4000\nFarmer,Don McCarthy Farms,A1400\nHUTCHINSON HOSPITAL CORPORATION,,H2100\nDIRECTOR,ADA,Y4000\nUNIVERSITY OF CALIFORNIA DAVIS,,J1200\nEVP & PRESIDENT INSURANCE GROUP,NEW YORK LIFE INSURANCE COMPANY,F3300\nEDITOR,DAI,J1200\nRetired,Baker Hughes Inc,E1150\nINVESTMENTS,COWEN GROUP INC.,F2100\nreal estate broker,Baltimore/Washington Retail Brokerage,Y4000\nOWNER,BOTRON CO INC,Y4000\n\"VP, CFO\",Cabot Oil & Gas Corporation,E1120\nBOOK BUYER,,Y4000\nSTONE CONTAINER,,A1400\nPRESIDENT,ELDERWOOD,Y4000\nPresident,\"Eagle Alloy, Inc\",Y4000\nPROFESSOR OF MATHEMATICS,UNIVERSITY OF MINNESOTA,H5100\nBeer Distribution,Beverage Wholesalers Inc,G2850\nPresident,Barton Mutual Insurance Company,F3100\nPRITCHARD ELECTRIC CO,,B3200\nOwner,The Orlando Company,F4100\nMedical Doctor,Advanced Pain Specialists,Y4000\nEXECUTIVE VICE PRESI,\"BUSH COTTON & SCOTT, L.L.C.\",Y4000\nELECTRICAL SU,BUZZI UNICEM USA INC.,B5100\nATTORNEY,CRANE CANTON & JAMES,K1000\npresident,\"Thompson & Co of Tampa, Inc\",G4700\nB,NEW CENTURY FINANCIAL CORPORATION,F4600\nPRESIDENT,PRODUCTION HEATING & COOLING,J1100\nReal Estate Broker,Zeitlin & Co Realtors,F4200\nAttorney,William Blair and Co. LLC,F2300\nFOUNDER AND MANAGING PARTNER,THE AR GROUP,Y4000\nPRESIDENT,ALLEN & STULTS INC,F3100\nPhysician,Galen Medical Group,H1100\nEHMANN & HILLER,,Y4000\nOWNER,SOLO RESTAURANT,G2900\nRICH HARVEST FARMS,,A0000\nFounder & CEO,Accessory Network Group,M3000\nATTO,\"BONDURANT MIXSON & ELMORE, LLP\",K1000\nPHARMACIST,PEIZER/PHARMACIST,Y4000\nSHAPIRO ISRAEL & WEI,,K1000\nPRESIDENT AND CEO,\"KBALLOYS, INC.\",M2200\nE.M. WARBURG PINCUS & CO. LLC,,F2600\nTEXAS LAWN AND LANDSCAPE,,B3600\nATTORNEY,NARVAEZ LAW FIRM,Z9500\nTHE LINPRO COMPANY,,B2000\nOLD,OLD,Y4000\nUniversity Orthopaedics,,H1130\nCEO,TROPICZ,Y4000\nRUBENTSEIN & SENDY LLC,,Y4000\nPHYSICIAN,THE PERMANENTE MEDICAL GROUP,H1130\nDirector,Ahold,G2400\nDirector/Com Affair,MassDOT,J7400\nINFORMATION REQUESTED PER BEST EFF,\"CABELA'S\",Y4000\nCONGRESSIONAL LIAISON OFFICER,USAID,X3000\nCOPELAND FRANCO,,K1000\nF MILLER & SONS INC,,F1100\nCEO,COPPER VALLEY ELECTRIC ASSN,B3200\nGame Designer,Blizzard Entertainment,C5120\nConstruction,Sunbelt Builders Inc,Y4000\nHEALTH CARE,CONSORTIUM HEALTH PLANS,H0000\nHEALTHCARE,RISK MANAGEMENT PARTNERS,H3000\nSOCIAL WORKER,UNITED STATES AIR FORCE,X5000\nJOVE LAW FIRM,,K1000\nMAH JONG PLAYER,SELF/MAH JONG PLAYER,Y4000\nTeacher,Taylor Schools,J1200\nOwner,Vanatta & Associates,Y4000\nCEO,\"ANASPEC, INC.\",Y4000\nBROKER,SELF/BROKER,F0000\nReal Estate Mgr.,\"Value Properties, Inc.\",F4000\nPHYSICIAN,CHRISTUS SPOHN-MEMORIALTRAUMA DEPT,H1100\nBUSINESS MGR-DENTAL,,H1400\nMECHANIC,PURCELL TIRE,M1500\nDUNHAM PACKAGING CORPORATION,,J1100\nINVESTMENT ADVISOR,FEDERAL HOME LOAN BANK OF PITTSBURGH,Y4000\nCEO,\"Mary Kay, Inc\",M3300\nWAGNER EQUIP,,G5300\nPresident,New Holland Ford,T2300\nSr. Traffic Engineer,City Of Napa,X3000\nOWNER,BOWIE MOTOR,Y4000\nInformation Requested,Concord Orthopaedics,H1130\nCHAROON RUBBER CO,,Y4000\ncorporate financial,The Angeloff Company,F4100\nattorney/Fundraiser,San Elijo Lagoon Conservancy,Y4000\n\"CUSTOM ESSENCE, INC/VP/SALES\",,Y4000\nCASNET & CO INC,,Y4000\nINVESTMENTS,WAVELAND VENTURES,Y4000\nPOLK & SULLIVAN,,Y4000\nBallard Spahr,Attorney,K1200\nElectrical contracto,\"City Electric, Inc. Anchorage, AK\",B3200\nCEDARS-SINAI MED CTR,,H2100\nCAMPAIGN M,KEVIN HASTINGS FOR STATE,Y4000\nDESIGN CONSULTANT,SELF-EMPLOYED,Z9500\nREAL ESTATE EXECUTIVE,THE BASSUK ORGANIZATION,J5100\nMANAGING MEMBER,\"TRIDENT PACIFIC, LLC\",Y4000\nPharmacist,U.S. Public Health Service,X3000\nBUSINESSMAN,MIDWAY AUTO GROUP,T2500\nMANAGER,SOUTHERN STATES LLC,Y4000\nOHIO DENTAL ASSOCIATION,,H1400\nPROJECT INTEGRATOR,US. ARMY,X5000\nattorney,Akin Gump Strauss Hauer & Feld,K2000\nPIVO HALBREICH CAHILL & YIM,,Y4000\nBENDER AND COMPANY INC,,Y4000\nWholesale Insurance Broker,Murray and Zuckerman LC,Y4000\nPHYSICIAN/SURGEON,EYE INSTITUTE OF WEST FLORIDA,Y4000\nteacher,DG District 58,Y4000\nPHYSICIAN,R.G.G. MD. INC.,H1100\nCEO,QUALITY HEALTH CARE CENTER,H0000\nInsurance Agent,\"First National Insurance Agency, Inc\",F3100\nLAWYER,\"WICKENS,HERZER/LAWYER\",J1100\nMAROONE CHEVROLET,,T2300\nAttorney,Nixon and Peabody LLP,K1000\nOwner,Lombart Instruments,Y4000\nDIVERSIFIED DYNAMICS CORP,,M2300\nEXECUTIV,MIDWEST TERMINAL WAREHOUSE,T7200\nCEO & PRESIDENT,SCOTT SERVICES/CEO & PRESIDENT,J5100\nGORDON FEINBLATT LAW FIRM,,K1000\nLAWYER,ISHBIA & GAGLEARD PC,K1000\nMEDTRANS,,H3000\nENGINEER,HERIU,Y4000\nSAKURA DELLSHER INC,,Y4000\nCEO,DRU STOCK INC,Y4000\nGEOLOGI,FIVE STATES ENERGY CO. LLC.,E1100\nWebmaster,Shurg Incorporated,Y4000\nMONT CO CARDIO ASSOC,,H1130\nSelf,,X4110\nMECHANICAL ENGINEER,CDI CORP/MECHANICAL ENGINEER,G5250\nForestry,Umpqua Natl. Forest,A5000\n\"President, Southeast\",\"Lafarge Construction Materials, Southe\",B5100\nRETIRED,AMERICAN CHEMICAL SO,M1000\nPHYSICIAN,HOLY CROSS MEDICAL GROUP,H1130\nBEER DISTRIBUTOR,PREFERRED DISTRIBUTORS,Y4000\nATTORNEY,\"ROSNER & TUCKER, PC\",K1000\nARMOR HOLDINGS,,D0000\nCPA,\"Northern Shared Medical Services, Inc\",Y4000\nRADIOLOGICAL ASSOC OF SACRAMENTO,,H1130\nBOARD OF DIRECTOR,FLUOR CORPORATION,B1000\nRETIRED/ PART TIME/REALTOR,,X1200\nEXECUTIVE,GRIFFIN CORP.,Y4000\nDREXEL UNIV,,JD200\nANTIQUES & INTERIORS,,G4600\nYAGER CONSTRUCTION CO INC,,G4800\nOwner,Pettignano Insurance Agency,F3100\nCHAIRMAN,CYBER CENTURY FORUM,Y4000\nVice President & Sta,First American Title Insurance Co.,F4300\nTHE EDDIE MAKE COMPANY,,G5200\nLOUIS HIRSCH & SONS,,Y4000\nTHE RISE GROUP,,Y4000\nDICKINSON COUNTY BANK,,F1100\nDir Global Supply Ch,\"Air Products and Chemicals, Inc.\",M1000\nPublic Relations,Brodeur Partners,Y4000\nself,Runtime Software,C5120\nBusiness Executive,\"Mediasphere Partnes, LLC\",Y4000\nPRIVATE INVESTOR,SELF EMPLOYED,Y0000\n-,\"Spitzer Management, Inc\",Y4000\nEM-POWER INC./OWNER/CONSULTANT,,J2100\nMedical Doctor,Linden Tree Health Center,H0000\nTEACHER NATURALIST,MASS AUDUBON,Y4000\nDIRECTOR GOVERNMENTAL AFFAIRS,AMGEN,J1200\nNurse,UCLA,Z9500\nSELF-EMPLOYED,ONLINE,Y4000\nATTORNEY,SQUIRE SANDERS (US) LLP/ATTORNEY,K1000\nSELF/PSYCHIATRIST/PHYSICIAN,,H1110\nSR STAFF POWER A,EM COAL & MINERALS,E1110\nphysician,UAB,H5100\nCONTRACTOR,BEN HILL ROOFING,B3000\n\"SR. DIRECTOR, XFINITY HOME\",COMCAST (CC) OF WILLOW GROVE,C2200\nRadiologist,Marshfield Clinic,H1100\nAuthor/Composer,Self employed,Y4000\nMANAGING PARTNER,GOOGLE VENTURES,C5140\nPRESIDENT,FRONTIER INTERNATIONAL TRUCKS INC.,Y4000\nChairman,Parsons and Wittemore Ente,A5200\nASSN PRESIDENT,NATIONAL WILDLIFE REFUGE ASSN,Z9500\nEXECUTIVE,BRADLEY DIXIE CORPORATION,J1100\nDealer,Parker Toyota,T2300\nCounsel,Warrington Fox Shuffler,Y4000\nBUSINESS MGT./PRES./CHAIRMAN,\"PATRICK MOON, INC.\",Y4000\nBUSINESSM,1ST CORBIN FINANCIAL CORP,J1100\nELECTROLOLYSIS TECHNICIAN,SELF-EMPLOYED,G0000\nATTORNEY,RESIDENTIAL CAPITAL,Y4000\nREAL EST,WILLIAM T. GRIFFIN REALTOR,F4200\nCMP,,C1100\nEngineer/Mgr,M&H Energy Services,E1000\nSenior VP & COO,Advisory Services Corporation,F2100\nBANSLEY AND KIENER LLP,,F5100\nDistributor,King Steel,M2100\nPHYSICIAN,MOUNTAIN RADIATION ONCOLOGY CONSULTANT,Y4000\nDIMEBANK,,F1100\nTRANSAMERICA LIFE INSURANCE COMPANY,,F3100\nOwner,Dreamz Photography,G5240\nEXECUTIVE VICE PRESIDENT,MARCHION EYEWEAR,H1120\nENERGY CONSULTANT,ENERGY WORKS LLC,Y4000\nVICE CHAN,MARICOPA COLLEGE DISTRICT,H5100\nExecutive,Ryder Truck Rental,T3000\nSUPERVISOR,PITTSBURGH COMING,Y4000\nHEALTH CARE,REQUESTED,H0000\nMuseum Aide,\"City of Alexandria, Virginia\",X3000\nADMINISTRATOR,CHABAH GREENWICH,Y4000\nChief Executive Officer,Blue White Industries,Y4000\nPROF EMERITUS,UNIVERSITY OF PENNSYLVANIA/PROF EME,H5100\nINFO REQUESTED,A To Z Kwik Kleen,Y4000\nAccounta (Cpa)/Auditor,Puyallup Tribe of Indians,G6550\nAMERICAN MONEY MGMT CORP,,F2100\nLABOR & WORLDFORCE DEV.,STATE OF TN,X3000\nProgrammer,\"Google, Inc\",C5140\nWriter/Event Planner,Self employed,C1100\nDollar General,,G4300\nADDISON PRODUCTS COMPANY,,Y4000\nTRANS CONTAINER CORPORATION,,M1500\nProgram Director,US Navy,X5000\nCPA-OWNER,\"KREINIK & CO., LLC\",Y4000\nPHYSICIAN,MEDCENTER ONE HEALTH SYSTEM,Y4000\nATTORNEY,\"MORMINO, VELLOFF,& SNIDER, P.C.\",Z9500\nEmployee,Roc Caivano Architects,B4200\nOWNER,D.E.D. CONSULTING,Y4000\nMARKETING EXECUTIVE,DTE ENERGY,E1620\nALLEN TRUCKING,,T3100\nFull-Time Mother,None,F7000\nPhysician,PRHD,JD200\nCpa,Sabino & Company,F5100\nMATHEMATICIAN,COLUMBIA UNIVERSITY,Z9500\nVASCUL,GEORGE WASHINGTON UNIVERSITY,J7500\nParalegal,Loevy & Loevy,K1000\nTRUCK DRIVER,CRETE CARRIER CORPORATION,T3100\nPHYSICIAN SCIENTIST,QUIDEL CORPORATION,Y4000\nPROF,VIRGINIA COMMONWEALTH UNIVERS.,H5100\nCHAIRMAN PRESI,THE DIAL CORPORATION,M1300\nSecretary,The Heubner Agcy,F3100\nKING ESTATE VINEYARDS,,Y4000\nCHIEF STRATE,\"FORCE PROTECTION, INC.\",D8000\nCharity Work,None,X1200\nTWIN CITY ANESTH ASSOC,,H1130\nREAL ESTATE INVESTME,SELF,Y4000\nVice Chairman,Identiphi,Y4000\nSeivers Construction,Owner,G0000\nPRESIDENT,WESTGATE GLOBAL LOGISTICS,T3100\nEXECUTIVE,\"BROADRIVER ASSET MANAGEMENT, L.P.\",Z9500\nPRESIDENT & CEO,VECTOR GROUP,A1300\nOperating Manager,The Wild Acres Inc,Y4000\nHIGGINS MCGOVERN,,K1000\nKERNAN & KERNAN,,Y4000\nSAV-ON DRUGS,,J5100\nROLLS-ROTER N AMER,,T1300\nFederal&StateIncomeT,Valero Energy Corporation,E1160\nPRODUCER,ARENA STAGE,C2900\nConsultant,Point B Solutions Group,Y4000\nMigrant Worker,Los Alamos National Lab,X3000\nPresident,\"Meyers & Chap, Inc\",Y4000\nInsurance,Charles P. Leach Agency Inc.,Y4000\nMUSICIAN,GRAEME EDGE,J1100\nOIL & GAS,FORTSON OIL COMPANY,E1100\nCEO,\"MAV6, LLC/CEO\",D4000\nDIR. PROGRAM & ED,STATE OF MA,X3000\nACOUSTICS INCORPORATED,,B3000\nHOFFHEIMER & DOWNEY,,K1000\nPRESIDENT 1675 FOUNDA,SELF EMPLOYED,Y4000\nPAYDAY LANDER,ADURENCE FINNIAL,Y4000\nRetail Florist,San Diego Flowers By Coley,A8000\nROOFIN,GENERAL ROOFING SERVICES INC,B3000\nVICE PRESIDENT HR,MOFFITT CANCER CENTER,H2000\nADVISOR,MOELIS & CO.,F2300\nWebmaster,Center for Applied Linguistics,J1200\nSMD REALTY INCORPORATED,,F4200\nSENIOR V.P.,METLIFE,F3300\nRETIRED,\"RETIRED / HON CHAIR SHURE, INC.\",J5100\nATTORNEY,\"MCGINN, CARPENTER, MONTOYA & LOVE, P.A\",K1100\nEXECU,\"GROEN BROTHERS AVIATION, INC.\",T1200\nPRESIDENT,FRISBIE CONSTRUCTION,J1100\nPhysician,Specialty Clinics of GA,Y4000\nManager,Oce USA,Y4000\nPRESIDENT,TINCHER CHEVROLET OLDSMOB,T2300\nAUTO PARTS & MACHINE,,T2200\nSMALL BUSINESS OWNE,COLOR WHEEL INC,Y4000\nRetired,Self -Consultant,X1200\nJV TRAVEL INTERNATIONAL,,T9400\nWESTERN RESERVE MFG INC,,M5100\nPRESIDENT,SADDLEBACK COLLEGE,H5100\nOWNER,\"LITTLE CAESAR'S FRANCHISE\",Y4000\nTHE MANAGEMENT EDGE/CONSULTANT/OWNE,,Y4000\nHALL SIGN CO INC,,G5210\nNA/ENVIRONMENTALIST/HOMEMAKER,,J1200\nSELF,AUTHOR,Z9500\nLawyer,Ford & Harrison LLP,K1000\nENGINEER,PENDULUM INC.,Y4000\nUTAH SMCA,,B3400\nAdministrator,Medicine Insurance,F3100\nHomemaker,Self-Employed,F2500\nRETIRED EXEC.DIR.,COALITION FOR WISCONSIN,Y4000\nCONCORD USA DEV & INVEST,,F4000\nCOO,PROPERTY CASUALTY INSURERS ASS,F3400\nEXELON CORP//CEO/PRESIDENT/CHAIRMAN,,E1600\npartner,\"LeBoeuf, Lamb, Greene & MacRae\",K1000\nTIS Operations Manager,The Nature Conservancy,JE300\nST OF FL VOCATIONAL REHABILITATION,,X3000\nPHYSICIAN,COMPLETE NEWBORN CARE,H1100\nCALIFORNIA ASSEMBLY,,Y4000\nLAWYER,FLETCHER LAW,Y4000\nPRESIDENT,THE MAY DEPARTMENT STORES COMPANY,G4300\nExecutive Search,Herbert Mines Associates,Y4000\nPHYSICIAN,CAROLINA BLOOD AND CANCER CARE,H1130\nPhysician,\"Serenity Women's Healthcare , Inc\",Y4000\nPRESIDENT,REBS INC.,Y4000\nR & W INC,,F1400\nGeneral Manager,TRANSIT MIX CONCRETE CO.,B5100\nEducator,Berwin School District,X3500\nU S NAVAL CIS,,Y4000\nRevenue Auditor,State of Illinois,X3000\nREAL ESTATE APPRAISER,ASSOCIATED APPRAISAL GROUP,F4700\nGLP,Machinists Union,LM100\nNurse,LifePath,Y4000\nFashion Designer,Nanette Lepore,Y4000\nDefense Market Manager,Lord Corp,T1300\nBATTELLE MEMORIAL INSTITUTE,,E2000\nPresident,Erich Henkel Lincoln Mercury Dodge,T2300\nExecutive,Lifschultz Terminal And,B3200\nAMER DEQS COMM,,Y4000\nCOVINGTON & BURLING,,J7150\nCHAIRM,AMERICAN COMPUTER TECHNOLOGY,C5100\nINVESTO,HUIZENGA CAPITAL MANAGEMENT,F2100\nHEART OF TEXAS INTERNAL MEDICAN ASS,,Y4000\nPresident,Quidlibet Research Inc,Y4000\nADULT CARDIOLOGY,SAN DIEGO CARDIAC CTR.MEDICAL CORPORAT,H1100\nCONTENT IMPLEMENTER,AT&T COMMUNIOCATIONS,Y4000\nAttorney,Stevens and Lee Law Firm,K1200\nConstruction,\"Summers-Taylor, Inc.\",B2000\nNC DIVISION OF PRISONS,,X3200\nExecutive Chef,WP Carey & Co,F4500\nATTO,\"FLETCHER, TILTON & WHIPPLE P.C\",Y4000\nANCO MANAGEMENT SERVICES INC,,Y4000\nReal Estate Developer,\"self/C. Ventures, Inc.\",J5100\nAMARILLO ISD,,X3500\nReal Estate,Gerrard-Hoeschler,Y4000\nDR JOHNSON,,H1100\nPresident,Senator Auto Group,T2300\nConsultant/ Lobbyist,Spano & Janecek,K2000\n\"PARKER, POE, ADAMS &\",,K1000\nBUSINESS OWNER,IREDALE MINERAL COSMETICS,J1200\nRANCH APPRAISER,SELF,G0000\nCHATHAM STEEL CORPORATION,,J5100\nnone,Not Employed,J1200\nInvestment Banking/Speechwriter,Credit Suisse,F2300\nPRINCIPAL,CHARLES RIVER ASSOCIATES,J7400\nAIR NEW ZEALAND,,T1100\nExecutive,\"Shelly's Furniture and Appliance\",Y4000\nPhysician and CEO,\"Occupational Healthlink, Inc\",Y4000\nMARK RESEARCHER,,G5280\nURBAN SYSTEMS INC,,B4000\nATTORNEY,IUOE LOCAL 49,LB100\nBEST EFFORTS,,Z1200\nSr Account Manager,Pfizer Inc,H4300\nLicensed Land Surveyor,Self Employed,B4300\nPRS DATA SYSTEMS,,Y4000\nACCOUNTANT,DATA CENTER SYSTEMS,Y4000\nOWNER,LIBERTY,Y4000\nATTORNEY,SEATON BUCK AND PETERS,K1000\nOracle Applications Cons,Self employed,Y4000\nSCHULMAN GROUP,,F4100\nPRESIDENT,\"DEBOO ACCOUNTANTS, INC.\",J1200\nPRESIDENT MG,ACQUISITION MGMT. INC.,Y4000\nVICE PRESIDENT,FUTURE FORWARDING CO.,G5200\nRealtor,Windermere NW/Inc,J1200\nATTORNEY,\"BOUTIN & ASSOCIATES, PC/ATTORNEY\",Y4000\nDIRECTOR OF RISK MANAGEMENT,CITIGROUP,F1100\nA S EDWARDS & SONS,,Y4000\nSELF-EMPLOYED,,M8000\nPRESIDENT,\"LAKE COUNTY RACQUET & ATHLETIC CLUB, I\",G5800\nLNF DISTRIBUTOR,,Y4000\nIDI MD INC,,F4100\nOWNER,CAROLINAS MEDICAL PRODUCTS,Y4000\nStudent,University of Arizona,H5100\nBOOKKEEPER,COLLINS ENGINEERS INC/BOOKKEEPER,B4400\nInformation Requested,Swidler Spanola & Co LLC,F5100\nSalesman,Sonoco Products Company,Y4000\nPresident,The Henderson Group Inc.,F4100\nATTORNEY,EWBANK & KRAMER/ATTORNEY,Y4000\nphysician,Univ TX Health Sci Ctr Houston,H5150\nSenior Manager,Senger Associates,Y4000\nDIRECTOR,PEER POWER FOUNDATION,Y4000\nPRESIDENT,SHANEL CORP,Y4000\nInterior Design,Self employed,G5000\n\"PHOENIX CHILDREN'S\",,K2000\nRestaurant Owner,Dolcettis,Y4000\nBUILDER,SELF EMPLOYED-SCOTT FELDER HOMES LI,B1500\nKESLER ASHER GROUP,,J5100\nCONSULTANT,HEWLETT BAY ASSOC LLC,Z9500\nRESEARCH,CORPORATE EXECUTIVE BOARD,G0000\nPRESIDENT,THE WALL COMPANY,Y4000\nTransportation Consu,ICF Consulting,T0000\nTHE WRIGHT COMPANY,,F4000\nTHE WHITMAN COMPANIES INC,,Y4000\nPHYSICIAN,\"PSYCARE, INC.\",Y4000\nManaging Director,BeDiligent Inc,Y4000\nPRESIDENT & CEO,THE EADS GROUP INC.,B4000\nSealy Matress/National Sale Manager,,T9100\nRci Plc,Linn County,X3000\n\"MORRIS, MARION ASSOC\",,Y4000\nOwner,Multi State Properties LLC,F4000\nPRESIDENT,DISCOVERY INSTITUTE,X4000\nSELF-EMPLOYED,HOGAN DEVLOPMENT,Y4000\nFISCHER FRANCIS TREES & WAT,,F2100\nP,THE BARBARA LEE FAMILY FOUNDATION,J7400\nART GALLERY OWNER,SELF EMPLOYED,G5240\nANDERSON SILVER PLATING CO INC,,G1200\nCEO,ROBERT BOWDEN INC.,Y4000\nPresident,Southwest Ford Inc,T2300\nprogram officer,surdna,Z9500\nRAYTHEON AIRCRAFT MONTEK,,D3000\nPRESIDENT,FIRST AMERICAN MUNICIPALS,F4300\npresident,Vehicle Valuation Services,G5200\nAttorney,Colson Hicks Eidson,Z9500\nPOLITICAL CONSUL,THE CAMPAIGN GROUP,J1200\nSENIOR V,THE NORTHERN TRUST COMPANY,F1100\nJUDY ELLIOT INC,,Y4000\n\"Jacobs & Moodman, PA\",Attorney,Z9500\nATTORNEY,\"CHASAN, LEYNER & LAMPARELLO, P C.\",Y4000\nNEW ULM MEDICAL CLINIC,,H1100\nSENATOR,STATE OF NORTH CAROLINA,X3200\n\"HERRING, ART & FRAME\",,Y4000\nGFS MANUFACTORING CO,,Y4000\nTHE CITIZENS BANK OF CLOVIS,,F1100\n\"FOUNDER - EXEC DIR., SOCIAL BUSINESS\",CREDIT DO. INC.,Y4000\nINVESTMENT MAN,RAMIUS CAPITAL GROUP,F2700\nMEDLIN DAVIS CLEANERS,,G5500\nMUTUAL SELECTION MGMT CO,,Y4000\nTHE MELZER GROUP,INSURANCE PROFESSIONAL,F3100\nLife Coach & Workshop Leader,Self employed,Z9500\nAttorney,Fredrikson and Byron,K1200\nMANAGERLN144J,,Y4000\nPRESIDENT & CEO,NEVADA STATE BANK,F1000\nATTORNEY,\"PATTON BOGGS, LLP\",J7500\nRetired,Columbus Orthopedic Clinic P A,H1130\nGOMEZ INCOME TAX,,F5300\nSR. VP,DACM PROJECT MANAGEMENT,Y4000\nAccountant,US Government,X3000\nCHAIRMAN OF THE BOARD,INTREPID POTASH INC,E1230\nSOFTWARE ENGINEER,HARRIS CORPORATION,J2200\nDOWNER WATTERS & MITCHENER,,K1000\nSoftware Engineer,Aclarasoft,Y4000\nMANUFACTURING & DISTRIBUTING,MILLER BEER OF THE NORTHWOODS INC,G2850\nC.P.A.,KIENE HAND & COMPANY,J7400\nOwner,Kim  Thomas Disposal Co.,E3000\nFREEMAN FREEMAN & FAMILY,,Y4000\nS.C.P. WOLRDWIDE L.L.C.,,Y4000\nBUSINESS OWNER,SQS INC,Y4000\nNSB ASSOCIATES INC./REAL ESTATE/CHA,,J1100\nAttorney,\"Van Ness, Fledman P.C.\",K1000\nNURSE ANESTHETIST / UNIVERSITY PROFESS,SELF,H1710\nSole Proprietor,Paula Grulee Designs,Y4000\nPresident,Cleveland Cement Contractors,B5100\nPRESIDENT,SAVANNAH DISTRIBUTING,G2850\nRetail Executive,Rochester Big & Tall,Y4000\nCPA,D R HORTON,B2000\nREALTOR,BOB PARKS REALTY,F4200\nNASSAU SUFFOLK CONTRACTORS ASSOC,,B1500\nExecutive,Bechtel,B1000\nBANKER,FOOTHILL CAPITAL,F0000\nMA ENVELOPE CO,,M7000\nBEER & WINE D,COLUMBIA DISTRIBUTING,G2850\nSALES,SHOWPLACE WOOD PRODUCTS,B2000\nLimited Partner,Maverick Capital,F0000\n\"Owner, Manager\",Pioneer Bar,Y4000\nLIRO GROUP LTD,,B4000\nACCOUNTING,SEAGATE FOODS INC.,G2350\nWall Street Consulta,Self-Employed,G5200\nSr Director Worldwide L,Microsoft,C5120\nALDRIDGE ELECTRIC INC,,B1000\nINVESTOR,MOOR+SOUTH,Y4000\nALGHNY MNTNS CVNTN & VSTR,,Y4000\nAttorney,Vulcan,B5100\nPRINCIPAL MEDICAL SCIENCE LIAISON,JANSSEN SERVICES INC,J1100\nBEARERS & KEATING D D S PA,,H1400\nCPA,HAROLD S WHITNER INC CPA,J1200\nPresident/CEO,Premier America Credit Union,F1300\nAccounting,Remax Capital,F4200\nMERRELL LYNCH/SALES/U.S. GOVERNMENT,,Y4000\nOwner,Delaware Institute Of Pain Mgt.,H1130\n\"VP Gov't Affairs\",API,E1100\nAnthropologist,Self,J7400\nPARTNE,LOCKRIDGE GRINDAL NAUEN PLLP,K1000\nLAWYER,FEDERAL TRADE COMMISSION,Z9500\nONLINE MARKETING,RESOURCE INTERACTIVE,Y4000\nLLC MEMBER,\"MINARDI TRAINING, LLC\",Y4000\nProgram Director/Bur,University Of Wiscon,H5100\nSales Rep,Novartis Pharmaceuticals,H4300\nInvestor,Bandera Partners Llc,Y4000\nEngineer,F & I Company,Y4000\nATTORNEY,EHRENKRANZ & EHRENCRANZ,K1000\nEXECUTIVE,SEARS OIL COMPANY INC.,E1100\nPresident,Van Gilder Insurance Corporation,F3100\nDIRECTOR,MECKLENBURG ELECTRIC COOPERATIVE,E1610\nR P M & ASSOCIATES,,Y4000\nSHARPNACK B D N R,,Y4000\nPRESIDENT,G&P TRUCK LINE INC.,T3100\nV R CAMELOT INCORPORATED,,Y4000\nCONTRACTOR,BJORNSTAD CONST. CORP.,B1500\nJANESVILLE STATE BANK/BANKER/BANKER,,F1100\nEXECUTIVE,ALLIANZ INSURANCE,F3100\nFRANKEL & CO./PRESIDENT/CEO,,Y4000\nManager,Claymont Society,Y4000\nBusiness executive,Xtra Light Lighting,Y4000\nRES,CALIFORNIAN RESTAURANT VENTRUES,G2900\nAttorney,Irell & Manell LLP,K1000\nEXECUTIV,REP. NATIONAL DISTRIBUTING,Y4000\nCEO,BANKPACIFIC/CEO,Y4000\nPHYSICI,NEPHROLOGY SPECIALIST OF OK,H1130\nAttorney,Law Offices of Denise Joy Smyler,K1000\nMCCORMACK PROPERTIES,,Y4000\nEXC. DIRECTOR,COALTION ON HUMAN NEEDS,J7000\nBUILDE,AARON BURROUGHS CONSTRUCTION,B2000\nATTO,LOUIS FRIEDMAN ATTORNEY AT LAW,K1000\nTRUCKER,INTERSTATE DISTRIBUTOR,Y4000\nReal Estate,State StDevelopment Co,F4100\nAttorney,Rockford Health System,H3000\nHigh School worker,NAMI,Y4000\nBINDLEY WESTERN INDUSTRY,,H4400\n\"WALLECK, SHANE, STANDARD, BLENDER\",,K1000\nBIOSTATISTICIAN,RHO INC,Y4000\nPRESIDENT,MYERS & CHAPMAN INC,J1100\nT C CRAIGHEAD & CO,,E1100\nTELECOMMUNICATI,RMES COMMUNICATIONS,C1100\nREALTOR,JOHN P. GROSS COMPANY,Y4000\nENGINEER,\"TOLUNAY-WONG ENGINEERS, INC.\",B4400\nAVP OPS - SOUTH,Union Pacific Railroad,T5100\nENGINEER,IBM,E1150\nExecutive,Gorman and Company,F4000\nManufacturers,Kiwi Industries,Y4000\nVP,PIER 36 LLC,Y4000\nCFO,\"CENTURYLINK, INC.\",C4100\nAttorney,Ciccone Nimocks & Townsend Realtor,F4200\nHigh School Teacher,Town of Seekonk (Ma),Y4000\n\"ROGERS & CORBIN, AIA\",,B4200\nPOLICY ADVISOR,SNR DENTON,J6200\nManufacturer,STS Coatings,B3000\nCEO,Sechrist Industries,Y4000\nPERFORMER,SELF-EMPLOYED,C2600\nAutomobile Dealer,Williamson Saturn Of Miami,Y4000\nPRESIDENT,\"STORER, INC\",Y4000\nBusiness owner,Self-employed,G0000\nFREIGHT EXPEDITOR/LANDLORD,SELF,Y4000\nHOTELIER,CTF HOTELS,T9100\nCAROLINA BIOLOGICAL SUPPLY CO.,,H4300\nUnknown,Self Employed,G0000\nFOUNDER,CONSTATINE CPT/MILLIKEN,M8000\nREAL ESTATE DEVELOPMENT,JOBE COMAPNY,Y4000\nCOMMERCIAL ASST,,Y4000\nPhotographer,Self,C5120\nAttorney,Eaton & McClellan,K1100\nATTORNEY,SELF- THE MILLER LAW FIRM,Z9500\nMusic Publisher,Downtown Music Publishing,C1100\nMARIETTA DODGE & JEEP EAGLE,,T2300\nManagement Consultant,\"Odom + Associates, LLC\",Y4000\nREAL ESTATE,WOODWARD PROPERTIES,F4000\nVAN CLEEF COMPANIES,,Y4000\nTAX ATTORNEY,ERNST AND YOUNG,F5100\nConstruction Manager,Stratford Constructors,B1500\nCEO,Marvel Manufacturing Co.,M9000\nEXECUTIVE VP & COO,KCPL,E1600\nBUSINES,\"TALLGRASS TECHNOLOGIES, LLC\",Y4000\nPRESIDENT,LATHAM & ASSOCIATES,G5270\nCEO,\"Medical Facilities of America, Inc.\",H2200\nPresident,Leading Authorities,G1100\nMedical Administrato,Signet Health,Y4000\nHOUSEWIFE,SELF EMPLOYED/HOUSEWIFE,F7000\nCONSULTANT,ALEXANDER PROUDFOOT,Y4000\nRN,NEXUS HEALTH,Y4000\nOwner,Mi Hogar Mexican Restaurant,G2900\nChairman/CEO,\"Gotham Organization, Inc.\",F4100\nPresident,Norca Air Conditioning,B3400\nPRESIDENT,CAGED HOLE WELL SERVICES,Y4000\nFIRST UNITED CORPORATION,,Y4000\nAgent,Hometown Agency LLC,A4000\nPhysician,COASTAL PHYSICIANS SERVICES,H1100\nPRESI,SOUTHLAND CASKET COMPANY INC.,Y4000\nLivingston Siegel,,Y4000\nProject Director,US Holocaust Memorial Museum,X4200\nPHYSICIAN,USFDA,X3000\nOwner,John Santilli  Center of Automobiles,T2310\nCHIEF EXECUTIVE OFFICER,CITIZENS BANK,F1100\nExecutive,Alterman Electric Co,Y4000\nOWNER,ARCHER AUTOMOBILES,Y4000\nattorney,Caddell & Chapman,K1000\nReal Estate Agent,Stanfield Realtors,F4200\nVI,COMPLIANCE ENVIRONMENTAL SYSTEMS,Y4000\nPartner,Desco Supply Co.,Y4000\nVP,HARTZ MOUNTAIN INC.,F4100\nScientist,Eli Lilly And Co.,H4300\nSO CALIF PERMANETE,,J7400\nATTORNEY,PRATT FLAHERTY,Y4000\nCONSULTANT,BRACEWELL & GIULIANI LLP,K2000\nPORTFOLIO MANAGEMENT,WILEY,Y4000\nExecutive,Morgan Taylor Ventures,F2500\nSATELLITE OPER SERVICES GMBH,,Y4000\nDirector of Learning and Development,Comcast Cable,C2200\nEXEC. DIRE,KV WORKFORCE DEVELOPMENT,Y4000\nTRADER,TIGER MANAGEMENT,F2700\nSALES,,H4600\nPARAMEDIC,COOK CHILDRENS,Y4000\nRN,McKesson Health Solutions,Y4000\nPRESIDENT,OTTO OLDSMOBILE CADILLAC,T2300\nSAN FRANCISC,ED HARDY,J7300\nProffesor,Texas A&M University,H5100\n\"WOLFE'S AUTO AUCTION\",,T2000\nHEALTHCARE,PASADENA PARK HEALTHCARE,Y4000\nSALES,TANDA SUPPLY LP,Y4000\nNORTH AMERICAN SALT CO,,M1000\nOWNER,\"RTEX, INC.\",Y4000\nNONE,SANDS OCEANFRONT,F4500\nBARRYO JEWELERS,,G4600\nAttorney,Zetlin & Dechiara LLP,K1000\nREFLECTOR NEWSPAPER,,C1100\nARCHITECT,CHRISTOPHER ADAMS/ARCHITECT,Y4000\nCONSTRUCTION,ALLIANCE CORPORATION,Y4000\nDOCTOR,SF FREE CLINIC,Y4000\nDIRECTOR,,C5120\nconstruction,Herzog Construction Corp.,B1000\nMORRISON KNUSEN,,B1000\nOwner,\"Mr Rooter of Milwaukie, OR\",G1000\nLAZARE KAPLAN INTERNATIONAL,,M3400\nAttorney,Cole Financial,F0000\nVICE PRESIDENT OPERATIONS,\"METTIKI COAL, LLC/VICE PRESIDENT OP\",E1210\nSALES MANAGER,BRADSHAW INTERNATIONAL,Y4000\nCFO,CREDITEX GROUP,Y4000\nPRESIDENT,MOBILITY EXPRESS,Y4000\nPresident,\"Dykstra-devries, Inc.\",Y4000\nPRESIDENT,\"RENE PLESSNER ASSOCIATES, INC.\",Y4000\nCEO,LLKENNEDY & ASSOCIATES,Y4000\nMAYO EMPLOYEES CREDIT UNION,,F1300\nOwner,\"David's Fine Jewelry\",G4600\nINSURANCE,OPUS,Y4000\nGOLDMAN & RIO,,Y4000\nFINANCIAL SERVICES CONSULTANT,GLENBROOK PARTNERS,Y4000\nPRESIDENT,COGGIN CHEVROLET,T2300\nSELF-EMP,BUCK & KNOBBY EQUIP CO INC,Y4000\nMILLS FLORAL COMPANY,,Y4000\nOffice Manager,\"Dennis C Cronin, Attorney at Law, PS\",K1000\nManager,\"BLOCK MARKUS WILLIAMS, LLC\",G5300\nSHAVER CONSTRUCTION,,B1500\nPRINCIPAL,\"BULLOCK & HADDOW, LLC\",G5200\nInformation Requested,Medical Illustrator,H0000\nNative American Nation,Native American Nation,J7500\nPRESIDENT,MARTIN G. EARL INC.,B0500\nPublic Relations,\"Ruder Finn, Inc\",G5210\nACCOUNTANT,\"LIGHTING, INC.\",M6000\nGREENE BROILETT ET AL,,K1100\nWALKER FREE ASSOC,,K2000\nSOFTWARE ENGI,NOVA BUSINESS SYSTEMS,C5120\nACCOUNTANT,DQSA LLC/ACCOUNTANT,Y4000\nREAL ESTATE INVESTMENT & PROP. MGMT.,ROSAUER COMPANY L.L.C.,Y4000\nMEDREVIEW INC,,H3000\nEXECUTIVE,\"NYC ADVISORS, LLC\",Y4000\nLawyer,Mayer Brown,K1200\nBoard of Director,\"Erwin, Graves & Associates\",F1400\nC. E. O.,SYSCOM,Y4000\nCertified Registered Nur,Anesthesia Associates of,H1130\nELECTRONICS DESIGN,Self employed,G0000\nDISTRICT MANAGER,GMAC MORTGAGE,F4600\nExecutive,S A Comunale Inc,Y4000\nMCMIN C HAY DEPT,,Y4000\nRE DEVELOPER,CORIANDER INC.,F4100\nphysician,Minnesota Radiation Oncology P.A.,H1100\nATTOR,COHEN MILLSTEIN HAUSFELD TOLL,K1000\nFOULGER-PRATT COMPANIES,,F4100\nLAWYER,\"WILSON, HALBROOK & BAYARD, PA\",K1000\nVICE PRESIDENT MARKETING,SELF-EMPLOYED,Y4000\ncorporate officer,BCBS of FL,F3200\nPresident,Triplett Financial Services,F0000\nSALES/MARKETING,SELF,G5280\nPART,\"CORBALLY, GARTLAND & RAPPLEYEA\",K1000\nPRESIDENT,VAN WAGNER OUTDOOR,G5210\nINFO REQUESTED,Hayes Industries,Y4000\nPresident,Transcom Inc.,Y4000\nCONSULTANT,CASSIDY & ASSOC,K2100\nCEO,Arcata Associates Inc,C5000\nDiplomat,U.S. Federal Government,Y4000\nNEW YORK LIFE INVESTMENTS,,F3300\nCOO,NILES AMERICA WINTECH,Y4000\nREAL ESTATE SERVICING,HIWAY FEDERAL CREDIT UNION,F1300\nSHEARSIN AM EXPRESS,,F2100\nREAL ESTAT,CARPENTER & COMPANY INC.,F4100\nMATERIAL,JOHN B. EWLES INCORPORATED,B5100\nVP PAYROLL OPERATIONS,SOI INC,Y4000\nEUSTACE WOLFINGTON INC,,T2500\nREAL ESTATE DEVELOPMENT,PARTNERS DEVELOPMENT,Y4000\nENGINEER,\"VORTEX FLUID SYSTEMS, INC.\",Y4000\nIndustrial Real Esta,Trammell Crow Company,F4500\nCHIEF EXECUT,PENN DISTRIBUTORS INC.,G2850\nLAWYER,MINTZ LEVIN,K1200\n\"VP, GOV'T AFFAIRS\",\"DUNKIN' BRANDS\",G2900\nVENTURE,ASSOCIATED FUND MANAGEMENT,Y4000\nContractor,Moore Concrete,B1000\nED,CWF,Y4000\nNATIONAL ENVIRONMENTAL TRUST FUND,,Y4000\nHospital Administration,University of Minnesota Medical Center,H2100\nPresident,Godecke Land & Livestock,G1200\nVenture Capital,\"KB Partners, LLC\",F2500\nEXECUTIVE,ALLIANCE BEVERAGE,Y4000\npartner,\"Obermayer, Rebmann, Maxwell et al\",K1000\nUrologic Surgeons of Washington,,H1130\nSOFTWARE PRODUCT MGR.,EXCITE@HOME,C5140\nWife and Grandmother,Home,Y1000\n,SHEET METAL WORKERS  INTERNATIONAL,LB100\nExecutive,Commonwealth Club,J1200\nVANGUARD CELLULAR SYS INC,,C4300\nGREENPOINT BANK,,F4600\nMEDICAL AFFIARS,INTERMUNE,Y4000\nREAL ESTATE DEVELOPMENT,B.N.A. REALTY ADVISORS,F4200\nGREEN KASTER & FALOY,,Y4000\nsupply cataloger,\"DLIS, Battle Creek\",Y4000\nMAYS BYRD & ASSOCIATES,,K1000\nJOHN LUNDY & ASSOCIATES LLC,,G5200\nAttorney,Boies Schiller Flexner LLP,J5100\nCONTRACTOR,\"KETCO, INC/CONTRACTOR\",Y4000\nVICE PRESIDENT,NATURE CONSERVANCY,JE300\n\"WELLS, GAROFALO ET AL\",,K1000\n\"LAN TECHNOLOGIES INT'L INC\",,Y4000\nNeurosurgeon,Rush-Copley Service Corp.,H1130\nBONNER CHEV CO,,T2300\n\"Director, Government Affairs\",CTIA,C4300\nattorney,Rice Rose,K1000\nAttorney,ANS,Y4000\ngovernment relations,Natl  Assn of Chain Drug Stor,G4900\nVP Mfg.,Fuel Cell Energy Inc.,E1700\nPROPRI,CARLYLE HOTEL & SAVOY SUITES,T9100\nROGERS & WELLS PARTNERSHIP,,Y4000\n\"Director, Corporate\",Ims Health,H0000\nTheatrical Wardrobe Atte,Cry Baby Broadway LP,Y4000\nJORDON TEMPLE BAPTIST CHURCH,,X7000\nCEC AND CHAIRMAN,BAKER HUGHES INC,E1150\nNurse/Paralegal,Morgan and Weisbrod,K1000\nMEMPHIS CONTROL CENTER,,Y4000\nSOCIAL,GEAUGA FAMILY FIRST COUNCIL,Y4000\nFUNDRAISER,\"ST. BENEDICT'S PREP\",Y4000\nPARTNER,VERTIAS V,Z9500\nTEACHER,\"ST. MARY'S SCHOOL\",Y4000\nOffice Manager,\"C James Plumbing & Heating, Inc\",B3400\nReal Estate,American Resurgens Mgmt Corp.,F4000\nATTORNEY,KATZ BLENDEN ET AL.,K1000\nHousewife,N/A,H1700\nSupervisor,Rhode Island Dept Human Services,Y4000\nOWNER,HAMILTON TRACTOR & EQUIPMENT,Y4000\nCommerce Consultant,Self-Employed,G5200\nPRESIDENT,STONE MANAGEMENT CO,Y4000\nCHIEF TECHNOLOGY OFFICER,MOMENTIVE,M1700\nRESTAURANR OWNER,SELF,Z9500\nCEO,HOLLYWOOD ENTERPRISES,Y4000\nADMINISTRATION,SCIENCE MUSEUM OF MN,X4200\nLAW OFFICE OF ROBERT REEVES,,K1000\nSELF-EMPLOYED/ATTORNEY/LAND DEVELOP,,K1000\nINVESTMENT BANKER,CORNERSTONE CAPITAL MANAGEMENT,F2100\nAnhd,,Y4000\nTeacher,Dalton State College,H5100\nATTORNEY,MULLIS LAW FIRM,Z9500\nVice Chairman,Limited Brands,G4100\nSecurity,Apollo Security Inc,G5290\nFINANCIAL ADVISOR,,F0000\nSELF/ NORTHWESTERN MUTUAL/INSURANCE,,F3100\nTCBA,,F5100\nLAWYER,\"MAYER, BROWN, ROWE & MAW\",K1200\nVI FINANCE,OWENS CORNING,B5400\nMARKETER,\"WARREN EQUITIES, INC.\",E1170\nGeneral Manager,Farmers Mutual Cooperative Telephone C,C4100\nExecutive,Gold Rule Insurance Co.,F3100\nTeachers Aide,Rockford School District,X3500\nTHE RENDON GROUP,,K2100\nBanker,Thurston First Bank,F1100\nVETERINARIAN,EISENHOWER VET,Y4000\nBIBB CRABTREE & SNEL,,Y4000\nMURRAY SCHEER AND MONTGOMEREY,,K2000\nCHIEF INVESTMENT OFFICER,PERFORMANCE TRUST,F2100\nBusiness Manager,Robbins Association,J1200\nResearch Manager,\"Thomson, Inc\",C5000\nCEO,STACKPOLE INTERNATIONAL,Y4000\nINFO REQUESTED,James Kempf Prestigious Homes,B2000\nSTAMFORD MEDICAL GROUP,,H1100\nImaging Diagnostic C,Parkview Hospital,H2100\nOLYMPIA RESTAURANT & PIZZ,,G2900\nATTORNEY,HORNE LAW OFFICE,J9000\nManager Zone Finance,Siemens Medical Solutions USA,C5000\nBOARD MEMBER,MACERICH,F4100\n\"VP, CLIENT MANAGEMEN\",SMITHBUCKLIN CORPORATION,G5270\nLCSW,SUSAN FINE,J5100\nCHAIRMAN,,C5110\nCO-CHIEF EXECUTIVE,BERGER SINGERMAN,K1000\nPRESIDENT,FIRST HEALTH,H0000\nOWNER,ENTERVEST MANAGEMENT,Y4000\nMAINTENANCE WORK,MEAD PAPER COMPANY,A5200\nPOE COMPANIES,,F4100\nJACOBS & JACOBS INC,,Y4000\nPhysician,Heckman Global Adm.,Y4000\nPRESIDENT & CEO,QUAKER STEAK & LUBE,G2900\nNCAE,,Y4000\nExecutive,FEDERAL HOME LOAN BANK,F4600\nORTHOPEDIC SURGEON,MENLO MEDICAL CLINIC,Y4000\nATTO,\"MCANDREWS, HELD & MALLOY, LTD.\",K1000\nBEVERAGE DEVELOPER,SELF-EMPLOYED,G0000\nMONEY MANAGE,CYRUS CAPITAL PARTNERS,F0000\nDentistry,Self employed,H1400\n,INSTITUTE FOR CREATIVETECHNOLOGIES,Y4000\nPRESIDENT,MARLEC INC.,Y4000\nOWNER/DEVELOPER,PIPERTON HILLS,Y4000\narquitect,self employed,Y4000\nAttorney,Robert Gray Palmer Co,Y4000\nWELDING ENGINEER,ACECLEARWATER ENT.,Y4000\nCHAIRMAN/CEO,QUINTANA MINERALS,E1150\nFLORT INVESTMENTS INC,,Y4000\nHUMAN RESOURCES CONSULTANT,SELF DBA HUMAN RESOURCE SOLUTIONS,Z9500\nEXECUTIVE,BOSCH MANAGEMENT SERVICES CROP,Y4000\nCRNA,GREATER HOUSTON ANESTHESIOLOGY,H1710\nVICE PRESIDENT,SYMETRA FINANCIAL,F0000\nBusinessman,\"Starbuzz, Inc\",A1300\nWILSON REYES ASSOC,,Y4000\n\"TOMMY CONDON'S RESTAURANT\",,G2900\nATTORNEY,\"MOLLEY, ROSEN, & BEARD\",F7000\nATTORNEY,DAMON & MORE L.L.P.,K1000\nJRB COMPANY INC,,Y4000\nPRESIDENT,HEALTH & MEDICAL COUNSEL OF WASHINGTON,H0000\nATTORNEY,HUGHES SMITH YAZINS,K1000\nLAWYER,GROSSMAN AND ROTH,K1000\nJARAI SCHEER CORPORATION,,Y4000\nCEO,DAVISVILLE PROPERTIES,F4000\nROYER & BABAK,,K2000\nRISK OFFICER,BANK OF NY MELLON,F1100\nPresident,\"Perry Ballard Advertising, Inc\",G5210\nOwner,J. Randal Smith Md,H1100\nLINDA GRAY REAL ESTATE,,F4000\nRETIRED,HENRY MASSEY,Y4000\nPRESIDENT,BASHA DIAGNOSTICS,H3400\nCIVIL EN,MOFFATT & NICHOL ENGINEERS,B4400\nconsultant,\"kjb,inc\",J5100\nMCCRANN & CRAVEN,,Y4000\nSR VICE PRES,PROTECTIVE LIFE CORPORATION,F3300\nPRESIDENT,KOEBEL AND CO.,Y4000\nFounder & CEO,Touchtone Corporation,Y4000\nInstructor,Nicolet College,H5100\nSALES MANAGER,MEDIA RECOVERY,Y4000\nBALLARD SPAHR ANDREW & INGERSOLL LL,,K1000\nChapter Staff,Mahoning Valley Chapter,B3200\nNA-Homemaker,NA,J7400\nV. P.,DENNY MILLER ASSOCIATES,K2000\nCATHIE HOSTETLE,SOLE PROPRIETORSHIP,Y4000\nATTORNEY,PEOPLE OF INDIANA,T1400\nATTORNEY,RUTTER & RUSSIN,K1100\nCABINET MAKER,BASS CABINET MFG.,Y4000\nEXECUTIVE,JAYEMBE/EXECUTIVE,F2600\nPARTNER,\"ANCORA PARTNERS, LLC\",E1150\nCAPITAL MANAGEMENT INC,,Y4000\nCOMPUTER,STEVENS CAPITAL MANGEMENT,F2100\nDENTIST,Charles F Mohaupt DDS PA,H1400\nELROD & MASCHER P C,,Y4000\nLEONARD FARBER INC,,F4100\nCEO & CHAIRMAN,IDT CORPORATION/CEO & CHAIRMAN,C4200\nCOMPUTER SECURITY CONSULTANT,,G5290\nPresident,Keystone Lending Corporation,Y4000\n\"First Pacific Advisors, LLC\",,F2300\nReal Estate,Tax Redmetions Plus,Y4000\nMUSIC PRODUCTION AND SALES,INIO MUSIC,Z9500\nOWNER,JEM DEVELOPMENT,F4100\nAccountant,US Army,X5000\nADVISOR AUTHOR,CONSULTANT,G5200\nDE ANZA PROPERTIES,,F4000\nCONTRACTOR,CATTRELL COMPANIES INC,Y4000\nRanch Manager,Hawthorne Ranch,A1400\nManager,Farmers & Mechanics Bank,F1100\nC.E.O. STANLEY ELECT,STANLET ELECTRIC MOTOR CO. INC,B3200\nCOMMODITY,\"COMTRADE COMMODITIES, LLC\",F2200\nStaff,Highland Park Chamber of Commerce,G1100\nATTORNEY,MITCHELL SILBERBERG ET AL,Y4000\nDirector Enterprise Sales,Athenahealth,G5200\nPresident,Columbia Laboratories,Y4000\nCERTIFIED PUBLIC ACC,DELOITTE & TOUCHE LLP,F5100\nHONEYVILLE GRAIN,,Y4000\nCAGLE FISHING & TOOL RENTAL,,B6000\nPRESIDENT & CEO,CABELL HUNTINGTON HOSPITAL,H2100\nAREA SALES MANAGER,FIRST MIDWEST,F1100\nReal Estate Broker,Keller Williams Lincoln Park,F4200\nVice President,\"DABARA, INC.\",C1100\nHALL ANDERSON COMMUNICATIONS GRP.,,J7400\nRETIRED,C S RANCH,A3000\nATTORNEY,\"TIFFORD & TIFFORD, P.A.\",K1000\nExecutive,Estes Express,T3100\nCHICAGO TITLE OF COLORADO,,F4300\nV.P. OPERATIONS,AMASTEEL & SUPPLY CO. L.L.C.,Y4000\nTAMPA BAY BASEBALL GROUP,,G6400\nLEAD STAGE HAND,STUDIO SERVICES INC. - THE OPRAH WINFR,Y4000\nPhysician,\"Permian Women's Center\",Y4000\nLAB TECH; AR,SHERWIN WILLIAMS; ARMY,Y4000\nRadiologist,MidState Medical,Y4000\nCHIEF TECHNO,LEVEL 3 COMMUNICATIONS,C4000\nOV SUPERMARKETS INC,,Y4000\nAccountant,G & S Produce,A1400\nSUPREME CHEMICAL CORP,,M1000\nAttorney,Ritzert & Leyton,H5300\nResearch Scientist,Triangle Pharmaceuticals,H4300\nVice President and Administrator,Peninsula Hospital,H2100\nATTORNEY,\"EPSON AMERICA, INC.\",C5110\nInsurance,Huntleigh/McGehee Inc.,Y4000\nConstruction,Courtland Homes,B2000\nNutritionist,Kaiser-Permanente,H1700\nLegal Support Provider,www.atrustednotary.com,Y4000\nInterior Designer,\"Mona Hajj Interior Design, Inc\",Y4000\nRETIRED,Self-Employed,X1200\nVETERINARIAN,MILLERSVILLE ANIMAL HOSPITAL/VETERI,A4500\nFAIRFAX PARTNERS L L C,,Y4000\nPRESIDENT,DYOUVILLE COLLEGE,H5100\nTENNESSEE FARMERS COOPERATIVE,,A6000\nVice President and G,Van Scoyoc Associates,K2000\nRETIRED USAF LT COL,,X1200\nself employed,de vera,J1200\nVULCAN VENTURES,,Y4000\nBERNARD EGAN & CO,,A1000\nMANAGING PARTNER,KEYLINGO TRANSLATION,Y4000\nLAWYER,\"O'BRIEN & THOMAS, LLC\",K1000\nSocial Worker,Children and Family Law,K1000\nAttorney,Heygood Orr Reyes Pearson Bartolomei,K1000\nREAL EST,SPAULDING AND SLYE COLLINS,Y4000\nTHE PARKER HOUSE REST,,G2900\nCONTRACTOR,AINSWORTH BENNING,B1000\nCIVIL ENGINEER,PALMER ENGINEERING COMPANY/CIVIL EN,B4000\nTmtman,Cadence Capital,F2100\nCEO,Jasculca/Terman and Associates,Z9500\nMATHESON PROPERTIES INC,,F4000\nRN,,H1130\nBus. Manager/Registe,Jeanette Midori Okazaki  DDS  Dental &,H1400\nLIBERTY BUILDING CO,,Y4000\nPRINCIPAL,SCS CONSTRUCTION SERVICES,B1500\nCOMMERCIAL REAL ESTATE,HFF L.P.,F4600\nAUTO SALES,SELF-EMPLOYED,T2300\nAMERICAN AUTOMOBILE MANUF ASSN,,T2100\nINVESTMENTS ADVISOR,COLUMBIA INDUSTRIES,M3600\nCMO,\"HERFF JONES, INC.\",M3400\nPRINTCO CORP,,Y4000\nAgent,Konowa Tag Agency,Y4000\nAdministrator,Stanford Univ,H5100\nJones Day/Attorney / Partner,,K1000\nsoftware engineer,\"CMS Products, Inc.\",Z9500\nSpecial Counsel,ALSTON & BIRD L.L.P,K2100\nCEO,Education Futures Group,Y4000\nOWNER,POWERHOUSE GYM INTERNATIONAL,Y4000\nSURGEON,GERALD MCKINNEY/SURGEON,Y4000\nDIRECTOR,WRITER,J5100\nGeneral Manager,Rabobank Frankfurt,Y4000\nCTO,LINKEDIN/CTO,C5140\nPRESIDENT,PROCESS SOLUTIONS,Y4000\nHOMEMAKER,BEST EFFORT,H2200\nPEERLESS STAGES INC,,Y4000\nEXECUTIVE,GREENWICH CAPITAL MARKETS,F2100\nProfessor,Natl Conference of Examiners,Y4000\nPARTNER,\"IQWARE MARKETING, LLC\",Y4000\nROPAK CORPORATION,,Y4000\nLONDRIGAN POTTER & RANOLE,,K1000\nInvestment Ma,Blue Mountain Capital,F2100\nPHYSICIAN,PACIFIC INPATIENT MEDICAL GROUP,Y4000\nRetired,Retired From Gmc,X1200\nCONSULTANT,WYDAH CORPORATION,Y4000\nAttorney,\"Skadder, Arps, Slate, Meagher & Floom\",K1000\nSELF EMPLOYED,MKMB RESTAU,F2100\nSPECI,DEVELOPERS DIVERSIFIED REALTY,F4200\nPHYSICIAN,ELI LILLY AND COMPANY,H4300\nM. F. C.,B.R.C. INC.,Y4000\nREAL EST,\"THE GRAHAM COMPANIES, LTD.\",J1200\nADC,Boxlake Sys.,Y4000\nINVESTMENT BANKER,KOWALOFF & CO.,Y4000\nEDITOR,INVITATION OXFORD MAGAZINE,C1100\nCONSULTANT,STATE STREET PARTNERS,Y4000\nHOUSE AND HOME,,B2400\nROI GROUP,,Y4000\nCPA,Dan R Kolbenshlag PC,Y4000\nPhysician,Mountain States Cardiovascular,H1130\nART ONE GALLERY,,Y4000\n\"NAT'L REPUB COALITION C\",,J1100\nSPECIAL ADVISER,PROMONTORY FINANCIAL GROUP,F5000\nCOMMAND CORP,,Y4000\nPRESIDEN,NICHOLS PAPER PRODUCTS CO.,A5200\nBusiness Owner,Clearwater Enterprises Llc,Y4000\nBroker,Welsh Co,F4000\nReal Estate Broker,Tyson Properties Inc,F4000\nTHIRD PARTY ADMIN,ENTRUST INC,F3000\nARMP,NP CARE LLC/ARMP,Y4000\nEXECUTIVE,AMERICAN FINANCIAL GROUP/EXECUTIVE,F3400\nORISON DISTRIBUTING,,Y4000\nOwner /real Estate B,Self - Employed,G0000\nPRINCIPAL,CASTLE INFORMATION GROUP/PRINCIPAL,Y4000\nSENIOR VP,MONTEFIORE MEDICAL CENTER,H2100\nWASHINGTON UNIVSITY ST LOUI,,H5100\nCFO,Mikkon,Y4000\nPhysician,The Center For Mind-Body Medicine Self,H1100\nPortfolio Mgmt Dir-Sr,Federal Home Loan Mortgage Corporation,F4600\nMANAGING DIRECTOR & CIO,VANGUARD GROUP,F2100\nGOVT AFFAIRS WEST PUBLISHING,,C1100\nGRAND TRANSPORTATION,,Y4000\nPRESIDENT & CEO,NRTHWST MEMORIAL HEALTHCARE,H2100\nowner,Lucky Derby Casino,G6500\nPROJECT COORDINATOR,ACKERMAN GROUP,Y4000\nCABINET MAKER,,Y4000\nPRINCETON PUBLIC AFFAIRS GROUP INC.,,K2000\nSound engineer,Self employed,G0000\nINSURANCE,MELTZER GROUP BENEFITS,Y4000\nBELL MEDICAL,,H0000\nMANAGEMENT,EARTHLINK,C5140\nCEO,MICHELS CORPORATION,B3000\nCUSHMAN REALTY CORP,,F4200\nMCHUGH,,K1000\nMICHAEL DANN ASSOC,,Y4000\nRetired,Fiber Node Services,X1200\nPARTNER,ACORN CAMPUS VENTURES,F2500\nCOLDWELL BANKER D ANN HARPER,,F4200\nINFO REQUESTED,COZENO`CONNOR,K1000\nEDWARD A FISH & ASSOCIATES,,Y4000\nFeature Production Coordinator,Warner Bros,C2400\nSENDERO ENERGY INC.,,E1000\nProfessor,URI,X1200\nDEPUTY TO THE MAYOR,SANDY CITY,X3000\nLong Term Care,HCF Management,Y4000\nVICE PRESIDENT OF SALES,\"RAMQUEST, INC.\",F4300\nAUTOMOTIVE RENTAL INC,,Y4000\nCEO,GROOV-PIN CORP.,Y4000\nPresident,Jim Vreeland Ford,T2300\nCLERIC,VAN ANDEL PROPANE NORTH STAR,J1100\nVINEYARD OWNER,,G2820\nCEO & CHAIRMAN,ASSET ALLIANCE CORP.,Y4000\nCoordinator,Embassy of Sweden,Y4000\nRetired Professor,Univ of Dubuque,Z9500\nLEGAL ASSIST,CHARLES F. ABBOTT P.C.,K1000\nSELF EMPLOYED,RALPH CLAYTON & SONS,B5100\nINFO REQUESTED,American Homepatient,H3100\nBusiness Development,Union Charter,Y4000\nRETIRED,DISTRICT LODGE 98 IA,Y4000\nDQ-JR ENTERPRISES INC,,Y4000\nPHYSICIAN,PEDIATRICS ASSOCIATES,H1130\nInvestments,Deutsche Bank,F1100\nPARTNER,LENT SCRIVNER & ROTH,K2000\nDUE DILIGENCE ATTEMPTED 11/10/05/DU,,C4400\n\"BENNETT, LYTLE WETZLER, WINN ET AL\",,Y4000\nteacher,Chatham Central School,J1200\nACCOUNTANT,\"PITTMAN & MCKEEVER, LLC/ACCOUNTANT\",F5100\nRETIRED,RETIRED PROFESSOR,J1100\nPresident,Er-hal Management Corp.,Y4000\nPARTNER,HAKIM ORGANIZATION,Y4000\nRetired engineer,(retired),X1200\nRE/MAX SHOWCASE/REAL ESTATE BROKER,,F4200\nACCOUNTANT,U.S.A.A.,F3100\nSTORE OWNER,SELF-EMPLOYED/STORE OWNER,G4000\n\"VICE PRESIDENT, CORPORATE DEVELOPMENT\",SUDDENLINK COMMUNICATIONS,C2200\nPRESIDENT,Transit Mix Concrete & Matls,B5100\nCIO,US WEST,C4000\nOwner-Internet Sales,Richardsolo.Com,C5140\nRICHMOND HIGHLANDS VETERINARY HOSP,,A4500\nCLEVELAND BROS EQUIPMENT,,B6000\nMCV/VCU/MEDICAL STUDENT,,Y4000\nMGMT,AVG,C5110\nPsychotherapist,Information Requested,H1110\nReal Estate,Halgay & Associates,F4000\nCPA,BARNARD VOGLER AND COMPAN,Y4000\nEXECUTIVE,FLEETWOOD,Y4000\nCOMMUNI-CARE OF AMERICA,,H3200\nSENIOR VICE PRESI,\"PAINEWEBBER, INC.\",Y4000\nCOMMUNITY HEALTH CENTER OF BURLINGT,,Y4000\nRUFFIN CO,,T9100\nANESTHESIOLOGIST,ARKANSAS HEALTH GROUP - ANESTHESIA,H1130\nRESSCOR FINANCIAL,,F0000\nCOO,\"GLORY HAUS, INC.\",Y4000\nCALDERSON & ASSOC,,Y4000\nVICE PR,SWANK INSURANCE AGENCY INC.,F3100\nComputer Specialist,NYC FISA,Y4000\nVICE PRESIDEN,LSI LOGIC CORPORATION,C5000\nFIN SVCS REP,MASSMUTUAL,F3300\nMERRILL LYNCH BOSTON INSTL,,F2100\nSenior Research Scientist,Academy of Natural Sciences,X0000\nGENERAL COUNSEL,NICOR,E1140\nBUSINESS OWNER,\"BRUSTER'S ICE CREAM\",Y4000\nGOVT RELATIO,POLICY DIRECTIONS INC.,K2000\nC.E.O.,\"Prescription Supplies, Inc.\",Y4000\nCONSTRUCTION,CITY ELECTRIC INC,JE300\nEducator,Trinity School,X3500\nLOOMIS & CO. INC.,,Y4000\nLOWE HAUPTMAN & BERNER L.L.P.,,K1000\nATTORNEY,\"HIGGS, FLETCHER & MACK\",K1000\nPresident,R & J FARMS,G1200\nDOMEGEAUX WRIGHT ATTYS.,,K1000\nC.P.A,\"CLARK, SCHAEFER, HACHETT & COMPANY\",F5100\nrealtor,wiechert Realties,F4200\nMathmatician,Self,Y4000\nFED DISTRICT COURT WASHINGTON DC,,X3200\nPRESIDENT,HARBOUR GROUP INDUSTRIES,M0000\nOrthopaedic Surgeon,Tulsa Bone and Joint Associate,H1130\nEMERGENCY PHY,ARROWHEAD REG MED CTR,H1100\nPARTNER,S3 PARTNERS LLC,Y4000\nTEVIS OIL,,E1170\nPRESIDENT OF MANUFACTURING,CLAYTON HOMES,B2400\nFARM FRESH INC,,A2000\nVice President,\"Southeast Staffing, Inc.\",B0500\nContractor,\"Batchelor's Mechanical Contrs.\",B0500\nBOTSFORD GEN HOSP,,H1130\nATTORNEY,\"LAX, VAUGHN, FONTSON, ET AL\",K1000\nUltrasound Tech,un Employed,Y1000\nDirector-Public Relations,FLA-U.S.A.,Y4000\nFIRST GENERAL CU,,F1300\nATTOR,\"MORGAN & MACY, ATTORNEYS LTD.\",K1100\nEJBI ENERGY CO,,Y4000\nARTISTIC PRINTING,,C1300\nLINN COUNTY BANK,,F1000\nPRESIDENT/CEO,ARI INTERNATIONAL/PRESIDENT/CEO,Y4000\nInvestment Banker,First MidAmerica Investments,Y4000\nINFORMATION REQUESTE,INFORMATION REQUESTED,LC100\nInformation Requeste,Geoscience Engineering,B4400\nBLUEWATER STRATEGIES LLC/ATTORNEY/C,,K2000\nExecutive,Chinman Group LLC,F4000\nPresident,Baumgarten Dist.,Y4000\nRAPID PRECISION MOLD,,Y4000\nSELF EMPLOYED,SELF,B1000\nOWNER,CLARKE WOOD FLOORS INC.,Y4000\nExecutive TopStrat&BusDevLd,Pfizer Inc,H4300\nTREASURER,PROTECT NM,Y4000\nDASCO HOME MEDICAL EQUIPMENT,,H4100\nCHAIRMAN,FEDERAL EXPRESS,T7100\nTEAC,HADDONFIELD BOARD OF EDUCATION,X3500\nCounsel,Northeast Utilities,E1620\nSUTTER INSURANCE,,F3100\nAttorney,Smith & Ballard,K2000\nPRESIDENT OF RESEARC,SCRIPPS CLINIC,H1100\nMember,NYMEP,Y4000\nComputer Scientist,Gestalt LLC,Z9500\nFRENCH COMPANIES,,Y4000\nVP,SOUTHWESTERN ENERGY COMPANY,E1120\nGERGEL NICKLES & SOLOMON P A,,K1000\nPRESIDENT,CREATIVE COMMUNICATIONS INC,K2000\nGENERAL DYNAMICS ELECTRONICS,,D5000\nManufacturing Agent,Self,G0000\nEXECUTIVE,FANNIE-MAE,F4600\nATTORNEY,WILES LAW FIRM,K1000\nFINANCIAL ADVISOR,MERRILL LYNCH,J7500\nPARTNER,SC PARTNERS LLC,K2000\nExecutive,American Marketing & Management,F4100\nUNION DRY DOCK,,T6100\nAttorney,Newman and Associates,Z9500\nPresident,\"The Wolf Organization, Inc\",G4500\nBAIL BONDSMAN,HOUSTON BAIL BONDS,G5000\nREQUESTED,DWG DEVELOPMENT,Y4000\nMeat Supplier,You Grill Steaks,G2300\n\"GORDON, FEINBLATT, ROTHMAN\",,J5100\nAttorney,\"Geisleman & Brown, LLP\",K1000\nATTORNEY,AXE & ECKLUND,Y4000\nCEO,\"STERLING MANAGEMENT GROUP, INC.\",Y4000\nMANAGER,WELDON MATERIALS,Y4000\nPRESIDENT,DAN A. HUGHES COMPANY L.P.,E1120\nManaging Director,Cross Atlantic Capital Partners,F2500\nAttorney,Cox Smith Matthews I,K1200\nprincipal,Purcell Public Affairs,J1200\nCOMMUNITY VOLUNTEER,HOMEMAKER,F4000\nArchitect,EGA PC,Y4000\nSALES,GARRITY EQUIPMENT CO.,Y4000\nFRENCH AMERICAN FOUNDATION,,X4100\nBiotech,Information Requested,C1100\nMACY RANCHES,,Y4000\nWOODCREST ENTERPRISES,,J1100\nL A WROTEN CO INC,,G1100\nATTORNEY,\"PETER D KASDIN, LTD.\",Y4000\nPRESIDENT,MOBILE SATELLITE VENTURES,C4400\nHUMAN SERVICES,TACOMA COMMUNITY HOUSE,Y4000\nINSURANCE EXECUTIVE,A J GALLAGHER,F3100\n\"WOOLSEY, FISCHER ETC\",,K1000\nJUDGE,DENTON COUNTY,J1100\nPRESTON BUSINESS CONSULT,,Y4000\nSelf employed,Automotive Financial Ser,F0000\nACDI/VOCA/EDITOR,,Y4000\nCLER INC,,Y4000\nSoftware Engineer,\"Rearden Commerce, Inc\",Y4000\nOTS CORPORATION,,J5100\nPHYSICIAN,COLORADO ALLERGY AND ASTHMA CENTERS PC,Y4000\nINVESTMENT BANKER,FIRTREE PARTNERS,G5270\nCAFE PACIFIC INC,,G2900\nRESTAURANT OWNER,ALMOND LLC,Y4000\n\"DIRECTOR, TECH. COMMERCIALIZATION\",UNIVERSITY OF MAINE,H5100\nConsultant,Baker & Hostetler LLP,K1000\nDEPUTY GENERA,U.S. DEPT OF INTERIOR,X3000\nConsultant,Fmcg,Y4000\nFLOORS BY DESIGN,,Y4000\nGENEOLOGIST,SELF,G5000\nSENIOR VICE PRESIDENT,SCHAEFER PRESENT INVESTMENT GROUP,F7000\nKEVIN P MARTIN & ASSOCIATES,,F5100\nS J KING AGENCY,,J7400\nExecutive,Hallmark,C1400\nCEO,\"JMI Services, Inc.\",Y4000\nPOLITICAL CON,HOOPER OWEN & WINBURN,K2000\nFARQUHARSON ENTERPRISES,,Y4000\nRESTAURANT OWNER,TASTE OF PORTIGUAL,Y4000\nMANAGING MEMBER,W.C. DOVER FARM LLC,Y4000\nTitle Officer,TRIDENT ABSTRACT COMPANY,F4300\nVICE PRESIDENT,MED-CARE DIABETIC & MEDICAL SU,Y4000\nCHANTICLEER FILMS,,Z4200\nRegistered Nurse,U S Army,X5000\nBUSINESS OWNER,PV ESTATE SALES,Y4000\nPRESIDENT,SUNFLOWER ADULT DAYCARE,Y4000\nCHATT ANESTHESIOLOGY SERVICES INC,,H1100\nPresident,NORTH AMERICAN PROPERTIES,F4000\nMALARKEY ROOFING,,B3000\nRIBLING WELLS & GAY,,Y4000\nCU EMPLOYEE,SAN ANTONIO FCU,F1300\nGROEN LAVESON GOLDBERG,,J5100\nPresident,Family Home Providers,Y4000\nLawyer,City Of Hayward,X3000\nVP,IL COLLECTION SERVICE INC,F5200\nFINANCIAL SERVICES,SELF-EMPLOYED,F5000\nVP OF COPORATE PLANNING AND STRATEGIC,BCBS OF SC,F3200\nHOPS MERCHANT & BREWERY,WORTHY BREWING AND INDIE HOPS,Y4000\nGROUP SALES,WILSON AUTOMOTIVE,T2000\nEXEC,MGM GRAND,G6500\nInvestment Manager,Credit Renaissance Partners,F2100\nD ENTERPRISES,,H1500\nOwner,Herrin Gear Auto Plex,Y4000\nHomemaker,Self,D5000\nChairman,Federal Trade Commission,X3000\nVALLEY PONTIAC/BUICK/GMC,,T2300\nCHAIRMAN OF THE BOARD,TOLD CORPORATION/CHAIRMAN OF THE BO,F4000\nSOUTHERN AG CARRIER,,A1600\nExec,Bradley Group,Y4000\nDAYTON CHILDRENS HOSPIT,,Y4000\nMathematics,Us Govt,X3000\nOWNER,PIONEER OVERHEAD DOOR,Y4000\n\"VICE PRESIDENT, WINE SALES\",\"CENTRAL DISTRIBUTORS, INC.\",G2850\nPHYSICIAN,METROPOLITIAN ANESTHESIA NETWORK,H1130\nAccount Manager,DMS Clinton INC,Y4000\nSR ACCOUNT EXECUT,ANTHEM BLUE CROSS,F3200\nLawyer,\"Berry,Kagan,& Sahradnik, P.A.\",K1000\nNurse,\"St. Mary's Hospital\",H2100\nENTERTAINMENT EXECUTIVE,FELD ENTERTAINMENT,C2900\nLOVENSTEEN SANDLER KOHL FIS,,K1000\nOFFICE MANAGER,COX BROTHERS FARMS,A1000\nDIRECTO,WORKFORCE DISTANCE LEARNING,Y4000\nGOVERNORS STAFF,STATE OF ALABAMA,X3000\nExecutive Director,\"Barnhart, Inc\",B4000\nMCCARTY ENTERPRISES,,Y4000\nWESTERN ENGINEERING CONTRACTORS INC,,B4400\nDON BARATO FURNITURE,,G4400\nInformation requeste,Information requested,B5200\nAttorney,Stoll Berne,K1000\nProduct Manager,BEA Systems,C5120\nComposer,JCB Music,C2600\nATTORNEY,KRUPNICK CAMPBELL,Y4000\nVP-BusDevelopment,Self employed,G5200\nA I ROOOT CO,,Y4000\nATTORNEY,CME,F2200\nORAL & MAXILLOFACIAL SURGEON,ROBERT G. ALLEN DDS,Y4000\nKETCHAM OLDS,,T2300\nOwner,Air America & Air America Academy,Y4000\nHospital Administrator,Advocate Health Care,H2100\nPresident & CEO,Univision Television Network,C2300\nPART-TIME SALES,THE CONTAINERY,Y4000\nOwner,Neapolitan,Y4000\nREAL ESTATE,HILLS DEVELOPING ASSOC,F4100\nElectronic Engineer,\"Telenetics, Inc.\",Y4000\nALLAN KANNER & ASSOCIATES PLLC,,K1000\nLAW STUDENT,ST. JOHNS UNIVERSITY,Y1000\nMANAGI,\"GOLDMAN SACHS GROUP, MERCHAN\",F2300\nENROLLED AGENT,TO THE PENNY,F5300\nSENIOR S,\"CASTLE COMMUNICATIONS, INC\",Y4000\nMIDLANDS CHOICE,,H0000\nEJ KENDRICK CO,,Y4000\nBusinessman,\"Tripp Distributors, Inc.\",Y4000\nFinancial Services Executive,Wells Fargo,F1100\n\"Turner Executive Search Associates,\",,Y4000\nWEB/MEDIA - GREEN BUILDING WEB SITE,RATE IT GREEN (WWW.RATEITGREEN.COM) -,Z9500\nPHYSICIAN,\"MAURICE NDUKWU, PC\",Y4000\nLOBBYIST,MALADY & WOOTEN PUBLIC AFFAIRS,K2000\nINSURANCE BROKER,INSURANCE BROKER,F3100\nMANAGEMENT,\"TY KU, LLC\",Y4000\nPUBLIC SCHOOL RN,MUKILTEO SCHOOL DISTRICT,X3500\nSTEELCASE FOUNDATION,,J7400\nBuilder,Trades Construction Services Corp,B1500\nMedical Administrator,Mercy Medical Center,H2100\nVP SERVICE EX,MERCY HEALTH PARTNERS,H0000\nFARMER,SWEDBERG ENT INC,Y4000\nSUFFOLK COMMUNITY COLLEGE,,H5100\nSTARKER FOREST INC,,A5000\nEPIDEMICLOGIC CONSULTANT,,H1130\nComputer Administrator,\"University of Utah, Cmes\",H5100\nMANAGER,CUMBERLAND DEVELOPMENT/MANAGER,E1210\nDENTIST,DEEP RIVER DENTAL,H1400\nXEROX/PRESIDENT/CEO,,M4200\nRN,TM HOSPITAL HHC,H2100\n245 REALTY LLC PARTNERSHIP,,F4200\nNurse Practitioner,Hennepin County,X3000\nCEO,GULF COAST SHIPYARD GROUP,Y4000\nGVP Transm NE,Spectra Energy CO,E1140\nFARMERS,SELF/FARMERS,A1000\nLibrarian,NYU School of Law,H5170\nSW DAY CONSTRUCTION,,B0500\nPRESIDENT,GET A ROOM,J5100\nDIRECTOR,CATAPULT LEARNING,H5100\nNCAB,,Y4000\nEnv. Monitoring Consultan,Data Management & Research,Y4000\nPRESI,\"MUHAMMED ALI ENTERPRISES, LLC\",Y4000\nPROFESSOR,UNIVERSITY OF NEBRASKA/PROFESSOR,H5100\nMortgage Banking-Cha,James B. Nutter & Company,J7400\nREACH COMPANY,,Y4000\nPRESIDENT,ESSROC CEMENT CORP.,B5100\nPODIATRIST,,J5100\nDept of Navy Civil Servant,Department of Defense,X5000\nFRANCHIS,UNITED PARCEL SERVICE INC.,T7100\nCHIEF EXECUTIVE OFFICER,MOLINA HEALTHCARE,Z9500\nAttorney,\"The Scruggs Law Firm, P.A.\",K1100\nATTORNEY,FULTON BOARD OF EDUCATIO,X3500\nRetired,\"NA, retired\",J1100\nComputers,Self,C5100\nPRESIDENT,CAMP HILL CORPORATION,Y4000\nPet Sitter,Bloomington Pet Pals,Y4000\nORTHOPAEDIC SURGEON,SIERRA ORTHOPAEDICS PC,H1130\nPRESIDENT,THE TIMKEN FOUNDATION,M5000\nAttorney,\"Sherman Associates, Inc\",Y4000\nHOMANS MCGRAW TRULL VALEO & CO,,K1000\nEXEMPT ORGANIZATIONS SPECIALIST,IRS,X3000\nFLECK LAW FIRM,,K1000\nLAWYER,CYBB&S,K1000\nCalifornia Stem Cell,,Y4000\nOwner,Machine Drywall North,B3000\nTraining & Consulting,\"Richard Tyler International, I\",Y4000\nARCHITECT,THE PARISKY GROUP,Y4000\nBUILDER,IHSS,Y4000\nKENTUCKY ELECTRICAL STEEL,,M2100\nPRESIDENT,ODYSSEY ENTERPRISES,Y4000\nVICE PRESIDENT,\"CTS, INC.\",Y4000\nATTORNEY,BERGER & BERGER,K1000\nOwner,Mount Construction,B1500\nAssistant Buisness Agent,Affiliated Property Craftspe,Y4000\nOwner,J. A Garcia,Y4000\nCARDIOTHORASIC & VASCULAR GROUP,,H1130\nPresident,Sunfair Chevrolet Mazda Isuzu,T2300\nEXECUTIVE,EGC CORPORATION,B2000\nSAMSOL-BILMA HOMES INC,,Y4000\nOPERATIONS,BAYER,H4300\nSales,Sunshine,J1200\nRIVERCREST MORTGAGE,,F4600\nABC ENTERTAINMENT CENTER,,Y4000\nBookkeeper,Victoria Drug,Y4000\nANESTHESIOLOGIST,ANES ASSOC,H1130\nINSURANCE AGENT CITRUS GROWER,SELF-EMPLOYED,Y4000\nConsultant,Thomas Vietor,Y4000\n\"GOV'T RELATIONS\",GEPHARDT GROUP,K2000\nMAGICIAN,SELF-EMPLOYED/MAGICIAN,G5000\nSocial Insurance Special,Social Security Administ,X3000\nAISTANT MIRROR,,M7200\nProgrammer,Rice University,H5100\nPresident,First Gaston Bank,F1200\nDOMINOS PIZZA TEAM WASHINGTON,,J1100\nPRESIDENT GOLF COURSE PRO,PGA TOUR,G6400\nVice President,B P Newman Investment Company,F7000\nAttorney,Legal Aide,K1000\nWOODMONT DEVELOPMENT CORPORATION,,B2000\nProperty Management,J.E.M.S. Corp.,Y4000\nPHYSI,CORDOVA ORTHOPEDIC ASSOCIATES,H1130\nSoftware Architect,Infosys Technologies Ltd,C5120\nPartner,The Casto Corporation,Y4000\nPARALEGAL AND LAW LIBRARIAN,\"ELIAS, MATZ, TIERNAN & HERRICK LLP\",Z9500\nN S A,DEPT OF DEFENSE,X5000\nGLASNER & SHEEHAN,,Y4000\n\"STONE, GRANADE, CROSBY, P.C.\",,K1000\nPRESIDENT & CEO,SOUTH HEART ENERGY DEVELOPMENT,E1210\nSALES,CAPIS,Y4000\nFARMER MACHINERY SALES,,A4200\nINDIAN ASSOC REHAB FAC,,Y4000\nCONSTRUCTION EXECUTIVE,CLANCY & THEYS CONSTRUCTION COMPANY,Z9500\nCHAIRMAN,STEIN MART,G4300\nAttorney,Trident Seafoods,G2350\nEXECUTIVE,LAWRENCE ENTERPRISES/EXECUTIVE,Y4000\nBanker,Babcock & Brown,J1200\nRN BSN,,Y4000\nAttorney,Risbois Bisgaard & Smith LLP,K1000\nVINCE GARY GREEN,,Y4000\nOWNER,JOHNSON LUBE CENTER,Y4000\n\"D'MELVENY & MYERS\",,Y4000\nVISUAL ARTIST,SELF-EMPLOYED,F2100\nMETCOR INC,,G5270\nADMINISTRATIVE ASSITANT,U. T. HEALTH SCIENCE CENTER,H5150\nMANAGER COMMUNITY RELATIONS & B,COCA-COLA ENTERPRISES INC,G2700\nDIRECTOR OF UNION RE,HOME LOAN BANK,F4600\nPRESIDENT,AVALON HEALTH CARE INC,Y4000\n\"VICE PRESIDENT, OPERATIONS\",NGR RESIDENTIAL SOLAR SOLUTIONS LLC,Y4000\nSENIOR MANAGING DIRECTOR,\"AMHERST SECURITIES GROUP, LLP\",F4600\nPRODUCER,FOREST,Y4000\nVice President,Utah Central Railway,T5100\nOwner,Green Ford,T2300\nATTO,ALLEN BOONE HUMPHRIES ROBINSON,Y4000\nOWNER,IND-COM BUILDERS,Y4000\nCEO,CONTRACTOR MANAGEMENT SERVICES,Y4000\nTUCKER SADLER ASSOC,,Y4000\nPHYSICIAN,SOUTHWEST EMERGENCY ASSOCIATES,Y4000\nASPHALT PAVING CO,,B5100\nHEALTH CARE PRO,LA FERMINENTE GROUP,Y4000\nAttorney,Thomson Rhodes and Cowie,K1000\nbusiness owner,P&B Fabrics,J5100\nINVETMENTS,ALTERNATIVE INVESTMENT MGMT/INVETME,F2100\nMEHL GRIFFIN & BARTEK LTD,,Y4000\nCONTRACTOR,PACIFIC PROPERTIES SERVICE,F4000\nFORTIS ADVISOR,,Y4000\nLIER SIEGLER,,D2000\nCEO,National Distributing Co,G2850\nPRESIDENT & CEO,CORELOGIC,F4600\nCONTROLLER,AMKOR INC.,Y4000\nPHARMACIST,US FOOD AND DRUG ADMINISTRATION,X3000\nBITONTI DEVELOPMENT/ATTORNEY/REAL E,,F4100\nREGIONAL ADMINISTRATOR,US DEPT. OF HOUSING AND URBAN DEVELOPM,X3000\nPartner,\"Nease, Lagana, & Eden, Inc.\",Y4000\nBARDEN COMPANIES,,B3400\nWinemaker,Self-employed: Knox Barrels,G2820\nLAWYER,COVINGTON &AMP; BURLING,Y4000\nACTIVE-EMP,HORMEL FOODS CORPORATION,G2300\nNYU HOSPITAL CENTER,,H2100\nMUELLER PIPELINES,,B1000\nE V THAW & CO,,J1200\nPayroll Coordinator,BP-Arco,Y4000\nVice President  HRMS,Cablevision Systems Coporation,C2200\nGEN-TEL,,Y4000\nPROFESSOR,585 5860831,Y4000\nCEO,\"Saiia Construction, LLC\",B1500\nPrivate School Administr,The Hewitt School,H5100\nCENTRAL GRAIN HAUKERS,,Y4000\nphysicians,self-employed,H1100\nEVP,EMPIRE MERCHANTS NORTH,G2850\nINVESTMENT MANAGEMENT,\"TENNENBAUM CAPITAL PARTNERS, LLC\",F2600\nPRESIDENT,AMERIPRO FUNDING INC.,F4600\nPRESIDENT,\"WORLDWIDE CAPITAL, INC.\",J7120\nExec,Ketchum,G5210\nMORNING SHOW HOST,CLEARCHANNEL COMMUNICATIONS,C2100\nPresident,E-Cycle,Y4000\nFL DISTRICT 20 CANDIDATE,SELF,Y4000\nAttorney,\"Fischbein, Badillo, Wagner & Hardi\",K1000\nOWNER,\"EAGLIN'S TAX SERVICE\",Y4000\nP SCHOENFELD ASSET MGMT,,Y4000\nEnvironmental Engine,U.S. EPA,X3000\nJB HENDERSON CONSTRUCTION,,B1500\nPHARMACIST,KEY PHARMACY,H1750\nPRESIDENT,A PLUS VIRTUAL ASSISTANT INC.,Y4000\n\"HEISKELL, DONELSON, BEARM\",,Y4000\nRefuse Collection Su,City & County of Honollulu,X3000\nATTORNEY,\"SEATTLE CHILDREN'S HOSPITAL/ATTORNE\",H2100\nDIRECTOR OF GOVERNMENT AFFAIRS,NRDC,JE300\nSI CONCRETE SYSTEMS/V.P./GEN. MGR.,,B5100\nVice President,Plain All American Pipeline,E1150\nSales,American Paper & Plastic,A5200\nWorker,Rayovac,M2300\n\"WILKES, ARTIS, HEDRICK & LANE\",,Y4000\nPRESIDENT,R. J. CORMAN RAILROAD,T5100\nINFORMATION REQUESTED PER BEST EFFORTS,SAN FRANCISCO PORT COMMISSIONER,Y4000\nGovt. Employee,Chambers County Texas,X3000\nPHYSICIAN,UNIVERSITY OF NORTH CAROLINA,H1130\nVET,ALAMO PINTADO EQUINE CLINIC,Y4000\nSelf-employed,Ken Dulgarian Real Estate,F4000\nATTORNEY,\"SUK LAW FIRM, LTD\",K1000\nINVESTMENT,ROYAL CAPITAL MANAGEMENT,F0000\nAttorney,\"Sullivan & Cromwell, LLP\",J1100\nmedia consultant,Roger R Smith & CO Inc,Y4000\nMACHINEST,SELF-EMPLOYED,G0000\nInvestor-Oil & Natural Gas,Self,E1100\nSMALL BUSINESS OWNER,BURNINGTREE COUNTRY CLUB,Y4000\nENGINEER,R.M. TOWILL CORP,B4000\nOwner,Jackie Brand Jr./css Drywall Inc.,B3000\nDIRECTOR ESH Q,SPACE GATEWAY SUPPOR,Y4000\nSELF EMP TRUCKING BUSINESS,,Y4000\nIT TECHNICIAN,GENERAL STAFFING,G5250\nROBERT C BATES,,Y4000\nHematologist-Oncology,UPMC,H1100\nDIRECTOR,ITT EDUCATIONAL SERVICES INC,Z9500\nBUSINESS C,SYMACTION COMMUNICATIONS,Y4000\nSEAFOOD WHOLE SALER,GREG ABRAMS SEAFOOD,G2350\nLEIBSOHN & COMPANY,,Y4000\nCHAIRMAN & CEO,THE BERKSHIRE GROUP,Z9500\nACURA,\"HINSHAW'S HONDA\",T2310\nRetired,Nelson-Harding Law Firm,K1000\nEXECUTIVE,LEXICON INC.,B4000\nURANGA & ASSOC,,J9000\nOWNER,ST. SUPERY,Y4000\nUNIVERSITY OF VIRGINIA LAW SCHOOL,,H5170\nPRINCIPAL,WHITTEN & DIAMOND,K2000\nCLEARFIELD COUNTY,,X3000\nClient Manager,State of New Jersey,X3000\nPrincipal,The Koenig Group,Y4000\nCOMPUTER SOFTWARE,DRBSYSTEMS INC/COMPUTER SOFTWARE,Y4000\nCITY AND COUNTY OF DENVER,,X3000\nNEAL GERBER AND EISENBERG LLP,,K1000\nGREENWICH AIR SERVICES,,T1600\nAttorney,Roeca Louie Hiraoka,K1000\nREUTHER MOLD AND MNF,,Y4000\nMANAGER,AIU,Y4000\nHomemaker,Self employed,F2700\nPROJECT DIRECTOR,\"COVANCE, INC.\",H4500\nMATTA SHEA & BLANCATO,,J1200\nUNICAPITAL SECURITIES,,F2100\nPROGRAMMER,HONEYWELL,M2300\nLa Huerta Grocery St,Self-Employed,G0000\nSKEETERS BENNETT,,Y4000\nPHYSICIAN,PARADISE MEDICAL GROUP,H1100\nCENTRAL CONFINEMENT SYSTEMS,,A3000\nCOMMUNITY VOLUNTEER,CASA OF MCHENRY COUNTY,Y4000\nN H EDITIONS,,C1100\nPresident & CEO,Manchester Bidwell Corporation,Y4000\nATTORNEY,\"CENTURY INSURANCE CO., LTD.\",Z9500\nGREENBRIER CLINIC,,H1100\nCO-OWNER,LEE BRANT JEWELERS,G4600\nOAKLAND VALVE & FITTING CO,,M5000\nResearch Associate,Stanford University,H5100\nAUTO DEALER,DAVID AUTO GROUP,Y4000\nHEALT,VALLEY ANESTHESIA CONSULTANTS,H1130\nExecutive Director,CC Chamber of Commerce,G1100\nPhysician,Ft Collins Women Clinic,Y4000\nBELLEORE,,C4000\nATTORNEY,\"BARRIS, SOTT, DENN & DRIKER\",Z9500\nPRESIDEN,MAZANDER ENGINEERED EQUIP.,B4400\nEvp/Retail Executive,Macys Inc,G4300\nDIRECTOR OF GOVT RELATI,DUKE ENERGY,E1620\nConstruction Manager,Bechtel,Y4000\nEXECUTIVE ASSISTANT,WESTDALE ASSET MANAGEMENT,Y4000\nUNITED EQUIPMENT RENTALS,,Y4000\nCHIEF OPERATIONS OFFICER,\"GEP ADMINISTRATIVE SERVICES, INC.\",G5270\nDIRECTOR,SEIU 775NW,Y4000\nALBANY AUTO AUCTION,,T2300\nExecutive Vice President,Jaynes Corporation,B1000\nCourt Commissioner,Usually Pretty Good,Y4000\nPRESIDENT,COMMUNITY RESOURCE,Y4000\nELTON GALLEGLY CD23,,J1100\nMS POLYMER TECHNOLOGIES INC,,Y4000\nPresident,\"FASTSIGNS of Westport, MO\",G1000\nProgramming Manager,Insight Communications,C2300\nINFORMATION REQUESTED,MGUIRE WOODS,Y4000\nARCJITECT,,Y4000\nCEO,JUDDS BROTHERS CONST CO,B1500\nCULINARY CONSULTANT,,G5200\nCYBERSTAR,,Y4000\nSELF,CATERER,J7400\nsenior advisor,NAPCS,Y4000\nPresident and Chief,Baptist Hospital of East Tennessee,H2100\nsr VP/Investments,Wachovia Securities,F2100\nowner,Penos Enterprises,Y4000\nROSE MEDICAL CENTER,,H0000\nOwner,\"Jacksonville Jaguars, Ltd\",G6400\nAGNEW & BENNETT,,K1000\nSALES AND MARKETING,,J1100\nOwner,\"Mid-America Advertising Midwest, Inc\",G5210\nATTORNEY,TRENTALANGE & KELLEY,K1000\nPROVIDENT ADV & MKT,,G5210\nPsychotherapist,\"Key Program-Children's Charter\",Y4000\nEXECUTIVE VP,CHECK N GO,F1420\nEnthusiastic College Grad/ Job Seeker,Unemployed,Y1000\nAttorney,Rusiman Peirez & Rusiman,K1000\nPRESIDENT,MIDWEST WIND ENERGY LLC,E1500\nS LICHENTENBERG & CO,,M8000\nAttorney,Garcia Law Firm PC,K1000\nReal Estate Broker,Ellison Realty Group,F4200\nD & H DISTRIBUTORS,,J5100\nEngineering Consulta,K.R. Saline and Associates,Y4000\nPRESIDENT,COLORADO BLVD. MOTORS,T2300\nPhilanthropist/Activist,Self-Employed,X4000\nCHEIF OF STAFF,CITY OF MINNEAPOLIS,X3000\nBroker/Realitor,Self,Y4000\nRESEARCHER,MAXWELL AIR FORCE BASE,X5000\nIDANT,,Y4000\nScheduler,Jacobs Engineering,Z9500\nCEO,WATERS CORPORATION,M9000\nOperating Engineer,\"K.C. Excavating, Inc.\",B3600\nAttorney,Weiler Arnow Mgt. Co.,F4000\nFUNERAL DIRECTOR,SEALE FH,G5400\nSUPER LUBE,,Y4000\nREAL ESTATE CAPITAL MARKETS,SIMON PROPERTY GROUP,F4100\nSenior Vice President,First Fdral Save Bank of Midw,F1200\nKAMBER MGMT,,F4200\nKELLER ENTERPRISES INC,,M4000\nCRT Reporter,Self,G0000\nMutual Fund Director,Self employed,Y4000\nCIVILIAN EMPLOYEE,IRS,X3000\nOwner,Corp Capital,F0000\nOWNER,SHRED-IT/OWNER,Y4000\nMANAGING ATTORNEY,THE SINGH LAW FIRM,K1000\nWEISS CONSTRUCTION CO,,B1500\nOWNER,\"JENSEN'S SUPPER CLUB\",G2900\nPRESIDENT,HRBFA,F5300\nAAUW,,J7400\nCEO,Gudenknauf Corp,Y4000\nPhysician,Advanced Clinical Therapeutics Inc,H1130\nWEBER ENERGY CORP,,Y4000\nProfessor,Duke Unv,Z9500\nQUICK CASH,,F5500\nSURVEY OPERATIONS,DMDC,Y4000\nSALES MANAGER,D&S COMMUNICATIONS,Y4000\nDIRECTOR,MASS MEP,Y4000\nCLINICAL SUPERVISOR,THOMAS JEFFERSON UNIVERSITY-NARP,H5100\nINVESTOR,\"GUIDE CAPITAL, L.L.C.\",F0000\nASSOCI,ALL AMERICAN CONTAINERS INC.,J5200\nSMITH AND BARNEY,,F2100\nOWNER,CALDERON GROUP,Y4000\nFISHER COMPANIES INC,,Y4000\nAttorney,Baker Potts,K1000\nTRANSPORTATION PLANNER,CITY OF SAN FRANCISCO,X3000\nMEXICAN VILLIAGE,,Y4000\nEXECUTIVE,STACEY BRAUN ASSOC.,J7500\nGeneral Secretary Tr,TCU/JPB 320,LT600\nPHYSICIAN,LUTHERAN MEDICAL GROUP,H1130\nRetired Lawyer,Self,X1200\nBANKER,TOWN AND COUNTRY BANK,F1000\nREAL ESTATE,GLADSTONE MGMT,F2100\nPRES,ORLEANS HOMES,B2000\nOwner,Spencer Products,Y4000\nConsultant,City of Austin,X3000\nALAN N BORUSZAK LTD,,H1100\nExecutive,OPOC,Y4000\nASSOC. TECHNOLOGIST,LORILLARD TOBACCO COMPANY,A1300\nOIL PRODU,CIRRUS PRODUCTION COMPANY,E1150\nengineer,Castle Engineering,B4400\nElectronics Manuf. S,Northrop Grumman,D5000\nGeneral Partner,Shah Management,Y4000\nUNIT MANAGER,NC DEPT OF COLLECTIONS,F5200\nPHYSICIAN,MI COLLEGE OF EMERGENCY PHYSICIANS,H1100\nPROJECT MANAGER,TRILLIUM CONSULTING,Z9500\nC.E.O.,S.P.G.I./C.E.O.,Y4000\nTrader,Timber Hill LLC,J1200\nGOLDTECH INCORPORATE,,M2300\nDIRECTOR-FE,AIRTOUCH COMMUNICATIONS,C4300\nSALES,\"CHRISTOFF MITCHELL PETROLEUM,\",E1100\nACCOUNTING EXEC,CORNERSTONE HOUSING,Y4000\nEXECUTIVE,MCLAREN MEDICAL CENTER,H0000\nSECURITIES,IMPALA ASSET MGMT,F2000\nGeneral Sales Manage,For Rent Magazine,F4500\nChief Operator,\"AICO International, Co\",Y4000\nINSURORS OF TENNESSEE,,Y4000\nAttorney,Surovell Jackson Col,K1000\nCITY OF BEND,,X3000\nBROOKHARTS LUMBER,,B5200\nVICTORIA L SMITH ATTORNEY-AT-LAW,,K1000\nPresident and CEO,DuPont Capitol Management Corporation,F2100\nLONESOME DOVE PETROLEUM,,J2100\nIntern,Iqnavigator,Y4000\nOTRAN,,Y4000\nVice President,Asset Alliance,F2700\nARCHITECT,SMC DESIGN STUDIO,Y4000\nExecutive,Southwest Electronic Eng. Corp,Y4000\nTEXAS A&M-CORPUS CHRISTI,,H5100\nEXECUTIVE,RUBACHEN SYSTEMS,Y4000\nOwner,Chris Becker & Associates Inc.,Y4000\nVICE PRES,TEXAS SOUTHERN UNIVERSITY,H5100\nCollege Professor,The Sage Colleges,H5100\nARTIST & ART DEALER,PHILLIPS GALLERY,Y4000\nBUSINE,NEWINFLRMATION PRESENTATIONS,Y4000\nISY PRODUCTIONS LLC,,J7400\nCPA,\"Foster Fleming & Co, PA\",F5100\nPresident & CEO,Native American Industrial Distrib,Y4000\nATTORNEY,\"BENDICH, STOBAUGH ET AL.\",Y4000\nSENIOR V,PUBLIC POLICY PARTNERS LLC,K2000\nEARTH CONSERVANCY,,F1100\nCORPORATE SENIOR DIRECTOR OF OPERATION,BRIGHT HOUSE NETWORKS,C2200\nVICE-PRESIDENT,EXPRESS SCRIPTS,H3000\nANTENNA RESEARCH ASSOCIATES,,G4200\nFINANCE DIRECTOR,HEWLETT PACKARD,C5100\nVice President Human,Whiting Petroleum Co,E1100\nREAL ESTATE/ART,SELF-EMPLOYED,F4200\nUrban design/Nurseryman,Self,B4000\nOWNER,OHE INDUSTRIES LLC,Y4000\nOwner,Master Works Machining Inc.,Y4000\nASPARAGUS GROWER,SKD FARMS,A1000\nSales and Marketing,Red Jacket Orchards,G0000\nMANAGING PARTNER,MACK COMPANIES,J5100\nSENIOR DIRECTOR,DIGITAL RIVER,Y4000\nPSYCHOLOGIST,CAMBIUM LEARNING GROUP,Y4000\nCEO,EQUIFAX INC.,F5200\nSUPERVISING ANIMATOR,PIXAR ANIMATION STUDIOS,C2400\nRN,MHMC,J7400\nJOHNSON DISTRIBUTING CO,,Y4000\nOWNER/OPERATOR RESIDENTIAL FACILITIES,SELF,G0000\nPRINTING,AVANTI,G5220\nMD,Eye Clinic of Mid-Florida,H1120\nBERMAN AND SIMMONS PA,,K1000\nINVESTORS,NONE,F7000\nFinancial services e,Citigroup Inc.,F1100\nCommondity Futures T,PK Trading Co.,A6000\nACADEMY MANUFACTURING,,J5100\nPhysician,Skinner Clinic,Y4000\nT.R.W./DEFENCE / CONTROLLER,,D3000\nNurse,St. Francis Medical,Y4000\nGLOBAL GEOCHEMISTRY CORP,,Y4000\nREAL ESTATE,TERRA ASSOCIATES,F4200\nWHITE HOUSE COUNCIL,,X3000\nLEGISLATIVE AS,SENATOR MEL MARTINEZ,Y4000\nSTEVENSON CONCRETE CONST CO INC,,B0500\nCHIEF EXECUTIVE OFFICER,AMERNAULT CORP.,Y4000\nNURSING HOME,WELLINGTON HEALTH CARE,H0000\nPrincipal,Constantinople & Vallone Consulting,Y4000\nInvestment Firm,Quadrangle Group,F2100\nROSELYNE C SWIG ARTSOURCE,,G4600\nAttorney,\"Daryl L Kidd, PC\",K1000\nInvestment Advisor,Kelmoore Investment Company,Y4000\nORTHOPAEDIC SURGEON,DEPT OF VETERANS AFFAIRS,H1130\nREFUSED,REFUSED,T1100\nEXECUTIVE,ROCKWELL AUTOMATION/EXECUTIVE,M2300\nFire Fighter/EMS,STEUBENVILLE FIRE DEPARTMENT,L1400\nTATE ACCESS FLOORS INC,,Y4000\nPARTNER,\"GREENE & REID, LLP\",K1000\nManager,Deutsche Bank,F1100\nREAL ESTATE INVESTOR,NORCA REDEVELOPMENT CORP.,Y4000\nBiotechnology Consultant,Self-employed,J7400\nOWNER,LOGAN & WHALEY CO.,M2300\nPRESIDENT,REINHART FOOD SERVICE,G2910\nAttorney,Forscey and Stinson,K1000\nBUSINESS EXECUTIVE,SOUTHGATE CORP/BUSINESS EXECUTIVE,F4100\nWeb Services,Self,Y4000\nCONCORD PET FOODS,,Y4000\nExecutive,Crown Properties,F4000\nSECURITY DIRECTOR,MELE ASSOCIATES,C5130\nSR. VICE PRESIDENT,MIAMI ASSOCIATION OF REALTORS,F4200\nPRESIDENT,INVACARE CORP.,H4100\nREAL ESTATE,CENTURY 21 MEEKS REALTY,F4200\nIOWA VALLEY COMM COLL,,Y4000\nCAMPAIGN INC,,Y4000\nPRESIDENT AND CH,INGRES CORPORATION,F2100\nGM,Hendrick Acura,Y4000\nCHIEF EXECUT,HIDDEN BEACH RECORDING,Y4000\n(Information Request,Davidson & Company Inc.,K2000\nManager,CAA,J1200\nVICE PRESIDENT,CITI FINANCIAL,F1100\nBusiness Owner,REQUESTED,Y4000\nPartner,Williams & Connolly,K1100\nPHYSICIAN,NEW WEST PHYSICIANS,J1200\nSELF,INSYGHT INTERACITVE,Y4000\nFinance Executive,AB Finance,Y4000\nStock Trader,\"Roomy Khan, Stock Trader\",Y4000\nHigh School Administrator,The Nora School,Y4000\nSURGEON,\"ST. BARNABAS HOSPITAL  BRONX, NY\",H2100\nExecutive Vice President,Bank of Stockton,F1100\nREAL ESTATE,LAURELWOOD,Y4000\nGOLDSMITH SALES CO,,A1300\nPRESIDE,YOUTH ADVOCATE PROGRAM INC.,JH100\nMEDICINE,RAM,Y4000\nExecutive,St Mary Medical Center,H2100\nInsurance Underwriter,Cromwell Management Corp,F3100\nASSET MANAGEMENT & CONSULTING,,F4500\nSENIOR VICE PRESIDENT,\"CAPITOL ASSOCIATES, INC.\",K2000\nSocial Scientist,\"USDA, Forest Service\",X3000\n\"Solimar Systems, Inc.\",,Y4000\nExecutive,Busher Blass,Y4000\nCONTRACTOR,C E CHRISTIAN AND SON CO,Y4000\nOWNER,\"BENNETT LAND COMPANY, INC\",Y4000\nManager,\"Jade Drug Comapny, Inc.\",Y4000\nCONTRACT FACILITATOR,THE ALTERNATIVE BOARD,Y4000\nANESTHESIOLOGIST,NORTHWEST ANESTH,H1130\nSTAFF,US HOUSE OF REPRESENATIVES,X3000\nMNH DEVELOPMENT,,Y4000\nDOCTOR,DENHAM CRAFTON II DMD,Y4000\nTHE JOHNSON GROUP,,C2300\nVARN WOOD PRODUCTS,,M1600\nMohave Community College,,H5100\nSALES,COMMACK PARTNERS,Y4000\nExecutive,SSM Health Care,H0000\nDAIRY QUEEN OWNER,,A2000\nAMERICAN B D COMPANY,,G2850\nMICROBIOLIGST,CORNELL MED SCHOOL,H5150\nCommericial Real Estate,CB Richard Ellis,F4000\nPRESIDENT,HARB ENGINEERING,B4400\nCHAIRMAN,PINSLEY RAILROAD COMPANY,Y4000\nREAL ESTATE INVESTOR,THE PNL COMPANIES,F4000\nContractor,\"JMC Contractors, Inc\",Y4000\nVice President,Fagan Chevrolet Cadillac Inc,T2300\nProfessor,u of Utah,J1200\nFINANCIAL SERVICESCOUN,,F1000\nEXPRESS MARINE,,J6200\nEitl,,Y4000\nRestaurant Owner,Mountain High Pizza,G2900\nREAL ESTATE,\"SIBCY CLINE, INC.\",F4200\nPartner/Attorney,Williams & Kherker Law Firm,K1100\nMOLEX INC.,EXECUTIVE,C5000\nTechnology Consultant,Capgemini,C5130\nCity Council,Glenarden,Y4000\nWINSTEOD,,K1000\nLIBERIAN COMMUNITY ASSOC,,J5000\nAttorney,\"Perry Southard, Attorney at Law\",K1000\nATTORNEY,BMS ATTORNEYS,K1000\nTEACHER,KAPIOLANI COMMUNITY COLLEGE,J1200\nEducator,Camford University,J1200\n\"America's Edge\",,Y4000\nManager,Associates in Ultrasound Med,Y4000\nGN. BUSINESS,NURSING HOME OPERATOR,H2200\nPresident,Lucking Consulting,Y4000\nStudent,Colorado State Univ,Y4000\nATTORNEY,\"MCLARTY * POPE FIRM, L.L.P.\",Z9500\nPHYSICIAN,JACOBI MEDICAL CENTER,H2000\nFort Smith Restauran,Self,G0000\nGENERAL MANAGER V,QUIK-TO-FIX FOODS,G2300\nARK COMMUNICATIONS INSTI,,Y4000\nPrincipal,Greenville County Schools,J7400\nn/a (retired),n/a (retired),Y2000\nSWEENEY METZ FOX,,Y4000\n\"AMERICAN INT'L PETROLEUM CORP\",,E1120\nBUSINESS OWNER,KRADJIAN IMPORTING,G3500\nC,BAKER DONELSON BEARMAN & CALDWELL,K1000\nAGENT,DEPARTMENT OF JUSTICE,X3200\nOWNER,HECKMANN AND THIEMANN MOTORS INC,Y4000\nNON-PROFIT DIRECTOR,USACTION,Z9500\nMANAGER,CANNON SERVICES LTD,J6200\nRESTAURANT MANAGEMENT,PROGRESSIVE RESTS,G2900\nREAL ESTATE EXECUTIVE,TRACTOR SUPPLY CO.,A4200\nGen Manager,Carson Valley/tahoe Self Storage,T7200\nPHYSICIAN,EASTERN STATE HOSPITAL,H1100\nUROLOGIST,UROLOGY RESEARCH OPTIONS,H1130\nTRUCKING EXE,J. GRADY RANDOLPH INC.,Y4000\nCHAIRMAN & C.E.O,BAR.S FOODS COMPANY,G2000\nCARMAN INC,,Y4000\nSHUFELT INDUSTRIES,,J1100\nPRESIDENT,SOUTHEAST LINEMAN TRAINING CENTER,G1200\nLaw Professor,Wake Forest University,H5100\nPRESIDENT,PARKER HOUSE SAUSAGE,G2300\nProfessor,University Of San Diego,H5100\nOwner,Pescara Homes,B2000\nSALES,\"CFM-SAN DIEGO, INC.\",Y4000\nRUNS FUND,,Y4000\nAGRI-BUSINESS,PRESTAGE FARMS,A1000\nCOORDINATOR,PARK SLOPE FUND,Y4000\nROBBINS RHODES AAL,,Y4000\nFarmer,\"Bornt & Sons, Inc\",Y4000\nCEO,\"Waffle House, Inc.\",J1100\nHUMAN RESOURCES,\"THINKEQUITY, LLC\",F2100\nWRITER,NONE - FREE LANCE,C1100\nOwner/President,Howley & Co,Y4000\nINVESTMENT BANKE,ULYSSES MANAGEMENT,G5200\nATTORNEY,MILLER VALENTINE GROUP,B4000\nPresident,Community Consulting Service,G5270\nNORTHERN PKG CO,,Y4000\nAssociate-Real Estate,C.B. RICHARD ELLIS,F4000\nSENIOR VICE PRESIDENT,KANSAS CITY POWER AND LIGHT,E1600\nPHYSICIAN,\"HEIDELBERG DERMATOLOGY, P.C.\",H1130\nPHYSICIAN,CDH,H1100\nSALES MANAGER,PITNEY BOWES,M4200\nKS NAT GAS,,E1140\nAGRI-BUSINESS,GILKEY FIVE,Y4000\nRETIRED,NONE,C4100\nStore Manager,Barnes and Noble,G4600\nASSISTANT DIRECTOR,\"INTERNATIONAL UNION, UAW\",LM150\nBRATTON & MCCLOW,,K1000\nPRESIDENT,INTEGRAPH SERVICE COMPANY,Y4000\nMANAGER,SRI INTERNATIONAL,G5200\nDUBOSAR & DAVIDSON,,Y4000\n\"KROL, BONGIORNO & GIVEN LTD\",,K1000\nPresident,CNL Retirement Properties; Inc.,F4100\nSELF-EMPLOYED,HARRISON MINI STORAGE/LINCH PROPERTIES,Y4000\nSTOCKHAM VALVES,,Y4000\nEngineer,Reeve & Associates Inc.,Y4000\nSCHWARTZ & ELLIS,,Y4000\nREAL ESTATE,HUNTER CHASE,Y4000\nMedical Technician,Mercy Regional Medical Center,H2100\nCEO,PHILADELPHIA MEDIA HOLDINGS,Y4000\n\"FOUNDER, PRESID\",UNITED ANALYTICAL SERVICE,Y4000\nPRESIDENT,HBK MANAGEMENT,Y4000\nVICE PRESIDENT - CLAIMS,ISLAND INSURANCE CO.,F3000\nPRESIDENT,CLY-DEL MFG.,J1100\nVICE PRESIDENT,HOULIHAN LOKEY/VICE PRESIDENT,F2300\nAGENT,NMFN,Y4000\nCORPORATE COMMUNICATIONS,\"ALTRIA GROUP, INC.\",A1300\nAttorney,Pillsbury & Levinson LLP,K1000\nPROJECT MANAGER,THOMSON REUTERS,C1100\nVP-FINANCIAL MANAGEMENT,BELL SOUTH,C4100\nPresident,\"Walker Company, The\",H2100\nKURZ & ROOT CO,,Y4000\nANESTHESIOLOGIST,PINNACLE PARTNERS/ANESTHESIOLOGIST,Y4000\n,COLODNY FOSS TALENFELD KARLINSKY &,K1000\nDESIGN STUDIO,POTTERY BARN,Y4000\nMERITAS YARN,,Y4000\n\"Director, Arkansas C\",Ark Administrative Office of the Court,X3200\nPresident- United States & Canada,ProLogis,F4100\nTENNIS CHANNEL,,C2100\nHOTEL AND RESTAURANT,SELF-EMPLOYED,T9100\nCH2M HILL HANFORD,,B4000\nDistributor,RI Distributing,G2900\nAssociate Director O,U Tx Southwestern Medical School,Y4000\nANESTHESIOLOGIST,ANESTH ASSOC OF MEDFORD,H1130\nTHAMES MOTOR COMPANY,,T2300\nEXECUTIVE DIRECTOR,COMMUNITY & FAMILY SERVICES IN,X4100\nPresident & COO,Educational Institute of AH&LA,T9100\n\"Vice President, Mark\",Meineke Car Care Centers,G1000\nBusiness Executive,Project WPC International 0016,Y4000\nPURCH,LEON MEDICAL CTR HEALTH PLANS,H1100\nExecutive,Smart  Bargains,Y4000\nGov Relations Consul,Sterling Strategic Services,K2000\nREALTOR,CBCR,Z9500\nSENIOR VICE PRES,WALBRIDGE ALDINGER,B1000\nATTORNEY,KEITH WEINER & ASSOCIATES,Y4000\nGAVEL INTERNATIONAL,,Y4000\nRegional Planner,NWARPC,Y4000\nINTERNATIONAL AEROSPA,SELF EMPLOYED,J1100\nPRESIDENT,VANCEY BROS.,E1200\nAVP Operations,Allstate,F3100\nPhotographer,RBA Imaging,Y4000\nManager,Golden Furrow Fertilizer,Y4000\nWriter,American Enterprise Institute,Y4000\nVP,RESERVE OIL & GAS,Y4000\nBUSIN,N.S. TAYLOR & ASSOCIATES INC.,Y4000\nExec Dir,Philadelphia Health Management Cor,Y4000\nPRESIDENT,WELLA MANUF. OF VIRGINIA,J7300\nEXEC,SOUTHWEST FLORIDA REGIONAL DEV,G1200\nVOLUNTEER,,G4900\nTRUCKING EXECUTI,\"C.R. ENGLAND, INC.\",T3100\nVICE PRESIDENT,\"R. & R. PRODUCTS, INC.\",M3600\nPresident,Complete Production Services,Y4000\nPatent Attorney,\"Testa, Hurwitz & Thibeault, LLP\",K1000\nEDITOR,HOUGHTON MIFFLIN HARCOURT,Y4000\nConsulting,Aon Consulting,G5250\nAttorney,NY State Office of Parks & Recreation,X3000\nSOFTWARE ENGINEER,KNOWLEDGEMENT MANAGE,Y4000\nOWNER,OGLE OIL & GAS OPERATIONS,E1120\nOwner,Hilltop Dental Lab,Y4000\nCHAIRMAN,ADLER GROUP INC.,F4100\nAGENT,THOMPSON CROP INSURANCE,F3400\nAIR NATIONAL GUARD,REQUESTED,X5000\nExecutive,Copa Casino,G6500\nPRESIDENT,BOISCLAIR ADVERTISING INC,G5210\nChairman,Gorman Rupp Co,M2300\nCOMMUNICATIONS CONSULTANT,GLOVER PARK GROUP,K2000\nAVIATION FACILITIES CO. INC.,,T1600\nDIRECTOR OF GOVERNMENT AFFAIRS,NBAA,Y4000\nLABORER,RCDOLNER LLC,LB100\nEGG DISTRIBUTOR,,Y4000\nPHYSICIAN ER FAMILY,SELF EMPLOYED,H1100\n\"AKIN, GUMP, STRAUSS, HAUE\",,K1000\nGovernment Relations Liaison,\"Cincinnati Children's Hospital Medical\",H2100\nCHIEF LEGAL OFFICER,MAYO CLINIC,H2100\nSTATE SEN,COMMONWEALTH PA,F1300\nCEO,\"TENGOINTERNET, INC.\",Y4000\nRetired,Goodwin Mgt Inc,Y4000\nDIRECTOR,JACKSON RECOVERY CTR.,Y4000\nPresident,Jerome Aluminum Products,M2250\nHEALTH EXECUTIVE,VNA HEALTHCARE,Y4000\nDeveloper,The Stonehenge Company,F4100\nPRESIDENT/OWNER,WILLIAMS ISLAND MARINA,T6000\nInformation Requested,Westside Finance Inc,F0000\nOral Surgeon,Utah Surgical Arts,H1400\nMARKETING,LINDBERG LICENSING,Y4000\nOWNER,DIVERSE ENERGY SYSTEMS,Y4000\nATTORNEY,\"ELI ROSENBAUM, LLC\",K1000\nSELF-EMPLOYED,RICK DAVSION DDS,H1400\nMedical Biller,Veterans Administration,X3000\nVICE-CHAIRMAN,\"ELIE TAHARI, LTD\",M3100\nCFO,\"AVALONBAY COMMUNITIES, INC.\",F4100\nTARRANT COUNTY,ATTORNEY,K1000\nDirector Of Aircr,Tuck Aviation Llc,Y4000\nFISKE & PHILLIP,,Y4000\nACCOUNTING & TAX SERVICE,,F5100\nMANAG,LOS ANGELES POLICE DEPARTMENT,X3200\nSONY/ATV MUSIC/EXECUTIVE,,Y4000\nCONSOLIDATED PROCESSORS OF CA,,Y4000\nOWNER,LEE ENTERPRISES,C2100\nALBEMARLE FARMS,,A0000\nFAIRLANE INVESTMENT ADVISORS,,Y4000\nPresident,Synergy Operating L L C,G1200\nPSYCHOTHERAPY,,J1100\nOFFICER,\"SMBC NIKKO SECURITIES AMERICA, INC.\",Y4000\nCORPORATE VICE,THE TRIBUNE COMPANY,C1100\nATTORNEY,MESEREAU & YU LLP/ATTORNEY,Y4000\nA B HIRSCHFELD PRES,,C1300\nPRESIDENT,THE FILA ACADAMEY,Y4000\n\"Camilliere, Cloud & Kennedy\",,K2000\nBUSINESSMAN,SIPRA INC,Y4000\n\"SVP, Refining\",LyondellBasell Industries,E1160\nINVESTMENT MANAGER,PALLADIUM,Y4000\nMID SOUTH TELECOMMUNICATIONS,,C4000\nPHYSICIAN,BALTIMORE VA HOSPITAL,H2100\nGuidance Counselor,East Side High School,X3500\nOwner,Hammond Construction,B1500\nCOLORADO SPRINGS/FIRE FIGHTER/EMS,,L1400\nbiz owner,Doc Popcorn,Z9500\nDIRECTOR,BRYAN CAVE STRATEGIES,K2000\nGWINNETT COUNTY BOE,,X3500\nINVESTMENT ADVISOR,EVERCORE PARTNERS,F2100\nGEORGETOWN LAW CENTER,,J1200\nSTAFFING BRANCH,ATA SERVICES,G5250\nROGERS & MUNNERLYN,,Y4000\nU.S. FOREIGN SERVICE OFFICER,US AGENCY FOR INTERNATIONAL DEVELOPMEN,J7400\nBUSINESSM,LUBRICATION ENGINEERS INC,J2200\n\"ADVEST, INC.\",,F2100\nHEINZ & ASSOCIATES INC,,F3100\nPRESIDENT-CEO,\"VIRTUAL WEB CONSULTANTS, INC.\",Y4000\nUNIVERSAL TURBIN PARTS INC,,Y4000\nATTORNEY,BOB MOSS & ASSOCIATES,K2000\nPresident,The Perennial Chef,Y4000\nINTERNATIONAL CONTRACTORS CLUB,,B6000\nReal Estate Develope,\"Stephens Center, Inc.\",F4000\nEXECUTIVE,KRITI PROPERTIES,F4000\nOwner Tcv Media,Self-employed,Y4000\nAsst General Manager,Arrowhead Pond,Y4000\nConsultant,LMT,Y4000\nReal Estate,MetroVest,F4000\nFILM AND VIDEO,SELF EMPLOYED,C2400\nTech,Accuray Inc,H4100\nINDEPENT & ABSTRACTS INC,,Y4000\nREAL ESTATE BROKER,COUZENS REAL ESTATE,F4000\nTHOMAS D CAMPBELL &,,Y4000\nGBIC,,Y4000\nWARNER BROS./REPRISE NASHVILLE/VICE,,C2400\nPOLICY MANAGEMENT INC,,Y4000\nConsultant,Remington Intl.,Y4000\nDUNCANSON & ASSOCIATES,,Y4000\nWIN-HOLT EQUIPMENT,,J5100\nBusinessman,Knight Group,Y4000\nNAUMAN COMMUNICATIONS IN,,Y4000\nJournalist,Los Angeles Times,J7400\nPRIVATE EQUITY,ENERGY SPECTRUM,E1100\nOWNER RETAIL STORE,,G4000\nV.P. Operations,CHC-Alliant,Y4000\nDEVELOPER,RIVER RANCH DEVELOPMENT,Y4000\nChief Admin. Officer,Deep South,F3400\nSD COUNTY FIREFIGHTERS,,X3000\nSales,Critical Impressions,Y4000\nDIRECTOR,SANTA FE CHILDRENS MUSEUM,X4200\nSERVEND,,B6000\nPsychologist,Toni Heineman,Y4000\nOwner,\"Hub City Industries, LLC\",E1150\nATTORNEY,BINGHAM MCCULCHEN,K1000\nGovernment Relations,Lawrence J Romans,K2000\nMANAGING DI,TRADESTATION SECURITIES,Y4000\nLobbyist,RTH Consulting,Y4000\nVice President Gener,Church & Dwight,M1300\nPAULE CAMAZINE & BLUMENTTHAL,,Y4000\nSenior Vice President Of Operations,Hewlett Packard,C5100\nCASH APPL SPEC.,AURORA H.C.,H2100\nChairman,Rouge Steel Company,M2100\nOwner,Speedread Technologies,Y4000\nPRESIDENT,MCMAHON FORD COMPANY,Z9500\nWASHINGTON TRANS. GROUP,,Y4000\nFINANCE MANAGER,CLASSIC CHEVROLET,T2300\nPHYSICIAN,CARE PRACTICE INC,Y4000\nARAG,,F3100\nAttorney,Esann Katsky Korins & Siger,K1000\nOWNER,CITY HALL THE RESTAURANT,G2900\nDoctor,UT,H1100\nPRESIDENT - CHIEF EXECUTIVE OFFICER,SOUTHERN FARM BUREAU GROUP,F3100\nPARTNER,\"ERWIN, GRAVES & ASSOCIATES\",J1100\nTEXAS MFG HOUSING ASC,,Y4000\nOREGON NATURAL RESOURCES COUNCIL,,JE300\nOWNER,\"TRIAD INDUSTRIES, INC.\",E2000\nphysician,kcaa,H1100\nCORPORATE & PUBLIC AFFAIRS,FLORIDA PARTNERS,K2000\nANESTHESIOLOGIST,\"SAINT JOSEPH LONDON, KY1 HOSPITAL\",H1130\nAttorney,Linowes and Blocher Llp,K1000\nManager,Rental Insurance Service,F3100\nManager of Governmen,American Frozen Food Institute,G2100\nFolk Artist/Parentin,Self employed,J1200\nOWNER - ROOFING CO.,RADIANT ROOFING LLC,Y4000\nVP INVESTOR RELTNS,ABBOTT LABORATORIES,H4300\nGeneral Partner,Heritage Partners,F2100\nPROFESSOR,UNIV OF WASHINGTON,H5150\n\"Vice President, IBSG\",\"Cisco Systems, Inc.\",C5110\nSALES DIRECTOR,\"MIRACA LIFE SCIENCES, INC.\",H3400\nJOE SENSENBRENNER,,Y4000\nPresident,Roundtrip LLC,Y4000\nCERIC FABRICATION/OWNER/PARTNER,,Y4000\n\"WENDY'S RESTAURANT OF ROCHESTER\",,G2900\nSr Nat Acf Mgr,Allicul Cedit Union,Y4000\nP,ILLINOIS HEALTH & SCIENCE ACADAMY,J7400\nPRESIDENT,I L IRRIGATION,Y4000\nPRESIDENT AND CEO,MORGAN MURPHY MEDIA/PRESIDENT AND C,C2100\nSALYER AMERICAN FRESH FOO,,Y4000\nPilot,Heritage Flight,Y4000\nSr VP,The Hartford,Y4000\nPresident,Kids Are Tops Sport Center,Y4000\nDESIGN,LINDSEY,Y4000\nDIRECTOR STRATEGY & POLICY CONSULTING,RAYTHEON COMPANY,D3000\nPHYSICIAN,AMSTERDAM COMM CANCER PRG,H1130\nVICE PRESIDENT-BUSIN,SUSSER PETROLEUM COMPANY L.P.,E1100\nVICE PRESID,M. & M. INDUSTRIES INC.,Y4000\nFUND MANAGER,GEORGETOWN PARTNERS LLC,F2600\nInvestments,WINGSPEED CAPITAL,F2500\nPresident,Runagra Co,Y4000\nConsultant,Baptist General Convention of Texas,T1400\nUFCW LOCAL 0919,,LG100\nEARTH DAY NEW YORK,,Y4000\nVENTURE MANAGEMENT INC,,Y4000\nVP,Van Seoyoc Association,K2000\nNurse,United Health Group,H3700\nCOA,Self-Employed,G0000\nDIRECTOR OF MARKETING,\"COBB-VANTRESS, INC.\",A2300\n\"MILHENCH, INC\",,Y4000\nSSA LONG BEACH,,Y4000\nPharmacist,Apria Healthcare,H3100\nMortgage Banker,BOK Mortgage Company,F4600\nPresident,Engineering Mining & Construction Corp,B1500\nVP OPERATIONS & ADMIN,BURNHAM INSTITUTE FOR MEDICAL RESEARCH,Y4000\nPINES VENTURE CAPITAL CORPORATION,,F0000\nPresident,Heller Development,Y4000\nFOUNDATION EXECUTIVE,CONTRAN CORP.,J7150\nRestaurant Owner,\"House Of Tricks, Inc\",Y4000\nCFO,2tor,Z9500\nMARLOTT CARPENTRY INC,,B3000\nVICE PRESIDENT,\"VAN DYNE CROTTY, INC.\",G4600\nHEALTHCARE,SOUND IMAGING SERVICES,Y4000\nDAYCARE OWNER,YARDLEY KIDS ACADEMY,Y4000\nMedical Child Pychiatrist,Self-Employed,Y4000\nAttorney,Quicken Loans,F1000\nAssioation Execution,Iall,Y4000\nBUSHMASTER FIREARMS,,M5300\nPARTNER,HARBOR MEDICAL IMAGING,H0000\nSUP GEN,AMERICAN TIRE DISTRIBUTORS,Z9500\nPERIODONTIST,SELF/PERIODONTIST,H1400\nPHYSICIST,DEPT. OF COMMERCE,X3000\nHOLLYWOOD CINEMA ART,,Y4000\nManager,\"Red Curtain Productions,\",Y4000\nTED SMITH & CO,,Y4000\nAMER FRIENDS OF SHEA,,Y4000\nMEDICAL SUPP,WESTERN MEDICAL SUPPLY,Y4000\nPHYSICIAN,UNM,H1100\nCEO,Ark Valley Electric Coop,E1610\nPAINTED PAGE,,J6100\nBusiness Executive,\"Telephone And Data Systems, Inc\",C4100\nINVESTOR RELATIONS,FIRST PACIFIC,Y4000\nWZAK FM,,C2100\nRAFFAELLE SPEES SPRINGER SMITH,,K2100\nCPA,LALLY GROUP PC,Y4000\nPRESIDENT,US CUBA DEMOCRACY PAC,Y4000\nArbitrator,Robert Castrey,Y4000\nVICE PRESID,MCQUEARY BROS. DRUG CO.,H4400\nCFO- Music Publishin,Universal Music,C2600\nMARION SUPERIOR COURT,,X3200\nBYRN FUNERAL HOME,,G5400\nGOVERNMENT RELA,MID-AMERICAN ENERGY,E1620\nAuditor,Ernst & Young Llp,F5100\nMILITARY,US MILITARY,X5000\nJ D ROBINSON INC,,J1100\nSenior Counsel,US Senate,X3000\nPHYSICIAN,DEAN CLINIC,H0000\nFUNERAL DIRECTO,PRITTS FUNERAL HOME,G5400\nOWNER,THE POWER CO. INC.,E1600\nNA,NA,Y4000\nFORMER CEO,ROCK-TENN,M7100\nPHYSIC,MEMPHIS GASTROENTOLOGY GROUP,H1130\nArea Director,Afscme International,L1200\nEducator,Fountain Elementary School,Y4000\nMANAGEMENT,ENTERPRISE HOLDINGS,T2500\nOFFICE MANAGER,JAMES M. WOOD C. P. A./OFFICE MANAG,F5100\ninvestor,Goode Partners,Y4000\nENGINE,WILLIAM F. LOFTUS ASSOCIATES,Y4000\nPHYSICIAN,DR. ELI JACKSON & ASSOCIATES,Y4000\nORIANA HOUSE INC,,H6000\nTeam Lead,Google,C5140\n,\"ICSI (INT'L COMPUTER SCIENCE INST.\",Y4000\nLIGHTSPEED VENTURES,,F2500\nManufacturing Manager,Sonoco Packaging Company,Y4000\nUMG,,C2600\nCHAIRMAN,KELLETT INVESTMENT CORP.,F7000\nSC DEPARTMENT OF INSURANCE,,X3000\nINFORMATION TEC,MESSER CONSTRUCTION,B1000\nPHYSICIAN,\"PARK WEST WOMEN'S HEALTH\",H1130\nFinancial Advisor,Morgan Stanley,J5100\nPresident,Professional Glass,M7200\nLAWYER,MAGGIOTTO & BELOBROW,K1000\nTV Producer,\"Radius Productions, Inc\",Y4000\nCasa Europa,,Y4000\nDANNER INVESTMENTS,,F4200\nVISTRON,,Y4000\nCHAIRMAN/C.E.O.,VERIZON COMMUNICATIONS INC.,C4100\nEnginneer,Iat International Incorp.,Y4000\nINVESTIGATOR,UNGAR LAW OFFICE,K1000\nC.P.A.,GOLDSTEIN LEWIN & COMPANY,F5100\nPersonnel Manager,PT. TOWNSEND SCHOOL DISTRICT,X3500\n\"MAKER'S MARK DISTILLERY INC\",,G2820\nCEO,First American Realty,F4200\nFINANCE,FTP,Y4000\nInvestor,Aurora Investments,J1200\nSECURIT,MERCER COUNTY COMM. COLLEGE,H5100\nBrand Marketing Manager,\"Fedway Associates, Inc\",G2850\nCALVARY HOSP,,H2100\nPHILA COLLEGE OF TEXTILE,,H5200\nRN/Administrator,Healthsouth of Toms River,Y4000\nFINANCIAL PLANNER,\"MICHAEL WEINBERG CONSULTANTS, INC.\",Y4000\nFarmers,Self employed,A1000\n\"President, Kemper Au\",\"Unitrin, Inc.\",F3100\nJ C ZIMMERMAN ENG CO,,B4400\nSENIOR VICE PRESIDENT,NEI,Y4000\nSOUTH PARK PHARMACY,,G4900\nPHYSICAL THERAPIST,\"21ST CENTURY REHAB, PC\",Y4000\nPRESIDENT,LAND TITLE GUARANTEE COMPANY,F4300\nGLOBE MFG CO,,M8000\nAUGUSTANA HOMR,,Y4000\nCHAIRMAN AND C.E.O.,LIBERTY MEDIA CORPORATION,C2200\nPHYSICIAN,BERMAN ORTHOPEDIC/PHYSICIAN,H1130\nREPRESENTATIVE,OPEIU,Y4000\nPARTNER,\"CLARK, GEDULDING & NIELSEN\",K2000\nRAY HARVEY CO INC,,Y4000\nISACCSON ROSENBAUM,,K1000\nMANAGER,NEXTAG,J1200\nATRIA/SIMON AND SCHUSTER/BOOK EDITO,,C1100\nLABORERS INT UNION,,LB100\nMALCOMB PIRNIE,,Y4000\nCEO,UHS,Y4000\nCONSULTANT,FINE ART RESOURCES,Y4000\nCICU,,Y4000\nHART ASSOCIATES INC,ELLIS,J1100\nTRUCKING EXEC,WILLIAMS TRANSFER,T3100\nHNEDAK BOBO GROUP,,Y4000\nPresident,Hawkins Insurance Group,F3100\nMarketing Consultant,\"Felton Willis, LLC\",Y4000\nHILL AND KNOWLTON PUBLIC AFFAIRS WO,,K2000\nCLASSROOM TEACHER,CULPEPER CNTY PUBLIC SCHLS,L1300\nTHE DILWORTH CO INC,,Y4000\nLIZANA ASSOC,,Y4000\n\"GLENN'S OF HVS\",,A8000\nCEO,ETON PARK CAPITAL,F2700\nPresident,Printpack Inc,M7000\nproperty & building,Self employed,F4000\nMARKETING,PATCHWORK MEDIA,Y4000\nGEORGIA INSTITUTE OF TECHNOLOGY,,Y4000\nLAW FIRM OF JOSEPH RHOADES,,K1000\nBARCLAY & ASSOCIATES,,Y4000\nDIRECTOR SERVICE DELIVERY MANA,AMEX TRAVEL RELATED SERVICES,F1400\nOwner,Dakota Kids Ranch,A3000\nOPTOMETRIST,PRICE VISION GROUP/OPTOMETRIST,Y4000\nBANKER TRUST,,F1100\nLANDSCAPE ARC,NATIONAL PARK SERVICE,J7400\nENGINEER,\"HDR, INC.\",B4000\nPARTNER,JOHN T. FLOOD LLP,Y4000\nREHAB DESIGNS,,H4100\nMember,Strategic Bio Energy LLC,E1000\nNEUR,PENN STATE HERSHEY MEDICAL CTR,H1130\nManager,Nine Yards Entertainment,C2400\nOWNER,PEPSI COLA SD,Y4000\nCEO,\"THE BANK, OBERLIN\",F1100\nPRESIDENT,LION BRAND YARN,M8000\nSALE,BAXTER GRIFFITH INSURANCE INC.,F3100\nPresident,Jacoby & Meyers Legal Network,K1000\nGLASS ARTIST,SELF EMPLOYED,X0000\nESPIRIT,,G5250\nV,INTEGRATED TECHNOLOGY CORPORATION,J6200\nMECHANICAL ENGINEER,NAVAL UNDERSEA WARFARE CENTER,Y4000\nOWNER,GERSH PROPERTY MANAGEMENT,F4500\nDoctor,Mayo,H1100\nVP Operations,Spectraseis AG,Y4000\nMANAGER,PROFESIONAL WEIGHT M.,Y4000\nPRESIDENT,ACM CHEMISTRIES,Y4000\nRETIRED,N/A,G0000\nDANIEL DANIEL TOPKIS & MCDERMOTT,,Y4000\nPresident,Pharmacists Society of NYS,Y4000\nMoney Man,Fisher In,Y4000\nOwner,Kristy K. Armstrong CPA Inc.,F5100\nTEPPCO PARTNERS,,Y4000\nProfessor,USC,H5100\nDIRECTOR,GOOD GOVERNMENT~1,E1620\nCRNA,Providence Hospital and Medical Center,H1710\nNEXAIR LLC,,G3000\nANES,PRESBYTERIAN ANESTHESIA ASSOC.,H1130\nNEW HORIZONS LLC,,G2100\nEXECUTIVE,WACHOVIA CORPORATION,F1100\nWRITER,FLEISHMAN-HILLARD,G5210\nVP & GENERAL COUNSEL,DRURY HOTELS,J7400\nRETIRED RETAIL GROCER,,X1200\nProducer,\"Snipes Insurance Service, Inc.\",F3100\nSALES REP,LAMINATIONS DIVISION GREAT NORTHERN CO,J1200\nLibrarian,Univ. of Notre Dame,H5100\nLegal Assistant,Allen Schulman & Associates,K1000\nAttorney,Kvonick Moskovitz Tiedment Group,K1000\nExecutive,Wacovia Securities,F2100\nBUSINESS MSN,HAWKEYE COMMODITIES COMPANY,Z9500\nNATIONAL ELECTRIC,,Y4000\nHOMEMAKER,NOT EMPLOYED,X8000\nCEO,CARTER MACHINERY,Y4000\nATTO,\"WISE CARTER CHILD AND CARAWAY,\",K1000\nInterior design,\"Contract Design Assoc., Inc\",Y4000\nNW PIPE COMPANY,,B5300\nNEW JERSEY PUBLIC LIBRARY,,X4200\nPHYSIC,NORTHWEST ANESTH. ASSOCIATES,H1130\nPHYSIC,SKIN CANCER & DERMATOLOGY IN,H1130\nJOHN H JOSEY AND COMPANY,,Y4000\nDesigner,Commercial Kitchen Design,Y4000\nAttorney,Delspru Associates,Y4000\nSR. VP,CHS,A4300\nSUPERINTENDENT,BROSKY MANAGEMENT,Y4000\nPhysician,\"Fond du Lac Regional Clinic, SC\",Y4000\nKY WORKFORCE DEVELOPMENT CABINET,,X3000\nPres & CEO,AtlantiCare,Y4000\nBANK OFFICER,MONTGOMERY COUNTY BANK,F1000\nMEDICAL DOCTOR,BROWN CLINIC,Y4000\nSALTZ MONGELUZZI & BARRETT,,K1000\nparttima lawer,self,J1200\nMFG SALES REP,SELF-EMPLOYED,Y4000\nATTORNEY,\"WOODRUFF, SPRADLIN & SMART\",K1000\nCEO,Delta Dental Plan of Colorado,H1400\nPartner,Gallop Johnson & Neuman LC,K1000\nCivil engineer,\"Purdy Construction Co., Inc.\",J1100\nPhysician,Boaa,Y4000\nCPA PROJE,ATRIA SENIOR LIVING GROUP,Y4000\nExecutive,Merrill Lynce,Y4000\nB/T JOURNEY,KENT LIM & COMPANY  INC.,Y4000\nDealer,Lehigh Valley Honda,T2310\nHAMBROCHT & QUIST,,F2300\nDEERFIELD SCHOOL DISTRICT,,X3500\nPartner,RuAnn Dairy,A2000\nATTORNEY,\"SCHIMPF, GINOCCHIO, & KEHRES CO. LPA\",Y4000\nINVESTOR,SILVER CREEK CAPITAL MGMT.,F2100\nPresient,Rosebrier Corporation,Y4000\nREAL ESTATE,REMARC PROPERTIES INC.,F4000\nPHYSICIAN,CARDIOLOGY CONSULTANTS/PHYSICIAN,H1130\nMERRILL LYNCH,,F4200\nCEO,FULL SAIL UNIVERSITY,H5300\nAttorney,Coppersmith Schermer,K1000\nContract Mgr,Long Island Homes,B2000\nPHYSICIAN,GLENPOOL FAMILY CLINIC,H1130\nPROFESSOR,BARRY UNIVERSITY,H5100\nSOKOLICH REAL ESTATE,,F4200\nAssistant,Arthur Elgort,Y4000\nTREFZ & TREFZ INC,,Y4000\nPROBATION OFFICER,RETIRED,X1200\nFIELD REPRESENTATIVE,NORTHEAST PRIVATE CLIENT GROUP,Y4000\nGeneral Manager,\"Valley Telephone Cooperative, Inc\",C4100\nDealership Employee,Bell and Bell Buick Pontiac GMC Truck,T2300\nSales,\"Women's Choice Pharmaceutical\",Y4000\nLAWYER,SIRODY FREIMAN AND ASSOCIATES,Y4000\nTHE GOLDMAN GROUP,,Y4000\nCINCANE HOLDING INC,,Y4000\nOwner,Caffall Bros Forest Products,A5000\nLAWYE,MURPHY GOLDAMMER & PENDERGAST,K1000\nAgent,Luttner Financial Corp,F0000\nVICE,ROCHESTER INSTITUTE OF TECHNO,H5100\nOwner,LT Leasing LLC,Y4000\nKSP PAINTING OF SYRACUSE INC,,B3000\nLITECON LLP,,Y4000\nOWNER,\"MCNELIS HOME CARE CO., INC.\",Y4000\nATTORNEY,COLLORA LLP,K1000\nACCOUNTANT,APOGEE ENTERPRISES INC.,Y4000\nCPA,GH&I,F5100\nMayor,Rosemont Illinois,Y4000\nStock Broker,Baker Siebert & Associates,F2100\nPresident,Craig McManigal Company,G1200\nDANCE ARTIST AND TEACHER,SELF,H5000\nPARTNER,NO. 1 REAL ESTATE,F4000\nPIPE MANUFACTURING,,B5300\n\"BASHA'S MARKET\",,G2400\nCONSOLIDATED INVESTMENT,,J5100\nOWNER,\"ABC SUPPLY COMPANY, INC\",B5000\nSUPV MAINT OPRNS,UNITED STATES POSTAL SERVICE,L1500\nPhysician,Phoenix Head and Neck Surgery,H1130\nEXEC VICE PRESIDENT,ICF INTERNATIONAL,G5200\nINSURANCE BROKE,ALFRED L. SMITH CO.,Y4000\nCEO,Reliabank,F1000\nAttorney,Terry Gerald Attorney,K1000\nOwner,Semper Truck Lines,T3100\nFRIEDMAN BAILEY RAME,,F2300\nMANAGER,AUTO PORT,Y4000\nATTORNEY,ALLEN WATKINS,K1000\nSR. ADVISOR TO CHANCELLOR,TCU,Y4000\nPRESIDE,BAPTIST HEALTH OF S FLORIDA,H2100\nGeneral Manager,Motor X Corp,Y4000\nSCHULZ CHEVROLET BUICK INC,,T2300\nMORTGAGE BROKER,CORNERSTONE EQUITY GROUP INC.,Y4000\nATTORNEY,RUBIN & ASSOCIATES PC,K1000\nExecutive,MASS Envelope Plus,J9000\nATTORNEY,KAIN & REEDY,K1000\nGOELET REALTY,,F4200\nCEO,Psychiatric Solutions Inc,H0000\nEXECUTIVE,HOUSTON ENDOWMENT INC,J7300\nARCHITECT,SELF-EMP.,B4200\nRICHARD & JANET GEARY FOUNDATION,,X4100\nPRESID,TOBIAS INSURANCE AGENCY INC.,F3100\nMARON SHIPPING,,G5200\nROCHE DINLIDOO & ASSOC,,Y4000\nlobbyist,Ogilvy Government Relations,Z9500\nCONSULTANT,MICROMENDERS,Y4000\nCERTIFIED PENSION CONSULTANT,\"PENSION CONSULTANTS, INC.\",F5500\nCEO,METRO GEM INC,Y4000\nMarketing,CLS,J1200\nCFO,LINER YANKELEVITZ LLP,Y4000\nRisk Manager,\"Enterprise RAC Company of Baltimore, L\",T2500\nWINNER WAGNER & MANDABACH CAMPAIGN,,Y4000\nCA DEPT OF CORRECTIONS,,L1400\nPRINCI,MSP STRATEGIC COMMUNICATIONS,Y4000\nCATALOG SHOWROOM,,Y4000\nAttorney,Ballew Schneider Covalt Gaines & Engda,K1000\nHOMEMAKER/CO-OWNER,\"JACKSON'S ORCHARD/HOMEMAKER/CO-OWNE\",Y4000\nNONE,N/A,H1100\nCEO,BAY EAST ASSN OF REALTORS,J9000\nGEOLABS HAWAII,,Y4000\nPRESIDENT,KRUSE INTERNATIONAL,Y4000\nAttorney,Cardaro and Peek,K1000\nAttorney,Law Offices of Adelson Testan & Brundo,K1000\nBusinessman,Lynk Systems Inc,C5130\nC.E.C./Executive,Abacus,Y4000\nAttorney,\"DAVID P. KOWNACKI, P.C.\",Y4000\nBUSINESS OWNER - CONTRACTOR,ENDER INC.,Y4000\nProgram Manager / IT Consultant,\"CsssNet (HQ in Bellevue, NE)\",Y4000\nM PRICE DISTRIBUTION CO,,G2850\nPresident,Allied Beverages Inc,Y4000\nFOREST INVESTMENT,,Y4000\nInformation Requested,SMS Transportation Services,Y4000\nPHYSICIAN REFERRAL S,MEMORIAL SLOAN-KETTERING CANCER CENTER,H2100\nGOVERNMENT RELATIONS,DRS DEFENSE SOLUTIONS,D9000\nPUBLISHING,CONDE NAST PUBLICATIONS,C1100\nSales,Hastings,J1200\nCareer Development,Nova Southeastern University,H5100\nOWNER,SYNDERO,G4200\nSurgeon,Stoneybrook University Medical Center,H1130\nSUNRISE MEDICAL INC,,H4100\nSENIOR VICE PRESIDENT,SIEMENS CORPORATION,G1300\nTECHNICAL INFLUENCER SALES,INTEL CORPORATION,C5110\nPresident,Yoswein Ney York Inc,K2000\nANESTHESIOLOGIST,\"PHYSICIAN ANESTHESIA SERVICES, PC\",H1130\nHOMEMAKER,SELF,G0000\nVenture Capitalist,APEX,Y4000\n\"LIBEATION PROGRAM, INC\",,Y4000\nREAL ESTATE BY PAT GRAY INC,,F4000\nDealer,Kearny Mesa Toyota,T2310\nHCA PARKWAY HOSPITAL,,H2100\nNVR PHARMACY,,G4900\nMEDFORD FABRICATION,CSC INC,Y4000\nSTUDET,STUDET,Y4000\nPUBLIC A,\"CONNOLLY, GRADY & CHA P.C.\",F1300\nMETRO THEATRES CORP,,C2700\nMANAGER,GRAIN STORE ELEVATORS,A3100\nDIR. OF TECHN,\"SAINT ANDREW'S SCHOOL\",J1100\nPhysician,Texas DADS,Y4000\nPARTNER,CAMMAN CONSULTING,Y4000\nExecutive,\"Heck Brothers, Inc.\",Y4000\nATTORNEY,BELTON & BELTON,K1000\nUniv Of Mich,Univ Of Michigan,H5100\nEducator,West Virginia Department of Education,X3500\nDoctor,KUMC,Y4000\nJH SIMS TRUCKING COMPANY INC,,T3100\nTHE REPPOND COMPANY,,Y4000\nDEPARTMENT MANAG,STUART C. IRBY CO.,B5500\nPRESIDENT,AQUILA TRAVEL,Y4000\nManaging Director,\"Angelo, Gordon & Co.\",F2700\nAdministrator,Horizons,J7400\nC.E.O.,SOWEGA-A.H.E.C.,Y4000\nWOODFIN SUITES HOTEL,,T9100\nPresident,Contractors State License Schools,Y4000\nPROFESSOR,WASHINGTON UNIV,Y4000\nINTERNE,FREEDOM OF INFORMATION INC.,J7300\nBUSINESS EXECUTIVE,ISI,Y4000\nPRESIDENT,CAPLAN COMMUNICATIONS,JE300\nPACIFIC RADIO GROUP,,C2100\n\"COM'L FISHING BUSINESS\",HUSTLER FISHERIES INC.,Y4000\nOwner,409 Group,Y4000\nsocial security disability cases repre,Self-Employed,Y4000\nGOVERNMENT EMPLOYEE,HUD INSPECTOR GENERAL,Y4000\nATTORNEY,GALLOWAY JOHNSON,Z9500\nEconomic Development Advisor,\"Aaron Associates, Inc\",Y4000\nREAL ESTATE DEVELO,DUKE WEEKS CORP.,Y4000\nVICE PRESIDENT,AKRON GENERAL MEDICAL CENTER,H2100\nConsultant,CH2MHILL,B4000\nROKEBY REALTY CORP,,F4200\nCommunications,HENNES COMMUNICATIONS,Y4000\nCEO,STIMSON LUMBER COMPANY,A5000\nOwner,Heavy Constructors Inc,B1500\n\"SR. DIRECTOR, GOVERNMENT AFFAIRS\",COMCAST CABLE,C2200\nPRESIDENT,GLENCAIRN LTD BROADCAST,C2100\nCHAIRMAN,ICPLANET CORPORATION,J1200\nN FL HEM & ONE,,Y4000\n\"FED GOV'T\",SSA,X3000\nEQUITY RESEARCH SALES,ALLIANCE BERNSTEIN,F2100\n\"TITO'S HACIENDA\",,G2900\nSEMI-RETIRED SCHOOL BUS DRIVER,BIRKS CAREER & TECH CENTER,J1200\nNORANDAL U S A,,E1220\nAttorney Professor,Boston University School of Law,H5170\nEXEC,WHITE COMMERCIAL,A1600\nSTAFF COORDINATOR,HERMITAGE OF NORTHERN VA,Y4000\nExecutive,J.T.S. Aero Energy,Y4000\nDIRECTOR,VERIZON,Z9500\nBILL MARTIN PUBLIC REL,,G5210\nPRESIDENT,TRIANGLE RENT A CAR,T2500\nAttorney,Telecommunications,C4000\nExecutive,Medical Support & Develop. Org,H0000\nINSURANCE EXECUTIVE,THE REDWOODS GROUP/INSURANCE EXECUT,F3100\nBOARD MEMBER AND SENIOR ADVISER,GUARDIAN INDUSTRIES CORP.,M7200\nVp Communications Gi,J Paul Gatty Trust,Y4000\nCHAIRMAN,MERCHANTS NAT. BANK,F1000\nAttorney,Akin Gump Hauer & Feld LLP,K2000\nATTORNEY,KEKEN & VANNET,K1000\nFARMER,HURD FARM INC,A0000\nUNITED GAMING INC,,G6500\nphysician,maine medical center/self,H2100\nPHYSICIAN,CROZER CHESTER,J1100\nInvestor/Tree Farmer,Self-Employed,F7000\nPROFESSOR AND ENDOWED CHAIR,BAYLOR COLLEGE OF MEDICINE,H5150\nRITE INDUSTRIES INC,,Y4000\nCEO,\"KNIGHT'S ARMAMENT CO.\",Y4000\nVP & COMMERCIAL COUNCIL,RAILAMERICA,T5100\nCO-CHAIR OF GOVERNMENT RELATIONS,\"ARENT FOX, LLP\",K1000\nPhysician,Womens Care Inc,Y4000\nTRANSPORTATION OFFICER,US ARMY/TRANSPORTATION OFFICER,X5000\nBOKU & BOTTS LLA,,Y4000\nDOWNY SAVINGS,,F1200\nUnion Representative,Maine State Employees Assoc.,Y4000\nJSH CONSULTING,,Y4000\nHOULIHAN LOUKEY,,F2100\n\"AUTHOR AND JOURNALIST: SENIOR FELLOW,\",CHICAGO COUNCIL ON GLOBAL AFFAIRS,Y4000\nMASSAGE THERAPIST,NEWYORK-PRESBYTERIAN HOSPITAL,H2100\nADVERT,DETAILS INC. (SELF-EMPLOYED),Y4000\nPresident,Boston Properties,F4000\nDIPLOMAT,U.S. STATE DEPARTMENT,J1200\nPresident,Prior Lake State Bank,F1100\nGeologist,\"Wrangler Resources, LLC\",Y4000\nCHAIRMAN & CEO,VERTEX PHARMACEUTICA,H4300\nSE US Reg & Proj Mgmt,Spectra Energy CO,E1620\nPRESIDENT,THERMO COMPANY,E1120\nOWNER,ISC,Y4000\nDREYER BABICH BUCCOLA & CALLAHAN,,K1000\nLAWYER,THOMPSON COBUN LLP,K1000\nFASTERN GROUP PUBLICATIONS INC,,Y4000\nOwner,Brundage Management Co,F2600\nInformation Requeste,ABC,LC100\nOwner,The Pencil Grip,Y4000\nMaintenance & Fabric,Buffalo Tungsten,M5000\nCAMPBELL AND ASSOCIATES,,K2000\nREAL ESTATE EDUCATION,SELF,F4000\nCARDIOLOGIST,BROWARD HEALTH,H2100\nCONSULTANT,STUDENT SUMMERS,Y4000\nARZUMANIAN NURSERY,,Y4000\nDIRECTOR,PLANNED PARENTHOOD OF SW FL,J7150\nPRESIDENT,AXON HOLDINGS,Y4000\nTAX ATTO,GENERAL MOTORS CORPORATION,T2100\nDEFENSE CONTRACTOR,NORTHROP GRUMMAN,J2200\nCLU,\"THE COHN GROUP, INC.\",F3100\nARCHITECT,SEL-EMPLOYED,G0000\nKYNIKOS ASSOCIATES,,F2100\nPACIFIC MARINE SHEET META,,J1100\nVICE PRESIDENT CORPORATE PURCHASING,CARNIVAL CORPORATION,T6250\nAttorney,ROBERT BALDWIN BROWN III P.A.,Y4000\nLawyer,\"Early & Strauss, LLC\",K1000\nCONSTRUCTION,LM HOLDINGS,Y4000\n\"CHAIRMAN, PRESIDENT\",\"DOM RESOURCES SVCS, INC.\",E1620\nCHAIRMAN,BERGKAMP INC,Y4000\nEXECUTIVE,FOUR HANDS LLC,Y4000\nWORLD FEDERATION OF UNITED NATIONS,,Y4000\nCONTROL SYSTEMS INTEGRATION,,Y4000\nPARTNER,WINNER & ASSOCIATES,G5210\nOwner,Bread & Breakfast Inn,T9100\nPresident,Action Advisors Inc.,Y4000\nPRESIDENT/OWNER,DENLINE UNIFORMS INC.,Y4000\nLAWYER,MILLER NASH/LAWYER,K1000\nMembership Coordinator,New Pond Farm,A1000\nCOMMODITY BROKER,MIDWEST MARKET SOLUTIONS,Y4000\nTrader,AXA IM,Y4000\nCEO,EXCELSIOR ENERGY,E1600\nSYBRON INT,,M2300\nJOHNSON MIRMIRAN & THOMPSON,,Y4000\nBUSINESS,TIMEMANAGEMENT CORP,Y4000\nMANAGEMENT,LOWES,G4500\nPRINCIPAL,KADENA PACIFIC INC./PRINCIPAL,Y4000\nEXECUTIVE,YORK ENTERPRISES,K1000\nReal Estate Developm,Sun Cal Companies,Z9500\nSECRETARY,THE GREEN-WOOD CEMETERY,Y4000\nFARMER,\"TERRI'S FAMILY FARM LLC\",A0000\nATTORNEY,CLEARY GOTTLIEB,Z9500\n\"FOOD, POSTAGE AND PRINTING\",,C1300\nPHYSICIAN,SUMMA HEALTH SYSTEMS,H2100\nSENIOR VICE PRESIDENT,SEITEL INC.,E1150\nEvp,Mccann Erickson,G5210\nFOUNDATION PROGRAM OFFICER,SELF,G0000\nArea Director,Wyndham Hotels & Resorts,T9100\nPRESIDENT,River West Investments,Y4000\nPRESIDENT,SOMERSET ACADEMY,Z9500\nPresident & CEO,Shen-Heights TV Assoc,C2100\nF B PURNELL SAUSAGE CO,,G2300\nPRESIDENT,TRANSAD,Y4000\nFEDDERS CORPORATION,,M4000\nPres,Assessment Technology Incorpor,Y4000\n\"VP, SOLAR DEVELOPMENT\",\"NRG ENERGY/VP, SOLAR DEVELOPMENT\",E1630\nHEATING & COOLING CONSULT,,B3400\nJewerly design,Self-Employed,JE300\nRetail Sales,HW Home Inc,Y4000\nDir. Ii Tax Accounti,Raytheon Company,D3000\nPRESIDEN,MERCHANTS MTG & TRUST CORP,F4600\nPACE GALLERY,,Y4000\nBONDS,MS BONDING COMPANY,Y4000\nWHOLESALER,BUDWEISER DIST. CO.,G2850\nINSURANCE BROKER,MARSH & MCLENNAN AGENCY,F3100\nPRESIDENT,AMERICAN WATERWAYS INC.,G6100\nHEALTH/SFTY MGR,United Parcel Service,T7100\nPRESIDENT AND CEO,FIRST NATIONAL BANK OF GIRARD,F1100\n\"DATA, APPLICATIONS & TECHNOLOGY ASS\",,Y4000\nWriter / Yoga Teache,Self,G0000\nCASCADE DEVELOPMENT CORP,,F4100\nELIZABETH GENERAL MEDICAL,,H1100\nCONSULTANT,MARKETING FOR WINNERS,Y4000\nCONSTRUC,GREATER CONSTRUCTION CORP.,B1500\nResearcher,Minnesota Senate,X3000\nSOMMER BARNARD,,K1000\nPURCHASING DIRECTOR,PRESTAGE FARMS/PURCHASING DIRECTOR,A1000\nBOND SCHOENECK KING,,K1000\nAttorney,Schneider Goldstein Bloomfield,Y4000\nBoard Director,PS Business Parks,F4100\nOKALOOSA COUNTY,,X3000\nPRE,ADELIPHIA STEEL EQUIPT CO. INC.,M2100\nCOMPEL LLC,,T1400\nPRINTING PROD MGR,,Y4000\nKOHLBERG KRAIS ROBERTS & CO,,F2600\nPUBLISHER,RECYCLED PAPER GREETINGS INC.,T9300\nVICE PRESIDENT,ITERA INTL. ENERGY CORP.,E0000\nMMS TRUCKING IN,,T3100\nExecutive,Marann Industrial Corp.,Y4000\nReal Estate Broker,Bell Investment Co.,Y4000\nReal Estate,Rockwell Mgmt.,Z9500\nBusiness Analyst,University of Chicago,H5100\nSALES,DIS,Y4000\nRIDGEWAY & ASSOCIATES,,Y4000\nPresident/Owner,KELLEY COMMUNCIATIONS COMPANY,Y4000\nIN,INSURANCE OFFICE OF AMERICA INC.,F3100\nPRETI FLAHERTY BELIVEAU & PACHIOS,,Y4000\nWONDER HOSTESS,IBC,J1200\nN.A.,RET.,X1200\nGOC. AFFAIRS,HEALTH INSURANCE ASSOC,F3000\nSALES,W. T. V. J.-N.B.C. 6,Y4000\nBusiness Owner,East Coast Appraisal,F4700\nPARTNER,MENDELS & ASSOCIATES/PARTNER,F3300\nPRESIDENT,KORD TECHNOLOGIES,D9000\nUNIV. OF WASHINGTON SCHOOL OF MEDIC,,H5150\nPRESIDENT AND FOUNDER,DOMESTIC FASTENER & FORGE INC.,Y4000\nexecutive,PP Arizona,Y4000\nPRESIDENT &,UNITED ILLUMINATING CO.,E1600\nREALTOR,\"OCEANVIEW INT'L REALTY\",J5100\nCIVIL SERVA,\"INGHAM COUNTY, MICHIGAN\",J1200\nHESSIAN MCKASY & SODERBERG,,J1200\nGEOPARTNERS VENTURES,,C5140\nMCALVAIN CONSTRUCTION,,B1000\nRetired Professor,Rutgers University,J1200\nLADENBURG THACMARK & CO,,J5100\nExecutive,Novartis Pharma,H4300\n\"FLETCHER TOPOL O'BRIEN & KASPER\",,K1000\nIt Consultant,Dacs,Y4000\nOwner,Smith Brothers Mechanical,Y4000\nEXECUTIVE,TELAPAX,Y4000\nORTHOPAEDIC SURGEON,EL PASO ORTHOPAEDIC SURGERY,H1130\nEXECUTIVE,VOSS JORGENSEN SCHUELER,Y4000\nS,FARMERS MUTUAL RELIEF ASSOCIATION,F3100\nENGINEER,ARDMORE ASSOCIATION,B4000\nEXECUTIVE,P-FORM,Y4000\nCPA,UINTAH SCHOOL DISTRICT,Y4000\nDoctor,DR. Pamela Gouth,H1100\nRADIOLOGY PA/PHYSICIAN/RADIOLOGIST,,H1130\nOWNER,KETCHUM AND CO.,Y4000\nCONSULTANT,CHARLES KERR ENTS INC.,Y4000\nPOWER COOLING,,Y4000\nConsultant,Clear Yield,Y4000\nAttorney,\"Paul, Hastings, Janofsky and W\",K1000\nChemical Additives,Self-employed,Y4000\nTeacher,Freelance,J7400\nATTORNEY,BOND & NORMAN,K1000\nPhysician,Bergen Ortho,J5100\nTABOR FELS AND TABOR,,K1000\nINVESTOR,GORELICK BROTHERS,F2100\nAttorney,\"Morris, Manning & Martin, LLP\",J1200\nPolig Analyst,Tides Center,Y4000\nMANAGEMENT,NEC CORPORATION OF AMERICA,J1100\nRICHLAND VENTURES,,C5130\nCleaning and Restoration,\"R & L Restoration, Inc\",Y4000\nInvestor,Mc Dade Properties Company,F4000\nLLC Member,FJS Reality Holding LLC,Y4000\nCrisis Public Relations,Sitrick and Company,Y4000\nManager,Winstanley Enterprises LLC,F4100\nLAIRD NORTON COMPANY,,J1100\nARBOR DRUGS,,H1750\nDOCUSTORE,,Y4000\nBLOOM HERGOTT,,K1000\nPHYSICIAN,SEATTLE OB-GYN GROUP,H1100\nLawyer,Strategic Impact,K2000\nLAWYER,DAVIS POLK,K1000\nPublic Relations Counsel,Self,G5210\nCARIBBEAN RESTAURANTS INC,,G2900\nEnglish Teacher,Plano Independent School District,X3500\nlobbyist,The Potomac Advocates,K2000\nCOUNTRY DIRECTOR,IRI,Y4000\nPHYSICI,S NASSAU ORTHOPEDIC SURGERY,H1100\nOwner,Maddern Investment Strategies Llc,F7000\nPRESIDENT,VEALE INVESTMENTS,F7000\nLAMAR CO,,G5230\nCEO,\"C&C TRUCKING, INC.\",T3100\nMAIS INC,,Y4000\nPresident,Protein Sciences,Y4000\nPARRUT SOFTWARE,,C5120\nOwner,\"Advisor's Group\",Y4000\nInformation requeste,Self Employed,H6000\nOWNER,\"COYOTE GRILL, LLC\",G2900\nPRESIDENT,JOHN M. LLOYD FOUNDATION,Y4000\nPRESIDENT,MORSE HARRIS,Y4000\nRetired Physician,Retired Self Employed,Y4000\nBUILDER,PARK PLACE,Y4000\nCPA,BRUNO TERVALON LLP,Y4000\n\"Lawyer/Ducjubsib Kabdneuer, L.\",Self-Employed,G0000\nAdministrative Assistant,Massachusetts General Hospital,H2100\nCivil Servant,State of NM,X3000\nRFR HOLDING CORP,,F4100\nBUSINESS & TECHNOLOGY CONSULTANT,SELF EMPLOYED,G0000\nTEACHER,\"JEAN LYLE CHILDREN'S CENTER\",Y4000\nRETAIL/LANDSCAPE,IVY NURSERY INC,Z9500\nPhysical Therapist,Blood & Cancer Clinic,H1130\nMEDICAL DOCTOR,PRESBYTERIAN HEALTHCARE SYSTEM,H2100\nVenture Capitalist,Sequel Venture Partners,F2500\nPHYSICIAN-FAMILY PHYSICIAN,,H1100\nN/A/HOME MANAGER,,C4000\n20/20 GENESYSTEMS INC./C.E.O.,,Y4000\nReal Estate Agent,Coldwell Banker Harbour Realty,F4200\nF D U,,H5100\nBroadcast Design,NBC Artworks,Y4000\nATTOR,GULLFOIL PETZALL AND SHOEMAKE,K1000\nPresident,Lawton Insurance,F3100\nFINANCIAL MANAGER,SELF,F0000\nExecutive Recruit,Spencer Stuart Co.,Y4000\nDIRECTOR,CITY BRIDGE FOUNDATION,X4100\nCommittee Chair,Pasadena Museum Of History,X4200\nAttorney,Exxon Mobile Corp.,E1110\nGovernment Affairs,Capital Strategies Group,F0000\nTRUSTEE,,M1000\nSAN BERNADINO ASSOCIATED GOVERNMENT,,X3000\nNurse assistant,Soldiers Home Hospital,H2100\nCEO,PRIMIS HEALTHCARE,Y4000\nMOTOROLA INC,,T1400\nFarmer/Oil,Self,E1100\nPRESIDEN,BOSTON CAPITAL CORPORATION,F4100\nGROUP CHAIRMAN,TEC WORLDWIDE INC.,Y4000\nATTORNEY,MILBANK TWEED HADLEY & MC CLOY,K1000\nOWNER,VAN HOE FUNERAL HOME,G5400\nAdmininstrator,University Health Systems,H2100\n\"VP, Human Resources\",Turner Broadcasting Company,C2000\nReal Estate Broker,\"Equity Management Group, Inc\",J5100\nPERSONAL ADVIS,MARCUS FAMILY OFFICE,X4110\nMI DEPT OF EDUCATION,,X3500\nSCREEN PROCESS,,Y4000\n\"FOHRMAN, LURIE, & SKLAR\",,Y4000\nVP SALES,LEARNINGQUEST,Y4000\nPRESIDENT,PETRO-HUNT L.L.C.,E1100\nCLEARWATER GROUP INC,,Y4000\nVP Land Development,Centex Corporation,B2000\nCHAMBERS RICE & ROGERS,,Y4000\nInstitute Director,University of NH,H5100\nCOLE ASSOCIATES,,Y4000\nEXECUTIVE COUNCIL ASST.,CITY OF JACKSONVILLE/EXECUTIVE COUN,X3000\n3rd grade teacher,Palo Alto Unified School District,X3500\nCO-OWNER,FRIESS AND ASSOCIATES,F2100\nC.E.O.,POWER ACCESS CORP.,Y4000\n\"VP, GOVERNMENT AFF\",ABBVIE INC.,H4300\nCONSTRUCTION,JOHN S. CLARK CO.,B1500\nWOMBLE CARLYLE SANDRIDGE & RICE PLL,,Z9500\nPresident,The Cross Country Group,F2600\nCCFMG,,Y4000\nFRENCH & COMPANY,,Y4000\nFuneral Director,Marinello Funeral Home Inc,G5400\nEXECUTIVE,OSI CORP.,G2300\nVice President,OBrien Recycling Corp,Y4000\nFounder/CEO,Enis Wind Gen Renewable Energy,E1000\nconsultant,LECG,G5270\nPIZZA STAR,,G2900\nResearcher,MSU,J1200\nINEY SOFTWARE,,C5120\nTHE STUART CORPORATION,,B2000\nChairman,Gerson Co.,Y4000\nVP of Operation,ScoNet,Y4000\nNAVAL TEST FLIGHT OFFICER,U.S. NAVY,X5000\nPARTNER,MORNINGSIDE PARTNERSHIP,J1100\nPILOT,PRECISION AIRCRAFT MANAGEMENT,Y4000\nSHARTSIS GRIESE & GINSBURG,,K1000\nORAL AND MAXILLOFACIAL SURGEON,SELF AND UNIVERSITY OF WASHINGTON,H1400\nMILLER ROBERTSON & RODGERS P C,,K1000\nPRESIDENT & CEO,FRISTTRUST BANK,F1000\nGENERAL PARTNER,THE CAFARO COMPANY,F4100\nGOVERNMENTAL REL,,K2000\nSenior VP-General Co,Omnicom Group,G5210\nCHAIRMAN,KIDSPAC,J7700\nSR SYSTEMS ENGINEER,AMERISURE MUTUAL INSURANCE COMPANY,F3100\nAttorney,R&T,Y4000\n\"AMERICAN ENERGY CORP., CENTURY MINE\",,E1210\nENGINEER,ECHOSTAR CORP.,C2200\nCOOK CHIROPRACTIC,,H1500\nPresi,American Trucking Association,J1100\nCONSULTANT,THE PARTNERS GROUP,Y4000\nGovernment Affairs Analyst,Preston Gates Ellis & Rouvelas Meeds,K1000\n\"MARTI, FLORES, PRIETO & WACHTE\",,G5210\nLANCE-KASHIAN COMPANY,,F4200\nMaterials Manager,Headwaters Construction Mtls,E1000\nGRAPHIC DESIGN,HEIDI CIES GRAPHIC DESIGN,Z9500\nOwner,BMI,Y4000\nARIEL CORPORATION/PRESIDENT/CEO,,M2300\nGAMUT 360 HOLDINGS LLC,,Y4000\nExecutive,Trident Tech.,Y4000\nCHAIRMAN,BEST WESTERN INTERNATIONAL,T9100\nPartner,Bism LLC,Y4000\nFLOOR INSTALLATION,SELF,Y4000\nPRESIDENT,VERTEX PHARMACETICALS,H4300\nTrustee,Highline Community College,H5100\n\"O'DAY EQUIPMENT\",,Y4000\nLocal Government,City Of West Hollywood,X3000\nPresident,\"Fisher-Barton, Inc.\",Y4000\nAttorney,U.S. Steel Corporation,M2100\nOwner,United Country Collins Ranch Realty,F4200\n\"E.V.P. & C.F.O., Uni\",NBC Universal,M2300\nPRESIDENT,\"ULTRADEC, INC.\",Y4000\nFINANCE,SIGNAL PEAK VENTURES,Y4000\nCEO,PIERCE AUTO,Y4000\nREAL ESTATE,TOWN & COUNTRY REALTORS,F4200\nLEORA CONSULTING GROUP LLC,,Y4000\nPAINTING CONCEPTS,,G3000\nSJMC PHYSICIAN ASSOC,,Y4000\nEXECUTIVE,\"MED-PAY, INC.\",H3000\nC.E.O.,FUNK CONSTRUCTION,B1500\nSYSTEMS ANALYST,KRAFT FOODS GROUP,Z9500\nOwner,McCafferty Motors,T2300\nPARTNER,CAI,F2100\nInsurance Sales,Fullerton and Company,F3100\n\"DIRECTOR, INVESTOR\",SELF-EMPLOYED,G0000\nTWO-TEN MUSIC PUBLISHING CO,,C2600\nCURATOR OF EDUCAT,ERIC CARLE MUSEUM,X4200\nRealtor,Everett J. Gooch,Y4000\nLegal Consultant,Univ of Tenn Ctas,H5100\nOwner,Andersen Concrete Pumping,B5100\nCHIEF EXECUTIV,\"AIRTRAN AIRWAYS, INC\",T1100\nMILLER AUTOMOBILE CORPORATION,,T2310\nSALES EXECUTIVE,SCHWING ELECTRIC,Y4000\nFilmmaker,Self,J9000\n,GRAPHIC COMMUNICATIONS INTL. UNION,Y4000\nDirector of Business Developme,BenefitMall,F3200\nEAST TX SYMPHONY ORCHESTRA,,C2800\nSPO PARTNERS & COM,MANAGING PARTNER,F2100\nAttorney,\"Van Ness Feldman, PC\",K1000\nINVESTMENT,\"C.P. EATON PARTNERS, L.L.C.\",F2700\nEXEC,PETER D. CUMMINGS AND ASSOCIAT,Y4000\nVideo Producer,Tzum Productions,Y4000\nNot for profit executive,Common Cause,Z9500\nCEO,DERMIRA,Y4000\nPresident,Mecsoft Corporation,Y4000\nCEO,GOSNOLD,H3200\nPRESIDENT,STEEL MANUFACTURERS ASSN (SMA),M2100\nSTEEL FABRICATION,SELF-EMPLOYED,M2100\nTATUM CFO,,Y4000\nHOMESTEAD DEVELOPERS INC,,B2000\nMORTGAGE BANKER,National City Corp.,F4600\nREAL ESTATE,\"RICBERAY, INC.\",J1100\nDOOLEY ELECTRIC CO,,Y4000\nHAITAI AMERICA,,G2500\nWILLOWBEND DENTER,,H1400\nPRINCIPAL,ROYAL PRINTING SEVICE,C1300\nPhysician-Educator,University of Oklahoma,H5100\nConsultant,,G5200\nCONSULTANT,S-3 GROUP,K2000\nMATTHEWS HARGRGAVES,,T2300\n\"KOHN'S\",,Y4000\nHERS RAT,GALE DAVIS TESTING COMPANY,B2000\nCOUNSELOR,,G5210\nPartner,Riverbanks Realty Corporation,F4200\nOwner,\"Debra K. Greeson, Pc\",Y4000\nACTRESS,PHONEBANK CAPTAIN,Y4000\nowner,Tustin Lexus,T2310\nPARSONS BRIMCHELHOFF,,B4000\nSELF-EMPLOYED,COLUMBIA VALUE & SUPPLY COMPNAY,Y4000\nMED ECON SERVICES,,Y4000\nPhysician,Shoreline Neurosurgical,H1100\nROGERS & HARDIN,,J1200\nProject Manager,\"All Circo, Inc\",Y4000\nEXECUTIVE DIRECTOR,PORT EVERGLADES ASSOCIATION/EXECUTI,Y4000\n\"NAT'L COUNCIL OF SENIOR CITIZENS\",,J7200\nATTORNEY,ADVOCATES INC.,X4000\nRepresentative,Mid Atlantic Regional Carpenters Union,LB100\n*DIRECTOR OF PUBLIC RELATIONS,PLAINS CAPITAL CORPORATION,F1100\nCHAPEL HILL FOOT & ANKLE CARE,,H1130\nInformation Requeste,Lexis Nexis,C5130\nRESIDENTIAL MORTGAGE CORPORATION,,J7300\nDIPLOMAT,US DEPARTMENT OR STATE,X3000\nLand Development,M.Sherman & Associates,Y0000\nINVESTME,THE SPECTRUM CAPITAL GROUP,Y4000\nPRESI,\"ROSS CONSULTING ENGINEERS, PC\",B4400\nCraft gallery owner,\"Woodstock Gallery, Inc\",J1200\nYANK SING,,Y4000\nCATHOLIC KNIGHTS/CLERK/CLERK,,J1100\nPRINCIPAL,MCGLOTTEN & JARVIS,K2000\nRUDIN BARNETT MCCLOSKY SMITH ET AL,,Y4000\nLIBRARIAN,SEDONBA PUBLIC LIBRARY,X4200\nconsultant,Wessel Group,K2000\nOWNER,BIG DADDY SCRAP GOLD EXCHANGE,Y1000\nMANUFUCTURER,,Y4000\nPHAROS,,J1200\nEvaluator,Self,G0000\nMusic Executive,Lava/Atlantic Records,C2600\nSALES ENGINEER,GREAT LAKES,Y4000\nCHAIRMAN/C.E.O.,\"STAR TRUCK RENTALS, INC.\",G5300\nEARTH SATELLITE CORP,,C4400\nWEST UNION HARDWOOD,,A5000\nMEMBER,GDS STRATEGIES,K2000\nFINANCIAL FEDERAL,,Y4000\nCONSULTANT,\"AKINS CRISP, INC.\",Y4000\nSelf-Employed,\"South Ala Land & Timber Company, Inc\",A5000\nDAVIS & BUCCO PC,,Y4000\nEXECUTIVE,PUGET SOUND BLOOD CENTER,H3000\nBlue Lotus Design,Self employed,Y4000\nOWNER,\"HUSSEY, GAY BELL & DEYOUNG, IN\",Y4000\nmanager,Whole life Books,Y4000\nRADI,DIAGNOSTIC RADIOLOGY CONSULTAN,H1130\nROOFING CONTRACTO,MACKENZIE ROOFING,B3000\nAMERICAN LIFE & ACCIDENT INSURANCE,,G1300\nPRESIDENT ALEXANDER MACHINERY,,M2300\nCHARLES E BRAKE CO INC,,B2000\nCEO,THE CASE FOUNDATION,X4100\nPRIME ADVISORS INC,,Y4000\nAdministrator,Riverside County,X3000\nP.R./MARKETING,GROW MARKETING,Z9500\nC. E. O.,Applied Plastics Corporation,M1500\nZERLING SCHACHTER & ZWERLING,,K1000\nCEO,\"EBAY, INC.\",C5140\nCOMP PRGMR/SYS ANALYST/DP SPC,WAYNESBORO CITY PUBLIC SCHLS,L1300\nExecutive,Cruz & Co,K1000\nATTORNEY,BIESCHE MCDERMONT,K1000\nEXEC,PACIFIC LIFE INSURANCE COMPANY,F3300\nCONSULTANT,THE COSBY COMPANY,Y4000\nPresident & C. E. O.,Photonics Laboratories Inc.,Y4000\n\"Scientist, Professor\",U of Chicago,H5100\nTransportation Planner,City of Oakland,X3000\nTOWN AND COUNTRY REALTY,,F4200\nPresident,Spicer Construction Inc.,B1500\nATTORNE,COLLECTION LAW CENTER P. C.,K1000\nRETIRED,RETIRED CONSULTANT AND PROFESSOR,J7400\nOWNER/PRESIDENT,INDUSTRIAL ELECTRIC MOTORS,Y4000\nALLEN FAMILY FOODS/SECRETARY/TREASU,,A2300\nProgramming and Production,Canal Uno TV Ecuador,C2000\nConstruction Electrician,Retzke Snyder Elec,Y4000\nATTORNEY,SELF/THOMAS GEHRING,K1000\nMANAGER,CONSOLIDATED RESORTS,Y4000\nDirector,AZ Human Rights Fund,Y4000\nManager,\"Evergreen Energy, Inc\",E1000\nHUGHES ENVIRONMENTAL SYSTEMS,,Y4000\nORTHOPAEDIC SURGEON,HOSPITAL FOR JOINT DISEASES,H1130\nTHE BULLFINCH COMPANIES,,Y4000\nCollege Dean,Lesley University,H5100\nEngineer,Hall & Foreman,Y4000\nCHIEF TECHNOLOGY OFFICER,TEL-TRON TECHNOLOGIES CORP./CHIEF T,Y4000\nPACIFIC FINANCE AND LEASI,,F0000\nChief Financial Offi,Bank One Corporation,F1100\nOwner,Steel Service Company,M2100\nExecutive Vice President,SAP,C5120\nBuilder,\"Lexington Partners, Inc.\",F2100\nattorney,Welsh and Katz LTD,J1200\nADULT CARDIOLOGY,\"Centro Cardiovascular de Manati III, C\",H1100\nINVESTMENTS,FDG ASSOCIATES/INVESTMENTS,Y4000\nProfessor,Sawrthmore College,H5100\nDIRECTOR GS I,PHARMACIA CORPORATION,H4300\nCEO,Ventura Corp,Y4000\nFARMER,\"PHILLIP BEAN, FARMER\",A1000\nLEIB KRAUS GRISPIN ETAL,,Y4000\nCEO HEROIC MEDIA,SELF EMPLOYED,Y4000\nElectronic Technician,US Department Of State,X3000\nOWNER,\"RAYMOND'S WRECKER\",Y4000\n\"GALLOP, JOHNSON & NEUMAN L C\",,K1000\nFarmer,Shelton Farms,A1000\nBROKER,REAL ESTATE APPRAISER,F4000\nReal Estate,\"Mixon Investment Co, Inc\",F7000\nAREA A,LAND AMERICA FINANCIAL GROUP,F0000\nBUSINESS ANALYST,WMS GAMING,G6500\nMishler Funeral Homes,,G5400\nCEO AND M,UNIVERSAL HEALTH SERVICES,H2100\nCEO,\"KEAS, INC\",Y4000\n\"ENVIRONMENTAL, HEALTH & SAFETY REPR\",\"CARRIZO OIL & GAS, INC\",E1000\nBRONCHO CHEVROLET,,T2300\nEXECUTIVE,ALLEN & COMPANY OF FLORIDA,F2300\nGRADUATE AND PROFESS,UNIVERSITY OF NEW MEXICO,H5100\nPRINCIPAL,\"ERNST & YOUNG, LLP\",K2000\nfinance,Brunswick Elec Memb Coop,Y4000\nAttorney,Munro and Zack PLLC,K1000\nFIRST UNION-MAHER PARTNERSHIP,,F1300\nEDUCATOR,OEA STAFF- NCBL,L1300\nOWNER,POTRERO INVESTMENTS,Y4000\nRONALD B QUINN & CO,,A1400\nPRESIDENT,PEPSI COLA CENTRAL VA,G2600\nSR. TECHNICAL ARCHITECT,AT&T,C4100\nOwner,Lambert  Excavating,B3600\nPresident,Algood Food Co,G2000\nCHIROPRACTOR,WEST ORLANDO CLINIC,Y4000\nHB ELECTRICAL TESTING,,Y4000\nPresident & CEO,Nucor Corp,M2100\nBUSINESS EXEC,\"NORTHERN BOTTLING CO, MINOT, ND\",Z9500\nInvestment Advisor,Ubs Financial Servicies,F2100\nMCDI,,Y4000\nCFO,ARAMARK,G2910\nPROJECT MANAGER,COACHELLA VALLEY HOUSING COALITION,Y4000\nTX CORN GROWERS,,A1500\nSheetmetal Worker,\"Schranz Roofing Milwaukee, WI\",B3000\nCLEANING SERVICE INDUSTRI,,G5200\nCATERING COSTS,,C2300\nLEFFEL OTIS & WARWICK,,Y4000\nPresident,\"Government Technologies Group, LLC\",Y4000\nSENIOR VICE PRESIDENT,DSCC,Y4000\nBuilder,YMB Construction,B1500\nROBERT WOOD JOHNSON MEDIC,,Y4000\nPresident,Manzano Oil CO,E1100\nEXECUTIVE,\"FAPS, INC.\",Z9500\nATTORNEY,STRITMALTER FIRM,K1000\n\"Designer, Architect\",Architectual Designs,B4200\n\"MANAGING DIR,\",\"ALASKA AIRLINES, INC.\",T1100\nOWNER,ATKINSON RESORT & COUNTRY CLUB,Y4000\nAttorney,Ice Miller,K1000\nCEO,Kimball Hill Inc,B2000\nATTORNEY,CHEVRONTEXACO CORP.,E1110\nRIFLE COAL CO INC,,E1210\nINTELLIGENCE ADVISOR,BRITISH PETROLEUM,E1100\nTPG CAPITAL,,J7500\nCOMPEER INC,,Y4000\nMAJOR,,J1100\nKENWOOD CORPORATION USA,,M4000\nAMERICAN INTERNATIONAL GROUP,,F2600\nPRESIDENT,\"NUTECH SYSTEMS, INC.\",Y4000\nCONSULTANT,\"RESEARCH ADVISORY SERVICES, INC.\",Y4000\nATTORNEY,CALLISTER NEBEKER,K1000\nR & D Technician,\"Medtronic, Inc\",H4100\nPresident,Global Berry Farm LLC,J7120\nOWNER,MUSTANG MUD INC.,M1000\nASLANIAN KHOROZIAN,,Y4000\nAGRICULTURAL ENGINEER AND CONS,SELF,A4000\nPRESIDENT,S.C.G. CAPITAL,Y4000\nWELDON ENTERPRISES LTD,,Y4000\nPresident,\"Dynamic Truck Sales, Inc\",Y4000\nPHYSICIAN,WOMENS HEALTH SPECIALIST,H0000\nCO-PRESIDENT,AMERICAN FINANCIAL GROUP/CO-PRESIDE,F3400\nPHYSICIAN,EASTERN MAINE HEALTHCARE,H1100\nPHYSICIAN,FPA INC.,Z9500\nCAFE TERRA COTTA TUCS RESTAURANTEUR,,G2900\n\"ST MARY'S RADIOLOGISTS\",,H1130\nExecutive,The Center Club,Y4000\nState Strategist,Aclu,J9000\nPOLITICAL ORGANIZER/,EIRNS,J1200\nBERGNER BOCKORNY CLOUGH & BRAI,,K2100\nWEINRICH TRUCK LINES INC,,Y4000\nEXECUTIVE DIRECTOR,MAINE AUDOBON,Z9500\nPHYSICIAN,PHYSICIANS INTERMEDIATE,Z9500\nHomemaker,Self,F1200\nAttorney,\"BHBC, Inc\",Y4000\nPresident,ABA Sports,Y4000\nENGINEER,BELCAN CORP,J1100\nC.E.O.,MUTUAL PHARMACEUTICAL,H4300\nOwner,Toni Alam CPA,F5100\nOwner,Oregon Rv Inc.,Y4000\nBARNSTABLE BROADCASTING COM,,C2100\n,WORLD TRADE CENTER OF INDIANAPOLIS,Y4000\nCONTRACTOR,ARCHITECT,B4200\nPRINCIPAL,TRANSSYSTEMS,Y4000\nPANKOW ASSOC INC,,H4400\nMARKET,JE DUNN CONSTRUCTION COMPANY,B1000\nREAL ESTATE BROKER,C-21 E-N ACHIEVERS REALTY,Z9500\nATTORNEY,BRAD GAY,K1000\nENGINEER,DOMINION,Y4000\nTEACHER,WSD,Y4000\nInvestment Counselor,Self Employed,F2100\nCONSULTANT,DUBIN MARKETING INC.,Y4000\nAssistant Administra,HCR ManorCare Inc.,H2200\nPhysician,AI dupont Hospital,J1200\nPHYSICIAN,DUNJA MAGLICA MD,H1100\nWILLIAM MARTIN CO,,Y4000\nNAT BASKETBALL ASSOC,,G6400\nSASI,,Y4000\nATTORNEY,WILMER HALE L.L.P.,K1000\nExecutive Vice President & CEO,Lincoln General Insurance Company,F3100\nPRINCIPAL,WINGED KEEL GROUP,F3300\nCFO,BLOSSMAN PROPANE GAS,Y4000\n\"CHILDREN'S VILLAGE CHILDCARE CTRS\",,Y4000\nManufacturer,\"Procurement Systems, Inc\",Y4000\n\"COASTAL CHILDREN'S\",,H1130\nOWNER,CHESTER ENGINEERS/OWNER,B4400\nAuto Dealer,Toyota Of Orange,T2310\nPROPERTY MANAGER,,F4000\nGovernment Affairs,Ohio Association of Realtors,F4200\nHOMEOWNER,,Y3000\nQA COORDINATOR,PAUL HASTINGS LLP,K1000\nCorporate Responsibility VP,Molson Coors Brewing,G2810\nExecutive,\"Essex Contracting, Inc.\",Y4000\nPHYSICIAN,NED RAICH MD,H1100\nDIKITA ENTERPRISE,,B4000\nZLOCKIE RESEARCH INTL,,Y4000\n\"SVP, retirement, rollover& college\",Fidelity Investments,F2100\nCLAMPITT PAPER COMPANY,,J1100\nLINETT SCHECHTER REICHER & ALTMAN,,Y4000\nTECHNOLOGY SALE,NEW ADVANTAGE CORP.,D3000\nERIE CONSTRUCTION MID WEST INC,,B1500\nJACKSON & BLANC/MECH. / SERVICE TEC,,Y4000\nAttorney,Cook Cty Public Defender,X3000\nPhysician,Ohio State Univ,J1200\nBanker,North Akron Savings Bank,F1200\nTHE BENSON GROUP,,Y4000\n\"SVP, MORTGAGE TRADING\",FTN FINANCIAL,F0000\nSvp - North America,GE Commercial Finance,M2300\nCERTIFIED PUBLIC ACCOUNTANT,SELF-EMPLOYED,F5100\nOperations Systems A,City of Chandler,X3000\nPHYSICIAN,CHRISTUS HEALTH,H2100\nUNIVERSITY ORAL AND MAXIL,,H1400\nSENIOR VP-ATG GROUP,GENERAL ATOMICS,E1320\nCOUNSELOR,SOUTH BEND COMMUNITY SCH CORP,L1300\nBusiness Manager,\"Marek Brothers Systems, Inc.\",B0500\nBOOKKEEPER,FIELD CRAFTS INC,Z9500\nPhysician,Florida Community Cancer Centers - Gor,H1130\nMKT. CONSULTANT,SELF-EMPLOYED,Y4000\nGLENCO SUPP CO,,Y4000\nPORTER WUEST & KOOTT,,Y4000\nPRIME MANAGEMENT,,F4200\nECE,Vanderbilt University,H5100\nPresident,Tennessee Apparel Corporation,M3100\nPURCHASING AND FACILITIES MANAGER,RENT MANAGER BY LCS,F4500\nRegional Director of Operations,\"Five Star Quality Care, Newton, MA\",H2200\nDIAGNOSTIC RADIOLOGIST,CAMBRIA SOMERSET RADIOLOGY/DIAGNOST,H1130\nOWNER,EDUCATION AMERICA,H5200\nNurse Anesthetist Su,Harbor/UCLA medical center,H1710\nREGIONAL MANAGER,CONSOLIDATED GRAIN AND BARGE,T6200\nM.G.W.,,Y4000\nVice President & Gen,\"IMA of Kansas, Inc.\",F3100\nATTORNEY,HOMEOWNERS CHOICE INC,Y4000\nLAWYER,FOROS,Z9500\nGINSBURG FELDMAN & BRESS,,K1000\nExecutive Vice Presi,AdvaMed,J1200\nATTOR,ROBINS KAPLAN MILLER & CIRISI,K1000\n\"DIRECTOR, PRO\",\"CKE RESTAURANTS, INC.\",G2900\nPhysical Chemist,\"Scaled Composites, LLC\",Y4000\nEX,NATIONAL TELECOMMUTING INSTITUTE,Y4000\nINFO REQUESTED,J Mario Uribe & Assoc.,Y4000\nCONSUMER LEISURE,SELF,Y4000\nK HOME DESIGN & DECO CO,,Y4000\nPRINCIP,THE HOLMES GROUP CONSULTING,Y4000\nBASELINE AD TRACKING INC./SALES/OWN,,Y4000\nHUBBARDSVILLE COMM COLLEGE,,H5100\nA A COUNTY,,X3000\nMANAGEM,STERLING MINING CORPORATION,E1210\nMERCHANTS TERMINAL CORP,,T7200\nPhysician,\"Jeffrey D Cone, MD PA\",H1100\nMatthews and Bransco,Attorney At Law,K1000\nCEO,CONAGRA/CEO,G2100\nVP & Deputy General Counsel,Exelon,E1600\nContractor,\"Performance, Contractors, In\",B1000\nRisk Manager,Village Of Hoffman Estates,Y4000\nGroup Vice President,Dupont Company,M1600\n\"MARY'S CENTER\",,K1000\nCOMPUTER CONSULTANT,\"DATABASE ADMINISTRATION, INC.\",Y4000\nBELEASED GORDON PART,,F4200\nOwner,Odell Brewing Company,Y4000\nSTALMAN BROTHERS,,Y4000\nN / A/HOMEMAKER / SPOUSE,,K1000\nPresident,Oliver Adjustment Co of Kenosh,F5200\nTeacher,Oneida Special School District,X3500\nTHE TILLES INVESTMENT COMPANY,,J5100\nPAUL WEISS RIFKIND WHARTON GARRISON,,J7400\nAttorney,Potts Law Firm,K1000\nCCAMACHO@ME.COM,SELF,Z9500\nMACOMB CLINIC,,Y4000\nOwner,\"The Truck Shop Of Billings, In\",Y4000\nNURSE,WORTHINGTON CHRISTIAN VILLAGE,Y4000\nBusiness Manager,Bechtel,D9000\nLOWENHAUPT AND CHASUOFF LLC,,K1000\nIPA INC,,Y4000\nElectrician,Special Power Inc,Y4000\nENGINEER,DYNETICS TECHNICAL SERVICES,J1100\nPRESIDENT,ALEX BIOLOGICS,Y4000\nretired,Abbott Labs,H4300\nInformation Requested,Morgan Lewis,K1000\nGOVERNMENT AFFAIRS,BARBOUR GRIFFITH & ROGERS,K2000\nPresident,Real Networks,J1200\nDEAN,SYRACUSE UNIVERSITY,H5100\nATTORNEY & PARTNER,KATTEN MUCHIN,K1200\nPartner,Hispanic Strategy Group,K2000\nCHAN,CLEVELAND CHIROPRACTIC COLLEGE,H1500\nUnknown,Nelson Gallery Found,Y4000\nCollege Teacher,Col Of Wm And Mary,H5100\nPACIFIC POWER LIGHT,,E1600\nCHIEF SCIENTIST,MTSI,D4000\nPEDIATRICIAN,GRAHAM CLINIC,Y4000\nEFH INC,,Y4000\nINSURANCE AGENT,L & W AGENCY/INSURANCE AGENT,F3100\nEMERGENCY PHYSICI,MOREHEAD MEMORIAL,H1100\nCommercial Property Manager,De Qnza Properties,F4500\nDIRECTOR,FLINT HILLS RESOURCES,E1120\nOWNER,INDEPENDENT TAXI LIMO,Y4000\nUNIV OF CALIF S F,,H5100\nMedical Director,Group Health Hospitals,H2100\nSTEIN & ASSOCIATES,,K1100\nROLFE AND NOLAN,,Y4000\nAdminitrative Director,Quest Therapeutic Camp,Y4000\nFRANKEL ASSOCIATION,,Y4000\nEnvironmental Consul,Self,Z9500\nLIVINGSTON STONE COMPANY,,B5100\nCAR WASH,BLUE WAVE CAR WASH,G5000\nAssistant Professor,The University of Mississippi,Z9500\nWriter Artist,Self,J1100\nTeacher,Mica,J1200\nORTHO ASSN,,Y4000\nDIRE,OKLAHOMA MUNICIPAL POWER AGENC,E1600\nEXECUTIVE,LANCASTER DEVELOPMENT,J1100\nLEVINE WITTENBERG EISNER & NEWMAN L,,Y4000\nREAL ESTATE BROKER,CENTURY 21 AFFILIATES,F4200\nPRESIDEN,BARKSDALE MANAGEMENT GROUP,Z9500\nATTORNEY-AT-LAW,BRUCE I. AFRAN,Y4000\nWALLCOM,,Y4000\nINFO REQUESTED,Internal Medicine Specialists LLC,H1130\nSPORTS-TECH,,Y4000\nOWNER,COLGATE SCAFFOLDING,Y4000\nINFORMATION REQUESTED,CHARLOTTE MATTERS,Y4000\nOFFICE,ENCORE AUDIO & VIDEO DESIGNS,Y4000\nMANAGER,CA DOMESTIC WATER CO.,E5000\nVice President,Miller & Long Concrete Construction,B1500\n\"VICE PRESIDENT-GOV'T. AFFAIRS\",GENERAL ELECTRIC,M2300\nLegal Support Services,Self-Employed,G0000\nBANKER,GRANT COUNTY BANK,Y4000\nConsultant,\"Mission Technologies, Inc.\",D2000\nEXECUTIVE,\"MAURICE A. AUERBACH, INC.\",Y4000\nResearch Scientist,Niesh Nih,Y4000\nAttorney,Haake & Associates,K1000\nPresident,Quality Steel Corporation,M2100\nSENIOR VP MORTGAGE,BB&T,Z9500\nORTHOPEDIC PHYSICIAN,ORTHO ARKANSAS,H1130\nSELF-EMPLOYED,AZILE FOODS CORPORATION,Y4000\nRPG INC./BUSINESSMAN/BUSINESSMAN,,J1100\nWARSAW SPORTS MARKETING,,G6400\nHUDGINS CONTRACTING CORP,,Y4000\nPRESIDENT,,G2400\nHARMONY MANAGEMENT,,F2100\nTHE GAMELY CORP,,A3000\nCEO,SUTHERLAND GROUP,Y4000\nRESTAURATEUR,BUCKHEAD BEEF COMPANY,G2900\nLANKENAU KOVNER ETAL,,Y4000\nVICE PRESIDENT-DEVELOPMENT,\"AVALONBAY COMMUNITIES, INC.\",F4100\nABC-GOLDEN GATE,,Y4000\nLICENSED PROFESSIONAL COUNSELOR,SELF-EMPLOYED,Z9500\nmarina,Key West Oceanside Marina,T6000\nPresident,\"Autogas Systems, Inc\",E1100\nE-COMMERCE,\"BLACKBIRD HOLDINGS, INC.\",C5120\nReal Estate Broker,\"The Norwood Group, Inc.\",Y4000\nSOUTHERN OREGON SUBWAY INC,,Y4000\nOWNER,BURSON-WEATHERS,Y4000\nEXECUTIVE,\"VENTAS, INC.\",F4100\nCHIEF EXECUTIVE OFFICER,NON-PROFIT,X4000\nInvestment Director,Wachovia Multifamily Capital,F4100\nretired frm oil co,chevron,X1200\nSLP,ERJOHNSTON AND ASSOC,Z9500\nPrincipal,National Strategies,K2000\nExecutive,BatchOut,Y4000\nRHEUMATOLOGIST,RHUEMATOLOGY CARE CENTER/RHEUMATOLO,H1130\nAUTO SALES & FINANCE,CAMPBELL CORPORATIONS,T2300\nMANNING & NAPIER,,Y4000\nOWNER,ICON BRONZE/OWNER,Y4000\nCEO,American Ireland Fund,X4100\nACCOUNTANT REPRESENTIVE,MAST FOULOS COMPANY/ACCOUNTANT REPR,Y4000\nMANAGER,J AND R SAND CO,B5100\nPATHOLOGIST,OSF ST. JOSEPH MED CTR,H1130\nVITTANTONIA INC,,Y4000\nSR. VP,OGILVY REALTORS,F4200\nCARLETON-STUART CORPORATION,,Y4000\nWHITLEY & WHITLEY INC,,Y4000\nPRESIDENT,A&G HEALTHCARE SERVICE,Y4000\nAT HOME,HOMEMAKER,G0000\nREFUSE COLLECTION,,Y4000\nAttorney,Olshan Grundman,F0000\nHOME MAKER,VANSINGEL ELECTINC,J1100\nArts Administrator,Lake Region Arts Council,Y4000\nC.E.O.,POLARIS INDUSTRIES,T8100\nOWNER,\"JOSEPH LOW, INC.\",Y4000\nOwner,Pasquale Trucking Co Inc,T3100\nEXECUTIVE,KAIMAN CONSTRUCTION,B1500\nPlanner/Architect,SLR Inc,Y4000\nADMINISTRATIVE ASSISTANT,RETIRED/ADMINISTRATIVE ASSISTANT,X1200\nBUSINESSMAN/OWNER,SUPERCUTS,Y4000\nSB FOOT TANNING,,Y4000\nSTANLEY MANDELL AND IOLA,,Y4000\nARMSTRONG AUEN,,K1000\nDistrict Manager,\"Edifice, Inc\",B0500\nCFO,HIGHBRIDGE CAPITAL,F2700\nREALTOR,THOMAS H. LURIE & ASSOC.,F4200\nSalesman,Zschimmer & Schwarz,Y4000\nFIRE FIGHTER,SPRINGFIELD FIRE DEPT.,L1400\nINVESTMENT ADVISOR,KANPUS INC/INVESTMENT ADVISOR,Y4000\nAGENT,NORTHWESTERN MUTUAL LIFE INS. CO.,J1100\nPublix,,G2400\nATTORNEY,WRIGHT & TALISMAN P.C.,K1000\nInformation Technolo,Carleton College,H5100\nPRESIDENT,WI FARMERS UNION,A6000\nALPHARMA INC,,Y4000\nRISK MGMT,SELF,F0000\nRespiratory Therapis,N/A,Y4000\nVICE PRESIDENT -SALE,COASTAL TOWING,T6200\nPhysician,Heart & Vascular Institute of Florida,Y4000\nBUSINESS EXECUTIVE,BW FINANCE COMPANY,Y4000\nAlternative HS Guida,State of WI,X3000\nPresident,\"Kirk's Natural Products\",Y4000\nTextile Manufacturer,H. Brickle & Son Inc.,Y4000\nConsultant/Businessman,\"Bernuth Agencies, Inc\",Y4000\nCOLLEGE OF AMER PATHOLOGISTS,,H1130\nCPA,\"KIM & LEE CORP, CPAS\",Y4000\nSR. MANAGING DIRECTOR,BEAR STERNS,J1200\nPhysician,Memorial Regional Medical Center,H1100\nattorney,\"Donaldson, Chilliest & McDaniel\",K1000\nCONSULTANT,JMH CONSULTANTS,Y4000\nBookkeeper,Mathie Supply,Y4000\nNORDBLOM COMPANY - REAL E,,F4200\nWINE GARDEN SIEGEL INC,,Y4000\nReal Estate Broker,Mission Property Co.,F4000\nCHAIRMAN OF THE BOARD,BACARDI CORP,G2820\nPRINCIPAL QA ENG,\"CADEC GLOBAL, INC.\",Y4000\nMIGRATION POLICY INSTITUTE,,Y4000\nPRESIDENT,AIZAN CHARITABLE ORGN,Y4000\nKELBOURNE EYE ASSOC,,H1120\nPARTNER,BONGIOVI MEDIA AND TECHNOLOGY,Z9500\nManager-Imaging Tech,GE Infrastructure,M2300\nATTORNEY,\"SPORTECH, INC.\",Y4000\n\"Attorney - Workers' Compensation\",Fischer Brothers,F4000\nChairman,ATC,Y4000\nPRESIDENT,SEALORD LLC,Y4000\nInsurance Agent,NBA Insurance Services,F3100\nceo,Landerman Management,Y4000\nOWNER,CRESSIONNIE CONSTRUCTION,B1500\nBUSINESS DEVELOPMEN,ADVERTISING.COM,G5220\nSALES MANAGEMENT,EMC,C5130\nFRITH CONSTRUCTION,,B1500\nAttorney,Geene Broillet Panish & Wheeler,K1000\nPEDIATRICIAN,\"COMPLETE CHILDREN'S HEALTH\",Y4000\nSUFFOLK CONSTRUCTION,,B1500\nJOURNALIST,MICROSOFT CORP.,C5120\nPresident &amp; CEO,WirelessVox Incorporation,Y4000\nurologist,Middleton Urology,H1130\nOwner,Queens Tavern Inc.,G2900\nDIRECTOR OF HEAD START,STATE OF INDIANA,X3000\nself/oriental rug retail store owne,,\nINVESTOR/ENTREPRENEUR,SELF-EMPLOYED,X1200\nPRESIDENT,CHANNER CORPORATION,Y4000\nKLOBERT LAW FIRM,,K1000\nHuman Resources,ibm,C5100\nINSURANCE,\"BROCKER, KARNS & KARNS\",F3100\nSPRING HILL VET CLINIC,,Y4000\nSELF EMPLOYED,STEVEN WASSERMAN,Y4000\nPresident,\"Marburg Technology, Inc.\",Y4000\nSCHLAIFER NANCE & CO,,Y4000\nORCUTT UNION SCHOOL,,H5100\nATTORNEY,SCHEPER KIM & HARRIS,K1000\nN/A,N/A,A1400\nGEOLOGIST,STONE ENERGY CORPORATION,E1120\nMEADOWS STONE & PAVING,,B3000\nPROFESSOR,NORTHWESTERN U,J1200\nTM FABRICATING,,Y4000\nDIRECTOR - EN,DIAMOND CHAIN COMPANY,M2300\nCPA,Deva & Associates PC,Y4000\nINFO REQUESTED,Pyramid Alloys Inc.,Y4000\nAssociate,Skyview Cooling,B3400\n\"VP, GENERAL COUNSEL\",HUNTINGTON INGALLS INDUSTRIES,D5000\n,NEW YORK BUSINESS DEVELOPMENT CORP,Y4000\nPRESIDENT,JAMES RIVER AIR CONDITIONING,B3400\nPublisher,\"Sunshine Media, Inc.\",Y4000\nPartner,ITV Ventures,F2500\nPARTNER,SB CAPITAL GROUP,F0000\nfinance,self,J5100\nOWNER,NORTON CORPORATION,Y4000\nINFO REQUESTED,INFO REQUESTED,H1130\nSales,Tempest & Telecom Solutions,Y4000\nLAWYER,MCCORMICK FITZPATRICK ETL,Y4000\nEngineer,Western Digital,C5110\nSoftware Engineer,Osiris Innovations,Y4000\nTHE RITZ-CARLTON KAPALUA,,T9100\nMANGEMENT,\"THYSSENKRUPP ROBINS, INC\",Y4000\nREAL ESTATE DEVELOPER,METROPOLITAN MANAGEMENT CO.,Y4000\nPHYSICIAN,\"ALLERGY ASSOCIATES, INC.\",H1130\nSELF/ATTORNEY/INVESTOR,,J5100\nPRESIDENT,SPECIALTY HOMES,B2000\nEXECUTIVE CHAIRMAN,Morrow County,X3000\nOWNER,PECONIC STAR FLEET,Y4000\nEditor,Radar Magazine,C1100\nAttorney,Rappahannock Legal Services,J1200\nLHICU,,H5100\nADVANCED UNDERWRITIN,FIRSTMERIT INSURANCE GROUP,F3100\nFINANCE MANAGER,AL FRANKEN FOR SENATE,J1200\nAPPLIED COATINGS,,B3000\nBARBARA KING,,Y4000\nEEOC ATTORNEY,,X3000\nCEO,FAMILY AMUSEMENTS,Y4000\nGaming Regulator,St Regis Mohawk Tribe,G6550\nAttormey,Self Employed,K1000\nREALTOR ASSOCIATE,COLDWELL BANKER ALLIANCE,Z9500\nRN,Providence Medical Group,H0000\nDUN-RITE CLEANERS,,G5500\nVRAIN CORPORATION,,Y4000\nManager,JFI Corporation,G1200\nPRESIDENT,PRO THERAPIES OF ROANOKE INC.,G1200\nNUCLEAR ONCOLOGY S C,,H1130\nContractor,PPY Enterprises Inc.,Y4000\nMARKET,DTW MARKETING RESEARCH GROUP,Y4000\nPHYSICIAN,MAIMONIDS MEDICAL CENTER,H1100\nARMSTRONG DATA,,Y4000\nPresident,Valley View Dairy,G1200\nCF,PECO ENTERPRISES INC DBA MEDICOS,J1200\nORANGE CO FIRE DEPT,,X3000\nLAWYER,\"GIBSON, DUNN & CRUTCHER LLP\",K1200\nAEGIS INVESTIGATIONS,,Y4000\nFINANCIAL MACRO RESEARCH,HOOK & CO.,Y4000\nPresident & CEO,\"Sierra Machinery, Inc\",M2300\nBLUE CHIP CONSORTIUM,,Y4000\nOWNER,CORRISOFT LLC,Y4000\nEXECUTIVE ASSISTANT-PRESIDENT,GRADY HEALTH FOUNDATION,Y4000\nRAYMOND JONES & ASSOCIAT,,Y4000\nPRESIDENT,\"R.A.ABDOO AND COMPANY, LLC\",J1200\nPartner,Siebert Brandford Shank & Co,F2300\nATTORNEY,THE HARRIS FIRM,K2000\nASSET MANAGER,\"DUNVEGAN ASSOCIATES, INC.\",F2100\nPROFESSOR OF MATHEMATICS,BOSTON UNIVERSITY,Z9500\nPRIVATE INVESTOR,MCGINNIS INVESTMENTS,F7000\nAttorney/CEO,Moses Lake Industries,Y4000\nWEINTRAUB & OSTROFF INC,,Y4000\nAsscoiate Director,American University,H5100\nADMINISTRAT,STANLEY CONSULTANTS INC,B4400\nHomemaker,homemaker,A2300\nATTORN,KLEINBARD BELL & BRECKER LLP,K1000\nPHARMACIST,MERCY GENERAL HOSPITAL,H2100\nPROGRAMMER,SCIPS.COM,Y4000\nSR. VP HUMAN RES,THE CLOROX COMPANY,M1300\nOWNER,BF/BK ENTERPRISES,Y4000\nC.F.O.,DICKS SPORTING GOODS,M3600\nDEVELOPMENT DIRECTOR,THE HOLDEN ARBORETUM,Z9500\nINVESTMENT/CONTROLLER,\"WHEELER LIMITED PARTENRSHIP, LLC\",Y4000\nBUSINESSMAN,SELF EMPLOYED,J1200\nWRITER-EDITOR,U.S. INTERNATIONAL TRADE COMMISSION,X3000\nGeneral Manager,Five Star Plantation,Y4000\nCEO,AUGUSTA SPORTSWEAR,Y4000\nAssistant District A,San Francisco District A,Y4000\nVICE PRESIDENT OF CO,\"COMCAST CABLE COMMUNICATIONS, INC.\",C2200\nOWNER,EXPRESSIONS TO WEAR,Y4000\nExecutive Director,Kirkland Comm. College,H5100\nPresident,Monarch Inc,Y4000\nOwner,Elizabeth Kantor Insurance LLC,F3100\n\"HANIFEN, IMHOFF, INC\",,F2300\nEXECUTIVE SERVICE CO,,Y4000\nPRESIDE,TEEVIN BROS LAND AND TIMBER,A5000\nSR VP STRATEGY,CORNING INCORPORATED,C4000\nOWNER,SCHUETTE MOVERS,Y4000\nC.E.O.,Wolverne World Wide Inc.,Y4000\nPSYCHOLOGIST,ROSEVILLE SCHOOLS,X3500\nHOLM CONSTRUCTION,,B3000\nNurse,Mom At Home,Y4000\nTE,ETHICAL CULTURE FIELDSTON SCHOOL,Y4000\nGAYLORD CONTAINER,,A5000\nVeterinarian,Boehringer Ingelheim Vetmedica,A4500\nWASTE MANAGEMENT CONSULTANT,RECTEC CORP,Y4000\nPresident/CEO,\"Aladdin Industries, LLC\",M4000\nAttorney,\"Loeb & Loeb, LLP\",Z9500\nWINDEMERE REAL ESTATE COACHELLA VAL,,F4000\nWINEMAKER,KENT RASMUSSEN WINERY,Z9500\nEnglish Professor,University of California,H5100\nPRESIDENT,GARMONG INC.,Y4000\nHEDGE,DAVIDSON KEMPNER CAPITAL MGMT,F2700\nPRESIDENT & COO,MARTIN MARIETTA MATERIALS,B5100\nCPA,WITHUM SMITH & BROWN,Y4000\nMANAGER,ALYSHEBA PROPERTIES,Y4000\nOWNER,BEST EFFORT,G0000\nPHYSICIAN,ANCHOR RADIOLOGY,H1130\nContractor,Batjer and Associates,Y4000\nDIST SALES MANAGER,,Y4000\nExecutive,Bella Corp.,Y4000\n\"HICKMAN, GOZA, & GOR\",,Y4000\nTECHNICIAN,CABLEONE,Y4000\n\"CONTRACTOR'S NORTHWEST\",,Y4000\nPRESIDENT,CATTY CORP,Y4000\nTOPCONPRODLDR,\"PFIZER, INC./TOPCONPRODLDR\",H4300\nCompany President,\"Plastic Process Equipment, Inc.\",M2300\nSALEM CO-OPERATIVE BANK,,F1100\nPhysician,Flushing Hospital,H1130\nPhysician,Tulsa Bone & Joint,Y4000\nDIRECTOR,FIMIAN FOR CONGRESS 2010,J1100\nHOTEL DEVEL,LARRY BLUMBERG & ASSOC.,F4000\nFULTON COUNTY CONFLICT DEFENDER INC,,Y4000\nRESTAURANT HOTE,THE MEOLI COMPANIES,Y4000\nSahd,Self employed,Y4000\nSE-ATTNY,,K1000\nSenior Vice Presiden,Matson Navigation Company,T6200\nVice Chairman,Reynolds Metals Company,G5270\nINTEGRA BANK CORP,,F1100\nADM,US DEPARTMENT OF TRANSPORTATION,X3000\nSALES,GIGAOM,Y4000\nExecutive,Don Shulas Hotel,T9100\nCONTRACTOR,JOHN W. DANFORTH COMPANY,Y4000\nOAKS AT BRIARGROVE/TEACHER/ ACCOUNT,,Y4000\nPARTNER,VECTOR INVESTMENTS,F7000\nDEALER,RON HULETT AUTOMOTIVE INC,T2300\nINSURANCE SALES,PORTER INSURANCE AGENCY,F3100\nEVP MARKETING,O.C. TANNER,G5200\nPRESIDENT,AMERICARE MANAGEMENT CORPORATION,Y4000\nOWNER,HOISINGTON PLANTS & POTS,Y4000\nROUSSEAU LTD LIABILITY CO,,Y4000\nAssoc. Exec.,\"Nat'l Assoc. Realtor\",F4200\nExecutive,Russ Darrow Automotive,T2300\nBEADLES LUMBER CO,,A5000\nVICE PRESIDENT,SUPERMARKET NEWS,G2400\nVICE PRESIDENT,VIAQUEST,Y4000\nTOOLMAN,BAKER HUGHES,E1150\nCPA,Tatum Partners,Y4000\nVice President Of Security,Sallie Mae / Slm Corporation,F1410\nFRYE COMPUTER SYSTEMS INC,,C5100\nPRESIDENT,INDEPENDENT PROPANE CO.,Y4000\nPHILANTHROPIST,CINDY WINEBAUM/PHILANTHROPIST,Y4000\nGEORGE S BUSH & CO,,T1500\nExecutive Director,\"Credit Payment Services, Inc.\",Y4000\nJAGA MOTORS CO. INC.,,F1100\nREAL ESTATE DEVELOPER,\"CORIANDER DEVELOPMENT, LLC\",Y4000\nFIRST COMMERCE BANCSHARE,,F1100\nCOUNSELOR TO DIRECTO,F.E.M.A.,X3000\nKANSAS CITY EQUITY PARTNERS LC,,G1200\nINTERFACE FLOORING,,K1000\nsales,Gene Burkard,J1200\nATTORNEY,LAW OFFICE OF JOSEPH P. NOVAK,K1000\nChairman,A S Horner Constr Co Inc,B1000\nARCHITECT,\"99CAMBRIDGE, LLC\",Z9500\nPediatric Anesthesiologist,\"Children's National Medical Center\",H2000\nNURSE,,J1100\nChief Executive Officer,\"Anderson & Associates, Inc\",B4000\nteacher,Oasis,Y4000\nBANKER,\"VIRGINIA COMMUNITY CAPITAL, INC.\",F0000\nExecutive,Omega Homes,B2000\nChairman,Barr Nunn Transportation,T3100\nConsultant,Oliver Wyman Consulting,Y4000\nCOO,SUTTER HEALTH,H2100\nBOARD MEMBER,ANA,G5210\nLEADERSHIP COACH,THE MMC GROUP,Y4000\nNORTHERN PROPERTIES,,F4000\nCHAIRMAN AND CEO,\"STANLEY CONSULTANTS, INC.\",B4000\nMARKETING DIRECTOR,\"CHINA CITY OF AMERICA, INC\",X3000\nOwner,Cal-A-Vic,Y4000\nEXECUTIVE,METRO MANAGEMENT INC,Y4000\nCHIEF OF STAFF,US CONGRESSMAN JOHN LARSON,Y4000\nREAL ESTATE SALES,HELP U SELL HATCHER REALTY,F4200\nResearch,Pikes Peak Library District,X4200\nCHAIRMAN,\"NAVISTAR, INC.\",T3200\nPRO - RIVER INDIAN TRIBE,,G6550\nMANAGER,SELF-EMPLOYED,J1200\nOffice Admin,State Of M I,X3000\nPERRECA ELECTRIC CO INC,,E1620\nEXECUTIVE VIC,DTE ENG CORP SVCS LLC,E1620\nVP Strategic Init & Ext Mfg,Merck Sharp & Dohme,H4300\n\"MEDICAL MANAGEMENT RESOURCES,\",,Y4000\nHOWARD RICE NEMERORSKI ET AL,,K1000\nBI,,K1000\nOWNER,K.O.O. CONSTRUCTION,B1500\nVice President,R.W. Armstrong Assoc.,B4000\nEXECUTIVE,NOTTINGHAM SPARK,Y4000\nCLOTHING RETAILER,RGE INC,Y4000\nPRINCIPAL AND CONSULTING ACTUARY,MILLIMAN,F5500\nSOFTWARE ARCHITECT,MARQUAM GROUP,B4200\nREALTOR,ONE SOURCE REALTY AND MGMT,J9000\nVice President,PSC,M7000\nCALHOUN CO SCHOOLS,,X3500\nAritsan Partners Limited Partn,,F2100\nQUANTUM COMMUNICATION,,Y4000\nPARTNER,GROVNER CAPITAL MANAGEMENT,J5100\nSUPER STOP STORE,,Y4000\nPRESIDENT,TCEBC,JE300\nBUSINESS INVESTOR,,F2100\nConsultant,A Good Associates,Y4000\nOwner,Piedmont Garden Center,Y4000\nRealtor,DEPA,F4200\nREAL ESTATE BROKER,\"CASPER REALTY BROKERS, INC\",F4200\nGEN. MANAGER,OMAHA TRUCK CENTER,Y4000\nREVERE GAS & APPLIANCE,,Y4000\n\"REYNOLD S SHIRAI, M D INC\",,H1100\nMD,RFMC,Z9500\nCHAIRMAN OF T,KCI TECHNOLOGIES INC.,B1000\nResearch Assistant,Seattle Childrens Hospital,H2100\nLOBBYIS,MASTER BUILDERS ASSOCIATION,B1500\nSALES,\"WEB SERVICE GROUP, LTD\",Y4000\nJOHN COUDURES CO,,Y4000\nPHARMACIST,STANLEY APOTHECARY,H1750\nSPRADLEY & SPRADLEY,,K2000\nRestaurant Mgmt,Homemaker,F4100\nBROOK BOUND INC,,Y4000\nATTORNEY,BROOKE SHAW & ZUMPFT,K1000\nCHANDLER MEDIA INC,,Y4000\nBUSINESS OWNER,NCES,J7400\nINVESTMENTS,\"SUTTON CAPITAL ASSOCIATES, INC\",J1100\nOperator,Port Chester Nursing & Rehab Cente,Y4000\nOWNER,BROADCAST ACCOUNTING SERVICE,C5100\nCPA,Burr Pilger & Mayer LLP,F5100\nMANAGEM,\"FLYNN HEATH LEADERSHIP, LLC\",Y4000\nPresident,A A A Property Management,G1200\nSYMBIOSIS,,H4300\nINFO REQUESTED,PRACTICE MANAGEMENT INC,Y4000\nWAUBONSEE COMMUNITY COLLEGE,,H5100\nCONSULT,METROPOLITAN COORD. COUNCIL,Y4000\nexecutive,Charlie Company LLC,C2000\nTV Announcer,Self employed,C2300\nGPK PRODUCTS INC,,Y4000\nDirector,CT Hospital Association,H2100\nOWNER,NOVOYE RUSSKOYE SCORO,Y4000\nPRESIDEN,UNION STATE BANK AND TRUST,F1000\nADVANCE PRINTING,,C1300\nAttorney,Honigman Miller Schwartz et al,J5100\nRETIRED,NOT EMPLOYED,J7300\nPECAN MOBILE HOME PARK,,F4400\nEQUITY TR,HH TRADING VENTURESL.L.C.,Y4000\nPHYSICIAN,CENTRAL KENTUCKY ENT PSC,H1130\nINVESTOR,JURRIES CAPITAL MANAGEMENT,F2100\nEXECUTIVE,DEMOCRATIC NATIONAL CTE.,J1200\nNATIONAL ASSOC OF MANUFA,,M0000\nSALES MANAGER,CNL INTERNATIONAL,Y4000\nPODIATRIST,CROTTY FOOT CLINIC P.A.,H1130\nChairman,M S Management Corp,Y4000\nExecutive,Criterion Capitol,Y4000\nPRESIDENT,\"LONGEST, BEAM, NEFF\",B4400\nCounselor,Brownsville Independent School Distric,X3500\nVETERNARIA,COMMUNITY VETERNARIAN HO,Y4000\nEnglish instructor,retired,X1200\nACCOUNTANT,ROCHE LABS INC.,H4300\nCONSULTANT,WILLIAMS AND JENSEN,K2000\nLUTHER MIDELFORT MAYO HEALTH SYSTEM,,Y4000\nCONSULTAN,FINANCIAL SOLUTIONS GROUP,F0000\nDIRECTOR OF LEADERSHIP COMMUNICATIONS,COX ENTERPRISES,C2200\nAttorney,Bodoin Agnew Green & Maxwell,Y4000\nCREDITOR,PIONEER CREDIT,Y4000\nACCOUNTING-COMMISSIONS,KOVAL WILLIAMSON,Y4000\nREALTOR,,Y4000\nTIREY DISTRIBUTING,,G2850\nSales,BACOU-DALLOZ,Y4000\nOphthalmologist,HOWUEVER EYE CENTERS,Y4000\n\"Vice President, Midwest Region\",ICBA-Midwest Regional Office,F1100\nEXECUTIVE VP,H2M GROUP,B4200\nFINANCIAL ANALYST,LPL FINANCIAL,F2100\nSCHERB OFFICE LTD,,Y4000\nInsurance Ex,The Kilpatrick Company,Y4000\nMINING/INDUSTRIAL MINERALS,US ANTIMONY,Y4000\nMANLEY BURKE ET AL,,K1000\nRAPTOR PROPERTIES/ATTORNEY/REAL EST,,K1000\nNON-PROFIT EXECUTIVE,SELF,X4000\nATTORNEY,ANDERSON & FERDON PC,K1000\nAdvertising/Marketin,Goodway Group,Y4000\nPRESIDENT,ROADTICK INC.,Y4000\nPRESIDENT,\"FORE TRANSPORTATION, INC.\",Y4000\nContractor,Lakeville Construction Inc.,B1500\nPHYSICS LECTURER,U OF ILLINOIS,H5100\nSMALL BUSINESS ASSOCIATIO,,Y4000\nMAINTENANCE MANAGER,\"EAN HOLDINGS, LLC\",T2500\nCivil servant,City of Columbus,X3000\nTEXTILE MERCHANT,,M8000\nPHYSICIAN,CHRISTUS SPOHN-MEMORIALTRAUMA DEPT/,H1100\nNS,\"Carolina Neurosurgery, PA\",H1130\nGovt Relations Consu,Williams & Jensen,K2000\nVice President,Thompson Street Capital Partners,F0000\nKAZAN MCCLAIN EDISES ABRAMS ET,,K1100\nPhysician,\"Priscilla Tsao, MD\",H1100\n\"DIRECTOR GOV'T RE\",WILLIAMS & JENSEN,J7400\nAdministrative Manager,Pica Trade co ltd,Y4000\nCOUNSELOR,MORGAN COUNTY BOARD OF EDUCATION,X3500\nVINTAGE COINS/COIN DEALER/COIN DEAL,,C4000\nCEO,CENTURY VAN LINES,Y4000\nOFFICE MANAGER,MCINTYRE LUMBER COMPANY,Y4000\nPHYSICIAN,FORT BELVOIR COMMUNITY HOSPITAL,H2100\nBusinessman,\"Geotech Services, Inc.\",Y4000\nTOMCO AUTO PRODUCTS,,T2200\nRetired,Thirdpillar Systems,Y4000\nPresident,Diamond Data Systems,Y4000\nPRESIDENT,ERSA GRAE CORPORATION,F4100\nCONSULTANT,R.B.C. WESLTH MANAGEMENT,F2000\nExec,National Hydropower Assn,E1500\nEditor,CAMP Magazine,C1100\nAuto Parts Dealer,Hank Kinzey and Associates,Y4000\nNORTHEAST THEATRE CORP,,C2200\nC.O.O.,THORIUM ASSET MANAGEMENT,Y4000\nUTAH ED ASSOC,,L1300\nInsurance Executive,Investment Insurance Brokers LLC,F3100\nCHARTWELL PARTNERS,,F7000\nMYERS SMITH & GRANADY,,K1000\nINTS NAT GAS,,E1140\nFINANCIAL PRODUCTS ACCT MGR,\"WELLS FARGO BANK, N.A.\",J1200\nPartner,\"Brown Brothers, Harrington & CO\",F2100\nMENICHINO PAVING,,B3000\nACROPRINT TIME RESEARCH INC,,Y4000\n\"VICE PRESIDENT, SALES AND\",\"EV3, INC.\",Y4000\nPHYISICAN,SELF-EMPLOYED,G0000\nM. D.,Summit Behavior Healthcare,H1100\nARCHITECTURAL DESIGNER,FINCO LLC,Y4000\nSALES M,MDS-ANALYTICAL TECHNOLOGIES,Y4000\nVice President,Satyan Computer Services Ltd,C5130\nPHYSIC,SPORTS CARE & PHYSICAL REHAB,H1700\nEXECUTIVE VICE PRESIDENT AND COO,BOSTON CAPITAL,F4000\nTeacher,Mansfield City Schools,X3500\nPRESIDENT,RIVERSIDE SOUTH PLANNING CORPORATION,JE300\nJC GILARDONE & SON INC,,Y4000\nWELLS CARGO CONSTRUCTI,,B1500\nVP,EMERGENT BIOSOLUTIONS LANSING,D9000\nFinancial Analyst,JANA Partners,F2600\nexecutive search,PrinceGoldsmith LLC,G5250\nShoreline Family Dentistry,,H1400\nAuctioneer,Houston Auto Auction,G5000\nREAL ESTATE MANAGEME,ALISANOS L.L.C.,F4500\nBUSINESSMAN/FARMER,SELF-EMPLOYED,G0000\nCENTRAL COAST COOLING INC,,Y4000\nINSURANCE AG,QUERY INSURANCE AGENCY,F3100\nResearcher,Carnegie Mellon University,H5100\nSHELDON FOX & ASSOC LTD,,Y4000\nBUSINESS,ARCH STREET MANAGEMENT LLC,Y4000\nTRI-STATES SERVICE COMPANY,,G5000\nELECTRICAL EN,\"HARGIS ENGINEERS, INC\",B4400\nTHE GLADNEY FUND,,Y4000\nVice President,Farm Credit East,A4000\nPHYSICIAN,UNITED STATES GOVERNMENT,X3000\nDIRECT MARKETING SOLUTIONS,,G5220\nHANLEES TOYOTA,,T2310\nEDUCATION MANAGEMENT CONSULTANT,SELF-EMPLOYED,Y4000\nSUNBELT COCA-COLA BOTTLING CO,,Y4000\nEXECUTIVE,OASIS CONSUMER HEALTHCARE,Y4000\n\"VP, RA\",ITT ELECTRONIC SYSTEMS-RADAR,C5000\nCASEY GERRY CASEY WEST,,K1100\nINFORMATION TECHNOLOGY,CORNING INCORPORATED,C5110\nCOLLIER MGT & DEVELOPMENT,,Y4000\nVICE PRESIDENT,STATE FARM INSURANCE COMPANIES,F3400\nRANCHER,MASTER KEY RANCH,Z9500\nATTORNEY,RAMSEAUR & MCLEAN,K1000\nJASTAK ASSOC,,Y4000\nAccount Manager,Guy Williamson Inc,E4200\nPRESIDENT,GALLAGHER CONST. COMPANY,B1500\nATTORNEY,LEE A THOMPSON ATTORNEY AT LAW,K1000\nAttorney,\"Toyota Motor Sales USA, Inc\",T2310\nVP,CLEAN ENERGY FUELS,E1500\nDAB ASSOCIATES INC/PRESIDENT/CEO,,Y4000\nAV Tech,Mechdyne,Y4000\nPresident,E. Birch & Co.,Y4000\nPARTNER,BONITA PACKING CO.,A1400\n\"FRANKLIN MIDDLE SCHOOL, SOMERSET, N\",,Y4000\nConsultant,US Heating  &7 Cooling,J1200\nCOMM HOSP AT DOBBS FER,,H2100\nCERTIFIED NURSE-MIDWIFE,WOMEN AND INFANTS HEALTH CARE ALLIANCE,Y4000\nDIRECTOR,FANNIE MAE,J1200\nCPA,SELF EMPLOYED,F0000\nMGR,SABINE RIVER AUTHORITY,Y4000\n\"VP, SALES\",AUTOTRADER.COM,C2200\nASSISTANT A,\"BURNS NURSING HOME, INC\",H2200\nMAINE MACHINE PRODUCTS,,M2300\nMANAGING,MILLER FREISHMAN GROUP LLC,Y4000\nSTATE SALES COORDINATOR,AFLAC,F3200\nMIL DISTRIBUTORS OF VIRGINIA,,G2500\nFT TRYON CNTR FOR REHABILITATION &,,H2200\nReal Estate,Mark Twain Real Estate,F4000\nGENERAL MANAGER,CAPITAL PAINTING CO.,B3000\nBusiness Manager,\"V. W. S., Inc.\",Y4000\nCHAIRMAN OF THE,THE BAMA COMPANIES,G2000\nManager,SBC,C4100\nREGIONAL SALES AND MARKETING DIRECTOR,AMERIGAS PROPANE LP,E1190\nPRESIDENT,SH&J CONSTRUCTION,B1500\nPRESIDENT & CEO,VAN SCOYOC ASSOC.,K2000\nPRESIDENT,OCHOCO LUMBER CO.,B5200\nPresident,\"Benchmark Management, LLC\",Y4000\nMerchant,La Rambla Plaza,Y4000\nScientist,\"Children's Hospital\",H2100\nmom,n/a,J1200\nPhysician,Allentown Anesthesia Associates,H1130\nHomemaker,None,J7150\nMD,VICTORIA UROLOGIC,J7400\nCounselor,Jenkens & Gilchrist,K1000\nPhysicist,N.A.S.A.,X3000\nBusiness Executive,\"Berry Companies, Inc.\",M2300\nCATTLE RANCHER,\"SEXTON, INC\",A3000\nADMINISTRATOR,BALL STATE UNIVERSITY,H5100\nGeneral Manager,Mt Hood Meadows Ski Resort,Y4000\n\"Barlow, Eddy, Jenkins, P.A.\",,B4200\nOWNER,KEMPFER CATTLE COMPANY,Y4000\n\"BARNES, BROWNING, TANKSLEY, ET AL\",,K1000\nPRESIDENT,BAER,Y4000\nFarm Mfg,C.R. Laine Farm,A1000\nFREIGHTLINES OF TOLEDO,,T7000\nREGISTERED NURSE,BOULDER CITY HOSPITAL,H2100\nVP,MICE NA,Y4000\nTHE PHOENIX MANUFACTURING CO,,Y4000\nVice President,National Life Insurance Company,F3300\nMEDIA INVESTOR,SELF-EMPLOYED,G0000\nWEISMAN-ENTERPRISES INC,,G4850\nPresident,Larry Group Inc,Y4000\nAMERICAN SECURITIES CAPITAL PA,,F2600\nENGINEER,TCS,Y4000\nNORWOOD COMPANY,,Y4000\nAttorney,\"Texas Riogrande Legal Aid, Inc\",K1000\nPartner,\"Becker & Poliakoff, P.A.\",K1000\nV.P.,SCOTT LUMBER COMPANY INC.,Y4000\nATTORNEY,BRAGG MANSFIELD & STEGALL,K1000\nINFO REQUESTED,EAST BAY DELI,G2900\nREGENCY HOMES,,J1100\nANESTHESIOLOGIST,ORTHOPAEDIC ANES SPEC,H1130\nPAGEMARK INC,,Y4000\nMILLS PENINSULA CORP,,H2100\nRESTAURANT OWNER,SELF - EMPLOYED,G2900\nJB PARTNERS PRIVATE,,F7000\nYAKE HOUSEHOLD,,Y4000\nOWNER,KEMP AND SONS GENERAL SERVICES,Y4000\nNeonatologist,CCNS,Y4000\nADMINISTRATOR,CARRINGTON HEALTH CENTER,H2100\nALLEN AND CASEY,,Y4000\nVP,REPUBLIC NATIONAL DISTRIBUTING COMPANY,J5100\nAMER AMUSEMNT ARCADE,,Y4000\nMEMBER,NATL FEDERATION OF REP WOMEN,Y4000\nCENTRAL HEALTH,,H3000\nOWNER,E-SEEK INC.,G1200\nPRESIDENT,TRIPLE A. FARENER COMPANY,Y4000\nOwner,Waterford Physical Therapy,Y4000\nVP. MARKETING SALE,ADL EMBEDDED SYS.,Y4000\nATTORNEY,\"HOVDE, DASSOW AND DEETS\",K1000\nGAS PRODUCER,INDEPENDENT OIL,E1160\nS,MERCY MEDICAL CENTER - NORTH IOWA,H2100\nARCHBOLD MEM HOSP,,Y4000\nFINANCIAL ANALYST,ADOBE SYSTEMS INC,C5120\nTRANSPORTATION,FEDEX EXPRESS,T7100\nBOB HARRELL PROPERTY INC,,F4000\nINVESTMENT COUNSELOR,CHASE INVESTMENT COUNSEL CORPORATION,F7000\nENGINEER,\"ARCELORMITTAL USA, INC.\",M2100\nCHILDREN FOUND,BEGINNING W,H2100\nVICE PRE,PMI MORTGAGE INSURANCE CO.,F3100\nBUSINESS  OWN,BERGHOFF DESIGN GROUP,Y4000\nVP ENVIR SAFE&HTH ASTGC,PFIZER INC.,H4300\nReal Estate,GMAC/Cutler,F4000\nCEO,JULIEN STUDLEY CO.,Y4000\nDIR-ACFT,RAYTHEON AIRCRAFT COMPANY,D3000\nNEUROLOGIST,HYANNIS NEUROLOGY,H1130\nINDUSTRIAL ENTERPRISE,,Y4000\nATTORNEY,\"KIMLEY-HORN AND ASSOCIATES, INC.\",B4000\nHOUSEHOLD FINANCE CORP OFF PRES GE,,F1400\nNYS DIV OF HOUSING,,X3000\nP.H.D.,ROBERT G. CRUMMIE M.D.,H1100\nATTORNEY,WEINER & LESNIAK,K1000\nREAL ESTATE,B & B LEASING INC.,F4000\nOwner,Gran-net Innovative Tech Grp,Y4000\nMED TECHNOLOGY,ST. LOUIS UNIVERSITY,H5100\nALLEGHENY & WESTERN ENERGY CRP,,E1120\nMEDIA CONSU,HACJNEY HACKNEY & SMITH,G5210\n\"Sr. VP, Issues Mgmt\",Edison Electric Inst,E1600\nFARMERS UNION MUTUAL INSURANCE COMP,,F3100\nExecutive,\"Osage Industries, Inc\",T2200\nFinancial advisor,\"Flautt Financial, Inc\",F0000\nExecutive Committee,NJDC,C1100\nINSURANCE AGENT,\"D.D. COX AGENCY, INC.\",F3100\nENGINEER,M-DOT AEROSPACE,Y4000\nCHARTER FUNDING INC,,Y4000\nGEOLOGICAL ENGINEER,S. P. C.,Y4000\nAttorney,US Government - DOJ,X3200\nCOMMISSIONER,\"BARRY COUNTY, MO\",X3000\nManaging Member,All Scrap Recycling LLC,Z9500\nENGINEER,BARRETT ENGINEERING,B4400\nAttorney,Howrey Simon,K1000\nBUSINESS OWNER,THE SCHNIDER GROUP L,Y4000\n\"PROFESSOR AND CHAIR, DEPARTMENT OF PAT\",DREXEL UNIVERSITY COLLEGE OF MEDICINE,H5150\n\"SVP, Policy Affairs\",Capital One,F1400\nDHHS/NIH/SCIENTIST,,J7150\nHAL ZIEGLER AUTO,,T2000\nCHAIRMAN & CEO,BAXA CORPORATION,H4100\nATTORNEY,THE BLOCK LAW FIRM,K1000\nNeurosurgeon,Center For Neuroscience Orthopedics an,H1130\nExecutive,C P S,F4000\nMember,VA House of Delegates,X3000\nNetwork Administrato,Nintendo of America Inc.,J1200\nSPORTS EQUIPMENT SALESMAN,SELF,Y4000\nEXECUTIVE,\"SATELLITES UNLIMITED, INC.\",C2200\nCOLLIERS TURLEY MARTIN TUCKER,,Y4000\nAttorney,Schochor Federico & Staton,K1000\nPresident/owner,Electro Chemical,M1000\nEXECUTIVE,\"D.P.T., INC.\",Y4000\nBuilder,K  Hovnanian,J1200\nADMINISTRATOR,STATE OF SOUTH DAKOTA,X3200\nPresident & CEO,Rowan Bank,F1200\nATTORNEY,GILMAN INVESTMENT CO.,J7300\nChief Of Police,Bone Of Hoansbual,Y4000\nPRESIDENT,ACCREDITED SURETY AND CASUALTY CO./,F3400\nHAWKINS ASSOCIATES INC,,G5250\nDIRECTOR,Utah County Crime Prevention,J1100\nComputer Specialist,Federal Gov,X3000\nBoard Of Education M,Los Angeles Unified School District,X3500\nVICE PRESIDENT,GUAM SHIPYARD,D5000\nExecutive,\"MEDNAX Services, Inc\",Y4000\nInsurance Agent,Aflac,F3300\nPSYCHIATRIST ASSOCIATES,,H1110\nBusinessman,self,M2100\nDOMESTIC ENGINEER,SELF,F7000\nEDMOM & VINES,,Y4000\n\"PARICHAN, RENBERG, CROSSMAN ET AL\",,Y4000\nMETROPOLIS DEVELOPMENT CO,,Y4000\nUS DEPT. OF TRANSPORTATION,,X3000\nPHYSIC,NORTHSIDE FAMILY PRACITCE PC,H1100\nEngineering Manager,The Code Lab,Y4000\n\"Vice President, Acquisitions\",\"Cedar Shopping Centers, Inc\",F4100\nCHAIRMAN OF THE BOARD,OURISMAN AUTOMOTIVE ENTERPRISES,T2300\nMANAGER,\"BORDEN LIGHT MARINE CONTRACTING, INC.\",Y4000\ngraduate student,New York University,Y1000\nExecutive,CV Industry,Y4000\nPRESIDENT,DEVERS GROUP INC.,Y4000\nGENEVA CLUB BEVERAGE CO INC,,G2600\nBARTON COUNTY IMPLT COMPANY,,A4200\nLawyer,Louden Legal Group LLC,Y4000\nProf,Ohio University,H5100\nProfessor of Educati,Sacred Heart Univ,H5100\nSELF EMPLOYED,ARC MANAGEMENT,Y4000\nSMITH JENKINS,,Y4000\nGP CONSTRUCTION,,B1000\nPhysician,West Reading Radiology Assoc,H1130\nPWC LLP,,F5100\nSTATE STREET CORP,,F1100\nCHAIRMAN,\"KIRLIN'S INC.\",Y4000\nPresident,Jordan Lumber & Supply,B5200\nInformation Requested,Aramark,G2910\nDISABLED,ANESTHESIA MED CONSULTANTS,H1130\nPresident,Crosby Diesel Services,Y4000\nCHAIRMAN,TASTIDILITE/PLANET SMOOTHIE,Y4000\nQI Coordinator,Coastal Homecare,H3100\nEXECUTIVE,\"NERT,INC\",M2300\nRIVERVIEW PLANTATION,,Y4000\nCO-PRESIDENT,UTOPIA JEWISH CENTER,Y4000\nGENERAL MANAGER,INFORMATION REQUESTED PER BEST EFFO,T2500\nBEXAR COUNTY DEMOCRATIC PARTY,,J1200\nPRESIDENT,ATLAS BUTLER,Y4000\nWRITER,REGENCY TV,C2300\nPRINCIPAL,MIDWEST EMPLOYMENT SERVICES INC,Y4000\nSenior Vice Presiden,James Lee Witt Associates,Y4000\nPRESIDENT,GRAND AVENUE TRANSPORTATION,T4000\nVICE PRESIDENT,HCR,Y4000\nCOPAKEN WHITE BLUFF REAL ESTATE,,F4200\nATTORNEY,\"POLK, PROBER & RAPHAEL\",Y4000\nJEWELER,KEVIN PUGH,Y4000\nMONTALBANO LUMBER,,B5200\nCHAULK SERVICES,,H3000\nATTORNEY,\"GROH-WARGO CO., LPA\",Y4000\nMARVIN MEWS CO INC,,Y4000\nWILLMES & JENSON,,K1000\nPHYSICIAN,SANTA ROSA COMMUNITY HEALTH CENTER,Y4000\n\"DIRECTOR, PHARMACY OPERATIONS\",\"CAREMARK, L.L.C\",G4900\nRetirecd,none,X1200\nPresidentvectren Enterprises,Vectren Enterprises,E1620\nENGINEER,SUN MICROSYSTEMS,J1100\nPARTNER,\"B, BUNCH CO. INC.\",J1100\nPHJYSICIAN,OB-GYN WOMEN PHYSICIANS INC.,H1100\nHousing Policy Speci,Us Dept Of Housing,Y4000\n\"ANESI, OZMON, LINDEN & RODIN\",,K1000\nDIRECTOR,SKYBRIDGE CAPITAL,F2600\nContractor,Central Building Preservation,Y4000\nHOUSEWIFE,,F4400\nPUBLIC RELATIONS,\"CORNING, INC.\",C4000\nBUSINESS OWNER,VERITY VAN LINES INC.,Y4000\nOWNER,\"MALLETT BUILDINGS, INC\",B1000\nATTORNEY,FRENTZ & FRENTZ,Y4000\nVIRGINIA FARM BUREAU MUTUAL INS. CO,,J1100\nPRESIDENT,GENESEE BUSINESS RADIO,C2100\nPHYSICIAN,NORTHSIDE ANESTHESIOLOGY,H1130\nBlvd Bldg Inc,,Y4000\nARCHITECT,TMS ARCHITECTS,B4200\nMEMBER,\"QUICK TITLE AGENCY, LLC\",F4300\nmedia,Gold Standard Multimedia,Y4000\nKIRK CO,,Y4000\nCORPORATE COMMU,TESSCO TECHNOLOGIES,C4300\nCHAIRMAN AND CHIEF EXECUTIVE OFFICER,MAGNA CARTA COMPANIES/CHAIRMAN AND,F3100\nPhysician,Park Avenue Dermatology Associates,H1130\nPRESIDENT,LOGGINS MEAT COMPANY INC.,G2300\nSTW FIXED INCOME MANAGEME,,F2100\nBUCKHEAD BEEF CO,,G2500\nPsycholotist,Auster Riggs Center,Y4000\nCONSULTANT,CONSULT LTD.COM,Z9500\nVICTOR INTERNATIONAL,,F4000\nJEWELRY DESIGNER,Self employed,M3400\nINSURANCE AGENT,LATTA INSURANCE INC,F3100\nVice President,Blue Cross/ Blue Shield of MA.,F3200\n\"VICE PRESIDENT, HUMAN RESOURCES\",\"PARTNERS HEALTHCARE SYSTEM, INC.\",H2100\nMARKETING EXECUTIVE,\"CKE, INC.\",Y4000\nAUTO SALES,HALL AUTO MALL,T2300\nATTORNEY,THE SESTRIC LAW FIRM,K1000\nPROFESSOR PROGRA,RUTGERS UNIVERSITY,H5100\nPhysician,Medical Emergency Professional,H1100\nRETIRED,EXPERIENCE CORPS,Z9500\nOSCAR N HARRIS & ASSOC,,Y4000\nVIRGINIA EMERGENCY ASSOC,,Y4000\nDIR. CUST. INST,AIR LIQUIDE AMERICA,M1000\nFundraiser,CDF,Y4000\nBiostatistics,\"Statistical Consulting & Solutions, LL\",Y4000\nTHE CATO CORPORATION,,G4300\nOWNER,KENNY COMPANIES,F4000\nPresident,Midsouth Adjustment Co.,Y4000\nPHYSICIAN,PACIFIC ANESTHESIA,J7400\nHOMEMAKER/ACTIVIST,N/A,Y1000\nSenior Partner,Markhoff & Mittman,K1000\nPRESIDENT MATTEL BRANDS,MATTEL INC.,M3500\nDermatologist,Colorado Springs Dermatology,H1130\nATTORNEY,\"GOROSPE & SMITH, PLLC\",Y4000\nOwner,Hallrich Photography,G5240\nManagement Consultant Information Serv,Mitchell & Associates,Y4000\nowner,Prestress Engineering Corp.,B4400\nT R K INC,,Y4000\nHEALTH CARE MANAGEMENT,CLEAR CHOICE HEALTH CARE,H3100\nDUNPHY CONST,,B1500\nTHEMO-GUARD INC,,Y4000\nPRESIDENT,BUSSIO ENTERPRISES,Y4000\nManager,Northeast Equity,F2100\nSTUNTZ DAVIS & STAFFIER,,Y4000\nRetired PA Senator,None,X1200\nParalegal,Genentech Inc,Z9500\nVICE PRESIDENT,TENNESSEE APPAREL,M3100\nVice President of Operations,Fluxion Biosciences,H4500\nAttorney,Ferrell Law,K1000\nWEB DEVELOPER,BEAN CREATIVE,Y4000\nDV GONZALEZ ELECTRIC INC,,B3200\nATTORNEY,\"SKADDEN, ARPS, SLATE, MEAGHER & FLO\",K1200\nBUCHBINDER TORRICK AND COMPANY LLP,,Y4000\nCENTRAL POWER SYSTEMS,,Y4000\nEXECU,\"DREYER'S GRAND ICE CREAM INC.\",A2000\nATTORNEY,\"MALONE AND ASSOCIATES, PC\",K1000\nSELF/HOUSEWIFE/MOTHER,,G5270\nDeveloper,The Snyder Group of Co,Y4000\nATTORNEY,CURRAN HOLLENBECK & ORTON S.C.,Y4000\nExecutive,Provide Commerce,Y4000\nATTORNEY,COOTER MANGOLD ET AL.,Y4000\nHERZFELD & STERN,,J5100\nretired college professor,Kent State University,J1200\nSHELBY INDUSTRIES,,T8300\nSOCIOLOGIST,DOGWOOD CENTER,J7400\nTHE DUCANE COMPANY,,M2300\nCHRYSSON REALTORS,,F4200\nArchitectural Consultant,\"Acai Associates, Inc\",B4200\nBROADCAST CAPTIONER,DOYON CAPTIONING,Y4000\nCEO,KIERNAN VENTURES,Z9500\nREALTOR,BEVERLY HANKS REALTY,F4200\nENGINEER,\"CORAER TURA, LLC\",Y4000\nBANKER,MORGAN STANLEY DEAN WITTER/BANKER,J5100\nSENIOR VICE PRESIDENT,FIDUCIARY MANAGEMENT INC,F5000\nPUB,BUSINESS STRATEGIES AND INSIGHT,G5270\nRETIRED,TRINITY HEALTH,J7400\nPresident & CEO,National Farm Life Insurance,F3300\nDIRECTOR,NEBRASKA STATE EDUCATION ASSOC,L1300\nWORTHINGTON CONSTRUCTION CO,,B0500\nCLAIM SERVICES RESOURCE GRO,,Y4000\nFilm Producer,\"Antidote Films, Inc.\",J1200\nLAWYER,CARLSMITH BALL LLC,K1000\n\"Pollack & Flanders, LLP\",,Y4000\nWEB SERVICE CO.,,G5500\nGRAPHIC DESIGNER,HENNESSEY DESIGN LLC,Y4000\nExecutive,KEY CORP,F1100\nTENT SALESMAN,ALASKA STRUCTURES,D9000\nMARTIN OIL CO,,E1120\nmerchant seaman,MSC,Y4000\nZAPATA HAYNIE CORP,,E1150\nATTORNEY,PATTON BOGGS AND BLOW,K2000\nEZELLS CATFISH,,G2350\nSELF NURSING HOME INC.,,H2200\nLicensed Minister,Victory In Jesus Wwmo  Inc.,X7000\nLASCARIS DESIGN GROUP INC,,Y4000\nKLEIN DENATALE GOLDNER ET AL,,Y4000\nARCHIT,GREGORY T-HICKS & ASSOCS. PC,B4200\nPARTNER,IDI,Y4000\nENTERTAINMENT,ALLOY ENTERTAINMENT,C1100\nRN,PORTS REG HOSPITAL,H2100\nStudent,Ai,J1200\nSenior Project Coordinator,Baylor College of Medicine,H5150\nOwner,Jims One Hour Cleaners Inc.,Y4000\nREAL ESTATE,,G0000\nDAVIDOFF & MALITODAVIDOFF & MALITO,,K1000\nWomens Environmental,Communications Dir.,Y4000\nNexxar,President/CEO,G0000\nRATA,,Y4000\nEXECUTI,SOUTHWESTERN GREAT AMERICAN,Y4000\nPresident,JMS Companies,Y4000\nMANAGER,BILLS BISTRO INC.,Y4000\nChairman,The Estee Lauder Companies Inc,M3300\nNONE/RETIRED,NONE/RETIRED,X1200\nCAPITOLINE,,G5210\nPHYSICIAN,OTOLARYNGOLOGY CENTER OF E TN,H1130\nPhysican Md,Self,H1100\nSR. VP AND CIO,LANCASTER GENERAL HEALTH,H3000\nSALES,GLEN RAVEN INC,M1400\nGALAXI MARINE SERV,,Y4000\nPARTNER,\"AVM, LTD\",Y4000\nTRIBAL COUNCIL,EASTERN BAND OF CHEROKEE INDIANS,Z9500\nSENIOR SOFTWARE DEVE,PINNACLE SYSTEMS,Y4000\nBusiness Agent,Carpenters Local 742,Y4000\nDirector of gov Relations,Jamian McElroy,Y4000\nMANUFACTURER,INDUSTRIALIST,Y4000\nVICE PRESIDEN,HYATT REGENCY CHICAGO,T9100\nBUSINESSMAN,\"YUBA COUNTY ENTERTAINMENT, LLC\",Y4000\nARCHAEOLOGIST,NM DOT,Y4000\nCHEIF EXECUTIVE OFFICER,WESTERN NATIONAL GROUP,F4500\nFOUNDER,MEMPHIS CHARITABLE FUND,Y4000\nVA MEDICAL CENTER/RN/RN,,H2100\nGENERAL CONTRACTOR,FAMCO INC.,Y4000\nCCO,ELLIOTT MANAGEMENT CORP,F2700\nEARLY CASSIDY & SCHILLING INC,,F3100\nAttorney,L A County District Attorney,K1000\nOWNER,CHARLES SHIPP & ASSOC.,K2000\nDR`S GIRALDO & BERNAU,,Y4000\nEXECUTIVE,\"SAHARA, INC.\",Y4000\nCHAIRMAN/CEO,THE HILLARD CORPORATION/CHAIRMAN/CE,Y4000\nDEVELOPER,OBAMA FOR AMERICA/DEVELOPER,J1200\nAM-PRO PROTECTIVE AGEN,,G5290\nHANZMAN CRIDER KORGE,,K1000\nphysician,Anesthesia Care Associates,Z9500\nPRESIDENT,KELTIC SERVICES,Y4000\nRANCHING,SELF,A3300\nIndependent Oil & Ga,Self Employed,E1120\nDirector,North State Bank,F1200\nOWNER,\"CAJUN SUNRISE, LLC\",Y4000\nFinancial Advisor,\"Saber Partners, Inc\",J1200\nMANAGER,OBERTO SAUSAGE COMPANY,G2300\nCommissioner,Employment Security Commission,G5290\nINSURANCE-ESTATE PLANNER,,F3100\nSoftware Consultant,Coordinate Operations,Y4000\nATTORNEY,BALLARD SCAUR,Y4000\nREAL ESTATE EXECUT,AHD VENTURES LLC,F4100\nTEACHER,HARPER COLLEGE,H5100\nMERIDIAN GROUP,,F4000\nATTORNE,LAW OFFICES OF MARVIN LUNDY,K1000\nHANSON ENGRAVING COMPA,,M0000\nDirector,Ohio Hospital Association,H2100\nPresident,ASRC Management Services,Y4000\n\"MID-AMERICAN WASTE SYSTEMS, INC\",,E3000\nINVESTMENTS,CPP,Y4000\nPRESIDENT,MCA INC.,C2400\nOWNER,HODGDON POWDER COMPANY/OWNER,M5300\nGRAPE FARMER,SELF - SANGIACOMO,A1400\nPRESIDENT,SIMS METAL MANAGEMENT/PRESIDENT,M2400\nCEO,SILVER POINT CAPITAL,F2700\nHOPKINS AND SUTTER,,E1120\nSoftware Designer,Buildium LLC,Y4000\nWEISS GROUP,,Y4000\nPATHOLOGIST,\"CHARLESTON PTHOLOGY, PA\",H1130\nVICE CHAIRMAN,WVMIC,F3100\nREAL ESTATE BROKER,REAL ESTATE II INC/REAL ESTATE BROK,F4200\nSEPCA PRODUCTS CORP,,M2300\nAUTHOR PUBLIC POLICY,,C1100\nBUSINESS MANAGER,\"COMPETITRACK, INC\",G5210\nMUSIC INSTRUMENT RENT,SELF-EMPLOYED,F2100\nManager Accounting S,Pioneer Investments,F2100\n\"O'CONNELL FINANCIAL & ENGINEERING\",,F0000\nPARTNER,ATLAS ROOFING CONTRACTORS,B3000\nAttorney,Ice Miller Donadio & Ryan,K1100\nDr.thomas A Shealy,Shealy Eye Laser Center,H1100\nDIAGNOSTIC RADIOLOGIST,RHODE ISLAND HOSPITAL,H1130\nAppariser / Consulta,Self,Y4000\n,DEVELOPERS DIVERSIFIED REALTY CORP,F4200\nHOOPER EVAN & KOBS,,K1000\nBUILD PRODUCTION MANAGER,MICROSOFT CORP,C5120\nRETIRED,,C5120\nATTORNEY,\"SIMMONS FIRM, LLC\",K1100\nRE-INSURANCE DIVISION OF USF & G,,Y4000\nOrthopaedic Surgeon,Taos Orthopaedic Institute,H1130\nEVP,Cardinal Financial Corp,F0000\nSHORENTEIN COMPANIES,,F4000\nowner,Tampa Bay Lightning,G6400\nTrader,CSFB,F2100\nMANAGER,KONOVER CONSTRUCTION CORP.,B1000\nMED DOCTOR,SELF EMPLOYED,H1100\nBOB NEW INC,,Y4000\nS & D ASSOCIATES,,Y4000\nCIO,Central Garden & Pet Company,Y4000\nPRESIDEN,EXCEL SERVICES CORPORATION,Y4000\nDirector Of Real Est,Industry City Associates,F4000\nClerk/NYSE,Garban Inter-Capital,F2100\n\"MCCUTCHEN, DADE ET AL\",,K1000\nROWE POTTERY,,Y4000\nCONSULTANT,SIMON AND COMPANY,K2000\nIt Consultant,Self,C5130\nPRESIDENT,\"GAC TV,SCRIPPS NETWORKS INTE/PRESID\",C5120\nADMINISTRATOR RN,SAAD HEALTHCARE,Y4000\nDIRECTO,FIRST BANK OF HIGHLAND PARK,J5100\nEXECUTIVE,\"RHO, INC.\",H3000\nOWNER,EPOCH RESTAURANT GROUP,G2900\nEXECUTIVE,IBP AEROSPACE GROUP INC.,Y4000\nPresident/CEO,\"Maymead, Inc.\",Y4000\nVICE PRESIDENT-CONSTRUCTION,\"AVALONBAY COMMUNITIES, INC.\",F4100\nPRESIDENT,PEPSI COLA OF NE,Y4000\n\"Director, Power Production\",\"Associated Electric Co-op, Inc\",E1610\nPAWNBROKER,MR. PAWN,G4600\nFAXWOODS RESORT CASINO,,G6550\nVice Chairman,Quinn Gillespie & Associate,K2000\nBLUMENTHAL PRINT WORKS INC,,C1300\nEngineer,Montgomery Watson Harza,Y4000\nTRADER & CEO,NEW MOUNTAIN CAPITAL,F2600\n\"Vice President, Gene\",Georgia Crown Distributing Co,G2850\nInsurance Sales,Bailey Insurance Service,F3100\nInformation Requeste,\"Dunavant Enterprises, Inc.\",Z9500\nWALLICK AUCTION & REALTY,,F4000\n21 INTL HOLDINGS INC,,M1500\n\"LABORERS' LOCAL #561\",,LB100\nVENTURE CAPIT,RAINY RIVER RESOURCES,F2500\nReal Estate,Reliance Cos,F4000\nbiologist,University of Michigan,H5100\nPRESIDENT,CAVANAUGH ELECTRICAL CONTRACTING INC,B3200\nEXECUTIVE,AOGIS CORPORATION,Y4000\nKUALA HEALTH CARE,,H2200\nSoftware Engineer,IDX Systems Corp.,C5120\nMELTON TRUCK LINES INC,,T3100\n\"TJ'S SAFETY TRAINING & STAFFIN\",,Y4000\nSAP Basis Administrator (IT),Kelly Services,G5250\nDAVIS KIDD BOOKSELLERS,,G4600\nPROFESSOR,UNIVERSITY OF D.C./PROFESSOR,H5100\nBUSINESSMAN,R&L MANAGEMENT CO.,J5100\nCashier,The Busy Day Market,Y4000\nUNIVERSAL AVIATION SERVICES,,Y4000\n\"VP,  Advanced Systems & Technology\",BAE Systems,D2000\nVP Pharmacy Services,Moms Pharmacy,G4900\nAttorney,GORDON-HASKETT CAPITAL CORPORATION,F2100\nCONSULTANT,SCOTT HOWELL & COMPANY LP,G5210\nPOSTER COMPANY,EMPLOYER WAVE LLC,J1100\nASSOCIATION MANAGEMENT,OHIO CORN GROWERS,A1500\nGeneral Sales Manage,\"Eastern Industries, Inc.\",B5100\nPresident,Wright Wisner Corp,G2850\nExecutive,Anheuser Busch Cos Inc,G2810\nDEALER,FERRIS CHEVROLET INC,T2300\nOilfiel,Plaster and Ward Consulting,Y4000\nHedge Fund,Duration Capital,F0000\nPsychologist,Oxnard Union High School,Y4000\nBoth trtired,none,J7400\nVICE PRESIDENT OF,EMERSON ELECTRIC,C5000\nDIRECTOR SPECIAL PROJECTS,FOUNDATION FOR A COLLEGE EDUCATION,Y4000\nInternal Audit,Rambus Inc,J7400\nEXECUTIVE,FERMENTA ANIMAL HEALTH,Y4000\nattorney,FOJP Service Corp,F3100\nPRES,\"ESSLINGER-WOOTEN-MAXWELL, INC.\",F4200\nHOMEMAKER - RETIRED,,Z9500\nCONSULTANT,ELECTVIVATION,Y4000\nLaw Professor,University of Michigan Law School,H5170\nATTORNEY,BAKER DONELSON BEARMAN CALDWELL,K1000\nALEGRIA REAL ESTATE,,F4000\nAttorney,\"Nutter, Mcclennen & Fish, LLP\",K1000\n\"SENIOR MANAGER, GOV'T AFFAIRS\",NOVO NORDISK,H4100\nJOHNSON BANK,,F1100\nGRAYSTONE INTERNATIONAL INC,,Y4000\nInformation System,Self Employed,G0000\nDANBURY BOARD OF ED,,X3500\nInstitutional Sales,Merril Lynch,F2100\nSTRUCTURED SETTLEM,CAPITAL PLANNING,F3300\nCOMMUNICATIONS STRATEGIST,GMMB,G5210\nJP MORGAN PARTNERS LLC,,F1100\nPRESIDENT,ANASTASI COMPANY,Y4000\nDEEP SOUTH SURPLUS OF TEXAS INC,,Y4000\nPHYSI,ATL. INFECTIOUS DISEASE SPEC.,Y4000\nMETLIFE FINANCIAL SERVICES,,J7500\nActor,SAG,Y4000\n\"VICE PRESIDENT, EXTERNAL R\",BATTELLE,D9000\nPREMIER RISKTECH,,F3100\nPHYSIC,HARRIMAN JONES MEDICAL GROUP,H0000\nVP SALES,PINC SOLUTIONS,Y4000\nBUSINESSMA,INVICTUS INDUSTRIES LLC.,Y4000\nExecutive Director,Syracuse Center of Excellence,Y4000\nPRESIDENT,COMPTELL,Y4000\nVP Information Techn,Invacare Corporation,H4100\nCPA,RECORD KEEPERS LLC,Y4000\nPRINCIPAL,KNIGHT CAPITAL,F2100\nFALCON SEABOARD RESOURCES,,E1620\nATTORNEY,\"ROTHSCHUID, WISHEK & SANDS\",K1000\nClassroom Teacher,AUGUSTA CNTY PUBLIC SCHLS,L1300\nAttorney,Self,G6400\nEXECUTIVE,HARRISON GROUP/EXECUTIVE,G2900\nData Analyst,SRA Intl,D9000\nR.N.,\"Dr. John Provet, M.D.\",H1100\nCONSULTING ENVIRONMENTAL ENGINEER,ENVIRON INTERNATIONAL CORP.,G5270\nOWNER,BOYDS AUTO GLASS,Y4000\nUFCW REGION 8 STATES COUNCIL,,LG100\nPAD,,Y4000\nself-empl prop,Berman and Company,G6100\nBROADCASTER,STEWARDSHIP MINISTRIES,Y4000\nCUSTOM AUTO CENTER INC,,T2400\nMCPHEE ELECTRIC LTD LLC,,B3200\nACCOUNTING MANAGER,THE BANK OF NEW YORK MALLON,J7400\nRESEARCH ANALYST,JANUS CAPITAL,Z9500\nPublic Speaker,Self,J1100\nMAGNA GRAPHICS INC,,Y4000\nADMINISTRATOR,PAIN DIAGNOSTIC ASSN.,H1130\nPresident,American Republic Insurance Company,F3200\nELECTRTICAL ENGINEER,MOBIUS SEMICONDUCTOR,Z9500\nPARTNER,\"CARRUTH MANAGEMENT, LLC\",F7000\nMARKETER,\"CCS INNOVATIONS, LLC\",Z9500\nMAYOR,CITY OF WASHINGTON,X3000\nVECTOR GROUP LIMITED,,A1300\nProfessor,Retired ASU Professor,X1200\nPRESIDENT,HARTY & ASSOCIATES,J1100\nScreenwriter,FreeLance,G5200\nTRAVEL INN HOTEL,,T9100\nCOMMUNITY YOUTH SPORTS FOUNDATION,,X4000\nExecutive,Council of Federal Home Loan Bank,F4600\nSELF EMPLOYED,ORGANIC HARVEST,Y4000\nSR. AIRPORT OPERATIONS AGENT,PORT AUTHORITY N. Y. & N. J.,X3000\nJOHN S LANE & SON,,B5100\nEXECUTIVE,PRESIDENTIAL LIFE INSURANCE COMPANY,F3300\nOWNER,WALKER FINANCIAL,F0000\nLOBBYIST,GEO CARE INC.,J7500\nProject Direct,N.Y.C. BOARD OF EDUCATION,X3500\nAttorney,McDermott Wills & Emery,K1000\nPUBLIC FINANCER,\"KINSELL NEWCOMB DE DIOS, INC\",Y4000\nExecutive,\"Children's Research and Education Inst\",J1200\nRepairman,Ford Motor Company,T2100\nOWNER,SYNERGY TECHNOLOGIES GROUP,Y4000\nEDUCATION RESEARCH,WESTAT INC.,Z9500\nCEO,\"TIGRIS GROUP, INC\",F2100\nPhysician,Cranberry Family Medicine,H1100\nINVESTOR,QUADRANGLE GROUP L.L.C.,F2100\nH B L PANALPINA,,G5200\nCONSULTANT,BRUNNER MKTG. SOLNS,Y4000\nLOBBYIST,THE ALPINE GROUP,K2000\nLaw Professor,University of Missouri at Kansas City,H5100\nnurse,Flagstaff Unified School District,X3500\n\"SENIOR VICE PRESIDENT, HR\",CO BANK,F1000\nAmgen,Amgen,H4300\nFINAN,MORGAN KEIGAR & COMPANY  INC.,Y4000\nDRUG AND ALCOHOL TES,RELIABLE ONSITE,Y4000\nDIRECTOR,H.R. TEXTRON,Y4000\nSelf - Employed,Cobbs Accounting,F5100\nREAL ESTATE D,JED OF SOUTHWEST INC.,F4000\nEXEC.,FORD MOTOR COMPANY,T2100\nLAWYER,SHEPHERD KAPLAN L.L.C.,Y4000\nCOMP SYS CENTER INC,,Y4000\nPerson,Me,J1200\nInfo requested,Amcor Capital Corporation,J1100\nEngineer,\"Metriguard, Inc.\",Y4000\nBUS DRIVER,AUSTIN ISD/BUS DRIVER,X3500\nCEO,PHILLIPS INDUSTRIES,M0000\nKAROUB ASSOCIATES,,K2000\nVice President,Toyota Of Santa Cruz Inc,T2300\nCITADEL,,F2700\nRB,KAISER PERMANENTE,H2000\nTEXAS CHRISTIAN,,Y4000\nExecutive,Ellcon Natural Inc,Y4000\nMEDSTAR SURGICAL & BREATHING,,Y4000\nARCHITECT OF US CAPITOL,,X3000\nAdministrative Assis,Rees Associates Inc,J1200\nChief Petrophysicist,Chesapeake Energy Corporation,E1120\nPresident,Balon Corporation,Y4000\nOwner,TRA A/C & Heating Inc,Y4000\nSTATE OF NJ,,H1100\nOCEANOGRAPH,CONTINENTAL SHELF ASSOC,Y4000\nR4,,Y4000\nGOLDFIN & JOSEPH,,Y4000\nOwner,Ernies Restaurant,G2900\nREAL ESTATE BROKER,WENDELL ALEXANDER REALTY,F4200\nHigher Education Administration,Drexel University,H5100\nOfficer,us Army,X5000\nRETIRED AUTO DEALER,RETIRED,X1200\nPresident,Diversified Records,Y4000\nINSUARANCE SALES,THE WARD AGENCY,Y4000\nEXECUTIVE,REBOWE & COMPANY,F5100\nWATERMILL FOODS INC,,G2000\nDistrict Manager,US Postal Service,X3700\nFOUNDER,TYKNE LLC,Y4000\nInvestor,\"Kramer Spellman, LP\",Y4000\nALLIED DEVELOPMENT CORP,,Y4000\nPresident,Midwestern State Univ.,H5100\nPRESIDENT,ARIZONA LIST,Y4000\nVenture Capitalist,KBL,F2500\nPresident,Retired,Z9500\nMEDICAL TECHN,JEFFERSON HEALTH CARE,J1110\nExec,Hoffman Investments,J1200\nOWNER,TRADEMARK COMPANY,C5140\nMd   Dean,Columbia University,H5100\nPresident,PROFESSIONAL CASUALTY INSURANCE,F3100\nIMPORT/EXPORT MANAGER,STAR SOURCING INTERNATIONAL INC,Y4000\nLetter sent: 4/2/2010,Letter sent: 4/2/2010,H3000\n\"President, CEO\",Brookshire Grocery Company,G2400\nWILLIS STEIN & PARTNERS MANAGEMENT,,F2100\nENTERTAINER,DON HENLEY,C2600\nAccountant,Virchow Krause,F5100\nVP SOLUTIONS & CHIEF RELATIONSHIP OFFI,DIVERSIFIED INFORMATION TECHNOLOGIES,C5130\nAccountant,Fleetwood Enterprises,B2400\nINSU,DENNY MICHAELIS INSURANCE INC.,F3100\nProbation Officer,Chief Judge of Circuit Court,Y4000\nEXECUTIVE DIRECTOR,AFFINIA HOSPITALITY,Y4000\nMedical Technologist,Washington County Hospital,H2100\nPRESIDENT,CALLTECH COMMUNICATIONS,Y4000\nOWNER,W.G. ARNOT OIL,E1100\n\"DIR. OF PUBLIC POLICY/GOV'T RELATIONS\",GOOGLE,C5140\nBuilder,Schillerstrom Homes,B2000\nHENDRICK AUTOMOTIVE GROUP,,T2000\nWASH STATE COUNCIL OF COUNTY EMP,,Y4000\nPRESIDENT,\"IPI, INC.\",Y4000\nREAL ESTATE DEVELOPER,\"FELSON COMPANIES, INC./REAL ESTATE\",F4500\n,\"HAKS ENGINEERS AND LAND SURVEYORS,\",B4000\nFire Fighter/EMS,LITTLETON FIRE DEPT.,L1400\nDoctor,Jeffrey B. Danzig Md Pc,Y4000\nCEO,\"RENNIE'S LANDING\",Y4000\nEngineer,S.T.V. Engineering,B4000\nPHYSICIAN,ALBUQ. EMERGENCY MEDICAL ASSN.,Z9500\nPRESIDENT,\"POLITICAL C.F.O.S., INC.\",Y4000\nBUREAUCRAT,DEPARTMENT OF DEFENSE,X5000\nPresident,CY Farms,A1000\nBREMSETH & DOSHAN,,K1000\nELLICOTT DEVELOPMENT CO,,Y4000\nPresident,Carolina Cafe,G2900\nCTA Accountant,Tax Cutters Inc,Y4000\nCEO,KELLY AND ASSOCIATES INSURANCE,F3100\nPresident,\"P.H.L., Inc.\",Y4000\nCeo,Planned Parenthood,J7150\nCHAIRMAN,NAMEPA,Y4000\nIS Manager,The Swan Corporation,Y4000\nFaculty,Logan College,H5100\naccountant/tax prepa,Self,G0000\nCORBETT CONSTRUCTION,,B1500\nEXECCUTIVE,BCG ENGINERING & CONSULANTS INC.,Y4000\nMANAGEMENT,DENMAN AND ASSOCIATES/MANAGEMENT,J1200\nPACKER CARTAGE AGENCY,,Y4000\nDECKER TRUCKER LINES INC,,T3100\nTRUSTEE MULVANE FARM,,Y4000\nTRANSPORT TECH,,T0000\nWESTERN REALTY,,F4200\n\"SR. VP, FINANCE\",AECOM,B4000\nATTORNE,\"O'NEAL, BROWN & CLARK, P.C.\",K1000\nYELLOW FREIGHT CORP,,T3100\nPresident,Quintana Petroleum,E1150\n\"EDUCATOR, FARMER, ARBITRATOR\",SELF-EMPLOYED,G0000\nDoctor,Mark Kucker Do,Y4000\nPRESIDENT,SAVE THE DATE,Y4000\nAGM FINANCIAL SERVICES INC,,F0000\nComputer Analyst,Verdugo Hills Hospital,H2100\nATTORNEY,SELF,T6250\n\"Aviva, Inc.\",,E1120\nPresident,\"The Fritts Group, LLC\",K2000\nInvestment Managemer,John A Levin and Co,F2100\nPolitics,Edwards For President,J1200\nREFEREE,SUPERIOR COURT STATE OF CA,J1200\nLEGISLATIVE CONSULTANT,THE ADVOCACY GROUP,K2000\nCORROSION ENGINEER,PHILLIPS 66 PIPELINE COMPANY,Y4000\nEXECUTIVE,TECHPROSE,Y4000\nVICE CHAIR,ASC CORPORATION,Y4000\nVUSN,,Y4000\nAntique Appraiser,Self employed,G0000\nASSOCIATE,ADVANTIS,F4000\nSELF/TRANSPORTATION/LIMO-CHARTER JE,,J1200\nPRESIDENT AND CEO,UNITED HERITAGE MUTUAL LIFE INSURANCE,F3300\nINSUR,WORTH INSURANCE AGENCY INCORP,F3100\nPROFESSOR,GALLUDET UNIV,Y4000\nattorney,\"Beecken Petty O'Keefe & Company\",K1000\nACTIVIST,HOMEMAKER,J7400\nOwner,Fairbanks Motel & Marina,T9100\nEXECUTIVE,ROSEN & ASSOC,K1000\nExecutive,Exxved Inc,Y4000\nProfessor,Univ of Baltimore Law School,H5170\nPHYSICIAN,TOMAH VA MEDICAL CENTER,Y4000\n\"BH EQUITIES, INC.\",,F4000\n\"Wife, Mother, Housek\",Myself,Y4000\nPhysician,Lake Hospitals,H2100\nPHYSICIAN,\"ST. MARY'S REGIONAL MEDICAL CENTER\",H2000\nDIRECTOR OF F,HARBORSIDE HEALTHCARE,H2200\nPROFESSOR OF PHYSICS,UNIVERSITY OF MARYLAND,H5100\nEXEC,TURNER BROADCASTING SYSTEMS IN,C2200\nMAIL & MARKETING STORE,,G5220\nPresident,\"TENN ROAD COMPANY, INC.\",Y4000\nOwner,Allied Home Care Svcs,Y4000\nCEO historical film archive,Macdonald & Associates,Y4000\nSELF-EMPLOYED/SANDEL PRODUCTS/MANUF,,Y4000\nECS COMPANIES,,B1000\nINFORMATION TECHNOLOGY,SYNOPSYS INC,C5120\nDevelopmental Psychologist,Self employed,H1110\nCFO,\"NYPRO, INC\",J1200\nCarnegie Hall,,C2900\nMULTI JUR CABLE TV,,C2200\nDirector,Bay Area Democrats,J1200\nATTORNEY,\"PACHULSKI, STANG ET. AL.\",K1000\nPRIN,NATIONAL DESIGN BUILD SERVICES,Y4000\nCEO,\"Arbor Research & Trading, Inc\",Y4000\nCOO,15 Minute Fitness,Y4000\nEXECUTIVE,REDCROSS,Y4000\nN.A./HOMEMAKER/COMMUNITY VOLUNTEER,,Z9500\nSpouse,Connolly Pacific Co,B1000\nPrincipal,Hillsboro County Sch,J1200\nVP,C.R. BARD,H4100\nPRESIDENT/ C.E.O.,SUNSHINE MIDLAND GROUP INC.,Y4000\nPLT. LEADER,US ARMY,X5000\nInspector/engineer,STATE OF CA,X3000\nLAB TECH.,DR. CHARLES VERMONT,Y4000\nRANCHER,RANCHER,F1100\nIT Supervisor,Jpmorgan Chase,F1100\nREAL ESTATE DEV,RAFANELLI AND NAHAS,F4100\nPHYSICIANS ANESTHESIA SERVICE,,H1130\nENERGY CONSUL,FIVE STAR CONSULTANTS,Y4000\nOwner,Lumber Company,Z9500\nSTOCK CORP-T,THE TRACTOR PLACE INC.,Y4000\nSYLVAN LAWRENCE CO,,F4100\nCORN OPTION BROKER,,F2200\nEXECUTIVE DIRECTOR,CEN CAL BUSINESS FINANCE GROUP,F0000\nATTORNEY,\"HARTER, SECREST & EMERY LLP\",Z9500\nscientist,N/A,X0000\nCEO,BANCORP SOUTH,F1100\nDEPUTY CHIEF,COMMW OF PENNSYLVANIA,Y4000\nPRESIDENT,EQUIPMENT AND CONTROLS AFRICA,Z9500\nExecutive Vice Presi,\"Nat'l Part. for Women and Families\",J7400\nDIRECTOR,DELTEC,Y4000\nJSJ CORP,,M2300\nCEO,Industrial Origami,Y4000\nVICE PRESIDENT,WELLS FARGO FINANCIAL,F1400\nCEO,INCISENT TECHNOLOGIES/CEO,C5120\nK-2 ENGINEERING INC,,Y4000\nPartner,Brown Armstrong Accounting,E1120\nPresident,Kerr Pacific Corp,G2100\nBuisness Investments,Gail Breton,Y4000\nSWEETMAN & WISE L L P,,Y4000\nOWNER,GOSS SUPPLY COMPANY,E1210\nPRESIDENT,BERGSETH BROTHERS CO INC,Y4000\nOrthopaedic Surgeon,The Center For Ortho Care,H1130\nSALEM SUEDE INC,,M3200\nattorney,Swift Currie McGhee & Hiers,Y4000\nPRESIDENT/CEO,PHIL LONG,T2300\nDirector of Finance Programming,Providence Performing Arts Center,C2900\nChemist,Lubrizol Corp,M1000\nNOT-EMPLOYED,SELF-EMPLOYED,J1200\nprogram administrator,Not employed,Y1000\nPark Ranger,National Park Service,J1200\nTEACHER,FAIRFAX COUNTY TEACHER,X3500\nINVESTO,RESOURCE DATA INTERNATIONAL,Y4000\nOwner,Cam Com Communications/,Y4000\nTHE KOMAN GROUP,,Y4000\nPartner,NATIONAL MEDIA INC.,G5210\nNATIONAL ASSOCIATION OF HOME CARE &,,H3100\nProfessional Volunte,Self-Employed,G0000\nPECK REALTY,,F4200\nALCHOL WHOLESALER,FABIANO BROTHERS,H5100\nUS DEPT OF VETERAN AFFAIRS,,J7300\nEXECUTIVE ASSIS,PEMBROKE ASSOCIATES,Y4000\nDirector of Client Relations,Custom Development Solutions,Y4000\n\"Actress, Writer, Producer\",Freelance,Y4000\nCHAIRMAN & CEO,BRYN MAWR TRUST CO.,F1100\nOFFICE MANAGER,DR. ALBERT M. KWAN,Y4000\nINFORMATION TECHNOLOGY,GLAXOSMITHKLINE/INFORMATION TECHNOL,H4300\nVP REAL ESTATE,THE DICKMAN COMPANY,F4200\nCAGE MANAGER,HOLLYWOOD CASINO,Z9500\nPRESIDEN,VERN JONES OIL & GAS CORP.,E1120\nRE,SELF,J1200\nTHE REA CO,,Y4000\nPRESIDENT AND CEO,SUPERIOR FOODS INC.,G2100\nFin. Planner & Mort,Dominion Mort & Fin Ser/Inc,Y4000\nPOYNERT & SPRUILL,,K1000\nCEO,Campbells Express,Y4000\nPHYSICIAN,DAVID COWEN MD,H1100\nSERRATELLI SCHITTMAN BROWN,,Y4000\nPARTNER,PALAMON CAPITAL,Y4000\nPRESIDENT,CLEAR PATH INTERNATIONAL,Y4000\nTRUCKING & WAREHOUSING,\"ERDNER BROTHERS, INC.\",T3100\nCommerical Lender,Lake City Bank,F1000\nCHIEF OPERATING,M.S.N. CORPORATION,Y4000\nSTAY AT HOME MOM,N/A,F4000\nMAKEUP ARTIST,RETIRED,X1200\nPresident/Secretary,Goodrich Quality Theaters,C2900\nLORE ASSOCIATES - JALICO CONST,,B1500\nWriter/Producer,Self-employed,C2300\nOWNER,EJ HARRISON & SONS,E3000\nSENIOR EXECUTIVE,NV ENERGY,E1600\nChairman,William Blair & Co.,F2300\nINTERNATIONAL GROUP INC./ATTORNEY/C,,Y4000\nPRESIDENT,BEAUMONT IRON & METAL CORP.,M2000\nRAIL JANI,CHICAGO TRANSIT AUTHORITY,T4000\nPRESIDENT,EPPS AVIATION,T1000\nChief Executive Offi,Muehlstein Holding Co.,Y4000\nPUBLIC POLICY,ABBOTT,Y4000\nMANAGER,NATIONAL EDUCATION ASSOC.,L1300\nDASTI MURPHY & WELLER,,Y4000\nATTORNEY,\"Collier, Rill, Shannon & Scott\",C4100\nGENERAL MANAGER,\"ARNIE'S FORD MECURY\",T2300\nWINDY ACRES NURSERY/OWNER/OPERATOR,,A8000\nLUCELIA FOUNDATION,,X4100\nPresident,Gibson Insurance Agency Inc,F3100\nM.D.,DEVONSHIRE SURGICAL FACILTY,Y4000\nReal Estate Developer,The Mcdonald Group,F4100\nMechanical Engineer,JR Manning SCD,J1200\nManager,Trammell Crow Co.,F4500\nAssistant Director,Cablevision Systems Corp,C2200\nEXECUTIVE,NEWPORT CAPITAL,Y4000\nVP CORPORA,NOVARTIS PHARMACEUTICALS,H4300\nURS,,B4400\nT ROWE PRICE INC,,F2100\nOwner,Bill Yates Insurance Agency,F3100\nCOMMUNICATIONS EXECUTIVE,,J1200\nINTERVENTIONAL RADIOLOGIST,HOT SPRINGS RADIOLOGY SERVICES,H1130\nJACK FELZER AND COMPANY,,F5100\nATTORNEY,SCHNEIDER KLEINICK ET AL.,K1000\nLAWYER,MISSOULA COUNTY,X3000\nPresident,Council of Graduate Schools,Y4000\nCEO,\"HENLEY PROPERTIES, INC\",F4000\nVice President,Sony Picture Enertainment,C2400\nDUALEX,,Y4000\nLIFETOUCH NATIONAL SCHOOL STUDIOS,,G5240\nAccountant,Dept Of Defense-Tricare,X5000\n\"MANUFACTURER'S\",MILLS SALES COMPANY,Y4000\nANDERSON NURSERY INC,,A8000\nC.E.O.,El Paso Electric Co.,E1600\nVice President Softw,\"Hypercom, Inc.\",Y4000\nCHAIR,CENTER FOR ARTS EDUCATION,Y4000\nGMIT,Target,G4300\nATTORNEY AT LAW,LEWIS & SCHOLNICK/ATTORNEY AT LAW,Y4000\nATTORNEY,MOODY STROPLE & KLOEPPEL,K1000\nLOGISTICS PLANNING SUPERVISOR,URENCO U.S.A.,Y4000\nCeo,Community Faith Based Funding Solution,Y4000\nWriter,Shogakukan Publishers,C1100\nEN,COLORADO ENVIRONMENTAL COALITION,JE300\nHYDE MILLER & OWEN,,Y4000\nRealtor,York Simpson Underwood,J1200\nDentist,Leone Dental,H1400\nPresident & CEO,San Mateo Credit Union,F1300\nGREAT PLAINS COS INCORPORATED,,B5200\nPHYSICIA,DONALD CORNFORTH M.D. INC.,H1100\nWATER &,WETHERELL TREATMENT SYSTEMS,Y4000\nPharmacist,University of Virginia Health System,H5100\n.,WEDGEWOOD INVESTMENT GROUP LLC,H2200\nEducator,Self employed,Z9500\nDP CORPORATE SERVICES,,C5130\nCHAIRMAN,ERGON,E1160\nExec Vice President,Western Extrusions,M5000\nAttorney/Consultant,Granite Strategies,K1000\nPUBLIC AFFAIRS,ELI LILLY & COMPANY,H4300\nLandcape Designer,Self,J1200\nMASSACHUSETTS STATE COLLEGE,,H5100\nEXECUTIVE,PDR ENGINEERS INC.,B4400\nBAUMER ENTERPRISES LTD,,G2900\nVP,Partners Health Care,J1200\nCHAIRMAN AND CEO,WORTH CORPORATE PLANNING,F3100\nProfessional Engineer,\"KIT Professionals, Inc.\",Y4000\nPhysician,Texas Womens Health Connection Pa,H1130\nJACMAR COMPANIES,,G2900\nATTO,PRESTON GATES ELLIS & ROUVELAS,K2000\nBENNETT & BENNETT/N/A,,Y4000\nCorp Counsel,Apache Corp,J1100\nResearcher,Yale Univ,H5100\nOrthopaedic Surgeon,\"St Luke's Hospital\",H1130\nDR STEVEN ANDERSON,,Y4000\nATTORNEY,\"CARLSON, HAMMOND & PADDOCK LLC\",K1000\nRn,Usphs,Y4000\nVP - Customer Suppor,\"Pennsy Supply, Inc.\",B5100\nclincal psychologist,Self,J7400\n,OCCIDENTAL INTERNATIONAL CORPORATI,E1110\nEXECUTIVE,ALSTON & BYRD,J7300\nBAN,GE CORPORATE FINANCIAL SERVICES,F1400\nFOOD 4 LESS INC,,F2600\nPartner,Integrity Title,F4300\nAttorney,\"Mohs, McDonald, and Widder\",K1000\nSKEETERS BENNETT S,,Y4000\nATTORNEY,PETERSON AND PETERSON,K1000\nReal Estate,Venterra Corp,F4000\nGEORGIA MILITARY COLLEGE,,H5100\nFRANKLIN KARPAS & ASSOCIATES,,Y4000\nSR ADMINISTRATION,HARVARD UNIVERSITY,H5100\nCOO,DURHAM CO.,M2300\nChief Operating Offi,Community Memorial Hospital,H2100\nphysician,Contemporary Obstetrics and Gynecology,H1130\nGovernment Relations,Patton Boggs LLP,K2000\nOperations Manager,Vintners Distributors Inc,G4300\nGeneral Manager,Real Goods Solar,Y4000\nALEGRIA DEPEW ESCHBACH & BOTHENHUEL,,Y4000\nSVP,PG&E,E1620\nDOWNEY ENGINEERING L C,,B4400\nPRESIDENT,\"TandT computers, Inc.\",C5100\nOPERATIONS MANAGER,\"JULES AND ASSOCIATES, INC.\",F5000\nMANAGER,NON-PROFIT ORGANIZATION MGT.,Y4000\nPIPED REAM CIGAR & TOBACCO,,A1300\nMANAGING DIR MID ATL,\"DOM RESOURCES SVCS, INC.\",E1620\nGUITIERREZ & GUITIERREZ,,K1000\nCIVIL ENGINEER,\"CIVIL-TECH ENGINEERING, INC.\",B4400\nSR. VICE PRES.,CON EDISON/SR. VICE PRES.,Y4000\nElected official,Town of Huntington,X3000\nASTORIA SEA PRODUCTS,,Y4000\nINTERN,,Y4000\nREALTOR,LYNN MADISON,F4000\nFINANCIAL SERVICE,BRIDGE ASSOCIATES,F5000\nRESEARCH ANALY,MFS INVESTMENT MGMNT,F2100\nINTERFAITH CTR ON CORP RESP,,F2100\nBUSINESS OWNER,\"PACIFICA TRUCKS, LLC\",Z9500\nENTREPENEUR,SELF EMPLOYED,J1100\nEDP CONTRACT SERVICES,,Y4000\nMERCHANT SEAMAN,VARIOUS -  US FLAG VESSEL OPERATOR,LT500\nUnion Organizer,Service Employees Union,LG300\nattorney,State of Montana,X3000\nOWNER,BILL RILEY COMMUNITIES,F4200\nFurnishings,Self-Employed,G0000\nDEAN OF HEALTH AND S,UNIVERSITY OF NEW MEXICO,H1100\nADJUNCT PR,UNIVERSITY OF ST. THOMAS,H5100\nALLIED HEALTH CARE SERVICES,,H6000\nPRESIDENT,CARTER MOTORS INC,T2300\nPresident & CEO,G-Trade,Y4000\nMAYOR,CITY OF GREAT FALLS,X3000\nLOGIS SERV MGR,United Parcel Service Inc,T7100\nManaging Member,Western Cable,Y4000\nEXECUTIV,NS-LI JEWISH HEALTH SYSTEM,H2100\nHomebuilder,Berkeley Homes,B2000\nBIG SANDY JUVENILE CENTER,,Y4000\nEVP & COO,WBI,Y4000\nENGI,CAMS (COMPUTER AIDED MEASUREME,Y4000\nLAWYER,SELF,J7300\nExecutive Director,The Burke Rehabilitation Hospital,H2100\n\"DEPARTAMENTO DE EDUCACI'N\",,X3000\nPHARMACIST,WALMART INC,G4300\nEVANSVILLE HISTORIC PRESERVATION CM,,Y4000\nOWNER,D.T. ENTERPRISE GROUP LLC,Y4000\nD EDWARD WELLS FED CREDIT UN,,F1300\nBANKER,W.C.A.S. FRASER SULLIVAN,F2100\nBEARTOOTH HOSPITAL AND HEALTH CENTE,,H2100\nFREEDOM FINANCIAL PLANNING,,F2000\nCURATOR,UW-MADISON,Z9500\nMANAGING PARTNER,EQUUSTOCK LLC,Y4000\nLABORATORY,,Y4000\nV. P. PLANT OPERATIONS,BASIN ELECTRIC P.C.,E1610\nChaplain,Bethesdahealth,Y4000\nASSISTANT DISTRICT ATTORNEY,COUNTY OF ORANGE,X3000\nAdministrator,Me3,Y4000\nTEACHER,EAST CLEVELAND CITY SCHOOLS,X3500\nBENSON LA MEAR & MC,,Y4000\nTEACHER,MASTERY CHARTER SCHOOL,Y4000\nPRESIDENT,IDS AUDIO VIDEO GROUP,Y4000\nTOTAL FORCE,,Y4000\nTHE KRYSTAL COMPANY/CHAIRMAN/CEO,,G2900\nFREE CONGRESS FDTN,,J1100\nAttorney,Palirk Gas & Electric Co,K1000\nservice technician,southern comfort heating & air con,B3400\nAUTHOR,PRINCE OF NUNAVUT LLC,Y4000\nPOLGOR CO INC,,Y4000\nChief Operating Officer,Simnsa Health Plan,Y4000\nINVESTMENT ADVISOR AND CPA,CARTER ASSET MANAGEMENT INC.,Y4000\nINVESTMENTS ADVISOR,UNUS L.L.C.,F2100\nVICE PRESIDENT INVES,\"WASTE MANAGEMENT, INC.\",E3000\nWILBANKS RESOURCES CORP,,Y4000\nDIRECTOR,ELI LILLY AND COMMUN. CO.,H4300\nINVESTOR,SELF- EMPLOYED,J1100\nANETHEOLOGIST,,H1130\nE C HEALTH CLINIC,,H0000\nTITLE INSURANCE,STEWART TITLE,F4300\nBUSINESSMAN,EUPEN CABLE USA,C2200\nASSISTANT PRINCIPAL,MSAD 51,Y4000\nAttorney,Allen Stewart,K1000\nMIDCONTINENT MEDIA INC,,C2100\nPRESIDENT,SYNERGY DATA,Y4000\nEditor,In Tune Partners,Y4000\nGENERAL MANAGER,KAPCO,Y4000\nSenior Director,Alcoa,M2200\n\"Vice President, Communications\",Viacom Media Networks,Y4000\nORAL AND MAULFACILA SURGEON,CAROLINA CENTER FOR ORAL AND FACIAL SU,Y4000\nNUMISMATIST,SELF EMPLOYED,G4600\nEAST SHORE ATHLETIC,,Y4000\nVI,BAYSTATE FRANKLIN MEDICAL CENTER,H2100\nMATERIALES LA UNION,,Y4000\nAttorney,Campbell & Levine LLC,J1200\nSELF/AUTHOR/INVESTOR,,C1100\nTHE WRITE OCCASION,,Y4000\nKNOW BUSINESS INC,,Y4000\nDeveloper,Phillips Development & Realty,F4100\nBUSINESSMAN,SDL VENTURES,F2600\nHARSCH INVESTMENTS,,Y4000\nPublic Affairs,Government,X3000\nAttorney,Gallo & Iacavangelo,K1000\nOWNER,ROBERT FERGUSON COMPANY,Y4000\nPartner,AM Consulting Group,Y4000\nEPH BAKER AGENCY,,F3300\nACCOUNT MANAGER,HUBWOO,Y4000\nPRES,LAPEER REGIONAL MEDICAL CENTER,H2100\nCOURIER,DEADLINE DELY,Y4000\nGARDEN DESIGN,SELF,B3600\nEXECUTIVE VP FINANCE,EDMUND OPTICS INC.,M9100\nGOVERNMENT AFFAIRS,RICH FEUER GROUP,K2000\nPHYSICIAN,VCUHS,Z9500\nLOAN OFFICER,ZIONS BANK,F1100\nSTOCKBROKER,UBS PAINE,F2100\nOwner,Rafael Gonzalez Pa,Y4000\nOWNER,CAPITOL BOWL/OWNER,Y4000\nSCIENTIST,CEPHALON INC,H4300\nCEO,FALCONTRUSTAIR.COM,C5140\nATTORNEY,CURTIS MALLET-PROVOST,J5100\nAttorney at Law,Weinberg & Weinberg,K1000\nTechnical Customer Service Speciali,Harvard Business Publishing,C1100\nMANAGER,WORLD AFFAIRS COUNCIL,Y4000\nTRUCKING   C.E.O.,PREMIER LOGISTICS,Y4000\nPHYSICIAN,MEDQUEST ASSOCIATES,Z9500\nOwner,AG Custom Sheet Metal,Y4000\nBUSINESS OWNE,\"FRONDIZI'S RISTORANTE\",Y4000\nSTRUCTURAL ENGINEER,\"UMERANI ASSOC., INC.\",Y4000\nPARTNER,PB OLD RIVER ASSOCIATES LLC,Y4000\nMANAGER,HOUSTON BULLDOG CAPITAL MANAGEMENT LL,F2100\nPR and Special Event planner,Dos Gatos,J1200\nCHAIRMAN,IDT CORPORATION,J5100\nT I C THE INDUSTRIAL CO,,Y4000\nInformation Requeste,Self - Law Office of Marion Morg,K1000\nSALES MANAGEMEN,CLEAR CHANNEL RADIO,J1100\nVice President,Gwinn`s Drug Stores Inc.,Y4000\nV.P. Sales,R.G. Steel Corp.,M2100\nCFO,\"EXCALIBUR ALMAZ USA, INC.\",Y4000\nHuman Services Execu,Baltimore Community School Connections,Y4000\ncost/price analyst,army contracting command -warren,X5000\nSIGN COMPANY,ARIZONA COMMERCIAL SIGNS,G5230\nExecutive,Schlicter Company,Y4000\nOwner,Vintage It Services,Y4000\nRC INVESTMENTS GRP LLC,,Y4000\nBUSINESS OWNER,\"MEYFAR, INC.\",Y4000\nPresident,DBLS Holdings Ltd.,Y4000\nCeo,United Agency Inc.,Y4000\nLACY DIVERSIFIED INC,,B5200\nCIVIL ENGINEER,MIDLANDS CONTRACTING,Y4000\nSOUTHGATE USA,,Y4000\nEXECUTIVE,\"PAINE WEBBER, INC.\",Y4000\nProject Manager,Subway DCW,Y4000\nCUMBERLAND RARE BOOKS,,G4600\nDirector,Northern IL Food Bank,Y4000\nCEO,Joseff-Hollywood,J7400\nMENTOR FIRE DEPT,,L1400\nattorney,The Humane Society of the US,J7600\n\"DIRECTOR, FELLOWS & ALUMNI RELATIONS\",WOODROW WILSON NATIONAL FELLOWSHIP FOU,Z9500\nJMF INC,,C5140\nCHIEF OF STAFF,REP. JOHN DELANEY,Z9500\nEngineer,MacLondon Royalty Co,Y4000\nDIAGNOSTIC RADIOLOGIST,ADVANCED RADIOLOGY CONSULTANTS,H1130\nNAGLE INDUSTRIES,,M5000\nCivil Engr. & Land S,Self,G0000\nVeterinarian,All Creatures Great and Small Vet Ser,Y4000\nDATABASE ADMIN,ESTER LAUDER,Y4000\nPsychiatrist,Professional Psychiatric Services,Y4000\nBusiness Owner,\"A.J.'s Residential Enterprises\",Y4000\nCONDE NAST PUBLICATION,,C1100\nJ A POLITO,,Y4000\nMANAGING PARTNER /OWNER,STRATEGIC FINANCIAL PARTNERS LLC,F0000\nPresident- Duke Energy Indiana,Duke Energy Business Services,E1620\nVice President & Con,Comcast Spotlight,C2200\nOperations,Arch Chemicals,M1000\nNURSE,ST. BERNARDS MEDICAL CTR,H1710\nTeacher,Farmington Board of Education,X3500\n\"DIRECTOR, SOFTWARE ENGINEERING\",ITT,C5000\n\"President & Chief Executive Officer, G\",GE Healthcare,M2300\nEXECUTIVE DIRECTOR,AGRI-BUSINESS COUNCIL OF ARIZONA,Y4000\nATTORNEY,\"BERRY, QUACKENBUSH & STUART\",Y4000\nPRESIDENT,WEATHER CENTRAL INC.,C2100\nPRESIDENT,ELECTROIMPACT,D2000\nPROFESSOR,CREIGHTONUNIVERSITY,H5100\nCOMPREHENSIVE PRIMARY CARE SPEC,,Y4000\nRAMADA INC,,Y4000\nATTORNEY,B.I.A.W.,Y4000\nFinancial Officer,\"Vander Haags, Inc.\",Y4000\nManaging Partner,Indanta Partners Ltd,Y4000\nReal Estate,\"Wells Asset Management, Inc.\",F2100\nBACKHOE AND SNOWPLOW BUSINESS,,B6000\nCHIEF OPERATING OFFICER,CYVSA INTERNATIONAL,Y4000\nMGMT,US AIRWAYS,T1100\nMANAGEMENT,OIL STATES ENERGY SERVICES,E1000\nEmeritus Professor,CSU Sacramento,H5100\nDIBILEO INSURANCE AGENCY/OWNER/INSU,,F3100\nSR. VP FOOD & BE,\"BALLY'S PARK PLACE\",G6500\nPRESIDENT,ABQ DENTISTS,H1400\nPRINCIPAL,SANSONE GROUP,F4000\nTHE MICHAEL CORPORATION,,Y4000\nINNER CITY FOODS INC,,Y4000\nADMINISTATOR,UNIVERSITY OF ALASKA,H5100\nLIFE OF THE SOUTH SERVICE COMPANY,,F1400\nattorney,dickstein shapiro,K1000\n\"Camolaur, Inc.\",,Y4000\nYoga Instructor,Self Employed,G0000\nATTORNEY,THE GARRETSON LAW FIRM,K1000\nAttorney,Rooney Group International,Y4000\nPARTNER,THE CATALYST GROUP R.W.L.L.C.,G5260\nTOWN OF CLINTON,,X3000\nATTORNEY,\"SEARCY, DENNEY, SCAROLA\",K1000\nOil,\"Lbth, Inc\",Y4000\nexecutive,Beverly Enterprises,H2200\n\"COMPUTE SCIENTIST TEACHER'\",CSC MCPS,C5130\nAttorney,\"grossman, roth, olin et al\",K1000\nMINERALS PRODUCTION,,Y4000\nEngineer,PMK Group,Y4000\nChiropractor,Logan College of Chirotractic,H5100\n\"St. Vincent's Hospit\",Physician,H1100\nBON TON SHOPE INC,,Y4000\nPRESIDENT,WISCONSIN BUSINESS BANK,F1000\nOwner,Rowen John Dr. Llc,Y4000\nAttorney,\"C2 Group, LLC\",K2000\nSR. VP MARKETING OF SALES,SPACE SYSTEMS / LORAL,T1700\nPRESIDENT,KLAFF REALTY LP,F4200\nINFO REQUESTED,JANCO ENTERPRISES,Y4000\nLAWYER,MC KAY CHADWELL,K1100\ndocument control spe,Diosynth,Y4000\nConstruction,Strong Tower Construction,B1500\nPRESIDENT,VGM GROUP,H4100\nSenior Vice President,CB Richard Ellis,F4000\nCEO,CRUSADER STAFFING ASSOCS. LLC,G5250\nChief Investment Off,Crossharbor Capital Partners,Y4000\nPHYSICIAN,U OF K,H5100\nPHYSICIAN,AVERA MC KINNAN,H2100\nVICE PRESIDENT,TRAVERS REALTY,F4200\nProperty Mgr.,Reinmiller Properties,F4000\nMANAGER,UC4 SOFTWARE,C5120\nAcademic Librarian,University of Illinois,Z9500\nPartner,The Matthews Firm,Y4000\nCo-President,Physician Brenham Clinic,H1100\nMARKOWTIZ DAVIS RINGEL PA,,K1000\nReal Estate Manager,Razore Land LCC,F4000\nOperating Engineer,Bob Baish Exc.,LB100\nFILIOS CONSTRUCTION,,B1500\nSOCIAL WORKER,BOSTON UNIVERSITY,H5100\nINVESTIGATOR,US DEPT OF VETERANS AFFAIRS,X3000\nLOBBYIST,THOMAS HUSBAND & ASSOC.,K2000\nIMPORTER,ASIAN INFLUENCES,G3500\nPhysician,\"Forsyth Radiological Associates, PA\",H1100\nBIOLOGIST,UNIVERSITY OF ARIZONA,H5100\nOracle Applications,Self employed,Y4000\nTAFT TENANTS ORGANIZATION,,J9000\nLAWYER,PERKINS COIE/LAWYER,K1000\nPartner,Sioux Falls Surgical Center LLP,H1130\nADMINISTRATOR,EASTERN SUFFOLK BOCES,Y4000\nVP & SR Trading Counsel,MidAmerican Energy Company,E1620\nTUCSON GENERAL HOSPITAL,,H0000\nUNDER RESEARCH,,Y4000\nPresident & CEO,Qunicy Newpapers,C2100\nTV & Film Director,Camera Planet,J1200\nMINISTER & LAND DEVELOPER,,Y4000\nCEO,\"Bender Shipbuilding, Inc.\",T6100\nCONCAST INC,,B5100\nCHIEF FIN,ACADIAN AMBULANCE SERVICE,H3000\ninvestment advisor,The Rittenhouse Trust Co.,Z9500\nPhysician(Anesthesiologist),University of Pittsburgh Physicians,H1100\nExecutive,Sabtech Industries,C5000\nPRESIDENT,GABLE HOUSE INC.,Y4000\nVICE PRESIDENT,PREHN CRANBERRY CO.,Y4000\nNational Educ. Assn,,Y4000\nVICE PRESIDENT,FEDEX FREIGHT SYSTEMS/VICE PRESIDEN,T7100\nLYHES BROTHERS INC,,Y4000\nOWNER,TEKNO,Y4000\nAV LAUTTAMUS COMMUNICATIONS,,Y4000\nPESSAGE PARTNERS,,Y4000\nBANKER,FLORIDA CAPITAL GROUP,F0000\nDITSCHMAN FLEMINGTON FORD,,T2300\nPresident,Advanced Practical Solutions,K2000\nATTORNEY,\"NELSON, ROZIER & BERRENCOUNT\",K1000\nSales,Advent Software,C5120\nUNEMPLOYED,NONE,LE200\nBusiness Owner,\"Hypnotic Hats, Ltd\",Y4000\nCLERK,UNITED STATES POST O,Y4000\nDEMOCRATIC CENTRAL COMMITTEE,,J1200\nEXECUTIVE,NEWHOUSE COMMUNICATIONS,C2200\nVICE PRESIDENT,GUILD INC.,Y4000\nDIRECTOR,TRIDENT LAND TRANSFER COMPANY,F4300\nPACIFIC AUCTION,,Y4000\nLibrarian,Indian Health Service,H0000\nFACULTY RESEARCHER,UNIVERSITY OF ROCHESTER,H5100\nRESOURCES FOR CHANGE,,Y4000\nINVESTMENT ADVISOR,\"TAGGART FINANCIAL GROUP, INC.\",F0000\nCONSULTANT,OPS/CONSULTANT,Y4000\nBRANDYWINE GLOBAL,,Y4000\n\"ANAPOL, SCHWARTZ, NEISS, SCHMARTZ\",,K1000\nChairman/CEO,RHL group,Y4000\nKESSLER CO,,Y4000\nREGIS CONTRACTORS,,Y4000\nFinance Executive,INFO REQUESTED,T9100\nRSP MANUFACTURING,,J1100\nExecutive,Davidson & Company,K2000\nMANCHIKANTI RESTURAUNT MANAGEMENT I,,G2900\nRegional Sales Manag,Calgon Corporation,Y4000\nVice President,Watermark Management,Y4000\nSOFTWARE ENGINEER,NVIDIA CORP.,C5110\nTeacher,Artist Academy,Y4000\nHr Mgmt,Goldman Sachs & Co,F2300\nSTATISTICAL ANALYST,,Y4000\nUNIVERSITY CA BERKELEY,,H5100\nReal Estate Investme,Pacific Coast Capital Prtnrs,F0000\nATTORNEY,STRASSBURGER MCKENNA GUTNICK & GEFSKY,Y4000\nACCOUNTING,SELF-EMPLOYED,F2100\nIntermodal Marketing,UNION PACIFIC RAILROAD,T5100\nXL GROUP INC,,Y4000\nNIXON RAICHE MANNING & CASINGHINO,,K1000\nPresident,Spraying Systems,Y4000\nPHOENIX CHARTERING INC,,Y4000\nJANESVILLE MEDICAL CEN,,H2000\nFINANCE MANAGER,\"KOONS OF TYSON'S\",Y4000\nOWNER,PLANALYTICS,Y4000\nLUTHERN GENERAL,,Y4000\nSocial Worker,The ALS Association,J5100\nCEO,GENERAL GROWTH COMPANIES,F4100\nOWNER,BALL LUMBER CO.,Y4000\nCLEVELAND FIRE DEPT./FIREFIGHTER/EM,,L1400\nPRINCIPAL,G2G CONSULTING,K2000\nSenior Partner,TRG Healthcare,G5270\nSVP,AXA Equitable,Y4000\nAdministrator,Gardner Russo and Gardner,F2100\nComputing,Techone Inc,Y4000\nATTORNEY,\"LAW OFFICES OF PHILIP S. NERNEY, LLLC\",K1000\nQUNCANNON ASSOCIATION,,Y4000\nLDI INC,,Y4000\nCHIEF FINANCIAL OFFICER,\"IOMAX, INC.\",Y4000\nOWNER,GRAND SALON SPA,Y4000\nPEOPLES MUTUAL HOLDINGS,,E1600\nFINANCIAL CONSULTANT (SELF EMPLOYE,\"STEVEN TANGHERLINI CA, INC.\",Y4000\nDietician,Poudre Valley Hospital,H2100\nPRESIDENT,CERTIFIED AUTO GROUP,Y4000\nPANDOLFSKI TOPOLSKI WEISS & COMPANY,PANDOLFI TOPOLSKI WEISS & CO,Y4000\n21ST CENTURY INVESTMENTS,,Y4000\nATTORNEY,\"HEALY, LOTTECHOE & HEALY, P.L.L.C.\",K1000\nVICE PRESIDENT,GE CORPORATE,M2300\nHAGGAR CLOTHING,,M3100\nSUN-PINE CORP,,Y4000\nEX,ENTRAVISION COMMUNICATIONS CORP.,G2900\nPRESIDENT & CEO,EQUITY RESIDENTIAL,F4000\nContract Management,RTD,Y4000\nQUIGG BROTHERS,,Y4000\nCEO,TRANSCEND MEDICAL,Y4000\nMARKETING DIRECTOR,SJ CARROLL,Y4000\nGENERAL COUNSEL/CHIEF INSTITUTE OPERAT,ROSWELL PARK CANCER INSTITUTE,H2000\n2012,HOMEMAKER,J1100\nNurse,State of Illinois,X3000\nPRESIDENT,\"VICTORIA ISLAND FARMS, INC.\",A1000\nINSTITUTE FOR HEALTHY COM,,H2100\nOFFICE MANAGER,VIANOVO/OFFICE MANAGER,G5270\nSr Vice President,California Casualty Group,F3100\nBuilder,W Gohman Construction,B2000\nLAWYER,\"BOILEY COVALIRI, L.L.C.\",Y4000\nLANDSCAPER,HOLMES LANDSCAPE CO,B3600\nCredit & Collections,Self Employed,Y4000\nCEO,\"POLLY'S RESTAURANT\",G2900\nCEO,\"AMERICAN PATRIOT GROUP, LLC\",E1210\nST LUKES REGIONAL MEDICAL CEN,,Y4000\nMEDICAL DEP MGR,\"BRADLEY A CONNOR, M\",Y4000\nPresident,National Association of Community,H3000\nSTAR DEVELOPMENT GROUP,,Y4000\nNORMAN SIERRA DEVELOPMENT,,Y4000\nOWENS LUMBER COMPANY,,B5200\nOWNER,WALSH OIL,E1100\nBUSINESS,GRAHAM COMPANIES,Y4000\nDLA PIPER LLP (US),,K1000\n\"ST. LOUIS CHILDREN'S\",VICE PRESIDENT,H0000\nDealer,Bob King Pontiac GMC Inc,T2300\nPRODUCTION TESTER,BOSS OILFIELD SERVICE,E1150\nConsultant,Washington Advocacy Group,K2000\nDELTA TAU,,Y4000\nRETIRED,UNIV CALIF DAVIS,J1200\nVideo Editor,Madhouse Inc,Y4000\nIT Tech,Purchase College,H5100\nSenior Managing Part,Bears & Stearns,F2300\nCEO,RELEVENT PARTNERS,Y4000\nOwner,H & H Welding LLC,Y4000\n\"PEOPLES FED'L SVGS & BANK\",,F1200\nSee above,Retired professor,Z9500\nEXECUTIVE VICE PRESIDENT,M.D.V.I.P. INC,H3100\nENG. TECHNICIAN,NORTH CAROLINA DEPARTMENT OF TRANSPORT,Y4000\nWIND DEVELOPER,HORIJON WIND ENERGY,E1000\nSALES REP,\"HAMILSTON SYSTEM DIST, INC\",Z9500\nPHOTOGRAPHER,\"ZOOM, INCORPORATED\",Y4000\nDEALER,TOYOTA MOTOR SALES,T2310\nC,UTILITY SERVICE ASSOCIATES (SELF),Y4000\nexecutive assistant,Fish Construction,B1500\n\"CRAMMY, DELDEO, DOLAN ET AL\",,Y4000\n\"O'connor Dumez Alia& Mcternan\",,K1000\nAttorney,\"The Buckle, Inc\",Y4000\nDIRECTOR,AIR 20,T1400\nGROUP HEALTH,KAISER,F3200\nCEO,THE KILROY COMPANY,M2300\nPhysician,Methodist Medical Ctr.,H1100\nDISABILITY LAW CENTER,,K1000\nOWNER,\"KRIPKE ASSOCIATES, INC.\",Y4000\nAsst Prof,Univ Of Nevada,H1100\nLawyer,\"Libby O'Brien Kingsley, LLC\",Z9500\nADVERTISING,CINCINNATI CITY BEAT,Y4000\nCEO,Cybernet Systems,C5130\nCHIEF EXECUTIVE OFFICER,USAIRPORTS,T1600\nManagement,\"Glessner Protective Services, Inc\",Y4000\nOmbudsman,University Of Washington,H5100\nOwner,Manufacturers Rep,M0000\nPIPELINE INSPECTION,HOUSTON INSPECTION FIELD SERVICES,Y4000\nMusican,Self,G0000\nChairman,Sevier County Bank,F1000\nPHYSICIAN,AETNA,Z9500\nATTORNEY,MY LAW FIRM,Z9500\nPRESIDENT,METRO MOVING,Y4000\nOwner,Dominicks,Y4000\n\"Exec Dir, Communications\",Northern California Public Broadcastin,Y4000\nPhysician,\"Bucks-Mont Dermatology Associates,Pc\",H1130\nConsultant/Pollster,EMC Research,Y4000\nAttorney,Law Office of David Straus,K1000\nPRESIDENT,ISTC,Y4000\nECONOMY INSURANCE AGENCY,,F3100\nCHIEF INVESTMENT OFFICER,ACE GROUP,F3100\nPhysician,Valley Sports & Arthritis,Y4000\nExecutive V P,Anderson Merchandisers,Y4000\nVice-President,\"Genentech, Inc.\",H4500\nFARMER,ARNOLD FARMS,A1000\nLOBBYIST,CALIFORNIA MANUFACTURERS & TECHNOLOGY,Y4000\nFIELD,FLORIDIANS FOR SMARTER GROWTH,Y4000\nSELF EMPLOYED,GARDENING BUSS,Y4000\nVENTURE CAPITALIST,LIGHTSPEED,Y4000\nFILM MAKER,MISSION OF MERMAIDS LLC,Z9500\nExecutive,Seiber Keast,F4100\nEXECUTIVE,ENLINK GEOENERGY,E1000\nMANAGER,ITEL LABORATORIES,B3000\nGOTHAM PARTNERS,,Y4000\nSAFETY DIRECTOR,BROX INDUSTRIES,Y4000\nRISK ASSESSMENT,EDMC,J7300\nATTORNEY,\"MITNICK & MALZBERG, PC\",K1000\nVINTAGE ADSTART CORPORATION,,Y4000\nSVP Human Resources,Argonaut Group Inc.,F3100\nFINANCE,P KAUFMANN,Y4000\nCONSULANT,MARITIME ADVISORS,Y4000\nFINANCIAL CONSULTANT,DRESSEL FINANCIAL,Y4000\nGOVER,ARCHITECTURE TECHNOLOGY CORP.,G1200\nJAMES W HURT & ASSOC,,Y4000\nExecutive,\"Policy Studies, Inc\",Y4000\nEMPLOYEE,SUMMER SEARCH,Y1000\nPHYS,YOUNKERS REHABILITATION CENTER,H1100\nSTATE STREET DEV CO,,Y4000\nEL PASO PRODUCTION COMPANY,,E1140\nCORPORATE OFFICER,RYNOLDS & DOYLE,Y4000\nSALES,MATHESON VALLEY,Y4000\nTRAI,EXELON-LASALLE NUCLEAR STATION,Y4000\nCONSULTANT,E.L.S. AND ASSOCIATES,Y4000\nSINCLAIR,,E1100\nCHELSEA PINES INC,,Y4000\nVA HOSP. CENTER - ARLINGTON,,Z9000\nINDUSTRIAL CONSULTING,SELF,Y4000\nV.P. HUMAN RESOURCES,A.M. GENERAL,D8000\nRestaurateur,Burger King of Alaska,G2900\nParalegal,\"Alexander D Crecca, PC\",Y4000\nPHYSICIAN,\"VALLEY WOMENS HEALTH GROUP, LLC\",Y4000\nFIELD PRODUCER,C-SPAN,Y4000\nATTORNEY,RAMSHUR LAW OFFICE,K1000\nPRESIDENT,CHAPIN HEALTHCARE,H4400\nProfessor,Vanderbilt,H5100\nREAL ESTATE,MAGIC PROPERTIES & INVESTORS INC,J9000\nREGIST,CUMBERLAND PERRY VO-TECH SCH,Y4000\nSR PROJECT ADVISOR,MACROCOSM,B3000\nADMINISTR,ABO PETROLEUM CORPORATION,E1100\nPROFESSOR,UNVIERSITY OF NEVADA,H5100\nSurgeon,Orthopedic Foot/Ankle Inst,H1130\nPRESIDENT & CEO,NYHUS COMMUNICATIONS,J1200\nInterior design,\"Anna Meyers Interiors, Ltd.\",Y4000\nDance/Movement Thera,self,G0000\nOWNER,ALL AMERICAN,Y4000\nCFO,MEP,D9000\nbureaucrat,US Govt,Z9500\nBLUE MAGIC PRODUCTS COMPANY,,M1000\nOwner,Postcraft Co.,Y4000\nSUNNYSIDE GARDEN DESIGN,,Y4000\nVP FOR PUBLIC POLICY AND ADVOCACY,UN FOUNDATION,X4100\nAttorney,Radney & Morris,Y4000\nLOBBYIST,TWINLOGIC STRATEGIES LLP,K2000\nAttorney,Cleavland Waters & associates,K1000\nTV PRODUC,STEVEN BOCHOO PRODUCTIONS,Y4000\nSALES,TATA STEEL,Y4000\nMANAGER,KAY LEE FAMILY LIMITED PARTNERSHIP,Y4000\nSURGEO,TUCSON ORTHOPAEDIC INSTITUTE,H1130\nTALENT AGENT,SELF-EMPLOYED,C2400\nExecutive,COLDWATER CORPORATION,G5280\nAdministrator,Cerritos College,H5100\nPRESIDENT,VISONEERING INC.,Y4000\nMORGAN LANE,,F4000\nConsumer Protection,Mcdowall Co. L.P.A.,Y4000\nOWNER,\"SPEED SYSTEMS, INC.\",M5100\nATTORNEY,MANUEL & THOMPSON,Y4000\nMARKETING RESOURCES,,Y4000\nCONSTITUTIONAL GOVERNMENT ADVO,SELF,G0000\nEXECUTIVE,LULING PIPE & SALVAGE,Y4000\ndevelopment,Brett Robinson,Y4000\nLawyer,Mirant Corporation,E1600\nREAL ESTATE BROKER,TITAN REAL ESTATE,F4200\nCONSULTANT,REGUS ADVISORS INC,Y4000\nlawyer,\"Post & Schell, P.C.\",K1000\nARCHITECTS,LVA ARCHITECTS,B4200\nCOCA COLA FOUNTAIN BEV D,,G2600\nINDIANA HORSE COUNCIL,,Y4000\nPRESIDENT,FIRST ALBANY CORP.,F2100\nSMITH & HAWKEN,,Y0000\nElectrician,Daimler Corp,Y4000\nBUSINESS EXECUTIVE,V&M STAR,B5300\nBLAKE CHEV/CADILLAC/OLDS,,T2300\nATTORNEY,CARE USA,Z9500\nARTIST/EDUCATOR,Self employed,J1200\nSenior Managing Director,Cambridge Associates LLC,F5000\nAccountant,NCB Capital Impact,F1000\nSALEM VILLAGES,,C5140\nExecutive Director,St. Francis Hospital-Mooresville,H2100\nBusiness Owner,\"Cherry Blossoms, Inc\",Y4000\nlawyer,Kirby and Holt,K1000\nSENIOR MANAGER,CITIGROUP/SENIOR MANAGER,F1100\nPROGRESSIVE TECHNOLO,,Y4000\nOWNER POTATO FARM,JW MATTEK & SONS INC,Y4000\n\"STANLEY CONSULTANTS, INC./MANAGER/V\",,B4000\nCEO,BECK BUS CO.,Y4000\nUNION,TEAMSTERS LOCAL UNION NO. 929,LT300\nMANDELL SHWARTZ & BOISCLAIR,,K1000\nINSTRUCTOR PILOT,HOLLAND CANADA LINE,Y4000\nBanker,First American Bank Corp,F1100\nMetallurgist,Carpenter Technology Corp,M2100\nTreasurer,Wolf Track Software,C5120\nSecretary,Empresas Fonalledas,F4000\nFINANCIAL PLANNER,LEGACY FINANCIAL,F0000\nRETIRED,YOU ARE SO STUPID,Z9500\nPCS HEALTH SYSTEMS,,H0000\nsystems administrator,Purdue University,Y4000\nPOULTRY BUSINESSMAN,,A2300\n\"MGR, BRAND MARKETING\",\"SYNGENTA SEEDS, INC.\",A4100\nPROMETRIX CORP,,J1100\nCOMM OF PA,,J1100\nCPA,Self Employed,F4500\nConsultant,Ice Miller LLP,K1100\n\"VICE PRESIDENT , CFO\",NATIONAL APARTMENT ASSOCIATION,F4500\nATTORNEY,LEVINE PLOTKIN & MENIN,K1000\nPhysician/Radiologist,\"Mel Rapelyea, MD, PC\",H1100\nCEO,DEVACE INTEGRATED LLC/CEO,Y4000\nATTORNEY,\"STARR GERN DAVISON & RUBIN, PC\",Y4000\nPARALEGAL,COTTON BOLTON HOYCHICK & DOUGHTY,Y4000\nTACALA,,J1100\nPrivate Investor,Washington Pk. Ventures L.L.C.,F2100\nMARKETING,CARRIER,G0000\nCONSULTANT,VRYE ADVISORS LLC,Y4000\nPHYSICIAN,PTC,Y4000\nREAL ESTATE DE,DESTEFANO & PARTNERS,F4000\nPHYSICIAN/EDUCATOR,UNIVERSITY OF UTAH/PHYSICIAN/EDUCAT,H5100\nBALLY BLOCKS COMPANY,,Y4000\nMANAGER,ACCESS INDUSTRIES,M2300\nIBERVILLE PARISH COUNCIL,,X3000\nWICFKORD INSURANCE,,F3100\nSr Vice President,Sirius XM Radio,C2100\nATTORNEY,ITKOWITZ & HARWOOD,K1000\nATTORNEY,ANDERSON MILHOLLAND,J6200\nEL FENIX CORP,,Y4000\nAgent,The Magnusson Group,F3200\nCEO,Lehigh Hanson,B5100\nPURCHASING DIRECTOR,THE VILLAGES,F4100\nClinic Coordinator,Wake Forest University Health Sciences,H5100\nINTERNIST,TEMPLE UNIVERSITY,H5100\nMICROBIOLOGIST,ALCON RESEARCH,J1100\nCARDIOLOGIST TEACHING ST,\"ST. LUKE'S\",H1130\nPRESIDENT,TRUNDLE AND COMPANY,Y4000\nChief of Operations,Cogburn Health Services,H0000\nPRE,PACIFIC FEDERAL INSURANCE CORP.,F3100\nCAIN BROTHERS,,Y4000\nBLUE CROSS & BLUE SHIELD ASSOCIAT,,F3200\nBAN,GULF COAST BANK & TRUST COMPANY,F1100\nATT,DAVID S. BROWN ENTERPRISES LTD.,F4100\nSKYLET INC,,Y4000\nManager,Greenlawn Memorial Gardens,G5400\nSales,App,Y4000\nAttorney,McKay Byrne and Graham,K1000\nRE DEVELOPER,\"TIBURON VENTURES, LLC\",Y4000\nVICE PRESIDENT INFORMATION SYSTEMS,THE OHIO NATIONAL LIFE INSRURA,F3300\nCORP EXECUTIVE,\"P & S EQUITIES, INC\",F2100\nST ELIZABETH MEDICAL CENTER,,H2100\nManaging Partner,Renissance Partners,Y4000\nVP & CHIEF OPERATING OFFICER,UNITY POINT,Y4000\nOWNER,AYCOCK CONSTRUCTION,B1500\nPresident,Blackhawk Credit Union,F1300\nOwner,T&R Farms,A1000\nENERGY AND RANCHING,SELF-EMPLOYED,A3000\nRADIOLOGIST,LUBBOCK DIAGNOSTIC RADIOLOGY,H1130\nHRP NURSING HOME,,H3000\nMORGAN SERVICES,,Y4000\nMARKETING,BIPV INC,Y4000\nPublic Affairs,Detroit Regional Chamber,G1100\nATTORNEY,\"MOSKOWITZ & BOOK, LLP\",Y4000\nCEO,Hale and Dorr Wealth Advisors,J1200\nVICE PRESIDENT,TRACTOR & EQUIPMENT CO.,A4200\nBUSINESS OWNER,\"SEEK TECH, INC. & DEEP SEA POWER & LIG\",Z9500\nLOBBYIST,AGC,B1000\nKOREAN SENIOR CITZ ASSOC,,J7500\nBUSINESS ADVIS,SELF EMPLOYED,Y4000\nCONSULTING,ELLIOTT MANAGEMENT,F2700\nPRESIDENT,FIRST SERVICE CORPORATION,T1400\nKLUGE & CO,,C4000\nEditor/Colonel,U. S. Army,X5000\nCivil Engineer,Drake Haglun & Associates,Y4000\nDONOR/FOUNDATION CON,SELF-EMPLOYED,Y4000\nReal Estate,Elad National Properties LLC,F4000\nPRESIDENT,JUSLIRE FINANCE COMPANY,Y4000\nCITY OF ATLANTA,,J7300\nMORTGAGE BROK,THE MORTAGE HOME INC.,F4600\nACCOUNTANT,TREIBER & TREIBER,Y4000\n\"Director of Gov't Affairs\",PhRMA,H4300\nSole-Proprietorship,Darrel Conner,G4600\nREGIONAL MANAGER,NATIONAL ASSN. OF MANUFACTURER,M0000\nGARDERE & WYNN LLP,ATTORNEY,K1000\nCONTRACTO,B & C CONTRACTING COMPANY,J1100\nCARLILE ENTERPRISES INC,,T3100\nLAW CLERK,BRIGGS & MORGAN PA,B4000\nPresident,Medsource Consulting,Y4000\nReal Estate Agent,Century 21 Golden Realty,Z9500\nSELF-CULINARILY YOURS,,G2910\nBUSINESS O,PRAIRIE PAGES BOOKSELLER,Y4000\nPRESIDENT,MASTER KITCHEN & BATH,Y4000\nPhysician,Peachtree Ear Nose & Throat,H1130\nCOHEN MILSTEIN HUNSFELD & TOLL PLLC,,K1000\nFinancial Management,Neiman Marcus,G4300\nCOMMISSIONER,NYS WORKERS COMP BOARD,Y4000\nPSI/ANDOVER/PHYSICIST/MANAGER,,Y4000\nLAWYER,MARSHALL & MELHORN,Y4000\nADMINISTRATOR,GRANGER VILLA,Z9500\nSr. Customer Service,Lutgert Smith Lesher Insurance  Inc.,F3200\nEntertainment Director,\"ZIEGFELDS, INC.\",Y4000\nINTERIOR DESIG,HB PENTURF INTERIORS,Y4000\nGALBREATH INC,,Y4000\nMANAGER,GUAM MEDICAL REGIONAL CENTER,Y4000\nAGDATAINC/OWNER/PRESIDENT,,C5130\nPresident,Stocktrans Inc,Y4000\nMANAGING PRINCIPAL & CO-CIO,\"GOTHAM ASSET MANAGEMENT, LLC.\",F2300\nPRESIDENT,TOYBIN INSURANCE AGENCY,F3100\nTech,Manti Ventures,Y4000\nSECRETARY OF SENATE,,Y4000\nC M UBEERMAN ENT INC,,Y4000\nGREENFIELD ONLINE,,C5140\nSURVEY SUPER,DEPARTMENT OF COMMERCE,X3000\nPhilanthropist,\"Taylor Family Foundation, Inc\",Y4000\nEXEC,RBC DAIN RAUSCHER INCORPORATED,F2100\nwriter and part-time,Harvard-Westlake School,H5100\nTEACHER,NORTHSHORE SCHOOLS,H5100\nOWNER,MODERN CONTRACTING INC,B1000\nYACOBI & PILLSBURY LLC,,Y4000\nDAIMLER CHRYSLER,,J1100\nEXECUTIVE,ELLIOTT MACHINE WORKS  INC.,Y4000\nSCIENTIST,MAYO CLINIC SCOTTSDALE,H2100\nRETIRED TEACHER,NONE/RETIRED TEACHER,J7400\nVP Regulatory Policy,Agricultural Retailers Association,A4100\nProfessor/Economist,MIT,H5100\nPROGRAM DIRECTOR,PHILADELPHIA READS,Y4000\nAEROSPACE CONSULTANT,SELF-EMPLOYED,T1000\nLAW OFFICES OF THOMAS R. GREEN,,K1000\nLAWYER,SCANLRON CORP,Y4000\nPresident,Carter Manu. Co.,Y4000\nWHITE ROBBINS,,Y4000\nVICE PR,ROBERT WHITE ASSOCIATES INC,G5210\nCARNEGIE ENDOWMENT,,J7400\nOWNER,MURPHY MOTORS,Y4000\nHRC INVESTMENT CORP,,Y4000\nLawyer,Shubin and Bass,K1000\nADMINISTRATOR,SEDICO INC,Y4000\nLENNARD & ASSOCIATES,,Y4000\nINVESTOR,HC COMPANY,Y4000\nExecutive Vice Presi,MERS,F4600\nPHYSIC,HAWAII PERMANENTE MED. GROUP,H1100\nChief People Officer,\"Wells Real Estate Funds, Inc\",F4100\nFINANCE,CITY NATIONAL BANK,F1100\nCEO,KROGER,G2400\nHEALTHFUTURES INC,,Y4000\nFinance,International Finance Corporation,F0000\nBusiness Owner,Ranchland,A3000\nCHAIRMAN,EWALD AUTOMOTIVE,T2000\nPARTNER,STANSFIELD & TINDAL,Y4000\nIndependent Contractor,Self-employed,B3000\nAttorney,Mackenzie & Dornik,J7400\nChairman,Morino Enterprises,X4100\nACTOR WRITER CARPENT,SELF-EMPLOYED,J1200\nHIGH SCHOOL HISTORY TEACHER,HAVERHILL PUBLIC SCHOOL,X3500\nRADIOLOG,SCOTTSDALE MEDICAL IMAGING,H1130\nExecutive,GRAKON INTERNATIONAL,T2200\nDAIRY FARMER,XAVIER AVILA,Y4000\nPRESIDENT,\"TDR PACKAGING, INC.\",J6200\nCONTROLLER,CAPSTEAD MORTGAGE CORPORATION,F4100\ntrial attorney,self,K1100\nGILBANK CONSTRUCTION INC,,B1500\nPYSICIAN SCIENTIST,VOF CA,Y4000\nFire Fighter / EMS,Mesa Fire Dept,L1400\n\"CEO,\",GRAND STREET SETTLEMENT,Y4000\nRESTA,HOPS RESTAURANT-BAR & BREWERY,G2900\nPRESIDENT,ARVA PARKS & COMPANY,Y4000\nATTORNEY,GIBSON DUNN CRUTCHER,K1200\nMARKETING,UNIPRISE,Y4000\nCEO,OLIVIA,Y4000\nCEO,PANTHER ENERGY COMPANY,E1120\nMANAGEMENT,AMERICAN CAREER COLLEGES,H5200\nPRESIDENT,UNIVERSITY CIRCLE INC,H5100\nOperations,Orepac Building Products,Y4000\nSPECIAL ASS,NYS DEPARTMENT OF LABOR,X3000\nPRESIDENT/CEO/EXECUT,Delta Scientific Corp.,Y4000\nphysician,Heritage Valley Healthcare System,Y4000\nPHYSICIAN,TWIN CITY ANESTH,H1130\nReg Sales Director,The TharpeRobbins Company,Y4000\nREGISTERED NURSE,ADVANCED FLEXIBLE COMPOSITES,M8000\nEYE CARE ONE,,H3300\nRAYNAM DOG TRACK,,G6500\nSR VP,Valor Telecom,C4000\nPRODUCT MANAGER,SMITH INTERNATIONAL INC.,Y4000\nHILL SLATER INC,,Y4000\nUNDERWRITERS SAFETY & CL,,F3100\nCeo,Provident Realty Partners,F4200\nSALES,TQIC,Y4000\nExecutive,Johns Hopkins University,H5100\nInsurance Agent,Planning Resources Corporation,Y4000\nNurse Practitioner,\"Mason Consulting, LLC\",H1710\nVM Creative,,J1200\nCFO,CENTRAL ONE FCU,F1300\nTV BUSINE,THE WB TELEVISION NETWORK,C2400\nVICE PRESIDENT,CROSSLAND CONSTRUCTION,B1500\nFARMER,SELF -EMPLOYED,A1000\nTrader,Gordman,F2000\nRetired from USWEST (now Qwest),None,X1200\nDESIGNER,SIXENSE ENTERTAINMENT/DESIGNER,Y4000\nMEADOWLANDS FOOT & ANKLE CTR,,H1100\nINVESTMENT MANAGER,PORTICO BENEFIT SERVICES,Z9500\nAttorney,\"Pachulski, Stary, Ziehl & Jone\",J5100\nCoordinator,RPW,Y4000\nCOMPUTER ENGINEER,\"GOOGLE, INC.\",C5140\npatient care,Saint Clares,Y4000\nOperations,Coca-Cola,G2600\nManagement,Telsasoft,Y4000\nEDITOR,LAFAYETTE SUN,Y4000\nEditor,Vending Times,C1100\nPolitical Director,Nevada Senate Dem,Y4000\nTEACHER,WAYLON BARNES ELEMENTARY,Y4000\nB C D TRUCKING,,T3100\nPRESIDENT &,\"RAYMOND JAMES BANK, FSB\",F1100\nPresident & CEO,Northern Navigation Group,Y4000\nLawyer,Bingham Mccutchen,Z9500\nSELF/BROKER/DEVELOPER,,F0000\nPresident,\"Triangle Distributing Co, Inc\",G2850\nBARNES & POWELL ELECTRICAL COMPANY,,B3200\nRELATIONSHIP MANAGER,\"COHEN,STEERS CAPITAL MANAGEMENT, INC\",Y4000\nRETAIL PROPERTY MANAGEMENT,SD MALKIN PROPERTIES INC,F4000\nConsulting Services,Jackman Enterprises,Y4000\nINFO REQUESTED,DESIGNER SHOWCASES INC,Y4000\nOwner,Eric Dl Sherer. Pc,Y4000\nCOURT REPORTER,\"LAURA L. KOOY REPORTING, LTD.\",Y4000\nCHIEF FINANCIAL OFFICER,RENT-A-CENTER,G5300\nVice President and C,UST Inc.,A1300\nAttorney,Morgan Lewis & Bockius LLP,Z9500\nATTORNEY,FONDA & FRASER LLP,Y4000\nGOOD HOUSEKEEPING,,Y4000\nCONTRACTOR,DIRECT AIR CONDITIONING,B3400\nMONTROSE PHARMACY,,G4900\nPROJECT MANAGER,D.M.L.T. L.L.C.,C5130\nENGINEER,DRIL-QUIPINC.,Y4000\nPSYCHIATRIST,WEST SUBURGAN MULTI,Y4000\nPHARMACIST,GRANDVIEW PHARMACY,G4900\nEXECUTIVE,SUN COMPANY,Y4000\nRETIRED,SUNMARK CAPITAL,F0000\nATTORNEY,SMITH BOVILL,Y4000\nFinancial Planner,Carter Financial,F0000\nOWNER,\"WESTERN AERO SERVICES, INC.\",J1100\nCEO,\"Laminations, Inc\",Y4000\nASSISTANT TO THE CHAIRMAN,ORP,Y4000\nSACRAMENTO ADVOCATES,,D9000\nPENSION CONSULTANT,\"CETA BENEFIT CONSULTING GROUP, LLC\",F5500\nEVANS MCDONOUGH/PRINCIPAL/OWNER,,Y4000\nSE/DIRECTOR/TRUSTEE,,Y4000\nCO-OWNER,TEXAS PETITION STRATEGIES,Y4000\nDIRECTOR OF GOVERNMENT RELATIONS,NAWC,Y4000\nManager of Accelerate,Chartwell Grp,Y4000\nChemist,Rib-X Pharmacueticals,Y4000\nPRESIDENT,DRIGGS SEARCH INTERNATIONAL/PRESIDE,G5250\n\"MASER, SOSINSKI & ASSOC\",,Y4000\nLOFTIS JEWELRY & PAWN BROKERS,,G4600\nON A ROLL TRUCKING,EXECUTIVE,T3100\nRetired Prof Microbiology,Retired,X1200\nProgram Annotator,Atlanta Symphony Orchestra,C2800\nPHYSICIAN RETIRE,VA HOSPITAL FRESNO,H1100\nAnesthesiologist,Western Anesthesiologist,H1130\nHOSPITAL CEO,SELF-EMPLOYED BALDPATE HOSPITAL GEORGE,H2100\nTRUCKING,\"PRIME, INC.\",T3100\nSALADO NATL BANK,,F1100\nPHYSICIAN,RICHARD A. EVANS,Y4000\nRetired,\"Jonah, LLC\",M1000\nOwner,Wronsky,B4200\nExecutive,\"Drury Capital, Inc.\",F0000\nVICE PRESIDENT,ZMG CONSTRUCTION,B1500\nChairman,Microsoft,C5120\nVP Corporation Relat,Georgia Pacific,A5000\nSALES REP,LIBERTY CARTON,Y4000\nFLORAL HAVEN CEMETARY,,Y4000\nBUSINESS EXEC.,\"NATKOL, INC.\",Y4000\nLOST MEN PRODUCTION,,C2400\nOwner,Jjas Assoc. Inc.,Y4000\nsecretary,Merrill Lynch,F2100\nDEVIN & DROHAN,,K1000\nMedical Research,Quest Diagnostics,H3400\n\"SENIOR VICE PRESIDENT, TALENT & PRODUC\",A&E TELEVISION NETWORKS,C2200\nMANAGER,CENTRAL MT ELECTRIC,E1610\nREAL ESTATE DEVELOPER,\"ANDRIS REALTY, INC\",F4200\nREAL ESTATE MANAGE,\"TRF PACIFIC, LLC\",F4000\nWORK FOR ARMY,US GOVENMENT DOD,X5000\nComputer Programmer,MNL,Y4000\nPresident/CEO,Morton Drug Company,Y4000\nSMALL BUSINESS O,SCHULER BOOKS INC.,Y4000\nEXECUTIVE,PARAMOUNT PICTURES-VIACOM,C2400\nLaw Instructor,Montana State University,H5100\nLAWYER,BURNS & LEVINSON LLP,K1000\nHealthcare Sr Program Director,Kaiser Foundation Health Plan,H3700\nPASTOR,2ND MT. OLIVE BAPTIST,Y4000\nArt Historian,Self,J1200\nattorney,self-employed,J7400\nPEDIATRICIAN/PHYSICIAN,UNIVERSITY OF OKLAHOMA,J1100\nPEDIATRIC CARD.,\"CHILDREN'S CARDIOLOGY ASSOCIATES\",H1100\nCHAIRMAN OF THE BOARD,CHUGACH ALASKA CORPORATION,F4100\nSTANDARD CAR TRUCK CO,,T5100\nVICE PRESIDENT,AMERICAN FAMILY INSURANCE,F3200\nREDWOOD PRODUCTIONS/WRITER/PRODUCER,,C2400\nBOARD OF DIRECTORS,DAWN FOODS,Y4000\nOwner,Koffel Medical,H0000\nLIFE INSURANCE AGENT,MINAESOTA LIFE,F3100\nAttorney at Law,Martinez Odell and Calabria,K1000\nUniv Faculty,Unc At Chapel Hill,H5100\nGeneral Consultant,Self-Employed,G5270\nLAB PREPARATOR,UNIVERSITY OF OREGON,H5100\nPURCHASING MANAGER,ADVANCE RESEARCH CHEMICAL,M1000\nPRESIDENT,MIKE SHAW AUTO,T2300\nGLOBALHUE/CHAIRMAN/CEO,,Y4000\nHomemaker/Activist,self,J7400\nARC,HAMMOND BEEBY RUPERT AINGE INC.,Y4000\nINVESTMENT,CAPITAL SOUTHWEST CORP.,F2500\nCollege Professor,City University of NY,H5100\nIrobot,,Y4000\nATTORNEY/CPA,TRIAC DEVELOPMENT INC.,Y4000\nPhysician,Department of Justice,X3200\nOWNER,WORLDWIDE INTERIORS,Y4000\nNA,MOTHER,Z9500\nANESTHESIOLOGIST,MANKATO ANESTHESIA ASSOCIATE,H1130\nLONGVIEW ENTERTAINMENT LTD,,C2400\nCOLLEGE OF WILLIAM &,,H5100\nLONG TERM HEALTH CARE SERVICES,,H2200\nT-BOND BROKER,SHATKIN ARBOR KARLOV,F2200\nGOVERNMENT  AFFAIRS CONSULTANT,IMPEL STRATEGIES,K2000\nOwner,Hansen Real Estate Appraisers,F4000\nSecretary,Ben Lomand Rural Telephone Cooperative,C4100\nENGINEER,3 M,M2300\nPRESIDENT,\"CWB SERVICES, LLC\",Y4000\nOwner,Georgetown Square  Liquors,G2840\nSocial WOrker,Psych Centers of SD,X3500\nATTORNEY,FULLER & SUAREZ,K1000\nMUSIC DIRECTOR,UUCDC,Y4000\nFinancial Servi,Goldman Sachs & Co.,F2300\nSelf Employed,\"Lunchbyte Systems, Inc\",Y4000\nDOCTOR,BEYOND THE IMAGE,H1100\nCONTRACTOR,SILVER STAR CONSTRUCTION,B1500\nMEDICAL COLLEGE OF PHILA,,H5150\nDeveloper/Economist,Own,Y4000\nOwner,Rama Restaurants,G2900\nAssociate,\"Gibson, Dunn and Crutcher\",K1000\nPHYSICIAN,\"WOMEN'S GROUP OF SANTA CRUZ\",H1130\nUS AIR FORCE ACADEMY,UNIVERSITY PROFESSOR,J7400\nLawyer,Katten Muchen Rosenman,K1000\nConsultant,Thorton Group,Y4000\nSPENCE OLDS,,T2300\nAttorney,\"Willkie, Fan & Gallagher LLP\",K1000\nINDRA TECHNOLOGIES,,Y4000\nPRESIDENT & CEO,ABORTION CLINICS ONLINE,Y4000\nSeminar Presenter and Publisher,Self employed,Y4000\nSNR MANAGER CORP CITIZENSHIP,MICROSOFT,C5120\nBUSINESS,CATSTUDIO,Y4000\nCOMMERICAL PROPERTY DEVELOPER,SELF-EMPLOYED,F4100\nLAWYER,ICE MILLER,K1000\nSystems Engineer,Derek Vockins,Y4000\n\"PROFESSOR OF MANAGEMENT, EMERITUS\",\"CALIFORNIA STATE U, SAN BERNARDINO\",Z9500\nARCHITE,JOHN E. TAYLOR & ASSOCIATES,B4200\nPRESID,HISPANIC CHAMBER OF COMMERCE,G1100\nSCHWARTZ COOPER,,K1000\nStrategic Planning,Conde Nast Publications,C1100\nREAL ESTATE,SJM REAL ESTATE,Z9500\n\"SCHROETER, GOLDMARK ET AL\",,K1000\nGENERAL MANAGER,CUBIC APPLICATIONS INC.,Y4000\nGILMAN PAPER CO,,A5200\nPresident,Eastern Group Inc,Y4000\nATTORNEY,THOMAS S PATTISON,H1100\nSenior Vice President,Riverside Memorial Chapel,G5400\nV.P.,NU WAY CONCRETE FORMS,B5100\nPROJECT VP,USF PROCESS WATER,E3000\n\"Executive Director, Tribeca Film Festi\",Tribeca Film Festival LLC,C2400\nAttorney,Nasatir Hirsch Podbersky Genego,Y4000\nTHANKSGIVING COFFEE CO,,G2600\nPresident,Afton Chemical Corporation,M1000\nVice President,\"The Dutko Group, LLC\",K2000\nAttorney,\"Foley, Hoag, Eliot\",K1000\nConsultant,APG,Y4000\nOwner,Casey J Williams Dmd,Y4000\nHUNTLEYS JIFFY STORES,,G4300\nLONGABERGER COMPANY,,M4000\nOWNER,STONE HAVEN INN MOTEL,T9100\nSESTILI NURSERY INC,,Y4000\nScientist,Hewlet Packard,C5100\nAttorney,Carter & Carter,Y4000\nSURG,TRIANGLE ORTHOPEDIC ASSOCIATES,H1100\nMedia Advisor,Oaktree Capital Management,F2100\nSENIOR SHA,MULVANEY KAHAN AND BARRY,J1100\nPRESIDENT,CANPFA,Y4000\nProject Manager,CDG,Y4000\nPROJECT MANAGER,PALMETTO CONSTRUCTION INC,B1500\nHead of Wealth Mgt.,\"UBS Financial Services, Inc.\",F2100\nRADIOLOGIST,RADIOLOGICAL ASSOC. OF FREDERICKSBURG,H1130\n926 ASSOCIATES,,Y4000\nDeveloper,PHP Group,Y4000\nCORPORATE SECURITY,ERS INC.,Y4000\nU OF A MEDICAL CENTER,,H2100\nJOHN COURY,JOHN COURY,Y4000\nCOUNTY OF PITTSBURGH,,X3000\nVICE PRESIDENT SALES,JASPER WYMAN,A1400\nARCHITECT,SHEELEY ARCHITECTS INC.,B4200\nCHIROPRACTOR,ZOELLNER CHIROPRACTIC,H1500\nHOWELL FIRM,,Y4000\nROCKWELL COLLINS INC,,T1300\n911 Operator,City of Henderson Police Department,X3000\nSelf - Employed,Dairyman,A2000\nKRETSCHMAR & SMITH INC,,B3000\nADMIN,\"LGM, LLC\",Z9500\nASSISTANT EXECUTIVE DIRECTOR,US. CONFERENCE OF MAYORS,X3000\n\"COHEN, MILSTEIN, HAUSFELD & FALL\",,K1000\nENGINEER,,E1150\nVICE PRESIDENT,M-CAM,F5100\nHedge Fund Manager,Yusaf Jawed,Y4000\nCONTRACTOR,M. & L. INC.,Y4000\nPresident & CEO,Mercy Health Systems,H3700\nBusiness Consultant,Collaboration LLC,Y4000\nV.P. GOVT AFFAIRS,DUTKO WORLDWIDE,K2000\nCEO,VECTOR RESEARCH,C5100\nSelf - Employed,Cfl Transport,T0000\nSALES DIRECTOR,GOOGLE INC.,C5140\nREATS ADVISORS,,F4200\nVISITOR SERVICES,PATUXENT RESEARCH RE,Y4000\nPSYCHIATRIST,WISCONSIN DEPT OF CORRECTIONS,H1110\nComputer Consultant,\"Loy Enterprises, Inc\",Y4000\nPRESIDENT,STRYKER ENERGY,E1120\nBanker,United Midwest Savings Bank,F1100\nexecutive,Innovative Technologies,G5200\nWELLS PINCKNEY MCHUGH,,K1000\nTRANSPORTA,BLACK TIE TRANSPORTATION,T0000\nFinance,Franklin Templeton Services Ll,Y4000\nInsurance,Dick DeRoberts & Company,F1200\nWIEL & SON INC,,F3100\nCOPAY DIRECTOR,DEMPSEY & CO,Y4000\nVice President,\"Tube Supply, Inc.\",Y4000\nDAVIDSON & CHOY,,G5210\nUNIVERSITY NE AT OMAHA,,H5100\nINVEST,NORTHSTAR CAPITAL MANAGEMENT,J1100\nFIELD ORGANIZER,PLANNED PARENTHOOD ADVOCATES OF MI,Y4000\nEXECUTIVE,T & L IRRIGATION,A4000\n\"THE CHILDREN'S DOCTOR\",,H1100\nINVESTMENTS,STUART FRANKEL,F2000\nOFFICE LOUNGE,,Y4000\nSoftware developer,\"Burdick, Inc.\",Y4000\nReal Estate,Western Development,Y4000\nRED LOBSTER DIVISION DARDER,,Z4200\nACCOUNTING MANAGER,RB WINE ASSOCIATES,Z9500\nPHYSICIAN,METROWEST ACCOUNTABLE HEALTHCARE ORGAN,Y4000\nEARTH MOVING,GRIFFIN CONTRACTING,B1500\n\"VP, Corporate Comm & Public Policy\",Facebook,C5140\nEDUCATOR,CORAL ACADEMY OF SCIENCE,Y4000\nELECTRICAL CONTRACT,I.D. ELECTRIC,B3200\nINVESTOR,PROLOG VENTURES,Z9500\nNORTHWEST HARDWOODS,,A5200\nOil Operator,Gary-Williams Energy,E1000\nPOLICE OFFICER,MIAMI SHORES POLICE,Y4000\nGENE CODES CORP,,C5120\nBANKER,FIRST MORRIS BANK,F1000\nVice President/General Manager,Budweiser-Busch Distributing Co,G2850\nSUMMIT BUSINESS SYSTEMS,,Y4000\nV P MARKETING,,J7400\nAMERICAN FOUNDATIO,FRENCH,K1000\nTHE ESTES COMPANY,,F4100\nEXECUTIVE,EXPANIES,Y4000\nDOUGLAS A KING BUILDERS,,B1500\nCRNA,Sutter Delta Health,H1710\nEXECUTIVE,PINNACLE LEASING,Y4000\nWILLIAM S WOOTEN D D S P A,,H1400\nGA STATE U & TOWNES CONSULT/PS/PROF,,Z9500\nREAL ESTATE,KLAFF REALTY,F4200\nATTORNEY,STEPHEN H HAGLER LLC,Y4000\nNot Employed,None,F7000\nDirector,National Center for MFG Sciences,M0000\nSALES ENGINEER,ROHATI SYSTEMS INC.,Y4000\nVICE PRESIDENT VERTICAL INDU,NEXTEL,C4300\nCEO,THE CARBONNEUTRAL COMPANY,Y4000\nPresident,Brimar Industries Inc,Y4000\nSPENCER & RUBINOW,,G5210\nINFO REQUESTED,Ubs Financial Svc.,F2100\nCONSTRUCTION,,B4200\nOwner,\"Crance & Co., Llc\",Y4000\nPresident,Brady & Associations Const & Dev,B1500\nADULT CARDIOLOGY,Southern Heart Center,H1100\nOHNELL CAPITAL,,F0000\nCo-Owner,\"Ray Geddes Company, Inc\",Y4000\nUniversity of Massachusetts,Human Services Consultant,G5200\nPASTOR,NEW LIGHT CHURCH,X7000\n\"SVP, COMMERCIAL/MULTIFAMILY CORPORATE\",MORTGAGE BANKERS ASSOCIATION,F4600\nPhysican,Department Of Veterans Affairs,X3000\nAutomotive Technician,Thompson Lexus,J1100\nMONARCH CHRISTIAN SCHOOLS/PRES/OWNE,,H5100\nPRESIDENT & CEO,BARTLEY HEALTHCARE,H2200\nInformation Requeste,CSFB,F2100\nPresident,L and Z Partnership,Y4000\nInformation Requeste,CGI Federal,C5120\nFILMMAKER,JWP  INC.,Y4000\nCHAIRMAN,BRYSON INC,Y4000\nMortgage Broker,Sterling Financial,F2300\nCREDIT LENDERS FINAN. SVCS/PRES/CEO,,F1400\nSELF-EMPLOYED,WORKED CONSULTING LLC,Y4000\nCHAIRMAN,ROPPE CORPORATION USA,Y4000\nMULLIN & FILLIPPI,,Y4000\nDOOLEY CHEMICAL CO,,M1000\nGRIEF CONSULTANT,,G5000\nVice President,The Facility Group Inc.,B4000\nTAHOE CITY PLAZA,,Y4000\nATLANTIC EYE INSTITUTE/PHYSICIAN/SU,,Y4000\nRPS CORP,,Y4000\nInvestments,Falcon Investment Group,F0000\nSENIOR VICE PRES,JORDAN KITTS MUSIC,G4600\nCIVIL ENGINEER,MANWA CAL INC.,Y4000\nBENCHMARK DEV CO,,B2000\nRHYTHM & HUGHES STUDIO,,Y4000\nBERENSON MINELLA & COMPANY,,F2300\nCAR DEALER,LAWRENCE HALL CHEVROLET/CADILLAC,T2300\nPARTNER,\"HENRY, SPIEGEL, FRIED & MILLING, LLP\",Y4000\ndance artist,Self-Employed,Y4000\nCLERK SENIOR,PURDUE PHARMACY,G4900\nCEO,RIAA,T2100\nVICE PRESIDENT T,CONTRANSPORT GROUP,T0000\nPresident,Nor-ral Plastics,M1500\nAttorney,Oxbridge Development,Y4000\nTRANSPORTATI,BISHOP SANZARI CREAMER,B1000\nCEO,\"PROFILES INTERNATIONAL, INC.\",Y4000\nSPEECH-LANGUAGE PATHOLOGIST,RETIRED/SPEECH-LANGUAGE PATHOLOGIST,X1200\nREAL ESTATE INVESTOR,URIARTE ASSOC,Y4000\n\"Director, Government Relations\",Honeywell,M2300\nPediatarician,State of Vermont,X3000\nConsultant,CCG,Y4000\nATTORNEY,\"WILMER, CUTLER, AND PICKERING/ATTOR\",K1000\nConsultant,Ascertaining,Y4000\nINSURAN,INTERSTATE IN. UNDERWRITERS,F3100\nGARY-WILLIAMS ENERGY,,E1120\nExecutive,\"Fast Foon Systems, Inc\",G2900\nBRENLIN GROUP,,J1100\nINTERNATIONAL BANKING,CITIGROUP,F1100\nPROGRAMMER/ ANALYST,MEDINA GENERAL HOSPITAL,H2100\nH S SYSTEM INC,,H3400\nConsultant/Lobbyist,Boeing,D2000\nConstruction,BBL Inc,Y4000\nCOLE CAPITAL & CONSULTING,,F0000\nPHARMACIST,\"GREENWOOD DRUG, INC\",Z9500\nARCHITECT,GRAY AREA DESIGN,Y4000\nCounsel,Midwest Airlines,T1100\nPARTNER,THOMAS H. LEE PARTNERS,F2600\nExecutive Producer,Conaco LLC,Y4000\nBOCOOK OUTDOOR,,G5230\nFulcrum Investiments,,F2600\nATTORNEY,FINE WYATT & CAREY,Y4000\nOwner,Robison/Seidler Co,Y4000\nGORAYEB & CUYLER,,K1000\nCFO,SELF,G0000\n\"DAVIS, POLK & WARDWEL\",,K1000\nENGINEER,\"THOMAS, DEAN & HASKINS\",Y4000\nCOMPUTER SCIENTIST,XKL LLC.,C5120\nMID-AMERICAN ENERGY,,E1620\nBAY AREA ASSN OF SMACNA CONT ASSO,,B3400\nEXECUTIVE,HOWARD HUGHES MEDICAL INSTITUTE,H4500\nMD,PEDITRIX,Y4000\nBEER DISTRIBUTOR,CUNNINGHAM WHOLESALE CO. INC,X1200\nMail contractor,Summit Trucking Company Inc,X3700\nOWNER,ADAMS CUSTOM ENGINES INC.,Y4000\nCOLBY INTERESTS REAL ESTATE,,Y4000\nVenture Capitalist,Advent Intl. Corporation,F2600\nCOMMUNITY CONSULTANT,SELF-EMPLOYED,G0000\nHAROLD BECK & SON INC,,M2300\nPRESIDENT,CENTRAL STATES BEVERAGE,Y4000\nPhysician,University of Rochester,Z9500\nELIZABETHTOWN COMMUNITY C,,H5100\nEDUCATIONAL,TELEGRAPHICS,Y4000\nManager,County Of Ventura,X3000\nSocial Worker/Child Psychologist,Self employed,J5100\ntax preparation,Self Employed,F5300\nPresident & CEO,\"Oceaneering International, Inc\",E1150\nMOTOR & EQUIPMENT MANUFACTURERS ASS,,J1200\nEngineer,New Industries Inc,E1100\nEXECUTIVE DIRECTOR,PARKVIEW FOUNDATIONS/EXECUTIVE DIRE,Y4000\nCamputer Programmer,Eclipsys Corp,C5120\nCivil Engineer,Navigant Consulting Inc,G5270\nIT,Thomson Reuters,C1100\nATTORNEY,GALLP JOHNSON & NEUMAN,J5100\n\"WALTS REALITY, INC\",,Y4000\nMBP CONSULTING,,K1000\nGovernment Relations,Jorden Burt,K1100\nCHAIRM,\"MEC CAPITAL MANAGEMENT, INC.\",Y4000\nEXECUTIVE,HENDERSEN WEBB,F4500\nSR VP AND GENERAL COUNSEL,\"FPL Group, Inc\",E1600\nReal Estate Inv.,West Group,F4100\nREALTOR,PLATINUM REALTY,F4200\nInvestor,Ferreri Invesment Corporation,Y4000\nAdmin Asst,RC Durr Co,B1000\n\"Contract Associates, Inc.\",,Y4000\nSR. EXEC. V.P. & CHI,STATE FARM INSURANCE,F3400\nWriter,Comcast Entertainment Group,C2200\nFAMILY THERAPIST,SELF,J7700\nDRIVER,PPI INDIANA,Y4000\nI.E. TRAINING MANAGER,United Parcel Service,T7100\nOWNER,YORKS AND LANCS AUTOMOTIVE,J1200\nSOAVE ENTERPRISES LLC,,M2400\nNONPROFIT MANAGER,LANTERN COMMUNITY SERVICES,Y4000\n\"DIRECTOR, GOVERNMENTAL RELATIONS\",GENERAL CONTRACTORS & STRATEGIC PARTNE,Y4000\nPAIN PHYSICIAN,SELF,H1130\nInvestment Banker,K&R Investments,F2100\nCeo,Cincinnati United Contractors,B1500\nEXECUTIVE,FNL MANAGEMENT CORP,Y4000\nCONSULTANT,VAN SLYKE CONSULTING,Y4000\nSUNDBERG CHIROPRACTIC CENTER,,H1500\nFLEISMAN-HILLARD INC,,K2000\nPhysician,East Boston Neighborhood Health Ca,Y4000\nPhilenthropic Development,Children of Armenia Fund,Y4000\nAttorney,Thomas Reed Attorney at Law,Z9000\nReal Estate Devloper,\"Bauer & Company, Inc.\",Y4000\nINFORMATION REQUESTED PER BEST EFF,COMANCHE ROCK RANCH,Y4000\nBON VOYAGE TOURS INC,,Y4000\nRealtor,Windermere RE / Puyallup,J9000\nRetired PA,University of New Mexico,H5100\nDEPUTY CHIEF,DALLAS POLICE,X3200\nPhysician,Kettering Hospital,H2100\nWILSON BANK & TRUST CO,,F1100\nInformation Requeste,\"Jorgenson, Siegel & Mcclure\",J1200\nPORTA MANAGEMENT GROUP,,Y4000\n\"EVP, HUMAN RESOURCES\",MICROSOFT,C5120\nAttorney,Law Offices of Robert L Baum,K1000\nDIETICIAN,TAYLOR HIGH CLINIC,Y4000\nSALES REP,RAMONA AND ASSOC INC,Y4000\nOWNER,SHREVEPORT-BOSSIER GLASS,Y4000\nConsultant,\"Benefit Partners, Inc.\",Y4000\nLINCOLN TELECOMMUNICATIONS,,C4100\nMERCHANT MARINE  OFF,VARIOUS SHIPPING COMPANIES,LT500\nPIZZA HUT OF UNIONTOWN,,G2900\nVINITA PUBLIC SCHOOLS,,X3500\nCO-OWNER MOVING & STORAGE,SELF-EMPLOYED,Y4000\nCEO,Mandex,Y4000\nAnnuity Broker,James Street Group Of Fl,K1000\nbanerk,FirstBank,F1100\nPhysician,SouthCoast Medical,H1100\nExecutive Director,IHRSA,G5800\nRealEstate Residential Sales,Realty Professionals,F4000\nMT SINAI SCHOOL OF MED,,H5150\nMontclair Endocrine Associates LLC,,H1130\nUNIV OF NEW ENGLAND,,H5100\nTEACHER,HARMONY SCIENCE ACADEMY,Y4000\nLPMC INC,,F2100\nEXECUTIVE,MIRACLE PLAZA FM,Y4000\nDIRECTOR OF OPERATIO,ICEBERG DRIVE-IN,G2900\nANESTHESIOLOGIS,U OF NE COLL OF MED,H1130\nBUSINESS FOUNDER AND CEO,SELF,Y4000\n\"Vice President, Inve\",Sepracor,H4300\nTHE REAL ESTATE EQUITY CO,,F4000\nPresident,Builders Window & Door Inc.,M7200\nREAL ESTATE,EWS REAL ESTATE INVESTMENT CORP.,F4000\n\"O'NEILL ATHY & CASEY\",,B1500\nGEOLOGIST,POTTS EXPL.LLC,Y4000\nADTRUC,,Y4000\nSTERLING ENERGY OPERATIONS,,Y4000\nCEO,AMKA GRAPHICS STUDIO,Y4000\nCITY MGR,FRESNO CO.,Y4000\nHELMS MULLISS & WICKER,,K1000\nPresident,\"Vela Insurance Services, Inc.\",F3400\nTHE C.D.M. COMPANY,,Y4000\nConsultant,OCR Services,Y4000\nUNIVERSITY LECTURER,INFORMATION REQUESTED,H5100\nJANSSON SHOPE BRIDGE MUNKEN,,Y4000\nInvestment Advisor,Self employed,G0000\nPres & CEO,\"Ralph S Inouye Co, Ltd\",B1000\n\"VP, IT & CIO\",ST. JUDE MEDICAL,H4100\nPRESIDENT,GUYAN INC.,Y4000\nPHARMACIST,WOODS SUPERMARKETS,G2400\nATTORNEY,SEKAS & ABRAHAMSEN,K1000\nGeneral Management,\"Titan Holdings, Inc\",Y4000\nDIRECTOR B,JLC LEARNING CORPORATION,Y4000\nAUTOSOUND,,Y4000\nVERCO MANUFACTURING,,M5000\nRetired,Insurance Eecutive,F3100\nPRESIDENT,AMITY TOYOTA SUPERSTORE,T2310\nDENTIST,PATTERSON DENTAL CARE,H1400\nNAWCAD,,Y4000\nAttorney,Davis Saperstein & Saloman,J1200\nPARSONS,BECHTEL,E1700\nADMINISTRATIVE ASSISTANT,BENEDICTINE COLLEGE,H5100\n\"VICE-PRESIDENT, NETWORKING DIVISION\",AQUILA TECHNOLOGIES,C5130\nX-RAY DEPARTMENT,KAISER HOSPITAL,H2100\nANCHOR SERVICES,,Y4000\nManager,Cornet Technology,Y4000\nOFFICE MANAGER,EXPANSION VENTURES,Y4000\nELIZABETH WATER,,Y4000\nCOB,VLSIP TECHNOLOGIES,Y4000\nPresident,Vincent Bruce Ltd.,Y4000\nPhysician,VA National Center for Patient Safety,Y4000\nMortgage lender,Self employed,F4600\nManagement Consultant,DR & A Management Consultants,G5270\nOUR LADY OF LOURDES MEDICAL CENTER,,H1130\nRANCHER,MINISTER,Y4000\nCHEMICAL ENGINEER -,THE DOW CHEMICAL COMPANY,M1000\nPIE MUTUAL INSURANCE,,F3100\nElectrical Contracto,Groff Electric Inc,B3200\nALFS INC,,Y4000\nEXECUTIVE VP - HUMAN,COMCAST CABLE,C2200\nNEDA BUSINESS CONSULTANTS INC,,Y4000\n\"GILLIS, ELLIS & BAKER INC\",,F3100\nWALLACE,,G5220\nWRITER/PRODUCER,\"PRINCE GEORGE'S COMMUNITY COLLEGE\",H5100\nR J NELSON ENTERPRISES,,Y4000\nself,movement instructor,Y4000\nMinister,Community Christian Church,X7000\nDISTRICT MANAGER,H-E PARTS MINING,E1200\nPsychologist,Orthodox Union,J5100\nCOUNTY PROSECUTING A,BINGHAM COUNTY,X3000\nTIRE SALES MANAGER,\"JIM'S TIRE FACTORY\",Y4000\nC+ Programmer,in Step Software,C5120\nStockbroker,LaBrance & Co.,F2100\nInformation Requeste,Bay District Schools,X3500\nOxford Area Foundation,\"Executive Ass't\",G0000\nPresident,JMD Developers Inc.,Y4000\nOwner,Ortho Concepts,H1130\nDoctor,Grand Itasca Clinic,Y4000\nFORESITE DEVELOPMENT,,Y4000\nAEROSPACE TECH,THE BOEING COMPANY,J7400\nInsurance/Educator,Underwriters Group/Exec,F3100\nFarmer,Higginbottom Farms,A0000\nCHILDRENS MUSEUM,,J7400\nPROFESSOR,TULSA COMMUNITY COLLEGE/PROFESSOR,H5100\nPhysician,Childrens Hospital of Pennsylvania,Z9500\nREAL ESTATE MANAGEMENT,DEMMON PARTNERS PROPERTIES,F4000\nNUTRITION,N CHAPMAN ASSOCIATES INC.,Y4000\nCEO,Meridian Teterboro,Y4000\nChief Operating Officer,National City Mortgage Company,F4600\nattorney,Cassidy Myers Cogan,Y4000\nVice President,Prairie Group,B5100\nExecutive Director,Near North Health Services Corp,H1000\nOwner,Sullivan Insurance Agency,F3100\nFOUNDER,KETTLE FOODS,Y4000\nDENVER BRONCOS FOOTBALL,,G6400\nPresident,Benchmark Ins Group Inc,F3100\nPRODUCER-CREATIVE DIRECTOR,EVE/SCREEN GEMS,C2400\nExec VP,Am Medical Response,J1200\n\"JAMES O'NEILL MD PSC\",,H1100\nPUBLISHE,CORRALES COMMENT NEWSPAPER,C1100\nExecutive VP,Spectrum Interriors,Y4000\nPresident,Mandarin Business Association,Y4000\nACCENT PLAZA & HILLS,,Y4000\nATTORN,LAW OFFICE OF GENE EDMUNDSON,K1000\nATTORNEY,\"OF COUNSEL - STOWELL & FRIEDMAN, LTD.\",J1200\nEngineer,Opentv Corp,Y4000\nBusinessman,Self,J7500\nMANAGING DIRECTOR,GNARUS ADVISORS,Y4000\nPARTNER,STOLLER,Y4000\nDirector; Business I,ASD Specialty Healthcare;,H4400\nFurniture Retailer,Self,G4400\nCOMMERCIAL RE,GARIBALDI GROUP N. J.,F4200\nTRIPLEX HOME HEALTH CARE,,H3100\nSTANDARD MANIFOLD COMPANY,,Y4000\nFINANCIAL MGR,HAWKINS RANCH,J1100\nInvestment Manager,\"Fuller Asset Mgmt, LLC\",Y4000\nChief Executive Officer/ Chairman,Heckman Corporation,G2600\nComputer Programmer,\"Polar News, LLC\",Y4000\nSUPERINTENDENT,CITY OF GREENSBORO,B3600\nLOBBYIST,SURROMT LLC,K2000\nDEKLAB ANESTH ASSOC,,H1130\nSYSTEMS ARCHITECT,VERIZON BUSINESS,C4100\nUNIVERSAL WOODS,,M1600\nCHARITY MANAGEMENT,SILVERWING FOUNDATION,X4100\nConsultant,Financial /Investments,F0000\nOWENSBY & KRITIKOS INC,,Y4000\nBUSINESS,DALLAS WHOLESALERS BUILERS,Y4000\nCEO,SILICON BENEFITS,Y4000\nAttorney,\"Udall, Shumway and Lyons\",K1000\nVice President,Boldt Construction,B1500\nENERGY BUSINESS,SELF,J1200\nAttorney,\"Hale, Lane, Peak, Dennison & H\",K1000\nCRNA,KEARNEY ANESTHESIA,H1130\nFinancial Investment,SIG,F2100\nOwner,Jerry L McDonald Concrete Coat,B5100\nANGINO AND ROVNER,,K1000\nPRESIDENT,CHAYET COMMUNICATIONS GROUP INC.,Y4000\nATTORNEY,CUMBERLAND TITLE,F4300\nSR VP LABOR RELATIONS,UNITED AIRLINES,T1100\nKORTENHOFF AND ELY,,K1000\n\"VP, DATABASE SOFTWARE\",SANDISK CORPORATION,C5110\nIMPLEMENTATION CONSULTANT,EDIFECS,Y4000\nPRESIDENT,\"ARC MEDICAL, INC\",H0000\nTHOMAS MCGEE L. C.,,B1000\nSenior Advisor,Dewey & Leboeuf,K2000\nAUTOMOBILE DEALER,SMAIL AUTO GROUP,T2000\n\"TRANSPORTATION MANAGEMENT SERVICES,\",,Y4000\nAttorney,\"Wilkerson& Henry, LLC\",K1000\nDIRECTOR,CITAS CORP.,X1200\nL C WEGARD & CO,,F2100\nBARBEE-NEUHAUS,,Y4000\nSR. VICE PPRES. -ASSET MANAGEM,ANN INC.,G4000\nAUTOMOB,SWOPE FAMILY OF DEALERSHIPS,Y4000\nCRANBERRY FARMING,CRANBERRY PRODUCTION & SALES,J6200\nAttorney,\"Robbins, Kaplan, Miller\",K1000\nOwner,Arrowhawk Inc,M1600\nZIONS ARTEMIA LC,,Y4000\nTE WELLS & COMPANY,,F7000\nOWNER,PIZZA HUT OF FORT WAYNE INC.,G2900\nMEMBER MANAGER,DEEP SPRINGS MANAGEMENT LLC,F2300\nPresident,NSN,Y4000\nPRESIDENT,EASTERN YACHT SALES INC,T8300\nSTAY AT HOME PARENT,NONE,Z9500\nManagement Consultan,Strategy Management Group,Y4000\nW E INC,,Y4000\nFinancial Consulting,Blitz Consulting,G5210\nV. PRES.,DAVITA INC.,H3200\nPhysician,Retina & Vitreous of Texas,H1120\nHOME TRENDS,,Y4000\nENTERPRISES RENT-A-CAR,,T2500\n\"AUTHOR, EDUCATOR, SPEAKER, CONSULTANT\",\"SELF-EMPLOYED/AUTHOR, EDUCATOR, SPE\",C1100\nINVESTMENT,RUSTIC CANYON MANAGEMENT,F2500\nExecutive Director,Newark Beth Israel Medical Center,H2100\nCTW Co.,,Y4000\nC.E.O.,VISTA COLLEGE,H5100\nAtorney,Motley Rice,K1100\nGE CAPITAL SERVICES INC,,M2300\nFINANCIAL ANALYST,GENERAL ELECTRIC/FINANCIAL ANALYST,M2300\nVice President,G-TECH PROFESSIONAL STAFFING INC.,G5250\nMANAGEMENT,MOTION INDUSTRIES INC/MANAGEMENT,Y4000\nADMINISTRATOR,SOUTHWEST RESEARCH,J1100\nPRESIDEN,G.A. RICHARDS COMPANY INC.,Y4000\nBUSINESS OWNER,\"HENDRICK DORMS, INC.\",Y4000\nMARKETING DIRECTOR,ZOLL MEDICAL CORP.,H4100\nPHYSICI,MS ASTHMA AND ALERGY CLINIC,H1100\nPHYSICIAN,REPRODUCTIVE MEDICINE INSTITUTE,Y4000\nCONSULTANT-HUMAN FACTORS,,B4000\nDIRECTOR OF H,KENTUCKY BLOOD CENTER,Y4000\nDOYAN DRILLING INC,,E1150\n,MARYLAND HOUSE OF DELEGATE GENERAL,X3000\nINFORMATION REQUESTED PER BEST EFFORTS,THE KEENER CORP,Y4000\nBEAUTI CONTROL COSMETICS INC,,M3300\nSW HEALTH CARE MANAGEMENT INC,,H2200\nCOMMUNICATIONS & MARKETING,THE U.S. FUND FOR UNICEF,Z9500\nBALLARD SPHAR ANDREWS & INGERSOLL,,K1000\nDEALER,BROOKLINE VOLKSWAGEN AUDI,T2300\nManager,Rapid Car Wash,G5000\nSpecial Advisor to Governor,Commonwealth of Kentucky,X3000\nTHEATRICAL DESIGNER,ETTINGER AND SONS LTD/THEATRICAL DE,Y4000\nSENIOR VP,MAVERICK,Y4000\nC.P.A,W.T.A.S,Y4000\nCHERRY PAYMENT SYSTEMS INC,,F5500\n\"SR MGR, HEAL\",US CHAMBER OF COMMERCE,G1100\nEXECUTIVE OFFICER,COLUMBIA BD. OF REALTORS,F4200\nN N ADMINISTRATION INC,,Y4000\nNOT EMPLOYED,N/A/NOT EMPLOYED,C5110\nPresident - Marketing,MGM Grand Hotel & Casino,G6500\nOwner/Principal/Partner,Richard Mather Builders Inc,B2000\nSmith Elliott Smith and Garmey,,K1000\nAttorney,\"Wayne M. Yuspeh, APLC\",Y4000\nOWNER,C. E. PEPPIATT STABLES,Y4000\nCALLAWAY GARDENS,,T9100\nHEALTH FIRST CORP/PRESIDENT / C E O,,H0000\nATTORNEY,\"ROSSBACH HART BECHTOLD, P.C./ATTORN\",Y4000\nProgram Manager,Department of Human Services,X3000\nCOO,Clear Channel Outdoor Holdings,C2100\nPresident,\"Kostas International, Inc\",Y4000\nROYAL T MANAGEMENT,,F4000\nI-SQUARED INC,,Y4000\nGILLIE HYDE FORD LINCOLN MERCURY CH,,T2300\nBANK OF SOUTHERN OREGON,,F1100\nCPA/KWCFC,COMMONWEALTH OF KENTUCKY,X3000\nXL DATACOMP INC,,C5100\nSALES,CONSOLIDATED GRAPHICS COMM.,C1300\nREAL ESTATE BROKER,PICOR,F4000\nANGEL-ETTS OF CA INC,,M3200\nFine Arts Painter,Self,G5000\nREAL E,UNITED INVESTMENT PROPERTIES,F4200\nBALTIMORE AREA BUILDING,,Y4000\nBOGOSIAN & COMPANY,INVESTER,F7000\nCEO/ Chairman,\"Arden Realty, Inc.\",F4000\nVP and GM Americas Division,SEACOR Marine LLC,T6000\nRECORDING INDUSTRY ASSOC,,G2820\nUN-EMPLOYED,,Y3000\nDirector,Milestone Properties,F4000\nC.E.O.,REVEL ENTERTAINMENT,Y4000\nEAST LAKE SECURITIES,,F2100\nJOSE J VENTOSA JR PROF CORP,,Y4000\nFloral Designer,Strongs Florist,A8000\nSenior Vice President Marketing and Co,Novant Health,H2100\nAttorney,Chris Van Dyke,Y4000\nPHYSICIAN,DAUTERIVE HOSPITAL,H1100\nP,SHEET METAL WORKERS INTERNATIONAL,LB100\nVICE PRE,ANDREW W MELLON FOUNDATION,X4100\nPRODUCER,GOLDSMITH ENTERTAINMENT,Y4000\nBUSINESS OWNER,JIMMY SMITH JEWLERY,Y4000\nFounder/CEO,Cooperfund Inc,F2100\nPOLLSTER,AYRES MCHENRY & ASSOCIATES,G5200\nRADIO,RADIOLOGY ASSOCIATES OF HART.,H1130\nRESEARCH ANALYST,ALLIANCE BERNSTEIN,F2100\nOWNER/OPERATOR,BLOCKADE RUNNER HOTEL,T9100\npresident,S L King & Assoc.,B4000\nCHAIRMAN & CEO,SOUTHERN MILLS INC.,M8000\nART CONSERVATOR,SELF,J1200\nKARANIKAS BROTHERS,,Y4000\nKENTON STRUCTURAL &,,M5000\nSENIOR VICE PRES,MARCUS & MILLICHAP,F4200\nexecutive,Flo-Sun,J5200\nretired librarian,self-employed,J7400\nPh.D.,Bio-medical Communications,H0000\nPresident & CEO,Consulate Health Care,H2200\nPHYSICIAN,NAUGATUCK VALLEY EAR NOSE THROAT,H1130\nINDUSTRY CONSULTS INC,,J5100\nFood Wholesaler,Marlton Pike Producers,Y4000\nSOUTHERN FLOW COMPANIES,,Y4000\nVICE PRESIDENT,COUNTRY PLACE,Y4000\nEXEC,COMMUNICATIONS SYSTEMS SPECIAL,Y4000\nExecutive,Frank W Whitcomb Const Corp,Y4000\nPRESIDENT,TRILOGY SOFTWARE/PRESIDENT,C5120\nELECTRICAL ENGI,SARNOFF CORPORATION,D3000\n\"President, Regulated Operation\",Centerpoint Energy,E1600\nCAPTAIN,RESERVE OFFICERS ASSOCIATION,X1200\nPHYSICIAN,MEDIMMUNE INC,H4500\nBRAHMAN CAPITAL CORPORATION,,F2100\nHEALTHCARE MANAGEMENT,PROVIDENCE HEALTH & SERVICES,H2100\nengineer,Elkay,Y4000\nENGINEERING MANAGER,THE HERSHEY COMPANY,G2200\nCEO,Innovative Biotherapies,H4500\nFINANCE,HOLY CROSS HOSPITAL,H2100\nOffice Manager,\"Direct Surplus Sales, Inc.\",Y4000\nBERKELEY PEDIATRIC MEDICAL GROUP //,,H1100\nPresident & Coo,Vacations To Go,Y4000\nVP GOVERNMENTT RE,SHELL OIL COMPANY,E1110\nATTORNEY,JACK LAWTON INC.,A3000\nSpecial Assistant,U.S. Dept. of Energy,X3000\nPROGRAM DIR,ATLANTIC PHILANTHROPIES,Z9500\nInsurance/Financial Plan,Benet Financial Services,F0000\nCO-CEO,CERTUS BANK,Y4000\nJ A GREEN PLUMBING,,B3400\nARC INVESTMENT/CEO/FOUNDER,,F2100\nRUSHTON STEAKLEY & JOHNSTON,,K1000\nFinance,Emerging Capital Partners,F0000\nMANAGER,ROANE COUNTY INDUSTRIAL PARK,Y4000\nDentist,Self-employed,J5100\nATTORNEY,\"KOHN, SWIFT, AND GRAF\",J7300\nSENIOR V.P. GOVERNME,\"CONSUMER'S ENERGY\",E1620\nSPA OWNER,DREAM SPA,Z9500\nPHYSICIAN/PROFESSOR,NEW YORK UNIVERSITY SCHOOL OF MEDICINE,H5150\nCHICAGO CARBIN PLNT,,Y4000\nDIR. INTERNATIONAL PROGRAMMER,USDA,X3000\nCHIEF FINANCIAL OFFICER,ASCENSION INSURANCE,F3100\nCHAIRMAN,BOYD GAMING,G6500\n\"UROLOGIST, M.D.\",,H1100\nPRODUCER,\"KELLEY PRODUCTIONS, INC.\",Y4000\nAUTOMATIONS,,Y4000\nSENIOR VP PACIFIC,ALEXANDRA & BALDWIN,Y4000\nowner,Herschend Family Entnmt,G6100\nRANCHING / INVESTMENT,SELF-EMPLOYED,A3000\nREAL ESTATE,HOOTON & ASSOCIATES,F4000\nFACIAL PLASTIC SURGE,VISERAGE,J2100\nCOLUMBIA CELLUL,,C4300\nPresident,First CIty Bank,F1000\nTHE SHERMAN HOUSE,,T9100\nPRODUCT MARKETING MANAGER,SAVI TECHNOLOGY,C5120\nConsultant,Sheehan Associates,Y4000\nVA FARM BUREAU MUTUAL INS CO,,J1100\nSenior Program Offic,Tides,J7400\npartner,Covington & Burling,K2000\nRespiratory Therapist,Community Memorioal Hosp,J1200\nOWNER,TAOS INN,T9100\nCARROLL DENTAL CLINIC,,H1400\nSPECIAL ASS,CENTER FOR A. FREE CUBA,Y4000\nBeha,,Y4000\nMOORE ORCHARDS INC,,A1400\n\"DIRECTOR, FEDERAL GOVERNMENT RELATIONS\",PUGET SOUND ENERGY,E1620\nGroup Manager - Transportation,\"GAI Consultants, Inc\",Y4000\nIT Consultant,Sobot Corp,Y4000\nOWNER,R & C & ASSOCIATES,Y4000\nCEO,\"LEAP WIRELESS INT'L., INC.\",C4300\nReal Estate Investor,Self Employed,Y4000\nBANKER,First Merchants Bank,F1000\nReal Estate Broker,\"The Brokerage Realty, Owner\",F4200\nM K I SECURITIES,,F2100\nVALLEY COMMUNITY HOSPITAL,,H0000\nOwner,Armand corporation,Y4000\nCEO,MagiQ Technologies,J1100\nPersonal Trainer,Club One,Y4000\nATTORNEY AT LAW,\"PARSEKIAN & SOLOMON, P.C.\",K1000\nContractor,Keith Properties,B1500\nResidential Remodele,Self,G0000\nHAYS LEASING CO,,Y4000\nvolunteer,N/A,X1200\n\"CHAIRMAN, C.E.O.\",INVACARE,H4100\nCOMMUNICATIONS,VESTAS,E1500\nChairman,IBM Corporation,C5100\nExecutive,Seismic Ventures,E1120\nInvestments,Residential Capital Corp.,F0000\nCEO,PROFESSIONAL POLISH,Y4000\nANALYTICAL SURVEYS,,Y4000\nWAKEFERN FOOD CORPORATION,,G2000\nREGISTERED NR,CAP ROGIEN MED CENTER,Y4000\nLEVINE AND POOR,,Y4000\nWESTERN BUILDING MATERIAL ASSN,,B5000\n\"Executive Vice President, Chief Legal\",Nationwide,F3100\nHealth Care,S.Y. Liu M.D.P.A.,Y4000\nEXEC MGMNT ASSOC,,G0000\nGENERAL MANAGER,THE BRADBURN CO INC.,Y4000\nTEACHER,THE BLAKE SCHOOL,X3500\nSOUTHEAST PAPER NEWSPRINT,,A5200\nFinancial Advisor,Ameriprise Financial,F5000\nHEALTH PARTNERS INC./ CHRISTA/NURSE,,H0000\nOwner,Custom Travel,T9400\nPresident,Product Service & Manufacturing Corpor,Y4000\nBUSINESS,ATTORNEY,Z9500\nCONSULTANT,YOUNG ENTERPRISES,Y4000\nPRESIDENT,CHUCK COLVIN AUTO CENTER,T2300\nGRAFF CALIFORNIA WEAR,,M3100\nChairman,Gill Group,Y4000\nATTORNEY,BROOKS KOCH & SORG,Y4000\nGREEN AND UTTER,,K1000\nPRESIDENT,KEM KREST,Y4000\nPEDI,\"CINCINNATI CHILDREN'S HOSPITAL\",H2100\nCONTRACTING,\"BONN-J CONTRACTING, INC. OF FLORIDA\",B1000\nLANDSCAPE ARCHITECH,REED HILDABRAND,Y4000\nOWNER,\"KEEP ME HOME, LLC\",Y4000\nELECTRICIAN,SELF,Z9500\nOwner,Health Care Affiliates Inc.,Y4000\nPRESIDENT,\"SEAWORLD, LLC\",Y4000\nTHE KROGER CO,,A2000\nCAREER ONE,,G5000\nPhysician,WellPonit,H3700\nDeputy Director/El Salvador,Peace Corps,X4000\nATTORNEY,LAW OFC OF ELLEN E. DOUGLASS,K1000\nMANAGER/AGENT,SELF-EMPLOYED/MANAGER/AGENT,G0000\nexec,State Metal Industries inc,M2200\nSMITH WARNEY,,Y4000\nOIL & GAS,\"MURCO OIL & GAS, LLC\",E1100\nSOFTWARE SPECIALIST,US SENATE,X3000\nC.E.O,HOME FEDERAL BANK,F1000\nDISTRICT MANAGER,\"BED, BATH & BEYOND\",G4600\nExecutive,Inland Management,Y4000\nPharmacist,\"Concord, Inc.\",Y4000\nHEALTH CARE CONSULTANT,HEALTH SYSTEM ANALYTICS,H0000\nVICE PRESIDENT,AT&T CORPORATION/VICE PRESIDENT,C4100\nAccountant,Hs. Williams Co.,Y4000\nATTORNEY,\"PARSONS, BEHLE, & LATIMER\",K1000\nExecutive Director Founder,The Good Dog Foundation,X4100\nSTRUCTURAL E,ENGINEERS DESIGN GROUP,B4400\nProfessor & Nurse Pr,Health Care Partners,H0000\nPublic Works Director,\"Town of Newtown, CT\",X3000\nBOWLES CONSTRUCTION INC,,B2000\nPsychotherapist,\"Candice Sherbin Inc, MFT\",Y4000\nOCCF,,Y4000\nComputer Systems Analyst,Vanderbilt,H5100\nCEO,Tharoldson Ethanol,Y4000\nNON-EMPLOYED,NON-EMPLOYED,Y4000\n\"Small Business-Wellness, Education\",Self employed,Y4000\nPRESIDENT,THE LYNCH GROUP,Y4000\nAntiques & Design,SELF-EMPLOYED,G4600\nINTRADO INC,,C4500\nRecruiting/Training,\"Gibson, Dunn & Crutcher LLP\",K1000\nCONSULTANT,\"O'NEILL AND ASSOCIATES\",K2000\nATTORNEY,HOLLAND,K1000\nExecutive,\"Schroyer, Inc.\",T3100\nOWNER,THE SWIG G.,F4000\nPSYCHIATRIST,KAISER MEDICAL,H0000\nDIU. G.M.,FOREST RUN INC.,T8000\nHOME HEALTH CARE,MAROLANDO LLC,Y4000\nF. M. S. LIGHTING MANAGEMENT SYSTEM,,Y4000\nSTATISTICAL ANALYTICS,EARLY WARNING SERVICES,Y4000\nJOHNSON CO,,Y4000\nDIRECTOR,NET COMMUNICATIONS,C4000\nAccountant,Mel Varrelman,Y4000\nMORTGAGE BANKING,CENTURY MORTGAGE CO.,F4600\nOWNER-FISH MARKET,SELF,G0000\nFOUNDER,YOUNG WOMEN LEADERSHIP FUND,X4100\nMathematician,Northeastern Univ,Y4000\nGEO QUEST INT,P I,Y4000\nAssoc.,Neurosurgical Assocs,H1130\nDealer,Cronin Ford,T2300\nREGIONAL FORES,NYS DEPT. ENV. CONS.,X3000\nARCHITECT,SET ARCHITECTURE PLLC,B4200\nPhysician,Associated Dermatologists Inc,H1100\nDirector of Marketing,Cacade Engineering,B4400\nPUBLISHER,AMERICAN,C1100\nAIR TRAFIC CONTROLLER,FAA,Y4000\n\"KEN'S FAIRWAY\",,Y4000\nDIANA ROSE & ASSOCIATE,,Y4000\nPRESIDENT,GROTE INDUSTRIES,Y4000\nVP of Operations,Comcast,C2200\nVice President,Sara Michaels,M3300\nINTERSTATE COMMERCE COMM,,X3000\nIT OPERATIONS M,NATIONAL LIFE GROUP,Y4000\nPRESIDENT,MATRIX SETTLEMENT & CLEARANCE SERVICES,Y4000\nENGINEER,FIRMGNICH .,Y4000\nExecutive,Financial Recovery Services,F0000\nCALICO BRANDS INC,,Y4000\nFarm,Farm,A1000\nPRESIDENT,SOCORRO BANK,F1000\nVICE PRESIDE,PARKER AEROSPACE GROUP,J1100\nARCHITECT,EA GLENDENING FAIA ARCHITECTS,B4200\nManaging Partner,Cordoba Corp,B4000\nBOOK REVIEWER,SELF EMPLOYED,Y4000\nMANAGING MEMBER,GODELEINE DE ROSAMEL LLC,Y4000\nHOLT CARGO SYSTEMS,,T6200\nTAX ACCOUNTANT,SELF,F5100\nFAMILY LAW MEDIATO,,K1000\nCAFE ROMA,,G2900\nREAL ESTATE INVESTME,MBS PROPERTIES,F4000\nC.E.O.,\"COGHLIN COMPANIES, INC.\",Y4000\nDVD CONSULTANT,SELF-EMPLOYED,J1200\nVICE PRESIDENT - SAL,GARTMORE GROUP,J1100\nPHYSICIAN,OAKDALE OB/GYN/PHYSICIAN,H1130\nInvestor,\"Pisces, Inc\",F7000\nCEO,SEAFREIGHT AGENCIES (USA) INC.,Y4000\nMARKETING,INDEPENDENT,Z9500\nMEHL & PICKENS ASSO INC,,K2000\nVP CORPORATE AFFAIRS,MELE ASSOCIATES INC,C5130\nPRES.,RARE ANTIBODY ANTIGEN SUPPLY,H4300\nPresident,Fox International Productions,Y4000\nPRESIDENT,HUGHES SOUTH CORP.,E1150\nOwner and President,Neworld Health Care Ctr.,Y4000\nPhysician,\"Fred Bloom, MD PA\",H1100\nFinancial Analyst,\"SENK WELLER ROHS WILLIAMS, INC.\",Y4000\nPROFESSOR EMERITA,BYU HAWAII/PROFESSOR EMERITA,H5100\nJ D WARREN & ASSOC,,Y4000\nPRESIDENT,PEACH STATE INSURANCE,Y4000\nFarmer-Winery,Self-Employed,G2820\nOwner,Baranco Automotive,T2300\nRetired,Ca State Univ,H5100\nEntrepreneur,Space Adventures,Y4000\nRETIRED PHYSICIAN AND HOMEMAKER,,Z9500\nEngineer,BRIDGES ELECTRIC INC.,J1100\nhousewife,family,Y1000\nWELDMART,,Y4000\nPresident,Shute Oil,E1190\nElectrical Engineer,Oak Ridge National Lab,G5000\nExectutive,HBA of Tennessee,B2000\n2nd Gr Tchr,Richland Beanblossom,Y4000\nBUSINESS EXEC,SIZLER COMPANIES,Y4000\nSLAVE & SLAVE,,Y4000\nSAMPSON STEEL,,Y4000\nSOFTWARE ENGINEER,INDEEDCOM,C5140\nDAMAR NATURAL STONE IMPORTS,,B5100\nVP Real Estate Equity,GE Healthcare Financial Services,H2200\nTRANS ATLANTIC PICTURES,,Y4000\nVideographer,SFP,Y4000\nBusniess Owner/Mortg,Platinum Mortgage Sol.,F4600\nPHYSICIAN,RRMC,Y4000\nCommissioner,Macomb County,J7400\nARCHITECT,SELFEMPLOYED,B4200\nLAWYER,NOT EMPLOYED,F3100\n\"VICE PRESIDENT,\",\"LEHIGH HANSON, INC.\",B5100\nLibrary Assistant,King County Library System,X4200\nExcutive,Equifax,F5200\nNEW CANTON MOTORCARS,,T2310\nMBA STUDENT,HARVARD BUSINESS SCHOOL,Z9500\nInformation Requeste,The Gap,G4100\nYNA PRODUCTION & DIST CO,,Y4000\nPublic Relations/mom,Self employed,G5210\nROOFING CONTRACT,DENCHFIELD ROOFING,B3000\nManager,Safelite Glass Corporation,M7200\nTravel Agent,KC Stars Travel Agency,Y4000\n\"Henriott Group, Inc.\",,Y4000\nBEAN SALESMAN,LAKE DISTRIBUTING/BEAN SALESMAN,Y4000\nPRINCIPAL,HILL STREET CONSULTING LLC,Y4000\nMERRILL LYNCH INTERFUNDING INC,,F2100\nMCLAUGHLIN & MORAN INC.,,G2850\nELEMENTARY SCHOOL COUNSELOR,DALLAS ISD,X3500\nNURSE,NSG HOME CARE,Y4000\nPARTNER,WILEY REIN & FIELDING,Z9500\nChief Financial Officer,\"Innov-X Systems, Inc\",Y4000\nAtty,JJ Trevino Law Firm,K1000\nBus Analyst,Morgan Chase,Y4000\nattorney,Wildmere Harrold,K1000\nPRESI,W. G. YATES & SONS CONST. CO.,B1500\n\"OVERLAND, BORENSTEIN, SCHEPER & KIM\",,K1000\nInvestments,Maverick Capital,F2700\nUniversity Administrator,Wentworth Institute Of T,Y4000\nC.E.O.,Medical Park Hospital,H2100\nRealtor,Austin Realty,F4200\nATTORNEY,\"TROUTMAN, SANDERS\",K1000\nDIRECTOR,INTERNATIONAL POETRY FORUM,Y4000\nSoftware Engineer,\"Apple, Inc\",J9000\nKNIGHT TALLMAN VONTOL L L,,Y4000\nOWNER,WEST HILLS GREENHOUSES INC.,Y4000\nOwner,James Plaster Realtor,F4200\nHOGG ROBINSON OF MICHIGAN INC,,Y4000\nLANDMARK PARTNERS,,F2500\nWASH. COUNTY FINANCIAL MANAG. COMPA,,X3000\nState Treasurer,State of NC,X3000\nSALES MANAGER,UNION ASPHALT INC.,B5100\nRETIRED TEACHER,\"WASHINGTON STATE TEACHERS' RETIREMENT\",Z9500\nAttorney,Scarinci & Hollenback,Z9500\n\"COCOZZA, SHEPARD & WALTON\",,F3100\nPRESIDEN,\"EVERGREEN MANAGEMENT, INC.\",F3300\nPAPER IND CONSULTAN,,Y4000\nCIO,Groupm,Y4000\nAttorney,Law Office of Tami Gayikian,K1000\nLIMO DRIVER,ONE ROSE LIMO SERVICE,Y4000\nFINANCE,PROVIDENCE EQUITY PARTNERS,F2600\nCEO,Life Equity LLC,F2100\nDEPUTY COMMISSIONER FOR LEGISLATION,SOCIAL SECURITY ADMINISTRATION,X3000\nEXECUTIVE,MAYO,Y4000\nInsurance,Gmi Na Inc.,J1200\nCEO,RHR INFO SERVICES,Y4000\nPresident & CEO,Hope Medical Institute,H5150\nCommunications Manag,BMJM Harris,Y4000\nINSURANCE,LOUITT & TOUCHE,Y4000\nPRESIDENT,TALCOTT NETWORKS INC.,Y4000\nPSYCHIATRIST,SUNY DOWNSTATE/PSYCHIATRIST,H5150\nPARTNERS CLEANING LLC,,Y4000\nDIRECTOR OF BUSINES,PROGENY SYSTEMS,C5120\nCEO,Pickett Realty Adv.,F4200\nHome Repairs,Self employed,G5600\nSelf Empolyed,\"Durnell's RV Sales\",Y4000\nINSURANCE,BANK CORP.,F1000\nPROFESSOR,WASHINGTON AND LEE,Z9500\nADMINISTRATOR,JOHNSON MACHINERY,M2300\n\"Mgr, Technical Claims\",Liberty Mutual,F3400\nPEDIATRIC DENTIST,Self,H1400\nFACILITY COORDINATOR,THE PRIMARY DAY SCHOOL,J1100\nOWNER,FIRSTEX INDUSTRIES INC,Y4000\nPhysician,PEF Clinic,Y4000\nEXECUTIVE,SYMMES Toyota,T2310\nTENNISON & ASSOCIATES INC,,Y4000\nCHAIRMAN EMER,ELI LILLY AND COMPANY,H4300\nUS COAST GUARD/COUNSEL/ATTORNEY,,K1000\nKUBO GROUP LTD,,Y4000\nVP Marketing,\"Love's Truck Stops and Country Stores\",T3100\nIMAGINE ENTERTAINMENT,,C2400\nVP/GENERAL MANAGER OF RACING,HOOSIER PARK,G6500\nCommerce,Florida Chamber of Commerce,G1100\nCONTRACT SPECIALIST,DEPT. OF DEFENSE,X5000\nADMIN.BUSINESS,\"LA BAGUETTE, SRL\",Y4000\nManager,Dove Island Assn,J1100\nCOPLEY FRADIN DISTRIBUTORS,,G2850\nCEO,GA PROBATION MGMT,Y4000\nPresident,Mahern & Associates,F4200\nPersonal Investments,Self employed,F7000\nTECHNICAL GROUP MANA,DUPONT COMPANY,M1000\nHead Football Coach,Bishop Miege High School,Y4000\nLibrarian,Town of Amherst,X3000\nCHAPIN FLEMING MCNITT SHEA & CARTER,,J1100\nLawyer,Cranston & Edwards,K1000\nWHITTEN AND DIAMOND,,K1000\nAttorney,Rudnick & Wolfe,K1000\nMARDOC PROPERTY MANGEMENT,,F4500\nMANAGEMENT CONSULTANT,PROMONTORY FINANCIAL GROUP L. L. C.,F5000\nBUSINESS EXEC,GEOTECH SYSTEMS CORP.,Y4000\nThomas H Lee Capital LLC,,J1200\nLAND AIR BALANCE CO,,Y4000\nSALES/OWNER,PEACH STATE LABS INC.,C1000\nREAL ESTATE,THE BRANDT ORGANIZATION,F4000\nGOVE,\"MEHLMAN, VOGEL AND CASTEGNETTI\",K2000\nPRESIDENT,JOHN B HULL INC,Y4000\n\"BLACK, HANAFORT ET AL\",,K2000\nREALTOR,CHEROKEE INVESTMENTS INC.,F4200\nOWNER,DIMENSIONS,Y4000\nSENIOR VICE PRESIDENT,FIRST SOUTH FARM CREDIT,Y4000\nAttorney,Ransmeier & Spellman,J1200\nMANAGER P,HAINES & KIBBLEHOUSE INC.,B5100\nprofessor,University of Louisville,H5100\nPRESIDENT,IN MOCEAN GROUP,Y4000\ndoctor,SELF,H1100\nFUCHS CUTHRELL & CO,,G5270\nPAULY MOTORS,,T2310\nUPPER MANAGEM,\"CANTISANO FOODS, INC.\",Y4000\nPARALEGAL,\"DORSEY & BALABAN, L.L.P.\",Y4000\nVP TRANSPORTATION,TRANSPORTATION,T5100\nACCOUNTANT,LA ROSA AND ASSOCIATES,Y4000\nPOLICY IMPACT COMMUNICATIONS,,Y4000\nINFO REQUESTED,Parkside Place Villas Pontiac Inc.,T2300\nGREENSPRING RACQUET CLUB,,G6100\nACKERLEY COMMUNICATION,,Y4000\nSales Real Estate,Told Partners,F4000\nATTORNEY,DETROIT EDISON,E1620\nRETIRED,\"RETIRED FED. GOV'T\",X1200\nENGINEER,SOUTHERN COAL HANDLING U.S.A. L.L.C.,E1210\nGENERAL MANAGER,\"LONNIE'S INC/GENERAL MANAGER\",Y4000\nATTORNEY,SACKS & SACKS,K1000\nONE GREENWOOD SQUARE,,B2000\nPoiuyttrrewe,Qwertyuio,Y4000\nCALCOMP,,C5100\nVice President,Gohmann Asphalt / Construction,B5100\nPresident & CEO,DDSD,F3200\nLECTURER ON LAW,HARVARD LAW SCHOOL,H5100\nT & G EXCAVATING,,Y4000\nPC Cocord Ast.,Brookings Municipal Utilities,E1620\nCEO,\"Hospital Kleen of Texas, Inc.\",H2100\nVANN JERNIGAN FLORIST,,A8000\nRANDOLPH FAY CO,,Y4000\nGOVERNMENT CONSU,BARRETO CUNNINGHAM,Y4000\nPRINCIPAL,IMAGO DIGITAL COMMUNICATIONS,Y4000\nInformation Requeste,Ducker Research Co.,J1100\nCEO,OHIO ASSOCIATION OF REALTORS,Z9500\nKORLESKI ENTERPRISES,,Y4000\nPhysician,Cindy Kallman,Y4000\nIXTLAN,,C2400\nMediator,Burdin Mediation,Y4000\nAttorney,Batterfield Schcheter LLP,Y4000\nEmergency Physician,\"Thomas H Barrows, MD, FACEP\",H1100\nNot-Employed,None,X4100\nMD - Reg Exp Business Strategy,UNITED AIRLINES,T1100\nADVERTISING,OGILVY WORLDWIDE,Y4000\nAdmin Ass,Wachovia,F1100\nPRESIDENT,GMA,J7400\nCEO,COMPLETE MILLWORK SERVICES,Y4000\nCERTIFIED PUBLIC ACCOUNTANT,HUTCHINSON & BLOODGOOD LLP,Y4000\nASSOCIATED PROFESSOR,ILLINOIS STATE UNIVERSITY/ASSOCIATE,H5100\nESTRELLA INSURANCE/EXECUTIVE/EXECUT,,F3000\nBROWNSTEIN ZEIDMAN SCHOMER,,K2000\nPhysician,Sinkler Miller Medical Assoc,H1100\nCITIZENS BANK OF WASHINGTON,,F1100\nSENIOR PARTNER,CLARK & WEINSTOCK,K2100\nGEN CON,WADE ENTERPRISE & ASSOC INC,Y4000\nCEO,FAMILY AND WORKFORCE CENTERS OF AMERIC,Y4000\n\"WALKER'S DEVELOPMENT CORPORATION\",,Y4000\nBusiness,NOVA Biomedical,J1100\nPresident,B & B Hardware Inc,M5100\nPRESIDENT,BELL ATLANTIC,C4100\nATTORNEY,BLANK LAW & TECHNOLOGY P.S.,Y4000\n,UNIV OF MASS MEMORIAL MED CTR ANES,H1130\nConsultant,Intellicrest Inc (self),Z9500\nPresident/Banker,State Bank and Trust,F1100\nVENUTURE CAPITALIST,,F2500\nFIRST AMERICAN LOSS MANAGEMENT,,Y4000\nSTUDENT,SOUTHERN METHODIST UNIVERSITY,H5100\nPsychologist,\"Lemon, Licavoli & Associates\",Y4000\nPsychologist/Busines,Self-Employed,G0000\nOptical Engineer,Self,J1200\nproducer  administra,university of creation spirit,Y4000\nPresident,The Insurance Center,F3100\nMC KEOWN & FITZGERALD,,Y4000\nBLOCK TRADING,,F2100\nEXECU,CENTER FOR EDUCATION IMAGINAT,JE300\nCLARK,,Y4000\nDir Government Affairs1002217,\"PPG Industries, Inc\",M1600\nDYNEGY MIDSTREAM SERVICES LIMITED P,,E1140\nSALES,BIOGEN,Y4000\nMETFUEL INC,,Y4000\nLAFAYETTE GROUP,,Y4000\nOwner,\"Libby Hill Seafood Restaurants, Inc\",G2900\nProgrammer,Mayo Clinic,H2100\n,\"BROWNSTEIN, HYATT, FISHER, SCHRECK\",K2000\nPrincipal,Kandiyohi Development Partners LLC,Y4000\nSenior Executive VP,The Bank of New York,F1100\nManaging Partner,\"mRelevance, LLC\",B2000\nENGINEER,BOEING COMPANY-LB,D2000\nPRESIDENT,MELAMED & EARP,Y4000\nlawyer,us govt,X3000\nGASTER LUMBER CO,,A5000\nGovernment Relations,\"The Corydon Group, LLC\",Y4000\nCEO,\"Melavia, Inc.\",H4300\nCONTRA,SOUTHWEST FINANCIAL SERVICES,F0000\nSenior Vice Presiden,Textron,T1200\nFINANCIAL PLANNER,BAYSTATE FINANCIAL SERVICE,F0000\nCORNELIUS KING & SON INC,,F4200\nChairman,Petco,M4000\nINFORMATION REQUESTE,ELECTROLINE WHOLESALE ELEC,Y4000\nBRASWELL FOOD COMPANY,,Y4000\nENGINEER,AZUTA,Y4000\nGUERNSEY COUNTY COMMON PLEAS COURT,,X3200\nGEOLOGIST,,E4200\nBAY AREA REPORT,,C1100\nSIGNATURE INDUSTRIES,,M4100\nGrape grower,Eureka Info Services,J1200\nPRESIDENT,SCARBOROUGH GROUP,Y4000\nPETROLEUM MARKETER,WASHINGTON OIL MARKETERS ASSN.,E1170\nsmall building owner,self-employed,G0000\nNEIGHBOR-TO-NEIGHBOR,,Y4000\nSMALL BUSINESS OWNER,SELF-EMPLOYED,JE300\nHRN INSURANCE,,F3100\nPHYSICIAN,THE WATERGATE & BURKE ALLERGY & ASTHMA,Y4000\nDISTRICT JUDGE,STATE OF ALABAMA,X3000\nCEO,RURAL KING,A4000\nDirector Of Marketing,T T I Inc,C5000\nBUILDER,SIGNATURE HOMES,B2000\nMATHANOL INST,,Y4000\nBeer Distributor,\"The Best Of Beers, LLC\",G2850\nPHYSICIAN,\"Sexton Michael, MD\",H1100\nCONGRESS GROUP PROPERTIES,,F4500\nPhysician,Wyandotte Physicians IPA,H1100\nMedia Coordinator,Union County College,H5100\nFAMILY MEDICINE PHYSICIAN,SELF-EMPLOYED,H1100\nCAROLINA TRACTOR CO,,B6000\nSALES,PACIFIC INSPECTION COMPANY,Y4000\nCLERK OF COURTS,SUMMIT COUNTY,X3000\nSOFTWARE DESIGNER,CHICAGO MERCANTILE EXCHANGE,F2200\nCfo,Dai,G5200\nCOMMISSIONER,CONSUMER PRODUCT SAFETY COMMISSION,X3000\nDirector Government,Apollo Group Inc,H5100\nREAL ESTATE,DRUMMOND REAL ESTATE,F4000\ninvestment managemen,\"advisory research, inc\",J1200\nFINANCE,SIX POINT PARTNERS,F7000\nSTERLING MANAGEMENT,,F4500\nMOMENTUM SECURITIES,,F2100\nEDENSPACE SYSTEMS CORP,,Y4000\nSELF,\"VARISCHETTI AND SONS, INC\",F4300\nSTAFF A,CONGRESSMAN ROBERT ADERHOLT,X3000\nBESHEAR/ABRAMSON 2011/DEPUTY FINANC,,Y4000\nOWNER,\"PATRICK K. WILLIS COMPANY, INC\",Y4000\nPUBLISHER,POINTED LEAD PRESS,Y4000\nCPA,PROFESSIOANL EDUCATION SERVICES,H5000\nCONSULTAN,PUBLIC SECTOR CONSULTANTS,Y4000\nATTORNEY AT LAW,ULMER & BERNE LLP,K1000\nMANAGER,KNF & T,Y4000\nAsset Allocator,Self employed,Y4000\nLAWYER,LAW OFFICE OF BEN MORGAN,K1000\nPartner,\"Silver State Helicopters, LLC\",Y4000\nHALLEN CONSTRUCTION CORP,,B1500\nFINANCIAL SERVICE,LAFFER ASSOCIATES,F2100\nPRESIDENT,ISLAND LINCOLN,T2300\nINVESTOR,DAY & SAM INC.,Y4000\nOWNER,WINDSOR JEWLERS,Y4000\nCOMMERCIAL REAL ESTATE,CB RICHARD ELLIS/ BRADLEY/COMMERCIA,F4000\nINSURANCE,\"RSUI GROUP, INC.\",F3100\nHomemaker,Self-employed,K2100\nLEAD,AHOLD,Y4000\nPARK NICOLLET CLINIC,,H2000\nEducation,North Rockland School Di,X3500\nLEON E WINTERMYER INC,,Y4000\nVICE P,WESTERN & SOUTHERN LIFE INS.,F3100\nMANAGEMENT,GLOBALCOM,Y4000\nPresident,Sullivan Management,Y4000\nConsult,Robinson Communications Inc,Y4000\nPhilanthropist,N/A,J7600\nP R COUNSELOR,EISBRENNER PUBLIC RELATIONS,G5210\nCardoiologist Ummson,UNM SOM,Y4000\nVice President,XM Satellite Radio,C2100\nRetailer,\"Nanz & Kraft Florist, Inc\",A8000\nMANAGER,AMERCABLE,Y4000\nATTORNEY,\"ANGOTTI & STRAFACE, L.C.\",K1000\nOwner,Mandus Group/ Spirit Partners,Y4000\nBANKER,AKIN BAY COMPANY,Y4000\nPRESIDENT-OUTPATIENT DIVISION,SELECT MEDICAL HOLDINGS CORPORATION,H2000\nCOL FALLS ALUMINUM,,M2250\nPresident,Dave Mungenast Automotive,Y4000\nSoftware Engineer,Wyle Laboratories,Y4000\nLegal Assistant,\"Heard,Robins,Cloud,Lubel,& Gre\",K1000\nENGINEER,CARISON ENGINEERING,B4400\nKearney & Gleason,Attorney,K1000\nOWNER,RAVELIN,Y4000\nDENNIS MUCHMORE & ASSOCIATES,,K2000\nNSC CONSULTANTS,,G5200\nPHYSICIAN,SHADY GROVE ADVENTIST HOSPITAL,H2100\nTEXTILES,BALLY RIBBON MILLS,M8000\nPresident,\"What's Working\",Y4000\nKLUK CONSULTANTS,,Y4000\nEducator,ISA,Y4000\nCHAIRMAN OF THE BOARD,VORNADO REALTY TRUST,F4200\nAttorney,\"Medimmune, Inc.\",H4300\nGEN Manager,World Hotel,T9100\nSC BANKERS ASSOCIATION,,F1100\nMT VERNON INVEST,,F4000\nPRESIDENT,\"CIRQUE PROPERTY, LC\",F4000\nPRESIDENT,VITAL VOICE,Y4000\nChef,Divine Country Cafe LLC,G2900\nChief Executive Offi,Cnl. Hospitality Corp.,F4100\nBusiness Owner,\"Whitco, Inc\",Y4000\nalumni activities,Wake Forest University,H5100\nGeneral Manager,IPS Internacional LLC,Y4000\nDEVELOPER,HALLIE MANAGEMENT,Y4000\nCONSULTANT,CANE BAY PARTNERS,F1400\nLAWYER,COHEN GARELICK & GLAZIER/LAWYER,K1000\nAccountant,Cardinal Health,J1200\nVP & Senior Portfoli,Fort Washinton Investment Adv.,F3100\nOWNER,NORTON ENERGY DRILLING,Y4000\nWhitmer & Worrall,,K2000\nASTHMA ALLERGY PULM ASSOC,,H1130\nIT VICE PRESIDEN,EXELON CORPORATION,E1600\nBank President,Peoples Bank,F1000\nCEO,Cape Air,J1200\nFLAMM BOROFF AND BACINE,,K1000\nPresident,First Health Card Associatio,Y4000\nCOMMIS,DEPT. OF CHILDREN & FAMILIES,Y4000\nINVESTMENT CONSULTANT,CANTERBURY CONSULTING/INVESTMENT CO,F2000\nCHAIRMAN,HARTMAN & ASSOCIATES INC.,F7000\nUniv Prof / Admin,John Hopkins Univ,H5100\nPresident,Parangsae Corp,Y4000\nAttorney,State Farm Mutual,Y4000\nPUBLIC AFFAIRS,DIR,K1100\nATTORNEY,MASON & MUSELLA,K1000\nECONOMIST,CENTER ON BUDGET AND POLICY PRIORITIES,Z9500\nROMARC SERVICES INC,,Y4000\nCommodities Trader,CMS Holdings,F2200\nChief Executive Officer,Capital Financial Group,F0000\nUSED AUTO DEALER &,EASY AUTO CREDIT,T2300\nSULPHUR HIGH SCHOOL,,X3500\nVice President,\"James Craft & Son, Inc\",B0500\nPresident/Owner,\"Federal Solutions, LLC\",G0000\nCEO,NACCO,M2300\nDIV VP & DIREC,CORNING INCORPORATED,C4000\nEXECUTIVE,EMERSON,Z9500\nMANAGING DIRECTOR,\"SUMMIT ENERGY GROUP, LTD\",E1600\nCASTING DIRECTOR,\"ESTABLISHMENT CASTING, INC\",Y4000\nIN,CREDIT SUISSE FIRST BOSTON CORP.,F2100\nPHYSICIAN,\"FRESNO WOMEN'S MEDICAL GROUP\",H1130\n\"SAMS, DONATO, SPIER & HASTINGS\",,\nGRUPE CO,,F4100\nowner,Davis Manufaturing,Y4000\nLobbyist,KLP LLC,Y4000\nSALES,PLATO SOFTWARE,C5120\nINSURANCE AGENT/REAL ESTA,SELF EMPLOYED,J1100\nMECHANICAL CONTRACTOR,LUNSETH PLBG & HTG,B3400\nMAC NEAL HOSPITAL,,H2100\nCeo/Owner,John Watson Landscape Illumina,G0000\nATTORNEY,NOBLE PROPERTIES,F4000\nOwner,Demon Dogs,Y4000\nSOLUMBIA HOSPITAL FOR WOM,,J7400\nCIVIL E,CLOUGH HARBOUR & ASSOCIATES,B4000\nATTORNEY,NYS ATTORNEY GENERAL,J1200\nCORPORATION P,M.A.E. RESOURCES INC.,Y4000\nMILLER GLOBAL PROPERTIES,,F4100\nCAO,VERITABLE VEGETABLE,Y4000\nREALTOR,EWM,Y4000\nNEWTON & KIEL SALES,,Y4000\nExecutive Vice President & Chief Inves,\"BRE Properties, Inc\",F4100\nDentist,King of Prussia Dental Assoc.,H1400\nManager,The Wilderness Society,JE300\nOwner,American Fun Center,Y4000\nATTORNEY,JAMES J KEEFE PC,Y4000\nATTORNEY,CASSIDY & MUELLER,K1000\nVIROTEX CORPORATION,,Y4000\nOWNER,CAREY AND LEISURE/OWNER,K1000\nLoan Officer,First State Bank,F1100\nCEO,\"Carespring Healthcare, Inc.\",H2100\nCERTIFIED ENGINEERING INC,,B4300\nVICE PRESIDENT FINA,WESTERN COLLEGE,H5200\nMFG. REPRESENTATIVE,SELF-EMPLOYED,M0000\nVARCO-PRUDEN CO,,Y4000\nR.E. BROKER,CLOTFELTER R.E. CO.,F4200\nDEPUTY DIRECTO,THE GATES FOUNDATION,X4100\nManager of Haunch of Venison,Haunch of Venison,Y4000\nLAUNDRY,SELF,G5500\nsmall business owner,BSC Management Inc,Z9500\nORTHOPEDIC,TWIN CITIES SPINE CENTER,Y4000\nLOEB PARTNERS CORPORATION,,J7200\nXIT FEEDERS,,A3300\nVICE PRESIDENT,QINETIQ TRAINING & SIMULATION,Y4000\nOwner,Junco Motor,Y4000\nDATANAMICS INC,,Y4000\nCO,TANANA VALLEY TELEVISION COMPANY,C2100\nBROWN PAVING CO INC,,Y4000\nCEO,SIMON AND COMPANY,K2000\nCITY PLANNER/ RETIRED,NOT EMPLOYED,Y1000\nCompany Commander,Us Army,X5000\nReal Estate Manger,Jordan Realty,F4000\n\"HANSON'S MKT INC\",,Y4000\nCHAIRMAN & CEO,THE MOTORIST GROUP,F3100\nEXECUTIVE,FORGE USA,G5600\nEngineer,Praxair,Y4000\nANALYST,BELFER MANAGEMENT LLC,F2600\nCAMPAIGN MAN,ELIOT SPITZER CAMPAIGN,J7400\nTOWN OF PINECREST,,K1000\nPhysician,PHNA,Y4000\nCEO,HIGHER LOGIC,G0000\nJENNISON ASSOC,,F2100\nSTATE,PETRO. MARKETERS ASSN. OF WI,E1170\nEXECUTIVE,COX COMMUNICATIONS/EXECUTIVE,C2200\nACTION LABORATORIES,,Y4000\nWARNER BROS (ANIMATION),,C2400\nCFO,SAN FRANCISCO HEALTH PLAN,X3000\nPRESIDENT,LANGFORD CONSTRUCTION CO.,B1500\nManager,Roughneck Supply LLC,Y4000\nVICE CHAIRMAN,APPTIS HOLDINGS,Y4000\nBICRON ELECTRONICS CO,,Y4000\nREAL ESTATE AND FARMER,SELF EMPLOYED,F4000\nSECURITIES,GOLDCREST INVESTMENTS,F7000\nWEBSTER FINANCIAL,,F0000\nDoctor,Bay Care Clinic Emergency Phys.,Y4000\nPRIVATE EQUITY INVESTING,APOLLO MANAGEMENT L.P.,F2600\ncasting director,self,G0000\nFLEET BANK - RHODE ISLAND,,F1100\n\"SAYO, INC.\",,Y4000\nPARTNER,CATERERS IN THE PARK,Y4000\nSR. VICE PRESIDENT,WYNDHAM VACATION OWNERSHIP,T9100\nUS ARMY,,Z1100\nPRESIDENT,NW STRATEGIES INC.,Y4000\nInformation Requeste,Arthur Andersen,F5100\nOwner,Howard Organization Inc.,Y4000\nPHYSICIAN,CITY OF NEW YORK,X3000\nRESURGENT & TRAINING ASSOCIATES,,Y4000\nLEK SCHOENAU & CO INC,,Y4000\nWILCO PROPERTIES INC,,E1100\nCULPEPPER S D,,L1300\nCHEMICAL ENG,EALGEL BLASTONIAN INC.,Y4000\nINSURANCE AGENT,RESCHINI AGENCY INC/INSURANCE AGENT,F3400\nPresident,Ire-Tex Corp,Y4000\nCONSULTANT,RBC,Y4000\nEvaluation Specialis,Aguirra International,Y4000\nManager,Thomson Tax & Accoun,Y4000\nTAROLLI ENGINEERING,,Y4000\nAttorney,Davies Pearsan,Y4000\nBroker,Asher & Keller Group,J5100\nSAUNORIS FINANCIAL SERVICES-ILLINOI,,A8000\nPrinicipal  Member M,CRW Engineering Group,B4000\nTHE STUBBINS,,J1100\nActress,Free Reign Inc,Y4000\nVOLUNTEER-ACTIVIST,,J7400\nowner,A. C. Furniture Inc,G4400\nFLECK SALES,,G2850\nPRESIDENT,TITAN TRANSPORTATION C.P.,Y4000\nPRESIDENT,FRANK MARESCA & ASSOCIATES INC,Y4000\nKAR NUT PRODUCTS CO,,G2100\nPRESIDENT & CHAIRMA,NCH CORPORATION,M2300\nGEOPHYSICIST,HOUSTON ENERGY,E1000\nCONTRACTOR,MANAFORT BROTHERS INCORPORATED,B3600\nEXECUTIVE,MACK CONSTRUCTION,B1500\nBEAN STATION FURNITURE CO,,M4100\nCEO,Laurens County Healthcare System,H2100\nowner,Southwire Co.,M2200\nAdministrative manager,The Los Angeles Job Corps Center,Y4000\nPresident & CEO,ABC Bancorp,F1000\nFINANCE,\"ANACONDA CAPITAL MANAGEMENT, LLC/FI\",F2100\nmanagement,Jackson & Assoc,G2900\nAssistant Controller,GE Infrastructure,M2300\nNEW HOPE CRUSHED STONE,,B5100\nRACONTEUR,SELF-EMPLOYED,Y4000\nHR DIRECTOR,APCO WORLDWIDE INC,T1400\nAttorney,Kritzer & Zonies,K1000\nOWNER,DOW PIPE & FENCE SUPPLY,Y4000\nCEO,REAL SHARE INTERNATIONAL,Y4000\nReal Estate Broker,Legacy International,F4200\nClinical Transplant Soci,Walter Reed Army Medical,J7300\nChief Executive Officer,Fresenius Medical Care,H3200\n836 BLOOMFIELD ASSOCIATES LP,,F4500\nPolicy Strategist,\"KCopeland,Inc\",Y4000\nPRESIDENT,MEINEKE MUFFLER,G1200\nAYCOS ENTERPRISES LTD.,,Y4000\nEXECUT,STEINER BUYING SERVICES INC.,Y4000\nOWNER,KINDER CONSTRUCTION,B1500\nATTORNEY,\"UNITED TITLE OF LOUISIANA, INC/ATTO\",F4300\nPRESIDENT/CEO/CTO,\"CALCULEX, INC\",C5110\nJOEL REINSTEIN PA,,J5100\nNurse,Memorial Hospital,H2100\nADAMS OUTDOOR ADVT,,G5230\nINFO REQUESTED,OCEANIA TWO CONDO ASSN INC,Y4000\nSMALL BUSINESS OWNER (K STREET CONSULT,SELF,G0000\nMANAGER,\"CES COMPUTER SOLUTIONS, INC\",Y4000\nCounsel Assigned Com,GE Consumer & Industrial,M2300\nPartner,\"Valenti, Miller and Trobeck\",Y4000\nAttorney,SEFSKEY & FROELICH,Y4000\nHuman Resources,Credit Suisse,F2100\nPICKANDS MATHER,,Y4000\nPRESID,HOSPITALITY RESTARAUNT GROUP,G2900\nFOUNDATION DIRECTOR,ROCKEFELLER FINANCIAL,J7150\nGOVE,LARKIN HOFFMAN DALY & LINDGREN,K1000\nSTERLING PROPERTIES,,F4500\nVICE CHAIRMAN,MAJOR BRANDS,G2850\nTeacher,High School,J1200\nMortgage Broker,Revoe Mortgage,F4600\nATTIC BABIES,,M3500\nTHE LTV STEEL CO,,M2100\nJeweler,Michaels Jewelers,G4600\nconsultant,Smith & Ballard,Y4000\nHI-TECH ROCKFALL CONST INC,,B1500\nTRUAB FUNERAL HOME INC,,G5400\n\"Academic Advising, VP\",Kaplan University,H5100\nMarketing Coordinato,Epstein Becker & Green,K1000\nEureka Information S,President,G0000\nHealth Insurance Age,Mercer Insurance Group,F3200\nEXECUTIVE PASTOR,NBFC,Y4000\nIDEAL DATA SOLUTIONS INC,,Y4000\nPRESIDENT,BMC INC.,Y4000\nJP MORGAN CHASE & CO,,J7300\nStock and Currency T,Self-Employed,Y4000\nATTORNEY,MORRISON & FOERSTER,K2000\nPrincipal,Triangle Real Estate,F4000\nVICE-PRESIDENT,\"OLAN MILLS, INC.\",Y4000\nPresident/ CEO,Rehabilitation Institute,H2100\nEXECUTIVE,ANTIQUORUM,Z9500\nPhysician,New Hoerizons Csb,Y4000\nHorse Breeders,Self Employed,A3500\nEVENT PLA,VALLEY FORGE CONV. CENTER,Y4000\n\"Director, Parts & Service\",\"Deister Machine Company, Inc\",B5100\nLAB DIRECT,MARKHAM WALLACE HOSPITAL,H2100\nDECATUR TRANSIT,,Y4000\n\"SAN FRANCISCO 49'RS\",,G6400\nUNIVERSITY ADMINISTRATOR,DARTMOUTH COLLEGE,Z9500\nOPHTHALMOLOGIST,T. E. BREWINGTON MD PA,H1100\nPRESIDENT,HAWKEYE CAPITAL MANAGEMENT LLC/PRES,F2100\nATTORNEY,\"ZUKERMAN, DAIKER & LEAR\",Y4000\nMORRIS AGENCY,,C2400\nPRIVATE CONTRACTOR,MVM INC,Y4000\nPhysician,Oladayo Sanusi,Y4000\nOwner,Professional Products & Svc.,Y4000\nExecutive Director,David & Lucille Packard Foundation,X4100\nOCULOPASTIC SURGEON,SELF-EMPLOYED,Y4000\nCEO,EMERSON HARDWOODS,A5000\nHomemaker,None,E1160\nSENIOR ADVISER,CLEAN AIR COOL PLANET,Y4000\nROSSMAN & BAUMBERGER ET AL,,Y4000\nElectrical Designer,Fluor Daniel Wms Bros,Z9500\nPRESIDENT AND CEO,BRIGHTSOURCE ENERGY,Z9500\nReal Estate,\"E & F Properties, Inc\",F4000\nCEO,Charles River Analytics,Z9500\nEXECUTIVE VP,\"MEARS GROUP, INC.\",Y4000\nBEANSTALK GROUP,,G5210\nINFORMATION REQUESTED PER BEST EFF,INFORMATION REQUESTED PER BEST EFFO,A4000\nEXECUTI,PROGRESSIVE ASSOCIATES INC.,Y4000\nPHYSICIAN,RHEUMATOLOGY ASSOCIATES OF LONG ISLAND,H1130\nGALT FARMS,,A1000\nWILLITS DESIGN,,M4000\nFINANCE,CAPITAL ONE,F1400\nReal Estate Business Owner,\"STEWART AGENCY, INC.\",Y4000\nPresident Owner,Petty Products,Y4000\nAnalyst Support,Opoc US,Y4000\nPatent Attorney,LDLK & M,Y4000\nContractor,Robinson Electrical,B3200\nHENRI D. KAHN INSURANCE/OWNER/ INSU,,F3100\nOwner,Self-American Speedy Printing,G0000\nPRESIDENT,THIBCO. INC.,Y4000\nROGICA COMMUNICATIONS GRP,,G5210\nContract Monitor,State Of Wisconsin,X3000\nSIBR COMPANIES,,Y4000\nOWNER,ADAMS FARM,G1200\nATTORNEY,CUMBERLAND TRUST,Y4000\nHOMEBUILDER,PARK SQUARE HOMES,B2000\nCPA,HICKMAN & ASSOCIATES,Y4000\nEXECUTIVE,RIMKUS CONSULTING GROUP,Y4000\nInformation Requeste,Raeburn,F2700\nORTHMERICA PRODUCTS INC,,Y4000\n\"MANUFACTURER'S REP.\",M.K. SALES,Y4000\nPRESIDENT,WORLD WIDE WIRELESS,Y4000\nPhysician,Spectrum Health,H0000\nHOTEL OPERATOR,SELF,Z9500\nCEO,Semaphore Corp,C5120\nPOWER,IOWA ELECTRIC LIGHT,E1600\nSr VP PGR&D,Pfizer Global Research And Developmen,H4300\nSenior Policy Advisor,Holland and Knight,J7400\nOFF,RAYMOND HINERMAN AND ASSOC PLLC,Y1000\n\"EVP, Operating & Support Bus\",\"Sears, Roebuck, & Co\",G4300\nACCOUNTANT,FERRER & POIROT PC,J1200\nCONSULTANT,KMC INC.,Y4000\nLINK LAW FIRM/ATTORNEY/ TITLE,,K1000\nACCESS MEDIA ADVISORY LLC/OWNER/CEO,,Y4000\nALMOR CORP,,Y4000\nPRESIDENT,WHEELER & KOLB,Y4000\nUS GOVERNMENT,DISA,Z9500\nPRINCIPLE,BKSH,K2000\nquality assurance sp,los alamos natl. lab,D4000\nC & P SUPPLY,,Y4000\nPRINCIPLE,\"ORION REAL ESTATE SERVICES, INC.\",F4000\nPHYSICIAN,SADDLER CLINIC,H1130\nRETIRED,MAXWELL LIPTON ROSENBROUGH LIPSCHULTZ,Y4000\nInformation Requested,dole,G2300\nDIRECTOR,STEPTOE & JOHNSON,K1000\nSALOMOM BROTHERS,,F2100\nChemist,Newmont,Y4000\nCEO,PETRIZZO STRATEGIC,K2000\nLOGISTICS CONSUL,ATHEY & ASSOCIATES,Y4000\nTRUST SPECIALIST,SELF-EMPLOYED,Y4000\nBOLAND MARINE & MFG CO,,Y4000\nOwner,Its Our Time Visionaries N Partners,Y4000\nMANAGER,PSEG NUCLEAR,E1300\nResearch Scientis,Fenway Health,Y4000\nINVESTOR RELATIONS,D.R. HORTON INC.,B2000\nPRESIDENT,PARAMOUNT CONTRACTING,Y4000\nGENERAL MGR,THE DAILY NEWS,C1100\n\"MI- SR VP & CFO, CORP FI\",AAA Michigan,T9400\nDEPT OF WATER & POWER,,X3000\nLEGISLATIVE,REPRESENTATIVE BULLARD,X3000\nGOVERNMENT RELATIONS CONSULTANT,CAPITOL LEGISLATIVE STRATEGIES,K2000\nTHE RADIOLOGY GRP,,H1130\nSenior Analyst,Silver Point Capital,F2700\nREFRIGERATION ENGINEER,FJR PACIFIC,Y4000\nSPECIAL EVENT RENTAL,ALL EVENTS INC.,Y4000\nUNEMPLOYED,,T7200\nBanker,Citizens Bank of Bluffton,F1200\nBusiness Owner,\"Retail Services & Systems, Inc.\",Y4000\nPresident,Electro Tech Products,Y4000\nPresident,\"Lamb's Chevrolet and Implement\",T2300\nAMERICAN TYPE CULTURE COLLECTION,,Y4000\nBRASHER REA,SELF REAL ESTATE BROKER,F4000\nACCOUNTANT,AP BOOKKEEPING,Y4000\nDiscover,City First Enterprises,F1000\nJUDD ENTERPRISES INC.,,C2400\nDirector Medicare Services,HMS Holdings Corp,G5200\nOwner,Q and Z Enterprises LLC,Y4000\nSELF-EMPLOYED/DEVELOPER/INVESTOR,,F4100\nPHYSICAL THERAPIST,INTERFACE REHAB INC.,Y4000\nSTRABALA RAMIREZ & ASSOCIATES,,J7300\nCEO,\"Dot Foods, Inc\",G2910\nSenior Vice Presiden,\"Cisco Systems, Inc.\",Z9500\n\"SVP, Investor Relations\",NRG Energy,E1630\nCHIEF MANAGE CARE OFFICER,KINDRED HEALTHCARE,H2100\nSMALL  BUSINESS OWNER,MADISON MINERALS INC,Y4000\nFINANCIAL CONSULTANT,PFE ADVISORS,Y4000\nPhysical Therapist Assistant,HCA/West Florida Healthcare,H2100\nCEO,FINANCIAL CENTER CREDIT UNION,F1300\n\"FANNIE FARKLE'S\",,G6100\nHEALTH SVC RESEARCHER,LOVELACE CLINIC FOUNDATION,Y4000\nPrincipal,\"Icey, LLC\",Y4000\nPrincipal,Jenkins Hill Consulting Llc,K2000\nEXECUTIVE,MERCK & CO.,JE300\nCEO,TSI,M9000\nADMINISTRATOR,INFORMATION REQUESTED PER BEST EFFORTS,M2300\nRECORDING ARTIST,EJ GLOBAL LLC,C2600\nMarketing and Advertising,\"Creating Results, LLC\",Y4000\nConsultant,P A Consultants Llc,Y4000\nRESEARCHER,BROOKDALE HOSPITAL,H2100\nGENERAL CONTRA,VERMAAS CONSTRUCTION,B1500\nFinancial Advisor,Fundamental Capital,F2100\nJOSEPH J GUSTIN CO,,Y4000\nPRESIDENT & CEO,\"HEALTH NET, INC.\",H3700\nMedical Director,Cardio-Diagnostic Services Inc,H1130\nROBERT & BEVERLY LEWSI RACING,,G2850\nprofessor,SUNY Buffalo,J1200\nPrestient,Gwp,F4000\n,UNIVERSAL TECHNICAL INSTITUTE INC.,H5200\nChairman,The Uhlmann Co.,G2100\nPHYSICIAN,UNC HOSPITAL,H1100\nGovernment Affairs,\"Johnson, Madigan, Peck, Boland & Stewa\",K2000\nPsychiatrist,Heartland Regional,Y4000\nPUBLISHER,NORTH AMERICAN WINDPOWER,E1500\nMINOVA,,Y4000\nCOUNSEL,LANDAMERICA,F3400\nGLASS ARTIST,MCALLEN STAINED GLASS,M7200\nInformation Requested,,C4000\nCOMPTROLLER,OPTIMIZED DEVICES ONC,Y4000\nPsychiatric Rehab Practitioner,First Resources Corp,Y4000\nDIRECTOR OF CORPORATE MARKETING,BLUE CROSS BLUE SHIELD OF MICHIGAN,F3200\nEVP HUMAN RESOURCES,HOME BOX OFFICE,C2000\nFINANCIAL ANALYST,\"ARISTEIA CAPITAL, LLC\",Z9500\nCONSULTANT,SELF,E5000\nENGINEER,AMAZON,C5140\nING GROUP,,F3100\nCONS,NORDSTROM CONTRACTING & CONSUL,Y4000\nNICHOLS-DEZENHALL,,Y4000\nMother,N/A,G4600\nManaging Parnter,Sterling Partners,J5100\nOPERATIONS MANAGE,PANTHEON VENTURES,Y4000\nOwner,Kim Walters Od Pa,Y4000\nProfessor,SUNY Oswego,H5100\nLAWYER,KOHLER CO.,B5300\nDIRECTING ATTORNEY,\"CALIFORNIA RURAL LEGAL ASSISTANCE, INC\",Y4000\nWriter,Gideon Productions,Y4000\nMANAGER,MAMMOTH SKI AREA/MANAGER,Y4000\nHAYSLAND CORPORATION,,Y4000\nPRUETT PRODUCTIONS,,E1160\nPRINCIPAL CONSULTANT,BAE SYSTEMS,D2000\nSR. INSPECTOR,SELF-EMPLOYED,Y4000\nCEO,REALD,C2400\nBRINKS HOME SECURITY,,G5290\nPresident & CEO,LiveWell Colorado,Y4000\nJournalist,Self-Employed,T2310\nFire Fighter / EMS,Atlantic City Fire Dept.,L1400\nRAINBOW PLAY SYSTEMS,,Y4000\nASAP CAPITAL,,F0000\nPHYSICIAN,GI LTD.,Y4000\nN/A,THE NORTHEASTERN GROUP,Y4000\n\"PRES, DIVISION II OPERATIONS\",COMMUNITY HEALTH SYSTEMS,H2100\nLAWYER,\"BARLOW GARSEK SIMON, LLP\",Y4000\nPRESIDENT,\"DOCTOR'S BEST INC.\",J1200\nPRESIDENT,HYDRO INSTRUMENTS INC.,Y4000\nReal Estate Development,\"Habit Metro, LLC\",F4100\nDISTRICT ATTORNEY,YORK COUNTY,X3000\nDOCTOR,CARDIO MEDICAL SOLUTIONS,H1130\nPomona Valley Hospital Medical Cent,,H2100\nHomemaker,n/a,F2000\nCFO,TRU-VAL TUBING,Y4000\nTHE EDGEWOOD CENTER,,H2200\nAttorney,Shandell Blitz & Bookson LP,K1100\nEXEC,MCKEE GROUP,B1500\nA L LABS INC,,A3000\nSELF EMPLOYED/LOCKHEED MARTIN/ENGIN,,D2000\nteacher/writer,Lane Comm. College,Z9500\nMARIETTA MEDICAL PRACTICE PC,,H1100\nProgram Officer,The Pegasus Foundation,Y4000\nOwner,Mels Ignition Systems,Y4000\nFirst Vice President,M.P. Guinan and Associates,Y4000\nFundraiser,Adam Smith For Congress,Z9500\nProduction Administr,MJM Creative Services,G5200\nPRESIDENT,SHARON PATRICK COMPANY,G5200\nENGINEER,MICROWAVE SOLUTIONS INC.,Y4000\nShift Manager,CVS Pharmacy,G4900\nSenior Project Manager,Miller-Valentine Construction,B0500\nK V I CORPORATION,,Y4000\nATTORNEY,STEVE PENCE,K1000\nROSE KLEIN AND MARIES,,K1000\nBUSINESS EXECUTI,DOUGLAS THEATRE CO,C2900\nWILLIAM H DODD ET AL,,Y4000\nCOTTON PATCH INC,,Y4000\nMEDICAL DIRECTOR,\"AETNA, INC.\",J1100\nInformation Requeste,Stuber/Parent,C2400\nPOLITICAL ANALYSIST\\,\"PRIMARY CONSULTANTS, L.L.C.\",Y4000\nCEO,MAC TECHNOLOGIES,Y4000\nManager,Garlic Jims,Y4000\nC J T J CONSTRUCTION,,B1500\nInsurance Sales & Se,Self-Employed,F3100\nPHYSICIAN,NE.PRIMARY CARE ASSOCIATES,J1100\nCEO,CHRISTY WEBBER LANDSCAPES/CEO,B3600\nTREASURER,GLASGOW INC.,B1000\nFinancial Consultant,A G Edwards & Sons Inc,F2100\nUNITED STATE AIR FORCE,,X5000\nSelf Employed,HRC,Y4000\nCONSULTANT,SDA ENTERPRISES INC.,J5100\nSR. ACCOUNT SERVICES MANAGER,YESMAIL INTERACTIVE,Y4000\nRICHMAN LUNA KICHAVEN & GLUSHON,,Y4000\nPresident,\"Star Hydraulics, Inc.\",Y4000\nNot employed,Not employed,C5000\nPRESIDENT,MCWHINNEY ENTERPRISES,Y4000\nNETWORK SERVICES NOW,,Y4000\nSENIOR VP AND CFO,FLUOR,B1000\nHealth Services Admi,\"Bon Secours Health System, Inc.\",H2100\nDEVELOPER,ONE CHICAGO CDC,Y4000\nWRITER/DIRECTOR,GRACIE STUDIOS,J1200\nHotel Propietor,Whetleigh Corporation,J1200\nAL WANG,,Y4000\nSMALLWOOD REYNOLDS STE,,Y4000\nPERKIOMEN VALLEY PLBG. & HTG. INC.,,B0500\nMUJERES LATINAS EN ACCION,PRESIDENT & CEO,G0000\nNATL ASSN OF MED EQPMNT SUPPLIERS,,H4100\nSOFTWARE ENGINEER,PRIMORDIAL INC.,Y4000\nPresident/CEO,Classic Homes Inc,B2000\nLounge/ Real Estate,Halo/ Mcwilliams Ballard,F4000\nOWN,\"ROUND-THE-CLOCK RESOURCES, INC.\",J1200\nPRESIDENT,\"PRAIRIE ANALYTICAL SYSTEMS, INC\",Y4000\nCertified Public Accountant,Pastroff Barja Kelly & Co,J7400\nMEMORIAL HOSPITAL & MANOR,,H2100\nBUSINESS,REFUSED,G0000\nENGINEER,SIEMENS,C5000\nFarmer/Grapegrower,Self employed,A1400\nINFO REQUESTED,DYNAQUEST CORP.,C5130\nSELF OWNER,JIM JONAS INC,J1100\nFINANCE,RBC CAPITAL MARKETS,F2300\nCONAGRA,,G2300\n\"WEIL, GOTSHAL & MANGES LLP\",,K1000\nPHYSICIA,DARTMOUTH-HITCHCOCK CLINIC,J1200\nEXECUTIVE ASSISTANT,\"ACCOUNT PROS, INC.\",F1420\nREAL ESTATE,FLAGLER REAL ESTATE,F4000\nREGENT CAPITAL MGT CORP,,F2100\nMedical Technology,Dupage County Health Department,Y4000\nINVESTOR,\"ST CLOUD CAPITAL, LLC\",F0000\nTULSA,,L1400\nDIRECTOR WRITER,SELF,Z9500\nPRESIDENT,\"BARRY GRAHAM OIL SERVICE, LLC\",T6000\nPartner,The Womens Health Center Of Jackson,H0000\nPROFESSOR,IC2 UT AUSTIN,Y4000\nOwner,Tanger Outlet,Y4000\nVICE PRES,OR HEALTH & SCIENCE UNIV.,H5100\nEditorial Manager,Lexisnexis,C5130\nOwner/Founder,DG Smith Enterprises Inc,Y4000\nTBW INDUSTRIES INC,,Y4000\nTURBO CAM INC,,Y4000\nRetired,Self,G5270\nENGINEER,TRANSNUCLEAR INC,Y4000\n\"PUBLISHER'S R\",SOUTHERN TERR. ASSOC.,C1100\nBANKER,FIRST NATIONAL BANK  CROSSETT,F1100\nCOMP BUSINESS SRVC,,Y4000\nRetail,Portman Music,Y4000\nReal Estate Development,Cathartes Private Investments,J1200\nCOMPOSER,MUSICAL TRADITIONS,Y4000\nRETIRED,RETIRED - WILMINGTON FRIENDS SCHOOL,J1200\nLAWYER,LAW OFFICE OF KATZ & GREEN,K1000\nDILLARD CONSTRUCTION,,B1000\nVP,HENDRY CORPORATION,Y4000\nInformation Required,Information Required,X1200\nEngineer,\"Adelpha Systems, LLC\",C5130\n\"Partner, Global Dirrector of Markets\",Ernst & Young,F5100\nANESTHESIOLOGIST,PRESBUTERIAN ANESTHESIA ASSOCIATES,H1130\nMD,Oxford Hills Internal Medicine,F3100\nUNILEVER US INC,,J7150\nHealth Care Division Director,SEIU Local 250,LG300\nLUNA FORD-MERCURY,,T2300\nRANSON REALTY,,F4200\nSCOTT FETZER CO,,M5000\nFilmmaker,Rambo World Productions,Y4000\nOWNER,RED LINE SPORTS INC.,M3600\nAdministrator,\"Home Health Professionals, Inc.\",H3100\nLAWY,SELF EMPLOY. -MCKINNIS & SCOTT,J9000\nTRAVEL NETWORKING SERVICES,,Y4000\nTheatrical Manager,\"Touralot, LP\",Y4000\nCOMMERCIAL & MARINE INS. BROKERS IN,,Y4000\nFRENCH PROFESSOR,UNIVERSITY OF THE INCARNATE WORD,H5100\nPARTNER,\"JAECKLE FLEISCHMANN & MUGEL, LLP\",K1000\nRETIRED WINEMAKER,WINDWARD VINEYARD,G2820\nMaker/Fiberglass Tub,Am. Fiberglass Prod.,M7200\nNATIONAL ASSOCIATES INC,,Y4000\nULTIMATE SOLUTIONS INC,,Y4000\nSENIOR VICE PRESIDEN,PJ MECHANICAL CORP.,B3400\nPHYSICIAN,UNIVERSITY CARDIOTHORACIC SURGICAL ASS,H1130\nCELADON TRUCKING SERVICES INC,,T3100\nPrincipal & COO,\"Blue Crest Newport, LLC\",Y4000\nAXFMAYER ADSUAR MUNIZ & GOYCO,,K1000\nPRESIDENT/CEO,SANSI NORTH AMERICA,Y4000\nDUPONT AEROSPACE COMPANY INC,,D2000\nadministrator/owner,Gamble Guest Care,H2200\nSHEPHERD CLOTHING CO,,Y4000\nCITY OF FEDERAL WAY,,X3000\nSOFTWARE DESIGNER,CME GROUP/SOFTWARE DESIGNER,F2400\nFAHNESTOCK & COMPANY INC,,F2100\nOWNER,DAVIS CHEVROLET,T2300\nConsultant,Kemg LLP,J7400\nOWNER,ANIMIX,Y4000\nWife and Mother Of Four,None,Y4000\nSELF,WINDOW EXPRESS,Y4000\nPUBLICATION & GENERAL MGMT I,,Y4000\nINDUSTRIAL PIPING AND SHEET ME,,Y4000\nINS,\"INSURANCE PARTNERS AGENCY, INC.\",F3100\nInsurance Agent,The Joseph S Hills Agcy Inc,F3100\nNORTHRUP G CORP,,D2000\nExecutive,ADVEN Capital Partners,E1210\nMUSIC STORE OWNER,SELF,G4600\nATTORNEY,\"POMERANTZ, HAUDEK, GROSSMAN & GROSS\",K1000\nDrafts Person,William M. Smith & Assocations,Y4000\nCORPORATION IV HOLDINGS,,Y4000\nSHANNAHAN SMITH SCALONE & STIPANOU,,G1300\nAttorney,Winnebago Inds.,Y4000\ncharity,Buhl Foundation,J1100\nAuditor,Buchanan County,J7400\nCEO,USEFUL TECHNOLOGY CORP.,Y4000\nSENIOR VP,HALLIBURTON,E1150\nRegional Vice President,NTT America,F2500\nCOO,ROCK VENTURES LLC,G5000\nFINANCIAL MANAGER,UNITED STATES COURTS,X3200\nDEVELOPER,TOTTEN TOWER,Y4000\nCo-Manager,Pioneer Title Insurance,F4300\nFREEDMAN & AREDDA,,Y4000\nSTRUTZ LEVETT INVEST & HOLDING CO,,F4200\nPOST NEWSWEEK CABLE CO,,C2200\nPRESIDENT,\"GELLER & COMPANY, LLC\",F5000\nPHARMACIST,VA,X3000\nExecutive,Herff Jones,M3400\nOWNER,PESA ENTERPRISES,Y4000\nOFFICE MANAGER,DOYLESTOWN VETERINARIAN HOSPITAL,A4500\nRADIOLOGIST,CAROLINA REGIONAL RADIOLOGY,H1130\nSENIOR POLICY DIRECTOR,\"BROWNSTEIN, HYATT, FARBER, SCHRECK\",K1000\nPresident,\"Tonio Burgos & Assoc., Inc.\",K2000\nAttorney,Drinker Biddle And R,K1000\nV.P.,FARMERS ALLIANCE MUT. INS. CO,Y0000\nCHIEF EXEC,BAD BOYS BAIL BONDS INC.,G5000\nCONSULTANT,ICOR PARTNERS,Y4000\nDORSETT INDUSTRIES LP,,Y4000\nDOCTOR,BEST EFFORT,Y2000\nnurse practioner,none,K1000\nPresident and CEO,\"Orange and Rockland Utilities,\",E1140\nH.V.A.C. CONTRACTOR,CONTRACT SERVICE & SUPPLY INC.,Y4000\nCHIEF FINANCIAL OFFICER,KOCH FERTILIZER LLC/CHIEF FINANCIAL,E1160\nVICE PRESI,JIM COLEMAN COMPANY INC.,Y4000\nProcess Engineer,American Electric Power,E1600\nPractice Administrator,Al Allergy & Asthma Clinic,H1130\nPROFESSIONAL PMP MTE,,F4500\nADMINISTRATOR,CHALLENGE,Y4000\nDIABETES EDUCATOR,THE AUSTIN GROUP,Y4000\nChairman Emeritus,\"Manpower, Inc.\",G5250\nAttorney,Not Currently Employed,F2100\nPresident and CEO,Progress Bank,F1100\nPHYS,PRAINIC THORREAU AND CARD. SUR,H1100\nCeo,Wealth Management Group,J1100\nANESTHESIOLOGIST,MIDWEST PHYSICIAN ANESTHESIA SERVICES,H1130\nDir Acctg Opers & Reporting,\"Air Products and Chemicals, Inc.\",M1000\nPresident,\"Financial Service Group, Inc\",F2000\nPresident & CEO,\"The Women's Foodservice Forum\",G2900\nGENESIS HEALTH CARE INC,,H0000\n\"SMITH, CLARK, DELEDIE, MUELLER & KO\",,K1000\nVICE PRESIDENT,COMTRADE,Z9500\nPIEROTTI MOTORS INC,,T2300\nSENIOR VICE PRESIDE,DELTA AIR LINES,T1100\nOperations Manager,Fidelity Exploration & Production,E1620\nBUSINESS OWN,BRADLEY PETROLEUM INC.,E1170\nteacher,Mat Su School DIstrict,X3500\nPRESIDENT,CENTRAL MAINE TOYOTA,T2310\nTEACHER,LA PINE SCHOOL DISTRICT,X3500\nChairman,Swiss Colony,Y4000\nPRESIDENT & CEO,MAFCO WORLDWIDE CORP.,M3300\nDoctor,Cleveland Clinic Foundation,H1130\nINVESTMENT ADVISOR,MITCHELL MCLEOD PUGH & WILLIAMS INC,Y4000\nJOHN C. SENHAUSER ARCHITECT,,B4200\nexecutive,Michael Foods Inc,G2000\nLegal Editor,West Publishing,C1100\nProject Director,World Bank,Y4000\nCEO,\"PORTFOLIO MEDIA, INC.\",K0000\nCASINO EMPLOYEE,FOXWOODS CASINO,G6550\nUN Staff,United Nations,X3000\nSOFTWARE ENGINEER,TECHNISOURCE,Y4000\nOWNER,HOLLIWAY INSURANCE AGENCY INC.,F3100\nVeterans Program Manager,State Of Ohio,X3000\nCUFFS & CLOTHING,,Y4000\nExecutive VP,Enterprise Bank,F1100\nE K BARE & SONS,,A1400\nREAL ESTATE BROKER,PREMIER REALTY,J5100\nEngineer,Automation and Control,Y4000\nBUSINESS OWNER,SELF/BUSINESS OWNER,B3000\nGRAY DISTRIBUTING COMPANY LTD,,G1300\nCAR WASH CAR WASH,,G5000\nRESEARCH ASSISTANT,NORTH CAROLINA GENERAL ASSEMBLY,Y4000\nSystems Analyst,Licoln Finacial Group,Y4000\nLaw Teacher,University of Iowa,Z9500\nSCIENTIST,FOUNDATION FOR APPLIED MOLECULAR EVOLU,Y4000\nANETHESIOLOGIST,UNIVERSITY OF ALABAMA HOSPITAL,H1130\nChief Executive Officer,Inova Fairfax Hospital,H2100\nExec,Fox Outdoor Products,Y4000\nQuality Director,WMS,Y4000\nPTO Thrift Shop Manager,Not employed,J1200\nDAIICHI SANKYO INC/ATTORNEY/GOVERNM,,J1200\nPROJECT GENERAL MANA,SUPERSTITION MOUNTAIN,Y4000\nCPA,\"SELF, ACCOUNTING BROKER ACQUIS\",J1100\nAttorney,Levin Simes & Kaiser LLP,J1200\nCEO,GROOV-PIN CORP,Y4000\nMESA UNITED WAY,,X4000\nTV Producter,Information requested,Y4000\nMANAGER,\"AEROEQUITY PARTNERS, LLC\",Y4000\nCOHEN MILSTEIN HAUSSFELD & T,,K1000\nPediatric Dentist,University of Kansas,H1400\nSALES MA,\"STITCH IT AMERICA'S TAILOR\",Y4000\nExecutive Manager,Boggs Electric Company Inc,B3200\nAMERICAN BEAUTY DEVELOPMENT CO,,B2000\nGOVT. PROPERTY SPECIALIST,BOEING SERVICE COMPANY,D2000\nMANAGING DIRECTO,PUTNAM INVESTMENTS,F2100\nPATRICOFF CO VENTURE INC,,F2100\nstudent,NYU,Y1000\nNURENBERG PLEVIN ET AL,,Y4000\nMARCUS PODIATRY ASSOCIATES INC,,H1130\nPresident,Optimum Lightpath,C2200\nPublic Relations,\"McCahill Communications, Inc.\",Y4000\nTALENT AGENT,HALLEY RESOURCES INC,Y4000\nOrthopaedic Surgeon,Heekin Ortho Specialists,H1130\nMANAGEMENT,ALEXANDER LUMBER CO.,B5200\nIBM RETIREE,IBM,C5100\nSoftware Engineer,Solid Estate Scientific Corp - Nh,J7400\nOwner,L&F DISTRIBUTORS,G2850\nSVP DIR. C,BROWN-FORMAN CORPORATION,G2820\nPHARMACIST,VMMC,Y4000\nRetired,Gateway Comp/Avon,Y4000\nInformation Requeste,Information Requested,J4000\nPastor,Burke United Methodist Church,X7000\nLEVEL 3 COMMUNICATIONS INC.,,C4000\nARCHITECT FIRM,,B4200\nFINANCIAL PLANNER,LEON ROUSSO AND ASSOCIATES/FINANCIA,Y4000\nOWNER,EYE BARD OPTICAL,Y4000\nChief Council,Lawler-Wood,K1000\nTREASURER,\"QUALITY HYDRAULICS, INC\",M2300\nVice President,New Spring Packaging Inc,M7000\nENGINEERING & COMPUTER SIMULATIONS,,C5120\nSALES,KEY ENERGY/SALES,E1000\nPRESIDENT,LAKE TIRE SERVICE INC.,T2200\nExecutive,Bridge Forward S/W,Y4000\nFilm Editing,Self employed,Z9500\nphysician,Kos Pharmaceuticals,J1200\nINSURANCE,MUTUAL OF AMERICA LIFE INSURANCE COMPA,F3300\nNon Profit,Info Requested,X4000\nCEO AND GROUP PRESIDENT,QUALCOMM,C4300\nResearcher,Enerdel,Y4000\nCOORESPONDENT,NBC,C2300\nGRANT MANAGER,NATIONAL INSTITUTES OF HEALTH,X3000\nCONSULTANT,SELF EMPLOYED,E1200\nSENIOR VICE PRESIDEN,PRIMERICA FINANCIAL SERVICE,J1100\nATTORNEY/WRITER,EPIQ SYSTEMS,C5120\nWholesale Beer Distributor,Petitpren Inc,G2810\nBEHUN ZIFF DESIGN,,G5000\nENVIRONMENTAL ENGINE,T.D.C. ENVIRONMENTAL CORPORATE,Y4000\nSENIOR PARTNER,NUMBERGER ASSOCIATES,Y4000\nBOB JACKSON NORTH,,T2300\nSENIOR VP - COO,\"ACCUWWEATHER, INC.\",C4500\nPres/CEO,Delta Dental of MN,H1400\nPres.,Murray Energy,E1210\nEXECUTIVE,NORRENBERNS TRUCK SERVICE,T3000\nREALTOR,ZEPHYR REAL ESTATE,F4200\nDeveloper,\"P.V.M.S., INC.\",Y4000\nORMAN COMMUNICATIONS,,Y4000\nHAMLIN CAPITOL MGMT LLC,INVESTOR,F2100\nDISTRICT MANAGER,KIEWITT,Y4000\nPresident,River Terminal Services Inc.,Y4000\nPRESIDENT,CAPNET,K2000\n\"INTN'L FINANCE CORP\",,F0000\nSOFTWARE ENGINEER,SURVICE ENGINEERING,B4400\nLITTLE ROCK PRECISION PACKAGING,,B5100\nPHARMACEUTICAL TECHNOLOGY,RETIRED,X1200\nPresident,GKG Builder,B1500\nRUBIO L PAC,,J2200\nCONTACTED,,Y2000\nCLERGY,LUTHER PLACE MEMORIAL CHURCH,J1200\n\"THE DAWSON COMPANIES, LTD\",,G5200\nRICHARDSON AND ASSOCIATES ARCHITECT,,B4200\nBANKER,M.S.C.I. INC,F5000\nPresident & CEO,Smart & Final Stores Corporati,G2400\nOwner,P and S Rexall Pharmacy Inc.,G4900\nSOFTWARE SALES,N.A.,C5120\nGOVERNMENT AFFAIR,PODESTA & MATTOON,K2000\nPLACEMENT MANAGER,PEACE CORPS,X3000\nOwner,\"Bowen Library Services, Inc\",X4200\nJ.T.M. PRODUCTS,,Y4000\nSpouse of Employee,Homemaker,A5000\nPRESIDENT,TURNPIKE SEAFOOD CORP.,G2350\n\"EVP, CFO\",UMPG,Y4000\nPROFE,SAN DIEGO COMMUNITY COLLEGE D,J1100\n\"SENIOR VICE PRESIDENT, PRODUCTION\",A+E NETWORKS,C2200\nAttorney,Federal Home Loan Bank of Chicago,F4600\nTAURIAN DEVELOPMENT,,Y4000\nMCGEE PEST CONTROL,,G5700\nDIRECTOR,THE WB TELEVISION NETWORK,C2300\nDIR CLEARING TECHNOLOGY,\"CME, 20 S Wacker Dr, Chicago\",F2200\nLOAN OFFICER,CENDANT MORTGAGE,F4600\nCENTRE COLLEGE,,H5100\nFOLEY & CARDNER,,K2000\nEducator/Administrator,University Wisconsin,H5100\nCHAPIN AND BANGS,,Y4000\nCITGO-TEXACO JOBBER,,E1160\nAuthor,Self-Employed/ Kingston Mines,C1100\nLAND DEVELOP,FARNSWORTH DEVELOPMENT,F4100\nNYLUND DAIRY,,A2000\nFINANCE MANAGER,CHEVRON PHILLIPS CHEMICAL COMPANY,M1000\nLawyer,Piper Rudnick,K1000\nPARTNER,PEDERSEN FAMILY LLC,X1200\nKELLY ROOFING & INSULATION,,B3000\nQUDRAGEE DEVELOPMENT,,F4100\nCEO,The Coatings Alliance,M1600\nDirector R&D,\"CA Botana International, Inc\",M3300\nMETHODIST MISSION HOME,,Y4000\nVice President/CFO,R & S Management Co,F4000\nUNITED PROPERTIES GROU,,Y4000\nINVESTMENT BANKI,HAI FINANCIAL INC.,F0000\nUNIVERSITY OF ILLINOIS AT U-C,,H5100\nOptometrist,\"Phillips, Solomon, & Parrish\",Y4000\nFisherman,Fishing Vessel Sunward,Y4000\nChief Executive Offi,Supreme International Corp.,J5100\nCEO,BET,C2200\nIMPORT CONSULT,EXPORT,G3500\nDirector of Health,NYC DOE,X3000\nChairman,EMC CORP,X1200\nrequested,William Raneis Real Estate,F4000\nEXECUTIVE,GREER INDUSTRIES INC.,C2100\nRETIRED-SCHOOL TEACHER,NOT EMPLOYED,Y1000\nInvestment banker,Marshall Financial Group,F0000\nSPORTS ASSOCIATION,,G6000\nFINANCE,AP COMMERCIAL LLC,Y4000\nATTORNEY,THE BRENNAN CENTER,Y4000\nLAWYER,OBERMAYER,Y4000\nManager & Pilot,Sunshine Helicopters,Y4000\nPRESIDENT/CEO,\"GGC ENGINEERS, INC.\",B4400\nInvestment Managemen,Eveans Bash Klein,Y4000\nChairman,Blackwell Sanders Peper Martin LLP,K1000\nLOH REALTY & INVESTMENTS,,F4200\nSALES,M-T EQUIPMENT SALES INC.,Y4000\nPRODUCE SALES,TEXAS MELON EXCHANGE,Y4000\nMARINE ENGINEER-RETIRED,US NAVY - CIVILIAN,X1200\nPRESIDE,WEAVER GENERAL CONSTRUCTION,B1500\nKEY CITY FURNITURE,,Y4000\nPRESIDENT,BASHA DIAGONISTICS,H3400\nGOLDFEIN PROPERTIES,,K1000\nPRESIDENT,BOSSE TITLE COMPANY,F4300\nPresident,Star Electric Company Inc,B3200\nD B INVESTMENTS CORPORATION,,Y4000\nAdministrator,Aran Eye Associates,J5200\nRESEARCHER,MCKENNA RESEARCH & CONSULTING INC./,Y4000\nDAC INTERNATIONAL,,G5270\nChairman,Ralph Inouye Co. Ltd.,Y4000\nOWNER,ROSENBERG KIRBY & CAHILL,Y4000\nBROKER/OWNER,COLDWELL BANKER-1ST MINOT RLT,B2000\nDEPUTY DISTRICT ATTO,SAN DIEGO COUNTY,X3000\nMANLEY BAPTIST CHURCH,,X7000\nattorney,\"Kearney, Donovan & McGee\",K2000\nChief Audit Executive,TXU,E1600\nE.V.P. & C.F.O.,HEALTH SOUTH CORPORATION,H2000\nTEACHER,EDGEFIELD COUNTY SCHOOL DIS,X3500\nADVERTISING,WONGOODY INC.,Y4000\nTEACHER,LENAPE VALLEY HS,Y4000\nOWNER,ROBERTO BEZJON/OWNER,Y4000\nDAVIDSON CONTRACTING,,Y4000\nReal Estate Broker,\"Century 21 CR O'Neil & Co.\",F4200\nCredit Manager,Pegnato and Pegnato,Y4000\nDEAL BUICK INC,,T2300\nWAYNE COUNTY COMM COLLEGE,,H5100\n\"NO RESPONSE AS OF APRIL 13, 2012\",\"EMAIL REQUEST FEB 17, 2012/NO RESPO\",G0000\nPolicy Consultant,The Lewin Group,H3000\nplanner,ECHEZABAL & ASSOCIATES,Y4000\nExcavation & Site Development,Anderson Company,B1000\nAAI CORPORATION,,D4000\nBUSINESS OWNER,GRAFITTI,G4300\nDIVERSIFIED GLASS SERVICES,,M7200\nSVP BRANCH OPERATION,MARINER FINANCE/SVP BRANCH OPERATIO,F1400\nPRO JEEP EAGLE CHRY PLY,,T2300\nMS COWDEN,,H2100\nOWNER,CECIL B. DAY INVESTMENT CO.,F2100\nKOKOMO TOYOTA,,T2310\nMERCHANT,BLAKLEY-MITCHEL CO.,Y4000\nLASL,,D4000\nLOAN OFFICER,SPECTRUM FINANCIAL GROUP INC.,F4600\nNEW MEDIA,OMP,Z9500\nDirector,R&D Engineering,B4400\nNew Mexico Naural Re,State of NM,Z9500\nBUSINESS MANAGER,J W KATZEN CO,J5100\nLOBBYIST,\"ATL WOMEN'S MEDICAL CENTER\",H2000\nMedical Doctor,Brigham and Womens Hospi,H1100\nCAMPBELL GLASS OF BRENTWOOD,,M7200\nGeneral Manager,\"Judge & Dolph, Ltd.\",G2850\nIT SPECIALIST,US FEDERAL GOVERNMENT,J1200\nPHILOSOPHER,SELF,Z9500\nSOU WINE & SPIRITS,,G2850\nHOGAN & HARTSEN,,Y4000\nKING BROS FEEDYARD,,A3300\nATTORNEY,KEALING MUETHING & KLEKAMP,Y4000\nNC ASSN OF ELECTRIC CO-OPS,,E1610\nDeveloper,John Stewart Company,F4100\nPEPSI-COLA BOTTLING CO OF BROOKFIEL,,G2700\nTRUMP CASTLE CASINO-HOTEL,,G6500\nACCOUNT MANAGER,AVNET,Z9500\nAUTO DEALER,WILSON COUNTY MOTORS,Y4000\nEXECUTIVE,BIG BROTHERS/BIG SISTERS ESSEX HUDSON,X4000\nAttorney,Telephone Data System,C4100\nCOMPANY OWNER,GENERAL RESONANCE,G5200\nATTORNEY,LAW OFFICE OF ALIX A ROSENTHAL,Z9500\nMACHINIST,USPS,X3700\nPRESIDENT,LANDAR HOLDINGS,Y4000\nFAMILY HAIR DESIGNERS,,G5100\nMUCH SHELIST FREED DENENBER,,K1000\nRELIEF SERVICES INC,,Y4000\nPROCTOLOGIST,SELF EMPLOYED,Y4000\nAttorney,Stull Stull & Brody,K1000\nRetired (Manager-Credit Cards),Retired  (Bank of America (MBNA),X1200\nCeo,Executives Solutions Consult Group,Y4000\nRecreation,Self employed,G6000\nArtist/Teacher,Unemployed,Y1000\nPROFESSOR,WASHINGTON,H5100\n\"SR. VICE PRESIDENT, POTOMAC\",COMCAST,C2200\n\"CHRISTIAN, BARTON ET AL\",,K1000\nPRES.,CHOICE POINT,F5200\nCEO,GABELLI ASSET MANAGEMENT,F2100\nPROPERTY MANA,ARCO MANAGEMENT CORP.,J7400\nFinance,Capital Group,Z9500\nN/A,Information Requested,Y1000\nEngineer,\"Fanuc Robotics America, Inc\",Y4000\nPRESIDENT,SUWANNEE PIPE & SUPPLY,Y4000\nConsultant,\"ICG Gov't\",G5270\nEXECUTIVE VICE PRESI,MILWAUKEE VALE,M5000\nCOOPPER TIRE,,Y4000\nInvestments,\"The Jordan Company, LLC\",Y4000\nMANUFACTURERES LIFE INSURANCE,,F3300\nUNIVERSITY OF NORTH CAROL,,H5100\nSULLIVAN ST CLAIR ADVERTISING,,G5210\nOwner of Assisted Li,Self,G0000\nSELF EMPLOYED,COMPUTER MARKETING,Y4000\nAttorney,Greenberg Tramrig,K1000\nOWNER,SWANN BUILDING GROUP,F4100\nAssistant Director,City of Columbia,X3000\nDIRECTOR ENGINEERING - NUCLEAR,Florida Power & Light Company,E1600\nMANAGE VACATION RENTALS,SELF-EMPLOYED,G0000\nAttorney,Preti Flaherty,Y4000\n\"CO-FOUNDER, MANAGING PARTNER\",AAPO-G,K1000\n\"VP, Heat Transfer Pr\",Carrier,D2000\nCONTRACTOR,BOB CARLSON INC,J1100\n\"PHOTO-GRAPHAX KI'I\",,Y4000\nPUBLISHER,\"ATTORNEY'S BRIEFCASE, INC.\",K1000\nexecutive,Glasgow Inc,Y4000\nDCI COMPANIES,,G5210\nPADUCAH & LOUISVILLE RAILWAY INC,,T5100\nFinance/Banking,Self-employed,F1100\nCommunity Activist - Licensed Attorney,Self,K1000\nPARTNER,LIMA DAIRY,A2000\nEVP & CFO,UNITED BANK AND TRUST,F1100\nINFORMATION TECHNOLO,MORGAN STANLEY,F2300\nEXECUTIVE,MOLECULON RESEARCH CORPORATION,Y4000\nAttorney,Loucas Law LLP,K1000\nPRICEWATERHOUSE-COOPERS,,F5100\nNATL RIVET & MF CO,,M0000\nUpper Management,First Command,Y4000\nOwner,North Jersey Fire Protection Company,Y4000\nCEO,Thalas,Y4000\nOWNER,PHOENIX MANAGEMENT INC.,D9000\nArt Lifson Consulting,,K2000\nManager,Health South,Y4000\nCOMPUTER ANALYST,RETIRED,X1200\nPRESIDENT,OE&S,Y4000\nJOHN B EWLES INC,,B5100\n\"ELLIOTT GREENLEAF & SIEDZLKOWSKI, P\",,Y4000\nMD,MANN EYE INSTITUTE,H1120\nBOUMU-BETTEN INC,,Y4000\nOwner,Willson Design,Y4000\nGREELEY,FNB,F1100\nMANAGEMENT,G.M.C.R.,Y4000\nPRESIDENT,FOREST INVESTMENT ASSOCIATES,F7000\nRETIRED,WINDINGO PARTNERS,Y4000\nCFO,George P Johnson CO,Z9500\nOwner,Sixty Sixth Avenue Garage,T2400\nPARAMOUNT LIQUOR COMPANY OF CAPE GI,,G2850\nExecutive,\"J.C. Penny Company, Inc.\",G4300\nGREENMAN PEDERSON,,B4000\nLLOYD PROPERTIES,,B2000\nPRESIDENT,FRANCE FLYING SERVICE,T1600\nCHAIRMAN & CEO,\"THE CAMERON COMPANIES, LLC\",K2000\nSorter,UPS,J1200\nEXECUTIVE VICE PRESIDENT,M&I BANK,F1000\nEXECUTIVE DIRECTOR,AZ COMMISION OF INDIAN AFFAIRS/EXEC,Y4000\nOWNER,DERUSSY MOTORS INC,T2300\nCHAIRMAN,RYAN BROTHERS CONSTRUCTION,B1500\nAttorney,Alan Kretzer Co. LPA,Y4000\nProperty Mgr.,Fremont Dock Co.,F4000\n\"MD, professor of ane\",University of Iowa,H5100\nRETAIL MANAGER,BROOKE POTTERY,Z9500\nREAL ESTATE AGENT,THE HOME SPECIALISTS REAL ESTATE CO,J9000\nDirector Of Sales Marketing,\"Gold Coast Design, Inc.\",Y4000\nEXECUTIVE,DEXTER ENTERPRISES,Y4000\nEVP GEN COUNSEL & CORP SECY,DEAN FOODS COMPANY,A2000\nBUSINESS EXECUTIVE,HOLCIM,B5100\nPILLOW GIL COMPANY,,Y4000\nWASATCH VENTURE CAPITAL,,F0000\nPRESIDENT,METCALF LUMBER,A5000\nFANCYS RESTAURANT,,G2900\nALD VENDING SERVICES,,G4850\nPartner,Morrison Cohen LLP,J7400\nBUSINESS REPRESENTATIVE,SHEET METAL WORKERS LOCAL 18/BUSINE,LB100\nSELF,SELF,A3300\nS E CONFERENCE,,Y4000\nESTATE,,Y4000\nAttorney,Moses & Singer llp,Y4000\nATTORNEY,SSP PARTNERS,Y4000\nCEO,\"COREY BROTHERS, INC\",Y4000\nCYBER SECURITY ANALYST,PHILIPS HEALTHCARE,Y4000\nCONSULTANT,HARNS CONNECT,Y4000\nNATIONAL MEDICAL RENTALS INC,,H4100\nCOO,TLMI CORPORATION/COO,Y4000\nPRES,\"PERRY-MCCALL CONSTRUCTION, INC\",B1500\nSURGICAL CONSULTANTS OF DU PAGE,,Y4000\nCEO,F6,Y4000\nDirector,Arizona Department of Environmental Qu,X3000\nPROFESSOR,FRANKLIN AND MARSHALL COLLEGE,H5100\nCHIEF EXECUTIVE OFFICER,ROCK VALLEY OIL,E1100\nFund raiser,ADF,Y4000\nDeputy District Dire,Congresswoman Pelosi,Y4000\n\"Chief Scientific Advisor, Radar Geoint\",National Geospatial-Intelligence Agenc,Y4000\nengineer,cpii,Y4000\nEXECUTIVE,IDEAL FASTENER,J5100\nPRESIDENT,WALLIS CONSTRUCTION CO.,B1500\nMANUFACTURING MA,ARVIN MERITOR INC.,Y4000\nBUSINES,NATIONAL REALTY CORPORATION,F4100\nCHIEF TECHNOLOGY OFF,PROCTER AND GAMBLE,M1300\nCFO-WESTERN GROUP,HCA INC.,H2100\nCHIEF OF STAF,KNOX COUNTY EXECUTIVE,Y4000\nChairman & President,Coeur d Alene Mines Corp.,E1220\nFILMMAKER,WALT DISNEY,C2000\nSocial Worker,Aware,Y4000\nReal Estate Broker,ONORATO REAL ESTATE,F4200\nEXECUTIVE,SMITH AND PACKETT MED-COM,Y4000\nCHAIRMAN,SWANK MOTION PICTURES,Y4000\n\"Personal Lines Product Manager, PA\",Grange Insurance,F3100\nOwner,Interim Music Publishing,C2600\nREAL ESTATE,BROOKFIELD REAL ESTATE,F4000\nTHE FOSTER GROUP LTD/PRESIDENT/CEO,,B2000\nGRANVILLE,,F3100\nBOOKKEEPER,VALENTE & ASSOCIATES,K2000\nJAMES T HEARD MGMT CO,,Y4000\nATTORNEY-OWNER,GUINN LAW FIRM,K1000\nOwner,Reed Epcavating,B3600\nPRESIDENT,SEATTLE SAVINGS BANK,F4600\nCONSULTANT,SENTINEL STRATEGIC ADVISORS LLC,J1100\nCounselor,Northland Family Planning,J1200\nNORTHERN RADIOLOGICAL ASSOC,,H1130\nStore Manager,Interiors By the Sea,Y4000\nTHE MCCONNELL GROUP,,G5250\nSMALL BUSINESS OWNER,CCS INC.,Y4000\nOWNER,\"K+E TECHNICAL, INC.\",Y4000\nMOULTON GAS SERV,,E1140\nANESTHESIOLOGIST,LSU MEDICAL CENTER,H1130\nSALES EXECUTIVE,ATLAS WATERSYSTEMS,Y4000\nLOMAR MANAGEMENT,,Y4000\nDir/Community Affair,MassDOT,J7400\nPresident,Middle East Institute,Y4000\nINSURANCE EXECUTIVE,FLORIDA FAMILY INSURANCE COMPANY,F3100\nPRESIDEN,\"ARNOLD AND O'SHERIDAN INC.\",B4000\nSOFTWARE DEVELOPER,\"INSIGHT GLOBAL, INC.\",Z9500\nTourism Sales/Marketing,International Sales Management Inc,Y4000\nPHYSICIAN,ARIA HEALTH,Y4000\nAttorney,\"Bosies, Schiller and Flexner LLP\",Y4000\nREAL ESTATE BR,THE HOME SPECIALISTS,F4200\nSmall Business Owner,Penn State University,H5100\nCLINTON NEWSPAPER,,C1100\nAttorney,\"Chamberlain D'Amanda\",J1200\nArtist,Mobay Sportswear,Y4000\nMANPOWER INTERNATIONAL,,Y4000\nLOW/MODERATE INCOME HOUSING,SELF,Y4000\nPARTNER,COX SIMPSON & BENNETT,Y4000\nPrivate Equity Partn,Kps Special Situations Fund,F2100\ncabinetmaker,Self employed,J1200\nUS MARSHALL,RETIRED/US MARSHALL,X1200\n\"WINDOM RESOURCES EMILY'S LIST\",,JE300\nAdvertising & PR Con,GMMB,Y4000\nInvestment Advisor,Del Mar Asset Management,Y4000\nGENERAL MANAGER,DUDLEYS SERVALL,Y4000\nFACILITY MANAGER,SMITHSONIAN INSTITUTION,X4200\nGW SMITH ENTERPRISES,,J7400\nProfessor,U. of Utah,H5100\nCT SCHOOLS OF BROADCASTING,,H5200\nANESTHESIOLOGIST,CAPITAL PAIN MGMT ANESTH,H1130\nLOWE POWELL SPEARS LUBERKY,,K1200\nPRESIDENT-EXEC MGMT.,USAA,F3100\nattorney,\"Ira M Lechner, Esq\",J1200\nMANAGER,GATES CAPITAL MANAGEMENT,F2100\nATTORNEY,HECHT KLEEGER PINTEL & DAMASHEK,Y4000\nTITLE INSUANCE,SELF,F4300\nAccount Executive,FGIB,Y4000\nDIRECTOR - SAFE,VIKING FREIGHT INC.,T7100\nHASSETT STGE WAREHOUSES,,Y4000\nOWNER,THE DOBBINS CO,Y4000\nPresident & GM,Alexandra Railroad Co,T5100\nVANGUARD MONEY MARKET,,F2100\nPRESTIGE BRIDE LTD,,Y4000\nREALTOR,David Zigal - REALTOR,F4200\nExecutive,Dash Multi-Corp,M1500\nFarm Equipment,Lasseter Tractor Co.,A4200\nCEO/CO-FOUNDER,MARKETSHARE,G5280\nProfessor,U Of Irvine,H5100\nINTERSTATE FACILITIES,,Y4000\nCHRISTIAN CENTURY FOUNDATION,,Y4000\nWASENDORF AND SON CO,,Y4000\nPRODUCER,,A1600\nB. L. COUCH MD PC,,H1100\nTextile,Textiles,G3000\nEXECUTIVE CHAIRM,EMULEX CORPORATION,C5110\nPresident,Roem Development Corp,F4100\nTEWES CO INC,,Y4000\nSHEARSON-HUTTON,,F2100\nowner,HPM Consultants,Y4000\nVice Chairman,NASDAQ,F2400\nFRILDCREST INC,,Y4000\nLAWRENCE ARENDALL HUMPHRIES,,F4000\nMARKETING CONSULTANT,CHRISTA MALLARD PROMOTIONS,Y4000\nLAWYER,KINGS & SPALDING,K1200\nCONSULTANT,SELF-EMPLOYED,H3700\nCHAIRMAN,EMERITUS SENIOR LIVING-N/A,H2200\nC.E.O.,VIRCO MFG. CORPORATION,M4100\nEXECUTIVE,\"BRANFORD CHAIN, INC.\",F2300\nEXEC. VICE PRES,BOB EVANS FARMS INC,A1000\nELECTRICAL CONT,SELF-EMPLOYED,B3200\nCEO,FIRST AMERICAN NATIONAL BANK,F1100\nVANSTAR CORPORATION,,G4300\nGEORGIA CROWN DISTRIBUTOR,,G2850\nPresident,\"KLD Research & Analytics, Inc\",Y4000\nVETER,BRADFORDVILLE ANIMAL HOSPITAL,A4500\nMANAGER,MAJESTIC STEAKHOUSE,G2900\nBON SECOURS HOSPITAL,,H2100\nCORPORATE VICE PRESIDENT GLOB,C-COR,C2200\nSCIENTIST,APPLIED BIOSYSTEMS,H4500\nACCOUNTANT,BOSLER & COMPANY P.C.,Y4000\nNOME FEDERAL CREDIT UNION,,F1300\nConsultant,Reznick Group,F5100\nManaging Director,\"Keating, Vollmer, & Co.\",F2500\nINSURANCE AGENT,KAPTURE INSURANCE,F3100\nPresident,Cedar Valley Corporation,B5100\nLOGISTICS MANAGER,CECOM,Y4000\nEXECUTIVE ASSISTA,THE CARLYLE GROUP,F2600\nJOHN HEAD ESQ,,K1000\nCOUNSEL,NATIONAL ASSOCIATION INSURANCE FINANCI,F3100\nG W LISK CO/PRESIDENT/CEO,,J1100\nRICHSTONE CUSTOM HOM,,Y4000\nPresident and Chief Executive Officer,Search Mojo,Y4000\nALLSTATE,,J5100\nPRESIDENT,BARWOOD TRANSPORTATION,Y4000\nVice President,J B Distriburtors Inc.,Y4000\nPARTNER,KESSLER/ASHER GROUP,J5100\nCEO,DOLORES KOHL EDUCATION FOUNDATION,Y4000\nCEO,DIRECT STRATEGY,Y4000\nDAY BERRY G HOWARD,,K1000\nYELLOW CAB OF DALLAS INC,,T4200\nDEVELOPER,ORIOLE HOMES,B2000\nHUMAN RESOURCES,ELECTRIC UTILITIES - PUBLIC POWER,Y4000\nBRICKLAYER,\"J. J. BRAKER & SONS, INC.\",Y4000\nCHIEF FINANCIAL OFFICER,SAVVIS,Y4000\nPresident,Sunrise Buick GMC Truck,T2300\nVice President of Sa,Rent.com,F4500\nOWNER,BOOTH FIRE CONTROL & SAFETY/OWNER,Y4000\nEXECUTIVE ASSISTANT,ALLSCRIPTS/EXECUTIVE ASSISTANT,H3000\nINVESTMENT BANKER,IFM RESOURCES INC.,Y4000\nRestaurant Owner,China Buffett,Y4000\nPRESIDENT,FAMILY MEDICAL,H3100\nDIRECTOR OF REIMBURSEMENT AND HEALTH P,VARIAN MEDICAL SYSTEMS/DIRECTOR OF,J2100\nATTORNEY,BERGMAN DRAPER LADENBURG HART,K1000\ninsurance broker,Lawyers Liability Insurance Services,F3100\nSELF-EMPLOYED,\"SUPREME TREATS, INC\",Y4000\nPolice Officer,City Of New York Police Department,X3000\nPhysician,Deaconness Health Group,H1100\nCAPI,,Y4000\nPRINCIPLE,EMERSON BOUCHARD CONSULTING LLC,Y4000\nPRESIDENT,FREIMUTH GROUP,K2000\nTeacher,Seton Academy,J1200\nLAWN MULLEN AND GOOD INTL L,,Y4000\nProject Manager,Newland Comunities,Y4000\nManager Government R,General Motors Corporation,T2100\nATTORNEY,\"PASTERNACK, TILKER, ZIEGLER\",K1100\nESSEX PLAZA MGMT,,F4000\nRETIRED,ENVIRONMENTAL,E2000\nCOMDOSCO INC,,C5100\nINVESTMENTS,METHANWILL FAMILY OFFICE,Y4000\nSoftware Engineer,Net.com,C5140\nASSOCIATED INSURANCE INC,,F3100\nadministrator,Dept of Veterans Affairs,X3000\nEDUCATIONAL OPPORTUNITY,,Y4000\nHEALTHCARE,ZERVAGO,J7150\nCEO,OUTER STUFF,Y4000\nWARNER BROTHERS/PRES/COO,,C2400\nMACHINIST,BUTLER GEAR COMPANY,Y4000\nInvestment Manager,MKP Capital Management,J1100\nTeacher,Renton Schools,Y4000\nCEO,MURPHY FAMILY VENTURES,A1000\nGREENARD MORE,,Y4000\nINVESTMENTS,DAN OWENS CO.,Y4000\nEXECUTIVE,GERBER CAPITOL MANAGEMENT,J5100\nPresident,AMERICAN SILK MILLS CORPORATION,M8000\nVALLEY FORGE OB/GYN/PHYSICIAN,,H1130\nHOSPITAL A,NY PRESBYTERIAN HOSPITAL,H2100\nSCIENTIST,UNIVERSITY OF SOUTHERN MS,H5100\nPAPER DOLL LOUNGE,,G2900\nUNEMPLOYED,N/A,H1400\nPHYSICIAN,LEE OB/GYN,H1130\nPHARMACIST,U.S.A. DRUG,Y4000\nAuto Dealer,Bud Eyre Chevrolet,T2300\nResearch Professor,University Of Georgia,H5100\nJOHN ROSE IMPORTS,,T2310\nAEROSPA,HONEYWELL INTERNATIONAL INC,M2300\nATTORNEY,\"BURKE, WILLIAMS & SORENSER\",K1000\nCOMPUTER ENGINEER,SELF-EMPLOYED,C5100\nSENIOR VICE,GLOBE LIFE AND ACCIDENT,F3300\nOWNER,REVELATION PRODUCTS,Y4000\nPHYSICIAN,ASSOC LANG COM,Y4000\nSTM PUBLISHER,\"ELSEVIER, INC.\",C1100\nPresident,PDS,Y4000\nInteraction Designer,TD Ameritrade,F2100\nPARTNER,GORDEN - PRILL DRAPES,Y4000\n\"MANGEL, BUTLER, MARROW\",,Y4000\nMIDWEST DIRECTOR,G.M.S. MINE REPAIR/PIONEER CONVEYOR,G5600\nHome Maker,None,F2700\nATTORNEY,\"QUINLAN & SADOWSKI, P. C.\",K1000\nEngineer,Sound Technology Inc,Y4000\nHENRY INSURANCE AGENCY I,,F3100\nProprietor,Zook Molasses,Y4000\nARTS & HOMELESS ADVOCATE,,J7400\nJENNIFER BAGG MD,,H1100\nHOMEBUILDER,ESTES BUILDERS,Y4000\nPROFESSOR,UCLA,Y4000\ndesign build,self,G0000\nCEO,TAKE2 INTERACTIVE SOFTWARE INC,C5120\nPRESIDENT,J.PALAZZOLOSONINC.,Y4000\nConsultant,Wylie,Y4000\nMediator,Mediation Center of the Pacific,H2100\nWriter/Producer,Komut Productions,C2400\nPUTNAM INVESTMENTS INCORPORATED,,F2100\nREALTOR,Aries Realtor,F4200\nPRESIDENT,GREENLIGHT CAPITAL INC.,F2700\nPHYSICIAN,UNM SCHOOL OF MEDICINE,H5150\nVICE PRESIDENT OF OP,BANNCOR MORTGAGE,F4600\nCHIEF OF ORTHOPAEDICS,LIFESPAN,H1130\nAttorney,\"Elizabeth Baum, PC\",Y4000\nAttorney,Kelley And Legan Pc,K1000\nPSYCHOLOGIST,\"LAND O'LAKES\",A2000\nExecutive,Superior Graphite Co.,B5100\nDIFAZIO ELECTRONICS,,Y4000\nLAUNDRY OWNER,SELF-EMPLOYED,J1200\nATTORNEY,MEHLMAN VOGEL & CASTINETTI,Y4000\nPresident,Smart Technoligy Export Inc.,C5110\nHOMEMAKER,SELF-EMPLOYED,H3700\nGENERAL MANAGER,WESTERN MOTOR CO.,Y4000\nWriter,Victoria Riskin,Y4000\nPresident,American Enterprise Bank Of Florida,F1000\nPRESIDENT,INNOVATIVE CARBIDE,Y4000\nFederal City Council,,Y4000\nUniversity Professor,George Mason University,H5100\nMARKETING DIRECTOR,COX COMMUNICATIONS,C2200\nSAILOR,U.S NAVY,X5000\nVENTURE PHILANTHROPIS,SELF-EMPLOYED,J7400\nOwner,Discount Brake Clutch,Y4000\nFINANCIAL SER,LEVIN FINANCIAL GROUP,F0000\nCoordinator,Irvine Unified School District,J1200\nOwner,Watermark Learning,Y4000\nPRESIDENT,BASKERVILLE-DONOVAN INC.,B4000\nSCHOOL ADMINISTRATOR,MSAD #44,Y4000\nAttorney,Tarrant County DA Office,Y4000\nAssistant,Antaramian Development Group,F4100\nCONSERVATIVEHQ.COM,,J1100\nREALS,SELF,G0000\nPresident/CEO,Polonia Bank,F1000\nMarketing,Standard Textile Company,M8000\nFUTWEILER & CO,,Y4000\nCPA,\"May, Taylor & Co.\",Y4000\nCITY MANAGER,KINGFISHER,Y4000\nSR. PROJECT MANAGER,VANGUARD,F2100\nN/A/HOME MANAGER,,E1100\nIINN KEEPER,SELF,T9100\nBLUE RIDGE ANESTH,,H1130\nPRESIDENT,MCBRIDE & ASSOCIATES,K2000\nREISS COMPANIES,,G0000\nDRY LAND WHEAT FARMER,,A1500\nOwner,L.A. Express,G0000\nBusiness Executive,Sorensen Gross,Y4000\nTREASURER,BUCKEYE CABLESYSTEM,C2200\nBusiness Manager,\"James D. Yopp, Jr.\",Y4000\nROOLAN HEALTH CARE CENTER,,H2200\nCROUNSE CORP,,F1100\nAFFILIATED MANAGERS GROUP,,Y4000\nRetired,University Of Texas,X1200\nBanker,South Bridge Savings Bank,J1100\nGeneral Manager,Lester Gleen Auto,Y4000\nPortfoilio Manager,Self-employed,G0000\nOVERLAKE ANESTHESIA,,H1130\nGeneral Counsel,Grand Trunk Railroad,T5100\nSHAWMUT PRESS,,C1100\nARTS MANAGER,COLBUM FOUNDATION,Y4000\nLecturer,Otis College,H5100\nNON-PROFIT,LEARNING LEADERS,X4000\nINSURANCE,FARRIS AGENCY,Y4000\nHEALTH MARKETING MANAGEMENT,,Y4000\nDEPALMA HOTEL CORPORATION,,T9100\nDirector of Marketing,Virent Energy Systems,E1000\nChancellor,\"University of Michigan, Dearbo\",H5100\nVICE-PRESIDENT OF DE,KEISER COLLEGE,H5200\nEX. D,COMMUNITY BANKERS ASSOCIATION,F1000\nDR DAVID NARRAMORE,,Y4000\nRESEARCH PROJECT MANAGER,SELF-EMPLOYED,G0000\nPRESIDENT,PATRICK JUDICE FARMS INC,G1200\nFLETCHER OIL,,E1100\nBrokerage Manager,\"The Rosenthal Agency, Inc\",F3300\nPRESIDENT & CEO,BMAR & ASSOCIATES,G5200\nPUBLIC ADM,USDA,X3000\nPresident,Tribune Broadcasting,C2100\nMFG Mgr,GE Infrastructure,M2300\nNIXON & COMPANY INC,,F3100\nWeb Manager,Public Library Of Science,X4200\nARLINGTON PARK RACE TRAC,,Y4000\nBANKER,BLACKSTONE,Z9500\nFRONT PORCH,,G2900\nKATHY JOHNSON,JJ DESIGN GROUP,Y4000\nResidential Development,Gilco-Woodwell,Y4000\nSTEEL MFG ASSOCIATION,,M2100\nJOSEPH DANIEL,JOSEPH DANIEL,Y4000\nSelf employed,Jones Home Center,Y4000\nATLAS PALLET,,M4100\nAttorney,\"Zebersky & Payne, LLP\",K1100\nRetired,University Of Ok,H5100\nCHAIRMAN OF THE BOARD,HOME FEDERAL BANK,F1100\nAVALOTISPRINTING,,B3000\nFunctional Leader,GE Specialty Materials,M2300\nPRESIDENT,\"IVANHOE DESIGN, INC./PRESIDENT\",Y4000\nREAL ESTATE,ALAN C TOWNSEND REAL ESTATE,F4000\nCEO,LTS EDUCATION SYSTEMS,Y4000\n\"LEHRER, LLC\",,B4000\nDEAN AG. SCI.,TEXAS TECH UNIVERSITY,H5100\nAttorney,Dan LLC,Z9500\nEarly Childhood Specialist,Imagine!/Dayspring,Z9500\nBUSINESS OWNER,,J7120\nParalegal,\"Gifford, Lay & Steele\",Y4000\nPHARMACIST,ST. AGNES MEDICAL CENTER,H2000\nDIR INFO TECHNOLOGY,UST INC.,A1300\nChild Advocate / Administrator,Rhode Island Kids Count,Y4000\nManager,Adams Capital Management,F2500\nSR. VP-FOSSIL &,PPL GENERATION LLC,Y4000\nPsychologist,Bank Street College Of Education,H5100\nACCOUN,WEST VIRGINIA PAVING COMPANY,B3000\nATTORNEY,KALKINES ARKY ZALL,JD200\nSOFTWARE ENGINEER,URBANDADDY,Y4000\nDentist,Amarjit Singh Marwah,Y4000\nEXECUTIVE,PIONEER DESIGNS INC.,Y4000\nUNITED STATES WATER CO,,G5300\nATTORNEY,BARBER LAW GROUP,Y4000\nriver guide,Zephyr River Expeditions,J1200\nPRESIDENT OF PTL MANU,SELF-EMPLOYED,Y4000\nALEXANDER INS AGCY,,F3100\nReal Estate Agent,Skyline Properites INC,F4000\nPharmaceutical Product Development,\"Pozen, Inc\",Y4000\nSALEM FIVE CENTS,,Y4000\nPUBLISHER,LIBRE MAGAZINE,C1100\nOwner,\"Plymouth Plumbing, Inc\",B3400\nManager,Watermark Estate Management Services L,Y4000\nMORGAN CHASE INC,,Y4000\nTOXICOLOGICAL PATHOLOGIST,\"COVANCE, INC.\",H4500\nSELF-EMPLOYED/HOMEMAKER/EDUCATOR,,H5000\nMANAGER,SO CA LIGHTING,M6000\nEngineer,Gas & Oil Consultants,E1100\nCERTIFIED PUBLIC ACCOU,MACK ROBERTS,Y4000\nGRAOHOANALYST,,Y4000\nChairman/CEO,Clear Springs Food,Y4000\nPRESIDENT,WILSON HOTEL MANAGEMENT CO INC,T9100\nEXECUTIVE,ACCUCHEK INC.,Y4000\nAttorney,Smith Moor LLP,K1000\nConservationist,Iowa Audubon Society,Y4000\nANES MEDICAL GROUP,,H1710\nPresident,Temperature Control Logistics,Y4000\nNATL INSTITUTES OF HEALTH,,X3000\nM & P AIR COMPONENTS INC.,,Y4000\nATTOR,POWERS PYLE SUTTER & VERVILLE,K2000\nSpeaker,\"WallBuilders, LLC\",Y4000\nRN,UW HOSPITAL,Z9500\nVP Customer Development,Philip Morris USA Inc,A1300\nTPK CONSTRUCTION,,B1500\nPresident,E.M. Rahal & Company,K2000\nAMERICAN ROOFING CO,,B3000\nHARRIS TRUST AND SAVIN,,F1200\nMORTGAGE INVESTOR,SHORELINE FUNDING,Y4000\nLisenced Marriage And Fa,Self employed,Y4000\nAnalyst,Blackstone,F2600\nEVP,Valero Corporation,E1160\nCity Manager,Dewees Island Poa Inc,Y4000\nSHE AND HUSBAND RUN A,SELF-EMPLOYED,Y4000\nADCOCK DOZER WORK,,Y4000\nBOOKS ON THE SQUARE,,G4600\nPHARMACY REGIONAL VI,Rite Aid Corporation,G4900\nPRESIDENT,CENTER FOR COMMUNITY FUTURES,X4100\nEVP/CAO,CTT,Y4000\nPRESIDENT CONST CO,SELF,G0000\nAttorney,Wanderer Law,K1000\nExecutive,Soros Fund Managemen,F2700\nMarketing Research,Data Development Corp,Y4000\nOWNER,PIZZA PALACE BUFFET,Z9500\nCEO,PEPPER CONSTRUCTION,B1500\nUrologist,\"Charles W. Reynolds, M.D., PC\",H1130\nCO-CHAIR,NYSD,F2100\nDURHAM STAFFING INC,,Y4000\nRW STUCCO,,Y4000\nSILBERLINE MFG,,M2250\nEntertainer/ Musicia,self,G0000\nIDF CAPITAL,,E1150\nVICE PRESIDE,PINNACLE HOUSING GROUP,F4100\nADVERTISING,ADMENTO SPECIALITIES,Y4000\nPARTNER,WS DEVELOPMENT,F4100\nANDREW SANCHEZ ET,,Y4000\nCHAIRMAN & PRESIDENT,DANNENBAUM ENGINEERING CORPORA,B4000\nPolice Captain,Retired,X1200\nExecutive,JTL Group; Inc.,B2000\nFSSA,,Y4000\nBUSINESS OWNER,LARROL SUPPLY INC.,M2000\nLAWYER,MANION MCDONOUGH,Z9500\nEXECUTIVE,LONE PINE CONTRUCTION LLC,B1500\nMason,Stone and Webb Masonry,B3000\nCEO,TNET TECHNOLOGY,Y4000\nRetired Admin,Retired Administrator,X1200\nFUND RAISING MARKETING,,G5200\nCHIEF EXECUTIVE OFFICER,LOURDES SPECIALTY HOSPITAL OF SOUTHERN,H2100\nFlorist,Garden of Enchantment,Y4000\nKESSLER ASHER GROUP,,F2200\nBRITTHAVEN HILL INC,,H2200\nBULLOCK OIL CO,,E1100\nOWNER,BLUEGRASS DAIRY& FOODLLC,A2000\nCity Councilmember,City Of Berkeley,X3000\nPresident,Cal Strawberry Commission,Y4000\nARCHITECT,GANSEK INC.,B4200\nEXECUTIVE,MASONICARE,Y4000\nCEO,Westward Fishing Company,Y4000\nATTORNEY,\"THE WEBER FIRM, LLC\",Y4000\nPRESIDENT,SPECTRUM CONTROLS,C5000\nATTORNEY,WOJTALEWICZ & HOHMAN LAW FIRM/ATTOR,K1000\nATTORNEY,JIM ELLIS LAW FIRM,K1000\nPresident,Calamco,M1000\nDIRECTOR SUPPLIER DIVERSITY,BP AMERICA,E1110\nSENIOR VP AND GENERAL COUNSEL,GE CAPITAL,F1400\nEUREKA SAVINGS & LOAN,,F1200\nGASOLINE C STORE,,Y4000\nREAL ESTATE/CONSULTI,Self employed,G0000\nCEO,MICHIGAN MOTION PICTURE STUDIOS,Y4000\nConsulting Actuary,Coble Pension Group LLC,Y4000\nROSS CHIROPRACTIC,,H1500\nArt Consultant,\"Avila Fine Arts, LTD\",Y4000\nDENTIST,\"SHAWN LEE, DDS, PA\",Y4000\nATTO,\"GALLOWAY, WIEGERS & HEENEY, PA\",Y4000\nLAW OFFICES OF ROBERT GORE RIFKIND,,K1000\nPRESIDENT,RICHARD D. POOLE LLC,B0500\nPublicatons Director,Co-Op America,Y4000\nPresident,\"Rbc, Inc.\",Y4000\nAsset Manager,Horseshoe Management Co,J1200\nTeacher,Tempe Union High School,Y4000\nChief Executive Officer,View Point Bank,F1000\nMfg Exec,\"Periscope, Inc\",Y4000\nSurgeon,Aesthetic Center of Plastic Surgery,H1130\nExecutive-Board of D,Interface Group,T9000\nFLEISHMAN-HILLARD INC,,K2000\nPLAID BANKING,,Y4000\nVERON CLARK & ASSOCIATES,,K2000\nPartner,\"Freher's Poultry Farms\",A2300\nOWNER,DARIN BAHL EVENT DESIGN,Y4000\nATTORNEY,LAW OFFR. OF JUDITH A. W,K1000\nPublic Relations Directo,Chester County Intermedi,Y4000\n\"DIRECTOR, GLOBAL MFG SUPPORT-DIVISION\",EMERSON ELECTRIC CO.,M2000\nPresident,ASAE Services Inc,G0000\nCEO,Symantec,J1200\n\"SVP Int'l Affairs& Government\",United Technologies,D2000\nMILLINGTON INS AGENCY,,F3100\nREPRESENTATIVE,SALES,G0000\nAccoutant,Wineberg Solheim & Howell,F5100\nOWNER,DEPENDABLE CLEANING SERVICE,G5000\nEXECUTIVE,\"TEXACO, INC.\",E1110\nPharmacy Consultant,Nehalem Bay Pharmacy,H1750\nAttorney,Gifford Krass,Y4000\nVIACORE INC./ATTORNEY / EXECUTIVE,,K1000\nPHYSICIAN,NEWPORT ORTHOPEDIC INSTITUTE,H1000\nLUBIN & GANO,,Y4000\nPARTNER,WAGNER BROWN LTD.,Y4000\nOWNER,ALASKA EDUCATION AND BUSINESS,Y4000\nGoverment Service,U.S. GOVERMENT,X3000\nHUNTSVILLE SURGERY,,H1130\nBRINKERS MFG. JEWELERS,,G4600\nREGISTERED NURSE,\"MONTEFIORE MEDICAL CENTER, BRONX, N\",H2100\nUROLOGIST,\"BRUCE BERGER, MD\",H1130\nORTHOPAEDIC SURGEON,VALLEY BONE & JOINT CLINIC,H1130\nPOLITICAL CONSULTANT,COVE STRATEGIES,K2000\nHigher ed. administr,University of Pennsylvania,H5100\nDIRECTOR,BIODEFENSE CORPORATION,Y4000\nSales,Callmite Company,Y4000\nDistrict 5 Representative,State of Idaho,X3000\nRetail Executive,The Home Depot,G4500\nAQUILA INC,,E1620\nPARDUE & GRAHAM,,Y4000\nCONSULTANT,CHANGE PARTNERS INC,Y4000\nBookkeeper,Lamb and Carey,K1000\nPresident,Indiana Pacers,Y4000\nPRESIDENT & CEO,PERSONAL FINANCE COMPANY,Y4000\nHOMEBUILDER,DOSELL HOMES,H1130\nCHIEF BUSINESS OFFICER,\"GOOGLE, INC.\",C5140\nCHIEF FINANCIAL OFFICER,BERKLEE COLLEGE OF MUSIC,H5100\nST VOS MERCY HEALTH SYST,,H0000\nChief Operating Offi,\"Gold Coast Beverage Distributors, Inc.\",G2850\nMount Vernon Bank an,Banker,F1000\nBOOKKEEPER,KREMER PLBG. AND HTG.,B3400\nDEEP MINE SUPPLY,SELF-EMPLOYED,Y4000\nGEOLOGIST,SOLITARIO EXPLORATION & ROYALTY,Y4000\nPRESIDE,MEDICAL CLAIMS SERVICE INC.,J1100\npolicy analyst,the Urban Institute,X4000\n,\"UROLOGY ASSOCIATES OF ESSEX NORTH,\",H1130\nAccounting & Investments,Self employed,F7000\nengineer,Intel Corp,C5110\nSMALL BUSINESS OWNER AND MANAGER,SELF-EMPLOYED,G0000\nOWNER,SEDONA RACQUET CLUB & SPA,Y4000\nProgram Director,Public Health Institute,H0000\nUNION ORGANIZER,ALF-CIO (DM_AFL-CIO 663),Y4000\nAccountant,Borders Group,J1200\nVANGUARD/CEO/CHAIRMAN,,F2100\nTeacher,Carroll Community School District,X3500\nPROJECT MANAGER,ARGONNE NATIONAL LABORATORY,Z9500\nInvestment Banking,Deutsche Bank,F2300\nBUSINESS OWNER,BDGR INC.,T9300\nPhysician,BCM,H5150\nBusiness Rep.,Local 174,L5000\nJIM CARTER FORD,,T2300\nCO LEGISLATIVE DIRECTOR,ECPC,Y4000\nPhysician,IHS,Y4000\nPhysician,\"F. Gary Gieseke, M.D., PA\",H1100\nCOWQUEST OIL COMPANY,,E1100\nSALES MANAGER,\"GENENTECH, INC\",H4500\nCAPTA,HENDERSON CTY. SHERIFFS DEPT.,X3200\nBECHTEL GROUP,GENERAL COUNSEL,B1000\nPRESIDENT & CEO,HUSSEY COPPER,Y4000\nPHYSICAN,TEXAS ENT SPECIALISTS,Y4000\nOWNER,CELLA QUINN INVESTMENT SERVICES,Z9500\nVice President,\"Cedar Fair, L.P.\",J1100\nELDORADO ROCK INC,,Y4000\nATTORNEY,ELIZABETH BAUM PC.,Y4000\nVice President of Public Affairs,Noble Environmental Power,E1500\nATTORNEY,\"LEVENFELD, PEARLSTEIN, LLC\",K1000\nCEO,YOSEF AMZALAG SUPPLY,Y4000\nOKLAHOMA STATE REGENTS FOR HIGHER E,,Y4000\nnone,self,J1100\nPhysician,Trinity Mother Francis,H0000\nDELORASORN,,Y4000\nL BRUNOLI INC,,Y4000\nArmy Physician,Joseph Cheatham,Y4000\nSecretary,City & County of Honolulu,X3000\nCompany Pres,I Did Not Contribute Ove,Y4000\nSTEPHEN P MUNISTERY & ASSOCIATES,,Y4000\nCo-Founder & Principal,\"D&P Creative Strategies, LLC\",K2000\nILEX,,Y4000\nSVP Distribution,\"Lowe's Companies, Inc\",G4500\nMCNEELY STEPHENSON THOPY,,Y4000\nMANAGER,ALB/BLAIR ARCHITECTS,B4200\nCIVIC PHILANTHROPIST,N/A,Y4000\nSERTA MATRESS CO,,M4000\nUNITED WORLD CHINESE COMMERCIAL BK,,F1100\nVICE PRESIDENT OF HUMAN RESOURCES,COLORVISION INTERNATIONAL INC.,Y4000\nRetired,Georgetown University,X1200\nFinance,\"Autodesk, Inc\",C5120\nRETAILER,\"LAWRENCE COVELL, INC\",Y4000\nSUNBELT MOTIVATION A,,J7300\nFarmer,\"Flying A Ranch, Inc.\",A3000\nHOUSING INC,COLONIAL,Y4000\npresident,Phoenix Americas,Y4000\nSR. V.P.,AMERICAN SUPERCONDUCTOR,E1700\nPRESIDENT & CEO,\"PECO FOODS, INC.\",G2000\nACCOUNTANT,COCA-COLA COMPANY,G2600\nEXECUTIVE,SIX APART LTD.,C5120\nCHAIRM,SMITHERS SCIENTIFIC SERVICES,Y4000\nOwner,\"Gallaso Trucking, Inc\",T3100\nPHOTO JOURNALIST DESKTOP,,Y4000\nSales Manager,C.T.B.C.,Y4000\nAGRI-BUSINESS,COLUMBIA PEANUT CO.,A1600\nPRESIDENT,FIREFOX MANAGEMENT,Y4000\nSECRETARY,LUCKY MANUFACTURING CO.,Y4000\nPATTERSON KIEASE & GANLEY,,Y4000\nPhysical Therapy,Self,H1700\nRETIRED,DENVER PUBLIC SCHOOLS,X3500\nConsultant/Insurance Exec,isis Consulting inc,Y4000\nChairman and CEO,CBS Sports,C2100\nMAILHANDLER,USPS,L1500\nCU,CREDIT UNION 1,F1300\nORTHOPAEDIC SURGEON,BETH ISRAEL DEACONESS MEDICAL CENTE,H2100\nCeo,Texas Die Cast,M5000\nCIO,HARTFORD FINANCIAL SERVICES,F3100\nSPECAILIZED SUPPORT WORKER,HOWARDCENTER,Y4000\nPRESIDENT,PIONEER FUTURES,F2200\nSsa Admin Law Judge,Ssa,Y4000\n\"WOHLFORTH, ARGETSINGER & JOHNSON\",,K1000\nINVESTOR,MILKEN INSTITUTE,H5100\nCRIME PREV SECURITY SYS,,G5290\nBP Amoco consultant,New York Capitol Consultants,Y4000\nChemist,Texas Department of State Health Servi,X3000\nMEDIATOR/ARBITRATOR,SELF-EMPLOYED,J1200\nANESTHESIOLOGIST,MEDICAL ANESTHESIA CON. LLC,H1130\nVisual Resource Admn,SF State University,H5100\nLoan Officer,Cenlar FSB,F4600\nATTORNEY,DILWORTH PAXSON ET AL,K1000\nHOME FOR AGED PEOPLE IN F R,,Y4000\nExecutive,Keefe Group,Y4000\nMERCY HEALTH PLAN,,H0000\nExecutive,Gmac/Rescap,Y4000\nphysician,CancerVax Corp.,Y4000\nLOBBYIST,MVC,K2000\n\"DIMILLO'S\",,Y4000\nReal Estate Broker,\"THF Realty, Inc\",F4200\nMEDICAL PROFESSIONAL,,H0000\nNEW DIXIE FASTENERS,,Y4000\nNBC LAW DEPARTMENT,,C2300\nLAWYER,BARGER & WOLEN LLP,K1000\nCNM,AFC Nedizal,Y4000\nPresident/CEO,Haselwander Bros Inc,B2000\nBusiness Executive,Self,J1100\nRN,ST. JOSEPH HOSP,H1710\nPHYSICIAN,GEORGIA PERIOP CONSUL,H1130\nANDREW S PRICE ALTERNATIVE DISPUTE,,Y4000\nPARTNER,CONSUMER FINANCIAL SERVICES/PARTNER,F1400\nNURSE,DOCTORS HOSPITAL AT RENAISSANCE,H2100\nPRESIDENT,OHIO NATIONAL FINANCIAL SERVICES,X1200\nOwner,Workplace Technology,Y4000\nINFORMATION RE,INFORMATION RE,J1100\nOMEGA VENTURES,,Y4000\nOwner/Principal/Partner,Holmes Construction Co Inc,B2000\nQUALITY ELECTRIC PLATING CORP,,Y4000\nUnion Rep,AFT,Y4000\nInformation Requeste,Inspiration Corporation,Y4000\nWARNER FINANCIAL,,F4200\nAgent to Photographers,\"Jed Root, Inc\",G5200\nPartner,Open Door Builders LLC,Y4000\nREDONDO BEACH SCHOOL DISTRICT,,X3500\nROYAL BODY CARE,,Y4000\nJP MORGAN GUARANTY TRU,,F1100\nJIMMERSON DAVIS ET AL,,Y4000\nCONSULTANT,PROGRAM DEVELOPMENT INC,Y4000\nOWNE,PACKAGING RESEARCH & DESIGN CO,Y4000\nCEO,MONTANA PRIMARY CARE ASSN,Y4000\nATTORNEY,\"ORRICK, HERRINGTON\",Z9500\nPHYSICIAN,NYCARE EXPRESS,Y4000\nPENSION CLAIMS REP,SOCIAL SECURITY ADMINISTRATION,X3000\nWILLIAMS PARTY BOATS,,Y4000\nPresident,Von Suckow Trade Group Inc,Y4000\nCAMP ANDROSCOGGIN,,Y4000\nUNKNOWN,UNKNOWN,F1100\nJAZZ PRODUCER,SELF EMPLOYED,Y4000\nEXEC.,\"IDEASPHERE, INC.\",H4200\nPRODUCT LINE MANAGER,\"ARCHIBUS, INC.\",Y4000\nMAGUIRE & AS,STRAUSS,Y4000\nCORP. DIRECTOR,ROSE DISPLAYS LTD,Y4000\nOperations Manager - Long Star,DZMGS,B4000\nPartner/Real Estate Development,First Capital Group,F4100\nSALES ASSOC,LUDWIKOSKI & ASSOCIATES,M3600\nVice President,Barton Malow Company,B1000\nSenior Vice President,Marsh Risk & Insurance Services,F3100\n\"Market Director, Western Region\",Blue Cross of Northeastern PA,F3200\nRetired CEO,TMC Development Co,X1200\nUNIVERSAL LOCAL SVC,,Y4000\nCONSTRUCTION,N. W. FENCE,Y4000\nMarketing Executive,Full Life Products,J7400\nSTARWOOD CAPITAL,,G6500\nUnderground Utility Contractor,Self-Employed,Y4000\nOWNER,MAREVE PROPERTIES,F4000\nATTORNEY,LEATHERWOOD WALKER TODD & MANN,K1000\nTAX ACCOUNTANT,SEMPRA ENERGY,E1620\nElected Official,U.S. Congress,J5200\nCONSTRUCTION EQUIPME,MEAD EQUIPMENT INC.,Y4000\nIndependent Investor,Self employed,F7000\nPHILIP WILLIAMS ELECTRICAL CONTRACT,,Y4000\nOwner,Tatum Mfg. Co.,Y4000\nAccountant,Group Health,F3200\nOWNER,PAT MORAN OLDSMOBILE,T2300\nPRESIDENT,RENT-A-WHEEL,Y4000\nMADRIGAL TAX SERVICE,,F5300\nDeveloper,Self,T1400\nKELLY TRACTOR/RETIRED/EXECUTIVE,,A4200\nELECTRICAL ENGINEER,PRO VEW INC.,Y4000\nCEO,COLLIER ENTERPRISE,Y4000\nInvestor,Phillips Development Corp,B1500\nAttorney,\"Gallet, Dreyer & Berkey\",J1200\nART CONSULTANT,TAMERIN FINE ARTS,Y4000\nOptometrist,\"River Valley Eye Associates, Inc\",Y4000\nVice President,Milender White Construction Co,B0500\nHYMAN HENDLER & SONS,,Y4000\nHAROLD HUGHES CENTERS,,Y4000\nAMERICAN BAPTIST CU,,F1300\nUs House Of Reps/Rep. Capito/Schedu,,X3000\nRealtor,\"Interstate Properties, Inc\",F4000\nBRYANT ELECTRIC CO INC,,B1000\nSr VP R&d,United Technologies Corp,D2000\nEconomist,Inter American Development Bank,F1000\nMEDICAL DIRECTOR NICU,\"PEDIATRIX MEDICAL GROUP OF CALIFORNIA,\",H1130\nEXECUTIVE,REESE TELESERVICES. INC.,Y4000\nWHOLESALE WOOD SALES,,G4500\nTECHNOLOGY RESEARCH INTERNATION,,Y4000\nPRINCIPAL,DONALD ZUCKER CO.,F4200\nEXECUTIVE,ATLAS TOOL AND DIE,M5000\nPHILANTHROPIST,CONTRAN CORP.,J7400\nOwner,Rox Consulting Group,Y4000\nPORT BLAKELY,,A5000\nPROFESSOR OF CHEMISTRY AND BIOCHEMISTR,UW-MADISON/PROFESSOR OF CHEMISTRY A,H5100\nPEGASUS FOOD INC,,Y4000\nMANAGER,BANKERS LIFE CO.,Y4000\nInformation Requested Per Best Efforts,RAILWAY FREIGHT INDUSTRY,G3500\nTHE MARINA BAY COMPANY,,F4500\nCORPORATE EXECUTIVE,A.C.W. MANAGEMENT CORPORATION,Y4000\nTECHNICAL CONSULTANT,EXPANETS,Y4000\nCIVIL ENGINEER,\"MCCORMICK TAYLOR, INC.\",B4000\nSports Agent,Keith Glass & Assoc.,G6400\nBRS MOVING CO,,T3100\nJOHN E HACKELY ATTORNEY-AT-LAW,,K1000\nPhysician,Plastic Surgery Center PA,H1130\nAccountant,Hodges Transportation Inc,T0000\nNEWSPAPER PUBLISHER,American Publishing Co,C1100\nIT Architect II,CSX Technology,T5100\nCOORDINATOR,JURIS ABSTRACT CORP.,Y4000\nHotel Manager,Forever Resorts,Y4000\nNurse,St. Bernard Hospital,H2100\nVETERINA,AMBASSADOR ANIMAL HOSPITAL,A4500\nBuilder,Linde Development,Y4000\nBUSI,SUNBELT TELECOMMUNICATIONS INC,Y4000\nPartner,Howrey Simon Arnold Et Al,K1000\nPresident/CEO,Axela Government Relations,K2000\nCommerical Cattle Fe,Great Bend Feeders,A3300\nEngineer,Jc Steele and Sons Inc.,Y4000\nDIRECTOR,EXELON GENERATION,E1600\nVENCOR HOSPITAL,,H2100\nPRINTER,SPEAR U.S.A.,Y4000\nPHILLIPS ELECTRONICS,,C5000\nBETHESDA CARE SYSTEM,,Y4000\nCONSTRUCTION,RONALD HARPER,Y4000\nJ.B. MARTIN CO. INC.,,Y4000\nOwner,Kensington Park Apts.,Y4000\nOWNER,PEARL RIVER PLUMBING HEATING & ELECT,B3400\nManufacturer Rep,\"Sales Plus, Inc\",Y4000\nHARWOOD FL,SHEOGA HARDWOOD FLOORING,Y4000\nChairman,Estee Lauder Inc,M3300\nEXECUTIVE,\"DEVORE & SONS, INC.\",Y4000\nCoordinator,Shelton State Community College,H5100\nDirector,Soin International,G5270\nCEO OF HER HOME,NONE/CEO OF HER HOME,Y4000\nC E O,MAGHIELSE TOOL CORPORATION,M5100\nPresident,Old Farm House,A1000\nPhysician,Cardiovascular Group Pc,H1130\nDENTIST,WABAN DENTAL GROUP,Y4000\nSOCIAL WORKER,SHAKER HEIGHTS YOUTH CENTER,Y4000\nWAKEFIELD BEASLEY,,B4200\nBFC CONSTRUCTION CORP,,B1500\nWriter/Artist,Self employed,J1200\nBRUNOS AUTOMOTIVE INC.,DRIVER,J1100\nFOUNDER/OWNER,LUNCH FOR LEARNERS,Y4000\nMN TEAMSTERS SERVICE BUREAU,,LT300\nCHRONIC ZEAL INC,,Y4000\nChief Information Of,Oracle Corporation,Z9500\nJOHNSON-PRAVITT ASSOCIATES,,Y4000\nATTO,\"WINSTEAD, SECHREST, AND MINICK\",J5100\nREAL ESTATE,MPW PROPERTIES,J1110\nExecutive,Rr-Tci USA Inc.,Y4000\nCHIEF BUSINESS OFFICER,OREXIGEN,Y4000\nOURISMAN AUTOMOTIVE ENT,,T2300\nMANAGER,TEKNON,Y4000\nCPA,\"Rulien, Whitlock & Associates\",F5100\nVP,ATLANTIC BIOLOGICALS CORP,H4300\nOWNER,EL FENIX BAKERY,G2100\nOWNER,SOUTHERN STORAGE,T7200\nManager; District Sa,Northstar Marketing,F3100\nowner,\"Atwell Pecan Company, Inc.\",Y4000\nTown Council,Town of Wagener,Y4000\nKIRCHMAN OIL CORPORATION,,E1100\nGOVERN,\"W.L. GORE & ASSOCIATES, INC.\",M1000\nAttorney,Harlee and Bald,K1000\nTechnology,Secure Computing,Y4000\nATTORNEY,SEAVEY & SEAVEY,K1000\n\"GETCO, LLC\",GETCO Holding LLC,F2200\nAuto Care,Kleen Mist Car Wash,Y4000\n\"BAKKEN, FEIFAREK & T\",,K1000\nDGP-MILES INSURANCE,,Y4000\nCEO,Bluestem Holding L.P.,F4200\nES,US NAVY,Y4000\nExecutive Coach,GetacoachCom LLC,Y4000\nSoftwear Engineer,Ptc,Y4000\nElectrician,Local #3 I B EW,LC150\nREAL ESTATE,HARRIS REAL ESTATE INC.,F4000\nUsc,Professor,H5100\nOWNER,OAK RIDGE RESEARCH INSTITUTE,X3000\nAttorney And Writer,Robein Urann & Lurye,K1000\nAttorney,Kusak Roch LLP,Y4000\nBANKER,FAIRFIELD COUNTY BANK,F1000\nVP,LOVE FUNDING,H2200\nMedical Onc Phys Shareholder,\"Maryland Oncology Hematology, PA\",H1130\nVICE PRESIDE,PAR GOVERNMENT SYSTEMS,Y4000\nINTERIOR DESIGNER,CHASE ASSOCIATES LLC,Y4000\nSALES REP,,J1100\nPHYSICIAN,TOMAH VA MEDICAL CENTER,H1100\nPresident,Damsky Paper Company,J5100\nL&M BOTRUC,,T3100\n\"ADAMS, BAKER & DOYLE\",,Y4000\nConsultant,Quorum Public Affairs Inc.,J9000\nRISK MANAGER,CAMPANIA,Y4000\nAUTO COLLI,COLLISON & CLASSICS INC.,Y4000\nATTORNEY,ROLESHAR INVESTMENTS LTD,B1500\nGOVERNMENT AF,NATIONAL KIDNEY FOUND,JH100\nHEALTH SERVICES/INSTITUTIONS,WYETH,H4300\nATTORNEY,WYRSCH HOBBS & MIRAKIAN PC,K1000\nPRESIDENT,THE UNIVERSITY OF ALABAMA,H5100\nKRAMER LEVIN NARTALIS & FRANKEL,,K1000\nATTORNEY,\"PAUL, HANLEY, & HORLEY\",K1100\nDIAZ & ALTSCHUL CAPITAL,,Y4000\nRETIRED,INSTITUTE FOR STUDENT ACHIVMENT/RET,X4110\nCEO,ILS HEALTH,Y4000\nVP OF INTERNATIONAL SALES,SEXY HAIR CONCEPTS,Y4000\nOwner,Salon Sandoval,Y4000\nDIRECTOR OF GOVT RELATIONS,THE COCA-COLA COMPANY,G2600\nOWNER,GREENVIEW LANDSCAPING INC,B3600\nTRADER,GB TRADING,J2200\nCHICAGO MERCANTILE EXCHANGE-SELF-EM,,F2200\nPRESIDENT & DEALER,BUD EYRE CHEVY G.M.A. TOYOTA,T2300\nVINTER,PUMA SPRINGS VINEYARDS,G2820\nPARTNER,ECS,B1000\nBUSINESMAN,LUDECA INC.,M2300\nDisabled Veteran,On Dsi,Y4000\nAccountant,Agl Resources,E1140\nCONSULTING ENGINEERING,STRAND ASSOCIATES INC.,Y4000\nATTORNEY,TARRANT COUNTY TEXAS,Z9500\nHIGH SCHOOL TEACHER,JEFFERSON PARISH SCHOOL SYSTEM/HIGH,Y4000\nPRESIDE,MAY SHIP REPAIR CONTRACTING,T6100\nBusiness Owner,Tonex,Y4000\nDEPUTY CHIEF OF STAFF,EXPORT-IMPORT BANK,F1100\nOWNER,ZSCAPE LANDSCAPE,B3600\nPRESIDENT,\"ACCU-COUNTER TECH, INC.\",Y4000\nCEO / OWNER,TRAILBLAZER STUDIOS,Y4000\nOrthopaedic Surgeon,OMG Riverside CA,H1130\nCommunications,Federal Reserve Bank,X3000\nBookstore Owenr,Self employed,G0000\nCONSULTANT,FULL CIRCLE CONSULTING/CONSULTANT,Y4000\nCHIEF FINANCI,JETBLUE AIRWAYS CORP.,T1100\nPARKWAY INN INC,,T9000\nattorney,\"Jones Obenchain, LLP\",Y4000\nSales Manager,FTK Renovations,F4500\nRegistered Nurse,Sunrise Hopital,Y4000\nBOND SALE,\"JP MORGAN SECURITIES, INC\",J7500\nPRESIDENT,BAYSHORE RECYCLING CORPORATION,M2400\nPRESIDENT,JRK ASSET MANAGEMENT,F4000\nExecutive,Bae Systems,Z9500\nAH JOHNSON CO LLC,,Y4000\nBUSINESS EXECUTIVE,MODERN PARKING INC.,Y4000\nEASTERDAY TIRE & TIMBER COMPANY INC,,A5000\nElect. Tech.,Welding Services Inc,Y4000\nAttorney,Foster Pepper Pllc,Y4000\nVICE PRESIDENT,PICKER TECHNOLOGIES LLC,Y4000\nWINE IMP,\"JACK POUST & COMPANY, INC.\",Y4000\nKAPLAN AND COMPANY,,Y4000\nMANAGER,LAZRE KAPLAN,Y4000\n\"Supervising Attorney, Bankruptcy\",\"TROTT & TROTT, P.C.\",K1000\nCPA,MACCARONE GROUP,J7500\nEXECUTIVE,\"WOLF ORGANIZATION, INC.\",Z9500\nVP EXTERNAL AFF,XYPOINT CORPORATION,Y4000\nTeacher,Montgomery County Community Colleg,H5100\nCEO,Townsend Oil and Propane,E1100\nC.E.O,TRACE DIE CAST,M5000\nC.A. Marketing Inc.,,G5200\nChild Care,Dillards,G4300\nCollege Instructor,Johnson Co Community,Y4000\nHome Staging,Hanson Builders Inc.,Y4000\nCHIEF MARKETING OFFI,W.L.G.,Y4000\nExecutive,Student Loan Finance Assn,F1400\nNon-Profit Administrator,Prison University Project,Y4000\n\"CHILDREN'S RIGHTS\",,J7700\nCO-CEO,SAMSON,F7000\nCEO,ANITA BORG INSTITUTE,J7400\nADVOCATE,NONE,Y2000\nHEALTHCARE CEO,LOTUS FORUM INC.,Y4000\nN/A/NOT EMPLOYED,,J1200\nANDREWS PETROLEUM,,E1100\nInformation Requested,Guide Dogs for The Blind,Y4000\nRENTAL PROPERTIES,SELF-EMPLOYED,F4000\nAMY MADIGAN,,J1200\nATTORNEY,HONIGMAN,Z9500\nPresident & CEO,PBA Health,Y4000\nExecutive,Tishman Construction,F4500\nSENIOR FELLOW,ROOSEVELT INSTITUTE,J1200\nSoftware Dev,Enspira Solutions,Y4000\nTIMMONS & COMP INC,,K2000\nOWNER,\"CEW, INC\",Y4000\nWHITCO INDUSTRIES INC,,G5230\ncpa,Michael R. Bell & Company,Y4000\nREALTOR,\"CHARLES RUTENBERG REALTY, INC.\",J9000\nPresident,Midland Davis Corp,M2400\nSWISS BANK CORP,,F1100\nAdministrative Asst.,McAlpine Company,F4100\nAdministrative Assistant Organizer,BOEING COMMERCIAL AIRPLANE CO,LM100\nCFO,EATON VANCE,F2100\nAssociate Vp,Univ Of Az,H5100\nHOUSEWIFE,VOLUNTEER,Y1000\nSOFTWARE ENGINEER,SIMAGERY INC.,Y4000\nL,\"BUCKINGHAM, DOOLITTLE & BURROUGHS\",K1000\nCOLLINS ENTERPRISES INC,,Y4000\nBALCM & BINGHAM,,K1000\nATTORNEY,\"JACOBS & FERRARO, LLP\",K1000\nATTORNEY,POLESE PRETZSCH ET AL.,K1000\nVP,SANFORD-BURNHAM,Y4000\nST CHARLES COUNTY COMMUNITY COLLEGE,,H5100\nMANAGER,LEE WING REALTY,F4200\nPRES.,MORGAN & SLATES INC.,Y4000\nEXECUTIVE,LAKEVIEW PETROLEUM,Y4000\nSELF,,F5300\nPHYSICIAN,SELF,G0000\nOWNER,SINEXIS,Y4000\nREAL ESTATE BROKER,KORMAN & NG REAL ESTATE SERVICES,F4000\nCEO,NATIONAL COUNCIL OF LA RAZA/CEO,J7500\n,DAMON EXECUTIVE EVENT PLANNERS LLC,G5200\nREAL ESTATE DEVELOPER,KLEIN FINANCIAL CORPORATION,F4000\nAGENCY DIRECTOR,PHILA FIGHT,Y4000\nORTHOTIC & PROSTHETICS,\"SCOPE ORTHOTICS & PROSTHETICS, INC.\",H1130\nDoctor,\"Roberto Canales M.D., P. A.\",Y4000\nNONPROFIT EXECUTIVE,CIVIC RESULTS,Y4000\nCONSULTANT,ESSILOR LABORATORIES OF AMERIC,Y4000\nRegional Manager,Local Charm,Y4000\nPRESIDENT,\"SENSAMETRICS, INC.\",Y4000\nREGISTERED NURSE,GASTROINTESTINAL ASSOC.  P.A.,H1130\nREAL ESTATE BROKER,R.K.F. & ASSOCIATES,Y4000\nOWNER,SOUTHER MFG. & RESEARCH INC.,Y4000\nINTERIOR DESIGNER,\"M.L. BRAGA, L.L.C.\",G5000\nExecutive Vice Presi,M & I Bank,F1100\nMANAGER,L-3 COLEMAN AEROSPACE,D2000\nSEIDLER ARNETT & SPILLANE INC,,Y4000\nPHYSICIAN,SCOTT & WHITE TEMPLE TX.,H1100\nAMERICAN ANNUITY GROUP,,F3300\ntherapist,Park Center Inc.,Y4000\nOwner,\"Chenevert Architects, LLC\",B4200\nKITCHENS BROTHERS,,B5000\nANESTHESIOLO,PHYS SPECIAL IN ANESTH,H1130\nInvestor,Sandalwood Securities Inc,F4000\nPresident,\"Martin, Fisher, Thompson & Associates\",Y4000\nCEO,MARY KAY CORPORATION,M3300\nSLING MEDIA,,C5000\nVP,DAYBREAK EXPRESS,Y4000\nTHE WESTERN SIZZLER CORP,,Y4000\nPHYSIC,CROUSE RADIOLOGY ASSOCIATION,H1130\nATTORNEY,\"DOAN, RINGERS, MORGAN ET AL\",Y4000\nALLTIOLA PLASTICS CORP,,M1500\nCEO,PP OF CT,J7150\nPRESIDENT-SALES & DISTRIBUTION,AVIVA USA,F3300\nOWNER,MICHAEL BERNARD FARMS,A1000\nVICE PRESIDENT,HILL AND KNOWLTON,K2000\nA Z CHEVROLET,,T2300\nPhysician,Best Effort,H0000\nHEALTHINFUSION,,H3100\nINFO REQUESTED,DR FERNANDO ISART,Y4000\nComputer Sciences,Iptivia,Y4000\nCANDIDATE,,Y3000\nPRESIDENT,JOHN LLOYD FOUNDATION,X4100\nOWNER,ENERGY BEVERAGE MANAGEMENT,Y4000\nIOWA CAUCUS STAFF,,J1200\nNEVADA CHAPTER-AGC,,B1000\nYOUR HOME VISITING NURSE,,H3100\nDIVERSIFIED TECHNICAL SERVICES,,Y4000\nSSI,DISABLED,Y1000\nPARTNER,\"MAY, BONEE AND WALSH\",K1000\nPREMACO INC,,Y4000\nDEVELOPMENT OFFICER,SYMBION,H2100\nRUSSEL T BUNDY & ASSOC,,Y4000\nHAL JOHN INC,,Y4000\n\"Mediapolis, Inc.\",,Y4000\n\"DOCTOR'S ANATOMIC PATHOLOGY\",,H1130\nREAL,COLDWELL BANKER GROUP ONE REAL,F4200\nPresident,Western Corporate Federal Credit Union,F1300\nEnglish Instructor,Contra Costa Community College Distric,H5100\nManager,The Cable,Y4000\nPETROLEUM ENGINEER,GRIFFIN PETROLEUM COMPANY,E1100\nVETERANS SERVICE REP,VA,L1100\nATTO,\"BERNSTEIN, LIEBHARD & LIPSHITZ\",K1000\nPROJ,INDIANAPOLIS AIRPORT AUTHORITY,T1600\nAttorney/Director,Philadelphia Defenders Association,Y4000\nretired,xerox,M4200\nPrincipal,Insurance Designers,F3300\nStatistician,Jhpiego,J1200\nOwner,NYC Taxi Medallion,Y4000\nPRESIDENT,FAIRFIELD NATIONAL BANK,Y4000\nOWNER,DAVID TURCH AND ASSOCIATES,K2000\nCEO,Maricopa Integrated Health Systems,H0000\nFinance,W P Carey & Co LLC,F4000\nGATEHOUSE MANAGEMENT INC,,F4100\nOWNER,ORANGE & BLUE DISTRIBUTING,Y4000\nREALTOR,DOLAN REALTORS,Z9500\nDIRECTOR,ST EDWARDS CHURCH,X7000\nAUTHOR,SELF,J5100\nDPM,Sony Pictures Imageworks,C2400\nPRESIDENT,SULLIVAN & ASSOCIATES,K1000\nACCOUNT MANAGER,CHEROKEE TOBACCO,A1300\nunion campaigner,SEIU,J1200\nPRESIDENT,RITE-KEM INC,M1000\nPRESIDENT,SCHOLES ELEC.,Y4000\nINFO REQUESTED,CSR HYDRO CONDUIT CORPORATION,Y4000\nRADIO,GRAND ISLAND RADIOLOGY ASSOC.,H1130\nGraphic Designer,Actors Incorporated,J1200\nHACIENDA SAN ABREU,,Y4000\nEXEC,CARIBOU,G2900\nDIXIE EQUIPMENT COMPANY,,Y4000\nFINANCIAL PLANNER,REMINGTON ADVISORS INC.,Y4000\nConsultant,WRF,Z9500\nMANAGEMENT SERVICES,LEI,Y4000\nC.F.O.,\"BEYER FARMS, INC.\",A1000\nResidence Life,Butler University,H5100\nSHIPPING EXECUTIVE,ANDERS WILLIAMS & CO.,Y4000\nPRESIDENT,OXBOW CORPORATION,E1200\nMARTIAL ARTS IN,MARTIAL ARTS CENTER,Y4000\nCfo,Medical West Healthcare,Y4000\nSELF,SOUTHERN COMFORT ONE HOUR,Y4000\nRETIRED,CHUCK CRIBBS,Y4000\nPRESIDENT,\"HOSE FITTINGS, INC.\",Y4000\nPublisher,Asian Business Ventures Inc.,J1200\nI,\"TETON STRATEGIC INVESTMENTS, INC.\",F7000\nLawyer,\"Virtua Health, Inc\",J7400\nPRESIDENT,CAPITOL HILL STRATEGIES,K2000\nPresident,Community Savings Bank,F1100\nPresident/Chariman,Glenair,Y4000\nINVESTMENT,KIRKE FINANCIAL SERVICES,J1100\nAlderman,City of Oxford,X3000\nHEAD OF ACQU,JORDAN INDUSTRIES INC.,M2300\nPresident,WCCG,Y4000\nOwner,The Capitol Group,K2000\nPRESID,CNTRL COCA COLA BOTTLING CO.,Y4000\nCSX  RAILROAD MACHINE OPERATOR,CSX RAILROAD,T5100\nLOCKHEED MARTIN FED,,D2000\nAttorney,Hoogendoorn & Talbot,K1000\nCPA,Century Business Serv of N Ohio,Y4000\nFEDEX CORPORATION,,T7100\nNEWS AMERICA,,C2100\nMICHAEL M ESSMYER &,,Y4000\nATTORNEY,FARBER ROSEN @ KAUFMAN P.C./ATTORNE,Y4000\nPHYS,ONCOLOGY SPECIALISTS OF CHARLO,H1130\nCEO,EPIX.,H4500\nVp,Up Dimmitt Chevrolet,T2300\nCivil Service,State of Alaksa,X3000\nVp Of Data Management,Comdata,Y4000\nPARTNER,\"AFFOLTER, GANNON, AND ROSE\",Y4000\nCEO,Press Goneg Association,Y4000\nHOMESTEAD SAVINGS & LOAN ASSOC,,F1200\nINGENIOUS TECHNOLOGIES INC,,J7500\nPRESIDENT,MANNING SQUIRES HENNING,Y4000\nHOSP CEO,MAIMONIDES HOSPITAL,H2100\nATTORNEY,US Dept. of Justice,X3200\nMARKETING,BANK OF AMERICA,F1100\nUnknown,Titan Capital,F2100\nEXECUTIVE,LETCO,F0000\n\"Director, Government\",Stryker Corporation,H4100\nPAINTING  CONTRACTOR,\"COLIN FAIRWEATHER SONS, LLC\",Y4000\nExecutive,Viking Global Investors,F2700\nDirector,Everbody Wins,Y4000\nPRESIDENT &,DELSA ENTERPRISES INC.,Y4000\nDIRECTOR,CREDIT SUISSIE SECURITIES LLC,F2100\n\"SHIMMEL, HILL, BISHOP\",,K1000\nKESWICK MANAGEMENT,,F2100\nPresident/Owner,\"West International, Inc\",Y4000\nFT SANDERS ALLIANCE,,H2100\nERBAN PROPERTIES INC,,Y4000\nOWNER,AMERICAN CARPETS INC.,Y4000\nLawyer,Baer,Y4000\nWHW INVESTMENT MANAGEMENT LLC,,Y4000\n,BRINKERHOFF ENVIRONMENTAL SERVICES,E2000\nFinance Director,City of Riverside,J1100\nDiagnostic Radiologist,Radiology Associates of West Florida,H1130\nGRASSROOTS RESEARCH,,Y4000\nCONDON OIL COMPANY,,E1100\nBUILDER,GIBRALTAR MANAGEMENT CO,Y4000\nOWNER,KEN FAHN PROPERTIES,Y4000\nVP-Property Operations,\"AvalonBay Communities, Inc\",F4100\nCHIEF OF STAFF,STEVEN B HOPPING MD PC,Y4000\nNONE,AFFILIATIONS UNLIMITED,Y4000\nComputer Technician,CUNA Mutual,J7400\nPartner/ Public Affairs,The Dutko Group,K2000\nVP OPERATIONS & SALES,\"MOMENTO, INC.\",Y4000\nINDIAN GARDENS,,G4000\nBENOIT ALEXANDRA SINCLA,,Y4000\nCONSULTANT,H.F.C.B.,Y4000\nPROFESSOR,NJCU,Z9500\nSYSTEMS ANALYST,CINCINNATI ADDICTION RESEARCH CENTER,J7400\nVp; Administration,\"Pinnacle Western, Inc\",Y4000\nFINANCE,CHAPES,Y4000\nOWNER & SECRETARY-TRE,RECOURSE INC.,Y4000\nretired,UCLA (formerly),H5100\nADMI,THE WOODLANDS CHRISTIAN ACADEM,Y4000\nRETIRED NBC NEWS PRODUCER,RETIRED FROM NBC NEWS,X1200\nVice President,Paradigm Solutions,Y4000\nOWNER / PLUMBER,BONTRAGER SERVICES INC.,Y4000\nC,DEVON ENERGY PRODUCTION CO.. L.P.,E1150\nH J DEGENKOLB ASSOCIATES ENGINEERS,,B4000\nATTORNEY,\"PAULSON AND NACE, PLLC\",K1000\nATTORNEY,GENN & MURPHY LLC/ATTORNEY,K2000\nGOV RELATIONS,ALSTON & BIRD,K1000\nOwner/Principal/Part,Burton Homes,B2000\n\"CHAIRMAN, PRESIDENT & CEO\",\"CONSOLIDATED EDISON, INC.\",E1140\nAPPSTECH,,Y4000\nCOAL MINER,OHIO VALLEY MINING,E1210\nTODD-WADENA EC,,E1610\nPeace Coordinator,Kirkridge,Y4000\nANYTIME BAIL BONDS,,G5000\nGRADUATE STU,UNIVERSITY OF MICHIGAN,H5100\nINVESTMENT ADVISE,AUSTIN INVESTMENT,F2100\nDEAN BLAKELY & MOSKOWITZ,,K2000\nCEO,\"Zachry Holdings, Inc\",Y4000\nLawyer,Law Off Of James M R,K1000\nACTOR,,J7400\nLawyer,Decotis Fitzpatnick Cole of Wisdom,K1000\nGOVERNMENT AF,ST JOHN HEALTH SYSTEM,H0000\nInvestment Advisor,\"Weiss, Peck & Greer\",F2100\nEXECUTIVE DIRECTOR,PLYMOUTH CHURCH NEIGHBORHOOD FOUNDATIO,X7000\nSRS GROUP,,Y4000\nPROGRESS PAINT COMPANY,,M1600\nChief Diversity Officer,General Electric,Y4000\nCommunity Volunteer,Homemaker,X1200\nHIGH DESERT NEURO-DIAGNOSTIC MEDICA,,H1130\nEducator,Lambuth University,H5100\nGENE MOOS & ASSOCIATES,,K2000\nATTORN,CAPITOL STRATEGIES GROUP LLC,K2000\nMUNGER,,K1000\nV-TEN CAPITAL PARTNERS,,F2600\nPARTNER,BRACEWELL & GIULIANI LLP,K1000\nPENSACOLA COMP,,Y4000\nFAYETTE COUNTY EXECUTIVE,,X3100\nPHYSIC,STEINBERG DIAGNOSTIC IMAGING,Y4000\nArchitect,Merte Architects,B4200\nPEARSON AND PIPKIN IN,,Y4000\nPartner,Pequot Ventures,F2500\nACADEMIC/RESEARCH,NORTHWESTERN UNIV.,H5100\nPRESIDENT & CREATIVE DIRECTOR,CLARK CREATIVE GROUP,Y4000\nPAWN BROKER,\"EASY CASH CPC, INC.\",Y4000\nINSURANCE FINANCIAL,,F3100\nSENIO,AMERICAN FINANCIAL GROUP INC.,F3100\nOwner,\"William B. Ayyad, Inc.\",Y4000\nEXEC,YANKEE INST. FOR PUBLIC POLICY,Y4000\nLEWIS LIDE BRUCE POTTS,,Y4000\nRICHEY OPERATING,,E1150\nMONTAVIDEO PUBLIC SCHOOL,,X3500\nATTORNEY/PARTNER,\"TUCKER, ELLIS & WEST LLP\",K1000\nPRESIDENT,SOLAR SERVICE,Y4000\nVice President Human Resources,Bronson Healthcare Group Inc,H2100\nDIAMOND SAVINGS,,F1200\nCHAIRM,SUNQUEST INFORMATION SYSTEMS,Y4000\nAttorney,\"National Women's Law Center\",K1000\nVICE PRESIDENT,RYDER SYSTEM INC.,T3000\nSURGEON,ALLEGHENY HEALTH SERVICES,Y4000\nKY MAGISTRAT ASSOC,,Y4000\nATTORNEY,PAZER EPSTEIN & JAFFE,Y4000\nCLU,PRODUCERS FINANCIAL GROUP,F0000\nLAWYER,\"STOCKWELL, HARRIS, WOOLVERTON AND MEHE\",Z9500\nMATONICH & PERSSON,,Y4000\nPRESIDENT,WAD INC.,Y4000\nLaw School Administrator,Cornell University,H5100\nITEL CORPORATION,,JH100\nDv,Retired,Y4000\nMENDELSON ELECTRONICS,,F4200\nEngineer,Wightman and Associates Inc,Y4000\nArts/Education,Music Academy Of,Y4000\nResearch,New Vernon Assoc.,Y4000\nCENTER NATIONAL BANK,,F1100\nMARCO COMP,,Y4000\nFISHERIES INFO SERVICES,,Y4000\nGOVERNMENT AFFAIRS,\"THE GRESH GROUP, INC\",Y4000\nInformation Requested,IR,G5200\nEXECUTIVE VICE PRESIDENT,LANCASTER COLONY COMPANY,G2100\nVANPORT MANUFACTURING,,Y4000\nPresident and CEO,Delta Thermo Energy,E1000\nPRESIDENT,\"PEACOCK PRODUCTIONS, LTD\",Y4000\nExecutive,Lehman Bros. Holdings Inc.,F2100\nKOCH DEVELOPMENT CORP,,G6100\nChairman,\"Square Industries, Inc.\",F4000\nArt Dealer,Chalk & Vermilion Fine Arts,Y4000\nPHYSICIAN,PAIN SOLUTIONS TREATMENT CENTER,H1130\nINVESTMENT BANKER,BANK OF AMERICA MERRILL LYNCH,F2100\nSOFTWARE QA ENGINEER,LINKEDIN/SOFTWARE QA ENGINEER,C5140\nSMALL BUSINESS OWNER,STEARNS COMPANIES,Y4000\nCPA,ZINK & AMP; ASSOCIATES PC,Y4000\nPRESIDENT AND CEO,SUN PACIFIC ENERGY,E1000\nFARMER,SOUTHERN VALLEY FRUIT AND VEGETABLE,Y4000\nMECHANIC,CLASSIC VW,Y4000\nCEO,LEADING AGE OHIO/CEO,Y4000\nTHERMA-FLOW INC,,Y4000\nCAMERON M HARRIS CO,,F3100\nManager Mobile Home Park,Self employed,G0000\nFM RENTALL,,G5300\nBus Mechanic,Broward County Transit,Y4000\nQUILT CORNER,,Y4000\nMANAGING PARTNER,CAVANAGH HOYT & ASSOCIATES,Y4000\nOwner,Mgm Financial Group Incorporated,F0000\nPRESIDENT & CEO,WILLIAM F. RYAN COMMUNITY HEALTH NETWO,H2000\nCARTON SERVICE,,Y4000\nEXECUTIVE,CLEVELAND BROWNS,G6400\nPastry Chef,Self,G0000\nMEDICAL TRANSLATION,MERCEDES N RUDELLI MD LLC,Y4000\nCO-FOUNDER,SILVER LAKE PARTNERS,F2600\nPRESIDENT & CEO,DELTA DENTAL OF TENNESSEE/PRESIDENT,F3200\nRadio,K.K.B.S. F.M. 93,Y4000\nRetired,The Episcopal Church,X7000\nOWNER,SINCLAIR OIL COMPANY,E1100\nWUNDER DIEFERDERFER RYAN ET AL,,K2000\nAttorney,\"Dow, Lohnes & Albertson, Pllc\",K1000\nPRINCIPAL,Self-Employed,H5000\nROSSMAN BAUMBERGER REBOSO &,,K1100\nVice President Glbl Human Resources Se,AstraZeneca Pharmaceuticals LP,H4300\nOwner,Shapiro Investments,Y4000\nINSURANCE EXECUTIVE,STILB & ASSOCIATES,Y4000\nTHE DUKTO GROUP,,Y4000\nMARKETING EXECUTIVE,MORGAN STANLEY,F2300\nPATE LANDSCAPE CO INC,,B3600\nOWNER,STELTZNER WINERY,G2820\nMANAGEMENT ANALYS,DEPT. OF THE ARMY,X5000\nGEISINGER SYSTEMS SRVCS,,G5200\nAgency Owner,Allstate,F3100\nRETIRED BUSINESSMAN,RETIRED BUSINESSMAN,X1200\nSOCIAL WORKER,SELF,J7400\nNurse,FUMC,J1200\nHOME,JONES-WALDO HOLBROOK & MCDOUGH,Y4000\nATTORNEY,YOU SAID WHAT? LLC,Y4000\nDevelopment Officer,OSU Foundation,H5100\nDIRECTOR FED POL & GOV RELATIONS,MERCK SHARP & DOHME,H4300\nChief of Staff,State of New Jersey,X3000\nPresdient,Riverview Medical Center,H2100\nPRESIDENT &,AMERICAN LEASING CORP.,G5300\nlawyer,Morgan Lewis @ Bockius LLP,K1000\nDIAGNOSTIC,RADIOLOGY SPECIALISTS NW,H1130\nEXECUTIVE,MANSUR AND COMPANY,F4000\nREAL ESTATE,FORUM CAPITAL GROUP LLC,F0000\nVP COMMUNICAT,EVERGREEN ENERGY INC.,E1150\nADMINISTRATI,VALENTE AND ASSOCIATES,K2000\nTRANSPORTATION EXEC.,PROVIDE A RIDE,T4200\nPHYSICIAN,OKLAHOMA CITY COLLEGE OF MEDICINE,H1100\nREAL ESTATE BROKER,\"MID-AMERICA REAL ESTATE-WISC,/REAL\",F4200\nAntique Dealer,Self,G4600\nPROVIDENCE HEALTH,,Y4000\nCPA,CHANDLER & COMPANY,F5100\nFIELD SERVICE ENG.,\"DR SYSTEMS, INC\",Y4000\nCONSULTANT,MEHLMAN VOGEL CASTAGNETTI INC.,J9000\nCEO,MASSPORT,Y4000\nPROGRAMMER,BERKELEY HEARTLAB,Y4000\nFreelance Writer,Self employed,J7150\nREAL ESTATE INVESTOR,SOUTH AUSTIN PROPERTIES,F4000\nAMERICAN METAL DOOR,,M5000\nPATRIOT AMERICAN,,Y4000\n\"ST ANDREW'S EPISCOPAL CHURCH\",,X7000\nCEO,MSSS,Y4000\nExecutive Director,Carlbrook School,Y4000\nAttorney,Philips & Sweeney,K1000\nAttorney/Owner,Law Offices of David C. Thomas,K1000\nEntrepreneur,Self Employed,F2100\nINVESTMENT B,CIBC OPPENHEIMER CORP.,F2100\nReinsurance Broker,Willis Ltd,F3100\nASSISTANT,\"W. L. RICHEY, P.A.\",J6200\nOWNER/MANAGER,WARREN DRILLING CO. INC.,Y4000\nCEO,Evans Food Group,G2000\nMAIL CONTRACTOR,HIGHWAY CONTRACTORS INC,X3700\nWAIKIKI BUSINESS PLAZA,,Y4000\nceo,Keys Group,T1600\nBOARD MEMBER,FOODSHARE INC.,Y4000\nSAHARS HOTEL AND CASINO,,G6500\nBANKER,1ST SOURCE BANK,Y4000\nYORK COUNTY TITLE,,F4300\nRETIRED,\"NATIONAL DEMOCRATIC INSTITUTE FOR IN'T\",Y4000\nLEGISLATIVE DIRECTOR,POLSINELLI,K1000\nCCI,,F3100\nNEW HORIZONS,,F1200\nMANAGING PARTNER,\"LURIE BESIKOF LAPIDUS & COMPANY, LLP\",F5100\nBURGEMEISTER-BELL INC,,B1000\nUNIVERSITY PITTSBURGH MED CENTER,,H2100\nReal Estate,Re/Max Preferred partners,F4200\n\"O'BRIEN & CALLIO\",,K2000\nRetired,Oceanside Unified School District,X3500\n\"President, Owner\",Millisecond Software,C5120\nOffice,Ouachita Machine Works,Y4000\nC.F.R.,SELF-EMPLOYED,Y4000\nOwner,Phillipps & Tober,Y4000\nREAL ESTATE-INTERNATIONAL BUSINESS,,F4000\nAdjunct,Hawaii National Guard,Y4000\nInformation Management Consulting,Self employed,G5200\nCEO,UP HOME,Y4000\nOwner,Hayes Enterprise,Y4000\naccountant,Financial Reporting Advisors,F0000\nPartner,\"Diane Morris, LLP\",Y4000\nNRS CONSULTING ENGINEERS,OWNER,B4400\nPRESIDENT,KLEWIN BUILDING COMPANY,Y4000\nDIAZ-VERSON CAPITAL IN,,F2100\nSecretary,\"Slope Electric Cooperative, Inc\",E1610\nSecretary,Richfield Bus Company,Y4000\nPresident & Chief Op,Universal Studios,C2400\nSENIOR TRAINING SPECIALIST,EPSILON STSTCAN SOLUTIONS INC/SENIO,Y4000\nPROGRAM MANAGER,SOUTHERN SAWG,Y4000\nCONSULTANT,EDVISORS,Y4000\n\"SIEMON'S LAKEVIEW ESTA\",,J1100\nJ G WENTWORTH,,F1400\nCHAIRMAN,NEW PROSPECT,Y4000\nVICE PRESIDENT,M.P.R.,Y4000\n\"VP, FOOD/BEVERAGES & PROPERTY ADMIN.\",\"MGM GRAND, DETROIT\",G6500\nPARKSIDE UTILITY CO,,Y4000\n\"BLANK, ROME, COMISKY & MCCAULEY, LL\",,K1000\nPRESIDENT,\"AIPA PROPERTIES, LLC\",F4000\nJob Corps Instructor,IUPAT District Council 4,LB100\nCASEY CONCRETE,,B5100\nALBANY INTERNAL MEDICINE,,H1100\nPRESIDENT,BARROWS INS AGENCY INC,F3100\nPROFFITTSS INC,,G4300\nBiochemist,US Army,X5000\nAssistant Secetary,MA Exec Office of Energy/Enviro,J1200\nVITAL LEARNING/CHAIRMAN/C.E.O.,,H5200\nAide,Friends Of Green,Y4000\nDECA INTERNATIONAL,,A1100\nVT AIRGUARD,,X5000\nResearcher,AIR,Y4000\nKEYSTON COMMERCIAL REALTY,,F4200\nCO-CHAIRMAN,ASHER CHOCOLATES,G2200\nMANCHESTER WHOLESALE DISTRIB,,Y4000\nAttorney,Dept Of The Interior,X3000\nPRINTING MANAGER,VILLAGES DAILY SUN,F4100\nEXECUTIVE DIRECTOR,MASSACUSETTS TEACHERS ASSOCIATION,L1300\nSOFTWARE ENGINEER,FILEMAKER INC.,J7400\nWINNER HOLIDAYS,,Y4000\nCONSULTANT,GRAY-BOWEN & COMPANY,Y4000\nMERCANTILE PARTNER LP,,Y4000\nVP Human,Prudential Financial Resource,F3300\nPROFESSOR,CSPP/AIU,Y4000\nADVERTISING,HIGHTOWER AGENCY,Y4000\nMANAGER,GREEN SHEET INC,Y4000\nMANAGEMENT CONSULTANT,DBA,Y4000\nPROGRAM ADMINISTRATOR,UMOS,J9000\nTHE TRIARC COMPANIES,,G2900\nPRESIDENT,WHITLEY STEEL COMPANY,M2100\nOWNER,MEDICAL CENTER,H2000\nAsset Manager,Ariel Investments,F2100\nPATENT ATTORNEY,STOEL RIVES L.L.P.,K1000\nOFFICER,MSS TECHNOLOGIES INC.,Y4000\nOWNER,MCCLYMONDS TRUCKING,T3100\nIT,PHH CORPORATION,Y4000\nCOUNTY CLERK,KENT COUNTY,G5200\nINSURANCE AGENT,\"MORRIS INSURANCE AGENCY, INC.\",F3100\nChair,Duty Free Americas,G4000\nGENTEY CORPORATION,,M9100\nChief Judge,State of Illinois,X3000\nVET,LUNDQUIST AND ASSOCIATES/VET,Y4000\nLawyer,Wilson And Varner Ll,Y4000\nOwner,Bray & Singletary P.a.,Y4000\nPhysicist,Univ of Oklahoma,H5100\nRESTAURANTS,TWM MGMT. INC,Y4000\nPresident,\"Cosmedico Light, Inc.\",G5100\nSECURITY,SELF,J1200\nSELF-EMPLOYED/UTILITY/ EXCAVATING C,,B3600\nComputer Specialist,Us Treasury,X3000\nATTORNEY,BOSCHERT AND BOSCHERT,K1000\nPARTNER,ELLIOTT & SMITH,K1000\nHeal,Pleasant Bay Nursing and Rehab,Y4000\nMARKETING,BAXTER HEALTHCARE,H4100\nBoard Member,\"Namtor, Inc\",J5100\nDirector of Educatio,Telacu,F0000\nCONSULTING FORESTER,,A5000\nPresident and Chief Executive Officer,Northcrest Medical Center,H2100\nTechnical Analyst,St. Paul Travelers,J1200\nPGE,,E1620\nMarketing,\"Mailboards, Inc\",Y4000\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,CLEVELAND CLINIC HEALTH SYSTEM,H2100\nscientist,\"Brigham and Women's Hospital\",H2100\nCOO,URBAN OUTFITTERS,G4100\nPhysician,Prison Health Svc,Y4000\nVice President,Fibergate,D4000\nSTOCKBROKER,MORGAN KEEGAN & CO.,F2100\nAccountant,Carnaggio Accounting & Tax Service,F5100\nLIBERTY MARBLE INC,,Y4000\nUAB MEDICAL CTR,,H2100\nAttorney,Stoody Mills Et Al,K1000\nPHYSICIAN,CARDIOLOGY PC,H1130\nHR DIRECTOR,NORFOLK SOUTHERN CORP,T5100\nConsulting/Investmen,\"Francis Enterprises, Inc.\",G5200\nSUNTREE REATLY,,F4200\nReal Estate Executive,Northwood Investors LLC,F4100\nWETTERACE,,G2500\n\"2VP, Pol Affairs\",Travelers,F1100\nPRESIDENT,CENTRAL CONTRACTING INC.,B1000\n\"Vice President, COMP\",\"America's Community Bankers\",F1200\nADEXS INC,,Y4000\nPRESIDENT,BRIEFINGTON,C5140\nPOPPER SEGER & POPPER,,F5100\nVICE PRESIDENT - CORPORATE RESERVES,\"CHESAPEAKE OPERATING, INC.\",E1120\nPartner,Wakefield Properties,F4000\nGOVERNMENT RELATIONS,POLICY.COM,K2000\nARTIST,MEREDITH KNOX,Y4000\nSOCIAL WORKER,BROOKLINE CENTER,Y4000\nDIR - FIELD,SOUTHWEST AIRLINES CO.,T1100\nBRILIANTE DYING CO,,Y4000\nAttorney,Friedman & Stowell,K1000\nPhysician,Columbus Pathology PC,H1100\nVice President,MassMutual Financial Group,F0000\nMANAGING PARTNER,PALAMON CAPITAL PARTNERS,F2600\nCHIROPRACTOR,ALPHA HEALTH CENTER,Y4000\nBeverage Director,VThe Mooring Restaurant/NHC,G2900\nSTRATEGIC BUSINESS SERVICES INC,,Y4000\nCAPITAL PROJECT AD,HELMES & CO. LLC,Y4000\nREVEREND,,X7000\nCampaign Director,Sen Ben Cardin,Y4000\nFINANCE,ACC MANAGEMENT,F4100\nCOMPUTERS,VYKIN CORP,Y4000\nAUTOMOBILE DEALER,MOSSY NISSAN/AUTOMOBILE DEALER,T2310\nOccupational Health,\"Corp. Nurse, Inc.\",Y4000\nLEWIEX OIL & GAS CO INC,,E1100\nDealership Employee,Petro Nissan,T2300\nROBINS KAPLAN MILLER & CRIES,,K1000\nARH REGIONAL MEDICAL CENTER,,H2100\nLAWYER,SIMPSON THATCHER & BARTLETT,Z9500\nMARC ANTHONY,,Y4000\nEAST DIV,\"GRANITE CONSTRUCTION, INC.\",B1000\nATTORNEY,CARILLA BURNE,Y4000\nSeamtress,None retired,X1200\nOWNER,LAMONT DIGITAL SYSTEMS,Y4000\nAsset Manager,COLUMBUS METAIRIE PROPERTIES L.L.C.,F4000\nCorp VP,Allergan,H4300\nFINANCIAL ADVISOR,EDELMAN FINANCIAL SERVICES,F0000\nContractor,Neil Kelly Inc,C2000\nOWNER,\"NEW RISING SUN, INC.\",Y4000\nTRANER WERTNAM,,Y4000\nROGER WILLIAMS,,T2300\nCOLDWELL BANKER INC,,F4200\nWriter/Director,Self-Employed,C2400\nPARTNER,BROWN & MCDEVITT,Y4000\nOFFICE MANAGE,\"ARNOLD D. FAGIN, P.C.\",Y4000\nJLG INDUSTRIES,,Y4000\nCommercial Real Estate,Matan Realty Inc,F4200\nPRESIDENT,TELFORD MGT CORP,J6200\nBCBS,EXCELLUS,Y4000\nAttorney,\"Whiteman, Osterman & Hanna\",K1000\nEducator,New York University,H5100\nTECH SUPPORT,BLUEHOST,Y4000\nSALES,JELD-WEN WINDOWS & DOORS,M4000\nPARTNER PROVIDER HEALTH,,H0000\nAttorney,Kutak Rock,Z9500\nLIBHART & FERM,,K1000\nEXECUTIVE,\"FISHERING, SULT & CO.\",Y4000\nPresident,West Suburban Teachers Union,J1200\nVP,COLEMAN VAN LINES,Y4000\nLONESOME CEDAR FARM,,Y4000\nATTORNEY,WINER MEHEULA & DEVENS,K1000\nCEO,CACCI,Y4000\nADMINIS,COASTAL BEND SURGERY CENTER,Y4000\nCHAS GROCERY,,G2400\nENGLISH DRAWINGS DEALER,,Y4000\nPHYSICIA,ADULT & PEDIATRIC LUCOLOGY,H1130\nEnvironmental Specialist,Bonneville Power Administration DOE,X3000\nVice President,Nirvana Financial Solutions,F0000\nHomemaker,None,G2400\nMETRO BUSINESS COLLEGE,,H5200\nPRINCIPAL,AH ENTERTAINERS,G6100\nMD,NA,H1100\nATTORNEY,MITCHELL AND WEST,Y4000\nPUBLIC AFFAIRS,Potlatch,A5000\nPROGRAM DIRECTOR,MAYO CLINIC,H1130\nVice President Industry Affairs,\"Outrigger Enterprises Group, Inc\",T9100\nFINANCIAL SERVICES,BMO CAPITAL MARKETS,F0000\nPhysician,Edwin Bovill,Y4000\nHARBOR WHOLESALE GROCERS INC,,G2400\n\"FANNIE, INC\",,B4000\nOperations Manager,\"Service Oil & Gas, Inc\",E1000\nHUMAN RESOURCES M,DEWEY ELECTRONICS,D3000\nVice President,Air-city Inc.,Y4000\nC & F COMPANY INC,,Y4000\nCONTRIBUTOR,***,F3100\nST JOSEPH STATE HOSPITAL,,H2100\nATTORNEY,PROVOST UMPHRY,K1100\nORTHOPEDIC SURGEON,CENTRAL ORTHOPAEDICS/ORTHOPEDIC SUR,H1130\nAudit Director,Us Postal Service Oig,X3700\nPRESID,OKLA. MEDICAL RESEARCH FOUND,Y4000\nARCH,KENYON & ASSOCIATES ARCHITECTS,B4200\nAttorney/Farmer,Self-Employed,K1000\nMINISTER OF GOSPEL,,X7000\nCONTRACTOR,HISEY CONSTRUCTION,B1500\nPHILANTHROPY,SELF,X4110\nMILLENIUM PARTNERS LLC,,F4000\nENGINEER,E. M. A.,Y4000\nFAMILY LIFE FINANCIAL SERVICES,,L1500\nATTORNEY,BALLARD SPAHR ANDREWS AND INGERS,K1200\nPHARMACIST,SAFEWAY INC.,G2400\nSR. GOV AFFAIRS SPECIALIST,MVP HEALTH CARE,F3200\nHINES INTERESTS LTD PTR,,F4100\nLAWYER,SELF EMPLOYED,J7150\nBRYAN CANE LLP,,K1000\nPROFE,CENTER FOR DIAGNOSTIC IMAGING,H2000\nEXECUTIVE,NAESB,Z9500\nBELL CORP,,Y4000\nSKILES & REED,,Y4000\nDAVIS WRIGHT & TREMAINE LLP,,K1000\nMANAGEMENT,R.P. LUMBER,J1100\nWINDING SPECIALISTS CO INC,,Y4000\nCUSTOMER SERVICE DIRECTOR,BSC,B4400\nGOVERNMENT RELATIONS,CONTINENTAL RESOURCES,E1120\nPhysician,Fairfax Pathology Assoc,H1130\n\"DIRECTOR, ADUL\",CLARK COUNTY SCHOOLS,X3500\nGeneral Manager,Rodland Toyota Scion Inc,T2300\nPresident Ceo,Dayton Enterprises,Y4000\nEXECUTIVE,OLIN CORPORATION,M1000\nSELF EMP,,H4400\nPrivacy Professional,American Express,F1400\nINTERIOR DESIGN,STUART WALSTON INC.,Y4000\n\"EAR, NOSE & THROAT\",,H1130\nInformation Requeste,Reckson Associates,F4200\nManagement,Cambridge Engineering  Inc.,B4400\nMORGAN RUBY TETER ET AL,,K1000\nVolunteers Board Members,Security Service FCU,F1300\nInvestment Banker,Northstar Realty Finance Corp,F4200\nDeputy Administrative Director,State of Hawaii,X3000\n\"CAVARROCHI, RUSCIO, DENNIS ASSOCIAT\",,K2000\nInfo,na,Y4000\nRequested,Requested,E2000\nTrader,Wachovia,Z9500\nSelf Employed,Venture Cap.,E4200\nGALIHER DEROBERTIS NAKAMURA ONO TAK,,K1000\nMWS LAND CO,,Y4000\nWEST OREGON ELECTRIC CO-OP,,E1610\nORTHOPAEDIC SURGEON,AVERA MEDICAL ASSOC CLINIC,Y4000\nLawyer,Farer Fersko PA,Y4000\nPRESIDENT,PRECISION ABRASIVES INC.,Y4000\nOWNER,KINGHTSHEAD LAW FIRM,K1000\nFINANCIAL SECRETARY,SHEET METAL WORKERS LOCAL 28/FINANC,LB100\nCAZENOVE INC,,F2100\nPDK CONSTRUCTION,,B1500\nHealth care,Health Ez,H0000\nFINANCE,JWA FINANCIAL,Y4000\nATTORNEY,BINGHAM MCCUTCHMAN,K1000\nCEO and General Counsel,Denny Miller Associates,K2000\nTRADER,SELF EMPLOYED,F2000\nAVIDYNE,,B4400\nDIRECTOR,REID CONSULTING,Y4000\nExecutive Director,Excellence In Public Service,X3000\nSENIOR DIRECTOR,SUDDENLINK COMMUNICATIONS,C2200\nCEO,BISON ENERGY PARTNERS INC.,Y4000\nSENIOR VP - POWER OP,PROGRESS ENERGY,E1600\nMAYOR,MADISON COUNTY,X3000\nManagement,Cumberland Resources Corp.,E1200\nGeneral Manager,PSC,C4100\nOffensive Assistant,Broncos Football Club,G6400\nHOWELL MEDICAL CENTER,,H2100\nHERZFELD AND STERN,,J5100\nALPHA MEDICAL MGMT,,H3100\nPhysician,Austin Regional Clinic,Z9500\nUSAUTOMATIC SPRINKLER,,M2300\nOwner,Paul Gonzales Trucking,T3100\nCeo,Centrodela Familia D,Y4000\nANESTHESIOLOGIST,\"SHERIDAN HEALTHCARE, INC.\",H0000\nVP SALES,BAYER CORPORATION,H4300\nDirector of Federal,Bryan Cave & Associates,K1000\nProgram Manager,Mus-Oche,Y4000\nPsychiatrist,North Baltimore Center,H6000\nManagement Consultant,\"A T Kearney, Inc\",G5270\nSite Reliability Ninja,Google,C5140\nCONWAL INC,,Y4000\nDeveloper,Century Construction,B1500\nSenior Consultant,Knightsbridge Soluntions,Y4000\nVP CORP,CHARTER COMMUNICATIONS INC.,C2200\nPsychiatric Social W,Staten Island University,H5100\nExec.,Clover Stonnetta Farms,A1000\nCeo,\"Linkagene, Lp\",Y4000\nATTORNEY,PROSKAVER ROSE LLP,Y4000\nROBINSON ET AL,,K1000\nManager,Compac and Data Systems,Y4000\nExecutive,Park National Bank,F1100\nCHRISTIANIA LIMITED PARTNERSHI,,Y4000\nATTORNEY,\"FORCHELLI, CURTO, DEEGAN, SCHWARTZ, MI\",K1000\nSOUND DIRECTOR,,Y4000\nCOL BANK & TRUST,,F1100\nMarket Res,Mastercard,J1200\nRADIOLOGIST,MIDSOUTH IMAGING AND THERAPEUT,Y4000\nPRESIDENT/MANAGING DIRECTOR,SAGE ENERGY CO.,J2200\nMINIST,\"CHRIST'S CHURCH OF FTN HILLS\",X7000\nRet,Totally and Permanently Disabled Veter,Y4000\nVisiting Scholar,Duke University,H5100\nJG FUGG & CO INC,,F2500\nACCOUNTANT,SAUL ZAEUTZ COMPANY,Y4000\nPhysician,Family Practice Specialist,Y4000\nCARDIOLOGIST,LEXINGTON HEART SPECIALISTS,H1130\nTeacher,Lakeside High School,JE300\nTreasurer,\"Holding Company of the Villages, Inc.\",F1100\nMANICURIST,NAIL TEK,J5000\nPresident,The Magnon Companies,Y4000\nATLAS PEARLMAN TOP,,K1000\nFinancial Analyst,Financial Security Assurance,F3100\nDesigner,The Gap Co.,G4100\nVANCE M BROWN & SONS INC,,JE300\nPartner,Sternfels Realty,F4200\nSECRETARY,LUTHERAN CHURCH MISSOURI SYNOD,X7000\nLORICK OFFICE PRODUCTS,,M4000\nASIAN TECHNOLOGY INFORMATION P,,Y4000\nLAWRENCE & JOHNSEY,,Y4000\nMILITARY OFFICER,US GOVEERNMENT/MILITARY OFFICER,X3000\nS GETZLER SECURITIES INC,,F0000\nMANAGMENT,\"SEDANO'S\",Y4000\nSmall Business Executives,\"ACEH Capital, LLC\",F7000\nProfessor of Sociology,Whittier College,H5100\nOWNER,ENGLANDER CONTAINER & DISPLAY CO,M7000\nSAFETY AND OPERATIONAL RISK AUDITOR,BP,E1110\nSENIOR COMPUTER S,ADOBE SYSTEMS INC,C5120\nPresident,Wilcohess LLC,G2900\nDEALER,PARKER TOYOTA,T2300\nSCHOOL,PARAMUS CATHOLIC HIGH SCHOOL,H5100\nSALEM FIRE DEPT./FIRE FIGHTER / EMS,,L1400\nPRESIDENT,AIDMATRIX,Y4000\nCELL,SELF-EMPLOYED,G0000\nMARKETER,\"REX OIL COMPANY, INC.\",E1170\nVice President,Vance Publishing Corp.,C1100\nREAL ESTATE,LEARY MANAGEMENT GROUP,F4000\nManaging Director,K2 Advisors LLC,F2100\nM.A. PATOUT,,A1200\nMANAGER,ASHBY LUMBER,A5000\n\"DIR, GLOBAL COMMUNITY RELATION\",BAXTER INTERNATIONAL INC.,H4100\nUNEMPLOYED,VETERAN,X1200\nVillage president,Aroma Park,Y4000\nCEO,ASV BUS DIVISION,Y4000\nRAINE INC,,G1200\nWERE ASSOCIATES,,Y4000\nCEO,CORT FURNITURE RENTAL,M4100\nDANT CLAYTON CORPORATION,,M4100\nATTORNEY,\"PETER PERLMAN LAW OFFICES, PSC\",K1000\nBURKE MUSEUM U OF WASH,,X4200\nBUSINESS OWNER,UNVERSAL ENGINEERING SCIENCES,B4400\nMIDWAY DRILLING & PUMP,,G5000\nIRONHORSE LAND CO. LL,SELF-EMPLOYED,H4600\nexecutive,Nelnet Inc,F1410\nDIRECTOR OF SALES,ORACLE,C5120\nWRITER/ORCHESTRA MANAGER,SOLANO SYMPHONY,C2800\nProfessor,William Paterson Univers,H5100\nPROPERTY MANAGER,STONE MTN. HEIGHTS,Y4000\nCommissioner,\"Clay County, Missouri\",X3000\nCFO,National Heritage Academies,H5100\nARCHITECT,CORPLAN CORRECTIONS,F4000\nSheet-Metal Worker,Local #73,Z9500\nP,BUENA VISTA MOTION PICTURES GROUP,Y4000\nKATTEN MUCHIN ZAVIS WEIT,,K1000\nPresident,Landon Butler & Co.,F4000\nLILLLY RESEARCH LAB,,H4300\nEXECUTIVE VICE PRESIDENT OF HEALTH CAR,BLUE CROSS BLUE SHIELD OF MICHIGAN,F3200\nPT PUBLIC SPEAKER,,Y4000\nTreasurer,Blue Valley Telephone Company,C4100\nJ S ALBERICI CONSTR CO,,B1500\nATTORNEY,SULLIVAN & HILL,J1200\nHARRIS & HARRIS GROUP INC,,F3100\nMD,\"EYE SURGEONS ASSOCIATES, PC\",H1120\nRJR NABISCO INC,,G2100\nH.V.A.C. CONTRACTOR,THOMPSON MECHANICAL,Y4000\nCONSULTING ENGINEER,,F4000\nSVP SALES,\"CAREMARK, L.L.C\",G4900\nDIRECTOR,\"FIRST NATIONAL BANK, RIVER FALLS\",F1100\nAttorney,\"Wolf Block Schorr,\",K1000\ncourt commissioner,state of cal,X3000\nACADEMIC,YALE UNIVERSITY,H5100\nInvestor,Seba Ilich,Y4000\nPRESIDENT,MALLETT INC,B1000\nRECYCLE PAPER BOARD OF CLINTON,,M7100\nCEO,Union Concrete,B5100\nReal Estate Broker,Coldwell Banker Plaza Real Est,F4200\nCUNICO CORP,,Y4000\nCEO,OREGON HOME BUILDERS ASSOCIATION,B2000\nCPA,Actuarial Benefits & Design Company,F5100\nCLERGY,CROSSROADS PRESBYTERIAN CHURCH,X7000\nVANDHAM SECURITIES,,F2100\nPHYSICIAN,STAHL VISION INC,Y4000\nPROGRAMMER,ORACLE,JD200\nNAUS PAC,,J9000\nGlass Artist,Self-Employed,G0000\nFARMER,BARTON RANCH,A3000\nJOS BARNESS & SONS INC,,Y4000\nSoftware Engineer,Twosigma Investments,F2100\nCEO,Ohio Capital Corporation of Housing,F0000\nAdministrative Secre,Los Osos Community Services District,J1200\nVice President,Beaumont Health System,H2100\nOWNER,J.J. KATSOCK AND CO.,Y4000\nManager,Holiday Inn Express and Suite,T9100\nPRESIDENT,S.R. PERROTT INC.,Y4000\nBusiness Executive,The NPD Group,Z9500\nCEO,ARDEN REALITY,Y4000\nGINNER,SELF EMPLOYED,A1100\nPRINCIPAL,FLEISCHMAN FIELD RESEARCH,Y4000\nDIAGNOSTIC RADIOLOGIST,UNIVERSITY OF SOUTH ALABAMA,H1130\nHOMEMAKER,HOMEMAKER,B0500\nInvestment Management,\"Liberty Partners, L P\",J1200\nPHYSICIAN,\"MESILLA VALLEY ANESTHESIOLOGY, PC\",H1130\nREALTOR,COLDWELL BANKER TRIAD,Y4000\nSOLE PROPRIETOR,FRED REGALADO BAIL BONDS,G5000\nCHIEF OF STAFF,\"NEIGHBORHOOD CENTERS, INC\",Z9500\nPROPERTY MANAGEMENT,GELB GROUP/PROPERTY MANAGEMENT,F0000\nSTUDIO LOO,ELECTRONIC ARTS,T1400\n\"ST MARY'S MEDICAL CENTER\",,H2000\nENVIRONME,SOLID GROUND EVIRONMENTAL,Y4000\n-,ASPHALT PAVING ASSOC. OF WA,B5100\nTransportation Consultant,\"Short Elliott Hendrickson, Inc\",Y4000\nTravel Agent,Travel Incorporated,T9400\nEERS INTERNATIONAL INC,,Y4000\nLAWYER,\"LEONARD, STREET, AND DEINARD\",K1000\nOHIO HEART INC,,Y4000\nARCHITECT,ESOCOFF AND ASSOCIATES,Y4000\nAtty,\"Mintz, Levin\",K1000\nPARTNER,FINGER COMPANIES,Y4000\nCONSULTANT,VALLOTKARP CONSULTING LLC,Y4000\nINDEP,REXALL SHOWCASE INTERNATIONAL,Y4000\nTRAIL BLAZER TRUCK LINE INC,,T3100\nBUSINESS INVESTME,STRAUSS INTERESTS,J5100\nPHYSIC,ASSOCIATED PATHOLOGISTS S.C.,Z9500\nLOCHRIDGE CAPITAL,,Y4000\nMEDICAL,MEDCO,H4400\nINVESTOR RELATIONS,TRUST GROUP,F4600\nBartender,Farmhouse Tavern,J1200\nCEO,\"EM HOLDINGS, LLC\",Y4000\nSYLVA ENGINEERING COMPANY,,B4400\nGA PACIFIC CORP,,A5000\nSVP SALES AND,MADISON SQUARE GARDEN,G6400\nINFORMATION REQUESTED PER BEST EFF,INFORMATION REQUESTED PER BEST EFFORTS,H1100\nPresident,DCS Cleaning Service,Y4000\nUNIVERSITY OF DEFENSE,,H5100\nCHAIRMAN,ROCKINGHAM,Y4000\nAdmin Asst,Rockefeller Univ,Y4000\nPARTNER,TEW CARDENAR,K1000\nGENERAL MANAGER,RADER PROPERTIES,F4000\nSALES,\"JACK'S FURNITURE CENTER\",Y4000\nVice President,Human Resources (HRDI),Y4000\nPATHOLOGIS,MAWD PATHOLOGY GROUP INC,H1130\nOWNER,HOMETOWN RENT TO OWN,G5300\nJOHNSON SMITH & KNISLEY,,Y4000\nJ H BERRA CONSTRUCTION CO,,B1500\nPRESIDENT AND CEO,\"AB FOODS, LLC\",G2300\nPhysician,Hemotology Oncology Physicians,H1130\nCENTER FOR TRAINING & CAREERS,,H5000\nSchool Administrator,School of Visual Arts,H5100\nProfessor,\"Univ of California, Irvine\",H5100\nCONSULTANT,AXIOM STRATEGIES/CONSULTANT,G5260\nSENIOR VICE PRESIDENT-WEALTH MANAGEMEN,MORGAN STANLEY,F2300\nV.P. Business Develo,Cooper-Booth Wholesale Co.,G4300\nOPTOMET,WAKE FOREST FAMILY EYE CARE,H1120\nChairman,Benos Inc,J5100\nPresident,ME Council on Economic Education,Y4000\nREAL ESTATE,MECCA AVE COMMUNITY PARTNER,F4000\nVP Bus Devl,Spectra Energy Co,E1140\nB & J ELECTRIC,,B3200\nInvestment Advisor,Satellite Asset Mgmt LLP,F2100\nATTORNEY,THE RAMIREZ LAW FIRM; PLLC,J1200\nCAROLINA HAND SURGERY,,H1100\nFUTURES IN RECOVERY,,Y4000\nPresident,\"MARIC, Inc.\",F4000\nOUTDOOR SYSTEMS,,Y4000\nCEO,RIVER STEEL,Y4000\nPRESIDE,CULLEN CONSTRUCTION COMPANY,F2100\nEXECUTIVE,IPC,M7100\nSystem Administrator,\"Poplar Bluff Internet, Inc\",C5140\nSALES,CITY SEARCH,Y4000\nTV HOST,PLUM TV,C2100\naccountant,Isdaner & Co.,F5100\nPresident,Clean Energy Solutions,Y4000\nPrincipal,Someone Does Care,Y4000\nSENIOR VICE PRESIDENT,\"WAPITI ENERGY, LLC\",E1000\nSOUND MIXER,STUDIOS,Z9500\nPUBLIC HISTORIAN,SELF-EMPLOYED,G0000\nSOUTHERN HOME MEDICAL EQUIPMEN,,H0000\nPRESIDENT,UNIVISION NETWORK,C2300\nFLEXIBLE PLAN INVESTMENTS LTD,,F7000\nMONK REAL ESTATE SCHOOL,,H5200\nCO-FOUNDER,\"NEXTFUELS, INC./CO-FOUNDER\",E1500\nVice President,CAT Scale Company,T3100\nlawyer,Karr Tuttle Campbell,Y4000\nPrincipal,Astrum Solar,Y4000\nOFFICE MANAGER,DIVERSIFIED VALUATION GROUP,Y4000\nOwner,Ghazal & Associates,G5210\nACCOUNTANT,ZIEGLER TAVES & MARTIN L.L.P.,Y4000\nInsurance Agent,Bankers Life & Casualty Co.,F3300\nCOLLEGE LECTURER,UNIVERSTIY OF MICHIGAN- DEARBORN,H5100\nCEO,ARMSTRONG,C2200\nart dealer,\"Masterworks Fine Art, Inc.\",Y4000\nATTORNEY,BRENNAN STEIL LAW FIRM,K1000\nCONTROLLER,AIRTEK INC,Y4000\neducation,University of Iowa,Z9500\nCeo,Thunder Enterprises,F4100\nPALMIERI CO,,Y4000\nAttorney,The Simmons Cooper Firm,Y4000\nUS DEPT OF ENERGY,,J7400\nPresident,Hall Capital Management,F2100\nREAL ESTATE BROKER,NO FENCES LAND COMPANY,Y4000\nEcnomist,SAC Capital,F2700\nMORSETOWN CENTER,,Y4000\nPRESIDENT,MASA INC.,Y4000\nHOME BUILDER,\"DANNY SADLER, INC.\",Y4000\nPresident,Party Rental LTD,G5300\nInformation Requeste,Skadden ARPS Slate Meagher,K1000\n\"PRESIDENT, COMMERCIA\",LIBERTY MUTUAL,F3400\nOWNER,DANVERS,Y4000\nVICE PRESIDENT,SALISBURY ELECTRIC,B1000\nCo-Owner,Mr. Roof,B3000\nAGS2NC,,Y4000\nMARKETING CEO,PARAMOUNT COMMUNICATIONS INC.,Y4000\nPresident,Ebner Properties,F4000\nEMCO TECH CONSTRUCTION CORP,,B1500\nTHE DALEY CORPORATION,,Y4000\nERA JENSEN REALTY,,F4200\nOPERATIONS MANAGEMENT,THE SCOOTER STORE,H4100\nPROFESSOR,XAVIER U OF LOUISIANA,Z9500\nSHEEHAN PONTIAC GMC INC,,T2300\nPRESIDENT/CONSULTANT,ALLEN D. FREEMYER ESQ. PC,Y4000\nContractor,Starling Realty Inc,F4200\nCOASTAL EMPIRE PATHOLOGY,,H1100\nAttorney,DeYoe Heissenbuttel LLC,K1000\nProfessor,NYUMedical Center,J1200\nPRESIDENT,AJT & ASSOCIATES,Y4000\nPOPULATION COMMENCATE,,J1200\nPARAGON COFFEE TRADING COMPANY L.P.,,C2600\nPIPELINE CONTRACTOR,OTIS EASTERN SERVICE LLC,E1150\nVice President,National Rural Telecommunication Coope,E1610\nSENIOR VP,HOME BOX OFFICE INC.,C2200\nIONIAN TRANSPORT INC,,T0000\nFounder,Atrinea Health,Y4000\nATTORNEY,TOUBY & WOODWARD PA,Y4000\nPresident and Founder,The Energy Project,E1000\nCEO,ADVISOR PERSPECTIVES,Y4000\nSEMI RETIRED SINGER,SELF -EMPLOYED,F2200\nBANKER,MB FINANCIAL BANK,Y4000\nSURGEON,BRONSON HEALTHCARE GROUP,Y4000\nMERIDIAN DIAGNOSTICS,,H4300\nCHAIRMAN,AUTO NET T.V.,C2300\nVP Global Policy,Time Warner,C2000\nSLANE CO,,Y4000\nV.P. U.S.,KINROSS GOLD U.S.A. INC.,E1200\nPresidnet,Chicago Into-Face Gr,Y4000\nMIRANT AMERICAS INC.,,E1000\nEngineer,Sequa Chromalloy,T1300\nRAEFORD MILK INC,,A3100\nNATV,,C2100\nFT SANDERS REGIONAL MED,,Y4000\nATTORNEY AT LAW,\"O'NEIL & ATHY\",K2000\nPresident/CEO,US Investigations Services LLC,G5290\nSoftware Architect,\"Intellisoft, Inc\",Y4000\nlobbyist,McAllister & Quinn,K2000\nCONTRACTOR,,B3400\nMANAGER,AUGUSTA PRESSTECH/MANAGER,Y4000\nPHYSICIAN,HOWELL ALLEN CLINIC,Y4000\nSUNGLASS HUT,,G4600\nReal Estate,Gloria Nelson,Z9500\n\"house wife , lawyer\",self employed,K1000\n\"VP, Chief Creative Officer\",\"Tandus, Inc\",Y4000\nCONSULTANT,CIC ENTERPRISES,G5200\nMICHAEL LIGHTMAN CO,,Y4000\nSCITUATE CONC PIPE,,Y4000\nSenior Judge,State Of NevadA,X3000\nPresident,S & M Siding,G1200\nInvestor,Regis Management Co,Y4000\nPRESIDENT,THE CARRINGTON GROUP,Y4000\nTechnical Director,Foliage Software Systems,C5120\nEVP & CORPORATE SECRETARY,UNION PACIFIC CORPORATION,T5100\nTRANSPORTATION PLANNE,SELF-EMPLOYED,T0000\nRETIRED PROFESSOR,UVIV OF CA SANTA BARBARA,Y4000\n\"Vice President, Controller\",Firstrust Savings Bank,F1100\nDir of Finance,Davis Shapiro,Y4000\nPresident,\"Tanner Ballew & Maloof, Inc.\",F3100\nPHYSICIAN,FORT MONMOUTH,Y4000\nGREAT PLAINS ENERGY CORP.,,E1140\nVP DEPUTY GENERAL COUNSE,NESTLT USA,G2000\nCONNAUGHT LABS INC,,H4300\nPROGR,NORTHROP GRUMMAN SHIPBUILDING,D5000\nBROWNSTEIN HYATT FARBER AND SCHRECK,,K1000\nANALYST,CITIGROUP,F1100\nOWNER,EIS DATA SYSTEMS INC.,Y4000\nMATLOCK CAPITAL LLC,,F2600\nAttorney at Law,Wilkes Farr,Y4000\nART GALLERY DIRECTOR,GAGOSIAN GALLERY,G4600\nSoftware Engr,Softwise,C5120\nBANKER,EVERGREEN SAVINGS,F1200\nCOMPUTER PROGRAMMER,INTERNAL REVENUE SERVICE,X3000\nINVESTMENTS,ANDOR CAPITAL,F0000\nGeneral Manager,Speedcraft Chrysler Dodge,T2300\nCPA,Weiser LLP,Y4000\nOwner,Rehmann Realty,F4200\nRESORTS INTERNL,,G6500\nGENERAL SURGEON,RIVERWALK SUNGICAL SERVICES,Y4000\nVP,Delta Dental,G5200\nFINANCIAL,UBS,Z9500\nPRESIDENT,OHIO HOSPITAL ASSOCIATION,H2100\nVice Chairman - Administration & CFO,Engineered Support Systems Inc,D3000\nState Senator,Commonwealth of Kentucky,X3000\nMAINTENANCE W,IL SECRETARY OF STATE,Y4000\nPRESID,\"SHELL VALLEY COMPANIES, INC.\",Y4000\nSIGAL ENVIRONMENT,,Y4000\nSVP/Finance and Investor Relations,Fidelilty National Financial,F4300\nAttorney,PCT Government Relation,K2000\nKOZLOV SEATON ROMANINI BROOKS ET AL,,K1000\nAdmin,Moveable Feast Inc,Y4000\nOwner,Rayco Construction,B1500\nSEPACOR,,H4300\nNAT GRAIN TRADE COUNCIL,,A4300\nPRESIDENT,WENDPARK LLC,G2900\nSr Technical Analyst,New York Central Mutual Fire Insurance,F3100\nCHIEF EXECUTIVE,TERES HOLDINGS LLC,J7500\nCITY OF ANDERSON,,X3000\nGeneral Merchandising Manager,\"Lowe's Companies Inc\",G4500\nCASTLE BRANFORD,,Y4000\n,AKIN GUMP STRAUSS HAUER & FELD LLP,K2100\nVOLUNTEER BOO,\"HABITAT, AARP, ROTARY\",Y4000\nREGIONAL MANAGER,FIRST AMERICAN TITLE INSURANCE COMPANY,F4300\nAttorney,Breaux & Hornstein,K1000\npresident,advanced mfg technologies,Y4000\nGENERAL MANAGER,\"JASON'S INC.\",Y4000\nPREMIER COMMERCIAL,,Y4000\nPHYSICIAN,HOSP EMERG LIC PHYSICIANS,Y4000\nVAN STRUM & TOWNE INC,,Y4000\nGEOLOGIST,TERRA TECH ENTERPRISES,Y4000\nBusiness Owner,Resources Unlimited,J1200\nDONNA KARAN INC,,M3100\nPublic Affairs Consu,Self,J1200\nInsurance Agent,Marshall & Sterling,F5100\nARK NEPH SERVICES,,J1100\n.Information request,.Information Requested,F4000\nATTORNEY,\"KAY & MERKLE, LLP\",K1000\nPHYSICIAN,EMCARE,H1100\nRE,\"PENINSULA SOTHEBY'S INT'L REALTY\",F4200\nPROFESSOR,INDIANA UNIVERSITY SOUTH BEND,H5100\nPres,Sheraton Real Estate Mgmt. Inc,F4000\nTEACHER,SHADY HILL SCHOOL,Z9500\nPresident,Ubc,Y4000\nVICE P,\"CROWLEY LINER SERVICES, INC.\",T6200\nATTORNEY,\"KATTEN, MUCHIN, ZAVIS\",J5100\nCEO,NTC MARKETING INC,Y4000\nINVESTMENTS,KAYNE ANDERSON CAPITAL ADVISORS LP/,F2600\nSOUTH VALLEY ANESTHESIA,,H1130\nPrincipal,Meyer J&V Management,Y4000\nCAR DEALER,CRENWELGE MOTORS,T2300\nHealth Insurance Agent,\"Blue Ridge Benefit Soultions, Inc.\",F3200\nbuisness,self,J1200\nInformation Requeste,Johns Hopkins U,H5100\nManaging Partner,\"Beekman Advisors, Inc\",J7500\nATTORNEY,HERMAN HERMA KATZ & COTLAR,K1100\nDEAN,UNIVERSITY OF ROCHESTER,H5100\nINTERTECH CORPORATION,,J5100\nRFD Solutions Provider,ODIN Technologies,Y4000\nCHIEF OPERATING OFFI,THAYER CAPITAL,F2600\nSAIC,NSI,Y4000\nConsultant,Wheat Government Relations,K2000\nBORING SPECIALTIES,,Y4000\nINSURANC,KEENAN SUGGS BOWERS ELKINS,Y4000\nCOMMUNITY ACTIVIST,NONE,G5210\nCOORDINATE CAMPAIGN DIVISION,DNC,J1200\nSCHAEFER AND COMPANY,,Y4000\nAttorney,Higer Lichter and Givner,K1000\nLIVESTOCK WORKER,SELF EMPLOYED,Y4000\nPsychologist,L A U S D,X3500\nSHG INC,,B4200\nANALYST,CITY OF DALLAS,X3000\nVice President,HCSS,Z9500\nPROFESSNAL RCRTION,,Y4000\nPRESI,SHEET METAL WORKERS LOCAL 179,LB100\nParole Officer,State Of North Carolina,X3000\nCEO,Sake One,Y4000\nManaging Director,\"TA Associates, Inc.\",F2500\nTRANSPORTATION BROKER,SELF-EMPLOYED,Y4000\nMedical Scientist,Univ of Michigan,H5100\nRETZER ENTERPRISES,,Y4000\nProperty Rentals,Self-Employed,F4500\nATT,BEAUMONT TITLE COMPANY-DESHOTEL,T9100\nChaplain,Brown University,H5100\nCARLISLE RESTAURANTS,,G2900\nEDCO GAS STATION INC.,,E1170\n\"SR VICE PRESIDENT, LCA\",Microsoft,C5120\nRestaurant owner,self employed,G2900\nPRESI,AMERICAN FINANCE & INVESTMENT,F0000\nMANAGER,BECHTEL,Y4000\nCIVIL ENGINEER,CUNNINGHAM ENGINEERING,B4400\nPRESIDENT & CEO,\"LOGOS TECHNOLOGIES, INC./PRESIDENT\",C5130\nREAL ESTATE AGENT,COLDWELL BANKER TOWN & COUNTRY,Y4000\nREAL ESTATE SALES,COUNTRY LIVING,Y4000\nRETIRE,JUDGE AND FORMER CONGRESSMAN,X3200\nKVBC - CHANNEL 3,,C2100\nMEL SIMONS & ASSOCIATES,,F4100\nINSURANCE AND RISK MANAGERS,INSURANCE &AMP; RISK MANAGERS,Y4000\nBRH-GARVER,,B1000\nINSURANCE,PIONEER PACIFIC FINANCIAL,F3100\nLINO PRESS,,Y4000\nREGISTERED REPRESEN,BANK OF AMERICA,J2100\nPAPIK MOTORS INC,,T2300\nMETRO PEST COMPANY,,Y4000\nCLOUGH HARBOUR AND ASSOCIATES,,B4000\nINFO REQUESTED,Bush Gardens Tampa Bay,Y4000\nHON IND,,M4100\nGOLDMARK COMMERCIAL CORP,,Y4000\nDONALDSON LUFKIN JENRETEE,,F2100\nEXEC.,HARRIS COUNTY MEDICAL SOCIETY,Y4000\nGOTHAN SAND & STONE CORP,,B5100\nDirector Stragic Acc,Exact Sciences Corporation,Y4000\nPAULSON INVESTMENT,,F7000\nCHARLOTTE PIPE & FOUNDRY CO,,Y4000\nGALLION & GALLION,,Y4000\nOwner,Thomas Craig Construction Inc.,B1500\nVP SOFTWARE ENG,\"BROADCAST PIX, INC.\",C5120\nPresident,CL&P,E1600\nPRESIDENT,PALA GROUP INC.,Y4000\nPRESIDENT/BROKER,COLDWELL BANKER RESIDENTIAL RE,J9000\nRETIRED STATE GOVERNMENT,,X1200\nRN,Carefacts Information Systems,H1710\nTax Accountant,Starfire Holding Corp,Y4000\nAuctioneer,Dan Miller Auctions,G5000\nENGINEER,WESTERN,J1100\nPRESIDENT & CEO,\"INVERNED ASSOCIATES, LLC\",Y4000\nInsurance Broker,Northwestern Mutual Life,F3100\nAssociate General Co,United Technologies,D2000\nSenior Vice President,RBC Wealth Management,F2100\nSENIOR VP AND G,SCPIE HOLDINGS INC.,Y4000\nU S SENATOR JAMES INHOFE,,X3000\nOwner,River City Amusement,Y4000\nAttorney at Law,Goldberg & Simpson PSC,K1100\nWORDEN WILLIAMS,,Y4000\nDIOCESE OF PALM BEACH,,G2850\nINFO REQUESTED,Commercial Equiptment,Y4000\nDoctor,\"Institute For Thoracic Surgery, P.A.\",H1130\nExecutive,St.Charles Nissan/Mid America,T2310\nOWNER,REAL SOURCES,Y4000\nPHYSICIAN,AUSTIN ANES GRP,H1130\nLAND DEVE,\"BRIGHTON DEVELOPMENT, INC\",Y4000\ncomputer programmer,Aventail Inc,Y4000\nUrologist,University Urology,H1130\nOWNER,MOORS & ASSOCIATES,Y4000\nNAMTOR INC,,F2100\nPHYSICIAN,MANATEE MEMORIAL HOSPITAL,H2100\nPsychiatrist,Self employed,Z9500\nAGRICULTURE,MERCER RANCHES INC.,A3000\nNE VETERINARY HOSPITAL,,A4500\nEducation Board Memb,Michigan State Board Of Education,X3500\nSTATE REP.,MICHIGAN HOUSE OF,X3000\nCENTURY 21 LANDMARK PROPERTIES,,J1100\nOrthopaedic Surgeon,Mid TN Bone & Joint,H1130\nConsultant,The Bratize Group,Y4000\nPartner,Mini Storage of Tuscaloosa,T7200\nATHLETICS,LIFE UNIVERSITY,H5100\nPE BIOSYSTEMS,,H4500\nbusiness owner,R Houck Enterprises Inc,Y4000\n\"PRESIDENT, GOVERNMENT RELATIONS\",THE RUBIN GROUP,G5270\nSelf-Employed,Rally Inc,Y4000\nRAINBOW OILS,,E1100\nATTORNEY,WOLF BLOCK SCHOR AND SOLI-,K1000\nSpanish translator,Self employed,G0000\nRETIRED,NONE,M2400\nAttorney,\"Cox Communications, Inc\",J7300\nCA STATE ORIENTAL MEDICINE ASSN,,H0000\n\"MCCULLOUGH, CAMPBELL & LANE\",,K1000\nEGLIN AFB AERO CLUB,,Y4000\nMARKETING,COVIDIEN,H4100\nPresident,Solman Distributors,Y4000\nDirector,Valley Hospital,H2100\nAsst. Director,CA Primary Care Association,Y4000\nPRESIDENT,\"DIRECT-LINK HOLDING GROUP, LLC\",Y4000\nInfo,National c,Y4000\nOWNER,BFD MEDIA PLEDGE LLC,Y4000\nOwner,R.J.Smith Controll &Consulting Inc.,Y4000\nGuild Mortgage,,F4600\nMIDWIFE,ROCHESTER GENERAL HOSPITAL,H2100\nFounder,Microsoft Corp,C5120\nExecutive,Carlton Pools,Y4000\nChairman,Kilbourne Group,F2500\n\"VP, INTEGRATED TALENT MANAGEMENT\",COMCAST CORPORATION,C2200\nVice President Disti,Lifetime,C2200\nContractor,\"Miller Bonded, Inc.\",B3400\nMONTGOMERY BOARD ED,,X3500\nMARYLAND INS GROUP,,F3100\nPRESIDENT / C.E.O.,\"G.P.S., INC.\",Y4000\nLobbyist,Mannatt Phelps,Y4000\nSOERENS FORD INC,,T2300\nATTORNEY,THACKER BICKEL,Y4000\nPRESIDENT,JOSEPH DAVIS,Y4000\n\"WILMER, GUTLER, & PICKERING\",,K2000\nPHYSICIAN MD,,H1100\nNEUROSUR,EASTSIDE NEUROSURGERY P.C.,H1130\nCOIN-OP VENDING CO.,,G4850\nProofreader,Simpson Thacher and Bartlett,J1200\nINDEPENDENT INSURANCE AGENTS OF OK,,F3100\nACCOUNTING AND COMPUTING,,F5100\nIT/Systems,Hughes And Luce,J1200\nAccount Manager,Red Bull Distribution Company,Y4000\nBATES TECH COLLEG,,H5200\nSelf-Employed,Insurance,F3100\nFinancial Sales,Longview Financial,F0000\nPRES,GREATER SA CHAMBER OF COMMERCE,G1100\nattorney,Perlman & Associates,K1000\nVOLUNTEER,REPUBLICAN PARTY,Y4000\nJ H WARE TRUCKING INC,,T3100\nINVESTMENT MGMT,GOLDMAN SACHS & CO.,F2300\nPresident,\"Mail Processing Center, Inc.\",G5220\nSCRUTINY INC,,Y4000\nCOO,NUCOR CORPORATION,M2100\nADVERTISING,F&F PUBLISHING,C1100\nINSIGHT/MEDIA/DIRECTOR OF SALES,,Y4000\nTHE J P FLOYD MORTUARY,,G5400\nHOSPITAL ADMINIS,JPS HEALTH NETWORK,H2100\nROCHELLE LIVESTOCK CO,,A3000\nSOCIAL SCIENCE RESEARCHER,,X0000\nSURGEON,U. MARYLAND,Y4000\nPHYSICIAN,\"TRI-CITY NEUROLOGY, SC\",H1130\nDAVIS SHAPIRO & LEWIT,,K1000\nNEXDATA SOLUTIONS INC,,Y4000\nFENCE CONSTRUCTIO,SEEGARS FENCE CO.,Y4000\nSales Management,C.U.L.,Y4000\nEVENT PROMOTER,SELF EMPLOYED / SAME NAME,J1200\nHOSP,JOHN C. LINCOLN HEALTH NETWORK,J1200\nJULIAN J STUDLEY INC,,F4000\nPROJECT MANAG,CONSOLIDATED PLANNING,F5000\n30TH E DIVISION CONDOS,,F4000\nATTORNEY,KLUGER PERETZ,Z9500\nPRACTICE OF LAW,,Y4000\nHILTON REALTY CO OF PRINCETON,,F4200\nCONTROLLER,RICHLOOM FABRICS GROUP,M8000\nOwner,USE Use Solar Energy,E1500\nPhysician,\"People's Place\",Y4000\nCEO,GEOMETWATCH,Y4000\nSAN FRANCISCO BOTANICAL GARDEN SOCI,,Y4000\nDirector of Analysis,Positive Energy,E1000\nKY TRANSPORTATION CABINET,,T0000\nEXECUTIVE,MUTUAL SAVING BANK,F1200\npresident,Rado Mechanical Contractor,Y4000\nAdvisor,Dimensional Fund Advisors,F2100\nINTERNAL REVENUE SERVICE/AGENT/COMP,,X3000\nVideo Production,L H Production,Y4000\nPartner,Stuart R Whitehair P C,Y4000\nATTORNEY,EICHHORN & EICHHORN,K1000\nNACDS,,Y4000\nDIRECTOR,OHIO EDUCATIONAL CU INC,F1300\nVENTURE CAPITA,STERN JOINT VENTURES,F2100\ninterior designer,self,F4100\nTHE JONES COMPANY,,B2000\nOwner,The Sapetto Group,Y4000\nDAVID M BANET & ASSOCIATES,,Y4000\nBOOKKEEPER/CONTROLLE,SELF-EMPLOYED,F5500\n\"WINTHRIP, STIMSON, PUTMAN\",,K1000\nSVP CRM,DISNEY,C2000\nSECRETARY/TREASURER,\"FARMERS ELECTRIC CO-OP, INC.\",E1610\nCONTRACTOR,KM CONSTRUCTION,B1500\nR.P.H.,NATIONS MEDICINE,Y4000\nSW ENGINEER,SDS,B4400\nCHIEF FINANCIAL OFF,TECHONE CAPITAL,Y4000\nFINANCE,ATLAS MANAGEMENT GROUP,Y4000\nFinancial,Johnston Assoc.,F2500\nCONSULTANT,HART @ ASSOC,Y4000\n\"Vice President, Chief Engineer\",GE Energy,M2300\nFINANCE,EMORY UNIVERSITY HEALTHCARE,H0000\nCONSULTANT,THE NEW MEDIA FIRM,G5260\nOWNER,SDB COMPANY,Y4000\nENGINEER,QUALITY CONNECTOR SYSTEMS,Y4000\nOPUS CAPITAL PARTNERS L,,J5100\nPhilanthropist,Philanthropist,X4100\nEDUCATOR,AMERICAN INTERNATIONAL SCHOOL - CHENNA,Y4000\nATTORNEY,MONTGOMERY COUNTY,X3000\nSENIOR VICE PRESIDENT,FRUIT OF THE LOOM,Y4000\nWATER CONS,\"HOMEYER CONS. SERV, INC.\",Y4000\nOFFICE MANAGER,\"YOUNG INDEPENDENT CONSULTANTS, INC.\",Y4000\nLobbyist,John R Wyma & Assoc,K2000\nGeneral Manager,Tom Addis Dodge Inc,T2300\nGEO C HARNE ARCH,,Y4000\ngraphic designer,Harvard University,H5100\nOwner,McGavock Nissan,T2300\nCPA,\"PADGETT, STRATEMANN & CO., LLP\",F5100\nPRESIDENT & C,PENNZOIL QUAKER STATE,E1100\nOil Buyer,Valero Energy,E1160\nEXEC,CHILDRENS HOSPITL MEDICAL CENT,H2100\nCivil Engineer,Tutor Perini Corp,Y4000\nPHYSICIA,ZUTARL MEDICAL ASSOCIATION,Y4000\nPRESIDENT,TRUGREEN LANDCARE L.L.C.,Y4000\nALLIED BROS MFG CO,,Y4000\nEXEC. VICE PRESIDENT,THE WALT DISNEY COMPANY,C2000\nPRESIDENT,\"VICTOR GELB, INC.\",Y4000\nWORLDWIDE MANUFACTURING,,Y4000\nDYKEMA GOSSETT,,K2100\nBRUNNER CADILLAC,,T2300\nARTIST-RETIRED,SELF,X1200\nDealer,Jeff Wyler Automotive Family,T2310\nATTORNEY,COX & KELLER LLC,Y4000\nPRESIDENT,DAKOTA APPRAISAL & CONSULTING/PRESI,G1200\nSOUTHERN SCRAP COMPANY,OWNER,J1100\nJET EXPRESS INTERNATIO,,Y4000\nRegional Director,Hy-Lines Utilities Service Inc.,Y4000\nMAZDA,BILL COOK BUICK,T2300\nUP WITH PEOPLE,,J7400\nPRINCIPAL,CARR LYNCH & SANDELL,B4200\nATTORNEY,\"BEGAM, LEWIS, AND MARKS/ATTORNEY\",Y4000\nHESS ENERGY TRADING COMPANY,,E1600\nOwner,Unicuts Inc.,Y4000\nCHAIRMAN,TISHMAN CONSTRUCTION CORP.,JE300\nCO-OWNER,WILD GAME INNOVATIONS,E4200\nPresident,\"Queen's Health System\",H0000\nOperating Engineer,Prairie Materials,LB100\nUNION SPRINGS TRUCK & TRA,,Y4000\nDATA MARKETING INC,,Y4000\nOwner,D Contruction Inc,B1500\nOrthopaedic Surgeon,DuPont Hospital for Children,H1130\nPHYSICIA,BAY COUNTY MEDICAL SOCIETY,H1100\n\"tree farmer, writer\",self-employed,A5000\nPresident & CEO,Natbank NA,F1100\nGASTON ORTHOPEDIC CLINIC,,H1130\nPHYSICIAN,CONSULTANTS IN PAIN MEDICINE,Y4000\nNURSE EDUCATOR,GATEWAY COMMUNITY COLLEGE,H5100\nEXECUTIVE,\"BROWNFIELDS REMEDIATION, INC.\",E2000\nOwner,Van Scoyoc Associates,K2000\nElectrical Engineer,us Army Civil Service,X5000\nGeorgia State College of Law,,H5170\nCAHILL GORDON & REINDEL - RETIRED P,,K1000\nPresident,Winco Industries Inc,Y4000\nPresident,Super Enterprises,Y4000\nCROP INSURANCE AGENT,KING CROP INS. INC.,Y4000\nATTORNEY,APPERSON CRUMP & MAXWELL,K1000\nEDUCATOR,BCPSS,Y4000\nPHY,\"VETERAN'S HEALTH ADMINISTRATION\",Z9500\nCEO MOUNT,MOUNT SINAI HEALTH SYSTEM,H2000\nLawyer,Godfrey And Kuhn,K1000\nCADIOLOGY CONSULT,,H1130\nLINDSAY WILDLIFE MUSEUM,,X4200\nSCHWARTZ DISTRIBUTING LLC,,Y4000\nPoet,Self-Employed,J7400\nEXECUTIVE,LM SANDLER & SONS,J5100\nEL DORADO HOLDINGS,,J6200\nGUNNERSON & ASS,,Y4000\nCEO,ASTII ADVANCED SIMULATION TECHNOLOGY,Z9500\nInternational aid consultant,Self-employed,G0000\nENGINEER,ABI,J1100\nJOURNALIST,CONDE NAST PUBLICATIONS,C1100\nCEO,\"SCOPELY, INC.\",Y4000\nPRESIDENT,WEATHERSIN COMPANY INC.,Y4000\nATTORNEY,GAYLORD EYERMAN BRADLEY PC,K1000\nDAVCO,,J1200\nChief Executive Officer,\"E.D.F. RESOURCE CAPTAL, INC.\",F0000\nOfficer,Old North State Trust,F1200\nMANAGER,HARRIS FUNERAL HOME,G5400\nPHYSICIAN,UNIVERSITY OF CINCINNATI,H2100\nDIRECTOR,\"CITRIN COOPERMAN & CO, LLP\",F5100\nPHARMACIST,COASTAL DISCOUNT PHARMACY,G4900\nLOGISTICS,THE WILSON GROUP,Y4000\nCHAPLAIN,US NAVY,X5000\nCOTTON MER,HANDWERKER-WINBURNE INC.,A1100\nExecutive VP,Boich Companies,E1210\nLEGAL/DISASTER PLANN,\"TEXTRON, INC.\",T1200\nDIRECTOR OF THE BOARD,AMERICABLE INTERNATIONAL,Y4000\nBUSINESS OWNER,SVM CONSULTING INC.,Y4000\nINSURANCE SALES,\"WAXMAN, CAVNER, LAWSON\",Y4000\nVP CONSUMER LEN,FIFTH THIRD BANCORP,F1100\nLAW OFFICES OF CHARLES BLEK,,K1000\nAttorney,Knudson & McGreal P A,K1000\nManaging Director,High Maintance Captial,Y4000\nSENIOR VICE PRESIDENT - NATIONAL ADVER,\"DISCOVERY COMMUNICATIONS, INC.\",C2200\nGolf Pro,Gillena Golf Club,J1200\nPRESIDENT,\"BAGS, INC.\",Y4000\nBROKE,NATIONAL BROKERAGE ASSOCIATES,F3300\nENGINEER,BLANDFORD PARTNERSHIP,Y4000\nMAPLES & LOMAX P A,,K1000\nKnitting Shop Owner,Self employed,G0000\nATTORNEY,BATTLE FOWLER,Z9500\nDESK HEAD-SLS TRDG,CITIGROUP INC.,F1100\nINVESTMENTS,LNC,Y4000\nFINANCIAL EXECUTIVE,\"COMMSCOPE, INC.\",Y4000\nattorney,baum & blake,Y4000\nSVP HUMAN RESOURCES,TE CONNECTIVITY,C5000\nGRAND JUNCTION ORTHROPEDICS,,Y4000\nExecutive,Parrish & Chambers,K2000\nBUSINESS AND LAW,,F4500\nBOB CARVER CARS & TRUCKS,,T2300\nTRILOGY ASSET MANAGEMENT INC,,Y4000\nVICE PRE,GENERAL MOTORS CORPORATION,T2100\nEXECUTIVE ASSISTANT,MORANO GROUP,Y4000\nDIRECTOR OF CONST.,CLAIRES STORES INC.,G4100\nKING COUNTY CAMPAIGN MANAGER,KOSTER FOR CONGRESS - 2012,Y4000\nTRANSPORTATION,APM TERMINALS,Y4000\nC F O,DEB SHOPS INC.,Y4000\nFARMING & RETAIL OF P,SELF EMPLOYED,A1400\nSECRETARY & TREASURER,\"DUNGAN ENGINEERING, P.A.\",B4000\nMANAGER,CHICO ENTERPRISES,Z9500\nDoctor,CPTE Health Group,Y4000\nSCHROCK DEVETTER ARCHITECTS PA,,B4200\nSales,Aeropostale,J1200\nCFO,\"Zekeness, Inc\",Y4000\nPHYSICIAN,WILLIAM L. BERRY MD PA,Y4000\nPolice Officer,City of New York,X3000\nOWNER,OGRIN ASSOCIATES,J5100\nOwner,Brandon Steven Motors,Y4000\nCHIEF EXECUTI,F. GAVINA & SONS INC.,Y4000\nATTORNEY,IMPERIAL COUNTY  CA.,X3000\nBusiness Manager,Camp Moosilauke,Y4000\nELECTRONIC TECH,D.R.S. TECHNOLOGIES,D3000\nAccountant,Crowe Chizek,F5100\nHomemaker,,F7000\nAttorney,\"Dyer, Lawence, Penrose\",Y4000\nNA,retired,Z9500\nKELLY HART & HELLMAN,,K1000\nOFFICE MANAGER,BROTHERS BOATS,Z9500\nphysician,\"Merck & Co., Inc.\",J1200\nOperations Manager,\"808 Post & Production, Inc\",Y4000\nACCURATE CASTING,,M2300\nCARLISLE SCHOOL,,H5100\nBranch Manager,\"Primelending, A Plainscapital Company\",Y4000\nTALLAHASSEE REGIONAL MEM MED CENTER,,H2100\nDIRECTOR OF OPERATIO,AMERICAN MEDICAL RESPONSE,H3000\nstaff Attorney,American Civil Liberties Union,J9000\nLAWYER,\"HYMAN, PHELPS & MCNAMARA, P.C.\",Z9500\nReal Estate Agent,MTB Development,Y4000\nCAF? OWNER,SELF-EMPLOYED,J6200\nPRESIDENT,BUYERS REALTY INC.,F4200\nFUNERAL DIRECTOR,RUCK FUNERAL HOMES,G5400\nExecutive V.P.,J.W. Terrill,Y4000\nPresident,Hazlitt 1852 Vineyards,G2820\nATTORN,HAYNSWORTH SINKLER BOYD P.A.,K1000\nTWIN BROOKS,,G6100\nData Architect,Democratic National Comittee,Z9500\nLAND DEVELOPER,DOUBLE DIAMOND,F4100\nEXECUTI,BASIN FERTILIZER & CHEM CO.,A4100\nCHEMFIRST FINE CHEMICALS,,M1000\nJONES ENGLER HILL ROBBINS ASC,,H1100\nColon and Rectal Surgeon,Self Employed,H1130\nDEL CLEGG JR,,Y4000\nBUSINESS OWNER,\"HADLEY OFFICE PRODUCTS, INC\",Y4000\nPresident,Bruce Strumpf,Y4000\nFAIRLANE MEMORIAL CONVALESCENT HOM,,Y4000\nATTORNEY,Vella and Lund,K1000\nPHYSICIAN,\"CARDIOLOGY ASSOCIATES OF NEW HAVEN,\",H1130\nEngineer,Fitsense,J1200\nATT,MYRON M. CHERRY ATTORNEY AT LAW,K1000\nOWNER,FARMERS INSURANCE OFFICE,F3100\nRETIRED CONSULTANTS,,X1200\nPRESIDENT & C.E.O.,PINELLAS REALTOR ORGANIZATION/PRESI,J9000\nBUSINESS MANA,CLAUSNITZER DENTISTRY,H1400\nINVESTMENT MANAGER,U.S. TRUST COMPANY OF NEW YORK,Y4000\nPARTNER,\"RUSSELL & BARRON, INC.\",K2000\nPART,BLACKSTREET CAPITAL MANAGEMENT,F2100\nNORTHLAND CORP,,F3100\nREAL ESTATE INVESTOR,BAYWEST CO.,F4000\nPROPERTY MANAGEM,\"MED-MAC PROP, INC.\",Y4000\nIllustrator,Department Of Veterans Affairs,X3000\nOWNER,HERNDON MOBIL,E1170\nHOMEMAKER,HOMEMAKER/HOMEMAKER,F2500\nATTOR,LEWIS DAVIDSON & HETHERINGTON,J5100\nREAL ESTATE,CB RICHARD ELLIS INC,F4000\nPREFERRED SECURITY,,Y4000\nCHIEF OF STAFF,UNITED STATES SENATOR KENT CONRAD,X3000\nVENTURE,PIEPERTOIRE CAPITOL VENTURE,F2500\nSALES REPRESENTATIVE,E.M.C. CORPORATION,C5130\nAttorney,Elliot & Mayock,J9000\nVice President and S,GE Corporate,Z9500\nCHIEF FINANCE OFFICER,MIDWEST ATC INC.,Y4000\nMANAGEMENT CONSU,\"LANTANA APTS, INC.\",Y4000\nTHE ROMANO REALTY COMPANY,,F4200\nConsultant,C. Mora & Associates,F1300\nWHI INC,,Y4000\nSTAFFING PLUS INC,,G5250\nBroker Assistant,Prudential,F4200\nNATL. TRAVEL AGENCY,SELF,Y4000\n\"ATTORNEY, CONSULTANT\",HDR ENGINEERING,B4400\nAttorney,Obermayer Rebmann Maxwell Hippel,K1000\nMANAGEMENT CONSULTANT,DALBERG,Y4000\nPRESIDENT,DELTRON ENGINEERING,B4400\nSALES AND BUSINESS DEVELOPMENT EXECUTI,TERMINIX INTERNATIONAL,G5700\nEXECUTIVE,ISAACSON STRUCTURAL STEEL,M2100\nProfessor/writer,Barnard College,H5100\nCTO,STAMPS.COM/CTO,J1200\nMARSHALL SALON SERVICES/PRESIDENT/,,Y4000\nPRESIDENT & COO,PETER G PETERSON FOUNDATION,F4100\nDIAGNOSTIC RADIOLOGY,Self,H1100\nBricklayer,International Union of Bricklayers,LB100\nAUTOMOBILE DEA,KEN DIXON AUTOMOTIVE,T2000\nPetroleum Marketer,Wood Petroleum/Tri Lakes Petr.,E1170\nVICE PRESIDENT,DELANEY CHEVROLET INC.,T2300\nVANDALIA ENTERTAINMENT INC,,Y4000\nENVIRNMENTAL E,CODE 3 INCORPORATION,Y4000\nVP of Operations,Encompass Communications,Y4000\nEngineer,Universal Ensco,Y4000\nChair,\"Blaylock & Partners, L.P.\",J7400\nCHIEF OF OPERATIONS,CROWN ASSOCIATES,Y4000\nAUTOMOBILE D,DOENGES - BARTLESVILLE,T2300\nREALTOR,\"COUNSELOR REATLY, INC\",J9000\nGAS MASTERS,SELF,Y4000\nSELF-EMPLOYED/FASHION WRITER/STYLIS,,G5100\nDEALER,LYNN CHEVROLET BUICK INC,T2300\nVICE PRESIDENT,KINDRIED,H2100\nNATIONAL FOREST PRODUCTS ASSOC,,A5000\nAdministator,University of California,H5100\nSTANISLAUS COUNTY,STANISLAUS COUNTY,X3000\nELEC,\"ZACK CICCONE ENGINEERING, INC.\",B4400\nSales,BD Sales,Y4000\nST CLAIR BOWL & BEL-AIR,,G6100\nVP,NUAIRE INC.,Y4000\nCertified Public Accountant,\"Sterling & Company, PC\",Y4000\nPresident,VA Wine of the Month Club,Y4000\nACCOUNTANT,HALLMAN & LORBER,F5100\nPRIVATE,SELECT INVESTIGATIONS INC.,G5290\nSENIOR,DOW LOHNES & ALBERTSON PLLC,K1000\nRETIRED PROFESSOR,\"UNIV CALIF, DAVIS\",Z9500\nPRESIDENT & C,ORMES CAPITAL MARKETS,F2300\nPresident and CEO,Detials International,J7400\nPrincipal,The Parkway School,Y4000\nExp Vp,Metronorth Rr,G0000\nCEO,CONCORD COMPANIES INC.,Y4000\nFilmmaker,None,C2400\n\"Chief of Staff, Dranesville District S\",Fairfax County VA Board of Supervisors,J1200\nAssociate Professor,University of Wyoming,H5100\nPresident,\"Dennis R Martin, Attorney At Law\",K1000\nPROJ,BARR ROSENBERG RESEARCH CENTER,J1200\nVICE PRESIDENT,PURDUE PHARMA L. P.,H4300\nSELF-EMPLOYED; CURRENT CONTRACT: H&,,G0000\nPresident,Universal Metal Products Inc.,M5000\n\"MGR., RESEARCH DATA\",KAISER PERMANENTE HAWAII,Y4000\nOwner,MVT Services LLC,Y4000\nPoet/writer,Not employed,X0000\nSOUTHWESTERN WIRE,,M5000\nREAL ESTATE,PROVENTURE REAL ESTATE,F4000\nEXE,FISHER SCIENTIFIC INTERNATIONAL,M9000\nTEACHER,LOND STAR COLLEGE,J1100\nDELSON LUMBER,,A5000\nPresident,Grotto Pizza Inc,G2900\nACCOUNTANT,EXPEDITORS INTL.,T7000\nPhysician,Lynchburg Anesthesia Associate,H1130\nRETIRED-SELF EMPLOYED,SELF,Z9500\nElectrical Contracto,Daly Electric Inc.,B3200\nMarketing,Bazz Houston Co,Y4000\nOwner,Pacific West Health Medical Manage.,Y4000\nManager,Amerifresh,Y4000\nVSDHHS,,Y4000\nANESTHESIOLOGIST,\"ANESTHESIA ASSOCIATES OF CLARK CO.,INC\",H1130\nMASON CORP,,Y4000\nSEBASTIAN COUNTY PUBLIC DEFENDERS O,,X3200\nCOLUMBIA HUNTINGTON BEACH HOSP,,H2100\nPEDIATRIC NURSE,INFORMATION REQUESTED,Y4000\nATTOR,LAW OFFICES OF PETER L. ELEEY,K1000\nScientific Editor,UC Davis,H5100\nPARTNER,LYNN BLUEPRINT,C1300\nMASSACHUSETTS INSTITUTE OF TECHNOLO,,J7400\nExecutive Vice Presi,UMB Bank,F1000\nATTORNEY,MANSOUR & ADAMS,K1000\nEXECUTIVE,INTERNATIONAL PAPER COMPANY,A5200\nZANOTTI ARMOR,,Y4000\nOrthopaedic Surgeon,Family Orthopaedic Associates,H1130\nPresident,Integrated Commercial Entpns,Y4000\nM D,LOVELACE MEDICOS CENTER,H1100\nATTORNEY,\"BREAKSTONE WHITE & GLUCK, PC\",K1000\nFUTURES TRAD,CHICAGO STOCK EXCHANGE,J5100\nPRESIDENT & CEO,ABITIBI-BOWATER,A5000\nCEO,Riceland,Y4000\nINNOVATION TECHNICAL SOLUTIONS,,Y4000\nPRESIDENT,PHILADELPHIA RECYCLING MINE,Y4000\nBIOTECH,\"GENOCEA BIOSCIENCES, INC.\",H3400\nOWNER,SITE SCAPES LLC,Y4000\nV.P,SHASTA SUNSET DINNER TRAIN,Y4000\nPresident,Rapid United Steel,M2100\nSOFTWARE ENGINEER,WMS GAMING,J1200\nBUSH LAKE PET HOSPITAL,,A4500\nSALESPERSON,ACCLAIM INTERNATIONAL,Y4000\nPROFESSOR OF MEDIC,UNIV. OF FLORIDA,H5100\nOWNER,JEFF,Y4000\nGATE PETRO,,E1100\nFRENCH PROFESSOR,RETIRED,X1200\nMANAGING DIRECTOR,THOMSON REUTERS,C1100\nauthor,Self employed,C1100\nATTORNEY,\"DOW, LOHNES, & ALBERTSON\",Y4000\nKAL NUTRITIONAL SUPP,,H4600\nPSYCHOTHERAPIST,BAYVIEW ASSOCIATES,Y4000\nGovernment Relations Consultant,The Grizzle Co,K2000\nstate,CHFS,Y4000\nRN,WASHINGTON UNIVERSITY,H5100\nANDMINISTRATOR,,G0000\nInsurance Agent,Toler & Toler,Y4000\nAttorney,\"Shipman & Goodwin, LLP\",K1000\nPRESIDENT,SINATRA & COMPANY,F4200\nCHAIRMAN,GOLDHILL HOME MEDIA,Y4000\nCreator,Family Guy,Y4000\nTAENZER FRIEDMAN,,Y4000\nEXECUTIVE,AMIOTEL GROUP,Y4000\nKIZER & BLACK ATTYS,,K1000\nPACKAGE INC,,Y4000\nGRIFFIN JOHNSON,,JH100\nC.E.O.,Bayview Financial Mgt. Co.,F0000\nPRESIDENT,SPARTAN PETROLEUM CO.,Y4000\nPRINCIPAL,LONCO INC.,B4000\nCOO\\PRESIDENT,\"WEN-RICH, INC. & WEN-ATLANTA, INC.\",G2900\nLAWYER,TREMBLAY & SMITH PLLC,K1000\nJONES & MOORE PA,,Y4000\nSenior Vice President,The Hillman Company,F2600\nINSTRUCT,DADE COUNTY PUBLIC SCHOOLS,X3500\nPRESIDENT,\"TERRY ADAMS & ASSOCIATES, LLC\",F3100\nPMK,,Y4000\nBERWANGER OVERMYER ASSOCIATES,,F5000\nGUIDE,HISTORIC DEERFIELD,J1200\nParalegal,us Government,X3000\nC.F.O. ENERGY M,CINERGY CORPORATION,E1620\nPHYSICIAN,UMASS-MEMORIAL MEDICAL CENTER,H2100\nPRESIDENT,MOYLE PETROLEUM/PRESIDENT,E1100\nMEDICAL WRITER,ILLUMINATED RESEARCH LLC,Y4000\nHANDY ANDY FOOD SERVICE INC,,Y4000\nSPENGLER CARLSON ET AL,,Y4000\nPARTNER,APMM LLC,Y4000\nVP PRODUCT DEVELOPMENT,ADVANCE AMERICA CASH ADVANCE CENTERS I,F1420\nINFORMATION TECHNOLOGY,GENERAL GENETICS CORPORATION,Y4000\nSMALL BUSINESS OWNER,FORD-GELATT,Y4000\n\"MASSEY'S FOOD CENTER INC\",,Y4000\nKEARNY COUNTY KANSAS,,Y4000\nNURSE,CCHC/NURSE,Y4000\nresearch administrat,State Univ. of New York,H5100\nPROJECT MANAGER,COMPUTER SCIENCES CORP.,C5130\nGENERAL MANAGER,HILL & SONS LLC,Y4000\nU S STEEL CORP,,M2100\nLAWYER,BAKER BOTTS LLP,J1200\nExecutive Secretary,\"Montana Ready Mix, Ltd\",B5100\nPresident,J.W. Pierson Co.,E1170\nHELP SUPPLY SERVICES,SELF,Y4000\nCHAIRMAN EMERITUS,TXU CORPORATION,B4000\nBusinessperson,JAMES McCORMICK & COMPANY,J1200\nCAIRNS & ASSOC,,G5210\nPHYSICIAN,ROSEHILL FAMILY MED. CTR.,H1100\nCitrus Grower,Wm G Roe & Sons,Y4000\nEUBSON DEL DEO ET AL.,,K1000\nLABAT-ANDERSON INC,,Y4000\nEVP,\"GREATER NEW ORLEANS, INC.\",Y4000\nRJI CAPITAL CORPORATION/PRESIDENT/C,,F0000\nBUSINESS MANAGER,MERIDIAN PARK,F4500\nCEO,Mn Thermo Science,B5000\nCURT LOWEY & ASSOC,,Y4000\nCEO,EURONET,Y4000\nMC KEE NELSON ERNST &,,K1000\nCHAIRMAN &,D & W FOOD CENTERS INC.,G2400\nWELKER & ASSOC,,Y4000\nSENIOR VICE PRESIDEN,GREAT AMERICAN FINANCIAL RES.,F0000\nCONSTRUCTION,LARRY GLENN CONSTRUCTION,B1500\nQUAKER STATE FARMS INC,,A1000\nWEST INFORMATION PUBLISHING GROUP,,C1100\n\"TEACHER'S ASSISTANT\",TOWN OF HINGHAM SCHOOL DEPT.,X3000\nVP,BRESNAN COMMUNICATIONS,C4000\nBRADLEY FOR PRESIDENT,,J1200\nATTORNEY,STAMM REYNOLDS AND STAMM,K1000\nEXECUTIVE,BAE SYSTEMS,T6100\nSenior Vice Presiden,Disney & ESPN Networks,C2200\nOWNER ELECTRIC,LI VANN ELECTRIC INC,Y4000\nMACROMEDIA INC,,C5130\nOwner and President,\"Hercules Transport, Inc\",Y4000\nIndustrial Designer,Wild Planet Entertainment Inc,J1200\nEngineer,Saint Jude Medical,H4100\nSELF,SELF-EMPLOYED,G2900\nOWNER/EXCAVATOR,JOE MORRIS EXCAVATING,B3600\nAttorney at Law,Neal & Harwell PLC,K1000\nPRESIDENT,LARAR STATE COLLEGE,H5100\nLawyer,SIBLEY AUSTIN,K1000\nDYERSBURG CORP,,M8000\nATTORNEY,WALLACE & GRAHAN,K1000\nGENERAL CONTRACTO,BETTE & CRING LLC,Y4000\nMD,Mid America Cardiology,H1130\nSOFTWARE ENGINEER,\"VERTEX, INC.\",C5130\nPHYSICIAN,\"FAMILY CARE ASSOCIATES, INC.\",Y4000\nJewelry Designer and Mfg,Self,Y4000\nATTORNEY,\"BENSON, BERTOLDO BAKER & CARTER\",Y4000\nNORFOLK BANANA DIST,,G2500\nFINANCIAL ANALYST,,C2100\nPARTNER,BERNSTEIN LITOWITZ ET AL.,J1200\nPORT EVERGLADES PILOT,,Y4000\nSVP Retail&Specialty,Valero Energy Corporation,E1160\nRetired,Retired - General Electric,X1200\nVice President,Rowland USD,X3500\nArchaeologist,\"Pacific Legacy, Inc\",Y4000\nREECE COMMUNICATIONS,,G5200\nJUDGE,STATE OF OHIO,X1200\nGastroenterologist,MGI,H1130\nPRESIDENT,GOLDMARK PROPERTY MANAGEMENT,F4500\nAMERICAN COMMUNICATIONS TECHNOLOGIE,,C4100\nTech,University of Washington,H5100\nCounsel,Manatt Phelps & Phil,K1000\nOrthopedic Surgeon,Florida Orthopaedic Institute,H1130\nSR VICE PRESIDENT,SMITH & NEPHEW INC.,H4100\npilot,Virginia Pilot Association,T6200\nCROWNE PARTNERS,,F4200\nCHAIRMAN AND CEO,THE OMEGA PARTNERS,Y4000\nExecutive,Indiana Railway,T5100\nREAL ESTATE MANAGEMENT,\"SIEROTY CO., INC.\",F4500\nPROFESSOR,U. BALTIMORE,J1200\nPETE MARICK REAL ESTATE CO,,F4200\nPOSSE WALSH,,F3100\nPRESIDENT,CHALLENGER CABLE SALES/PRESIDENT,Y4000\nZELKA & SONS,,F2100\nCHIEF EXECUTIVE OFFICER,\"WESTECH INTERNATIONAL, INC.\",Y4000\nNone,None,J1200\nADMINISTRATION,DVHC,Y4000\nATTORNEY AT LAW,WEILMUENSTER GROUP,Y4000\nTOWN SUPERVISOR,TOWN OF PLATTSBURGH,Y4000\nDFW SOUTH ACQUISITION,,T9100\nPresident,Clear IT Consulting,Y4000\nMORNINGSIDE COLLEGE,,H5100\nWHITE FENCE FARM REST,,G2900\nPARTNER,CYRUS CAPITAL PARTNERS,F0000\nAdministrator,Kindred Healthcare,H2200\nOutreach Director,National Low Income Housing Coalit,J7000\nPROJECT MANAGER,AQUENT MARKETING,Y4000\nDIRECTOR NETWOR,UNITED TECHNOLOGIES,D2000\nPHYSICIAN,UNIV DERMATOLOGY INC,H1130\nCAO,MORONGO BAND OF MISS,Y4000\nSUNSHINE INTERACTIVE NETWORK,,Y4000\nManagement Consultant,Dini Partners,G5200\nGLOBAL ALLIANCES,ORACLE CORPORATION,C5120\nCEO General Produce,\"General Produce, Inc.\",A1400\nLANIER COPYING SYSTEM,,M4200\nTERANOVA CORPORATION,,F4200\nVP,KAPSTONE PAPER & PKG CORP,A5000\nInvestment Banker,The Carson Medlin Group,Y4000\nPRESIDENT,MTS TECHNOLOGY,G5270\nROUGHNECK CONCRETE DRILLING & SAWIN,,J7400\npresident,Peterson Companies,F4100\nPHYSICIAN,RUBY MEMORIAL HOSPITAL,H2100\nEarned Value Consultant,Self employed,Y4000\nMANAGER,PROVISION RX,Y4000\nLASA MONROIG VEVE,,K1000\nDiplomatic Assistant,Japanese Delegation to the Oecd,J1200\nDirector,Peck Madigan Jones,K2000\nMidwife,US Public Health Service,H1710\nMD,Kansas University Neurology,H1130\nKLETT LIEBER ROONEY & SCHORLING US,,K1000\nAGES GROUP,,T1300\nVP,\"NATIONAL ASSOCIATION REALTORS'\",F4200\nCPA PARTNER,MAY AND COMPANY LLP,F5100\nPRESIDENT,PACTRANS AIR & SEA INC.,Y4000\nTHOMASVILLE ORTH CTR,,Y4000\nHTL DEVELOPMENT,,F4100\nDEPT O,WHITE HOUSE,J1200\nYOGA INSTRUCTOR,NAMASTE,Y4000\nTHE KEEFE CO,,K2100\nBroker,Wacovia Securities,F2100\nCHAIRMAN,LADDER CAPITAL,F4600\nFISH AND WILDLIFE BIOLOGIST,US FISH AND WILDLIFE SERVICE,Z9500\nCONSULTANT,KINGFISHER SYSTEMS,Y4000\nPRESIDENT,\"HORAN ASSOCIATES, INC.\",F3300\nIRON MAZE PRODUCTIONS,,J1200\nFX TRADER,CITIBANK N.A.,F1100\nVERCON CONSTRUCTION INC,,B1500\nATTORNEY,\"COSTELLO, PORTER LAW FIRM\",K1000\nTHE OFFICES OF JOEL GREENBURG,,Y4000\nBATMAN CORPORATION,,B2000\nCRUMP MOTOR COMPANY,,T2300\nCO-MANAGING,GREENBERG TRAINING LLP,J5100\nTEACHER,ANNOOR ISLAMIC SCHOOL,H5100\nPRESIDENT,OUTBACK MATERIALS,B5100\nATTORNEY,\"WEISS, WEXLER & WORNOW PC\",K1000\nPresident,Applied Roofing,B3000\nExecutive,Astaro,Y4000\nAND1,,Y4000\nVice President,\"Marc Associates, Inc\",K2000\nAudiologist,3M,M2300\nC.E.O./ASIA PACIFIC,DELOITTE & TOUCHE,F5100\nREQEUSTED,,Y2000\nMAGNAM ENTERPRISES,,Y4000\nphotographer,self,G0000\nExecutive,Center Point Energy,E1620\n\"ST PETER'S UNIVERSITY HOSPITAL\",,H2100\nHEALTHCARE PROFESSIONAL,WELLINGTON,Y4000\nPhysician,Gastroenerology Associates,H1130\nAMICK FARMS,,A2300\nPresident,Ntsa,Y4000\nSUMMITVILLE TILES,,B5400\nEXECUTIVE/LAWYER,\"ASSURANT, INC.\",F3100\nINVESTMENT BROKER,PAINE WEBBER,F2100\nOWNER,CLUB AMER. TRVL. & TRANS. INC,Y4000\nRETIRED COLONEL; HEALTH CONSULTANT,RETIRED,X1200\nINFO REQUESTED,\"SHIVE-HATTERY, INC.\",Y4000\nATTORNEY,SIDNEY & AUSTIN,K1000\nSW LIVESTOCK MINERAL,,A3100\nMCDERMITT INC,,G1300\nAttorney,\"T Loeb, Kosacz & Sundberg LLP\",K1000\nCFO,RSA SECURITY,C5120\nGTE LABORATORIES INC,,C4100\nRETIRED SOCIAL,\"DELAWARE COUNTY, PA\",X1200\nPresident,\"PCC Structurals, Inc.\",M5200\nDirector,Natl. Center For Juvenile Justice,Y4000\nRESTAURANT OWNER,CORNETT MGT CO,Y4000\nPublic Relations,Dovetail Public Relations,G5210\nDirector,AXA Advisers,F2100\nOperations Manager III,Michael Baker Jr,B4000\nSUELTHAUS & KAPLAN PC,,K1000\nBUILDER,REVE INCORPORATED,B2000\nDIRECTOR,PEABODY ENERGY CORPORATION,E1210\nBECCAI ELECTRIC INC,,B3200\nVice President,Level 3,J1200\nCOKER MYERS SCHICKEL,,K1000\nEditor In Chief,The American Reporter,C1100\n\"SUPEFVISOR, HOUSING RELATIONS\",ALASKA HOUSING FINANCE CORP.,F0000\nCONSULTANT TO NON PROFIT,SELF,J7400\nCAMBRIDGE HEALTH CARE,,H3000\nABC CARPET & HOME,,G4000\nFundraiser,Capitol Hospice,H2200\nLAUSD,,Z1100\n\"BROCK, MASINGILL & ASSOC./SALES/MAR\",,Y4000\n\"Svp, Business Dev\",Duncansolutions,Y4000\nExecutive,Tobey Construction,B1500\nENGINEER,CHEATHAM AND ASSOCIATES,Y4000\nInstructor,Columbia College Of Chicago,H5100\nSULLIVAN & CO INC,,F5100\nAttorney,Gilmore & Monahan,Y4000\n\"VP, STRATEGIC PARTNERSHIPS\",MONDIAL ASSISTANCE USA,F3100\nMANAGEMENT,STRAUB DISTRIBUTING CO,G2850\nREALTOR,RE/MAX BASTROP AREA,F4200\nATT,\"KASOWITZ, BENSON, TORRES, ET AL\",J5100\nIMPROVED FUNDING TECHNICALS,,Y4000\n\"KALKINES, ARKY, ZALL & BERNSTEIN\",,K1000\nBRESSLER AMFANY & ROSS LLP,,K1000\nNORCROSS SUPPLY CO,,G0000\nPresident,Interestate Asphalt,B5100\nDERMATOLOGIST,MANATEE DERMATOLOGY,H1130\nANESTHESIOLOGIST,UNIV TENN MED GRP,H1130\nAdministrator,Weirton Geriatric Center,H1130\nEQUINE INSURANCE & FARMING,\"CLAY WARD AGENCY, LLC\",Y4000\nOWNER,APPLE VENDING,Y4000\nMCCURDY HEALTH CARE CENTER,,H2200\nCEO,Enviro Sciences of Delaware Inc,Y4000\nDEVELOPMENT COORDINATOR,JOHNS HOPKINS,H5100\nTOLEO FOUNDATION,,X4110\nDRIVER,\"DOMINO'S\",Y4000\nRESEARCHER,OREGON STATE UNIVERS,H5100\nphysician,valley emergency care,Y4000\nPresident,The Millrace Group,M1000\nSR BUSINESS ANALYST,TATA CONSULTANCY,Y4000\nAdvisor,AARP,J7200\nKOONTZ MCCOMBS,,F4100\nJOINT REPLACEMENT INSTITUTE,,H1130\nLANE,INTERSTATE JOHNSON,F2100\nSPACE TRAVEL AGENCY,,T9400\nSpecial Assistant To Dusa,U.S. Army,X5000\nEXECUTIVE,UNIVERSITY OF ROCHESTER,H5000\nJAL ENTERPRISES INC,,Y4000\nOKLA BONDSMAN ASOC,,G5000\nATTORNEY,\"REID & RIEGE, P.C.\",K1000\nOWNER,\"LAM'S TRADING CO. L.L.C.\",Y4000\nSENIOR VICE PRESIDENT GOVERNMENT AFFAI,\"COMCAST CABLE COMMUNICATIONS, LLC\",C2200\nDIRECTOR,MET TEL,Y4000\n\"President, West Divi\",\"Oldcastle Materials, Inc., West Divisi\",B5100\nFI,RAYMOND JAMES FINANCIAL SERVICES,J1200\nEngineer,Woodward,Y4000\nOZARK GUIDANCE CTR,,Y4000\nOrthopaedic Surgeon,\"Northwest Permanente, PC\",H1130\nPRESIDENT,RUBEL LENIHAN PROPERTIES,F4000\nCHEMICAL ENGINEER,DUNN LABS,Y4000\nMARKETING DIRECTOR,DE-SIMONE,Y4000\nPRESIDENT,LA ASSOC OF INDEPENDENCE,Y4000\nFIRE FIGHTER / EMS,MCKEESPORT FIRE DEPT.,L1400\nReal Estate Broker,\"Urban Equities, REC Inc\",F4200\nLAWRENCE NURSING CARE CENTER,,H2200\n\"Exec VP, Senior Coun\",Sony Corp.,C2000\nAttorney,Anheuser-Busch,G2810\nVP/COO,Virtua Health,H2100\nOMB,GOVERNMENT,Y4000\nCONSULTANT,BANYAN CORPORATION,Y4000\nPIERCE COUNTY PARKS & RECREATION,,Y4000\nSECRETARY OF TO,STATE OF NEW MEXICO,X3000\nLAWYER,\"BARD MILLER, PC\",Y4000\nARCHITECT DESIGN,CLARK & KARSH,B4200\nFestival Director,\"Muskegon Summer Celebration, Inc\",Y4000\nProfessor,Willamette Univ College of Law,J1200\nMajor Developments,Same Self Employed,Y4000\nMONARCH ENTERPRISES INC,,T1600\nManager,Kaiser-Hill,E2000\nCONSERVATION,EARTH ISLAND INSTITUTE,Y4000\nDEALER,MANHATTAN MOTORCARS,T2300\nFire Captain,Quincy Fire Dept,X3000\nBUSINESS MANAGER,SHEET METAL WORKERS LOCAL #196,LB100\nPRESIDENT NORTH CENTRAL DIVISION,COMCAST,Y4000\nENGINEER,BELCAN CORP.,C5000\nElectrical Contracto,Buschur Electric,B3200\nVP/COO NADART,National Automobile Dealers Associaito,Y4000\nPRESIDENT,CERTICARE INCORPORATED,Y4000\nDC Association of Chartered Public,,X3500\nDIRECTOR,AMERICUS CONSTRUCTION GROUP,B1500\nSELF EMPLOYED,KELLER CLASICS INC.,Y4000\nCOUNSELOR,LOCKHART ISD,X3500\nMARTINEZ FARMS,,A0000\nPRESIDENT,WINKELS CARPET CENTER,G1200\nREAL ESTAT,PAVILION DEVELOPMENT CO.,F4100\nCounsel,Cme Group,F2400\nSALES,GUTHY RENKER,C2300\nOWNER,DIXIELAND PROPERTIES,J1100\n\"ZABAR'S\",,G2900\nSUPERVISION CHILD SUPPORT OFFICER,COUNTY OF LOS ANGELES CHILD SUPPORT,Y4000\nCITY OF SOUTHFIELD,,X3000\nCATHOLIC PRIEST,Self-Employed,X7000\nAttorney,Dahert LLP,Y4000\nPRESIDEN,ROTERY COLLIDER TECH. INC.,Y4000\nVICE PRESIDENT OF INFORMAT,HALLMARK,G4600\nPresentation Skills,Self-Employed,J5100\nYoga Teacher,Terra Sky,Y4000\nSTANFORD UNIVERSITY HOSPITAL,,H2100\nRAY CORP,,Y4000\nInsurance,Waddell Sluder Adams,F3100\nINFORMATION ASSURAN,\"VPSI, SAN DIEGO\",Z4100\nATTORNEY,PRECISION CASTPARTS CORP,M5000\nUNIDATA,,Y4000\nSales Executive,\"Manufacturers' News, Inc\",Y4000\nChairman and CEO,The Palmetto Bank,F1100\nHillis Clark Martin & Peterson,,K1000\nCHIE,RENAISSANCE TECHNOLOGIES CORP.,J7400\nPhysician,Sulphur Surgical Clinic,H1100\nFARMER,\"IVEY'S SPRING CREEK FARM, INC.\",A1000\nADMINISTRATIVE ASSIS,NEW YORK STOCK EXCHANGE,F2400\nVP-ON PREMISE SPIRITS,REPUBLIC NATIONAL DISTRIBUTING CO.,G2850\nALTUS DRUG STORE,,G4900\nbarber,self employed,G5100\nGRAPHIC DESIGN,\"STMD, LLC/GRAPHIC DESIGN\",Y4000\nLOBBYIST,PETRIZZO STRATEGIC,K2000\nHealthcare,SG2,Z9500\nRegistered Represent,Information Requested,Y4000\nIGES,,Y4000\nBUSINESSM,1ST CORBIN FINANCIAL CORP,F0000\nSpouse,\"Glazer's Distributors\",G2850\nEXECUTIVE,LRP PUBLICATIONS INC.,C1100\nArtist,Paula Blumenfeld,X0000\nPHYS,THE PAIN TREATMENT CENTER OF B,Y4000\nSCHMID & BRISBOIS PC,,Y4000\nReal Estate Agent,Turnberry Associates,F4100\nCIVIL ENGINEER,SGM,J1100\nSr VP & General Counsel,HCA,H2100\nKIEFFER ASSOCIATES,WITT,G5250\nATTY,GRAY & HOFFMAN P.C.,Z9500\nHI-HEAT INDUSTRIES,,Y4000\nChairman,Earl G Graves Ltd,C1100\nPlant Manager,Robinson Dairy,A2000\nSELF,N/A,F2300\nBUSINESSMAN,WYOMING MACHINERY CO.,M2300\nTeacher,\"District 25, Pacatello, ID\",Y4000\nFull Time mom,Kimberly Guthrie,Y4000\nBROWN FUNERAL HOME,,G5400\nNorth Carolina State University,,H5100\nHSIU LAI TEMPLE,,X7000\nATTORNEY,JIM HANSEN,Y4000\nFEDERAL PUBLIC DEFENSE ATTORNEY,,X3200\nPartner,Curry Honda Isuzu Subaru,T2310\nCHAIRMAN AND CHIEF CREATIVE OFFICER,BROWNSTEIN GROUP,Y4000\n\"VP, Finance & Administration\",HRB Services,F5300\nExec Management,Jarden Corporation,J9000\nGARDEN SPOT ELECTRIC INC.,,B0500\nDEPT. CHAIRMAN,LAZARD,F2300\nPRESIDENT AND C,CAMELBACK SKI CORP.,Y4000\nVice Pres Corporate,Century Strategies. LLC,G5270\nJOSEPHSON INTERNATIONAL,,J5100\nManager,The Cannery Restaurant,G2900\nMANAGER HEALTHCARE CONSULTANT,QUADRAMED,Y4000\nPRESIDENT,IMC CONSULTING,Y4000\nBUSINESS OWNER,MOORE ENTERPRISES,Y4000\nLONGSHOREM,NEW YORK SHIPPING ASSTN.,LT500\nRICH-SEA PAK CORPORATION,,Y4000\nATTORNEY,\"ARSENEAULT, WHIPPLE, FASSETT & AZZAREL\",K1000\nAVP STRATEGIC SOURCING,BNSF Corporation,T5100\nSANDRA BROWN MGT LTD,,Y4000\nUrologist,\"The Urology Center of Englewood, P.A.\",H1130\nMarketing Manager,Thrivent Financial for Lutherans,F3100\nAtchitect,Kohn Pederson Fox,B4200\nContractor,\"Excel Mechanical, Inc\",Y4000\nContractor,Aulson Roofing,B3000\nSPECIAL PROJECTS DIRECTOR,JAC,J5100\nEXECUTIVE DIRECTOR,RED RIVER WATER WAY COMMISSION,Y4000\nENGINEERING FELLOW,INTUITIVE SURGICAL/ENGINEERING FELL,H4100\nOwner/President,Design Center At The Avenues,G0000\nOB/GYN,\"Self-Employed, ob/gyn\",H1130\nWELDER,INTER AMERICAN OIL WORKS,Y4000\nDirector Government,American Society of Civil Engineers -,G0000\nPSYCHOL,VOLUNTEER BEHAVIORAL HEALTH,Y4000\nRest. President,Boston Lyric Opera,C2900\nCEO,\"RITZMAN PHARMACIES, INC.\",Y4000\nBUSINESS OWNER,BIG MUDDY WORKSHOP,Y4000\nPBS,,Y4000\nJEFFREY MORGAN AND CO,,Y4000\nSALES,AVILA REALTY,F4200\nEthics and Compliance Officer,Premiere,H2000\nATTORNEY,RYAN MACKINNON ET AL,K2000\nMORRELL,,Y4000\nBennett & Bennett/N/A,,Y4000\nRENAISSANCE TECH CORP,,Y4000\nINFORMATION REQUESTED PER BEST EFF,\"LARAMIE ENERGY II, LLC\",E1120\nCPA,Wilkes & McHugh PA,K1000\nPR,TEMPLE UNIVERSITY MEDICAL SCHOOL,H5150\nVP LAW,FMC Corporation,M1000\nNATIONAL ASSOCIATION OF MANUFACTU,,J1200\n\"GENERAL DYNAMICS POMONA, CA\",,D2000\nPresident,Whitten & Diamond,K1000\nPILOT,AAR AIRLIFT,Y4000\nSORENSEN LIVESTOCK INC,,A3000\nOWNER OF BALLEW & ROBERTS,,B1000\nROOFER/OWNER,TNT ROOFING INC.,B3000\nProfessor,Johns Hopkins University Carey School,H5100\nRn,N/A,H1710\nCEO & President,Outrigger Enterprises,T9100\nCHAIRMAN & CEO,DANOU ENTERPRISES,G2400\nAT HOME MOM,AT HOME MOM,Z9500\nOWNER,LOUISIANA CARRIERS LLC,Y4000\nConsultant,KD MGT SVCS,Y4000\nBESR EFFORTS,,Y4000\nOwner,Don Wood Inc.,Y4000\nPENN HOLDINGS,,Y4000\nOIL AND GAS EXPLORATION & PRODUCTION,SELF-EMPLOYED,E1150\nGeneral Contractors,Plummer Family Homebuilders inc,Y4000\nBusines Executive,USG Corp.,B5000\nDOCUMENTARY ARTIST,SELF-EMPLOYED/DOCUMENTARY ARTIST,Y4000\nSystem Administrator,Intermountain Healthcare,H2100\nRealtor - VP/Manager,Long & Foster Real Estate,F4200\nCommercial real estate,\"Atlas Partners, LLC\",J1200\nMedical Sales,Self employed,H4100\nEXECUTIVE,WB THEATRICAL PRODUCTION,Y4000\nPRESIDENT,CEDAR ENTERPRISES INC.,Y4000\nBroker/Owner,Chicago Exclusive Properties,F4000\nExecutive,Chandler USA Inc,F3100\nINFO REQUESTED,NEXTERNA,Y4000\nPresident and CEO,Memorial Hermann Healthcare System,H2100\nCONSULTANT,RIGHT MANAGEMENT,Y4000\nOwner,Dugan Production Corp,E1120\nSOFTBIT,,Y4000\nRETIRED,KAI FARMS,Y4000\nHawaiian Islands Pro,The Trust for Public Land,JE300\nCEO,McCormick,G2900\nPSYCHOTHERAPI,FAMILY SERVICE AGENCY,Z9500\nP,ASSOCIATED WHOLESALE GROCERS INC.,G2400\nPILOT,EAS,T0000\nPHILIPS & JORDEN,,Y4000\nPrincipal,\"Porter, Felleman, Inc.\",F2100\nLOBBYISTS,BALCH & BINGHAM LLP,K1000\nlawyer,\"o'donoghue & O'donoghue\",Z9500\nMRA - ARCHITECTS,,B4200\nATTORNEY,\"MEEHAN, BOYLE, BLAT\",K1000\nHOTEL DEVELOPME,\"SCHABET HOTELS, INC\",T9100\n\"WEIR, MANUEL, ET AL\",,Y4000\nDawn Aeronautics,Owner,Y4000\nDEPT OF SOC SERVICES,,X3000\nnovelist,\"Little, Brown & Co\",J1200\nCAROLINA HEALTH CARE SYSTEM,,H0000\nATTORNEY,SETON HEALTHCARE NETWORK,H0000\nSELF,PHELPS INSURANCE,Y4000\nOWNER,GETZ & ASSOC.,Y4000\nKITCHEN & BATH DESIGNER,SELF,Z9500\nATTORNEY,REMBOLT LUDTKE LILP,Y4000\nUrologist,\"Jong L. Chen, M.D.\",H1100\nLUIS A AYALA COLON,,Y4000\nManager,Massachusetts Audubon Society,Y4000\nHOBBY LOBBY STORES INC,,J1100\nowner,AZ Rebar,Y4000\nPhysician,FLORIDA RADIATION ONCOLOGY GROUP,H1130\nPRESIDENT,A.P.I.,Y4000\nPRESIDENT,QUIK STOP MARKETS INC.,G4300\nGeneral Manager,Duarte Construction,B1500\nSMALL BUSINESS OWNER,\"GARYJM, INC\",Y4000\nTN TRIBUNE,,C1100\nCOMPUTER PROGRAMMER,NORTHROP GRUMMAN CORP,D5000\nPRESIDENT,BLAYLOCK & PARTNERS,F2100\nCEO,Intrepidus,Y4000\nDealer,Smith South Plains Levelland,T2300\nExec.,Cherry Road Films,C2400\nInformation Requeste,Retired,M6000\nATTORNEY,\"BINGHAM, MCCUTCHEN LLP\",K1000\nNaturopathic Physici,Self- Employed,G0000\nCORPORATE VICE PRESIDENT,CB MEDICAL SENSORS,H4100\nREILLY CONTRACTING CO,,Y4000\nCEO,MJH Capital,Y4000\nGOTTSCHALKS INC,,Y4000\nHOFFMAN AUTO GROUP,,T2300\nDeveloper,RICC & Spall Realty Group,F4200\nGLASS AND WOODWORKING,,Y4000\nInvestment Manageme,Fiduciary Trust,Y4000\nPartner,Belluck & Fox LLP,K1100\nWEIR WELDING COMPANY,,B3000\n\"VICE PRESIDENT, BEAVER VALLEY\",FENOC,E1300\nGOVERNMENT AFFAIRS,KRIEG DEVAULT,K1000\nPHYSICIAN,SPARKS FOUNDATION,Y4000\nExecutive,Memphis Engraving Co. Inc.,Y4000\nAPPLICATIONS ANALYST,MCV,H2100\nEngineer,Medtronic,H4100\nATTORNEY,\"ROBINSON CURLEY & CLAYTON, PC\",K1000\nCRUNT CO,,Y4000\nCATHOLIC CHARITIES OF NV,,H6000\nREALTY 500/REISS CORP./REALTOR,,F4200\nRASKY & BAERLEIN,,G5210\n\"Managerial, Misc.\",\"Mellott Enterprises, Inc.\",B5100\nContractor,Advantage Staffing,G5250\nVP-Pricing,Fedex Freight East,T7100\nAccountant,Helena Chemical Company,M1000\nC,AWES SEIDEL DIVERSIFIED INSURANCE,F3100\nVice President,FHLBA,F4600\nEXEC DIRECTOR,ADIRONDACK REGIONAL TOURISM COUNCI,Y4000\nJ B LEVERT LAND CO,,Y4000\nSelf-Employed,\"Pace Press, Inc.\",Y4000\nCOCA-COLA CORPORATION,,G2600\nPresident,\"U.S.A.I.S., Inc.\",Y4000\nATTORNEY,JOE FARNAN LAW FIRM,K1000\nInformation Requeste,\"Tannenbaum, Planas & Weiss\",Y4000\nEXECUTIVE,F.L.  CRANE & SONS,B1000\nAttorney,\"Los Angeles County District Attorney's\",X3200\nEXECUTIVE,ALPHA DEVELOPMENT CORP.,Y4000\nCONSULTANT,CLYBURN ASSOCIATES,K2000\nPRESIDENT,AUTO WAREHOUSE,Y4000\nGROCER,HIGHLAND PARK MARKET,G2400\nSelf Employed,Bruce A Richards MD Pa,H1100\nManager,National Labor Company,M7100\nATTORNEY,LASHER HOLZAPFEL PLLC,Y4000\nPrivate Investor,\"Aberdeen, Inc\",C5110\n\"ASST. VP, GOVERNMENT RELATIONS\",THE FUTURE NEEDS US,J1100\nLEBLANC MAPLES AND WADDELL,,K1000\nDeveloper,Southern Dev of MS,F4000\nPH,PREMIER HEALTH CARE SERVICES INC,H1100\nVP TECHNICAL SERVICES,\"COMPUTER MEDIA TECHNOLOGIES, INC./V\",Y4000\nManager,Balthazar,Y4000\nOwner,AT Towing,T3100\nPhysician,Gousom Hospital,H1100\nPHYSICIAN/CEO,\"INNOVA EMERGENCY MEDICAL ASSOCIATES, P\",Y4000\nDEBLAN CORPORATION,,G2100\nSTRAWBERRY WATER USERS ASSN,,E5000\nGOVERNMENT CONSULTANT,OGILVY GR,K2000\nMinister,Self,J7400\nOWNER,MORRELL & ASSOCIATES,Y4000\nPE,INDEPENDENT PENSION SERVICES INC,F5500\nPresident,Lexicon Branding Inc.,Y4000\nVP,PLAINS COTTON COOPERATIVE ASSN,M8000\nKOTONSKY PROP INC,,Y4000\nBusiness Owner,Newman Signs,Y4000\nATOORNEY,CENTER FOR NON PROFIT LEGAL SERVICES,J7400\nFIRE FIGHTER / EMS,BERGEN COUNTY FIRE DEPT.,L1400\n\"Mark W Long, Attorney at Law\",Self employed,K1000\nSAND,BILOTTA CONSTRUCTION,B1000\nPECK SCHAEFFER AND WILLIAMS,,K1000\nRIVKIN RADLER ET AL,,K1000\nATTORNEY,\"GRONEK & LATHAM, L.L.P.\",K1000\nRN,MJHS,Y4000\nVENTURE CAPITALIST,SELF,G0000\nPHARMACIST,Rogers Pk Surgery Cente,H1130\nMONITOR AEROSPACE,,T1300\nEXECUTIVE,BOSCH,Y4000\nSCHATZ FLETCHER & ASSOC,,F5100\nVice Chairman,Whitney Bank,F1100\nAttorney,\"Wunder, Knight et al.\",K1000\nlobbyist,Ericks Consultants,K2000\nLegal Administrator,Icma-Rc,Y4000\nChief Executive Officer,\"Fresh Innovations, LLC\",G2500\nPresident,Enviro Voraxial Tech. Inc,Y4000\nRANCHER,THOMPSON RANCH,A3000\nMets,,Y4000\nREALT,HOUSER ASSOCIATES REAL ESTATE,F4000\nPROFESSOR,UNIVERISTY OF HAWAII,H5100\nMARKETING,RCL GROUP LLC,Y4000\n\"THERAPIST, COACH\",SELF-EMPLOYED,G5200\nAttorney,Screen Actors Guild,LG400\nCTO,Amdocs,Y4000\nPHYSICIAN,COYLE & MERENDA,Y4000\nPRESIDENT,FACCHINA GLOBAL SOLUTIONS,Y4000\nSales VP,FedEx,T7100\nGOVERNMENT RELATIONS,\"THE O'LEARY GROUP\",Y4000\nWOLF HALDENSTEIN ALDER FREEMAN &,,K1000\nVC,Sevin Rosen Funds,Y4000\nGRIMM & DAVIS INC,,Y4000\nAttorney,Skelding Labasky & Cox,K1000\nOWNER,THE ART CONNECTION,Y4000\nCEO,L L BEAN,G4100\nBURGER KING F,N. VIRGINIA GROUP INC,Y4000\nBLUM FRANK & ROMING CO INC,,F4000\nSVP OF CORPORATE,\"ATLAS ENERGY, INC\",E1140\nOwner,Kansas City Barbeque,G2900\nPRESIDENT/OWNER,ALLEGHENY CONSTRUCTION CO.,B1500\nAttorney,\"Shar, Rosen and Warshaw\",K1000\nLEGIS,PAUL MAGLIOCCHETTI ASSOCIATES,K2000\nATTORNEY,THE MATTHEWS LAW FIR,K1000\nTHE CINCINNATI COMPANIES,,Y4000\nCPA,Life Care Centers Of America,H2200\nREAL ESTATE INVESTOR,FORSTONE CAPITAL LLC,Y4000\nattorney,Lockridge Grindal Nauen,J1200\nINSURANCE BY BAILY C,,F3100\nUPLAND MORTGAGE,,F4600\nMILLER TAX SERVICE,,F5300\nPUBLIC AFFAIRS,GM,T2100\nMANAGER,ROYSTON GROUP,Y4000\nSPECIAL EVENTS COORDINATOR,\"LIMELIGHT PRODUCTIONS, LLC\",Y4000\nAttorney,\"Shannon L Donahue, PC\",Y4000\nENVIRONMENTAL ENGINEER/OWNER,BLACKSTONE CONSULTING LLC/ENVIRONME,Y4000\nOwner,\"O' NEILL AUTOMOTIVE\",T2400\nAttorney,\"Peters, Murdaugh, Parker, Eltzroth & D\",K1000\nSenior Vice Presiden,CAPITOL ASSOCIATES,K2000\nBEUS GILBERT,,K1000\nARCHITECT,CAUBLE HOSKINS ARCHITECTS,B4200\nPHYLLIS ALDEN TRUBY,,Y4000\nATTORNEY,\"ROSS, SILVERMAN & LEVY LLP\",J9000\nAttorney,Goldfarb & Lipman,Z9500\nProfessor,University of WI - Madison,J7400\nMASSACHUSETTS TEACHERS ASSOCIATION,,L1300\nAnalyst,Optimal Energy,E1000\nSENIOR VICE PRESIDENT,\"MCKESSON HBOC, INC.\",H4400\nSenior Administrative Analyst,City and County of San Francisco,Z9500\nCERAMICIST,,X0000\nJOHN DENVER REALTY,,F4200\nKINGS COUNTY HOSPITAL CENTER,,H2100\nEICOFF ADVERTISING,,G5210\nADMINISTRATION,AMERICAN TENT,G0000\nAttorney,Andrews & Kurth,K1000\nINTEGRITY MARKETING,,Y4000\nFINANCIAL ANALYST,BROOKFIELD INVESTMENT MANAGEMENT,F2100\nRETIRED,MCKESSON CORP.,H4400\nMERCY MEMORIAL HOSPITAL CORPORATION,,H2100\nCYPRESS PHYSICIAN ASSOC.,,Y4000\nC.E.O,TADIN HERB AND TEA,Y4000\nManaging Partner,Prisma Capital Partners,F0000\nAssociate Director,\"CME, 20 SWacker Dr, Chicago\",F2200\nCDWYER & BERNSTEIN,,Y4000\nDIRECTOR-HR,VERIZON,C4100\nAREA MGR - GALV,OFFSHORE INLAND,T6000\nAGRICULTURE,SELF,A1000\nATTORNEY,CARTER MANCINI & SERMET,J1200\nCEO,MONOROLA,Y4000\nProgressive Technologies,Machinery Manufactuer,Y4000\nChairman,Emeritus-N/A,H2200\nProgram Analyst,Dept. Of Navy,X5000\nCommodities/Utility,Exelon Corp.,E1600\nCFO,CASTLE POINT ON HUDSON,Y4000\nBUSINESS DEVELOPMENT DIRECTOR,ARCHER DANIELS MIDLAND,A4300\n,LANDSCAPE MAINTENANCE OF BEND INC.,G1200\nPresident,\"Thomas Enterprises, Inc.\",F4100\nLAFONTAINE CO,,Y4000\nPRESIDENT,GEORGE JOHNSON,Y4000\nPublicist,Echovont,Y4000\nVICE PRESIDENT AND TREASURER,PINNACLE WEST APS ENERGY SERVICES,E1600\nLicensed Acupuncturist,Self employed,G0000\nCPA,218 Enterprises,Y4000\nATTOR,TILLINGHAST LICHT PERKINS ET.,K1000\nMCKENZIE CURTISS-LUSHER & ASSOC LLC,,F2100\nAttorney,\"Millennium Pharmaceuticals, Inc\",H4300\nA E INC 1,,J1100\nReal Estate Agent,Walker-Williams Realty,F4200\nNot employed,none,F4100\nC.E.O.,PRIME INC,T3100\nAdministrator,ARA - Renal Associates of Boca,H3000\nOWNER,SPECIAL LOGISTICS LLC,Y4000\nPRESIDENT,DEEP FOODS INC,G2000\nPresident,Alsip Nursery,A8000\nOptometrist,Advanced Eye Care,H1120\n,CENTER ON BUDGET & POLICY PRIORITI,Y4000\nCLARKSON IND CONTRACTORS,,Y4000\nCADENCE PENSION SYSTEMS,,F2000\nOral & Maxillofacial,Craig A. Yamamoto DDS Inc,H1400\nNYS DEPT MOTOR VEHICLES,,X3000\nDesign Consultant,SamataMason,Y4000\nATTORNEY,FPL,E1600\nBAGELS DELUX,,G2100\nUSD,,X3500\nRETIRED CHICAGO POLICE SGT,NONE,Z9500\nEXECUTIVE MANAGEMENT CONSULTAN,,Y4000\nPresident,VLE Associates Inc dba Vector Electric,B3200\nCONSULTANT,\"WILLIAM A. DREHER & ASSOCIATES, INC.\",Y4000\nPHYSICIAN,\"Joseph Mason, MD\",H1100\nGASBARRO BROTHERS INCORPORATED,,Y4000\nGENERAL COUNSEL,GE HEALTHCARE,H4100\n\"KENNETH I TOBEY, INC\",,Y4000\nPARTNER,BLUE CHIP VENTURE COMPANY,Y4000\nAttorney,\"Gold Scollar Moshan, Pllc\",Y4000\nMANAGEMENT,BLOCK MANAGEMENTLLC.,Y4000\nAccountant,Deloitte,J1200\n\"VP, Human Resources\",\"Barnes & Noble, Inc.\",Z9500\nFOUNDER & CEO,\"PRACTICELINK, LTD.\",Z9500\nLibrarian,Illinois Institute of Technology,H5100\nBUSINESS EXEC,CLEVELAND-CHIFFS INC.,M2100\nINVE,CAPITAL GUARDIAN TRUST COMPANY,F2100\nAttorney,\"Tressler, Soderstrom, Maloney\",K1000\nJIm Henson Company,,C2300\nREGISTERED NUR,GALLATIN HEALTH CARE,H0000\nATTORNEY,\"MCCAMIC, SACCO, PIZZUTI & MCCO\",Y4000\nCCO,PALOMA PARTNERS,F2100\nBRABHAM REALTY,,F4200\nGENERA,\"INROADS CAPITAL PARTNERS, LP\",F0000\nFINANCIAL,R. CHEMICAL,J6200\nAttorney,\"Bartlett, McDonough, Bastone & Monagha\",Y4000\nOSBORNE COMMUNICATIONS CORP,,Y4000\nDIRECTOR OF OPERATIONS,INFORMATION REQUESTED,H1130\nGrass Roots Activist,at Home mom,Y1000\nvice-president,Weisman & Associates,Y4000\nAttorney/Insurence Broker,\"Alliant Insurance Services, Inc\",F3100\nPresident,Strickland Foods Inc.,G2000\nSST,Wwc,J1200\nENGINEER,TELEOYNE TECHNOLOGIES INC.,Y4000\nAttorney,\"Escamilla & Poneck, Inc\",K1000\nL H S HOLDING INC,,H3100\nMEA INC,,Y4000\nILLINOIS CHAMBER OF COMMER,,G1100\nSOFTWARE SPECIALIS,VA LINUX SYSTEMS,Y4000\nWriter,Paramount Pictures,C2300\nleadership consulting,self,G5000\nSALES,PACKAGED SYSTEMS INCORPORATED,M7100\n\"Sales T.V., Appl. &\",Furniture & Appliance Mart,M4100\nPRESIDENT & CEO,LAS VEGAS CVA,T9000\nUnemployed,Fundraiser,J1200\nDSG STRATEGIES INC./CONSULTANT,SELF,J1200\nNot employed,Not employed,LB100\nPresident,Williams International,T1600\nFARMER / SMALL BUSINESS OWNER,KAKEGALLC,Y4000\nNOVACOLOR INC,,J6200\nFOR ART,,Y4000\nALTA MEADOW RANCH,,A3000\n\"Exec Director, New Teacher Center, UC\",\"University of California, Santa Cruz\",H5100\nLAWYER,ROSENFELD & RALIK,K1000\nBusiness Consulting,Lougee Consulting Group,Y4000\nCEO,HAWKEYE RENEWABLES,J1100\nBUSINESS CONSULTANT,PATPATIA & ASSOCIATES,Z9500\nCartiologist,Self,G0000\nCHEROKEE CO HEALTH DEPT,,Y4000\nVice President,LaBarge Inc.,C5000\nATTORNEY,THOMAS P. CALLAN P.A.,K1000\nAttorney,Wingfield & Ginsburg,Y4000\nFRAGOMEN DEL REY & BERMSEN,,K1000\nPUBLIC AFFA,QUINN GILLESPIE & ASSOC,K2000\nNON PROFIT CONSULTANT,SAGAWA/JOSPIN CONSULTING/NON PROFIT,Y4000\nPressman,Offset Paperback,C1100\nQUINCY STATE BANK,,F1100\nFINANCIAL SERVICES,EASTERN FINANCIAL,Y4000\nSenior VP & Controller,Emeritus Corporation-N/A,H2200\nBusiness Owner,\"Mickey's Volunteer Courier Service\",Y4000\nSPORTSCLOTHES,,Y4000\nOWNER,WESTERMAN HOLDINGS,Y4000\nFOUNDING PARTNER,FPH CONSULTING,Y4000\n\"DEPUTY DIRECTOR, FEDERAL AFFAIRS\",STATE OF OREGON,X3000\nCeo,North American Land Acquisitions,Y4000\nBARCO-DUVAL ENGINEERING INC,,J1100\nDIRECTOR GEOLOGY AND EXPLORATION,\"ICG, LLC\",E1210\nPresident,Transmissions by Ron,Y4000\nTEXA,TEXAS HOUSE OF REPRESENTATIVES,X3000\n\"O'GARA-HESS & EISENHARDT ARMORING\",,D9000\nFINANCE,PRI,Y4000\nPartner/CPA,Price Waterhouse Coopers LLC,F5100\nFamily Physician Wor,Self Employed,G0000\n\"FORSYTH DRILLING, INC\",,Y4000\nPARTNER,GARVEY LATHROP & CO.,Y4000\nWILKES AND COMPANY,,Y4000\ninvestor,Self,G0000\nCEO,KOMAN SPORTS WEAR,G4100\nGRIFFIN REALTY CORP,,F4200\nScientist,Tibotec,Y4000\nCORP. EXEC.,JOHNSON & JOHNSON,H4300\nBERNHARDT FURNITURE COMPANY,,Y4000\nVITAMILK DAIRY INC,,A2000\nPHYSICIAN,TRIHILTS,Y4000\nATTORNEY,MILLER ALFANO & RASPARTI,Y4000\nHomemaker,Not Employed,G4000\nOFFICE SUPERVIORS,WHITE CASTLE,G2900\nWESTINGHOUSE GROUP,,C5000\nExecutive,Empire Distributors,G2850\nSoftware Engineer,Bell Communication Research,J1200\nAttorney,Abeyta Nelson,Y4000\nEducation,Citrus Community College,Y4000\nHELEN ELLIS MEMORIAL HOSPITAL,,H2100\nFEC COMPLIANCE,SELF EMPLOYED,J1200\nEnergen Corporation Political Actio,,E1120\nVICE PRESIDENT,IVY HILL CORPORATION,Y4000\nCONSULTANT,BECHTEL GROUP INC.,B1000\nComputer Programmer,GEICO,F3100\nATTORNEY,LAW OFFICE OF AHMAD ASSED,K1000\nEXECUTIVE,RFS I.N.C.,Y4000\nMayor,City of Bryan,X3000\n\"Vice President, Gas\",Pacific Gas and Electric Compa,E1140\nRAINIER GROUP INC,,F4100\nRETIRED,VALLEY PARK APARTMENTS,Y4000\nSURGEON,UROLOGICAL ASSOC,H1130\nIT CONSULTANT/SYSTEMS ENGINEER,\"DYNAMIC NETWORKING SOLUTIONS, INC.\",Y4000\nINTL WORKERS LOCAL,,Y4000\nATTORNEY,METRO,T0000\nANESTHESIOL,KIRKSVILLE ANESTH ASSOC,H1130\nL A THOMSON COMP,,Y4000\nVAN G MILLER & ASSOCIATES,,Y4000\nINVESTOR,OPERON GROUP,F4100\nOwner,Mountain Sky Realty Llc,F4200\nExecutive,\"Zink Transportation Company, LLC\",G2850\nCENTURY 21 CLARY & ASSOC,,Y4000\nFEATHERLITE MFG,,T0000\nVICE PRESIDENT,\"HEALTHWAYS, INC.\",H3000\nPartner,Cypress Health Care Mngmnt,Y4000\nJ D DAVIS COMPANY,,Y4000\nRESEARCH SCIENTIST,YALE MEDICAL SCHOOL,H5150\nALBERTO TORRICO FOR ATTORNEY GENERA,,X3200\nFIGHTER PILOT,USAF RET,X5000\nChairman/Owner,International Business Initiatives,Y4000\nVice President,Sea Galley Restaurant,G2900\nPRESIDENT,\"SOLVAY AMERICA, INC.\",M1000\nOwner,Hippographics,C1300\nMASONRY CONTRACTOR,\"TOM'S TUCKPOINTNG LLC\",Y4000\nDorector,IIyria,Y4000\nVP of Finance,The Yucaipa Companies,F2600\nCEO,APPLIED SERVICES AEROSPACE,Y4000\nATTORNEY,BASSFORD RAMELE,Y4000\nAttorney,Golberg Persky Jennings,K1100\nPresident and CEO,Fannie Mae Foundation,F4600\nInformation Requested,Mcdermott Will & Emery LLP,K1000\nFEINTECH INVESTMENT PROPE,,F4000\nTIMBERLAND INVESTING,,A5000\nOil Producer,Bretagne,E1120\nCAPITAL ONE FINANCIAL CORP.,,F1400\nBENEDETTI CONSTRUCTION MGMT,,B1500\nRILEY RIPER HOLLIN COLAGRECO,,J1100\nPRIME GLOBAL LLC,,Y4000\nUROLOGIST,DEVINE TIDE WATER UROLOGY,H1130\nAttorney,Wilson Elser Moskowitz Edelman & D,K1000\nCountry Director,LMI,Y4000\nOwner,Helen Clark Allstate,Y4000\nMETRO NASHVILLE BD OF EDUCAT,,F2100\nMEDIC PHARMACY INC,,G4900\ndoe,,Y4000\nPEDIATRICIAN,GOLDSBORO PEDIATRICS,Z9500\nDetective Sargent,Muhlenberg Twp,Y4000\nLASSITER COMPANY,,Y4000\nPIANO TEACHER,\"CURTIS INSTITUTE OF MUSIC, PA.\",Y4000\nHOUSECRAFT,,Y4000\nLOS ALAMOS NATL LABORATORY,,D4000\nManager,Workstrings International,Y4000\nATTORNEY,BARKAN MEIZLISH. LLP,Z9500\n\"Vice President, Gove\",St. John West Shore Hospital,H2100\nPresident,CWS Ins Agency Inc,F3100\nMARION COUNTY FISCAL COURT,,Y4000\nMAYOR,CITY OF WINSLOW,X3000\nEXECUTIVE,AIGNER CHOCOLATES,Y4000\nFIRST BOSTON CORPORAT,,F2100\nRESIDENTIAL CONSTRUC,INFORMATION REQUESTED PER BEST EFFORTS,B1500\nPETRUS CHOU & ASSOCIATES,,E1210\nPartner,Cardiac Anesthesia Group,H1130\nBUSINESS M,WAKEFIELD MANAGEMENT CO.,Y4000\nCEO,G&B OIL,E1100\nVice President,Partech,Y4000\nPRESIDENT,W.R. BERKLEY CORPORATION,F3100\nstudent,dms,Z9500\nCOOSA VALLEY MACHINE SHOP,,Y4000\nCEO,R & R PARTNERS,K2000\nINDIANA DEPT OF REVENUE,,X3000\nCEO,PREMIER BANK TEXAS,F1100\nSTALLINGS CO,,Y4000\nPresident,\"William F Jones Ins Agency, Inc\",F3100\nSoftware Engineer Intern,SnapLogic,Y4000\nGENERAL CONTRA,MARS CONTRACTORS INC,Y4000\nDirector,\"Pharmacy Providers of Oklahoma, Inc\",H1750\nSALES,SIGMA SUPPLY INC.,Y4000\nRN,NW MEDICAL CENTER/RN,H2100\nMECHANICAL CONTRACTOR,HARVEY & PRICE MECHANICAL CONT,J6200\nBOOKKEEPER,BLUE GRASS METALS,M5000\nSales,4 Star Hose & Supply,Y4000\nLamb Feeder,Self,A3300\nSales,\"Sotheby's Realty\",F4200\nREAL ESTATE SALES,BEACH PROPERTIES OF FLORIDA,Y4000\nFUN TRAVEL LTD,,Y4000\nVEND-RITE MANUFACTURING,,Y4000\nAttorney,Constantine & Partners,K1000\nAGSTAR FINANCIAL SERVICES/AGRIBANK/,,A4000\nSENIOR COUNSEL,SIDLEY AUSTIN/SENIOR COUNSEL,K1000\nBUSI,UNDERWOOD SERVICE & HYDRAULICS,Y4000\nVice President,Highland Holdings,Y4000\nPresident,J Golden Financial Services Llc,F0000\n\"SINNREICH, WASSERMAN, GRUBIN CAHILL\",,Y4000\nSenior Research Associate,\"MPR Associates, Inc\",Y4000\nTeacher/Tutor,Self,G0000\nRETIRED PROFESSOR,RENSSELAER POLYTECHNIC INST,J1200\nOD/HRD Consultant-Tr,self employed,J1200\nFAILURE ANALYSIS ASSOCIATES INC,,B4400\nPresident,\"Brent and Sam's Cookies\",G2100\nGarloge Coop,Rcs,Y4000\nNE FU President,NE Farmers Union,A6000\nHOCHMAN SALKIN RETTIG,ATTORNEY,Z9500\nSALAMANDER LLC,,J1200\nRetail Guitar Store,Self employed,Y4000\nPARTNER,MB REAL ESTATE LLC,F4500\nSVP HRODI,FREDDIE MAC,F4600\nCREW MEMBER,MACK II INC,G2900\nFaculty,Metropolitan State C,Y4000\nGEORGIA CRUSHED STONE ASSOCIATION,,B5100\nEAGLE MORTGAGE,,F4600\nVice President- UAV,AAI,D4000\nAttorney,Ire Miller Danadio & Ryan,K1000\nREAL ESTATE,WALTON DEVELOPMENT AND MANAGEMENT/R,Y4000\nLobbyist,\"Aronoff, Rosen & Hunt\",K1000\nBanker,South Dakota Bankers Association,F1100\nVALUATION INVESTMENT CO,,F7000\nINVESTMENT PROFESSIONAL,SARATOGA MANAGEMENT CO. LLC,F2600\nEXECUTIVE,ASTAR USA LLC,T1500\nATTORN,U.S. ARMY CORPS OF ENGINEERS,X5000\nGUEST SERVICES,MILLENIUM HARVEST HOUSE HOTEL,T9100\nMEDICAL INVESTMENT TRUST,,F7000\nAMANA,,D3000\nMedical Doctor,Ophthalmic Surgeons & Counsel,Y4000\nBusiness Owner,\"Naturalscape, Inc\",Y4000\nRETIRED JOURNALIST,,J7400\nINVESTMENTS,TREMONT CAPITAL,C2000\nMuseum Admin,Burke Museum,X4200\nVICE PRE,MARTIN HARRIS CONSTRUCTION,B1500\nADMINISTRATIVE ASSISTANT,DESORMEAUX FOUNDATION,Y4000\nRe Broker,Darwin Realty,F4200\nC EDWIN REIGHARD & SON,,Y4000\nAttorney,Timothy M. Cary & Associates,Y4000\nCEO,Stoneworks USA,Y4000\nACCOUNTS MANAGER,BANK OF AMERICA,F1100\nENGINEER,TRINITY ENERGY,E1000\nOIL & GAS EXPLORATION,BASAL CORPORATION,Y4000\nRARITAN PERIODICALS,,C1100\nPresident,Alco Tool Supply,Z9500\nPersonal Financial I,\"Woltner Estates, Ltd\",J1100\nPSYCHOLOGIST,UNIVERISTY OF MICHIGAN/PSYCHOLOGIST,H5100\nMEDICAL DEVICE SALES,ULTHERA INC,Y4000\nAttorney,\"Sanders, Schnabel & Brandenburg, PC\",K1000\nTHE BOLAND GROUP,,H1100\nMANCHESTER FINANCIAL,,F0000\nArchitect,Andrews & Anderson,Y4000\nCOO,TENET HEALTHCARE CORPORATION,H2100\nPRESIDENT,MEGADYNE MEDICINE,Y4000\nCOMMODITY TRADER/ATTORNEY,RETIRED,F2200\nMILBAUM CORP,,Y4000\nChief Executive Officer,Sutter Amador Hospital,H2100\nAt Home,At Home,G6500\nVPof Administrative Services,Health Care Corporation of America,Y4000\nExecutive,Barnes/Richardson,Y4000\nURBAN TRASPORTATION PLANNER,HW LOCHNER INC,Y4000\nSALES,BP ENERGY,J1100\nMATTHEWS FORD,,T2300\nPEAK 6 INVESTMENTS,,Y4000\nBARBARA MCCLOUD COUNCILING,,Y4000\nFOUR POINTS HOTEL,,T9100\nLITHO CRAFT INC,,E4200\nINSUR,DEANGELIS & CIFFMAN INSURANCE,F3100\nEDISON ANESTHESIA,,H1130\nSECRETARY-TREASURER,IATSE LOCAL 44,LG400\nTV GAMES NETWORK,,C2300\nChairman,Premier Bankcard,F1000\nCEO,STARBOARD CAPITAL,F0000\nINFO REQUESTED,Stanton Park Group L L C,G5270\nAdministrative,\"Corey J Haggard, MD\",H1100\nATTORNEY-AT-LAW,COVINGTON & BURLING,K1000\nFinancial Analyst,\"Moody's Corp\",F5500\n\"TOMMY'S FOREST PRODUCTS\",,A5000\nATTORNEY,\"HICKS, PORTER. EBENFELD & STEIN PA\",Y4000\nExecutive,AllTel Corp.,J7120\nOwner,RWI Construction,B1500\nInformation Requeste,Montefiure Medical Ctr,H1100\nExecutive,Riverdale Mills Corp.,M2300\nIRISH CO,,Y4000\nBusiness Exec,Dell Inc And Self,C5100\nInterim Innkeeper,Self employed,J1200\nDENTIST,\"S W WEBBER, III, DDS, PA\",Z9500\nFarmer/Marketer,\"Epic Roots, Inc\",J7400\nOWNER,UNION MARKET CORP.,Y4000\nCEO,\"Monarch Beverage Co., Inc.\",G2850\nAttorney,\"Paul, Weiss, Rifkind, Whaton & Garriso\",K1000\nOwner/President,\"'Blue Moon Motorsports, LLC.'\",Y4000\nDesigner,One Lucky Guitar,J1200\nMETALITE,,Y4000\nPresident,Checkered Flag Toyota Scion,T2300\nDirector,Clark & Weinstock,J1200\nNon Profit Administr,Self Employed,J1200\nJK AUTOMOTIVE GROUP INC,,T2000\nRETIRED,SUN STONE CORP.,X1200\nSenior Controller,State Bank and Trust Company,F1000\nEDUC THERAPIST,,Y4000\nAUTOMOBILE DEALER OWN,SELF-EMPLOYED,T2300\nPEO EXECUTIVE,\"ADVANSTAFF, INC.\",G5270\nPRESIDENT & COO,ZACHRY CONSTRUCTION CO.,B1000\n\"Gerson, Lehman & Co.\",,F2100\nExecutive,P. Kaufmann Inc,Y4000\nProperty Manager,Mackenzie-Slye,Y4000\nLOZIER,,M2300\n\"JOHNSTON'S PORT 33\",,Y4000\nPainter,PVSC,Y4000\nPresident CEO,Valleywide Health Systems,Y4000\nFORT LEWIS COLLEGE,,H5100\nMechanic,Sts Line Maintenance,Y4000\nPresident,Information Management Corp.,J9000\nSR. STATE GOVERNMENT RELATIONS REPRESE,PUGET SOUND ENERGY,E1620\nCLO,FARMERS INSURANCE,F3100\nPROF,UNIVERSITY SOUTHERN CALIFORNIA,J1200\nCFO,Doctors Hospital of Sarasota,H2100\nSTOCKBROKER,WALTER N. FRANK CO.,Y4000\nFOUNDER AND CHAIRMAN,VERITAS CAPITAL,F2600\nPROCESS TECHNICIAN,MARATHON PETROLEUM,E1160\nDirector of Sales,Bradfoote,B5100\nGeneral Counsel and,Standard Renewable Energy Grou,E1500\nBUILDER,EAGLE CREEK CONST,Y4000\nPRESIDENT,FRANCISCAN HEALTH SYSTEM,H0000\nEXECUTIVE,MADISON DEARBORN PARTNERS/EXECUTIVE,F2600\nManager,McEntire Produce,G2500\nINVESTMENT MANAGEMENT,MARWOOD GROUP,K1000\nBERGNER BOCKORNY CLOUGH,,K2100\nNP DUMMIT CHEVROLET,SELF,T2300\nRECONSTRUCTIONIST RABBINICAL COLLEG,,X7000\nMOTORCYCLE DEALER,,Y4000\nBLYTHEVILLE-GOSNELL REGIONAL AIRPOR,,Y4000\nInvestments,First Manhattan Co,F2000\nSELF,THERAPIST,H1700\nATTORNEY,LEGGHIO & ISRAEL,Y4000\nCOMMUNICATIONS FUND,,Y4000\nBALL & WEED P C,,K1000\nASSOCIATE PROFESSOR OF MEDICINE,VA COMMONWEALTH UNIVERSITY,Z9500\nSR. ASSOC. GENERAL C,ANHEUSER-BUSCH COS. INC.,G2810\nPresident,Datalist Development,Y4000\nLawyer,\"Kubasiak, Fylstra, Thorpe & Rotunno, P\",K1000\nCEO,OPTOPO GROUP INC.,Y4000\n\"VICE-PRESIDENT, POLITICAL & EXTERNAL A\",EDISON ELECTRIC INSTITUTE,E1600\nMANAGEMENT CONSULTANT,CHANNEL PRICING ASSOCIATES INC.,Y4000\nHomemaker,Self-employed,F2700\nATTORNEY,\"FERRERI & FOGLE, PLLC\",K1000\nFounder,Center View Partners,F2100\nn,N,J5100\nEXECUTIVE,TOYOTA,Y4000\nAttorney,Electir Cooperative of Arkansas,E1610\nM: INVESTMENT B,S: CITY OF WESTPORT,J5100\nPREMIER MARKETING INC,,Y4000\nMANAGER,YUCAPAI COS,Y4000\nAMERICAN IMAGING/OWNER/PRESIDENT,,Y4000\nCouncilwoman,Town of Clinton,X3000\nART DIRECTOR ED,J.W. SIEG & COMPANY,Y4000\nCHAI,WELLMED MEDICAL MANAGEMENT INC,H3000\nMID CONTINENT VENTURES,,F2500\n\"DANVILLE WOMEN'S CARE\",,Y4000\nSMITH EDWARDS ARCHS,,Y4000\nSTUDENT,HARVARD UNIVERSITY EXTENSION SCHOOL,H5100\nC. E. O.,\"C. P. B. International, Inc.\",Y4000\nIT CONSULTANT,CENTROID SYSTEMS,X1200\n\"Director, Economics\",APPA,E1600\nENGINEER,A9.COM,J1200\nOWNER,MERINE TRANSPORTATION SER.,J1100\nNATIONAL EQUESTRIAN CTRS INC,,Y4000\nWRITER,SELF,C2900\nBuyer,Coast Lighting Inc.,M6000\nSales,CPU Tech,Y4000\n\"CENTER FOR STRATEGIC & INT'L\",,J5000\nPRESIDENT,TICKETMASTER,Y4000\nUW EXTENSION,,Y4000\nJACOBI BUILDING MATERIALS,,Y4000\nROYAL MARINE INDUSTRIES INC.,,T6100\nSCOTSWOOD INC,,Y4000\nHEALTHCARE EXECUTIVE,HEALTHCARE MANAGEMENT ASSOCIATES/HE,H2100\nChairman,\"Devry, Inc.\",H5200\nPhysician,Robin M Leavy M. D.,H1100\nDermatologist,MCHA-Montpelier Clinic,H1130\nAttorney,\"Montgomery, Mccracken, Walker & Rhoad\",K1000\nLAWYER,DISABILITY RIGHTS NEW MEXICO,Y4000\nAttorney,\"Riedl, Mccloskey & Waring\",K1000\nDirector Of Engineering,Gerogia Pacific,B4400\nPROPERTY,THE JOSEPH MULLAN COMPANY,Y4000\nATT,FRESHFIELDS BRUCKHAUES DERINGER,K1200\nROEDEL PARSONS HILL & KOCH LAW F,,K1000\nPHYSICIAN,NEA,L1300\nAdministrator,Motorola,C4600\nJudge,LA S Calif,X3200\nEVP CHIEF,TENET HEALTHSYSTEM-TEXAS,H2100\nSUPERVISOR,BOLIVAR COUNTY,X3000\nSTRATEGIC COMMUNICATIONS,,J1100\nATTORNEY,\"BRENNAN,STEIL LAW FIRM\",K1000\nLOCKHEED IMS,,D2000\nPRE,LEON J. HOCHHEISER COMPANY INC.,F3300\nLOBBYIST,\"TARPLIN DOWNS & YOUNG, LLC\",K2000\nSafety Director,Ozinga Brothers,B5100\nWEALTH SPECIALIST,WELLS FARGO BANK,F1100\nWEALTH MANAGER,BELL INVESTMENT ADVI,F2100\nRetail Grocery,Retired,X1200\nMARKETING DIRECTOR,\"FCNH, INC.\",Y4000\nReal Estate Manager,\"Atlantic Realty Partners, Inc.\",F4200\nADMINIST,PATHFINDER MANAGEMENT INC.,M2000\nLOBBYIST,PODESA GROUP,K2000\nSales,Ibm Corporation,C5100\nUrologist,Urology Associates,H3200\nFEDUCIARY INTERMEDIARY,,Y4000\nELLWOOD-NOLAN INC,,Y4000\nSENIORS HOUSING,THE ARBOR COMPANY,Y4000\nVENTURE CAPITALIST,SEVENTYSIX CAPITAL,Y4000\nSoftware Engineer,Incipient Inc.,Y4000\nCLAY DESIGN,,Y4000\nExecutive,\"N.F.S. Associates, Inc.\",Y4000\nEVP,Best Buy Co,J1200\nGOVERNMENT SERVICES,\"FROST BROWN TODD, LLC\",K1000\nQUINCY MEXICAN INC,,G2900\nVice President,United Health Services,H2100\nHealth Insurance Sales,Self,F3100\nCounselor,Metropolitan Family Services,H6000\nEVP COO,Brinker International,G2900\nEXECUTIVE VICE PRESIDENT,TCF,F1100\n\"French Teacher, Nbct\",Los Angeles Unified Scho,X3500\nPRUET COMPANIES,,Y4000\nSYROREX INFO SYSTEMS,,C5130\nINSURANCE AGENT,\"MEADORS, ADAMS & LEE, INC.\",Y4000\nCHAI,MID-OHIO ENERGY COOPERATIVE IN,E1000\nEXECUTIVE,METCOR,J1200\nTextiles Professional,Independent Contractor,B3000\nSUPERVISOR,FORD MOTOR COMPANY,T2100\nEpiscopal Priest,\"St George's Episcopal Church\",X7000\nJEWELER,J. DUFFEY JEWELERS,G4600\nAttorney,\"Gardere, Wynn, Sewell\",K1000\nNORTHERN CAPITAL,,F0000\nComputer Training,Self,C5100\nFINANCIA,KMS FINANCIAL SERVICES INC,F0000\nBANKER,INTERSTATE INVESTMENT &TRUST,Y4000\n3RD LETTER MAILED,,K2000\nAttorney,\"Robert W Reid, LLC\",Y4000\nVICE PR,\"J CALNAN & ASSOCIATES, INC.\",Y4000\nTrauma Surgeon,UCSF Fresno,Y4000\nEAST MEADOW MGMT GROUP,,Y4000\nEngineer,Mannick & Smith,F5100\nIT Consultant,Self,C5130\nPATHOLOG,GOTTLIEB MEMORIAL HOSPITAL,H2100\nEditor,\"O'Reilly And Associates, Inc.\",Y4000\nConsultant,Agate Line Consulting,Y4000\nMORTGAGE BANKER,MAINE HOME MORTGAGE CORP.,F4600\nVP ENGINEERING,MEANS INDUSTRIES,M2300\nlawyer,The Hamilton Law Firm,K1000\nPrincipal,Laterllink,Y4000\nPHYSICIAN,Q. C. W. S. A.,Y4000\nOwner/Administrator,Bayberry Care Center,Y4000\nPROFESSIONAL WRITER,SELF,Z9500\nARTIST,SELF-EMPLOYED,K2100\nOwner,\"Cassandra Dillon,  Atty\",Y4000\nPRESIDENT,AMER. OCEAN ENTERP.,T5100\nDOCTOR,\"USHAKANT THAKKAR, M.D.\",H1100\nReal Estate Broker,Century 21 AAA Real Estate,F4200\nBURGREEN & BLACK GIN & FERTIL,,A4100\nAttorney,Hellring Lindeman Goldstein & Siegal,Y4000\nFinanicail Planned,Self-Employed,Y4000\nLANDSCAPE ARCHITECT,SELF,Z9500\nFINANCE,ERIN ENGINEERING,B4400\nPLANTATION RESORTS,,Y4000\nProfessor,Bucks County Community C,Y4000\nProfessor - Retired,Quis College,X1200\nCENTURY AMERICA,,M5000\nTAWAS FOOT CLINIC,,Y4000\nENVIRONMENTAL CONSULTANT,SELF,JE300\nSales Executive,Hewitt Associates,G5270\nPROFESSIONAL DIAGNOSTICS MGM,,Y4000\nVP Single Family,Fannie Mae,F4600\nLEGAL RECRUITER,SELF/LEGAL RECRUITER,Y4000\nBUSINESS DEVELOPMENT.,\"WEIL, GOTSHAL & MANGES, LLP\",K1000\nPresident,Tiger Press,Y4000\nFLIGHT ATTENDANT,TWA,T1100\nEXECUTIVE,DISH NETWORK,Z9500\nEngineer,Emulex Corporation,J1200\nFINANCIAL CONSULTANT,ROCKLAND MILLS GROUP,Y4000\nMORTGAGE OFFICER,1ST MARINER BANK,F1000\nHOLIDY SANDS MOTEL,,T9100\nEXECUTIVE,RIPPLE COMMUNICATIONS,J1100\nREAL ESTAT,NOVOGRADAC & COMPANY LLC,F5100\nEMERGENCY PHYSICIA,ST JUDE HOSPITAL,H1100\nPROJECT MANAGER,SELF,C1100\nStrategic Account Manager,Tectura Corporation,C5130\nREAL ESTATE,KOLSKY GROUP,Y4000\nPATTERN WARMONT,,K1000\nCeo,Asian Village Atlanta,Y4000\nLOJEK CO. INC.,,B0500\nDIRECTOR OF STATE GOVERNMEN,COMCAST,C2200\n\"BENNETT, BROOCKS\",,Y4000\nNurse Professor and Director,South Carolina State University,H5100\nMANAGING PARTNER,REED SMITH,K1000\nOwner,Chiropractic One,H1500\nBOOKKEEPER,DRIVER BENEFITX INC.,Y4000\nPRESIDENT,REID & ASSOCIATES,Y4000\nBORDER STATES,,B1000\nEXECUTIVE DIRECTOR,GREEN CHANGE,Y4000\nProperty Manager,BBK Ventures LLC,Y4000\nLIMOUSINE WERKS,,Y4000\nAUTO PARTS & ACCES ASSN,,T2200\nCEO,,B4400\nQUALITY SHADE INFO SYSTEM,,Y4000\nC.E.O.,WATON LAND COMPANY,F4100\nPres And Ceo,Piw,Y4000\nFARMER/RANCHER,RETIRED,X1200\nOIL & GAS PRODUCTION,DEVON ENERGY,E1150\nASST TO THE PRESIDENT,NOW HEALTH GROUP INC.,H4600\nNAVAJO SHIPPING AGENCY INC,,T6200\nMarketing,Sierra Club,JE300\nexecutive,wise recycling LLC,E3000\nOWNER,VOICE SOLUTIONS,Y4000\nLITERARY AGE,THE AXELROD AGENCY,Y4000\nGovernment Sales,Trimble,D3000\nCEO,Lawrence Investments,F0000\nFilm Producer,Brave New Films,C2400\nWINTON BLOUNT & ASSOCIATE,,F2100\nBUSINESS COMPUTER DESIGN,,C5100\nCARPENTER CONTRACT,ISLAND ACOUSTICS,Y4000\n\"COBB, GUGINO & WILLIAMSON\",,Y4000\nS A B LAW FIRM,,K1000\nNATIONAL FAMILY PLANNING & HEALTH S,,Y4000\nBusiness Owner,Brooks Staffing,G5250\nCOMMISSIONER,LENOIR COUNTY,Y4000\nCONSULTANT,\"F. JOSEPH MORAVEC, L.L.C.\",Y4000\nROBERT LISS PA,,H1100\nDAVID HOCKER & ASSOCIATES,,Y4000\nPublisher,Journal of Business,Y4000\nCONSTRUCTIO,NATIONWIDE CONSTRUCTION,B1500\nPAULS VALLEY NATIONAL BAN,,F1100\nOffice Manager,Retired,X1200\nAttorney,\"Law Offices of Ben Gering, Sr.\",K1000\nOwner,Hound of The Basketvilles,Y4000\nASSOCIA,ARCHDIOCESE OF INDIANAPOLIS,X7000\nCouncil Member,Town of Southampton,Y4000\nInformation Requeste,Footcare of Central TX,Y4000\nENGINEERING CONSULTANT,EUTAW UTILITIES,Y4000\nBANKING,INVESTORSBANK,Y4000\nREALTOR,PHIPPS REALTY/REALTOR,J9000\nVP CHINA O,PRESTOLITE ELECTRIC INC.,Y4000\nAUCTIONEER,AUCTIONEERS INC.,G5000\nBUSINESS OWNER,\"PEHL, FOUTZ, FOUTZ, & TEEGARDEN\",F5100\nANALYST,INSANA CAPITAL PARTNERS,F2100\nPRESIDENT & CEO,\"RAIN CII CARBON, LLC\",E1160\nS D S MANAGEMENT INC,,F4100\nConsultant,Norway Hill Associates,G5200\n\"VP, INFO\",LYONDELL CHEMICAL COMPANY,M1000\nPART TIME EMPLOYEE,INFORMATION REQUESTED PER BEST EFFORTS,Y4000\nPHYSICIAN,EPIC CARE,Y4000\nATTORNEY,DONAHOE JAMESON & CARROLL,Y4000\nPresident,City First Enterprises,Y4000\nRETIRED - REAL ESTATE,RETIRED - TOLD DEV  CO,X1200\nCHIEF EXECUT,MORGAN MURPHY STATIONS,K1000\nBuilder,Tollgate Farms,B2000\nAttorney,Heyl Royster,Y4000\nREAL ESTATE,BOSTON GLOBAL INVESTORS,F4000\nBoard Member,Acadia Healthcare,H2100\nPartner,Ahart Frinzi & Smith,F3100\nCEO,Pathway Senior Living,H2200\nSocial Worker,Institute For Human,Y4000\nMusician,Self Employed,C2600\nPRESIDENT,OSTRIKER,G5270\nOral Surgeon,Eastside Oral Surgery,H1400\nExecutive,Not Employed,J9000\nCHAIRMAN,CAIN & BULTMAN INC.,Y4000\nProfessor,UT School of Public Health,X1200\nREAL ESTATE,MELVIN MARK CO.,F4000\nMILLER AND HOLBROOKE,,K1000\nPublic Relations,Wragg and Casas,G5210\nAT,TOBEROFF TESSLER & SCHHOCHET LLP,J1200\nSELF-EMPLOYED/INVESTMENT MANAGER/CD,,X7000\nFINANCIAL SERVICES,HERRIG & HERRIG MNGTB,Y4000\nENGINEER,PRATT & WHITNEY/UNITED TECHNOLOGIES,D2000\nREAL ESTATE INVESTMENTS,\"FOUR M INVESTMENTS, LLC\",F2100\nPresident,Peace,Y4000\nVP SOUTHERN COM,ALLIANT TECHSYSTEMS,D8000\nCEO,\"Midwest Stihl, Inc.\",Y4000\nDISTRIBUTION,FERGUSON ENTERPRISES INC.,Y4000\nSKYLAND PINES,MASSILLION,Y4000\nPresident & CEO,SEMI,C5110\nDirector of Athletics,Lock Haven University,J7400\nFARMER,C.J. RITCHIE FARMS,A1000\nOwner,Agape International Spiritual Ctr,Y4000\nCHILDCARE,,G5000\n\"KADENACY, MENDELSON ET AL\",,K1000\nGeneral Manager,MidAmerican Energy Holdings Co,E1620\nFLAKE INDUSTRIAL SERVICES INC,,G5500\nEXECUTIVE,BUILDING & LAND TECH,F4100\nPolitical Consultant,MSHC Partners,Z9500\nphysician,IBM,C5100\nBanking,WHITAKER BANK CORPORATION,F1000\nA,\"UNIVERSITY OF ALABAMA, BIRMINGHAM\",H1130\nentertainment corres,USA Bureau,Y4000\nFARNSWORTH DEVELOPMENT CO,,F4000\nCEO,CCCS CORP,Y4000\nPRESIDENT,S.H. NUSIM ASSOCIATES,Y4000\nCONSULTANT,RRS & COMPANY,K1000\nZAYAC & ASSOCIATES INC,,Y4000\nPresident,PCA,B5100\nADVISORY BOARD,\"WDS, INC.\",F1100\nSTUDENT,INFORMATION REQUESTED,J4000\nSR VICE PRESIDENT,NCTA,C2200\nSINGLETARY & TRASH,,Y4000\nTECHNICIAN,DIEBOLD,C5000\nPRESIDENT,PAUL HOOYER TRUCKING INC.,G1200\nBELL SOUTH LONG DISTANCE INC.,,C4200\nINVESTMENT BANKING,DEUTSCHE BANK/INVESTMENT BANKING,F1100\nNEBRAS,US DEPARTMENT OF AGRICULTURE,X3000\nOrganizer,Sheet Metal Workers Local No. 83,LB100\nMTV,,C2000\nRegistered Nurse,Advocate South Suburban Hospital,H2100\nFARMER,\"SELF - HARLAND'S CREEK FARM\",A1000\nPARTNER,AUFGANG + SUBOTOVSKY ARCHITECTURE,B4200\nPRINCIPAL,BARNEY & BARNEY LLC,F3100\nActress,RKO Pictures,C2400\nU S GEOLOGICAL SURVEY,,X3000\nPresident,Everhart Honda,T2300\nLUDWIG & ROBINSON,,Y4000\nRestaurant owner,Taste of Texas,G2900\nCivil Engineer,SPS New England,B1500\nVP Sales and Marketing,Monrovia,Y4000\nEXECUTIVE,GULF STAR GROUP,Y4000\nRUSSELL RAE & ZAPPALA,,F2100\n\"Director, Executive Communications\",Bank of America,F1100\nBANK PRESIDENT,B.B.V.A. COMPASS,F1100\nPRESIDENT,S ENTERPRISES,Y4000\nATCO INVESTMENTS,,F4500\nPHYSICIAN,AULTMAN HOSPITAL,H1100\nAttorney,\"Martinez, Odell, & Calabria\",K1000\nINFORMATION PEN,INFORMATION PENDING,F4100\nPLANNING INNOVATIONS INC,,G5200\nJOHNS HOPKINS HOSPITAL,,H2100\nCOLDWELL BANKER/PHYSICIAN/REALTOR,,F4200\nOwner,Marquardt Trucking,T3100\nTRANSITION COUNSELOR,SELF,Y4000\nJUDITH HEINTZ LANDSCAPE,,B3600\ndole,,E1160\nInsurance Agent,Fox Insurance Agent,F3100\nAdmin Asst,Kirkland & Ellis,K1000\nCoo,Tag,Y4000\nEXECUTIVE DIRECTOR,GLOBAL HARVEST INITIATIVE,Y4000\nSTATED CLERK,PRESBYTERY OF TWIN CITIES AREA,Y4000\nATTORNEY,KAYSER & REDFEN,J1100\nEXECUTIVE MANUFACTUR,\"CONTEMPORARY, INC.\",Y4000\nPROFESSOR,UNIV CALIFORNIA BERKELEY,H5100\nOffice Manager,\"Becco Contractors, Inc\",Y4000\nDIRECTOR,PUBLIC HEATLH DAYTON &  MONTGOMERY COU,Y4000\nAlas,,Y4000\nVice President  Gove,Time Warner Cable,C2200\nSEBRA,,Y4000\nROCKEFELLER FINANCIAL SER,,F5500\nEXECUTIVE,TONIX,Y4000\nMTN VIEW TELCO,,Y4000\nDAILY NEWS PUBL CO,,C1100\nPhysician,Ucla Medical Center,H2100\nSALES MANAGER,HONDA WINDWARD/SALES MANAGER,T2310\n\"COLUMBIA WOMEN'S & CHILDREN'S HOSPI\",,H2100\nINSURANCE,BEARENCE MANAGEMENT GROUP,Y4000\nCommercial Real Estate,Prism Realty,F4200\nAUTIER WELDING INC,,Y4000\nATTORNEY,\"LIVESAY & MYERS, P.C.\",Y4000\nHuman Resources Dire,Morries Automotive Group,T2000\nBOSTON MUTUAL LIFE INSURANCE COMPAN,,F3300\n\"VICE PRESIDENT, HR\",DISNEY,C2000\nGALLERY OWNER,LINDA DURHAM CONTEMPORARY ART,Y4000\nWES FINCH CHEV OLDS CHRY,,T2300\nMANAGER,ADAMS-ISC,Y4000\nPrincipal,Benefit Solutions Co,J1100\nGENERAL MANAGER,CASSITY JONES,B5200\nOWNER,DUNAWAY BROS. INC.,Y4000\nPRESIDENT,GR HERBERGERS,Y4000\nAccopuntant,Self employed,Y4000\nBEST EFFORT,BEST EFFORT,E1620\nEDPOINT INC.,,Y4000\nAdministrative Assis,KPMG LLP,F5100\nANDERSON RANCH ARTS CTR,,J7700\nREAL ESTATE INVESTOR,HAMILTON PARTNERS,F4100\nSELF EMPLOYED/HOUSEWIFE/WRITER,,Y1000\nANGELO CORVA & ASSOCIATES,,Y4000\nPresident,Wisconsin Oven Corporation,M2300\nPARTNER,HEALEY DEVELOPMENT LLC,F4100\nIT Director,Syntel Inc,Y4000\nGrant Writer,Pacer Center,Y4000\nVICE PRESIDENT,GREAT LAKES DREDGE,B1200\nCEO,\"Sportmart, Inc.\",Y4000\nP J KEELEY,,Y4000\nExecutive Recruiter,Heidrick&Struggles,G5200\nRESEARCHER,THE ALLIANCE FOR QUALITY EDUCATION,Z9500\nDIRECTOR,DISH NETWORK,Z9500\nExecutive Vice President,Brown and Brown of Russellville,F3100\n\"Director, Federal Legislative Affairs\",American Wind Energy Association,E1500\nAKT DEV CORP,,F4100\nAUTO DEALER,RAY CHEVERLOT,T2300\nVICE PRESIDENT,THE LONDEN COMPANIES,F3300\nVICE PRESIDENT,\"M & D MECHANICAL CONTRACTORS, INC.\",B0500\nCO-CHAIR,MERCURY,Y4000\nSoftware Consultant,NEASI WEBER INTERNATIONAL,Y4000\nBALDWIN & CORNELIUS,,Y4000\nINSURANCE AGENT,\"CROWDER & HOLLOWAY, INC.\",F3100\nGOLD KEY BUILDERS,,Y4000\nREAL ESTATE AGENT,\"PEOPLE'S CHOICE REALTY\",F4200\nRetailer,Nell Hills Corp,Y4000\nDAVID JONES & ASSN,,F4200\nPRINCETON FINANCIAL GROUP LLC,,Y4000\nInsurance Agent,Steve Hartmen Agency,Y4000\nCar Lot Manager,Happy Auto Sales,T2300\nBAY STATE GAS COMPANY,,E1140\nCEO,Socialmedian Inc,Y4000\nEVELYN AND ARTHUR,,Y4000\nPresident,Globetrotters Engineering,B4000\nMD,THE EYE CARE GROUP PC,Y4000\nMaintenance,LOS ANGELES CTY METRO TRAN AUT,LT000\nAttorney,Mezibov & Jenkins,K1000\nPRESIDENT,THE CARING INSTITUTE/PRESIDENT,Y4000\nPresident,American Express,F1400\nTechnician,IPG,Y4000\nBELO CORP,,Y4000\nREGIONAL REPRESENTATIVE,PSI,C5000\nCEO,HOLLAND AMERICA LINE,T6250\nCTO,Bridgewave Communications,Y4000\nASSOC. DIRECTOR FOR INNOVATION AND IND,NIST,Y4000\nHUMAN RESOURCES,ASSURANT GROUP,F3100\nAttorney,\"Isaacman, Kaufman & Painter\",K1000\nBANK OF CALIFORNIA,,M7000\nCo- Owner,J V Rhoads Construction,B1500\nADVERTISING,ZIMMERMAN,G5210\nMAUN & SIMON,,Y4000\n\"VP, Human Resources\",UTC Fire & Security,D2000\nAGC OF GRTR MILWAUKEE INC,,B1000\nCEO Mercy Health Sys,Mercy,H2100\nCROOKS OSCHER & CO,,Y4000\nPORTRAIT PAINTINGS,SELF EMPLOYED,G0000\nALASKA PETROLEUM CONTRACTORS INC.,,B0500\nZIDELL COMPANIES,,B1000\nProfessor,IA State University/Profesor of Soc,Y4000\nJ & M DEVELOPMENT,,Y4000\nCONSTRUCTION,MYERS BUILDING SYSTEMS,Y4000\nrealtor - entreprene,\"self- Gallagher & Lindsey Realtors, In\",F4200\nJAI PRESS INC,,Y4000\nConservation director,NMWF,Y4000\nINVESTOR,SELF/JASON WEISS,J7600\nOPTHALMOLOG,EYE CLINIC OF WISCONSIN,Y4000\nAttorney,\"Cohen and Grisby, LLP\",K1000\nMILLWRIGHT,NEW PAGE CORPORATION,Y4000\nFOERLA,DNSA07L,Y4000\nSenior Vice President,\"United Road Towing, Inc\",Y0000\nATTORNEY,WAITE SCHNEIDER ET AL,K1000\nPolitical Consultant,Winning Connections,J1200\nMONTICELLO MOBILE HOME PARK,,F4400\nConsultant and Mediator,Self employed,Y4000\nREGIONAL BOARD MEMBER,UNICEF,X8000\nINVESTMENT MA,BRANMAN CAPITAL CORP.,F0000\nOwner/Businessman,\"Silverstein Properties, Inc\",F4000\nAttorney,Adams And Reese Llp,K1000\nVICE PRESIDENT,PRONTO CONSTRUCTION,B1500\nCHAIRMAN,LILLIAN VERNON CORP,C5140\nSWEDISH AMERICAN REG. CANCER CENTER,,Y4000\nSENIOR ADVISOR,U.S. FOOD & DRUG ADMIN.,Y4000\nEASTERN OIL CO,,E1100\n\"owner, health food s\",self-employed,G0000\nCEO,CELI ELECTRIC,Y4000\nOwner,Bedinger and Company,Y4000\nChairman of the Boar,Lykes Bros. Inc.,A1400\nCORPORATE COUNSEL,INTRAWEST,Y4000\n\"Director, Profit/not for Profit Org\",The Dignity Project,Y4000\nTeacher,SFUSD,J1200\nNephrologist,Metropolitan Nephrology Associ,H1130\nAREA GENERAL MANAGER,HOTEL FELIX/AREA GENERAL MANAGER,T9100\nCEO,\"Nicor, Inc.\",E1140\nPHYSICIAN,ALASKA CARDIOVASCULAR CONSULTA,H1130\nVICE,AMERICAN AXLE & MANUFACTURING,T2200\nManufacturer,CEI,J7400\nLAWYER,DEPARTMENT OF INTERIOR,X3000\nATTORNEY,\"CONSTONGY, BROOKS & SMITH\",K1000\nREGENT PARTNERS,,F4200\nInsurance Agent,\"Emil Rummel Agency, Inc\",F3100\nBANKER,FIRST PRIVATE BANK,F1000\nTHUNDERHEAD BEVERAGES,,Y4000\nSupervisor,CDPHP,J7400\nSecreta,Coc Natural Gas Exploration,E1140\nATTORNEY,\"MCLANE COMPANY, INC.\",G2500\nDEVE,GALLOWAY DEVELOPMENT GROUP LLC,Y4000\nCENTRE COUNTY I D C,,Y4000\nCUSTOMER CARE,TIME WARNER CABLE/CUSTOMER CARE,C2200\nVICE-PRESIDENT,M.G.I.C.,F4600\nDECLINED,DECLINED,X3000\n\"WILLIE BROWN FOR MAYOR '99\",,J1200\n\"WICKWIRE, GREENE, CROSBY, BREWER &\",,K1000\nLAWYER,COPE HUDSON REED & MCCREAR,K1000\nBanker,Valley Community Bank,F1000\nDatabase Administrator,Alliant Life Insurance,F3300\nVC HASTINGS,,H5170\nSOUTHERN WING,,Y4000\nWinery Owners,Celia Ramsay,Y4000\nSocial Services,Family Services of Western PA,H6000\nEXECUTIVE CHAIRMAN,NATIONAL HOLDINGS/NATIONAL SEC,F2100\nCOO,HST,M5100\nCHIEF EXECUTIVE OFFICER,\"A-PROTECHNICAL AEROSPACE SVCS, INC.\",Y4000\nPARTNER,THE FRANKLIN PARTNERSHIP,K2000\nDIRECTOR/ADMINISTRATOR,ENVIRONMENTAL DEFENSE FUND,JE300\nSecretary/Treasurer,Umatilla Electric Cooperative,E1610\nWholesales,ANHEUSER BUSCH COS.,G2810\nATTORNEY,\"DUNN & DAVIDSON, LLP\",K1000\nAttorney,McCurdy & Candler,K1000\nAMTREND,,Y4000\nUNIVERSITY OF THE INCARNATE WORD,,H5100\nTV EXECUTIVE,SINCLAIR BROADCAST GROUP,C2100\nNATIONAL ASSOC OF LETTER CARRIERS,,L1500\nElectrical Design,None,Y4000\nTrustee,Harmen Fnd,Y4000\nPRESIDENT,MAGUIRE FORD LINCOLN,T2300\nPHD STUDENT,COLUMBIA UNIVERSITY,H5100\nTITLE INSURANCE,KINCY ABSTRACT & SABINE TITLE,F4300\nCOOL RIVER TUBING/OWNER / OPERATOR,,Y4000\nPRUDENTIAL AMBROSE & SHOEMAKER RE,,Y4000\nCHAIRMAN AND CEO,\"HUDSON GROUP, LLC\",F4000\nPRESIDENT,MISSISSPPI RIVER CORP.,Y4000\nESS BROS & SONS INC,,Y4000\nMARTIN MARIETTA ENERGY GROUP,,F1100\nEXECUTIVE,PUMP & POWER,Y4000\n\"Developer, Co-Owner\",Santa Margarita Ranch,A3000\nSELF/DJ SPECIALTIES/VICE PRESIDENT,,Y4000\nSCIENTIST,M.I.T.,Y1000\nRETIRED PRESIDENT & CEO,KEYCORP,X1200\nCHAIRMAN AND FOUNDER,MAGUIRE ASSOCIATES,Y4000\nAttorney,Brinkley Morgan et al,K1000\nD.S.T. OUTPUT,,Y4000\nCPA,Locus Financial Group LLC,F0000\nLAW OFFICES OF CHARLES MEYER,,K1000\nOil & Gas,RKI Exploration,Y4000\nVP SOFTWARE DEVELOPM,SABRE HOLDINGS,T9000\nBusiness owner - Consulting and Real E,Gobi Corporation,Y4000\nDEL REY SHORES/NORTH/PARTNER,,Y4000\nPROFESSOR,RICHLAND COLLEGE,H5100\nINDUSTRIAL MA,HAMILTON SAFE COMPANY,Y4000\nPRESIDENT,ALLIANCE FOR DOWNTOWN NY,F4100\nPhysical Plant Manag,Ferris State University,H5100\nATTORNEY,LORAIN COUNTY,Z9500\nPresident,Klondyke Construction,J6200\nAMES SAFETY ENVELOPE CO,,C1300\nPresident,\"Singer Consulting, LLC\",K1000\nPresident,Alvar,Y4000\nPhysician,University of North Carolina,J7150\nCITY PLANNER,CITY IOHA,X3000\nEXECUTIVE,SUPERBULBS,Y4000\nDEALER,KNOEPFLER CHEVROLET CO,T2300\n\"VP, GOVERNMENT RELATIONS\",THE WALT DISNEY COMPANY,C2000\nSHOW PITTMAN,,K2100\n\"Senior Associate, IT\",Active Health Managment,Y4000\nRESEARCHER,PINCHOT INSTITUTE FOR CONSERVATION,Z9500\nCEO,NATL. SECURITY PARTNERS,Y4000\nREGIONAL PROPERTY MANAGER,KPM CAROLINAS,F4500\nOWNER,SHOW-ME RENT TO OWN,G5300\nPartner,Morse Zelnick Rose & Lander,K1000\nInsurance Agent,Robertson-Ryan & Associates Inc,F3100\nSales,Jeri Rice,J5100\nHORIZONS INSURANCE GROUP,,F3100\nWILLIAM R WILSON JR,,K1000\nEXECUTIVE,DENTON VACCUM INC.,C5000\nEXEC VP & PRES & GM,MOTOROLA,C4600\nHEFTER-RADKE LAW FIRM,,K1000\nATTORNEY,PAWTUCKET CU,F1300\nKLINE HEATING & AIR COND.,,B0500\nRealtor,Galleria Collection of F,F4200\nFinance,The Riverside Company,F2100\nNOBIS ENGINEERING INC,,B4400\nMANAGEMENT CONSULTANT,\"PEVEY AND ASSOCIATES, INC.\",Y4000\nANALYST,STATE OF ALASKA,X3000\nWHEAT FARMER,TOM DAVIS FARMS,A1000\nPHYSICIST,U.S. NAVAL RESEARCH LAB,X5000\nAccounting professor,Iowa State University,H5100\nRETIRED,STATE OF IL,X3000\nPRESIDENT & COO,\"CLARK DIETZ, INC.\",B4000\n\"FERGUSON, ENGRG & CONSTRU\",,B1000\nEGYPTOLOGIST,SELF,X0000\nSelf employed,Reinboth,Y4000\nATTORNEY,\"HARDY LEWIS & PAGE, PC\",K1000\nCHAIRMAN/CHIEF EXECUTIVE OFFICER,P. N. C./CHAIRMAN/CHIEF EXECUTIVE O,F1100\nInformation Requeste,\"Int'l Noble Group\",Y4000\nTIMBERLAND MARBLE,,M3200\nPresident/CEO,Doll Distributing Inc.,G2850\nADMINISTRATO,BENEDICTINE UNIVERSITY,H5100\n\"SELFSTORAGE, OFFICES\",SELF-EMPLOYED,G0000\nOWNER,ASSOCIATED MATERIAL & SUPPLY,Y4000\nFINANCIAL OFFICE,INTUITIVE SURGIALL,H4100\nPROFESSOR,SLIPPERY ROCK UNIVERSITY,J7400\nCEO,SILK ROAD TECHNOLOGIES,Y4000\nREPRESENTATI,STATE OF NEW HAMPSHIRE,X3000\nGENERAL MANAGER,LA JOLLA BEACH AND TENNIS CLUB,Y4000\nEvent Planner,AMERICAN MATH SOCIETY,Y4000\nBRAYMAN CONSTRUCTION CORP,,B1500\nMANAGING DIRECTOR,C.A.M.P USA,G6000\nGLOBAL BIOREFINERIES,,Y4000\nATTORNE,PRICKETT JONES & ELLIOTT PA,K1000\nVicechairman and Ceo,Armstrong University,H5100\nSPANISH BROADCASTING SYSTEM,,C2100\nCROW CHEZEK,,Y4000\nPARTNER,BROOKSTONE PARTNERS,F2600\nPRESI,CONSUMER CREDIT OF DES MOINES,Y4000\nSPECIAL ASST TO DEPUTY SECRETARY,DEPT. HEALTH & HUMAN SERVICES,X3000\nHINES INTERESTS LTD PARTNERSHIP,,F4000\nPRINTED PAGE,,Y4000\nDOW LOHNES PLLC,,K1000\nPresident,P&L Railroad,T5100\nMAYER BROWN & PLOTT,,K1000\nPHY,HAMILTON ANESTHESIA ASSOCIATION,H1130\nPhysician,Yakima Valley Farmworkers Clinic,H1100\nMECHANIC,PENELEC,Y4000\nCHAIRMAN OF THE,\"CISCO SYSTEMS, INC\",C5110\nDESERT VALLEY FITNESS,,Y4000\nLAWYER,CHADBOURNE & PARKE LLP,K1000\nCRYSTAL GEYSER WATER CO,,G2600\nRail Coordinator,\"Celanese, Ltd\",M1000\nAcademic,The College Of New Rochelle,H5100\nNEW ENGLAND DOLL & NOVELT,,Y4000\nAdvertising,West Wayne,G5210\nPRESIDENT AND CEO,CANCER TREATMENT CENTERS OF AMERIC,H2100\nBUILDER,MLS HOMES,B2000\nSELF EMPLOYED/FILMMAKER/PRODUCER,,C2400\nGov Staff,Commonwealth Fo Ky,Y4000\nREALTOR,\"WEICHERT, REALTORS,M\",F4200\nNW SCHOOL OF LAW OF LEWIS & CL,,H5170\nVP,LYNCH JONES & RYAN INC.,F2100\nPARTNER,CJ LAKE LLC,K2000\nPRINCIPAL,WELD MANAGEMENT,F4000\nBOOG ALLEN & HAMILTON,,T3100\nExecutive,Transportation Security Admin,X3200\nEastern Insurance Group,President,F3100\nUS Dept Commerce Noaa,,X3000\nEMIGRANT BANK/MILSTEIN PROPERTIES/B,,F4500\nPresident,Mike Quinn Dodge Inc,T2300\nIEC/CE CONSULTING ENGINEERS/ENGINEE,,B4400\nVICE PRESIDENT,\"HERBRUCK'S POULTRY\",A2300\nPresident,Phelps Industries,G4700\nCONSULTANT,GLOBAL HERITAGE FUND,Y4000\nHotel Exec,\"Outrigger Enterprises, Inc\",T9100\nPROFESSOR,DURHAM TECH COM,J1100\nEXECUTIVE,VANGUARD HEALTH SYSTEMS,H2100\nPRESIDENT,CLARKE LITTLEFIELD,Z9500\nSOFTWARE ENGINEER,NIELSEN,G5200\nAgency Manager,Alliance Insurance Group of Arkadelphi,F3100\nOWNER,CHIEF SUPERMARKETS,Y4000\nREAL ESTATE BROKER,ZEPHYR REAL ESTATEC,F4000\nMCHUGH & BRANCATO,,Y4000\nOWNER,\"GARRETT'S PHARMACY\",G4900\nArchitecht,Altman Architects,B4200\nDOCTOR,GLOBALREHAB,Y4000\nChairman,Collateral Mortgage Capital LLC,F4600\nBUSINESS MGR,WESTERN SLOPE AUTO CO,T2000\nINVESTMENT MANAGER,CCM INVESTMENT,Y4000\nOwner,\"God Bless, Inc\",Y4000\nManager,\"Int'l Chromium Plating Co\",M5200\nARC,ROBERT EHMET HAYES & ASSOCIATES,Y4000\nEXECUTIVE,TAMALPAIS HOTEL SERVICE,T9100\nFOUNDER,SIPPRELLE CAPITAL ADVISORS,F2100\nPresident,World Inspection Network Kettering,Y4000\nExecutive,Artel Inc,Y4000\nPresident,\"Suprema, Inc.\",Y4000\nOWNER,YOO TRAVEL,Y4000\nFUNERAL DIRECTOR,QUINN FUNERAL HOME,G5400\nVICE PRESIDENT - HU,PRATT & WHITNEY,D2000\nEXECUTIVE,STRONG POINT GROUP,Y4000\nEVOL INC,,Y4000\nPlanner,Artery Business Committee,Y4000\nCEO,Kirby RIsk Corp,G3000\nCONSULTANT,B.A.E. SYSTEMS,D2000\nADMIN STAFF,LOCAL 237,LT300\nMAIL CARRIER,US POSTAL SERVICE/MAIL CARRIER,J6200\nPRESIDENT,WOLF MEDICAL,Y4000\nAt Home Mom,Self employed,G0000\nCourt Reporter,State Of Wisconsin,X3000\nHENLEY MEAT COMPANY,,G2300\nmom,none,J5100\nST JOSEPH MERCY OAKLAND,,Y4000\nRICKETTS AND TRAVIS,,Y4000\nAttorney,Marcus & Regalado,Y0000\nUNIVERSAL MERCHANDISE,MCA,J1200\nProgrammer,NBT,J1200\nPROFESSOR EMERITUS,SYRACUSE UNIVERSITY,H5100\nPolitical Director,The Humane Society Legislative Fund,J7600\nBusiness owner,\"J S & B Associates, LLC\",Y4000\nGeneral Counsel,Hawthorne Savings,F1200\nCEO,Greenbriar Co.,Y4000\nJONIS MANAGEMENT,,Y4000\nACCOUNTANT,\"JO-CARROLL ENERGY, INC.\",E1610\nMCDONALDS,WRIGHT MGMT,G2900\nManager,\"Central Distributing, LLC\",G2850\nATTORNEY,\"QUA, HALL, HARVEY AND WALSH\",Y4000\nINVESTOR,SELF -EMPLOYED,F7000\nATTORNEY,PETERSON PROPERTIES,F4100\nPILOT,TISMA INC.,Y4000\nCRI LTD,,J1100\nMARKET AND D,UBS FINANCIAL SERVICES,F2100\nOwner,Waste Hauling & Collection,E3000\nPRINCIPAL,THE DILUZIO GROUP L.L.C.,G5200\nPRESIDE,ROWLETT ADVERTISING SERVICE,G5210\nVP,RM Mfg Co,Y4000\nBank loan reviewer,Self-employed,G0000\nCHAIN ACCO,US SMOKELESS BRANDS INC.,A1300\nGATE CITY FEDERAL,,F1200\nATTORNEY,\"EVANS, LATHAM & CAMPISI\",K1000\nVP PROPERTY AND CASUALTY U/W,ALFA MUTUAL INSURANCE COMPANY,A6000\nSOFTWARE PRODUCT MANAGER,AUTODESK INC.,Z9500\nCOUNSEL,ALACHU COUNTY CRISIS CENTER,Z9500\nHR Consultant,Sungard Higher Education,C5120\nVice President,Constella Group,H4000\nMARTINEZ & CAMPOS,,Y4000\nATTORNEY,\"STAGG, TERENZI, CONFUSIONE & WABNIK, L\",Y4000\nPastor,First Baptist Chr Meadowview,X7000\nFOUNDER,TISCH  ILLUMINATION FUND,Y4000\nC.P.A,ABDO EICK & MEYERS L.L.P,Y4000\nPresident & CEO,\"Shamrock Holdings, Inc\",F4200\nBROWN TAPE,,Y4000\nOWNER AND CEO,WHITE INTERESTS/OWNER AND CEO,G5270\nSALES REP,,G0000\nManagement Consultant,The CEO Advantage Group,Y4000\nALPERT BARKER AND RODEM,,Y4000\nRGM BUILDING RENTAL,,Y4000\nPresident,Venture Manufacturing Company,M0000\nLICENSED MARRIA,CONSULTANT SERVICES,Y4000\nGREENWICH HOUSE,,J7400\nOWNER DRILLING OPERATION,,E1150\nSenior General Counsel,GE Capital,M2300\nATLAS CARPET MILL,,M8000\nVAN HOUSEN INSURANCE AGENCY/OWNER/P,,F3100\nINSTITUTE OF CLASSICAL ARCHITECTURE,,B4200\nORG. DEV. CONSULTANT,WILDERWEBER LEADERSHIP GROUP,Y4000\nEXEC,FISH ASSOCIATES,Y4000\nCITY AND COUNTY OF SAN FRANCISCO,,G1100\nLEGISLATIVE POLITICAL CHAIR,,Y4000\nATTORNEY,\"HEFNER, STARK MAROIS\",K1000\nOWNER,BAUER INS. COMPANY,F3100\nAttorney,\"POWER, ROGERS & SMITH\",K1000\nretired,Columbia University,Z9500\nPRIVATE EQUITY,W. L. ROSS & COMPANY,F2100\nUS ATTORNEY-SAN FRANCISCO,,X3200\nINVESTMENT MANAGEMENT,HS SELIGMAN,Y4000\nGOODKNIGH CONSTRUCTION,,B1000\nINFLIGHT NSPRS & MAGS INC,,C1100\nMEDICAL RECEPTIONIST,SELF,X1200\nPresident,Sensirox Inc,Y4000\nQIF MANAGEMENT LLC,,F2100\nEconomist,\"Johnson Smick International, Inc.\",Y4000\nPresident,\"McClelland and Hine, Inc.\",F3100\nPrincipal,Sage Advisors,Y4000\nJ A VALENTI CORP,,Y4000\nAttorney,\"Godosky & Gentile, P.C.\",K1000\nMarket Research,Baselice & Associates,Y4000\nCBL & ASSOC PROPERTY INC,,F4000\nOperations Manager,Argonne Nat Lab,X3000\nREALTOR,EQUITY REAL ESTATE,Z9500\nMOYER PACKING CO,,Y4000\nKANE CPA LLC,,F5100\nSKYLINE OIL COMPANY,,E1100\nPHYSICAL THERAPIST,REALHAB INC.,H1700\nPRESIDENT,ATRIUM HOLDING CO.,Y4000\nATTORNEY,ABBEY TITLE CO,F4300\nOWNER,DOMONS BACKHOE SERVICE,Y4000\nREAL ESTATE MANAGER,A.R.E.P.,F4000\nPROFESSOR EMERITUS,TEXAS A&M UNIVERSITY,H5100\nGURLEY LEEP BUICK,,T2300\nPRINCIPAL,APOLLO MANAGEMENT,F2000\nManager,Traceorg,X4100\nATTORNEY,\"JOEL GRIST, ATTORNEY AT LAW, LLC\",K1000\nVP OF FINAN,BUSHMASTER FIREARMS INC,M5300\nAttorney Mother,Self employed,G0000\nManager,\"Physical Sciences, Inc.\",Y4000\nCURRAN REAL ESTATE,,F4000\nATTORNEY,\"MASION, EDELMAN, BORMAN\",K1000\nCPA,BELISLE VIENS ASSOCIATES PC,Y4000\nSpecial Events,Modern Art Museum,X4200\nPRIEST,DIOCESE OF LAS VEGAS,Y4000\nALEXANDER J FEIGL MD,,H1130\nanalyst,U.S. Department of Energy,X3000\nEXECUTIVE,FREY FARMS,A1000\nLAKEWOOD REPUBLICAN CLUB,,J1100\nAdministrative Assistant,Catholic Diocese of Arlington,X7000\nSELF-EMPLOYED,TIERRA ANTIGUA REALTY,F4200\nTEACHER,CITY OF CAMBRIDGE,JD200\nAG PRODUCTION ENGINEE,SELF EMPLOYED,B4400\nSPEECHWRITER,SELF EMPLOYED,G0000\nCRNA,Bayou Anesthesiology & Pain,H1710\nFounder,\"Bed, Bath and Beyond\",J7150\nPresident/CEO,Simon Properties,F4100\nSMALL BUSINESS OWN,MCCLAVE JEWELERS,Y4000\n\"JOE'S PRECIOUS METALS INC\",,Y4000\nPRESIDENT,COMMERCE PROPERTIES,F4500\nManager,Mautino Distribution Company,Y4000\nBanker,Suntrust,J1200\nTEACHER,MONTGOMERY COLLEGE,H5100\nAVP HUMAN RESOURCES,ASCAP,C2600\nCapital Properties,,F4000\nPRESIDENT,NEVADA TITLE CO.,F4300\nMEDICAL DIRECTOR,BCBSNC,F3200\nPresident,J Allen Thompson Inc.,Y4000\nRETINA-VITREOUS,,H1120\nEXECUTIVE,MINDMAX,Z9500\nPROGRAMMER,SQDATA CORP,Y4000\nOWNER/MANAGER,REED FAMILY PHARMACY,H1750\nAttorney,Ominsky & Ominsky PC,K1000\nAssistant Supervisor,State of Illinois,X3000\nKLAMANN & HUBBARD,,Y4000\nPresident,International Arts and Artists,Y4000\nPRESIDENT/CEO,WIND CAPITAL,Y4000\nMedical Assistant,Student Medical Group,Y4000\nHIGHLAND MARKETS,,Y4000\nRESTAURANT OWNER,LADEKI RESTAURANT GROUP,G2900\nDIRECTOR,CHASHAMA,F4000\nVP SALES,NORTHERN CONCRETE PIPE,B5100\nBUSINESS OWNER,COMMODITY MARKETING CO. INC.,Y4000\nMANAGER,AM ASSOC OF MUSEUMS,Z9500\nPresident,Mobil Medical,Y4000\nProgram Control SME,\"Njvc, LLC\",Y4000\nNORTHWEST ORTHOPAEDIC SURGEONS,,H1130\nMACERI,REAL ESTATE INVESTMENT TRUST,Z9500\nExecutive,Snyder Associated Companies Inc,Y4000\nFEEDLOT OWNER,CATTLE EMPIRE LLC,T1400\nOwner,Chemical Dynamics,M1000\nArchitect,City of san Diego,X3000\nEXEC. MGT.,MERCHANTS FOOD SERVICE,Y4000\nOWNER,\"OPT: NET, INC\",Y4000\nPROMOS PROMOTIONAL PRODUCTS,,Y4000\nFILM DISTRIBUTION ANALYST,IMAX CORPORATION,Z9500\nPRESIDENT,DU-MONT CO.,Y4000\nCEO,CALENDAR CLUB LLC,J7400\nWriter/Investment Banking,Credit Suisse,J1200\nDOLE,,G0000\nPARTNERSHIP MANAGEMENT,,G5210\nEXECUTIVE,TRIDENT ABSTRACT COMPANY,F4300\nSENIOR VICE PRESIDENT & PRACTICE LEADE,OSWALD COMPANIES,F3100\n22,Sexton Technologies Inc.,Y4000\nAREA REPRESENTATIVE,,Y4000\nVICE CHAIRMAN,CHICAGO METROPOLIS 2020/VICE CHAIRM,J9000\nPresident/CEO,Artist Group International,C2900\nAttorney,Berg & Androphy,J7400\nPartnership Vice President,USPI,H3000\nPublic School Admini,Milpitas Unified School District,X3500\nATTORNE,\"HEARN BRITTAIN & MARTIN, PA\",K1000\nRegistered Financial,C and D Wealth Management,Y4000\nWTC INVESTMENTS,,F7000\nOIL & GAS EXPLORATION & PRODUCTION,\"PRUET OIL COMPANY, L.L.C.\",Y4000\nStudent Rabbi,Hebrew Union College,J1200\nATTORNEY,FEHR LAW OFFICES,K1000\nAttorney,Epicurean Catering,G2900\nlawyer,US Govt,X3000\nPresident,Grane Assoc,B0000\nInsurance Broker,Petty Burton Associates,F3100\nINVESTMENT MANAGEMENT,CAPITAL RESEARCH & MANAGEMENT CO.,F2100\nPersonal Assitant,Make It Better.net,Y4000\nPresident/CEO,National Gypsum Corporation,B5100\nBilingual Speech Therapist,L.A. UNIFIED,X3500\nINVESTOR,PETER B. BOLLINGER COMPANY,Y4000\nPRE,COMBINED INDUSTRIES CORPORATION,Y4000\nInsBroker,\"Press,Bateman\",F3100\nPRESIDENT,\"CON EDISON, INC.\",E1620\nPublic Relations Dir,Tilcon New York,B5100\nFINANCIAL PLANNER,\"SOFER STEINER & ASSOCIATES' LLP\",K1000\nATTORNEY,ROSENFELD & MARDENBAUM L.L.P.,Y4000\nFounder/President,\"Definis Communications,\",Y4000\nU OF W,,JD200\nBUSINESS OWNER,PROFILE PLASTICS,M1500\nGraphic Design Busin,Leimer Cross Design,Y4000\nPhysician,\"Jesse Moss Jr, MD, FACS, PA\",H1100\nCONSULTANT,MODESITT ASSOCIATES,Y4000\nRISK CONTROL DIRECTOR,CONTINENTAL CASUALTY COMPANY,F3400\nEDUCATE AMERICA,,H5000\nTRI COR CONSTRUCTION,,B1500\nMunicipal Employee,Department of Public Utilities,X3000\nPRIVATE INVESTIGAT,\"EMERALD I , INC.\",Y4000\nComposer &c.,self,J1200\nGEOLOGIST,PRAIRIE PETROLEUM,Y4000\nWILLIAM POWELL COMPANY,,M5000\nMortgage Banker,Sterling Capital Inc.,F2100\nHUMMEL NISSAN,,T2310\nPUBLIC RELATIONS,CITY OF ROCK HILL,X3000\nExecutive Vice Presi,Texas Medical Association,H1100\nSTOCKBROKER,RETIRED,X1200\nAccount Executive,\"Dell, Inc.\",C5100\n\"CLINE, DAVIS & MANN INC\",,G5220\nPart Owner Engineeri,Surface Water Resour,Y4000\nST ALBANS EPISCOPAL CHURC,,Y4000\nAGENT,UNITED TALENT AGENCY,C2000\nPHYSICIAN,JOHNS HOPKINS UNIV/PHYSICIAN,H5100\nRAND MCNALLY & CO SKOKIE,,C1100\nATTORNEY,\"SIEBEN, GROSE, VON HOLTUM & CAREY, LTD\",K1000\nScientist,Jet Propulsion Laboratory,X3000\nPROJECT SUPERVISOR,CHEMINICS INTL,Y4000\nSALES,BRM INC.,Y4000\nInvestor,Bain Capital,J5100\nC OF MASS,,X3000\nInsurance Agent,\"Insurance Center of the Southeast, Inc\",F3100\nGENERAL MANAGER,EVP,Y4000\nEXECUTIVE,\"SIDAL, INC.\",G2900\nATTORNEY,WAYNE COUNTY CORPORATION COUNSEL,Y4000\nBLACKROCK,PORTFOLIO MANAGER,F2100\nAttorney,Firm Sevices Ltd,Y4000\nBusiness Management,Bloomberg LP,F5500\nbusiness owner,Village Baby,Y4000\nSelf ... Miller Marketing/Owner/Pre,,Y4000\nRCA SERVICE COMPANY,,Y4000\nPETE WILSON FOR GOVERNOR CAMPAIGN,,J5100\nREALTOR,SUMMIT PROPERTIES,Z9500\nManager Reproductive,Ipas,Y4000\n\"OLDAKER, BELAIR & WHITE LLP\",,K1000\nOIL AND GAS LEASE BROKER,THOMAS ENERGY INC.,E1000\nACADEMY CHAIR,CONFLUENCE ACADEMY,H5000\nEXECUTIVE,SAVANNAH RIVER NUCLEAR SOLUTIO,Y4000\nLobbyist,NM Voices for Children,Y4000\nPhysician,\"Pediatric Anes Assoc'S,pC\",Y4000\nGLANKER BROWN GILLILAND CHASE ET AL,,K1000\nTELECOM EXECUTIVE,PRIVATE NETWORKS  INC.,Y4000\nAREA BRANCH MANAGER,MORGAN STANLEY,F2300\nPH ASSOCIATES,,G5270\n\"Deputy General Cousnel, Seeds & Traits\",Monsanto,A4000\nVIRTUE HEALTH,,H0000\nPresident,LaPoint Ford Lincoln Mercury,T2300\nBanker,Legman Brothers,Y4000\nACE LIMITED,,G5200\nENTERPRISE ASSOCIATES,,Y4000\nPresident,Great Florida Insurance,F3100\nDirector,Eli Whitney Museum,X4200\nMedical Administrator,21st Century,H3200\nAqua/Fuel Services Inc./Sales,,C5130\nVP CORP,\"FARRINGTON ASSOCIATES, INC.\",Y4000\nSupport Staff,Baisd,J1200\nMANAGER,EVEREST ENERGY,E1100\nZAMOYSKI & COMPANY,SELF,K2000\nOwner,Underwood Realty Co,F4200\nREALTOR,\"VILLAGER REALTY, INC.\",F4200\nMARGOLIS PHILPPS & WRIGHT PC,,Y4000\nATTORNEY,GT CRYSTAL SYSTEMS LLC,Y4000\nREAL ESTATE APPRAISE,\"HAYNES APPRAISAL GROUP, INC.\",F4700\nUNIV PROF,,H5100\nWEST PATERSON RECYCLING,,Y4000\nVIOLIST,SELF,J1100\nCIVILIAN TECH,DEPARTMENT OF DEFENSE,L5000\n\"Consultant, Technica\",Self-employed,G0000\nPARTNER,S&S CROP INSURANCE,A4000\nTYLER COOPER & ALCOR,,Y4000\nMAHONEY COTTON COMPANY,,A1100\nCOLUMBIA 300,,Y4000\nHOAG MEMORIAL HOSPITAL PRESBYTER,,H2100\nAPPLIED MATERIALS,,J1100\nSALES MANAGEMENT,O.C.E. IMAGISTICS,M4200\nChairman,Schnitzer Steel Industries,M2100\nPRINCIPAL,\"C.R.E.S. MANAGEMENT, L.L.C.\",F4100\nPROFESSOR OF HISTORY,BABSON COLLEGE,H5100\nRUTGERS UNIVERSITY,PROFESSOR,Z9500\nPRESIDENT,PREMIER LABEL CO. INC.,G1200\nExecutive,\"Rohrkemper, Ossege & Combs\",Y4000\nSR VICE PRESIDENT/MARKETING MGR,\"KIMLEY-HORN AND ASSOCIATES, INC.\",B4000\nATTORNEY,RICE MACDONALD BREEDEN HICKS/ATTORN,Y4000\nCPA,\"MILLER & ASSOCIATES, CPA, PC\",F5100\nVeterinarian,Brady Vet. Hospital,H2100\nCYTOTECHNOLOGIST,\"ST MARY'S HOSPTIAL\",H2100\nManager,Douglas County Bank,Y4000\nOWNER,REDHEADS LLC,J9000\nDIRECTOR,MCDERMOTT WILL & EMERY,K1000\nPresident,Meyers Hotel,T9100\nOwner,Al Gilbert Company,Y4000\nFundraising Consultant,\"Jcrdirect, Inc\",Y4000\nDIRECTOR OF SAL,MERIDIAN BIOSCIENCE,Y4000\nEXECU,QUINTANA MINERALS CORPORATION,E1150\nAttorney,Kreindlert & Kreindler,K1000\nBUSINESSMAN,THE WINDSOR COMPANY,Y4000\nTHE PERRIER GROUP OF AMER,,G2600\n\"GOLDSTEIN'S MENS & BOYS WEAR\",,Y4000\nSCHOOL BOA,DURHAM COUNTY GOVERNMENT,Y4000\nEngineer,Micheliu Americas R,M1500\nEXECUTIVE,TRENCH SHORING,B1000\nAMROC INVESTMENTS,,F2100\nHEINZ FROZEN FOODS CO,,G2100\nLOMA LINDA UNIVERSITY RADIATION MED,,H1130\nPrincipal,LJ Hart & Co.,F2100\nRETIRED CONTRACTOR,,B1500\nSenior Vice President  Communications,Cable Television Laboratories  Inc,C2200\nExecutive Vice Presi,Chair King,G4400\nPRESIDENT,DSF ADVISORS,Y4000\nQUIGLEY TANG & WHITEH,,Y4000\nMARSHALL SCHOOL OF MEDICINE,,H5150\nMARKET MANAGER,NATIONAL ASSN OF REALTORS,J9000\nVICE-PRESID,MORROW INS. AGENCY INC.,F3100\nAttorney,\"Varner Brandt, LLP\",K1000\nSENIOR CONSULTANT,EXACTTARGET,Y4000\nADVISOR,CGH MEDICAL CENTER,Z9500\nSHERIDAN MTR INC,,T2300\nEXECUT,\"TOBIAS INSURANCE GROUP, INC.\",F3100\nDirector,,X3500\nUnderwriter,First Mercury Insurance Co.,F3100\nCOO,GE Capital,F1400\nPRESIDENT,UNITED JEWISH ENDOWMENT FUND,J5100\nExecutive,Traustan Industries Inc.,Y4000\nLandscape Archi,Kudela & Weinheimer,B4200\nUnion Representive,Oregon Federation Of,Y4000\nRETAIL EXECUTIVE,TBC,Y4000\n\"D'ADDONA & ROSENBAUM\",,Y4000\nACCU-CARE,,H3100\nOwner,Trailways Restaurant,G2900\nAttorny,fed Goverm,Y4000\nIT Manager,GTECH,J1200\nPUBLIC INTEREST LAW,MID MN LEGAL AID,Y4000\nPRESIDENT AND CEO,MICROTECH,Y4000\npersonal fitness tra,retired,X1200\nTRUCK DRIVER,FOOD LION,G2400\nMedia Consultant,Harpole Phillips Group,Y4000\nDirector Of C,Thyssenkrupp Elevator,Y4000\nHealth Care,Heart of Florida,Y4000\nPT,Mt. Carmel Home Care,H1700\nfranchise owner,Hallmark,C1400\nINVESTMENT AND,HBJ INVESTMENTS LLC,F7000\nOWNER,PARK WEST MORTGAGE INC.,F4600\nNEW JERSEY REPUBLICAN STATE COMMITT,,J1100\nOwner,Hollywood Dermatology and Cosmetic Spe,H1130\nMEMORIAL HERMANN KATY HOSPITAL/VP/C,,H2100\nGeneral Manager & CEO,Emery Telcom,C4100\nVICE PRESIDENT,EDISON MISSION ENERGY,E1500\nCEO,MANNA,Y4000\n\"DIRECTOR, INTERNET\",HCA,Y4000\nVISK INC,,Y4000\nInsurance Fraud Inve,Empire Blue Cross Blueshield,F3200\nFINANCIAL INSURANCE CO,,F3100\nPRESIDEN,\"CONSTELLATION BRANDS, INC.\",G2820\nMEADOWBROOK CORP,,Y4000\nTeacher,Oregon Episcopal School,J7400\nDENTIST,GENERAL DENTISTRY AND SAME DAY DENTURE,Y4000\nSNR DENTON,SNR DENTON/SNR DENTON,K2000\nRETIRED,N/A RETIRED,J1100\nVice President,Chadwick BaRoss Inc.,Y4000\nANESTHESIOLO,ASHEVILLE ANESTH ASSOC,H1130\nDirector,Trust To Consrve NE Forestlands,Y4000\nTHOMPSON PUBLISHING,,F2600\n\"Oil, Gas and Timber\",Self Employed,F7000\nPHARMACIST,IRWIN - POTTER DRUG,Y4000\nATKINS ASSOC,\"O'BRIEN\",B4200\nManaging Director,Knight Equity Markets,F2100\nLINTHICOTI FINANCIAL,,F3100\nDirector of Technology Planning,\"Praxair, Inc\",M1000\nSENIOR VICE,STANFORD GROUP COMPANY,F2000\nAGRICULTURE,THE NUNES COMPANY,A1400\nMECHANICAL CONTRACTOR,JBM MECHANICAL.COM,Y4000\nINVESTMENT MANAGER,\"TWEEDY, BROWNE CO. LLC\",F2100\nCHEMICAL ENGINEER/EN,\"PCR ENVIRONMENTAL, INC.\",Y4000\nKARLIN & FLEISCHER LTD,,J5100\nFEDERATED,,Y4000\nReal Estate,Atlantic Real Estate,F4100\nCAMPAIGN MANAGER,JUSTIN FAIRFAX FOR VIRGINIA,Y4000\nChairperson,Art & Auction,F7000\nPhysician,Adefris and Toppin md pc,Y4000\nCV SURGEON,SELF-EMPLOYED,H1130\nDIRECTOR,MEDENET,Y4000\nJ D HEFNER & ASC,,F3100\nMONAGHAN & ASSOCIATES,,Y4000\nPERSONAL TRAINER,GARAGE FITNESS,Y4000\nMONMOUTH TOYOTA,,T2310\nINVESTMENTS,SMITH BARNEY/CITI GROUP,F2100\nREGISTERED NURSE,PRN NURSES,Y4000\nHORSE BOARDING,SELF,A3500\nHomemaker,Home,H4100\nManager,Allen Tate Realtors,F4200\nVP BUSINESS AFFAIRS & NEW MEDIA,ABC ENTERTAINMENT,C2000\nAccounting Assistant,Mariners Church,X7000\nSELF/OIL/GAS EXPLORATION,,E1150\nWHITE POINT CAPITAL,,F0000\nInvestment Banker,Capital Growth Financial LLC,F0000\nSALES,PACIFIC NW EQUIPMENT INC.,Y4000\nATTORNEY,SELF,F2000\nASSOCIATE,WEXLER & WALKER,Y4000\nClerk,Petes,J1200\nWALKER & ASSOC,,K2100\nMAGMT,COCA-COLA CINCINNATI,G2700\nVICE PRESIDENT,INS MART,F3100\nWEB DEVELOPER,\"PROFILE STAFFING, INC\",G5250\nEMERGENCY PHYSICIANS ASSOC,,H1100\nNot Employed,Not Employed,G4300\nATTORNEY,\"WILKINSON, CARMODY\",K1000\nVICE PRESIDENT,VIKING TRAVEL SERVICE,T9400\nATTORNEY,SKRDEN ARPS,Y4000\nPRESIDENT,SUNDANCE SERVICES INC,E3000\nEXECUTIVE VP & GENERAL COURT,,G0000\nBUSINESS,HEARTLAND BUSINESS CENTER,Y4000\nFinance,Deniad and Company LLC,Y4000\nPresident,Blue Dog Bakery,G2100\nSESSUMS & MASON PA,,K1000\nPresident,Anmor Cnc Machine Inc.,Y4000\nBUSINESS,DANWAY TRANSPORTATION INC.,T0000\nPresident,Knoepfler Chevrolet Co,T2300\nPartner,Mash Investment Company,Y4000\nPRINCIPAL,ST MARY SCHOOL,X3500\nInstaller,Alcatel-Lucent,C4600\nZGZ INVESTMENTS/OWNER/ INVESTOR,,Y4000\nEXECUTIVE,TXU CORPORATION,E1620\nMANA,THRIVENT FINANCIAL FOR LUTHERA,F3100\nOWNER,WESTERN TOWBOAT CO,Y4000\nBLUE CANOE PROPERTIES,BLUE CANOE PROPERTIES,F4500\n\"VP, MEDICAL PRACT. SERV.\",STATE VOLUNTEER MUTUAL INS. CO,F3100\nARTIST/CRITIC,SELF,J1100\nVIRGINIA LEAGUE OF SAVINGS INST,,F1200\nEXEC. VP,NATL ASSOC OF BROADCASTERS,C2100\n\"MINERVA, MOLOUEHOY & D'AGOSTINO\",,K1000\nManagement Consultant,Vitalink,Y4000\nOWNER,DSTP MOTOR SPORTS,Y4000\nWRITER,BERNARD CORNWELL,Y4000\nTeacher,Wright State University,H5100\nFire Fighter/EMS,CONTRA COSTA COUNTY FIRE DEPT.,L1400\nCommercial Rea,The Staubach Company,F4700\nCONSULTANT,ATWELL CONSULTING GROUP,Z9500\nGENERAL MANAGER,ABBOTT,Y4000\nVenture Capital,VOYAGER CAPITAL,F0000\nBRISTOL ANATHEOSOLOGISTS ASSOCIATES,,H1130\nFICKLING & COMPANY REAL ESTATE,,F4000\nArchitect,Helmuth Obata & Kassabaum,Y4000\nATTOR,FARRIS MATHEWS BRAVEUR HOLLOW,K2000\nHOUSEWIFE,NONE,T1400\nSHIPYARD OWNER,SELF,T6100\nAssociate,Allied Irish Banks,F1000\nDUDLEY & COMPTON,,K1000\nInvestor,Lainer Investments,F7000\nMARC ASSOCIATES,,K2000\nCEO,Tau Kappa Epsiilon,Y4000\nsales,Electric Motor & Contracting,B3200\nOFFICE OF STEPHEN P,,Y4000\nH K S HARDWARE,,Y4000\nRESTAURANT OWNER,BOAT HOUSE INC.,Y4000\nACCOUNTANT,NWI,J1200\nIMAX INC,,C2400\nGENERAL MANAGER,GLENWOOD FORD,Y4000\nATTORNEY,SELF-EMPLOYED,J9100\nHOSPITAL ADMINISTRATOR,BARNES-JEWISH HOSPITAL,H0000\nST. LOUIS GASTROENTONOLOGY CONSULTA,,Y4000\nExecutive,Alliance for Quality Home Care,Y4000\nLAWYER,L & F DISTRIBUTORS - LAREDO,G2850\nCOMMUNICATIONS TECH,,C4000\nDEPUTY CHAIRMAN,CHRISTIES INC,F5500\nANTIQUE INVESTOR,,Y4000\nJOHN HESS & CO,,Y4000\nPresident,Harris Stone State University,H5100\nPRO-VET SUPPLY,,Y4000\nM & R MANAGEMENT,,F4500\nQ. C. Manager,Antometal Craft Inc.,Y4000\nPOLAROID GROUP,,Y4000\nLORDES HOSPITAL/PHYSICIAN / CEO,,H1100\nCOUNTY COUNCIL,COUNTY OF NEW CASTLE,Y4000\nVenture Capit,Hitek Venture Partner,F2500\nVICE DEAN,SELF EMPLOYED,H1130\nBILL BEADLESTON GALLERY,,J1100\nATTOR,\"GREENFIELD, BOST & KLIROS, PC\",K1000\n\"Senior Vice President, Mbm Capabil\",Market Based Management NA LLC,E1160\nLECTURER,\"UNIVERSITY OF CALIFORNIA, DAVIS\",H5100\nGLOBAL SUPPLY CHAIN OWNER,VIVATONE HEARING SYSTEMS,Y4000\nlawyer,simpson thacher & bartlett,K1000\nBUSINESS OWNER,,C2600\nMANAGING PARTNER,HOOPIS FINANCIAL GROUP / N.M.F.N./M,Y4000\nManaging Director,DbD,Y4000\nAuto Dealer,\"Blade Chevrolet, Inc\",T2300\ngovernment relations,\"The Livingston Group, LLC\",K2000\nSelf Employed,Mbi,Y4000\nRealtor/Builder/Developer,Jarrett Management Company,Y4000\nHousehold Executive,Self employed,Y1000\n\"MCLEOD, WATKINSON\",,Y4000\nPRESIDENT,ATLANTIC GUMS CORPORATION,G2100\nnonprofit project ma,Mt. Diablo Habitat for Humanity,J1200\nACCOUNTANT,DOUGLAS LUMBER,B5200\nAttorney,\"Nabops, Giblin\",K1000\nStudent,University,H5100\nINS BROKER,HAYS COMPANIES,F3200\nSIMMONS DURHAM & ASSOC,,Y4000\nPRESIDENT,MEEKER & COMPANY INC.,E1120\nattorney,ReedSmith llp,K1000\nExecutive Director,Leslie Science and Nature Center,Y4000\nBON-AIR MOTEL INC,,T9100\nCEO FILM CO.,SELF-EMPLOYED,G0000\nDEVELOPER,HOLIDAY INN EXPRESS,T9100\nMAYER BROWN ROE & MAWE,,K1000\nCOMMUNICATIONS ENGINEER,DOD,X5000\nFORESTRY,SELF/FORESTRY,Z9500\nCFO,Washington Convention Center,Y4000\nMANAGER,OE MEYER,H4100\nHAPPY VALLEY ASSOC,,Y4000\nMANAGER,\"LESTER R. SUMMERS, INC.\",Y4000\nBus. Exec.,S & K Sales Co.,Y4000\nCHEF,SELF,J1100\nPARTNER,REED ROBBINS,Y4000\nHOSPITAL CEO,GRANDVIEW MED.- CAPELLA HEALTH,Y4000\nCEO,MICHIGAN FIDELITY ACCEPTANCE CORPORATI,Y4000\nSCIENTIST,UNIVERSITY OF CALIFORNIA-BERKELEY,H5100\nConsultant,Adventures in Giving LLC,Y4000\nREALTOR,RE/MAX REALTY GROUP/REALTOR,J9000\nEXEC. DIRECTO,NJ BROADCASTING ASSN.,C2100\nPHOENIX HOME LIFE INSURANCE,,F3300\nVICE PRESIDENT; BUSINESS DEV,GE ERC,Z9500\nArchitect,Howard F. Thompson Associates Inc.,Y4000\nWASHINGTON MUTUAL INVESTORS,,F0000\nBUILDER,SCOTT CHRISTOPHER HOMES,B2000\nPRESIDENT,\"CMS TECHNOLOGY, INC.\",J1100\nHERMANN MOTOR CO,,Y4000\nPresident,J. Gaudiosi,Y4000\nKEONANE DETORE & KEEGAN,,Y4000\nCEO,Walnut Hollow Woodcrafts,Y4000\nAttorney,Womace Carlyle,K1000\nCEO,NWSS,Y4000\nPhysician,\"Amg, Inc\",Y4000\nPresident,Sigularity Corporation,Y4000\nEA,HAMMOND IRB,Y4000\nPublisher,Mahattan Media,Y4000\nDenta,Red Mountain Dental Arts Inc.,H1400\nMERCER COS INC.,,Y4000\nEXECUTIVE,PC HEALTHCARE ENTERPRISES INC,Y4000\nENGINEER,LEARJET,T1200\nCEO,ANGUS-PALM,M2300\nVP OF SALES,IPS PACKAGING,Y4000\nHod Carrier,Mertz Masonry,Y4000\nVALLEY FOOD SERVICE/PRESIDENT/C.E.O,,Y4000\nACCOUNT EXECUTIVE,EQUIFAX,F5200\nEXECUTIVE V.P.,WAL-MART,G4300\nFURTHCO,,K1000\nPresident,Art Overhuel Motor Sales,Y4000\nProfessor of Education Emeritus,Harvard University,H5100\nAUTO TECHNICIAN,IMPORT AUTO CLINIC I,Y4000\nINFO REQUESTED,R A S RENTALS LLC,G5300\nOnwer,Saiff Drugs & Home Health Care,H3100\nSALES,DAVID WAGNER & ASSOCIATES,Z9500\nATTORNEY,NBCU,Z9500\nDIRECTOR,FREMONT STREET EXPERIENCE,Y4000\nVICE PRESIDENT,RUNSWITCH PR,Y4000\nSr Project Manager,West Valley Nuclear Services,B1000\nPRESIDENT,SHERIDAN BROADEDSTING,C2100\nPublic Relations,\"NK Design, Inc.\",Y4000\nPARTNER/TALENT MANAGER,MANAGEMENT 360,C2000\nOWNER,JOHNSON BROTHERS CONSTRUCTION,B1500\nFund Management,\"Art Advisors, LLC\",F5100\nMANAGER,CITADEL BROADCASTING,C2100\nTALK SHOW HOST,SAVAGE PRODUCTIONS,Y4000\nOwner,Compean Funeral Home,G5400\nLEGISLATIVE COUNSEL,UNITED STATES SENATE,X3000\nCFO,THE FURMAN GROUP,K2000\nPHYSICIAN,NEURO MEDICAL CENTER,H1100\nFIRST HEARLAND CAPITAL INC,,F0000\nPresident,McConnell Imports Inc,T2300\nEXECUTIVE,GRYNBERG PETROLEUM,E1100\nVice Chair,MountainView Hospital,H2100\nATTORNEY,\"HILL & BEASLEY, LLP\",K1000\nOwner,Willow St. Pizza,G2900\nAttorney,Health & Hospital Corp. of Marion Co.,H2100\nSalesman,Wellman INC,M1400\nLATTER SENT: 1/28/2008/LATTER SENT:,,Y4000\nACADEMIC,TUFTS UNIVERSITY,H5100\nSR VP AFFILIATE ORGANIZATIONS,EAST TEXAS MEDICAL CENTER REGIONAL HEA,H2100\nPresident & COO,E*Trade Financial,F2100\nCPA & CFP,US Bank,F1100\nPartner,\"Intervine, Inc.\",J9000\nCRAIG DAVIS PROPERTIES INC,,F4000\nFACULTY,MICHIGAN STATE UNIVERSITY,J1200\nOFFICE MANAGER,\"COASTAL PHOENIX, INC.\",F4100\nPEN,PENSION FINANCIAL SERVICES INC.,F0000\nAdvertising,Abelson Taylro,G5210\nMANAGING PARTNER,FRIDAY ELDREDGE & CLARK,K1000\nPhysician,Boston Medical Cente,H2100\nFOUNDERS FEDERAL CREDIT U,,F1300\nPresident,Advanced Extrusion,Y4000\nCHAIRMAN OF BOARD AND,RENT-A-CENTER,G5300\nVP HUMAN,MIDAMERICAN ENERGY COMPANY,E1620\nHome Maker,NA,Y1000\nExecutive,\"Kaplan, Inc\",H5000\nCONS ALB MED,,Y4000\nTROY BARDWELL,TROY BARDWELL,Y4000\nPHYSICIAN,\"COMPLETE CONCEPTS IN WOMEN'S HEALTHCAR\",H1100\nB101 RADIO,,C2100\nCEO,Dupont Fabros Technology,C5130\nPediatric Dentist,Dube-Cammarata Pediatric Dentistry,H1400\nLAMBDA LEGAL DEFENSE,,Y4000\nDFB Sales,Sales,G0000\nBANKER,RBS GROUP,Y4000\nEXECU,\"DENDER DISTRIBUTING CO., INC.\",Y4000\nOUTSIDE SALES,STANDARD ELECTRIC,B3200\nExecutive,\"American Rice, Inc.\",A1600\nATTORNEY,GARDNER H. ALTMAN JR. PA,Y4000\nNA,Information Requested,X1200\nEXECUTIVE,TA AND ASSOCIATES,F2500\nASSOC HARDWOODS,,A5000\nATTORNEY,COUNTY OF VENTURA,X3000\nChief Executive Offi,Jays Foods Inc.,G2000\nLAKESHORE CORRIC MAT,,B3600\nDIRECTOR OF GOVERNMENT,YMCA OF USA,G5800\nWEALTH MANAGEMENT,UBS FINANCIAL SERVICES,F2100\nBARRETT & SCHULER,,K1000\nscientist,DNA Bridges,Y4000\nE COOPER ORTHOPAEDIC SURGERY,,H1130\nGOVERNMENT RELATIONS,\"LAND O'LAKES INC.\",J5100\nLawyer,Caroselli Beachler McTiernan & Conboy,K1000\nEXECUTIVE,MARATHON OIL & GAS CORP,Y4000\nDESERT GRAPE GROWERS LEAGUE OF CA,,A1400\nEMERGENCY PHY,PEACE HARBOR HOSPITAL,H2100\nExecutive,G & C Equipment,B6000\nARCHITECT,NATIXIS/ARCHITECT,F1100\nSPEECH PATHOLOGIST,\"BRIGHAM & WOMEN'S HOSPITAL\",H2100\nPresident,Casco Communications LLC,Y4000\nPresident,Express Clinics Inc.,Y4000\nPRESIDENT,VJT PLANNING CONSULTS INC,Y4000\nClassroom Teacher,BARREN CO,L1300\nDOCTOR,SETON,Y4000\nReal Estate Developer,Pavilion Development Company,F4100\nSTUCKEY CHIR CTR,,Y4000\n\"FLOYD'S STORES INC\",,Y4000\nNORTHWEST CASACADE,,B1000\nNational Sales Manager,Pearson,Y4000\nAnalytical Chemist,Ret,Y4000\nFIRE OFFICER,WACKENHUT,G5290\nlawyer,Davis Polk & Wardwell,J7500\nConsultant,past US Department of Commerce/ITA/CS,X3000\nBUSINESSMAN,LINCOLN CONTRACTING & EQUIPMENT,Y4000\nMARKETING COMM,SELF-EMPLOYED,Y4000\nTELECOM CONSULTANT,TELECOWORKS,Y4000\nAccountant,Fred Hutchinson Cancer Research Center,H2000\n\"KUNTZ, HOLDEN & BONESIO\",,Y4000\nATTORNEY,MCFEE & GAFT,K1000\nMEDICAL ASSOCIATION,,H1100\nlogistics,IBM,C5100\nAttorney,\"Wilentz, Goldman and Spitzer\",K1000\nPRESIDENT,\"LIONS QUICK MARTS, INC\",G2400\nPresident/C.E.O.,\"Leonardo' Marble & Granite Design, Inc\",B5100\nINTREPID SOCIETY,,Y4000\nATTORNEY,\"SHEPPARD, MULLIN, RICHTER & HAMPTON LL\",K1200\nPRESIDENT,BEAR CUB ENERGY,E1000\nVICE PRESID,\"NOVO CONSTRUCTION, INC.\",B1500\nE CAROLINA UNIV SCHOOL OF MEDICINE,,H1100\nLAWYER,COMPLEXIQ INC.,Y4000\nChairman,Simpson Thatcher et al,K1000\nDirector,Merk,Y4000\nTransportation Policy Consultant,\"Patton Boggs, LLP\",K2000\nPresident & Ceosps,Xcel Energy,E1620\nGENERAL CONTRACTO,OMNI CONSTRUCTION,B1500\nINVESTMENTS,CAPITAL GUARDIAN TRUST,F2100\nVP,TRAVELERS,F3400\nKETTLE MORRINE SCHOOL DISTRICT,,X3500\n\"PRESIDENT, GRAIN\",THE ANDERSONS INC,A3100\nMarketing,Bath & Body Works,G4000\nMoney Manangement,Barclays Global Investors,F2100\nChemist,\"Venture Chemical Co., Inc.\",M1000\nSUMMIT FCU,,F1300\nEngineer,CCA,Y4000\nWriter/Producer,\"Eovisions, Ltd\",Y4000\nInsurance Broker,Southern United Agency,Y4000\nFAISS FOLEY,,Y4000\nLEGISLATIVE CONSULT,BALCH & BINGHAM,K1000\nTOWNSHIP COMMITTEE,HOLMDEL TOWNSHIP,Y4000\nGEMINI ELECTRIC,,B3200\nInvestments,\"The Pickens Company, Inc.\",E1120\nPACIFIC CAST PRODUCTS INC,,Y4000\nInsurance Broker,Brown and Brown of Baton Rouge,F3100\nCLIFFORD REAL ESTATE SERVICES INC,,F4000\nPRESIDENT AND OWNER,MEHLMAN CAPITOL STRATEGIES INC,K2000\nSENIOR VICE,SSM HEALTH CARE NETWORK,H2100\nATTORNEY,HARDIN JESSON & TERRY PLC,K1000\nSELF-EMPLOYED,NELSON IRRIGATION,A4000\nVASCULAR CHEST CTR,,Y4000\nExecutive,Wavegroup Sound,Y4000\nREAL ESTATE BROKER,CENTURY 21 ADVENTURE,J9000\nMedical Transcriptionist,MedQuist,J7400\nNuclear Power Plant Operator,TVA,Y4000\nDirector Facilities Management,Methodist Specialty and Transplant Hos,H2100\nUIC CONSTRUCTION,,B1500\nReal Estate Broker,High Country Real Estate Serv,F4200\nAttorney,Trope & Trope,K1000\nPHYSICIAN,CENTIS HEALTH,J1100\nAttorney,Manatt Phelps Rothenberg,K1000\nCredit Union Manager,Deluxe Laboratories Federal Cr,Y4000\nEconomic Consultant,Analysis Group,G5200\nBusiness,Verax Chemical Company,M1300\nPresident,Jessie Smith  Noyes Foundation,Y4000\nWHITE AND BOOKER,,Y4000\nOG&E/AUXILIARY OPERATOR/POWER PLANT,,Y4000\nAttorney,Robert Book,J5100\nMEADOWBROOK INSURANCE GRP.,,F3100\nOwner,Reliable Detection Systems Llc.,G5290\nHILL AND BIXLER,,Y4000\nLARSON CONTRACTING INC,,Y4000\nSALES,IRON SYSTEMS,Y4000\nLUMBERMAN,REX LUMBER COMPANY,B5200\nDAVID SCHOEWE INC,,Y4000\nCONTRACTOR,\"GOLD MECH., INC.\",Y4000\nSENIOR PROJECT MANAG,SBC CORPORATION,C4100\nExecutive Director,Wyoming Public Employees Assoc,Y4000\nmusician,New England Conservatory,H5100\nBLUE CROSS/BLUE SHIELD OF MI/MANAGE,,F3200\nFILM MAKER,DIALOGUE INDUSTRIES INC.,Y4000\nPIZZA HUT OF AMERICA,,G2900\nCOO,Essex Pain Management Group,H1130\nCOCKRELL OIL COMPANY,,E1120\nRABBI,MONSEY JEWISH CENTER,J5100\n\"DEAN BOSIER'S FURNITURE & SHOWROOM\",,Y4000\nPHYSICIAN,CHABOT NEPHROLOGY,Y4000\nCA Assemblyman,State of CA,X3000\nACCOUNTANT,DELOITTE TOUCHE TOHMATSU,F5100\nELECTED OFFICIAL,STATE,X3000\nBOOKKEEPER,SHUMATE CONSTRUCTION INC,B1500\nJUDGE,ILLINOIS APELLATE COURT,X3200\nADMINISTRATOR,\"CENTURY EQUITY, INC.\",K1000\nPRIVATE CLOTHING SALES,,M3100\nAGRICULTURE,STARR FEEDYARDS L.T.D.,Y4000\nVICE PRESIDENT,P F. M. INC,Y4000\nStock Trader,Self Employed,F2100\nC.P.A.,K P M G,F5100\nPRINCIPAL,AD-VENTURE CAPITAL,F2500\nventure capitalist,Austin Ventures,F2500\nRBG INC,,Y4000\nEXCAVATION SUPERINTE,BALDWIN PROPERTIES,F4200\nUJA-FEDERATION,,H6000\nAttorney,Groom Law Group,K1000\nATTORNEY,FERRER & POIROT,K1000\nCYBEX COMPUTER PRODUCTS,,C5100\nOWNER,MODEL PRODUCTS INC.,Y4000\nDirector,The Shakespeare Thea,Y4000\nBUSINESS OWNER,A. & J. PRODUCE,A1400\nReal Estate Sales,Prudential Rand Realty,F4200\nJEGHELIAN FOR U S SENATE CAMPAIGN,,Y4000\nPRESIDENT,DEZTECH INDUSTRIAL SERVICE,Y4000\nManaging Attorney,Unisys Corporation,C5130\nANESTHESIOLOGIST,WPA,H1130\nEmergency Physician,Dr Laurie M Anderton,H1100\nPresident,Bryner Chevrolet Inc,T2300\nDirector,\"Professional Bartending School, Inc\",Y4000\nPRESDIENT,AMERICAN TECHNOLOGIES,Y4000\nOwner,Afg Finacial Services Inc,Y4000\nPRINCIPAL,POTOMAC STRATEGIC DEVELOPMENT,K2000\nIRONWORKER,\"INT'L. ASSOCIATION OF IRON WORKES\",LB100\nANETHESIOLOGIST,\"CASE MEDICAL SYSTEM, INC\",Y4000\nXRAY TECHNICIAN,ABBOTT-NORTHWESTERN,Y4000\nSKADDEN ARPS SLATE MEAGHER &,,J5100\n\"Attorney, Of Counsel\",Trammell & Company,K1000\nATTORNEY,\"STARN MARCUS FISHER O'TOOLE\",K1000\nVENTURE ASSOCIATES CORPORATION,,Y4000\nRE MAX TOWN & COUNTRY INC,,F4200\nRETIRED ACADEMIC ADMINISTRATOR,SELF/RETIRED ACADEMIC ADMINISTRATOR,X1200\nGENER,BOB BELL CHEVROLET OF BEL AIR,T2300\nSTATE REPRESENTATIVE,RHODE ISLAND/STATE REPRESENTATIVE,Y4000\nRESTAURANTURE,SHRIMP BOAT RESTAURANT,G2900\nGuitar Maker,Sadowsky Guitars,Y4000\nDOWN EAST TOYOTA,,T2310\nPension Consultant,\"Lord, Abbett & Company\",F5500\nFINANCE,MORGENTHALER,J1200\nPRES.,SHORT STRATEGY GROUP,Y4000\n\"VP, COMMERCIAL SUPPORT\",AUTOZONE,T2200\nAttorney,\"IceMiller, LLP\",K1000\nAMTECK,,Y4000\nGIBSON PROPERTIES,,Y4000\nPhysician,The Hospital for Sick Children,H2100\nQA ENGINEER,\"MCAFEE INC., INTEL SUBSIDIARY/QA EN\",C5120\nGovernment Affairs,Ameriquest Mortgage Company,F4600\nREAL ESTATE DEVELOPE,\"R.P. MANAGEMENT, INC.\",Y4000\nMASONRY CONTRACTORS,,B3000\nLAND DEVELOPMENT & MANAGEMENT,CASTLE & COOKE,F4500\nLANDE PC,,Y4000\nRESEARCHER,GCI INC,C4200\nPHYSICIAN,UPITEC,Y4000\nPRESIDENT,GULFSOUTH CAPITAL,F2500\nEXEC MGMT,UNITED HEALTHCARE,H3700\nROSENFELD PRODUCTIONS,,Y4000\nVICE PRESIDENT,WALT DISNEY COMPANY,C2000\nSTOCKBROKER,MARK MINERVINI,F7000\nROMAN CATHOLI,DIOCESE OF BRIDGEPORT,X7000\nOwner,Ajomara Group LLC,Y4000\nPLUMBER/SPRINKLER FITTER,RJ NEUBERT & ASSOC,Z9500\nWorld Kitchen,,M4000\nLA SOUND,,Y4000\nMat,Schaller Tool & Die Co,M5000\nDAVIDS SUPERMARKETD INC,,J1100\nLawyer,Hinshaw - Culbertson,K1000\nSWIG WEILER ARNOW MANAGEM,,F4500\nCHAIRMAN & CO-CEO,CITIGROUP,F1100\nROBERT J WERNECKE C L U,,Y4000\nEXECUTIVE,CARDINAL MANAGEMENT LLC,G0000\nAttorney,KEEGAN WERLIN & PABIAN,K1000\nCEO,\"LEGAL DISCOVERY, LLC\",Y4000\nC. E. O.,NEWAYS,Y4000\nVP MARKETING,BNSF,T5100\nEXINGTON MEM HOSP,,H2100\nPRESIDENT,ELDERWOOD AFFILIATES INC.,H2200\nEL DORADO CARPET MILL,,M8000\nATTORNEY,\"STRADLING, YOCCA, CARLSON & RAUTH/A\",K1000\nPHYSICIAN,CREED WYATT M.D. P.A.,Y4000\nTRINITY HOTEL INVESTORS LLC,,T9100\nCEO,E.C.R.,Y4000\nCHAIRMAN,TRUST ASSET MANAGEMENT LLP,Y4000\nPRESIDENT,BROICH ENTERPRISES INC,Y4000\nATTORNEY,BAKER DONETION BEARMAN,Y4000\nCALGON CARBON CORPORATION,,Y4000\nSelf-employed,Self-employed,C2900\nINFORMATION REQUESTED PER BEST EFF,SANDHILLS HAWG STOP LLC,Y4000\nMANAGMENT ANALYST,H.U.D.,X3000\nFOREIGN AFFAIRS OFFICER,DEPT OF STATE,X3000\nPALMAR,,F4100\nMANAGER,AGITENT TECHNOLOGIES,Y4000\nFANNY MAE FOUNDATION,,J1200\nHIGH STACK PA,,Y4000\nCOO/CLO,Black Creek Group/Dividend Capital Gro,F4000\nATTORNEY,STOKES GONZALEZ,Y4000\nGTA CORP,,Y4000\nSelf-Employed,International Relief & Development,Y4000\nRUSTON MANUFACTURING CO,,Y4000\nADVERTISING,WALKER & ASSOCIATES,G5210\ncomputers,\"plan3D, inc\",Y4000\nATTORNEY,RINEHARDT LAW FIRM,K1000\nManager,\"Radwell International, Inc\",Y4000\nATTORNEY,\"KENNEDY HODGES, LLP\",Y4000\nVice President-Retail Division,Kronos Inc,C5120\nLawyer,\"Suelthaus & Walsh, PC\",K1000\nORTHOPAEDIC SURGEON,PACS,H1130\nPRESIDENT,NU ELEMENT INC./PRESIDENT,E1500\nDIR. MARYILYN MAGARAM CTR OF FOOD SCI,J.A. GILBERT ASSOCIATES,H1700\nCEO,INTERNATIONAL EDUCATION CORPORATION,Y4000\nALGEN DESIGN SERVICES INC,,Y4000\nMISCELLANEOUS,SELF-EMPLOYED,G0000\nOIL PR,JONES MANAGEMENT CORPORATION,G5270\nSECRETARY,E & L MOTORS,T2300\nDAVID MICHAEL CO,,Y4000\nPHYSICAL THERAPIST,GREEN PHYSICAL THERAPY,Y4000\nQUICK & GRICE INC,,Y4000\nPR,OCEAN DATA EQUIPMENT CORPORATION,M9000\nWriter/Landlord,self-employed,G0000\nBGSF,,Y4000\nVICE PRESIDENT,GEMINI FOREST PRODUCTS,A5000\nGovt Relations,United Jewish Federation,H6000\nCT GENERAL ASSEMBLY,,Y4000\nCEO,BETTER HOMES AND GARDENS REAL ESTATE,Z9500\nPresident/CEO,New Have Savings Bank,F1200\nMARKHAM WOODS SDA CHURCH,,X7000\nPresident,\"Intervine, Inc.\",Y4000\nReal Estate,Champaing Co Assn of REALTORS,F4200\nFinance,Vx Capital Partners,F0000\nAttorney,\"Bloom, Hergott, Diemer, et al\",K1000\nATTORNEY,HOGAN LOVELLS/ATTORNEY,K2000\nPHYSICIAN,UNIVERSITY OF MARYLAND MEDICAL CENTER,F2100\nBUSINESS OWNER,RANGER AMERICAN,Y4000\nDR DON R MILLER,,Y4000\nExecutive,Veritas Medicine,H3000\nBUSI,ROBERT L. LAIRD BUSINESS OWNER,Y4000\nMarketing Director,Balance Disorders Institute,Y4000\nWOSSERSTEIN PERELLA & CO,,Y4000\n,NORTHWESTERN LOUSIANA STATE UNIVER,Y4000\nDoctor of Optometry,Ware Eye Care,Y4000\nATTORNEY,\"LAMB MCERLANE, P.C./ATTORNEY\",K1000\nMedical Doctor,Capital District Psychiatric Center,Y4000\nVAN KAMPEN,,F2300\nAsst Principal,Seneca Vally School District,X3500\nSURGEON,CRANLEY SURGICAL ASSOCIATES,H1130\n\"MANAGER, HSSE\",MURPHY OIL CORP,E1160\nCOMPUTER ENGINEER,MARTIN COMPANY,Y4000\nPROJECT MANAGER,NAVATEK,Y4000\nVice President,Perrysburg Plumbing,B3400\nPT,IN HOME REHAB,H1700\nReal Estate Developer,Cameron Development Corp.,Y4000\nKC PAWN SHOP,,Y4000\n\"SENIOR VP, QUALITY\",AMERICAN HEALTH CARE ASSOCIATION,H2200\nS U N TECH,,Y4000\nMAHLON MILLER & SONS,,Y4000\nCEO,ANDREWS DISTRIBUTING CO. OF NORTH TE,G2850\nATTORNEY,COHEN KENNEDY DOWD & QUIGLEY/ATTORN,Y4000\nConsultant,Jackson Consulting Group LLC,Y4000\nHousewife,N/A,F2500\nINVESTOR,J.N. TAUB & SONS,F7000\nPARTN,GROSVERNOR CAPITAL MANAGEMENT,J5100\nHUNEGS STONE KOENIG & LENEAVE P A,,K1000\nResearcher,Clean Yield Asset Management,J1200\nPHYSICIAN,GEORGE KAPLAN MD,H1100\nSALES MANAGER,TRI SOURCE,Y4000\nTRUCK DRIVER,TIGERT WATER,Y4000\nAIRCRAFT CONNECTIONS,,Y4000\nattorney,Thelen Reid & Preist LLP,K1000\nANALYST,MUNICIPALITY OF ANCHORAGE,X3000\nTeacher,Self/Volunteer,X1200\nCEO,Acute Long Term Hosp Assoc,H2100\nFREE-LANCE JOURNALIST,,C1100\nCOO,Amscot,F1400\nA & E PROPERTIES INC,,J5100\nHOUSEWIFE,NA,G0000\nORTHOPAED,THE BONE AND JOINT CENTER,H1130\nVICE PRESIDENT,MGP INGREDIENTS INC.,Y4000\nREAL ESTATE SALES,ATTORNEY,K1000\nOWNER,CAFFE LUNA/OWNER,Y4000\nSales Rep,Iris T,Y4000\nSelf Employed,Attorney/ State Senator,X3000\nENGINEER,JAMES RELLELL,Y4000\n\"ANDREW, THOMAS & LAI\",LEONARD,Y4000\nPARTNER,C&G INVESTMENT ASSOCIATES,F7000\nConservation Manager,CA Conservation Corps,Y4000\nAT,KINDER MORGAN ENERGY PARTNERS LP,E1140\nLANDMARK TOWER CORPORATION,,Y4000\nLAW OFF STUART R MICHELSON,,K1000\nPhysician Shareholder Med Onc,New York Oncology Hematology,H1130\nENERGY INTERATION GROUP/PRESIDENT/C,,E1000\nPRESIDENT & CEO,LAKEVIEW MOTOR EXPRESS,T3100\nOPTOMETRIST,GRO,Y4000\nHOMEMAKER,RICHARD GRIFFITH,J1100\nADMINISTRATOR,MEDICAL GROUP OF PARAMOUNT INC.,Y4000\nOW,\"GREGORY MANAGEMENT COMPANY, INC.\",J6200\nTRAVEL REP,DAILEY-THORPE TRAVEL INC,Y4000\nATTORNEY,\"DENNIS W HENNEN, ATTORNEY AT LAW\",K1000\nNewroloqut,Self employed,G0000\nVIRTUA HEALTH INC,,H0000\nService Connected Ptsd Nam,Disabled 100%,Y4000\nFLEET BANK NH,,F1100\nEXECUTIVE,LEIDY INCORPORATED,Y4000\nCeo,Ezwireless,C4300\nPHOENIX MORTGAGE & INVESTMENT INC,,F4600\nPresident,Southwest Restaurant Systems,G2900\nReal Estate,The Shoping Center Group,G4000\nELECTRI,SANTON ELECTRIC COMPANY INC,B3200\nKEYS ENERGY SERVICE,,E1600\nCALIF PORTLAND CEM,,B5100\nHOTEL HENLOPEN,,T9100\nRAMGEO POWER SYSTEMS INC,,M5000\nHALMOS HOLDINGS INC,,F4000\nAVATAR INTERNATIONAL,,Y4000\nOwner,Ren Cei Hong Beauty,Y4000\nTHE HOFFMAN CO,,Y4000\nREFUSED,REFUSED,M3300\nC.E.O.,Match Net,F2100\n\"SENIOR ANALYST, CITY OF NEW YORK\",NYC OFFICE OF MANAGEMENT AND BUDGET,Y4000\n\"VORYS, SALER, SEYMOUR AND PEASE LLP\",,K1000\nPRESIDENT,IMHOTEP CONSTRUCTION GROUP,Y4000\nBUYER,PROMOTIONS UNLIMITED,G5210\n\"INT'L MOTOR SPORTS ASSOC INC\",,Y4000\nRaabi,Information Requested,Y4000\nREILLY AND SONS,,F3100\nSAUL FRIEDMAN & COMPANY,,Y4000\nEDITOR,MARIE CLAIRE,C1100\nSENIOR DIRECTOR PLA,SCHERING-PLOUGH,H4300\nCFO - Fremont,\"Psychiatric Solutions, Inc.\",H0000\nATTOR,KELL TUCHIN BOGDANOFF & STERN,J5100\nVANTAGE POINTE CAPITAL MANAGEMENT &,,H2200\nFARMER,A.C. FARMS INC.,Y4000\nPHILANTHROPIC ADVISOR,BESSEMER TRUST,Z9500\nEVANSVILLE TOOL & DIE INC,,M5000\nPilates Studio Owner,Self,G5800\nanthropologist,Quivira Research,Y4000\nSales,Washing Equipment Te,Y4000\nBUSINESS OFFICE MANAGER,\"HCR MANOR CARE, INC.\",H2200\nATTORNEY,RICHARDSON PATRICK WESTBROOK AND BRICK,K1100\nGALLERY OWNER,ARCTIC ARTISTRY,Y4000\nPRESIDENT-CPA,DAVID C. BINTLIFF & CO. INC.,Y4000\nCorporate Medical Director,Pediatrix Medical Group of CA,H1130\nCEO,CHILDHELP USA,H3000\nF W KOEHLER,,Y4000\nCONTRACT,JAX UTILITIES CONSTRUCTION,B1500\nSystem Administrator,Cray Inc,J1200\nMADISON BENEFITS GROUP,,F3100\nUNIVERSITY OF MICHIGAN SCHOOL OF NU,,J7400\nRETIRED,NOT EMPL;OYED,Z9500\nExecutive,Twentieth Century Fox TV,C2300\nGOVERNMENT RELATIONS,FBA INC,Y4000\nConsultant / Attorne,Both Self-employed,J1200\nINVESTOR,HOUGHTON-WAGMAN ENTERPRISES,Y4000\nBranding,Self employed,Y4000\nMANAGER,UP COMMUNICATIONS SERVICES,Y4000\nCLINICAL PSYCHOLOGIS,SELF EMPLOYED,H1110\nExecutive Director,Texans Together,Y4000\nCONSULTANT,ROSS & ASSOCIATES ENVIRO,Y4000\nVICE PRESIDENT,\"ROADWAY EXPRESS, INC.\",T3100\nPHYSICIAN,UPMC PRESBYTERIAN,H1130\nHASTINGS-TAPLEY INS AGENCY INC,,F3100\nWITHERS LUMBER CO,,A5000\nTIBBETTS & CO,,Y4000\nBOUWENS CONSTRUCTION,,B1500\nACCOUNT MANAGER,CREDENCE SYSTEMS,Y4000\nPRESIDENT,OILDOM PUBLISHING,C1100\nARBON PROPERTIE,,F4000\nAgribusiness,Self,A3300\nNATIONAL ACCOUNT MANAGER,LEWIS BAKERIES,G2100\nMCCORMICK DISTILLING CO,,Y4000\nDIR. OF MARKETING,RAIN FOR RENT,J6200\nMAJAC INVESTMENT,,J7500\nWAKE FOREST UNIVERSITY SCHOOL OF ME,,H1130\nENGINEER,HYFN,Y4000\n,WILSON JACOBSEN DESIGN DEVELOPMENT,Y4000\nLIQUOR MART,,G2840\nCOMPUTER PROGRAMMER,STATE OF SD,X3000\nRETIRED,RAMSEY COUNTY,X3000\nAttorney,Alston,J1100\nASSOCIATE,THE WINFIELD GROUP; INC.,G4000\nSHERIDAN INDUSTRIES INC,,Y4000\nPres/CEO,Panavision Inc,Y4000\nMarketing,Network Appliance,C5110\nAnesthesiologist,Tulane University Medical Center Anest,H1130\nPhysician,Pulmonary Specialists of Tyler,Y4000\nCARGILL/PRESIDENT/CEO,,A1000\nGeneral Manager,McKennon Implement Co.,Y4000\nVice President - Tax,VF Corporation,M3100\n\"Free-Lance Writer, Support Staff, Care\",Self employed,J7400\nTHEATER PRODUCER,SELF-EMPLOYED,C2900\nVice-President,Moorehead Communications,Y4000\nSoftware Consultant,The Sono Group,Y4000\nPEDIATRICIAN,LITTLE ROCK PEDIATRIC CLINIC,H1130\nATTORNEY,SELF-EMPLOYED,Z4400\nPhysician-Consultant,Self employed,H1100\nChairman,Specialty Products Co.,Y4000\n\"VINCENT GONZALES, TREASURER\",AQUA CALIENTE BAND OF CAHUILLA INDIANS,G6550\nEXECUT,ADMIRAL BEVERAGE CORPORATION,Y4000\nSR. MANAGING DIRECTOR,\"CNL FIANCIAL GROUP, INC.\",F4100\nOWNER,SCOTT MOTORS INC.,Y4000\nTHE RAM COMPANIES,,E1120\nPHYSICIAN,CHRIS PITTMAN M.D. P.A.,H1100\nLawyer,\"Haddon, Morgan & Foreman PC\",K1000\nProject Director,University of North Carolina at Chapel,H5100\nSENIOR MANAGING DIRECTOR,BEAR STEARNS & CO.,F2300\nCONSULTANT,YOUTHMUSE/SELF,Z9500\nLibrarian,Visitation School,H5100\nMEDICAL TECHNIC,PHILIPS ELECTRONICS,C5000\nWOOD CREEK FARM,,Y4000\nVENTURE CAPITOL,,J7400\nFRIESS ASSOC INC,,F2100\nPROFESSOR,COLLEGE BOARD,H5000\nCatholic Bookstore Owner,Self,G0000\nADVANCED OPTICAL SYSTEMS,,D0000\nREAL ESTATE,CATAMOUNT MANAGEMENT,G5270\nAMERIVEST,,F4600\nRealtor,Gary Greene,Y4000\nWOODBUYER,,B3000\nEDUCATIONAL AIDE,HILLIARD CITY SCHOOLS,X3500\nREAL ESTATE EXEC,THE LAKELAND GROUP,F4000\nS & D PLUMBING & HEATING,,B3400\nVW MARTIN COMPANY,,C4600\nMANAGING DIRECTO,HEALTHPORT CAPITAL,F0000\nATTORNEY,\"GONZALEZ & PALACIOS, LLP\",Y4000\nFinancial Economist,US Treasury,X3000\nCoffee Broker,Royal Coffee,J1200\nINFO REQUESTED,Health Matters of Sarasota PLLC,Y4000\nCourt Comm,Orange County California,X3000\nALLERGAN/VP/CONTROLLER EUROPE,,H4300\nExecutive,\"G.P.M. Industries, Inc.\",Y4000\nPARTNER,\"FULBRIGHT & LAWORSKI, LLP\",K1000\nPRESIDENT,HYDR-O-SEAL,M2300\nINSURANCE ADMINISTRATIO,,Y4000\nVice President,Town & Country Insurance Agenc,F3100\nVice President-Federal Affairs,American Insurance Assn.,F3100\nPROFESSOR EMERITA/AUTHOR,SELF-EMPLOYED,Y4000\nPresident and CEO,F&M Bank,F1100\nDIRECTOR OF BUSINESS DEVE,UNIVERSAL,F4200\nENGINEERING CONSULTANT,LARSEN ENGINEERS S.C.,B4400\nRETAILER,A.B.C. APPLIANCE LLC.,Y4000\nPRESIDE,EXECUTIVE TITLE SERVICE LLC,F4300\nPRINCIPAL,PETRIZZO STRATEGIC,K2000\nDIAGNOSTIC RADIOLOGIST,\"WASHINGTON RADIOLOGY ASSOCIATES, PC\",H1130\nReading/Language Arts,Fairfax County Public Schools,X3500\nCRYSTAL RUN CROSSING LLC,,Y4000\nSALES,BLOOMINGDALES,G4300\nBanker,R.Z.B. Finance L.L.C.,F0000\nFREELANCE SPORTS TELEVISION,\"SELF -- KEMPNER GROUP, INC.\",Y4000\nTelevision Producer,\"Bochco Media, LLC\",C2400\nPRESIDENT/CEO,THE DREES COMPANIES,B2000\nPEARCE URSTADT MAYER,,F2300\nRESOURCE HEALTH SYSTEM,,H1700\nPresident,Bison Electric Inc,B3200\nPRESIDENT,PREMIUM IMPORTS INC.,A1300\nH.V.A.C.,ROBERTS,Y4000\nOIL AND GAS,WHITE STAR ENERGY,J1100\nRetired  Consultant,Kern High School District,X3500\nDARTS K & B,,Y4000\nVice President,Reservation Telephone Cooperative,C4100\nBAIL BONDS,D&M SURETY MGMT. INC,Y4000\nFINANCE INVESTMENT COMPANY,,Y4000\nPhysician,University of Hospital of Cleveland,H1130\nMANAGER,MICROMATIC,D2000\nECONOMIST,SELF,X4000\nADMINISTRATOR/CEO,MARSHALL MEDICAL CENTER,H2100\nPUBLIC RELATIONS EXPERT,,G5210\nNUCLEAR ENGINEER,CONSULTANT,E1300\nPartner,Cedar Street Group,F2500\nPresident/CEO,CHANEY ENTERPRISES,B5100\nROSEKRANS REAL ESTATE,,F4200\nMTG REP,EDWARD LINGEL CO,Y4000\nELS FINANCIAL SERVICES INC.,,F0000\nCasner and Edwards,,K1000\nFIRM ADMINIS,MCGRATH AND ASSOCIATES,Y4000\nSUFFOLK BUS CORPORATION,,Y4000\nBANNER METAL CRAFT,,M5000\nATTORNEY,BLACKBURN & CONNOR,K1000\nWELLS REAL ESTATE,,F4100\nMarket Research,Fidelity Investments,F2100\nDIRECTOR,RURAL WATER ASSOC.,Y4000\nGOURGEON BROTHERS,,Y4000\nOIL GAS AND SALES,,E1100\nDirector,San Francisco Foundation,X4100\nOWNER,CIRCLE MANAGEMENT CO.,F4200\nWriter,Aarp,J7200\nCAROLLA ENGINEERING,,B4400\nLITERARY,SELF-EMPLOYED/LITERARY,Y4000\nVENTURA MEDICAL SUPPLY,,H4000\n\"LIUGINO'S INC\",,Y4000\nRETIRED,NO ONE,Y4000\nINVESTMENT BANKER,GMAC COMMERCIAL HOLDINGS CAPITAL MARKE,F2300\nSALES,NORTH GEORGIA TURF INC.,Y4000\nCommunity Affairs Director,BP Exploration Inc,E1150\nRegistered Nurse,The Place At Vero Beach,Y4000\nENGINEER,CALGON CARBON CORP,M1000\nExecutive,Will-Drill Operating,E1150\nPRESIDENT,REFRIGERATION ENGINEERING & CO,B3000\nINVESTMENT ADVIS,ATIOM CAPITAL MGMT,F2100\nPHYSICIST,HALLIBURTON,J1200\nSales Executive,Coscan Homes,B2000\nCHIEF OF STAFF,DC GOVERNMENT,X3000\nEXECUTIVE VICE PRES,VALLEY QUARRIES,Y4000\nBUSINESS DIRECTOR,HULTGREN FUNERAL HOME/BUSINESS DIRE,G5400\nARCHITECT-URBAN PLANNER,BETTERHOUSTON,Y4000\nPresident,Lansing Inc,Y4000\nTech Consultant/Producer,Self-Employed,C2000\nSALES,TEAMQUEST CORP,Y4000\nPRESIDENT,WESTPLAN INVESTORS,Y4000\nInsurance Agent,\"Mason City All Risk Insurance, Inc\",F3100\n\"Principal, Private E\",Golden Gate Capital,F0000\nPresident,Masterson Group,Y4000\nLESSORS OF REAL PROPERTY,,Y4000\nOwner/Retail,Juvencios Mens Wear,G4100\nASSOCIATE DIRECTOR,UFCW,Y4000\nMAGNA DRIVE,,Y4000\nKEY ACCOUNT MANAGE,\"EMO SERONO, INC.\",Y4000\nPresident,Maytex Mill Inc,J1200\nReal Estate,Dellinger Management,G5270\nExecutive,C3 Company,Y4000\nINCOME DEVELOPMENT MANAGER (FOUNDATION,AMERICAN CANCER SOCIETY,JH100\nEXECUTIVE ASSISTANT,FIRST A.M.E. ZION CHURCH,X7000\nBANKER,ROBERTSON STEPHENS,F2300\nVICE PRESIDE,JMA ENERGY COMPANY LLC,E1100\nTEACHER-UUP,,L1300\nPRESIDENT,EXTREME GRANITE AND MARBLE INC.,Y4000\nAttorney,Salter and Ferris,Z9500\nPhysician,Salud Para La Gente,Y4000\nTHOMAS E MILLER LAW FIRM,,K1000\nERI SERVICES INC,,Y4000\nSTAFF,PRIORITY ONE CU OF FL,F1300\nPOLIC,T. W. P. OF EDISON NEW JERSEY,Y4000\nPhysician,\"Allergy Associates, P.A.\",H1130\nMEDICAL EQUIPMENT,ALPINE HOME MEDICAL,Y4000\nTWO QUEEN LINE,,J7300\nAPPLIED ELECTRO TECH INC,,Y4000\nREGIONA,ACI -NORTHERN MKT-CLEVELAND,C4000\nDealership Owner,Good Motor Co,Y4000\nEXECUTIVE DIRECTOR - STATE AFFAIRS,FIRSTENERGY,E1600\nArchitect,Cdcarch,J1200\nAssistant Operations,Thompson Masonry Contracting Co.,B0500\nEXECUTIVE,DDA INC.,Y4000\nRancher/Homemaker,SELF-EMPLOYED,A3000\nCEO,CHOCOLATE BAYOU COMMUNITY FCU,F1300\nATTORNEY,CURTIS MALLET-PREVOST COLT & MOSLE L,K1000\n\"INSTITUTE FOR INT'L EDUCATION\",,H5000\n\"O'KELLY ANDERSON FINE\",,Y4000\nINVESTOR,GOLDMAN SACH & CO.,F2300\nEngineer/Manager,Bonniville Power,Y4000\nAttorney,\"Phillips, Webster Pllc\",Y4000\nAttorney,Rake & Catanese,K1000\nVICE PRESIDENT OF SALES,EUROBANK,F1000\nSOLAI & CAMERON INC,,C5130\nA.G. DILLARD. INC.,,Y4000\nROTTLAND HOMES,,B2000\nManager,Portosan Co. Inc.,Y4000\ninformation requeste,Arizona Shuttle,Y4000\nREALTOR,PRUDENTIAL REAL ESTATE/REALTOR,F4000\nFINANCE,GOLDMAN SACHS & CO,F2300\nart Specialist,\"Christie's\",F5500\nENGINEER,\"DG ADVSOR, LLC\",Y4000\nBRIER MARKET SQUARE,,Y4000\nAPM PRODUCE INC,,Y4000\nPROFESSOR - BIOCHEMIST,CASE WESTERN RESERVE UNIV,H5100\nCONSULTANT,\"NIELSEN, MERKSAMER ET AL\",K1000\nFaculty,The University Of Texas Pan Am,Y4000\nPresident,Earl Industries,T6100\nELECTRICAL ENGINEER,ARMY CORPS OF ENGINEERS,X5000\nWAITRESS,\"LINDA'S SEABREEZE\",Y4000\nPRESIDENT OF PR,ACT III PRODUCTIONS,J1200\nOWNER,HUDSON BLUEPRINT,C1300\nRESEARCH ANALYST,AFL-CIO,L0000\nMAUTZ BAUM,,Y4000\nEDITOR,BB PUBLIC AFFAIRS,Y4000\nAttorney,Random House Inc.,C1100\nAttorney,\"Adolph U Molding, Es\",K1000\nPUBLIC AFFAIRS EXECUTIVE,\"HIGH POINT STRATEGIES, LLC\",Y4000\nWriter/Astrologer,Self-Employed,G0000\nDERMATOLOGY ASSOCIATES OF TYLER,,H1130\nAttorney,\"Zukerman Gole & Brandeis, LLP\",K1000\nREGISTERED NURSE,AVENTURA PLAZA NURSING HOME,H2200\nPRESIDENT,VENUS DE MILO RESTAURANT,G2900\nOILER,BULLOCK OIL COMPANY,E1100\nConsultant,\"A. E. M. ENGINEER & TECHNICIAN, INC.\",B4400\nCIVIL ENGINEER,C.E.I.,Y4000\nAdministration,Haas Business Service,Y4000\nEducator,Metro Schools,X3500\nPRESIDENT,BONNER CARRINGTON/PRESIDENT,F4100\nRetired,Orlando Aviation Authority,Y4000\nPartner,Reisman Abramson PC,Y4000\nENGINEER,NOOTER CONSTRUCTION/ENGINEER,B1500\nSELF-EMPLOYED/BUSINESS OWNER/ CONSU,,G0000\nMANAGER,EASTERN FISHERI,Y4000\nEYE PHYSICIANS MED GROUP,,H1120\nWINSTON-SALEM COMM OF CULTURAL,NONE,J1200\nPRESIDENT,\"THE KID'S PLACE\",Y4000\nSUMNER RAINBOW CENTER,,A1000\nTurnaround Consultant,Alixpartners Llp,G5270\nYOSHIDA CORP/CHAIRMAN/CEO,,G4000\nGovermental Afffairs,Self Employed,K2000\nLaw Professor,Drexel University,H5170\nGRATUATE HEALTH SY,,H2100\nPHYSICIAN,\"JOEL E. COLLEY, MDPC\",H1100\nGENERAL MNGR.,WIRTZ BEVERAGE ILLINOIS,G2850\nKORBAL CHAMPAGNE CELLARS,,G2820\nPresident/CEO,BW Burdett Bldr,B2000\nMicrobiologist,Microbiotest,Y4000\nSchool Administrator,Cusd #205,X3500\nReal Estate,ABA Realtors,F4200\nCLEANTECH FINANCE,WELLFORD ENERGY,E1000\nPSYCHIATRIST,SALISBURY VIRGINIA MEDICAL CENTER,H2100\nMANAGER,\"GOSHEN INVESTMENTS, LLC\",F2100\nSocial Worker,Fountain House,Y4000\nConsulant,Flagship Government Relations,K2000\nCHAIRMAN,VALLS GROUP,J5200\nCEO,Clearwire Corporation,C4300\nAngel Investor and Real Estate Investo,Self employed,F7000\nCROP INSURANCE AGENT,AUBURN AGENCY,F3000\nowner,Seattle Seahawks,F7000\nExecutive VP,PolyMedica,H4400\nREGENCY REALTOR,,F4200\nOwner,City Plumbing & Heating Com.,B3400\nReq Info,Req Info,G5200\nMARTIN GROUP,,G5250\nSenior Vice President,Aspen Skiing Company,T9100\nPRESIDENT/CEO,SELF,G0000\nAttorney,Immigration Law Center,K1000\nCAMC,,H2100\nPHYSIOTHERAPY ASSOCIATES,,Y4000\nExec. VP,Modine Mfg. Co.,B5300\nDistrict Mgr,Knowledge Learning Corp,H5000\nEXECUTIVE DIRECTOR,CAMPHILL FOUNDATION,Y4000\nATT,STRADLING YOCCA CARLSON & RAUTH,K1000\nWelder,Miller Welding & Iron Works,M5000\nDEMAXCO,,Y4000\nLAND DEVELOPER,MILANO APARTMENT,F4500\nOWNER,STREVA DIST. CO.,Y4000\nPhysician,\"Saint Vincent's Hospital, NY, NY\",H2100\ndentist,twin lakes dental associates,H1400\nDIRECTOR OF ADULT ED,HOPELINK,Y4000\nUNITED PANEL SER,,T7100\nHOUSEWIFE AND HOMEMAKER,,Y1000\nWOODS BROTHERS REALTORS,,F4200\nOPERATIONS MANAGEMENT INTL I,,Y4000\nWILLIAMS FOUNDATION,,X4100\nExecutive,Carmax,T2300\nAssoc Professor,The Ohio State University,H5100\nENGINEER,SOS ENGINEERING SOFTWARE,Z9500\n\"Brustin & Lundblad, Ltd\",Attorney,K1000\nEXECUTIVE VICE PRESIDENT FOR CORPORATE,UNIVERSITY OF CHICAGO HOSPITAL,H2100\n\"Senior Director, Fed\",The MWW Group,K2000\nATTORN,\"BARNES, RUCHARDSON & COLBURN\",K1000\nPROJECT CONTROLS SPECIALIST,DOS LOGISTICS,B4000\n1st Vice President/I,Citigroup Global Markets,F1100\nfinancial,Clark & Company,Y4000\nOwner,Weigand Properties,G5200\nPresident Sales & Marketing,Richmar,M3100\nUNIFAB INC,,Y4000\nSALES TRADER,CUTTONE & CO,Y4000\nOPTOMISTIST,,H1120\nPHAMILY PHYSICIAN,INTERAMERICAN MEDICAL CENTERS,H2100\n,\"LAW OFFICES OF O'NEILLATHY & CASEY\",K2100\nUHDC,,M2100\nDEVELOPER,WIND CAPITAL GROUP,E1500\nTRAINING & RESOURCE SPECIALIST,,Y4000\nCEO,SOUTHWIND HEALTH PARTNERS,H3000\nINSUR,\"NEASE, LAGANA, EDEN & CULLEY,\",F3100\nKAZEWELL COUNTY ASPHALT COMPANY INC,,B5100\nManagement Support,Washington Suburban Sani,E3000\nTextile Representative,Self employed,M8000\nH-P PRODUCTS,,M4300\nVENTURE C,RESARCH TRIANGLE VENTURES,Y4000\nPartner,\"Neptune Capital Management, LLC\",F2100\nNew Products and Pro,NEA,L1300\n\"DUNCAN, ALLEN & MITCHELL\",,Y4000\nCOMPUTERS,,J6200\nPERFORMANCE ELECTRONIC INC,,Y4000\nSOUTHERN MIRROR COMPANY,,Y4000\nSALES,BARBARA SCOLNICK,J5100\nOFFICER OF A FAMILY FOUNDATION,,Y4000\nPT FIRE INSTRUCTOR,,Y4000\nRADIOLOG,GLASCOW RADIOLOGY P. S. C.,H1130\nInformation Requeste,\"DLZ, Corp.\",B4000\nPatent Lawyer,S.C. Johnson & Sons Inc,M1300\nCEO/STEEL MANUF. IND.,LONE STAR TECH,Y4000\nSISKIN HOSPITAL FOR REHAB,,H2100\nGROWER,\"DALLUGE FARMS, INC.\",A2300\nPHYSICIAN,PARTNERS HEALTHCARE,Z9500\nOWNER,LONG BROS. OIL COMPANY/OWNER,E1100\nREGIONAL DIRECTOR,CRAFORD BENEFIT CONSULTANTS,Y4000\nBROKER,SNOASPEN INSURANCE GROUP,J1100\nManager 5 - Sales,United Metro Materials,B5100\nVP,AFT Connecticut,L1300\nHAYNSWORTH MARION & MCKAY LAW FIRM,,K1000\nANDERSON & SCHWAB,,E1200\nPLEASANT COVE NURSER,,A8000\nGREENSPOON MARDER LAW FIRM,,K1000\nFinance,Citigroup Corp,F1100\nCONSULTANT,INFO REQUESTED,Y4000\nBOARD MEMBER,JOHNNIE WALKER,T8200\nVICE PRESIDENT,BALTIMORE SCRAP CORP,M2400\nTrader,Tristar  Management LLC,Y4000\nEWING MARION KAUFFMAN FDN,,X4100\nBUSINESS MANAGER,GAMCO CORPORATION,Y4000\nINVESTMENT BANKER,\"ROBERT A. INNAMORATI & COMPANY, INC.\",T9100\nUCSF,,Y4000\nEXECUTIVE,NEW BRUNSWICK PLATING,M5200\nFRANCIS & FREEDMAN,,F4200\nFinance Executive,Aquila Management Corp,F2100\nVICE PRESIDENT,LANCASTER COLONY,M7200\nEXECUTIVE,THE BASE GROUP,Y4000\nManagement Consultin,Alliance Management Systems,Y4000\nDOFFERMEYRE SHIELDS CANFIELD & KNOW,,K1000\nCFO,IT MANAGEMENT,Y4000\nPIONEER AUTO MUSEUM,,T2000\nAttorney,Private Practice Attorney,K1000\nMD- ANESTHESIOLOGIST,UVM,H1130\nINVESTMENT MAN,\"RAMER EQUITIES, INC.\",F2100\nAttorney,Pond North LLP,Z9500\nDental Hygi,Dr. Lawrence Lesperance,Y4000\nATTORNEY,\"O'CONNOR & VAUGHN, LLC\",K1100\nDISTRICT DIRECTOR,LYNN WOOLSEY FOR CONGRESS,J1200\nPresident,Falcon Enterprises,Y4000\nBOOKKEEPER,BROOKLYN WEST SUPPLY INC.,Y4000\nNORTH FLA REHABILITATION CONSULTAN,,Y4000\nHARRISON TUCKER & HYDE,,Y4000\nFACULTY OF U M AUGUSTA,,Y4000\nInsurance Agent,Carter/Roberts Insurance Agency,F3100\nMANAGING MEMBER,FORMATION CAPITAL INC.,F0000\nATTORNEY,\"JOSHUA A. ROSENBAUM, PC\",K1000\n\"NAT'L ASSOC OF HOMEBUILDERS\",,B2000\nPresident,\"Cielo Wind Services, Inc\",Y4000\nSEABURY VENTURES,,Y4000\nManager,Sandia Corporation,Y4000\nJOHN HANCOCK INSURANCE,,F3100\nOWNER,CERTIFIED MULTI MEDIA SOLUTIONS LTD.,Y4000\nphysician,Park Nicollet Health Services,H0000\nPARTNER,LONG LAW FIRM LLP,K2000\nOPTOMETRIST,BIG ISLAND VISION CENTER,Y4000\nDESIGNER,BRON DESIGN GROUP,Y4000\nDirector,IL Firm Covina,Y4000\nJEFFREY N WATANABE ATTORNEY AT LAW,,K1000\nSALESMAN,THE INTEGRAL GROUP,J1100\nPayroll Specialist,\"Airco Mechanical, Inc\",B3000\nBusiness Analyst,Emory University,H5100\nDISERIO MARTIN OCONNOR,,K1000\nG ELECTRODES,C,J7400\nFINANCIAL MARKETING,ATALANTA SOSNOFF,J5100\nPartner,VEROSITY,Y4000\nAttorney,\"Bogen Law Group, PA\",K1000\nREAL ESTATE,PHILLIPS REALTY,F4200\nPARALEGAL,PAUL WEISS LLP,K1000\nWILLIAMS PAVING,,B3000\nEXECUTIVE,ONE STEP UP,Y4000\nPROFESSOR OF LAW,EMORY UNIVERSITY,H5100\nEXECUTIVE,LANDMARK NURSERIES,A8000\nAttorney,Nicholls and Crampton PA,K1000\nRAINBOW BUILDERS,,Y4000\nHANEL LBR CO INC,,Y4000\nMEDICRAFT INC,,Y4000\nPresident,Columbine Health Plan,H1500\nINVESTMENT,SEIDLER FOSTER POTT LLC,Y4000\nJEWISH HOSPITAL,,H1100\nMI COMMUNITY ACTION ASSN,,JH100\nATTORNEY,TINGEY &TINGEY,K1000\nTECHNOLOGY CONSULTING,\"CATALYST BUSINESS PARTNERS, LLC\",Y4000\nBSKY AMOCO,,Y4000\nAccountant,CPH-EA Inc,Z9500\nUNIV OF ILLINOIS,,J7150\nExecutive,\"Ad Data, Ltd\",Y4000\nDANCE INSTRUCTOR/FITNESS INSTRUCTOR,SELF-EMPLOYED,G5000\nElectrical Tech.,Brown & Williamson,Y4000\nCollege Arcreditor,self,Y4000\nTEACHER,ECC INSTITUTE,J1200\nSPRINGHOUSE CORP,,H1710\nPresident,Philip Wine Truck Repair,G1200\nCEO,UNION GENERAL HOSPITAL,H2100\nMANAGER,OMAHA BOX CO.,M7100\nATTORNEY,BLANK & ROME,K1000\nSOUTHERN HOSPITALITY,,G2900\nINFORMATION REQUESTED,,F0000\nANESTHESIOLOGIST,ANESTH ASSOC ABINGTON,H1130\nCELLULAR TELE,,C4300\nCERTIFIED PARALEGAL,\"JOHNSON EIESLAND LAW OFFICES, P.C.\",K1000\nAttorney,Johnson & W. P.C.,K1000\nCEMSTONE,,Y4000\nMGR UTILITY OP,PHILIP MORRIS U.S.A.,A1300\nCHMN,JACK B PARSON COMPANIES,B1000\nbusiness leader,peco,Z9500\nCEO,SEI LLC,Y4000\nSALES,MIDWEST WATERBLASTING,Y4000\nRETIRED SOCIAL WORKER,,JD200\n\"SABLE, MAKOROFF, SHERMAN AND GUSKY\",,K1000\nOwner,DPM Communication,J7500\nCOMPUTER NETWORK CONSULTANT,,C5100\nOwner,Manager Of Managers Inc,Y4000\nPresident,\"Floorgraphics, Inc.\",Y4000\nPRESIDENT,RAZOR & TIE,C2600\nMCKINNEY AND GIVENS,,Y4000\nREQUESTED,.INFO REQUESTED,F4000\nMeeting Planner,SDI,Y4000\nOffice Manager,\"Paul T Leary, Dmd, PA\",Y4000\nCOMMERCIAL REAL ESTA,CB RICHARD ELIS,F4000\nENGINEER,R S I,Y4000\nJOURNEYMAN CARPENTER,POTTLE AND SONS CONSTRUCTION,B1500\nREAL ESTATE,MARCHANT COMPANY,F4000\nPHYSICIAN,FAMILY PRACITCE CENTER,H1100\nBanking Representative,\"Bremer Bank, National Association\",F1100\nDir Corporate Development,ProLogic Inc,C5130\n1ST ASST ENGINEER,INTEROCEAN UGLAND MGMT.,LT500\nMarket Head,Aetna Inc,H3700\nACAMG,,H1130\nREAL ESTATE DEVELOPER,INSIGNIA,F4200\nDWAN & COMPANY,,Y4000\nCEO,DETAR HEALTHCARE SYSTEM,Y4000\nAssociate Professor of Counseling,Chicago State University,H5100\nManaging Director,\"AAI Design, Planning, COnstruction\",B1500\nInsurance Specialist,Martin Insurance Agency,F3000\nRRZ&G HOLDINGS,,Y4000\n,AMER. LEAGUE OF FINANCIAL INSTITUT,F0000\nVICE PRESIDENT,SENIOR SYSTEMS TECH.,C5130\nInvestment Consultant,Marquette Associates,Y4000\nREGISTRAR,HENRY FORD MACOMB HOSPITAL,H2100\nInterior Designer,self-emplyed,G5000\nSALES,INTERSIL,Y4000\nINNOVATIVE BLDG CONCEPTS,,K2000\n\"CREEL INSURANCE, INC\",,F3100\nJEWLER,ASV CORP,Y4000\nRestaurant Owner,ANAND ENTERPRISES,Y4000\nbuilder,self,J7400\nConsultant,Millicint Museum,X4200\n\"PRESIDENT, OTC AMERICAS\",\"NOVARTIS/PRESIDENT, OTC AMERICAS\",H4300\nANETHESIA OF HIGHLAND PARK,,H1130\n\"PENA, APONTE & TSAKNIS P C\",,K1000\nPRIEST,\"ST. MARK'S EPISCOPAL CHURCH\",Z9500\nMATTRESS KING,,G1200\nPRESIDEN,WIRELESS NETWORK SOLUTIONS,C5110\nMANAGER,\"BAKER HUGHES, INC./MANAGER\",E1150\nPrincipal,PPS,Y4000\nVenture Capital,NC Enterprise Corporation,Y4000\nPhysician,\"Gastro'ology Consult of Central FL\",H1130\nSENIOR VICE PRESIDENT,PRESTAGE FARMS INC.,A1000\nBIG K,,G2400\nConsultant,Cap Gemini Ernst & Young,J1200\nROLAYTON RE LLC,,Y4000\nINVESTOR,WATERHOUSE MANAGEMENT CORP.,Y4000\nCEO,FEDERATED INVESTORS INC,J1100\nInvestment,Horizon Technology Finance,F0000\nHorticulturist,Self Employed,J7150\nNICHOLS ARTHUR FUN HOME,,G5400\nbank director,Borel Private Bank,F1000\nGALLANT BELK OF SENECA,,G4300\nFARMER,N/A,Y4000\nExec. Vp,Winner& Assoc.,G5210\npresident,Mac Sign Systems,Y4000\nPresident,Aesops Gables,G1200\nPresident,Empirical Design LLC,Y4000\nMother,not Applicable,Y1000\nPURVIS GRAY & COMPANY,,Y4000\nUTAH FIRST CREDIT UNION,,F1300\nRETIRED FROM ALAMEDA COUNTY OFFICE OF,PERS,Y4000\nSALLENGER & BROWN LLP,,K1000\nMD,Kidney Disease and Hypertension Center,H1100\nReal Estate Develope,SHS,F4000\nREAL ESTATE,TUCKER DEVELOPMENT CORP,F4100\nEXCELLCARE INC.,,Y4000\nEMPLOYMENT COMM,,Y4000\nTRIPLE G,,Y4000\nPresident/CEO,After-School All-Stars,Y4000\nDEVELOP,WEINGARTEN REALTY INVESTORS,G4000\nATTORNEY,VERIZON - RETIRED,X1200\nRETIRED,WELLS AND COMPANY/RETIRED,K1000\nReal Estate Sales,Bryan Properties,Z9500\nReitre Executive,None,Z9500\nResearch Analyst,Ms Media Intelligence,Y4000\nFIRST AMERICAN FINANCIAL,,F4300\nINVESTOR CONSULTANT,,F7000\nTX AUTO DEALERS,,T2300\nMANAGER,BATELLE,Y4000\nLEON M DESPRES,,Y4000\nCAREER MANAGEMENT,RIGHT MANAGEMENT,Z9500\nBOARD OF DIRECTORS,FCB,F1100\nPRESIDENT,SAGE HOTELS,T9100\nEXECUTIVE,GRANITE BROADCASTING CORP,C2300\nCHEMICAL ENGINEER,\"NALCO, AND ECOLAB COMPANY\",Y4000\nOwner,Quality Industries,Y4000\nVP Group Special Accounts,Great-West Life & Annuity Insurance Co,F3300\nBARTON CLINIC,,Y4000\nGEORGETOWN UNIV LAW CTRE,,H5170\nPORTFOLIO MANAGER,MCMURRY INVESTMENT ADVISORS LLC,F2100\nMusic Promoter,Aeglive,C2900\nRetired,University of Northern Iowa,H5100\nATTORNEY,ANDREWS YOUNG & GERAGHTY,K1000\nPhysician,Eli Lilly,H4300\nSTUDENT,SKIDMORE COLLEGE,H5100\nPsychotherapy,Associate,Y4000\nattorney,Morrison Foerster,K1000\nHEALTHCARE POLICY ANALYST,US GOVERNMENT,X3000\nExecutive,Business Incentives,G5200\nSales Manager,\"BackTrack, Inc\",Y4000\nPRESIDENT,SELZER CO INC,Y4000\n\"DIRECTOR, ST. ACT. MGT.\",FMC,A4100\nCONSULTANT,\"SMI, INC.\",K2000\nVICE PRESIDE,SECURITY NATIONAL BANK,F1100\nFaculty,Harvard Graduate School of Education,J1200\nCOFFMAN DEVELOPMENT CO,,Y4000\nFAIRMONT HOMES INC,,Y4000\nBAIRD HOLM ET AL,,K1000\nDIVISION OF HIGHER EDUCATION,,X0000\nCHAIRMAN,KUSHNER COMPANIES,F4000\nCEO,Mezzia,Y4000\nAttorney,Padberg & Corrigan Law Firm,K1000\nPOLK CTY SOCIAL SERVICES,,Y4000\nCFO,COMERICA BANK,F1100\nSR. GVT. AFF,\"STEPTOE & JOHNSON, LLP\",K1000\nPhysician,The Dermatology Center of Indiana,H1130\nGENERAL COUNSEL,PMI MORTGAGE,F4600\nNORTHWEST FINANCIAL SVCS L L,,F0000\nEXECUTIVE,THE KELLEY GROUP,Y4000\n\"WACHTELL, LIPTON, ROSEN AND KATZ\",,K1000\nABC REALTIES,,F4200\nATTORNEY,PANISH SHEA & BOYLE LLP,K1000\nCEO/Owner,Tomah Products,Y4000\nCARL SPIELVOGEL ASSOC INC,,T2300\nGARY ISKOWITZ & COMPANY,,Y4000\nself,fundraising consultant,J7400\nProgram Manager,Drs Technologies,D3000\nSchool Social Worker,Milwaukee Public Schools,X3500\nSOFTWARE DEVELOPER,NIXXTECH,Y4000\nDirector,Yash Venture Llc,Y4000\nMFG. REPRESENA,COSANS & ASSOCIATION,Y4000\nLawyer,Zuckerman Spaeder Ll,K1000\nOffice Assistant (pa,\"St. Paul's Episcopal\",Y4000\nFinance,Kitsap Bank,F1000\nAT HOME,MY KIDS,Y4000\nAttorney,Matthews & Branscomb,K1000\nPresident,Gulf Coast Bank,F1000\nPRINCIPAL,WIELAND INTERIORS,Y4000\nDIRECTOR,XO COMMUNICATIONS,C4100\nMARKETING,KNSTYLE,Y4000\nPATHOLOGIST,CINCINNATI CHILDRENS HOSP MED CTR,H1130\nWU PROPERTY INVESTMENT,,F4000\nLONG LAKES TRACTOR,,A4200\nPRINCIPAL,CHARLOTTE CHINESE ACADEMY,Y4000\nGlobal Logistics Manager,Amazon.Com,C5140\nDirector Human Resources,Activision Publishing,C1100\nPHYSICIAN,VALLEY ANESTHESIOLOGY,Z9500\nOwner,Big River Lawn,Y4000\nRADIO TALK SHOW HOST,SELF EMPLOYED,C2100\nM W R A,EQUIPMENT OPERATOR,Y4000\nLINEAR ACCELERATOR,FLORIDA HOSPITAL,H2100\nEUREKA INFO SERVICES,,Y4000\nattorney,The Kaplan Group Ltd,K1000\nREAL ESTATE BROKER,WANDA SMITH & ASSOCIATES,F4200\nAttorney,unemployed,J1200\nTEACHER,CHAPPAQUA CENTRAL SCHOOL DISTRICT,X3500\nPROJECT MANAGER,OGC,Y4000\nOrc Worldwide,ORC Worldwide,Y4000\nCEO,ERVIN TECHNICAL ASSOCIATES/CEO,K2000\nPAULSON NANCE,,K1000\nTREYTS,,F2100\nACCOUNT MANAGER,THE CSI GROUP,Y4000\nPresident,\"HMB Partners, Inc.\",Y4000\nTHUNDERBOLT MARINE INC,,T6000\nC E O,MACH 2 MANAGEMENT,G6400\nAttorney,Theresa Caron Law Office,K1000\nPSYCISIAN,,H1100\nUS DEPT OF VET AFF,,X3000\nFundraising/Development,Self employed,Y4000\nLOUISVILLE MANUFACTURING,,Y4000\nINVESTOR,SILVER POINT CAPITAL,JE300\nVp Pub Aff,Nat Assn Indep Cous,Y4000\nEngineer,Ecs Mid-Atlantic Llc,Y4000\nDESTILERLA SERRALLES INC,,G2820\nPartner,D. Thomas & Associates,G2100\nPRESIDENT,ALL AMERICAN CONTAINERS INC. OF TAMPA,J5100\nGREETER,CHILDRENS MEMORIAL HOSPITAL,H2100\nPRESIDENT,DEVOE CADILLAC,T2300\nFOOTHILLS RHEUMATOLOGY,,H1130\nEWING-FOLEY INC,,C5110\nSite Lead,\"Veteran Technologies, Inc\",Y4000\nTHE HEWSON COMPANY,,Y4000\nDUDINSKY LISKER AND ASSOCIATES,,Y4000\nInsurance,NAI Group,Y4000\n\"BUCKINGHAM, DOOLITTL\",,Y4000\nTHE HARTMAN GROUP,,Y4000\nBUSINESS OWNER,VANGUARD ID SYSTEMS,Y4000\nReal Estate,Gleason & Associates,Y4000\nAttorney,Engel & McCarney,K1000\nPRESIDENT & BUSINESS MANAGER,SHEET METAL WORKERS LOCAL 73,LB100\nPresident,Kito Inc.,K2000\nScientist,U. Wisconsin,Y4000\nAttorney,Aklufi & Wysocki,J1200\nATTO,\"BELL, MCANDREWS, HILTACHK, LLP\",J7150\nPHYSICIAN,POLYCLINIC,H1100\nJohns Hopkins Univ Appplied Physics,,Y4000\nOFFICE MANAGER,RCI APPRAISAL GROUP LLC,F4700\nC.E.O.,SAVEOLOGY.COM,C5140\nUSED VEHICLE SALES,BOWYER MOTORS INC.,Y4000\nLEGISLATIVE COUNSEL,PMA GROUP,K2000\nCOMMUNITY TRANSIT LINES INC,,T4000\nAMERICAN POLITICAL NET,,Y4000\nOWNER,BENEFITS BRAKERAGE,Y4000\nCITY OF BLACKFOOT,,X3000\nPAN-AMERICAN HOSPITALS,,H2100\nPRESIDEN,STAFF PAYROLL OF PENSACOLA,G5250\nConsultant,Ben Barnes Group,Z9500\nAttorney,Southern Star Central Gas,E1100\nUNICARE HEALTH FACILITIES,,H2200\nRORNOLLE ROOFING INC,,J1100\nviolinist,School for Strings,Y4000\nAgent,Dept. Of Homeland Security,X3200\nEMERGENCY PHYSICIAN,ORLANDO REG MED CTR,H1100\nFRANCISCAN SISTERS HEALTH CARE,,H0000\nREESE SERBIN KOVACS &,,Y4000\nINN KEEPER,SELF: HOOD HOUSE B&B,T9100\nEXECUTIVE,CNAIMA,B5400\nBUSINESS OWNER,TRAVEL PARTNERS,Y4000\nDATA ANALYST,UNITED ONLINE INC.,Z9500\nDEALER,STEAD MOTORS WALNUT CREEK,T2300\nELECTRA TRAVEL INC,,H5200\n\"VICE PRESIDENT, BUSINESS OPERATIONS\",BENDBROADBAND,C2200\nACCOUNTANT,C. & P. RESTAURAN CO. L.L.C.,G2900\nREAL ESTATE SALES,AUSTIN COMPANY,F4000\nINDRAMAT,REXROTH CORP,M2300\nFABIANO BROTHERS INC.,,G2850\nAttorney,Vallone Law Firm,K1000\nGENERAL PARTNER,AVI CAPITAL L.P.,F2500\nVice President,\"MarineTech Products, Inc\",Y4000\nEXTENDER TRANS./MAERSK/2ND ASST ENG,,LT500\nVICE PRESIDENT,HOVENSA LLC,E1160\nREALTY PROFESSIONALS,,F4200\nPresident,Hodges Properties,F4000\nUROLOGIST,\"UROLOGY SPECIALISTS OF WISCONSIN, SC\",H1130\nEconomist,\"Bates White, LLC\",Y4000\nMOTHER,SELF,Y1000\n\"MCDERMOTT, JAMES\",,Z1200\nBUSINESS OWNER,PARABELLUM COLLECTION INC,Y4000\nConsultant,Wh Advisory Group,Y4000\nLAWYER,CLARIENT INC,J7400\nFINANCIAL ADVISOR,HENNINGS FINANCIAL INC,Y4000\nSCHAEFER MEYER - GRADING DIVISION,,Y4000\nAMERICAN DISTRIBUTION SYSTEMS,,Y4000\nSPENCER FANE BRITT &,,K1000\nPresident,Hercon Construction Inc.,B1500\nSOFTWARE CONSULTANT,VERTEX INC,C5130\nBroker and Auctionee,Woltz and Associates,Y4000\nIve Analyst,State Of Nm,X3000\nSenior Reading Advisor,Reading and Writing Project - Teachers,Y4000\nENGINEER,MALCO INDUSTRIES INC.,Y4000\nPresident,Lane Group Inc,G3000\nHOLMAN CHEVROLET OLDSMOBILE,,T2300\nPhysician,UT Southwestern Gynecology Associates,H1100\nEh&S Specialist III,Gen-Probe Incorporated,H3500\nCFO,SUSSER HOLDINGS CORP,E1170\nOwner,Val N. Jensen Cpa,F5100\nFinance,Conus Partners Inc.,Z9500\nVP Entprs Contractg/Pymt Refrm,\"The Wellpoint Companies, Inc\",H3700\nENERGY EAST CORPORATION,,E1620\nEXECUTIVE,MORRIS REALTY LP,F4200\nK B CONNOR REAL ESTATE,,F4000\nIN,BERNSTEIN GLOBAL WEALTH ADVISORS,Y4000\nLegislator,State Legislature,X3000\nTRACTOR CO,,Y4000\nOWNER,DARBY METALWORKS,M2000\nSTATE OF NORTH CAROLINA,,J1100\nDOCTOR,BOSWELL ORTHEPEDIC CLINIC,Y4000\nFINANCE EXECU,AB ENVIORNMENTAL CORP,Y4000\nVice President Human Resources,North Shore Medical Center,H2100\nSELECTMAN,CITY OF PITTSBURG,X3000\nCONSULTANT,S.P.C. CONSULTANT,Y4000\nPRESIDENT/CEO,GOCOM MEDIA,C2100\nSr. Vice President,M&I Bank,F1100\nBusiness Manager & D,Kedron Village Dental Inc,Y4000\nPLANT PATHOLOGIST AND CONSULATANT,SELF,Z9500\nARKANSAS ONCOLOCY,,H1130\nAttorney,Morgan Ruby Schofield,K1000\nPOPE & HUDGENS,,Y4000\nPRESIDENT/CEO/EXECUTIVE,\"MORTON Grinding, Inc\",Y4000\nTreasurer & VP Gover,AHFA,M4100\nMother,Home,Y1000\nEXEC,INTEGRATED AIRLNE SERVICES INC,J1100\nOWNER,SCHROEDER BROS. FARMS,Y4000\nHAHN OIL COMPANY INC,,G4300\n\"PUMP \\\"\"N SHOP\",,Y4000\nAssistant to Regional Manager,Dunder Mifflin,Y4000\nATTORNEY,COMMUNITY DEVELPMENT FOR ALL PEOPLE,Y4000\nSalesman,Oxford Machinery Sales Corp,J1100\nCOMM. DEPARTMENT OF WORKPLACE STANDARD,COMMONWEALTH OF KENTUCKY/COMM. DEPA,X3000\nLawyer,\"Moore, OBrien, Jacques & Yelenak\",K1000\nCHEESEMAKER,DAVISCO FOODS INTERNATIONAL,A2000\nVP,Quality Crushed Stone,B5100\nCEO & President,Allen Sourcing,Y4000\nORTH-LAP,ROBINSON CONNER OF ARIZONA,F3100\nRetired,U of Chicago,J7400\nAgronomist,Midwest Cooperatives,Y4000\nHUNT REAL ESTATE/CHAIRMAN/C.E.O.,,F4000\nTEACHER,HMJ ENTERPRISES,Y4000\nPhysician,GIMG,Y4000\nManaging Partner,\"Williams Family Ranches, LLC\",A3000\nGENERAL MANAGER,DBT AMERICA INC.,E1200\nBLAKE REAL ESTATE,,F4000\nTHE KOHLER COMPANY,,B5300\nLAWYER,MALOVOS LAW,Y4000\nMAPL STORAGE LLC,,Y4000\nOWNER,SAINTSBURY,Y4000\nCHAIRMAN AN,THE DREYFUS CORPORATION,F2100\nST MICHAELS HOSPITAL,,H2100\nHGF INC,,F4500\nVice President,Bell Construction,B1500\nPHYSICIAN,\"CHILDREN'S UROLOGY OF VIRGINIA\",H1130\nAttorney/Consultant,Booz Allen Hamilton,G5270\nOwner,McNeill Footwear,Y4000\nMGR. GOV AFFAIRS &,MARTIN MARIETTA,B5100\nMCCARTER & ENLISH LLP,,K1000\nOWNER,J V`S,Y4000\nATTORNEY,ARGORE,Y4000\n\"NBTY, INC\",,Y4000\nPhysician,St. Louis Pathology Associates,H1130\nPresident,\"Damian Christopher, Inc.\",Y4000\nConsultant,\"PORTFOLIO ASSOCIATES, INC\",Y4000\nFacilities Manager,Mckenna Long & Aldridge,K1000\nFinance,Meridian Financial,F0000\nPRODUCTION MANAGER,\"4CP, INC.\",Y4000\nPodiatrist,Wisonsin Society of Podiatric Medicine,H1130\nEXEC,SW ARKANSAS DEVELOPMENT COUNCI,X4100\nLENDER,METROPOLITAN FINANCIAL SERVICES,F0000\nInsurance agent,Medhus Insurance,F3100\nLENDER,HOMESIGHT,Y4000\nDirector,Livingston Group,K2000\nTEACHER,,J7400\nMET OPERA,,C2800\nPRESIDENT-ELECT,W ASHLEY HOOD D.O. PLLC,H1130\n\"CLEEK'S INC\",,G5300\nUNIV ANESTH SERVICE,,H1130\nCOUNCIL OF JEWISH ORGAN,,J5100\nHealthcare Worker,Healthcare Of Atlanta,H0000\nPT,HC Solutions,H1700\nATTORNEY,SCHWEGMAN,Y4000\nINVESTMENT BROKER,MCDONALD FINANCIAL GROUP,F0000\nFOOD FOR FUNDRAISER,,Y3000\nEngineer,McClure Engineering,B4400\nCHAIRMAN,CHELA FINANCIAL RESOURCES,J9000\nISGOOD REALTY,,F4200\nSEVERSON & WERSON,,F4600\nGovernment Contracts,ATI,T1500\nMarketing and Advertising Consulting,David Olson Consulting,Y4000\nMEDIATOR/COACH,SELF EMPLOYED,Y4000\nEXECUTIVE,\"WESTEX, INC\",Y4000\nHealthcare Admin,Slehs,Y4000\nJET VAC SERVICE & EQUI,,Y4000\nUMASS MEMORIAL HEALTH CARE/CFO/TREA,,H1000\nCFO,Central Ohio Cardiology,H1130\nCompany President,Plastic Bottle Corporation,M1500\nPsychologist,Self & V.A. Healthcare,H1110\nIRIDIAN ASSET MANAGEMENT,,F2100\nC.E.O.,LAWSON PRODUCTS INC.,Y4000\nED PH,LAKELANDS EMERGENCY PHYSICIAN,H1100\nPathologists,Kaiser Permanente,H2000\nMANAGER OF CRUDE TRADING,NEXEN,E1120\nATTORNE,OQUINN KERENSKY & MC ANNICH,K1100\nSELF-,ALLIED TRANSPORTATION COMPANY,X1200\nBLITZ CORPORATION,,T2200\nTHE VOINOVICH COMP,,G5200\nTeacher,Battle Ground Schools,J7300\nMARTIN-SEIBERT LC,,K1000\nPresidentCEO,The Walters Group,H2100\n,CENTER FOR MEDICINE AND PSYCHIATRY,Y4000\nSOUTHEASTERN NEPHROLOGY A,,H1100\nATTORNEY,\"RINEHART, RISHEL & CUCKLER\",Y4000\nEDUCATOR,STATE OF NEBRASKA,J1200\nBLACK GOLD SALES,,Y4000\nCHAIRMAN,REGAL BAG CORP,Y4000\nHuman Resources,Rand,J7400\nVICE - PRESIDENT,DUTKO GROUP,K2100\nPRESTIGE FORD,,T2300\nINSURANCE COMPANY CONSULTANT,N.A.,Z9500\nOwner,Vaughn Valley Cattle Co.,Y4000\nAT,HANGLEY ARONCHICH SEGAL & PUPLIN,J1200\nSENIOR MANAGER,EXXON MOBIL,E1110\n\"Vice President, Bois\",Federal Way,B5100\nPHYSICIAN,\"NARENDRA PARSON, MD\",H1100\nSUSQUEHANNA RESOURCES & ENVIRONMENT,,C5130\nATTORNEY,\"JAECKLE FLEISCHMANN & MUGEL, LLP\",K1000\nAttorney,Time Inc,C2000\nLAND DEVELOPER,SELF EMPLOYED/LAND DEVELOPER,F4100\nPresident,ClientAccessWeb.Com,F5200\nTIC GUMS,,G2100\nNURSE,VERSANT,Y4000\nCONSULTANT,VENTURI PARTNERS,J1200\n\"SENDIK'S BROOKFIELD, INC\",,Y4000\nBethel Health Management Ass.,,H0000\nOutreach Consultant,Center for Disease Control,X3000\nINVESTOR,NEXT POINT MANAGEMENT INC.,F2500\nPROFESSOR,MSUB,Y4000\nMUIRFIELD VILLAGE GOLF CLUB,,G6400\nVice President,\"Parson's Inc\",Y4000\nPROGRAM DIRECTO,W.M.KECK FOUNDATION,Z9500\nRW ARMSTRONG & ASSOCIATES,,Y4000\nKAUFF & MENNA,,Y4000\nCertified Registered Nurse Anesthetist,Anesthesia Medical Group,H1130\nPRESIDENT,\"Tax Sheltered Plan Services, I\",F5500\nAPPAREL EXECUTIVE,EMBROIDERY SCREENWORKS,Y4000\nSVP FINANCE,PARAMOUNT PICTURES,C2400\nECHO RR REALTY,,F4200\nCFO,\"INLAND TRUCK PARTS, INC.\",T2200\nCHAIRMAN,HOLDER HOSPITALITY GROUP,Y4000\nOwner,Diamond General Engineering,B4400\nBRUSEO CONTRUCTION,,B0000\nDIRECTOR OF OPERATIONS,ZACHRY HOLDINGS INC.,B1000\nENTREPRENEUR,GALAN ENTERTAINMENT,J7500\nINTERN,THE HEART BEAT CLINIC,Y4000\nContractor,Tri State Bl Co.,Y4000\nSTERN AGEY & LEACH,,Y4000\nTREASURER,FIRST HERITAGE CORP.,Y4000\nLOBBYIST,NATIONAL GRID CORP.,Y4000\nOperations Manager,Buckeye State Mortgage Co.,F4600\nCEO,G W Thomas Architect,B4200\nPresident,Tri Smith Corp.,Y4000\nPhysician,Penn State College of Medicine,H1100\nATTORNEY,SAE INTERNATIONAL,Y4000\nMANAGEMENT PERSONNEL,COLONIAL PROPERTIES TRUST,F4100\nChairperson/CEO,Loews Hotels,T9100\nTSP,,M5200\nVP INVENTORY PLANNING & REPLENISHMENT,UNFL,Y4000\nATLAS IRON & METAL INC,,J5100\nCONTEMPORARY REALTY SOLUTIONS INC.,,F4600\nConsultants,Psc,Y4000\nCPA,Ernst &Young,F5100\nPresident,Sno White Floor MAT. Systems,Y4000\nJ J B REALTY COMP,,F4200\nPHYSICIAN,\"MARLY ZWELLING, MD\",H1100\nLand Developer,Heiner Construction Company,B1500\nSALES,PEABODY ENERGY,E1210\nCONSULTANT,EDUCATION SYSTEMS & SOLUTIONS,Y4000\nenviro. Consultant,self,G0000\nITW/GSE HOLDINGS INC./GM,,Y4000\nattorney,Cogan & McNabola,Z9500\nDELAWARE GROUP,,F4100\nCEO,Ferrellgas,E1190\nHair Stylist,Salon Blonde,Y4000\nA-C ELECTRIC,,E1600\nMEDIA EXECUTIVE (RETIRED),RETIRED,X1200\nPRESIDENT/CEO,NAVISTAR,T3200\nEXECUTIVE,MOBIL OIL CORPORATION,E1110\nVP Table Games,Caesars Palace,G6500\nRENEWABLE ENERGY,THOMAS S. MICHELMAN INC.,Y4000\nController,Secure Wrap,T7000\nT.W. FRIERSON CONTRACTOR INC.,,B0500\nINVEST MANAGEMENT SERVICES INC,,F2000\nELECTRICAL,TENDAIRE INDUSTRIES INC.,Y4000\nMANAGER,\"TENDRIL NETWORKS, INC.\",Z9500\nRETIRED,Retired,X1200\nNEW HAMPSHIRE ASSOCIATION FOR JUSTI,,Y4000\nATTORNEY,\"JOHNSON, SMITH, HICKLAND & WILDMAN LAW\",K2000\nPRESIDENT & CEO,BLUE CROSS OF IDAHO,F3200\nClassical Piano Teac,Self-Employed,Y4000\nPAIN MAN,DARTMOUTH HITCHCOCK CLINIC,H1130\nPublisher,CEO,G0000\nBUSINESS OWNER,PURITAN BACKROOM RESTAURANT,G2900\nWater Well Drilling,Self,Y4000\nLobbyist,\"Governmental Advocates, Inc.\",K2000\nSURVEYOR & ENGINEER,SELF,B4300\nEngineer,Tigr,J1200\nRETIRED,MANAGEMNT SYSTMS INT,Y4000\nGovernment Affairs,Fiorentino & Hewett,K2000\nMEDICAL ONCOLOGY ASSOCIATES OF AUGU,,J1200\nOwner,Robert W Strozier Pllc,K1000\nTHE RENKES GROUP LTD,,K1000\npublic policy professional,Sonnenschein Nath & Rosenthal,K2000\nCNO,\"Presbyterian/St Luke's Medical Center\",H2100\nMOTOROLA,,J7500\nFEDERAL MEDIATION & CONCILIATION SE,,X3000\nFENCE CO,,Y4000\nPhysician,Virtual Radiologic Prof,H1130\nRegional Manag,Rogers Benefit Group,Y4000\nReal Estate Manageme,Carolyn G. Henderson,Y4000\nInvestments,Self employed,X1200\nDIRECTOR STATISTICAL SERVICES,IMS,Y4000\nAKSYS LTD./SENIOR VICE PRESIDENT/CT,,H4100\nISI GROUP INC,,Y4000\nDENTIST,NOELRIDGE DENTAL,H1400\nEXECUTIVE,THERAPERTIC,H4100\nPART,MILLER BROTHERS PROPERTIES LTD,F4000\nAttorney,Taylor & McNew P.A.,K1000\nBROCK SCOTT & INGERSOLL P.A. L.L.C.,,Y4000\nATTORNEY,\"THOMAS & LYON, LLC\",Z9500\nPRESIDENT,HOTEL/RESTAURANT ASSOCIATION,T9100\nCOO,MOTION PICTURE ASSOCIATION OF AMERICA,C2400\nINVESTMENTS ADVISOR,\"NEW ENGLAND CAPITAL MANAGEMENT, INC.\",F0000\nConsultant,PRICE WATERHOUSE,F5100\nExecutive,Corrado American,B1000\nLIFE INSURANCE SALES,\"PROFIT PLANS, LLC\",Y4000\nCEO,GREENS INC.,C1300\nPRESIDENT,\"GIBSON & SCHAEFER, INC.\",Y4000\nOWNER,J C DUNCAN  D D S,H1400\nSTEARNS WEAVER MILLER ETAL,,K1000\nSELF-EMPLOYED/REPORTER/WRITER,,C1100\n\"Vice Pres, State Gov Relations\",Fidelity Investments,F2100\nCORPORATE CONTROLL,COLD HEADING CO.,M5000\nTEACHER,ISABEL UNIV,Y4000\nCEO,Hunt Midwest,Y4000\nOwner,Caliborne P. Hollis Investments,Y4000\nDIRECTOR-DIVERS,THE WALT DISNEY CO.,C2000\nRestaurant Owner,Oregon Restaurant Services,G2900\nAttorney,\"O'Hara Ruberg & Sloan\",K1000\nINFORMATION RESEARCH,Self employed,G0000\nAttorney,Steinberg Polacek & Goodman,Y4000\nCASEY & SAYRE,,G5210\nVice President,Intergy Corp,Y4000\nA ESTEBAM & CO INC,,G5240\nEngineer,Spears Manufacturing,Y4000\nPRESIDENT,MIKE BARNARD CHEVROLET OL,T2300\nPRINCIPAL,SIMSMETAL,Y4000\nCHURCH OF THE INCARNATION,,X7000\nDR RICHARD J CLEMENT,,H1100\n\"KLEHR, HARRISON, HARVEY, B\",,K1000\nSENSORMATIC ELECTRONICS CORP,,G5290\nSELF-EMPLOYED,LITEK INC,Y4000\nPresident,\"Quality Snack Foods, Inc\",Y4000\nBUSINESS OWNER,SHOW DOGS GROOMING SALON,Y4000\nFENTRESS CO HOSPITAL,,H2100\nMED,SELF-EMPLOYED,G0000\nPRESIDENT & CEO,THE KANE COMPANY,Y4000\nMEDICAL AESTHETICIAN,SELF-EMPLOYED,Y4000\nPresident,\"Civic Service, Inc.\",K2100\nBRANCH MANAGER,\"DELTA ELECTRIC, INC\",B3200\nCEO,STARCON INTERNATIONAL INC,Y4000\nDIVISION PRESIDE,OIL FIELD SERVICES,E1150\nRICHARDSON PATRICK WESTBROOK & B,,K1100\nOWNER,\"THE NUT PLACE, INC.\",Y4000\nJIM DOYLE FORD INC,,T2300\nEXECUTIVE VP,CABLE TV -- COMM. ASSOC. OF IL.,Y4000\nPresident,Prime Corp,Y4000\nPHYSICIAN,PRIME HEALTH CARE SYSTEM,H2100\nPRESIDENT/CEO,PEPIN DISTRIBUTING COMPANY,G2700\nWISHNATSKI & NATHEL,,Y4000\nCONTRACTOR,,F4500\nFINANCIAL PLANR,SNYDER FINANCIAL GROUP,F0000\nATTORNEY,HUGHES AND LANE,K1000\nPARTNER,B & C WESTERN DEVELOPMENT,Y4000\nREAL ESTATE INVESTMENTS,TISHMAN SPEYER,F4000\nLANGLEY & LEE,,Y4000\nIce Machine Distributor,Marshall-Webb Co.,Y4000\nBusiness Owner,\"CDA, Inc\",Y4000\nOrganizer,Self-Employed,G0000\nSeed Dealer,Self,A4000\nK BROWN SECURITIES,,F2100\nBuilder,Commercial Property Associates,F4000\nPartner,\"Sundquist Anthony, LLC\",Y4000\nCeo,CAB Incorporated,Y4000\nPREISENT,THE MAECHERICH COMPANY,Y4000\nChairman,Brewster/Jory Associates LLC,K2000\nCONSULTANT,BPS,Y4000\nTV Programming Executive,Outdoor Channel Holdings,C2200\nALON VENTURES,,Y4000\nCredit Union CEO,Central CU of Illinois,F1300\nBERER AUTO PARTS CO INC,,T2200\nEDUCATOR,HOPEWELL BOROUGH,Z9500\nENGINEER,ACCOMGS,Y4000\nATTORNEY,\"FARMER, JAFFE, WEISSING ET AL\",Z9500\nHEALTH SERVICE,VANDERBILT,H5100\nPRIVATE EQUITY,PAYMENTS INTERNATIONAL,F2600\nAttorney,\"Cornetstone Gov't Relations\",K2100\nINVESTMENT BANKER,U.S. BANK NATIONAL ASSN.,Y4000\nOrthopedic Surgeon,Central Virginia Orthopedics,H1130\nRequested,Holy Cross Hospital,H2100\nCIVIL ENGINEER,KIRKHAM MICHAEL,B4000\nTeacher,Millard School District,X3500\nPCBC OF WORLAND,,G2700\nSenior VP/COO,Golden Rule Financial Corp,F3100\nPRESIDENT & C.E.O.,EUROPEAN-AMERICAN BUSINESS COUNCIL/,G1300\nGraphic Design,Mccullough Creative Group,J1200\nUNITED TV,CHRIS CRAFT,C2100\nPresident,J. Fletcher Creamer & Sons,B1000\nVICE PRESIDENT - OPERATIONS,SAVANNAH LUGGAGE,Y4000\nMORTGAGE BANKER,LAY COMMERCIAL,Y4000\nAudio Engineer,\"Get Right, Inc\",Y4000\n\"HYMAN, ABELL ET AL\",,Y4000\nPhysician,Columbia University Med Ctr,H1100\nSALESMAN,FARMER,A1000\nENGINEER,AIRVANA INC./ENGINEER,C4300\nCREDIT ANALYST,AT&T,C4100\nDR.,RANDOLPH GASTROENTEROLOGY CENTER,H1130\nCOMMUNICATIONS CONSU,Self employed,G5200\nBusiness Owner,\"Persimmon Group, Inc (PDG)\",Y4000\nPRESIDENT AND CEO,GLC ENTERPRISES,F2100\n\"SVP, President Massachusetts\",National Grid USA Serv Co Inc,E1620\nEASTERN OR FARMING CO,,Y4000\nGRAHAM & PEAT INSURANCE AGENCY,,F3100\nSELF EMPLOYED,HI TECH,J7400\nPRINCIPAL,SOUSA DESIGN,Y4000\nSVP,First Horizon Home Loans,F4600\nState Employer,State Of Calif,X3000\nDIRECTOR,AGUA FUND,Y4000\nceo,Abrasive-Forms,J1100\nSr Designer/Illustrator,\"Trend Enterprises, Inc\",Y4000\nOwner,Delphi One Systems Corp.,Y4000\nATTORNEY,WHARTON LAW,K1000\nREAL ESTATE BROKER,HALSTEAD PROPERTY LLC,F4000\nAttorney,Lavelle & Finn LLP,K1000\nParalegal,Kendalle,Y4000\nChairman/Chief Executive Officer,Muleshoe State Bank,F1100\nPRESIDE,ALL AMERICAN INSURANCE INC.,F3100\nSTEEL TR,TOYOTA TSUSHO AMERICA INC.,T2310\nSIVLEY HOSPITAL,,H2100\nATTORNE,GALLOP JOHNSON & NEUMAN LLC,K1000\nRETIRED,LOCKHEED MARTIN,J6200\nSOFTWARE EXECUTIVE,\"RTC, INC.\",Y4000\nCHAIRMAN OF THE BOARD,UNICAST COMPANY,Y4000\nPresident/CEO,FaxonGillis Inc,B2000\nCAL NED INC,,Y4000\nNONE,TEACHER,H5100\nTEACHER,CULVER EDUCATIONAL FOUNDATION,Y4000\nCOATESVILLE SCRAP & METAL CO INC,,M2400\nREAL ESTATE,TUG HILL INC,Y4000\nChief Executive Offi,CEPTYR,J2100\nManager,C R C & Family Eye Care Center,Y4000\nHOMEMAKER/RANCHING,N/A RETIRED,X1200\nWEALTH MANAGEMENT,US TRUST COMPANY,F2100\nMortgage Banker,Vision Mortgage Capital,F4600\nAttorney,Corning,C5110\nD.M.D.,RETIRED,X1200\nOwner,Boles Hardware Company,M5100\nDAB REALTY,,F4200\nDIRECTOR OF PROMOTIONS,EYAK,Y4000\nReceipts Credit and,ABA,F1400\nFLORIDA LEISURE ACT INC,,Y4000\nFREMONT UNION HIGH SCHOOL DISTRICT,,X3500\nW.P. CAREY & COMPANY,,Y4000\nGeologist,Hilmont,Y4000\nDELOITTE,,J1100\nPHYSICIAN - BANKER,RETIRED,X1200\nCENTER FOR CONSERVATIVE FOOT,,Y4000\nMoran Industries,Self-Employed,Y4000\nGREAT AMERICAN COOKIE COM,,G2100\nCOACH - FACILITATOR,\"Q&A, LLC\",Y4000\nPartner,Shaw Pittman LLP,Y4000\nOPERATIONS MANAGER,\"INFOSERVICES AND PR, INC.\",Y4000\nVICE PRESIDENT,CROSS MOUNTAIN RANCH,F4100\nCULLOM PROPERTIES,,F4000\nREGISTERED,,H1700\nENGINEER (RETIRED),\"KPB ENGINEERING, INC.\",Y4000\nManagement,\"TransMark Associates, Inc.\",Y4000\nDAKSOTA RIDGE MED C,,H2000\nGRAND RAPIDS OPHTHAMOLOGY,,H1120\nATTORNEY,HURLEY MCKENNA & MERTZ,J1200\nPresident & CEO,\"Marlin Energy, LLC\",E1000\nLA ROCHE COLLEGE,,J1200\nINVESTMENT A,HARRINGTON INVESTMENTS,F5000\nR471ESGDISTRICT  PSL OPER MGR,HALL. ENERGY SRVC. INC.,E1150\nUrban Planner,Melendrez,J1200\nNEW HORIZONS SAVINGS AND LOAN ASSOC,,F1200\nAttorney,Bracewell and Giuliani,J7400\nExpository Writer,Sensata Technologies,M2300\nExecutive,Procter & Gamble Co.,M1300\nOwner/Manager,\"Gulf Distributing Company of Mobile, L\",G2850\nPhysician,Childrens Hospital Univ/PA,C2200\nManager,NCR Corp,C5100\nSAMUELS & HUDDLESTON,,Y4000\nEXECUTIVE DIRECTOR,SEED CORP,Y4000\nCHAIRMAN &,\"BEAR TRACKER ENERGY, LLC\",E1000\nFANTASTIC SHOWROOM,,Y4000\nIDA/CCR/MATHEMATICIAN,,J7400\nMARQUETTE GENERAL HOSPITAL,CEO,H2100\nPhysician,\"ACV, Inc.\",Y4000\nMYLAN PHARMACEUTICALS INC.,,H4300\nTRAC,,F5100\nBROADVIEW MORTGAGE CO,,F4600\nFarmer,Wegis Ranch,A3000\nChair,HawaiiUSA Federal Credit Union,F1300\nMEDICAL ADMINISTRATIO,SELF-EMPLOYED,H0000\nLAURENT DEVELOPMENT,,Y4000\nDAVIS & COX ATTORNEYS,,K1000\nBOOKKEEPER,BASHAM WOODWORKS,Y4000\nO AIRFLO HEATING CO,C,B3400\nHOME NURSE,,H3100\nAttorney,\"Akin, Gump, Strauss, Hauer & Feld LLP\",K2000\nATLANTA BONDED WHSE,,T7200\nRETIRED ENGINEER/BUSINESS OWNER,NONE,X1200\nDSW CONSULTANTS INC,,Y4000\nCALIFORNIA SYSTEM DESIGN,,Y4000\nPRESIDENT,TILCON NEW YORK INC.,B5100\nCEO,\"ACTIONEER, INC\",Y4000\nAttorney,Kirkpatrick & Lockhart LLP,J7120\nPARTNEIN RESTURANT,,G2900\nCONGRESSMAN,US HOUSE OF REPS,X3000\nSECRETARY FUND CORPORATE,CAPITAL RESEARCH & MGMT. CO.,F2100\nMANAGING PRINCIPAL/ARCHITECT,HAFER & ASSOCIATES,B4200\nReal Estate Broker,Coldwell Banker Commercial Bob,F4200\nPLUENNEKE & CRUMM,,Y4000\nresort manager,\"Tofte Management Company, Inc.\",Y4000\nReal Estate Sales,Constable Group Realtors Inc.,F4200\nHealth Program Condu,Sacromento County,Y4000\nEXECUTIVE DIRECTOR CORPORATE INSTITUTE,POINTS OF LIGHT,Z9500\nStay @ Home day,,Y1000\nHomemaker,Self-employed,F1400\nATTORNEY,WISE & REEVES,K1000\nOwner,Wimberley Pharmacy,G4900\nEXECUTIVE,THE CLOVELLY GROUP,F4500\nEXECUTIVE,SPORTSMAN,G6400\nAttorney,Heller Ehrman White & Mcauliffe Ll,K1000\nReal Estate Broker,\"Herb Real Estate, Inc. - B\",F4200\nNORTH POINTE,,Y4000\nMANAGING PARTNER,BRAND PROPERTIES,F4000\nALLIED RESOURCE,,J1200\nINVESTMENT MANAGER,RENAISSANCE,Y4000\nKAHN LITWIN RENZA & CO,,Y4000\nFARM-RANCHING,,Y4000\nALBEMARLE BOATS INC,,T8300\nNATL ITALIAN-AM FNDTN,,J7500\nSALES MANAGER,MSA,E1240\nFARMER,ELS BLOM,Y4000\nPresident/CEO,\"Archer Lion, Inc\",B2000\nPresident,Sales Analytics Inc.,Y4000\nENGINEER,\"ENGINEERING DYNAMICS, INC.\",B4400\nSHEPARELSON STERN KAMINSKY,,G5200\nHARTFORD HOSPITAL/VP/MEDICAL AFFAIR,,H2100\nBANKRUPTCY  CONSULTANT,BMC,J1200\nSYMMS & HADDOW,,K2000\nAIR LINE CAPTAIN,DELTA AIR LINES INC,T1100\nPRESIDENT-CONECTIV ENERGY SERVICES,PHI SERVICE COMPANY,E1620\nOWNER,BUSINESS COMPUTER RENTALS,Y4000\nCHAIRMAN,ATLANTIC BOTTLING CO.,G2600\nSALE & KUEHNE,,J5100\nFounding Principal,Thornton Tomasetti,Y4000\nEQUITY HOLDINGS,,F4000\nTRADE,,F2200\nMORTIMER STUDIO,,Y4000\nPROJECT MAN,VECTOR MANAGEMENT GROUP,Y4000\nGREATER MEDIA INC,,C2200\nINVESTMENT,CRAMER ROSENTHAL MCGLYNN,H1100\nATTORNEY,GRAY & HOFFMAN PC,Y4000\nPresident,Akimeka,C5130\nManging Director,\"Oivind Lorentzen, SA\",Y4000\nEXECUTIVE,\"SEEK CAREERS/STAFFING, INC.\",Y4000\nPHARMACIST,MULTIPLE,Z9500\nUNITED OFFICE PRODUC,,Y4000\nDOLE FRESH VEGETABLES,,J1100\nC.E.O.,INMED DIAGNOSTIC SERVICES LLC,Y4000\nCORPORATE COMMUNICATIONS,ORBITZ,C5140\nown Valet Parking and Real Estate Comp,Self employed,F4000\nIT,AOL,C5140\nBUSINESS MANAGER,\"EXACTECH, INC./BUSINESS MANAGER\",H4100\nDirector,Earcos,Y4000\nSOCIAL WORKER,SELF EMPLOOYED,Z9500\nEducator,East Windsor Regional School District,X3500\nATTORNEY,CATHARINE SLATER CRAWFORD PLC,Y4000\nGovernment Relations,Heather Podesta and Partners,K2000\nDEVELOPMENT OFFICER,NC MUSEUM NATURAL SCIENCES,X4200\nMENTAL HEALTH ADMINISTRATOR,NEWPORT CO. CMHC,Y4000\nsupervisor,post office,G0000\nENGINEER,DYER RIDDLE MILLS & PRECOURT,Y4000\nPRESIDENT,WASTE MANAGEMENT,E3000\nINVESTOR,TRAMMELL CROW INTERESTS CO,F4000\nATT,SULLIVAN & CROMWELL (OFCOUNSEL),Z9500\nMANAGING DIRECTOR,HUSCH BLACKWELL LLP,K1000\nTHE ADCO ELECTRICAL,,B3200\nVice-President,HDR Engineering,B4400\nORDAINED MINISTER/PA,\"CALVIN REFORMED CHURCH, CALVIN SYNOND\",X7000\nAttorney,Klinedinst,J1100\nFARMER,CARSON GILBERT FARM,A1000\nAttorney,Carr Korein & Tillery,K1100\nMARKETING,INFLUENCE AT WORK,Z9500\nKIRCO REALTY,,F4200\nMERIDIAN PACIFIC,,Y4000\nCOMPUTER PROGRAMMER,SELF-EMPLOYED,JE300\nVICE PRESIDENT,KY BANK,Y4000\nkeeping track of Bus,N/A,Y4000\nPhysican,Covenant Health Care,Y4000\nPRINCIPAL,BAKER DONELSON,Y4000\nReal Estate,Parkview Developer,F4000\nMULLEN & HENZELL,,K1000\nRIGHT MANAGEMENT,,J1200\nManaging Partner,\"Impero Group, LLC\",Y4000\nBUSINESS EXECUTI,ZURICH KEMPER LIFE,F3300\nDEALE,PETERSBURG FORD CHRYSLER JEEP,T2300\nexecutive,Hardenbergh Insurance,F3100\nRetail,Target,J1200\nGeneral Contractor,PEPPER COMPANIES,B1500\nExecutive,Hugo Neu Corporation,J1200\nRetired,Retitred,X1200\nEVP and CEO,West Virginia Bankers Association,F1100\nCHAIRMAN AND FOUNDER,BEACON HEALTH STRATEGIES LLC,H3800\nEXECUTIVE,\"MALLETT, INC\",B1000\nSABA ENDLER & ASSOC,,Y4000\nGeneral Counsel,Hershey Foods Corporation,G2200\nEXECUTIVE,\"WERLER AND COMPANY, INC.\",Y4000\nOwner,Reeds Ferry Lumber,B5200\nOWNER,C G LANHAM COMPANY,Y4000\nEXECUTIVE,E. N. S. A. CAPITAL MANAGEMENT,Y4000\nPRESIDEN/ CEO,TOLTEC MEDIA,Y4000\nOWNER,4-S RANCH,Y4000\nOWNER,THOMAS BIETZ,Y4000\nAttorney,Goodell Shelton Enmo,Y4000\nChairman,Bio Engineer Products,B4400\nSALES,WURTH FASTENERS,Y4000\nRegional President,US Concrete Atlantic Region,B5100\nCEO,GEN-PROBE INC,H3500\nAttorney,\"Stocker Pitts, Co., LPA\",K1100\nPRESI,HABANA HOSPITAL PHARMACY INC.,G4900\n,\"MCGRAW-HILL INC. STANDARD & POOR'S\",F5500\nGovernment Relations,National Beer Wholesalers Association,C2100\nINVESTMENTS,STUCHELL ENTERPRISES,Y4000\nCORPORATE OFFICER,CHELAR TOOL AND DIE,M2300\nnot applicable,Not Applicable,X1200\nOwner,McRae Nursing Home,H2200\nHospital CEO,Capella Healthcare Company,H2100\nPASTOR,CROSSROADS FELLOWSHIP,Y4000\nInterior designer,self/retired,J1200\n\"FISHER, GALLAGHER, PERRIN\",,K1000\nMCCULLOUGH CONSULTING GROUP,,Y4000\nExecutive Vice Presi,\"Midland Loan Services, Inc./PNC Real E\",F4600\nSIERRA BLANCA RANCH,,Y4000\nBANKER,MERCANTILE BANK AND TRUST,F1000\nSOLARES HILL DESIGN GROUP,,Y4000\nWEALTH MANAGER,FSG WEALTH MANAGEMENT,Y4000\nPRESIDENT & CHIEF EXECUTIVE OFFICER,LIQUID TRANSPORT CORP.,T3100\nINFO REQUESTED,FORENSCIC ECOMONICS CORP.,Y4000\nSUPERVISOR,COUNTY OF SAN FRANCISCO,J7400\nDirector,NDI,G5260\nPROJECT MANAGER,MCE CORPORATION,Y4000\nField Coordinator,IUPAT Job Corps,LB100\nEntrepreneur,Times Ten Cellars/Coag Therapeutics,G2820\nCOMMERCIAL BANKER,CNB OF TEXAS,J1100\nREGIONAL VP,FIDELITY INVESTMENTS,F2100\nSOFTWARE DEVELOPER,MOTION INDUSTRIES,Y4000\nRestaurant owner,\"RDB Management, Inc\",G2900\nMANUFACTURING GIN MACHINERY,,A1100\nGOVERNMENT RE,JOHNSTON & ASSOCIATES,K1000\nSelf-employed,Trucking Company,T3100\nNURSE PRACTITIONER,HENRY FORD HEALTH,H2100\nSTARR WINE & GOURMET,,Y4000\nOWNER,SUCCESS BY DESIGN INC.,Y4000\nPHYSI,ST. ELIZABETH BUSINESS HEALTH,H1100\nAdministration,The University of Alabama,H5100\nANESTHESIOLOGIST,SE ANESTH CONSULTS,H1130\nChairman,Atmi,Y4000\nATTORNEY,STOLL KEENON ODGEN,K1000\nANALYST,EXXON MOBIL CORP.,E1110\nCAMPERLINO CUSTOM HOMES W J,,B2000\nPresident,BioStar,Y4000\nPRESIDENT,POST-TENSIONING REINFORCING,Y4000\nEX DIRECTOR,TO OUR CHURCHES FUT,Y4000\nMANAGEMENT,\"CAREPAGES, INC\",Y4000\nDIRECTOR,ELANTE DAY SPA,Y4000\nVP MIS - Eastern Reg,Park Place Entertainment,G6500\nATTORNEY,\"HAYNIE, LITCHFIELD & CRANE, P.C./AT\",K1000\nCity of Hillsboro,,Z1200\nAttorney,seltzer-caplan,K1000\nU S SENATOR BURNS,,Y4000\nExec Asst,Ndnu,Y4000\nPRESIDENT,BONANZA BEVERAGE COMPANY,G2850\nInsurance Agent,\"Cettei & Connell, Inc.\",F3100\nAttorney,Sterns Weaver,K1000\nHomemaker,self employed,K1000\nBusinessman,Consolidated Elevators,G5600\nPartner,Dave Martinez,F1000\nMANAGIN,NAVIGATION CAPITAL PARTNERS,Y4000\nPROFESSIONAL PATHOLOGY SERVICE,,H1130\nConsultant,Associates in Process Improvement,Z9500\nPresident,Abbott Electric Inc,B3200\nPRESIDENT,A.L.S. ENTERPRISES,Y4000\nFinancial Advisor,RBC Dain Rauscher,F2200\nSELF-EMPLOYED,MARKETING CONSULTANT,J1200\nOWNER,DIRKHAMS IND. MAINT.,G5000\nINSURANCE SALES,TIS,F3100\nSENIOR AD,JEANNE SHAHEEN FOR SENATE,J1200\nMANAGING MEMBER,\"CATHI'S LLC\",Y4000\nPrivate Equity Inves,\"Apollo Management, LP\",F2600\nPITCHER,ARIZONA DIAMONDBACKS,G6400\nFinancial Advisor,Harris My CFO Inc,F2100\nU.S. DEPT OF JUSTICE,,X3200\nPharmacist,Lincare,H4100\nDYCKMAN ELECTRONICS,,Y4000\nSMITHS DETECTION,,Y4000\nInsurance Agent,State Farm Agency,F3400\nOwner,Loman Ford Of Woodbridge,T2300\nSPACE PLANNER,SELF-EMPLOYED,Y4000\nINTERNATION BUS CONSULT,,G5200\nPROSPECT DRILLING & SAWING DIV OF P,,B1000\nCOUNSELOR,SYMMETRICOM INC.,J7400\nGOVT. RELATIONS,ARTER & HADDEN LLP,K1000\nElectrical Contractor,McWilliams Electric Company Inc,B3200\nContractor,Tycon Excavating Contractor In,B3600\nCHIE,TOUCHSTONE RESEARCH LABORATORY,Y4000\nEngineer,Colt Software,C5120\nLIFE INSURANCE BROKER,WINDSOR INSURANCE ASSOC. INC./LIFE,F3300\nAdministrative Support,University of Houston,H5100\nRecruiter,\"PsychTemps, Inc.\",Y4000\nVice President,\"Reserve Oil and Gas, Inc\",Y4000\nAtty,Dot,Y4000\nLife Insurance,M Advisory Group,F3100\nVice President,Ziker Cleaners,G5500\nHCR MANOR CARE/PRESIDENT/CEO,,H2200\nTHOROUGHBRED HORSE FARM OWNER,SELF,A3500\nConsultant,\"Roberti + White, LLC\",K2000\nINVESTMENT MGR,THE HILLMAN COMPANY,F2600\nHARMONY HOMES INC,,B2000\nMANAGEMENT CONSULTANT,INDEPENDENT,X1200\nOWNER,FRONT STREET VILLAGE,Y4000\nSURGEON,SACRED HEART HOSPITAL,H2100\nCO-CHAIRMAN,KARRY BARTH ASSOCIATES INC.,F3300\nVIC JENKINS CHEVROLET,,T2300\nGeneral Manager,\"Pioneer WestPac, Inc.\",Y4000\nINTERIOR & DECORATOR,,G5000\nARTIST,INVENTOR,X0000\nEntertainer,Hank Williams Jr Enterprise,Y4000\nPresident and CEO,1st Centennial Bank,F1100\nNurse,Mass General Hospital,H2100\nCEO,NV Rural Counties RSVP,Y4000\nSVP Risk Management,GE,M2300\nOWNER,ASSETFLOW MANAGEMENT INC,Y4000\nCHIEF EXECUT,JOHN H. CARTER COMPANY,X1200\nPRESIDENT & CEO,YWCA ROCHESTER & MONROE COUNTY NY,G6100\nPRESIDENT,NEA-ALASKA,L1300\nGLENWOOD MANAGEMENT CORP.,,F4000\n\"VICE PRESIDENT, EXTERNAL AFFAIRS\",\"ST. JOE'S HOSPITAL/VICE PRESIDENT,\",H2100\nOLYMPUS MORTGAGE COMPANY,,F4600\nGENERAL CONTRACTOR,\"SYNERGY CONSTRUCTION, INC.\",B1500\nOWNER PRIVATE UTILITY,SOUTH SHORE WATER WORKS COMPANY,E5000\nVICE PRESIDENT,ASTRUM UTILITY SERVICES,Y4000\nChief Executive Offi,Knoxville Area Association of Realtors,G0000\nStudent,Harvarad University,H5100\nDAVIS GROUP ARCHITECTS,,B4200\nActuary,\"Horizon Actuarial Services, LLC\",Y4000\nLAWYER,SIMON - PASSANANTE,Y4000\nCSO & VP STRAT PARTNERSHIPS,H. J. HEINZ COMPANY,G2100\nINDUSTRIAL,EXECUTIVE SYNERGIES INC.,Y4000\nSENI,AMERICAN COUNCIL OF LIFE INSUR,F3300\nACCOUNT EXECUTIVE,ORACLE CORPORATION,J1200\nCEO,AKPHARMA INC.,H4600\nPORTFOLIO MANAGER,NCM CAPITAL,F0000\nIndustrial Real Esta,Crown Associates Realty Inc.,F4200\nFRISCO AUTOMOTIVE,,Y4000\nENTREPRENEUR,LAREDO COMIDAS,G2900\nPublic Affairs Executive,Wexler & Walker Pub Pol As,K2000\n\"CHICAGO CHILDREN'S MUSEUM\",,X4200\nFamily Sales Manager,Lexia Learning Systems,Y4000\nREAL ESTATE INVESTOR,GATEWAY CAPITAL DEVELOPMENT,Y4000\nRETIRED,HARDISON & COMPANY,X1200\nVICE PRES.,TERWILLIGER AUTO SERVICE,T2400\nBELL PRODUCTS INC,,Y4000\nteacher,unemployed,Z9500\nAIM,,G5210\nCHIEF EXECUTIVE OF OP,SELF-EMPLOYED,G0000\nEASTERN MINERALS INC,,Y4000\nInvestor,The Mirand Group,Y4000\n\"First Congregational, United Church of\",Minister,X7000\nAssociate,Moses & Singer LLP,K1000\nAUTO SALES,PIONEER FORD,Y4000\nPHYSICIAN,WICHITA CLINIC,H1100\ncorp affairs director,Intuit,C5120\nCST CORP,,Y4000\nLOBBYIST,HEALTH MANAGEMENT ASSOCIATES,H2100\nFinancial Pla,Jewell Financial Services,F0000\nPHYSICIAN,\"EMERGENCY MEDICINE PHYSICIANS , LTD\",H1100\nMANAGER,SYNIVERSE TECHNOLOGIES,C5130\nMINISTER,WABASH AVENUE PRESBYTERIAN CHURCH,X7000\nORTHOPAEDIC,NY ORTHOPAEDIC HOSPITAL,H1130\nDirector 1,SA Recycling LLC,M2400\nCERTIF,PRICE WATERHOUSE COOPERS LLP,F5100\nwholesaler/retail,self,J7400\nINT.,PAVLIK DESIGN TEAM INTERIOR AR,Y4000\nROCKET ENGINEER,RETIRED,J1200\nCURLEY & RYAN,,G5210\nABIGAIL STAFFING SERVICES,,Y4000\nDirector,Long Beach Disaster Fund,Y4000\nAttorney,\"Ivone Devine & Jensen, Llp\",K1000\nMILITARY PARTS,TENS MACHINE CO INC,Y4000\nOFFICE MANAGER,\"BENNY B. ELLIS, SR.\",Y4000\nGOVERNMENT AFF,AWERKAMP AND MCCLAIN,K1000\nN/A/HUMAN RESOURCES EXECUTIVE,,G0000\nENGINEER,WALMART,G4300\nATTORNEY,\"MOFFAT, THOMAS, ET AL.\",K1000\nDirector Operations,Kikucall,Z9500\nIT DIRECTOR,TATITLEK CORPORATION,F4300\nINTERNET COMME,SMALL BUSINESS OWNER,G0000\nVice President,Fidelity National Title Ins Co,F4300\nNEVADA POWER COMPANY,,E1620\nGENERAL COUNSEL,ICT,Y4000\nGA PERIOPERATIVE CONSULTANTS,,H1130\nSpec Events Coord,Self,J7400\nMERCHANTS BANK OF CALIFORNIA,,J1100\nISRAELSON SALSBURY CLEMENTS & BECKM,,K1000\nELECTRONICS MARKETING,VICOR,Y4000\nCEO - SALES & SERVICE,COMPUTER SYSTEMS DESIGN INC,Y4000\nMONGO HOMES INC,,B2000\nPresident,Insurance Services of America,G0000\nFood Broker,ADVANTAGE SALES & MARKETING,G5210\nPOWERS ROGERS & SMITH,,Y4000\nLIVE OAK PRODUCTIONS,,G5200\nLAWYER,GUTHY-RENKER LLC,C2300\nPRESIDEN,NORTHINGTON STRATEGY GROUP,Y4000\nHenry Ford Heath System,,H2100\nSAULT BANK,,F1100\nLEARNING SPECIALIST,SYMANTEC/LEARNING SPECIALIST,C5140\nAttorney,AO Capital Corp.,Y4000\nCONSTRUCTION EQUIPMENT DISTRIBUTOR,BRAMCO/CONSTRUCTION EQUIPMENT DISTR,B6000\n\"VP, WEST VA OPERATIONS\",UNITED COAL,E1210\nSELF,PSYCHOTHERAPIST,Z9500\nAttorney,Commodity Futures Trading Commission,X3000\nEXECUTIVE DIRECTOR,SEED COALITION,Y4000\nDIRECTOR,IDAHO GROWER SHIPPERS ASSN,A1400\nChief Operating Offi,\"M and R Capital Management, In\",F2100\nENGINEER,VES INC,Y4000\nEDUCATOR,UNEMPLOYED,Z9500\nHALL SECURITY,,Y4000\nCHIEF EXECUT,KAUFMAN FINANCIAL CORP,J5100\nREAL ESTATE DEV,KENT KARLOCK REALTY,F4000\nEXECUTIVE,SO. OR TIMBER INDUSTRIES,A5000\nretired (attorney?),\"retired(formerly Chambers, Conlon & Ha\",X1200\nALTMAN DEVELOPMENT CORP,,B2000\nBRINKER INTERNATIONAL INC./V.P./CON,,G2900\nRESTA,\"JERRY'S PIZZA & BARBEQUE INC.\",G2900\nSELF-EMPLOYED/BUILDER/DEVELOPER REA,,G0000\nHISTORIC DEVELOPER / ARTIST,\"MICHAEL LEVINE, LLC\",Y4000\nCOUNTY OF OCEAN,,X3000\nBUSINESS OWNER,CERAMATEC INC,M1000\nINSURANCE AGENT,\"STRICKLAND GENERAL AGENCY, INC\",Y4000\nPresident and Chairm,Plymouth Rock Assurance Corporation,F2100\n\"DAVIS & FLOYD, INC\",,H1100\nLAWYER,\"POTTER MINTON, P.C.\",K1000\nELECTRONICS ENGINEER,INCLINE TECHNOLOGY INC.,T1400\nSHALLOWAY FOY NEWELL,,Y4000\nPresident,Down Under Pub & Grub,G2900\nattorney,Massachusetts Attorneys Title Group,K1000\nTRANSCRIPTIONIST,CAROLINAS MEDICAL,H0000\nPhysician,Rice & Lake Urology,H1100\nENGINEER,\"H.H. CEMENT, INC.\",Y4000\nInvestor,\"Granite Creek Partners, LLC\",Y4000\nengineer,FRA LLC,Y4000\nMANAGING MEMBER,\"BRUNDAGE-BONE & BLANCHET, LLC\",B5100\nMADISON SQUARE GARDEN CORP,,Y4000\nEVP & CFO,GEORGE M. LEADER FAMILY CORP,H2200\nGLOBAL OFFERINGS MANAGER,IBM GLOBAL CORPORATION,C5120\nFOOTBALL,UNIVERSITY OF ST. FRANCIS,H5100\nEVP AND CFO,ROCK-TENN COMPANY,M7100\nNEWMAN BROTHERS,,Y4000\n\"PRESIDENT, CAL, VICE PRESIDENT, BUSINE\",COMCAST CABLE,C2200\nBusiness Development,R W Armstrong,B4400\nATTORNEY,MATT MILLER LAW,K1000\nOWNER,ESQUIN WINE MERCHANTS,Y4000\nJOHN MUIR/MT. DIABLO HEALTH SYSTEM/,,H2100\nInsurance,Lanier Upshaw,F3100\nTV Writer,20Th Century FOX,C2300\nEXECUTIVE,VISCONSI COMPANIES,Y4000\nMANATT PHELPS PHIL,,K1000\nINVESTMENTS,GRANVILLE CAPITAL,F0000\nIGLESIAS-VAZQUEZ AND ASSO,,B4400\nPACIFIC ACCESS COMPUTERS,,C5100\nCITY OF SEDONA,,X3000\nCEO,\"DISCOVERY LABS, INC.\",Y4000\nOFFICE MANAGER,APPALACHIAN STATE UNIVERSITY,H5100\nBERRIGAN - LITCHFIELD,,Y4000\nATTORNEY,\"SHAW PITTMAN, L.L.P.\",K1000\nCOMMONWEALTH OF MASS.,,Z1200\nREALTOR,CENTURY 21 M&M,F4200\nCORPORATE OFFICER,\"GULF WINDSINTL., INC.\",Y4000\nDEPUTY CHIEF OP,OFFICE OF THE MAYOR,J7300\nATTORNEY,GREENBERG AND HOESCHEN,Y4000\nPARTNER,TURNBERRY ASSOCIATES,F4100\nIntellectual Handyma,Self-employed,G0000\nProject Coordinator,Stericycle Inc,E3000\nPresident,\"Ullrich Delavati C P A'S\",G1200\nC.E.O.,GENESCO SPORTS ENTERPRISES,G6400\n\"ZIMMERMAN, FLAUES\",,K1000\nPRESIDENT,TECHNET,C5100\nReal estate,MRC development,Y4000\nWINEM,ROSEMARY CAKEBREAD WINEMAKING,G2820\nROOFTOP RESTAURANT OWNER,,G2900\nSHEA ARCHITECTS INC,,B4200\nATTORNEY,ZOPPOTH LAW FIRM,K1000\nASPEN SKI COMPANY,,J7400\nOwner,Hailey Development Group,Y4000\nHUMANITARIAN RELIEF PROFESSIONAL,SELF-EMPLOYED,G0000\nPROFESSOR,ELIZABETHTOWN COLLEGE,H5100\nPRESI,HELENA ABSTRACT AND TITLE CO.,F4300\noil & gas,Self,J1100\nreal estate,The Easton Group,F4500\nCorporate Officer,SAGE,Y4000\nVP Engineer,Vanessa Harigen Bruschter,Y4000\nPEOPLES SECURITY,,Y4000\nUTILITY MANAGER,CITY OF SEATTLE,X3000\nHARRISON OIL CORP,,E1100\nCHAIRMAN,FRIENDLY FORD,Y4000\nManufacturing Executive,Hollander Home Fashions,Y4000\nPRESIDENT,\"LENDELL SOLUTIONS, INC.\",J1100\nSTRANDLING YOCCA ET AL,,Y4000\nCHAIRMAN,\"SERVAAS, INC.\",M1000\nMANAGER,MAYO FOUNDATION,Y4000\nRAFFEL & ASSOCIATES,,F5100\n\"JEWISH FAMILY AND CHILDREN'S SERVIC\",,H6000\nMASTERCARD INTERNATIONAL INC./SEVP/,,F1400\nPlumbing Contractor,Royal Flush Plumbing,B3400\nMID AMERICA LAND TITLE AGENCY INC,,F4300\nFLUOR CONSTRUCTORS INTERNATIONAL,,B1000\nPROFESSOR,MOUNT SINAI MEDICAL SCHOOL,H5150\nVICE PRESIDENT,Well Point,Y4000\nSupplier,Houston Lbr.co.; A.c.,B2000\nMANAGEMENT,NATIONAL DATA CORP.,J1100\nEXECUTIVE,DILLON READ & CO. INC.,F2300\nAUTOMOBILE DEALER,BILL CRAMER CHEVROLET CADILLAC BUICK G,T2300\nTEACHER ASSISTANT,SYCAMORE SCHOOL,H5100\nReal Estate,Caldwell Banker,J1200\nInvestment manager,\"Leeward Investments, LLC\",J1200\nPortfolio Manager,Unitrin,Z9500\nEmployment Specialist,Jewish Community Services,Y4000\nSOLL EVALUATOR,VA DEPT OF HEALTH,X3000\nPresident,Diligence,Y4000\nTrade Office Associate,UBS Financial Services,Y4000\nbookkeeper,Bruce Burton DMD PC,Y4000\nNuclear Inspector,Information Requested,Y4000\nManager,Lincoln Technologies,Y4000\n,CHUBB GROUP OF INSURANCE COMPANIES,F3400\nPRESIDENT,PEPIN DISTRIBUTING COMPANY,G2700\nOWNER,\"SCUDDER ROOFING, INC\",B3000\nVice President,Parker Hannifin Corporation,M2300\nPRESIDENT/CEO,STOWERS GROUP,Z9500\nPRES & CHF EXC OFC,EXXONMOBIL RESEARCH AND ENGINE,E1110\nPHYSICIST,ATTOTEK,Y4000\nOwner,Sutherlin Nissan,T2310\nJT & ASSOC,,Y4000\nSR DIRECTOR-TECHNOLOGY,MANHEIM AUCTIONS,C2200\nPRESIDENT,PEOPLE UNITED BANK,JH100\nSEC,,L1100\nCANDLER CTY HLTH DEP,,Y4000\nCEO,MULTI-CARE MANAGEMENT,G5270\nLBU PRODUCTIONS,,Y4000\nBUSINESSMAN,SELF-EMPLOYED,Z9500\nREAL,WASHINGTON CAPITAL MANAGEMENT,F2100\nTRISTAR CONSTRUCTION CORP,,B1500\nATTORNEY,\"PIGNATELLI & ASSOCIATES, P.C.\",Y4000\nEXECUTI,NATIONAL POLICY STRATEGRIES,Y4000\nPoet,self,Z9500\nConsultant,Podesta Group,K2000\nEXECUTIVE,COLT ENERGY INC/EXECUTIVE,E1100\nOPERATING ENGINEE,REIL CONSTRUCTION,LB100\nINVESTMENT PROFESSIONAL,METLIFE INVESTMENTS,F2100\nEVP & COO,LINCOLN EDUCATIONAL SERVICES,H5300\nSHOPKEEPER,,E1150\nOWNER,CHERISHED MOMENTS MATERNITY,Y4000\nH J HINES,,G2500\nDGM&S,,C5130\nPresident/CEO,Complete HealthCare Resources,H3000\nJ SMITH LANIER AND COMPAN,,F3100\nVICE P,TRI WEST HEALTHCARE ALLIANCE,H3700\nVETERINARIAN,GRANT SQUARE ANIMAL HOSPITAL,A4500\nOPHTHALMOLOGISTS,\"ADVANCED EYECARE MEDICAL CTR., PA.\",Y4000\nMONEY MANAGEMENT,G.S.O. CAPITAL PARTNER,F2100\nAttorney/Professor,University of Detroit Mercy School of,H5100\nADAMS FOX ADELSTEIN & ROSEN,,G2850\nSOUTHERN TEMPS,,Y4000\nAttorney Advisor,Goldearb & Lipman,K1000\nAdmin Manager,State of Illinois,X3000\nUNIVERSITY OF PA,,H1120\nJ W SEWALL CO,,Y4000\nManager,Barrios Technology,Y4000\nSOFTWARE ENGINEER,OPENTEXT INC,Y4000\nCHAIRMAN & CEO,COACH,G6000\nOIL & GAS EXPLORATION,SELF/OIL & GAS EXPLORATION,E1150\nSENIOR ATTORNEY,ANDREWS & KURTH LLP,K1000\nPhotographer,Self-Employed,H1100\nDirector of Development,University of Waikato,H5100\nExecutive,C.M. Uberman Enterprises,Y4000\nATTORNEY,\"KEESAL, YOUNG, AND LOGARD\",K1000\nATTORNEY,MURCHINSON TAYLOR & GIBSON,K1000\nOPERATIONS,WEST LYNN CREAMERY,A2000\nARIES RESOURCES LLC,,Y4000\nTHE HULL GROUP,,F2100\nNH GOP/FINANCE DIRECTOR/FINANCE DIR,,Y4000\nBusinessman,W.D. Hoard & Sons,C1100\nPHYSICIAN PSYCHIATRIST,SELF,H1110\nCEO,RIM OPERATING,E1120\nCOMPUTERITE INC.,,C5100\nOwner,BreakAway Ltd,Y4000\nATTORNEY,FL INSURANCE COUNCIL,F3100\nDISABLED SSDI,NOT EMPLOYED,Y1000\nINDUSTRIAL ELECTRIC REELS,,Y4000\nChiropractor,Luedtke-Storm-Mackey Chiropractic Clin,H1500\nChief Staft Gov Vils,State Ia,Y4000\nPRESIDENT,BRANDT HOLDINGS/PRESIDENT,F2600\nBUSINESS OWNER,AYES TECHNOLIGIES,Y4000\nSr. Vice President O,DTE Energy,E1620\nVP,JEWISH HOSPITAL,H2100\nPaving,Nagle Paving Co.,B3000\nATTORNEY,\"CENTER FOR INT'L ENVIRONMENTAL LAW\",JE300\nATTORNEY,MADDOX AND ASSOCIATES,Z9500\nMD,\"Veterans Hospital//Portland,Or\",H2100\nPathologist,Baylor Pathology Laboratory,H1130\nhousewife,me,Y4000\nEXECUTIVE,HUTTON STRATEGIES,K2000\nKNIGHT & FIRTH,,K1000\nCommercial Real Estate,C. B. Richard Ellis,F4000\nrequested,info,Z9500\nST MARTINS PRESS,,C1100\nSYSTEM ENGINEER,BOONE ELECTRIC CO-OP,E1610\nPHYSICIST,PHYSICAL SCIENCES INC.,Y4000\nOWNER,FULFILLMENT INTERNATIONAL LLC,Y4000\nSURGEON,CARTERSVILLE SURGICAL,H1130\nEXECUTIVE,\"OTR CONTROLS, LLC\",Y4000\nSOURCE CAPITAL LTD,,Y4000\nANESTHESIOLOGIST,UNIV OF NEBRASKA MED CTR,H1130\nConsultant,\"JA Green and Company, LLC\",K2000\nHARCO DRUG,,Y4000\nCONSULTANT,WASHINGTON CAPITAL GROUP,F5000\nFEDERAL AFFAIRS,THE PMA GROUP,K2000\nVICE PRESIDENT,HOVENCIA LLC,Y4000\nTARRANT PARTNERS,,F2100\nBusiness Owner,The Right Connections,B3400\nADLER POLLACK SHEEH,,K1000\nTax Attorney,\"Altria Group, Inc.\",A1300\nTEACHER,CHAFFEY JOINT UNION H.S.D.,J1200\n\"U S GOV'T CDC\",,X3000\nROOFER,MORTERSON ROOFING CO.,B3000\nSOFTWARE DEVELOPER,TMX FINANCE,Z9500\nSYSTEM ADMINISTRATOR,APPLE INC.,C5110\nCHRISTIAN COUNSELOR,SELF EMPLOYED,H1110\nFINANCIA,AIR PRODUCTS AND CHEMICALS,M1000\nDIVCO WEST PROPERTIES LLC,,C5100\nRIVERBOAT DISCOVERY,,Y4000\nCAR DEALER,BARKAU AUTOMOTIVE,Y4000\nATTORNEY,MILBANK TWEED ET AL.,K1000\nEXECUTIVE DIRECTOR,THE BERYL INSTITUTE/EXECUTIVE DIREC,Y4000\nKIEHR HARRISON HARVEY BRANZBURG & E,,K1000\nLLAMA COMPANY,,\nPresident,White Ford Lincoln-mercury Inc.,T2300\nInsurance Agent,Tom Stanger Insurance,F3100\nK Y INSTITUTE,,H1120\nINDEPENDENT FIN MARKETING GROUP,,F3400\nAttorney,Rena C Stone,J1200\nCFO,AERO GEAR,T1300\n,THE ROBERT WOOD JOHNSON FOUNDATION,X4100\nDIRECTOR OF,ACH FOOD COMPANIES INC.,Y4000\nEMPLOYER SERVICE,STATE OF TENNESSEE,X3000\nCONSULTANT,BRILLIANT CORNERS,Y4000\nNEW FAMOUS ELEMENTS,,Y4000\nCHRISTIAN FAMILY MEDICINE/CEO/OWNER,,G4900\nNAT.RESR.DEVEL.,SELF EMPLOY,J1100\nAssociate Consultant,Booz Allen Hamilton,G5270\nExecutive,Surgery Centers,Y4000\nRESPINATORY THERAAPIST-CEO,SELF-RSS,Y4000\nAPPLE VALLEY SCH DIST,,X3500\nMERITER HEALTH SERVICES,,H0000\nBORM ASSOCIATES,,Y4000\nINFINITY CORP,,C2100\nSR. VP SALES & MARKETING,INVACARE CORPORATION,H4100\nLandscape Architect,Martha Schwartz Inc,J1200\nFINANCIAL SERVICES E,\"ADVEST, INC.\",F2100\nSINGER/MUSIC TEACHER,NEIGHBORHOOD MUSIC SCHOOL,Y4000\nATTORNEY,DILLEY & HANEY,Y4000\nVP P/C Prgrms,United Services Automobile Asn,F3100\nAdmin Asst,Exxon Mobil Corporation,E1110\nProfessor,Rockefeller Univ,Y4000\nEVERGREEN LAWN CARE,,B3600\nOWNER/PRESIDENT,FERGUSON DEVELOPMENT NETWORK,Y4000\nREALT,PRUDENTIAL CAROLINAS REALTY C,F4200\nClergy,Mount Airy Baptist Church,X7000\nEXECUTIVE,MARINA LTD PARTNERSHIP,G6100\nCLAS,MATANUSKA-SUSITNA BOROUGH SCHS,L1300\nREALTOR,EMPIRE REALTY GROUP,F4200\nPHYSICIAN,DR. PATRICK KELLY,Y4000\nLION OIL CO,,E1160\nPRESIDENT,TOTAL TRANSIT INC.,Y4000\nCONSTRUCTION,CUMMINS CONSTRUCTION CO,B1500\nMADISON INTERNATIONAL,,Y4000\nAttorney,\"VanNess Feldman, P.C.\",K1000\nTRIBBLE-STEPHENS CONSTR,,B1500\nPARTNER,BALLARD SPAHR,K1200\nChemist,HERMAN CORPORATION,Y4000\nDIRECTOR,BCBSAZ,F3200\nPresident,Boh Brothers,B1500\nATTORNEY,HANES LAW,Y4000\nPRESIDENT,AMERICAN GRASSROOTS,Y4000\nDANE COUNTY WISCONSIN,,X3000\nNEW BUSINESS DEVELOP,CACHE VALLEY ELECTRIC,B3200\nAttorney,\"Fudco,Mackey,Mathewis & Gill,LLP\",K1000\nPROFESSOR,MSU-BILLINGS,J1200\nCHAIRMAN,ILITCH HOLDINGS INC.,G2900\nOWNER,VIKA PHARMACY,G4900\nQuality Manager,Thomson,C5000\nMADEAU & SIMMINS,,Y4000\nHUTON & WILLIAMS,,Y4000\nANESTHESIOLOG,BOONE HOSPITAL CENTER,H1130\nCEO,KSA Consulting,G5270\nCEO,PLANNED PARENTHOOD MN ND SD,J7150\n\"SPAIN, GILLON GROOMS BLAN & NETTLES\",,Y4000\nPHYSICAL DAMAGE,AMERICAN FAMILY INS,F3100\nChief Executive Officer,\"CenTra, Inc\",T3100\nADMINISTRA,SUSAN KOMEN ORGANIZATION,JH100\nMECHANIC & PILOT,SELF,G0000\nCANCER CARE ASSOCIATES,,H1100\nA&T CONSULTING,,Y4000\nRetail Management Co,Self-Employed,J9000\nAttorney,\"Stillman, Friedman and Shechtman\",K1000\nBUSINESS,M E REEVES CONTRACTING INC,Y4000\nENGINEERING MANAGEMENT,ECHOSTAR,C2200\nCOUNCILMAN,CITY OF WASHINGTON,Z9500\nAMSE Manager,U.T. Battelle,E0000\nG,UNIVERSITY OF CALIFORNIA SAN DIEG,H5100\nFINANCIAL SERVICE PROFESSIONAL,CHARTER OAK INSURANCE / MASS MUTUAL,Y4000\nCEO,Hexcen Brands Inc,Y4000\nEXECUTIVE,FAGENSON & CO. INC.,F2100\nOWNER,MARTIN CONSULTING,Y4000\nDirector Of Operations,American Homecare Federat,Y4000\nMACFARLANE FERGUSON & MCMULLE,,K1000\nPRESIDENT,STEVE THOMAS B M W,T2300\nFinancial Analyst,Amtec,Y4000\n\"JAMES, MCELROY & DIEHL PA\",,Y4000\nSR VICE PRESIDENT,CHUBB RE INC.,F3400\nCONSULTANT,HAGERTY INVESTIGATIONS,J1100\n\"VP, CHIEF GLOBAL MARKETING OFFICER\",\"OCEAN SPRAY CRANBERRIES, INC.\",A1400\nTHE GOODMAN COMPANY,,F4000\nBRANDENBURG STAEDLER & MOORE,,F4100\nCredit Union CEO,Richmond Community FCU,F1300\nEXECUTIVE,BLACK FOREST PARTNERS,Y4000\nPhysician,Shady Grove Hospital,H2100\nBANKER,FIRST VISION BANK,Y4000\nDeveloper,Investments Limited,F7000\nProfessor,Vrije Universiteit,H5100\nOwner/president,Steven Woods Chiropractor Pc,H1500\nVP Sales Op and Fisher Direct,Fisher Scientific - Research,M9000\nCeo,Sea Consulting,Y4000\nVP Business DevelopmentOFF,Rogers Group Inc,B5100\nSYSTEMS ANALY,\"DATAFLOW SYSTEMS, INC\",Y4000\nWEST CO SURGER,,H1130\nFUEL DISTRIBUTOR,WESTERN TRANSPORT,Y4000\nExec Vice President,American Family Insurance Group,F3100\nWELTZ AND LUXENBERG,,Y4000\nREAL ESTATE PROJECT MANAGER,NORTH SHORE COMMUNITY HOUSING COALITIO,E1210\nATTORNEY,U.S. DEPT. OF HUD,Z9500\nREAL ESTATE AGENT,TOP REALITY & INVESTMENTS,Y4000\nVENTURE CAPI,\"MOHR, DAVIDOW VENTURES\",F2500\nDEALER,\"HANDY CHEVROLET, INC.\",T2300\nATTORNEY,STRATEGIC COUNSEL PLC,Z9500\nOwner,Native American Development Llc,Y4000\nORAL S,WEST JERSEY ORAL SURGEONS PC,Y4000\nPRESIDENT,PRIM DEVELOPMENT INC,Y4000\nReal Estate,Snyder Properties-Self Employed,F4000\nCustodian,Coast Community College Distri,H5100\nFinancial Anaylyst,Ca Sch Emp Assn,Y4000\nTE PROD PIPELINE CO,,Y4000\nEngineer,Luminant Power,Y4000\nDEALER,DOUG STANLEY FORD,T2300\nVice President Of Finance,Schaller Anderson,F3200\nFLORIDAN FRAMES INC,,Y4000\nRUGGLES ARCHITECTURE/PRESIDENT / AR,,B4200\nATTORNEY,\"WEISS & HANDLER, P.A.\",Y4000\nCAMSTELL COMPANY,,J1100\nEMERTUS KIMCO REALTY CORP,,J5100\nRetailer - Vice Pres,Scottenstein Stores Corp.,J5100\nSTATE OF RI,,Y4000\nPHYSICI,GWINNETT PULMONARY GROUP PC,H1100\nAttorney,\"Weiner & Ratzan, PA\",K1000\nDECOTIIS FITPATRICK & GLUCK,,K1000\nPresident,Consolidated Oil Field Rental Inc.,E1150\nBENECORD SERVICES INC,,Y4000\nOwner,Belle Arti Restaurant,G2900\nOwner,Frac Tech,Y4000\nARGOSY MANAGEMENT LLC,,Y4000\nHI AIR NATIONAL GUARD,,Y4000\nTEACHER,DEL NORTE COUNTY SCHOOLS/TEACHER,X3500\nTAX ATTORNEY,CECB.PC,Y4000\nROBBINS/GIOIA/SENIOR VP AIR FORCE P,,G5270\nmedical Physicist,memorial sloan-kettering  cancer cente,H2100\nCEO,GREATER TAMPA ASSN OF REALTORS,J9000\nW T TIMMERMAN,,Y4000\nHIGHLAND PARK MANOR,,Y4000\nPresident,Eagle-Vail Properties Owners,F4000\nadjunct professor,Drew University,H5100\nPrincipal,Mary Green Enterprises,G4100\n\"GREENBAUM, ROWE, SMITH\",,K1000\nConsultant/Developer,Self-Employed,G5200\nCO-OWNER,CROSSROADS HH,H3100\nVice President,Springfield Underground,F4100\nPhysician,Martin County Family Clinic,Y4000\nAUCTIONEER AND REAL ESTATE,,G5000\nPortfolio Manager,\"Caxton Associates, L.L.C.\",F2700\nCardiac Surgeon,Lahey Clinic,H1100\nPRESIDENT,PROFESSIONAL STAFFING,G5250\nOWNER,WHITEWOOD FARM,A1000\nATTORNEY,\"GUIDA, SLAVICH & FLORES PC\",K1000\nAttorney,COMMONWEALTH OF MASSACHUSETTS,X3000\nMOHAWK ELECTRICAL SYSTEMS,,B3200\nAssistant Vice President for Federal R,Georgetown University,H5100\nDEWEY BALLANTINE LAW,,K1000\nActor and Volunteer,Self-Employed,G0000\nRIZZO ASSOCIATES,STARER,H1100\nUNITED HEALTH CORPORATION,,H3700\nTrust Officer,ORANGE COUNTY TRUST COMPANY,Y4000\nEXECUTIVE COACH,THE ALTERNATIVE BOARD,Y4000\nPartner,J. Thomas Neff Insurance,F3100\nPRESIDENT/CONTRACTOR,ESHELMAN TRANSPORTATION INC,Y4000\n\"Chairman, CEO\",Empire Companies,Y4000\nAuthor & Economist,Self-Employed,C1100\nATTORN,DR. REDDYS LABORATORIES INC.,Y4000\nPresident,Spottswoode,J1200\nHealthcare Professional,Self-Employed,H0000\nSubstitute Teacher,DENVER PUBLIC SCHOOLS,X1200\nPrivate Medical Practitioner,SELF-EMPLOYED,H1100\nSHAWS SUPERMARKET,,G2400\nPURSER,DELTA AIR LINES,T1100\nAPT ADVANCED TRAILER & EQUIPMENT LP,,Y4000\nSELF EMPLOYED,WALACH MANUFACTURING COMPANY INC.,Y4000\nLand Surveyor,State of CA,X3000\nSales /Account Manag,Real Page,F4500\nATTORNEY,CAPLAN AND EARNEST,Y4000\nVP OPERATIONS FLEXTRONICS,SELF-EMPLOYED,G0000\nSENIOR STAFF E,ERNST & YOUNG L.L.P.,F5100\nVICE PRESIDENT,WHITING PETROLEUM CORPORATION,E1120\nPresident and CEO,UPMC Health Plan,H0000\nHAMLIN DEVELOPERS,,Y4000\nATTORNE,LAW OFFICES OF WARREN QUANN,K1000\nSALES,SE FREIGHT/SALES,Y4000\nEXECUTIVE,VALERIE WILSON TRAVEL,T9400\nA.V.P./SENIOR ENGINE,S.A.I.C.,D3000\nINFORMATION TECHNO,I.S. MAVENS INC.,Y4000\nSales,Prospect Waterproofing,B3000\nATTORNEY,BUDD LARNER P.C.,Y4000\nROGER & WELLS LLP,,Y4000\nLADENBURG THALMANN & CO. INC.,,F2300\nPOOL TOWN INC,,B3000\nDeveloper,Ray Walsh & Company,Y4000\nProject Manager,Prudential Financial,F3300\nU,\"UROLOGY ASSOCIATES OF DANBURY, PC\",H1130\nMANAGING DIRECTOR,\"BAIN CAPITAL, L.L.C.\",F2600\nT L MULLOOLY D D S,,H1400\nBusiness Owner,Clay,Y4000\nMANAGE,UT MD ANDERSON CANCER CENTER,H2100\nEXEC,JOHN J. & THOMAS R. SCHIFF & C,F3100\nFEDERAL GOVERNMENT,,J7150\nF & F HEATING,,B3400\nBusiness Owner,Ragen Assoc LLC,Y4000\nCommunity One Credit Union,,F1300\nCHAIRMAN,\"COLONY BRANDS, INC.\",Y4000\nQuilt Dealer,Self- Employed,F4100\nLobbyist,PDG,Y4000\nJudge,Bowling Green Municipal Court,X3200\nConsultant,\"John Snow, Inc\",J7400\nADMINI,\"MANCHESTER SCHOOL FUND, INC.\",Y4000\nExecutive,Hayes Hospitality Operations,Y4000\nENGINEER,CAS,J1100\nREAL ESTATE EXEC.,RESCOR INC.,F4000\nPHYSICIAN,NH ONCOLOGY-HEMATOLOGY PA,Z9500\nSECURITY MUTUAL OF NY,,F3300\nNurse,Texas Visting Nurse Service,H3100\nT & C CONTRACTING,,Y4000\nWARING OIL COMPANY,,E1100\nPhysician,OHS,Y4000\nCPA,FOLLMER RUDZEWICZ ADVISORS INC.,F5100\nChairman & Founder,CREDIT ACCEPTANCE CORPORATION,Y4000\nretire,none,Y1000\nPRODUCT MANAGEMENT,VERISIGN INC.,C5130\nemployee,U.S.N.,Y4000\nBRUTGER COMPANIES INC,,F1200\nSatellite Systems Engineering Consulti,Savid LLC,Y4000\nBANKER,CONTRIBUTION,F1100\nFINANCIAL ADVISOR,WEALTH DESIGN GROUP,F5000\nFIELD ENGINEER,INDYNE INC,C5130\nGIS ANALYST,USDA FOREST SERVICE,X3000\nUT HEALTH CENTER AT TYLER,,H2100\nsales,Cousins Trading Co,Y4000\nATTORNEY,RUTHERFORD BECHTOLD LLC,Y4000\nInsurance Agent,State Farms Insurance,F3400\nDEVINE MILLIMET & BR,,K1000\nDOCTOR,INFORMATION REQUESTED PER BEST EFFORTS,X3500\nREAL ESTATE,BEZTAK CORPORATION,F4000\nManagement,Aviation Facilities Co.,T1600\nLEO DALEY,,Y4000\nC.E.O.,F.W. MURPHY,Y4000\nKECK MAHIN & CATE,,F5500\nEXECUTIVE,HORIZON ITALIAN TILE INC,Y4000\nsales,Golden Services Co.,Y4000\nLibrary Clerk,City Of Longbeach,X3000\nDirector of Chicago Operations,\"Stony Gardens, Inc\",Y4000\nVICE PRESIDENT,LONE STAR HIGH SPEED RAIL,G5200\nSales Manager,Trimark Pacific Homes,Y4000\nENTREPRENEUR,JAMES RHODES,Y4000\nfinancial management,\"Harding Loevner, LLC\",Y4000\nVP of Legislative Af,Federal Home Loan Bank of San Francisc,F4600\nSR VP & GENERAL COU,CORPORATE STAFF,H4300\nPRESTON GLOBAL INC,,Y4000\nCrown-Risdon,Executive,Y4000\nROTZ ENGINEERING,,B4400\nLADERBURG THALCOUNT CO,,J7400\nTEACHER,CHARLES RIVER SCHOOL,Y4000\nCEO,SIMKIN INDUSTRIES,Y4000\nSENIOR ADVISOR,PRG,Y4000\nContractor,\"A.P. Abruzzese, Inc.\",Y4000\nATTORNEY,\"BEASLY, ALLEN, CROW, METHVIN, PORTIS &\",K1000\nSALES,AGVIEW FS INC/SALES,Y4000\nATTORNEY,NELDA BLAIR,Y4000\nVeterinarian,\"Trooper Veterinary Hospital, Inc\",A4500\nHELICOPTER PILOT,INFORMATION REQUESTED PER BEST EFFORTS,Y4000\nDOCTOR,COMMUNITY URGENT CARE,JH100\nINS BROK,RONALD J BATEMAN GROUP INC,F3100\nOWNER/CONV. STORE,GARVIN ENTERPRISES,Y4000\nDALTON PARADISE CARPETS,,Y4000\nOWNER,\"RAVEN'S GLENN WINERY\",G2820\nDIRECTOR WORKPL,UNITED TECHNOLOGIES,D2000\nProfessor,Univ. Of NY,H5100\nexecutive,Seafood Resource,G2350\nDIRECTO,COMMONWEALTH OF PUERTO RICO,X3000\nTeacher,Jefferson Co. Public Schools,X3500\n\"LINDSAY, HART, NEIL ETAL\",,K1000\nPROFESSIONAL MED SVCS OF LAWRENCEV,,Y4000\nBusiness Owner,The Second City,C2900\nTax Attorney,\"Thompson & Bogran, PC\",Y4000\nInsurance Broker,W.H. Connolly and Co.,Y4000\n\"MORRIS, HAYNES, INGRAM & HORNSBY\",,K1000\nDYEHOUSE INC,,Y4000\nMICKEY D BARNETT PA,,F5100\nATTORNEY,NILES LAW OFFICE PA,K1000\nATTORNEY,\"MCLEOD, FRASER, & CONE LLC\",Y4000\nMANAGER - SALES &,CONSOL ENERGY INC,E1210\nPRESIDENT,SOUTHERN PIONEER P&C INSURANCE COMPANY,Z9500\nNorthstar GOM LLC,,Y4000\nASSOCIATE PUBLISHER/EDITOR,BEVERLY HILLS COURIER PUBLISHING,C1100\nSTOCKBROKER,A. G. EDWARDS & SONS,F2100\nGENERAL CONTRACTOR,ADRIAN HOMES,J5200\nOil & Gas Investments,Information Requested,E1000\nEXECUTIVE,ALASKA MINERS ASSOCIATION,Y4000\nAttorney,Campbell & Williams,K1000\nB B & T,,Y4000\nVP,SANTA BARBARA TAX PRODUCTS GROUP,Y4000\nLONG & LEVITT,,Y4000\nATTORNEY,\"E &E CAPITAL ADVISORS, LLC\",Z9500\nLEO BURNETT KYODO COMPANY LTD,,G5210\nCO-OWNER,STEWARD STEEL,M2100\nI-X CENTER,,Y4000\nReal Estate Develope,The Harbor Group,F4000\nOWNER,RESEARCH CONSULTING LLC,Y4000\nInvestments,Tiger Technology Management,Y4000\nCONSULTANT,CIVIC SERVICE  INC.,K2100\nKENNEDY MONTGOMERY,,Y4000\nTHOMAS RAY,THOMAS RAY,Y4000\nPRESIDENT/OWNER,\"VINTAGE GUN GRIPS, INC.\",Y4000\n\"CARLIE C'S IGA\",,Y4000\nEXECUTIVE,\"JAZZ PHARMACEUTICALS, INC\",Z9500\nTeacher,Chester High School,Y4000\nMd,Stone River Eye Center,H1120\nHICKORY FARMS,,A0000\nHARRIS COTHERMAN JONES PRICE & ASSO,,C4300\nCYN A A S,,Y4000\nOwner,Fitness 4 Moms,Y4000\nSURG CLINIC OF TUPELO,,H1100\nCHAIRMAN HUNTSVILLE FOUNDATION,HUNTSVILLE MEMORIAL HOSP FNDN,H2100\nTax Slave,Self,F7000\nMailcarrier,US Postal Service,X3700\nNEWPORT HOSPITAL,,H1100\nHomemaker,HE DEVELOPMENT,Y4000\nTHE VILLAGES/EVENT CO-ORDINATOR/SAL,,Y4000\nOwner/Principal,Richard A Wilson PC Law Offices,K1000\nPRESIDENT &,WRIGHT BRAND FOODS LTD.,G2300\nCHEMIST,SELF,Y2000\nKENWAL TRANSPORTATION INC,,Y4000\nCHAIRMAN & CTO,CAL. SCI. & ENGINEERING,Y4000\nPRESIDENT,BEVERS & CO,E1170\nNONE/HOMEMAKER/HOMEMAKER,,F4400\nUR,\"WACCAMAW UROLOGY ASSOCIATES, LLC\",H1130\nLawyer,\"Waters, Arnold & Associates\",K1000\nBUSINESS MANAGER,PERFECT POINT E.D.M. CORPORATION,Y4000\nPLASMA SCIENCES INC,,Y4000\nROLLIE MORTUARY,,G5400\nLegislative Assistant,Pennsylvania House of Re,X3000\nCOMMISSIONER OF EDUCATION,ARKANSAS DEPARTMENT OF EDUCATION,X3000\nATTORNEY,HEATHER PODESTA + PARTNERS,Z9500\nDIRECTOR,THE BIO ETHICS PROJECT,Y4000\nOW,MATTHEW S HUNTINGTON INS. AGENCY,F3100\nOWNER,MARK ROBERTS MOTORS INC.,T2300\nFinance,PEI,M2300\nCHAIRMAN,HWS CONSULTING GROUP,Y4000\nlandscape contractor,self-employed,B3600\nTeacher,Disabled,Y1000\nNORTHWESEM MUTUAL,,Y4000\nHEALTHCARE,NOT EMPLOYED AS OF NOW,X1200\nOwner,Arizona Hematology Oncology,H1130\n\"VP, GRAIN DIVISON\",CGB ENTERPRISES INC.,A3100\nFarming,D & L Farms,A1000\nDRYWALL ACOUSTICS,,B3000\n\"ASSISTANT VICE PRESIDENT OF CLAIMS, OP\",\"AAA NORTHERN CALIFORNIA, NEVADA AND UT\",F3100\nBUSINESS OWNER,NANCY KURTZ,Y4000\nAXA FINANCIAL,,F2100\nL&M GREENHOUSE,,G1200\nBookkeeping,Zeron Network,Y4000\nOFFICE MANAGER,PORTOLA ASSOCIATES,F4100\nVALLEY IND ASSO,PLANO MOLDING,M1500\nSEATTLE SHELLFISH,PRESIDENT,Y4000\nUS EQUAL EMPLOYMENT,,X3000\nUTILITY EXECUTIVE,GEORGIA POWER CO.,E1600\nSelf Employed,\"Arcslam, LLC\",Y4000\nMANAGER,JUST PASSING THROUGH LLC,Y4000\nEVP  DIST,THE WEATHER CHANNEL  INC.,C2200\nCEO,INETEKK.COM INC.,Y4000\nPRESIDENT,GASLIGHT INC.,G5270\nTHE SERVICEMASTER COMPANY/ATTORNEY/,,G5200\nSENIOR VICE PRESI,QWEST CORPORATION,C4000\nDISTRICT MANAGER,COACH INC.,M3000\nLAW OFFICE OF SHEPARD HOFFMAN,,K1000\nSUNRUN,ENGINEERING,B4000\nCARDI CORPORATION,,B1000\nPresident,Sobel Family Foundation,X4100\nSELF/WRITER/FILMMAKER,,C1100\nPRESIDENT,WAUCONIA TREE FARMS,A5000\nSR. ACCOUNT MANAGER,CRC PUBLIC RELATIONS,J1100\nLINDER INDUSTRIES,,Y4000\nDiagnostic Radiologi,White-Wilson PA,H1130\nCFO AND PARTNER,\"STS, INC\",Y4000\nTD PEEPLES CONS,TOWN OF HILTON HEAD,Y4000\nPilot,Air Force,J1200\nADM,WORKERS SAFETY AND COMPENSATION,J1200\nTHE FIRST SOUTHERN COMPANY,,Y4000\nProffessional Staff,Dept. of Natural Resources,X3000\nBUSINESS OWNER,MULLER INC.,Y4000\nOWNER,MEMMO CONTRACTING INC.,B3000\nCITY VAN & STORAGE,,Y4000\nVice President,Liberty Homes,B2000\nAgent,Controller Realty Co.,F4200\nlawyer,\"Partners HealthCare System, Inc.\",Z9500\nENTREPRENEUR FOR CHARITABLE ORG,,X4100\nRECEPTIONIST,OSBORN CHIROPRACTIC,H1500\nPRESIDENT,SIBSCO,J9000\nDISTRIBUTOR,LAKESIDE BEVERAGE CO.,Y4000\nCLERK AND RECORDER,JACKSON COUNTY,X3000\nVICE PRES - PUBLIC AND GOV AFFRS,EXXON MOBIL CORPORATION,E1110\nPRESIDENT,THE STATE EXCHANGE BANK,G1200\nengineer,Michelin,T2200\nEBI PC,,Y4000\nEngineer,Weatherford International,Z9500\nPROFFEDS ASSOC,,Y4000\nConsultant,\"Market Sense, Inc\",Y4000\nOwner/Principal/Partner,Tom Takes Construction,B2000\nNORMANDIE CASINO,,G6500\nPresident,Strauss Foundation,X1200\nSENIOR HOUSING DIRECTOR,RETIREMENT LIVING GROUP,Y4000\nSTATE EXECUTIVE DIRECTOR,USDA/ FARM SERVICE AGENCY,Z9500\nattorney,Sigman Janssen Stack Sewall&Pitz,T1400\nATTORNEY,\"NIDEY ERDAHL TINDAL & FISHER, PLC\",K1000\nChairman,Hart Group,F4200\nATTORNEY,\"WILENTZ, GOLDMAN & SPITZER P.A./ATT\",K1000\nBOOKKEEPER,HJS INVESTMENTS INC.,Y4000\nTRAINER,CURTIS LUMBER CO,B5200\nTRUSTEE,BERGLUND TRUST,J1100\nChiropractor,Swanson Chiropractic,H1500\nManagement,Mutual Assurance Admin,Y4000\nLAB. TECH.,LAB TECH,X0000\nPRESIDENT,CORRECTIONAL FOOD SERVICES,Y4000\nFarmer,\"Saini Farms, Inc\",A1000\nMANAGEMENT,KNOLL,Y4000\nOWNER,JVP ENTERPRISES,Y4000\nHELLO BRASIL,,Y4000\nATTORNEY,CABRAL GROUP,Y4000\nReal Estate,RDN Properties,F4000\nVAN SCOYOC ASSOC INC,,K2100\nPhysician,CONCORD OBSTETRICS/GYNECOLOGY,H1130\nATTORNEY,\"KIERNAN, PLUNKETT, & REDIHAN\",K1000\nPRESIDENT,PARADIGM TECHNOLOGIES,Y4000\nManager,\"Plum Creek Hallow Farm, LLC\",A3500\nATTO,\"RUCCI, BURNHAM, CARTA & EDELBE\",K1000\nBest efforts,Best efforts,Y2000\nBroker,\"Tower Investments, Inc.\",F4100\nASSOCIATE,THE PMA GROUP INC.,K2000\nASSISTANT ADMINISTRATOR,USAID,X3000\nDirector,Cibc World Markets,F2100\nKNOTTS BERRY FARM,,T9300\nCONSULTANT,MALONE CONSULTING,Y4000\nAttorney,\"Denlinger, Rosenthal and Greenberg\",J1100\nCan Not Receive My Retired Pay,Ret. Usa / Disabled Veteran,X1200\n,HUNTINGTON BANCSHARES INCORPORATED,F1100\nCAPITAL RESOURCES LTD,,J1100\nODEN HOMES INC,,J6200\nPUBLIC HEALTH ADMINISTRATOR,KPMAS,Z9500\nRETIRED,CDC,X3000\nSOFTWARE SALES EXEC,IBM,C5100\nContract Furnishings,Corporate Environments Intl,Y4000\nMAPLE SYRUP PRODUCTION,,A1600\nTOBACCO WAREHOUSING,,Y4000\nOrthopaedic Surgeon,Ucsf,H5100\nATTORNEY,\"MASCHKA, RIEDY & RIES\",K1100\nTHE MANHATTAN INSTITUTE,,F3300\nState Affiliate Exec,National Education Assn.,L1300\nDMD,JD,K1000\nDAYTON POWER AND LIGHT CO,,E1620\nFIRST NATIONAL BANK ORDWAY,,F1100\ncivil rights Attorney,Sag Harbor Group,Y4000\nLEGISLATIVE DIRECTOR,\"BRISTOL COUNTY SHERIFF'S OFFICE\",X3200\nPartner,Cauthen Forbes Williams,K2000\nSVP REAL ESTATE INVESTMENTS,CAMDEN PROPERTY TRUST,F4100\nManager,Strong/Corneliuson Cap.,J1100\nAttorney,Swartz & Goldberg,K1000\nDEE-BLAST CORP,,Y4000\nCHRONICLE PUBLISHING CO,,J7400\nSR VP & SECRETA,THE SCOULAR COMPANY,A1500\nSURGEON,SIOUX VALLEY HOSPITAL,H2100\nPublic Relations,A G Spanos Co,F4100\nAttorney,\"'Janet K. DeCosta, PC'\",Y4000\nPRESIDENT,\"SPFM, LP\",H4100\nCEO,\"GRIFFIS/BLESSING, INC.\",Z9500\nSOCIAL WORKER,CATHOLIC CHARITIES,H6000\nEmergency Physician,c/o Carepoint PC,H1100\nPRESID,AMERICAN FASTENER TECHNOLOGY,Y4000\nEVP & Chief Investment Off.,Members Capital Advisors,F1300\nMOSELEM SPRINGS INN,,Y4000\nPORTLAND TRAILBLAZERS,,G6400\nRN Consultant,Memorial Sloan Kettering,H2100\nSales,READING ROCK,Y4000\nBanker,Farmers State Banks,F1100\nCEO,3M Company,M2300\nGRANTS & PROGRAM MANAGER,ABRAHAM J. & PHYLLIS KATZ FOUNDATION,Z9500\nATTORNEY,OCA,Z9500\nMANAGEMENT,CLC,Y4000\nSELF/INVESTOR/MEMBER DART BOARD,,Y4000\nICMS,,Y4000\nExecutive VP,TeamHealth,H1100\nEngineer,Bay Pointe Engineering Assoc.,B4400\nAVERY OIL AND PROPANE INC,,E1190\nSystems Analyst,Cisco Systems Inc.,C5110\nJOHN STERLING CORP,,Y4000\nPresident,Theory,G4100\nPsychologist,US Dept of Veterans Affairs,X3000\nBANKER,CHESTER COUNTY BANK,F1100\nAttorney,Kevin Anderson,J6200\nCITY OF NORTON SHORES,,X3000\nEntrepreneur,\"Wcs Wireless, Llc\",Y4000\nCEO,Click & Pledge,Y4000\nBANKER,STATE BANK OF CROSS PLAINS,F1000\nOWNER,ALIEN TRANSPORT,Y4000\nPILOT,SABRINA FISHERIES CORPORATION,Y4000\nLawyer,Lynn Schenk Attorney at Law,K1000\nCeo,Lendia Inc,Y4000\nSECURITIES ANALYST,PAULSON & COMPANY INC./SECURITIES A,F2700\nMAL WARWICK & ASSOCIATES,,Y4000\nCEO,Duo County Telephone Cooperative Corpo,C4100\n\"HAGEMIER, ALLEN & SMITH\",,K1000\nSINGER,GUINNESS,Y4000\nWriter Poet,Self employed,J1200\nInstitute For Womens Pol,Economist,J7400\nCEO,AMSURG CORPORATION,H3000\n\"Physician, OB/GYN\",Self-Employed,H1130\nINS INVESTIGATOR,,F3100\nT PARTS,RECON A,T2200\nMIKE DAVIDSON FORD/CONTROLLER/CFO,,T2300\nPRESIDENT & CEO,UNISEA,E4100\nEDITOR,UNIVERSITY OF COLORADO,H5100\nCPA,\"STACK & JAGIELLO, LLP\",F5100\nInvestment Manager,Morgens Waterfall,F2600\nBROMBERG-ROSENTHAL-S,,Y4000\nSNELL PROSTHETIC & ORTHOTIC,,H4100\nMORGADO PLUMBING,,B3400\nTWIN CITY COPY SERVICE,,Y4000\nChief Technology Off,GE Corporate,M2300\nOptometrist,\"Drs. Kemp and Peterson OD's PC\",Y4000\nCEO,AMADOR HOLDINGS INC,Y4000\nExecutive Director,Network for New Music,C2800\nCorporate Officer,Boddie  Noel Nterprisesl Interprises,G2900\nLANG LUMBER,,A5000\nCOLLECTION,SELF-EMPLOYED,Y4000\nS L TRAPPERS,,Y4000\n\"SEEBA & ASSOCIATES, INC. CPAS\",,F5100\nExecutive,GR Patel & Associates,Y4000\nCHIEF OPERATING OFFICER,CBRE CAPITAL MARKETS,F4600\nBERG SENIOR SERVICES CORP,,Y4000\nBANKING EXECUTIVE,CAPITAL CITY BANK,F1000\nDEMETREE BROTHERS,,J1110\nSOUTHERN MISSOURI CONT,,Y4000\nATTORNEY,PARAGON GROUP,Y4000\n\"MIDDLESEX DA'S OFFICE\",,X3200\nLAWYER,FALLS & VEACH,K1000\nPolice Office,Univ Of Miami,H5100\n\"KIMMET, COATES & MCCARTHY\",,K2100\nCommonwealth Acceptance,,Y4000\nJudge,CALHOUN COUNTY,X3000\nMINER,OVCC,E1210\nCA STATE EMPLOYEES ASSN,,L1200\nJLM FINANCIAL,,G2400\nCFO,LUTHER MANOR,J5100\nScience Teacher/Ordained Episcopal min,Lake Bluff Middle School,Y4000\nAttorney-Advisor,N/A,K1000\nALLIANCE INVESTMENT GROUP,,F0000\nOIL AND GAS EXECUTOR,EASTHERN ENTERPRISES,E1120\nSystems Technician,S.B.C.,C4100\nFund Manager,Edgewater Funds,F0000\n\"CO-OWNER, RETAIL STORE\",AMOEBA MUSIC,Z9500\nPRES.,INTERNATIONAL SPEEDWAY CORP.,G6400\nTeacher,Ontario Montclair School,X3500\nATTORNEY,\"SILBER, PERLMAN, SIGMAN & TILEV\",Y4000\nHealthcare,information requested,H0000\nInsurance,Hamond Group,Y4000\nENTERTAINER,,C2600\nCEO & Chmn.,Parkway Investments,F4100\nC.E.O.,FISHER INVESTMENTS,F7000\nCORKER PROP INC,,Y4000\nTRAVEL COMPANY,SELF EMPLOYED,T9400\nN/A/SLF EMP BUSINESSMAN / HORTICULT,,A8000\nATTORNEY,MOSS LICHEN & STONE,Y4000\nCANTEEN SVC,,Y4000\nPROFESSOR AND WRITER,YALE UNIVERSITY,H5100\nPhysician,Evanston Northwestern Healthca,H0000\nCeo,Janesville Psychiatric Clnc,Y4000\nRN,EAST TEXAS MEDICAL CENTER,H2100\nSALES AND MARKETING EXECUTIVE,MARRIOTT VACTION CLUB INC.,Y4000\nOWNER,WOODY FUTRELL MARINE AND AIRCRAFT,T1200\nCOO,Community Hospital,H2100\nBANKER,FIRST BANK OF HIGHLAND PARK,F1100\nEXECUTIVE,CENTRAL SONY COMPANY INC.,Y4000\nexecutive,Washington Mutual,J1200\nAttorney,\"Neal, Gerber, and Eisenberg\",K1000\nPharmacist,Discount Drug Mart,J1200\n\"Modis, Inc\",,Y4000\nSIGN COMPANY,,G5200\nHAUSFRAU,SELF,Y4000\nAttorney,City of Missoula,X3000\nATTORNEY,ROCK WOOL MANUFACTURING,Y4000\nPARTNER,US EQUITIES REALTY LLC,F4200\nGOVERNMENT AFFAIRS,UNIVERSITY OF OKLAHOMA,H5100\nExecutive,Bloomnet,A8000\nCREATIVE MARKETING COMM INC,,G5280\nEMPLOYEE,COLON AND RECTAL SURGERY ASSOCIATES,Y4000\nPresident,Hegg Accounting,Y4000\nATTORNEY,FGMC,Y4000\n\"SVP & PRES AG SERV, EU\",ADM,A4300\nHOUSE BUDGET COMMITTEE,,J1200\nSales & Marketing,self-employed,G0000\nDENTIST,RAMPTON DENTAL,H1400\nDC LEGISLATIVE STRATEGIES,,K2000\nVICE PRESI,WYETH PHARMACEUTICAL CO.,H4300\nSENIOR MANAGING DIREC,RSM MCGLADREY,F5300\nEXECUTIVE,NJ LENDERS CORP,Y4000\nENGINEER,SOUTH BAY RESOURCES,Y4000\nAMERICAN ASSET MANGMT,,F2100\nOWNER,DAV EL BOSTON INC.,T4200\nMORAVIAN HILLS C C,,G6100\nGOVT. AFFAI,MITCH DELK & ASSOCIATES,K2000\nUTILITY,NEXTERAENERGY,E1600\nPRESIDENT,JESS HOWES INC.,Y4000\nAttorney,\"Skadden Arps, et al.\",K1000\nLobbyist,Texas Self Insurance Association,F3100\nPRESIDENT,HERMAN SMITH & COMPANY/PRESIDENT,B2000\nExecutive,Strategies 360,Z9500\nEngineer,Hyundai Engineering,B4400\nARROW CHEVROLET INC,,T2300\nSTEVE WHITE CHEVROLET INC,,T2300\nC E O,Level 3 Communications,C4000\nManager,Cypress Partners LLC,Y4000\nBenefits Consultant,Self-Employed,F5500\nRestauranteur,Javiers Restaurant,G2900\nA,N,C2300\nDirector,Self employed,Y3000\nATTORNEY,JOHN CHANG,K1000\nCook,Information Requested,G2900\nPresident,Murphy Company,B4200\nCUSTOMS BROKERAGE,HUNTER INTERNATIONAL BROKERAGE INC.,J6200\nBUSINESSMAN,ROSE BRAND,Y4000\nExecutive,Amerigroup Corp.,H3700\ndirector,Siemens Healthcare,H4100\nOffice Manager,Law Offices Of Joseph Low,K1000\nTSG WATER RESOURCES,,Y4000\nSuperintendent,Norwich Public Schools,X3500\nEstate Sal,Self-Emplo,Y4000\nTEACHER,F A OF SUFFOLK CO CC/TEACHER,L1300\nPresident,Rvh Residential Constrution Llc,B1500\nLawyer,Muager Toller Olson,Y4000\nOwner,Kirby Healthcare,J7300\nNATIONAL REPRESENTATIVE,UAW CAP,Y4000\nREAL ESTATE BROKER,\"BIG SKY BROKERS, LLC\",Z9500\nSCIENTIST,CALTECH,J1200\nMANAGER,MIDWAY OFFICE SUPPLY,Y4000\nGRANT WOOD AEA,,Y4000\nAttorney,Law Offices Of Daniel J. Dewit,K1000\nHOMEFED BANK,,F1200\nAUCTION HOUSE REPRES,\"CHRISTIE'S FINE ART, INC.\",G4600\nENGINEER,OUT OF TRADE,LB100\nSystem Operations Consultant,American Transmission Company,E1600\nBEVER DYE LC,,F3400\nASSOCIATED HEALTH CARE SYSTEMS,,H3000\nPRESIDENT,\"INTERNATIONAL CARS, LTD.\",F5500\nATTORNEY,HIRSCHKOP & ASSOC.,Y4000\nAssociate,\"TTR Sotheby's International Realty\",F4200\nSELF EMPLOYED,,F2500\nNA/HOMEMAKER/COMMUNITY ACTIVIST,,Y1000\nFITZGERALD NECK AND BACK CLINIC,,Y4000\nPRESIDENT,HOLCUB INVESTMENTS,F7000\nGENERAL PARTNER,THE TORREY FUNDS,J1200\nOWNER,DYNASTY RESTAURANT,G2900\nInvestor,North Star Investments,F4100\nBUSSINESS OWNER,\"VASSALLO FOODS, INC\",Y4000\nPACE UNIVERSITY LAW SCHOOL,,JE300\nGOVERNMENT RELATIONS DIRECTO,C.N.A.,K2000\nINVESTOR,\"CAVES VALLEY PARTNERS, LLC\",F4000\nM,\"PEOPLE'S COMMUNITY BAPTIST CHURCH\",X7000\nLAWYER,\"LEGAL AID BUREAU OF MD, INC.\",Y4000\nVETERINARY SURGEON,VSRP,A4500\nSTRONGWELL/MANAGER/OWNER,,M2300\nlawyer,Waller Lansden Dortch & Davis,K1000\nVice President Finan,Opelousas General Health System,H2100\nPresident,Sidewinder Pumps Inc,G1200\nVice President,Biotechnology Ind. Org.,H4500\nDFW ANESTHESIA P A,,H1130\nPetroleum Marketers of Iowa PAC,,E1170\nConsensus Planning,Planning Reasearch Internation,Y4000\nPresident/COO,\"John Middleton, Inc.\",Y4000\nEducator,U of M Dearborn,H5100\nOperations Mgr,Sundt Construction Inc California,B1000\nGALLERY 678,,Y4000\nInvestment Banker/Attorney,Lloyd Bridge Advisory,Y4000\nFEDERAL BANKRUPTCY,SELF EMPLOYED,Y4000\nInformation Requeste,\"Phoenix Int'l\",T7000\nOwner/Martial Art,Song Mundo Inc.,Y4000\nADVOCARE,,H2200\nMusic Teacher,\"St. John'S Lutheran School\",Y4000\nMILLER ANDERSON & SHERREND,,Y4000\nINSURANCE EXECU,KNAPP SCHENCK & CO.,F3100\nLAWYER,PERRY PERRY & PERRY,Y4000\nPRESIDEN,IRRIGATION SUPPLY CO. INC.,A4000\n\"EER ISUZU OF PUERTO RICO, INC.\",,T2310\nGOVT RELATIONS,GANNETT,C1100\nVice President,Olsson Roofing Company Inc.,B3000\nSPENCER REALTY,,F4200\nState Senator,Indiana,J7400\nUrologist,Camden Urology Clinic,H1130\nINVENTOR,FLEXABILITY CONCEPTS,Y4000\nRegistered Nurse,HUMA,Y4000\nGovernment,State of Vermont,X3000\nVP & MANAGING DIRECTOR,THE INVERNESS HOTEL & CONFERENCE CENTE,T9100\nMANAGING D,CITIGROUP GLOBAL MARKETS,F2100\nEVENT PLANNER,NATIONAL RIFLE ASSOCIATION,J6200\nPortfolio Manager,Weaver C Barksdale & Associates,F2100\nNOT EMPLOYED/N/A,,JE300\nCHIEF OF STAFF,JACK KEMP,Y4000\nFLAGSHIP FINANCIAL INC,,F2100\nREALTOR,\"NORTH SHORE ASSOCIATION OF REALTORS, I\",J9000\nMETTE EVANS & WOODSIDE,,Y4000\nOwner,The UPS Store #4612,T7100\nManager,UGI Corp,E1140\nTommy Hilfiger,,M3100\nOWNER,RDP,Y4000\nPRESIDENT/CEO,HARDWARE HAWAII,J1100\nNATIONAL CITY BANK NORTHWEST,,F1100\nLawyer,Kleinmuntz Law Office,K1000\nRETIRED/PHYSICIAN/PHYSICIAN,,Z9500\nReg. Nurse,North Broward Hospital Dist.,H2100\nWATSON PLUMBING/OWNER/OPERATOR,,B3400\nOwner,D&D Electric,B3200\nNORTHEAST PRIVATE CLIENT GROUP,,Y4000\nWAREN VILLAGE ENTER,,Y4000\nPresident and CEO,\"Lakeland Bancorp, Inc\",F1100\nCOMP. APPL. ENGR,FORD,Y4000\nAttorney,Silverstein & Osach Pc,K1000\nROBERT KENNEDY MD,,H1100\nCivil Engineer,Bridgefarmer,Y4000\nCOO AND EVP,ONLINE MARKETING GROUP,Y4000\nRETIRED,AMERICAN EXPRESS FINANCIAL ADVISORS,J1200\nOWNER,XHEMA CONSTRUCTION/OWNER,B1500\nCUSTOM POWER SERVICE,SELF-EMPLOYED,G0000\nOW,TCS DESIGN & MANAGEMENT SERVICES,Y4000\nDIRECTOR OF SMART GRID RESEARCH,STANFORD UNIVERSITY,H5100\nARCHITEC,GLUCKMAN MAYNER ARCHITECTS,B4200\nTEACHER,STANLEY BPS,Y4000\nCommodity Broker,Rosenthal Collins,F2200\nMANZELLA PERSONAL MGMT,,\nPR DIRECTOR,DEVRY INC,H5300\nMARKET SERVICES,,Y4000\nDAKOTA COUNTY,,X3000\nTHE RACHUBA GROUP,,Y4000\nPRESIDENT AND CEO,KEYWELL LLC,Y4000\nPIANO TECH & LOCKSMIT,SELF-EMPLOYED,Y4000\nSOUTHERN ILLINOIS POWER CO-OP,,E1610\nSR. EXECUTIVE,COMCAST,C2200\nOWNER,THE RINCON STRATEGY FIRM,Y4000\nEMARE WHOLESALE LUMBER,,B5200\nVice President,EPC Consultants,Y4000\nClerk,Eastern Maine Medical Center,H2100\nENGINEER,STYKER,Y4000\nExecutive & RN,Metropolitan Hospital Council,H2100\nARCHITECT,STAINBACK HESS STUDIO,Y4000\nEXEC,CEDAR ELECTRIC,Y4000\nREAL ESTATE,POWERS @ COMPANY/REAL ESTATE,F4000\nVP SALES,PRINCIPAL FINANCIAL GROUP,F3300\nSEED PRODUCER,SELF-EMPLOYED,A1400\nGENERAL MANAGER; S,GE POWER SYSTEMS,M2300\nBROKER,ADVANCED TRADING,F2000\nINSURANCE SALES/OWNER,DONOHUE HART & ASSOC.,Y4000\nCPA,Kenwood Associates,F5100\nAttorney,Rogers Towers Pa,Y4000\nREAL ESTATE DEVELOPER,JVT REALTY (SELF-EMPLOYED),F4200\nBRICE BUILDING COMPANY INC,,Y4000\n\"O'MELVENY & MYERS LLP\",,K1000\nCOB,CACI Inc.,D9000\nGULFSTREAM TLC INC,,E2000\nHousing,Self,G0000\nCOLLEGE OF LAW IN COLUMBUS,,H5170\nC G ENTERPRISES INC,,Y4000\n\"DAVIDSON, GOLDEN, LUNDY & FOREHAND,\",,B1000\nCOMPUTER SPECIALIST,,J1200\nLEGAL CONSULTANT,JEFFERSON GOVERNMENT RELATIONS,K2000\nDirector Of Youth Mi,Westminster Presbyte,Y4000\nManaging Partner,\"Katz,Kutter,Haigler et al\",K1000\nVP SALES & MARKETING,\"RENEWABLE ENERGY GROUP, INC.\",E1500\nMECHANIC,NAVAL WEAPONS STATION,Y4000\nINTER AMERICAN TRANSPORT INC,,J5200\nEMPLOYEE,DIRECT IMPACT GROUP,G4200\n\"MANAGING DIR., COMM'L DEV\",INVISTA SARL,E1160\nPARTNER,FIERCE AND ISAKOWITZ/PARTNER,K2000\nMILAM OLDSMOBILE,,T2300\nOPPENHEIMER & CO,,F2100\nFARMER FOOD PRODUCTION,SELF,Y4000\nVICE-PRESIDENT,\"JULY BUSINESS SERVICES, INC.\",Y4000\nAntiquarian Book Dea,Self,G0000\nPRESIDENT,LCS CORRECTIONS SERVICES INC,G7000\nCHIEF OPERATING OFF,P.E.C.O. ENERGY,E1600\nLobbyist,Miller Wenhold Capitol Strat,Y4000\nHUDSON FOODS INCORPORATED,,A2300\nLEGACY PRODUCTIONS,,Y4000\nEduation,Bullis School,Y4000\nPresident/gm,Self,G0000\nCOO,DCCA,Y4000\nSEN. V. PRES.,GLOVER PARK GROUP,K2000\nDirector of Development,First Industrial Realty,F4000\nExecutive,US Green Building Counsel,JE300\nLawyer,Trinonic Communications Inc.,Y4000\nADMINISTRATOR,AMERICAN INTELLECTUAL PROPERTY LAW ASS,J1200\nBusiness Owner,Shades In Style,Y4000\nDIRECTOR,SLEELCASE,Y4000\nCHICAGO TITLE INS,,F4300\nEngineer,Innovative Energy Solution,E1000\nINFO REQUESTED,Hammons Tool & Die Co.,M5000\nPHILLIPS INTERNATIONAL LP,,Y4000\nCEO,Mens Wearhouse,G4100\nBANKER,CENLAR FSB,F1200\nSENIOR POLICY COUNSEL,AKIN GUMP STRAUSS HAUER & FELD LLP,K1000\nExecutive,\"Geometrician Associates, LLC\",Y4000\nBARRIERE CONST CO,,B1500\nGD PACKAGE MACH,,Y4000\nPOLITICAL CONSULTANT,SELF,J7150\nATHENS PLASTIC SURGERY,,H1130\nSILLER WILLIE & MERCHER,,Y4000\nTHE COMMELL COMPANY,,Y4000\n\"ORDON'S\",,Y4000\nAttorney,Ball and Mourton,K1000\nGovernment Affairs,Prime Policy Group,K2000\nVP,Keystone Education and Youth,H2100\nPhysician,CBSN,Y4000\n,MAPLEWOOD SOUTH ORANGE SCHOOL DIST,X3500\nInformation Requeste,Sequenam Inc,Y4000\nconsultant,MacWilliams Cosgrove and Flint,J1200\nPRODUCT DEVELOPMENT,SELF-EMPLOYED,G0000\nHamburger Franchise,Self-Employed,G0000\nPRINCIPAL,KML STRATEGIES LLC,J1100\nTELEVISION JOURNALIS,OVERSEAS MEDIA INC,C2100\nGOVERNMENT RELATIONS,THE RHOADS GROUP,K2000\nCFO,LIBERTY BANK OF ARKANSAS,F1100\nJH TAYLOR,,F4000\nAttorney,\"Jorgenson, Siegel\",K1000\nOwner,\"Morris Petroleum, Inc.\",E1100\nPRESIDENT,VI,H2200\nHospital CEO,\"St. Mary's Hospital\",H2100\nOwner,Tilencounters,Y4000\nNJ RESOURCES CORP,,Y4000\nPresident,Conn.ToolandCutter Co.Inc.,M5100\nHuman Resources,Ecolab,M1300\nEXECUTIVE,GEU RETHINKING ENERGY/EXECUTIVE,E1000\nPRESIDENT & CEO,MAUI OIL,Y4000\nBanker,Fidelity State Bank & Trust Company,F1000\nSUNNYSLOPE ELEMENTARY,,Y4000\nORACLE,ENGINEER/ORACLE,C5120\nSARAH S DEAN FAMILY TRUST,,Y4000\nPetroleum Landman,Bj Kadrmas Inc.,E1100\nPHYSICIAN,CAROUNAS MEDICAL CENTER,H1100\nExecutive,Electure Real Corp,C5100\nGeologist,Chevron Energy Technology Company,E1000\nEXECUTIVE,\"MAIN INDUSTRIES, INC.\",Y4000\nUNEMPLOYED,N/A,JD200\nTHOMAS SHADYAC,,Y4000\nChief Executive Officer,Roane General Hospital,H2100\nOWNER,\"O'CONNOR ENTERPRISES\",Y4000\nCEO,Carole Hochman Design Group,Y4000\nOWNER,COACHELLA VALLEY NURSING,Z9500\nSealaska Corp,,A5000\nFERINI FARMS,,A1000\nTONKIN TORP GALEN,,Y4000\nStudent,Frostburg St Unver,J1200\nCONSTRUCTION MANAGE,PROJECT FREEDOM,Y4000\nEXECUTIVE,SUCCESSFUL SOLUTIONS INC.,Y4000\nEXECUTIVE,MALT PRODUCTS CORP.,Y4000\nPRESIDENT,SUSAN COLBY ASSOCIATES,Y4000\nOrthopaedic Surgeon,Beth Israel Medical Center,H1130\nSENIOR VICE PRES,INVESTOR RELATIONS,F7000\nELECTRO-SCIENCE LABS INC,,J5100\nC.E.O.,QUALITY HOME CARE PROVIDERS,H3100\nSAVANNAH LAKES VILLAGE,,Y4000\nTHEATRICAL PRODUCER,JUJAMCYN THEATERS,C2700\nCLAIMS MONITORING SERV,,F3100\nALLEGHENY TECHNOLOGIEY,,K2100\nENVIROMENTAL ENGINEER,EPA,L1100\nEXECUTIVE,BELFER MANAGEMENT LLC,F7000\nAUTO REPAIR,GENES AUTO BODY,T2400\nResearcher,Rand Corp,G5200\nAUBURN HIGH SCHOOL,,X3500\nEXECUTI,NORTHWESTERN MUTUAL FINANCE,F3100\nhousewife,Not employed,F4300\nTB & T MONEY MANAGERS,,F2000\nINVESTOR,DRAPER FISHER JURVETSON,F2500\nPARTNE,LICHT REALTY CO. PARTNERSHIP,J5100\nPENQUIN INDUSTIES,,Y4000\nWESTERN NATL INS GROUP,,F3100\nPRESIDENT,COASTAL INS GROUP INC,F3100\nBRADLEY & WELLINGTON,,Y4000\nPOLITICAL DIRECTOR,\"TRUMAN NAT'L SECURITY PROJECT\",J5000\nIllustrator,Self employed,G5240\nSPIRITS DISTRIBUTOR,CONGRESS INC,G2850\nVP GOVERNMENT AFFAIRS,ML STRATEGIES,K2000\nOwner,Sigiri Sri Lanka Restaurant,G2900\nREAL ESTATE INVESTMENTS,DOLGEN VENTURES/REAL ESTATE INVESTM,F4000\n\"GOV'T\",BAPTIST MEMORIAL HEALTH CARE,H2100\nCommunications Direc,Gordon & Schwenkmeyer,Y4000\nPSYCHOTHERAPIST,CHILDRENS HOSPITAL,H2100\nMedical Care,Kaiser Permanente Medical Group,H3700\nPRESIDENT AND CEO,HONORS ACADEMY,Y4000\nPhysician,Cherry Mathews Md,H1100\nEXECUTIVE ASSIS,THE FAMILY PARTNERS,Y4000\nREAL ESTATE INVESTOR,BAKER PROPERTIES,F4000\nSCIENTIST,KEYSTONE INTERNATIONAL,G5270\nGEICO,,F3100\nCEO,WellMed,H1100\nSenior Vice Presiden,Arkansas Best Corporation,T3100\nLAWYER,SUISMAN SHAPIRO,K1000\nContractor,J & E Construction,B1500\nCLIMATE CONTROL IN,,Y4000\nGovernment Relations,DeMenna & Assoc.,Y4000\nPresident,Awatukee & Maxillo Facial Inc.,H1400\nTAYLOR MADE ENVIRONMENTAL INC,,Y4000\nTECHNICAL MARKETING MANAGER,BASF,M1000\nLOBBYIST,VALENTE & ASSOC.,K2000\nATTORNEY AT LAW,\"TOBIN, KESSLER, GREENSTEIN, CARUSO, WI\",Z9500\nCRNA,Fort Madison Community Hospital,H1710\nElectrical Contractor,MILLER ELECTRIC COMPANY,B3200\nPrincipal,The Wiley Group,K1000\nHAROLD S HALLER & CO,,Y4000\nANDREW S MAURODIS,,X3000\nOWNER,REED EXCAVATING/OWNER,B3600\nROSEN BIEN & ASARO,,J5100\nINVESTMENT MANAGER,BESSEMER TRUST,F2100\nPresident,Savant Services LC,Y4000\n\"LORRIE'S AIRPORT SERVICE\",,T1600\nBEST EFFORT,BEST EFFORT,H4100\nGovernor,Commonwealth of Virginia,J1200\nMARKETING DIRECTOR,KIMBERLY CLARK,A5200\nINSURANCE AGENT,MCGANN INSURANCE AGENCY,F3100\nCHAIRMAN AND CEO,\"FRANKLIN MUTUAL ADVISERS, LLC\",Y4000\nMichigan Campaign for Change,,J1200\nConservation Biolois,Wildlife ConservatiO,Y4000\nPRESIDENT CHIEF EXECUTIVE OFFICER,SENIORCARE INC.,H2200\nReconciliation Clerk,American Express Travelers,F1400\nOwner,Gdsi,Y4000\nLegislative Research Assistant,NC General Assembly,Z9500\nOPERATIONS,DROPBOX,C5140\nGovernment Relations,\"Capitol Hill Associates, Inc.\",Y4000\nJ.C. BRADFORD,,F2100\nCEO,\"Etonic, Inc\",M3600\nAcademic Advisor,Cape Cod Community College,H5100\nAttorney,\"Taft, Stetinius, and Hollister\",K1000\nBUSINESS EXECUTIVE,CYMI LTD.,F2100\nBUTLER WOOTEN OVERBY PEARSON,,K1000\nAttorney,\"O'neal, Brown & Clark\",K1000\nRN-DIRECTOR,NORTHERN DUTCHESS RHCF,Y4000\nPhysician Assistant,Dallas Family Medicine,Y4000\nEngineer,\"Aphex Systems, Ltd.\",Y4000\nBAY CITY NEWS SERVICE,,C1100\nCAC GROUP,,Y4000\nPORTFOLIO MANAGER-CEO,\"ICAP, LLC\",Y4000\nModel Maker Special,Lucas Film,C2400\nGOVERNMENTAL AFFAIRS,SOUTHERN RESEARCH INSTITUTE,G5200\nAUTO SHOP,SELF,T2400\nALTMAN PRODUCTIONS/WRITER/TV PRODUC,,C2300\nThe Riverside Church,,X7000\nCONSULTANT,BUTLER OFFICE INC.,Y4000\nTAX ASSOC COLLECTOR,,Y4000\nCEO,CROSSROADS COUNSELING CENTER INC.,Z9500\nTHE GALLEN GROUP,,C2000\nCHAIRMAN/CEO,PARKWAY CORP.,F4500\n\"OGLETREE, DEAKINS, NASH\",,K1000\nRetailer,Tabula Tua,Z9500\nMANAGER,KEMLON PRODUCTS,Y4000\nWR GRACE AND CO,,M1000\nRestaurateur,Harvest Foods,G2900\nKENNEDY MARSHALL COMPANY,,C2400\nBOLT BERANCK NEUZBAUM,,C5100\nPARTNER,CHRISTIAN KELLY THIGPEN & CO.,Y4000\nGovt Relations,Capitaline Consulting LLC,K2000\nCEO,SELF EMPLOYED,E1500\nAttorney,Illinois Housing,Z9500\nREALTOR,JONES AND ASSOCIATES REALTY,F4200\nVP OF OPERATION,RENAISSANCE MEDICAL,H0000\nPres/Owner,Cycle Construction Co LLC,B1000\nCHAIRMAN & CHIEF ENGINEER,,Y4000\nAURES ASSOC,,Y4000\nMILLS MOTOR INC,,T2300\nPRODUCER,\"FAST TRACK PICTURES, LLC\",Y4000\nSALES ASS,RON ROBINSON INCORPORATED,J7400\nBUYER,RAYPHEON,Y4000\nVENABLE ATTNYS AT LAW,,K1000\nEXECUTIVE,BELCHER MANAGEMENT,Y4000\nPresident,Feiner Enterprises,F4000\nEVA ANDERSON DESIGN,,Y4000\nR SMITH AND SONS TOYOTA,,T2300\nWEARDCO CONSTR CORP,,B1000\nPROPERTY ACCOUNTANT,WHITING OIL AND GAS CORPORATIO,E1120\nBARNARD COMPANIES,,G1300\nINFORMANTION REQUESTED,,Y4000\nLOBBYIST,CHUCK FORD AND SONS,Y4000\n\"COLLUM'S LUMBER CO\",,A5000\nComputer Input,Judy Madrigal,Y4000\nLobbying Consultant,Broydrick & Associates,K2000\nYEAGER HARDWARE INC,,Y4000\nDIRECTOR PROCUREMENT,PPL ELECTRIC UTILITIES,E1600\nRetired,Vanderbilt,X1200\nROWLEY ENTERPRISES INC,,Y4000\nADVERTISING,STRONG LLC,J1100\nFinancial Planner,AXA Advisors LLC,F2100\nBALLIET BROTHERS CONSTR,,B1000\nMD ONCOLOGIST,LITTLE AR CANCER CLINIC,Y4000\nINSURANCE,MCLACHUAN KANE,F3100\nCO-OWNER,BROOKSIDE LANDSCAPING/CO-OWNER,B3600\nRegistered Nurse,U.S. Healthworks,H0000\nSales,J.C. Ehrlich Co. Inc.,Y4000\nEXECUTIVE,MENER,J1100\nAttorney,\"McCabe, Collins, McGeough & Fowler, LL\",K1000\nRETIRED / FARMER/RETIRED,,X1200\nOwner,Lims Investment,F7000\nVice President,Axion Solutions Inc.,Y4000\nManagement Consultant,\"Cavanaugh, Hagan, Pierson & Mintz\",J9000\nORTHOPEDIC SURGEON,SELF-EMPLOYED,H1130\nSOLDIER,DEPT. OF DEFENSE,X5000\nAttorney,\"Berkowitz, Lefkovitz, Isom and Kushner\",K1000\nPRESIDENT,I HELLER CONSTRUCTION CO.,B1500\nOwner,Tgb Inc.,Y4000\nCO-OWNER OF SMALL BUSINESS,MIDWEST METAL PRODUCTS,Y4000\nPRESIDE,PROGRESS MANAGEMENT COMPANY,Y4000\nInsurance Agent,\"Bailey & Haskell Associates, I\",Y4000\nPresident,GCR Inc,X1200\nMEMBER LOCAL 1929,,LT000\nPHYSICIAN,REGIONAL HEALTHCARE,H0000\nPRESIDENT,OMNIPRESSIONS,Y4000\nPRESIDENT,\"K. FRIESE & ASSOCIATES, INC.\",B4000\nSMALL BUSINESS OWNER,\"BLUE JOHN'S\",Y4000\nAmerican International Group,,F3100\n\"ORANGE COUNTY UROLOGY ASSOCIATES, I\",,H1130\nSVP,Warner Bros,C2400\nPHYSICIAN,POAYSIDE ORTHAOPAEDICS,Y4000\nREAL ESTATE,LEHBROS LIMITED,J7400\nPHYSICIAN,FAMILY FOOT CARE ASSOCIATES,Y4000\nINVESTOR,\"ALLIED PARTNERS, INC.\",F4500\nCOMMODITY BROKER,C.M.E. GROUP,F2200\nCOLLEGE PROFES,TEXAS A&M UNIVERSITY,H5100\nCOMMERCIAL REAL ESTATE,GRUBB &ELLIS,F4200\nADMINISTRATIVE,CINCINNATI STATE,Y4000\nNOT EMPLOYED,PURCHASING,Y4000\nGENERAL MANAGER,HARRIOTT CONTRACTING L.L.C./GENERAL,Y4000\nMD,JEFFERSON COUNTY,X3000\nDIRECTOR OF SUSTAINABILITY,UNT,H5100\nPRESIDENT S,TRAINYARD TECH L. L. C.,Y4000\nPresident & CEO,Tangent Technologies,M1500\nANESTHESIOLOGIST,KS UNIV PHYSICIAN,H1130\nMCINNIS KRON TYNER & DANIEL INC,,F3100\nPRIVATE EQUITY,SARGATUCK CAPITAL CO./PRIVATE EQUIT,Y4000\nBARRIOS TECHNOLOGY,,Y4000\nGENERAL,MOUNT ADAMS VENEER COMPANY,Y4000\nEducator,\"Saint Mary's College\",J1200\nJAVENS MECHANICAL CONTRACTING,,B0500\nSecretary of State,State of Mississippi,X3000\nHealth Insurance Spe,USHHS,X1200\nMECH CONTRACT,,B3000\nAttorney,Beveridge,K1000\nProfessor of Physics,Boston University,H5100\nLAWYER,\"CONNER, RILEY, FRIEDMAN AND WEICHLER\",K1000\nManager,McMillin Management Services,Y4000\nVP Finance,\"Marotta Controls, Inc.\",Y4000\nINFO REQUESTED,A A Prestige Taxi Svc,Y4000\nManaging Director,Oppenheimer Co,F2100\nretired,Metropolitan Opera Guild,C2900\nMarketing Consultant,Anadarko Petroleum Corp.,E1120\nAttorney,Ben Sheerer Law Offices,K1100\nAnalyst,Air Force Research Labs,X5000\nDIRECTOR,ASURION,C4300\nPRESIDENT,GRUPO N MEDIA GROUP,Y4000\nFOUNDE,SARASOTA CONSERVATION FOUND.,JE300\nMASON HUNT,SELF,G0000\nProfessor of History,Lawrence University,H5100\nPATHOLOGIST,CAPITAL ARE PATHOLOGIST,Y4000\nResearch Scientist,Johns Hopkins Univ,Y4000\nMUNN UNGAR & SPECTOR,,Y4000\nCFO,FOREST LABS,H4300\nInformation Requeste,self,J1100\nBAILER,BAIL OF AGRICULTURE AND COMMERCE/BA,Y4000\nHuman Dimension Officer,OSCE,Y4000\nKPMG SOUTHWEST,,F5100\nLaw Professor,UVA,H5100\nRESTAURATEUR,SELLERS MARKETING CO.,G2900\nINFO REQUESTED,Marshall Dennehey Warner,K1000\nREGIONAL MANAGER,US CONCRETE,B5100\nOWNER,STING SURVEILLANCE,Y4000\nINTERNAL REVENUE AGE,INTERNAL REVENUE SERVICE,X3000\nR C DURR HOLDINGS,,Y4000\nATTORNEY,\"SUGARMAN, ROGERS, BARSHAK & COHEN\",Z9500\nProgrammer,Etsy.Com,C5140\nHEALTH PLAN INC,,H0000\nOWNER,DENALI COUNTRY RANCH,A3000\nAttorney,OConnor and OConnor,K1000\nVice President Oncol,Astrazeneca Pharmaceuticals LP,H4300\nCPA,\"ALEXANDER, ARONSON, FINNING & CO.\",Y4000\nCEO,HEALTH NETWORK AMERICA,Y4000\nIBERIA BANK,,F1100\nPartner,Barnes & Thornburg,K1000\nPRESIDENT/C.E.O.,N.F.L. NETWORK,G6400\nLOUISVILLE SD,,L1300\nGovernment,Department Of Homeland Security,X3000\nPUBLIC AFFAIRS,EXXON MOBIL CORPORATION,E1110\nP T MORGAN PACKAGING CO,,Y4000\nHead of Retail Deliv,Citizens Bank,F1100\nAVP MARKETING,TTX CO,T5300\nFACULTY,UNIVERSITY OF WEST FLORIDA,H5100\nARCHITECT,JUNE STREET ARCHITECTURE,Z9500\nManaging Director,OLD School LLC,Y4000\nManager,Wickine Mgmt,J1200\nPHYSICIAN,AAI,D3000\nCROWN CARRIERS INC.,,Y4000\nVICE CHAIRMAN/COO,WEXLER & WALKER PUBLIC POLICY ASSOCIAT,K2000\nDIRECTOR OF DIGITAL STRATEGY,US DEPARTMENT OF ENERGY,X3000\nMORTGAGE BROKER,R.E.M.N. MORTGAGE,F4600\nACTRESS,THE STREISAND FOUNDATION,C2600\nATTORNEY,WECSER MAZARS L.L.P,Y4000\nDOPPELT & CO,,F4200\nDEALMASTER CAPITAL MANAGEMENT L.L.C,,F2100\nstudent,Harvard Uniersity,H5100\nINDEPENDENT,SYNERGY OIL & GAS INC.,E1120\nVP,QC HOLDINGS/VP,F1420\nINVESTOR,RANGER CAPITAL MANAGEMENT,J5100\nCARPENTER BETTER HOMES & GARDENS RE,,F4200\nExecutive Director,\"Adams Street Partners, L.L.C.\",F2500\nOWNE,ROOT CANAL SPECIALITY SERVICES,J1100\nSpecialist,Bayer,J1200\nLOBBYIST,POWELL GOLDSTEIN FRAZER,K1000\nTAU KAPPA EPSILON INTL,,G0000\nVP Operations,Trident Health System,H2100\nABC SERVICES INC,,G2900\nInfo Requested,\"Tibco Software, Inc\",C5120\nFood Broker,Dixon Marketing Associates Inc,G5280\nPhysical Therapist,Ultimate Rehab Services,H1700\nPASTOR,THE INTERNATIONAL FOUNDATION,Y4000\nProfessor,CSU Chico,Y4000\nCEO,THE CASDEN COMPANY,F4000\nPrimary Contact Staff,California Teachers Association,L1300\nMANAGER,UTAH BUSINESS BANKERS,F1000\nReal Estate Investor,Mel Plutsky,Y4000\nDIRECTOR OF ATHLET,BARRY UNIVERSITY,H5100\nENGINEER,GENETECH INC.,Y4000\nMYERS PARK UNITED METHODIST,,X7000\nPHYSICIAN,ELMHURST ANESTHESIOLOGISTS P.C.,H1130\nWOKK,WALT,C2100\nSENIOR VP GLOBAL QU,SCHERING-PLOUGH,H4300\nWARD EQUIPMENT CO.,,Y4000\npostal worker,United States Postal Service,X3700\nPartner,Folger Levin & Kahn Llp,K1000\nDENTIST/ADMINISTRATOR,IADR/DENTIST/ADMINISTRATOR,Y4000\nCAR DEALERSHIPS,,T2310\nAttorney,Hubert & Fowler,K1000\nHEATON FULGHIN WILLIAMS,,Y4000\n\"PRESIDENT, GLOBAL OPERAT\",LEXISNEXIS,C5130\nCEO,Yosemite National Institutes,JE300\nATTORNEY,COX SMITH MATTHEWS INC,K1200\nRetired,World Over Imports,G4400\n\"GREATER CLEVELAND GROWTH ASS'N\",,Y4000\nExecutive VP,The MWW Group,G5210\nconsultant,APCO Worldwide,K2000\nCorp Executive,Novo Innovations,Y4000\nPARTNER,LIPSCOMB & PITTS,Y4000\nBUSINESS OWNER,DDC REEOURCES INC,Y4000\nPRICWATERHOUSE COOPERS,,F5100\nBLACK DIAMOND ENERGY,,E1000\nSALES,LITTLE RIVER GOLD INC,Y4000\nMK BROKERS INC,,Y4000\nInvestment counselor,Foster Dykema Cabot & Co.,Y4000\nOPHTHALMOLOGI,EYE CONSULTANTS OF KY,Y4000\nGE CAPITAL CENTRAL & EASTERN EUROPE,,M2300\nOPHTHALMIC SURGICAL ASSOC.,,H1120\nCIO,SCARSDALE PUBLIC SCHOOLS,X3500\nCOMPANY PRESIDENT,,G3000\nwriter,PC Publishing Co.,C1100\nCHAIRMAN OF THE BO,JD HEISKELL & CO,A3100\nconsultant,Puente Consulting,Z9500\nCEO,THE CENTER FOR EDUCATION REFORM,Y4000\nHEALY BROTHERS,,Y4000\nPRIVATE INVESTOR,,H3700\nCASSIDY GRAIN CO,,A0000\nPhysician,Cardiovascular Medical Group Of S. CA,J7400\nSELF-EMPLOYED,CHARLES MONIOTTE INVESTMENTS,Y4000\nATTORNEY,FENNEMORE & CRAIG,K1000\nC.O.O.,\"HOPPER RESOURCES, INC.\",Y4000\nBUSINESS OWNER,APARTMENT PEOPLE LTD.,F4500\nTelevision,Parkin Broadcasting,C2000\nPRESIDEN,D & R MILLER CONCRETE INC.,G1200\nMANAGEMENT CONSULTANT,HDR / INFRACONSULT,Z9500\nMUSHROOM FARMING,JOHN C. LEO & SONS LLC,Y4000\nPresident,Independant College of So. CA,H5100\nPresident,Creative Energy Concepts,J1100\nPresident,Qureus Asset Management Co.,Y4000\nLOBBYIST,NA,K2000\nSOLE PROPRIETOR,CHRIS LARSON,Y4000\nOWNER,WESTPOINT HOMES,B2000\n\"O'BANNON ORIENTAL CARPE\",,Y4000\nWEBGUY,SELF,G0000\nATTORNEY,PARIS GRRAHAM AND STUBBS,K1000\nHOUSING PROJECT MGR,,Y4000\nOWNER,ASG INC.,Y4000\n\"Vice President, Ambulatory Services\",Covenant Health Care,H2100\nTRUCK,ARKANSAS BEST FREIGHT COMPANY,Y4000\nConsultant,\"De Sola Group, Inc.\",Y4000\nRASTER PRODUCTIONS,,C2400\nINVESTMENTS,HORTON CAPITAL,Y4000\nGROCER,LEEVERS FOODS INC.,Y4000\nPICKERILL MOTOR CO INC,,T2300\nExecutive,Longstreet,M3100\nMEMORIAL HERMANN HOSP,,H2100\nATTORNEY,KATZKUTTERHAIGLERALDERMAN,K1000\nJLM INC,,M1000\nFounder,Jones International,C2100\nATTORNEY,\"AVB AT VICTORIA PLAZA, LLC\",Y4000\nMARKETING,ARC,Y4000\nPhysician,Washington University Medical School,H5150\nLEO EPP CO,,Y4000\nPHARMACEUTICAL,POZEN INC.,H4300\nRealtor,ERA Morrisson,Y4000\nPRESIDENT,BANK OF THE WEST,F1100\nDISTRICT ATTORNEY,STATE OF TENNESSEE,X3000\nCARLYLE ASSOCIATES INC,,Y4000\nDEVELOPER,FM BOOTH TRUST,Y4000\nFACTORY WORKER,\"SPIRIT AEROSYSTEMS, INC\",LM150\nOWNER,MENS CLOTHING STORE,Y4000\nPHY,EMERGENCY MEDICAL SERVICES P.C.,H3000\nEMERGENCY PHYSICIAN,PEACE HARBOR HOSPITAL,H2100\nPRESIDENT,CONLAN COMPANY/PRESIDENT,Y4000\nLegislative Assistan,TWU Local 513,LT600\nbusiness,Self employed,G0000\nEXECUTIVE,RCT,Y4000\nGENERAL COU,E.I. DU PONT DE NEMOURS,M1000\nWHITMAN PLAZA 110,,Y4000\nCAROL BURDICK & MCDONOUGH,,K1000\nowner,Lake Nasworthy Marina,Y4000\nANESTHESIOLOGIST,UNIV OF IOWA HOSP,H1130\nCHIEF EXECU,THORSON GMC TRUCK BUICK,T2300\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,MULTICARE HEALTH SYSTEM,H2100\nINVESTMENTS,IVY ASSET MANAGEMENT,J5100\nACCOUNTANT,\"STIVERS & ASSOCIATES, PSC\",F5100\nTHE COMPUTER GROUP,,C5100\nFRIENDS OF KATHLEEN KENNEDY TOWNSEN,,Y4000\nLawyer,\"Simone, Roberts & Weiss PA\",K1000\nGOMMALOY,,Y4000\nHIGHER EDUCATION,,J7400\nPEAL & LOVETT,,Y4000\nAttorney,Aranda & Guttler,K1000\nKansas City Power & Light Company,,E1600\nEDP SYSTEM SERVICES INC,,Y4000\nVICE-PRESIDENT,THE LANG CO.,Y4000\nAttorney,PA Office of Attorney General,X3200\nPhysician,Children,H1110\nSVP BUSINESS DEV.,\"DARDEN, INC\",Y4000\nEXECUTIVE,WOLVERINE BRASS,Y4000\nChief Executive Officer,Comanche County Memorial Hospital,H2100\nPAIZ PROPERTIES,SELF-EMPLOYED,F4000\nLawyer,Andrews Kurth LLP,K1000\nMICROTECH-TEL INC,,Y4000\nWISENBERG INS,,J5100\nSTOCKBROKER,BEAR STEARNS & CO.,J5100\nALADDIN HOTEL,,G6500\nART DEALER,,J7300\nInvestment Manager,\"Peninsula Capital Partners, LLC\",F0000\nAttorney,Orrick and Associates,K1000\nSOUTHWEST LIME CO.,,Y4000\nVoca,Acdi,Y4000\nPRESID,LEWIS HEALTH CARE FACILITIES,Y4000\nV.P. Govt Affairs,New York Stock Exchange,F2400\nAttorney,Wilson Elser,K1000\nNICHOLS DISTRIBUTING CO,,G2850\nCHAIRMAN OF,\"YOUNG'S MARKET COMPANY\",G2850\nPR,LAWCORPS LEGAL STAFFING SERVICES,G5250\nDirector of Community Outreach,Kara,Y4000\nMANAGER,BUCKEYE INVESTMENTS,Y4000\nPRESIDENT,BARTON & ASSOCIATES INC.,F3300\nToxicologist,\"Franklin County Coroner's Offi\",J1200\n\"SMITH, BARNEY, HARRIS & CO INC\",,F2100\nCASE WESTERN RESERVE UNIVERSITY,,H5100\nLUTHER KING CAPITAL,,F2600\nSVP Real Estate,MACERICH,F4000\nPresident/CEO,Merit Homes Inc,B2000\nBURNS-KULL AUTOMOTIVE GR./OWNER/OPE,,T2000\nSTUART & LAMP LUMBER CO. INC.,,B5200\nORTHOPAEDIC SURGEON,\"DAVID DINES, MD, PC\",H1130\nPHC Group,,Y4000\nMAY MEDICAL,,H0000\nAttorney,\"Schoeman, Updike and kaufman\",K1000\nReal Estate,\"Costar Group, Inc.\",C5140\nAttorney,Law Offices of Lynn Hubbard III,K1000\n\"JAMIESSON, GUTERREZ\",,Y4000\nUNION REPRESENTATIVE,IBEW LOCAL UNION 278,LC150\n\"CARR, SWALES, HUFFINE & CROUCH\",,K1000\nDIRECTOR,FAMILY VIOLENCE PREVENTION FUND,J9000\nMASS BANKERS,,F1100\nPRESIDE,ALL STATE DISTRIBUTING INC.,G2850\nMANAGING DIRECTOR,UBS PAINE WEBBER,F2100\nEXECUTIVE,INTREPID CAPITAL,Y4000\nCOMMUNITY,,Y1000\nR J DAVEY & CO INC,,Y4000\nLawyer,NBC Universal,C2300\nCOMPUTER AGENT,,J5100\nPresident,Diagnostic Imaging Solutions LLC,Y4000\nMARAZUL CHARATERS INC,,Y4000\nPROJECT ASSISTANT,\"FAST TRACK SPECIALTIES, INC.\",B0500\nPhysician,Green Bay Anesthesia Associa,H1130\nAB INITIO SOFTWARE CORPORATION,,C5120\nEmployer B,Cochery & Jones Benefits,Y4000\nASSISTANT PROSECUT,LAFAYETTE COUNTY,X3000\nAudiological Researc,Fnd for Hearing Aid Research,Y4000\n\"Patrick V. Gough Co., Inc.\",Business Owner,J1200\nTRAVEL AGENT,PARAMOUNT TRAVEL,T9400\nATTORNEY,U.S. SMALL BUSINESS ADMINISTRATION,X3000\nSPECIAL ASST. TO THE GENERAL PRESIDENT,IUPAT,LB100\nPresident and Founder,\"Sales Mentoring Solutions, LLC\",Y4000\nFAWELL FAWELL & KAVVADIAS,,K1000\nSupervisor,General Motors,T2100\nADMINI,NEBRASKA WELL DRILLERS ASSOC,E2000\nPresident,The Afikim Foundation,J1200\nPresident,Leonard Tire,Y4000\nREALTOR,BINNING REALTOR,F4200\nReal Estate,MMA Financial,F4000\nAgriculture,Self -Employed,A3000\nOwner,Metro Realitors,F4200\nEXEC.,DEUTSCHE BANK,F1100\nWORLD MANAGEMENT INC,,Y4000\nGrapic Design,Sandstorm Design,G5240\nCPA (INACTIVE),PMT,Y4000\nChairman,CBC Foundation,Y4000\nCONSTRUCTION,PRO CON CONSTRUCTION,B1500\nPRESIDENT/CEO,SAN ANTONIO COMMUNITY HOSPITAL,H2100\nPresident,Bristol Asphalt,B5100\nAttorney,\"Romain, Kuck & Egerer PC\",J1200\nExecutive,RHODIANA CORP,Y4000\nOWNER,\"YANNI'S MEDITERRANEAN BAR & GR\",Y4000\nAttorney,S.W.B.,Y4000\nPRESIDENT,WULFE & COMPANY,F4200\nChruch Administrator,Highland  Park Baptist Church,X7000\nSHAW & ASSOCIATES,,F5100\nPROGRAM OPERAT,SOUTHERN NH SERVICES,Y4000\nDEVELOPER,\"MACO MANAGEMENT CO., INC\",Y4000\nChairman - Ski Resort,Jackson Hole Mountain Resort,G6100\nChairman,Lexington Mgt. Group,Y4000\nAttorney,\"Lewis, Slovak & Kovacich\",K1000\nYUCAIPA INC,,X4100\nStand-Up Comedian,Self employed,C2900\nPRESIDENT,AMS DISTRIBUTION,T2200\nLIBRARY CLERK,CITY OF SOUTH SAN FRANCISCO,J1200\n\"RUSKIN, MOSCOU, & FALTISCHEK\",,K1000\nSECURITY MANAGER,CITY CENTER SECURITY,G5290\nTRUCK DRIVER,,J6200\nLAW OFFICES OF ENRIQUE MORENO,,K1000\nOWNER,\"BOGEY'S DINER\",G2900\nAttorney,Stearns Weaver miller,K1000\n\"SLOAN'S SUPERMARKET\",,G2400\n,RECONSTRUCTIONIST RABBINICAL COLLE,H5100\nPALMOA,DEVELOPMENT DIRECTOR,G5200\nCeo,Cheney Energy Partners Llc,E1000\nPrincipal,The Fountain Group,Y4000\nGREENCOPE LLC/RETIRED / GOLF COURSE,,Y4000\nInvestments,Windsor,F2500\nDEARFIELD ASSOCIATES,,Y4000\nSHOWPLACE MOBILE HOMES INC,,F4400\nN/A/VOLUNTEER,,H1130\nLawyer,Morrow Kidman Tinker & Pence Pllc,K1000\nRealtor,William C. Jennings Company,F4200\nVP DERCO AEROSPACE,,D2000\nOwner,Greener World Landscape Maintenance,B3600\nPsychologist of Law,Self,H1110\nRegistered Nurse,West Penn Alleghent Health Sys,H2100\nMETHODIST HEALTHCARE-CENTRAL HOSP,,H2100\nAttorney,Ballard Spahr Andres & Ingersoll,K1000\n\"CHAIRMAN,\",FRONTIER OIL CORPORATION,E1160\nCEO,CEG WORLDWIDE LLC,Y4000\nALLIED FOAM CORP,,Y4000\nMY VIRTUAL CORP,,C5140\nGREY PLANT & MOOLY,,Y4000\nFIREARMS INSTRUCTOR,BATTLE SITE COMBAT & DEFENSIVE INSTITU,Y4000\nREZNICK FEDDER,,F5100\nPRESIDEN,INSURANCE SPECIALISTS INC.,F3100\nREAL ESTAT,\"MORGAN REAL ESTATE, INC.\",F4000\nDOCTOR,PARK NICOLLET CLINIC,H2000\nLawyer,Green & Seifter Attorneys Pllc,K1000\nGRUNVILLE GROUP,,J5100\nGEOPHYSICIST,BALLARD PETROLEUM,E1100\nPARTNER,\"WALTON COMMUNITIES, LLC.\",F4000\nMANUFACTURERS RESENE SUPPLY,,Y4000\nExecutive Director,\"Advocacy Services, Inc.\",Y4000\nMKTG,RCON,B1500\nEXECUTIVE DIRECTOR,PHILADELPHIA BAR FOUNDATION,Y4000\nCIVIL ENGINEER,CSW/STUBER-STROEH ENGINEERING/CIVIL,Y4000\ncustomer service,\"Skip's Marine Supply Inc\",Y4000\nBoard Member,Total Action Against Poverty,X4100\nRealtor,RE/MAX Professional Realty,F4200\nPSYCHIATRIST,BAYVIEW HUNTERS POINT,H3800\nOFFICE,RETIRED US ARMY DEFENSE DEPT,X1200\nPRESIDE,AMER. EDUCATIONAL INSTITUTE,H5200\nOBSTETRICIAN,BAKARE & ASSOCIATES,Y4000\nWINE MAKER,DELIA VIADER,Y4000\nATTORNEY & AUTOMOBIL,LINUS CADILLAC,F7000\nMD,\"AMERICAN ANESTHESIOLOGY, INC\",H1130\nRISK SYSTEMS,,Y4000\nFULLERTON CIVIC LIGHT OPERA,,C2900\nSELF EMPLOYED,EIINC,Y4000\nPolitical Consultant,\"Self/Grassroots.com, Inc.\",C5140\nATTORNEY,WILLIAMS KHERKER LAW FIRM,K1000\nDeveloper,Deluca Homes,B2000\nFOSHEE & TURNER,,Y4000\nPRESIDENT,EARTH POLICY INSTITUTE,JE300\nBOND TRADER,SELF EMPLOYED,F2100\nSIMPSON INDUSTRIES INC,,T2200\nMgr.,Schoen Equipment,Y4000\nBEDFORD AMBULATORY SURG CENTER,,H1130\nPODIATRIC PHYSICIAN,LAKESHORE FOOT & ANKLE CENTERS,H1130\nPRESIDE,FIESTA FORD LINCOLN MERCURY,T2300\nCHAIRMAN OF THE BOARD,ALBEMARLE CORPORATION,M1000\nNYS BOARD OF REGENTS,,Y4000\nEMBREY PARTNERS LTD.,,F4100\nINFO REQUESTED,COYOTE CHARTERS INC,Y4000\nCEO,WATERSTONE CAPITAL MANAGEMENT,F2100\nVOLUNTEER,NOT - EMPLOYED,Y1000\nST KEVORK ARMENIAN CHURCH,,X7000\nUS DEPT. OF LABOR,JUDGE,X3200\nLEAD TECH,NEWFIELD MID-CONTINENT/LEAD TECH,E1120\nFINNEGAN HENDERSON FABAROW & DUNNER,,Y4000\nLawyer,Oscar Rodriguez LLP,Y4000\nEducator,Staunton City Schools,X3500\nnon profit,Alex Fund,Y4000\nBLACKSTONE BANK,,F1100\nRETAIL,\"THE WAY WE WORE, INC.\",Y4000\nHUMAN RESOURCES RECO,U. S. DEPARTMENT OF HOMELAND SECURITY,X3000\nOWNER,HOBBS WELDINGS SUPPLY,Y4000\nREAL ESTATE BROKER,TIOGA REALTY INC,F4200\nPRIN,WINDSHIP PARK ASSET MANAGEMENT,Y4000\nInformation Requeste,Reenyon Saltzman & Einhorn,Y4000\nRETIRED PROFESSOR,MIT,H5100\nTHE FADED ROSE,,Y4000\nINVESTMENTS,SAGEWORTH TRUST COMPANY,Y4000\nPEPSI COLA BOTTLING CO OF BROOKFIEL,,G2700\nATTORNEY,MCMATH VEHIK,J1200\nDirector,Self-Employed,F4000\nBUSINESS OWNER,GIFT NOVELTY & SOUVENIR SHOP,J1100\nCPA,\"F.J. Basile CPA's, P.C.\",F5100\nINTER,INFORMATION COORDINATION CTR.,Y4000\nARCHITECT,SCARANO & ASSOCIATES,B4200\nEducator,Beirut American University,H5100\n\"CHARLIE CO., LLC\",,Y4000\nOwner,\"Bert's Steelhead Marina\",Y4000\nEMERGI-CARE CLINIC,,H1100\nNEWPORT HEALTH,,Y4000\nKCI AVIATION,,T1000\nVOLUNTEER,CITY OF PHILADELPHIA,X3000\nPHYSICIAN,CLEVLAND CLINIC,H1130\nRare Bookseller,Self employed,Y4000\nExecutive,Bellco Health,H4400\nCERTIFIED,ROYELL MANUFACTURING INC.,Y4000\n\"FOLEY, MCLANE, NEABORN, FOLEY ET AL\",,K1100\nAUTO SALES & SERVICE,PRINCETON NASSAU CAVALIER FORD,T2300\nLoan Officer,Fidelity Mortgage Services,F4200\nPresident,Institute For Home Ownership,Y4000\nSALES,EONS,Y4000\nfinance,Outpoint Capital,F0000\nSalesman,\"Dick's Carpet One Floor & Home\",Z9500\nBUSINESS OWNER,ASHLAND BRAIN HARMONY,Y4000\nTelecommunications Management,\"Mtpcs, LLC\",Y4000\nKIDDER-STACY,,Y4000\nDEPAUL UNIV,,Z9100\nENGINEER,BLACK CONSULTING INC,Y4000\nVice-president,U S Medical Management,H0000\nINFORMATION TECHNOLO,EAGLE INVESTMENT SYSTEMS,Y4000\nHANES CONVERTING CO,,Y4000\nOFFICE MANAGER,LAND ELEMENTS,Y4000\nSARR FOUNDATION,,Y4000\nAUSTON VENTURES,,Y4000\nBOLAND NEON CO,,Y4000\nAnalyst,BCBS FL,J1200\nDEWITT PORTER INC,,Y4000\nCEO,MOBIUS PARTNERS,Y4000\nRESEARCH ASSOCIATE PROFESSOR,TUFTS UNIVERSITY,H5100\nManagement,Gannett,Y4000\nBanker,FNB South Florida,F1100\nCEO,College Loan Corp,F1410\nC. F. O.,E. T. M. C. Regional Healthcare System,Y4000\nMOMENTUM PARTNERS,,Y4000\nPHYSICIAN,\"ST. LUKE'S HOSIPITAL\",J7400\nC.I.O.,SILVER CREEK CAPITAL/C.I.O.,Y4000\nCnotractor,Self employed,Y4000\nPRESIDENT,ARTHUR FISH & CHIPS,Y4000\nChairperson/CEO,General electric,M2300\nDirector,\"Young People's Theater\",C2700\nTEMPLE-INLAND FINANCIAL SVCS,,M7000\nREAL ESTATE,ONEX,Y4000\nTHE SPORT ZONE,,Y4000\nCOCA-COLA BOTTLING CO OF J C,,G2700\nInsurance Sales,Sel-George J. Weiner Associates,Y4000\nCo-Owner,Mulberry Co.,Y4000\nDIVCO WEST GROUP,,Y4000\nCERTAIN SOFTWARE INC,,C5120\nALEX ABOUSSIE REAL ESTATE,,F4000\nDean/Professor,UT Health Science Center,H0000\nDWELLE W A INC.,,Y4000\nCOMPUTER PROGRAMMER,AXA TECHNOLOGY SERVICES,Y4000\nCERTIFIED PUBLIC ACC,NONE,F5100\nManager,The Steel Yard,Y4000\nTREASURER,FAMILY PAC,J1100\nPUBLIC INTEREST LAWYER,PUBLIC JUSTICE,Y4000\nBETHESDA CO.,,Y4000\nCHANCELLOR,\"ST GEORGE'S UNIVERSITY\",J2100\nEXECUTIVE DIRECTOR,PAC,G0000\nCONSULTANT,S.S.T. CONSULTANTS,Y4000\nMILEY AND COMPANY,,Y4000\nDEVELOPER,THE SECULA GROUP,F5000\nAttorney,Weiner Lesniak LLP,K1000\nHUMAN RESOURCES,LIBRARY OF CONGRESS,X4200\nSENIOR VICE PRESIDENT,OPPENHEIMER & CO.,F2100\nCOMMUNITY,BALKAN AMERICAN COMM. CTR,Y4000\nPilot,General Aviation Manufactures,T1200\nPARTNER,LAW OFFICES OF THOMAS BOOTH LL,K1000\nREAL ESTATE DEVELOPER,\"FRIST CETRUM, LLC\",Y4000\nPresident,Millard Fillmore,Y4000\nINVESTMENT BANKER,MORGAN STANLEY & CO,F2300\nOWNER/CEO,DECRON PROPERTIES,F4000\nHighway Contractor,Russell & Sons Contracting Company,Y4000\nCONSULTANT,TDP MANAGEMENT,H4100\nSoccer Coach,Toledo Celtics Soccer,J1200\nEntertainment,\"Mujo, inc\",Y4000\nGOLDBERG KOHN BELL BLACK ROSENBLOOM,,K1000\nOWNER,ADCHEM INC,M1000\n\"UNITED BRANDS INT'L\",,G3000\nMANAGING PA,BEETLE CAPITAL PARTNERS,F0000\nATTORNEY,\"MCMAHON, SUROVIK, SUTTLE, PC\",Y4000\nPRESIDENT,HERITAGE VISION PLANS,H1120\ncounsel,All New York Title Agency,F4300\nTRANS FISHERIES INC,,E4100\nCO CHAIRMAN GRANITE,,J7400\nTEACHER,MONROVIA UNIFIED,Z9500\nASSOC. FOR ORAL MAXILLO & IMPLANT S,,H1400\nBRANCH MANAGER,INDEPENDENT BANK,H5100\nPROFESSOR,UNIVERSITY OF MA,J7400\nART SALES/INDEPENDEN,\"NEEL ARTS, INC.\",Y4000\nConstruction Worker,Central Valley Volunteer Search & Resc,Y4000\nPURCHASING,TENTINA WINDOW FASHIONS,M3100\nAttorney,\"Akin, Gump, Struoss\",K2000\nPresident,JB Electrical Co.,B0500\nCEO,The Maguire Group,B4200\nSr. Exec. VP,AdvaMed,H4100\nATTORNEY,COGENTRIX ENERGY LLC/ATTORNEY,E1000\nPhysician,Walla Walla Clinic,Y4000\nSTEEL DISTRIBUTOR,KARAY METALS INC.,Y4000\nSALES MANAGER,OPENWAVE INC,J1100\nOPHTHALMOLOGIST,IDAHO EYE CENTER,Y4000\nTECHNOLOGY RESEARCH AND DEVELOPMENT,EDUCATIONAL TESTING SERVICE,H5000\nAttorney,MacAfee and Taft,K1000\nPHYSICIAN,JMAST.,H1100\nAttorney,\"Brown, Frost\",Y4000\nPEDIATRIC DENTIST,RILEY HOSPITAL FOR CHILDREN,H1400\nBANKER,THE TRUST COMPANY,Y4000\nPHEASANT RANCHER,NICK JONES,Y4000\nFINANCIAL ANALYST,US DEPT. OF HHS,X3000\nCEO,COMPRESULTS,Y4000\nEXECUTIVE VICE PRESIDENT,\"REGENT PROPERTIES, LLC\",F4000\nADDISON-WESLEY PUBLISHING COMPANY,,C1100\ngovt relations,\"Williams & Jensen, PLLC\",K2000\nBH&B,,Y4000\nC E O,Eagle Crest Inc.,Y4000\nPAUL J DEMARCO CO INC,,Y4000\nExecutive,Sam Saad Associates,Y4000\nCAPITAL CITY ASSOCIATES INC,,G5200\nPresident/CEO,Farm Credit of Southwest Kansas,A4000\nCARDEN COMPANY INC,,B1000\nCPA,HAMILTON SCHMOYER & CO. P.C.,Y4000\nCeo,Dunn Air Business Jet Completion Cente,Y4000\nArchitect,Self - Robinson,B4200\nPRESIDENT,CARDIO VASCULAR,H4300\nVP,Hensel Phillips,B1500\nFINANCE DIRECTOR,GERMANTOWN ACADEMY,Y4000\nPeter Island Resort,,J1100\nNYMEX,,Y4000\nBIOLOGIST,AMGEN,H4300\nCONSORTIUM OF SOCIAL SERVICE ASSOC,,J9000\nPartner,Kenyon & Kenyon LLP,K1000\nOPS MGR,BP,J1100\nATTORNEY,CADDELL & CHAPMAN,K1000\nPERIDOT ENTERPRISES INC.,,H2200\nPRESIDENT,\"OTTATI FOODS, LTD.\",Y4000\nB&D NUTRITIONAL INGREDIENTS INC,,H4600\nC.E.O.,Bebaas,Y4000\nVANTCON INC,,B3400\nEXECUTIVE,NATIONAL CHOICE BAKERY,G2100\nEXECUTIVE CONS.,SELF-EMPLOYED,G0000\nBoston Public Schools,,J1200\nADMINISTRATOR,DURBIN ASSOCIATES/ADMINISTRATOR,Y4000\nACADEMIC,SCHOOL OF VISUAL ARTS,Z9500\nTHE METHODIST HOSP,,H2100\nDirector of Communic,Margarite Casey Foundation,Y4000\nCONSULTANT,HAYNES CONSULTING,Y4000\nSR. VP,MOREHOUSE SCHOOL OF MEDICINE,H5150\nExecutive Director,LULAC Project Amistad,Y4000\nPRESIDENT,UNITED CARIBBEAN LINES,Y4000\nCongresswoman,U.S. House of Representatives,J5100\nPresident,\"W.O.W. Distributing Co., Inc.\",G2850\nGENERAL MANAGER,AXIOM LEGAL,K1000\nNALLY & HAMILTON ENTERPRISES,,Y4000\nBETAR COUNTY,,X3000\nCONSULTANT,BIOSTRATEGIES,Y4000\nPRESIDENT,OIL STATION INC,Y4000\nFOUNDATION MGMNT SERVICE,,H3100\nExecutive VP,La Branche & Co,F2100\nMANUFACTURING CONSULTANTS,,Y4000\nOwner,Beckett Ranch,A3000\nEXECUTIVE,A-P-A TRANSPORT CORP.,T0000\nMASEFIELD,,Y4000\nBOOKKEEPER,S/G ELCTRONICS INC,Y4000\n\"OGREN, JUAREZ & GIVAS\",,J7500\nSALLIE HORSE VANS INC,,A3300\nMedical Manager,IMPC,Y4000\nBUSINESS OWNER,NORTH RIVER ABSTRACT,F4300\nPRESIDENT,MUSEUM OF SCIENCE & TECHNOLGY,X4200\nFinancial Consultant,Wachovia Securities,F2100\nOWNER,BREWED AWAKENINGS INC.,Y4000\nVICE PRESIDENT,SHEET METAL WORKERS LOCAL 20,LB100\nNESHAMINY CONSTRUCTIONS INC,,B1500\nOwner,Findlay Blasting,Y4000\nHOUSTON ARMATURE WORKS,,M2300\nProfessor,Colby,Y4000\nDoctor,NMHC,H1110\nSales,Healthline Networks,Y4000\nIndependent Director,Monitor Clipper Partners,F2100\nRN/Psychotherapist,Self employed,H1110\nInsurance Agent,Annette Willis Ins Agency Inc,F3100\nATTORNEY,JONES JONES CURRY & ROTH,Y4000\nElectrician,Aei Electrical Const,B3200\nOil and Gas Executiv,Tellus Energy Group,E1000\nAttorney,\"College Connections, Inc\",Y4000\nPresident,CA Eckstein Inc,B3000\nCONSULTANT,TECHNIGRAPHICS,C1300\nRETIRED CORPORATE FINANCE OFFICER,N/A,X1200\nCONSULTANT,THE GLOVER PARK GROUP,J9000\nPRESIDENT DISTRIBUTION,FOX NETWORKS,C2300\nExecutive,McAndrews & Forbes,M3300\nINSURANCE ASSOCIATES OF T,,F3100\nPARKER DURYEE ROSOFF & HAFT,,Y4000\nSWEET LAKE LAND OIL,,E1120\nMAACO AUTO PTG & BODYWORKS,,T2400\nOWNER,TAFT ENERGY,E1000\nPHYSICIAN   OPHTHALMOLOGY,SELF,H1120\nPROFESSOR,MONTGOMERY COUNTY COMMUNITY COLLEGE,Z9500\nExecutive VP,Capitol Federal Savinvs,F1200\nAMERICAN RESOURCES,,Y4000\nConsultant,MNP Partners,Y4000\nSELF-EMPLOYED,BIG T PIZZA OF NORTHERN VIRGINIA INC,G2900\nVP IT BUSI,FORTIS INSURANCE COMPANY,F3100\nMaintenance Analyst,Harley Davidson Motor Company,T8100\nFINANCIAL ADVI,GUCKENHEIMER AND CO.,Y4000\nReal Estate Agent,Henry Schwaller & Associates,F4000\nKIM C. ANDERSON AND CO. INC.,,G5270\nConsultant,Microsoft,Z9500\nColumbia University (on Partial Lea,,H5170\nREALTOR,EXIT REALTY,F4200\nBUSINESS MAN,VALLEY COM TAIMCIA INC,Y4000\nSALESMAN,ESSIX TECHNOLOGY GROUP,Y4000\nSENIOR FELLOW,CALIBER ASSOC.,Y4000\nPresident,HB Drollinger,F4000\nEA,\"TAX DOCTOR, INC.\",F5300\nRETIRED,PA STATE SENATE,Z9500\nowner,Fayetteville Athletic Club,G5800\nEXECUTIVE,TEVA,Z9500\nCEO,CARDEAS PHARMA,Y4000\nVICE PRESIDENT OF SALES,LEECO STEEL LLC,E1500\nDental Hygenist,David Cunningham DDS,H1400\nCEO,CENTRAL CRUDE,Y4000\nLAWARD TELEPHONE,,E4200\nBUSINESS PERSON,PIZZA HUT OF SAN ANTONIO,G2900\nCORP. SECRETAR,COOPER KENWORTH INC.,Y4000\nRetired,Elem Teacher,J7120\nVice President (Vp9,WAL-Mart Stores Inc,G4300\nPR,VALLEY BANK NATIONAL ASSOCIATION,F1100\nPOTTER FINANCIAL GROUP,,F0000\nRICHARD BAUER & CO,,Y4000\nAttorney,\"Winburn, Jenkins & Wheat\",K1000\nSVP FINANCIAL/INVESTMENTS,U.S. BANK,F1100\nMISCHER CORPORATION,,F4100\nREALTY,SELF,F4500\nUrologist,Sound Shore Urology Group PC,H1130\n\"RALPH S O'CONNOR & ASSOC\",,F2100\nSenior Vice Presiden,Florida Crystals Corportation,Z9500\nPHYSICIA,\"PAKOTA VALLEY PODIATRY, PC\",Y4000\nPAUL ELECTRIC INC,,B0000\nMADEIRA SCHOOL,,X3500\nCHIEF OF STAFF/GOVERNOR,STATE OF ALASKA,X3000\nMANAGER,BRANDYWINE FUND,F2100\nReal Estate Broker,Havasu Realty,F4200\n\"AUTHOR, PROFESSOR\",UNLV,Y4000\nPRESIDENT,WOODS FUND OF CHICAGO,Y4000\nATTORNEY,CURTIS MALLET-PREVOST COLT & MOSLE/,K1000\nPRESIDENT,DEPENDABLE DESIGNS INC.,Y4000\nGROUP SALES AGENT,ROYAL CARIBBEAN LTD.,Y4000\nHOT LIPS PIZZA,,G2900\nPresident,Truckers U.s.a. Ent. Inc.,Y4000\nOwner,\"Arizona Sandwich Shops,inc\",Y4000\nMANAGER,COMERCIO Y EXPORTACION,Y4000\nCONGRESS,RETIRED,X1200\nPRESIDENT,T.C. JACOBY & CO.,A2000\nATTORNEY,HARDIN & PARKES PLLC,Y4000\nAttorney,\"Menke & Associates, Inc\",G5200\nART DEALER,,J9000\nCEO,FONTHEIM,K2000\nRENOUN INTERPRIZE,,Y4000\nINVESTMENT,MONROE SECURITIES,F2100\nPROGRAM DIRECTOR,\"EVELYN AND WALTER HAAS, JR. FUND\",Y4000\nCPA,AMERICAN FIBERTECH CORP,Y4000\nVP FOR,NATL ASSN. OF CHILDRENS HOSP,H2100\nPRESIDENT AND COO,GRIFFON CORPORATION,M3100\nMICHAEL DOUGLAS,,Y4000\nConsultant,Veranda Publications,C1100\nSales,Express Seed,Y4000\nORTH,AZ ORTHO AND FRACTURE SURGEONS,H1130\n\"Gov't Affairs Adviso\",Adams and Reese,K1000\nLAWYER,GREENE & ALLISON/LAWYER,K1000\nEconomic Consultant,Nera,Y4000\nLOCAL 347,,LG300\nFARMER,BUILDER,B1500\nAttorney,\"Reba Management, Inc.\",Y4000\nOwner,Thrift Bros. Construction,B1500\nChief Executive Officer,\"Internet Product Development Group, in\",C5140\nMARKETING,INTERLOGISTICS LLC,Y4000\nTIMMER CHEVROLET GEO INC,,T2300\nC.E.O.,GREAT CLIPS INC.,G5100\nInformation Requeste,Fuller Theological Seminary,X7000\nEXECUTIVE,QUICKSET INTERNATIONAL,M9000\nALLIED ELECTRICAL INC,,B3200\nAttourney,Mintz Levin,K1200\nSTATE UNIVERSITY OF NEW YORK- BUFFA,,H5100\nHouse wife,None,X1200\nEXECUTIVE,SULLIVAN ST CONSULTING,Y4000\nDESIGN,PO & O,Y4000\nTHRIFTWAY INC,,T1400\nCOWLES RINLADI JUDKINS ETC,,Y4000\nUC-SF-MED CENTER,,J7400\nBRIGHTON HONDA,,T2310\n\"DION, MELVIN\",,K1000\nCITY,CITY AND COUNTY OF BROOMFIELD,X3000\nDevelopment,University of Pennsylvania,J7300\nEducation,Oceanside School District,X3500\n\"BRAFF, ERTAG, WORTMAN ET AL\",,K1000\nWILLOWAY NURSERIES,,A8000\nHEDRICK-LANDRUM NISSAN-SUBARU,,T2310\nEducation Programs,Conservancy Of SW FL,Y4000\nPresident & Ceo,Do It Best Corp,G4500\nBANKER,BROWN ADVISORY INC,F2100\nTECHNICAL ANALYST,SCIENTIST,X0000\nSCIENTIST,NATIONAL RADIO ASTRO,Y4000\nWeb Developer,Clipmarks LLC,Y4000\nLIN BROADCASTING CORPORATION,,C2100\nBURGET AND ASSOCIATES,,Y4000\nPresident,McPherson Oil Co,E1100\nLINDEN-MANNING LTD,,Y4000\nAnalyst,U S Dept Of Defense,X5000\nEducator - President,Punahou School,H5100\nLOS GATOS SARATOGA,,Y4000\nRegional President,M&I Marshall & Ilsley Bank,F1100\nPRESIDENT,ROYAL OLDSMOBILE JEEP,T2300\nDIRECTOR OF ENGINEER,CANONICAL,Y4000\nCONTRACTOR,THE LOMBARD COMPANY,B1500\nEXECUTIVE,FIRST ALBANY,F2100\nRG ANDERSON COMPANY,,Y4000\n\"ABRAHAMS, LOEWENSTEIN & BUSHMAN, P.\",,Y4000\nTOP FINANCIAL EXEC -- GROUP ($2.5B-,HONEYWELL INTERNATIONAL,M2300\nPolicy And Public Affair,Rising Tide Internationa,Y4000\nConsultant,Hoht & Associates,K2000\nMARKETING RESEARCH CONSULTANT,\"REALITYCHECK CONSULTING NETWORK, LLC\",Y4000\nKA CONCULTING INC,,Y4000\nMortgage Broker,Revere Mortgage,Z9500\nSOIL AND GROUNDWATER INVESTIGATIONS PR,\"CAPARS, LLC\",Y4000\nFILMMAKER,SELF,J1200\nblogger,CrooksandLiars.com,Z9500\nPRESIDENT,PLAZA PROPERTIES INC.,F4000\nAGRI-DATA RESOURCES,,A4000\nSales and Marketing,Ritter Nutrition,J7300\nVice President Sales,Wyeth Consumer Health,H4300\nCO-CHAIRMAN,SILIGAN HOLDINGS,Y4000\nDWF WHOLESALE FLORIST,,A8000\nEV,THEATRE ASSOCIATES OF STILLWATER,C2700\nCRNA,PLANTATION GENERAL HOSPITAL,H1710\nSAN DIEGO COUNTY CHAPTER NECA,,B3200\nC.F.O.,\"UCA GROUP, INC.\",M5000\nAttorney/Rancher,Jackson Walker LLP,K1000\nPresident,Builders Auction Company,J1200\nDean/Acting Provost,Alfred University,H5100\nINFO REQUESTED,SELF,B2000\nPhysician,\"Dermatology Clinic, PA\",J7150\nA,CT UNITED FOR RESEARCH EXCELLENCE,Y4000\nTURNER VISION INC,,Y4000\nRVP,\"CORINTHIAN COLLEGES, INC.\",H5300\nDesigner,WA Design/Self-Employed,Y4000\n\"DIRECTOR, ECONOMIC DEVELOPMENT\",MONTGOMERY COUNTY,Z9500\nSales Manager,WILLIAM BLAIR & COMPANY,F2300\nEXECUTIVE,\"POWER-COPPER, LLC/EXECUTIVE\",Y4000\nCOMPUTE,WASHINGTON STATE UNIVERSITY,H5100\nNORTHEAST ASFAULT INC,,Y4000\nAcctg Mgr,Horizon Data Corp,Y4000\nCEO,GB Tech,Y4000\nPresident,\"Griffin, Johnson & Dove\",K2000\nESTIMATOR,GOOLD ELECTRIC,B3200\nGRAY & MOORE LLP,,K1000\nREALTOR,ARIS ANAGNOS,F4200\nANDERMAN OIL COMPANIES,,E1150\nMarketing/Mgmt Consu,Self-Employed,G0000\nPHYSICIAN,PREMIER ONCOLOGY,H1130\nCFO,World Wildlife Fund,JE300\nMusician,Chicago symphony Orchestra,C2800\nOwner,Greenway Pontiac,T2300\nOwner,Seaton Van Lines,T3100\nEXECUTIVE DIRECTOR,M. I. OF P.,Y4000\nROBERT BENNETT & BLASCOE LLP,,F5100\n\"KIDD, WHITEHURST\",,K1000\ngovernment employee,city of Albuquerque,X3000\nPRESIDENT,HARBOR WAY PARTS INC.,G1200\nC.E.O.,JONES INTERNATIONAL LTD.,C2100\nMANAGING PARTNER,SPRADLEY BARR FORD,T2300\nInvestment Manager,\"Capital Advisors, Inc.\",F4000\nJRB OIL & GAS,,E1150\nPsychotherapist,Douglas Green,Y4000\nmd,retired,J1200\nPRESIDENT,PHILIP W. JOHNSTON ASSOCIATES,G5200\nPRESIDENT,PATRICIA D YATES INC,Y4000\nElectrical Engineer,NVIDIA,Y4000\nINVESTMENT BANKER,\"ALLEN & CO., LLC\",F2300\nSELF-EMPLOYED,JEANNE GILES,Y4000\nStonington Partners-,Investment Banker,F2300\nADMINISTRATOR,NC DOT,X3000\nSurgeon,St Joseph Mercy Hospital,H1130\nVice Preesident,Procter & Gamble,M3300\nCERTIFIED FINANCIAL PLANNER,LINCOLN FINANCIAL ADVISORS,F0000\nEXECUTIVE,FREEDMAN SEATING,T2200\nLANDLORD,SELF EMPLOYED,J1100\nSENIOR,SONY PICTURES ENTERTAINMENT,Y4000\nNY CITY NEALT HOSPITALS COR,,H2100\nLEE WARD TRAVEL,,Y4000\nExecutive,\"Red Hat, Inc.\",C5120\n3C RIVERSIDE PROPERTIES,,F4000\nIndustrial Consultant,Self_ Rowan Marketing,Y4000\nEQUIPMENT SALES,TEN BEARS EQUIPMENT CO INC,Y4000\nVP SALES & MARKETING,MILLER TRANSPORTERS INC,T0000\nYALHI INC,,M1000\nDIET CENTER,,H3200\nPresident & CEO,Saint Joseph Hospital Foundation,H2100\nEXECUTIVE - PURCHASING,GENERAL MOTORS CORPORATION,T2100\nTARGETED CREATIVE COMMUNICATIONS IN,,G5210\nNETWORK DIRECTOR,TURNER BROADCASTING,C2000\nSalesman,Lafayette Coal Company,E1210\nLINTAS CAMPBELL-EWALD,,G5210\nAttorney,\"Thurman, White & Andeson\",Y4000\nTWO STROKE INTERNATIONAL,,Y4000\n\"BLACK, MANEFURT STONE & KELLY\",,K2100\nWOODSON DANCE ACADEMY,,H5200\nBUSINESS,\"MARS, INCORPORATED\",G2200\nAttorney,Franczek Sullivan,K1000\nCEO,INFORMATION REQUESTED PER BEST EFFO,H4100\nProduct Technician,Occidental Petroleum,E1110\nORTHODONT,GERMAN BURKE ORTHODONTICS,H1400\nLawyer,\"DLA Piper US, LLP\",K1000\nManager,Ambassador Service Group,Y4000\nVICTORIA SECRET DIRECT,,G4100\nExecutive,State Farm,Z9500\nAPPRAISER,SELF EMPLOYER,F4700\nMARSHALL B BELDON JR TRUST,,Y4000\nManaging Director,Merrill Lynch Mutual Funds Marketing F,F2100\nAttorney,Selft Groen Stephens & Klinge,K1000\nConsultant,Shipley and Assoc,G5200\nJOHN DENVER REALTY,,J1100\nNEWSPAPER PUBLISHER,,X1200\nPresident/CEO,Colmer Construction,B2000\nSTORECAST,,Y4000\nPRIVATE EQUITY SERVICE,,Y4000\nABBEY-FOSTER,,H4100\nLAWYER,HOFFMAN & HOFFMAN,K1000\nAttorney,\"Kenneth J Allen & Associates, PC\",K1000\n\"STOCKMEN'S HOTEL\",,T9100\nCEO,The MWW Group,K2000\nTHE PELICAN GROUP,,Y4000\nMORTGAGE BANKER,ALLIED HOME MORTGAGE CAPITAL CORP.,F4600\nDANOSA CARIBBEAN,,Y4000\nSoftware Engineer,Verizon Inc,C4100\nMILLER BREWING CO,,G2810\nCERTIFIED PUBLIC ACC,\"CAWLEY, GILLESPIE & ASSOC.\",Y4000\nPhysician,MRIJCT Diagnostics,Y4000\nCOLLEGE INSTRUCTOR,CITY COLLEGE SAN FRAN,Y4000\nPRESIDENT,SUNBELT STUD WELDING INC.,Y4000\nFVB-SOUTHWEST,,F1100\nREAL ESTATE IN,WEGENER PROPERTY LLC,F4000\nATTORNEY,WEINSTEIN COUTURE PLLC,Z9500\nBest Effort,Plante & Moran,F5100\nCANAL INSURANCE CO,,F3100\nRADIOLOGIST,MCMINN MEDICAL IMAGING,Y4000\nLOCKHEED MARTIN ENERGY INC,,D4000\nPERRY-DERRICK,,Y4000\nFundraising & Strategic,Raybin Associates,Y4000\nAttorney,Deloitte Tax Llt,F5300\nMARINE ENVIRONMENTAL CONSULTAN,SELF,E2000\nHOSPITALITY CONSULTANT,BARNEY HOSPITALITY GROUP LLC,Y4000\nRetired,N/A,B3600\nWAYZATA MITSUBISHI,,T2300\nAOU CONSULTING,,Y4000\nATTORNEY,ADLER POLLOCK & SHEEHAN,K1000\nWEBB ENGINEERING,,B4400\nMD GLOBAL SALES,FLEX-TEK,D6000\nRETIRED CPA,RETIRED,X1200\nINVESTMENT SERVICES INT,,F5000\nSOFTWARE ENGINEER,EDO CORP,J1100\nB&B ACCOUNTING,,F5100\n\"THOMPSON, ROBINSON, TORABY\",,Y4000\nAttorney,Gordon Rosen et al,K1000\nOFC,AIC,LT300\nR G BAILEY,,M3200\nContractor,Wachter Network Services,Y4000\nMINDSIGHT FOUNDATION,,Z9500\nBANKER,CITIGROUP GLOBAL MARKETS INC./BANKE,F2100\neducator,California Pacific Medical Center,H2100\nKIRLIN FOUNDATION,,Y4000\nPRESIDENT,NOFFSINGER MANUFACTURING CO.,Y4000\nATTORNE,\"STORINO, RAMELLO AND DURKIN\",K1000\nOFFICE MANAGER,MOSS MCGEE BRADLEY & FOLEY,Y4000\nATTORNEY,FOX & FOX,K1000\nVOLUNTEER,ANN WILLIAMS,Y4000\nLAWRENCE TRUST CO,,F4300\nEXECUTIVE PRODUCER,GLENCOE JUNIOR HIGH,Y4000\nDoctor,Kidney Associates,Y4000\nOwner,Dufresne and Associates,Y4000\nSENIOR PROGRAM ANALYST,US DEPARTMENT OF THE INTERIOR,X3000\nVICE PRESIDENT & TREASURER,ALTRIA GROUP,A1300\nPUBLISHER,MCCORMACK COMPANY,C1100\nINFO REQUESTED,INFO REQUESTED,G2840\nChief Operations Officer,Qwest Communictions,C4000\nSenior Vice President,Warner Bros,J1200\nSANDERLING PROPERTIES,,Y4000\nOWNER,DOCK BOX SERVICES INC,Y4000\nAttorney,Peters Law Office,K1000\nCONSULTANT,BALY PROJECTS LLC,Y4000\nExecutive,Heritage Title Co,F4300\nEXECUTIVE,MURCHISON MANAGEMENT CORP,F0000\nDOG SERVICES,DIAMOND PET SERVICES,Y4000\nPOWER SYSTEM S,NATIONAL POWER CORP.,Y4000\nPRESIDENT,ADIVA TECHNOLOGY,Y4000\nCOO,DAYSTAR TECHNOLOGIES,E1500\nORTHOPAEDIC SURGEON,T JOSEPH DENNIE MD PA,H1130\nNE,HCNP,J7400\nROSENFELD & RAFIK,,Y4000\nVice Chairman,Anchor Stone Co.,B5100\nFinancial Analyst,\"Monness, Crespi & Hardt\",F2100\nCeo,The Laughner Group,Y4000\nMgmt,Haywood Builders Supply Co,Y4000\nEXECUTIVE,MIDWEST TAPE,Y4000\nGENERAL CONTRACTOR,SHC INC,Y4000\nVice President,\"Tenaska, Inc.\",E1630\nPR COUNSELOR,ZEPPOS & ASSOCIATES,G5210\nPRESIDENT,FALK HOLDING CORP.,Y4000\nINT MED GROUP,,H1130\nCOTHRAN PROPERTIES,,F4000\nChief Executive Officer,Cretex Companies,Y4000\nPARTNER,ELLIOT DELTA ORCHARDS/DAVID J. ELLIOT,A1400\nCRNA,\"FLORIDA GULF TO BAY ANESTHESIA, LLC\",H1710\nEDUCATION CONSULTAN,BEHIND THE BOOK,Y4000\nEDUCATION POLICY CONSULT.,SELF-EMPLOYED,G5200\nATTORNEY,HARRIS CORPORATION,Z9500\nCPA,\"CONNOLLY, GRADY AND CHA\",F1300\nPRESIDENT,TABUTA TUA,Y4000\nBookkeeper,NTS Marketing,G5210\ntradesman,Self employed,Y4000\nRESIDENT SENIOR VICE PRESIDENT,UTICA NATIONAL INSURANCE GROUP,F3100\nM S U TRUSTEE,\"FERGUSON DEVELOPMENT, L. L. C.\",Y4000\nCARFAM II ASSOC,,Y4000\nSound Engineer,Self Employed,B4400\nManager,Molex Inc.,C5000\nCIVIL SERVANT,UNITED STATES AIR FORCE,X5000\nCharity Exec,Resp Health Assoc,J1200\nManager,\"Tunnell Companies, LP\",Y4000\nCUSIAN SEVERA CONST,,B1500\nCORPORATE SALES DIR.,MEREDITH CORP.,C1100\nChairperson/CEO,Samson,F7000\nAdjunct Assistant Professor,New York University Liberal Studies PR,Y4000\nC T MAXTEN,,Y4000\nTRI EAST CORP,,F4500\nPhysician,Orthopedic Specialty Clinic,H1130\nSTEELCASE,,JE300\nINVESTOR,CONCEPT CAPITAL,F0000\nCHDNOW CONSTRUCTION CORP,,B2000\nREGIONAL PRESIDENT A,REGIONS BANK,F1100\nMANAGING DIRECTOR AND CEO,\"LYONS, BENENSON & COMPANY INC.\",Y4000\nMAJOR GLASS CO INC,,Y4000\nREAL ESTATE,BLACKFORD DEVELOPMENT,F4000\nORAL & MAXILLOFACIAL SURGEON,DR. EMILIO FERRARA INC.,H1400\nTHE CAPITAL GP COMPS,,F2100\nBIONETWORK INC,,Y4000\nKAUAI DISTRICT HEALTH OFFICER,DEPARTMENT OF HEALTH,X3000\nHealthcare Lobbyist,Wichita Home Health,H3100\nSENIOR VP,CENTRIC GROUP,G2000\nOYSTER FARMER,SELF-EMPLOYED,A1000\nCEO,CONSTELLATION ENERGY PARTNERS,E1620\nTUCKER ROCKY DIST,,Y4000\nNEW ORLEANS BATON ROUGE PILOTS ASSO,,T6200\nUNION CARSIDE CORPORATION,,Y4000\nPresident,Robert F Youngblood Construction Co,B1500\nIBEN LOCAL 215,,LC150\nPhysician,Babbitz Burstein & Nash SC,H1100\nEXECUTIVE,NATNAL TITLE INS OF NEW YORK,Y4000\nOWNER,ROGERS & DILLON DEMOLITION & EXCAVATIO,Z9500\nSelf Employed,Bryan Bell Co.,Y4000\nHIGHLAND INDUSTRIAL PARK,,Y4000\nMICRO TECH INSTRUMENTSINC./OWNER/SA,,Y4000\nSenior Project Manager,LJA Engineering & Surveying,B4300\nVice President,\"Sassafras Enterprises, Inc.\",Y4000\nATTORNEY,\"NOMURA SECURITIES INT'L.\",F2100\nExecutive,University of Missouri,H5100\nENGINEER,AWWUMOA,Y4000\nCANDELA GROUP/PRESIDENT/CEO,,G4100\nCEO,\"COLEY FARM SERVICES, INC.\",A1000\nMAINT. SUPV.,WNY BOARD OF ED.,X3500\nOperations Executive,Digital River,Y4000\nHospital Director,UCSF,H5100\nAttorney,American Antitrust Institute,X4000\nBusinessman,Tax Reducers Inc,J1200\nALFRED WEISSMAN REAL ESTATE COMPANY,,F4000\nBUSINESS OWNER,E & F SOILS TESTING,Y4000\nDirector of Sales an,Certis USA,A4100\n\"DIR., PLANNING & S\",SABRELINER CORP.,T1300\nREAL ESTATE BROKER,CONVERSE COUNTY REALTORS,F4200\nOffice Manager and Legal Services,Law Offices of John Lyndon,K1000\nSenior VP and Senior,\"Omega Bank, N.A.\",Y4000\nALL TOOLS SALES INC,,M5100\nAXIOM INTERNATIONAL INVESTORS L.L.C,,F2500\ncomputer programmer,tmc inc,Y4000\nVENTURE CAPITALI,SILVERTON PARTNERS,F2500\nLORDEN DISTRIBUTING COMPANY,,G2850\nALMO SOUNDS,,C2600\nSoftware Engineer,Aquantive Inc.,G5210\nCORPORATE/BUSINESS P,\"WILSON GLEOTBATCH TECHNOLOGIES, INC.\",Y4000\nWERNER LIPFERT BURNHARD,,K1000\nLobbyist,DLA Piper,K2000\nMILL RIDGE FARM LTD,,Y4000\nAttorney,Marco Consulting Group,F2100\nCOMPLIANCE,ABCWUA,Y4000\nATTORNEY,HOMER AND PHILLIPS,K1000\nINTERNATIONAL ASSOC OF FIRE FIGHTER,,L1400\nManager,Bruce Clarke Inc,Y4000\nOwner,Realtynet Mary Mc Bride,F4200\nPartner,D E Shaw,F2700\nPresident,Northwest Missouri Industries Inc,J1200\ncranberry grower/pac,Decas Cranberry Sales Co.,J1100\ncosmotologist,Self Employed,G5100\nOWNER,STONE CITY KITCHEN & BATH,Y4000\nDirector Environment,EarthMark Comapnies,F4100\nBIRCHMAN MOSE ET AL,,Y4000\nFarmer,Wlson Farms,G2820\nIT COMPLIANCE,AMERIPRISE FINANCIAL,F2100\nBIMEX CORP,,Y4000\nMARKETING,TROA,Y4000\nLIT SUPPORT MANNAGER,AKIN GUMP,K1000\nTV PRODUCTION MANAGER,,C2100\nSelf; Thomas A Hayes A Attorney,Information Requested,K1000\nNon-profit development,Self employed,J1200\nSECU,HEATH CARE SERVICE CORPORATION,F3200\nAttorney,Morrow &amp; Salisbury,K1000\nVice President Engineering,Westinghouse,Y4000\nRestaurateur,\"Benedict's Restaurant D, N, & N Enterp\",G2900\nSOFTWARE ENGINEER,SELF,Z9500\nFilm,Mark Borman,J1200\nREAL EST,CENTURY 21 ALLIANCE REALTY,F4200\nMUSIC VENDORS INC,,G4850\nPresident,John T. Cyr & Sons Inc./Cyr Northstar,T4100\nPresident,IHOP,G2900\nTRIPLE SON FARMS,,A1000\nOWNER,HOBBY HORSE ANTIQUES,Y4000\nLAWYER,MCDOWALL LAW P.C.,K1000\nVICE PRESIDENT,IRI INTERNATIONAL,E1150\nCONTEMPORARY CHRYSLER DODGE,,T2300\nFLEXIBILITY TRAINER,SELF EMPLOYED,Y4000\nSOFTWARE ENGINEER,NION CO.,Y4000\nMORGAN BANKER,,F1100\nResident,Prothetic and Orthotics Assoc,Y4000\nGURVICH DETECTIVE AG,SELF-EMPLOYED,X1200\nMENTAL HEALTH CONSULTANT,L.A. COUNTY,X3000\nPRESIDENT,TRAMCO SERVICES INC.,Y4000\nCORPORATE OPERATIONS/RISK MANAGEMENT,\"TEDESCHI FOOD SHOPS, INC.\",G4300\nPastry Consultant,Self employed,G2900\nOWNER,WRIGHT & FILLIPPIS,H4100\nCFO,Amboy Bus Co Inc,Y4000\nFRIENDS OF SEN CARL LE,,J1200\nINVESTOR,ROSEWOOD CORP.,T9100\nNETWORK TECHNICIAN,SCRIPPS NETWORKS INTERACTIVE,C5120\nRetired- President,KMIR- TV,C2100\nManager,Rivers Rafting,Y4000\nAttorney,Nelson and Smith LLP,K1000\n33 Maiden Lane,IBM,C5100\nCARDIOVASCULAR SURGE,CENTRAHEALTH,H1130\nINFO REQUESTED,PINE BREEZE FARMS INC,A1000\nRETIRED,FRANK Z. CHEVROLET,X1200\nOWNER OHD CO OF MANKATO,GARY WATTS,Y4000\nPublisher,Lovington Leader,Y4000\nManager,Fixture Hardware Co,Y4000\nAMERICAN STEEL PRODUCTS,,M2100\nMOBILE HOME PARK MNGR,,F4400\nAttorney,WILKES CORPORATION,D9000\nDistrict Director,Congresswoman Northup,Y4000\nPartner,Cooley Godward LLP,G1000\nOWNER,APPLING BROTHERS CO.,Y4000\nANESTHE,CENTRAL WISCONSIN ANES ANES,H1130\nContracter,Joseph Jingoli & Sons Inc.,B1000\nCOMPUTER SYSTEM,DENIED,Y4000\nGad Fly,retired,X1200\nWRITER,TIME INC.,C2000\nYOCO OIL COMPANY,,E1100\nEXECUTIVE DIRECT,UPMC HEALTH SYSTEM,H2100\nPETRO EXPLO,,Y4000\nPHYSICIAN,HEART CLINIC OF ARKANSAS,H1100\n\"Director, Health Pro\",Institute of Medicine,H0000\nOWNER,WEST COAST CASH,F5500\nAdministrator,Allegheny Intermediate Unit,Y4000\nALLIED DELIVERY,,Y4000\nATTORNEY,\"OGILVY GOV'T RELATIONS\",K2000\nATTORNEY,BERKOWITZ TRAGER,K1000\nTHE HAVAN CENTER,,H2200\nSELF/CAPITOL TAX PARTNERS/LAWYER,,K1000\nMGR RETAIL FUELS MARKETING,EXXONMOBIL LUBES & SPECIALTIES,E1110\nMEDREVIEW,NYCHSRO,Y4000\nVice President Public Affairs,Cleveland-Cliffs Inc,E1200\nphysician,Cambridge Health Alliance,H0000\nEAST POINT CORP,,J1100\nWOLPIN COMPANY,,G2840\nAAMES FINANCIAL,,F4600\nINTERIOR DESIGNER,N.A.,Z9500\nCOMMODITIES TRADERS,CME,Y4000\nFirefighter,City of Huntington,X3000\nPRES,PICADIO MCCALL MILLER & NORTON,K1000\nNATL BEER WHOLESALERS ASSOC,,G2850\nConsultant,Akers & Associates/Self-Employed,Y4000\nSales,Cypress Leasing,Y4000\nProfessor,Albany Medical College,J7400\nCFO,LYDIG CONSTRUCTION,B1500\nV,JOHN ALDEN LIFE INSURANCE COMPANY,F3100\nVENUS OPTICAL CASE INC,,Y4000\nCPA,N.A.,F5100\nSALES EXECUTIVE,ROSEMARY COIN,Y4000\nSales/Marketing,Abbott Labs,H4300\nPOLICE,NAVAL AVIATION DEPOT MCAS CH,B4200\ncommunications director,International Longshore and Warehouse,Z9500\nMANAGER,CASALE RENT-ALL LLC,Y4000\nTHE HOME SPECIALISTS REAL ESTATE CO,,F4000\nOWNER,KR FINANCIAL SERVICES,F0000\nOFFICER,PATERSON PD,Y4000\nInformation Requested,Information Requested,LG300\nDIRECTOR OF ELECTRICAL ENGINEERING,SSAB - SWEDISH STEEL ALABAMA INC.,M2100\nCRNA,State University of New York at Buffal,H1710\nECONOMIST,ELKIND ECONOMICS,Y4000\nEXECUTIVE DIRECTOR,THE LEUKEMIA & LYMPHOMA SOCIETY/EXE,JH100\nHEALTHCARE,VETSTREET INC.,Y4000\nDOUGLAS PAY MD INC,,H1100\nSales,Sitasons International Inc,M3100\n\"Pet Resorts, Inc.\",Self,Y4000\nPRESIDENT &,MARK FINE & ASSOCIATES,F4100\nPRESI,BAY AREA DEER PROCESSING INC.,Y4000\nWinemaker,Sequoia Grove Vineyards,G2820\nCLINICAL CARE COORDINATOR,IRC,Y4000\nBOCKORNEY GROUP,,J1200\nREALTOR,OTIS & AHEARN BOSTON MA,Y4000\nFINANCE DIRECTOR,MCGRAW-HILL,C1100\nChairman,Pratt/Dudley Builders Supply,B5000\nManager,Saltchuck Resources,T6200\nPRESIDENT,WEIMER BEARING AND TRANSMISSION,Y4000\nEducator,Lancy College,Y4000\nEXECUTIVE,UST INC,A1300\nOWNER,ATM USA LLC,Y4000\nSR VP GENERATION&ENVIRON PROJ,545,E1600\nengineer,ESE Engineers,B4400\nINFORMATION REQUESTED,SUFFOLK UNIVERSITY,H5100\nINTERACT ACCESSORIES INC,,M3100\nSCHIELE GRAPHICS INC,,Y4000\nPUBLISHER,WHITMAN PUBLISHING,C1100\nKANSAS FARM BUREAU MUTUAL INSURANCE,,F3100\nTHE MOTOR COMPANY,,Y4000\northodontist,Dr Gary Inman,Y4000\nQUICK AND REILLY,,F2100\nREAL ESTATE BROKER,CHRISMAN & WAKEFIELD,J1100\nDirector of Strategic Sales & Key Acco,Miles Media,Y4000\nBOOKKEEPER,MICHAEL CHEVROLET,T2300\nLAW PROFESSOR,UNIVERSITY OF OKLAHOMA,H5100\nPRESIDENT,ACCESS ELECTRONICS,J1100\nBROKER,CENTURY 21 PARTNERS,F4200\nFinancial Services,Eagle Mark,Y4000\nOWNER,G & G ENTERPRISES,B3000\nRequested,Ernst & Young,F5100\nOwner,Gage Gandy Bail Bonds,G5000\nSales Telecommications,Self-Employed,G0000\nBernicks Beverage,Manager,Y4000\nTORE ELECTRIC,,Y4000\nSR. EXEC VP,HUNTINGTON NATIONAL BANK,F1100\nATTORNEY/PARTNER,NIX PATTERSON & ROACH LLP/ATTORNEY/,K1100\nAssistant County Attorney,Woodbury County Attorney,Z9500\nSOUTHWEST EYE CLINIC,,H1120\nCommunications,The Pew Charitable Trusts,X4100\nPartner,North State Financial Svcs,F0000\nAttorney,\"Tutt, Stroud & Mokay\",K1000\nS C TEXTILE MFG ASS,,M8000\nVICE PRESIDENT,NC CONSTRUCTION,J7500\nCEO,Maxwell Medical,H2000\nartist/educator,self,J1200\nTeacher,Jess Schwartz Jewish Community Hig,Y4000\nCONSULTANT,DCBI,Y4000\nHEAD TRADER,STATE STREET BANK,F2000\nCLERK TO THE BOARD OF FREE HOLDERS,MERCER COUNTY,Y4000\nDIAMOND TRANSPORTATION SYSTEM INC,,T3100\nIMAGINE TILE INC,,J1100\nBest Efforts Used to Obtain,Best Efforts Used to Obtain,J5100\nOWNER FUNERAL HOME,,G5400\nCEO,ACTV8 INC.,Y4000\nConsultant,EEO Services,Y4000\nRANCHER,STOKES BROS. & CO.,J9000\nStudent,UTC Power,E1500\nEngineer,Miter Corporation,Y4000\nPROGRAMMER ANALYST,FEDEX SERVICES,Z9500\nEngineer,Skyworks,Y4000\nOnline CE Program Manager,Sinclair Community College,H5100\nARCHITECT,YALE UNIVERSITY,H5100\nCommodites Trader,Self Employed,F2200\nRETIRED / DISABLED,MCI,C4200\nVICE PRESIDENT,AAA COOPER TRANSPORTATION,T3100\nSCIENTIST,ELI LILLY AND COMPANY,H4300\nFOREMAN,JOHN R. FRAZIER INC.,Y4000\nDAVIS MANAFORT & FREEDMAN INC,,K2000\nASSOCIATE GENERAL COUNSEL-LEASING,DDR CORP.,F4100\n\"BLL KNAPP'S OF MICHIGAN\",,G2900\nDoctor,Las Vegas Emergency Medical Inc.,H0000\nPRESIDENT,BAY AREA RECEIVABLES,G0000\nBOISE FOOD DEVELOPMENT,,Y4000\nNO,DONALD A. BURNS FOUNDATION. INC.,X4100\nANESTHESIOLO,\"ANES. ASSOCIATED, P.C.\",H1130\nPRESIDENT,TIMBER LAKE MANAGEMENT,Y4000\nFINAN,WELSH CARSON ANDERSON & STOWE,F2600\nMCNEESE ST UNIV,,H5100\nLAWYER,MEIERHENRY SARGENT LLP,K1000\n(Pac),,J2200\nWOODSON FAMILYOFFICE & WAUSAU-MOSIN,,Y4000\nDOCTOR,TOLEDO CLINIC INC,H1100\nACCOUNTING MANAGEMENT COMPANY,,F5100\nReal Estate Developer,\"Jack Resnick & Sons, Inc\",F4000\nAttorney,Bergen County,X3000\nBUSINESS EXECUTIVE,REALOGY CORP,F4200\nTRAINER,BEE WORLD,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,SAN CLEMENTE VILLAS BY THE SEA,Y4000\nExec Vice President/,Colonial Trust Company,F3100\nWINE MARKETING,SELF EMPLOYED,G2820\nDISTRIBUTION DESIGN SUPERVISOR,AMEREN ILLINOIS,Y4000\nTelcom Mgr,ATT,C4100\nLEXINGTON FINE HOMES,,B2000\nExecutive,Nations Bank,F1000\nMANAGING DIREC,CONSTELLATION ENERGY,E1600\nMARKETING DIRECTOR,CUNARD,Y4000\nPALMETTO GBA,,F3200\nInfo Requested,Info Requested,X1200\nPRESIDENT,JOHNSON & WOOD INS.,F3100\nQUSLCOMM,,Y4000\nCHAD THERAPETICS INC,,Y4000\nINVESTMENT MA,THE BAUPOST GROUP LLC,F2700\n\"CHAIRMAN,\",INDIANA DEMOCRATIC PARTY,J1200\nCEO,THE MEDICINES CO/CEO,H4300\nBENEFITS ASSISTANCE,INFO REQUESTED,Y4000\nSTAFF,AFSMCE CA CN 57,L1200\nEXECUTIVE,PRUDENTIAL,Y4000\nSTREETS & AVENUES RESTAURANT,,G2900\nINQUIRED OF,INQUIRED OF,F3300\nMANAGER,ISLAND GROVE AGRICULTURE/MANAGER,Y4000\nMADER CONSTRUCTION CO,,B1500\nPresident,Ostrom Management,Y4000\nUNIV TEXAS,,H1100\n\"GALATZ, EARL & BULLA\",,K1000\nEXECUTIVE,KIWI CODERS CORPORATION,Y4000\nOWNER,AMCCO INC,Y4000\nHANEY & ASSOC,,Y4000\nPRESIDENT,RYAN HOMES,B2000\nLawyer,Debevoise,Z9500\nPHYSICIAN,ALLIED ANESTHESIA,H1130\nCHAIRMAN AND CIO,COLUMBIA PARTNERS,F2100\nSpeaker/Trainer,Self,J7400\nBookkeeper,Aspen Intermediaries,Y4000\nPresident,Jerry Stephens Cedar Yard,G1200\nSCIENTEX CORP,,C5000\nManagement Consultant,Virtcom,Y4000\nElectrical Contracto,Allied Electric & Control Systems,B3200\nSCRANTON FIRE DEPT./FIRE FIGHTER/EM,,L1400\nHARRINGTON GROUP INC,,Y4000\nAttorney/Compliance Executive,Usfoodservice,G2000\nInsurance Agent,Pyramid Insurance Centre,F3100\nDEVELOPER,SELF,B1500\nPRESID,NAKI PEDIATRICS & ADOLESCENT,Y4000\nDISTRIBUTOR,WASHER SPECIALTIES CO.,J1100\nDirector Communicati,Yahoo Inc.,C5140\nOwner,Real Housing Solutions Inc.,Y4000\nMANUFACTURER,D.D. BEAN & SONS COMPANY,J1100\nATTORNEY,SHAWN STEEL & ASSOCIATES,Z9500\nMember Services,Georgia Rural Water Association,E5000\nCEO,\"Dynamic Marketing, Inc\",J1100\n\"LEBOW, WEKSEL & CO\",,F2100\nREPORTER SHORTHAND,,Y4000\nCITRUS GROWER,MCKENNA BROTHERS INC.,Y4000\nEXECUTIVE,J.J. GUMBERG COMPANY,F4500\nEVERGREEN MANAGEMENT CORPORATION,,JE300\nPARTNER,CAVAROCCHI RUSCIO DENNIS ASSOCIATES L,K2000\nFOUNDER AND CHAIR OF BOARD,BALTIMORE LEADERSHIP SCHOOL FOR YOUNG,Y4000\nATTORNE,\"LEESFIELD, LEIGHTON & RUBIO\",K1100\nINSURANCE,PRODUCERS INC,Y4000\nManagement,Src Inc,D4000\nOWNER,PAN ASSOCIATES,Y4000\nPresident,\"Ram Utility Construction, Inc.\",B0500\nCPA,\"Brown, Kaplan & Liss Llp\",F5100\nNEWS E,DAILY JEFFERSON COUNTY UNION,C1100\nContractor-Architect,Kaplan McLaughlin,B4200\nEXECUTIVE,B.O.B.S. PACIFIC,J7120\nPhysician,Capitol City Derm,Y4000\nCEO - HEALTH PLAN,AMGP GEORGIA MANAGED CARE CO.,H3700\nLIBRARIAN,MONMOUTH COUNTY LIBRARY,X4200\nOWNER,\"LUCKE HOMES, INC.\",B2000\nLOBBYIST,\"PLASTER & ASSOCIATES, LLC\",K2000\nDRIVER,FRANKS RAIN GUTTER,Y4000\nEDUCATOR/ ARTIST,SELF EMPLOYED,J1200\nCHIEF EXECUTIVE OFFICER,\"BLACKFOOT TELEPHONE COOPERATIVE, INC.\",C4100\nWEST BAY EXPLORATION,,Y4000\nTHE DAY SCHOOL,,B1000\nPHYSICIST,LAWRENCE LIVERMORE NATIONAL LABORAT,D4000\nMARKETING,DIRECTV,C2200\nSUPPORT STAFF,\"STEVE PEREZ, SUPERVISOR\",Y4000\nVICE CHAIR,STARK CO. GOP,Y4000\n\"Sr. VP, Acctng and A\",United Surgical,H3000\nConsultant/Lobbyist,The Harold Ford Group,K2000\nInterior Designer,Self-Employed,Y0000\nPresident,Livingston-Butler-Volland Fu,Y4000\nOwner,Greenriver Discount Tack Llc,Y4000\nLAWYER,GUNSTER,K1200\nMEDICAL OFFICER,CDC,Z9500\nPRESIDENT & CEO,PHILIP MORRIS INT.,A1300\nEXECUTIVE O,DORVIN D. LEIS CO. INC.,B3400\nCHIEF OPERATING OFFICER,JACKSON & TULL,B4000\nWildlife Bio,Blm,Y4000\nWFP Consultant,Self,J1200\nBENEFITS CONSULTANT,HUMANA HEALTH PLAN,Y4000\nUNEMPLOYED,NONE,K1000\nOIL AND GAS PRODUCTION,COLUMBUS OIL COMPANY,E1100\nManager/CEO,Dundee Citrus Growers,A1400\nCO-FOUNDER,LAUDI VIDNI,Z9500\nDECATUR INTERNAL MEDICINE CTR.,,Y4000\nENGINEER,TRC,E2000\nPresident,Lane Company,F4000\nChairman,Agua Caliente Band of Cahuilla Indi,G6550\nPresident/CEO,The Greenbrier Companies,T5200\nDOCTOR,SELF EMPLOYED,J7500\nChairman,The Bancorp Bank,F1000\nPartner,Circle G Farms,A1000\nINFO REQUESTED,Loraine J Reed,Y4000\nBERKSHIRE ELECTRIC CO,,M2000\nPRIEST,SELF,Z9500\nVice President,SunCor Development Company,Y4000\nVP Plant Operations,KCPL,E1600\nVETERINARIAN/RADIOLO,SELF-EMPLOYED/PURDUE UNIVERSITY,H5100\nSEAR BROWN GROUP,,B4000\nAtty.,Self,G0000\nEXECUTIVE,MAR-LEES SEAFOOD,G2350\nmember,Alliance for Quality Nursing Home Care,H2200\nElectronics Technici,Retired Usaf/Retired Opm (Fed),X1200\nPlastics Engineer,\"Nypro, Inc\",Y4000\nPARTNER,HANNING & BEAN ENTERPRISES,F4000\nPOLITICAL DIRECTOR,ANN WAGNER,Y4000\nIRDA DEVELOPMENT,,J5100\nPRINCIPAL,EQUALE & ASSOCIATES,J9000\nLawyer,\"Hauser, Izzo, DeTella & Petrarca, LLC\",K1000\nVICE PRESIDENT,\"CSS INTERNATIONAL, INC.\",Y4000\nEXECUTIVE,ATLANTA CAPITAL MGMT. CO,F2100\n\"VICE PRESIDENT, SUPPORT SERVICES\",LAKE CHARLES MEMORIAL HOSPITAL,H2100\nNEW JERSEY STATE POLICE,,X3200\nCONSULTANT,\"COX CONSULTING, INC.\",Y4000\nREADY CUT VEGETABLES,,Y4000\nsales,\"Long's\",J1200\ncitrus grower,Oakley Citrus,Y4000\nHOTEL DEL CORONADO,,Y0000\nSANOFI PASTOR,,H4300\nATTORNEY,\"KERSTEIN, COREN -- LICHTENSTEIN LLP.\",K1000\nPACIFIC TELESIS GROUP-WASHINGTON,,C4100\nPR,THE NEWHALL LAND AND FARMING CO.,F4100\nSMALL BUSINESS,NONE,Y2000\nAttorney,\"Powell, Trachtman, Logan, Carrle & Lom\",K1000\nOWNER,FOREST PRODUCTS,E1500\nEXECUTIVE VP,ALTRIA GROUP,A1300\nEXPORTING,,J5200\nExecutive,Enterprise Rent-a-Car,T2500\nAttorney,Law Office of Lori Pears,K1000\nDIXIE WAREHOUSE & CARTAGE,,Y4000\nCHEMICAL ENGINEER,PLUNKETT & ASSOCIATES,Y4000\nNew Hampshire Dental PAC,,\nDoctor,\"Umesh C. Shah, M.D. PC\",H1100\nATTORNEY,SIEGEL BRILL PA,Z9500\nORTHODONTIST,EDWARD MICHAUD,H1400\nAREA MA,PROGRESSIVE DAIRY SOLUTIONS,A2000\nSenior Consultant,Paradigm Learning,Y4000\n\"SCOTT, DOUGLASS &\",,K1000\nINVESTMENT MANAGEMENT,WESTPORT CAPITAL PARTNERS LLC,F0000\nSCHWANS SALES ENTERPRISES INC,,G2100\nPresident,Moses Cone Health System,H0000\nCEO,GREAT PLAINS COMMUNICATIONS,C4100\nPUBLIC AFFRS,,G5210\nTHE TIMES DAILY,,C1100\nRICH LUMELLEAU,NONE,Y4000\nDEVRON ENERGY CORP,,E1150\nFIN ADVSR,EURO PACIFIC,F0000\nOWNER,KEEVEN HEATING,Y4000\nCOUNSELOR,\"EADP, INC.\",Y4000\nCOKE CONSOLIDATED,,Y4000\nCDM FEDERAL RELATIONS,,Y4000\nReal Estate Development,self,Z9500\nnone,engineer,J1200\nEXECUTIVE,TASTY BRANDS/EXECUTIVE,J5100\nS G. AND ASSOC. INSURANCE BROKERS I,,F3100\nSecurities Sales,UBS Financial,F2100\nATTORNEY,SPENCEWALK PLLC,Y4000\nContractor,Charles R. Underwood Inc.,Y4000\nPhysician,Emergency Physcians of Tidewat,Y4000\nPHYSICIAN,MINNESOTA ONCOLOGY,H1130\nRABBINICAL TEACHER,RABBI ADLER,X7000\nCEO,\"SAUDER CUSTOM FABRICATION, INC\",Y4000\nJACOB ASSOCIATES,,Y4000\nATTORNEY,KATTEN MUCHIN ROSENMAN LLP/ATTORNEY,K1200\nConstruction Materia,AGG ROK Materials Co.,Y4000\nCEO,Mass Envelope,J1200\nPROGRAM DIRECTOR,OREGON HEALTH AND SCIENCE UNIV,H1710\nEngr,Environmental System,B4000\npresident,Moore & Isherwood Communications,Y4000\nHEDGE FUN,SOMERSET CAPITAL PARTNERS,F0000\nBuilder,Elite Homes,B2000\nINVESTOR,THE BAUPOST GROUP LLC,F2100\nCPA,WHITE & THOMPSON,Y4000\nREAL ESTATE/OIL & GA,SELF EMPLOYED,F4000\nSCRAP METAL DEALER,ENOS METALS,Y4000\nPUBLIC HEALTH,,H3000\nHEAD OF PRODUCTS,AETNA,H3700\nMEMORIAL HOSPITAL OF LARAMIE COUNTY,,H2100\nCONSULTANT,\"QUICKSILVER SERVICES, LLC\",Y4000\nOFFICE MANAGER,LINDEN ENTERPRISES,Y4000\nOwner,Credit Painting Co,B3000\nPHYSICIAN,CASCADE PATHOLOGISTS,H1130\nContractor,Charles E. Jarrell Contracting Co.,B3400\nATTY,SMITH AND HELMAN,K1000\nVice President,Modern Chevrolet Co,T2300\nEMERITUS PROFESSOR,DAVID R. REYNOLDS,Y4000\nCOURT REPORTER,SAN LUIS OBISPO SUPERIOR COURT,Y4000\nInvestment Advisor,\"Capitol Counsel, LLC\",F2100\nTEACHER,NEW MEXICO,H1130\nATTORNEY,RICHARD AND RICHARD PA,Y4000\nOWNER,ORANGE CYCLE/OWNER,Y4000\nLawyer,Teeters Harvey & Gilboy,K1000\nAgent,Redevelopment Agency,Y4000\nChief Investment Officer,DRIEHAUS CAPITAL MANAGEMENT,Y4000\nWINSOUTH.ORG/NORTHEAST SOUTHOF/DIRE,,J1200\nattorney,\"Arehart & Ernzen, P.A.\",Y4000\n\"PRESIDENT, FEATURE POST PRODUCTION\",20TH CENTURY FOX,C2400\nTEACHE,CLARK CO. BOARD OF EDUCATION,X3500\nPresident,Lehigh Portland Cement Company,B5100\nLAWYER,\"ELISE T. BAACH, PC\",Y4000\nMILLIGAN REYNOLDS TITLE,,F4300\nEXECUTIVE BANK,CHASE MANHATAN BANK,F1100\nHUMAN RESOURCE CONSULTANT,GALLAGHER LEBLANC,Y4000\nRETIRED IRONWORKER,NONE,Z9500\nVP Merchandising,Barneys New York,G4100\nMELTON & ESPY,,K1000\nCO-OWNER,MACLAIR ASPHALT CO.,B5100\nTesting lab Owner,\"Trimat Materials Testing, Inc\",Y4000\nSoftware Sales,Ringmaster Software Corp.,C5120\nCHAIRMAN OF THE BOARD,STATE BANK,F1100\nATTORN,\"WILMER, CUTLER AND PICKERING\",K1000\nATTORNEY/CONSULTANT,GIVENS PURSLEY LLP,K1000\nPhysician,ADVOCATE HEALTH CARE,H1100\nRegional Operations Manager,\"Sunedison, LLC\",Y4000\nDIAGNOSTIC SPEC,,Y4000\nEXECUTIVE,MEDICAL COACHES IMC,H0000\nGEOLOG,WALTER OIL & GAS CORPORATION,E1100\nExecutive,Taub Foundation,X4100\nOWNER,FARR ON FILM,Y4000\nGENERAL PARTNE,SUTTER HILL VENTURES,JE300\nTeacher,Superintendent Of Sc,Y4000\nDISTRICT MANAGER,SALES REGIS GROUP,Y4000\nVP Industrial Produc,BNSF Corporation,T5100\nInformation Requested Per Best Efforts,Information Requested Per Best Efforts,B1000\nAttorney,\"BlackRock, Inc\",F2100\nSMITH & PICKEL CONST,,B1500\nPROFESSOR EMERITUS,RETIRED,X1200\nNATIONAL FUTURES ASSOC,,G1000\nGUILFORD STEINER SARVAS & CARBONARA LL,BOOKKEEPER,F5500\n\"HUNTER-WILLIAMS INSURANCE AGENCY, I\",,F3100\nMI DEPARTMENT OF ECONOMIC & COMMUNI,,X3000\nINTL UNION OF OPERATING ENGINEERS,,LB100\nVICE PRESIDENT,POLYGEL,Y4000\nCPA,Levitslsy &Berney Pc,F5100\nLion Tamer,Self-Employed,G0000\nBEIGNER BECKNEY,,J1200\nREAL ESTATE,FLAT IRON COMPANIES,F4000\nVP ONLINE COMMUNICATIONS,THOMSON REUTERS,C1100\nCEO,LINDSEY GROUP,F5500\nVICE PRESIDENT,\"THE DUBERSTEIN GROUP, INC.\",K2000\nCITY CLERK,CITY OF LANCASTER,Z9500\nOffice & Investment,Grubb and Ellis Co.,F4100\nFRANCHISEE,JACKIN INC.,G1000\nPHYSICIAN,S. JOTKOWITZ M.D. P.A.,J5100\nAttorney,AT & T,C4100\nSoftware Engineer,Analogic Corporation,H4100\nCOLUMBUS LIFE INSURANCE COMPANY,,F3100\nLEATHERMAN INSURANCE CO,,F3100\nVICE PRESIDENT,\"STRAVA, INC\",Y4000\nIB SECURITY CONSCIOUS INC,,Y4000\nExecutive,Zenith Insurance Co,F3100\nDEBRA MADER,DEBRA MADER,Y4000\nVEEVERS ASSOCIATES,CONSULTANT,Y4000\nPresident,\"BMG, Inc\",Y4000\nELDERKIN & PIRNIE,,Y4000\nTRAVEL WORLD TOURS,,T9400\nEXECUTIVE,PRONTO CONSTRUCTORS,B1500\nMarketing Consultant,Allstate Corporation,F2000\nStock Broker,Prudential Securities,F2100\nTURBO SALES & SERVICE,,Y4000\nPARTNER,PEGASUS INVESTORS LP,Y4000\nPATHOLOGIST,BAYLOR COLLEGE OF MEDICINE,H1130\nBCC FINANCIAL MANAGEMENT SERVICES I,,F5200\nLIBRARIAN,OINE COBBLE SCHOOL,X3500\nProfessional,Ncrc,Y4000\nDeveloper,Lachicotte Properties,F4200\nPRESIDENT,JO-BENLY ENTERPRISES INC.,Y4000\nBuilding Management,Self employed,F4500\nATTORNEY,CANTEY AND HANGER LLP,K1000\nProfessor,Columbia university,H5100\nSR. VICE PRESIDENT,BROOKLYN HOSPITAL CENTER,H2100\nMarketing Product Development,Self-Employed,F4100\nPresident,McManus Group,K2000\nVP,Janney Montgomery Scott Inc.,F2100\nBANKER,BANK OF PERRYVILLE,F1100\nVice President,\"Aldi, Inc.\",Y4000\nTERRA INDUSTRIES INC,,A4100\nExecutive,Packerland Packing,M7100\nNATIONAL HOME LIFE INSURANCE,,F3300\nPRESIDENT,TAZIAN ASSOCIATES,B4400\nSOCIAL WORKER,MOTHER,Y1000\n\"STENHOUSE, WEINER, SHERMAN, ET AL\",,Y4000\nDEVELOPMENT DIRECTOR,FT SMITH SYMPHONY,F1100\nPLANNER,DEL DOT,Y4000\nOwner,\"Tolkan, Inc.\",Y4000\nDeveloper,\"State Wide Developers, Inc\",Y4000\nPARTNE,GURNEE PROPERTIES ASSOCIATES,F4000\nTeam Manager,State Farm Property & Casualty,F3400\nALLEGLANCE TELECOM INC,,C4100\nOLYMPUS LLC,,Y4000\nREAL ESTATE DEVELO,\"ASPEN HOME, INC.\",F4000\nPhysician,US Government/Dhhs/NIH,X3000\nFlorist,The Flower Basket,A1500\nU OF GA,,H5100\nCEO,HEALTH CARE CONCEPT,H0000\nPAPPASITOS,,G2900\nEXECUTIVE,CRESA PARTNERS,F4000\nATTY,SIDLEY & AUSTIN/ATTORNEY,K1000\nPRESIDENT,WARREN CLARK DEVELOPMENT,Y4000\nPOPULAR BANK OF FLORIDA,,F1100\nAUTOMOTIVE E,HERB GORDON AUTO GROUP,T2300\nExecutive/CEO,Barkan Management,Y4000\nPresident/CEO,Triumvirate Environmental,E3000\nTRANSPORTER,MACK MEDICAL CENTER,Y4000\nWINERGROWER,GROTH VINEYARDS,G2820\nACTIVIST,SELF,K1000\nMANAGER,BIOPORT CORPORATION,Y4000\n(UJF),,J5100\nATTORNEY,\"RUBIN & LEVIN, PC\",Y4000\nBLACKROCK INVESTMENTS/CHAIRMAN/CHIE,,F2100\nPresident,Vip Realty Inc,F4200\nCOBLENTZ COHEN MCCABE & BREYER,,Y4000\nPARTNER,RUTHERFORD INVESTMENTS,Y4000\nOwner,Corrigan Dispatch,Y4000\nInformation Requeste,Flanagan Consulting LLC,Y4000\nPROFESSOR,GAICHES COLLEGE,Y4000\nALASKA TENT & TARP,,M3600\nVice President,HUBBARD BROADCASTING,C2100\nVice President Anemia Prdcts,Roche Labs Inc.,H4300\nPRESIDENT & CEO,FIVE WIRE MEDIA,Y4000\nAssistant,Metastation,Y4000\nOWNER,AMERICAN TECHNOGRAPH,Y4000\nPresident,Spottswoode Vineyard,G2820\nRETIRMENT SERVICES FINAN,MASSMUTUAL,F3300\nInsurance Broker,Clark-Guy Assoc,F3100\nNight Auditor,Marriott Courtyard,T9100\nPRES,\"A.L. GRADING CONTRACTORS, INC.\",Y4000\nUNION PACIFIC RESOURCES INC,,T5100\nMINISTER OF THE UNITED CHURCH OF CHRIS,UNITED CHURCH OF CHRIST,X7000\n\"QUINCY, JONES, PARK INC\",,Y4000\nVP,ALLISON CUSTON FABRICATION,Y4000\nPILOT,BUFFALO COAL CO.,E1210\nBridge Contractor,Z.E.P. Construction Inc.,B1500\nKESSLER FINANCIAL SERVICE,,F5500\nVOTRE & ASSOCIATES,,Y4000\nConsultant/Maritime,Richmond Consulting Group,G5200\nTIMES-CALL PUBLISHING CO,,C1100\nGlobal Licensing Manager,\"Dow Agrosciences, LLC\",A4100\n\"BECKER'S C P A REVIEW\",,J5100\nDATA ANALYTIC/STATISTICIAN,GRAND DESIGN,Y4000\nSALES,HARWARD & ASSOC,F4200\nSELF EMPLOYED LO,SCHRAMM & WILLIAMS,K2000\nDICK BATCHELOR & ASSOCIAT,,G5200\nOFFICE MANAGER,\"RAY ENGINEERING, INC.\",B4400\nTRI-STATE REALITY,,F4200\nORTHOPAEDIC SURGEON,FMDH ORTHOPAEDICS,H1130\nCONSTRUCTION,GMS CONSOLIDATED,J1200\nPortfolio Manager,Cerberus Capital Management,F2700\nGOVT,DEPT OF STATE,X3000\nMINTZ LEVIN COHEN ET,,K1000\nENERGY SCHEDULER,PORTLAND GE,Y4000\ninformation tech,Pfizer,H4300\nTen High Street LLC,,Y4000\nFOUNDER / PRESIDENT,WINNING CONNECTIONS,J7400\nFINANCIAL SERVICES,FANNIE MAE,F4600\nEXECUTIVE,AMERICAN HOSPITAL SERVICE GROU,H2100\nGLP,ASSOCIATE,Y4000\nATTOR,JOHNSON DUFFIE STEWART WEIDAN,K1000\nT.C.H. HEALTH SERVICES,,Y4000\nCenter on Budget & Policy Pronties,,JH100\nAgent,Houk Insurance Agency,F3100\nSOCIAL WOR,LIGHTHOUSE INTERNATIONAL,Y4000\nPresident,Ocean Ship Holdings,T6000\nPUBLIC RELATIONS,ERWIN PENLAND,G5210\nOFFICER,RUBICON TECHNOLOGIES INC.,C5100\nSHERBURNE COUNTY RURAL TEL,,Y4000\nPRESIDENT,\"GALVIN ASSOCIATES, INC.\",Y4000\nLOBBYIST,CRSHQ,Z9500\nLAW PROFESSOR,CUNY LAW PROFESSOR,Y4000\nSTAR DIAMOND GROUP,,Y4000\nSUMMIT ENERGY GROUP LTD,,E1000\nSENIOR VICE PRESIDENT,METRICA,C5130\nV. PRESIDE,\"ADRIENNE'S GOURMET FOODS\",Y4000\nPURDY FORD,,Y4000\nCPA/Shareholder,RLB,Y4000\nNot employed,Self employed,J1200\n,OTOLARYNGOLOGY HEAD & NECK SURGERY,H1130\nNursing Faculty,University of Minnesota,H5100\nFISHER NURSERY,,A8000\nPartner,Melvin Weaver Consulting LLC,Y4000\nM SIEBERT & CO,,Y4000\nVICE CHAIRWOMAN,K.P.M.G. L.L.P.,F5100\nDIRECTOR R&D,LIFESCAN,Y4000\nAttorney,\"Fafinski Mark & Johnson, P.A.\",Z9500\nTEAMSTERS LOCAL 523,,LT300\nINFORMATION REQUESTE,SIMONS CAMERA,Y4000\nManager,Blue Coast International LLC,Y4000\nLAW LIBRARIAN,WILLILAMS MULLEN,K1200\nKELLY & MONACO LLP,,Y4000\nWRITE,CHRISTIAN SINGER,G2900\nMANAGER,MATSON FRUIT COMPANY,Y4000\nINFO REQUESTED,R S Farm & Harvest Supply Inc.,A1000\nLJL INSURANCE AGENCY,,F3100\nATTORNEY,LIPPMAN MAHFOUZ TRANCHINA,J5100\nBUSINESS OWNER,M.S.C. INDUSTRIES,Y4000\nAttorney,\"Lerner, David, Littenberg, Kru\",K1000\nWHOLESALE BULLION DEALER,WORTH GROUP,Y4000\nManager,\"TNL, Inc\",Y4000\nBANKER,LASALLE BANK MIDWEST,F1100\nUS AGGREGATES INC,,B5100\nBAUER BENEDEK AGENCY,,C2400\nResearcher,Johns Hopkins University,H5100\nTHE AUSTIN CLUB,FUNDRAISER,Y4000\nLOCAL UNION 127,,LB100\nEducation Coordinator,\"Lawrence Livermore Nat'l Laboratory\",D4000\nEarly Childhood Educ,Teaching Strategies,J7400\n\"VP, Project Dir\",\"FD Global Services,LTD\",B1000\nOWNER,\"CHARLIE CHIANG'S\",G2900\nRANCHER,NORENE PARTNERSHIP,Y4000\nOWNER,SIMPSON EGG,A2300\nEXECUTIVE,WALL STREET JOURNAL,C1100\nVETERNARIAN,SELF/VETERNARIAN,A4500\nVice President,Etubics Corporation,J1200\nExecutive,PNM,Y4000\nHUNTER ASSOCIATES INC.,,F2100\nSCHUELLER CONST CO LTD,,B1500\nOwner,Vincon Electric Co.,B3200\nCOMMUNICATIONS,NATL RURAL TELECOM. CO-OP,E1610\nbuilder/developer,self,B1500\nPRESIDENT,PYRAMID PIPE & SUPPLY CO.,Y4000\nGallery Owner,Woodstock Gallery,Z9500\nPRINCIPAL,MATHEWS & ASSOCIATES,F7000\nJ & W SELIGMAN & CO INC,,F2100\nSHRED IT,,Y4000\nConsultant,TFG LLC,K2000\nLAWYER,CJLP,Y4000\nSenior Pastor,Brown Memorial ame Church,X7000\nPresident,\"Consulting Works, LLC\",Y4000\nATTORN,LAW OFFICES OF GARY FREEDMAN,K1000\nREAL ESTATE BROKER,PRUDENTIAL CROSBY STARCK REALT,F4200\nATTORNEY,NATIONAL INDEMNITY CORP.,F3100\nPHARMACIST,P.D.A GROVE PHARMACY,G4900\nattorney,Wright Lindsey and Jennings LLP,Y4000\nPARTNER,EVERGREEN CAPITAL PARTNERS,F1400\nTOMASSO CONSTRUCTION CO,,B1000\nGAS MARKETING,ENGAGE ENERGY,Y4000\nPRESIDENT,INTERNATIONAL FOOD SAFETY COUNCIL,G2900\nPOLITICAL DIR,FRIENDS OF MARK FOLEY,J1100\nVICE PRESIDEN,JOHN G. KINNARD & CO.,F2100\nLoan Officer,National Mortgage Lending,F4600\nATTORNEY,RET,X1200\nPERSANT CONSTRUCTION INC,,B1500\nTHE FOGWELL CORPORATION,,F5100\nPRINCIPAL,FARCHETTE & HANLEY,Y4000\nCOMPANY RECORDER,KANABEC COUNTY,Y4000\nRMS CORPORATION,,Y4000\nEXECUTIVE,\"VITRIA TECHNOLOGY, INC.\",Y4000\nATTORNEY,\"JONES & ASSOCIATES, P.C.\",Y4000\nCOMMUNITY ORGANIZER,\"CONNECTIONS, INC.\",Y4000\nWEICHERT REALTY CO,,F4200\nCPA,STATE STREET CORPORATION,F2000\nSELF EMPLOYED,MCFARING FOODS INC,Y4000\nLAWYER,LIFETOUCH INC.,G5240\nMANAGEMENT,THE FLETCHER GROUP,Y4000\nC F E L L C,,Y4000\nLACKS IND INC,,M1500\nOWNER,TOM SMALL APPRAISAL AND CONSULTING,F4700\nHEYER GRUEL & ASSOCIATES,,Y4000\nENGINEER,INTERAMERICAN UNIVERSITY,Y4000\nretired rn,retired,Z9500\nPRESIDENT,\"ALGC'S BOARD OF DIRECTORS\",Y4000\nADMINISTRATOR,ST. FRANCIS,H0000\nPresident,Golden Peanut Co.,A1600\nCHAIRMAN,AMERICAN COMPASS INC,C5140\nPHYSICIAN,TEXAS RHEUMATOLOGY CARE,H1130\nWEBBERTOWN DENTAL GROUP,,H1400\nERCO CEILINGS AND BLINDS,,Y4000\nTHE EADS CENTER,,Y4000\nSALES,PL THOMAS & CO.,Y4000\nSALES,S&S AUTO SALES,T2300\nSURGEON,\"TENNESSEE PAIN SURGERY CENTER, LLC\",Y4000\nPRODUCT MANAGER,\"CHARLES SCHWAB & CO., INC./PRODUCT\",F2100\nPresident/Chief Exec,Ameresco Inc.,Y4000\nVICE PRESIDENT,ADAMSON MOTORS,T2300\nC J BETTERS PROPERTIES,,Y4000\nDIRECTOR OF ACCOUNTING,WAYNE STATE UNIVERSITY,H5100\nPIANO STUDIO,SELF-EMPLOYED,G0000\nVice President of En,Navmar,D9000\nOwner,Entrecorp,K2000\nPrincipal,\"AECOM USA, Inc\",B4000\nPresident,Data Dall Corp.,Y4000\nSAM,,Y4000\nConsultant,Blue Cross Blue Shield,Z9500\nVICE P,NATIONAL REIMBURSEMENT GROUP,Y4000\nABRAMSKY & SHORETZ,,Y4000\nSTRATEGIC ACCOUNTS ZONE MGR I,UNITED PARCEL SERVICE INC,T7100\nEXECUTIVE,I-80 TRUCK STOP,Y4000\nFINANCE,JET CAPITAL,F2600\nAttorney,\"Squire, Sanders, & Dempsey\",K1000\nSAN BERNARDINO COMMUNITY COLLEGE,,H5100\nReal Estate Developement,Evergreen Management Company,F4100\nDIRECTOR OF RESEARCH,WASHINGTON POST,C1100\nCEO,XL CAPITAL,F3100\nEXECUTIVE,TAG ASSOCIATES,F2100\nENGINEER,MICRON TECHNOLOGY,J1100\nA-G ELECTRIC COMPANY INC,,B3200\nTHE FOOTHILL GROUP,,J1200\nBONDSMAN,BRAZOS BAIL BONDS,G5000\nATTORNEY,JAMES HIGGINS LAW OFFICES,K1000\nCOLLEGE PROFESSOR C.P,SELF-EMPLOYED,X1200\nVice President,DPT Laboratories,Y4000\n\"VETTER HEALTH SERV, INC\",,H2200\nDIRECTOR,SELF-EMPLOYED,T1200\nPresident,\"Bally's Park Place\",G6500\nProduct Coordinator,Disney Stores/Childrens Place Corp.,Y4000\nPRES/CEO,\"TRINITY YACHTS, LLC\",T8300\nExecutive,Damart Enterprises Corp.,Y4000\nRETIRED(SIMONE) GREG LAWYER,JONES DAY,K1000\nOwner,Construction Associates,B1500\nSURGEON,SOUTH GEORGIA MEDICAL CENTER,H2100\nCo-Owner,\"Stuart Jeep, VW and Mitsubishi\",T2310\nINSURANCE,THE SEHLER CO.,Y4000\nVENTURE CAPIT,TRINITY VENTURES LTD.,F2500\nAttorney,Musselwhite & White,K1000\nPresident,\"TigerTech Media, Inc\",G5000\nANESTHESIA ASSOCS OF CAPE GIRARDEAU,,H1710\nAttorney,\"MARTIN, DROUGHT & TORRES\",K1000\nGeneral Manager,Orange County Sanitation District,E3000\nOWNER,TWEEDIES STORE,Y4000\n\"FUSCO RUSSO D'AMATO\",,Y4000\nTEACO ENERGY SERVICES,,E1000\nRoyal Bank of Canada,,F1000\nPRODUCTION ACCOUNTANT,\"FEHR FOODS, INC.\",Y4000\nOwner,Healy Construction,B1500\nEXECUTIVE,\"SERCO, INC.\",D9000\nHEDGEFUND MANAGER,SELF-EMPLOYED,G0000\n\"ALEXANDER'S\",,G4300\nSELF-EMPLOYED/CONSULTANT/LAWYER/JUD,,K1000\nEligibility Supervisor,County of Orange Social Services Agenc,Y4000\nEVENT PLANNER,\"PURA VIDA PRODUCTIONS, INC.\",Y4000\nAttorney,Storch Amini & Munvues PC,K1000\nEngineer,ChevronTexaco,E1110\nCEO,PRI,F3400\nBuilder,Eddleman Properties; Inc.,B2000\nMEMORIAL HEALTH CARE,HEALTH ADMINISTRATION,Y1000\nCatholic Priest,Diocese of San Bernardino,J7120\nBANKING,WELLS FARGO & CO.,Z9500\nManaging Member,Getco LLC,F2200\nEXECUTIVE,SOUTHWIND HEALTH PARTNERS,H0000\nINDEPENDANT UNIVERA ASSOCIATE,SELF-EMPLOYED,Y4000\nNot applicable,Retired,X1200\nBENEFITS COO,WESTERN KY. UNIVERSITY,H5100\nPHOTOGRAPHER,SELF-RETIRED,G5240\nCHAIRMAN,CITY BANK,F1100\nPresident,Children Affected by AID,J1100\nATTORNEY,\"BURNS AND LEVINSON, LLP\",K1000\nIRONTON TELEPHONE COMPANY/MANAGER/C,,G1200\nSOFTWARE CONSULTANT,ACCENTURE,G5270\nDelivery Service,Self,J5100\nretired physician,Indiana University,J7400\nPRESIDE,PRINCETON SATELLITE SYSTEMS,Y4000\nPRESIDEN,DOTY FAMILY MEDICAL CENTER,H2100\nlawyer,The Segal Law Firm,J1200\nW E M E & D LLP,,K1000\nATTOR,WILENTZ GOLDMAN & SPILTZER PA,K1000\nPres. & CEO,Des Moines University,H5100\nChairman/CEO,Self,G0000\nTENNESSEE SOYBEAN PROMOTION CONTROL,,Y4000\nAttorney,\"Goodchild and Duffy, PLC\",K1000\nSoftware Engineer,Fidelty Invesments,Y4000\nPresident,Exxel Dental & Medical Eqp.,Y4000\nPresident,Eagle Bank,F1100\nPHYSICAL THERAPIST,SUMMA HEALTH SYSTEMS,H2100\nEXECUTIVE,CARIBOU INTERNATIONAL INC.,Y4000\nManager,LKCS,Y4000\nMedia Executive,Nascar,G6400\nMACEY WILENSKI WHITTNER,,K1000\nCEO,DAYLIFE,Y4000\nEXECUTIVE,SUNBEAM-OSTER COMPANY,Y4000\nPRESIDENT & CEO,AT&T LABS/PRESIDENT & CEO,C4000\nManager Broker,Caldwell Banker,F4200\nMarketing,Tool King,Y4000\nBENO RETAIL CLOTHING,,G4100\nOwner,\"Dr. Robert D. Crouch, Urology\",H1130\nDOCTOR,\"THE HAPPIEST BABY, INC\",Y4000\nEngineer,Self,J7500\nVON TOBEL LUMBER,,B5200\n\"ROOKS, PITTS & PUNST\",,K1000\nBANTA CORPORATION,,Y4000\nMARKETING,\"AMA INSURANCE AGENCY, INC.\",F3100\nADVISER,STATE DEPARTMENT,X3000\nStudent,Student- University of Pittsburgh,J1200\nMANAGING DIRECTOR,\"LAZARD, LTD\",F2300\n\"Associate Dean, Gov'\",Riverside Community College,J1100\nPRESIDENT,ROLLIN B CHILD,Y4000\nPresident,Massey Powell Enterprises,Y4000\nFIELD SUPPORT,OREGON REPUBLICAN PARTY,J1100\nSUN LAKES,,Y4000\nAUTO DEALER,RON SMITH BUICK,T2300\nMANAGING DIRECTOR,CERMAR GROUP,F7000\nAttorney,Avera&Avera LLP,K1000\ngeneral contractor,Proctor Construction,B1500\nEpidemiologist,Ucla,J1200\nFIREMAN,CITY OF FLORENCE,X3000\nLawyer,Law Office Of Tom East,K1000\nPhysician,Advanced Pain Care Clinic,Y4000\nDIRECTOR PUBLIC AFF,COUNTY OF WAYNE,X3000\nPARTNER,\"MC GUIRE WOODS, L.L.P.\",K1000\nFacilities Managemen,Union Bankshares,F1100\nDISTRICT ENGINEER,STATE OF NEW MEXICO,X3000\nAttorney,Fleischer Law Firm PC,K1000\nNATIONS BANK OF GEORGI,,F1100\nTEACHER,SAN JOSE UNIFIED SCHOOL DISTRICT,X3500\nAt Home,N/A,K2100\nAPREA AND COMPANY,,Y4000\nChairman,Penn Color,Y4000\nSelf-Employed,Aire-technics,Y4000\nPROFESSOR,U OF MN LAW SCHOOL,H5100\nHAMILTON GERALD & SMITH,,Y4000\nExecutive,United Homes International,B2000\nReal Estate Broker,C21 Carnegie Realty Inc,F4200\nJR LEUCHLAND & SONS VINEYARD,,G2820\nDEVELOPER,RBK DEVELOPMENT,Y4000\nAttorney,Gonderman Law Office,K1000\nPRESIDENT,PAK OIL,Y4000\nJACOB GOLD LTD/INVESTOR/RESEARCH,,Y4000\nBusDen,Sarnoff Corporation,D3000\nATTORNEY,GLICKMAN GLICKMAN,K1000\nTEACHER,TUSTIN USD,X3500\nTHE PHONE WORKS PHS,,Y4000\nPHYSICIAN,NORTH COLORADO SPINE CENTER,Y4000\nBROWNS AUTO SALES,,T2300\nOIL & GAS EXPLORATIO,SELF EMPLOYED,G0000\n\"FOUR SPORTS, INC\",,Y4000\nPresident,\"CSX Real Property, Inc.\",F4100\nProfessor,MIT,J1200\nINVESTOR,,E1210\nCEO,Brownwood Regional,H2100\nAssistant,Director,J1200\nJOHN DUSENBERY INC.,,Y4000\nTBA & ASSOCIATES,,F5100\nPartner,Acorn Campus Ventures,X1200\nDirector,Associates of Family Psychatry,Y4000\nGENERAL MANAGER,WARREN TRANSPORTATION,Y4000\nReal Estate,Henry S. Miller Companies,F4200\nProgrammer Analyst,Customer Service Delivery Plat,Y4000\nSLUBBOMAN MC CRAE,,K1000\nDBS DEVELOPMENT,,Y4000\n\"Executive, General Counsel\",\"ABR Services, Inc\",Y4000\nCFO,MURRAY ENERGY/CFO,E1210\nVice President,Pro-2-Serve,D9000\nMANAGER,SIEMENS HEALTH SERVICES,H3000\nChief Executive Offi,Megatoys,M3500\nShareholder,Rodney Strong Vinyards,G2820\nSALES MANAGER,C.H. POLYMERS,Y4000\nExecutive Manager,Fuel Outdoor,Y4000\nLABORATORY DIRECTOR,CITY OF RACINE,X3000\nATTORNEY,DINSMORE & SOHL L.L.P.,K1000\nBusiness Development,Goodyear Rubber and Tire Company,M1500\nUNIV OF VA,,H5100\nFINANCIAL PLANNER,SELF-EMPLOYED,J5100\nCPA,WEGNER CPAS,F5100\nSE,CISCO SYSTEMS,C5110\nAttorney,Frasier Frasier & Herman,K1000\nCEO,Carbontite Technologies,Y4000\nREAL ESTATE DEVELOPE,Bremar Home,Y4000\nEXECUTIVE,ALLIANCE INDUSTRIAL CORP,M2300\nPublic Heath nurse,NM dept of health,X3000\nSales,Pyramidresources,Y4000\nOwner,Edis Co.,Y4000\nVICE PRESIDENT MARKETING,ALLIEDBARTON SECURITY SERVICES,G5290\nInvestor,Asset Management,F2100\nPSYCHOLOGIST,,H0000\nCOMPUTERS FOR SCHOOLS,,C5100\nVP OF QUALITY & CARE MANAGEMENT,COMMUNITY HOSPITAL CORPORATION,H2100\nSPRINGFIELD CHIROPRACTIC SERVICES,,H1500\nSVP - Public Relations & Marketing,New England CU Services LLC,F1300\nCEO,TRUMP ENTERPRISES,F4100\nATTORNE,HAGENS BERMAN SOBOL SHAPIOR,K1000\nVICE CHAIRMAN,HART GROUP INC,F2600\nLAWYER,SANDLER TRAVIS & ROSENBERG,J1100\nTreasurer,C & G Pharmacy,G4900\nDoctor,Springwood Lake Practice,Y4000\nAsset Management,Fortress,Y4000\nPresident,The Lurie Company,F4200\nPHYSICIAN,\"ANNANTA SOURCE, INC\",Y4000\nWILSON PLASTICS,,M1500\nSAVANNAH DHY,,Y4000\n\"VICE PRESIDENT 2, GOVERNMENT & REG.\",COMCAST CABLE,C2200\nADMIN,LUCERNE VALLEY MKT & HARDWARE,J2200\nCHAIRMAN AND CEO,CASDEN PROPERTIES,F4100\nCONSULTANT,\"SCOFES & ASSOCIATES CONSULTING, INC.\",Y4000\nP KAUFMAN INC,,Y4000\nPRESIDENT,\"BOOTH TITLE GROUP, LLC\",F4300\nIT SECURITY CONSULTANT,PENFIELD SYSTEMS,Y4000\nTitle Insurance Prof,Security Title Company of Montana,F4300\nBUSINESS EXECUTIVE,AVFUEL CORP.,Y4000\nTHOMAS INVESTMENTS INC./OWNER/RETIR,,G4300\nBLOOMFIELD TACK LLC,,Y4000\nBUSINESS OWNER,CARTER POWERSPORTS,Y4000\nNORTHWESTERN UNIVERSIT,,H5100\nChairman,First ANL Ins.,F3100\nECONOMIST,TEXAS AG EXPERIMENT STN,Y4000\nPACHECO DIARY,,A2000\nEXHIBITS MANAGER,NOT EMPLOYED,X4200\nLibrarian,Lindquist & Vennum,K1000\nOWNER,EXCAVATION CONTRACTOR,B3600\nPhysician,Scotland Cardiology,H1130\nFEDERAL SIGN COMPANY,,G5230\nCEO,Friedman Billings Ramsey,F2300\nFOUNDER,SITZMANN MORRIS & LAVIS INS. AGENCY,F3100\nPHYSICIAN,WEBER CLINIC/PHYSICIAN,H1100\nLEACH INTERNATIONAL,,Y4000\nGALE BARSTOW INC,,E1160\nExecutive,\"Google, Inc\",J1200\nAttorney,\"Venable, Llp\",K1000\nBusiness Owner,Desco Audio and Video,Y4000\nPRESIDENT,PRESBYTERIAN HEALTH CARE,H3000\nMuisicFilmProducer,Self employed,Y4000\nFarm Management,E Sloan Farms,A1000\nMEDICAL RESIDENT,\"BRIGHAM AND WOMEN'S HOSPITAL\",Z9500\nOWNER,POMEROY COMPUTER,C5100\nSPIRITUAL DIRECTOR,SELF-EMPLOYED,G0000\nPRESIDENT,DOUGLAS B BRADY MD PC,Y4000\nVice President,Ben Bridge Jeweler,G4600\nNAPP-GRECCO CONSTRUCTION,,B1000\nFARMER,SC DEPT OF REVENUE,Y4000\nPARCEL INS PLAN,,J7400\nAttorney,Back Law,Y4000\nBusiness Owner,Inspection Pros,Y4000\nFOUNDER,AMERITRADE,F2100\nBanker,American South Bank,F1000\nVICE PRESIDE,WINTEC ARROWMAKER INC.,Y4000\nATTORNEY,BONNETT FAIRBOURN FRIEDMAN,K1000\nManager,Ubiqutel Pcs,Y4000\nPHYSICIAN,AR ANESTHISIA,H1130\nOwner,Design Studio Frank Genzer Architectur,B4200\nDECOSIMO & ASSOCIATES INC,,Y4000\nCHIEF IN,KAILIX INVESTMENT ADVISORS,F2100\nPRESIDENT,NIERENBERG INVESTMENTS,F2100\nYAKIMA BEARS,,Y4000\n\"EXECUTIVE VICE PRESIDENT, NETWORK OPER\",CHARTER COMMUNICATIONS,C2200\nAccountant,Smg,J1200\nPARTNER,THE VERO GROUP,Y4000\nEXECUTIVE,CONTINENTAL WINGATE CO.,F4000\nDisabled,Retired,X1200\nPRESIDENT,OMNI TELECOMMUNICATIONS,Y4000\nMANAGEMENT CONSULTANT,RANK CONSULTING,Y4000\nR B SWAIN INSURANCE,,F3100\nERJ SERVICES LLC,,G5000\nDentist,Mandeville Family Dentistry,Y4000\nBusiness Manager,\"Adjuvonts Unlimited, Inc.\",Y4000\nClinical Psychologist,The Chicago School of Prof Psychology,H5100\nOFFICE MANAGER,DR BHANDARI,Y4000\nMarketing Eng,Analog Devices,C5110\nSOUTHWEST HEALTH AGENCY,,H2000\nVice President,Bank of America,F1100\n,YWCA OF NORTH CENTRAL PENNSYLVANIA,Y4000\nDOCTOR,MASS. GENERAL HOSPITAL,H2100\nOWNER,BUSH LEASING CO,Y4000\nMedical Human Rights/Author/Public Hea,Self employed,Y4000\nCEO,ULINE CO,J2200\nPresident,\"Respiratory Services, Inc\",Y4000\nHUTCHENS COMPANY,,G4000\nCOMPUTER GRAPHICS,SELF-EMPLOYED,C5000\nReal estate agent,Prudential Galaxy Real Estate,F4000\nACME TACKLE CO,,Y4000\n\"COGGIN-O'STEEN INV\",,Y4000\nPRESI,\"THOMAS NELSON PUBLISHING, INC\",C1100\nExecutive Board Member,Gulfco,Y4000\nEntertainer/Musician,Self-Employed,C2000\nPrivate Equity,\"Clayton,  Dubilier & Rice\",F2600\nUNIVERSITY OF CALIFO,UNIVERSITY PROFESSOR,H5100\nBroker/Associate,Iowa Realty Comm. Real Estate,F4000\nCEO,WILLIAM MORRIS AGENCY,G5000\nDELTA DENTAL LAB,,H3400\nVICE PRESIDENT ENGINEE,PRAXAIR INC.,M1000\nRESTAUR,\"PURPLE PARROT COMPANY, INC.\",Y4000\nNON PROFIT COORDINATING CMTE OF NY,,X4000\nDIRECTOR,\"JEWELCOR MANAGEMENT, INC.\",Y4000\nEXECUTIVE,ARETE ASSOC.,Y4000\nInvestment Professional,Topspin LBO,Y4000\nRETIRED,FAUQUIER CO. SCHOOLS,Y4000\nPROGRA,U.S. NEWS & WORLD REPORT LLC,C1100\nOWNER,HUMPHREY COMPANIES LLC,Y4000\nPresident,The Dowling Foundation,X4100\nMarketing Manager,WOLVERINE WORLD WIDE INC.,Y4000\nWRITER,PROFESSOR EMERITAS,X1200\nSEAFOOD TRADER,BEAVER STREET FISHERIES INC.,E4000\nConsultant,Apco WorldWide Inc,G5210\nUNIVERSITY OF SOUTHERN LA,,H5100\nCHAR WEST,,Y4000\nCERTIFIED FRAUD INVESTIGATOR,,J1100\nPartner,Japonica Partners,Y4000\nPresident,US Net Inc,Y4000\nSelf Employed,Bloome,Y4000\nExecutive,Hvs,F4000\nENGINEER,CPI,Z9500\nTHE CREATIVE THINKING CENTER,,Y4000\nNonprofit executive,Creative Artists Network Inc,Y4000\nPHYSICIA,LIFETIME SKIN CARE CENTERS,Y4000\nAttorney,State Of Utah,Z9000\nPHARMACIST,BUCKEYE HOME MEDICAL,Y4000\nCHAIRMAN,BERTELKAMP AUTOMATION INC.,T2000\nSALES,J.G. EDELEN CO. INC.,Y4000\nmanager,eDrugstore.MD,H4000\nWRITER,MIT,Z9500\nBusiness,\"Johnson Controls, Inc.\",T2200\n\"Managerial, Misc.\",\"Feltes Sand & Gravel Co., Inc.\",B5100\nFire Fighter/EMS,Stratford Fire Dept.,L1400\nHAWKINS AND ASSOCIATES,,Y4000\nGAUNTU,,Y4000\nPhysician,\"Peachtree Neurosurgery, PC\",H1100\nRETIRED,IBEC LANGUAGE INSTITUTE,Y4000\nAT,BRENNAN CARON LENEHAN & LACOPINO,K1000\nPRESIDEN,STANSELL ELECTRIC CO. INC.,B0500\nPRESIDENT,CONKLIN BROS.,Y4000\nPRESIDENT & C.E,BIRKEYS FARM STORES,Y4000\nENGINEER,KEYSPAN ENERGY,E1620\nForeman,Chesapeake Operating Inc.,Y4000\nCHAIR,EVERGREEN INTERNATIONAL AVIAT,T1100\nRN,SELF,J1100\nACCOUNTANT,TURNER & JONES LLC,F5100\nMANAGER,BAYSTATE CRUISE COMP.,Y4000\nPrivate Equity,Pound Capital Ltd,F0000\nOWNER COURTYARD AT BECKY,,Y4000\nFIM/VIDEO EDITOR,SHOWCASE POST PRODUCTION  INC.,Y4000\nAttorney,\"Boies, Schiller & Flexnor\",K1000\nAsst. Media Director,Save a Life Foundation,Y4000\nPRESIDENT CEO,ATLANTIC MARINE,T6100\nCAR DEALER,LEE IMPORTED CARS INC.,Y4000\nLH Attorney,Milbank Tweed,K1000\nPresident,Suss Pontiac-General Motors Corp.,G1200\nManaging Director,Greenhill SAVP,F2300\nGUARANTY BANCSHARES,COMMERCIAL,F1100\nAK COUNCIL OF,,Y4000\nATTORNEY,LEWIS LAW,Y4000\nrealtor,slef,F4200\nFARMER,MELVIN C. LOWREY FARMS,A1000\nPhysician,VA,Y4000\nAUTOMATED & CUSTOM FOOD SERVICES LP,,G2910\nDirector,RBC Dain Rauscher Corp.,F2100\nSYSTEMS ENGINEER SR STF,Lockheed Martin,D2000\nPara Educator,Jeffco Public Schools,X3500\nMANAGING DIREC,EARLY STAGE PARTNERS,Y4000\nCEO,Columbia Consultants,Y4000\nDIRECTOR OF CONGRESSIONAL AFFAIRS,NAPHS,H2100\nPAYNE WOOD & LITTLE JOHN,,Y4000\nBusiness Development Specialist,\"Mikro Systems, Inc\",Y4000\nDERAND/PENNINGTON/BASS,,Y4000\nHR DIRECTOR,GRUBBS NISSAN,T2310\nOWNER,INFINITY CAR DEALERSHIP,T2300\nOWNER,SEACRAFT - COMAR/OWNER,T6100\nCEO,WATSON LAND CO,F4100\nDATA PROCESSING MAN,NYSE REGULATION,F2400\nARNOLD COMMUNICATIONS INC,,Y4000\nATTORNEY,LUEBBEN JOHNSON AND BARNHOUSE,K1000\nPresident,Carney Roy and Gerrol,Y4000\nBP AMERICA/RETIRED/RESEARCH CHEMIST,,X1200\nSTRADLING YOCCA CARLSON & RAUTH,,K1000\nJOHN W DANFORTH CO,,Y4000\nVICE PRESIDENT,RGA,F3300\nVice President Cement,Capitol,B1000\nCUNNINGHAM INC,,Y4000\nPartner,Troy-Milo,Y4000\nVice President  Eng Ops,Comcast,C2200\nDIAGNOSTIC,M & S IMAGING ASSOCIATES,H1130\nS,\"PACIFIC PRODUCTS & SERVICES, INC.\",Y4000\nPETERSON KASPER,,Y4000\nHIGH SCHOOL  AND MIDDLE SCHOOL TEACHER,RETIRED,X1200\nPresident,M & S Masonry,B0500\nCfo,\"Pinnacle Eye Care, Llc\",Y4000\nDIEGIDIO CONSTRC INC,,B1500\nPharmacist / Consultant,P.C.C.A. Houston  Tx.,Y4000\nAnesthesiologist,Springfield Anesthesiologist Services,H1130\nVALLEY HOUSE ANTIQUES,,G4600\nPresident,Smith-Free Group,K2000\nNATURAL HEALTH CONSU,SELF EMPLOYED,J7400\nOwner,Sweetbriar Homes Inc.,B2000\nREALTOR,FARMS & ACREAGE,F4100\nPresident,Euclid Financial Group,F0000\nPODIATRIST,METRO TULSA FOOT AND ANKLE,Z9500\nAntique Business,Self,G4600\nFLAVORS OF NA,,Y4000\nOWNER,BENNETT LUMBER,A5000\nSmall Business / Finance,IndexIQ,J1100\nCEO,ASR,Y4000\nSELF/FARMER/RETIRED,,X1200\nAVP MERCHANDISE SVC DESIGN,BNSF RAILWAY COMPANY,T5100\nPLANN,\"STAN CLAUSON ASSOCIATES, INC.\",Y4000\nVICE PRESIDENT OF NORTHEAST DIVISION,\"CONSTELLATION BRANDS, INC.\",G2820\nDirector Audit,General Motors,T2100\nAttorney,\"Bonnett, Fairbourn\",J1200\nMedical Physicist,M.D. Anderson Cancer Center,H2100\nARVEST OKLAHOMA NATIONAL BANK,,F1100\nNeurosurgeon,John Hopkins Hospital,H1130\nCorporate Executive/,Robert W. Parchment Plumbing,B3400\nConsultant,\"Downey McGrath Group, Inc\",K2000\nPresident,HJ Heinz Company,G2100\nFinancial Advisor,The AFP Group,Y4000\nVice President,\"Lowe's Company, Inc\",G4500\nContractor,Johnson Barnes & Finall Inc.,Y4000\nATLAS CHIROPRACTIC,,H1500\nCO-CHAIR,BILL & MELINDA GATES FOUNDATION,X4100\nFREEZER LONGLINER,,Y4000\nAttorney,\"Stripling,McMichael,Stripling PA\",K1000\nManager of Business,Milan Records,Y2000\nCEO,Parkview Metal Products,M5000\nREQUESTED,REQUESTED,F4500\nCeo,Doctors Med Group,Y4000\nBEVERAGES/BEER DISTRIBUTING,\"HOCH, INC.\",Y4000\nPORTFOLIO,IRIDIAN ASSET MANAGEMENT,F2100\nGrant Writer,Neil Goldstein,Y4000\nAttorney/Owner,Northstar Moving,K1000\nCRNA,PROVENA COVENANT MEDICAL CENTER,H1710\nAttorney,\"Lucky, Enrique, Piacenti & Onigiel PC\",K1000\nTeacher,Woodland Country Day School,Y4000\nOWNER,CENTRAL METALS,J7500\nSales,Toyota Of Santa Barbara,T2310\nSales,Consultant,J1100\nSECURITY OPERATIONS,VILIGANT MINDS,Y4000\nattorney,\"Fissher, Sweetbaum & Levin\",K1000\nQueens County Conservative Party,Chairman,J1100\nCONSULTANT,KRIEG DEVAULT LLP/CONSULTANT,K2000\nDRAKES LARDER ASSOCIATES INC,,J7400\nBusiness Owner,AmericaVest Capital,J1200\nREGISTE,GUNDERSON LUTHERAN HOSPITAL,H2100\nFOREIGN AFFAIRS SPE,DEPT OF DEFENSE,X5000\nOWNER,TOWNS INSURANCE & FINANCIAL LLC,F3100\nPROFESSOR,TUFTS UNIVERSITY,J9000\nCHESTER HOFFMAN WILLCOX,,K1000\nCEO,\"MASS. ASS'N. FOR THE BLIND\",Y4000\nUNITE HERE,,LG000\nVICE PRESIDENT,THE PITTSTON COMPANY,T1500\nChief Financial Offi,Oxford Health Plans,H3700\nEharris12nkc.RR.com,R,Y4000\nRetired,\"General Plasma, Inc\",Y4000\nInvestor,The Beal Companies,F4000\nBEASLEY CASEY AND ERBSTEIN,,K1000\nBRAND S TIMBER,,A5000\nOWNER,IHOP #1507,Y4000\nPHYSICIAN,RANIER ANES ASSOC,H1130\nSTANDARD REGISTER COMPANY,,C1300\nMKTG/COMMUNICATION,SELF-EMPLOYED,G0000\nPROGRAM ANALYST,HHS/OIG,X3000\nEQUITY INVESTORS,,F0000\nPastor,Pilgrim MB Church,X7000\nC.E.O.,MASS MUTUAL,F3300\nCpa,Givelekian Arthur Certified Public,F5100\nPROFESSOR,WASHINGTON UNIV ST L,H5100\nINVESTMENT BANKER,SAGENT ADVISORS,Y4000\nBuilder,Gaines Pansing & Hogan,B2000\nMusic Professor,Depauw University,H5100\nOwner,Christensen Brothers Inc.,Y4000\nHORSE BREEDING,SELF,J1100\nRunning for Macomb County Executive,None Currently,Y2000\nBUSINESS OWNER,LUSCANDA HEALTH/BUSINESS OWNER,Y4000\nLoan Officer,Washington Mutual Bank,F1200\nNURSE,UCSF MED CENTER,Y4000\n\"ACME NAT'S HEAT TREATIN\",,G0000\nCARDIOVASCULAR SPECIALISTS,,H1130\nCHAIRMAN,CLUB CAL NEVA,Y4000\nCENTRAL VACUM SUBCONTRACTOR,,Y4000\nINSURANCE AGENT,\"FRATES INSURANCE & RISK MANAGEMENT, LL\",F3100\nAttorney,\"Krislov & Associates, Ltd.\",K1000\nFIRST AMERICAN MUNICIPALS,,F2100\nKRAUS ADAMS CO INC,,Y4000\nDIRECTOR,MYSELF,G0000\nPresident,Preferred Medical Staffing,H0000\nPA TRAUMA SYSTEMS FOUNDATION,,JH100\nprofessor,Howard University,H5100\nINTERNATIONAL PAPER,SALES REP,A5200\nINTERNATIONAL MEDICAL CORPS,,H0000\nScientific and Technical Consu,Self-Employed,J1200\nOPTOMETRIST,\"WARNER'S\",Y4000\nHOME MANAGER,,A5000\nCEO,Baron Services,Y4000\nAdministrator,City of Houston,X3000\nKLEINBERG LANGE,,K1000\nLawyer,Lynch Scrimo Attorneys,K1000\nMONA SO & COMPANY,,Y4000\nROAD,FREDERICK DERR & COMPANY INC.,B1500\nTaxi Driving,Ohana Company,Y4000\nINVESTOR,,B5100\nWPTW RADIO INC,,C2100\nINTERNAL MEDICINE,RETIRED,H1100\n\"DIRECTOR, CORP FACILITIES PLANNING/MAN\",BRIGHT HOUSE NETWORKS,C2200\nPRESIDENT AND CEO,ORCO BLOCK,B5100\nATTORNEY,WINDY CITY INC,F2100\nData Conversion Operator,United States Postal Service,X3700\nDEALER,EWING CHEVROLET INC,T2300\nOWNER,MISTICK CONSTRUCTION COMPANY,B0500\nPhysician,UCLA,Z9500\nFLORIDA STATE SENATOR/BUSINESSMAN/E,,Y4000\nPRESIDENT,Great Western Capital Mgt Inc.,F0000\nPhysician,Premier Eyecare,Y4000\nINVESTMENT REAL ESTAT,SELF-EMPLOYED,F4000\nRICHARD C BOST,OFFICE,Y4000\n\"KRAMER NESSEN, LEVIN, KAMIN ET AL\",,Y4000\nADVANCE/ NEWHOUSE COMMUNICATIO/GENE,,C2200\nFinancial Director,Proctor & Gamble,M1300\nLINDNER AND COMPANY,,F4000\nSTOKES AND BARTHOLOMEW,,Y4000\nGENERAL VICE PRESIDENT,IUPAT,LB100\nCLOCKMAKER,,Y4000\nPRES,BLANCHARD & JOHNSON TRANSPORTATION,T0000\n\"Director, Global Pro\",\"Praxair, Inc.\",M1000\nSOFTWARE ENGINEER,NEXT JUMP,Y4000\nSOUTHERN NEW ENGLAND FARM CREDIT,,A4000\nCHIEF,EMPIRE BLUECROSS BLUE SHIELD,F3200\n\"VICE PRESIDENT, PLATFORM & INTEGRATION\",\"COURSESMART, LLC\",C5140\nKAZAN MCCLAIN EDISES SIMON & F,,Y4000\nPawn Broker,American Pawn,G4600\nSpeaker,Weight Watchers,J1200\nGovernment Relations,DEA,Y4000\nPRINCIPAL,\"CLYDE'S RESTAURANT\",J1100\nCITY OF WORCEST,SWEENEY REAL ESTATE,F4000\nRETIRED SOCIAL WORKER,CAREGIVER FOR MY HUSBAND,Y4000\nHr Manager,The Gillette Company,M3300\nManufacturing Execut,\"American Polarizers, Inc.\",Y4000\nATTORNEY,GIDLEY SARLI & MARUSAK,Y4000\nSCHUSTERS BLOCK,,B5100\nPCG FINANCIAL ADVISOR (LO),\"WELLS FARGO ADVISORS, LLC\",F1100\nExcrow Branch Manage,Old Republic Title Ltd.,F4300\nPSYCHIATRIST,Self-Employed,H1110\nREAL ESTATE,HARRY NORMAN,Y4000\nManagement Consultant,Liberty Capitol,Y4000\nBOSTON FINANCIAL CORP,,F4000\nNICHOLAS - CALIO,,K2000\nBroker,Realty Executives,F4000\nLOCAL SECRETARY,AFM,LG400\nPRESIDENT,ROCK CITY MECHANICAL,Y4000\nINSURANCE BUSINESS,KRAMOR-WILSON COMPANY,F3100\nPETROLEUM GEOLOGIST,INDEPENDENT,E1120\nInformation Requeste,\"Usco, Inc\",Y4000\nretired physics prof,retired,X1200\nPhysician,Durst Family Medicine,H1100\nExecutive,Fieldale Farms,A2300\nCFO,MORGAN & MORGAN PA,K1000\nExecutive Director,\"Shore Memorial Hospital, Somers Point\",H2100\nPRESIDENT F,HONEYWELL INTERNATIONAL,M2300\nVACANTI & RANDAZZO COMPANY,,F4100\nSALES,SERVICESOURCE INC.,Y4000\nEXECUTIVE,LIBERTY OIL CO,G2100\nCHAI,HENRY & MARILYN TAUB FOUNDATIO,Y4000\nPRESIDENT,POINT CENTER FINANCIAL,F0000\n\"Facilitator, Trainer\",Blair Miller & Associetes LLC,Y4000\nMCJUNKIN APPALACIA,,Y4000\nSECRETARY OF STATE,MINNESOTA,J7400\nBROKRGE DIV MGR,UNITED PARCEL SERVICE INC,T7100\nPUBLIC POLICY MANAGER-PRIVACY,FACEBOOK INC.,C5140\nFederal Employee,US Department of Education,X3500\nCARNIVAL OWNE,POWERS GREAT AMERICAN,G6100\nOWNER,DIGITAL CONTROL INC,T1400\nTHE HAHN CO,,F4500\nOWNER,ERV SMITH SERVICES,Y4000\nATTOR,GROSS MINSKY MOGUL AND SINGAL,K1000\nSVP SALES & MARKETING,BENEFIT MARKETING SOLUTIONS,Y4000\nChief Engineer/Western Region,UNION PACIFIC RAILROAD,T5100\nOwner,Santa Barbara Capitol,F0000\nRetail Manager,\"Blue Ribbon Cleaners, Inc.\",G5500\nOwner/founder/founde,God`s Helper,Y4000\nPresident,Delta Renovations,Y4000\nAMERICAN CRANE,,B1000\nMANAGING PARTNER,GLOVER PARK GROUP,K2000\nIBM CORP TIVOLI SYSTEMS DIV,,C5100\nSENIOR MANAGING DIRE,\"BEAR WAGNER SPECIALISTS, INC.\",F2100\nHOT SPRINGS HIGH SCHOOL,,X3500\nWAGES FUNERAL SERVICE INC,,G5400\nCONTRACTOR,ALASKA MECHANICAL INC.,Y4000\nExecutive,Nascar,G6400\nECKADAMS,,Y4000\nInvestment Banker,Capital Run Llc,J7400\nLERACH COUGHLIN STOIA GELLER RUDMA,,K1100\nPRESIDENT,CARROLL INSULATION CO.,B3000\nSENIOR EXECUTIVE VICE PRE,METAVANTE,F5500\nADV. EXEC,MOST,Y4000\nPRESIDENT,RON MAY TOWING,T3100\nChief Executive Offi,Pimco Advisors,Y4000\nBB&T PERSONAL TRUST,,Y4000\nPrivate equity,wingate partners,F2100\nBUSINESSMAN/SELF,ANLIN INDUSTRIES,Y4000\nSOCIAL WORK,BAPTIST HOSPITAL EAST,Z9500\nSHARON SAVINGS & LOAN,,F1200\nBURGESS HARRELL ET AL,,Y4000\nPRESIDENT AND,EXTENDED STAY AMERICA,T9100\nTRY IT DISTRIBUTING,,G2850\nNEIL CONSTRUCTION,,B2000\nExecutive,Hartford Inc,F3100\nCOMPUTER SO,\"FOWLER ENTERPRISES, INC\",Y4000\nUNIVERSITY,UNIVERSITY OF CINCINNATI,H5100\nPrincipal,\"The Aspen Companies, LLC\",F1200\nExecutive Vice President,Koch Supply & Trading LP,E1160\nPHOTOGRAPHER,INTERLENSE,Y4000\nTOMS VENDING CO,,G4850\nFENCE BUSINESS,,Y4000\nresearch,GSK,Y4000\nHOMELAND REALTY,,F4200\nPurchasing Admin,Keane Inc,C5130\nMITSUBISHI INTERNATIONAL CORP,,Y4000\nOwner,GHS Inc.,Y4000\nSMITH HINCHMAN,,B4200\nOWNER,HOLMES-TACKER INTERNATIONAL INC.,Y4000\nBERNARD M GROSS P C,,K1000\nVocational Rehabilitation Counselor,State of Alaska,X3000\nAudio,Knockout,J1200\nSTATE BANK OF COKATO,,F1100\nPartner,Konterra LP,F4100\nREAL ESTATE,ARIZONA GOLD PROPERTIES,F4000\nphysician,University Internal Medicine Specialis,H1130\nTHE CARGLE GROUP,,Y4000\nReal Estate Broker,C N C Equity Ltd,F4200\nOwner,Buffington Realty Co,F4200\nOWNER,SEWELL BUICK-TOYOTA,T2300\nInsurance Agent,The Writer Agency,F3100\nPRIVAT INVESTIGATOR,SELF,G5290\nEXECUTIVE,AR INTERNATIONAL,Y4000\nKOOTENAI GALLERY,,Y4000\nREAL EASTATE AGENT,SELF EMPLOYED,G0000\nSenior Vice-presiden,Woolrich Inc.,Y4000\nPRESIDENT,GENSYM,C5120\nCHAIRMAN & C.E.O.,SUMMIT PETROLEUM LLC,E1120\n\"EVP, CAO & GENERAL COUNSEL\",AMERICAN SAVINGS BANK,F1100\nWESTBERRY PARK,,Y4000\nPATHOLOGIST,UNIVERSITY PATHOLOGISTS,H1130\n\"WESTERN INT'L MEDIA\",,G5210\nOKLA MED RESEARCH FOUNDATION,,Y4000\nSYSTEMS ENGINEER,USRA,Y4000\nTECHNOLOGY,60EAST TECHNOLOGIES,Y4000\n\"BARRY, EVANS, JOSEPHS & SNIPES INC.\",,Y4000\nFREY & SON FARMS,,A1000\nINVESTOR,MOUNT INDEPENDENCE INVESTORS,J1200\nINVESTMENT MANAGEM,NEUBERGER BERMAN,F2100\nCOUNTRYSIDE MOTEL,,T9100\nOPTHAMOLOGIST,UNIVERSITY OF KENTUCKY CHANDLER HOSPIT,H5100\nExecutive Consultant,Jewish Federation,H6000\nEducation Consultant,Alexis Colker,Y4000\nBIOMEDICAL RESEARCH,D.E. SHAW & CO.,F2700\nVENTURE CAPITALIST,FF VENTRE CARTER,F2500\nEnforcement Director,WV Alchol & Beverage Control,Y4000\nSELF-EMPLOYED FINANCIAL PLANNER,\"BLACKSTON'S INSURANCE & FINANCIAL SOLU\",F3100\nHotel & Casino Gamin,\"New York,New York\",G6500\nBANKING,J.P. MORGAN CHASE & CO.,F1100\nConsulting,First International Resources,G5260\nPARTNER,SZELES REAL ESTATE DEVELOPMENT,F4000\nGENER,SOUTH CAROLINA ELECTRIC & GAS,E1620\nPERRY MOSKOVITZ COMPANY,,Y4000\nManager,\"Core180, Inc\",Y4000\nSELF-EMPLOY,GORDON AUTOMOTIVE GROUP,Y4000\nCEO/Publisher,\"Sage Publishing, Inc.\",J7400\nAttorney,Aiken & Scoptur,K1000\nCertified Public Accountant,Maillie Falconiero & Company,F5100\nANESTHESIOLOGIST,AGH/ANESTHESIOLOGIST,Y4000\nBUSINESS OWNER,LM CONSULTING,Y4000\nCHAIR,BOSTON SCIENTIFIC,H4100\nDESIGN CONCEPTS UNLIMITEDM I,,Y4000\nPHIL NOBLE & ASSOC,,Y4000\nExecutive,Brennan Oil,E1100\nIndustrial Construction,\"Performance Contractor, Inc\",B1000\nVP,\"Jenkeel, Ltd\",Y4000\nCONSULTANT,\"MANCO TRADING, LTD\",Y4000\nOWNER,\"JOSEPH STRUZZO, M.D. INC.\",H1100\nCHOPPER EXPRESS,,Y4000\nATTORNEY,\"GOLDBERG & SIMPSON, LLC\",K1100\nAnalyst,Council for Logistics Research,Y4000\nPRESIDE,BURKHARDT SALES AND SERVICE,Y4000\nVP OF U.S. SALES & BUSINESS DEVELOPMEN,GTECH,G6500\nARCHITECT,,J4000\nALS CAR WASH,,G5000\nCOMPUTER PRODUCTS INC,,C5100\nPresident,Veletz Inc.,Y4000\nSenior Vice President  & General Manag,CTAM,C2200\nCorp,Oil-Dri Corporation Of America,E1100\nADMINISTR,ALBERT EINSTEIN MED. CTR.,H2100\nFilm Producer,Bruce Cohen Productions,Y4000\nREILLY INDUSTRIES INC,,M1000\nMUR CAL REALTY,,F4200\nPRES,AMERHART LIMITED,G3000\nOWNER,CREATIVE CONSTRUCTION DESIGN,B1500\nDOCT0R,,H1130\nFurniture manufactur,C.R. Laine Furniture,G4400\nPOST PROD. STUDIO OWNER,LIME LLC.,Y4000\nHOSPITAL,SAMARITAN HEALTH SERVICES,Y4000\nCONSTRUCTION,R.W. WARNER INC.,Y4000\nMETRO DADE COUNTY CAA,,JH100\nJUPITER CORP,,T3100\nTHE BAUPOST GROUP,,JE300\nDE FUR FARMS,,A0000\nHISTORIAN,SELF,K1000\nMATH EDUCATOR/WRITER,SELF-EMPLOYED,Y4000\nC W A COPE,,Y4000\nVICE PRESIDENT LAND DEVELOPMENT,PACIFIC UNION HOLDINGS,Y4000\nSHOGUN JAPANESE RESTAURANT,,G2900\nCOMPUTERIZED BUS SYS,,C5100\nEXECUTIVE,EDWARDS THEATERS,C2700\nSELF EMPLOYED,J. SCOTT INDUSTRIES,F1100\nTEACHER,SOUTH SCHOOL,Y4000\naccountant,\"Harris, Cothermon, Jones & Price\",F5100\nCEO,The Hunte Corporation,G3000\nGALLERE INTERNATIONAL,,Y4000\nPartner,Belton Koa,Y4000\nSELF EMPLOYED,MANAGEMENT GROUP INC,G5270\n\"SUPERVALU, INC\",,G2400\nEXECUTIVE,MANSBACH METAL CO,Y4000\nCONSULTANT,CA LEGISLATURE,Y4000\nATLANTIC URO ASSOC,,H1130\nATTORNEY,DAVIS,K2000\nAttorney,The Law Offices of Andre,K1000\nMANAGER,HARRISON LTD.,Y4000\nCONSTRUCTION OWNER,MA MORTENSON CO.,B1000\nSysts Architect,Clarence Peeples,Y4000\nSOCIAL WORKER,,F4000\nOWNER,PITA PACK,Y4000\nRE,\"CHILDREN'S HEALTHCARE OF ATLANTA\",H0000\nNephrologist,Huntington Internal Medicine Group,H1130\nOWNER,LUKESRACINGCOM,G0000\nPART-TIME PROFESSOR,UVM,Y4000\nPRESIDENT,ALLIED TECHNOLOGIES OF KY,Y4000\nBUSINESSMAN,LESTER ELECTRICAL,Y4000\nPRESIDENT,ELLIOT LEWIS CORP.,B3400\nMOUNTAIRE CORPORATION,,G2300\nAttorney,Ryan Phillips Utrecht and MacKinnon,K2000\nECERT INC,,Y4000\nSr. policy advisor,U S Dept of Com/NOAA,X3000\nSchool Administrator,S A Boces,Y4000\nDep Mng Director,FCC,Y4000\nPresident,The Mastermind Group Inc.,Y4000\nJERRYEND COMMUNICATIONS,,Y4000\nHotelier,Coakley & Williams Hotel Management,T9100\nCNO,Abilene Regional Medical,H2100\nATTORNEY,AKER PHILADELPHIA SHIPYARD,T6100\nPresident,Quarry Capital Partners,Y4000\nE,\"ECONOMIC CONSULTING SERVICES, LLC\",Z9500\nR H CULLEN,,E1120\nBURGESS DAVIS & CANNON,,K1000\nPRINCIPAL,H+L ARCHITECTURE,B4200\nCM GOVT RELATIONS,,K2000\nMARK N CARSON & ASSOC,,Y4000\nPRINCIPAL,CAPITAL PARTNERS,K2000\nInsurance Agent,Frost & Conn Inc,F3100\nRn,Boulder Med Cntr,Y4000\nSTORE OPER EX VP KNOX DIV,\"K-VA-T FOOD STORES, INC.\",G2400\nRECEPTIONIST,DR. PAUL POKORNY,Y4000\nPHYSICIAN,TEXAS TECH HEALTH SCIENCE CENTER,H5100\nMANAGER,CINERGY,E1620\nFire Fighter / EMS,Daytona Beach Fire/Rescue Fire Dept,L1400\nAttorney,Steptoe & Johnston,K1000\nMarketing,SELF EMPLOYED,G5280\nNon-Profit Manager,Environmental Law Institute,K1000\n\"FOLEY, HOAG, & ELIOT\",,J7400\nPIASECKI MECHANICAL,,B3400\nSERVICE MERCHANDISE CORP,,J5100\nRETIRED,CA STATE UNIV LA,Y4000\nATTORNEY,HIATT & HOKE,Y4000\nBUSINES,FLORIDA CRYSTAL CORPORATION,A1200\nExec. Director,M E A,Y4000\nSHELLFISH FARMER,SELF,G0000\nURSO AND ASSOCIATES,,F3100\nBLACK HILLS POWER AND LIGHT,,E1600\nCHAIRMAN AND CEO,MARINA TOWERS,T6000\nPHYSICIAN,RANEY & ZUSMAN,H1100\nOperations Manager,\"Risk Removal, Inc\",Y4000\nADMINISTRATOR,MCLAREN HEALTH CARE,H0000\nDIRECTOR OF SECUR,TEMPLE INLAND INC,Y4000\nDIRECTOR,HYPRES,Y4000\nINVESTOR,THE BAUPOST GROUP,Z9500\nPRODUCER,TAKE 1 PRODUCTIONS,Y4000\nEXECUTIVE,WILLOW ASSET MGMT,F2100\nREGISTERED NUR,GERBER & GARSON P.C.,Y4000\nAttorney,Looney & Gossman LLP,K1000\nOwner,Corner Pharmacy Llc,G4900\nRetired Firefighter,Nycfd,Y4000\nEmergency Physician,Brevard Emer Svcs,H1100\nFINANCE,WESTCAP MANAGEMENT,Y4000\nSELF,SELF,H1400\nPRESIDENT & CEO,THE CENTURY COUNCIL,K2000\nCHIEF FINANCIA,OUR LADY OF THE LAKE,Y4000\nPRESIDENT,TRIAD COMMERCE LTD,J1200\nTECHNOLOGY PARTNERS,COMPUTER SOLUTION ARCHITECT CONSULTANT,Z9500\nPARTNER,LOEFFLER TUGGEY ET AL,K2000\nDORCHESTER DOOR & WINDOW,,B5400\nCEO,\"Ryan, Inc\",F5300\nVP CEMENT,CAPITOL,B1000\nPRIVATE INVESTING,WEINBERG & BELL GROUP INC.,F2600\nEXECUTIVE,UPMC,H2100\nInformation Requeste,California Bank & Trust,F1000\nSENIOR DIRECTOR & COUNSEL OF FEDERAL P,MERCK/SENIOR DIRECTOR & COUNSEL OF,H4300\n\"DIR., GOV'T RELATIONS\",AMGEN,J1200\nESCAMBIA CONSTRUCTION,,B1500\nExecutive Assistant,City Of Toledo,J1200\nCOUSINS SUBMARINES,,G2900\nC,WARREN AVERETT KINBROUGH & MARINO,Y4000\nVICE PRESIDENT,PG&E CORPORATION.,E1620\nConsultant,Capital One Bank,F1000\nSELF,CLIFTON FUNERAL HOME,G5400\nArchivist,retired,X1200\nIRA KAUFMAN AND SONS,,G5400\nRETIRED,US NAVY,J6200\nHYDROMETEOROLOGIST,U.S. DEPARTMENT OF COMMERCE,X3000\nPROFESSOR & RESEARCH DIRECTOR,COLUMBIA UNIVERSITY,J7400\nrealtor,Vertical Integration Inc,F4000\nFilmaker,Self-employed,C2400\nCHATTERN INC,,Y4000\nConsultant,Ribonary Engineering,B4400\nSTATE OF CALIF,,J7400\nWAGONHOUND LAND AND LIVESTOCK,,A3000\n\"GRIFFIN, KUBIK, STEPHE\",,F2100\nATTORNEY,GOULSTON & STORRS PC/ATTORNEY,J7400\nSTALBAUM TRAVEL,,T9400\nPERSONALIZED TRAVEL SVC,,T9400\nCOUNTY OF IMPERIAL,,Y4000\nSTUDIO DIRECTOR,FIZZ FACTOR,Y4000\nExecutive VP,Royal Credit Union,F1300\nCOHEN ASSO,,Y4000\nVP HUMAN RESOURCES,WISCONSIN PUBLIC SERVICE CORPORAION,E1620\nCEO,Salk Institute,H1130\n\"FREIFUELS, INC\",,Y4000\nPOCONO PRODUCE INC,,X1200\nNY GIANTS,,G6400\nADMINISTRATOR,SEACOAST CHURCH,X7000\nRETIRED S,REEDSBURG SCHOOL DISTRICT,X3500\nPHYSICIAN,MINNESOTA EYE CONSULTANTS,H1120\nTOG ENTERPRISES,,Y4000\nHORSE BREEDER,THE OAKS FARM,A3500\nPARTNER,COTCHETT ILLSTON & PITRE,K1000\nUTILITY CONTRACTOR,GAINES & CO. INC,B1000\nMARKETING,CHI SYSTEMS,C5000\nCHAIRMAN OF,OBERER DEVELOPMENT CO.,F4100\nphysician,Harvard Medical Faculty Physicians,H1100\nOFFICER,NORPAC,J5100\nPRESIDENT,PAULEY MANAGEMENT,K2000\nAccountant,Graphics Press,Y4000\nRITTENHOUSE ADVISORS LLC,,Y4000\nOWNER,CORNERSTONE FLOORING INC,Y4000\nPLONSKI REAL ESTATE AGENCY,,F4200\nRevene Cycle Director,Unity Health Care,Y4000\nPREMIER MORTGAGE,,F4600\nHARRISON & BATES IN,,Y4000\nDATAPAY INC,,Y4000\nPRESIDENT,RICHARD S. CARSON & ASSOC,Y4000\nnot Disclosed,not Disclosed,F4000\nMEDICAL PRACTICE MANAGER,SELF,Y4000\nREGIONAL SALES DIRECTOR,BOYD GAMING/REGIONAL SALES DIRECTOR,G6500\nTEACHER,MCDONOGH SCHOOL,Y4000\nAM QUIP CORPORATION,,Y4000\nIUOE LOCAL 012,,LB100\nRADIO BILLING CONTACT,WISC-TV,C2100\nCHAIRMAN,MERCANTILE,F1100\nDWIGHT MANLEY CO,,Y4000\nCOOK & WITTER,,Y4000\nTOXICO,TABOR ENVIRONMENTAL SERVICES,Y4000\nAdmin Law Judge,Ca Unemployed Appeals Board,X3000\nwriting and speaking,self,Z9500\nlawyer,Tompkins Mcguire,K1000\nOUTDOOR AD ASSN OF AMERICA,,G5230\nROBINS PETROLEUM CORPORATION,,E1100\nOWNER,RICHARD W. PECTOL & ASSOC,Y4000\nSULLINS,,Y4000\nHENSLEY CO SHEINER DA,,Y4000\nUNIVERSITY PROFESSOR,CLEMSON UNIVERSITY,H5100\nCHIEF EXECUTIVE OFFICER,BERKADIA,F4600\nAttorney,Strook & Strook & Lavan,K1000\nCONTINENTAL NATL BANK OF MIAMI,,F1100\nPROPERTY RESTORATION AND MANAG,SELF,X3000\nPresident,Phenix Mutual Fire Insurance Compan,F3400\nLANDMAN,SABCO OIL & GAS CORP.,J1100\nManager,\"William M Hang, DDS, MSD\",J1100\nManagement Consultan,PSD International Inc.,Y4000\nADMINISTRATOR IN TRAINING,\"HCR MANOR CARE, INC.\",H2200\nSENIOR VICE PRESIDENT,SUPPLY FORCE,Y4000\nOfficer,U.S. Navy,J1100\nDirector,Volunteers of America,Y4000\nInsurance Agent,Ronald M Whitaker & Co,F3100\nDIRECTOR & CO-PRESIDENT,STAVROS NIARCHOS FOUNDATION,Y4000\nMATTISON & CO,,Y4000\nWILFARM LLC,,A4100\nREAL ESTATE D,\"WCI COMMUNITIES, INC.\",F4100\nSACHS ASSOCIATES INC,,G5270\nMONEY MANAGER,ONEWALL ADVISORS,Y4000\nEngineer,SABIC Innovative Plastics,M1500\nSONIC DRIVE INC,,Y4000\nMIDSTATE MEAT CO,,G2300\nGranny gunning for neocons,\"Larry's Gifts\",Y4000\nCEO,HNTB,B4000\nPROPERTY MANAGE,DOWNTOWN LOCUST LLC,F4500\nATTORNEY,DOWD BENNETT LLP,K1000\nCEO,Tweezerman Corp.,Y4000\nDTL LTD,,Y4000\nVILTAS PRODUCTIONS,,Y4000\nSELF EMPLOYED,R & D ASSOCIATES,J1100\nATTORNEY,\"BROWN, WILLBRAND, SIMON, POWELL & LEWI\",Y4000\nExecutive,CAI,J1100\nATTORNEY,FIRST HORIZON NATIONAL CORP./ATTORN,F1100\nCHAIRMAN,BROKERS CLEARING HOUSE,F3000\nReal Estate,Anderson Realty,F4200\nPRESIDENT,FOSS MFG.,M8000\ndirector of real est,DavCo Inc,G2900\nBUSINESS ANALYST,PERFICIENT INC/BUSINESS ANALYST,C5130\nFIELDING BARRETT & TAYLOR,,K1000\nAMBULANCE MANAGER,ARIZONA AMBULANCE TRANSPORT,Y4000\nIL SMALL BUSINESS DEV CENTER,,G1200\nEditor and Writer,Self employed,C1100\nMarketing Consultant,Buckley Pell Associates Inc,Y4000\nVICE PRESIDENT,BURLINGTON HOMES/VICE PRESIDENT,B2000\nCarpenter,Self employed,J1200\nExec,Personal Decisions Inc,G5270\nRADIAT,INTERCOMMUNITY CANCER CENTER,H1130\nEXECUTIVE DIRECTOR,VERZION WIRELESS,Y4000\nREITRE,NOT EMPLOYED,X1200\nUniversity of North Carolina,,H5100\nJONES CAFE INC,,G2900\nBELMONT MAN CO,,B1500\nHEALTH PRODUCTS SALES,,J5100\nASSOC,AMERICAN CONSTITUTION SOCIETY,J9000\nCARDI,ASSOCIATES IN CARDIOLOGY INC.,H1130\nProfessor,Retired,J7400\nFORMAN BROTHERS,,G2820\nSCHOENFELD & ROBINSON,,Y4000\nPhysician,NYC Dohmh,J1200\nMANAGING DIRECTOR,ICAP SERVICES NORTH AMERICA,F2200\nCeo,Nazca Solutions,Y4000\nFinance,EKO Asset Management Partner,Z9500\nREPUBLIC-RSB COMPANIES INC,,F5000\nEXECUTIVE,PERCEPTA PARTNERS LLC/EXECUTIVE,Y4000\nATTORNEY,WINDERWEEDLEHAINES ET AL,K1000\nDEPT OF HEALTH & SOCIAL SERV,,X3000\nNOT FOR PROFIT EXEC.,NONE,X4000\nNAPA AUTO PARTS,,G1100\nCEO ANNABELLE & EMMET,SELF-EMPLOYED,Y4000\nPARTNE,ANSCHUTZ ENTERTAINMENT GROUP,C2000\nPATHOLOGIS,QUEEN OF THE VALLEY HOSP,H1130\nSoftware Trainer,Ct Corporation,K1000\nHEALTHCARE MANAGEMENT CONSULTANT,\"LAUREL ASSOCIATES, LLC\",Y4000\nEXECUTIVE,MIDDLEGATE SECURITIES,F2100\nVERMILION PROPERTIES,,Y4000\nExecutive/Clergy,Community Renewal Society,Y4000\nUNIVERSITY OF CA,,J1200\nANESTHESIOLOGIST,HRMC,H1130\nOWNER,P3SM LLC,Y4000\nGUINNESS NETWORK,,Y4000\nMANAGED HEALTHCARE SYS,,H0000\nCook,Darden Enterprises,Y4000\nChairman,Parmount Capital,F2100\nAnesthesiologist,University Physicians,H1100\nEMPLOYER,,Y4000\nCHIEF NUR,CAMBRIDGE HEALTH ALLIANCE,H0000\nDirector - Wealth Management,Citi Family Office,Y4000\nCOO,CTCA,H2100\nPrincipal,Samaha & Associates,Y4000\nFinancial Services,Pzena investment Management,F2100\nPrincipal,SNR Denton,K2000\naccountant,\"Gill & Kohr, CPA\",F5100\nSTATE OF NY,,J5100\nExecutive Managment,Interwooven Inc.,Y4000\nC&H SUGAR COMPANY INC,,A1200\nOWNER/MANAGER,THE APOTHECARY SHOPPE INC,H1750\nFILMMAKER,SELF-EMPLOYED,J7400\nHousing Consultant,Poua,Y4000\nFt Manager,Progressive,F3400\nCEO,HEALTHCARE CONSORTIUM,H0000\n\"HASKELL, SLAUGHTER, YOUNG & RIDIKEN\",,K1000\nANESI OZMON LINDENMUTH & RODIN,,K1000\nWICKENDEN ASSOC,,H5000\nWELKER BEARING,,M5000\nUNITED HOLDINGS,,C2200\nCONSULTANT,CBH,Y4000\nInsurance Sales,Perry & Carrol,Y4000\nASST. BUSINESS MANAGER,INTL.UNION OF OPERATING ENGINS.,LB100\nLOVING GROUP INSURANCE,,F3300\nDECISION FOCUS INC,,Y4000\nExecutive,Auto Club Group,F3100\nOWNER,MAURY CARTER & ASSOCIATES,F4000\nPETROLEUM ENGINEER,N.A.,J1100\nattorney,\"Pachulski, Stang, Ziehl and Jones\",K1000\nSales,MS Walker,Y4000\nAT HOME,,F4100\nPRINCIPAL,INGRAM INDUSTRIES,C1100\nManaging Member,LABORDE MARINE MGMT LLC,Y4000\nEXECUTIVE VICE PRESIDENT,EBY-BROWN,G3000\nEXECUTIVE,IN PRO CORPORATION/EXECUTIVE,M1500\nPHOTON RESEARCH ASSOCIATES INC,,Y4000\nLiterary agent,Self,C1100\nVICE PRESIDEN,US SMOKELESS TOB. CO.,A1300\nMUERER ENGINEERING INC,,Y4000\nBUSINESS EXECUTIVE,REGENCY HOSPITAL COMPANY,H2100\nSETTOON MARINE INC,,Y4000\nEMORY TELEPHONE CO,,C4100\nPRINCIPAL - STRUCTURAL DIVISION,\"SOIL & STRUCTURE CONSULTING, INC.\",Y4000\nInvestment Manager,JMIC,F2100\nEXECUTIVE,E.I. DU PONT DE NEMOURS,M1000\nLOBBYIST,HUMANA INC.,H3700\n\"SUBURBAN TOOL, INC\",,Y4000\nWOOD RIVER RANCH,,A3000\nCRAWFORD-EDGEWOOD MNGRS,,Y4000\nTITLE AGENCY,CHELSEA TITLE AGENCY,F4600\nCPA,LARSON ALLEN WELSHAIR,Y4000\n\"SHANLEY, FLEMING & ASSOCIATES\",,Y4000\n\"CEO, A9.COM\",AMAZON.COM HOLDINGS INC.,C5140\nPresident,Dilaog,Y4000\n\"COULSON OIL CO., INC.\",,E1100\nEXECUTIVE,PFIZER ANIMAL HEALTH,J1200\nSalan/Day Spa Owner,Bramco,Y4000\nALLIED METAL,,M5000\nStaff,Hon. Adam Bradley,Y4000\nKNOXVILLE MOTOR CO,,T2310\nMADDEN CONSTRUCTION,,J1200\nlobbyist,Compass Consulting Group,K2000\nASSET MANAGER,MERRITT CAPITAL PARTNERS,Y4000\nVP,OTP,Y4000\nBUSINESSMAN,PACKAGING,M7000\nDirector of Research Development,University of North Carolina,H5100\nOwner,Chi-Ko-Japanese Rest,Y4000\nJAILER,BOONE COUNTY,X3000\nPHYSICIAN,HEART CLINIC AR,H1100\nChief Financial Offi,World Chiropractic Alliance,H1500\nTRIAL,KOSKOFF KOSKOFF & BIEDER P.C.,K1000\nExecutive Producer,Voice of America,J9000\nFOUNDER,PATRICK WOLFFE GROUP,Y4000\nAPPLETON SPECIALTY,,Y4000\nOIL EXEC RETIRED,,X1200\nPRESIDENT,AMERICAN POOL SERVICE CORP.,Y4000\nProfessor,ST. LOUIS UNIVERSITY,H5100\nMarkert Researcher,Self,J7400\nSR. VP,INDIANA UNIVERSITY,H5100\nHOUSE WIFE,SELF-EMPLOYED,Y4000\nlawyer,Baach Robinson & Lewis pllc,Z9500\nPRESIDENT CONST CO,SELF,Y4000\nSenior Vice Presiden,Monsanto,A4000\nPROGRAM MANAGER,BANK OF AMERICA,F1100\nLOGISTICS PLUS,,Y4000\nIndependent-Business,Self-Employed,Y4000\nPHYSICAL THERAPIST,\"AMY M MERRY, MS PT\",Y4000\nMANAGEMENT CONSULTANT,\"PROFITABLE SOLUTIONS INSTITUTE, INC\",Z9500\nOWNER/VETERINARIAN,EQUINE HEALTH SERVICE,Y4000\nPHYSICIAN,\"DONALD WESTON, MD\",H1100\nBUSINESS OWNER,LAUDI VIDNI,J7400\nConsulting,\"Fierce, Isakowitz & Blalock\",K2000\nINVESTOR,BC PROPERTY INVESTMENTS,F4000\nEvent Planning Consultant,Self-Employed,G0000\nFOUNDER & CHAIRMAN,\"BROOK FURNITURE RENTAL, INC.\",G5300\nRetired,GE-Retired,X1200\nCONSULTANT,CITADEL ENVIRONMENTAL SERVICES,E2000\nMANAGING D,US BANCORP PIPER JAFFERY,F2100\ncomputer software,retired,X1200\nPsychotherapist,\"Howard Counseling Services, Inc\",X3500\nVice President,POET,X0000\nCAPITAL MANAGEMENT ENTERP,,F5000\nlawyer,Ford and Harrison LLP,K1000\nExecutive Director,The Foundation for Human Potential,Y4000\nOwner,Bay Towel,Y4000\nPRESIDEN,PELLERIN LAUNDRY MACHINERY,G5500\nATTORNEY,COLEMAN SUDOL SAPONE PC,Y4000\nAttorney,Patterson Belknap et al./,K1000\nTERRY FELDMANN IMPORTS,,T2300\nVICE PRESIDENT,FHL BANK,F4600\nCIVIL ENGI,KIMLEY HORN & ASSOCIATES,Y4000\nSpence Enterprises,Self-Employed,G0000\nBUSINESS OWNER,BOOKCLIFT MANUFACTURING INC.,Y4000\nCO-FOU,ENVIRONMENTAL SYSTEMS RESEAR,C5120\nFEDERAL EMPLOYEE,ON FILE,Y4000\nPRESIDENT,THE CONNECT US FUND,Y4000\nINFO REQUESTED,LAMKIN HEATING,B3400\nMRD CONSULTING INC,,Y4000\nSMALL BUSINESS OWNER,ALDER SALES CORPORATION,Y4000\nPresident,\"D'Addario & Co\",M4000\nPresident,\"Forsyth Insurance Group, Inc\",F3100\nPhysician,Case Medical,H1100\nChairman CEO,Merrick Engineering,B4400\nAsst Vice President/Operations Mgr,Fidelity National Financial,F4300\n10TH COURT OF APPEAL,,X3200\nDISTRICT MANAGER,LOREAL,M3300\nLETNER ROOFING CO,,J1100\nDIAGNOSTIC RADIOLOGIST,BORG & IDE IMAGING,H1130\nPresident,Lucerne Valley Market,G1200\nDAN J SMITH DISTR,,E1100\nAttorney,Law Firm of Clifford Haines,K1000\nNONE/MOTHER/HOME,,Y1000\nASSOCIATE,\"HURT, NORTON & ASSOCIATES\",K2000\nIESB,,Y4000\nCUSTOM,BLUE CROSS BLUE SHIELD OF MS,F3200\nSLABACH ELECTRIC INC,,Y4000\nHENRY H LEWIS CONTRACTORS INC,,B0500\nChief Marketing Officer,Amerigroup Corporation,H3700\nHEALTH INDUSTRY MAW,,H4100\nOwner,Garnet Specialty Food,Y4000\nOWNER,GREENBAUM INTERIORS,Y4000\nVICE PRESIDENT STRATEGIC DEVELOPMENT,BILLINGS CLINIC,H2100\nFINA,POPLARVILLE FINANCIAL SERVICES,F5000\nPHYSICIAN,NORTH IOWA EYE CLINIC,H1100\nW T YOUNG INC,,T7200\nDirector of Ancillary Operatio,First National Administrators,F3200\nCAHILL & GORDEN PC,,K1000\nCLARK DEPEW SEISS,,Y4000\nBusiness Development Consultant,State of Nebraska,X3000\nSales Engineer,\"Dennis Don & Association, Inc\",Y4000\nGeneral Counsel,Walt Disney Company,C2000\nConsultant,\"Calio & O'brien\",Y4000\nMICRO-DYNAMICS INC,,Y4000\nOWNER,WAL MART,F2500\nDeveloper,Great Atlantic Real Estate,F4000\nEXECUTIVE,TRI-MET,Y4000\nINVESTER/HOMEMAKER,SELF,F7000\nZIMMER STIENBACH,,Y4000\nO NETWORKS,E,Y4000\nVICE PRESIDENT-SALE,RECRENOICS INC.,Y4000\nManager,Continnum Partners (Real Estate),F4000\nVice President & C.O,Village Automotive Group,Y4000\nDEYKEMA GOSSETT P L L,,Y4000\nPAPPAS MANAGEMENT CO,,F4100\nATTORNEY,IPR INTERNATIONAL,Y4000\n\"VP, ENVIRONMENTAL\",UNITED CONSULTING,Y4000\nExecutive,Jacksonville Greyhound racing,G6500\nPresident,Impex International,Y4000\nOwner,Kerry N. Cammack P.C.,K1000\nPresident,Fundacion Amistad,Y4000\n\"DIRECTOR, DISTRIB\",MORNINGSTAR FOODS,A2000\nGOVERNMENT RELATIONS,LOS ALAMOS NATIONAL LABORATORY/GOVE,X3000\nRESORT MANAGEMENT,SELF-EMPLOYED,T9300\nATTOR,WARLICK TRITT STEBBINS & HALL,Y4000\nSENIOR PARTNER AND VICE PRESIDENT,HAWTHORN,G5260\nREAL ESTATE INVESTOR,EUGENE M. GRANT COMPANY,F4100\nTEACHER,MORRIS PLAINS BORO/TEACHER,L1300\nBD. OF REG.,CHOCTAW COUNTY,X3000\nSELF/DIRECTOR/PRODUCER,,Y3000\nDEP,ORTHOPEDIC PHYSICIANS ANCHORAGE,H1130\n\"LAKE'S CROSSING CENTE\",,H1710\nN Y DEM PARTY,,J1200\nConsultant,Codify Corp,Y4000\n\"PHYSICIAN'S ASSISTANT\",HAZARD ARH,Y4000\nOFFICE MANAGER,ROCK-TENN,M7100\nPERRY B HALL COMPANY INC,,F4000\nAttorney,Law Office of Lisa D Wright LLC,Y4000\nPresident,\"Levin, Leff, & Pollock, Dds, Ltd.\",H1400\n,COPPERSMITH GORDON SCHEMER OWENS &,Y4000\nCO-FOUNDER,VETERANS UNITED HOME LOANS/CO-FOUND,F4600\nATTORNEY,BRADY KLEIN WEISSMAN LLP,Y4000\nRESTAURANT OWNER,PINELLI-MARRA REST GROUP,G2900\nPolicy Advisor Immigration and Refugee,United States Conference of Catholic B,Z9500\nMP VENTURES,ELEMENT SIX,Y4000\nPresident & COO,\"Fred Weber, Inc\",B1000\nReal Estate,Space,F4000\nVice President,ZC Sterling,F4600\nPHARMACIST,LAKE PHARMACY,H1750\nEngineer,A. S. C.,B4400\nEducation,Kipp Foundation,Y4000\nINSURANCE AGENT,\"COMPREHENSIVE UNDERWRITERS, INC.\",Y4000\nProcessor,\"Heritage Dedicated Services, Inc.\",A2300\nHAMILL FINANCIAL GROUP,,Y4000\nLawyer,\"Perkins Coie Llp, Portland /Lawyer\",K1000\nCFO,LPS INC.,Y4000\n\"EVP, INFORM. TECH.\",ESCLIELON,C4100\nCEO,Emerson Hardwood Company,A5000\nPRESIDENT,USA COMPRESSION,E1120\nLAC DU FLAMBEAU BD OF LK SUP,,G6550\nTOUCHSTONE RESEARCH LABORATORY,,Y4000\nVP Brand Management,Philip Morris USA Inc,A1300\nCHEMICAL MANUFACTURERS ASSOCIATION,,G0000\nPRESIDENT,\"WOOD PRODUCTIONS, INC.\",A5000\nOW,\"EDWARDS MOVING AND RIGGING, INC.\",Y4000\nAttorney,\"Mindell, Malin, Kutinsky, Stone & Blat\",K1000\nEXECUTIVE VICE PRESIDENT,JB CUBED,Y4000\nMANAGER,U.S. CELLULAR,J1100\nSales,on File,Y4000\nROY COLLINS CONSTRUCTION CO,,B0500\nCHAIRMAN & C E O,BELZ ENTERPRISES,F4000\nPROFESSOR,BERKLEE COLLEGE OF MUSIC,JD200\nGLOBAL HEAD,MERRILL LYNCH & CO INC,F2100\nINVESTMENT CONSULTAN,\"WATERS ASSOCIATES, INC.\",Y4000\nFROST NATIONAL BANKS,,F1100\nPUBLIC RELATIONS,CONSTELLATION BRANDS,G2800\nATTORNEY,\"EISENBERG, RILEY, AND ZIMMERMAN\",Y4000\nConsultant,Ciscon,Y4000\nIMPERIAL CABINETS,,Y4000\nDeveloper,Dunrite Management,Z9500\n\"Associate Director, Government Relatio\",PCAOB,X4000\nrequested,requested,B4200\nAYERS SUPPLY INC,,Y4000\nscientist,northwestern univ,H5100\nINVESTMENT BANKE,JEFFERIES & CO INC,F2100\nTECHNOLOGY INC,,Y4000\nBANKER,FIRST SOUTHERN BANK/BANKER,F1000\nELGIN SYFERD DRAKE INC,,G5210\nPRESIDENT,CONTINENTAL EQUITY CORP.,G1200\nOLDE TOWN CONSULTING,,Y4000\nCU Volunteer,MBNA,F1300\nPRESIDENT,DL RESOURCES,Y4000\nFUNDRAISER,NRCC,J1100\nCeo,The Progress Fund,Y4000\nGraphic Design,Destiny Church,X7000\nConsultant,Kemg Llp,Y4000\nRETIRED,PROPERTY MANAGEMENT,F4500\nPRESIDENT,WEXFORD CAPITAL LP,F0000\nPRESIDENT,ACTION PAVING & CONSTRUTION INC.,B1500\nAIRCRAFT SALES,DASSAULT FALCON JET,Y4000\nEducator,Great Beginings Montessori Sch,Y4000\nPhysician,Aurora Medical Group,H1100\nGATEWAY FINAN GROUP,,F3100\nATT,SKADDEN ARPS SLATE MEAGHER & FL,K2100\nSELF EMPLO,STONE HOUSE WEALTH MANG.,Y4000\nLEUTER & SECOR,,Y4000\nCIVIL ENGINEER,PRINCIPAL,Y4000\nExecutive,Anschutz Film Group,C2400\nREAL ESTAT,HOFFMANN INVESTORS CORP.,F4000\nSTAFF,COLORADO ASSOCIATION OF REALTORS INC,F4200\nATTORNEY,SQUIRES SANDERS LLP,Y4000\nPresident,Sundance Amoco Travel Plaza,G1200\nDAYTON-HUDSON CORPORATI,,G4300\n\"DIRECTOR, GOVERNMENT RELATIONS\",EXPLORATORIUM,X4200\n\"VP, Grower Services\",\"L&M Companies, Inc\",G2500\ndesigner,liz claiborne,M3100\nInformation Requested,Syngenta,A4100\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,HOLY CROSS HOSPITAL,H2100\nMANAGEMENT,ECHOSTAR COMM. CORP.,C2200\nRUDOLPH/LIBBE INC./CONSTRUCTION,,B1500\nLand Developer,Berman Development,Y4000\nJOHN PLOTT CO,,B1000\nMERIT ELECTRIC CO,,B3200\nGOCERY STORE O,\"MIKE'S COUNTRY STORE\",Y4000\nEXECUT,BLUE CROSS BLUE SHIELD OF SC,X1200\nSales,Valley Tropicals,Y4000\nSoftware Dev.,CoManage Inc.,Y4000\nPRESIDENT,TAYLOR MACHINE WORKS,T3200\nRiver Transportation,\"B & H Towing, Inc.\",T3100\nFARRAN & ASSOC,,Y4000\nPRESIDENT,ARTLINKED LLC,Y4000\nPhysician,Digestive Disease Medicine,H1130\nPRESIDENT,FOUR SQUARE CREATIVE,Y4000\nStaff Officer,NGA,Y4000\nAccount Executive,Univan USA Inc,Y4000\nAMERICAN EXPRESS TAX,,F5300\nCOMPUTER SCIENT,SLEEPY CAT SOFTWARE,C5120\nPATHOLOG,SAN JACINTO METHODIST HOSP,H1130\nDR RALPH BHARATI MD,,H1100\nManager,Buffalo Feeders LLC,A3300\n\"VP, ENTERPRISE TECHNOLOGY\",AMERICAN RED CROSS,H6000\nOWNER,GREATER NH RESTERAUNTS INC,G2900\nManagement,Cajun Constructors,B1500\nJEWELER,LEON ZOLAND & SON INC.,Y4000\nOwner,She`s,Y4000\nVenture Philanthropi,Self,J1200\nFINANCE,NORTHHOUSE ADVISORS LLC,Y4000\nIOWA AREA DEVELOPMENT,,Y4000\nSALES,THE CRAFT AGENCY INC,Y4000\nWaitress,Lgl Pizza Hut Inc,J1200\nLAWYER,FEDERAL EMPLOYEE,X3000\nSELF EMPLOYED,THE MARKERBOARD PEOPLE,Y4000\nOwner,Adare Partners LP,C5140\nCOO,Go Cash,Y4000\nChairman,Extended Service Corp.,T2310\nTAX SPECIALIST,COMPRO-TAX,Y4000\nATTORNEY,TERRA GROUP/ATTORNEY,F4100\nPres,B Pietrini & Sons Inc,B1000\n\"PRESIDENT, CONSUMER PRODUCTS\",THE NIELSEN COMPANY,G5200\nPodiatrist,CT Foot Care Centers,H1130\nHRP NURSING SERVICES INC,,H1710\nFREMONT INDUSTRIES/CEO/CEO,,J1100\nPRESIDENT,MJM CORPOTATION,Y4000\nPEL-FREEZ,,Y4000\nAttorney,Boxer & Gerson LLP,J1200\nCA FOR JOBS NOT TAXES,,Y4000\nPathologist,River Oaks Hosp,H1130\nM.D.,John Ahlering & Associates,J1100\nSR ACCT MGR,CHALMERS & KUBECK NORTH,Y4000\nVENABLE L.L.P./ATTORNEY/PARTNER,,K1000\nPHYSICIAN,UNIV. OF OKLAHOMA/PHYSICIAN,H1130\nCHANDIS,,F2100\nCONTRACTOR,ROSS BROS,B1500\nEAST TECH/PRESIDENT/CEO,,Y4000\nInformation Requested,Stamina Products,Y4000\nBUSINESSWOMAN,,C4100\nFINANCE,AXUM CAPITAL PARTNERS,Y4000\nMAX OCEAN FOREST,RE,F4200\nOWNER,GOLD CONSTRUCTION INC.,B1500\nBAMA COMPANIES,,Y4000\nSr. Director Element,Washoe County School District,Z9500\nMANAGER,LCP TRACKER,Z9500\nFLIGHT INSTRUCTOR,\"FLIGHTSAFETY, INTERNATIONAL\",Y4000\nPrincipal,Erwin Capital,F4100\nARCHITECT,A + X DESIGN & DEVELOPMENT LLC,Z9500\nINTER-AMERICAN TECHNOLOGI,,J5200\nSALES EXECUTIVE,RET.,X1200\nPRESIDENT,GRAYHAWK DEVELOPMENT,F4100\nMgmt. / C. E. O.,J. A. M. S. / Endispute,Y4000\nAttorney,\"Betts, Miller, & Russo\",K1000\nProfessor,\"University of Maine, Fort Kent\",H5100\nGREENBERG PEDEN P C,,K1000\nPHY,STONY BROOK UNIVERSITY HOSPITAL,H2100\nPsycotherapist,ACP,Y4000\nBANKER,PACIFIC COMMONWEALTH,Y4000\nBUSINESS OWNER,ALLIED SCRAP,M2400\nWELDER EXPLORATION & PRODUCTION,PRESIDENT,G0000\nREQUESTED,SELF-EMPLOYED,T2310\nSHAMROCK GROUP,,Y4000\nAccount Executive,INFORMATION REQUESTED PER BEST EFFORTS,G0000\nMD,MARY WASHINGTON HOSPITAL,H2100\nPRESIDEN,WARD PETROLEUM CORPORATION,E1120\nNORWEST BUSINESSES,,F1100\nCEO,MJH & ASSOC. INC.,Y4000\nExecutive Vice Presi,Abengoa Bioenergy US Holding,E1000\nManagement,Techni Blas Inc,Y4000\nFARMER / RANCHER,\"BERRY FAMILY, LLC\",J6200\nSoftware Engineer,\"Cisco Systems, Inc\",C5110\nMORRIS B CHAPMAN & ASSOCIATES LTD,,K1000\nAMERICAN SUPER STOP,,G2400\nPresident,DCLRS,Y4000\nEXECUTIVE,DEROYAL INDUSTRIES INC.,H4100\nSKYLANE FARMS,,A2300\nOWNER,BANNER DIAMONDS INC.,Y4000\nDiagnostic Radiologist,Presbyterian Hosp of Dallas,H1130\nPRESID,NY ENFORCEMENT SERVICES INC.,Y4000\nINTERIOR DESIGNER,ATHONY CATALFANO INTERIORS INC,Y4000\nRetired,Wm Morns Agency Inc,X1200\n,LAW OFFICES OF GREINESMARTIN ET AL,K1000\nCALIFORNIA ENVIRONMENTAL TRUST,,JE300\nOwner,EPOCH Properties,F4100\n\"DIRECTOR,\",KRAFT FOODS LATIN AMERICA,Y4000\nATTORNEY,MARTINEZ HART & THOMPSON,Z9500\nPRESIDENT & CEO,PROFESSIONAL BANK,Y4000\nEXECUTIVE ASSISTANT,SUPER SOD,A1000\nlobbyist,American Council of Engineering Compan,B4000\n\"Co-Managing Director, Americas\",Frank Russell Inv. Mgmt. Co.,F2100\nPEDIATRIC D,PLAZA DENTAL ASSOCIATES,H1400\nRetired,Little Insurance Co,F3100\nVisionaire Media,,Y4000\nRetired,Milwaukee County,X3000\nSVP-HUMAN RESOURCES,ROCK HILL TELEPHONE CO.,C4100\nHEFTEL,,C2100\nPhysician,Radiology Associates Of Frankfort,H1130\nTRADE NEGOTIATOR,OFFICE OF US. TRADE REPRESENTATIVE,Y4000\nMEMORIAL HEALTH SYSTEMS-ORMOND BEAC,,H2100\nAttorney,Lamb Windle and McErlane,K1000\nVICE,\"SANDLER, TRAVIS AND ROSENBERG\",K1200\nBOISE CASCADE,,A5000\nLAWYER,\"HAMILTON, LAUGHLIN, BARKER, JOHNSON &\",Y4000\nStudent,Mayo Medical Sch,J1200\nBROKER,CB RICHARD ELLIS,F4100\nExecutive,Debry Lane,A4500\nVP,Jefferson Consulting Group,K2000\nCORPORATE INVESTIGATOR,TD BANK NA,F1100\nSelf,Researcher & Investor,JE300\nHousewife,N/A,H5300\nGENERAL MANAGER,HEWLETT PACKARD,C5100\nBranch Mgr./Dir. Bus,First American Title Insurance Co.,F4300\nDARMEL MANAGEMENT,,Y4000\nPARTNER,\"PAUL, WEISS\",K1000\nVice President,Farm Credit of Maine,A4000\nOwner,Chicago Connection,Y4000\ncommercial real estate,\"Vertical Integrations, Inc\",F4000\nTHE MOSAIC CO./VP/CIO,,A4100\nATTORNEY,\"MAGUIRE AND SCHNEIDER, LLP\",Y4000\nPRESIDENT,STUART SWAN FURNITURE COMPANY,Y4000\nPSYCOTHER,GROWTH OPPORTUNITY CENTER,J5100\n\"ASST. VICE PRESIDENT, CONTROLLER\",\"HY-VEE, INC.\",G2400\nInsurance,Oswald Companies,F3100\nUNIVERSITY OF CALIFORNIA - SAN FRAN,,H1130\nAMERIANA SAVINGS BANK,,F1200\nMADISON MATERIALS,,Y4000\nREADING SPECIALIST,SELF EMPLOYED,F0000\nATTORN,UPDIKE KELLY & SPELLACY P.C.,J1200\nPhysical Therapist,Genesis Medical Center,H2100\nLAW OFFICES OF STEPHEN M PASSEN LTD,,K1000\nHOMEMAKER,NA,F3100\nTeacher,Millbrag Schools,Y4000\nSawtelle Financial M,Self,G0000\nSoftware executive,Self-Employed,C5120\nPartner,Newport Associates Development Com,Y4000\nUnknown,Self,G0000\nA. V. P. Technology,B.NS.F. RAILWAY CO.,T5100\nF/S CAPITOL CONSULTING/MANAGING PAR,,K2000\nAttorney,\"Stanley, Mandel & Iola, LLP\",K1100\nMANSEL GAMING LLC,,Y4000\nA R M CANOPY SYSTEMS,,B3000\nBARKAN AND BARKAN,,J7400\nFARMING,\"LEHR BROS., INC.\",Y4000\nCrim. Div. Sr. Trial,U.S. Department of Justice,X3200\nInformation Requested,\"B.W. Consulting, LLC\",F4200\n\"MESIROV, GLEMAN, JAFFE, ET AL\",,K1000\nOwner,Everglades Horse Farm,A3500\nMARKS PANETH & SHRON,,Y4000\nOWNER,BAXTER STANLEY,Y4000\nCEO,\"Colorbok, Inc\",J1200\nGUDVI CHAPNICK & OPPENHEIM,,K1000\ninvestor,self,A3500\nPARTNER,ABRY/PARTNER,F2600\nFeed Yard Operator,Self,A3300\nConsultant,D&T,Y4000\nFINANCIAL OUTREACH INC,,Y4000\nCEO,LNR PROPERTY,F4600\nHealth and Wellness Counselor,Cornell Health and Nutrition,J1200\nEXECUTIVE VICE PRESIDENT/CHIEF MEDICAL,INOVA HEALTH SYSTEM,H2100\nPRESI,ACCURATE MARINE ENVIRONMENTAL,T6100\nSENATOR,STATE OF CA,X3000\nGovernment Relations,Supply Scape,Y4000\nPRESIDENT,BRELAND DEVELOPMENT,B2000\nWONDER JAY INC,,Y4000\nChef,Somerset Country Club,Y4000\nOwne,U-Hills Property Management Ll,F4500\nMEDICAL RADIOLOGY PA,,H1130\nPARTNER,GAVIN/SOLMONESE,Y4000\nInvestment Manager,The Tremont Group LLC,F2600\nCABINET MANUFACTURE OWNER,BUSY BEE CABINETS INC,M4100\nOWNER,WEBB BUILDING INC.,Y4000\nInsurance broker,Self-employed,F3100\nENVIRONMENTAL EDUCATOR,\"CONCERN, INC.\",Y4000\nPRES.,TRECO INC,Y4000\nCEO,DODGE COUNTY TITLE & ESCROW,F4300\nCENTURION AUTO TRANSPORT,,T3100\nHEALTHCARE ADMINISTRATOR,NOT EMPLOYED,H0000\nOWNER,JOYERIA NATA,Y4000\nDeveloper,Alison Dailey Properties Inc,F4500\nOWNER,ALAGLASS POOLS,B5400\nC.E.O.,CLC INCORPORATED,Y4000\nPrinter,Brenner Printing,C1300\nREAL ESTATE INVESTOR,CARDINAL REALTY GROUP,F4200\nSEVEN SPRINGS PA,,Y4000\nOWNER,TALLY HO ENTERTAINMENT,C2800\nPrinicipal,Winning Strategies,K2000\nPARTNE,TACONIC CAPITAL ADVISORS LLC,Z9500\nLINDA HASTY & ASSOC,,Y4000\nDalton,Dalton,Y4000\nAttorney,\"Mintz, Levin\",K1000\nReal Estate Investor,JTD Development,Y4000\nREAL ESTATE,REAL LLC,F4000\nNANCOR CORPORATION,,G2900\nSales,MCI,Y4000\nRegional Executive O,Sutter Medical Center of Santa Rosa,H2100\nPresident,Terry Williams Farming,G1200\nMAXWELL COTTON CO,,A1100\nCONSTRUCTION DIVISION MANAGER,CUMMINGS PROPERTIES LLC,Y4000\nAPOLLO PLASTICS COR,APOLLO PLASTICS,J1200\nAttorney at Law,Ulmer & Berne LLP,Z9500\nREGISTERED NURSE,STAMFORD HOSPITAL,H2100\nPARENTE RENDOLPH PC,,K1000\nAttorney,\"Rossman, Baumberger, Reboso, and Spier\",Z9500\nPresident,Teuscher Chocolate Chicago ltd,Y4000\nHOUSTON EAGLE GROUP LLC/CFO/VP,,Y4000\nWILLIAMSBURG UROLOGY CLINIC,,H1130\nMINISTER,\"PRESBYTERIAN CHILDREN'S HOMES AND SERV\",Y4000\nPRESIDENT,SCOTT HOWELL & COMPANY,G5210\nBUSINESSMAN,COVORDIA PARTNERS,Y4000\nEVAN SUGAR COMPANY,,A1200\nCONSULTANT/PRES.,\"WESTMORELAND ASSOCIATES, L.L.C.\",Y4000\nSALES,WEB SERVICE CO.,G5500\nFORESTER,TEXAS A&M FOREST SERVICE,A5000\nGRAND FORES CLINO,,Y4000\nImput Administrator,Dept of Commerce,X3000\nFAM MATERIALS ADV SERVICES,,Y4000\nAuto Dealer,Ron Smith Biick Pontiac,T2300\nSenior Executive - Services,GE Energy,M2300\nNURSING PR,UT HEALTH SCIENCE CENTER,H0000\nCPA,GEORGE JOHNSON & CO.,Y4000\nEXECUTIVE ASSISTANT,AFFILIATED MANAGERS GROUP,F2100\nPARKVIEW ORTHOPAEDIC GRP,,H1100\nENTREPRENEUR,RETIRED,J1100\nPhysician,Nevhc,Y4000\nLAND DEVELOPER,WHITE LAND DEVELOPER,Y4000\nPASQUINA & CUNNINGHAM,,Y4000\nCOMMERCIAL BROKER,LAND QUEST COMMERCIAL,Y4000\nGOODWILL INDUSTRIES OF SE WI,,G4600\nMANAGER,NORTHWESTERN COLLEGE,H5100\nCorp. Secretary/Trea,Douglas E. Barnhart Inc.,B1000\nPhysicist,Berkeley Lab,Y4000\nTRAINER,KAISER,Y4000\nCoal Miner,Murray Energy Corp,E1210\nACADEMIC PHYSICIAN,UNIV OF WASHINGTON,H5100\nDOMPE & ASSOC,,Y4000\nDENNY ELWELL INVESTMENTS,,Y4000\nBusiness Tech Consultant,CNB Consulting,J1200\nPresident and CEO,Air Products and Chemicals,M1000\nMANUFACTURING,C A ASHER INC,G2200\nMotorcycle Dealer / Kawasaki,Self-Employed,G0000\nInformation Requeste,AFS,Y4000\nEpiscopal Priest,Retried,X1200\nMIDTOWN VIDEO,,J5100\nFinance Executive,Metlfie,F3300\nEXECU,\"THE TRAVELERS COMPANIES, INC.\",F3400\nPRESIDENT,SS BLACKSTOCK,Y4000\nINFO REQUESTED,\"Blank, Rome L L P\",K1000\nOWNER,GREAT AMERICAN HOMES,G0000\nconsultant,CGI,Y4000\nSALES MANAGER,MOUNTAIN ENTERPRISES/SALES MANAGER,B1000\nConsultant,Levine Healthcare,J7400\nPresident,C.S. McCrossan,Y4000\nAttorney,Self employed,Z9000\nUnited States Property and Fis,Army,Y4000\nCUIKOTA CO INC,,Y4000\nMANAGER,LIFESTYLE FURNITURE HOMESTORE,Y4000\nHEAL,COMMUNITY HEALTH OF SOUTH DADE,Y4000\nINTL MANAGEMENT & DEVELOPMENT,,Y4000\nCONTROLLER,ARBITECH L.L.C.,C5120\nconsultant,\"Education Consultants, Inc\",H5000\nOWNER,GILPATRICK FUNERAL HOME,G5400\nSCHOSTAK BROS,,F4000\nGEO-THERMAL RESOURCES COUNCIL,,Y4000\nENGINEER,E I DUPONT,M1000\nPublic Affairs,Hhs/Cms,Y4000\nINSURANCE,ED BERRONG INSURANCE AGENCY,F3100\nBiotech/science rep,Millipore,Z9500\nPROFESSIONAL MORTGAGE CORP,,F4600\nAttorney,\"Eschen, Frenkel, Weismart Gordon\",K1000\nDGITO CORP,,Y4000\nINVESTME,WCA MANAGEMENT CORPORATION,F2100\nReal Estate,852 Onyx LLC,F4000\nCLASSROOM TEACHER,HERNANDO COUNTY SCHOOL DIST,L1300\nSELF DEVELOPER,,F4100\nCARBONE & FAASSE,,K1000\nCEO/PRESIDENT,OUTCLICK MEDIA,J1100\nSELF-EMPLOYED,\"SIMS FINANCIAL ADVISORS, INC.\",F0000\nSurgeon,Self-employed,H1130\nRON MC DONALD CHEVROLET,,T2300\nATTORNEY,STANTON PARK GROUP,K2000\nBus. Owner,EchoPoint Media,Y4000\nPhysical Therapist,Providence Health Systems,H1700\nA EPSTEIN & SONS IN,,B4000\nBAGWELL ENTERTAINMENT,,C2000\nFACILITATOR CONSULTANT,BRIDGING FUTURES LLC,Z9500\nPHILANTHROPIC ADVISOR,\"ST JUDE CHILDREN'S RESEARCH HOSP\",H2100\nPhysician,Riddle Outpatient,H1100\nBORDERS REAL ESTATE,,J1100\nAPS/PINNACLE WEST/PRESIDENT & CEO,,Y4000\nWILKINSON & BARKER,,Y4000\nCOO,WESTERN WIRELESS,C4300\nATTORNEY,STEVENS MARTIN VAUGHN & TADYCH,K1000\nNORTHLAND OPHTHALMIC,,H1120\nGRAVES DOUGHERTY HEARON M,,K1000\nMANAGING PARTNER/ATTORNEY,BROWNSTEIN HYATT FARBER SCHRECK,K1000\nLUTHER HECKT CAMERON ET AL,,Y4000\nRETIRED,RETIRED ATRIONA,X1200\n,COOK CTY  DEPT. OF EMPLOY TRAINING,X3000\nAUERBACH CHEVROLET CORP,,T2300\nOwner,Hettinger Airport,T1600\nSANGAMON ASSOCIATES,,Y4000\nChief Financial Officer,Unitedhealth Group - Americhoice,H3700\nPRINCIPAL,\"R.B. ROBINSON COMPANY, LLC.\",Y4000\nOWNER,OAKRIDGE WINERY,G2820\nINVEST,EAGLE CAPITAL MANAGEMENT LLC,Z9500\nAMERICAN PERSONAL COMMUNICATIO,,C4600\n,REALITY EXECUTIVES OF NORTH NEVADA,Y4000\nCPA,MARKS PANETH & SHRON LLP,F5100\n\"AMER, CUNNINGHAM, BRENNAN CO\",,M0000\nEXECUTIVE,STAR HYDRAULICS,Y4000\nADMINISTRATIVE PROFESSIONAL,BHP BILLITON,E1000\nPresicent and CEO,MMA Financial,F0000\nADVERTISING EXECUTIVE,,G5210\nStaff Physician,\"White County Women's Health Care\",Y4000\nVice President,The Citizen Bank of Winfield,F1000\nEmergency Physician,Alvarado Hospital,H1100\nOWNER,MONARCHS,Y4000\nPresident,Townsend Construction Company,B1500\nHousing Manager,\"Better Cities, Inc\",Y4000\nAttorney,Dunnam Law Firm,K1000\nCOLLEGE PROFESSOR,ARKANSAS STATE UNIVERSITY,Z9500\nCORPORATE COUNSEL,THE AZTEC WELL FAMILY,Y4000\nM PRICE MARGOLLES ASSOCS,,Y4000\nMONEX INT LTD,,G4000\nEmployee,Ohio Cable Telecomunictions Assoc,Y4000\nPRESIDENT & CHIEF EXECUTIVE OFFICER,\"SYMBOLIC SYSTEMS, INC.\",C5130\nPresident,Cambridge Investment Research,F2100\nMANAGEMENT,THE BLACKSTONE GROUP,F2600\nEXECUTIVE,VIRGINIA HOMES MFG. CORP.,B2000\nATTORNEY,NATIONAL PARK SERVICE,J7400\nVC,Alta Communication,F2600\nBusiness Executive,ACCURATE CARTING INCORPORATED,M5000\nSECRETARY/TREASURER,\"HANCOCK-WOOD ELECTRIC CO-OP, INC.\",E1610\nDevelopment,Precision Auto Care Inc.,T2400\nATTORNEY,\"JOHNSON, HEARN, VINEGAR, GEE & GLASS,\",Y4000\nCEO,Akrochem Corp,Y4000\nSTUART WEITZMAN SHOES,,J5100\nCredit Union CEO,Maui FCU,F1300\nN/A/RETIRED LAWYER AND MAYOR,,X1200\nGST,IUOE#068L,LB100\nBROKEN ROSE PROD.,,C2400\nDUCHOSSOIS INC,,T5200\nAttorney,Schrader Harrison Segelo Lewis,Y4000\nEXECUTIVE VICE PRESIDENT AND CHIEF OPE,\"INTERMOUNTAIN HEALTHCARE, INC.\",H2100\nDIRECTOR O,ALABAMA STATE GOVERNMENT,X3000\n\"President, Auto Sector\",Mahindri & Mahindri,Y4000\nUNIVERSAL INDUSTRIAL CLINIC,,Y4000\nStay-At-Home-Mother,None,E1210\nENGINEER,SHAW INDUSTRIES,J1100\nPATTERSON DRUG,,G4900\nFREEPORT-MCMORAN COOPER,,E1220\nUniversity Faculty,University of California,H5100\nVP OPERATIONS,NORTHSIDE FOODS,G2300\nPENN EVERGREEN LOG INC.,,Y4000\n\"DAMBERG, SCOTT, PECK, BAKER\",,Y4000\nSR. V.P.,COMPASS MARKETING,Y4000\nMARKETING DIRECTOR,CBS RADIO,C2100\nSELF-EMPLOYED,N/A,F1100\nCFO - PART OWNER,BRYAN CONSTRUCTION INC.,B1500\nHealth Facility Oper,Self-Employed,G0000\nSubstitute Teacher,\"Summit, New Jersey Board Of Eduacation\",X3500\nSED,,Y4000\nUNIVERSITY OF TEXAS AT HOUSTON,,H5100\nMANAGEMENT,BIOTECH,Y4000\nVice President,LaSalle Bank,F1200\nExecutive,\"VCA Antech, Inc.\",Y4000\nRental Property owne,New Morning Solar Realty,Z9500\nVice President,Saratoga Honda,T2300\nOWNER,PERKINS AIRCRAFT SERVICES,T1300\nPresident,Mike Hale Acura,T2300\nOwner,Pro Seal Plus,J1100\nNGN CAPITAL,NGN CAPITAL,F2500\nCONTRACTOR,MACQUESTEN CONSTRUCTION,B1500\nCHIEF FINANCIAL OFFICER,MOLINA HEALTHCARE OF MICHIGAN,Y4000\nPHYSICIAN,HIGH PLAINS SURGICAL ASSOC./PHYSICI,Y4000\nCONSULTANT/WRITER,SEGUE CONSULTING,Z9500\nCARL GREGORY ENTERPRISES,,T2310\nBREWER PAINT CO,,M1600\nKEMET CORPORATION,,M6000\nE,RANCHER S,J1100\nPRESIDENT,MCJUNKIN SUPPLY COMPANY,Y4000\nUNIVERSAL TIRE INC,,Y4000\nENGINEER/BUSINESS OWNER,ENGINEERED COMPOST SYSTEMS,Y4000\nLAND USE PLANNING CONSUL,,G5200\nPresident,Integrated Technologies Mgmt,Y4000\nWOOLSHIRE CARPET WORLD,,M8000\nWALA-TV,,C2100\nTypesetter,Self-Employed,Y4000\nRENAISSANCE KNITWEAR,,Y4000\nDUVERA,,Y4000\nMESQUITE FIRE DEPT,,L1400\nSR. VICE PRE,BAYSTATE HEALTH SYSTEM,Y4000\nHOUSEWIFE/ARTIST/NONE,,J7150\nAdvisor to Developing Countries,Self-employed,G0000\nProfessor,Dominican Univ,Y4000\nPUBLIC,HOLT & GERMAN PUBLIC AFFAIRS,Y4000\nTENSAW LAND & TIMBER COMP,,A5000\nDELUXE CHECK PRINTING INC,,C1300\nVice President,AT&T Communications,C4200\nHead of Corporate Communications,Citadel Investment Group,F2100\n\"HOLSTEIN, TAYLOR & UNITT ATTORNEYS\",,K1000\nBOARD MEMB,USO PUGT SOUND AREA INC.,Y4000\nLASSITER-WARE INC INSURANCE,,F3100\nPresident,Bay Meadows Racing Assoc & Hollywood P,Y4000\nDIRECTOR,FLAGLER GREYHOUND TRACK,G6500\nConsultant,\"Paulin Enterprises, Inc\",Y4000\nMEMBER,JAMES VALLEY ETHANOL,Y4000\nPT,Villa Maria,H1700\nEXECUTIVE,CHARLES SCHWAB CO.,F2100\nRECREATION AND PARK DEPARTMENT DIRECTO,\"ST. JOHN'S COUNTY\",X3000\nADVISOR,FIRST EAGLE INVESTMENT,F2100\nRETIRED,,\nPEARL RIVER BASIN DEV DISTRICT,,Y4000\nDEFENSE ANALYST,\"HIPK, LLC\",Y4000\nFINANCIAL ANALYST,THE CAPITAL GROUP,F2100\nMANAGER,BERRY ENTERPRISES,F1100\nUNIVERSAL SYSTEM INC,,Y4000\nSCHUBERT ASSOCIATES INC.,,G5270\nCFO,OXANE MATERIALS INC.,Y4000\nOwner,Coffee Dog Inc.,G2600\nConsultant,\"Carmen Group, Inc\",K2000\nDirector of Finance,King County Bar Association,Y4000\nProfessor,usc,H5100\nAUTO DEALER,MCREE FORD,T2300\nELECTIONS BOARD M,STATE OF ILLINOIS,X3000\nPRESIDENT OF MARKETING,OPEN ROAD FILMS,C2400\nPRESIDENT,PACIFIC PROPERTIES,F4000\nNJ COALITION AGAINST SEX ASLT,,J7400\nBENEFITS CONS,THE TODD ORGANIZATION,F5000\nPP OF AMERICA,,J7150\nLANDCARE USA,,B3600\nATTORNEY,LOUD 32BJ SEIM,LG300\nVice President,Allied Wilkinson,Y4000\nFood Service Worker,\"Ed's Express\",Y4000\nKOTEEN & NAFTALIN,,K2000\nPastor,Central Christian,Y4000\nPA,NEVARES SANCHEZ-ALVAREA & MENDEZ,K1000\nIT DIRECTOR,SUN AUTOMATION GROUP,J1100\nACADEMY LIFE,,Y4000\n\"EJM ENGINEERING, PC\",,B4400\nManagement/Sales,\"Classic Party Rentals, Inc\",G5300\nNATIONAL RESPONSE CORP,,G5200\nLAWYER,BROWNSTEIN HYATT & FARBER,K2000\nAUTO DEALER,FRED LAVERY,Y4000\nManager,The Bond Makes Associations,F2100\nTest Engineer,Microsoft,C5120\n,FLORIDA OSTEOPATHIC MEDICAL ASSOC.,H0000\nOFFICE MANAGER,DENTIST A.N.LASSEN,H1400\n\"KELLY'S LAWN SERVICE INC\",,Y4000\nBUILDER,\"MACK & MACK, INC.\",K1000\nDentist,Center for Family Health,Y4000\nSnr Exec Mktg & Strategy,Rolls Royce,Y4000\nPARTNER,\"BEAU BOULTER, LLC\",K2000\nCarpenter,N/A,B3000\nRealtor,Self,F4600\nMARKETING COPYWRITER,EXPRESS SCRIPTS,H3000\nTIT,BARRISTERS ABSTRACT CORPORATION,F4300\nNU-WAY TRASH REMOVAL CORP,,E3000\nAttorney,\"Sneeringer, Monahan, Provost and Redgr\",Y4000\n1ST UNITED METHODIST CHUR,,X7000\nEERGC CORPORATION,,Y4000\ngovt relations,self,K2000\nReal Estate Developer,Self,J5100\nPRESIDENT,FLAG STOP CAR WASH,G5000\nAttorney,\"Martin, Harding, and Mazzotti\",K1000\nAD,FIRST CENTENART METHODIST CHURCH,Y4000\n\"VP, LONG RANGE PLANNING\",US STEEL,M2100\nFABIAN AND CLENDENIN,,K1000\nBRICKLAYERS LOCAL,,LB100\nFORBES,,Y4000\nProfessor of Law Eme,Northwestern University,Z9500\nINTERIOR DE,BARBARA SCAVULLO DESIGN,J7400\nATTORNEY,ACCENTIVRE,G5270\nBOVA DISTRIBUTION CO INC,,G2810\nLINDEN LUMBER CO,,B5000\nBAYOUD INTERESTS LLC,,Y4000\nACE NOVELTY,,Y4000\nMANN UNGER SPECTER & LABOVITZ,,Y4000\nPHYSICIAN,T MEDICAL GROUP,H1130\nRRR MNGT,,Y4000\nAttorney,Law Offices of Andrew H. Wu,K1000\nM FABRICANT & SONS INC,,J5100\nSenior Vice President,RBC Dain Rauscher Corp,F2100\nFilmmaker/Videograph,Self,G0000\nMINOVE USA,,Y4000\nPRUDENTIAL INSURANCE,,F3100\nBUSINESS DEVELOPM,THE TATITLEK CORP,F4300\nST HELENA SCHOOL DISTRICT,,G2820\nVERDAD OIL & GAS,,E1100\nHOME BUILDER,HENRY COMPANY HOMES,B2000\nBROOKWOOD MANAGEMENT,,\nOWNER,CHERRY OFFICE PRODUCTS,Y4000\nATTORNEY,\"LAMSON, DUGGAN AND MURRAY\",Z9500\nDEAN COLLEGE OF VETERINARY MEDICINE,MISSISSIPPI STATE UNIVERSITY,H5100\nASST CHIEF ATTY - R&S,EXXONMOBIL LUBES & SPECIALTIES,E1110\nFINANCIAL ASSET M,GRANGER COMPANIES,Y4000\nEXECUTIVE,\"MILLER LEGG ASSOCIATES, INC/EXECUTI\",Y4000\nDistrict Director,Us Dept Of Labor,X3000\nPhysician,CT Sports Medicine Center,Y4000\nCommercial Landscape Contractor,Russell Corporate Groups Inc,Y4000\nATTORNEY,\"ZELL & COX LAW, P.C.\",K1000\nReal Estate,Lauth Property Group,F4000\nINSURANCE,\"M&O MARKETING, INC.\",F3100\nPRESIDENT,CARPENTER AND COMPANY/PRESIDENT,M1000\nExecutive,Herzog Contraction Corp.,B1000\nDIRECTOR,BAR-S FOODS CO.,G2300\nPRESIDENT,CHANCELLOR GROUP,Y4000\nBusiness Owner,Christine Dunstan,J1200\nATTORNEY,\"FITZGERALD, ABBOTT & BEARDSLEY LLP\",Y4000\nambassador,US Government,X3100\nPLANNING LOGISTICS,SUNOCO INC.,E1160\nBANK OF ALABAMA FULTONDALE,,F1100\nVICE PRESI,ALTMAN DEVELOPMENT CORP.,F4100\nONSTEAD HOLDINGS LLC,,F2600\nHEALTH CARE CONSULTANT,\"NUSGART CONSULTING, LLC\",Y4000\nJMB REALITY CORPORATION,,Y4000\nOTOLARYNGOLOGY-FACIAL PLASTIC SURGE,,H1130\nsocial service execu,Women In Need,Z9500\nFINANCE DIRECTOR,DEMOCRATIC PARTY OF WISCONSIN,Z9500\nMedical Writer,Self,J1200\nINFO REQUESTED,Sylvan Learning Center,H5200\nSENIOR VICE PRESIDENT,KCI TECHNOLOGIES,B4400\nCommissioner,TN Dept of Revenue,X3000\nDEALERS,DON CHALMERS FORD,T2300\nEXECUTIVE,PIONEER SERVICES,Y4000\nOPTOMETRIC AIDE,\"DR. MARK JAFFE, M.D.\",H1100\nOWNER,TUBS & TUMBLE,H5100\nNRCC,,Z5100\nPresident,The Warwick Group,F2300\nAccountant,\"Remarketing Solutions, Inc\",Y4000\nCEO,SOLAR FIELDS,Y4000\nSenior Pastor,\"Metroplex Ministries, Inc.\",Y4000\nCHAIRMAN,ALPHA STEEL CORPORATION,J5000\nPRINCIPAL,CCN,Y4000\nREAL ESTATE DEVELOPE,SELF-EMPLOYED,A1000\nOwner,\"Jack's Custom Sawing Inc.\",Y4000\nSELF-EMPLOYED,BIG RED TOOL,Y4000\nLAWYER,THE FLORIDA BAR,Y4000\nPRESIDENT,THOMAS CARRERA CONSULTING,Y4000\nPHYSICIAN,\"DANIEL FINK, MD\",H1100\nPRESIDENT,THOMAS LIVESTOCK CO.,A3000\nPRESDIENT,\"BROADMARK CAPITAL, LLC\",F2100\nSENIOR VICE PRESIDENT,HD GLOBAL,Y4000\nGALLOP LEASING CORPORATION,,G5300\nCEO,BRANDT MONTEREY,Y4000\nMetals Dealer,Carnegie Metals INC,Y4000\nCONKLING MCCORMICK & FISKUM,,Y4000\nBAILEY CONTROLS CO.,,M2300\nATTO,\"PARVEN POMPER STRATEGIES, INC.\",J1200\nSURGEON,SPINEONE,H1130\nAttorney,GCA Law Partners LLC,K1000\nUTICA HILLCREST MANR,,Y4000\nTemp Clerk,City Of Milwaukee,X3000\nCHAIRMAN,NORTH SIDE BANK & TRUST,F1100\nPRESIDE,PROFESSIONAL PARTNERS GROUP,T9100\nADMIN,NORTH COLORADO MEDICAL CENTER,H2100\nSOCIAL WORK THERAPIS,Self employed,Y4000\nFOUNDER,MCCORMICK& SCHMICK RESTAURANTS/FOUN,G2900\nACTIVIST,,G5270\nPRIN,SOUTHAMPTON CO. PUBLIC SCHOOLS,X3500\nINVESTMENT BANKER,AEGIS CAPITAL CORP,F0000\nVICE PRESIDENT,ITEX CO.,Y4000\nsecretary,Spring Hill Water,G2600\nOWNER,CAPCO,Y4000\nVICE PRESIDENT,PORTERFIELD & LOWENTHAL LLC/VICE PR,K2000\nPRESIDENT & CEO,FAR WEST BANK,F1000\nBUSINESSPERSON,FABCO METAL PRODUCTS,M5000\nMISSOULA ANESTHESIOLOGY,,H1130\nChairman,Zumiez,Z9500\nEXECUTIVE,BUNGE LIMITED,A1500\nOFFICE MANAGER,LIFEWORKS OHIO,Y4000\nPhysician,Health Systems,H0000\nAGRIBUSINESS OWNER,SELF,A0000\nFellowship Director,Harvard University,H5100\nDISTRICT MANAGE,SOCIAL SECURITY ADM,J7400\nPresident,North Hills Answering Service,G1200\nCHALLENGE CHEMICAL,,M1000\nCLACK CORPORATION,,G1100\nReal Estate Managemnet,Golden Bear inc,F4000\nSPRINGFIELD IMPORT MOTOR,,T2300\nUS MEDICAL RESOURCES,,Y4000\nTRUCKER,FREYMILLER,J1100\nBUSINESSMAN,GREENWOOD GAMING AND ENTERTAINMENT,Y4000\nPresident,Baumgardner Pools Inc.,Y4000\nZIEN,MENDELSON,Y4000\nOperations Manager,Morgan Develpment Inc,Y4000\nEXECUTIVE,INFO SPACE INC.,J7150\nPRINCIPAL,SUSAN WHITE & ASSOC.,K2000\nComputer Consultant,G R Stewart Consulting,Y4000\nunemployed,self-employed,G0000\nJG NEWMAN CO,,Y4000\nSTATE STEEL SUPPLY,SELF,M2100\nGeneral Agent,Guardian life Ins Co,F3300\nData Com Technician,Bear Stearns,F2300\n\"TEACHER'S AIDE PEABODY\",,H5000\n\"GOLDBERG, WEISMAN AND CAIRO\",,K1000\nPhilanthropist,The Wexner Foundation,G4100\nNon-profit Administr,\"My Sister's Place\",Y4000\nDIRECTOR,Ivy Tech Community College,H5100\nGRASLE & ASSOCIATES,,B3200\nCorporate Officer,\"Dorvin D. Leis Co, Inc.\",Y4000\nCORPORATE CONTRACT ATTORNEY,GIBSON ARNOLD & ASSOCIATES,K1000\nNEW ENGLAND MOBILE BOOK FAIR,,G4600\nADMINISTRATOR,ACACIA NETWORK,Y4000\nGRAPHIC DESIGNER,SELT,G0000\nVP. FED. REG.,\"AT&T SERVICES, INC.\",Y4000\nSELF EMPLOYED,PAULSON COMPANY,F2700\nMAVERICK TECH SYS,,Y4000\nManager,AKAL Security,G5290\nSENIOR VICE PRESIDEN,S.B.C. COMMUNICATIONS,C4100\nSpeech Therapist,Career Staff,G5250\nLACOMIAN PROFESSIONAL SOCIETY,,G2100\nDIRECTOR OF GOVERNMENT RELATIO,ITIC,Y4000\nPresident,WS Darley & Co,Y4000\nCEO,TENAX,M1700\nFINANCIA,MACKENZIE PATTERSON FULLER,F4000\nATTO,LOS ANGELES CO PUBLIC DEFENDER,Y4000\nNorthern NV Director,Democratic National Committee,J1200\nPROJECT MANAGER,FEDERAL RESERVE BANK OF NEW YORK,F1100\nBanking,Barclays Capital,J1200\nPHYSICIAN,MEMORIAL HERMANN,Y4000\nFHL BANK TOPEKA/PRESIDENT/CEO,,F4600\nPRESIDENT,REI INVESTMENTS INC.,F0000\nWAYNE MUTUAL INSURANCE COMPANY/CEO/,,F3100\nPRESIDENT,\"ALEXANDARE DE PARIS, INC.\",Y4000\nTEACHER,UNITY WOODS YOGA CENTER,Y4000\nSenior Vice Presiden,The Tomasso Group,Y4000\nREAL SALES PERSON/RETIRED,N/A,X1200\nCOMMERCIAL FISHING,HOLYOKE WHARF,Y4000\nMedical Doctor,Capital District Psychiatric Center,F0000\nPRESIDENT,NORRELL CORP.,Y4000\nCEO,WOODLOCH PINES INC.,Y4000\nREGIONAL MANAGER,VIVINT,G5290\nATTORNEY,\"WINSTON & STRAWN, LLP\",K1000\nPresident,Maximun Technologies,C5130\nINDUSTRIAL CONTRACTOR,SELF,B1000\nOwner,Quickfacts,C5140\nInvestments,Ashton Capital,F0000\nCOURT REPORTER,SAN LUIS OBISPO/COURT REPORTER,Y4000\nFINANCIAL,PAPPAS INSURANCE,Y0000\nROCKY RESEARCH INC,,Y4000\nPRESIDENT,CELPAGE INC.,C4300\nOwner,F.j. Leonelli Group Inc.,Y4000\nPARTNER,MEHTA & ASSOCIATES INC.,B4000\nMANAGEMENT,ALBRIGHT STEEL & WIRE COMPANY,M2100\nCHOSLOVSKY MED CORP,,H1130\nOWNER,AMERICAN NATIONAL INSURANCE,F3000\nU T SOUTHWESTERN,,H1100\nREAL ESTATE BROKER,AZTEC GROUP INC.,J5100\n\"N.S. Bienstock, Inc.\",,Y4000\nCEO,Trans-Matic Manufacturing Co.,M0000\nManaging Director,Grosvenor Capital Management LP,J5100\nTISHMAN MGMT LEASING CORP,,J5100\nExecutive Director,Moms Rising,Y4000\nEngineer,Azx International,Y4000\nATTORNEY,TURNER PADGET,Z9500\nOffice Manager,Davco Restaurants,G2900\nINFO REQUESTED,Mercedes-benz Of Nashville,T2310\nWRITER,\"TRIPWIRE, INC\",Y4000\nMANAGING DIRECTOR,\"GRAY, GREER, SHELBY & VAUGHN, LLC.\",Y4000\nOPERATIONS SPECIA,BENJAMIN WONG CFP,Y4000\nATTORNEY,T-MOBILE USA INC.,C4300\nPRESIDENT,GOLDRUS PRODUCING COMPANY,E1120\nCOO,THE EMPLOYMENT GROUP,G5250\nINVESTMENT MANAGER,,J5100\nRANGER CAPITAL MANAGEMENT,,F4100\nOMI PETROLINK,,T6200\nOwner/Manager,Acadiana Rubber & Gasket Co.,M1500\nArchitect,Morgan Hill Sutton Mitchell Architects,B4200\nVICE PRESIDENT OF OP,\"POT'S DINER\",G2900\nSales,The Strand Group,Y4000\nPRESIDENT,BLUE TREE CAPITAL,Y4000\nAttorney,Keane & Beane PC,Y4000\nTEXAS DENTAL ASSOC,,H1400\nPRESIDENT,MULLINAX AUTO SALES INC,T2300\nPHYSICIST,UNEMPLOYED,H5100\nMANAGER,MT. HARBOR RESORT,T9300\nFIRST ENERGY CORPORATION/ENGINEER/P,,E1600\nOWNER,MARTIN & JONES PROPERTY PARTNERSHIP LL,F4000\nFinance,Burnham Financial Group Inc.,F2100\nComputer Analyst,University of Arizona,J1200\nPRESIDENT/OWNER,TRIFECTA TECHNOLOGIES INC,C5140\nLand use Planner,Yakima County,X3000\nBALFOUR ASSET MANAGEMENT,,F2100\nASSN FOR MANUFACTURING TECHNOLOGY,,M2300\nPRESIDENT,WV AMERICAN WATER,Y4000\nDOCTOR,HHC,J1200\nAttorney,Brooks and  Pierce,K1000\nDENTIST,\"DR. HENRY A. FISCHER, DDS\",Y4000\nSENIOR VICE,R.J. SMITH CONSTRUCTION,B1500\nSoftware,Tacoda,J1200\nPRESIDENT,MANHATTAN GOURMET MARKET,Y4000\nSCHULWEIN REALTY INCORPORATED,,F4200\nFinance / Publishing,\"JSI, Inc.\",Y4000\nINFO REQUESTED,PRIVATE PRACTICE,G0000\nExecutive,The Boston Company,F4000\nOwner,\"Bobby's Pools\",Y4000\nINFO REQUESTED,Home Instead Senior Care,H2200\nAttorney,Colbert Matz Rosenfelt,K1000\nMANAGER,LEHMAN FEED MILL INC.,A3100\nproperty manager,retired,X1200\nU S SPECIALITIES,,M4100\n1ST FED S&L,,F1200\nFounder,Collabnet,Y4000\nCEO,MASQUE SOUND,Y4000\nEducator,Public County School in Seminole,X3500\nReal Estate,Curtis Thaxter Stevens Broder & Micole,K1000\nPRESS REPRESENTATIVE,NFFE FD1,LM100\nGRACE SKOCYPEC COSGROVE,,Y4000\nPresident/CFO,Universal Technical Institute,H5200\nTV Excative,Turner network Televisoion,C2300\nMAYOR,CITY OF DANA POINT,X3000\nPASTOR-TEACHER,GREAT COMMISSION,Y4000\nHOME STAGER,HOME STAGING CONSULTANTS LLC,Y4000\nOWNER-SALES COMPANY,LERNER ET CIE,J7400\nEXECUTIVE,SECROSS,Y4000\nVOLUNTEER WORK,N/A,F2100\nROBERT KEITH INSURANCE,,F3100\nREAL ESTATE,PRINCIPAL MANAGEMENT,Y4000\nEXECUTIVE,FERRELLGAS,E1190\nANALYST,U.S. NAVY,J1100\nREFU,INTERNATIONAL RESCUE COMMITTEE,J7000\nHOTEL DEVEL,LA MANSION DEL RIO INC.,T9100\nSOCIAL WORKER,NOT EMPLOYED,G5200\n\"Sr Quality Analyst, 3rd Party Ops\",Sony Electronics,C5000\n\"MCKINNON'S BUTCHER SHOP - NORTH, IN\",,Y4000\nLAWYER,LECLAIR RYAN,K1000\nReal Estate Investme,Cherokee Southwest,F4000\nEXECUTIVE,\"MUELLER INDUSTRIES,INC.\",Z9500\nC.E.O,\"DOLY AND COMPANY, INC.\",Y4000\n,AMERICAN INSTITUTE FOR PUBLIC SAFE,J5100\nJim Click Auto,,T2310\nINVESTOR,THE CAPROCK GROUP,F2100\nCOO,Miriam Haskell,Y4000\nCOMM HEALTH PLAN WA,,H3000\nFIDELITY MORTGAGE LENDERS,,F4600\nMCDONALDS FRANCHISE,,G2900\nFinance,Zinzh Capital Markets,J1200\nCONTRACTOR,A.A. WILL CORP.,B1500\nMETABOLIX INC,,H4500\nPUBLIC AFFAIRS MGR,KENNAMETAL INC,M5100\nVICE PRESIDENT FOR INFORMATION RESOURC,PHILADELPHIA UNIVERSITY,H5100\nREAL ESTATE,\"NOVARE GROUP, INC\",F4100\nFINANCIAL EXECUTIVE,A&M ROOFING,B3000\nCLOSTER BOARD OF EDUCATION,,X3500\nCONSULTANT,\"DOYLE,D'AMORE& BALDUCCI\",Z9500\nPhysician,\"Doris Lyonga, MD\",H1100\nCEO,Liberty proerty Trust,F4000\nREAL ESTATE MANAGEMENT,ALAN KAHN ASSOCIATES. INC.,Y4000\nTax Assessor,Self,Y4000\nSTANLEY SERVICE CENTER INC,,Y4000\nEXECUTIVE,CROUNSE CORP.,T6200\nGENERAL MANAGER,MICROTEL LEHIGH,Y4000\nFIRE FIGHTER / EMS,GLENVIEW FIRE DEPT.,L1400\nAMERICAN CANCER SOCIETY,MANAGER / FOUNDATIONS,Z9500\nATTORNEY,HAWAII PUBLIC POLICY ADVOCATES,Y4000\nRASCH CONST,,B1000\nPresident,Simman Engineering,J5000\nLawyer,Phillipi & Nutt,K1000\nLawyer,QCP Capital Partners,F0000\nEXECUTIVE VICE PRESI,I.O.B. BANK,F1000\nMANAGEMENT,CADENCE DESIGN SERVICES,Z9500\nDEALER PRINCIPAL,KOONS ARLINGTON TOYOTA,T2310\nCOMMUNICATIONS SUPPLY SERVICE ASSOC,,C4100\nLawyer,Lowe Hauptman & Berner LLP,K1000\nOWNER,M & M LIGHTING,G4400\nBusinessman,\"Helmet House, Inc\",Y4000\nConsultant,Grieboski International,Y4000\nExecutive Vice President,\"Mesa Beverage Co, Inc\",G2850\nMERILYN PLANTATION,,F2100\nBOARD OF DIREC,FIRST COMMUNITY BANK,F1200\nCALIFORNIA PROBATE REFEREE,,X3200\nREAL ESTATE,\"TOMASSO BROTHERS, INC.\",Y4000\nPartner,Peck Shaffer & Williams,K1000\nSALES,G-TEC,G6500\nDOCTOR,,A3300\nMARKETING,LEXOLUTION/MARKETING,Y4000\nCoordinator Kdg Lit.,Framingham Public Schools,X3500\nSales,\"Tenant PI, Llc\",Y4000\nTeacher/College Professor,University Of West Georgia,H5100\nENGINEER,LAWYER,K1000\nGIVNISH FAMILY FUNERAL HOMES,,G5400\nAMERICAN NATL BANK,,F1100\nWAYNESBORO NURSERIES,,A8000\nAttorney,\"Williams Mullen, PC\",K1200\nFNN,,C2200\nLobbyist,FIERCE & SSKAKOWITZ,K2000\nVP FINANCE-NORTH AMERICA,SERVICE CORPORATION INTERNATIONAL,G5400\nAttorney,Clifford Law Offices PC,J1200\nADMINISTRATOR,UNION HOSPITAL,H2100\nADVERTISING EXECUTIV,J. WALTER THOMPSON,G5210\nBUILDER,J. PATRICK HOMES,Y4000\nLABORATORY PRESIDENT,,Y4000\n\"VICE-PRESIDENT, FINANCIAL PLANNING\",HYATT HOTELS CORPORATION,T9100\nCOUNTY COMMISSIONER,SPOKANE COUNTY,X3000\nHR Manager,Mystic Stamp,Y4000\nArt/Antiques Dealer,Self-Employed,G4600\nREAL ESTATE,FOSTER ENTERPISES,F4000\nHIST. S,MARYLAND HISTORICAL SERVICE,Y4000\nSENIOR VP,ASRC,Y4000\nCommunications Trainer,Self employed,J1200\nSchool Administrator,None,X3500\nCONTRACTOR,ORTIZ ENTERPRISES,Y4000\nPRESIDENT & C.O.O.,C.I.P. INTERNATIONAL,B4200\nAttorney,Schmidt Law Firm,K1000\nTARASI TARASI & FISHMAN PC,,K1000\nREAL ESTATE BROKER,EVERSTAR REALTY,F4200\nEngineer,Lobb Engr Co,Y4000\nDirector of Finance,New Israel Fund,J7400\nAdvisory Board Membe,Cuban Liberty Council,H4300\nCHAIRMAN OF THE B,SALINE STATE BANK,F1100\nPRESIDENT AND CEO,ENTERGY/PRESIDENT AND CEO,E1620\nPatner,The Potomac Advocates,K2000\nUNIVERSITY FACULTY,SANTA CLARA UNIVERSITY,H5100\nENTERTAINMENT MGR,SELF-EMPLOYED,G6000\nRecycler,Calbag Metals Co,Y4000\nBEVERLY HILLS UNIFIED SCH,,J1200\nCenter Care,,Y4000\nATLAS FOOD SYSTEMS,,G2000\nattorney,\"Johnson, Smith, Hibbard, Wil\",K1000\nPresident,Hudson Valley Truck Ctr Ltd,T3100\nMUTUAL FU,DEUTSCHE ASSET MANAGEMENT,F2100\nPresident,\"World Technical Services, Inc\",Y4000\nOwner,Lighting Management Company Inc,B3200\nSTATE DIRE,USDA FARM SERVICE AGENCY,X3000\nSTATE DIRECTOR,LIBRARIES FOR THE FUTURE,X4200\nAUTHOR/PRODUCER,SELF-EMPLOYED,J1200\nBACCO,,Y4000\nEXECUTIVE DIRECTOR FOR GOVERNMENTAL AF,ROSWELL PARK CANCER INSTITUTE,H2000\nFIRST PACIFIC FINANCIAL INC,,F0000\nManaging Partner,Frontenac Company,F2500\nWALTER KAY ASSOC,,J5100\nCOLLEGE OF NUCLEAR PHYS,,H5100\nSTRATTON PUBLISHING,,C1100\nATTORNEY,JACKSON HOLE TITLE -- ESCROW,Y4000\nBUSINESSWOMAN-SALES,SELF EMPLOYED,Y4000\nPRESIDENT,\"JANET HAYS & CO., INC.\",Y4000\nCEO,HENLEY PROPERTIES,F4000\nHOMEMAKER,NA,F3300\nDEAN MEAD SPIELVOGEL ET AL,,K1000\nPresident,Traders Loan & Jewelry,G4600\nENGINEER,E & D ENGINEERING,J1100\nREAL ESTATE BROKER & PROPERTY MANAG,,F4000\nRetail Executive,Gordiva Chocolate Inc.,J7400\nATTORNEY,DODD & DODD,Y4000\nMANAGEMENT,OAKMONT CORPORATION,F2100\nWELDER & FABRICATOR,,Y4000\nMarketing,Aon,J1200\nInsurance Broker,Foa & Son Corporation (HQ),F3100\nBookstore Onwer,Leelanau Books,Y4000\nimport export,self,J1200\n\"TEACHER, SECONDARY ED. ADMIN.\",\"RETIRED/TEACHER, SECONDARY ED. ADMI\",X1200\nPresident,Ideal Healthmart Pharmacy,G4900\nOFFICE MANAGER,KEITH MCRAE DDS,H1400\n\"Gov't Affairs\",JP Morgan Chase,F1100\nChairman,Satellite Healthcare,Y4000\nEducator,Bill College,Y4000\nGREATER WASHING RADIOLOG,,H1130\nVP and General Couns,\"Becton, Dickinson and Company\",H4100\nREAL ESTATE CO. PRI,EEA DEVELOPMENT,Y4000\nARCHITECT,PRINCETON  UNIVERSITY,H5100\nFINANCIAL ADVISOR,Lpl,Y4000\nPresident - Louisvil,Republic Bank,F1000\nARTHUR HART & COMPANY,,Y4000\nYouth Sports,Coast Sports,Y4000\nPRINCIPAL OFFICER,CASE CONCEPTS,Y4000\nStationary Engineer,Sf Water Dept,E5000\nPresident & CEO,McNair & Co.,F3300\nEXEC,\"WAUKESHA TOOL & STAMPING, INC.\",M5000\nOILFIELD,WEATHERFORD,E1150\nEngineer,\"MESH, Inc\",Y4000\n\"BAYLESS, BOLAND BATES\",,K2000\nMANAGER,EMC CORP.,C5110\nGOVERNMENT RELATIONS CONSULT,G.M.A.,K2000\nBUSINESS SOFTWARE ALLIANCE/ATTORNE/,,C5120\n\"Chairman, President\",\"Marsh Supermarkets, Inc.\",G2400\nLAHEY CLINIC,,H1130\nINTERPRETING AND TRANSLATION,FINDER INTERPRETING SERVICES,Y4000\nHCA HEALTHCARE CORPORATION,COLUMBIA,H0000\nMAINE NEONATOLOGY ASSOCIATION,,H1130\nVP of Operations,Local Government FCU,F1300\nAttorney,Winston & Cashatt,K1000\nMANAGING PARTNER,TIGER MANAGEMENT,F2700\nATTORNEY,LAW OFFICES OF ROBERT CHESTER,K1000\nATTORNE,\"KATTEN, MUCHIN, ROSEMAN LLP\",K1000\nNUTRITIONAL FOOD SUPPLEMENTS,SELF,Y4000\nNot Your Business,Not you Business,Y2000\nFINANCIAL SERVIC,MANULIFE FINANCIAL,F0000\nCHAIRMAN & PRESID,THE LENFEST GROUP,C2200\nCIVITAS GROUP,,D9000\nDoctor,\"Donald Marshall, DO\",H1100\nPRINCIPAL,GARY COMMUNITY INVESTMENT COMPANY,Z9500\nVICE PRESIDENT,C. G. ENGINEERS,B4400\nGOVERNMENT AFFAIRS,GRIFFIN CROWLEY GROUP,Y4000\nC & R PLUMBING,,B3400\nRANDALLS,,G2400\nRESEARCH DIRECTOR,MONSANTO CO,A4000\nDirector of Development,Montclair Cooperative School,Y4000\nTHE GSA GROUP,,Y4000\n\"SMITH, HULSEY AND BUSEY\",,Y4000\nCITY PUBLIC SERVICE,,X3000\nKEY CURBING & PAVING INC,,B3000\nFilm Maker,Niijii Films,C2400\nCONSTRUCTION,UNIVERSITY OF WYOMING,H5100\nBus Administrator,Self-Employed,Y4000\nTHE POINT,PATTENS LTD,Y4000\nTRUE PACK,,M7100\nREALTOR,KELLER WILLIAMS VIP PROPERTIES,J9000\nExec,Ameren UE,Y4000\nINFO REQUESTED,Northwest  College,H5100\nNEW WORLD REALTY MANAGEMENT LLC,,F4200\nINFORMATION REQUESTED,TOWSON UNIVERSITY,H5100\nBUILDER/OWNER,BALL HOMES,B2000\nSELF EMPLOYED/MECHANIC/ OWNER,,T2400\npresident,C. W. Matthews Contracting,B1500\nFOUNDER,THE BYRNE GROUP,Y4000\nOwner,Loeffler Construction,B1500\nOWNER,CELESITY GOVERNMENT SOLUTIONS,Y4000\nREHAB PARTNERS,,Y4000\nPARTNER,DLA PIPER US LLP,K2000\nPROJECT MANAGER,THOMSON,C1100\nTRIPLETT UNDERHILL JENNINGS,,Y4000\nSELF-EMPLOYED,CENTRAL PETROLEUM,Y4000\nATTORNEY,WHEELER TRIG KENNEDY LLP,K1000\nPATHOLOGY & NUCLEAR MEDICINE ASSOCS,,H1130\nCHIEF OPERATING OFFICER,AVERA HEALTH,H2100\nChief Executive Offi,W.K. Warren Foundation,X4100\nPIPER JEFFRAY,,F2100\nOWNER,FLINT HILLS SOLUTION,G5200\nphysician,21 Century Oncology,H1130\nMANAGEMENT,,T8100\nProgram Officer,Hewlett Foundation,X4100\nCTO,C8 Medisensors,H4100\n\"WILMER, CUTLER & DICKERING\",,K1000\nA.G.M.,STATION CASINOS,G6500\nHOME BUILDER,CORDELLE DEVELOPMENT CORPORATION,Y4000\nAerospace Engineer,ARINC,B4400\nGovt & Public Affair,Norton & Assoc.,Y4000\nManagement,Cosmic Pet Products,Y4000\nCONSTRUCTION & MINING,,B1500\nTHE BACK & NECK CARE CENTER,,H1100\nExecutive,Safe Auto Insurance,F3400\nPhysician,UT Southwestern Medical Ctr,H1100\nSelf-employed,\"Jordan Real Estate Investments, LLC\",F4100\nSEC,COUNTRY TOWN VIALLAGE,Y4000\nFinance Director,Democratic Senatorial Campaign Committ,J1200\nSales,Hollingsworth and Vose Co.,Y4000\nC F O,CYNDAL ASSOCIATES,Y4000\nWINE SALESMAN,SELF-EMPLOYED,G0000\nCEO,M Financial Group,F2100\nPhysical Thearpist,Nodey Mountain Ortho,H1130\nADMIN,SMI,Y4000\nBEERS MALLERS BACK,,K1000\nGORDON BIERSCH,,Y4000\nWEST END RETIREMENT CENTER,,Y4000\narchitect,da Rosa Ward,Z9500\nOwner,Money Management,F5000\nPresident and CEO,Channellock,Y4000\nPHYSICIAN,LAFAYETTE MED CENTER LLC,J1100\nCONSULTANT,CAROL GLOFF & ASSOCIATES,Y4000\nSELF EMPLOYED,\"MLI INVESTMENTS, INC.\",F7000\nPhysician,Phytrust Ltd.,J7400\n\"De-vp Cont, Insur &\",Duke Energy Business Services,E1620\nPRINCIPAL,EVERGREEN GROUP LLC,B2000\nTOWN OF NEW HARTFORD,,X3000\nATTORNEY,BLOSSER & SAYLIE,K1000\nPENSION FUND ADMINISTRATOR,,Y4000\nTECHNO,ROARING FORK SCHOOL DISTRICT,J1200\nCHEVY CHASE ASSOCIATES,,Y4000\nMO ASSOC OF PHYSICAL THERAPISTS,,H1700\nEXECUTIVE,ELITE MEDICAL STAFFING INC.,G5250\nBANKER,ROCKLAND TRUST,Y4000\nMANAGEMENT,SLOCUM INC,Y4000\nTEACHE,ESCAMBIA COUNTY SCHOOL BOARD,X3500\nOwner,Morrissette Financial Ctr.,F0000\nGUSTINE COMPANY,,Y4000\nFITNESS CLUB EXECU,CURVES FOR WOMEN,G5800\nPRESIDENT,GOLD CANYON INTERNATIONAL,G4800\nINVESTOR,STERLING STAMOS,Y4000\nSTANFORD FINANCIAL GROUP,,F2100\nTeacher Assistant,N Raleigh Untd Meth Preschool,Y4000\nAUTO DEALER,BOARDWALK AUTO CENTER,T2000\nBAXTER LANE COMPANY,,Y4000\nC W WRIGHT INS,,F3100\nPhysician,\"Internists, Oncologists, Ltd\",H1130\nProfessors,Universityofmarywash,Y4000\n\"GALLAND, KHARASCH, MORSE ET AL\",,K1000\nWendel Rosen et al,,K1000\n\"MCLAWLAND, KEEN & BUCKMAN\",,Y4000\nFINANCIA,THE TRANEL FINANCIAL GROUP,F0000\nOWNER,HORNBACK REALTY,J1200\nASSOCI,GEORGE WASHINGTON UNIVERSITY,H5100\nRETIRED,CHESAPEAKE PUBLIC SCHOOLS,X3500\nGOVERNMENTAL CONSU,RATHBUN & ASSOC.,K2000\nTravel Agency Owner,Strong Travel Services,T9400\nPARTNER,CAPITOL COUNCEL,K2000\nCLEVELAND MORTGAGE,,F4600\nCFO,\"CCS, Inc.\",J7400\nRUETER REALTY,,F4200\nPHYSICIAN,BANNER MEDICAL IMAGING,Y4000\nCHIEF LEGAL OFFICER,PROHEALTH CARE,Y4000\nindpendent consultant,Woodside Consulting,Z9500\n\"SVP, Employee Benefi\",Protection,F3000\nHI-Q PRODUCTIONS,,Y4000\nOwner,Jameson Roi,Y4000\nPRESIDENT,TRUE REFLECTIONS,Y4000\nAREA MANAGER,NATIONAL FUEL GAS,E1140\nOWNER,RL FLO-MASTER,H5100\nSECRETARY-TREASURER,ILLINOIS FEDERATION OF TEACHERS/SEC,L1300\nC.E.O.,JNET DIRECT INC.,Y4000\nLAWYER,FEDERAL RESERVE BANK OF NEW YORK,X3000\nPhysician,CJAA,Y4000\nEXECUTIVE,HUFFMAN GROUP EAST INC,Y4000\nEXECUTIVE - RETIRED,LAW BULLETIN PUBLISHING CO./EXECUTI,J1100\nEngineer,City of Cincinnati,X3000\nHedge Fund Managemen,Seven River Capital Management,Y4000\nSENIOR,KEYSTONE MINING SERVICES LLC,E1200\nSenior Vice President,\"Wood Partners, LLC\",F4100\nTRUCK DEALER,CAROLINA INTERNATIONAL TRUCKS,T3000\nSpine Surgeon,Independent,Y3000\nREGISTERED NURS,N.W. MEDICAL CENTER,Y4000\nINVESTMENTS,BIRCH HILL,Y4000\nPARTNER,DLA PIPER RUDNICK,K1000\nOWNER,\"ACME OYSTER HOUSE RAWBAR, INC.\",G2900\n\"VICE PRESIDENT, TECHNOLOGY PLATFORMS &\",ECOLAB INC.,A2000\nCFO,\"Mill Creek Press, Inc\",Z9500\nREAL ESTATE,MILLS & LYNN ENTERPISES,J7400\nFINANCE,DG CAPITAL MANAGEMENT LLC,F2100\nMD,NGDC,H1100\nBUSINESS OWNER,THE BARLEY HOUSE,Y4000\nFREEDOM FARM INTERNATIONA,,Y4000\nPresident of Production Company,MBM Productions Intl,Y4000\nSNIDER TIRE INC,,Y4000\nAttorney,Maloof Browne & Eagan,K1000\nBURKEMPER LAW FIRM,,K1000\nATTORNEY AT LAW,WISE & DOERNER LTD.,K1000\nPresident,Trident Corp.,C5130\nCONSULTING: GOVT REL & BUS DEV,WAYPOINT LLC,G5200\nOwner,Pure Joe Pilates Studios,Y4000\nPRESIDENT OF OPERATIONS,\"LOVE'S TRAVEL STOPS\",G4300\nEXECUTIVE,PSS,Y4000\nSR. VP,REPUBLIC NATIONAL DISTIRBUTING OF INDI,G2850\nVP OF OPERATIONS,SHPS,G5270\nPUBLISH,\"DIOCESAN PUBLICATIONS, INC.\",J1100\nEXECUTIVE,AKAMAI TECHNOLOGIES,C5130\nAssistant Teacher,Kingsbury Day School,Z9500\nPhysician,Nason Hospital,H2100\nOrthopaedic Surgeon,Cal Med,H1130\n\"CHILDREN'S HEALTH SY\",,H0000\nattorney,Blank Rome Comiskey & McCauley,K1000\nCEO,PERMATILE,B5100\nFARMER  & SAWMILL OWNER,,Y4000\nMANA,DRESCHLER RCM GLOBAL INVESTORS,F2100\nCHIEF FINANCE OFFICE,GENERAL ELECTRIC CAPITAL,F1400\nFOUNDER,\"MSD CAPITAL, LP\",F0000\nATTORN,GAVIN COX PUGH & WILHOIT LLP,K1000\nPHYSICIAN,DERMATOLOGY ASSOCIATES OF KINGSPORT,H1130\nFAMILY PRACTICE PHYSICIANS PC,,H1100\nPHYSICIAN,HEADACHE&PAIN CENTER,Y4000\nVAN DER MOOLEN SPECIALISTS LL,,F2100\nPHYSICIAN,NORTHSIDE ANESTHESIOLOGY,H1100\nATTORNEY,FELLIG FEINGOLD SCHWARTZ,Y4000\nVICE PRESIDENT,GEORGIA CROWN,G2850\nMD,SUNY,J7400\nBusiness Owner,Innovel LLC,Y4000\nContractor,GREAVES INC.,Y4000\nTEAPORTS,,Y4000\nEXECUTIVE DIREC,OLDTIMES FOUNDATION,C1100\nBUILDER-DEVELOPER,SUNSHINE LAND,J1100\nComputer Network Con,Self-employed,G0000\nSRR MGT,,Y4000\nINFORMATION REQUESTED,GALAXY 1 MARKETING INC.,G5280\nPARTNER,COTTON SCHMIDT,K1000\nASSOCIATE,MOSBACHER ENERGY,E1000\nCHAIRMAN,WEDGEWOOD PARTNERS,Y4000\nPROGRAMMER,AVM SOFTWARE,C5120\nFLOOR SALES,SELF,Y4000\nHORSE FARMS/TRAINERS,SELF EMPLOYED,A1000\nPRESIDENT,SOUTHERN METAL ROOFING,B3000\nSECRETARY,ST. MARYS CHURCH,X7000\nAppraiser,Self Employed,F4700\nROSE FINANCIAL,,F0000\nSELF EMPLOYED/ATTORNEY/INVESTOR,,K1000\nEXECUTIVE DIRECTOR,HEALTHY WEIGHT COMMITMENT FOUNDATION,Y4000\nInvestment Bank,J.P. Morgan,F1100\nEmergency Physician,Cabarrus Emerg Med Assoc,H1100\nPRESIDENT & CEO,AT&T MOBILITY,C4300\nPhysician/Homemaker,Self,H1100\nACCOUNTANT,BCBS,J1200\nMedia,Piledriver Creative,Y4000\nNurseryman,Wallitsch Nursery/Garden,A8000\nATTORNEY,FREEDLAND FARMER,K1000\nORTHOPEDIC SURGEON AND CERTIFIED REGIS,CARITAS CHRISTI HEALTHCARE,H2100\nHURLEY AGENCY,,Y4000\nOFFICER,LETICA CORPORATION,M1500\nPrincipal,The Albright Group,G5270\nFORMATION CAPAITAL,,Y4000\nATTORNEY,\"ZOHAR LAW FIRM, PC\",K1000\nProject Manager,LPI,J1200\nENGINEER,PHOENIX MANAGEMENT,Y4000\nPartner,Cooper And Company,Y4000\nDES JARDINS RANCHES,,A0000\n\"PARSONS, BEHLE & LATIMER\",,K1000\nExec,Minnesota Mutual,F3300\nPARTNER,SCHNEIDER & ASSOCIATES,Y4000\nCOUNTY LIMO,,T4200\nAMERICAN FIBER & FINISHING,,Y4000\nCeo,T3 Technologies,Y4000\nParalegal,McGee Law Offices,K1000\nChief Executive Officer,Tube City IMS,M2400\nGEORGETOWN MED,,Y4000\nINVESTMENT PROFESSIONAL,ANNOX CAPITAL MANAGEMENT LLC,F2100\nATTORNEY,SHUGHANT THOMPSON KI,K1000\nCall Center Operations,Etelecare Global Solutions,Y4000\nENTERPRISE BUSSIMEN LAW GROUP L.L.C,,Y4000\nInformation Technology,MetLife,F3300\nPresident,Design & Build Corp,Y4000\nVICE PRESIDENT,\"FED. MUNIC. SEC. FUND, INC.\",Y4000\nPRESIDENT,BELLEVILLE & ASSOCIATES,F3100\nPRICE & MARSHALL,,F2300\nOwner,Felderman Design--build,Y4000\nAttorney,\"Nelson, Levine, de Luca & Horst\",K1100\nSELF-EMPLOYED,KENADA FOXHOUNDS INC.,Y4000\nManager,American Almond Products Co,Y4000\nPresident,MYUTIQ,Y4000\nAccount Manager,Cathay Bank,F1000\nSVP REGULATED FLEET OPERATIONS,DUKE ENERGY BUSINESS SERVICES,E1620\nDENTIST,\"DAVID L. HOFFMAN, DDS\",H1400\nREAL ESTATE AGENT,COMLAND GROUP,F4000\nPSYCHIATRIST,CARMAN RESEARCH,Y4000\nMD,LUDWICK EYE CENTER,H1120\nPRIDE HOMES INC,,Y4000\nMANAGER,COMMONWEALTH BANK,F1100\nP H CHADBORNE & CO,,Y4000\nArtist,Grey Advertising,J1200\nPROGRAMMER,ORACLE AMERICA,C5110\nEXECUTIVE,UNIVISION,C2200\nOWNER,TOWER MANAGEMENT SERVICES LLC,Y4000\n\"CHAIRMAN, PRESIDENT &\",BOWATER INC.,A5200\nNetwork Engineer,Alcatel Telecom,C4600\nINFO REQUESTED,PARKSIDE PLAZA CONDOMINIUM,Y4000\nDEALER,STAN OLSEN AUTO WORLD,T2300\nJ C CABINET CO L L C,,M4100\nProfessor,University of Houston,J1200\nREAL ESTATE,POKO MANAGEMENT CO.,F4000\nM.D.,NONE,H1130\nBUSINESS,LIZ CLAIRBORNE INC.,Y4000\nNEIL LABORATORIES,,Y4000\nPres & CEO,Flagship Enterprise,Y4000\nMANAGER,TPC HEALTH DEPARTMENT,Y4000\nHOTEL OWNER,DAYS INN LAREDO,T9100\nfinance,BayernLB,Y4000\nDoctor,Mcfarland Eye Ctr.,H1120\nPRES,YELLOW CAB ASSOC,T4200\nSENIOR ADVISOR,QUADRANGLE,F2100\nMANAGER/ASTRODYNAMIST,SELF,Y4000\nCEO,CSX,T5100\nOwner,Cyberdefenses Inc.,Y4000\nNTL ASSOC ELEMT SCHOOLS,,Y4000\nCARR REALTY CORP,,F4200\nCANDIDATE NC SENATE,SELF,Y4000\nATTORNEY,CUMMINGS MCCLOREY DAVIS & ACHO,Y4000\nGS INDUSTRIES,,M2100\nCRNA,UNIV OF OKLAHOMA,H1710\nCO-FOUNDER,VIGNETTE CORPORATION,Y4000\n\"PIPER, JAFFERY & HOPWOOD\",,F2100\nMOUNTAINE MEADOWS POT,SELF EMPLOYED,Y4000\nPhysician,\"Milltown Family Physicians, Inc\",H1100\nKPMG PEAT & MARWICK,,F5100\nPRESIDENT & CE,TRC GLOBAL SOLUTIONS,Y4000\nMANUFACTURING AND CON,SELF EMPLOYED,Y4000\nOphthalmologist,Self-employed,H1120\nCLUBCORP INTERNATIONAL,,G5800\nProduct Manager,Elsevier,C1100\nEngineer,\"TAC Engineering, Inc\",J7120\nfundraiser/conferenc,Self employed,G5200\nExecutive,Dominion,E1620\nPhysician,Pain Care,H1130\nCONSULTANT,\"GILDAY, O' CONNELL & DARLINGTON\",Y4000\nCOUNSULTING ENGINEER,SELF,B4400\nPRESIDENT,MI PROSPECT FOR RENEWED CITIZE,Y4000\nVICE,COMCAST CABLE COMMUNICATIONS M,C2200\nPRESIDENT OF AOL INTERACTIVE S,AOL,C5140\n\"NANA'S FOR REMARKABLE KIDS\",,G4100\nEngineer,Bright Enterprises,Y4000\nPublicist,ProMedia,J7400\nDIR CORPORATE INSURANCE,NISOURCE CORPORATE SERVICES CO,E1620\nANESTHESIOLOGIST,EAST END ANESTHESIOLOGISTS LLC,H1130\nProfessor,\"Hunter College, Cuny\",H5100\nReal Estate,Regent Partners,F4000\nInvestor,Self,X4000\nBUSINESS CONSULTANT,BARDOL & CO,Y4000\nBUSINESS EXECUTIVE,TOTAL SOURCE COMMUNITY ASSET M,F4400\nVP,Zebra Imaging,G5240\nREAL ESTATE,R&V MANAGEMENT CORP,F4000\nREAL ESTATE BROKER,CROSBY & ASSOCIATES INC.,J9000\nCOMPTROLLER,MISSISSIPPI POWER CO.,E1600\nDirector/Psychologist,United Fed Teachers Victim Sup,H1110\nPresident,Panola National Bank,F1100\nCeo,Decimal Inc.,Y4000\nVP and CIO,Avmed,F3200\nDirector of Developm,PA College of Optometry,H5100\nPRICIPAL DAUGHARTY & CO LLC,,Y4000\nPARTNER,THE OUTLAW GROUP/PARTNER,K2000\nAUTO MECHANIC/EQUIPMENT MECHNC,AUTOMOTIVE MAINTENANCE SERVICE,T2000\nCo-Head of Global Fi,Citigroup,F1100\nDIRECTOR LEGAL AFFAIRS LAND,FORD MOTOR COMPANY,T2100\nTreas: Neal Fuller,,F3100\nV. President - Govt,Service Master,G5200\nCardiologist,Medical Associates Clinic,H1100\nRIGGS ABNEY NEAL ORBISON,,Y4000\nVP-FINANCE,ALCON LABORATORIES INC.,H4000\nATTORNEY,BIG 5 CORP.,Z9500\nexecutive,Quadrangle Group LLC,F2100\nATTORNEY,\"MCINTYRE LAW FIRM, PLLC\",K2000\nFIRST BANK LACROSSE OFFICER,,F1000\nARCHIVIST,CUMBERLAND UNIVERSIT,H5100\nProject Manager,\"Holaday-Parks, Inc.\",Y4000\nVice President  Finance & Acctg,Comcast Cable Communications I,C2200\nSenior Fellow,New Mexico State University,H5100\nPresident,Human Rights Campaign,J7400\nDANCE INSTRUCTOR,RIVERFRONT BALLROOM & LATIN DANCE CENT,Y4000\nDoctor,Csg,Y4000\n\"EXECUTIVE DIRECTOR, PROJECT DEVELOPMEN\",SOUND TRANSIT,Z9500\nMT. HOOD GENERAL & VASCULAR SURGEON,,H1100\nConsultant,\"Cansler, Venosdel & Assoc.\",Y4000\nOwner,Vagabond Inn Palm Springs,T9100\nLABORER,BAROCO CONTRACTING CORP./LABORER,LB100\nHASKELL LEMON CONST C,,B1000\nCHAIRMAN & CEO,BET NETWORKS,C2000\nAttorney,Wuisfsm Law Firm,K1000\nCONSULTANT,FIRMANI L.L.C.,Y4000\nWOODVIEW NURSING,ELMBROOK,Y4000\nEx Dir Rgnl Wrkplc Srvcs,United Services Automobile Asn,F3100\nEXEC. VICE PRESIDENT,RALLY SOFTWARE,C5120\nMARINE CONTRACTO,DOLPHIN BOAT LIFTS,Y4000\nattorney,\"Nichols & Skinner, P.C.\",K1000\nLAWYER,\"RUDEN, MC CLSKY, ET AL.\",K1000\nSocial Work,Bainbridge Ometepe Sister Islands Asso,J1200\nConsultant,Merrimack Valley fund.,Y4000\nCEO,BLACK ICE SOFWARE,Y4000\nReal Estate,Senior Lifestyle Corporaton,J5100\nSenior Vice President,Savings Bank of Mendocino County,F1100\nINTERPOOL INC./VICE PRESIDENT/TECH,,Y4000\nPROFESSOR,DEPAU UNIVERSITY,Z9500\nST. AGNES-ST. JOHN TOLEDO FCU,,F1300\nTECHNICAL SERVICE MA,ONCURA INC.,Y4000\nBOITANO SARGENT & LILLY,,Y4000\nOPTIMATE INC,,Y4000\nPHYSICIAN,ANRMD PC,Y4000\nMERILIAT BUILDERS,,Y4000\nASHLAND INCORPORATED,,E1160\nRESTAURANT OWNER,\"FWL & SONS, INC.\",Y4000\nExecutive,Osborn Heirs Co.,Y4000\nEDUCATION,TAIS,Z9500\nOwner/Manager,Osborn Drugs,H1750\nVICE PRESIDENT,NEASE LAGANA EDEN & CULLEY/VICE PRE,F3300\nATTORNEY,LAW OFFICE OF TOM GREEN,K1000\nBusiness Manager,\"Competitrack, Inc\",Y4000\nPrincipal,\"Mattlin Mandell, Inc\",Y4000\nINVESTMENTS AND,WOODCLIFF HOLDINGS,Y4000\nDIRECTOR,\"J&S BENDER INVESTMENTS, INC./DIRECT\",F7000\nCONTROLLER,CHINATOWN SERVICE CENTER,Y4000\nPRESI,\"JOHN STANLEY ASSOC, INC. CCIM\",F4000\nPRESIDENT,ISSUE DYNAMICS INC.,G5210\nCLOTHES DESIGNER,SELF,Y4000\nANALYST,NRCS,Y4000\nMarketer,\"Rex Oil Company, Inc\",E1170\nLANIER FORD SHAVER,,Y4000\nBusiness Intelligence Services,\"Brightlight Consulting, a Business Int\",Y4000\nEngineer,Himadri Choudhury,Y4000\nDISTRIBUTORSHIP,,G3000\nInvestment professional,Fidelity Charitable Gift Fund,F2100\n,RIKER DANZIG SCHERER HYLAND & PERR,K1000\nFinancial Manager,Toyota Motor Sales USA Inc,J1200\nVILA & SON LANDSCAPING CORP.,,B3600\nExecutive,Munster Community Hospital,F4200\nATLANTA METROPOLITAN COLL,,Y4000\nC.E.O.,\"ICI, INC\",Y4000\nCOMMERCIAL BROKER,,F2200\nTrader,William Blair & Company,F2300\nPresident,Soluble Systems,H4100\nBREHOB CORPORATION,,Y4000\nVeterinarian,FDA Center for Veterinary Med,A4500\nEXECUTI,BIG HORN MOUNTAIN LOG HOMES,Y4000\nTEACHER,VOLUSIA COUNTY SCHOOLS,X3500\nCEO,New York Road Runners,Y4000\nRETIRED PHYSICIAN,UNIVERSITY OF WISCONSIN,H5100\n\"Craigslist, inc.\",,C5140\nCEO,\"LAZARE KAPLAN INT'L\",M3400\nCHAIRMAN,THE FRITTS GROUP,C2100\nMORTOLA,,C4600\nEVP - SERVICE SECTORS,\"BAE SYSTEMS, INC\",D2000\nPRESIDENT,A G SPANOS COMPANIES,F4100\nrequested,requested,B1500\nOWNER,SCHUSTER INVESTMENTS INC.,F7000\nInvestment Banking,Self/Formerly Morgan Stanley,F2300\nProfessor,University of Michigan-Dearborn,J7400\nOmbudsman,State of NJ,X3000\nPRESIDENT,NEWTON-WELLESLEY HOSPITAL,H2100\nManfacturing,Self-Employed,G0000\nDEVELOPER,DAVIDSON & JONES CORP.,T9100\nMANAGER,\"BNA, INC.\",Y4000\nNON PROFIT CFO,\"MERCY HOUSING, INC.\",Y4000\nBUSINESS OWNER,\"J.R. MCGEACHIN, INC.\",Y4000\n\"MOORE CONTRACTING, IN\",SELF-EMPLOYED,Y4000\nPHYSICIAN,WEST COUNTY RADIOLOGICAL INC.,H1130\nPRINCIPAL,JAMES D THIENEMAN REAL ESTATE,F4000\nTHOMAS FELDMAN & WILSHUSEN,,K1000\nChief Operations Officer,Petro Stopping Centers,Y4000\nTEACHER,MONTERO SCHOOL DISTRICT,J7120\nVP,SEILER INSTRUMENT CO/VP,Y4000\nACANDIAN AMBULANCE,,H3000\nCHIEF EXECUTIVE OFFICER,CORPUS CHRISTI MEDICAL CENTER - DOCTOR,H2100\nOwner,TMI Tech,Y4000\nBAY AREA INVESTMENTS L.L.C.,,F4200\nEXECUTIVE,BIOMEDICAL DEVELOPMENT,Y4000\nEXECUTIVE,\"UNIVERSAL NOTARY, INC.\",Y4000\nPRESIDENT,DENVER MENTOR CHAMBER,G1100\nWHITING TURNER,,Y4000\nATTORNEY,PIPER RUDNICK LLP,F3000\nCFO,ALLIANCE LAUNDRY SYSTEMS LLC,G5500\nMILBERG WEISS BERSHAD & SCHULMAN I,,K1100\nLAWYER,NA,J9000\nOWNER,SCOT COHEN REALTY,F4200\nPRESIDENT AND CEO,BUILDING MATERIALS HOLDING CORP.,Y4000\nC.E.O.,DEAN,Y4000\nPresident,\"Forms Plus, Inc.\",Y4000\nEducator,Indianapolis Public Schools,X3500\nPHYSICAL THERAPIST,ST. JOHNS HOSPITAL,H2100\n\"EXECUTIVE DIRECTOR, TECHNOLOGY\",\"COX COMMUNICATIONS, INC.\",C2200\nBUSINESS O,\"PHIL WINSLOW MOTORS, INC\",Y4000\nCROSS PETROLEUM,,E1170\nDivision Manager,\"Genentech, Inc.\",H4500\nWHOLE SALE FLORRING DISTIRBUTER,SWIFT TRAIN CO,Y4000\nUS CUSTOMS S,US TREASURY DEPARTMENT,X3000\n\"DEAN, DEAN, SEEGAR, HART & S\",,Y4000\nAttorney,Syndicated Communications Inc,Y4000\nU OF CALIFORNIA,,J7400\nPRESIDENT,SCHWEITZER ENGINEERING LABORATORIES,E1700\nMORRISON CO,,Y4000\nGENERAL MANAGER/CO-OWNER,ACURA OF LIBERTYVILLE,T2300\nATTOR,\"GARY FLACK & ASSOCIATES, P.C.\",H1100\nSDA INC,,Y4000\nMidland County Republicans,,Z5100\nEYE SURGERY ASSOCIATES,,H1120\nBusiness Manager,Sheet Metal Workers Local No 292,LB100\nLawyer,Hill Law,K1000\nREESE DESIGNS,,Y4000\nRAMOS FARMS,,Y4000\nGM ALTON MFG,,Y4000\nExecutive,Yum Brands Inc.,G2900\nCOMMUNITY REDEVELOPMENT,\"UNION BANK, NA\",F1000\nGUIDANCE CLINIC OF T,SOCIAL WORKER/ADMINISTRATION,H6000\nYOUNG LUMBER,,B5200\nCENTRAL STATES ORTHOPEDIC SPECIALIS,,H1100\nINVESTOR,CLARITY PARTNERS,Z9500\nDirector of Marketing,Bernardin Lochmueller & Associates Inc,B4000\nSESAME WORKSHOP,,C2400\nPRESIDENT,P.A.L. LABORATORIES,Y4000\nJEWELER,RAMSEY MFG. JEWELERS,Y4000\nTOWN OF KENNEBUNKPORT,,X3000\nFIRE FIGHTER / EMS,JACKSONVILLE ASSOCIATION OF FIRE FIGHT,L1400\nEXECUTI,ACTIVE FIRE SPRINKLER CORP.,M2300\nFOUNDER,HARRIET AND GEORGE BELLA FDN,Y4000\nCONTINUUM HEALTH PARTNER,,H2100\nCENTER FOR THE ARTS EDUCATION,,H5100\nASHEVILLE PULMONARY ASSOCIATES P A,,H1130\nATTORNEY,THE SLEDLUND COMPANY,Y4000\nDBA,UMG,J1200\nSALES,GENZYME,H4500\nSUTHERLAND ASBILL & BRENNAN,,J7400\nCorp. Exec,\"H  and S Tool, Inc.\",M5100\nWHIPPERWILL,,F2100\nGrad. Research Assoc,Ohio State University,H5100\nTEACHER,BRACKENRIDGE HIGH SCHOOL,Y4000\nINVESTOR RELATIONS,HEALTH SOUTH,H2000\nVice President,Marriott International,J7300\nINFORMATION REQUESTE,HRN SERVICES INC,Y4000\nLANDSCAPER,JFD LANDSCAPES,B3600\nUniversity of Illinois at Springfield,Dean,Y4000\nOPHTHALMOLOGIST,DUKE,H5100\nPRESIDENT,MCQUIDDY INCORPORATED,Y4000\nROCKEFELLER FAMILY,,Y4000\nVP - GA,SOUTHWEST AIRLINES CO.,T1100\nOwner,Dublin Vetinary Clinic,Y4000\nBONSIB MARKETING SERVICES,,Y4000\nENTREPRENEUR,GROUPTWEET.COM/ENTREPRENEUR,C5140\nANESTHESILOGIST,\"ASSOCIATED ANESTHESIOLOGISTS, PC\",H1130\nOWNER,SAFER NETWORK SOLUTIONS,Y4000\nSvp,\"Boston Properties, Inc\",F4100\nPRESIDENT,AKC COMMODITIES,Y4000\nSURGEON,ATLANTIC UROLOGY,H1130\nSTAFF MEMBER,ESCAMBIA COUNTY BANK,F1100\nCEO,JETLINX,Y4000\nHealthcare,Victoria Gardens LLC,J1200\nLYNE INVESTMENTS,,Y4000\nINVESTMENTS,TFMG ASSOCIATES,J5100\nLAWYER,TREASURY DEPARTMENT,X3000\nINVESTMENT BANKING,SPECTRUM CAPITAL MARKETS LLC,Y4000\nMANAGER,AMERICAN CANCER SOCIETY CANCER ACTION,JH100\nPresident,Beauchamp Distributi,Y4000\nMILLBURN COMPANY,,F2100\nPUBLIC RELATIONS,PRR,Y4000\nATTO,RINGO STANLEY ENDOR HADLOCK PC,Y4000\nPRESIDENT,SUNSHINE TOYOTA,T2300\nPRESIDENT,AFRIAT CONSULTING GROUP,G5210\nKONING & ASSOCIATES,,Y4000\nMEETING CONSULTANT,,Y4000\nGeneral Partner,SELF-EMPLOYED,E1120\nPUBLISHER,REMEDIA PUBLICATIONS INC,C1100\nPRESIDENT,ACTIVITIES FOR KIDS INC.,Y4000\nState Senator,Mississippi Senate,X3000\nPresident/Chief Exec,Prospect Financial Advisors,F0000\nOWNER SOFTWARE CONSULTANT,Q & A CONSULTING LLC/OWNER SOFTWARE,Y4000\nFinancial Advisor/Branch Manager,Raymond James Financial Services,F2100\nGovernment Relations,Cash America International,F1420\nVP,\"BEAU JO'S MANAGEMENT\",Z9500\nDEVELOPER,REALTOR,F4100\nAttorney,\"The Meiburger Law Firm,\",K1000\nCLINICAL TRIALS SPECIALIST,VANDERBILT UNIVERSITY MEDICAL CENTE,H2100\nREAL ESTATE BROKER,LOMBARDI REALTY,F4200\nDirector of Policy and Planning,New Jersey Regional Council of Carpent,Y4000\nNot employed,Self-employed,G0000\nTREASURY SERVICES,BANK OF OKLAHOMA,F1100\nVP,\"Myco Industries, Inc\",E1120\nVA CARDIOVASCULAR SPECIALISTS,,H1130\nRESEARCH PHYSICIAN,SANGART,Y4000\nPRESIDENT,SOUND DEVELOPMENT GROUP,Y4000\nMassage Therapist,Body Kneads Massage,Y4000\nAttorney,\"Wolf, Greenfield & Sacks\",K1000\nPROFESSOR,\"BRIGHAM AND WOMEN'S HOSPITAL\",Z9500\nChairman,\"DuraBuilders, Inc.\",Y4000\nMONARCH LEASING INC,SELF,Y4000\nAttorney,Patterson Balkings Webb & Tyler,K1000\nEXECUTIVE,STATE OF WASHINGTON,X3000\nMEDICAL DOCTOR,WARREN GENERAL HOSPITAL,H2100\nProduction Coordinat,Choice Condominiums,Z9500\nManager,M.B.N.A.,F1400\nBARCKLAYS CAPITAL,,Y4000\nTreasurer,ESR,Z9500\nTECHNOLOGY CONSULTANT,\"OSTRIKER VON SIMSON, INC.\",G5270\nFINANCIAL SERVIC,\"BGC PARTNERS, INC.\",F2100\nATTORNEY,TEW JORDEN SCHULTE BEASLEY,K1000\nKANAKUK KAMP,,T9000\nATTORNEY/PUBLIC POLICY CONSULTANT,PUBLIC POLICY STRATEGIES,Y4000\nCREDIT LYOMICS SECURITIES,,F2100\nLife Insurance,HSA Corporation,Y4000\nHigh-tech Marketing,Interactive Marketing Solutions,Y4000\nPIPELINE CONSTRUCTION/PRESIDENT/CEO,,B1500\nMARKETING EXECUTIVE,CBS,C2100\nManager,Alarm Detection Systems,G5290\nBOHEMIAN COMPANIES,,X4100\nPresident & CEO,\"Bradley & Bradley Associates, Inc\",Y4000\nPORTFOLIO ANALY,RUSSELL INVESTMENTS,F7000\nSR VICE PRESIDE,FIRST NATIONAL BANK,F1100\nRanger,City of Ft. Collins,X3000\nEnergy Consultant,\"Brubaker & Associates, Inc\",Y4000\n\"NAT'L MATERIAL LP\",,M5000\nSV ANGEL LLC/FOUNDER/GENERAL PARTNE,,F2500\nFOUNDER,JAY KISLAK FOUNDATION,J5100\nGMS FOREST PRODUCTS INC,,A5000\nHL-CHEV-OLDS,,T2300\nCORP. OFFICER,\"VAN GO, INC\",Z9500\nCOMPUTER PROGRAMING,SEQUOIA TECH,H5100\nteacher,International School of Geneva,J1200\nEXECUTIVE,\"YOUNG'S MARKET CO.\",Y4000\nHVAC DISTRIBUTOR,DISTRICT CORPORATION OF NEW ENGLAND,Y4000\nSTATE ASSEMBLYMAN,STATE OF CALIFORNIA,Z9500\nELECTR,NORTHROP GRUMMAN CORPORATION,D5000\nhomemaker,none,G5000\nUS DEPT OF AGRI - FMHA,,X3000\nNIFAM LLC,,Y4000\nAutomotive Marketing Director,GE Plastics,M2300\nSR. CAMPAIGN ADVISOR,JEFFRIES FOR CONGRESS,J1200\nChief Executive Officer,Adventist Medical Center,H2100\nChairman,ADI,K2100\nORGANIZER,SOCIAL WORKER,H6000\nCARL MARKS CO INC,,F2100\n\"HAYES, WILSON\",,Y4000\nHOBSON GALVINZING,,M5000\nTALENT AGENT,MONITOR GROUP,G5200\nPOSTMAN,,Y4000\nInsurance Agent,American Modern Home Insurance Agency,F3100\nST OLAF COLLEGE,,H5100\nPRESIDENT,MULVANNEY ARCHITECTURE,B4200\n\"EXEC DIR, EMPL LAW\",PACKAGING CORP. OF AMERICA,A5000\nChief Compliance Officer,\"The Vanguard Group, Inc\",F2100\nATTORNEY,DRINKER BENDER & REATH,Y4000\nEXECUTIVE,,F2500\n\"COBALT RESEARCH, INC\",,Z9000\nCOLLEGE PROFESSOR,UNIVERSITY OF CENTRAL FLORIDA,Z9500\nCHAIRMAN / CEO,THE PLANK COMPANIES INC.,M2000\nCONSULTANT,CLARK & WEINSTOCK,Z9500\nCorporate Secretary,Tiaa Cref,F3100\nRE DEV & MANAGEMENT,,B2000\nLOBBYIST,GRIFFIN & ASSOCIATES,G5260\nExec,Benepro,Y4000\nCOPY FAX ROOM,RIKER PANZIG ET AL,J1100\nATTORNEY,\"FRED L. HERMAN, APLC\",K1100\nConstruction,\"Herman Kittle Properties, Inc\",F4000\nOWNER,MUSIC MOUNTAIN,Y4000\nProfessor,Unversity Of Miami,Y4000\nMANAGER,VANDERBILT APARTMENTS,F4500\nTherapist,Self - Employed,J1100\nassistant,Snyder for Congress,Y4000\nBLOCK & NEW,,K1000\n\"SCHOEP'S ICE CREAM CO\",,A2000\nOwner,Nelson Properties,F4000\nATTORNEY,\"TAFT, TAFT, AND HAGLER P A.\",K1000\nComputer Services Ex,National Systems Corp.,Y4000\nEx Director,\"Moody's\",Z9500\nLobbyist,Kilpatrick Consulting Inc,Y4000\nTHE LONG GROUP/AGENT/BROKER,,F3300\nFLORIDA CITRUS MUTUAL PAC,,A1400\nUNEMPLOYED,NONE CURRENTLY,J1200\nMOORE DESIGNS INC,,Y4000\nATTORNEY,\"R A B I N O W I T Z,  B O U D I N,  S\",K1000\nSCIENTIFIC RESEARCH,,Y3000\nOwner,Falasco Lumberyard,Y4000\nSPAULDING ELECTRIC CO,,Y4000\nEVP - COO,Big Y Supremarkets,G2400\nUS-JAPAN CROSS-CULTURAL CONSULTANT,,G5200\nChairman & CEO,Gaylord Container Corp,J1100\nOWNER/GEN. CONT,CORNERSTONE BUILDERS,B2000\nEnterprise Architect,\"Datatel, Inc.\",Z9500\nPHYSICIAN,ARKANSAS DERMATOLOGY,H1130\nPrincipal,Brown Rudnick LLP,K1000\nProvost,Plaza Business Institute,H5100\nManager,Hensley Maintenance,Y4000\nEXECUTIVE DIRECTOR,STC REGIONAL PLANNING AND DEVELOPMENT,J1200\nPRICEWATERHOUSE COOPERS,,J7400\nPAN PACIFIC OCEAN GRAYS,,Y4000\nnonprofit mgt,Cradles to Crayons,Z9500\nOWNER,PRECISION MAINTENANCE 1 LLC,Y4000\nTax Attorney - Partner,Heaney & Kilcoyne,K1000\nBOBO REAL ESTATE CO,,F4200\nChief Executive Offi,Thorson GMC Truck Buick,T2300\n--,yes,J1200\nArchitect/Artist,Self,B4200\nCO-OWNER,MASON SHOES,M3200\nINTELHEALTH,,J5100\nFABER MOTORS INC,,Y4000\nPARTNER,\"HUSCH & EPPENBERGER, LLC\",K1000\nCO-PRESIDENT,EKON OYSTER,Y4000\nBAY AREA OB GYN PA,,H1130\n\"Senior Manager, BD\",L-3 Communications,Y4000\nPETER M GUTIERREZ DDS & KATHERINE S,,H1400\nINVESTMENT ADVISOR,UBS PAINE WEBBER,J9000\nMANAGER,COGNIZANT,Y4000\nBANKER,UNION BANK & TRUST,F1100\nEXECUTIVE,CH GUENTHER & SONS INC.,Y4000\nHOMEBUILDER-DEVELOPER,SELF-EMPLOYED,Y4000\nOLES MORRISON & RINKER,,Y4000\nAMERICAN OF MARTINSVILLE,,Y4000\nSelf Employed,Lyssa,Y1000\nAttorney,Quarles and Brady LLP,K1200\nMD FACS,\"DEAN L JOHNSTON MD, INC.\",H1130\nAttorney,Hull Towill Norman Barrett,Y4000\nVICE PRESIDENT,ASSOC. BUILDERS & CONTRACTORS,B0500\nSECRETARY,LANDOW & COMPANY,B2000\nHUMAN RESOURCES,UNISYS CORPORATION,C5130\nSR. VICE PRESIDENT INVESTOR RELATIONS,NEWS CORPORATION,C2000\nSALES,THE HORTON GROUP/SALES,F3100\nCFO & CAO,CAMPBELL SOUP COMPANY,G2100\nGENERAL CONTRACTOR,SCARDINA BUILDERS,Y4000\nVice President of Bu,North State Communications,C4100\nReal Estate Develope,Stern & Stern and Associates,Y4000\nOrthopaedic Surgeon,Hershey Medical,H1130\nSENIOR ASSOCIATE,COSTAR GROUP INC,Y4000\nPRESIDENT,ACTION CATASTROPHE TEAM,Y4000\nREAL ESTATE,POLLACK SHORES REAL ESTATE GROUP,F4000\nSoftware Engineer,Magenic Technologies,Y4000\nChairman,Suncoast Financial,F0000\nBEKIMI ASSOC,,J7500\nPRESIDENT & C.E.O.,THE MECHANICS BANK,F1000\nAttorney,Gallagher Evelius &L Jonea LLP,K1000\nLAW OFFICES OF RAUL GODINEZ,,K1000\nSENIOR ADVISOR,STEWART & STEWART,K2000\nDiagnostic Radiologi,La Porte Radiology,H1130\nPRESIDENT,LA JULIA (NORTE) INC.,Y4000\nLAWYER,\"WILLIAMS, LOVE & OLEARY\",K1100\nPayroll Manager,Acuity Specialty Products,Y4000\nENGINEER,DEVCO/ENGINEER,B4400\nAGENT,WINDERMERE,F4200\nBALDY VIEW,BIA,Y4000\nDIR OF INTERNAL AUDIT-OGDEN MGMT SE,,E3000\nPRIVATE TRANSPORTATION,,Y4000\nUNION ORGANIZER,MEA-MFT,Y4000\nGENERAL SURGEON,RIVERSIDE MEDICAL GROUP,H1100\nDENTIST,MARYROSE HAWKINS D.D.S.,H1400\nATTORNEY,\"CHERNESKY, HEGMAN & KRESS\",Y4000\nChief Information Officer,Westinghouse Electric Company,E1320\nU.R.I.,,Y4000\nPARTNER,WELLINGTON MNGT COMP.,Y4000\nEXECUTIVE,LAMPSON LLC,M6000\nSWIFT SUPPLY INC,,Y4000\nContractor,\"Reyes Construction, Inc.\",B1500\nMANAGING DIRECTOR,GENERAL CATALYST PARTNERS,F2500\nOWNER,KEANE CAPITAL MANAGEMENT,F0000\nReal Estate Professional,Andros Properties,F4000\nASSOC. ADMIN.,RIVER REGION,H2100\nIT manager,State of Arkansas,X3000\nPhysician,NA,H1100\nATTORNEY,OPSWARE INC,G5210\nBERMAN INVESTMENT CORP,,K2000\nJB & A AVIATION,,T1600\nCOMPUTER PROGRAMMER,PI,J7400\nSTATE OF MO AND UNITED METH CHU,,X3000\nFREELANCE ART DIRECTOR,SELF-EMPLOYED,Y4000\nResearcher,Advanced Ceramics Research,M2300\nPres./ceo,Taller Del Exito Inc.,Y4000\nMERRILL LYNCH XCH OFFICE,,F2100\n\"KY DEPT FOR LOCAL GOV'T\",,X3000\nANESTHESIOLOG,ANESTH ASSOC OF MACON,H1130\nCHIEF INFORMATION OFFIC,\"BRINK'S INC\",T1500\nc.e.o.,Halfacre Construction,B1500\nTHE RIME COMPANIES,,F4000\nPHYSICIAN,HUDSON RIVER HEALTHCARE,Y4000\nGALAMBA FARMS,,Y4000\nVP OF FINANCE,GENERAL DYNAMICS,D3000\nENGINEER,KERANI ENTERPRISES INC.,Y4000\nADMINISTRATOR,SELF-EMPLOYED,K1000\nMANAGER,PACIFIC NORTHWEST NATIONAL LAB,Y4000\nExecutive (President,Steel & Pipe Supply Co.,M2100\nScientist,Smith-Kettlewell,Z9500\nVICE PRESIDENT,TYCO INTERNATIONAL,M2300\nATTOR,BREAZEALE SACHSE & WILSON LLP,B0500\nPUBLIC RELATIONS,TSG CONSULTING,Z9500\nPRESIDENT,\"C C CLARK, INC/PRESIDENT\",G2700\nOBIT CO,,J1100\nCOMMUNICATIONS OFFICER,EPA,X3000\nINVESTMENT OFFICER,CALPERS,Y4000\n1ST SOUTHWEST BANK,,F1100\nCOMMITTEE ON POLITICAL EDUCATION,,L0000\nPRINCIPAL HIGH SCHO,,X3500\nATTORNEY,RIKER DANZIG SHERER ET AL.,K1000\nI.T. ENGIN,AGILETN TECHNOLOGIES INC,Y4000\nCHILDREN RIGHTS AD,NANCY D. RIORDAN,J1100\nCHIEF EXECUTIVE OFFICER,HOSPIRA,H4300\nANCHOR RIVER INN,,T9100\nOKABENA,,G4300\nTHE SPORTING HOUSE,,Y4000\n\"COO, AMERICAS INSTITUTIONAL BUSINESS\",STATE STREET GLOBAL ADVISORS,F2000\nChairman and CEO,Phillip Morris International,A1300\nexecutive,Eastern Pacific,Z9500\nInvestment managemen,Fidelity Investments,F2100\nlegislative advocate,The Dutko Group,K2000\nAuthor,Willie Jolly Worldwide,Y4000\nMANAGING DIRECTOR,ZIEGLER CAPITAL MANAGEMENT,F2100\nDEVELOPER,LOMA VERDE PROPERTIES,J1200\nOWNER,TARGET DISPLAYS,Y4000\nEducator,CORE,Z9500\nRUBINSTEIN & SENDY,,K1000\nManager,Anthem Inc.,F3200\n\"DR., REGIONAL SALES NMD\",ST JUDE MEDICAL,H4100\nADVANCE,,G5200\nDEFENSE ANALYST,EWA,Z9500\n\"VP, Director of Publicit\",St Martins Press,C1100\nNETWORK ENGINEER,BOX,Y4000\nDatabase Mgmt.,\"Seisint, Inc.\",C5120\nPOOLE AND MCKINLEY,,K2000\nACME MARKETS INC,,LT300\nCONSOLIDATED GROUP MARKETING,,F3100\nLAS VEGAS CHRYSLER,,T2300\nBUSINESS ENGINEER,SELF,B4400\nJ W ROLLINS & ASOC,,E3000\nAttorney,Bonina & Bonina P.C.,K1000\nESSER FIN MANAGEMT,,Y4000\nSTOCKSTILL & ASSOCIATES,,Y4000\nReal Estate Investor,Condotti Ent Inc,F4000\nResident Couns,House Of Mercy,J1200\nFOOD SCIENTIST,DAWN FOODS,G2000\nPension Analyst,Ranstad/Pbgc,Y4000\nATTORNEY,\"JEFFREY MELDON & ASSOC., PA\",K1000\nConsultant,CST Trans,Y4000\nFirefighter/EMS,ORLANDO PROFESSIONAL FIRE FIGHTERS,L1400\n\"SR VP, COMMUNICA\",SOUTHWEST AIRLINES,T1100\nProducer,Barad Entertainment Inc.,C2400\nSelf-Employed,Self-Employed,B4400\nGoogle,Google,C5140\nCOCTOR OF CHIROPRACTIC,,H1500\nCONCESSION OPERATION,,Y4000\nDevelopment,Pitch Marketing,Y4000\nMANAGING PARTNER,LINK MARKETING SERVICES LLC,Y4000\nPRINCIPAL,THE SOLUTIONS GROUP,Y4000\nFOUNDER & CEO,STANTON & CO.,G5210\nINTELLIGENCE,IMMIGRATION & CUSTOMS,Y4000\nINSURANCE AG,HUDSON INSURANCE GROUP,F3100\nENTREPRENEUR,LOG HAVEN RESTAURANT,G2900\n,MATTHEWS EASTMOORE HARLEY CRAWWELS,Y4000\nAC INDUSTRIAL SUP,,G0000\nPresident,HOROWITZ MANAGEMENT,Y4000\nCEO,DIFFERENT ROADS TO LEARNING,Z9500\nATTORNEY,FISH&RICHARDSON,Y4000\nCENTER FOR RENAL REPLACEMENT  - UPT,,H3000\nCALDWELL BANK,,F1100\nFOOD SCIENTIST,THE ISLAMIC FOOD AND NUTRITION COUNCIL,Y4000\nATTORNEY,WILLIAM F. BLEWS P.A.,J1200\nConsultant,Armstrong & Associates,Y4000\nCOMMERCIAL FINANCE,ORANGE COMMERCIAL CREDIT,F1400\nVP Managed Care,AeroCare,Y4000\nhealthcare Doctor,retired,X1200\nProfessor and Administrator,MUSC,H5150\nINDUSTRIAL SALES,SELF EMPLOYED,G0000\nOWNER,\"R-G JOINT VENTURES, LLC\",Y4000\nVice Chairman,Food Allergy Initiative,JH100\nAttorney,Indian Land Tenure Foundation,Y4000\nPHYSICIAN,BERGEN PAIN MANAGEMENT,H1100\nFundraiser,Swarthmore College,H5100\n\"DIR, ACCOUNTING\",BALL CORPORATION,M7300\nMAYER BRAUER & PLATT,,K1000\nCreative Director,Snitily Carr,Y4000\nAnalyst,American Express Corp.,F1400\nPresident & C.O.O.,Eds,C5130\nPROFESSIONAL SERVICES,TERADATA,C5110\nRTICK ASSOCIATES INC,,Y4000\nLOBBYIST,GREENBERG TRAURIG P.A.,K1000\nENGINEER,TCEQ,Y4000\n\"TIP THOMPSON'S MENS WEAR\",,Y4000\nC.E.O.- MANAGING PRI,HOGUE & ASSOCIATES INSURANCE & INVESTM,F3100\nFOURTIER STRATEGIES LLC,ASSOCIATE POLITICAL CONSULTANT/FOUR,G5260\nPRESIDENT,PAPPILON HELICOPTERS,Y4000\nOWNER,BURNS & SCALO REAL ESTATE,F4000\nCARDINAL COS,,Y4000\nLawyer,Open Society,X4100\nFINANCIAL,MCLEAN CAPITAL LLC,Y4000\nFinancial Profession,Mony,F3100\nRealtor,Centry 21,F4200\nSALES MGR,BIG DUTCHMAN,A2300\nFINANCIAL INVESTMENT,SELF-EMPLOYED,Y4000\nCHAIRMAN & CEO,\"INTERCONTINENTAL EXCHANGE, INC\",F2400\nCEO,FOREST HEALTH SERVICES,H0000\nCHRISTMAS TREE FARMER,\"NORTH COUNTREE CHRISTMAS, IN\",Y4000\nREALTOR,AK COMMERCIAL PROPERTIES/REALTOR,F4000\nController,AHD,J1200\nVP CORP AFFAIRS,ELI LILY,H4300\nPhysician,JUVA Skin & Laser Center,Y4000\nExecutive Coach and Consultant,Self employed,Y4000\nPresident,Davis & Clark Auto. Repair,T2400\nSTAFF/ADMIN,THE SENEX GROUP,F5500\nBusinessman,K & T Ind. Inc.,Y4000\nTARGA FINANCIAL,,C5100\nPresident,Darden Restaurants,G2900\nWELLS REINHEIMER INSURORS INC,,F3100\nSENIOR VICE PRESIDENT AND CHIEF FINANC,CABELL HUNTINGTON HOSPITAL,H2100\nAttorney,Lafauettey County,Y4000\nAttorney,Shites & harbigon,K1000\nVice President,Producers Lloyds,A4000\nDRENNAN & ASSOCIATES,,Y4000\nDirector Of Service,Leon Medical Centers,H1100\nPhysical Therapist,Kitsap Physical Therapy,Y4000\nD & H DISTRIBUTING CO,,J5100\nOWNER,JACK & BILLS,Y4000\nAMERICAN FOODS GROUP INC,,G2300\nInsurance Agent,Butler Buckley Deets,Y4000\nI.N.G.,,F3100\nEXECUTIVE,BOLLINGER SHIPYARDS INC,T6100\nAGRICULTURE,\"HAVERHALS FEEDIOT, INC.\",Y4000\nATTORNEY,PUBLIC STRATEGIES INC,K2000\nCHIEF EXECUTIVE OFFICER,MAPLE TECHNOLOGIES LLC,Y4000\nUW MADISON-ENGINEERING DEPT,,H5100\nNon-profit Executive,Vandalia Heritage Foundation,X4000\nPRESIDENT AND CEO,\"HEALTH FIRST, INC.\",H2100\nConsultant,Morrison Love & Company,Y4000\nPROFESSOR-STUDENT PUBLICATIONS,PSU,H5100\nWriter,Viacom/VH1,C2000\nATTORNEY,SRP SHAREHOLDER,E5000\nSenior Managing Dire,\"Bear Stearns & Company, Inc.\",F2300\nL L MURPHREY,,A3000\nDIAGNOSTIC RADIOLOGIS,HOME HOSPITAL,H1130\nDivisional VP IC Engineering,Smsc,C5000\nPRESIDENT,COX FINANCIAL CORPORATION,F0000\nMANAGER,AQUA-CLEAR INC,J1100\nLobbyist,Clark & Weinstock,J1100\nATTORNEY,KAYE SCHOLER LLP (US),K1000\nCONSULTANT,THE ORR GROUP,Y4000\nLawyer,Farmer & Ridley,J1200\nMIT/PROFESSOR/PROFESSOR,,J7400\nInvestment advisor,Campbell-Newman,Y4000\n\"TARA'S\",,Y4000\nVeterinarian,Green Mountain Bovine Clinic,Y4000\nVICE CHAIRMAN,RIVIANA FOODS INC.,G2500\nATTORNEY,\"BECKER & POLIAKOFF, P.A.\",K1000\nArchitect,Smithgroup,Y4000\nFBA,,Y4000\nSelf Employed,N/A,F4100\nChief Executive Offi,Eastwood Insurance Svc.,F3100\nQUICK FOOD STORE,,G2400\nOwner,K&F Cementing Co Inc,Y4000\nLAW ENFORCEMEN,\"US ATTORNEY'S OFFICE\",J1200\nCEO,World Shipping Council,T6200\nATTORN,SMITH MASSEY BRODIE THURMOND,K1000\nPRESIDENT,UTI MEDICAL,Y4000\nATTORNEY,GIARMARCO MULLINS & HORTON,K1000\nBIALOCOS DRUG,,G4900\nMarketer,The Limited Brands,G4100\nrn,Health Care Recoveries,Z9500\nGODFREY CONVEYOR,,Y4000\nSIMPSON,STUDENT,G6400\nDoctor,Central Highlands Ob\\gyn.,H1130\nArtist Professor,Carton Valley Community College,H5100\nA.C.M. Consulting Corp./President/C,,Y4000\nCFO,ProTrials Research Inc.,J1200\n\"TSB/FORCE PROTECTIN, INC./ARMORED V\",,Y4000\nDADE CTY MEDICAL ASS,,H1100\nCOMMERCIAL LENDING,COBANK,F1200\nBUSINESS EXECUT,\"UNITED LIQUORS, LTD\",G2840\nENGINEER,OXEA CHEMICALS,Z9000\nPresident Of Transportation,Self-Employed,Y4000\nPRESIDENT,MARATHON OIL CORP.,E1110\nVET,SOUTHWEST STALLION STATION,A3000\nGeologist,State of Texas,X1200\nNATIONAL STEEL & SHIPBUILDING,,T6100\nAttorney,McGuire Wood Battle & Boothe,K1000\nIRVINE ANALYTICAL LABS,,Y4000\nCOURT COMM,ORANGE COUNTY CALIFORNIA,X3000\nCHECKPOINT FARM,,Y4000\nCeo,Harbor Off Shore Marine,Y4000\nVice President,Pinnacle West Capital Corp,E1600\nCEO,EAGLE FOOD SERVICE,Y4000\nDIRECTOR,KNIK ARM BRIDGE AUTHORITY,Y4000\nCIVIL ENGINEER,\"POZNECKI, CAMARILLO AND ASSOCIATES\",Y4000\nVICE PRESIDENT,CRANE LUMBER CO.,B5200\nCeo,\"Goin' Postal Franchise Corpora\",Y4000\nSALES,DGL,Y4000\nACCOUNTANT,COMPLETE BUSINESS SERVICES,Y4000\nEducator - Associate,University Of Southern California,J1200\nGOVERNMEN,MCKENNA LONG AND ALDRIDGE,K1000\nFAIRFAX COUNTY SCHOOLS,,X3500\nPHYSICIAN,CHILDRENS ACUTE CARE,H1100\nAttorney,\"Taylor, Dunham and Burgess, LLP\",K1000\nPR,TOWN AND COUNTRY CONSERVEATORIES,C1100\nAttorney,AZ Center For Law,J1200\nSR. GOVERNMENT AFFAIRS REP.,CITIGROUP MANAGEMENT CORP.,Y4000\nH BRUCE HANES REAL ESTATE INVEST,,F4000\nEXECUTIVE,CHRYSLER TECH CENTER,Y4000\nINSTR,SANDY HILLS COMMUNITY COLLEGE,H5100\nAMERICA,ORDER OF SONS OF ITALY,J7500\nSENIOR VP,KEYSTONE HEALTHPLAN,Y4000\nPRINTER,E. JOHN SCHMITZ AND SONS,C1300\nPROJECT LEADER SYSTEM,TJX COMPANIES,G4100\nPresident,PatRick Forestry,J1100\nFIREFIGHTER PARAMEDIC,VILLAGE OF KEY BICSAYNE FIRE RESCUE,Y4000\nGRUB STREET PRODUCTIONS,,C2000\nAssistant Vice President,Planning Systems Incorported,C5000\nFUNDRAISER,SELF,H6000\nEXECUTIVE VICE PRESI,CORCORAN JENNISON COMPANY INC,G0000\nART HISTORIAN/CURATOR,RETIRED,Z9500\nREALTY,RETIRED,X1200\nPresident,Basic Energy,E1000\nGOVERNMENTAL AFFAIRS,NORTHEAST GA MEDICAL CENTER,H2000\nPARTNER,WERNICK PARTNERS LP,Y4000\nFOUNDER,JUICE BEAUTY,Y4000\n\"JEREMY'S CLOTHING STORE\",,G4100\nBUSINESS EXECUT,SUROVELL REALTY CO.,F4200\nAGRI-BUSINESS,TRI-COUNTY AG,A1600\nReal Estate,Hudson Enterprises,F4000\nBAYLOR EYE ASSOC,,H1120\nLaw Librarian,Winston and Straun,K1000\nOIL FIELD WORKER - RANCHER,SELF-EMPLOYED AND CONTRACT,Y4000\nDEFINO & ASSOC,,G0000\nATTORNEY,LAWLER-WOOD LLC,F4100\nexecutive,NanoDynamics,M1000\nHOTEL OWNER & OPERATOR,S.F.A INC,Y4000\nPartner,Ink Solution,Y4000\nPRESIDENT,CANFIELD & ASSOC,F3100\nV.P.,A. & N. Howe,Y4000\nDirector of Peace an,U.S. Institute for Peace,Y4000\nDeputy Secretary,New Mexico Tourism Department,J1200\nBURNHAM PRODUCTS INC,,Y4000\nCSC SALES INC,,Y4000\nPARTNER,EMERALD CROSSINGS,Y4000\nCEO,NORTH KC HOSPITAL,H2100\nPHYSICIAN,CHRISTIAN COMMUNITY HEALTH CENTER,Y4000\nattorney,The Hastings Law Firm,K1000\nEngineer,\"Polytech, Inc.\",Y4000\nLAWER,NUTTER MCCLENNEN FISH LLP,K1000\nREAL ESTAT,ROGER COX AND ASSOCIATES,J1100\nVice President,\"St Joseph's Hospital and Medical Cent\",H2100\nRANDOLPH WILLIAMS CO,,Y4000\nOwner,Barnes Crossing Vision Center,Y4000\nATTORNEY,\"BOONE, CROCKETT\",G5260\nBOOKKEEPER,J.R. PLUMBING INC.,B3400\nPRESIDEN,\"NANOPARTICLE BIOCHEM, INC.\",Y4000\nFUNDRAISER,,J7400\n\"WYCHE, BURGESS, FREEMA\",,K1000\nBLANDING BEYER ET AL,,F5100\nERNEST PACKAGING SOLUTIONS,,Y4000\nRealtor,James Pigott Agency,B2000\nSR VP/COO-POWER SUPPLY,NORTH CAROLINA EMC,E1610\nDENTIST,BOPP & TRAVER DMD,Y4000\nEXECUTIVE D,WORD OF LIFE FELLOWSHIP,Y4000\nSECRETARY,CYBERLUX CORPORATION,Y4000\nCHIEF FINANCIAL O,TIME WARNER CABLE,C2200\nCONSULTANT,JLWA,G5270\nCEO,JET LINX,Y4000\nNEMC HOSPITALS,,X1200\nOwner,Ed Moos & Company,Y4000\nEXECUTIVE,PISTOL CREEK,F2000\nDENTON & DENTON LTD,,Y4000\nAMDAHL CORPORATION,,C5110\nFARMER,MARK MCKEAN FARMS,A1000\nReal Estate Broker,Re/Max Real Estate Group,F4200\nSTUDENT,NA,F4500\nCHARTER BANK-HOUSTON,,F1100\nattorney,\"Rue & Ziffra, P.A.\",K1000\nTEACHER,CHARLOTTE COUNTY PUBLIC SCHOOLS,X3500\nHOMEMAKER,Homemaker,Y4000\nESTILL HIGH SCHOOL,,Y4000\nTRI-CITY OIL CO,,E1170\nPARTNER,CHEROKEE DEVELOPMENT,Y4000\nRealtor,Quinn & Wilson Realtors,F4200\nNURSE,PHS,Y4000\nPRESIDENT,PENROSE CAPITAL,Y4000\nATTORNEY,\"BARATTA, BARATTA & AIDALLA\",K1000\nINVESTMENTS,SPO PARTNERS & COMPANY,F2100\nat home,n/a,G2910\nLawyer,Hunton & Williams Llp,K1000\nPRESIDENT,OFFICE CONCEPTS INC.,Y4000\nAttorney,SWMWA&Sitterson,K1000\nINVE,BLACKROCK FINANCIAL MANAGEMENT,F2100\nFinancial,Self,J1200\nPUBLISHING,WELLESLEY INFO. SERVICES,Y4000\nG E CONSTRUCTION COMPANY,,B1500\nPROFESSOR & ADMINISTRATOR,UCLA ANDERSON SCHOOL OF MANAGEMENT,Y4000\nDEVELOPER,MOFFAT CONSTRUCTION,B1500\nRetired Physician,Permanonte Medical Group,J1200\nself-empl proprietor,Royal Z Lanes,G6100\nWALTER J KELLIMER,,Y4000\nDoctor,Khuram Ameen,Y4000\nPresident & CEO,\"Foster-Miller, Inc.\",Y4000\nDirector Of Informat,Advocator,Y4000\nMarine Insurance,Sullivan & Strauss Agency Inc,K1000\nSoftware Developer,Goldsim Technology Group,C5120\nDevelopment Economist,Self employed,Y4000\nSki Instructor,Aspen Ski Company,T9300\nEngineer,Kayak.Com,C5140\nHOME BUILDER,THE EDWARDS COMPANY,Y4000\nAIRLINE BROKERS CO INC,,T1000\nSENIOR  VP,VIRGINIA COMMUNITY BANK,F1100\nREAL ESTATE DE,DBYNET SERVICES INC.,F4100\nSTUART SCOTT LTD,,Y4000\nDREW UNIVERSITY,,Y4000\nATTORNEY,\"KENNERLY, CAMISHAW & ROSSI\",K1000\nVice President,\"Projects, Inc.\",Y4000\nMANAGER,PERKINS WAREHOUSE,Y4000\nATTORNEY,GENLYTE THOMAS GROUP LLC,Y4000\nRetired veterinarian,NA,X1200\nFULTON CO SUPERIOR CT,,Y4000\nOwner/Gas Staions/Retail Sales,Self,E1170\nMOD LANGUAGE ASSC,,X0000\nASSISTANT,ACADIAN AMBULANCE,H3000\nCOUCH WHITE BRENNER,,K1000\nSPECIALITY HOSPITALS OF AMERIC,,H2100\nVICE CHAIRMAN,ADVANTA CORPORATION,F1400\nAttorney,Heineinz & Beaver Pl,Y4000\nAttorney,Georgetown Univ Law Ctr,H5170\nSECURITIE,WEDBUSH MORGAN SECURITIES,F2100\nVICE PRESIDENT,THECAB,Y4000\nInformation Requested,Wieden + Kennedy,G5210\nEXECUTIVE,HAROLD WELLS,Y4000\nMI HOUSE OF REPS,,X3000\nDoctor,Dr. Charles E. Virgin,Y4000\nPresident,\"Penn Maritime, Inc\",Y4000\nCO-FOUNDER,\"NEXTFUELS, INC.\",Z9500\nDirector of Material,Plastech,M1500\nAttorney,Rossman Baumberger & Rebose,K1100\nDIRECTOR OF MARKETING,RBA GROUP,Y4000\nPreschool Director,La Piccola Scuola Italiana,Y4000\nRetired,Us Dept Of State,X3000\nConsultant,PFM,Y4000\nHOUSEWIFE,SELF,G2500\nMARKETING EXECUTIVE,SALESFORCE.COM,C5140\n\"AKIN GUMP STRAUSS HAUER & FELD, LLC\",,E1600\nExecutive Producer,Williams/Gerard,Y4000\nGeneral Manager,Liquor Mart,G2840\nGraphics Artist,Unisys Corp,C5130\n\"LAWYER, PUBLIC SERVICE COMMISSIONER\",\"SHEEHEY, FURLONG & BEHM; STATE OF VERM\",K1000\nAdministrator/CEO,Marshall Medical Center,H2100\nPrincipal,Jennifer Bell + Partners,K2000\nCEO,EMPIRE RESORTS,Y4000\nFRONTIER FUELS,,E1100\nFINANCE,MERCHANTS GATE CAPITAL L.P.,F0000\nexecutive,East Cost Medical,Y4000\nAdministration V.P.,Triumvirate Environmental,E2000\nSailing Journalist,Self employed,G0000\nProfessor,The College of William,H5100\nEXECUTIVE VICE PRESIDENT,AIC OF TEXAS AND ISI,B1000\nTHE JENKINS GROUP,,Y4000\nATTORNEY,RICKER DANZIG SCHERER HYLAND & PERR,K1000\nAttorney,Us Chamber Of Commerce,G1100\nWATER SYSTEMS COUNCIL,,A4200\nDirector of Cardiolo,Krannert Inst Cardiol,H1130\nENGINEER,LDD TECHNOLOGIES,Y4000\nAttorney,Adams & Jordan Attorneys at Law,K1000\nPresident,Great Eastern Management Co.,J1100\nMORTGAGE SHOP LLC,,F4600\nREAL ESTATE INC,,F4000\nMedia Consultant,Full Circle Communications LLC,Y4000\nBusinessman,Wiseman Development Co,Y4000\nBrand management,Beam global,Y4000\nDISTRICT MANAGER,\"O'PAK CREDIT\",Y4000\nAttorney,\"davis, saperstein & salomon\",K1000\nreal-estate develope,self,F4100\nConsultant,\"QueBIT Consulting, LLC\",Y4000\nLDA COMPANIES,,B4200\nLEX ATLANTIC,,Y4000\nStudent,Kaiser,H2000\nRESTAURANT OWNER AND EXECUTIVE,,G2900\nCONSULTANT,ARCHER BUILT HOMES,B2000\nDiscovery Communications Inc,,C2200\nGYN,RUTHERFORD OB,H1130\nbusiness manager,Northrop Grumman,D5000\nmanager,STREUVER BROS ECCLES ROUSE,Y4000\nInformation Requeste,Sony,C5000\nHospital admin,elmhurst memeorial healthcare,H0000\nDELOAN HAMPTON & ASSOCIATES,,B4000\nCHAIRMAN,R&A MANAGEMENT LLC,C2200\nExecutive Vice Presi,\"Kennett Capital, Inc.\",Z9500\nInformation Requeste,US Dept. Commerce,X3000\nBUSH ROSS GARDNER ET AL,,K1000\nAttorney,\"Fafinski, Mark, and Johnson, P.A.\",J1200\nINVESTMENTS,TERI MANAGEMENT L.P.,Y4000\nLOCAL UNION 2212 NJ,,LB100\nReal Estate,Gateway Company,Y4000\nFOUNDER,PZENA INVESTMENT MANAGEMENT,F2100\nBENEFITS SPECIALIST,MSL BENEFITS CONSULTANTS INC,Y4000\nPublic Relations Consultant,Information Requested Per Best Efforts,Y4000\nEXECUTIVE,EAI,E2000\nEXECUTIVE,\"NMCI GROUP, INC.\",G5200\nDirector of Developm,Tucson Symphony Orchestra,C2800\nAVP INC,,G3000\nSTUDENT,,A5200\nprofessor of law,Gonzaga University,H5100\nWULIGER CORPORATION,,J5100\nPolicy Director,AAUW,J7400\nQuality Training,Granite,Y4000\nAttorney,McCausland Keen Buckman,K1000\nCOMPUTER SUPPORT,AXA,Y4000\nOWNER,MACK MANAGEMENT AND CONSULTATION,B1500\nSELF/REAL ESTATE/MEDICAL,,F4000\nCEO,MCMORAN OIL & GAS,E1220\nARCHITECT,CISCO SYSTEMS,C5110\nPATHO,UNIV. OF TENN. HEALTH SCIENCE,H1130\nAssistant Vice Presi,ULLICO Inc.,F3100\nVP,BELLAGIO,G6500\nCOMMITTEE ON SCIENCE,,X3100\nAttorney,\"McGougan, Wright, Worley, & Ha\",K1000\nBIO DIESEL PLANT MANAGER,SEABOARD FOODS LP,G2300\nASSOCIATED PRESS,,C1100\nMEDICAL DOCTOR,SELF,T1400\nDUNKIRK ICE CREAM CO,,Y4000\nComputer Researcher,Elsevier Inc,Y4000\nUT-SOUTHWESTERN,,H5100\nPROFESSOR OF DENTISTRY,UNIVERSITY OF IOWA,H5100\nN W GEN INDUS CLINIC,,Y4000\nATTORNEY,\"CARPENTER & KLATSKIN, PC\",Y4000\nDirector of Business Development,SVTC Technologies,Y4000\nNEITHER IS THIS,INFO NOT NECESSARY TO BE KNOWN,Y4000\nPhysician,Center For Behavioral Health,Y4000\nAttorney,Vetch Carolson Grougan & Nelson,J1200\nEnergy Exec.,Public Service Elec. & Gas Co.,E1620\nRISK MANAGER,R.C.I.,Y4000\nPRESIDENT,EQUINOX INTERSCIENCE INC,Y4000\nBAACH ROBINSON & LEWIS,,K2000\nSMALL BUSINES,EMPIRE MEDICAL SUPPLY,H0000\nATTOR,\"BARTON, KLUGMAN & OETTING LLP\",K1000\nPresident,Bookkeeping Solutions Inc.,Y4000\nWRITER,,J5000\nPARTNER,MANHATTEN SPINE & PAIN MEDICIN,Y4000\nAMERICAN WATERWORKS CO,,E5000\nCHAIRMAN/PRESIDENT,ASIAN PACIFIC NATIONAL BANK,F1100\nTroubleshooter,PSE&G,Y4000\nVETERINARIAN,DUNDEE ANIMAL HOSPITAL,A4500\nPHYSICIAN,NAL,H1100\nCONSERVATIONIST,ECOTRUST,Y4000\nEXECUTIVE VP,DISH NETWORK,C2200\nRecruiter,Huntsville Executive Search,Y4000\nC.E.O.,UNITED PROPERTIES,F4000\nGREATER SANTA ANA BUSINESS ALLIANCE,,Y4000\nCONSULTANT,COLLINS MABRY,K1000\nPHYSICIAN,KANSAS UNIV MED CTR ANES DEPT,H1130\nTHE COPLEY PRESS INC,,Y4000\nADM. ASSISTANT,NG TURF,Y4000\nBUILDER & DEVELOPER,RETIRED,X1200\nVP OF SAFETY,FLIGHT OPTIONS LLC,T1400\nACCESS INTERNATIONAL INC,,G5270\nVice President,Nat Assn of Indep Colleges & Univ,H5100\nQUESTOR PARTNERS/INVESTOR/INVESTOR,,F7000\nD D PRODUCTIONS,,Y4000\n\"GOVERNOR'S WESTERN\",,Y4000\nATTORN,LAW OFFICE OF RICHARD STROHM,K1000\nDENTIST,DEWEY DENTAL  PC,H1400\nattorney,McDermott Will & Emery LLP,Z9500\nExecutive,Manchester Trade Limited,Y4000\nProfessor,UNC-CH,JE300\nBANKER,WASHINGTON FEDERAL SAVINGS,F1200\nController,\"Optex Systems, Inc\",Y4000\nHARSHAW TRANE,,Y4000\nRADIOLOGY IMAGING,,H1130\nSTATE SENATOR,STATE OF TEXAS,J1100\nExecutive Director,United African Organization,Y4000\nRadiologist,Jefferson X-Ray Group,Y4000\nFINANCIAL ANALYST,AT&T,C4100\nGeneral Manager,J.R. Simplot Co,A1400\nCAPITAL SOURCE,,J7300\nLAWYER,ORRICK HERRINGTON & SUTCLIFFE,K1200\nWEST FORK PUBLIC SCHOOLS,,X3500\nLawyer,AXA Equitable,F3300\n\"ASSOC'D ORTHOPEDICS & SPORTS MED\",,H1130\nFARM EQUIPMENT BUS,,Y4000\nPRESIDENT,GOLDEN STATE HEALTH CENTER,H0000\nSEREGEN INC,,Y4000\nCOTTON MERCHANT,\"BRUCE ALLBRIGHT AGENCY, INC\",Y4000\nCARLTON CO,,F1100\nHCFS INC,,Y4000\nGENERAL COUNSEL,BAHA MAR,Z9500\nCEO,ELECTRO TAX,Y4000\nExecutive,\"Premier Hardwood Products, Inc\",Y4000\nPRESIDENT,ECONOCARIBE CONSOLIDATORS,Y4000\nFormer Radio Station,WNIB FM,C2100\nCONTRACTOR,S.D. DEACON CORP.,B0500\nCEO,GUND INVESTMENT CORP.,J9000\nConsultant,The Livingston Group/strategic Cou,K2000\nANDERSON MGMT SERV INC,,Y4000\nALASKA RURAL ELECTRIC,,E1610\nVice President,Dynasty Insulation,B3000\nSALES,STIVERS FORD LINCOLN,Y4000\nLawyer,Hunton & Williams LLP,J1100\nLawyer,Julian Pufain,Y4000\nEXECUTIVE,\"SIGNAL HILL PETROLEUM, INC.\",E1000\nPresident & CEO,Maimonides Medical Center,H2100\nBANK TELLER,PARK NATIONAL BANK,F1100\nSales Manager,Usa Wireless Group Llc,Y4000\nElectrical Contractor,Malko Electric,B3200\nR. CHRISTOPHER GOODWIN & ASSO,,Y4000\nPHYSICI,UNIVERSITY OF SOUTH ALABAMA,H1130\nAttorney,\"Grayspm & Kubli, PC\",K1000\nOWNER,FIRST LABEL,M7000\nNon-Profit,\"Eden Housing, Inc\",Y4000\nCHAPTER 12 BANKRUPTCY TRUSTEE,SELF-EMPLOYED,Y4000\nMECHANICAL ENGINEER,THE EMPYREAN GROUP,Y4000\nCEO,\"Rico Enterprises, Inc\",Y4000\nSURESTEP ALUMINUM TREADS,,M2250\nNORTH BERRY STRUCTURES,,B1000\nPHYSICIAN,EL PASO HOSPITALIST GROUP,H2100\nHR MANAGER,ELECTRIC BOAT,D5000\nTHE MANHEIM CO,,Y4000\nSELF,FORD DEALER,T2300\nINVESTMENTS ADVISOR,MARATHON CORPORATION,Y4000\nSTURDY SAVINGS BANK,,F1200\n\"Director, Upward Bou\",Texas Christian Univ.,Y4000\nCONSULTANT,ADVANCED RESOURCE SOLUTIONS INC,Y4000\nV.P.,FLEET FARM,Y4000\nVice President of Pr,EchoStar Communications Corporation,C2200\nPRESIDENT RETIREMENT,T. ROWE PRICE,F2100\nExecutive,Harris Nesbitt Gerard,Y4000\nLEGAL SOLUTIONS/PARALEGAL/TAX COUNS,,J1100\nCFO,3 RIVERS MARINE & RAIL TERMINL/CFO,Y4000\nPULS & CHAMBERS,,K1000\nOwner,McBee Drilling Inc.,Y4000\nALBEE JEWELERS,,G4600\nGROWER,CENTER GREENHOUSE INC.,A8000\nPRESIDENT,CUSTOM RUBBER PRODUCTS,Y4000\nATTORNEY,\"GARMER & O'BRIEN LLP\",K1100\nKMC BEVERIDGE MARKETING CORP,,G5280\nSENIOR ADVISOR,CITY OF LOS ANGELES,X3000\nWELCH & ASSOC,,Y4000\nUNION,UFCW LOCAL 540,Y4000\nCONSULTANT,MOUNT SINAI ADOLESCENT HEALTH CENTE,Y4000\nOwner/Maganer,Supreme Rice Mill,A1500\nSr. VP and CFO,UST Inc,A1300\nAMERITECH CORPORATE,,C4100\nPresident,Inteloigent Optical Systems,M9100\n\"SR VP, HR & ADMIN\",FLUOR CORPORATION,B1000\nADMINISTRATOR,GARDEN STATE VETERINARY SPECIA,Y4000\nDIR. OF COLLECTIVE BARG,BRICKLAYERS,LB100\nEngineer,\"Vessco, INC\",Y4000\nCHAIRMAN,MITCHELL BROTHERS INC.,J5100\nPARTNER,TRIDENT CAPITAL/PARTNER,F2500\nBroker,Walmar Financial,F0000\nLAWYER,LICKSTIEN AND SHAPIRO,Y4000\nBUSINESS CONSULTANT,THE MANAGEMENT TRUST,Y4000\nOwner,Turk Diesel Marine,Y4000\nPHYSICIAN ASSISTANT,E.S.N.,Y4000\nExecutive Director,MASSP,Y4000\nPROFESSOR,UNIVERSITY OF GEORGIA,Z9500\nOwner,Greg E Theis Remodeling,B2000\nINSURANCE AGENT,CANNADY AGENCY/INSURANCE AGENT,Y4000\nAMERICAN PARKING SYSTEM,,F4500\nAttorney,Vandeventer Black LLC,K1200\nNORTH ISLAND,,Y4000\nThe Sterling Group,,M1000\nTEACHER,ST. MARGARET MARY SCHOOL,X3500\nBANKER,NATIONAL DEFENSE UNIV FOUND,Y4000\nCEO/Owner,Lake Research Partners,J7400\nSELF-EMPLOYED,FRONTIER KNOWLEDGE INC.,Y4000\nRADIOLOGY ASSOC. OF NO. KY,,H1130\nATTORNEY,\"CARLTON FIELDS JORDEN BURT, PA\",K1200\nRETIRED PROFESSOR,\"CALIFORNIA STATE UNIVERSITY, SACRAMENT\",H5100\nRETIRED SURVEYOR,RETIRED,X1200\nSR. VICE PRESIDENT,\"PROLOGIC, INC.\",C5130\nKENTWOOD PKG CORP,,Y4000\nCHIEF EXECUTIVE OF,BEST BUY COMPANY,G4200\nCEO COMM ARTS PROJECT,SELF-EMPLOYED,G0000\nIBEW LOCAL 702,,LC150\nFINANCIAL EXECUTIVE,MCI,C4200\nAttorney,\"Testa, Hurwitz, & Thibeault, LLP\",K1000\nENERGY SERVICE MANAGER,MDU,B2000\nsoftware,Real-Time Labor Guide,Y4000\nPLNNER,CITY OF MEDFORD,X3000\nPRESIDENT,RELCO UNI-SYSTEMS CORPORATION,G2100\nRN,NEVADA HEALTH CENTERS,Y4000\nEngineer,\"MTS Systems, INC\",Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,DISERIO MARTIN,Y4000\nJOHNSTON CONWELL & GLOOR,,K1000\nPHARMACEUTICAL SALES REP,COVIDEN,Y4000\nCEO,ANDERSON CONSTRUCTION CO.,B1000\nMELLON FINANCIAL GROUP,,Y4000\nOwner/Manager,DHL,X1200\nANDI INC D/B/A,,G2900\nCONSULTANT,HIGH SPEED DESIGN INC.,Y4000\nADMINISTRATOR,LAGUNA HONDA HOSPITAL & REHABILITATION,H2100\nWEBCO CHEMICAL CORP,,M1000\nATTORNEY,AEGIS CORP.,K1000\nCo-founder/Physician,Biomatrix,H1100\nSALES,WINTHROP RESOURCES CORPORATION,F2600\nDENALESE CORP.,SELF-EMPLOYED,Y4000\nExecutive Mgmt,\"True North Equties, LLC\",C1300\nArts Consulting,AEA Consulting,Y4000\nDIRECTOR,ROBINSDALE ENERGY SERVICES,E1000\nLOVENTHAL REALTY,,F4200\nMedical Director,Virginia Mason,H2100\nALAN OIL CORPORATION,,E1160\nCONRADS RESTAURANT,,G2900\nJournalist,Louise Blouin Media,Y4000\nATTORNE,\"CRAIN, CATON, AND JAMES, PC\",K1000\nSales,Real cities,F0000\nDealership Employee,Lee Peterson Motors Inc,T2300\nDIRECTOR OF GOVERNMENT RELATIONS,CALIFORNIA FACULTY ASSOCIATION,Y4000\nPresident,Independent Glass Co.  Inc.,Y4000\nSTATE SENATOR,NEW YORK STATE SENATE,X3000\nNon Profit,,X4000\n,ELECTRONIC TRANSACTION CONSULTANTS,Y4000\nPRESIDENT,UNITED HEALTH CARE,Y4000\nConsultant,King Public Affairs,G5210\nSYSTEM SPECIALIST,CAPITAL ONE,F1400\nChairman; President and Chief Executiv,Southern Company,E1600\nUNR OF NEVADA,,H5100\nPrograms for the Hom,Association of Community Employment,H6000\nFinancial Services IT and Operations P,Bank of America,J1200\nHOMEBUILDER,LEON WEINER & ASSOC.,F4100\nAT,\"SMYSER, KAPLAN & VESELKA, L.L.P.\",K1000\nTELEVISION EXECUTIVE,AEG,Z9500\nCEO,NIB MATERIALS,Y4000\nCTO,Elemental Security,Y4000\nAttorney,\"Stolpman, Krissman, Elber & Silver\",Y4000\nPARTNER,WARD & OLIVIO,K1000\nACCOUNTANT,MRPA GROUP  P.C.,Y4000\nCLUB MAN,BOULDER RIDGE COUNTRY CLUB,G6100\nTechnical editor,Systems Resource Mgmt Inc,J7400\nEXECUTIVE,SOMERSET OIL & GAS CO.,E1100\npotter,self,F4100\nOFFICE MANAGER,ATTORNEY,Z9500\nRW PRESS PRICH & CO,,F2100\nOWNER,DWIGHT PHILLIPS AUTO SALES,T2300\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,THE WESTERN COMPANY OF TEXAS,E1150\nSurgeon,Mid-Dakota Clinic,H2000\nPhysician,Arborview Family Medicine inc.,H1100\nDIRECTOR,BERKSHIRE INCOME REALTY/DIRECTOR,J1200\nEXECUTIVE,FMR LLC,F2100\nMCGRAWN SHEA FRANZEN,,Y4000\nPHYSIC,UNIV. OF NEB. MEDICAL CENTER,H1100\nSalesman,Prestone Printing,C1300\nAssociate,CVS Pharmacy,G4900\nENGINEER,Z.I.N. TECHNOLOGIES INC.,Y4000\nSCHOOL ADMINISTRATION,CRANE SCHOOL DISTRICT,Z9500\nAUTO DEALER,BERGE GROUP,T2310\nAttorney,\"BUCKINGHAM, DOOLITTLE, ET AL\",K1000\nCDR PIGMENTS,,Y4000\nLIKEN MEDICAL,,H4100\nconsultant/VP,Info Requested,G5200\nOPPENHEIMER COMPANY,,G4000\n6370,,LB100\nHEALTHCARE PROVIDER,SELF-EMPLOYED/HEALTHCARE PROVIDER,H1000\nACTRESS/PLAYWRIGHT,SELF-EMPLOYED,C2400\nStephanie Street LLC,self,G0000\nDistrict Manager,Postal Service,Y4000\nCOLLEGE OF OSTEOPATH,,H5150\nPRESIDENT,PICKETT INDUSTRIES,Y4000\nMUELLER OIL & GAS,,J1100\nOWNER,BROTCKE WELL & PUMP INC.,Y4000\nMATHEMATICIAN/PSYCHOTHERAPIST,SELF EMPLOYED,X0000\nOffice Manager,Law Offices of James L. Hicks Jr. PC,H5100\nPINKERTON INSURANCE,,F3100\nPresident & CEO,Jennifer Brown Consulting,Y4000\nR A DE MATTIA CO,,B4000\nPartner,Partial Ocean View Productions LLC,Y4000\nMANAGER,COX COMMUNICATIONS/MANAGER,C2200\nCHAIRMAN AND CEO,DIVERSIFIED SEARCH,G5250\n\"PART OWNER, CATTLE FEEDLOTS\",SELF-EMPLOYED,F4700\nB K INTERPRISES,,Y4000\nATTORNEY,KMK,Y4000\nPresident,D. R. Aldrich & Sons,G1200\nMORGAL MACH TOOL CO,,Y4000\nATTORNEY,EMMER CONSULTING,K2000\n\"BERKSON'S BUILDING INC\",,B2000\nHlth & Wellness Spec,Neighborhood Hlth Pl,Y4000\nHEAVY CONSTRUCTION SERVICES & PRODUCTS,GLENN O HAWBAKER INC/HEAVY CONSTRUC,F4000\nMICHAEL A LOTTA,,K1000\n\"VP, BUSINESS DEVELOPMENT\",CHEVRON CORPORATION,E1110\nPrincipal,Berger Strategies,G5200\nMANAGER,CROYS: TC & SON,Y4000\nProcess Manager,The Scooter Store,H4100\nSR VP STRATE,RADIOSHACK CORPORATION,G4200\nEXECUTIVE,FIRST TENNESSEE BANK,F1000\nOWNER,METRO ATLANTA FINANCIAL GROUP,F0000\nTWIN MARQUIS INC,,G2100\nFORTUNE AIR INC,,F1200\nHomemaker,Information Requested,B5100\nPhyscian,Baton Rouge Radiology Group,H1130\nCHAIRMAN,LIBERTY VEGETABLE OIL CO,J5100\nAttorney,\"Taylor & Company Law Offices, LLP\",K1000\nRealtor,Koniver Stern Group,Y4000\nRealton C21,Owner,F4200\nATTORNEY,BARRACK RODOS & BACINE/ATTORNEY,K1000\nOwner,Solution and Services LLC,Y4000\nPresident,\"O Harrow's Inc\",G1200\nWEB PRODUCER,\"KAPOW, INC.\",Y4000\nLAND MANAGER,BUSH-EMERY PROP.,Y4000\nRICHMOND HOMES,,F4000\nPARTNER,A. L. & S URBAN RENEWAL,F4100\nCOVENTRY HOTELS,,T9100\nLawyer,\"Armstrong Teasdale, LLP\",K1000\nFACILITY ENG,TENN. TECH. UNIVERSITY,Y4000\nTeacher,\"Montessouri Children's School\",Y4000\nCEO,MARQUIS COMPANIES/CEO,H2200\nLeadership consultant,Self-Employed,Y4000\nRUAN SECURITY CORP,,T3100\nLEVINE BENJAMIN,,Y4000\nCONSULTANT,AB ACTION LLC,Z9500\nCo-Founder,\"Envision EMI, Inc.\",Y4000\nBUSINESS OWNER,\"EVENT MEDIA, INC\",B4400\nCFI,,T3100\nCEO,MASTER AGENDA,Z9500\nFOUNDERS FCU,,F1300\nRN,Banner Boswell Hospital,H2100\nNUTRITION,CELLULAR ENERGY & NUTRITION TECH,Y4000\nCONSULTANT,PINNACLE MANAGEMENT,Y4000\nPROFESSOR,RICE UNIVERSITY/PROFESSOR,H5100\nCOMDATA MICRO SYSTEMS,,Y4000\nVICE PRESID,\"TRINTIY MATERIALS, INC.\",B5100\nExecutive,Self-Employed,J7500\nMARKETING MOTIVATORS,,Y4000\nPHYS,ILLINOIS BONE & JOINT INSTITUT,H1130\nPARTNER,EMERY CELLI BRINCKERHOFF & ABADY LLP,Y4000\nOFFICE MANAGER,J. EMANUELLI & SONS,Y4000\nResidential Real Est,Self,F4000\nINFORM,MCVEAN TRADING & INVESTMENTS,F7000\nBIOLOGIST,JOHN HOPKINS UNIVERS,Y4000\nCFO,Konover Construction Corp.,B0500\nCHIEF ENGINEER DIESEL,OSPREY SHIP Mgmt,LT500\nSELF-EMPLO,ARL CREDIT SERVICES INC.,Y4000\nConsultant,Brookhaen Memorial Hospt,Y4000\nUSI CONSULTANTS,,Y4000\nStudy Coordinator,Kronos Longevity Research Institute,Y4000\nCo-President,Q Prime,F3100\nGeophysicist,Chevron,E1110\nLOEFFLER JONES & TUGGEY LLP,,K1000\nPhysician,Presbyterian Healthcare Services,H1100\nphysician,Childrens hospital,H2100\nAttorney,\"Cadilis and Stawiorski, PC\",K1000\nLawyer,Kelley/Uustal PLC,K1000\nCORPORATE COMMUNICATIONS,GAP INC.,Z9500\nsales,RCM1,Y4000\nOWNER,DOG SCHOOL OF LEESBURG,G5000\nYACHI INC,,Y4000\nPRESIDENT,CAPITOL VISION EQUITIES,Y4000\nRegistered Nurse,Lancasterisd,X3500\nBUSINESSMAN,ENTERTAINER,C2600\nConsultant,\"O'Brien and Associates, LLC\",K1000\nLEGISLATOR,OHIO HOUSE,Y4000\nBUSINESS OWNER,BAER AIR INC.,Y4000\nBUILTLAND PARTNERS DOUGLAS ELLIMAN,,J5100\nOwner,N Gogolick and Son,Y4000\nExecutive,Midwest Tile,B5400\nGUNDERSON BROTHERS,,Y4000\nAIMS INC,,Y4000\nTRAIN DISPAT,UNION PACIFIC RAILROAD,T5100\nDICTATION MACHINE SALES,,M4200\nOil& Gas Producer,Self,E1120\nImporter,\"Global Connection Co of America, Inc\",Y4000\nBUTCH LEWIS PRODUCTIONS INC,,G6400\nVP CONSTRUC,VILLAGE GREEN COMPANIES,F4100\nICE HARBOR BREWERY/OWNER/MANAGER,,G2810\nSENIOR PRINCIPAL,\"BLANK ROME, LLC\",K1000\nSENIOR CONSULTANT,LABELLE STRATEGIC RESOURCES,Y4000\nOrganizer,1199Seiu,Y4000\nCreative Director,Sony BMG,C2600\nBus. Solutions,TXU Enery Trading,E1620\nattorney,\"Harris, Wiltshire & Grannis LLP\",K1000\nG & G DISTRIBUTING CORP,,G2850\nINVESTMENT BANKER,THE ORR GROUP,Y4000\nVICE PRESIDENT,\"ARTECH INDUSTRIES, INC.\",C5000\nCRYSTAL FOOD SERVICES,,G2910\n\"COACH USA, INC.\",,T4100\nGENERAL MANAGER,STRYKER CORP,H4100\nSTRATEGIC ASSET MGT,,F2100\nREAL ESTATE APPRAISE,PROFESSIONAL APPRAISAL SERVICE,Y4000\nNATL PAPER & PACKAGING,,M7100\nPRESIDENT,EAGLE BEND REALTY LLC,B2000\nFINANCIAL CLEARINGS INC,,G5270\nConstruction Project,W. D. Euille & Associates,Y4000\nmanager,The Conard-Pyle Co,A8000\nOWNER,TENZER COMMERCIAL BROKERAGE,Y4000\nlawyer,Heller Ehrman LLP,Z9500\nOPTHALMOLOGIST,ST LOUIS EYE CLINIC,H1120\nATTOR,WALENTINE OTOOLE MCQUILLLAN G,Y4000\nPresident/ Chief Operating Officer,Newell Recycling of Atlanta,M2400\nATTORNEY,MWW GROUP/ATTORNEY,K2000\nLAWYER,BAKERS HOSTETLER LLP,Y4000\nCrew Scheduler,Kalitta Air,Y4000\nEPIDEMIOLOGIST,UNIVERSITY OF NEW ENGLAND,H5100\nPRESIDENT,WAIKIKI IMPROVEMENT ASSOC.,Y4000\nCEO,\"Roadshow, Inc./THINKfood Group\",Y4000\nMANAGE ECONOMICS &,CONOCO INDONESIA,J1100\nLEARNINGTON CO,,Y4000\nEQUITY BUILD FINANCE,SELF-EMPLOYED,G0000\nENGINEER,MEC,Z9500\nEXECUTIVE,PARADISE CRUISES,Y4000\nEXECUTIVE,PACIFIC LUMBER CO.,A5000\nCERTIFIED,THOMAS J. GORDON CPA INC.,F5100\nRICHARD QUINN & ASSOC,,Y4000\nARTEMIS CAPITAL,,F2100\nJOSSEM ETC,,Y4000\nSCIENTI,CITY OF HOPE MEDICAL CENTER,X3000\nSENIOR DIRECTOR,TENET HEALTHCARE CORPORATION,H2100\nInvestments,US Trust of CT,Y4000\nFISHERIES,\"YARDARM KNOT, INC\",G2350\nREAL ESTATE,\"STEINER EQUITIES GROUP, LLC\",F4100\nCPA,ACCUITY LLP,Z9500\nConsultant,Nancy Jacobson Consultin,H3000\nOwner,Bucks County Bicycle Company,J9000\nPRESIDENT,W. J. ONEIL CO.,Y4000\nSenior VP & COO,Legend Group,F2100\nSOUTHWESTERN WIS TITLE,,F4300\nfinance,ecobn finance limited,F0000\nREALTOR,BATES COMMERCIAL LLC,Z9500\nFARNHAM & PFILE CONSTR,,B1500\nCOO,QUARLES INC.,Y4000\nPROFESSOR,JOPHNS HOPKINS UNIVERSITY,Y4000\n\"BERNER'S\",,Y4000\nEXECUTIVE,GALLCO ENTERPRISES INC,Y4000\nSEALASKA,,T6000\nCHAIRMAN,PRIDE INDUSTRIES,Y4000\nANESTHESIOLOG,UNIV OF IL AT CHICAGO,H1130\nCEO,ATS TELEPHONE,C4100\nAttorney,J R Grace & Associates,K1000\nLA ASSOC IND COLLEGES & UNIV,,H5100\nPRIVATE EQUITY,CADDIS CAPITAL,Y4000\nDistrict Manager I,Pharmacia,H4300\nH I ZIMAN AND ASSOCIATES,,Y4000\nCOMERCIAL FISHERMAN,SELF-EMPLOYED,E4100\nEXECUTIVE,INSIGHT,C5000\n\"EDITOR, WRITER\",SELF-EMPLOYED,C1100\nOFFICE MAN,THE PRIVATE ADVISOR INC.,Y4000\nMedical Physician,Self employed,H1100\nAttorney,\"Crane, Teti, Cox, Trott, Bishay & Fish\",K1000\nPresident/CEO,William Austin Co,Y4000\nExecutive Director,APLA,Y4000\nFIRST SERVICE,,F4600\nHICKMAN DISTRIBUTING,,Y4000\nInvestor,North Hill Ventures,Y4000\nREAL ESTA,BRENNER REAL ESTATE GROUP,F4000\nResident Scholar,Ill Math Science Academjy,Y4000\nVice Chairman,JUST 4 KIDS,Y4000\nCEO,MIRANT,E1600\nR N THOMPSON & ASSOC,,B3600\nCOB/RETIRED,DAN VOS CONSTRUCTION,B1500\nProgram Administrato,Charles Drew University,H5150\nRn Manager,Kaiser Parmedic,Y4000\nART CONSULTANT,RUTH CATONE,J7300\nGOVERNMENT RELATIONS,HEATHER PODESTA PARTNERS,K2000\nREAL ESTATE,NAICAPITAL,Y4000\nFINANCIAL PLANNING CONSULTANT,EMPOWERED RETIREMENT SOLUTIONS,Y4000\n\"EVP, DIGITAL STR\",WARNER MUSIC GROUP,C2600\nPUBLIC HEALTH,SELF-EMPLOYED,J7400\nROB@THEGOLDSONLAWFIRM.COM,SELF,Z9500\nN/A/UNEMPLOYED,,Z9500\nOwner,Virginia Motor Speedway,Y4000\nATTORNEY,JAMES E. BRYAN JR. ATTORNEY AT LAW,K1000\nPHOENIX MANAGEMENT,,Y4000\nMEDIFAC INC,,\nGM PHARMACEUTICALS,,H4300\nAUTO TECHNICIAN,SELF,T2400\nKIENBAUM ET AL,,K1000\nREAL EST,GREAT WESTERN LAND COMPANY,F4100\nANOKA ELECTRIC CO-OP,,E1610\nDENTIST,STEVE ROSEN DDS,H1400\nEARL L NEAL & ASSOC,,J7500\nCEO,Warner Direct Marketing,C1100\nPRESIDENT,INNOVTIVE MTNGS INCNTIVES SVCS,Y4000\nOWNER-MANAGER,,Y4000\nSENIOR STRATEGIST,MOOERS STRATEGY GROUP,Y4000\nPhysician,University Pathologists,H1130\nRESTAURANT OWN,SONOMA CASUAL DINING,G2900\nENTR,IN SEARCH OF THE HOLY GRAYLING,Y4000\nECUFIN INC,,Y4000\nGM,EXECUTIVEMOSAIC,Y4000\nPRESSMAN,RETIRED,J6200\nMANAGER,\"COMP XP, INC.\",Y4000\nBLITZ MARKETER,,J7300\nPUBLISHER,\"EAGLE NEWSPAPERS, INC.\",C1100\nOWNER,\"LKE PARTNERS, LLC\",F2000\nMANAGING PARTNER,CAPITAL ALLIANCE,F0000\nMARSH & MCCLENNAN INC,,F3100\nVice President,\"WMTR, Inc.\",Y4000\nBookkeeper,Law Offices of Art Brender,K1000\nPRESIDENT,H.J. KALIKOW & CO. LLC,F4500\nEXECUTIVE,NOVADIGM,Y4000\nEducator,Harry Hynes Memorial Hospice,H2200\n\"LABORER'S LOCAL 742\",,LB100\nInfromation Requested,Information Requested,Y2000\nExecutive,Chfa,Y4000\nN,PENN STATE HERSHEY MEDICAL CENTER,J7120\nREAL ESTATE FINANCE,\"MISSION CAPITAL ADVISORS, LLC\",Z9500\nTSG CAPITAL,,Y4000\nCHAIRMAN,U.S PAROLE COMMISSION,X3200\nMATSON NAVIGATIN COMPANY INC,,T6200\nOWNER,FLAG WORLD,Y4000\nSYSTEMS ADMIN/PROGRAMMER,THE UNIVERSITY OF IOWA,H5100\nCHIEF FINANC,H K GLOBAL TRADING LTD,Y4000\nCHIROMOCTIC HYSICIAN,,H1500\nROPERS MAJESKI LAW FIRM,,K1000\nEXECUTIVE,THE KIRLIN COMPANY,M6000\nPost Production Supe,Nash Entertainment,Y4000\nNot Employed,None,H5100\nATTORNEY,VERCRUYSSE MURRAY & CALZONE P.C.,Y4000\nphysician,the Frist Clinic,Z9500\nCEO,\"SNIDER PRECISION,INC.\",Y4000\nProfessor,Univerisity of Portland,H5100\nGENERAL MANAGER,HARBORSIDE HEALTH CENTER,Y4000\nVice President,Dick Wray Executive Search,G5250\nLawyer,\"Ury & Moskow, LLC\",K1000\nSales Marketing,Self-Employed,G0000\nPresident  CEO,TKDA,B4000\nExecutive Director a,Technical Association of the Pulp and,G0000\nSCULPTURE,SELF,Z9500\nMELTZER LIPPE ET AL,,J5100\nRETIRED HIGH SCHOOL TEACHER,RETIRED/RETIRED HIGH SCHOOL TEACHER,X1200\nOWNER/PRESIDENT,STONE THEATRES,C2900\nPROFESSOR,CLARK UNIVERSITY,Z9500\nOWNER,FUSION INDUSTRIAL MAINTEANCE,Y4000\nCOOKCTYCOMMONHUMANRI,,Y4000\nGRIFFIN JOHNSON & AS,,K2100\nSECURITIES,SPECIALIST ASSOCIATION,Y4000\nSUSAN CROSSLEY,,Y4000\nREALTOR,WEISGARTEN REALTY,F4200\nSALES,RICHMOND NEW HOLLAND,Y4000\nATTORNEY/LOBBYIST,POLSINELLI SHUGHART,K1000\nNEUROSURGEON,BOSTON UNIVERSITY,H5100\nAttorney,Ketchum,J1200\nSenate Aide,St. of TX,X3000\nEngineer,Robert Bayless Co.,Y4000\nARCHITECT,HOLLANDER ASSOCIATES,Y4000\nCATHOLIC VALUES INVESTMENT TRUST,,J1100\n\"PINNELL, KINGSLEY & LARSEN\",,K1000\nATTORNEY,NORMAN WOHLGEMUTH,Y4000\nTECHNOLOGY CREDIT UNION/STUDENT/PAR,,F1300\nFIREWOOD COR,,Y4000\nEXPORT,TUFENKIAN IMPORT,G3000\nGOVERNMENT,D&P CREATIVE STRATEGIES,K2000\nMANAGER,L.G.R. INVESTMENTS,F0000\nCivil Engineer,City Of Gardena,X3000\nVICE PRESIDENT,\"MULTILINGUAL SOLUTIONS, INC.\",G0000\nManagement,Trade Wind Equipment,Y4000\nINVESTOR,BAILEY FARM,F7000\nEXECUTIV,SWISHER INTERNATIONAL INC.,A1300\nFIRESTONE INC,BRIDGESTONE,M1500\nSENIOR VP,UNITED STUDENT AID FUNDS,F1400\nInsurance Agent,Henderson Brothers Inc,F3100\nCEO,ARIES MARINE CORPORATION,T6200\nTELEGROUP,,C4100\nGeneral Contractor,Central Maintenance & Welding,Y4000\nCHIEF EXECUTIVE OFFICER,\"ANGELO, GORDON & CO., L.P.\",F2700\nOIL - INDEPENDENT,,E1120\nMANAGING MEMB,\"FLORIDA BIOFUELS, LLC\",Y4000\nSO CALIF EDISON,,E1600\nVice President Risk Management; Genera,\"The Bohan Group, Inc\",F4600\nOIL & GAS,LEWIS & CLARK EXPLORATION CO.,E1120\nMUSIC CONSULTANT,HOWARD RICHMOND,Y4000\nGRAVES AND HORTON,,Y4000\nart Director,Selff Employed,G5000\nprofessor,florida tech,Z9500\nSales,Hero Ceramics,Y4000\nMARKETING MANAGER,\"INJURED WORKERS' LAW FIRM\",K1000\nATTORNE,BLOCK LAMBERTI & GOCKE P.C.,K1000\nARTHUR VALVE & FITTING CO,,M5000\nMAYES SUDDETH & ETHEREDGE,,B4400\nMED,THE STATE OF ARIZONA DEPARTMENT,X3000\nSEA-KING CO CONVENTION & VISITORS B,,Y4000\nVICE PRESIDENT,TRISS CORPORATION,Y4000\nCUMBERLAND GULF,,Y4000\nSEL,SELF,Z9500\nALYCE PARKER & ASSOCIATES,,Y4000\nOrthopaedic Surgeon,Orthopaedic Surg Assoc of Marquette,H1130\n\"VICE PRESIDENT, SALES\",\"PARKER TOWING CO., INC.\",T3100\nCOMP FIELD ENGINEER,,Y4000\n\"WOLFORD'S TV\",,G5300\nMONTGOMERY RADIOLOGY ASSOCIATES P.A,,H1130\nEXECUTIV,MINERAL FIBER MANUF. CORP.,Y4000\nVice President,Archstone,F4100\nMANAGER & OWNER MOBILE HOME PA,SELF,B2400\nCH,MARYLAND ASSOCIATION OF REALTORS,F4200\nretired  professor,University of CA. berkeley,J1200\nPETROLE,STANOLIND OIL AND GAS CORP.,E1100\nOWNER,LADY FAITH,Y4000\nLand Developer,Elro Corporation,F4100\nTerritory Parnter Ma,I.B.M.,C5100\nARMORGROUP/LST/EXECUTIVE,,Y4000\nPresident,Jay Caldarera & Co.,Y4000\nFRANKLIN & WISON AIRPORT INC,,J1200\nINVESTOR/C.E.O.,GENERAL ATLANTIC,F2100\nInformatin requested,,M4100\nSALES,SELF  -  EMPLOYED,G0000\nP,UNIVERSITY OF WISCONSIN-GREEN BAY,H5100\nOWNER,BAXTER LAND CO.,A1600\nPAWN BROKER,DELUXE PAWN INC.,G4300\nCommunity Corrections Operator,Rodriquez and Associates,Y4000\nREAL ESTATE,OGA,F4000\nBUCKEYE QUALITY HOME HEALTHCARE,,H3100\nEducator,Johnson & Wales UMV,Y4000\nATTORNEY,CHOI & ASSOCIATES PC,K1000\n\"WAY, FIELD & BODRON\",,H2200\nEXECUTIVE,PACIFIC ADVISORS/EXECUTIVE,F2600\nAttorney,\"Macfadyen, Gescheidt & O'brien\",Y4000\nPresident,Hollis Brothers,G1200\nPresident/CEO,\"Synapse Group, Inc.\",G4000\nVICE PR,\"SCHOEP'S ICE CREAM CO. INC.\",A2000\nPENSION GROUP/PRESIDENT/CEO,,Y4000\nGW BARTLETT COMPANY,,Y4000\nATTORNEY,\"SMITH, SOWALSKY\",K1000\nCOMPUTER SPECIALIST,DEFENSE DEPARTMENT,J1200\nADMINISTRATOR,LAW OFFICE OF GARY MITCHELL,K1000\nPROF,AKITA INTERNATIONAL UNIVERSITY,H5100\nSPOUSE,PUGET SOUND ENERGY,E1620\nCOUNCIL MEMBER,CITY OF INDIO,X3000\nNURSE,KINDRED HEALTH CARE,H1710\nOWNER,KWNO,Y4000\nCSC CIVIL GROUP,,Y4000\nCIO,GOLDEN TREE ASSET MGMT,F0000\n\"SMALLWOOD'S INC\",,Y4000\nconsultant,overseas strategic consulting,JE300\nDirector,KFand HG Montgomery Foundation,X4100\nAttorney,Thompson & Knight LLP,J5100\nWILDWOOD VINEYARDS,,Y4000\nOwner/CEO,The Hauser Group,G5210\nSCIENTIST,HOLOGIC,H4100\nV.P. MEDICAL RES,BIOGEN INDEC. INC.,H4500\nFELLOW,FELLOW,J1200\nGOBER CHEVROLET,,T2300\nINFORMATION REQUESTED,INFORMATION REQUESTED,H3800\nBUILDING SUPPLY CO INC,,B5000\nBUSINESS MANAGER,SHEET METAL WORKERS LOCAL 263/BUSIN,LB100\nCFO,FIRST CORBIN FINANCIAL,F0000\n\"MOLINO'S RANCH RESTAURANT\",,G2900\nCEO,BARTON & ASSOCIATES,Y4000\nTHE MOINIAN GROUP/PRESIDENT/CEO,,F4500\nMarketing Manager,Select Energy Inc.,Y4000\nDIRECTOR,PYRA-MED DESIGN & CONSTRUCTION,B1500\n\"DIRECTOR, PROGRAMS\",RIGHTS AND RESOURCES INITIATIVE,Y4000\nPension conulstant,\"Kollman & Associates, Ltd\",F5500\nDISCOVERY COMMUNICATIONS INC,,C2200\nArchitect,Becker Architects,B4200\nSALES,CONFLUENCE,Y4000\nVP GONERMENTAL AFFAIRS,\"UGI UTILITIES, INC.\",E1140\nGORDON SILBERMAN & WIGG,,Y4000\nPresident,Franklin Medical Center,H2100\nManager,Office Depot,G4400\nNeurosurgeon,Neurological Association,H1130\nOWNER,AMERICAN SPOON FOODS,Y4000\n\"FOUNDER, RETIRED\",NEW BELGIUM BREWING CO.,G2810\nCEO/Founder,Host Communications,Y4000\nCHIEF EXECUTIVE OFFICER.810001.CORP,ONEOK INC - EXEC OFFICERS,E1140\nExecutive,Nebraska Legal Services,Y4000\nOWNER,CORVETTE MIKE,Y4000\nSpecial Projec,Carpet Den Interiors,M8000\nPsychiatrist,Baystate Health System,Y4000\nSoftware Developer,First American Corporation,F4300\nENGINEER,\"WITTEN ENGINEERING, INC\",B4400\nMODEL & TALENT AGENC,JOHN ROBERT POWERS,C2000\nHuman Factors Engine,Lexisnexis,C5130\nPartner,Colonies at San Antonio,J1100\nBANKER,CITIZENS DEPOSIT BANK,Y4000\nVice President,\"TTL, Inc.\",B4000\nARKANSAS DISTRIBUTING,,G2850\nLobbyist,The Shanahan Group,K2000\nSTUDENT,BELMONT UNIVERSITY/STUDENT,H5100\nNeurologist,Valley Neurology Associates,H1130\nDIR,QUALITY CARE HOME HEALTH AGENCY,Y4000\nPresident,Ajac Transportation Inc.,Y4000\nWISENBERG INSURANCE,,F3100\nRADIO TALK HOST,SELF-EMPLOYED,G0000\nSTAFF/TECHNICAL,\"ACTUARIAL CONSULTANTS, INC.\",F5500\nRYAN INTERNATIONAL,,Y4000\nFIELDS LANDCLEARING,,Y4000\nVeterinarian,Rico Village Animal Hospitals,A4500\nREAL ESTATE,RODEN PROPERTIES INC,Y4000\nWIMING,,J7400\nLaw Librarian,Harvard Law School,H5170\nBUSINESS OWNER,A. K. MARGO,G0000\nVP SAFETY,CSX TRANSPORTATION INC,T5100\nROBERT R JONES ASSOC INC,,B2000\nEngineer,IBM Corporation,C5100\nINVESTOR,LAURIE MICHAELS,Y4000\nEXECUTIVE DIRECTOR,ZERO TO THREE,J1200\nPRESIDENT,FTD,Y4000\nProject Director,Polaris,Y4000\nOwner,EMPIRE TILE & MARBLE,Y4000\nAttorney,\"Melton, Espy & Wiliams\",K1000\nELECTRO DESIGN MANUFACTURING INC,,Y4000\nStone House,,Y4000\nPolitical Organizer,Freedomworks,J1100\nCEO,Quanta Services,B3200\nREAL ESTATE,PETRUS PARTNERS/REAL ESTATE,Y4000\nCOOPER & LYNDBRAND,,F5100\nOfficer,Valley Bank,F1000\nST CHAMBERS NURSERY SCHOOL,,H5000\nPRESIDEN,BAY RIDGE FUEL CORPORATION,Y4000\nHELLER FINANCIAL,,G5300\nattorney,\"Maury L Carter & Associates, Inc\",F4200\n\"President, Sony Pictures Television\",Sony Pictures Entertainment,C2400\nQ PRIME INC.,,J7400\nSITTER,,Y4000\nProject Manager,Nys Energy R and D Authority,X3000\nPartner,Robert Rossi and Co,F5100\nREGIONAL DIRECTOR,HOMELAND SECURITY,Y4000\nATTORNEY,ROBINSON DONOVAN,Y4000\nBanker,Bank & Trust Company,F1000\nHEALTH CARE CONSULTANT,CRESCENDO CONSULTING/HEALTH CARE CO,Y4000\nManager,Xicom Technology,Y4000\nBUSINESS EXECUTIVE,CITY NATIONAL BANK/BUSINESS EXECUTI,F1100\nA-K COMPANIES,,G4700\nFEDERA,DEPARTMENT OF TRANSPORTATION,X3000\nEURO-NEVADA MINING CO,,E1200\nPHYSICIAN,FAMILY DIAGNOSTIC ASSOCIATES,Y4000\nPhysician,The Dayton Heart Center,H1130\nExecutive,PIZZAGALLI CONSTRUCTION COMPANY,B1000\nSales Manager,Capricorn Seafood,G2350\nCorporate Secretary,\"Central Blacktop Co, Inc\",Z9500\nR.E. DEVELOPMENT,SELF EMPLOYED,J1100\nPRESIDENT,EPIC ADVISORS INC,Y4000\nCHIPPEWA FALLS SCHOOL,,X3500\nGOVERNMENT RELATIONS,WSW,Y4000\nAttorney,Eckart Seamans,Y4000\nSEEKING INFORMA,SEEKING INFORMATION,X1200\nPRESIDENT,ECPI COLLEGE,H5200\nONE YEAR STATE HBA,,B2000\nCONVENTION BUREAU,,T9000\nREAL ESTATE BROKER,CENTURY 21 REAL ESTATE,F4000\nDUNN VINYARDS,,T1400\nRETIRED,N/A,H6000\nHANDY HOUSE INC,,Y4000\nLand Broker,AZ Land Advisors,Y4000\n\"CLEARY GOTTLIES, LLP\",ATTORNEY,K1000\nAG REP,GRANGER CONAGRA,Y4000\nCARLOS SALMAN REALTY INC,,F4200\nchairman,Visual Numerics,Y4000\nOwner,Appletree Construction,B1500\nAFFORDABLE HOUSING S,CAPSTONE HOUSING ADVISORS,Y4000\nExecutive,Greenspun Corporation,F7000\nCPA,\"K.P.M.G, L.L.P.\",F5100\nGENERAL PARTNER OF H,\"LAGRANGE, CAPITAL PARTNERS L.P.\",F0000\nSUPERVISOR OF DATA PROCESSING,CORNHUSKER PPD,E1610\nVANDERBILT SCHOOL OF NURSING,,J1100\nMCLAUGHLIN COFFEE COMP INC,,G2600\nLIVINGSTON PATTERSON STRICKL,,Y4000\nHORSE BREEDER,OWNER,A3500\nCFP,SELF-EMPLOYED,F5000\n\"KIRKLAND & ELLIS, LLP\",,K1200\nOWNER,GUNNAIR,Y4000\nCONSULTANT,HILBURG ASSOCIATES,Y4000\nPLATTEVILLE BAPTIST CH,,X7000\nCONSULTAN,KENNETH WAGNER CONSULTING,Y4000\nPRESIDENT,NATIONAL PHYSICIANS ASSN.,Y4000\nHANZMAN KRIDEN KORGE & CHAYKIN,,K1000\nATTORNEY,\"GROSSMAN ROTH, PA.\",K1000\nATTORNEY,FLOOD & FLOOD,K1000\nCOMMUNICATIONS SVCS,,Y4000\nPublicist for Nonprofit Organizations,Self employed,Y4000\n\"VP, QUALITY & REGULATORY\",GENERAL MILLS,G2100\nCLARK & MITCHELL PC,,Y4000\nWALSH REALTY,,F4200\nSJ PARTNERS,,F2300\nAttorney,City of New York,Z9500\nSCOTT DODDS & ASSOCIATES,,Y4000\nEducation Counselor,Self,G0000\nEXECUTIVE,COASTAL SUNBELT PRODUCE,Y4000\nHOUSTON ASTROS BASEBALL CLUB,,G6400\nOPTOMETRIST,SELF-EMPLOYED (SAME),H1120\nINVESTOR,PENDRELL CORP,C4500\nAdministrator,Photographic Center,J7400\nOWNER,LA HACIENDA TREATMENT,Y4000\nST NATURAL PRODUCTS,,Y4000\nTHE DARCON CORP,,B0500\nANTHONY OIL & GAS CO,,E1100\nLVN,AMERICAN RED CROSS,X4000\nINVESTMENT AN,FRED ALGER MANAGEMENT,Y4000\nKATE MOSS & COMPANY,,K2000\nNELSON DECOYS/WOODCARVER/SHOP OWNER,,Y4000\nAFEHCT-ASSOC.FOR ELECTRONICHEALTHCA,,H0000\nManager,Tri State Auto Auction,Z9500\nATTORNEY,SULLOWAT & HOLLIS,K1000\nSoftware Engineer,Alcatel Lucent,C4600\nGENERAL CONTRACTOR,LICHTEFELD INC.,Y4000\nExecutive,Federal Mogul Corp,T2200\nPhysician,Gundersen Lutheran Med Ctr,H1100\nHUMBLE ISD,HUMBLE ISD,X3500\nLOBBYIST,PIERCE ATWOOD,K1000\nResearcher,KKI,Y4000\n\"COPAKEN, WHITE, BLUT\",,Y4000\nINVEST,BASSINI PLAYFAIR ASSOCIATION,Y4000\nAttorney,Rosen Harwood PA,Y4000\nPOLICE O,PATERSON N.J. POLICE DEPT.,X3200\nChairman/President Of Aqua America,Aqua America,E5000\nRetired Library Asst,Contra Costa Library,X4200\nJ.P CULLEN AND SONS,,B1000\nINDEPENDENT SALES ASSOCIA,WORTH LTD,Y4000\nRestauranteur,Ikaros Restaurant,G2900\nBusiness,Buccini Pollin Group,F4100\nInvestment Mgr,Trust & Fid Mgt Serv,Y4000\nDIRECTOR SALES ACCOUNTING,\"ICG, LLC\",E1210\nPresident,American Marketing,F4100\nPUBLISHER,NEAL PUBLICATIONS INCORPORATED,C1100\nANALYST,ALIS,Y4000\nMATANUSKA TEL ASSN,,C4100\nJEWELER,ARLENE & ROBERTA JEWELERY,Y4000\n\"LORBER, SCHNEIDER & NUZZI\",,Y4000\nBIOHORIZONS INC.,,J7400\nTRIANGLE EQUIPMENT COMPANY,,Y4000\nPorsche Mechanic,\"squire's autowerke\",Y4000\nSELF EMPLOYED/SAME NAME/MUSICIAN,,J7400\nfurniture designer &,self-employed,M4100\nInsurance,\"J S Ward & Son, Inc\",F3100\nMEDICAL TECHNOLOGIST,VA MED. CENTER,H2100\nPhysician,Cleveland Clinic,H2100\nBWP SECURITIES USA INC,,F2100\nPAINT STORE - HARDWARD,\"SWEET'S INC.\",G4500\n\"BERRY COMPANIES, INC.\",,B5400\nWOWN,WTCH,C2100\nTile Setter out of Work!,Unemployed and on Social Security,X1200\nN C BOARD OF SUPERVISORS,,X1200\nMCKENNA & CUNEO,,K2000\nMITCHELL DISTRIBUTING CO,,G2850\nUniversity Lecturer,\"Csulb, Chapman University\",H5100\nEXECUTIVE,RSVP HOMECARE,Y4000\nAttorney,McGuire Woods,K2000\nTEACHER,DUKE SCHOOL,Y4000\nATTRACTIONS,WALT DISNEY WORLD CO.,C2000\nRISK MANAGEMENT,DELOITTE CONSULTING,Z9500\nPresident,Fluor,E1320\nWINEMAKER,CHERRY CREEK CELLARS,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,DUNHILL MANAGEMENT CORPORATION,Y4000\nOwner,Cleremont Farm,A1000\n\"PRESIDENT, UMS\",UNIVERSITY OF MICHIGAN,H5100\nATTORNEY,GREENBERG & TRAURIG,K1200\nTIP TOP AMUSEMENTS INC,,G6000\nINTERIOR DESIGNER,ATNIC CO. INTERIOR DESIGN,Y4000\nCHIEF EXECUTIVE OFFICER,FRONT PORCH COMMUNTIES AND SERVICES,Z9500\nCONSULTANT,COMSTOCK CONSULTING,Y4000\nCEO,ROCHESTER PHARMA,Y4000\nEXECUTIVE,D.J. ORTHOPEDICS,H1130\nCHAIRMAN & CEO,LORD CORPORATION/CHAIRMAN & CEO,T1300\nBANKER,JPMORGAN CHASE BANK & CO.,F1100\nCENTRAL MACHINE & TOOL,,Y4000\nEXECUTIVE,TOYOTA OF CINCINNATI,T2310\nASSISTANT GENERAL COUNSEL,BANK OF AMERICA,F1100\nRETIRED SOCIAL SECURITY ADMINISTRAT,,X1200\nCONSULTANT,BPE GLOBAL,Y4000\nCommunications,Citadel,F2700\nRegional Manager,Staff One Inc.,Y4000\nEVANGELICAL CHRISTIAN CREDIT,,Y4000\nNINO SINO,,Y4000\nPRESIDENT & CEO,BROOKLYN PUBLIC LIBRARY,X4200\nMILLER PACIFIC ENGR GRP,,Y4000\nNATIONAL GRAIN TRADE CENT,,A4300\nPOSTGRADUATE CENTER OF MENTAL HEAL,,Y4000\nCHAIRPERSON,TLC-LC INC,G2100\nELECTRICAL ENGINEER,BEHERENT,Y4000\nSALES MANAGER,ADVANCED CUTTING SYSTEMS/SALES MANA,Y4000\nOWNER,SHAVER TRANSPORTATION,T6200\nEngineer,Telecomm Eng Associates,Y4000\nVice President of Sa,\"Tie Down Engineering, Inc.\",T8300\nPRESIDENT,UNION BANK & TRUST CO.,F1100\nManager,\"W.P.A.S., Inc.\",Y4000\nBRANCH MANAGER,Central Pacific Mortgage,F4600\nSoldier/Student,US Army National Guard,Y4000\nPRESIDENT,SKLAR EXPLORATION/PRESIDENT,Y4000\nEXECUTIVE,O.F. MOSSBERG AND SONS,J6200\nPRESIDENT,PACEMAKER PRESS INC,Y4000\nMGMT,EDGE TECH,Y4000\nEXECUTIVE,SELF-EMPLOYEED,G0000\nBeer Distributor,Faust Distributing,G2850\nCONSULT,SHOREBANK ADVISORY SERVICES,J7400\nUROLOGIST,UROLOGIC ASSOC. OF MONTOGOMERY COUNTY,H1130\nOSTEOPATHIC PHYSICIA,\"PORT HORAN ENTERPRISES, P.C.\",Y4000\nCHIEF OP,LANDSNOW DEVELOPMENT CORP.,Y4000\n\"EAGLE'S VIEW MANAGEMENT COMPANY\",,F4000\nOwner,My Health Link,H0000\nArchitect,Ayers Saint Gross,Y4000\n3RD ASST ENGI,OSPREY SHIP MGMT INC.,LT500\nPRESIDENT,\"TELEPRESENCE HEALTH COMMUNICATION, LLC\",Y4000\nMORTAGE BROKER,SELF-EMPLOYED,F4200\nSEATTLE GATRO,,Y4000\nPRESIDENT,MARCUS PARTNERS INC.,F4000\nGRAFIXATION,,Y4000\nPresident,\"Architectural Accents fo Naples, Inc.\",B4200\nPRINCIPAL,CYGNUS TOWERS,Y4000\nUS VP Logistics Cust,NOVA CHEMICALS,M1000\nSuperintendent,Lyon County School District,X3500\nPARTNER,CADWALADER WICKERSHAM & TAFT,K1200\nPROJECT MAR,,J7400\nTEACHER,N.E. UNIVERSITY,H5100\nWEBSITE DEVELOPMENT,IRAPTURE,Y4000\nREHAB MANAGEMENT SYS,,H1700\nExecutive,Fidelio Insurance Company,F3100\nCEO,PRECISION REFLEX INC.,Y4000\nPresident,Transform Data Corp.,Y4000\nINVESTMENT EX,MANIV BIOVENTURES LLC,F2500\n\"HAWKINS, FERETIO, DALY ET AL\",,K1000\nSALES,PRESIDIO,J1100\nTAX PARTNER,DELOITTE TAX LLL,F5100\nCEO,\"Schaller Anderson, Inc\",F3200\nCPA,\"GEORGE KORBAKES & CO., LLP\",F5100\nTHE HEARD COMPANY,,Y4000\nstaff,\"P2RS Group, Inc\",Y4000\n\"Owner of Bb's Distribution Service INC\",Owner,Y4000\nCEO,UTTER HOUSEHOLD,Y4000\nPhilanthropy,MacArthur Foundation,Z9500\nSenior Philanthropic,Tides Foundation,X4100\nPH,HOWARD HUGHES MEDICAL INSTITUTES,H4500\nVICE PRESIDENT,ITA CORP.,D9000\nMushroom Trader,Self-Employed,Y4000\nVP US TAXES,ALCON LABORATORIES INC.,H4000\nEFFECTIVE MMGT SYSTEMS,,C5110\nClerk,Underwriters Laboratories,Y4000\nNational Sales Manag,Shopping Center Business,F4600\nREAL ESTATE MGMT,EBCOX INC.,J1100\nOWNER,69TH STREET CURRENCY EXCHANGE,Y4000\nAngel Investor,SV Angel,F2500\nKansas City Art Institute,,Y4000\nEXECUTIVE VICE PRESIDEN,MCGRAW-HILL,C1100\nCEO,DEL VEL,Y4000\nArtist/writer/Nutritionist,Self,C1100\nCEO,HEARTS BY DESIGN,Y4000\nCollege Professor,Kenneth Miller,Y4000\nGRANTMAKER,\"AKONADI FOUNDATION, JORDAN REAL ESTATE\",J7500\nGENERAL MANAGER,MULAN RESTAURANT,G2900\nARMSTRONG & LOWE,,Y4000\ngrocer,Dorothy Lane Market,G2400\nTeacher,Westmoreland Co Public Schools,Y4000\nBIOGEN I,MA INSTITUTE OF TECHNOLOGY,H4500\nINVESTMENT,SBC WARBURG DILLON READ,F2300\nSO COAL FOR EDUC EQUITY,,Y4000\nAdministration,Self,G0000\nPresident,\"Matthews, Bartlett & Dedecker\",F3100\nMONCLA CATERING,,G2900\nSELF EMPLOYED,BUILDER,B1500\nPresident/CEO,Allenton Homes & Development,B2000\nBUSINESS MANAGER,CHICAGO JESUIT ACADEMY,Y4000\nINTERNATIONAL TRADE ADVISOR,,Y4000\nJ D STREETT & CO,,E1160\nOWNER,WHITEHOUSE ADVT AND DESIGN,Y4000\nV.P. & GEN. MGR.,OWENS CORNING,B5400\nCFO/ CONTROLLER,GAUTIER STEEL,Y4000\nCHIEF EXECUTIVE OFFICER,CEQUEL III,C2200\nOWNER,HAVARICO INC.,Y4000\nPrinter,Enterprise,Y4000\nMeditation Instructor,Self employed,Y4000\nRealtor,K Land Inc.,Y4000\nAdministrator,University of WI,H5100\nENGINEER,A.K. STEEL,M2100\nINSURANCE SALES,AXA,Z9500\nCON,\"BOWYER SINGLETON & ASSOC., INC.\",B4000\nZWILLINGER JEWELRY,,G4600\nproducer,cox radio,C2100\nCOMMERCIAL REAL ESTATE BROKER,ZIMMER REAL ESTATE SERVICES,F4000\nATTORNEY,TOR HOERMAN LAW LLC,K1000\nPRESIDENT A,FOX RESTAURANT CONCEPTS,G2900\nRE,SOUTHWESTERN HOMES & LAND REALTY,F4200\nReal estate sales,Douglas Elliman,F4500\nPresident,McGuire Assoc,Y4000\nCHEMICAL LEAMAN TANK LINE,,Y4000\nAMERICAN BUREAU OF SHIPPING,,T0000\nPRESIDENT & CEO,TISSUELINK MEDICAL,H4100\nCEO,\"SECURIGUARD,INC\",G5290\nMEDICAL MGT.,KLS MARTIN L.P.,Y4000\nEXECUT,SEDLAR & MINERS (SOLE PROP.),J7400\nCOCHRAN TRUCKING INC,,T3100\nInvestment Mgr.,Atlantic American Investment Partners,Y4000\nCOLLEGE OF LAKE COUNTY ILLINOIS,,H5100\nPRESIDENT,SEA MANAGEMENT INC.,T6000\nRETIRED ON FIXED INCOME,,X1200\nVP FLIGHT OPS,ALASKA AIRLINES,T1100\nBUSINESS OWNER,DRAPER INC.,Y4000\nCLERICAL,LOCAL STORE,Y4000\nEXECUTIVE,MORSLY INC.,M3100\nATTORNEY,HUNT LEIBERT & JACOBSON PC,K1000\nSEMI-RETIRED,SELF,G0000\nSTAMOS ASSOCIATES,,J7300\nPATHOLOGIST,SOUTHEAST BAPTIST HOSP,H1130\nLawyer,Caron Colvin Robison Shaf,K1000\nInterior Architect,\"Ziad M. El-Khoury, Association\",Y4000\nBookkeeper,Fort Wayne Physical Medical Center,Y4000\nPRESIDENT,KING RANCH MARKETS,J1100\nECHERT SEAMAN CHERIN,,K1000\nFINANCE MANAGER,BMW OF STERLING,T2310\nFHA,ENTERPRISE MORTGAGE INVESTMENT,F4600\nSoftware Engineer,Via Training,Y4000\nSARDINE FACTORY INC,,G2900\nCONSULTANT,OLIVER WYMAN,T1400\nENROLLED AGENT,SELF-EMPLOYED,F5300\nAnalyst,PSI,Y4000\nMOTION PICT ASN OF AMER,,C2400\nattorney,Smith Dawson & Andrews,J1200\nPresident,Integrated Concepts Inc.,Y4000\nproperty management,storage pro,J1100\nPresident/CEO,\"ELMCO, Inc.\",B4400\nCAREER SERVICES,AXA,Y4000\nPhysician,University of California - San Fra,H1100\nPRESIDENT,PAVLEE BODY SHOP,T2400\nCRANBERRY POINT NURSING H,,H2200\npresident,Washington Resource Assoc,Y4000\nPres & CEO,Village Bank,F1000\nATTORNEY,WINSTEAD SECHREST & MINICH,K1000\nPRESIDEN,CALIFORNIA VALLEY VAULT CO,Y4000\nFinancial Controller,Unisom Management,F4000\nPEGASUS BROADCAST TELEVISION,,C2100\nBORK & ASSOCIATES,,G5210\nAUDIOLOG,SOUTH SHORE HEARING CENTER,H1700\nMBO CORPORTATION,,C4100\nDBA/PROGRAMMER,CALPONT,Y4000\nABC HOME HEALTH SERVICES,,H3100\nManagement Executive,AT&T,C4100\nENGINEER,TRANSYSTEMS/ENGINEER,B4000\nVICE PRESI,CAPITOL CONSULTING GROUP,K2000\nMANAGER,METROPOLITAN,Y4000\n\"WOMEN'S HEALTH CARE HINSDALE\",,H0000\nMill-Max Manufacturing,,C5000\nPATHOLOGIST,UNIV. OF MAINE SYSTEM,H5100\nLAWYER,\"STOKES LAWRENCE, PS\",K1000\nOwner,The Ward Company,Y4000\nLawyer,\"Nee, Beacham & Gantner\",Y4000\nPresident,Hoffman-Henry Insurance Corpor,F3100\nENGINEER,NBC-UNIVERSAL,C2300\nBANK OF GRAINJ VALLEY IN GRAIN VALL,,F1100\nOWNER,AXIOM VALUATION SOLUTIONS,Y4000\nLEVIN ENTERPRISES INC,,Y4000\nNurse Anesthetist,Kaiser Permanent,J7400\nFIRST VICE PRESIDENT,MINNICKS ELECTRIC/VACUFLO INC.,B2000\nAttorney,\"Wiener, Rohrstaff, Spivey\",K1000\nMANAGER,\"CRAY, INC.\",C5110\nAttorney,Potter Minton,K1000\nSARATOGA SPA ST PARK,,Y4000\nCarding Surgeon,Health Partners,Y4000\nMINK & MINK INC,,Y4000\nMCM INC,,Y4000\n\"DEPUTY DIRECTOR, GOVERNMENT RELATIONS\",THE PEW CHARITABLE TRUSTS,X4100\nAttorney / Partner,Alston & Bird LLP,K1000\nPAST C,ST. JUDES CHILDRENS HOSPITAL,H2100\nBUSINESS OWNER,FERTITTA ENTERPRISES,G6500\nReal Estate Investor,Self,JD100\nMANROD ELECTRIC INCORPORATED,,B3200\nACCOUNTANT,CHICAGO GEAR,Y4000\nATTORNEY,GOODWIN LAW CORPORATION,E4200\nACCOUNTANT,AMERICAN COAL CO,E1210\nCAGNONI DEVELOPMENT,,F4000\nVP - KII HUMAN RESOURCES,KOCH INDUSTRIES INC,E1160\nLawyer,requested,K1000\nVICE PRESIDENT GOVERNMENT RELATIONS,BAYSTATE MEDICAL CENTER,H2100\nSr. Vice President,T X U Power,Y4000\nBUSINESS OWN,PARTNERS BENEFIT GROUP,Y4000\nNORMAN GAAR & ASSOC,,Y4000\nCeo,NY Foundation,Y4000\nPrinter,DST Output,Y4000\nPUEBLO DE COCHITI,,Y4000\nConsultant,Alvarez & Marsal,Y4000\nPresident,USI Insurance Services Corp.,F3100\nCONSULTANT,AUGENBLICK PALAICH AND ASSOCIATES,Y4000\nPresident,Johnson-manley Lumber Co.,B5200\nTUCKER ROCK DISTRIB,,T2200\nOffice Service,Walmart,G4300\nRegional Director,H&R Block Mortgage,F5300\nBOISE AIR SERVICE,,T1600\n\"Director, Human Reso\",Methodist Hospital of Southern Califor,H2100\nSvp - Business Development,Macerich,F4100\nMURPHY INC,,Y4000\nPortfolio Manager,Ameriprise Financial,F2100\nManaging Director,360 Hotel Group,T9100\nAttorney,Quarles& Brady LLP,J1200\nCOMSTAR,,Y4000\nFinancial Advisor,Goldstein Munger + Assoc,Y4000\nPRESIDENT,MABRY PUBLIC AFFAIRS LLC,Y4000\n\"VP, FE\",MCGUIRE WOODS CONSULTING LLC,K2000\nPRESID,FIRST NATIONAL BANK OF OMAHA,F1100\nCARDIOLOGIST,UNITED HOSPTITAL,Y4000\nQUICKSIGN,,Y4000\nPolitical Con,Unruh Consulting Inc.,Y4000\nRD MANAGER - IBI,ST. JUDE MEDICAL,H4100\nINSURANCE,SELF-EMPLOYED,Y0000\nMCCARTER CORP,,Y4000\nREAL ESTATE,PARAGON PROPERTIES,F4000\nEXECUTIVE,\"UCA ANTECH, INC.\",Y4000\nROWLAND FINANCIAL SERVICES,,F0000\nMANAGER,MS COLLINS TRUST & DAVISSON PETROLEU,Y4000\nS503ESGTECH PROF LEADERTECHNOLOGY,HALL. ENERGY SRVC. INC.,E1150\nInterior Designer,Interior Design,G5000\nKOSKAN & KOSKAN,,Y4000\nEXECUTIVE,\"EXTERIOR MATERIALS, INC.\",Y4000\nTEREX DIVISION - TEREX CORP,,B5100\nCHIEF EXECUTIVE OFFICER,IBERIA MEDICAL CENTER,H2100\nSelf-Employed,WTPratt dds,H1400\nCOOKE-DOUGLAS-FARR-LEMONS LTD,,B4000\nPARTNER,THE LIGHTING SYNDICATE LLC,Y4000\nATTORNEY,STARK & STARK PC,K1000\n\"SMI INT'L\",,Y4000\n\"VP, GREATER KUPARUK\",CONOCOPHILLIPS COMPANY,E1110\nDIRECTOR OF RISK MANAGEMENT,GUARDIAN INDUSTRIES CORP.,M7200\nGEORGETOWN UNIVERSITY,,J5100\nFIXED INCOME PORTFOLIO MANAGER/ANALYST,CAPITAL INTERNATIONAL RESEARCH INC.,F2100\nDEFENSE SEVICES,PLANING SYSTEMS INC,C5000\nBROWER INSURANCE,,F3100\nDEL TECH & COMM COLLEGE,,H5200\nPRESIDENT,SCOTT CONSTRUCTION EQUIPMENT COMPANY,B1500\nSenior VP,NeighborCare,Y4000\nOwner,Elite Team Services Inc.,Y4000\nMANAGING PRI,\"FORMATION METHODS, LLC\",Y4000\nVP & GM,Lenovo,C5130\nTECHNICAL SERVICE ENGINEER,LOCKHEED MARTIN,D2000\nWILLIAM MITCHELL COLLEGE OF LAW,,H5170\nFertilizer Manufacturing,Nelson Plant Food Corp,Y4000\nLawyer,Cheven & Keely,K1000\nCLAIM ADJUSTER,CRAWFORD & COMPANY,Y4000\nHMS PARTNERS,,J5100\nGranger Co.,Executive,J1100\nAdministrative law Judge,Oregon Office of Administrative Hearin,Y4000\nMTV NETWORKS,NICKELODEON,C2200\nTECTON INC,,T9100\nBOARD MEMBER,BAYPORT CU,F1300\nCHAIRMAN,\"THE LORD'S PLACE\",Y4000\nSENIOR VICE PRESIDENT,AEM,M2300\nSIMERMAN CONSTRUCTION,,B1500\nATTORNEY,ROSS BRITTAIN & SCHONBERG,B0500\nPRESIDENT,FLAT BRANCH PUB & BREWING,Z9500\nPOLITICAL ACTION COMMITTEE,,T3100\nManager,Performance Contractors,B1000\nATTORN,NEW LONDON DEVELOPMENT CORP.,Y4000\nEMERGENCY PHYSICIAN,BAY AREA HOSP,H1100\nMICHAEL THOMAS LTD,,G3000\nEngineer,\"Seagate Technology, Inc\",C5110\nOWNER / REALTOR,DREAMS TO REALTY,F4200\nEXECUTIVE,THE MBA GROUP,G5200\nNurse Anesthetist,American Anesthesiology of Georgia,H1130\nVICE PRESIDENT,NORTHEERN TRUST NA,J1200\nSUMMIT TRUST,,Y4000\nExec. Vice President,The Nadaq Stock Market,Y4000\nAttorney,Stack & Stack,K1000\nReal Estate Developer,\"Plaza Associates, Inc\",F4100\nPhysician,Holy Name Hospital,H1100\nFIDELITY RETAIL GROUP,,G4000\nPresident,\"Eds Tires, Inc.\",Y4000\nEXECUTIVE,BLACK SPRINGS,Y4000\nSVP,UnitedHealth Group,H3700\nTHE SHARP TREATMENT OF SOUTH BAY IN,,Y4000\nGENERAL CONT,RT DOOLEY CONSTRUCTION,B1500\nAGENT INSURANCE,SELF-EMPLOYED,F3100\nPRESIDENT,WYCKOFF FORD INC,T2300\nREAL ESTAT,PACIFIC CAPITAL ADVISORS,F2100\nVICE PRESIDENT,INFORMATION TECHNOLOGY,C5100\nPRESIDENT,WESTWATER GROUP,Y4000\nVice-Pres,Industrial Brake Co,Y4000\nSALES & MARKETING MAN,THE ANDERSONS,A4100\nFARNER BOCKEN CO,,Y4000\nCOMMONWEALTH TECHNOLOGY INC,,E2000\nCAPITAL GROUP COMP,,Y4000\nGOVERNMENT RELATIONS,AALU,Y4000\nCONSULTNT,\"DOLPHIN, INC.\",Y4000\nPresident/Chief Exec,Stelax Inc. Ltd.,Y4000\nSEABROOK TRUCK CENTER,SELF-EMPLOYED,Y4000\nRIPELWOOD HOLDINGS,,F2100\nChairman and CEO,\"Acuity Brands, Inc.\",M6000\nREAL ESTATE,FSC REALTY,F4200\nOWNER/INVESTOR,RAMCO ENTERPRISES,Y4000\nREF,NATIONAL BASKETBALL ASSOCIATION,G6400\nPHYSICIAN,S. TX RADIOLOGY,H1130\nPROVIDENCE GRANITE CO,,Y4000\nOwner,Block Building Llc,F4000\nEnergy Executive,Reliant Energy,E1600\nAttorney,Morgan Brown and Joy,K1000\nOIL AND GAS RENTAL SERVICES INC,,E1150\nPRESIDENT/CEO/EXECUT,AV Equipment Rentals,G5300\nNASDAQ TRADING,,F2400\nADMINISTRATOR,M.T.A.,Y4000\nInsurance Brokerage,Self,F3100\nSenior Director,Aquarium Pharmaceuti,Y4000\nSHENANDOAH FOODS,,Y4000\nATTOR,DAVIDSON & TROILO A. PROF COR,K1000\nEngineer,City of Rochester,X3000\nCONTINENTAL CARS INC,,T2300\nNATIONAL ACC,\"HOME DIAGNOSTICS, INC.\",H4100\n\"SENIOR VP, GOVERNMENT RELATIONS\",UNIVISION COMMUNICATIONS INC,C2100\nfilm director,Korty Films,J1200\nFINANCE,DIAMOND HILL,J1100\nMEDICAL,ONCOLOGY THERAPIES OF VISTA,H1130\nDirector,Mathematical Sciences Research Institu,Y4000\nHEAD OF FEDERAL AND STATE GOVERNMENT A,AETNA,H3700\nPRESIDENT,PRAIRIE TRANSPORT,G1200\nCLASSROOM TEACHER,STAMFORD SCHOOL DISTRICT,L1300\nRealtor,HER,Y4000\nABT ACCOCIATES INC,,G5200\nPhysician,NY Gastroenterology Associates,H1130\nCONCEPT ONE UNITED HEALTH CTRS,,H2200\nConsultant,SoftEdge Solutions,Y4000\nEXECUTIVE,MANHATTAN CONSTRUCTION CO/EXECUTIVE,B1000\nDIRECTOR OF HEALTH,\"KANSAS CITY, MISSOURI HEALTH DEPARTMEN\",Y4000\nLEDLORDS PEST CONTROL,,G5700\nPresident,NACAW,Y4000\nOWNER,MORTON & PITALO,Y4000\nPLANALYTICS,,Y4000\nConsultant,MJ Markman Associates,Y4000\nWILLIAM A SHERMAN & CO,,Y4000\nPIGGLY WIGGLY,,Y4000\nReverse Mortgage Len,Seattle Mortgage,F4600\nRETIRED FED. GOVNT,NONE,X1200\nRETAIL,ALLIANCE DATA SYSTEMS,C5100\nMCCAULEY MECHANICAL CONS,,B0000\nCEO,Coffman Special,Y4000\nBRECHAN ENTERPRISES INC,,B1000\nENTREPENEUR,SELF-EMPLOYED,J9000\nHORIZON CELLULAR GROUP,,C4300\nCHAIRMAN & C. E. O.,CENTEX HOMES,B2000\nM N I BANK,,F1100\nTUITION PLANS,,Y4000\nVP CORPORATE DEVELOPMENT,NEWFIELD EXPLORATION COMPANY/VP COR,E1120\n\"LFC CAPITAL, INCORPORATED/CEO/PRESI\",,F2100\nVP & Treasurer,Blue Cross & Blue Shield of Arizona,F3200\nU OF MIAMI,,J7400\nFinance,EKO Asset Management Partners,Y4000\nNurse Practitioner,\"Dr. Ann Arigo, PC\",Y4000\nBIOGENEX,,H4300\nPARRY ROMANI & DICONCINI,,K2000\nLa Home Care,Self,G0000\nEMERGE,GEORGE J MILLER III DO FACEP,H1100\nIDAHO IND COMMISSION,,Y4000\nPhysician,St Alexius Medical Center,H2000\nCONSULTANT,BERGSON & COMPANY/CONSULTANT,Y4000\nPRINCIPAL,THE RHOADS GROUP,K2000\nEMERGEN,RAPIDES REGIONAL MED CTR ED,H1100\nPORTFOL,BUCKHEAD CAPITAL MANAGEMNET,F2100\nInformation Requeste,RSC Quality Measurement Co,G5280\nHealth Care Administration,Self-Employed,H0000\nCONSULTANT,CE BRADLEY,Y4000\nVP,EDISON CHOUEST OFFSHORE,E1150\nClinical Lab Scienti,Cedars Sinai Medical Center,H2100\n;Awyer,\"Wyatt, Tarrant & Combs, LLP\",K1200\nProsecutor,Dallas County District Attorney,K1000\nGERMAIN TOYOTA INC,,T2300\nPilot,DAVIS & WEIGHT MOTORSPORTS,G6400\nINVESTOR,WINSLOW PARTNERS,F2100\nBOARD MEMBER,,JE300\nTED HONGHIRAN PA,,Y4000\nMANAGER,DRAGON SPHERE INC.,Y4000\n\"MANAGER, GOVERNMENT AND REGULATORY AFF\",COX COMMUNICATIONS,C2200\nVEALE INVESTMENT PROPERTIES,,F0000\nASSISTANT CHIEF,STAR PIPE PRODUCTS,J7500\nINVESTMEN,AFFILIATED MANAGERS GROUP,F2100\nVICE PRESIDENT FOR PROGRAMS,ROCKEFELLER BROTHERS FUND,Y4000\nOLENDER & ASSOC,,K1000\nMANAGER,RADIO STATION OWNER,C2100\nCHIEF INVESTMENT OFFIC,YORK CAPITAL,F2100\nCEO,Fox Transport,Y4000\nVice President,\"M. T. S. Technologies, Inc.\",G5270\nATT,\"TALLMAN, HUDDERS AND SORRENTINO\",K1000\nSTRATEGIC REALTY ADVISORS,,F4200\nOWNER,\"GRADY-WHITE BOATS, INC.\",T8300\nManager,Organon,J1200\nCO-OWNER,JORGENSEN FARM,G1200\nChief Medical Officer,St Vincent Indianapolis Hospital (Admi,H2100\nBERNSTEIN SHUR SAW,,K1000\nPresident,\"Prairie Title Services, Inc\",F4300\nOWNER/BROKER,THE PROPERTY GROUP,Y4000\nURBAN WORKS LTD,,Y4000\nFAMILY MANAGEMENT CORP,,J7400\nMESA LABEL EXPRESS/VP / CFO,,M7000\nART DEALER,JOHN BERGRUEN GALLERY,J7400\nCORRE,COLORADO DEPT. OF CORRECTIONS,X3200\nPresident,Hutchinson Metro Center,Y4000\nEXECUTIVE,PULAMA LANAI,Y4000\nHealthcare,NSLIJ,J1200\n\"O'CONNOR SCHOOL PICTURES\",,G5240\nV P,American Sportfishing Association,E4200\nENGINEER,AMERICAN COOLING SYSTEMS L.L.C.,Y4000\nOPPERMAN HEINS & PAQUIN,,K1000\nFinancial Analyst,\"Gardner, Inc\",Y4000\nWARBO ASPHALT,,B5100\nCHAIRMAN,ALLEGHENY LUDLUM,M2100\nPHARMACIST/BUSINESS OWNER,MAGGY PHARMACY INC.,G4900\nAttorney,\"McHale, Cook & Welch\",K1000\nOWNER,\"ILT, INC.\",Y4000\nSchool Psychologist,Westtown School,H5100\nPhysician,Stark County Emergency Physicians,Y4000\nCHRISTENSON ELECTRIC,,Y4000\nConsultant,\"Humana, Inc.\",H3700\nATTORNEY,AKIN GROUP,K2000\nVICE-PRESIDENT SALES,BRAKEBUSH BROTHERS,Y4000\nEXECUTIV,LEE MEMORIAL HEALTH SYSTEM,H0000\nCOMMERCIAL REAL ESTATE BROKER,KIDDER MATHEWS/COMMERCIAL REAL ESTA,Y4000\nVP MANAGING DIRECTOR,SEABOARD CORPORATION,G2300\nCONTRACTOR ASSISTANT,CUSTOM MASONRY,B3000\nHuman Resources,PEDIATRIX MEDICAL GROUP,H1130\nSELF EMPLOYED,FRED BURROWS TRUCKING,T3100\nPRESIDENT,R. DUFFYWALL AND ASSOC,K2000\nindustrial service mgmt,DBI Services,Y4000\nReal Estate Sales,self employed,F4200\nPRESIDENT AND CEO,MONSANTO COMPANY,J6200\nCOMFORTAGE INDUSTRIES,,Y4000\nAttorney,Schmeltzer Aptaker & Shepard,K1000\nMICHAEL J VALDER PC,,Y4000\nANESTHESIOLOGIST,ANESTH CONSULT FLORENCE,H1130\nCivil Service Employee,US Federal Govt - State Dept,X3000\nPRESIDENT,BEECHINOR CATTLE FEEDING CO/PRESIDE,Y4000\nPresident,\"Namco Insurance Svcs., Inc.\",F3100\nOWNER,PASS CHARTERS,Y4000\nANESTHESIOLOGI,JEFFERSON PHYSICIANS,H1130\nMUNOCO COMPANY,,E1150\nDesigner,Philips,Y4000\nMERRIN FINANCIAL,,F0000\nATTORNEY,CUNA MUTUAL,F3100\nKDK TRAINING EMPL & BUS SERV,,Y4000\nPresident / Ceo,GG Greene Enterprises,Y4000\nLawyer,First Wind,Y4000\nEXECUTIVE,CLARKS BUILDING AND DECORATING CENTER,B5000\nOFFICE MANAGER,K & F CONSTRUCTION,B1500\nLAN,,Y4000\nOWNER,MENA TITLE CO,F4300\nBoard Member,Harrison Medical Center,H2100\nIRIS COMM,,Y4000\nLaw professor. Entre,Quinnipiac U & Self-employed,J1200\nAT,DICKENSON MACKAMAN TYLER & HAGEN,Y4000\nWESTBROOK MFG,,Y4000\nFILM EDITOR,SEISMIC PRODUCTIONS,Y4000\nSELF/INVESTER/HOMEMAKER,,J1100\nOptomitrist,Enfield Eyecare Assoc,Y4000\nSPORTSWRITER,SPORTS ILLUSTRATED,C1100\nPRESIDENT,WINTEC,Y4000\nPRESIDENT,RTN,Y4000\nExecutive,Polo Ralph Lauren,Y4000\nFLEMING-ALTOONA DIVISION,,G4300\nSALES,HARRINGTON SURGICAL SUPPLY,Y4000\nEXECUTIVE,REGIONAL EDUCATIONAL TELEVISION NETWOR,C2000\nPresident,Susan G Komen for the Cure,JH100\nMGR. WOOD FIN,D. REIS FURNITURE MFG,Y4000\nELECTRONIC ENGINEER,,X3000\nlawyer,Not employed,X1200\nPRESID,CAPITAL TRAILWAYS OF ALABAMA,T4100\nANESTHESIOLOGIST,PHYSICIAN ANESTH SVCS,H1130\nVICE PRESIDENT,UST PUBLICE AFFAIRS,A1300\nDirector of Federal,\"Barbour Griffith & Rogers, Inc\",K2000\nRUSSELL B STARBIRD PC,,Y4000\nAdministration,Dims PC,Y4000\nSoles Directors,\"Morningstar, Inc\",Y4000\nOWNER,VALLEY ISLE LOAN LLC/OWNER,J1200\nINVESTOR,GOLDMAN SACHS & CO.,JE300\nCHAIRMAN & CEO,J. P. MORGAN CHASE,J1100\nPresident,Asset Services Inc,Y4000\nSIDNEY KIMMEL CANC,,H1100\nCONSTRUCTION,MENIT,Y4000\nSONNENSCHIEN NATH & ROSENT,ATTORNEY,K1000\nPresident,EDF Resource Capital,F0000\nPRESIDENT,FREDERICK E PENN INSURANCE AGENCY INC,Y4000\nCONDUIT TOTAL LISTE,HUSCH BLACKWELL,K1000\nCEO,MatlinPatterson Global Advisers,F2600\nCUSTOMER SERVICE REP,AT&T MOBILITY,Z9500\nBUSINESS REPRESENTATIVE,MID SOUTH CARPENTERS REGIONAL COUNCIL,LB100\nOwner--Public Relations,George Arzt Communications Inc,G5210\nCUSTOM POLY-BAG,,Y4000\nCPA,SELF EMPLOYED CPA,F5100\nAC,COLLEY SHROYER & ABRAHAM CO. LPA,Y4000\nBusiness Manager,Berlin Corporation dba CT Beverage Mar,Y4000\nSVP  Affiliate Relations Business Affa,Oxygen Media,C2200\nEXECUTIVE,PHIBRO ANIMAL HEALTH CORP,Z9500\nAttorney,Matsubara Kotake ALC,K1000\nKIGER MANAGEMENT LLC,,Y4000\nFILM PRO,ANGEL ARK PRODUCTIONS INC.,C2400\nExecutive,Laird Plastics,Y4000\nPRESIDENT MMD,Merck & Co,H4300\n\"CLEMONS, CASHO & HUMPHRY\",,Y4000\nVICE PRESIDENT,ATU INTERNATIONAL,LT000\nC & A SHOE CORPORATION,,Y4000\nPrincipal,Mehlman Vogel Castagnetti,K2000\nBALDWIN SALES INC,,Y4000\nOWNER,K AND M EQUIPMENT COMPANY,Y4000\nFLIGHT,FLIGHT SAFETY INTERNATIONAL,T1600\nMARKETING MANAGER,VERIZON,C4100\n\"WP Commercial, Inc\",,F4200\nexecutive VP & CEO,Hartford,F3100\nRegistered Nurse,Metrohealth,J1200\nController,\"Associated Pool Builders, Inc\",Y4000\nIEI ENTERPRISES,,Y4000\nMENDELSOHN OSERAN ET AL,,Y4000\nEducator / Self Empl,\"Alpha Learning Systems, Inc.\",Y4000\nCHIEF OF OPERATIONS,BAY RADIOLOGY,H1130\n\"PRESIDENT, SERVICES\",KBR,B4000\nPresident,Central Ohio Workforce Investment Corp,Y4000\nMGR III MECHANICAL,RAYTHEON COMPANY,D3000\nCHARLES CRAFT INC,,M8000\nWriter/Editor,AOL Time Warner,C2000\n\"C.C. MARINE SVC, INC\",,Y4000\nNEUROLOGIST,MEMORIAL HERMANN HEALTHCARE SYSTEM,Y4000\nPresident,Scholastic Realty LLC,F4200\nGovernment Relations Advisor,King &  Spaulding,K1000\nVP/ DIRECTOR,CITY FIRST MORTGAGE,F4600\nPublishing,RLA/Thompson Corp,Y4000\nATTORNEY,\"CHILDREN'S MERCY FAMILY\",J1200\nVP,COMPLETE PAYROLL PROCESSING,F5500\nATTORNEY,MCGUINOWOUSS,K1000\nRUSSELL CORP INC,,M3100\nDirector of Product Marketing,De Beers,Y4000\nmanagement,\"Harvard Enterprises, Inc.\",Y4000\nAPAC - BALLENGER PAVING COMPANY,,B1000\nChief Financial Officer,Regency Centers Corporation,F4100\nGraphic Artist,Sunset South,J1200\nRegistered Nurse,Memorial Medical Center,H2100\nPRESIDENT,SPECTRUM CONTROLS,Y4000\nERIC ROBERTO BATRES MEDICAL CORPORA,,Y4000\nA,\"PATRICK MALONE & ASSOCIATES, P.C.\",K1000\nTRADER,CANTOR COMMERCIAL REAL ESTATE,F4000\nUSAF INSTRUCTOR PILOT,USAF,X5000\nEXECUTIVE,EAGLE STAINLESS TUBE & FAB INC,Y4000\nTreasury,Axa Equitable,F3100\nELECTRONICS TECH,SELF,J1200\nPVA,BOONE CO PVA,Y4000\nRETIRED,MAXIR CORP,X1200\nDEAN WHITTER HOME,STOCK BROKER NONE,J5100\nCAPITOL CITY GROUP LLC,,K2000\nPRESIDENT,\"SENECA ENVIRONMENTAL PRODUCTS, INC.\",Y4000\nINTERIOR DESIGNS II,,Y4000\nROBERT L LAWRENCE MD,,H1100\nENDICOTT & ASSOCIATES,,B4000\nINSURANCE AGENT,RICH & CARTMILL,F3100\nCORBIN RESTAURANTS INC,,G2900\nMANAGING DIRECTOR,RR DONNELLY GLOBAL REAL ESTATE,F4000\nRealEstate Syndication,WLA Investments Inc,F7000\nLong Term Disability/Leave of Absense,Accenture,G5270\nAccountant,Pike Industries,B5100\nDEVELOPER,FL ROCK AND SAND,Y4000\nINTERNET EXECUTIVE,REVOLUTION HEALTH,Y4000\nLAWYER - REGIONAL V P,ACLI,F3300\nelectrician,Powertech,B3200\nCeo,Enpirion,Y4000\nWeb Developer,Magellan Press,Y4000\n\"Executive, Venture C\",\"Farallen Capital Management, LLC\",F2700\nATTORNEY,\"PIEDMONT HEALTHCARE, INC\",H3000\nDirector of Workforc,CDF,Y4000\nCHARLESTON AREA MEDICAL CENTER,,H1100\nInvestments,Morgan stanley,F2300\nHOSPITAL FINANCE,H.C.A. INTERNATIONAL LTD.,Y4000\nPRESIDENT/OWNER,JAMESTOWN METAL MARINE SALES/PRESID,M2000\nINTERNAL CONTROL SYSTEMS,,Y4000\nOWNER,MILLER MILLING CO.,A1500\nATTORNEY,BITZIN SUMBERG,K1000\n\"SYBERG'S\",,Y4000\nATTORNEY,BREAUD & LEMOINE PLC,Y4000\nAnalyst,The Motley Fool,F5000\nPresident,South Stream Seafoods,G2000\nRAB HOLDINGS INC,,J5100\nPresident,Thompson Realty,F4200\nPASTOR/PROFESSOR,ELCA/SIENA HEIGHTS UNIVERSITY,Y4000\nMEL-O-CREAM,,Y4000\nWESTERN POLYMER,,Y4000\nOwner,Applied Content Tech LLC,Y4000\nGENERAL ELECTRIC CO,,X3000\nATTORNEY,\"KIRBY MCINERNEY, LLP\",K1100\nPRESIDENT,ABILITY MEDICAL SUPPLY,Y4000\nVICE PRESIDENT ALLI,TREENO SOFTWARE,C5120\nREA DESIGN TECHNOLOGIES,,Y4000\nSALES,\"JUBELA, INC\",T2400\nCattle Rancher,Gordon Ranch; Inc.,G1200\nGeneral Counsel,South Jersey Healthcare,H2100\nInsurance,Ubh,Y4000\nSOFTWARE ENGI,SMITHSONIAN INSTITUTE,C5120\nJUDGE,NEW YORK CITY,Z9500\nLAWYER,THE NORTHWESTERN MUTUAL LIFE INSURANCE,K1000\nTRADER,FLORTIS CLEARING AMERICA,J1100\nT A C COURT SYSTEMS INC,,Y4000\nGORDON FEINBLATT ROTHMAN HOFFBERGER,,J5100\nSVP Operations,Life Care Services LLC,H2200\nElectric Company Emp,Aquila Inc,B2000\nPresident,U. S. Maglev Development Corp.,T5200\nREAL ESTATE AGENT,BEER WELLS,Y4000\nMath Learning Specia,Palm Beach County Community College,H5100\nPASADENA COMMUNITY COLLEGE,,H5100\nMANAGER OF BU,DUNCAN OIL PROPERTIES,J9000\nEXECUTIVE,CASS COUNTY EXON CO.,E1170\nPhysician,North Shore LIJ Health System,H2100\nTISHMAN -SEYER PROPERTIES,,F4000\nENTREPRENEUR,JAY HARRIS CONSULTING,Y4000\nRETA,NEW BALANCE ATHLETIC SHOE INC.,J1100\nPresident / C.E.O.,Carlson Companies,T9000\nSCIENTIST,WASHINGTON UNIVERSITY/SCIENTIST,H5100\nCONTROLLER / VICE PRESIDENT,STAMPS.COM,C5140\nVP/TREASURER,GLOUCESTER GRAPHICS INC.,C1300\nDEYKEMA GOSSETT P L L C,,K1000\nPRECISION VALVE CORP.,,M1500\nNW ARK CARDIOLOGY CLINIC,,H1130\nMD,Western Washington Medical Group,Y4000\nYELCOT TEL. CO,,C4100\n,INTERCARE COMMUNITY HEALTH NETWORK,Y4000\nEXECUTIVE,KLEENCO CORPORATION,Y4000\nWUNDERMAN BATO & JOHNSON,,G5270\nCONTIN-U-CARE HOME HEALTH AGENCY,,H3100\nSENIOR VICE PRESIDENT & GENERAL COUNSE,Northeast Utilities Service Co,E1620\nATTORNEY,\"PARKER, POE, ADAMS\",K1000\nUNITED MERCANTILE,,K1000\nSVP,BANC ONE LEASING CORPORATION,G5300\nManager,Texas Dept of Aging & Disability Serv,X3000\nPresident,Schneider Logistics,Y4000\nCONSOLIDATION SVCS INC,,Y4000\nSCHIFFMAN HOZIER,,Y4000\nPACIFIC PIONEER INSURANCE,,F3100\nATTORNEY,WIEDMAN VAZZANA CORCORAN,Y4000\nEXEC,CHESWIST INVESTMENT,F7000\nTIPTON GROUP,,Y4000\nPresident,Community Bankers of Washington,F1100\nCFO,HARRIS GROUP,D3000\nPARAMOUNT CAPITOL,,H4500\nHOMESTAR FINANCIAL GROUP,,F1000\nCHEMICAL INDUSTRY COUNCIL OF N J,,M1000\nARKANSAS DIST COMPANY,,Y4000\nInformation Requested,Mountain Land Title,F4300\nSoftware,Mspot,Y4000\nHOWEY ENTERPRISES INC,,Y4000\nATTORNEY,ONDCP,Y4000\nPastor,The Potters House Christian Center,Y4000\nINFO REQUESTED,OCALA LAND DEVELOPMENT IN,Y4000\nMEDIA TECHNICIAN,TESC,Y4000\nEDUCATIONAL CONSULTANT,NONE,H5000\nPRESIDENT AN,GRYNBERG PETROLEUM CO.,E1120\nretail manager,Target Corp,G4300\nNORTH CAROLINA TRUST,,Y4000\nPRES,OSPREY BUILDING MATERIALS INC.,Y4000\nDISTRICT FUNDRAISER,CHESBRO FOR ASSEMBLY 2012,Y4000\nfinance,Mimosa Asset Management,F2100\nFINANCIAL,APPLESEED CORPORATION,Y4000\nHustlin,The Game,Y4000\nManager,Webster County Water District,Y4000\nFINANCIAL CONSULTANT,THRIVENT FINANCIAL,F0000\nPresident,Wakulla Bank,Y4000\nMAINTENANCE,\"BLESSEY MARINE SERVICES, INC.\",T6200\nHMR CAPITAL MANAGEMENT,,Y4000\nPastor,Prince Of Peace Catholic Chrch,Y4000\nExecutive Vice Presi,Morgan Murphy Stations,C2100\nTHE PRECEDENT COS,,F4600\nCEO,GARNER INDUSTRIES,Y4000\nRET INVEST,SELF EMPLOYED,Y4000\nRESEARCH ASSOCIATE,USM,Y4000\nRESALE BUSINESSMAN,,G2500\nHEARD GOGGAN BLAIR AND WILLIAMS,,K1000\nMICROSOFT,,K2000\nOWNER,ANDREWS VAN LINES,T3100\nvisionary,lfiinternational.com,C5140\nInsurance Agent,Evergreen,Y4000\nCO-OWNER,AROUND THE CORNER GALLERY,Y4000\nCEO,VIDEO GAME TECHNOLOGIES,C5130\nBusiness Consultant,\"Bluesky Professional Services Group, L\",Y4000\nOWNER,NORTH RIVER OIL CORPORATION,Y4000\nATTORNEY,BRANDEWIE LAW,K1000\nHEAD OF BREEDING TRAIT DEVP,BAYER CORPORATION,H4300\nOil and Gas Exploration,Thomas Development,Y4000\nConsultant,Triangle,Y4000\nATTORNEY,\"HORN, AYLWARD & BANDY, LLC\",Y4000\nVICE PRESIDENT,RC HUBBARD LLC,Y4000\nCONSULTA,\"HIRSCHBERG STRATEGIES, INC\",Y4000\nPHYSICIAN,PARK PLAZA ANESTHESIOLOGY,H1100\nLawyer,ST & B,J1200\nVice President,Trans Chemical,J5100\nVICE PRESIDENT,LEONARD S FIORE INC,B1000\nAttorney,\"Hansen, Jacobson & Teller\",K1000\nASSOCIATION EXECUTIVE,WASHINGTON ASSOC OF REALTORS,Z9500\nRAYMOND & RAYMOND INC,,Y4000\nEXECUTIVE RESORTS,,Y4000\nAMENT LAW FIRM,,K1000\nCEO,Transdel Pharmaceuticals,H4300\nExecutive,Arent Fox,K1000\nSecretary,Byrns,J1200\nFINANCE,APOLLO CAPITAL MANAGEMENT,F2100\nOWER,SELF-EMPLOYED,Y4000\nLEHR BROS INC,,F2100\nIT PROFESSIONAL,UW MADISON,Y4000\nPORTLAND PACKAGE EXPRES,,Y4000\nCEO,CONTROL EQUITY,Z9500\nCEO,\"SKOGEN'S FESTIVAL FOODS\",Y4000\nOffice Administrator,Arbor Foot Health Center,H0000\nSLOANE MOVING,,T3100\nCEO,STIEG & ASSOCIATES INSURANCE INC.,T3100\nJeweler,Liza Gold Corporation,J5200\nVIP GROUP,,T9400\nCONTRACTOR,\"PYRAMID CONSUTING, INC\",Z9500\nLEON C SUNSTEIN INC,,F2100\nManager,Soch Industries,Y4000\nNOTARY PUBLIC,MEXYCA LEGAL SERVICES,Y4000\nCEO,BANK OF NEW YORK MELLON/CEO,F2100\nMANAGER,DOUGLAS JEEP INC,Y4000\nAttorney,\"Emison & Emison, PC\",K1000\nEXECUTIVE,BOSTON POWER/EXECUTIVE,M2300\nDevelopment,Stanford University,H5100\nGENERAL MANAGER,KZWA 104.9-FM,Y4000\nFOLSOM LAKE FORD / TOYOTA/CAR DEALE,,T2300\nGEOPHYSICIST,SYNERGETICS INC.,Y4000\nsurgeon,alabama orthopedic clinic,H1130\nLAWYER,US FEDERAL MARITIME COMMISSION,Y4000\nExecutive Vice President,Jamail & Smith Construction,B1500\nBUILDER,OLYMPUS HOMES,B2000\nEXEC,MARTIN MARIETTA MATERIALS,B5100\nHONDA CITY,,T2300\nGeneral Manager,\"Odom Corp., The <Joel Kadarauch>\",G2850\nILLINOIS CIVIC JUSTICE LE,,Y4000\nFisherman,not,Y2000\nsenior financial adv,LaBate Holdings LLC,Y4000\nCEO,HI/FN Inc.,Y4000\nAttorney,\"Steve Davis Consulting, Inc.\",Y4000\nBuilder / Contractor,Self-Employed,B1500\nVice President,Halliburton Energy Services,E1150\nVice Chairman,Stabler Companies,Y4000\nSPEECH-LANGUAGE PATHOLOGIST  & DOCTORA,SELF-EMPLOYED,H1130\nEXECUTIVE,KENNEDY WILSON,F4000\nCEO,Dunnette Group,H1110\n\"VP/GM, QUINCY, MA\",\"COMCAST OF MASSACHUSETTS I,INC\",C2200\nSENIOR DIRECTOR,HYPERION,Y4000\nATTORNEY,CARMON & CARMON/ATTORNEY,Y4000\nPRUDENTIAL FINANCIAL/FINANCE/ACCOUN,,F3300\nPUBLIC AFFAIRS,DCI GROUP,K2000\nRETIRED TEACHER,,J7150\nprivate investor,Development Services,J1100\nState Rep.,State of Idaho,X3000\nCFO,HALLIE MANAGEMENT,Y4000\nPRESIDENT & CEO,RENAGADE,Y4000\nTECH MANAGE SERVICES CRP,,Y4000\nConsultant,\"IEM, Inc\",Y4000\nPermaculturist,Self employed,Y4000\nVICE PRESIDENT,HEDRICK BROTHERS,B1000\n\"GRAPHIC ARTIST, STUD\",Self employed,G0000\nBUSINESS,NATIONAL DISTRIBUTIES INC.,Y4000\nLOBBYIST,GOVERNMENT RELATIONS INC.,K2000\nDEVON ENERGY,PRESIDENT,E1150\nFEDERAL EXPRESS,,\n\"Davis Brody Bond, LLP\",,Y4000\nMAYOR,CITY OF ROANOKE/MAYOR,X3000\nPHYSICIAN,WAYNE STATE UNIV,H1130\nPARTNER,\"WISNIEWSKI & ASSOCIATES, LLC\",Y4000\nInformation Requeste,\"Sam & Harry's\",Y4000\nPresident,Atlantic Inc,C0000\nCOORDINATO,COLUMBIA BUSINESS SCHOOL,H5200\nPC CORP. MGMT. GROUP LP,,Y4000\nENGINEER,WILLIAMS MIDSTREAM,Y4000\nDIR. EXTERNAL AFFAIRS,E.ON,Y4000\nATTORNEY AT LAW,\"JOSEPH W. ROGUL & ASSOCIATES, LTD.\",Y4000\nDESIGN BUSINESS,SELF,Y3000\nDIRECTOR LAND PROJECT,MURRAY ENERGY,E1210\nSenior Exhibition &,\"Lebhar-Friedman, Inc.\",C1100\nTeacher,Bellmore-merrick Central High School D,X3500\nPublic affairs,American Red Cross,H6000\nCHAIRMAN,\"PLC INVESTMENTS, INC.\",F2600\nDEPUTY SECRETA,STATE OF CONNECTICUT,X3000\nVEGETABLE WHOLESALERS,VALDE FARMS,A1000\nOWNER,SLUSH PUPPIE PRODUCTS,Y4000\nLANG FINANCIAL SERVICES,,F0000\nVice President For Medical Affairs,Summit Health/Chambersburg Hospital,H2100\nATTO,SCHWARTZ JUNELL GREENBERG & OA,K1000\n\"Evp, Develop & Prod Ops & Cmo\",\"Genentech, Inc.\",H4500\nExecutive,TCF National Bank,F1100\n\"Director, Federal Af\",PNM,E1620\nPEST,5 STAR TERMITE & PEST CONTROL,G5700\nINFO REQUESTED,MILLENNIUM LEASING AND FNCL SVC INC,Y4000\nATTORNEY,\"ROBINSON & COIE, LLP\",K1000\nVice President,Nelix Electric,B3200\nCATHOLIC UNIVERSITY,,J7400\nTeacher,Laney Community Ccollege,H5100\nL A BOARD OF PUBLIC WORKS,,J1200\nSA,WESTBROOK CONCRETE BLOCK COMPANY,B5100\nACCOUNTANT,BLUTH & ZUKOFSKY PC,F5100\nCONSULTANT,EMAX PARTNERS LLC,Z9500\nREAL ESTATE BROKER,BURNETTE REAL ESTATE SALES &MG/REAL,Z9500\nMIDDLE EAST RUG CO,,Y4000\nNW SURG SPECIALISTS,,H1130\nART MUSEUM DIRECTOR,UNC - GREENSBORO,H5100\nDIAGNOSTIC RADIOLOGIST,\"DOCTORS GROOVER, CHRISTIE, & MERITT\",H1130\nExecutive,Menasha Corp.,M7000\nCONSULTANT,MASTROMONACO CONSULTING INC,Y4000\nVP,Ivy Tech,H5100\nBuilder,Pierce Flooring,B2000\nVice President,M&I Marshall & Ilsley Bank,F1000\nBENOIT & ASSOCIATES,,Y4000\nCOUSINS PROPERTIES,,F4000\nAttorney,Roney & Labinger LLP,Y4000\nVice President,Ki Spa Salon Llc,Y4000\nPresident,Jennifer Borislow Ins Agncy,F3300\nPOLICY CONSULTANT,STAND FOR CHILDREN,K1000\nMO,\"THE CARROLL MORTGAGE GROUP, INC.\",F4600\nELECTRICIAN,COMPUTER ELECTRIC,Y4000\nCHAI,FIVE STATES ENERGY COMPANY LLC,J1100\nSOUTHERN UNION GAS CO,,E1100\nARTIST/BUILDER,SELF-EMPLOYED,X0000\nFarm Manager,\"Hertz Farm Management, Inc\",A1000\nCOUNSE,LAND TITLE GUARANTEE COMPANY,F4300\n\"BOSCOV'S DEPARTMENT STORES\",,G4300\nACTRESS,SINGER,C2600\nSALESMAN,\"MARCO GROUP, INC.\",F4200\nWATERTON RESIDENTIAL LLC,EXECUTIVE VICE PRESIDENT,F4500\nCEO,\"Midway Games, Inc\",C5120\nVP OPERATIONS,COBBLESTONE HOMES,B2000\nASSOCIATION EXEC,ALLIANCE OF AUTOMOBILE MANUFACTURERS,T2100\nEQUITY INVESTMENTS INC,,F3100\nGREAT EATERN SUN,,Y4000\nManager,SCEA,Y4000\nPRESIDENT & CEO,T-Y GROUP,Y4000\nLAWYER,BAMBERGER LAW FIRM,K1000\nCEO,Fusion Telecommunications,Y4000\nCHILDRENS HOSP OF PHILADELPHIA,,H1130\nexecutive,Scotch Lumber,A5000\nTAX ANALYST,ERNST & YOUNG,F5100\nAEXIOM CORPORATION,,C5130\nV.P. Human Resources,Greystone Power Corp.,E1600\nPENGUIN AIR CONDITIONIN,,B3400\nOWNER,PFAFF ELECTRIC,Y4000\nEXECUTIVE,VSP,F3200\nSmall Business Owner,\"Leisure Time Awards, Llc\",Y4000\nZHN,,B3000\nConsultant,\"Adams, Nash, Haskell & Sheridan\",Y4000\nattorney,anzellotti sperling pazol and small co,K1000\nBusiness Executive,\"TransAria, Inc\",J1200\nWILLIAM E WATSON & ASSOCIATES,,K1000\nGOVERNMENT AFFAIRS,APPLE,J1200\nHEALTHCARE PRACTITION,SELF-EMPLOYED,Y4000\nAttorney,Denardis McCandles & Mullen,K1000\nDOCTOR,CEDARS SINAI,J1200\nPresident,Associates in Radiology,H1130\nSr Vice President-Development,Vitas,H3100\n\"DIRECTIO, TECHNICAL OPERATIONS\",REMEDY HEALTH MEDIA,Y4000\nFINANCE MANAGER,VELOTECH; INC.,J1200\nDirector of Academic Assessment,Ivy Tech Community College,H5100\nOFFICE MANAGER,\"BUILDER'S WEST\",Y4000\nOrganization Preside,Council for Opportunity in Edu,X4000\nPRESIDENT,RANDD ASSOCIATES,Y4000\nPRESIDENT & CEO,IMPEL STRATEGIES LLC,K2000\nOFFICE MANGER,HOME SPECIALIST LLC,E1500\nOWNER,\"SUGARBAKER'S HOME FASHIONS\",Y4000\nKNOX COUNTY HOUSING AUTHORITY,,Y4000\nORANGE COUNTY SCHOOL,,X3000\nCPA,\"QUICK & MCFARLIN, P.C.\",Y4000\nOwner,Moe Agency Inc.,Y4000\nPresident,WMW Co,Y4000\nSTONE TAX SERVICE,,F5300\nSelf Employed Business,Endless Summer Tanning C,Y4000\nGREENE BROILLET PANISH WHEELER,,K1100\nPRINCIPAL,KC FUTURES LLC,Y4000\nDirector Of Engineer,Kla-Tencor,C5000\nOwner,Jims Well Service,Y4000\nATTORNEY,HARRISON LAW ASSOCIATES,K1000\nCHAIRMAN & CE,JP MORGAN CHASE & CO.,F1100\nPRODUCTIO,GUARDIAN INDUSTRIES CORP.,M7200\nPRESIDENT,DAIRY ENTERPRISES INC.,A2000\nPHYSICIAN,UNIVERSITY OF ALABAMA-BIRMINGHAM ANES.,H1130\nGOVERNMENT RELATIONS CONSULTING,LIBERTY SQUARE,K2000\nSELF,LIBERTY CONSULTING,J1100\n\"VP FINANCE, FLORIDA POWER & LI\",Florida Power & Light Company,E1600\nCPA,\"MOHR, DAVIDOW VENTURES\",F2500\nGARY GREENE BETTER HOMES & GARDENS,,F4200\nMoney Manager/Hedge Fund,AHAB Capital Management Inc,F0000\nBusiness Owner,Talking Taco Music,Y4000\n\"JIM'S SPAGHETTI HOUSE\",,Y4000\nPresident,E. T. Dayton Inc. dba Dayton Ritz & Os,F3100\nATTORNEY,STOKES LAWRENCE,Y4000\nNORTH BAY HEALTH CENTER,,Y4000\nGENERAL C,SURETEC INSURANCE COMPANY,F3100\nCONTRACTOR,ARTISTIC BATH AND TILE.,Y4000\nUniv. Professor,Antioch University,H5100\nChef,Itsys Gourmet,J1200\nSURGEON,SURGICAL ASSOOCIATES,H1130\nHAUN TRUCK BROKERS,,T3100\nATTORNEY,RPNA,Y4000\nFARMER,SWANSON PICKLE CO INC,Y4000\nKLUTZNICK INVESTMENTS,,F4100\nMANAGEMENT,SCHALLER TOOL & DIE COMPANY,J1100\nOWNER/DEALER,RODMAN FORD,T2300\nOffice Manager,Investment Service Center,Y4000\nChairman & C.E.O.,FIDELITY NATIONAL FINANCIAL,J1100\nBUSSINESSMAN,MIDWEST OIL,Y4000\nWESTERN SHUTTERS,,Y4000\nREADY MIX PRODUCTION,CCR,Y4000\n,SULLIVAN MOUNTJOY STAINBACK & MILL,K1000\ncivil engineer,Clough Harbour & Associates,Y4000\nTEACHER,SCOTTSBLUFF PUBLIC SCHOOLS,Z9500\nPlanning Consultant,SELF,G5200\nMarketing,Two West Inc,G5280\nDIRECTOR,STRIPED ROOF MGMT,B3000\nBROOKHAVEN NATIONAL,,G5200\nNETWORK SERVICES,AMERICAN BANKERS ASSOCIATION,F1100\nSCHIMPLER CORRADINO ASSOCIATES,,B4000\nVP EDITORIAL DIRECTOR,SCHOLASTIC,Y4000\nOCEAN ROC HOTEL,,T9100\nREALTOR,SUBURBAN REALTY,Z9500\nCIRCUS CIRCUS/VICE PRESIDENT/GENERA,,G6500\nMANAGEMENT,LEHMAN-ROBERTS COMPANY,Y4000\nPOLITICAL CONSULTANT,SIMONS POLITICAL GROUP,JD100\nPRINCIPAL,TRADETECH ENERGY,E1000\nOwner,Slobeds,Y4000\nOwner/Manager,Nex-Solutions,Y4000\nSelf Inployed,Self employed,Y4000\nComputer Systems,Nycta,Y4000\nNURSE,,J5100\nOFFICE MANAGER,FALMOUTH DENTAL HEALTH,H1400\nHAWKINS INVESTMENT GROUP,,Y4000\n,SINGER LEWAK GREENBAUM & GOLDSTEIN,Y4000\nKOREAN SUNDAY NEWS,,Y4000\nINVESTMEN,ZIFF BROTHERS INVESTMENTS,F2100\nAttorney,Lewis Johs,Y4000\nRegulatory,West Texas Oil Reports,Y4000\nEXECUTIVE,DEAN BLANCHARD SEAFOOD,G2350\nPRESIDENT AND CEO,\"QUINCY, INC./PRESIDENT AND CEO\",C2100\nBusiness Owner,\"California Builder Distributors, Inc\",Y4000\nATTORNEY,\"HONIGMAN, MILLER, SCHWARTZ, & COHN LLP\",K1200\nASSESSMENT & DATA COORDINATOR,DENVER PUBLIC SCHOOLS,X3500\nWRIGHT ABSHIRE ATTORNEYS,,K1000\nGOVERNMENT RELATIONS,\"ICEKS ENRIGHT GROUP, INC.\",K2000\ncommissioner,NYS Liquor Authority,X3000\nCORDOBA CORP,,G5200\nHealth Care consulta,Self-Employed,H0000\nGm,Krc Safety,Y4000\nphysician,\"Brigham and Women's Hospital\",H1100\nLOGISTICS,NASA,X3000\nWIGGINS FOR CONGRESS,,Y4000\nEDDIE PATTERSON FOR CONGRESS,,J1200\nINSURANCE SA,AMERIPLAN BENEFIT CORP,Y4000\nDIRE,HORIZON BAY SENIOR COMMUNITIES,H2200\nConsultant,Schneider Consulting Group,Y4000\nLOBBYIST,COPPER STATE CONSULTING GROUP,Z9500\nVENTURE CAPITAL,INMAN INVESTMENT MANAGEMENT,F2100\nEXECUTIVE,DYNAMIC SIGNAL,Y4000\nSalesman,Noble Coffee Roasters,G2600\nAdman,\"Ames Scullin O'haire\",Y4000\nRENO CAVANAUGH & HORNIG,,Y4000\nAttorney,Devereaux Stokes & Nolan PC,K1000\nTRADE OIL CO,,E1170\nC.P.A.,CLIFTON LARSON ALLEN,F5100\nPRES/CEO,\"LEKTRO, INC./PRES/CEO\",M2300\nLawyer,Orrick Harrington & Sutcliffe,K1000\n\"WHITE, FINE VERVILLE\",,K1000\nVICE PRESIDENT,ASSOC OF PUBLIC AND LAND-GRANT UNIVERS,Z9500\nCPA,NEW PROCESS STEEL,M2100\nAMERICAN AGENCY INC./SALES/OWNER,,Y4000\nCREDIR AGRICOLE,,Y4000\nEDWARDS INDUSTRIES SALES,,Y4000\nExecutive,Instel Power Products,Y4000\nAssociation Executive,Icba/Nm,Y4000\nCASINO SUPERVISOR,CACUS CRACUS INC.,Y4000\nPriv Investment Co,G Baldwin & Co,Y4000\nINFO REQUESTED,Desert Valley Nurses Inc.,Y4000\nBUILDING CONTRACTOR,TODD CONSTRUCTION INC.,B1500\nPresident and CFO,\"Tier1, Inc\",Y4000\nSelf Employed,Bluetree Cinemas LLC,Y4000\nPLUMBING CONTRACTOR,CLOVERDALE PLUMBING,B3400\nN/A,SELF,F4200\nQUALITY CONTROL MAN,\"ENERGIZER, INC.\",Y4000\nSURGEON,SUBURBAN ORTHODONTICS,H1130\nEXECUTIVE VICE PRESIDENT,HARTFORD STEAM BOILER INSPECTION & INS,F3100\nALLIANCE RESOURCE MGMT GP LLC,,E1210\nUJA FED OF GTR WASHINGTON,,Y4000\nBiochemist,University of Pittsburgh School of Med,H5100\nDEALER MART SERVICES/PRESIDENT/OWNE,,Y4000\nCHEMIST,VICHEM,Y4000\nPhysician / Entrepeneur,Docsite,Y4000\nR K CHEVROLET INC,,T2300\nCONSULTANT,\"DAIN RAUSCHER, INC.\",F2100\nCO-PRESIDENT,DISNEY,C2000\nA-OK MOVING & STORAGE,,T3100\nCO-OWNER,\"CLASSIC GRAPHICS, INC.\",C1300\nMANAGER,OHIO DEPT. OF CORRECTIONS,X3200\nConstruction,\"FRAMECON, INC.\",Y4000\nSALES EXECUTIVE,\"CHALLENGER, GRAY & CHRISTMAS, INC.\",Y4000\nCHICAGO METALLIC,,G2100\nCox Regional VP/GM,KRAV-FM,C2100\nINVESTMENT ANALYST,CAPITAL RESEARCH & MANAGEMENT,F2100\nPHYSICIAN,SOUTH DAKOTA HUMAN SERVICES CENTER,Y4000\nKARR IRVINE & RHODES,,Y4000\nOwner,J & S Trophy Hunts Inc.,Y4000\nDDSCO I,BB&T,F1100\nNEWPORT APPRAISAL GROUP LLC,,F4700\nBUSINESS AND HEALTH CONSULTANT,SELF-EMPLOYED,Y4000\nALLENTOWN CEMENT CO,,B5100\nKAMEROW & WEINTRAUB,,Y4000\nGeneral Partner,Youngblood Ltd.,Y4000\nBusiness Owner,The Weaber Companies,B5200\nBY-PRODUCTS BROKER,SELF-EMPLOYED,Y4000\nG M MAJMUNDAR PSC,,Y4000\nCHAVEZ BAIL BONDS,,G5000\nProfessor,NNU,H5100\nATTORNEY,SNYDER KILEY TOOHEY ETAL,K1000\nREO A DALY,,J6200\nMla,Senator John Ensign,Y4000\nPRESIDENT,ARES SYSTEM GROUP,Y4000\nCeo,Loanmax.Com,C5140\nBRODER WEBB ET AL,,K1000\nNAZARETH NATIONAL BANK AND TRUST CO,,F1100\nBUSINESS MANAGER,\"BIGELOW ADVISORS, LLC\",Y4000\nATTORNEY,RIDDICK & ASSOCIATES,Y4000\nFRAME WAREHOUSE,,Y4000\nSELF,AMERICAN POOLPLAYERS ASSOC.IN,Y4000\nUS Property Professionals LLC,,Z1200\nDirector,FNB Corporation,F1100\nSENIOR VICE PRESIDENT,\"AUTONATION CORP. MGMT., LLC\",T2300\nTAYLOR BLD CORP,,Y4000\nZEN-NOH GRAIN CORPORATION,,Y4000\nGENERAL CONTRACTOR,MCM CORPORATION,F3300\nSTATE STREET GLOBAL,,Y4000\nattorney,Kavinoky & Cook,K1000\nAttorney,\"Purrington, Moody, Wrol LLP\",K1000\nINFORMATION REQUESTED PER BEST EFF,HETTIG-KAHN DEVELOPMENT,Y4000\nGRACE CONSTRUCTION/PRESIDENT/ OWNER,,B1500\nDRUMMER,PHISH INC.,Y4000\nHYPERBARIC OXYGENTECH./EDITOR/WRITER,WHOLE-BODY MEDICINE,Y4000\nNURSE PRACTITIONER,WASHINGTON COUNTY HHS,Y4000\nCFO,LOEWS CORPORATION,F3400\nSales,Mapco inc,Y4000\nPHYSIC,H. LEE MOFFITT CANCER CENTER,H2100\nAttorney,Caron Colven Robison & Shafton PS,K1000\nnot employed,Rockwell Collins,D2000\nATTORNEY,STEWARD HEALTH CARE LLC,H2100\nPublic Works Employe,City Of Long Beach,X3000\nN/A/WIFE,,X4100\nLawyer,State Of Connecticut,X3000\noral pathologist,\"oral pathology assoc.,inc\",H1400\nEXCHANGE BANK AND TRUST,,F1100\nATTORNEY,\"LETIZIA, AMBROSE & COHEN\",K1000\nSINGER SONG WRITER,,Y4000\nMANAGING PARTNER,THE MATHIS HARPLE GROUP,K2000\nInformation Requeste,West Publishing Company,C1100\nCFO,Trimet,F4000\nLawyer,Lehrer & Redleaf,K1000\nREGISTERED NURSE,HEALTHSTAR PHYSICIANS,H1100\nEXECUTIVE DIRECTOR,ACCA,Y4000\nKAPLAN PARTNER,,Y4000\nPRESIDENT,STEVINSON GROUP,F4200\nANESTHESIOLOGIST,ANESTHESIA GROUP EAST,H1130\nNON-PROFIT MANAGER,CITYMEALS-ON-WHEELS,Y4000\nCHAIRMAN & C.E.O,INTERNATIONAL FINANCIAL GROUP,F2300\nCLASSROOM TEACHER,TAHLEQUAH,L1300\nTEACHER,ALBANY LAW SCHOOL,H5170\nSOLE PROPRIETOR,KANSAS HOLSTEIN DAIRY/SOLE PROPRIET,A2000\narchitect,Nichols Brosch Wolf & Wurst,Y4000\nPRESIDENT,THE VOINOVICH COMP,Y4000\nAUTOMATION INTEGRATOR,NCH CONTROLS LLC,Y4000\nBUSINESS OWNER,AMERICAN FINANCIAL NETWORK,Y4000\nTHE TEMPEST CO,,Y4000\nMillwork,Agresti Construction,B1500\nEXECUTIVE,THOMAS POINT VENTURE L.P.,Y4000\nPortfolio Manager,Goldman Sacus,F2300\nC00341743,,J2200\nST CHARLES HOSPITAL,,H2100\nATTORNEY,RETIRER,F4500\nATLANTIC PROFESSIONAL,,Y4000\nROBORTS & BRYAN P A,,Y4000\nAdvisor,University of Oregon,H5100\nJ W T INC,,Y4000\nVice President,Oak Investment Partners,F2500\nHUDSON GENERAL CORPORATION,,T1600\nPYRAMIDWEST,,F4200\nSTERN HENDY PROP INC,,F4100\nSEABORAD CORP,,A3000\nSELF EMPLOYED,PERIPHERAL PARTS SUPPORT INC,Y4000\nGAINES MULLEN PANSING,,K1000\nCARTER-REESE & ASSOCIATES,,K2000\nGREENWICH ANESTHESIOLOGY,,H1130\nDON RANDALL ASSOCIATES,,K2000\nProduction Asst,Dimensional Communications,Y4000\nMILLER-DWAN MEDICAL,,H0000\nMANAGER,BLUE WAVE,Y4000\nloccomotive engineer,union pacific railroad,Z9500\nVICE PRESIDENT,FELDMAN LUMBER,J5100\nEducator,Brookdale Community College,H5100\nHASKEL LEMON CONSTRUCTION CO,,B1000\nProject Manager,AT&T,C4100\nRICHARD GAINES & ASSOC,,Y4000\nPARTNER,KCEP,Y4000\nCHIEF EXECUTIVE OF,AUTO-GAS SYSTEMS,E1100\nLABORATORY OWNER,GALBRAITH LABORATORIES INC.,Y4000\nBusiness merchant,Paris Foods Corp,Y4000\nPhysician,OB/GYN,H1130\nPRESIDENT AND,MOUNTAIRE CORPORATION,J1100\nBUSINESS,PARK CITY TOWER,Y4000\nOWNER,KING-MESA GIN,A1100\nDoctor,Larry Geisse,Y4000\nCOM ASSOCIATES,REAL,Y4000\nNEOUROSURGICAL GROUP OF CHATT,,Y4000\nREAL ESTATE,EXIT REALTY CONSULTANTS,F4200\nOWNER,B. & L. LANDSCAPE COMPANY INC.,B3600\nCOMMUNITY EDUCATION,CCBC,Y4000\nCEO,TOTAL TECHNOLOGY VENTURES,J1100\nPharmaceutical Rep,Sanofi-Aventis Pharmaceuticals,H4300\nPRESIDENT,STRATEGIC ADVOCACY,Y4000\nPARKER STEEL,,M2100\nINSTRUMENT SYSTEMS CORP,,Y4000\nCOLUMBIA UNIVERSITY,PROFESSOR,Z9500\nSelf-employed,,B4400\nPHAROLDEEST,MERRICK BLVD. PHARMACY INC.,G4900\nCORPORATE CONSULTANT,,K2000\nACCURATE TITLE,,F4300\nDavison Transport,,T3100\nRetired,Bell Helicopter Textron,T1200\nRUSSELLVILLE STEEL CO I,,M2100\nFire Fighter / EMS,Champaign Fire Dept.,L1400\nALTERNATIVE SOLUTIONS,,G5250\nCORPORATE DIRECTOR AU,SELF-EMPLOYED,G0000\nPrinciple,Lausd,X3500\nZIGNEGO,,J7120\nOwner,Louis Mc Menamy,Y4000\nPortfolio Manager,HBK,F2700\nManager Health & Safety,Potash Corporation of Saskatch,A4100\nOWNER,\"TASTY TOPPINGS, INC.\",Y4000\nMARTIN DISTRIBUTING CO,,G2850\nChairman Emeritus,HD Smith Co,Y4000\nFOXBORO WATER/SEWER BOARD/VICE CHAI,,Y4000\nPROGRAM ADMINISTRATOR,SELF-EMPLOYED,Y3000\nATTORNEY,\"THE EILAND LAW FIRM, PC\",K1100\nMEDICAL ONC PHYS SHAREHOLDER,VCS - FAIRFAX,H1130\nFIDIC & FORENSIC CONCEPTS,,B4000\nRSC FARMS,,F1100\nLIBRARIAN,MIAMI-DADE COUNTY PUBLIC LIBRARY SYSTE,X4200\nprofessor,Cornell University,Z9500\nPersonnel Assistant,Grubbs Mid Cities Nissan,T2310\nDISHER,EL AZTECO INC,Z9500\nOwner,Passion Growers,Y4000\nPA,LAW OFFICES OF JAMES G. SOKOLOVE,K1000\nLAWYER,MCCARTER,K1000\nHOME BUILDER,SIVAGE HOMES,B2000\nAttorney,\"Thomas J. Sherrer, P.C.\",Y4000\nCOUNTRY LIFE INSURANCE CO,,F3100\nINTERNET PUBLISHER,PIKENET,Y4000\nPRESIDENT,INPOWER,Y4000\nOWNER,ATLANTIC NATIONAL TRUST,F2600\nAccountant,Barry Strauss Assoc Ltd,K1000\nOwner,Ecolite Mfg Co,Y4000\n,SULLIVAN MCBRIDE HESS & YOUNGBLOOD,Y4000\nPATHOLOGIST,CLEVELAND CLINIC,H1130\nPARK ADVISORS,,Y4000\nConstruction,\"Dvr, LLC\",Y4000\nVICE PRESIDENT,CARLISLE CORP,G2900\nLARRY BROWN & ASSOCIATES,,Y4000\nINSURANCE AND INVESTM,SELF-EMPLOYED,F7000\nGIOIA PASTA CORPORATION,,Y4000\nPARK VIEW FED S,,F1200\nCLINTON ADMINISTRATI,,J1200\n\"SVP, Govt Affairs\",Atlantic Broadband,J7400\nForestry,Self employed,A5000\nEPHRATA DIAMOND SPRING WATER CO,,G2600\nDirector,Weight Watchers,G5800\nAttorney,Burlington Underwood,Y4000\nV.P. OPERATION,DELTIC TIMBER,A5000\nRetired,LIUNA,Y4000\nC & J TRANSPORTATION,,Y4000\nCOORS DISTRIBUTION COMPANY,,G2810\nVICE PRESIDENT,QUALCOM,C4300\nPRESIDENT,COMPETITIVE EDGE INC.,Y4000\nARCHETECT,LEO E DAILEY,Y4000\nPRINCIPAL,LANDMARK CONSULTING LLC,Y4000\nPRESIDENT,NEW ENGLAND MEDICAL CENTER,H2100\nTENNESSEE MEDICAL ASSN,,G0000\nTax Accountant,Tax & Financial Svcs of,F5300\nUNIVERSITY OF NOTRE DAME,PROFESSOR,H5100\nPRESIDENT,ASSOCIATION OF MEDICAL DEVICE REPROCES,Y4000\nInformation Requeste,\"NFP Consultants, Inc.\",Y4000\nPOET,SELF,J1200\nPAGE OF WESTCHESTER,,Y4000\nCommercial Realtor,Argent Commercial Real Estate Services,F4000\nPortfolio Manager,Duma Capital Partners,F0000\nREAL ESTATE,USASIA INTERNATIONAL,Y4000\nSYSTEMS ANALYST,SYRACUSE CITY SCHOOL DISTRICT,X3500\nSenior Director,Mckenna Long Aldridge LLP,J1100\nTREECE ALFROY MASAH & BOSWOR,,K1000\nCHAIRMAN,TELANTIS,F2500\nDeveloper,Orleans Builders/Develop.,Y4000\nFILMMAKER,\"PROPS VISUAL, LTD\",Y4000\nAttorney,\"Robinson, Waters & O'Dorisio P.C.\",Y4000\nAdvertising,zero stage capital,F2600\nUS Dept of Education,,X3500\nIT Coordinator,Purdue University,H5100\nSoftware Engr,MIT,J1200\nACCOUNTANT,THE PATHENON GROUP LLC,J1100\nDEVELOPMENT RALLY,,Y4000\n\"Director of Federal Gov't Relations\",\"Pfizer, Inc\",H4300\nEXECUTI,FEDERATED DEPARTMENT STORES,J1100\nSELF-EMPLOYED/RADIO BROADCASTER/RES,,C2100\nSALES MANAGER,KLA-TENCOR CORP,C5000\nVenture Capitalist,DFJ Mercury,T2300\nCONSULTANT,MEHLMAN VOGEL CASTAG,K2000\nCEO,WHIZZ SYSTEMS INC.,J5400\nOWNER/PARTNER,\"BRANDWIDTH, LLC\",Z9500\nEXECUTIVE DIRECTOR,\"PEOPLE'S HEALTH CLINIC\",Y4000\n,\"CUBIC TRANSPORTATION SYSTEMS, INC.\",Y4000\nSales,Western Chandelier Co,B2000\nCHAIRMAN,KEN GARFF AUTOMOTIVE GROUP,Y4000\nBANKING,HERSHEY STATE BANK,Y4000\nYacht Captain,Corrado,Y4000\nDirector,3M Corporation,M2300\nCKS PARTNERS,,J1100\nSECOND,TRANSOCEANIC CABLE SHIP CO.,LT500\nSTEVEN BARCLAY AGENCY,OWNER,G0000\nREAL ESTATE,LAWRENCE JANSS COMPANY,Y4000\nPROPERTY MANAGER,JCPM,Y4000\nELECTRICAL APPRENTICE,\"KING'S ELECTRIC SERVICES\",Y4000\nService Clerk,Fort Miller,Y4000\n,MORRISON BARKER STEEL CONSTRUCTION,B1500\nVICE PRESIDENT BUSINESS DEVELOPMENT,DOMINION RESOURCES/VICE PRESIDENT B,E1620\nPresident,\"E.A.C. Tradinet, Inc\",Y4000\nDRYCLEANER,SCOTTEE CLEANERS INC,G5500\nAttorney,\"Slawson, Cunningham, Whalen\",K1000\nTRADER,SHEPARD INTL,J6200\nExecutive,Country Club Hills,Y4000\nOWNER,\"MCCLURETECYH, INC.\",Y4000\nNASSUA COUNTY MEDICAL CENTER,,H1400\nPresident,Oil City Iron Works,M2000\nProject Engineer,\"Pcl Construction Services, Inc\",B1500\nCHIEF ENG,OHIO AMERICAN ENERGY INC.,E1000\nENCORE REALTY,,F4200\nJUVENILE DIABETES RESEARCH FOUNDATI,,Y4000\nVideo,Ritz,J1200\nMANAGING DIRE,GREENLEE PARTNERS LLC,K2000\nMARKETER,\"VANCOUVER OIL COMPANY, INC.\",E1170\nRETIRED,RETIRED,T1700\nV P ADMINISTRATION,BENNINGTON,Y4000\nGENERAL MANAGER,MIDWEST TUNGSTEN,Y4000\nCRAIG SHIRLEY ASSOC,,K2000\nDirector,UltraViolet,Y4000\nW F MERRY SEAFOOD CO,,Y4000\nPresident,Family Warehouse Corp.,J5200\nREMAX ALLIANCE,,Y4000\nfinancial consultant,Maxim Group,F2300\nVice President,Image Base,Y4000\nPresident,Second Southern Corp,Y4000\nST LOUIS COMMUNITY COLLEGE,,J7400\nFINANCE EXECUTIVE,WABASH VALLEY EYE CENTER/FINANCE EX,Y4000\nCemeterian,Washington Heights Corp,G5400\nCONSOLIDATED CO,,J5100\nSHOALS CAFE,,G2900\nCORPORATE TRUST PRESIDENT,CORPORATE TRUST PRESIDENT,F1100\nMANAGEMENT,SUNSHINE HOMES,B2000\nAttorney,Carp & Sexauer,K1000\nAudiovisual Technica,City of Laredo,X3000\nFox Tile Co.,,Y4000\nSALES,ROSE,Y4000\nEXECUTIVE,PAPPAS AND SONS,Y4000\nSr Advisor,Lazard Asset Mgt,Y4000\nAdvertising Specialist,Arnold Worldwide,G5210\nBUSINESSMAN,BURNS INDUSTRY,Y4000\nowner,Fisk Tool Company,M5000\nMEDICAL DIRECTOR,SENTARA,Y4000\nMARKETING,DIANE MARTINDALE,J1200\nMANAGING PARTNER,ARNALL GOLDEN GREGORY LLP,K1000\nENTREPRENEUR/INVENTOR,SELF-EMPLOYED,G0000\nIT SPECIALIST,USOPM,Y4000\nCEO,DIAMOND B CONSTRUCTION,B1500\nSenior Chief Petty O,United States Navy,X5000\nOwner,Smith Management Group Inc.,Y4000\nCONSULTANT,\"F T I CONSULTING, INC.\",G5200\nPartner,Kramer Beverage Company,G2810\nOwner,Hopcassidy Pools,Y4000\nORCHID COURT INC./ADMINISTRATOR/C.E,,Y4000\nAMERICAN ASSOICIATION OF AI,,T1600\nBANKER,TEXAS CAPITAL BANKER,F1000\nGen. Bldg. Cont.,Self,G0000\nRN,VA HOSPITAL,J1200\nAuto Damage Estimator,Scottsdale Paint & Body,Y4000\nCREDIT AGRICOLE IND,,F1100\nRETIRED,FRANKLIN TEMPLETON INVESTMENTS (FORMER,Y4000\nCLINICAL SAFETY MANAGER,WELLSTAT THERAPEUTICS/CLINICAL SAFE,Y4000\nATTORNEY,UNIVERSITY OF DETROIT,H5100\nCHARTER FINANCIAL GROUP INC,,J7400\nARCHITECT,THE SMITH GROUP,B4200\nGOVERNMENT AFFA,KING & SPALDING LLP,K1000\nENGINEER,REFUSED,Y4000\nVP ADM GEN COUNSEL,WORTHINGTON INDUSTRIES,M2100\nAtorney,Kilpatrick Stockton,K1000\nPRESIDENT,ALLEN EXPRESS INC,J1100\nProgrammer,Siemens Medical,J1200\nAttorney,Heff Cabroser Heimann & Bernstein,K1000\nbanker,Self employed,F1100\nFUTURISTIC INC,,Y4000\nENTREPENEUR,SELF,J1100\nAttorney,Mitchell & Kris  LLP,K1000\nVALUANO CONSTRUCTION,,B1500\nBUSINESS OWNER,SELF,C5110\nMORTGAGE REPORTS,,F4600\nHOSPITAL MANAGER,NEW TAMPA ANIMAL HOSPITAL,A4500\nDEPARTMENT MANAGER,MELLON FINANCIAL,F1100\nINVESTMENTS & FARMING,SELF-EMPLOYED,A1000\nConsultant,\"carnegie Endowment for Int'l Peace\",Z9500\nENGINEER - VP EMPLOYEE RELATIONS/DIREC,OSHKOSH CORP/OSHKOSH CORPORATION,T3200\nSR. COUNSEL,THORSEN-FRENCH,K2000\nChairman CEO,American Stock Exchange,F2400\nAttorney,McMath Woods,K1000\nMINISTER,BLUE LICK CHRISTIAN CHURCH,X7000\nPhysician,Shifa Medical Center,H1100\nATTORNEY,TRUDI FOUTTS LOH,Z9500\nHR MANAGER,EG&G,Y4000\nGREEN CAY FARMS,,J7150\nOwner,Exec. Mitsubish,T2310\nORGANIC FARMER,REQUESTED,A1000\nInformation Requested,Cornerstone Government Affairs,K2000\nOFFICE MANAGER,HAUGO & SOLBRACK DDS,Y4000\nCounty Mayor,Knox County Govt,Y4000\nGREYSTONE & CO,,Y4000\nBUSINESS OWNER,\"LATRIC SYSTEMS, INC\",J1200\nRETAIL MANAGER,PURPLE TURTLE,F4200\nBest efforts made 10/19/2010,Best efforts made on 10/19/2010,Y2000\nFIRST WA CORP,,Y4000\nENGINEER,CAMBRIDGE SYSTEMATICS,Y4000\nTP DONOVAN INVESTMENTS LLC,,F7000\nTHERAP,DRAA THOMPSON AND ASSOCIATES,J1200\nINSURANCE,HENDERSON BROTHERS INC.,F2100\nExecutive Associate Dean Of Hospital &,Texas Tech University Health Science C,H2100\nCATTLE RANCHER,LISTEN CATTLE RANCH,Y4000\nFISCHER PORTER MASI & THOMAS,,K1000\nPUBLIC HEALTH,NH DEPT OF HEALTH AND HUMAN SERVICES,X3000\nCONSULTANT,\"NEWMAN AND ASSOCIATES, LLC\",Y4000\nManager,Broadview Mortgage,F4600\nFinance- Microfinance,\"Standard & Poor's\",F5500\nATTORNEY,\"C. L. SCARVER & ASSOCIATES, LLC\",G5200\nCFO,\"HGA, INC.\",B4000\nPresident,\"Signature Systems, LLC\",Y4000\nVICE PRESIDENT,THE CARTER CENTER,H5100\nBEAN STATION FURN CO,,M4100\nENGINEER,HALLETT MATERIALS,Y4000\nINSURANCE CLERK,BOISE CASCADE CORPORATION,G4600\nSMALL BUSINESS OWNER,QUEEN ANNE AVENUE BOOKS/SMALL BUSIN,Y4000\nFINANCIAL INDUSTRY,EBI,Y4000\nOrthopaedic Surgeon,HUGHSON CLINIC,H1100\nATTORNEY,\"PARTNER, COVINGTON & BURLING\",K1000\nHEALTHCARE MANAG,WILLS EYE HOSPITAL,H2100\nATTORNEY,CH2M HILL,Z9500\nEmergency Physician,105 Main St # 4,H1100\nConsultant,Deep Dive Research,Y4000\nInvestment Management,Harris Associates,F2100\nPublic School Teacher,Norfolk Bd Of Ed,X3500\nConsultant,International Institute for Facilitati,Y4000\nPRESIDENT,\"ELKHART PLASTICS, INC.\",M1500\nVP,Comcast Cable,C2200\nBOWERS LUMBER,,B5200\nVP GENERAL COUN,RELIANT ENERGY INC.,E1620\ninvestment manager,investment management,F2100\nKNOTT PARTNERS L.P.,,F2100\nMARKE,ADP - UST SALES AND MARKETING,A1300\nEngineer,\"Intec Products, Inc.\",Y4000\nUNITED FOOD & COMMERCIAL WORKERS,,LG200\nBERRETT & ASSOCIATES INC,,Y4000\nFIN CITY BANK,,F1000\nBANKERS TRUST OF MADISON,,F1100\nPRESIDENT,REVOLUTION AIR,Y4000\nDOD,,X5000\nSenior Membership Sp,NRDC,JE300\nMAACO AUTO PAINTING,,T2400\nGeneral Manager,Dave Towell Cadillac Saab Inc,T2300\n\"PRESIDENT, OWNER\",CORE VALUATION,Y4000\nAttorney,US Dept HHS,X3000\nINVESTOR,BUISSON INVESTMENT CORP/INVESTOR,F7000\nASSOCIATION OF TRIAL,,K1100\nPresident & CEO,\"Florida Banks, Inc.\",F1000\nIT specialist,Center for Biological Diversity,Z9500\nSELF,BLUE VISTA VENTURES LLC,Y4000\n\"OWNER, LAKE ROAD WELDING CO\",SELF,Y4000\nCEO,TRONEX INTERNATIONAL,Y4000\nPresident,Linesin Service & Equipment Co,Y4000\nDEVELOPER-ATTORNEY,,K1000\nPERKS REUTER ASSOCIATES,,Y4000\nOWNER,ARMED FORCES CLUB MANAGEMENT,Y4000\nEDUCATION,COMMUNITY PARTNERS,Y4000\nBANKING,OHIO SAVINGS,Y4000\nINVESTOR,HILARY K. WYNPERLE,Y4000\nInvestor,Entrada Ventures,Y4000\nMember,Hewlett Bay Associates LLC,Z9500\npresident,ccAdvertising,J1100\nOWNER,SUNNY RIDGE FARM,Y4000\nretired,retired,F3400\nAttorney,\"Wilmer, Cutler, Pickering, et\",K1000\nUNIVERSITY PROFESSOR,UNIVERSITY OF CA BERKLEY/UNIVERSITY,H5100\nPresident,Intermarket Corporation,J5200\nProfessor of Microbiology,Penn State University,H5100\nSCOPUS TECH,,Y4000\nEngineer / Planner,Analyticoast LLC,Y4000\nAdvisor,OneAmercia Securities,F2100\nSUGAR TOURS,,J7400\nCIRKUS REAL ESTATE,,F4200\nChairman,Molto,F0000\nLAWYER,MAYER BROWN LLC,K1200\n\"Gibson, Dunn & Crutc\",attorney,K1000\nInformation Requeste,\"Odwalla, Inc.\",Y4000\nFEDERAL LANDS REUSE AUTHO,,X3000\nPRESIDENT,BLUEGRASS CELLULAR INC,C4300\nOLYMPIC PROTECTIVE,,G5290\nWGM DESIGN INC,,Y4000\nSales,Morris Iron and Steel,M2100\nPHILANT,HEINZ FAMILY PHILANTHROPIES,X4110\nPodiatrist,Foot & Ankle Health Group,H1130\n\"SENIOR VICE PRESIDENT, PRODUCT SALES\",COMCAST CABLE,C2200\nVP Public Affairs,Cuyahoga Community Colleget,H5100\nOFFICE MANAGER,VAN LEYDEN FUNDING,Y4000\nReal Estate Developm,REL Properties,F4100\nGASTROENTEROLOGY CENTER OF CONNECTI,,H1130\nCity ADA Director,City of San Francisco,X3000\nNASSEFF PLUMBING,,B3400\nPRESIDENT & CEO,LENNER CORPORATION,B2000\nA S C INC,,T2200\nretail management,self-employed,G4000\nCEO & Chairman Emeri,America Online  Inc.,C5140\nSALES,ARTHUR J. HURLEY & COMPANY,Y4000\nPresident,J & A Field Service Llc,Y4000\nEngineer,Avago,Y4000\nINVESTOR RELATION,JAFFONI & COLLINS,Y4000\nMAXWELL MOTORS,,T2000\nGRAVES DOUGHERTY HEARON MOODY,,K1000\nACCOUNTANT,CHATHAM TAX SVC INC.,Y4000\nABCO INDUSTRIES LTD,,M8000\nTECHNICAL CONSULTANT,SELF EMPLOYED,J1100\nTokoni Inc.,,J1200\nDIRECTOR/PRODUCER,SELF EMPLOYED,C2300\nATTORNEY,\"LUBIN & MEYER, PC\",K1000\nATTORN,STATE UNIVERSITY OF NEW YORK,H5100\nRN,NYU-LANGONE MEDICAL CENTER,H2100\nATTORNEY,\"BED, BATH & BEYOND\",G4600\nGEOLOG,ENVIRONMENTAL CONSULTING INC,Y4000\nExecutive,Tekserve,J1200\nADJUNCT PROFESSOR,HOLYOKE COMMUNITY COLLEGE,H5100\nEducation,Westchester Arts Council,Y4000\nWINEMAKER,RAVENSWOOD WINERY,J1200\nLawyer,Aldridge Law Firm,K1000\nPresident/CEO,The MWW Group,K2000\nANDERSON CHEMICAL,,J1100\njournalist,McGraw Hill,C1100\nNON-PROFIT MANAGER,CHRISTIAN ASSISTANCE MINISTRY,Y4000\nENGINEER,\"FARNSWORTH GROUP, INC.\",B4000\nACCOUNTANT,GUARANTEE ASSOCIATED,Y4000\nEXECUT,FIRST AMERICAN TITLE INSURAN,F4300\nAUTO DEALER,HENNESSY AUTOMOTIVE GROUP,T2300\nSTADIUM FLOWERS INC,,A8000\nSELF - EMPLOYED,REFUSED,M6000\nConsultant,Mary Fifield Associates,Y4000\nPhysician,Zachary ob/gyn Services,H1130\nEH ASHLEY & CO INC,,Y4000\nPRESIDENT,RADIO ONE INC,C2100\nConsultant,Bzs,Y4000\nOUTDOOR COMMUNICATIONS I,,G5230\nINVESTMENTS,PYRAMIS GLOBAL ADVISORS,F2100\nVILLA HOMES WEST,,B2000\nINVESTMENT COUNSELOR,\"BOWEN, HANES & CO., INC.\",F5000\nOwner,The Thompson Organization,Y4000\nREAL ESTATE BROKER,\"DWIGHT HALE, REALTOR\",Z9500\nManager,HSB Group Inc.,F3400\nNational Representat,American Federation of Govt Employees,J1200\nReal Estate Develope,Russcor Financial,F0000\nMANAGING DIRECTOR,CITIBANK/MANAGING DIRECTOR,J1200\nPUBLISHER,INTERNET.COM,C5140\nC.O,RG2 CLAIMS ADMINISTRATOR,Y4000\n\"Police Officer, Ff, Emt, Dso\",Dwg-Dps/Usms,X3200\nPsychotherapist,\"Isenberg & Associates,LLC\",J1200\nATTORNEY,POPE & KATCHER,Z9500\nATTORNEY,GIBSON DUNN & CRUTCHER LLC,K1200\nPRESIDENT & CEO,\"NRG ENERGY, INC.\",E1630\nBAKER DONELSON BEARMAN CALDWELL & B,,K1000\nATTORNY,LEVIN PAPANTONIO,K1100\nADERHOLT FOR CONGRESS,,J1100\nprofessr,new york university,H5100\nBUILDING CONTRACTOR,KENDALL AND WELCH CONSTRUCTION,B1500\nCOMMUNICATIONS SPECIALIST,CACI,D3000\nBusiness Owner,Manhattan Color Labs,Y4000\nPHYSICIAN,HARVARD MEDICAL SCHOOL,H5100\nT B BUTLER PUBLISHING CO INC,,C1100\nF/V SCAVENGER/SMALL BUSINESS OWNER,,Y4000\nJACK FIRST INC,,Y4000\nAttorney,Alice Smith,K1000\nSELF-EMPLOYED/PATENT AGENT/BUSINESS,,G0000\nS-F ANALYTICAL LABS,,Y4000\nCEO,Millennium Space Systems,T1700\nCommunications,Neal Communities,B1500\nARCHITECT,W. MASON SMITH III,J1200\nAnesthesiologist,Minneapolis Aneithesia Associa,Y4000\nPresident,Scotts Speed Shop,Y4000\nPHOTOGRAPHER,HORIZONS,Y4000\nWRITER,CENGAGE LEARNING,Y4000\nOWNER,\"FEE INSURANCE GROUP, INC.\",F3100\nMANAGER,NATIONAL REGULATORY RESEARCH INSTITITE,Y4000\nSHELF STABLE FOODS INC,,G2000\nMONTEREY FINANCIAL,,F4100\nCENTEL ELECTRIC KANSAS,,C4100\nVice Chairman,\"Assurant, Inc.\",F3100\nChief Diversity Officer,NCR,Y4000\nBESTFRESH FOODS INC,,Y4000\nProprieter,Daybreak,Y4000\nPresident,\"Barbieri Anthony Law Firm, Inc.\",K1000\nCIRCUIT COURT RE,STATE OF WISCONSIN,X3000\nPRESIDENT,BEVERAGE CONTROL,G2850\nAttorney,John c Collins co LPA,Y4000\nOrthopaedic Surgeon,Baylor University Medical Ctr,H1130\nVALUE HEALTH SCIENCES,,H0000\nATTORNEY,\"VARNUM, RIDDERING, SCHMIDT\",Y4000\nSYSCO FOOD SERVICE - SYRACUSE,,G2500\nINSTRUCTOR,BATES COMMUNITY COLLEGE,L1300\nMarketing,ISSI,Y4000\nTRIUMVIRATE ENVIRON,,E2000\nPARTNER & DIRECTO,LORD ABBETT & CO.,F2100\nTOWNSEND & THOMPSON,,K1000\nJOSEPH JINGOLIT SONS,,Y4000\nVICE PRESIDENT,TRI-WEST HEALTHCARE,Y4000\nDEYOUNG WASGATT FINANCIAL,,Y4000\nReal Estate Developer,The Colonial Company,B2000\nSOCIAL WORK,RICA,Y4000\nCEO,LFB CO.,Y4000\nCEDARAPIDS INC,,D3000\nHARRY MOODY OUTDOOR,,G5230\n\"VERN'S SELF STORAGE\",,Y4000\n\"General Manager, Military\",II-VI Incorporated,M9100\nATTORNEY,G.M.C.,Y4000\nPRESIDENT & CEO,GOLDEN FOODS,G2000\nPROPERTY M,HARBOR BAY LANDING L.L.C,Y4000\nChief Medical Officer,Sentara Healthcare,H2100\nPresident & CEO,Forsythe Solutions,Y4000\nREAVESTEO,,Y4000\nACCOUNTANT,GENERAL ELECTRIC,M2300\nSenior Vice President Tax Insourcing,QBE FIRST,F4600\nPHYSICI,\"TARTELL AND MANDEL, MD, LLC\",J1100\nPRESIDENT,COMMERCIAL SERVICES,Y4000\nVASCULAR SURGE,WEST COUNTRY SURGERY,H1130\nOfficer,Veco,LT300\n\"VICE PRESIDENT, OPERATIONS\",GOOGLE INC.,C5140\nPresident,\"A/T Media Services, Inc\",Y4000\nPresident,Riverside General Hospital,H2100\nHOUSE-WIFE,,Y1000\nEXECUT,PHILIP MORRIS COMPANIES INC.,Z9500\nSECRETARY,PAUL ROSCIT ELEC. INC.,Y4000\nPRESIDENT,CRUSADER RENT TO OWN,G5300\nADMIRAL PLUMBERS DJC,,B3400\nTRANSCONTINENTAL,,Y4000\nC. P. A.,LESLIE TURNER & ASSOCIATES P.,Y4000\nAttorney/Managing Partner,\"Choate, Hall & Stewart\",K1000\nCeo,Dixie Formplates & Machine Sh,Y4000\nConcert pianist,Free lance,G5200\nPresident,Arrow Towing & Recovering,T3100\nCLU,MCTIGUE FINANCIAL GROUP,F0000\nCare Coordinator,UnitedHealth Group,H3700\n\"JAVITS, ROBINSON, BROG LEINWAN\",,K1000\nCaterer,Total Concept Catering,Y4000\nCORPORATE FINANCE,\"UBS SECURITIES, LLC\",F2100\nDirector of several,None,G0000\nMANAGING DIRECTOR,EARQ,H4100\nsoftware analyst,DS,Y4000\nNON PROFIT AFFORDABLE HOUSING DEVELOP,EAH HOUSING/NON PROFIT AFFORDABLE H,J1200\nWEST POINT CASKET COMPANY,,G5400\nFREE & ASSOCIATES,,Y4000\nSENIOR CONSULTANT,RES PUBLICA GROUP,G5210\nOWNER OF HOTELS,SELF,T9100\nAdministrator,\"Children's and Women's Physicians of W\",H1100\nLegislative Aide.,Laird Stabler & Asso.,K1000\nWASHINGTON ONLINE WRITERS,,Y4000\npsychiatrist,University of Cincinnati,H5100\nEXEC VP,RED LOBSTER,Y4000\nretired,Pamela Jean Harrison,J1200\nPresident,Star`s Wireless,Y4000\nRAMCO ENT,,F4100\nAttorney,\"Dykema, Gossett et al\",K1000\nARGONETICS INC,,Y4000\nTRAURIG,GREENBURG,K1000\nPRINCIPAL,RIVERLANDS SURVEYING CO.,B4300\nSTORAGE UNIT OWNER,,T7200\nMARKETER,INNOVATIVE BRANDS,Y4000\nMAHULIFE FINANCIAL,,Y4000\nATTORNEY,B & R SERVICES,G5290\nSTENBERG FOR US SEN,,Y4000\nManager,West Carolina Rural Telephone Cooperat,C4100\nPresident,Philadelphia Biotechnolo,Y4000\nCIO,Oracle,Z9500\nAttorney,Ansanelli Kugler & Svendsen,Y4000\nPresident,\"Carino's Italian Grill Tomatto Grotto\",G2900\nOMI INDUSTRIES,,Y4000\nENGINEER,MORETRENCH/ENGINEER,B1000\nAGRICULTURE,RANCH/SELF,A3000\nVice President,Inamed Aesthics,Y4000\nOwner,John Zebelst Attorney,K1000\nRenewable Energy,BP Alternative Energy,E1500\nBaker,Sonoma Muffin Works,Y4000\nHAMMAD FOODS,,Y4000\nBUSINESS DIRECTOR MFM,3M COMPANY,M0000\nGeneral Manager,Town Hill Farm,A1000\nSTUDENT,STUDENT,G2600\nVice President,Senn Dunn,F3100\nREAL ESTATE,MANCINI DEVELOPMENT,F4100\nDIRECTOR,FGA,J1100\nPHYSICIAN,PVA,Y4000\nARISTECH CORPORATIONS,,M1500\nINDEX IQ/OWNER/ FINANCE,,F2600\n14TH DIST OF MASS,,Y4000\nSports Promotion,Self,G6400\nPRESIDE,WASHINGTON HEALTH ADVOCATES,K2000\nBISON ENGINEERING INC,,Y4000\nExecutive,Dupont,X1200\nPRESIDENT,POINTER ELECTRIC SUP/PRESIDENT,B5500\nCEO,Panel Components,J1100\n\"SVP, Regional Director\",Univision Communications Inc,C2100\nRESTAURANT MANAGEMENT,OUTBACK STEAKHOUSE,G2900\nKELLER CRESCENT,,Y4000\nConsultant,Accenture LLP,G5270\nINTEGR PACKAGING CRP,,M7100\nBOE & COMPANY ARCHITECTS INC,,B4200\nCommunications Executive,Compass Group,G2910\nDistributor,Self Employed,G3000\nDoctor,Rehabilitation & Electrodiagnostic Med,H1100\nUNIVERSITY ADMINSTRATOR,DALLAS BAPTIST UNIVERSITY,H5100\nC.E.O.,YORK INTERNATIONAL AGENCY/C.E.O.,F3100\nSTEVE NORRIS DDS,,H1400\nPATRICOF & CO,,Y4000\n\"BAYARD, HANDLEMAN, & MURDOCH\",,K1000\nSfusd,,X3500\nCHAIRMAN,QUAKER CITY FOUNDATION,Y4000\nSCHUMBE WILLIAMS WYATT,,Y4000\nENERGY CONVERSION DEVICES INC,,B4000\nREALTOR,NISSEN REALTY,F4200\nOWNER,SAN DIEGO CHARGERS,G6400\nPHYSICIAN,WILLIAM C. NEWBERRY MD PA,Y4000\nKRONISH ASSOCIATES LIFE UNDERWRITER,,F3300\nEDUCATOR,UNIVERSITY OF IOWA/EDUCATOR,H5100\nSR. COUN,\"QORVIS COMMUNICATIONS, LLC\",G5210\nSTETSON LAW FIRM,,K1000\nATTORNEY,MERCER UNIVERSITY LAW SCHOOL,H5170\nATTORNEY,DOUGHERTY & HILDRE P.C.,K1000\nATTORNEY,MANCUSO RUBIN & FUFIDIO,K1000\nOwner - Title Co,Elliot & Waldron Title,F4300\nVP National Title Ag,First American Corporation,F4300\nSENIOR GARDNER II,DEPARTMENT OF RECREATION & PARKS,X3000\ncontract developer,Capelli Enterprises,F4100\nProgrammer,\"Devry University, Inc\",H5200\nInvestments,The Baupost Group,Z9500\nSenior Vice President and Chief Financ,Memorial Health System,H2100\n\"Children's book Author\",Self-employed,C1100\nNEW STANDARD CORPORATION,,M5000\nINFO REQUESTED,Leer Limited Partnership,Y4000\nSurgeon,\"Brigham & Women's Hospital\",H1130\nConsultant,NUEVA VISTA GROUP,K2000\nJESTER INS SVCS,,F3100\nCASEY GERRY REED & SCHENK LLP,,K1100\nMANAGER; TECHNICAL,GE POWER SYSTEMS,M2300\nDANAHER CORPORATION,,T2200\nEVP LAW & CORP RELATIONS,NORFOLK SOUTHERN,T5100\nATTORNEY,HUNTON&WILLIAMS,K1000\nCEP,PTCI,Y4000\nSULLIVAN PACE LLC,,K1000\nCAPTEL/PRESIDENT/CEO,,Y4000\nCEO,Northwestern Mem. Healthcare,H0000\nPRESIDENT,\"REWARD REAL ESTATE, INC.\",F4000\nSenior Vice President,Richmond American Homes,B2000\nMIRIMAX,DIMENSION FILMS,C2400\nretired,United Airlines,J1200\nDIVISION DIRECTOR,KENTUCKY STATE TREASURY,Y4000\nCABLE AMERICA/CORPORATE OFFICER / B,,C2200\nBOOKKEEPER,BELLOTTI AND BARRETTO,K1000\nReal Estate Broker/,Western America Housing Corp.,Y4000\nTEACHER,NOTRE DAME ACD,Y4000\nBusiness Owner,\"Yankee Remodeler of  New London, Inc\",Y4000\nIT EXEC,,Y4000\nVICE PRESIDENT - SALES,ACS,C5130\nVICE PRESIDENT,HAKS,B4000\nBUSINESS EXECUTIVE,EAGLE MANAGEMENT CORP,Y4000\nBUSINESS,THE WW GROUP,G5000\nCEO,Garvin Oil Co. Inc,E1100\nINSURANCE AGENT,ELLIS INSURANCE AGENCY,F3100\nOWNER,DIXIE GRAPHICS,C1300\nHEALTHCARE EXC,HMHP,H4500\nRODEO,,G2900\nPresident,\"David A Bramble, Inc\",B1000\nREAL ESTATE AGENT,NORTH PARK AVE ASSOC LTD,Y4000\nPresident,PMP,Y4000\nMEDITRUST,,J5100\nCHAIRMAN,ROYAL AMERICAN,Y4000\nExecutive,\"Int, Inc\",Y4000\nOwner,Steve Kasten Properties,Y4000\nATTOR,ROBINSON CALCAGNIE & ROBINSON,K1000\n\"PHILIPS INT'L HOLDING CORP\",,F4200\nATTORNEY,BARTLETT HACKETT FEINBERG PC.,Y4000\nLAMDA DATA SYSTEMS,,C5100\nSR. CAD DESIGNER,LONZA BIOLOGICS,Y4000\nElectrical Contractor,F.B. Harding Inc.,G1200\ninvestment manager,Thomson Inc,C5000\nINDUSTRIAL ELECT,FORD MOTOR COMPANY,J1200\nREAL ESTATE,EXCEL REALTY HOLDINGS,F4200\nSenior Counsel,GE Consumer & Industrial,M2300\nDIRECTOR OF PUBLICATIONS,DEL MAR THOROUGHBRED CLUB,Y4000\nHILL PETERSON & CARPER,,K1000\nAttorney,\"Liz Claiborne, Inc\",M3100\nEXECUTIVE,BANCO CONSTRUCTION,B1500\nVice President,Brookside Clinical Laboratory,Y4000\nwriter/producer,Self,J7400\nAttorney,Starr Finley LLP,Y4000\nSENTREX SECURITY SYSTEMS INC,,Y4000\nHOSPITAL SAN LUCAS,,H1100\nPRESIDENT,ELIAS FRAGRANCES,Y4000\nLAWYER,RSM MCGLADREY,F5100\nSENIOR VICE PRESIDE,PRATT & WHITNEY,D2000\nPROJECT MANAGER,\"PREMIER INVESTMENT PROPERTIES, LLC\",Y4000\nPHYSICIAN,FULLERTON ANESTHESIA ASSOCIATES,H1130\nLAWYER,AMEGEN,Y4000\nPRESIDENT & C,HP FINANCIAL SERVICES,G5300\nResearcher,CDC,X3000\nSecretary/Treasurer,Keystone Acquisitions,Y4000\nH R TRIPP INC,,B1000\nENGINEE,\"RADIANCE TECHNOLOGIES, INC.\",C5120\nPROMOTIONAL MO,ELIZABETH ARDEN COS.,M3300\nPRESIDENT,PAPALEOS AUTO BODY,T2400\n\"PRESIDENT, CEO\",GRAYMONT MATERIALS (NY) INC.,B5100\nVice President,Karr Graphics,C2600\nCONSULTANT,SELF,A2300\nEXECUTIVE,NASWA,Y4000\nEnvironmental Scient,\"Coastal Environments, Inc.\",Y4000\nDealer,Down East Toyota,T2300\nCHEMIST,ARKEMA,M1500\nSMALL BUSINESS EXECUTIVE,THERMOWORKS/SMALL BUSINESS EXECUTIV,M9000\nDOOLITTLE OIL,,E1100\nCEO,Phillips and Company Securities,J1200\nDIRECTOR OF RESEARCH,MASS TAXPAYERS FOUNDATION,Y4000\nENT AND PLASTIC SURGEON,SELF-EMPLOYED,J1200\nUS Department of Justice,,X3200\nCEO,PATLEX CORP.,C4600\nSELF-EMPLOYED,SKIPPER GRASSING INC,Y4000\nMINNIE GAS CO,,Y4000\nIBARRA GROUP,,Y4000\nFAMILY INVESTMENT MANAGER,,Y4000\nGUAM DEPT OF PLAN,,Y4000\n\"METCALF, TOBEY & PARTNER\",,Y4000\nCOO,ELEMENT POWER,Y4000\nFoundation Director,CE&S Foundation,Y4000\nAttorney,\"Weiss, Serota & Helfman, P.A.\",K1000\nHAUCK AND ASSOCIATES,,Y4000\nDIRECTOR,PEPSICO,G2600\nAREA SALES MANAGER,UPS/AREA SALES MANAGER,T7100\nCUESTA & ASSOC,GRINER,C2100\nBUSINESS MANAGEMENT-,JANUS HOTELS AND RESORTS INC.,T9100\nPresident,\"Stephen Cooper, P.E. & Assoc. Inc\",Y4000\nChairman/CEO,Diversified Senior Services,Y4000\nTeacher,Trigg Co BOE,Y4000\nSales,Win Limited,Y4000\nphilanthropic adviser,self-employed,Y4000\nPresident,Prestige Helicopters Inc.,Y4000\nJ.W. MANAGEMENT,,J1100\nNew Car Sales,Self Employed,Y4000\nSEEKING INFORMA,SEEKING INFORMATION,M3100\nMD,MOUNT SINAI,H1100\nINSURANCE SALES,SELF EMPLOYED,J7400\nPARTNER,\"AKIN, GUMP, STRAUSS, ET AL\",K1000\nPresident,Frisch Farms,G1200\nExecutive,The Benchmark Group,F4500\nREAL ESTATE BROKER,MAJESTIC ROSE,Y4000\nREAL ESTATE DEVELOPER,FIRST REALTY PM,J9000\nGovt Relations,Georgia Electric Member Corp.,B3200\nConsultant,JD Rice Consultants,Y4000\nSEIMENS,,C5000\nCHIEF EXECUTIVE OFFICER,AABGU,Y4000\nESL Professor,Montgomery College,H5100\nFINANCIER,MORGAN STANLEY,F2300\nConsultant,Linn & Green Consulting,G5270\nPublisher,Essence Magazine,C1100\nPROFESSOR,UNIVERSITY OF ARKANSAS AT LITTLE ROCKC,Z9500\nMARLBORO TOWNSHIP BOARD OF ED,,X3500\nNGI,,Y4000\nINTERNATIONAL ASSOC OF MACHINISTS,,LM100\nBROWN TERELL AND HOGAN,,J5100\nAttorney,Paul Reiss Rifkind et al,K1000\nSecurity Guard,\"Continental Secret Service Bureau, Inc\",Y4000\nCROP INSURANCE SALESMAN,SELF,A4000\nSurgeon,Surgical Associates of TX,H1130\nCASTO TRAVEL,,T9400\nconsultant,Eagle Healthcare Advisors,Y4000\nInvestment Counselor,BNYM,Y4000\nAssociate Director,Clark Consulting,K2000\nHOMERMAKER,,B1500\nADDISON NC,,Y4000\nCOLLEGE PROFESSOR AN,STATE UNIVERSITY OF NEW YORK,J7400\nPROFESSOR,FOLGER SHAKESPEARE LIBRARY,X4200\nOWNER,FAMILY CENTER OF HARRISONVILLE,Y4000\nPRESID,LANGDON REAL ESTATE SERVICES,F4000\nSmall Construction Buisness Owner,\"Self-CEG Construction, Inc\",B1500\nPresident,\"John M. Warren, Inc.\",Y4000\nBARNES & THORNBERY,,K1000\nINFORMATION REQUESTED PER BEST EFFORTS,INFORMATION REQUESTED PER BEST EFFORTS,E1230\nPATRIARCH INC,,G5200\nWILLAMETTE PONTIAC JP EGL,,T2300\nDefenders of Wildlife Action Fund,,Y4000\nDivision President,\"Harrah's Entertainment, Inc.\",G6500\nCEO,Trigon Holdings Inc.,Y4000\nPHARMACIST,GALTI PHARMACY,G4900\nweb developr,Self employed,C5120\nPublisher,Barb Music,C1100\nAttorney,\"Lilley & Macias, P A\",K1000\nEngineer,self,JE300\nT H LEE CO,,F2600\nAnesthesiologist,Anesthesia Associates of Kansas City,H1130\nINVESTMENT ANALYST,TOBIAS CAPITAL,Y4000\nMANAGING PARTNER,VALDE GROUP,Y4000\nENGINEER,CORNERTURA LLC,Y4000\nHistologist,self,Y4000\nVP Etch Businesses,LAM Research,C5110\nATLAS GAS PRODUCTS,,E1190\nPODIATRIST,\"CENTRAL MASSACHUSETTS PODIATRY, PC\",Y4000\nSchool Board Member,Grand Prairie ISD,X3500\nPUBLISHER,MODERN LUXURY MEDIA,C1100\nPresident,Eagle Gasket And Pac,Y4000\nOffice manager,Sarlan Builders Inc,Z9500\nAccountant,Securitas Security Services Us,G5290\nChairman & CEO,Iberia Tiles,Y4000\nPRESIDENT,BUFFET PIZZA COMPANY,Y4000\nPRESIDENT,CABLEVISION SYSTEMS CORP,C2200\nGERBER HOMES,,Y4000\nData Entry,Amer Family Ins,J1200\nEXECUTI,DISCOVER FINANCIAL SERVICES,F1400\n\"MCDONALD'S FRANCHISE\",,Y4000\nTitle Insurance Prof,North American Title Co.,F4300\nDIRECTOR,SELF-EMPLOYED,H4500\nBUSINESS ADVISOR,EXXONMOBIL,E1110\nKENDREW GROUP,,Y4000\nConsulting Engineer,Information Requested,B4400\nEXECUTIVE,REGAL GAMES INC.,Y4000\nPhysician,Oakland University School of Medicine,H5150\nVICE PRESIDENT,S & T AMUSEMENT COMPANY,Y4000\nCONTRACTOR,PROGRESSIVE CONSTRUCTION,B1500\nSR. VICE PRESIDENT,\"KOCH AGRONOMIC SERVICES, LLC\",A4100\nFinancial Consultant,\"Sofer, Stuner\",Y4000\nLIBERTY SOFTWARE,,Y0000\nOH TEACHERS/FAMILY ASSOCIATION/SELF,,J5000\nDWYER & COLLORA - MA,,K1000\nRICHARDSON,,Y4000\nDRJ LUMBER COMPANY,,J6200\nPRESIDENT,National Mortgage Access,F4600\nDeputy Ops Mgr for Solutions,Science Applications Intl Corp,D3000\nANESTHESIOL,GOOD SAMARITAN HOSPITAL,H1130\nHOME MAKER,SELF EMPLOYED,Y1000\nJUNIOR ACHIEVEMENT/PRESIDENT/C.E.O.,,X4000\nSenior Vice President,Turner Broadcasting Company,C2000\nHEDGE FUND EXEC,FRONTPOINT PARTNERS,F2100\nARNAIZ DEVELOPMENT CO INC,,Y4000\nPresident,\"W. F. Wilson & Sons, Inc.\",B1000\nOrganist,SAINT MARKS EPISCOPAL CHURCH,X7000\nRegional Manager,Granite Construction Company,B1000\nMarket Research,\"SolarInsights, LLC\",X1200\nVICE PRESID,COLUMBUS LIFE INSURANCE,F3300\nManaging Director,ARCH Venture Partners,F2500\n\"KAYE, SCHOLER, FIERMAN, HAYS ET AL\",,K1000\nOwner,Kmg Enterprises Corporation,Y4000\nTECHNICAL DIRECTOR,GENERAL DYNAMICS,D3000\nPhysician,\"L Reynolds Assoc, PC\",Y4000\nUSMC,USMC,X5000\nself employed,n/a,Y4000\nSENIOR,AMERICAN MANAGEMENT SYSTEMS,C5130\n715 PARK ASSOCIATES LP,,F4000\nVICE PRESIDENT ESTIM,DEE BROWN INC.,Y4000\nSEASE GERIG & ASSOC,,Y4000\nAttorney,Edwards Angel Palmer & Dodge,K1000\nPRESIDENT,LAMAIR MULOCK CONDON,A2300\nPRESIDENT,DIGITAL CHATEAU INC.,Y4000\nPRINCIPAL,JORDACHE ENTERPRISES,Y4000\nPRESIDENT,P & R WATER TAXI LTD.,T6200\nOWNER VI,WAYNES PHARMACY & HOMECARE,G4900\nQuality Assurance Manager,Apollo Enterprise Solutions,X1200\nART COLLECTOR,SELF,X0000\nPhysician,Lake Region Healthcare,Y4000\nATTORNEY,COLE SCOTT KISSANE,Y4000\nVP & CFO AUTOMOT,FORD MOTOR COMPANY,T2100\nGEORGE HARMS CONSTRUCTION CO.,,B1000\nAdministrator,NYS Department of Mental Healt,H3800\nExecutive VP,Jackson Laboratories,H4500\nLawyer,SFX,J1200\nOIL & GAS PRODUCTION,SELF EMPLOYED,E1100\nCFO,Kelly Services,G5250\nOwner,Actuary,F3100\n\"D'AMATO & LYNCH\",,F3100\nSVP STRATEGIC MARKETING,SCHOOLSFIRST FEDERAL CREDIT UNION,F1300\nCEO,Northwest Engineering,B4400\nSecretary/Treasurer,\"Rudd Insurance, Inc.\",F3100\nPRESIDENT,ALPINE BANK,F1000\nTEMPLE UNIVERSITY/CHANCELLOR/PROFES,,H5100\nAttorney,Hanson Bridgett Marcus & Rudy,K1000\nLegislative Director,\"McDermott, Will, & Emery\",K2000\nOwner,Hp Benson Company,Y4000\nFASHION MIRROR & GLASS,,F5100\nConstruction,Apc Inc,Y4000\nGRADISON & CO INC,,F2100\nElectonic Media,Lohan Media,C2000\nCHAIRMAN,EQUIDEX INC,J7300\nExecutive,Thrall Enterprises INc,Z9500\nATTORNEY,\"MOGAN & HARTSON, L.L.P.\",Y4000\nEXECUTIVE,OHIO VALLEY GAS CO.,E1100\nMOKULUA CONSULTANTS INC,,Y4000\nVP,KUHL CORP,A4200\nDean,Rice University,H5100\n\"VP, GOV'T RELATION\",NESTLES,G2000\nSan Francisco,Ncsf,Y4000\nOWNER,VICTOR BRADLEY M.D.,H1100\nKENDALL COLLEGE,,H5100\nTreas: Jonathon Klug,,C4100\nOWNER,HIGHER GROUND FARMS,Y4000\nBusiness Executive,\"L'oreal Usa\",M3300\nManager,Whittier Marketplace L.P.,Y4000\nMarketing,Emson,Y4000\nFIRST WOODSTONE PROPERTIES,,F4000\nPEDIGO LESSENBERRY INSURANCE AGENCY,,F3100\n\"DIR, UNDERWRITING\",WELLCHOICE INC.,F3200\nAttorney,\"Best, Best & Krieger LLP\",K1000\nBEST LAW OFFICES PC,,K1000\nADMINISTRATOR,GUEST SERVICES INC.,G2900\nOWNER,CITY SCENE MANAGMENT COMPANY,Y4000\nConsultant,Dbstamps Consulting,Y4000\nSALES MANAGEMENT,CREDIT SUISSE,F2100\nATTORNEY AT LAW,BJC,H0000\nPHYSICIAN,\"ST. LUKE'S REGIONAL MEDICAL\",H1130\nCONTRACTING DIRECTOR,EPIC PHARMACIES,Y4000\nAMERICAN SURETY CO,,Y4000\nDairy Farmer Develop,Self,G0000\nPETER D HART RES,,Y4000\nYale Univ. H. Hughes Med./Professor,,Z4200\nGOVERNMENT,CENTRAL MAINE POWER CO.,E1600\nZKB PROPERTIES,,Y4000\nChild Care Provider,Nurraine Kerr,Y4000\nCHIEF STRATEGY OFFICER,UNIVERSAL HEALTHCARE,H3000\nPROFESSOR,UPENN,H5100\nAMERICAN TITLE & ESCROW,,F4300\n\"GORHAM, WALDREP\",,K1000\nLAWN & GARDEN REPAIR SHOP,,Y4000\nCEO,BYRAN BANK & TRUST,F1000\nNOT IN WORKFORCE,NOT IN WORKFORCE,A3300\nZELENKOFSKE AXELRUD,,F5100\nResearcher,CONSAD,Y4000\nHorse Breeder Farmer Nur,Self employed,A3500\nPRESIDENT,AQUA FILTER FRESH,Y4000\nBETTING CLERK,AFSCME NY LOC 1000,L1200\nWRITER CONSULTANT,SELF EMPLOYED,J1200\nVP,Southwest Securities,F2100\nCOO,TEXAS TRUE CHOICE,H0000\nCEO/PRESIDENT,WALNUT HOLLOW,A1000\nPART,EXPLORE ENTERPRISES OF AMERICA,Y4000\nGENE SMITH INC,,T2300\nCHIEF EXECUTIVE OFFICER,UNION HOME MORTGAGE,F4600\nRYMES AND LUCAS,,K1000\nREAL ESTATE EX,\"CBL MANAGEMENT, INC.\",F4000\nCAROLINA TRAFFIC SERVICE,,Y4000\nVICE PRESI,STANDARD TEXTILE COMPANY,M8000\nKLIPSCH LANHAM & ASSOCIAT,,G5270\nRE/MAX PARTNERS/REAL ESTATE BROKER,,F4200\nVice President of National Accounts,CVS Caremark,G4900\nOrthopaedic Surgeon,The Rothman Institute,H1130\nAGENT,STEVE MILLER INSURANCE AGENCY,A4000\nREAL ESTATE DEVELOPER,WHEELER INTERESTS,F4000\nExecutive,The Hillman Company,F2600\nPRESIDENT & CEO,CONTINENTAL BANK,F1100\nManaging Partner,Prisma Capital Partners LP,F0000\nTeacher (Part-Time),Haverford School,H5100\nCERTIFIED PUBLIC ACCOUNTANT,,H5200\nEXECU,TEXTILE RUBBER & CHEMICAL CO.,M8000\nEDUCATION MANAGEMENT CONSULTAN,SELF,Y4000\nCEO,\"RHYTON CAPITAL MANAGEMENT, LLC\",F2100\nDIRECTOR,HOUSING SYSTEMS INC.,Y4000\nDIRECTOR FOUNDER,MORE AMERICAN JOBS 501C3,Y4000\nNCSI-RESTON VA,,Y4000\nCommissioner,National Football League,G6400\nPRESIDENT,\"DAVIS DISPOSAL SERVICE, INC.\",E3000\nMANAGING DIRECTOR,STEPTOE & JOHNSON,K1000\nConsultant,Matt Herlihy,Y4000\nMIGGION PARK CEMETARIES,,G5400\nLawyer,Self-employed,J1100\nINST,CASEY COUNTY BOARD OF EDUCATIO,X3500\nACCOUNTANT,MOMENTIRE SPECIALTY CHEMICALS,Y4000\nMEDICAL WORKER,SELF EMPLOYED,H1000\nATTORNEY,BUCHANAN INGERSOLL AND ROONEY,K2000\ncommercial property,,F4000\nPOLYTITE MFG CORP,,Y4000\n\"MANN'S RENTAL\",,G5300\nCOX AND WEAVER,,Y4000\nBUSINESS SUPPORT GROUP,,H5100\nDeputy Chief of Staff,State of Washington,X3000\nREAL ESTATE,SHENIAN,F4000\nREAL ESTATE & INVESTMENTS,PINELOCH MANAGEMENT GROUP,F4000\nOnline Buyer,William,Y4000\nINTERMEC PRESIDENT & CEO,,C5110\nGILL ST BERNARDS SCHOOL,,H5100\nBROADCAST ENGINEER,NBCUNIVERSAL,C2300\nSALES,FORRESTER RESEARCH,Y4000\nChairman,Fifth Third Bank,F1100\nPRESIDENT & MANAGING DIRECTOR,\"ABALONE CAPITAL ADVISORS, LLC\",F2100\nProsthetics-Orthotic,PEL Supply Co.,H4100\nENGINEER,ENERVEST OPERATING,Y4000\nCERTIFIED FINANCIAL PLANNER,TRINITY FINANCIAL SERVICES,F4100\nKU POC HONAN LLC,,Y4000\nPresident,\"Quinn's Lounge Inc\",G1200\nP,STUDENT LOAN CONSOLIDATION CENTER,F1400\nUnknown,\"Southern States Cooperative, Inc\",A6000\nCONSULTANT,ERVIN TEC. ASSOC/CONSULTANT,K2000\nDATA ANALYST,ADVANTAGE TECHNICAL RESOURCING,Y4000\nHENRY ENT I,RODGER W,Y4000\nHOTELIER,INNISFIVE HOTELS,T9100\nEDEL BROWN INC,,Y4000\nGENERAL CONTRACTO,ADENA CORPORATION,B1000\nFORMER GOVERNOR OF KY,,Y4000\n\"SWIG, WEILER, & DINNER\",,J5100\nHARDWARE & IND TOOL COMP,,M5100\nMOTOROLA; INC./CVP COUNTRY/REGION M,,C4600\nINSURANCE BROKER,BAGDASARIAN INSURANCE GROUP/INSURAN,F3100\nROBETSON MONAGLE & EASTAUGH,,Y4000\nInformation Requeste,Granite School District,X3500\nInvestment Advisor,Cozzene Advisors,Y4000\nPSYCHOLOGIST,SW BOCES/PSYCHOLOGIST,Y4000\nOwner,Rancho Family Practice Assoc.,Y4000\nTEMPCO INSULATION INC/PRESIDENT/CEO,,B2000\nVENTURE CAPITAL,WORLDVIEW,Y4000\nCRNA,DHMC,H1710\nPHYSICIAN,OHIO STATE UNIVERSITY AND PEDIATRIC AC,H1130\ncanvasser,Indiana Democratic Party,J1200\nBusiness Owner,JES Properties,F4000\nMOVER,EARLE W. NOYES & SONS,T7000\nReal Estate Investor,SELF-EMPLOYED,G0000\nPRESIDENT,CIBER INC.,C5130\nTREE FARMER,\"GOGGANS, INC.\",K2000\nINVESTOR,FIRST BANK,F1000\nProfessor,Ucla Medical Center,Y4000\nVice President,Pacific Seafood Processors Assoc,G2350\nPresident,Fifth Third Bank,H5100\nKENNEMER MASTER & ANDERSON,,F5100\nPRESIDENT,USIC,Y4000\nEXECUTIVE,FRANKLIN BANK SSB,F1000\nRetired,University of Georgia,X1200\nPresident / COO,GPES,E1600\nPresident,\"Livonia,Avon&lakeville Railroa\",T5100\nTENET HEALTH CORP,,H2100\nInformation Requeste,Delcambre Telephone Company,C4100\nEXECUTIVE,FARNER BOCKEN,Y4000\nManager,Sycamore Networks,C4600\nEXECUTIVE,\"TELEFLEX, INC\",Z9500\nREAL ESTATE APPRAISAL,ROGER TURNER CO.,Y4000\nNOELL CLEVENGER & CO,,A1400\nAttorney,Zurich Insurance Co,F3400\nATTOR,CASH KRUGLER & FREDERICKS LLC,K1100\nNATIONAL SALES MANAGER,ICON EYEWEAR,Z9500\nINSURANCE,JOHN L WORTHAM & SONS,F3100\nWHEELABRATOR CONCORD CO LP,,E2000\nINFO REQUESTED,RETINA ASSOCIATES,H1120\nPRINICPAL,PODESTA GROUP,Z9500\nATTY,\"BALDWIN & BALDWIN, LLP\",Z9500\nWRITER,Self employed,C2400\nOWNER,G&M MECHANICAL INC.,Y4000\nATTORNEY,\"STIBBS & CO., PC\",Y4000\nExec Vice President,BNSF Railway,T5100\nOWNER,CLARK ENTERPRISES INC,F4000\nPLANTERS AND CITIZENS BANK,,F1000\nACE ASSET MANAGEMENT,,F2100\nPresident,Star Transport Inc,Y4000\nMEDINA COLON & ASSOC,,Y4000\nDOCENT AT A MUSEUM ( VOLUNTEER,,X4200\nGENERAL MANAGER,VANCAMPEN MOTORS,T2300\nSIEGEL BURNETT ET AL,,K1000\nAVERY INTERNATIONAL,,M1700\nBEHAVIORAL HEALTHCARE PROVIDERS,,H3800\n\"Vice President, Oper\",Performance Food Group - TPC,G2910\nPHYS,UNIVERSITY OF CHICAGO; LEXECON,H5100\nManaging Director,Maxim Group,F2300\nLAWYER,FOSTER MURPHY ALTMAN & NICKEL PC,Y4000\nBILL ARDREY FORESTER,,A5000\nPresident & CEO,Rehabilitation Institute of Chicago,H2100\nCOMMERSBANK AG,,F1100\nPRESIDENT,BURKE BEVERAGE,Y4000\n\"Partner in Charge, G\",Pricewaterhouse Coopers LLP,F5100\nKRAFT AMERICAN,,J5100\nREAL ESTATE DE,SPRING HOLLON REALTY,F4000\nLOBBYIST,A.H.A.,H2100\nSTATISTICIAN,DPHHS,Y4000\nExecutive,Maslon Edelman,Z9500\nWOMEN FOR FAITH & FAMILY,,J7120\nBUSINESS OWNER,C. & H. TRUCK PARTS,Y4000\nSENIOR VICE P,PRUDENTIAL SECURITIES,F2100\nPresident of Productions,Summit Entertainment,C0000\nEducator,The Ryder Company,C1100\nCEO,Sabtech Industries Inc.,D3000\nPhysician,Orthoindy,Y4000\nATTORNEY,DEBEVOISE & PLIMPTON,J5100\nC,CAPITAL RESEARCH & MANAGEMENT CO.,F2100\nEXECUTIVE,VA CREDIT UNION LEAGUE,F1300\nReal Estate Mgt.,Custom Design,Y4000\nSPORTING GOODS,WHOLESALER,M3600\nCHAIRMAN & CEO,DUNAVANT ENTERPRISES,A1100\nOWNER,HEART OF THE SIRE- RESTAURANT,G2900\nAttorney,\"Franklin, Taulbee, Russian\",K1000\nORTHOPAEDIC SURGEON,NORTH COUNTY ORTHOPAEDIC GROUP,H1130\nCHAIRMAN & CEO,GULF & OHIO RAILWAYS,T5100\nENGINEER,BELL CORPORATION,B1000\nMusician,La La Associates Inc.,J7400\nPRESIDENT,MILESTONE,Y4000\nclu,self,J1200\nGOVERNMENT RELATIONS,\"CAPITOL HILL STRATEGIES, LLC\",J1200\nFWI-NYC,,Y4000\nFINANCIAL ADVISOR,THE FALCON FINANCIAL GROUP LLC,Y4000\nSenior V.P.,Sagamore Assoc.,K2000\nPresident,Aspen Kitchen & Bath Co.,Y4000\nManaging Partner,Valuetivity,Y4000\nDirector Of Engineer,Plains All American Pipe Line,Y4000\nWriter,Peanut Worm Productions,Y4000\nKNOWLEDGE SYSTEMS AND RESEARCH,,Y4000\nGLOBAL PETROLEUM CORP,,E1160\nCHIEF EXECUTI,VIRGINIA HOME MEDICAL,Y4000\nFORMER COLLEGE TEACHER,RETIRED,X1200\nMANAGER,CONNEMARA CORP,Y4000\nsupply manager,\"Springfield Florists Supply, Inc.\",A8000\nPILLSBURG WINTHROP,,K1000\nCEO,INKTEL,C1300\nEducator,University Of Miami,J1200\nPHYSICIA,MONMOUTH COUNTY ASSOCIATES,H1130\nIMC,,C5130\nATTORNEY,FMC CORPORATION,M1000\nWILLKIE FARR ET AL,,J7400\nRETIRED FROM LEXIS NEXIS MANAGEMENT,RETIRED,X1200\n\"TRAVEL & TOURISM GOV'T AFFAIRS COUN\",,T9000\nCOO,Hallmark Health Lawrence Memorial Hosp,Y4000\nMath Teacher,Lenape Valley Reg. District,Y4000\nASCG INC,,Y4000\nVP,CENTER POINT ENERGY,E1620\nBUSINESS OWNER,MORGAN MEREDITH,Y4000\nEXECUTIVE,CARECORPS MGMT.,Y4000\nEXECUTIVE,JAMESON/EXECUTIVE,Y4000\nIT Director,Kentucky Democratic Party,J1200\nMEDICAL TRANSCIPTIST,NONE,Y4000\nSPECIAL OLYMPIC RI,,Y4000\nATTORNEY,NEAL AND DAVIS,K1000\nPHYSICIA,ORTHO-CLINICAL DIAGNOSTICS,H1130\nPHYSICIAN - SURGERY,,H1100\nInsurance Agent,\"Newman-Crane & Associates Insurance, I\",F3100\nCEO,\"MUNCIE POWER PRODUCTS, INC.\",T2200\nGovernment Relations,\"Cassidy & Associates, Inc\",K2000\nBRAY ORTHOTICS & PROSTHETICS,,H4100\nCHIEF EXECUTIVE OFFICER,ADCHEMY,Y4000\nHERITAGE B,BROWN-FORMAN CORPORATION,G2820\nRIVER TERMINAL DEV. CO.,,J5100\nOWNER,OUTSIDE EDGE TRADING LLC,Y4000\nSenior Deputy General Counsel,Comcast (CC) of Willow Grove,C2200\nPRESIDENT,RESEARCH DYNAMICS,Y4000\nPITT DOWTY MCGEHEE,,Y4000\nPRESIDENT,S.D.J. ASSOCIATES,Z9500\nAttorney,Stark and Stark,J5100\nFINANCI,NORTHWESTERN MUTUAL FINANCE,F3100\nSoftware Engineer,DolphinSearch,G5250\nchairman,Whelan Associates,Y4000\npsychotherapist-reti,none,Y1000\nChairman,\"HealthFusion, Inc\",G5270\nPresident,Sipco Molding Technologies,M2300\nSales,Voss,Y4000\nChairman,Goodman Golbal Holdings,Y4000\nCEO,DUTCH OIL,E1100\nENTREPRENEUR,THE ZIZO GROUP,Z9500\nBEER DISTRIBUTOR,\"L & F DISTRIBUTORS, LLC\",G2850\nATTORNEY,THE CANANAGH LAW FIRM,K1000\nATTORNEY,GOLDBERG & GOLDBERG,Y4000\nPRESIDENT,JAMES B. NUTTER CO.,F4600\nRESEARCHER,HOOVER INSTITUTION,H5100\nEXECUTIVE,GLOMAD SERVICES LLC,Y4000\nREGIONAL SALES MGR,UNITED PARCEL SERVICE INC,T7100\nCAR DEALER,RIVER CITY CHEVROLET,T2300\nSenior VP,Total Spectrum,Z9600\nD.D.S.,,H1400\nDermatologist,Newnan Deramtology,H1130\nOCEAN GROVE REALTY,,F4200\nPRESIDENT,OAKGROVE CONSTRUCTION,B1500\nSR VP ADMINISTRATION,THE TATITLEK CORPORATION,F4300\nSOFTWARE ENGINEER,\"WELCH ALLYN, INC.\",H4100\nSLAVE,GOVERNMENT,X3000\nCORPORATE SECRETARY,FARNSWORTH COMPANIES,F4000\nDELTA WOODSIDE,,Y4000\nAstrologer,Self-Employed,G5000\nCERTIFIE,GURSEY SCHNEIDER & CO. LLP,Y4000\nMANAGING PARTNER,SOROS FUND MANAGEMENT,F2700\nPresident,Congress First,Y4000\nJOHN HENRY FOSTER MINNESOTA,,G3000\nCHAIRMAN,PAXSON COMMUNICATION,C2100\nEXEC,AMERICAN MEDICAL SECURITY INC.,F3200\nPRODUCTION OPERATIONS MANAGER,CITIZENS,F1100\nDIAGNOSTIC RETRIVAL,,D3000\nPresident & CEO,Rofous Inc,Y4000\nPROPRIETOR,BURGESS WOOD FLOORS,B3000\nAttorney,Wunder Diefenderfer Cannon...,Y4000\nLAWYER,\"TRADITION PROPERTIES, INC.\",F4000\nPresident,Consolidated Natural Gas Co.,E1620\nOWNER,DOVIN FUNERAL HOME,G5400\nPRESIDENT &,CONTINUOUS HEALTH PART,H2100\nUNIVERSITY OF PENNSYLVANIA HEALTH &,,H1130\nATTORNEY,BROWN WINFIELD & CANZONERI,K1000\nBUSINESS ADVISOR,BUSINESS ACCESS,Y4000\nWINDSOR AUGHTRY CO,,Y4000\nATTORNEY,BERGSTEIN & ULLRICH,Y4000\nFOELLINGER FOUNDATION IN,,X4100\nReal Estate Develope,Wagner World,Y4000\n\"President, Chief Executive Officer\",West Tennessee Healthcare,H2100\nPHYSI,\"NADLER PHARMA ASSOCIATES, LLC\",J1200\nDirector Planning &,SWACO,Y4000\nMarketing,\"CardioNet, Inc\",H1130\nBEE LINE INC,,C2200\nRealtor,Real Estate Services of Ct,B2000\nconsultant,Madeline Snow and Assoc.,Y4000\nPRESIDENT,Magee Enterprises,Y4000\npublishing,Evergreen Marketing Group,Y4000\nTeacher,John Carroll University,H5100\nINVESTMENT BAN,WEST FINANCIAL GROUP,Y4000\nJHOON RHEE FOUNDATION,,Y4000\nATTORNEY,ALLIANCE FOR JUSTICE/ATTORNEY,J9000\nPT,Rehab Institute at Sherwood Plaza,H1700\nCardiovascular Surgeon,Cleveland Clinic Foundation,H1130\nPRINCIPAL,STRIBLING COMPANY,F4700\nDESIGN CONSULTANT,PHEROMONE,Y4000\nHOSPITAL,GREATER NEW YORK HOSPITAL,H2100\nDECOT HY-WYD,,Y4000\nAttorney,\"Hobbs, Straus LLC\",K1000\nACCOUNTS PAYABLES,\"W. STEVEN WILSON, MD\",H1100\nA,KENNEDY COVINGTON LOBDELL HICKMAN,Y4000\nUNIVERSAL WEARPARTS,,M2300\nBUSINESS EXE,OHIO MACHINERY COMPANY,G5300\nPOINDEXTER & DOUTIE INC,,Y4000\nTruck Driver,Schneider National,K1000\nRIVER EXPEDITIONS,,Y4000\nH&R Block,Chairman,J1200\nREALTOR,HETHERINGTON PROPERT,F4000\nOffice Manager,Doracon Construction,B1000\nEXECUTIVE,CTI INDUSTRIES CORPORATION,Y4000\nSr Manager Bus Operations,Pfizer Inc,H4300\nMANAGER,CHESTER ENGINEERS,B4400\nATTORNEY,\"NADLER, PRITIKIN, AND MIRABELLI, LL\",Y4000\nCOMPUTER PROGRAMMER,TEC,J1200\nPRESIDENT,KANDERS AND CO.,F1400\nBONNETT FAIRBAUN,,K1000\nHOTEL DEVELOPMENT,\"STONEBRIDGE HOTELS, LLC.\",T9100\nDIRECTOR OF US OFFICE,\"SEOUL ST. MARY'S HOSPITAL\",Z9500\nMOVER,MOWHAWK MOVING & STORAGE,T7000\nSMALL BUSINESS OWNER,THE WOLVERINE GROUP,Y4000\nPARTNER,DALENA/BENIK & ASSOCIATES,F3100\nHMI ENTERPRISES,,Y4000\nOrthopaedic Surgeon,West Idaho Orthopaedics,H1130\nAttorney,Fidelity Homestead Savings,F1200\nDirector,MGM,C2400\nMarketing Director,Kraft Foods,G2100\nRestaurant Owner,\"Phillips Food, Inc\",G2000\nADJUNCT UNIVERSITY FA,SELF EMPLOYED,Y4000\nFAB SHOP,SELF-EMPLOYED,G0000\nAttorney,Boland & Co,K2000\nBroker,Accent Mortgage Consultants,F4600\nOWNER,\"ANDREW'S AT THE WESTBROOK\",Y4000\nA L RIVERA & ASOCIADOS,,Y4000\nCIVIL JUDGE,BERNALILLO COUNTY METROPOLITAN COURT,X3200\nSOCIOLOGIST,COE-PELL,Y4000\nOPPORTUNITY ROCKS INC,,J7400\nCEO/Engineer,\"MEMS Insight, Inc.\",Y4000\nVICE CHAIRMAN,CHAMBER DEVELOPMENT CORP.,E3000\nPRINCIPAL,TOMAH AREA SCHOOL DISTRICT,X3500\nCAREY FLOWERS,,Y4000\nCONSULTANT,COVINGTON & BURLING,K2000\nPRESIDENT,P.J. GRECO SONS INC./PRESIDENT,Y4000\nArchitect,Arcadis,E2000\nDeputy Attorney,City & County of San Francisco,X3000\nMIKE BENET MFG,,M3100\nSELF-EMPLOYED,DRYMALLA CONSTRUCTION,B1500\nConsultant,Sungard Higher Education,C5120\nDiagnostic Radiologi,\"Radiology Associates of Western PA, PC\",H1130\nManagement--part time,Arthur Andersen LLP,F5100\nProgram Mgr. Trade Mktg. Promo,US Smokeless Brands Inc.,A1300\nRESIDENTAIL DE,REGIONAL DEVELOPMENT,Y4000\nHEAD OF SCHOOL,SUMMIT MONTESSORI,Y4000\nContractor,\"Rhino Construction, LLC\",B1500\nTeacher,Free Lance,J7400\nBUSINESS EXECUTIV,SONIC CORPORATION,Y4000\nNEW ENGLAND POWER,,Y4000\nSales,Active Sports Inc,Y4000\nArchitect,feder and Stia LLP,Y4000\nAttorney,\"Manett, Phelps & Phillips\",K1000\nCAROLINA REGI,,Y4000\nSR. VP,ADS VENTURES,K2000\nBUBALO CONSTRUCTION,,B1000\nORTHO,SAN ANTONIO ORTHOPAEDIC GROUP,H1130\nATTORNEY,LAW OFFICES OF CSABA PALFI,K1000\nBUSINESS MANAGER,CAPITAL ONE BANK,F1000\nMACKS LIQUOR,,G2840\nENVIRONMENTAL ELEMENTS INC,,E2000\nFRUIT GROWER,HANEYS APPLEDALE FARM,A1000\nATTORNEY,GOUBEAUX & GOUBEAUX,K1000\nTest Pilot,United States Air Force,X5000\nActor,\"Buffalo Nickel, LLC\",Y4000\nPARTNER,\"MAGNOLIA MARKETING, L.L.C.\",J5100\nNon-Profit Manager,AvaazOrg,Z9500\nEXECUTIVE,INTERARCH DESIGN,B4000\nMUEHLENKAMP ERSCHELL,,Y4000\nDIRECTOR BUSINESS DEVELOPMEN,ORACLE,C5120\nALDER CREEK INTERNATIONAL,,Y4000\nCONSU,ARTHUR J. GALLAGHER & COMPANY,F3100\nHALLELAND LEWIS NILAN SIPKINS & JOH,,K1000\nCHAIRMAND & CEO,\"WALTER P MOORE AND ASSOCIATES, INC.\",B4000\nCOMMUNITY BANK PRESIDENT,M&I BANK,F1000\nCHARLES R STEWART INC,,Y4000\nSTEVEN FINE ASSOCIATES INC,,Y4000\nREAL ESTATE BROKER,CALDWELL BANKERS,F4200\nOWNER/C.E.O.,K-DESIGNERS,Y4000\nMD,YALE,H5100\nSTUDIO TEACHER,CAST & CREW PRODUCTION PAYROLL,Y4000\nKANTRON-SPAHT-WEAVER-BUTLER ET AL,,Y4000\nCOMMERCIAL BANKING,PLATINUM BANK,Y4000\nCARGILL FINANCIAL SRV CORPORATION,,A1000\nReal Estate Broker,Comm Of Ma,X3000\nPARTNER,\"HAMLIN CAPITAL MANAGEMENT, LLC\",F2100\nTHORNDIKE COMPANY,,Y4000\nDEBARTOLO LANDSCAPING/CO-OWNER/LAND,,B3600\nVP,Crestline Bldg Corp,Y4000\nPRESIDENT &,COLUMBUS BRICK COMPANY,B5100\nSiemens,,C5000\nCHIEF EXECUTIVE OFFICER,ROLLING PLAINS MEMORIAL HOSPITAL,H2100\nAttorney,\"Miller, Earle & Sharks,PLLC\",K1000\nPOLICY ADVISOR,FEDERAL GOVERNMENT,J9000\nInformation Requeste,\"Vorys, Sater, Seymore & Pease\",K1000\nL&L OIL CO INC,,E1100\nNURSE PRACTITIONER,EAST END HOSPICE,Y4000\nATTORNE,HAMES ANDERSON & WHITLOW PS,J1200\nEngineer,Boswell  & Boswell,B4400\nBANKER,ROUND TABLE INVESTMENT PARTNERS L.L.C.,F2100\nREAL ESTATE BROKER,URBANE RESIDENTIAL SPECIALISTS,Z9500\nMoney Management,Hunter Global Investor,F0000\nCLAJON GAS CO LP,,E1140\nEDWARDS TOLSTEDT & FRICKLE,,Y4000\nCEO,Texas Federal Credit Union,F1300\nAUTOMATION RESEARCH,,Y4000\nSOLOMON SCHECHTER DAY SCHOOL,,J7400\nR & S DISTRIBUTING INC,,Y4000\nCARDIOTHORACIC SURG,EASTON HOSPITAL,H2100\nLUMBER SALE,SPECIALTY WOOD PRODUCTS,Y4000\nWriter--Student,Self-Employed,J7400\nManager,Chevron Stations Inc.,E1170\nOSLO INTERATIONAL SCHOOL,,Y4000\nCEO,LUCERO FINANCIAL,Y4000\n,CHEMICAL MANAGEMENT ASSOCIATES LLC,M1000\nVERIZON/VICE CHAIR/PRESIDENT,,C4100\nSELF/COMMUNICATIONS/CONSULTANT,,C0000\nADVERTISING ARTIST,,G5210\nINVESTMENT MANAGEMENT,\"ALTUS CAPITAL PARTNERS, INC.\",M0000\nDAIRYMAN,DERUYTER BRO. DAIRY,A2000\nPsychotherapists,Self,G0000\nSENIOR,MICHAEL MAZZEO ELECTRIC CORP,Y4000\nCEO,WEBEQUITY SOLUTIONS LLC,Y4000\nCPA,Nihill & Rieltey PC,F5100\nNATL ASSOC FOR PUBLIC INTEREST LAW,,X4000\nPartner,\"Wash, Council Ernst & Young\",K2000\nRETIREM,WASHINGTON STATE UNIVERSITY,J1200\nDIR OF CORP ACCT,HARDINGE,Y4000\nPSYCHOLOGIST,MASSACHUSETTS SCHOOL OF PROFESSIONAL P,Y4000\nPHYSICIAN,NM CANCER CARE,Y4000\nREAL ESTATE SALES,BAJRAKTARI MANAGEMENT CORP,F4000\nHERITAGE MARK,,Y4000\nCAVALIER HOME BUILDERS,,Y4000\nPRESIDENT,UNISON INDUSTRIES,T1300\nManager/ T.V. and Fi,Kragen & Company,Y4000\nCONS,\"ROXBORO MANAGEMENT GROUP, INC.\",Y4000\nNH AMBULANCE SERVICE,,H2200\nPhysician/Investment Mortgage,\"Jordan Enterprises, Inc.\",Y4000\nATTORNEY,\"BACON WILSON, PC\",K1000\nBUILDING MAINTAINANCE,,Y4000\nEngineer,\"Shread-Kuyrkendall & Associates, Inc\",Y4000\nLEAVITT COMMUNICATIONS,,Y4000\nBANKER,Community South Bank,Y4000\nMARKETING,TML-IRP,Y4000\nExecutive,Jenkins Brick,B5100\nSALES,\"REGIONS INSURANCE, INC.\",F4500\nLYNN HILL & ASSOCI,,Y4000\nartist nurse,retired,J1200\nAttorney,Block Markus & Williams`,K1000\nAccounts Payable Man,Silver Stone Homes,B2000\nCOST TRADING CORPORATION,,Y4000\nLECTURE AGENT,SELF EMPLOYED,G0000\nGroup Fleet Manager,\"Enterprise Leasing Company of Georgia,\",T2500\nBUSINESSMAN,TRENWA I.N.C./BUSINESSMAN,Y4000\nPRESIDENT,GREAT AMERICAN SEAFOOD IMPORTS,E4100\nManager,Carnall Hall,Y4000\nCOUNSELOR,ORTEGA CONSELING CENTER,Y4000\nActress,Nicole Meyers,Y4000\nMarketing,The Almond Company,A1400\nDOCTOR,EZRIN FAMILY CHIROPRACTIC,H1500\nINOGRAPH/CEO/GRAPHIC DESIGNER,,Y4000\nPHYSICIAN & SURGEON,SELF-EMPLOYED,J1100\nPRES,UMASS MEMORIAL MEDICAL CENTER,H2100\nELROD DEVELOPMENT L.L,SELF-EMPLOYED,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,ELECTRONIC CHROME & GRINDING,Y4000\nSlef,,Y4000\nEnviro Consultant &,Obrein & Co,Y4000\nTax Manager,Atlas Air,T1500\nCEO & Chmn.,Pepper Constr.,B1500\nVice President,Omaha Truck Center,T3100\nLAYMAN LUMBER CO,,G1200\nOWNER,MARKETING/OWNER,G5280\nTOMAS TORRES CPA,,F5100\nParalegal,Qualcomm,C4300\nPartner,\"Little Medeiros Kinder Bulman&Whitney,\",B0500\nCITY COUNCIL STAFF,CITY OF SAN DIEGO,X3000\nGOVERNMENT A,MICHELIN NORTH AMERICA,T2200\nInsurance Agent,MSH Insurance,F3100\nATTORNEY,ANDERSON + WANCA,Y4000\nFINANCE EXECUTIVE,NEXTERA ENERGY RESOURCES,E1600\nREGISTERED NURSE,NEWTON-WELLESLEY HOSPITAL,H2100\nREAL ESTATE BROK,KLM PROPERTIES INC,F4200\nMarketing/Merchandise/Category Managem,Gasamat/Smoker Friendly,G4300\nNEW JERSEY HOSPITAL ASSOCIATION,,H2100\nWholesale Electric Equipment,Linear LLC,C5000\nRETIRED,NO EMPLOYER,K2000\nSewing Contractor,Self-Employed,Y4000\nVP SALES,JELLY BELLY CANDY COMPANY,G2200\nGREAT AMERICAN TRADING CO,,K1000\nHUMAN REL,CENTENNIAL MEDICAL CENTER,Y4000\nMUSICIAN,CITY CENTER OF MUSIC AND DRAMA,Z9500\nManagement Consultant,Organic Growth Partners LLC,Y4000\nSOFTWARE DEVELOPMENT,\"VANSAI TECHNOLOGIES, INC.\",C5120\nATTORNEY,LARA SHAPIRO VITEK,K1000\nMSW (socialworker),Not employed,Y1000\nDUBLIN CONSTRUCTION,,B1500\nAIR CHARTER SOLUTIONS.COM,,Y4000\nAtty-Consultant,\"Lamont Sage, LLC\",Y4000\nOWNER,DOMENIGONI-BARTON PROPERTIES,F4000\nATTORNEY,TARRANT COUNTY,JH100\nProgram Coordinator,Heart of America Family Services,Y4000\nVICE PRESIDNET,BERGNER & BOCKORNEY,K2000\nDIRECTOR OF,IIT RESEARCH INSTITUTE,H3400\nPresident/CEO,WD Service Co,Y4000\nWHELCHEL BROWN READDICK,,Y4000\nPRESIDENT,THE HARBOUR GROUP,M0000\nACCOUNTANT,GOCIAL LLC,Y4000\nRETIRED,NEW ADVENTURES/RETIRED,Y4000\nNOSSAMAN GUTHER ET AL.,,K1000\nSIOUX VALLEY HOSPITAL ASSOCIATION,,H2100\nIR Holdings,Director,G4200\nAttorney,Powell Godstein,Y4000\nATTORNEY,TROOP STEUBER ET AL.,K1000\nAPPRAISER,BAYHILL APPRAISAL,Y4000\nArchitect,\"C.T. Hsu & Associates, PA\",B4200\nA J D CONSTRUCTION CO,,B1500\nBusinessman,Knapp Shoes,M3200\nStaff Pharmacist,American Pharmaceutical Services,H1750\nADVISOR TO MANAGEME,\"PETRO-HUNT, LLC\",E1100\nSR. V.P.,INTEGRITY LIFE,X1200\nHOLIDAY,,T9100\nJIM MCNATT AUTO GROUP,,Y4000\nOWNER,ONE STOP FOOD STORE,G2400\n\"GIBSON, DURN & CRUTCHER\",,K1000\nHEALTH INSURANCE BROKER,JW SMALL GROUP BENEFIT SPECIALISTS,Y4000\nExecutive,\"HIGH VOLTAGE POWER SYSTEMS, INC.\",E1600\nINDEPENDENT CONTRACTOR,,B3000\nUPTOWN DRUG AND GIFT SHOPPE,,G4600\nPresident Commercial RE,KPH,Y4000\nOwner,North End Auto Wrecking Inc.,T2000\nEMERITUS ASSISTED LIVING,,H2200\n\"RALPH'S HOME SALES\",,Y4000\nSupermarket Owner,\"Discount Foods, Inc.\",Y4000\nBUSINESS OWNER,LAKELAND TOYOTA,T2310\nBusiness Manager,\"Koch Membrane Systems, Inc.\",Y4000\nAttorney,Scarinci & Hollenbreck,K1000\nADMINISTRATOR,NEBRASKA DEPARTMENT OF EDUCATION,Y4000\nATTORNEY,\"QUIGLEY, DILL & QUIGLEY LAW OFFICES\",K1000\nASSOCIATE GENERAL COUNSEL,\"HEALTH CARE REIT, INC.\",H2200\n\"President, Finance\",\"Valuerich, Inc\",Y4000\nREAL ESTA,HOME REAL ESTATE - COTNER,F4200\nCEO,Castle Medical,Y4000\n\"VP, SALES\",\"TENSION ENVELOPE CORP/VP, SALES\",M7000\nVICE PRESIDENT,HANDY ANDY,G2400\nRequested,,E1120\nEQUITY ANALYST,WADDELL & REED INVESTMENT MGT.,F2100\nPresident,Reidy International Inc.,Y4000\nAttorney,\"Rogers,Ehrhardt and Weber, LLC\",Y4000\nAMBIENTI U S A,,M4100\nOWNER,X CORP,Y4000\narea manager,Veolia Enviromental Services,E3000\nDirector of Operations,\"Mcdonald's Corporation\",G2900\nDIRECTOR,LAURENS ELECTRICAL COOP,Y4000\nVICE PRESIDENT,EMC INSURANCE COMPANIES,Z9600\nPRESIDENT,THE VELASQUEZ GROUP,K2000\nDUPONT ENVIRONMENTAL REMEDIATION SE,,M1000\nPRESIDENT & CEO,TITAN,G5230\nKEITH STEPHENSON,KEITH STEPHENSON,Y4000\nConsultant,U.S. Deparment Of Education,X3500\nArchitect,Stubbins Associates,Y4000\nEXECUTIVE,GUARDSMARK,Y4000\nTHOMAS SNELL JAMISEN RUSSELL,,K1000\nPACKAGING INCORPORATED,,Y4000\nTEACHER,WEST NEW YORK BOARD OF EDUCATION,J1200\nCEO,MPEG LA LLC,Y4000\nPHYSICIAN,ALAMANCE SURGICAL ASSOCIATES,H1100\nRETIRED,SHAREHOLDER,A5000\nDIRECTOR OF FINANCE,INDIANA UNIVERSITY,H5100\nPublic Relations/Affairs,City of Seattle,X3000\nOWNER,MANNA CLINICAL CONSULTING,Y4000\nPRESIDENT & CEO,METAL CRAFTERS,M2000\nSouth Dakota Healthcare,Lobbyist,K2000\nGOODYEAR & ASSOCIATES,,F5200\nVice President  Nati,ESPN Affiliate Sales  Inc.,C2200\nAdministrator,Johnson Regional Medical Center,H2100\nCONSTRUCTI,REDDICO CONSTRUCTION CO.,B1500\nCHIE,NORTHERN PHARMACY & MED EQUIP.,G4900\nSelf,Francis Drilling Fluids,E1150\nConsultant/Executive,EcoShelf/UCUA,J1200\nSelf Employed,retired,X1200\nFREDDIEMAC,CHAIR,F4600\nBENECH FARMS,,A1000\nPRESIDENT,PARKVALE SAVINGS BANK,F1200\nMARKET SQUARE RESTAURANT,,G2900\nPETROLEU,CORDILLERA ENERGY PARTNERS,E1000\nCHATEAU PROPERTIES,,F4400\nPRESIDENT,INFINITY OIL,E1100\nVice President-Construction,\"Miken Specialties, Ltd.\",B0500\nWI STATE DEPARTMENT OF CORRECTIONS,,Y4000\nOwner,Macy Industries,G0000\nPROGRAMMER,HNAS,Y4000\nEXEC. DIR.,E. HAMPTON HEALTH CARE CTR.,Y4000\nLIFE INSURANCE,GUARDIAN,F3300\nDALLAS COMMERCIAL PRINTING,,C1300\nCEO,Drummond Company Inc.,E1210\nManager,Yellow Book Usa,Y4000\nREAL ESTATE,DEDEAUX PROPERTIES,Y4000\nPROFESSOR,SUNY-STONY BROOK,Y4000\nCHAMPION ENERGY CORPORATION,,E1000\nSIGNALMAN,CSX,LT400\nBRANDSMART USA,,Y4000\nAdvertising,\"Triple Double, Inc\",Y4000\nMCCALLA-RAYMER,,K1000\nEXECUTIVE DIRECTOR,DOMESTIC VIOLENCE CENTER,J7400\n\"CFO, O'BLENESS\",OHIOHEALTH,H2100\nGrowth & Prosperity PAC,,J2200\nPHYSICIAN,CALIF. DEPT. OF CORRECTIONS,X3200\nCEO,M. Spiegel & Sons Oil Corp.,E1100\nNUTRITIONIST,Univ. of NV Reno,H5100\nComputer Network Eng,I T T International,Y4000\nWESTATE CONSTRUCTION,,B1000\nPRESIDENT,\"SANDY ROTHSCHILD & ASSOCIATES, LINC\",G5210\nPROGRAM DIR.  LITERACY COUNCIL,RETIRED,X1200\nTech,Verizon,J1200\nPSYCHARIST,CAMERON AND ASSOC.,Y4000\nAdministrator,Pediatric Surgeons of Phoenix,H1130\nOWNER,\"MANOR DESSERTS, INC.\",Y4000\nCONSULTANT,\"SUSAN P KENNEDY, INC\",Y4000\nBanking Anylist,Sun Life Of Canada,Y4000\nNOKIA,,C4000\nChairman of the Boar,\"United Liquors, Ltd.\",G2850\nINVESTME,ASSET STRATEGY CONSULTANTS,F2300\nPharmacist,Teva Pharmaceuticals USA,H4300\n\"SR. VP,\",WALT DISNEY PARKS & RESORTS,C2000\nExecutive,Academic Enterprises Inc,Y4000\nExecutive,INFORMATION REQUESTED PER BEST EFFORTS,G6400\nZARROW HOLDING,,F7000\nRegistrar of Voters,Town of Farmington,X3000\nUS House of Representatives,,Z1100\nHOUSSIERE DURANT HOUSSIERE &,,K1100\nE & Y KENNETH LEVENTHAL R,,Y4000\nLobbyist,The Cypress Group,Y4000\nMANAGER,\"GRAY HAWK SYSTEMS, INC\",Y4000\ncattle,retired,X1200\nATTORNEY,\"GOLDBERT, WEPRIN AND USTIN\",K1000\nCOMMUNITY SERVICES,SELF EMPLOYED,Y4000\nIMS ASSOCIATES,,G5210\nChief Executive Officer,\"Globerian, Inc\",Y4000\nADMINISTRATIVE MANAGER,MGH,H1000\nPresident,Teamsters Local 500,LT300\nRetired,Self-Employed,J7400\nGENERAL CONTRACTOR,K. R. CONSTRUCTION,B1500\nOwner,Pieper Houston Electric Lp,Y4000\nCEO,\"ELEVATOR SERVICES, INC.\",B3000\nSales,Rockland Research,Y4000\nCREATIVE DIRECTOR,BEST BUY,G4200\nMANAG,TOTAL PETROCHEMICALS USA INC.,M1000\nCARTOGRAPHER,DOD NGA,Y4000\nADMINISTRATOR,PRECISION ASSOCIATES,Y4000\nSCHOOL COUNSELOR,NONE,X1200\nEDUCATOR,CLEARWATER COLLGE,H5100\nFINANCE,VEIN RX,Y4000\nMANAGER,NAVISITE,C5130\nEXECUTIVE DIRECTOR,URBAN LEAGUE OF PHILADELPHIA,Y4000\nCLINICAL PS,WRIGHT STATE UNIVERSITY,H1110\nCEO,MILLION AIR,Y4000\nMETRY & METRY,,K1000\nSales,CS,J1200\nBOOKEEPER,MID-ATLANTIC CONTRACTOR,Y4000\nCERTIFIED P,COLEMAN & WILLIAMS LTD.,Y4000\nPHYSICIAN,ORTHOPEDIC CENTER,H1100\nP C JACKSON PLBG C INC,,Y4000\nEXECUTIVE,LEE WESLEY & ASSOCIATES,K1000\nYOUNG REPUBLICANS,,J1100\n,OCONNOR DAVIES MUNNS & DOBBINS LLP,J1100\nEXECUTIVE VICE PRESIDENT,\"HP HOOD, LLC\",A2000\nLegal Assistant,Walsh Colucci,J1200\nPresident,R.H. BARRINGER DISTRIBUTORS,G2850\nCEO AND DI,CORINTHIAN COLLEGES INC.,H5200\nBUSINESS OWNER,\"CONNORS MCCANT, INC.\",Y4000\nVP of Gov Affairs,The DRC Group,Y4000\nCEO,YWCA OF MINNEAPOLIS,G5800\nResearch Chemist,Shell Global,E1150\nSHRAGGE & CO,,K1000\nElectrician,Cook Industrial Electric,A1600\nChairman,First Mortgage Corp.,F4600\nCEO,LAKESIDE INDUSTRIES,Y4000\nPartner,\"Ensoftek, Inc\",Y4000\nAccountant,Cpa,J1200\nExecutive V.P. & COO,\"National Retirement Services,\",Y4000\nCOO,GM HOLDINGS,F0000\nREAL ESTATE DEVE,\"DWARES GROUP, INC.\",F4100\n\"SENIOR VICE PRESIDENT, CMO\",MUTUAL TRUST FINANCIAL GROUP,F3300\nShore Development,Self employed,F4100\nEmergency Physician,Carson Tahoe Emergency Physicians,Y4000\nQUAD/GRAPHICS INC./DIRECTOR OF POST,,C1300\nATTORNEY,JASPAN & SCHLESINGER,K1000\nCONSULTANT,SHELFISH ENVIRONMENTAL SERVICES,Y4000\nAttorney,Eckert Seamans Cherin & Mellott LL,J7400\nALVARADO & GERKER,,Y4000\nSUAREZ CORP INDUSTRIES,,G4800\nCONSULTANT,LANDRUM AND BROWN,Y4000\nMORTGAGE BROKER,MEREDITH & GREW,F4200\nCEO,COGNIMEM,Y4000\nNATIONAL SECURITY COUNCIL,,G5290\nINSURANCE AGENT,M.J. INSURANCE INC.,F3100\nSTATE WATER RESOURCES CONTROL BOAR,,E5000\nVice Chairman/CFO,Fannie Mae,F4600\nREAL ESTATE INV,GUTIERREZ GROUP LLP,J1100\nAccountant-Office Ma,The Ashton Co,Y4000\nADMINIST,MOUNT SINAI MEDICAL CENTER,H2100\nOwner,H2o Restaurant & Bar,G2900\nPUBLIC AFFIARS SCHOLARSHIP PROGRAM,,Y4000\nPresident,The United Company,F0000\nHAROLD PIKE CONSTRUCTION,,B0500\nSR. DIRECTOR,GES EXPOSTION SERVICE,M2300\nRE/MAX MOUNTAIN PROPERTIES/REAL EST,,F4200\nResearch Director,Wabc-Tv,C2100\nPHYSICIAN,MONTGOMERY REHAB. ASS.,Y4000\nU S EEDC,,X3000\nCOO,INDORSE TECHNOLOGIES,Y4000\nScientist,Replidine,Y4000\nClean Energy Policy,State of New Mexico,Z9500\nManufacturing Agent,Marketing Pros Inc.,Y4000\nTREASURER,PRODUCERS LLOYDS INS CO,F3100\nOWNER,NORTH COUNTREE CHRISTMAS,Y4000\nLEGAL SECRETARY,PLUNKET & COONEY,J9000\nSELF/CONSULTANT/ REALTOR,,F4200\nSTATE REPRESENTATIVE,\"STATE OF LOUISIANA, CITIZENS OF DISTRI\",X3000\nAd Sales,Self,J1200\nAttorney,\"Suemori & Associates, LLLC\",K1000\n\"WOODWARD & O'DONNELL PC\",,Y4000\nECONOMIST,L-3,Y4000\ncollege professor,Bard College,J5100\nLA COLLEGES & UNIVERSITIES,,H5100\nADMISSIONS,CHRIST SCHOOLS,Y4000\nNATIONAL SALES MANAGER,LANGSTON COMPANIES,Y4000\nPhysician/Professor,Stamford,J1200\nCONSULTANT,SELF EMPLOYED,G5400\nco-chair,OCRF.org,Y4000\nC.E.O.,\"MILLER'S OF COLUMBIA\",Y4000\nCONSULTANT,MRW PARTNERS L. L. C.,Y4000\nPresident,\"J C L Grading & Construction, Inc.\",B1500\nINDIANA NATIONAL AIR GUARD,,Y4000\nAttorney,Traci M Kornak PC,Y4000\nHealthcare Policy,Harbage Consulting,Y4000\nSIMMONDS RESTAURANTS,,G2900\nAdministrator,\"Cook County Clerk's Office\",X3000\nPROFESSOR,U OF PENN,H5100\nGOVERNMENT CON,THE FIORENTINO GROUP,Y4000\nAttorney,Centinela Capital Partners,F0000\nGEISINGER FOUNDATION,,H2100\nAUTO DEALER,BAIERL INC,Y4000\nCPA,WITHUM SMITH & BEAMON,H5100\nDiagnostic Radiologi,\"Mendell & Bew MD's PC\",H1130\nLACHLAN ALLIANCE,,J1100\nPETROCOMM COMMUNICATIONS INC,,Y4000\nPRES.,ALBERT A. WEBB & ASSOC.,B4000\nMANAGING PART,CHOATE HALL & STEWART,K1000\nself-employed,none,JD100\nINFO REQUESTED,BAKERS DOZEN,Y4000\nHOLLINS & FIELDS LLP,,Y4000\nVT INC,,Y4000\nROCHELLE HUTCHESON & MURPHY LLP,,K1000\nLBJ SCHOOL,,H5100\nVP,\"PDC Logistics, Inc\",Y4000\nANAPOL SCHWARTZ,,K1000\nAdministrative Assistant,Midwest Air Technologies,M0000\nPARTNER,MAUTZ BAUM & OHANLON,Y4000\nBANKING,LEHMAN BROTHERS,F2100\nGREATER CLEVE AUTO DEALER,,T2300\nATTORNEY,\"SALTS, MONGELUZZI, BARRETT BENDESKY\",K1000\nPROPERTY MANAGER,GLOBAL MANAGEMENT,Y4000\nATTORNEY,JOHN MCGARVEY ATTORNEY AT LAW,K1000\nProfessor,UA,H5100\nBUSINESS OWNER,THE BENJAMIN GROUP,Y4000\nFisheries Consultant,Self employed,E4100\n\"SENIOR DIRECTOR, FED GOVT AFFAIRS\",\"COMCAST/SENIOR DIRECTOR, FED GOVT A\",C2200\nAccount Manager,Frontier Technologies,Y4000\nAttorney,Centerline Capital Group,F4200\nProfessor & Clinical Psy,Brandeis University & Se,H5100\nBANK OF DALE,,F1100\nDirector of Safety and Info Security,Security Storage Company,T3100\nCARDOLITE CORP,,M7000\nOcuto Blacktop and P,Self-Employed,G0000\nDoctor,East Side Pediatrics,H1130\nSUN ALLIANCE,,Y4000\nVP IT & CIO,ALCON LABORATORIES INC.,H4000\nINSURANCE,SCHUSTER PLANNING CO.,Y4000\nJOYNES 7 BIEBER,,K1000\nDoctor,Cognex,Y4000\nVP,SCOTT HOLDINGS,H3000\nTeacher,Barnard School,Y4000\nDIRECTOR,US EPA,X3000\nAttorney,Starent Networks,Y4000\nOWNER,THE OASIS,Y4000\nHealthcare,Colorado Plains,H2100\nRABBI,SELF,J5100\nREAL ESTATE INVESTOR,DIAMOND J MANAGEMENT,F4000\nDIVISION MANAGER,FILLMORE REAL ESTATE,F4000\nWEIDNER INVESTMENT,,Y4000\nINTERNATIONAL FREIGHT,PRO CARGO USA,Y4000\nCONLON AND COMPANY,,F4000\nATTORNEY,BARTLIT BECK HERMAN PALENCHAR & SCC,K1100\nHealth Researcher,Consultant,G5200\nWEAVER POTATO CHIP CO,,G2100\nCEO,NEW DOMINION,E1120\nBUILDING CONTR,\"AMERICA'S HOME PLACE\",Y4000\nmassage therapist,Hyatt,T9100\nCOMMERCIAL REAL ESTATE,\"DAHLEM COMPANY, INC.\",F4000\nCOMPUTER PROGRAMMER,CA TECHNOLOGIES,C5120\nGLOBAL COMM. ASSOCIATE,WUNDERMAN,G5220\nPHYSICIAN,GENEVA EYE CLINIC,H1120\nPublic Relations,Conover Tuttle Pace,G6500\nJudge,Administrative Office of the Courts,X3200\nLAWRENCE COUNTY VO-TECH,,X3500\nLAWYER,RUTGERS LAW SCHOOL,H5170\nGALLO CATTLE CO,,A3000\nSTOCK AN,WINSLOW CAPITAL MANAGEMENT,F0000\nPresident,Miller Ford Lincoln Sales,T2300\nSpecial Effects Mech,Self-Employed,G0000\nUNITED SERVICE AUTOMOBILE ASSO,,F3400\nKANSAS GAS SERVICE,PRESIDENT,E1140\nINS AGENT,BILL DALE INSURANCE,F3000\nMAX PAK,,M7100\nTreasurer,Hiebert,Y4000\nDISABLED VETERAN,U. S. M. C.,Y4000\nOwner,Accustaff,G5250\nINFORMATION TECHNOLOGY,SAIC,D3000\nSoftware Engineer,Tabula Inc,Y4000\nCEO-Non Profit,Self employed,Y4000\nREAL ESTATE,CAMPICO,Y4000\nRestaurateur,Nuevo Laredo Cantina,G2900\nsoftware engineer,Suss Microtec Inc,Y4000\nSoftware Engineer,\"Integral Access, Inc\",Y4000\nDirector of Operations,ADEQ,Y4000\nOWNER,CHILDER`S FINANCIAL SVC.,F0000\nRetail,Old Navy,J1200\nBAKER & BETTS UP,,K1000\nPRESIDENT,CSX CORPORATION,T5100\nSCHOOL TRUST LANDS ADMIN,,H5000\nMANAGER,STACY AND WITBECK,B4000\nBUSINESS OWNER,KEMARK FINANCIAL SERVICES,F0000\nSoftware Engineer,Officedepot,G4600\nSenior Paralegal,Arnold & Porter,K1000\nHERMSMEYER PAINTING CO INC,,G1200\nQUIBLE ASSOCIATES,,Y4000\nBusinessman,CAI,C5130\nWATLAND INC,,F1100\nS-GICSD,,Y4000\nExecutive,Caxton-Isenan Capital,F2600\nConsultant,W H,Y4000\nFINANCIAL,PRIMUVIRA,J7500\nATTORNEY,\"STONE & BAXTER, LLP\",K1000\nDIRECTOR OF HUMAN RESOURCES,THE SEGAL CO.,Y4000\nSR. DIR. BENEFIT SERVICES,CORNELL UNIVERSITY,Z9500\nAMERICAN STOCK EXCHN,,F2400\nTECH,C.S.U.N.,Y4000\nFinance,Intercontinental Exchange,F2400\nGULF COAST BANK,,F1000\nPRESIDENT,FAIRFIELD FINANCIAL,F0000\nCONSUMER PROPERTIES,,Y4000\nDEPUTY COMMISSIONER OF,WYTHE COUNTY,J1200\nTHERMO KING CHRISTENSEN,,Y4000\nSVP STRATEGY & PLANNING,REYNOLDS AMERICAN INC.,A1300\n,R.B. GAY CONSTRUCTION COMPANY INC.,B1500\nPOMMERENING INC,,Y4000\nCPA,MEDICAL CENTER,H2000\n\"Director, Consulting\",\"Educational Services, Inc.\",Z9500\nPhysics Professor,Boston University,H5100\nAMGRAPH PACKAGING INC,,M7100\nHON DEVELOPMENT,,Y4000\neconomist,US dept of state,X3000\nVP-FINANCE,\"PFIZER, INC.\",H4300\nCONSULTANT,ETTAIN GROUP INC.,Z9500\nASSOCIATED BOOKINGS,,Y4000\nATTORNEY,ROME MCGUIGAN SABANOSH,Y4000\nCOMPUTER AID INC,,J1100\nLUMBER YARD OWNER,SELF,J1100\nCorporate Communications,IHS Inc,C5130\nVICE PRESIDENT,GULF LUMBER COMPANY,A5000\nCHARLIES RESTAURANT,,G2900\nCONSULTANT,HOLBROOK CONSULTING,Y4000\nGRAVES LINDSEY MCLAURIN & JONES INS,,F3100\nManager,RFreedman & Son INC,Y4000\nPRESIDENT,PORTMAN EQUIPMENT COMPANY/PRESIDENT,Y4000\nCampaign Manager,Friends for Dawn Gibbons,J1100\nPresident,Giant Pacific Co,Y4000\nFILMMAKER,PHINEAS GAGE PRODUCT,Y4000\n\"PRESIDENT, FOUNDER\",FACE YOUR SELF INC.,Y4000\nREAL ESTATE BROKER,SMITH REALTY GROUP,F4200\nVP Communications,Northeast Utilities,E1620\n(NRLCA AUXILIARY MEMBER),,L1500\nPROJECT MANAGER,RDI,Y4000\nPrivate Equity--Evp,Pacesetter Capital Group,F0000\nROCHE LAB INC,,H4300\nPIONEER GRAPHICS,,C1300\nDirector,Worksource California,Y4000\nD C BULLOUGH ASSOCIATES,,Y4000\nManager,Vector Magnetics LLC,J1200\nEXECUTIVE,AUNT MID PRODUCE,A1400\nEngineer,jhi Engineering,B4400\nMANAGEMENT,CALLEN MFG CORP,Y4000\nPHYSICIAN,UNIVERSITY HOSPITAL,H1100\nDETAILS LTD,,Y4000\nMEDICAL DOCTOR,KALEIDA HEALTH,H2100\nPARTNER,\"WATT, TIEDER, HOFFAR & FITZGERALD, LLP\",F4100\nFREMON WEST SHOPPING,,B1000\nCOMMONWEALTH TECHNOLOGY I,,E2000\nPHARMACIST,DONOHOOD PHARMACY INC,G4900\nExecutive,Health Trans,Y4000\nREAL ESTATE,\"OLMSTEAD PROPERTIES, INC.\",F4000\nExecutive VP,Verizon,C4100\nVP STRATEGIC PLANNING,MUZAK LLC,C2600\nA M LUTHERAN DISTRIB,,Y4000\nCEO,Asia Society,J5000\nNURSE PRACTITIONER,STUDENT,X1200\n\"Gov't Relations\",Heather Podesta & Partners,K2000\nPRESIDENT,ACS GROUP,Y4000\nHOWARD STERN MECHANICALS,,Y4000\nOwner/Principal/Part,The Simon Companies,B2000\nSTARMART CONVENIENT STORE,,G4300\nBRENDAN MECHANICAL,,Y4000\nATTORNEY,AGFIRST FARM CREDIT BANK,Y4000\nATTORNEY,ROTECH LLC,Y4000\nBUSINESSMAN,RODAN AND FIELDS,Z9500\nSELF-EMPLOYED/INVESTOR/ADVISOR,,F7000\nBUSINESS OWNER,CACTUS JACKS AUTOS,Y4000\nHEALTH PSYCHOLOGIST,CENTERS FOR DISEASE,Y4000\nBUSINES,COBRA PETROLEUM PROD. CORP.,Y4000\nEXECUTIVE VICE PRESIDENT & CFO,AYRES ASSOCIATES,B4000\nReal Estate Manageme,Vranus & Chioros,Y4000\nCHAIRMAN OF THE BOARD,SABRELINER CORPORATION,T1300\nSR VICE PRES,UBS FINANCIAL SERVICES,F2100\nCONSTRUCTION,AVENTURA  CONSTRUCTION,B1500\nLitigation Consultant,Self,K0000\nCONSULTANT,\"JURYWATCH, INC.\",Y4000\nCLAYTON CONTAINER CO,,M7100\nCAFE MERIDIAN,,G2900\nInformation Requeste,Requested Info,Y2000\nATTORNEY,AUGUST LAW GROUP PC,K1000\nManager,Plaza Cadillac,T2300\nINVESTMENT ADVISOR,GOLDMAN SACHS,Z9500\nPRESIDENT & CEO,ABELSON TAYLOR,G5210\nCLASSROOM TEACHER,FORT ATKINSON SCH DIST,L1300\nArchitect,DRL Group,Y4000\nADMINISTRATIVE ASST,COOK COUNTY,X3000\nSVP client management,State Street Corp,F2000\nCITY OF VERONA,,X3000\nEXECU,TELECOM RESELLERS ASSOCIATION,C4000\nLIPSEN HAMBERGER,,K2100\nCHILDHEP U.S.A./FOUNDER CHAIRMAN /,,Y4000\nOWNER,THE FEDELI GROUP,F3000\nPRESIDENT,SYSTEMS DEVELOPMENT CORP.,Y4000\nEXECUTIVE VICE-PRESIDENT,GREENHECK FAN CORPORATION,M2300\n\"ELLIS, LAWHORNE & ASSOCIATES\",,Y4000\nGeneral Manager,\"Golden Corral of Capital Centre, LLC\",G2900\nAstrophysics,Los Alamos National Laboratory,X3000\nSALES,VERAFORCE NUTRITION L L C,Y4000\nVP,\"Harrah's / Showboat Atlantic City\",G6500\nResearch Scientist,Science Applications International,D3000\nOFFICE ADMIN,WILLIAM S MCARTHUR,Y4000\nC. F. O.,FIRST INDUSTRIAL REALTY TRUST INC.,F4200\nEducation Policy - Board of Education,Los Angeles Unified School District,X3500\nSales,\"Macy's\",G4300\nProfessor,Washiington College,H5100\nATTORNEY,MINTZ & GEFTIC LLC,K1000\nSales,\"Rogers Benefit Group,In\",F3100\nNATIONAL STORES,,Y4000\nCOUNCIL FOR EQUAL OPPORTUNITY,,Y4000\nRHEUMATOLOGY/ASSOCIATES/RHEUMATOLOG,,H1130\nFIDLER & MACKS SHREWBURY COMMON,,J5100\nOWNER,GUARDIAN ANGELS HOME CARE,Y4000\nCONSULTANT,ADA,H1400\nATTORNEY,US DEPT OF COMMERCE NOAA,X3000\nHealth Educator,Alzheimers Association,JH100\nPRES,THALHEIMER BROTHERS INC,M2400\nATTORNEY,\"FERRIS & SALTER, P.C.\",K1000\nBanker,Citi Private Bank,F2100\nHORIZON LINES,,LT300\nSWIFT CORPORATION,,Y4000\nVICE-CHAIRMA,PENDLETON WOOLEN MILLS,M3100\nACTUARY,UNITED HEALTH,Z9500\nExecutive,New York Life Company,F3300\nASSOCIA,CME 20 S.WACKER DR. CHICAGO,F2200\nVITAL VOICES GLOBAL PARTNERSHIP,,Y4000\nChief Financial Offi,\"Home's By Ld Pappan\",Y4000\nSALES REP,FUCH LUBRICANTS,T2400\nEXEC VP,WATCO,T5300\nGEISINGER MEDICAL CENTER,,J1100\nSales and Marketing,Neuton Inc,J1200\nCOMMONWEALTH OF PENNA,,X3000\nVP RECRUI,SUN HEALTHCARE GROUP INC.,H2000\nAttorney,The Trust for Public Lands,JE300\nSELF EMPLOYED IN A BUSINESS I BUILT,SANTA BARBARA VOLKSWAGEN,Y4000\nHERBAL EDUCATOR,RETIRED,X1200\nPULAU ELECTRONICS,,D3000\nComp Engr,Gov Works,J1200\nTORRANCE UNIFIED SCHOOL DIST,,X3500\nANDREWS FCU,,F1300\nDON MCGILL COMPANIES,,T2310\nMD,GHSU MCG,Y4000\nOWNER,HIGH PLAINS SILAGE,Y4000\n\"ST DAVID'S EPISCOPAL\",,Y4000\nEXXON SERVICE STATION,,E1170\nSenior VP of Sales,Athens Benefits,Y4000\nManager,Plastics Composits Co,M1500\nGrocery store owner,Self,G2400\nDIST TRANSPORTATION OPS MGR,UNITED PARCEL SERVICE INC.,T7100\nKOHLBERG KRAVIS ROBERTS,,J1100\nConsultant,Self/Winningresults,J1200\nAdmin,City of Lake Oswego,X3000\nTIMBER BUYER,SELF,A5000\nPRESI,BABSON CAPITAL MANAGEMENT LLC,F2100\nPhysician,\"The Doctor's Clinic\",Z9500\nPRESIDENT,CORE-ROSION PRODUCTS,Y4000\nTruck Driver,Best Distributing Company,Y4000\nPRESIDENT,ALL SYSTEMS SATELLITE DISTRIBUTORS,Y4000\nL R SCHOOL DIST,,X3500\nREAL ESTATE BROKER,\"BLUE WATER REALTY INVESTMENTS,\",F4200\nSADDLEBACK HOSPITAL,,H1100\nLawyer,none/retired,X1200\nDeputy District Attorney,Marion County,X3000\nATTORNEY,\"KELLOGG,HUBER,HANSEN,TODD, EVANS & FIG\",K1000\nReal Estate Broker,Darling Real Estate Company,F4200\nHOSPITAL ADMINISTRATOR,KDMC,H1130\nPHYSICIST,MASSACHUSETTS INSTITUTE OF TEC,J1200\nPODIATRIC PHYSICIAN,FAMILY FOOT CLINICS OF WI,H1130\nMINUTEMAN MACHINE INC,,D2000\nOwner,Arh Inc.,Y4000\nCHAIRMAN & CEO,MWV CORPORATION,Y4000\nSALES,QTERA CORPORATION,Y4000\nADMINISTRATOR,ACCT,F5100\nTWIN CITIES BUSINESS MAGAZINE,,C1100\n\"FOUNDER, CHIEF SCIENTIST\",QTEROS,J1200\nFED CIVIL SER,RETIRED,J1100\nLAWYER,\"OTERO, LOPEZ & NEVAREZ/LAWYER\",Y4000\nPHYSICIAN,KAISER PERMAN,Y4000\nOwner,Red Bone Mining Co,E1200\nBand Manager,Curtis Inc,Y4000\nBERGER & ASSOCIATES,,F4000\nCONSULTANT,LSR CONSULTING,Y4000\nClinical Herbalist,David Winston Herbalist,Y4000\n\"Manager, Contracts & Compliance\",\"Amec Earth & Environmental, Inc\",E2000\nPHYSICIAN,UNIVERSITY OF TENNESSEE,H5100\nAMERICAN EXPORT TRADING CO,,Y4000\nWAL-TEC CORP,,B3000\nPrinter,Maple Press Co,C1300\nSENIOR VP,WEXLER AND WAKLER,K2000\nREAL ESTATE,\"MESA CAPITAL PARTNERS, LLC\",F4100\nATTORNEY - PA,PATTON BOGGS LAW FIRM,K2000\nHIGH VALLEY GROUP,,F0000\nCONSULTANT,GHL INC.,Z9500\nGOOD NEWS INC,,G4600\nPresident,Trillium Drop In Center,Y4000\nTIGER MATERIAL HANDLING INC,,Y4000\nCOO,FRITZ ENTERPRISES INC.,M2400\nUNIVERSITY PROFESSOR,NORTHWESTERN UNIVERSITY,H5100\nGOLDFARB BONDIN AGENCY,,Y4000\nEngineer,MTA NYCTA,Y4000\nP S D INC,,Y4000\nAttorney,Greg McCracken & Associates,K1000\nSupervisor,\"Kai Por Builders, Inc\",Y4000\nVANDERBILT  UNIVERSITY,,H5100\nTRILOGY,,J7400\nBUSINESSMAN,INTERACTION ASSOCIATES,Y4000\nEXECUTIVE,MILWAUKEE VANS,M5000\nPHYSICIAN,ST. BARNABAS MED CTR,H1100\nCEO,AG RESOURCE MANAGEMENT,Y4000\nSOFTWARE ENGINEER,\"MODIS, INC\",Y4000\nEmergency management,State of AK,Y4000\nBUS DEVELOPMENT MANAGER,SCOTTS COMPANY,A4100\nEntrepreneur,The Alan Ladd Company,Y4000\nCOLLEGE,PROFFESSOR,Y4000\nINVESTOR,SELF,X4100\nINFORMATION SERVICES,UNIGUEST/INFORMATION SERVICES,Y4000\nRETIRED,DUH,Y4000\nEXECUTIVE DIRECTOR,AIG FINANCIAL,F2100\nSLIMOWITZ DEPHILLIPS & A,,Y4000\nROYAL CHEVORLET,,T2300\nConsultant,Drummond Co. Inc.,E1210\nINTERVENTIONAL CARDIOLOGY,Advanced Cardiovascular Consultants,H1100\nEngineer,Kuhlman Inc.,Y4000\nSHELLY ASSOCIATES,,Y4000\nOWNER/FARMER/RANCHER,GIBSON FEEDLOT,Y4000\nSTRATTON ELECTRIC,,B2000\nBAY MOORINGS ANIMAL HOSP,,A4500\nATTORNEY,FENNIMORE CRAIG,K1000\n\"DIRECTOR, CORP. PUBLIC AFFAIRS\",CATERPILLAR INC.,B6000\nTRANSPORTATION DIRECTOR,STATE OF WI,X3000\nVICE PRESIDENT,\"LIEBMAN & ASSOCIATES, INC.\",Y4000\nQUANAH INC,,F4000\nAPARTMENT MANAGER,YERBA BUENA COMMONS,Y4000\nVice Chairman,\"Fred Alger Management, Inc.\",Y4000\nFARRAN HENNESSY & EDWARDS,,K1000\nPhysician,Mid-Ohio Cardiology and Vascular Contu,H1130\nOWNER,BJM & ASSOCIATES INC,Y4000\nCOUPLING APPLI,RETIRED FROM REXNORD,X1200\nPres,Rocky Mountain Recycling,M2400\nBlue Shield of California Foundatio,,F3200\nSchriffin and Barroway,,Y4000\nPRESIDENT,\"J.F.FICK, INC.\",G2850\nMECHANICAL ENGINEER,JAMES POSEY ASSOCIATES,Y4000\nPHYSICIAN,XRAY PROFESSIONAL ASSOCIATES,Y4000\nARTIST,SELF EMPLOYED,C2100\nEXECUTIVE,N.N. BALL & ROLLER,Y4000\nCEO,3 Leaf IT Services LLC DBA Aeshen,Y4000\nUT AT ARLINGTON,,H5100\nOWNER,NORTON CADILLAC,T2300\nTIMMINS & WEINER,,Y4000\nPH,MORNINGSTAR EMERGENCY PHYSICIANS,Y4000\nWATSON WYATT COMPANY,,G5200\nFuneral Director,Cornell Memorial,G5400\nDivision General Man,Champion Enterprises,B2400\nBP  DEVELOPERS LP,,F4000\nGRAVES LUMBER,,B5200\nEconomist,Cornell University,Z9500\nOwner,Pacific Comm LLC,E1600\nOFFICE MAN,THE CORPORATE CONNECTION,J1100\nEXECUTIVE,FARMER AUTOMOTIVE GROUP,T2000\nCONSULTANT,ELMENDORL STRATEGIES,K2000\nBERMAN ROSENBACH PC,,Y4000\nManagement,Walgreens,G4900\nOWNER,SOUTH WORTH MILTON INC.,Y4000\n\"ROBERT \\\"\"CHICK\\\"\" FRITZ INC\",,G2850\nLOVETHINGS SHOP,,Y4000\n\"MONTGOMERY, KOLODNY, AMATUZIO & DUS\",,Y4000\nBorder Patrol Agent,DHS,K1000\nINVESTMENT AD,\"SHUFRO, ROSE & CO LLC\",F2100\nDE BEAUTE INTERNATIONAL CROP,,Y4000\nPRIVATE INVESTOR,PROVINCE LINE L.L.C.,Y4000\nCEO,Arenas Entertainment,Y4000\nHIGHWAY EQUIP CO,,Y4000\nattorney,Commonwealth of Pennsylvania,X3000\nLoan Administrator,Bankers Trust,F1000\nField Technician,\"Ntss, Inc.\",Y4000\nPresident & COO,\"Benetrends, Inc\",G1000\nCoin Shop Owner,Self-Employed,G0000\nARBOR MANAGEMENT LLC,,Y4000\nCEO,TRIPLETT KING,Y4000\nATTORNEY,KELLY & TOWNSEND,J6200\nFLANDERS MANAGEMENT COMPANY,,F2500\nTeacher,Fairfax Public Schoo,X3500\nChief Economist,Mount Lucas Management Corp,Y4000\nPrinceton,Paul Raushenbush,Y4000\npublic relations,Buson-Marsteller,K2000\nKAHLER COMMUNICATION,,Y4000\nPrincipal,Nueva Vista,J7500\nGOVT,NORTHWEST MONTANA ASSN OF REAL,Y4000\nPRES,WARNING LITES OF ALASKA INC,B1000\nCity Wide Abrasives,Longo Abrasives and Supplies,Y4000\nP/T SALES,R. H. SMITH CO.,Z9500\nFinancial Advisor,Ziff Brothers Investments,F2100\nPartner /Creative Director,Imaginary Forces,Y4000\nHYDRA TOOL INC,,Y4000\nMANUFACTURING,CARPENTER TECHNOLOGY CORPORATION,M2100\nGREENSPOINT N HOUSTON CH,,Y4000\nClassroom Teacher,Brandywine Heights School District,L1300\nPresident,RMIC,Y4000\nOwner,\"O'Scugnizzo's Restaurant\",G2900\nREAL ESTATE INVESTOR,PETREE INVESTMENTS,Y4000\nManager,Tingley Boots,A3000\nPRESIDEN,VALLEY ESTATE PLANNERS LTD,Y4000\nPARTNER,HOGAN LOVELLS/PARTNER,K2000\nANDIOUOX CORPORATION,,J5100\nCONSULTING,\"RC ROYALS -- ASSOCIATES, LLC.\",Y4000\nFINANCIAL MGT CONSULTANT,,J1100\nSenior Minister,\"Neighborhood Church, Pasadena CA\",X7000\nNUCLEAR PLANT OPERATOR,\"PPL SUSQUEHANNA, LLC\",Y4000\nYORK MANAGEMENT RESEARCH,,F2100\nATTORNEY,\"BROWNSTEIN, HYATT FARBER, SCHRECK\",K1000\nPresident/CEO,\"Totem Ocean Trailer Express, Inc.\",T6200\nPRESIDENT,CHAIN LINKS RETAIL ADVISORS,Y4000\nEDUCATOR,NEW YORK OPEN CENTER/EDUCATOR,Y4000\nATTORNEY,\"HEYGOOD, ORR & PEARSON\",K1000\nNONPROFIT EXECUTIVE,ONE ACTION,J9000\njudge,state of california,X3000\nDOCTOR,CMSMG DERMATOLOGY,H1130\nVeterinarian,Pampa Veterinary,J1200\nCHIEF EXECUTIVE OFFI,CELL ROBOTICS INTL. INC.,Y4000\nExecutive Assistant,Eldorado Casino,G6500\nReal Estate Developm,Somerset Development,F4100\nA M O MAENSK LINE L T D,,Y4000\nLOUIS F DEVICCHIO ASSOCIATES,,Y4000\nPALO ALTO MEDICAL FDTN,,H0000\nCACOMM TELEVISION PRODUCTIONS,,C2300\nP A ACKERMAN,,M7200\nASSOCIATED INS BROKER,,F3100\nCJ Strategies,Govt Relations,K2000\nOWNER,CONCHO BAIL BONDS,G5000\nPhysician,Montefiore Med Ctr,H1110\nCHALLENGE LTD,,Y4000\nReal Estate Broker,Howard Hanna Real Services,F4000\nPARTNER,\"THE WINEBRAKE LAW FIRM, LLC\",K1000\nCONSULTANT,ABLLP,Z9500\nATTORNEY,GRAEFE LAW,K2000\nOwner,Athens Distributing,G2850\nMD,Intelsat,C4400\nPublic Relations,RUDER FINN,G5210\nDIRECTOR,AMGEN INC.,H4300\nCAMPAIGN MANAGER,KENDRICK MEEK FOR FLORIDA,Z9500\nCORP VP,HUNTINGTON INGALLS INDUSTRIES,D5000\nUNUM PROVIDENT CORP,,F3200\nCOUNTY BOARD MEMBER,LASALLE COUNTY,Y4000\nPRESIDENT,KOKOSING CONSTRUCTION,B1500\nPRO CON ENTERPRISES,,Y4000\nPresident,North Brothers Ford Inc,T2300\nFacilities Planning,\"The Dollries Group, LLC\",Z9500\nENGINEER,DA BELSKY ENGINEERING,Y4000\nMarketing,Bic International,J1200\nPHYSICIAN,LLUMC,Y4000\nBRANDT HAUGHEY ET AL,,K1000\nPRESIDENT,VANGUARD UNIVERSITY,H5100\nOPHTHALMOLOGIST,EYE ASSOCIATES OF SOUTHERN INDIANA,H1120\nStudent,West Chester University,J1200\nSupervisor Medical Affairs,Tallahassee Memorial HealthCare,H2100\nBUSINESSMAN,OMEGA,Y4000\nFundraiser/Consultant,Self,G5200\nCLAIM REPRES,STATE FARM MUTUAL AUTO,F3400\nEXECTIVE DIRE,OKLA DEMOCRATIC PARTY,J1200\nGLOBAL INVESTMENT ADVISOR,,Y4000\nSUNWORLD INC,,Y4000\nPresident,Sea-3 Inc,E1190\nCAPITAL CIGARD CANDY CO,,Y4000\nGlobal Real Estate I,Deutsch Bank,F1100\nD E SHAW & CO,FINANCIAL EXECUTIVE,Z9500\nSK RANCH,,A0000\nINSURANCE,HOUSTAN INTL INS.,F3100\nself-empl salon owner,BJ Salons Inc,Y4000\nChairman,Center Beverage,G2850\nFine Art Photographe,Self,G0000\nGAMBRO HEALTHCARE/USA/REGIONAL VICE,,H4100\nDISCOUNT OFFICE INTERI,,Y4000\nACCOUNT EXECUTIVE,FREEDOM MORTGAGE,F4600\nBOARD MEMBER,DORCAS PLACE ADULT & FAMILY LEARNING C,Y4000\nPHYSICIAN,DEPT OF VETERANS AFFAIRS,H1100\nREALTOR,SHARON KULBACKI,F4200\nSENIOR VP,PENN NATIONAL GAMING,G6500\nGEORGE K BAUM,,F2100\nD J CONSTRUCTION,,B1500\nFRICKS INC./PRESIDENT/CEO,,Y4000\nDirector of Development,Soundwaters,Y4000\nBRIAN MACANA LAW COR,,Y4000\nGENERAL MANAGER,\"CORNEJO MATERIALS, INC.\",B5100\nPROFESSIONAL FIDUCIAR,SELF-EMPLOYED,G0000\nChairman & CEO,CBOE,F2200\nPRESIDENT,PAN AMERICAN ENTERPRISES,C1100\nSTAPLETON-SPENCE PKG,,A1400\nBeauty Consultant,\"Peace Now, LLC\",Y4000\nGENERAL MILLS FCU,,F1300\nPOLYMOUL INTL INC,,Y4000\nDirector,Communications Supply Corp.,Y4000\nExecutive,Lab Corp,Y4000\nMAYOR,\"CITY OF SARATOGA, CA\",X3000\nMAYOR OF MONTREAT,RETIRED,X1200\nAUTOMOBILE DEALER OWNER,,Y4000\nSENIOR EXECUTIVE VI,NEW LINE CINEMA,C2000\nSenior International Policy Analyst,Rand Corporation,G5200\nProfessor (Part-Time),California State University los Angele,J1200\nMANAGER,TRI-COUNTY EMC,Y4000\nAttorney,McGinnis Lochridge & Kilgore,J7400\n\"KATZ, VICTOR & YOLLES PC\",,K1000\nCHEMIST,TRACE ANALYTICS,Y4000\nATTORNEY,OLD MUTUAL FINANCIAL,F3300\nReal Estate,IS Investments,F4000\n\"DIRECTOR, ENTREPRENURIAL SVCS.\",MANAGING HORIZONS,Y4000\nWCJ REAL ESTATE CONSULTANTS,,F4000\nEXECUTIVE,AVALON ANCHORAGE MARINA,Y4000\nSALES REPRESENTATIVE,EASTERN STATES DISTRIBUTORS,J1200\nManager,Pork Vision LLC,A3000\nHWF INC,,Y4000\nDIRECTOR OF EMERGENCY MANAGEMENT,DAVIESS COUNTY,Y4000\nCROW BROTHERS TOYOTA,,T2310\nrequested,requested,T6200\nREAL ESTATE AD,\"JND PROPERTIES, INC.\",F4000\nTECHNICIAN,HINDERLITER CONSTRUCTION &,B1500\nUSAF,USAF,J1100\nBUSINESS OWNER,FOX CLOTHING,Y4000\nENVIRONMENTAL SPECIALIST -- RETIRED,N/A,Y4000\nEXECUTIVE,\"GETCO, LLC\",F2200\nEXECUTIVE,THE DEBT EXCHANGE INC,Y4000\nExecutive,\"FSA Network, Inc\",Y4000\nartists manager,\"ICM Artists, Ltd.\",Y4000\nDEAN OF STUDENTS,NMHU,Y4000\nREYNOLDS & COMPANY INC,,Y4000\nStaff/House Internat,U S House Of Represe,X3000\nCandidate,Erlandson for U.S. Representative,Z9000\nOSTEOPATH,,H1130\nMANAGER,US PUBLIC HEALTH SYSTEM,H0000\nVice President,Regent Broadcasting,C2100\nENTREPRENEUR,SELF-EMPLOYED,E1200\nNEWS PRODUCTION EDITO,BOSTON HERALD,C1100\nSMALL BUSSINESS MAN,SELF,J2200\nCORINTHIAN GROUP,,Y4000\nTHE ARJAY GROUP,,Y4000\nPRESIDENT,SOUTH CENTRAL BANK,F1000\nATTORNEY,\"SUSMAN GODFREY, LLC\",K1000\nPresident,\"Wagner Investments Management, Inc\",F2100\nCEO,MOUNT VERNON INVESTMENTS,F7000\nMEMBER / RECRUIT,J.S.B. PARTNERS,Y4000\nBILL GRAHAM,,J1200\nROSKAMP MANAGEMENT CO,,F4100\nSELF,SHOP OWNER,J1200\nCLOVERDALE FOODS/UNITED ENER/CORPOR,,G2000\nSecretary,Town of Henson,X3000\nMANAGEMENT,\"BAY YOUTH CENTER, INC\",Y4000\nPLUMBING CONTRACTOR,MR ROOTER PLUMBING OF BOISE,B3400\nPRINCIPAL,WINNING STRATEGIES,Z9500\nHARDIN COUNTY SCHOOLS,,X3500\nAUTO DEALER,ATZENHOFFER CHEVROLET-CADILLAC/AUTO,T2300\nProgram Officer,The Fund for the City of New York,X3000\nEXEC,\"FREED MAXICK & BATTAGLIA, PC\",F5100\nINTERIOR DESIG,JUDITH WOLFF DESIGNS,Y4000\nPRESIDENT,GMG FARMS,G1200\nCLERK,WALMART,G4300\nCOMPUTER ANALIST,,Y0000\nINVESTORS TITLE INSURANCE,,F4300\n\"CHARTER BANCSHARES, INC\",,F1100\nE.S.H.,AIMCO,Y4000\nPilot,air Transport International,Y4000\nSQUIRE SANDERS & DEMPSEY LLP,,K2000\nREAL ESTATE BROKER,COLDWELL BANKER - TOMMY MORGAN/REAL,F4200\nGIAQUINTO INC JAMES R,,B2000\nMOTEL MEDITERAN,,T9100\nPRESIDENT,SPARTAN CHEMICAL CO. INC.,M1000\nPROSKAUER ROSE ET AL,,J7400\nINSTRUCTOR,ULTIMATE SOFTWARE,C5120\nCOMPLETE CONSTRUCTION,,B1500\nRETIRED,N/A,M2100\nFinance,Eli Lilly & Co,H4300\nSys Anal,KC Southern RR,J1200\nMANAGER,CABOT OIL & GAS CORPORATION,E1120\nAttorney,Hossley and Embry,K1000\nNORTHERN X-MAS TREES,,A5000\nCEO,\"NAAMAN'S ASSOCIATES\",F4500\n\"TIVOLI TOO, INC./DESIGNER/OWNER\",,Y4000\nLAPEER EYE CLINIC P C,,H1120\nAVIATION,DOLPHINE AVIATION INC.,T1000\nPRE,FUND FOR THE FUTURE OF CHILDREN,Y4000\nSECOND VICE PRESIDENT,INDIANA STANDARDBRED ASSOCIATION,Y4000\nBUSINESS EXECUTIVE,CAPITAL TECHNOLOGIES INC,G5200\nPROFESSOR OF ENGLISH,YALE UNIVERSITY,H5100\nCHEMICAL SALES & SERVICE,,M1000\nSKINNER TRANSFER CORP,,T3100\nCEO,Potash Corp.,Y4000\nSELF,ENTERTAINER,J1200\nCHARLOTTE/FIRE FIGHTER/EMS,,L1400\nCFO,State Bank & Trust,F1000\nTHE LOGAN CLAY PRODUCTS,,Y4000\nProject Manager,Paladin Consulting,Y4000\n\"GROVE QUIRK INSIGHT, LTD\",,Y4000\nCOMMUNITY BANKING,METROPOLITAN BANK GROUP,F1000\nHILLSTEADPARTNERS PARTNERS L.L.C.,,Y4000\nC.E.O.,\"SECURITY RESOURCES, INC.\",Y4000\nOwner,Victoria Simms,G0000\nManager of Private E,Associated Partners,C4300\nI B C FIDUCIARY INC,,Y4000\nInvestment Advisors,\"Van Sant & Mewshaw, Inc\",Y4000\nPRESIDENT,GLOBAL INDUSTRIES INC.,E1140\nWASHINGTON SPORTS,,G6400\nWAREHOUSE MANAGER,COSTCO,G4000\nOWNER,LEWIS CONTRACTORS INC. & ALLIED UNDERG,Y4000\n\"INTERNAT'L HOUSE\",,Y4000\nPRESIDENT,RICELAND PETROLEUM,G1200\nVP INFORMATION,INVACARE CORPORATION,H4100\nILWU/FMA/LONGSHOREMAN,,Y4000\nCBS SPORTS,,Y4000\nWILLIAMS COMMUNICATIONS,TRANSW,Y4000\nCOUNTY COMMISSIONER,UPSHUR CO WV,Y4000\nNORTHSTAR STUDXGUIDES INC./CEO/PRES,,Y4000\nSELF EM,VIP MFG & ENGR. CORPORATION,Y4000\n\"SENIOR VICE PRESIDENT, STRATEGY AND IN\",\"CHILDREN'S MERCY HOSPITAL\",H2100\nEDITOR,U.S. DEPARTMENT OF STATE,X3000\nSales,Horizon Laboratories,Y4000\nLicensed Marriage &,Self,G0000\nGOVERNMENT RELATIONS,SUSAN J. WHITE & ASSOCIATES,Z9500\nPHYSICIAN,\"RIVERGATE DERMATOLOGY, PLLC\",H1130\nOwner,New Outlooks,Y4000\nLawyer,JPMorgan Chase & Co.,J1200\nINVESTMENT ADVISOR,BARTLETT & CO.,A4000\nCTP MANAGEMENT,,Y4000\nOwner,\"Stark Mangement Services, Inc\",Y4000\nPETERSON HEALTH CARE,,H0000\nAttoney,Law Office of Gary J Holt,K1000\nGOVERNMENTAL AFFAIRS VP,SOUTHERN COMPANY SERVICES,E1620\nPETROLEUM WHOLESALE AND DISTRIBUTION,QUANTITY OIL/ HOLLAND TERMINAL INC,Y4000\nSurgeon,MASO,Y4000\nExecutive,JWF Ind,Y4000\nPROFESSIONAL ENGINEER,SELF,Z9500\nMARKETING AVP,CITI CARDS,Y4000\nUNDERWRITERS SERVICE AGENCY,,Y4000\nOwner,Carpet One Cleaning,Y4000\nInformation Requeste,Enterprise Housing Financial Services,F0000\nP,JEWISH SOCIAL SERVICES OF MADISON,Y4000\nC.E.O.,MCDONALDS CORP/C.E.O.,G2900\nGeneral Manager,Butch Oustalet Chevrolet Cadillac,T2300\nDISTRICT COURT JUDGE DEPT. 10,STATE OF NEVADA,X3000\nHospital Administrator,BayCare Health System,H2100\nMANAGER E-BUSINESS,VERTICALNET INC.,C5140\nPresident,Columbus Pest Control,G5700\nExecutive,Eagle Oil & Gas Co.,E1100\nLittle Rock School District,,X3500\nACCOUNTING,LAWRENCE EQUIPMENT,Y4000\nCEO,Equal Justice Works,J1200\nVice President Medical Affairs,Washington Hospital,H2100\nCONTRACTOR,WESTERN CARE CONSTRUCTION,B1500\nPHYSI,GREATER CAROL. EAR NOSE & THR,H1130\nLITERARY AGENT,THE KATHRYN GREEN LITERARY AGENCY,Y4000\nIndrorndent,Significant,Y4000\nPRIVATE INVESTIGATOR,KELMAR AND ASSOCIATES,Y4000\nVICE PRESIDENT,,G2500\nPresident,Mobile Escrow,Y4000\n\"TEMPLE B'NAI ISRAEL\",,X7000\nDERMATOLOGIST,RIVERSIDE DERMATOLOGY,H1130\nSupervisor,Whole Foods Market,G2000\nN/A / STUDENT,,Y4000\nREALTOR,HOWARD HANNA REAL ESTATE,J9000\nOTTUMWA REGIONAL HEALTH CTR,,H2100\nPhysician,Hogonc,Y4000\nReal Estate Developer,Lifshultz Companies,F4100\nPROFESSOR,INDIANA UNIV,H5100\nPRINCI,GATEWAY FINANCIAL GROUP INC.,F3100\n\"Political Spouse, Volunteer\",Unemployed,Y1000\nAttorney,J Thompson & Associates,K1000\nBusiness Agent,IBT Local 623,LT300\nEXECUTIVE RECRUITER,GRN ELIZABETH CITY,Y4000\nHORNSKY & WHISENHAND,,Y4000\nINFORMATION REQUESTED PER BEST EFF,INSURED FINANCIAL PLANNING,F3100\nEXECUTIVE,MAGNI ASSET MANAGEMENT,J1100\nGovernment Affairs,Barbour Griffin,K2000\nSenior Vice President,Newell Rubbermaid,M4000\nSenior Research Scie,MIT,H5100\nOWNER GIFTWARE,SELF-EMPLOYED,Y4000\nretired,self employed,Z9500\nModel,DNA Agency,J1200\nOAKLAND COUNTY CIRCUIT COURT,,X3200\nINTERNATIONAL TELECOM UNION,,K2000\nCRNA,\"JOHN PAUZAUSKIE, CRNA PLLC\",H1710\nPresident,\"Virginia Pilot's Assn\",Y4000\nVice President Real,Sienna Corporation,Y4000\nFord Worker,Ford Motor Company,T2100\nCONTRACTOR,MEL WAGNER & SONS,Y4000\nSELF,ADELMAN PR,Y4000\nPresident and CEO,S&C Electric Company,Y4000\nSOCIAL WORKER -COUNSELOR,PROJECT HEAVY WEST/SOCIAL WORKER -C,Y4000\nHERNANDO CARRILLO ARCHITECTS,,B4200\nMANAGER/CEO,BLUE FLAME CU,F1300\nEconomist,N/A,F5500\nOWNER,FORCELLINI AND SONS CARPET,M8000\nSENIOR CONSULTANT,SELF EMPLOYED,F5000\nPRESIDENT,HOFFMAN CONSTRUCTION CO.,B1500\nREAL ESTATE,WESTAR ASSOCIATES,Y4000\nPROFESSIONAL ENGINE,OLIVE ENGINEERS,B4400\nDIRECTOR - TV,\"4AM FILMS, INC.\",Y4000\nVICE PRESIDEN,CAPITOL DECISIONS INC,K2000\nVICE PRES. CAPITAL,SEALED AIR CORP.,Y4000\nOwner,Auntie Anne`s Hand Rolled Soft Pre,Y4000\nCEO,WERCWERKWORKS,Y4000\nPHYSICIAN/PRESIDENT,INTERMOUNTAIN HEALTHCARE,H0000\nOwner,Rockingham,Y4000\nMORGAN REEGAN & COMPANY,,Y4000\nPhysician,\"Boice-Willis Clinic, PA\",H1100\nREUBEN & NOVICOFF,,Y4000\nEDUCATOR,CONGREGATION SHAAREY ZEDEK,Y4000\nBROWNSTEIN HYATT FARBER & HADDEN,,K1000\nGENERAL,G. FISHER CONSTRUCTION CO.,B1500\nEVP SECRETARY & GENERAL COUNS,CENTENE CORPORATION,H3700\nBus Owner,Els Surveying,B4300\nUROLOGIST,\"SPYRIE D. MAYS MC, FACS/UROLOGIST\",H3200\nCLASSROOM TEACHER,EDUCATION ASSOCIATION,L1300\nDEAN,UTHSCSA,H5150\nLAWYER,THOMPSON COBURN,Z9500\nBroker,Mortgage Max LLC,F4600\nREAL ESTATE BRO,PUBLISHER,C1100\nEDWARD STONE JR & ASSOC,,B3600\nInvestor,\"Cartmell Holdings, LLC\",Y4000\nNATIONAL LEARNING SYST,NOMADICS INC,Y4000\nATTORNEY,\"MOODY'S INVESTORS SV\",Y4000\nFAMILY LAW ATTORNEY,\"KLIEVER LAW GROUP, LLP\",K1000\nTEJAS OFFICE PRODUCTS,,Y4000\nPHYSICIAN,NE GA OB-GYN ASSOC,H1100\nCHAIRMAN,PITTMAN CONSTRUCTION COMPANY,B1500\nLITCHFIELD FINANCIAL CORP,,F4600\nPHYSICIAN,GHS,Z9500\nGENERAL MANAGER,FITZGERALD AUTO MALLS,T2300\nowner,Sawyer Furniture,M4100\nCEO,\"WENDYS OF THE PACIFIC, INC.\",G2900\nConsultant,Rj And Friends,J1200\nATTORNEY,GREENE ESPEL,Y4000\nSecretary/Manager,Farmers Mutual Insurance Company,F3100\nGOLDSMITH AGIO HELMS AND CO,,F2100\nClaims Analyst,Healthnet,Y4000\nROCKY MR CHILDRENS LAW CENTER,,K1000\nSELF,ISLAND DOCTORS,H1100\nChild Advocate,Self-Employed,J7700\nPRES,COMMERCIAL LITHOGRAPHY COMPANY,C1300\nDORSEY & WHITNEY L.L.P.,,K1000\nSTROOCH & STROOCH,,K1000\nSALES,CONCEPTUS,Y4000\nPhysician,\"Birns, Gloger & Witten MD\",H1100\nCFO,Alliance Steel,M2100\nROBERT WOOD JOHNSON MED CTR,,H2100\nI.L. DEPARTMENT OF TRANSPORTATION,,X3000\nPRIVATE INVESTOR,FIVE MILE VENTURES,F2600\nOGBORN OMNI TRAX,,Y4000\nResearch Scientist,Tendleton State Univ,Y4000\nMD,\"NEW YORK CITY OPHTHALMOLOGY, P\",H1120\nEXECUTIVE DIRECTOR,RURAL WISCONSIN HEALTH CO-OP,Y4000\nInstr. design,Highline College,H5100\nPACHULSKI STANG ZIHEL,,K1000\nMARGULLIS LEUDTKE A,,Y4000\nCHAIRMAN,MOUNTAIN VALLEY MOTORS,T2300\nMALCOLM & SCHROEDER,,K1000\nOWNER,WEIS BUILDERS INC,B2000\nGRANT THORNTON,,J5100\nWILSON PRICE BARRANCO BLANKENSHIP &,,Y4000\nPRESIDENT,EXPRESS MARINE,B3000\nCONSULTANT,\"RYAN, INC.\",F5300\nRetierd,Self employed,X1200\nREAL E,MOUNTAINVIEW PROPERTIES INC.,J1100\nFILM TRAILER EDITOR,TRAILER PARK,F4400\nCITY MGR,UNITED PARCEL SERVICE INC,T7100\nPHYSICIAN,BLOOD AND CANCER CENTER OF E. TX,Y4000\nLANDRY & ASSOCIATES INC,,K2000\nTHE BISSMAN COMPANY,,G2850\nACCOUNT OF,AGFIRST FARM CREDIT BANK,A4000\nATTORNEY,TERRASOND LIMITED,Y4000\nPartner,Atlantic Capital Management,F2100\nPrivate Equity,Pantheon Ventures,F2100\nOWNER,CENTEX CARPET,M8000\nPHYSICIAN,MARTIN FOX MD & ASSOCIATES,Y4000\nSALES MANAGER,OGDEN DUNES,Y4000\nInvestments,Elan Polo,Y4000\nOWNER,J. PHILLIP BENDER & ASSOCIATES,Y4000\nATTORNEY,SQUIRE SANDERS AND DEMPSEY L.L.P.,K1000\nVP IS,UNITED PARCEL SERVICE INC,T7100\nPARTNER/ATTORNEY,LABATON,Y4000\nPartner,\"Mullendore, Beach & Thrall\",Y4000\nOWNER / FINANCIER,EIKO COMPANY,Y4000\n\"VP Lodging, Program Mgmt\",Marriott Headquarters,T9100\nEX.,AMERICAN TASK FORCE FOR LEBANON,Y4000\n17TH DIST COURT,,X3200\nMEDICAL DOCTOR,SELF-EMPLOYED/MEDICAL DOCTOR,H3200\nReal Estate,Logue Realty,F4200\nBUSINESS,BLUE BEACON INTERNATIONAL,K1000\nMORTGAGE BROKER,AMS MORTGAGE,F4600\nHigher Education,Bristol Community College,H5100\nFUND RAIS,SISTERS OF THE HOLY CROSS,Y4000\nMARKETING,DONOVAN DATA SYSTEMS/MARKETING,C5100\nPRIVATE EQUITY,MYERS CAPITAL PARTNERS,F0000\nMORTENSON AND ASSOCIATES,,Y4000\nBROKER,\"PSKB, INC.\",Y4000\nATTORNEY,LEWIS BEACH PLLC,K1000\nMARK TUNNEY,,F4100\nBoard of Trustees,La Commuity College District,J7400\nDEPT OF ENTERGY,,X3000\nSenior VP General Counsel,University Medical Center,H2100\nATTORNEY,\"HUGHES, NICHOLLS & O'HARA\",K1000\nParalegal,Lawrence Firm,K1100\nREASONS CONNT COMPANY INC,,Y4000\nPresident/CEO,Security Management Consulting,Y4000\nBUSINESS,BUTTERFIELD FOODS,Y4000\nTW SERVICES,,G2900\n\"SVP, NATIONAL SALES DIRECTOR\",\"NYLX, INC\",F4600\nCPA,Bruce W Thee & Associates,F5100\nTSL INDUSTRIES,,Y4000\nAsst. Professor,NY Univ. Medical Center,Y4000\nTEACHER,DADE COUNTY SCHOOL SYSTEM,X3500\nTAX AT,BECKER HICKS IRVING & HADEED,K1000\nTITAN HOMES,,B2400\nAttorney,1000 Friends Of Oreg,Y4000\nowner,Storm Reconstruction Services\\,Y4000\nCEO,\"HENRY MODELL & COMPANY, INC.\",Y4000\nPOLITICAL LOBBYIST,UNRUH CONSULTING INC,T1400\nGC MICRO CORP,,C5100\nAdmin. Officer,Montgomery Securities,J7400\nFOUNDER/PRESIDENT,MARGERY TABANKIN & ASSOCIATES,J1200\nQUAD GROUP ET AL,,J5100\nPARTNER,D&B ENTERPRISES,Y4000\nM,PACIFIC POSTAL TRANSPORT SERVICES,X3700\nCEMER CORP,,Y4000\nVP & CONTROLLER,FREEPORT-MCMORAN COPPER & GOLD INC.,E1220\nWILLIAMSON & WALTO,,Y4000\nLIBRARIAN,DEPT OF EDUCATION,X3500\nSoftware Product Mgr,Oracle,C5120\nMANAGER,INSIDE SPEAKER,Y4000\nACCOUNT MANAGER,TOWRITE SYSTEMS,Y4000\nALPHA BOLT CO,,Y4000\nARKANSAS ASTHMA & ALLERGY CLINIC,,H1130\nGASTROENTOLOGIST,SELF,H1130\nATTORNEY,\"COTTON, BLEDSOE, TIGHE & DAWSON\",K1000\nSongwriter,Self - Employed,C2600\nLAWYER,SEAREY DENNEY SCAROL,K1000\nTHE TAUBMAN COS,,J5100\nPRESIDENT,NOORWOOD DEVELOPMENT GROUP,Y4000\nSADDLER CLINIC ASSOCIATION,,H1100\nPRODUCER,CHERRY ROAD FILMS,C2400\nOwner,Intermountain Resources,Y4000\nPRESIDENT,PINCUS ELEVATOR CO INC,Y4000\nDIRECTOR,AGRILAND FCS,A4000\nOWNER,SPICE SHACK,Y4000\n\"CHAIRMAN, INTE\",MUSEUM OF MODERN ART,J7400\ninsurance underwrite,GE Insurance Solutions,F3100\nPhysician,\"Michael Ferguson, MD\",H1100\nWILLIAM HARMAN,,Y4000\nROANKE SURGICAL,,H1130\nJACKSON COUNTY,,J7400\nLawyer,Barhit Beck Herman Palunchar and Scott,K1100\nOIL,GE WARREN CORP,J1100\nLobbyist,SMI Inc,K2000\nCEO,Transpond Global Solutions,Y4000\nPhysician,Emergency Care Specialists,J1100\nHOUSEWIFE,HOUSEWIFE,F2100\nCFO,ELI LILLY AND COMPANY,H4300\nWarehouse Worker,The Hillman Group,Y4000\nTHE PERMENANTE MEDICAL GROUP,,Y4000\nCEO,MODERN ICE EQUIP. & SUPPLY,Y4000\nMORENO VALLEY MGMT CO,,Y4000\nAttorney,Previant Goldberg Uelmen et al,K1000\nOwner,\"D76 Excavating, Inc\",B3600\nUS ARMY AVIAT,US FEDERAL GOVERNMENT,J1100\nLAW PROFESSOR,OKLAHOMA CITY UNIVERSITY,H5100\nReg Nurse,Information Requested,H1710\nRealtor,Self Employed,K2000\nADVERTISING EXECUT,MCGARRYBOWEN LLC,Y4000\ndentist,Prehn Dental Office,H1400\n(information request,self-employed,G0000\nPRESIDENT,GFS CHEMICALS,Y4000\nPRO,BEACH FRONT PROPERTY MANAGEMENT,F4500\nNovelist,Self-Employed,J1200\nAttorney,McI Telecommunications Corp,Y4000\nLIFE UNDERWRITER,THE NAUTILUS GROUP,F3100\nBY-COINCIDENCE COMPANY,,Y4000\nExecutive,NMT Corp,Y4000\nAuto Dealer,Spradley Barr Ford,T2300\nUNIVERSITY OF NEW MEXICO,,J7400\nCONSULTING SERVICES,PPM CONSULTING,Y4000\nATTORNEY,DISH,C2200\nStrategy & Corp Finance,Weight Watchers Intl,Y4000\nCEO,AGC,Y4000\nPHILOSOPHY PRO,GALLAUDET UNIVERSITY,H5100\nPHYSICIAN,PREMIER ANESTHESIA,H1130\nREAL ESTATE,LONE STAR REALTY,F4200\nATTORNEY,DAVIDOFF & MALITO & HUTCHER,K1000\nOwner,Pantry Doerr Bakery,G2100\nAttorney,Goldfarb & Lipman LLP,J7400\nENTERPRISE GROUP,,F3300\nGENERAL MANAGER,PALM BEACH KENNEL CLUB,G6500\nPUBLISHER,UCS INC.,Y4000\nCOUNTY OF SANTA CLAR,,X3000\nRealtor,\"Phoenix Realty Of Atlanta, Inc.\",F4200\nPhysician,Chest & Sleep Medicine Assoc.,Y4000\nOWNER,M. SHANKEN COMM. INC.,C1100\n\"VICE PRESIDENT, ASSOCIATE GEN. COUNSEL\",\"WARNACO, INC.\",M3100\nDOCT,SARASOTA DIGESTIVE HEALTH SPEC,Y4000\nFire Fighter/EMS,NAVY LAKEHURST,L1400\nFARMER,SELF/FARMER,J6200\nPRESIDENT,SHELLWORTH CHEVROLET OLDS,T2300\nCONGRESSIONAL INVESTIGATOR,,X3000\nCEO,ALLEN PACKAGING CO,Y4000\nParalegal,Zuckerman & McQuiller,K1000\nGENERAL CONTR,\"CONSTRUCT A MAX, INC.\",Y4000\n\"FOX CHILDREN'S HOSPITAL\",,H2100\nVIRGINIA VENTURES LLC,,Y4000\nPOLITICAL CONSULTING,SELF EMPLOYED,G5260\nREALTOR,DOWER REALTY,F4200\nPortfolio Manager,Putnam Investments,J1200\nInvestment Manager,Morgan Stanley,F2300\nPRRINCIPAL/ ATTORNEY,VAN NESS FELDMAN,K2000\nAdjunct faculty,Skyline College,H5100\nS PLANNING & DEVELOPMENT BOARD,,J1200\nFIRST DAKOTA,,Y4000\nE Z WAY LIQUOR,,G2840\nClerk,Usps,X3700\nOIL & GAS OPERATOR,SELF/OIL & GAS OPERATOR,E1100\nMinister,Northway Church Of Christ,X7000\nManager,St. Louis Police,X3200\nVP SALES,ELIZABETH ARDEN INC./VP SALES,M3300\nNORWOOD CLINIC,,J6200\nPATHOLOGIST,NORTHWEST CMNTY HOSP,H1130\nphysician consultant,self,H1100\nOWNER,\"LEISER'S OF EASTON INC\",G5300\nNEW MILFORD MARKET,,Y4000\nLEGISLATIVE STRATEGIES INC,,Y4000\nUS Marine,DoD USMC,X5000\nResurrection Medical Center,,H2100\nChairman,American Electric Power,E1600\nEXECUTIVE,COLUMBIA/HCA,H2100\nFounder/CEO,\"Green Planet Bottling, LLC\",Y4000\nPARALEGAL,NOYES LAW OFFICE P.C.,K1000\nHealthccare,Solora Healthcare,Y4000\nManaging Director,Pacific Corporate Group,Y4000\nPresident,Gamra Composites Inc,Y4000\nRep. in NC House,State of NC,X3000\nCEO,The Eisenhower Group Inc.,Y4000\nMANAGER,WELDED TUBE,B5300\nPARTNER,ENDEAVOR SEAFOOD,G2350\nPHARMAC,FIRST PHARMACY SERVICES LLC,G4900\nLOCAL UNION #453,,Y4000\nPROCESS I,DEFENSE COMMISSARY AGENCY,J1200\nOW,\"BROWARD PAPER AND PACKAGING, INC\",J5100\nATTORNEY,LOCHLEVEN CONSULTING PLLC,Y4000\nDSCC,,Y4000\nHotel,Information Requested,Y4000\nATTOR,\"SUGAR, FRIEDBERG & FELSENTHAL\",Z9500\nWRITER/PSYCHOLOGIST,SELF-EMPLOYED,C1100\nSTEVE YOUNG FOR SENATE COMMITTEE,,Z1100\nPER MAR SECURITY,,Y4000\nDIRECTOR,,X3200\nCHAIRMAN,RAMAJAL LLC,F2100\nAMERICAN SILK MILLS CORPORATION,,M8000\ncommercial real estate,\"Colliers, Bennett, Kahnweiler\",F4000\nKAHN SOARES & CONWAY LLP,,Y4000\nPRESIDENT,\"SWANSON INDUSTRIES, INC.\",M2300\nTERREMARK GROUP INC,,Y4000\nPreident,GAR Inc.,Y4000\nCHAIRMAN AND CEO,VAN WAGNER COMMUNICATIONS,G5230\nCHEMICAL ENGINEER,CATALENT PHARMA SOLUTIONS,Y4000\n\"lawyer, professor\",\"Allegaert, Berger, Vogel, UofI\",K1000\nDUBOIS GROUP,,Y4000\nATTORNEY,\"CRAMER, PRICE & DE ARMAS, P.A./ATTO\",Y4000\nHD VEST FINICIAL SERVICES,,F2100\nCeo,Carlyle-fitzpatrick Corp.,Y4000\nSELF - EMPLOYED,SPENCER ENTERPRISES,F4100\nALFRED MATTHEWS INC,,Y4000\nLAWYER,\"HARMON, CURRAN, SPIELBERG & EISENBERG\",J7300\nEXECUTIVE,REAGAN FOUNDATION,Y4000\nCHIEF ADMINISTRATIVE OFFICER,COMPUWARE,C5120\n\"EVP, MARKETING & BUSINESS DEV\",ASSURANT CORPORATE,F3400\nEngineer,Environmental resolutions,E2000\n\"GOULD'S SALONS\",,Y4000\nHomemaker,n/a,F4700\nHOMEMAKER,PHILANTHROPIST,X4110\n\"President, Northeast\",Time Warner Cable,C2000\nASSEMBLY DEMO CAUCUS,TONY CARDENAS,Y4000\nLEADER,WEIGHT WATCHERS OF NORTH AMERICA,Y4000\nCOO,Tufts Health Plan,F3200\nINTERSOUND ENTERPRISES,,Y4000\nOWNER,SHELLEYS ELECTRICAL SERVICE,Y4000\nWOODLAND CAPITAL,,Y4000\nElectric Contractor,ARK Sytems Electric Corp,B3200\nNEW YORK CITY MARS,CITY OF NEW YORK,X3000\nPRESIDENT/C.E.O.,KENNEDY SPACE CENTER FED. CREDIT UNIO,Y4000\nBusinessman,Southwest Electric,Y4000\nAUTOMOBILE DEALER,TOYOTA OF PORTSMOUTH,T2310\nTOWN AND COUNTRY BUILDERS INC,,B2000\nATTORNEY/PARTNER,SAGAT BURTON LLP,K1000\nPROFESSIO,GOLDSTEIN-COSTELLO AGENCY,Y4000\nPresident,Alabama Retail Assoc,Y4000\nCFO,THE PRESS ENTERPRISE,Y4000\nOWNER,KENOSHA BEEF,J7120\nVice President - Gov,AMT,Y4000\nStatistician,\"Ravenstat, Inc\",Z9500\nRENEWABLE ENERGY,\"NUGEN CAPITAL MANAGEMENT, LLC\",F2100\nPRESIDENT (CPA),GUNN OIL COMPANY,J9000\nCRITTENDEN MEMORIAL HOSPITAL,,H2100\nSHIPFITT,PUGUT SOUND NAVAL SHIPYARD,T6100\nAUTO TECH,INFORMATION REQUESTED,Y4000\nEXECUTIVE,CREATIVE COMM. LLC,Y4000\nENGINEER,IMPACT TECHNOLOGIES,C5000\nCONSULTANT,GRIMES & ASSOCIATES,Y4000\nStudent,U Of D,J1200\nPRESIDENT,\"UTI TRANSPORT SOLUTIONS, INC.\",T3100\nBusiness Manager,\"Anston-Greenlees, Inc\",J7400\nPRINCIPAL,PARAGON SETTLEMENT GROUP,Y4000\nCORNING INCORPORATED/EXEC. VP/CAO,,C5110\nWESTCHESTER RTL COMM,,Y4000\nAttorney,Blizzard and McCarthy,K1000\nPRESIDENT,\"SUPERIOR OIL COMPANY, INC./PRESIDEN\",F5500\nFinancial advisor,Michas & Co.,Y4000\nOwner,Patricia Noe Cleaning,Y4000\nfinancial advisory,self,F5000\nRN/HOMEMAKER,SELF EMPLOYED,G0000\nFREEDOM OIL COMPANY,,G4300\nExecutive,Mairs & Power,F2100\nVOLVO DEALER,VOLVO OF SAVANNAH,T2310\n\"DESE RESEARCH, INC./CHAIRMAN/CEO\",,D4000\nLOBB,MENDEZ STEADMAN AND ASSOCIATES,K2000\nPhysician Executive,Memorial Health Svc,H0000\nOWNER,ALTEC PACKAGING INC.,Y4000\nCENTER FOR ADVANC TECH,,Y4000\nUNOCAL CORP,,A4100\nVOLUNTEER  PROFESSION,SELF-EMPLOYED,K1000\nGREATER HOUSTON EMERGENCY PHYSICIAN,,H1100\nOwner,Marissa M.coughlan Consulting,Y4000\nMAINE PEDIATRIC ORTHOPAEDICS,,H1130\nEXECUTIVE,PRICE WATERHOUSE COOPER,K2000\nBusiness Owner,MK Consulting Inc.,Y4000\nHAIFINANCE,,G3500\nOWNER,SWANS ISLAND BLANKETS,Y4000\nGAREY CONSTRUCTION CO,,B1000\nceo,bypass liquors,G2840\nCHIEF,CONGRESSWOMAN DARLENE HOOLEY,X3000\nConsulting Executive,Strategic Health Management Corporatio,J7400\nFlroida State Representa,State Of Florida,X3000\nPresident,Quantam Leap Strategies,Y4000\nPresident,Mulberry Neckwear,M3100\nPharmacist,Swanton Rexall Drugs,H1750\n\"CASTLE HARLAN, INC.\",,F2600\nPRESIDENT,\"THE FRITTS GROUP, LLC\",K2000\nGeologist,Environ International Corp,J7400\nAttorney,\"De la O, Marko, et al\",K1000\n\"FAY'S BOUTIQUE\",,G1200\nPROJECT CONSULTANT INDUSTRIAL,SELF-EMPLOYED,G0000\nGANDHI AND ASSOCIATES,,Y4000\nCONSTRUCTION MANAGER,PORTLAND YOUTH BUILDERS,Y4000\nPresident,Select Trading Ltd,Y4000\nProfessor,TX A&M University,H5100\nATTORNEY,ALEXANDER DUBOSE AND TOWN,Y4000\nSAFE-PAC,,F3100\nSECRETARY,BREEZE NATIONAL,Y4000\nOWNER,RUSSELL CARTWRIGHT CONSULTING,K2000\n1 ELEVEN ASSOCIATES,,F2100\nCEO,HARBOR GROUP INTERNATIONAL,F4000\nPHARMACIST,PATTIE DRUG,H1750\nC.E.O.,SOUND SHORE MEDICAL CENTER,H2000\nPARTNER,PODESTA.COM,K2000\nSelf-employed,Wilshire Hotel,T9100\nCo-Chairman/ CEO,Mannatt Jones Global Strategies,K1000\nASSOC IN PLASTIC SURGERY,,H1130\nPHYSICIAN,ALLIANCE UROLOGY,H1130\nCOMPUTER CONSULTING,\"NASUS CONSULTING, INC.\",Y4000\nA TOUCH OF LACE,,G4600\nInsurance Investigat,State of Pa,X3000\nCRAFTSMAN,SELF,B3000\nNGO Administrator,International Bridges to Justice,Y4000\nSPECTRUM FABRICS CORP,,Y4000\nPresident,\"Acosta's Tax & Accounting Services Pa\",F5100\nShell Oil Company,Attorney,J7400\nAttorney,\"Davis, Mannix and McGrath\",K1000\nExecutive Director,\"Environmental Defense Fund, Inc\",JE300\nSelf Employed,Lang Appraisal Service LLC,F4700\nBROCKPORT UNIVERSITY,,H5100\nRESIDENTIAL CONTRACT,\"HAMMERSMITH BUILDERS, L. L. C.\",Y4000\nBELL & HILTACHK,,Y4000\nGULF BANK,,F1100\nGlobal Health,\"Global Business Coalition on HIV/Aids,\",Y4000\nLAINE INC,,Y4000\nCBIZ SOUTHERN CA INC,,F5100\nREGI,SUTTER HEALTH-WESTERN DIVISION,H2100\nPodiatric Physician,W County Family Foot Center,H1130\nCONSULTANT,SEH OF INDIANA,Y4000\nPhysician,Tifton Surgical Clinic PC,H1100\nREALTOR,ORACLE REALTY & INVESTMENT,Z9000\nENGINEER,SHAW STONE & WEBSTER,Y4000\nChairman,Daniels and Associates,F2100\n\"AMERICA'S BEST FLOWERS\",,A8000\nPRESIDENT,SOUTHCOAST PHYSICIANS NETWORK,H1100\nProgram Manager,World Bank,X4200\nATTORNEY,THE ANDERSON LAW FIRM,K1000\nINVESTOR,JORGEN INVESTMENTS LP,Y4000\nSr. VP.,\"Raymond James Financial, Inc.\",F2100\nExecutive,100X Missions,Y4000\nCPA,HENDERSON BRADY LLP,Y4000\nARCHIT,MUSOLINO DIA ARCHITECTS P.C.,B4200\nPHYSICIAN,SUNDEELIZABETH R.MD,H1100\nREAL ESTATE B,PRUDENTIAL PROPERTIES,F4000\nATTORNE,\"KIERNAN, PLUNKETT & REDIHAN\",K1000\nBOARD OF DIRECTORS,SCIENCE MUSEUM OF VIRGINIA FOUNDATION,X4200\n\"LEVIN, MIDDEBROOKS, ET AL\",,K1000\nVice President,Plug Power,E1630\nUS AIR FORCE (RESERVE),RETIRED BRIGADIER GENERAL,J1200\nNUCLEAR MEDICINE OUTPT CLINIC,,H1130\nPRESIDENT/CHIEF EXECUTIVE OFFICER,INFO REQUESTED,G0000\nCONSULTANT,AFR ASSOCIATES,Z9500\nBUENA VISTA PICTURES DISTRIBUT,,C2000\nUNIV OF MARYLAND,,H1120\nINVESTMENT,BAYVIEW CAPITAL PARTNERS,G1200\nCORP EXECUTIV,PRO RENTAL MANAGEMENT,G5300\nPsychologist,Miami Dade Public Schools,X3500\nCEO,THE WHITING-TURNER CO.,Y4000\nATTOR,\"BROOKS PIERCE MCLENDON, ET AL\",K1000\nPROGRAM COORDINATOR,LEARNING LEADERS,Y4000\nWA ST TRANSP COMM,,X1200\nVICE PRESIDENT & GENERAL COUNSEL,QUANTA SERVICES INC.,B3200\nATTORNEY,BROWARD COUNTY PUBLIC SCHOOL,X3500\nFAMILY MEDICINE FACULTY MEDICINE GR,,Y4000\neducation analyst,Eduventures,J1100\nPARTRIDGE REALTY,,F4200\nALLEGIANCE TELECOM SERVICE CORP INC,,C4100\nVP GOVT RELATIONS,CONOCO PHILLIPS/VP GOVT RELATIONS,E1110\nPhysician,Plaza Medical Group,H1130\nGRAYS INSURANCE AGENCY INC,,F3100\nNursing,Self,H1710\nDicrector Of Operati,Oneservice,Y4000\nTEACHER,BUFFALO CSD,L1300\nPROFESSOR,PURCHASE COLLEGE,J7150\nExecutive Director,Texas Democratic Party,J1200\nSales,Vitec Solutions Llc,J1200\nBROOKS FASHION SHOWS,,J5100\nAttorney,\"Eric J Smith, PC\",K1000\nself employed,\"Ann's House of Nuts\",Y4000\nFishing,APL,Y4000\nRTA,,J1100\nSEC. TREAS,SHARPES PRINTING SERVICE,C1300\nINVESTMENT MANAGER,VINEYARD GROUP,G2820\nsr vp energy,CHS,A4300\nLocomotive Engineer,Burlington Northern & Santa Fe Railway,T5100\nCOASTAL UTILITIES IN,,C4100\nALB EM MED ASSN,,H1100\nATTORNEY,RAWLS & HENDERSON,K1000\nSheet Metal,McCorvey Sheet Metal Works,J1100\nMEDICA,GREY EAGLE AMBULANCE SERVICE,H3000\nPRESIDENT,COMPASS HEALTH CARE,H2200\nExecutive,\"Roberts Proprietaries, Inc.\",Y4000\nPRESIDEN,MFZ MANAGEMENT CORPORATION,Y4000\nPRESIDENT & C.E.O.,HOST HOTELS & RESORTS INC./PRESIDEN,T9100\nPresident,\"Synergics, Inc.\",B4400\nPresident,Turley Consulting,H2100\nEDUCATION CONSULTANT,SELF EMPLOYED,K1000\nTEACHER/TUTOR/ATTORNEY,SELF EMPLOYED,Z9500\nPhysician,Sundance Anesthesia,H1130\nPartner,Broydick & Associates,Y4000\nDORFMAN LYNCH & KNOEBEL,,K1000\nOWNER OF A STATE FARM INS AGCY,SELF,Y4000\nInsurance Agent,\"Schiff, Kreidler-Shell, Inc.\",J1200\nRIVER TRIPS,,Y4000\nOwner,H HOVNANIAN INDUSTRIES,B2000\nIMPERIAL,,T2200\nengineer,crestron electronics,Y4000\nWINDBER HOSPITAL,,H2100\nOWNER,CLIVUS MULTRUM,E2000\nCAMBRIDGE INFORMATION GROUP,,\nExecutive,R. J. Corman,T5100\ninterviewer,state of ct labor,X3000\nDISTR,U.S. REP. LINCOLN DIAZ-BALART,X3000\n\"BLUME, ELBONE, ADAMS\",,K1000\nPres & CEO,Cryptek,C5100\nC&L AUTO SALES,,T2300\nINTERIOR DESIGNER,INTERIOR DESIGN SERVICE,G5000\nOWNER,MARTHA GRAHAM & ASSOC,G4400\nbusinessman,\"Clement Pappas & Co., Inc.\",G2600\nPresident and CEO of own business,Jeffrey Cufaude,Y4000\nHEARST ENTERTAINMENT & SYNDICATION,,C2100\nEDUCATION ADMINISTRATION,BARD COLLEGE,H5100\nMUTRON PROPERTIES,,F2100\nVENTURE CAPITALIST & CONSULTANT,\"CROSS RIDGE CAPITAL, LLC\",Y4000\nGovernmental Relations,Self-Employed,K2000\nATTORNEY,WALDEN MEDIA,C2400\nVice President,Great Northwest Inc.,Y4000\nPresident/CEO,Page Research,Y4000\nATTORNEY,DLA PIPER LLC,K1000\nAccountant,Barkley Net,Y4000\ncorporate counsel,\"Boston-Power, Inc\",M2300\nPresident/Chariman,Blue Fire Gear,Y4000\nPolitical Strategist,Steve Pougnet For Congress,Y4000\nREGISTERED N,UNIVERSITY OF VIRGINIA,J1200\nMANAGER,CENTER CONSULTING,Y4000\nVP-Operations,American Medical Response,H3000\nINSTROMEDIX INC,,H4100\nSupervising Health C,NJ State Dept of Health & Senior Servi,Y4000\nExecutive Level C1,\"Hall Energy Srvc, Inc\",E1150\nM E FOX,,G2850\nSOFTWARE DEVELOPER,XENOPS,J1200\nVP,GNY HA,Y4000\nBENFIELD PET HOSPITAL,,A4500\nOIL AND GAS CO,,E1100\nSALES,ROAD RUNNER PHARMACY/SALES,G4900\nPolicy Consultant,Florida Wildlife Federation,Y4000\nFIRE C,NEWPORT NEWS FIRE DEPARTMENT,X3000\nREAL ESTATE BROKER,HAINES REALTY,F4200\nManaging Director,Hilton Hotels,T0000\nBuilding Analyst,\"Building Science, Inc\",Y4000\nCROUSE INVESTMENTS,,F0000\nPHYS,CENTRAL STATES ORTHOPEDIC SPEC,H1130\nAttorney,Coffey Burlington LLP,Y4000\nPRESIDENT,TRIARC COMPANIES,F2600\nC.E.O.,WORLDWIDE EQUIPMENT INC,T3000\nDHBA Enterprises,Public Adjuster,G5000\nHERMAN GOELITZ CANDY CO,,G2200\nTHE S/L/A/M COLLABORATIVE,,Y4000\nPRESIDENT & C.E.O.,W.T. DUBOIS CONSTRUCTION INC.,B1500\nWATSON FOODS CO INC,,G2100\nCEO,PLACK CARR CO.,Y4000\nAttorney,Gerald J Diaz Jr PA,Y4000\nHigh Risk Security,Self-Employed,Y4000\nFINANCIAL AD,HARBORVIEW INVESTMENTS,F7000\nINTERIM PRESIDENT,WELLMONT LONESOME PINE HOSPITAL,H2100\nGRANT SPECIA,WINDBER MEDICAL CENTER,H2000\nINVESTMENT BANKER,1ST BRIDGEHOUSE SEAL L.L.C.,F2100\nTRAINING SPECIALIST,DEPARTMENT OF THE ARMY,X5000\nwriter producer,cbs paramount,Z9500\nDIRECTOR OF REGULATO,PEPPERDINE UNIVERSITY,H5100\nInsurance,\"DEEP SOUTH SURPLUS, INC.\",F3100\nCANNON CONSULTANTS INC,,K2000\nVICE PRESIDENT,SILVERMAN COAST CO.,Y4000\nRetired,Sock Wholesalers,Y4000\nSENIOR VICE PRESIDENT,\"SOUTHSIDE BANCSHARES, INC.\",F1000\nANTHROPOLOGIST,M.F.HUANG CONSULTING,Z9500\nBROADWAY TRUCK STOP - WEST SPOKANE,,E1170\nREAL ESTATE DEV,MARRETT DEVELOPMENT,Z9500\nCase Management,self,Y4000\nPHYSICIAN,ALLINA HELP,Y4000\nSAINT BAMAHAS MEDICAL CENTER,,H0000\nCALLIGRAPHER/DESIGNER,SELF-EMPLOYED,X0000\nATTORNEY,IRELL AND MARIELLA LLP,K1000\n\"SENIOR MGR, DIGITAL COMMUNICATIONS STR\",PFIZER,H4300\nMANAGER,TRINITY INDUSTRIES INC,T5200\nTFK DEVELOPMENT INC,,Y4000\nOwner,Ludwig-Walpole,Y4000\nBUSINESS,\"SLONE LUMBER COMPANY, INC.\",B5200\nHAYES SEAY MATTERN &,,Y4000\n\"SUTTON VW, PORSCHE, AUDI\",,T2300\nDOCTOR,NAYAN PATEL,Y4000\nLAYWE,SELF-EMPLOYED,G0000\nAttorney,Mccarty & Gebben Llp,K1000\nBOOKSELLER,ANNIE BLOOM BOOKS,G4600\nVP HEALTH NETWORK SVCS,BLUE CROSS BLUE SHIELD OF NE,F3200\nCASTELLINI COMPANY,,A1400\nCHAIRMAN,FLORIDA TRANSPORTATION COMMISS,Y4000\nCORPORATE PROPERTY INVESTOR,,F2300\nSTORAGE BUSINESS,SELF,Y4000\nLobbyist,Griffols Co,Y4000\nVAUGHN & SONS INC,,B1500\nGCAC,,Y4000\nHJ Kalikow,Real Estate,F4500\nMANAGER,SOUTH U. VENTURES,Y4000\nDerivatives Specialist,BNY Mellon,F2100\nTRINITY MARKETING CORP,,Y4000\nMAS AND STANEK PC,,Y4000\nPresident/CEO,Barry Rutenberg & Assoc Inc,B2000\nPresident,Atomic Heritage Foundation,Z9500\nPartner,Teague & Teague Insurance Agen,F3100\nEASTERN DIVISION SALE,KWIK LOK CORP,G2100\nTEACHER,OC HUMAN RELATIONS,Y4000\nPhysical Therapist,College of St. Scholastica,H1700\nDESIGNER,MADDERLAKE DESIGNS,Y4000\nPresident and Managi,Perseus Group,Y4000\nPROF,\"UNIVERSITY OF CA, SAN FRANCISC\",J5100\nSALES PERSON,HOPSCOTCH,Z9500\nPRESIDENT,ST CLAIR CHEVROLET BUICK GMC,T2300\nVP New Business/Mkt,Siemens Dematic Postal Auto LP,C5000\nReal Estate Broker,RE/MAX Executives Druid Hills,F4200\nOWNER,ACREE OIL CO./OWNER,E1100\nCHEF ACEVUTIVE,OWNER,G0000\nVICE PRESIDENT,CAPITAL INDUSTRIES,Y4000\nMANAGER,THE MATHWORKS/MANAGER,C5120\nManaging Director,Monitor-Clipper Partners,F2600\nPresident,MVI Homecare,Y4000\nATTORNEY,RITZERT & LEYTON,K1000\nATTORN,EMOND VINES GORHAM & WALDREP,K1100\nMARINE OFFICER,UNITED STATES MARINE CORPS/MARINE O,X5000\nManagement Co,Geo Strategy Partners,Y4000\nTAX LAWYER,GRANT THORNTON LLP,F5100\nMASSAGE THERAPIST,SELF-EMPLOYED,B4400\nCEO,NRG ENERGY,E1630\nGIBRALTAR BANK,,F1100\nLEGAL ASSISTANT,\"INFORMATION MANAGEMENT CONSULTANTS,\",C5130\nKENNETT VETERINARY CLINIC,,G1200\nself emp,\"Herring truck sales, llc\",Y4000\nAdvertising,Boston Scientific,H4100\nV,AMER ASSN OF BOVINE PRACTITIONERS,A4500\nPARTNER,SCHMIDT PUBLIC AFFAIRS,Y4000\nMORTGAGE BA,SECURITY MORTGAGE GROUP,F4600\n1199 CHILDCARE,,Y4000\nCEO,\"KEY INVESTMENT, INC.\",F2600\nINFO REQESTED,INFO REQESTED,B1000\nPRESIDENT,CASH DISTRIBUTING,Y4000\nREAL ESTATE,EMBARCADERO PARTNERS,F0000\nPRIVATE EQUITY,WARBURG PINCUS LLC,J1100\nKAISER KUHN LIGHTING LTD,,Y4000\nEXECUTIVE,THE FRANKLIN PARTNERSHIP,K2000\nDOMINION EXPLORATION/OIL/GAS EXPLOR,,E1150\nEXECUTIVE,W.E. HALL CO.,Y4000\nSUMMI CORP,,Y4000\nProgrammer,Ret,X1200\nQUIK STOP STORE,,Y4000\nPRESIDENT,MC WANE INC.,M2300\nMANAGER,BRADBURY FAMILY PARTNERSHIP,Y4000\nLEWIS BOWMAN ST CLAIR,,Y4000\nCEO,E.T.C. INC,Y4000\n\"CRAVATHY, SWAINE & MOORE\",,K1000\nController,\"Downey Creations, LLC\",Y4000\nCHAIRMAN,CERTAIN SOFTWARE INC.,C5120\nCLINE-PROD SERVICES,,Y4000\nCorporate Trainer,Shine HGT,Y4000\nINVESTMENT BANKER,\"WHIYBY, SANTARLASCI & CO.\",Y4000\nATTORNEY,OCEAN ABSTRACT,F4300\nATTORNEY,GENERAL DYNAMISTECHNOLOGIST PRODUCT IN,D3000\nASSOC IN ORTHOPEDICS,SURGEON,J1100\nATTORNEY,CSEA/AFSCME LOCAL 1000,Y4000\nHomemaker,none,B5100\nMOVING AND STORAGE,,T3100\nPRESIDENT,ARUNDEL MACHINE,Y4000\nSENIOR VICE PRESIDENT,DUKE REALTY CORPERATION,F4200\nUNITED ABRASIVES INC/PRESIDENT/CEO,,Y4000\nRegional Govt Affair,Embarq Corp,C4100\nPodiatrist,Center for Sports Medicine,H1130\nVICE PRE,ANN EPPARD ASSOCIATES LTD.,F4200\nSUMMER REGIONAL MEDICAL CENTER,,H2000\nSTRATEGIST,\"MERITOR, INC.\",T2200\n\"Owner,CFO\",Scalo Case Development,Y4000\nWaiter,Brandywine,J1200\nHAYES DIVERSIFIED TECH/PRESIDENT /,,Y4000\nPRESIDENT / CEO,\"ALAMO RECYCLING, LLC\",J6200\nHAGERMAN INC,,B1500\nOFFICE MANAGER,\"MATTHEW J. KORMYLO, D.M.D.\",Y4000\nDEVELOPER,RUSSELL DEVELOPMENT CO.,F4100\nAttorney,Nader & Nader,Y4000\nPresident/ceo,Ultra Machining Corp.,Y4000\nPRESIDE,\"SAINT JOHN'S HEALTH SYSTEMS\",Y4000\nBROADWAY BUILDING CO,,Y4000\nAir Taxi Operator,Self-Employed,Y4000\nPRESIDENT,CAPITAL CORP.,Y4000\nEXECUTIVE D,GREAT CITIES UNIVERSITY,H5100\nFire Fighter/EMS,LIMA,L1400\nAnesthesiologist,Physician Specialists in Anest,H1100\nPRE,VENETIAN BLIND & FLOOR COVERING,G1200\nJudge,Mobile County Circuit Court,Y4000\nfood service directo,rescare,Y4000\nGENTECH,,H4300\nPRESIDENT,TOYOTA WARSAW,Y4000\nINDOOR PROVISIONS INC,,Y4000\nGOVERNMENT EMPLOYEE ASCS,,X3000\nOffice,\"Trigo Technologies, Inc.\",Y4000\nDir Federal Airport Security,Southwest Airlines Co.,T1100\nEXECUTI,RAPPAPORT FAMILY FOUNDATION,Z9500\nTRANSPORTATION,BASED IN CONCRETE,B5100\nEXECUTIVE,JOSEPH CONSTRUCTION CO.,B1500\nAKRIDGE COMPANIES,PRESIDENT,Y4000\nPhysician,\"WINCHESTER RADIOLOGY, P\",H1130\nCONSULTANT,EAST TEXAS LIFE SUPPORT,Y4000\nCONTRACTOR,GENWORTH WEATLH MANAGEMENT,Y4000\nINVESTMENT BANKER,ENGLAND AND CO.,Y4000\nCEO/PRESIDENT,\"TORCH TECHNOLOGIES, INC\",D9000\nPRODUCT MANAGER,MHZ,J1100\nQUALITY TRAVEL,,T9100\nVICE PRESIDENT/DEVEL,FOREST CITY DEVELOPMENT,F4100\nEXECUTIVE ENERGY COMPANY,,E1000\nMINISTER OF GOSPEL,FIRST BAPTIST CHURCH,X7000\nFORESTE,FOREST CAPITAL PARTNERS LLC,A5000\nfinancia,RegentAtlantic Capital LLC,Z9500\nPRESIDENT,\"SOUTHEAST QSR, LLC\",G1000\nEducator,The Brame Institute of Education,Y4000\nCOMM MUTUAL - BLUE CROSS BLUE SHIEL,,F3200\nREAL ESTATE BROKER,REAL ESTATE ONE ROCHESTER,F4200\nCONSTRUCTION,P. DIMARCO & CO.,Y4000\nSELF/MUSICIAN/TEACHER,,Z9500\nSTARDOT CONSULTING,,F7000\nChairman,Engineered Prod. Co.,B4400\nWYNNE SPEIGEL & ITKIN,,K1000\nInformation Requeste,Phoenix School of Law,H5170\nPhysician,retired,J7400\nCONSULTANTS,INNOVATIVE BENEFITS,Y4000\nLIVESTOCK RANCHER,SELF EMPLOYED,JD100\nHEALTH REACH NETWORK,,Y4000\nCONSULTA,ADVOCATES FOR CLEAN ENERGY,Y4000\nMANAGER,N CENTRAL CAREER AND TECH,Y4000\nSURGEON,COOPER HEALTH,Y4000\nVP SALES,J. RAY MCDERMOTT,E1150\nSELF-EMPLOYED/AML/BSA CONSULTANT,,Y4000\nALLIED VALUE IND,,JE300\nGOLDBERG AND COHN,,K1000\nHOME LIFE NURSING I,,J7300\nRN,Halifax Health Medical Center,H2100\nLaw Enforcement,Leon County,Y4000\nPhysician,Maryland Endocrit  PA,Y4000\nINVESTER,SELF-EMPLOYED,J7120\nREAL ESTAT,MILLENIUM PROPERTIES INC,J5100\nDoctor,John Bruno M.d.,H1100\nSENIOR CONSULTANT,COXE CURRY & ASSOCIATES,Y4000\nFINANCIAL MODELING CONCEP,,F5000\nPRESIDENT,APP WORLD INC.,Y4000\nVP MARKETING,M FINANCIAL GROUP,F0000\nResearch,Unite Here,LG000\nPublic Relations,Inova Health,H0000\nSTAFF NETWORK MGR,CLICK ACTION INC,C5120\nVAN VYVEN INSURANCE,,F3100\n\"PRESTEN, GATES, ELLIS\",,K1000\nVICE PRESIDENT,\"BIO REFERENCE LABORATORIES, INC./VI\",Y4000\nSoftware Sales,Emc,C5130\nExeperience Corps,,Y4000\nDATA CONSULTING GRO,,Y4000\nATTORNEY,TUESLEY HALL KONOPA,Y4000\nRETIRED,SHELL OIL CO.,E1110\nEXECUTIV,PIGGLY WIGGLY CAROLINA CO.,Y4000\nPresident,FHM Insurance,G2900\nATTORNE,\"LEWIS MORTELL & LEWIS, P.A.\",K1000\nOWNER,LOUISIANA GLASS,M7200\nAttorney,\"Cisco Systems, Inc.\",C5110\nREYNOLDS MOTOR CO,,Y4000\nPHYSICIAN,NEBRASKA ORTHOPEDICS,H1130\nCONSULTING,HUMAN ELEMENTS,Z9500\nHOSPICE WORKER,,J7700\nMANAGER,SEARL CORPORATION,Y4000\nATTORNEY,A. JEFFREY BEAN PLLC.,Y4000\nLAKE LEDGE INC,,Y4000\nInvestment Advisor,U.B.S. Financial Services,F2100\nAssistant Counsel,Empire State Development,Y4000\nExecutive Director,Michigan Education Assoc,Y4000\nAttorney at Law,\"Younger, Cohn & Stiles\",K1000\nSmall Business Consu,Self-employed,G5200\nPROJECT MANAGER,FREELAND SYSTEMS LLC,Y4000\nPKH CORP,,G5200\nAccountant,\"Bikos & Associates, CPA, PC\",F5100\nEXECUTIVE,\"BARROW, HANLEY, MEWHINNEY & STRAUS\",F2100\nPresident/CEO,Horizon Blue Cross Blue Shield,F3200\nRetired,None,J5100\nReal Estate Develope,\"Edmor Properties,MPN\",F4000\nATTORNEY,EVA CARE GROUP LLC,Y4000\nBORG COMPRESSED,,M2100\n\"SANTA CLARA COUNTY PUBLIC DEFENDER'\",,Y4000\nSELF-EMPLOYED COURIER,DYNAMEX,Y4000\nREAL ESTATE INVESTMENT,MACERICH,J1100\nUNIVERSAL SYSTEMS INC,,Y4000\nEXECUTIVE,SOUTHERN ILL,Y4000\nTRADER,BIENVILLE CAPITAL,Y4000\n\"Administrator, Tri-T\",Bassett Healthcare Cooperstown NY,H0000\nPLANNED PARENTHOOD OF NAS CTY,,J7150\nSOCIAL WORK ADMINISTRATOR,JEWISH FAMILY SERVICE/SOCIAL WORK A,H6000\nGLOBAL INVESTMENT RECOVERY INC.,,F7000\nPRESIDENT,FON DU LAC ABSTRACT,F4300\nPRESIDENT,SVENDSON INVESTMENTS,F7000\nDeputy Directory,Family Health Internatio,Y4000\nATHY MEMORIAL HOME,,G5400\nPHYSICIAN,MT SINAI SCHOOL OF MEDICINE,H5150\nMedical Doctor,Saint Francis Medical Group,H1100\nInformation Requeste,Zia Consulting Inc,Y4000\nCONEMAUGH HEALTH SYSTEMS,,H2100\nARDEN INVESTIGATION,,G5290\nAttorney,MSU,H5100\nPrincipal,Naviscent LLC,Y4000\nC.E.O.,EDGEFIELD COUNTY HOSPITAL,H2100\nGUNN,,F4500\n\"REPUBLIC TITLE OF TEXAS, INC\",,F4300\nPartner,\"Foreman, DeGeurin & DeGeurin\",Y4000\nUnemployed,Knowledge Learning Corp,H5000\nPRESIDENT,WARRIOR,Y4000\nPRESIDENT,A SMALL MIRACLE INC.,Y4000\nACCESS WASHINGTON INC,,C1100\nA-1 CRANE,,Y4000\nHealer (energywork),Self employed,E1000\nAccounting Manager,Spie,Y4000\nC.E.O.,\"JAM FAMILY ENTERPRISES, L.P.\",T9100\nDirector,Randall Lineback Breed Association,Y4000\nDirector of Business Development,Boeing,D2000\nCEO,MCKENNEY INC.,B1500\nINDEPENDENCE FACILITIES INC,,Y4000\nOWNER,RUG & HOME,Y4000\nInsurance Underwriter,Nor Beacon Insurance,F3100\nFOUR M CORPORATION,,J7500\nATTO,RICHARD KIRSCHNER & ASSOCIATES,Y4000\nBLOSSMAN GAS COMPANY,,E1190\nOWNER,SKIPPER GRAPHICS,Y4000\nENGINEERING,MILLERBERND MFG COMPANY,Y4000\nOWNER,LHP,Y4000\nINVESTMENT CONSULTANT,SELF EMPLOYED,X1200\nCOO,National Football League,G6400\nCEO,PREMIER SERVICES,Y4000\nREAL ESTATE BROKER,\"RE/MAX ACR ELITE GROUP, INC.\",F4200\nOwner,Rouge Ale,Y4000\nGARRERS INC,,Y4000\nAttorney,\"Cadwalader, Wickerson & Taft, LLP\",K1200\nPRINCIPAL,MCKENZIE CURTISS-LUSHER & ASSOC.,F2100\nSOUTHLAND ASSOC,,Y4000\nExecutive,Hiller Companies,F4200\nOwner,\"Marcie B Hale Cpa, Pc\",F5100\nHR MANAGER,GUARDIAN FIBERGLASS INC.,M7200\nMIDDLETOWN BRD OF EDU,,X3500\nFarmer,Whitworth Farms,A1000\nURBAN DESIGN,\"LLOYD D. LINDLEY, ASLA\",Z9500\nController,Fitzgerald Auto Mall,T2300\n\"DEPUTY DIRECTOR, THINK TANK\",INSTITUTE FOR STRATEGIC DIALOGUE,Y4000\nGENERAL CONTRACTOR,MISTRICK CONSTRUCTION CO.,B1500\nCEO,Lincoln Builders Inc,B1500\nOwner,\"J T J, L L C\",Y4000\nKELLY & FAWCETT PA,,K1000\nPAVEMENT CONTRACTOR,ROAD,Y4000\nDoctor,Harvard Vanguard Medical Associates,H1100\nMONROE INC,,B5100\nHOMEMAKER,HOMEMAKER/HOMEMAKER,F4200\nENDODONTIST,\"ENDODONTIC SPECIALISTS, INC\",Z9500\nRESEARCH SOLVENT AND CHEMICAL,,M1000\nPartner,Horne LLP,G1000\nPhysician,Advanced Medical Arts,Y4000\nAttorney,\"NeJame, Harrington & Barker, P.A.\",Y4000\nHYGIENIST,T. MALCOLM WARREN DMD,Y4000\nreal estate,northwest partners llc,Y4000\nPEBBLES RESTAURANT,,G2900\nASSOCIATION OF WASH CITIES,,J5100\nConsultant,\"THE CLEMENTS GROUP, INC.\",Y4000\nOWNER,ONE STOP AUTO WRECKING,Y4000\nOFFICE MANAGER,HAMILTON COMMISSION COMPANY,Y4000\nG & L INTERBANK BANK,,F1100\nPROFESSOR,UNIVERSITY OF HOUST,Y4000\nSCOPE IMPORTS INC,,J1100\nAMERI-CARE INC,,Y4000\nCIO ZURICH NORTH AMERIC,ZURICH U.S.,F3400\nPresident,Ed-Mor Electric,B3200\nUNIV OF SO FLORIDA,,J5400\nPHY,NEW ENGLAND NEUROLOGICAL ASSOC.,Y4000\nATTORNEY,CRUMBY # WEEMS L.L.P.,K1000\nELEVATOR,\"BUNGE NORTH AMERICA, INC.\",A1500\neditor and technical writer,Amazon.com,J1200\nFABRIC,\"PINTO METAL FABRICATION, INC\",Y4000\nRETIRED FEDERAL JUDGE; LAWYER,WHITE ARNOLD  DOWD PC,K1000\nDeputy Director,National ENvironmental Trust,JE300\nEngineer,Trident,Y4000\nTCM DIVISION,3M,B1000\nRAVEN SERVIES CORPORATION,,Y4000\nINSURANCE SALES,HORSMANN JOHNSON INSURANCE,Y4000\nPOLICY ADVOCATE,JUSTICE MATTERS,Y4000\nENGINEER,GOLIATH SOLUTIONS,Y4000\nOptometrist,Crown Vision,Y4000\nInvestment Manager,\"MDM Management & Reserach, LLC\",J1200\nCONSULT,\"TIM ENGLISH CONSULTING, LLC\",K2000\nVICE PRESIDENT OF FINANCE,ALLEGLANT AIR,Y4000\nMINTON BURTON ET AL,,K1000\nRESTAURANTEUR,JC GEORGES,Y4000\nKISSOCK REALTY,,F4200\nDESIGNER,DIANE VON FURSTENBERG/DESIGNER,M3100\nMAC IT/WEB DESIGN & GRAPHIC DE,SELF EMPLOYED,Y4000\nSales,Info Coffee,J1200\nVet,Sea Girt Animal Hospital,J1200\nChurchill Downs,,G6500\nCoastal Environmental Specialist,The World Bank,X8000\nVOYIAZIS CONST,,B1500\nCHET EDWARDS FOR CONGRESS,CHET EDWARDS FOR CONGRESS,Z9500\nConsultant,GLPS Consulting,Y4000\nFINANCIAL CONSU,A.G. EDWARDS & SONS,F2100\nRestaurateur,\"Jackson's All-American Sports Grills C\",G2900\nINSURANCE MANAGEMENT,TRAVELERS INSURANCE,F1100\nPresident,Utility Line Service,B1000\nVice Chairman,Commerce Insurance Services,F3300\nCOMMERICAL R,JACKSON & COOKSEY LTD.,F4000\nPKLIVINGSTON ALASKA INC,,Y4000\nEXECUTIVE D,TOMATO GROWERS EXCHANGE,A1400\nBUSINESS MANAGER,GRELF INC.,Y4000\nInterim Executive Director,Global Rights,J7000\nContractor,McAninch Corp,B1000\nWriter/Teacher,Bucks County Community College,H5100\nIns Und,Liberty Mutual Group,F3400\nAdmin,Univ of Tulsa,H5100\nPACIFIC MARITIME,,Y4000\nBROKER,BYWATER CORP.,Y4000\nATTORNEY,JOHNSON ROSATI,Y4000\nLaw Professor Emeritus,Univ of NM School of Law,J7400\nOPERATIONS MANAGER,SS&C TECHNOLOGIES,F2000\nINTERNATIONAL ENVIRONMENT GROUP INC,,Y4000\nOwner,Stockberger Chevrolet,T2300\nADMINISTRATOR,LANSING SCHOOL DISTRICT,X3500\nSENIOR VICE PRESID,TENET HEALTHCARE,H2100\nStudy Director,\"Westat, Rockville, md 20850\",C5130\nMANAGING MEMBER,LANGNIAPPE ASSOC,Z9500\nOWNER,BULLDOG BATTERY CORP.,Y4000\n\"CHAIRMAN, CEO, PRESIDENT\",SELECTIVE INSURANCE GROUP,F3000\nInsurance Executive,Ross and Yerger,F5100\nBAXTER STREET ASSOCIATES,,Y4000\nATTORNEY/PARTNER,JACKSON WALKER L.L.P.,K1000\nATTORNEY,KEATING MUETHING & KLEKAMP,K1000\nCeo,Stop&Shop Food Stores,G2400\nPHYSICIAN,WELLCARE HEALTH PLANS,H3700\nExecutive,National College Sports Net,Y4000\nHEADMASTE,CHRISTIAN HERITAGE SCHOOL,H5100\nSenior Vice Presiden,Charter Media,C2200\nPUBLIC REL,ABERNATHY ASSOCIATES INC,Y4000\nVICE CHAIRMAN,DHR INTERNATIONAL,Y4000\nReference Speicalist,New York Blood Cente,Y4000\nTEACHER,Harrison Assn Of Tch,L1300\nEXECUTIVE,HERLOCKER ENTERPRISES,Y4000\nOwner,Trimble Engineers & Constructors,B1500\nPresident/CEO,BioInnovation,Y4000\nROTTER AUTO SALES SERVICE,,T2300\nGeneral Director/Conduct,Tulsa Opera,J7400\nOWNER,LOGOWEAR,Y4000\nPRESIDENT,CHARTER 1 REALITY & MARKETING,F4200\nArchitect,\"Durkee, Brown, Viveiros & Werenfels Ar\",B4200\nTNA INVESTMENT,,Y4000\nInvestor,\"Downsville Capital, Inc.\",Y4000\nFUND RAISER,E.L.C.C.T.,Y4000\nFARMER,KREIDER FARMS,A1000\nPEDIATRIC DENTIST,KIDS FIRST PEDIATRIC DENTISTRY- SELF E,Y4000\nBusiness Owner,Calypso Realty,F4200\nUnknown,Michigan Milk Producers Associ,A6000\n\"BIRRANE, HARLAN & BRAT\",,K1000\nFOUNDER,MIYAMONTE USA INC.,Y4000\nGAMBRELL & STOLTZ,,K1000\nChief Executive Offi,Kellogg Company,G2100\nSr. Vice President,City National Bank,F1100\nEXECUTIVE DIRECTOR,CAPSTONE ADVISORY GROUP LLC,G5270\nBUSINESS OWNER,MELANKO CONSTRUCTION,B1500\nTeacher,Farmington School Dist,J1200\nStrategic Counselor,Livingston Group,K2000\nWHOLESALER OF PLUMBING SU,,J1100\nNBA PLAYERS ASSOC,,G6400\nLawyer,Kreindler,K1000\nOwner,Carty Hereford Ranch,A3000\nGENERAL C,R.B.C. CENTURA BANKS INC.,F1100\nVP,TransUnion LLc,F5200\nLENDER,M & T MORTGAGE,B2000\nVIRGINIA COLLEGE,,H5100\nNORTHWEST CARDIOVASCULAR ASSOCIATES,,H1130\nOFFICE MANAGER,\"HERGE, SPARKS & CHRISTOPHER\",K1000\nPRESIDE,METALPLATE GALVANIZING INC.,M5200\nBus Driver,Spsv School,Y4000\n\"Rancher, Film Maker, Mar\",Self employed,A3000\nREX D CARTER D O P C,,Y4000\nGovernmental Consult,Self-employed,K2000\nOffice Manager,\"Oliver & Oliver, PC\",Y4000\nTeacher,John Swett Unified Sd,X3500\nInternational Distri,Warner Bros,C2400\nPhysician,Mary Washington Hospital,H2100\nVICE,GETRUNICS GOVT. SOLUTIONS LLC,Y4000\nCLARK COUNTY MENTAL HEALTH SERVICES,,H3800\nPRESIDENT,DIRECTORCORPS LLC,Y4000\nGOVERNMENT RELATIONS,BEST BUY CO.,G4200\nAttorney,Cohren Lans LLP,J7400\nHUMAN RESOURCES DIRECTOR,REEBOK INTERNATIONAL LIMITED,M3200\nPRESID,BAM CONSTRUCTION COMPANY LLC,B1500\nGOLF TECHNOLOGIES,,G6100\nPreschool Teacher,Sandhurst Coop,Y4000\nSelfemployed,deMoor designs,Y4000\nMONEY MANAG,GOLDMAN SACHS & COMPANY,F2300\nFARMER,,E1100\nINSURANCE,O.C. GROUP,Y4000\nPOLICY ANALYST,NCEP,Y4000\nDoctor - Chiropracto,Information Requested,H1500\nInformation Officer,IRG,Y4000\nATTORNEY,RHUMB LINE LLC,K1000\nPest Control,Anti-Pest,G5700\nAUTO DEALER,LIMA AUTO MALL INC,T2300\nPediatric Surgeon,Univ of Wisc,H5100\n\"WOMEN'S PROMOTIONS\",,Y4000\nPRESIDENT,LAND CRAFT INC.,Y4000\nBAR OWNER,HARMONY BAR,G2900\nMID FL GASTROENTEROLOGY,,H1130\nRAININ RESEARCH GROUP,,Y4000\nGovernment Affairs Officer,American Express Company,F1400\nManager,Garden Grove Market,Y4000\nEXEC. V.P. GRO,N.W. AYER & PARTNERS,G5210\nHORIZON HEALTHCARE,,H2200\nOWNER,CORE RESEARCH,Y4000\nOWNER,REMAX REALTY GROUP,F4200\nCARL SMITH BALL ET ALL,,Y4000\nNURSE PRACTITIONER,CENTRAL FLORIDA HEMATOLOGY/ONCOLOGY,Z9000\nNATIONAL CARGO,,T3100\nMARKETING (STEEL),TENENBAUM & CO.,Y4000\naccounting,Tanner Mainstain Blatt Glynn,Y4000\nCOMMUNICATIONS CONSULTANT,GODDARD GUNSTER,Y4000\nRETIRED AEROSPACE,NOT APPLICALE,X1200\nENGINEER,INTEGRATED SYSTEMS,Y4000\nInsurance Agent,Zuber Insurance Agency Inc,F3100\nRisk Management,Deutsche Bank,F1100\nENGINEER,GAMMON TECHNICAL PRODUCTS INC./ENGI,Y4000\nDELORENZO GORDON PASGUANIELLO ET A,,Y4000\nBUILDER,REGENCY BUILDERS,B0000\nCeo,National Rental Alliance,G5300\nTHE REALTY INC,,F4200\nPresident,Docuity Inc,Y4000\nUMDNJ,,J7150\nEVANS PUTNAM & CUINN,,Y4000\nFARMER,RON SILVA,G2820\nCONSULTANT - HEALTHCARE,ARDENT HEALTH SERVICES,H3000\nOWNER,MID ATLANTIC TEST & BALANCE,Y4000\nCUMMINS ATLANTIC INC,,T2200\nCHAGRIN ASSOC,,Y4000\nSYSTEMS ADMIM/HELPDESK ANALYST,MYMIC LLC,Z9500\nCEO,LAND SERVICES USA,Y4000\nUSABILITY CONSULTANT,SELF-EMPLOYED/USABILITY CONSULTANT,Y4000\nSYSTEM COO/PRESIDENT,SPARTANBURG MEDICAL CENTER,H2100\nPYRAMID PAVING INC,,Y4000\nOBSTETRICIAN,GLEN MEADE PA,Y4000\nMANAGER,TRANSIT CASUALTY COMPANY,Y4000\nDirector of Communications,Archdiocese of Boston,X7000\nOwner,Muller Inc.,J7500\nCOUNSULTANT,,J7400\nTENATLY PUBLIC SCHOOLS,,X3500\nSASNAK MGMT CO,,G2900\nCPA,STAFFOD & ASSOCIATES,F5100\nConsultant,Wolfensohn Center,Y4000\nAttorney,Reformed Presby. Womans Assoc,Y4000\nInformation Requeste,The Federalist Group,K2000\nPROPERTY MA,M&R MANAGEMENT CO. INC.,B2000\nENTEROMEDICS INC,,Y4000\nREAL ESTAT,GEBROE HAMMER ASSOCIATES,F4200\nFLORENCE NIGHTINGGALE HEALTH CENTER,,H2100\nPRES AND GENE,ENTERPRISE CAR RENTAL,T2500\nPhysician,North Cypress Medical Center,H2100\nBOYTON WALTON BALIACH & SCOTT,,K1000\nHOWRY SIMON ARNOLD & WHITE LLP,,K1000\nWILLIAMS INDUSTRIES,,A5000\nNEW ORLEANS POLICE DEPT,,X3200\nREALTOR,PENNSYLVANIA ASSOC. OF REALTORS,J9000\nSITE VICE PRESIDENT,EXELON NUCLEAR,E1300\nMARK V DISTRIBUTING,,Y4000\nBiologist,Aquatic Technologies,Y4000\nTeacher,Miami University,H5100\nOWNER,WATER ASSOCIATES,J9000\nRETIRED,J.P. MORGAN CHASE,F1100\nPACIFIC ELECTRICORD INC,,C5000\nDIRECTOR,FMC TECHNOLOGIES,E1150\nATTORN,CORP FOR ENTERPR DEVELOPMENT,Y4000\nPT,BUSTILLO PHYSICAL THERAPY,H1700\nENGINEER,DELTA AIRLINES,T1100\nATTORNEY,KAUFLER & ASSOCIATES,K1000\nPENSION CONSULTANT,USICG,X3000\nCEO,Solar-N,J1200\nIGU,,Y4000\nATTORNEY,BESHEARS MUCHMORE WALLWORK,K1000\nOwner,\"Josey's Enterprises\",Y4000\nREP FRANK CORTE JR,,Y4000\nPOWERLINE CONSTRUCTION CO,,B1500\nPodiatric Physician,Pillsbury Medical Bldg,H1130\nCONSULTANT,THE CURTIS GROUP,Y4000\nBusinesswoman,Winery,J7400\nVice President,Integrated Power Syst.internat,Y4000\nSYSTEMS M,THE OHIO STATE UNIVERSITY,H5100\nPresident,Schantz Organ Co,Y4000\nLAWYER,\"WALLER, LANSDEN, DORTCH & DAVIS\",K1100\nSOFTWARE PUBLISHER,\"JOSEPH ALTER, INC\",Z9500\nExec Director,Internet2,C5140\nVP PUBLIC,RIO TINTO SHARED SERVICES,E1220\nProfessor,Northwest Nazarene University,J1200\nHOLLEB AND COFF,,K1000\nPRESIDENT,DAY CHEVROLET INC,T2300\nFARM MANAGER,GOLDEN RANCH,A1200\nBUSINESS PERSON,ROMACK INC.,Y4000\nPATRICK NG & ASSOCIA,,Y4000\nPIPEFITTER,\"INTERMECH,INC.\",LB100\nBUILDERS,DESERT SAGE,B1500\nDAVID J MURRAY & ASSOCIATES INC,,Y4000\nKANSAS VENTURE CAPITAL INC,,G1200\nMINOR BARNES,,Y4000\nEngineer,San Martin Associates,Y4000\nCEO of house,Home,Y4000\nKEICER & VAN NEST,,Y4000\nSAX,GOLDMAN,F2300\nPHYSICIAN,BECKLEY ONCOLOGY ASSOC,H1130\nSJ PROPERTIES,,Y4000\nCivil Service,US Department of Defense,X5000\nDepartment Head,State of Montana,Y4000\nPARTNER,GREENER & HOOK,Y4000\nPRESIDE,KENWORTHY OPERATING COMPANY,E1150\nOWNER,CAR CARE CENTER,Y4000\nLOBBYIST,\"PINEGAR, SMITH AND ASSOCIATES\",K2000\nOWNER,W.F. NORMAN CORP.,Y4000\nICE CO,,Y4000\nBINION HOTEL,,G6500\nPHYSICIST,SCIENTIFIC SOLUTIONS INC.,Z9500\nTOP FLIGHT AVIATION,,Y4000\nPresident,IAC,C5000\nVP,EASTERN STATES DVLPMT CO.,B1500\nATTORNEY,COOPER AND JONES,K1000\nPRINCE CHRYSLER,,T2300\nBusiness Development,CIGNA HealthCare of Arizona,F3200\nVice President/Chief,Pearlstine Distributors Inc.,G2850\nPartner,Delnorte Family Care Center,Y4000\nChairman,Bunting Management Group,Y4000\nPORTFOLIO MGR,PRINCIPAL FINANCIAL,F2100\nINVESTMENT MANAGER,CENTURY CAPITAL MANAGEMENT,Y4000\nn/a,See Refund Line 20,Y2000\nSenior Vice President/Managing Directo,Boston Capital Corporation,F4100\nVP Customer Care,National Grid,E1620\nASSOCIATE,JEFFERIES,J1100\nWEATHERALLS/CONSULTANT/CONSULTANT,,Y4000\nMARTILLI & ASSOCIATES,,K2000\nReal Estate Broker,Briggs & Bailey Real Estate,F4000\nCONSULTANT,\"CAPITOL RELATIONS, LLC\",Y4000\nOwner,WAINWRIGHT FARMS,A1000\nMortgage Broker,Fishman Financial Group,F4600\nCAMPBELL ASSOC,,B4300\nROBERTS REPAIR,,G1100\nINVESTOR,INFORMATION REQUESTED PER BEST EFFO,F7000\nPRECISION VISUALS INC,,Y4000\nPresident,Hyde Park U-Save Liquors,G2840\nReal Estate,\"Centrex Properties, Inc\",F4000\nCheif Of Personell,Nato,X5000\nGROUP DEVELOPMENT MA,Microsoft,C5120\nAT,MAGGIANO DIGIROLAMO & ROBERTS PC,Y4000\nHELMKE BEAMS BOYER ET. AL,,K1000\nSALES,BOOKCLIFF SALES,B6000\nN ARIZONA INSTITUTE OF TECHNOLOGY,,H5200\nEXECU,FIDELITY NATIONAL INFORMATION,F4300\nTRUMBALL & PJ DICK,,B1000\nSingle Family Spec/Tract Building,NAHB,B2000\n\"MORRISON, HECKER\",,K1000\nIndustrial Sales Man,Mine Safety Appliances,J7400\nPRESIDENT,HELLMAN & FRIEDMAN LLC,F2600\nInnkeeper,Self-employed,T9100\nREAL ESTATE BROKER,TOWN AND COUNTRY,F4000\nCEO,CHEMBIO DIAGNOSTICS,Y4000\nReal Estate Broker,Carolina Homes Inc.,B2000\nTRYAX OF THE BRONX,,F4200\nJOBBER,SCHWEBEL PETROLEUM CO.,Y4000\nJudge,Civil District Court,X3200\nChancellor,South University,H5100\nEngineer,DMc Engineering,B4400\nCABLE COMPANY,,Y4000\nProgram Manager,GE Hitachi Nuclear Energy,E1300\nKAZAAN FERTILIZER CO,,A4100\nCHAIRMAN,\"PARADIGM GROUP II, LLC\",Y4000\nAttorney,Connolly Bove Lodge & Hutz,Y4000\nPETER GRAY CORP,,M5000\nATTORNEY,RHONDA WILSON,Y4000\nPITMAN HARTENSTEIN & ASSOC,,Y4000\nASSET MANAGER,SEA FIRST,Y4000\nEXECUTIVE,RETIRED,M7000\nASSOC PROF,UNC CHARLOTTE,Y4000\nRECEPTIONIST,LEARNING INC.,Y4000\nTHE NEWS & OBSERVER/PROGRAMMER/ANAL,,Y4000\nCOMPUTER DEVELOPER,DELTA AIR LINES,J1200\nPrivate Investor,Arboretum Capital Management,F2100\nPHYSICIAN,COLONIAL FAMILY PRACTICE,Y4000\nMarketing,Centre for Neuro Skills,Y4000\nPresident/CEO,Regence BlueCross BlueShield,F3200\nPRINTRONIX,,C5110\nMETZGER LAW CORPORATION,,Y4000\nSELF-EDUCATIONAL DEALE,TEACHERS PET,Y4000\nBANKING REAL ESTATE,NEWTOWER TRUST COMP,F4000\nBANKOFF OIL COMPANY,,E1120\nInsurance Agen,Metro Insurance Inc.,F3100\nRetired,Suffolk County,X3000\nATTORNEY,NILAN JOHNSON LEWIS,Y4000\nInformation Requeste,Self,H5100\nPROFESSOR,UNIVERSITY OF MN DULUTH,H5100\nLANDRUM AND LANDRUM,,Y4000\nQUEEN CARPET CORP,,M8000\nCOMMERCIAL FISHERMAN,\"ATLANTIC TRAWLERS FISHING, INC\",Y4000\nSECURITY FIRM CO,,Y4000\nPUBLIC,COUNCIL ON DRUGS AND ALCOHOL,Y4000\nDENTIST,FALMOUTH DENTAL HEALTH,H1400\nKEN JAC HLDG CORP,,Y4000\nPORTFOLIO ANALYST,\"HIP INVESTOR, INC.\",Y4000\nHarbor Pilot,PEP Inc,T6200\nA_C MX DIV MGR,UNITED PARCEL SERVICE INC.,T7100\nREAL ESTATE,THE CHAPMAN COMPANY,F4000\nTECHFARM MANAGEMENT,,A1400\nINTERDIGITAL COMMUNICATIONS CORP,,C5100\nMitigation Consultant,Self employed,Y4000\nC.O.O. & PRESIDENT,SOUTHTRUST BANK,F1100\nFREELANCE EDITOR,SELF EMPLOYED,C1100\nATTORNEY,SMITH SEGEL & SOWALSKY,JD200\nINVESTMENT MANAGER,KLINGENSTEIN FIELDS & COMPANY,F2600\nWORDCOM,NCI,C4200\nphysician,Cornell medical school,H5150\nExecutive Vice Presi,Painless Performance,T2200\nC.E.O.,BARTHCO INTL. INC.,T0000\nBATTLE CAPTAIN,US ARMY,X5000\nWITCHFIELD DEPOSIT BANK & TRUST,,F1100\nhomebuilder,self,J1200\nFinance,Devitre LLC,Y4000\nPRESIDENT,FRY-WAGNER MOVING & STORAGE,T3100\nDIRECTOR OF SOCI,FLORIDA WHIG PARTY,Y4000\nSUTTON GARTEN COMPANY/SECRETARY/TRE,,Y4000\nEQUITY GROWTH GROUP LLC/OWNER/REAL,,F2100\nDoctor,Edgar A Guess Jr  MD,H1100\nPHYSICIAN,\"WOMEN'S CENTER OF GREENVILLE\",H1130\nVP GOVERNMENT RELATIONS,BLACKBERRY,C4300\nPresident and Chief,Twin County Regional Hospital,H2100\nMARINE TRANSPORATATION CONSULTANT,SELF-EMPLOYED,Y4000\nDIMENSION ONE INC,,Y4000\nWriter,n/a,C1100\nOWNER,\"IT STRAPS ON, INC.\",Y4000\nEMPLOYEE,PEIRSON AND PATTERSON,K1000\nPRESIDENT/CEO,THE KENT COMPANIES,B5100\nFINANCIAL SERVICES,SELF,F7000\nSales,Allergan,Z9500\nCeo / President,Nutritech Inc.,Y4000\n\"VP, COMPLIANCE OFFIC\",OAK BROOK BANK,J1100\nCOMMUNICATIONS,DELTA ALARM & COMMUNICATIONS,Y4000\n\"VICE PRESIDENT, COMMUNICATIONS\",GILL FOUNDATION,Z9500\nSVP HUMAN RESOURCES,SEMPRA ENERGY,E1620\nIT CONSULTING,\"ROI TECHNOLOGIES, INC\",J1100\nPolitical Consultant,Kathleen Sebelius Committee,Z9500\nExec. Vice President/General Manager,WISC-TV/Morgan Murphy Stations,C2100\nPRODUCER,CHARTOFF PRODUCTIONS,Y4000\nRETIRED,ALPHA NATURAL RESOURCES,E1210\nPSYCHOLOGIST,HAWAII RESOURCE GROUP,Y4000\nHummle Title Agency,President,G0000\nINSURANCE EXECUTIVE,AMERITAS INSURANCE CORP.,F3300\nMANAGEMENT C,PRICEWATERHOUSECOOPERS,F5100\nFIRST EQUITY,,F0000\nPLANT MANAGER,\"BEE WIRE & CABLE, INC.\",M2000\nAREA SUPV - SR VP,CARGILL INCORPORATED,A1000\nHEALTH ADMINISTRATOR,MAYVIEW MANOR,H2000\nGILDER GAGNON HOWE & CO.,,Z9500\nCHAIRMAN,ELI LILLY & COMPANY,H4300\nULRICH VOORHEES WARNER ASSOCIATES,,F3100\nPhysiciam,Community Anesthia,H1130\nVice President,Chenco Holdings,Y4000\nPOLITICAL CONSULTANT,NONE,G5260\nAFS,AFS,T7000\nMARTIN MARIETTA ELECTRONICS LAB,,D2000\nPresident,Peak Investment Group Llc,Y4000\nComputer Programmer,AIG Financial Prod.,F2100\nVP,MLI,Y4000\nWEALTH MANAGEM,NORTHWWESTERN MUTUAL,F3100\nFOUNDATION EXECU,NATIONAL INSTITUTE,Y4000\nAttorney,\"Walter C. Jones, IV, P.A.\",Y4000\nDEYAMPERT MERCANTILE TRUS,,Y4000\nPETSCHE & ASSOCIATES INC,,Y4000\nHOLUALOA INC,,J5100\nSARD VERBINNEN & CO,,Y4000\nFINE COMMUNICATIONS,,C1100\nCEO,RICHMOND BEHAVIORAL HEALTH AUTHORITY,Y4000\nIND CONTRRACTOR,,Y4000\nMANAGEMENT,BRIEFING,C5140\nSPECIAL EDUCATION TEACHER,FAIRFAX COUNTY PUBLIC SCHOOLS,X3500\nASSISTANT MANAGER,INFORMATION REQUESTED PER BEST EFFORTS,G0000\nVALLEY PRODUCTS,,M8000\nSHERIFF,ORANGE COUNTY SHERIFF DEPARTMENT,X3000\nPartner,Holderby Properties,J1200\nMGB,,Y4000\nOil & Gas Business,Phoenix Resources Inc.,Y4000\nLaw professor,Lewis & Clark Law School,H5170\nROSENFELD MEYER AND SUSMAN,,J7300\nPROFESSOR,CORNELL MECHICAL COLLEGE,J7400\nFOUNDER,APEX COVANTAGE,G5270\n\"United States Representative, IL-13\",United States House of Representatives,J7400\nINSTRUCTOR,MATC,L1300\nmanufacturer,American Clay Enterprises,B5100\nBARTENDER,BISTRO SOLEIL,Y4000\nPRESIDENT AND CEO,\"CLIPPER NAVIGATION, INC\",T9400\nPRESIDENT,SURGICAL NOTES/PRESIDENT,Y4000\nCITY OF GRAND RAPIDS,,X3000\nCONTRACTOR,\"SANDERS BROTHER'S CONSTRUCTION COMPANY\",B1000\nTRADER,PERCEL TRADING,Y4000\nCorporate Training C,Self-employed,G0000\nCORETRUST BANK,,F1100\nRESEARCH SCIENTIST,CEPHALON INC.,Z9500\nPRESIDENT,BECK ALUMINUM CORPORATION,Y4000\nASSOCIATE PRACTICE AREA DIRECTOR,PUBLIC CONSULTING GROUP,Y4000\nMANAGER,\"MOMAN'S EYECARE\",Y4000\nGOVERNMENT AFF,CASSIDY & ASSOCIATES,JD200\nM FARBMAN & SONS,,B3400\nAttorney,Miller Kagan Rodriguez & Silver,K1000\nSecretary,Ross Brothers Trucking,T3100\nOWNER,WALKER JANITORIAL SERVICES,Y4000\nIT Manager,Employers Compensation Insurance Co.,J1200\nPresident/ C. E. O.,American Medical,H4100\nMD,Self-employed,J1200\nGOVERNMENT CONTR,A. SONABEN COMPANY,Y4000\nProfessor,Ohio State UniverSIT,H5100\nHR MANAGER; PRODUC,GE POWER SYSTEMS,M2300\nOwner,A-1 Auto Transport,Y4000\nPARTNER,WERNER & SAFFIOTI LLP,K1000\nBusinessman/ Retaile,Crown Hardware Inc,Y4000\nO,INTERNATIONAL POWER SERVICES INC.,Y4000\nJG FINANCIAL MGMT,,F4000\nCEO,\"RAPT Industires, Inc.\",Y4000\nAnalyst,\"Shook, Hardy & Bacon\",K1000\nCPA,Everglades Lumber,J5200\nCOO,ROSE ART INDUSTRIES INC.,Y4000\nGOLETA SCHOOL DST,,X3500\nLEAD CONSULTANT,INVISIBLE WASTE SERVICES,F4500\n\"MARY'S DINER\",,G2900\nExecutive,Jupiter Chevrolet Inc.,T2300\nSVP OF MARKETING & STRATEGIC PARTNERSH,BANK OF AMERICA MERRILL LYNCH/SVP O,F1100\nPresident,Bartlett Nuclear,E2000\nTechnical Writer,EMC,C5130\nINVESTMENT BANKER,DEUTSCHE BANK SECURITIES,F2100\nENGINEER,CSA ENGINEERING,Y4000\nATTORNEY-ATLA,BELLUCK & FOX,K1000\nBusiness Owner,Preetige Hand Bag,Y4000\nMOVING & STORAGE INC,,T3100\nMARKETING,VISTA PAINT CORP,B3000\nscientist/professor,California Institute of,J7400\nCTY COLL OF CHICAGO,,H5100\nExecutive,Pitney Bowes Inc,M4200\nPresident,Great Clips,Y4000\nPB AVIATION,,B4000\nRealtor,Wilkinson & Snowden,F4200\nBUSINESS OWNER,RESOLUTE,Y4000\nChairman & CEO,Jack Resnick & Sons.,F4100\nHORTON INDUSTRIES,,Y4000\nPHYSICIAN,UK MEDICAL CENTER,H2000\nDIRECTOR HUMAN RESOURCES,INDIANA UNIVERSITY,H5100\nPrince Enterprises,,Y4000\nSENIOR ADVISOR,UNITED STATES AGENCY FOR INTERNATIONAL,X3000\n\"HUTCHINS, WHEELER & DITMAN\",,K1000\nAttorney,Feiner Woolson,K1000\nCRAFTFORCE DEV,MESSER CONSTRUCTION,B1000\nHELMERICH AND PAYNE INC,,E1120\nSHERIFF BLOCK YOUTH FUND,,Y4000\nBIOMEDICAL RESEARCH,D E SHAW RESEARCH,Z9500\nS/E/REAL ESTATE,,F4000\nBUSINESS MANAGER,BAC LOCAL NO. 1 NE,LB100\nSELF,POET,J7400\nWUNDERMAN LLC,,G5270\nINSURANCE,LEONARD INS SERVICES INC,Y4000\nVP MANUFACTURING CONTAINERBOARD,INTERNATIONAL PAPER CO.,A5200\nAttorney,Cannen & Dunphy SC,Y4000\nJourneyman Lineman,IBEW L066,LC150\nGRAPE GROWER/OWNER,ARCADIA VINEYARDS LLC,G2820\nHOME RENOVATION,SELF-EMPLOYED/HOME RENOVATION,B3000\nHILLSBOROUGH COUNTY REPUBLICAN PART,,J1100\nSTEPHEN DAVIO,SCIENTIST,X0000\nSURGEON,\"EDRICH HEALTH TECHNOLOGIES, INC.\",Y4000\nSIMULATOR INSTRUCTOR,FLIGHT SAFETY INTERNATIONAL,T1000\nVALLEY NATL BANK,,J6200\nPresident,L A D Reporting Company,Y4000\nDIRECTOR,MOBILE TELESYSTEMS OJSC,Y4000\nProject Manager,Anderson Creek Partners,Y4000\nFACULTY,UNIVERSITY OF MISSOURI-COLUMBIA,H5100\nSELF/INVESTMENTS/PRIMARY 2008 CONTR,,F7000\nATLANTIC COAST MGMT. INC.,,Y4000\nTEXAS SPINT & JOINT HOSPITAL,,H2100\nMANAGER OF ACCOUNTING,P.S.E.G.,E1620\nFOUNDER AND CEO,YORK CAPITAL MANAGEMENT,F2700\nGovernment Affairs,Corning Inc,C5110\nATTORNE,MCBRAYER MCGUINESS & LESLIE,K1000\nSANTA BARBARA UNIFIED,,Y4000\nATTORNEY,\"HUNT, LEES, FERRELL\",Y4000\nPROJECT MANAGER,OKLAHOMA ELECTRICAL SUPPLY COMPANY,B5500\nBusiness Owner -,Self Employed,G0000\nPartner,\"Kasberg, Patrick & Associate\",Y4000\nOWNER,CASTLE GROUP HEALTH,H0000\njournalist/teacher,Ann Arbor Public Schools,X3500\nPresident,Martel Electric,F4000\nFAIRBANKS IMPLEMENT,SELF,F1000\nUSTC,,A1300\nAL JOHNSON CONSTRUCTION,,B1000\nPLANNING CONSULTANT,\"KUSAO AND KURAHASHI, INC.\",Y4000\nPAS,DESERT JOY CHRISTIAN FELLOWSHIP,Y4000\nPresident,Marquette General Hospital,H2100\nCo-President,\"Ed Sherling Ford, Inc.\",T2300\nDATA ANALYST,FREDDIE MAC,F4600\nRICONDO ENGINEERING,,Y4000\nProgram Manager,Crane Aerospace,Y4000\nExecutive,Texas Highway Markings,Y4000\nHOPPENJANS BUILDERS,,B2000\nPresident,\"Cause Force, Inc.\",J7300\nSELF EMPLOYED,INFORMATION REQUESTED PER BEST EFFORTS,F7000\nAU.D.,COMPREHENSIVE HEARING CARE CTR,H1700\nLaw Clerk,\"Mcginn, Carpenter, Montoya & Love\",K1000\nEXECUTIVE,MEDICS,Y4000\nPROFESSOR,REGENTS OF UC,J7400\nACCOUNTANT EXECUTIVE,CBIZ,Y4000\nNOLEN CONSTRUCTION INC,,B1500\nCreative Director,Elevata Incorporated,Y4000\nMEDICAL DOCTOR,SINGH NEUROLOGY MEDICAL GROUP,Y4000\nPOLITICAL AND BUSINESS CONSULTANT,SELF-EMPLOYED,Y4000\nSCIENTIST,ARRAY BIOPHARMA,Y4000\nAttorney,Rywant Alvarez Jones Russo & Guyton,K1000\nInsurance Broker,Matrix Insurance Agency,F3100\nRADIOLOGY & MLI OF BETHLEHEM,,H1130\nATTORNEY,\"HECHMAN, SALKIN\",K1000\nChairman of the Boar,T.D. Service Company,F4600\nENT,PREMIER SPORTS,Y4000\n\"SCHWAB, BENETT AND ASSOCIATS\",,Y4000\nOwner,Harder & Assoc. Comp.,Y4000\nREAL ESTATE-HO,WEYERHAEUSER COMPANY,A5000\nChief of Staff,US House Of Representatives,X3000\nBUSINESS DEVELOPMENT DIRECTOR,\"THE WELLPOINT COMPANIES, INC.\",H3700\nDirector,Foundation Systems,Y4000\nAttorney,Buchanan & Buchanan,K1000\nMultimedia Design En,Northrop Grumman,D5000\nSUSAN J WHITE & ASSOCIATES,,K2000\nChairman and CEO,Sevo Miller Inc.,Y4000\nDownstream Issues Ma,ExxonMobil Corporation,G1000\nPLANT MANAGER,RETIRED,X1200\nElectrical Contractor,Caner Electrical Inc,B3200\nSALES,MARK SCHNEIDER,Y4000\nLORAL-AZ,,D3000\n\"Director,Analyst\",Univ Of Pennsylvania,H5100\nBusiness Representative,Ibew Local Union 1245,LC150\nPresident,Adtran Inc,C4600\nMortgage Banker,\"HFF, LP\",J1200\nTHE SILVER GROUP,,J5100\nBusiness Owner Teach,Brooklyn Writers Space,J1200\nPartner,Latshaw Partners,M2300\nPhysician,\"Mgr, Inc\",Y4000\nCITIZENS COMPANIES,,Y4000\nManager,Zap Llc,Y4000\nEAGLE AIR,,Y4000\nSR. VP/CFO,GULF LUMBER COMPANY,A5000\nEXECUTIVE DIRE,PARTNERSHIP FOR N.J.,Y4000\nVP Branch Admin,Shore Bank,F1100\nHEALTH EDUCATOR,KAISER-PERMANENTE,H2000\nPATHOLOGIS,YAMPA VALLEY MEDICAL CTR,H1130\nRestaranteur,Talk of the Town Restaurant,G2900\nDIAGNOSTIC RADIO,TRISTAN ASSOCIATES,H1130\nPRESIDENT/CEO,GUIDANT,H4100\nCHILDRENS RESEARCH INSTITUTE,,X4000\nSUPLIZIO ASSOCIATES,,K2000\nGLOBAL EQUIPMENT CO,,Y4000\nattorney,law office lynn hubbard,K1000\nPRESIDEN,PHOENIX BROADCASTING CORP.,C2000\nATTORNEY,SACK & HARRIS,K1000\nPRESIDENT,\"SHORESIDE PETROLEUM, INC.\",E1100\nARCHITECT,\"CORE PLANNING STRATEGIES, LLC\",B4200\nESTATE PLANNING,S.A.,Y4000\nManaging Partner,Walnut Capital,F2100\nOwner,Hewitt Properties,F4000\nLINCOLN FIN.GROUP/DELAWARE INVEST/A,,Y4000\nattorney,eeoc,Y4000\nPRESIDENT,SEWART SUPPLY,T6100\n\"Gm, Power Opers\",Duke Energy Shared Serv Inc,E1620\nWILDWD SPEC IMPROVEMENT DIST,,Y4000\nREAL ESTATE BROKER,COLDWELL BANKER HILL REAL ESTA,F4200\nFISHING CO OF AK,,E4100\nDOC,EMCARE,H3000\nVICE PRESIDENT/GENER,HEIL ENVIRONMENTAL INDUSTRIES LTD.,Y4000\nOWNER,N C MONROE CONSTRUCTION CO.,B1500\nWESCO RESTAURANT GROUP OF HAWAII,,G2900\nPlaywirter,Self-employed,Y4000\nSR DOANAL,Chesapeake,E1120\nOwner,\"Ioptics, Inc.\",Y4000\nACS GOVERNMENT SOLUTIONS,,C5130\nMortgage Supr,Encore Credit,J1200\nJOHNSTON COCA-COLA,,G2700\nRETIRED MATH. PROF.,U.C.S.D.,Z9500\nELECTRICIAN,TRIGEN,J1200\nATTORNEY,BRICKFORD BURCHETTE RITTS & STONE P.,K1000\nDIRECTOR,J.H. FLETCHER & CO.,E1240\nRegistered Nurse,Lewisburg Home Health Assn,H3100\nPENSION BENEFIT GUAR,,Y4000\nLawyer,\"Laird M. Ozmon, Ltd.\",J1200\nPRESIDENT,MAGRANN ASSOC,Y4000\nPRESIDENT,SSM HEALTHCARE,H2100\nGRILLO PAVING CO.,OWNER,B3000\nDIRECTOR OF ENGI,DRAGONFLY PICTURES,T1200\nATTORNEY,\"WEISS & SPEES, LLP\",Y4000\nCLASSROOM TEACHER,INDEPENDENCE 30,L1300\nCEO,Pioneer Van Lines,J1200\nVP-ENERGY,JACOBS ENGINEERING,B4400\nOWNER,VAN WALL IMPLEMENT,Y4000\nSTABILIZED PRODUCTS INC,,Y4000\nAttorney,Mattison Law Firm,J7400\nAttorney,Law Office of Barbara M Senecal,K1000\nSTUMAR INVESTIGATIONS,,Y4000\nEXECUTIVE,MAGNOLIA METAL CORPORATION,J1100\nSR VP,VOXEO CORPORATION,Z9500\nEducational Administrator,Prince Georges Board of Education,X3500\nCEO/President,Illinois Community CU,F1300\ninvestor,MERLO CORPORATION,Y4000\nENTREPRENUER,SUPER FOOD,G2000\nROSENBERG & GLUCK,,Y4000\nBIG RED INDUSTRIES,,Y4000\nFiltration Expert,Self,G0000\nHOUSEWIFE,RETIRED,J7150\nADMINISTRATIVE ASSISTANT,\"CATTLEMEN'S ASSOCIATION\",A3000\nILLINOIS MENONG CORP,,Y4000\nATTORNEY,BAKER MANOCK & JENSEN,Z9000\nPARTNER,MURPHY & SONS,Y4000\nDAWSON CONSTRUCTION,,B1500\nASSISTANT PROFESSOR,UNIVERSITY OF CALFORNIA,H5100\nDORSETT DEVELOPMENT CO INC,,B2000\nLLOYD C DYAS MD,,H1100\nCPA,\"PHILLIPPI, WRIGHT & CO., LLC\",H5100\nSELF,WILLIAM & WILLIAMS ACUTIONEES,Y4000\nExecutive Chairman of the Board,The Coffee Bean,Y4000\nPHYSICIA,NORTHWEST GEORGIA ONCOLOGY,H1130\nPRESIDENT,DIABETES CARE GROUP,Y4000\nInsurance Executive,\"Unitrin, Inc.\",F3400\nREQUESTED,\"PREGO, INC.\",Y4000\nPresident,Titan Construction,B1500\nGOLF SCAPES,,G6100\nRETIRED,GLANCY GERRY,Y4000\nLawyer,Broward Cnty Public Defender,J1200\nVP Sales & Marketing,Ponderosa Homes,B2000\nMEDICAL GARDENS HEARING CENTER INC,,H1700\nEXEC DIRECTOR,TEXAS REPUBLICAN PARTY,J1100\nADMINISTRATOR,DURHAM PUBLIC SCHOOLS,L1300\nSENIOR VP SALES DEVELOPMENT,WYNDHAM VACATION OWNERSHIP,T9100\nDARWIN DOBBS COMPANY,,T2300\nPHYSICIAN,EAST PLANO FAMILY CLINIC,J1100\nINSURANCE BROKER,TANENBAUM HARBER,Y4000\nLaw Professor,Ualr Bowen School of Law,H5170\nATTORNEY,COOK DOYLE & BRADSHAW,K1000\nENTREPRENEUR/INVENTOR,SELFEMPLOYED,G0000\nBRIMBERG & COMPANY,,F2100\nTEST ENGINEER,\"CERTTECH, LLC\",Y4000\nPATERSON BELKNAS WEBB TYL,,J7150\nClassroom Teacher,GRANDVIEW C-4,L1300\nATTORNEY,WHDGA,K1000\nEMERGENCY PHYSICIANS PC,,H1100\nINVESTMENT,\"BERKSHIRE PARTNERS, LLC\",F2600\nHEALTH CARE ADMINISTRATOR,CATHOLIC HEALTH EAST,H0000\nOWNER,BUFFALO RUN WINERY,G2820\nFINANCIAL ADVISOR,SELF AFFILIATED WITH FSC SECURITIES CO,F5000\nCFO,Firetrace International,B4400\nPRESIDENT,PREMIER ASSET MANAGEMENT LLC,Y4000\nReal Estate,\"ZAY MANAGEMENT, INC.\",F4000\nWEDALL CORP,,M5000\nATTO,WALLACE JORDAN RATLIFF & BRAND,K1000\nActor/Homemaker,Self,T9100\nPRESIDENT,PERFECTA CAMERA CORP,Y4000\nGOVT REL ASSOC DIR,\"UNITEDHEALTH GROUP, INC.\",H3700\nTHE GILES AGENCY,,Y4000\nREALTOR,KEY REALTY OF CHARLOTTE,F4200\nHUFSTEDLER & KAUS,,Y4000\nROGER BERLIND ENTERPRISES INC,,G6000\nCivil Engineer,Norfolk Southern Corp.,T5100\nSCIENTIST,ELAN PHARMACEUTICAL,H4300\nREAL ESTATE,MERRILL LAND CO.,Y4000\nMACCO THEATERS INC,,C2700\nLBJ DISTRIBUTORS,,G2850\nPART,AMERICAN DEFENSE INTERNATIONAL,K2000\nCEO,\"WINNING STRATEGIES, LLC\",J7400\nSENIOR MEDICAL DIRECTOR,OPTUMRX UNITEDHEALTH GROUP/SENIOR M,Y4000\nSupervisor,American Greetings,C1400\nRetired,\"Amgen, Inc\",Z9500\nExecutive Project Ma,\"Parsons Brinckerhoff, Inc.\",B1000\nCo President,AMerican Financial Group,F3400\nPHYSICIAN,HUDSON VALLEY HOSPITAL CENTER/PHYSI,H2100\nInformation Requested,Freelance,G5200\nPresident & CEO,Meharry Medical College,H5150\nATTORNEY,LEHIGH PORTLAND CEMENT CO.,J7400\nLegislative Advocate,Jim Gonzalez & Associates,K2000\nPRESIDE,HIGH COUNTRY BEVERAGE CORP.,G2850\nOwner,Topline,Y4000\nZEIMET WOZNIAK & ASSOCIATES,,Y4000\nExecutive PR,MWW Group,K2000\nBusiness Manager,\"Atlantic Plastic Surgery, Pc\",Y4000\nUNION OFFICIAL,SEAFARERS UNION,LT500\nIRVING BURTON ASSOCIATES,,Y4000\nCOMMERCE BAN,,F1100\nINVESTOR RELAT,EXPRESS SCRIPTS INC.,H3000\nARCHIT,DANZE & DAVIS ARCHITECTS INC,B2000\nRetired Business Week Magazine,Not employed,X1200\nREAL ESTATE,MILL PLAIN PROPERTIES,F4000\nADVA MED/PRESIDENT/CEO,,Y4000\nDEVELOPER,WILHURST DEVELOPERS,Y4000\nMEDICAL DOCTOR RETIRED,NOT EMPLOYED,H1130\nECONOMIST,MEDIA ADVISORY GROUP,Y4000\nOCI CORPORATION,,G5230\nVeterinarian,Ambassador Animal Hospital,A4500\nINVESTOR,\"CRESSEY & COMPANY, LP\",Y4000\nWOODSTOCK INTERNAL MEDICINE,,H1130\nGOSNN/OKHT/CEO,,Y4000\nVICE PRESIDENT,VAN SCOYOC ASSOCIATION,K2000\nFIANANCIAL SERVICES REPRESE,METLIFE,F3300\nSales,Form G Tech,M2100\nLABOEUF LAMB GREEN & MACRAE,,K1000\nPartner,Podesta-Mattoon,K2000\nPRESIDENT,PRIME EQUIPMENT GROUP,A2300\nAttorney,\"Benesch, Friedlander\",K1000\nCEO,PLASA COMPANY,Y4000\nEXECUTIVE,STRATEGIC COMPANIES,Y4000\nCEO,The McCaskill Group,Y4000\nAttorney,Due Price,K1000\nORR HOLDINGS LTD./OWNER/OIL & GAS P,,E1000\nDoctor  OB/GYN,Glendale Memorial Hospital,H2100\nMANAGEMENT CONSULTANT,MCCONNELL JONES LANIER & MURPHY LLP,Y4000\nRETIRED CHAIRMAN,\"KURZ - KASCH, INC.\",M1500\nETHICS SPECIALIST,US OFFICE OF GOVERNMENT ETHICS,Y4000\nWINERY,\"GARGIULO, INC.\",Y4000\nSTATE OF MN,,JE300\nSALES,HILL & STONE INS. AGENCY,F3100\nBusiness Manag,Brieslancit & Rutman,Y4000\nConsultant,Lone Star Communications,Y4000\nCHIEF EXECUTIVE OFFICER,POWER HOME REMODELING GROUP,B3000\nPresident,\"Turkey Hill Dairy, Inc\",A2000\nAttorney,Buchanan Ingalsall,K1000\nTax Accountant,Westfield,F4100\nPresident,\"Sea Ray Boats, Inc. - Knoxville\",T8300\nRAYMOND WEIL RARE STAMPS,,G4600\nPRESIDENT,FASTER FORMS,Y4000\nRETAIL SALES,\"MALOOLY'S FLOORING COMPANY\",J7400\nANESTHESIOLOGIST,SUSQUEHANNA HEALTH SYSTEM,H0000\nATTORNEY,STATE OF MICHIGAN,Z9500\nINVESTOR,,T1200\nCONSULTANT/INVESTMENT,SELF/KPS SPECIAL SITUATIONS FUND LLC,JE300\nProfessor,University of Central Florida/State of,H5100\nMANAGER,\"CABLE MARINE, INC.\",T6100\npathologist,Southern California Permanente Medical,H3700\nDavidson Schueter Mandel,,Y4000\nFRED P WOOD JR CPA,,F5100\nVice President,Ed Futariz,Y4000\nMORGAN STANLEY DEAN WILTER,,F2300\nTRADER,WEDGE PARTNERS,Y4000\nTIMONIUM TOYOTA,,T2310\nAttorney,\"Periconi, LLC\",K1000\nattorney,\"Quinn, Gillespie & Assoc.\",K2000\nEMERGENCY PHYSICIANS,,H2100\nFIELD VICE PRESIDENT - RELATIONSHIP MA,CHARLES SCHWAB,F5500\nI-TEL,,Y4000\nSOPHIA PUTNAM,NONE,Y4000\nOperations Manager,Salem Music Network,Y4000\nPublic Affairs,Coby King Communications,Y4000\nCNO,ROCKDALE,H2100\nARROW COAL GROVE,,E1210\nTheather Director,Dry Opera Company,C2900\nVICE PRESIDEN,THE MILLSTONE COMPANY,F4100\nPHYSICIAN SCIENTIST,UNIVERSITY OF CALIFORNIA,H5100\nFARM MANAGER,CANTERBURY FARM,Y4000\nDECKER CLINIC,,H1100\nGOVERNMENT RELATIONS,DAVID J COLE AND ASSOCIATE,K1000\nDirector,McManus Group,K2000\nDELIVERY PROJECT MANAGER,IBM,C5100\nChairman & CEO,\"Waterford Group, LLC\",F4100\nAttoney,\"King & Spalding, LLP\",K1000\nVice President,Greenway Medical Technologies,H0000\nPresident,PNC  Bank,J1200\nco-owner,Liberty Healthcare Services,H2200\nOWNER,\"PEKARSKI'S SAUSAGE LLC\",G2300\nCOMMODITY TR,440 S. LASALLE CHICAGO,F2200\nKARON JEPSEN & DALY,,K1000\nPROGRAM MGR,UNIV OF TEXAS,J1100\nExecutive Director,Youth Institute,Z9500\nteacher,sayre school,Y4000\nCEO,CENTRAL INDIANA ETHANOL,E1500\nAttorney,\"Deutsch & Schneider, LLP\",J5100\nSENIOR VICE PRESIDEN,SIERRA HEALTH SERVICES,H3700\nPRESIDENT,SEVERCORR STEEL,M2100\nCHIEF EXECUTIVE OFFI,NATIONAL LABEL COMPANY,M7100\nDirector,\"3M Company St Paul, MN\",M2300\nRETIRED,L.A. CITY FIRE DEPT,Y4000\nRODRIGUEZ COLVIN & CHANEY,,Y4000\n\"FOLEY, HDAG & ELIOT\",,K1000\nWORLD PERSPECTIVES INC,,G5200\nATTORNEY,SOLAR SOURCES INC.,E1210\n\"O'MELVENY AND MYERS\",,K2100\nFINAN,SOFER STEINER & ASSOC. L.L.P.,F2100\nInvestor,UBC Financial Products,F0000\nDirector Of Content,Web Md,H1100\nREAL ESTATE,WM LEONARD & CO.,J1100\nVENTURE CAPITAL,FLYWHEEL VENTURES,F2500\nAMERICAN TAX & BOOKKEEPING SERVICES,,Y4000\nPlant Leader 2,GE Transportation,M2300\nTREECO REAL ESTATE,,F4200\nRegistered Nurse,VA,L1100\nINVESTOR,\"PATHOCAPITAL,LLC\",Y4000\nPrivat Investor,Self,G0000\nHealth Administrator,U.S. Department of Health & Human Serv,X3000\nResearcher,\"Public Policy Associates, Inc\",J1200\nALABAMA STATE UNIVERSITY,,H1700\nChief Executive Offi,Rosum Corporation,C4400\nMortgage Banker,Steelhead Capital,F0000\nExecutive,Laurel Health System,H0000\nFOUNDER AND PRESIDENT,TIBER CREEK ASSOCIATES,Y4000\nOWNER,DAVID GREEN FURRIERS,G4100\nEMERGENCY PHYSICIAN,ACEP,H1100\nGODWIN F B HALL,,Y4000\nINSURANCE,BAILEY GROUP,F3100\nAttorney,\"Federal Public Defender,\",X3200\nBANKER,BANK OF TOKYO-BTMU,Y4000\nAMERICAN METHANOL ASSOC,,E1500\nCommunity Volunteer,NA,J7400\nVITOL HOSPITAL SYSTEMS,,H2100\nPRESIDENT & COO - OH,AEP Service Corporation,E1600\nOwner,Tmq  Llc,Y4000\nMCENEMEY BRADY & CO,,Y4000\nOFFICE MANAGER,FORUM,J1100\nYOUTH COUNSELOR,YOUTH OASIS(KALEIDOSCOPE SHELTER),Y4000\nGeneral Contractor,Ultimate Construction,B1500\nPresident,NPMHU Local No. 315,L1500\nMANAGEMENT,MAGUIRE IRON,M2100\nAttorney,Noonan & Prokup,Y4000\nCorporate relations,Transalta,Y4000\nOWNER,ADVANCE CRAFT,B1500\nDoctor,intermountain Health,Y4000\nDisability,LTV Steel,M2100\nManaging Partner,Energy Investors Funds,F2600\nINFORMATION REQUESTED PER BEST EFFORTS,INFORMATION REQUESTED PER BEST EFFO,Y2000\nCHIEF INVESTMENT,NORTH SOUND CAPITAL,F0000\nPUBLIC HEALTH,NONE,Z9500\nCEO,\"EDF Resource Capitol, Inc.\",F0000\nManager,Grand Model Garment,Y4000\nManager,Louisville Metro Government,Y4000\nGENERAL MANAGER,ENTRAVISION COMMUNICATIONS CORP.,C2100\nMANAGER,MERCANTILE CENTER,Z9500\nExecutive,Metric Engineering,B4400\nAUTO SALES,SARASOTA FORD,T2300\nSALESMAN,LEE INSURANCE SERVICES,F3100\nTELEVISION ANNO,KABL-TV LOS ANGELES,C2100\nPHARMACIST,PUGET SOUND DRUG,J9000\nIRWIN R ROSE COMPANY INC,,F4000\nPRINCIPAL,HAROLD FORD GROUP,K2000\nProfessor,Saginau Valley,Y4000\nPresident,Option Metrics LLC,Y4000\nATTORNEY,SELF EMPLOYED,A1200\nEISMAN & RUSSO INC.,,Y4000\nBanker,Fleetboston Financial,J1200\nMANAGER,MANIV LLC,F2500\nNATIONAL CHEMICAL,,Y4000\nPresident,\"Wuestenberg Agency, Inc.\",F3100\nCOMMERCE SECRET,STATE OF NEW JERSEY,X3000\nMANAGING DIREC,NEAR NORTH INSURANCE,F3100\nWIP RADIO,,C2100\nPHYSICIAN,DEEB COMPANIES,Y4000\nGOVERNMENT A,QUINN GILLESPIE & ASSO,K2000\nLEVITON MANUFACTURING CO INC,,Y4000\nDirector,Investing In Children,Y4000\nAVP Financial Foundations,USAA Fin Plng Svcs Ins Agency,F3100\nPresident,Equity Dynamics Inc.,Y4000\nHAMILTON PHOTOGRAPHY,,Y4000\nB & R SERVICES,,Y4000\nChef,\"Stafford's Hospitality\",Y4000\nMANAGER,GLEN HEAD MEDICAL PC,Y4000\nINFO REQUESTED,Marubeni America Corporation,Y4000\nFUNDRAISING,JAMES D. KLOTE & ASSOCIATES INC.,G5200\nSPECIALIZED HEALTH MANAGE,,H0000\nPHYSICIAN,DUKE UNIVERSITY,H2100\nHEALTHCARE EXECUTIVE,SPECTRUM HEALTH SYSTEM,Y4000\nAuto Dealer,Rosen Motors Group,Y4000\nChairman,Chicago White Sox/Bulls,F4100\nALLAIRE DEVELOPMENT,,Y4000\nPresident,Varichem Intl. Inc.,Y4000\nWIEDENBACH BROWN,,Y4000\nAUTO TECH,PRECISION AUTO OF MANTECA,T2400\nMOOSE ENTERPRISES,,Y4000\nOwner,7-11 Store,G4300\nCFO,\"SDG ADVISORS, LLC\",Z9500\nRetired,Los Alamos Lab,X3000\nAMTOTE INTERNATIONAL,,Y4000\nOwner,Blp Daycare Llc,Y4000\nOWNER,TULSA GAS TECHNOLOGIES,E1100\nKANTER CORPORATION,,C2400\nMarketing Consultant,Seneca,Y4000\nSALES,INS. CENTER OF CHICAGO,Y4000\nEXECUTIVE DIRECTOR,,JH100\nEXECUTIVE,LEGACY FILMS INC.,C2400\nLEWIS BERGER GROUP,,Y4000\nPHYSC,FLORIDA ANESTHESIA ASSOCIATES,H1130\nINVESTOR,CAMDEN PARTNERS,Y4000\nCAYSON OVERHEAD DOOR,,B2000\nAttorney,Neil G. Galatz & Associates,K1100\nAttorney,Assoc of Public Television Stations,C2000\nF F KIRCHNER INDUS,,B5100\nMarketing Manager,AAA Radio,C2300\nBEST EFFORT,BEST EFFORT,G4600\nMedical Education,Health Education Ent,Y4000\ncomputer scientist,SAIC,D3000\nPRESIDENT,\"UNITED CONTRACTOR'S INC.\",Y4000\nDAHLS MRKT INC,,Z4100\nJ. & W. SELIGMAN & COMPANY INC.,,F2100\nATTORNEY,PARRY & ROMANI ASSOCIATES,K2000\nCONTR,UNITED HEATING & COOLING INC.,B3400\nGeneral Practice Physician,Self,H1100\nCEO,Psych Care Corp.,J5200\nPRESIDENT,MIKE ROOS & COMPANY,Y4000\nPROFESSIONAL LAND SU,B.F.M. CORPORATION.COM,C5140\nPRESIDENT,LEEDS CUSTOM DESIGN,Y4000\nKAZAN MCCAIN EDISAS ABRAMS FERNAND,,K1100\nPRESIDENT,NETWORK CONSTRUCTION COMPANY/PRESID,B1500\nFABEL,,Y4000\nINFO REQUESTED,DUNCANASSOC.,Y4000\nProject Quality Manager,KBR,B4000\nAttorney,GRAYDON HEAD & RITCHEY L.L.P.,K1000\nEVENTS PLANNER & FUNDRAISER,,K1000\nSALES,WESTERN BIG R INC.,Y4000\nPresident,Western Sales Trading Co.,Y4000\nManagement Consultant,Amadeus Consulting,Y4000\nWelder,Boilermakers Local 1181,LM100\nChief Executive Offi,Health Care Information Systems,H0000\nPHARMACIST,HY-VEE PHARMACY,G4900\nICI,,G5200\nWESTERN PENN HOSP,,H1130\nPRESIDENT,MATLOCK TIRE,T2200\nVICE PRESIDENT,MICROVISION,C5110\nEX,ALLTEL INFORMATION SERVICES INC.,F4600\nSecretary/Treasurer,Local338 Rwdsu/Ufcw,Y4000\n\"POTTER, ANDROSE, CORROON\",,K1000\nHEALTH CAM ETE C,CATHELIC HEALTH,Y4000\nConsultant,Clark Bardes,G5270\nVP CUSTOMER CONTACT,EXELON,E1600\nTECH SYSTEMS,,Y4000\n\"VP, BUSINESS SOLUTIONS\",THE HARTFORD,F3100\nReal Estate Developm,Corky McMillin Companies,F4000\nOPEN SPACE LIMITED,,Y4000\nFIREARMS TRAINING SYST,,Y4000\nHEALTH DIRECTOR,CONTRA COSTA COUNTY/HEALTH DIRECTOR,X3000\nATTORNEY,LIEVER HYMANS & POTTER,Y4000\nHANNUM WAGLE AND CLINE,,B1500\nCPA,BOHALL & ASSOC.,Y4000\nHARDY LOGAN PRIDDY & ISENBERG,,Y4000\nDATA PROCESSING,RETIRED,X1200\nMINISTER,HARVARD UU CHURCH,X7000\nCHAIRMAN,,M2300\nJIM MARSH FORD,,T2300\nEVP - SECRETARY AND GENERAL COUNSEL,NATIONAL FOOTBALL LEAGUE,G6400\nPOSTAL FEDERAL COMMUNITY CREDIT UNI,,F1300\nACME CHECK CASHING,,F5500\nBOB SPIES HOMES,,B2000\nFIRE FIGHTER / EMS,HOLYOKE FIRE DEPT.,L1400\nCEO,STEWART ENTERPRISES,F0000\nAttorney,Seyfarth SHAW LLP,K1000\nWILLIAM F SCANDLING,,J7400\nISLAND SOFTWARE,,C5120\nRESEARCH SCIENTIST,IDEXX LABORATORIES INC.,A3100\nPORT,STON HARBOR INVESTMENT PARTNER,F2100\nEDUCATOR,EDGE ADVOCATES,F4000\nEAST COAST BANK CORPORATION,,F1100\nAttorney,\"Gibson, Dunn, & Crutcher Llp\",K1200\nFINANCIAL ADVISOR,\"GLOBAL VALUE INVESTORS, INC.\",Y4000\nKILGORE-DEAS PROPERTIES,,F4000\n\"Marketing, HR\",Ingmar Medical,J7400\nCARDIOLOG,GEORGIA HEART SPECIALISTS,H1130\nPRESIDEN,WILLIAMS DISTRIBUTING CORP,G2850\nLibrarian,Town of Framingham,X3000\nRESEARCH SCIENTIST,ORICA MINING SERVICS,Y4000\nDARTMOUTH-HITCHCOCK MEDICAL CENTER,,H1130\nCONSULTA,KAUFMAN PATTEE & BRANDSTAD,K2000\nFINANCIAL ADVISORS,MERRILL LYNCH,F2100\nMuseum Administrator,Asian Art Museum of San Francisco,X4200\nJONES CHIROPRACTIC,,H1500\nACCURATE BOX COMPANY INC,,M7100\nEXEC.,HUBBARD CO.,Y4000\nMINSEC CORPORATION,,Y4000\nNEWS DIRECTOR,VALKYRIE BROADCASTING,C2100\nINTERNET PROPERTIES INC,,F4000\nREAL ESTATE DEVE,SMITH LAND CO. INC,F4100\nTALKING PHONEBOOK,,Y4000\nATTORNEY,TOWN OF NORTH HEMPSTEAD,X3000\nPRINCIPAL,ARA,Y4000\nSTAR DRYWALL OF LOUISVILLE INC,,B2000\nINFO REQUESTED,JKA ENTERPRISES OF TAMPA INC,Y4000\n,\"GRUBMAN, INDURSKY & SCHINDLER P.C.\",K1000\nBusiness,Raani Corp.,M3300\nSEAGULL ENERGY CORP,,E1140\nBIEMER PACKER CARTA PA,,Y4000\nMILLER & SMITH INC,,Y4000\nReal Estate Develope,\"Wilshire Skyline, Inc\",Y4000\nSoftware executive,\"Ipswitch, Inc.\",Y4000\n\"VP, COMPETITIONS\",\"PGA TOUR, INC.\",G6400\nPhysician,TX-TOPA & New Mexico,H1130\nKEN LAURO ASTHETIC BUILDI,,Y4000\nLAWYER,BABOK & LEVIN LLP,Y4000\nANESTHESIOLOGIST,\"GWINNETT ANESTHESIA SERVICE, PC\",H1130\nGENERAL MANAGER,ALBUQUERQUE COUNTRY CLUB/GENERAL MA,Y4000\nCONSULTING ENGIN,PORTOLA ASSOCIATES,Z9500\nSIDLEY & AUSTTIN,,K1000\nCOMMUNICATION,\"INFINITE CAMPUS, INC.\",Y4000\nGENERAL CONTRAC,REEVES CONSTRUCTION,B1500\nARNOLD J BARCO & ASSOC,,F3100\nPRIVATE EQUITY,FORSTMAN LITTLE & CO,F2600\nVenture Capitalist,Impact Venture,F2500\nCONGLOMERATE BLDR,,M2100\nPHYSICIAN,SELF,C2600\nSUNFLOWER ELECTRIC POWER CORP,,E1600\nTHE VLASS-FOTOS GROUP,,Y4000\nC. E. O.,National Account Service Co.,F5100\nMANAGER,SOLESFORCE DOT COM,C5140\nEnergy Analyst,Federal Energy Regulatory Commission,J1200\n\"KING'S DAUGHTERS' HOSPITAL AND HEAL\",,H2100\nCOBLENTZ PATCH DUFFY BASS,,K1000\nTEACHER,BURLINTON SCHOOL DISTRICT,X3500\nNORTHEAST MENTAL HEALTH CENTER,,H3800\nSoftware Developer,System Parking Inc,F4500\nINFO REQUESTED,Sandoval and Barnhill Inc.,Y4000\nCONSULTANT,\"GOLDWYN INTERNATIONAL STRATEGIES, LLC\",Y4000\nOWNER,RIO FARMS & GILLS ONIONS/OWNER,A1000\nRemote Sensing Scientist,John Hopkins Univ,Y4000\nMACKENZIE & HAILBERG,,Y4000\nHealth Physicist,Los Alamos National Lab,J1200\nVice President  Huma,Comcast Cable Communications,C2200\nLAWYER,MODROLL SPERLING/LAWYER,Y4000\nConsultant,GABE Company,Y4000\nTRAVEL AGENT,,M2300\nKINETIC STAFFING,,G5250\nARNOLD P LUTZKER,,Y4000\nCEO,RIVULET COMMUNICATIONS,Y4000\nREAL ESTATE DEVELOPEMENT,ROBSON PROPERTIES,F4000\nMarketing,Impinj,Y4000\nPRESIDENT,ST. ANTHONY HOSPITAL,H2100\nNINA KUO,,F0000\nDoctor,\"Community Care Physician's For Women\",H1100\nExecutive Director,Center for International Policy,Y4000\nPHYSICIAN,JOHN J KOWALCZYK,H1100\nTHE POST GROUP,,Y4000\nNINTH WARD SAVINGS,,F1200\nB M A,,Y4000\nPAWNBROKER,EZ JEWELRY AND PAWN,G4600\nPERLOW INVESTMENT,,Y4000\nHANN MGMNT CONSULTING,,Y4000\nAVM L P,,F2600\nresearch associate,university of MD,H5100\nPHYSICI,\"NORTHEAST MO, IMAGING ASSOC\",Y4000\nCHIEF DEVELOPMENT OFFICER,JEWISH SOCIAL SERVICES AGENCY,Y4000\nOthodondist,Indiana University,H5100\nChief of Staff,Russell Investments,F2100\nU.B.S. FINANCIAL SERVICES,,F2100\nOrthopaedic Surgeon,Health Partners Medical Group,H1130\nEXECUTIVE VICE PRESIDEN,DANSER INC.,Y4000\nHIP HOUSING,,Y4000\nPHYSICIAN,HAAS AND PARTNERS LLC,Y4000\nPUBLIC POLICY,DOMINION,Y4000\nORAL SURGEON,ERICKSON OMS LLC,H1400\nPRESIDENT,E3COMMUNICATIONS,Y4000\nMARRIOTT LEISURE,,F4100\nTHE TOY STORE,,Y4000\nVIVRA ORTHOPEDICS,,H3000\nCEO,Global Knowledge,H5000\nINFO REQUESTED,DAVIS INTERNATIONAL INC.,Y4000\nWealth Advisor,Goldman Sachs,F2300\nEXECUTIVE,FIERMAN PRODUCE/EXECUTIVE,A1400\nManager,\"Photo Marketing Association, I\",Y4000\nMaintenance,110 E Delaware,Y4000\n\"NARVID, GLICKMAN\",,K1000\n\"SHANNON O'BRIEN COMMITTEE\",,Y4000\nACRYLIC PAINTER,SELF-EMPLOYED,Y4000\nGENERAL CONTRACTOR,FRIEDLER CONSTRUCTION CO,B1500\nPresident,Heaven Hill Distilleries,G2820\nSVP-GEM CLIENT GROUP,\"AT&T SERVICES, INC.\",C4100\nAttorney,Stowell & Friedman Ltd,K1000\nOPTOMETRIC PHYSICIAN,SEL,Y4000\n\"STRATEGIC INVESTMENTS & HOLDINGS, I\",,F2100\nCEO,GOLD CREST INVESTMENTS,Y4000\nSelf-Employed Designer,Self employed,G0000\nCEO,ENVIRONMENTAL MANAGEMENT,Y4000\nASSOCIATE PROVOST DEAN,,Y4000\nPresident,Ncontrol Systems Intergration,Y4000\nEXECUTIVE,NORMANDIE CLUB,Y4000\nAttorney,Rath Young Pignatelli,K1000\nA,OVERLAND BORENSTEIN SCHEPER & KIM,K1000\nTeacher,Torrance Unified District,X3500\nAdministrative Manag,Hospital Metropolitano De Rio Piedras,H2100\nINSULTECH INC,,Y4000\nEXECUTIVE,\"VAN SCOYOC ASSOCIATES, INC.\",K2000\nPRESIDENT & CEO,ARIENS COMPANY,B1500\nOwner,Rainbow Buildings,Y4000\nCOMMUNICATIONS,NICKELODEON,C2200\nBANKER,NAVIGANT,F2100\nViasinc,,Y4000\nFUTURE ENERGY LLC,,E1000\nManaging Director,Focused Capital Solutions,Y4000\nMARKETING DIRECTOR,JEWISH COMMUNITY CENTER OF SAN FRANCIS,Y4000\nVice President,Ditch Witch of Tulsa,B2000\n\"ASST GEN'L COUNSEL\",RAYTHEON COMPANY,D3000\nCHAIRMAN,\"IMC, INC.\",C5120\nREAL ESTATE BROKER,CHARLES RUTENBERG REALTY INC,F4200\nNYS BOE,,X3000\ncontractor,J. F. Contracting Corp.,B1000\nREAL ESTATE SALES PROFESSIONAL,SIBCY CLINE REALTORS,F4200\nCEO,ESERVICES LLC,Y4000\nCHINESE FOR AFF ACT,,Y4000\nADVERTISING,BEBER SILVERSTEIN,Y4000\nKEYPORT LIFE INSURANCE,,F3300\nPresident-Subsid,Banc One Insurance Corp,F1100\nInsurance Executive,HIP Health Plan,H3700\nProperty Management,\"MADISON SQUARE PROPERTIES, INC.\",F4500\nAttorney,Koskoff Koskoff & Bieder,J7500\nLAWYER,DEUTSCHE BANK,Z9500\nReal Estate Broker,Mary Davis Real Estate,F4000\nAT,\"DUNCAN OSTRANDER & DINGESS, P.C.\",K1000\nAttorney,Jack R Ormes,Y4000\nINSURANCE & INVOICE,\"PITTMAN'S FINANCE TA RIVERS, INC.\",F0000\nNBI FOOD SERVICES & BURGER KIN,,Y4000\nHOGLE LUMBER COMP,,B5200\nCONRAD SCHMITT STUDIOS,,B1000\nPUR,\"SOUTHWOOD LUMBER & PALLET, INC.\",A3000\nAttorney,\"Anapol, Schwartz, Weiss, Cohan, & Feld\",K1000\nC.F.O.,PROCESS EQUIP,Y4000\nVice President/Manager/Director of Acc,Shelby Energy Cooperative,E1610\nFARMER,MOCKINGBIRD HILL FARM,A1000\nCHIEF FINANCIA,SHEPHERD CENTER INC.,Y4000\nCHAIRMA,\"MCKINLEY & ASSOCIATES, INC.\",J1100\nST,PENNSYLVANIA STATE HOUSE (D-149),X3000\nCLU,John D. Becker & Asso.,Y4000\nAdministrative Assis,State of North Carolina,X3000\n\"DIRECTOR, MARKETING RESEARCH\",COX COMMUNICATIONS,C2200\nCEO,SOLARWRIGHTS,E1500\nPHYSICIAN,SAVANNAH CARDIOLOGY PC,H1100\nVice President,Western Exploration Inc.,Y4000\nCEO,COMMUNITY CARE COLLEGE,H5100\nAttorney,\"Miller Cohen, Plc\",K1000\nPAGAN & PAGAN,,Y4000\nKRENTZMAN SUPPLY,,Y4000\nCEO,Thalle Construction Company,B1500\nBUCCI AND RANSON,,K1000\nPHARMACIST,OVERTURF DRUG STORE,G2400\nTUMAC LUMBER COMPANY,,A5000\nPRESIDENT & C.E.O.,MACPHERSON OIL COMPANY,E1150\nPHYSICIAN,\"LAREDO OB/GYN ASSOCIATES, PA\",Y4000\nSELECT EQUIPMENT INC,,Y4000\nOwner,Coleman Barker Printing,C1300\nMANAGING PARTNER,THE MALIBU GROUP,J1100\nDIRECTOR,BUFFALO NIAGRA MEDICAL,H0000\nInsurance Underwriter,\"Chicago Underwriting Group, Inc\",J1200\n\"Children's Book Author\",Self employed,Y4000\nPRESIDENT,\"MISSION YOGURT, INC\",Z9500\nLOEB & HANAN,,Y4000\nAUTO DEALER,PARKWAY CHRYSLER JEEP,T2300\nOWNER,DIXIE MILL/OWNER,J5100\nPresident,\"Walker Baker & Associates, Inc.\",G1200\nCHIEF EXECUTIVE OFFI,COMPX SECURITY PRODUCTS,J1100\nMANAGER,KXLG RADIO STATION,C2100\nCEO & CHAIRM,PALM BAY INTERNATIONAL,G3500\nRetired Executive,Self-Employed,X1200\nWEB SITE MANAGER,ASI,Y4000\nINVESTMEN,\"KETTERING FINANCIAL, LTD.\",F0000\nCEO,\"GAINSYSTEMS, INC.\",Y4000\nChairman,ltc Properties,F4100\nUNIVERSITY OF WISCONSIN-MILWAU,,H5100\nBusiness Owner/Corporation President,Self employed,G0000\nSelf,Self,J9000\nC/W PRODUCTIONS/MOTION PICTURE PROD,,Y4000\nOwner,R & M Food Liner Inc.,G2000\nSMALL BUSINESS OWNER,KANOPY KINGDOM,Y4000\n\"BIERMAN, SHOHAT & LO\",,J5100\nGOVE,\"INNOVATIVE FEDERAL STRATEGIES,\",K2000\nSALES OPERATIONS MANAGER,GE,M2300\nREAL ESTATE,M. DAVID PAUL + ASSOC.,F4000\nAttorney,First Wind,J1200\nDIVISIONAL VICE PRESIDENT HUMAN RESOUR,GREAT AMERICAN INSURANCE COMPANY,F3400\nHealth Policy Director,Advocates for Children and Youth,Y4000\nMarketing,Offit Hall Capital Management LLC,F0000\nGeophysicist,Bergsma Consulting,Y4000\nRESEARCH MANAGER,,J7400\nPRINCIPAL,CLARUS CONSULTING GROUP,Y4000\nPUBLIC HEA,PUBLIC HEALTH FOR CANTON,Y4000\nWEB DEVELOPER,NDIC,J1200\nRETAILER,MARSHALL MANAGEMENT,G4000\nCHAIRMAN,WESTWOOD ONE. INC.,C2100\nJOSEPH MEIRS SHOE CO,,M3200\nPRESIDENT,\"TITAN AMERICA, MID-ATLANTIC\",B2000\nCREATIVE DIRECTOR,\"AERODROME PICTURES, INC.\",Y4000\nPLANT MANAGER,JASPER WYMAN & SON,A1400\nMORRIS-ANDERSON & ASSOC,,G5270\nIMITS Center,UPMC,Y4000\nCNO,TERRE HAUTE REG HOSP,H2100\nReal Estate,Cheek Real Estate,F4000\nAttorney,Steven Nichols,K1000\nINFORMATION REQUESTED,PREMIER AMERICA BANK,F1000\nRUPPE HOSIERY INC,,Y4000\nDeputy Counsel,City Of New York,X3000\nVP OPERATIONS,ALLEGHENY LUDLUM,M2100\nOWNER,RACEWAY FORD,T2300\nPRESIDENT,CLARK S. HERMAN ASSOCIATES LLC,Y4000\nEXECUTIVE,\"MATERIALS DESIGN WORKSHOP, INC\",Y4000\nIP Research,Thomson Compumark,Y4000\nAKHTAR & ASSOCIATES,,Y4000\nOCONEE FAMILY PRACTICE PA,,Y4000\n\"PROFESSOR, RETIRED\",DARTMOUTH COLLEGE,Z9500\nCONGRESS AVENUE BOOKSTORE,,G4600\nPresident,\"Downey McGrath Group, Inc\",K2000\nDirector,Oak Ridge National Laboratory,E1300\nADAM & CO.,MEAD,Y4000\nC.E.O./PRESIDENT,WALNUT HOLLOW,Y4000\nPRESIDENT & CEO,SPECIAL DEVICES,Y4000\nINDUSTRIAL MARKET MAGAINZE,,C1100\nMortgage Banker,Prime Capital Group,Y4000\nOwner,Sunset R.V. Park,Y4000\nPARISH PRESIDENT,PLAQUEMINES PARISH,J7400\nEXECTIVE,ALVIN PRESI INC.,Y4000\nVice President,\"VAN SCOYOC ASSOCIATES, INC\",K2000\nPROGRAM OFFICE,THE CHARITABLE TRUST,J7400\nCIGAR MAKER,A. FUENTE CIGAR CO.,A1300\nREAL ESTATE,BECKER BROTHERS,F4000\nTANDEM TRANSPORT,,Y4000\nMoney Manager,\"Bingham, Legg, Advisors\",Y4000\nJournalist,Smart Mary Magazine,C1100\nChairman,First United Bank,F1000\nO R P REAL ESTATE GROUP,,F4000\nPartner,Bowie-Gridley Architects,B4200\nPRINCIPAL,HILL CHESSON WOODY,F3100\nBRIGHT CONSTRUCTION,,B1500\nVP GOVERNME,DONOHUE INDUSTIRES INC.,A5200\nPRIVATE WEALTH MANAGEMENT,GOLDMAN SACHS,F2300\nATTORNEY,\"COTTON, BOLTON, HOYCHICK & D\",Y4000\nATTORNEY,DAVIDOFF HUTCHER & CITRON,Y4000\nMCDERMITT WILL & BOVEY,,K1000\nENNEKING BODY SHOP,OWNER,G0000\nMANAGER,AGE-LESS MEDICINE LLC,Y4000\nPhysician,\"James C Roberson II, MD\",H1100\nST VRAIN BLOCK COMPANY,,G1200\nPsychiatrist,\"Heart Of Texas Mhmr, Waco, Tex\",Y4000\nFundraiser,United Way of Central Iowa,Y4000\nExecutive Vice President and Chief Leg,NiSource  Inc,E1620\nfinancial advisor,Pennington & Bass,Y4000\nPRESIDENT,MODEL CONSULTING INC/PRESIDENT,F3100\nINVESTOR,SPITZER ENTERPRISES,F4000\nDirector of Franchise Development,\"Gainesville Cheesesteak, LLC\",G1000\nATTORNEY,S.J. STRAGTEGIC INVESTMENTS L.L.C.,F7000\nTAX COLLECTOR,LAKE COUNTY FLORIDA,Y4000\nSERAPHIM PARTNERS,,Y4000\nExecutive,\"James F O'Connell, Inc.\",H1400\nPITCAIRN FINANCIAL MANAGEMENT,,F0000\nAttorney,\"Demetriou, Delgruercio, Springer & Fra\",K1000\nCAPTAIN APPRAISAL SERV,,Y4000\nPrincipal,Podesta Group,J1200\nexecutive,Life Sciences Research Inc,Y4000\nINTERVEST,,B2000\nORION GEP LTD,,D0000\nBOOKKEEP,MATOKA & SONS PLUMBING INC,B3400\nFAMILY MEDICINE CLINIC,,J6200\nPresident/Vice President,Boone County Lumber,Z9500\nMtg Corrspondnt Regional Sales Executi,WELLS FARGO BANK N A,F1100\nExecutive,Holt Oil & Gas Exploration,E1100\nPACIFIC MUTUAL DOOR COMPANY,,B5000\nPresident,Tooley Investment Co,F0000\nFINANCE,BREVON HOWARD,Y4000\nDUNN ENTERPRISES,,Y4000\nVPGM -- Division ($75M-$124M),Honeywell International,M2300\nLEO OPPENHELM & CO I,,Y4000\nPresident,\"Mo's Enterprises\",Y4000\nEnvironmental Planner,K C Barkley Consulting,Y4000\nSystems Analyst,Beaver County,X3000\nRAVENSWOOD PROPERTIES,,B2000\nPresident,Joni Industries,Y4000\nCHAIRMAN AND C.E.O,SELF-EMPLOYED/CHAIRMAN AND C.E.O,G0000\nSTERLING SAVINGS,,K2000\nWYRWAS AL IND,,M2250\nKOGCO INC,,Y4000\nATTORNEY,HALLET & PERRIN,K1000\nVICE CHAIRMAN,THE BANK OF TAMPA,F1100\nGENERAL MANAGER,TULLAHOMA UTILITIES BOARD,Y4000\nSELF-EMPLOYED,LARK LINDIG,Y4000\nFAMILY MEDICINE PHYSICIAN,IHA,Y4000\nReal Estate,Harkinson Investment,J7400\nPRESIDENT,SENECA PET CO.,Y4000\nComputer Programmer`,Z-Axis,Y4000\nSPIRITUAL PSYCHOLOGIST,SELF-EMPLOYED,G0000\nMktg,Dial Multimiding Group,Y4000\nVenture Capital Investor,\"Sapient Capital Management, LLC\",J1200\nATTORNEY,BAHAR LAW OFFICE,Z9500\nDECKERT PRICE & RHOADES,,Y4000\nCEO OF CORPORATION,,G0000\nBUILDER SELF,,Y4000\nClinical Social Worker,Selk,J7500\n\"VICE PRESIDENT, GOVT.\",PINNACLE WEST,E1600\nBusinessman,Triangle Developers Inc,B2000\nARDEN SHELL CORP,,Y4000\nFRAZER RYAN GOLDBERG,,J5100\nANALYST,DEPARTMENT OF ARMY/ANALYST,X5000\nCEO,BAYLOR ORTHOPEDIC AND SPINE HOSPITAL,H2100\n\"DIR., BUS PROCESS IMPROVEMENT & STABIL\",US DEPT OF AGRICULTURE,X3000\nNONPROFIT EXECUTIVE,\"GIVINGNET, INC.\",Y4000\nLOWE ENTERPRISES,,Y4000\nSenior Vice Presiden,Jefferies & Co Inc,F2100\nTELEVISION INDUSTRY,,Y4000\nCLINTON COMMUNICATIO,,Y4000\nSTAPLCOLN,,Y4000\nPOQUOSON MOTORS INC,,T2300\nMANUFACTURING,WOODFOLD-MARCO MFG.,Y4000\nChairman,Cirrus Production,E1120\nSOMERS INVESTORS & BANKING,,Y4000\nCONSULTANT,PSI,E1600\nP.A./ATTORNEY,DONNA IRVIN SOBEL,Y4000\nPresident,\"Planned Systems International,Inc.\",Y4000\nOWNER,MORRISTOWN ANIMAL HOSP.,A4500\nBUSINESSMAN,MODEL LININ INC.,Y4000\nPARTNER (RETIRED),KING & SPLADING,Y4000\nProject Manager,KBR,B1000\nSales Manager,Novasfer USA LLC,Y4000\nCITY COUNCILMAN,CITY AND COUNTY OF DENVER,X3000\nATTORNEY AT LAW,BAKER AND HOSTETLER,K1000\nOWNER,JENKS MOTOR SALES,Y4000\nMORRIS LAING EVANS BRO,,K1000\nTHOMPSON REALTY CORPORATION,,F4200\nattorney,Hunton and Williams,K1000\nMANAGING D,ANHEUSER-BUSCH COS. INC.,G2810\nSYDNEY COAL CO,,E1210\nSEBASTIANI VNYDS INC,,G2820\nExecutive,Ball Horticultural Company,A8000\nTRITON ENGINEERING,,Y4000\nManager,Sony Corporation of America,C5000\nREGIONAL SENIOR VICE PRESIDENT,COMCAST,C2200\nMANAGER & PHYSICIAN ASSISTANT,BOEHRINGER INGELHEIM PHARMACEUTICALS,H4300\nMOUNTAIN FIR CHIP CO,,Y4000\nManaging Director,Madison Dearborn Partners,F2600\nINFORMATION REQUESTED PER BEST EFF,HENREY HASS AND SON,Y4000\nFUEL DISTRIBUTOR,GOODIN FUELS INC.,Y4000\nLEE POKOIK REALTY,,F4200\nRegional Manager,\"BRE Properties, Inc\",F4100\nPRESIDENT MAASS CORP OWNER,\"MAASS CORP DAB OLIVER'S MARKET\",Y4000\nDESIGNER,SOY,Y4000\nCUSTOMER SEGMENT MAN,SOUTHERN CALIFORNIA GAS COMPANY,E1100\nINTERNATIONAL TRADING PACIFIC INC,,Y4000\nREGIONAL ADMINISTRATOR,U.S. GOVERNMENT,X3000\nORTHODONTIST,SPILSBURY ORTHODONTICS,H1400\nJOHNSON SANDERS & MORGAN/ATTORNEY /,,F1100\nRestaurateur,\"Bill Johnson's Restaurants, Inc.\",G2900\nNATIONAL MEDICAL ENTRPRIS,,H2100\nCAMPBELL & ASSOCIATES INC,,M1500\nTRICARICHI & CARNES,,K1000\nIKARD & POPP,,Y4000\nMGR DIRECTOR,BYRNE ELECTRICAL SPECIALISTS,C5000\nJOE G. MALOOF CO. - SANTA FE,,G2850\nChairman and CEO,\"CDW Computer Centers, Inc.\",G4200\nSAELINGER PS,TIMMERMAN,H1100\nHvac Cont,Self,G0000\nST LOUIS COUNTY REALTY CO,,J5100\nSABONA OF LONDON,,Y4000\nMARKETING,COLLEGIATE,Y4000\nPIEDMONT C & R,,Y4000\nORINOCO PARTNERS/MANAGEMENT/FINANCE,,Y4000\nPRESIDENT,\"EMERALD KALAMA CHEMICAL, LLC\",M3300\nFORCE TRAVEL AND LEISURE,,Y4000\nIndustrial,Reaux and Associates Llc,Y4000\nExecutive VP,Paramount Pictures,C2400\nREAL ESTATE,BLVD.BLDG.INC.,Z9500\nKEY BRANDS INTERNATIONAL,,Y4000\nCHAIRMAN OF T,QC HOLDINGS COMPANIES,F1420\nPEPPER HOMELTON & SCHEU,,K1000\nPresident,Gooding Simpson & Mackes Inc.,B3000\nESSERMAN AUTOMOTIVE GROUP,,T2310\nTHE BUSINESS SERV INC,,Y4000\nRADIOLOGIST,UNDISCLOSED,H1130\nHACKENSACK FIRE DEPT./FIRE FIGHTER/,,L1400\nGRESHAM OMS LLP,,H1400\nMuseum Aide,\"City of Alexandria, VA\",X3000\nHOLKEND & KNIGHT LLP,,K1000\nGOLDMAN SEEKS AND CO,,F2300\nCEO,\"ROSEWEIN REALTY, INC.\",F4200\nATTORNEY,CALDWELL & PATTERSON P.C.,K1000\nReal Estate Development,Crawford Edgewood,F4100\nARCHITECT,WWW.CARLOSBRILLEMBOURGARCHITECTS.CO,B4200\nBoard Member,Nat.Council for Pol.Mgmt.,K2000\nUTAH FOOD AND CATERING,,G2900\nCHIEF EXECUTI,AZTEC ENERGY PARTNERS,E1000\nowner,Starbolt,Y4000\nPRESIDENT,KIRK GROSS COMPANY,Y4000\nPSI ENERGY,,E1600\nAttorney,Raggio & raggio,K1000\nM B WHITE CONTRACTING IN,,B3600\nFinance,Citadel Investmen Groups,F2700\nArtirst,Self employed,X0000\nYELLOW CAB COMPANY,,T4200\nACCOUNTANT,\"ENGELKES, CONNER & DAVIS\",Y4000\nCONSULTANT,SUMMIT & ASSOCIATES,Y4000\nVICE PRESIDENT AGRICU,TYCO PLASTICS,M1500\nATTORNEY,\"BAKER, DONELSON\",K1000\nRICHARD A MEYER ASSOC,,Y4000\nAttorney,\"Phllips, Lerner, Lauzon et al\",K1000\nCORPORATE RELATIONS GROUP,,Y4000\nBERRY APPLEMAN & LEIDEN,,K1000\nChief Admin Officer,Mountainn West Small Bus Finance,F0000\nVICE PRESIDENT OF MEMBER SERVICES,FLINT EMC,E1610\nCONSULTANT,\"CZ GROUP, LLC\",Y4000\nBusiness Representative,IUPAT Local Union 579,LB100\nOwner,Styling By Will,Y4000\nCEO,National Cooperative Business Assoc,G1000\nATTORNEY,SIMCOX AND BARCLAY LLP,Y4000\nIBM INC.,,C5100\nENGINEER,CUMMINS INC.,M2300\nATTORNEY,\"SCHIFFRIN, BARROWAY, TOPAZ\",K1100\nCASCADIA DEVEL CORP,,F4100\nSAILMAKER/RETIRED,NOT EMPLOYED,G0000\nMARKS SHROM & CO LLP,,F5100\nChairman,Sonny Bryans Smokehouse,G2900\nOPERATIONS MANAGER,JC RAMSDELL ENVIRO SERVICES/OPERATI,Y4000\nPARTNER,COHN & COMPANY,F3100\nAttorney,Maupin Taylor,K1000\nFNB QUITMAN,,F1100\nPRESIDENT,L.R. WILLSON & SONS INC.,B0500\nDENTIST,\"HENRY D LYON, DDS, PC\",Y4000\nInvestigator,U.S. Government,J7300\n\"REBECCA J. JOHNSON, ATTORNEY AT LAW\",,K1000\nATTORNEY,\"MAY METZGER & ZIMMERMAN, LLP\",K1000\nINVESTMENT COUNSEL,,JE300\nTreasurer,Warwood Armature,G5600\nVice President & GM,Dover Hydraulics,Y4000\nWARE OIL & SUPPLIES,,E1100\nAttorney,Schlossberg Associates PC,Y4000\nPROF,YALE LAW SCHOOL,H5170\nPresident,Western National Property Management,F4100\nCHAIRMAN PHARMACOLOGY,BOSTON UNIVERSITY,H5100\nREAL ESTATE,TRIANGLE REALTY,F4200\nATTORNEY,LYNCH CHAPPELL & ASLUP PC,K1000\nVP CORP COMM,NS CORP GOOD GOVERNMENT FUND,T5100\nEXECUTIVE,ADVANCED DEVICES,C5000\nPRINCIPAL,GREENMOR FINANCIAL,F0000\nMCKESSAN HBOC,,H4400\nBUTZ CONSTRUCTION,,B1500\n\"Director, Alliance Management\",Genentech,H4500\nSALES,L.A.D. GROUP,Y4000\nPRESIDENT,\"WEBB & O'NEIL INC.\",G5270\nCOMPUTER PROGRA,MOSCOW HIDE AND FUR,Y4000\nPARTN,MEDICAL FACILITIES OF AMERICA,H2000\nPRESIDE,LIFECARE MANAGMENT SERVICES,H2200\nDr,Dr Edward Bosnac,Y4000\nBERGAN ARCH WOODWORKING,,B1500\nOWNER,PIERCE AUTOMOTIVE,T2300\nATTORNEY,PHILLIPS LAW OFFICES,Z9500\nOPERATIONS MANAGER,TREHEL CORP.,B1000\nCEO,DEFG LLC,Y4000\nDIRECTOR,NAMTOR INC.,F2100\nPhysician,Franklin Urological Assoc,H1130\nLENTZ HARDWARE,,G4500\nOIL AND GAS AND STOCK INVESTOR,SELF,Y4000\nSalesman,National American Sales,M2300\nATTORNEY,RELMAN & ASSOCIATES,Y4000\nPROBATION OFFICER,MAUMEE MUNICIPAL COURT/PROBATION OF,Y4000\n\"BORTON, PETRINI CORUM\",,K1000\nSILSBEE DOCTORS HOSPITAL,,H2100\nSENIOR VP,\"ANALYTICAL GRAPHICS, INC.\",D2000\nCivil Engi,Granite Construction Co.,B1500\nCfo,Dayton Childrens,Y4000\nNORTHWESTERN MUTUAL LIFE INSURANCE,,J5100\nCOMPLIANCE OFFICER,ALLIED BEACON PARTNERS,Y4000\nLawyer,Livingston Siegel,Y4000\nProducer,Reveille,C2300\nPHYSICIAN,OVERTON WILEY,Y4000\nVP/Attorney,Sprint Nextel Corp,C4300\nADVERTISING SALES ST,OUTDOOR LIFE NETWORK,Y4000\nLOAN OFFICER ASISTANT,PBI BANK INK,F1000\nHERBERT ALBERT CO,,Y4000\nRestauranteur,Chow-Down Management,Y4000\nKIDWELL CONSTRUCTION,,B1500\nSCHUMACKER LOOP KENDRICK,,Y4000\nAnasthesiologist,VA,L1100\nC.O.O.,D.M.J.M. & HARRIS,B4000\nPR/ Writer,Self employed,G5210\nVeterinarian,N Portland Vet Hospital,A4500\nREGIONAL,LAMAR ADVERTISING COMPANY,G5230\nMortgage Banker,\"HFF, Inc\",Y4000\nGen. Mgr.,Asc. Ready Mix,Y4000\nCOMPUTER CONSUL,LIBRARY OF CONGRESS,X4200\nDIRECTOR GO,KEYSPAN ENERGY DELVIERY,J7400\nHome Maker,Home Maker,F7000\nPresident,Tender Timber Management,G1200\nReal Estate Developer,Self-employed (Columbia Group),F4100\nLANDMARK COMMUNITIES,,B1000\nENGINEER,WJM TECHNOLOGIES,Y4000\nV.P. MEDIA RE,A.Z. SPOAS FOUNDATION,Y4000\nLAWYER,WILENKEN WILSON LOH & LIEB LLP,Z9500\nFilm Director,Miramonte Communications,Y4000\nEXECUTIVE VICE PRESIDE,ALTRIA GROUP,A1300\nDEVEL AUTOMOTIVE INC,,Y4000\nPhysicist,IBM Corp,C5100\n\"Vice President, Mark\",GE Consumer Finance,M2300\nMilitary Police Officer,US Army,X5000\nV.P.,Intl Truck and Engine Corp,T3100\nU T HEALTH CENTER-TYLER,,H2100\nPhysician,Dr Abdul Jabbar,Y4000\nCOMMODITY TRADER,\"1001 GREEN BAY ROAD, WINNETKA, IL\",F2200\n\"DIRECTOR, EMPLOYEE RELATIONS AND COMPL\",SAN DIEGO STATE UNIVERSITY,Z9500\nTHURSTON CHEV OLD TOY GEO,,T2300\nATTORNEY,\"CROWELL, NUCKOLS, LAYMAN\",K1000\nOWNER,RUSSELL-MOORE INC.,Y4000\nBusiness Systems An,Mentor Graphics,C1300\nVice President At Large,USW,Y4000\nPHYSICIST,PURDUE UNIVERSITY,H5100\nPresident/CEO,California Community Bank,F1100\nLAWYER,\"CORBIN, FITZGERALD & ATHEY LLP\",Z9500\n\"WILKERSON'S DO IT CTR\",,Y4000\nFINANCE,DISCOVERY COMMISSION,C2200\nBECKETT BRONZE,,M2200\nTHE MODY FOUNDATION/DIRECTOR/CO-FOU,,Y4000\nPRESIDENT T.M.S.C.,PIONEER SERVICES,Y4000\nHousewife,Housewife,M4000\nPRESIDENT/CEO,SCOTT SANDERS PRODUCTIONS,Y4000\nChairman,MGA Communications,Y4000\nEVPO,UNION PACIFIC RAILROAD,T5100\nEngineer,\"The Mathworks, Inc\",C5120\nBOND ANALYST,\"STANDARD AND POOR'S\",F5500\nSenior Vice Presiden,Smith Dawson & Andrews,K2000\nPA,THE PUBLICPRIVATE STRATEGY GROUP,Y4000\nSr Professional Hlth,Pfizer U.S. Pharmaceuticals,Z9500\nPresident & CEO,FCU,Y4000\nGOODMAN EKLUND-EASLEY &,,Y4000\nATTORNEY,GIRARDI & KEESE,K1000\nFINA,\"SOFER STEINER & ASSOC., L.L.P.\",J5100\nBusiness man,Tapton LLC,Y4000\nGas Well Tester-Oilfield,Archer & Associates,Y4000\nExecutive,Coastal Forest Resources,A5000\nSVP Customer Care,AT&T,C4100\nCFO,BENSON INDUTRIES LLC,Y4000\nGOVERNMENT CONTRACTOR,MPRI,Y4000\n\"EXPLORATION, O & G\",A G ANDRIKOPOULOS,E1120\n\"Senior Vice President, Stores\",Borders Group,G4600\nSEMI CONDUCTOR INDUSTRY ASSN,,C5110\nSPEECH-LANGUAGE PATHOLOGIST,DIRECT THERAPY SERVICES LLP,Y4000\nAURORA REG MED CTR,,H2100\nARTS EDUCATOR,SELF EMPLOYED,J1200\nOperations Evaluation Dept. - Team Mgr,WSRC,B1000\nOwner,Filter Technology,Y4000\nCPA,Edgar Kiker & Cross LLP,Y4000\nGIPSON HOFFMAN ET AL,,J1200\nMARKETING,ICONOCULTURE,Y4000\nDAMERON ALLOY FOUNDRIA,,Y4000\nTEACHING CONSULTANT,SELF-EMPLOYED,G0000\nPRESIDENT,\"CONWAY GLASS, INC.\",Y4000\nSWIDLER BERLIN LLP,,K1000\nGARRET & SETTLE,,Y4000\nATTORNEY,\"FELDMAN, ORLANSKY & SANDER\",K1000\n\"LEE'S GARAGE INC\",,Y4000\nDirector,ABIR,J7500\nPRESIDENT,FALCON MANAGEMENT CORPORATION,F2100\nFUJITSU,,C5120\nPharmacist,Nationwide Childrens Hospital,H2100\nFINANCE EXECUTIVE,INFO REQUESTED,B3600\nWOODLAND COMPANY,,Y4000\nAttorney,\"Alkermes, Inc\",H4300\nPresident,Capital First Bankshares Inc,F1100\nPRESIDENT,SPOONER PETROLEUM,Y4000\nprusch babinski,mci,Y4000\nCFO,Greiner Electric,B3200\nCHAIRMAN & CEO,ARIEL CAPITAL,F2100\nNATIONAL ASSOCIATION REALTORS,,F4200\n\"Evergreen Int'l Aviation\",,T1600\nMD,OPHTHALMIC CONSULTANTS OF LONG ISLAND,H1120\nKIRKWOOD INVESTMENTS,,J5100\nAUTO DEALER,CLARKSTON CHRYSLER JEEP,T2300\nN N JAESCHKE INC,,Y4000\nFINANCE,MERCURY CAPITAL ADVISORS,F2100\nresearch scientist,University of California,H5100\nPARTNER/ATTORNEY,CLIFFORD CHANCE,K1000\nOncologist,U.S. Oncology,H1130\nCFO,METROPOLITAN GROUP,G5210\nEXECUTIVE V,WILLIAM LYON HOMES INC.,J1100\n\"O'DONNELL LANDSCAPES\",,J1100\nworker rep,oapff,Y4000\nBAIL AGENT,BELTON BAIL BONDS,G5000\nPRESIDEN,APPLEGATE WOOD FLOORS INC.,B3000\nSenior Vice Presiden,\"McGriff, Seibels & Williams, I\",F3100\nPresident,Stratz and company,Y4000\nPHYSICIAN,PATEL RESEARCH INSTITUTE,Y4000\nSR. VICE PRESIDENT MANUFACTURING &,R P.M. INTERNATIONAL,M1600\nPresident,Holden Foundation Seed,X1200\n\"Professor, Author\",Stanford University,H5100\n\"Doula Trainer, Grad\",Self,G0000\nVP ENGINEERING,BROADSOFT,C5120\nSALES REP.,GENOPTIX MEDICAL LABORATORY,Y4000\nANESTHESIOLOGIST,NORTHSIDE ANESTH CONSUL,H1130\nCONSULATANT,ANGEL PLANTS INC.,Y4000\nOPTHALMALOGIST,SELF,Y4000\nAttorney,Richard W. Whittemore PC,K1000\nCEO,PERKINS SCHOOL,Y4000\nDOCTOR,LUMBERTON SURGICAL,H2100\nMETRO BANK GROUP,,F1100\nWATER MANAGER,SELF,Y4000\nUNEMPLOYED,POMONA FEED,Y4000\ndoctor specialty psychiatrist,self,H1100\nVice President,Roppe Holding Compan,M1500\nABRITRATOR,C GEORGE NICOLAU PC,Y4000\nATTORNEY,HENAL & SYSCO,K1000\nPresident,Normandeau Assoc,Y4000\nLobbyist,Fabiani & Co.,K2000\nATTORNEY,CA APPELLATE PROJECT,Z9500\nCUBETA REALTY,,F4200\nHEALTH NET INC,,H3700\nPRESIDENT,MILLER CONSULTING GROUP INC.,G5200\nConsultant,Advanced Strategies,K2000\nATTORNEY,\"LOCKE LORD, LLP\",K1000\nCivilian Information Tech,Us Air Force,X5000\nCORPORATE EXEC,\"C8 MEDISENSORS, INC.\",J1200\n\"VP, HEALTH SERVICES\",SHARP COMMUNITY MEDICAL GROUP,H1100\nProvost,SUNY - Potsam,Z9500\nAGENT,WILLIAM MORRIS AGENCY,G5000\nMANAGER,THE FOD CONTROL CORP,Y4000\n,CONTINENTAL FIVE INSURANCE COMPANY,F3000\nHENSON DEVELOPMENT COMPANY,,F4000\nHealthcare Partners,Physician,J1200\nChoir Director,Self,G0000\nOPERATOR,BAILEY FLYING SERVICE,A4000\nProfessor Emerita,UTM,Y4000\nDANCER/TEACHER,NOT EMPLOYED,Y1000\nProfessor,Univ Cincinnati,H5100\nSOFTWARE ENGINEER,RHIZA LABS,Y4000\nEAU CLAIRE COOP OIL COMPANY,,Y4000\nPRESIDENT,SALERNO ROSEDALE CHAPEL,Y4000\nATTORNEY,COTTON BLEDSOE TIGHE & DAWSON PC,K1000\nREALTOR,\"SHH, INC./REALTOR\",Y4000\nINVESTMENT BANKER,G.C.A. SARVIAN,Y4000\nChairman,Public Strategies,K2000\nPHYSICIAN,HARRISONBURG OB/GYN,H1130\nMARKET MAKER,SELF-EMPLOYED,G0000\nAMERICAN GASTROENTEROLOGICAL  ASSOC,,H1130\nAttorney,William H. McDonald & Assoc.,K1000\nOWNER,GRIFFIN AG CONSULTING,Y4000\nEURO-AMERICA SHIPPING AND TRADE INC,,Y4000\nANDREW & KUSKE ENGINEERS,,Y4000\n\"Dir, National Accoun\",Direct Supply,H4100\nConsultant,Jim Gonzalez & Associates LLP,K2000\nNon-profit executive,smart growth america,Y4000\nCONSULTAN,\"KING AND ASSOCIATES, INC.\",Y4000\nBUSINESS EXEC,TRADE ASSOC/BUSINESS EXEC,Y4000\nLopez Garcia Group,Self,Y4000\nK FEINBERG & ASSOC,,K1000\nBUSINESS EXECUTIVE,ALLIANCE BONDS,Z9500\nINVESTMENTS,H.I.G. CAPITAL,F2600\nTRUST MANAGER,BANK OF TEXAS,F1100\nLOBBYIST,PARRY & ROMANI ASSOCIATES,K2000\nJ E MANZI & ASSOCIATES INC,,Y4000\nAGENT,Berger Benefit Connections,F3300\nINVESTOR/DEVELOPER,THE RELATED COMPANIES,F4100\nDIRECTOR F,FORT DODGE ANIMAL HEALTH,H4300\nReal Estate,WHITLEY DEVELOPMENT GROUP,Y4000\nHORSE RANCHER,SELF-EMPLOYED/HORSE RANCHER,A3000\nATTO,\"FRASIER FRASIER & HICKMAN, LLP\",K1000\nCOO,North Fulton Regional,Y4000\nASHBURN HOUSING AUTHORITY,,Y4000\nCITY GAS CO OF FL,,E1140\nInstructor,West Chester University,H5100\nLIFE MATTERS/SPEAKER/TRAINER,,Y4000\nTZ S C,,Y4000\nOWNER,DAVIS MENDEL & REGENSTEIN,Y4000\nGOVT. RELATIONS,GRIFFIN & JOHNSON,K2000\nCONTRACTOR,E&S CONSTRUCTION,B1500\nMANAGER,MARTIN JOHNSON ASSO,Y4000\nMUM/TEACHER/MOTHER,,H5100\nComputer Executive,Self employed,C5100\nsports promoter,self employed,J7300\nOwner,Gaubert Oil Company,E1000\nLAW PROFESSOR,WAYNE STATE UNIV. LAW SCHOOL/LAW PR,Y4000\nClay Mineralogist,\"Ardaman & Associates, Inc\",Y4000\nDRAGAS COMPANIES,,Y4000\nDEALER,CRANDALL FORD MERCURY,T2300\nBOARD MEMBER,CHICAGO WHITE SOX,G6400\nFund Management,Spinnaker Capital LTD,Y4000\nProfessor,University if Virginia,H5100\nOWNER MOVING & STOR,MOVING MAN INC.,Y4000\nMCGRAW PUBLISHING PERIHPERALS,,C1100\n\"TRAVELER'S GROUP\",,F3100\nFRIUT GROWER,,Y4000\nPROJECT FINANCE ADVISORY,,F0000\nCHARLENE ENGELHARD,,Y4000\n1ST ROCHDALE COOPERATIVE GROUP LTD,,Y4000\nPT,Washington University,H1700\nCOB and CEO,ADX,Y4000\nAttorney,\"Wisler, Pearlstine & Talone\",K1000\nU S BANKNOTE CORPORATION,,Y4000\nINFO REQUESTED,INFO REQUESTED,F5300\nCEO,Senegence Intl.,Y4000\nHEALTH WATCH INC,,H3100\nRetailing,Quik Trip Corp,Y4000\nPRAIRIE PACKAGING,,M7100\nINSURANCE SALES,PRITCHARD & JERDEN INC.,Y4000\nGovernment Relations,Realogy,F4200\nCreative Director,GSD&M,G5210\nC.E.O.,\"P.P.D., INC.\",H4500\nFOUNDER,REALNETWORKS,C5120\nPresident,Cranford Silk Screen Process,Y4000\nCIVIL,APPLIED RESEARCH ASSOCIATION,Y4000\nEnergy/Environmental Engineer,\"Vulcan, Inc\",F7000\nMANAGER,TRANSPORTATION EQUIPMENT SUPPLY CO,T0000\nVICE PRESIDENT,FUTURENET GROUP,Y4000\nLAW,BUSH MOTTO CREEN HOFFMAN AND KO,K1000\nPresident,Americans For Democratic Action,J1200\nGENERAL MARINE,,T6100\nBANK DIRE,WEST VALLEY NATIONAL BANK,F1100\nENGINEER,AMERICAN COOLING SYSTEMS L.L.C./ENG,B3400\nOWNER,LAUGHLIN RANCH,A3000\nAttorney,Agassi Graf Holdings,G5200\nSOFTWARE ENGINEER,RAYTHON SYSTEMS CA,C5120\nChief Executive Offi,Pepsi-Cola Bottling Company,G2600\nELECTRICAL CONT.,SELF,G0000\nATTORNEY,\"SHANA M. ROOKS & ASSOCIATES, LLC\",Y4000\nPHYSICIAN,\"WOMEN'S HEALTH SOURCE\",Y4000\nPRESIDENT,VICTORIA MUNROE FINE ART LTD,Y4000\nNORRIS ASSOCIATES,,Y4000\nMail Handler,NPMHU Local 297,L1500\nMasseuse,Jewish Community Center,J7500\nCHEMICAL ENGINEER,MOLECU WIRE CORPORTAION,Y4000\nRETIRED,RETIRED (MILWAUKEE COUNTY),X1200\nPresident,Denman And Assoc,Y4000\nDIRECTOR OF HR,HARFORD COUNTY,X3000\nPhysician,NM Assoc of Anesthetics,H1130\nCOMPUTER EXECUTIVE,ISL,C5100\nBERGER & SINGERMAN,,K1000\nKISSINGER ASSOC INC,,G5200\nBusiness Consultant,\"Hawaii Public Policy Advocates, LLC\",Y4000\nRONQUILLO & DEWOLF LLP,,K1000\nCEO,City National Bank,F1000\nCFO,ALLIANCE PARTNERS LLC,Z9500\nAttorney,Beesnon Tayer & Bodine,Y4000\nOWNER,FOUR K MANAGEMENT,Y4000\nSEAFOOD IMPORTER,3 KIDS CORP,Y4000\nSenior Vice Presiden,SUNTRUST LEASING CORPORATION,G5300\nFinancial Advisor,City Group,F1100\nMASONRY CONTRACTOR,WITMER MASONRY,Y4000\nSTENDER SQUARE GALO LLC,,J7400\nPRESIDENT-S. B. C. W,S. B. C.,C4100\nProperty Manager,\"Dolco, Inc\",Y4000\nPANDOLFSKI TOPOLSKI WEISS & COMPANY,PANDOLFSKI TOPOLSKI WEISS & COMPANY,Y4000\nVice President of Operations,Health One of Southern Illinois,Y4000\nPresident Ceo,\"Midwest Therapy Moline,llc\",Y4000\nPartner,Private Equity Partners,F2600\nFarmer,Foster Farms,A0000\nHR,APPLIED MATERIALS/HR,C5110\nCOLLEGE PROFESSOR,CAMPBELLSVILLE UNIVERSITY,H5100\nATTORNEY,THE DAVIS FIRM PLLC,Y4000\nCATTLE RANCHER,SELF-EMPLOYED,E1120\nBRO OF MAINT OF WAY EMPLOYEES - PAC,,LT400\nOwner,S & M Nutec,Y4000\nDIAGNOSTIC RADIOLOGIST,\"JOHN A. PATTI, M.D., INC.\",H1130\nORGANIZER / SALES,HAMILTON SYSTEM DISTRIBUTORS INC,G2700\nPHILANTHROPY DIRECTOR,SECURITY NAT. SERVICING CORP.,J7120\nCAPELL & HOWARD PC,,K1000\nInformation Technology Strategist,Wyndham Vacation Ownership,T9100\nSMITHTOWN CONCRETE PRODUCTS,,B5100\nOwner,Diversified Financial Solution,F0000\nBURNS & WILSON,,Y4000\nVice President Of Ma,Warner Lambert,Y4000\nMARKETING,UNITED HEALTH SALES,J1200\nMANAGER,GLMS,Y4000\nENGINEER,MICROCHIP,Y4000\nCHAIRMAN,HARRISON WESTEIN,Y4000\nAssistant to the President,Peter Kiewit & Sons,B1000\nTHE LAW COMPANY,,B4000\nATWOOD KNOX ANDERSON & UZZI,,Y4000\nHIRSCHBERG STRATEGIES INC,,Y4000\nNORTHROP CORPORATION,,D2000\nCONSULTANT,THE TETRIS GROUP,K2000\nBURSON MARSTELLER,,F4100\nOWNER,FOUSER ENVIRONMENTAL SERVICES,Y4000\nEXECUTIVE,USAA REAL ESTATE CO.,F4000\nHEALTH CARE INVESTMENTS INC,,H2100\nVECTOR RESEARCH,,D3000\nExecutive Director,Keet-Tv,Y4000\nATTORNEY,WHELCHEL & DUNLAP,K1000\nJ BARON INC,,Y4000\nCONTRACTOR,WESTERN ENGINEERING CONTRACTORS INC.,B4400\nChairman,Columbus Regional,Y4000\nPresident,Valente & Associates,K2000\n\"NICKLOW'S\",,Y4000\nNETWORK ADMIN,\"NORTH AMERICAN LIGHTING, INC.\",Y4000\nCEO,MERITAGE HOMES CORPORATION,J5100\nAttorney,\"George, DeGregorio, & Massimia\",K1000\nDesigner,Tec Design & Graphic,C1300\nCIVIL ENGINEE,\"L&G ENGINEERING, INC.\",B4400\nPYSHCOLOGIST,SELF EMPLOYED,J7400\nINSURANCE,BANKNORTH INSURANCE GROUP,F3100\nC.E.O.,JOHN F. POPP & ASSOCIATES,Y4000\nPRESIDENT,LOCKWOODANDREWS & NEWNAM,B4000\nConsultant,Davis & Assoc,Y4000\nFarmer,K Ron Farms Partnership,A1600\nDE BLOIS UNLIMITED,,Y4000\nMANAGEMENT CONSULTANT,LOTUS HOSPITALITY INTERNATIONA,J9000\nDIR. OF STRATEGIC PLANNIN,CITIGROUP,F1100\nVP Network,Crew Creative,Y4000\nElected Official,Pulaski County,J1100\n\"Dir. Gov't. Relation\",Fidelity Investments,F2100\nPRESIDENT,PAXSON COMMUNICATIONS,C2100\n\"Director, Special Pr\",Gwaltney,G2300\nPLATTE RIVER VENTURES,,F7000\nK&J MACHINE,,Y4000\nRESTAURANT DEVELOPER,SOUTHEASTERN INTERSTATE GROUP,Y4000\nGRANITE CITY INTL GROUP,,F2100\nCONSULTANT,COPELAND ASSOC. INC.,Z9500\nLAWYER,MAYER BROWN LLP,J1200\nCENTRAL NURSERIES INC,,Y4000\nExecutive,Weber Shanduuck,G5210\nOWNER,PETERSON LIVESTOCK FARM,A3000\nPharmacist,College Hill Drug Company,G4900\nOWNER,MAGNOLIA CANTEEN,Y4000\n\"SO-LO FOODS, INC\",,Y4000\nREAL ESTATE,SUN WEST PROPERTIES,F4000\nVice President,Zions First National Bank,F2100\nAttorney,Suffolk Law School,H5170\nHospital Administrator,\"Children's Memorial Hospital\",H2100\nTeacher,Horace Mann School,X3500\nWESTERN BUILDING SUPPLY CO,,B5000\n\"OWNER, INVESTOR\",BERKSHIRE MONEY MANAGAMENT,F2100\nVICE PRESIDENT OF TECHNOLOGY,CRC INDUSTRIES,Y4000\nSENIOR V.P. & C.O.O.,LEXIS NEXIS,C5130\nSLOAN BROTHERS CO,,Y4000\nPHYSICIAN,LITTLE ROCK ANESTHESIC SERVICES,H1130\nAttorney,Tate Law Group,K1000\nWEIGHT WATCHERS,,G5800\nMARKET RESEARCHER,MEREDITH CORPORATION,C1100\nATTORNE,GERSOWITZ LIBO & KOREK P.C.,J1200\nPRESIDENT,INFORMATION TECHNOLOGY PLCMNTS,Y4000\nPROFESSOR,BIOLA UNIVERSITY,H5100\nWESTERN BUILDING SUP,,B5000\nPHYSICIAN,CONTINUUM GERIATRIC SERVICES,H1130\nPresident,Eli Lilly,H4300\nEngineer,State Tex,Y4000\nInvestment Management,\"Geo Investors, LLC\",Y4000\nCIvil Rights,DDOT,Y4000\nREGISTER OF DEEDS,COMMONWEALTH OF MASS.,X3000\nAZ DEPT OF REAL ESTATE,,X3000\nOFFICE TECH,CA,Y4000\nNORSTAT INC,,Y4000\nECPI OF TIDEWATER VA INC,,H5200\nAMER. ASSOC. FOR GERIATRIC PSYCHIAT,,Y4000\nCPA,\"Huselton, Morgan & Maultsby\",F5100\nATTORNEY,BOARD OF GOVERNORS OF THE FEDERAL RESE,Y4000\nGRACE SERVICES INC.,,Y4000\nM.D.,Ucos,Y4000\nChief Executive Offi,Clayco Construction Company,B1000\nNON-PROFIT VOLUNTEER,SELF-EMPLOYED,J1200\nATTORNEY,SHER ASSOCIATES,Y4000\nDELTA ENERGY MANAGEMENT INC,,Y4000\nPresident,M & R Exteriors,G1200\nExecutive,Sun Healthcare Group,H2000\nReal Estate Developer,Anbau Enterprises,F4100\nFarmer,Michael Lara Farms,A0000\nCHAMBER OF COMMERCE,AK STATE,G1100\nUKR ORTH CHURCH OF AMERICA,,X7000\nBusiness Executive,Siebel Marketing,Y4000\nLUMBER COMPANY,CANAL WOOD,A5000\nR P COATINGS,,Y4000\nARROW LINE,,Y4000\nCARTER BROTHERS,,Y4000\nExecutive Director,Schoolcraft Housing Authority,Y4000\nC PARTRIDGE CO #3,,Y4000\nExecutive Director,America Online,C5140\nFOUNDER,ASSOC COMMUNLITY PGMS,J1100\nLEGISLATOR,STATE SENATOR,X3100\nCOURT REPORT,RICHMAN REPORTING INC.,Y4000\nCONSULTANT,PUBLIC STRATEGIES WASHINGTON,Z9500\nCOO,\"MEDIVECTOR, INC.\",H4300\nPRESIDENT,BRETT PUBLIC RELATIONS,G5210\n21 CASE REALTY,C,F4200\nCFO,CONVEYORS INC.,Y4000\nKONNER & COMPANY,,F5100\nInvestment Management,Turner Investment Partners,Z9500\nPROFESSIONAL VOLUNTEE,SELF-EMPLOYED,G2850\nACCOUNTANT,HIGHGATE HOTELS L.P.,T9100\nREAL ESTATE AGENT,SELF-EMPLOYED,J1100\nTRUCKER,CURTIS THARPE TRUCKING INC,T3100\nAttorney,SEC,X3000\nTelecommunication Director,Tift Regional Medical Center,H2100\nCPA,THOMAS HOWELL FERGUSON P.A.,Y4000\nREAL ESTATE INV,RANCHO RUIDOSO CORP,F4000\nBOARD OF,HOME LOAN BANK OF AMERICA,F4600\nLONGMONT REALTY CORP,,F4200\nREGISTERED NURSE,WILLIAM LACORTE,Y4000\nPRESIDENT,CLOVIS & ROCHE,Y4000\nACCOUNT EXECUTIVE,US FOODSERVICE,T9100\nHOUSTON SIGMA TECHNOLOGIES,,Y4000\nMAIL CONTRACTOR,PEARSON TRUCKING,X3700\nADVERTISER,IPG MEDIA LAB,Y4000\nVICE PRESIDENT,SELECT STAFFING,Y4000\nTRI-STATE SALES INC,,G4600\n\"Presenter, Coach, Te\",\"Mastery, Incorported\",Y4000\nArchitect,Carney Arch.,Y4000\nanalyst,SNL Financial,F0000\nGRANT ROSE & PUMPHREY,,Y4000\nCO-FOUNDER,GROUPTWEET.COM,C5140\nPRESIDENT,EUCLID INSURANCE SERVICES,F3100\nBusiness Development,Avenue Capital,F2700\nPRESIDEN,KINGSTON-MIAMI TRADING CO.,Y4000\nEXECUTIVE,MIDWEST CONSTUCTION CO,Y4000\nDENTIST,ALLAN MOSKOW,H1400\nTHE COLONY GROUP,,F2100\nart,self,G0000\nTOWN OF HAMPTON,,X3000\nRn,St Vincent General H,H2100\nPHYSICIAN,BELLIN HEALTH CARE SYSTEM,H1100\nPAWNBROKER,B G LAON & JEWELRY CO,G4600\nSCNTST PRIN,HONEYWELL INTERNATIONAL,D2000\nATTORNEY,WHITE ARNOLD & DOWD P.C.,K1000\nBLUE CORAL AUTO SALVAGE,,T2200\nB & J COMPANY,,Y4000\nAttorney,\"RodaNast, PC\",Y4000\n\"Sr  Dir, Investor Relations\",\"Anesiva, Inc\",Y4000\nSELF EMPLOYED,DR. WILLIAM A HALL,Y4000\nCONSULTANT,ARNO PENZIAS,Y4000\n\"Director, Buyer Experience\",eBay,C5140\nAttorney,\"Cardenas, Whitis & Stephens, L\",K1000\nHousedad,Self,G0000\nPENN CAN TRUCK STOP,,E1170\nM.D.,East Coasst Medical Assoc.,Y4000\nPRESIDENT,PEOPLES STATE BANK,F1000\nEMPIRE TWIN THEATERS,,C2700\nCOO,PERSHING LLC,F2000\nConsultant,The Berban Group LLC,Y4000\nNA,NONE,B1000\nPRESIDENT,GENEVA ROTH INVESTORS,Y4000\nVice President,Emtek,Y4000\nANESTH ASSOC OF GREATER MIAMI,,H1130\nCO-PRESIDENT,SHERWOOD MGMT. COMPANY,Y4000\nSCIENEE POLICY CONSULTANT,SELF/SCIENEE POLICY CONSULTANT,G0000\nANESTHESIOLOGIST,NASHVILLE ANESTH SERVS,H1130\nMURRAY REALTOR,,F4200\nEXECUTIVE,MILLER BUCKFIRE & CO./EXECUTIVE,F2100\nS R PERROTT,,Y4000\nVolunteer Coordinator,Marin County School Volunteers,Y4000\nTUTOR-SALIBA,,Y4000\nREAL ESTATE,IBG PARTNERS LLC,F4100\nAttorney,\"Cavanagh & O'Hara\",K1000\nInvestment Banker,\"Warburg, Dillion, Read\",Y4000\nATTORNY,LAW OFFICES OF PAUL MEYER,K1000\nPEACHTREE SETTLEMENT FOUNDATIO,,G5270\nStatistician,\"Ravenstat, Inc\",J1200\nSALES MANAGER,GLAXO SMITH KLINE,H4300\n\"VIDEO PRODUCER, RETIRED\",RETIRED,J1200\nBAHAKEL & BAHAKEL,,K1000\n\"MGR 1, FLEET MANAGEMENT\",\"COMCAST OF CA/CO/TX/WA, INC.\",C2200\nOWNER,THOMAS INSTRUMENTS,Y4000\nDealer,Gorno Ford Inc,T2300\nSELF,CONSULTANT,K1200\nhospitality,Self Employed,T9100\n\"RANKIN, O'NEAL\",,K1000\nSales,Fleet Bank,J1200\nWALLER BUICK COMPANY,,J7400\nCEO,The Kaplan Group,J9000\nTEACHER,SAN JOSE UNIFIED SCHOOL DIST.,X3500\nLOBBYIST,HANNEGAN LANDAU POERSCH ADVOCACY,K2000\nLetter Carrier,United States Postal Service,Y4000\nBOWPOST GROUP,,J7400\nAttorney,\"Heltzer & BUrg, PLC\",Z9500\nMETROBANK,,F1000\nRETIRED,PUBLIC SCHOOL TEACHER,Z9500\nPS CARRIER,,Y4000\nInvestment Banker,Eltekon Capital,F0000\nMACHINE,SELF,Y4000\nGrief Counselor,Retired,X1200\nPICK KWIK CORP,,G2400\nInspector,City & County of Broomfield CO,X3000\nATTORNEY,OFFICE OF STANDING CHAPTER 13,Y4000\nVP-OPS.,CAT SCALE CO.,T3100\nLawyer,\"Atterbury, Goldberger, Richardson & We\",K1000\nUNIVERSITY OF SO CA SCHOOL OF SOCIA,,H5100\nINFO REQUESTED,CST ENVIRONMENTAL INC,E2000\nExecutive VP,Univision 48,C2300\nPRES,CAVALIER TITLE & ESCROW L.L.C.,F4300\nCEO,\"CLAY LACY AVIATION, INC.\",Y4000\nGEOPHYSICIST,MURPHY OIL CORP.,E1160\nCOURT REP,RLESDORPH REPORTING GROUP,Y4000\nInterim Executive Director,United for a Fair Economy,Y4000\nConsultant,Bill Smith & Co.,J7300\nOwner,Unruh Consulting,Y4000\nTITAN INVESTMENT,,Y4000\nATTORNEY,\"BIVONA & COHEN, PC\",K1000\nACADEMY OF TRIAL LAWYERS OF ALLEGHA,,K1100\nBUSINESS MANAGER,SELF EMPLOYED,JE300\nDisabled,Disabled,X3700\nElectrical contracto,Active Construction Company,B1500\nC. E. O.,WATERS CORPORATION,M9000\nPRES/CEO,\"ROGERS-O'BRIEN CONSTRUCTION CO\",B1000\nSecretary,Evanson-Jensen Funeral Homes,G5400\nCEO,\"SAS Institute, Inc.\",Z5100\nAttorney,\"Waters Law Office, PLLC\",K1000\nPetroleum Marketer,City Service Vallon,E1170\nAM LAB ASSOC,,Y4000\nEXECUT,ENTERPRISE TITLE AGENCY INC.,Y4000\nTRUST OFFICER,DAVIDSON TRUST COMPANY,Y4000\nPARTNER,RICHLAND LLC,Y4000\nCOLUMBIA COUNTY YOUTH BUREAU,,X3000\nINVESTMENT ADVISOR,\"GALLERY ASSET MANAGEMENT, INC.\",Y4000\nOWNER,PEKOVICH TRADING CARD COMPANY,Y4000\nFINANCE,\"HCP, INC.\",F4100\nBusiness Owner/Consu,Truenoth Holdings,Y4000\nInsurance Sales/Advisor,\"Nease, Lagana, Eden & Culley\",F3100\nPRES,METROMEDIA FIBER NETWORK SERV.,C4100\nCEO,OPTRONICS,Y4000\nMANAGER,DANDY DISTRIBUTORS,Y4000\nATTORNEY,ALLRED MAROKO & GOLDBERG,K1000\nCEO,Reliable Linings & Coatings Co,Y4000\nCRAFTSMAN,INTERNATIONAL UNION OF PAINTERS & ALLI,LB100\nCEO,Hostbridge Technology,Y4000\nLIVINGSTONS AUTO PARTS,,T2200\nLAWYER,\"PAUL, REICH AND MYERS\",K1000\nSYSTEMS CONTROL,,Y4000\n\"TEE AND JAM, INC/DIRECTOR/PRODUCER\",,Y4000\nDAISY RENTAL,,G5300\nStudent,none,G4600\nP,\"GLHN ARCHITECTS & ENGINEERS, INC.\",B4200\nSr. Project Director,\"Pace Management, LLC\",Y4000\nEXECUTIVE,AMERISOURCE FUNDING,Y4000\nTRUCKS BROS,,Y4000\nCBSA,,F5000\nDYNAMICS CORP,VIBRO,M5000\nPRESIDENT,JOHANSON DIELECTRICA INC.,B3200\nPRESIDENT,GULF OFFSHORE LOGISTICS LLC,E1150\nDirector,Hunt Alternatives Fund,X4000\nCEO,XTRA CORPORATION,Y4000\nBANKER,C US BANK,F1000\nCONSULTANT,BAIN &AMP; COMPANY,G5270\nMANAGER,VIKING ELECTRONICS INC,J1100\nPARTNER,DLA PIPER,K2100\nCDP PRODUCTIONS INC,,Y4000\nINVESTMENT CONSULTAN,Self Employed,F5000\nCLINICAL SW,SELF EMPLOYED,K1200\nUs Senator,Us Government,J1200\nDISK MAKERS INC,,Y4000\nphysician,kdhc,Z9500\nREAL ESTATE,,C2100\nGREGORY HINES SHOW,,Y4000\n\"Vice President Gov't Affairs\",NV Energy,E1620\nVP of Applications Development,Pharmerica,H4400\nINSURANCE,RYAN KASNER BLALKE,Y4000\nTravel Agent,Travel Store,J7400\nCO-FOUNDER,SYSTEMS SOURCE,Y4000\nFinancial Analyst,JPL,B4400\nRegional Vice Presid,Adelphia Media Services,C2200\ninstructor,glenville state,Y4000\nADAPTIVE RECREATION AND SPORTS MANAGER,CITY OF LAS VEGAS DEPARTMENT OF LEISUR,X3000\nOWNER,\"CURRIE'S AMOCO\",H5100\nOwner/Principal/Partner,\"Lifestyle Homes Group, Inc\",B2000\nOWNER,E & E SERVICES LLC,Y4000\nATTORNEY,PHOENIX,Y4000\nRealtor,Self/Caldwell Banker,F4200\nChief Financial Offi,WV High Technology Consortium,G1200\n\"JOE'S GARAGE INC\",,T2300\nINVE,\"FIRST AMERICAN MUNICIPALS, INC\",Y4000\nINVESTOR,BLACKROCK,F2100\nCEO,House of Raeford,A2300\nEXECUTIVE,PROPEL SOFTWARE INC.,J1200\nCHARTER REALTY & DEVELOPMENT CORP,,F4200\nExecutive,Sencorp,J1100\nN/A/HOMEMAKER,,D8000\nPersonal Care and Se,Self-employed,G0000\nSurgery Sales Director,Abiomed Inc,H4100\nGovernmental Affairs,American Continental Group,K2000\nC.E.O.,REVEN CAPITAL,Y4000\nCIMC,,Y4000\nPHARMACIST,OSTERHAUS PHARMACY,H1750\nReal Estate,Tate Enterprises,J5100\nDEL ASSN REALTORS,,F4200\nOWNER,EAST FAIRFIELD COAL,E1210\nAT HOME,N/A,X1200\nSELF EMPLOYED,N/A,J1100\nCEO,RAP INDEX,Y4000\nExecutive,TICIC,F1200\nPHYSICIAN,EASTERN CARDIOLOGY,H1100\n\"Gagnon, LLC\",Self,Y4000\nCONSU,WELSH CARSON ANDERSON & STOWE,Y4000\nBOTTO MECH CORP,,F5300\nPUBLISHING,\"WINNING WRITERS, INC.\",Y4000\nOWNER,\"GYPSUM SYSTEMS, INC.\",Y4000\n\"Vice President, Organizer\",\"PCI Consultants, Inc\",J1200\nAnalyst,Zachary Shuster Harmsworth,Y4000\nATTORNEY,SELF,H1130\nExecutive,Teaching Strategies Inc.,H5000\nSOUTH SIDE FOODS,,G2000\nWriter,Matthew Carnahan,Y4000\nVP,Ray Bell Construction,B1500\nATTORNEY,SHUTE MIHALY & WEINJORGE,J7400\nREAL ESTATE BROKER,SCARBOROUGH REALTY,F4200\n\"IFFLAND, KAVANAGH & WATERBURY PC\",,Y4000\nFIELD AUDITOR,,Y4000\nATTORNEY,GRUEL MILLS NIMS & PYLMAN LLP,Y4000\nB F SHAW PRINTING COMPAN,,C1300\nTEACHER,B.Y.U.,H5100\nBusiness Owner,Carrot Seed Llc,A4000\nWEST BROTHERS TRANSFER,,Y4000\nFIXED INCOME PORTFOLIO MANAGER/ANALYST,CAPITAL RESEARCH COMPANY,F2100\nPARTNER,TORYS LLP,Y4000\nYALE FORK LIFT,,Y4000\nGSK&M,,G5210\nSUN-SENTINEL,,Y4000\nPRESIDENT,GULF BAY MANAGEMENT L.L.C.,F4100\nMicrobiologist,Boston Scientifci Corporation,H4100\nPHYSICIAN,\"ST JOSEPH'S MEDICAL CENTER\",H2000\nCHAIRMAN,STARWOOD HOTELS & RESORTS,T9100\nEVENT MANAGER,DAMON EXECUTIVE EVENTS,Y4000\nCEO,TERMAX CORPORATION,Y4000\nHealth Care Executiv,Hospital for Special Surgery,J7400\nPhysician,Western Neuro Surgery,J5100\nAdjunct History Professsor,Houston Community College,H5100\nCOTEZ YACHT,,Y4000\nOWNER,MAINSCAPE,Y4000\nRESEARCHER,DEPT. OF DEFENSE,X5000\nRetired,Ohio State Judge,J7150\nGOVT RELATIONS,AT&T WIRELESS PAC,C4300\nCounsel,Buchanan Ingersoll PC,K2000\nProfessor,Harvard Medical,H5150\nATTORNEY,O.P.I.C.,X3000\nBusinessman,Paradise Management,Y4000\nEXECUTIVE,OLNEY LAND AND CATTLE CO.,Y4000\nGELDERMANN INC,,F2200\nCHAIRMAN/C.E.O./C.O.,MANDALAY RESORT GROUP,G6500\nPartner,\"Traxi, LLC\",F5100\nOwner,Kentucky Rivers Wood Poducts,B5200\nMARKET RESEARCH,SELF,J7300\nCINTI BOARD OF EDUCATION,,X3500\nACTIVE DUTY,UNITED STATES AIR FORCE/ACTIVE DUTY,X5000\nSHEE,\"SHEET METAL WORKER'S LOCAL #19\",LB100\nPresident,New Money Express,J5100\nOwner,Andersen Construction,B1500\nRESTAURANT ASSOC IND INC,,G2900\nSurgeon/Physician,GA Urology,H1130\nPRESIDENT & CEO,ABSECON MILLS,M8000\nSHARED TECHNOLOGIES-FAIRCHILD,,Y4000\nFINANCIAL SECURITIES EXEC,CITIGROUP,J1200\nMORTGAGE OFFICER,\"MORTGAGE BANK, BROTHER-IN-LAW OF CANDI\",F4600\nDAIRY FARMER,JS HOLSTEINS INC.,Y4000\nATTORNEY,MARILEE MARSHALL & ASSOC. INC,K1000\nEXECUTIVE VICE PRESIDENT,GREAT LAKES SOLAR PARTNERS,Y4000\nState Senator,Self,X3100\nAttorney,Klett Rooney Lieber & Schorl,K1000\nMECKLEY LIMESTONE,,B5100\nDEALER,HANSONS AUTO & IMPLEMENT,T2300\nRETIRED,RH LYONGROUP,Y4000\nLEGAL SERVICE OF EASTERN MISSOURI,,K1000\nEXECUTIVE,HALO INDUSTRIES,J5100\nPRESIDENT,AMTECK OF KENTUCKY INC,Y4000\n\"EVP, SECRETARY & GENERAL COUNSEL\",\"HOME PROPERTIES, INC.\",F4100\nCO,U.S. REPRESENTATIVE MARCY KAPTUR,Y4000\nCHALLENGER,,M2300\nCOMMUNICATIONS CONSULTANT,ROSS COMMUNICATIONS INC.,Y4000\nOWNER,HOWERIN BOATS INC.,Y4000\nUMDMJ,,H5150\nAttorney,Warsahw Burstein Cohen Schlesinger & K,Y4000\nSMALL BUSINESS OWNER,XEROGRAPHIC DIGITAL PRINTING,Y4000\nTECH SUPPORT,STATE OF TENNESSEE,X3000\nTEACHER,,C4100\nPresident,Sill Petroleum,E1100\nEditor,Wild Iris Communications,C1100\nA BROS. FENCE CO.,,Y4000\n\"OZAR, ANDERSON & RADDER\",,Y4000\nPRESIDENT,BILLION KIA OF SIOUX CITY,T2300\nNOBK&L,,Y4000\nATTORNEY,FUEGENE & BENSON,K1000\nPIZZA HOUSE,,G2900\nAttorney,Federal Trade Comm,J7400\nCENDANT MOBILITY SVC,,Y4000\nGREENTANCE PROPERTIES CORP,,Y4000\nSALES,SELF,E1150\nPAR,\"ATLANTIC REALTY COMPANIES, INC.\",F4100\nATTORNEY,FRIEDMAN & ASSOCIATES P.C.,K1000\nSenior Partner,\"Clark, Lyle, and Geduldig\",K2000\nMANAGER,DDI EQUIPEMENT,Y4000\nBIODYNAMIC CRANIOSACRAL THERAPIST,SELF EMPLOYED,Y4000\nReal Estate Developm,The Crowell Company,F4100\nTeacher,Sweetwater Schl Dist @1,J1200\nCLEMENTS CHEVROLET CO,,T2300\nOWNER,\"ROYAL GROUP INVESTMENTS, INC.\",J5200\nFellow,Apple Computers,C5110\nENGINEER,\"THE MANNIK & SMITH GROUP, INC.\",B4000\nOHIO DEPARTMENT OF NATURAL RESOURCE,,J1300\nATTORNEY,BOGLE AND GATES,K1000\nFLAG LUXURY PROPERTIES LLC,,J1200\nRADIATION ONCOLOGIST,NORTHWESTERN MEDICAL FACULTY,H1130\nWICHITA SURGICAL GROUP,,J5400\nmanagement analyst,Retired,J7400\nTECHNOLOGY EXECUTIVE,\"YUVEE, INC.\",Y4000\nVP COMMUNICATIONS M,BANK OF AMERICA,F1100\nPRESIDENT & C E O,NELCO,Y4000\nSALES MANAGER,BUSCH,Y4000\nSYSTEM INTEGRATERS,,Y4000\nAWNING MANUFACTURER,SELF-EMPLOYED,Y4000\nBRANAM WILLMAN TRIPLETT,,H1100\nFIFTH THIRD BANK OF KENTUCKY LOUISV,,F1100\nMATT SLAP SUBARU,,G1200\nS W BELL,,Y4000\nALLEGHENY OPHTHAMIC & ORBITAL,,Y4000\nONTARIO SCHOOL DISTRICT,,J7400\nENGLISH MUNGER,,K1000\nCEO,INTELLIGENT TECH INC/CEO,Y4000\nCPA,COTTON AND ALLEN PSC,F5100\nSELF/WRITER/COMMUNITY VOLUNTEER,,C1100\nTHOMSON-MACCONNELL CADILLAC,,T2300\nAnalyst,Automated Concepts,Y4000\nPRINCIPAL,KESSINGER HUNTER COMMERCIAL RE,Y4000\nACCESS CRNA SC,,Y4000\nGeneral Manager,\"Executive Lines, Inc.\",Y4000\nFINANC,TANGLEWOOD WEALTH MANAGEMENT,Y4000\nGENOVESE INDUSTRIES,,Y4000\nBUSINESSMAN,WASTECH INCORPORATION,E3000\nOwner,ISF Construction,J7500\nINVESTOR RELATIONS,PORETZ GROUP,G5210\nATTORNEY,CAIN AND CAIN: ESTATE PLANNERS FOR LIF,Y4000\nLecturer,University of Southern California,H5100\nGrant Writer,Montgomery County,X3000\nPROGRAMME,ELECTRONIC PARTNERING LTD,Z9500\nHOUSING INVESTMENTS INC,,F4000\nPARTNER,\"COZEN O'CONNOR\",K1200\nDIRECTOR,CENTER DEVEOPMENT CORP.,F4100\nReal Estate,The Albemarle Group L L C,F4000\nInformation Requested,US Military,X5000\nPROFESSOR,STANFORD UNIVERSITY OF MEDICINE,H5100\nCoordinator,Acc,Y4000\n\"Senior Writer, Public Af\",Powell Tate,K2000\nNEW ENGLAND BANK,,F1100\nOwner,Transmission Shop,Y4000\nDEVELOPMENT DIRECTOR,YWCA,G6100\nIt Manager,Fcbmridd,Y4000\nE PROV CAR WASH,,Y4000\nEXECUTIVE,PENN UNITED TECHNOLOGIES,M2300\nCOOPER SQUARE NURSES REGISTRY INC,,H3100\nentrepreneur,Self-employed,X4100\nComputer Program,Agilon,Y4000\nCEO,Westport Pools,B3000\nJAMES RIVER COAL CO,,E1210\nminister,Retired,X1200\nBECK CONSULTING GROUP LLC,,G5270\nAttorney,Sonnenschein Nath & Rosentha,K1000\nPOLYCOM INC.,,Y4000\nCFO,DUTY FREE AMERICA,J5100\nSPORT PSYCHOLOGY/PSYCHOTHERAPIST,SELF-EMPLOYED,Y4000\nPHYSICIAN,WOMANCARE CENTERS,H1130\nTEB ASSOCIATES INC,,F4000\nOwner,Coast Constriction Company,B1500\n\"URBACK, KAHN & WERLIN\",,F5100\nEXECUTIVE,OCCI,Y4000\nMarketing/Advertisin,Self,G0000\nDirector of Development,Consumer Attorneys of California,K1100\nOwner,Viking Trail Service,T9400\nPRESIDENT,\"CUMBERLAND SUPPLY COMPANY, INC.\",Y4000\nNonprofit Fundraiser,Self employed,X4000\nManaging Partner,\"Las Vegas Land Partners, LLC\",Y4000\nOWNER,MARINAS INTERNATIONAL,Y4000\nMANAGING DI,\"J.C. FLOWERS & CO., LLC\",F2600\nBusiness Executive,\"Agensys, Inc.\",H4000\nBUSINESS OWNER,\"ANGELO'S AUTO WORKS\",Y4000\nConsultant,Stapleton & Associates,K2000\nCAPELLA HEALTHCARE/VP/FINANCIAL OPS,,H2100\nSTUDENT,STUDENT,G5000\nCo-Chairman,Hoffman Enterprises,T2200\nPHOTO SHOP OWNER,SELF,G0000\nSTAR TRANSPORTATION/CEO/PRESIDENT,,Y4000\nPropert M,N/A,J1200\nROUND ROCK SCHOOLS,,X3500\nOwner,\"MAC-RE, LLC\",F4000\nFABER CONSTRUCTION,,B1500\nINFO REQUESTED,TENNGROUP INC,Y4000\nDirector Of Acquisit,Self-Employed,G0000\nPHASE I,,Y4000\nBusiness Manager,Caterpillar,B6000\nElectrician,Hammett Electric Co.,Y4000\nWorldview Solutions Inc,,Y4000\nATTORNEY,\"MCNABB, BRAGORGOS & BURGESS\",K1000\nCIVIL ENGINEE,GEOSYNTEC CONSULTANTS,Y4000\nATHLETIC DIRECTOR,CAL STATE FULLERTON,H5100\nHOMEMAKER,NOT EMPLOYED,G4300\nSuperintendent,New America School,Z9500\nPresident/CEO,FDP Wealth Management,Y4000\nBUSINESSMAN,FANTA CORPORATION/BUSINESSMAN,Y4000\nVice President,UTEC,Y4000\nARCHEOLOGIST,PASCHEK ENVIRONMENTAL,E2000\nInvesment Advisor,Wertheim Schroeder,Y4000\n,DEPT. OF PROFESSIONAL AND OCCUPATI,X3000\nChairman,\"Merastar Partners, LP\",F3100\n\"MUNGER, TOLLES & OLSO\",SELF-EMPLOYED,Y4000\nFAC TECH INC,,Y4000\nInterior Designer,Cullman & Kravis,G5000\nCEO,AD MAKEPEACE,Y4000\nEXECUTIVE,VANTAGE DRILLING,Y4000\nAttorney,Morrison and Hecker,K1000\nSr Systems Engineer,Chesapeake Energy Corp,E1120\nANADARKO PETROLEUM CO,,E1120\nCAPITAL TRANSPORTATION INC,,T3100\nPRESIDENT,KENTUCKY HOSPITAL ASSOC.,H2100\nC P A,BERBERICH TRAHAN & CO,Y4000\nGREEK ORTHODOX CHURCH OF NEW JERSEY,,X7000\nConsultant,SCP,Y4000\nGENERAL COUNS,MODERN WOODMEN OF AM.,F3300\nPOWERWAVE TECHNOLOGIES INC,,Y4000\nNONE,.,Y1000\nATTORNEY,\"SCOPELITIS GARVIN, LIGHT, HANSON AND I\",Y4000\n\"V, L, B, MCPHER\",,K1000\nMECHANIC,HYDRAULIC REPAIRS,G5600\nCOnsultant,The National Group LLP,K2000\nPRESIDENT,DISALLE REAL ESTATE,F4000\nShaw Pittman LLP,Consultant,K1000\nPHYSICIAN,NATIONAL JEWISH CENTER,H1100\nEXEC. DIRECTOR,THE COUNTRY SCHOOL,Y4000\nMR. EDUARDO HOLGUIN,,L1300\nIRONWORKER,IRONWORKERS UNION,LB100\nAttorney,ASI Bankcard,J1200\nKING HERSHEY ATTORNEYS @ LAW,,K1000\nVice President,Mortgage Warehouse,F4600\n\"EDWARDS, ANGELL, PALMER, DODGE, LLP\",,K1000\nOWNER,AC ENTERPRISES,Y4000\nENGINEER,ORBITAL SYSTEMS LTD.,J1100\nPRESIDENT,IND. POWER PRODUCERS/PRESIDENT,Y4000\nORTHOPAEDIC SURGEON,DEPARTMENT OF THE ARMY,H1130\nREALTOR,REMAX,J9000\nPresident,Lenon Orlinski,Y4000\nVp Of Technical Serv,Time Life Customer Services,Y4000\nWHAYNE SUPPLY,,B6000\nPRESIDENT,COASTAL RIM DEVELOPMENT,Y4000\nTax examiner,Iowa,Y4000\nNATIONAL PARK FOUNDATION,,J7400\nPresident,BRIDGER BUBBLES,G1200\nVice President-Sales/Marketing-Subsidi,KOCH CARBON LLC,E1160\nSELF-EMPLOYED,CATHY HASSINE,Y4000\nC INGRAM COMPANY,,B3400\nINFO REQUESTED,Bush Industrial Tire Inc,M1500\nSELF-EMPLOYED,SELF-EMPLOYED,A4000\nDAVIS,DIXON,G5210\nLEE CERTIFIED COINS LTD,,G4600\nSENIOR MANAGING DIRECTOR & CLO,CITADEL LLC,F2700\nEXECUTIVE SEC,ELEMENTIS SPECIALTIES,Y4000\nN/A/UNEMPLOYED,,C5100\nPHYSICIAN,TRI-CITIES SKIN AND CANCER/PHYSICIA,H1130\nDUNEMERE ASSOCIATES,,F4200\nart and Antique Dealer,Self employed,G4600\nEXECUTIVE,CRUSHED ROCK,Y4000\nINSURANCE,A.N. ANSAY & ASSOCIATES,F3100\nHead - Corporate Ban,JPMorgan Securities Inc.,F1100\nReal Estate Consulta,Landbourn Company,F4000\nSUPERVISOR,STANISLAUS COUNTY,X3000\nCEO,HARDEN HEALTH CARE,H0000\nAttorney,\"Hill & Kehne, LLC\",K1000\nHEALTH-CARE,ELITE,Y4000\nINTERNATIONAL RECTIFIER CORPORATION,,C5110\nWISEMAN & WOLF,,Y4000\nFINANCE POLICY ANALYST,CALIFORNIA ASSOCIATION OF PUBLIC HOSPI,Y4000\nOWNER/C.E.O.,\"TAYLOR JORDAN & ASSOCIATES, L.L.C.\",Y4000\nBEER DISTRIBUTOR,L & F DISTRIBUTORS LTD./BEER DISTRI,G2850\nPresident,F.D. Rich Company,Y4000\nDIRECTOR FOR PUBLIC HEALTH; TRADE,US FOOD & DRUG ADMINISTRATION,J7300\nOLSSON FRANK WEEDA,,K1000\nMEDICAL TECHNOLOGIST,MCCULLOUGH-HYDE HOSPITAL/MEDICAL TE,H2100\nCU,Alaska USA FCU,F1300\nWALL STREET MORTGAGE COMPANY,,F4600\nCLU,Sapers and Wallack Insurance Agency,F3100\nRESTAURANT OWNER,\"MILLER'S BAR B-Q\",Y4000\nIVY HALL GERIATRIC CTR,,H2200\nClassroom Teacher,CROOK COUNTY SCHOOL DISTRICT,L1300\nPRESIDENT/C.E.O.,SECURITY FINANCIAL MORTGAGE,F4600\nOwner,Lube Specialist,T2400\nPRESIDENT/OWNER,SUBWAY OF STAFFORD,Y4000\nPresident,Avida Bank,F1100\nPHYSICIAN,ANNAPOLIS INTERNAL MEDICINE,JE300\nData Processor,ADP,JD200\nVice President / Treasurer,\"The Duberstein Group, INC\",K2000\nPAT MILLER DESIGN,,Y4000\nPACIFIC GAS,,E1620\nBOOTH HARRINGTON JOHNS & TOMAN LLP,,Y4000\nAR MANAGER,BEGLEY LUMBER,B5200\nPRICE-COSTCO INC,,G4300\nATTORNEY,FINKLESTEIN AND KRINSK,Z9500\nLawyer,Ouimette and Runcie,K1000\nSELF,MAD RIVER LUMBER,Y4000\n\"SR. DIR, OPERATIONS SUPPORT\",TIME WARNER CABLE,C2200\nPROCES,RINKER MATERIALS CORPORATION,B5100\nExecutive Director,Citrus Belt Uniserve Inc,A1400\nAccountant,Hines and Company,Y4000\nEXECUTIVE VICE PRESIDENT,BANKFIRST,F1100\nContractor,JH Reid General Contractor,B1500\nTAX CONSULTANT,ERNST & YOUNG,F5100\nADMIN SUP,VANDER-BEND MANUFACTURING,Y4000\nLONDRIGAN ABD POTTER,,K1000\n\"Sales Executive, Sacramento\",Kaiser Permanente,F3200\nTREASURER,AGAWAM YOUTH HOCKEY,J1200\nAdmissions Director,Kehillay High School,Y4000\nMarketing,Citadel Investment Group,F2700\nCOMMERCIAL TOWNSHIP SCHOO,,X3500\nBROADVIEW MANAGEMENT CO,,Y4000\nSoftware Engineer,Fujifilm Medical Systems,Y4000\nCHAIRMAN OF THE BOARD,RADIO UNION,Y4000\nPresident,Label Technology Inc.,Y4000\nEXECUTIVE,ROYALTY CARPET MILLS INC.,M8000\nCONSULTANT,BSR,Y4000\n2ND LETTER MAILED,,F0000\nPrincipal,The Federalist Group,K2000\nCONSULTING EN,DELOITTE & TOUCHE LLP,F5100\nCEO,NATIONAL HEALTH CORPORATION,H2200\nPHYSICIAN,NEW YORK UNIVERSARY,Y4000\nTechnology,\"System Support Solutions, Inc.\",Y4000\nPERFORMANCE SPECIALIST GROUP LLC,,Y4000\nPHYSICIAN,LEAVITT MEDICAL/PHYSICIAN,H1100\nMARKETING CONSULTANT,STEPHEN CLOUSE & ASSOC.,G5280\nACTUA,BLUE CROSS OF NORTHEASTERN PA,F3200\nAnalyst,Gltrade,Y4000\nInformation Requeste,Howrey,K1000\nExec. VP,ePlus Inc.,G5270\nOWNER,WIDSOM DEVELOPMENT GROUP,Y4000\nPresident,Blake D Hines Inc.,B1000\nMALETIS INC,,G2850\nFRANKLIN TRANS INC,,Y4000\nMARION CROSS SCHOOL,,Y4000\nSENATOR,STATE OF TN,X3000\nDIRECTOR,CONDOR SYSTEMS INC,D3000\nDOCTOR,REQUEST DENIED,H1100\nMANAGER,THE RUOMTO PARTNERSHIP,Y4000\nSELF EMPLOYED,FREDERICKS INC.,B0500\nHOMEMAKER,NONE,E1000\nPresident,E-Controller Com. Inc.,Y4000\nWORLD MERCHANDISE,,Y4000\nJACKIE WATTS EA,,Y4000\nExecutive,\"Chronos, LC\",Y4000\nHOMES FOR YOUTH,,B2000\nSENIOR VIC,\"MERRILL LYNCH & CO, INC.\",F2100\nPhysician,VCU,H5100\nFINANCIAL ADVISOR,INFO REQUESTED,F5000\nWASHINGTON STATE EMPLOYMENT SECURIT,,J1200\nANESTHESIA HEALTHCARE PARTNERS OF L,,H1130\nATTORNEY,LEGAL SERVICES CORPORATION OF VIRGINIA,Z9500\nATT,KOLSBY GORDON ROBIN SHORE BEZAR,K1000\nFashion Business Con,Self employed,G0000\nTREE & ASSOCIATES,,Y4000\n\"TRAIN, SMITH COUNSEL\",,F2100\nDUNN JOHNSTON & CO INC,,Y4000\nMT EYE ASSO P A,,H1120\nRIEZMAN & BLITZ P C,,K1000\nHEALTH CARE,GRANE HEALTH CARE CO.,H3000\nATTORNEY,\"BAKER, MANOCK & JENSEN\",K1000\nATTORNEY,FELLERS SNIDER BLANKENSHIP BAILEY,Y4000\nPOLITICAL ANALYST,\"SKADDEN, ARPS, SLATE, MEAGHER & FLOM\",K1200\nRES CARE INC,,H3100\nFINANCIAL SERVICES,DEMETER ASSET MANAGEMENT,F2100\nGOLDEN WEST FINANCIAL CORP,,F1200\nPRESIDENT,KKN INC.,B1000\nSALES ASSOCIATE,MILLIONHAIR INC.,Y4000\nVICE PRESIDENT,COMMERCE BANK,F1100\nPRESIDENT,THE FIDLAR COMPANY,C1300\nVacation Rentals,Brindley Beach,Y4000\nN / A/N / A,,G6550\nATTORNEY,DYKEMA P.L.L.C.,Y4000\nPROF TENNIS PLAYER,,G6400\nNeurosurgeon,Lyroming Neurosurg. Assoc.,H1130\nEPISCOPAL SUPERVISOR,AME CHURCH,X7000\nCEO,SAHARA ENTERPRISES,Y4000\nDEPT ACCTG & GENL SERVICE,,X3000\nWORKPLACE VIOLENCE PREVENTION AND TRAI,\"SAFETY AND RESPECT AT WORK, LLC\",Y4000\nPresident,Pentec Health,Y4000\nFINANCIAL ANALYST,ALVAREZ & MARSAL,G5270\nAttorney,\"Scripps Networks Interactive, Inc\",C5120\nArt Historian,N/A,X0000\nCOOK,TACO GRILL,G2900\nPresident/Co-owner,E.E. Ward Moving & Storage Co.,Y4000\nProd. Mgr.,Inland Industries,Y4000\nREGASUS MANAGEMENT,,Y4000\nProject Manager,Geotest Engineering,B4400\nPhysician,William Beaomoit Hos,Y4000\nM F M BUILDING PRODUCTS,,Y4000\nHEALTH COUNSELOR,VA,L1100\nExecutive,Danco Solutions,J5100\nCHEMIST,DIONEX CORP.,J1200\nPartner,\"Clark, Lytle & Geduldig\",K2000\nINTERIOR DESIGNER,CDC DESIGNS,Y4000\nPARTNER AKIN GUMP STRAUSS HAUER & F,,K1000\nsecretary,Westchester Jewish Community Services,J1200\nENGINEER,GD APPLIED PHYSICAL SCIENCES,Y4000\nMANAGER,AAR AIRLIFT,Y4000\nPROGRAM MANAGER - DE,DRS TRAINING & CONTROL SYSTEMS,Y4000\nCEO,\"CLAYCO, INC\",Z9500\nCHAIRMAN,CLEAR CHANNEL COMMUNICATIONS,C2100\nBEST & FLANAGAN,,K1000\nmusic director,St Anselm,Y4000\nSELF EMPLOYED,JAMES C MASON,T1400\nCancer Researcher,University of Arizona,H5100\nINVESTMENT,SELF,J1200\nExecutive Staff,Virginia Community Action Agen,X4100\nSales Manager,Garcia Hondia,G0000\nGOVERN,GOVERNMENTAL STRATEGIES INC.,K2000\nEXECUTIVE,SIERRA MACHINERY INC.,M2300\nPRES,MILESTONE CONTRACTORS L.P.,B1000\nVP,ARRIS  Inc.,C2200\nDIRECTOR OF PUBLIC POLICY,OREGON ASSOCIATION OF HOSPITALS & HEAL,H2100\nSURGEON,\"DAVID G. MOHLER, M.D., INC.\",H1100\nPRESIDENT,LIFEBLOOD MEDICAL INC,H4500\nNATIONSBANK BETTER GOVERNMENT,,F1000\nActor,NA,C2400\nPhysical Therapist,Physiotherapy Associates,H3000\nPEST CONTROL ADVISOR,HELENA CHEMICAL CO,M1000\nUSA EDUCATION INC,,F1410\nPORTIS FARMS,,A1100\nReal Estate Investor,Amir Development,J5100\nFINANCIAL DATA/CLIENT RELATIONS,SNL FINANCIAL,Y4000\nBusiness Manager,Dupont,J1200\nCEO,Business Owner,G0000\naccountant,Chesapeake Energy,E1120\nINV,CONSULTING FINANCE SERVICES LLC,F0000\nGLASSTECH SERVICES INC.,,M7200\nTHE 36 GROUP LLC,,Y4000\nSUPERVISO,NAVAL RESEARCH LABORATORY,Y4000\nFinance,Veg Plus Capital Partners,F2100\nVP,B R S Inc,B1000\nRUFFWOOD INC,,Y4000\nAttorney,American Academy Of Orthopedic Surgons,J1200\nBusiness,The Cracker Box,Y4000\nProject Manager,Wind River Systems,C5120\nTEACHER,PINECREST SCHOOL INC,H5100\nSKINNER MANAGEMENT,,Y4000\nTHE M W KELLOGG COMPANY,,Y4000\nVP CLAIMS,TRUSTMARK INSURANCE,F3100\nVP HUMAN RES,MARATHON PETROLEUM CO.,E1160\nMARCIA JOSLYN SILL INCORPORATED,,F5000\nattorney,Arnstein & Lehr LLP,Z9500\nADVANTIS,,M4100\nVP OPERATIONS,MOBILEX USA,H4100\nEXECUTIVE VICE PRESIDENT,DEBARTOLO HOLDINGS,Z9500\nKOZLOV SEATON ROMANINI & BROOKS,,K1000\nSUPPLIER TO POLICE AND MILITARY,HWI GEAR INC,Y4000\nEXECUTIVE,STRECO FIBERS INC.,Y4000\nWAGONER MAZDA INC,,T2300\nRetailer,\"Veldkamp's Flowers & Gifts, Inc\",A8000\nCEO,THE JOB FORCE,Y4000\nPRESIDENT,MICA-CASE INC.,Y4000\nGARDNER MIDDLEBROOKS GIBBONS,,K1000\n\"Director, V.P.\",\"Sky Research, Inc.\",E3000\nOCCUPATIONAL THERAPIST,DEPT OF VETERANS AFFAIRS,H1700\nExecutive,New Carlisle Tractor,Y4000\nNEW & USED AUTO DEALE,SELF-EMPLOYED,T2000\nCOO,MaPS CU,F1300\nFarming Manager,Mohinda & Thiara,Y4000\nMCPRIDE CLINIC INC.,,J1100\nBRADFORD & CO,,G2500\nPRESIDENT,PENNFLEET CORP,Y4000\nApartment Management,Family Business,G0000\n\"US ATTORNEY'S OFFICE DEPARTMENT OF\",,K1000\nSENIOR VICE-PRESIDENT,FREEPORT-MCMORAN COPPER & GOLD,E1220\nMEDICAL DOCTOR,ADONAS/MEDICAL DOCTOR,Y4000\nSVP,NY Life,F3300\nASPEN HOLDINGS,,Y4000\nsales,Dimension Systems,Y4000\n\"RAINBOW BABIES AND CHILDREN'S HOSPI\",,H1100\nAPARTMENT MANAGER,ERMA DARLING,Y4000\nINFORMATION REQUESTED,TRANSNATIONAL DEVELOPMENT,Y4000\nSENIOR MANAGING D,PARAMOUNT CAPITAL,J5100\nTRANSPORTATION MGT SERVICES,,T5100\nCEO,Midway Games Inc,M3500\nPHYSICIAN,UNIV OF ARIZONA,H5100\nEXECUTIV,UNITED ADVANCED TECHNOLOGY,Y4000\nReal Estate Agent,The King Team Re/max Excalibur,Y4000\nEXECUTIVE,NEW BUSINESS SOLUTIONS,Y4000\nBROCKER,SANTANDER SECURITIES,F2100\nPresident & CEO,Glanbia Foods Inc,A2000\nDetective,Delaware County,X3000\nCHIEF EXECU,BUSH BROTHERS & COMPANY,Y4000\nNEWPORT STEEL CO,,M2100\nBARR LABORATORIES,,H4300\nAttorney,\"Wilson & Pennypacker, LLP\",K1000\nAttorney,\"Mahon, Mahon & Mahon\",K1000\nVETERINARY PRACTICE OWNER/MANAGER,BABY SOX LLC/VETERINARY PRACTICE OW,Y4000\n\"MCCOLLISTER'S MOVING & STORAGE\",,C5100\nSEAGATE TECH,,Y4000\nOWNER,SHANKS AND ASSOCIATES,Y4000\nDate Processor,Requested,Y4000\nGENERAL MANAGER,WAKEFIELD INVESTMENTS,F2100\nPROFESSOR OF ECONOMICS,UNIVERSITY OF HAWAII,H5100\nREAL ESTATE INVESTOR,GIMELSTUB ENTERPRISES,Y4000\nREAL ESTATE INVESTOR,NORRIS GROUP,Y4000\nSUBURBAN OSTOMY,,Y4000\nENGINEER,LPC,Y4000\nAttorney,Crowel & Moring L.L.P.,K1000\nLANTZSCH-ANDREAS ENTERPRISES INC,,Y4000\nManaging Director,JP Morgan Securities,F1100\nCROWN CAPITAL LTD,,Y4000\nANN ASCHER INTERIORS,,\nFINANCIAL CONSULTING,SELF EMPLOYED,J1100\nLABORER,BERNALILLO COUNTY PARKS AND RECREATION,X3000\nOWNER,MISTER U ENTERPRISES LLC,Y4000\nJOHN ARROWOOD,,Y4000\nManager,AROD,Y4000\nHouswife,Self employed,Y1000\nChorographer,Self employed,C2900\nRETIRED. TEACHER,YAZOO CITY PUBLIC SCHOOL,X3500\nConsultant,Gary Fears,J1200\nHEALTH FIELD,PRL,Y4000\nHome Improvement Con,self employed,B3000\nPHYS,INDEPENDENT ANESTHESIA OF TEXA,J1100\nWALDEN DRUG INC,,Y4000\nRETIRED PUBLIC SCHOOL EDUCATOR,RETIRED,X1200\nState Representative,State of Georgia General Assembly,Y4000\nPARTNER,S.I. ENTERPRISES L.P.,T7200\nIT Manager,Autotrader.Com,C5140\nPresident & CEO,\"Pepco Holdings, Inc\",E1620\nAttorney,Freedman & Larry PC,K1000\nKOKINDA & ASSOCIATES,,Y4000\nGILCHRIST TIMBER CO,,A5000\nSENIOR VP,ACS,C5130\nBAIL BONDSMAN,,J1100\nREGIS INN,,T9100\nexecutive,\"Job Connections Services, Inc\",Y4000\nCEO,AIRBORNE TECHNOLOGIES,Y4000\nOFFICE MANAGER,DR. REGINALD BERRY,Y4000\nELECTRICAL,,J7400\nEngineering Manager,\"Excel Mining, LLC\",E1210\nIT SECURITY AR,MCKESSON CORPORATION,H4400\nOTH CONSULTANTS INC,,Y4000\nCHIEF MERCHANDISE OFFICER,LOT18 HOLDINGS,Y4000\nAttorney,Collett & Buckle,K1000\nReal Estate Management,JEM Realty,F4200\nPRESIDENT,HOLEKAMP CAPITAL,F2500\nSCRIPT TECH,,Y4000\nOWNER,\"FAST FOOD EQUIPMENT, INC\",Y4000\nSONY PICTURES,,C2400\nDISTRICT LEADER,VOLUNTEER,Y4000\nPODIATRIC PHYSICIAN,GREEN COUNTRY PODIATRY CENTER,H1130\nLABORER,GOODYEAR,Y4000\n\"Pathologist, MD\",Northwest Indiana Pathology Consultant,H1130\nVice President,Federal Distributors Inc.,G2850\nHANSON AGGREGATES,,Y4000\nWILLIAMSON PTG CORP,,C1300\nArtistic Directr,Target Margin Theater Inc,C2900\nATTORNEY,LAW OFFICES OF BRIAN C. LEIGHTON,K1000\nCIVIL ENGINEER,ALLERT HOSHALL LTD.,Y4000\nLoan Officer,G Financial,F0000\nELECTRICAL SALES,MANHATTAN ELECTRIC,B3200\nSENIOR VICE PRESIDENT,AMEGY BANK OF TEXAS,F1000\nPATCO LLC,,F2100\nVice President of Ad,OU HSC,Y4000\n\"NAPA NAT'L BANK\",SWANSON VINEYARDS,F1100\nTEXTILES,MILLIKEN & CO.,H1100\nCHIEF EXEC,EASTOWN DISTRIBUTORS CO.,G2850\nMONCLA WELL SERVICE,,G1000\nPRINCIPLE,KISSINGER MCLARTY & ASSOCIATES,T2000\nMARTORI ENTERPRISES INC.,,F7000\nAFES Coordinator,American Red Cross,X4000\nCHIEF IN,MD DEPT OF HUMAN RESOURCES,X3000\nATTORNEY,\"GRAY, CARY, WARE\",J7400\nSVP AND TREASURER,AT&T,C4100\nVintner,self employed-McHenry Vineyard,G2820\nCALARCO INC,,A4100\nAttorney,Parker Johnson Anderson Et Al,K1000\nAccountant,D. Williams and Company,F5100\nINTERNAL & REGULATORY AUDITOR,RETIRED FEDERAL EMPLOYEE,X1200\nPROJECTS MANAGER,H.A. DORSTEN INC.,B0500\nPHYSICIAN,METHODIST HOSPITALS,H2100\nTHOROBRED HORSE OWNER,,A3500\nOwner,Freirson Plantation,Y4000\nSEMI RETIRED,MUSIC CONSTRUCTION INC,B1500\n\"CITY COUNCILMAN, WARD 3\",CITY OF LAS VEGAS,X3000\nVP and Area Manager,\"Matson Navigation Company, Inc\",T6200\nLEON L LEVY ASSOC,,F3100\nManaging Director,Capital Alpha Partners,F5500\nTHE SECURITY BENEFIT GROUP OF CO,,F3100\nsmall business owner,\"modern the floor store, inc\",Y4000\nDIRECTOR,BELLINGHAM BAY FOUNDATION,Y4000\nFINANCE,R.P.M. METROPOLITAN CUP L.L.C.,Y4000\nUNIDIAL,,Y4000\nCOMM PR,VILLAGES OF LAKE GUNTER INC,Y4000\nOWNER/INVESTMENTS,DICK THOMPSON ENTERPRISES INC.,Y4000\nCONSULTANT,DIVERSIFIED SEARCH/STEMCONNECTOR,G5250\nFirefighter/EMS,SAN ANTONIO FIRE DEPARTMENT,L1400\nManager Software & Electronics Enginee,GE Transportation Systems,M2300\nBEAUFORT COUNTY COU,BEAUFORT COUNTY,X3000\nINVESTMENT ADVI,\"PPG INVESMENTS, LLC\",J1100\nEngineer,DOC / Nist,Y4000\nOCCUPATIONAL THERAPIST,PRN ERGONOMICS,Y4000\nCEO/TRAUMA/ADDICTIONS  THERAPIST,THE REFUGE - A HEALING PLACE,Y4000\nExecutive,Fred E. Allen & Associates,Y4000\nPRESIDENT,HONDA CARS OF BELLEVUE,T2300\nAttorney,The Northern Trust Company,F1100\nK C SCREEN PRINTING COMPANY,,C1300\nCEO,LANDMARK REAL ESTATE SOLN.,F4000\ngeneral partner,Southeastern Real Estate,F4000\nAttroney,Disability Rights Network of PA,Y4000\nKILLPATRICK STOCKTON,,K1000\nRYAN CO,,J4000\nTechnical Trainer,EMC,J1200\nADMINISTRATOR,TRISTAR MEDICAL LAB,Y4000\nPRESIDENT/OWNER/GALLERY OWNER,,G4600\nSR. ADVISOR,PEW CHARITABLE TRUST,X4100\nMORELAND MET CO,,J5100\nC.F.O.,A.V.M. L.P.,F2100\nAttorney,Bonnie Wulff PC,J1200\nINSURANCE,NOMAD ADJUSTING,Y4000\nFLEISCHMAN HILLIARD,,K2000\nSmall Business Owner,\"City People's Mercantile\",Y4000\nWESTERN INVESTMENT,,F4100\nATTORNEY,JAMES D. STEWART & ASSOCIATES,K1000\nATTORNEY,HEDEKER & PERRELLI,K1000\nCEO,KCI TECHNOLOGIES INC.,B4400\nPRESIDENT,PERRIGO INC,Y4000\nPRESIDENT,DIVERSIFIED EQUITIES CORPORATION,F2100\nGeneral Contractor,\"SC + A Construction, Inc\",Y4000\nCONSULTA,\"RIVERSIDE TECHNOLOGY, INC.\",J1200\nPhysician,R PG,Y4000\nClockmaker,Myself,Y4000\nDIRECTOR OF BILLING,VNACJ,Y4000\nCHAIRMAN,MORROW EQUIPMENT COMPANY,G5300\nDIR. FINANCIAL SERICES,ART INSTITUTE,H5300\nEXECUTIVE VP,HANCOCK LUMBER,B5000\nPROFESSIONALLY SEEKING,,Y4000\nVice President,JP MorganChase,F1100\nPHYSICIAN,BUSHEDWARD CHRISTOPHERMD,H1100\nMANAGING MEMBER,\"AFC NORTH, LLC\",Y4000\nBUSINESS ADVISOR,\"MSA ASSOCIATES, LLC\",Y4000\nLEVY FARMS INC,,A1000\nCOE INC,,Y4000\nGENERAL MANAGE,\"RAVITRON EQUIP., LLC\",Y4000\nIMPERIAL EXTERMINATING CO,,Y4000\nTHE GLC GROUP LLC,,Y4000\nVICE PRESIDENT,VLS RECOVERY SERVICES,Y4000\nINVESTMENT MANAGER,CEDAR CAPITAL MGMT,F2100\nChief of Staff,Ohio Capital Corp for Housi,Y4000\nFINANCE,JA FORLINES GLOBAL,Y4000\nATTORNEY,ERVIN COHEN & JESSUP LLP,Y4000\nEXECUTIVE,JENNAMAR CORP,Y4000\nLOBBYIST,ATHENA HEALTH CARE,H0000\nLILIKIK,,J5100\nDONOGHUE BARRETT &,,Y4000\nENGINEER,\"GOOGLE, INC.\",J1200\nContractor,Cedar Valley Corporation,Y4000\nENGINEER,CLOPAY BUILDING PRODUCTS COMPANY,Y4000\nCOVINANT TRANSPORT,,T0000\nGILES ENTERPRISES INC,,K1000\nREAL ESTATE INVESTMENT,HANLEY & CO.,Y4000\nSENIOR MANAGER,\"O9 SOLUTIONS, INC.\",Y4000\nRETAIL,GARDEN RIDGE,G4000\nSurgeon,Windham Surgical Group,H1130\nMANAGER,MEAC,Y4000\nEXECUTIVE DIRECTOR,YESHIVA HAR TORAH,J5100\nSTOCHER BRENNER LLP,,K1000\nCHAIRMAN,DANNENBAUM ENGINEERING COMPANY/CHAI,B4000\nManager,Target Corp.,G4300\nMEDIA CENTER - GH,TOWN OF GREENWICH,X3000\nBONAMI,FAULTLESS,M1300\nPEARSON & ASSOCIATES,,Y4000\nATTY,ALSON & BIRD,Y4000\nREALTOR,NEIL PARROTT REAL ESTATE,F4000\nFOUNDER,WOODMAN ASSOCIATED INC,Y4000\nMARVIN TENENBAUM MD,,H1100\nHousewife,Home,E1620\nOwner,Quizno`s Classic Subs.,G2900\nPARTNER,MCWILLIAMS & ASSOCIATES,Y4000\nATTORNEY,IOMEGA CORP.,C5110\nFarmer,Leary Ranch,Y4000\nArchitect,FCFH Architects LTD.,B4200\nProfessor,UT McCombs School of Business,F5100\nREAL E,PRUDENTIAL FOX & ROACH DEVON,F4200\nOWNER,TRAVEL DESIGN,Y4000\nFOREIGN POLICY ADVIS,DEPARTMENT OF STATE,X3000\nMATCOMZ,,Y4000\nTeacher,Covina Valley Unified School District,X3500\nRetail,Self,J6100\nOPERATION ANALYSIS,INDEPENDENCE BLUE CROSS,F3200\nExec vice president,Motorola,C4600\nPRESIDENT & CEO,AIRAMID,Y4000\nSOUTHERN EYE CENTER P A II,,Y4000\nCONTRACTOR,MERIT ELECTRIC,B3200\nSAN DIEGO NURSING HOME,,H2200\nPRESIDENT,COMPUTECH,C5100\nHomemaker,Not Employed,E1500\nTIMES EQUITIES,,X0000\nTEACHER,BAIS YAAKOV SCHOOL,Y4000\nCOMLAND GROUP,,Y4000\nAttorney,Nutter McClennnen & fish,Y4000\nSMALL BUSINESS OWNER,POKRAJAC CORP,Y4000\nHOMEMAKER,N/A/HOMEMAKER,C2000\nSTONE & YOUNGBERG,,F2300\nDriver,Ferguson Enterprise Inc,Y4000\nAccountant,IRPC Inc,Y4000\nCONSULTANT,TRW,D3000\nNEUBAUER REAL ESTATE INC,,F4000\n(Information Request,T3,Y4000\nSurgeon,NC Surgical Associates,H1130\nU S GOVERNMENT,,F4500\npropagandist,\"Oxford Communications, LLC\",G5260\nEXECUTIVE DIRECTOR,RIVERSIDE CO. MEDICAL,Y4000\nExecutive Director,NATIONAL HOME EQUITY MORTGAGE ASSOC.,F4600\nPublic Policy Group,Polsjnelli Shugart,K2000\nMFR THERAPIST/ DENTAL HYGIENIST,NOT EMPLOYED,Y1000\nSECRETARY,EDWARDS FUNERAL HOME,G5400\nSubrogation Rep,Allied Insurance,J1200\nSOFTWARE ENGINEER,KRONOS,Y4000\nCERTIFIED FINANCIAL PLANNER,CAVILL & CO,Y4000\nMEDICAL EDUCATION AND SCIENCE,AMA,H1100\nMO,SUSQUEHANNA MORTGAGE CORPORATION,F4600\nCONSTRUC,WASHINGTON CLOSURE HANFORD,E1320\nHEMPHILL BROTHERS COACH COMPANY,CEO & PRESIDENT,G0000\nDisabled,NA,Y2000\nDEFFENBAUGH INDUSTRIES INC,,E3000\nCHIEF,N.H. NOYES MEMORIAL HOSPITAL,H2100\nPART OWNER,DAN LEWIS FARMS,A1000\nFARMER,LAGRANDE FARMS,A1000\nSACK & ASSOCIATES PC,,K2000\nManagement,McKee Foods Corp,G2100\nMEDICA,NORTHWEST PRIMARY CARE GROUP,Y4000\nINSURANCE EXECUTIVE,AGENT SUPPORT GROUP,Y4000\nENT Doctor,Allina,Y4000\nVice President,Modern Mass Media Inc,Y4000\nGLACIER NP,,Y4000\nREQUESTED,ALTRIA CORPORATE SERVICES,J7400\nCALIFORNIA MAGAZINE,,C1100\nEXECUTIVE VP EAST REGION,INTERNATIONAL PAPER CO,A5200\nCEO,Eagle Equity,J5100\nCEO,Anichini,Y4000\nAttorney,\"Barry, Corrado, Grassi & Gibson, PC\",Y4000\nEducator,Coldspring-Oakhurst CISD,Y4000\nFORMER CARRIER PILOT,NONE,Y4000\nCOHEN SHAPIRO POLISHER SHIEKMA,,K1000\nSocial Worker,JFS,J5100\nOwner,Heitz Wine Cellars,G2820\nPRESIDENT,NELSON BROTHERS INC.,E1240\nEXECUTIVE,CROWLEY CHEMICAL,M1000\nDIRECTOR REV,XO COMMUNICATIONS INC.,C4100\nConsultant,The NEXUS Group,Y4000\nROSS & YERGER,,F3100\nCOLLEGE INSTRUCTOR,LEWIS UNIVERSITY,H5100\nController,Travelers of NJ,Z9500\nCFO,FREMARK GROUP,Y4000\n\"Vice President, Human Resources\",Brandywine Realty Trust,F4100\nDIRECTOR OF DEVELOPMENT,SPURWINK,Y4000\nFINANCE EXECUTIVE,BLUE CHIS VENTURE COMPANY,F2500\nSALES INSURANCE,SELF-EMPLOYED,F3000\nINVEST BANKING CORP,,F2300\nMULCAHY INC,,Y4000\nPRESIDENT,GROUP SHOTS UNLIMITED INC.,Y4000\nEFW INC,,Y4000\nBOOKSELLER,POMEGRANATE BOOKS,Y4000\nHOST,MSNBC,C2200\nCEO,CONWAY CORPORATION,Z9500\nCORD MOVING & STORAGE,,T3100\nPRESI,DREHER HOLLOWAY MERCEDES BENZ,T2300\nConsultant,\"Enterprise Solutions, Inc\",Y4000\nPROFESSIONAL SERVICES CORPORATION,,Y4000\nATTO,\"DICKINSON, WRIGHT, MOON, VAN D\",K1000\nVICE PRESIDENT,THAMES SHIPYARD,Y4000\nWESTERN & SOUTHERN LIFE INS CO,,F3300\nVICE PRESID,PHILADELPHIA UNIVERSITY,H5100\nADMIN OF DIVI,CHICKASAW ENTERPRISES,G6550\nPRESIDENT,\"ACE MEDICAL SUPPLIES, INC\",Y4000\nRESTAURANT OWNER,NORTHWEST RESTAURANTS,G2900\nVICE PRESIDENT,OZARKS COCA-COLA & DR. PEPPER,G2700\nCOMMERCIAL ANNOUNCER,,C2300\nPRESIDENT,G E CONSTRUCTION COMPANY,B1500\nDGRADOVILLE@NTHURSTON.K12.WA.US,,Y4000\nCarman,Amtrak,T5100\npresident,Andover Strategies,Y4000\nBusiness Owner,LG Everist Company,B5100\nEXECUTIVE,HALLAND COMPANIES,Y4000\nDEERE & CO./N/A,,A4200\nOWNER,KEITHLY WILLIAMS SEEDS,A4000\nRISK MANAGER,SPECIALTY TRAVS. INS. CO.,Y4000\nExecutive,Specialty Crop Associates,Y4000\nOWNER,LANE & ASSOCIATES,Y4000\nGENERAL,R.E. CRAWFORD CONSTRUCTION,B1500\nMARTINGALE ASSET MANAGEMENT,,Y4000\nCorrectional Offc,Wa State Dept Of Cor,Y4000\nREAL ESTATE BROKER,BENOIT MIZNER SIMON & CO.,Y4000\nCPA,NOVORADAC & COMPANY,Y4000\nMARKETWATCH,,C5140\nProfessor,Cal State Los Angelo,H5100\nCASCADE EMPIRE,,B5200\nPartnership,Proctor Farms,A1000\nParalegal,Pica & Olson,K1000\nPHYSICIAN,MADISON MEDICAL GROUP,H0000\nOWNER,CMS WILLOWBROOK,Y4000\nE.v.p,Chemical Bank,F1100\nVP Human Resources &,BNSF,T5100\nVANGUARD SECURITY,,G5290\nLOBBYIST,CAPITOL STRATEGIES GROUP,G5260\nRETIRED,SELF-RETIRED,J1100\nJOHNSON MADIGAN,,K2000\nMCWILLIAMS COSGROVE,,G5200\n\"BOROFSKY, AMODEO-VICKERY & BANDAZIA\",,Y4000\nANESTHESIOLOGIS,U HOSP CASE MED CTR,H1130\nFURNITURE SALES,,J7300\nEXECUTIVE,ALL AMERICAN MEATS,Y4000\nwholesaler,Central Liquor Company,G2840\nFOUNDER & CHIEF EXECUTIVE OFFICER,GETWELLNETWORK,Y4000\nDIRECTOR,PURPLE CRAYONS INTERACTIVE,Y4000\nPARTNER,TPG CAPITAL,F2600\nTRADER,IMPERIAL CAPITAL LLC,F2100\nDATA ASSISTANT,TRUPANION,Y4000\nSENIOR PROJE,STRATEGIC RESEARCH INC,Y4000\nBLACK BOX INC,,Y4000\nESSEX CADINAL CORP,,Y4000\nPRINCI,DAVIDSON CAPITAL CORPORATION,Y4000\nExecutive,Three Circles Healthcare,H0000\nPIERCE CARR & ALFORD PC,,Y4000\nSALES,TRIM-RITE,A2300\nEUGENE F BURRIL LBR CO,,A5000\nJ M JOHNSTON & ASSOCIATES,,Y4000\nALPHA BUSINESS LOANS INC,,Y4000\nTHELEN RELD & PRIEST,,K1000\nPHILLIPS SERVICES INDUSTRIES INC,,Y4000\nCommunications Direc,Senator Paul Sarbanes,Y4000\nP,MANSEFELDT INVESTMENT CORPORATION,F7000\nATTORNEY,SELF - KIGHTLINGER & GRAY,K1000\nTEACHER,UNIVERSITY OF NEBRASKA,H5100\nSales VP,IGT,Y4000\nHIBBARD BROWN,,F2100\nOperations Manager,\"Fedway Associates, Inc.\",G2850\nInvestigator,\"Usda RMA (US Gov't)\",X3000\nVISCO INS & FINANCIAL SER,,F3100\nSCHATZ DISTRIBUTING CO,,G2850\nARMY RET,,X1200\nACCOUNTANT,\"MORTON CPA'S, P.C.\",Z9500\nCEO,THE WALTERS GROUP,F2100\nProfessor,Lone Star College System,J7400\nJEFFERSON SMURFIT CORP,,A5000\nANESTHESIOLOGIST,FLORIDA HOSPITAL HEARTLAND MEDICAL/,H1130\nPhysician,Radiation Therapy Assoc.,H3000\nUNIVERSITY OF WISCONSIN MADISON,,H5100\nEMERGENCY PHYSICIAN,\"BONNIE L KAPLAN, MD\",H1100\nESCROW OFFICE,TRI-CITY ESCROWS INC.,Y4000\nAccount Executive,CDS,Y4000\nENGIN,ERDMAN ANTHONY ASSOCIATES INC,B4000\nSoftware Entrepreneur,Robert Romney,Y4000\nAttorney,\"Jon D Fox Law Offices, LLC\",K1000\ncomputer programmer,Columbia University,J1200\nReal Estate,Hanson Inc.,F4000\nNATIONAL FELT CO,,M8000\nCOMMERCIAL REAL E,NAI HUFF PARTNERS,Y4000\nPHYSICIAN,PMA OF NVA,Z9500\nACCOUNTING MANAGER,AMGEN,H4300\npublic affairs,West Penn Allegheny Health Sys,H2100\nINVESTMEN,GBS FINANCIAL CORPORATION,F0000\nJON LANCASTER INC,,T2310\n\"SVP, STRATEGY & CDMA\",VISA INC.,F1400\nVP,J.P. MORGAN,F1100\nChief Executive Officer,University of Missouri Health Care,H2100\nRetried,Retired,X1200\nCHIEF FINAN,AMERICAN PROCESSING CO.,Y4000\nart Gallery Director,d Berman Gallery,J1200\nSECRETARY TREASURER,SELF-EMPLOYED,G0000\nCEO,PARO SERVICES CO.,J5100\nVice President,Ohio Savings Bank,F1200\nConsultant,Fred Bourque,Y4000\nAttorney,Udine & Udine,K1000\nMARKETING,\"PRIVATE ADVISORS, LLC\",Y4000\n\"Director, Federal Bu\",Cerner Corporation,Z9500\nPRESIDE,DEFENSE STRATEGIC ADVANTAGE,K2000\nHR Services Consulta,Towers Perrin,G5270\nAttorney,\"Marcari, Russotto & Spence PC\",Y4000\nHOSPITAL ADMINISTRATOR,MISSION REGIONAL MEDICAL CENTER,H2100\nSENIOR VICE PRESIDENT,CISCO,C5110\nDIRECT,BERKELEY WATER & SEWER COMM.,Y4000\nENGINEER,JUDLAU CONTRACTING INC.,Y4000\nSULLIVAN MOUNTJOY STEINBECK MI,,K1000\nEXECUTIVE,JMB REALTY CORPORATION,F4200\nCOMMERCIAL REAL ESTATE,NEWMARK GRUBB KNIGHT FLANK,F4000\nMANAGER,TRIPLE CROWN,Y4000\nStockbroker,Koonce Securities,F2100\nCHIEF E,PATTERSON PLANNING SERVICES,Y4000\nDOCTOR,BELLEVUE HOSPITAL,H2100\nMEDIA PRODUCER,FAMILY COMMUNICATIONS INC./MEDIA PR,Y4000\nUNITED BANKS,,F1100\nPAWNBROKER,\"CINDY'S PAWN\",G4600\nDH BLAIR INVESTMENT CO,,F2100\nInformation Requeste,DC Preps,Y4000\nJOVIAN HOLDINGS,,F2600\nEXECUTIVE,GIANTLOOP,Y4000\nEconamist,RGE,F4000\nATTORNEY,SOUTHERN PIEDMONT,K1000\nS D SUNNYLAND ENT CO,,G3500\nT WINDUST MACHINE INC,,Y4000\nCIVCULASE LLC,,Y4000\nPatent Attorney,Finnegan Henderson,K1000\nBUSINES EXECUTIVE,MARSH & MCLENNAN COMPANIES/BUSINES,F3100\nSATURN OF CLARKSVILLE,,T2300\ngovt relations,Quinn Gillespie & Associates,K2000\nWTOG-TV INC,,C2100\nBERGNER BOCKORNY CLO,,K2000\nChocolatier,Mont Blanc Gourmet,Y4000\nValet,Signature Parking,F4500\nAUTO DEALER,CARIBOU FORD MERCURY,T2300\nINTERNET M,PIPKIN & ASSOCIATES INC.,Y4000\nPRIVATE EQUITY,SUNSET CAPITAL ASSETS,Y4000\nOWNER,ALL SEASON BUILDERS,B1500\nCOLONEL CDR USMILGP GUATEMA,US ARMY,X5000\nBUSINESS OWNE,RALEIGH ROAD BEST BET,G0000\nhomemaker,none,M8000\n\"Director, Quality Assurance\",\"Fiserv, Users Inc\",F1000\nREAL ESTATE,H.G. FENTON COMPANY,F4000\nVice President,ASFT,Y4000\nCOASTAL POWER PRODUCTION CO,,E1140\ntreasurer,Artek Group,Y4000\nACTING COACH,,H2100\nExecutive,Mellon Financial Corp,F1100\nDiagnostic Radiologist,Deaconess Billings Clinic,H1130\nEXECUTIVE VP-CO,NORTHEAST UTILITIES,E1620\nOWNER,QUIRK AUTO COMPANIES,T2300\nMARKETING DIRECTOR,GOLD FUND,Y4000\nENGINEER,MUELLER ENERGETICS,Y4000\nattorney,\"Orlando & Kopelman, P.C.\",K1100\nPRESIDENT,\"CERTEK, INC.\",Y4000\nSR. DIR.  FIN,BRIGHT HOUSE NETWORKS,C2200\nPHYSICIAN,SUMMIT ELDERCARE,Y4000\nKOR-KO LTD./OWNER/ ENGINEER,,Y4000\nPartner,V S Realty Corp,F4200\nNURSERY,DEVELOPMENT,G5000\nTEACHER,ELPS,Y4000\nDUDERSTEIN GROUP INC,,K2000\nOWNER,MC KEE TIRE COMPANY,M1500\nOwner,\"Jet Service Enterprises, Inc.\",J8000\nAssistant P,The University Of Tampa,H5100\nGENERAL MGR. CORP. COMM.,PP&L,K1000\nKF ASSOCIATES,,Y4000\nOWNER,SEALY COMPANY,F4000\n\"EXECUTIVE VP, CUSTOMER MANAGEMENT\",\"MEDSOLUTIONS/EXECUTIVE VP, CUSTOMER\",H3000\nPRESIDENT,KAPPES CASSIDAY & ASSOC,Y4000\nAVENUES OF TRAVEL,,T9400\nSOCIAL WORK,SELF-EMPLOYED,G0000\nResearcher,University of Maryland,H5100\nOWNER,COMFORT CONSTRUCTION,B1500\nPROFESSOR,HOWARD MEDICAL SCHOOL,H5150\nWATERMAN REALTY,,Z5100\nExecutive,M.F. Global Inc.,F2100\nNEURO,NEUROLOGICAL INST OF SAVANNAH,H1130\nChief of Staff,BIOTECHNOLOGY INDUSTRY ORGANIZATION,H4500\nGUARDIAN INDUSTRIES,,J1100\nWILCOX INDUSTRIES CORP,,Y4000\nOWNER,PREMIER FINANCIAL SERVICES,Y4000\nENGINEER,S.T. JOHNSON CO.,Y4000\nEXECUTIVE,BREED & HARVEL,Y4000\nMOSKAL DEVEL CORP,,B2000\nCOLLINS EINHORN FARRELL ET AL,,K1000\nOIL & GAS LANDMA,AVALON EXPLORATION,E1150\nSUNFAIR CHEVROLET,,T2300\nFIRM ADM,CATANESE GROUP,F5100\nThe Klein Company,,F4000\nJOE D HALL CONSTRUCTION CO,,B1500\nWILLIAM A WILLIAMS,,K1000\nENCINITAS UNION SCHOOL DIST,,X3500\nWILSONARI INTERNATIONAL,,M1500\nAMERICAN BUSINESS INTERIORS,,Y4000\nPresident,\"Perkins & Lund, P LLC\",G1200\nDIRECTOR OF RESEARCH,ARTIFEX PRESS,Y4000\nCREATIVE DIRECTOR,VIACOM OUTDOOR,C2000\nANESTHESIOLOGIST,PENN STATE HERSHEY MEDICAL CENTER DEPA,H1130\nVP-IT,W. R. BERKLEY CORPORATION,F3400\nV/P Medical Affairs,Sentara Healthcare,H2100\nFARMER,\"CHAMISAL CREEK RANCH, LLC\",Y4000\nEAST TENN ORTHOPAEDIC CENTER,,H1130\nOMNIBANK N.A./PRESIDENT/COO,,F1100\nGELOGICAL CONSULTANT,,Y4000\nPRESIDENT,EQUIPMENT & CONTROLS AFRICA/PRESIDE,M2300\nVALLEY MORNING STAR,,Y4000\nSALES SERVICE,DAKOTA PLAINS CO-OP,Y4000\nPRESIDENT / CEO,CONSUMERS PIPE & SUPPLY,Y4000\nCO-OWNER,EBER CONNECTICUT LLC,Y4000\nDAVIS & MAJOR REALTY,,F4200\nMD,SELF-EMPLOYED,J7400\n\"Managing Director, Government Affairs\",Securities Industry and Fina,F2100\nVEG PRO MANAGEMENT,,Y4000\nImmigrant Legal Reso,Attorney,J1200\nFAMCO INVESTMENTS,,F7000\nPresident and CEO,West Fax Inc.,Y4000\nASSISTANT,VALLEJO INVESTMENTS,F7000\nInformation requeste,Information requested,G4000\nREAL ESTATE,NATIONSFIRST FINANCIAL,F0000\n\"Asst State's Attorne\",Cook County,X3000\nCEO,Exciting Games,Y4000\nPRESIDENT,TEX MEX COLD STORAGE,Y4000\nPRESIDENT,RYLAND HOMES,B2000\nFOOD SERVICE,COBB COUNTY BOARD OF ED.,X3500\nUrologist,Urology Assoc,H1130\nEWING INDUSTRIES,,Y4000\nC.E.O.,JEMARKEL HEALTH TECH LLC,Y4000\nMANAGING DIRECTOR,\"BUFFALO WILD WINGS, INC.\",G2900\nATTORNEY,ADAMS & REESE/LANGE SIMPSON LLC,K1000\nCredentialing Manager,\"Financial Services, Inc\",H3200\nInternational Senior Executive-Hum,FNET400,Y4000\nSELF EMPLOYED,JUAN DOMINGUEZ,F4200\nINVESTMENT MANAGER,KOHLBERG KRAVIS ROBERTS & CO.,F2600\nEXECUTIVE DIRE,SC MEDICAL EQUIPMENT,Y4000\nSUTHERLAND BLDG MTL INC,,B5200\nUST RUST & SILVER,,Y4000\nSTAY AT HOME MOM,NONE,H5100\nCENTER FOR NEW AMERICAN MEDIA,,Y4000\nPRESIDEN,LIVING WATER INTERNATIONAL,E5000\nA F GALLAGHER,,Y4000\nInsuance Sales,Mullin TBG,F3300\nAttorney,\"Manko, Gold & Katcher, LLP\",JE300\nPolitical Science Le,California State University,H5100\nInformation Requested,RGReedco,Y4000\nNAN DUSKIN INC,,Y4000\nCEO,McJunkin Corp,Y4000\nATTORNEY,BAKER HOSTETLER,J2200\nMANAGING DIREC,ACQUISITION PARTNERS,Y4000\nShareholder,None,F2100\nAMERICAN ANGUS HALL OF FAME,,Y4000\nManagement,\"Easlan Capital, Inc.\",F4100\nATTORNEY,\"LIQUIDITY SERVICES, INC./ATTORNEY\",F2100\nRetired,Altria Group; Inc.,A1300\nVEKICH ARKEMA,,J1100\nOwner,\"Provider Insurance Group, Inc.\",F3100\nAttorney,Landman & Beatty,K1000\nVICE-PRESIDENT,PLATINUM BANK,F1100\nPLUMBER,ARLINGTON PLUMBING,B3400\nPHYSICIAN,\"SHRENSBURG OB-GYN, PC\",Y4000\nMANAGING DIRECTOR,BLACK ROCK,Z9500\nTOXICOLOGIST,U.S. FEDERAL GOVT,X3000\nPharmacist,Bryant Pharmacy & Supply,G4900\nExecutive,Edelman Public Relations,G5210\nUNDERGROUND UTILITIES INC,,B1000\nSCHAAKE PACKING COMPANY,,Y4000\nDairyman,self,G6550\nPresident,Precision Designs,Y4000\nPRESIDENT,OPTICAL WORKS CORP.,Y4000\nVICE PRESIDENT,VALHI INC.,J1100\nPHYSICIAN,MIDLAND MEMORIAL HOSPITAL,H1100\nUrologist,Collom & Carney Clinic,H1130\nPRESIDENT,\"STREN, INC./SWAGELOK COMPANY\",F2100\nCEO,IMSCORP/CEO,Y4000\nBARRY BLAU & PARTNERS INC,,G5220\nGovernment Relations,\"Unilever United States, Inc.\",M3000\nBusiness Owner- Real Estate,Tierra Right of Way Services,F4000\nFIRST SERVICE INSURANCE,,F3100\nZONING CONSULTANT,SELF,Y4000\nOPEN KITCHEN INC CATERERS,,Y4000\nENDEAVOUR INTERNATIONAL CORPORATION,CHAIRMAN AND CEO,Y4000\nReal Estate Broker,Hometown Realty,F4200\nPRESIDE,WAITES AVIATION CORPORATION,Y4000\nLPK CORPORATION,,Y4000\nBusiness,Bergassi Group,F3100\nBUSINESS OWNER,SOUSA READY MIX,B5100\nDIR. OF,FORT MIFFIN ON THE DELAWARE,Y4000\nDirector,City/County of Denver Dept. of Exc,X3000\nSALES MANAGEMENT,VANGUARD INTERNATIONAL,Y4000\nSELF,SELF,G2000\nCourt Reporter,Self-Employed,G5200\nAUTHOR CONSULTANT,SELF,J1200\nHOMEMAKER,HOMEMAKER,E1230\nATTORNEY,CASHA CASHA & SCHEPIS,Y4000\n\"SUTIN, THAYER, BROWN\",,K1000\nPresident,\"CLAYTON MANAGEMENT CO., L.L.L.\",Y4000\nNetwork Strategy,IBM,C5100\nCEO,ABEL MANUFACTURING,Y4000\nPublic Administrator,Huntington Community Development Agenc,Y4000\nFinancial Specialist,Dept of Defense,X5000\nDIRECTOR,FIRST STATE BANK OF HARVEY,F1100\nAttorney,Simpson Thacker & Bartlett,K1000\nVice Chairman & CAO,MacAndrews&Forbes Holdings Inc,M3300\nCONSULTANT,MERITAS PARTNERS,Y4000\nCEO,Northeast Regional Medical Center,H2100\nPsychologist,\"University of California, Los Angeles\",H5100\nAttorney,\"Riccolo & Semelroth, PC\",K1000\nMEGA FLUIDLINE PRODUCTS,,Y4000\nreal estate,Carter & Associates,Y4000\nPRESIDENT,PARKS LINCOLN OF LONGWOOD,T2300\nPartner,\"Steptoe & Johnson, LLP\",K2000\nEXECUTIVE,ENTERPRISE HOLDINGS,T2500\nMANAGING DIRECTOR,DUFF ACKERMAN AND GOODRICH INVESTM,Y4000\nINSURANCE,\"AHT, LLC\",J1100\nPRESIDENT,CEDPA,Y4000\nEXECUTIVE,COCA COLA BOTTLING,Y4000\nSenior advisor,CS,Y4000\nOwner/Operator,Standard Discount Co.,F1400\nOwner,Hawk Agency,Y4000\nTRANSOCEANIC CABLE SHIP CO./MASTER/,,LT500\nKENT & KENT,PARTNER,Y3000\n\"KENNY'S CANDY\",,Y4000\nVP - General Manager,Rohm and Haas,M1600\nLONG BEACH ACCEPTANCE CORP,,J1100\nOWNER,ADEMA GROUP FINANCIAL RES.,Y4000\nAUDETTES,,Y4000\nReal Estate Broker,\"GENESIS INVESTMENT PROPERTIES, INC.\",F4000\nLAWYER,MUNSCH HARDT,K1000\nPresident,Lincoln Property Company,F4100\nLawyer,\"Wilmer, Cutler, Pickering, Hale and Do\",K1000\nCHIEF STRATEGY OFFICER,KISS PRODUCTS INC.,G5100\n,\"LAND TITLE & CLOSING SERVICES, LLC\",F4300\nPEABODY COALSALES,,E1210\nINVESTMENT ADVISER,GAMMA CAPITAL,F2100\nSOCIAL WORK,,H6000\nWAVY-TV,,C2100\nInsurance Broker,\"GEM Insurance Agencies, LP\",F3100\nBUILDING MATE,HB MELLOTT ESTATE INC,B5100\nBILL LEE BAMBOO CHOPSTICKS,,Y4000\nCROMAN CORP,,A5000\nQUANTRUM,,Y4000\nGrant Administrator (Education),Talc New Vision,Y4000\nM.D.,PATIENT FIRST,H1130\nInternational Consul,Chamorics,Y4000\nCEO/OWNER,VECELLIO MANAGEMENT SERVICES/CEO/OW,B1000\nPart-Time Teacher,Ventura College,J1200\nINVESTMENT M,\"CEDAR HILL ASSOC., LLC\",Y4000\nInvestor,Golden Sun Capital Management; LLC,F2100\nTHE MCDEVITT COMPANIES,,Y4000\nOwner,Dollar-Mart,G4600\nAttorney,Center for Science in the Public Inter,Y4000\nD. I. A. L.,,M1300\nATTORNEY,MORRIS & MC VEIGH,K1000\nPHOENIXVILLE EYE CARE SPECIALISTS,,H1120\nMgmt,\"Brownell's\",Y4000\nCHIEF EXECUTIVE OFFICE,VAIL RESORTS,T9300\nManager,Gregg Industries,Y4000\nATTORNEY,CHANDRA LAW FIRM,K1000\nDIRECTOR,DEV. SVCS. CITY OF PALMDALE,X3000\nCONSU,FERLISE AND ASSOCIATES L.L.C.,Y4000\nInvestment Banking & Academia,\"Summa Guaranty & Trust Company, PLLC\",F1100\nEngineer,US Gov,X3000\nSYSTEMS ENGINEER,JUNIPER NETWORKS,C5100\nPRESIDENT,\"CHAMBERS BRICK SALES, INC.\",Y4000\nTHE GALLAGHER GROUP INC,,F2500\nVice President of Ho,New York New York Hotel Casino,G6500\nowner,New Leaf Markets,G2400\nOwner,WCAX,C2100\nMedical Doctor,\"Midwest Ear, Nose & Throat\",H1100\nPAULSEN BLDG & SUPPLY,,B5000\nMORTGAGE BROKER,\"JAMESTOWN BUSINESS VENTURES, INC.\",F4600\nAttorney,\"Law offices of Peter A, Lewis, PL\",K1000\nCOMMUNITY MEDICAL CENTER,\"DIRECTOR, MEDICAL EDUCATION\",Y4000\nJudge,US Dept of Justice,X3200\nSHIP BROKER,\"MALLORY, JONES & LYNCUT\",Y4000\nOWNER,\"KIMBER MANUFACTURING, INC.\",M5000\nCONOVER & ASSOCIATES,,Y4000\nCEO,NATIONAL MAGNETICS GROUP INC.,Y4000\nVP ACP,USBC,Y4000\nCTN Owners Representative II,Dow Corning Corporation,M1500\nSoftware Developer,Symantec Software,C5140\nPresident,McCabe Corporation,B4400\nSIDEWINDOW PUMP INC,,M2300\nAIRLINE PILOT,DELTA,T1100\nTHE DALLAS COMMUNICATIONS COMPLEX,,F4100\nPRESIDENT,ADELSTEIN & ASSOCIATES,G5260\nGeneral Editor,N.D.U.,Y4000\nExecutive Vice President,\"Eustis Insurance, Inc\",F3100\nTHE AEGIS TECHNOLOGIES GROUP,,C5120\nBanker,Bankfirst,F1000\nDpm,William F Dunleavy Dpm,Y4000\n\"DIRECTOR, HUMAN\",HUDSON HEALTH PLAN,Y4000\nJOURNALIST,SELF-EMPLOYED,E1000\nFMC CORPORATION,,B3600\nAttorney,Ward and Smith,K1000\n\"MARKEL, MCDONOUGH\",,Y4000\nGOVERNMENT ADMINISTRATION,DEPARTMENT OF STATE,X3000\nC.E.O.,BROWN & BIGELOW INC./C.E.O.,Y4000\nHomemaker,N/A,C4100\nTeachers,F.C.P.S.,Y4000\nINNERLINK INC,,Y4000\nMORTGAGE BANKER,\"HARBORSIDE FINANCIAL NETWORK,INC.\",Y4000\nPRESIDENT/OWNER,P.J. GRECO SONS INC.,M2100\nAttorney,Espiritu & Associates,J5100\n\"Author, Independent Scholar\",Self employed,C1100\nIT Contractor,LW Goulart IT Consulting,Y4000\nINSURANCE MARKETER,SELF-EMPLOYED,Y4000\nCEO,AMALGAMATED INC,J1200\nPRINCI,BUNNY GROSSINGER ENTERPRISES,Y4000\nArts in Transit,,Y4000\nMANAGER,A.B.C.O. MAINTENANCE INC.,Y4000\nMEEKER FERTILIZER,,A4100\nGREAT RIVERS REINSURANCE MGM,,F3100\nSELF EMPLOYED,N/A,C5140\nAccountant,New Horizons Computer Learning Center,C5000\nArchitect,Coup Smith Diaz Architects,B4200\nPolice Supervisor,State Of California,X3000\nCOLMADO ANTURIAS,,Y4000\nCHAIRMAN OF THE BOARD,USPI,H3000\nIMPERIAL INSPECTION,,Y4000\nOWNER,GRIGGS DEPT STORE,G4300\nTELEDESIC,,J1200\nNOT EMPLOYED,NOT EMPLOYED,A1300\nJOTER MGMT SRVCS INC,,A6000\nADVERTISING,MID CONTINENT INSTRUMENTS/ADVERTISI,G5210\nExecutive,\"Clark Dietz, Inc.\",B4400\nSTUDENT,DE PAUL UNIVERSITY,H5100\nOWNER,MAXWELL RENTALS,G5300\nFARMING,SELF EMPLOYED,J1100\nTONI CASEY & ASSOCIATES,,Y4000\nDENTIST,\"JOEL L. STROM, DDS\",H1400\nPartner,\"IGI, Ltd\",Y4000\nVICE PRESIDENT,HUCKABY & ASSOC.,Y4000\nCAUBLE ENTERPRISES,,Y4000\nLawyer,Gallop Johnson & New,K1000\nHOUSEWIFE,,E1160\nsenior manager,Learningworks,Y4000\nADVENTURES O,WALLACE & WALLACE INC.,Y4000\nPublisher,JWS Development Inc (Self Employed),Y4000\nPsychiatrist,\"Candace Cotlove,Md, A Professional Cor\",H1100\nEASTERN CEMENT,,B5100\nJEWELER,THE DAVIS COLLECTION,Y4000\nCPA,DELOITTE TOUCHE TOHMATSU SERVICES,F5100\nFinance,Self employed,J7400\nVice President,Lightspeed Venture Partners,F2500\nOBRIEN & CALIO,,K2100\nEDUCATION SPECIALIST,WORLD BANK,Z9500\nREALTECH DEVELOPMENT HOUSING AFF,,J5100\n\"TENASKA, INC\",,E1630\nSASCO INSURANCE SVCS INC,,F3100\nCEO,Managed Obejcts,Y4000\nCARLSON PONTIAC CADILLAC,,T2300\nOwner,Leff & Associates,Y4000\nLEGAL ASSISTANT,BHP BILLITON,E1000\nPresident,\"Mcbrand, Inc\",Y4000\nPT,JPT REHAB,H1700\nCONSTRUCTURAL DYNAMICS,,B1500\nInst Asst Title I,Mont Co Public Sch,Y4000\nKING THOMPSON,,F4200\nUNIVERSAL RECORDS,,C2400\nBusiness Owner/Manag,Lawyer Nursery Inc,Z9500\nGENERAL MANAGER,TRAPPERS CREEK INC,Y4000\nInvestor,Kington Management Corp,Y4000\nPATENT ATTORNEY,CAMBRIDGE SOUND,Y4000\nSENNIGER POWERS LEAVITT & ROEDEL P.,,K1000\nMedical Research,Univ of North Carolina,H5100\nTECH SPRAY,,Y4000\nATTORNEY,SHEETS HOLCOMB,K1100\nELECTRICIAN OWNER,INFO REQUESTED,B3200\nPublic Policy Advisor,self,Z9500\nATTORNEY,BROAD & GUSMAN LLP/ATTORNEY,K1000\nJOESPH RAUH REALTORS,,F4200\nUNIVERSITY VICE PRESID,SUNY GENESEO,J7400\nCORP EXECUTIVE,PENSKE TRUCK LEASING,T3100\nNIELSEN ST. LOUIS,,Y4000\nMarketing Manager,Glaxo Smith Kline,H4300\nTSD INC,,J1200\nGERAWAN FARMING,,Y0000\nPHYSICIAN,\"WARREN M. LENT, MD, INC.\",H1100\nPresident,HE Newman Company Inc,Y4000\nVP GOVERNMENT RELATIONS,CIGNA,F3100\nASSOCIATION EXEC/TEACHER/STATE REP,STATE OF GA,X3000\nAttorney,Nygaard Law Firm,K1000\n\"ANDREWS' ASSOCIATES INC\",,X1200\nC.E.O.,S.V.H. GROUP,Y4000\nCOMPOSER/WRITER/SINGER,SELF,J7400\nADMINISTRATOR,NCTA,C2200\nINVESTOR,KENT & KENT INVESTMENTS,F7000\nV.P. CONGRESSI,RAYTHEON CORPORATION,D3000\nCLINICAL,WALTER REED ARMY MED.CENT.,H2100\nVP & GEN,ALLSTATE INSURANCE COMPANY,F3100\nDUNN AGENCY,,Y4000\nBusiness Representative/Financial Secr,IUOE Local  L0318,LB100\nPRIVATE INVESTIGATOR,SELF,X1200\nACCOUNTANT,\"MICHAEL FLANARY & ASSOC., INC.\",Y4000\nSHANK LAUE & HAMILTON PC,,Y4000\nMUSICIAN,RETIRED/MUSICIAN,X1200\nBookkeeper,Lawrence Levin MD INC,H1100\nFARMERS AGENCY,,Y4000\nEducator,Greenville City Scho,Y4000\nRADIO,CLEAR CHANNEL COMM INC WPB FL,C2100\nATTORNEY,BEST BEST AND KRIEGER LAW FIRM,K1000\nEntrepreneur,Marin Software,C5140\nAttorney,\"Rocka, O'Boyle et al\",Y4000\nINSUR,SEDGWICK JAMES OF GEORGIA INC,Y4000\nINFORMATION REQEUSTED,,G0000\nRestauranteur,Thomas Henkelmann-Homestead Inn,T9100\nATTORNEY,LAW OFFICES OF PATRICIA FLYNN,K1000\nMERCHANT BANKER,,F2300\nReg Nurse,The Hand Center,Y4000\n\"COMPOSER, AUDIO ENG.\",\"SELF/COMPOSER, AUDIO ENG.\",B4400\nASPEN MARKET,,Y4000\nPresident,Midwest Hardwood Corp,A5000\nTeacher/Real Estate,Huntington Park High School,Y4000\nPresident,Check Cashing USA Inc.,G5000\nMEDICAL DOCT,ROBERT WIELENGA MD INC,H1100\nVice President,DCI Group LLC,K2000\nPRESIDENT,GOODWIN GROUP,Y4000\nResearch,Seiu Local 615,LG300\nINSURANCE AGENT,TASHMOO INSURANCE AGENCY (SELF-EMPLOYE,F3100\nPRESIDENT,COMISKEY KAUFMAN CONSULTING,Y4000\nPRESIDENT,STARMOUNT LIFE INSURANCE,F3300\nYOUNG CONAWAY STARGATT & TAYLO,,K1000\nPHYSICIAN,PIERRE SKIN CARE INSTITUTE,H1130\n\"FRIERMOOD'S GUIDE SERV\",,T9000\nLLAYDEN REAL ESTATE,,F4000\nSEMICONBAY.COM,,C5140\nPLU POWER INC,,E1600\nOWNER,GEORGES CHECK CASHING,F5500\nINFORMATION REQUESTED PER BEST EFFO,,J1100\nPRESIDEN,T. W. STEINEMANN AND ASSOC,Y4000\nMechanical Engineer,Arup,Y4000\nOWNER,SPRINGCREST DENTAL ASSOC.,H1400\nPHARMACIST,KAISER FOUNDATION HOSPITAL,H2100\nASSO,WISCONSIN MOTOR CARRIERS ASSOC,Y4000\nSYSTEMS ADMINISTRATOR,OIL STATES INTERNATIONAL,E1100\n\"PRO'S RESTAURANT\",,G2900\nLawyer,LOCKWOOD FINANCIAL / BANK OF NEW YORK,F1000\nPresident,Susan Sargent Designs,J1200\nContractor,Birdwell Construction,B1500\nOwner,Albertson Peterson Art Consultants LLC,Y4000\nOperations Support,Exelon,E1600\nCIBC OPPENHEIMER,,J5100\nTOM MURPHY CO,,Y4000\nEXECUTIVE VICE P,SKYLINE PROPERTIES,F4000\nBUSINESS OWNER,PASTER ENTERPRISES,Y4000\nSPECIAL AGENT,DOJ/FBI,X3200\nATTORNEY,MICRON TECHNOLOGY,C5110\nACTUARY,SNA INSURANCE,J1200\nBROKER,UBS Financial,F2100\nTHE EYE ASSOCIATES,,H1120\nCHAIRMAN &,EQUITABLE RESOURCES INC.,E1120\nProject Director,Savannah River Remediation LLC,Y4000\nLADIES APPAREL,SELF,M3100\nDIRECT MARKETING ASSOCIATION,,G2100\nBoard of Regents Candidate,University of Minnesota,H5100\nCROSSROADS THEATRE,,C2900\nAttorney,Wa State Attorney General,K1000\nBUSINESS EX,S.C. JOHNSON & SONS INC,J1100\nFINANCE,J.F. LEHMAN & COMPANY,F2600\nRESEA,AMERICAN ENTERPRISE INSTITUTE,J7400\nJEWELL INDUSTRY,,G5200\nGEORGETOWN ENTERPRISES,,Y4000\nProject Controls,Fluor Corporation,B1000\nMANAGER,ZPC,Y4000\nTeacher,San Mateo Union H S,Y4000\nPRESIDENT,INTREPID MANAGEMENT INC.,Y4000\nCORBOY AND DEMETRIO PC,,K1000\nOWNER,PELGAS INC.,E1190\nTHE WASHINGTON POST,,J7400\nCONAGRA POULTRY/PRESIDENT/CHIEF OPE,,A2300\nPROFESSOR,WEILL MEDICAL COLLEGE,Z9500\nCFO,Intuitive Surgical INC,H0000\nOwner,Alvin Press Inc,C1300\nATTORNEY,BABB & BRADSHAW,K1000\nInvestigator,Evansville Police Dept,X3200\nENGINEER/MANAGER,SELF,Z9500\nMURRAY MURRAY & CORRIGAN,,Y4000\nREAL ESTATE INVESTMENTS,CABOT PROPERTIES,F4000\nSPRINGHOUSE/CONSULTANT/CEO,,Y4000\nATTORNEY,ALTA,Y4000\nINFO REQUESTED,U BLOCK INC.,Y4000\nCOUNTRY FED MEAT CO,,Y4000\nSTATE UNIVERSITY NY,,H5100\nDIRECTOR OF CORPORATE RELATIONS,WILDLIFE CONSERVATION SOCIETY,JE300\nDIRECTOR,UNIVERSITY OF MEMPHIS ART MUSEUM,X4200\n\"WYATT, TARRANT, AND\",,K1000\nAttorney,Self employed - The Klein Firm,Y4000\nAnesthesiologist,Physian Anesthesia Service,H1130\nVICE PRESIDEN,BENENSON REALTY CORP.,F4000\nDIRECTOR O,REXALL CONSUMER PRODUCTS,G4300\nYACOUBIAN TAILORS INC,,M3100\nLawyer,\"State of California, Department of Ins\",X3000\nSUPERVISOR,FORD MOTOR CORPORATION,T2100\nTHE JACKSONVILLE JAGUARS,,G6400\nREAL ESTATE PARTNER,EDENS AND AVANT,F4100\nCOMMERCIAL LANDLORD,SELF-EMPLOYED,Y4000\nWriter/Producer,Fox TV Animation,C2300\nINSTITUTE FOR POLICY STUDIES,,Y4000\nSOCIAL WORKER,ASSN. OF COMMUNITY EMPLOYMENT FOR THE,X4000\nCOMPUTER PROGRAMMER,CALPONT CORP,J7400\nSenior VP - Market R,Main Street America Group,F3100\nOWNER,COLORADO AUTOMOTIVE CONSULTANTS,J1100\nCHRM. OF BOARD,METRO AUTO GROUP,J1100\nMID STATES CONCRETE,,B5100\nROBINS KAPLAN MILLER,,K1000\nOWNER,EL ROSAL,Y4000\nEXECUTIVE,LIBERATION ENTERTAINMENT,Y4000\nREAL ESTATE INVESTME,CAPITAL MANAGEMENT & DEVELOPMENT,Y4000\nBOLLINGER INSURANCE,,F3100\nHILL INTERNATIONAL INC,,Y4000\nARNOLD LUMBER COMPANY INC,,A5000\nENTREPRENEUR,ADVOCATE HOME CARE,Y4000\nCEO,TEXON,Y4000\nFund Manager,Apollo Medical Partners,F2100\nCEO,REGIONS INSURANCE INC.,F3100\nCorporation President,K-B Conployed,Y4000\nArchaeologist,Self,X0000\n\"HOGAN, SMITH, ALSPAUGH ET AL\",,K1000\nSUNSET DEVELOPMENTS,,Y4000\nNJGOP,,Y4000\nAttorney,Graves Dougherty,J1200\nSECURITIES BROKER,SHAY FINANCIAL SERVICES INC.,F2000\nPROFESSOR OF NURSING,RETIRED,J7400\nJEWELER,DAVID P WYATT/JEWELER,Y4000\nWILLIAMSON & WILLIAMSO,,Y4000\nPolitical Consultant,The Barrett Group LLC,G5260\nPresident & CEO,Pinnacle Air Network,Y4000\nCEO,\"RLC ENTERPRISES, INC\",G2900\nSENIOR ENGINEER,\"ULTEIG ENGINEERS, INC.\",B4000\nCommunity Voulteer,The Community,Y1000\nLOMA LINDA UNIV MED CE,,H2100\nATTORNEY,MOORE AND COMPANY,K1000\nORTHOPAEDIC SURGEON,FERRELL-DUNCAN CLINIC,H1130\nLAWYER,\"D'AMATO & LYNCH, L.L.P.\",K1000\nOWNER,PIO RESTAURANT,G2900\nScientist,\"Tiax, LLC\",Y4000\nTax Board Commissioner,State of New Jersey,X3000\nComputer Systems Ana,Hyperion Solutions,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,INFORMATION REQUESTED PER BEST EFFORTS,M3200\nARTS ED,NYC DEPARTMENT OF EDUCATION,X3000\nBuddhist Monk,Information Requested,Y4000\nNORTHWEST RADIOLOGISTS PC,,H1130\nATTORNEY,WILKES AVTIS,Y4000\nBANKER,SAN DIEGO NATIONAL BANK,J1100\nMARIN BUILDERS EXCHANGE,,B1500\nCEO,MISSOURI RIVER,Y4000\nGOVERNMENT AFFAIRS,NOSSMAN LLP,K1000\nCHAIRMAN,WASSERMAN MEDIA GROUP,G6400\nSelf,Farmer,J1200\nAKRON BD OF ED,,X3500\nVP Human Resources,The Coca Cola Company,G2600\nSELF,BEVERLY VOTE,Y4000\nINFORMATION TECHNICIAN,US NAVY,X5000\nLAKE COUNTY SHERIFFS DEPARTMENT,,X3200\nFAIRMOUNT PROF ASSOC,,H1130\nTELECOM ATTORNEY,KLEIN LAW GROUP PLLC,K1000\nGlobal Executive & Talent  Development,GE Technology Infrastructure,M2300\nInformation Requeste,Urban Justice Center,Y4000\nRetail,Mid-Continent LP,J1100\nPhysician,Neurology Group of Bergen Co,H1130\nFOUNDER,PAREE LYMA GROUP,Y4000\nSELF EMPLOYED,VERTICAL FUND GROUP,Y4000\nExecutive Vice President & Chi,Time Warner Cable,C2200\nPRESIDENT,\"GIAMMALVA PROPERTIES, INC.\",F4000\nSELF,SELF- GROUP INSURANCE ASSOCIAT,J1100\nLAWYER,\"BURNETT & WILLIAMS, P.C.\",Y4000\nHERITAGE,CEO,Y4000\nDoctor,Bronson Perinatology,Y4000\nPHYSICIAN,MERIDIAN MEDICAL,Y4000\nMANAGER,STARFIRE LUMBER COMPANY,B5200\nEducator,Brown University,H5100\nResearch,Federal Reserve Bank of Chicago,X3000\nEXECUTIVE,STOCK & ASSOCIATES,Y4000\nGE POWER DELIVERY,,T1300\nBUSINESS OW,EAI INFORMATION SYSTEMS,Y4000\nEXECUTIVE,SOLARIA,E1500\nPRESIDENT,WARREN AMERICAN OIL CO.,E1100\nA KERMAN SEEWTER FILL,,Y4000\nPhysician,Milwaukee Radiology,H1130\nPartner,\"Florida Moon, L.L.C.\",Y4000\nBURNETT & SONS,,Y4000\nGUERIN CHIROPRACTIC OFFICE,,H1500\nFOOD SALESMAN,,G2000\nC.E.O.,FORNAM REALTY INC.,F4200\nDOCTOR,PEDIATRICS NW,H1130\nEXECUTIVE ASSISTANT,MCI,C4200\nDRILLING CONTR,\"GOOBER DRILLING, LLC\",Y4000\nSCIENTIST,CALTECH,J7400\nLOIS J COPELAND MD P A,,H1100\nBusiness Consultant,\"Bing & Co., Inc.\",Y4000\nMANAGER,LAW FIRM,K1000\nDENTIST,\"RICHARD A. HOGAN, DDS, LTD\",H1400\n\"DIRECTOR,\",BERNARD OSHER FOUNDATION,X4100\nOwner,Rayle Coal Company,E1210\nPRESIDEN,IMPERIAL FINANCE & TRADING,F0000\nSr. Account Executive,Interfirst,Y4000\nENGINEER,\"CUMMINS WEST, INC./ENGINEER\",Y4000\n\"ST ALBAN'S MEDICAL SERVICES\",,H0000\nPHYSICIAN,EASTSIDE FAMILY MEDICAL CENTER,Y4000\nCHAIRMAN,CEMENTOS NORTE PACASMAYO,Y4000\nATL INC./PRESIDENT/CEO,,Y4000\nATTORNEY,KAMLET LAW,Z9500\nNonprofit Exec,Givingnet Inc,Y4000\nMETRO MEDICAL SERVICES,RURAL,H3000\nBELMONT GROUP,,Y4000\nCOORS BREWING COMPANY (CBC),,G2810\nCJC Management Services,,Y4000\nSurgeon,CNY Thoracic Surgery,H1130\nInsurance Agent,\"Hanford Insurance Agency, Inc.\",F3100\nLAWYER,\"O'NEILL, ATHY, & CASEY\",K1000\nCONSULTANT,AMERICAN DEFENSE INT/CONSULTANT,K2000\nPRESIDENT,THE DRUMMOND PRESS,C1300\nManagement,Johanna Foods,G2100\nVICE PRESIDENT,\"INOSANTO ACADEMY,LTD\",Y4000\nOFFICE,EM CONTRACTOR,Y4000\n\"EMERALD FUND, INC\",,F4100\nCEO/DIRECTOR,FLORIDIAN COMMUNITY BANK,F1100\nDirector Uaw,Uaw,LM150\nLUKE BROTHERS PEANUT COMPANY,,A1600\nPrincipal Owner,Poggemeyer Technologies Group,Y4000\nSalesman,Premier Brokerage Services,Y4000\nHEALTH INS. ASSOC. OF AMERICA,,F3200\nsoftware manager,MBARI,J1200\nEngineer/Expert Witness,Self employed,B4400\nPRINCIPAL,\"LEONARD RICE ENGINEERS, INC.\",B4000\nCEO,GANNON INDUSTRIES,Y4000\nCHW SOUTHERN CALIFONRIA,,H2100\nPRICKETT PROPERTIES,,Y4000\n\"Director, Corp. Heal\",Tiffany & Co.,Y4000\nWESTERN SUPPORT SYSTEMS,ENGINEER,E4200\nS-PAT,,Y4000\nPARTNER,HOGAN AND HARTSON,K1000\nRecord Producer/Entertainment,Self employed,G0000\nKEMPNER AND ASSOC,,K2100\nATTORNEY,STAWIARSKI & ASSOCIATES,K1000\nowner,Mid Continent Safety,Y4000\nSOUTHLAND CAPITAL CORP,,F4200\nHILBORN & HILBORN,,Y4000\nCPA,JACKSON/ARSHAGOUNI,F5100\nFinance,Scic,Y4000\nGROCERTY STORE,,G2400\nBUSINESSMAN,\"UHL II, LLC\",Y4000\n\"Senior VP, Finance\",RCG,H3000\nFounder,American Land Institute,Y4000\nEDUCATOR,PROVIDENCE ST MEL SCHOOL,Z9500\nGOVERNMENT AFFAIRS,AIR TRANSPORT ASSOCIATION,T1100\nATTORNEY,LANGER AND LANGER,Y4000\nATTORNEY,JORDAN BURT,K2000\nPROJECT MANAGER,NETSMART TECHNOLOGIES,H3800\nOCAT,,Y4000\nOWNER,REGIONAL TIRE SVC.,T2200\nTEACHER,BROOKDALE COMMUNITY COLLEGE/TEACHER,H5100\nCHAIRMAN,SIGNATURE BANK,F1000\nDental Physician,Self,G0000\nCONSULTANT,ENERGY STRATEGIES,E1000\nCA. STATE DE,SHOSSEINION5@YAHOO.COM,C5140\nHR/Facilities Mgr,Mccorriston Miller Mukai Mackinnon,K1100\nAttorney,WMC,K1000\nWESTER WORLD INC,,Y4000\nSOUTHEASTERN STAGES INC,,Y4000\nREAL ESTATE,\"MOORE INVESTMENTS OF LA, LLC\",Y4000\nNEUROSURGEON,ELGIN BARRINGTON NEUROSURGERY/NEURO,H1130\nVice President,American Medical Response,H3000\nSALES MANAGER,IHG,Y4000\nEXECUTIVE OFFICER,ASSURED GUARANTY,F5000\nClinical Psychologis,Jesse Brown Veterans Administration Me,H1110\nATTORN,\"EPSTEIN BECKER & GREEN, P.C.\",K1000\nEX,PIONEER INSTITUTE FOR THE PUBLIC,J1100\nSOUTHERN METHODIST,,H5100\nAttorney,\"Updike, Kelly and Spellacy\",K1000\nAuriga Corp,,C5130\nSALES MANAGER,DEL LAB,Y4000\nConsultant,Sos Inc,Y4000\nVP,Pittsburgh Pirates,G6400\nATTORNEY,THRUN MAATCH & NORDBERG,K1000\nMEDICAL DOCTOR,SELF EMPLOYED,H1100\nOwner,Design Tanks Inc,Y4000\nBORROR CORPORATION,,B1500\nCEO,TAMAYA CHEMICAL,Y4000\nPresident,Pacific Everhart Investment Group,F7000\nOwner,Sagacious Marketing,Y4000\nEXEC,DORA BROTHERS HOSPITALITY CORP,Y4000\nREPRESENTATIVE,ALLIED SOLUTIONS,F1300\nPRESIDENT,WENDLE MOTORS,T2300\nELECTROCHEMIST,MEDTRONICS,H4100\nSales,Reflex International,Y4000\nLIBRARIAN,RETIRED,J1200\nATTORNEY,LAWLESS & LAWLESS,K1100\nBUSINESS OWNER,ASPIRO GROUP,Y4000\nINVESTOR,PROVENANCE WEALTH ADVISORS,Y4000\nFELLOW - ENGINEER,U.S. SENATE,J7500\nPresident,Scheel Publishing,C1100\nEXECUTIVE VP,CITIGROUP,F1100\nCorporate Controller,\"Koch Industries, Inc\",E1160\nExecutive Vice President/Owner,\"Destinations By Design, Inc\",Y4000\nCAPITAL MANAGEMENT,MCM,Y4000\nREAL ESTATE,ATLANTIC REAL ESTATE,F4000\nEDUCATOR,EDUCATIONAL SERVICE CENTER,Y4000\nGallery Owner,Zenith Gallery,G4600\nCOMPUTER ANALYST,XEROX,Z9500\nUNIVERSITY STAFF,U OF MN,H5100\nPATHOL,CENTRAL OREGON PATH CNSLT PC,H1130\nMARKETING D,ATLANTIC CONTAINER LINE,Y4000\nMANAGER,,G2200\nBUSINESSMAN,SPACED EV,Y4000\nLONDON RECORDS,,Y4000\nCUSTOM AG HARVESTING/OWNER,BARCELLOS FARMS,A1000\n\"Executive Vice-President, General Coun\",Spartan Stores,Y4000\nORTHOP,ORTHOPAEDIC SURGERY GROUP PC,H1130\nRH GOLDMAN MD INC,,H1100\nPresident/CEO,\"ECR International, Inc\",M4000\nOWNER,PEPPERMILL CASINOS INC,G6500\n\"President, Summa Enterprise Group\",Summa Health Systems,H0000\nPolitical Director,UFCW Local 1445,LG100\nEXECUTIVE VP,UNION BANK,F1000\nPOWER CLEANING SYSTEMS,,Y4000\nBREHM COMMUNICATIONS INC,,J1100\nHANGLEY AND ARONCHICK,,K1000\nNEWMONT MINING INC,,E1220\nPODIATRIST,HEALTH OFFICE,H0000\nP. I.,Professional Shopping Services,Y4000\nNurse,Mefford/Knutson Assoc,Y4000\nENGINEER,LACASSE & WESTON INC,Y4000\nVice Chancellor,Unc Chapel Hill,H5100\nATTOR,\"LORENZO, SHERMAN & HOWARD LLC\",K1000\nTheater Producer,Self-Employed,C2900\nGeneral Manager,Neuwirth Motors,T2300\nPRINCIPAL,MILAM INVESTMENT,F7000\nVICE PRESIDENT OF OPERATIONS,\"WERNER MANAGEMENT, INC.\",T3100\nDoctor,Washington University School of Medici,H5150\nATTORNEY,\"RAIN & HAIL, LLC\",A4000\nSELF,DUFFY EQUIPMENT,B6000\nDirector,Pricewaterhouse Coopers,F5100\nREALTOR,WESTERN WISCONSIN REALTORS ASSOCIATION,F4200\nReal Estate Manageme,Club Fit,Y4000\nInformation Requeste,Robinson Family Partners,Y4000\nPHARMACIST,KING SOOPERS,Y4000\nST IVES LABS INC,,Y4000\nBRADBURN CO INC,,Y4000\nCONTROLLER,EXTRUSION TECH INC,J7150\nSPAAN TECH INC,,C5120\n\"Deputy Secretary, Office\",Commonwealth of Pennsylv,X3000\nResearch Scientist,Stanford,H5100\nTeacher,New England Conservatory,H5100\nEPSTEIN BECKER GREEN,,K2000\nATTORNEY,BLUE CROSS BLUE SHIELD OF IL,Y4000\nPHYSICIAN,\"ERLINDA DY-GREY, MD\",H1100\nCOMMUNICATIONS DIRECTOR,BUNGE LTD.,Z9500\nMIAMI DADE COUNTY,,X3000\nJUDY CONSTRUCTION,,B1500\nSALES CLERK,\"ANDREA'S BOUTIQUE\",Y4000\nDOBSON-MCCOMBER AGENCY,,F3100\nexecutive,Holiday Cleaners Inc.,G5500\nFIRSTMISS GOLD,,A4100\nNEW CITY DEVELOPMENT,,Y4000\nCPA,\"AKT CPA, LLC\",F5100\nEMPLOYEE SECURITY PLANS INC,,F3100\nOwner,Hi Tech Healthcare,Y4000\nPHYSICIAN RESEARCHER,\"XENOPORT, INC\",Y4000\nCHAIRMAN,CCA INC.,M2300\nSvp Operations,Rj Reynolds Tobacco Co,A1300\nRealtor,Mock Realty,F4200\nBUSINESS OWNER,PLM INDUSTRIES INC,Y4000\nREAL ESTATE DEVELOPER,EDGEMARK DEVELOPMENT SERVICES LLC,F4000\n\"Physician, Radiation Oncologist\",H Lee Moffitt Cancer & Research Cente,Y4000\nAttorney,POTTER MINTON P.C.,K1000\nATTORNEY,ALLEN E. ERTEL & ASSOCIATES,Y4000\nINFORMATION REQUESTED,\"ADVANCED SOLAR PRODUCTS, INC.\",Y4000\nProfessor,UNC-Chapel Hill,J7400\nPRESIDENT,ROGERS DEPT. STORE,G4300\nCHIEF LEGAL AND COMMUNITY AFFAIRS OFFI,\"ST. JUDE CHILDREN'S RESEARCH HOSPIT\",H2100\nPHYSICIAN,\"DOCTOR'S PARK SURGERY\",Y4000\nGRAPHIC DESIGN,SELF/GRAPHIC DESIGN,G5240\nLAW REALTY CO INC,,F4200\nHUMAN RESOURC,SPEAR LEEDS & KELLOGG,F2100\nOwner,Aspen Mortgage,F4600\nSOFTWARE ENGINEER,DISCOVERY DATA SYSTEMS,Y4000\nMEDLEY GLOBAL ADV,,G5270\nGLOBAL PETROLEUM CORPORATION,,Y4000\nFIRST COLONY LIFE INS,,F3300\nN Y S BROADCASTERS ASSOCIATION,,C2100\nNATIONAL POOL AND EQUIPMENT COMPANY,,Y4000\nCEO/ Chairman,Kimco Realty Corporation,F4000\nInformation Requested Per Best Efforts,COCA-COLA ENTERPRISES,G2700\nPUBLIC RELATIONS,PROGRESSIVE SOLUTIONS,Y4000\nCONTROLLER,SIERRA PACIFIC RESOURCES,E1620\nTHE CRANE HOUSE,,Y4000\nDevelopment Director,Salvation Army,X4100\nCHAIRMAN,TORRON GROUP,F4000\nIMPACT COMPUTER CENTERS,,C5100\nSecurity Broker,Self-Employed,G5290\nATTORNEY,\"NIELSEN, MERKSAMER, PARRI\",K1000\nGREEN MOUNTAIN MORTGAGE,,F4600\nPartner,Tackitt - RobinsonPartnership,Y4000\nLegal,Solyndra,C5110\nAttorney,\"Capital Health Partners, LP\",H0000\nOWNER,BJJ TRUCKING,T3100\nTILE CONTRACTOR,Self employed,B5000\nPHARMACIST,JARRETTSVILLE PHARMACY,G4900\nAttorney,M Blake Stone LPA,K1000\nKOREAN TIMES,,C1100\nGREENFIELD FAMILY LTD,,J7400\nPresident/CEO,\"Boone REMC, Inc\",Y4000\nTHERAPIST,COMMUNITY BEHAVIORAL SERVICES,Y4000\nInformation Requeste,\"P.Y. Saddler, M.D. INC.\",H1100\nAdministrator,\"Mike's & Sappio's Heating & Air\",Y4000\nCivil Engineer,William Baker,Y4000\nEXECUTIVE DIRECTOR,MOMS DEMAND ACTION FOR GUN SENSE IN AM,Z9500\nMESCH CLARK ET AL,,Y4000\nGENERAL MANAGER,COMCAST CABLE,C2200\nInsurance Agent,A G Risk Insurance Agency,F3100\nREAL ESTATE BROKER,CENTURY 21 ZWYGART REAL EST,F4200\nCHIROPRACTOR,SHIRIN SHADPOUR DC INC,Z9500\n\"VICE PRESIDENT NAT'L ACCOUNTS\",United Guaranty Corporation,F4600\nATTORNEY,SIEBEN POLK LAW FIRM,Z9500\nJOSEPTHAL LYON + ROSS,,Y4000\nManaging Director,General Contractors of NY,Y4000\nPLANT ENGINEER,USTM LP,A1300\nPH,GREATER BALTIMORE MEDICAL CENTER,H2100\nEXECUTIVE,JC PENNEY LIFE INS CO,J1100\nPres.,Consulting Co.,Y4000\nPRESIDENT AND CEO,GRISKO & ASSOCIATES,Y4000\nREAL ESTATE,PTY MANAGEMENT,F4000\nPathologist,Kern Medical Center,H2000\nDOCTOR,MGPO/DOCTOR,Y4000\nPILOT,TAMPA BAY HARBOR,Y4000\nPHYS,LOS ALAMOS NATIONAL LABORATORY,X3000\nBusiness Owner,US Industrial Piping,Y4000\nExecutive,\"MEDICAL SAVINGS INVESTMENT, INC.\",F3200\nBANKER,EAST CAMB SAVINGS BANK,F1200\nDEVELOPER,WINN DEVELOPMENT COMPANY,F4000\nAUTO EXEC.,MOSSY NISSAN,T2310\nSENIOR VP,AGRIBANK FCB,A4000\nINVESTOR,TINLIN INVESTMENTS,Y4000\nSALES EXEC,NBC UNIVERSAL TV NETWORKS DISTRIBUTION,C2300\nGRINER ENGINEERING INC,,B4400\nPRECAST CONCRETE,,B5100\nATT,LAW OFFICES OF GREGORY C. JONES,K1000\nphysician,dr,H1100\nCHAIRMAN,LIGGETT MANAGEMENT LLC,C2100\nSenior Vice President & C.F.O.,UST Inc.,A1300\nGeneral Manager,Bothun Automotive Group,T2300\nDoctor,Valley Orthopedic,H1130\nADMINISTRATOR,PACIFIC EYE INSTITUTE,Y4000\nAttorney,Chicago Community Development Corp.,Y4000\nProfessor/Administra,North Carolina State University,H5100\nChairman,GoJo Industries,M1300\nEngineering Planner,Lockheed Martin,B4400\nExecutive Director,\"Bar Association of Montgomery Co.,\",Y4000\nInvestment Counselor,\"Sheets, Smith & Associates\",Y4000\nCRYSTAL GEYSERS,,G2600\nCOO,Vanguard Car Rental USA Inc.,T2500\nFINANCIAL SERVICES EXECUTIVE,UBS AMERICAS,F2100\nHead Of Govt Rel&Pub,JPMorgan Chase Bank,F1100\nR.B.C. DAIN RAUSCHER,,F2100\nReal Estate Broker,New & Neville Real Estate,F4000\nTEACHER,LYON COUNTY SCHOOL DISTRICT,X3500\nBROKER,PROVENTURE,F4000\nOwner,C F H Associates Inc,Y4000\nWriter Investor,Self,F7000\nWirter,Self employed,H6000\nATTOURNEY,SELF EMPLOYED,K1000\nATTORNEY,\"DEYOE,  BUGLIONE AND HUTTON LLC\",Y4000\nCEO,ICA Resources Inc.,Y4000\nphysician,Lucy Daniels Center for Early Childhoo,Y4000\nPARTNER,TRADE WIND FARM,A1000\nLBN & ASSOCIATES,,Y4000\nrequested,Statewide Recovery,G0000\nSOCIAL WORKER,SELF/SOCIAL WORKER,H6000\nBRUNO PROPERTIES INC,,F4000\nAttorney,\"Gibson, Dunn & Crutcher Llp\",K1200\nPARTNER/LOBBYIST,\"HILL SOLUTIONS, L.L.C.\",K2000\nDirector,Zimmer Lucas Partners LLC,Y4000\nMORTGAGE BROKER,GOLDCOAST MORTGAGE,F4600\nPRINCIPAL,\"NORTH AMERICAN TAIWANESES WOMEN'S ASSO\",Y4000\nFURRIER-BU,DAVID GREEN AND SONS INC,J5100\nOWNER,BLAZER CONSTRUCTION INC,B1500\nAPPRAISER,OLES AND JERRAM,Y4000\n\"MANAGER, MERCHANDISING\",\"INGRAM BARGE COMPANY/MANAGER, MERCH\",T6200\nBANKER,CENTRAL STATE BANK,F1100\nMCGRAW HILL INC,,C1100\nBUSINESSMAN/ENGINEER,WASTECH INC.,E3000\nPhysician,Braverman-Terry-Oei Eye Associates,H1100\nMEDQUIST INC,,F5200\nC GRANT INC,,Y4000\nOHO ENGINEERING,,J1100\nAttorney,Sternberg Newman Shifrin & Associates,K1000\nAUTO DEALER,VARSITY FORD,T2300\nRestaurateur,\"J.D.'s Bait Shop Sports Grill J & D Co\",G2900\nHAMAKUA MACADAMIA NUT CO,,Y4000\nFLOWLINE ALASKA,,B3000\nMortgage Broker,Ohio Financial Group,F4600\nPRESIDENT,JON PROPERTIES,F4000\nRESTAURAN,MR. GOODBURGER RESTAURANT,G2900\nPENSION CONSULTANT,ACTUARIES OF COUNSEL,F5500\nMember,Arcadia Holdings Llc,F4000\nFaculty-PhD,University of South Dako,H5100\nPRESIDENT & CEO,AHA,Y4000\nMANAGER,MCMURRY ENERGY,E1150\nHealthcare,\"Triad Hospitals, Inc.\",H2100\nTruck Driver,SRT,Y4000\nReal Estate Investments,Self employed,J5100\nCFO,TECHRIZON,C5120\nGOYETTE MICH CO,,Y4000\nSR. VICE PRESIDENT,TRC CORPORATION,Y4000\nEngineer,State of TN,X3000\nS&D MANAGEMENT CO,,F4500\nPsycho,Healthpartners Medical Group,Y4000\nSPORTS MARKETING AND MANAGEMENT,THE MISHKIN GROUP,Y4000\nFinancial consultant,CFS,Y4000\nMKTG & COMM. CONSULTANT,STATE IT,Y4000\nLAND DEVELOPMENT SERVICES,,Y4000\nBusinessman,Ms. Bubbles,Y4000\nV.P. REG,QC FINANCIAL SERVICES INC.,F1400\nBiz Owner-Market Res,Rockbridge Associate,Y4000\nElectronic Engineer,Maxim Integrated Products,C5110\nATTORNEY,COLSON HICKS EDISON,Z9500\nML RUBERTON CONSTRUCTION CO,,B1500\nOwner,Harbor Company Inc,Y4000\nChairman & CEO,CNL American Properties Fund; Inc.,F4100\nC.E.O.,SOUTHWEST GAS CORPORATION,E1140\nSALES,FIRST AMERICAN TITLE INSURANCE CO.,F4300\nPRESIDENT,CONTEMPOL INC. USA,Y4000\n\"DIRECTOR, FED. G\",BUCHANAN INGERSOLL,K1000\nVICE PRESIDENT,JANUS CAPITAL GROUP,F2100\nVICE CHANCELLOR OF COMM. RELATIONS,KEISER UNIVERSITY,J7400\nPRESIDENT,HCA,H2100\nPARTNERSHIP,,F4500\nExecutive Vice Presi,\"Re Corporate Services,Llc\",E1600\nVP-GOVERNMENT AFFAIRS,WISCONSIN CREDIT UNION LEAGUE,F1300\nPhysician,Independent Contractor,H4100\nDecline,Decline,Y4000\nSR VICE PRESIDENT OPERATIONS,CONSOL ENERGY,E1210\nST LOUIS PATHOLOGY ASSOCIATES INC,,H1130\nPilot,Denton Aerial Spraying,A4000\nState Representative,State of Florida/Legislature,Y4000\nExecutive Director,Jerusalem House,Y4000\nMOTION PRO,,Y4000\nVp,Elite Mortgage,J1200\nOWNER,\"HENN, INC.\",Y4000\nPROFESSOR (RETIRED),RETIRED (TEMPLE UNIVERSITY),X1200\nFIREHOUSE COLLISION,,T2400\nHAWAII,,K1000\nJAURFEICA HOSPITAL,,H2100\nSelf Employed,\"Aimee's Hallmark\",Y4000\nPRES,FORESIGHT TECHNICAL SVCS. INC.,Y4000\nTelevision Consultant,Self-employed,C2100\nFORT LINCOLN NEW TOWN CORPORATION,,Y4000\nTROY AND,BOWLES,Y4000\nJ LOUR WINERY,,G2820\nTHE BOEING CORPORATION,,D2000\nCLU,W G STERN CO & INSURANCE,Y4000\nSTATE OF LOUISIANA - OFFICE OF LIEU,,X3000\nNATIONAL DIRECTOR OF NURSING,WESTERN GOVERNORS UNIVERSITY,H5100\nDIRECTOR OF LE,HIGHWOODS PROPERTIES,F4100\nSTATE SENATOR,STATE OF OREGON LEGISLATIVE ASSEMBLY,Z9500\nARCHITECT,YATES CHREITZBERG ARCH.,B4200\nProfessor of Psychiatry,University of Wisconsin,H5100\nHousewife,N/A,J7500\nENGINEER/SCIENTIST,RETIRED,X1200\nSELF EMPLOYED SMALL BUSINESS,BIG BRAND WATER FILTER INC.,Y4000\nPROPERTY MANAGEMENT,.,F4500\nFINANCIAL MODELER,\"INTEX SOLUTIONS, INC\",J9000\nHISTORIC PRESERVATION,STATE OF WASHINGTON,X3000\nOFFICE MANAGER,STOCKTON OIL CO.,E1100\nCLINICAL PATHOL ASSOCIATES,,H1130\nExecutive,JR Roberts,B1000\nHILLSIDE CAPITAL,,F2300\nFinancial Advisor,Highbridge Capital Management,J5100\nLawyer,\"Bowman & Tracey, LLP\",Y4000\nPHYSICIAN,DOROTHY S. NESMITH MD PA,H1100\nPhysician,\"Whetstone Orteropedics, Inc.\",Y4000\nADMINISTRATIVE,STRATEGIC COMP,J5100\nR W FRICKEL CO,,Y4000\nInformation Requeste,Trust For Public Land,Z9500\nEXECUTIVE,MOUNTAIN APPLE COMPANY,Y4000\nVice President,Prudential,F3300\nDIRECTOR,BROWNRUDNICK,J1200\nPRESIDENT,\"AMRUT 75, INC.\",Y4000\nDoctor,Hospital Hermanos Melendez,H2100\nVP,CROSS TELEPHONE COMPANY,C4100\nBanker,Bear Storms and,F2300\nCity Manager,City Of Hermosa Beac,X3000\nEngineer,PAPCO,Y4000\nPROFESSOR,UNIV OF MEXICO/PROFESSOR,H5100\nLandscape Architect,Nys Parks,X3000\nATTORNEY,CHAMBERS & PARTNERS,K1000\nPROF,UNIVERSITY OF CALIFORNIA SAN F,JD200\nInvestor,RRL&G Holdings,Y4000\nLANDMAN,MCDONALD LAND SERVICES,Y4000\nLAND SURVEYOR,\"BUCHANAN & HARPER, INC.\",Y4000\nStorage Operations M,Philip Morris U. S. A.,A1300\nActor,\"Gaynes McLerie, Inc.\",C2400\nMULT FUNC ENGRG & SCI VP,Lockheed Martin,D2000\nPartner,Prairie Wave,Y4000\nSUMMER CAMP DIRECTOR,CAMP GROUP,Y4000\nINFORMATION REQUESTED PER BEST EFFO,,B1000\nACCOUNTANT,OPUS NORTH CORP.,Y4000\nO U S,,Y4000\nASAP CAPITAL,,E4200\nMEI TECHNICAL SERVICES I,,Y4000\nCEO,Phelps Industries,G2500\nPresident,Systems Net,Y4000\nPRESIDENT,NATIONAL HEALTH COUNCIL,G0000\nEXECUTIVE,ROCKET CITY CREDIT UNION,F1300\nINFOGRIP,,Y4000\nAttorney,Nelson & Nelson,K1000\nPresident,\"Reschini Agency, Inc\",F3100\nOGLETREE DEAKINS NAS,,K1000\nFINANCE,CITIGROUP BOSTON OFFICE 2 INTERNATIONA,Y4000\nPRESIDENT & CEO,\"IRVING MATERIALS, INC.\",B5100\nCIVIL ENG,SIEMENS BLDG TECHNOLOGIES,M2300\nARCHIVIST,NATIONAL ARCHIVES AND RECORD ADMIN,Y4000\nattorney,Golomb and honik,Y4000\nExecutive Vice President,\"Landon Properties, Inc\",F4000\n,US FEDERAL AVIATION ADMINISTRATION,X3000\nBusiness Executive,\"Wellpoint Systems, Inc\",Y4000\nLieutenant,San Joaquin County Sheriffs Office,Y4000\nEXECUTIVE,LENOX MARKETING,Y4000\nOWNER,\"WINDWARD INTRESTS, LLC\",Y4000\nPROJECT MANAGER,PACIFIC GAS AND ELECTRIC,E1620\nResearch,Self-employed,G0000\nDIRECTOR OF HUMAN R,AUTOMETRIC INC.,D3000\nSpecial Events Supervisor,City of West Hollywood,X3000\nOwner,Coveyou Computer Services,Y4000\nTrustee,American Ballet,Y4000\nCITIZENS INDEPENDENT BANK,,Y4000\nCEO,Capital Bancorp,Y4000\nQUAESTUS & ARI NETWORK SERVICES,,G5200\nPRESIDENT,\"MOBILE MECHANIC, INC.\",Y4000\nAdministration/Teach,University of Pittsburgh,H5100\n\"OBERMEYER, REBMANN, MAXWELL\",,K1000\nSvp Corp Affairs,Wyeth,H4300\nVICE PRESIDENT,KOCH MINERALS LLC,E1160\nBUSINESS ANALYST,BUSINESS TEMPS,G5250\nPresident & CEO,OmniTech Systems,C5120\nMONTGOMERY GALLERY,,J7400\nORKIN & ASSOCIATES,,Y4000\nChairman,Mooretown Rancheria,A3000\nPLANNERS,FMF ARCHITECTS,B4200\nWOLVERINE,WHB,Y4000\nCEO,HERITAGE DEVELOPMENT PARTNERS,Y4000\nFinancial Services,G. E. Energy Financial Services,F0000\nCEO,\"MIMEO, INC.\",Y4000\nPartner,Homestead Investments LLC,F7000\nEngineer,Meraki Networks,Y4000\nBROWN CUNNINGHAM GANNUCH ENGINEERIN,,B4400\nINVESTOR,ANCHORAGE CAPITAL,J1200\nDAVIS TRACTOR CO,,Y4000\nATTORNEY,LARRY D LEONARD PC,Y4000\nBUSINESS COMM,,Y4000\nLANDA PROPERTIES,,B1000\nCHAIRMAN AND CEO,JANES CAPITAL PARTNERS,F0000\nC E MAINPRICE CO INC,,Y4000\nPresident and Chief Executive Officer,Norwalk Hospital,H2100\nPresident and Chief Executive Officer,Prince William Hospital,H2100\nBusiness Development,Advanced Medical Optics,H3300\nRUTGERS UNIVERSITY,,H1710\nCRNA,Memorial Medical Center - Livingston,H1710\nAttorney,Jones and Matson,K1000\nHOTEL OWNER / OPERATOR,HUNTINGTON GROUP,T9100\nCHAIRMAN & CEO,NOVA HOME LOANS,F4600\nVice President,Rathborne Land Co.,Y4000\nMEDICAL DOCTOR,OHIO HEALTH,H2100\nVENTURE CAPITAL,NEW VISTA CAPITAL,F0000\nCHIEF EXECUTIVE OFFICER,PORTFOLIO DECISIONWARE INC.,Y4000\nPCK PROPERTIES INC,,F4100\n\"Traylor Motor Homes, Inc.\",,B2400\nBusiness Owner,Hedeen International,Y4000\nHELMERICH & PAYNE/PRESIDENT/CEO,,J1100\nCONS,GROUP MANAGEMENT CONSULTANTS I,Y4000\nDIRECTOR OF LOGISTICS,PEPIN DISTRIBUTING/DIRECTOR OF LOGI,G2700\nSMALL BUSIN,ALBRISA GLASS & COATING,Y4000\nEXECUTIVE,HJN HOTELS CORP.,T9100\nLandlord & Realtor,Ron Detjen Bus. Acct.,Y4000\nOWNER,ELIASES & SPRINGALL ENTERPRISES LLC,Y4000\nI Rent Out My Apartm,Retired From Moscow,X1200\nMAF,,Y4000\nNeurosurgeon,University Neurological Surg.,H1130\nComstock Asset Management,,F4000\nPrincipal,Pyramid Management Group,F4200\nHEAD AND SEIFERT,,K1000\nPresident,\"New Britain Developers, Inc\",Y4000\nretail store owner,as time goes byinc.,J1200\nRegion Director,CBR,Y4000\nSOFTWARD ENGINEER,SUN MICRO SYSTEMS,J6200\nMANAGER,AFF,Y4000\nBUSINESS OWNER,KENNETH GROEFSEMA RANCH,A3000\nINFO REQUESTED,BOZEMAN CLINIC,Y4000\nVP,West Coast Galvanizing,Y4000\nCHARYNA DATA SYSTEMS,PRESIDENT,Y4000\nPresident,Kambrod Assc. Ltd.,K2000\nWEST BAY EXPLORATION CO,,E1150\nHONIGMAN ET AL,,K1000\nSE Insurance Corp.,,J1100\nBUSINESS OFFICER,THOMAS AND HERBERT,Y4000\nSVP GENERAL COUNSEL,RADIAN GUARANTY INC.,Y4000\nSURVEY STATISTICIAN,US CENSUS BUREAU/SURVEY STATISTICIA,X3000\nPHYSICIAN,RADIOLOGY REGIONAL CENTER,J1100\nPHYSICIAN,BIOBALANCE HEALTH,H1100\nAttorney,McKiffick and Hoffman,K1000\nProgram Director,Computer Sciences Corporation,C5130\nGOVERNMENT RELATION,CNA CORPORATION,Y4000\nEXECUTIVE,PATRIOT SERVICES CORP.,Y4000\nANALYST,CITY POWER MARKETING,E1600\nMANAGER,ONYX,Y4000\nAccountant,SELF-EMPLOYED,F5100\nCPA,\"CERQUEDA, MORGAN & COLLINS\",F5100\nFUEL MERCHANT,MAJOR PETROLEUM,E1100\nPRESIDEN,SADDLEBACK ASSOCIATES INC.,Y4000\nOwner,Paradigm Communications,Y4000\nCEO,Bancinsurance Corp.,F3100\nUS SECURITIES & EXCHANG,,X3000\n\"PRESIDENT OF SAINT ANNE'S HOSPITAL\",STEWARD HEALTH CARE,H2100\nDUCHOSSOIS INDUSTRIES,,T5200\nEVP OF SALES,M3 INSURANCE,Y4000\nWriter/Editor,\"Air Quality Sciences, Inc.\",Y4000\nIT SPECIALIST,STATE OF IOWA,X3000\ninvestment management,\"International Research, Inc\",J1100\nCO-OWNER,PRECISION INTERFACE ELECTRONICS INC.,Y4000\nEXECUTIVE,SCHICK SHADEL HOSPITAL,J1100\nNA,NA,G0000\nAttorney/Deli Owner,Burke & Burke/Gourmet & Gourmet Inc.,K1000\nAssistant Professor,University of Dayton,H5100\nVP & Director Policy,Exelon,E1600\nARBITRATOR,SELF EMPLOYED,G5200\nCEO,\"Blockhouse, Inc\",M4100\nATTORNEY,GREEN & UTTER PA,Y4000\nCPA,California Society Of CPAs,F5100\nOwner,Sma West Llc,Y4000\nPOLITICAL ACTIVIST,SELF EMPLOYED,Z9500\nREAL ES,LIVELY STANSBURY MANAGEMENT,Y4000\nTop Executive,\"Saneholtz-McKarns, Inc.\",G4300\nOWNER,A.I.M.,T1300\nGROCERY STORE,SELF,G2400\nINTERNET MARKETING,K.COMM,Y4000\nSKIHI ENTERPRISES INC,,Y4000\nPRESIDENT,JODE CORP.,C4000\nREALTOR,DOUBLE EAGLE RI EST. & INV LTD,J9000\nCEO,Citadel Communications Co. Ltd.,Z9500\nAttorney And Chairman,State Of New Mexico,X3000\nHAYNES AND BOONE L L P,,K1000\nMEDSTAR HEALTH,,H3000\nCHAIRMAN,ALLIANCE BEVERAGE DISTRIBUTING,G2850\nChairman,\"Gilbane,Inc\",Y4000\nOwner,JDSchwartz inc,Y4000\nVP GOVERNMENT,HARRAHS ENTERTAINMENT,G6500\nT M KOVACEVICH-PHILA INC,,Y4000\nDIRECTOR,LAND OLAKES,A2000\nV.P. NORTHERN SALES,TRACTOR & EQUIPMENT COMPANY,A4200\nveterinarian,Self-Employed,A4500\nEXECUTIVE,NETJETS INTERNATIONAL,Y4000\nDaxor Corporation,,Y4000\nOSE ENTERPRISES,,Y4000\n\"VP, GOV. RELATIONS\",RESEARCH IN MOTION,C4300\nVP,RENTMETHOD INC,Z9500\nBRODY PRUE & PARLATO PC,,Y4000\nretired Executive,Information Requested,J8000\nSUSAN MAXMAN & PARTNERS LTD,,Y4000\nRETAIL SERVICES &,,G2820\nRETIRED EDUCATOR,NONE,X1200\nOWNER,MARKER 18,Y4000\nGroundskeeper,Self employed,Y4000\nBOOKKEEPER,GSSC,Y4000\nDirector of Clinical,Covenant Care LLC,J7300\nCHAIRMAN/CEO,AMERICAN SUPPLY CO.,J1100\nREID TEMPLE AFRICAN METHODIST CHURC,,X7000\nNEW YORK UNIVERSITY COLLEGE OF NURS,,H5150\nDEA,ROZIER FORD LINCOLN MERCURY INC,T2300\nT S I TELSYS INC,,Y4000\nMEMORIAL FUNERAL HOMES,,G5400\nWGI,,B1000\nMusic Producer,SELF-EMPLOYED,C2600\nBusiness Owner,Self employed,G0000\nVice President,BankWest of Nevada,F1100\nCIRO RANDAZZO BUILDERS,,Y4000\nPRESIDENT,KINNEY OIL CO.,E1150\nNATIONALIZED ASSISTANCE SERVICES IN,,Y4000\nMANAGER,JED OF SWFLA,Y4000\nPRESIDENT,FITZGERALDS GAMING CORP.,G6500\nFALLING SPRING STUDIO,,G5240\nASSOCIATE DIRECTOR FOR PLANNING,SMITHSONIAN (FEDERAL EMPLOYEE),Y4000\nsenior manager,Boston Comm Grp Inc,G5270\nVP,W R Grace,M1000\nDIRECTOR,GOGO INDUSTRIES INC.,J1100\nAssociate Professor of Medicine,Yale University,H5100\nINDEPENDENT SOFTWA,SWADE CONSULTING,C5120\nDOCTOR,ENT PROFESSIONAL SERVICES,Y4000\nUNIONTOWN,,Y4000\nSUBCONTRACT ADMINISTRATOR,JACOBS ENGINEERING GROUP INC.,B4000\nINFO REQUESTED,Hospice Care-Southeast Ar,H2200\nGOLDMAN SACHS JAPAN CORP,,F2300\nGEOPHYSICIST,EXXON MOBIL,E1110\nLITHOGRAPHER,CUSTOM PRINTING,Z9500\n\"GM MRKTNG, FCSD, US\",FORD MOTOR COMPANY,T2100\nFinancial Administrator,\"TV Traffic, Inc\",G5220\nMANUFACTURERS SALES REPRESENTATIVES,,G2500\nPRESIDENT,BANKWEST,F1000\nREAL ESTATE CONSULTANT,,E4200\nATTORNEY/MEDIATOR,NOT EMPLOYED,K1000\nCONSULTANT,\"JMW SETTLEMENTS, INC.\",Y4000\nBUSINESS OWNER,ONE WHITE PIXEL/BUSINESS OWNER,Y4000\nCOMPUTER PROGRAMMER,\"SUNRISE MEDICAL, LLC\",Z9500\nN E CENTER FOR JUDAIC ST,,Y4000\nOffice Manager,Chris Machine Co Inc,Y4000\nAMERICAN SPEEDY,,C1300\nC.E.O.,\"GREINER ELECTRIC, LLC/C.E.O.\",B3200\nIHAS INC,,H3000\ncollege administrato,FIT,H5000\n\"GOV'T RELATIONS CONSULTANT\",BERGSON & CO.,Y4000\nPresident,Tomes Farms,G1200\nOWNER CEO,INTEGRITY MANAGEMENT,Y4000\nFSI DESIGN,,Y4000\nPARTNER,JENKINS HILL CONSULTING,K2000\nL & J G STICKLEY,,Y4000\nBanker,Community Trust Bank,F1100\nSales,Nylex,Y4000\nTRI-MAINTENANCE CONTRACTO,,Y4000\nELECTRONICS STORE,,G4300\nSMITHS INDUSTRIES,,Y4000\nCOMMUNICATIONS DIRECTOR,OHIO FEDERATION OF TEACHERS,J1200\nBENEFITS CONSULTANT,STRATEGIC BENEFITS ADVISORS INC,Y4000\nPresident,Related Companies,F4100\nController,HufCor,M2300\nBOSWELL AND DUNLAP,,Y4000\nCONSULTANT,UNITED NATIONS,X8000\nQUORUM HEALTH RECOVERY,,H2100\nSelf/journalist,,\nAttorney,Haglund Kelley Horngren Jones,Y4000\nDUININCK BROS INC,,Y4000\nPROFITSMAN,WESTMOND PRODUCTS,Y4000\nCorporate Bankruptcy,\"Brown Mccarroll, Llp\",K1000\nPHYSICIAN (M.D.),SELF,H1100\nCPA,Rindner Fox Associates,Y4000\nCONTROLLER,P AND B FABRICS,M8000\nSALES,PTD,Y4000\nCONSTRUCTION OFFICIAL,CITY OF MILLVILLE/CONSTRUCTION OFFI,X3000\nDirector,\"Direct Supply, Inc\",H4100\nOperations Manager,Pioneer Concrete,B5100\nVICE,AIR LIQUIDE AMERICA SPECIALTY,M1000\nSMARTALK,,G4300\nTEAMSTERS LOCAL #326,,LT300\nELECTRICAL C,KENNY STRANGE ELECTRIC,Y4000\nSocial Assistant,A.C.C.E.S.S.,J5400\nattorney,Thomas More Society,Y4000\n\"HUMAN RESOURCES INT'\",,Y4000\nRANCHER,STILES LAND & CATTLE,A6000\nEXECUTIVE,MEDQUEST ASSOCIATES INC,Y4000\nEng Tech,USACE,Y4000\nPRESIDENT,F.C.A. PROPERTIES,F4000\nVICE PRESI,AMERICAN CONSULTING INC.,B4000\nConsultant,Langhorne Group LLC,Y4000\nFINANCIAL ADVIS,JVL ASSOCIATES- LLC,J1100\nMOBILE HOMES,,F4400\nArt Dealer,Self-Employed,Z9500\nHealth Insurance Agent,Kaczmarek Insurance Services,F3200\nOWNER,\"TELEPAX, INC.\",C4100\nEqual Opportunity Specialist,US Dept HUD,X3000\nCPA,RICHARD D. PAUSTIAN M.D.,H1100\nRETIRED GEOLOG,US GEOLOGICAL SURVEY,Z9500\nACTION MARKETING ASSOCIATES,,G5210\nPresident,Bemis Paper Pkg.group,M7100\nKNOX LEMMON BRADY,,J1100\nSOUTHEASTERN YEARLY MEETING OF RELI,,Y4000\nFinancial Service,Perella Weinberg Partners,F2000\nSPECULATOR,,F7000\nCFO,RELIABLE OFFICE SYSTEMS,Z9500\nRAY M MUSSER & ASSOC,,J1100\nVICE-PRESIDENT OF OPER,PILGRIM INC.,F3100\nINVESTMENT BA,MEZZACAPPA BEREWS LLC,F2100\nCPA,\"Henderson, Hutcherson & McCullough\",H5100\nManagement Consultan,\"King, Chapman & Broussard\",Y4000\nBERNIS CO INC,,Y4000\nChairman Nbcu Sports,NBC Universal,M2300\nFarmer,US Dept of Agriculture,X3000\nExecutive,Starfire Lumber Co,Y4000\nMISTER P EXPRESS,,Y4000\n\"PRESIDENT, HUMAN RESOURCES\",MICRON TECHNOLOGIES,C5110\nKENNETH L ELBERT,,Y4000\nPETSCH RESPIRATORY,HEALTHCARE/PETSCH RESPIRATORY,H1100\nBoard Member,Englewood Medical Ctr,H2100\nEXECUTIVE,COPPER STATE BOW & NET COMPANY/EXEC,Y4000\nEXECUTIVE CHAIRMAN,THE ESTEE LAUDER COMPANIES L.L.C.,M3300\nTEACHER,HAZLET TWP,L1300\nInvestor,LBK Investments,F0000\nFORMER PR/PA EXEC.,RETIRED,X1200\nChairman,Blue Hill Investments,F7000\nASSOCIATION DIRECTOR,UNITED PARCEL SERVICE INC.,T7100\nExecutive Director,Salem Witch Museum,X4200\nINVESTMENTS - MANA,LONGACRE CAPITAL,Y4000\nMINISTER,CHRISTIAN INTERNATIONAL,Y4000\nOWNER,\"FAY'S MANAGEMENT CARE\",Y4000\nSOCIAL WORKER,UNIVERSITY OF NEBRASKA,J7400\nSONGWRITER,LAGUNATIC MUSIC,Z9500\nConsultant,Self Em[loyed,G5200\nPRESIDENT,EASTBRIDGE PARTNERS,Y4000\nEXECUTIVE DIRECTOR,UCP OF NEBRASKA,Y4000\nConsultant,VWB Research,Y4000\nCLERICAL,TOWN OF CHESHIRE CT,X3000\nOWNER,A.G.E. GRAPHICS LLC,C1300\nFINANCE,WIN PARTNERS LLC,Y4000\nConsultant,\"Parkwood Advisors, Llc\",Y4000\n\"DELOITTE, TOUCHE\",,F5100\nSEBELIUS CAMPAIN,,Y4000\nINVESTMENT ADVISOR,BESSMAN TRUST/INVESTMENT ADVISOR,Y4000\nExec,Marr Companies,Y4000\nReal Estate,Bellock Construction Inc,B1500\nPOLICY COUNSEL,JUDICIAL CRISIS NETWORK,J1100\nPEDIATRICIAN,RIVER ROAD PEDIATRY,Y4000\nAttorney,Stewart & DeChant,Y4000\nOwner,Mt Hope Golf Course,Y4000\nPASTOR,RESURRECTION ANGLICAN/PASTOR,Y4000\nSELF/COMPUTER PROGRAMMER/LAWYE,,C5130\nCFO/VP,JSA,Y4000\nPR,42 WEST,Y4000\nSHERATON COMMANDER HOTEL,,T9100\nAttorney,Barw,Y4000\nREALTOR,PILKERTON REALTORS,F4200\nAHM DEVELOPMENT INC,,Y4000\n\"DIRECTOR, NONPROFIT\",\"EXPLORING THE METROPOLIS, INC.\",J7400\nProfessor,CNSE,Y4000\nSENIOR VICE PRESIDENT OF HUMAN RESOURC,E.M.C. CORPORATION,C5130\nCEO AND CHAIRMAN,PEEBLES CORP,Y4000\nLIFE ACTION/WRITER/SPEAKER,,Y4000\nChair,Beverly Hospital,H2100\nEFFECTIVE COMMUNITY PROJECT,,Y4000\nExec. V.P.,QPS Staffing Services Inc,G5250\nDOCTORAL STUDENT,,Y1000\nRESIDENTIAL DEVELOPMENT,LCS INC.,Y4000\nMEIC,,F4600\nPRESIDENT,GELSAR,Y4000\nNEUROSURGEON,UAMS,H5100\nCEO,\"Miller Networks, Inc.\",Y4000\nTHE PHOENIX CO./PRESIDENT/CEO/EXECU,,Y4000\nFINANCIAL DIRECTOR,MICROSOFT CORP,C5120\nVP - RISK MANAG,\"THE GEO GROUP, INC.\",G7000\nRICHARD OAKLEY INVESTMENTS,,F2100\nMCV,,Y4000\nCHAIRMAN,ERIC MOWER AND ASSOCIATES,G5210\nRESI,\"REAL ESTATE GIELMAN SOTHELBY'S\",F4000\nPresident,Offshore Marine Service Assoc.,Y4000\nPRESIDENT,KLINGER COMPANIES INC.,B1000\nPRESIDENT,GILL HOTELS CO,T9100\nSALES DIRECTOR,\"ISEE STORE INNOVATIONS, LLC\",G4300\nROBINSON LAW OFFICE,,K1000\nDES MOINES ORTHOPAEDIC SURGEONS,,J7120\nstudent,harvard university,H5100\nPRESIDENT-CHIEF CREDIT OFFICER,ALLEGIANCE BANK TEXAS,F1100\nDOCTOR,DR SIMON RAMO,Y4000\nPhysician,Emergency Physicians of Central Flo,H1100\nOwner,Ernie Bock & Sons,J1200\nINFO REQUESTED,\"SELF--WESLEY COMPANY & AFFILIATES, INC\",Y4000\nProfessor,\"Univ Of Calif, San Diego\",H5100\nPRESIDENT,BB&T - J. ROLFE DAVIS INSURANCE,F3100\nENGINEER,COMMSCOPE,M2000\nPhotographer,Self Retired,G5240\nFloor Broker,Self,F2100\nSVP GOVERNMENT AFFAIRS,COBANK,F1200\nEXECUTIVE,ARIEL INVESTMENT COMPANY,F2100\nCONSULTANT,PARAMOUNT PETROLEUM,E1100\nINVESTMENT PROFESSIO,DBL INVESTORS,J7400\nMANAGER,BUTTES OFFICES LLC,F4000\nARCADIA VALVE & FITTING CO,,M5000\nPresident,Sel-Employed,M2000\nPRESIDENT,CARSON PRIVATE CAPITAL,F0000\nCATTLE FEEDER,BASSETT FEEDING,Y4000\nGYNECOLOGIST,,J5100\nPRESIDENT,INTERSTATE PLUMBING,J1100\nSenior Vice Presiden,PG & E,E1300\nATTORNEY,\"COIA & LEPORA, LTD\",K1000\nTECHNOLOGY DIRECTOR,RAZORFISH,Y4000\nATTORNEY,\"CARROLL, BURDICK & MCDONOUGH LLP\",Y4000\nALLENTOWN BRAKE CO,,T2200\nfarmer/land owner,self,A1600\nPARTNER,HAAR & WOODS,K1000\nCOMPONENTS,KOCH SUPPLY & TRADING LP,E1160\nPARK RIDGE ANESTH GRP,,H1130\nEXECUTIVE,SEI,Y4000\nASSOCIATE ADMINISTRA,DAMAS HOSPITAL,H2100\nJUDGE,\"STATE OF OHIO, CYAHOGA CITY\",X3000\nVice President,\"L.S. Solutions, Inc.\",J7400\nOwner,Southeast Trucking,T3100\nPhysician,Pediatric Associate,H1130\nON CARE INC,,F2500\nCourt Clerk,Jackson County,X3200\nADIRONDACK ENERGY CONSORTIUM,,X1200\nPresident/CEO,McClure Builders,B2000\nASKLEPIOS HOSP CORP,,H2100\nFire Fighter/EMS,Goodyear Fire Dept.,L1400\nAttorney,ShrullAltman PC,Z9500\nPresident,\"The Plant Group, Inc\",Y4000\nPHYSICIAN,WHITE MT. SURGICAL SPECIALISTS,Y4000\nCONSULTANT/PUBLIC RELATIONS,LAURA MILLER,Y4000\nPRESIDENT-WESTERN REGIO,DMJM-HARRIS,B4000\nTECH CONSULTANT,HENSON DESIGN,Y4000\nPresident,Health Systems Services,Y4000\nOwner,York U Pack it,Y4000\nOWNER,JOHNSON MOTOR CO,Y4000\nVICE PRESIDENT,PARAGON BANK,F1200\nPartner,Thoma Cressey Equity Partners,F2100\nOWNER,IOWA EPS PRODUCTS,Y4000\nSTEVEN BOCHCO PRODUCTIONS,,Y4000\nLegislative Aide,SEIU Local 721,LG300\nPROGRAMMER,RBS INC,Z9500\nCEO,ENERGYUNITED,E1610\nCONSTRUCTION,EDIS COMPANY,Y4000\nCEO,Cook Area Health,H0000\nSelf-employed,Quick Enterprises,Y4000\nRegional Director,Guardian Life,F3100\nAttorney/Realtor,Case Properties International,F4000\nSTEEL WORKER,PACIFIC STEEL CASTING COMPANY,M2100\nDEALER,COMMUNITY TOYOTA,T2310\nDIRECTOR,IPSOS MARKETING,Y4000\nR S N BEAUTY SALON,,Y4000\nJOHN SCHAEFER,,Y4000\nStrategic Corporate Development,Mylan Inc,H4300\nINVESTMENTS,COLONY CAPITAL,F2600\nCEO,TGI HEALTHWORKS,Z9500\nOWNER,CARROLL&FROELICH PLLC,K1000\nGOODFELLOW BROS INC/PRESIDENT/CEO,,B1000\nFACC Division of Cardiovascular Medici,University of Florida,H5100\nPRESIDENT,\"GENE COX MECHANICAL CONTRACTOR, INC.\",G1200\nMAU HUMAN RESOURCE AND ST,,G5250\nATTORNEY,WILLIS GROUP HOLDINGS LIMITED,F3100\nSr. Web Developer,charity,C5120\nRETIRED,M J THOMPSON I I I,X1200\nINFORMATION REQUESTE,INFORMATION REQUESTED,F5500\nANESTHESIOLOGIST,ANESTH CONSULTS W COLOR,H1130\nMANAGER,\"ACCION, THE US NETWORK\",Z9500\nFOUNDER,CCEL,Y4000\nVP of Alternative En,\"Goldman (The) Sachs Group, Inc.\",F2100\nHAROLD W WELLS & SONS INC,,F3100\nPRESIDENT/CEO,CALIBRE,G5270\nArchitect,ArchiTRIO,Y4000\nINSURANCE AGENT,D.M. LOVITT,F3100\nPRESSURE CONTROLS INC,,M9000\nREAL ESTATE APPRAISER,COUNTRYWIDE BANK,Z9500\nBALL ASSOCIATES,,Y4000\nATTORNEY,FRAGOMEN DEL REY BERNSEN & LOEWY,K1000\nOwner,JRS Inc,Y4000\n\"Director, Instructional Technology\",University of Phoenix (UOP),H5300\nMORTGAGE BANKER,GUILD MORTGAGE,F4600\nCEO,PARTY RENTAL LTD,G5300\nWIDETT SLATER & GOLDMAN,,K1000\nCTO,HDMS,Y4000\nPresident,Western Wyoming Beverages Inc. Corpora,G2850\nRETIRED PHYSICIAN,NOT EMPLOYED,H1100\nCOAL MINE FOREMAN,O.V.C.C.,Y4000\nEXECUTIVE,SANDIA BMW,T2310\nSecretary,Sisters ofSt.,Y4000\nCATTLE HORSE BUSINESS,SELF-EMPLOYED,A3500\nbioethicist,self,Y4000\nENGINEER,GREAT LAKES AERO PRODUCTS,Y4000\nANESTHESIOLOGIST,ANESTHESIOLOGY GROUP ASSOCIATES,H1130\nNIVLA OIL COMPANY,,E1100\nOFFICE MANAGER,\"HC HAYNES, INC.\",Y4000\n,AMERICAN EXPRESS BUSINESS SERVICES,F1400\nIR,IR,F1000\nREAL ESTATE BROKER,\"GJELAJ & SONS, INC./REAL ESTATE BRO\",Y4000\nPRESIDENT,BOLTON CORPORATION,Y4000\nHealth Research,Kaiser Permanente,H3700\nINVESTOR,FILBERT MANAGEMENT,F4500\nRAMADA RAINTREE HOTEL,,T9100\nMANAGER,PEARSON EDUCATION,C1100\nPurchasing Manager,CMC,Y4000\nBOND BROKER,DENKRUWERS INC.,Y4000\nSPEECH-LANGUAGE PATHOLOGIST,COBB PEDIATRIC SERVI,H1130\nChief Operating Offi,Center Advanced Research And Tech,Y4000\nTHOMAS E BUSH S C,,K1000\nREAL ESTA,ROTHMAN SCHUBERT AND REED,F4000\nCHAIRMAN & CEO,SCHOTTENSTEIN STORES CORP.,G4100\nHEALTH KEY BEACON,,H0000\nT,INTREPID PERSONNEL & PROVISIONING,LT500\nDirector,San Joaquin Bank,F1100\nNW KANSAS EYE CLINIC,,H1120\nNorthridge Pain Mgmt,,Y4000\nOrthopaedic Surgeon,Beth Israel Deaconess Medical Ctr,H1130\nRegistered Nurse,Capital Manor Retirement,Y4000\nSPECIAL ADVISOR,ALSTON & BIRD LLP,K1000\nHEALTH OUTREACH,DANA FORBES CANCER,Y4000\nNSTI,,Y4000\nMONTEE LAW FIRM,,K1000\nD.V.FULLER & ASSOCIATES LLC,,Y4000\nAttorney,\"St Representative, District 116\",Y4000\nVice President,Thrasher Engineering,B4000\nAdmin,Georgetown University,H5100\nKlehr Harrison Harvey Branzburg & E,,K1000\n\"AKIN GUMP, STRAUSS\",,K1000\nREAL ESTATE,CANTAMOUNT MANAGEMENT,F4000\n\"BOWEN, MCKENZIE & BOWEN\",,K1000\nExecutive,The Stride Rite Corporation,X4100\nGAYLA INDUSTRIES,,Y4000\n\"Vice President, Federal Affairs\",Center for Responsible Lending,X4000\nMVI HOMECARE,,Y4000\nREAL ESTATE DEVELOPMENT,,H2100\nArea Manager,Enterprise Rent-A-Car Company,T2500\nSENIOR BUYER,\"SIMS METAL MANAGEMENT, INC.\",J5100\nAttorney,David Burnett Law Office,K1000\nOWNER,ABC DISPOSAL,E3000\nMILES ONISHI & ASSOCIATES INC,,Y4000\nPHYSICIAN,PENMANEULE MEDICAL GROUP,Y4000\nSITE DIRECTOR,NORTHROP GRUMMAN,D5000\nPRESIDENT & CEO,\"ESTRADA HINOJOSA & CO., INC. INVESTMEN\",Z9500\nTHE DONALD & SYLVIA ROBINSON FOUNDA,,X4100\nPHYSICIAN,MIMG,Y4000\nExecutive Chairman,Macon Bank,F1200\nATTORNEY,\"EBERSTEIN & WITHERITE, LLP/ATTORNEY\",Y4000\nJAY ASSOCIATES,,Y4000\nRICHARDS ENTERPRISES,,B1000\nVICE PRESIDENT FINANCE,EDS,C5130\nrequested,Superior Natural Gas Corp.,E1140\nUPPER MANAGEMENT,BECKER UNDERWOOD,A4100\nBOETTECHER & CO,,F2100\nHINES CO,,Y4000\nATTOR,HEALTH FACILITIES ASSOCIATION,H2000\nAttorney,butzel long,K1000\nRESEARCH ENGINEER,GEORGIA TECH RESEARCH INSTITUTE,Y4000\nTrader,\"U. B. S. O'conner\",F2100\nPEST MANAGEMENT,SELF-EMPLOYED/PEST MANAGEMENT,G5700\nASHEVILLE C V SURGEONS,,Y4000\nCHARLES E SMITH CO,,F4000\nPHYSICIAN,UT-MD ANDERSON,Y4000\nSoftware Developer,MySQL Inc.,J1200\nPresident,National Church,X7000\nPresident/Owner,\"Shop Rite Of Hunterdon County, Inc.\",Y4000\nFUND MANAGER,TAURUS PARTNERS,Y4000\nOwner,Basler Electric Co,B3200\nMDC INC,,Y4000\nOWNER,MAJOR EQUIPMENT & REMEDIATION,G5200\nSENIOR VICE PRESI,COCA-COLA COMPANY,G2600\n\"DONOVAN, LEISORE, NEWTON & IRVINE\",,K1000\n\"DIRECTOR, FEDERAL AFFAIRS\",DTE ENERGY,E1600\nInformation Requested,Dreamkeepers Inc,Y4000\nNON PROFIT MANAGEMENT,CANAL CORRIDOR ASSOCIATION,Z9500\nNONE,BUTTE COLLEGE,H5100\nGONZALES BORING & TUNNELING I,,Y4000\nFINANCIAL SERVICES,TRI-COUNTY BANK,Y4000\nCOLBY-SAWYER COLLEGE,,H5100\nKIDS PEACE,,Y4000\nCOO,GDG,Y4000\nATTORNEY,KINSEY INTERESTS INC.,E1120\n(2) County Commissioner,\"(1) Paul Curry Homes, In\",B2000\nConsultant,Wineshop at Home,Y4000\nWACONIA TREE FARMS,,A5000\nTeacher,Retired,X1200\nAttorney,BSF LLP,Z9500\nREAL ESTATE,NAJAFI COMPANIES,F2600\nManager,\"Caremark Rx, Inc\",H4400\nWarehouse Manager,Digital Dish,G4200\nDirector Of Faciliti,\"Morgan, Lewis, Bockius Llp\",K1000\nInsurance Executive,Brokers Clearing House,F3000\nComputer Service,\"PS Web Works, Inc\",Y4000\nCOMP CONTROLS CORP,,Y4000\nENTREPRENEUR,TABLET INC.,Y4000\nNORTH IDAHO EYE INSTITUTE,,H1120\nTHE CAPITOL ALLIANCE,,G0000\nPresident,Odessa College,H5100\nSABROSO COMPANY,,Y4000\nSALES,CALPEX PLASTICS INC.,Y4000\nPRESIDE,HANCOCK INVESTMENT SERVICES,F0000\nDirector,Hubbard Broadcasting,C2100\nHERSHALL CORP./OWNER/SOFTWARE CONSU,,C5120\nPublic Policy,Self employed,G5210\nPsychotherapist,West Central Behavioral Health,Y4000\nMUUS & COMPANY,,F4000\nGENERAL MANAGE,BENCO ELECTRIC CO-OP,E1610\nFAIRMONT HOTELS,,J5100\nDAILY NEWS PUBLISHING COMPANY,,C1100\nEXECUTIVE,SQUERI FOODS,Y4000\nTHE BALF COMPANY,,J7400\nSystems Engineer,Perimeter Watch,Y4000\nPRESIDENT / COO,BAYLOR SCOTT & WHITE HEALTH,H2100\nDEAN OF AGRICULTU,AUBURN UNIVERSITY,H5100\nPRESIDENT,ORANGE COMMERCIAL CREDIT,F1400\nCEO,Motorists Insurance,F3100\nCEO AND CHAIRMAN,KELLMAN GROUP,J5100\nFinance Manager,The Coca Cola Company,G2600\nRETIRED COUNSELOR,,X1200\nATTORNEY,CURRENTLY UNEMPLOYED,F2300\nPHYSICIAN,HERNANDO RADIOLOGY,H1130\nATTORNEY,RADCLIFFE & ASSOCIATES,K1000\ncfo,John Cannon Homes,B2000\n\"ELECTRICIAN,\",ELECTRICAL CONSTRUCTION CO.,B1500\nConsultant,\"Quickcycle Consulting, LLC\",Y4000\nAPCO & ASSOCIATES,,G5210\nSECURITY ANALYST,CUBIC,D3000\nINVESTMENT,WEST HILL INVESTORS,F0000\nOfficer,SEIU,LG300\nWHITWORTH FARMS,,Y4000\nInformation Requeste,ABRY Partners,F2600\nVALLIANT PUBLIC SCHOOLS,,X3500\nCLINICAL CARDIOLOGY/GENERAL CARDIOLOGY,\"University of Missouri-Columbia, Schoo\",H1100\nAttorney at Law,Griffin & Gallagher,K1000\nGREEN ASSOC,,H1130\nIns. Broker,\"Nathan Lane Agency, Inc.\",Y4000\nDIRECTOR,RUSSELL COMPANY,Y4000\nCook/Baker,Yosemiye Community College District,H5100\nGDX AUTOMOTIVE,,T2000\nINSURANCE,TEXAS TRUCK CENTER,Y4000\nSWB NEW ENGLAND,,Y4000\nCOMWEB SALES,,Y4000\nAttorney,Nickens Keeton,K1000\nRetired,University of Oklahoma,H5100\nFinance Director,Pricewaterhousecoopers,F5100\nGENERAL COUNSEL,VESTAR,F4000\nBROKER,DJJ,Y4000\nPHYSICIAN,ST LUKES MEDICAL CENTER,H2000\nORGANIZATION DIRECTOR,TFB BUSINESS CORPORATION,A6000\nPETERSEN ENTERPRISES,,Y4000\nA. & G. HEALTHCARE SERVIC,PRESIDENT,G0000\nAUTO DEALER,ARLINGTON AUTOMALL,T2300\nCEO,TMAC,Y4000\nFREIGHT FORW,\"USAMEX LOGISTICS, L.C.\",Y4000\nInsurance Sales Manager,Rogers Benefiet Group,F3100\nVice President,Keith & Schnars,Y4000\nPILOT,REQUESTED,T0000\nEXECUTIVE,ANGELO GORDON,F2700\nBehavioral Health Specia,Self employed,Y4000\nDIAGNOSTIC RADIOLOGIST,NORTHSIDE RADIOLOGY ASSOCIATES,H1130\nEducator,Fermi Research Assoc,J7400\nPHYLLIS HAWKINS AND ASSOC,SELF-EMPLOYED,Y4000\nACADIAN ASSET MGMT,,Y4000\nMICHIGAN PROTECTION & ADVISORY SERV,,Y4000\nI,\"SF & C INSURANCE ASSOCIATES, INC.\",F3100\nPRESIDENT,EXPRESS MARINE,T6200\nBookkeeper,Self: Szabo Office Services,J1200\nINVESCO SERVICES,,F2300\nFARM BUREAU INSUR,,J1100\nSR. VP,JCL HEALTH NETWORK/SR. VP,H2100\nReal Estate,Hazel Investments L P,Z9500\nDISTRIC,WHITE PLAINS PUBLIC SCHOOLS,X3500\nVICE PRESIDENT,JOHN  HANCOCK,F3100\nFAMILY PHYSICIAN,LAHEY CLINIC,H1100\nPRESIDENT,WHARTON AUTO GROUP/PRESIDENT,T2300\nExecutive in Charge of Programming,Conde Naste,C1100\nPEI PARTNERSHIP ARCHITECTS,,B4200\nHUMAN RESOURCE MANAGER,FLIGHT SAFETY INTERNATIONAL,T1600\nHOMEMAKER/N/A,,J5000\nAttorney,Law Offices of Webster & Anderson,K1000\nEYE CONSULTANTS,,H1120\nAL-JON,,Y4000\nCOUNCIL,BAKER & HOSTETLER,K2000\nTHE QUANDEL GROUP INC,,Y4000\nPHYSICIAN,SELF EMPLOYEE/PHYSICIAN,H1100\nENGINEER,MAVERICK SYSTEMS INC,J1100\nAPPRAISER,,F0000\nE J DE LA ROSA & CO,,F2100\nCHIEF OF COMMUNICATIONS,AV NET,Y4000\nBus. Developer,General Dynamics,D3000\nENGINEER,NETAPP,Z9500\nExecutive Director,Fragomen,K1000\nVice President,Turner Development,Y4000\nPRESIDENT,LARSON PALLET COMPANY,G1200\nHEALTHCARE EXECUTIVE,KENNON S. SHEA & ASSOCIATES,Y4000\nMARION CREDIT,,Y4000\nAttorney,\"Kessner Umebayashi Bain, Etc\",Y4000\nBUSINESS MANAGER,SCOTT JORDAN FURNITURE INC.,Y4000\nATTORNEY,MCDONALD & HOPKINS L.L.C.,K1000\nColumbia Sportswear Co.,,M3100\nPhysician,China Medical Board,H1100\nConsultant,Level Six,J1200\nREAL ESTATE INVESTOR,CAPITAL REALTY SERVICES IN,J5100\nPRESIDENTCEO,IMAGINE PRINT GROUP,C1300\nInvestment Advisor,\"Rockport Group, LLC\",F4100\nSYSTEM PLANNING MANAGER,MISSISSIPPI POWER COMPANY,E1600\nPARTNER,WYNNEFIELD CAPITAL,J5100\nATTORNEY,LEWIS & ROCA PARTNERS/ATTORNEY,Y4000\nPresident,Joseph W Kozlik Esq,Y4000\nSENIOR,FACING HISTORY AND OURSELVES,J1200\nCEO,Run on Sun,Y4000\nSTW FIXED INC MGMT,,F2100\nCONSULTANT,MARK CAPITOLOS/CONSULTANT,Y4000\nReal Estate Broker,Infinity Real Estate Services,F4000\nVP,Union Planters Mortgage,F4600\nPIONEER NEWSPAPER INC,,C1100\nDOCTOR,\"KWEI LEE SU,  PHD\",Y4000\nINFO REQUESTED,Ucc Total Home,Y4000\nCONSULTANT,S.J. MARINE INC.,Y4000\nInformation Requeste,Manzella Personal Mgmt,C1000\nArthor,Information Requested,G0000\nMAN,FLEX EXECS MANAGEMENT SOLUTIONS,G5250\nPRESIDENT,GARRISON INSTITUTE/PRESIDENT,X4000\nAttorney,Gregory Tucker Law Offices,K1000\nAccountant,\"Bell Consulting, LLC\",Y4000\nCARIDAD RESTAURANT,,G2900\nEngineer,AB4World,Y4000\n\"NAT'L CITY BANK\",,F1100\nREGIONAL MANAGING DIRE,PHOENIX LIFE,Y4000\nFOUNDERS TRUST CO,,F2000\nManagement Consultant,Wadley-Donovan Group,Y4000\nINVEST,VIKING CAPITAL PARTNERS INC.,F0000\nResearch Associate,Genentech Inc,H4500\nPolitical Organizer,Self-employed,G5200\nPACIFIC CARE,,Y4000\nOWNER,\"INSURANCE CLC, INC.\",F3100\nDIAMONSTEIN BECKER,,Y4000\nPRESIDENT,NERE,Z9500\nPROFESSOR,ST. LOUIS UNIVERSITY SCHOOL OF LAW,Y4000\nFIXED INCOME SECU,FINAT U.S.A. INC.,Y4000\nCENTURY FURN,,G4400\nPhysician,Bala Cynwyd Med Association,Y4000\nREADY MIXED CONCRETE COMPANY,,B5100\nCHAIRMAN,STAR BANK,F1100\nAttorney,Howard Hughes Medical Insitute,H5150\nPresident,Praxis Communications Strategies,Y4000\nNEW LONDON AGENCY,,Y4000\nPRES,\"UNITED STUDENT AID FUNDS, INC.\",F1400\nSELF-EMPLOYED,\"OHM OPERATING, INC./SELF-EMPLOYED\",Y4000\nSALESPERSON,RARE PARTS INC.,Y4000\nExecutive VP,First Southwest Company,Y4000\nOwner,J S  Architects,B4200\nGENRAD,,Y4000\nEXECUTIVE,\"G. S. HOLDINGS, INC.\",Y4000\nMANAGEMENT EX,SECOND STORY SOFTWARE,C5120\nDUNHAM & SMITH INC,,Y4000\nSales,Adams Litho,C1300\nOWNER,HANDI HOUSE,Y4000\nCHARLES P BLOUIN COMPANY,,X3000\nManager,Lakefront SRO,Y4000\nNONE,,F1400\nReal Estate Broker,Remax Peninsula,Y4000\nATTO,\"GUNSTER, YOAKLEY & STEWART, PA\",K1200\nVic Pres,\"Sweeney, Com.\",Y4000\nTRUSTEE,EASTERN L.I. HOSPITAL,H2100\nOWNER,JPB CONSULTING COMPANY/OWNER,J6200\nADMINISTRATOR,\"MASS. DEP'T. OF MENTAL RETARDATION\",X3000\nCommercial Designer,Self-Employed,G0000\nSHIPPING/RECEIVING CLERK,PLANK ROAD PUBLISHING INC.,C1100\nATTORNEY,PERDUE & CLORE L.L.P.,K1000\nInformation Requeste,American Key Inc,F4200\nIR,\"Points of Interest Travel, Inc.\",Y4000\nDALE S GRIBOW,,Y4000\nTRAINING DIRECTOR,STUDIO ONE PILATES,Y4000\nEX-Regional Vice President,\"ERAC CO of Cincinnati, LLC\",T2500\nVP of ATCALS,Sierra Nevada Corporation,D3000\nBUSINESS OWNER,BCSI,G0000\nCATERER,WILTON CATERERS,G2910\nTHE STRATFORD GROUP,,F4000\nORTHOPAEDIC SURGEON,SEATTLE CHILDRENS HOSPITAL,H1130\nLOBBYIS,GRIFFIN JOHNSON DOVER ET AL,K2100\nRetired TA,Harnett County Schools,X3500\nSPECIAL ASSI,NYS DIVISION OF PAROLE,X3200\nSANDBERG PHOENIX & VON GONTARD,,K1000\nCEO,WILLIS-KNOXVILLE,Y4000\nRET,RETIRED FROM ANTIOCH UNIVERSITY,Z9500\nCEO,\"Trados, Inc.\",Y4000\nConsultant,Computer Technology Corp,Y4000\nCONSULT,AMERICAN BIN & CONVEYOR LLC,B5100\nCLIMATIC CORPORATION,,B3400\nHULT AND ASSOCIATES,,Y4000\nMINNIELAND SCHOOL INC,,Y4000\nPartner,Superior Marketing Group LLC,Y4000\nDEVILBISS HEALTH CARE,,H4100\nN-E-D CORP,,Y4000\nPOLITICAL CONSULTANT,ARMOURMEDIA,Y4000\nWriter/producer,Self,C2000\nC.P.A.,\"JONES, SCHILLER & COMPANY\",F5100\nCONTRACTS MANAGER,GE OIL & GAS,Z9500\nSALES OPERATIONS MANAGER,PENWELL PUBLISHING,Z9500\nGraduate Instructor,University of Missouri,H5100\nLAWYER,CBS,C2100\nVICE PRESIDENT,\"VANNER BENEFITS, LLC/VICE PRESIDENT\",Y4000\nEXECUTIVE,\"G2 PARTNERS, LLC\",Y4000\nPRESIDENT AND CEO,\"THE ONYX MEDIA GROUP, EVS COMMUNICATIO\",Y4000\nTraffic Analyst,Verizon Business International,J1200\nTeacher,The Common School,J1200\nDATA MGR,NYS SENATE MINORITY LEADER,J1200\nMONEY MANAGEMEN,FIDELTY INVESTMENTS,F2100\nNY STATE OFF. ALCOHOLISM & SUB. ABU,,X3000\nAgribusiness,Self Employed,A0000\nATTORNEY,MUAWAD & MUAWAD,Y4000\nOWNER,\"CHELSEA COMPANY, NEW HAVEN CT\",F4500\nFarmer,Devine/Wood Farming,Y4000\nSHANGHAI MEDICAL GROUP,,H1700\nCERTIFIED PUBLIC ACC,FRED M KAPLAN CPA,F5100\nFARMER-LIVESTOCK,,A1000\nAdministrator,College of Visual Arts,H5100\nATTORNEY,SOUTHERN MN REGIONAL LEGAL SERVICES,Y4000\nACCOUNTANT,\"PELCO INVESTMENTS, LLC\",F7000\nWEXLER REYNOLDS FULLER ETAL,,K2000\nROCKLAND ELECTRIC CO,,J5100\nLAWYER,\"HAHN, HOWARD & GREENE, L.L.P.\",K1000\nTEACHER,FORT ZUMWALT,Y4000\nBANK OF ALTON,,F1100\nJ H LEA & SONS,,Y4000\nFINANCE EXECUTIVE,DESIGN GROUP SIGNAGE CORP.,Y4000\nConsultant,\"Tate Strategies, Inc.\",Y4000\nATTORNEY,\"ROSNER LAW OFFICE, P.C./ATTORNEY\",K1000\nPolicy Advisor,Akin Gump Strauss Hauer & Feld Llp,K1000\nATTOR,\"WATSON, SPENCE, LOWE & CHAMB.\",A1600\nDirector - IT Servic,\"Group 1 Automotive, Inc.\",T2300\nPROPERTY MANAGER,\"MURRAY ENTERPRISES, LLC/PROPERTY MA\",Y4000\n\"MANGER, EARTH SCIENCE PUBIC ENGAGEMENT\",JET PROPULSION LABORATORY,Z9500\nmanager,Shailendra Group,B1000\nHURST LUMBER,,B5200\nCHIROPRACTOR,,E1200\nJAMESTOWN METAL MPRINE,,Y4000\nSAILORS OF THE PACIFIC,,J1200\nInsurance Broker,Latino Express Insurance,F3100\nTHOMPSON INTERIORS,,Y4000\nAssistant to Commissioner,NJ Department of Education,X3000\nSTAFF RESERVOIR,SOUTHWESTERN ENERGY,E1120\nPATHOLIGIST,,F2700\nExecutive Staff,Oklahoma Community Action Agen,X4100\nEXECUTIVE,\"GUARDSMARK, LLC\",G5290\nCertified Public Accountant,Frazier & Assoc.,Y4000\nGRACE DAVISON,,Y4000\nR&D MANAGER,PHILIPS ELECTRONICS,C5000\nBROADCASTER,WCTC,C2100\nPhysician,Ian I Lipsitch,Y4000\nACTOR & FARMER,,C2400\nPresident,Aurora Vending Co.,Y4000\nattorney,\"Lipsitz & Ponterio,\",K1000\nATTORNEY,\"THE VAKULA LAW FIRM, PC\",K1000\nCOLORADO COMPUTING CORP,,Y4000\nPhysician,U. of MS. School of Medicine,J1200\nIndustrial Construct,Self,B1500\nDATA ANALYST,BELCAN TECH SERVICES,Y4000\nWESTERN DEVELOPMENT INC,,J1200\nAsst Vice President,Aon,F3100\n\"GOV'T AFFAIRS C\",JORDAN & ASSOCIATES,J1200\nFT HAMILTON HUGHES,,Y4000\nPRESIDENT/CEO,\"APEX PIPING SYSTEMS,INC\",Y4000\nCONSULTANT,\"MCELHATTON & FOLEY, P.C.\",G5200\nOwner,Source Futons & Wallbeds,Y4000\nAREA SALES MANAGER,LUNDBECK LLC,H4300\nVice Chairman - Member at Large,Colorado State Board of Education,C1400\nPATHOL,ADVOCATE SOUTH SUBURBAN HOSP,H1130\nVICE PRESIDENT,Merck & Co,H4300\nENGINEER,TRIDENT SYSTEMS,D3000\nBOOKSTORE MANAGER,WESTERNMANAGMT INT/BOOKSTORE MANAGE,Y4000\nCONSULTANT,\"SIXKILLER CONSULTING, LLC\",K2000\nIT Project Manager,LPS,Y4000\nPrincipal,Goldberg Kohn,K1000\nBAKER DONELSON ET AL.,,K1000\nManufacturing,Requested,M0000\nAttorney,Ctr For Death Penalty Litigation,Y4000\nCUSTOM MINISTRY MUSIC INC,,C2600\nTAX ACCOUNTANT,,H4600\nPhysician,Columbia Anesthesia,H1130\nCEO,State Bank of Alcester,F1100\nTv Director,Self,C2100\nPRESIDENT,PIEDMONT NATURAL GAS,E1140\nSpecial Consultant,Opus Capital,F0000\nGOVERNMENT OFFICIAL,U.S. DEPARTMENT OF DEFENSE,X5000\naerospace & defense,Self Employed,T1000\nSENIOR,STARWOOD CAPITAL GROUP L.P.,F4000\nPRESIDENT - AEP TRANSMISSION,AEP,Y4000\nPROFESOR,OHIO WESLEYAN UNIVERSITY,JE300\nCONST,DRYMALLA CONSTRUCTION COMPANY,B1500\nPRODUCTION MANAGER,GRACO INC,M2300\nBUSINESS MANAGEMENT,SELF,Z9500\nHUBBELL REALTY,,F3300\nNRG SYSTEMS,,M9000\nSunset Internal Medicine & Geriatri,,Y4000\nprogrammer,CodeSherpas Inc,Y4000\n\"ROBINSON, LEWIS, ET AL\",,K1000\nNORWEST GENERAL CONTRACTORS,,B1000\nSMITH CHEVROLET-CADILLAC,,T2300\nPHYSICIAN,UAB ANES. DEPT.,H1130\nROBERT P SHIELS & ASSOC,,Y4000\nHOT SPRINGS DIAGONSTIC,,H1130\nExecutive,Heritage Health Solutions,Y4000\n\"POMERANTZ, LEVY, HAUDEK\",,K1000\nCONSULTANT,\"SELF, RICHARD KATZ CONSULTING, INC\",Z9500\nC.F.O.,CARDON HEALTHCARE NETWORK,H3000\nCEO,BARRERAS INC.,Y4000\nAFFINITY GROUP SYSTEMS INC,,Y4000\nKORTE LUITJOHAN EXCAVATING CONTRS,,B1000\nSOFTWARE DEVELOPER,TECHNICAL REALITY LLC,Y4000\nAdminstrative,Stevenson Group Corporation,Y4000\nCEO AND PRESIDENT,\"MYCARE TEAM, INC.\",Y4000\nAMERICAN TRUST BANK,,F1100\nPHYSICIAN,CFVMC/PHYSICIAN,Y4000\nSONY CORPORATION OF AM,,C5000\nCARTER COMPANIES,,Y4000\nEquestrian,Self employed,A3500\nGILSON INC,,J7400\nRETIRED,MOUNTAIN EDUCATION CENTER HIGH SCHOOL,Y4000\nTAX LAWYER,LATHAM & WATKINS L.L.P.,J1100\nWILLIS CORROON CORPORATION OF MO,,F3100\nPHYSICIAN,HOUSTON NEUROCARE,Y4000\nESTIMA,MOUNTAINEER CONTRACTORS INC.,B1500\nTHE BANK OF CARBONDALE,,Y4000\nINVESTOR,ARCA FOUNDATION,X4100\nAttorney,Corrigan & Associates,K1000\nANGEL INVESTOR,SELF EMPLOYED,F7000\nINVESTMEN,FIDUCIARY MANAGEMENT INC.,F5000\nAR,\"NORTHERN LAND USE RESEARCH, INC.\",Y4000\nSpecial/Develop Ed,MEDFIELD SCHOOL DISTRICT,L1300\nCOUNCIL MEMBER,CITY OF PALO ALTO,X3000\nPresident,AZ Cattle Growers Assoc.,Y4000\nOWNER,WAGNER FIRM,Y4000\nINSURANCE BROKER,CONNER SRRONG,F3100\nHOYNE SAVINGS BK,,F1200\nMortgage Broker,Jlfinancial Corp.,F4600\nCEO/Producer,Castle Rock Entertainment,C2400\nROBERT SUTRO REALTY INVESTMENTS INC,,F4200\nVice Chairman,Commerce National Insurance,F3100\nFOUR STATES FEEDYARD INC,,Y4000\nRIX DUNNINGTON INC,,Y4000\nLand Developer,Ladds Inc.,H1400\nCLOSE ENCOUNTERS,,J7150\n\"DIRECTOR, CONVENTION, MTNGS & TRAVEL\",AMERICAN FEDERATION OF TEACHER,L1300\nMALIN BERGGUIST & CO,,Y4000\nR H MACY AND COMPANY,,G4300\nCertified Public Acc,\"Stevens, Sloan & Shah\",F5100\nPRESIDENT,NORTHWESTERN RECA INC.,E1610\nA VARGAS MDPA,,H1100\nSr Managing Director,AMEX Tax & Business Services,F1400\nPresident,Briggs Equipment,F3300\nEXEC.,VANTIS CAPITAL MANAGEMENT LLC,F2100\nOWNER,SUPPLY SOURCE INC.,G4400\nCEO,\"TESSENDERLO KERLEY, INC.\",A4100\nCHIEF PEOPLE OFFICER,JETBLUE,Y4000\n\"SAINT AUGUSTINE'S COLLEGE\",,H5100\nIT Executive,Self-Employed,G0000\nAttorney,Rupp Baase Pfalzgraf,K1000\nNURSE,ARBOR TERRACE ASSISTED LIVING HOME,H2200\nPRESIDENT,SUN SYSTEM SALES & MARKETING,Y4000\nSr VP for Sugar Ops,Us Sugar Corporation,A1200\nSUSTAINABLE DEVELOPER,SELF,Y4000\nWRITER,POINT MADE FILMS,C2400\nATTORNEY,DEFUR VORAN ET AL.,K1000\nBUSINESSMAN,TRINITY INDUSTRIES,T5200\nprogrammer,file shoppe,Y4000\nLAWYER,COVINGTON AND BURLING LLP,Z9500\nGEO WASHINGTON UNIV MED,,H5150\nCEO,\"TELLUS, LLC/CEO\",Y4000\nHAMILTON MED CTR,,Y4000\nexec,\"New Millenium Wind Energy, LLC\",E1500\nGAMING SYSTEMS INTL,,G6500\nREAL ESTATE AGENT,THE GIAMO GROUP,Y4000\nConsultant,Melamed Communications,G5260\nCOLTEC INDUSTRIES INC,,D2000\nDENTIST,MICHAEL J. MALLEY DDS. MS. PC,Y4000\nKEFFER DODGE,,T2300\n\"Professor, School Of\",\"University Of California, Davis\",H5100\nATTORNEY,MCTEAGUE HIGBEE CASE COHEN WHITNEY,K1000\nPATHOLOGIST,ALTA EAST BAY PATHOLOGY MEDICAL GROUP,Z9500\nPRESIDENT/CHIEF OPERATING OFFICER,\"AMERICA'S AUTO AUCTION, INC.\",T2300\nSR MANAGEMENT SVCS INC,,H2200\nOregon Public Utility Commissioner,State of Oregon,X3000\nABBOTT & HAST MORTUARY,,G5400\nSTATE OF TEXAS/ARCHITECT/PROJECT MA,,B4200\nINTERNATIONAL CARBONIC INC,,Y4000\nEngineering Executive,Maverick Technologies LLC,Y4000\nSales Executive,Acuity Brands,Y4000\nFULL TIME EMPLOYEE,FLA. PEST CONTROL,G5700\nPROTFOLIO MANAGER,BLACKROCK,F2100\nPRODUCER,BAD ROBOT PRODUCTIONS,C2300\nExecutive Vice Presi,\"Mellott Enterprises, Inc.\",B5100\nJPW RIGGERS & ERECTORS INC,,Y4000\nPUBLIC RELATIONS AND MARKETING MANAGER,GOOD FOODS INCORPORATED,G2400\nIRVING POLICE DEPARTMENT,,X3200\nWOODRUFF ARTS CENTER,,Y4000\nPresident,Goode Motor Auto Group,T2300\nJOHNSON DEVELOPMENT/PRESIDENT/OWNER,,F4100\nU OF D PROF,,H5100\nOWNER,HIS PAINTING MFG.,B3000\nExecutive,Jolen Productions,Y4000\nSR. VP AND CFO,GUIDEONE INSURANCE,F3400\nPresident,\"Stoney Point Agri Corp., Inc.\",A3300\nPRESIDENT,CASINO FANDANGO,G6500\nPresident,\"Artistech, Inc.\",Y4000\nTELECOM EXECUTIVE,NORTHEASTERN PA TELEPHONE,C4100\nexec,The berkely Group,F4000\nENGINEER,MASSACHUSETTS MUTUAL LIFE INSURANCE CO,F3300\nPresident,Matovina & Company,B2000\n\"MAXWELL'S PLUM\",,G2900\n\"Vice President, Mult\",Pfg - Afi Foodservice,G2910\nLand Owner,Self Employed,F4000\nSENIOR VICE PRESIDENT,PUGET SOUND ENERGY/SENIOR VICE PRES,E1620\nPRESIDENT,SILVER SPRING CAPITAL,Y4000\nChairman Emeritus,Lusardi Construction Co,B1500\nManaging Partner,Greentech Capital Advisors,F2100\nNATIONAL CITY HARDWARE,,G4500\nHomicide Prosecutor,Ventura District Attorney,K1000\nLANDMAN,CONTINENTAL LAND SERVICES,Y4000\nJ R NORTON COMPANY,,G5200\nConsultant,Mcguirewoods Consulting LLC,K2000\nSENIOR VICE PRESIDENT,STERIS,H4100\nCEO,PASQUERILLA ENTERPRISES,T9100\nPRESIDENT,MUTUAL 1ST FCU,F1300\nMd,Eye Clinic of Racine,H1120\nOwner,Eagle Enterprises,Y4000\nFinancier,Self Employed,F0000\nWEIN MALKIN AND BETTEY,,Y4000\nNutritionist,Self Employed,H1700\nCRNA,Wilford Hall Medical Ctr - Lockland AF,H1710\nALBERT D SEENO JR CONSTRUCTION,,B2000\nMD,Timberstone Family Pysicians,J1200\nEXECUTIVE,CROSSLAND MORTGAGE,F4600\nDIOMEDE,,Y4000\nCONSULTANT,\"INDEPENDENT AMERICAN ENERGY, LLC\",Y4000\nTHE TECHS,,Y4000\nPresident,Chapman University,H5100\nExecutive,Alion Science & Tech,J5000\nSENIOR VICE PRESID,CIGNA HEALTHCARE,H3700\nCOMPASS INSURANCE,,F3100\nNURSE,\"EAST CAROLINA UNIV,\",H5100\nPRESIDENT,POST WINERY,G2820\nAttorney,Mutual of Omaha Insurance Company,Z9000\nPHYSICIAN,FAIRVIEW RED WING MEDICAL CENTER,H1100\nHEALTHCARE ADM,VERTERANS ADMINITRAT,Y4000\nCAIN & BULTRAM INC,,B5200\nPEDIATRICIAN,BANNER HEALTH,H2100\nManaging Director Organizing,Maryland State Teachers Association,L1300\nDIRECTOR CONTENT,E*TRADE GROUP INC,F2100\nManager,AM General,F3100\nPhysician,Semaritan Center,Y4000\nExecutive Vice Presi,Christopher B. Burke Engineering Ltd.,B4000\nOwner,Micromarketing Llc,Y4000\nGeorgia Institute of Technology,Student / Grader,J1200\nPresident and CEO,Vanco Energy Company,E1150\nMEDIA CONSULTANT,CUE,Y4000\nOWNER,THOMPSON ORDER BUYING,Y4000\nretired teacher,L. A. Unified Sch. District,J1200\nBanking,Fhlbank Atlanta,F4600\nSecretary,Husband,Y4000\nFLORIDA POWER AND LIGHT,,J1100\nATTORNEY AT LAW,KOCH & REGAL,K1000\nKEYBANK NATIONAL,,F1100\nVICE PRESIDENT,TENTAK SUPPLY COMPANY,Y4000\nManager,Edward Britton Company,Y4000\nH A MANAGEMENT,,H5200\nJD,Robert Half Legal,Y4000\nCOORDINATOR,MADE INC.,Y4000\nPresident,Dillards Inc,G4300\nAttorney,\"Int'l Intellectual Prop. Alliance\",J1200\nAMERICAN LAWYER MEDIA,,C1100\nJ.S. FOODS,,G2400\nDealer,Baranco Acura,T2310\nPRESIDENT,COPORATE RECEIVABLE INCORPORATED,Y4000\nGANNET WESTCHESTER NEWSPAPER,,C1100\n\"Senior Vice President, Content/ Prog\",Comcast,C2200\nSPENCER & SPENCE,,Y4000\nBUILDER,SELF-EMPLOYED,B3000\nAdministrator,California Retail Systems,Y4000\nBEVERAGE DISTR,HORIZON BEVERAGE CO.,G2850\nWORD PROCESSOR,SPHERION,G5200\nRETIRED,LT COL USAF (RET),Y4000\nPRESIDENT,\"CARRUTH MANAGEMENT, LLC\",F4100\nREGIONAL VICE PRESIDENT,LINCOLN PROPERTY COMPANY,Z9500\nPresident/CEO,Mainline Info Systems,Y4000\nHUGHES CO INC,,Y4000\nBUSINESSMAN,MONCRIEF PROPERTIES,F4000\nDOCTOR,OKLAHOMA ONCOLOGY,H1100\nReal Estate,The Georgetown Company,G5270\nAD EXECUTIVE,\"CREATIVE IMAGES, LTD\",Y4000\nPresident,Hanratty & Assoc,Y4000\nCONSOLDATED CLEANING,,G5500\nNetwork Administrator,Chickasaw Holding Company,Y4000\nmanagement,\"Luiginos's Inc\",G2100\nInformation Requeste,\"Sunshine, Sachs & Associates\",Y4000\nCONSULTANT,\"GOLDWIN INTERNATIONAL STRATEGIES, LLC\",Y4000\nFINANCE,H.M.C.-N.Y.,F2000\nEXECUTIVE,PAN BROTHERS,F4100\nPHYSICIAN,MCNEC,Y4000\nOWNER,ENTERTAINMENT CONCEPTS,Y4000\nBUSINESS,TRABERT & HOEFFER,G4600\nVP I,FENWAL AUTOMATED COMPONENT COL,H4100\nUNIV OF MEDICAL SCHOOL,,H5150\nSOFTWARE ENGINEER,ORACLE AMERICA,J1200\nMANAGEMENT CONSULTING,IBM,C5100\nATTORNEY,ELLER & DETRICH,Y4000\nEXECUTIV,TONER CABWS EQUIPMENT INC.,Y4000\nMANAGEMENT,CONITEX SONOCO,M8000\nWGM GROUP,,B4000\nAttorney,\"Taylor, Colicchio, et al\",K1000\nINVESTMENT FIRM,KKR,F2600\nMILL-MAX MFG CORP,,Y4000\nDirector,Tufts University,H5100\nOWNER/CEO,C & R DEVELOPMENT,F4100\nEXECUTIVE,ELWOOD RANCH/EXECUTIVE,Y4000\nMARKETING CONSULTANT,SOLAR MANAGEMENT/MARKETING CONSULTA,Y4000\nBROWNSTEIN FARBER,,K1000\nHEALTH & WELLNESS,SELF-MELALEUCA,Y4000\nINFO REQUESTED,Flowers By Nine,A8000\nC D SMITH DRUG COMPANY,,Y4000\nPlsnt,Retired,J1200\nPhysicrst,Nist,Y4000\nGGB ENTERPRISES/REAL ESTATE/INVESTM,,F4000\nSUSAN TREES,,Y4000\nCEO,AECG LLC,Y4000\nJudge,Cochran County,X3000\nCLASSIC CHEVROLET/BMW/PON,,T2300\nPhysician,Self-Emloyed,H1100\nConsultant,Consultant,Z9500\nPHYSICIAN,JAMES S. LOHMEYER M.D. P.L.L.C.,Y4000\nReal Estate Broker,\"Fonville Morisey, Realtors\",F4200\nPresident,\"Plastic Safety Systems, Inc\",M1500\nMSW SOCIAL WORKER,RETIRED,Y4000\nATTORNEY,BPG REAL ESTATE SERVICES LLC,Z9500\nNANCY SHEPARD ESQ,,K1000\nPROF,UNIV OF IOWA/PROF,H5100\nVp State Regulation,\"Dom Resources Svcs, Inc.\",E1620\nVAN EMDEN MANAGEMENT,,F4500\nSystems Engineer,I.B.M.  Corp,C5100\nHomemaker,none,G5200\nElected official,Town of Westport,X3000\nGeneral Contractor,Fort Hill Constructi,B1500\nManager,The Terms Company,Y4000\nDesign,Georgeboylearchitect,B4200\nNW PROTECTIVE,,Y4000\nSERRHEL GLYNN ADAMS,,G2400\nVICE PRESIDENT,ENVIRONMENTAL DEFENSE FUND,JE300\nINTERIOR SYSTEMS CONSTRUCTION,,B3000\nHOMEMAKER,N/A,C1400\nPHYSICIAN RADIOLOGIST,SALEM RADIOLOGY CONSULTING,H1130\nSTAMFORD ORAL AND MAX SURG,,H1400\nCEO,DUPAGE MACHINE PRODUCTS,M2300\nAttorney,Krupnick Campbell Malone Buser Slama H,K1000\nENGINEER,LOCHRANE ENGINEERING,B4400\nConsultant,EDP Enterprises,Y4000\nGREGORY V DRAY-MEDIC,WOLCOTT & DRAY,Y4000\nAVP SOCIAL INVESTMENTS AND CORP PHILAN,SANOFI-AVENTIS US INC.,H4300\nREAL ESTATE DEVELOPER,N&Y PROPERTIES,F4000\nPRESIDENT,WERNER MAZDA,Y4000\nOwner,Golden Eagle Realty Corp.,F4200\nSVP SRF,ACE INA,F3100\n,EMERY CELLI BRINCKERHOFF ABADY LLP,Y4000\n\"SCHNEIDER CAPITAL MG'T\",,F2100\nCANDIDATE FOR US SENATE,SELF,F2100\nVice Chairman,\"Dunn Construction Company, Inc\",B0500\nGovernment Affairs,\"The Livington Group, LLC\",Y4000\nCo-Ceo,Girls For A Change,Y4000\nVP Operations,Altman Development Corporation,F4100\nPresident,HBH Industrial Services,Y4000\nCEO,Air Transport Association,T1100\nGRANT SPECIALIST,NSF,Y4000\nAdministrator,Georgetown University,J1200\nAttorney,Deere & Company,A4200\nPYHSOLOGIST,CARDOZO SCHOOL OF LAW,H5170\nInsurance Consultant,Self,G0000\nOWNER,AFNB HOME CARE,Y4000\nadministrator,IMedd,Y4000\nSUPERINTENDENT OF RECORD,PIKE BOARD DD,Y4000\nDEPT OF HUD,,\nExecutive,NISEI Operating,Y4000\nGRIMES PUBLICATION INC,,C1100\nEXECUTIVE VP,ALLSTON TRADING,F2100\nDIRECTOR LOSS PR,AURORA HEALTH CARE,G5290\n$5 each,Self-0wner,G0000\nGROWER,SELF,A4000\nPRO FOOTBALL P,TAMPA BAY BUCCANEERS,G6400\nDIRECTOR,WEST SOUND TECH,Y4000\nBUSSINESSMAN,SELF,F4100\nOsprate management,,F2700\nRONALD LOWY ESQ,,K1000\nCEO,\"SLIP 'N SLIDE RECORDS\",Y4000\nPRESIDENT,AMERICAN LIBERTY GROUP,Y4000\nBusinessman,\"Jordan Int'l\",Y4000\nYALE SPORTSWEAR/PRESIDENT/C.E.O.,,Y4000\nOHENRY INC,,Y4000\nEDC LIBRARY SERVICE,,X4200\nSecretary of Agricul,State of Washington,X3000\nDR NEIL HERRICK,,Y4000\nFRANKLIN MORRIS & ASSOC,,Y4000\nPRESIDENT,XANODYNE,Y4000\nVP,\"LUCAS, MCGOWAN\",Y4000\nCARNEY BADLEY SMITH &,,Y4000\nFARMER,GROCER,G2400\nVideographer,Self-Employed,C2300\nROCK-TENN COMPANY,,J7400\nPRESIDENT,SMEAD,Y4000\nDEBAUCHE TRUCK & DIESEL,,Y4000\n\"CLAYTON'S DRAIN TILE MAINT\",,Y4000\nREAL ESTATE BROKER,ELLINGTON PROPERTIES/REAL ESTATE BR,F4000\nPresident,Assured Living Corp.,Y4000\nDEMI MUSIC CORP,,Y4000\nOwner,\"John Teravest Agency, Inc.\",Y4000\nAttorney,Bksh And Associates,K2000\nPIO,Ysaqmd,Y4000\nGENERAL PARTNER,TECHNOLOGY CROSSOVER VENTURES/GENER,F2600\nOwner,Mallett Trucking,T3100\nREAL ESTATE,\"SELF, PRUDENTIAL JACK WHITE VISTA/R\",J9000\nOwner,The Kitchen Collection LLC,Y4000\nCHOTIN GROUP,,F2300\nAttorney,\"Pepper Hamilton, L. L. P.\",K1000\nDELUXE CABS,,T4200\nCONSULTANT,SUN MOTOR CARS,Y4000\nVice-President,Valley of the Sun YMCA,Y4000\nChief Exec Officer,Voice Express Corp,Y4000\nOWNER,METRO TITLE SERVICES/OWNER,F4300\nREALTOR,ASCENT REAL ESTATE,Z9500\nASSOC PUBLISHER,,C1100\nATTORNEY,HISCOCK BARCLAY SAPERSTON/ATTORNEY,K1000\nDept. Head,Dade County Schools,X3500\nprincipal,\"Residential Properties, Inc\",F4000\nAT,NELSON KINDER MOSSEAU & SATURLEY,Y4000\nPresident,Boston Hides & Furs,Y4000\nAUGUSTA THORACIC & CARDIOVAS,,H1100\nClerk III,State Workers Insurance Fund,F3100\nVICE PRESIDENT,UNIVERSITY OF CENTRAL FLORIDA,H5100\nSales Director,Pliant,Y4000\n\"GENERAL MANAGER, BUSINESS DEVELOPMENT\",FLORIDA INTERNATIONAL AIRPORT,Y4000\nSENIOR VICE PRESIDENT OF LAND ACQUISIT,ASHTON WOODS HOMES,B2000\nCON AGRA INC,,G2100\nSVP,NEW SOUTH FEDERAL SAVINGS BANK,G5200\n\"CEO, KIDNEY CARE\",DAVITA HEALTHCARE PARTNERS INC,H3200\nEXECUTIVE VICE PRESIDENT,FIDELITY NATIONAL TITLE,F4300\nFuneral Director,McKevitt-Patrick F H Inc,G5400\nCHAIR,,G6550\nOAK CREEK FUNDING CORP,,Y4000\nSALESMAN,WILLARD MILLS DIST.,Y4000\nBusiness Process Analyst,The Boeing Company,D2000\nPHYSICIAN,FAMILY MEDICA PRACTISE,Y4000\nPRESIDENT AND CEO,PRESBYTERIAN HOMES,Y4000\nVP OF SALES,CORE MEDICAL GROUP/VP OF SALES,H3000\nRE CREDIT OFF/ASST MGR,BATERN LB/RE CREDIT OFF/ASST MGR,Y4000\nINFO REQUESTED,NETEX ANESTHESIA GROUP,H1130\nCMO,MOTRICITY,C5120\nOWNER,WALL STREET IMPRINTABLES/OWNER,Y4000\nGT NEUXS,,Y4000\nGJL MEDICAL LABS,,H3400\nInfantry NCO,U S Army,X5000\nBUSINESS OWNER,G & D TRANSPORTATION,Y4000\nPRODUCT MANAGEMENT,EBAY,C5140\nCARLTON MTG SRVCS,,F4600\nBAKER DONELSON JANICE ET AL,,K1000\nINSURANCE,21ST CENTURY,H3200\nPUBLIC POLICY CONSULTANT,GETO & DEMILLY,Y4000\nATTORNEY,\"GENESIS ENERGY, L.P.\",Z9500\nPAYROLL,KELLY SYSTEMS,Y4000\nKOCHANE DETORE &,,Y4000\nATTORNEY,ARNALL GOLDEN GREGORY L.L.P.,K1000\nPROPULSION CONTROLS ENGINEERING,BUSINESS OWNER,B4400\nCEO,Baltimore Zoo,G6100\nEXECUTIVE DIRECTOR,SILVER SPRING DAY SCHOOL,Y4000\n\"VENETIA'S BOUTIQUE\",,G4600\nExecutive,Sweet Paper Saks Corp,A5200\nCEO,P.L. PORTER COMANY,Y4000\nSOIL & WATER,,J1100\nStudent of Occupational Therapy,N/A,H1700\nPresident,\"The Freshwater Group, Inc.\",H2200\nComposer Teacher,Self employed,J7400\nINSURANCE AGENT,STEIN AGENCY INC.,F3100\nEXEC,\"TENENBAUM RECYCLING GROUP, LLC\",Y4000\nCEO,SEA ISLAND CORPORATION,G6400\nTalent Manager,The Susan Smith Company,Y4000\nMINISTRY ASSISTANT,WEST END ASSEMBLY OF GOD,Y4000\nATM ENTERTAINMENT,,H4600\nCOLL ADMN,SUFFOLK UNIV,H5100\nLOBBYIST,\"GOVERNMENTAL ADVOCACY, INC.\",Y4000\nRequested,Requested,F2100\nGENERA,AIR PARTS OF LOCK HAVEN INC.,Y4000\nENGINEER,\"FLUOR DANIEL HANFORD, INC.\",Y4000\nADMINIST,MONTE FIORE MEDICAL CENTER,Y4000\nPARTNER,PAULSON & COMPANY INC./PARTNER,F2700\nEXECUTIVE,YOUNG AMERICA CORPORATION,Y4000\nCLINICAL COORDINATOR,\"SUNESIS, INC.\",Y4000\nATTORNEY,\"ROWE, GRIFFIN & NAVE\",Y4000\nCENTER FOR FINANCIAL ENG,,Y4000\nCFO,Coors Brewing Company,G2810\nDIAGNOSTIC,UNIVERSITY OF ROCHESTER,H1130\n\"Scientist, Writer\",Self-Employed,G0000\nMONTEFIORE MEDICAL CEN,,H0000\nPhysician,The Skin Cancer Center,H1100\nAutomobile Dealer,Huffines Auto Dealerships,J1100\nPartner,International Corporate Servic,F2000\nJ NEWTON COHEN I C,,Y4000\nPresident,Somera Ventures,Y4000\nM.H. Corbin Inc.,,Y4000\nBanker,First Bank and Trust/Columbus,F4100\nVICE PRESIDENT,E-Z RENT-A-CAR,T2500\nQUESTOR MANAGEMENT COMPANY LLC,,Y4000\nRUSH HEALTH SYSTEMS INC,,H2100\nE F DALY FINANCIAL GROUP,,F0000\nChief Executive Offi,Freeman Regional Health Services,H2100\nSOCIAL SERVICES,THOMAS ALLEN INC.,Y4000\nVR BUSINESS BROKER,VECTRA BANK,F1000\nSr. Government Relat,NATIONAL EDUCATION ASSOCIATION,L1300\nCONSULTANT,FORBES TATE LLC,K2000\nCONSULTANT,CSSS.NET,Y4000\nNUTRITIONAL EDUCATION,SELF,Y4000\nACORN PROPERTIES/ATTORNEY/EXECUTIVE,,F4000\nSales Representative,GlaxoSmithKline,H4300\nSALE,CHAMPION INT.,Y4000\nEXECUTIVE,DAKOTA WEST ARTS COUNCIL,Z9500\nElectrical Engineer,Emerson Process Management,Y4000\nW H SHEPHERD AND COMPANY,,Y4000\nMANAGING DIRECTOR,KBR,B4200\nCEO,PARRONE ENGINEERING,B4000\nSELF/OPTHALMOLOGIST/OPTHALMOLOGIST,,H1120\nATTORNEY,BARG COFFIN LEWIS & TRAPP,K1000\nInstitute Director and Professor,Duke University,H5100\nPRESIDENT,\"DALLAS PRODUCTION, INC.\",E1120\nAssociation Executiv,Amer. Wholesale Marketers Association,Z9500\nREGIONAL ORTHOPEDIC PROFESSNL ASSOC,,H1130\nSURGEON,BOSTON SPORTS & SHOULDER CTR,Y4000\nReal Estate Develope,The Beal Company,JH100\nATTORNEY,RESOLUTEENERGY,Z9500\nBUSINESS OWNER,TFS,Y4000\nAttorney,Buchanan Ingersoll & Rooney PC,J1200\nFINANCIAL PLANNER,NIKULSKI FINANCIAL INC./FINANCIAL P,Y4000\nPUBLIC COMMUNICATION,SELF,Z9500\nHome Mortgage Consultant,Union National Mortgage Co,F4600\nKY ASSOC SCHOOL SUPER,,Y4000\nChief Operating Officer,Global Impact,X4100\nBOB BECKLE & ASSOC,,G5200\nATTORNEY,SAWAYA LAW,K1000\nSOUTHEASTERN COUNCIL,,K1000\nEXECUTIVE,MCCAIN FOOD SALES,G2100\nattorney,DPA Law Group,K1000\nSERVICE,AIR NATIONAL GUARD,X5000\nERIE GE EMPLOYEES FCU,,F1300\nSVP OPERATIONS,BLUECROSS BLUE SHIELD TN,F3200\nManaging Partner,self,G0000\nPHYSICIAN,AUGUSTA EMERGENCY PHYSICIANS,H1100\nPRESIDENT,ZOLL FOODS,G2000\nPHYS,PROVIDENCE HEALTH AND SERVICES,H0000\nPRESIDENT,\"SAINT JOSEPH'S HOSPITAL\",H2100\nCLARK COUNTY REMC,,E1610\nUTILITY EXECUTIVE,DOMINION RESOURCES,E1620\nP,MECKLENBURG RADIOLOGY ASSOCIATION,H1130\nPresident,Lorjo Ventures Inc.,Y4000\nATTO,\"WACHTELL, LIPTON, ROSEN & KALZ\",J5100\nRIVER PILOT,COLUMBIA RIVER PILOTS,T6200\nATTORNEY,KUHN BHAKPA TURNER,Y4000\nREAL EST,\"K HOVNANIAN COMPANIES, LLC\",B2000\nOwner,Forensics Consulting Solutions,Y4000\nTechnical Lead,Netiq Corporation,Y4000\nTSAN AUTOMOTIVE NETWORK,,Y4000\nGLOBAL HEALTH SPECIALIST,WORLD BANK,X8000\nFINANCIAL EXECUTIVE,DLJ,Y4000\nPLAN 9,,G4600\nCEO & President,NAB Broadcasters,C2100\nMANAGE,AERICAN BUILDING MAINTENANCE,J1100\nSELF/HOMEMAKER / ARTIST / INVESTOR,,J1300\nCONSULTANT/OWNER,THE 316 GROUP,Y4000\nMGS MANUFACTURING GROUP INC,,Y4000\nOwner,Print Promotional Services,C1300\nPOLITICAL ACTIVIST,SELF (PRG),J9000\nAdvertising Executiv,Hill Holiday,G5210\nCEO,NATIONWIDE EQUIPMENT COMPANY,Y4000\nAttorney,UFC,G6400\nJOHNSON & TOWERS,,T6100\nGeneral Counsel & Ex,Mac Andrews & Forbes,M3300\nACCOUNTANT,INSURANCE,F3100\nNEW YORK LIFE INSURANCE/AGENT/AGENC,,F3300\nDIRECTOR OF NETWORK MANAGEMENT,ARESIS,Y4000\n\"LONE STAR TOBACCO, INC\",,A1300\nGovernment Relations,Salt River Project,E5000\nPresident/Constructi,Vantage Homes,B2000\nPresident,Frank Coluccio Construction,B1500\nCENTRAL BUILDERS SUPPLY CO,,Y4000\nSERVICE SEGMENT MGR IV,HP,C5100\nPRODUCTION CO,AMERICAN ENERGY CORP.,E1210\nCredit manager/ owner,Machine Drywall,B3000\nBank Management,Lasalle Bank,F1100\nprincipal,Williams & Jensen,K2000\nAttorney,\"Watkins, Lourie & Roll\",Y4000\nEXECUTIVE V,ECHOSTAR COMMUNICATIONS,C2200\nPAHOLOGY LAB ASSOCIATES,,H1130\nAttorney,\"Singerman, Mills\",K1000\nATTORNEY,WILLIAMS & JENSES,K2100\nPROFESSOR,UMASS LOWELL,H5100\nEXECUTIVE,\"Powdermet, Inc\",Y4000\nowner,Rich Harvest Farms,A0000\n\"ROSENFELD, MEYERS, SUSMAN\",,J2100\nUS ENVIRONMENTAL PROTEC,,X3000\nVenture Capital,New Enterprise Assoc.,F2500\nN/A/HOMEMAKER,,M9300\n,\"PRYOR, ROBERTSON, BEASLEY, SMITH &\",Y4000\nPAST,DESERT JOY CHRISTIAN FELLOWSHI,Y4000\nBusinessman,Self,E1000\nAttorney,Kovinoky & Cook,K1000\nSYSTEM,APPALACHLAN REGIONAL HEALTHC,Y4000\nATTORNEY,THE HISHON FIRM,K1000\nCFO,FOX FACTORY,Y4000\nC.E.O./President,GOODYEAR,M1500\nExecutive Officer,TRAVERSE AREA ASSOCIATION,F4200\nPRES,THE DUTKO GROUP COMPANIES INC.,K2100\nOwner,Virginia Jewelers Inc,G4600\nBRISBEN CO,,B2000\nLAWYER,GENZYME CORP,H4500\nFARMWORKER,SELF,Y4000\nHARRIS & KAHN,,Y4000\nPRESIDENT,DYNAX CORP.,M1000\nBIG RIVERS RURAL ELECTRIC CORP,,Y4000\nGOLD LAW FIRM,,K1000\nARK LAND,,E1210\nOPERATIONS TECHNOLOGY ENGINEER,ARCELORMITTAL,Z9500\nPUBLIC RELATI,WHEATLEY TIMMONS INC.,Y4000\nKAUFFMAN & FORMAN P A,,K1000\nContractor,Back Construction,B1500\nADVISOR,EXXONMOBIL,E1110\nRegistered Nurse & BK Attorney,Law Offices of George Hanover,K1000\nPresident,Americal Patrol Inc.,Y4000\nConsultant,Jordan & Jordan,Y4000\nReal Estate   Broker,self employed,G0000\nHUMPHREY & SON INC,,B1000\nATTORNEY,\"FERRERI LAW GROUP, PLLC\",Y4000\nLOUISVILLE AUTO CENTER,,T2000\nLAND,SCHOPPE DESIGN ASSOCIATES INC,Y4000\nKHEY AM FM RADIO,,C2100\nReal Estate Broker,ERA Leatherman Realty Inc,F4200\nPRESIDENT/CEO,TROPICANA BUILDING CORP,B2000\nINFRASAFE/PRESIDENT/CEO,,Y4000\nFINANCIAL COACH,INFORMATION REQUESTED PER BEST EFFORTS,Y4000\nPartner,Red Peak,Y4000\nJOAN B FOX COMPANY,,Y4000\nOwner,Precious Gems National LLC,Y4000\nProfessor and Director of Graduate Sch,Illinois State University,H5100\nLAWYER,FEDERAL COMMUNICATIONS COMMISSION,X3000\nXIINX INC.,,Y4000\nREAL ESTATE,WILSON HULL & NEAL,F4000\nPSYCHIATRIST,NEC,Y4000\nCONSTRUCTI,MAUZE CONSTRUCTION CORP.,B1500\nAttorney,Bloom & Noll LLP,K1000\nOWNER,HOLLIDAY TIRE SERVICE INC.,T2200\nInformation Requeste,*Info Requested,Y2000\nPHARMACOKINETICIST,QUNTILES,Y4000\nA E C-ABLE ENGINEERING COMPANY,,Y4000\nFLOHR ENTERORISE INC,,T5300\nCaterer,Self,Z9500\nstat at home mom,self,J7400\nAttorney,Robin J. Peterson Co. LLC,K1100\nESPY COMPANY,,J1100\nExecutive,Airnet Systems,T1500\n,SANTA CRUZ FINANCIAL SERVICES INC.,F5000\nPresident,Golden Mortgage Bankers,F4600\nFOUNDER & MAN,PLATTE RIVER VENTURES,F7000\nTECH GROUP,,Y4000\nMODERN DISPOSAL,OWNER,G0000\nENERGY INDUSTRY,DEEP GULF ENERGY,E1000\nVP NEWSLTR PUBL,RIDGEWD FINANCI,F0000\nActor,The Tovah Corp,C2000\nAstrophysicist,University of Chicago,J1200\nExecutive Director,California Ballet Company,Y4000\nFinance,Village Ventures,Y4000\nSVP- CHIEF ACCOUNTING OFFICER,WELLPOINT,H3700\nPresident,NMCI Group,G5200\nVP GM,KTVU/KICU,C2100\nRESEARCHER,ROCHEL INDUSTRIES,Y4000\nDatabase Administrator,Earth Tech,J1200\nEXEC,CPI,G2100\nAccountant,\"Kohl'S Dept Stores\",G4300\nMCCUTCHEN DOYLE BROWN & EMERSEN,,K1000\nSENIOR CONSULTANT,EQUIAS ALLIANCE,F1100\nCORNERSTONE FCU,,F1300\nPHYSICIST CONSULT,,Y4000\nSenior Vice Presiden,Reckson Associates,Y4000\nOwner,Delta Liquid Energy,E1000\nGjon Zehnder/Consultant/Partner,,Y4000\nProfessor,Oberlin Colleg,H5100\neducator,los angeles leadership academy,J1200\nConsultant,Cornerstone Financial,F0000\nNon-Profit Manager,Pflag New York City,Y4000\nR. E. APPRAISER,C. A. G.,Z9000\nOWNER,FOARD PANEL,Y4000\nEngineer,M-Dot Aerospace,Y4000\nATTORNEY,COONEY & CONAWAY,K1000\nSenior V.P. Operatio,NuStar Energy L.P.,E1100\nEXECU,ELECTRONIC DATA SYSTEMS CORP.,C5130\nCEO,SENIORCARE,H2200\nBLUE CELL TECHNOLOGY CORP,,Y4000\nCAST-AWAY SERVICE INC,,J7400\nSUNBELT BEVERAGE INC,,G2850\nVice President,Poseidon Resources,Y4000\nLand Investment,Self employed,F7000\nTHERENOW/CEO/CO-FOUNDER,,Y4000\nSALES MANAGER,SELF-EMPLOYED,G0000\nRetired,Civil Service (DOD),X1200\nATTORNEY,\"JONES WARD, PLC\",Y4000\nTHOMPSON METAL FAB INC,,M5000\nHIZAK CONSTRUCTION,,B1500\nEXECUTIVE VIC,INTELLECTUAL VENTURES,J1100\nNATIONAL LIME & STONE CO,,Y4000\nTEACHER,INFORMATION REQUESTED,H5000\nAttorney,Philadelphia District Attorney Office,X3200\nCOLLEGE COUNSELOR,SELF EMPLOYED,H5100\nMANAGER,CONDOR SYSTEMS,D3000\nEXECUTIVE,EL POLO LOCO,J1100\nINVESTMENT BANKING,GOLDMAN SACHS INTERNATIONAL,F2300\nSchool Secretary,Eugene School Distririct,X3500\nATTORNEY,ILSA DRAZNIN,K1000\nEXECUTIVE,NATCO PRODUCTS INC,M1400\nBEEHIVE HOME OF N IDAHO INC,,Y4000\nOWNER,PWI CONSTRUCTION,B1500\nSelf,Mediator,Z9500\nPRESIDENT,SPECIALTY PRODUCTS & SERVICES INC.,Y4000\n\"EARLY, MASLICK & PRICE\",,K1000\nHuman Resources,Levy Home Entertainment,Y4000\nNeuropsychologist,sef employed,Y4000\nCounsltant,Self,G0000\nPresident,IMTS,Y4000\nHealthcare,\"Recovercare, Inc\",Y4000\nBUSINESSMAN,HM LUTHER INC,Y4000\nINFORMATION REQUESTED,MORGAN STANELY,F2300\nDIRECTOR OF ENV HEALTH & SAFETY,US ECOLOGY TEXAS,E3000\nCivil Engineer,Johnson Davis Inc,B4000\nCEO,Oregon Asthetic Technology,Y4000\nC E UNTERBERG TOWBIN INTERNA,,F2300\nmedical director,Advogent,H4000\nINATL AIR LEASES,,T1600\nCONSULTANT,\"KNOPF ASSOCIATES, INC.\",Y4000\nBAILEY MONUMENT CO,,Y4000\nAttorney,\"Harvey, L.L.P.\",K1000\nPSYCHOLOGI,US DEPARTMENT OF JUSTICE,J1100\n\"BRYAN, CAVE, MCPHEEYERS\",,K1000\nPEREZ FARMS,SOLE PROPRIETORSHIP,G0000\nAttorney,Lewis Brisbeis Bisgaard,K1000\nFINANCIAL SERVICES,CREDIT CORPORATION OF AMERICA,Y4000\nAdministration,Zephyr Real Estate,F4000\nVP AL OPERATIONS,NHS MANAGEMENT LLC,H2200\nGEORGES INVESTMENT CO,,F0000\nCEO,Vi-Jon Inc,M3300\nMEDIALORE LLC,,Y4000\nSTAFF ASST,DICK DURBAN OFFICE,Y4000\nBANKER,THE PEOPLES COMMUNITY BANK,F1100\nAttorney,George Shats & Boren LLP,K1000\nOwner,The Carma Corporation & 4 Seas,Y4000\nStaff,Governor McGreevy,Y4000\nMICHAEL BEST AND FREID,,K1000\nSELECT DISTRIBUTING,,Y4000\nConsultant,Lowell Fruit Co,A1400\n\"KRANICH'S JEWELERS INC\",,G4600\nChairman; President,The Town and Country Trust,F4100\nPhysician,Univ. Emer. Medical Practice,Y4000\nATTY,Patton Boggs Attorneys at Law,K1000\nRetired/ Mechanical Technician,Self-Employed,G0000\nPARTNE,BLANKROME COMISKY & MCCAULEY,K1000\nYOUNG ELECTRIC SIGN CO./VP/GENERAL,,G5230\nVICE PRESIDENT - ENG,UNION PACIFIC RAILROAD,T5100\nBusiness Entrepeneur,KKP Group LLC,J1200\nATTORNEY,ROGERS & WELLS,J1200\nBUSINESS OW,\"R&D FISHING TOOLS, INC.\",Y4000\nREAL ESTATE DEVELOPER,\"SPEEDWAY, INC.\",F4100\nATTORNEY,LARRY L. LEIFER PC,K1100\nKATS JAMISON ET AL.,,K1000\nCINEMARK USA INC,,C2700\nPRESIDENT,BORGHESE INVESTMENTS,G4000\nCEO,\"GIBSON BRANDS, INC.\",C0000\nATTORNEY & CPA,SELF EMPLOYED,K1000\nSUBSTITUTE TEACHER,CHESAPEAKE PUBLIC SCHOOLS/SUBSTITUT,X3500\nFOUNDATION EXEC DIRECTOR,SMGSI,JH100\nGOVT RELATIONS,NORTHROP GRUMMAN,D5000\nCrown Associates Realty,,F4200\nExecutive,Blue Hawaiian Helicopters,Y4000\nInvestor,Eventide Investments Inc,F7000\nMARKETING,SELF EMPLOYED/MARKETING,G5280\nNEW ENGLAND MEMORIAL HOSPITAL,,H1130\nAdvertising Agent,\"Lara & Robertson Creative, Inc\",Y4000\nPHYSICIAN,\"LOUISIANA UROLOGY, LLC\",H3200\nTHE GARDNER LAW FIRM,,K1000\nSPECTRA COMMUNICATIONS,,Y4000\nHUMAN RESOURCES REP,STARBUCKS,G2900\nSUPPLIES,\"MARINE RIGGING, INC\",Y4000\nPROFLIGHT AVIATION SERVICES,,Y4000\nEBERLE ZUCKERMAN AND CO,,Y4000\n,CENTERLINE TRANSPORTATION SERVICES,Y4000\nElectronic Tech,Zhone Technologies,Y4000\nCEO,ODW LOGISTICS,Y4000\nPresident,Importers Diversified Inc,Y4000\nASSOCIATE V.P. ACADEMIC AFFAIRS,CLAFLIN UNIVERSITY,H5100\nRequested,\"IGS Systems, Inc.\",Y4000\nLibrarian,Wilmette Public Library,J1200\nSCIENTIST,SCRIPPS RESERCH INSTITUTE,Y4000\nLOBBYIST,MANATOS & MANATOS,Z9500\nMERCK,,J7150\nENGINEERING TECHNOLOGY,,B4400\nOwner,Fisher Wireline Svc. Corp.,Y4000\nC.E.O,L.H.C GROUP,H3100\nattorney,Richard L Levine Co,Y4000\nWM R HALL COMPANY,,Y4000\nMANAGER,C.P. & L.,E1600\nRETAIL EXECUTIVE,GILT GROUPE,G4700\nAttorney,Law Offices of Charles Montgomery,K1000\nREAL ESTATE,TRANSWESTERN,F4500\nKIMBELL AND ASSOCIATES,,K2000\nEXECUTIVE,CANAL BARGE COMPANY INC.,T6200\nBusiness Owner,BG Service Solutions,Y4000\nRITTGERS & RITTGERS/ATTORNEY/PARTNE,,K1000\nEngineer,Mse Inc,C5130\nATTORNEY,\"DUNCAN, WEINBERG, ET AL.\",J7400\nBELL TRUCKING INC,,T3100\nSELF-EMPLOYED,BEAUFORT YACHT SALES,Y4000\nN/A/HOME MANAGER,,G6400\nPRESIDENT & CEO,\"WELLINGTON CONSULTING GROUP, LTD.\",Y4000\nDENTI,ROBERT A. CANDLER DDS LTD INC,H1400\nFILMMAKER,PLEXI PRODUCTIONS/FILMMAKER,Y4000\nHealth Policy & Technology Doctor,\"Sneent, LLP\",H1130\nConsultant,Sun Land Beef Company,G2300\nConsultant,SELF-EMPLOYED,G0000\nANESTHESIOLOGIST,ANES ASSOC WESTERLY,H1130\nBANKER,WORLD BUSINESS CAPITAL,F0000\nOWNER,LEGENDS CAR SERVICE,Y4000\nCommissioner,Oakland County,Z9500\nATTORN,LAW OFFICES OF DAVID M. WISE,K1000\nMANAGER,ELASTIZELL CORPORATION,Y4000\nPhysician,Harvard Pilgrim Health Care,F3200\nPodiatric Physician,Caldwell Podiatry Center,H1130\nREAL ESTATE DE,FIRST CENTRUM L.L.C.,J1100\nFURNIT,\"DESIGNMASTER FURNITURE, INC.\",Y4000\nCollege Protevor,Margretle University,J7400\nESSENTIAL CHEMICAL CORP,,M1000\nPIPELINE INSPECTOR,,Y4000\nATTORNEY,FOLEY HOAG & ELIOT LLP,K1000\nCONSULTANT,MABBETT & ASSOCIATES INC,Y4000\nConsultant,Granite Constr. Co.,B1000\nLawyer,Shipman & Goodwin LLP,K1200\nINTERSTATE HOTEL,,T9100\nRANDY PURPURA & ASSOCIATES,,Y4000\nUNITED COMMERCIAL DEVELOPMENT,,F4200\nCAMPBELL CORPORATION,,J1200\nADVANCE AMERICA CASH ADVANCE CENTER,,F1420\nCEO,SISTERS OF MERCY,Y4000\nManaging Director,\"Dryden Advisory Group, LLC\",Y4000\nPRESIDENT,MITCHELL PRODUCTIONS,Y4000\nROOFING ESTIMATOR,GUARDIAN ROOFING LLC,Y4000\nCONSULTANT,SMALL TALK U/CONSULTANT,Y4000\nAttorney,Marcotta Law Firm,K1000\nCONSULTANT,\"DITA STRATEGIES, INC.\",J7400\nMARKETING MANAGER,COCA COLA,G2600\nEXECUTIVE,GREAT EASTERN COLOR LITHO CORP.,C1300\nCHI,INTEGRATED ARCHIVE SYSTEMS INC.,C5000\nRI-COM,,Y4000\nPROFESSOR,JOHNS HOPKINS UNIVERISTY,H5100\nJENSON & JENSON,,Y4000\nBELLEMEAD DEV CORP,,F4100\nTUXEDO PARK PROPERTIES,,F4000\nLECTURER,UNIVERSITY OF KENTUCKY,H5100\nOWNER,\"CUSTOM ECOLOGY, INC.\",Y4000\nMANAGING DIRECTOR/ P,\"SUN CAPITAL PARTNERS, INC.\",F2600\nSTERLING GRACE CAPITAL MGMT,,Y4000\nDirector,Oregon Family Council,Y4000\nPUBLIC AFFAIRS CONSULTANT AND LOBBYIST,JYB3 GROUP,Z9500\nPhysician,CALLAN CONSULTING,H1100\nEYES ON MAIN,,Y4000\nAttorney,\"Davis, Brown, Shors, Koehn & R\",Y4000\nGRANER OIL CO./RETIRED/RETIRED,,E1100\nCEO,1ST BANK,F1000\nDealer,Downtown Ford Lincoln Mercury Inc,T2300\nDENTIS,FISCHL & WEISS DENTAL ASSOC.,H1400\nBUFFALLO ROCK CO,,G4850\nPROPERTY MANAGER,HILLS & CO.,Y4000\nEXECUTIVE,CLEARSHOT COMMUNICATIONS,C4500\nPresident,Dolan Media Company,Y4000\nTECHNICIAN,HIGHLAND GENERAL HOSPITA,Y4000\ncarpenter,self employed,J1100\nOPHTHALMOLOGIST,DUKE EYE CENTER,H2100\nPHYSICIAN,\"GOVERNOR'S INSTITUTE\",Y4000\nHARSHBERGER FOR ATTORNEY GENERAL,,K1000\nEXECUTIVE,DELL COMPUTER CORP,C5100\nMD,Private Family Practice,Y4000\nNATALIE H BUCKTAHL IN,SELF EMPLOYED,Y4000\nFARMER,GRAND VIEW FARM,Y4000\nWHEELER BRICK CO INC,,B5100\nPROFESSIONAL PARAMEDIC SVCS,,Y4000\nFinancial Planner,Icma-Rc,Y4000\nCFO,ALCON ENTERTAINMENT,Y4000\nCONTRACTOR,AAA BUILDERS,B1500\nTELECASTING,,Y4000\nATTORNEY,\"READE, GULLICKSEN, HANLEY, AND GIFFORD\",Z9500\nTRIPIT.COM AND HARD ROCK CAFE INT,,Y4000\nLecturer,City University of New York,H5100\n\"Vice President, Oper\",Honeywell Federal Manufacturing & Tech,D2000\nOwner,\"Business Valuation, Inc.\",Y4000\nBi-lingual Translator,LA Translation,Y4000\nSALES PRESIDENT,RICHMAR FASHIONS,M3100\nC.E.O.,CABLE VISION,C2200\nConsultant,Precision Communications,J7300\nOWNER,CHINA BUFFET,G2900\nINSPECTOR,API,J1100\nEASTERN MICHIGAN U.,,J7400\nINDUSTRY SOLUTION SP,MICROSOFT CORPORATION,C5120\nHOMEMAKER,,F3300\nCattleman,\"Pratt Feeders, LLC\",A3300\nMC KEE FOODS,,G2100\n\"CEASAR'S\",,G6500\nOFFI,WISCONSIN REALTORS ASSOCIATION,F4200\nINVESTMENT BAKE,GOLDMAN SACHS & CO.,J7400\n\"INDEPENDENT CAPITAL MANAGEMENT, LLC\",,G1200\nZISMAN FAMILY PROFESSOR,UNIVERSITY OF PENNSYLVANIA,H5100\nINSURANCE EXAMINER,BRAGG & ASSOC.,Y4000\nDR RICHARD B MERLO,,Y4000\nDirector,BAE Systems,D2000\nExecutive Director,UBS Securities LLC,F2100\nOp Mgr,Coghlin Electrical Contractors,Y4000\nGOVERNOR OFFICE,,X3000\nPresident,Capitol City Consulting,K2000\nARCHITECT,\"GH WILLIAMS COLLABORATIVE, PA\",Y4000\nVice President,Zions Bank,F1100\nOwner,Jackie Gift NOW,Y4000\nBOARD MEMBER & CHIEF STRATEGY OFFICER,ACCOUNTS RECEIVABLE TECHNOLOGIES,Y4000\nLANCASTER DEV CORP,,B1000\nQ Prime Inc,,G5240\nHUNT FOREST PRODUCTS INC,,A5000\nPROMOTIONAL PRODUCTS,SELF-EMPLOYED,G0000\nCHIEF STRATEGY OFFICER,INTERNATIONAL SECURITIES EXCHANGE,F2400\nOwner,Medical Supply Co.,H4100\nSOMAL LOGIC,,H4500\nDIRECTOR OF INFOR,OBAMA FOR AMERICA,J1200\nBANKER,STATE BANK OF LAWLER,F1000\nINDUSTRIAL ADVISOR,,Y4000\nPresident,Performance Painting,B3000\nAttorney,Legal Aid Society of Orange County,Y4000\nENGLEWOOD GROUP,,Y4000\nNORTHEAST SOLITE CORP,,B5100\nLANDSCAPE ARCHITECT,DEWBERRY,Y4000\n\"WEKSEL, DAVIES & CO\",,C5000\nCEO,Global Investment Center,Y4000\nEINSTEIN HEALTH,,H3200\nPresident,Sederholm Public Affairs,K2000\nPROFESSOR/EXEC V DEAN,UNIVERSITY OF CALIFORNIA,H5100\nADULT CARDIOLOGY,IRMC,H1100\nHOUSEWIFE,N/A,C4000\nGeneral Counsel,\"Genesee & Wyoming, Inc\",T5100\nPrivate investor,Self-Employed,F7000\n\"POORE, ROTH AND\",,Y4000\nREAL ESTATE,TRIAD,Y4000\nBook Dealer,A Lincoln Book Shop,Y4000\nALPINE CLINIC,,Y4000\nTHE PRITZKER GROUP,SELF,F2100\nInformation Requeste,Publishers Clearing House,G5220\nSALTZMAN COHEN MASRO,,Y4000\nCONSULTANT,KEMP PARTNERS,Y4000\nSPORTSCASTER,FOX SPORTS TN,Y4000\nCollege President,St Johns River Community College,H5100\nProgram Manager,L-3 Communications SSG,J1200\nADMINISTR,GREATER NEW YORK HOSPITAL,H2100\nENGINEER,PINELOCH MANAGEMENT,F4000\nWILLIAMS SCHAEFFER RUBY & WILLIAMS,,Y4000\nPRINCIPAL,VAN FLEET ASSOCIATES,Y4000\nMEMBER OF THE BOARD,,C4300\nCEO,CASTLE & COOKE COLD STORAGE,Y4000\nCAMPAIGN MANAGER,ALLARD FOR SENATE,J1100\nPHYSICIANS ANESTHESIOLOGI,,H1130\nInvestor,Charles Boxenbaum,J5100\nOwner,Endevex Corporation,Y4000\nREAL ESTATE,RITE AID,G4900\nDirector,Zizzi Family Trust 12 18,Y4000\nAdministration,WelCom Products,M4100\nSR. TERRITORY MANAGER,PARKER HANNIFIN,M2300\nBuilder/Developer,\"Pro Development Group, Inc.\",Y4000\nWADLEIGH STARR PETERS DUN & CHIESA,,K1000\nOwner,Kass Auto Body,T2400\nEXECUTIVE,FRESH MEADOW MECHANICAL CORPORATION,Y4000\nANCHOR SALES CO,,G4300\nCEO,WELLCOMM,Y4000\nPRESIDENT,WILL-DRILL PRODUCTION,H1100\nCOMMUNICATIONS,APPLE,C5110\nFARMER,TROYER BROS. FL INC.,Y4000\nDIRECTOR OF MARKETING,SMART START,Y4000\nSr Vice President,The Walt Disney Company,C2000\nPRESIDENT,STABILE COMPANIES,B2000\nCHAIRMAN,CANNON COUNTY KNITTING,M3100\nOffice Manager,Waddle & Company,Y4000\nAttorney,Water Kraus Paul,Y4000\nMANAG,WYNNEFIELD CAPITAL MANAGEMENT,F0000\nChairman and Chief Executive Officer,MTV Networks,C2200\nRULX CHARLES MD LTD,,H1100\nHOUSE PAINTER,SELF,B3000\nWEISS MOSKOWITZ FERVENT,,Y4000\nBUSINESS EXECUTIVE,\"NEWSLINK GROUP, L. L. C.\",Y4000\nPhysician,\"Neil E Goodman, MD, PC\",H1100\nREALTOR - PRO,PARKS INVESTMENT INC.,F4200\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,AVERA ST. BENEDICT HOSPITAL,H2100\nJAMES BOYD,,Y4000\nADVERTISING EXECUTIVE,OGILVY,G5210\nJONES COLLEGE,,H5100\nOZARKS COCA-COLA,,G2700\nPRESIDENT/PORTFOLIO,METWEST CAPITAL,F0000\nCHAIR EMERITUS,ENVIRONMENTAL CAUCUS,X1200\nCEO & CHAIRMAN,PARKER HANNIFIN,M2300\nREGISTERED INVESTMENT,SELF EMPLOYED,Y4000\nERLANGER HEALTH,,H0000\nSALESPERSON,BABY ROSE LLC,H4300\nDAYSTAR PARTNERS,,Y4000\nBUILDER,EASTERN DOOR COMPANY,Y4000\nASSEMBLY,ATTORNEY,K1000\nATTORNEY,\"ALLEN, VELLONE\",K1000\n\"CONSTRUCTION , HEAVY\",KNIK CONST INC,B1500\nCapri Jewelers,,Y4000\nPhysician,Dupage Homeopathic,Y4000\nACCOUNTANT,BDO SEIDMAN LLP,F5100\nINVESTMENT MGMT,EAST ROCK CAPITAL,Y4000\nPLANT MANAGE,\"GREER INDUSTRIES, INC.\",C2100\nChairman/CEO,\"Celadon Group, Inc\",T3100\nattorney/mediator,self,G0000\nClinical Social Wkr,Self,G0000\nVICE PRESIDENT,GERNERAL ATOMICS,Y4000\nCHIEF EXECUTIVE OFFICER,TEWKSBURY FCU,F1300\nINSURANCE BROKER,MORGAN MARROW,Y4000\nSR MANAGER - MIDRANGE DEV,EXPRESS SCRIPTS INC.,H3000\nCRAVATH SWAIN AND MOORE LLP,,K1000\n\"VP, WORKFORCE STGY &  DVLP\",XCEL ENERGY,E1620\nATTORNEY,BINGHAMD MCCUTCHEN,K2000\nSME COMPANY INC,,G5270\nABC,CAD CITIES,Y4000\nBIOLOGIST,YALE UNIV.,J7400\nCIGMA,,F3100\nEnvironmental Consul,\"Environet, Inc.\",B4000\nProfessor retired,Kansas State Univesity,J7400\nOWNER,JI-LO MANAGEMENT,Y4000\nDISABILITY REPRESENTATIVE,SELF,Y4000\nCERTIFIED STRUCTURED SETTLEMENT CONSUL,RINGLER ASSOCIATES,F4700\nExecutive,Rogge Capital Management,F2100\nModel/Business/Art,Self employed,J1200\nPhysician,Multicare Health Systems,H0000\nResearcher,University of Massachusetts Medical Sc,H5150\nPresident,Aurora Organic,Y4000\nFORMERLY A LIBRARIAN,RETIRED,X1200\nInsurance Underwrite,Self,G0000\nco-owner,Ripped Enterprises,Y4000\nMOVER PACKAGING,,Y4000\nAD MEN,BP,E1110\nPresident & CEO,Johnson Capital,F4100\nPublic Affairs,\"The Reilly Group, Inc\",Y4000\nTMB INDUSTRIES,,T5200\nReal Estate,Genesis,Y4000\nManager,Pima County Govt,Y4000\nPRESIDEN,MIAMI MUNICIPAL STRATEGIES,Y4000\nDUTEAU CHEV CO,,T2300\nCAB DRIVER,,T4200\n\"VP, GOVERNMENT AFFAIRS\",ALERE INC.,H4100\nPRESIDENT,THE JOHN STEWART CO.,F4100\nREGISTERED NURSE,LUTHERAN HOSPITAL,H2100\nInsurance,Norcal Mutual,Y4000\nPrincipal,\"Keystone Realty Capital, LLC\",F4200\nUTILITY EXEC,FIRST ENERGY,E1600\nT G J & CO INC,,Y4000\nOwner,\"MG Contractors, Ltd.\",Y4000\nExecutive,Self employed,F7000\nPART OWNER,DON - NAN PUMP & SUPPLY INC.,Y4000\nPlumber,Advanced,Y4000\nEXECUTIVE DIRECTOR,NAHC,H3100\nHARBOR COMPANIES,,F4100\nRadiologist,Diagnostic Medical Imaging,H1130\nOwen Of Rowlett Adve,Self,G0000\nVolunteer Chaplain,Olathe Medical Center,J7400\nAdministrator,Avant Imaging,Y4000\nOWNER,TECHNIPOWER,Y4000\n\"POWELL'S BOOK STORE\",,G4600\nANESTHESIOLOG,LAKEWOOD ANESTH ASSOC,H1130\nTITLE INSURANCE,SOUTHERN TITLE,F4300\nART ADVISOR,SELF-EMPLOYED,G5000\nYOUNG & YOUNG P C,,Y4000\nINFORMATION TECHNOLOGY MANAGER,SAN DIEGO COMMUNITY COLLEGE DISTRICT,H5100\nwaste disposal,Schaubach Companies,E3000\nCHASE MANHATTAN BANK,,F1100\n\"Golden State Consultants, LLC\",Owner,Y4000\nSELF,WILLIAM GRUBE,Y4000\nMICHIGAN MUNICIPAL LEAGUE,MICHIGAN MUNICIPAL LEAGUE,Y4000\nMPS ENTERPRISES,RETIRED,X1200\nTEACHER,PALM BEACH COUNTY,H5100\nCENTRAL ROCK,,Y4000\nEXECUT,NATIONAL SERVICES INDUSTRIES,Y4000\nSILLS CUMMIS ET AL,,K1000\nHousekeeper,N.A.F. Hardy Hall,Y4000\nArtist,John Pence Gallery,G4600\nATTORNEY,SCHIFFRIN CRAIG & BARROWAY,K1100\nNOT EMPLOYED,PINNACLE ASSOCIATES,F2100\nBanker,First Bank Of Trust,F1100\nProfessor of Biology,Indiana University,H5100\nEDUCATOR,VENTURA COUNTY SCHOOLS/EDUCATOR,X3500\nUNICORN MINING INC,,E1200\nBookkeeper,Cartronics of America,Y4000\nManager,Coastal QSR,G2900\nDAYTON CITY S D,,L1300\nUNDERSECRETARY,DEPARTMENT OF THE NAVY,X5000\nPRESIDENT,\"DECRISTO, INC.\",Y4000\nSECRETARY,H & M TOOL & DIE INC.,M5000\nBARRACK RODOS & BACINE,,K1000\nINDUSTRIAL REPAIR SERVICE,,G5600\nRETIRED FEDERAL JUDG,WHITE ARNOLD & DOWD P.C.,J7400\nCPA,LEIGH KING & ASSOCIATES P.C.,F5100\nReal Estate Broker,\"Cackovic Realty, Inc.\",F4200\nVP GOVERNMENT RELATIONS,BCBS OF MONTANA/VP GOVERNMENT RELAT,F3200\nCEO,PETERSON METAL PRODUCTS,M5000\nPRESIDENT & CEO,CHOICE HOTELS INTERNATIONAL,G1000\nM&R MANAGEMENT CO INC,,F4000\nHOMEBUILDER,J. PATRICK HOMES,Y4000\nCONTRACT,GILMORE & SON CONSTRUCTION,B1500\nSNOVER LAW OFFICE,,K1000\nBanker,\"LEHMAN BROTHERS, INC.\",F2100\nPHYSIC,THE GEORGE WASHINGTON U. MFA,Y4000\nPresident,Jim Williams Contractor,G1200\nCEO,Amkor Technology Inc,C5110\nDIRECTOR,\"CENDERA BANK, NATIONAL ASSOCIATION\",F1100\nBETCO BLOCK & PRODUCTS,,B5100\nPRESIDENT,WEBB MANAGEMENT INC.,Y4000\nQUICK QUICK & ASSOCIATES,,Y4000\nBUSINESS OWNER,SYSTEMS RESEARCH INC,Y4000\nSenior Vice President,Ohio Casualty Group,F3400\nRANCHER,CARTWRIGHT RANCH,A3000\nFABIAN & ASSOC,,Y4000\nRES-COM CUSTOM CONSTRUCTION INC,,B2000\nAttorney,Smith & Thompson Attorneys,K1000\nSENIOR V.P.,\"SOTHEBY'S REALTY\",F4200\nCPA,Self,F5100\nCO-CHAIRMAN OF THE BOARD,LOEWS CORPORATION,F3400\nMArketing,MDT Direct,Y4000\nPHARMACEUTICAL SALES REP,GENENTECH,H4500\nCONSU,ROSE AND ALLYN COMMUNICATIONS,Y4000\nVICE,WERTHEIMER ENTERPRISES L.L.C.,Y4000\nINSURANCE,WILLIS OF ILLINOIS INC,F3100\nDirector of Sales,Peak Beam System,Y4000\nphysician,Florida Anesthesia Associates,H1130\nMANAGER,APASTMENT MANAGER,Y4000\nALSTON & BIND LLP,,K1000\nAECTRA REFINING,,E1160\nLobbyist,Broydrick & associates,K2000\nRE/MAX - SALEM/BROKER/OWNER,,F4200\nARTIST/INVESTOR,SELF,F7000\nKIBELS COMPANIES,,Y4000\nDIR,GADSDEN STATE COMMUNITY COLLEGE,H5100\nNuclear Medicine Physician,\"RAS, Inc\",Y4000\nVA POLYTECHNIC INSTITUTE,,H5100\nREAL ESTATE DEVELOPER,\"CGM DEVELOPMENT, INC.\",F4000\nTEACHER,KENDALL SCHOOL,Y4000\nPresident,Absolute Resources Corp,Y4000\nCorporate Officer,Occideatial Petroleum Corporat,E1110\nSales Manager,Flagship Renconstruction Associates,F4500\nSEYMOUR & ASSOC,MOREY,G5210\nPRESIDENT,MONETA GROUP LLC,F0000\nCEO,EXCELETECH LLC,Y4000\nEXECUTIVE,MEDIN CORPORATION,Y4000\nLawyer,Luby Olson PC,K1000\nSoftware Marketing,Interwoven,C5130\nCHIEF ENGINEER,UNION PACIFIC RAILROAD,T5100\nCORNELL CONCEPTS,,Y0000\nTURKEY GROWER,JM SWANK,A2300\nCHAIRMAN PRESIDENT & C.E.O.,QUESTAR,E1140\nBUS OPPORT MGR,TMI,Y4000\nWYOMING SG AS,CLEAR CREEK CATTLE CO,A3000\nExecutive,Sallie Mae Corp.,F1410\nKIRSON MEDICAL CORP,,J5100\nTENNI,BEAUFORT YACHT & SAILING CLUB,T8300\nVICE PRESIDENT - GLOBAL GO,ALEXION.,H4300\nTRIAL ATTORNEY,\"KOSKOFF, KOSKOFF & BIEDER P.C.\",Z9500\nATTORNEY,\"KING & GREISEN, LLP\",K1000\nDEVELOPMENT OFFICER,METHODIST HEALTH FOUNDATION,Y4000\nOwner,Campbell Governmental Access,Y4000\nPresident,Bluestream Asset Management,F2100\nBASTROP FORD L-M,,T2300\nP,NORTH JERSEY SURGICAL SPECIALISTS,Y4000\nSYGNAS INC,,Y4000\nExecutive,The Phoenix Group,Y4000\nPRESIDENT,\"FERCO ENTERPRISES, INC.\",E1500\nFREEMAN GROUP,,Y4000\nPresident,Solar Gold,Y4000\nNORMAN G WAT DDS,,H1400\nOWNER,50 PLUS PHARMACY,G4900\nGENERAL MAN,LOS ANGELES WATER POWER,Y4000\nCFO,JENMAR CORP,E1240\nMANAGING DIRECTOR,EDGEWATER ENERGY,E1000\nMARKETING,ENFOSYS TECHNOLOGY LTD.,Y4000\nLAWYER,SAWTELL WIRTH & BIEDSCHEID PC,Y4000\nAttorney,America Online Inc,C5140\nATTORNEY,LAW OFFICES OF BEN MARTIN,K1000\nROEBUCK AUCTIONS/OWNER/C.E.O.,,G5000\nPolicy Analyst,DC Primary Care Association,J1200\nATTORNEY,LIGHTSQUARED,C4400\nOWNER,TRI TECH DEVELOPMENT INC.,Y4000\nOWNER,\"CHOICEST HOLIDAY, INC.\",Y4000\nCHIEF FINANCIAL OFFI,\"CANCORP, INC.\",Y4000\nNurse  Practitioner,Temple Koi Tikvah,X7000\nRETIRED LAWYER,,X1200\nFINANCIAL PLANNING,WATERMILL FINANCIAL GROUP,Y4000\nAttorney,Gentile & Associates,K1000\nATTORNEY,ROBERT L JENNINGS JR PC,Z9500\n3RD ASST ENGINEER,\"OCEAN SHIPS, INC.\",LT500\nRESTAURANT OWNER,GEORGES RESTAURANT INC.,G2900\nAttorney,\"Shain,Schafferand Rafane\",K1000\nProfessor,Santiago Canym Colle,Y4000\nPRESIDENT,METROPOLITAN WINDOW/PRESIDENT,M7200\nTROPICANA RESORT & CASINO,,G6500\nExecutive,Lord Abbett & Co,F2100\nCHAIRMAN OF THE BOARD,CRI INC.,J5100\nPARTNER,\"DEWITT TISHMAN ARCHITECTS, LLP\",B4200\nCB ORTHOPEDICS,,H1130\n\"BRENT'S CUSTOM TAXIDER\",,Y4000\nSICA TRAVEL,,T9400\nFINANCIAL ADV,\"NEUBERGER BERMAN, LLC\",F2100\nAnimal Genetics,Self employed,G0000\nEXECUTIVE,SPECTRUM FINANCIAL SERVICES,F3100\nStylist,Esadair Inc,Y4000\nPRESIDENT,CRAIG ZINN AUTOMOTIVE GROUP,T2310\nPensioner,Retired,X1200\nEXECUTIVE ASSISTANT,BRIDGE CAPITAL,F2300\nKOA,,C2100\nVICE PR,MARMIC FIRE & SAFETY CO INC,Y4000\nCONGRESSMAN,CONGRESSMAN,X3100\nSVP HUMAN RESOU,INTERNATIONAL PAPER,A5200\nAssessor,Wilmington,Y4000\nNAT RESOURCE CO,,Y4000\nProfessor,SUNY - Buffalo,Y4000\nMH International,Sole Proprietor,Y4000\nIT,CITRIX,C5140\nRegional Director,SJI Jackson,Y4000\nPresident/Ceo,Mcginn Msl,Y4000\nMAYBURY CLINICS,,H1100\nAttorney,Fowler and White,K1000\nSALES,WWWMEMORYDEALERSCOM,C5140\nSelf,\"Kenealy & Jacobi, PLLC\",K1000\nPRESIDENT & CHAIRMA,REICHERT NISSAN,T2310\nINTERNATIONAL CARGO EXP,,Y4000\nPOLITICAL CONSULTANT,AMBROSINO MUIR HANSEN & CROUNSE,G5260\nRANCHER,\"PARKER RANCHES, LTD\",A3000\nConstruction Manager,DeKalB Construction Co Inc,B1500\ninvestor,Northstar Capital Management,J1100\nPartner,\"Wiley, Rein & Fielding LLP\",K1000\nOPTIMUM TECHNICIAN,NETWORK ENGINEER,C5130\nEmergency Physician,Lancaster Emer Assoc,H1100\nAttorney,\"Williamson, McVeigh & Alfano\",K1000\nInvestments,Tiedemann Investment Group,F2100\nPresident,Oregon Coast Bank,F1100\nINVESTMENT BANKER,CEUT,Y4000\nCONSTRUCTION,JJ WHITE INC.,B1000\nCONTRACTOR,\"SAVANT CONSTRUCTION, INC.\",B1500\nTEACHER,\"STRASBURG SCHOOLS, STRASBURG, OHIO\",Y4000\nExecutive,Black Creek Capital,F4100\nAttorney,\"Westermann, Aydelott & Keenan\",K1000\nExecutive,HSA Inc.,Y4000\nBARNES THORNBURG,,K1000\nCMA,UMASS MEMORIAL,Y4000\nPRESIDE,MACON OCCUPATIONAL MEDICINE,Y4000\nVICE PRESIDENT,PHRMA,J7500\nMACHINE SHOP OWNER,A.T.M. MACHINE WORKS INC.,Y4000\nChairman of the Boar,NCFC,F4600\nsod farmer,self-employed,A1000\nOwner,Mortgage Solutions of Florida LLC,F4600\n\"BURNHAM COMPOSITES, INC.\",,Y4000\nInvestments,n.a.,Z9500\nLANDMARK BANCSHARES CORP,,F1100\nBanker,Drummond Banking,Y4000\nOFFICER,ATTORNEY GENERAL TEXAS,X3200\nCEO,FRASER COMMUNICATIONS,J7400\nMortgage/Finance,Self,F4600\nDirector of Compliance,\"Crown Asset Management, LLC\",F5200\nZIEGLER SAGAL & WIN,,Y4000\nCONTROLLER,C E S,Y4000\nSALES MANAGER,CIRXON,Y4000\nPACIFIC GREYSTONE CORP,,B2000\nOwner,Coin o Matil Inc,G5500\nREAL ESTATE,IRVINE COMPANY/REAL ESTATE,F4100\nChairman,PAZ Energy LLC,E1000\nEXECUTIVE,TORYS,F1200\nOWNER,YOUR PERSONAL TAILOR,Y4000\n\"EXEC VP, INTERNAL MEDICINE\",Merck Sharp & Dohme,H4300\nPSYCHOLOGIST,SELF,F4000\nINVESTMENT,CORRIENTE ADVISORS LLC,F2700\nCEO,SSM INDUSTRIES/CEO,D9000\nCHAIRMAN,JAMCO INC.,Y4000\nengineer,Powers Engineering,B4400\nTREASURER,\"SELECTIVE INSURANCE GROUP, INC.\",F3000\nCFO,Black Entertainment Television,C2200\nSELF-EMPLOYED,BRAND X ANTIQUES,Y4000\nHUNTLEIGH SECURITIES,,F2000\nBanker,Wellesley Bank,F1000\nPublic relations,\"Flatt & Associates, Ltd.\",Y4000\nCEO,Northcentral University,J1200\nPresident,Patients Privacy Rights,Y4000\nFINANCE,CARDTRONICS INC.,Y4000\nCHAIN SALON,,Y4000\nDI GIORGIO CORPORATION,,Y4000\nVICE PRESIDENT,SUN TAN SUPPLY,Y4000\nEXECUTIVE,COLORADO MINING ASSOCIATION,E1200\nAccountant,Jet Propulsion Laborator,X3000\nHECHT & COMPANY,,Y4000\nDentist,Indian Healh Service,H0000\nNOT FOR PROFIT EXECUTI,COMMON CAUSE,Z9500\nDEPUTY DIRECTOR DIVI,SANOFI PASTEUR,H4300\nLearning Specialist,Google Inc,C5140\nTest Pilot,NASA,X3000\nREAL ESTATE BROKER,JANNA BRIMER REALTY INC,F4200\nTeaching Artist,Self,Y4000\nREAL ESTATE BROKER,REALTY EXECUTIVES LAKE OZARKS,F4200\nPart,Law Offices of Curiel & Parker,K1000\nDealer,Hard Rock,G2900\nATTORNEY,\"FRIEDMAN, RUBIN & WHITE\",Y4000\nReal Estate,Milhaus Development,F4100\nProcedure Writer,Information Requested,Y4000\nUniversity Administrator,Temple University,H5100\nAMLAND DEVELOPMENT,,F4100\nTHE ALEXANDER GROUP,,G5250\nSHOE IMPORTER,,M3200\nCEO,Syniverse,Y4000\nSR VP,UST INC,A1300\nPRESIDENT,HESS PHARMACY,G4900\nPR,MINERAL AREA COLLEGE,H5100\nBUISNESS OWNER,\"LOMBARDO'S COMPANIES\",G2900\nPRESIDENT,CONCORDIA UNIVERSITY,H5100\nCSE,A. A.SML,Y4000\nReal Estate Broker,Covered Bridge Realty,F4200\nPLANT MANAGER,GE AIRCRAFT ENGINES,M2300\nBANKING,COMMUNITY BANCSHARES OF MS.,F1100\nWALLER LANSDEN DORTHC & DAVIS,,K1000\nReal Estate,Finch & Barry,Y4000\nCARDIOLOGIST,THE JACKSON CLINIC,H1100\nRealtor,\"Century 21, John Walton REALTO\",F4200\nNEUROSURGEON,MHSI,H1130\nCOMMERCIAL DEVELOPER,SELF-EMPLOYED,F4000\nCommunity Organizer,Community Action Coalition for South C,Y4000\nFed Govt Analyst,Fed Govt,X3000\nRADIOLOGIST,UC - SAN DIEGO,H5100\nPrincipal,BGR Government Affairs,K2000\nTownship Supervisor,Ypsilanti Township,Y4000\nOwner,American Foil & Embossing,Y4000\nOWNER,CSI CHEMICAL,Y4000\nLEGISLATIVE ASSISTAN,NORTH CAROLINA GENERAL ASSEMBLY,X3000\nAdvertising,\"'Venables, Bell & Partners'\",Y4000\nREGIONAL,CITIZENS BANK CONNECTICUT,F1100\nCHIROPRACTIC PHYSICIAN,,H1500\n\"MILBANK, WILSON ET AL\",,F2100\nANTIQUES DEALER,SELF-EMPLOYED,J7400\nConsultant,M + H,Z9500\nINSURANCE EXECUTIVE,ODS,F3200\nSTARFLEET MARINE TRANS,,Y4000\nManaging Partner,Connections Media Llc,Y4000\nBROKER,RINGLER ASSOCIATION,F3300\nADMINISTRATO,APPLE PHYSICAL THERAPY,H1700\n,\"HARMON, SMITH, BRIDGES & WILBANKS,\",K1000\nGovernment Affairs,US Oncology,H1130\nCEO,\"KEYMARK SYSTEMS, INC.\",Y4000\nF M LIGHT & SONS,,G1200\nLAMBETH CONSTRUCTION,,B2000\nSCRAP YARD OWNER,ROYALTON RECYCLING,Y4000\nSTEVENSON CONCRETE CONSTRUCTION,,B0500\nAttorney,Paul Weitz and Associates PC,K1000\nPharmacist,City Drug Company,Z9500\nMARTENS ICE GEARY KLASS LE,,Y4000\nVice President,U.S. SMOKLESS TOBACCO,A1300\nDirector,Seven Hills School,H5100\nRHI INC,,Y4000\nC. E. O.,D.E. ERRICK INC.,G0000\nUS ARMY RETIRED,retired,X1200\nCRAVATH SWAINE & MO,,K1000\nT V O REAL ESTATE SVCS,,F4000\nS BROWARD HOSPITAL,,H2100\nASHLAND ANESTHESIA PSC,,H1130\nTRUCK DRIVER,SAIA FREIGHT,Y4000\nEXECUTIVE,VSP GLOBAL,Y4000\nCEO & Chairman,Pequot Capital Management Inc,F2700\n\"DIRECTOR, SYSTEMS ENGINEERING 2\",NORTHROP GRUMMAN CORPORATION,D5000\n\"REAL ESTATE MANAGEMENT, DEVELOPMENT &\",CHOSID MANAGEMENT COMPANY,Z9500\nPROGRAM ADMINISTRATOR,ORANGE COUNTY,Z9500\nPhysician,Allergy Asthma Clinic,Y4000\nAgent,\"Halstead Property, Llc\",F4200\nComputer Consultant,Diane Nau,C5130\nReal Estate,Bernard Development Company,F4100\nPresident/CEO--TELAC,TELACO,F4600\nATTORNEY,HOYERHOYERSMITH & MIESNER,K1000\nATTORNEY,NOWLIN MCANNALLY,Y4000\nPhysician,Atlanta Pulmonary & Sleep Solutions,H1130\nOwner,Meisa Group LLC,Z9500\nPRESIDENT,TRUCK CAPS UNLIMITED,Y4000\nPRESIDENT,BRYANT CHRISTIE INC.,Y4000\n\"BARBOUR, GRIFFITH, & ROGERS\",,K2000\nBLUESTONE HOLDING,,F4100\nATTORNEY,CLEVELAND WATERS BASS,K1000\nBus Exec,Church & Dwight,M1300\nAIRCREW,FLIGHTSAFETY SERVICES CORP,Y4000\nATTORNEY,COLONY BRANDS INC.COLON,Y4000\nKIMBERLY QUALITY CARE,,Y4000\nATTORN,BATHGATE WEGENER & WOLF P.C.,K1000\nEXECUTIVE,ASCENDANCE,Y4000\nATTORNEY,TROLMAN GLASER & LICHTMAN ATTY AT LAW,Y4000\nScientist,Stony Brook Univ,Y4000\nself employed,consult Ltd,G5270\nVICE PRESIDENT,PAULSON & CO INC,F2700\nVICE PRESIDENT - DP,NORDSTROM OIL COMPANY,J7400\nAUTO DEALER,SENATOR FORD,T2300\nPHOTGRAPHER,SELF,J1200\nAttorney,\"Davis, Polk, & Wardell\",J7150\nOPTOMETRIST,WATTS EYE ASSOCIATES,Y4000\nREPORTER,CBS,C2200\nEL PASO ELECTRIC CO,,E1600\nECON DEV COMM,,Y4000\nVICE CHAIRMAN,FARMERS AND MERCHANTS BANK,F1100\nDOCTOR,LAWRENCE S. COHEN MD,H1100\nProject Manager,Locher Construction Co,B1500\n\"Asst. V.P., Property\",Markel Corporation,F3100\nMILITARY PERSONNEL,RETIRED,J1100\n\"CHAIRMAN, PRESIDENT & CEO\",PLAINS EXPLORATION & PRODUCT,E1120\nOFFICE MANAGER,HAROLD W. BERTHOLF INC.,Y4000\nSTATISTICIAN,GENERAL DYNAMICS INF,D9000\nOUTWARD BOUND,,J1200\nKOREAN AMERICAN FEDERATION,,Y4000\nExecutive,Continental Development Group,Y4000\nEXECUTIVE V. P. MARKETING,URANIUM ONE INC.,E1200\nLAWYER,LAW OFFICES OF FRANK J. DELANY,K1000\nOWNER,AUTOPLEX,Y4000\nSVP FEDERAL GOVERNMENT AFFAIRS,TECHAMERICA,Y4000\nOLDHAM CO OF TENN,,Y4000\nEXECUTIVE,FUCHS LUBRICANTS,M1000\nMGR PEN,BEHTLEHEM STEEL CORPORATION,M2100\nSEMA INC,,C5100\nRAIT INVESTMENT TRUST CO,,Y4000\nHAYLOR FREYER & COON,,Y4000\nRealtor,Tomm Eaton Real Estate,F4000\nRETIRED,UNIVERSITY OF CALIFORNIA SAN FRANCI,H5100\nOrthopaedic Surgeon,IL Bone and Joint Institute,H1130\n\"SR. VICE PRESIDENT, INNOVATI\",MEDRAD,H4100\n\"MANAGER,\",NATIONAL RESTAURANT ASSN.,G2900\nPRESIDENT,AZTEC CONTRACTORS INC.,Y4000\nGILMORE INC,,Y4000\nDATA MARK INC./CHAIRMAN / C.E.O.,,Y4000\nMarket Research,Genzyme,H4500\nBUSINESS & ESTATE ADVISOR,,F2100\nOWNER,PARAMONT MANUFACTURING LLC,T2200\nDIRECTOR,LEADERSHIP OKC,Y4000\nBUSINESS EXECUTIVE,MONTGOMERY CHAMBER OF COMMERCE,G1100\nManager,\"Kelly Enterprises, Inc\",G1200\nOPP MICOLAS MILLS INC,,M8000\nSTATE REP,,X3100\nPEE DEE FAMILY PHYSICIANS,,H1100\nOPERATIONS,TWIDDY & CO.,Y4000\nN/A/PHILANTROPIST,,C5140\nMEADVILLE TOYOTA,,T2310\nN/A HOMEMAKER,N/A,Y1000\nVICE-PRESIDE,OCEAN SHIP HOLDING CO.,Y4000\nSALES,CARDINAL MAIN.,Y4000\nSTEPHEN CLAUSE & ASSOC,,Y4000\nGOLD COAST REALTY,,F4200\nGovt. Affairs,ATX Technologies,C4500\nPRESIDENT/CEO,PINNACLE GROUP,G5200\n\"BALLY'S PARK PLACE CASINO\",,G6500\nBUSINESS OWNER,ROMIN CORPORATION,Y4000\nBOX ELDER SD,,L1300\nPresident,\"Mercer Strategic Alliance, Inc\",K2000\nAttorney,Wotitzky Ross Law Firm,K1000\nHOTEL OWNER/MANAGER,SELF-EMPLOYED,T9100\nCEO,NATIONAL TELEMANAGMENT CORP.,Y4000\nA A TRAUBER & ASSOCIATES,,Y4000\nATL MULTI-SPECIALTY,,Y4000\nPRESIDENT,\"WW WOOD, INC.\",J1100\nENGINE,METALS & MATERIALS ENGINEERS,B4400\nATTORNEY,\"THE GIBBS LAW GROUP, P.C.\",K1000\nINDUSTRIAL AUCTIONER,,Y4000\nPRESIDENT,VULCAN PROPERTIES,F4000\nE&T ENTERPRISE,,Y4000\nseafood processor,\"Raw Sea Foods, Ind\",G2350\nLEHMAN ROBERTS CO,,B1000\nAntique Dealer,Phyllis Van Auken Antiques,Y4000\nCOO,SSK,F4000\nPHYSICIAN,AKSHAY M. DESAI M.D. P.A.,H1100\nFirefighter,City of Boca Raton,X3000\nPresident,FUN UNLIMITED,G1200\nPolicy Analyst,Civic Venturec,F2500\nRANCH MOM,SELF,Y4000\nMarketing,MTA,J1200\nVINTNER,SCHRADER CELLARS,Y4000\nChairman + CEO,Free Congress Foundation,Z9500\nGENERAL MANAGER/CEO,\"BLUEBONNET ELECTRIC COOPERATIVE, INC.\",E1610\nPRESIDENT/OWNER,BREEDING INSULATION CO. KNOXVILLE IN,B3000\nPrincipal,Comtronics Corp,Y4000\nNORTH FLORIDA HEMATOLOGY,,H1130\nATTORNEY,SPEIGEL & MCDIARMID/ATTORNEY,Y4000\nPHILANTHROP,ROCKEFELLER FAMILY FUND,F7000\nConsultant,Colton Consulting,Y4000\nCustomer Service,Medco Health Customer Service,H3700\nVICE,YAMAHA MOTOR CORPORATION U.S.A,T8300\nPRICE-AHTNA,,LB100\nATTORNEY,BAIRD & BAIRD,K1200\nGLOBAL MARKET RESEARCH,SELF-EMPLOYED,G0000\nBEACON LEADER BEE,,Y4000\nPHYSICIAN,SURGERY SOUTH PC,H1100\n\"PARTNER, PROFESS\",GRANT THORNTON LLP,Y4000\nConsultant,Schitzler Cardiovascular,H1130\n\"VP, DIRECT SALES\",DISH NETWORK,C2200\nPRESIDENT,BRADFORD COAL CO. INC.,E1210\nPHYSICIAN,\"METRO FAMILY PHYSICIANS MEDICAL GROUP,\",H1100\nCHAIRMAN & CEO,PRODUCT CONCEPTS,Y4000\nCHEMIST,SELF,Z9500\ninvestment executive,Zurich International,Y4000\nVolunteer,Rfb & D,X1200\nLAWYER,\"FOREMAN, DEGEURIN AND NUGENT\",K1000\nATTORNEY,REINHART BOERNER ET AL,K1000\nWHEELABRATOR,,E3000\nUNIV OF WASHINGTON,,JD200\nEXECUTIVE,MURCHISEN MANAGEMENT CORP,Y4000\nMANAGEMENT,WEST GROUP,F4100\nPETERSON DILLARD SELF YOUNG & ET AL,,K1000\nSTRECKER INSURANCE INC.,,F3100\nPRESIDENT,\"PEPOLES SERVICES, INC\",Y4000\nOffice Manager,The Lipman Law Firm,K1000\nMigratory bird management,US Fish and Wildlife,Y4000\nHERMES & REED PARTNERSHIP,,B4200\nEducational Linguist,CENTER FOR APPLIED LINGUISTICS,Y4000\nSELF EMPLOYED,BEL-AIR SWAP MEET INC,Y4000\nPresident,Icuiti,Y4000\n,LIFE ALERT EMERGENCY RESPONSE INC.,Y4000\nWEB SPECIALIST,SELF-EMPLOYED,Y4000\nInformation Requeste,Montross Miller Muller Mendelson & Ken,K1000\nPSYCHIATRIC SOC WORKER,,Y4000\nPresident,\"Inter-City Supply Co, Inc\",Y4000\nASSIST,NH BUREAU OF EMERGENCY COMMU,Y4000\nconsultant,\"Gaia Ventures, LLC\",Y4000\nGENE R HUMPHRIES,,Y4000\nLAWYER,HARKINS WINNINGHAM,K1200\nV. P.,LORILLARD TOBACCO CO.,A1300\nATTORNEY,MEDIA DIRECT,Y4000\nREAL,SOUTHERN STORAGE MGMT. SYSTEMS,T7200\nSOFTWARE ENGINEER,MYSQL AB,Y4000\nVice-Pres/Co-Owner,John A Romeo & Assoc Inc,Y4000\nVP DOMESTIC POLICY,AOL TIME WARNER,Z9500\nRHODES OIL CO,,E1170\nOwner,Kaufman Realty Corp.,F4200\nHARRIS HEALTH CENTER,,H2000\nCONSULTANT,MCSR,JE300\n\"LTC,US ARMY-RETIRED\",N/A,X1200\nPRES,INLAND MACHINE & MANUFACTURING,G1200\nBUNGE INVESTMENTS,,Y4000\nOwner,Don Baker Communications,Y4000\nDACKERMAN & WABER INC,,F2400\nPRUDENTIAL REALITY,,F4200\nDEPUTY CHIEF OF STAFF,NORTH CAROLINA GENERAL ASSEMBLY,X3000\n/ INVESTOR/FARMER,,A1000\n\"HERON, BURCHETTE, RUCKER & ROTHWELL\",,K2000\nELISABETH GOLDMAN P.S.C.,,J7400\nCNCL OF CHIEF STATE SCHOOL OFFCR,,X3500\nStudent-UTSA,Information Requested,Y1000\nTV,HBO,C2200\nSELF EMPLOYED /WIDOW/HOMEMAKER,,F7000\nCONSTRUCTION,ALLADIN CONSTRUCTION CO. INC.,B1500\nE.V.P.,SIMMONS FIRST NATIONAL BANK,F1100\nHOWARD RICE NEMEROVSKI ETC APC,,K1000\nFEWELL & ASSOCIATES,,Y4000\nConstruction,Staunton Enterprises,Y4000\nPERRY OCEANOGRAPHICS,,T6000\nFARMER,DON HALCOMB FARMER,A1000\nBusine,Boise Cascade Corporation,G4600\nTRUSTEE,SALTONSTALL AND COMPANY,J7150\nNations Health,Ceo,Y4000\nContractor,Qualcon,Y4000\nPHARMACIST,INFORMATION REQUESTED,H2100\nSales,Carboline Company,Y4000\nBOWDOIN STREET HEALTH CTR BETH ISRA,,H2100\nTEACHER,LOS ALAMOS MIDDLE SCHOOL,Y4000\nProducer,Warner Horizon TV,C2000\nPresident,Carr Foundation,X4110\nCONTRACTOR,R.A. LIN & ASSOCIATES,Y4000\nTheoretical Physicis,Los Alamos National,D4000\n\"SENIOR DIRECTOR, GOVT. AFFAIRS\",\"PFIZER, INC.\",H4300\nNW MARINE TECHNOLOGY INC,,Y4000\nDirector,Concentra Medical Center,H0000\nAnalyst,RBC Capital Markets,F2300\nFOUNDER & CHAIRMAN,CHICK-FIL-A INC.,G2900\nReal Estate Broker,Century 21 Poss Realty Sky Val,F4200\nA F C ENTERTAINMENT INC,,Y4000\nMCGOWEN WORKING PARTNERS,,Y4000\nPRES,KEYSTONE MOUNTAINEER POWER SYS,Y4000\nBILL ADAMS CONSTRUCTION COMPANY,,B1500\nCOMPTROLLER,UNITED STATES MARINE CORPS/COMPTROL,X5000\nPresident,Hueber-Breuer,Y4000\nOWNER,COPTERVISION,Y4000\nATTORNEY,\"WACHTELL, LIPTON\",Z9500\nVICE PRESIDENT,PLASTIC SERVICE CENTERS,Y4000\nPublic Affairs,Glaab & Associates,Y4000\nPhysician,University of Pittsburgh/Upmc,H5100\nMEDICAL DOCTOR,SELF,H1130\nEXECUTIVE,BONNIE BELL INC.,M3300\nREAL ESTATE,AVATAR,F4000\nHOT POTATO,,Y4000\nSOUTHEAST TOYOTA SERVICE DIVISION,,T2300\nSOMMELIER,RITZ CARLTON,T9100\nAKINS PUBLIC STRATEGIES,,G5210\nINVESTM,NOMURA ISJ GLOBAL INSURANCE,F3100\nLETTER SENT: 2/20/2012,LETTER SENT: 2/20/2012/LETTER SENT:,J5100\nASST. U.S. ATTORNEY,U.S. GOVERNMENT,X3000\nASSOC. DIR. OF PUBLIC AFFAIR,VPI&SU,Y4000\nCANDY DIST & VENDO,IN TOBACCO,A1300\nCHAIRMAN,DYNACORP INC.,F4000\nDOCUMENT DESTRUCTION,SELF EMPLOYED/DOCUMENT DESTRUCTION,Y4000\nEDUCATION UNION CONSU,SELF EMPLOYED,Y4000\nPRESIDENT,THE SCHULTZ GROUP,Y4000\nAttorney,\"Dies & Hile, LLP\",K1000\nCOMPUTATIONAL CHEMIST,GLAXOSMITHKLINE PHARMACEUTICALS,Y4000\nEMPLOYERS CONTRACT SERV,,Y4000\nAttorney,Klee Tuchin Bogdanoff Et Al,J5100\nAFOGNAK LOGGING,,A5000\nSales Manager,Holland Company,T5300\nAdjunct professor,NYU,H5100\nHEALTH CARE CAMPAIGN,,JH100\nKRAMER DILLOF TESSEL DUFFY,,J7200\nLAWYE,OMETRIAS D. LONG & ASSOCIATES,Y4000\nGENERAL COUNSEL,INDEPENDENT INSURANCE AGENTS & BROKERS,F3100\nCHAIRMAN OF THE BOAR,COLLINS NICKAS COMPANY,F4000\nPECAN GROWE,EASTERLIN PECAN COMPANY,Y4000\nENGINEER,NORDAM,Y4000\nCO-OP CREDIT UNION,,F1300\nPRESIDENT CEO,EXPRESS SOUTH LLC,Y4000\nPRESIDE,NTL INST-EXCEL. IN TEACHING,Y4000\nGeneral Contractor,\"Roberts/Deacon, Inc\",Y4000\nPresident & CEO,Holt Companies,B2000\nOwner,Central Avenue Pharmacy,G4900\nEngineer,Broadcom Corporaton,C5110\nLAWYER,\"SCHALL & BARASCH, LLC\",Y4000\nJESUS CONTRERAS-LAW,,K1000\nLINDGREN R F ENCLOSURES INC,,B1000\nCALKINS & CAMPBELL,,K1000\nCOOK,DANJI RESTAURANT/COOK,G2900\nPHYSICIAN,LIFETIME SKIN CARE CENTERS,H1100\n\"OIL, GAS\",SELF,E1100\nACCESS BUSINESS GROUP,,G4800\nGEOLOGIST,PASON SYSTEMS,Y4000\nOwner,JCLSB LLC,Y4000\nPROJECT MANAGER,US DEPT OF VETERANS AFFAIRS,X3000\nAttorney,Self employed,J1200\nTeacher,Sunnyvale School District,X3500\nFilm Maker,Ruckusfilm,C2400\nMARINE FUELING SERVICE,,G1200\nST PAUL HOTEL,,G2900\nMIDLAND POWDER COMPANY,,Y4000\nDISTRIBUTOR,LEWIS BEAR COMPANY,G2850\nEXECUTIVE,PIPER JAFFRAY INC,B2000\nATTORNEY,\"O'CONNELL & SOIFER LLP\",K1000\nROAN & AUTREY,,Y4000\nTRUCKER,BASON WESTERN INCORPORATE,Y4000\nINVESTMENTS,HOCKY MANAGEMENT CO.,Y4000\nC.E.O./NON-PROFIT OR,EHEALTH INITIATIVE,Y4000\nCPA,AHART & ASSOCIATES PC,F5100\nDEVELOPMENT DIRECTOR,MOUNTAIN BIG WORKS,Y4000\nSYSTEM ENGINEER,MITRE CORP,J7400\nResearch Analyst,Oppenheimer Capital,F2100\nATTORNEY,\"ROBISON CURPHEY O'CONNELL\",Y4000\nLA PRIMA ESPRESSO CO,,G2900\nVP,NY Life,F3300\nNORTHWESTERN MUTUAL LI,,F3100\nINVESTMENT BANKING,SELF,J5100\nOWNER,\"PEDROTTI'S NORTH WIND RANCH\",Y4000\nFINA,\"SITZMANN, MORRIS & LAVIS, INC.\",F3300\nVice President,ASG Real Estate Co,F4000\nCRAWFORD FITTINGS,,J1100\nEnvelope Manufacture,COMMERCIAL ENVELOPE,M7000\nWATSON CONSTRUCTION,,B1500\nCOMMUNICATIONS CONSULTANT,HOLLING CONSULTING L.L.C,Y4000\nManager Renter Prope,Self,G0000\nANDREW W BYRD & CO,,F4100\nPROGRAMMER,\"JM FIELD MARKETING, INC\",Y4000\nFINANCE ANALYST,PARAMOUNT CAPITAL,F0000\nPresident & Chief Executive Of,Sundance Channel,C2200\nPRESIDENT,JACOBS INDUSTRIES,Y4000\nSPECIAL EFFECTS,STUDIOS,Y4000\nDERMATOLOGIST,UNIV OF KANSAS MEDICAL CENTER,H1130\nurban design consult,Drake Associates,Y4000\nTEACHER,SMSD,Y4000\nVice President,Pyramid Group,H0000\nCO-OWNER,\"MARK'S MOBILE GLASS\",Y4000\nV.P. GOVERNMENT AFFAIRS,CORNERSTONE,K2000\nMNG DIR/BUS TRVL MAR,ALASKA AIRLINES,T1100\nQUANTUM RESTAURANT GR,,G2900\nSENIOR EXECUTIVE,US GOVERNMENT,X3000\nretired farmer,none,J1200\nFeedyard Owner,\"Mc6 Cattle Feeders, Inc.\",A3300\nDIRECTOR,TULLAHOMA FINE ARTS CENTER,X4200\nANDRULIS RESEARCH,,C5100\nAttorney,\"Harris, Willshire, Ganus\",Y4000\nExecutive Vice President,Isle of Capari,G6500\nowner,Cook Pecan Company,Y4000\n\"O'HARE INTERNATIONAL\",,T1600\nInformation Requested,Information Requested,F1200\n\"PATRICK, BEARD & RICHARDSON\",,K1000\nOwner - Executive Education and Develo,\"Mindtech, Inc\",Y4000\nHealth Care Admin,Group Health Cooperative,H3200\nNATURAL GAS PRODUCER,SELF-EMPLOYED,G0000\nJIM KERAS NISSAN,CFO,T2310\nTreasurer,\"Sage Investors, Inc\",Y4000\nOwner,Ellis Tanner Trading Co.,Y4000\nRENMARK,,Y4000\nattorney,Buist Moore,Y4000\nMedia Consultant,Golden Govt Media,Y4000\nPRESIDENT,ILLINOIS DIVERSATECH,F1000\nMANAGEMENT CONSULTING,DIGITALE INC.,Y4000\nIT-LEX,,Y4000\nAttorney,William Kirkland,K1000\nCHAIRMAN,NAUMANN/HOBBS MATERIAL HANDLING,M2300\nZ D WINERY,,G2820\nPresident,Polino Contracting Inc,Y4000\nGREYROCK CO INC,,Y4000\nATTORNEY,AMATO & START,Y4000\nSELF-EMPLOYED,BAY STATE SEWAGE,Y4000\nManager,Intuit,J1200\nCOLORADO BELLE HOTEL,,G6500\nOwner,\"Joynce's Design\",Y4000\nPRODUCER,SONY PICTURES TELEVISION,C2300\nWAYNE STATE UNIVERSITY,,H5150\nINVESTMENTS,ELLIOT COMPANY,Y4000\nCEO,HAMPTON GROUP INC,Y4000\nFINANCIAL,BNY MELLON- PERSHING LLC,F1100\nMEDICAL PHYSICIST,SELF EMPLOYED,H1130\nFAMILY PHYSICIAN,ETMC,Y4000\nAUTOMECA TECHNICAL COLLEGE,,H5200\nPOLSINELLI SHALTON FLANIGAN SUELTHA,,K2000\nPresident,County Line Fence Co,Y4000\n\"SVP, ISSUER PROCESSING\",VISA INC.,F1400\nCHIEF EXECUTIVE,\"AVE ELECTRIC, INC.\",Y4000\nPARTNER,POWERS & SANTOLA LLP,K1000\nLLOYD LAMONT DESIGN INC.,,Y4000\nSTATE SENATOR,COMMONWEALTH OF VA,Y4000\nMGR,QUICEN,J9000\nAnesthesiology,Windy Hill Anesthesia,H1130\nCEO,Yaga Corporation,Y4000\nALAN W LANDSBURG,,C2400\n\"NED'S CATERING\",BRASS APPLE,G2900\nNEXERGY INC.,,Y4000\nSenior Managing Director,\"BEAR, STEARNS & COMPANY INC.\",F2300\n,UNIVERSITY OF TEXAS HEALTH SCIENCE,H5150\nScientist,\"Geosystems Analysis, Inc.\",Y4000\nLicensed Social Work,Living Independently Forever Inc,Y4000\nCorporate Officer,\"Dry Dock Depot,  Inc\",Y4000\nExecutive,China Direct,Z9500\n\"SVP, Business Development\",LPL Financial,F2100\nSOUTH CENTRAL GOLF EQUIP,,M3600\nGIFFORD CUSTOM CONSTR,,B2000\nAdministrator,\"Rowland Hall-St. Mark's School\",J1200\nEXECUTIVE DIRECTOR,WV DENTAL ASSOCIATION,H1400\nBOTECH LLC,,Y4000\nSEABREEZE HOLDINGS,,Y4000\nCHIEF EXECUTIVE OFFICER,ARBITECH,C5120\nINVESTMENT ANALYST,WEILER ARNOW MANAGEMENT COMPANY,F4200\nMANAGER,WEINMANN HOLDINGS,Y4000\nOwner/Rancher,Gottsch Feeding,Y4000\nExecutive,R J Lee Group,G5200\nBusiness Owner/Princ,GSP Consulting Corp,K2000\nAttorney,Podolsky Associates PC,Y4000\nManufacturer,Technocean,Y4000\nPHYSICIA,VANDERBILT UNIV. MED. CTR.,H2100\nATTORNEY,BARNES GROUP INC,M5000\nEMERGENCY SERVICE,,Y4000\nREAL ESTATE,MARKEL-EAGLE,B1500\nSVPOPERATI,AMERICAN EXPRESS TRS CO.,F1400\nREAL E,NATIONAL BUILDING LEASINGINC,F4000\nVP,\"TRANSYSTEMS, INC.\",Y4000\n\"EVERGREEN INTERNATIONAL AVIATION, I\",,T1600\nSR. VP FOR PROGRAMS,CALL,Y4000\nEXECUTIVE,\"SRT INVESTMENTS, LLC\",Y4000\nPRODUCTION MANAGER,UNIVERSAL BLANCHERS,A1600\n\"Consulting, Writing, Research\",Self,J1200\n\"SECRETARY OF STATE'S OFFICE\",,X3000\nENGINEER,WV PUBLIC SERVICE COMMISSION,Y4000\nEpiscopal priest,Episcopal Diocese of CT,Z9500\nHealth Administration,Group Health,H3000\ninvestments,Self-Employed,F7000\nCEO,THE AMERICAN PATRIOT GROUP,G5270\nJOSEPH R. CURCIO LTD./ATTORNEY/ATTO,,K1000\nCoastal Scientist,University of Hawaii,H5100\nBusiness Owner,\"Tango Transport, LLC\",T0000\nTeacher,Port Townsend School,Y4000\nPUBLIC RELATIONS,THE ROGERS GROUP,B5100\nOFFICE MANAGER,PEHLER DISTRIBUTING INC.,G2850\nTXAMERBONCH,,Y4000\nINDEPENDENT SECTOR,,J5100\nCITTA DEVELPMENT INC,,Y4000\nOIC,,J7400\nMARSHALL,THE KENNEDY,C2400\nAssistant,Imagine Entertainment,C2400\nProfessor of Public Health,University of California,H5100\nTRIAD MORTGAGE,,F4600\nPresident,South Tampa Land Group,Y4000\nEngineer,\"Cornerturn, LLC\",Y4000\nEXECUTIVE,TEA IMPORTERS INC.,Y4000\nGOVERNMENTAL RELATIO,SELF-EMPLOYED,K2000\nAdvocate,The Wilderness Society,JE300\nFIRST EAST SIDE SAVINGS BANK,,F1200\nAdvisor,The Michael L Larson Co,Y4000\ntrader,\"Gilmore farragut, llc\",Z9500\nSELF EMPLOYED,JAMCO HOLDINGS LLC/SELF EMPLOYED,Y4000\nPRESIDENT,CONQUEST COMMUNICATIONS,Y4000\nHost,Talk Radio Host,C2100\nDirector,\"Antsy, Inc\",Y4000\nSOFTWARE MANAGER,,J7400\nVice President,Sunbelt Fabrics,Y4000\nPhysician,Radiology Assoc of Clearwater,H1130\nMANDA MOTOR OF AMERICAN,,Y4000\nVice President-Accounting,AIG,F3100\nPHYSICIA,UNIV. OF MS MEDICAL CENTER,H2100\nPRESIDENT,\"Admixtures, Inc.\",B5100\nCOMMUNICATIONS CORP,,Y4000\nSelf Emp,Tall Oaks Construction Llc,B1500\nBELLEZZA CONSTRUCTION COMPANY,,B1000\nAttorney,Iowa Health Systems,H0000\nOwner,Nappa Building Corporation,Y4000\nMANAGER,LIBERTY HOME CARE,J1100\nATTORN,\"WELDON, HUSTON & KEYSER, LLP\",Y4000\nVICE PRESIDENT,NASDAQ OMX,F2400\n\"GVP, PRODUCT DEVELOPMENT\",FORD MOTOR COMPANY,T2100\nQUARLES & BRADY,,K1000\nNOVARTIS INSTITUTE,,H4500\nExecutive,Duce Construction,B1500\nCAREY KRAMER,,Y4000\nATTORNEY,\"BLANK, ROME\",K1200\n\"Elected, Board Of Supervisors\",Albemarle County Virginia,Y4000\nBusinesswoman,Brown Company,Y4000\nAttorney,Law Offices Lembhard G Howell PS,K1000\nOWNER,VENUS DE MILO RESTAURANT,G2900\nUSDA GRADUATE SCHOOL,,X3000\nMEDICAL SCHOOL INTERN,,G0000\nPresident,Lincolns 10;000 Silver Bar,G1200\nDirector,\"O'melveny & Myers LLP\",K1000\nPresident,List Associates Inc,Z9500\nOWNER,YORKSHIRE FARMS LLC,Y4000\nSec of State,State of WV,X3000\nDatabase Admin,Pepsico,G2600\nFLAHERTY & KOEBELE,,Y4000\nAcademic Advisor,University of Rhode Island,H5100\n\"ANALYST, RENEWABLE CAPITAL MARKETS\",CLEAN POWER FINANCE,Y4000\nPHARMACIST,SAVE RITE DRUGS INC,H1750\nSUNLAND FIRE DEPARTMENT,,Y4000\nDUMAS MANUFACTURING,,M0000\nPartner,\"Cane Bay Partners VI, LLC\",G5270\nRETIRED,,C2600\nPhysician,Mallory Health Center,Y4000\nPRESIDENT,PRYDE CORP.,Y4000\nSAWN STEEL & ASSOCIATES,,K1000\nCHAIRMAN,NY GOLF CENTER,Y4000\nInformation Requeste,Information Requested,G6700\nEXECUTIVE,BRIDGEWATER ASSOC.,F2700\nMANAGER,TLM AUTOMOTIVE,Y4000\nCOMMUNICATIONS DIR,FIVE OAKS CHURCH,X7000\nPresident & Chairman,\"SerDrilCo, Inc.\",E1120\nPHYSICIAN,ST BARNABAS MED CTR,H1130\nINTERMEDICS,,H1100\nSANTIAGO COMMUNITY COLLEGE,,H5100\noffice manager,Sigma Ventures,J1100\nREAL ESTATE INVESTMENT BANKER,EASTDIL SECURED,F4100\nWABASHA GROUP INC,,Y4000\nEmergency Physician,Natl Med Dir AMR,H1100\nKESSLER MEMORIAL HOSPITAL,,H2100\nAttorney,\"Varian Medical Systems, Inc.\",H0000\nHILCO,,Y4000\nMCGUIRE & MCGUIRE,,K1000\nIMMIGRATION ATTORNEY,DIGNA OCHOA CENTER,Y4000\nRetiree,Earthlink,C5140\nMORRISON & FORESTER LLP,,K1000\nMANAGING PART,ACCORDANT COMPANY LLC,Y4000\nSCIENTIST,BAYER,J7300\nBiologist,Usda Forest Service,X3000\nTEACHER,AM SHALOM TEMPLE,Y4000\nManaging Director,Superfund Asset Management,Y4000\nVICE PRESIDENT,GOLD COAST BANK,Z9500\nALBERTSONS INC,,J6200\nK.F.C. FRANCHISE,WAGSTAFF MANAGEMENT CORPORATION,G2900\nPRESIDENT,BAILEY NURSERIES,A8000\nReal Estate Mgm,self,G0000\nGeneral Dentist,\"Jerry R Fankhauser, Dds, Pc\",H1400\nFRANCHI,PAROCHETTI ENTERPRISES INC.,Y4000\nMATHEMATICIAN,ANDREW DAVIDSON AND COMPANY,Z9500\nARLINGTON EYE ASSN,,H1120\nLUMEX INC/PRESIDENT/CEO,,Y4000\nPRESIDENT,SAVOR SEASONINGS LLC,G2100\nREALTOR,ALLSOUTH,F4200\nBOOKKEEPER,DHIRAJ SHAH,H1100\nPRIMA VALLEY ORGANICS,,A1000\nLONGLEY SUPPLY COMPANY,,B5300\nContractor,Vrban Fire Protection,Y4000\nPublisher,Houston Newspapers Inc,C1100\nSWEETWOOD CAHN & BRODER,,K1000\nBUSINESS DEVELOPMENT,\"SMI, INC\",K2000\nClerk,Mercy Regional Medical cet,H2100\nORIOLE HOMES,,Y4000\nEngineering Manager,\"Intelligent Devices, Inc\",Y4000\nRETIRED CEO,DYNAMAC CORP,E2000\nConsultant,Big Sky Copywriting Inc,J7400\nUPSTART COMMUNICATIONS,,J7400\nProfesor,Ucla,H5100\nScout,Seattle Mariners,G6400\nAttorney,CRLA,Y4000\nPHYSI,SHAWNEE MEDICAL CENTER CLINIC,H2000\nPRESIDENT,FARMERS NATIONAL BANK LEBANON,F1100\nEngineer,Sara Inc,Y4000\nPublisher,BookVirtual Corp.,Y4000\nKOONTZ ELECTRIC CO,,Y4000\nPARTNER,MOONEY FARMS,A1000\nDOCTOR,WASHINGTON UNIVERSITY,H5100\nMANAGING PARTNER,NEW YORK LIKE,Y4000\nAttorney,Ekimoto & Morris LLLC,K1000\nADMINISTRATOR,COMMUNITY HOSPITAL & WELLNESS CENTE,H2100\nINSURANCE,RAND FEUER & KLEIN L.L.C.,Y4000\nTravel Agent/Realtor,Self Employed,G0000\nEXEC,UNIVERSITY OF CHICAGO HOSPITAL,H2100\nPartner,\"NEW ECONOMY VENTURES, L.L.C.\",Y4000\nEVP/CFO,Kaman Corp,M2300\nHEALTH SERVICES,OREGON PRIMARY CARE ASSN,H3000\nToxicologist,Eli Lilly,H4300\nOAKLAND BUSINESS DEVPMT CORP,,Y4000\nJOURNALIST/PHOTOGRAPHER,SELF EMPLOYED/JOURNALIST/PHOTOGRAPH,C1100\nCHAIRMAN AND CEO,KAPSTONE PAPER AND PACKAGING,A5200\nMURPHY HOMES,,Y4000\nKOHLBERY KRAVIS ROBERTS & CO.,,F2600\nGRIFFITH ELEC SUPPLY CO INC,,B5500\nATTOR,BLANK ROME COMISKY & MCCAULEY,H4300\nSELF,REAL ESTATE MANAGEMENT,Z9500\nAttorney,\"Szaferman, Lakind, Blumstein & Blader,\",K1000\nVALERO COMPANIES,,E1160\n\"WRITER, CEO DO A LITTLE\",SELF-EMPLOYED,C1100\nLEGAL ASSISTANT,STEPHEN SPECHER,Y4000\nBusinessman,Puccio & York Realty LLC,B2000\nOWNER,ELMENDORF STRATEGIES,K2000\nBODY SHOP,,H1100\nVICE PRESIDENT,HUNT CONSTRUCTION,B1500\nEDUATIONAL CONSULTANT,SELF EMPLOYED,Y4000\nOUTDOOR ADVERTISING ASSO OF,,G5230\nATTORNEY,PEPPLE JOHNSON CANTU &,K1000\nPHYSICIAN,ALL FLORIDA ORTHOPEADIC ASSOCIATES,H1130\nOWNER,\"SAPP'S SERVICE CENTER INC.\",Y4000\nMANAGEMENT,RONNOCO COFFEE,G2600\nREGIONAL MANAGER,THROGGS NECK EXTENDED CARE,Y4000\nNTL ASSN HOME BLDR,,B2000\nASSOC. MECHANICAL,BURNS & MCDONNELL,B4000\n\"Engineer, Vice President\",\"Todd Electric, Inc\",B3200\nREAL ESTATE PROFESSIONAL,LZ MANGEMENT,Y4000\nCHAFFE MCCALL ET AL LLP,,Y4000\nOwner,Rainbow Rehab Center,Y4000\nPHYSICIAN,IDENTITY MEDICAL GROUP,Y4000\nAttorney,Katz Friedman et al,K1000\nC.P.A.,DELOITTE TOUCHE L.L.P.,F5100\nCOMPUTER SYSTEMS ADMINISTRATOR,BROCKWAY-SMITH CO.,Y4000\nGENESIS MERCHANT BROS SECURITIES,,J5100\nArchitect,\"Santos/Rainmundez Architect, PA\",B4200\nManager,American Express Company,F1400\nSACHS NUNN KAYES ET AL,,K1000\nCeo,Super Sod,Y4000\nPRESIDENT & CEO,MIKOHN GAMING CORP,G6500\nStore Manager,Self-Employed,G0000\nP,PRESQUE ISLE ELECTRIC & GAS CO-OP,E1610\ndisabled,N/A,Y1000\nNONE,NA,Y1000\nAttorney,Thompson & Coburn,K1000\nPresident & CEO,NanoGram Corporation,M9000\nPresident,Lifestyle Changes Inc.,Y4000\nSANDS MANUFACTURING CO,,Y4000\nCO-FOUNDER,HIPPOMSG,Z9500\nLAWYER,MGM RESORTS,G6500\nPHYSICIAN ASSISTANT,MARICOPA COUNTY,X3000\nApple Reit Companies,,F4000\nINVESTMENT MANAGER,SELF-EMPLOYED,JE300\nSELF-EMPLOYED,LAREDO MEDICAL CENTER,H2100\nProfessor,Truman State University,Z9500\nREAL ESTATE DEVELOPER,HOPPE INC.,Y4000\nINVESTOR,CVC CAPITAL PARTNERS,F0000\nCOMAR OIL,,Y4000\nPRESIDENT,N.H.S. MANAGEMENT L.L.C.,H2200\nCONGRESSMAN,UNITED STATES CONGRESS,F1400\nFINANCIAL ADVISOR,SELF-ST. CLAIR INVESTMENTS,Y4000\nPRESI,UNITED CONCRETE PRODUCTS INC.,B5100\nT-BONZ,,G2900\nCONSULTING,GEORGE STRAWBRIDGE,Y4000\nEducator,Close Up Foundation,Y4000\n\"CO-CHAIR, CFR\",COUNCIL ON FOREIGN RELATIONS,J5000\nVETERINARIAN,CARE,X4100\nADMIN,VHA,J7400\nEXECUTIVE,ALAMO IRON WORKS,Y4000\nREAL ESTATE,UNITED HOLDINGS,F4000\nOWNER OF MANUFACTURING PLANT,,M0000\nArt Director,Meredith Corporation,C1100\nRecorder Of Dates,DEL. COMPANY,Y4000\nBLUE CROSS BLUE SHIELD OF NE,,F3200\nOWNER,H. THEOPHILE,Y4000\nELECTRICAL,C.W. HENDERSON ELECTRIC,B3200\nDean,University of Arkansas at Little R,J7400\nWAYNE STATE UNIVERSITY BOARD,,H5100\nMEDICAL COLLEGE OF GEORGIA(GHSU),RETIRED CHAIR EMERITA,J7400\nASHEVILLE CHAMBER OF COMMERCE,,G1100\nEngineer,\"Ericsson, Inc.\",C4300\nALLIED PHARMACY,,G4900\nSOIL SUPPLY CO,,Y4000\nAGRICULTURE,CELOBAL PRODUCE SALES/AGRICULTURE,A1400\nAUTO SALES,HINCKLEY DODGE,T2300\nUNIVERSITY PR,UNIVERSITY OF FLORIDA,H5100\nVAN NESS FELDMAN & CURTIS,,K1000\nSelf employed,,JD200\nCHIEF CLAIMS OFFICER,ARCH INSURRANCE GROUP,F3100\nMGR,GEORGIA MINING ASSOCIATION,E1200\nORAMA PARTNERS,,Y4000\nHUGHES INFORMATION,,D3000\nATTORNEY,\"RAYMOND ARMOUR, ESQ.\",Y4000\nMANUFACTURERS EQUIPMENT REPRESEN,ITI CORP,Y4000\nRESTAURANTS,SELF-EMPLOYED,G2900\nHomemaker,L. & F. DISTRIBUTORS LIMITED,G2850\nExec,Richardson Industries,M4100\nProgrammer,UCSR,J1200\nFIRST CHRISTIAN CHURCH,,J1100\nRetired,Pagre Davis,X1200\nLAW SCHOOL GRAD,,Y0000\nFRANKLIN PARK DENTAL ASSOCIATION,,H1400\nSoftware Architect,Landslide Technologies,Y4000\nPARAGON VETNURE MANAGEMENT COMPANY,,F2500\nPresident Emeritus,Memphis Zoo,X4200\nOwner,Cross Creek Farms,A1000\nEXECUTIVE,RESOURCE MANAGEMENT,Y4000\nPresident,Eagle Distributing of Shreveport Inc.,G2850\nAttorney,\"Davis, Wright & Tremaine\",K1000\nDEMOCRAT PRINTING & LITHO,,C1300\nHR Consultant,Prothman Co,Z9500\nCHIE,\"AMBROSE EMPLOYER GROUP, L.L.C.\",G5250\nnone,unemployed/retired,X1200\nINVESTING,GTCR,F2600\nOwner,Bradley Excavation,B3600\nS T VREELAND AGENCY,,Y4000\nPARTNER,MP&F PUBLIC RELATIONS,G5210\nPIERRE SCHOOLS,,Y4000\nPRESIDENT,TOLDAN OIL,E1100\nOWNER,ROONEY PETROLEUM SERVICES,Y4000\nINVESTMENT ADV,DE BURLO GROUP,Y4000\nFINANCE CONSULTANT,WASHINGTON UNIVERSITY,H5100\nExecutive,Viad Corp.,G5200\nDIRECTOR OF COMMERCIAL OPERATIONS,PRIMARIS,Y4000\nPhysician,Urology Associates of N Texas,H1130\nPRESTIGE CARE,,H2200\nGeneral Counsel,\"Christie's\",F5500\nPURCHASING,BEHLEN MFG. CO.,Y4000\nConstruction,Miller & Long,B1500\nLEGAL,LAW FIRM,K1000\nUSWA,USS,Y4000\nDACUS FENCE CO,,Y4000\nFounder/Investment Advisor,Relative Value Partners,J5100\nTeacher,Konocti Unified School District,X3500\nEaton  Vance,,Y4000\nGOVERNMENT AFFAIRS,ENTERGY,Z9500\nSISTERS OF CHARITY LEAVENWORTH,,H2100\nATTORNEY,STEWART & COMPANY,K2000\nPresident,\"Nutrition Now, Inc.\",Y4000\n\"Smith's\",,Y4000\nINGLES MARKETS,,G2400\nOFFICE MANAGER,SCOTT W. MCEACHIN,Y4000\nADMINISTRATOR,THE LORDS RANCH,A3000\nPumper,Chesapeake Energy,E1120\nPRESIDENT,BOULION AVIATION SERVICES,T1100\nPRESIDENT OF BOARD OF ALDERMAN,CITY OF ST. LOUIS,X3000\nDirector,The Mosaic Financial Group LLC,F2100\nSenior Healthcare Recruiter,RN Network,Y4000\nphysician-surgeon,Self employed,J1200\nPresident - Owner,Allegheny Machine Tools Ing.,M5000\nNORTHEASTERN BANK OF PENNSYLVANIA,,F1100\nSCIENTIST,CELGENE CORP.,H4300\nMILLERS C/PL J/EGL,,T2300\nAttorney,Memory & Day PC,Z9000\n\"CHAIRMAN, PRESIDENT, CEO\",VENTAS,F4000\nVANWEY JOHNSON,,Y4000\nHEALTHCARE VENTURE CAPI,NGN CAPITAL,J1100\nAnalyst,Sra International,D9000\nMARDENS,,Y4000\nLobbyist,Levin Powers Brennan Shea,K2000\nMUNTER ENTERPRISES,,Y4000\nContractor,\"Virginia Concrete Company, Inc.\",B0500\nASSOCIATION EXECUTIVE,NORTHWEST LOUISIANA  ASSOCIATI,F4200\nFINANCIAL ADVISOR,\"ALLEN, MOONEY AND BARNES INVESTMENT AD\",Y4000\nCEO,PARASOL,Y4000\nBO,CRIME VICTIMS COMPENSATION BOARD,Y4000\nCANCER TREATMENT CENTERS OF AMERICA,,J2200\nJ GORDLEY & ASSOC,,Y4000\nsales,harday mfg co,Y4000\nENGINEER,LEIDOS CORP.,D3000\nREAL ESTATE BROKER,DOWNING FRYE REALTY INC,F4200\nAttorney,\"Baker Donelson Bearman, Caldwell & Ber\",K2000\nLAWYER,MARKS & HARRISON/LAWYER,K1000\nBUREAUCRAT,IDAHO PUC,Y4000\nPRESIDENT,CERQA,Y4000\nFinancial Consultant,\"Robert Anderson & Assoc, LLC\",Y4000\nMANAGER,\"STEAMBOAT LAKE OUTFITTERS, INC.\",Y4000\nRN - Administrator,\"Children's Hospital\",H2100\nPresident,\"Standard Distributing, Inc.\",Y4000\nVice President Of In,Ora Sure Technologies,Y4000\n\"Sr Vp, Chief Medical\",CENTENE,H3700\nPUBLIC AFFAIRS,THIRD WAY,Z9500\nINFO REQUESTED,\"B AND B TRUCKING CO., INC.\",T3100\nCORP. EXEC.,EDWARD C. LEVY CO.,B5100\nBANK OF DUNDEE,,F1100\nACCOUNTANT,THOMAS THOMPSON,J6200\nInformation Requested,University of Alberta,H5100\nOwner / Ceo,Advanced Health Care,H0000\nAGENT,BROWN AND BROWN OF DETROIT,F3300\nHALSTROM LAW OFFICE PC,,K1000\nINVACARE CANADA,,H4100\nVICE PRE,WEDGEWOOD ENTERPRISE CORP.,F4000\nABRAHAM WAKINS NICHOLS,,K1000\nAttorney,\"Blank Rome,  LLC\",K1000\nHuman Resources Mgr,Troy Corp,M1000\nRECRUI,TEXAS RESTAURANT ASSOCIATION,G2900\nPresident,Trade Show Images,G1200\nEVP,EQUITY GROUP INVESTMENTS,E1630\nC.I.O.,TRADEWINDS GLOBAL INVESTORS,Y4000\nVICE PRESID,\"UTZ QUALITY FOODS, INC.\",G2100\nFIREFIGHTER,MIAMI-DADE COUNTY,X3000\nBuilder,Burnett Construction,B2000\nMASS ELECTRIC CO,,E1600\nConsultant,B&F Consulting,Y4000\nENGINEER-OWNER,\"KASH OIL & GAS, INC.\",Y4000\nPHYSICIAN,SHARP HEALTHCARE,H0000\nLOBBYIST,CARYLE CONSULTING,K2000\nFONVIELLE LEWIS FOOTE & KESS,,K1000\nEXECUTIVE,S.I. INTERNATIONAL,C5130\nSUPERIOR LUMBER,,A5000\nphysician,CHR,Y4000\nINS INF INSTITUTE,,Y4000\nPresident,Gifted Preschool Inc.,Y4000\nDVM,BAYSHORE ANIMAL HOSPITAL,A4500\nFINANCIAL ADVISOR,LM FINANCIAL GROUP LLC,F0000\nMFR ENGINEER,TRESKE PRECISION MACHINING,M5000\nProfessor,University of Miami School of Medicine,H5150\nINTERIOR DESIGN,SIGNATURE MIXED USE LLC,B2000\nCONTRACTOR,\"ENECO EAST, INC.\",B3400\nSTRATEGY & BUSINESS DEVELOPMENT,RAYTHEON CO.,D3000\nOWNER,GEORGE D. WATTE & SONS,A1400\nPHYSICIAN,NTL. INSTITUTE OF HEALTH,Y4000\nINSURANCE BROKER / SALES,FRANK CRYSTAL & COMPANY INC./INSURA,F3100\nPROCESS EQUIPMENT,,Y4000\nCEO,\"JAMES C JUSTICE COMPANIES, INC./CEO\",F4100\nMANAGI,BLESSING PETROLEUM GROUP LLC,E1120\nCEO,FAMILY EXPRESS,G4300\nMCKINLEY FINANCIAL RESOURCES INC,,F0000\nHINDERLITER INDUSTRIES,,M5000\nVice President,The Duberstein Group Inc.,J7400\nOWNER,SPEEDWAY SUPERAMERICA,Y4000\nManager,CARRUTH MANAGEMENT L.L.C.,F4100\nATTORNEY,FRIED SAPERSTEIN & KRIGER,K1000\nEXECUTIVE,ENDURA PLASTICS INC,M1500\nDirector,United Bank & Trust,F1100\nAC/APPLIANCE SVCS EXECUTIVE,BROWARD FACTORY SERVICES,Y4000\nRIVER HILL CAPITAL LLC,,Y4000\nOWNER,TUNGSTEN CAPITAL/OWNER,Y4000\nInsurance,Pete Mitchell & Assoc.,Y4000\nRE DEVELOPER,CONTINENTAL CONCEPTS,Y4000\nManager,\"Goldin & Stafford, Inc.\",B0500\nSENIOR ADVISOR,,X1200\nBusiness Executive,TAMMAC CORPORATION,F1400\nOwner,Indigo Clothing,Y4000\nMasonry Contractor,Self-Employed,B3000\nBusiness Systems Analyst,Apex Systems,G5250\nFINANCE DIRECTOR,FACEBOOK INC.,C5140\nJENKINS GALE & MARTINEZ,,B4200\nVP OPERATIONS,HARRIS CORP,Z9500\nUNITED YARD PRODUCTS CO,,Y4000\nATTORNEY,\"MARDEN, DUBORD, BERNIER & STEVENS PA L\",Y4000\nInformation requeste,Information requested,J9000\nSURGEON,ATHENS ORTHOPEDIC CLINIC,H1130\nEXECUTIVE,NORTH TEXAS TRUCKING,T3100\nCEO,Arandell Corporation,C1300\nINVESTMENTS,GRIFFITH PROPERTIES/INVESTMENTS,F4000\nCO-CEO,AMNEAL PHARMACEUTICALS,H4300\nBusiness,1105 S Highland Ave,Y4000\nKERR BROTHERS FUNERAL HOME,,G5400\nRIVERBOAT TRAVEL PARK,,T9400\nDirector Of Clinical,Watson Clinic Llp,Y4000\nPRINCIPAL,RUBINCON ADVISORS,J7500\nReg. Nurse,Hip Of Ny,Y4000\nSoftware Development Manager,Access Systems Americas,Y4000\nTechnology Executive,Sungard Availability Services,Y4000\nCONSULTANT,H+K STRATEGIES,Y4000\nTRIUMP RESOURCES CORPORATION,,Y4000\nPRESIDENT,\"MAC'S QUIK LUBE\",G1200\nDeveloper,Cornerstone Developers,Y4000\nMCKILLOP AND ASSOCIATES,,Y4000\nVOLUNTEER,INFORMATION REQUESTED PER BEST EFFORTS,K1000\nWriter,Access Communications,C1100\nSUPERCYCLE INC,,Y4000\nVIDEOCYPHER,,C2200\nENGINEER,SAN DISK CORP.,Y4000\nSENIOR VICE PRESIDENT OF OPERATIONS,\"STATION CASINOS, INC.\",G6500\nDEVELOPER,\"MILLER-O'REILLY COMPANY\",Y4000\nClergy/Scholar,Self-Employed,X7000\nJIMMARSON DAVIS & SANTORO,,Y4000\nVice President,CheckFree Corp.,F5000\nCertified Registered Nurse Anesthetist,Claxton-Hepburn Medical Center,H2100\nPROFESSOR,SPOKANE FALLS COMMUNITY COLLEGE,Z9500\nATTORNEY,GODFREY LAPUYADE,Y4000\nDIRECTOR,BIODESIGN INSTITUTE AT ASU,Y4000\nSelf,Burbage Funeral Home,G5400\nHMG COURTLAND PROPERTIES,,F4000\nDean,Columbia University School of Dent,H5150\nResearching,Unknown,Y2000\nA AND F ENGINEERING,,C4600\nSales,Subaru,T2310\nENTREPRENEUR,SPICEWORKS,Y4000\nVICE PRESIDENT,ST. JOSEPH HOSPITAL,H2100\nGENERAL MANAGER,ZIP BEVERAGE,G2850\nPUBLISHER,ACORN ENTERPRISES LLC,C1100\nSocial Worker Manage,Sacramento Loaves,Y4000\nUW Madison,,\nIMPORT/EXPORT,GEMWARE,Y4000\nMULTI COMMERCE INC,,Y4000\nSELF EMPLOYED,SCE UNLIMITED INC.,J5100\nPRES,\"HEARTLAND SOLUTIONS GROUP, INC\",Y4000\nAC MONK & CO INC,,A1300\nMedia Consultant,Heartland Media,Y4000\nSoftware Tester,Micromuse Inc.,C5120\nOWNER OF SEVERAL SMALL BUSINESSES,SELF-EMPLOYED,G0000\nST FRANCIS BANK,,F1200\nProfessor Of Preventive Medici,University Of Southe,H5100\nSILICON GRAPHICS CORP,,JE300\nSTIMSONITE CORPORATION,,B1000\nJACK HUNT COIN BROKER,,Y4000\nKVS CONSULTANTS,,Y4000\nDAVIDSON FINK COOK &,,K1000\nCHRISTENSEN WHITE FINK,,K1000\nATTORNEY,BERRY REYNOLDS & ROGOWSKI,K1000\nTeacher,Sarasota Sch Bd,J1200\nPCI ASSOCIATES LTD,,F4100\n\"SOKOL, BEHOT & FIORENZO\",,J5100\nPARTNER,VARNER & BRANDT LLP,K1000\nExecutive,Icas,Y4000\nRealtor,Long And Forster,F4200\nVice President,Schaefer-Smith-Ankeney Insurance Agenc,F3100\nTRANSMATION INC,,Y4000\n\"INSTITUTE OF INT'L BANKER\",,F1100\nRETIRED SECURITIES ANALYST,SELF-EMPLOYED,X1200\nChairman of the Board,Apollo Bank,Y4000\nLawyer,Akin Gump et al,Z9500\nLEBHAR FRIEDMAN INC,,K1000\nTENNESSEE FARM BUREAU,,A6000\ndoctor,self-employed,J7500\nATTORNEY,STURGILL TURNER PLLC,Y4000\nINVESTMENT,BEMEL MANAGEMENT COMPANY,Y4000\nLLC MEMBER,QUERI PROPERTIES LLC,F4000\nCHEMICA,OHIO DEPT. OF PUBLIC SAFETY,X3000\nEXECUT,HEALTH MANAGEMENT ASSOCIATES,H2100\nBANKER,BANKSTAR FINANCIAL,Y4000\nNEEL SCHAFFER CO,,Y4000\nOWNER/PRESIDENT,\"A.B. COMPANY, INC\",Y4000\nC.E.O.,SOCITETE GENERALE,Y4000\nProfessor,Del Var College,Y4000\nWEBSTER DIREC,\"FAIRVIEW CAPITAL, CEO\",F1200\nPresident,\"Reinhardt Motors, Inc.\",T2310\nPARTNER,STRATEGIC LINK CONSULTING,Y0000\nCOMMUNICATIONS,EDELMAN,Z9500\nGeneral Manager,Jefferson Wells,F5000\nCARRIERI & LYNCH,,Y4000\nENGINEER,TELEDYNE LECROY,Y4000\nGENERAL,MARTIN MARIETTA AGGREGATES,B5100\nCOUNTY BANK OF MONTEREY,,F1100\nAttorney/consultant,Self,J7400\nCELLOTAPE INC,,J7300\nbiologist,USDOI National Park Service,Z9500\nBusiness Execut,United Health Group,H3700\nFINANCIAL MANAGER,SAIC,C5100\nTHE MID-AMERICA,,Y4000\nHUMAN RESOURCES DIRECTOR,WUNDERMAN,G5220\nNATIONAL RESPIRATORY SERVICES,,Y4000\nFIRST WORTHING COMPANY,,F4200\nMAP MAKER,SELF EMPLOYED,Y4000\nPHOTO-JOURNALIST,,C1000\nMANAGER,ONE STOP FOODS,G2400\nFilm Maker,Blue Yonder Films,C2400\nCFO,\"MERIT MEDICAL SYSTEMS, INC.\",H4100\nCOMPUTER PROFESSIONAL,SOFTWARE,C5120\nPARTNER,\"PABST REAL ESTATE HOLDINGS, LLC\",F4000\nSecretary,University of MI,H5100\nPROF AND RES DIR,WVU,Y4000\nELECT,JOHN F.X. BROWNE & ASSOCIATES,Y4000\nREAL ESTATE BROKER,FORESTWOOD REALTY,F4200\nPRESIDENT,AMERICAN PRECIOUS METALS EXCHANGE,Y4000\nPSYCH,HAYNES PSYCHOLOGICAL SERVICES,Y4000\nPresident,Wetegrove Enterprises & Real Estate,F4000\nCHARLIE MCBRIDE ASSOCS INC,,K2000\nARCHITECHT,PRINCETON DESIGN GROUP/ARCHITECHT,Y4000\nEngineer,Tdk,Y4000\nPresident,\"Support Systems Associates, Inc.\",Y4000\nLab Assistant,HAL Lab,Y4000\nMICHAEL MAGGIO ESQ,,K1000\nretired military,retired,X1200\nATTOR,LAW OFFICES OF E PETER PARKER,K1000\nOwner,Southeast Capital Partners,F0000\nHALL INDUSTRIES INC,,Y4000\nM.G.M.,,C2400\nPRESIDENT,GEM INVESTORS,F4200\nPH,ATLANTA COLON AND RECTAL SURGERY,H1130\nTeacher,Destiny Church,X7000\nAtty,Of Counsil Don Cont,Y4000\nN/A/FORMER STATE BOE,,Y4000\nSATURN VIDEO,,Y4000\nBusiness Manager,\"Tidewater Companies, Inc\",Y4000\nOWNER,REGENCY CAR RENTALS,T2500\nCEO,AMERISTAR TRANSPORTATION GROUP,Y4000\nFREDERICK-MAY LUMBER,,B5200\nHOSPITAL PRESIDENT,FORT HEALTHCARE,H2100\nClerk,Township of Evanston,X3000\nCHEMETALS INC,,Y4000\n\"FAGEN'S INC\",,Y4000\nFISCHER ENVIRONMENTAL,,E2000\nAttorney,Kearney Donovan & McGee,K2000\nPresident/CEo,\"Rural Opportunties, Inc.\",J9000\nSENIOR VP OPERATIONS,COMMUNITY HEALTH SYSTEMS,H2100\nAttorney,Arent Fox LLC,K1000\nUNIVERSITY SCHOOL OF MILWAUKEE,,H5100\nATTORNEY,ALEXANDER D WILSON,K1000\nBUSINE,SHEET METAL WORKERS LOCAL 16,LB100\nRELIGIOUS,HOLY  NAME PROVINCE,Y4000\nVice-Chairman,Mormac Marine Group,T8000\nATTORNEY,SHEPPARD ET AL,K1000\nVice Chmn Secy/CEO,Merit Constr Inc,B1000\nAssistant Vice Presi,Firstrust Savings Bank,F1100\nINVESTMENT BANKING,BANK OF AMERICA-MERRILL LYNCH,F1100\nANAGO INCORPORATED,,Y4000\nCHEMICAL ENGINEER,\"PROCESS SAFETY MANAGEMENT SERVICES, IN\",Y4000\nArtist,Jane S Fishman,Y4000\nASSISTANT VICE PRESIDENT/UNIVERSITY CO,UNIVERSITY OF COLORADO,H5100\nCHILD GUIDANCE RESOURCE CENTER,,Y4000\nNEW YORK LAND SERVICES,,F4300\nLawyer,\"Kazan McClain, PLC\",K1100\nGEOLOGIST,TEXAS COMM. ON ENV. QUALITY,J7400\nREAL ESTATE,ARVACO LLC,F4000\nPRESIDENT,THE RED MILE,Y4000\nBUDD LARNER ROSENBAUM GREENBERG & S,,K1000\nPHYSICIST,N.A.,Z9500\nbusiness agent,IUOE LOCAL 049B,LB100\nCHAIRMAN,ACADIAN AMBULANCE,H3000\nACCUREL SYS,,C5000\nPartner,Libman Properties,F4000\nPHYSI,HOWARD REGIONAL HEALTH SYSTEM,Y4000\nLegal Assistant,Peblo Aluarado Law,K1000\nCEO,CAS Consulting & Services,Y4000\nRadiologist,Northwest Radiology,H1130\nANESTHESIOLOGIST,SEAMC,H1130\nEBB/MCANDREWS/FORBES,,C2400\nEDUCATIONAL RESEARCHER,HIGHSCOPE EDUCATIONAL RESEARCH FOUNDAT,Y4000\nMEREDITH J. LONG GALLERY,SELF,G6100\nATTORNEY,ROGERS DEMPSEY AND PALADINO,Y4000\nOwner,Buyers Choice Realty Llc,F4200\nPrincipal,\"Melcher's Tucker Consultants\",Y4000\nEnergy Services Consultant,YNF Consulting LLC,Y4000\nCROCKER ELECTRICAL,,Y4000\nATTORNEY,\"MILITARY SEALIFT COMMAND, DEPARTMENT O\",X5000\nTattoo Shop Owner,\"Self-Employed-Shotsie's Tattoo\",Y4000\nPRESIDENT,WILCO HESS,Y4000\nRetail Auto Sales,None,T2300\nBRISTOL BAY RESERVE,,Y4000\nPRESIDENT,\"HEALTHCOR MANAGEMENT, L.P.\",Y4000\nPhysician,Urological Physicians of San Diego,H1130\nCABINET SECRETARY,GOVS. OFFICE,X3000\nSALES DIRECTOR,ARINC,Y4000\nInformation Requested,Sextant Search,Y4000\nFundraising,CMS,J7400\nEXECUTIVE,CHARTER BAKING COMPANY,Y4000\nPRESIDENT,ILLINOIS STATE DENTAL SOCIETY,H1400\nInformation Requeste,Home Box Office,C2200\nHEADMAST,NORTLAND CHRISITIAN SCHOOL,Y4000\nartist/physician,self-employed,X0000\nPRESIDENT,KING OF THAI NOODLE,Y4000\nELECTRICAL CONTRA,CREATIVE ELECTRIC,B3200\nlandscaping,D & L Plant Care,B3600\nPUBLIC RELATIONS,GILDEN INTERGRATED,Y4000\nPRESIDENT,MICHELMANN STEEL CO.,Y4000\nBUSINESS OWNER,NATURESCAPE,Y4000\nCEO,TRINE PHARMACEUTICALS,Y4000\nDoctor,Arlington Memorial Hospital,H2100\npublisher,Hellenic Times,E1160\nLAWYER,FOUR RIVER ASSOCIATES,Y4000\nOwner,\"Sommer's, Inc.\",Y4000\nFUND MANAGER,\"BRAMBEAR, INC.\",J1200\nChairman,The Friedkin Group,F2100\nI C A N,,Y4000\nGOVERNMENTAL AFFAIRS,SELF,Z9500\nCOO,BUCKLY LAW GROUP PA,K1000\nMILLER SCHWARTZ & COHN,,Y4000\nChief Executive Officer,TYCO SAFETY PRODUCTS,G5290\n\"G.A. MORRIS, INC./CONSULTANT/PRESID\",,Y4000\nphysician,katie p rodan md,H4100\nPartner,1345 Cleaning Service Co,Y4000\nHENDERSON & GODBEE,,Y4000\nCORPORATE SECRETARY,\"SILVER EAGLE DISTRIBUTORS, LP\",G2850\nSYSTEM ADM,UNIVERSITY OF WASHINGTON,J1100\nVP-SENIOR ASSOCIATE,TRANSYSTEMS CORPORATION,B4000\nPARTNER,MVC CONSULTING LLC,Y4000\nConsultant,Hispanic USA,Y4000\nELECTRICAL CO,\"SATURN ELECTRIC, INC.\",B3200\nKM6NRAD,GUYANN CORP DBA KAFF,C2100\nPATHOLOGIST,ST. DOMINIC HOSP,H1130\nTHE SPINX COMPANY INC,,G4300\nCORILLIAN,,Y4000\nTECHNOLOGY EXECUTIVE,\"AWEBER COMMUNICATIONS, INC.\",Y4000\nGETZOFF ACCOUNTANCY CORP,,F5100\nPresident,Hinkle Contracting Corp,B1000\nJOHNSON FORD,,T2300\nTrucking,Ret,X1200\nEX. DIRECTOR,COOK COUNTY JUSTICE,Y4000\nSURVEY RESEARCH,PUBLIC OPINION,G5260\nCEO,DOCUTECH,Y4000\n\"RODRIGUEZ-PORTAS-HIDALGO, INC.\",,Y4000\nSENIOR VICE-PRESIDE,WARNER BROTHERS,C2400\nATTORNEY/PARTNER,LEWIS & ROCA LLP,K1000\nbiostatistician,Duke Univ. Medical Center,H2100\nSR. VP PROGRAMS,DRS TECHNOLOGIES,D3000\nTOYOTO,,T2310\nBAY MECHANICAL INC,,Y4000\nRd,Hospital,H1700\nSECRETARY,KASSEL CONSTRUCTION,B1500\nOWNER,SCHWAMM & FRAMPTON,Y4000\nTransportation,Lee Transport Service,Y4000\nWRITER & PROFESSOR,,Y4000\nMANAGING DIRECTOR,NEWSTONE CAPITAL PARTNERS,Y4000\nretires,Information Requested,X1200\nProfessor,Columbia Law School,H5100\nSelf-employed,Artist/Photographer,Y0000\nNATIONAL FOUND FOR WOMEN LEG,,Y4000\nSMALL BUSINESS OWNER,\"AMERICAN SADDLERY, INC.\",Y4000\nSPECIAL COUNSE,U. S. DEPART. OF HUD,X3000\nBLUMENTHAL AND WAYSON,,K1000\nDirector of Quality,Kaiser Permanente Fresno Medical Cente,H2100\nGOVERNOR,STATE OF NJ,F2100\nMANAGEMENT,KOCH MATERIALS COMPANY,B5100\nReal Estate,Retired,J5100\nSUPERVISORS,COLUMBIA COUNTY BOARD,X3000\nPRESIDEN,NEARBURG PRODUCING COMPANY,Y4000\nPRE,HOWARD HANNA FINANCIAL SERVICES,F0000\nJOHN C. WEST JR. P.A.,,K1000\nOWNER,ZIEGLER CHIROPRACTIC,H1500\nPRINCIPAL,THE JOSEPH GROUP,K2000\nAPI,,F3100\nATTOR,\"BONNER, KIEMAN, TREBACH & CRO\",K1000\nFINCH MCCRAINE,,Y4000\n\"CC1 COMPANIES, INC./ATTORNEY/VICE P\",,G2700\nInsurance Broker,Allen Lawrence And Associates,K1000\nINFORMATION REQUESTED PER BEST EFFORTS,MAPA MANUFACTURING,Y4000\nBanking,BankStar Financial,Y4000\nVPEED TRANSMISSION OPER,EXELON CORP,E1600\nCEO OF AMERICAN REPUBLIC INSURANCE,,F3100\nSELF,,X4100\nVICE PRESIDENT,HARRINGTON CORPORATION,Y4000\nGOV AFFAIRS,PATTON BOGGS,K2000\nNATIONAL SIGN,,Y4000\nExecutive Vice Presi,\"Cree, Inc.\",C5110\nHOUSEWIFE AND GRAND-MA,,Y1000\nSCRANTON CHAMBER OF COMMERCE,,G1100\nSVP CORP AFFAI,KANSAS CITY SOUTHERN,T5100\nUnknown,SSA Marine,T6200\nESSEX CORPORATION,,Y4000\nFAMILY PRACTICE PHYSICIAN,FAMILY PRACTICE ASSOCIATES,H0000\nCOO,James River,Y4000\nIT Project Manager,Societe Generale,F1100\nSC OPEN SPACE AUTHORITY,,Y4000\nPUBLIC RELATIONS,SELF-EMPLOYED/PUBLIC RELATIONS,G5210\nCEO,SCANSCOURCE,C5100\nMARKET ANALYSIS,STANFORD FINANCIAL,F2000\nDIXIE-RIVERSIDE INC,,G2850\nPresident,\"J.E. Crain & Son, Inc.\",B0500\nCONSULTANTS,KNIGHT CAPITOL CONSULTANTS,K2000\nEXECUTIVE,GENERAL MOTORS COMPANY,T2100\nDENTAL IMPLANTOLOGIST,,H1400\nProfessor,Jefferson College,Y4000\n\"WALKUP, MELOPIA, KELLY, & SCHOENBER\",,K1000\nRETIRED LICSW,SELF,Z9500\nPRES,PHILADELPHIA BLDRS CHAP-AGC,B1000\nInformation Requested,NOT EMPLOYED,Y1000\nMANAGEMANT,WOOD & HYDE LEATHER CO.,Z9500\nSTAT SENATOR,STATE OF IL,X3000\nEngineer,Masenten & Associates,Y4000\nAMER NONSMOKERS/RIGHTS FOUND/POLICY,,J1200\nLOBEL NOVINS LAMONT & FLUG,,K1000\nDIRECTOR OF GOVERNMENT REL,MOTOROLA,C4600\nREALTOR,\"CHRIS CLEMANS & CO, INC.\",Y4000\nPROGRAM COORDINATOR,COLORADO NONPROFIT DEVELOPMENT CENTER,Y4000\nCALIF DEPT OF JUST,,X3200\nWIGGINS & VILLACORTA PA,,J7400\nADULT CARDIOLOGY,University of Chicago Hospitals - Sect,H1100\nHomemaker,n/a,E3000\nGOLDEN BOOKS FAMILY ENT,,C1100\nCEO,\"JP & CP COMPANIES, INC.\",Y4000\nInfo Requested,City Center Parking,F4500\nOAKLAND MANAGEMENT,,F4100\nOHIO G.O.P.,,J1100\nHomemaker,HOMEMAKER,F4100\nCHAIRMAN,A.M. FUND,J5100\nOWNER,IDPM LTD.,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,WALTON STREET CAPITAL,F4200\nGENERAL MANAGER,ZIA PARK & CASINO,G6500\nREALTOR,TOUCHSTONE FINE PROPERTIES,Y4000\nWESTCHESTER HOMES,,B2000\nLAWYER,\"BASS, BERRY AND SIMS\",K1000\nBUSINESS OWNER,ETS,Y4000\nCHIEF INFORMATION OF,\"TYSON FOODS, INC.\",G2300\nRetired,Rohm & Haas Company,X4110\nWISCONSIN SUPREME COURT,,X3200\nELMWOOD DODGE INC,,T2300\nRealtor,Red Carpet Real Estate Capitol,F4200\nF.A. DAIRY PRODUCTS INC.,,A2000\nCHESTER MACK SALES INC,,T2300\nMEDICAID COORDINATOR,ANH,Y4000\nATTORNEY,TINDALL & FOSTER P.C.,K1000\ndomestic labor/sculptor,self employed,Y4000\nPHYSICIANS INJURY CARE,,F1100\nCONSUMERS ENERGY CO,,E1620\nREGISTERED NURSE,GRADUATE STUDENT,C5100\nHEALTHCARE EXECUTIVE,MARY WASHINGTON HEALTHCARE,Y4000\nPhysician,Michael Jones,Y4000\nREALTOR,LONG & FOSTER REALTORS,Z9500\nSOCIAL WORKER,STATE OF HI,X3000\nattorney,walkup melodia,Z9500\n\"ARNALL, GOLDEN & GREGORY LLP\",,J5100\nPRESIDENT AND CEO,VASTAR,Y4000\nLAWYER,ROGERS & HARDIN,K1000\nPresident,Colony Optical,Y4000\nLive Event Producer,\"Fort Production Management, Inc\",Y4000\nPresident,Maui Jim,M9100\nExecutive,CDW,G4200\nadministration,clifford chance,K1000\nINFORMATION REQUESTED PER BEST EFF,TEXAS BANK & TRUST,F1100\nVP,AMERICAN ENGINEERING & MFG.,D0000\nCFO,REFRIGERATION ENGINEERING & CONTRACTIN,Y4000\nDEVELOPER,PORTMAN HOLDINGS,Y4000\nCorporate Affairs WW,Intel Corporation,C5110\nMD,DIGESTIVE HEALTH SPECIALISTS,Y4000\nteacher,Gadsden Ind School Dist,X3500\nKJOS MUSIC,,Y4000\nCORPORATE BANKER,SIGNATURE BANK,F1000\nAttorney,\"Duplass, Zwain, et al\",K1000\nTelevision Executive,Scripps Networks,C2200\nAttorney,Raytheon,K1000\nJOSEPH L SHALANT PC,,J7400\nTHIRD DIST NURSES,,H1710\nPHARMACIST,\"A C UNDERWOOD ASSOCIATES, LLC\",J7400\nCOPIER AND PRINTING CONCE,,C1300\nAstronomer,Space Telescope Science Telescope,Y4000\nOwner,Dairy Queen,A2000\nFRANKLIN CORP,,M4100\nExecutive Director,Delano Regional Medical Center,H2100\nSEDGWELK,,Y4000\nMIDEAST & CHINA TRADING CO,,Y4000\nPresident,\"Lifeanswers, Inc.\",Y4000\nLawyer,Vendble LLP,Y4000\nGARY DENTAL SUPPLY INC,,X4100\nPhysician,Hinsdale Orthopaedic Association,H1130\nFARMER,A.F. MENDES & SONS/FARMER,Y4000\nEXECUTIVE,FASHION INSTITUTE OF DESIGN,H5200\nPRESIDENT,COLE HARDWOODS INC,A5000\nAttorney,Maine Labor Relations Board,Y4000\nVICE CHAIRMAN TCF C,TCF CORPORATION,J1100\nSENIOR CARE,HEBREW SENIOR LIFE,J1200\nEXECUTIVE,KALABASIS INTERNATIONAL,Y4000\nVP,STATE FARM,F3400\nCHAIRMAN/C.E.O.,THE WHITMORE GROUP,F4200\nDOCTOR,UNMC,Z9500\nBUSINESS OWNER,SAVAGE COMPANIES,T0000\nSOFTWARE ENGINEER,SISCO SYSTEMS,Y4000\nREAL ESTATE MANAGEMENT,CRESCENT BUTTE L.L.C.,Y4000\nABB COMBUSTION ENGINEERING SYSTEMS,,E1700\nDOCTOR,MONARCH HEALTH,H1100\nOWNER,WISER & COMPANY,Y4000\nPHYSICIAN,\"ST. ANTHONY'S PRIMARY CARE\",H1100\nJOHNSON JOHNSON CRABTREE,,Y4000\nKIRKSEY AND PARTNERS ARCHITECT,,B4200\nAMER MANG SYSTEMS,,C5130\nSTILES TAYLOR GRACE ETR,,K1000\nCAMPAIGN MANAGER,CRCCS,Y4000\nSOIE AMERICA STORES INC,,Y4000\nCLINICAL HYPNOTHERAPIST,SELF,H1700\nLEGISLATOR,KANSAS HOUSE OF REPRESENTATIVES,Z9500\nRETIRED HOMEMAKER,RETIRED HOMEMAKER,J1100\nJN CHEVROLET MAZDA,,T2310\nSOUTH MIAMI HEALTH SYSTEM,,H0000\nMANAGER,LAKE OCONEE CONSULTANTS LLC,Y4000\nARCHITECT/CO-CEO,GENSLER,B4200\nTHE LUCKS CO,,Y4000\n\"SKIDMORE'S\",,Y4000\nOffice Administrator,NATA,T1000\nPhysician,Winchester Anesthesia Assoc,H1130\nStudent,CSUS,Y4000\nPRESIDENT,MCHARD ACCOUNTING & CONSULTING LLC,Y4000\nTEACHER,PROTESTANT EPISCOPAL SCHOOL,X3500\nMAUREEN HERITAGE,MAUREEN HERITAGE,Y4000\nVp Sales Manager,Fox Television,C2100\nPUBLIC INTEREST,ACCESS STRATEGIES FUND,X4100\nOWNER,OP MURPHY & SONS,Y4000\nRegistered Nurse,Veterans Admin.,H2100\nPEACE CORPS ASSOCIAT,UNITED STATES GOVERNMENT PEACE,X3000\nAttorney,Fellman & Associates,K1000\nSURGEON,ALBANY MEDICAL COLLEGE,H5150\nAerospace Executive,Arianespace,T1700\nCEO,COMMONWEALTH FINANCIAL GROUP,F0000\nContractor,MTCI,Y4000\nLEVERING MNGT CO,,Y4000\n,LOS ANGELES UNIFIED SCHOOL DISTRIC,X3500\nBAY PSYCHIATRIC ASSOCIATES,PHYSICIAN,H1100\nVIDMAR MOTOR COMPANY,,Y4000\nREGISTERED DENTAL HYG,NOT EMPLOYEED,Y1000\nFARMER AND NURSERYMAN,SELF,A8000\nPROSKAUER ROSE LLP,,J1200\nProg Mng,Raetheon,Y4000\nPROFESSOR OF BIOCHEMISTRY,STANFORD UNIVERSITY,H5100\nNEW SOUTH CAPITAL,,Y4000\nManaging Partner,New York Life Insurance Co.,F3300\nTORSIELLO CONSTRUCTI,,B1000\nInvestor,\"T J C,  Llc\",F2300\nEXECUTIVE,MCINTOSH AND ASSOCIATES,Y4000\nChairman,J.E. Dunn Construction Company,B1500\nExecutive Director,Meyerhoff Foundation,Y4000\nCFO,\"PCO, INC\",Y4000\nInternational Petroleum Consultant,Self-Employed,Y4000\nmanager,Takeda Pharmaceuticals,H4300\nDevelopment Director,Womens Fund,Y4000\nOWNER,M&M LAND,Y4000\nCOMPUTER AND COMMUNICATIONS NETWORK SU,\"MARK'S COMMUNICATIONS SUPPORT,INC.\",Y4000\nanalyst,investment firm llc,F2100\nPhysician,Tracy Conrad,Y4000\nNFORMATION TECHNOLOGIST,PRUDENTIAL,F3300\nLINCOLN FINANCIAL ADVISORS,,F5000\nSTUDENT,NA,J5100\nLAWYER,OGLETREE,Y4000\nLIEBERTH AND,,T2300\nWELSH CARSON ANDERSON AND STOWE,,F2600\nBALN & COMPANY,,Y4000\nEARLY CHILDHOOD EDUCATION,PARENT CHILD HOME PROGRAM,Y4000\nTechnical Staff,Los Alamos National Labs,JE300\nChief Executive Officer,Allyis,Y4000\nDIV. OF THE UN,,Y4000\nCHIEF NUCLEAR OFFICER,DUKE ENERGY,E1300\nPresident/C.E.O.,\"TCP DEVELOPMENT, LLC\",Y4000\nCEO,Moore Automotive Group,T2310\nEAGLE BANCSHARES INC,,Y4000\nMANAGER,RIGHTS AND RESOURCES,Y4000\nATTORNEY,REYES & REYES-CASTILLO,J1200\nDirector,Ebay,J1200\nANALYST,US CUSTOMS AND BORDER PROTECTION,X3200\nCEO,GENWORTH,F3000\nExecutive VP/Investm,The Mechanics Bank,F1100\nPRESIDENT,HORNING BROTHERS,JE300\nVetrnrn,Self,G0000\nEXECUTIVE,HEARTH & HOME TECHNOLOGIES,Y4000\nPRINCIPAL,SAGE ADVISORS INC,Y4000\nAUTO SALES,KOEPPEL AUTOS,Y4000\nCHAPIN HALL CENTER FOR CHILDREN,,Y4000\nINTEGRATED FAMILY SERVICES/ SELF/ME,,Y4000\nPresident,The Bone & Joint Group,Y4000\nREAL ESTATE BROKER,\"MARY TERRY & ASSOCIATES,L.L.C.\",Z9500\nNON PROFIT EXEC,RETIRED,X1200\n\"TONG'S HOUSE CHINESE\",,Y4000\nANALYST,WESTWOOD HOLDINGS GROUP,Z9500\nRADIATION ONCOLOGIST,GAMMAWEST CANCER SERVICES,H1130\nPhysician,\"Women's Care for Life Medical Clinic\",Y4000\nSHERIFF,\"CUMBERLAND COUNTY SHERIFF'S OFFICE\",Y4000\nPRESIDENT/OWNER,NATIONWIDE CREDIT CORPORATION,F0000\nGRAMOLL CONTRUCTION COMPANY,,B1500\nOWNER,SATERN CUSTOM MACHINING INC.,Y4000\nBuilding Owner,Self,F4500\nBanking,\"The Bank of New York Trust Company, N\",F1000\nAttorney/ Senior Vic,Goldstrike Casino/Mandalay Bay Res,G6500\nAUTOGAS SYSTEMS INC,,Y4000\nEngineer,Webb & Associates,B4000\nTHE BOOK STALL,,G4600\nMarketing,Oasis,Y4000\nLEXINGTON BEAUTY COLLEGE,,H5200\nSELF EMPLOYED,HOSEY ENVIRONMENTAL LLC,Y4000\nPresident,Colbert Communication,G5210\nPRESID,S. D. GRAFF PROFESSIONAL SUR,G1200\nProject Director,Internews Network,C2100\nC.P.A./TAX MANAGING,ERNST & YOUNG,F5100\nBUILDER,PUEBLO CONTRACTING SERVICES,Y4000\nU N M DEPT OF EMER MEDICN,,H5150\nLUMBERYARD OWN,,B5200\nVENTURE CAPITALIST,\"LAUDER PARTNERS, LLC\",F2500\nINVESTMENT MANAGER,THE CAPITAL GROUP,F5000\nFARMER,\"R.C.HATTON, INC\",Y4000\nFREISS & ASC,,F2100\nCorporate Officer,\"Shireman, Inc.\",Y4000\nSEVEN FALLS COMPANY,,G6100\nEXECUTIVE VP DEVELOPMENT,MGM MIRAGE,G6500\nDURA TECH PROCESSES INC,,Y4000\nINSURAN,TALLADEGA INSURANCE COMPANY,F3100\nMCGEORGE CONTRACTING CO INC,,B1500\nGELPI SULLIVAN CARROLL &,,Y4000\nCOMPUTER CONSULTANT,XPEDIOR INC.,C5130\nNot employed,Not employed,M4100\nSelf Empolyed,Investor,F7000\nAttorney,Willkie Farr & Gallagher,C2200\nDAN MELLIS LIQUORS,,Y4000\nWHITLOCK SELIM & KEENN L.L.P.,,F5100\nEmployee,Legg Mason,F2100\nFirefighter,City Of Brockton,X3000\nSENIOR VP & TREASURER,SERVICEMASTER,G5200\nCHAIRMAN,\"STERLING ENGINEERING, INC.\",J2100\nENGINEERING GEOLOGIST,\"GEOENGINEERS, INC.\",B4400\nCAPE COD LUMBER CO INC,,B5200\nDEVELOPER,THE SEMBLER COMPANY/DEVELOPER,F4100\nService Quality Assu,U S Department Of En,X3000\nEaster Seals Central Texas,,Y4000\nEXECUTIVE,CHS ELECTRONICS,Y4000\nMANAGEMENT,LUMENIS  INC.,Y4000\nOWNER,GRIMES CONSULTING,Y4000\nTHORTON TOMASETTI ENGINEERS,,B4400\nMBM FARMS,,Y4000\nPHYSICIAN,ALLINA,H2100\nASIAN AMERICAN FREE LABOR INSTITUTE,,Y4000\nINDEPENDENCE PUBLIC,,Y4000\nSIMI STOW-IT,,T7200\nRequest Pending,AAAAA Rent-A-Space,B2000\nSelf Employed,McColgan & Company Inc.,Y4000\nHISTORY P,OKLAHOMA STATE UNIVERSITY,H5100\nVP CHAIRMAN & CEO FOA AND NZ,FORD - AUSTRALIA,T2100\nCEO,Deshpande Inc/Park Square Entertainme,Y4000\nWORC STATE HOSPITAL,,H2100\nUNDER LIMIT,UNDER LIMIT,F5000\nSENIOR VP,NUCLEAR ENERGY INSTITUTE,E1300\nDISTRIBUTOR OF,ARDIAC MEDICAL INC.,H0000\nC-TEK,,Y4000\nGOVERNMENT RELATIONS,GEPHARDT GROUP,Z9500\nAdministrator,\"St Mary's School\",J7400\nQUALITY ENGINEER,NONE,B4400\nPublic Relations,Merlory Public Affairs,Y4000\nCEO,\"FIRST ATLANTIC CAPITAL, LLC\",F2600\nPHYSICI,UNIV OF NEB. MEDICAL CENTER,H2100\nSPRING ISLAND COMPANY,,Y4000\nHAGENS & BERMAN PS,,K1000\nTAYLOR GRUVER & MCNEW PA,,K1000\nAttorney,\"Hutchinson, Black and Cook\",K1000\nWILKERSON & SEAMON,,Y4000\nWILLIAM GARTH,,Y4000\nKLUTTS CO,,Y4000\nATTORNEY,FANNIEMAE,Y4000\nINVESTOR,PROVIDENCE EQUITY PARTNERS/INVESTOR,F2600\nATTORNEY,BRADSHAW JOHNSON AND HUND,K1000\nATTORNEY,FREDERICK J. TANSILL,Y4000\nDirector of Government Affairs,Sagamore Associates,K2000\nPRESI,COMMUNICATIONS WIRELESS GROUP,C5000\nRetired Physicist,Retired,Z9500\nReal estate investme,\"Royalton Real Estate Capital, LLC\",F4000\nChairman,\"Carmax, INc.\",T2300\nSHOPPING CNTR.D,CODDING ENTERPRISES,Y4000\nService Manager,Bierschbach Equipment & Supply,B2000\nSPRINGS INDUSTRIES,,J1200\nRANCHER,,F1000\nRetireed,Retired,X1200\nRESEARCH SCHOLAR: FOREIGN POLICY,SELF-EMPLOYED,G0000\nAtto,\"Levin, Simes, Kaiser & Gornick\",K1100\nDIRECTOR RE,CONNECTICUT NATURAL GAS,E1620\nUROLOGIST,\"NORTHEAST INDIANA UROLOGY, P.C.\",H1130\nSOUTHERN WAY CATERING,,Y4000\nVice President,COMPONENT REPAIR TECH.,G5600\nAttorney,Mauk & Burgoyne,K1100\nPharmacist,\"Blake's Pharmacy\",H1750\nPresident,M Resort,G6500\nMANAGER;,THE ANTHEM COMPANIES; INC.,F3200\nAQUILA VISION INC,,Y4000\nProject Manager,Burdell Ranch Wetlands,Y4000\nTELIC,,Y4000\nThe Pressley Group,,Y4000\nAutomobile Dealership Owner,Self,Y4000\nPOLIT,REPUBLICAN PARTY OF WISCONSIN,J1100\nCEO,QUIXOTE CORP,M2300\nDEBT COLLECTOR,\"CCS, INC.\",Y4000\nANESTHESIOLOGIST,TRINITY HEALTH,H1130\nConsultant,SHL & Associates,K2000\nSAIC,,Z1200\nDirector Admin Services,Murphy Oil Corporation,E1160\nPetroleum Marketer,\"Sellers Petroleum Prod, Inc\",E1170\nJOHNSTONE MGT CO,,Y4000\nReligous Leader,Sunquest Funding.llc,Y4000\nCorporate President,Mountaineer Investigation & Security I,G5290\nENGINEER,SYSTEMS & TECHNOLOGY RESEARCH,Y4000\nAUEROSPACE ENGINEER,ECHOSTAR L.L.C.,Y4000\nSAJC,,Y4000\nPHYSICIAN,KINGS COUNTY HOSPITAL CENTER,H2100\nPRESIDENT,DELAWARE BUILDING CORPORATION,Y4000\nOutdoor Amusement In,Self-Employed,G0000\nCEO,NATIONAL PLASTICS COLOR,Y4000\nOFFICE MANAGER,DRYDEN FAMILY MEDICINE,Y4000\n\"SPIETH, BELL, MCCURDY, AND NEWELL\",,K1000\nBUSINESS OWNER,STAR MARITIME LLC,Y4000\nPRESIDENT/CEO,REX SYSTEMS INC,D3000\nUROLOGIST,OSLER UROLOGY,H1130\nWinery,Self,G2820\nBUSINESSMAN,SIPPICAN,Y4000\n\"CHAIRMAN, CEO\",\"THE FREEMAN GROUP, LTD.\",Y4000\nEngineer,Perieira Engineering Inc.,B4400\nCHAIRMAN AND CEO,COVENANT DOVE,Y4000\nCPA,US DOD,X5000\nTruck Driver,Hemmelgarn & Sons,Y4000\nCommercial Real Esta,\"J.L. Investments, Inc.\",F0000\nReal Estate Finance,Orient Property Group Limited,F4000\nExec.,Georgia Cemetary Assn.,G5400\nVP NTL. SAL,TROPICANA PRODUCTS INC.,G4300\nVICE CHANCELL,PEPPERDINE UNIVERSITY,H5100\ngraduate student,Antioch New England,Y4000\nClerk,Plaza Primorosa,Y4000\nASSISTANT GENERAL COUNSEL,\"COX COMMUNICATIONS, INC.\",C2200\nOceanographer,University of Massachusetts Boston,H5100\nOwner,Cory Lipscomb Contracting Inc.,Y4000\nINVESTOR,MERIDAN ADVISORS,F2100\nPresident/CEO,Community Hospital of the Monterey Pen,H2100\nCHAIRMAN AND CHIEF,WEXFORD CAPITAL,F0000\nINVESTMENT ADVISOR,MERRIL LYNCH,J1100\nINDEPENDENT CONSULTANT,\"FWWM, LLC\",Y4000\nRICHARDSON VERDOORN,,Y4000\nANOKA ELECTRIC CO-OP RAMSEY MN,,E1610\nClient Relationship Executive,CSC,M2300\nINTERVENTIONAL RADIOLOGIST,\"RADIOLOGICAL GROUP,PA, JACKSON, MS\",H1130\nGOVERNMENT OF GUAM,,X3000\nTRADER,CITI,Y4000\nASTOR WEISS KAPLAN,,Y4000\nCEO,AB&C GROUP,J1100\nV.P. MERCHANDISING,KIM INTERNATIONAL MFG.,Y4000\nPresident,Morris & Garritano Ins Svcs,F3100\nProgram Manager,UNC Chapel Hill,H5100\nREAL ESTATE,MITCHELL INVESTMENTS,F7000\nFLEET SECURITIES INC,,F0000\nDIVERSIFIED BUSINESS CREDITS,,Y4000\n(CONSTR.)MNGR,AMER. BANK-CORPUS C.,F1100\nTHE SULLIVAN COLLEGES,,H5100\nSUNGLO HOME HEALTH,,H3100\nEmergency Physician,Dr Gretchen K Lipke,H1100\nSales,Sterling Commerce,Y4000\nGRADUATE STUDENT,N.A.U.,Y4000\nVICE PRESIDENT,BEACON CAPITAL PARTNERS/VICE PRESID,F4100\nFinance,Windcrest Partners,F2000\nCHAIRMAN OF THE BOARD,CENTRAL VALLEY BUILDER TUPPLEY,Y4000\nreal estate mgt,the jar group llc,Y4000\nPRESIDENT,R.S.G. FOREST PRODUCTS,A5000\nLoan Officer,B B & T Bank,F4200\nCOO,CNG FINANCIAL,F1400\nVideography/media,wwwReflectionographynet,Y4000\nFALK-GRIFFIN FOUNDATI,SELF EMPLOYED,Y4000\nMortgage banker,1st Preference Mortgage Corp.,F4600\nsales executive,Cusamo Cigars,A1300\nInsurance Broker,\"BB&T Insurance Services, Inc.\",F3100\nMANAGER,EARTHWATCH,Y4000\nBROKER SECURITIES,,F2100\nMANAGING DIRECTOR,PARETO PARTNERS,Y4000\nACCOUNTANT,MILESTONE ENERGY CORP,E1000\nB OPERATING CO,M,Y4000\nEXECUTIVE,THE LIMITED,G4100\nCALIFORNIA DEPT OF TRANS,,X3000\nVICE PRESIDENT,UES,Y4000\nVICE PRESIDENT FINANCE,COMPUWARE,C5120\nFINANCE,\"HLG PARTNERS, LP\",Y4000\nASSISTANT GENERAL MANAGER,\"WEBSTER COUNTY COAL, LLC\",E1210\nKY DFI,,X3000\nDoctor,DR. H.N. Fung MD,H1100\nKERR & ASSOCIATES INC,,Y4000\nMALGIERI & DORSKY INC,,Y4000\nMANAGER,B. B. P.,Y4000\nProfessor,\"university of California, Riverside\",H5100\nLOBBYIST,MERCURY CLARK & WEINSTOCK,K2000\nVP,CLAYTON HOLDINGS LLC,Y4000\nOWNER,LIGHTNIN RV RENTALS,Y4000\nATTORNEY,EQUITA VYNI,Y4000\nEXECUTIVE,DRL ENTERPRISES,Z9500\nunsalaried Editor and Managing Directo,Plumsock Mesoamerican Studies,Z9500\nPRESIDENT,\"A&A EXPRESS, INC.\",Y4000\nOwner,\"TriCal, Inc.\",Y4000\nAttorney,Fraser Stryker Meusey Olson Boyer,Y4000\n\"DIR, STATE GOV AFFAIRS-PA\",FIRSTENERGY,E1600\nREPUBLIC PARTNER,,Y4000\nBUS CONSULTANT,,C5130\nTEACHER,OCONOMOWOC AREA SCHOOL DISTRICT,X3500\nNATURAL RESOURCES SPECIALIST,USDA-NRCS,X3000\nCALLIGRAPHER,DAVIS HARDWARE,Y4000\nCONTRACTOR,BENSON CONSTRUCTION,B1500\nPrincipal,Torani Syrups and Flavors,Y4000\nALGODONES ASSOCIATED INC,,Y4000\nSr. Vp,Woolpert,B4000\nIT Director,The Ritz-Carlton,Y4000\nEngineer,Navidad Resources,Y4000\nEXECUTIVE VICE-PRESIDENT,BANK ONE,F1100\nC.I.O.,NEXT GENERATION HEALTHCARE,Y4000\nVICE PRESIDENT,COSMO CORP./VICE PRESIDENT,Y4000\nEXECUTIVE,BARTELS MANAGEMENT SERVICES INC,Y4000\nWALKER LAND DEVELOP.,GRAIMARK,F4100\nPRINCIPAL,KOUNTOUPES CONSULTING,J1200\nCFO,DIRECTED CAPITAL RESOURCE,Y4000\nRegul Lead,Monsanto,A4000\nManager,\"Convenience Depot, Inc\",Y4000\nInformation Requested,Randolph Neuropsychology Associates,H1130\nIBM,SUPPORT STRATEGY,Z9500\nJ EDWARD CONNELLY & ASSO,,G5200\nADLER CONTRUCTION,,J5100\nAttorney,Maddox Koeller Hargett &,K1000\nPRESIDENT & CEO,EQUITY RESIDENTIAL,F2100\nContractor,Hall Construction Co,B1500\nREALTOR,DOLAN REALTORS,F4200\nMANAGER,WESTERN TANK COMPANY OF ODESSA,Z9500\nOWNER OF A 7-11,,G4300\nStarker Forests Inc./Executive/Fore,,A5000\nSR. VP MANAGED CARE,HEALTH MANAGEMENT ASSOCIATES,H2100\nINSTRUMENTS INC,,Y4000\nCounsel,\"Dechert, LLP\",K1000\nMANAGING PRINCIPAL,GOTHAM ASSET MANAGEMENT,J1200\nPRESIDENT,CRAMER TOYOTA SCION OF VENICE,T2300\nCEO,Pacific Hose & Fittings,M5000\nOWNER,\"MANGIONE, INC.\",J1100\nEVP---NY Metro,AXA Advisors,F3300\nNAPLES MEDICAL CENTER,,H2100\nAttorney,\"Rabinowitz, Boudin et al\",K1000\nPROFESSOR,SPRING ARBOR COLLEGE,H5100\nOWNER,\"ZARROW FAMILY OFFICE, LLC\",X4100\nINS AGENT,,F3100\nADMIN. MANAGER,\"HERFF JONES, INC.\",M3400\nS3 INC,,Y4000\nIndependent Petroleu,Walsh Petroleum Inc.,E1100\nEXECUTIVE,WHITEWAVE FOODS,Z9500\nPOLICY DIRECTOR,BROWNSTEIN HYATT FARBER SCHRECK,H5000\nManaging Partner,\"Kraft Brothers Esstman et al, CPA\",G1200\nSUPERIOR GEAR BOX CO,,M2300\nEngineer,Malcom Pirnie,Y4000\nSURGEON,CENTER FOR ORTHOPEDICS/SURGEON,H1130\nHERRINGTON VENDING CO,,G4850\nOWNER,PRAN INFO. TECH,Y4000\nLaw,McDermott Will & Emery,K1200\nPRESIDENT,NATIONWIDE INSURANCE,F3400\nGeneral Partner,Split Rock Partners,F2500\nFacilities Technician,Heliovolt Corp,Y4000\nEngineer,Condor Earth Technologies,Y4000\nSALES MANAGEMENT,MONSANTO CORP,A4100\nPRESIDENT,RAULE RESOURCES GROUP,F4200\nFINAN,WELSH CARSON ANDERSON & STOWE,J1300\nCEO,DESTINY USA,F4100\nMARION MIXER,,Y4000\nC F O,Newfield Exploration Company,E1150\nDirector,First National Bank of Hartford,F1100\nGOLDSTEIN BERS FRIED & LIEBERMAN,,Y4000\n\"BILL'S ELECTRIC\",,B3200\nWISCONSIN LIFT TRUCK,,Y4000\nJORDAN AUTOMOTIVE GROUP,,T2000\nK H ENERGY,,E1000\nC & S WHOLESALE GROCERS,,Y4000\nExecutive,Self-Help Services Corporation,Y4000\nSALES,NSI/SALES,Y4000\nFIELD UNDERWRITER,PRIME INSURANCE,F3100\nWELLCRAFT,,T6100\nPartner,Akin Gump Et Al,K2000\nAGENT,BOADER PATROL,Y4000\nSQUARE V LLC,,Y4000\nATTORNEY,VIVIANO & VIVIANO PLLC,K1000\nIntell Exec,US Government,X3000\nwarehouse laborer,The Restaurant Source,G2900\nOWNER/OPERATOR,GRAND PRAIRIE DUSTERS,A4000\nCOLUM,\"BROWN GLOBAL ENTERPRISES, LLC\",G5200\nATTORNEY,SCHULTE RUTH & ZABEL LLP,K1000\nEXECUTIVE,ROYAL GOLD INC.,E1200\nFord Dealer,Hamilton Big Country Ford,T2300\nHEARD GOGGIN BLAIR &,,K1000\nVICE PRESIDENT,MUREDI DIST.,Y4000\nOWNE,TORR RESPIRATORY SERVICES INC.,Y4000\nBIOTEC,LIGOCYTE PHARMACEUTICALS INC,Y4000\nInvestor,Credit Suisse First Boston,F2100\nVICE PRESIDENT,CU SO CAL,Y4000\nPRESIDENT,SKINNER MOTOR COMPANY,Y4000\nMOTORCYCLE MECH INST,,H5200\nINTERNATIONAL TOURIST AGENCY,,Y4000\n\"SENIOR VICE PRESIDENT, PUBLIC POLICY\",MIDCONTINENT COMMUNICATIONS,C2200\nEXECUTIVE,LEVCACLIA,F2100\nGRAY BREWING,,G2810\nNATIONAL STAFF,,B3200\nOwner,Ecorigs.Org,Y4000\nPresident and Chief,Health Alliance Hospitals,H2100\nREAL ESTATE INVESTOR,PEERY PARTNERS,Y4000\nPROSRAUER ROSE LLP,,K1000\nManager,Alutiiq Llc,B3000\nSIGNA CORP,,Y4000\nAttorney,SAB Capital,F0000\nPOHLMAN INC,,Y4000\nCANTEEN SERVICE,,G4850\nREEBOK INTERNATIONAL LTD,,M3200\nMANAGER,SUN SOUTH BANK,F1000\nINTEGRATIVE HEALTH SYSTEMS,,H0000\nPRESIDENT,TISSURAMA IND. INC.,Y4000\nOWNER,LECIRQUE,Y4000\nPhysician,West Penn Allegheny Oncology Network,J7400\nREAL ESTATE BROKER,ILLUSTRATED PROPERTIES RE PGA,F4200\nPRINCIPAL,JAMES CATRITZ INC.,Y4000\nExec Director,Salem Partnership,Y4000\npartner,the first group,F4200\nDIXIE CONTAINER,,M7100\nDirector,Hilton Grand Vacation,Y4000\nHINES AHLQUIST &,,Y4000\nLAND SALES,SELF-EMPLOYED,G0000\nCHARLES CUDD,,Y4000\nPresident & CEO,\"Technology Patents,LLC\",K0000\nPHYS,\"ASSOCIATES IN WOMENS HEALTH, P\",H1100\nSALES,TRENDNET. INC,Y4000\nEXECUTIVE VICE PRESIDENT,MAGNOLIA METAL CORPORATION/EXECUTIV,M2000\nJOHN ZANETAKOS COMPANY,,B4000\nSenior Advisor,Center for Middle East Peace,J5100\nManager,Northwest Vermont Solid Waste District,E3000\nManager,Desco Electronics,Y4000\nPHYSICIAN/PROFESSOR,YALE UNIVERSITY,H5100\nDIETRICH INDUSTRIES INC,,M5000\nDirector of Planned Giving,Lambda Legal,K1000\nOWNER,TEXAS PEDICARE,Y4000\nSENIOR VICE PRESIDENT,BIOTECHNOLOGY ASSOCIATION,H4500\n\"NVG, LLC\",consultant,G5200\nATTORNEY,\"WACHTELL, LIPTON, ROSE & KATZ\",J5100\nEXECUTIVE DIRECTOR,PROTECT THE HARVEST,J9000\nATTORNEY,WILLIKIE FARR & GALLAGHER LLP,K1000\nPARTNER,\"RYAN, MACKINNON, VAPOLI & BERZ\",K2000\nCOURTESY TRAVEL CENTERS,,T9400\nINVESTOR,HSL INVESTMENTS,Y4000\nWIMINC,,J7400\nPresident/ CEO,Park Square Homes,B2000\nGeologist,Discovery Group,Y4000\nProduction Consultan,Self,Y4000\nGovernment Relations,Johnson & Johnson Comp,H4000\nPrison Management /D,Self-Employed,G7000\nTAVAGLIONE CONSTRUCTION & DEVELOPME,,B1500\nROBERT WHITE ASSOC,,Y4000\nJACKSON AREA PET HOSPITAL,,A4500\nINFO REQUESTED,DOCTOR,H1100\nF-16 Instructor Pilot,US Military,X5000\nResource,Advantage Solutions,Y4000\nAIR FORCE,RETIRED,X1200\nMKM ENVIRONMENTAL,,B2000\nHELLMAN JORDAN,,F2100\nPROFESSOR OF HISTORY,PRINCETON UNIVERSITY,JD200\nREAL ESTATE DELEVOPER,OWNER,F4100\nPhysician,Elgin Eye Clinic,Y4000\naccountant,ParenteRandolph,Y4000\nFarmer/State Rep,Self/State of AR,Y4000\nREAL ESTATE/INSURANCE,CURRY REALTORS & INSURORS,F4200\nOwner,\"Mick's Farm Market\",G2400\nProgram Director,Maitri Compassionate Car,Y4000\nPlanner,Myra L. Frank & Asso,Y4000\nDOCTOR OF PSYCHOLOGY,SELF-EMPLOYED,G0000\nCHARMER INDUSTRIES INC,,J5100\nReal Estate Broker,Kaplan Real Estate Group,F4200\nJ B ROSS,,Y4000\nINSURANCE EXECUTIV,\"PR ZIEGLER, INC.\",Y4000\nSELF,MCMILLAN ELECTRIC,B3200\nATTORNEY,\"KOBAYASHI, SUGILA & GODA\",K1000\nCHAIRMAN,PERFORMANCE CONSULTING GROUP,Y4000\nOWNER - AUTO DEALERSHIP,SELF-EMPLOYED,G0000\nPRESIDENT,POLYCHEM USA INC.,Y4000\nDIRECTOR RISK MGMT,ZACHRY,B1000\nGAMETRACKER,,Y4000\nCONSULTANT,\"ICG, INC.\",Y4000\nBURGER KING OWNER,SELF,G2900\nMcManimon & Scotland/Attorney/Partn,,K1000\nATTORNEY,JOSEPH P ALTIER & ASSOC,LT000\nNWPC-SAN DIEGO,,Y4000\nOPTIONAL SYSTEM SERVICES,,Y4000\nENGINEER,COLLINS-PINA ENGINEERS,B4400\nATTORNEY,\"O'CONNOR & HANNAN LLP\",K1200\nPhysician,Lancaster Radiology Associates,H1130\nENSTAR GROUP INC,,F2000\nTOWNSHIP OF WASHINGTON,,Y4000\nHOOD HARGETT & ASSOCIATES,,F3100\nEXECUTIVE,LIBERTY STEEL,M2100\nOWNER,THREE STAR NURSERY,J1100\nREAL,PRIME PROPERTY & INVESTMENT CO,F4000\nSR. DIRECTOR OF MERCHANDISING,WHALE SHARK MEDIA INC.,Y4000\nPRESIDENT AND CEO,HAKS ENGINEERING,B4000\nClergy,\"Union Church of Hinsdale, United Churc\",X7000\n\"HISPANIC HOUSING DEV'T COMM\",,X3000\nTIGER GLOBAL,,Y4000\nSUPERIOR PLUMBING CO,,B3400\nBusiness,Synergies Home LLC,Y4000\nBranch Manager,LPL Financial Corporation,F2100\nD D GARRETT AGENCY,,Y4000\nGovernor Kendell,,Y4000\nATKINSON CONWAY & GAGNON,,Y4000\n\"STEPTOE & JOHNSON, LLP/PARTNER/ATTO\",,K1000\nROUNTREE & SEAGLE LLP,,K1000\nREAL ESTATE INVESTOR,GMC PROPERTY MANAGEMENT,F4500\nEXECUTIVE,ZENITH INS. CO.,F3100\nMRCA ENG,JOHN J. STEUBY COMPANY,Y4000\nFRESHMAN MARANTZ ORLANSKI COOPER,,Y4000\nLOBBYIST,SHOCKEY SCOFIELD FERENCE,K2000\nJENKENS & GILCHRIST PARKER CHAPIN L,,G5300\nSCIENTIST,SCIOS INC,Y4000\nFINGER HUT,,G4700\nPATHOLOGIST,QUEST,Y4000\nCEO,CHINDEX INTERNATIONAL,Y4000\nAttorney,Powell Goldstein Frazier,K1000\nlawyer,self employed,K1000\nPRESIDENT,\"SMITHERS MERCHANT BUILDERS, LP\",B0500\nTHIBADO MECHANICAL,,M2100\nAttorney,Harris County DAO,X3200\nDEVELOPER,FOURTH RIVER DEVELOPMENT,Y4000\nCONSULTANT,KIBLE JONES & ASSOCIATES,F4000\nSLOCUM DICKSON MEDICAL,,H1100\nAttorney,Sullivan & Cromwell LLP,J1200\nPRIEST,ST. THERESE PARISH,X7000\nCLUB MANAGERS ASSOCIATION OF AMERICA,CMAA,Y4000\nPHYSICIAN,ANDREW NORRIS MD PC,H1100\nBANKING,BANC OF AMERICA SECURITIES,F2100\nPHARMACIST,MERICK PHARMACY CORP,G4900\nREAL ESTATE APPRAISER,APPRAISAL EQUITY,F2100\nPHY,EAST PORTLAND EAR NOSE & THROAT,F1100\nDIRECTOR,PIXAR ANIMATION STUDIOS,C2400\nPrivate Investor,SELF-EMPLOYED,J1100\nPhotographer,Self-Employed,LG400\nINVESTMENT,BROWNSTONE,Z9500\nBanker,Coldwell Banker,F4200\nNETWOR,CONCERT GLOBAL TELECOM SVCS.,Y4000\nLAWYER,HAYNES AND BOONE  LLP,K1000\nKARZEN LARGAR & BURRIS,,Y4000\nPartner,Jolly/Risser Inc,K2000\nOWNE,PUTNAM LUMBER & EXPORT COMPANY,B5200\nMEDICAL OWNER,\"MEDICAL CITIES, INC.\",H2000\nAttorney,Schiff Honda Lup,K1000\nOFC MGR,FRONTIER OIL CO,J1100\n\"Vice President, Audi\",\"AutoNation, Inc.\",T2300\nCHAIRMAN,RUSH ENTERPRISES,T2300\nCOO - GROUP B,MCKESSON CORPORATION,H4400\nAttorney,Law Offices of Regina Walsh Adams,K1000\nBanker,The St. Henry Bank,F1200\nOIL TRADER,,E1100\nSR. VP PROFES,PENNSYLVANIA HOSPITAL,H2100\nINSURANCE AGENT,WILLMAR INSURANCE,F3100\nTHE ROYCE GROUP,,Y4000\n\"MILLER APPLE LP DBA APPLEBEE'S NEIG\",,G2900\nMADISON WIFE & CABLE CORP,,M5000\nCOUNSEL,JONES INTERNATIONAL,C2200\n\"VICTORIA'S COLLECTION\",,Y4000\nRn,Shore Memorial Hosp,Y4000\n\"MOYLE, ET AL\",,K1000\nRODDISCRAFT,,M4100\nCHIEF LEGAL OFFICER,STAMPS.COM,C5140\nLIRO ENG,,Y4000\nAdvertising,the Gary Group,Z9500\nCHAIRMAN,CUMBERLAND FARMS,A1000\nR.N.,COLES COUNTY MENTAL HEALTH,T8100\nMAINTENANCE,CLARION UNIVERSITY,H5100\n\"Director, Strategic\",Brown-Forman Beverages,G2820\nPresident,Baytech Cinema,C2400\nEVERGREEN FOREST PRODS,,A5000\nAttorney,\"H Boyd Pettit, III, PC\",K1000\nECONOMIST,SIGMA FEDERAL LLC,Z9500\nVP,SWIFTY OIL CO INC.,E1160\nREAL ESTATE SALESPERSON,MADISON PARTNERS,Z9500\nUniversity President,Lock Haven University,Z9500\nInvestments,\"Mile High Drive In, Inc.\",J9000\nSPRINGER IN AGENCY INC,,Y4000\nConsultant,Bienstock & Brown,Y4000\nPHYSICIAN,\"PEDIATRIC OPHTHOMOLOGY ASSOCIATES, PA.\",H1130\nGOLF COURSE DESIGNER,SELF,G6100\nCONSULTANT,RB MURPHY & ASSOC.,K2000\nSecretary,Teaco Energy,E1150\nPresident,Interep,G5210\nPresident,\"AVETEC, Inc.\",G5200\nIMC - AGRICO COMPANY,,A4100\nMULLIKIN LAW FIRM,,K1000\nOWNER,DOUGLAS RESOUCES INC.,Y4000\nPOLESE PIETZSCH WILLIAMS NOL,,Y4000\nD,AFFILIATED COMPUTER SERVICES INC.,C5130\nHOMEMAKER,MOLLIE DUNN,Y4000\nTHE GALMAN GROUP,,F4000\nCLAIMS ADJUSTE,FCCI INSURANCE GROUP,F3100\nELMER LARSON LLC,,B5100\nAUTO DEALER,,J7300\nAerospace Engr,Northrop Gruman Corp,D5000\nCONSU,CONGRESSIONAL GLAUCOMA CAUCUS,H4300\nSPECIAL PUBLIC PO,ALSTON + BIRD LLP,K1000\nMARTIN HOLDING LLC,,Y4000\nDEVELOPER,ARCH,B4200\nCHIEF ACCOU,FIDELITY NATIONAL TITLE,F4300\nSELF-EMPLOYED/ARTIST/SCULPTOR,,X0000\nPARTNER/FARMER,MADDOX DAIRY LTD,A2000\nATTORNEY,HERMAN HERMAN KATZ LLC,K1100\nAtto,\"Simon, Eddins  amp; Greenstone\",Y4000\nOwner,Denise Lovelady Realty,F4200\nVP OPERATIONS - PKG GRP,METAL CONTAINER CORP,G2810\nFLETCHER-REINHARDT,,E1700\nAGRICULTURE,SYMMS FRUIT RANCH INC.,A1400\nCONTRACTOR,NAR CONSTRUCTION,B1500\nCITIZENS REALTY & INSURANCE,,F4200\nAttorney,Walsh Colucci Lubeley,Y4000\nWHITEHURST HARKNESS,,Y4000\nPresident & CEO,Electronics Industries Alliance,J1200\nOwner,Taylor UItra Wash,Y4000\nPARDEE HOME LOANS,,F4600\nBuilding Supplies,Self-Employed,B5000\nPHYSICIAN,C.I.M.A.,Y4000\nSCIENTIST/OWNER,BEHAVIORAL INSTRUMENTS,Y4000\nOWNER/ EDITOR,WEDDING ROW CHARLOTTE,Y4000\nPUBLIC RELATIONS,COCHRAN INC.,Y4000\nPRESIDENT & CEO,\"ROCKY'S HARDWARE\",Y4000\nFRIENDS OF THE FOP,,Y4000\nPresident Cisco Capital,CISCO SYSTEMS CAPITAL CORPORATION,G5300\nKNOCK INC,,Y4000\nOrthopaedic Surgeon,Winchester Orthopedic Associates,H1130\nBENJAMIN CONTRACTING,,B1000\nPhysician,Centennial Plaza One,H1110\nFAMILY TIMBER BUSINESS,MURRAY PACIFIC CORP,A5000\nCEO/GENERAL MANAGER,GREENWOOD-MOUNT OLIVET,G5400\nStock Broker,Rothschild Securities,Y4000\nLEES FLORIST,,A8000\nTeacher,Egrps,Y4000\nDiagnostic Radiologi,Mountain Medical Physicians Specialist,H1130\nATTORNEY,\"OLDAKER BELAIR & WITTIE, LLP\",K1000\nPresident,Harris & Ford,Y4000\nACCOUNT,\"GRANITE GROUP BENEFITS, LLC\",F3100\nEXAMEN INC,,Y4000\nXIAN ADVISORS,,Y4000\nPARTNER,NATIONAL PHARMACEUTICAL LTD,Y4000\nEXECUTIVE DIRECTOR,HELENA EDUCATION FOUNDATION/EXECUTI,Y4000\nGOVERNMENT RELATIONS,KOZAK & SALINA LLC,K2000\nTECHNICAL WRITER,RETIRED,J1100\nPolice Lt,West New York Pd,X3200\nVP ENGINEERING,MURRAY ENERGY CORP,E1210\nOwner,Thomas Glass & More,Y4000\nPEAT MACWICK MAIN & CO,,F5100\nADMIN. LAW JUDG,STATE OF WASHINGTON,X3000\nSCIENTIST,ALNYLAM,Z9500\nVenture Capitalist,Convergence Partners,F2500\nOWNER,STEINER SHIPYARD,T6100\nChair Pres and CEO,American Electric Power,E1600\nCONSTRUCTION INVESTMENTS,,F4100\nNURSE,BLOOD BANK OF HAWAII,Y4000\nAttorn,Haynsworth Sinkler Boyd P.A.,K1000\nTutor,self,J9000\nRANDALL SMALL & ASSOCIATE,,Y4000\nENGINEE,NORTH STAR SCIENTIFIC CORP.,Y4000\nconsultant,self employed,J7400\n\"NAT'L BLACK CHAMBER OF COMMERC\",,G1100\nEXECUTIVE,R&R ENTERPRISE,J1100\n\"VICE PRESIDENT, HR\",THERAVANCE,H4300\nATTORNEY,HERREN & ADAMS,K1000\nQUITMAN COUNTY,,X3000\nPRES,EATON COMPRESSOR & FABRICATION,Y4000\nDirector,Craig IS,Y4000\nMANUFACTURING ENGINEER,BOEING,D2000\n(Constr.)Mngr Advert,\"C. C. Distributors, Inc\",G2700\nCOOK & COOK REALTORS,,F4200\nMCLAIN CAGE HILL,,Y4000\nCENTREVILLE SCHOOL,,H5100\nPhysician,Northreach,H5000\nECONOMIST,SILATECH,Y4000\nPETROLEUM ENGIN,HUGHES EASTERN CORP,E1120\nRETIRED,BENT CREEK,J1200\nOWNER,EXPRESS PERSONNEL SVC.,G5250\nLORAL INC,,D3000\nATTORNEY,\"TAMB, PC\",Y4000\nBroker,\"V-Tex Realty, Inc.\",F4200\nROBERTSHAW CONTROLS CO,,Y4000\nREAL ESTATE MANAGEMENT,CLIPPINGER INVESTMENT PROPERTIES IN,F4000\nreal estate developm,self,J1200\nSR ENGINEER,RECOVERY ENERGY INC.,E1000\nController,Green Mountain Caffe Roaster,G2600\nPRESIDENT,SFX MEDIA,Y4000\nCEO,LABEL TRONIX,Y4000\nPresident,Linwood Pipe & Supply,Y4000\nOperating Engineer,Shambaugh and Son,LB100\nExecutive Director,\"The Fortune Society, Inc.\",Y4000\nSEED AND GRAIN SALES,,A4000\nGOVERNMENT REL,ELMENDORF STRATEGIES,J1200\nAttorney,\"Alcoa,INc.\",M2250\nConstruction,Nunn Construction,B1500\nPediatrician,Michelle Morouse,Y4000\nAttorney,Peck Bloom Miller & Mitchell,K1000\nABR INC,,Y4000\nCREATIVE INSURANCE,,F3100\nCEO,MCKINLEY MEDICAL CORP,Y4000\nSelf Employed,Jdf Trucking,T3100\nprofessor,Umass Boston,H5100\nREAL ESTATE DEVELOPMENT,TWB PROPERTIES LLC,Y4000\nVP SALES,SALESFORCE.COM,C5140\nTHE COMPLEX SALE,,Y4000\nPresident/Ceo,Scs,Y4000\nKRONICK MOSKOVITZ TIEDEMANN ET AL,,Y4000\nPRESIDENT,KEMZRA,Y4000\nCITY OF NEW YORK BOARD OF ED,,X3500\nEXECUTIVE,MINE SAFETY APPLIANCES COMPANY,E1240\nEXECUTIVE VP,PORTERFIELD & LOWENTHAL LLC,K2000\nATTORNEY,THE KROGER COMPANY,J5100\nEXECUTIVE DIRECTOR,HIGHER GROUND ACADEMY CHARTER SCHOOL,Y4000\ncorporate communicat,self,C2200\nEXECUTIV,NAVCON DEFENSE ELECTRONICS,Y4000\nST.CLAIRE MANAGEMENT,,Y4000\nRETIRED. SELF EMPLOYED,SELF,X1200\nCENTENNIAL INCORPORATED,,Y4000\nBEN LILES INVESTMENTS,,Y4000\nYACHT BROKER,MADERIA BAY MARINA,Y4000\nPRESIDENT,ROSE CORPORATION,Y4000\nPASTOR,BREAD FOR THE WORLD,X4000\nPRESIDENT,HAY TIRE,M1500\nCONSULTANT,BOSWELL CONSULTING INC,G5200\nCEO,PICEANCE WELL SERVICE,E1150\nInsurance Agent,\"Collinsworth, Alter, Lambert, Inc.\",F3100\nPRESIDENT,KISTLER TIFFANY COMPANIES,F2100\nData manager,Smithsonian Tropical Research Institut,Z9500\nOrganizational Facil,Groups-That-Work LLC,Z9500\nHENKETS & MCCOY INC,,Y4000\nPresident,IHC Construction Companies LLC,B1000\nBUS SYS MGR,KRAFT USA,A1300\nManager,Committed,J1200\nGrad student in M Div program,\"Union Presbyterian Seminary, Richmond,\",X7000\nPHYSICIAN,TEXAS GULF COAST MEDICAL GROUP,J1200\nPresident,Traffic & Safety Control Systems,Y4000\nExec Director,Community Action Program,X4100\nSenior Advisor Executive - Trv,Citigroup Inc.,F1100\nINVESTMENT ADVISER,ANCHOR CAPITAL AVISORS/INVESTMENT A,F2300\nCeo,Caraway Steel & Stairs,M2100\nOWNER,PITTSFORD FARMS DAIRY,A2000\nInvestor,DDC,J1100\nC.E.O.,Joyce Julius & Associates,Y4000\nEDUCATIONAL SALES,CENGAGE LEARNING,Y4000\nEDUCATION,KEISER UNIVERSITY,H5300\nOwner,Personal Ag Mgmt Svcs,A4000\nOWNER,FUNWAY CAFE,G2900\nREAL ESTATE,JULIE D SUMMERS,F4000\nNEWSLETTER PUBLISHER,DONALD N. MARTIN & COMPANY,Z9500\nGUYER LINDLEY BAILEY & M,,F5100\nSecretary,\"AGS, Inc.\",Y4000\nDANBEC ASSOCIATES INC,,Y4000\nowner,Inside Solutions,Y4000\nPROPERTY MANAGER,GRANDOURS LLC,Y4000\nJOSHUA CHARITABLE FOUNDATION,,G0000\nPROFESSOR,UNIV. OF HAWALI,H5100\nPresident/CEO,Goshen Rubber,M1500\nVIRGIN AMERICA,,T1100\nReal Estate Developer,Property Concepts Inc.,F4000\nC.E.O./PRESIDENT,SAUSE BROS.,T6200\nPARTNER,CAPRI MOTEL,T9100\nPHSYICIAN PSYCHATRIST,SELF,Y4000\nFLINT RIVER,,A3100\nEXECUTIVE,HEB,G2400\nATTORNEY,KENNEDY & JOHNOSN/ATTORNEY,K1000\nPhysician,Texas Regional Eye Center,Y4000\nClaims Consultant,Liberty Mutual,Y4000\ninvestor,Self-employed,J1200\nPHYSICIAN,ORTHOPEDIC/SPORTS MEDICINE CENTER,H1130\nATTORNEY,BH EQUITIES,F4000\nCEO,OREGON BANKERS ASSOC.,Y4000\nABSTRACT OWNER,,A8000\nBOLOGNA BROTHERS,,Y4000\nChairman,\"Renco Group, Inc.\",M2100\nREQUESTED,REQUESTED,X1200\n\"TREON, STRICK\",,K1000\nMETHUEN CONST,,B1000\nIRON WORKERS LOCAL 433,,LB100\nLEGAL COUNSEL,MHRH,Y4000\nProfessional Driver,Brumos Racing,G6400\nOWNER,HAMILTON COMPANIES,F4100\nANASOSTIA AND PACIFIC RAIL ROAD,,T5100\nGRAY RESEARCH INC,,Y4000\nCIC ENTERPRISES,,G5200\nOwner,Grainger Honda,T2310\nUNION HOSPITAL,,H2100\nPRESTON GATES ELLIS ROUVELAS MEEDS,,K2000\nBROKER,WOODS REALTY,F4200\nMTV NETWORKS ADVERTISING SALES WOR,,C2200\nSenior Systems Engineer,PCC Valcom,Y4000\nVideo Productions,Self Employed,C2300\nSASSCO LAND DEVELOPEMENT,,Y4000\nPROFE,BOYLE ENGINEERING CORPORATION,B4000\nV.P.,LAND TITLE GUARANTEE COMPANY,F4300\nPHYSICIAN,RADIOLOGY IMAGING CONSULTANTS/PHYSI,H1130\nTHE RICH COMPANY,,Y4000\nARCH,STRUEYER BROS ECKLES AND ROSIE,B1000\nHealthcare,State of WA,Y4000\nSENIOR ADVISOR,TEMPLE-INLAND INC.,M7100\nEDITORIAL DIRECTOR,BUSINESS JET MAGAZINE,T1600\nDH SCOTT & COMPANY,,F5100\nBiologist,s,J1200\nPT,Select Medical,H1700\nOWNER,THOMAS AKIN CONTRACTOR,Y4000\nNORTH PARK LINCOLN MERCURY DEALERSH,,T2300\nSelf - Employed,Jet Styream Water Cutting,E5000\nOBGYN,Gunderson Lutheran,H2000\nOTR TRUCKER,SELF-EMPLOYED,Y4000\nManager,\"Classmates Online, Inc.\",Y4000\nDairy,T&W Farms,A1000\nATTORNEY,\"WHEELER TRIGG O'DONNELL\",K1000\nFORMULA EQUIPMENT INC,,Y4000\nPHYSICIAN,U.S.A.F.,X5000\nPhysician,Self,G0000\nVice President  Programming,Cox Communications Inc,C2200\nCEO,HEALTHY ADVICE NETWORKS,H0000\nATTORNEY,SOUTH TEXAS COLLEGE OF LAW,H5170\nRETAIL,SHANKAR,Y4000\nPresident of Corporate and Legal Affai,American Target Advertising,G5210\nATTO,AMERICAN CIVIL LIBERTIES UNION,J1200\nArchitect,ADC Concrete Design,B5100\nBIOPURE,,Y4000\nGRASCHE USA INC,,Y4000\nASSET MANAGEMENT COMPANY,,F2500\nMgr. of Operations I,Jacobs Engineering Group Inc.,B4000\nPRESIDENT,NESMITH CHEVROLET BUICK GMC INC,T2300\nBusiness Owner,\"Delamare K., Mid Valley Engineering\",B4400\nAPPLEBEES RESTAURANT,,G2900\nCEO,GOODWILL NORTH,X4000\nHEALTH CONSULTANT,\"NAT'L BLACK WOMEN'S HEALTH\",Y4000\nHILLCREST HAMPTON INC,,Y4000\nSUMMIT ASSOCIATES INC,,F4100\nLlobyist,Mehlman Vogel Castagne,K2000\nRetired,Wilkins Assoc,Y4000\nDOCTOR,TOWER UROLOGY MEDICAL GROUP,H1130\nREALTOR,ARCHER FURROW & ASSOCIATES,Y4000\nRETIRED,LIZ CLAIRBORNE,Y4000\nPRESIDENT,LEXUS OF NORTHBOROUGH,Y4000\nVP Public Policy & Issues Mgmt,\"Caremark, LLC\",G4900\nFORESTLAND INVESTMENTS,THE FORESTLAND GROUP LLC,JE300\nPRESIDENT,CAPITAL PARTNERS/PRESIDENT,F2000\nECONOMIST,UNIV ALABAMA AT BIRMINGHAM,H5100\nSenior Advisor,World Economic Forum USA,J4000\nExec Director,Wichita Mountains Preven,Y4000\nGeneral Manager/Vice President,Superior Auto WV Inc Dba Superior Toyo,T2300\nATTORNEY,MILLER MAYER/ATTORNEY,Y4000\nSOFTWARE DEVELOPER,\"REALPAGE, INC.\",C5130\nattorney,munoz boneta,Y4000\nGrad student,grad student,Y1000\nPres,\"Ketone Automotive, Inc\",T2000\nPRESIDENT,\"A.L. BROURMAN, INC.\",Y4000\nCEO,Pelzer Communications,Y4000\nATTORNEY,LAW OFFICE OF BERNARD BECKKER,K1000\nSELF E,\"T.W. HERRING INVESTMENTS, LL\",F4500\nExecutive,HMS Success,Y4000\nCHAIRMAN AND,\"CASDEN PROPERTIES, LLC\",F4100\nPRESIDENT &,SCHNEIDER NATIONAL INC.,T3100\n\"Rontex America, Inc\",President,Y4000\nBusiness Analysis Manager,Lyondellbasell Industries,Y4000\nVP STRAT PARTNERSHIP,\"MCKESSON CORPORATION, INC.\",H4400\nTHOMAS AND HARDY APLC,,K1000\nPROFESSIONAL ANESTH SERVICE,,H1130\nWAREHOUSE SHOWROOM,,Y4000\nPRINCE WILLIAM HOSPITAL,,\nARTIST,\"AISONNE, INC.\",Y4000\nPARTN,LAW OFFICES FREDERICK GRAEFFE,K2000\nEXECU,\"CRAIN INFORMATION SYSTEMS, IN\",C5100\nCHIEF MEDICAL OFFICER,MASSMUTUAL,F3300\nBUSINESSMA,\"WESTERN LAND GROUP, ILNC\",Y4000\nReal Estate Leasing,Masur-Dean Properties,F4000\nHealth Care Administ,Sisters Of Mercy Of,Y4000\nMD,,J5000\nATTORNEY,HERZFELD RUBIN PC,K1000\nOwner,Walker Insurance Group Inc.,F3100\nM.D.,Breyard Cardiology Group,H1130\nn/a,n/a,C5120\nSHOW PR,VALLEY FORGE GUN COLLECTORS,Y4000\nCEP,FIVE COUNTY CREDIT UNION,F1300\nChief Executive Officer,Veterans Memorial Hospital,H2100\nSALES/MARKETING,JAGUAR LAND ROVER NA LLC,Y4000\nChief Operating Offi,Palm Management Corporation,G2900\nRETIRED / SELF EMPLOYED,N/A,X1200\nCORPORATE OFF,\"HOBSON & MOTZER, INC.\",M2300\nCENTRAL FLORIDA INVESTMENTS I,,Y4000\nATTORNEY,WINSTED SECHREST LAW FIRM,J5100\nPRE,ENTREPRENEURIAL CORPORATE GROUP,F7000\nCHAIRMAN,\"DISNEY, CO.\",C2000\nPROJECT,RUNNEDOHM CONSTRUCTION CO.,B1500\nINSURANCE INVESTMENTS,OCCIDENTAL UNDERWRITERS,Y4000\nS K ROSS & ASSOCIATES PC,,J7400\nCSB MGT CORP,,Y4000\nAttorney,Tucker And Tucker PC,Y4000\nInsurance,The PMA Group,K2000\nphysician,self,J7150\nATTORNEY,SEBATY SHILLITO & DYER,Y4000\nPRESIDENT,EASTSIDE GLASS,Y4000\nPRESIDENT,MEDSTAT INC.,Y4000\nCATTLE,CON AGRA,Y4000\nMANAGER,\"COMCAST CABLE COMMUNICATIONS, INC.\",C2200\nPresident,Smart Solutions Inc,Y4000\nMATOX,,Y4000\nCOMPUTER SYSTEMS ENGINEER,UNITED HEALTH GROUP,H3700\nOwner,Macs Moving,Y4000\nHOME BUILDER/DEVELOP,ZIEBEN KIRKSEY DEVELOPMENT,B2000\nTEXAS ANNUAL CONFERENCE,,Y4000\nVeterinarian,Forsyth Road Animal Clinic,Y4000\nCO-OWNER,\"THE AYCO COMPANY, LP\",Y4000\nAttorney,Millen & Martin PLLC,K1100\nEXECUTIVE,FLEXSTEEL,Y4000\nBAKER DRYWALL,SELF EMPLOYED,B3000\nCHAIRMAN -CEO,UNITED NATIONS ASSOC.,X3000\nC.E.O.,CONSTELLATRUN ENERGY COMPANY,E1620\nPRESIDENT,MADOLE & ASSOCIATES,Y4000\nPRESIDENT,WM D DAWSON INC,Y4000\nFinance Manager,Hal Berman,Y4000\nREAL ESTA,SASSER & WEATHERFORD INC.,Y4000\nVOICE-TEL VOICE MESSAGE NETWORK,,Y4000\nSEATTLE UNIVERSITY,,J7400\nPhysician,Sethi Medical Clinic,Y4000\nBUFFALO BEVERAGE CORP,,Y4000\nCIVIL ENGINEER,THE MANNIK & SMITH GROUP INC.,B4000\nExecutive Director,Eds,C5130\nCLERK TYPIST,TOWNSHIP OF JACKSON,Y4000\nOWN,PAIN SPECIALIST OF ORLANDO INC.,Y4000\n,ZUCKERMAN SPAEDER GOLDSTEIN ET AL.,K1000\nPresident,Conrad Shades,J7400\n\"VP, MANUFACTURING\",BALL CORP,M7300\nATTORNEY,KATZ & BASKIES,K1000\nOwner,Vision Transportation,Y4000\nOwner,Intl. Minute Press,C1100\nPHYSICAL THERAPIST,,H3000\nINVESTMENT MANAGEME,\"TCW GROUP, INC.\",F2100\nINVESTMENTS,LIVINGTON PARTNERS/INVESTMENTS,Y4000\nPARTNER,THE LUNGEN GROUP,H0000\nThe ShangriLa Group,Executive,J1200\nCOVERED BRIDGE SPECIAL ED DIST,,X3500\nADVERTISING,HERSHEY COMMUNICATIONS,C0000\nTEACHER,LOS LUNAS PUBLIC SCHOOLS,X3500\nVP Patient Support S,\"St. Joseph's Hospital\",H2100\nExecutive Vice President,CINEMA SYSTEMS,C2700\nBRYAN CAVE LLP/ATTORNEY/PARTNER,,K1000\nATTORNE,\"DETERS, BENZINGER & LAVALLE\",K1000\nDisabled,Ssdi,Y4000\nFOUNDER,ZAHOUREK SYSTEMS INC.,J1200\nSVP Consultant Relat,Lazard Asset Management,F2100\nC & B DISTRIBUTING,,Y4000\n\"HAHN'S ENTERPRISE\",,Y4000\nSenior VP,Authur State Bank,F1100\nteacher,\"Bishop O'Connell High School\",H5100\nATTORNEY,WITHERED BURNS & PERSIN L.L.P.,Y4000\nATTORNEY,OBRIAN & ATKINS,K1000\nVICE PR,PEPSI-COLA BOTTLING COMPANY,G2600\nAttorney,\"Alexander Howes, LLP\",K1000\nAUTO DEALER,\"HEBERT'S TOWN & COUNTRY\",Y4000\nSocial Services,Self,H6000\nchef/teacher,self,G0000\nNAT REPUBLICAN CONGRESSIOINAL COMM,,J1100\nMELTZER LIPPE GOLDSTEIN & WOLF,,K1000\nForester,Self Employed,Z9500\nREAL ESTATE DEV,MCMAHON DEVELOPMENT,F4100\nPresident,Clear Choice Capitol Inc.,Y4000\nSLAB REINFORCEMENT,,Y4000\nEXECULTIVE,ENTERPRISE RENT A CAR,T2500\nOWNER,STALKER FLOORING INC.,Y4000\nAttorney / Partner,\"Cozen O'Connor\",K1000\nSales,MK Battery,Y4000\nINVENTOR,THE SANDERS TRUST,F4000\nPresident,Givens Group,Y4000\nDRILL OPERATOR,TTM TECHNOLOGIES,Y4000\nCLAIMS REPRESENTATIVE,\"RAIN AND HAIL INS. SVC., INC.\",A4000\nNAT STARCH - CHEMICAL,,M1000\nInformation Requested,Guber & Company,Y4000\nREAL ESTATE,BOTNICK REALTY COMPANY,F4200\nOWNER,GENESIS SEAFOOD INT`L. INC.,G2350\nFRANCHISEE,\"S&B WILSON, INC.\",G2900\nCHARLES KOMAR & SONS INS,,Y4000\nFirefighter,City Of Glendale,X3000\nEMERGENCY PHYSICIAN,ST ELIZABETHS HOSP,H1100\nPrincipal,The Limtiaco Consulting Group,Y4000\nSCHULTE RANCHES,,Y4000\nQUANTUM CAPITAL INC,,Y4000\nCHAIRMAN CEO AND DIRECTOR,EOG RESOURCES INC.,E1140\nCHAIRMAN,BERKSHIRE GROUP,F4000\nPHYSICIAN,NITAN A. SHAH M.D. INC.,H1100\nEditor,Texas Thoroughbred Association,Y4000\nManager,American Airlines,J1200\nSPREERS RU,SPREERS RU,Y4000\nENGINEER,P.L.X. TECHNOLOGY INC.,Y4000\nS&H INSURANCE BROKERAGE,,F3100\nMARKETING,GENOMIC HEALTH INC.,H0000\nPresident,Margo`s Enterprises Inc.,Y4000\nSr. Superior Court J,Georgia,Y4000\nBAHERY & EQUIPMENT,STAR REBUILDERS,Y4000\nGENERAL MANAGER,MASAL CAFE,G2900\nKENWAY DISTRIBUTING INC,,M4000\n,EDWARDS CONSTRUCTION SERVICES INC.,B1500\nPRESIDENT,AMSCO STEEL COMPANY,M2100\nExecutive Vice Presi,Iac/Interactivecorp,C2200\nTREASURER,WABASH VALLEY ASPHALT CO.,B5100\nHPI,,C1100\nBOWERS AND MERENA GALLERIES,,Y4000\nSALES,FAR WEST BUS SYSTEMS,Y4000\nart Dealer/Curator,Self employed,G4600\nBIG SINK FARM,,A0000\nDATATEK INC,,Y4000\nSr VP Corporate Communications,ALLTEL,C4300\nCONSULTANT,ARNOLD-OLSON ASSOC,Y4000\nINTERIOR DESIGNER,\"ARRANGEMENTS, INC.\",J7400\nSystem Analyst,Bear Stearns,F2300\nUNITED POSTAL SAVINGS,,F1200\nVAN NESS TEXACO,,E1170\nU.S. Ambasador Extra,U.S. State Department,X3100\nOwner,\"JIM'S CABINET SHOP\",M4100\nattorney,Miller Canfield,J1200\nG & J INVESTMENTS,,F0000\nReal Estate Acquisition,Sitex Realty Group,F4200\nFORESTER,WARD TIMBER CO. INC.,A5000\nPartner,\"Cavarocchi, Ruscio, Dennis Associates\",K2000\nMESKO GLASS,,M7200\nOwner,Donahoo & Associates,Y4000\nPRESIDENT,DYER FOODS  INC.,Y4000\nPRESIDENT,WARWICK GROUP LIMITED,F2300\nJEWELER,,J7500\nGOVERNMENT AFFAIRS,VANDOR STRATEGIES LLC,Y4000\nPresident,Budres Lumber Co. Inc.,B5200\n\"VP, SALES\",BAY STATE MILLING CO.,G2100\nSTABILE & SON,,B1500\nLEAPFROG SERVICES,,Y4000\nVP AND,FEMINIST MAJORITY FOUNDATION,J7400\nSHUFRIN & COMPANY,,Y4000\nAttorney,\"Hunton & Wiliams, LLP\",J9000\nATTORNEY,\"CUNEO, GILBERT, LADUCA\",K1000\nExecutive,\"Centeye, Inc\",Y4000\nPolitical Associate,Sheridan Group,Y4000\nBUSINESS OWNER,STATE AMUSEMENT CO,Y4000\nAttorney,Lewis Brisbois Bisgaard Etal,Y4000\nREAL EST,\"REDSTONE CONSTRUCTION, INC\",B1500\nCFO,Veco Corporation,B1000\nSOFTWARE ENGINEER,INFORMATION REQUESTED,C5120\nEXECUTIVE S.,MANHATTAN BOROUGH PRESIDENT,Y4000\nLighting,HoloPhane,Y4000\nUROLOGIST,\"JOHN C. PRINCE, M.D., INC.\",H1130\nVice President,Tinicum Incorporated,F2100\nBanker,FBR Capital Corp,F0000\nSVP,State National Bank,F1100\nHistoric Preservatio,Retired,X1200\nMANAGER,\"KARDAS, ABEYTA AND WEINER, P.C.\",B0500\nSANDPIPER VILLAGE,,Y4000\nLpn,Reading Hospital & Medical Cen,H2100\nQUINLAN SCOTT & HECHT,,Y4000\nRANNER PHARMACAPS,,Y4000\nEXECUTIVE VICE PRESIDENT,CERTAPRO PAINTERS,G1000\nSVP,KANSAS BANKERS-TOPEKA,F1100\nATTORNEY,BEIMFORD & GLEASON PC,K1000\nPRESIDENT EMERITUS,WORLD ACADEMY OF ART AND SCIENCE,Y4000\nForesbry & Sawmill & Log Homes,Self-Employed,G0000\nDentist,Henderson Mill Dental Care,H1400\nMINE SERVICES,SELF EMPLOYED,Y4000\nRAFAEL HERNANDEZ-BARRERAS,,Y4000\nNEUROCARE,,J7400\nREGIONAL VP,SBC,C4100\nGlobal Account Manager,Dell Inc,C5100\nATTORNEY,\"BAIZER & KOLAR, PC\",K1000\nADVANCED RESOURSE OF MI,,Y4000\nSenior Consultant,The INI Group LLC,Y4000\nSRP,,A4000\nOwner,Quest,Y4000\nPhysician,Trent Erney Medical Group,H1130\nTOWNSEND NERMOCILLI RAIMUNDO,,Y4000\nCONGRESSMAN NEAL SMITH,,X3100\nExecutive,\"NEW BREED, INC.\",G5200\nCEO,APPLE VALLEY FORD,Y4000\nSPO PARTNERS,,F7000\nVETERINARIAN,ANIMAL MEDICAL & EMERGENCY HOSPITAL,H2100\nCo-Chairman,SUNBELT GROUP,Y4000\nContractor,\"Kerber Sheet Metal Works, Inc.(KSM)\",B3400\nGLOBAL COMMUNICATIONS,,C4000\nSenior Vice Presiden,Information Requested,D8000\nAttorney at Law,Capitol City Group LLC,K2000\nPROFESSOR,HARRIS STOWE STATE UNIVERSITY,H5100\nPRESIDENT,ELI LILLY & CO,H4300\nPHYSICIAN,FROEDTERT HEALTH MEDICAL GROUP/PHYS,Y4000\nSenior Adviser,Greenhill,F2300\nHypnotherapist,self-employed,H1700\nNASCAR DRIVER,HENDRICH MOTORSPORTS,G6400\nPRESIDENT & CEO,ZGS COMMUNICATIONS,C2400\nMARK CANTU- LAW OFFICES,,K1000\nPARTNER,MASSEY KNAKAL REALTY SERVICES,F4200\n\"Director, County Planning Dept\",US Dept Housing & Urban Development,X3000\nDREXEL BURNHAM,,F2100\nSENIOR,ORAL & MAXILOFACIAL SURGERY,H1400\nMOTHER& HOMEMAKER,SELF,Z9500\nPRESIDENT,CRANE GROUP,G2900\nExecutive,BF Goodrich,T1300\nPRESIDENT,CUMMINS CONTROL POWER,Y4000\nCRITIC,,J7400\nTHE ARGOSY GROUP LP,,F2100\nPartner,Carousel Capital,F0000\nBANK OF MALVERN,,F1000\nOAKLAND COLLEGE,,H5100\nLOBBYIST,CAPITAL PARTNERSHIPS.,Y4000\nDESIGN/BUILD CONTRAC,JOSLIN GROUP,Y4000\nprofessor emeritus,University of Arkansas at Little Rock,H5100\nCEO,FELCOR LODGING TRUST INC.,T9100\nJH KAHN & CO,,Y4000\nCHAIRMAN,3SG CORPORATION,Y4000\nAssistant Professor/,University Of Illinois At Chicago,H5100\nINVESTOR,EAGLE RIVER INC.,F7000\nComputer Enterpeneur,Self-Employed,Y4000\nPHYSICIAN,GUNDERSEN LUTHERAN,Z9500\nCEO,Sterling Pharmacy,G4900\nLandman,Independent Contractor,B3000\nDirector-Govt Affairs,WPI-Worcester Polytechnic Ins.,H5100\nCONSTRUCTION,SPIRIT CONSTRUCTION SERVICES,B1500\nLINDEN DRUG COMPANY,,Y4000\nChairman/CEO,\"Teletech Holdings, Inc.\",Y4000\nPRESIDENT,ANTHEM BLUE CROSS,F3200\nHALPERN DANNER & FAIA,,Y4000\nChief Investment Officer,Duma Capital,Z9500\nCHEMIST,SOFTWARE ENGINEER/MOLECULAR BIOLOGI,C5120\nAFW INC,,Y4000\nConsulting Engineer,DANNENBAUM ENGINEERING,B4000\nCHAIRMAN/CEO,HERZOG CONTRACTING,B1000\nOWNER GO,MINNESOTA WILD HOCKEY CLUB,Y4000\nChiropractor,Dr. George LeBeau,Y4000\nCORPORATE RESEARCH,\"PENN, SCHOEN, AND BERLAND\",Y4000\nWASHINGTON REPRESENTATIVE,INTERNATIONAL PAPER COMANY,J7400\nOWNER,GIANT BERRY FARMS,Y4000\nVICE PRESID,APPLEBEES & VILLAGE INN,Y4000\nChapman and Cutler LLP,,K1000\nPublic Affairs Consultant,Morris & Swanson,Y4000\nCENTENNIAL PUBLIC SCHOOL,,J1100\nTHE JOBCO ORGAN,,Y4000\nPastor,Christ Inc.,X7000\nROOFING CONTR,SOUTHERN ROOFING INC.,B3000\nSENIOR VICE PRESIDENT,NIELSEN,G5200\nCEO,CHESAPEAKE ENERGY CORP.,E1100\nREAL ESTATE,MONK REAL ESTATE SCHOOL/REAL ESTATE,F4000\nVGM + ASSOC,,K1000\nUNIV OF PENNSYLVANIA,,H1100\nPOLITICAL SCIENTIST,CENTURY FOUNDATION,X4100\nSystems Manager,\"Skyline Credit Ride, Inc.\",T4200\nEFD INCORPORATED,,B5500\nSTRADLEY ET AL,,K1000\nENTREPRENEUR,ENTREPRENEUR,T3100\nbusiness owner,Inn the Village Corrales B&B,J1200\nOwner,Bayview Ford Lincoln Mercury LLC,T2300\nPresident,Reed Electronics Group,Y4000\nTRINCO LTD.,,F4000\nBAYOU COMPANY,,Y4000\nLONGHORN PARTNERS PIPLINE,,E1100\nExecutive,Technical Ordnance Inc,X1200\nATTORNEY,ALSTON BYRD,Y4000\nPresident,H & R Block,G1200\nMANUFACTUR,C. S. S. TECHNOLOGY INC.,Y4000\nM E MCBRIDE & SON,,G2900\nBIOMEDICAL SCIENTIST/MOM,HOME,Y1000\nPARTY CONCEPTS,,Y4000\nDICK BROOKS HONDA,,T2310\nN Y C H H C,,X3000\nBIO-LAB INC,,Y4000\nGOVERNMENT AFFAIRS,GENERAL DYNAMICS,D3000\nHOBBY FARMER,SELF,G0000\nPresident,Kallious Asset Advisors,Y4000\nWHEELING COMMUNICATIONS,,Y4000\nEXECUTIVE VICE,ROEBUCK & ASSOCIATES,B5100\nPRESIDENT,D.J. REARDON CO. INC.,G2850\nSOUTHERN RECYCLING INC,,M2400\nRADIOLOGIST,RAD. ASSOC. ABILENE,Y4000\nPAUL W TAYLOR CO INC,,T3100\n\"DANTE'S DOWN THE HATCH\",,Y4000\nMANAGEMENT CONSULTANT,GOTHAM CONSULTING PARTNERS,Y4000\nSales,Carestream Health Inc,Y4000\nSELF EMPLOYED,PHIL KEAN DESIGNS,Y4000\nCONSULTANT,THE TRAINING ASSOCIATES,J1100\nO MILLER ASSOCIATION,,M2300\nHUDSON CAPITAL GROUP,,Y4000\nLAND DEVELOPER/RES B,MAJESTY BUILDERS,F4100\nChairman/CEO,House of LaRose - Cleveland Inc.,G2850\nseamtress,marathon seat covers,Y4000\nPartner,Ruddy Brothers,Y4000\n\"Medical Director, Radiology Department\",Marietta Memorial Hospital,H2100\nPresident,Finch Group,Y4000\n\"SR VP, GENERAL COUNSEL & SECRETARY\",\"CONTINENTAL RESOURCES, INC.\",E1120\nCROSCILI INC,,Y4000\nPyschologist,Self-employed,H1110\nHELLMAN & FRIEDMAN LLC,,J5100\nTEACHER,CHURCHVILLE-CHILI M.S.,Z9500\nGREEVER & WALSH INC,,Y4000\nSENIOR CREDIT OFFICER,COBANK,A4000\nLOBBYIST,\"WHEAT GOV'T. REL./LOBBYIST\",K2000\nMarketing Communicat,Sap Global Marketing,C5120\nSENIOR SALE,ALLSTATE LIFE INSURANCE,F3300\nJOHNS HOPKINS UNIVERSITY APPLED PHY,,H5100\nATTORNEY,LAW OFFICE OF CRAIG GIBBS/ATTORNEY,K1000\nPRECISION AIR BALANCE CO INC,,B3400\nInvestor,HC Capital,J9000\nUS HOUSE OF REPRESENTATIVES,COMMITTEE ON APPROPRIATIONS,Z9500\nPRESIDENT & CEO,KS BANK,F1200\nCOIL SERVICES,,J5100\nINSURANCE AGENT,WALLSTREET GROUP,F3100\nAMERICAN AIRLINES,,T1400\nSALES,\"PEDERSON BROTHERS, INC.\",J1100\nCOMMUNICATION CONSULT,SELF EMPLOYED,J1100\nC.P.A.,MC QUADE BRENNAN L.L.C.,F5100\non leave,JPMorgan Chase,Z9500\nMUTUAL FUND MA,J.&W. SELIGMAN & CO.,J1100\nPRESIDENT & CEO,THE SCOULAR COMPANY,A1500\nCON,FINANCIAL MANAGEMENT CONSULTANT,F5000\nMEDICINAL CHEMIST,PFIZER,H4300\nTRI CITY MEDICAL,,H0000\nBOARD OF EQUALI,STATE OF CALIFORNIA,J1100\nINTERNAL MEDICINE,WINCHESTER MEDICAL ASSOCIATE,Y4000\nArt Gallery Owner,Bobbie Greenfield,J1200\nCHICAGO UNITED,,Y4000\nREALTOR,\"BUILDING SITES, INC.\",J9000\nTONY DIMECO & SONS,,Y4000\nSTRATEGIC CAPITAL MGMT,,Y4000\n\"SELF, LETTER SENT 9/15/08/BUSINESSM\",,G0000\nEXEC,HAMILTON THORNE BIOSCIENCES,J1200\nMarketing,Liveops,G5200\nTHE BOEING COMPANY/VP/GM 737 PROGRA,,T1200\nPRESIDENT,TRINITY ENERGY CO,E1120\nROTHSTEIN ROSENFELDT ADLER,,K1000\nPresident & CEO,Kedrew Community Health Center,Y4000\nSONNENCHEIN NATH ET AL,,K1000\nSMALL BUSINESS OWNER,\"TRES DAC, INC.\",Y4000\nEngineer,self employed,X1200\nMEDICAL TECHNI,SAN DIEGO BLOOD BANK,H3000\nRN,\"COTTON O'NEIL CLINIC\",H1710\nSELF,\"WI-FI SENSORS, INC.\",Y4000\nASSISTANT,CREDITORS INTERCHANGE LLC,F5200\nBOARD MEMBER,AMERICAN HELLENIC COUNCIL,Y4000\nChief Executive Offi,\"Data Holdings, Inc.\",Y4000\nPRESIDENT,PREMS INC.,Y4000\nReal Estate Developer,Monarch Design & Construction LLC,B1500\nPUBLISHER,,\nOWNER,\"RAYNOR'S TOBACCO WAREHOUSE\",A1300\nWIENER WEISS MADISON HOWELL,,K1000\nExecutive Vice President,Mississippi Baptist Medical Center,H2100\nPhysician,\"AWHG, P.C\",Y4000\nBusiness Representative,BAY AREA PAINTERS AND TAPERS TRUST FUN,LB100\nCOMMUNITY RELATIONS COORDINATOR,VIRGINIA TECH,H5100\nPETER BROWN CIVIC DESIGN,,B4200\nProsecutor,\"Baltimore City Office of the State's A\",X3000\nMARGARET WONG & ASSOCIATES,,K1000\nAFC ENTERPRISES/POPEYES/COO,,G2900\nINFO REQUESTED,Gans Multi-communications,Y4000\n\"DIRECTOR,PCG TAXABLE FIXED INC\",UBS FINANCIAL SERVICES INC,F2100\nCPA,\"Soza Associates, P.C., CPA's\",F5100\nINVESTMENT,ACCUVEST GLOBAL ADVISORS,Y4000\nPRESIDENT & CEO,DWI MARKETING,Y4000\nEmbedded Software Engineer,Airbiquity Inc,Y4000\nVICE PRESIDENT HR NI,NIKE,M3200\nFREE LANCE VOICE TALENT,,Y4000\nAttorney,Romanucci & Blanan LLC,K1000\nattorney,Ropes & Gray LLP,K2000\nAttorney,Stinson Marcin and Hicker,K1000\nMEMBER,\"MOURNING DOVE HOLDINGS, LLC\",Y4000\nMFG.,NALCO CHEMICAL,M1000\nAUDIO CONSULTANT,SELF,Z9500\npolice lieutenent,Westchester County,Z9500\nSMITH FISHER GILL & BUTTS,,Y4000\nTECHNOLOGY ASSOCI,DATA APPLICATIONS,Y4000\nSPEAKER OF THE HOUSE,NORTH CAROLINA,H5100\nTHOMPSON TRACTOR INC,,Y4000\nAMERICAN INCOME LIFE INSURANCE,,J1200\nPresident,Buck Souvenir And Gifts Inc.,Y4000\nInvestment Manager,Generation Investment Management,F2600\nREAL ESTATE,AMR DEVELOPMENT,J5100\nEXECUTIVE,PEACHTREE SETTLEMENT FUND,G5270\nPRODUCER,SING OUT LOUISE PRDTS,C2900\nArt Director,POV,Y4000\nLawyer,Attorney at Law,K1000\nMANAGER,OXNARD FARM SUPPLY,A1000\nATTORNEY,IDEXX LABORATORIES,A3100\nATTY.,GAGEN MCCOY,Y4000\nExecutive Senior VP,The Hartford,F3100\nPETROPHYSICIST,SHELL EXPLORATION & PRODUCTION,E1140\nLIBRTY PROPRTY TRUST,,F4000\nNEUROMUSCULAR THERAPI,SELF EMPLOYED,H1130\nMERCHANT,SELF EMPLOYED,J1200\nDIREC,YOUTH & FAMILY CENTERED SVCS.,H2100\nATTORNEY,KIRKLAND & WOODS,Z9500\nCEO,SOFTWARE BUILDERS INC,C5120\n\"SVP, HUMAN RESOURCES\",SELECT MEDICAL CORP,H6000\nOWNER,PLATINUM INC.,Y4000\nNONE,NONE,M3100\nChief Ex. Officer,ONeill & Associates,K1000\nVICE PRESIDENT/FINANCE-RISK-DATA,FIRST INTERSTATE BANK,F1100\nAttorney,Sieben Grose VonHoltom,K1000\nEXECUTIVE,COORS BREWING COMPANY,G2810\nFLO CO MIDWEST,,Y4000\npresident,\"Tait & Associates, Inc.\",Y4000\nJONES & KELL ARCH,,B4200\nGENER,\"UNIVERSAL UNDERWRITER'S GROUP\",Y4000\nSTRUCTU,J. CLARK JOHNSON CONSULTING,Y4000\nPresident,International Creative Metal,Y4000\nOWNER-FARM,,G1000\ninsurance executive,The Meltzer Group,F3100\nRetired Secretary,City of NY HRA,X1200\nSNELSON CO INC,,Y4000\nPARTNER/OWNER,BEAR DEVELOPMENT CO. LLC,Y4000\nKULITE SEMICONDUCTOR PRODUCTS INC,,J2100\nMANAGI,KISSINGER MCLARTY ASSOCIATES,G5270\nCAPITOL WEST SECURITIES,,F2100\nMCNELLY INS,,Y4000\nExecutive,Metro Systems Corporation,T4200\nCEO,Progressive Insurance,F3400\nEXEC. VICE PRESIDENT,MCA OF CT INC.,B3000\nMANAGER,CROSSROADS INVESTMENTS,Y4000\nCEO,MICHELIN TIRE COMPANY OF AMERI,Y4000\nInvestment Banker,DE Shaw & Co,F2700\nEXECUTIVE,\"R MARKEY & SONS, INC\",Y4000\nPresident & CEO,Mohawk Ltd,Y4000\nDUNN AND ASSOCIATES,,Y4000\nCIV,DEPARTMENT OF HOMELAND SECURITY,X3000\nExecutive,Destiny USA,F4100\nOwner,\"LASCO Construction, Inc.\",B1500\nWLAJ TV,,C2100\nEngineer,Harper International,Y4000\nPRESIDENT,S & M BUILDING MAINTENANCE,Y4000\nPRINCIPAL,BERNSTEIN GLOBAL WEALTH MANAGEMENT,Y4000\nWATERFIELD MORTGAGE CORPORATION,,F4600\nTECHNOLOGY EXECUTIVE,ROSE TECH VENTURES,Z9500\nLAWYER/AUTHOR,SELF-EMPLOYED,K1000\nMANAGING DIRECTOR,THE WEXLER GROUP,K2000\nATTORNEY,\"OBERLY & JENNINGS, P.A.\",K1000\nPRESIDENT,UCOR,Y4000\nAGEN,DEAN & DRAPER INSURANCE AGENCY,F3100\n\"EXXON CO INTERNAT'L\",,E1110\nRETIRED,TEACHER/FARMER,H5100\nUS SPACE FOUNDATION,,Y4000\nUNITED MINE WORKERS,,LE100\nHMS INSURANCE ASSOCIATES INC,,F3100\n\"Fitness Instructor,t\",Self,G0000\nASSISTANT PROFESSOR,YALE UNIVERSITY,H5100\nNUCARE,,H2200\nGRUBBS AND COMPANY INC,,J1200\nWRITER,RED STORM ENTERTAINMENT,Z9500\nDODER,,Y4000\nGOFF & HOWARD INC,,J1100\nCONSULTANT,PROFESSIONAL SPEAKER,G5200\nOWNER/PRESIDENT/CPO,SELF,G0000\nCFO,GEORGETOWN COMMUNITY HOSPITAL,H2100\nINS BROKER,THE PLANNING GROUP,F3100\nPLANNER,MASTERS LEGACY PLANNER,Y4000\nPRESIDENT,CHARRON SPORTS SERVICES,Y4000\nDONLEE FARMS,,Y4000\nDIRECTOR OF ORGANIZING,\"INT'L ASSOC. OF MACHINISTS\",LM100\nORAL,\"DRS. OLSON & WEISBECKER, P.A.\",H1100\nIMPORTER,360 SWEATER COMPANY,Y4000\nCPA,FTN Financial,F5100\nPysician,Medical CE,Y4000\nINVESTOR,INFORMATION REQUESTED PER BEST EFFORTS,C2000\nBroker,UNITED EQUITIES COMPANY,F2100\nMUSICIAN,FLYING W RANCH,A3000\nJOHNSON ELECTRICAL CONSTRUCTION COR,,B3200\nLEGISLATIVE AIDE,COMM OF KENUTUCKY,J5100\nCivil Engineer,TPA Design Group,Y4000\nENGINEER,ROHM AND HAAS,J1100\nElectrical Contracto,Jamerson & Bauwens Electrical Contract,B3200\nTOMMY THOMAS CHEVEROLET,,T2300\nEDUCATOR,UW,Z9500\nMortgage Banker,Rock Financial,F1000\nVice President and Legal Counsel /Part,COR Companies,Y4000\nATTORNEY,\"HERZOG, FISHER, GRAYSON & WOLFE, A.L.C\",K1000\nDENNIS ELECTRIC INC.,,B0500\n\"BERNSTEIN, LITOWITZ, BERGER ET AL\",,K1000\nATTORNEY,KINDEL MORGAN INC,E1140\nORTEGA ASSOC,,Y4000\nDirector,Bruner Foundation,Y4000\nCOSTAL EAR NOSE AND THROAT,,Y4000\nCOMMUNICATIONS TECHNIC,PACIFIC BELL,C4100\nVETERINARIAN,SELF EMPLOYED,J1200\nVOLUNTEER / HOMEMAKER,NONE,J7150\nTRADER,DONALDSON LUFKIN & JENRETTE,F2100\nATTORNEY,REQUESTED,Y4000\nPresident,Duck & Hyde,Y4000\nOWNER,ARTHUR ROCK AND COMPANY,H1130\nactor/director,Self employed,C2400\nInvestor,Self,K2000\nDANIEL J KEATING CONSTRUCTION,,B1500\nTELEVISION WRITER/PRODUCER,SELF,C2100\nBUSINESS OWNER,\"MCDONALD'S\",G2900\nDistrict Representative,Rep Lois Capps,Y4000\nDIRECTOR REG MGMT PHARMA,PFIZER INC/DIRECTOR REG MGMT PHARMA,H4300\nOwners,Nosal Industries,Y4000\nCEO,Goodharbor Partners,Y4000\nDESIGN & SALES,,Y4000\nASSOCIATE,VAN NESS FELDMAN,K1000\nBRADENBURG STAEDLER,,F4100\nSCHWIETERMANS DRUGS,,Y4000\nFire Fighter/EMS,Nashville Fire Dept.,L1400\nPHYSICIAN,NEURODIAGNOSTICS INC,Y4000\nEXECUTIVE,SUNDT,B1500\nPAYLESS SHOE SOURCE/CEO/PRES,,G4100\n\"President, not for profit\",Self,Y4000\nACCOUNTANT,JULIUS SOTER,Y4000\nCOMPUTER ARCHITECT,RADIAN,Y4000\nprofessor of physics,university of michigan [retired],X1200\nBANK REGIONAL PRESIDENT,METROCORP BANKSHARES (MCBI),Y4000\nIndependent Consulta,Chareles J. Sundmacher Photography,Y4000\nAttorney,Winters Brewster Crosby & Schafer,K1000\nSNELL ENVIRON GROUP,,Y4000\nChief Consultant,State Senate/State of California,X3000\nDABORA INC,,A3500\nclinical/medical die,Sutter Health,H2100\nSTAFF,DEMOCRATIC NATIONAL COMMITTEE,J1200\nUS_VP_FINANCE_DMT,\"Pitney Bowes, Inc.\",M4200\nAttorney,Sidley Austin Brown,K1000\nCRPS TREATMENT CENTER AND,THE RSD,Y4000\nRecruitment Associate,Teach For America,H6000\nGeneral Contractor,Frontier Construction,B1500\nResearch,nrc,Y4000\nKLINE OLDS,,Y4000\nCLINICAL DIRECTOR,GNYHAS,Y4000\nCounty Attorney,\"Johnson County Attorney's Office\",K1000\n\"President and C.E.O., Gehc-Internation\",GE Healthcare,M2300\nPhysician,Crozer Keystone Health Network,Y4000\nBUSINESS OWNER,VALUE INN,Y4000\nResearcher,UC Davis,H5100\nCONTRACTOR,FOX COMPANY,Y4000\nCEO,Hope Community Builders,Y4000\nVice President Plant Nutrient Group-So,The Andersons,A4100\nCOMMUNIY VOLUNTEER,,F5000\nPresident/dmd,Allergy Associates Of La Crosse,Y4000\nOwner,M.B.T.C.,Y4000\nRetired Arts Administrator,Information Requested,X1200\nCEO,WASHINGTON CONSULTING GROUP,Y4000\nATTORNEY,KCSV,Y4000\nINVESTMENTS,CRESAP CAPITOL,Y4000\nCHEMIST,INFO REQUESTED,M1000\nRETIRED,THE THOMPSON CORPORATION,J1100\nBUILDING CONTRACTOR,GARY D. JONES CONSTRUCTION CO.,B1500\nGroup Executive CML,HSBC FINANCE CORP,F1400\nMANAG,OAKTREE CAPITAL MANAGEMENT LP,F2100\nProject Manager,\"University of California, Davis\",H5100\nFINANCIAL ADVISOR,ISI,G5280\nDeputy Prosecuting Attorney,State of Arkansas,X3000\nPRESIDENT/MASONRY CO,\"PAUL MACKIN, INC.\",Y4000\nFranchise Owner,\"Go-Burgers, LP\",G1000\nENGINEER,\"COMPUTER AIDED TECHNOLOGY, INC.\",Y4000\nVP,Cornerstone Gov. Affairs,K2000\nPresident,Advanced Custom Carpentry Inc.,Y4000\nAUTO D,G. M. C. MOTORS INCORPORATED,T2300\nDeputy Fire Marshal,San Gabriel Fire Dept,Y4000\nG C FARMS INC,,Y4000\nAUBURN FDRY INC,,M2100\nUTSA,,Y4000\nAN,PHYSICIANS ANESTHESAI ASSOCIATES,H1130\nGeneva Contractor,Self-Employed,Y4000\nCONGRESSMAN,,K2000\nBUSINESS EXECUTIVE,\"KRW ADVISORS, LLC\",Z9500\nSENIOR VICE PRESIDENT & GENERAL COUNSE,AMERICAN ELECTRIC POWER,E1600\nOWNER,INN ON FAIRFAX,Y4000\nVOLUNTEER ADVOCATE,SELF,Z9500\nFarmer,\"Brooksco Dairy, LLC\",A2000\nM/I HOMES/CORPORATE CONTROLLER,,B2000\nOwner,\"Sunland Fire Protection, Inc\",Y4000\nSENIOR V.P.,FIDELITY NATIONAL FINANCIAL,F4300\nPresident,\"Petroleum,  Imc\",Y4000\nVice President,Manna Enterprises,G2900\nExecutive,AON Group,F3100\nPediatrician,CHI,Y4000\nBUSINESS ANALYST,PROGRESS ENERGY,E1600\nELDON J HAUGHT SERVICE COMPANY,,E1120\nSIMON & GRISETA,,Y4000\nPlant Ecologist,State Of Illinois,X3000\nATTORNEY,THE YELLIN LAW FIRM,K1000\nEnvironmental Activitist,Wild Earth,Y4000\nOil and Gas Producer/Service,Self Employed,E1120\nBUSINESS,\"PEOPLE CARE HOLDINGS, INCORPORATION\",Y4000\nOWNER,PALM MANAGEMENT,G2900\n\"AMERICAN GLOBAL STANDARDS, LLC\",EXECUTIVE,Z9500\nCAR SALESMAN,SELF EMPLOYED,T2300\nRancher,Paskenta Band of Nomlaki Indians,G6550\nEngineer,Aarons Systems Integrators,Y4000\nPRESIDENT/OWNER,ERIC SCOTT,Y4000\nATTORNEY,WASH FOREST LAW,JE300\nPETE GARCIA COMPANY,,A8000\nWAYNESBORO NURSERY,,A8000\nCommunications Execu,Self-employed,C0000\nENGINEER,JOHN L. COX,J6200\nOwner,Willems Landscape Service Inc,G1200\nPhysician,DC Chartered Health Plan,F3200\nENTREPRENEOR,SELF,Y4000\nLAWYER,,M2400\nPR,\"JDS USA, LLC\",Y4000\nPHYSICIAN,SELF`,H1100\nVICE PRESIDENT,COLDWELL BANKER,F4000\nCeo & President,Weider Global Nutrition,Y4000\nMarketing,Landtech Products,Y4000\nEVP,COMMUNITY TRUST BANK,F1100\nActuary,Safeco,F3400\nPRESIDEN,MCGREGOR BROTHERS HOLDINGS,Y4000\nHome Builder,Sho-Deen Inc,B1500\nAttorney,\"Chernesky, Heyman, Krass\",Y4000\nVice President of Regulatory Affairs,Bright Source Energy,E1000\nHOMEMAKER,-,Y4000\nV.P. Community Relat,California Credit Union,F1300\nPresident and COO,Constellation Brands,G2820\nPRESIDENT,TOM NAQUIN CHEVROLET,T2300\nDIRECTOR,NORTON HEALTHCARE,H2100\nNORTHWEST AIDS FOUNDATION,,JH100\nJ AND A DISCOUNT TIRES,,M1500\nRECYCLING,,Y4000\nGROUNDSKEEPER,\"ACCIDENT FUND HOLDINGS, INC.\",Z9500\nATTORNEY,MARKET CORPORATION,F3100\nCEO,COBALT BOATS - NEODESHA,T8300\n\"YU MING INVESTMENTS, LT\",,F7000\nATTOR,\"BOSTWICK, PETERSON & MITCHELL\",Y0000\nAMSCO INTERNATIONAL,,J7400\nOWENS BROTHERS PULPWOOD COMPANY INC,,B5200\nAttorney,Towards Employment,G5250\nInvestment Management,Arnhold and S Bleichroeder Advisers,F2300\nHuman Resources Advisor,US Army War College,X5000\nCHIEF OPERATING OFFICER,CONE COLVENTS,Y4000\nMONSANTO/LETTER SENT 7/7/01,,A4100\nChief Executive Officer,Unisys Corporation,C5130\nGM,POWER TOYOTA,T2300\nSUPER STOP STORES INC,,Y4000\nLITERARY AGENT,IT INC.,Z9500\nChairman/CEO,Entrepreneurial Corp. Group,J1100\nOWNER,VEY DEVELOPMENT,Y4000\nDeveloper,Redstone Construction Inc,J1200\nPresident,Dyson Kissner Corp,Y4000\nReal Estate Manager,R & S Management Company,F4000\nPRESIDENT,SCHROER DRAPERY,G1200\nPresident,PARTRIDGE WELL,Y4000\nSTRAIGHT CREEK FARM,,A1000\nCONTRACTOR,WW FAGNER & COMPANY,B3000\nHOPE FARM,COMPUTER SPECIALEST,J7400\nACCOUNTANT,FIRST PRESBYTERIAN CHURCH,X7000\nCEO,Bill Barrett Corp,E1120\nChairman/Co Founder,Pilgrims Pride,A2300\nUST INTERNATIONAL,,A1300\nFINANCIAL,JAMES  D. KLOTE & ASSOC.,Y4000\nINSTRUC,WU AMERICAN CULTURE STUDIES,Y4000\n\"PAINE, HAMBLEN ETC\",,K1000\nWILLETTS POINT CONST,,B1500\nHISTORIAN WRITER,,J1200\nEXECUTIVE,WEYERHAEUSER COMPANY,A5000\nPresident and CEO,ABC Bank,F1100\nINSURANCE AGENT,STONE INSURANCE,F3100\nFEDERAL CIVIL SERVIC,U.S. AIR FORCE,X5000\nPARTNER,CABOT PARTNERS,Y4000\nMAIL CONTRACTORS OF ARK,,T7000\nAM-2 SLS REP-SPEC PH,SALES,H4300\nFAMILY,SUNCOOK FAMILY HEALTH CENTER,Y4000\nDENTIST,JOHN HOOVER DDS PC,H1400\nORANGE COAST AUTO GROUP,,T2300\nPROFESSIONAL ENGINEER-RETIRED,NONE,X1200\nPRESIDENT,THE ALAMO TRAVEL GROUP,Y4000\nINSURANCE,SEITLIN,F3100\nLALONDE CHIROPRACTIC,,H1500\nVice President,\"Krump Construction, Inc.\",B1500\nBUSINESS EX,\"TRADE UNION INT'L. INC.\",J1100\nCEO,Constellation Energy,E1620\nSenior Technical Consultant,United Health Group - Ingenix,H3700\nRYDER SYSTEM,,T3000\nVICE PRESIDENT,IOWA BANKERS,F1100\nEXECUTIVE,THE GOEKEN GROUP,H3000\nREAL ESTATE INVESTOR,BEACHWOLD RESIDENTIAL,B2000\nVPRegion Advanced Integration,Tyco International,G5290\nAUSTIN/GAUDINEER/SALMONS,,Y4000\nMURIEL MCBRIEN & KAUFFMAN FOUNDATIO,,X4100\nTHE PIONEER GROUP,,K1000\nSR VICE PRESIDENT,M CAPITAL MANAGEMENT,J1100\nUS Air Force,Ret,X5000\nPhysician,U. of Rochester,J7400\nWALDBAUM,,A2300\nC.O.O.,LIFE SETTLEMENT PROVIDERS L.L.C.,F5000\nMarketing,RVM Marketing,Y4000\nTom Peters Company,,Y4000\nTHEATRICAL PRODUCER,,X4200\nImmunologist,Vaxlnnole Corp,Y4000\nQUINN EMANUEL URQUHART LOVER &,,K1100\nEXECUTIVE,RETIRED,G6400\nK&H DISTRIBUTING CO INC DBA NELSON,,G2850\nCARDIAC SURGEON,THORACIC TRANSPLANT CONSULTANTS INC,Z9500\nBRAMCO,,B6000\nTeacher & Translator,Self employed,Y4000\nSAM AZAR-HOLLYMATIC,,Y4000\nCORE COMMUNITIES,,F4000\nCEO,67 GROUP INC.,F5500\nSELF-EMPLOYED/FINANC,\"SPINOSA ENTERPRISES,INC\",J1100\nEXECUTIVE DIRECTOR,OVARIAN CANCER NATIONAL ALLIANCE,J7400\nPresident,Vitas Healthcare,H3100\nOffice Manager,ARI Systems,Y4000\nPRESIDENT,KILLERSPIN,Y4000\nCTO,1366 TECHNOLOGIES,Y4000\nMANAGEMENT COMPANY,SELF-EMPLOYED,G5270\nINTERNATIONAL DIAMOND AND GOLD,,Y4000\nLegal Secretary,Sidley Austin LLP,K1000\nSOCIAL WORK CONSULTANT,RETIRED,X1200\nEXECUTIVE,BOYNTON-BROWN,Y4000\nATTORNEY,HEDLAND HANDLEY & JOHN,J5100\nlaw,Howrey LLP,K1200\nBUSINESS SM,KANSAS LUMBER HOMESTORE,G4500\nK K BOAT ENTERPRISE,,Y4000\nADMINISTRATOR,INSTITUTE FOR PSYCHO,Y4000\nLABORERS UNION,,LB100\nGrant administration,University of Michigan,H5100\nRN,Medical City Dallas Hosp,H2100\nREAL ESTATE,WILLIS ALLEN COMPANY,J1100\nUNIVERSITY MISS. MED CTR,,H2100\nTHE SAN ANTONIO TELEPHONE CO,,Y4000\nExec. Director,Hispanic Human Resources Counc,Y4000\nPRESIDENT,OASIS SYSTEMS,Y4000\nPRESIDENT,MELLON FINANCIAL,F1100\nFIRST TECH,,Y4000\nADMINI,NY STATE DEPT. TAX & FINANCE,X3000\nSELF,THE HEFNER COMPANY,E1120\nGOLF AMERICA STORES INC,,G6100\nVICE PRESIDENT,\"GOETZ COMPANIES, INCORPORATED\",T3100\nGE & RCA LICENSING MANAGEMENT,,M2300\nReal Estate Broker,Broadmoor Realty,F4200\nCOPPER MOUNTAIN,,F5500\nMERIDEN WALLINGFORD ANESTH,,H1130\nATTORNEY,HANLY CONROY,Y4000\nSECRETARY,CARL LEWIS PLUMBING,B3400\nMANAGER BUSINES,CITY OF SPRINGFIELD,X3000\nRetired,Smith County School Systems,X1200\nProducer,Amber Geiger Productions,Y4000\nSELF EMPLOYED/HOMEMAKER/WRITER,,Y1000\nWESCO,,T2200\nPRESIDENT,\"RICK CASE ENTERPRISES, INC.\",T2310\nAMBASSADOR,SELF,J1200\nInvestment banker,Think Equity,Y4000\nCENTRON DPL,,Y4000\nAttorney,Jones & Jones,K1000\nEXECUTIVE,SAJIK INVESTMENT,J5100\nBiochemist,NIH,X3000\nTEMPACO,,G3000\nDEVELOMENT PROFESSIONAL,N/A,Y4000\nPRES,VENEGAS ENGINEERING MANAGEMENT,B4400\nAttorney,Independent Pilots Association,T1400\nMACON EDWARDS COMPANY,,K2000\nATTY,BGR HOLDING,K2000\nelectrical contractor,self,B3200\nVICE PRESIDENT INFORMATION SYSTEMS,CAPITAL HEALTH,H2100\nZ & W CONTRACTORS,,B1500\nBETH ISRAEL DEACONESS MEDICAL CENT,,H2100\nChairman,Ghafari Assocaites LLC,B4200\nPartner,\"Direct Medical Data, LLC\",Y4000\nP AGNES INC,,Y4000\nCONSTRUCTION MA,MOLIME CONSTRUCTION,Y4000\nCOO,\"Information International Associates,\",Y4000\nSTREET OIL CO,,E1160\nEXEC VICE PRESIDENT,NATIONAL GEOGRAPHIC,C1100\nQUALITY FARMS,,A1000\nPRESIDENT,VALLANCE SECURITY SYSTEMS,Y4000\nATTORNEY,BEEMAN LAW OFFICE,K1000\nInvestment Banker,\"Bear Stearns & Co, Inc\",F2300\nConsultant,HMA,Y4000\nMortgage Banker,Pacific Southwest Mortgage,F4600\nUNIVERSITY OF MAINE/COLLEGE DEAN/DE,,H5100\nST CLAIR & ASSOCIATES,,Y4000\nCLERGY,VEEDUM MORAVIAN CHURCH,X7000\nPEST CONTROL CO,,G5700\nOwner,Technology Services Group Inc,Y4000\nMELLEN-WISC INVEST CO,,Y4000\nPHYSICIAN,CASE WESTERN RESERVE UNIV,J7400\nEXEC DIR,FLORIDA ORTHOPEDIC SOCIETY,H1130\nATTORNEY,CANTOR COLBURN LLP,K1000\nJANESVILLE AUTO TRANSIT,,T2500\nPEREGRINE GROUP,,Y4000\nHUNT ELECTRIC SUPPLY CO,,B5500\nSelf-Employed,Base To Peak Llc,Y4000\nINFO. REQ.,HORMEL FOODS,G2300\nAFGE LOCAL,,L1100\nEXECUTIVE,GENERAL AVIATION MFRS. ASSN.,T1200\nREALTOR,REAL ESTATE GROUP,F4000\nFundraising Consultant,\"Marts & Lundy, Inc.\",Y4000\nOWNER,MONCRIEF OIL,E1120\nEXECUTIVE,BACARDI CORPORATION,G2820\nPARTNER,KERN & COLEMAN ENGINEERING,B4400\nEMERGENCY PHYSICIAN,MILLS HOSP,H1100\nMANAGING DIRECTOR,INCEPT LLC,Y4000\nAttorney,\"Heninger, Burge LLP\",Y4000\n\"KATS ON MARKET, INC.\",,Y4000\nINSURANCE AGE,FARM BUREAU INSURANCE,F3100\nAerodynamicist,Geneva Aerospace,D2000\nSVP-HR,FIDELITY INTERACTIVE CO.,F2100\nRAHBANY REALTY,,F4200\nDIRECTOR OF ASSET I,TXU CORPORATION,J1200\nEngineer,Raytheon,J7150\nSmall Business Owner,\"Highland Creations, Inc\",Y4000\nATTORNEY,HINKLEY ALLEN AND TRINGALE,Y4000\nOwner,Paradigm Management Services,Y4000\nM3,,Y4000\nConduit total: $79750.00,,Z5200\nCEO,MIDWEST ATC SERVICE,Y4000\nEXPRESS ONE INTERNATIONA,,Y4000\nUNC-CHAPEL HILL SCHOOL OF LAW,,H5170\nSuperintendent,Boston Public Schools,X3500\nFIDUCIARY & ATTORNEY,NORTHEAST INVESTMENT MANAGEMENT INC.,J1200\nInsurance Agent,\"Mark V. Williamson Company, In\",F3100\nSemi - Retired,Highland Express Shuttle,Y4000\nIT Manager,Lincoln Financial Group,F0000\nRUST INTERNATIONAL CORPORATION,,B4000\nGUZZARDO ENTERPRISES INC,,Y4000\nKLOTZ SIMMONS & BRAINARD,,K1000\nJORDAN-DELAURENTI INC,,Y4000\nEBREVIATE,,Y4000\nSubstitute Teacher,TUSD,X3500\nPROPERTY,CHALLENGER DEVELOPMENT LLC,Y4000\nL-C ASSOCIATES,,Y4000\nMANAGER,WAL-MART STORES,G4300\nPHYSICIAN,WATSON CLINIC L.L.P.,G5210\nProfessor,Northern At Univ,H5100\nPARTNER,MCMAHON ENTERPRISES,Y4000\nGALLO CORP,,Y4000\nExecutive,\"Intelmark, Inc\",Y4000\nattorney,Sugarman and Sugarman PC,Z9500\nBOARD OF DIRECTORS,MCM CORP.,B1000\nPSYCHO,BERKELEY THERAPY INSTITUTION,Y4000\nChairman,JF Lehman and Company,F2600\n\"EVP, PRODUCTS\",ERIE INSURANCE GROUP,F3100\nNORTHWEST MEDICAL CENTER/CEO/CEO,,H2000\nLaw,Mayer Brown Llp,K1200\nPHYSICAL THERAPIST,CHESTNUT HILL PT,H1700\nTOOL MAKER,ALCOA,Z9500\nCPA,Michael Dubois Cpa Pc,F5100\nJ ISRAEL ASSOCIATES,,Y4000\nPhysician,N Dallas Orthopedics and Rehabilitati,H1130\nPRESIDENT,PA MANUFACTURERS ASSOCIATION,J1100\nPRESIDENT,COWLES MEDEIROS,G0000\nWILLETT & GUERRA LLP,,K1000\nFORMER AMBASSADOR,SELF,J1100\nCRYSTAL HARBOR,,Y4000\nSUPERVISOR,GRAND BLANC TOWNSHIP,X3000\nSELF EMPLOYED,GRG PC,Y4000\nOWNER,LUCCHETTI RANCH,A3500\nPRESIDENT,LEON MEDICAL CENTERS,H1100\nCONSULTANT,BURSON MARSTELLER,Z9500\nTeacher,Workforce Learning,Y4000\nPresident,Wrobel Engineering Company,B4400\nPATHOLOGIST,LAKE MCHENRY PATHOLOGY,H1130\nReal Estate Broker/R,\"Oakland Real Estate Company, Inc.\",F4000\nMANAGING,SHEFFIELD ASSET MANAGEMENT,Y4000\nINSURANCE,EDWARDS CHUCH & MUSE INC.,F3100\nPROCEEDS FROM J,,Z4100\nOWNER,BURLY R. JENKINS GROUP,Y4000\nAttorney,Meyer & Meuser PA,K1000\nVice President,AFCO,G5210\nDATANET/COMPUTER PROG/COMPUTER PROG,,Y4000\nEXECUTIVE,HOMEMAKER SERVICE OF THE METRO AREA IN,Y4000\nALEXANDER PAPER CO,,M7000\nBUSINESS DEVELOPMENT,HDNET,Y4000\nCPA,WINKLER SIBENHAAR & ASSOCIATES LLC,Y4000\nHALE AGRICULTURAL SER,,A4000\nPRESIDENT,CREWS ENVIRONMENTAL,Y4000\nPresident,Img Ascot Financial Services,F0000\nPHILIP M DAMASHEK PC,,K1000\nVice President of Pr,The Golf Channel,C2200\nECHO PHYSICIAN GRP,,Y4000\nConsulting Engi,Braun Intertec Corp,Y4000\nCEO,HT GROUP LLC,Y4000\nDEVELO,COMMUNITY INVEST. STRATEGIES,F4200\nGENERAL COUNSEL,POLY-AMERICA,M1500\nINSURANCE AGENT,CIGNA,F3100\nCEO,RECKSON ASSOCIATES,F4000\nGOVERNMENT RELATIONS CONSULTANT,\"DYNAMIC CHANGE GROUP, LLC\",Y4000\nBUSINESS ANALYST,TEXANS CREDIT UNION/BUSINESS ANALYS,F1300\nMusic Publisher,Universal Music Group,C2600\nAttorney,Varner Brandt LLP,K1000\nSELF-BUSINESSMAN,,Y4000\nSMITH BUCKLIN & ASSOCIATES,,Y4000\nENGINEER,CKE GROUP,Y4000\nGOVERNMENT AFFAIRS,WASHINGTON STATE ASSOC FOR JUSTICE,K1100\nPRESIDENT,JAMES CRAIG BUILDERS INC,Y4000\nORCHARDIST,EVANS FRUIT,A1400\nSMITH EQUITIES CORPORATIO,,Y4000\n\"Chief Executive, President\",Bancroft NeuroHealth,H1130\nVICE PRESIDENT,PARSONS & WHITEMORE,A5200\nPRESIDENT & CEO,THE BOEING COMPANY,T1200\nVP HUMAN RESOURCES,US STEEL CORP,M2100\nMANAGER,PAYSOURCE,J1100\nLawyer,Baker & McKenzie LLP,K1000\nDEPT OF INTERIOR,,JE300\nAttorney,Edwards and Taylor LLC,K1000\npublic affairs,self-employed,F2000\nAttorney,\"Campbell & Levine, LLP\",K1000\nSOFTWA,DENVER INTERNATIONAL AIRPORT,T1600\nCALIF DEPT & FORESTRY /FI/FORESTER,,J1100\n\"MONOLIAL INT'L CORP\",,Y4000\nJAMES A ZURICK ESQUIRE,,K1000\nNeuro-surgeon,NeuroScience Center,H1130\nCHAIRMAN & FOUNDER,RESMED INC,H4100\nCONTRACTOR,\"LONE STAR UTILITIES, LLC\",Y4000\nECONOMIC DEVELOPMENT CORP OF GREATE,,Y4000\nEconomist,Harvard Business School,H5100\nPHYSICIAN ASSISTANT,ZYDECO HEALTH,Y4000\nRESTAURANTUER,PIER 4,Y4000\nBUSINESS DEVELOPMEN,CATALYST MOBILE,Y4000\nSOCIAL WORKER/ THERAPIST,SELF-EMPLOYED,J7400\nCLIFT BUICK-PONTIAC-GMC,,T2300\nPETROLEUM ENGINEER,TOWER ENERGY,E1000\nDELVAL BUSINESS FINAN CORP,,Y4000\nCFO,THE CONNELL COMPANIES,A1000\nPRESIDENT,FLEMING BUILDING CO.,Y4000\nCONTROLLER,HOLLANIA FLOWERS,A8000\nEXECUTIVE DIRECTOR,BALTIMORE COMMUNITY FOUNDATION,Y4000\nPlanner,State of Minnesota,X3000\nPOLAN-CULLEY,,Y4000\nOwner,Rancho La Puerta Spa & Resor,T9300\nJ&B REAL ESTATE,,F4000\nVP,High Valley Group,Y4000\nSENIOR VP,WHEATON & ASSOC.,K2000\nPRESIDENT AND COO,RODALE PRESS INC,C1100\nCHIEF EXECUT,BANKIER COMPANIES INC.,Y4000\nROBB EVANS AND ASSOC,,Y4000\nSELF-EMPLOYED/AUTHOR/FACILITATOR,,C1100\nexecutive,Florida Cystals Corp,Y4000\nVICE PRESIDENT,F.P.L.,Y4000\nPLUMBERS & PIPEFITTERS LOCAL 422,,LB100\nOIL AND GAS EXPLORATION,SELF,J1100\nCONNER DEVELOPMENT CO,,F4200\nPresident,DAVIS BANCORP,F1000\nUS PUB HLTH SERV,,G2900\nDALE ROGERS TIMBER CO,,A5000\nJIM HOGGS COUNTY ENTERPR,,Y4000\nTEACHE,HOWARD COUNTY PUBLIC SCHOOLS,X3500\nCo-President,MARCHION EYEWEAR,M9100\nINSURANCE AND SAFETY CONS,RISK CONSULTING ASSOCIATE,Y4000\nATTORNE,\"HOEGEN, HOEGEN & KELLY, LLP\",K1000\nEnvironmental Depart,\"CTL Engineering, Inc.\",B4000\nEXECUTIVE,MN SPORTS & ENTERTAINMENT,Y4000\nALABAMA PUBLIC LIBRARY SE,,X4200\nCOKER BUICK,,T2300\nADMINISTRATIVE AS,AG ACCOUNTING LLC,Y4000\nFEDERAL CIVIL SERVICE,DEFENSE POW/MISSING PERSONNEL OFFICE,Y4000\nteacher,common school,Y4000\nREAL ESTATE BROKER,\"PROMINENT PROPERTIES SOTHEBY'S/REAL\",Z9500\nLENNOX INDUSTRIES,,B3400\nAttorney,Twiggs Beskind Strickland,K1000\nSENIOR PARTN,SILVER GOLUB & TEITELL,K1000\nGIBBENS ENGINEERING,,Y4000\nD M WHITE CONSTRUCTION CO,,B1000\n\"LIEFF, CABRASER & HEIMAN\",,J7300\nLAWYER,ORIENT-EXPRESS HOTELS/LAWYER,T9100\nLawyer,George & Brothers,K1000\n\"Ceo, CCO\",\"Northstar Asset Management, Inc\",Y4000\nFinancial Counselor,Family Service Roche,Y4000\nRealtor,Badger Realty,F4200\nATTORNEY,UNIVERSITY OF DENVER STURM COLLEGE OF,H5100\nPHYSICIAN,SCOGGIN VALLEY HOSPITAL,H1130\nWINDES & MCCLAUGHRY,,Y4000\nOwner/Principal/Partner,\"Don Klausmeyer Const, LLC\",B2000\nOwner,\"Cicchini Enterprises, Inc.\",Y4000\nOHIO HEALTH,,H2100\nVolunteer,n/a,J1200\nOffice Supervisor,The Health Law Firm,K1000\nAttorney,Rennillo Court Reporting -,G5200\n\"STRAND DEVELOPMENT COMPANY, LLC\",PRESIDENT,G0000\nMEDIA CONSULTANT,C4CS LLC,Y4000\nBARON FINANCIAL GROUP LLC,,Y4000\nREAL ESTA,COMBINED INVESTMENTS L.P.,F4200\nPRESIDENT & CEO,PROLIST INC.,Y4000\nHANDLEMAN CO,,M4000\nRealtor,\"Bird Realty, Inc.\",F4200\nVICE PRESIDENT,HAWKEYE BANCORP,Y4000\nOPC HOLDINGS,,E1110\nSANITATION SERVICES CO INC,,E3000\nHENDRICKS INST INC,,Y4000\nceo,Synchrony Yachts,Y4000\nOWNER,AUDIO VIDEO AUTOMATION SECUIRTY INC.,Y4000\nAttorney,FINRA,Y4000\nAttorney,\"O' Connor & Hannah\",K2000\nDeveloper,KRR Construction Inc.,B1500\nPrincipal,The Bowmark Consulting Group,Y4000\nATTORNEY,WILSON FRAME BENNINGER & METHENEY,K1000\nOWNER,MABRY HEALTH CARE,Y4000\nOWNER,RIVERSIDE BOX SUPPLY COMPANY,M7100\nATTORNEY/PARTNER,\"GOLDMAN & ROSEN, LTD.\",K1000\nMANAGEMENT CONSULTAN,SIGMA ASSOCIATES,G5270\nATTORNEY,DAVID & HARMAN LLP,J7300\nPHYSICIAN,MONMOUTH MEDICAL IMAGING/PHYSICIAN,Y4000\nACTOR,JOSEPH FLANIGAN,Y4000\nCOB,THE FRIED COMPANIES INC.,F4200\nOwner,\"Ashe's Package Store\",Y4000\nOIL AND INVESTMENTS,SELF EMPLOYED,E1100\nBUSINESS OWNER,CAID IND.,Y4000\n\"WELKER'S INC\",,Y4000\nPharmacist,Riteaid,Y4000\nRUBINOFF COMPANY,,Y4000\nENGINEER,\"E-MERGE SYSTEMS, INC./ENGINEER\",Y4000\nATTO,LAW OFC. OF LEMBHARD G. HOWELL,K1100\nPRESIDENT,ARROWAY CHEVROLET CADILLAC,T2300\nBanilen,JP Morgan,F1100\nMOROZE SHERMAN GORDON ET AL,,K1000\nMANAGER;,AMERISOURCEBERGEN SERVICE,H4400\n\"PRESIDENT, PUBLIC A\",Capital Results,Y4000\nJUDG,RECORDERS COURT -RETIRED JUDGE,X1200\nSPOUSE OF MEMB,MASTER BUILDERS INC.,B5100\nExecutive,Soros Fund Managment,J7150\nChairman,Schooner Capital,F0000\nATTORNEY,RIDENOUR HIENTON & LEWIS L.L.C.,K1000\nOrganizational Development Director,Intel,C5110\nSULLIVAN LAND & CATTLE CO,,A3000\nAMERICAN INDUSTRIAL PARTN,,J1100\n\"CHUNG'S ENTERPRISES INC\",,Y4000\nPARTNER,BEGALA-MCGRATH LLC,G5200\nEXECUTIVE OFFICER,ZIONS BANK,F1100\nSUPREME TRANSIT MIX INC,,Y4000\nBUSINESSMAN,PMI MORTGAGE INS. CO.,F3100\nSELF-EMPLOYED/IMPORTER/ ELECTRONICS,,G4200\nPOLITICAL CONSULTANT,VICTORY 2002,J1200\nMICRO SERVICES OF NEW ENGLAND,,Y4000\nADMINISTRATOR,NORTH WARD DAY CENTER,Y4000\nLawyer,Mpaa,Y4000\nPresident,\"AVISO, INC.\",B1500\nOWNER,VELOCITEACH,Y4000\nASSSEMBL,ASSSEMBLYMAN 11TH DISTRICT,Y4000\nCatholic Priest,Diocese Of Victoria,X7000\nRESEARCH ENGINEER,DRAPER LABORATORY,Y4000\nPRESIDENT,APW CONSTRUCTION COMPANY,B1500\nWOTV-TV,,C2100\nSECURITY BANK,,A8000\nALASKAN SEAFOOD,CEO,G2300\nRegional Financial C,\"Itt Industries, Inc.\",C5000\nPresident & CEO,\"Suffolk Construction Company, Inc\",B1500\nRETAIL,SELF,A0000\nDLA Piper,,J7400\nPresident,San Gabriel Valley Municipal Water Com,E5000\nTOLEDO CLINIC INC,,H1100\nCOLOR-RITE BLDG SUPPLY,,Y4000\nREALTOR,EVERS AND COMPANY,Y4000\nSr. Technical Info.,3M,M2300\nPHYSICIAN,EMERGENCY CARE SPECIALISTS,J1100\nBUILDING DEV,DOUGLASTON DEVELOPMENT,F4100\nDIRECTOR ONLINE MARKETING,WELLSTAR HEALTH SYSTEM,H0000\nFLAGSHIP,LORD FLETCHER,Y4000\n\"Levy, Stern & Ford\",,K1000\nRestaurant & Pizza,Self-Employed,G2900\nATTORNEY,MCCARTY LEONARD,Y4000\n\"SHANNON, MARTIN, FINKELSTEIN & ALVA\",,Y4000\nOwner,Restaurant Cupeo,G2900\nHomemaker,Housewife,Y1000\nOwner,GNL,Y4000\nOWNER,CRESCENT DEVELOPMENT LLC,Y4000\nATTORNEY,CLEARY GOTTLIEB,K1000\nAttorney,Davis Birnbaum And L,K1000\nJET COMPOSITES INC,,Y4000\nPRESIDENT,RPS PLAN ADMINISTRATORS,F5500\nCHECKMATE EXTERMINATING,,Y4000\nIS/IT MANAGER,\"BREHM COMMUNICATIONS, INC.\",C1100\nself employed,self,Y4000\nCLINICAL PSYCHOLOGIST,\"BIRD OF PARADISE PSYCH, SERV., P. A.\",Y4000\nOffice Manager,Teresi Trucking,T3100\nGARMARK ADVISORS LLC,,F2100\nPIMCO,,F2100\nAMERICAN RE INSURANCE CO,,F3400\nOFFICE ASSISTANT,LANSING NEUROSURGICAL ASSOCIATES,H1130\nTHE AMI SOLUT,MANAGEMENT CONSULTANT,Z9500\nMANAGEMENT CONSULTIN,PRESCENDO CONSULTING LP,Y4000\nACEO,TWP. OF WNY,Y4000\nTreasurer,Fire Control Systems Incorpora,Y4000\nOWNER/PRINCIPAL/PARTNER,RUPING COMPANIES,B2000\nANTON FRITSCH INC,,Y4000\nattorney,\"Opence, Inc.\",Y4000\nB. MARCUS/PRIVATE CHEF/HOUSEHOLD MA,,Y4000\nPARTNER,\"DOWLING & O'NEIL INSURANCE AGENCY\",F3100\nCo-Chief Executive O,Office Tiger,Y4000\nSMALL BUSINESS EXECUTIVE,ZULAHOO INC.,Y4000\nVICE PRESIDENT,COLDATA INCORPORATED,F5200\nEngineer,THE Aerospace Corporation,T1700\nCEO,PEGASUS GROUP,G5270\nHOPE HAVEN RETIREMENT HOME,,Y4000\nAffordable Housing F,MMA Financial,F4100\nSTEINMART INCORPORATED,,G4300\nBusiness Owner,\"ACC, Inc\",Y4000\nPRESIDENT,OBERLIN FARMS,A2000\nClient Support Center Specialist,Target Corporation,G4300\nATTORNEY,COX SMITH MATTHEWS,Z9500\nRETIRED,RETIREE,J1100\nScheduler,Diedrich for Congress,J1100\nVICE PRESIDENT C.F.O.,DELPHINUS ENGINEERING INC.,B4400\nAttorney,Daniel C. Harkins Atty. at Law,K1000\nNurse Practitioner,Ozark med Center,H2100\nUNION PUMP,,Y4000\nPresident,Carr Public Affairs,Y4000\n\"CHILDREN'S HOSPITAL & RESEARCH CENT\",,H2100\nPsychotherapist/Social Worker,Self employed,Y4000\nExecutive Vice President,Nokia,C4000\nCEO,GRIFFIN INDUSTRIES,G2100\nCOMPUTER,\"NEW LABOR STRATEGIES, INC.\",Y4000\nINTEGRATED ELECTRONIC,,Y4000\nSUPER SERVICE OIL COMP,,E1100\nLABOR ARBITRATOR,SELF,J5100\nCFO,BELL SOUTH,C4100\nAttorney,Robbins Geller Rudman & Dowd LLP,K1100\nWORRELL PASSANANTI & RADOCCIA,,F2100\nTransit Activist,Bay Rail Alliance,J1200\nCareer Counselor,Univeristy of Pennsylvania,H5170\nKIRBY CORP,,T6200\nATTORNEY,ENTREPRENEUR,G0000\nCOO,US XPRESS,Y4000\nSALES MANAGER/OWNER,QUALITY MEDICAL SOUTH,Y4000\nOPINION,PRECISON OPINION,G5280\nPRINCIPAL,ROBERTS RAHAB & GRADLER LLP,K2000\naccount manager,Merrill Lynch,F2100\nWALKINGSTICK INVESTMEN,,F3100\n\"AEGIS TECHNOLOGIES, LLC\",,Y4000\nOwner,Stewar Industrist,J1200\nISAAC COMPANY,,M2400\nattorney,\"Stewart and DeChant, Co., L.P.A.\",Z9500\nExecutive,Unemployed,C5140\nphysician,Tallahassee Orthopedica Clinic,H1130\nQU-BAR INC,,Y4000\nPRESIDENT,SUAREZ SCARPA PAINTING,B3000\nUNIVERSITY OF COLORADO & SELF,,H5100\nProfessor,Univesity of California,H5100\nPRESIDENT,MYHREN MEDIA,C2200\nEQUAL JUSTICE WORKS,,J1200\nPHARMACIST,TYSON PHARMACY,G4900\nRSM,PEPSI BOTTLING VENTURES,G2600\nC.P.A.,ADVANCED PRACTICE MANAGEMENT,Y4000\nOWNER - VP,BRUNEL CORP.,Y4000\nRetired,State of Iowa,X3000\nComputer Progammer,Edward R. Hamilton,J1200\nCANDIDATE FOR SENATE,,J7400\nMEDIA B,MEDIA STRATEGIES & RESEARCH,J1200\nSHAR,KLINEDINST FLEIHMAN & MCKILLOP,K1000\nLawyer,\"Drans, Elsen, and Lupert\",K1000\nOPTOMETRIST,INTEGRATED EYECARE,Y4000\nVICE PRESIDENT,BJ TRANSPORT INC.,Y4000\nOPERATION SPECIALIST,SEMTRONIX INC.,Y4000\nCEO,COMMUNISPACE,J1200\nSOFTWARE ENGINEER,META MATRIX,Y4000\nPresident,Sdi Insulation Inc.,B3000\n\"THE PRODUCER'S ADVANTAGE\",,A1400\n\"SCARINCI & HOLLENBECK, LLC\",,K1000\nLIFE INS,HEASE LAGAIA EDEN & CULLEY,F3300\nSENIOR LECT,HARVARD BUSINESS SCHOOL,H5100\nOF COUNS,\"ICE MILLER STRATEGIES, LLC\",K2000\nW J SCHAEFER,,Y4000\nLEMER HEIDENBERG,,Y4000\nOWNER,ASSOCIATED INVESTIGATORS,G5290\nHorses,Self-gsh Corral,Y4000\nMANAGING PARTNE,FOURSOME PROPERTIES,F4000\nSecretary,CC Top,J1200\nDIREC,CITY OF SAN ANTONIO AVI. DEPT,T1600\nTreasurer,Herman Northwest In,Y4000\nPRESIDENT,HIGHLAND CAPITAL MANAGEMENT,F2100\nCEO,RLMFINSBURY,Y4000\nEngineer,Self,B3200\nGENDRON & KIRBY,,Y4000\nBARINGS ASSET MGMT,,F2100\nLAW STUDENT,KPMG,F5100\nBOOK DESIGNER,UNIVERSITY OF MICHIGAN,H5100\nATTORNEY,COXGOUDYMCNUTTY & WALLACE,K1000\nA F STERLING & CO,,J5100\nOAKLAND COUNTY,,X3200\nCEO,\"TEXASCAPES, INC.\",Y4000\nPRESIDENT/CEO,B J BUILDERS INC/PRESIDENT/CEO,B2000\nCONSULTANT,ROBERT+WHITE LLC,K2000\nPUBLIC AFFAIRS,EXXON MOBIL CORP,E1110\nCOO,MOUNTAINVIEW HOSP,H2100\nPRESID,BAE SYSTEMS HAWAII SHIPYARDS,Y4000\n\"KERRICK, SILVORS, COYLE, AND VANZAN\",,Y4000\nINTERINZIX TECHNOLOGIES INC,,Y4000\nPRESIDEN,INSTITUTE OF INTERNATIONAL,Y4000\nFounder/President,Poe Realty and Auction,F4200\nPRESIDE,\"DIFUSION TECHNOLOGIES, INC.\",Y4000\nANALYST,JOHNSON TIMBER CORP,A5000\nAttorney/Professor,Wayne State University,H5100\nInformation Requested,Quality Glove Inc,Y4000\nTIRE DEALER,WESTMORELAND TIRE CO.,T2200\nCEO,Package All Corp,Y4000\nDUSABLE INC,,B4000\nPsychiatric Nurse Manager,Hospital,J1200\nNOTRE DAME UNIVERSITY,,H5100\nAttorney,Miller Rosnick et al,K1000\nEXECUTIVE,DEPINE ASSOCIATES,Y4000\nSECRETARY,LIBERTARIAN PARTY OF POLK CO,Y4000\nVP OF FINANCE,ENTERPRISE HOLDINGS/VP OF FINANCE,T2500\nOwner,Liquor Stop,G2840\nattorney,san francisco bar association,Y4000\nTRIAD REAL ESTATE SERVICES INC,,F4000\nCHAIRMAN & CEO,ACE BEVERAGE CO.,Y4000\nC. E. O.,THE PARTNERS GROUP,F3100\nJENSIK INS,,A4000\n\"ERC, INC./PRESIDENT/CEO\",,Y4000\nDARBY DEVELOPMENT COMPANY INC,,F4100\nKRASNOW ENTERTAINMENT,,Y4000\nProject Management Consultant,Cuthbertson Project Management,Y4000\nENGINEER,INTEL CORPORATION/ENGINEER,C5110\nTrader,Kotke Associates,Y4000\nPR,HIGH ROAD FUNDING,Y4000\nTeacher,Cabriril College,H5100\nCHIEF OPERAT,UVA SCHOOL OF MEDICINE,H5150\nBANK DIRECTOR,NATIONAL FRANCHISEE ASSOCIATION,G1000\nAttorney,McNicholas & McNicholas,K1000\nCEO,CREATION CAPITAL LLC,F0000\nOwner,Wagenbrenner Company  Real Est,F4000\nSELF-EMPLOYED,,M2300\nCLEMONS INC,,Y4000\nVICE PRESIDENT,BANKTEL SYSTEMS,J1100\nSR A,UNIV. OF PITTS. MEDICAL CENTER,H2100\nBANCROFT CONTRACTING,,Y4000\nRFG GENERAL CONTRACTORS INC,,B1000\nattorney,\"Kizer, Hood & Morgan, LLP\",Y4000\nPRINCIPAL LOBBYIST,PUTALA STRATEGIES,K2000\nLIVESTOCK FARMER RANCHER,,A3000\nPITTSBURGH STEELERS SPORTS INC,,G1300\nAttorney,Clark Burnett,K1000\nREAL ESTATE DEVELOPMENT,THE CORNERSTONE GROUP,Z9500\nCATTRELL MOTOR CO INC,,T2300\nMENDEL REALTY,,F4200\nINVESTMENT MANAGEMENT,STEELRIVER INFRASTRUCTURE PARTNERS,Z9500\nHEALTH CARE ADMINISTRATOR,CHI,Y4000\nCABLEVISION SYSTEMS CORPO,,C2200\nPresident,Bay Area Escavating Inc,B3600\nCAMPAIGN,MIKE THOMPSON FOR CONGRESS,X3000\nPhysician,\"Children's Eye Clinic\",Y4000\nCONGRESSMAN/GOVERNMENT RELATIONS,CAPITOL HILL CONSULTING,K2000\nExecuitve Advisor,Category One Inc,Y4000\nPRESIDENT,LEM COR INC.,Y4000\nRETIRED,PCSD ROCHESTER NY,Y4000\nGERRISH BEARING & INDUSTRIAL SUPPLI,,M2300\nTeacher,Mounds Park Academy,H5100\nAssociate Vice Presi,New York University,H5100\nSECRETARY,QUALITY AUTOMOTIVE DIST.,Y4000\nBARINGTON CAPITAL GROUP LP,,F2100\nVALERIAN FINANCIAL SERV,,Y4000\nELI LILLY AND COMPANY/SR VP/GENERAL,,H4300\nLUCAS DEVELOPMENT CORP,,Y4000\nEXEC,NATIONAL DISTRIBUTING CO. INC.,G2850\nEALY PROPERTY MGMT DAVID,,B2000\nATTORNEY,LEWIS GLASSER CASEY ROLLINS,K1000\nATTORNEY,P.H.M.Y.,Y4000\nMEDIA ARTIST GROUP,,Y4000\nCOO,SHEARLINE GOLF,Y4000\nINSURANCE BROKER,RYAN SPECIALTY GROUP,Z9500\nENGINEER US EPA,US GOVT,X3000\nATTORNEY,\"KENNEDY JOHNSON D'ELIA GILLOLEY\",K1000\nTELECOMMUNICATIONS,RETIRED,X1200\nCertfied Public Acco,Self-Employed,G0000\nAttorney,\"Joseph Smith, Ltd.\",K1100\nSTRUCTURAL STEEL CO,,Y4000\nOWNER,ROBINSON`S DRIVING RANGE,Y4000\nREGIONAL TECHNICAL MANAGER,SATELLITEHEALTHCARE,Y4000\nCONSULTING ENGINE,DELTA ENGINEERING,B4400\nTUYCHING SL,SELF,Y4000\nSCOTTSDALE AIR PARK NEWS,,Y4000\nConsultant,Ceisler Jubelirer,Z9500\nC R GOODMAN COMPANIES,,G2850\n\"MMI PRODUCTS, INC./PRESIDENT/CEO\",,B5100\nSTEWART LUMBER LLC,,F1100\nINVESTOR/RANCHER,SELF-EMPLOYED,G0000\nVILLAGE OF CARPENTERSVILLE,,T8100\nVice President of La,Adelphia,C2200\nVP SENIOR SER,AMERIGROUP NEW MEXICO,H3700\nCEO,Roger Long Marine Architecture,B4200\nMACHINIST,SSI,Y4000\nGENERAL VASCULAR,,Y4000\nGRANITE CAPITAL INTL,,F2100\nConsultant,\"Ledge Counsel, Inc\",K2000\nVICE PRESI,ANTAEUS ENTERPRISES INC.,Y4000\nBUSINESS ADMIN,SOUTHWEST DIAGNOSTIC,Y4000\nRisk Analyst,Ing Direct,F1100\nClvs,,Y4000\nAMERICAN GREETING CO,,C1400\nHIGH SCHOOL TEACHER,CULVER CITY UNIFIED SCHOO,X3500\nOwner,41 Auto Svc.,T2000\nIT,West Side Federation,Y4000\nVP FINANCE,BLUE SKY STUDIOS,C2400\nPRESIDENT,TARRANT ABSTRACT,K1000\nOWNER,PATTERSON WELDING WORKS,Y4000\nManagement Consultan,Medallurgy Llc,Y4000\nMACON COUNTY GOVERNMENT,,X3000\nBOATS,IBERIA MARINE SERVICE/BOATS,Y4000\nPresident,AETS Partners,Y4000\nSeafood,\"Nova Fisheries, Inc\",Y4000\nRegistered Nurse,\"St. Mary's Med C\",J1200\nAttorney,\"Powers, Crane & Vacco\",K1000\nATTORNEY,KHHTEF,Y4000\nROBINSON WETTRE & MILLER LLC,,K1000\nEXECUTIVE,\"JSR MICRO, INC.\",Y4000\nSENIOR VP INFORMATION S,FREDDIE MAC,F4600\nS.V.P.,N.Y.S.E. GROUP,F2400\nRETIRED ENGINEER,SIMMONDS PRECISION,Z9500\nLAREDO BEAUTY COLLEGE/OWNER/DIRECTO,,Y4000\nBUSINE,SHEET METAL WORKERS LOCAL 66,LB100\nDAVIE CONSTRUCTION CO,,B1500\nACCOUNTANT,\"VIASOURCE FUNDING GROUP, LLC\",Y4000\nDIRECTOR OF HEALTHY SAN FRANCISCO,SAN FRANCISCO DEPT OF PUBLIC HEALTH,X3000\nsoftware,none,C5120\nOWNER,AMPERE AUTOMOTIVE,Y4000\nChief Executive Officer,Heico,Y4000\nLecturer,Tufts University,H5100\nNaval Architect,The Navy,X5000\nChief Operating Officer,Carilion Health System,H2100\nADMINISTR,CHICAGO ASSOC OF REALTERS,F4200\nATTORNEY,LENS CRAFTERS,Y4000\nCARR KOREIN TILLERY ET AL,,Y4000\nBUSINESS OWNER,\"ACCESS ONE, INC.\",Y4000\nPartner,Myrtle Beach National Company,Y4000\nSELF-EMPLOYED,JACK MATIA HONDA,Y4000\nEXECUTIVE SE,HEARTLAND TANNING INC.,G5000\nPhysician,Hughes Clinic,H1100\nPresident,\"Albany Home Loans, Inc\",F4600\n3 M/VP/HEALTH CARE MKTS,,M2300\nVA COMMONWEALTH UNIV,,J7400\nATTORNEY,SELF AND CREATIVE CAPITAL INC.,Y4000\nL&T PROPERTIES,,F4000\nEXECUTIVE,LOAN GIANT.COM,C5140\nretired,northwestern mutual life,Z9500\nENVI RESOURCE,,Y4000\nYORDIE SMITH ET AL,,B1500\nBINKLEY & OBER INS,,B5100\nOWNER,STONE OIL DISTRIBUTORS,E1100\nGENERAL COUNSEL / VICE PRESIDENT,POLSINELLI SHUGHART,K1000\nCONSULTANT,ABBOTT LABEL,M7000\nREP TOM HICKNER,,X3000\nRETIRED MUSIC PULISHER,SELF,X1200\nPRESID,E.T. & L. CONSTRUCTION CORP.,B1000\nPresident,First Advantage,F5200\nBROKER,\"THE TRUSTY COMPANY, INC.\",F3200\nATLANTA BRAIN AND SPINE CARE,,Y4000\n\"Executive VP, HR & Support Services\",The Stop & Shop Supermarket Company,G2400\nLAWYER,BAKER MCKENZIE LLP,K1000\nATTORNEY,HUNOTN & WILLIAMS LLP,K1000\nAGRICULTURE/REALESTATE,DAVIS RANCHES,A1400\nExecutive,Robison International,K2100\nENGINEER,M.A.T.,Y4000\nPRESIDENT & CEO,\"SAINT PETER'S UNIVERSITY HOSPITAL\",H2100\nREAL ESTA,PRUDENTIAL FOX & ROACH-NT,F4200\nMechanical Engineer,Avid Engineers,B4400\nPHYSIC,TEXAS SPINE & JOINT HOSPITAL,H2100\nCEO,KNIGHT CAPITAL,F2100\nBUCHANAN INGERSOLL,,J7150\nOWNER/DR HOME ADD:12403 COOPERS LN WOR,CECIL VISION CARE INC,Y4000\nProduction,Self Employed,E1120\nMusician,self-employed,Z9500\nPHYSICIAN,COUSLINOS PATHOLOGY GROUP,H1130\nEXECUTIV,LAKE PLACID VACATION CORP.,Y4000\nPRESIDENT/CEO,SANFORD HEALTH/PRESIDENT/CEO,J6200\nINVESTMENT BANKER,MHT MIDSPAN,Y4000\nOFFICE MANAGER,BAZIAK & STEEVENS,Z9500\n\"Director, Corporate\",Questar Corporation,E1140\nSr VP Commercial,Corning Incorporated,C5110\nRegistered Nurse,Sun Health Boswell Hospital,H2100\nConsultant,\"Self -  Sagawa, Jospin\",G5200\nGOVERNMENT AFFAIRS CONSULTANT,\"COX, SMITH, MATTHEWS\",K1200\nELECTRICK F,TURBO JET PRODUCTS INC.,M5000\nUNIVERSITY R,UNIVERSITY OF MICHIGAN,H5100\nPartner,\"Libitzky Holding, LP\",Y4000\nCHAIRMAN,TEXAS EASTERN PIPELINE,Y4000\nPARTNER,3CLICK SOLUTIONS,Y4000\nCARDIOLOGY,PORTLAND CARDIOLOGY P A,H1130\nREYNOLDS & CO,,J7400\nRAINBOW ENTERPRISES,,Y4000\nPharmacuetical Consultant,State of California,X3000\nRetired,City Alexandria,Y4000\nRESEARCH,ORNL,Y4000\nPHYSICIAN,CLARION MEDICAL SERVICES,H1100\nSIMKINS INDUSTRIES,,Y4000\nCEO,HRI PRPERTIES,F4000\nCONSTRUCTION,BQC,Y4000\nBaker & Mckenzie,,K1000\nAttorney,\"Gallon & Takacs Co., L.P.A.\",K1000\nPROGRAMMER,CITIGROUP/PROGRAMMER,F1100\nTECH WRITER,SYSTEMS PLUS INC.,Y4000\nOWNER,Q 10 CONTRACTING LLC,Y4000\nPARTNER,AVANTOR PERFORMANCE,Y4000\nINVESTOR,GLOBESPAN CAPITAL,F2500\nRENTAL MANAGER,GOODMAN GROUP INC,F4500\nExecutive Officer,Sirius,Y4000\nHARLAN COUNTY KENTUCKY,,X3000\nSTRICTLY CAR SERVICE,,T4100\nAdministrator/Psycho,\"Bible Study Time, Inc.\",X7000\nBLACK,,Y4000\nRETIRED,ROCK VALLEY COLLEGE,J6200\nWATER FURNACE,,Y4000\nAttorney,Stoll Stoll Berne Lokting and Shlachte,Y4000\nDEVELOPMENT MANAGER,Newland Communities,Y4000\nPRESIDENT,HALL FINANCIAL GROUP,F2600\nCORP DEV,FACEBOOK,Z9500\nSAND OIL,,E1100\nOWNER,ALPHA PACKAGING/OWNER,M1500\nPRINCIPAL,MINAHAM COMPANIES,Y4000\nAdministrator,San Jose State Univ,H5100\nCRAFTSPERSON,,J7150\nPhysician,Case Western Reserve Universit,H1000\nEXECUTIVE,AMERICAN WATERWAYS,G6100\nBELL & BELL ASSOC,,K1000\nSKADDEN ARPS SLATE MEADILI & FLOM L,,K1000\nMARSHALL UNIVERSITY SCHOOL OF MED,,H5150\nJ & DC CONSULTANT INC,,Y4000\nTRANSPORTATION,TRANSLOGISTICSINC,Y4000\nGovt relations,Spradley & Spradley,K2000\nRock Creek Manor Nur,Information Requested,Y4000\nChief Financial Offi,Rogers Group Inc.,B5100\nLAWYER,LOEB AND LOEB,K1000\nPresident,Ranlin Construction Co.,B1500\nSenior Vice President  Customer Operat,Mediacom Communications Corp,C2200\nPICTEL,,Y4000\nMARKET PRESIDENT,\"AN CENTRAL REGION MGMT., LLC\",T2300\nBROIDY CAPITAL MANAGEMENT FINA,,F2100\nDirector - Electric,Black Hills Corporation,E1600\nSELF-EMPLOYED,H-TWO PROPERTIES,Y4000\nAttorney,Coan And Lyme,K1000\nPresident,Flah & Co,F3100\nINFO REQUESTED,Ben Atkins Consulting Llc,Y4000\nNATIONAL ASSOC OF THEATRE OWNERS,,C2700\nOWNER,NATIONAL REALTY CORPORATION,F4200\nconsultant,Capitol City Partners,Y4000\nCONSULTING,\"REESE PARTNERS, LLC\",Y4000\nPROFESSOR EME,\"U. OF TOLEDO, RETIRED\",J1200\nRestaurateur,Kentucky Fried Chicken,G2900\nMETALINK MARINE CORP,,T6000\nAttorney,\"Levin, Simes & Kaiser, LLP\",K1100\nOWNER,FOX HILLS TOWING,J1100\nCONTINUED CARE OF L I,,Y4000\nMUNICIPAL POLI,CITY OF PHILADELPHIA,X3000\nOWNER,AMERICAN GRATING,M7200\nPRESIDENT,\"THF REALTY, INC.\",J5100\nSENIOR VICE PRESIDENT ENGINEERING OPER,WMS GAMING INC.,G6500\nSENIOR VP OF CORP. RELATIONS,NORTHEAST UTILITIES,E1600\nMAGICIAN/ENTERTAINER,Self employed,G0000\nS CONSTRUCTION,,B1500\nRECORDING STUDIOS - OWNER,SELF-EMPLOYED,Y4000\nGEORGE L LANDRESS DDS PC,,H1400\nPRESIDENT,OSRAM SYLVANIA INC.,M6000\nPRESIDENT,\"BLUE FORCE GEAR, INC\",Y4000\nSignatories Representative,Directors Guild of America,LG400\nBroker,Randall Mortgage,F4600\nResearch Scientist,Memorial Sloan-Kettenny,Y4000\nTEACHER,GOSNELL SCHOOL DISTRICTS,X3500\nZACK KOSNITZKY P A,,K1000\nVP BUSINESS & WHOLESALER DEVELOPMEN,ANHEUSER-BUSCH INC.,G2810\n\"BRANCH, PIKE, GANZ ET AL\",,K1000\nOWNER,\"RIO VALLEY ENTERPRISES, INC.\",Y4000\nFARMER,\"TIDWELL'S BERRY FARM\",Y4000\nSenior VP,Cassidy & Assoc,K2000\n\"Gov't\",LACMTA,Y4000\nOwner,Valley Medical Institute Llc,H0000\nMANAGER,Empire Beauty Supply,Y4000\nATTORNEY,JOCHUM SHORE AND TROSSEVIN,K1000\nCONSULTANT,MJK CONSULTANTING,Y4000\nContractor,Graines Constuction,H2100\nSTEUR SALON FOR HAIR,,G5100\nPARTEN OIL COMPANY,,E1120\nTravel agent,Mediterranean Destinations,Y4000\nINFO REQUESTED,,M3300\nCounselor,University System of GA,Y4000\nMETZ CO,,Y4000\nEVP & MANA,HARBERT VENTURE PARTNERS,G5270\nHALL,TUCKER,Y4000\nNATIONAL PLASTIC COLOR I,,M1500\nQuality Inspector,Anheuser Busch,G2810\nLOBBYIST,RYAN PHILLIPS,K2000\nCEO,ESSEX CORPORATION,D9000\nOFFICER,\"T & T SPRINKLER SERVICE, INC.\",Y4000\nPhysician,Albany Internal Medicine,H1100\nPETROLEUM MAR,MIDWEST PETROLEUM CO.,E1170\nLURA J POWELL & ASSOC,,Y4000\nPRESIDENT,VORP CORP,Y4000\nVICE PRESIDENT,MCMANUS GROUP,K2000\nENGINEER,\"CORNING, INC.\",J1200\nFIRST FEDERAL SAVINGS OF HEG,,F1200\nCOUNSEL,\"WOLLMUTH, MAHES & DEUTSCH\",K1000\nwriter,Self-Employed,G2100\nECONOMIST,ASSOCIATION OF REALTORS,J7400\nPHYSICIAN,INTERNED CONSULTANTS,Y4000\nBUSINESS ATTORNEY,HELER EHRMA,Y4000\nEXECUTIVE,LEHIGH PORTLAND CEMENT,B5100\nGRAPHICS DESIGNER,SELF-EMPLOYED,J1200\nCEO,ISK Manhattan Inc,G2900\nDirector,Pritzker Family Foundati,J5100\nFINANCIAL PLANNER,\"JAN DOUGHTY, CFP\",Y4000\nATTORNEY,SHENKER & BONAPARTE LLP,K1000\nBROUSSARD DAVID AND DAIGLE,,K1000\nPUBLISHER,JUDD PUBLISHING CO. LLC,C1100\nCHIEF DEVELOPMENT OFFICER,PLANNED PARENTHOOD FEDERATION OF AMERI,J7150\n\"FALISCH, COTUGNO & RUST\",,Y4000\nOWNER,MARCUS FAUST,K2000\nPartner,\"Silver, Freedman & Taff, LLP\",F1100\nLANGSAM PROPERTY SERVICES CORP,,F4500\nMGR,DARLINGS,T2300\n\"VP, CORPORATE CO\",\"SES AMERICOM, INC.\",C4400\nBoard Member,Retired,E1160\nCOMMUNITY MED CENTER,,Y4000\nFounder,Rocket Paper Scissors LLC,Y4000\nPHYSICIAN,CHARLES RICCOBONO MD,J9000\nICM INCORPORATED,,Y4000\n\"GEPPI'S\",,Y4000\nDRKOOP.COM INC,,Y4000\nATTORNEY,\"RUDEN, MCCLOSKEY & SMITH\",K1000\nSCHLICHTER ASSOC,,K1000\nAttorney,Law office of Rohn & Cameron,K1100\nANESTHESIOLOGIST,UNIV OF UTAH,H1130\nLIPSEN HAMBERGER & GARRETT,,K2100\nExecutive,Bangor Savings Bank,F1200\nProperty management,SCF,Y4000\nPhysican,Group Health Cooperative,Y4000\nPresident/CEO,A & D Development,B2000\nPARTNER,HANKIN SANDMAN,Y4000\nPRESIDENT & CEO,THE BRIAD GROUP,G2900\nMARKETING,\"SOLEIL, INC\",Y4000\nOwner,Mathews Memorial,Y4000\nVILLAGES OF LAKE-SUMT,,F4100\nHARRISON PLACE,,G5000\n\"WONG'S FOREN & MTAL ENGIN INC\",,G5200\nOwner/Operator,Executive Management Services,H3000\nHomemaker/Volunteer,None,F3100\nCEO,MACKIN ENGINEERING COMPANY,B4000\nST CLAIR AUTO MALL,,T2310\nOWNER,\"SAHARA MARKET, INC.\",Y4000\nALEXANDRIA TIMES,,C1100\nOWNER,SPECTRA INC,Y4000\nINSURANCE AGENT,\"DALY-MERRITT, INC.\",F3100\nDISTRIBUTOR,MONAVIE,H3000\nDir. Fundus Retinal,University of Wisconsin,J1200\nExecutive,NYU Medical Center,H2100\nNEIGHBOR CARE PHARM,,G4900\nEXECUTIVE,\"HERMAN KAY COMPANY, INC.\",M3100\nDEPUTY DIRECTOR PURC,SANOFI PASTEUR,H4300\nATTORNEY,CHAMBERS DANSKY & MULVANIL,K1000\nOWNER,RICHMAN TECHNOLOGY CORP.,Y4000\nMental Health Counselor,VA,X3000\nanalyst,caxton associates,F2700\nRASMUSSEN CO,,Y4000\nExecutive Sales Dire,Sales Prodigy,Y4000\nNAVADIGN INC,,Y4000\nREAL ESTATE DEVELOPER,SILK & STEWART DEV. GRP.,Y4000\n\"LAZZARA, CASKEY & PAUL\",,Y4000\nTeacher,Maine School Admin District #58,J1200\nOwner,Bourn Partners LLC,F4000\nWARE COUNTY,,X3000\nEXECUTIVE,NYU MEDICAL CENTER,H2100\nN/A/HOMEMAKER,,F2600\nPastor,New Mount Calvary Baptist Church,X7000\nOFFICE MANAGER,\"RILEY LIVESTOCK, INC.\",A3000\nOwner,Things Finer,Y4000\nOPERATIONS,BLUE RIDGE ELECTRIC COOP,E1610\nSr Software Engineer,\"Britestream Networks, Inc\",Z9500\nLOBBYIST,AMERICAN CON. GROUP,Y4000\nPhysician,\"Texas Oncology, PA - Midland\",H1130\nOwner,The H M Northcutt Corp,Y4000\nNAMTOR,,J7400\nPARTNER,MOHEGAN TREETOPS REALTY LLC,F4200\nPresident,Pelican Communications,C4600\nOFFICE MANAGER,FOREST GROVE BEEHIVE,Y4000\nManager,\"John Wiley & Sons, Inc\",C1100\nENDODONTIST,\"OSCAR M. PENA DDS, MSD, PC\",Y4000\nPRESIDENT,DML VENTURE,Y4000\nPhysician Executive,Emer Med Mgt Svds of Idaho,Z9500\nDIRECTOR,BAC LOCAL #93 IL,LB100\nALAMO BARGE LUIES,,T6200\nPresident,EISC,Y4000\nIRWIN UNION CAPITAL CORP,,Y4000\nA T BROD & COMPANY,,F2100\nBUSINESS MANAGER,SOUTHWEST FREIGHT,Y4000\nDIVERSIFIED SHOPPING CTRS,,G4000\nORTHOPAEDIC SURGEON,LONGVIEW ORTHOPEDIC ASSOCIATES,H1130\nEngineer,FMSM Engineers,B4000\nEXECUTIVE,DECUTUS OR TOOM,Y4000\nMEDICAL DOCTOR,ANTHC,Z9500\nPark Manager,Texas Parks And Wildlife Dept,X3000\nAT,LAW OFFICES OF STEPHEN C. GREENE,K1000\nCONSULTANT,SELF,A1600\nPublisher,Tallfellow Press,Y4000\nExecutive,National Business Travel Association,J1100\nPHYSICIAN,WHITE PLAINS,Y4000\nTHORNTON AND NAUMES LLP,,K1100\nWACHTEN LIPTON ROSEN K,,K1000\nTeacher,Florida State University,H5100\nOWNER,LOVETT COMPANIES,Y4000\nFashion Business Owner,Ritchie Corp,Y4000\nV,GREATER HARTFORD PHYSICAL THERAPY,H1700\nTEACHE,\"CHILDREN'S HOUSE OF OLD TOWN\",Y4000\nPresident,Worcester Pusblishing Ltd.,C1100\nFINANCIAL ADVISOR,PLANNING RESOURCES INC.,Y4000\nGraduate Gemologist,\"JAMES & CO. JEWELERS, INC.\",G4100\nSENATOR,STATE OF ILLINOIS/SENATOR,X3000\nCRESTAR FINANCIAL CORP,,F1100\nEXECUTIVE V.P.,ALLIED MACHINE OF ENGINEERING CORPORAT,B4400\nRESTAURANTUER,EL AZTECO,Y4000\nVice President,\"Penn Maritime, Inc.\",T6200\nRELIABLE HOME HEALTH,,Y4000\nCHARTWELL CAPITAL INC,,F0000\nAnesthesiologist,Shady Grove Adventist Hospital,H2100\nTRIB,SOBOBA BAND OF LUISENO INDIANS,G6550\nBuilder,Arquilla Industries Inc,B2000\nCHIEF E,FIDELITY NATIONAL FINANCIAL,F4300\nMARKETING CONSULTANTS INC,,Y4000\nMANAGER,TIMBERCREEK GOLF COURSE,Y4000\nPRESIDENT,LAWLESS WELDING,Y4000\nOIL & GAS,EAGLE OIL & GAS COMPANY,E1100\nDirector,Dist. 36 Motorcycle Sports Comm.,Y4000\nReal Estate Dev.,Prairie Mgt. Dev.,Y4000\nRVC SERVICES INC,,Y4000\nPresident,First Nationwide Mortgage Lenders Llc,F4600\nCEO,Frederick Derr & Company,B1000\nODYSSEY PARTNERS,,J1200\nREGIONAL VICE PRESI,BANK OF AMERICA,F4600\nCOO,Muirfield Capital,Y4000\nPHYSICIAN,RENAL PHYSICIANS INC,Y4000\nInformation Requeste,Self-Employed,J9000\nYVFWC,,Y4000\nHealth Policy & Mana,Self employed,G0000\nLAWYER,APPLE INC.,Z9500\nGENUINE PARTS CO,,G4600\nPhyscian,Permenante Medical Group,Y4000\nORTH,MASSACHUSETTS GENERAL HOSPITAL,H1130\nATTORNEY,AKIN GUMP HAUER STRAUSS & FELD,Y4000\nRETIRED EDUCATOR,UNIVERSITY OF CALIFORNIA,H5100\nSENIOR VICE PRESIDENT,FOSTER-MILLER,M2300\nPHYSICIAN,BAB RADIOLOGY,H1130\nFOUNDER AND PRESIDENT,PEMBROKE PHILANTHROPY ADVISORS,Y4000\nCAPITAL OUTDOOR OF NC,,Y4000\nC.E.O.,CYTERRA CORP.,D8000\nPres & CEO,Brayman Construction Corp,B1000\nPRESIDENT,GIFTS SOFTWARE INC.,C5120\nUniversity Administrator,State of NC,X3000\nSurgeon,Cape Cod Plastic and Hand Surgeon Inc,H1130\nRetired County Clerk,None,Y1000\nSOCIAL WORK PROFESSOR,THE CATHOLIC UNIVERSITY OF AMERICA,H5100\nBIOLOGIST,US FISH AND WILDLIFE SERVICE,X3000\nExecutive Director,The Sol Goldman Charitable Trust,Y4000\nLAWYER,BILLING SERVICES GROUP,F5100\nDILLON REED & CO,,Z5100\nSELF,WATSON REPORT SERVICE,Y4000\nWRI,ACADIAN INSTITUTE OF JOURNALISM,Y4000\nV.P. OF MILITARY AFFAIRS,II-VI INCORPORATED,M9100\nChief Executive Officer,\"The Coeur D'Alenes Comapny\",Y4000\nWelder,Mass Fabrication Inc,Y4000\nCOLUMBUS BRICK CO,,B5100\nSALES,RXHUB,Y4000\nRETIRED,SOUND WORLD,Y4000\nSENIOR VP,AMERICAN FINANCIAL GROUP,F3100\nDHARA CONSULTING GROUP,,Y4000\nPRESIDENT,WALLACE GLOBAL FUND,JE300\nRetired,State Farm Insurance,X1200\nPartner,\"Rogers & Norman, Inc.\",F3100\nGREAT SOUTHERN UTILITY CO,,E5000\nGeneral Contractor,Bundy Company,Y4000\nSR VP SALES AND MARKETI,DUANE READE,G4900\nHOUSEWIFE\\SMALL BUSINESS,SELF,G0000\nLASER-PACIFIC MEDIA,,Y4000\nATTORNEY,KMK LAW FIRM,K1000\nOwner,Speech Therapy Services,Y4000\nVice-President,The Shelly Company,B1000\nLAWYER,\"KARP FROSH, WIGODSKY & NORWIND, P.A.\",Y4000\nCHERRY CK MORTGAGE,,J1100\nWashington Representative,Office of Governor Ronnie Musgrove,X3100\nVICE PRESIDENT,SOUTHERN CALIFORNIA EDISON,E1620\nBUTLER & ROXBURY,,Z9600\nALPERT FINANCIAL GROUP INC,,Y4000\nDIRECTOR,NY-NH HIAT,Y4000\nMANAGING PARTNER,OSPRAIE MANAGEMENT,F2700\nPARTNER,\"EXL, LLC\",F3200\nPresident,\"Entsolutions, Inc\",Y4000\nAttorney,Shartisis Friese LLP,J1200\nSales Manager,FORD MOTOR COMPANY,T2100\nBERGNER BAYETTE,,K2100\nBOULEVARD HEALTHCARE,,H0000\nDean/Faculty,Hofstra University,H5100\nInformation Requested Per Best Efforts,INFORMATION REQUESTED PER BEST EFFORTS,F2300\nCEO,WBRC ARCHITECTS & ENGINEERS,B4200\nCHAIRMAN,\"CHRISTIE'S\",F5500\nMONTAGUE BROWN,MONTAGUE BROWN,Y4000\nTHE HANOVER INSURANCE COMPANY,,F3100\nPresident,Alden Management Inc,H2200\nEnviron. Consultant,Epsilon Assoc,Y4000\nBRITE - O - MATIC MFG,,Y4000\nEDITOR,PROVINCETOWN BANNER,C1100\nAsst.District Attorn,East Baton Rouge District Attorney,K1000\nDrs Brodie And Toomey,,Y4000\nBerman baun Co-Found,Self employed,C2000\nELLIOTT ZWEBEN & STEELMAN,,K2000\nWABTEC CORPORATION,,T2200\nHOLIDAY RANCH,,A3000\nPHYSICIAN,M.S.S.B.,F2100\nENGINEER,FEDERAL AVAITION ADMINISTRATION,Z9500\nSvp and Gm Consumer Tax Grou,Intuit,C5120\nEnvironmental progra,National Wildlife Federation,J7400\nBELL,,Y4000\nVice President,TechNet,C5100\nDEVELOPENTAL CLIENT CARE,,Y4000\nBUSINESS OWNER,AUDIBEL HEARING CENTERS,J1100\nPURCHASING MANAGER,SHAW GROUP,B1000\nJUDICIAL RETIRED,RETIRED,X1200\nSELF-EMPLOYED,VETERINARIAN,A4500\nSenior VP,\"Alta Colleges, Inc\",H5200\nSOUTHERN GUARANTY INS COS,,F3100\nUNIVERSITY PROFES,TEMPLE UNIVERSITY,H5100\nENGINEER,PROCTER & GAMBLE,M1300\nBanker,Texas Bank,F1000\nATTORNEY,STOLL NUSSBAUM & POLAKOV,K1000\nPARTNER,WOLF HALDENSTEIN,K1000\nPresident and CEO,Kriebel Group,E1120\nBOYD BROS TRANSPORTATION,,T3100\nINVESTMENT,\"HOLDEN INVESTMENTS, INC.\",F2100\nPRESIDENT,OE MEYER CO,Y4000\nCO-CEO,GLOBAL WATCH BROKERS,Y4000\nMANAGER OF INTERNAL AUDIT & RISK MGMT,CALIFORNIA WATER SERVICE CO.,E5000\nCOO,NYHUS COMMUNICATIONS,Y4000\nINDUSTRIAL ENGINEERING TECH,D.O.D.,X5000\nBusiness Owner,Aurora Fine Art,Y4000\nHOECHS MARION RONSSELL,,H4300\nGELLER ASSOCIATES,SELF,Y4000\nDoctor,Center For Regenerative Medicine,Y4000\nInformation Requeste,Big Dog Wholesale Distribution,Y4000\nCLINICAL PROFESSOR,UNIVERSITY OF ARKANSAS,Z9500\nRegional Director,\"Glazer's Distributors\",G2850\nMANAGER,YUKON DOOR & PLYWOOD,B5200\nMANAGEMENT,\"HUFFMAN WELDING & MACHINE, INC.\",Y4000\nATTORNEY,KIM E WILLIAMSON PLC/ATTORNEY,Y4000\nRICHARD A EISNER AND COMPANY,,J7400\nEngineer,\"Library Technologies, Inc\",Y4000\nRetired,Executive Kimberley Clark,J1100\nRETIRED,WILLOWS BANK FARMS,A1500\nOWNER,RFB CELLULAR INC.,C4300\nHE DEVELOPMENT,,Y4000\nTutor/Sitter,Private,H2100\nINSURANCE AGENT/OWNER,SELF EMPLOYED,F3100\nMarine Transportation,West Paces Hotel Group,T9100\nPRIVATE EQUITY,TPG CAPITAL,F2600\nMELVIN-SIMON & ASSOCIATES,,F4500\nFarm Worker,Gary Roberts,Y4000\nAttorney,Dechert,J7400\nMADISON SECURITIES,,F2100\nConsultant Transport,Parker Associates Inc,Y4000\nTHE MOVING CO.,,T3100\nexecutive,SS and C tech,Y4000\nPsychiatrist,Center for Medicine and Psychiatry,Y4000\nPROGRA,SAVANNAH ARMY DEPOT ACTIVITY,Y4000\nOwner,Reschini Insurance Agency,F3100\nGEOLOGIST,SELF EMPLOYED,J5100\n\"VFH, INC\",SELF-EMPLOYED,Y4000\nOWNER,SECOM COMMUNICATIONS,Y4000\nHospital Executive,Henry Ford Health Systems,H2100\nChief Privacy Office,Next Action,Z9500\nAttorney,\"SpenceWalk, PLLC\",K1000\nERMAN TEICHER & MILL,,Y4000\nCPA,KPME,Y4000\npolicy analyst,Dept of Treasury,X3000\nPHARMACEUTICAL CONSUL,SELF-EMPLOYED,Z9500\nPHIBRO USA,,Y4000\nAttorney,Kleiner Perkins Canfield & Bye,F2500\nBIOPORT CORP.,,D9000\nINVESTORS REAL ESTATE TRUST,,F4000\nOffice Manager,\"Paul Rosenbloom, MD\",H1100\nEXECUTIVE,STIFEL NICOLAUS,F2100\nCivil Engineer,\"Salcedo Group, Inc.\",Y4000\nTOM J MOORE & SONS,,Y4000\nWriter/Screenwriter,Self,Z9500\nSocial Worker,Arlington County,X3000\nGSSA,,H1130\nExecutive,\"Farco Plastic Supply, Inc.\",Y4000\nSELF-EMPLOYED,JWS ASSOCIATES LLC,F2600\nWOOD PETROLEUM,,J7400\nATTORNEY,JAMES E. GIRARDS PC,K1000\nADVERTISING,\"FLIPBOARD, INC.\",C5140\nSALES,TUFTS HEALTH PLAN,J7400\nUS EXPRESS,,T4100\nExecutive,American Seafoods,E4100\nSALES,MCGRAW HILL,C1100\nANALYST,AEROSPACE GROUP,Y4000\nConsultant,Boston Public Secton System,Y4000\nPART TIME EMPLOYEE,AM GREETINGS,Y4000\n\"ST MARY'S UNIVERSITY\",,H5100\nEXECUTIVE,WESTWOOD ONE BROADCASTERS,C2100\nPRESIDENT,MARRIOTT CORP.,T9100\nRN,Univ of Washington Medical Center,H2100\nEARLY AND SONS CONTRACTORS,,Y4000\nPublisher,Walker & Walker Inc.,J7400\nOWNERP,WEDGEWOOD PHARMACY,G4900\nSYSTEMS ANALY,LAYNE KING CONSULTING,J1200\nVenture Capitalist,Authur P Gould & Co Inc,F2500\nLEASING REP,CULLINAN PROPERTIES,F4000\nExecutive Vice President,\"America's Health Insurance Plans (AHIP\",F3200\nCONTROLLER,OK FOODS,A2300\nJH REID CONSTRUCTION,,B1500\nMANAGEMENT RECRUITERS,,J7400\nPARTNER,HAVCO CONSTRUCTION,B1500\nPetroleum Wholesaler,\"Howes Oil Co, Inc\",E1100\nSales,Karl Storz Endoscopy,H4100\nR.E. DEVELOPER,BLAINE FETTER,F4100\nWealth Manager,Professional Asset S,Y4000\nMayor,City of Williamsburg,X3000\nTURISMO DE PR,,T9000\nSHERWOOD EQUITIES INC,,F0000\nGOLOMB & HONIK,,K1000\nSURGEON,\"GEORGE A LIU, M.D.\",H1100\nCEO-Financial Services Division,\"HCA, Inc\",H2100\nATTORNEY,WELL GOTSHAL,K1000\nWHEAT BOARD,,Y4000\nN/A/HOME MANAGER,,F5000\nASSOCIATED TRUCKING,,T3100\nAttorney,\"SuttleLaw, P.C.\",J1200\nATTORNEY,NOVINS YORK & PAGANO,K1000\nMULLIGAN MGMT,,Y4000\nFARM,DORSETT FARMS,A1000\nPresident,Paint Work Inc,Y4000\nCHAIRMAN,CODELL CONSTRUCTION COMPANY,B1500\nELECTRICAL C,FROST ELECTRIC COMPANY,B3200\nOwner,Bleeding Heart Bakery,G2100\nLIPSCOMB AND PITTS INSURANCE,,F3100\nELECTRICAL TECHNICIA,SELF-EMPLOYED,Y4000\nSENIOR VP,WELL MED/SENIOR VP,Y4000\nINVESTO,KAINTUCK CAPITAL MANAGEMENT,F2100\nADULT CARDIOLOGY,St Francis HospitalResearch and Educa,H1100\nDELOITTE AND TOUCHE,,J7150\nEducator,Institute For Study,H5100\nCUMMINGS AND LOCKWOOD,,K1000\nADMINISTRATOR,DEEP SPRINGS COLLEGE,H5100\nSr Vice President,Caris & Company,F2100\nPRESIDENT,IN RAILROAD CO.,T5100\nJ F ROBERT CO,,Y4000\nTEACHER,SOUTHWICK TOLLAND REGIONAL,Y4000\nINDEPENDENT DANCE ARTIST AND TEACHER,SELF EMPLOYED,J7400\nGeneral Contractor,Jack B Henderson Const Co Inc,Y4000\nMICRO INSTRUMENTS CORP,,Y4000\nPROFESSOR,YALE LAW SCHOOL,J7400\nEXECUTIVE DIRECTOR,KANSAS CITY CHAPTER,B1000\nC.F.O.,BRYCE CORPORATION,M7100\n,MOVLEDOOK BLAUD LEGRAUD & BRACKETT,J9000\nSPOUSE,ABOVE,Y4000\nINTERMOUNTAIN COACH,,Y4000\nOwner,Albank,F1000\nCHAIRMAN,HART GROUP INC.,F2600\nCitrus Grower,Story Groves,A1400\nRICHARD W BLISS ATTORNEY AT LAW,,K2000\nOil Analyst,Loomis Soyles & Co L,F2100\nTeacher,\"Town of Marblehead, MA\",X3000\nATTORNEY,ERISMAN & VANOGTROP,K1100\nTHEATER COMPOSER,SELF-EMPLOYED,Y4000\nSecurities Operation,Douwn Sized,Y4000\nARTIST,SELF-EMPLOYED,F4000\nATTORNEY,\"HENRY SCHILDKNECHT, ATTORNEY AT LAW\",K1000\nSOLAR TECHNICIAN,EVERGREEN SOLAR,E1500\nGRAPHIC AND WEB DESIGNER,SELF-EMPLOYED,F4000\nPRESIDENT,STONE BOND CORP.,E1150\nPRESID,PERKINS SCHOOL FOR THE BLIND,Y4000\nSHEFF LAW OFFICES,,K1000\nBusinesswoman,Connect Here,Y4000\nATTORNEY,SCHULTZ TROMBLY,Y4000\nBusiness consultant,\"The Gabriel Company, LLC\",Z9500\nBusiness Director,Te Dermatology Center,H1130\nCULLMAN & KRAVIS,,G5270\nINVESTMENT BAN,ZT GLOBAL INVESTMENT,Y4000\nGREENBRIER DEVELOPMENT CORP,,Y4000\nSIMPSON HOUSING,,Y4000\nPhysician,Raleigh Neurosurgical Clinic,H1130\nVICE PRESIDENT,MULTICARE HEALTH FOUNDATION,Y4000\nCORPORATE MANAGEMENT SVC,,Y4000\nAttorney,Pellegrini Seeley Ryan,Y4000\nReal Estate Analyst,Shorenstein Company,F4000\nLAW,SACK HARRIS & MARTIN PC,K1000\nCEO,LEVEL 3 COMMUNICATIONS,J1200\nREAL ES,,F4200\nHAMMER PLASTICS,MGR,M1500\nEXECUTIVE,TRAXX CORPORATION,Y4000\nPresident,Wilheit Packaging Company,M7100\nCo-Director,Sustainable Communities ZERI-NM,J1200\nOWNER,ARTZONE,Y4000\nTEACHER,WAYNE TWP,L1300\nWINSTON & STRAWN,,J1200\nVOLUNTEER,CIVIC LEADER,C1400\nVP PRODUCTION SUPPORT,CABLEVISION SYSTEMS CORP,C2200\nATTORNEY,LEGAL AID NYC,K1000\nMANAGER,BLUE SKIES CAPITAL&SERVICESLLC,Y4000\nperformiing artist & accountant,self,J1200\nMD,Usaf,X5000\nCHIEF EXECUTIVE OFFICER,\"GREGG PROPERTIES, INC\",F4000\nBUSINESSPERSON,KADI ENTERPRISES,Y4000\nGRIMM EYE CLI,,Y4000\nFinance,NBC,C2300\nEngineer,\"Landau Associates, Inc.\",Y4000\nFARMER,WRITER,A1000\nWolf Popper,,K1000\nMANAGING DIREC,EXECUTIVE COUNSELORS,Y4000\n\"WEGMAN'S\",,J7400\nEvent Producer,Sanford I Smith & Assoc,Y4000\nPRESIDENT,HISPANIC HOUSING,Y4000\nOral Surgeon,Scott A. Hum DMD PA,H1400\nEVP,Time Warner Cable Co,C2200\nPhysician,Retina Physicians,Y4000\nPresident,Nehemiah Ii  Inc,Y4000\nMUSICIAN,FOREIGNER,Z9500\nLaw Clerk,\"Baltimore County State's Attorney's\",K1000\nPresident/C.O.O.,M.D. Enterprises,Y4000\nOwner,Creek National Transport,Y4000\nChief Executive Officer,Upson Regional Medical Center,H2100\nAssociation of Trial Lawyers of Ame,,K1100\nMECHANICAL DESIGNER,ENTEGRIS INC.,G5200\nINVESTMENT MANAGEMENT,\"COLCHESTER GLOBAL INVESTORS, INC.\",Y4000\nOWNER,\"VOTZE BUTLER ASSOCIATES, INC\",Y4000\nREAL ESTATE,SALAVADOR SAPIEN,Y4000\nEXECUTIVE DIRECTOR,CPPP/EXECUTIVE DIRECTOR,Y4000\nRYDER ATE GROUP,,T3000\nCONSULTANT,CAPITOL SOLUTIONS,H3100\nConsultant,Copeland Lowery & Jacquez,K2000\nAttorney,\"Mandell, Strohm & Gelson\",K1000\nPresident/owner,\"Predator Pest Control, Inc.\",G5700\nATTORNEY,MERRICKS LAW GROUP,K1000\nprofessor,univ vermont,H5100\nUnion Organizer,SEIU Local 250,J1200\nADMINISTRATIVE ASSIS,NORTH AMERICAN,Y4000\nCo Director Bd Of El,Tippecanoe Co Govt,Y4000\nLEGISLAT,NYS DEPT. OF CIVIL SERVICE,X3000\nYELLOW CHECKERS & STAR,,T4200\nOwner,Carlson Distributing,G2850\nRealtor,Allen Agency,Y4000\nKAGAN ASSOCIATES,,C2200\nMD,RGH,Y4000\nRHODES & MORONI,,Y4000\nUNION PLUMBER,RETIRED,X1200\nDOVER DEVELOPMENT,,F4100\nExecutive,Mepco Inc,E1210\nVP-CORP COU,VALLEY BAPTIST HOSPITAL,H0000\nPRESIDENT AND CEO,SYNERGICS,J1100\nFACILITIES ADMINISTRATOR,\"MEARS GROUP, INC.\",Y4000\nATTORNEY,CONLEY & WIRICK P.A.,Y4000\nJOY STATE BANK,,F1100\nExecutive,Green Haven Partners,J5100\nVICE PRESIDENT,\"JAMES A CUMMINGS, INC.\",Y4000\nBusiness Development,American Student Assistance,F1400\nCAPT SPORT,FISHING OWNER,Y4000\nFIREFIGHTER,LOS ANGELES CITY,J1100\nPhysician,BAYER HEALTH CARE,H4300\nBAREFOOT INVESTMENTS,,Y4000\nADVISOR,LAUX MEDLEY,Y4000\nPRESIDENT,HARMAR DEVELOPMENT CORPORATION,Y4000\nManager,Intech Direct,Y4000\nWriter,Free Lance,C1100\nClinical Research,Compass Point Research,Y4000\nGREEN CORDONNIER & HOUSE LLP,,Y4000\nPresident,Intigrated Decision Support Corp.,Y4000\nPartner,Gardere & Wynne,K1000\nVice President & Chi,\"Lord, Abbett & Co. LLC\",F2100\nPRINCIPAL,LUND COMPANY,F4000\nNON-PROFIT M,COUNCIL ON FOUNDATIONS,X4100\nSelf-Employed,Samuels and Associates,F4100\nPublic Health Physician,New York State Department of Health,X3000\nHI TECH LAW LLP,,K1000\nBANKER,SUMMIT FINANCIAL GROUP,Z9500\nPartners,Screaming Eagle Vineyard,G2820\nSELF EMPLOYED,AERO IND INC.,Y4000\nEXECUTIVE,WELLS ENTERPRISES INC.,A2000\nPROFESSOR,MOUNT UNION,Y4000\nAttorney; Consultant,General Counsel Consulting,K1000\nVICE PRESIDENT - UNDERWRITING,VERMONT MUTUAL INSURANCE GROUP,F3100\nSECRETARY,USD 259,X3500\nDIRECTOR,IRONBRIDGE CAPITAL MANAGEMENT,F2100\nWEST ROCK CAPITAL,,F0000\nCHAIRMAN,NORTHLAND INVESTMENT CORP,F4500\nPresident,Ronald E. Frazier & Associates,Y4000\nGeneral Organizer,Ironworkers International,LB100\nCEO,US Lumber Group,Y4000\nV.P.,WORLD ELASTIC CORP.,J1100\nBANK ILLINOIS,,F1000\nPRESIDENT,TOBACCO TECH,A1300\nATTORNEY AT LAW,PARKER POE,K1000\nCNO,John Randolph Medical Center,H2100\nDESIGN CONSULTANT,\"SUZANNE TICK, INC.\",M8000\nphysician,Naugatuck Valley Gastroenterol,Y4000\nExecutive Vice President/Director,James Polk Stone National Bank,F1100\nAttorney Law,mourant,Y4000\nManager,PWT IT Solutions Inc.,Y4000\nAttorney at Law,Morris Polich & Purdy LLP,K1000\nPresident,Shores Sales & Management Inc.,Y4000\nPresident/Chief Exec,B and J Food Service Equipment,F2000\nAttorney,Parrish Kruidenier Moss Dunn,K1000\nPRINCIPAL,THE CADDIS GROUP LLC,Y4000\nUT HEALTH CENTER TYLER,,Y4000\nBLUE CIRCLE WEST INC,,B5100\nPRESIDENT & CEO,RMA WORLDWIDE CHAUFFERED/PRESIDENT,Y4000\nAttorney,Husch And Eppenberger,K1000\nPartner,Newfields Llc,Y4000\nPRESIDENT AND CEO,MEDFLIGHT,Y4000\nCEO,THURMAN INDUSTRIES,Y4000\nINSURAN,THOMPSON FLANAGAN & COMPANY,F3000\nPRP PROPERTIES,,F4000\nMinister,United Methodist Church,X7000\nATTORN,MORISON KNOX HOLDEN & PROUGH,K1000\nHHHHH,GGGG,Y2000\nFire Fighter/EMS,Cape Coral Fire Dept.,L1400\nWERSBACH ELECTRIC,,B3200\nMASTERCRAFT VENDING & COFFEE SERV,,G4850\nGREENWICH CONSULTANT,,B3000\nPARTNER,\"BRAX, LTD\",Y4000\nPROGRAMMER,MICROSOFT CORP.,C5120\nInformation Requeste,Washington Training & Development,Y4000\nInsurance broker,\"Property Risk Services, LLC\",F3100\nMILBAIL TWEEDE,,K1000\nCEO,CHAPMAN CORP,T1400\nREAL ESTATE INVESTOR,TRILOGY REAL ESTATE GROUP,F4000\nINTERIOR DESIGNER,\"MDS,INC.\",Z9500\nEXECUTIVE,STEPHENS INC/EXECUTIVE,F2300\n02 TECH,RETIRED,X1200\nFIRST ALBANY CORP,,J5100\nMarketing Manager; D,Cisco Systems;  Harvard Univ.,C5110\nPROFESSOR,FLORIDA ATLANTIC UNIVERSITY,Z9500\nAMLAND DEVELOPMENT,,Y4000\nDIRECTOR ME HOME MORTGAGE,,F4600\nCPA,\"MOODY DUNBAR, INC.\",Y4000\nAttorney,Schoenfeld & Jacobs,K1000\nATTY,JOHNSON WAX PROFESSIONAL,Y4000\nAUTO DEALER,BILL MCCURLEY CHEVROLET,T2300\nDEVELOPER,\"HARPER'S DEVELOPMENT\",Y4000\nSpeechwritier,Fannie Mae,F4600\nGULFSTREAM WORLDWIDE REALTY,,F4200\nPHYSICIAN,VISITING PHYSICIANS ASSOC.,H1100\nCORNERSTONE DVLP GROUP,,Y4000\nCRAIG WENNERS CRAIG & CASINGHINO,,Y4000\nSET,MAJESTIC SETTLEMENT CONSULTANTS,Y4000\nOwner,\"The Raley's\",Y4000\nPART,\"WAITE, SCHNEIDER, BAYLESS & CH\",K1000\nBUS TRANSPORTATION,,T4100\nNAIL TECHNICIAN,,Y4000\nRealtor,Ann Hubener,Y4000\nSAGE PRODUCTS INC,,Y4000\nPRESIDENT,UNIVERSITY FORD INC,T2300\nMgmt Consultant,A4C Inc,Y4000\nLORIMIER PAPER COMPANY,,Y4000\nSVP Chief Acct Officer,\"CKE Restaurants, Inc\",G2900\nANESTHESIOLOGIST,CUMC DEPT. OF ANESTHESIOLOGY,H1130\nPHYSIC,DURHAM NEPHROLOGY ASSOCIATES,H1130\nPRES,SUN COATING,Y4000\nLASKO METAL PRODUCTS,,M5000\nDoctor,Waterville Family Physicians Inc,H1100\nATTORNEY,\"WEIL GOTSHAL & MANGES, LLP\",J1200\nPhysician,Pain Treatment Centers of NJ,H1130\nInvestor,Owner,F4200\nAttorney,Winnick Ruben,Y4000\nINTERIOR DESIGN CON,,Y4000\nCOO,D.M.J.M. & HARRIS,B4000\nMANAGEMENT,IDS BROKERS,Y4000\nIndependent Contract,Cove Point Realty,F4200\nATTORNEY,B. & B. ENTERPRISES,F4100\nCardiology Associates,,H1130\nPUBLIC AFFAIRS EXECU,ISSUE DYNAMICS,G5210\nWALLER ISD,,X3500\nSELF-EMPLOYED (WALNUT ORCHARDS),,A1400\nPresident,\"Mcluckie Oil Co, Inc\",Y4000\nFINANCIAL ADVISOR,CHIECO CAPITAL MANAGEMENT LLC,Y4000\nFamily Practice,Janeen Maas MD,H1100\nChairman,\"Erickson Retirement Community, LLC\",F4100\nAuto Dealer,Grand Auto,T2300\nPHYSICIAN,PHIL. COLLEGE OF OSTEOPATHIC MEDICINE,H5150\nENGINEER,COLES-MOULTRIE ELECTRIC COOPERATIVE,E1610\nSENIOR OPERATOR,UNMANNED SYSTEM INC.,Y4000\nSPECIALIST,CORNERSTONE ORTHOPAEDICS & SPORTS MEDI,H1130\nCHAIRMAN & CEO,NAFEO,Y4000\nMgr Dir,Lazard,F2700\nPERSONAL MUSIC INC,,Y4000\n\"Temporary Mgmt - VP, HR\",\"SOLVAY PHARMACEUTICALS, INC\",H4300\nWANGER ASSETS MGT,,J1100\nATTORNEY,\"PARTIN LAW FIRM, P.C./ATTORNEY\",K1000\nManaging Partner,Durand & Anastas,Y4000\nShipping,Norland Shipping,Y4000\nCONTINENTAL AMERICAN INVESTO,,Y4000\nWALTON ELECTRONICS,,Y4000\nPHYSICIAN,SCOTTSDALE MEDICAL IMAGING LTD.,H1130\nASIA SUPPL,GE CONSUMER & INDUSTRIAL,M2300\nDELI,,G2400\nEXECUTIVE,PHILMARK LITHOGRAPHICS,C1300\nINVESTMENT ADVISOR,TWEEDY BROWNE COMPANY L.L.C./INVEST,F2100\nSALE,NDC HEALTH INFORMATION SERVICE,H0000\nCOPAKEN WHITE AND BLITT,,J5100\nCOVA CONSTRUCTION SE,,B1500\nMINING CHEMICALS,NALCO,M1000\nU S DEPARTMENT OF JUSTICE,,J5100\nCEO,TLC BEATRICE,F7000\nCO-OWNER,LEAVITT GREAT WEST INSURANCE SERVICES,Y4000\nPresident,\"FEM Electric Association, Inc\",E1610\nReal Estate Develope,Pratt Development,Y4000\nMotel Owner,\"Adis, Inc. / LaMer Motor Inn\",T9100\nAttorney,\"Mills & Levine, PA\",K1000\nReal Estate Investor,Inland American Reit,F4000\nFinance Supervisor,ConocoPhillips Company,E1110\nEconomist,US Irvine,J1100\nOWNER,HICKORY HILL LAKES CAMP,Y4000\nSILICON TECHNOLOGY SOLUTIONS,,Y4000\nEXECUTIVE VICE PRE,BABCOCK & WILCOX,E1700\nNEWSPAPER,,J7150\nOwner,I Buy Daytoncom LTD,Y4000\nCHIEF FINANCIAL OFFICER,\"KOERNER DISTRIBUTOR, INC.\",G2850\nATTORNEY,MARIEA & SIGMEND LLC,K1000\nMS SPORTS MEDICINE,,H1100\nCHAIRMAN,CHS,A4300\nPresident,Medical Resource Network Inc.,H0000\nSEROTE PERMUTT,,Y4000\nPresident,GACTV Network,Y4000\nLAWYER,\"JACOBS, GRUDBERG, BELT, DOW & KATZ P.C\",K1000\nFINANCIAL,MARION GENERAL HOSPITAL,H2100\nRE Manager,Citadel Management Corp.,Y4000\nSPACECRAFT,,Y4000\nCEO,BURROUGHS AND CHAPIN,F4000\n\"FOUNDER,\",GAVALAS KOLONKO FOUNDATION,Y4000\nAMER PUBLIC TRANSP ALLIANCE,,Y4000\nAssistant Administra,Cookeville Regional Medical Center,H2100\nVP,Derbigum Americas,Y4000\nTEXAS A&M U,PROFESSOR,J1200\nA&M FIN CONSULT GROUP,,F0000\nHYVEE,,Y4000\nCP,GENTILE WIENER CATANESE & VULCAN,F5100\nExecutive VP/Chief Operating Officer,Virginia Mason Medical Center,H2100\nEXECUTIVE,SATTLER COMPANIES,Y4000\nSOLE PROP.,CAMPUS EYE GROUP,H1120\nTEACHE,BATESVILLE COMMUNITY SCHOOLS,Y4000\nPresident,A & B Environmental Services,Y4000\nNURSE,FINLEY ALT SMITH LAW FIRM,K1000\nOWNER,THE CUTTING EDGE,Y4000\nPhysician,Harvard Medical Faculity Physicians at,H1100\nExecutive,Metal Management,M2400\nBUSINESS OW,GENERAL MARINE SERVICES,Y4000\nMANAGER; CONS,GE INDUSTRIAL SYSTEMS,M2300\nPartner,Rio Farms,A1000\nGeologist,Minefinders Corp,Y4000\nFINANCIAL SERVICES CORP OF AMERICA,,H3100\nPRESIDENT,SEVEN FALLS CO.,F4100\nPresident,Rite Way Trailer Service Co.,Y4000\nDIRECTOR OF SEVERAL F,SELF-EMPLOYED,X1200\nHOLMES-WAYNE EC,,E1610\nOwner,\"Titan Mining Group, Llc\",E1200\nROWAN DIST CO,,G2850\nIR,IR,J5100\nPHYSICIAN,ADVANCED RADIOLOGY,H1130\nATTORNEY,\"CANTOR, STONEBURNER\",Z9500\nPLEASANT VALLEY GOLF CLUB,,Y4000\nAttorney,SEUS Insurance,F3100\nMCBRIDE BUDWEISER DIST,,Y4000\nNO RESPONSE,EMAIL REQUEST ON FEB 17 2012/NO RES,Y4000\nTEACHER,DARTMOUTH COLLEGE AND SELF,Y4000\nATTOR,\"LIGHTFOOT, FRANKLIN AND WHITE\",K1000\nPaint Contractor,Self employed,B3000\nHuman Resource Manager,\"DrHauschka Skin Care, Inc\",Y4000\nM INC,SPANN ROOFING & S,B3000\nOwner,Indian Nation Directional Drilling,Y4000\nINTERVENTIONAL CARDIOLOGY,MERCY HEART CENTERMETROPOLITAN HEART &,H1100\nGOVT RELATIONS MGR,AVENTIS BEHRING,K1000\nAttorney,\"Greenberg Traurig, LLP\",K2100\nCBL AND ASSOCIATES INC,,F4500\nATTORNEY,AUSTINE STUDIOS,Y4000\nAttorney-at-Law,\"Abrahamsen, Moran et al\",K1000\nphysician,G I Consultants,Y4000\nPresident,\"Weiler & Arnow Mgt Co, Inc\",F4200\nPresident,J. & M. LIGHTING,M6000\nOwner,\"Sinanian Development, Inc\",Y4000\nPRESIDENT,A&E TELEVISION NETWORKS,C2200\nLYNN COOPER INSURANCE,,F3100\nORANGE COUNTY PUBLIC SCHOOLS,,X3500\nAttorney,\"Bourne, Noll & Kenyon\",K1000\nCATALYST INTERNATIONAL,,Y4000\nPresident,\"Midway Beverage, Inc\",G2850\nOwner,Grynberg Petroleum Co.,E1100\nINVESTOR,\"THE FATHER'S TABLE INC.\",Y4000\nWAREHOUSE MAN,WALGREENS OPTION CARE,J1100\nSVP,TENET HEALTHCARE CORPORATION-HQ,H2100\nINFORMATION REQUESTE,INFORMATION REQUESTED PER BEST EFFORTS,G1100\nATTORNEY,WAKE FOREST BAPTIST MEDICAL CENTER,H2100\nEXECUTIVE OFFICER,GREENSBORO REGIONAL REALTORS,F4200\nExecutive,SBLI USA Mutual Life,F3300\nCONSU,SONNY CALLAHAN AND ASSOCIATES,K2000\nPERIODONTAL/ORAL SURGEON,ROSENFELD & MANDELARIS,Y4000\nATTORNE,DANN PECAR NEWMAN & KLEIMAN,K1000\nChief Information Officer,Indymac Bank,F4600\n\"Director, Flight Ope\",IBM,T1600\nPOST DOC,YALE SCHOOL OF MANAGEMENT,H5100\nHOME ECONOMICS,SELF-EMPLOYED,Y4000\nELECTED OFFICIAL,PLAQUEMINES PARISH,X3000\nSenior Advisor,U.S.A.I.D.,X3000\nAttorney,Thelen Reid & Priest Llp,K1000\nAttorney,Lamb McErlane PC,K1000\nBENSALEM LANDMARK PLAZA,,Y4000\nMgr Dir,Lazard Freres,F2300\nMOA/DIRECTOR - C/ER PR&AMP;CD,,Y4000\nExecutive,Conwood,G0000\nJuvenile Corr Admini,7817211588,Y4000\nGRAHAM ENERGY,,E1000\nQUALITY UNDERGROUND OF NEVADA INC,,Y4000\nATTORNEY,PALACE LAW OFFICES,K1000\nEngineer,Sucker Punch Productions,Y4000\nFRONTLINE COMM./CLARKSTOWN PD/EXECU,,Y4000\nINFO REQUESTED,University Of Pittsburg Medical Cen,H5150\nDIRECTOR OF P,UNIQUE INDUSTRIES INC,Y4000\nCOMMER DEVELOP ADMIN OF PR,,Y4000\nEXECUTIVE,SWANSON GROUP,A5000\nASSET MANAGEMENT ASSOC OF NY INC,,F2000\nLAW OFCS. OF CHARLES D. NAYLOR,,K1100\nBLOSSMAN PROPANE GAS,,E1190\nart teacher,self emplyed,H5000\nPHYSICIAN,ANESTHESIA MEDICAL CONSULTANTS,H1100\n\"NAT'L ASSOC OF BROADCAST\",,C2100\nED ADMIN,INPEACE,Y4000\nAttorney,Baron & Budd Pc,K1000\nSQL SERVER DBA,DELL,C5100\nAttorney,\"Godwin, Morris, Laurenzi & Bloomfield,\",K1000\nLUSTIGMAN & WOLFSON,,Y4000\nATTO,LAW OFFICE OF DENNIS MORGENSTE,K1000\nTRANSPORTATION ENG,EDWARDS & KELCEY,B4000\nProject Mgr,Wmpit Richland Mi,Y4000\nSenior Vice Presiden,MEMCO Barge Line,T6200\nconsultant,First National Development,F4100\nTransportation Plann,Dowling,Y4000\nB & B ELECTRONICS,,Y4000\nInstaller,\"DSR Customs, LLC\",Y4000\nTELECOMMUNICATIONS,AT&T/TELECOMMUNICATIONS,C4100\nSELF EMPLOYED SMALL BUSINESS OWNER,VALPAK OF WESTERN WASHINGTON,Y4000\n\"VP, PUBLIC AFF\",\"FORTUNE BRANDS, INC.\",F2600\nEXECUTIVE,G. E. MATHIS COMPANY,M2100\nFARMER,MARTINEZ INC.,Y4000\nVolunteer,Homemaker,Y1000\nMETEOROLOGIST,ATMOSPHERIC TECHNOLOGY SERVICES/MET,Y4000\nATTORNEY,\"WEINSTEIN, KITCHENOFF, & ASHER\",Y4000\nCareer Counselor,Harvard Law School,H5170\nCOMMUNICATIONS,\"PFIZER, INC.\",H4300\nPRESIDENT,RIVERHEAD BUILDING SUPPLY,G1200\n\"President, CEO\",Heartland Equipment Co,Y4000\nOVERLOOK RESTAURANT,,G2900\nWINWARD CAPITAL MANAGEMENT,,F2100\nExecutive Vice President,QWest,C4000\nLAWYER,UNITED STATES GOVERNMENT,X3000\nINVESTOR,SAWYER LLC,Z9500\nAdministrative Assistant,City of Glendale,X3000\nPRESIDENT,ETEC SERVICES INC,Y4000\nPROFESSOR,UNIVERSITY OF CALIFORNIA - SAN DIEGO,H5100\nATTORNEY,GREG HILL ATTORNEY AT LAW,K1000\nPHYSICIAN ASSISTANT,REDFIELD CLINIC,H1700\nBUSINESS DEVELOPMENT,\"HURT NORTON & ASSOCIATES, INC.\",K2000\nUNION MUTUAL OF VERMONT/PRESIDENT/C,,Y4000\nVICE-PRESIDENT CONTROL CENTER OPERATNS,NATIONAL GRID USA SERV CO INC,E1620\nWater Operator,Dummar`s R & H Foods,Y4000\n\"PENNINGTON'S INC\",,Y4000\nGeneral Partner,Killman Oil Company,E1120\nREGIONAL SALES DIRECTOR,PATIENT POINT,Y4000\nREAL ESTATE,SELF-EMPLOYED,F2000\nEVP-Marketing/International,\"StonCor Group, Inc.\",M1600\nmom,Self employed,Y1000\n\"LATHAM & WATKINS, L.L.P.\",,K1000\nMODERN ELECTRIC CO,,Y4000\nNurse Practitioner,Northwest Physicians PC,Y4000\nMEDICAL DIRECTOR,DROBINSON5*MAC.COM,C5140\nEngineer,Camera Systems,Y4000\nREALTOR,MCGINNIS REALTY,F4000\nINVESTMENTS,BERKSHIRE PARTNERS L.L.C.,F2600\nWATSON/MULHERN LLC/PR CONSULTANT,,Y4000\nATTORNEY,PIPER HARBURY RUDNICK ET,K1000\nCEO,@ A Glance Software,C5120\nEXECUTIVE VI,FEMINIST MAJORITY FDN.,J7400\nLiterary Agent,Lippincott Massie Mcquillein,Y4000\nPUBLISH,INVEST MONITOR,F0000\nGREGORY SILVER ATTY AT LAW,,K1000\nBOOKKEEPING,VISTAS CONSTRUCTION,B1500\nAttorney,\"Laverne D Long-Daniels, LLC\",Y4000\nAttorney,Fragomen Del Ray,Y4000\nFINA,BLACK STERLING PARTNERS L.L.C.,Y4000\nKURT CONCRETE,,B5100\nWestern & Southern Financial,,F3100\nEQUITY PRODUCTS ACCOUNTING MANAGER,\"WELLS FARGO BANK, NA\",Z9500\nBOOTH WADER & CAMPBELL,,J1100\nWATKINS LUDLAM,,K1000\nManager,\"Q Prime, Inc\",G5240\nAttorney,Belin Lamson McCormick Zumabacj Flynn,K1000\nDIRECTOR,MARLBORO COUNTY CHILD PROTECTIVE SERVI,Y4000\nDIRECTOR OF SALES &,BJ SERVICES,E1110\nENGINEERING MANAGER,MICROSOFT CORPORATION,C5120\nRURAL MAIL CARRIER,USPS,J7400\nSTEARNS WEAVER MILLER WEISSLER ALHA,,Y4000\nLAW REALTY TRUST,,F4200\nRESEARCH,WILKINS RESEARCH SERVICES,Y4000\nJ E D PRODUCTIONS,,Y4000\nLEGAL SCRIPT RESEARC,MARSHALL PLUMB RESEARCH ASSOCIATES,B3400\nBuilder,Pepper Viner,Y4000\nTRUCK DRIVER,COYOTE SANITATION,E3000\nPhyicians/Teacher,UCSF,H5100\nPhysician,\"St. Joseph's County Anesthesia\",H1130\nLOBBYIST,AT&T/CINGULAR WIRELESS,C4100\nINFO REQUESTED,Industrial Machinery,Y4000\nSALES,TRUCK PARTS,T3000\nTELCO COMPANY,,Y4000\nYSI,,Y4000\nBCBS NEW JERSEY,,F3200\nElectrical Contractor,Tucknott Electric Co,B3200\nAttorney,Butler Wooten Et al,K1100\nGORDON FLESCH CO.,,Y4000\nINSURANCE AGENT,NBS INS.,F3100\nOWNER,\"ROBERTS, RAHEB & GRADLER LLC\",K2000\nONMI VISIONS INC./PRESIDENT/CEO,,Y4000\nPODIATRIC PHYSICIAN,ASPEN ORTHOPEDICS,H1130\nTEST ENGINES,NAVISTAR,Y4000\nLAWYER,BRILL MOORE,Y4000\nPRESIDENT,THE NEW YORK ACADEMY OF SCIENCES,X0000\nJEFFERSON MEDICAL ASSN,,H1100\nATTORNEY,B. N. A.,Y4000\nC COMP,REEVES HEATING & A,B3400\nOWNER,\"ADAM'S EUROPEAN CONTRACTING INC.\",B3000\nBOCKORNY PETRIZZO/VICE PRESIDENT/GO,,K2000\nLaw professor,Univ of Houston,Z9500\nAUTOMATIO,LORILLARD TOBACCO COMPANY,A1300\nAttorney,\"US, Securities and Exchange Commissio\",X3000\nDoctor,HHC,Y4000\nSENIOR DIRECTOR OF GOVT AFFAIRS,AUTODESK,C5120\nRICHMOND CITY PUBLIC SCHOOLS,,X3500\nATTORNEY,KAZAN MCCLAIN LYONS,K1000\nLandlord,Coleman Rentals,Y4000\nACTION AMBULANCE SERVICE INC.,,H3000\nPART,\"NEASE, LAGANA, EDEN, & CULLEY,\",F3100\nI M S MASONRY,,B3000\nJOSEPH A SCARLETT ATTORNEY,,K1000\nENGINEER,\"HUBBELL, ROTH & CLARK, INC.\",Z9500\nDURABAG CORP,,Y4000\nCONSULTANT,ROBERT HALF INTERNATIONAL,G5250\nPRE,SUPERIOR INDUSTRIAL COATING INC,Y4000\nInformation Requeste,Asarco LLC,Y4000\nCHAIRMAN,\"YOUNGSTEDT'S\",Y4000\nFARMING CRANBERRIES,SELF-EMPLOYED,Y4000\nCONGRESSMAN,U.S. CONGRESS,F1400\nInformation Requested,Ford Motor Company,J2200\nattorney,\"Walsh, Colucci\",K1000\nConsultant,Aquent,Y4000\nAssistant Vice Presi,PEC,E1140\nMICHIGAN VETERANS FACILITY,,X3000\nPROJECT OFFICER,HEALTH HUMAN SERV,J7400\nIRWIN SCH,SELF-EMPLOYED,G0000\nPAWNBROKER,CAPITOL CITY INVESTMENTS INC,F7000\nV.P.,VIDMAR MOTOR COMPANY,T2310\nHEALTHCARE,SELF,H1120\nMgr,Goldman Sachs,F2300\nInsurance Agent,Varner Insurance Inc.,F3100\nMANAGER,SONORAN INSTITUTE/MANAGER,Y4000\nPresident-Chief Exec,Klockner Khs Inc.,Y4000\nSALES,SPECTRUM CHEMICAL,Y4000\nC.E.O.,Delphi Properties Llc,F4000\nChairman,Texas Property Tax,F4000\nCHEMIST,SFT INC.,Y4000\nPRESIDENT,HAMILTON INT,Y4000\nCEO,Panavision,M3300\nHEAD OF CUSTOMER MARKETING,SYNGENTA SEEDS INC.,A4100\nATTORNEY,MALLORY LAW FIRM P.A.,K1000\nPUBLIC RELATIONS,\"GEORGE ARZT COMMUNICATIONS, INC\",G5210\nCEO,\"BGR GOVERNMENT AFFAIRS, LLC\",K2000\nPHYSICIAN,RICHARD FAULK,Y4000\nLAKEVIEW SKILLED NURSING & REHAB,,H0000\nHR DIRECTOR,HONEYWELL,M2300\nPresident,\"E.A.C. Trading, Inc.\",Y4000\nHERITAGE ABSTRACT CO,,F4300\nROCKY MTN RADIOLOGISTS PC,,H1130\nConsultant,\"ETA, Inc.\",K2000\nMedia Relations,GPD Associates,Y4000\nExecutive,\"Technorati, Inc\",Y4000\nCo-Owner,BHFRA,Y4000\nWESTERN NATIONAL MUTUAL INSURA,,F3100\nAttorney,Abrams Scott & Bickley LLP,J1200\nBUSINESSMAN,\"FRANK'S FABRICS INC\",Y4000\nEXECUTI,IMS RECYCLING SERVICES INC.,M2400\nEXECUTIVE,PRIDE MOBILITY PRODUCTS CORP.,H4100\nPRINCIPAL,\"QUICKPORTAL, INC\",Y4000\nAFSCME MI CN 25/DETROIT CITY/STAFF,,L1200\nSTUDIO 4,,JD200\nATTORNEY,NYS DEPT. OF HEALTH,Z9500\nWOODRUFF-SAWYER &,,F3100\nJ & J SOUTHEAST,,Y4000\nLEES TV,,Y4000\nPRESIDENT,SPELLACY ASSOC.,G1200\nJES SALES,,Y4000\nATTORNEY,\"BROWN, DREW AND MASSEY, LLP\",Y4000\nRETIRED (NAV,SELF- EMPLOYED RETIREE,X1200\nFORUM INC,,Y4000\nBUSINES,LOCKHEAD MARTIN CORPORATION,D2000\nInformation Requested,Schiff Hardin & Waite,K1000\nAttorney,\"Kershaw, Cutter, Ratinoff & York\",K1000\nCEO,\"Patriot Trnsprt. Hldng, Inc.\",Y4000\nATTORNEY,APPLACHIAN REGIONAL COMM.,Y4000\nOwner,\"Lawrence & Co., Inc\",J7300\nManager,Harris Co,Y4000\nEXECUTIVE DIRECTOR,\"NAT'L GAY AND LESBIAN TASK FORCE\",J7500\nAttorney,Real Networks,C5120\nCONSULTANT,ROLLING BREEZE LLC,Y4000\nPOLITICAL FIELD DIRECTOR,UNITED MINE WORKERS,LE100\nATTORNEY,\"COX, KOLTAK & GIBSON\",K1000\nPRESIDENT,ORANGE COAST TITLE,F4300\nAttorney,Pedley Zielke Gordiner Pence,K1000\nPRES,\"ENERGY VENTURES ANALYSIS, INC.\",Y4000\nHORAN WALLACE & HIGGINS LLP,,K1000\nChair,United Way,X4000\nGOVERNMENT RELATIONS,AMERICAN CAPITOL GROUP,K2000\nMEED,PRESTON GATES ELLIS & ROUVELAS,K2000\nSALES,FIDELITY PAPER,A5200\nPlastic/reconstructive Surgery,Englewood Hospital,H1130\nAttorney,Spangerboy Law Firm,K1000\nIt,Southwest Reimbursement,Y4000\nLIFE SCIENCES PROJECT MANAGER,GENENTECH,Z9500\nRegional Real Estate Director,CB Richard Ellis,F4000\nCONSULTANT,HELEN MILBY & COMPANY,Z9500\nDELCHAMPS ASSOC,,G2400\nSHMID MOONEY LAW FIRM,,K1000\nMinister,UUFS,Y4000\nVP,VISIONLINK,Y4000\nEducation,Pef,Y4000\nMURDY & SINGLEY LLP,,Y4000\nPROFESSIONAL,K1 CONCEPTS,C5120\nPHYSICIAN,PROVIDENCE PEDIATRICS,H1100\nMILLER & FINNEY,,K1000\nBusinessman,H. C. R. MANOR CARE,H2200\nOWNER,GLOBAL EMPLOYMENT SOLUTIONS,G5250\nCHIEF EXECUTIVE OFFICER,BERJE INC.,Y4000\nENVIRONMENTAL CHEMICAL CORP,,E2000\nTHE ENGINEERING CTR,,Y4000\nVP Accounting,\"Cox Communications, Inc.\",C2200\nVICE PRESIDENT,TUCSON ELECTRIC POWER COMPANY,B3200\nAPA TRANSPORT CO,,T3100\nManager,Del Mar Country Club,G6100\nOCCUPATIONS UNLTD,,G5250\nCHIEF LEGAL OFFICER,SEAWORLD PARKS & ENTERTAINMENT,G6700\nAttorney,\"Timothy Denison, Attorney at Law\",K1000\ncriminal defense Attorney,LA County Public Dfender,Y4000\nRETIRED,BARKER MARTIN PS,K1000\nPRESIDENT,EGGER STEEL CO,M2100\nStatistical Consultant,Jamie Baldwin,Y4000\nPRESIDENT,BOWDOIN COLLEGE,H5100\nSTRICKLORD FOODS INC/ PENDELLS/GROC,,G2000\nCONSULTANT,\"COLETTA & COMPANY, INC.\",Y4000\nBUDGET,NATIONAL SCIENCE FOUNDATION,J1200\nC,SOUTHWEST REGIONAL MEDICAL CENTER,H2100\nFIANNNCIAL PLANNING,STICKNEY RESEARCH,Z9500\nSoftware Developer,\"Shaftel Software, Inc.\",C5120\nReal Estate,Pennsylvania Real Estate Investment Tr,F4100\nPresident and CEO,Guaranty Bank and Trust Company,F1100\nBEELMAN TRUCKING CO,,T3100\nOCCU,MAT-SU BOROUGH SCHOOL DISTRICT,X3500\nVICE PRESIDENT,AWS TECHNOLOGIES,Y4000\n\"TOM'S FARMS\",,G2400\nAttorney,Evans Petree Bogatin PC,K1000\nConsultant,\"Powermetro, Inc\",Y4000\nPA,Self,H1700\nPRESIDENT & CEO,EASTER ASSOCIATES,K2000\nCHAIRMAN PRES,RENAL CARE GROUP INC.,H3000\n\"Vice President, Landscape Construction\",\"Ruppert Landscape Company, Inc\",B0500\nManager,AACRAO,H5100\nU.S.A.F. Officer,U.S.A.F.,X5000\nVP ENGINEERING,DROPBOX INC.,C5140\nCEO,CONESCO DOKA LTD.,Y4000\nLETTER SENT,CONSULTANT,G5200\nFIREFIGHTER,LA COUNTY FIRE DEPT.,X3000\nINFORMATIO,MODERN WOODMEN OF AMERCA,J1100\nOwner,Meyer Associates,B4400\nIRWIN AUTO PRODUCTS,,T2200\nPartner,Dealertire llc,Y4000\nEXECUTIVE,DIAMOND MFG. CO.,Y4000\nPRESIDEN,WINDSOR BEACH TECHNOLOGIES,Y4000\nSKADDEN ARPS MEGHER,,K1000\nFamily Therapist,\"Seattle Children's Home\",Y4000\nFIN,CONSULTANT ECON,F5000\nPresident,Summit Dairy Queen Brazier Inc.,A2000\nROLLS ROYCE/EXEC. VP/CFO,,T1300\n\"DIRECTOR, OFFICE OF FACILITIES USE\",CCRI,Y4000\nCONSULTANT,CONTENTE CONSULTING/CONSULTANT,Y4000\nOWNER,JEFF SIKES MAZDA,T2310\nLawyer,Snow Becker Krauss PC,K1000\nPARTNER,APARTMENT REALTY ADVISOR,F4200\nEXECUTIVE DIRECTOR,NATIONAL ASSON OF COUNTY & CITY HEALTH,Y4000\nengineer,Williams International,Y4000\nPresident,Price State Trading Inc.,Y4000\nINVESTMENT ADVISOR,TREECE INV. ADV CORP,Y4000\nCommunications Specialist,Itochu,Y4000\nJOHN GRACE & COMPANY,,B3400\nINSURANCE AGENT,\"HALLS, REGAL, HOBBS, INC.\",Y4000\nMONSANTO,,X1200\nPRESIDENT,MMSWEST,Y4000\nYP NET,,C5140\nINVESTMENT M,COVISION CAPITOL GROUP,Y4000\nEXECUTIVE,PHOENIX COMPANIES,F2000\nAccountant,Ferguson Construction Company,B1500\nSr Vice President,Gage,Y4000\nCEO/CIO,HUDSON BAY CAPITAL MGMT,J5100\nLAWSON ELECTRIC,,B3200\nECONOMIST,\"BARCLAY'S\",F1100\nATTORNEY,GORDON & KEES,K1000\nGENERAL MA,GM SECURITY TECHNOLOGIES,Y4000\nPresident,\"Shapiro & Duncan, Inc.\",B0500\nREAL ESTATE AGENT,DOUG ASHLEY REALTORS,F4200\nMortgage Banker,1St Choice Mortgage,F4600\nGlass Contractor,William A Evans Glass Contractor,Y4000\nHealthcare Executive,IPC the Hospital,H2100\nMANAGEMENT,AMERICAN AIRLINES,T1100\nSales Executive,Marriott Vacaton Club,T9300\nChief Financial Officer,Mercy Fitzgerald Hospital,H2100\nLawyer,Pasternak & Fidis,Y4000\nALLSTATE SHEET METAL INC,,B3400\nPLUMBING INSPECTOR,CITY OF MIAMI,X3000\nCEO,Wayne Trail Technologies,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,INFORMATION REQUESTED PER BEST EFFORTS,G4000\nSCHEUERMANN & JONES,,K1000\nCHAIRMAN,\"DEFENSESHIELD, INC.\",Y4000\nACCOUNTANT,HEALTHSOUTH CORP.,H3000\nPRESIDENT,ITT  INDUSTRIES,C5000\nSEAGULL SOLUTIONS INC,,Y4000\nMD,Greenblum &amp; Hutchinson MDPA,Y4000\nPublic Relations,en q Strategies,Y4000\nCO-OWNER,ROTARY CORP,Y4000\nFED OF DEMOCRATIC WOMEN,,J1200\nDIRECTOR GOVERNMENT AFFAIRS,CLARK HILL PLC,K1000\nTOWE BENNETT & MILES C P A,,F5100\nCEO,Silveus LLC,J9000\nOwner,Rowley Fuel Co,Y4000\nCEO,WILLOWBROOK PARTNERS,G5210\nCONSULTANT,ETI CONSULTING,Y4000\nExecutive,Milagro Companies,Y4000\nscientist/grandmothe,University of Arizona/ Retired from U,X1200\nPRESIDENT,THE HARRISON COMPANY,Y4000\nGREEN THUMB NURSERY,,A8000\nEXECUTIVE,\"EPIC GAMING, L.L.C.\",G6500\nEXECUTIVE,MATIS INC.,Y4000\nORAL SURGEON,ANDERSON ORAL AND MAXILLOFACIA,H1400\nPresident & COO,McCarthy Building Companies,B1000\nOFFICIAL,HEARST CORPORATION,C1000\nChief Operating Officer,\"BRE Properties, Inc\",F4100\nInformation Requested,\"Patrick S Mcclure, PSC, Mcclure &\",Y4000\nAUTO-CHLOR SYSTEM LTD,,G5300\nPresident/CEO,Gateway Science and Engineering,B4000\nCIVIL DEFENSE,,X3000\nVice President Gover,Clarian Health,H2100\nATTORNEY,\"DOW, LOHNES & ALBERTSON, PLLC\",Y4000\nENTERPRISE ARCHITECT,AGSTAR FINANCIAL SERVICES/ENTERPRIS,F1000\nLOBBYIST,HOMBERGER AND WALTERS INC.,K1000\nExecutive,Brighthouse,Y4000\nATTORNEY,BNY MELLON CORP,F2100\nPresident,Hohlt and Associates,K2000\nOwner,La Posada Hotel,J1200\nOwner,\"Santiago's Mexican Restaurant\",G2900\nRETIRED - PR,UNIVERSITY OF COLORADO,H5100\nAttorney,Housing Matters Advisory Coun,J1200\nEXECUTIV,JOSEPH E. SEAGRAM AND SONS,G2820\nMARY KAY CONSULTANT,MARY KAY/MARY KAY CONSULTANT,M3300\nPCO FINANCIAL SERVICES INC,,Y4000\nU MASS MEDICAL CENTER,,H5150\nGOVERNMENTAL RELATIONS,THE COCA-COLA COMPANY,G2600\nSenior VPresident,Pilgrims Pride Corporation,A2300\nFINANCIAL EXECUTIVE,\"MILLENNIUM MANAGEMENT, LLC\",F2600\nPhysician,Community,H1100\nResident Physician,Stanford Hospital,H1100\nPENNSYLVANIA LIME INC,,B5100\nCT AUTO TRADE ASSOC,,T2300\nBOOKKEEPER,WEINBERGER LAW OFFIC,K1000\nPresident,Gas Equipment Systems Inc.,E1100\nOptometrist,Gutshall - Blumenstock  Eye,Y4000\nVice President,The Citizens - Farmers Bank of Cole Ca,F1100\nProfessor/writer,New York University,H5100\nSA,AMERICAN BOLT & SCREW,J1100\nKAPLAN KILSHESNER & FOX,,J1200\nAttorney,Tindall & Foster,J9000\nOWNER,GUS MACHADO FORD INC.,T2300\nOWNE,LONG BEACH CHIROPRACTIC HEALTH,H1500\nAVIATION ELECTRICIAN,USN,X5000\nVice Chairman,General Atomics,E1320\nEXECUTIVE,STRYKER,H4100\nClerical,Isoclere Colon Inc.,Y4000\nExecutive,IL State Chamber of Commerce,G1100\nADMINISTRATOR,R.T.L. INC.,Y4000\nBENEFIT CONCEPTS INC,,H1100\nMORGAN DRIVE AWAY INC,,B2400\nAttorney,\"D.N. Appleby, P.C.\",Y4000\nLAZO TECHNOLOGIES,,C4600\nMD,mount sinai school of medicine,H5150\nSCHRAUT & ASSOCIATES,,F4000\nREAL ESTATE,\"SURDY & COOLEY, INC.\",Y4000\n\"BOYLE & LOWRY, LLP\",,K1000\n\"MYERS BUILDING SYSTEMS, INCORPORATE\",,Y4000\nSTUNTZ & DAVIS,,K1000\n\"President, COO\",Lithia Automotive Group,T2310\nCEO,The Cullinane Group,C5120\nTeacher,Arapoboe Comm Coll,Y4000\nPrincipal,Transportation Insurance,J6200\nOWNER,SEASONAL SPECIALTY STORES,Y4000\nElectrical Contractor,The L E Myers Company,B3200\nPHYSICIAN,NORTH OAKS MEDICAL CENTER,J1100\nACTUARY,N/A,J1200\nEXECUTIVE VP FOR POLICY,FINANCIAL SVCS FORUM,F0000\nATTORNEY,LOURENCO & LINVILLE PC,Y4000\nLawyer,Sonosky Chambers,K1000\nACCOUNTANT,,Z9500\nCEO,Blossom Management,F4500\nOWNER,CREDIT RESTORATION OF TEXAS,Y4000\nCEO,\"Central Wholesalers, Inc\",Y4000\nREAL ESTATE BROKER,CHOICE REALTY CO.,F4200\nIT MANAGEMENT,\"THE PMI GROUP, INC.\",F3100\nSSM HEALTH CARE/PRESIDENT/CEO,,H0000\nTHE LATTIMER GROUP,,Y4000\nEMERGENCY PHY,NORTH OAKS MED CTR ED,H1100\nSr Manager-Corp Communications,PPL Services Corporation,E1600\nGENER,SAN IDEFONSO ENTERPRISE CORP.,Y4000\nMATH,VOLUNTEER STATE COMM. COLLEGE,H5100\nP H REFRIGERATION INC,,Y4000\nS.W.B. ASSOCIATES,,Y4000\nRetirement Community,Horizon Bay Senior Community,H2200\nDEPT PF LABOR,,X3000\nHIGHER EDUCATION ADMINISTRATOR,LAKE AREA TECHNICAL INSTITUTE,H5200\nReporter,Mainichi,Y4000\nFinancial Executive,Ch2m Hill,B4000\nEngineer,University Of Cincinnati,H5100\nOwner,Jerke Construction Co.,B1500\nPartner,Girardi and Keese,K1000\nMERCHANT,,F1100\nIONIAN TRANSPORT,,T7000\nMD,Mount Sinai School of Medicine,J1200\nRESEARCH SCIENTIST,SCHOOL OF MEDICINE/RESEARCH SCIENTI,Y4000\nGOODPASTURE MOTOR CO INC,,Y4000\nEXECUTIVE,RMC RESEARCH,Y4000\nCEO,Pioneer Health Services,Y4000\nEditor in Chief,House Plans.com,C5140\nDEVELOPMENT ADMIN,,Y4000\nVAN DERVEER GAS COMPANY INC,,Y4000\nPresident/C.E.O.,\"Osterkamp Trucking, Inc.\",T3100\nEXECUTIVE,\"PEOPLE TEC, INC.\",C5130\nTRADE ASSOCIATION,BERMUDA INSURERES,F3000\nPresident,Bachrach & Co.,Y4000\nMELBURG WEISS,,K1100\nLawyer,Chiomenti Studio Legale,Y4000\nproducer,fink productions,Y4000\nPhysician,Ohio Valley General Hospital,H1100\nLOWERY THOMPSON & KING,,Y4000\nPresident- Software,Galaxy Global Corporation,Y4000\nGESTALL PRODUCTIONS,,Y4000\nSYRACUSE SECURITIES INC,,F2100\nVICE PRESIDENT,AVALOTIS CORPORATION,Y4000\nATTORNEY,\"BROOKFIELD PROPERTIES MANAGEMENT, LLC\",Z9500\nDEALER,,T2310\nWILLIAMS,,E1140\nTAX PREPARER,MELVIN MORA & ASSOCIATES,Y4000\nDIRECTOR OF CLINICAL CYTOGENETICS,\"MIRACA LIFE SCIENCES, INC.\",H3400\nATTORNEY,GOLDBERG & EASTERLING,Y4000\nVOLUNTEER,INFORMATION REQUESTED PER BEST EFFORTS,F4100\nCorp Officer,Answer-All Secretarial,Y4000\n\"Architect, IT Vice President\",\"TVS Services, Inc\",B4200\n\"DIR, GLOBAL ELECTRICAL PURCH\",FORD MOTOR COMPANY,T2100\nweb Programmer,Self employed,Y4000\nLAWYER,FANNIE MAE,F4600\nOMNIPRINT INC./PRINTER/PUBLISHER/PR,,C1100\nNURSE,CROZER CHESTER MEDICAL CENTER,H1710\nDIRECTOR CUSTOMER ANAL,\"PFIZER, INC.\",H4300\nPSYCHOLOGIST,STEPHENS COLLEGE,H5100\nPresident,Becraft Associates,J7400\nPRESIDENT AND CEO,KRYPTIC CORPORATION,F1000\nInformation Reqested,Mundy Roger & Assoc,K1000\nSALES MANAGER,FLEXTRONICS INC,Y4000\nCORP. OFFIC,SANTIGO COMMUNITIES INC,Y4000\nLOS ALTOS SCHOOL DIST,,X3500\nAPPAREL MFG,KINGLY MFG CORP,M3100\nARCHISTRUCTURES INC,,B4200\nOwner,Ellen Memorial,Y4000\n\"PAUL, WEISS, ....\",,K1000\nCERTIFIED PUBLIC ACCOUNTANT,\"GRACE NKENKE, CPA\",F5100\nEXECUTIVE,HEINZ & COMPANY,Y4000\nTURBO WEST INC,,Y4000\nEmergency Physician,Pomerado Hosp,H1100\nPOLITICAL CANDIDATE,NA,Z9000\nPhysician,NYU Hospital,H1130\nGREYSTONE CONSTRUCTION,,B1500\nPresident,Stolar Horizon,M9000\nCHIEF LEGAL COUNSEL,CALIFORNIA PLANNED PARENTHOOD ED FUND,J7150\nExecutivr,\"Gakaey Systems, Inc.\",Y4000\nAttorney,\"Koskoff, Koskoff & Biede\",K1100\nQUEENS BLVD EXT CARE FAC,,Y4000\nArchitect,Michael Brady inc,Y4000\nC.E.O.,FLORIDA COALITION FOR CHILDREN,Y4000\nBURKE AND WRIGHT,,K1000\nUnemployed,na,J1200\nINNER ASIAN EXPEDITIONS,,J7400\nSYTECHNOLOGY INC,,B4000\nStudent,Student,G5000\nINSURANCE,OLYMPIC INSURANCE/INSURANCE,F3100\nBUSINESSPERSON,COBURN COMPANY,A4200\nP,UNIVERSITY OF VIRGINIA LAW SCHOOL,H5170\nPIPELINE WELDER,,J1100\nPhysician,None- Currently at Home With Little ch,Y1000\nCPA,INTERSECTIONS INC.,F5200\nA GAVALAS & SON INC,,Y4000\nPresident & Chief Ex,Cable One  Inc.,C2200\nManager,Northwood Energy Corporation,E1000\nRegistered Nurse,University Of California San Francisco,H5100\nPresident,Kennedy & Associates,F4000\nAttorney,Crowell & Moring Llp`,K1000\nJ LOHR PROPERTIES,,G2820\n\"OWNER: I.C.R. CONTRACTING, L.L.C.\",SELF-EMPLOYED,B3000\nOral Surgeon,George Kotsakis DMD Ltd.,H1400\nSales,Rbc Dain Rauscher,J1200\nINSURANCE SA,COURI INSURANCE AGENCY,F3100\nCanadian Pacific,Engineer,B4400\nINVESTOR,BRETTON CAPITAL MANAGEMENT,Y4000\nAccount Manager,McKesson Corp,H4400\nPROJECT MANAGER,CONTRACTOR,B1500\nBOB MATHEWS CONSTRUCTION CO,,B1500\nMusicia,Self employed,Y4000\nPACIFIC COMMUNICATIONS,,C4000\nATTORNEY,THE GALLAGHER LAW FIRM,K1100\nAttorney,American Immigration Law Offices,K1000\nMORTGAGE INVESTMENTS,,F4600\nOPTOMITRIST,MAINE MALL EYE CARE,Y4000\nFLOORING,RICHARDET FLOORING,Y4000\nGLENN LAW ASSOCIATES,WALTHER,K1000\nSALES,US-ANALYTICS,Y4000\nPhyscian,Anesthesia Associates,H1130\nRice Broker,\"KBX, Inc.\",A1600\nIR,homemaker,C5140\nCompliance,AAG Claims,Y4000\nVice President,\"Reliable Automotive,Inc\",Y4000\nIT,INTFOR,J1200\nCOOK COUNTY CMO,,X3000\nExecutive,Fidelety Investments,Y4000\nSPEARS WORLD TRAVEL AG,,Y4000\nAsp Developer,ESC,Y4000\nPresident/CEO,L G Everist Company,B5100\nAttorney,\"Nelson Mullins Riley & Scarborough,\",K1000\nBUSINESS EXECUTIVE,MEWBOURNE OIL COMPANY,E1120\nOWNER,A ALLEN MOVING & STORAGE,T3100\nOKLA ALLERGY CLINIC,,H1130\nArchitect,Helix Architecture,B4200\nHOHN MANUFACTURING,,Y4000\nLACROSSE SCHOOL D,U OF WI-LA CROSSE,H5100\nPresident Eastern Re,Manhatten Construction,B1500\nPartner,Settoon Dock Service,T6200\nAuto Wholesaler,Abraham Nemoui,Y4000\nSELF EMPLOYED,BLUE GRASS FUND,J5100\nInformation Requeste,Schmidt Consulting,Y4000\n\"Attorney, TRUST ADMI\",JPMORGAN CHASE/BANK ONE,F1100\nManager,Peoplesoft,C5120\nPresident,PDS Energy,E1000\nSurgeon,United Surgical Associates,H1130\nSpecial education te,East Penn School District,X3500\nCASH MANAGER,\"BEEF PRODUCTS, INC.\",G2300\nOWNER,MULTI CARE MANAGEMENT,Y4000\nSTAMM INTERNATIONAL,,J7400\nSELF,NICHOLAS GALVANIZING,Z9500\nSECTOR PROGRAM MANAG,UNITED PARCEL SERVICE INC.,T7100\nteacher,Duarte Unified School District,J7300\nVICE PRESIDENT,SUPERVALU,G2400\nBLOCK DRUM LTD,,G4900\nVANWYK REAL ESTATE,,F4000\nVice President,Pacific Gas and Electric Company,E1620\nJOHN HANCOCK FUNDS,,F2100\n\"ROBINSON, SILVERMAN, PEARCE, ARONSO\",,K1000\nSALES REPRENSTA,U.S. FOODS SERVICES,Y4000\nVice President,Vacation Break,T9400\nNATIONSCREDIT COMMERCIAL CORP EQUIP,,G5300\nPhysician,Prima Health Care,Y4000\nINSURANCE,MIKE RADOVICH STATE FARM,A1000\natty,Benton County,X3000\nADMINISTRATOR,ICS HEADSTART,Y4000\nATTORNEY,PEERMAN DAVIS LLC,K1000\nOperations Manager,Guardian Alarm Co Of Michigan,Y4000\nCMO,ITT EDUCATIONAL SERVICE,H5300\nBLACKACRE CAPITAL MANAGEMENT LLC,,F2100\nTOM JONES FORD INC,,T2300\nOsteopathic Physicia,UNT Health Science Center,H0000\nE HUNTINGTON INC,,Y4000\nTEACHER,WALLACE CCSD,Y4000\nINFORMATION REQUESTED,PERFORMANCE TRUST CAP. PART.,F2100\nInvestment Management,Corry Capital Advisors,F2100\nPRESIDENT,EBCO INC,Y4000\nCompany President,\"Rocha Transportation, Inc.\",T3100\nNELSON FRAZIER FUNERAL HOME/OWNER/F,,G5400\nLAWYER,\"RUSING & LOPEZ, PLLC\",K1000\nGovernmental Affairs,Roche Pharmaceutical,H4300\nCONTRA COSTA COMMUNI,,Y4000\nFurniture,Self employed,G4400\nPRESIDENT & CEO,BLUE CROSS OF KC,F3200\nPROBANK,,Y4000\nMANAGING D,MC KENNA LONG & ALDRIDGE,K1000\nCourt Coordinator,Cook County,X3000\nATTORNEY,BALLARD SPAHR L.L.P./ATTORNEY,K1000\nBENCKENSTEIN & OXFORD L L P,,K1000\nSection Manager 2,GE Infrastructure,M2300\nREAL ESTATE,URGENT INC,Y4000\nN/A/PSYCHIATRIST (RETIRED),,X1200\nGENCRAFT CORPORATION,,Y4000\nACCOUNTANT,PRUET PRODUCTION COMPANY,E1160\nDEALER/ OWNER,SELF,T2300\nFOUNDER,SAFE AUTO INSURANCE COMPANY,F3400\nOWNER,COMPUTER DATA SOLUTIONS,Y4000\nGEORGIOU,KOLONAKI,M3100\ninventor,Self employed,G0000\n\"MILGRIM, THOMAJAN & LEE\",,J7400\nACCOUNTANT,\"HERMAN-MORRIS ENTERPRISES, INC\",Y4000\nPRESIDENT,ENSTAR NATURAL GAS,E1100\nPhysician,Louisville Orthopedic Clinic,Y4000\nDIAGNOSTIC IMAGING ASSOCIATES OF MD,,H1130\nRADIOLOGIST,PLAINS RADIOLOGY,Z9500\nCOMPUTER ENGINEER,N/A,C5120\nDUNBAR & MARTEL,,Y4000\nW.H.C. PROPERTIES INC.,,F4500\nEXECUTIVE,GREENSPUN CORPORATION,J1200\nretired probation of,retired from l.a. county,Z9500\nB,\"E.E. WARD MAURY & STERAGE CO, LLC\",Y4000\nTAYLOR - HYDE & ASSOCIATE,,Y4000\nDENT,BARDELL DENTAL ASSOCIATES S.C.,H1400\nNurse,State of Alaska,H1710\nPresident,NLS Communities,J1100\nVENTURE CAPITAL,AOK MANAGEMENT & COMPANY,Y4000\nHAWAII MANAGEMENT ALLIANCE ASSOCIAT,,Y4000\nFINANCE,\"TENASKA, INC\",E1630\nAUTO TRAI,UNITED PARCEL SERVICE INC,T7100\naccountant,Post Carbon Institute,Y4000\nBANKER,CENTRAL FINANCIAL,F0000\nCEO,ARISTA AIR CONDITIONING CORP.,B3400\nAttorney,Dept Of JustiCE,X3200\nCHERRY ROAD FILMS,,C2400\nExecutive,Eagle Registrations,Y4000\nPSYCHOLOGIST,MINNESOTA PSYCHOLOGICAL ASSOCIATION,H1110\nTECHNICAL WRITING,SEAMANS,Y4000\nFUNERAL DIR,\"BRASHEAR'S FUNERAL HOME\",G5400\nASSEMBLYMAN,NJ STATE ASSEMBLY,Z9500\nSAUNDERS STROBE AND TRAWICK,,Y4000\nLandscape Designer,Self,B3600\nCHAIRMAN/CEO,INDIGO MINERALS/CHAIRMAN/CEO,E1230\nOCEAN TECHNOLOGIES LTD,,Y4000\nDiagnostic Radiologist,\"Rocky Mountain Radiologists, P.C.\",H1130\nOwner,Self Employed,J1200\nPEDIATRIC CARDIOLOGY AND PEDIATRICS,\"CHILDREN'S HOSPITAL MEDICAL GROUP\",H2100\nR F STRAIN INS,,F3100\nGROUP PRACTICE,DAVID ROSENBERG MD,H1100\nPRESIDENT,MEDICOMP INC,Y4000\nConsultant,the Wellness Corp,J1200\nChairman,Whitney Communications,Y4000\nAttorney,\"David Golden, PA\",Y4000\nSenior Advisor,TPA Private Equity,F2600\nOIL,,B4000\nPUBLIC AFFAIRS,CAPITOL IDEAS,Y4000\nATTO,BRUMER COHEM KANDELL & KAUFMAN,Y4000\nManaging Partner,Smart Forest Venture,Y4000\nPRESIDENT,STUART ESTATE PLANNING,Y4000\nProject Management,Epic Systems Corporation,C5120\nPHYSICIAN,DESERT CARDIOLOGY CONSULTANTS,H1130\nINVESTMENTS,BLACKSTONE MINERALS,E1200\nDRS KIERSTEIN & DIFRANCESCA DPM PC,,H1130\nCEO,BAYER PROPERTIES,Z9500\nHistoric Preservatio,Self,J1200\nPresident,\"Iowa Insurance Consultants, Ltd\",F3100\nPACIFIC TRIANGLE MANAGEMENT CORP,,F4200\nChairman,LPL Financial Corporation,F2100\nCEO,SGVOP,Y4000\nPROFESSIONAL GEM DEALER,BISMARCK GOLD & SILVER EXCH,Y4000\nAUTO DEALER,TRI STATE AUTO AUCTION,G5000\nGFN INC,,J7300\nCEO,,F2100\nHOUSEHOLD FINANCE CORP GRP EXEC CON,,F1400\nDUE DILIGENCE ATTEMPTED 8/3/04/TEAC,,X3500\nFREIGHTLINER CORP,,J7400\nGEN. MANAGER & CHEIF EXECUTIVE OFF,W.E.T. AUTOMOTIVE SYSTEMS,T2000\nMANAGER,\"GWIN'S PRINTING\",C1300\nSCDSS CHILD SUPPORT DIVISION,,Y4000\nHOSPITALITY MANAGEMENT SYSTEMS CO,,Y4000\nBUSINESS EXECUTIVE,BLACKSTONE,Y4000\nSVP Planning & Bus Dev,Plum Creek Timber Company,A5000\nELEVATOR CONSULTANT,SELF,Y4000\nSTATE AFFAIRS,GROCERY MANUFACTURES/FOOD PRODUCTS ASS,G2400\nOIL AND GAS PRODUCTION,P.A. MCGINLEY OIL AND GAS,Y4000\nExecutive,Leibsohn Construction,F4000\nCARDIOLOGIST,SOUTHERN OREGON CARDIOLOG,H1130\nPRESIDENT/OWNER,RANGE OIL COMPANY INC.,E1100\nJA FREEMAN & SONS,,Y4000\nMember,Lenfest Foundation,C2200\nMACHINE SHOP OWNER,SELF,M5000\nGOVT. AFFAIRS,SELF,Z9500\nADVERTISING,DENTON ADVERTISING,G5210\nREGIONAL DIRECTOR,RURAL/METRO CORP,H3000\nprofessor,university of Wisconsin,H5100\nPresident,\"Ruby's Beauty Salon & Spa\",G1200\nOWNER,PREFERRED AU,Y4000\nBusiness Executive,\"Mestek, Inc.\",Z9500\nEXECUTIVE,CHARLOTTE PIPE,M2100\nCattle & Trees Raise,Self-Employed,A3300\nPROJECT MANAGER,CASECENTRAL INC.,Y4000\nBANKER,STATE CENTRAL BANK,F1100\nHVAC,SELF-EMPLOYED,J1200\nSales,4-Star Hose & Supply,Y4000\nFMA ENTERPRISES INC,,F5200\nSystems Support Representative,I.B.M.,C5100\nSelf Employed,Waldman Mgt. Group,Y4000\nADMINISTRATOR,US GENERAL SERVICES ADMINISTRATION,Z9500\nCEO,GAVILON,A4100\nINS,THE BENEFIT SERVICES GROUP INC.,Y4000\nYOUNSTOWN BUICK PONTIAC,,T2300\nChief Deputy Attorney,State of Nevada,X3000\nCTO,Allston Trading,F2100\nVeterinarian,Veterinary Referral Hospital P. A.,A4500\nLITCO INC,,Y4000\nPresident,Parr Studios,Y4000\nPresident,American Trucking Association,T3100\nVice President,\"RCM&D, Inc.\",B0500\nExecutive,Shamrock Foods,G2100\nCONGRESSMAN GRANDY,,X3000\nMgr Engineering,GM Associates WNGG International,Y4000\nCASPER BEVERAGE,,Y4000\nOceans Shipping,OCEAN SHIPMANAGEMENT,Y4000\nWESTERN PSYCHIATRIC,,H1110\nFANGORN LIMITED PARTNERSHIP,,Y4000\nPharmacist,ION,C2100\nINTERNATIONAL BUSINESS DEVELOP,SELF,J1200\nKGIN-TV,KOLN,C2100\nLEED ELECTRIC INC,,B3200\nLong Term Disability,Disabled,X1200\nGENERAL COUNSEL,TEMPLE INLAND INC,Y4000\nPRESIDENT,\"S-CON, INC.\",E1140\nDUFFORD WALDECK ET AL,,K1000\nOWNER,MIL-VID PROPERTIES,F4000\nVICE PRESIDENT,CHARTER FURNITURE RENTAL INC,F4500\nPresident,Kenworth Of Tennessee Inc - Nashville,T2300\nMANAGER,SOC.,Y4000\nEXECUTIVE,GREAT LAKES BEVERAGES,G2850\nManager,cat,Y4000\nAttorney,\"Robbins & Reynolds, PA\",K1100\nUnemployed,Unemployed,G5210\npresident,Hovnanian & Sons LLC,J7500\nWESTNER PARTNERS,,J1100\nOwner,Pierce County Security Inc.,G5290\nDiagnostic Radiologist,SDDR,H1130\nENGINEER/CONSULTANT,\"NEUMAN PROCESS CONSULTING, LLC\",G5200\nOWNER,CCMI,Y4000\nFOUNDATION & STRUCTUR,SELF EMPLOYED,Y4000\nPresident,Associated Beer Distributors of Illino,G2850\nBanker,Town & Country Bank,F1000\nTHOMAS & CO INC,,Y4000\nEXECUTIVE VICE PRE,MONSANTO COMPANY,A4100\nFINANCIAL PLANNER,BANK OF LANCASTER,Y4000\nBOARDMEM,BOARD OF NATURAL RESOURCES,Y4000\nPOLICY DIRECTOR,COVINGTON & BURLING,K2000\nUNION PAVING,,B1000\nMARKETING SERVICES,GROW MARKETING,Y4000\nIt,Univ Of Wi,H5100\nVice President For E,Saber Corp,C5120\nMARKETING,SEALANE MARKETING,Y4000\nLIFE INSURANCE AGENT,BANKERS LIFE,F3300\nCHAIRMAN OF THE B,HORTON INDUSTRIES,T2200\nLAW SNAKARD & GAMBELL,,Y4000\nCO-CHIEF EXECUTIVE OFFICER AND FOUNDER,IDENTITY VENTURES,C0000\nSTAMMER & MCKNIGHT,,K1000\nBLOOM HOCHBERG & CO,,F5100\nInformation Technology,Asset Management Network,Z9500\nINERGRATED HEALTHCARE AUDITING & SE,,H3000\nBUSINESSMA,GUARDIAN INDUSTRIES CORP,M7200\nPLANT MANA,HEAVEN HILL DISTILLERIES,G2820\nGOVERNMENT AFFAIRS,LIMITED BRANDS,G4100\nEXECUTIVE VIC,\"ENERGYSOLUTIONS, INC.\",E3000\nFIDLER,SELF-EMPLOYED,G0000\nPresident,Burk Royalty Company,E1120\ngovernment relations,Intermec,C5130\nCHAIRMAN PRE,WILLIAMS COMPANIES INC,E1600\nExecutive Vice Presi,Turner Network Sales Inc.,C2200\nMAC KAY & SOMPS CIVIL ENGR,,J1100\nCONSULTANT,\"HOWIJON CARE COORDINATORS, INC.\",Y4000\nN/A/HOUSEWIFE,,H0000\nVice-president- human Resources,Hexion Specialty Chemicals,M1000\nMANAGER,FUND FOR THE CITY OF NY/MANAGER,Z9500\nSr. VP,J.E. Higgins Lumber Co.,A5000\nMayor,City of Missouri,X3000\nCOURTESY FORD INC,,T2300\nPRESIDENT OF TELECOMMUNICATION COMPANY,MASTER CALL CORPORATION,Y4000\nAttorney,Meyer & Brooks,K1000\nRTIRED,RETIRED,X1200\nPresident,\"Hy Tech Marketing, Inc.\",Y4000\nFUND CONSULTANT,,J7400\nTHERAPIST,WESTCHESTER JEWISH COMMUNITY SERV,J7500\nREAL ESTATE BRO,HARRY NORMAN REALTY,F4200\nVENTURE CAPITALIST,NAUTA CAPITAL,Y4000\n\"SOUTHEBY'S\",,Y4000\nSEQUOIA HOSPITAL,,H2100\nPresident / CFO,Ncta,C2200\nDeveloper,JOAO Construction,B1500\nPROFESSOR,PENN STATE/PROFESSOR,H5100\nCOMMERCIAL REAL,CHOZICK REALTY INC.,F4200\nFinancial Printer,RR Donnelley,C1300\nJD,PR LLC JD,Y4000\nCo-director,Pro Peninsula,J1200\nJ B L CONST CO,,B1000\nMANAGER,MPS,Y4000\nSPECIAL COUNSEL,IRS,Y4000\nSTAF,UNIVERSITY OF ALASKA FAIRBANKS,H5100\nPublic Relations,South Georgia Medical Cnt.,H0000\nIT Manager,Rock-Tenn Company,M7100\nSR. VP HUMAN RES,ACUITY BRANDS INC.,M6000\nTechnology Consultan,Micro Consultations,Y4000\nEDMINISTER HINSHAW RUSS & ASSOC,,Y4000\nExecutive,Airbus North America,T1200\nPARTNER,READY MORTGAGE LENDERS,F4600\nH OF 7,,Y4000\nBANKER,DECORAH BANK & TRUST CO,F1100\nDIRECTOR,WEINSTOCK MANION,Y4000\nPHYSICIAN -RADIOLOGY,-------,F1100\n\"Director, Customer Service\",American Express,F1400\nLobbyist,Butera and Andrews,K2000\nOWNER,CENTER FOR DIAGNOSTIC IMAGING,H2000\nCEO/CHAIRMAN,R.H. BARRINGER DIST.,G2850\nJOHNSTON BROWN BURNETT &,,F2100\nPT,PHYSICAL THERAPY ASSOCIATES OF SMITHTO,H1700\nOfficer,Christa Construction,B1500\nAttorney,Zolla & Meyer,K1000\nPROFESSOR,HOFSOTA UNIVERSITY,H5100\nPresident/CEO,M & R Management Co Inc,B2000\nCFO,DGN TECH,Y4000\nEO - CORP BANKING,\"COMPASS BANCSHARES, INC.\",F1100\nConsultant Self,Crm Advisors,Y4000\nPhilanthropy,William J Clinton Found,X4100\nHERITAGE RESIDENTIAL SERVICES,ADMINISTRATOR,Z9500\nSOFTWARE ENGINEER,RAYTHEON/SOFTWARE ENGINEER,D3000\nPRESIDENT,\"MANAGEMENT RESOURCE SYSTEMS,INC.\",Y4000\nBANKER,HONESDALE NATIONAL BANK,F1100\n\"PRESIDENT'S COMMITTEE ON ARTS/HUMANITI\",FEDERAL GOVERNMENT,X3000\nAttorney,\"McCario, Helm & Bertling, SC\",Y4000\nEXECUTIVE,RED HILL FOREST PRODUCTS,A5000\nHAMERSHLAG KEMPNER & CO,,F2100\nWRITER,F5 NETWORKS,C5120\n,\"JACOBS, GRUDBERG, BELT, DOW & KATZ\",K1000\nPENSACOLA AVIATION,,T1000\nCONTRA,GILBANE CONSTRUCTION COMPANY,B4000\nPresident,Westaco,Y4000\nCHI,COURRSANT CORRECTIONS HUNT CARE,Y4000\nCEO,FIRST INSIGHT CORP,Y4000\nWRITER,\"PICKVEE, INC.\",Y4000\nPROFESSOR,UNIV OF OR,H5100\nBACKSTRETCH FARMS,,A0000\nAttorney,Trice Law Firm,K1000\nHOUSEWIFE,SELF,F4600\nPHYSICIAN,TALBERT MEDICAL GROUP,Y4000\nRETIRED PROFESSOR,HARVARD UNIVERSITY,H5100\nPRESIDEN,AESTHETIC ENHANCEMENT CTR.,Y4000\nRetired Announcer,N/A,X1200\nPrincipal,International Academy School,Y4000\nTV PRODUCER,STEVEE B PRODUCTIONS,C2400\nOBSERVATORY GROUP/FOUNDER/CEO,,G5210\nJUDGE COUNTY COURT AT LAW,NUECES COUNTY,X3000\nCPA,,C5100\nADMINIST,ST. VINCENT MERCY HOSPITAL,H2100\nFILM TRANSIT INC,,T0000\nOWNER,STOLTZ METALS,M5000\n\"BAE SYSTEMS, INC.\",PRESIDENT AND CEO,Z9500\nPHYSICIAN,GRAPER COSMETIC SURGERY,H1100\nVINSON & ECKONS,,K1000\nVice President Development,Grayco Partners LLC,F4100\nEXECUTIVE,ROBERTS PROPRIETARIES INC.,Y4000\nDIRECTOR OF SALES,\"F.E.B. DISTRIBUTING CO., INC.\",G2850\nDOCTOR,BAD RADIOLOGY,H1130\nNURSE,PLANNED PARENTHOOD OF MN,J7150\nInformation Requeste,Information Requested,H3500\nADMINISTRATOR,G & R ALAMEDA,Y4000\nUNITED BLACK FUND,,Y4000\nVice Chairman & Cfo,Norfolk Southern Corporation,T5100\nCONS,\"SWENSON STONE CONSULTANTS, LTD\",Y4000\nCOUNSELOR,,F4500\nDIAGNOSTIC RADIOLOGIST,JOHN F KENNEDY MEMORIAL HOSP,H1130\nATTORNEY,COBLENTZ ET AL,K1000\nQUENTIN NESBITT DATA,,J1100\nSKADDEN ARPS LAW,,C4000\nPresident,Secure Investors Group,Y4000\nBARLOW & GARSEK,,K1000\n\"President & GM, Maritime Sector\",Titan Systems Corporation,D3000\nMARINA MANAGEMENT,MARINAS INTERNATIONAL,Y4000\nATTORNEY,BATES MCGRATH & MAGLIOCCO,Y4000\nAuto Dealer,Infiniti of Willow Grove,T2310\nPRESIDENT/DESIGNATED BROKER,COMMERCIAL PROPERTIES INC.,F4000\nVICE PRESIDENT GOVERNMENTAL AFFAIRS,\"EHEALTH, INC.\",F3100\nRestaurant Owner,Double Eagle Restaurant,G2900\nREAL ESTATE INVESTM,MILLER BROS LLC,F4000\nGeneral Manager - Ce,GE Transportation,M2300\nV.P. SALES,GENERAL BONDED WAREHOUSES INC.,Y4000\nAVSTAR MORTGAGE,,F4600\nMANAGER,FOREST LAWN CEMETERY,Y4000\nENGINEER/PRESIDENT & C.E.O.,\"ARIAS & ASSOCIATES, INC.\",Y4000\nCOMMONWEALTH FOUNDATION,,X4100\nPHYSICIAN,\"NEMOURS CHILDREN'S HOSPITAL\",H2100\nExecutive,PEGAS,Y4000\nLA BRUCHERIE FARMS,,Y4000\nINVESTMENT MANAGER,BREVAN HOWARD,Y4000\nR.V.N Test Coordinat,Wastor Corp.,Y4000\nJONES WALKER ET AL,,K1000\nJAMES E SWITZER LLC,,Y4000\nProffessor Of Otolar,Robert T. Sataloff M.d. Dma,H1100\nMARKETIN,UNITED PROPERTY MANAGEMENT,F4500\nFOX DEVELOPMENT CO,,F4100\nSAPERS & WALLACK,,F3100\nEngineering Manager,Texas Instruments Incorporated,C5110\nVIDEO PRODUCER,SELF EMPLOYED,F3200\nLawyer,\"Orrick, Herrington & Sutcliffe, LLP\",J1200\nMARIETTA DAILLY JOURNAL,,C1100\nCEO,POSITRONICS INDUSTRIES,Y4000\nCLINTON MEMORIAL HOSPI,,H2100\nR&M RESOURCES,,G0000\nRETIRED -ARABIAN HOR,PLUM NEARLY RANCH,J6200\nHR Director Global Ops,Covidien,H4100\nTAX CONSULTANT,WALKER INTERNATIONAL ENTERPRISES INC.,G5200\nProgram advisor,Dept. of Health,Y4000\nBANKER,RICHLAND BANK,Y4000\nART Consultant,\"Designers ART & Acessories, INC\",Y4000\nINVESTMENTS,BETA CAPITAL GROUP,F0000\nAttorney,\"Jacobs, Burns\",K1000\nCFO,21st Mortgage Corp.,B2400\nINFORMATION REQUESTED,N/A,Y4000\nYOAKUM ISD,,X3500\nEXECUTIVE,POLY CORR INC.,Y4000\nHAWKINS INS GRP,,F3100\nPortfolio Manager,Elliott Management Corporation,F2700\nMANAGING,FISH CREEK INVESTMENT CO.,F2100\nSELF EMPLOYED,ENVIROVENTURES,Y4000\nMORTGAGE BANKER,PROVIDENT FUNDING ASSOCIATION,F4600\nSUPERVISOR,DIGITSCOPE/SUPERVISOR,Y4000\nREAL ESTATE,GASSEN COMPANY,Y4000\nREGIONAL SALES MANAGER,TOWER TECH INC,Y4000\nCONTRA,HARBOR VIEW CONTRACTORS INC.,B0500\nOffice Manager,Michael Brian Atty At Law,K1000\nBICO ASSOCIATES PARTNERSHIP,,F4000\nLawyer,\"Kirkland & Ellis, LLP\",J1200\nPRESIDENT/CHIEF EXECUTIVE OFFICER,FIRST NATIONAL BANK IN MAHNOMEN,F1100\nLYNDA/SECY & RESEARCH ASST.; VAUGHN,\"KEN HOWARD, ABUNDANT LIVING INFO SV\",Y4000\nChief Executive Offi,Northwestern Medical Center,H2100\nATTORNEY,SELF - PETERS LAW FIRM,K1000\nCOLSON HICKS EIDSON AND MATTHEWS,,K1100\nPHYSICIAN,\"RICHARD CERRUTI, MD\",H1100\nNATUROPATHIC PHYSICIAN,SELF,H1700\nMCCOY BOLT WORKS INC,,J6200\n\"Vice President, Market Manager\",Spanish Broadcasting System,Y4000\nFAMILY FARM,FARMER,A1000\nAttorney,\"Leach&Minnick, PC\",K1000\nEXECUTIVE MANAG,MORGAN KEEGAN & CO.,F2100\nLABOR COMMISSIONER,DEPT OF LABOR,X3000\nSENIOR V.P. AND CHIEF NURSING OFFICER,UNIVERSITY OF NORTH CAROLINA HOSPITALS,H2100\nInformation Requeste,SCE&G,E1620\n,\"STEPHENSON ENGINEERING GROUP, INC.\",B4400\nBERGNER & BOCKORNY INC,,K2100\nCPA,TONNESON & CO,Y4000\nPHOTOGRAPHER/CONSULTANT,SELF-EMPLOYED,G0000\nVideo Editor/Dp-Hire me,\"Electric Picture Company, Inc\",Y4000\nDICHT & HORN,,K1000\nLANDMARK CONST CO INC,,B1500\nCAMPGROUND OWNER,,T9000\nFARMER,AM-SOD INC.,A1000\nDENTIST,\"GRAY STEPHENS, DDS\",Y4000\nFEDERAL PROTECTION INC,,Y4000\nMINING TECHNOLOGIES,,E1200\nALD,14TH WARD REG. DEM ORGANIZATION,J1200\nLAW OFFICE OF RICHARD MITHOFF,,J7150\nPartner,Tate Moerer & King LLP,Y4000\nowner/president,mobilized me,Y4000\nFilm Editor,Perdido Productions,Y4000\nTERRY FISHER ENTERTAINMENT,,Y4000\nMILLBROOK DEVELOPMENT CO,,Y4000\nHAYCOCK DIST CO,,E1160\nProgrammer,Siebel Systems,C5120\nSVP Research,\"Steben & Company, Inc\",F2000\nREGULATORY AFFAIRS,GLAXOSMITHKLINE,H4300\nATTORNEY,DIALYSIS PATIENT CITIZENS,Z9500\nEXECUTIVE,SIGNAL MEDIA,Y4000\nInformation Technology Director,Franklin Templeton,F2100\nOWNER,POTTS REALTY & AUCTION,F4200\nC.E.O.,DISCOUNT ANSWERING SERVICE/C.E.O.,J1100\nANTIQUE DEALER,SELF EAPG INC,G4600\nGENERAL MANAGER,\"REPTILE, INC.\",Y4000\nSHEPHERD HILLS,,Y4000\nATTORNEY,\"LAW OFFICES DOROSHOW, PASQUALE, KRAWIT\",K1000\nLATHAM & WATKINS,ADMINISTRATOR,Z9500\nAUTOMOBILE DEALE,GOODWIN AUTOMOTIVE,Y4000\nKTI RECYCLING OF NE,,M2400\nCNO,NORTH FLORIDA REG MED CTR,H2100\nVICE PRES. LEGISLATIVE AFFAIRS,LOCKHEED-MARTIN/VICE PRES. LEGISLAT,D2000\nHOUZE & ASSOCIATES,,Y4000\nREAL ESTATE DEVE,BRACKETT & COMPANY,F4000\nRESTAURANT PROPRIETOR,SELF,G2900\nBusiness Owner,\"Abigail's Children's Boutique\",Y4000\nBuilding Engineer,Witkoff Group,J1200\nPRESIDENT/CEO,RESOURCE ONE CU (TX),F1300\nproperty management,prd management inc,Y4000\nChief Medical Office,Cardium Therapeutics Inc,H4300\nOwner,Reiter Enterprise,Y4000\nDENTIST,ROBERT WEBSTER DDS,H1400\nPrinciple,Health Management Associates,H2100\nAccountant,King of Fans,Y4000\nSECRETARY,ALLIHA HOSPITALS & CLINICS,H2100\nCARUTHERS PRODUCING CO,,E1120\nREAL ESTATE,R.A. COHEN & ASSOCIATES. INC.,J5100\nPRIVATE CLIENT ADVIS,ALLIANCE BERNSTEIN,F2100\nHEALTHCARE,FOOTHEALERS,F4200\nREALTOR,RE/MAX 100,Z9500\nV. O. CARFAGNA PC,,Y4000\nmanager,Cosco,Y4000\nBUILDER,TOM BUFORD,F4000\nEXECUTIVE,CIRI,J7500\nAUTHOR,SELF,J1110\nO M SURGEON,,H1130\nSCHOO,OUACHITA PARISH SCHOOL SYSTEM,X3500\nPHYSICIAN,LARRY LEVINSON,Y4000\nCEO,HMA ASSOCIATES,Y4000\nREAL ESTATE,VALIDUS GROUP,Y4000\nFARMER,CREIGHTON BROTHERS LLC/FARMER,Y4000\nATTORNE,\"JOSEPH A. SPIRITI JR., P.A.\",K1000\nOWNER,THE COMBS GROUP INC.,Y4000\nGEORGIA STATE UNIVER,,H5100\nOWNER,FREEDOM AUTOMOTIVE/OWNER,T2000\nPhysicist,CWRU,J1200\nFIANCIAL ANALYS,FEDEX,J1100\nINVESTMENT,RUANE CONNIFF & COMPANY,F2100\nRAYMOND GOLDSTEIN & CO,,Y4000\nPresident of Service,Info USA,G5220\nVP MARKETING,HOLIDAY RETIREMENT,H2200\nATT,FELDESMAN TUCKER LIFER FIDELL &,K1000\nCFO,MCA SOLUTIONS LLC,J5100\nOffice Manager,Erfp,Y4000\nDIRECTOR-COMMUNI,ACI-MARKET FINANCE,C4000\nSecurities Lending Operations,Millennium Management Llc,Y4000\nRETIRED,CALIFORNIA STATE RETIREES,Y4000\nEDUCATOR,THE LEARNING CONNECT,Y4000\nATTORNEY,KASOWITZ BENSON LLP,K1000\nCERTIFIELD PUBLIC ACCOUNTANT,ZACHERY GROUP,J1100\nPHYSICIAN,ANESTH CONSULT VIRGINIA,H1130\nCEO,Rancho Framing Inc.,Y4000\nPARTNER,\"QUIET LIGHT SECURITIES, LLC\",F2200\nBUSINESS AGENT,AFSCME   AK LOC 52,L1200\nPRESIDENT,DISH DIRECT INC,Y4000\nAssn Exec,Lvfc,J1200\nSANTORO TECHNOLOGY ASSOCIATION,,Y4000\nAttorney,\"Rouda, Feder & Tietjen\",Y0000\nPresident,SAC Capital,F2700\nDesigner,Phillpotts and Assoc,Y4000\nATTORNEY,VAN ETTEN SUZUMOTO & SIPPRELLE LLP/,Y4000\nRequested,BNSF Railroad,T5100\nCEO,REAL ESTATE RISK MANAGEMENT,F4000\nMARKET SPECIALIST,,Y4000\nEAST TX NATL BANK,,F1100\nPEACOCK ENGINEERING,,B4400\nLaw Firm Administrat,Schwartz & Shaw PLLC,Y4000\nABC INSURANCE BROKERS INC,,F3000\nphysician,Az Oncology Assoc.,J5100\nCEO,LOGISOLVE LLC/,Y4000\nBUSINESS MANAGER,CEMEX USA,B5100\nMcFarland-Dewey LLC,Executive,G0000\nEXECUTIVE DIRECTOR,PACIFIC ASIAN COUNSELING SERVICE,Y4000\nMANAGER,INDUSTRIAL MACHINE AND ENGINEERING COM,G1200\nPRESIDENT,\"KENT'S KABINET SHOP\",G1200\nROADWAY EXPRESS INC.,,T3100\nDatabase Manager,University of Chicago,H5100\nPHYSICIAN,DEPT OF ARMY CIVILIAN,H1100\nWILTEK INC,,Y4000\nPresident,\"Synagro Mid-Atlantic, Inc.\",E3000\nMITCHELL SUPREME OIL CO,,E1100\nOwner,First Metropolitan Mortgage,F4600\nMEDICAL DOCTOR,HEALTHY TRUST,Y4000\nC.E.O.,\"G.P.M.G., INC,\",Y4000\nDIAZ-VERSON CAPITAL INVESTMENT,,F2100\nBUSINESSMAN,MIRACA,Y4000\nCLEMENT FITZPATRICK & KENWORTHY,,K1000\nInsurance Agent,\"Ronan Agency, Inc\",F3100\nFILM ARCHIVIST,UCLP,Y4000\nVice President,Hovencia LLC,E1100\nHOTEL OWNER,CHANTILLY HOTELS,T9100\nFINANCE,MANSFELDT INVESTMENT CORPORATION,F7000\nnursery manager,\"Peck's Green Thumb Nursery\",A8000\nDirector,Arcadis U.S. Inc.,E2000\nInteroute Telecommun,Vice Chairman,G0000\nSALES REPRESENTAT,DIETZ-FUTRELL INS,F3300\nMARKETING/SALES,QRM,Y4000\nImporter,Business Man,G0000\nWEST G.A. O.B./GYN./PHYSICIAN,,Y4000\nInformation Requeste,Connector MFG Co.,Y4000\nSELF-EMPLOYED,\"HALL'S HARDWARE AND LUMBER\",Y4000\nRealtor,\"One Source Commercial, Inc.\",Y4000\nPRESI,NATIONAL ASSN OF BROADCASTERS,C2100\nLobbyist,Blue Cross Blue Shield,F3200\nPENOBSCOT MANAGEMENT LLC,,F4500\nINSURANCE,DADE COUNTY FARM BUREAU,Y4000\nBRADFORD & MARZEC,,F2100\nDEPT TRANSPORT OBRAS PUBLICAS,,X3000\nTextile Management,Springs Industries,M8000\nBroker,Link Brokers,Y4000\nATTORNEY,LAW OFFICES OF SILVER & TAUBE,K1000\nExecutive Vice President-Rochester Div,\"First Niagara Risk Management, Inc\",F3100\nEXECUTIV,\"BELLE OAKS OF AMERICA, INC\",Y4000\nSALES ENGINEER,ESSEN BIOSCIENCE,Y4000\nPRESIDENT,MORRIS COUNTY CHAMBER OF COMME,G1100\nVP IT OPERATIONS,FIRST ENERGY CORP.,E1600\nUNITED MISSOURI,,Y4000\nSUNSHINE PROPERTIES INC,,F4000\nOwner,Priority Auto,T2300\nHOMEAKER,RETIRED,H4300\nATTORNEY,INTERMEDIA PARTNERS,F2600\nSR. VICE PRESIDENT,CALVERT GROUP,Y4000\nRESIDENTIAL C,WOODEN CREATIONS INC.,Y4000\nInvestments,Carnegie Capital Partners LLC,Y4000\nDirector,Seiu,J1200\nPRESIDENT/CEO,SUPERIOR AIR-GROUND AMBULANCE SERVI,H3000\nCITIZENS BANK OF KY,,F1100\nCEO,United Industries Inc,C5130\nResident Physician,Spartanburg Regional Hospital,H1100\nSales,\"Apple By The Bay, Inc.\",Y4000\nConsultant,Treetop Group,Y4000\nEQUITY ANALYST,WELLINGTON MGMT,F2100\nReal Estate Appraisal,\"Clayton and Co, Inc\",F4000\nCEO,\"KLUNE INDUSTRIES, INC.\",D0000\nBUSINESS OWNER,FELTON BRUSH INC.,Y4000\n\"LOBBYIST, PUBLIC AFF\",\"ELLIS & COMPANY, L.L.C.\",K2000\nREAL ESTATE INVESTMENT,HINES,Y4000\nMANAGING PARTNER,JMG & ASSOCIATES,Y4000\nEXECUTIVE,BLACKTOP CONSTRUCTION,B1500\nPresident,Spooner Metals Inc.,Y4000\nC.E.O.,PPL,E1600\nMARKETING COMMUNICATIONS,\"CRAIG DOUGLASS COMMUNICATIONS, INC.\",Y4000\nATTORNEY,BLOOM & SCHUCKMAN,J1200\nF.I.S. MORTGAGE,,F4600\nAttorney,Harrison Rivard,Y4000\nHOUSEHOLD EXECUTIVE,,Y1000\nMANAGEMENT,BAC,Y4000\nBANK,LAZARD,F2300\nDesigner  /  Owner,Self-Employed,G0000\nRealtor,Windermere Silicon Valley Prop,F4200\nCO PRESIDENT & VP,CAPITAL HOTELS,T9100\nEngineer,Orange County Santit,Y4000\nState Farm Agent,Self-employed,G0000\nADVANTAGE MOLDING,,M1500\nPARRIGON HOTEL MANAGEMENT CO,,T9100\nENTEK INTERNATIONAL,,M1000\nFINANCE,JESSUP & LAMONT,B4400\nINFO REQUESTED,Darwin Partners,Y4000\nExecutive,Capitol Indemnity Corp,Y4000\nHAUALER,SALINAS STEEL BUILDERS,M2100\nPresident,Pyramid Homes,B2000\nMECHINE & WELDING SUPPLY CO,,Y4000\nKENNEDY FOR CONGRESS,,J1100\nClient Services Executive,Health Dialog,H1700\nOWNER,MOULTON INSURANCE AG INC,F3100\nOwner,\"Veldman's\",Y4000\nChief Financial Officer,\"C. B. R. L. Group, Inc.\",G2900\nPARGIN REALTY,,F4200\nPhysician,Executive Internal Medicine,Y4000\nCONTRACT,LYONS WELL DRILLING CO INC,E2000\nExecutive Assistant,Ullico,J1200\nASSISTANT DIRECTOR,SELF-EMPLOYED,C2400\nARMADA OIL & GAS CO,,E1160\nPartner,\"Jefferson Government Relations, LLC\",K2000\nGENERAL MANAGER,INTERSTATE TELECOMMUNICATIONS COOPERAT,C4100\nExecutive,Community Reinvestment Fund,F7000\nOWNER,TERRY WYNTER AUTO.,T2400\n\"ST JUDE CHILDREN'S HOSPITAL\",,H2100\nMANAGING PARTNER,BAYER GROUP,Y4000\nstudent,UNC-Chapel Hill,Y1000\nPRESIDENT,LASCO DEVELOPMENT INC.,Y4000\nRUNHOUSE,SELF-EMPLOYED,G0000\nSQUIRE SANDERS DEMPSY,,K2100\nWriter,LD Productions,C2300\nINVESTMENT BANKER,DANIELS & ASSOC.,F2300\nChief Administrative Officer,I3 Ideal Innovations,Y4000\n\"M VIRO INTERN'L CORP\",,Y4000\nGRIFFITH ELECTRIC SUPPLY CO,,B5500\nCEO,Opus NW. LLC,Y4000\nCT DEPARTMENT OF ENVIRONMENTAL PROT,,X3000\nINVESTMENT ADVISO,LANSDOWNE CAPITAL,F7000\nATLANTIC SHORE ORTH,,H1130\nLANSING PRODUCTIONS,JAFFE,Y4000\nTeacher,Huron School District,H5100\nUNIVERSITY OF MIAMI-GOVERNMENT R,,H5100\nMOTHER,HOMEMAKER,K2000\nPRESIDENT,THE GLEASON AGENCY,F3100\nSTUDENT,NONE PROVIDED,T1400\nIMPO,SOURCING MANAGEMENT GROUP LLC.,G3500\nNeurosurgeon,Sutter Neuroscience Institute,H1130\nOwner/Principal/Partner,Westmark Construction Inc,B2000\nCOUNSELOR,SASC,Y4000\nAIM,JARRETT,Y4000\nATTORNEY,THE POLLAK LAW FIRM/ATTORNEY,K1000\nAttorney,Michael P Gunn PC,K1000\nManager III-Program Management,Raytheon Company,D3000\nWASHINGTON CONVENTION & VISITORS,,G1100\nDISTRICT ATTY OF MONTGOMERY COUNT,,X3200\nC.E.O.,SALEM COMMUNICATIONS INC.,C2100\nVERNITRON CORP,,Y4000\nFEDERAL LOBB,AUSTIN CORELIN & REYES,Y4000\nCEO,A+ Imaging Systems,Y4000\nSELF-EMPL PROPRIETOR,PANA BOWL,G6100\nCHAIRMAN,CREDIT ACCEPTANCE/CHAIRMAN,F1400\nLAWYER,\"FARRELL & PAK, PLLC\",Y4000\nReal Estate Management,Lainer Development Inc,F4100\nWriter/Curator,Self,G0000\nBUSINESSMAN - AUTOPARTS,RETIRED,F1100\n,THE ENCORE FINANCIAL SERVICES GROU,F2100\nENCINO STATE BANK/CHAIRMAN/CEO,,F1100\nJEROME FOODS INC,,A2300\nBOATMENS BANK,,Y4000\nPHARMACIST,WALGREEN,Z9500\nUNION REPRESENTATIVE,\"DISTRICT 77, IAMAW\",Y4000\nPRESIDENT & CEO,NSSF,J6200\nManager,\"Ietpa, Inc\",C5110\nAgent,Aviva USA,F3300\nAttorney,Morrison  & Foeratoal,K1000\nAttorney,New York State,J1200\nPRESIDENT / FOUNDER,JUICE CONSULTING LLC,Y4000\nHERTZBACK & SILVERSTEIN,,K1000\nPres,None,A2300\nResidential Designer/builder,\"Self/High Desert Construction, Inc\",B1500\nProgram Dir,\"Nat'l Science Fnd\",X3000\nPORTFOLIO MGR,ELLIOTT ADVISORS,F2700\nCEO,RAPIDTECH,Y4000\nNORTH STAR CONSTRUCTION CORP,,B1500\nTeacher,Browood County School B,J7400\nPresident & CEO,Neighborhood Centers Inc,Y4000\nEFFICIENT NETWORKS/DIRECTOR/BUSINES,,C5120\nSTATE AMUSEMENT COMPANY,,Y4000\nNEW YORK ZOOLOGICAL SOCIETY,,Y4000\nElectronic Tec,Cinetic Landis Corp.,Y4000\nPublisher,BVR Legal,Y4000\nATTORNEY,\"MORRIS & CARNAHAN, PLC\",Y4000\nB AND O FABRICATING CORP,,Y4000\nMEDICAL SUPPLIER DIS,\"HOMELINE, INC.\",Y4000\nTHE RICH CO,,Y4000\nLeader for U.S. Smal,rich North America,F3100\nMORTGAGE BROKER,PACIFIC RESIDENTIAL,F4600\nDEVELOPER,\"GORMAN & CO, INC\",Z9500\nLOGGER,TRI-STATE LUMBER,Y4000\nCOO,AMERICAN VENDING,Y4000\nSCHOOL ADMINISTRATOR,IVY BOUND ACADEMY,Y4000\nUS SAFETY & SUPPLY,,J1100\nAttorney,\"Brickfield, Burchette, Ritts &\",K1000\nCPA,SMOKER SMITH & ASSOCIATES,Y4000\nEDUCATION ADMINISTRATIO,UDC RETIRED,Z9500\nPHYSICIAN,GEORGETOWN HOSPITAL,H2100\nBROKER,CENTURY 21 REAL ESTATE,F4200\nPRIVATE INVESTMENTS,TYKESON ASSOCIATES,F2600\nMICHIELS CATERING,,Y4000\nPRESIDENT,HUMANE SOCIETY OF ARANSAS COUN,Y4000\nHd of Govt Sgmt/ Bus Alliances,Aetna Inc.,H3700\nATTORNEY,CDW,G4200\nIT Consultant,\"RestonTech, Ltd\",C5130\nExecutiveDirector,Aif Foundation,Y4000\nAT,\"FLETCHER, TILTON & WHIPPLE, P.C.\",K1000\nAMALGAMATED GLASS INC,,B1000\nSALES REP,---,G0000\nMAYOR,CITY OF HOBART,X3000\nPRESIDENT & COO,AMERICAN HOTEL & LODGING EDUCATIONAL I,T9100\nST. THOMAS UNIVERSITY/DEAN/ LAW PRO,,H5100\nDIRECTOR OF COMPANIES,SELF-EMPLOYED,J1100\nMANAGER,MOBIL OIL CORP.,E1110\nSports Mkting,500 HRC LLC,G5210\nATTORNEY,DUANE MORRIS LLP/ATTORNEY,K1000\nADULT CARDIOLOGY,\"Cardiology Assoc. of West Alabama, P.C\",H1100\nLOUIS JONES ENTERPRISES INC,,G5200\nPresident,Jared Polis Foundation,J7400\nOWNER,TOW TRUCK COMPANY,T2400\nTeacher,Junior College,Y4000\nContractor,West USA Realty,F4200\nAttorney,\"Freedman Anselmo Lindberg, LLC\",Y4000\nPRESIDENT,ALJ SERVICES,Y4000\nPRESIDENT,\"COSTO, LLC\",Y4000\nFINANCIAL ANALYST,LOYOLA UNIVERSITY,H5100\nManager Writer Consu,Self Cinder Production Inc,G0000\nAttorney,Moag and Company,K1000\nFARMERS COOP-PLEASANT HILL,,A4000\nCHAI,\"MICHAEL STEVENS INTEREST, INC.\",F4100\nSWIDLER BERLIN SHEREFF ET AL,,J7300\nPRESIDENT,STEDMAN MACHINE COMPANY,B5100\nAttorney,\"Power, Rogers, & Smith\",K1000\nREALTOR,RE/MAX Home Connection,F4200\nWRITER,MARY MCVEY GILL,C1100\nConsultant-,Health Management Associates,H2100\nLawyer,\"Dollinger, Assikers PC\",K1000\nCLASSROOM TEACHER,UNIVERSITY OF TENNESSEE-MARTIN,L1300\nself employed,owner,G0000\nPortfolio Manager,Jpmorgan,F1100\n\"MANAGING DIRECTOR,\",DUTKO WORLDWIDE,K2000\nContractor,\"Ketco, Inc\",Y4000\nEngineering Manageme,\"Arctic Foundations, Inc.\",Y4000\nbusinessman,Sandvik Mining and Construction LLC,B1500\noffice manager,\"Kelmon Drywell, Inc\",Y4000\nDir External Affairs,Sundance Institute,Y4000\nClaims Representative,State Farm Insurance,F3400\nCOO,Monster WW,G5250\nINTERIOR,\"BARBARA'S INTERIOR DESIGN\",Y4000\nARTECH,,Y4000\nACCOUNTANT,MJC INC,Y4000\nOwner,Guilianos Bakery,J7300\nMEDTEX PRODUCTS,,Y4000\nSALES PERSON,MODERN BANK,F1000\nPRESIDENT,AFLAC FOUNDATION INC.,F3200\nBLUE MEDIA,,Y4000\nMANAGING DIRECTOR,LIBERTY PARTNERS,H5100\nFOREMAN INVESTMENT CAPITAL INC,,F0000\n\"Director, Infrastruc\",S.D. Regional Econ Dev Corp,J1100\nFROMKIN HERZOG BECKE,,Y4000\nPRESS SECRETARY,\"AMERICA'S HEALTH INSURANCE PLANS\",F3200\nATTORNEY,\"MCDERMOTT, WILL & EMERY\",J5200\nLAMINATIONS,,M1500\nOWNER,\"SVM, LP\",G5270\nSALES/DESIGN,FABRICUT INC.,M8000\nMARKETING,\"IMPACT TELEVISION INT'L, INC./MARKE\",C2000\nLicensing Supervisor,King County,X3000\nFARMER,MARKSMITH ENTERPRISES,J6200\nMEDICAL DIRECTOR,PEDIATRIX MEDICAL GROUP,H1130\nPartner,Bertica Cabrera-Morris & Assoc.,Y4000\nPresident,Jones Nissan Isuzu,T2300\nVice President,\"Ohio Mortgage Bankers Association, Inc\",F4600\nDirector,Heritage Capitol Corp,J7400\nCOOPER HOSP,,H2100\nMED SCHOOL,MARTIN LUTHER KING DREW,H5150\nPARTNER,CENTRAL PAVING,B3000\nP.R. CONSULTANT,SELF EMPLOYED,G5210\nHEADSTART,HEADSTART,X3000\nVALLEY FAIR REALTORS,,F4200\nWILLIAM FANNIN BUILDERS INC,,B1500\nREAL ESTATE,SMITH EQUITIES,F2100\nOwner,Colonial Wine & Spirits,G2820\nMINUTE STOP INC,,G4300\nLENAN CORP,,Y4000\nPrincipal Manager,Project Design Consultants,Y4000\nAT,STRINGHAM HILLMAN & LEW ATTORNEY,K1000\nRESEARCH ANALYST,SELF,G0000\nHOSPITAL CONSULTANT,NATIONAL HEALTH CARE,H2200\nLAWYER,PARKER HANNIFIN,M2300\nExecutive,Klipsch Audio Technologies,C5000\nATTORNEY,RUSSELL,K1000\nHAWN TEL EMP FED CRED UNION,,Y4000\nIntern,Colorado Bar Association,K1000\nRetired,Us Marines,X5000\nRESTAURAMTEUR,,G2900\nHOME INSPECTOR,TENNESSEE VALLEY HOME INSPECTIONS,Y4000\nFinancial Advisor,US Bank,F1100\nVICE PR,CARITAS CHRISTI HEALTH CARE,H2100\nINSURANCE,PALERMO REAL ESTATE,F4000\nMED. DIRECTOR,LAB CORE OF AMERICA,Y4000\nMANA,ARCHER DANIELS MIDLAND COMPANY,A4300\nATTORNEY,KELLEY DRYE & WARREN LLP,K1200\nGENERA,\"NORMAN W. PASCHALL CO., INC.\",J9000\nInsurance CEO,\"Realign Group, LLC\",Y4000\nEngineer,Maxim Integrated,Y4000\nARCHITECHNICS,,Y4000\n\"COOK, SHEVLIN, YSURSA, BRAUER ET AL\",,K1000\nCHIEF INFORMATION OFFICER,HIGHMOUNT EXPLORATION & PRODUCTION LLC,Y4000\nEXECUTIVE,HENRY POOR LUMBER,B5200\nManager,Martella Pharmacy,G4900\nU P ENTERPRISES INC,,Y4000\nTHOMAS GARVEY GARVEY,,K1000\nOIL AND GAS,AVIVA INC.,Z9500\nVICE PRESIDENT,STREET LEGAL INDUSTRIES,Y4000\nProgrammer,\"Force 3, Inc\",Y4000\nATTORNEY,\"PORTERFIELD & LOWENTHAL, LLC\",K2000\nSHIRO,,Y4000\nEngineer,Air Products & Chemicals Inc.,M1000\nAviation Consultant,Dimensions International,G5200\nVP-Land,Transcontinent Oil Co,E1100\nCONSTRUCTORA SANTIAGO,,B1500\nPORTFOLIO MANAGER,LATIGO PARTNERS,F2100\n\"BASKIN, LETSCHWITZ, HELLER & ABRAMO\",,K1000\nKINRO INC,,B2400\nHealthcare IT Executive,CSC Covansys,Y4000\nSALES MARKETING,EXCEL TIRE CORP,Y4000\nST CLAIR AUTO MALL,,T2300\nCLERICAL,\"JONES MANAGAMENT SERVICES, L.L.C\",F1420\nEXECUTIVE,BLAYLOCK INVESTMENTS,Y4000\nVICE CHAIRMAN,\"O'NEILL AND ASSOCIATES\",K1000\nSales/Marketing,GE,M2300\nPURITAN RESTAURANT,,G2900\nFINANCE,ANCHORAGE CAPITAL GROUP LLC/FINANCE,F2600\nAttorney,Redden Mills & Clark LLP,K1000\nH & CARGAGE CO,DIXIE W,T7200\nECONOMICS PROFESSOR,PACE UNIVERSITY,H5100\nHSEWIFEHSEWIFE,NONE,Y4000\nPARTNER,BARNES AND THORNBURG,K1000\n\"Director, Texas Poli\",\"Reliant Energy, Inc.\",E1600\nAttorney,Morgan & Smith,K1000\nJAMES HELWIG & SON,,Y4000\nBROCK BROCK & BAGBY,,Y4000\nSECRETARY,FULLWOOD MARKETING INC.,Y4000\nOwner,Natural Stone,Y4000\nOwner,\"Lee County Insurance Agency, Inc.\",F3100\nChairman,PHB Industries,Y4000\nAttorney,TK Holdings Inc.,Y4000\nCOOK COUNTY CLERK,,X3000\nPHYSICIAN,CAREWISE HEALTHCARE SOLN.,Y4000\nVice President,\"Insituform Technologies, Inc.\",Y4000\nCANTOR FITZGERALD & COMPANY INC,,Y4000\nHUGH Q PARMER PC,,Y4000\nCEO,DUTKO WORLDWIDE/CEO,K2000\nEDUCATOR,KENT STATE UNIVERSITY,L1300\nDIRECTOR OF MNPL,\"INT'L ASSOCIATION OF MACHINISTS\",LM100\nCHAIRMAN,SERVICE INSURANCE CO.,F3100\nLawyer,Segal Roitman,Y4000\nExecutive Assistant,Chemtura,A4100\nSALES REP,CSL,Y4000\nENTREPRENUER,,J7150\n\"Rgnl Director,Publi\",WAL-Mart Stores Inc,G4300\nPRESIDENT,BEASLEY BROADCAST GROUP,C2100\nReal Estate Develope,Columbia Residential,Y4000\nOWNER,\"CLANCY'S RESTAURANT\",G2900\nJEWELER,CHATHAM JEWELERS INC.,M3200\nPRESIDENT,J.C. CORNILLIE CO.,Y4000\nMACHIN,MID KANSAS CYLINDER HEAD CO.,Y4000\nWriter / Producer,Imagine Entertainment,C2400\nTHE VIKING TOOL CO INC,,M5100\nCEO,Jet Tran International,Y4000\nREAL ESTATE,LE CRAM & COMPANY,F4100\nFLOCKE & AVOYER,,Y4000\nELEPHANT INVESTMENTS LLC,COO,E1120\nVICTORY FELLOWSHIP CHURCH,,X7000\nASSOCIATION,THE ENGINEERING CENTER,B4400\nPSYCHOLOGIST,SAGE EDUCATION GROUP,Y4000\nSENT LETTER,LETTER,Y4000\nPROPRIETOR,GREENSBORO ANTIQUES,G4600\nAsst Director of Sup,Empire District Electric Compa,E1600\nENGINEER,\"SOUTHEAST TECHNOLOGY, INC\",Y4000\nCLANTON CONSTRUCTION,,B1500\npharmacist,\"a fair deal Pharmacy, in\",G4900\nEXECUTIVE VP,CBRE,F4200\nOTHER -HOMEM,CLEARY MANAGEMENT CORP,F4200\nFARMER,RUTH FLOWERS,A8000\nDUBLIN & ASSOCIATES INC,,Y4000\nCEO,QUALITEST PHARMACEUTICALS,H4300\nConsultant/Attorney,Promontory Financial Group,F5000\nATTOR,GAINES MULLEN PANSING & HOGAN,K1000\nCAPITAL WINE AND BEVER,,G2850\nRESEARCH PROFESSOR,HARVARD UNIV.,H5100\nGKM VENTURES,,Y4000\nOwner Of Cafe Nibble,Self employed,G2900\nJACK A FARRIOR INC,,Y4000\nLawyer/Mediator,\"Sanders, O'Hanlon & Motley, PLLC\",K1000\nOwner,Prominence Homes Incorporated,B2000\nProducts &  Sol. Mgm,Acxiom Corporation,C5130\nMETROPOLIS DEVELOPMENT CO LLC,,Y4000\nEngineer,Aerotek CE Inc,Y4000\nPROFESSOR,DUKE UNIV MED CTR,H2100\nZUMWATT PHARMACY/PHARMACIST/BOOKKEE,,G4900\nTHE HONORABLE JOSEPH C SULLIVAN,,Y4000\nPresident/CEO,Triumph Technologies Inc.,C5000\nFARMER AND BUSINESS PERSON,SELF-EMPLOYED,A1000\nPRODUCER,DIRECTOR,C2300\n1ST PRIME MEATS INC,,Y4000\nPRESIDENT,AMERISOURCEBERGEN SERVICE,H4400\nREAL ESTATE BROKER,HOWARD HANNA PREMIER PROPERTIE,Z9500\nConsultant,GCAC,Y4000\nPRESIDENT/CEO,RADIO ONE INC.,C2100\nNOB HILL CAP,,Y4000\nINVESTMENTS,KIRBY FINANCIAL,F0000\nATTORNEY,MILLER CANFIELD PADDOCK & STONE PLC,K1000\nMGMT. ANALYST/REALTOR,DEPT. OF JUSTICE/BOP/LONG & FOSTER,X3200\nDESIGN ENGINEER,CITY OF PHILADELPHIA SCHOOL DISTRICT,J1200\nELECTRONICS TECHNI,GIGATRONICS INC.,Y4000\nEXECUTIVE,TRIPLE-I/EXECUTIVE,Y4000\nPresident,Mazzie Injector Corporation,Y4000\nAttorney,requested,G0000\nELECTRICAL CONTRACTI,SELF EMPLOYED,G0000\nLAMANSION LLC,,Y4000\nAttorney at Law,\"Howell, Daugherty, & Brown\",Y4000\nAttorney,\"Burck, Lapidus & Lanza, PC\",K1000\nPEACE CORPS ASSOCIAT,\"U.S, GOVERNMENT\",Y4000\nDoctor,William Frazier,Y4000\nATTORNE,\"BROWNSTEIN, HYATT, & FARBER\",K1000\nTHE LAW OFFICES OF DAVID M BIRKA-W,,K1000\nPHYSICIAN,ELIZABETHTOWN PHYSICIANS FOR WOMEN,H1100\nVICE PRESIDENT,Palos Shores,Y4000\nREAL ESTATE DEVELOPER,BENCOR,Y4000\nCHARMER SUNBELT GROU,VP SALES,Y0000\nTax Accountant,Metis-weikart Tax Associates,Y4000\nPresident,ARC Landsurveying & Engineering Inc.,B4300\nBusiness Executive,Exxon Mobil Corporation,E1110\nADMINISTRA,CAPITOL ASSOCIATION INC.,G5200\nAutomobile Dealer,Drew Ford,T2300\nCONSULTANT,ATTEST HEALTH CARE ADVISORS,Z9500\nD.C. SUPERIOR COURT,,J7400\nTROUTMAN WILLIAMS IRVIN GREEN ET AL,,K1000\nPresident,Rockford Homes,B2000\nEmergency Physician,Infinity HealthCare,H1100\nEditor,Icma,Y4000\nSvp Health & Well,Kraft Foods,A1300\nLEA & CHAMBERLAIN,,Y4000\nPROFESSOR,UNIVERSITY OF VERMONT,Z9500\nSOUTHEASTERN PAIN CLINIC,,H1130\nPRESDIENT,\"WALKER PARTNERS, LLC\",Y4000\nEXEC,NJ STATE FUNERAL HOME DIRECTOR,G5400\nSTUDENT,ST. OLAF,Y4000\nUNIVERSITY OF LOS ANGELES,,H5100\nTEXAS LAND COMMISSION,,Y4000\nAttorney,Cuneo Gilbert & Laduca,K1000\nPRESIDENT,LOUP DEVELOPMENT CO.,F4000\nInternational Rep,Sheet Metal Workers International Asso,LB100\nREAL ESTATE,MONROE GROUP/REAL ESTATE,F2100\nLINDSTROM & ASSOCIATES,,Y4000\nJAMES G. GORDON & ASSOCIATES,,Y4000\nPOLICY MAKER,CITY OF BOULDER,X3000\nFIRST GWINNETT BANK,,F1100\nWINDSOR CAPITAL GROUP INC.,,F4600\nATTORNEY,HYJEK & FIX,K2100\nBUILDER,CHAMBERLAIN & MCCRERRY INC,Y4000\nVICE PRESIDENT,THRASHER ENGINEERING,B4000\nMANAGER,CITYWIDE DENTAL FAMILY,H1400\nSPECI,WAYNE COUNTY EXECUTIVE OFFICE,X3000\nGOVERNMENT,STATE OF DELAWARE,Z9500\nATTORNEY,\"MATTHEW CLARK BURES, P.C.\",Y4000\n\"President, Card Serv\",Nations Bank,F1400\nEXEC,DESERET MANAGEMENT CORPORATION,Y4000\nCONSULTANT,ADLER GROUP,J7400\nDirector,Rockingham Mutual Insurance Company,F3100\nMGR ADMIN SVC,ENTERGY SERVICES INC.,E1620\nPERCEPTIVE LEADERSHIP,SELF EMPLOYED,Y4000\nCFO,\"HEALTH MARKET SCIENCE, INC\",Z9500\nGOVERNMENT AFF,CAPITAL CONCEPTS LLC,Y4000\nINVESTOR,MARTIS INVESTMENTS,F7000\nLawyer,\"Robins, Kaplan and Miller\",K1000\nATL CORPORATION,,Y4000\nPROGRESSIVE DIE & AUTOMATION INC,,M2300\nMarketing,Schering Playh,J7400\nEXECUTIVE ASSISTANT,TOTAL E&P USA,Z9500\nTEACHER,MADERA UNIFIED/TEACHER,Y4000\nTeacher/Monk,Syda Foundation,J1200\nPRESIDENT,NOUVEAU INVESTMENTS INC,F7000\nCSS CAPITAL,,Y4000\nRECRUITER-FINANCIAL,,G5250\nBARRINGTONS OF HORSESHOE BAY,,Y4000\nDEFIBRILLATORS AND CPR,ONE BEAT CPR,Y4000\nMILITORY,,Y4000\nCHIEF FINANCIAL OFFICER,CAP OF ORANGE COUNTY,X4100\nMortgage Loan Officer,Suntrust Mortgage,Y4000\nPresident,Diversified Development Of Kan,Y4000\nSOFTWARE CONSULTANT,MICROSOFT,C5120\nDoctor,Highlands,J1200\nMarketing,SBC,Y4000\nFLEET FINANCE INC,,F1400\nOPERATING OFFICER,HOMEPLACE,J1200\nPatent Attorney,Hewlett Packard,JE300\nWQED-PITTSBURGH/PRESIDENT/CEO,,Y4000\nOfficer,Mutual of Omaha,F3100\nEducator,Sweetwater Union H.S. District,X3500\nCOX PCS,,C4300\nDIR TECH SYS,UNION PACIFIC RAILROAD,T5100\nOwner,Sf&c,Y4000\nPRESIDENT & CEO,\"KENOSHA BEEF INTERNATIONAL, LTD.\",G2300\nVIRGINIA SURETY COMPANY,,F3100\nTN TECH ASST. SERV.,,Y4000\nVICE PR,SUSSEX FINANCIAL GROUP INC.,F1400\nVICE PRESIDENT GOVERNMENT RELATIONS,HEALTH PARTNERS,H3700\nVASQUEZ FARUICHI & CO,,C5100\nVice President of Government Relations,ML Strategies,K2000\nSENIOR VICE PRESIDENT,\"BIOREFERENCE LABORATORIES, INC./SEN\",H3400\nAdministrative Assis,\"Schifrin,Barroway,Topaz,Kofflor LLP\",K1100\nDIRECTOR,RONALD FELDMAN FINE ARTS,G4600\nBUSINESS MANAGER,LIVINGSTON INTERNATIONAL,Y4000\nCONSTRUCTION,\"KRAEMER BROTHERS, LLC\",B1000\nCOLIN SERVICES,,Y4000\nTruck driver,Bulldog Mobile Concrete Service Inc,B5100\nLANDMARK COMPANY INC,,Y4000\nPFEIFFER BROWN BRENNAN,,Y4000\nHUTCHENS CO INC,,Y4000\nRETIRED/CONSULTANT,GIVAUDAN,Y4000\nET MACKENZIE COMPANY,,Y4000\nENVIRONMENTAL TREATMENT & TECHNOLOG,,Y4000\nSALES & MARKETING,PRODUCT SAFETY CONSULTING,Y4000\nCHIEF OF STAFF & SR ADVISOR,US DEPT OF HHS,X3000\nDIRECTOR OF HUMAN RESOURCES,CHILTON INVESTMENT COMPANY,F2700\nRegulatory Compliance Analyst,Roberts Wutscher LLP,F4600\nPHYSICIAN,TXO - PLANO WEST,H1130\nCALIFORNIA INSTIT OF TECHNOLOGY,,F3200\nSHEET METAL WORKER,FORD MOTOR CO,T2100\nCOLLEGE PROFESSOR,PACIFIC UNIVERSITY,H5100\nRECEPTIONIST,DRS. TAFF AND LEVINE,Y4000\nATTORNEY,West & Group,F4100\nREED & REED INC,,B1000\nCHAIR,SOUTH BERRIEN COUNTY DEMOCRATIC CLU,J1200\nC.P.A./PARTNER,\"FREEMON, SHAPARD & STORY\",Y4000\nAssistant Director,\"Spring Farm Cares, Inc.\",A1400\nS.A.K.S. FIFTH AVENUE,,G4300\nAttorney,Ricchetti & Associates,Z9500\nVice President,UDVNA,G2820\nME/SELF EMPLOYED W/HUSBAND & AT-HOM,,J1100\nEditor/Writer,Pan American Health,Y4000\nCONSULTANT,\"WOOLSEY PARTNERS, LLC\",Y4000\nVP &,\"WILLIS A. SMITH CONSTRUCTION,\",B1500\nAttorney,\"Heard, Robins, Cloud, & Lubel, LLP\",Z9500\nATTORNEY,MUNGER TOLLOS & OLSON,K1000\nN.a.,N.A.,J1100\nC SYSTEMS INC.,,Y4000\nADMINISTRAT,SOUTHEAST SERVICE CORP.,Y4000\nCounselor,Self,J7400\nSPORTS,CROWN SPORTS,Y4000\nEXECUTIV,LEADING EDGE LOGISTICS INC,Y4000\nATTORNEY,\"MINTZ, LEVIN, COHN, FERRIS, ET AL\",K1200\nMovie Advertising,Creative Domain,Y4000\nPresident,\"Deister Machine Company, Inc.\",B5100\nDAVID G GAMBLE JR,,Y4000\nPublic Affairs - Upstream,EXXON MOBIL CORP,E1110\nADMINISTRA,NORTH DAKOTA FARM BUREAU,A6000\nCARLISLE ASSOCIATES INC,,B5100\nWASTE COLLECTOR,,J5100\nENTREPRENEUR,CANAL PARTNER,Y4000\nPresident,Wolper Subscription Services,Y4000\nINTERNATIONAL BROADCASTIN,,C2100\nRETIRED,1:1 CORPORATION,Y4000\npresident,revere mortgage ltd,Z9500\nPLASTICAN INC,,M1500\nInformation Reqested,Information Reqested,K1000\nREAL ESTATE,HAMPTONS INTERNATIONAL,F4000\nPARTNER,LOEFFLER JONAS & TUGGEY LLP,K2000\nVISION F-L-M,,T2300\nOWNER,YOUNG DRILLING,Y4000\nAdministrator,Mabry Health Care & Rehab,H2200\nRUSS MERRITT PUBLIC REL,,G5210\nPhysician,Family Physicians of Kansas,H1100\nCARL DOMINO ASSOC LP,,F2100\nROANOKE ELECTRIC & STEEL,,M2100\npresident,Florida West Coast Cr. Union,Y4000\nCEO,Sciele Pharma,Y4000\nManager,Emc Corp,C5130\nENGINEER,NEVRO CORP.,Y4000\nOPHTHALMOLOGIST,RETINA CONSULTANTS OF NV.,Y4000\nChief Executive Officer,Stabil Drill,E1150\nPHYSICS PROF.,UC BERKELEY,H5100\nDEAN,WOODWARD ACADEMY,H5100\nV.P. &,FIRST HEALTH SERVICES CORP.,H3000\nSCOTT BOURNE CONSULTING,,J1200\nATTORNE,CERTIFIED TITLE CORPORATION,F4300\nManagement,Aspens Water and Sewer District,Z9500\nAKRO CHEM,,Y4000\nCHAIRMAN,CSX,T5100\nENGINEER,HART-HIMMAN INC.,Y4000\ncomputer operator,Putnam Investments,F2100\nRetired Civil Engine,None,Y1000\nGIRBAUD,,J7400\npublisher,\"Guidewire Group, LLC\",Y4000\nPRESIDENT & C.E.O.,\"THE LACLEDE GROUP, INC.\",Y4000\nManager,HW Brown Florist-Greenhouse Inc,G1200\nQUANTITATIVE RESEARCH ANALYST,INVESCO AIM,F2100\nBusiness Owner,Maximum Security,Y4000\nLAWYER - EXECUTIVE,SELF-EMPLOYED,Y4000\nTHE RUXTON CAPITAL GROUP LLC,,F0000\nLAWYER,SELF EMPLOYED /SAME NAME,K1000\nInvestments,\"Goldman, Sachs\",F2300\nExecutive Recruiter,Korn/Ferry,Y4000\nPHYSICIAN,AUSTIN GASHROENBIOLO,Y4000\nRetired,N//A,J7400\nExecutive Director,Meramec Regional Planning Commission,Y4000\nPRESIDENT,GOODLETTSVILLE FOODTOWN,G1200\nATTORNEY,GETTY KEYSER & MAYO,K1000\nRUSSELL HOFFMAN & REED,,Y4000\nGCA,,Y4000\nREAL ESTATE,WITTENBERG-LIVINGSTON,Y4000\nBUSINESS CONSULTANT,KP-IT,Y4000\nMANAGEMENT DEVELOPMENT,WORLD BANK GROUP/MANAGEMENT DEVELOP,J7400\nprofessor,Florida State University,H5100\nDirector of Special,Vietnam Veterans of America Founda,J9000\nAccountant,\"Banks, Finley, White & Co\",Y4000\nEducational Publishe,Self-Employed,J1200\nRELIANCE UPHOLSTERY,,Y4000\nCEO,Information Radio Network,C2100\nMETCALF TOBEY & PARTNERS,,J7400\nSPIRIT CRUISES,,Y4000\nArchitectur,D L Smith Design Studio,B4200\nANESTHESIOLOGIST,UHSU,H1130\nEISENHOWER VETERANS HOSPITAL,,H2100\nNAVAJO GALLERY AND GIFTS/MERCHANT/O,,Y4000\nEXECUTIVE,CONTINENTAL GROUP,Y4000\nOWNER,CONCRETE STRATEGIES,B5100\nLONG PROPERTIES INC,,Y4000\nPRESIDENT &,SUMMIT FINANCIAL GROUP,F1100\nSAVINGS BANK ASSN OF NEW YORK STATE,,F1200\nACCOUNTANT,FLETCHER MGMT CO LLC,Y4000\nGOSSELINS HEATING,,E1180\nTRADER,NOMURA,F2100\nC. E. O,MAC KENZIE COMM. R. E. SVC.,Y4000\nATT,\"BARDENWERPER, TALBOTT & ROBERTS\",K1000\nCONTRACTOR,\"BERKELEY CEMENT, INC.\",Y4000\nATTORNEY,GROEN STEPHENS & KLINGE,K1000\nAttorney,Sherrard & McGoragle,K1000\nPresident,\"Bussen Quarries, Inc.\",Y4000\nMEDICAL WRITER,Self employed,C1100\nPRESI,J. FLETCHER WILLEY AGENCY INC,F3100\nCatering Director,Hands On Technology Transfer,H5200\nAttorney,Hudson and Montgomery,K1000\n\"EXECUTIVE VICE PRESIDENT, CHIEF FINANC\",VYVE BROADBAND,C2200\nFIRST NATL BANK OF FAIRFAX,,F1100\nTHESTREET,CRAMER CO,C5140\nATTORNEY,PAVANO & VAN DER WERFF,Y4000\nInformation Requeste,C A Development,Y4000\nATTORNEY,\"CRS ORGANIZATION, INC.\",Y4000\nLAWYER,GROVES LAW OFFICE,K1000\nU. S. REPRESENTATIVE,U. S. CONGRESS,X3000\nINSURANCE,THAMES BATRE/INSURANCE,Y4000\nEXECUTIVE DIR,FOREST HILLS HOSPITAL,H2100\nAdministrator,Museum Of Contemp Art,J1200\nCFO,FOAM RUBBER PRODUCTS CO.,M1500\nCEO,\"THE COLEMAN GROUP, INC\",G5200\nNon Profit Executive,B Lab,Y4000\nENGINEER,MCGOWAN HORGING PARDUED,E1120\nAttorney,\"Bundy, Hodges, McElroy\",K1000\nAMER SCHOOL FOOD SERVICE ASSN,,G0000\nCountry Director-Eastern,Peace Corps,J1200\nATTORNEY,\"WIGINGTON, RUMLEY, DUNN & RITCH, L.L.P\",Y4000\nACTOR/CONDUCTOR  RETIRED,SELF,Z9500\nPEDIATRIC HOSPITALIST PHYSICIAN,GROUP HEALTH COOPERATIVE OF PUGET SOUN,H3000\nChairman of the Board,USEC Inc.,E1320\nBRAKE REBUILDERS INC,,T2400\nAttorney,Locks Law PA,K1000\nMILLER COHEN MARFEUS ICE AND GEARY,,Y4000\nWELLS MANUFACTURING CO.,,M2300\nLOCAL 68 OPER,,J1200\nMOVING AND STORAGE EXECUTIVE,SELF,T3100\nATTORNEY,THE MURRAY GROUP,Y4000\nPORTFOLIO,PMI MORTGAGE INSURANCE CO,F3100\n\"HARTFORD COUNTY SHERIFF'S OFFICE\",,X3200\nSTRUCTURAL STEEL DETAILER,SELF-EMPLOYED,Y4000\nPrivate Investments,Tykeson / Associates,F2600\nPAISANO PUBLICATIONS INC,,C1100\nCounty Commissioner,County of Oakland,X3000\nPRECISION SPEED EQUIPMENT INC,,J1100\nREAL ESTATE SALES,WHITE ROSE REALTH,F4200\nBOUNCE-U,SELF EMPLOYED,Y4000\nPRESIDENT/CEO,\"DENARK-SMITH, INC.\",B1500\nMCMILLIN REAL ESTATE,,J1100\nPUBLIC RELATIO,SOUTHFIVE STRATEGIES,J7500\nCHAIRMAN,KELLY SERVICES INC.,G5250\nSalesman,S.P.X. Air Treatment,Y4000\nPresident,Mini-Circuits,C5110\nMARKE,ENTERPRISE RENT-A-CAR COMPANY,T2500\nAttorney,Alexander Strategy Group,K2000\nCalifornia Department Of Social Ser,,X3000\nCODY CHEVROLET-OLDSMOBILE,,T2300\nCHAIRMAN,STONEYFIELD FARM INC,A2000\nPhysician,Clinical Pathology Assoc,H1130\nInformation Requested,\"Grosvenor Capital Management, LP\",F2700\n\"DAVIS, WRIGHT TREMAINE\",,K1000\nPOWERS PYLES SUTTER & VERVILL,,K1000\nSOFTWARE E,UNIVERSITY OF WASHINGTON,J6200\nAuthor/Singer/Songwriter/Astrologist,Self-Employed,G0000\nCoal Miner,Utah American Energy,E1210\n\"GRIGSBY, BRANDFORD\",,F2100\nPresident,DENNY PUBLICAL AFFAIRS,Y4000\nMilitary,DoD,X5000\nEXECUTIVE,,K1000\neducation,alliance for health reform,Z9500\nASTORIA FEDERAL SAVINGS/MGR A/P & E,,F1200\nSr. VP Operations,Assurant,F3100\nINFO REQUESTED,ORIGINAL LINES COLLISION 1,Y4000\nC. E. O.,R. & D. ELECTRONICS INC.,J1100\nHouse Director,New Bedford Housing Authority,Y4000\nTeacher,Mesa County School District 51,X3500\nCOAST WASTE MANAGEMENT,,E3000\nPRESIDENT,AIR-LEE CLEANERS,Y4000\nBARKLAGE BARKLAGE HAYWOOD & BR,,K1000\nARCHITECT,ASTORINO & ASTORINO,B4200\nOWNER,MOORE CADILLAC COMPANY,T2300\nSoftware Engineer,Enginomix LLC,Y4000\nRIDGEWAY PRINTING,,X1200\nPRESIDENT,THE BEAL CO.,Y4000\nMANAGEMENT CONSULTANT,ALLIANCE ADVISORS L.L.C.,Y4000\nLobbyist,Hospital for Special Care,H2100\nCAR,PRESBYSTERIAN HOSPITAL OF PLANO,H2100\nVICE PRESIDENT,CAMPION AMBULANCE SERVICE INC,Y4000\nnone,none,F2600\nFACTORY WORKER,L T V CORPORATION,LM150\nCONSULTANT,M&R STRATEGIC SERVICES,Y4000\nCV PIT MEDICAL CENTER,,H2100\nCEO,M Dworkin & Co.,Y4000\nOWNER,BOHANNON BREWING COMPANY,Y4000\nPASTOR,NEW COVENANT CHURCH,Z9000\ninvestment Banker,Am Herst Src Grop,E4200\nCUMMINS CHESAPEAKE POWER,,E1700\nATTORNEY,SARMAN & LETT PC,K1000\nORTHODONTIC ASSOCS OF,,H1400\nPHYSICIA,TYLER RADIOLOGY ASSOCIATES,H1130\n,NORTHWESTERN UNIVERSITY LAW SCHOOL,H5170\nInvestment Advisor,\"Merfin, LLC\",J1200\nDA TUNG INTERNATIONAL,,G2850\nPRESIDENT,C. R. ONSRUD INC,Y4000\nChief Executive Offi,Avue,Y4000\nManaging Director,Corstone,Y4000\nPUBLISHING CONSULTANT,\"RIACOM, INC.\",Y4000\nMANUFACT,JG BLACKMON AND ASSOCIATES,Y4000\nBRISCOE OIL CO,,E1100\nADVOCACY,RAINBOW PUSH COALITION,J9000\nLOBBYIST,INFORMATION REQUESTED PER BEST EFFORTS,K2000\nREAL ESTATE,BLUE CANOE PROPERTIES,F4500\nPartner,Kirkpatrick & Lockhart LLP,K1000\nEXECUTIVE,INTERTECH,M2300\nWILLIAMS BROTHERS CONSTRUCTION,,B1000\nATTORNEY,JEFFER MOURGELS ET AL,J1200\nM-ENGINEER D-CPA,BOTH-SELF-EMPLOYED,Y4000\nLEHMAN BROTHERS,INVESTMENT BANKER,J1200\nProfessor of Medicine,Vanderbilt University,H5100\nREAL ESTATE BROK,SIMPSON COMMERCIAL,F4000\nHERREID LIVESTOCK MARKET,,A3000\nPresident,Ervin Tech and Assoc,K2000\nJFL CORP,,Y4000\nBook Seller,Self Employed,G4600\n\"GI GI'S\",,Y4000\nForeign Service Offficer,Agency for International Development,Y4000\nVINTNER,\"O'NEILL VINTNERS & DISTILLERIES\",G2820\nBILL DUBE INC,,T2300\nPROGRAMMER/ ANALYST,SUPERIOR SOLUTIONS,J1200\nFORD DEALER,\"SMITH FORD, INC\",T2300\nEXEC,OWNER,G0000\nTHIRD SECURITY LLC,,Y4000\nCEO,Eisons International,Y4000\nCEO,\"CHARLES HAYES, INC.\",Y4000\nPRESIDENT,BLAIN CONSTRUCTION,B1500\nRET.,TEXAKOMA OPERATING L.P.,E1120\nSMITH HAVEN DODGE JEEP,,T2300\nPhysician,los Palos Hematology Oncology,J1200\nFINANCIAL NET INV CORP,,F0000\n\"MORSE BARNES-BROWN & PENDLETON, P.C\",,Y4000\nREALITOR,,Y4000\nPRESIDENT,\"SIOUX CITY TRUCK SALES, INC.\",T3000\nANAYLST,TNT FIREWORKS,Y4000\nPRESIDENT,\"HENRY ELECTRIC, INC.\",B0500\nChief Financial Officer,11 Good Energy Inc,E1000\nComputer Consulting,Computers dot mom,Y4000\nD.R. BRYANT & COMPANY,,F4000\nGovernment Relations,\"Price Howlett, Inc.\",K2000\nPartner,Goodwin & Goodwin,K1000\nLand Developer,\"Lang & Company, LLC\",Y4000\n\"SPENCER, FANE, ET AL\",,K1000\nWILLIAMS & WILLIAMS,,Z1200\nATTORNEY,FOSSIL,Y4000\nNURSE PRACTITIONER,\"RAVIZEE & HARRIS, P.C.\",Y4000\nMANAGER,APPLIED SIGNAL TECHNOLOGY/MANAGER,C4300\nChairman,Wind River Systems,J1200\nVICE PRESIDENT,INFINIA CORPORATION/VICE PRESIDENT,H4100\n\"CHAIRMAN, PRESIDENT & CEO\",FIRST COMMUNITY BANK,F1000\nStudent,UNC Chapel Hill,H5100\nG R NOTO ELECTRICAL CONSTRUCTION IN,,B3200\nFUNERAL DIRECTOR,KERSEY FUNERAL HOME,G5400\nSTATE OF MICHIGAN-OMB,,X3000\nCo-Owner & President,Diamond Hill Plywood,Y4000\nreal estate/construction/dev,McDougal Properties,F4000\nExecutive,\"Practice Alternatives, Inc.\",Y4000\nBOURKE PLUMBING,,G1200\nCPA,OSWALT ZARRO,Y4000\nDIRECTOR,TONONGENERAL SEKIYU K.K.,Y4000\nATTORNEY-PARTNER,DECHERT L.L.P.,K1000\nWESTERN CONTAINER,PRESIDENT,M7000\nMARINE CONSULTANT,,T6000\nBEST EFFORT,,T2300\nAPARTMENT MANAGEMENT,SELF,J7400\nCHIE,DOCTORS MED. CTR. OF SAN PABLO,H2100\nSystems Sofware Engi,Depository Trust & Clearing Corporatio,F2100\nPhysician,Hpsi,Y4000\nACCOUNTANT,SENECA MENTAL HEALTH,H3800\nPHYSICIAN,DAVID GEFFEN SCHOOL OF MEDICINE,H1130\nCommunity Developer,Cpdc,Y4000\nChief Operating Officer,Baylor Health Care System,H2100\nCONTRUCTION,\"JOHN WOODY, INC\",Y4000\nReal Estate Broker,C-21 REAL ESTATE CHAMPIONS,F4000\nChief Nuclear Officer & SVP,FPL Group,E1300\nPRESIDENT,KISSINGER & MCLARTY,K2000\nCRAFT FRIDKIN AND RHYNE,,K1000\nCEO,The Shannon Foundation,X4100\nRetired,Self,T1300\nAttorney,\"Olson Law Office, PC\",K1000\nOIL & NATURAL GAS PRO,SELF-EMPLOYED,E1140\nExecutive,Bistate Oil Management Corp,E1150\nTonys Inc.,,Y4000\nOwner,R & L Enterprises Inc,Y4000\nCEO,Sorensen Gross Construction,B1500\nAttorney,\"Gay, Chacker & Mittin\",K1100\nP,\"PIEDMONT INVESTMENT ADVISORS, LLC\",F2100\n\"CORP FOR NAT'L SERVICE\",,X3000\nMI,BMS,Y4000\nAccount Exeutive-Wal,Southern Wine & Spirits of FL,G2850\nChief Executive Offi,White County Memorial Hospital,H2100\nEXECUTIVE,INTERPLOY CORPORATION,Y4000\nExecutive VP,Innovative Interfaces,Y4000\nPhysician,YKHC,Y4000\nSSM DEPAUL HEALTH CENTER,,H2100\nNM DISPOSAL,,Y4000\nLawyer,Montgomery & Andrews,K1000\nSALES,FINE THINGS,G0000\nBOB LEE & ASSOCIATES,,Y4000\nBLOCK & TAYLOR,,Y4000\nMANAGER,CENTURY LINK,Y4000\nHAMILTON INVESTMENTS,,F2100\nHealth Administrator,San Mateo County,X3000\nUNICOM PARTNERSHIP LTD,,Y4000\nMANAGER,LUCK LABOR FORCE,Y4000\nINSURANCE SALES,GRIFFIN-OWENS INSURANCE GROUP,Z9500\nOwner,Southwest Metals,Y0000\nAMERICAN REAL ESTATE INC,,F4200\nEXECUTIVE MANAGEMENT,CHARLES C. PARKS CO.,Y4000\nSr VP Human Resource,ConAgra Foods Inc.,G2100\nExecutive,\"Mary Kay Cosmetics, Inc.\",M3300\nGENE DICKEY & ASSOCIATES,,Y4000\nDIRECTOR,COHEN FINANCIAL,F0000\nENTREPRE,\"SORENSON DEVELOPMENT, INC.\",F2600\nSoftware Engineer,\"Ambrosia Software, Inc\",C5120\nSuperintendent,Star International Academy,J5400\nTHE DEMATTEIS ORGANIZATIONS,,Y4000\nPhysician,Eye Assoc.,Y4000\nBusiness Representative,\"INT'L ASSO OF MACHINISTS\",LM100\nREAL ESTATE AGENT,GREAT HOMES REALTY,F4200\nPRESIDENT,THOMAS GALLAGHER COMPANY/PRESIDENT,Y4000\nSENIOR VICE PRESIDENT,DAVITA HEALTHCARE,H3200\nOBERLIN FARMS,,A2000\nVP SALES,TIMPTE,E1500\nKARPAC,,Y4000\nPhysician,Riverside Medical Clinic,H0000\nLAKEPORT DISTRIBUTORS,,Y4000\nPHYSICIAN,PURCHASE CANCER GROUPE,Y4000\nProperty Mgr,Draper & Kramer,F4200\nFINANCE DIRECTOR,CAPITO FOR CONGRESS,Y4000\nASSOCIATE,REITER BEGUN ASSOCIATES,Y4000\nShareholder,Birch Horton Bittner Cherot,K2000\nSENATE STAFF,U.S. SENATOR JON KYL,X3000\nC.F.O.,ROWAN COMPANIES INC.,E1150\nHOSPITAL FOR SPECIAL CARE,,H2100\nHighway Contractor,Jim Smith Contracting,Y4000\nVice President,HNTB,B4000\nBusiness Development,General Electric Company,M2300\nMANAGEMENT ANALYST,US ENVIRONMENTAL PROTECTION AG,X3000\nCEO,FALLS HOME HEALTH,Y4000\nFREELANCER,BOOKSMART,Y4000\nManaging Director,Aon Risk Srvcs Inc of Northern Califor,B1000\nPIERCE HEMS SLOAN & MCLEOD LLC,,K1000\nOWNER,PITTMAN COMPANY,Y4000\nCO-OWNER,SUTHERLIN DRUG,G1200\nInterior Designer,Crickett Seal Associates,Y4000\nEXECUTIVE,MERCURY FUEL SERVICE INC.,Y4000\nMechanical Designer,Trimble,D3000\nENVIR SCIENTIST,ME,Z9500\nGovernment Relations,Information Requested,K2000\nAttorney,Ackerson Kaufman Fex,Y4000\nCommunity Relations,Miller Brewing Company,Y4000\nMedical Doctor,Atlanta Primary Care Center PC,Y4000\nHASLEY RECREATION & DESIGN,,Y4000\nMEMBER,KKR,F2600\nSMALL WOODLANDS OWNER,SELF-EMPLOYED,A5000\nChief Executive Of O,T. D. S. Telecommuications Corporation,C4100\nFARMER,RANCHO TERESITA DAIRY,A2000\nDirector,Brookhaven National Laboratory,Y4000\nPROPERTY MANAGER,ALPHA-BARNES,Y4000\nPHYSICIAN,CENTER RADIOLOGY,H1130\nSales rep,Kent Automotive,Y4000\nDIRECTOR,COHERENT SYSTEMS,D3000\nTHE ASPEN GROUP INC,,J5100\nVICE PRESIDENT,BROOKHAVEN MEM. HOSP. MED. CTR,H2100\nExecutive Director,IF Hummingbird Foundation,J7400\nPROVIDENT LIFE & ACCIDENT INS,,F3300\nNORTHWESTERN U MED SCH,,H5150\nPresident,Navarro Research,B4400\nC. P. A.,\"Smith, Kesler, & Company, P.A.\",F5100\nFirefighter/EMS,CLARK COUNTY FIRE DEPT.,L1400\nATTORNEY,\"COSTELLO & MAINS, PC\",K1000\nPANEPINTO PAOLINO DOHERTY & MANGIN,,K1000\n\"Gov't Relations\",\"Ogilvy Gov't Relations\",K2000\nATTORNEY,LAW OFFICE OF ANNA FRIDMAN/ATTORNEY,K1000\nCONSULTANT,TRITERRA,Y4000\nSENIOR SYSTEM ADMINISTRATOR,NATIONAL MARROW DONOR PROGRAM,H2000\n\"CHIEF PRODUCT SUPPLY OFFICER, CCR\",\"COCA-COLA REFRESHMENTS USA, INC.\",G2600\nANALYST,LEVEL3,C4000\nECONOMICS,NEW YORK UNIVERSITY,H5100\nR&D,Draper Laboratory,Y4000\nCFO,The Childrens Hospital of Philadel,H2100\nPUTRA FLETCHER & ZEDER INC PS,,Y4000\nMILLER DISTRIBUTING OF FORT WORTH I,,G2850\nENTER,ENTERPRISE RENT-A-CAR COMPANY,T2500\nNORTHEAST SALES MANAGER,HARRIS CORPORATION,D3000\nRN,Elmbrook Memorial Hospital,H2100\nPUMPER,,Y4000\nVICE PRESIDENT,LAKESHORE LEARNING,Y4000\nBUSINESS OWNER,PRICE HOLDING,J1100\nReal Estate Investments,First Capital Group,F4100\nCHAIRMAN,ICAHN ASSOCIATES,F2700\nCRAFT SUPERVISOR,WILLIAMS PLANT SERVICES,Y4000\nSocial Worker,N/A,J7150\nHPS PRINTING PRODUCTS INC,,C1300\nPresident/Chief Exec,Cheek Auto Mall Inc.,T2300\nPresident,Howalt-McDowell Insurance Inc,F3100\nProfessor,Texas AMN,H5100\nPRESI,\"ARIEL CAPITAL MANAGEMENT, INC\",F2100\nFilm Producer,Shot in the Dark Entertainment LLC,Y4000\nE-SYSTEMS INC - GARLAND,,D3000\nINTERIOR DESIGNER,IQ INC.,G5000\nDoctor,Morris W Pulliam MD LLC,H1100\nHAGGER APPAREL CO,,M3100\nPRESIDENT,QUALITY FOOD MART,G2400\nBUSINESS OWNER,HEIDEPRIEM & MAGER,J7400\nOwner/Manager,Henry Roberts Express Pharmacy,H1750\nCONSULTANT,CARLILE TRUCKING,T3100\nVP OPRT,USAA LIFE INSURANCE COMPANY,F3400\nAttorney,Quinn Gillespie & Assoc,K2000\nN/A / PHD STUDENT,,Y1000\nowner,rem residential,Z9500\nEXECUTIVE,OCEAN THERAPEUTICS  INC.,Y4000\nLEGAL ADMINISTRATOR,\"CHRISTOPHER H WHELAN, INC.\",Y4000\nLAWYER,WALTER & ASSOCIATES,Y4000\nHR/BENEFITS,SPECIALTY GLASS PRODUCTS,Y4000\nPRESIDENT,MIDAS AUTO SYSTEMS,Y4000\nSTONEGATE PROPERTIES,,F4000\nLINCOLN BUILDERS CONSTRUCTION CO,,B1500\nSULLIVAN & CROMWELL LLP,,Z9000\nSales,ALP Travel,Y4000\nAttorney,US Environmental Prote,X3000\nEVP & COO,MORGAN STANLEY INV. ADVISORS,F2100\nPresident,Century National Insurance Company,F3100\nAttorney,Self-employed,J9000\nEXECUT,THE VIRGINIA BAR ASSOCIATION,Y4000\nPARTNERS FINANCIAL,,F3100\nINSURANCE SALESMAN,ART JETTER & COMPANY,F3100\nATTORNEY,\"EMISON HULLVERSON MITCHELL, LLP\",Z9500\nN C STATE WOLFPACK CLUB,,Y4000\nHEARST TRADE BOOD GROUP,,C1100\n\"VP, Underwriting\",Bank of America Leasing,F1400\nProfessor,Univ California Santa Barbara,H5100\nRadio Host,cbs,C2100\nSENIOR VI,DYNAMIC ANIMATION SYSTEMS,C5120\nbook keeper,catholic high school,Y4000\nCOMMUNICATIONS DIRECTOR,TARRANT CO. DEMOCRATIC PARTY,J1200\nPRESIDENT,THE KNAPHEIDE MANUFACTURING COMPA,J6200\nAdmin Asst,Food Service Specialties,Y4000\nDIVA SYSTEMS CORP,,Y4000\nLawyer,\"Shipman & Goodwin, LLP\",K1200\nContractor,\"I. H. C. Construction Cos., L.L.C.\",B1500\nC & D LUMBER,,A5000\nSENIOR ADVISER,US ENVIRONMENTAL PROTECTION AGENCY,X3000\nTeacher,St Louis University,H5100\nTRANSPORT CONSULTANT,STV INCORPORATED,B4000\nOwner,All-wood Furniture Of Mesa,Y4000\nCity Council Member,City Of West Hollywood,H5170\n\"OBERMAYER, REBMANN\",,Y4000\nAttorney,French Ratter LLP,K1000\nINDEP. POWER PR,LORANGER ENERGY LLC,E1000\nOWNER,BROADWAY PERFUMES,Y4000\n\"NAT'L FIRE PROTECTION ASS\",,X4000\nGeneral Counsel,Dutko Worldwide,K2000\nINSURANCE DIRECTOR,AMERICAN FARM BUREAU/INSURANCE DIRE,A6000\nAnesthesiologist,Panhandle Medical Services,Y4000\nDANIEL T MAZZELLA,,Y4000\nWINE MAKER,QUINTESSA WINERY,G2820\nBroker,Brandeis Financial,F0000\nRETIRED,RETIRED - ATLANTA BOARD OF EDUCATION,X1200\nREALOR,THE CORCORAN GROUP,F4200\nCO-OWNER,DINKEL IMPL. CO,Y4000\nCLINICAL PHARMACEUTICAL INC,,H4400\nBODENHAFER INSURANCE & INVESTMENT G,,B0500\nDesigner,Lee Lumber,B5200\nCONGRESSIONAL CONSULTANTS,,K2000\nATTORNEY,OXY,Z9500\nVETERINARY RECEPTIONIST,LONG ISLAND ANIMAL HOSPITAL,A4500\n\"SVP, PRODUCTION SERVICES\",WARNER BROS.,C2000\nRETAIL/SMALL BUSINESS,SELF-EMPLOYED,G4000\nBOND TRADER,C.I.B.C. WORLD MARKETS,F2100\nExecutive,Cleary Petroleum Corp.,E1150\nSite Manager,Health Care,J7120\nDIRECTOR,NYATEP,Y4000\nFOUNDER AND CEO,RYZEX GROUP,Y4000\nOwner,Farm & Fleet,A1000\nW ALTON JONES FOUNDATION,,X4100\nATTORNEY,GORI JULIAN & ASSOCIATES,J1200\nRETIRED PROFESSO,ROSE STATE COLLEGE,X1200\nPresident and CEO,AJ Dwoskin and Associates,F4100\nOWNER,HEMLOCK HILL FIELD STATION,Y4000\nTHE WYNNTON GROUP,,F4100\nEngineering Exec,Lucent Tech.,C4600\nCFO,Genomic Health,H0000\nCON,COMPONENT ASSEMBLY SYSTEMS INC.,B3000\nFLEET SERVICES CORPORATION,,F1100\nMOSSBERG & GLOTZEK D,,Y4000\nDESERT TOYOTA SCION OF LAS VEGAS,,T2300\nCFO,Alson Capital Partners,F2300\nInformation Requeste,Artbts Public Domain,J1200\nINSURANCE AGENT,KBS INTERNATIONAL CORP.,Y4000\nPRINCIPLE,BROWN ASSOCIATES,Y4000\nOrthopaedic Surgeon,\"Azalea Orthopedic & Sports Medicine, P\",H1130\nEMPLOYEE,SPACEX TECHNOLOGIES,T1700\nCity Councilman,Kansas City,Y4000\nSTATISSTICIAN,SELF-EMPLOYED,X0000\nPUBLISH,TENN. VALLEY PRINTING CORP.,C1100\nVice President,Jr Realty Group Inc.,F4200\nFUNERAL,ALLEN & ALLEN FUNERAL HOME,G5400\nVICE PR,EMERGENT BIO SOLUTIONS INC.,D9000\nFREMONT UNION DISTRICT,,X3500\nEXECUTIVE,FEINBERG SHOPP ASSOC.,Y4000\nRB Developer,Winthrop,Y4000\nAttorney,Vaughan & Demuro,K1000\nPHOENIX TRANSPORTATION SE,,Y4000\nConsultant,ElectaVan,Y4000\nMAK CAPITAL/CFO/COO,,F0000\nINDIANA SCHOOL BOARDS ASSN,,X3500\nDRIVER,YES LUXURY INC./DRIVER,Y4000\nADMINISTRATOR,ARMADILLO & CO/ADMINISTRATOR,Y4000\nConsultant,Alan Coffey LLC,K2000\nExecutive,R. A Jeffreys Distributing Company,Y4000\nOwner / Architect,\"Jeffrey M Kudla, Architect LLC\",B4200\nSHAPED WIRE,,Y4000\nWINN-DIXIE GREENVILLE,,G2400\nCEO,HECO,Y4000\nExecutive,Barth Dental Lab,Y4000\nATTORNEY,WASINGER KICKHAM & KOHLS,K1000\nProduction Coordinator,Warner Bros Games,C2000\nMIT LINCOL LAB,,T1400\nCHAIRMAN,ATLANTA BRAVES,G6400\n\"SHOTZ, MILLER GLUSMAN\",,F5100\nBOHDMAN LONGLEY ET AL,,Y4000\nCONSULTANT-MANAGING PARTNER,SELF-EMPLOYED,G0000\nDirector of Masrketing,Danna-Gracey,Y4000\nFINANCIAL EXECUTIVE,NORTHFIELD BANK,F1100\nFRAGRANCE DESIGNER,COTY,Y4000\nCoo,NVI,Y4000\nLOBBYIST,S.R. WOJDAK & ASSOCIATES,K2000\nAttorney,\"Kotin, Crabtree and Strong\",K1000\nFINANCE COORDINATOR,STATE - HPHA,X3000\nATTORNEY,LAW OFFICES OF WD HOCHBERG,K1000\nVTA RADIOLOGY MEDICAL GROUP,,H1130\nINVESTOR,\"EPM ADVISORY, LLC\",F5000\nTRUCKSTOPS OF AMERICA-KENLY,,E1170\nPRES,KNOWLTON INDUSTRIAL STEEL SUPP,Y4000\nPharmacist,\"Forlenza's Pharmacy\",H1750\n\"GARY, NAEGELE & THEADO\",,K1000\nOFFICE MANAGER,WATERS & KRAUS,K1100\nSTUDENT,STUDENT,C2000\nPRESIDENT-COSMET,LIZ CLAIBORNE INC.,M3300\nATTORNEY,BRACH EICHLER LLC,Y4000\nCONSULTANT,BLUE STAR SERVICES INC,Y4000\nN M BROADCASTING,,C2000\nACTION EQUIPMENT CO INC,,Y4000\n\"FRAGOMEN ET AL, LLP\",,K1000\nRealtor,5005 Properties,F4000\nAttorney,\"Patient Command, Inc\",Z9500\nCongressman,Earl Pomeroy Chief Of Staff,Y4000\nADMINISTRATOR,SCHOOL,H5000\nCHARLESTON REVICH & WIL,,Y4000\nPRESIDENT CHIEF EXECUTIVE OFFICER,ORA,H4500\nSENIOR VICE PRESIDENT,AIG COMMERCIAL ASSET FINANCE,G5300\nDeputy Director,Seattle Monorail Project,Y4000\nREAL ESTATE BROKER,FOX & CARSKADON,Y4000\nExporter,Professional Export Services,G1200\nReal Estate Appraiser,\"B C Johnson Appraisers, Inc\",Z9500\nPENNIE & EDMONDS,,K1000\nWALNUT CAPITAL,,Y4000\nDIREC,CAPITOL HILL CONSULTING GROUP,K2000\nFARMERS & MERCHANTS N B,,F1100\nCPA,JERRY L. CONROW & COMPANY,J1100\nGOODWIN MOORE ET AL,,K1000\nARCHITECT,JIMMY DUMAS ARCHITECT,B4200\nMEDICAL DOCTOR,CAREFREE PLASTIC SURGERY,Y4000\nRetired,Lawyer,J7300\nWILLIAM GROSSMAN REAL ESTATE,,F4200\nEXEC DIR & CEO,NATIONAL COURT REPORTERS ASSOCIATION,G0000\nAttorney,DGM Partners,J1200\nPsychologist,\"Karen Sabovich, Ph.D.\",Y4000\nScientist,\"Structural Genomix, Inc.\",J7400\nMarketing Consultant,Mark Mitchell Consulting,Y4000\nEXECUTIVE DIRECTOR,THE BRAINERD FDN.,Y4000\nLA DEPT OF MENTAL HITH,,J7400\nPresident,Leon Realty,F4200\nSMALL BUSINESS ADMIN,,X3000\nBallet Mistress,Les Grands Ballets Canadiens De Montrp,J1200\nLawyer,Law Offices of Jason Waechter,K1000\nSUNNYSIDE AUTOMOTIVE COMP,,T2310\nAccountant,\"Blue Coat Systems, Inc\",C5130\nPROF TRUST INVTS,,Y4000\nPARTNER,MCGUIRE WOODS,K1000\nIMRI,,Y4000\nAPOLLO LEASING CORPORATION,,T4000\nMANAGEMENT-OWNER,OSBORNE COINAGE COMPANY,M2300\nTHE ENERGY PROJECT/PRESIDENT/CEO,,E1000\nMEDICAL BILLING MANAG,QUEST IMAGING,Y4000\nPARTN,\"THE FRANKLIN PARTNERSHIP, LLP\",K2000\nOwner,Oak Cliff Shirt Co. Inc.,Y4000\nEngineer,\"Sigler, Winston, Greenwood & Assoc\",Y4000\nINFO REQUESTED,Baptist Health Neurosurgery,H1130\nOIL,,X1200\nPARA-CHEM,,Y4000\nReal Estate Manager,DPH Investments Co.,F4200\nVice-President of Op,Exelon,E1600\nArchitect Developer,\"Dekker, Perich and Sabatini\",F4100\nFAMILY PHYSICIAN,CROZER KEYSTONE,H0000\nVICE PRESIDENT,DYNAVOX TECHNOLOGIES,C5000\nPRIVATE BANKER,WELLS FARGO,F1100\nUniversity Professor,University of the South,H5100\nMARKETING ASSISTANT,HAPPY WISKERZ COOKIE CO.,Y4000\nPresident,Community Nursing Svcs. Inc.,Y4000\nENGINEER,KLA TENOR INC.,Y4000\nPRESID,DIVERSIFIED DEVELOPMENT INC.,G5200\nBereavement Ministry,St Michael Church,X7000\nBUONASSISSI HENNING CAMPBELL & MOFF,,Y4000\nSENIOR EXECUTIVE VP,\"AXA ADVISORS, LLC\",F3300\nCALHOON MEBA ENGINEERING SCHOOL,,LT500\nInformation Requeste,Information Requested 6/9/06,T3100\nWILLIAMS MOTOR CO,,T2300\nOWNER,99A DISTRIBUTORS,Y4000\nEXECUTIVE,COMPASS GROUP,G2910\nCOURTNEY CONSTRUCTIO,,B1500\nPODIATRI,BENSON PODIATRY ASSOCIATES,H1130\nRetired Professional,N/A,Y4000\nDIRECTOR OF CORPORATE ACCOUNTING,G & J PEPSI-COLA,G2600\nATTORNEY,MARINO & DOUGHERTY L.L.P.,K1000\nCarpenter,Passaic Valley Sewerage Commis,Y4000\nOwner,David Scully and Company,Y4000\nPRESIDENT,\"FIFTH THIRD BANK, NE OHIO\",F1100\nManaging Member,BBC Lawn Care Of Jackson LLC,Y4000\n\"UNIVERSITY OF TEXAS, AUSTIN\",,H5100\nBERNICK BEVERAGE,,G2700\nAdvertising,Masterpiece,G5210\nPRESIDENT/CEO,LODI MEMORIAL HOSPITAL,H2100\nMADISON SQUARE,,Y4000\nPharmacist,Ye Olde Pharmacy,H1750\nBANKER,BUSEY BANK,F1000\nEXECUTIVE DIRECTOR,\"MEDRAD, INC\",K2000\nLAW OFFICE OF BERNARD BER,,K1000\nADMINISTRATOR,METHODIST HOSPITALS,H2100\nSELF EMPLOYED BUSINESS OWNER,ARGUE-MENT GOLF COURSE INC.,Y4000\nOrthopaedic Surgeon,Self-employed,H1130\nATTORNEY,ZACKSON LAW LLC,K1000\nEXECUTIVE,A. FUENTE CIGAR COMPANY,Y4000\nPresiden CEO,Mercy Health System,H3700\nSTATE OF FLORIDA HRS,,X3000\nself,landlord,Z9500\nREAL ESTATE,PAPETTI HOLDING COMPANY/REAL ESTATE,Y4000\nOWNER,SOUTHWEST RETIREMENT CORP.,F4500\nEXECUTIVE/BUSINESS OWNER,SNOHOMISH FLYING/HARVEYFIELD,Y4000\nATTORNEY,BROOKS STEVENS AND POPE,K1000\nNW IOWA UROLOGIST,,H1130\nceo,USCF Medical Center,H2100\nCONSULTING LOBBYIST,,K2000\nCONSULTAN,RICHMOND CONSULTING GROUP,Y4000\nKISTLER TIFFANY & CO,,Y4000\nANDROS TELECOM INC,,Y4000\nUNION ORGANIZER,NEARI,Z9500\nRealtor,Meridian Properties,F4000\nCHIEF FINANCIAL OFFICER,MOISON COORS,Y4000\nN A H B EVP,,B2000\nINVESTMENTS,HOWLAND ADVISORY CORP,Y4000\nATTORNEY,TAYLOR LAW PARTNERS,K1000\nHospitalist,Providence Health System,H1100\nMoney Manager,Mikus Capital Management,F2100\nCRANE OPERATOR,LEVY COMPANY INC.,Y4000\nOWNER,THE MELANSON CO.,Y4000\nWHOLESALER,NATIONAL LIFE,Y4000\nPRESIDE,ALBUQUERQUE NEW CAR & TRUCK,T3000\nCONSULTANT,EZI,Y4000\nMIRMAN INVESTMENT,,Y4000\nCEO,BAY CLINIC INC,Y4000\nREAL ESATE,TIME REALTY INVESTMENTS,F4200\nPRESIDENT,SELECTED FINANCIAL LIFE,F0000\nAnesthesiologist,Affiliated Anesthesiologists,H1100\nSMITH AFFILIATES,,Y4000\nBANKER,NORTHWEST SAVINGS,Y4000\nCABLE HUSTON BENEDICT HAAGENSE,,Y4000\nunemployed,Purchasing Mgr.,G0000\nWAYNE COUNTY MI,,J7400\nManager,Epsi,Y4000\nPlant Manager,New Spring Packaging,Y4000\nOWNER,LIBERTY AMBULANCE,H3000\nOVERSTREET PAVING CO,,B3000\nOFFICE WORKER,SELF,G0000\nMARINA MANAGEMENT CORPORATION,,Y4000\nSenior Director of Sales,Comcast Spotlight,C2200\nGRATTAN FINANCIAL STRATEGIES,,F0000\nSPORTS WRITER,NY TIMES,C1100\nBuilder,J Jingoli & Sons,B1000\nNAT UNITED BROK,,Y4000\nLAND DEVELOPMENT BEALL HOMES INC,,B2000\nEngineer,Zurich,J1200\nPresident/CEO,CTCA,Y4000\nBanker,Mortgs Unlmtd,J1200\nNGO President & CEO,The Synergos Institute,X4000\nPartner,Stephen K Christenson P C,Y4000\nFRANKLIN L HANEY COMPANY,,F4100\nPhysician,Cascade Caner Center,H1100\n\"Gov't Affairs\",\"Poole, McKinley, & Blosse\",K2000\nPLASTIC SURGEON,STEVE LAVERSON MD,H1100\nINVESTMENTS,COPPER ARCH CAPITAL,F0000\nCEO,HATFIELD QUALITY MEATS,G2300\nPHYSICIAN,UNIVERSITY OF WISCONSIN,JD200\nCALIFORNIA INSTITUTE OF THE ARTS,,J7400\nBUSINESS BANKING MANAGER,NBT BANK,F1100\nPAUL CARRIER & ASSOC,,Y4000\nSAFECO INSURANCE,,Y4000\n\"VP, Global Sales & M\",\"Puresyn, Inc.\",Y4000\nPRESIDENT,DIGICOMM,Y4000\nVITAMIN WORKS,,H4600\nOwner,Smith Printing Corp,C1300\nPresident,CapitalBank,F1100\nSTRAUB METAL SERVICES,,M5100\nExecutive Producer,Double Wide Media,Y4000\nPRESIDENT,MICRO DESIGNS LTD,Y4000\nPROJECT MANAGER,NEWMONT MINING CORP.,E1220\nTEACHER,CLARK COUNTY SCHOOL DISTRICT,X3500\n\"CANN'S FARM\",,A1000\nBusinessman,Scott Laboratories Inc,Y4000\nEstimator/Project Manage,Self employed,G5000\n09508-VP PHARMACY OPERATIONS,Rite Aid Corporation,G4900\nFounder,Owl Creek Asset Management,F2100\nAccount Executive,\"LaPorte & Associates, Inc.\",B0500\nCITY CLERK,CITY OF SONORA,X3000\nSENIOR COUNSEL,HP,C5100\nPresident,\"CRIST Company, Inc.\",Y4000\nCIO,Calpers,X3000\nEVP BUSINESS & LEGAL,SONY BMG MUSIC,Y4000\nHEALTH CARE CONSULTANT,CONTEMPORARY BENEFITS DESIGN/HEALTH,Y4000\nELECTRICIAN,SHELL,E1110\nOWNER,SOUTHWEST DESIGNS LLC,Y4000\nScientist,Ovshinsky Innovation,Y4000\nRemote Sensung Scientist,The Johns Hopkins University,H5100\nBARBARA ENGMANN ASSOCIATES,,Y4000\nsemi-retired,Chapel Investment LLC,Y4000\nVETERINARIAN,FARM VETERINARY,A4500\nPRESIDENT,ARMADILLO HOMES,B2000\nPhysics Teacher,The Calhoun School,H5000\nATTORNEY,CLARK BLOSS & WALL,K1000\nCORP PE MGR,UNITED PARCEL SERVICE,T7100\nVITAS HEALTH CARE INC,,H3100\nGERIATRIC SOCIAL WORKER,,H6000\nReceptionist,Sac. Waldorf School,Y4000\nPresident,Richard L Futral & Associates Pa,Y4000\nCONCIERGE UNLIMITED,,Y4000\nSELF-EMPLOYED/INVESTOR/ATTORNEY,,F7000\nCHAFFIN INC,,Y4000\nGRESHAM OIL,,E1100\nPROFESSOR,YORK COLLEGE OF PA,H5100\nPresident,Clay Demopcratic Club,Y4000\nC.E.O.,\"STRATEGIC INVESTMENTS & HOLDINGS, INC.\",F2100\nEXECUITIVE,RETIRED,Y4000\nOWNER,AUDACIOUS INQUIRY LLC,Y4000\nGeneral Council,NASDAQ,F2400\nPRESIDENT,ALTAMONT SECURITIES/PRESIDENT,F2100\nIT PROFESSIONAL,ENSCO INC.,D6000\nPRESIDENT,GOFFMAN MC CORMICK & URBAN INC,Y4000\n\"REBECCA'S\",,Y4000\nGRAYCE B KERR FUND,,J7150\nSPECIAL ASS,CITY & COUNTY OF DENVER,X3000\nBRIARWOOD-MANNING CORP,,Y4000\nMULLIGAN PROFESSIONAL CORP,,Y4000\nINDEPENDENT PRODUCER AND PROPERTY MANA,SELF-EMPLOYED,G0000\nChief Quality Office,GE Healthcare,M2300\nUSA BANCSHARES,,F1100\nSOFTWARE ENGINEER,THE CENTECH GROUP,J7400\nSENIOR BUSINESS DEVELOPMENT MANAGER,SCHLUMBERGER,E1150\nAttorney,DILLON BITAR AND LUTHER,K1000\n\"Montgomery County Public Schools, Mary\",Teacher,X3500\nALNA,,Y4000\nBOOKING AGENT,THE HARPER AGENCY,Y4000\nCHIEF FINANCIAL A,G.F.I. GROUP INC.,F2100\nLamar Advertising Company,Sales Manager,G5230\nPRODUCE BROKER,AKIN PORTER PRODUCE,A1400\nPRIVATE EQUITY,ACCEL-KKR,Y4000\nNURSE,MTH,Y4000\nAMERICAN TECHNOLOGIC COLLEGE,,H5200\nAttorney,\"Kazan, McMclain, Abrams\",K1100\n\"Chairman, CEO, EMEA\",Citigroup,F1100\nARCHITECT,NEW ENGLAND DESIGN,Y4000\nAMHOLD AND S. BLEICHROEDER HOLDINGS,,Y4000\nsales,Thrivent Financial,Z9500\nENGINEER,ENERGY SOLUTIONS/ENGINEER,E2000\n\"SVP, FEDERAL GOV'T AFFAIRS, NBCUNIV\",COMCAST CORPORATION,C2200\nHEAL,BENEFIT CONSULTANTS OF VA INC.,F3200\nphysician,Treasure Coast Urgent & Family Care,Y4000\nPRESIDENT AND CEO,SCUNCI,M3100\nEDUCATOR,E D C,Y4000\nVP Finance,Midwestern Pipeline Services,J1200\nHICKORY LOG RESTAURANT,,G2900\nBRYCE HILL CO,,B5100\nDENTIST,MASS. GENERAL HOSPITAL,H2100\nMA,CAL FACILITES MANAGEMENT COMPANY,Y4000\nBoard Member,Kentucky Bank,F1000\nPRESIDENT/MANUFACTUR,HUNTER DOUGLAS INC.,M4000\nPHYSICIAN,ATL. INFECTIOUS DISEASE SPEC.,K1000\nPresident,Uhlig Supply Co,Y4000\nOwner,BEAR CREEK CAPITAL,F4000\nWILLMAN MANUFACTURING,,Y4000\nAttorney,Smith Houghey Rice & Roegge PC,K1000\nMARINE,US DOD,X5000\nSCIENTIST,UW-VET SCHOOL,H5100\nINVESTMENTS,CONNORS & CO.,Y4000\nC.E.,BLUE CROSS BLUE SHIELD OF WYOM,F3200\nBeverage distributor,Columbia Distributing Co,G2850\nFaculty,College of W&M,H5100\nCHAIRMAN & CE,CARLSON HOLDINGS INC.,Y4000\nBranch Manager,AG Edwards,F2100\nPhysician/CEO of Medicare Research Ins,Samueli Institute,X4000\nCOLUMBIA CAROLINA,,Y4000\nATTORNEY,KAISER/ATTORNEY,H2000\nEDUCATOR,ELON LAW SCHOOL,K1000\n,JAMES KIMO CAMPBELL PHILANTHROPIST,JE300\nTHORN RMI RENTAL AMERICAS,,Y4000\nPresident Emeritus,Green Mountain College,Y4000\nHOMEBUILDER,HARRISON HOMES,J1100\nATTORNEY,DENENER TAYLOR & TAYLOR,K1000\nCLIENT DEVELOPMENT EXECUTIVE,DLA PIPER,K1000\nREAL ESTATE,METROVEST,F4000\nOwner,Curves Waco,Y4000\nattorney,Edwards & Taylor,K1000\nAttorney,Holtzman Vogel PLLC,K1000\nSOFTWARE DEVELOPER,SOUNDHOUND INC.,Y4000\nFAMILY MED CENTER OF,,H1100\nVice President,Lights of America,Y4000\nOwner,Amcep Metals,Y4000\nCeo,Tate Medical Center & Breast Inst.,H1100\nSTEWART PETROLEUM,,E1100\nV.P.,JH REABEN OIL,E1100\nPresident/CEO,Outlook Group Corp.,C1300\nPLY GEM INDUSTRY,,B5200\nDRIVER,MV PUBLIC TRANSIT,Y4000\nMANAGEMENT,THE PUBLISHING,C1100\nMONTGOMERY EYE CENTER,,H1120\nPsycologist,Self,J7150\nPresident,\"Inter Church Residences, Inc.\",X7000\nInformation Requeste,cranbrook educational community,Y4000\nJD,,Y4000\nCommercial Real Estate,\"Moser & Associates, Inc\",F4000\nATTORNEY,FRERICHS LAW OFFICES,K1000\nCommunity Volunteer,NA,J7150\nPresident & CEO,Crawford Edgewood Managers,F4200\nFUNDRAISING CONS,JMF CONSULTING LLC,J5100\nEngineer,Apple Inc,J1200\nconsultant,elmendorf strategies,K2000\nOwner,Denny Menholt Frontier Chev,T2300\nMAIDSTONE CONSTRUCTIONS,,B1500\n\"SENIOR DIRECTOR, MULTIMEDIA PROJECT MA\",COMCAST,C2200\nWESTON F MILLIKEN,,J7300\nAttorney,\"Grossman and Moore, PLLC\",K1000\nROSENFELD MEYER & SUREEN,,K1000\nMANAGEMENT,ING,F3100\nAttorney,Heard Robins Cloud Black,K1100\nARROW ADHESIVES,,Y4000\nCOACH,FOX CHAPEL AREA HIGH SCHOOL,Y4000\nBLOUNT SIKES & ASSOCIATES,,Y4000\nInvestment Advisor,PRUDENTIAL,F3300\nSERVICES,COFFEE COUNTRY,Y4000\nPartner,Riveredge Management,Y4000\nFederal Deposit Insurance Corp.,,X3000\nEDENS & AVANT,,F4000\nPrincipal,\"Scungio, Borst & Associates\",J7500\n\"RUDY'S CUSTOM UPHOLSTERY\",,Y4000\nInformation Requeste,California Department of Health Servic,X3000\nOWNER,POWER RIG,Y4000\nFILM MAKER,ANDREW WYLY FILM CO.,C2400\nExecutive,Oberweis Dairy,A2000\nNURSE PRACTITIONER,,H1710\nMANAGING DIRECTOR,GUGGENHEIM CAPITAL MARKETS,Z9500\nE P FERRRIS & ASSOC,,Y4000\nOWNER,\"RD MANAGEMENT, LLC\",F4000\n\"HUBER'S INC\",,Y4000\nCNO,Frankfort Regional,H2100\nEDUCATIONAL COUNSELOR,,J5100\nWRITIER,SELF EMPLOYED,C1100\nCLEARY GOTTIEB STEEN & HAMILT,,K1000\nOpthamologist,Univ of Maryland,J9000\nGEOGRAPHIC MARKETING,,G5210\nATTO,GOIDOSIK MORSE & VANDEUSEN PLC,K1000\nEXECUTIVE,HAIN CELESTIAL,G0000\nPHYSICIAN,MERCY CLINIC JOPLIN,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,LINDA TUCK INSURANCE,Y4000\nFinance Sr Manager,Bank of America,F1100\nSelf Employed,Alpar Energy,E1120\nACCOUNTANT,GPA TAX INC.,F5300\nBEER DISTRIBUTOR,W&L SALES,Y4000\nAuthor,Self employed,Z9500\nU.S. Government Empl,D.O.D.,X5000\nHEALTH_SAFETY MANAGER,UNITED PARCEL SERVICE INC.,T7100\nConsultant,KPMG,J7400\nAttorney,\"Washington & Wells, LLC\",Y4000\nROGERS PK SURGERY CENTER,,Y4000\n\"COOK CO STATE'S ATTORNEY'S OFFICE\",,X3200\nPRESIDENT,AMERICAN IRON & STEEL INSTITUTE,M2100\n\"SKOGEN'S FOODLINER\",,Y4000\nFINANCIAL PROFESSIONAL,M.E.S.A. SECURITY,Y4000\nGROCER,\"GREGERSON'S FOODS INC.\",Y4000\nGeologist,Ash Grove Cement Co.,B5100\nShared Services Administrator,Clean Harbors,Y4000\nBEASLEY CASEY AND URPSTEIN,,K1000\nAttorney,\"Pilka & Associates, P.A.\",K1000\nOwner,Grover/Thurston Gallery Inc,X4200\nLAWYER,\"HAYNES & BOONE, LLP\",K1000\nProfessor,Johns Hopkins Univ.,J1200\nEXECUTIVE,BANK OF AMERICA,Z9500\nTeacher,Glendale School District,X3500\nUNIV OF DENVER,,J7400\nATTORNEY,\"ROBICHAUX, MIZE, WADSACK & RIC\",Y4000\nVP/GM,Lafarge North America,B5100\nConsultant,Reuz Allen Hamilton,Y4000\nPresident,Alaska Distributors Co.,G2850\nCONSTRUCTION CO INC,,A0000\nATTORNEY,LEGAL SERVICES P.C.,K1000\nCIVIL SERVICE,U. S. GOVERNMENT,X3000\nEXECUTIVE,ELFORD INC.,B1500\nOWNER,\"D. B. INDUSTRIES, INC.\",Y4000\nLAWYER,STATE OF NC/LAWYER,X3000\nPresident,\"Comer Distributing Co., Inc.\",G2850\nATTORNEY,\"HINKLE, HENSLEY LAW FIRM/ATTORNEY\",K1000\nDI GENOVA & TOENSING,,K2000\nPRINTER,QUARTIER PRINTING CO,Y4000\nJOSEPH KATTER & ASSOC,,K2000\nBUSINESS OWNER,HENRY CONSULTING LLC,G5200\nACCOUNTANT,G.P. OIL FIELD SERVICES,J9000\nAttorney,\"Burke, Sorenson & Williams\",K1000\nPublic Affairs Specialist,Delaware Air National Guard,X5000\nPRIVATE EQUITY INVESTING,LIBERTY CAPITAL PARTNERS INC.,F2600\nBeverage Wholesaler,B&K Distributing,Y4000\nHand Finisher,Spirit Aerosystems,T1300\nPRINCIPAL,RH STRATEGIES,Y4000\nMANAGMENT ASSOCIATES,,Y4000\nELDERWOOD AFFILIATES INC,,Y4000\nPhysician,KCAA,H1100\nLT. COL.,USA,X3000\nKATSENES FINANCIAL,,Y4000\nMANAGER,FRONT SEAT,Y4000\nPRESIDENT/C.E.O.,HENDERSON SEWING MACHINE CO.,Y4000\nKENNETH BALK & ASSOCIATES,,Y4000\nDigital Artist,Lucas Digital,J1200\nADU,CARDIOLOGY CENTER OF CINCINNATI,H1100\nOwner,Elite. Real Estate Associates,F4000\nCommercial Real Esta,Reality Links LLC,Y4000\nMANAGING DIRECTOR,MONTICELLO ASSOCIATES,Z9500\nAttorney,\"Radioframe Networks, Inc\",Y4000\nINSURANCE SALES,C A I INSURANCE AGENCY INC,X1200\nElectrician,Leber & Bonham Electrical Construction,B1500\nATTORNEY,JENSEN BAIRD GARDNER HENRY,K1000\nLAWYER,\"SCHALTZ, ROTH & ZABEL, LLP\",K1000\nPresident,Lakefront Supportive Housing,Y4000\nCONSULTANT RELATIONS,GE ASSET MANAGEMENT,Z9500\nREG PHY ASST,,E4200\nCHEVY CHASE CARS INC./AUTO SALES/SE,,T2300\nExecutive Vice President/Attorney,New York Stock Exchange Regulation,F2400\nOWNER,IES,Y4000\nCPA,\"Loring Ward, Inc.\",F2100\nENGINEER,ADVANTAGE ENGINEERING,B4400\nDIRECTOR GOV. REL.,THE AMERICAN CONS. UNION,Y4000\nPhysician,Scvmc,Y4000\nTHERAPEUTIC ASSOCIATES,,H1700\nEXECUTIVE,MARKET VALUE PARTNERS COMPANY,G5280\nAttorney,\"Seyburn, Kahn, Ginn Bess and Serlin\",K1000\nPresident,Sirote & Permutt,K1000\nEXTRACO,,J1100\nEnvironmental Engagement,Microsoft Corp,C5120\nAttorney,Robie & Mahhai,J7400\nCHIEF OP,THE HAMILTON-RYKER COMPANY,Y4000\nMEDICA,MOON HOLDER & ASSOCIATES LLP,Y4000\nOWNER,LARKIN MARATHON,Z9500\nDOCUMENT DESIGNER,ENERGY NORTHWEST,Z9500\nDALE STRAM & ASSOC,,Y4000\nDIRECTOR OF GRASSROOTS,AMERICAN HEALTH CARE ASSOCIATION,H2200\nVP OF OPERATIONS,GENWORTH FINANCIAL,Z9500\nCOMAX,,Y4000\nProduce Distributor,\"Krasst Joseph, Inc.\",Y4000\nChairmann-Chief Executive Officer,Sanderson Farms,A2300\nVICTORY FINANCIAL GROUP INC,,E1120\nJ I JONES CREATIVE SERVICES,,C5120\nOPHTHALMOLOGIST,SELF EMPLOYED,Y4000\nARCHITE,DOUGLAS RICHMOND ARCHITECTS,B4200\nATTORNEY,MINTZ LOVIN,Y4000\nEXECUTIVE,DELTA DEVELOPMENT,Y4000\n\"GRAIL PARTNERS, LLC\",,F2300\nINFO REQUESTED,CO-OP CORPERATION FOR OWNER OP PROJ,Y4000\n\"Director and VP, Industry Affairs\",North State Communications,C4100\nPRESIDENT,ANSCHUTZ,Y4000\nDISTRICT MANAGER,HARBOR PINES APARTMENTS,F4500\nCEO,Gene Therapy Systems,Y4000\nmayor,City of Barnesville,X3000\n35 MAKE-UP DESIGN,,Y4000\nPRESIDENT,KENNEDY GLASS,G1200\nSTILLWALL FINANCIAL,,Y4000\nHEALTH INSURANCE,SELF EMPLOYED,F3200\nCHAIR,PEOPLES FIRST PROPERTIES INC.,F4000\nJIMMY MATTHEWS TOWING & REPAIR,,T3100\n\"FCB, LEBER, KATZ PARTNERS\",,J7400\nPRESIDENT OF FAMILY OWNED BUSINESS,CHERRYDALE HARDWARE INC.,Y4000\nINVESTMENT BANKER,BENJAMIN EDWARDS CO,F2100\nOWNER,CENTERLINE CONSTRUCTION,B1500\nCeo,La James College,H5200\nVOLUNTEER KNIT APPAREL,,M3100\nINFORMATION TECHNOLOGY,CARNEGIE MELLON UNIVERSITY,H5100\nErnst & Young,Accountant,F5100\nATTORNEY,\"BALL KIRK & HOLM, P.C.\",K1000\nR-W CONTRACTORS,,B1500\nMARDANT ELECTRICAL,,B3200\nPARDOE REAL ESTATE,,F4000\nPRESIDEN,SHAMMROCK CAPITAL ADVISORS,F0000\nCONSULTANT,SELF- EMPLOYED,J7500\nPRIVATE INVESTOR,MBL PARTNERS,Y4000\nNOLS-WMI,,Y4000\nFOUNDATION FOR PSYCHOCULTURAL RESEA,,J7400\nN Y C DEPT OF TRAFFIC,,X3000\nATTORNEY,THO DENT LAW FIRM,K1000\nCEO,F & M BLANK LP,Y4000\nENGINEER,INTEGRYS ENERGY GROUP,E1620\nDENTIST,DONALD S. VOYNE D.D.S.,Y4000\nOwner,Essex County Construction Co.,B1500\nSOFTWARE ENGINEER,CALIX,J1200\nMERCY CLINICS,,Y4000\nMARINER,SELF-EMPLOYED,Y4000\nACCOUNTANT,RADA KOVICH & AMADO P.C.,F5100\nself employed,Weiss &  Goldrings,Y4000\nB STEPHEN COOPERAGE,,Y4000\nSOLID STATE OPTRONICS,,C5000\nMARKETING,YOUR HEALTH,Y4000\nW R  HAMBRECHT,,F2300\nINVENTOR,,Y0000\nLAWYER,KURT D ZIMMERMAN PA,K1000\nOPUS CORP,,F4000\nPhysician,\"Neeta Ambe-Crain, MD\",H1100\nMANAGER,WEST MUSIC CO.,Y4000\nSOFTWARE ENGINEER,TIBCO,Y4000\nORTHODONTIST,DRS. FRASEUR & JONES,H1400\nManager DC9 Flight S,ABX Air,T7100\nREALTOR,AAA REALTY GROUP INC,Z9500\nNot employed,Not employed,C4300\nERIE INDUSTRIAL,,Y4000\nMGR REAL E,ENTERGY MISSISSIPPI INC.,E1620\nRMO,\"SBR, Inc\",Y4000\nHomermaker,Information Requested,Y1000\nVice President,\"Danzer Services, Inc\",Y4000\nProprietor,Oasis Pools,Y4000\nOwner/Retail,\"Dr. Ike's\",X1200\nCEO,\"TAMPA FAMILY HEALTH CENTERS, INC\",Y4000\nSr VP,ACS,C5130\nPRESIDENT,SOUCY AGCY,F3100\nFIRESIDE CORNERS,,Y4000\nORGANIZATIONAL CONSU,SELF,J7400\nVice President,Media Vision,Y4000\nOWNER,CIRCLE K FURNITURE,Y4000\nATTORNEY,SEATON PETERS & REUNEW,Z9500\nTWENTIETH CENTURY FOX,,J7300\nAttorney,Leidner & Leidner,K1000\nPresident of Production,Act III Productions,J1200\nattorney,Scarzafava & Basdekis,K1000\nCHAIRMAN,MENZER HARDWOODS,A5000\nCEO,Crystal Audio Visual Services Inc.,Y4000\nNORTH AMERICAN AIRLINES,,T1100\nBANKER,SPIRIT BANK,F1000\nENGINEERING EXEC,,B4400\nExecutive,Colliers Turly Martin,F4000\nSOFTWARE DEVELOPER,CERTAIN SOFTWARE,C5120\nTANNENBAUM-HABER CO. INC.,,F3100\nARCHITECT,DAVIS SIMS ARCHITECTS,B4200\nOWNER,BOMBAY BRAZERY,Y4000\nOwner,Dew & Sons,Y4000\nKENNICOTT BROTHERS - CHICAGO,,A8000\nSELF/BEEKEEPER/BEEKEEPER,,A1600\n\"REINHART, BOERNER & VAN DEUREN SC\",ATTORNEY,J7400\nVICE PRESIDENT,EMERITUS,Y4000\nOVERTON & COMPANY AIR SER,,Y4000\nTV Writer/Producer,Evolution Film & Tape,C2400\nOKLA RURAL WATER ASSC,,Y4000\nFAMILY DOCTOR,WILLOW STREET HEALTH CENTER,Y4000\nOPTHALMOL,RAPID CITY MEDICAL CENTER,H2100\nVENTURE CAPITAL,SELF EMPLOYED,J5100\nENGINEER,N.T.H. CONSULTANTS LTD.,B4000\nGENERAL MANAGER,HELENA SAND & GRAVEL,B5100\nUNIVERSITY OF PHYSICIAN,,H1100\nPresident,Complete Mailing Service Inc.,Y4000\nLaw,Friedman Kaplan Seiler & Adelman,Z9500\nLOBBYIST,PENNSYLVANIA BA,B2000\nFARMER / RANCHER,Information Requested,A1000\nAdjunct Professor,Ramapo College,H5100\nPresident,\"Schaefer Wholesale Florists, Inc\",A8000\nDIRECTOR,PENNSYLVANIA GENERAL ENERGY LLC,E1000\nGovt Relations,Microsoft Corp,C5120\nIT CONSULTANTS.COM,SELF-EMPLOYED,G0000\nINVESTOR,SGP INVEST LLC,F2100\nPHYSICIAN,GEM STATE RADIOLOGY,H1130\nBUSINESS OWNE,\"STANLEY FLOWERS, INC.\",A8000\nPROFESSOR,SAMFORD UNIVERSITY,J1200\nROGERS CAPITOL CORP,,F0000\nReg Community Bank CEO,\"Pncbank, N.A.\",F1100\nKenmore Construction Co,,B1500\nFARMER/RANCHER,SELF-EMPLOYED,G0000\nINTERVENTIONAL CARDIOLOGY,\"Eastern Cardiology, PA\",H1100\nROCHESTER INST TECH,,H5100\nWARNER MAYOUE & BATES PC,,K1000\nRealtor,KLS Financial,F4200\nDIREC,LAWRENCE ECONOMIC DEVELOPMENT,Y4000\nL & L OIL CO INC,,G1200\nRESERVOIR CAPITAL GROUP,,F0000\nNot for profit foundation,Self,J7400\nSOUTH SIDE PROPERTIES,,F4000\nCONSULTANT,ALSTON USA INC,Y4000\nPRESIDENT,SOUTHLAND INSULATORS,Y4000\nORAL SURG,GEORGIA ORAL SURGERY INC.,H1400\nATTORNEY,PENNSYLVANIA LEGAL AID,Y4000\nBUSINESS MANAGER,S.P.I. AMERICA L.L.C./BUSINESS MANA,Y4000\nGENERA,ENGLISH CONSTRUCTION COMPANY,B1000\n,CHAPMAN SCHEWE BENEFITS CONSULTING,Y4000\nATTORNEY,STIRBA & ASSOCIATES,K1000\nSALES,INFORMATION REQUESTED PER BEST EFFO,G0000\nMicrobiologist,Usda,X3000\nEXECUTIVE,UNION STREET MANAGEMENT,Y4000\nNESS MOTLEY ETAL,,K1100\nInvestor Manager,Coin O Matic Inc,G5500\nEXECUTIVE,LA CADENA BUILDING MATERIALS,Y4000\nPOLICY ADVISOR,SACHS POLICY GROUP,G5200\nWA STATE LABOR COUNCIL AFL-CIO (CAR,,L0000\n\"Director, Systems De\",Tiffany & Co.,G4600\nCEO,FOURSCORE RESOURCE CPTL,F0000\nSenior Advisor,YWCA New York City,Y4000\nSchool Board Member,Atlanta School Board,X3500\nDeveloper,Creative Developers,Y4000\n\"Vice President, Sale\",\"Glazer's of Louisiana, Inc.\",G2850\nMCRIGHT JACKSON DORMAN MYRICK,,Y4000\nGeorgia Bankers Association,,F1100\nMMM - INVEST INC,,H2200\nBUILD,LEWIS CUSTOM HOMES INC GEORGE,B2000\nCFO,DEVAR INC,Z9500\nATTORNEY,BINGHAM,J5100\nWILKINS FAIR & GALLAGHER,,Y4000\nOFFICE MANAGER,\"ELECTROTECH, INC.\",Y4000\nEXECUTIVE,BLUE DANUBE INC.,Y4000\nCorp. President,Self,Y4000\nWASHINGTON HEALTH ASSOCIATION,,H2200\nSCIENTIST,CORNELL MEDICAL SCHOOL,H5150\n\"BULLIVANT HOUSER, BAILEY\",,Y4000\nCIO,HEARTLAND ALLIANCE,J7400\nVICE PRESIDENT,\"F & K DELVOLEC, INC.\",Y4000\nINSTRUCTOR,MAD SCIENCE,Y4000\nPresident,Elderwood Affiliates,Y4000\nExecutive Director,Campaign for America,J9000\nMANAGER,GREAT PLAINS MFG. INC.,Y4000\nPETROLEUM DEV CORP,,E1100\nGEN. MGR.,PCBC-MARYSVILLE,G2700\nTOUR OPERATOR,WORLD GUEST SERVICES,Y4000\nFABYANSKE,,Y4000\nattorney,Susan K Tomita Law Offices,K1000\nSales,The Stelter Company,Y4000\nCONSULTANT,\"GROUND ZERO PHARMACEUTICALS, INC.\",H4300\nBENJAMIN CO,,Y4000\nAttorney,Daniels Kashton Downs,K1000\nPRESIDENT,UNITED SHOWS OF AMERICA,G6100\nCHIEF FINANCIAL O,PATIENT CARE INC.,J7300\nEXECUTIVE,CRE FINANCIAL COUNCIL,Y4000\nAttorney,Frieden & Forbes,K1000\nColor and Production Manager,Blair LLC,Y4000\nOwner,Baldwin Travel & Cruises,T9400\nOFFICE OF COUNCILMAN BILL CLEVELAND,,Y4000\nBUSINESS EXECUTIVE,GOLD TECH INDUSTRIES,Y4000\nJUDGE,\"LOS ANGELES SUPERIOR C.OURT, STATE OF\",X3200\nENGINEER,ROCKETT & ASSOCIATES,Y4000\nGROUP PRESIDENT,SCIENCE APPLICATIONS INTL CORP,D3000\nPATHOLOGIST,MT SINAI HOSP MED CTR,H1130\nTRAVEL AGENT,ALL INCLUSIVEVACATIONS LTD,Y4000\nATTORNEY,PARKER POE ADAMS & BERNSTEIN LLP,K1000\nATTORNE,LEWIS TEIN ATTORNEYS AT LAW,K1000\nINFORMATION REQUESTED,DAVIS GRAHAM & STUBBS LLP,K1000\nCHAI,AFFILIATED TRANSP. SYSTEMS INC,Y4000\nOWNER/PRINCIPAL/PARTNER,PILLAR HOMES PARTNER INC,B2000\nMA,METRO INTERNATIONAL TRADE L.L.C.,Y4000\nINVESTMENTS,CHIMCO,Y4000\nCONSULTANT,SIMON &AMP; SIMON RESOURCES,Y4000\nPRESIDENT,CAPITAL LIGHTING,G4400\nAttorney,Legal Aid Society of New York,Y4000\nINTERIOR DESIGNER,ASHLEY FURNITURE,G4400\nexecutive,coral industries,Y4000\nINVESTOR,PROOF RESEARCH,J1100\nAttorney-at-Law,Cassidy & Assoc,K2000\n\"Managerial, Misc.\",\"Martin Stone Quarries, Inc.\",B5100\nOWNER,GALILEO CONSULTING GROUP,K2000\nVICE PRES,AMERICAN MEDICAL SECURITY,F3200\nPURCHASING,SOLUTIA,M1000\nIt Architect,Jpmorgan Chase,F1100\nRetail Gift Shop,Self,Y4000\nNot In Workforce,Not In Workforce,G0000\nCIGAR MANUFACTURER,J.C. NEWMAN CIGAR COMPANY,A1300\nExecutive,Danby Green,Y4000\nExecutive,Federal Research Consultants,H4500\nEXECUTIVE,TRIDENT CAPITAL PARTNERS,F2500\nTWU LOCAL 525,,LT600\nETHOS,EXECUTIVE DIRECTOR,Y4000\nExecutive,\"Solar-Tite, Inc\",Y4000\nMaintenance,Brookline Public Schools,X3500\nEXECUTIVE V.P.,REYNOLDS INC.,Y4000\nLEWIS & BEIMS,,K1000\nPRESIDENT,LOHMAN ASSOCIATES INC,Y4000\nA,REICHERT BURESH HERAUF & FICEK PC,Y4000\nRequested,Information,K1000\nREA,ALBERT M. GREENFIELD & CO. INC.,F4200\nSec-Treasurer,Office and Professional Employees,Y4000\nNetwork Engineer,McAfee,C5120\nHomemaker,none,X3200\nLawyer,Gregory A Hill,Y4000\nPOLIMENI BROTHERS,,Y4000\nAttorney,Elliot Ifraimoff & Assoc PC,K1000\nASSOCIA,WASHINGTON STATE UNIVERSITY,H5100\nBusiness Owner,A/c & R Services,B3400\nEXECUTIVE VICE PRESIDENT,AON RE,Y4000\nBROADCASTING E,HUBBARD BROADCASTING,C2100\nself-employed,Beus Gilbert PLLC,K1000\nStudent/Law Clerk,\"Seigfried, Bingham, Levy, Se\",Y4000\nPHYSICIAN,AFTATTOUIS PEDIATRICS,H1130\nVice President - Bus,MacFarlane Partners,F4500\nVP Operations/Marketing,Family Tree DNA,Y4000\nHR/ Diversity,ESPN Inc,C2200\nFUND ANALYST,FPA,Y4000\nARTIST,KANGAL GALLERY,Y4000\nGROUP EXECUTIVE & PRESI,DUKE ENERGY,E1620\nPRESIDENT AND CEO,\"NORTHROCK, INC.\",X4000\nWASTEWATER OPERATIONS,EBMUD,Y4000\nOwner,Independent Distributors,G0000\nGENERAL MANAGER,\"LARGE SCREEN VIDEO IMAGING, LLC.\",Y4000\nPRESIDENT,ABADI & CO,F2100\nGREATER DALLAS CHAMBER OF,,G1100\nMODERN HEALTHCARE,,H0000\nSr VP/General Mgr,MWW Group,K2000\nPRESIDENT,\"DIR, INC.\",Y4000\nBUSINESS AGENT,IUOE LOCAL 68,LB100\nPresident/CEO,Pacific Advisors,Y4000\nVICE PRESIDENT MARKETI,SAFETY-KLEEN,E3000\nCLINICAL HEALTH LAB,,H3400\nCAMERON ENGINEERING,,B4400\nDIRECTOR IT,UNIVERSAL STUDIOS IN.C,C2400\nPEDIATRIC EMERGENCY,\"MONTGOMERY EMERGENY PHYSICIAN'S\",Y4000\nRENNAC,,Y4000\nGOLD COAST AUTOTRONICS,,T2200\nOWNER,AQUAS INC.,Y4000\nBUSINESS OWNER,I.C.R.STAFFING,G5250\nOWNER,ZELLERBACK WINERY,G2820\nSVP and Chief Procurement Officer,Comcast Cable,C2200\nMANA,GULF CITRUS GROWERS ASSOCIATIO,A1400\nPRES,BENEFIT DESIGNS NORTHWEST INC.,Y4000\nSELF EMPLOYED,JENNINGS MGMT. CONSULTING LLC,Y4000\nOwner,Los Poblanos Inn,T9100\nhomemaker,NA,J1200\nChavkin,Columbia University,J1200\nPHYSICIAN,PEDIATRIC & ADOLESCENT ASSOC.,F3100\nPress Control Specialist,Early Times Distillery,G2820\nPresident/CEO,\"St Mary's of Michigan\",H2100\nTIJERINA-DUNNINGTON UROLOGY CLINIC,,H1130\nCEO,Earth Share,J1200\nPHYSICIAN,PREMIER HEALTH CARE SERVICES,Y4000\nBOUYEA - FASSETTS INC,,Y4000\nDirector Tax Finance & Business Policy,United States Telecom Association,C4100\nExecutive,BEAR STEARNS,F2300\nBOD Chair,University of Hawaii FCU,F1300\nEDWARD A KIRK COMPANIES,,Y4000\nCHEMIST,J. PALAZZOLO SON INC.,Y4000\nINVESTMENT ADVISOR,NONE,F2100\nGREER ENERGY,,Y4000\nELECTRICAL ENGINEER,\"TDI POWER, INC\",Y4000\n\"COMPUTER SALES, REAL\",SELF-EMPLOYED,G0000\nTeacher,Nido de Aguilas International School,Y4000\nANDY EASLEY ENGINEERING,,Y4000\nMANAGEMENT CONSULTANT,HAMILTON & CO./MANAGEMENT CONSULTAN,G5200\nEXECUTIVE,RADIAN DEV.,Y4000\nPRESIDENT,CAR WASH ENTERPRISES INC.,G5000\nCorporate Secretary,American Airlines,T1100\nPRESIDENT,\"SAND BARB, LLC\",Y4000\nLIBRARIAN/MEDIA SPCLIST,CLARKSVILLE SCHOOL SYSTEM,L1300\nAT HOME,,M2000\nY&K MERCHANDISE,,M3100\nCONTRA,PERFORMANCE SWING STAGE INC.,Y4000\nSUBSTITUTE TEACHER,STAPLES HIGH SCHOOL (WESTPORT),Y4000\nMunicipal Administra,City of Ventnor,X3000\nPolitical Worker,Whetstone for State Rep.,Y4000\nPARAMOUNT,,J7400\nEXECUTIVE,\"TRI STAR SERVICES, LLC\",E1000\nASHLEY STEWART LTD,,Y4000\n\"DANT/CLAYTON COMPANY/BUSINESS MAN,\",,Y4000\nRYDER AIRLINE SERVICES,,T1600\nLegal Assistant,Beatty Bangle Strama,Y4000\nAttorney,Cowan & Gandara,K1000\nSOFTWARE ENGINEER,MEDIO SYSTEMS,Y4000\nKY TOURIST FEDERATION,,T9000\nAttorney,Choi and Associates,K1000\nBEECHWOOD COMPANY,,G6100\nWRITER/PRODUCER,WARM HAVEN ENTERTAINMENT,Y4000\nANESTHESIOLOGIST,JLR ANESTHESIOLOGY ASSOC.,H1130\nPROGRAM MGR.,CELESTICA,Y4000\nCEO,Global Communications Grp,Y4000\nOwner,Friends Healthcare Agency,Y4000\nATTORNEY,WARNER BROS. ENTERTAINMENT,J1200\nCEO,RADIANCE PLASTIC SURGERY/CEO,H1130\nLIFE INSURANCE AGENT,NEW YORK INSURANCE COMPANY,F3300\nDoctor,New Jersey Anesthesia Associates,H1130\nGrants Writer,The Cinton Foundation,Y4000\nCORNERSTONE COLUMBIA,,Y4000\nBusiness Executive Chairman,Block and Company Inc,F4200\nPHYSICIAN,CONERSTONE MEDICAL CLINIC,H2000\nVICE PRESI,ICAHN ASSOCIATES COMPANY,F2700\nKILA RADIO,,C2100\nManager,Duke Realty Company,F4100\nContract Specialist,Rowell Construction,B1500\nANESTHESIO,\"NEXUS MEDICAL GROUP, LLC\",H1130\nExecutive,Jarden Corporation,Z9500\nCHAIRMAN,GHAFARI ASSOCIATES,B4200\nIT DEVELOPMENT MANAGER,MEIJER,G2400\nVICE-PRESIDENT RESOURCE PLANNING,N.E.W. CUSTOMER SERVICE,Y4000\nMARKETING,THE WALT DISNEY CO.,C2000\nMUNICIP,PUBLIC ADVISORY CONSULTANTS,Y4000\nUrban Planner,Information Requested,X1200\nSENIOR VICE PRESIDENT,MCAPTIOL MANAGEMENT,K2000\nATTORNEY - AUTHOR,,K1000\nInvestor,\"Arbor Investments Group, LLC\",F7000\nAUDIO SALES,STUDIO CONSULTANTS INC.,Y4000\nJOSEPH F RUDA JR MD A MEDICAL CORPO,,H1100\nCPA,CANTERA TAX SERVICE,Y4000\nPERSONAL FINANCE,,F0000\nPartner,Glover Park Group,G5210\nGENERAL MA,UNIVERSITY ATHLETIC CLUB,G5800\nENGINEER,JENN MAR,Y4000\nC E O,I O S,C5130\n\"Medical Associates, LLP\",,Z1100\nCEO,Kramer Spellman,F2600\nASRC ENERGY SERVICES,,E1000\nATTORNEY,SIMPSON ABELS BOUSLOG,K1000\nEXECUT,EASTER BAG AND PAPER COMPANY,M7100\nPROFESSOR,UNIV OF S CA,H5100\nEXECUTIVE,WINTER PARK HOLDING CO,Y4000\n\"VICE PRESIDENT, STATE GOVT RELATIONS\",VERIZON,C4100\nAMERICAN BENELITS COUNCIL,,Y4000\nPresident,Kalamazoo Boiler Co. Inc.,Y4000\nLandscape Designer,Landscape Assoc. LTD,B3600\nPHYSICIAN ASSISTANT,DOD US ARMY,X5000\nManaging Partner,Mizeur Group,K2000\nCOMMISSIONER,KEY LARGO WASTEWATER,E3000\nSr Origination Analyst,NRG Energy,E1630\nUS HEALTH & HUMAN SVCS,,X3000\nREITRED,TEACHER/REITRED,J1200\nPartner,Ricca Newmark Design,T9100\nTECHNICIAN,HEWLETT & PACKARD CO,Y4000\nAttorney,Sanford Kahn Ltd.,K1000\nN/A/VICE PRESIDENT,,G2820\n\"WILKINS, FROHLICH, JONES ET AL\",,K1100\nSr Specialty Rep (SS,Pfizer U.S. Pharmaceuticals,Z9500\nState Legislator,State of MD,X3000\nOwner,Serenity Park,Y4000\nAUTO EXECUTIVE,SELF-EMPLOYED,G0000\nMANAGER,GIERTSEN COMPANY,Y4000\nSR VICE PRESIDENT,CELLULAR TELECOMM INDUSTRY,C4300\nBOXBE,EVP,Z9500\nM.D.,GREENVILLE ANSTHESIOLOGY,H1130\nChief Information Office,Corporate Office Properties Trust,F4100\nSOFTWARE DEVELOPER,NETSUITE INC,C5120\nPRESIDENT,PAUL ASH MANAGEMENT CO,J5100\nCONTACTED NO,CONTACTED NOT PROVIDED,Y2000\nREAL ESTATE BROKER,F.C. TUCKER COMPANY,F4200\nPhysical Therapist,University Medical Center,H5150\nPHD,,H5100\nPRESIDENT,AIR CONDITIONING CONTRACTORS OF AMERIC,B3400\nFARMER,BFC,Y4000\nGREENBRIER RESPIRATORY CARE SER,,H3000\nPATIENT SVC CORD,NATIONAL MARROW DONOR/PATIENT SVC C,H2000\nPAUL MAGLIOCCHETTI & ASSO.,,K2000\nMEDIATOR,\"BRODOSKY ADR, LLC\",G5200\nGoverment Relations,Tucson Association of Realtors,F4200\nAUTOMOTIVE ENGINEER,RETIRED,X1200\nCONSULTANT/ARTIST,SELF,Z9500\nowner,powehouse gym palm beach,Y4000\nC.E.O.,\"Mc Kinley, Inc.\",Y4000\nATTORNEY AT LA,\"SONNENSCHEIN, ET AL.\",H0000\nGovernment Relations,Alliances NW,K2000\n\"POTTLE'S TRANSPORTATION INC./OWNER/\",,Y4000\nBOARD OF TRUSTEES OF WELBORN CLINIC,,F1100\nC.E.O.,BEHAVIORAL RECOGNITION INC.,Y4000\nCRNA,MOUNT MARTY COLLEGE,H1710\nEngineer,Ingersoll-Rand,M2300\nLawyer,Hamilton,Y4000\nSHAREPOINT DEVELOPER,SAIC,D3000\nGovernment Affairs,Troutman Sanders Public Affair,K2000\nRETIRED,CTY OF PEMBROKE PINE,Y4000\nCSW,Step Family Foundation,X4100\nINDUSTRIAL TOOLING SUPPLY,CUTTING TOOLS INC,Y4000\nCONTRACT,WEDDELL BROS. CONSTRUCTION,B1500\nCONSTRUCTION,OHIO-WEST VIRGINIA EX. CO.,B3600\nCommunications Strategy,Self Employed,C0000\nreal estate,\"American Holly, Inc\",F4000\nVICE PRESIDENT,S&K SOD COMPANY,Y4000\nMarketting,American Express,J1200\nPRESIDENT,CONSUMER FINANCIAL SERVICES/PRESIDE,F1400\nHEATH DAVIS & MCCALLA,,J7400\ncontractor,Simplex Products,Y4000\nEMP. FIRST TOWER CORP.,,F1400\nEmergency Physician,\"Univ of Cincinnati Med Ctr, ED\",H1100\nCERT. PHARMACY TECH,PEAK PHARMACY,G4900\nFINANCIAL WRITER,SELF EMPLOYED,C1100\nRESTAURANT,OWNER-BLACKBEARDS REST,Y4000\nCAR DEALER,LEE AUTO MALL,T2300\nMCCORVEY SHHET METAL WORKS LP,,J1100\nCHARMAN & CEO,PATTERSON PLANNING,Z9500\nSPRINK,UNITED ASS. UNION LOCAL #696,J6200\nEXECUTIVE,WELLCARE HEALTH SYSTEMS,F3200\nCREDIT UNION C,PIEDMONT AVIATION CU,F1300\nSchoolcounselor,Sparta Twp. Board Of Education,X3500\nCORP Vice President;,Microsoft,C5120\nReal Estate,Chestnut Hill Real Estate,F4000\nINFO REQUESTED,GASTROENTROLOGY  ASSOCIATES,H1130\nWAGNER LAMBERT COMPANY,,H4300\nDEAN,TEXAS SOUTHERN UNIVERSITY,H5100\nEXECUTIVE,WILKINS DEVELOPMENT CORP.,G4100\nSUSQUEHANNA INTERNATIONAL GROUP. LL,,F2100\nCOLONEL,USA,X1200\nPEANUT BUTTER MANUFACTURER,MAZUR & HOCKMAN,A1600\nTHE WEBER GROUP INC,,G5210\nAttorney,Ehrenhurt & Ehrenht,K1000\nPRIVATE EQ,VERONIS SUHLER STEVENSON,Y4000\nREAL ESTATE DEV,,J7120\nJOHNSTOWN CORPORATION,,M2300\nPRE,PRINCETON CENTER FOR LEADERSHIP,Y4000\nCHIEF FINANCIAL OFFICER,UNITED HEALTH GROUP,H3700\n\"SUNINNOVATION, INC.\",,Y4000\nMCG DULWORTH,,F3100\nMANAGING DIRE,PUBIC STRATEGIES INC.,K2000\nFARMER-HOMEMAKER,,A1000\nChairman / CEO,Paramount Pictures,C2400\nPRESIDENT,TOWN HILL SVC. INC.,Y4000\nTRESURER,COBB COUNTY/TRESURER,X3000\nUNITED SHOWS OF AMERICA,,G6100\nADVENTIST HEALTH/PRESIDENT/ C.E.O.,,H2100\nPT,Back in Balance,H1700\nEDUCATION,NOT EMPLOYED,F4200\nENU CORP,,Y4000\nManager,Luvata,M5000\nState Rep.,State of Iowa,X3000\nAFSCME PEOPLE,,L1200\nInsurance Broker,Blauch and Associates,F3000\nDENNIS & DIANE KUSS,DENNIS & DIANE KUSS,Y4000\nEXECUTIVE,COMPETITIVE EDGE,Y4000\nPRESIDENT,J.M. KAPLAN FUND/PRESIDENT,J5100\nCPA,MILLER & COMPANY P.C.,F5100\nPROGRAM SPECIALIST,US BUREAU OF ECONOMIC ANALYSIS,Z9500\nPresident,Rundell Enterprises,Y4000\nREAL ESTATE INVESTMENT/ MANAGEMENT,KNIGHTS WOOD REA,F4200\nCONSTRUCTION MANAGER,\"SOUTHLAND FARMING, INC.\",A1000\nBOOKKEEPER,ANACAPA SURGICAL ASSOCIATES,Y4000\nPRESIDENT,TN MUNICIPAL LEAGUE,H6000\nENTOMOLOGIST,\"CHRISTENSENS'S URBAN INSECT/ENTOMOL\",Y4000\nCfo,Cf Industries Inc,A4100\nFINANCE,STRATEGIC PROPERTY,F4000\nRDLGSTS OF FT LAUD,,Y4000\nCare Mgr. Assistant,LRG Healthcare,Y4000\nHILL WARD & HENDERSON LAW FIRM,,K1000\nREAL ESTATE,\"STONEHENGE COMPANIES, LLC\",Y4000\nMANAGER,NORTH STAR GOLF COURSE,G2900\nAttorney/Consultant,MGH Associates,K1000\nATTORNEY,LANNY J. DAVIS & ASSOCIATES LLC,Y4000\nMAGNATECH INTERNATL,,Y4000\nCONTRUCTION EXECUTIVE,ALDRIDGE ELECTRIC/CONTRUCTION EXECU,B3200\n\"DIRECTOR, CORPORATE STRATEGY\",MCKESSON CORPORATION,H4400\nSINDELL YOUNG GUIDUBALDI ET AL,,K1000\nMedical Sales,Philips Medical,H0000\nS,Casey Programs,Y4000\nTUTTLE LUMBER CO,,B5200\nCOO,EAST COOPER REG MED CTR,H2100\nALL AMERICAN DISTRIBUTING,,G0000\nLAWYER,MERRILL LYNCH,F2100\nSTOCK BUILDING SUPPLY,,B5000\nKINGS CARDIOLOGY MEDICAL GROUP,,H1130\nINVENTURE GROUP,,J7400\nPHYSICIAN,DNS,Y4000\nVICE PRESIDENT,CLANCY & THEYS CONSTRUCTION CO.,B0500\nPRESIDENT,WINNING CONNECTIONS,Y4000\ntherapist,self employed,H1110\nSENIOR SOFTWARE ENGINEER,NEIMAN MARCUS GROUP,G4300\nCE,GONZALEZ KIESCHNICK CROSS & FARI,F5100\nOffice Manager,\"Brian Maddon, Liberty Title\",F4300\nCHAIRMAN,THE LPA GROUP,B4400\nOWNER,PREUSSER JEWELERS,Y4000\nRetired Chariman of,Kross Office Outfitters Inc.,Y4000\nMANAGER,US GOMVERNMENT,Y4000\nPRESIDENT AND CEO,\"TWIN COMPANIES, INC.\",B5100\nWRITER/JOURNAL,SELF,Z9500\nPOOL WATER PRODUCTS,,Y4000\nORGANIZATIONAL STRATE,SELF-EMPLOYED,Y4000\nAdvice Columnist,Self-employed,G0000\nBiologist,Novartis Inst Biomed Res,H4500\nMathematician,D O D,X5000\nController,Beaverton Toyota,T2310\nOWNER,SUBURBAN TIRE CO.,T2200\nWILLIAMS AND BAILEY LAW FIRM,,K1100\nMILBERG WEISS BERSHAD HINES & ET AL,,K1100\nPUBLIC DEFENDER,LEGAL AID SOCIETY OF NEW YORK,Y4000\nPharmacist,\"Pucci's Leader Pharmacy\",H1750\nOWNER HOTEL,,T9100\nUNITED ORTHOPEDIC APPLIANCES CO INC,,H4100\nDOYLE AND CRAIG,,K1000\nAg Retailer,Heartland Ag,A4100\nPRINCIPAL,NUEVA VISTA GROUP/PRINCIPAL,K2000\nOCCUPATIONAL HEALTH AND SAFETY SPECIAL,SAFETY CONTROLS TECHNOLOGY,Y4000\nPHYSICIAN,PROMEDICA,H1130\nPresident,Kay Management Co.,Y4000\nVENTURE CAPITAL,ALOE INVESTMENT CORPORATION,F7000\nPRODUCER,SELF,X4110\nPhysicist,Feng Shui Institute of Physics & Energ,Y4000\nWALKER DYE CASTING,,Y4000\n*BEST EFFORT*,*BEST EFFORT*,A1300\nhospital administrat,Moffitt Cancer Center,H2000\nFEDERER REALTY CO,,F4200\nSteel Worker,Ispact Inland Steel,M2100\nTECHNICAL WRITER,NOT EMPLOYED,Y1000\nBanker,KBC Bank,F1000\nGordon & Rees,,K1000\nProf. of Science & P,Columbia College Chicago,H5100\nVP Demolition Div,Joseph B Fay Co,B1000\nLETTER SENT: 4/16/2008/LETTER SENT:,,Y2000\nDESIGNER CONSULTANT,SELF,Y4000\nWebitects,,Y4000\nCONSU,PERMIAN PROVIDER MANONEGEMENT,Y4000\nDOJ,,J7400\nSenior Programmer,Quick Connect USA,Y4000\nOWNER,\"HUST BROTHERS, INC.\",Y4000\nCAR HAULING,,T3100\nTRADE ALBED,,Y4000\nExecutive,Campania Holding Company,J9000\nFACTORY WORKER,NATIONAL UNDERWRITERS,LM150\nBUS. EXEC.,\"RAF INDUSTRIES, INC.\",F2600\nPROGRAM COORDINATOR,UNIVERSITY OF MINNESOTA,H5100\nBUSINESS EXECUTIVE,AWE MANAGEMENT,Y4000\nPRESIDENT,THE DOWLING FOUNDATION,Z9500\nWICKS GROUP,,Y4000\nSales,Maudlin Intern,J1200\nATTORNEY,DOW & COGBURN,K1000\nSenior Counsel,Steyer Lowenthal Bordrooks Alveen-Smit,K1000\nCustomer Relations,Avondale Automotive,Y4000\nPHYSICIAN,SELF,H3800\nBOX USA,,J1100\nCOO,M J BOGOSIAN,F7000\nMuseum Director,New Rochelle Fund for Educational Exce,Y4000\nATTORNEY,SHAW GROUP,B1000\nINSURANCE BROKER,THE SELZER CO.,F3100\nMarketing Ex,retired,X1200\nPARKWAY HAIR FASHIONS,,Y4000\nFERRIS & MAXWELL,,Y4000\nFinance Manager,G.E.,M2300\nOWNER / PRESIDENT,SCOTT STEEL SERVICES INC,M2100\nReal Estate,STILES CORPORATION,J1200\nPresident,Warner Fertilizer Co.,Y4000\nPresident,Pharmed Corporation,H4100\nASSOCIATION PRESIDENT,RETAILERS ASSOCIATION OF MA,Y4000\nexecutive,Universal Orlando,G6700\nReal Estate Developer,The Stroup Company,Y4000\nPARTNER/ATTORNEY,\"LEWIS, ECKERT, ROSS & CO.\",G5270\nSPORTS CHALLENGE INC,,H5100\nATTORNEY,\"MILLER & TISCHLER, PC\",Z9500\nceo,\"EAG of Americas, Inc.\",Y4000\nMAVERON,,Y4000\nUNIVERSITY OF DENVER STUDENT HEALTH,,H5100\nN/A/RANCHER/INVESTOR,,A3000\nEXECUTIVE,\"NEW TARGET, INC.\",Y4000\nAttorney,G E Consumer & Industrial,M2300\nChief Information Officer,Adventist Healthcare,H2100\nSENIOR MANAGEMENT SOUTHAMPTON NY,,Y4000\nKOLEY JESSEN DAUBMAN &,,K1000\nCARNIVAL CORPORATION/CHAIRMAN/CEO,,T6250\nconsultant,private foundation,G5200\nGeneral Manager,Enterprise Rent a car,T2500\nHOWREY LLC,,K1000\nMARK RUBIN/PARTNER/LIMITED PARTNERS,,Y4000\nVP MEMBER SERVI,LEON MEDICAL CENTER,H1100\nPETRO PRODUCTS INC,,M1000\nEXECUTIVE DIRECTOR,IDAHO DAIRYMENS ASSOCIATION,A2000\nMANAGEMENT CEO,JOHN H DANIEL CO,M3100\nBOLTON FINANCIAL,,F0000\nPRESIDENT,SMARTOURS,Y4000\nGENERAL MANAGER,AYALA INC.,Y4000\nALWAYS SUMMER,,Y4000\nGENERAL MANAGER -MEDIA,OCEANIC TIME WARNER CABLE,C2200\nInternational Busine,Cha Co,Y4000\nFARMER,EVANS FARM LLC,A1000\nHUNTER ENGINEER,,M2300\nSystems Analyst,Boeing Company,D2000\nCALIFORNIA MUTUAL INSURANCE COMPANY,,F3100\nHAGGER,,M3100\nATTORNEY,\"DISERIO, MARTIN, OCONNOR & CA\",Y4000\nSELF,FARMER,A1000\nNAVY-MARINE CORPS RELIEF SOC,,Y4000\nAMRCN HRTG FED CREDIT UNION,,F1300\nVICE PRESIDENT,EL DORADO AND WEST RR,Y4000\nSORLING NORTHRUP HANNA/ATTORNEY/ATT,,K1000\nRETIRED CAR DEALER,,X1200\nGRANATELLI RACING,,G6500\nInsurance Broker,Johnson & Bryan,F3100\nChairman of the Board,Nu Skin Enterprises,M3300\nHOUSEWIFE,,M3500\nLOOSLI HEREFORDS,,Y4000\nANALYST,SYSTEM PLANNING CORPORATION,Y4000\nVP/Sup. Mgr.,Mortgage Guaranty Ins. Corp.,F4600\nBUSINESS MANAG,\"AGI INDUSTRIES, INC.\",Y4000\n\"TACO JOHN'S\",,Y4000\nPHYSICIAN,PARK ANESTHESIA,H1130\nGOVERNMENT RELATIONS,\"WITT O'BRIEN'S\",G5270\nLOBBYIST,THE OUTKO GROUP,K2000\nVP OF GLOBAL BUSINESS DEVELOPMENT,HUSCO INTERNATIONAL,M2300\nphotographer,Alex Bee Photography Inc,G5240\nEnrolled Agent,Maverick Business Services,Y4000\nPresident,\"Intersport, Inc\",G5210\nFOUNDER & CTO,CHEMIMAGE CORP.,M9000\nOFFICE MANAGER/CO-OWNER,HYDRA WORKS LLC,Y4000\nInvestment Manager,\"Extraordinary Investors, Ltd.\",Y4000\nPhyisician,Self,G0000\nADMINISTRATION,LUNDS FISHERIES,G2350\nConsultant,CXO Thoughts Consulting,Y4000\nINVESTOR,,J4000\nCHICAGO CENTRAL & PACIFIC RR,,T5100\nINFO REQUESTED,Edward Fay Company,Y4000\nWIS-PAK FOODS,,Y4000\nINDIANA,,Y4000\nOWNER,PHILADELPHIA COCA COLA BOTTLING COMPAN,Y4000\nVP FINANCE,B&T,Y4000\nENTERGY TEXAS,,Y4000\nMuseum Director,Boston Mus. of Fine Arts,X4200\nAccount Rep,Everest Collage,Y4000\nWENTWORTH/DEANGELIS/INSURANCE AGENT,,F3100\nAttorney,\"Genova, Burns & Venoia\",K1000\nTC COMPANY,,F4100\nReal Estate Broker,CANYONSIDE REALTY Inc,F4200\nPRESIDENT,CARROLL EMC,Y4000\nCRNA,Gillmore,H1710\nOWNER,HAZELWOOD BOWL,Y4000\nPresident,Felmley-Dickerson Co,B1000\nWILLIAMS DAILEY O LEARY ETAL,,K1000\nCredit Manager,Hewlett-Packard,C5100\nProgram director,Yale School of Management,Z9500\nENSR ENVIRONMENTAL CONSULTING,,Y4000\nUWHARRIE CAPITAL CORP/PRESIDENT/CEO,,F1100\nOrthopaedic Surgeon,InterMountain Orthopaedics,H1130\nBAIS YAAKOV OF BRKLYN,,J5100\nDIVERSIFIED DESIGN & CONSTR INC,,B1000\nBANKER,\"BERKERY, MOYESTRO\",F1100\nGENERAL MANAGEMENT,ROYAL HAWAIIAN HOTEL,T9100\nWILTSHIRE WHITLEY RICHARDSON & ENGL,,F5100\nVP FEDERAL AF,GEORGETOWN UNIVERSITY,H5100\nCEO,\"Pryzant Management, Inc\",F4000\nLANDCARE USA INC,,Y4000\nPREMIER MANAGEMENT GROUP,,Y4000\nPRESIDENT,MILLBROOK REAL ESTATE,F4000\nEXECUTIVE,SDS COMPANY LLC/EXECUTIVE,Y4000\nESTIMATOR,VEITIA PADRON INC.,Y4000\nSONY PIC ENTERTAINMENT,,J1200\nDICK DONNELLY AUTOMOTIVE,,T2300\nCollege Professor,Georgia Tech,J1200\nCOUNSEL,GE POWER SYSTEMS,M2300\nElectronic Technician,Lynxtron Connections,Y4000\nProfessor (retired),University of Kentucky,J1200\nLobbyist,Winborn Solutions,K2000\nHUMAN RESOURCES RESEARCH ORG,,Y4000\nCEO & President,Dr Pepper/Seven Up,G2600\nCorporate/Community Relations,New York Blood Center,H3000\nCONTINENTAL BANK CHICAGO,,J7400\nVP,Penn Furniture,Y4000\nBALCH AND BINGHAM,,E1600\nPresident,Bontempo Consulting Enterprises Inc,Y4000\nConsultant,R. Cloud and Assoc.,Y4000\nINFORMATION REQUESTE,INFORMATION REQUESTED PER BEST EFFORTS,H2000\nGENERAL MANAGE,DAYS INN SPRINGFIELD,T9100\nREAL ESTATE BROKER,RIVER VALLEY REALTY,F4200\nBond Analyst,Mesirow Financial,Y4000\nspeech and hearing t,self,J1200\nOperations Supervisor,Charles Schwab,F2100\nPhysician,New York Hospital Queens,H1100\nGeneral Manager,D F Richard Inc,E1190\nDirector,State of NH,X3000\neconomist/consultant,Self employed,F5500\n\"PRESIDENT, BEN E. KEITH CO.\",BEN E. KEITH COMPANY,G2850\nSPEECH PATHOLOGI,MT. ANGEL SEMINARY,Y4000\nSALES REP,ESP INC.,Y4000\nTOMLINSON SALES CO,,Y4000\nSHAMMAS CORP,MILKIE,H1100\nOWNER,BARANCO AUTOMOTIVE DEALERSHIP,T2300\nCEO,\"Alan A Myers, Inc\",Y4000\nPACES FERRY MEDICAL,,H0000\nOwner,\"Tyler Insurance Services, Inc\",F3100\nINFORMATION SPECIALI,EDS,C5130\nBuilder,United Building Centers,B2000\nAMERICAN PIONEER TITLE INS CO,,J1100\nCEN-CDM COMMUNICATIONS,,Y4000\nEXECUTIVE/OWNER,BLOCK STEEL CORP.,M2100\nPAYROLL TRANSFER,,Y4000\nFarmer,Chandler Ranch Company,A3000\nLAWYER,MCNAUL,Z9500\nHomemaker,None,M4100\nCEO,\"MANUFACTURER'S & BUSINESS ASSOCIATION\",M0000\nBOOK PASSAGE INC,,Y4000\nBUNHEADS CORP,,Y4000\nMATHIS MANAGEMENT INC,,Y4000\nVICE PRESIDENT OF OPERATIONS,\"TECHBLDRS, INC./VICE PRESIDENT OF O\",Y4000\nCHAIRMAN,VINTAGE SR. MNGT,Y4000\nCOMM MUTUAL SAV BANK,,F1200\nMARKETING,TAGLINES,Y0000\n\"VP, Marketing, Herit\",Univ. American Financial Corp.,F3200\nPHYSICIAN,NEBRASKA KIDNEY CARE,Y4000\nOWNER,QUALITY LABEL AND TAG CORP.,M7000\nTEACHER,RYNJ,J5100\nSocial Worker,Richmond Behavioal Health Authority,Y4000\nBROKER REALTOR,OZARK GATEWAY REALTY,F4200\nOWNER,WOODS BOAT HOUSE,Y4000\nPartner,Quality Construction & Production LLC,B1500\nRN,First Call Team,J1200\nREAL ESTATE,TTR SOTHEBYS REALTY,F4200\nEXEC.,MICHIGAN HEALTH PLAN,H3700\nWESTING HOUSE ELECTRIC CORP,,E1320\nInvestor,Polus International,Y4000\nOwner,\"Pentzer's Printing\",M2300\nPresident,Central Pre-Mix Concrete Co.,B5100\nTans,Usps,X3700\nARCHITECT,LARSON KOENIG ARCHITECTS,B4200\nATTORNEY,AXA EQUITABLE LIFE INS.,F3100\nACCOUNTANT,ALL FLORIDA TAX,Y4000\nATTORNEY,TREON AGUIRRE NEWMAN & NORRIA PA/AT,Y4000\nLANDSCAPING,HILLTOP CENTER,Y4000\nDEFENSE,KUCHERA INDUSTRIES,D3000\nSenior Vice President,RR Donnelley,C1300\nCEO,Saba Shami Corp,Y4000\nRETIRED ATTORNEY,,J9000\nPLAYBOY ENTERPRISE,,Y4000\nPLUMBER SELF,CHRIS EDMONDSON,Y4000\nFLORIDA TECH,,D3000\nFinance,Bernstein Global Wealth Management,Z9500\nPRESIDENT,OK HOSPITAL ASSN,H2100\n,MARK GONSENHAUSER RUGS AND CARPETS,M8000\nReal Estate Sales,Staged Homes,B2000\nActuarial Analyst,State Farm Insurance Companies,F3400\nAttorney,\"Manger, Tolles, & Olspm\",K1000\nAC&T,,Y4000\nIntern,\"Congresswoman RosaDeLauro'\",X3000\nOWNER,BECKER ALFALFA,Y4000\nAUTHOR,DENICA PEREZ,Y4000\nOWNER,CALIFORNIA CANDY CO.,Y4000\nMAIL CARRIER,U.S. POST OFFICE,X3700\nreal estate,the alter group,F4100\nINSURANCE BROKR,SELF EMPLOYED,F3100\nPresident,GNYHA,H2100\nPrincipel,NYCDOE,Y4000\nSALES,ARMORY GARAGE INC.,F4500\nWRITER,FOX 21,Y4000\n\"Gov't Relations\",Nationwide Insurance,F3100\nSocial Worker,Child Home & Fam Serv,J1200\nWITT THOMAS HARRIS,,C2900\nNOT EMPLOYED,MS. EVE C. SWIACKI,Z9500\nTHE CHESTER ENVIRONMENTAL GROUP,,B4400\nReal Estate Broker,RE/MAX Executive Group,F4200\nHuman Resources,ODOT,Y4000\nScientist,Woods Hole Oceanogr,G5000\nHINESBERG SAND AND,,B5100\nLOBBYIST,BLUE CROSS BLUE SHIELD OF MICHIGAN,F3200\nFurrier,Saga Enterprises,J5100\nAttorney,Goldner Hawn Johnson,F2100\nPRESIDENT,BJORNSTAD BROTHERS FARM,G1200\nPRINCIPAL,THE GARRY SOUTH GROUP,G5260\nPresident & CEO,\"EasyAsk, Inc.\",Y4000\nPrincipal,Askari Investments,F7000\nU OF MINN,,H5100\nCEO,FIRST GENERATION VISUAL,Y4000\nSTANFORD MEDICAL SCHOO,,H5150\nREAL,HOLTZMAN REAL ESTATE SERVICES,F4000\nReal Estate Broker,\"Prudential Kahler, REALTORS\",F4200\nInformation Requeste,N/A,H5100\nScientist,\"University of California, San Francisc\",H5100\nGOE CONSTRUCTION INC./OWNER/ BUILDI,,B1500\nRESEARCH PROFESSOR,UNIVERSITY OF HOUSTON LAW CENTER,H5100\nPrincipal,Check Smart,F1420\nRI INDEPENDENT HIGHER EDUCATION ASS,,Y4000\nTRUSTEE,WHEELER BROS. GRAIN CO.,A1500\nPresident,F.L. Malik,Y4000\nExecutive,Fargo Glass & Paint,M7200\n\"GROCERY BAGGER, STOCKER\",FOOD LION,G2400\nEXECUTIVE,PMB BROADCASTING LLC,C2000\nNational Sales Manag,WBDC-TV/Tribune Broadcasting Company,C2100\nCONSULTANT,FIFE STRATEGIES LLC,K2000\nMARMEN COMPUTING,,C5130\nPHYSICIAN,FORT WAYNE MEDICAL CENTER,Y4000\nGovt Manager,State of Wisconsin,X3000\nDEVELOPER,PASEO PLAZA,Y4000\nOWNER,BAGETS FOREVER,Y4000\nPARKER MILLIKEN CLARK OHARA,,K1000\nInformation Requeste,Information Requested,D4000\nATTORNEY,PAUL BRICKFIELD PC,Y4000\nConsultant,League of Conservation Voters,JE300\neye Surgeon,Self employed,H1120\nBROADWAY REALTY & TRUST,,F4200\nPipelayer,CCL Co,Y4000\nATTORNEY,\"JENNINGS, STROUSS & SALMON\",K1000\nNATIVE AMERICAN ORGANIZATION,PUEBLO OF POJOAQUE,G6550\nU S CHECK,,Y4000\nCOMMUNICATIONS DIRECTOR,IL STUDENT ASSISTANCE PROGRAM,Y4000\nLIFE INSURA,MASS MUTUAL LIFE INS CO,F3300\nEXECUTIVE,VPX CORPORATION,Y4000\nHOLLYWOOD EAST FITNESS,,G5800\nlegal assistant,HJTH,Y4000\nBus Mgr,Ad&A,Y4000\nPROJECT MANAGER,HOFFMAN DEVELOPMENT CO,Y4000\nUCI CONSTRUCTION INC,,B1500\nADVANCED DRAINAGE SYST,,Y4000\nCENTRAL CARDIOLOGY MEDICAL GROUP,,H1130\nSenior Vice President,Peterson Companies,F4100\nYUCAIPS COMPANIES,,F2600\nCommunity Leader-non profit,None,X4000\nCONSULTANT- HOUSING,Information Requested,G0000\nDiagnostic Radiologist,Radiology Assoc of Savannah,H1130\nA-KAL SECURITY,,G5290\nEmergency Physician,Emer Med Spec of Columbys,H1100\nKAWASAKI MOTORS CORP USA,,T2100\nAdvertising,\"Media Directions, Inc\",Y4000\nSANDERS AUSTIN SWOPE & FLANIGAN,,Y4000\nSHAMIE ASSOCIATES,,Y4000\nINTERNATIONAL SPEEDWAY,,Y4000\nEXECUTIVE,THE SCHNEIDER CORPORATION,B4000\nClothing Manufacturer,\"Mr Night Tie'm\",F4100\nPresident,Jensen Fasteners,G1200\nMINISTRY COORDINATOR,CEF OF VIRGINIA,J7120\nDirector,Renal Advantage Inc.,H1130\nOrthopaedic Surgeon,Mercy St Charles,H1130\nExecutive,M Financial Group,F0000\nOFFICER,SAMSON INVESTMENTS,F7000\nIIT,,J7400\nHUMAN RESOURCES,ZIMMER,H4100\nEXECUTIVE,POTLATCH CORP/EXECUTIVE,A5000\nATTORNEY,\"WEBER ENTERPRISES, INC\",Y4000\nNEUBAOUER & HUNSIN,,K1000\nPRESIDENT,LEADERSHIP INSTITUTE,J1100\n\"Mcdermott, Will & Emery\",,K1000\nBOGDAN LASKY & KOPLEY LLC,,K1000\nSOUTHERN CONTRACTING INC,,Y4000\nPrimary Owner,Central Washington Realty,F4200\nDEALER,OCALA LINCOLN MERCURY,T2300\nDepartment Director,Citty of West Hollywood,X3000\nNational Sales Manager,SQUARE D.,M2300\nCEO,\"NANOBLOX, INC\",Y4000\nOwner/Consultant,John Dudinsky & Associates,K1000\nEXECUTIVE,SCOTT CONSTRUCTION INC,B1500\nCEO,NOVELASPECT.COM,C5140\nAdmin Support,GW Capital Inc,F0000\nWM MERCER,,Y4000\nFOUNDER,QUADRANGLE GROUP,F2100\nPROFESSOR,UNIVERSITY OF TEXAS AT ARLINGTON,H5100\nreal estate agent,Linda Clark Real Estate,F4000\nPersonnel Director,City of Seattle Washington,Z9500\nSales,\"CMI, Inc\",Y4000\nretired MD,None,H1100\nKOREAN GROCERY ASSN EAST,,G2400\nBUSINESS OWNER,GTS CONSULTANTS,Y4000\ninvestigator,DOD,X5000\nINDUS HONEYCOMB STRUCTURES,,Y4000\nPOLICE OF,BUFFALO HOUSING AUTHORITY,Y4000\nST LOUIS,UNIV OF MISSOURI,H5100\nEXECUTIVE,EASYLINK SERVICES INTERNATIONAL,Y4000\nPrincipal,Kennedy Printing Company,C1300\nConsulting Engineer,Buchert & Horn,Y4000\nVP,OUTRIGGER ENTERPRISES,T9100\nEXECUTIVE DIRECTOR,MARRIOTT INTERNATIONAL,T9100\nEDUCATOR,THE UFT CHARTER SCHOOL,Y4000\nAT HOME PARENT,SELF,Z9500\nBAKERWELL INC,,Y4000\nREFUSED,ODOM & ELLIOTT,K1000\nLAMBERT RISK MGMT SERVICES INC,,Y4000\nPresident,\"What's Next Interactive Inc\",J7400\nMEMBER,SMITH STAG LLC/MEMBER,Y4000\nENTOMOLOGY PROFESSOR,RETIRED/ENTOMOLOGY PROFESSOR,X1200\nJACOB BLAUSTEIN INS FOR H R,,F3100\nFLEMING,,G2400\nCeo,West Coast Labels,M7000\nLAWYER,ECKERT SEAMANS CHERIN/LAWYER,K1000\nASST. PROFESSOR,AMERICAN UNIVERSITY,H5100\nPRESMAN,AIRO GRAPHICS,C1300\nPODIATRIC PHYSICIAN,SOUTHSIDE FOOT CLINIC,H1130\nCOMMERCIAL REAL ESTATE MANAGEMENT,KAYLEN INVESTMENT COMPANY INC.,F7000\n\"DIRECTOR, PRODUCT MARKETING\",HOST ANALYTICS. INC,Y4000\nOwner,Secure Wrap of Miami,Y4000\nOWNER,CHLOE TEXTILES INC.,M8000\nCEO,\"GREENETRACK, INC.\",Y4000\nARNOLD & RUBIN LTD,,Y4000\nOrthopaedic Surgeon,Advanced Orthopaedics,H1130\nLOBBYIST,BERGNER BOCKORNY,K2000\nRadiologist,\"Greenville Radiology, PA\",H1130\nW J GRIFFIN ELECTRIC INC,,Y4000\nOWNER,IMPERIAL IRRIGATION SUPPLY,Y4000\nBELFER PETROLEUM CORP,,E1100\nAttorney,\"Harris Penn & Lowry, LLP\",K1000\nBUSINESS EXC.,SELF EMPLOYED,G0000\nA.V.P./Commc Co-Chr Mus,Wyeth Pharmaceuticals,H4300\nSurgeon,Henry Ford Hospital,H2100\nMORRISON & MORRISO,,F5100\nDoctor,Kouka Nabeel MD,H1100\nPRESIDENT/CEO,THE HAMPSTEAD GROUP/PRESIDENT/CEO,F7000\nAttorney,\"Kroopa Altman, LLP\",Y4000\nCORPORATE D,,Y4000\nGRIMM & DAVIS,,F2100\nHYRE ELECTRIC CO,,B3200\nEngineer,LDC Inc.,Y4000\nC.E.,NORTHWESTERN MEMORIAL HOSPITAL,H2100\nCEO,UNS,Y4000\nSTATE BANK AND TRUST,,F1000\nV. CHAIRMAN,\"TRAVELERS, INC.\",F3400\nROBERT J GROTTKE & ASSOCIATES,,G2400\nAttorney,Pitt and Frank,K1000\nCONGRESSMAN,US GOVERNMENT,Z9000\nCEO,Infor,C5130\nPHYSICIAN,NAPLES COMMUNITY HOSPITAL,H2100\nORBIS ENERGY LLC,,E1150\nSOUTH HILLS HEALTH,,H0000\nTURVEY GROUP,,Y4000\nPSYCIATRIST,SELF EMPLOYED,G0000\nWaiter,Lord and Taylor,G4300\nCHAMPI & DONINGTON,,Y4000\nSOFTWARE ENGINEER,CITRIX SYSTEMS INC,C5120\nEXECUTI,\"SENDERO ENERGY PARTNERS, LP\",J1100\nPresident,MasterCard Advisors,F1400\nManager/Restaurant,Sega Fredo,Y4000\nOwner/ Chairman,Centient Medical Systems,Y4000\nUniversity Lecturer,Yale University,J1200\nFOUNDER & CHAIRMAN,CANYON RANCH,J5100\nOwner,Lucire Davices,Y4000\nEXECUTIVE VICE PRESIDENT,CENTURY 21,F4200\nBUSINESS OWNER,PENNS CAVE/BUSINESS OWNER,Y4000\nUNDERGROUND CONSTRUCTION COMPANY IN,,B0500\nMoney Manager,Wachovia Securities,F2100\nVICE PRESIDENT,PUERTO RICO MOTION PICTURES ASSOC.,Y4000\nPartner,S&a Consulting Group Llb,Y4000\nMICHAEL C BIRD ATTORNEY AT LAW A LA,,K1000\nSr Vice President of Operations,Coldwell Banker,Y4000\nMANAGER,AMPLEX CORPORATION,Y4000\nCLERGYMAN,SAINT JOSEPH CHURCH,X7000\nTEACHER,ST. JOHNS SCHOOL DISTRICT,Y4000\nConsultant,Dean & Company,Y4000\nPHYSICIAN,MIDFLORIDA GASTROENTEGOLOGY GROUP P.A,H1130\nReimbursement Analyst,\"Seattle Children's Hospital\",H2100\n\"Jane L. Stewart, Inc\",Self-employed,J1100\nOWNER/EXECUTIVE,KATHERMAN CO.,J1100\nExecutive VP,HBA of the Sioux Empire,Y4000\nCFO,Ecker Window Corp,M7200\nALLEN CORP,,E1170\nExec,Advanced Web,Y4000\nOffice mgr,Self employed,G0000\nPartner,Merced MRI,H1130\nTV PRODUCER,WHEELER TV,J9000\nPHNOMPENIT,,Y4000\nPresident,REI,G6000\nFOOTBALL PLAYER,DENVER BRONCOS,G6400\nSHULER PLANK MORGAN & BRAHM,,K1000\nLaw Professor,\"University of Calif, Hastings Law\",H5100\nGrower,\"Idlenot Farms, Inc.\",A2300\nVENTURE CAPITALIST,HIGHWAY 12,Y4000\nMEDICAL RESEARCH CONS,,H1710\nEDUCATOR,\"KING'S COLLEGE\",Y4000\nAttorney,Self-empoyed,K1000\nADVERTISING,WPP GROUP,J7300\nHOBART PUBLIC SCHOOLS,,X3500\nAttorney,Az Citizenlaw Proj,K1000\n\"JAFFE, FRIEDMAN\",,K1000\nDAN GEORGER MITSUBISHI,,T2300\nEXECUTIVE,GERSON LEHRMAN GROUP,F2100\nRSK STRATEGIES,,F2100\nReal Estate,Tribeca Associates,F4000\nVP Construction,New Enterprise Stone and Lime,B5100\nRADIATION ONCOLOGIST,UF PROTON THERAPY INSTITUTE,H1130\nCUSTOMCRAFT BUILDERS,,B2000\nDAVIDSON COUNTY TN,,J7400\nATTORNEY,LICATA & TYRRELL PC,K1000\nCEO,WOMAN HEART,Y4000\nBusiness Owner,M & L Petroleum,Y4000\nBUILDING CONTRACTOR,HARTIGAN FOLEY BUILDING CONTRACTORS,Y4000\n\"WICKWIRE, GREENE & SEWARD\",,Y4000\nOWNER,PANDA HOUSE,Y4000\nGeneral Manager,Dean Foods NER,A2000\nPRESIDENT,\"CHEMBIO DIAGNOSTICS, INC.\",Y4000\nVP,Center for Civic Education,Y4000\nAUTO VISTA,,C5120\nDIR OF PUBLIC AFFAIRS,\"CHILDREN'S HOSPITAL CO.\",H2100\nPartner,Mad River Lumber LLC,Y4000\nATTORNEY,RELATED CAPITAL CO.,F4000\nPartner,SKADDEN ARPS ET AL,K2000\nHIV Prevention & Grad St,Test Positive Aware Netw,Y4000\nBELOIT BEVERAGE CO,,G2850\nOFFICER,SOUTHWEST MOTOR TRANSPORT,T0000\nAttorney,Goodman & Levin LLP,K1000\nBusiness Administrat,Sebaly Shillito & Dyer,K1000\nDirector,Collateral Mortgage CapitalLLC,F4600\nPresident,Island Insurance,F3000\nEXECUTIVE,RUSH TRUCKING,T3100\nINVESTOR,PUBLISHER,C1100\nNETWORK ADMINISTRATIVE,WINDHAM SCHOOL,Y4000\nPhysician administrator,University of Missouri,Z9500\nEXECUTIVE DIRECTOR,STRATEGIC THREAT SOLUTIONS,Y4000\nMUTUAL GRAPHICS INC,,C1300\nEXECUTIVE,\"PEOPLE'S BANK\",F1000\nPRESIDENT,HERITAGE TITLE COMPANY OF AUSTIN INC.,F4300\nVICE PRESIDENT,Goeken Group,H3000\nAntitrust Partner,Wachtell Lipton Rosen & Katz,K1200\nEXECUTIVE,REID AND ASSOCIATES,K2000\nPresident,\"Pomalee Elec., Inc.\",B3200\nMURDOCH AND COLL INC,,Y4000\nPORTER MEMORIAL HOSPI,,H1710\nINSURANC,HOLMES MURPHY & ASSOCIATES,F3100\nWENDELL BLACK ET AL,,J7500\nINVENTION INVES,\"GDG MANAGEMENT, LLC\",Y4000\nOIL & GAS EXPLORATION,PRESCISION GEOPHYSICAL INC.,Y4000\nReal Estate Broker,COLDWELL BANKER FLEMING-LAU,F4200\nSR. AUDITOR,US DEPT. OF TREASURY,X3000\nManager,Diamond Antenna,Y4000\nProfessor of Informa,Virginia Tech,J1200\nCHAIRM,PROVIDER PROPERTY & CASUALTY,F3400\nPRESIDENT,COLE HARDWOODS,Y4000\nSALES MAN,QIOPTIQ IMAGING SOLUTIONS,Y4000\nCITYSCAPE MORTGAGE,,F4600\nMANAGEMENT,\"EDT, LLC\",Z9500\nConsultant,Levi Strauss & CO,J7400\nFREE,\"SUNBELT RPTG & LITIGATION, INC\",G5200\nSR. VICE PRESIDENT,INVACARE,H4100\n\"O'BRIEN TANSKE TANZER & YOUNG\",,Y4000\nCOUNTY COMMITTEE,,Y4000\nPRESIDENT,SUTRAK USA CORPORATION,Y4000\nCONTRACTOR,WALL DESIGN,Y4000\n\"LINEBARGER, GOGGIN, BLAIR AND SAMPS\",,F5200\nOWNER,HARP MARKETING,Y4000\nARTIST/DESIGNER/PLANNER,SELF-EMPLOYED,X0000\nW L BRYANT CO,,Y4000\nMOL,MILWAUKEE SCHOOL OF ENGINEERING,H5200\nPresident,\"The Sonder Group, LLP\",Y4000\nPRESIDENT,BLACK DIAMOND EQUIPMENT,Y4000\nLogan Equipment Leasing,,Y4000\nResearch Scientist,Dendreon Corporation,Z9500\nATTORNEY,\"THE LAW OFFICE OF STEVE SANDERS, LLC\",K1000\nPHYSI,NJ CENTER FOR PROSTATE CANCER,Y4000\nAttorney,Baird & Baird PSC,K1000\nEVP,Assurant Inc.,F3100\nPhysician Professor,Univ Of Pa Childrens Hospital Of Phila,J7400\nMODEL,SELF-EMPLOYED,J1200\nCounty Legislator,Onondaga County,X3000\nLawyer,\"THE FISHER LAW GROUP, P.L.L.C.\",Y4000\nEducation,Mississippi State University,H5100\nPresident,Sanders Bros Const. Co.,B1500\nOwner,Parkway Foods,Y4000\nATTORNEY,CASTLE & LAX,K1000\nMANAGING DIRECTOR,STERLING RANCH,A3000\nExecutive,\"Centennial Concrete, Inc.\",B5100\nGENERAL MANAGER,NIELLO MINI,Y4000\nRANCHER,CIRCLE BAR N RANCH,A3000\nOWNER,HERNANDEZ LAW OFFICES,K1000\nVP Research & Develo,General Motors,T2100\nINTERIOR DES,CHATSWORTH DESIGN INC.,Y4000\nADVIER,\"ALLIANCE BERNSTEIN, L.P.\",F2100\nAttorney,Baurkot & Baurkot,K1000\nDLR ADVISORS,,F2600\nSHEFSKY FROELICH AND DEVINE,,K1000\nGREAT AMERICAN FINANCIAL,,F0000\nINFO REQUESTED,PORTRAIT HOMES CONSTRUCTION CO,B2000\nPediatric Doctor,Self Employed,H1130\nTOWNLY & UPDIKE,,K1000\nCFO,Turner Enterprises Inc.,A3300\nJAYS FOOD L L C,,Y4000\nANESTHESIOLOGIST,UNIV. OF TX - HOUSTON,H1100\nAccting And Credit M,Villaware Mfg. Co.,Y4000\nEXECUTIV,MORGAN STANLEY DEAN WITTER,J5100\nART INSTITUTE OF CHICAGO,,Y4000\nTEACHER,UUP-STONY BROOK HSC/TEACHER,L1300\nJpl,Cal Tech,H5100\nOMINIUM WORLDWIDE INC,,Y4000\nLawyer,Allen & Overy,K1000\nTEACHER,SVUSD,Z9500\nPRESIDENT & CEO,\"MAR-BAL, INC.\",Y4000\nVICE PRESIDENT/MASTER BAKER,HEALTH BREAD INC,G2100\nGOLD MECH INC,,B3400\nNGL MARKETER,\"QEP RESOURCES, INC\",E1120\nWRITER,ELI LILLY AND CO.,H4300\nPITKIN COUNTY BANK,,F1000\nSTUDENT,MV TRANSPORTATION,T0000\nOpthalmologist,Shelby Eye Center,Y4000\nPRESIDENT/ CEO,MOTORSPORTS-AUTHENTICS,Y4000\nM BRENNER & SONS INC,,Y4000\nLAW PROFESSOR,FRANKLIN PIERCE,K1000\nKMI,,Y4000\nACCOUNTAN,PICERNE DEVELOPMENT CORP.,F4100\nConsultant,Building Management,J7400\nBIOSTATIS,UNIVERSITY OF CONNECTICUT,H5100\nLead Director,Freddie Mac,J1100\nPRINC. ANALYST,CALIBRE SYSTEMS,Y4000\nPRESIDENT,YUKON DOOR & PLYWOOD INC,J1100\nTEJON EXPLORATION/INVESTOR/MANAGER,,Y4000\nYOUNGDAHL & SADIN L.L.P.,,K1000\nTEEN CHALLENGE OF THE MIDLANDS,,Y4000\nC.E.O.,NY MERCY EXCHANGE,Y4000\nSONETECH,,Y4000\nHOMEMAKER,\"BERRY, A DIVISION OF SUFFOLK CONSTRUCT\",B1500\nACTOR/NANNY,SELF EMPLOYED,C2400\nConsultant,Municipal Admin Ser,Y4000\nEnginering Manager,Washington Group International,B1000\nDirector,Plum Creek Timber Company,A5000\n\"VP, GOVERNMENT AFFAIRS\",INGERSOLL RAND,M2300\nProfessor,The College of wooster,H5100\nJIMMY EQUIPMENT RENTAL,,Y4000\nDIRECTOR,MATRIX RESOURCES,Y4000\nJACK BRIGHT BUILDER,,Y4000\nCEO,ANBERRY REHAB,Y4000\nPROFESSOR,DOWLING COLLEGE,H5100\nPresident,Bank of Idaho,F1000\nPsychotherapist,Self employed,J7400\nPLUMBING ENGINEER,,B3400\nINVESTOR,POSTAL FLEET SERVICES,Y4000\nEngineering Mgr.,hp,C5100\nDAN KENNEDY EXCAVATING,,Y4000\nFOUNDER/BOARD MEMBER,LEUTHOD WEEDEN CAPTIAL MANGMNT,Y4000\nCHICAGO COLOR INC,,Y4000\n\"KD MANAGEMENT SERVICES, LLC\",,Z1300\nProfessor,City University of NY Gr,H5100\nEngineer,M.W. Brown & Associates,Y4000\nCEO,J R N INTERNATIONL ENTERPRISES,Y4000\nReal Estate,Campanelli Co.,F4100\nMassage Therapist/ Body Therapy,Self employed,H1700\nPRESIDEN,PIERCE & MONROE ASSOCIATES,F5000\nIT Consultant,The Favre Group Inc.,J1200\nSoftware Projects Management,Info Reliance Corp,G5200\nPRESIDENT & CEO,TIME WARNER CABLE,C2200\nPartner,Copeland Lowery Jacquez Denton & White,K2000\nINVESTMENT MANAGAMENT,MERFIN LLC,G5200\nMusician (Retired ph,self,G0000\nVICE CHAIRMAN,THE MACERICH COMPANY,F4000\nMarketing Consujltan,Threshold Management,Y4000\nPresident,Kirby Financial,E1500\nSECRETARY,,\nBookkeeper,\"Horton Feedlots, Inc\",A3300\nMBNA MARKETING SYSTEMS,,F1400\nOwner/President,\"Readco, LLC\",Y4000\nLAWYER,GINSBERG & BROOME,K1100\nRETAIL,PETER HARRIS CLOTHES,Y4000\nGORMAN PUBLISHING,,G2100\nMIDWEST TILE,,Y4000\nBAKER HEALTHCARE CONSULTING,,H0000\nASSOCIATE,BOOZ ALLEN HAMILTON,G5270\nCEO,American Medical Response,J1200\nGARCIA TIRE (SOLE PROPRIETOR),,T2200\nEXEC.,KENWOOD VINEYARDS,G2850\nSR. VICE PRESIDENT,PACIFIC LIFE,F3300\nCONSULTANT,PCANYC,Y4000\nEXECUTIVE,BARBARA GROGAN,Y4000\nRequested info 10/21,Requested info 10/21,Y2000\n,NAVAL ORDINANCE STATION LOUISVILLE,Y4000\nZOO ENTERTAINMENT,,C2600\nrestaurant  owner,self,G2900\nCOVILLE INC,,Y4000\nCooperative Development,Ncba,Y4000\nMARGAN LEWIS,,Y4000\nOWNER,EL AVISO MAGAZINE,C1100\nCHIEF FINANCIAL OFFICER,THE MACNAUGHTON GROUP,F4100\nAMWEST GROUP,,Y4000\nOWNER,\"DALEN PRODUCTS, INC.\",J1100\nVICE PRESIDENT,\"SOFTWARE PURSUITS, INC.\",C5120\nSecurities Broker//D,Morgan Stanley/Columbia Presp Hospt,Z9500\nWorker,Penn State Unniver,J1200\nPresident & CEO,The Broadmoor Hotel,T9100\nSALC,,Y4000\nEXECUTIVE DIRECTOR,COMMUNITY HEALTH & SOCIAL SVCS,Y4000\nINS INC,,Y4000\nCommercial Real Esta,Cassidy & Pinkard Colliers,F4000\nPHYSICIAN,RALEIGH RADIOLOGY ASSOCIATES,H1130\nSystems Engineer,Lockheed Martin,Z9500\nAttorney,Collins & Maxwell LLP,K1000\nOWNER/C.E.O. REAL ES,SELF-EMPLOYED,F4200\nSales Rep,Brunswick Elec Memb Coop,Y4000\nMayor,City of College Park,X3000\nOFFSITE UTILITIES INC,,Y4000\nCHIEF ACCOUNT,ASPECT MANAGEMENT LLC,Y4000\nDWANE MORRIS & HECKSCHER,,K1000\nSPECIALTY CLAIMS MGMT,,Y4000\nVICE PRESIDENT,TURKISH CULTURAL CENTER,Y4000\nCHIEF ADMINISTRATIVE OFFICER,SCHNEIDER NATIONAL,T3100\nPRESIDENT,GLOBAL ACCESS,Y4000\nCHAIRMAN & CEO,WILLIAMS & JENSEN,K2000\nHOGG ALLEN NORTON & BLUE PA,,Y4000\nEXECUTIVE DIRECTOR,RIPON SOCIETY,J7400\nInvestment Research,\"13D Research, Inc.\",Z9500\nHR Manager,Microsoft,C5120\nSVP GOVERNMENT RE,UNIVERSAL STUDIOS,T9300\nDIAL PWO INC,,Y4000\nMARINE GEOLOGIST,COASTAL PLANNING & ENGINEERING,Z9500\nFINANCIAL MANAGEM,THE CAPROCK GROUP,F2100\nPRESIDENT,LA PAINTING,B3000\nSHARP SYSTEMS INC,,Y4000\nretired dentist and ambassador,retired,X1200\nROBERT E BENNETT & ASSOCIATES,,Y4000\nAdministrator,Southern Brown Rice,Y4000\nPRESIDENT,BASS BUSINESS SOLUTIONS,G1200\nINFO REQUESTED,HIRE BARR INC,Y4000\nVice Chairman; CFO & Treasurer,CBL & Associates Properties; Inc.,F4100\nSeminarian,Priests For Life,Y4000\nPriv. Fiduciary,Self employed,F0000\nDIRECTOR OF GOVERNMENT RELATIONS,CARDINAL HEALTH,J7400\nRESTAURANTEUR,SELF,J7600\nPARTNER,BARNES & THORNEBURG,K2000\nINDEX NOTION COMPANY INC.,,Y4000\nREGISTERED NURSE-SEMI-R,BOPT. HOSP.,J7400\nANALYST,C. A. C. I.,D9000\nPLUMSOCK STUDIES,,J7400\nRETIRED,NORFOLK SOUTHERN,X1200\nAUTHOR AND PSYCOLOGIST,SELF,G0000\nDeployment Engineer,Eds,C5130\nGLOVERS INC,,Y4000\nProfessional,Apollo Management,F2600\nATTORNEY,BEST EFFORT -/ATTORNEY,K1000\nMANAGING DIRECTOR,CL KING ASSOCIATION,F2100\nPresident,\"Commonwealth Consulting Group, Inc\",F3100\nPUBLISHER,JEWISH NEWS SERVICE,Y4000\nLaywer,Hughes Socol Piers Resnick & Dym,Y4000\nSoftware Engineer,Sonus Networks,C4600\nOffice Manager,ACP COMMUNICATIONS,Y4000\nPMA GROUP/DIRECTOR/DIRECTOR,,K2000\nWESTERN CAROLINA UNIV,,H5100\nREAL ESTA,FIRST AMERICAN REALTY CO.,F4200\nFarmer,Armorel Planting Company,A1000\nBELLON AND TAYLOR ARCHITECTS,,B4200\nSELF EMPLOYED,,K0000\nCONSULTANT,DUTKA WORLDWIDE,Y4000\nAdministrator,Hearne ISD,X3500\nHOMEMAKER,Information Requested Per Best Efforts,T0000\nVP of Operations,Well Care,Y4000\nATTORNEY,EFC,Y4000\nHomemaker,N/a,Y4000\nBROKER,REMAX PREMIER REALTY,F4200\nWASHINGTON LEGAL FOUNDATION,,J7400\nExecutive,George Marshall Foundation,Y4000\nINVESTMENT MGR.,AGA INVESTORS,Y4000\nREAL ESTATE,HORIZON BAY,H2200\naccountant,Robert Watkins & Company,J1100\nPRESIDENT,INSEARCH CORP,Y4000\nOWNER,FJS ASSOCIATES,Y4000\nCivil Service,State of Alaska,X3000\nEISENBERG PROPERTIES,,Y4000\nINSURANC,BRANCH BANKING & TRUST CO.,F1100\nPRODUCT MARKETING,NUANCE COMMUNICATIONS,C4500\nPARADIGM PROPERTIES,,Y4000\nMA,CAPITOL RISK MANAGEMENT SERVICES,Y4000\nEXECUTIVE,R A. DIFILIPPO INC,Y4000\nWESTERN DIGITAL,,C5110\nSupervisor,Postal Service,X3700\nATLANTA COMMONS,,Y4000\nATTORNEY,KEATING MUETAING & KLEKAMP,K1000\nTHEISEN SUPPLY,,B5000\nBUSINESS ANALY,TEVA PHARMACEUTICALS,H4300\nClerk of the Court,Fairfax County,X3000\nInvestor,Greenplex Investments,F7000\nVP CONTROL SYSTEM DEVELOPMENT,COMCAST (CC) OF WILLOW GROVE,C2200\nFIEL,CHRISTIAN BROADCASTING NETWORK,C1100\nPUBLISHER,UNIVERSITY OF ILLINOIS,Z9500\nEXECUTIVE,DATACAP,Y4000\nAnesthesiologist,Warren General Hospital,H1100\nCONTROLLER,NUSTAR ENERGY,E1100\nPartner,Information Requested,G5290\nSAUNDERS KARP & MEGRUE,,F2600\nEngineer,North East Monitoring,Y4000\nATTORNEY,KEIL GOODSON,K1000\nDENTAL TECHNICIAN,ROOT LABORATORY,J1100\nDR,RETIRED,X1200\nteacher/writer,self imployed,H5100\nH SANDERS CO,,F4100\nPERRY BARTSCH & ASSOC INC,,G5270\nGENERAL,RUBIN GOLDMAN & ASSOCIATES,F3300\nBANKING,CATHAY BANK,F1000\nGLENCAIRN BROADCASTING/PRESIDENT/CE,,Y4000\nSenior Advisor,Usg,Y4000\nPRESIDENT EXPLORATION,ZACHRY HOLDINGS INC,B1000\nMETROPOLITAN DISTRIBUTORS,,A1300\nCEO,Pacific Medical Centers,H2100\nBUNTING MANAGEMENT GROUP INC,,K1000\n\"GOV'T SERVICES CTR KY STATE UNIVERS\",,H5100\nEXECUTIVE VICE PR,\"WELLS' DAIRY INC.\",A2000\nVICE PRESIDENT,BUDWEISER-BUSCH DISTRIBUTION,G2850\nSelf Employed,Dial - A - Check Payroll Svc,G5200\nSurgeon,Brown Clinic,H1130\nTOWN COUNCILOR,VAN BUREN,Y4000\nManaging Dir-Construction,AON,F3100\nSELF INVESTMENTS,SELF-EMPLOYED,G0000\nGovernment Relations,Greystone Group,K2000\nC.F.O.,ECKERT SEAMANS CHERIN & MELLOTT LLC,K1000\nPROJECT DIRECTOR,PEW CHARITABLE TRUSTS,X4100\n\"O'DONNELL & SHAEFFER\",,K1000\nPHYSICIAN,MARSHALL EMERGENCY SERVICES ASSOCIATIO,Y4000\nCO CEO,RACEMARK INTERNATIONAL,Y4000\nRabbi,Congregation Emanu-El,Y4000\nExecutive,Hartford Financial,F3100\nAttorney,Wilmer Cutter & Pickering,K1000\nHMS Travel,,Y4000\nAttorney,Phillips Eisinger & Brown PA,K1000\nArchitect,Thomas Hacker Architects,B4200\nATTORNEY,BROAD & CASSEL,K1000\nDirector,Cooper Corporate,M2300\nOWNER,Leo Records - CMB Enterprise,Y4000\nBAKER-LLOYD REST INC,,Y4000\nWOODS HOLE OCEAN INS,,X0000\nTeacher,Bergen County Tech,J1200\nExecutive,Medical Support & Develop Org,H0000\nPRESIDENT,DUETTO GROUP,Y4000\nAttorney,Satterlee Stephens Burke & Burke Llp,K1000\nInvestments,Canal Insurance Company,F3100\nLOGISTCARE INC.,,Y4000\nENGLISH OAKS CONV & REHAB,,H2200\nSECURITIES TR,RAYMOND JAMES & ASSOC,F2100\nRetailing,\"Brownfield's Leather Shop, Inc\",Y4000\nRealtor,Century 21 The Edge,F4200\nFILBRIGHT & JAWORSKI,,K1000\nAssistant Executive,US Conference of Mayors,J7300\nProduction Designer,abc Disney,Y4000\nAttorney,Akerman Senterfitt LLP,Z9500\n\"VP, GC & SEC.\",WAYNE FARMS LLC,A2300\nPrivate Equity Managing Partner,Brysam Global Partners,Y4000\nSysintmg,Chesapeake Energy,E1120\nfinancial analyst,\"WNC & Associates, Inc\",F4000\nATTORNEY,ALCOCK AND ASSOCIATES PC/ATTORNEY,Y4000\nOWNER,CROWDER CONSTRUCTION COMPANY,B1500\nPresident,Long Branch Quarry LLC,Y4000\nChief Exec,Power Mart Corp.,G2400\nAMTREND CORP,,Y4000\nExecutive Director,Rice Home Medical LLC,H0000\nCOLLEGE PROFESSOR,ROWAN UNIVERSITY,H5100\nRICHARD HEATH & ASSOCIATES INC,,Y4000\nMedical Doctor,Heithoff & Associates,H1130\nColo. Springs Ortho Group,,Y4000\nASSOCIATE,GE CAPITAL,F1400\nManaging Partner,Brown & Hutchinson,Y4000\nMinister Of Outreach,Christ Lutheran Church,X7000\nPHYSICIAN,\"ST MICHAEL'S MC\",J1100\nTEACHER,LAMAR CISD,Y4000\nDOAN CONSTRUCTION COMPANY,,B1500\nLAWYER,\"PEIRSON PATTERSON, LLP\",K1000\nprofessor,\"Univ. of California, San Diego\",J1200\nSHOPPING CENTER OWNER,SELF,F4500\nChairman Of The Boar,Gwinnett Community Bank,F1000\nCIVIL ENGINEER,BECKER PROPERTIES,F4000\nDISCOVER COMMUNICATIONS,,Y4000\nMANAGER DIRECTOR,HUTCO,Y4000\nEXECUTIVE/MANAGERIAL,SELF-EMPLOYED,G0000\nATTORNEY,NYSDC,X3200\nGENERAL MANAGER - P,MINNESOTA POWER,E1600\nOwner,Erin Christopher Consignment,Y4000\nSenior Vice Presiden,BFM Corporation LLC,B4300\nHOME SCHOOL TEACHER/ STRUCTURAL ENGINE,HOMEMAKER,Y1000\nSubstitute Teacher - Full Time Volunte,ESD # 113,Y4000\nPRESIDENT,SOUTH HAVEN CORPORATION,Y4000\nENGINEER,ELITE HOMES,Y4000\nFINANCIAL ADVISOR,KEMP FINANCIAL SERVICES,Y4000\nCPA,NY Institute for Special Education,F5100\nCorporation Director,Self-Employed,G0000\nPHYSICAL THERAPIST,PLATTE VALLEY PT,H1700\nPUMP OPERATOR,CITY OF MADISON,X3000\nPrivate Jet Charters,CS Jet Charters,Y4000\nEXECUTIVE,LIFE CARE HOSPITAL,H2100\nBusinessman,Brown-Forman Corporation,G2820\nsecretary,headsight inc,J9000\nDENTIST,INFORMATION REQUESTED PER BEST EFFO,H1400\nBUSINESS OWNER,TACTICAL CAPITAL GROUP,Y4000\nMILLWRIGHT,APS @ PVNGS,E1600\nPhysician,Sandusky Pediatricians Inc.,H1130\nLIFE SETTLEM,POLTER FINANCIAL GROUP,F3300\nAttorney/Partner,Barris Sott Denn & Driker,K1000\nATTORNEY,\"SHIRA R. WEINSTEIN, ESQ\",Y4000\nDEVELOPER,BILL CLARK HOMES,B2000\nPHYISICIAN,SELF-EMPLOYED,C5120\nWILLIAMS BIMBERG & ANDERSEN LLP,,Y4000\nBUILDER - DEV,GREGGS ARTISTIC HOMES,J1100\nPresident,IBS International,Y4000\nInformation Technolo,\"Davis Selected Advisers, L.P.\",F2100\nVICE P,ALION SCIENCE AND TECHNOLOGY,C5120\nCOMMUNITY HARVEST,,Y4000\nExecutive Assistant,\"Hcpm, Inc\",F2000\nLATHAM  WATKINS,,K1000\nMANAGER,ITHACA RENTING CO,Y4000\nOWNER-OPERATOR,MATRIX TOOL INC.,Y4000\nRv Rentals,Danco Rv Rentals,Y4000\nUNDERWOOD REALTORS,HELENA,F4200\nOwner/Investor,Crescent Hotel,T9100\nCEO,MINT JULEP RESTAURANT MANAGEMENT,G2900\nPENSKE CAPITAL PARTNERS,,F0000\nPARTNER,CODINA PARTNERS,G4500\nFirefighter,City Of Johns Creek,X3000\nMARKETING MANAGER,MOBI PCS,Y4000\nPRESIDENT,AR PRODUCTION SERVICES,E1120\nKARL M CRAIG JR CORP,,Y4000\nSOFTWARE DESIGN ENGINEER,MICROSOFT,JE300\nHOMEMAKER,NOT APPLICABLE,J5100\nOWNER,Shufflin Energy,E1100\n\"MILLENNIUM CAPITAL MANAGEMENT, INC.\",,J1200\nIAMCO,,G5270\nVP,Collazo Enterprises,D4000\nCAT CLAWS,SELF,K1000\nPhysician,Rw Johnson Medical S,H0000\nLawyer,Lovett Bookman Harmon Marks LLP,Y4000\nGOVERNMENT,MERRILL LYNCH & CO. INC.,F2100\nATTORNEY,MENDES AND MOUNT,K1000\nCONSULTANT,\"FIERCE, ISAKOWITZ & BLALOCK/CONSULT\",K2000\nDR PATRICK CUNNINGHAM,,Y4000\nBANKER,EVERCORE,Z9500\nCHIEF MEDICAL OFFICER,US RENAL CARE,H1130\nMACFARLANE COMPANY,,J5400\nEXECUTIVE,US ARMY,X5000\nPresident,Geneva Group,Y4000\nTrader,Peabody Energy Corp.,E1210\n\"JOYCE, MEREDITH, FILTCROFT & NORMAN\",,Y4000\nL L INTERMEDIATE UNIT #13,,J7400\nPLASTIC SURGEON,JOHN W. BASS MD PC,T1400\nCHIEF AUDITOR,HUNTINGTON BANCSHARES INC.,F1100\nPROF OF CHEMISTRY,,H5100\nROOSSOS HAGE & HODES,,Y4000\nVP,Rockwell Automotive,M2300\nCARDING SURGEON,HEALTH PARTNERS,H3700\nCHAIRMAN,KELLY & ASSOCIATES GROUP,F3100\nMEDIA AGENCY,SMALL BUSINESS OWNER,G0000\nRETINA SPECIALIST/OPHTHALMOGIST,RETINA ASSOCIATES PA,H1120\nMail Processor,USPS,X3700\nBERRYMAN & HENIGAR INC,,J1100\nExecutive Vice Presi,\"Schaefer Financial Services, Inc.\",F0000\nVice President Legal,The Weather Channel,C2200\nLAN-WAN ADMIN,KING COUNTY,X3000\nQUSULUS COMMUNICATIONS,,Y4000\nLEE M. SMITH & ASSOCIATES CO. L.P.A,,K1000\nPrincipal,Inovation Works,Y4000\nINSURAN,GREAT WEST CASUALTY COMPANY,F3400\nFEDERAL GOVT. RELATIONS,WAL MART,G4300\nattorney,\"Lawson, Davis, Pickeron & Seydell\",K1000\nAttorney,Bingham McCutehan Murase,K1000\nOWNER,\"RAISING CANE'S FRANCHISE\",Y4000\nPRESIDENT,ROCKLAND FORD LINCOLN,T2300\nPRESIDENT,JHS,Y4000\nPROGRESSIVE BUILDERS,,B1500\nKONIAG INC,,Y4000\nGENERAL CONTRAC,\"MOH'S BUILDERS INC.\",B1500\nPhysician,\"Ernest Schreiber, MD\",H1100\nCAREY & GRAHAM,,Y4000\nReal Estat,Jamerson Properties Ltd.,F4000\nTeam Leader,International Finance Corporation,X8000\nPERSONNEL,H.R. BENEFITS,Y4000\nCHIEF FINAN,SYNOVUS FINANCIAL GROUP,F1100\nOWNER,THE ORGANIZING GROUP,J7400\nPresident,Schad Meats,G2300\nComputers,US Department of State,X3000\nPcs Regional Sales Mgr,Wells Fargo,F1100\nInvestor,\"Market Street Management, Llc\",F0000\nATTORNEY,SMOGER AND ASSOCIATES,Y4000\nCOAL BROKER/BUSINESS OWNER,TRI-STAR COAL SALES COMPANY,E1210\nTHE REFINISHING TOUCH,,Y4000\nHomemaker,n/a,C4500\nOwner,Somewhere In time,Y4000\nFINE JACOBSON,,Y4000\nDR-GROUP DAILY RENTAL MANAGER,\"ENTERPRISE LEASING COMPANY OF ORLANDO,\",T2500\nTV Producer,Willenborg Productions,C2900\nPETROCORP INCORPARATED,,E1100\nPrograms  Assistant,Liberty Hill Foundation,X4100\nAttorney,Stephen Heller A Prof Corp,Y4000\nASSOCIATE PUBLISHER,SCHNEIDER PUBLISHING,T9000\n\"Chair, Community Physician Partnership\",Cleveland Clinic Health System,H2100\nCHAIRMAN,CRAGIN ET AL,Y4000\nBRANDING CONSULTANT / DESIGNER,SELF-EMPLOYED/BRANDING CONSULTANT /,Y4000\nREAL ESTATE,88 ZULA PROPERTIES LLC,F4000\nY Y K ENTERPRISES,,T6200\nTRI COUNTY CYCLERY,,Y4000\nFuel Distributor,Alexaner Oil Company,E1100\nPresident,\"Ideal Engineering, Inc\",B4400\nResearcher,Univ. Kansas,H5100\nPRESIDENT & COO,AMERICAN ELECTRICAL POWER OKLAHOMA,Y4000\nPolicy Analyst,A&N Technical Services,Y4000\nBUSINESS OWNER,PRIVATE BUSINESS OWNER/BUSINESS OWN,Y4000\nSHAREHOLDER,SELF EMPLOYED,G0000\nPresident & CEO,\"Occupations, Inc\",Z9500\nDIXIE DEW PRODUCTS,,Y4000\npublic affairs consu,Dick White,K2000\nFOLCOR LODGING TRUST,,T9100\nOxygen Unlimited,,Y4000\nSD SCHOOL OF MINES/VOLUNTEER/PRESID,,H5100\nentertainment development,self,Y4000\nFUGISAWA HEALTHCARE INC,,H3000\nDIRECTOR,GREAT AMERICAN INSURANCE,F3400\nPRESIDENT & CE,BANCORP RHODE ISLAND,Y4000\nPRESIDENT,UNIVERSAL NATURAL GAS INC,Y4000\nMECHANIC,NORTHERN EAGLE BEVERAGES,Y4000\nMONTGOMERY MCCRANEN,,K1000\nKLS ENVIRONMENTAL RESOURCES,,Y4000\nOwner,Consumer Financial Services,F1400\nPresident,J Brice Design,Y4000\nCEO,COLUMBIA CASCADE COMPANY,J1100\nEMC2/PRESIDENT/OWNER,,J7400\nEXECUTIVE VICE PRESIDENT,\"WILLIS OF TENNESSEE, INC.\",F3200\nNURSE,\"ST. BERNADINE'S HOSPITAL\",H2100\nMODEL BOOKER,NEXT MODEL MANAGEMENT,Z9500\nPresident,Davidson Electric,G1200\nROAN & AUTRAY,,Y4000\nPROJECT MANAGE,BALDWIN CONSTRUCTION,B1500\nexecutive coach/cons,self,J1200\nGovernment Affairs,Akerman Senterfitt,K2000\nPublic Employee,State Of Maryland,X3000\nParent Involvement Facilitator,Hampton City Schools,X3500\nDENTI,\"GWINNETT CHILDREN'S DENTISTRY\",H1400\nCERTIFIED PUBLIC ACCOUNTANT,SELF,J9000\nBusiness Owner,Revere Consulting,Y4000\nSTAR FOOD PROCESSING INC,,G2000\nSOFTWARE ENGINEER,DCS CORPORATION,Y4000\nVICE PRESIDENT - QUALITY,TRIPLE S/VICE PRESIDENT - QUALITY,Y4000\nENVIRONMENTAL SCIENTIST,STATE OF CALIFORNIA,X3000\nChairman and CEO,Hatfield Quality Meats,G2300\nCHAIRMAN,MILLIKEN AND CO.,J1100\nGOVERNMENT RELATIONS,KINDERCARE,Y4000\nPresident,Heritagenergy (ny) Inc.,E1000\nSR.VP,MEADOWS REGIONAL MEDICAL CENTER,H1100\nReal Estate Sales,Merrill Properties Inc,F4000\nUNIVERSITY OF DAYTON,,H5100\nPOINT PLEASANT DISTRIBUTO,,Y4000\nPRESIDENT,THE MACK COMPANY,F2600\nPRE,SHAWMUT DESIGN AND CONSTRUCTION,B1500\nFARMER,DUNN FARMS,A1000\nEVANSTON MEDICAL,,H1100\nPresident/ CEO,\"East West Enterprises, Inc\",Y4000\nBUSINESS OWNER,KRAMER FUNERAL HOME,G5400\nPHOTOGRAPHER,AMY MARTIN PHOTOGRAPHY,Y4000\nCEO,Highland Management Group Inc,Y4000\nCHAIRMAN/CEO,\"SARKES TARZIAN, INC.\",C2100\nWEST COAST SPINE RESTORATION,,H0000\nNurse,Baylor Hospital,J1200\nHuman Resoures Vice President,Youth Alternatives,J1200\nNEUROSURGEO,MONMOUTH MEDICAL CENTER,H1130\nPresident,Atlantis Homes LLC,B2000\nSurgeon,Howard University,H5100\nATTORNEY,UNITED STATES/ATTORNEY,X3000\nINSIGNIA FINANCIAL GROUP,,F0000\nPOLICE OFFICER,CITY OF AURORA,X3000\nExecutive,L.K.Q. Corporation,T2200\nWILLIAM F CELLINI,,Y4000\nInternet executive,CircleLending,Y4000\nWILLKIE FART & GALLAGHER,,K1000\nCONTRACTOR,THE YATES COMPANIES INC.,B1000\nVice President,Carey Homes,B2000\nassistant Attorney general,NY Office of the Attorney General,J7400\nV.P. SALES,SALESFORCE.COM,C5140\nPR Executive,M Booth & Associates,Y4000\nMATH PROFESSOR,SOUTHWEST TENNESSEE COMMUNITY COLLEGE,J1100\nTax Credit Allocation Officer,Virginia Housing Development Authority,Y4000\nMED CARE INC,,H3000\nANESTHESIOLOGIST,PINNACLE PAIN MEDICINE,H1130\nPhysician,Carol L Egner & Assoc,Y4000\nPrudential Insurance PAC,,F3300\nRetired,\"Pitney Bowes, Inc\",M4200\nC.E.O.,SENSATA TECH,Y4000\nOwner,Pro-Active Media,Y4000\nLawyer,\"Lesser, Newman & Nasser\",K1000\nOFC OF RICHARD B HAMM,,E1120\nCULLINANE AND ASSOCIATES,,Y4000\nINVESTME,ALFRED P. SLOAN FOUNDATION,X4000\nVICE PRESIDENT,FMC CORPORATION,G2100\nAdministrator,Jamacia Serv Program for older adults,Y4000\nPARTNER,COLDIRON CONST.,M2100\nOilfield,Halliburton,E1150\nMANAGI,AMER. CONTINENTAL GROUP INC.,J1100\nCONSULTANT,HURT NORTON,K2000\nDUNWELL ELECTRIC,,Y4000\nTHE SHOOK,COLDWELL BANKER,F4200\nAttorney,FerrellSchultz,K1000\nVP Sales,Pollack and Associates,F4200\nDirector-PL Hedging/Commodity Sales,Energy Transfer Corp,E1140\nHOMEMAKER/CIVIC VOLUNEER,N/A,C1400\nNATL CON-SERV INC,,F3100\nCARTER & BUOLGESS INC,,Y4000\nINVESTMENTS,CROWNBRIDGE,F2000\n\"VP & Director, Communications\",The Coca-Cola Company - Corp,G2600\nCorporate Officer,Lancer Financial,F0000\nPhysician,Houston Pathoogy Association,Y4000\nRealtor,Robert Real Estate Inc,F4000\nExecutive,Howard Rosengarten,Y4000\n\"SCALI, MCCABE, SLOVES INC\",,J5100\nBUSINESS CONSULTANT,WHITE HOUSE WRITERS GROUP,C1100\nAUCTIONEER,NATIONAL AUCTION GROUP,G5200\nAttorney (retired),Self,X1200\nPHOTOGRAPHER,MARGARET MOIZEL PHOTOGRAPHY,Y4000\nINSURANCE,BLUEWATER INSURANCE GROUP,F3100\nReal Estate,Trout Segall & Doyle,F4000\nROMAN CATHOLIC PRIE,ST. ANNS CHURCH,J7120\nSecretary,The Wexler Group,K2000\nDirector of IT,Syracuse University,H5100\nPRESIDENT,LANIHAU CORP.,F4000\nPRESIDENT,IMG COLLEGE,H5100\nINTER-AMERICA DEVELOPMENT BANK,,F1100\nCONTROLLE,\"ALEXANDER + BALDWIN, INC.\",T6200\nEmergency Physician,Morristown Meml Hosp,H1100\nPRESIDENT,SUNSET MANAGEMENT,Y4000\nVP FINANCE,ANHEUSER-BUSCH COS INC,G2810\nLEWIS & GREENWALD,,Y4000\nELECTROPHYSIOLOGY,\"Arkansas Cardiology,P.A.\",H1100\nFUEL OIL,WRANGELL OIL INC,Y4000\nCEO,\"VDN Systems, Inc.\",Y4000\nMktg,RosenbergerConstruction,B1500\nREALTOR,LEE PROPERTIES,F4000\nSoftware Engineer,Altium,Y4000\nDIRECTOR OF GLO,MICROS SYSTEMS INC.,Y4000\nM ANOLIK MD,,J5100\nPHYSICIAN,WESTSIDE MEDICAL,H1100\nS & R MEDALLION SALES,,T4200\nBUSINESS ANALYSIS,AVONANDE,Y4000\nGLOBAL ENV PROJECT INST,,Y4000\nPrincipal,Prism VentureWorks,F2500\nhomemaker,self,F5000\nPRIVATE INVESTIGATIONS,,G5290\nPRESIDENT,ALASKA EXCHANGE CORP.,Y4000\nSystems Engineer,Scitor Corporation,Y4000\nPresident,Horizontal Oil Field Systems & Supply,E1150\nCOACH,HAVERFORD COLLEGE,J1200\nPRESIDENT,FORAY ENTERTAINMENT,C2700\ncontractor,\"W.T. Rich Co., Inc.\",Y4000\nExec,Emar Building Corp,Y4000\nST ANTHONY,,H1100\nHATES DOCKSIDE INC,,Y4000\nHome Health Care,Home Health Care Affiliates In,Y4000\nBuilder,Brookdale Dev. Inc.,Y4000\nAttorney,\"Waterfront Media, Inc\",Y4000\nPRESIDENT,ARAB AMERICAN AND CHALDEAN COUNCIL (AC,J7500\nExecutive,The Corben Institute,Y4000\nDirector,Patent and Trademark Office,X3000\nPRESIDENT & CHIEF EXECUTIVE OFFICER,FREMONT CONTRACT CARRIERS INC.,T3100\nEXCLUSIVE AMBULETTE SERVICE,,Y4000\nDEVELOPMENT DIRECTOR,NYCLU,Y4000\nInformation Requested Per Best Efforts,B.P. AIR CONDITIONING,B3400\nPOLITICAL FUNDRAISER,SELF EMPLOYED,G5260\nEXECUTIVE,MIDWEST COMPONENT SALES,Y4000\nPRES,SOUTHWESTERN MEDICAL FOUNDATIO,Y4000\nDirector-Legislative Liaison,The Boeing Company,D2000\nGENERAL PARTNER,\"SLS CAPITAL MANAGEMENT, LLC\",F2100\nCEO,\"TGV Rockets, Inc\",Y4000\nATTORNEY,ADVANTAGE ARBITRATION AND MEDIATION L.,K1000\nAttorney,Black Diamond Capital Mgmt,F2100\nManagement Consultan,Morris-Anderson Ass. LLP,J1100\nPresident,\"Royal Management, LLC\",G0000\nGENERAL EQUITIES CORPORATION,,Y4000\nFinancial Executive,\"Sesame Workshop, Inc\",X4000\nStaff,Melissa Bean for Congress,J1200\nCEO,\"STAN WADE METAL PRODUCTS, INC\",Y4000\nOWNER,PURE BLISS CYCLE INC,Y4000\nRobert Berman Gallery,,Y4000\nAT,KUMMER KAEMPFER BONNER & RENSHAW,K1000\n\"Chief Test Pilot, Usaf Test Pilot Scho\",US Air Force,X5000\nPresident,G & K Enterprises,Y4000\nBusiness,Vent Craft Inc,Y4000\nReal Estate Broker,Worth Properties,F4200\nHEALTHCARE E,ESSENT HEALTHCARE INC.,H2100\nLAWYER,YALE UNIVERSITY,H5100\nATTORNEY,C. ENERGY SYSTEMS,E1000\nBURLESON PATE & GIBSON,,K1000\nPSYCHOLOGIST,MIRIAM LANDAU,X1200\nVP INFORMATION MGMT &,DEVON ENERGY,E1150\nTHOMPSON & LAMONT PC,,Y4000\nVP,Spirit Bank,F1100\nPresident,Mid-Atlantic Foam,Y4000\nPRESIDENT,H A MAPES,Y4000\nYOGURT STOP,,Y4000\nAUTO DEALER,Fitzgerald Auto Malls,T2300\nBRIDGEPORT VISITING NURSES ASSOC,,H3100\nCRIMINAL INVESTIGATO,NEW YORK STATE,X3000\nPROJECT MANAG,CREATIVE SOCIO-MEDICS,H0000\nATTORNEY,BICKERTON LEE DANG & SULLIVAN LLP,Y4000\nROCKY MOUNTAIN SPINE CLINIC,,Y4000\nRE/MAX/REAL ESTATE BROKER,,J1100\nInstructional Specialist,GUILFORD COUNTY PUBLIC SCHOOLS,L1300\nNETWORK MARKETING DISTRIBUTOR,MLM HEALTH WEIGHT LOSS ENERGY DRINK,Y4000\nINVEST,GIOVINE CAPITAL GROUP L.L.C.,F0000\nATTORNEY,MILLER SHPIECE ANDREWS,K1000\nU S BANCORP LEASING,,G5300\nOwner,Wayne Jordan Real Esate,F4100\nGAMEWOOD DATA SYSTEMS INC,,C5130\nANALYST,CONSULTANT,C2400\nREAL ESTATE BROKER,FLORIDA WOODLAND GROUP,F4000\nBEAUTY CONSULTANT,MARY KAY,M3300\nOwner,P & N Construction,B1500\nEXECUTIVE COACH/CONSULTANT,THE RUEBLING GROUP LLC,Y4000\nMANAGING DIRECTOR,EASTOIL REALTY,F4200\nATTORNE,LEBOEUS LAMB GREEN & MACREY,K1000\nINVESTM,SHAY INVESTMENTS SVCS. INC.,J1100\nHERALD-TIMES INC,,C4100\nOPHTHALMOLOGIST,\"WEST SEATTLE-HIGHLINE EYE CLINIC, LLP\",Z9500\nOwner,Lemaster Steel Inc,Y4000\nOFFSHOR,HOUSTON EXPLORATION COMPANY,Y4000\nNAT WEST FINANCIAL MARKET,,Y4000\nPresident,North Pacific Seafoods,G2350\nDIRECTOR OF SPE,SIERRA NEVADA CORP.,D3000\nBusiness,psc Metals,Y4000\nHISTORIAN,UNIVERSITY OF PITTSBURGH,H5100\nRetited,None,X1200\nTEAMWEEKS,,Y4000\nEDUCATOR,MIDLANDS TECHNICAL COLLEGE,H5200\nSERVICE PROVIDER,ATLAS REARDEN INC.,Y4000\nMANAGING PARTNER,JP CAPITAL & INSURANCE,Y4000\nACCOUNTANT,KMS LLC,Y4000\nFORTUN INSURANCE COMPANY,,J5200\nAttorney,Mayster and Chaimson,K1000\nK L H I G A,,Y4000\nRice Farmer,Self-Employed,A1000\nPhysician,\"Forest Laboratories, Inc\",H4300\nVP,\"Nat'l Strategies\",Y4000\nChief Engineer,\"PGH Wong Engineering, Inc.\",B4400\nFASHIONS INC,,Y4000\nEXEC.,A. WILSEY PROPERTIES CO.,F4000\nFARMER,,B5100\nMENTAL HEALTH ASSO IN FLORIDA,,H3800\nR M SINGER & ASSOCIATES INC,,Y4000\nPRESIDENT,KENAN TRANSPORT,T3100\nVICE PRES,SYSCO NEWPORT MEAT COPANY,G2300\nHOMEBUILDER,TROPICANA HOMES,B2000\nDOCTO,CENTER FOR DIAGNOSTIC IMAGING,H2000\nBROKER,DU-RATE REALTY COMPANY,F4200\nPresident and COO,Castle Oil Corp,E1100\nBANK DIR,INSURANCE AGENT,F3100\nprofessor,university of rhode island,Z9500\nT G LAMBRON INC,,H1100\nArchitect,Robert Meyers Assoc,J1200\nCOO,SAPHILO,Z9500\nPresident C.E.O.,Tracy Evans Ltd,Y4000\nEmergency Physician,CAUTHER EMERGENCY MEDICAL ASSOCIATION,H0000\nCEO,ADVANCED HOME CARE,H3100\nVice President and Chief Financial Off,Good Samaritan Hospital,H2100\nPresidnet,Tarlon   Advertisting,G5210\nEXECUTIVE,WARBURG PINCUS,F2600\nPhysician,Digestive Healthcare Center,H1130\nFilm Director,N/A,C2400\nRancher/Farmer,Kentucky Bison Company,A3300\nGeneral Manager,FSI Construction Inc,F4500\nDOCTOR,RADIOLOGY ASSOCIATES OF SAN LU/DOCT,H1130\nHomemaker,Crutchfield Capital,F0000\nATTORNEY,SIMMONS PERRINE ALBRIGHT,K1000\nCIVIL ENGINEER,\"S.E.C., INC.\",Y4000\nPresident & Chief Ex,CT Communications; Inc.,C4100\nJEFFERSON ASSOC INC,,C5110\nNursing Supervisor,Palomar Pomerado Hea,Y4000\nOWNER,OBAUGH FORD,T2300\nACTOR,\"NUANCE PRODUCTIONS, INC.\",C2000\nEngineering Manager,General Motors - Retired,Z9500\nATTORNEY,SOLARCITY,E1500\nACTRESS,SELF/ACTRESS,C2400\nDIRECTOR,CITY OF UNION CITY,X3000\nSENIOR IT SPECIALIST,TOSHIBA GLOBAL COMMERCE SOLUTIONS,Y4000\nReal Estate Agent,Len Cor,Y4000\nHANNON DEVELOPMENT INC,,Y4000\nPRESIDENT,PRECISE  CONTINENTAL,C1300\nAssociate Environmental Planner,State of California,X3000\nAdmisistrative Assis,Keybank,F1000\nLAND DEVELOPER,J II HOMES INC.,B2000\nPRESIDENT,A.V. THOMAS PRODUCE INC.,A1400\nBANDELIER INN,,Y4000\nAdvertising,Avon,Y4000\nE B CONN VENDING,,G1200\nComputer Programmer,Black Duck Software,C5120\nREAL ESTATE BROKER,TOTAL R E CONSULTANTS INC,F4200\nConsultant,Zach Wamp Consulting,Y4000\nPartner,East Market Resturant,J1200\nANGELO GORDON,,F2700\nINVESTMENT BAN,GEORGE K. BAUM & CO.,F2100\nARCHITECT,NICHOLSBOOTH ARCHITECTS,Z9500\nDEVELOPMENT DIRECTO,SDSU FOUNDATION,H5100\nHOMEMAKER,N/A,E1500\nRoute Salesman,Hostess Cake I.B.C.,Y4000\nGLENNIE & DUGAN CONSULTIN,,Y4000\nExecutive,Natco Products Corp,Y4000\nROYCE LABORATORIES,,H4300\nVICE PRESIDENT & G,GENERAL ELECTRIC,M2300\nCEO,AAR CORPORATION,D2000\nU S ITC,,X3000\nDIRECTOR,CDC IXIS,G5300\nORTHOPED,GEORGE K. PARKIN MD. L.L.C,H1100\nBMT GROUP,,Y4000\nFinancial Secretary,St. James Episcopal,Y4000\nAerospace Engineer,Northrop Grumman,D5000\nR V METAL,,M5000\nN/A/STUDENT,,E1170\nFINANCIAL & MANAGEMENT CONSULTING I,,F2100\nOWNER,\"MCDONALD'S OF EAST KY\",G2900\nVICE PRESID,\"AMERIQUAL HOLDINGS, LLC\",D9000\nREED SPORTS,,Y4000\nFINANCIAL ADVISOR,BOA-MERRILL LYNCH,Z9500\nTraffic Engineer,Traffic Planning & Design,Y4000\nJIMENEZ GRAFFAM & LAUSELL,,K1000\nENGINEER,PROCTER AND GAMBLE CO.,M3300\nProfessor,Ste[Hen F Austin State University,Y4000\nPROPRIETOR,ACCENTUATE CATERERS,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,BOB IRSIK CATTLE,Y4000\nCourt reporter,\"Everman & Everman, Inc.\",Y4000\nAss Kisser To Gov Ritter and H,State Of Colorado,X3000\nSURGEON/DEAN,UNIVERSITY OF CONNECTICUT,Z9500\nELECTRICIAN,GLOBAL MAMME,T6000\nPresident,\"Americo, Inc\",Y4000\nPUBLIC RELATIONS,PACIFICCOMM LLC,Y4000\nPRESI,JOYCE SMITH FAMILY FOUNDATION,J5100\nPONDEROSA PAINT MFG,,M1600\nDirector of Marketing,University of Missouri,H5100\nEGLE ASSOCIATES,,Y4000\nEXECUTIVE,BRAEBURN CAPITAL,Y4000\n3rd Asst Engineer,\"KEY LAKES, INC.\",LT500\nPHYSICIAN,CHAGGRIT SAWANGKAO MD.,H1100\nPRESIDENT,BCG,Y4000\nTravel Industry Cons,American Express Bus,F1400\ndisability examiner,state of TX,Y4000\nReal Estate Developer,Atlantic Development,F4100\nOwner,Progressive Engineering,B4400\nScientist,Immunex,H4500\nPHYSICIAN,PINNACLE ANES CONSULTS,H1130\nSelf Employed,SRJ,Y4000\nOIL & G,BOB FERGUSON -- INDEPENDENT,E1120\nCEO,DEMINION ADVISORY GROUP,Y4000\nunemployed,,D3000\nPHYSICIAN,CHRISHE CLINIC,Y4000\nMANAGER,GREAT WEST,Y4000\nEXECUTIVE VICE PRESIDENT,FIELDSTONE INVESTMENTS INC.,F7000\nSTEEPLECHASE INNS INC,,Y4000\nREALTOR,SMITH REAL ESTATE,F4000\nREGI,GKS CORP. DBA THE AMERICAN INN,T9100\nAttorney,Employee Rights Law Firm,K1000\nDEAN,STATE UNIVERSITY OF NEW YORK,H5100\nPresident/CEO,KATZ BUILDERS INC,B2000\n\"VP, DIRECTOR OF OPERATIONS\",VORNADO/CHARLES E. SMITH,F4000\nAttorney,\"Ballard,Spahr,Andrews,etc.\",K1200\nSCHWARTZ 2000,,J1200\nKLEIN LIPTON LIEBMAN GRESEN,,Y4000\nSELF,BOMAN CONSTRUCTION,B1500\nEXECUTIVE,FISHER INVESTMENT GROUP,Z9500\nHistorical interpreter,Self,Y4000\naccountant,self employed,J1200\nMERCHANTS NAT BANK,,M3200\nSURGEON/INDEPENDENT OIL & GAS PRODUCER,CK SURGICAL LLC/COD EXPLORATION LLC,Y4000\nINDEPENDENT OIL/GAS,EARLE M. CRAIG JR.,E1160\nSENATOR,STATE OF ALASKA,X3000\nRESEARCH TECHNICIAN,DOW CHEMICAL,M1000\nCORP EXECUTIVE,DIALYSIS MANAGEMENT SERVICES LLC,J1100\nPRESIDENT,WAVE FORM SYSTEMS,H4500\nSCHWARTZ TOBIA,,K1000\n\"VICE PRESIDENT, GO\",DRS TECHNOLOGIES,D3000\nCall Center Manager,Medco Health Solutions Inc.,H3700\nOwner,Btw Inc,Y4000\nP,GOLDEN MEADOW CULTURAL FOUNDATION,X4100\nGUND INVESTMENT COMPANY,,JH100\nDIRECTOR OF SALES,MACHINERYLINK INC.,Y4000\nAttorney,\"Pear Sperling Eggan & Daniels, P.C.\",K1000\nMEDICAL,VA,X3000\nProfessor,Uc,Y4000\nPRESIDENT AND MANAGING MEMBER,HABERSHAM FUNDING,Y4000\nPresident/Ceo,The Mln Company,Y4000\nJEFF DELEONE & ASSOC,,Y4000\nVice President,Zenar Corporation,Y4000\nFashion Model,Self-Employed,G5200\nATTORN,\"ROCKEMONN, SAWYER & BREWSTER\",K1000\nOWNER,RITCHIE ENTERPRISES INC,Y4000\nPOLLARD FRIENDLY MOTOR CO,,T2300\nInvestor,Stet & Query LTD Partnership,K1000\nReal Estate,The Federal City Co.,F4000\nINSURANCE AGENT,ALLSTATE INSURANCE COMPANY,F3300\nRegional Manager,CAT Scale Company,T3100\nMOATS ENTERPRISE,,Y4000\nUinsurance Agent,Wildoner Insurance,Y4000\nHR Manager,Accenture,G5270\nSr. Counsel,American Financial Services As,F3100\nPRESIDENT & C.E.,ALLTEL CORPORATION,C4300\nSHOOTER AND BUTTS INC,,B3600\nINVESTOR,TREK RESOURCE INC.,Y4000\nAttorney,Thomas Garvey Garvey et al,Y4000\nASSET MANAGEMENT,ALLIANCEBERNSTEIN,J1200\nROBINSON REIDY AND CO,,Y4000\n\"LITTLE, YOUNG, CAMPBELL & MCGREW PC\",,Y4000\nLOBBYIST,CITIZENS FINANCIAL GROUP,F1100\nDiagnostic Radiologist,Advanced Medical Imaging of Stuart,H1130\nMICRO COMPUTER SERVICES,,Y4000\nSelf Employed,PRM Consulting Group,G5270\nSENIOR SCIENTISIT,OREGON RESEARCH INSTITUTE,Z9500\nREMCO,,H1400\nRealtor,Prudential Realty,F4200\nNCNB TEXAS NATIONAL BANK-DALLAS,,F1100\nEDITOR,RAND ASSOC,Y4000\nAIRCRAFT MECHANIC,DIVISION OF L3 COMMUNICATIONS,J1100\nretired,southern pacific co.,Y4000\nAIRLINES PILOT,US AIRWAYS,T1100\nGeneral Manager/CEO,Northwest Communications Cooperative,C4100\nPRINTD SYSTEMS INC,,Y4000\nIT SPECIALIST,\"CHEAP JOE'S ART STUFF\",Y4000\nOil Man,Self-Employed,E1100\nsenior advisor,Akin Gump,K2000\nMANAGEMENT CONSULTANT,ZEHAR & BADNER,J5100\nManager,North American Production Sharing Inc,Y4000\nMILLBERG WEISS BERS,,K1100\nSTATE SENATOR,STATE OF MINNESOTA,X3000\nAutomobile Deal,\"Woodstock Garage, Inc\",Y4000\nDARBUN ENTERPRISES,,Y4000\nNORWEST BANK OF WISC,,F1100\nDIRECTOR,BIG STAR LEASING,Y4000\nFarmer,RB Farms,A1600\nPRONTO CONSTRUCTORS,,B0500\nSENIOR VP AND CFO,SHERIDAN BROADCASTING,J1200\nBUSINESS OWNER,EYE CARE AND CURE,J1100\nOwner,Down Home Meats,G2300\nInformation Requeste,None/Retired,X1200\nOIL & INVEST,,E1100\nSALESPERSON,RYCTK,Y4000\nWOOTEN HONEYWELL KIMBROUGH,,K1000\nTIMOTHY KELLY & ASSOCIATES,,Y4000\nAT,SATTERLEE STEPHENS BURKE & BURKE,Y4000\nExecutive,\"Cisco Systems, Inc\",C5110\nSR. MANAGEMENT,CELOENE CORP,Y4000\nIT Analyst,\"Air Products & Chemicals, Inc\",M1000\nPresident,\"Expert Visa Services, Inc\",T0000\nHECHT DEPARTMENT STORES,,G4300\n\"SILLERBERA, STONEHILL, GO\",,Y4000\nATTORNEY,BONYA GAZZA & DEGORY L.L.P.,K1000\nSPORTS MARKETING,LIVE NATION,C2800\nCAMPAIGN MANAGER,CRIST FOR GOV,Z9500\nANN ARBOR FOREST HEALTH SVCS,,H3700\nPRESIDENT,INLAND TARP & LINER,Y4000\nHOMEBUILDER,VILLAGE GROUP L.L.C.,F4100\nCFO,VIACOM,G5230\nSALES & BUSINESS,ROTH COMMUNCATIONS,Y4000\nContractor,Self-Employed,B1500\nPrincipal,Deloitte Consulting,F5100\nHALDOR INVESTMENT ADVISORS LP,,K1000\nOWNER,PIORITY HOME CARE SERVICES,Y4000\nSENIOR GOVERNMENT ADVISOR,ROCHE,H4300\nENVIRONMETNAL CONSULTING,SELF/ENVIRONMETNAL CONSULTING,Y4000\nTHE M K MORSE CO,,Y4000\nEXECUTIVE,\"ASPEN TECHNOLOGY, INC.\",Y4000\nHOMEBUILDER,SIERRA MILLS CO.,Y4000\nENTERPRISE GROUP INC,,J5100\nProfessor,U of Massachusetts Boston,H5100\nACKERLY AIRPORT ADVERTISING,,G5210\nASSOCIATE GENERAL COUNSEL,\"MILLENNIAL MEDIA, INC.\",Z9500\nOwner,\"Alexander's Jewelry\",Y4000\nPresident and CEO,SRG Global Inc,T2100\nPROFESSOR O,UNIVERSITY OF WASHNGTON,JD200\nPrincipal,BGR Goverment Affairs LLC,K2000\nPROWEH HEALTH SYSTEMS,,H3000\nInsurance/Solid Waste Educator,Aflac and Madison County (Ark) Recycli,F3200\nEXECUTIVE VI,LAFAYETTE COAL COMPANY,E1200\nATTORNEY,\"THE LAW OFFICE OF JOSEPH A. CREITZ, P.\",K1000\nCOLORADO ANESTHESIA CONSULTANTS P.C,,H1130\nATTORNEY,JOHNSTON & SASSER,K1000\nEXECUTIVE,VANCREST MANAGEMENT CORP.,Y4000\nManaging Director,Allied Capitol Corp,Y4000\nMANAGER,\"R&S FOR THE HOME, INC.\",Y4000\nPROFESSOR,VASSAR COLLEGE/PROFESSOR,H5100\nINTERNATIONAL ADVISORY CORPORATION,,Y4000\nBusiness Owner,JB Parking Service,F4500\nGeologist,Usgs,Y4000\nCASCADE LUMBER CO,,B2000\nPRESIDENT,D&G MACHINES,Y4000\nREGIONAL DIRECTOR,USDA,X3000\nOWNER,SOUTHEAST DISTRIBUTORS,Y4000\nPresident,\"Slate Hill Construction, Inc\",B1500\nanalyst,SAC Capital,F2700\nComputer Prog,WPI,H5100\nOWNER,SUNRISE CREDIT SERVICES INC,Y4000\n\"Physician, educator\",University of Michigan,H5100\nPROGRAM DEVELOPMENT,COUNTER PART INTERN,Y4000\nROSSROCK,,Y4000\nEXECUTIVE DIRECTOR,CENTER FOR ADVANCED DEFENSE STUDIES,Y4000\nINVESTMENTS,SELF,F1000\nERSCHELL,MUEHLENKAMP,Y4000\nReal Estate Marketing,The Dzap Group,F4000\nNON PROFIT EXECUTIVE,CIVIC VENTURES,Z9500\nCHAIR PBS&J IN,THE PBSJ CORPORATION,B4000\nBLOCK DRUG CO INC,,J7150\nAssociate General Co,Miller Brewing Company,G2810\nCPA,DECOSIMO C.P.A. FIRM,F5100\nOAK TREE RACING ASSN,,G6500\nLizabeth Dunn,,Y4000\nSELF,PROSPECTOR INC./SELF,M3600\nComputers,National Committee for Quality A,F3200\nPresident & CEO,JMA Architecture Studios,B4200\nBOARD OF DIRECTORS,DAVITA,F2600\nELPASO GRAIN CO INC,,Y4000\nDIR. OF FACILITIES,ISR,D4000\nSPECIAL ASSISTANT TO DIRECTOR,FDIC,X3000\nGOLD COAST BEVERAGE DISTRIBUTORS,,G2850\nTRAINER,SELF EMPLOYED,X4100\nEXECUT,BROOKDALE LIVING COMMUNITIES,H2200\nFEDERAL GOVERNMENT/HOMELAND/STAFF O,,X3000\nSOCIAL,MERITER RETIREMENT SERVICES,Y4000\nTECHNICIAN,A. T. & T.,C4100\nCIO,\"Constellation Brands, Inc.\",G2820\nUnion Official,USWA,Y4000\nLab Archivist,Fermilab,X3000\nVP DEPUTY TO PRESIDENT,AEROJET-GENERAL CORP,D2000\nCTO,MAXIM INTEGRATED PRODUCT,F5000\nEDWARDS AND ANGELL/ATTORNEY/PARTNER,,K1000\nVarious,self,Z9500\nAttorney,\"Virtual Group, LLC\",Y4000\nDermatologist,Physician,H1130\nattorney,PENNINGTON MOORE,K2000\nRETIRED,THE BRINKS COMPANY,X1200\nOILFIELD OPERATOR,,E1150\nPhysician,\"ALLERGY, ASTHMA AND SINUS CENT\",H1130\nOW,\"PRIME CARE SERVICES HAWAII, INC.\",Y4000\nC.E.O.,T.P.W. MANAGEMENT,Y4000\nINSURANCE,SOUTH-WEST INSURANCE AGENCY INC.,F3100\nResearch,Center for Public Service; U of VA,H5100\nMARKETING,DYNA,J1100\nCHEMICAL,KIMBERLY-CLARK CORPORATION,M3300\nADMINISTRATOR,HURON VALLEY PUBLIC SCHOOLS,Y4000\nPRESIDENT,HAYES DEVELOPMENT,Y4000\nMANUFACTURING COMPANY,SELF-EMPLOYED,M0000\nC.E.O.,SCHAUBACH COMPANY OF VIRGINIA,E3000\nEXECUTIVE,T.E. WELLS & CO.,J9100\nFEDERAL HOM,CHIEF FINANCIAL OFFICER,Y4000\nCONSULTANT,MA BROTHERS,Y4000\nNORAN CLINIC,,H1100\nResearcher,U. S. FDA,X3000\nSALES,BEACH CHEMICAL AND PAPER CO,J1100\nDENTIST,LEONARD DENTAL,H1400\nProfessor,U of VA,H5100\nPresident,Dynasty group,B4400\nDEVELOPER,400 MONROE & ASSOCIATES,F4200\nChairman & CEO,Bartlett & Co Investment,A4000\nPATHOLOGI,\"IOWA PATHOLOGY ASSOCS, PC\",H1130\nMARLER FARMS/PARTNER/FARMER,,A1600\nAdministrator Public,Veterans Administration,Y4000\nLAPORTE INC,,M1000\nOwner,Wills Inc,B2000\nRONNIE QUEEN FORD,,T2300\nJOHN BLUE CO,,Y4000\nProperty Management,Carefree Property Management,F4500\nREAL ESTATE,PRIME RESOURCES,F4000\nOwner,Complete Furniture & Interiors Inc,Y4000\nMYRON M. CHERRY & ASSOCIAT,ATTORNEY,K1000\nPROGRAM EXECUTIVE HMMWV,AM GENERAL,D8000\nOpinion Research,Artemis Strategy Group,Y4000\nattorney,se,J7150\nINVESTOR,RITTERMAN CAPITAL INC,Z9500\nPROPERTY M,SCIOTO RENTAL MANAGEMENT,F4500\nFuturist,Self Employed,Y4000\nRetired Officer,United States Marine Corps,K2000\nAuthor of Science-Fiction/Fantasy Nove,Self employed,Y4000\nBusiness Manager,Prudential Financial,F3300\nIHC GROUPU,,Y4000\nFWISD,,E1150\nBUILDER,H. CARR & SONS,B2000\nKEYSTONE CAPITAL,,F2500\nphoto editor,Conde Nast,C1100\nEngineer,\"Kleinfelder, Inc\",B4000\nATTORNEY,GREENBERG TRAURIG P A,K1000\nCONNER-SMITH EYE CENTER,,Y4000\nNORFOLK STATE UNIVERSITY,,F1400\n\"BISHOP, LIBERMAN, COOK, PURCELL & R\",,K2000\nPRIVATE INVESTOR,RED BARN INVESTMENTS,F2100\nOwner,Breeden Fresh Market,Y4000\nVP - Development,Mt. Washington Pediatric Hospital,H2100\nMANAGER,\"GIORDANO'S\",Y4000\nTGVB ROCKETS INC,,Y4000\nREALTOR,REMAX REALTY,J1200\nVP COMMERCIAL LOAN OF,NORTHRIM BANK,F1000\nPhysician,\"St. Vincent's Hospital\",H1100\nMEDICAL EDUCATOR,UNIV OF WISCONSIN-MADISON,H5100\nVENTURE CAPITALIST,RAYCLIFF CAPITAL/VENTURE CAPITALIST,F0000\nGLOBAL DIRECTOR,DOW CHEMICAL,M1000\nINDIANAPOLIS FIRE DEPARTMENT,,Y4000\nCOO,OUALITY HEALTH CARE CORP,Y4000\nCROWE CHIZEK & COMPANY,,F5500\nOWNER,THE FINN GROUP,Y4000\nPARTNER,DE RAY & DEVEREAUX,Y4000\nREAL ESTATE BROKER,HANES INVESTMENT REALTY  INC.,F4200\nSales,\"Avega Health Systems, Inc\",Z9500\nASSISTANT,SMALL BUSINESS ADMINSTRATION,X3000\nVICE PRESIDENT,QUESTCOR PHARMACEUTICALS,H4300\nservices,paradise living personal care home,Y4000\nPROFESSOR OF PHYSICS,NPS,Y4000\nREAL ESTATE,CRYE-LEIKE,F4200\nTeacher/Tennis Profe,Abbiott Union Free School Dist,X3500\nDIRECTOR I-PROGRAM,RAYTHEON COMPANY,D3000\nREAL ESTATE,,F2200\nInsurance Adjuster,Scibal Associates,Y4000\nSR. VICE PRESIDENT,THE BOEING COMPANY,D2000\nWESTLAND INDUSTRIES INC,,B2000\nAttorney,\"Kearney, Donovan & McGee PC\",K2000\nLISRE CORP,,Y4000\nCHIEF FINANCIAL O,MMM - INVEST INC.,Y4000\nEDWARDS BALLARD ATTORNEYS,,K1000\nFASHION DESIGNER,SELF,Z9500\nEDUCATIONAL PUBLISHER,SUPER DUPER INC,Z9500\nPresident,Bussed From Twin,Y4000\nFUNERAL DIRECTOR,JOHN J. KACZOR FH,G5400\nAccounting,Plymouth Congregational Church,X7000\nVICE CHAIRMAN,SELF-EMPLOYED,F2100\nElectrical Contracto,DiFazio Electric,B3200\nHorticultural Consultant,\"Tim Blenk Tree Care, Inc.\",Y4000\nATTORNEY,USITC,Y4000\nAssoc Dir Core Services,Gustavus Adolphus College,H5100\nOwner,\"Rege Trucking, Inc\",T3100\nInformation Requested,Pizza Hut of East Texas,G2900\nCFO/COO,THE LEWIN GROUP,H3000\nCONSTRUCTION EQUIPMENT DISTRIBUTOR,\"VERMEER MIDSOUTH, INC./CONSTRUCTION\",B6000\nOWNER,MOUNTAIN FRIED CHICKEN,Y4000\nMANAGER,SHARAC,Y4000\nCOMPUTER SCIEN,MOVIECO TECHNOLOGIES,Y4000\nRETIRED,IOWA WORKFORCE DEVELOPMENT,Y4000\nOccupational Therapi,Texas Womens Univ,H1700\nVICE PRESIDENT,NATIONAL CABLE AND TELECOM ASSOCIATION,C2200\nACCESS CAPITAL,INSURANCE,F0000\nELECTRO-SPACE FABRICATORS,,Y4000\nP L D MGMT INC,,Y4000\nAdmin,Cornell College,J7400\nCEO,Tissue Genesis,Y4000\nL,ECKELL PARKS LEVY AUERSBACH MONTE,Y4000\nattorney,\"Cage, Williams, Abelman and Layden, P.\",K1000\nPresident,Caithness Corporation,E1500\nSHAW HOMES,,B2000\nGeneral Manager,Buggs Island Telephone Cooperative,C4100\nSALES,TOCAGEN INC.,Y4000\nGeneral Manager,Joe Hall Ford Lincoln Mercury Nissan,T2300\nEXECUTIVE,TONGOUR GROUP; LLC,C4100\nPARTNER,PIROLLI & PIROLLI,Y4000\nOWNER/ENGINEER,KEN HERCEG & ASSOCIATE,Y4000\nJewelry Store,Self employed,G4600\nPublic Affairs,Winner and Associates,G5210\nLaw Professor,Duquesne University of theHoly Spirit,H5100\nCHAIRMAN,EUGENE M. LANG FOUNDATION,Y4000\nPresident & CEO,Inner-City Community Dev. Corp,Y4000\nDIRECTOR,WARD GALLERY,X4200\nSTATION SQUARE,,Y4000\nR.N.,EASTERN MEDICAL SPECIALISTS,Y4000\nUNITED PARAMOUNT NETWORK,,C2300\nMANAGER,SIMON CONTRACTORS,Y4000\nSALES EXECUTIVE,EVERTEC,Y4000\nBU,NORTHEAST FOUNDATION COATING LLC,B2000\nVenture Capitalist,Origin Ventures,Y4000\n\"BROWN, BROWN & BROWN P A\",,K1000\nOATES ASSOCIATES INC.,,B4000\n\"VP, COMPENSATION\",METLIFE,F3300\nMANAGING,\"POROZIO, BROMBERG & NEWMAN\",Y4000\nAMERICAN ROTATIONAL MOLDING,,Y4000\nREAL ESTATE DEVE,RUBEN MENASHE INC.,F4100\nNOLAN & TAYLOR-HOWE FUNERAL HOME IN,,G5400\nVP,REI,G4600\nWOLF ENERGY COMPANY,,E1100\nCEO,MARTIN AUTOMOTIVE GROUP,Y4000\nMANAGER,MANHATTAN CONSTRUCTION CO.,B1000\nSALES REPRESENTATIVE,PATTERSON POPE,Y4000\nLATHAM & WATKIN,,K1000\nATTORNEY,MCNEES WALLACE & NURICK,K1000\nSoftware Engineer,Larimer County,X3000\nPHILADELPHIA VENTURES,,Y4000\nATTORNEY,NCT INDUSTRY INC.,Y4000\nMANAGER,COUNTRY FINANCIAL/MANAGER,F0000\nHUGHS & LUCE,,K1000\nWEST HILLS OIL INC,,E1100\nWEEKS CORP,,F4100\nREAL ESTATE,\"SOTHEBY'S REALTY\",F4200\nC.T.C.INC,,Y4000\nPEACE ACTIVIST,NONE,Y2000\nExecutive,Mass Mutual,F3300\nM&O A-1,MCOE,Y4000\nExecutive,Fay Improvement Company,F5000\nAttorney,\"Ogborn, Summerilin, Ogborn\",K1000\n\"DIRECTOR, REGIONAL DISTRIBUT\",TARGET,G4300\nATTORNEY,AMENTA & COMPANY,K1000\nCOOK,VESPER COUNTRY CLUB,Y4000\nconstruction,\"Ferreira Construction Co, Inc\",B1500\nFINANCIAL SERV,LEGACY CAPITAL GROUP,F5100\nELECTRICAL CONTRA,IVEY ELECTRIC CO.,B3200\nUrologist,\"Steven F. Johnson, MD\",H1130\nHUDSON POST OFFICE,,X3700\nDOOKLANDS FINANCIAL SERVICES,,F0000\nCOUNTY SUPERVISOR,COUNTY OF SAN MATEO,X3000\nREAL ESTATE ADVISOR,MCCALL & ALMY,Y4000\nOWNER,BUILD. MATERIAL SUPPLIES,B5100\nREAL ESTATE DEVELOPER,LEGACY FUND,F4100\nHealth Consultant,Atlantic Health Systems,H2100\nCONSULTANT,CREATIVE CONTRACTING RESOURCES GROUP,Y4000\nOVERCHUCK & LANGA,,Y4000\nOWNER & CEO,D.R.R. INVESTMENTS,F7000\nCivil Servant,Alameda County,X3000\nAttorney,Adams & Reese LLC,K1000\nBUSINESS OWNER,JSA,Y4000\n\"DREYER, BABICH, BUCCOLA & CALLAHAM,\",,K1000\nATTORNEY,RETIRED,J7150\nGEORGE A HORKAN JR PC,,K1000\nAdministration and Envir,Jacksonville State Unive,H5100\nCHAIRWOMAN,\"GATES, INC.\",B1500\nKLEIN CHAPMAN ET AL,,J5100\nDISPATCHER,COMCAST CABLE/DISPATCHER,C2200\nPHYSICIAN,ADVANTAGE FAMILY MEDICAL CARE,Y4000\nOLGUIN INVESTMENTS,,Y4000\nLAGARD FIERES,,Y4000\nINSURANCE SAL,\"JEFF R. JOHNSON, INC.\",Y4000\nMANAGEMENT,CINEMA CAFE,Y4000\nOWNER,ADAMSSPORTS MART,G2400\nOFFICE ADM,EDWARD JONES INVESTMENTS,F2100\nH L GASTON III OIL PROPERTIES,,E1100\nPRESIDENT,HAMILTON JEWELERS,G4600\nAdministrative,Donald J. Acker,G0000\nCHAIRMAN,LINBECK CONSTRUCTION,B1500\n\"TCI INT'L\",,C2200\nManager,\"AECOM USA, Inc\",B4000\nDEPARTMENT OF AGRICULTURE,,J7400\nVice President,Kennedy Krieges Institute,H3000\nceo,Polaris Management Group,Y4000\nAGENT FOR FILM DIR,,C2400\nADMINISTRATION,BLAINE MANOR,Y4000\nATTORNEY,CREDIT-SUISSE,F2300\nExecutive/IT Consulting,\"The Cornerstone Professional Group, LL\",Y4000\nRVP,SUN COMMUNITIES,F4100\nMTD,City of Chicago,J7500\nGOVERNMENT RELATI,\"PATTON BOGGS, LLC\",K2000\nPrincipal,Polaris Consulting,K2000\nCommunity Volunteer,None,G2850\nBUSINESS OWNER,\"SCILOG, INC.\",Y4000\nRAIMY CORPORATION,,B5000\nLAHEY CLINIC FOUND,,H1130\nINVESTMENT MANAGEMEN,BARCLAYS GLOBAL INVESTORS,F2100\n\"VAN SCOYOC ASSOCIATES, INC\",,K2000\nFINANCIAL PLANNER,CITY OF TACOMA,J1200\nD,HELENA DERMATOLOGY & LASER CLINIC,H1130\nREAL ESTATE SALES,BOSA DEVELOPMENT,Y4000\nPROJECT LEADER,SEI INVESTMENTS,F7000\nMANAGER,MANAGER,Z9500\nNEE ENGLAND HEALTH CARE FOUNDATION,,H0000\nCHAIRMAN,\"CIRCUIT CITY STORES, INC.\",T2300\nDENTIST,\"DAVID A PARIS, DDS SC\",H1400\nEnviornmental Policy,Self employed,Y4000\nCOWAN HARDWARE CO,,G1100\nSPELLING TELEVISION,,Y4000\nAnalyst,Charles Schwab,F2100\nPortfolio Manager,Bear Stearns Asset Management,F2300\nDR FROST DDS,,H1400\nFINANCIAL CONSULTAN,RENAISSANCE INC,F2700\nC.E.O.,MACKLIN INC./C.E.O.,Y4000\nLEGAL CONSULTING,SELF EMPLOYED,Y4000\nVICE PRESIDENT,\"HARRAH'S\",G6500\nTEMPLETON FUNDS MGMT,,X1200\nPresident/Chief Tech,Southgate Computers,J5400\nBARSHOP & OLES COMPANY INC,,F4500\nAssistant,Greens Rd Medical Clinic,Y4000\nManaging Partner,Herodecks,Y4000\nWARREN GENERAL HOSPITAL,,H2100\nIRV SOLOMON & SONS,,Y4000\nboard member,Tustin Unified School District,X3500\nTrainer,NC Baptist Hospital,H2100\nContractor,Young Plumbing and Heating,B3400\nFOUNDATI,UNITED NATIONS FOUNDATIONS,X4100\nEMIL MOSBACHER PROPERTIES,,J7150\nGOVERNMENT EMPL,CITY OF ALBUQUERQUE,X1200\nSECURITIES PROCESSING SERVICES,,F2100\nJ D WILLIAMS COMPANY,,F3100\nSR. VP. G,PROVIDIAN FINANCIAL CORP.,F1200\nPARTNER,H & S BAKERY,G2100\nPresident,WJ Management,Y4000\nPRESIDENT,EDWIN SCHLOSSBERG INC.,M2300\nCENTURY REAL ESTATE CO INC,,F4200\nOwner/ Attorney,Jeffrey A Rochelle P C,Y4000\nCONSTRUCTION,MINER,E1200\nPRESIDENT/CEO,JMA SOLUTIONS,Y4000\nNutritionist,Leever Cancer Center,Y4000\nCENTRAL MAINE GI ASSOC,,Y4000\nTROY & GOULD PROFESS,,Y4000\nREAL ESTAT,HOLLEY & LEWIS REALTY CO,F4200\nCHAIRMAN,\"COMPASS BANCSHARES, INC.\",F1100\nNEUROSURGE,MICHIGAN ORTHOPEDIC CTR.,H1130\nPARISH PRESIDENT,PLAQUEMINES PARISH,X3000\nSURGEON,SELF-EMPLOYED,J5100\nSTAGEHAND,CBS NEWS,C2100\nATTORNEY,KIRKLAND & ELLIS INTERNATIONAL LLP,K1200\nLABORATORY MANAGER,CLEVELAND CLINIC/LABORATORY MANAGER,H2100\nOPERATIONS OFFICER,\"LULA-WESTFIELD, LLC\",A1200\nATTO,\"WEISSMAN, NOWECK, CURRY & WILC\",K1000\nATTORNEY,\"QUINN, EMANUEL, URQUHART & SULLIVAN LL\",K1100\nLAWYER,NYC UNIVERSITY DENVER,Y4000\nACUSON,,H4100\nLawyer,Northeast NJ Legal Services,Y4000\nReal Estate Broker,Hometowne Real Estate,F4200\nAttorney,\"Dun & Martinek, Llp\",K1000\nVice President,\"Hess Group, Inc.\",F3100\nAIM ADVISERS INC,,F2100\nRJP BUILDERS,,Y4000\nREAL ESTATE BROKER,KENNON REALTY,F4200\nSYSTEMS ANALYSTS,,Y4000\nGRADUATE STUDENT/BUSINESS STARTUP,SELF-EMPLOYED,G0000\nCOUNCILMEMBER,CITY OF WALNUT CREEK,X3000\nCYBERTEK CORPORATION,,Y4000\nCEO,Hawkeye Renewables,E1500\nINSURANCE AGENT,\"NP DODGE INSURANCE AGENCY, INC.\",F3100\nSELF-EMPLOYED,ATTORNEY,J7400\nLOGISTICS,TARGET CORP,G4300\nCRAIN & MONTES,,K1000\nASSISTANT DEAN,\"KECK SCHOOL OF MEDICINE, USC\",Y4000\nNEUROLOGIST,UNITED STATES ARMY,X5000\nCEO,Air Methods Corporation,H3000\nProfessor,Touro Collge,H5100\nBUSI,CONVERGENT CONSULTING CORPORAT,F7000\nDivisional Vp.,Jmg Realty,F4200\nENDOWED RESEARCH PROFESSOR OF BIOLOGY,SAINT LOUIS UNIVERSITY,H5100\nEVP & DIRECTOR OF WEALTH MANAGEMENT,MECHANICS BANK,F1100\nDANIELS-MCCRAY LUMBER,,B5200\nSR. DI,ASURION INFORMATION SERVICES,G5000\nADVERTISING CONSULTAN,SELF-EMPLOYED,G5210\nRegional Manager - Sales I,Vulcan Construction Materi,B5100\nGovernment Relations,Novartis Pharmaceuticals,H4300\nVice President,WMTR,Y4000\nTOWN OF ABBEVILLE,,X3000\nChairwoman/Realtor,\"Aztec Group, Inc.\",F4200\nHOMEMAKER-VOLUNTEER,,H5100\nBUSINESS OWNER,ONYX INTERNATIONAL EXPLORATION,Y4000\nATTOR,LYNN TILLOTSOND PINKER L.L.P.,K1000\nLAW PROFESSOR,YALE LAW SCHOOL,H5100\nA,GOLDBERG; GODLES; WIENER & WRIGHT,K1000\nPHARMACEUTICALS,PERRIGO & CO.,H4300\nAttorney,Fragomen,J1200\nPENNSYLVANIA RURAL ELECTRIC ASSOC,,E1610\nPhysicia,University of Pennsylvania,H5100\nANTEL CORP,,Y4000\nINVESTMENT MANAGEMENT,MFS,Y4000\nEXECUTIVE RESOURCES ASSOCIATES INC,,Y4000\nATTORNEY,\"MCKIBBEN, WOOLSEY & VILLARREAL, LLP\",Y4000\nPACIFIC ISLANDERS I,ASIAN AMERICANS,Y4000\nATTORNEY,BUSICK HAMRICK PLLC,K1000\nCEO,WINSLOW MOTORS,T2310\nContractor,West Rail Construction,B1500\nGRIFFITH & BLAIR,CB,F4200\nSTOLPER & CO INC,,Y4000\nTELEVISION COMMENTATO,SELF EMPLOYED,C2000\nGENE,SETTON PISTACHO OF TERRA BELLA,Y4000\nKAUKAUNA BANK,,F1100\nFARM EQUIPME,PRIEFERT MANUFACTURING,A4200\nPhysician,Midatlantic Ophthalmology PA,H1130\nAUSTIN RESEARCH ASSO,,Y4000\nMANAGING DIRECTOR,PIVOTAL GROUP,F4100\nSpeech Clinician,ISD 833,X3500\nLawyer,LSW LLP,Y4000\nATTORNEY,ALMOND & BRADY,K1000\nKEITH BROWN,,Y4000\nEngineer,Isovac Products,Y4000\nAUTO SAL,JERRYS FORD - ANNANDALE VA,Y4000\ndirector of corporate governance,Barclay Global Investors,F2100\nSr Vice President of HR,Exelon Corporation,E1600\nSHIRLEY ZEITLIN,,F4000\nPHYSICIAN,MID-HUDSON FAMILY,H1100\nAMAGAUSETT,,Y4000\nCONSULTING,\"VISTARA CONSTRUCTION SERVICES, INC.\",B1500\nBELTWAY PLAZA,,Y4000\nvice president,Baskerville-Donovan,B4000\nReal Estate Investor,INSCORP,Y4000\nHARFER FARMS,,A0000\nBOTTLER,SELF,G2700\nOWNER,FISH CAMP RESTAURANT INC,G2900\n\"Director, Business D\",\"ORA, Inc.\",Y4000\nEXECUTIVE,GATEWAY FUNDING DMS,J7500\nExecutive,\"PennRose Properties, Inc.\",F4000\nBUSINESS DEVEL,WHITEHALL BOCA RATON,Y4000\nCEO,HAWKINS CONSTRUCTION CO.,B1500\nGIS,Center for Biological Diversity,Z9500\nPRINCIPAL,H.S.I,Y4000\nC.E.O.,F. ROGERS INSULATION INC.,B3000\nWAITER,WAITER,C1100\nGEN MGR DIVISION OPERATIO,BNSF Railway Company,T5100\nDESIGN ENGINEER,CTS INTERNATIONAL/DESIGN ENGINEER,Y4000\nNEW PRODUCTS MANAGER,COX MEDIA GROUP,Y4000\nPRESIDENT,HOLTEC-USA CORP,M2300\nVenture Captial,Oakwood Investors,F2500\nPresident,\"CRM Rental Management, Inc.\",G5300\nOwner,Mira Sol Lymphedema Rehab Ct,Y4000\nBANKING,FOX-PITT KELTON,F2300\n\"LOCKTON COMPANIES, LLC.\",,F3100\nSCHONBERG ASSOCIATES,,Y4000\nCEO,MEGA BANK,Y4000\nCHAIRMAN,DRUGMAX INC.,Y4000\nSHELADIA ASSOC INC,,Y4000\n\"Sexual Assault Resp Coord'r\",US Air Force,X5000\nBranch Manager,F&M Bank,F1000\nPRESIDENT,\"STEPHEN M. CONNELLY, CPA\",Y4000\nSUPPLY CHAIN MANAGEMENT,UPS,T7100\nEVP,\"AMYLESSENCE, INC.\",Y4000\nRN,Tillamook County General,Y4000\nKI STRATEGIES,,Y4000\nENTREPRENEUR,BRAINCHILD INC,Y4000\nKRUTSCH INC,,Y4000\nSELF EMPLOYED,MASSAGE THERAPIST,JE300\nPARTNER,DON PETERSON & ASSOC,F4000\nATTORNEY,VIRGIN AMERICA,T1100\nSocial Work,U of NC,J7400\nUNEMPLOYED,,G5200\nPHYS,NW GA HEMATOLOGY & ONCOLOGY PC,H1100\nOwner,\"Kouso Communications, Llc\",Y4000\nCo-Owner/Co-CEO,Excelsior Energy Inc,E1600\nsongwriter,Self,Z9500\nNORTHERN STATES BANK,,F1000\nFAMILY MEDICINE,MDVIP,H3100\nOwner,Presidio Management,F7000\nDEVELOPER-INVESTOR,,F4100\nPresident,Nicholas Inc,Y4000\nCorp. Sec.,\"Lawmen Supply Co. of NJ, Inc.\",Y4000\nNeurosurgeon,Osbi,Y4000\nCPA MKTING CO,,F5100\nAttorney,Brayton Purcel Novato CA,K1000\nEmergency Physician,South Shore Hosp,H1100\nReal Estate Broker,Morris VIP Realty,F4200\nPhysician,University Of Miami Medical School,H5150\n\"ASTROTECH INTERNAT'L\",,E1150\nJUDD ENTERPRISES INC,,C2400\nProgram Manager,Office of Naval Research,X5000\nDEBENHAM ELECTRIC,,B5500\nFamily Physician,Jacksonville Medical Care,Y4000\nROMEO & JULIET,,Y4000\nCARTER POLITO & GORMAN,,F5100\nPresident,\"Hudson Drydooms, Inc\",Y4000\nGOVERNMENT CONTRACTS,,B1500\nManager,NW Trustee Services Inc,Y4000\nPRESIDENT,\"EBERLE DESIGN, INC.\",Y4000\nATTORNEY,VOSE LAW FIRM,K1000\nSIMKINS LAND CO,,F4200\nATTORNEY,MOUNTAIN UNION,K1000\nENERGETIC PAINTING AND DRYWALL,,B3000\nPART,\"KLUGER, PERETZ, KAPLAN & BERLI\",K1000\nPresident,Orscheln Mgmt. Co.,Y4000\nPresident,Leisure Publishing,C1100\nCHAIRM,THE COCA-COLA COMPANY - CORP,G2600\nREAL ESTATE C.E.O.,HOME PROPERTIES,F4100\nHousewife,Housewife,F0000\nAIRLINE GROUND SCHOOLS,,H5000\nProfessor of Molecular Biology,University of California,J1200\nattorney,\"Clute, Clute and Thompson llp\",K1000\nOrthopaedic Surgeon,Southeastern Orthopaedic,H1130\nPresident,Sunset Development Co,F4000\nPREMERA,,F3200\nOwner,Ingram Enterprises,Y4000\nMarket Researcher,D. T. W. MARKETING RESEARCH,Y4000\nWINONA DISTRIBUTING COMPANY,,Y4000\nLUIS RIVERA SIACA P E,,Y4000\nPres,Chiropractic Clinic,H1500\nJEWELRY DESIGNER,JEWELEY BY MONGOR,Y4000\nDANTACK CORPORATION,,Y4000\nOWNER,MTHOOD SKIBOWL,Y4000\nSR. ANALYST,CENTER FOR LAW AND SOCIAL POLICY,K1000\nVice President,IDS Software,C5120\nRESIDENTIAL ASSISTANT,\"PENN-MAR ORGANIZATION, INC.\",Y4000\nPRESIDENT AND,THE FORESTLAND GROUP,Y4000\nlawyer,Dughi & Hewit LLC,K1000\nOCCUPATIONAL THERAPY ASSISTANT,SELECT REHAB.,H1700\nAttorney,\"McKenzie, McRae et al\",K1000\nLawyer,Davis Wright Tremaine Llp,J1200\nFINANCIAL CONS,CITY OF PHILADELPHIA,X3000\nMANAGER,ONLINE PUBLISHERS ASSOC,C1100\nCONSULTING,MFR,Y4000\nOWNER,GAS HARRY L GRAHAM OIL,E1150\nFarmer,The Scoular Co.,A1500\nLATICE SEMICONDUCTOR,,C5110\nProfessor Emeritus o,Cornell University,H5100\nREAL ESTATE,LENNY VERMAAT & LEONARD,F4200\nVICE PRESIDENT,AJCU,Y4000\n\"Social Commentary, Voiceover Artist\",Self employed,Y4000\nPHYSICIAN,BAYFRONT FAMILY MEDICINE RESIDENCY,H1100\nPresident,The Summit Foundation,X4100\nGLOBAL CHIEF INFORMATION OFFICER,MARSH,F3100\nAttorney/COO,Yellow Pages of New England,Y4000\nREAL ESTATE EXECUTIVE,,J1100\nREETIRED,RETIRED,X1200\nOffice Mager,University of Texas at Austin,H5100\nHUMAN RESOURCES,\"LAND O' LAKES\",A2000\nCEO,SOFTWARE TECHNOLOGY INC.,C5120\nCENTRAL MARYLAND NEUROSERGICAL & SP,,H1130\nMANAGING DIR.-WEALTH MNGT.,MORGAN STANLEY SMITH BARNEY,F2300\nSENIOR STATEGIST ADVISOR,TENET HEALTHCARE CORPORATIONS,Y4000\nKICO INC,,Y4000\nMARTIN J JASKA INC,,B1000\nAttorney,KUTCHIN & RUFO,K1000\nFUNDRAISER,SELF,J7400\nLAWYER,MIYER BROWN,K1200\nCORPORATE ATTORNEY,NEWSCORP,C2000\nTHE LLANFAIR HOUSE INC,,B0500\nBoard Member,CARGILL,A1000\nBUSINESSMAN,ESSEX MEADOWS INC.,Y4000\n\"ST LUKE'S\",,J1200\nBECKER SPIELVOGEL BATES WORLDWIDE,,G5210\nSocial worker,Southern Plains Mental Health,H3800\nn/a,TAG Restaurant,G2900\nPUBLIC AFFAIRS DIRECTOR,FLODESIGN WIND TURBINE,Y4000\nEnvoronmental Manage,\"Enviroscientists, Inc\",Y4000\nSHEA CONSTR CO,,B1000\nPrincipal,Atlantic Retail Properties,F4200\nCONSULTANT,CLARITY RESOURCES,Y4000\nBusiness Mgr,Westwad Ent. LLC,A3500\nOwner,G. Bishop & Company,Y4000\nATTORNEY,\"MARTIN COUNTY, FLORIDA\",X3000\nBANK OF GAINSVILLE,,F1100\nBANKER,KILLBUCK SAVINGS BANK,F1200\nACCESS INFORMATION SERVICES,,Y4000\nPRESIDENT,CENTER BEVERAGE CO,G2850\nFREELANCE DO-GOODER,SELF,Y4000\nATTORNEY & LOBBYIST,COMMUNICATIONS ADVISORY COUNSEL,Y4000\nHELLER EHRMAN L.L.P.,,K1000\nINSURAN,FISCHER ROUNDS & ASSOCIATES,F3100\nManaging Partner,Sheffield Asset Management,Y4000\nPRIVATE EQUITY,BAIN & COMPANY,F2600\nConsultant,SpecTal,Y4000\nrestaurateur,Nestle Foodservices,G2900\nCEO,\"Michael H. Finnell, Ofc.\",G0000\nPRESIDENT,\"INSTRUMENT, INC\",Y4000\nSUCCESS GROUP,,J1200\nphysician,Anders Dermatology,H1130\nOwner,A + Signs,Y4000\nACCOUNTANT,LIBERY SPINE SPORTS NUTRITION,Y4000\nTeacher,Mercer School System,X3500\nlawyer,Wiggins & Dana,K1000\nPresident,River Specialties,B3000\nREAL ESTATE INVESTOR,URBANIZA CAPITAL,Y4000\nViolin Maker,Self employed,M4000\nOIL & REAL ESTATE,SELF EMPLOYED,E1100\nCONSULTANT,ZEEGOO,Y4000\nSTUDENT,MSU,Y1000\nPresident,Nosan Ent.,K1000\nPresident,The Thomson Corp,C1100\nPOLICE OOFFICER,RETIRED,J1100\nPresident,Antwerp Diamonds ( U S A),Y4000\nPresident,TradeMark Insurance Agency LLC,F3200\nOMEGA POOL STRUCTURES INC/OWNER/PRE,,Y4000\nNurse,Cobblestone Nursing Home,H2200\nINVESTMENT ADVISOR,LAIDLAW GROUPLLC,Y4000\nResearch Scientiest,MIT,J7400\nEXECUTIVE,STOUT GROUP LTD/EXECUTIVE,Y4000\nFIRST NATIONAL BANK OF PU,,F1100\nMANAGING PARTNER,MERRIFIELD PATRICK VERMILLIO,F4000\nRESTAURANTEUR,\"ANGELINA, INC\",Y4000\nEMPLOYMENT,SELF,G0000\nATTORNEY,LITCHFIELD CAVO LLP/ATTORNEY,K1000\nInformation Requeste,Teamsters LU 52,LT300\nMIBERG WEISS,,K1100\nPresident,Harmony Grove Industries Inc.,Y4000\nBanker,COMERICA INC.,F1100\nRETIRED,,G5290\nPRESIDENT,HARVEST SPORTING GROUP,Y4000\nMARANO & DIAMOND,,K1000\nManaging Director,\"F/S CAPITOL ASSOCIATES, L.L.C.\",K2000\nPresident,Signal Wind,E1500\nJJFASSOCIATESCORPCALIFORNIA HI,,F4100\nLAW OFFICES OF F T MUEGENBERG,,K1000\nEQUITY BROKER,LAZARD CAPITAL MARKETS,F2100\nATTORNEY,CHRISTOPHER J. BRENNAN,J1110\nMILWAUKEE COUNTY,,X3200\nMIZUNO FARMS INC,,A1400\nCEO,VALLEY REGIONAL MED CTR,H2100\nOwner,Face Marketing,Y4000\nHUFFINES RUSSELL & ASSOCIATES,,F3100\nEXECUTIVE,FOX,C2200\nArchitect,Arrowstreet,B4200\nAccountant,Retired From Ups,X1200\nSCIENTIST,\"MERCK & CO., INC\",H4300\nMANAGER AND PRESIDENT,STATISTICAL ECOLOGY ASSOCIATES LLC,Y4000\nMIDWEST HEART SPAC,,Y4000\nREQUES,MC CLURE FOR U.S. SEN. COMM.,Y4000\nAERO MED HOME MEDICAL,,M1500\nPERSONNEL MUTUAL LIFE INSURANCE CO,,F3300\nDIRECTOR - WEST FRANC,\"AARON'S, INC.\",G5300\nDirector,American Osteopathic Assoc.,H1130\nComputer Programmer,self,J1200\nP,\"PEDIATRIC ANESTHESIA ASSOC., P.C.\",H1130\nRETIRED MAINTENANCE,,X1200\nCampground General Manager,Self-Employed,G0000\nHealth Care Data Consultant,\"Markcelian Analytics, Inc\",Y4000\nLIND & ASSOCIATES INC,,F4200\nDENNIS AND BARNES INC,,Y4000\nMANAGER GLOBAL LEARNING SER,RED HAT,C5120\nINVESTOR,KAYNE CAPITAL,Y4000\nRetired,\"O'Reiily Automotive\",X1200\nPHYSICIAN,ST. LUKE MEDICAL CENTER,H1100\nATTORNEY,VENTURE LAW GROUP/ATTORNEY,J7150\nJ & L STRUCTUAL,,M2100\nPartner/Textiles,\"Highland Mills, Inc\",Y4000\nAUDIT,MWAA,Y4000\nHUNTINGTON READY MIX ASSOCIATION,,B5100\nVICE-PRESIDENT,ESP SOLUTIONS GROUP,Y4000\nANESTHESIOLOGIST,MEDICAL ANESTHESIA CONSULTANTS,H1130\nPsychology Professor,Slippery Rock University,H5100\nExecutive,D.P. Fox L.L.C.,G5270\nCHARLES G JOHNSTON INC,,Y4000\nREALTY GUARDIAN TITLE INC,,F4200\nT-K-O EQUIPMENT,,B6000\nLIVESTOCK INVESTORS INC,,A3300\nInformation Requeste,Greater Pittsburgh Chamber Of,Y4000\nPRESIDENT,KEY ROAD ENTERPRISES,Y4000\nLAWYER,\"QUINSTREET, INC.\",G5280\nPartner,\"Cahill, Gordon & Reindall\",J1100\nBOCKLET & CO LLC,,Y4000\nINSPECTOR,UNITED STATES GOVERNMENT,X3000\nTeacher,Danceworks,Y4000\nProgram Analyst,Retired,X1200\nKDOT,,Y4000\nHEALTH CA,HERITAGE HEALTH SOLUTIONS,Y4000\nPortfolio Manag,Jennison Associates,C5120\nWISCONSIN TRANSPORTATION BLDRS ASSN,,Y4000\nPRESIDENT,WENGERS FARM MACHINERY,A4200\nExecutive Coach,\"Global Access Learning, Inc\",G5270\nOWNER,HI-TECH FIRE TRUCKS,Y4000\nGRAYSON BANK,,F1000\nFIREFIGHTER,SPRINGETTSBURY TWP.,Y4000\nREAL ESTATE SALESPERSON,\"MAZ PROPERTIES, INC.\",F4000\nassociate,\"Wolf, Block, Schorr & Soliscohe\",K1000\nCorporate Officer,Self- Employed,G0000\nSALES,EMPIRE FOODS,G2000\nWRITER,PATRICK SEBRANEK,Y4000\n3RD GRADE TEACHER,ST. JAMES CATHOLIC SCHOOL,Y4000\nEXECUTIVE DI,NEWALLIANCE FOUNDATION,F1000\nTHOMASTON MILLS INC,,M8000\nRESTAURANTEUR,\"MVP HOLDINGS, LLC\",G2900\nSECURITY GUARD,NEW YORK CITY POLICE DEPT,X1200\nNORTH COUNTRY REGIONAL VICTORY,NEW HAMPSHIRE REPUBLICAN STATE COMMITT,J1100\n\"WEISSMANN, WOLFF, BERGMAN\",,K1000\nSPORTS MARKETING CONSULTANTS INC,,C2100\nHOMEMAKER,NA,H4300\nRETIRED,CITY OF FORT WORTH,X1200\nWILLIAMS AND JENSON,,K2100\nCFO,Trinchero Family Estates,G2820\nWRITER,DIRECTOR,Y3000\nReal estate Manager,\"Art Kapoor Realty, Inc.\",F4200\nFOREIGN TRADE ADVISOR,SELF-EMPLOYED,Y4000\nChairman & CEO,Central States Health & Life,Y4000\nSYSTEMS ENGINEER,\"VMWARE, INC.\",C5120\nCAMP BARSH BATES AND TATE,,K1000\nAttorney,Dickson Wright,Y4000\n\"COLUMBIA-ST MARY'S\",,Y4000\nDIRECTOR F,HOLIDAY RETIREMENT CORP.,H2200\nChief of Cardiac Surgery,Our Lady of Lourdes Medical,H2100\nAttorney,\"SKELTON, TAINTOR & ABBOTT\",K1000\nMANAGER,HARNISCH COMPANY,M2300\nExecutive Administra,Nepco,Y4000\nERGON OIL COMPANY,,E1160\nPARTNER,TRINITY PARTNERS,F4000\nREAL ESTATE,P & G PROPERTIES OF OCALA INC.,Y4000\nFC BOOKKE,\"GREG ABRAMS SEAFOOD, INC.\",G2350\nSales,Afd Distributers,Y4000\nPRESIDENT,WORCESTER FURNITURE GALLERY,G1200\nINSTRUCTOR,CONCORDIA COLLEGE,H5100\nOwner,Staffing Consultants Inc.,G5250\nPresident,S&S Worldwide,Y4000\nAdvisor,dai,A0000\nESTEOL SYSTEMS,,Y4000\nPRESIDENT,ROHLFING OF DULUTH INC.,G2850\nATTORNEY,HIGINBOTHAM & HIGINBOTHAM,K1100\n\"DIR., CORPORATE ACCOUNTS\",DOT FOODS INC.,G2910\nHOMEMAKER-STAY AT HOME DAD,NONE,Y1000\naccountant,\"Saltmarsh, Cleaveland & Gund\",F5100\nInformation Requested,Altamonte Pediatric Associates,H1130\nVP - Human Res.,Comcast Corporation,C2200\nEXECUTIVE STAFF,,Y4000\nSENIOR ADVISOR,AKINGUMP,K1000\nEVERGREEN INVESTMENTS,,E1160\nPresident,Center For Growth and Development,Y4000\nEXECUTIVE,UNITY CONSTRUCTION,B1500\nCEO,3 SHARE,Y4000\nConsultant,Constantinople Consulting,Y4000\nMONTGOMERY WATSOR,,Y4000\nPRESIDENT,BJE CONTRACT/KREAMER FEED,A2300\nHW MANAGEMENT CO,,Y4000\nDADE RESIDENTIAL,,Y4000\nAttorney,Wilson Sonsini Godrich &amp; Rosati,K1000\nINVESTOR,WEILER ARNOW MGMT CO. INC.,JE300\nSTOCKHOLDER,,F7000\nLawyer,\"Schnader Harrison Segal & Lewis, LLP (\",K1200\nTHE LANGLEY SCHOOL,,Y4000\nFRED W SMITH,,Y4000\nVP,General Electric,J5000\nPhysicist,California Institute Of Technology,Y1000\nOWNER,MOORING RECOVERY SERVICES,Y4000\nEXEC.,KEYSTONE SHIPPING CO.,T8000\nMANAGER,SIDELINES,Y4000\nREAL EVERGREEN,,M3100\nChief Financial Officer,Terralliance,E1150\nOwner,\"Dms, Llc\",Y4000\nENGINEER,PAPE-DAWSON ENGINEERS,B4400\nAVDITS AND SURREY,,Y4000\nBusiness Executive,General Electric Company,M2300\nConsultant,Crowe Chizek,Y4000\nASSET MANAGER,J & W SELIGMAN & CO.,Y4000\nBUSINESS EXECUTIVE,DARAJA ENTERPRISES INC,Y4000\nDir Global Business,\"Air Products and Chemicals, Inc.\",M1000\nExecutive,Edco Supply Corporation,M7000\nREPUBLIC BAG INC,,Y4000\nREAL ESTATE,THE MERIDIAN GROUP,F4100\nOwner,Dewey Jetton,G0000\nNUVEEN INVESTMENT,,F2100\nCONSULTANT,MONITOR COMPANY,F2600\nKEY ENVIRONMENTAL SERVICE,,Y4000\nEngineer,P.D.S. Technical Services,Y4000\nMETRIC MACHINING,,Y4000\nNUTRITION COUNSELING SERVICE,,Y4000\nCENTRE DENTAL,,H1400\nSAN FRANCISCO BOARD OF SUPERVISORS,,J7300\nCONTRAC,HAL COLLUMS CONSTRUCTION CO,B1500\nTREX ENTERPRISES CORP,,C5110\n(Unemployed),Unemployed,Y1000\nPhysician-Surgeon,Ret,X1200\nINFORMATION REQUESTED PER BEST EFFORTS,SMITHFIELD FOODS,G2300\nDEVELOPER,WENTLAND CONSTRUCTION,J1100\nOffice Manager,law Office of Ruben Pena,K1000\nManager,KAMET,Y4000\nPRESIDENT,DEFENDER TECH,Y4000\nCEO DEVELOPER,Arbor Commercial/Residen,Y4000\nPRESIDENT,SAINT PROPERTIES,F4000\nCOOK-WITTER INC,,Y4000\nPresident,,F1100\nVP,FREEPORT LNG,E1120\nFINANCIAL CONSULTANT,EDWARD D. LEE,X1200\nEXECUTIVE,RADISSON HOTEL,T9100\nattorney,Baker & Hostetler,K2000\nSCHWABE WILLIAMSON ET AL,,K1000\nPARALEGAL SPECIALIST II,STATE OF CONNECTICUT,X3000\nSILVERSMITH,,Y4000\nBUSINESS MANAGER,B.P.,E1110\nPRESIDENT,IPH HOME HEALTH CARE INC,Y4000\nSALES,J C PENNEY/SALES,G4300\nPRESIDENT,\"B O X PARTNERS, LLC\",Y4000\n\"Greatpoint Energy, Inc.\",,E1000\nManaging Director,Information Design,Y4000\nACCOUNTANT,ACCESS 1 COMUNCATIONS COR,Y4000\nSOUND TRANSIT,,T5000\nFIRE CAPTAIN,US COAST GUARD,X5000\nVANDERBILT,UNIV,Y4000\nManaging director,ABD,Y4000\nAttorney,\"Peterson,FArris, Eta\",Y4000\nMCKINNEY PERSONNEL INC,,G5250\nPRESIDENT,TOLEDO CHAPTER,B3200\nGREAT WESTERN CONTAINER CO,,A1400\nFILLIP OIL CO,,E1100\nPRINCIPAL,INSURANCE AGENCY OWNER,F3100\nMARQUIP INCORPORATED,,M2300\nowner,Structural Services,Y4000\nVP Construction Management,Equity Residential,F4100\nFOUNDER AND CHAIRMAN EMER,\"GAP, INC.\",G4100\nOWNER,ARK RESTAURANT,G2900\nATTORNEY,\"BRICKLEY, SEARS & SORETT\",K1000\nSales,Tokai International Inc,Y4000\nCHAIRMAN OF THE BOARD,\"NIEMANN FOODS, INC.\",G2400\nINSURANCE BROKER,UNITED SELF INSURED SERVICES,F3100\nsales manager,\"Zhone Technologies, Inc.\",J1200\nConsultant,Dave Property,F4000\nSTATLAND CLINIC,,Y4000\nEXEC. DIR.,PTEI,Y4000\nCDM,,J5200\nGeneral Manager,LAKE BEVERAGE CORP,G2850\nLOBBYIST,\"BROWNSTEIN, HYATT, FARBER, SCHRECK, LL\",K2000\nHUGH RUCKER COMPANY,,F4000\nGENERAL MANAGER,ENVIROTEST SYSTEMS,E2000\nEXECUTIVE DIRECTOR,LONG TERM CARE PHARMACY ALLIANCE/EX,H1750\nTIMOTHY HAAHS & ASSOC INC,,Y4000\nExecutive,Software Management Solutions,C5120\nSALES,I. G. N. ENTERTAINMENT,Y4000\nP & G MH SERVICES,,Y4000\nAIRTEL PLAZA HOTEL,,T9100\nCONSTRUCTION,FRAUENSHUH COMPANIES,F4000\nChief Executive Offi,\"Sanli, Pastore and Hill\",Y4000\nALASKA COMMODITIES INC,,Y4000\nInvestment Manager,Charles Schwab,F2100\nOwner,GM Transportation INC,Y4000\nLOBBYIST,A.A.F.A.,Y4000\nWILSON SONSIAI GOODRICH,,K1000\nOIL & GAS PRODUCER,MONCRIEF OIL,E1120\nADVERTISING,CENTURY MARKETING,G5210\n\"GIOVANNI'S RESTAURANT\",,G2900\nPRESIDENT,CORONA LATINO MEDICAL CARE,H0000\nPRESIDENT,\"BJM CONSTRUCTION, LLC\",B1500\nAttorney,\"Palton Boggs, LLP\",K2000\nOWNER,HART TO HART BEAUTY SALON,Y4000\nCEMAR/PRESIDENT/CEO,,F2000\nPHYSI,VETERANS ADMINISTRATION HOSPI,H2100\nMedical Device Sales,Johnson and Johnson,H4000\nSALES,KY CABINET CORP,Y4000\nNDE LEVEL III INSPEC,T. BAILEY INC.,Y4000\nAMERICAN ASSET MANAGEMENT,,F4200\nManaging Member,Crossraod Ventures Llc,Y4000\nHealthcare Executive,Partners Healthcare,H2000\nOFFICE OF NORMAN M KAPLAN MD,,J7150\nCHAIRMAN,ALLIANCE CAPITAL PARTNERS,F4600\nUS Navy/Retired,,\nPRESIDENT,FABRICATION TECHNOLOGIES,Y4000\nVP Purchasing,Bullet Line Inc,Y4000\nAVCOM,,C5100\nBUSINESSMAN,THE WILLARD GROUP,Y4000\nCEO,BXBS,Y4000\nLNHA,,Y4000\nAttorney,Jaffe Law Offices,K1000\nPHYSCIAN ASSISTANT,PROVIDENT HOSPITAL,H2100\nChief Financial Offi,Nelson Construction,B1500\nGEORGIA HEALTH CARE ASSOC,,H2200\nConsultant,ROADSIDE PARTNERS,Y4000\nREGIONAL VICE PRESIDENT - UK,APACHE CORPORATION,E1110\nCITIZENS-JACKSON CO BANK,,F1100\nChairman,Anadigics,Y4000\nDirector,Lear Corporation,T2200\nBUSINESS ANALY,HITACHI DATA SYSTEMS,C5100\nATTORNEY,MESHBESHER AND SPENCE,K1000\nInsurance Agent,\"Eaton & Berube Insurance Agency, Inc.\",F3100\nSessions Court Judge,Knox County,X3000\nattorney,\"K & L Gates, LLP\",K1000\nRETIRED PHOTOGRAPHER,N/A,J1200\nMARSHACK & SHULMAN LLP,,K1000\nATTORNEY,\"O'MELVENY & MYERS LLP/ATTORNEY\",K1000\nASPECT MANAGEMENT,,Y4000\nBUSI,SELF WORLD WIDE ASSOCIATION IN,Y4000\nFEC PERMISSIBLE,,G6550\nATTORNEY,\"SCOTT HULSE, PC\",Y4000\nCEO,Hansen Industries Corp.,Y4000\nRELIGI,FIRST BAPTIST CHURCH OF PENT,X7000\nWeb Technician,Self employed,G0000\nGLENMARK HOLDING CO,,Y4000\nSUPERIOR OFFICE FURNIT,,G4400\nMANAGING DIRECTOR,VIRIDIAN INVESTMENTS,Y4000\nNATIONAL STUDENT NURSES ASSOC,,H1710\nEngineer,\"Cummins West, Inc\",Y4000\nPHILANTHROPIST,UPTOWN ARTS,Y4000\nExecutive,Self-employed,X4100\nHARDING & OGBORN,,Y4000\npublic relations,Jasculca Terman & assoc,Y4000\nREAL ESTATE ADVISOR,\"HT WEBB, LLC\",F4000\nOCCUPATIONAL SAFETY & H,HALO SAFETY,Y4000\ndoctor,Lumetra,H0000\nCEK REAL ESTATE,,F4000\nPATHOLOGIST,UNIVERSITY OF NEW MEXICO SCHOOL OF MED,Y4000\nInfo,n/a,K2000\nATTORNEY,OHRENSTEIN & BROWN,K1000\nIT OPERATIONS A,BALLY TOTAL FITNESS,Y4000\nStatistician,War Center for Health Stats CDC,Y4000\nINVESTMENT BANKER,BMO CAPITAL MARKETS,F0000\nPARTNER,LEWIS AND MCKENNA,Y4000\nMANNING & NOZICK,,F3100\nVENTURE CAPITAL & DE,SELF-EMPLOYED,F2500\nOwner,Millennium Cosmetic Surgery,H1130\nAttorney,\"Orrick, Herrington and Sutcliffe\",K1200\nGENERAL MANAGER,\"COMMARK, INC\",Y4000\nPresident,Unaiwa Management LLC,J1200\nAcademic Mgr,retired,X1200\nAttorney,Manhattan District,Y4000\nChairman,Volta Oil,E1100\nCEO,CENTRAL MANAGEMENT CO,G5270\nHOLCOMBE FAIR & LANE,,F4000\nPSYCHOLOGIST,BLUEBONNET TRAILS COMMUNITY SERVICES,Y4000\nLawyer,\"Grey and Grey, LLP\",Y4000\nMSR,FIBA/MSR,Y4000\nADMINIST,CENTRAL DIAGNOSTIC IMAGING,Y4000\nExecutive Director,Physicians for Social Responsibility,H1100\nEXECUTIVE,RTA,Y4000\nMETROMEDIA CO.,,C4000\n\"SENIOR VICE PROVOST, RESEARCH\",TEMPLE UNIVERSITY,H5100\nCHEIF CONCEPT OFFI,YUM! BRANDS INC.,G2900\nExecutive,Moleculon Research Corp,J5100\nBOONE & CO,,Y4000\nReal Estate Consulta,Self,Z9500\nAttorney,Ravin Sarasohn Cook,Y4000\nALLIANCE BUILDERS,,Y4000\nHEDGEFUND,ADAR INVESTMENT MGMT,J5100\nBUSINESS,HILCO MERCHANT RESOURCES,Y4000\nBOARD MEMBER,,F1100\nVice President,California Credit Union League,F1300\nAttorney,Coal Cooley Lietz,K1000\nCO-CHAIR OF,FOREST CITY ENTERPRISES,J5100\nRestaurateur,\"Auntie Pasto's\",G2900\nVice President,Garden Communities,Y4000\nUTILITIES OP.,SI GROUP,Y4000\nATTORNEY,STILLMAN & FRIEDMAN P.C.,Z9500\nSKI RESORTS AND HOTE,VAIL RESORTS,T9300\nFederal Prosecutor,DOJ,Y4000\nCAL ST UNIV FRESNO,,H5100\nSALES,OBAGI MEDICAL,Y4000\nLEVIN SIMES AND KAISER LLP,,K1100\nASSOCIATE,CAPITAL ASSOCIATES INC.,K2000\nPRESIDENT & CEO,INTERIM EXECUTIVES,Y4000\nCITY OF BROWNSVILLE,,X3000\nARCHIT,BARKIN ANDRADE ARCHITECTS PC,B4200\nVice President,Saint Joseph Mercy Health System,H2100\nGENERAL MG,GOULD MOTOR TECHNOLOGIES,T2400\nSmall Business Owner,Apply Liberally Enterprises LLC,Y4000\nPRESIDENT,N.C.B. INC./PRESIDENT,Y4000\nATTORNEY,BRANDENBURG PA,Y4000\n\"FARRINGTON, SMALLWOOD & WELLS\",,Y4000\nPresident and Ceo,Scriptpro Llc,Y4000\nCPA,\"Wieland & Company, Inc.\",Y4000\nCivil Engineer,\"Binkley and Barfield, Inc\",Y4000\nSALES MANAGER,MCGHEE OFFICE SUPPLY,Y4000\nATTORNEY,B.G.R. GOVERNMENT AFFAIRS L.L.C.,K2000\nSEI CORPORATION,,C5120\nMARINE TRANSPORTATION,APC,T0000\nPRESIDE,DYNAMIC GUNVER TECHNOLOGIES,J1200\nC B R CEMENT CORPORATION,,B5100\nPLACENTIA ORCHARD CO,,A1400\nPHYSICIAN,CNY EYE CARE,Y4000\nAdministrative Asst.,Information Requested,G0000\nPublic Affairs Representative,\"Heather Podesta + Partners, LLC\",K2000\nVP Finance,Hearst-Argyle Television,C2300\nINFO REQUESTED,Filener Investments Llc,Y4000\nPresident,Superior Windows,M7200\nDIRECTOR,ILLINOIS HOSPITAL ASSOCIATION,H2100\nATTORNEY,MAGEE AND ADLER,Y4000\nREAL ESTATE BRO,SWAFFORD PROPERTIES,F4000\nEXB2ESG EXECUTIVE LEVEL B2,HALLIBURTON & ASSOC COMPANIES,E1150\nREGIONAL DIR,US SENATOR KEN SALAZAR,X3000\nTitle Insurance Prof,Lawyers Title Insurance Corporation,F4300\nBEATHAN INDUSTRIES INC,,M1600\nRETIRED,ARKANSAS PUBLIC SCHOOLS,X3500\nREALTOR,CAMPBELL & ROSEMARY R.E.,Y4000\nOFFICE MANAGER,DR. WILLIAM MCLEISH,Y4000\nNatural Resource Specialist/ President,Usda Forest Service,X3000\nINSURANCE AGENT,\"TRANSPORTATION INSURANCE SERVICES,/\",J6200\nJET SERVICE ENTERPRISES INC.,,Y4000\n\"JAMES F. HUMPHREYS & ASSOCIATES, L.\",,K1000\nLAWYER,LPL FINANCIAL LLC,F2100\nOwner,\"Cavender's Western Wear\",Y4000\nSALES AND MARKETING,SELF-EMPLOYED,G5280\nBLEKOALH,,J7400\nSALES EXEC,\"WEATHER CENTRAL, INC.\",C2100\nPharmucetical Sales,Glaxo Smith Kline,H4300\nRETIRED,AIR FORCE COLONEL,X1200\n\"President's Interage\",Council on Women,J7400\nConsultant,\"Colex and Associates, Inc\",K2000\nVP Community Development,Keiser College,H5200\nSales,UBS Financial,F2100\nAUTO DEALERSHIP OWNER,MOUNTAIN VALLEY MOTORS INC,T2300\nGATEWAY PROPERTIES,,F4000\nGovernment Relations Worldwide,Omnia,Y4000\nAttorney,\"Watt, Beckworth, Thompson & Hennem\",K1000\nPARTNER,NIXON PEABODY LLP/PARTNER,K1000\nPARTNER,TRILLIUM GROUP,Y4000\nSTUDENT,,A2300\nattorney/State Repre,self/State of Texas,X3000\nSTARR LUMBER CO,,B5200\nPRESIDENT,ASRC CONSTRUCTION HOLDING LLC,B1500\nBusinessman,RA Glancy & Sons,Y4000\nTAYLOR ELECTRIC COMPANY,,Y4000\nPARTNER,\"CHAFFE MCCALL, LLP\",B0500\nSALES,GALT AMERICA,Y4000\nATTORNEY,CONNER RILEY FRIEDMAN & WEICHLER/AT,K1000\nDEVELOPER,\"KEYSTONE COMMUNITIES, L.L.C.\",B2000\nARTS LOBBYIST,AMERICANS FOR THE ARTS,X4000\nEXECUTIVE,U.S. DEPT. HOMELAND SECURITY,Y4000\nQSR,Fennell Management Inc,G2900\nENGINEER,ILSI ENGINEERING,B4400\nteacher,Chavez High School,Y4000\nOwner,Alexandria Manor,Y4000\nCHEMIST/INFORMATION,\"AMERICAN CHEMICAL SOCIETY, CAS\",M1000\nFAPS  Inc,,T2200\nAssistant to the Pre,ATC Leasing Company,T3100\nARCHITEC,\"FELIX PARDO & ASSOC., INC.\",Y4000\nKELLY & LYTTON,,K1000\nFOREST COMMUNITIES,,Y4000\nHI-SEVEN CO,,Y4000\nPhysician,Midwestern Cardiac Surgery,H1130\nMAGNOLIA COLA BOTTLING COMPANY INC.,,Y4000\nPRESIDENT AND EXECUTIVE DIRECTOR,FORTHCOMING FUND,J7400\nEXECUTIVE DI,HOOSIER ONCOLOGY GROUP,H1130\nATTORNEY,MARLER & CLARK,K1000\nHEMATOLOGY ACCNT.,BAYER HEALTHCARE,H4000\nPROFESSOR,UNIVERSITY OF NORTHERN COLORADO,H5100\nBANKONE,,J1200\nInformation Requeste,Illinois Credit Union System,F1300\nCHARTER BOAT CAPTAIN,SELF EMPLOYED,T6200\nUNIVERSAL INVESTORS,,F4100\nOWNER,\"GRAHAM BROS. CONSTRUCTION COMPANY,\",B1500\nWINSTON & STRAWR,,K1000\nSPEECH LANGUAGE PATHOLOGY,INDIANA UNIVERSITY BLOOMINGTON,H1700\nBroker,\"Kiel Mortgage, Inc.\",F4600\nHOLAND & KNIGHT,,K1000\nMANAGEMENT CONSULTANT,CONSULTING PARTNERS,Y4000\nCARBALLO & SCHIER P C,,Y4000\nSBTIL GLOBAL,MANAGING PARTNER,Z9500\nChief Executive Officer,\"Pyramid Advisors, LLC\",T9100\nEXECUTIVE,REO REAL WORLD,Y4000\nA & W FURNITURE INC/PRESIDENT/OWNER,,Y4000\nPRESIDENT,MCGARR CAPITAL MANAGEMENT,Z9500\nELECTRIC FUELS CORP,,E1000\nCIVIC LEADER,SELF-EMPLOYED,Y1000\nGENERAL COUNSEL,PFIZER INC.,J5100\nASSISTANT DEPUTY SEC,NM DOT,X3000\nREAL ESTATE BROKER,DIRECT SELL INC,Y4000\nEngineer,WMA,Y4000\nVENTURE INVESTMENTS INC,,Y4000\nCALLAHAN & RILEY,,K1000\nPRESIDENT,\"P-R FARMS, INC.\",G2500\nGovernment Relations,Fabiani and Company,K2000\nBENVENUE LABORATORIES,,Y4000\nPROPERTY MANAGER,EREMONT BUILDING CO.,Y4000\nTRENCHLESS TECH INC,,B1000\nSenior Account Executive,Fiserv Inc,F1000\nINSTRUCTOR,NANDI YOGA/INSTRUCTOR,Y4000\nAttorney,Forde LTD,Y4000\nVICE-PRESIDENT,P CHIMENTO COMPANY,Y4000\nDENTIST,BRIGHT SMILE DENTAL PC,Y4000\nDirector Fleet Opera,Safety-Kleen,E3000\nCHIEF OPERATIN,CUSTOM FOOD PRODUCTS,Y4000\nBUSINESS DEVELO,ALPHA BETA PLANNING,Y4000\nELECTRO-RENTS CORP,,J5100\nFINANCE ANALYST,JOHNS HOPKINS,H5100\nASSOCIATE,MALCOLM PIMIE,Y4000\nVP,WORKPLACE SERVICES,Y4000\nCounselor,Mont. Co. Education,Y4000\nCEO,HUGHES ESTATE SALES  INC,Y4000\nSr. Vice President,\"Brookdale Senior Living, Inc.\",H2200\nSALES ESTIMA,GREEN EARTH MECHANICAL,Y4000\nROBERT MARTIN COMPANY,,Y4000\nHAIG-HAIG STUCCO,,Y4000\nCFO,THE COLLEGEBOUND NETWORK,H5300\nCONSTANTINOPLE & VALLONE CONSULTING,,K1000\nVP - BUSINESS DEVELOPMENT,PEOPLES HEALTH NETWORK,H2100\nDEEP CREEK RANCH,SELF,Z9500\n\"COOLIDGE, WALL, WOMSLEY &\",,K1000\n\"RETIRED CHAIRMAN & CEO, MCD\",RETIRED,X1200\nPHYSICIAN,WEST READING RADIOLOGY ASSOCIATES,Z9500\nCONSTRUCTI,PAUL MILLAR & ASSOCIATES,J1100\nMULTI-FAMILY HOUSING,SELF/WAHOO ENTERPRISES INC.,Y4000\nEXECUTIVE,SUTTER HOME WINERY,G2820\nLibrarian,University of Michigon,H5100\n\"President, BIG Investment Services\",BIG Investment Services,F7000\nHARVEY JACOBSON AND GLAGO,,Y4000\nNURSE ANESTHISIST,SELF,H1130\nInformation Requeste,Standard Mangement Group,Y4000\nTONER CORP,,Y4000\nCo-Owner,Underwater Construction,B1500\nPresident & CEO,PSH Acquisition Corp,Y4000\nMANSOUR DEVELOPMENTS,,Y4000\nATTORNEY,THORSNES BARTOLOTTA ET AL.,K1000\nPresident & CEO,\"Plum Creek Timber Company, Inc.\",A5000\nEXECUTIVE,PAUL J. MARTIN ENTERPRISES,Y4000\nACTOR,WALT DISNEY WORLD,C2000\nInformation Requeste,Hurd Enterprises,E1100\nPHYSI,AMITE COUNTY MEDICAL SERVICES,H1100\nPHYSICIAN,\"MONTGOMERY SPINE CENTER, P.C.\",H1000\nVP,REED ELSIVER,C1100\nWILSON BROCK IRBY,,Y4000\nFOREIGN SERVICE OFFI,DEPARTMENT OF STATE,X3000\nPhysician,DHAT,Y4000\nAttorney,Lieff Cabraser Heimann & Bernstein,J1200\nCO-OWNER,CHAMBERS DUNHILL & RUBIN,F2100\nSHIPPERS STEVEDORING,,T6200\nA D MOYER LBR CO,,B5200\nRADIOLOGIST,DIVERSIFIED RADIOLOGY OF COLORADO,Z9500\nDEVELOPER,SIERRA MILLS LLC,Y4000\nPRESIDENT AND CEO,MEMORIAL HOSPITAL,H2100\nOFFICER,SERVICE ASSURANCE,Y4000\nMerger Advisor,J.E.G.I.,Y4000\nBURDISA LLC,,Y4000\nOWNER,BION ENVIRONMENTAL TECH SERVICES,Y4000\nProgrammer,Nvidia,Y4000\nExecutive,Avetec,Y4000\nPHYSICIAN,\"COLUMBUS PATHOLOGY, P.C.\",H1130\nMANAGEMENT,FOSTER FARMS,A2300\nPRESIDENT,AMERICAN HOMECARE SUPPLY,H3100\nCOMPURTER PROGRAMMER,TANGO-NETWORKS,Y4000\nattorney,\"Coffman, DeFries & Northern\",K1000\nONCOLOGIST,WOMGI,Y4000\nDecoratic Wall Finisher,Michael Studios,Y4000\nSUPERCUTS,,Y4000\nV.P. FEDERA,DIRECT MARKETING ASSOC.,G5220\nexecutive,\"Bill Smith, Inc.\",G4400\nTV ASSOCIATES DIRECTOR,,C2100\nRECONSTRUCTIVE MICRO SURGERY,,H1130\nRETIRED,,H3000\nSales,Chateau Mombette,Y4000\nCEO,Electric Co-OP,E1610\nIRON BRIDGE CONST,,B1000\nVice President,Kindred Health Care,H2100\nPACIFIC PLUMBING SUPPLY,,B5300\nSYSTEMS MANAGER,HANCOCK REGIONAL HOSPITAL,H2100\nAddiction Psychiatrist,Psychiatric Medicine Associates,H1110\nLEHMANN BROTHERS,,F2100\nSMALL  BUSINESS OWNER,CAMP JAMES CAMPGROUND,Y4000\nENGINEERING D,JOY TECHNOLOGIES INC.,E1240\nJP CULLEN/OWNER/RETIRED,,B1000\nUS CONGRESS CAMPAIGN STAF,SEDONA STAFFING,G5250\nPeabody Collge,Eductor,J1200\nFood Wholesaler,\"Squash, Inc.\",Y4000\nMARATHON PETROLEUM COMPANY,,E1100\nAttorney,CHARLES S KNOTHE P A,Y4000\nFOURTH PRESBYTERIAN CHURCH,,X7000\nEXEC.,WHITE FLOWER FARM,A8000\nENGINEER,MAINSTREAM ENGINEERING,B4400\nOwner,Rqc Inc.,Y4000\n\"PROJ DIR, ENGINEERING BETTER READERS\",BACHNER COMMUNICATIONS,Y4000\nCPA,\"McGladrey & Pullen, LLP\",Y4000\nRESEARCH FELLOW,PFIZER INC,H4300\nExecutive Secretary,Crestline Hotels & Resorts,T9100\nSELF-EMPLOYED/ACCOUNTANT/INVESTIGAT,,F5100\nPRESIDENT,HUIE INSURANCE,F3000\nW I SIMINSON INC,,T2310\nCHAIRPERSON,COILHOSE PNEUMATICS,Y4000\nTeacher,\"Notre Dame High School, Belmont\",Y4000\nAttorney,UHG,H3700\nPRESIDENT,NEWSTAR INTERNATIONAL TRADING INC.,Y4000\nproperty manager,Gibbs Properties,F4000\nReal Estate,McGurn Enterprises,J1200\nSTATE GOVERNMENT/CAB,STATE OF NEW MEXICO,X3000\nLAS VARAS RANCH,,A1400\nManager For Entertainment,JOHN ROBERT POWERS ENTERTAINMENT,Y4000\nPartner,\"Mindell, Malin, Kutinsky, Stone & Blat\",Y4000\nREALTOR,SMITH PROPERTIES,J9000\nW F LINKE & CO INC,,Y4000\nCHAIRMAN,IMC INC,G5270\nGMCUA,,Y4000\nPHYSICIA,PHOENIX MEDICAL ASSOCIATES,H1100\nmedia executive,salon.com,C5140\nCHAIRMAN/C.E.O,OWENS CORNING,B5400\nChief Executive Offi,San Clemente Hospital & Med.,H2100\nDANIEL JOHNSON DDS,,H1400\nPHYSI,EMERGENCY MEDICINE PHYSICIANS,H1100\nPhysician - Public Health,Texas Department of State Health Servi,X3000\nOwner,Kevin Gros Offshore,Y4000\nGOVERNMENT AFFAIRS,DUBERSTEIN GROUP,J2100\nPublisher,Mensch Makers Press,Y4000\nPORCARO BLANKENSHIP,,Y4000\nOWNER,ARROW LAUNCH SVC.,Y4000\nHEATING COOLING CONTRACT,,Y4000\nMANAGER,CLEAR CHOICE HEALTH CARE,H3100\nGovernmental Affairs,McWilliams & Associates,K1000\nATV MUSIC PUBLISHING,SONY,C2600\nTeacher,Plattsburgh City School District,X3500\nDAVIS POLK & WARDWELL,LAWYER,J7400\nBRIDGESTONE/FIRESTONE INC./EVP & PR,,M1500\nPresident,Mills Electric,B3200\nPartner,\"Dunmore Homes, LLC\",B2000\nAR TV NEWS,,Y4000\nMULT FUNC ENGRG & SCI DIR,Lockheed Martin,D2000\nCONSULTANT,EDINGTON & PEEL,K2000\nENGINEER,U.S. NAVY,Y4000\nFT BENNING ARMY BASE,,Y4000\nOIL FIELD HAULIN,\"JOE T. SMITH, INC.\",J1100\nPRESIDENT,\"FOAM FABRICATORS, INC.\",M8000\nSALES,HOUSE OF RAEFORD,Y4000\nSVP & GENERAL COUNSEL-OPS&SNC,SOUTHERN COMPANY SERVICES/SVP & GEN,E1620\nVice-President,Florida Crystals Corp.,A1200\nN/A/RETIRED PROPERTY MANAGER,,X1200\nBROWNSTREET FURNITURE,,Y4000\nVENTURE CAPITALIS,STERLING PARTNERS,J5100\nProfessor of Pediatrics,Albert Einstein College of Medicine,H5150\nMANAGER,KENNELL CONSTRUCTION CORP.,B1500\nGOVERNMENT,\"OGILVY GOV'T. RELATIONS\",K2000\nOWNER,BYRON@BYRONFINANCIALGROUP.COM,G0000\nBUILDER,PRITCHARD CONSTRUCTION,B1500\nREICHERT FARMS,,Y4000\nALEXANDER UNION TRADING,,Y4000\nMortgage Banker,Interactive Mortgage Advisor LLC,F4600\nOWNER,\"BETTY'S BATH\",Y4000\nMANAGING PARTNER,WILLIAMSON HERALD,Y4000\n\"RADER, SMITH, CAMPBELL & FISHER\",,Y4000\n\"MERRILL, LYNCH\",,F2100\nCONTRACTOR,HOWARD VARNER,J6200\nLawyer,Herbert Smith,Y4000\nACCOUNATBLE EMPLOYEE,ANIMAS CORP,Y4000\nCEO,Lakewood Ranch Medical Center,H2100\nENGINE,FACTSET RESEARCH CORPORATION,Y4000\nattorney,The Bell Group,J1200\nRetired,Lehbros Limited,F4200\nPERIODONTIST/ORTHODONTIST,DARWIN W ENGEN DDS PS,H1400\nMBB,NCR,C5100\nProfessor/Artist,NYSCC,Z9500\nVideo Producer,(Self),C2300\nEXECUTIVE,UT-BATELLE,Y4000\nSALES REPRESENTATIVE,PEAK BROADCASTING,C2000\nDOR-WIN MANUFACTURING,,M0000\nFISHERMA,ALASKA SCALLOP ASSOCIATION,Y4000\nBoard Director,Pinnacle West Capital Corporation,E1600\nManager,Efco,Y4000\nCONTRACT CFO,CFO RESOURCES INC.,Y4000\n\"PROMINA WINDY HILLS ER'S\",,Y4000\nSecurity Company Owner/Officer,\"SWEETWATER SECURITY CAPITAL, L.L.C.\",G5290\nPresident,Midwest Wind Energy LLC,E1500\nCHAIRMAN,CASPER SURGICAL CENTER,Y4000\nATTORNE,\"COWARD, HICKS & SILER, P.A.\",K1000\nVideosurf,,Y4000\nOwner,James R Ayers CPA,F5100\nTreasurer,Belden Inc.,Y4000\nCONSULTANT,YAHOO,J5000\nOWNER,KHM HOLDINGS LLC,Y4000\nCHAPEL HILL MGT,,Y4000\nHEITMAN FINANCIAL,,F4600\nAcoustic Engineer,Michael Minor & Associates,Y4000\nGORDON & REES,NOT EMPLOYED,Z9500\nOWNER,HEART OF AMERICA GROUP,J1200\nPRESIDENT,KNOX COLLEGE,H5100\nDANIEL DODSON INC,,Y4000\n\"VP, Customer & Enterprise Sltns\",Xcel Energy,E1620\nACCOUNT EXECUTIVE,CITIBANK,F1100\nPhysician,\"CARDIOVASCULAR SPECIALISTS, P.A.\",H1130\nDiagnostic Radiologist,\"Moran, Rowen & Dorsey\",H1130\nCONVENTION SALES,,Y4000\nRETIRED MILITARY,SELF EMPLOYED,X1200\nSCHWAB PINES,,Y4000\nOwner,Rockwell Transportation Co.,J7150\nWESTERN PACIFIC ROOFING CORP,,B3000\nBELL ELECTRONICS CONTRACTORS,,B3200\nElectronics Technician,BAE Systems,D8000\nINVESTOR,SNOW PHILLIPS,F5000\nLawyer,Bullivant Houser Bailey,K1000\nOWNER,KELLY PROPERTIES,F4000\nPOLITICAL OPERATIVE,SELF-EMPLOYED,G0000\nGALLON & TAKACS LPA,,Y4000\nPRESIDENT,YOU SOUKASEUM FARM,A1000\nEPPLER-GUERING INC,,F2100\nATTORNEY,CAROL CRABTREE DONOVAN  PC,Z9500\nPRODUCER,\"M.J. THEATRICAL, INC.\",Y4000\nHEARTLAND SAVINGS BANK,,F1200\nSVP AND GENERAL COUNSEL,\"PNM RESOURCES, INC.\",Y4000\nChairman & CEO,Pepco,G1100\nAnalysr=T,NIH,X3000\nARANGO CIGAR,,A1300\nOWNER,ADMIRAL INDUSTRIES INC.,Y4000\nForensic Psychophysiologist,Self-Employed,Y4000\nTWO RIVERS CARDIOLOGY,,H1130\nPRESIDEN,FOREVER YOUNG IMAGE CENTER,Y4000\nAutomobile Dealer,SELF-EMPLOYED,T2300\nBI CON SERVICES,,B1000\nYAWITZ & ASSOC.,,K1000\nSUMMERTOWN EQUIP SALES,,Y4000\nHomemaker,Self employed,F2600\nEXECUTIVE,CLY-DEL MFG. COMPANY,M5000\n2ND REQUEST,AT&T COMMUNICATIONS,LC100\nGOVERNMENT ACCOUNT M,UNITED RENTALS INC.,G5300\nCHURCHILL CAPITAL,,F0000\nAttorney at Law,\"Mccloskey, Mina, Cunniff & Dilworth, L\",K1000\nCELESTIAL WELLING SYSTEMS,,Y4000\nProcess Service,G & Q Processing Service Inc.,Y4000\nSIDLEY AUSTIN ET AL,,K1000\nRETIRED,CUESTA COLLEGE,H5100\nRAG AMERICAN COAL HOLDING INC,,E1200\nVANGUARD FINANCIAL COMPANY,,F4600\nREAL ESTATE,SLJ COMPANY,F4000\nPUBLISHER,\"STRING LETTER PUBLISHING, INC.\",C1100\nGODDARD FOR GOVERNOR,,Y4000\nDIVISION SUPERVISOR,\"WINCO HOLDINGS, INC.\",G2400\nEXECUTIVE,AMERICAN SAVINGS BANK,F1200\nCEO,WESTMARK HOMES,B2000\nSr. VP St. Regulator,SBC,C4100\nInvestor,\"INCYTE CAPITAL, L.L.C.\",F2100\nUS GAO,,Y4000\nPROFESSOR,CSU SACRAMENTO,J7400\nCommunity Affairs Di,Fox 6 / UPN 13,J1100\nEXECUTIVE,LAGARDERE UNLIMITED,Y4000\nCONSULTANT,TRUCKING ASSOCIATION,T3100\nPresident,World Affairs Council of N CA,Y4000\nCEO,Schnitzer Steel,M2100\nOWNER,WESTCENTER BENEFITS INC.,F4500\nPresident,K & K Farms,G1200\nCPA,Tcba,F5100\nBLONDE FARMS,,G1200\nCarpet Retailer,\"Carpet King, Ltd.\",G4400\nJ ALLEN & ASSOC,,Y4000\nPARALEGAL,ROBINS KAPLAN,K1000\nTRI ENDA CORPORATION,,Y4000\nFUNDRAISING,SELF,G5200\nPRESIDENT,\"INDUSTRIAL FABRICS, INC.\",M8000\nPresident,\"Advanced Sports, Inc.\",J9000\nCONSULTANT,ACME COMPUTING,Y4000\nAttorney,\"Ellis, Hooper, Warlick & Morga\",K1000\nCommercial RE Developer /Manager,Self employed,F4100\nACCOUNTANT,MADIAS BROTHERS,Y4000\nhealth policy consultant,Not employed,G5200\nHANDY PROPERTIES,,F4000\nBLUE CROSS BLUESHIELD,,J5100\nRETIRED,AIR COURIERS,Y4000\nAttorney,Wachtell Lipton Rosen,K1200\nCEO,Dock Hardware,Y4000\nMORTGAGE BANKER,TDI,F4600\nGUIDANCE COUNSELOR,,H5000\nTIMECORP FINANCIAL,,F0000\n\"SVP, MODULE CENTERS & OPS\",PRATT & WHITNEY,D2000\nVisiting Professor o,Georgetown,Y4000\nKOEPPEL MARTONE LEISTMAN ET AL,,K1000\nAttorney,Linn and Avisa,K1000\nPHYSI,SOUTHERN PATHOLOGY ASSOC.P.C.,J7400\nCOMPONENT ASSEMBLY SYSTEMS,,B3000\nENGINEER,USN,Z9500\nPRESIDENT,BP AMOCO,M1000\nEDITOR/WRITER,M.V. TIMES,C1100\nAttorney,Middletown Township Law Firm,K1000\nGREEN EARTH TECHNOLOGY,,Y4000\nRETIRED GARBAGE MAN,SELF,X1200\nHOTELS,MAGNOLIA HOTELS/HOTELS,T9100\nREGIONAL SALES REP,POOLSURE,F4500\nREAL ESTATE INVESTOR,RUBICON REAL ESTATE LLC,Z9500\nColumbia University Medical Center,,H2100\nPresident,\"Fowler Communications, Inc\",J1200\nBUSINESS OWNER,NORTHWEST MUTUAL,F3100\nWESRAY-HARDING SERVICE CORPORATION,,F5000\nOWNER,REAM & HAAGER LABORATORY,E1210\nAdministrator,Saint Johns University,H5100\nUS Military,US Military,X5000\nHSE PARTNERS IN,,Y4000\n\"Ridgewood Financial Institute, Inc\",,F0000\nATTORNEY,GUTENBERG TREURING,Y4000\nMONMOUTH MED CTR,,H2100\nBREEDER/TRAINER/JUDGE,TREPTOW QUARTER HORSES,A3500\n,VPI AND STATE UNIVERSITY LIBRARIES,H5100\nANESTHESIOLOGIST,AP LTD,H1130\nEducator,Thorsos-Science Links,Y4000\nHousehold Executive,Sefl,Y4000\nPRESIDENT,PLASTIC PROCESSORS INC.,M1500\nHealth Operations,C.I.G.N.A,F3200\nPRESIDENT,INTERNATIONAL REPUBLICAN INSTITUTE,J1100\nRetired,Space Cntr Automotive of CL,Y4000\nHotel Management,Hospitality Lodging South,Y4000\nV.P. - Public Relati,Warren Hospital,H2100\nEVP,EDELMAN,G5210\nProgrammer/Analyst,QuadraMed,J7400\nHOMEMAKER,Self,K2000\nALAN R KRETZER CO,,Y4000\nOWNER,JCK CUSTOM EMBROIDERY,Y4000\nCEO,MORGAN TIRE AUTOMOTIVE INC.,F1100\nMETEOROLOGIST,\"US  DEPT OF COMMERCE/NAT'L WEATHER SVC\",J1200\nLAWYER,BRACEWELL & PATTERSON,K2000\nAudiologist,\"Carey Audiology Associates, PLLC\",H1700\nGARBAN LLC,,Y4000\nConsultant,\"American Healthways, Inc\",H3000\nHARTSELLE ENQUIRER,,C1100\nN.A./RETIRED/RETIRED,,Z9500\nCONSTRUCTION MANAGE,BORTUNCO BORING,B1000\nDESIGN ORGANIZATION,,Y4000\nAttorney,Delnegro Feldman,Y4000\nFRMR CFO THE GARRETT CORP,RETIRED,X1200\nCOMMERCIAL REAL ESTATE BROKER,MID AMERICA R. E. CORP.,Y4000\ninvestments,self,J1100\nHOEGEN HOEGEN AND KELLEY LLP,,Y4000\nMERCANTILE BANK OF KC,,F1100\nMATERIAL VENTURES,,Y4000\nRUSING & LOPEZ,,K1000\nWEICHART REALTY,,F4200\nSENIOR WASHINGTON REP,EPRI,E1300\nATTORNEY AT LAW,,F4500\nRetired,S M Bradford co,Y4000\nManager,\"Blessey Marine Service, Inc.\",T6200\nOwner,Cumberland Resources,E1200\nREAL ESTATE EXECUTIVE,RITCHIE ASSOCIATES,Y4000\nATTORNEY,KLENGERG KAPLAN,Y4000\nINSURANCE AGENT,ALL RISK INSURANCE & TAGS/INSURANCE,F3100\nPARTNER,CONWAY MINING CO.,E1210\nECONOMIST,US DEPT OF TREASURY,X3000\nROGERS TOWNSEND &,,Y4000\nInformation Requeste,Govt,X3000\nDENTIST,THE WOODLANDS DENTAL GROUP,H1400\nCommodidty Trader/Ps,Self-Employed,F2200\nSMALL BUSINESS OWNER,STARLINE INC,M2200\nTHEISEN MOTORS INC,,T2300\nTEACHERS,BB&N SCHOOL,Y4000\nAUTOMATION SPECIALIST,ELECTRIC SUPPLY & EQUIPMENT CO INC,B5500\nWEG,,\nattorney,Espirtu and Associates,J1200\nFLAVORIST,CONAGRA,G2100\nHELLER HOROWITZ & FEIT,,K1000\nCOUNCIL FOR OPPORTUNITY IN EDUCATIO,,X4000\nINTL LEGAL CONSULTANT,,\nVIATNER,,Y4000\nMORTON GRINDING COMPA,SELF-EMPLOYED,Y4000\nOWNER & PRESIDENT,\"ORTRAN, INC.\",T3100\nACCOUNTANT / CPA,SNYDER & CLEMENTE,F5100\nNot employed,,G5000\nAttorney,Akin & Group,J7400\nLEGISLATIVE AIDE,COMMONWEALTH OF PA,X3000\nDENTIST,\"WATTS DENTAL ASSOCIATES, PC.\",Y4000\nPRESIDENT & DIRECTOR,CHASE INVESTMENT COUNSEL,J1100\nAttorney,Lubnau & Bailey PC,K1000\n,\"COLDWELL BANKER D'ANN HARPER REALT\",F4200\nCommercial Sales Executive,\"Akeena Solar, Inc\",E1500\nCITIZES BANK,,F1100\nPARTNER,FLEISCHMAN AND WALSH LLP,K2000\nOFFICER,AMERICAN SAVINGS BANK,F1100\nENTERTAINMENT & MERCHANDISING,SELF-EMPLOYED,Y4000\nPHARMACIST,ACE DRUG,Y4000\nPRESI,FIRST AMERICAN TITLE INSURANC,F4300\nCHIEF EXECUTIVE OFFICER,PALMETTO HEALTH,H2100\nCHIEF OPERATING OFFICER,GREENBERG TRAURIG,K1200\nHOLLAND KNIGHT POTTER & MCCL,,K1000\nEXECUTIVE ASSISTANT,CORPORATION,Y4000\nMANAGER,LANDMARK EXCHANGE MANAGEMENT,Y4000\nSALES MANAGER,AAA,T9400\nTHE SPRINT COMPANIES,,C4200\nFinancial Director,Billy J Sanders Inc.,Y4000\nMEMBER,\"MANUEL'S TRANSPORTATION LLC\",Y4000\nBUILDER,\"TARKKA HOMES, INC.\",B2000\nAssoc. General Couns,Fannie Mae,F4600\nSMALL BUSINESS OWNER,KTL ASSOCIATES INC.,Y4000\nFRONTIER EQT CO,,Y4000\nATTORNEY,\"RUDMAN WINCHELL, LLC\",Y4000\nBROACASTOR,PAPPAS TELECASTING,C2100\nVice President,\"Standard & Poor's\",F5500\nRETIRED-PART TIME WINE CONSULT,SELF,J1100\nGeophysics/Seismic E,Self-Employed,Y4000\nSENIOR CON,MICHAEL CHASE ASSOCIATES,K2000\nHEAD OF ACQUIRER PROCESSING,VISA INC.,F1400\nPRESIDENT,BURKE POWERS & HARTY INC.,F3100\nAttorney,\"Rackspace US, Inc\",Y4000\nEXECU,OK MUNICIPAL CONTRACTORS ASSN,Y4000\nPrivacy consultant,Jefferson Data Strategies,Y4000\nAttorney,Ritzert and Leyton,K1000\nEMERITUS PROFESSOR,CENTRAL WASH UNIV,H5100\nHEALTHCCARE,SOLORA HEALTHCARE/HEALTHCCARE,Y4000\nBOOKKEEPER,PLANNING ASSOCIATES,Y4000\nSystems Analyst,UAMS,H5150\nTEACHER,SANTA ROSA JR. COLLEGE,H5100\nCOILIENE TURLEY MARTIN TUCKER,,Y4000\nFamily Physician,Presbyterian Healthcare Services,H1100\nMANCHESTER CITY SCHO,SUPERINTENDENT,Y4000\nPresident,Coastal Air Products Inc.,Y4000\nPR,AMERICAN FUNDS DISTRIBUTORS INC.,F2100\nCHAIRMAN,COLE TAYLOR BANK/CHAIRMAN,F1100\nN & M CONSTRUCTION,,B1000\nSPUD MANAGEMENT CO.,,Y4000\nTERRACE TRUST,,J1200\nDefense Analyst,Booz Allen Hamilton,Z9500\nJOHNS HOPKINS BAYVIEW MED,,H2100\nPRN ASSOCIATES,,Y4000\nArchitectu,Craig Roberts Associates,B4200\nBUSINESS ADVOCACY,LA BUSINESS COUNCIL,Y4000\npresident,Resource Management,Y4000\nOWNER,K & J MACHINE INC.,M5000\nPRUDENTIAL CROSBY-ADELMAN,,F4200\nReal Estate,J. May & Associates,Y4000\nNEWTON ELECTRIC,,B3200\nEmeritus Physics Professor,University of Michigan,H5100\nCOMMUNITY VOLUNTEER,BARTON FOUNDATION,Y4000\nBENSON & ASSOCIATES,,J7400\nWEB DESIGNER,AJ MILLER RESEARCH,Y4000\n\"SVP, CORPORATE REAL ESTATE\",CAPITAL ONE,F1400\nAttorney,National Resources Defense Council,JE300\nBUSINESS,KRS EQUITIES LLC,Y4000\nDESIGNER,\"QUALCOMM, INC\",C4300\nPHYISICIAN,CAROLINAS HEALTHCARE,H2000\nCEO,PRINCIPAL FINANCIAL,F0000\nIT,JPMorganChase,F1100\nUTILITIES DIRECTOR,CITY OF LEESBURG,E1600\nSERVICE,Self employed,G0000\nJournalist Teacher,Self employed,Y4000\nCHAMPION ROLLER,,Y4000\nAccountant,Milbank Winthrop & Co,F2100\nartist,R!ot,J1200\nSR CONSULTANT,VERIZON,C4100\nRealtor,\"Robert Loepfe, Inc\",F4200\nLAND DEVELOPER,T. A. FORSBERG INC.,Y4000\nSHAMBAUGH & SON INC,,B3200\nAttorney,\"HOWREY SIMON ARNOLD & WHITE, LLP\",K1000\nPresident,Kodiak Jacks,Y4000\nAttorney,Mackenzie Hughes,K1000\nSTATE REPRESENTATIVE,COMM. OF MASS,X3000\nNational Baseball Hall of Fame and,,Y4000\nEducator/teacher,NY City Dept of Education,Y4000\nANESTHESIA ASSOCIATES OF HOLLY,,H1130\nGRANT MAKER,IGNITE PHILANTHROPY ADVISORS,Y4000\nPRESIDENT,PERSIMMONY,Y4000\nMACDONALDS CANDY CO,,G0000\nTeacher,Greenville County School Board,Y4000\nCEO,Dickow & Associates,K1000\nGRADISAR TRAICHTE RIPPERGER,,Y4000\n\"BG North America, LLC\",,J1200\nYELLOW DOOR,,Y4000\nMortgage Banker,Quicken Loans,F1000\nDirector of Operatio,Orincon Hawaii Inc.,D3000\nVELLEY BROS HARDWARE COR,,G4500\nChf Trdmk/Assistant,Wyeth,H4300\nCRAWFORD-LUNDBERG XRAY,,Y4000\nACCOUNT EXECUTIVE,NETECH,Y4000\nFINANCE DIRECTOR,VAL DEMINGS FOR CONGRESS,J1200\nAssistant Sec./Tres.,(mail returned 4-99),Y4000\nMILLARD SCHOOLS,,X3500\nMITSUI NEVITT CAPITAL,,F1400\nBuilder Member,HBA of Greater Dallas,B2000\nINFO REQUESTED PER BEST EFFORTS,INFO REQUESTED PER BEST EFFORTS,Y2000\nEXE,GENESEE BIOMEDICAL INCORPORATED,H0000\nEngineer,Navy,Y4000\nUniv. Professor,Murray State Univ.,H5100\nBUSINESS OWNER,HILL COUNTRY STAFFING,Y4000\nMVP SERVICE CORP/EVP ROCHESTER/GOVE,,F3200\nROC COMMUNITIES INC,,Y4000\nAttorney,Bruntrager & Billings,Y4000\nVP,TIOGA PIPE SUPPLY,Y4000\nDIRECTOR,ATHENA HEALTH CARE,H0000\n\"MAAS, RAO, TAYLOR & ASSOC\",,Y4000\npresident,Florida Assoc. of Broadcasters,C2100\nCUSTOM HOME BUILDER,RICHARDSON HOMES L.L.C.,B2000\nDIRECTOR OF GOVERNMENT RELATIONS,NAB,C2100\nCONSULTANT,EMERALD SPRING CONSULTANT L.L.C.,Y4000\nREAL ESTATE INVEST,ATHENA GROUP LLC,F4000\nRESTUANT MGR.,SELF EMPLOYED,G2900\nTASCO/BUSINESS EXECUTIVE/BUSINESS E,,J7400\nOWNER,DOUBLE CREEK RANCH,Y4000\nCFO,ROONEY HOLDINGS INC.,B1000\nMANAGEMENT CONSULTANT,BEACON CONSULTING GROUP,K2000\nE,SOUTHERN WINE & SPIRITS OF NEVADA,G2820\nStudent Loan Executi,College Loan Corporation,F1400\nAT,JEFFREY FREEMAN ATTORNEYS AT LAW,K1000\nLobbyist/Consultant,Band & Co.,K2000\nstay at home mom,not applicable,J1200\nGENERAL CO,LANDMARK BUILDERS L.L.C.,B1500\nREAL ESTATE BROKER,MARY DEE KARP & ASSOCIATES,F4200\n,MID-AMERICA ANESTHESIA CONSULTANTS,H1130\nATTORNEY,CHAPMAN IMMIGRATION LAW GROUP,K1000\nNutrition Director,Rice Diet Program,Y4000\nPRINCIPAL MEMBER,\"THE VELVEL GROUP, LLC\",Y4000\nOffice Aide,Philadelphia School District,X3500\nCOUNSELOR,LIUNA NORTHERN CALIFORNIA LADC,LB100\n\"INTERNAT'L FINANCE CORP\",,F0000\nCEO & PRESIDENT,MERCURY INSTRUMENTS,Y4000\nH&H EASTERN DISTRIBUTORS,,Y4000\nActuary,Mass Mutual,J7150\nLawyer,\"Levin, Simes, Kaiser & Gornick\",K1100\nPATHOLOGIST,CARILION ROANOKE MEM HOSP,H1130\nOWNER,BERG MANUFACTURING & SALES,Y4000\nACCOU,HOUGHTON MIFFLIN HARCOURT CO.,Y4000\nTECH ADVISOR,CCSF,Y4000\nCATTLEMAN/LOBBYIST/LOBBYIST,,K2000\nINNKEEPER,SELF-EMPLOYED/INNKEEPER,T9100\nMANAGING,\"BCC CAPITAL PARTNERS, LLC\",F5500\n\"MCCALL'S SEAFOOD\",,Y4000\nProduct Manager,IBM,Z9500\nPRESIDENT,AMBYTH SHIPPING & TRADING CO.,Y4000\nEngineer,AEPCO,D9000\nInformation Requested,Argenta France,Y4000\nAttorney,Senn Visciano Kirschenbaum,K1000\nFashion Consultant,Independent Contractor,B3000\nATTORNEY,LAW OFFICES OF TIM BRAUN,K1000\nCEO,Midas Auto Systems,Y4000\nHEALTH CARE EXECUTIV,ACCESS PLANS USA,Y4000\nMETAL SCULPTOR,LISA FEDON STUDIO,Y4000\nNone,Retire,J7400\nMANAGER,Newsham Choice Genetics,A3000\nVice President,Valley Baptist Health System,H0000\nATTORNEY,TAYLOR & HOOPER,K1000\nCORRECTION INDUSTRIES DIRECTOR,NM CORRECTION DEPT,Y4000\nREAL ESTATE EXECUT,LEWITH & FREEMAN,F4000\n\"ANESI, OZMON, LINDERMUTH & RODIN\",,K1000\nBUSINESS OWNER,CUSTOM COMMODITIES,Y4000\nCEO,PRECISION INDUSTRIES,Y4000\nDIR OPERATIONS,United Parcel Service Inc,T7100\nCONCRETE COMPANY,,B5100\nFINANCIAL SERVICES,CNG FINANCIAL,F1400\nCommercial Closing Officer,Multi State Title Agency,F4300\nDIRECTOR,UC DAVIS,H5100\nConsultant,Mps & Partners,Z9500\nPhysician,Franciscan Skemp Healthcare,J1200\nMEDICAL ARTS CLINIC,,\nCHAIRMAN,AMERICAN DEFENSE INTL INC.,K2000\nEXECUTIVE,G.E. CAPITAL,M2300\nPRINTPACK INC,,G5000\nIMMIGRATION &,LEVITT & NEDLEMAN PC,Y4000\nOWNER,MANKE LUMBER,B5200\nPhysician,Mercer University,H5100\nSEWARD SCREW PRODUCTS,,M5000\nPastor,Bethany Pres. Church,Z9500\nVP AND,\"MEDCO HEALTH SOLUTIONS, INC.\",H3700\nGovernmental Relatio,\"Dynegy, Inc.\",E1140\nOWNER,FORMS DISTRIBUTION CORP,Y4000\nMANAGING DIRECTOR,CAPSTONE COUNCIL GROUP,K2000\nPRESIDENT,\"RUSSELL T BUNDY ASSOC., INC.\",G4600\nVICE PRESIDENT-SALES,CUTLER REPAVING INC.,Y4000\nTEXTILES,LEIGH FIBERS,M8000\nV.P.,MERRILL LYNCH,F2100\nPHILANTROPHY,,A3000\nOwner,Bostonian  Hair Studio Inc,G5100\nExecutive,Redman Gaming,Y4000\nRADIOLOGIST,INLAND IMAGING/RADIOLOGIST,Y4000\nTREASURER,ISLAND COUNTY,X3000\nMANUFA,ENERGY & ENVIRONMENTAL TECH.,Y4000\nATTORNEY,\"KAYE, ROSE & PARTNERS/ATTORNEY\",K1000\nSCHWARTZ WEISS STCKL,,K1000\nRancher,Elf-Employed,G0000\nPresident,DAN HIL CONTAINER II LTD.,M7000\nSales Agent,ITG,Y4000\nKING TV,,C2100\nCOUNSELOR,STATE OF MARYLAND,X3000\nOWNER,SELWOOD FARMS,A1000\nFoundation Executive,Community Foundation for Greater NH,Y4000\nPRESIDENT,WORLD-WIDE MOVERS,T3100\nOwner / Business Manager,Adair Home Health Professional,G0000\nAccountant,Douglas K Fejer CPA,F5100\nSANTA CRUZ COUNTY,,J7400\nNOMURA SECURITIES,INFORMATION TECHNOLOGY,Z9500\nHEINEKE & BURKE,,Y4000\nDirector,Lightstream Pictures,Y4000\n\"D'AQUINO IMPORTS CO INC\",,G2500\nConsultant (Environm,Clean Air-Cool Planet,J7400\nSTATE REP.,STATE OF TEXAS,X3000\nFAIRBANK FINANCIAL CORP,,F0000\nBanker,1st National Community Bank,F1200\nNORTHWEST UTILITIES,,Y4000\nPRESIDENT,MCCLEES CONSULTING,Y4000\nSPORTS ANNOUNCER,L.A. DODGERS,Y4000\nFINANCE DIRECTOR,PAWLENTY FOR PRESIDENT,J1100\n,VENABLE BAETHER HOWARD & CIVILETTI,K1000\nattorney,Hakeem Ellis & Marengo,K1000\nDirector,CERMUSA,Y4000\nATTORNEY,MINYARD MORRIS/ATTORNEY,K1000\nINSURANCE S,POLLOCK FINANCIAL GROUP,F2100\nPR,GOOGLE,C5140\n\"Clergy, Consultant\",Self employed,X7000\nMANAGER,DEMPSEY UNIFRM,Y4000\nBIRTH TO FIVE PAC,,J1200\nCHRISTIANN LTD,,Y4000\nBusiness Analyst,Mitsubishi Polyester Film,C2400\nReal Estate Builder,Kenco Communities,B2000\nCONTRACTOR BROKER,,Y4000\nExecutive Director,Surgicorps International,Y4000\nGrape grower,Beckstoffer Vineyards,J1200\nMANAGING PARTNER,STANDARD PACIFIC CAPITAL,F0000\nNORTH KOREA COUNTRY,SECRETARY OF DEFENSE,Y4000\nSr Project Engineer,Frito-Lay,G2600\nAttorney,\"Stuart S. Bowie, P.C.\",Y4000\nDIRECTOR OPERATIONS II,DEAN FOODS COMPANY,A2000\nManager,Weatherford,E1120\narchitect,HKS inc,J7300\nEXECUTIVE,MEDSTAR,H3000\nFU,WHITE-LUTTRELL FUNERAL HOMES LTD,G5400\nDirector ERP Program,Honeywell International,D2000\nCEO,EDWARDS AND KELCEY,B4400\nExec Vp,Ef Education,Y4000\nENGINEER,BOEING,J7400\nPhysician,\"MD House Calls, Pllc\",Y4000\nDealer,McHugh Dodge Jeep,T2300\nJET DELIVERY,,Y4000\nRIEFLER CONCRETE PRODUCTS,,B5100\nCHAIRMAN,GEIER GROP LLC,G5270\nWEALTH MANAGEMENT,NORTHWESTERN MUTUAL WEALTH MANAGEMENT,J6200\nSoftware Engineer,Cnet,Y4000\nGLADWIN COUNTY,,X3000\nSales,NWS Inc.,X1200\n\"MCGINNIS, LOCHRIDGE AND KILGORE, L.\",,K1000\nREMAX ALLIANCE,,F4200\nATTORNEY,BANKS & IMATANI PC,Y4000\nLARGE FORMAT PR,PRINT NEW HAMPSHIRE,C1300\nWEST COAST SAND GRAVEL INC.,,B5100\nMILLER SHAKMAN HAMILTON &,,K1000\nWILEY & HOTCHKISS,,Y4000\nInvestor,Lovett Miller,Y4000\nAttorney,New Castle County,X3000\nCOMMERCIAL REAL ESTATE,STIRLING PROPERTIES,F4000\nCERTIFIED PUBLIC ASSISTANT,SELF-EMPLOYED,Y4000\nInformation Requeste,Devoise & Plimpton LLP,K1000\nPARTN,BROWN DIFFENDERFFER & KEARNEY,Y4000\nMCMILLIN CLOTHING CO,,G4100\nPRESIDENT/CEO,CHUCK ROBINSON HOMES/PRESIDENT/CEO,B2000\nATTORNEY,SCARINCI & HOLLENBECK,J7400\nATTORNEY,THE ALVAREZ LAW FIRM,K1100\nHighway Service Ventures,,E1170\nHONG KONG & SHANGHAI BANK,,F1000\nPhyscial,University Of Southern California,H5100\nPro-bono Programmer,Rutgers Law School,J7400\nMANAGER,CMS ENERGY,E1620\nCARPENTER,DAMUTH HOMES INC.,J1100\nATTORNEY,SQURE SANDES AND DEM,Y4000\nVENTURE CAPITAL,JP MORGAN PARTNERS,F1100\nPVT LLC,,G5210\nAutomotive Technicia,B.M.W. Gallery,T2300\nMARKETING AND STRATEGY,CIGNA,F3200\nCO-PRESIDENT,MARCHON EYEWEAR,J1200\nCFO - O,\"PSYCHIATRIC SOLUTIONS, INC.\",H2100\nENGI,ADVANCED DRAINAGE SYSTEMS INC.,B1500\nPresident,Zeig Electric,B3200\nUS MARSHAL,US DEPARTMENT OF JUSTICA,X3200\nManaging Partner,Promontory Financial,F0000\nEMPIRE OF AMERICA,,F4600\nCLINICAL CHARGE COORDINATOR,VETERINARY SPECIALTY HOSPITAL,A4500\nHUSCH & EPPENBERGER LLC,,K1000\nInsurance & Investments,\"Corbin Financial, Inc\",F0000\nPETROLEUM LANDMAN,KLABZUBA ROYALTY COMPANY,Y4000\nATTORNEY,\"MANDELL LAW GROUP, PC\",K1000\nC & M BLDRS INC,,B2000\nAttorney,MacKey George B Atty. at Law,K1000\nPRESIDENT,AMERICAN DEMOLITION CORP.,Y4000\nDirector of Federal,American Academy of Dermatology Associ,H1130\nResearch Manager,Agilent Technologies,C5000\nWEBGUY,SELF,Y4000\nFoundation Director,Ashe Memorial Hospita,Y4000\nCOMMUNICATIONS,US CHAMBER OF COMMERCE,G1100\nEQUITY SALES,GOLDMAN SACHS,F2300\nROSE CASUAL DINING,,G2900\nEXECUTIVE DIRECTOR,NEXTNOW COLLABORATORY,Y4000\nATT,THE LAW FIRM OF HUGH H. MO P.C.,K1000\nCREATIVE MARKETING INC,,Y4000\nINSURANCE,MARCHETTI & MARCHETTIINC.,Y4000\nSENIOR VICE PRESIDENT,PAVERS BY IDEAL,B5100\nChiropractor,Sligh Clinic of Chiropractic,H1500\nSTATISTICIAN,US GOVERNMENT,J7400\nPHYSICIAN,MID SOUTH SINUS CENTER,Y4000\nHARSHMAN & GERVIELIS,,K1000\nBROAD NATIONAL BANK,,F1000\nSULLIVAN HIGDON & SINK,,Y4000\nMARKETING,INDEPENDENT,G5280\nPHYSICIAN,\"RELIAPATH, LLC, APM,LLC\",Y4000\nINVESTOR,W. E. COOPER,Y4000\nOWNER,DAKINI DESIGN,Y4000\nCWC INC,,Y4000\nUSED BOOK,MIDTOWN SCHOLAR BOOKSTORE,Y4000\nBusiness Executive,CUNIX,Y4000\nLOWENTHAL LANDAU FISHER,,Y4000\nFORTSON BENTLEY & GRIFFIN,,Y4000\nINTELLIGENT INTERFACE,,Y4000\nPRESIDENT AND CHIEF OPERATING OFFICER,RLI,F3100\nTOM STURGIS PRETZELS,,G2100\nBADGER STATE AUTO AUCTION,,G5000\nAVIAT,KEYSTONE AVIATION DBA MILLION,Y4000\nBusiness Owner,\"Insight Industries, LLC\",Y4000\nVICE PRESIDENT,\"STAR DISTRIBUTORS, INC.\",Y4000\nHealth Care Executive,Greater NY Hospital Assn/Cclc,H2100\nBOWLES RICE MCDAVID GRAFF ET AL,,K1000\n\"LEE MOORE'S MOBILE HOMES\",,Y4000\nAttorney,Karp and Levine Tax Attorneys,K1000\nsenior program analy,FDIC,X3000\nInterior Designer,Interplace Design Incorporated,G5000\nAttorney,\"Furtado, Jaspovice & Simons\",Y0000\nATTORNEY,PIERSOL LAW FIRM/ATTORNEY,K1000\nATTORNEY,GREENWAY MEDIATION CENTER,Y4000\nSHOPPING CENTER,,J5100\nUNITY PHYSICIANS GROUP PC,,H1100\nUNITED VIDEO INC,,Y4000\nMedical Doctor - Oncology,Cancer and Hematology Centers of MI,H2000\nTutor,Self Employed,G0000\nSalesman,Cascade Trading,J1200\nLAUDI VIDNI,BUSINESS,J7400\nPROFFESSOR,,Y4000\nOwner,Eck Mundy Associates,Y4000\nVice President,\"Premier Marine, Inc\",T8300\nPHYSICAL THERAPIST,BAYADA HOME HEALTH,Y4000\nCOO,NHS HUMAN SERVICES,H3200\nSELF-EMPLOYED,\"SOTHEBY'S INTENATIONAL REALTY\",F4200\nChief Staff Officer,\"RaceTrac Petroleum, Inc\",G4300\nOfficer,Metabolic Research Center,Y4000\nATTORNEY,WILLIAMS & JENSEN LLC,K2000\nFOOD SERVICE,THE WESTERLY HOSPITAL,H2100\nAttorney,Salans Hertzfeld Heilbronn et,K1000\nOWNER,LOMBARD SWISS SCREW,Y4000\nPRESIDENT,PREMIERE TURBANS,Y4000\nPOMEROY FINANCIAL,,Y4000\nVICE PRESIDEN,THE TODD ORGANIZATION,F5000\nEXECUTIVE,\"MCAFEE, INC.\",C5120\nWP CAREY AND CO,,F4000\nTOTTEN & THOMAS,,Y4000\nCPA,GENERAL MOTORS COMPANY,T2100\nSVP & CONTROLLER,DUKE ENERGY BUSINESS SERVICES,E1620\nMANAGER,MET FOOD,Y4000\nTechnical Executive,Revolution Prep,Y4000\nOwner,The Alexander Co.,F4200\nIT CONSULTANT,EMC CORPORATION,C5130\nPHYSICIAN,UNIVERSITY MINNESOTA,H5100\nCHAIRMAN,ROTE CORP.,Y4000\nALIX & ASSOCIATES,,G5200\nWRITER/HOMEMAKER,SELF-EMPLOYED,C1100\nOWNE,DUNNFEY BROTHERS CAPITAL GROUP,Y4000\nPresident,Par-Keys Lounge,G1200\nAttorney,GBrownstein Hyatt,K1000\nRetired Teacher,City Of New York,X3000\nUNLIMITED INVESTMENTS OF AME,,Y4000\nPresident,Southland Electrical Supply Co,B5500\nConsultant,Health Policy Consulting,Y4000\nteacher,Miami University,H5100\nProfessor,Evan Haefeli,Y4000\nPENDLETON JAMES & ASSOC,,G5250\nEXECUTIVE,TECNY GROUP,Y4000\nBISHOP BUSINESS EQUIPMENT,,M4000\nDAVIS DIST CO,,Y4000\nHIGH,COMM OF KY DEPT TRANSPORTATION,X3000\nPRE,SCIENCE MANAGEMENT CO. L. L. C.,Y4000\nHeavy Equipment Oper,Not working,LB100\nExecutive,\"H.B. West, Inc.\",Y4000\nPresident/Owner Optometrist,American Eye Care Optometric Centers P,H1120\nSELF EMPL,HO CO. INTERNATIONAL INC.,Y4000\nCO-FOUNDER,\"NEXTFUELS, INC\",E1500\nExecutive Committee Chairman,Dutko Worldwide,K2000\nREAL ESTATE BROKERAGE,\"KB REAL ESTATE, INC\",F4000\nMONARCH GAS LIQUIDS,,Y4000\nCONSULTA,BUSINESS ADVISORY SERVICES,G5200\nENGINEER/FARMER,COOKSON,Y4000\nPOSITRONIC INC,,Y4000\nCustomer Service,Roundabout Theatre Company,C2900\nSOROS FUNDS MANAGEMENT,,F2700\nTERRA PROPERTIES,,F4200\nPRESIDENT,JACK MORTON WORLDWIDE,Y4000\nPRESIDENT,\"ST. RITA'S MEDICAL CENTER\",H4500\nIT,ST. OF NM,Y4000\nCEO,\"EB STONE & SON, INC.\",Y4000\nIT Management,Hcsc,Y4000\nPRESIDENT,THE CULLINANE GROUP INC.,C5130\nOWNER/PRESIDENT,\"WALL DRUG STORE, INC.\",G4900\nREGISTERED,MOBERLY MEDICAL CLINICS,H0000\nCeo,Giga Inc,Y4000\n\"DIR., FED. GO\",MICROSOFT CORPORATION,J1200\n\"Executive, President\",Self-Ins - Northstar Plan,Y4000\nCHIEF EXEC,\"RIPPLEWOOD HOLDINGS, LLC\",F2100\nSCIENTIST,\"ZETA ASSOC., INC.\",Y4000\nOwner,Tanique,Y4000\nFLANAGAN CONSULTING LLC,,K2000\nEXECUTIVE VICE PRESIDENT,\"PRIMERICA, INC.\",J7500\nCUSTOMER SERVICE,TUFTS HEALTH CARE,H0000\nRn,Abbot Nw Hospital,H2100\nTV Producer/Writer,Self-Employed,C2300\nELECTONICS ENG,SELF,J1100\nSALES,LEE MINSHULL RC INC.,Y4000\nSALES REP,CHAPMAN PRINTING,Y4000\nENVIRONMENTAL CONSULTANT,CHIM HILL,Y4000\nTHE TOWN SCHOOL,,J7700\nPETERSON INVESTMENTO CO,,F4500\nLOBBYIST/CONSULTANT,KOUNTOUPES CONSULTING/LOBBYIST/CONS,K2000\nCRAFTSMAN,SELF-EMPLOYED,C4100\nATTORNEY,GREENBERG TRAURIG PA,J5100\nlawyer,self,J9000\n\"organizational consultant, mediator\",Self-Employed,G5200\nContractor,\"Jersey Construction, Inc\",B1500\nAdministrator,National Health Corp.,H2200\nOWNER,CONTROLLED DISMANTLING,Y4000\nFarmer,Strike Entertainment,C2000\nOVERLAN SAND & GRAVEL COMPANY,,B5100\nAttorney,Mittelberg and Nicosia,K1000\nAttorney,\"Drubner O'Connor\",Y4000\nCONGER & ELLIOTT PC,,Y4000\nFinancial Planning,Life Strategies LLC,Y4000\nAttorney,Harras Bloom and Archer,K1000\nVICE PRE,DOGGETT MACHINERY SERVICES,B5100\nDoctor,John P Robinson DO Inc,H1100\nPRESIDENT,SIAPERM INVESTMENT INC,F7000\nSenior Director  Executive Office,Ncta,C2200\nPRINCIPAL,STARCREST CONSULTING,Y4000\nNEW ENGLAND REHABILITATION HOSPITAL,,H2100\nLONGWALL COORDINATOR,THE AMERICAN COAL COMPANY,E1210\nArchitect,Boston Society of Architecture,B4200\nSecurity,Kane County Government,X3000\nFARMER,DELTA FARMS,A1000\nPolice Lieutenant,City Of Dallas,X3000\nRESTAURANT OWNER,LA VILLA,Y4000\nCommercial Directv,Self Employed/High Tech World,Y4000\nTHE HASTINGS GROUP,,G5270\nATTORNEY,GERTSNAN SCHWARTZ,Y4000\nESSENCE COMMUNICATIONS,,J7500\nBUSINESS OWNER,JAMES TOYOTA,T2310\nReal Estate Executive,Kelsey Properties/Capital Realty,F4000\nCHIEF EXECUTIVE OFFICER,WILSON CARE GROUP,Y4000\nChairman & CEO,Alpha Natural Resources,E1210\nCEO,Texas International Energy Partners In,E1000\nPROFESSOR,U OF PUGET SOUND,Z9500\nVP PUBLIC,FRESENIUS MEDICAL CARE NA,H3200\nATTORNEY,\"RYAN, MACKINNON, VASAPOLI & BERZOK, LL\",J1200\nREGULATOR,REGULATORY RESEARCH CORP,Y4000\nMANAGER,AMERICAN EXPRESS CO.,F1400\nExecutive,Roche Palo Alto LLC,H4300\nINTER CAPITAL PROPERTIES,,Y4000\nPRESIDENT,WAVE COMMUNICATION INC.,Y4000\nLAKE MICH CAR FERRY SERVICE,,T6200\nCivil Servant,County of San Mateo,X3000\nGovernment Affairs,New York City Health & Hospital Corp,H2100\nVICE PRESIDENT,MO HOSPITAL ASSOC.,H2100\nAttorney,\"Barlow Garsek & Simon, Llp\",K1000\nAttorney,Lindquist,K1000\nPLEASANT VALLEY WINE COMP,,G2840\nATTORNEY,ALLEN DELL,Y4000\nFOUNDE,ANIMAL DOG RESCUE FOUNDATION,Y4000\nChairman,\"Starpower Home Entertainment Systems,\",C0000\nRAINWATER CONSTRUCTION,,B1000\nBUSINESS OWNER,SEALE OILFIELD CONSULTANTS INC.,Y4000\nMCDOWELL SOUTH,,Y4000\nPRIVATE EQUATY,BOLDER CAPITAL,Y4000\nPRINCIPAL,TYREX,Y4000\nAttorney,\"ANAPOL, SCHWARTZ\",K1000\nMONTROSE CLINIC,,Y4000\nPRESIDENT & C.E,MATREC SYSTEMS INC.,Y4000\nAttorney,Law Office of Marie E. Collins,K1000\nRegistered Nurse / L,Santa Clara Valley Medical Center,H2100\nTHE GILMAN FOUNDATION,,A5200\nCONTRACTOR,GOOTEE CONSTRUCTION,B1500\nCONSULTANT,EU LOVELY,Y4000\n\"Vice President, Pacific Region\",ProLogis,F4100\nPRESIDENT/CEO,MOONRIDGE GROUP,Y4000\nSR. VP GENERAL CO,COLGATE PALMOLIVE,J1200\nPARTNER,BRADLEY ARANT BOULT CUMMINGS,K1000\nC R C - EVANS,,M5000\nNebraska CUL Federal PAC,,F1300\nIVEY MECHANICAL CO,,B0500\nFire Fighter / EMS,Grand Island Fire Dept,L1400\nOWNER,\"WENDY'S INTERNATIONAL INC.\",G2900\nCollege Professor,\"Univ of Massachusetts, Amherst\",H5100\nEXECUTIVE,INSYNC & MEDIA,C1300\nPIERCE COUNTY COUNCILMAN,PIERCE COUNTY,X3000\nRETAIL EXEC,BOB S DISCOUNT FURNITRE,Y4000\nExecutive Vice President,Verizon Wireless,C4100\nPRESIDENT,ICN,Y4000\nCEO,Contract Packaging Resources,H4500\nCfo,\"Cruise America, Inc\",Y4000\nPHYSICIAN,ORTHOPEDIC SPECIALISTS OF NORTH AMERIC,H1130\nCHAIRMAN,BRIDGFORD FOODS CO,G2000\nCLEVELAND-CLIFFS INC,,Y4000\nINVESTOR,H2V LLC,F7000\nASANTE HEALTH SYSTEMS,,F4500\nPRESIDENT,BLUE BIRD CORP.,T2000\nBIOLOGICAL OCEANOGRAPHER PROFE,UMCES,Y4000\nINVESTMENT BANKER,REPUBLIC PARTNERS INC.,J1200\nFINANCE,CATROCK CAPITAL,Y4000\nManager,Bearing Point,G5200\nOWNER,MALONE & ASSOC.,Y4000\nVP,\"SAWYER'S LAND DEVELOPING INC\",Y4000\nPRESIDENT,MAHONY COW,Y4000\nLAWYER,CLEARY GOTTLIEB/LAWYER,K1000\nFREMONT GROUP LLC,,F2100\nTheatrical Manager,\"Richards/Climan, Inc\",G5210\nIn-House Counsel,Curtiss-Wright Corporation,T1300\nMulhauser and Associ,\"Self, Mulhauser and Associates (Uninco\",Y4000\nPRESIDENT,NOCO ENERGY CORPORATION,E1170\nCE STAPLETON & ASSOC,,Y4000\nPHYSICIAN,BROOKLYN HOSPITAL CENTER,H1130\nRealtor,\"Preferred Properties,Inc.\",Y4000\nCONSTRUCTION CO PRESIDENT,UCI CONSTRUCTION INC,B1500\nLOBBYIST,ROBISON INTERNATIONAL INC.,K2000\nMELROSE REALTY CORP,,F4200\nPHYSICIA,OMAHA GASTROENTEROLOGY CO.,H1130\nMD,Omni Anesthesia Associates,H1130\nRUAN CAPITAL CORP,,T3100\nCANON INN HOTEL,,T9100\nF GIAMO D M D,,H1400\nGeneral Counsel,American Natural Resources Pipeline Co,E1150\nOwner,\"Production Specialists, Inc\",Y4000\nOwner,South Texas Landscaping,B3600\nDIRECTOR OF,SODREL TRUCK LINES INC.,T3100\nDIR-CORP GOV&REG AFFAI,COMERICA INC,F1100\nLAWYER,MIKE MOORE LAW FIRM,K1000\nInvestment,SPO Partners,Y4000\nREALTOR,Style Realty & Investment Co,F4200\nPRIORITY RESOURCES INC,,Y4000\nCOORDINATOR,LABORERS DISTRICT COUNCIL OF OHIO,Y4000\nCEO,TRAINIA INTERACTIVE,Y4000\nPRESIDENT,LRS MEDIA,J1200\nIT Manager,Louisiana State Universi,H5100\nHUMAN-I-TEES,,JE300\nWASHINGTON STRATEGIES LLC,,Y4000\nresearch editor,TV Guide,C1100\nExecutive,Anthem Blue Cross Blue Shield,F3200\nPHYSICIAN,DERMATOLOGY PA,H1130\nTECHNOLGY - BUSINESS DEVELOPMENT,TERRESTAR NETWORKS,C4400\nATTORNEY,MORRISON & HECKER LLP,K1000\nSelf,Fundraising Consultant,J7400\nGRYPHON TRADING INC,,F0000\nTessie Artist,Self,G0000\nPRESIDENT,\"THE PERRY AGENCY, INC.\",F3100\nC.E.O.,GLOBAL MINE SERVICE,E1240\nCITY OF MENLO PARK,,J7400\nJEFFERSON & ALLISOP INSURANCE,,F3100\nOcenographer,Univ Of Md,H5100\nHOME SAVINGS,,F1200\nDatabase Designer,Self employed,G0000\nMEDICAL DIRECTOR,MAGELLAN HEALTH SERVICES,H3700\nbuilding contractor,Turner Dry Wall,Y4000\nLawyer,Chapman Popik & White LLP,K1000\nAttorney,Lemle and Kelleher,K1000\nFISCHER SPORTS USA LLC,,Y4000\nCIVIC VOLUNTE,CITY OF MISSION HILLS,J9000\nEXECUTIVE DIRECTOR,UNION LEAGUE,Y4000\nCLP,,Y4000\nRETIRED PROFESSOR,NA,H5100\nCEO,\"KEN'S\",Y4000\nRHO MANAGEMENT,,Y4000\nSenior Business Consultant,Perot Systems Corporation,C5130\nDOUGLAS THEATRE COMPANY,,C2900\nPARTNER,\"ACTION CAR & TRUCK, LLC\",Y4000\nFIFTH THIRD BANK OF CENTRAL KY,,F1100\nEMPLOYEE,AERO SPECIALTIES,Y4000\nSR HEALTH ADVISOR,EXXON MOBIL CORP,E1110\nPRESIDENT,LORNTY INVESTMENT COMPANY,F7000\nJP FINANCIAL SVCS,,F0000\nNORTH HILLS SCHOOL,,L1300\nPEDIATRIC DENTIS,PEDIATRIC DENISTRY,H1400\nMPZ Manager,II-VI,M9100\nCONSTRUCTION,AJ DIANI CONST.,B2000\nInformation Reqested,Information Requested,H5100\nROBINSON COMPANIES,,Y4000\n\"COMMUN NAT'L SAV\",,F1200\nEXECUTIVE VP - NTS,NASDAQ,F2400\nSOFTWARE DESIGNER,Self employed,C5120\nPETRIKIN WELLMAN DAMICO BROWN,,Y4000\nUS BANK OF WASHINGTON,,F1000\nMCNEIL PROPERTIES,,Y4000\nEXECUTIVE,MELTZER LIPPE,J5100\nATTORNEY,HLTH -- DISABILITY ADVOCATES,Y4000\nVAN SCOYOR ASSOC./LAWYER/LOBBYIST,,K2000\nManagement,\"WESTON SOLUTIONS, INC.\",Y4000\nPILOT,CINCO AIR CHARTER LLC.,Y4000\nFIESTA FORD,,T2300\nDIRECT MARKETING SYSTEMS,,T7000\nPresident/CEO,Pearson Land Corp,B2000\nPublisher,Moffly Publications,C1100\nEXECUTIVE,PREMIER HEALTH PARTNERS,H0000\nPRISM WEIGHTLOSS,,G5000\nMANAGER,\"ZAMPERLA, INC.\",M2300\nNADA PAC,,T2300\nPresident,West Pointe Chrysler Dodge Jeep,T2300\n\"Senior Vice President, Global Sales\",Choice Hotels International,T9000\nPresident,EJ Electric Co.,Y4000\nATTORNEY,HAMON ANKELES,Y4000\nREAL ESTATE,CEET AMONITIES,Y4000\nREPROGRAPHER,REPRO-GRAPHICS,C1300\nMOHAWK CUSTOMS & SHIPPING CORP GENE,,F1100\nSVP CORPORATE DEVELOPMENT,SHARECARE INC.,Y4000\nPresident,Downey McGrath Group,K2000\nAUTO DEALER,ISRINGHAUSEN IMPORTS,Y4000\nSELF-EMPLOYED,,C2600\nBUSINESS OWNER,RELIABLE CAREGIVERS,Y4000\nGRADUATE MEDICAL EDUCATION COORDINATOR,\"THE CHILDREN'S HOSPITAL OF PHILADELPHI\",H2100\nSELF,ADVANCED INTEGRATED TECH SOLUT,Y4000\nRetired,General Motors,J1200\nADMINSTRATION,WNY BD. OF EDUCATION,X3500\n\"GRAY, PLANT & MOOTY\",,K1000\nretired,Information Requested Per Best Efforts,C2200\nSALES,\"N76 EXCAVATING, INC.\",B3600\nARCHITECT,PROTER CLAPP ARCHITE,Y4000\nSUMMA PHYSICIANS INC,SPI,H1100\nExec. Vice President,Cummins Engine Co.,B4400\nFACT SET RESEARCH SYSTEMS,,C5140\nInvestment Manager,\"The Beal Companies, LLC\",F4100\nChef,\"Cheng's Oriental Express\",G2900\nMCGUIRE WOODS BATTLE & BOOTH LLP,,K1000\nHOUSE HUSBAND,,J7120\n\"HALL'S\",,Y4000\nREGIONAL,MICHIGAN PAVING MATERIALS,B5100\nCONSTRUCTION MANAGEMENT SERVICES OF,,B1500\nACTOR,CORMORANT PRODUCTIONS,Y4000\nPRESIDENT,PHARMACOM GROUP INC,Y4000\nAttorney,CA Dept of Justice,X3200\nChief Nursing Officer,Memorial Hermann Northeast,H2100\nSENIOR REGIONAL MANAGER,\"BRE PROPERTIES, INC.\",F4100\nAttorney,Fross Zelnick Lehrman & Zisso,K1000\nS W BELL TELEPHONE - OK,,Y4000\nRegistered Investment Advisor,Self-Employed,F5000\nORTHOPAEDIC SURGEON,ORTHOPAEDICS NORTHEAST,H1130\nOWNER,UNICORN RESTAURANT & PUB,G2900\nNATOLI CONSTRUCTION CORP,,B1500\nTeacher,Long Island Lutheran Hs,Y4000\nTEACHER,PAJARO VALLEY UNIFIED SCHOOL DISTRICT,Y4000\nInformation Requeste,East Catholic High School,H5100\nCHEMIST,MASSACHUSETTS GENERAL HOSPITAL,H2100\nOil/Gas Producer,SELF-EMPLOYED,E1100\nExecutive,King George Inn,T9100\nPHARMACIST,AUFOINE PHARMACY LTD.,G4900\nVP- Business Dev.,Novasoft,Y4000\nDentitst,Self employed,Y4000\nMARKING SPECIALISTS CORP,,Y4000\nMANAGER,CITY AND COUNTY OF BROOMFIELD,Y4000\nExecutive Vice Presi,Greater Philadelphia Chamber of Comme,G1100\nMANAGER,CBRE,F4200\nINVESTMENT FIRM MANAGER,SELF EMPLOYED,F2100\n\"SPORTSMAN'S HAVEN\",,Y4000\nASTRODOME USA,,Y4000\nFood Service Contractor,EC Mgmt,Y4000\nPATENT ATTORNEY,YANKWICH & ASSOCIATES P.C.,Y4000\nASIAN PACIFIC,,Y4000\nEXECUTIVE DIRECT,INDEPENDENT ACTION,J2100\nATTO,LAW OFFICES OF DAVID B. GOLOMB,K1100\nAttorney,\"Gonzalez, Saggio & Harlan, LLP\",K1000\nCHAIRMAN/CEO,PARAGON PHARMACEUTICALS,H4300\nPRESIDENT & CEO,BRANDCHISE,G1000\nANESTHESIOLOGIST,MAO,H1130\nHuman Resources,Pinkerton Government Ser,Y4000\nEXECUTIVE,CAVEIUGTOR,Y4000\nEXECUTIVE,TRINITY HEALTH,H2000\nACANA REAL ESTATE,,F4000\nPRESIDENT,LINCOLN PARK & TISSUE,A5200\nFINANCE,MORRIS PLAN COMPANY,Y4000\nATTORNEY,ROXANNE CONLIN & ASSOCIATES,J1200\nMICHIANA COLLEGE,,H5100\nSelf employed,Holt Cat,B6000\nPresident,Don Walters Kitchen Distributors Inc,Y4000\nOWNER,MICCO RANCH,A3000\nSEMI RETIRED,PENEUV SERVICES INC.,J9000\nPhysician,Dermatology Associates of Hinsdale,H1130\nContrator,Business man,G0000\nCEO,INSIGHT VIDEO NET LLC,Y4000\nConservationist,Commonwealth of Mass,X3000\nINFORMATION REQUESTED PER BEST EFF,INFORMATION REQUESTED PER BEST EFFO,E1190\nADMINISTRATIVE ASST,College of the Canyons,H5100\nCLAIMS REPRESENTATIVE,STATE OF CALIFORNIA,X3000\nEngineer,Clark Dietz Inc.,B4000\nBusinessman,Thomson Medstat,Y4000\nOWNER,SUPPLY SOURCE INC,Y4000\nUS CEREBRAL PALSY RES,,JH100\nINFO REQUESTED,Willets Horse Farm Llc,A3500\nNATURA,SANGUIRE GAS EXPLORATION LLC,E1150\nVice President,Monument Realty,F4200\nRANC,STATE REPRESENTATIVE,X3100\nPRESIDENT,HAMME HONDA,G1200\nPhysician,Johnson&Johnson,H4000\nLobbyist,APA,H1110\nACCOUNT MANAGER,DOE ANDERSON,Y4000\nGSIC,,Y4000\nGRAMOR OREGON INC,,Y4000\nEXECUTIVE,JOSH STELL COMPANY,J7500\nTERMINIX SERVICES INC,,B0500\nPOSTMASTER,U.S. POSTAL SERVICE,G2900\nPA,CONSUMER ATTORNEYS OF CALIFORNIA,K1100\n\"NATHAN'S FAMOUS\",,Y4000\nBUSINESS,NATIONAL CARE SYSTEMS INC.,Y4000\nOWNER,\"JON FEIST, DDS\",H1400\nAMERICAN INDUSTRIAL INSTALLERS,,B1500\nExecutive,Trio Industries,Y4000\nEQUITY SALES,THE BENCHMARK COMPANY,F2100\nINVESTMENTS B,GOLDMAN SACHS COMPANY,F2300\nChief Operations Officer,Crowe Horwath LLP,F5000\nEngineer,Millennium Knickerbocker Hotel,LB100\nSELF-EMPLOYED/PSYCHOANALYST/PSYCHOL,,H1110\nAttorney,Palmetto Park Title,F4700\nPRO BASKETBALL COA,SACRAMENTO KINGS,G6400\nPHILIP MORRIS COMPANIES,,A1300\nTEACHER,MOUNTAIN VIEW LOS ALTOS ADULT EDUCA,H5100\nVICE PRESIDENT,LEASEHOLD CORPORATION OF AMERICA,Y4000\nRIVER CREST DEVELOPMENT LLC,,Y4000\nCANCER DIRECTOR,KENTUCKIANA CANCER INSTITUTE,H2200\nGOVERNMENT RELATION,\"BLANK ROME, LLC\",J1200\nTeacher,South Orange Neplwor,X3500\nAttorney,\"Gold, Khourey & Turak, LC\",K1000\nRW ARMSTRONG AND ASSOC,,B4200\nPUBLIC SERVICE E & G,,E1620\nLaw Professor,Harvard U,J1200\nSR VP IIN/PRES FLUID,ITT FLUID TECHNOLOGY,C5000\nCEO,\"TODOS, INC\",Y4000\nCOMPUTER SPECIALIST,TMLP,Y4000\nBANKER,FREEHOLD SAVINGS BANK,F1100\nVENTURE CAPITALIST,PARTECH INTERNATIONAL,F2500\nMCGRATH ELECTRICAL INC,,B0500\nPresident,Little Capitol Exxon,G1200\nPresident,Heritage Healthcare,H0000\nPRESIDENT,GP MANAGEMENT SERVICES,Y4000\nPUBLIC OFFICIAL,CFSE,Y4000\nCivil Engineer,American Geotechnics,Y4000\n\"EVP, GENERAL COUNSEL\",MICROSOFT,C5120\nPEABODY & BRAUN,,K2000\nOwner/Principal/Partner,Shaw Homes,B2000\n\"TEXTILE DISTRIBUTORS ASS'N INC\",,Y4000\nMARKETING,ROSEWOOD HOTELS & RESORTS,T9100\nbusinessman,TGS Petroleum,E1000\n\"KLETT, LIEBER, ROONEY &\",,K1000\nPharmacist,Publix,J1200\nNEW MORNING GALLERY,,J1200\nCEO,WHITAKER KINNE GROUP,Y4000\nAdminstrator,Malone College,H5100\nPathologist,Integrated Regional Labs,H1130\nPresident,Phoenix 2000,Y4000\nCONSULTING SERVICES INC,,G5270\nATTORNEY,PASTENAK & FIDIS,K1000\nSenior Mechanical En,no response given,Y4000\nManager,Midflorida Title Pro Llc,F4300\nPresident/CEO,MTM Builder/Developer Inc,B2000\nCONSULTANT,CAPITOL ADVISORS GROUP,Z9500\nDEVELOPMENT SERVICES PLANNER,LETTER SENT: 9/19/2011/DEVELOPMENT,X1200\nSELF EMPLOYED & TEACHER,FOSSIL COAL & PIKE COUNTY BOE,E1210\nCONSULTANT,ESTY & ASSOCIATES,Y4000\nMNGMNT CONSULT,,Y4000\nOWNER,MANGANARO CONSTRUCTION,B1500\nPRESIDENT,\"LIVONIA,AVON&LAKEVILLE RR\",T5100\n\"VP, Gov't Relations\",Private Equity Council,F2600\nAttorney,Dickinson Law Firm,K1000\nPhysician,Lung Clinic,Y4000\nNETWORK MANAGER,FEDERAL JUDICIARY,Y4000\nTRIPLE/S DYNAMICS/MANUFACTURING,,Y4000\nPRINCIPAL,UNITED INTERNATIONAL CORP.,Y0000\nLAWYER,COSHO HUMPHREY LLP,Y4000\nmax Merchandising,,Y4000\nSR. VP & CFO,THE DAYTON POWER AND LIGHT CO.,E1600\nROMAC INC,,M2300\nMANAGING DIRECTOR,GRID PROPERTIES INC.,G4000\nSENIOR VICE PRESIDENT,PENN MILLERS,A4000\nLAWYER,LAW OFFICES OF RANDY B CORPORON PC,K1000\nINTERIOR DESIGNER,BUSINESS OWNER,Z9500\nArchitect,\"Architekshon,inc\",Y4000\nLAWYER,MONTGOMERY COUNTY,X3000\nMANAGER,HOSPICECARE IN THE BERKSHIRES,H2200\nTIRE COMPANY,ABC TIRE,Y4000\nICS/LOCAL OFFICE-MANAGER,GRANT THORNTON LLP,F5100\nMANAGER,\"WACKENHUT SERVICES, INC\",G5290\nCeo,Southeastern Turf Grass,Y4000\n\"JOSEPH'S SURGICAL SUPPLY INC\",,H4100\nManager,International Wine & Liquor,G2840\nSales,\"Ihs, Inc\",Y4000\n\"WRITER,PROFESSOR\",\"SELF (FREELANCE), UNIVERSITY OF CALIFO\",Z9500\nCHAIRMAN AND CEO,ENERGY TRANSFER PARTNERS,E1140\nREAL ESTATE BROKER,BRASS TITAN LLC,F4200\ndigital imaging,self,J1200\nATTORNEY,CARBONE & BLAYDES PLLC,Y4000\nKRISKO INSURANCE CO,,F3100\nOWNER,RIEHLE SEW N VAC,Y4000\nAttorney,\"Ifediba law Group, LLC\",K1000\nCounty Auditor,Dubuque County,X3000\nExecutive,Crump Insurance Services,F3100\nCeo,Clark Enterprises 2000 Inc.,Y4000\nCONSULTANT,HIMES CONSULTING GROUP,Y4000\nBOLT BERANEK & NEWMEN INC,,C5100\nMID-COLUMBIA ENGINEERING,,Y4000\nInvestment Broker,Shields & Company,F2300\nMADLEIN I BARSOUM,,Y4000\nPRESIDENT,ASSET HEALTH,Y4000\nLegal Personnel,\"Rogers Group, Inc\",B5100\nSpares/ Support,Boeing CO,D2000\nPRESIDENT,COLORADO CUSTOM STAINLESS INC.,Y4000\nALLEN BANK & TRUST CO,,F1100\nCUMBLERLAND DESIGN CO INC,,Y4000\nAnalyst,Wachovia Securities,F2100\nBishop,Episcopal Diocese of PA,X7000\nOwner Of A Sma,Hr Communicator Inc.,Y4000\nRICHARD C BLUM & ASSOC,,F2100\nConsultant,Watson Wyatt Worldwi,Y4000\nATTORNEY,CITY OF ALBUQUERQUE,X3000\nPresident,Trinchero Family Estates,G2820\nPolitical Consultant,The Crane Group,K2000\nPIONEER INVESTMENT MANAGEMENT USA I,,F2100\nSchool Media Specialist,Pgcps,Y4000\nTrial Lawyer,\"Kazan, McClain, Lyons\",K1100\nGOVERNMENT EMPLOYEE,SANGAMON COUNTY,X3000\nStewart and Stevenson,,M2300\nSenior Vice Presiden,Wisconsin Energy Council,E1620\nMANAGER,SUPER VALU,G2400\ngrape grower,jasmine vineyards inc,G2500\nRE/MAX GREATER ATLANTA/REALTOR,,J7400\nVP,THE BERKLEY GROUP,F4200\nAPPRAISOR,RALPH J BREKAN & CO.,Y4000\nATTORNEY,Edelman & Assoc,K1000\nLawyer,Bunn Law Group,K1000\nCFO,MID SOUTH IMAGING,Y4000\nDirector of Community and Government R,Redwood Community Health Coalition,Y4000\nTOOLEY HALL,,Y4000\nASSOCIATE,QUINN GILLESPIE & ASSOC.,J7400\nVEIT COMPANIES,,Y4000\nDIRECTOR,AIG,Y4000\nTeacher,Lk Wa School Dist,X3500\nREALTOR,HERITAGE REAL ESTATE,J9000\nFINANCIAL AIDE COORD,,H5100\n\"Sr, Vice President\",Mercury LLC,B5100\nTRAVEL REIMB,,Z9600\nECONOMIST,U.S. DEPT. OF COMMERCE,X3000\nPresident,Gulfstream Race track,G6500\nJOVON BROADCASTING CORP,,C2100\nFOR THE PEOPLE LLC,,Y4000\nOwner,Steve Reynolds Realty,F4200\nANESTH,ANESTHESIOLOGISTS ASSOCIATED,H1130\nTHE LIMITED INCORP,,G4100\n\"PRESIDENT, NA SALES\",LEVEL 3,C4000\nMAYOR PRO TEM,,Y4000\nSVP DIST,MCKESSON CORPORATION INC.,H4400\nBanker,Cor Trust Bank,Y4000\nProfessor of Medicine,Boston University School of Medicine,H5150\nStrategic Communicat,Shipley & Associates Inc,G5200\nRESTAURANT MGR.,TROMI CORPORATION,Y4000\nDeputy Executive Dir,NGLTF,Y4000\nMANAGER,GOULDS ELECTRIC OF IL,G5600\nHABUSH HABUSH & DAVID,,Y4000\nPartner,Roseland Partners LLC,Y4000\nCOMPUTER SCIENTIST,BEA SYSTEMS,Z9500\nCEO,STAR WEST ASSOCIATES/CEO,Y4000\nBUSINESS OWNER,\"DANSOURCES TECHNICAL SERVICES, INC.\",Y4000\nDOCTOR,SELF-EMPLOYED,F3100\nSO EASTERN MI CARDIAC SUR,,H1130\nOWNER/PRESIDENT (CON,\"F. MILLER & SONS, INC\",Y4000\nVP Quality Systems,Bimbo Bakeries USA,G2100\nMARLYN BRILL,,Y4000\nEXECUTIVE,CSFB,Y4000\nJUDGE,COURT OF COMMON PLEAS,X3200\nExecutive,\"Transcentive, Inc.\",Y4000\nLAWRENCE AND WALSH PC,,Y4000\nWESTERN RIVER EXPEDS,,Y4000\nAT,BRIAN C. EDWARDS ATTORNEY AT LAW,K1000\nSTEEL FAB,,\nEpiscopal Priest,\"St. Peter's Episcopal Church\",X7000\nMANAGING,PILADELPHIA STOCK EXCHANGE,Y4000\nCOO,HCR MANOR CARE,H2200\nSenior Partner,Condert Brothers,E1210\nVICE PRESIDENT,\"RWM MANAGEMENT, INC.\",G5270\nTextile Designer,Susan Dempster,Y4000\nSECRETARIAL,RETIRED,X1200\nFINANCIAL ADVISOR,MORAN STANLEY,Y4000\nPresident,\"RWM Management Co, Inc\",J1200\nCONSULTANT,HEAVY CONSTRUCTION,B1500\nCEO,\"FARKAS, BERKOWITZ & CO\",Y4000\nLOGGING,\"MOORE'S LOGGING, INC.\",Y4000\nEXECUTIVE,P. & E. CAPITAL INC.,Y4000\nTHERAPIST,CONSELING CONNECTIONS,J5100\nPresident,Sherpa Corp.,Y4000\nOWNER,QUALITY FOODS INC,Y4000\nOwner,Gorham House of Pizza,G2900\nNURSING HOME OWNER,ARBORS OF HOP BROOK,Z9500\nDREW FARMS,,A1000\nPHYSICIAN,NWIA UROLOGISTS,H1130\nParalegal,Green County Human Services,Y4000\nDENNIS WHILE INVESTMENTS,,F4000\nPhysician,Watershed Urology,H3200\nRESTAURA,MARTINS RESTAURANT SYSTEMS,G2900\nROBERT B CONNELLY REAL ESTATE,,G2900\nOWNER,G&S INSULATING LLC,Y4000\nOUTDOOR ADV,STAFFORD COMMUNICATIONS,G5230\nSELF-EMPLOYED,MANATEE PRINTERS,C1300\nINVESTMENT ADVISOR,LUTHER KING CAPITAL MANAGEMENT,F2600\nWILLIS CORROON AMERICAS - CENTRAL,,F3100\nCATO & CATO PLUS,,G4100\nIT SUPERVISOR,CITY OF SEATTLE,X3000\nTHE SEMANS COMPANY,,Y4000\nCHIEF FINANCIAL OFFICER,COMMUNICATIONS VENTURE CORP,Y4000\nCARE AMERICA HEALTH PLANS,,F3200\nManager,FCM,J5100\nRestaurant,Mortons Restaurant,G2900\nSR ONE LIMITED,,F0000\n\"EVP for Comms & Gov't Affairs\",Science Applications Intl Corp,D3000\nENGINEER,YARDNEY,J1200\nEXECUTIVE RESOURCES INC.,,G5250\nHOMEMAKER,NOT EMPLOYED,K1000\nRegional Account Man,Saxon Mortgage,F4600\nVALLEY BANC SERVICES,,F1100\nProject Scientist,University of California,Z9500\ndentist,self,G0000\nRESTAURANT OPERATOR,D.E. FOODS INC.,G2900\nEXECUTIVE MANAGER,UNITEDHEALTHCARE,H3700\nOwner,Carlos Reynoso CPA,F5100\nCEO,Tenet Healthcare Corporation,H2100\nGolf Course Architec,Robert Trent Jones II LLC,Y4000\nengineer,\"Alaka'i Consulting\",B4400\nAttorney,\"Lee & McShane, P.C.\",K1000\nMCKENZIE MASONRY,,B3000\nCOASTAL MA FOOT & ANKLE CENTER P A,,H1130\nMANAGEMENT,LIBERTY UNION LIFE INS.,F3300\nPhysician,Katy Internists,Y4000\nGENERAL MANAGER,HOMEWOOD SUITES BY HILTON,T9100\nPRESIDENT,B & I OF FLORIDA  INC.,Y4000\nSpecial Education Consultant,Self,J7400\nCEO,ROC FUND,Y4000\nOWNER,DEVANE BUILDERS,Y4000\nHCA CHICAGO LAKESHORE HOSPITAL,,H2100\nNURSE ANESTHETIST,WESTERN CAROLINA UNIVERSITY,H1710\nASST TO TREASURER,,Y4000\nPresident,\"ALL-CIRCO, INC\",G5200\nCHEIF OPERATING OFFICER,DIAMOND  CARTER TRADING,F2100\nPRESIDENT,ELLIS DIVERSIFIED/PRESIDENT,Y4000\nCEO,Kessler Financial Services,F1400\nOwner,Whitehouse Advertising & Design,G5210\nOWNER,HIGH COUNTRY LUMBER & MULCH,A5000\nCROSS PETROLEUM SERVICE,,E1100\nPHYSICIAN,SE RADIOLOGICAL ONCOLOGY,H1130\nParalegal,Walkup Law Office,K1000\nrequested,\"Harrison's Moving & Storage\",Y4000\nEXECUTIVE,ANDERSON GROUP,F2600\nFREEDOM GROUP PARTNERSHIP,,Y4000\nCALL CENTER MA,NATIONWIDE INSURANCE,F3100\nOWNER/PRINCIPAL/PARTNER,MAP PROPERTIES LTD.,B2000\nPHYSICIAN,GREAT LAKES DERMOTOLOGY,H1130\nMCCORMACK BARON & ASSOCIATES,,F4100\nPRESI,GEORGE WATERS CONSULTING SERV,Y4000\nOWNER,AVL TECHNOLOGIES,C4600\n\"President, COO\",\"ProLogic, Inc.\",C5130\nINFORMATION REQUESTED PER BEST EFFORTS,NORFOLK SOUTHERN CO.,T5100\nINVESTMENT ANALYST,PAULSON & COMPANY INC./INVESTMENT A,F2700\nBRUCE A. BODNER & CO./PRESIDENT/CEO,,F4100\nCHIEF FINANCIAL OFFICER,\"ANALYTICAL GRAPHICS, INC.\",D2000\nEngineer,\"Engineering Associates, Inc.\",B4400\nDISABLED,DISABLED,J1100\nJOSTENS INC,,J1100\nOWNER,B & D GROCERY,G2400\nGeneral Counsel,Praxair Inc,M1000\nTEACHER,HAMTRAMCK PUBLIC SCHOOLS,X3500\nEXECUTIVE,DOCK3,Y4000\nBest Effort,Professor,H5100\nGABLER DRUG STORES,,G4900\nINVESTMENTS,RIGGS CAPITAL PARTNERS,F0000\nPRESIDENT,PORTICO PUBLICATIONS,C1100\nAttorney,JPMorgan Chase & Co,F1100\nCEO,HAWKINS CO,Y4000\nCITY MOTOR COMPANY,,T2300\nLETTERPRESS,SELF-EMPLOYED,G0000\nSchool Administrator,Public School Department,X3500\nATTORNEY,DAVIS WRIGHT & TREMAINE LLP,K1000\nEntrepreneur,Wise Consulting Associates,Y4000\nPASTOR,CHARITY BAPTIST CHURCH,X7000\nPresident,Skyview Cooling Company,B3400\nATLANTIC INDUSTRIES INC,,G5300\nAMES GROUP,,T9000\nLANDMARK LUGGAGE,,G4600\nCEO,Coast & Harbor Associates,Y4000\nATTORNEY,\"BEAUCHAMP LAW OFFICE, P.C.\",K1000\n\"PRINCIPAL, PRESIDENT\",\"NEXTCO, INC.\",Z9500\nAttorney,\"Kaufman, Bern, Deutsh LLP\",K1000\nReal Estate Broker,Jack Holler Commercial Real Estate,F4000\nExecutive,Van Schepen Company,B2000\nTeacher,Pensacola Christain College,H5200\nFARM EQUIPMENT MFG,,A4200\nIT CONSULTANT,\"INTELLIFORMATICS, LLC\",Y4000\nConsultant,Fred Herndon Home Inspctn Inc.,Y4000\nVP Engrg & Mfg Cg,\"Air Products and Chemicals, Inc.\",M1000\nN/A,N/A,G2400\nPRESIDENT & CEO,NATIONAL SHOOTING SPORTS FOUNDATION,J6200\nNEURO,NEUROSURG & SPINE SPECIALISTS,H1130\nPARTNER,GENEVA CAPITAL,F0000\nPRESIDENT,DISCOUNT AUTO INC.,T2300\nHOMEBUILDING,THE DOWD COMPANY,F4000\nPresident/CEO,Halle Custom Homes,B2000\nPRESIDENT,EAST LAKE LIQUOR STORE,G2840\nHumanitarian aid Worker,United Nations World Food Programme,X9000\nEXECUTIVE,GAP,G4100\nREAL ESTATE,CRO INC,F4000\nGOLDBERG AND ASSOC,,K1000\nK2 INDUSTRIES,,Y4000\nINTERIOR ARCHITECT,EVOLUTION DESIGN,Y4000\nALLENTOWN VALVE CO,,Y4000\nDRAKE REAL ESTATE,,F4200\nInvestment,Morgan Stanley,F2300\nPRESIDENT & CEO,\"MARRIOTT INT'L INC.\",T9100\nPROFESSOR RETIRED,RETIRED,X1200\nAttorney,\"Steers & Steers, P.S.C\",Y4000\nATTORNEY,MINTZ & GOLD,K1000\nPresident,Pumpac,Y4000\nFinance Manager,Interim Healthcare,H0000\nLabor,Illinois Rural Electric Coop,J1200\nEXECUTIVE,\"Hilco Merchant Resources, LLC\",Y4000\nBOLLMAN CHARTER SERVICE INC,,T4100\nHealth Care Administ,Central Connecticut Health Alliance,H2100\nDENTIST,B. THOMAS ELLIS D. D. S. PA,H1400\nCOO,GSS GEAR,Y4000\nReal Estate Broker,AMELIA PLANTATION COMPANY,F4200\nDENTIST,GEORGE W KAY DMD,H1400\nINVESTMENTS,NEWPORT PRIVATE CAPITOL,F0000\n\"Mgr., Div. Sales  JM\",\"Jim Moran & Associates, Inc.\",T2300\n\"GM SALES, FCSD, US\",FORD MOTOR COMPANY,T2100\nREAL ESTATE BROKER,THE MARKET,Y4000\nENGINEER,LOCKHEED MARTIN AERONAUTICAL,D2000\nOwner,Noonan Energy,E1000\nPROGRAM ANAL,DEPARTMENT OF INTERIOR,X3000\nArchitect,PASCUAL & PEREZ,B4200\nMANA,\"EURASIA CAPITAL MANAGEMENT, LL\",F2100\nPresident,Wachovia Securities Financial,F2100\nAttorney,Synergies Consulting,Y4000\nANDIAMO ITALIAN RESTAURANTS,,G2900\nPACIFIC UTILITY EQUIPMENT,,Y4000\nOwner,D Weeks-alexander & Assoc. Inc.,Y4000\nNORWALK LAMIRADA UNIFIED SCHOOL DIS,,X3500\nDirector of Operatio,Prometheus/GWU,Y4000\nP P A INC,,M1100\nresearch scientist,Partners Healthcare,J1200\nPRESIDENT/CHIEF EXECUTIVE OFFICER,WESTERN BANK,F1100\nConsultant,Govt. Consutling,Y4000\nCHAMPION MINE SUPPLY INC,,E1200\nFREEBORN & PETERS,,J7120\nREALTOR,PRITCHETT REALTY CORP.,F4200\nCONTROLLER,GENERAL MASONRY,B3000\n\"FISCHBEIN, BADILLO ET AL\",,K1000\nSAN AUGUSTINE CLINIC,,H1100\nDesigner,\"Miriam Moore Design Studio, LLC\",Y4000\nSOCIAL WORKER,CHAPEL HILL-CARRBORO CITY SCHOOLS,Z9500\n\"VICE PRESIDENT, FINANCE\",THERMO FISHER SCIENTIFIC,M9000\nOWNER & PRESIDENT,NEW ORLEANS SAINTS,G6400\n\"OWNER OF JBK, INC.\",\"JBK, INC\",Y4000\nPresident & CEO,Mutual Insurance Company of Lehigh Cou,F3100\nCEO,INTEGRITY SYSTEMS,Y4000\nSales Manager,FirmWorks,Y4000\nTRENAM KEMKER ET AL LAW FIRM,,K1000\nConsultant,Infodynamics LLC,J1200\nATTORNEY,HERMAN & MERMELSTEIN PA,J5100\nOWNER,\"ROCKY HILL ADVISORS, INC.\",Y4000\nHARRIET HNDRSN,,Y4000\nCLERK,KING COUNTY,X3000\nROAD ROCK COMPANIES,,Y4000\nHOMEMAKER,N/A/HOMEMAKER,G0000\nPHYSI,UNION REGIONAL MEDICAL CENTER,H2000\nSONESTA INTERNATIONA,,T9100\nEXECUTIVE,PAYLESS,Y4000\nPRESIDENT,CANDLELIGHT LODGE & COTTAGES,G1200\nPhysican,GHS,Y4000\nExecutive Vice Presi,Denny Miller & Associates,K2000\nInsurance Broker,Henderson Insurance,F3100\nExecutive VP of Business Development,Eric R Sisser Inc,Y4000\nCEO,HENNY PENNY,Y4000\nState Representative,Ohio House,Y4000\nVICE PRESIDENT,CENTURY MORTGAGE COMPANY,F4600\nEpidemiologist,GW University,H5100\nEXECUTIVE,SHUMAR WELDING INC,Y4000\nINFORMATION TECHNOLOGY,DRS TSI,Y4000\nMortgage banker,The Struck Group (Residential Mort,J7300\nPRESIDENT,CRL,J1100\nA,PAUL HASTINGS JANOFSKY AND WALKER,K1000\nPRESIDENT,DALE GRUBER CONSTRUCTION INC.,B0500\nENVIRONMENTAL MECHANICAL SERVICES,,Y4000\nAttorney,Engels Pertnoy Solowsky & Alle,K1000\nself employed,myneni inc,Y4000\nphysician,\"John H. Potomski, Jr., D.O., P.A.\",Y4000\nOwner,Public Affairs Consulting,K2000\nLIBERTY UNION LIFE ASSURANCE COMPAN,,F3300\nSTUDENT,NONE,F2500\n\"ceo, GarageBand.com\",garageband records,J1200\nVICE CHAIRMAN,NATIONAL REALTY & DEVELOPMENT CORP.,F4200\nDEALER,BARNETT AUTO GROUP,Y4000\nSEALAND DEVELOPMENT,,Y4000\nSENIOR COMMUNICATIONS ENGINEER,TECHNICAL CONTROL CONSULTANTS LLC,Y4000\nPastor,Ministerios Rhema,X7000\nOwner/Manager,Austin Drug,H1750\nSCOPE,GIC-COMM,C5000\nPRESIDENT,FRISCH FARMS,G1200\nCEO,NEW IMAGE BUILDING SVC,Y4000\nRICHARD I RUBIN & CO,,F4000\nDIR. OF,TOYON RESEARCH CORPORATION,Y4000\nCONSULTANT,SELF,B3000\nVICE,COMMUNITY TECTONICS ARCHITECTS,B4200\nIT MANAGER,US SECURITIES AND EX,F2100\nVICE CHAIR,\"HOLLOWAY & CO., PLLC\",Y4000\nTRIBUNE BROADCASTING,,C2100\nALAS INC.,,Y4000\nTHE EAST LOS ANGELES COMMUNITY UNIO,,F4100\nExecutive,First Southern Services,Y4000\nDOCTOR,HEALTH PRINT MEDICAL,J1200\nOWNER/PARTNER,WESTERN VILLAGE SHOPPING CEN,Y4000\nFOSTER WHEELER USA CORPORATION,,B4000\nSculptor,Self Emplyed,X0000\nCEO,DS WATERS OF AMERICA,G2600\nCOUNTY COMMISSIONER,JEFFERSON COUNTY WV,Y4000\nWILLIAM D HARRIS & ASSOC,,Y4000\nSOCIAL WORK,ASSOCIATES OF COMMUNITY,Y4000\nN&A INC,,Y4000\nCHAIRMAN & CEO,CHRYSLER LLC,T2100\nExe. VP,BCBS of Alabama,F3200\nVASCULAR SURGEON,\"LAKE WASHINGTON VASCULAR, PLLC\",Y4000\nPARKER & LUNDY,,K1000\nSalesman,Automotive Supply Associates,Y4000\nREAL ESTATE,BERGER AND BERGER,F4000\nBUCKHEAD AMERICA,,T9100\nAURORA MEDICAL GROUP,,H1100\nReal Estate Agent,Discovery Properties,F4000\nATTORNEY,CHARLES RIVER LABORATORIES,G5200\nKUJAWSKI & FARBER,,Y4000\nPAPPES PROPERTIES INC,,Y4000\nVP GOVERNMENT PROGRAMS,IBM,C5100\nMedical Doctor,Clifton Medical Center,H2100\nSales,Sets,J1200\nConsultant,Health Policy Source,Y4000\nPresident,Davis Furniture,G1200\nFAST,,M9000\nSALES,MDR VENTURES,Y4000\nDIRECTOR; MILIT,GE AIRCRAFT ENGINES,M2300\nIND. CONTRACTOR,SELF,B3000\nKNI UNIM PRESIDENT,STAFF NURSES ASSOCIATION,Y4000\nINSURANCE AGENT,INSURANCE AGENT,F3300\nCOASTAL COMMUNICATION,,Y4000\nBOARD,EPISCOPAL COLLEGIATE SCHOOL,F2300\nWriter/Editor,California State University,H5100\nTV HOST,CNN,J1200\nPHYSICIAN,UAMS,H1130\nCHAIRMAN,HALL ENTERPRISES,Y4000\nCPA,Mark Lammert Cpa Pa,F5100\nOWNE,ZARINKELK ENGINEERING SERVICES,B4400\nSoftware Sales,Kana Software,C5120\nREAL ESTATE INDUSTRY,,F4200\nVICE PRESIDENT,EURO STAR INC.,J5100\nINFO REQUESTED,SALOMON SMITH BARNEY,F2100\nATTORNEY,SHEPPERD,Y4000\nPRESIDENT,BLAYLOCK & PARTNERS,Z9500\nOWNER,UAG,Y4000\nPRESIDENT,ESSENTIAL SALON PRODUCT,Y4000\nManagement,Schaller Tool & Die Co,M5000\nPHYSICIAN ASSISTANT,PATIENTS CHOICE,Z9500\nBECKETT LOLLI & BARTUNEK,,K1000\nLLC MEMBER,MUSS DEVELOPMENT LLC,J5100\nResearch Scientist,Harvard Medical School,H5150\nInternational Development Specialist,Inter-American Dev Bank,Y4000\nCPA,JGR  Financial Services,F0000\npartner,Ernst & Young,K2000\nTHE STEEL WAREHOUSE,,F4500\nOWNER,RIO ENERGY INTERNATIONAL,E1000\nADMINISTRATOR,CITY OF HOUSTON,X3000\nEXEC.,LUCENT TECHNOLOGIES,C4600\n\"HERTZ, SCHRAM & SARETSKY PC\",,K1000\nOWNER,GREAT AMERICAN EQUIPMENT CO,Y4000\nPRESIDENT,\"JOE T. SMITH, INC.\",Y4000\nASSN OF NE CAAS,,JH100\nMERCHANDISING,\"MERCHANDISING ASSOCIATION, INC.\",Y4000\nKATZ GREENBERGER ET,,Y4000\nFairfax County Public Schools,Teacher,H5100\nPRESIDENT,\"OHIO CHILDREN'S HOSPITAL ASSOCIATION\",Z9500\nCHAIRMAN OF T,STEPHEN G. YEONAS CO.,F4200\nRealtor,The Kane Company,F4000\nCOLLEGE PROFESSOR,CLARK UNIVERSITY,H5100\nHARVEST MANAGEMENT,,Y4000\npresident,corbett construction,B1500\nPublic Defender,Tharpe & Howell,Y4000\nattorney,Thatcher Proffitt,K1000\nBAKERY CHEF/PRESIDENT/CEO,,G2100\nGASTROENTEROLOGIST,SELF EMPLOYED,H1130\nATTORNEY,SKADDEN APPS,Y4000\nRESEARCHER,WESTERN INVESTMENTS,JE300\nPresident,Brooks Hanna Ford,T2300\nLANDMAN,ANADARKO PETROLEUM CORPORATION,J2200\nPVT DECTIVE,,Y4000\nfinancial manager,SAGRES PARTNERS,Y4000\nMILWAUKEE MEDICAL CL,,J7120\nOWNER,MICRO CHEMICAL,A3300\nSr. VP of Production,\"Morgan Creek Productions, Inc\",Y4000\nPresident,Fleet Medic Ltd.,Y4000\nEcological Restorationist,Self employed,Y4000\nDir. IT Systems Development,Sikorsky Aircraft,D2000\nSTRAND APPLES INC,,Y4000\nMORIDGE MFG INC,,A4200\nEXECUTIVE,ELM ELECTRIC INC.,Y4000\nKENNEL OWNER,SELF/KENNEL OWNER,Y4000\nACCOUNTANT,LAURITA EXCAVATING,B3600\nDIVISIONAL SALES MANAGER,JOHN HANCOCK FINANCIAL SERVICE,F3100\nSPIRITUAL COUNSELOR,SELF-EMPLOYED,Y4000\nEXECUTIVE,ABITA BREWING CO.,G2810\nNETWORK ENGINEER,EAGLENET/NETWORK ENGINEER,Y4000\nATTORNEY,\"DOMNITZ & SKEMP, SC\",Y4000\nNORCORT ENTERPRISES INC,,Y4000\nPOLIN TRUCHIN REAL ESTATE,,F4000\nReal Estate,Marker Our Realty,F4200\nHousewife,Mich State Univ,Y4000\nAttorney,Mercer University,H5170\nPhysician,Shawnee Mission Medical Center,H1100\nSECRETARY,WESTERN KY UNIVERSITY,H5100\nVP-FINANCE,MACERICH,F4100\nVP - Government Affa,\"QC Holdings, Inc.\",F1400\nPROGRAM MANAGER,RED HAT,C5120\nPresident & CEO,Washington Group International,B1000\nEXECUTIVE,BROADWAY TRUCK STOPS,E1170\nOracle - Asia Pacific,,Y4000\nNURSING HOME ADMINIS,L & L LIMITED,Y4000\nAttorney,Annapol Schwartz et. al.,K1000\nEngineer,Industrial Fire,J1200\nInsurance Broker,John L. Wortham & Son L.p.,F3100\nMARKETING PUBLI,JOHN WILEY AND SONS,C1100\nSTATE D,U.S.D.A.-FEDERAL GOVERNMENT,X3000\nWRITER,NONE,Z9500\nINT. REP,UNITED AUTO WORKERS,LM150\nGREENSTREET PARTNERS,,F4100\nOwner,99+ Discount,G4000\nMANAGING PARTNER,I.F.O.A.,F2000\nOrthopaedic Surgeon,Virginia Commonwealth Universi,H1130\nPHYSICIAN,M. MEDICAL CENTER,H1100\nConsultant,\"Benenson Strategy Group, LLC\",G5260\nCo-Chairman,\"Manatt, Jones Global\",K1000\nTRUCK AND BUS GROUP,,T2100\nCFO,Access Closure,H4100\nPresident,Big Save Inc,Y4000\nFUNERAL DIRE,\"D'ESOPO FUNERAL CHAPEL\",G5400\nCOO,JACKSONVILLE PORT AUTHORITY,T6000\nVIDEO,HORBOR AUDIO,Y4000\nVICE PRESIDEN,\"PARETTI IMPORTS, INC.\",Y4000\nCurator,Carnegie Institute,J1200\nE.V.P. & C.M.O.,Southern Company,E1600\nUNIVERSITY OF CALIFORNIA SAN FRANCISCO,ASSOCIATE CHANCELLOR,Z9500\nCHEMIST,MOMENTIVE PERFORMANCE PRODUCTS,M1700\nCONTRACTS MANAGER,\"CYRCA, INC./CONTRACTS MANAGER\",F3100\nPresident,Tennessee Asphalt Company,B5100\nBLUE SHIELD OF TEXA,BLUE CROSS,F3200\nPROGRAM STAFF,KENTUCKY EDUCATION ASSOCIATION,L1300\nPALEY ROTHMAN & GOLDSTEIN,,Y4000\nDIRECTOR,RETS INSTITUTE,Y4000\nCounsel,One Beacon Insurance,F3100\nDIRECTOR,DELEX SYSTEMS INC.,D4000\nATTORNEY,JEROME GIBSON/ATTORNEY,Y4000\nMUTUAL OF AMERICA LIFE INSURANCE CO,,F3300\nFINANCIAL CONSULTANT,BRYANSTON MANAGEMENT,Y4000\nManager,Avaya,J1200\nVice President-Human,Chelsea Property Group; Inc.,F4100\nRECRUITER,CAREERS IN NONPROFITS,Y4000\nOWNER / PRESIDENT,FORREST TIRE,M1500\n\"WOMEN'S LIFE COACH\",BRENNER EXECUTIVE RESOURCES,Y4000\nBB&T INSURANCE/INSURANCE - AGENT/BR,,F3100\nPRESIDENT,KAPPES & CASSIDAY,Y4000\nDIRECT,KOCH DEVELOPMENT CORPORATION,B1500\nCEO,CALENDAR CLUB/CEO,G4600\nMETAL MOULDING CORPORATION,,Y4000\nstylist,Self,G5100\nFinance,Bass Trading,F2100\nWESTGATE OIL COMPANY,,E1170\nCITY OF SAN RAFAEL,,X3000\nSTABLER ASSOCIATES INC,,Y4000\nPACIFIC TRAILS,,Y4000\nSR. MANAGING DIR,PRUDENTIAL INVEST.,F3300\nEmergency Physician,Calif Emergency Physicians,Y4000\nINVESTOR,\"CYPRESS ASSET MANAGEMENT, INC.\",F2100\nEducator,University of South Florida,H5100\nConsultant,RM2 Consultants,K2000\nNONPROFIT MANAGER,SWEET WATER,Y4000\nGILBERT VETERINARY HOSP,,A4500\nEngineer,\"Republic Refrigerations, Inc\",Y4000\nEmergency Department,Self-Employed,G0000\nstudent,student,X4100\nPHYSICIAN,INLAND IMAGING PS/PHYSICIAN,Y4000\nLETTER SENT,,H5000\nCORP VP; MSN COM/MERCHANT SERV,Microsoft,C5120\nEXECUTIVE,DUPAGE MACHINE,M2300\nALBRITTON CAPITAL MGMT,,F0000\nDesigner,Cg Design Llc,Y4000\nPARTNER,\"TANIMURA AND ANTLE, INC\",A1400\nEMT,TOWN OF WILLIAMS,Y4000\nRetired professor of,Self-employed,G0000\n\"Owner - Satrad, Inc.\",Self-employed,G0000\nOwner,The Diggs Group,F2600\nEXECUTIVE PLUMBING WHOLESELLER,PLUMBERS SUPPLY COMPANY,B3400\nLEXINGTON MEMORIAL HOSPITAL,,H1100\nWILLIAM LYON & ASSOCIATES,,B2000\nPhysician,Wetzel Clinic,H1100\nPRODUCER,MADE IN AFRICA TV,C2000\nATT,ALLEN DYER DOPPELT MILBRATH ETC,K1000\nPR/Marketing Consultant,\"Strategy Maven, Incorporated\",Y4000\nAttorney,S & E Azriliant,Y4000\nSAFE HARBOR,,E5000\nPHYSICIAN,THE JACKSON CLINIC,H1000\nAgent/ Owner,\"McCannon Hunt Insurance Agency, Inc\",F3100\nNATL ASSOC OF LIFE UNDERWRTERS,,F3300\nPsychiatrist,Center for Health Care Services,Y4000\nOwner/Manager,American Alarm,J1100\nINSURANCE,AMERICAN INSURANCE GROUP,J1100\nInformation Requested,Veterans Administration,J1200\nInterior Designer,US Army Corps,X5000\n,THE CENTER FOR TEACHING & LEARNING,Y4000\nOWNER-PANAX LTD,,Y4000\nChief Executive Officer,State Bank & Trust of Kenmare,F1100\nGOAL COMM,,J5100\nENGINEER,LIMELIGHT NETWORKS,Y4000\nSELF-EMPLOYED,LAKHANI ENTERPRISES,Y4000\nCOVA CORP,,Y4000\nATTO,JAMES E BEASLEY ESQ ANDY STERN,K1100\nVICE PRESIDENT,SIERRA MACHINERY,M2300\nAttorney,Fryer Law Firm,J7300\nSr. Vice President,\"National Media, Inc.\",G5210\nCXI TRUCKING,,T3100\nPUBLIC RELATIONS,THE GALLOWAY GROUP,Y4000\nPHARMACIST,J. AND D PHARMACY,G4900\nCEO,INNOVATE PARTNERS INC,F2100\nProgram Operations Manager,Turner Broadcasting,C2200\nINFORMATION REQUESTED,INFORMATION REQUESTED,F2200\nEYEGROUP & ASSOC,,H1100\nPRESIDENT,MCINNES ROLLED RINGS,Z9500\nPRESIDENT,\"MAE RESOURCES, INC\",E1120\nVP RES,WHITEHALL-ROBINS HEALTHCARE,H4300\nFarmer,Anthony Crabb,JE300\nHOMEMAKER,N/A,H1400\nHealthcare Executive,Group Health Cooperative,Z9500\nPHYSICIAN,CJW MEDICAL CENTER,H1130\n\"EXECUTIVE DIRECTOR, CLINICAL SERVICES\",MEDCO HEALTH SOLUTIONS,H3700\nBEEHIVE SCHOOL,,Y4000\nCOMMERCIAL REAL ESTATE BBROKER,COLLIERSABR.COM,C5140\nLobbyist,Novo NorDisk,H4100\nCEO,California Pharmacists Association,Y4000\nChief Executive Offi,Composites One LLC,G3000\nBanking,RBS Greenwich Capital,F2100\nCOHEN DIPPELL/SECRETARY/TREASURER,,C2100\nDESIGNER,HEDGEROW LIMITED,J1200\nCFO,LAST CHANCE FOR ANIMALS,J7600\nPresident and CEO,Aloha Airlines,T1100\nATTORNEY,CITY OF CLIFTON,X3000\nVERNICK,REMINGTON,B4000\nattorney,Paul Weiss Rifkind Wharton & Garri,K1000\nCHA,GRAY MANUFACTURING COMPANY INC.,Y4000\nVICE PRESIDENT - FINANCE,PARKER TOWING,T3100\nREAL ESTATE DEVELOPER,WORLD WIDE HOLDINGS CORP.,Y4000\nWILD BLUE,,Y4000\nPresident,The Christie Cookie Co.,G2100\nBERENDS-MOORE & COMPANY,,Y4000\nGARDNES CARTON & DOUGLAS,,K1000\nFREIGHT FOR,SOS GLOBAL EXPRESS INC.,Y4000\nMASS BAY TRANSIT AUTHORITY,,T4100\nMIDATLANTIC ORTHOPAEDIC SPECIALISTS,,H1130\nWILD WELL CONTROLS INC,,E1150\nATLANTA ORTHOPAEDIC GROUP,,H1100\nAccountant,Swiss Real Estate,F4000\nProject Manager/Senior Network Engi,Windsor Capital Group,F0000\nCO-OWNER,PEDIATRIC DENTISTRY,H1400\nBANKERS,KEYBANK,F1100\nUNIVERSITY PROFESSOR,STETSON UNIVERSITY,H5100\nActuary,Travelers Insurance Companies,F3400\nAttorney,Law Office Of Enrique Arevalo,K1000\nLAW PROFESSOR,PACE UNIVERSITY,H5100\nLINDNER AND COMPANY,,G2400\nREAL ESTATE DEVELOPE,\"RENAISSANCE REALTY GROUP, INC.\",F4200\nAttorney,Coriden Law Office,K1000\nPR 21,,Y4000\nSELF-EMPLOYED,GENERAL CONTRACTOR,B1000\nOwner,Michael Jarominski Cpa,F5100\nPRESDIENT & CEO,EMERGENT BIOSOLUTIONS INC.,D9000\nPilot,\"Kaz'S Flying Service, Ltd\",Y4000\nRETAIL,VALLEY BIKE AND SKI,Y4000\nnone,none/disabled,Y1000\nFILIP TIFFENBERG ATTORNEY AT LAW,,K1000\nInvestor,GFI Energy Ventures,E1000\nLAURA BUICK,,T2300\nEXECUTIVE,ATLANTIC AUTOMOTIVE CORP,Y4000\nSAMSON INVESTMENT,,Y4000\nRESTAURANTEUR,RALPH BRENNAN RESTAURANT GROUP,G2900\nTeacher,South Redford Schools,J1200\nED,INSTITUTE OF READING DEVELOPMENT,H5000\nOWNER,YOUR BULLETIN BOARD,Y4000\nPresident,Cart Man Inc.,Y4000\nATTORNEY,STEPTOE & JOHNSON LLP,J1200\nE & W SERVICES,,Y4000\nMILLER & BONDURANT,,K1000\nCORE PROPERTIES,,F4000\nInsurance sales,Loessel Schaaf,Y4000\nARDEN DEVELOPMENT,,Y4000\nPHYSIC,OUR LADY OF LOURDES HOSPITAL,H2100\nTHE ASSOCIATED GROUP,,C4200\nBANKING,THE UPSTATE NATIONAL BANK,F1000\nPRESIDENT,\"ARCADE AMUSEMENTS, INC.\",Y4000\nPORTFOLLO M,CARMEL ASSET MANAGEMENT,Y4000\nGRANT KONCALINKA & HARRISON,,K1000\nPrincipal,Progressive Capitol Group,Y4000\nSAPERSTEIN GOLDSTEIN,,K1000\nBENEFICIAL INVESTIGATION SERVICES I,,Y4000\nTIMES MIRROR MULTIME,,C5100\nProject Manager,Nycdh,Y4000\nBOSTON UNIV MEDICAL SCHOO,,H5150\nBAYLEY FAMILY L P,,Y4000\nGEORGE DEGRAGARIO COMPANY,,Y4000\nPRESIDENT,BLEVINS; INC.,G1200\nDAMON ASSOCIATES,,C5000\nPresident and CEO,Mercy general health partners,Y4000\nCONSULTANT,LIBERTY CONTRUCTION,Y4000\n\"PRESIDENT, EMEA\",TURNER BROADCASTING INTERNATIONAL,C2200\nBRYAN & EDWARDS VENTURE CAPITAL,,F2500\nATTORNEY,\"GLINN, SOMERA & SILVA LLP\",Y4000\nPresident,Global Transport Development Group,Y4000\nRICH & CARDMILL,,Y4000\nPHYSICIA,BERGENLINE XRAY DIAGNOSTIC,H1130\n\"Scharbauer Ranch, LLC\",self,A3000\n\"MSA, PC\",,Y4000\nPHYSICIAN,HEALTHMARK CENTERS,H0000\nOwner,\"D P O'Donovan, LLC\",Y4000\nPartner,Vinson & Elkins,K1000\nMILLER REALTY,,F4200\nEXECUTIVE VICE PRESIDENT-RESIDENTIAL L,HOMESTREET BANK,F4600\nAir Force Enlisted,Us Military,X5000\nATTORNEY,NAGER & ROMAINE & SCHNEIBERG,Y4000\nASSOCIATE,PHIL GIARRIZZO CAMPAIGNS,Y4000\n\"THE O'CONNOR PARTNERSHIPS\",,J5100\nEngineer/Owner,\"Cherokee Enterprises, Inc\",Y4000\nZEELAND PUBLIC SCHOOLS,,X3500\nLIBRARY CONSULTANT,STATE OF MAINE,X3000\nUHA,WVU,H5100\nFLAGLER AUTOMOTIVE INC,,Y4000\nHEALTH CARE OWNER,SELF-EMPLOYED,G0000\nVICE PRESIDENT STATE AFFAIRS,APOLLO GROUP,H5300\nLabor Leader,\"New Union Project, Afscme\",Y4000\nFARMER ACCOUNTANT/MANAGER,SELF-EMPLOYED,A1000\nDesigner,Benet,Y4000\nPhysician,Washington University School of Medici,H1130\nAdministrator,Passaic Valley Sewage Co.,Y4000\nCEO,\"AZTEC ENERGY PARTNERS, INC.\",E1000\nBranch Manager,Alpha Corporation,B0500\n\"EXECUTIVE VICE PRESIDENT, ADVERTISING\",A+E NETWORKS,C2200\nSYSCO FOOD SERVICES OF PHILA INC,,G2500\nReal Estate,GHA Holdings Inc,F4000\nLOBBYIST,\"JENSEN PUBLIC AFFAIRS, INC/LOBBYIST\",Y4000\nKANSAS HEART INSTITUTE,,H1130\nMASSACHSUETTS NATIONAL COMMITTEEWOMAN,MASSACHSUETTS NATIONAL COMMITTEEWOMAN,Y4000\nDoctor,Orthopedes Northeast,H1130\nBusiness Owner,EnduroVista,Y4000\nTRUCKING,UTLEY INC.,Y4000\nPHARMACEUTICAL,AEROTEK,G5250\nEXECUTIVE,CLEMENTS MANAGEMENT,G2900\nExecutive,Kinoh Inc.,Y4000\nowner,Montgomery Communications,Y4000\nInformation Requeste,\"Haynes and Boone, LLP\",K1000\n\"DIRECTOR, EXTERNAL REALTIONS\",DAIRYLAND POWER,A2000\nBL Companies,Engineer,K1000\nCEO,\"The Nation's Triathlon\",Y4000\nAUTO DEALER,COUNTY PONTIAC,T2300\nOIL & GAS EXPLORATION & PROD,,J6200\nSelf employed,Embrey Interests,Y4000\nCEO/PRESIDENT,ITC TRADING COMPANY,G0000\nVICE PRESIDENT - GOV,FORD MOTOR COMPANY,T2100\nATTORNEY,EVANS FELDMAN & BOYER PC,Y4000\nGENERAL MANAGER,\"CABLE ONE, INC.\",C2200\nMANAGE,\"PRACHI'S FINANCIAL MART INC.\",F0000\nATTOR,LAW OFFICE OF DARRELL DETHLUP,K1000\nPRESIDENT,LINDEN ORCHARD,G1200\nPRODUCTION MANAGER,LANDOR ASSOCIATES,Y4000\nSELF EMPLOYED,INFO REQUESTED,G5200\nSELF EMPLOYED/ATTORNEY/WRITER,,J7400\nPRESIDENT,GIBSON INSURANCE GROUP,F3100\nOwner,\"McShanes, Inc.\",Y4000\nCFO,Norfolk Southern Corporation,T5100\nADMINISTRATIVE,PAINT WORK INC./ADMINISTRATIVE,B3000\nConsultant,SAIC,J1200\nPartner,William & Jensen,K2000\nDENTIST,ENDODONIC SPECIALIST,Y4000\nOWNER,MARKET-LOGISTICS,Y4000\nN/a,Retired,Z9500\nExecutive,Diamond Cluster International,G5270\nBLUESTONE PETROLEUM P,SELF EMPLOYED,Y4000\nCHEMIST,I.I.T. RESEARCH INSTITUTE,Y4000\nProfessional Engineer,\"Walker Previti, Holmes & Assoc\",Y4000\nPresident,Scotia Group,Y4000\nPresident,Rug Lady-authentic Oriental Rugs,Y4000\nPRESIDENT,J HARRIS DEVELOPMENT CORP,B2000\nLARGER INCORPORATED,,B0500\nElectrical Contracto,Environmental Control Corporation,B3200\nMANAGER - FINANCIAL LEADERSHIP DEVELOP,GE CORPORATE,M2300\nRETAIL,GEORGE GREENE,Y4000\nVENTURE CAPITALIST,SELBY VENTURES,Y4000\nPRES,AMERICAN SCIENCE & ENGINEERING,B4400\nPRES,VOLUNTARY EMPLOYEE BEN. ADVIS.,Y4000\nReal estate executiv,Layton-Belling & Associates,F4100\nCeo,Phoenix Bio Sciences Inc.,Y4000\nPROGRAMMER,DYNAMIC CREDIT PARTNERS LLC,Y4000\nChairman of the Board and CEO,Greif Brothers,Y4000\nAttorney,Ian N Friedman & Associates,K1000\nDFW HOSPITAL COUNCIL,,H2100\nMERCANTS CREDIT ASSOCIATION,,Y4000\nCo-owner,\"Rezmer, Inc.\",F4200\nEXECUTIV,HAWAII ECON. OPPORTUNITIES,Y4000\nPresident/CEO,Property ID,F4700\nRESORT OWNER,COUNTRY HOUSE INC.,Y4000\nPresident,PR Mortgage,F4600\nDEUTSCH/KERRIGAN/STILEF,,K1000\nGovernmental Relations,Ceymour Consulting Group,G5200\nSALES MANAGEMENT,MEDTRONIC,H4100\nDAMMANN & CO,,A1500\nADMINISTRATOR,UNIVERSITY OF DELAWARE/ADMINISTRATO,H5100\nFAIRMAN DRILLING CO,,Y4000\nOWNER,IMPORT WAREHOUSE INC.,Y4000\nSCIENTIST,HMJ FOUNDATION,Y4000\nT.H.F. REALTY INC.,,J5100\nCEO,Founders Trust Bank,J1200\nATTORNEY,DIGNA OCHOA CENTER,Y4000\nECONOMIC DEVELOPMENT,COMMONWEALTH OF MA,Z9500\nConsultant,Virtual Campaigning LLC (self),Y4000\nwriter,sony pictures entertainment,Z9500\nPHYSICIAN,COMPHEALTH,Z9500\nDIRECTOR,FARM CREDIT SERVICES OF NORTH DAKOT,A4000\nRetired,Naples Community Hospital,H2100\nNEW BREED CORPORATIONS,,T7200\nOwner,\"Mid-Continent Safety, LLC\",Y4000\nBIRCH HORTON BITTNER,,K2100\nJEANSONNE ELOTSON PMC,,Y4000\nSTRATEGIC PLANNING,SELF EMPLOYED,J7400\nConsultant,Texstar Select Services,Y4000\nEngineer,Camp Dresser & Mc Lere,Y4000\nCOUNTRY KITCHEN - PARTNERSHIP,,T9100\nBroker,Horizon Financial,F0000\nCHIEF ACCOUNTING OFFICER,21ST CENTURY ONCOLOGY HOLDINGS,H1130\nFARMER,BARKLEY CO. OF ARIZONA,Y4000\nSELF POLITICAL STRATEGIES & INSIGHT,,Y4000\nLEWIS-BURKE ASSOC,,Y4000\nOVERSEAS SHIPHOLDING CO,,T6200\nMI,TENTMAKERS MISSIONARY FELLOWSHIP,Y4000\nRETIRED,WFMT RADIO,J7400\nInternational Vice President,United Transportation Union,LT000\nDEAN FOODS VEGETABLE COMPANY,,G2100\nNATIONAL REVIEW INC,,J1100\nVice President,TechAmerica,Y4000\nREALTOR,SONNENALP REAL ESTATE,F4000\nBusiness Executive,Clarion Management Resources,Y4000\nDENTIST,HENRY CHIU DDS,H1400\nINFO REQUESTED,HUNTSVILLE GASTROENTEROLOGY,H1130\nBURGESS TRANSPORT,,T3100\nTOWN CLERK,TOWN OF OYSTER BAY N.Y.,X3000\nPRINCIPAL,J.L. WOODE LTD. LLC,F4100\nGREENSTREET CHEMNICK MOEN,,J7400\nBOMI JEWLERS INC,,G4600\nREAL ESTATE E,\"THE STEARNS CO., INC.\",F4000\n\"CEO,\",OMC,Y4000\nSENIOR E,GLENDALE COMMUNITY COLLEGE,H5100\nSARO CHIROPRACTIC HEALTH CENTER,,H1500\nAgent,Rose Williams Real Estate,F4000\nGROUP HEALTH INC,,Y4000\nAdministrator,Hibbard Nsg Hm,H2200\nPresident,Mercedes Boot Co. Inc,Y4000\nRESEARCH PROFESSOR,UNIVERSITY OF MAINE,H5100\nTax Consultant,Wincentive Corp,Y4000\nEXECUTIVE V,FRANKLIN RESOURCES INC.,F2100\nDENTIST,MATTSON DENTAL,H1400\nA P S CORP,,Y4000\nGOVT AFFAIRS,CLARK & WEINSTOCK/GOVT AFFAIRS,K2000\nOwner,Broadmoor Drug Center,Y4000\nATTORNEY,\"COTTON, BLEDSOE, TIGHE & DAWSON, P\",K1000\nPsychologist,Womankind Counseling Center,Y4000\nCEO,WENDYS,G2900\nLIASON,HILLSBOROUGH COUNTY,X3000\nPHYSICIAN,\"METROPOLITAN WOMEN'S GROUP, LLC\",Y4000\nTEACHER,ASD MONTESSORI,Y4000\nCOB & PRESIDENT,,Y4000\nAdvertising Consulta,Self employed,G0000\nPRESIDENT AND CEO,ADVANCED TECHNOLOGY SYSTEM,C5130\nProfessor,\"Cal State University, Monterey Bay\",H5100\nScientist,UT MD Anderson Cancer Center,H2100\nSELF-EMPLOYED,BALLARD SPAHR LLP,K1000\nZIMMER COMPANY,,F4200\nMEMBER,\"THE MATHIS HARPLE GROUP, LLC\",K2000\nFLORIDA FAMILY MUTUAL LIFE,,F3100\nManager,SHAMCO,Y4000\nDirector,Park Bank,F1100\nINVESTMENT BANKER,RICHMAN REAL ESTATE INVESTMENTS,F4000\nUS BUREAU OF LAND MANAGEMENT,WILDLIFE BIOLOGIST,X0000\nlibrarian,Department of State,J1200\nPUBLIS,INDUSTRY SHOPPERS PUBLISHING,C1100\nPRESIDEN,NATL CABLE & TELECOM ASSN.,C2200\nCHAI,FIRST MANAGEMENT SERVICES INC.,F4100\nSelf Employed,Jec Development,Y4000\nVP Human Resources,Texas Industries,M2100\nAttorney/Lawyer,self,G0000\nNEWAY BUILDING AND CONSTRUCTION INC,,B1500\nEVP - CHIEF,SOUTHWEST AIRLINES CO.,T1100\nOWNER,GIBSON`S AUCTION,G5000\nREAL ESTATE BROKER,ENTERPRISES REALTY SERVICES,F4200\nTv Editing,\"Tal.Bz, Inc.\",Y4000\nPARTNER,ICONOCULTURE,Z9500\nEXECUTIVE,TCP HOLDINGS INC,Y4000\nFinance,\"HFCB, LLC\",Y4000\nDEALER,BERGEYS CHEVROLET INC,T2300\nAttorney,Joseph P Altier & Assoc,LT000\nENGINEER,BROWN INTERNATION CORP,Y4000\nConstruction,Dooley & Mack,Y4000\nPersonal Investments,self,F7000\nSoil Scientist,Self-Employed,J1100\nACCOUNTANT/EXAMINER,AFSCME OH LOC 11/STATE OF OH,L1200\nRANCHING,BRISCOE RANCH INC.,A3000\nCEO- Massachussets F,International Association of Fire Figh,L1400\nOwner,\"Davison Petroleum Products, LLC\",E1120\nPACIF SPRNKLER SYS,,Y4000\nINSURANCE AGENT,\"DAVIS INSURANCE AGENCY, INC.\",F3100\nPresident,Bill Carney and Company,K2000\nHYNES CONVENTION CENTER,,Y4000\nCONTRACTOR,PREWITT MECHANICAL CONT.,Y4000\nChairman,\"H. M. S. SALES & MARKETING, INC.\",G5280\nExecutive,\"Saronyx, Inc\",Y4000\nM K ENTERPRISES NY INC,,Y4000\nTEACHER,UW - STEVENS POINT,H5100\nEXECUTIVE,REED SMITH LLP,K1000\nChief Operating Offi,First Commonwealth Mortgage,F4600\nADM INVESTOR SERVICES,,J1100\nSenior Regional Mana,Sutter Homes Winery,G2900\nMEDIA EXEC,\"DAILY NEWS TRIBUNE, INC.\",C1100\nTIMINGS INC,,Y4000\nPHYSICIAN,DE LA PENA EYE CLINIC,H1120\nA&A CONTRACT SERVICES,,Y4000\nDATABASE ADMINIST,P. F. S. WEB INC.,Y4000\nPODVEY SACHS MEANOR CATEN,,K1000\nINTERNATIONAL REPRESENTAT,\"SOTHEBY'S\",F4200\nEXECUTIVE,KKR,F2600\nTEACHER,\"CHILDREN'S CENTER\",Y4000\nPROPER,BRETT S. PURVIS & ASSOCIATES,Y4000\n\"Physician's Assistant\",Delaware Valley Health,Y4000\nSecretary/Treasurer,The Care of Trees,A8000\nEXECUTIVE,GUTWEIN & COMPANY,Y4000\nManager,Monroe County,X3000\nOwner,Altmeyer Funeral Homes,G5400\nAssociate General Counse,Afscme,L1200\nDELULIS BROTHERS CONSTRUCTION,,B1500\nATTORNEY,\"VAN PELT, YI & JAMES LLP\",Z9500\nLAUREL OIL,,Y4000\nController,City of Goodyear,X3000\nMANAGER OF REAL ESTAT,SELF EMPLOYED,K1000\nLECTURER,UNIVERSITY OF WISCONSIN/LECTURER,H5100\nPRESIDENT,HAYDON BOLTS INC.,G1200\nPERFORMANCE TECHNOLOGIST,CREATIVE COURSEWARE INC./PERFORMANC,J1200\nCEO,Chrysallis,Y4000\nSALES,PECAN DELUXE,Y4000\nHOSPITALITY EXECUTIVE,MARRIOTT CORPORATION,T9100\nOwner,Charles R. Stewart Inc.,Y4000\nPERSONAL ASST. TO PRE,HOUSTON TRANE,B5500\nPRESIDENT,SOLARE DEVELOPMENT GROUP,Y4000\nAttorney,\"George R. A. Doumar, PLLC\",K1000\nVICE CHAIRMAN,WEXTER & WALKER,Y4000\nNSG.,EVANSVILLE MANOR NURSING HOME,H2200\nMarketing,Ymca,G5800\nPERMANENT EMEDICAL GROUP,PHYSICIAN,H1100\nPRESID,OPENING SPECIALITES & SUPPLY,Y4000\nEXECUTIVE DIRECTOR,FRIENDS OF THE CHICAGO RIVER,Y4000\nKEMMET COATES & MCARTHY INC,,K2000\nJob Plcmnt Spec,C.C.B.M.R.D.D.,J1200\nresearch,dfci,Y4000\nPRESIDENT,\"MEEKER & CO., INC.\",E1120\nSCRAP METAL DEALER,RUSK METAL COMPANY,Y4000\nPHYSICIAN/PULMONOLOGIST,\"HAROLD LANDA, MD\",J5100\nPRESIDENT,CHEROKEE FORD,T2300\nDELLINGER INC,,Y4000\nE I ASSOCIATES INC,,Y4000\nOWNER,BROJACK LUMBER,B5200\nDOCTOR,BAYSTATE MEDICAL CENTER,H2100\nVolunteer Director,Goodman for Congress,J1100\nALT,INTER-AMERICAN DEVELOPMENT BANK,F1000\nOWNER,SPEEDIE AUTO SALVAGE,M2400\n\"VP, Institutional Sales\",Fidelity Investments,F2100\nSALEMAN,JOE ABRAHAM & SONS,Y4000\nPHYSICIAN,U L H C,Y4000\nPhysician,\"University Hematology Oncology, Inc\",H1130\nBUSINESS,OPEN RANGE COMMUNICATIONS,C4000\nLA HOTEL MOTEL ASSN,,T9100\nMayor,Self-Employed,G0000\n\"VP, REFINERY MANAGER\",HOLLYFRONTIER CORPORATION,E1160\nSOUTHERN BUILDERS & REALTY,,F4200\nAIR-SEP,,Y4000\nWriter/ entrepreneur,Self,G0000\npartner,Cofsky & Zeidman LLC,K1000\nATTORNEY,\"HECHT KLEEGER PINTEL & DAMASHEK, PC\",K1100\nManaging Partner,NW Mutual Fin Network,Y4000\nWALTON CHAMPMAN BUILDING COM,,Y4000\nRegional Vice Presid,\"Glazer's Distributors\",G2850\nACCOUNTANT,FEW CONSULTING,Y4000\nSELF-EMPLOYED/PROBLEM SOLVER/BUSINE,,Y4000\nAttorney,Isdell Foundation,J1200\nSupervisor,Bank,F1100\nINVENED ASSOCIATES,,F2100\nPRESIDENT/CEO,MEMORIALCARE HEALTH SYSTEM,H2100\nN/A/HOMEMAKER,,C5110\nSELF EMPLOYED,INFORMATION REQUESTED PER BEST EFFO,F4000\nRADIOLOGIST,LEHIGH VALLEY MEDICAL CENTER,H2100\nBLACKBURN & STEVENS,,Y4000\nCBS,,C2200\nC & C,,Y4000\nDULANEY BROS FARMS,,A1000\nBehavioral Scientist,U.S. CDC,X3000\n\"09508-VP,OPERATIONS\",Rite Aid Corporation,G4900\n\"RIDGEWOOD REALTY, INC\",,F4600\nEXECUTIVE,AMERIKOHL MINING,E1200\nNYS ASSEMBLY,,Y4000\nTREDENET PUBLISHING,,J6200\nDIVISION VICE PRESIDENT,TOLL BROS. INC.,B2000\npolitical consultant,\"Ridder/Braden, Inc.\",G5200\nFOREIGN SERVICE,DEPT. OF STATE,J7400\nPresident,Ptacek and Cromwell PC,Y4000\nFARMER,Bassett Feeding Inc,Y4000\nGOVERNMENT AFFAIRS/BUS DVLPMT,GRANITE CONSTRUCTION,B1000\nPHYSICIAN,ONCOLOGY OF NJ,H1130\nWOOD PRODU,COLUMBIA FOREST PRODUCTS,X1200\nFORSYTHE TECHNOLOGY/WRITER/EDITOR,,Y4000\nADMINISTRATIVE,JVS,Y4000\nProfessor,Virginia Tech,Z9500\nAttorney,Capehart & Scatchard,K1000\nMGT RECRUITERS OF FINDLAY,,G5250\nINSU,STONEBRAKER MCCRORY AGENCY GRO,F3100\nPHYSICIAN,KIHEALTH,Z9500\nASSOC ANESTH OF SPRINGFIELD,,H1130\nHUMAN RESOURCE,HORIZON CONSTRUCTION,B1500\nReal Estate Developer,Southeast Properties,F4000\nPharmacist,St Lukes Cornwall Hospital,J1200\nRESTAURATEUR,JOSEF OHAYON/RESTAURATEUR,Y4000\nTV Advertising,Pongo Productions,Y4000\nNJ SOCIETY FOR THE BLIND,,J9000\nExecutive,Edwards Thertres,C2700\nCERTIFIED PUBLIC ACCOUNTANT,\"T. CURTIS  COMPANY, PC\",Y4000\n\"CHIEF, WASHINGTON OFFICE\",UN POPULATION FUND,Y4000\nPRESIDENT,ALAGEM CAPITAL GROUP/PRESIDENT,F7000\nBUSINESS OWNER,UP COUNTRY INC.,Y4000\nPHARMACIST,BETH ISRAEL HOSPITAL,J7500\nProfessor,UC- San Diego,X1200\nARKANSAS RURAL WATER ASSOC,,Y4000\nBusiness Owner,National Education Services,Y4000\nProgrammer,Ticom Geomatics,Y4000\nLITTLE SAIGON SPRMKT,,Y4000\nVP,Millieum Partners,Y4000\nHAMMOND & BASS PA,,Y4000\nJUDGE,CIRCUIT COURT,Z9500\nInvestment Advisor,Cooke & Bieler,F2100\nM.D.,CLINICAL CARDIOLOGY CONSULTANTS S.C,H1130\nPHYSICIAN,\"ST. MARY'S CENTER\",Y4000\nCONTROLLER,BUILDING SOLUTIONS,Y4000\nSchool Bus Driver,Talladega Co Board Of Education,Y4000\nOWNER,TRENT ERLING FARMS INC.,A1000\nPhysician,Augusta Orthopaedic Clinic,H1130\nManaging Dir,Lehman Brothers NYC Child Museum,F2100\nPROFESSOR,UNC OF CHAPEL HILL,Y4000\n\"AMAL GAMATED, LLC\",,J1200\nOrthopaedic Surgeon,Orthopaedic Motion,H1130\nTRANSPORTATIO,VALLEY TRANSPORTATION,T4200\nMANAGER,MUSIC,C2600\nMarketing Communcations,Self employed,Y4000\n\"CARDWELL'S PRINT SHOP\",,C1300\nCEO,ROCKY MOUNTAIN HEALTH SERVICES,Y4000\nMCGEACHY & HUDSON,,Y4000\nAttorney,\"Sarvis Group, LLC\",J7300\nEXECUTIVE,ADVENT INTERNATIONAL,F2600\npresident,\"Express Marine, Inc.\",T6200\nCEO,PLAYLIST,C5140\nPresident,Darnell Building,Y4000\nattorney,\"Law Offices, MJSPC\",K1000\nPETER BROWN FOR HOUSTON/ARCHITECT/G,,Y4000\nDirector,The Bauman Foundation,J7400\nTax Professional,HR Block,F5300\nHOUSING,BRIGHTON DEVELOPMENT,Y4000\nPharmacist,\"Chatwood Pharmacy, Inc\",G4900\nState Representative,Ohio House Of Representatives,X3000\nAttorney,Powell & Majestro PLLC,K1000\nCPA,\"Lumsden & McCormick, LLP\",F5100\nOwner/Principal/Part,Jarrett Builders,B2000\nPRESIDENT,BRC,B3000\nFundraiser,New England Conservatory,J7400\nAttorney,Gusant Associate,Y4000\nOfficer,Bancfirst,F1000\nAttorney,John Perlstein,Y4000\nEntrepreneur,Self,J7150\nLicensed Acupuncturi,Self employed,G0000\nSALEM,SALEM,C2100\nB TAW M INDUSTRIES,,Y4000\nREAL ESTATE BROKER,SHIRLEYS REALTY,F4200\nARCHITECT,STUBBINS HUGH,Y4000\nEXECUTIVE,\"WEATHER CENTRAL, INC.\",C2100\nVP SALES AN MARKETING,WESE ALLOYS,F4200\nCEO,TILSON,Y4000\nATTOR,LEMBHARD G HOWELL LAW OFFICES,K1000\nPhysician,Nephrology Associates of CFl,H1130\nProducer,Keyser Lippman Productions,C2000\nEducator,Susd,Y4000\nInvestments,Bear,F2300\nATTORNEY,\"TARASI & TARASI, P.C.\",K1000\nDIRECTOR,PAL TECH,B1000\nCEO,\"C. P. B. INTERNATIONAL, INC.\",Y4000\nSKAGGS ISLAND FOUNDATION,,Y4000\nBOB PERRY HOMES,,B2000\nPresident,Double G Consulting,Y4000\nOwner,\"Yen's Usa Consulting Group Ltd\",Y4000\nINVESTMENT EXECUTI,MANIV BIOENTURES,J1200\nBusiness Owner,Staley Capital Advisors Inc,Y4000\nAREA CHAIRMAN,AIS GALLAGHER,Y4000\nLORAL DEFENSE SYSTEMS-EAST,,D3000\nACCOUNTANT,PAYMASTER,Y4000\nEILAT MANAGEMENT,,Y4000\nDIRECTOR STRATEGIC INVESTM,N.A.S.A.,X3000\nCOO,AGRILECTRIC POWER,E1600\nPRESIDENT,MED-TURN INC.,Y4000\nD M ORTHOPEDIC SURGE,,H1100\nSECRETARY,LONKARD CONSTRUCTION,B1500\nlawyer,\"Barrett, Johnston & Parsley\",Z9500\nATTO,\"MOORE, CLARKE DUVALL & RODGERS\",K1000\nLOBBYIST,MICROVISION,C5000\nCHEMICAL ENGINEER,ANDRITZ INC.,Y4000\nREAL ESTATE EQUITY GROUP,,F4200\nDermatologist,\"University of Michigan, Dermatology\",H1130\nAdministrator,Genesis HealthCare,H2200\nMISSOURI STATE DEMOCRATIC COMMITTEE,,J1200\nHUMAN RESOURCES,KAISER PERMANENTE,J1200\nPresident,Valley Spas & More LLP,Y4000\nCEO,Santa Clara Family Health Plan,H0000\nMITCHELL & BEST HOMEBUILDERS,,B2000\nVPFINANCE,STROBE DATA INC,C5130\nPRINCIPAL,ALLA PARTNERS,Y4000\nCFO,EXPRESS MESSENGER SYSTEMS INC.,Y4000\nCEO,BH MULTICOM CORP,Y4000\nSNR. POLICY ADVISOR,HOLLAND & KNIGHT,K1000\nMATH INSTRUCTO,UNIVERSITY OF ALASKA,J1200\nDRIVER,METRO TRANSIT,Y4000\nALLIANCE ADVISORY GROUP INC,,Y4000\nPAWN PLUS - LOAN AND JEWELRY OUTLET,,Y4000\nOwner,Coyle-Varland Insurance,F3100\nEvent Manager,MPP Productions,Y4000\nAdministrator,Space Unlimited,Y4000\nDAIRY FARMER,CHEESE MAKER,A2000\nCEO,Slap,Y4000\nPRESIDENT,THE ROXBURGH AGENCY,Y4000\nAttorney,Accardo Law Offices,K1000\nLabor Lawyer,\"Greif, Inc\",Y4000\nInvestment Managemen,\"EFO Capital Mgmt, Inc\",J7400\nEducational Linguist,Center for Applied Linguistics,Y4000\nCEO AND CHAIRMAN,GENERAL PARTS INC.,T2200\nVICE PRESIDENT,\"GALCU, INC\",Y4000\nAttorney,Bruce D Schupp Law Office,K1100\nManaging Director En,HIP Health Plan of NY,H3700\nAlban Home Inspection Service,,Y4000\nH.P.S. MECHANICAL,,Y4000\nOKLAHOMA PRESS ASSOCIATIO,,C1100\nPresident,Mannan Incorporated,Y4000\nProgram Manager,Dyn Corp. Technical Services,Y4000\nPERIODONTIST,\"BREAULT & MCGOVERN, DDS, PC\",Y4000\nPRESIDENT,CLARK LYTEL GEDULDIG,K2000\nPhysicist,Wyle Laboratories,Y4000\nEMRICK VAN & STORAGE,,T3100\nFOUNDER,PENN ENVIRONMENTAL SERVICE,Y4000\nAD KENNEDY & CO,,Y4000\nREAL ES,\"KIRBY APPRAISAL GROUP, INC.\",F4700\nsoftware developer,NYC Transit,Y4000\nNurse Practitioner,Duluth Clinic,H1710\nExecutive VP,American State Bank,F1100\nENGINEER,ZYGA,Y4000\nEXECUTIVE DIRECTOR,WILDLIFE MISSISSIPPI,Y4000\nAPPRAISER,MERCANRIL COMMUNITY BANK,Y4000\nMORTGAGE LOAN ORIGINATOR,STEWART & SOSS,Y4000\nUnemployed,Unemployed,C5000\nEXECUTIVE,FABCO EQUIPMENT INC./EXECUTIVE,B6000\nCLW REALTY ASSET GROUP INCORPORATED,,F4200\nSR. VICE,PMI MORTGAGE INSURANCE CO,F3100\n\"AMERICA'S BODY CO INC\",,T3200\nDIGITAL MARKETER,PROCTER & GAMBLE,M3300\nSPA,,J1200\nResearcher,Exxonmobil,E1110\nOwner,\"S&J Machine, Inc.\",Y4000\n\"PAUL, LANDY, BAILEY & HARPER\",,K1000\nMANUFACTURERS REP,GLOBAL INSTRUMENT SUPPLY,Y4000\nDOCTOR OF DENTAL SURGERY,PRIVATE DENTAL PRACTICE,H1400\nRICHARD ELLIS LLC,,Y4000\nPHYSICIAN,PYASANTA C. CHANDRA,Y4000\nCONSULTANT,AMERICAN CAPITAL,F4000\nExecutive,\"Purosystems, Inc.\",Y4000\nDIRECTOR FP&A,UMB FINANCIAL CORPORATION,Z9500\nEMERGENCY PHYSICIAN,DR. DONALD BLAIR MAISEL,H1100\nCEO,Dataloom,Y4000\nPARSONS-BRINKERHOFF,,B4000\n\"EVP, MERCK RESEARCH LABS\",MERCK SHARP & DOHME,H4300\nFire Fighter,City of New York Fire Department,X3000\nPARTNER,MARS INDUSTRIES,Y4000\nPRESIDENT,MOOSE AUTO SALES,T2300\nASSISTANT PROFESSOR,MARQUETTE UNIVERSITY,H5100\nManager,Capital Group,F2100\nCONSULTANT,\"RC CONSULTING, LLC\",Y4000\nAttorney,Loftus & Saltzberg PC,K1000\nRE INVESTMENT,CLARION PARTNERS,Z9500\nMN YOUTH SOCCER ASSN,,Y4000\nExecutive,Tensaw Land and Timber Company,A5000\nBROOKS AUTOMOTIVE HDQRS,,T2300\nLAWYER,\"J.TOM MORGAN LAW, LLC\",K1000\nINTERPOINTE,,Y4000\nCOLLEGE PROFESSOR,CITY UNIV OF NY,H5100\nMCEA,,Y4000\nconsultant,self employed,F7000\nEXECUTIVE,TELERGY,C4000\nRetired,Retired (Accenture),X1200\nPHYSICIAN,ELM PLACE AMBULATORY,Y4000\nBusiness Development,Comcast,C2200\noffice manager,\"S. Krouse, DDS, P.A.\",H1400\nENGINEER,E.M.C.S.,Y4000\nAssociate Director,IBF,Y4000\nATTORNEY,SLOVAK,Y4000\nSELF/FARMER/RANCHER/OIL PRODUCER,,A3000\nMORTICIAN,THE MARTENSON FUNERAL HOMES  INC.,G5400\nPRESIDENT,DANARD ELECTRIC INC,B3200\nPresident,Daugherty Pharmacies LLC,Y4000\nOWNER,SELF EMPLOYED,J1200\nConsulting Engineer,\"Somat Engineering, Inc\",B4400\nFINANCIER,WESTERN WIRELESS,C4300\nCommercial Rel Mgmt,Wells Fargo,F1100\nINVESTME,VERTICAL RESEARCH PARTNERS,Y4000\nPRESIDENT,DOS LOGISTICS INC,B4000\nOFFICE MANAGER,S. SCHWAGER,Y4000\nOwner,Lynne Hennecke PhD,Y4000\nSOFTWARE ENGINEER,LOGIC MATTERS,Y4000\nCEO,\"BOLLINGER SHIPYARDS, INC/CEO\",T6100\nGENERAL COUNSEL,TREASURY DEPARTMENT,X3000\nINFORMATION REQUESTED,NORTHWESTERN MUTUAL,F3100\nVice President/Gener,\"Pragmatics, Inc\",C5130\nREGISTERED NURSE,EDEN MEDICAL CENTER,H2100\nNATIONAL LABOR RELATIONS BOARD,,\nDENVER PET CEMETERY,,G5400\nLOBBYIST,HART HEALTH STRATEGIES,K2000\nEXECUTIVE,CONESTOGA WOOD SPECIALTIES,M4100\nCAIN HIBBARD MYERS & CO,,Y4000\nCPA,E.L. Hollister & Company,J7400\nASSEMBLYMAN,12TH DISTRICT,Y4000\nOIL PRODUCTION,\"TRIAD ENERGY, INC.\",E1120\nINDEPENDENT REAL ESTATE MGMT CORP,,J1100\nTravel Mgmnt,\"Windward Int'l\",T9400\n\"PORT OF SUBS, INC\",,G2900\nDOCT,FAMILY PRACTICE ASSOC. OF SHRE,H1130\nWEIGHT WATCHERS-FWTX,,G5000\nVICE PR,PHONEIX MANAGEMENT SERVICES,G5200\nOWNER,SUTHERLAND LUMBER,J1100\nALL-AMERICA FINANCIAL SERVICES,,F0000\nVP Human Resources,Northeast Utilites,E1620\nSTUDENT,BURKE MOUNTAIN COMPANY,Y4000\nOWNER,C & T CHARTERS INC.,T1100\nAttorney,The Legal Aide Society,K1000\nbook seller,Self employed,G4600\nYOUTH TRAINING FACILITIES MANAGER,,Y4000\nSelf Employed,The Christmas Haus,Y4000\nBUSINESS,TYCO INTERNATIONAL,Z9500\nPresident,Hornady Mfg. Co.,Y4000\nEXECUTIVE,YORK MANAGEMENT & RESEARCH INC,F7000\nPARTNER,STONE REAL ESTATE,F4000\nHowell & Fischer,Attorney,Z9500\n\"GOV'T AFF\",MEHLMAN VOGEL CASTAGNETTI,K2000\nWALL STREET,MARA CAPITAL LLC,Y4000\nActor,Self,C2400\nN A TAYLOR INC,,T6100\nInternational Trade,Self Employed,G3500\nBAKER ANDERSON & DOUGHERTY,,Y4000\nIT Manager,Superfund Asset Management,F2700\nRADIATION ONCOLOGIST,THERAPEUTIC RADIOLOGISTS,H1130\nCAPITAL STRATEGY RESEARCH,,F2100\nManagement,Abeille Pharmaceuticals,Y4000\nSVP Engineering,Comcast (CC) of Willow Grove,C2200\nAMER FED OF TEACHERS,,L1300\nCOMPANY MANAGER,COUNCIL TOOL COMPANY INC.,M5000\nMANAGER FINANCIAL PLANNING,\"ALLIANCE COAL, LLC\",E1210\nLOTH MBI,,Y4000\nCHILD ADVOCATE,SELF-EMPLOYED,F2000\nGeneral Manager,McBride Distributing Company,F1100\nCONINVEX INC,,Y4000\nSALES,INGERSOLL RAND,B6000\nBusineaa Owner,Wills Corp,Y4000\nNEW TRIER DEMOCRATIC ORGANIZ,,J1200\n\"Commissioner, Northern District\",\"Barry County, MO\",X3000\nNATIONAL CENTER FOR HOUSING,,Y4000\nCRNA,New River Medical Center,H1710\nIT Consultant,InfoLore,Y4000\nSR. VICE PRES,FUJIREBIO DIAGNOSTICS,Y4000\nBARTKIEWIEZ KRONICK & SHANAHAN,,Y4000\nOffice of the Governor,State of NM,X3000\nbuyer,Campbell Lumber,B5200\nPRESIDENT,SKILLED CARE PHARMACY,G4900\nLegal Assistant,Skadden Arps et al,K1000\nFINANCIAL SERVICES P,MORGAN STANLEY,F2000\nArchitect,Dbbc Architects,B4200\nENGINEER,\"RSI, INC.\",Y4000\nSELF/BOSTON PROPERTIES/REAL ESTATE,,F4000\nPresident & CEO,Lasertone,Y4000\nPRINC,POTOMAC INVESTMENT PROPERTIES,F4000\nADVERTIS,FRANK J. MAZZEI ASSOCIATES,G5210\nRENEWABLE ENERGY DEVELOPMENT,EDF RENEWABLE,E1500\nPROFESSOR,U MICHIGAN,Z9500\nCHAIR,GLOBAL SATCOM TECHNOLOGY INC.,Y4000\nPRESIDENT AND E,ANSCHUTZ FAMILY FOUN,J1100\nPROF EMIRUTS,UNIV OF CA,H5100\nInvestment Manager,Hite Capital Managem,F0000\nRELATION HEALTH CARE,,H0000\nLAWYER,HUNTON & WILLIAMS,J1100\nChairman and CEO,Metropolitan Life Insurance Co.,X1200\nNORMAN W PASCHALL CO INC,,G2400\nCEO,FLYNN TRANSPORTATION SVCS,T3100\nLEARJET,FLIGHTSAFETY INTERNATIONAL,Y4000\nATTORNEY,HARRISS HARTMAN ET AL.,Y4000\nDEVELOPER,BRIDECREEK GROUP,J1100\nReal Estate Develope,Parker Properties,F4000\nCHAIRMAN,M.B. NATIONAL,Y4000\nChief security advis,Information Requested,C5120\nCEO,\"OR INTERNATIONAL, LLC\",Y4000\nASST VICE PRESIDENT FED GOVT RELATIONS,USAA,F3100\nOIL LAND INVESTMENTS,,E1100\nPARTN,BROWN BROTHERS HARRIMAN & CO.,F2100\nTRANSPORTATION,YELLOW CHECKER CAB,T4200\nOWNER,R.G.E. M.F.G. L.L.C.,Y4000\nREALTOR,LASHA REALTY,F4200\nATTORNEY,LAW OFFICES OF JOHN LARKIN,K1000\nILLINOIS CENTRAL,,T5100\nNONPROFIT ADMINISTRATOR,SELF EMPLOYED,X4000\nInformation Requeste,Marvin A Brustin LTD,K1000\nTEACHING ASSISTANT,SELF EMPLOYED,Y4000\nCONSULTANT,TONGUR AND SCOTT,J1200\nTECHNITROL,,C5000\nDeveloper,\"Steele Properties, LLC\",F4000\nNew Haven Public Schools,,X3500\nWINDOW WASHING,SELF-EMPLOYED,Y4000\nFounder,Life University,H5100\nWRITER/EDITOR,AMERICAN JOURNAL OF MEDICINE,J1200\nDARTMOUTH HITCHCOCK MEDICAL CENTER,,H2100\nMCKINNEY & MCKINNEY/ATTORNEY/PARTNE,,K1000\nReal Estate Broker,\"Federal Land Exchange, Inc\",F4000\nSOUTHCUP CORPORATION,,E1120\nSOFTWARE ANALYST,LEVEL 3 COMMUNICATIONS,JE300\nBANKING,IRG LIMITED,Y4000\nWESTERN PROPERTIES TRUST,,G4000\nPRESIDENT/C.E.O.,MIDDLESEX CORPORATION,B1000\nFINANCIAL CON,DOLLAR ASSOCIATES LLC,Y4000\nMANAGER,\"ARCTIC FOUNDATIONS, INC.\",Y4000\nOwner,\"ABLA, LLC\",Y4000\nCEO,EMC CORPORATION,C5130\nPHYSICIAN,UNIVERSITY GASTROENTEROLOGY,J7400\nLAMSTEEL CORP OF AMERICA,,Y4000\nINVESTMENT ADVISOR,FLATROCK INVESTMENTS,F7000\nAttorney,Oshima Chun Fong & Chung AAL,Y4000\nProject Coordinator,Duke University,H5100\nGORDON PUBLICATIONS,,C1100\nCUMMING METRO POWER INC,,Y4000\nCRITICAL HEALTH SYSTEMS SC,,K1000\nFALLS NURSING HOME,,H2200\nPhysician,Advanced Diagnostic Imagin,Y4000\nPAUL J WEISS,,K1000\nCoach,Northwestern University (William),H5100\nTICKET BROKER,RICHARD ROTH,J1200\nauto dealer,Tommy Thomas Chevrolet Inc.,T2300\nPHYSICIAN,ADVANCED OTOLARYNGOLOGY ASSOCIATES,H1130\nSchiff Mastin,,Y4000\nREALTOR,WINDERMERE RE PUYALLUP INC.,Z9500\nSenior Foreign Service Officer (Public,US State Department,X3000\n\"VICE PRESIDENT, INFO\",\"STATION CASINOS, INC.\",G6500\nSenior VP & Chief Operating Officer-Gr,Jackson Lake Lodge,G2900\nDIRECTOR,CA BOTANA INTERNATIONAL INC.,M3300\nRemax 100,,F4200\nMAINE ASSOC OF NONPROFITS,,Y4000\nNATL POLITICAL CONG OF BLACK WOMEN,,Y4000\nPROFESSOR,BATES COLLEGE,Z9500\nAdvertising/PR,\"Shepardson, Stern & Kaminsky\",G5210\nSTANDARD CAPITAL GROUP,,F0000\nContent Strategist,TKA,Y4000\nREAL ESTATE EXECUTI,ST. JOE COMPANY,F4100\nEXECUTIVE,N WASSERSTROM AND SONS,Y4000\nProfessor,American Jewish University,Z9500\nPARTNER,GALLOP JOHNSON NEUMAN,K1000\nMID-SOUTH ORTHOPEDIC ASSOCIATES PC,,H1500\nSecretrary,COLUMBIA PUBLIC SCHO,Y4000\nCOLDWELL BANKER,,F4000\nSales,L Style G Style,Z9500\nSecurity Officer,General Dynamics,D3000\nTRIBAL MEMBER,SMSC,Y4000\nARCHITECT,ANDRIAN-ZEMENIDES,Y4000\nIT Consultant,CNB Consulting,J1200\nBERMUDEZ Y LONGO,,B2000\nAssessor/Auditor,\"Los Angeles County Assessor's Office\",Y4000\nLaw-Clerk,Labat-Anderson,E2000\nengineer,Robbins Design Services,B4400\nPHYSICIAN,CAROLINA EYE CARE,H1120\nCeo,Kids Ink Inc.,Y4000\nC&A INC,,Y4000\ndirector,Loyola University Chicago,H5100\nATTORNEY,LAW OFFICE OF JOHN KALLED,K1000\nVIRTUA HEALTH-CNS (MHBC),,H0000\nRADIOLOGIST (PHYSICIAN),MERCY RADIOLOGY GROUP,H1130\nlawyer-lobbyist,self-employedq,K2000\nDIRECTOR OF OPERATIONS,VALUE COMPANIES INC,F4500\nEXECUTIV,THE OPTIONS CLEARING CORP.,F2200\nIOWA DEPT OF REVENUE,,X3000\nPRESIDENT & CEO,AGILIS,Y4000\nMortgage Broker,Pacific Finance Company,F4600\nALPHATCH INC,,Y4000\nINFO REQUESTED,CITE SOLUTIONS INC,Y4000\nProfessor,University of Baltimore,H5100\nAUTO DEALER,ROYAL AUTOMOTIVE GROUP,T2300\nBUSINESS DEVELOPMENT,SAP,C5120\nphysician,Dublin OB/GYN,H1130\nPharmacist,Gloucester Pharmacy,H1750\nPRIVATE EQU,\"BERKSHIRE PARTNERS, LLC\",F2600\nLAWYER,OSBORN MALEDON PA,Z9500\n\"BRYAN, GONZALEZ & VARGAS\",,Y4000\nATTORNEY,BBC LAW,K1000\nBAILEY DISTRIBUTING CO,,T2200\nMAYS & CRUTCHER,,Y0000\nCONCORD CAREER COLLEGE,,H5200\nENGINEER,\"OTTO ENGINEERING, INC.\",M2300\nINSURAN,OWNBY INSURANCE SERVICE INC,F3100\nProject Director,The Media Network,Y4000\nLawyer/Senior Partne,Bradford & Coenen Llc,K1000\nVP,ALTEX ELECTRONICS,Y4000\nManager,US Gov,X3000\nCONSULTANT,SOLE PROPRIETOR,G5200\nAttorney,\"Malone Taubes & Sohn, LLP\",Y4000\nHARRIS INDUSTRIAL PROD,,G1100\nSELF,,A8000\nATTORNEY,GOLD TITLE,J1200\nDYNAMIC GUNVER TECHO,,T1300\nOWNER,\"MY BIG OFFICE, INC.\",Y4000\nPUBLIC AFFAIRS,WIND WAY CAPITAL CORP,F0000\nRestaurant Owner,Torino Inc.,Y4000\nSELF,AATLANTIC FITNESS LLC,Y4000\nMANAGE,MEDICAL CARE CONSORTIUM INC.,H3700\nATTOR,VORYS SATER SEYMOUR AND PEASE,K1000\nNAT COUNCIL RESEARCH ON WOMAN,,Y4000\nMARINE LIFE,,X4200\nSALES,EBERLE COMMUNICATIONS GROUP,Y4000\nBUSINESS OWNER & EXE,\"SILBERRAD, INC.\",Y4000\nI C F KAISER INTERNATIONAL,,B4000\nEXECUTIVE,QAND-C,F2600\nPROFESSOR,LONG ISLAND UNIV,H5100\nVICE PRESIDENT AND GENERAL COUNSEL,MEDICAL CENTER OF CENTRAL GEORGIA,H2100\nGENERA,PARRY ROMANI DECONCINI SYMMS,K2000\nMGM INC,,C2400\nITN CONSULTING,,K2000\nENTREPRENEUR,MY OWN MEALS INC/ENTREPRENEUR,Y4000\nReal Estate Developm,Pulte Homes,B2000\nELECTRICIAN,MCELROY ELECTRIC,Y4000\nPresident & CEO,\"United Space Alliance, LLC\",T1700\nInvestments,Self Employed,F7000\nEXECUTIVE,,H5100\nGA WINTGER & SON CO,,A3100\nPHYSICIAN,\"CARDIOLOGY ASSOCIATES OF NEW HAVEN, PC\",H1130\nBROCKLAND-PONTIAC GMC INC,,T2300\nMANAGER,1ST NAT BANK,Y4000\nACE MEG & PARTS CO,,T2200\nBUILDER,AIREKO,Y4000\nSHAWNEE FARMS INC,,A1000\nCHICAGO WEST PULLMAN,,T5000\nBusiness Manager,Davidsonville Veterinary Clinic,A4500\nDoctor,Diegmann Ob. Gynecologist PC,H1130\nAttorney,\"LaBovick & LaBovick, PA\",K1000\n\"INTEGRATED WORKER'S COMP SOLUTIONS\",,Y4000\nCONN PARAMUTUAL ASSOCIATION,,G6500\nPHOTOGRAPHER/ARTIST,SELF,G5240\nHOUSEMASTER,HARVARD UNIVERSITY,Z9500\nArea Director - Desi,Harrahs Entertainment,G6500\nMAROIS BROTHERS,,B3600\nTelevision Technical Operator,Freelance,J1200\nSUPERVISOR,FIRSTENERGY,E1600\nIT Security,Commonwealth of Kentucky,X3000\nEVP & CFO,MONARCH BANK,F1100\nPresident / Manager,\"Greater Vision Music Min., Inc\",Y4000\nSTUDENT,NOT EMPLOYED,C5120\nConsultant,\"Lariat Solutions, Inc\",Y4000\nCPA,\"Marks, Paneth & Shron, LLP\",F5100\nMC GUIRE WOODS BATTLE & BOOTH L. L.,,K1000\nExec VP,JH Fletcher & Co,E1240\nHEKEMIAN & CO,,F4200\nReal Estate Broker,Spurlin Real Estate Co,F4000\nTALLADEGA COLLEGE,,H5100\nMILLER & MARTIN,,K1100\nHARVEST PARTNERS/REAL ESTATE/INSURA,,F2600\nALKEK OIL CORP,,E1160\nSAN JOAQUIN HYDRAULIC INC,,Y4000\nFARMER,SELF-EMPLOYED,J7120\nEDUCATOR,KELLENBERG MEMORIAL HS,Y4000\nCHARTWELL PROP,,E1120\nCHIEF ELECT,CONTROL TECHNOLOGY INC.,C5000\nU OF C HOSPITAL,,J7150\nRANCHER,HAT RANCH,A3000\nEXECUTIVE VP,IU OF BRICKLAYERS AND ALLIED CRAFTWORK,LB100\nTOM LIN INSURANCE SERVICES,,F3100\nCEO,DERMAPATH SPECIALISTS,Y4000\nSelf,Gulf Coast Collections,Y4000\nSARAFIN ASSOCIATES,,Y4000\nVP - Community Marketing,Reliant Energy,E1630\nNYS CORRECTIONAL OFFICER,NEW YORK SATE,Y4000\nPower Plant Industry,Self employed,Y4000\nOwner,Belville Financial Advisors,F0000\nEXECUTIVE VP + C,KANSAS CITY CHIEFS,G6400\nSR VICE PRESIDENT AND COO,ONCOR ELECTRIC DELIVERY,E1600\nPRECONSTRUCTION MANAGER,PAN-PACIFIC PLUMBING COMPANY,B3000\nCONTRACTOR,BOBBY CASTLE CONSTRUCTION,B1500\nINFORMATION REQUESTED PER BEST EFF,NETSCAPE COMMUNICATIONS,C5120\n\"Gov't Affairs\",Smith Alling Lane,Y4000\nINSURANCE AGENT,MARK WILLIAMSON CO INC,F3100\nInsurance Broker,Wortham & Son,F3100\nRealtor,Flake & Kelley,F4000\nOffice Mana,Martin and Frankenberry,Y4000\nR.E. Development,Self-Employed,J1100\nFORMER SCHOOL,CHICAGO BOARD OF ED.,X3500\nVENTURE CAPITAL,\"NTH POWER, LLC\",F2500\nAT,\"BERGNER, BOCKORNY, CLOUGH, BRAIN\",K2000\nLab Tech/Doctors Ass,Oncology Assoc,H1130\nATTORNEY,KARLINSKY LLC,Y4000\nOAK RIDGE ANGUS,,Y4000\nManaging Director,Deepwater Wind LLC,E1500\nRestaurateur,Self-Emploted,G2900\nREAL ESTATE,RCP PARTNERS,Z9500\nDOCTOR,ROBERT GNADE MD,H1100\nDirector,KLA-Tencor Corp.,C5000\nPRESIDENT,ADVANCE REALTY GROUP INC.,F4100\nBUSINESS REALTOR,,F4200\nOwner,Corland Co,Y4000\n\"SENIOR VP, CHIEF MEDICAL OFFI\",AETNA,H3700\nPROPERTY SUPPLY,LUMA CORP.,F4500\nFINANCE,GOLDMAN SACHS,J1200\nManager,Scilog Inc,Y4000\nOwner,Varick Restaurant Inc.,G2900\nSENIOR VICE PRESID,CAMPUS ADVANTAGE,Y4000\nPEDIATRIC ANESTH ASSOC DAYTON,,H1130\nBUSINESS OWNER/LANDLORD,MICHAEL STEPHENS AND ASSOCIATES INC.,Y4000\nWAOA-FM/CUMULUS MEDIA INC./GENERAL,,C2100\nGROWMARK,ADM,A4300\nCONSULTANT,NAVIGATOR MANAGEMENT PARTNERS,Y4000\nPAUL WEISS ET AL./ATTORNEY/ATTORNEY,,J7400\nEditor/Managing Dire,unsalaried employee of Plumsock Mesoam,J1200\nSUNBELT PRINTING,,Y4000\nCPA,SCHWARTZ CUTTING & CORNETT,Y4000\nEXECUTIVE DIRECTOR,ALLYN FOUNDATION,X4100\nATTORNEY,ABM INDUSTRIES INCORPORATED,Z9500\nCertified Financial Planner,Camelback Retirement Planners,Y4000\nARCHITECT,SOLOMON + BAVER ARCHITECTS,B4200\nAMIS & ASSOCIATES,,Y4000\nHERB CHAMBERS COMPANIES,,T2300\nFINANCE,THE GROSVENOR FUNDS,Y4000\nGOVERNMENT RELATI,MD REALTORS ASSN.,F4200\nHARDING LOEVNER MANAGEMENT,,F2100\nDIRECTOR OF OPERATIO,COLLEGE SERVICES INC,Y4000\nAssociate,VGM,Y4000\nANALYST,EP LLC/ANALYST,Y4000\nMASHUDA CONTRACTORS INC,,B1000\nSALES,,K1000\nCEO,Valpak,G1000\nINVESTMENT MANAGER,\"CARGOMETRICS, INC.\",Y4000\nCEO,CAPITAL PACIFIC HOLDINGS,F4100\nANESTHESIOLOGIS,RED MOUNTAIN ANESTH,H1130\nDeveloper,Erika Realty Trust,F4200\nMANAGING DIRECTOR,THE DELAHUNT GROUP LLC,K2000\nDIR INFO,,Y4000\nINSURANCE BROKER,DRIVER ALLIANT INSURANCE,F3100\nWEC CONSULTANTS,,B4400\nNONE,NONE,H4000\nPRESIDENT,\"JOHN BETHELL TITLE CO., INC.\",F4300\nASHLER GROUP,KESSLER,J5100\nFUTU,CME CHICAGO MERCANTILE EXCHANG,Y4000\nI KICK ASS FOR THE LORD,HYPERMEDIA,Y4000\nPRESIDENT,SMITH PACKING INC.,Y4000\nOwner,Kerr Trucking LLC,T3100\nCAP INC,,Y4000\nREAL ESTATE,ARMADILLO HOMES,B2000\nPARTNER,MAGUIRE BURKE REALTY,F4200\nDEE JANITORIAL SUPPLY,,Y4000\nLEDDS DEVELOPMENT CO,,Y4000\nATTORNEY,\"PARKER, POE, ADAMS, AND BERNSTEIN/A\",K1000\nC A MARINE CLEANING,,G5600\nTeacher,Bitney Springs High School,J1200\nAGRICULTURE,TRANS TECH AG CORP,Y4000\nArtist,Self,X1200\nPhysician/ Teacher,Tri County Health Care,H1000\nSec of State,State of Delaware,X3000\nHEATON FULGHUM & WILLIAMS,,Y4000\nVALLEY WELDING & CRANE SERVICE,,B3000\nMedical Technologist,Texas State University,H5100\nASSOCIATE BROKER,CHAPMAN PROPERTIES,F4000\nAttorney,\"Paoli, Latino & Kutzman, PC\",K1000\nPORTALES PARTNERS,,Y4000\n3 M CORPORATION,,M2300\nMICHAEL KESSLING CO,,Y4000\nPresident CEO,St Marys Bank CU,F1300\nBANKER,THE UNION BANK COMPANY,F1100\nHOPKINS AND HOPKINS FARMS,,A1000\nPRESIDENT,AZALEA FOUNDATION,X4100\nFREEMAN FILMS,,C2400\nATTO,BARKAN NEFF HANDELMAN MEIZLISH,Y4000\nOWNER,DELOACH FUNERAL HOME,G5400\nCEO,DAVID CO INC,Y4000\nCONSULTANT PART-TI,NORTHROP GRUMMAN,Z9500\n,PHYSICIAN ANESTHESIA SERVICES P.C.,H1130\nCHAIRMAN,RACO INC,Y4000\nFundraising Professional,Philanthropy rx,Y4000\nUROLOGIST,WINCHESTER UROLOGY,H1130\nTMEPA,,E1600\nPublic affairs,EPA,X3000\nATHENS TECH,,Y4000\nLegal Assistant,LA City Attorney,K1000\nFIRST SOUTHERN TRUST,,F0000\nPharmacist,\"Kilmichael Drugs, Inc\",H1750\nReal Estate,\"Host Hotels & Resorts, Inc.\",F4100\nROBINSON ENGINEERING,,F1100\n\"LANDON'S CEDAR LEDGE INC\",,Y4000\nALASKA MENTAL HEALTH TRUST,,H3800\nMARINE ENGINEERS BENEFIT,,Y4000\nstudent,Boise High School,Y1000\nVICE PRESIDENT,\"LEHIGH HANSON, INC.\",B5100\nPRESIDENT,MFT COPE,Y4000\nChairman,VI Microsystems Inc,Y4000\nMORZKIN MEDICAL CORPORATION,,H1100\nBENTON & CENTENO LLP,,K1000\nFLOYD CO COMMONWEALTH,,Y4000\nExecutive,United Home Care Ser,H3100\nOCEAN PACIFIC FISH,,G2350\nVp,Sfx,Y4000\nPresident,Florida National College,H5100\nPres.,Golub Assoc. Inc.,F2100\nVETERINARIAN,MEADOWS ANIMAL HOSPITAL,Z9500\nTransportation Specl,Federal Government,X3000\nAERO MAP US,,B4300\nATTORNEY,FLUOR CORPORATION,Z9500\nLIMESTONE COUNTY,,X3000\nEMMCO CORP.,,Y4000\nMAINTENANC,UNITED COPPER INDUSTRIES,Y4000\nHARBOUR POINT FINANCIAL GROUP,,F2100\nHOWARD ADLER MANAGEMENT,,Y4000\nPhysician,Straub Clinic & Hospital,H1100\nOSAGE RIVER CITY EGG,,A2300\nRetired,Princeton Borough Councilwoman,Z9500\nENVIRONMENTAL CONSULTANT,THE CADMUS GROUP,E2000\nINVESTMENTS,MONUMENT GROUP,K2000\nChief Operating Officer,\"Humana, Inc\",H3700\n\"VP, Corporate Taxes\",Bridgestone Firestone Inc,M1500\nJOE COTTON FORD INC,,T2300\nPresident,Merrill Lynch,F2100\nAttorney,\"Martin, Craig, Chester & Sonnensch\",K1000\nEVANSTON/SKOKIE SD 65/TEACHER,,X3500\nCONSULTING-ENGINEER,,B4400\nLEGAL ASSISTANT,UNEMPLOYED,Y1000\nPHYSICIAN,\"FIFER-HELIGMAN, MD, P.A.\",H1100\nBUSINESS REPRESENTATIVE,0053,LB100\nGEORGE WOLFF ASSOCIATES,,K2000\nATTORNEY,U.S. DEPARTMENT OF COMMERCE,L1100\nADELSON TESTAN BRUNDO & POPALARDO,,K1000\nCeo,Event Consultants Llc,Y4000\nInformation Requeste,CBRE,F4200\nZILBER LTD,,F4100\nLYN LEAR,,J1200\n\"EVP & PRESIDENT, RAIL NORTH AMERICA\",GATX CORPORATION,T5300\nPresident,Speeds Electrical Service,B3200\nLEWIS & LEWIS,,Y4000\nGOV AFFAIRS,BNSF RAIL,Y4000\nCEO,RESCHINI GROUP,F3100\nAMERICAN WEALTH MANAGEMENT,,F2100\nCHAPARRAL MINERALS INC,,J7120\nMONTGOMERY EXPLORATION CO LTD,,E1150\nRecycling,,M2400\nVP Customer Development,Philip Morris USA,A1300\nWARNER & ASSOC,,Y4000\nDirector,Delaware Council on Gambling Problems,Y4000\nATTORNEY,WV SECRETARY OF STATE,Y4000\nEDUCATOR ON DISTRICT SCHOOL SUPPORT TE,OGDEN CITY SCHOOL DISTRICT,Y4000\nAttorney,Fayette County Attorney,K1000\nRING CAN CORP,,Y4000\nC INNOVATIONS,,Y4000\nCANNON ASSOCIATES INC.,,Y4000\nOWNER/CEO,NETWORK INFRASTRUCTURE TECHNOLOGIES I,Y4000\nJOHN PLOTT COMPANY INC,,B1000\nCPA,CAMPBELL-CRANE,K1000\nLAWYER,\"GOIDOSIK, MORSE & ASSOCIATES PLC\",Y4000\nOWNER,RENAISSANCE EXECUTIVE FORUMS,Y4000\nTOWNSHIP OF NUTLEY,,X3000\nHUMAN RESOURCES ANALYST,LA SUPERIOR COURT,X3200\nTITLE INSURANCE EXEC,FIRST AMERICAN,Y4000\nATTORNEY,BEGAM AND MARKS/ATTORNEY,Y4000\nMarketing Exec,Ripken Baseball,Y4000\nENGINEER,\"TEI ROCK DRILLS, INC.\",Y4000\n\"GIBSON, DUNN & CRUTCHER\",,K1200\nOwner,Procomm Satellite Solutions,Y4000\nCREATIVE DIRECTOR,72 AND SUNNY,Y4000\nSHOPOLINE CORP,,Y4000\nOUTDOORS INC,,Y4000\nCHAIRMA,SUSQUEHANNA PFALTZGRAFF CO.,M4000\nOwner,Clear Creek Farm,A1000\nMORRILL & JAMES BANK,,F1100\nEngineer,Constelation Energy,E1000\nPRESIDENT,SERVICE WIRE COMPANY,Y4000\nBUSINESS,IAS,J1100\nPRESIDENT AND OWNER,\"THE FOREIGN CANDY CO., INC.\",G2200\nPHELPS JENKINS GIBSON ET AL,,Y4000\nDOXSEE SEA CLAM CORPORATION,,Y4000\nC.E.O.,American Gas Management,E1100\nEXECUTIVE,VERNON MEYERS ASSOCIATES,Y4000\nLawyer,John Chambers Pc,K1000\nMACHINIC,SELF-EMPLOYED,Y4000\nDIRECTOR,LIHAR LIMITED,Y4000\nAttorney,\"Copeland, Cook, Taylor & Bush\",Z9500\nEnvironmental Lawyer,Pollock & James,K1000\nInformation Requeste,Hawthorn Investments,J1200\nAUDIOLOGICAL RESEARCH WRIT,,X4000\nWILLIAM SWORD INC,,Y4000\nAccountant,Ahrens,J1200\nENERGY CONSULTANT,\"BEVILACQUA-KNIGHT, INC.\",Z9500\nMediator,Safe 2 Speak,Y4000\nBUSINESSMAN,INDUSTRIAL FIRST,Y4000\nEXECUT,UNITED PLANNING ORGANIZATION,JH100\nSQUADRON ELLENOFF PLEASANT ET AL,,K1000\nATTORNEY,HEALTHFIRST,X3000\nTHE ISAAC CORPORATION,,Y4000\nSR. DIRECTOR REIMB & STRAT. A,AMGEN,H4300\nBEST EFFORT,SELF-EMPLOYED/BEST EFFORT,J9000\nRetailer,\"Boscov's Department Store\",G4300\nSELF-EMPLOYED,CARTAGZ,Y4000\nADVANCED RESEARCH CHEMICALS,,M1000\nAttorney,The Berkowitz Law Firm,K1000\nALAPAHA CIRCUIT,,Y4000\nBusiness Executive,CMDI,C5130\nPRESS OFFICE,SOCIAL SECURITY ADMIN.,X3000\nPartner,The Alexander Strategy Group,K2000\n\"Vice President, HR\",\"Rent-A-Center, Inc.\",G5300\nNORMAN MANAGEMENT CO,,Y4000\nlliterary agent,self,J1200\n\"RAMSDELL'S INC\",,Y4000\nCEO,Cybex International,Y4000\nFINANCIAL EXECUTIVE,ELLIOT MANAGEMENT CORP,F2700\nRETIRED,GRAND MARAIS MOTORS,Y4000\nCORBOY & DEMITRIO PC,,K1000\nPHYSICIAN,DOWNTOWN EYE ASSOCIATES,H1100\nW MILTON PRECISION,,Y4000\nProsecutor,Pulaski County,X3000\nEXECUTIVE,ATKINS BENHAM,Y4000\nMember Services Director,House Office of the Majority Leader,Y4000\nOwner,Frog Legs Winery,G2820\nOwner,Easy Money Check Cashing,F1400\nBusi. Exec.,Seaboard Products,Y4000\nOwner,\"Bells International, Inc\",Y4000\nSOFTWARE DEVELOPER,ADECCO,Y4000\nSTANDARD PARKING CO,APCOA,Y4000\nINVESTOR,COLT VENTURES,F2500\nNACHC,,Y4000\nMARKETING,SHELL OIL,E1110\nPRESIDENT,WALSHA PROPERTIES,F4100\nM.D.,Medcenter One,Y4000\nOSU HARDING,,Y4000\nLAW FIRM,,E1140\nPOSTMASTER,US POST OFFICE,L1500\nMOONEY EGG FARMS,,A2300\nOWNER,DENNY MENHOLT FRONTIER CHEV,Y4000\nANESTHESIOLOGIST,UNIV OF TEXAS SW MED CTR,H1130\nPrivate Banker,Texas Capital Bank,F1000\nNUTRITION ADVISOR,SELF-EMPLOYED,G0000\nManager,Zegato Solutions,Y4000\nENGINEER,MOLYCORP INC.,Y4000\nINS BR,\"DAVID M. BANET & ASSOCS, INC\",F3100\nOWNER,SCHOOLFIELD & ASSOCIATES,X3500\nAMERICANS FOR A SAFE ISRAEL,,J5100\nInsurance Advisor,LLS Consulting,Y4000\nORTHOPEDIC ASSOC OF SAV,,H1130\nATTORNEY,ARMKNECHT AND COWDELL PC,Y4000\nManaging Partner,\"Vorys, Sater,Seymour & Pease\",K1000\nFinancial Consultant,Mackenzie Patterson Fuller,J1200\nOwner,All Care Pilgrim Home,Y4000\nINFO REQUESTED,Jvb Dairy,A2000\n\"FRAGOMEN, DELREY & BERNSEN\",,K1000\nMULLIN CONSULTING INC,,F5500\nPRESIDE,J V J  MAXWELL COMPANY INC.,Y4000\nSELF-EMPLOYED/LANDSCAPER/RETAIL,,B3600\nVice Chair,Fannie Mae,J7400\nINTE,BROOKHAVEN NATIONAL LABORATORY,H3400\nOwner,Stephen Lyon,Y4000\nCEO/Owner,LMS Services Inc,Y4000\nAccount Executive,MULLEN ADVERTISING,G5210\nLaw Clerk,\"XL Capital Assurance, Inc\",Z9500\nSR. VICE PRESI,DOMINION ENERGY INC.,E1620\nBook Linder,Self-Employed,H5100\nhealth officer,MCRHC,Y4000\nAttorney,HAYNES & BONNE L.L.P.,K1000\nInformation Requested,Tarrant County,X3000\nBUFFALO INS SERVICE,,F3100\nSALES,MANCEL ASSOCIATES INC,Y4000\nREAL ESTATE,GVA SMITH MACK,Z9500\nSURGEON,UNIVERSITY OF LOUISVILLE,G6500\nPRESIDENT/CHAIRMAN,GIROSOL CORP.,Y4000\nOwner,\"Alameel Family Partners, Ltd.\",H1400\nATTORNEY,KERN & GONZALEZ,K1000\nVP Community Affairs,Turnberry Associates,F4100\nGENERAL MILLS REST INC,,G2100\nREAL ESTATE DEVELOP,STERN AND STERN,F4000\nPresident,Fibre Optics Development Systems In,Y4000\nSales,BSI,Y4000\nL,,LT500\nBartender,Tavern on Brand,G2900\nA,LAW OFFICES OF FRANK L BRANSON PC,K1000\nChemist,De Gussa,Y4000\nVOLUNTEER,MEALS ON WHEELS,Y4000\nKLAMATH PACIFIC CORP,,Y4000\nRETAIL SALES,BEHNKE,A8000\nCHEMIST,ASTRAZENECA,H4300\nSUNSET VILLAGE,,Y4000\nExec Asst/Paralegal,Equity Group Investments LLC,F4100\nATTORNEY,CARISMITH BALL,Y4000\nManaging Partner,Heidrick & Struggles,G5200\nOwner,Fourth R,Y4000\nCMI CORP,,T6200\nMarketing,Euro RSCG,Y4000\nHOLTVILLE VLG VAC COOLING CO,,Y4000\nSR. VICE PRESI,GRYPHON TECHNOLOGIES,D9000\nOWNER,\"RITE-WAY CONST., INC.\",Y4000\nPARTNER,PENDEL MANAGEMENT COMPANY/PARTNER,Y4000\n\"CEO, IGO CARSHARING\",CENTER FOR NEIGHBORHOOD TECHNOLOGY,Y4000\nBARRACK RODOS & BACIN,,J5100\nLOBBYIST,\"RES ALLIANCE FOR JOB, INC.\",K2000\nPresident,Cosmopolitan Plastic & Reconstruct,H1130\nSHERWOOD MEMORIAL PARK INC,,Y4000\nTORCH OFFSHORE,,Y4000\nFREEPORT-MCMORAN INC,,\nAMSCO LTD.,,Y4000\nCEO,DAHLMAN ROSE & CO.,Y4000\nOffice Manager,AP Orthopedic and Rehabilitation,H1130\nPRESIDENT,STENTON CORPORATION,Y4000\nEXECUTI,CITIZENS FOR MODERN TRANSIT,Y4000\nBusiness Development Manager,Experis,Y4000\nExecutive Vice President,JJ Bakery,G2100\nLEK Consulting,,Y4000\nCEO,GRANDVIEW PRODUCTS COMPANY,Y4000\nPARTNER,JN CONSULTING,Y4000\nMEMBER,HILLIARY COMMUNICATIONS,Y4000\nCHAIRMAN,SET ENTERPRISES,Z9500\nREAL EASTE B,CARROLL & CARROLL INC.,Y4000\nattorney,\"Eilbacher, Fletcher, P.C.\",K1000\nE G O S,,Y4000\nSASCO ELECTRIC,,J1100\nPHYSICIAN,ATL CTR REPROD MED,J1200\nCEO,C.A. WHITE,Y4000\nVP,ELECTRIC BOAT,D5000\nAttorney,\"Kirby McInerney & Squire, Llp\",K1000\nHUMAN RESOURCES,\"HANOVER DIRECT, INC.\",J7400\nLawyer,DHL,T7100\nDirector Of Labor Relatio,Cox Communications,C2200\nFROST NATIONAL BANK,,F1000\nENGINEER,DOLBY LABS,Y4000\nMEDICAL DEVICE SALES,INTEGRITY MEDICAL,Y4000\nInformation Requested,Information Requested,G5500\nMD,Talbert Medical Group,H0000\nPresident,Western Pacific Roofing Corp.,B3000\nPSYCHOLOGIST,HEALTHPARTNERS MEDICAL GROUP,Y4000\nPRESIDENT,CONRAD & ASSOCIATES,Y4000\nInformation Requeste,Sierra Club,JE300\nCHAIRMAN,LEE COUNTY BOARD OF COMMISSION,Y4000\n\"GARSON, GOODMAN INC\",,Y4000\nEDUCATORS PUBLICATIONS,,C1100\nATTORNEY,\"EUBANKS, BAKER & SCHULZE\",K1000\nWACHTEN & LIPTON,,K1000\nFAIRLAND MKT INC,,Y4000\nUSD SCHOOL OF MEDICINE/PHYSICIAN/DE,,H5150\nPHYSICIAN,EASTERN MEDICAL CENTER,H2100\nINVESTMENTS,A. WILSEY PROPERTIES CO./INVESTMENT,F4000\nINVESTMENT BANKING,GCA SAVVIAN,Z9500\nWHITE ROCK CAPITOL,,Y4000\nNATL CABLE & TELECOMMUNICATIONS ASS,,C2200\nVP,C-COR,Y4000\nVP MFG OPERATION,HARNISCHFEGER CORP,E1240\nADMINISTRATIVE OFFICE OF THE US COU,,Y4000\nENTERTAINMENT MANAGER,SELF EMPLOYED/ENTERTAINMENT MANAGER,G6000\nWENY BROS & STORMS CO,,Y4000\nCHAIRMAN & CEO,CHARLES SCHWAB,F2100\nCEO,TUCSON IRON AND METAL,M2000\nAttorney,Elk & Elk Co. LPA,Y4000\nPRESIDENT,LINDY PAVING INC.,B3000\nMECHANICAL ENGINEER,RESOURCE TEK INC,Y4000\nCOMMUNICATIONS,\"INLAND ENGINEERING SERVICES, INC.\",B4400\nPresident,Universal Coin & Bullion,F2200\nFINANCIAL SERVICES PROFESSIONAL,NEW YORK LIFE INSURANCE COMPANY,F3300\nCEO,Farm and Home Oil Co.,E1100\nOwner,Harvey Maintenance & Repair,G5600\nCHICAGO POLICE,,X3200\nARTIST/ TEACHER,SELF-EMPLOYED,H5000\nC. E. O.,SIMMONS BROTHERS CONSTRUCTION,B1500\ncoffee house,self,G0000\nC.E.O,SILVER EAGLE DISTRIBUTORS L.P.,G2850\nVACATION RESORT,\"CRC HOLDINGS, INC.\",Y4000\nOLSSON ASSOC,,Y4000\nPARTNER,GOLDBERG PERSKY & WHITE,K1000\nVice President,Employee Assistance Associates,J1200\nPRAGMATIC MARKETING INC./PRESIDENT/,,Y4000\nVP & Deputy General Counsel,Verizon Corporate Svcs Corp,C4100\nDeveloper,Continental Wingate,F4000\nARCHITECT,PETERSSEN / KELLER ARCHITECTURE - MINN,B4200\nResearch,The Nielsen Company,G5200\nPRINCIPAL REAL ESTATE,,F4000\nPhilanthropist,The Engelberg Foundation,J1200\nReal Estate,Unisource,F4000\nLEGAL COUNSEL,D.A.N. LLC,Z9500\nMANAGEING PARTNER,COMMUNITY CARE ASSOCIATES,J5400\nCHAIRMAN OF,THE BENEFIT CAPITAL CO.,F0000\nDIRECTOR,1ST STATE BANK,F1100\nFinancial Officer,Taylor Motor Company,Y4000\nEXECUTIVE MANAGEMENT,J.R. LONG INC.,B0500\nPEDIATRICIA,ADVANCED PEDIATRIC CARE,H1130\nPRESIDENT,STALLARD & SCHUH INC.,G1200\nCOLLEGE PROFESSOR,SOKA UNIVERSITY,H5100\nTHE BEACON CO,,F4100\nBULZEL LONG,,Y4000\nPICKWICK ELECTRIC CO-OP,,E1610\nOwner,K-B Granite,Y4000\nINFORMATION REQUESTED,EQUITY RESOURCE INVESTMENTS,F2100\nManager,US Russia Business Council,G1300\nBUS. DEVELOPMENT CONSULTA,LHC GROUP,H3000\nACCOUNTANT,SOLOMON CORP.,Y4000\nREAL NETWORKS INC,,C5120\nOIL & GAS EXPL.,SELF-EMPLOYED,E1120\nENSIGN BLCKFORD,,Y4000\nATTORNEY,LLORCA & HAHN LLP,K1000\nPRESIDENT,HARDT GROUP ADVISORS,Y4000\nNATIONAL INDEPENDENT DAIRY FOODS,,K2000\nDentist,The Hoffman Dental Group,H1400\nDIRECTOR,RANGE RESOURCES-APPALACHIA,Y4000\nANESTHESIOLOGY,AURORA SHEBOYGAN MEMORIAL ME,Y4000\nCONTROLLER,STAR PIPE,M5000\nCOMMUNICATIONS,FLORIDA POLICY POINTS,Y4000\nSALES,EULER AMERICAN CREDIT/SALES,Y4000\nPRESIDENT,STRICKBINE PUBLISHING INC.,C1100\nCEO,SAFEWAY HOMES,B2000\nINVESTMENT BANKER,L. J. HART & COMPANY,F2100\nENGLEWOOD MEDICAL,,H0000\nBUSINESSMAN,UNITED GALABE & SERVICE CORP.,Y4000\nUNIVERSITY PROFESSOR,GEORGE WASHINGTON UNIVERSITY,H5100\nPARALEGAL,NONE,Z9500\nOWNER,MOONSTONES AMERICAN ART GALLERY,Y4000\nCommunity Activist,N/A,F4000\nAGRICULTURAL PRODUCER,WARREN RANCH,A3000\nInformation Reqested,Information Reqested,X3500\nGOVERNMENT RELATIONS,OAKWOOD HOSPITAL,H2100\nLAWYER,\"GAYLORD EYERMAN BRADLEY, PC\",K1000\nChairman Emeritus,Simon Property Groug,F4100\nCAROL DISABLED,,Y4000\nManager,Conco Food Service,G2900\nPEDIATRIC ANESTH,,H1130\nACCOUNT EXECUTIVE,JOHN W. DANFORTH CO.,Y4000\nPhysician,\"Wayne Kleinman, MD\",H1100\nPresident,Centrad Healthcare Inc.,Y4000\nGYN - M D,OB,H1130\nRetired Oil Co Exec/Senator,Retired,X1200\nFISHER RANCH,SELF EMPLOYER,G0000\nOwner,Advanced Wound Care LLC,Y4000\nCONTRACTO,M.C. CONTRACTING SERVICES,Y4000\nConsultant,JP Morgan Chase,F1100\nN J ECONOMIC DEVEL AUTHORITY,,Y4000\nANESTHESIOLOGIST,E RIVER MED ANESTH,H1130\nBreeder/Owner,Self,Y4000\nPHYSICIAN,UK,Y4000\nLABORATORY MEDICINE CONSULTANT,,H1700\nLICENSED ACUPUNCTURIS,SELF-EMPLOYED,Y4000\nPresident,DYNIFTIC Corp,J1200\nSPRINK,BEST AUTOMATIC SPRINKLER CO.,Y4000\nNAGEL AGENCY INC,,Y4000\nEXECUTIVE DIRECTOR,INDEPENDENCE CENTER,H3000\nST LOUIS SCHOOLS,,X3500\nJOEL H HARRISON DMD LTD,,H1400\nINVESTMENT ADVISOR,INVESTORS CAPITAL CORP.,F2100\nPRESID,\"JOBE CONCRETE PRODUCTS, INC.\",B5100\nCHAIRMAN & CEO,COHEN AND STEERS,Y4000\nSurveyor,Maser Consulting,B4000\nENGINEER,PATTERSON& COMPANY,Y4000\nEndodontist,University Park Endodontics,Y4000\nSOCIAL STUDIES SCHOOL SER,,H5000\nTHE ROBERT HENRY CORPORATION,,Y4000\nSENIOR PARTNER,BC PARTNERS,Y4000\nKALAMAZOO METAL FINISHERS,,M5000\nOKALOOSA SCHOOL DISTRICT,,X3500\n\"SVP, General Counsel & Secretary\",Corporate Office Properties Trust,F4100\nOwner,Aim for Better Health,H0000\nManaging Partner,Wachtel & Masyr,K1000\nCONSULTANT,NOT EMPLOYED,F2000\nPRINCIPAL ENGINEER,INTEL CORP.,C5110\nOWNER,SKYLAB TECHNOLOGIES GROUP INC.,Y4000\nFOUNDER,ACORN ADVISORS,F2500\nATTORNEY,THOMPSON COBURN LLP,K1000\nENGINE,TRAFFIC PLANNING SYSTEM INC.,Y4000\nLAWYER,\"BONDURANT, MIXSON & ELMORE\",Z9500\nMANAGER,SUNFLOWER BANK,Y0000\nPartner,Aljud Management Corp.,Y4000\nInfo Requested,Info Requested,B6000\nENGINEER,CHEMSTONE,Y4000\nATTORNEY,GREENBERG & TRAURIG L.L.P.,J5100\nPRESIDENT AND CEO,NALL DEVELOPMENT CORPORATION,Y4000\nArt Dealer,Lesley Heller Gallery,X4200\nPR,CORPORATE RESOURCE SERVICES INC.,Y4000\nPRIVATE EQUITY INVESTOR,LAKEMARK LLC,Y4000\nCONSULTANT,KEVIN K BRUCE,Y4000\nTHE ENGEL GROUP,,Y4000\nADMINISTRATIVE ASSISTANT,NG TURF,Y4000\nScientist,Dyax Corp,JE300\nPRES,DIAGNOSTIC LABORATORY SERVICES,Y4000\nFIRST UNION CAPITAL MNGT GRP,,Y4000\nInvestor,\"JDM Partners, LLC\",F5000\nIMS,,F3100\nLAWYER,\"LOEB & LOEB, LLP\",F3300\nPUB AFF MG,UNITED PARCEL SERVICE INC.,T7100\nLAWYER PR,,K1000\nRETIRED - AGRIBUSINESS,,X1200\nReal Estate Broker,RE/MAX at the Beach/Holden Bch,F4200\nMerchant Banker,Oxford Investment Group,Y4000\nACCOUNTANT,RETIRED,J5100\nWetland Scientist,Resource Internation,Y4000\nVice President-Bd-Subsidiary,\"KOCH MINERALS, LLC\",E1160\nLawyer,Corbin & Fitzgerald Llp,K1000\nSALMOM SIMS THOMAS & ASSOCIATES P.L,,Y4000\nCPA,\"HASS & COMPANY, LLC\",J6200\nOFFICE MAN,OCEANSIDE IRON AND STEEL,M2000\nAILANTHUS LTD,,G3000\nCEO & Chairman,LaChase Construction Services,H5000\nATTORNEY,FARMERS INSURANCE EXCHANGE,F3100\nPRINCIPAL,THE FIRST GROUP,F4200\n,INTERNATIONAL DAIRY FOODS ASSOCIAT,A2000\nENGINEER,JOHNS HOPKINS UNIV,H5100\nAttorney,University of Wisconsin,H5100\nGOVERNMENT RELAT,HEARTLAND HOSPITAL,H2100\nCREW MANAGER,CHIPOTLE,Y4000\nWELLCRAFT MARINE,,T6000\nOwner,Environmental Resources,E3000\nGREENWICH CAPITAL MARKETERS,,F2100\nMONUMENTAL CONSTRUCTION,,B1500\nMANAGING DI,\"CLARK & WEINSTOCK, INC.\",G5270\nSENIOR,\"WILDBLUE COMMUNICATIONS, INC\",Y4000\nEXEC. VP,BECKER ORTHOPEDIC,H1130\nReetired,Self,Y4000\nFRANKLIN BUILDERS INC,,B1500\nINSTRUCTOR,ATLANTA TECHNICAL COLLEGE,H5100\nPhysician,Cape Labs and Pathology,H1130\nINVESTOR,MCCOWN DE LEEUW & COMPANY,Y4000\nSR VP,Smith Dawson & Andrews,K2000\nENGINEER,\"LONG ENGINEERING, INC./ENGINEER\",B4400\nMICHAEL COMPANIES INC.,,F4000\nSECRETA,SUKEY MANUFACTURING COMPANY,J1100\nChief Executive Officer,Acute Long Term Hospital Association,H2100\nEXECUTIVE,CAPITAL SERVICES OF VA,Y4000\nPhysician-Surgeon,Mayfield Clinic,H1100\nEXECUTIVE,WILD OCEAN SEAFOOD MARKET,Y4000\nREAL,L LANCE GILMAN COMMERCIAL REAL,F4000\nFARMER ENTERPRISES,,F4500\nInterm CEO,Signature Healthcare Brockton Hospital,H2100\nRealtor,Poyant Real Estate,F4000\nCEO,Damage Control Technologies,Y4000\nCOMMUNITY BANKER,THE FIRST NATIONAL BANK OF BRUNDIDGE,F1100\nLOAN DIR,INTERNATIONAL FINANCE BANK,Y4000\nCONTRACTOR,F & M CONTRACTIONS,Y4000\nPresident/ceo,Jemd Dba Southen Pines Chiropractic,H1500\nGARY BROOKS & ASSOC,,Y4000\nIRG COMPUTER CO,,C5100\nCHAIRMAN,\"WILLIAM CHARLES, LTD\",B1500\nInsurance Exec,Self,J1200\nCFO,UNIVERSITY HOSP/MED CTR,H2100\nRET,BAIRNCO CORP,Y4000\nCEO,Golden & Associates Construction,B0500\nOWNER,NEI Electric Co Inc,B3200\nMarketing,Wolfington Group,Y4000\nGENERAL MANAGER,C&C TECHNOLOGIES,E1150\nREGIONAL DIREC,SALOMON SMITH BARNEY,F1100\nVICE PRESIDEN,DAVID EVANS AND ASSOC,E1500\nOffice Manager,Hoover Management Comp.,J1200\nMANUFACTURER,SPECIALITY AUTO PARTS,T2200\nBAN SECOURS HOSPITAL,,H2100\nmuseum curator,University of north Carolina,Z9500\nMANAGER,NOVELTY CRYSTAL CORP.,Y4000\nRETIRED PUBLIC SCHOOL,RETIRED,JE300\nVICE PRESIDENT,SOFTWISE INC.,Y4000\nRegistered Nurse,Maximus Federal Serv,Y4000\n\"CONDUIT TOTAL: $39,975.00\",,J1200\nCollege Professor,Louis & Clark College,H5100\nAttorney,Goldberg Kohn Attorneys at Law,J5100\nFilm/TV Production,Synergetic Productions,Y4000\nEXECUTIVE,AUDIBLE.COM,Z9500\nOWNER,ALPEMORE DAIRY,A2000\nWatching The World,Information Requested,Y4000\nLAWYER-STATE SENATOR,,Y4000\nWETHERBEE RENTALS,,G5300\nATTORNEY,ASU FOUNDATION,H5100\n55 STAN OPERATING CORP,,Y4000\n\"VP, PRODUCT DEVELOPMENT\",GROUPON,Z9500\nATTORNEY,CARNAHAN EVANS & CANTWELL,K1000\nIRVING FARMS,,A1000\nPSYCHOLOGIST,SINAI HOSPITAL,Z9500\nBOGAN AEROTECH INC,,Y4000\nPhysician,Greater Cincinnati Digestive,H1130\nREAL ESTATE,\"BARNOTT PROPERTIES, LLC\",F4000\nATTO,POMERANTZ HAUDEK GROSSMAN & GR,K1000\nMARLENE BANE ASSOCIATES,,Y4000\nELECTRICAL CONT,SWAIN ELECTRIC INC.,B3200\nOWNER,M&R MANAGEMENT CO.,F4200\nOFFICER,STATE OF HAWAII,X3000\nCOLUMBIA UROLOGICAL ASSOC,,H1130\nPhysician,Hardman Patholgy,Y4000\nEXECUTIVE,\"JBS INTERNATIONAL, INC.\",Y4000\nPRESIDENT,APT COMPANIES,F4500\nLobbyist,Avenue Solutions,J1200\nGUNN AUTO DEALERSHIPS,,T2300\n\"ANDREWS, MYERS & DON\",,Y4000\nCEO,GPP Corp,Y4000\nPhysician,NH-Hematol/Oncol PA,Y4000\nATTORN,VAFIADES BROUNTAS & KOMINSKY,K1000\nAttorney,Spector Roseman & Kodrof,K1000\nManager,Sharp Chevrolet,T2300\nWASH STATE DEPT OF HS,,H5100\nInvestor/Author,Self-Employed,F7000\nCAST METAL IND INC,,Y4000\nOPERATIONS MANAGER,NORDC WELL SERVICING INC.,Y4000\nRealtor,Lucas Valley Properties Inc,F4000\nHEALTH CLUB OWNER,COLONY SQUARE ATHLETIC CLUB,G5800\nCAO,AIG,F3100\nPRESIDENT,THE BROADMOOR HOTEL INC.,T9100\nDIRECTOR OF ENGINEERING,BEAU RIVAGE,G6500\nrwolfson@earthlinknet,self,Z9500\nPresident,\"Michigan's Reliable Computer Solution\",Y4000\nContractor,The Wills Company,Y4000\nGAS INVESTMENTS,OIL,E1120\nMANAGER,\"ANNE'S DOWNTOWN\",Y4000\nATTORNEY,GIRARDI & KEYES,K1000\nATTORNEY,FOULSTON SIEFKIN LLP,K2000\nATTORNEY,WELTMAN & MOSKIOWITZ,Y4000\nDON,\"American Healthcare, LLC\",H2200\nCPA,Grant Thornton LLP,F5100\nWILLIAM BLAIR & COMPANY,,F2300\nInvestment Banking,Bersec International Co.,Y4000\nPresident,Bruner Consulting,Y4000\nMINNEAPOLIS COMMUNITY AND TECHNICAL,,Y4000\nPresident,\"Global Strategy Group, LLC\",G5280\nPresident/CEO,Maxor Corporation,Y4000\ncomputer programmer,\"Renaissance Technologies, Inc\",F2700\nCPA,GREER & WALKER,F5100\nPresident & CEO,Bay Country Consumer Finance,F1400\nEXPEDIA,,C5140\nEXECU,\"ATLANTA EQUITY INVESTORS, LLC\",Y4000\nSPOKEN WORD,,Y4000\nEmergency Physician,\"Capital Emergency Physicians, P.C.\",Y4000\n\"MURRAY SCHUR MONTGOMERY & O'CONNER\",,K2000\nENGINEER,\"PAPE-DAWSON ENGINEERING, INC.\",B4400\nPRESIDENT,\"STAPLES ENTERPRISES, INC.\",E1170\nEXECUTIVE DIRECTOR,WISCONSIN TRANS BUILDERS ASS,Y4000\nTeacher,\"St Mary's College of California\",H5100\nDIGESTIVE DISEASES ASSCTS. OF TAMPA,,Y4000\nTEL CONSULTANT,,Y4000\nMANAGER/OWNER,TAYLOR LIGHTING PROTECTION,Y4000\nMARKETING MANAGER,THRIVENT FINANCIAL FOR LUTHERNS/MAR,F0000\nATTORNEY,\"JONES, WALKER\",K1000\nMOLAJO LTD,,Y4000\n\"MONDI'S\",,Y4000\nCommunity Activist,Co-Gen,Y4000\nExecutive Vice President,Manheim,C2200\nCURRAN & CONNORS INC,,Y4000\nHEDGE FUND,,F2700\nHr Manager,Citifunding Group Inc,J1200\nDoctor,David R. Winchester D.m.d.,Y4000\nPARIS COMPANIES,,G5500\nVice President,Gentiva Health Services,H3100\nResident Director/Campus Activities Co,Newbury College,Y4000\nSACRED HEART HOSPITAL,,H2100\nCEO,ENVIRONMENTAL GRAPHICS,C1300\nMANAGER,LAKE BEVERAGE,G2850\nANALYST,\"ROSENWALD CAPITAL MANAGEMENT, INC.\",F2100\nMCDOWELL RICE & SMITH,,Y4000\nPRESIDENT,CANYON STATE CREDIT UNION,F1300\nPHYSICIAN,PALM VALLEY EMERGENCY PHYSICIANS SPECI,H1100\nMEDICAL DOCTOR,MILLS-PENINSULA MEDICAL CENTER,H5150\nEXECUTIV,\"INT'L. HEALTHCARE CONSUMER\",H0000\nExecutive,\"Moonlight Molds, Inc\",Y4000\nFinance,\"Hudson & Keyse, LLC\",F1300\nPresident,Bozzuto Development Company,Y4000\nPhysician,\"Lee Ann Roberts, MD, PA\",H1100\nPHYSICIAN,RADIOLOGICAL GROUP P.A.,H1130\nRADIA,CANCER CENTER OF NORTH DAKOTA,H1130\nScience Educator,Nye Labs,Y4000\nConsultant,Iconoculture,Y4000\n\"GLOBAL DIRECTOR, TALENT\",GILBARCO VEEDER-ROOT,Y4000\nGOVERNMEN,NAT. ASSOC. OF HOME BLDRS,B2000\nCivil Engineer,City Of Fresno,X3000\nEXEC,\"HARBOUR GROUP INVESTMENTS, INC\",M0000\nINVESTMENT ADVISOR,\"HALSEY ASSOCIATES, INC./INVESTMENT\",J1100\nSTOCK BROKER,BANNOCKBURN CAPITAL,F2100\nGOVERNMENT RELATIONS,UNITED SURGICAL PARTNERS INTERNATIONAL,H3000\nCOLLEGE INSTRUCTOR,WITC,Y4000\nENGINEER,PRESBYTERIAN HEALTH SYSTEM,Y4000\nEMERGENCY PHYSICIAN,TEAM AEIBJRN EMERGENCY,Y4000\nInsurance Broker,NIA Group,Y4000\nConsultant,McDonough & Associates,B4400\nSales Associate,Sewell Lexus,T2310\nCONSULTING ENG,WILLIAM MORRISSEY PE,Y4000\nWestern Regional Manager,Cavco Industries,B2400\nINFO REQUESTED,Vanda Properities,Y4000\n,\"TRINITY TERRACE MEN'S ORGANIZATION\",Y4000\nSYSTEMS ADMINISTRATOR,STATE OF CALIFORNIA/SYSTEMS ADMINIS,X3000\nProject Engineer,AST Engineering,B4400\nPRESIDENTIAL LIFE INSURANCE,,F3300\ngovernment relations consultant,TwinLogic Strategies LLP,K2000\nCHAIRMAN OF,AMERICAN BUSINESS BANK,F1100\nSELF EMPLOYED,CONSULTANT/EXECUTIVE,G5200\nSMITH CONSULTING,JONES,T9100\nPRESIDENT & CEO,SCRIPTPRO LLC,Y4000\nPRESIDENT,FRAYJI DESIGN GROUP INC.,Y4000\nMandell Menkes LLC,,Y4000\n\"Group VP, DuPont Safety & Protection\",EI Du Pont de Nemours and Company,M1000\nSUSSMAN SELIG & ROSS,,Y4000\nCPA,\"STEELE & ASSOCIATES, LLC\",F5100\nADMINISTRATIVE,\"MIKE'S CAMERA, INC.\",Y4000\nBOGENSCHUTZ & DUTKO PA,,Y4000\nDEALER,,T8200\nMANAGER,SOUTHWEST WILOWRINT ENTERPRISES,Y4000\nAttorney,Sidley Austin Brown & Wood,K1000\nHomrmaker,Self employed,J1200\nSECRETARY,CUSHING AND DOLAN,K1000\nFundraiser,Gov. Thompson Committee,J1100\nParent Education,Self,H5000\nLiteran Agen,GSLA,Y4000\nSenior Vice Presiden,FHLBank Atlanta,F4600\nVP OF OPERATIONS,LIFE TIME FITNESS,G5800\nInvestment Advisor,Gabelli Asset Management,J7150\nCNTL VT PUBLIC SERVICE,,Y4000\nPsychiatrist (Md),UAB,H1100\nPHYSICIA,DFES - DRS FOR EMERG. SVS.,Y4000\nNeonatal-Perinatal Medicine,MeritCare,Y4000\nRAY BISHOP & ASSOCIATES,,Y4000\nOWNER,BENNETT E. SHIFMAN & CO. LLC,Y4000\nSFH BLIMPIE INC,,Y4000\nMedia Producer,Self - Employed,C2300\nCivil Engineer/gener,Az Home Inc,Y4000\nPrincipal,Jefferson Gov. Relations,K2000\nSPENCER & SPENCER SYSTEMS,,C5130\nChief of Staff,Fulton County Board of Commissioners,Z9500\nPHYSICIAN,MID-ATLANTIC CT SURGEONS,H1130\n\"BUSSEN QUARRIES, INC.\",,B5100\nPRESIDENT,THE NANNY TAX COMPANY,Y4000\nChairman/CEO,Bob Evans Farms,A1000\nREAL ESTATE BROKER,WILLIAM C FURST RE BROKER/REAL ESTA,F4200\nST. VINCENT HLTH CTR,,Y4000\nEXECUTIVE,THE RIORDAN FOUNDATION,Y4000\nVIBRAN TECH,,Y4000\nCUSTOMS BROKER,J & K FRESH LLC,G1400\nSegment Head of Fina,Aetna Inc.,H3700\nOWNER,GOVER RANCH,Y4000\nSKATELAND,,Y4000\nVICE,CABLEVISION SYSTEMS CORPORATIO,C2200\nManager,Eq Industrial Services,Y4000\nVP Marine Division,\"Totem Ocean Trailer Express, Inc.\",T6200\nDESIGNER,R. M. HOLBROOK ASSOCIATES INC.,Y4000\nPUBLIC INFORMATION,AT&T,C4200\nPresident,Business Printing Plus,C1300\nAttorney,\"New Ventures Partners, LLC\",J5100\nBROWN & BROWN/ASST. V.P./MARKETING,,F3100\nAGGREGATE INDUSTRIES/V.P./GEN. MGR.,,B5100\nFONTANA UMFIRE SCHOOL DISTRICT,,Z9000\nCONS,VALENTE LAKE LOPATIN & SCHULZE,K2000\nASSISTANT,ENGINEERING WELDING & FABRICATING CO.,B4400\nNEWTON CHEVROLET INC,,T2300\nManaging Director,Kelso & Co.,F2100\nAcademic Administrator,Hobart and William Smith Colleges,H5100\nMD,Putnam Investments,F2100\nLAND STEWARDSHIP SERVICES,,Y4000\nINVESTMENTS,GREER ANDERSON CAPITAL L.L.C.,Y4000\nPresident,Murray Pacific Corp.,Y4000\nBUILDER,GREGOR CONSTRUCTION,B1500\nATTORNEY,U.S. ARMY,X5000\nCHIEF CO,BRENNAN CENTER FOR JUSTICE,H5000\nKNOPF & ASSOCIATES INC.,,Y4000\nLabor Union Organize,AFSCME Council 20,L1200\neconomist,IADB,Y4000\nTeacher,Ahaheim Union High School Dist,X3500\nOWNER,C-TOWN SUPERMARKET,G2400\nWHITECO/OUTDOOR/ADV DIV WHI,,G5230\nZ-WORLD INC./PRESIDENT/PRESIDENT,,Y4000\nHEADUSTERS,,Y4000\nINDIVIDUAL INVESTOR,SELF-EMPLOYED,F7000\nENGINEER,DNS ELECTRONICS,Y4000\nReal Estate,West Group,J7300\nARCHIT,R.L. BOWEN & ASSOCIATES INC.,B4200\nROBERT A CROWE,,Y4000\nWILKES COLLEGE,,H5100\nPresident and Chief Executive Officer,North Shore Medical Center,H2100\nMANAGER,B AND R PLASTICS INC,M1500\nCEDAR BAYOU MARINA,,Y4000\ngeneral manager,Bear Creek Sporting Clays,M3600\nUTILITY CENTER INC,,Y4000\nTEACHER,WAUKESHA CATHOLIC SCHOOL SYSTEM/TEA,H5100\nCeo,\"Oshkosh B'Gosh, Inc.\",Y4000\nVETS EXPLOSIVES INC,,M1100\nDEAN AND INSTRUCTOR,FOX VALLEY TECHNICAL COLLEGE/DEAN A,H5100\nFinancial management,Vianon,Y4000\nPILIERO MAZZA & PARGAMENT PLLC,,K1000\nINSURANCE B,WILLIS OF NEW YORK INC.,Y4000\nEXECUTIVE,NOW SPECIALTIES INC.,M5000\nBERKSHIRE FASHION,,G4100\nPARRIERA & COMPANY,,Y4000\nOperations Intellige,D.O.D.,X5000\nIMMIGRAT,DEPT. OF HOMELAND SECURITY,X3000\nWHOLESALER,CLERMONT DISTRIBUTING,G2850\nEXECUTIVE,SABIN METAL CORP,M2200\nTRADER,KC-CO II L.L.C.,G0000\nCOMMERCIAL LENDER,BB&T,F1100\nMARSHALL COUNTY SCHOOL SYSTE,,X3500\nOWNER,REECE ELROD TRUCKING INC.,T3100\nVP &,UNITED STATES STEEL CORPORATIO,M2100\nRIVERBAY CORP,,Y4000\nTravel Consultant,International Travel Cen,Y4000\nAdministrator,Southern MD College,H5100\nCEO,OPKO,H4300\nS C JOHNSON & SONS,,M1300\n\"Chairman, President\",Motorists Mutual Insurance Company,F3100\nSELF EMPLOYED,ALSI WOOD FLOORS,Y4000\nPRESIDE,ALLIANCE OF AUTOMOBILE MFG.,T2100\nGUARANTEE INTERIORS,,B3000\nAttorney,\"O'Neal, Parker & Williamson\",K1000\nPolitical Consultant,Coleman for Governor,Y4000\nCHIEF MEDICAL OFFICER,PENNOCK HOSPITAL,H2100\nCREATIVE DIRECTOR,SAFFIRE CORP.,Y4000\nClerk,Jpmorganchase,J1200\nFilm distributor,Self,G0000\nPHYSICIAN,ST. VINCENT PHYSICIAN ENTERPRISES,Y4000\nADMINISTRATIVE ASSISTANT,COMMERCIAL INDEX BUREAU INC.,Y4000\nTEACHER,SANTA FE SECONDARY SCHOOL,Y4000\nSTOCK CONTRACTOR/PRODUCER,SELF,Y4000\nACCUPUCTURER,SELF-EMPLOYED,Y4000\nANESTHESIOLOGIST,NORTH FULTON ANESTHESIA ASSOC.,H1130\nSVP STRAT PLNG,UNION PACIFIC CORPORATION/SVP STRAT,T5100\nTherapist,Boca Point Country Club,Y4000\nattorney,Olsson Frank Weeda PC,K1000\nMANAGER,VAN PAEMEL CAR SALES,Y4000\nJ S ALBERICI CONST CO INC,,B1000\nAttorney / Partner,Barret Johnston & Parsley,K1000\nDeputy Controller-In,\"California State Controller's Office\",Y4000\nATTORNEY,\"BURKE, HARVEY & FRANKOWSKI\",K1000\nBUS MGR,KEY CITY INV CO,Y4000\nFOREIGN AFFAIRS,U.S. GOVERNMENT,X3000\nExecutive Finance,\"Alarian Associates, Inc\",Y4000\nRETIRED,JDH CONSTRUCTION CONSULTANTS,B1500\nInvestor/Attorney,Self Employed,J1100\nPROFESSOR/RESEARCHER,ARGONNE NATL LAB,X3000\nDURYEA BUILDING COMPANY,,Y4000\nANESTHESIOLOGIST,ALL WOMENS MEDICAL,H1130\nROUSH PRODUCERS CO INC,,Y4000\nPUBLIC AFFAIRS,CONLEE CONSULTING,Y4000\nAdministrative Assis,Town of East Haven,X3000\nTHE SHERATON CORPORATION,,Y4000\nInformation Requested,Fairview Health Services,H0000\nCHENEGA MANAGEMENT CORP,,Y4000\nINVESTOR,NEWPORT NATIONAL CORPORATION,J1100\nRetired,Retired,H3000\nHOMEMAKER,N/A,G4800\nDAN A HUGHES CO,,E1100\nCHAIRMAN,V GROUP,Y4000\nSECRETARY,AAA AJAX PUMPING SERVICE INC,Y4000\nInformation Requeste,\"Kutten Muchin Rosenman, LLP\",K1000\nreal estate develope,COMMERCIAL NET LEASE,F4000\nMEMBER COMPANY,SUPERIOR INDUSTRIES,B5100\nINVESTOR,SORES FUND MANAGEMENT,F2600\nSALESMAN,JCS APPAREL,M3100\nHARRY M WORD CO,,Y4000\nExecutive,\"Dominion Resources, Inc\",E1620\nOFFICE MANAGER,\"SIGMA ELECTRIC, INC.\",B3200\n\"Mgr, Goverment Relat\",Fortis Insurance Company,F3400\nNURSE-MIDWIFE,CAPITAL HEALTH,Y4000\nPresident,Mary Green Enterprises,K1000\nREAL ESTATE DEV,MUSS DEVELOPMENT CO,J5100\nSUCHALTER NEMER FIELDS,,Y4000\nEXECUTIVE,PINON HOLDINGS,F7000\nExecutive,Self,E1150\nSCHNEIDER HOMES,,B2000\nTown Councilwoman,Town of Stanford,Y4000\nowner,IBS Collision Center,Y4000\nRep Investment Banke,R M Watson Credit Union,F4100\nPSYCHIATRIC NURSE,KAISER PERMANENTE,Z5300\nSILLERMAN COMPANIES INC,,C2900\nWESTERN TRUCKING INC,,T3100\nDistrict Mgr.,UPS,T7100\nPRESIDENT,\"DEL GAGNON COMPANY, INC.\",Y4000\nINVESTMENTS,GLADSTONE MANAGEMENT CORPORATION,F2100\nWATERFRONT,,C1300\nCONT,CHURCH OF GOD INTERNATIONAL OF,X7000\nPresident,CAREFREE CAPITAL,Y4000\nAttorney & Law Profe,Deehl &,K1000\nART DEAL/REAL ESTATE INVESTOR,SELF-EMPLOYED,J1200\nPresident,Better Image Apparel Inc.,M3100\nVice President,Meridian Group of New York,Y4000\nPresident,ING Financial Partners,F2100\nInsurance Manager,Willis Insurance,F3100\nCEO,B R FRIES & ASSOCIATES LLC,B1000\nIAFF-FC Account Exec,Nationwide Retirement Solutions,L1400\nCIVIL ENGINEER,RETIRED,J9000\nV.P. MARKETING & COMMUNICATIONS,NEWHALL LAND COMPANY,J1100\nRegistered Nurse,Sibley Hospital,H2100\nEMAR GROUP INC,,Y4000\nGREEN SCAPE INC,,B3600\nExecutive VP,Washington Group,K2000\nOWNER,\"BLAZING GRAPHICS, LLC\",Y4000\nEDDIES ENTERPRISES,,Y4000\nSALES COORDINATOR,NCC MEDIA,Y4000\nCOUNCIL ADVISOR,SALT LAKE COUNTY,X3000\nFIRSTBANK HOLDING COMPANY,,F1000\nA,\"JOYCE, JOHNSTON & MACDONALD, PLLP\",Y4000\nBPM INTERNATIONAL,,Y4000\nLAND DEVELOPER,SELF/LAND DEVELOPER,F4100\nACCOUNTANT,\"NORTH MIAMI TAX CENTER, INC\",Y4000\nTeacher,ELMIRA CITY SCHOOL DISTRICT,X3500\n\"Robinson Associates, LLC\",,Y4000\nEVP - WHOLESALE BANKING,TRI COUNTIES BANK,F1100\nC.E.O.,TRC SOLUTIONS,Y4000\nLAMAR MANAGEMENT SERVICES,SELF-EMPLOYED,Y4000\nOwner,Albanna Neurosurgical Consultants,H1130\nINVESTOR/ REAL ESTATE DEVELOPER,SELF-EMPLOYED,F4100\nLABORER,S M E G CORP.,LB100\nChief Executive Officer,Spalding Regional Medical Center,H2100\nCounselor,The Abernathy McGregor Group,G5210\nFARGO STOPPING CENTER LLC,,E1170\nATTORNEY,WINE INSTITUTE,G2820\nGOVT R,CLEAR CHANNEL COMMUNICATIONS,C2100\nATTORNEY,JOHN & HENGERER/ATTORNEY,Y4000\nFINANCIAL EXEC,FIDELITY INVESTMENTS,F2100\nDEVELOPER,EPSTEIN REALTY CO.,F4200\nMedic,Medical Physics Services Inc.,Y4000\nTRIANGLE SUBS INC,,Y4000\nPHYSICIAN,ASHEVILLE ORHOPAEDIC ASSOCIATES,Y4000\nTax Practitioner,\"Deloitte Tax, LLP\",Z9500\nOWNER,THE SPANOS CORP,F4100\nMerchant Banker,Self-Employed,F2600\nPROGRAM DIRECTOR,CHARLES STEWART MOTT FOUNDATION,X4100\nInformation Requeste,Union Square Caf?,J7700\nBANKER,ATLANTIC CAPITAL BANK I.D.,F1000\nENTREPRENEUR/INVESTOR/EXECUTIVE,SELF-EMPLOYED,G0000\nCEO,OLDCASTLE MATETIALS INC.,B5100\nOIL & GAS EXTRACTOR,SELF-EMPLOYED,Y4000\nATTORNEY,RILEY ROSNER & MCLENDON,K1000\nManager,Actuate Corp,C5120\nPresident/CEO,Heron Holdings,Y4000\nBUSINESS DEVELOPER,THE LOGISTICS COMPANY,Y4000\nVP BUSINESS DEVLOPMENT,L-3,D3000\nPilot/Engineer,General Dynamics,D2000\nPresident,Superior Auto,T2300\nEXECUTIVE,VENTAS INC.,Z9500\nARMSTRONG ALLEN ET AL,,F1100\nPHARMACIST,CIGNA,F3200\nSTANLEY LAND COMPANY,,B2000\nPRESIDENT,BROADDUS ASSOCIATES,B4200\nTRADER,CAMBEX-INV.COM,Z9500\nPOLICY ANALYST,CMS,Y4000\nRetired,None,M9000\nREAL ESTATE D,COTTONWOOD PROPERTIES,J1100\nCHAIRMAN,\"THE CLARK ESTATES, INC\",F5000\nExecutive Vice Presi,American Family Mutual Insurance Compa,F3100\nCOAL MANAGER,ALLIANCE COAL LLC,E1200\nEXECDIRECTOR,THE HANLEY FOUNDATION,Z9500\nKAISER OIL,,E1100\nPETE GARCIA COMPANY,,G3500\nChairman,Rodale Inc,C1100\nMANAGER,CUMBERLAND RESOURCES CORP,E1200\nDAVIDSON MEAUX RTAL,,Y4000\nPARK HOMES,,B2000\nHEIRLOOM NEEDLECRAFT,,Y4000\nReal Estate Investor,Nellis Corporation,F4000\nVINCENT OIL CORP,,E1100\nPresident,Marketframes Corp,Y4000\nInvestor,Marvin & Palmer Assoc,F4200\nHANSBERGER GLOBAL INVESTORS,,F2100\nBROKER,FOLLMAN,Z9500\nManager,R & S Management Co.,Y4000\nCONSULTANT,\"LGRF CONSULTING,INC\",J7400\nGEN VASC SURGE,,H1130\nREAL ESTATE AND INSURANCE,SELF,F4000\nPRESI,\"CONNIE'S NATURALS LLC (PIZZA)\",Y4000\nEvents Associate,Partners In Health,J7000\nHUNTINGTON SERVICE CO,,F1100\nOwner,Ohio Title Corp. NE Ohio,F4300\n\"VP, CULTURE\",DIRECT SUPPLY,H4100\nREAL ESTATE,RALMOR,Y4000\nROSS INSTALLS,,Y4000\nCHOICE POINT,,F5200\nProfessor,Roger Williams University School of La,H5100\nHANNAFORD TRUCKING CO,,T3100\nTAYLOR ELECTRONIC COMPANY,,Y4000\nOrg Level Consultant,Self employed,Y4000\nSales,Ferguson Enterprises,B2000\nPresident and CEO,Jewish Federation of South Palm Beach,Y4000\nPhysician,Infertility Center of St Louis,Y4000\nCFO,CALPINE,E1630\nFILM DIRECTOR,BUD YORKIN PRODUCTIONS,C2400\nactor,carsey werner,Y4000\nATTORNEY,OLSON HAGEL & FISHBURN LLP,Y4000\nLegislator,State of New Mexico,X3000\nMOSS MCGEE & BELLMON,,Y4000\nFOUNDER,THE KATE MOSS COMPANY,K2000\nOwner,Keith Barber Construction Inc.,B1500\nRENTAL PROPERTY,SELF-EMPLOYED,F4500\nRETIRED TEACHER,RETIRED - MATC,J7150\nEngineer,MGSA,Y4000\n\"VP, Health Info Mgmt Services\",Florida Hospital Association,H2100\nCEO & CFO,MOTOR CITY STAMPING INC.,Y4000\nPolicy Analyst,DHS/ICE/Sevp,K1000\nOAKWOOD ORTHODPAEDIC CLIN,,H1130\nINSURANCE AGE,BENEFIT ADVISORS  LLC,F3200\nENVIRONMENTAL ELEMENTS CO,,E2000\nNE OK CLINICAL SVCS,,Y4000\nConsultant,\"IDX Group, Inc\",Y4000\nTHE MERRICK CHEVROLET CO,,T2300\nChairman & CEO,Bank of Botetourt,F1100\nTITAN CHEMICAL,,M1000\nKISLAK CAPITAL CORP,,J5100\nPresident,Hatch Enterprises,Y4000\nASSOCIATE VICE PRESI,WACHOVIA SECURITIES,F2100\nCOOKE & GRACE PROPERTIES,,Y4000\nAttorney,\"Manalt, Phelps et al\",J7400\nDirector,\"Galorath, Inc.\",Y4000\nCEO,MCVEAN TRADING,F7000\nAttorney,\"Ezra Brauzhaus, Gabner, LLP\",K1000\nCOLLEGE PROFESSOR / WRITER,SELF EMPLOYED,H5100\nCEO,Phillips Plastics Corp,M1500\nCFO,Burcase,Y4000\nECONOMIST,ANTARES TECHNOLOGIES,Y4000\nEDITOR,DOGFRIENDLY.COM,C5140\nElectrician,Delaware North Companies,G2910\nPublic Works Director,Town of Maggie Valley,Y4000\nPRESIDENT,AMERICOM,C4300\nAttorney,Morgan Lewis,Z9500\nOwner,Innovative Mortgage Services  Llc,D9000\nDEUTSCH BANK REALTY ADVISORS,,F4200\nUROLOGIST,UNIVERSITY OF FLORIDA,H1130\nVP - AMERICAS,JOY GLOBAL INC.,E1200\nprofessor,University of Califonria,H5100\nBusiness Owner,AGA Solis,Y4000\nEXEC. VP-DIVISION,EMERSON ELECTRIC CO.,M2000\nExecutive,\"Brant Industries, Inc.\",A5200\nTeach,Wash Twp Sch Dist,J1200\nLawyer,\"Wilentz,GOldman & Spitzer\",K1000\nPRESIDENT,PARKWAY OLDSMOBILE CADILL,T2300\nCONDE NAST PUBLICATIONS INC,,C1100\nBUSINESS EXECUTIVE,SARSHELA INC.,Y4000\nVP,COMMUNITY COMPUTER SERVICE,Y4000\nCouncilwoman,Town of Colonie,X3000\nDALAND CORPORATION,,G2900\nOWNER,UNITED PLASTICS,Y4000\nPresident,Honda Cars Of Mesa,T2300\nALTERNATE PUBLIC DEFENDE,,X3200\nMANAGER,PAHIO RESORTS,Y4000\nConsultant,Middle East institute,Y4000\nHOG PAYMENT,HATFIELD QUALITY MEATS,G2300\nVICE PRESIDENT,ARIZONA PUBLIC SERVICE,E1600\nPresident,Quality Bicycle Products,J9000\nTEACHER,KANAWHA CO. SCHOOL SYSTEM,X3500\nSUN VALLEY ENERGY,,E1100\nREAL ESTATE EXECUTIVE,\"EXECUTIVE AFFILIATES, INC\",Y4000\nCPA,IRVING KAUFMAN ACCOUNTING,J5100\nACCOUNT,BLAKE A. LITTLE M.D. L.L.C.,H1100\nSELF/AUTHOR/ SPEAKER,,C1100\nPHYSICIAN,MESQUITE PEDIATRICS,H1100\nBENEFICIAL MANAGEMENT CORP OF AMER,,F1400\nPRESIDENT,\"BLUE MOON WORKS, INC.\",Y4000\nArtistic Director,Writers Theatre,C2700\nIndependent Concrete Pipe Co.,,B5100\nDIRECTOR IT SOLUTION,FORSYTHE,T1400\nIMPORTER,KAROL WESTERN CORP,Y4000\nREAL ESTATE EXEC,IR,F4000\n\"CAPITOL SOLUTIONS, LLC\",,K2000\nCEO,BRUNO APPLIANCE CORPORATION,Y4000\nCHIEF COMPLIANCE OFFICER,COMMONWEALTH FINANCIAL NETWORK,F2100\nSETTOON TOWING,,T3100\nHOLABIRD & ROOT,,Y4000\nATTORNEY,\"MUNGER, TOILES & OLSON\",K1000\nATTORNEY,Piper Rudnick,K2000\nATTORNEY,\"THE PETERSON FIRM, LLC/ATTORNEY\",K1000\nDAKOTA SALES CO INC,,G2850\nVP TREASURY,SUNOCO INC.,E1160\nATTORNEY,DEKALB DISTRICT ATTORNEY,K1000\nDONALD S BOYCE CRAPS,,Y4000\nPresident,Reliant Health Care,Y4000\nCOMMUNITY HEALTHCARE PLAN,,H0000\nFinance Director,Honeywell International,M2300\nGREATER NEW YORK HEALTH CARE,,H2200\nCITY COUNCIL,CITY OF ATLANTA,X3000\nEDUCATI,CENTER FOR INTERIM PROGRAMS,Y4000\nOwner,Brojack Lumber,B5200\nOWNER,COBRA SOURCE,Y4000\nORTHAMOLOGIST,,H1120\nNEW ENGLAND MUTUAL LIFE I,,F3300\nprofessor,Rutgers,Y4000\nB E I ASSOCIATES INC,,B4000\nPRESIDENT,BLACK MOUNTAIN RANCH LLC,A3000\nPresident,Envir. O Corp.,Y4000\nPROFESSOR,GARRETT-EVANGELICAL THEOLOGICAL SEMINA,Y4000\nPRINCIPAL RESEARCH SC,JOHNS HOPKINS,H5100\nMgr. Govt Relations,Ge,J1200\nCivil Engineer,Urban Foundaion Engineering LLC,B4400\nDORCHESTER CAPITAL ADVISORS,,Y4000\nSEAFOOD FARMING,,Y4000\nINVESTMENTS,THE TORREY FUNDS,F2100\nELECTRICAL CONTRACTOR,EC COMPANY,B3200\nTreasurer,Chapin Station,Y4000\nContractor,Rende Contracting Corp,Y4000\nMGR ENG,EHAFM INC/MGR ENG,J1100\nRenaissance Capital,,F2100\nLATHAM&WATKIS,,K1000\nSECRETARY OF THE NAVY,,Y4000\nPUBLI,NY STATE DEPARTMENT OF HEALTH,X3000\nOTTO INDUSTRIES,,M1500\nPLANT MANAGER,EMULSICOAT INC,Y4000\nGEOLOGIST,ENGEN CORP,Y4000\nMONTGOMERY SEARCY AND DEN,,Y4000\nSTUDENT,STUDENT,G2820\nC P A,Hilcorp Energy Company,E1000\ndeveloper,Coy Clark Co,Y4000\nChairman,Rite Aid Corporation,G4900\nADVERTISING,,G5210\nDANNUZIO & SONS,,Y4000\nDON DAVID & ASSOC,,Y4000\nRVP FINANCIAL OPS/PHOENIX,VANGUARD HEALTH,H2100\nGENERAL MGR,WORTHINGTON INDUSTRIES,M2100\nPEBUS PARTNERS LTD,,Y4000\nPOCONO ENVIRON ED CTR,,Y4000\nSTUDENT,BRYN MAWR COLLEGE,J7400\nGovernment Relations,White Memorial Medical Center,H0000\nReal Estate & invest,Self Employed,J1100\nSANDERS & KITCHENS,,F5100\nCONSTRUCTION,MONTAINEAR EXCAVATING INC,B3600\nFREEMONT,,Y4000\nPresident,St. Raphaels Healthcare Syst,H0000\nArtist,Jardine Studio,Y4000\nSR. VICE PRESIDE,DEACONESS HOSPITAL,H2100\nECOMMERCE,STAPLES,G4600\nAttorney,Dick Riggs Miller LLP,Y4000\nLiterary Agent,Self,Y4000\nCHIEF STRATEGY OFFICER,\"VALUEOPTIONS, INC\",H3800\nPRESIDENT,SCHNEIDER NATIONAL INC.,Y4000\nPRODUCER,DODGER THEATRICALS/PRODUCER,J7400\nDirector of Data Integration,Edmunds.Com,C5140\nCpa,\"McCall, Gibson, Swedlund, Barfoot PLLC\",Y4000\nBROUNELL KRAMER WALDOR AGENCY,,F3100\nHARTFORD COUNTY SHERIFFS DEPT,,X3200\nPRES,AMERICAN EXTRUSTION INTERNTNL.,Y4000\nATTORNEY,\"O'REILLY RANCILIO\",Y4000\nPRESIDENT,MUSIC WORLD ENTERTAINMENT,Y4000\nATTORNEY,LAW OFFICES OF DENISE SMYLER,K1000\nJEWELERY,MOLINA/JEWELERY,G4600\nROCKY MT BANK & TRUST,,F1100\nINVESTMENT MANAGEMENT,BRANDES INVESTMENT PARTNERS,Z9500\nTREASURER,SCHUYLKILL COUNTY,X3000\nWEBB SCHOOLS CLAREMONT,,H5100\nPRICE ENTERPRISES,,J7700\nSales Rep,Dreyfus,Y4000\nNURSE PRACTITIONER,JOHNS HOPKINS UNIVERSITY,H5100\nEditor,Time Out New York,Y4000\nMarketing/Media,\"Dom Camera Media, L. L. C.\",Y4000\nEditor,\"Adventure Publications, Inc\",C1100\nSILLS BECK CUMMIS ZUCKERMAN RADIN &,,K1000\nOWNER,MILBANK MILLS,A3100\nCEO,HARRISON STREET CAPITAL LP,F4000\nOWNER,TECHNI-GRAPHICS,C1300\nOWNER,\"AES, INC\",E3000\nCHAIRMAN,LAS VEGAS SANDS CORP,G6500\nC.P.A.,LANGEL & ASSOCIATES P.C.,F5100\nDEMPSEY AND CO,,F2100\nCARDIOLOGIST,CARDIOVASCULAR ASSOCIATES,H1130\nASSISTANT TO,WESTERN KY UNIVERSITY,H5100\nCM COMP MED REVIEW,,J1100\nMANAGER,LEON R. PECK D.D.S.,H1400\nPRESIDENT,UNITED INDUSTRIES,C5130\nEngineer,Consulting Engineering Associates Inc.,B4400\nL & T PROPERTIES,,Y0000\nCITY OF CHICAGO,CITY OF CHICAGO,X3000\nCenterbrook Architects,,B4200\nSpa Lady,Beauticontrol,Y4000\nDIVERSIFIED DESIGN AND,,B1000\n\"FROST NAT'L BANK\",,F0000\nSTUDENT,UNIVERSITY OF CAMBRIDGE,H5100\nCEO,BRINKMANN CONSTRUCTORS,B1500\nCEO,Holler Association,Y4000\nPresident,CGN & Assoc,Y4000\nManager,Yesera Corp.,B1000\nC.E.O.,STAR & CRESCENT,Y4000\nProperty Exchange,\"Investment Property Exchange Services,\",F4000\nEXECUTIVE,R. L. KATZ & ASSOCIATES,J5100\nWESMAR PARTNERS,,B5400\nSports Host,Walt Disney World,C2000\nEXECUTIVE,F.M. HOWELL & CO.,Y4000\nRam Island Group,,Y4000\nAttorney,Bnsf Railway Co.,T5100\nEXECUTIVE,\"V.T.M, L.L.C\",Y4000\nLAFOLLETTE DOOR INC,,Y4000\nATTORNEY,LONG & BADGER P.A.,K1000\nDesigner,Syska Hennessy,J1200\nORS,,H1130\nLOBBYIST,SELF - EMPLOYED,K2000\nVICE PRESIDENT,IMS MANUFACTURING,Y4000\nCOMMERCIAL REAL EST,COLLIERS-KEENAN,Y4000\nATTORNE,SINGLETON HUTCHENS & SENTER,K1000\nCorporate Compliance,Neways International,M3300\nCONSULTANT,MTS LLC,Y4000\nAttorney,\"Cadwaldder, Wickersham & Taft\",K1000\nREAL ESTATE,THE PALMER COMPANY,J1200\nPROFESSOR,FORHAM UNIVERSITY,H5100\nSENIOR VICE-P,PRUDENTIAL SECURITIES,F2100\nExecutive Vice Presi,Marriott International,T9100\nCAMPAIGN D,CO PROGRESSIVE COALITION,Y4000\nOWNER,HINNANT PROSTHETICS,Y4000\nEXECUTIVE,CHICAGO BLACKHAWKS,Y4000\nPARK EAST SYNAGOGUE,,X7000\nPHILANTHROPIST/INVESTOR,SELF EMPLOYED,J7400\nAFL-CIO Community Service Liaison,United Way of the Greater Capital Regi,Y4000\nARIZONA CORPORATIO,STATE OF ARIZONA,X3000\narchitect,Davis Carter Scott,Y4000\nChief Financial Offi,Washington Hospital Center,H2100\nChief Executive Offi,Max International Broker Dealer Cor,Y4000\nMEDICAL DIRECTOR,USPI,H3000\nExecutive V.P.,Timmons and Company,K2000\nSALES,RO-MAE LUMBER & SUPPLY INC.,B5200\nMANAGEMENT,HYNES SALES,G5000\nIT,North Carolina Batptist hospit,H2100\nREGAL,,B6000\nLANDSCAPE A,THE BRICKMAN GROUP LTD.,B3600\nCOOK PAPER RECYCLING CORP,,M2400\nPRESIDENT & CEO,ASSURED GUARANTY CORP.,F5000\nTHE BATES GROUP,,F2100\nSr. Vice President,Methodist Le Bonheur Healthcare,H2100\nV P SALES,AIRMATE CO,Y4000\nMANAGING DIRECTOR,ADS VENTURES,G5270\nRADIO SHACK FRANCHISE,,G4200\nCOO,Sterling Winter,Y4000\nCHEM INDUST INST,,Y4000\nGovernment Relations,Self Emplyed,K2000\nPACF COAST FEATHER,,Y4000\nPRESIDENT,SYMETRA FINANCIAL,F0000\nMEYER FUNERAL HOME,,G5400\n\"LAW OFFICES OF MALONEY & MALONEY, P\",,K1000\nOWNER,\"JIM CHAPMAN COMMUNITIES, INC.\",B2000\nFARMER,DIXON FARMS,Y4000\nDIRECTOR OF DOULA PR,Self employed,G0000\nMachinist,Tesoro Petroleum,E1160\n\"Auditor, Audit Patient Hospital Bills\",Independent Contractor - Medical Bill,Y4000\nBusiness,ST International,Y4000\nSELF-EMPLOYED,MEDSTROKES INC.,Y4000\nEducator,Jobin-Leeds Partnership,G5260\nTURNER ENOCHS & LLOYD PA,,K1000\nPRESIDENT,SW TRADING INC.,Y4000\nCEO,GUARDIAN AIR,J1100\nALBRITTON COMPANIES/CITRUS GROWER /,,A1400\nPROSTHETIST-OR,AMERICAN PROSTHETICS,H4100\nPRESIDENT,WOODS HERBERGER GROUP/PRESIDENT,G5260\nBFQ Media owner,Self,G0000\nBusiness Executive,Applied Graphics Inc,C1300\nCEO,Phillips and Company,F2100\nAttorney,Hall & Karz,K1100\nAMON CARTER MUSEUM,,X4200\nBusiness Owner,City Auto Glass Companies,M7200\nPresident,Jw Electric Inc.,B3200\nAttorney,Preston Gates Ellis & Rouvelas Meeds,K1000\nPORTLAND EYE GROUP,,H1120\nATTORNEY,MICHAUD-KINNEY GROUP,K1000\nInfo Requested,Info Requested,G5220\nBUYER,OFFICE OF STATE PROCUREMENT,Y4000\nManager,Bachmans,Y4000\nPRESIDENT,\"EXCEL SOLUTIONS, INC.\",Y4000\nAccountant,Playbill Inc,C1100\nMANAGING DIRECTOR,JHS INVESTMENTS LLC,Y4000\nVETERINARIAN,CHOPTANK ANIMAL HOSPITAL,A4500\ncomputer programmer,The Armada Group,Y4000\nPresident,Howard Oil Company  Inc.,E1100\nATTORN,SAND ANDERSON MARKS & MILLER,K1000\nS-N INVESTMENTS,,Y4000\nHealth Care Policy,The Lohman Group,H3000\nCOMMERCIAL,HANFORD-FREUND & COMPANY,Y4000\nMANAGER,LCNGA,Y4000\nSVP AND CHIEF MEDICAL OFFICER,TAMPA GENERAL HOSPITAL,H2100\nAEROSPACE SHEET METAL FAB,PERVAN INDUSTRIES,Y4000\nGOVT AFFAIRS,COVIDIEN,H4100\nSales,Us Bank,J1200\nCEO,MEDOUTCOMES INC,Y4000\nMANAGER,\"DIGITAL CONTROL, INC.\",Y4000\nVICE PRESIDEN,GM BUSINESS INTERIORS,Y4000\nBSS ENTERPRISES,,Y4000\nPHYSICIAN,JOHNS HOPKINS,J1200\nCHAIRMAN,BERNARD MADOFF INVESTMENTS,F2100\nADVANCED RESEARCH AND DESIGN,CALTY DESIGN RESEARCH INC,Y4000\nRESEARCH & DEVELOPMENT,PFIZER INC.,H4300\nBUILDER,SHARBELL BUILDERS,Y4000\nDELAND MFG INC,,G1200\nCFO,\"Gump's\",Y4000\nExecutive,Nexion Publishing Inc.,C1100\nRETIRED,HORTON HOLDINGS,T2200\nENTREPRENEUR,BANDIT SOFTWARE,C5120\nPROFESSOR OF CHEMISTRY,\"DEPARTMENT OF CHEMISTRY, UNIVERSITY OF\",H5100\nInvestor,None,F4000\nNEIGHBORHOOD PROGRAM COORDINATOR,COUNTY OF BERNALILLO/NEIGHBORHOOD P,Y4000\nReal Estate Developers,Self employed,F4100\nSR. VP GLOBAL TRANSPORTATION SE,UPS,T7100\nGEORGE & DONALDSON,,Y4000\nEXECUTIVE,GEO-ETKA INC.,B4000\n\"NAYLOR'S INC\",,J7500\nMANAGER,\"BRILLIANT EARTH, LLC\",Y4000\nENGINEER,3M,Z9500\nSURETY AGE,BRASWELL SUPPLY SERVICES,Y4000\nResearch Assistant,Department of Defense,X5000\nOwner,Americas Helth Care Plan Inc.,Y4000\nLawyer,Fried Frank Harris S,K1000\ninstructor,Capitol Area Driving School,G5000\nGOVERNMENT RELATIONS,UNILEVER,M3300\nPhysician,Premier Orthopaedics,H1130\nPsychiatrist,retired,Z9500\nOwner/President,\"G & H Seed Co., Inc.\",A4000\nEXECUTIVE,GEORGE LSH. COMPANY,Y4000\nInformation Requeste,Infomration Requested,Y2000\nFURNITURE,WYTHE UPHOLSTERY CO.,J5100\nWMAK TELEVISION,,C2100\nPUNCH INC,,Y4000\nCONSULTING ENGINEER,SOIL & WATER ENGINEERING TECH.,Y4000\nVP,WHITING PETROLEUM CORPORATION,E1100\nTELECOMMUNICATIONS O,SELF AMERICAN PAGE NETWORK,C4000\nPERDUE & CLONE LLP,,K1000\nAssistant Controller,SUPERVALU INC.,G2400\nOFFICE CLERK,THE AMERICAN LUBRICANTS COMPANY,Y4000\nREGIONAL REPRESENTATIVE,NEW YORK STATE,X3000\nRealtor,Prudential Calif. Realty,F4200\nBANKING,BUCKEYE CHECK SMART,Y4000\npresident,Anderson Chemical Company,M1000\nINVESTOR,BULGER CAPITAL PARTNERS,F0000\nProgram Management,Fidelity Investments,F2100\nRefused,Wheelocks Home Improvement,Y4000\nPRESIDENT-HEAVY DIVISION,MOSITES CONSTRUCTION COMPANY,B1500\nCommisioner,LA Public Service Commission,Y4000\nEAST VALLEY WATER DISTRIC,,Y4000\nINVESTMENT MANA,PEARL MANAGEMENT CO,Y4000\nAMERICAN AGRIJUSTERS,,A4000\nTEACHER,THE EPISCOPAL ACADEMY,H5100\nPROGRAMMER,TOM SOFTWARE,C5120\nPhysician,St Vincent Hospital,Z9500\nCRAWFORD & ASSOCIATES,,Y4000\nChair,AEA Investors,F2100\nPRESIDENT,GULL INDUSTRIES,E1170\nInformation Requested,dole,F3300\nATTORNEY,RAUL HERRERA,Y4000\nARETMIS STRATEGIES,,Y4000\nBANKING,FALCON NATIONAL BANK,Y4000\nCORPORAT,ADAMS CONSTRUCTION COMPANY,B1500\nPARTNER,REACHCAPITAL MANAGEMENT LLC,F2100\nALCALDE ROUSSEALOT FAY,,K2000\nWEALTH MANAGEMENT,JP MORGAN,F1100\nOWNER,SELK,Z9500\nCLEANING CREW,\"LEGACY LANES, INC.\",Y4000\nSoldiers,US Government,X3000\nCPA,PEYTON MITCHELL,Y4000\nSocial Worker,The Relationship Center,Y4000\nTHOMPSON INVESTOR SVS,,F2100\nW & L SALES CO INC,,Y4000\nResearch Scientist,Osel Inc,Y4000\nEVENT AND WEDDING DESIGNER,,Y4000\nCONSULTANT,BENEFIT PARTNERS,J7400\nAviation & Power,Self-Employed,Y4000\nHILO ROYAL AND HAMILTON CO INS,,F3100\n\"GIBSON, DUNN, CROTCHER, ET A\",,K1000\nStore Owner,Self-Employed,G6500\nBM-CONTROLLER,\"SNORAC, LLC\",T2500\nVice President,Century 21 Dept. Store,G4300\nALL SYSTEMS INSTALLATIONS,,B3200\nACTOR/WRITER,VARIOUS,Y2000\nEXECUTIVE DIRECTOR,MISSOURI DENTAL ASSOCIATION,H1400\nExecutive Director,American Subcontractors Assoc.,B3000\nBESSEMMER TRUST,,F2100\nchairman,\"Participate Systems, Inc\",Y4000\nPresident / CEO,ICA Corporation,Y4000\nResident Partner,Skadden Arps,K1000\nReal Estate,Barrueta LLC,Y4000\nFinancier,\"Plaintiff Investment Funding, LLC\",Y4000\nSTOCK BROKER,CARLIN EQUITIES CORP.,F2100\nPRES-CEO,CIRCLE D RECREATION INC.,Y4000\nExecutive,Global Partnership,Y4000\nMEDICAL SALES,ORTHAFIX,Y4000\nAttorney/ Appellate Judge,Illinois Courts - First Dist,X3000\n\"DIR, HEALTH POLICY RESEARCH\",CLARIAN HEALTH,H0000\nHOMESTEAD MOTEL AND COTTAGE,,T9100\nGENERAL RESOURCES DESIGN GROUP,,J7500\nGeneral Manager- Plumbing,Halshall Plumbing Company,F4500\nOWNER,THE ESSMUELLER COMPANY,Y4000\nPRESIDENT/CEO,ADVANCED TRAINING INSTITUTE,Y4000\nATTORNEY,,B3000\nCORPORATE,THE STEARNS COMPANY LTD.,F4000\nINVESTMENT MANAGEMENT,EQUITY RESOURCE INVESTMENTS L.L.C.,F2100\n\"EXECUTIVE VP, CFO\",SUPERVALU INC,G2400\nFINAN,TOTAL CAPITAL SOLUTIONS GROUP,Y4000\nPOWER-HAMLET LLC,,Y4000\nCEO,\"E-Z MART STORES, INC.\",G2400\nOIL FIELD SERVICE,ELITE WIRELINE INC,Y4000\nPROGRAM DIRECTOR,NEBRASKA DEPT OF ED.,Y4000\nALBRIGHT & SINGLETON,,K1000\nAttorney,Puyallup Tribe,Y4000\nPresident,Executive Development Systems Inc,Y4000\nF,PSYCHOLOGICAL CONSULTING SERVICES,Y4000\nHENRY CROWN,,JH100\nP,FLORIDA DEPARTMENT OF CORRECTIONS,X3200\nSelf-employed/Actress/Producer,,C2400\nUniversity Planning,Stratus,Y4000\nALMAZAN REYES & MARTINEZ,,Y4000\nOWNER,JERSEY SHORE STEEL,Y4000\nInformation Requeste,\"Investplus, Inc\",Y4000\n\"ST JOSEPH'S MEDICAL CTR\",,H2100\nCONSULTANT,DETAILS INT IN,Y4000\nBESEMER VENTURE PARTNERS,,J1200\nMOSS EYE & EAR INFIR,,H1120\nEXECUTIVE ASSISTANT,STONEGATE GROUP,Y4000\n\"VP, HUMAN RESOURCES\",UTC FIRE & SECURITY,D2000\nPRODUCTI,THE FALKIRK MINING COMPANY,E1210\nBROKER,RET.,X1200\nAttorney,MAINE CIVIL LIBERTIES UNION,Y4000\nSoftware Engineer,Globe Wireless,C4300\nPEDIATRIC DENTIST,STEPHEN C LEVIN DDSPA,H1400\nChairman Emeritus,Borror Corp.,B2000\nMANAGEMEN,FIDELITY EMPLOYER SERV CO,F2100\nINSURANCE BROK,PENNIALL & ASSOC INC,F3100\nR G STOCKERT,,Y4000\nNEUROPATHIC PHYSICIAN,RISING TIDE MEDICINE,X1200\nWire EDM guy,Crowley Tool Company,M5000\nAPICULTURIST,TREMBLAY APIARIES LLC,Y4000\nFilm Editor,self employed,G0000\nCHIROPRACTOR,SELF,H1500\nDAMONE GROUP,,Y4000\nAttorney,\"Banaszewski Law Firm, PS\",K1000\nTELEVISION PRODUCER,SELF EMPLOYED,Z9500\nPrincipal,The Consilio Group,K2000\nVICE PRESIDENT/GM,FIELDS AUTO GROUP/FIELDS PAG INC,Y4000\nMAST-LEPLEY SILO INC,,Y4000\nExecutive,Boneal Inc,M2300\nRET.,AVILES ENGINEERING CORPORATION,B4400\nOWNER,\"CLEANING RESOURCES, INC.\",Y4000\nBRO,BEAUMONT COMMERICAL REAL ESTATE,F4000\nPres,Dexxon Digital Storage Inc,G3000\nGov Relations,Major League Baseball,G6400\nBRITE-O-MATIC,,Y4000\nCOUNTRYWIDE FINANCIAL,,J7400\nMotel Owner,Holiday Inn Columbia Airport,T9100\nEXECUTIVE,SELECT MEDICAL CORPORATION,H2000\nAccountant,Menacha Corporation,Y4000\nCEO,Orange County Teachers FedCredUn,F1300\nceo,Lester & Assoc.,Y4000\nBUSINESS MANAGEMENT,LARRY H. MILLER GROUP OF COMPANIES,T2300\nPETITIONER,STEPPINGSTONE INDUSTRIES INC,Z9500\nWHITE & WHITE,,H0000\nPresident,NBC Entertainment,C2300\nOWNER,TAYLOR DOOR INSTALLATION,Y4000\nHEAT & AIR CONTRACTOR,,B3400\npresident,\"Crown Imports, LLC\",G2800\nPROJECT MANANGER-CHEMISTRY,CLARK TESTING,Y4000\nPRACTICE MANAGER,ANIMAL MEDICAL CENTER,A4500\n\"SHAWN D. ANTLE MD, C\",COX SENIOR HEALTH CTR.,H0000\nPhysician,Georgia Cancer Specialists,H1130\nREALTOR,WALL-SNOW REALTORS,F4200\n\"DIR, CUST SVS\",Time Warner Cable,C2200\nINTERNATIONAL PACKAGING,,Y4000\nFinance,\"GOLDMAN, SACHS & COMPANY\",F2300\nHome maker,None,Z9500\nSoftware Engineer,Lucasfilm Entertainment Company Ltd,C2400\nATTO,MICHAEL NAPOLITANO LAW OFFICES,K1000\nRETAIL SHOP,SELF-EMPLOYED,G0000\nEXECUTIVE,PARTNER FUSION,Y4000\nTOURIST RAILROADS,AMERICAN HERITAGE RAILWAYS,Y4000\nCOPY EDITOR,MAISONNEUVE MAGAZINE,C1100\nEXECUTIVE,METRO ONE COURIER,J1100\nPATTISON PARTNERS CO,,Y4000\nReal Estate Developer,Applied Development Company,F4100\n,AMERICAN TITLE & TRUST AGENCY INC.,F4300\n\"DUNN, LEE & KEARY\",,J1100\nOWNER,MONRO CAPITAL,Y4000\nBANKER,ARBYS,Y4000\nSr VP,Alcon Laboratories,H4000\nSales Clerk,Changes In Latitude,Y4000\nDRIVER,DLW,Y4000\nBanker,\"Oak Bank, Fitchburg\",F1100\nBUSINESSMAN,SELF,F1100\nHealthcare Consultan,\"Staff Care, Inc.\",G5250\nKLETT LIEBERMAN ET AL,,K1000\nCITY COUNCILLOR,CITY OF CAMBRIDGE,Z9500\nEngineer,\"Dcm, Inc\",Y4000\nEXECUTIVE V.P.,PACKAGING CORPORATION OF AMERICA,M7000\nCeo,Abilene Pictures,C2400\nPERKS REUTTER ENGINEERING,,Y0000\nPRESIDENT,FOUNDATION SOURCE,Y4000\nTeacher,Lincoln County Schools,J1200\nCEO,AUTO EUROPE,Z9500\nATTORNEY,COMMUNITY EDUCATION CENTERS INC./AT,H6000\nOcean transportation,Matson Navigation,T6200\nPresident/CEO,Richardson Management,Y4000\nACCOUNTING,CARD-MILES ENTERPRISES LLC,Y4000\nPHYSICIAN,UNIVERSITY OF TEXAS M.D. ANDERSON CAN,H5100\nSELF-EMPLOYED/PROSTHETIST/ORTHODONT,,H1400\nOWNER,CREST INVESTMENT COMPANY,Y4000\nEQUITY APPRAISALS,,Y4000\nManager,Momentum Data Systerms,Y4000\nCEO,CC1 COMPANIES,G2700\nWildlife Biologist,Garcia and Associates,Y4000\nMANAGING DIRECTOR OF,S.E.I. INVESTMENTS,Y4000\nCMIT CAPITAL MANAGEMENT COMPANY,,F0000\nOWNER,\"COYLE ENGINEERING, INC.\",B4400\nReal Estate,Prudential Holmes & Kennedy,Y4000\nBUSINESS EXCUTIVE,\"EXACTECH, INC.\",J1100\nMANAGER,GREAT NECK SAW MFG/MANAGER,Y4000\nPRESIDENT,LEVY & COMPANY,Y4000\nBANKER,WWC,Y4000\nLETTER,UNITED STATES POSTAL SEVICE,L1500\nAttorney,Perkins & Trotter LLC,K1000\nADMINISTRATOR,UNT,H5100\nHEALTHCARE,SELF-EMPLOYED,H0000\nEngineer,AERODYNAMICS COMPANY,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,SPECIALTY ENTERPRISES INC,Y4000\nSupervisor,WNY Bd of ED,X3500\nPRESIDENT,\"MAYFAIR PROPERTIES, LLC\",F4000\nFAMILY COORDINATOR,,J7400\nIN,COMMONWEALTH CAPITAL CORPORATION,J5100\nDEAN,MIDDLE TN SCHOOL OF ANESTHESIA,H1130\nAttorney (retired),Mayer Brown & Platt,K1200\nProgrammer,Attachmate Corp,Y4000\nTRAVEL AGENT,INDEPENDENT CONTRACTOR,B3000\nRealtor,Pam McDowell Properties,F4000\nCEO-RETIRED,MEIJER SUPER MARKETS,X1200\nFire Fighter / EMS,Atlanta Fire Dept.,L1400\nRisk Manager,Constellation Energy,J1200\nFarmer,William A. Baggett Farming,A1000\nReal Estate Investor,\"TMT Properties, Inc\",Y4000\nPEACOCK HISLOP STALEY &,,Y4000\nInsurance Agent,Union Central Life,Y4000\nPRESIDENT,KAISER ELECTROPRECISION,Y4000\nOWNER,\"ALAWEST AL, LLC\",Y4000\nALLEGHERY TELEDYNE,,Y4000\nOWNER,L. & S. ELCTRIC INC./OWNER,B3200\nJ S WALTON & CO INC,,Y4000\nVICE PR,PLUMBING & MECHANICAL CONT.,B3400\nO S P DESIGN,PRO-LINE DESIGN,Y4000\nPresident,EMD Associates,C5000\nMedical Tech,\"St Anthony's Hospital\",H2100\nSVP/STEPHENS INSURANCE,\"STEPHENS, INC\",F2300\nATTOURNEY,KYSER & REDFERN,K1000\nVP GOVT RELATIONS,CELANESE,M1400\nPHYSI,SOUTH DENVER GASTROENTEROLOGY,H1130\nLEGISLATIVE LIASSON,GENERATION PHARMACY GROUP,G4900\nEntrepreneur,\"Aero-Abre,Inc.\",Y4000\nCEO,JONES MANAGEMENT SERVICES LLC,F1000\nPresident,Link Systems,Y4000\nFoundation Exec.,Institute Of Mental Hygiene,J7400\nCFO,Mid-Valley IPA,Y4000\nSELF,SELF,F7000\nENGINEER,\"ANDRE-TRONER, L.C.\",G5200\nPORTF,PRECEPT CAPITAL MANAGEMENT LP,F2100\nEXECU,NORTH ALABAMA SAND & GRAVEL L,B5100\nLOBBYIST,SMI,Y4000\nATTORNEY,\"INCENTIVE FEDERATION, INC.\",Y4000\nCHUBB INSTITUTE,,Y4000\nAttorney,Katten Muchin Zavis & Rosemann,K1000\nVICE PRE,THE BANK OF FAYETTE COUNTY,F1100\nLEHIGH VLY RACQUET & FTNS CTRS,,G1200\nREAL ESTATE INVESTMENTS,SELF EMPLOYED,F4000\nMANAGING PARTNER,POINT LOOKOUT CAPITAL,Y4000\nCEO,32 ADVISORS,Y4000\nPRESIDENT/CEO,RIVERDALE MILLS CORPORATION,M5000\nWata Resources Planner,Hdr-Ees,Y4000\nPrivate Trustee,Nichols & Pratt,Y4000\nTOYOTA OF SARASOTA,,T2310\nDiagnostic Radiologi,Rhode Island Medical Imaging,H1130\nAR STATE UNIV-BEEBE,,H5100\nDIRECTOR MARKETING,HISD,J7400\nATTORNEY,STRATTON FAXON,J1200\nRESTAURANT PROPRIETOR,SELF-EMPLOYED,G2900\nDietician,Robert L Tankel PA,Y4000\nPARTNER,APEX ONE INVESTMENT PARTNERS,F4500\nG H SCOTT & ASSOCIATES,,Y4000\nPRESIDENT,STAR FIRE LUMBER CO.,B5200\nINSURANCE,THOMPSON ASSOC. INSURANCE,F3000\nGOVERNMENT RELATIONS,FHGR,K2000\nINFORMATION REQUESTED,BEK COMMUNICATIONS,Y4000\noil/gas producer,self,G0000\nEngineer,LNV Engineering,B4400\nMCINTIRE,JAZWINSKI,Y4000\nGOVERNMENTAL CONSULTANT,BERRY & ASSOCIATES,Y4000\nNOBLE HOSPITAL,,H2100\nCFO,\"MO PO PRODUCTIONS, INC\",Y4000\nPETRU CORPORATION/PRESIDENT / LAND,,Y4000\nVP & General Manager,Beyer Construction,B1500\nAttorney,\"Caldwell, Padish & Wells PLLC\",Y4000\nJACK DUNCAN ASSOCIATES,,Y4000\nCHAIRMAN,EMKAY INC.,G5200\nSELF RANCHER,SELF EMPLOYED,J1100\nW T YOUNG,,A3500\n1ST REALTY,,F4200\nCHAIRMAN OF T,WYOMING MACHINERY CO.,M2300\nProfessor of Biology,Cornell University,H5100\nInvestments,Strategic Investment Group,F0000\nMORGAGE BANKER,HHC FINANCE,F4600\nSVP of Quality,GE Money,Y4000\nBoardmember,WA State Liquor Board,G2840\nFUSION STUDIOS,,Y4000\nSoftware Developer,Sigpro Llc,Y4000\nHIGMAN MARINE SERVICES,,T6200\nOwner,Davis Transfer Co,Y4000\nRESTAURATEUR,HAMANN. INC./RESTAURATEUR,Y4000\nSales,\"Datacom Sales, Inc\",Y4000\nDirector of Marketing,TTI Inc,C5000\nTELECOMMUNICATIONS,INFO REQUESTED,C4000\nSHRIVER & GORDON P C,,Y4000\nPHYSICIAN,EDWARD K. DENISON M.D.,H1100\nHEAVY CONSTRUCTORS/CONTRACTER/CONTR,,B1000\nINTL ADVRTNG MG,United Parcel Service Inc,T7100\nINTRACOASTAL HEALTH SYSTEM,,H3000\nKEER COMPANIES,,Y4000\nLONCOLEMAN CORP.,,Y4000\nPRESIDENT,DEANSTEEL MFG.,Y4000\nCPA FINANCIAL ADVISER,,F5100\nPresident,\"Miller's Pro-Cut Inc\",G1200\nUNIVERSITY OF OREGON,,J7400\nattorney,\"Lewis Stein, PL\",K1000\nCHAIRMAN,ACE GROUP,F3400\nMAIL MEDIA,,J5100\nManaging Director,The Bank of New York Mellon,F1100\nTeacher,Lakeview Public Sch,J1200\nVICE PRESIDENT OF INTERNATIONAL BUSINE,RDO EQUIPMENT CO./VICE PRESIDENT OF,B6000\nAttorney,Conley Rose,Z9500\nPhysician,Queens Hosp. Mt. Sanai School of Medic,H5150\nPhysician,TCC,F4100\nPARTNER,@ PROPERTIES,F4200\nREAL ESTATE SALES,FIRST WEBER GROUP,F4000\nExecutive/President,Emats Inc,B4000\nMISSOURI CABLE TELEVISION ASSOCIATI,,C2200\nPRESID,\"MILLER BRANDS MILWAUKEE, LLC\",G2810\nAGENT,AXA,G0000\nOwner,Wesco Heating and Air Conditioning Inc,B3400\nANALYST,DELOITTE,F5100\nCORPORATE EXECUTIVE,CONCESSION MANAGEMENT CORP.,Y4000\nDIRECTOR,NEW MEDIA TECHNOLOGY,Y4000\nJewler,Michael Jewler,Y4000\nOwner,Shannon Pump Co.,Y4000\nCHAIRMAN OF,FOREVER LIVING PRODUCTS,H4600\nEXECUTIVE,AMERICAN JET CHARTER INC.,T1000\nEXE,NORTHWEST EVALUATION ASSOCIATES,Z9500\nFIRST NATIONAL BANK HUDSON,,F1100\nEngineer,Sol Chavez & Associates,Y4000\nTHE STONEMAN COMPANY,,Y4000\nCHANCES R RESTAURANT,,G2900\nOwner,Lytle Development,F4100\nMADISON TITLE/OWNER/FOUNDER & PRESI,,F4300\nBILZIN SUMBERG AT AL,,K1000\nPhysician,Aurora Diagnostics,Y4000\nV.P.,\"SUCCESSFUL STRATEGIES INT'L.\",Y4000\nDOCTOR,SANSUM CLINIC,Z9500\nContractor,Trio Developmt Corp,Y4000\nATTORNEY,\"SLOVAK BARON & EMPEY, LLP\",K1000\nSCHEMMEL LAW OFFICE,,K1000\nTEACHER,DEARBORN CHRISTIAN SCHOOL,Y4000\nAttorney,Phillips Nizer LLP,J5100\nATTORNEY,THE MILLER FIRM P.C.,Y4000\nPARTNER,TAFT STETTINIUS & HOLLISTER,J9000\nCEO,INK SYSTEMS,C1300\nBRAXTON ASSOC INC,,F2100\nMEDICAL ESTETICIAN,N.H. DERMATOLOGY,H1130\nInvestor,CVC Partners,F1100\nStock Broker,Alexander Investment Services,Y4000\nRetired Economist,Self,X1200\nRUST GEOTECH INC,,Y4000\nATTORNEY,PRINGLE QUINN ANZANO PC,Y4000\nMANAGER,WGA INSURANCE,F3100\nEXECUTIVE,CLARKE BARDES CONSULTING,Y4000\nGAS MEASUREMENT ANALYST,KINDER MORGAN,E1140\nPresident,Total Land Development Corp.,Y4000\nPRESIDENT,BLALOCK OIL COMPANY INC.,E1100\nScott & White,Physician,H1130\nMCCARTHY & SCWARTZ,,K1000\nN/A/NOT EMPLOYED/NOT EMPLOYED,,Y1000\nCOMPUFLIGHT,SANDATA INC,C5130\nNHTSA,,Y4000\nN/A -- PAC,N/A -- PAC,Z9500\nFinance,Peak Capital,F0000\nEXECUTIVE DIRE,CAMPAIGN FOR AMERICA,J9000\nDUNCAN FINANCIAL,,Y4000\nPCIA,,C4300\nAttorney,Weiser Law Firm,K1000\nProgram Manager,Global Solutions LLC,Y4000\nBANK EXECUTIVE,HUDSON CITY SAVINGS BANK,F1100\nCOLUMBIA/HCA/PHYSICIAN,,Y4000\nco-president,quadrangle group,F2100\nSAN ANTONIO TRANSPORTATION,,Y4000\nSales Assoc,Travel Smith Outfit,Y4000\nPARTNER,HALEY SINAGRA & PEREZ P.A.,Y4000\nFIRST FED S & LA OF PITTSBURGH,,F1200\nMEDIA & PR EXEC,NEWSGUEST.COM,Y4000\nPresident,Redmond Associates,K1000\nPresident,American Financail Services of,F5000\nPresident,Westerra Credit Union,F1300\nMedical Laboratory Director,Quest Diagnostics,Y4000\nPhysician,Liberty Anesthesia Associates,H1130\nPRESIDENT,LAKESHORE HEALTHCARE,Y4000\nLAWYER,HABUSH HABUSH & ROTTIER,K1100\ninformation requested,information requested,Y4000\n\"VP, International Au\",Rayonier,A5000\nCPA/Attorney,Self-Employed,F5100\nExec/VP,Verasys,Y4000\ncounty supervisor,santa babara county,X3000\nCONSUMER PROTECTION,Self,G0000\nVP OF SPECIAL OPS,VIGOR INDUSTRIAL,T6100\nMCCAIN SASSER & OZMINT PC,,Y4000\nAssociate General Counsel,California State Automobile Assn Inte,F3100\nHEALTHCARE,COOPER,F4200\nPHYSICIAN,DONALD C. AUSTIN MD PC,H1100\nOwner,\"Clini Lab, Inc.\",Y4000\nPartner,The Colleran Firm,K1100\n,FEDERAL HOME LOAN BANK OF PITTSBUR,F4600\nCAMPAIGN SUPPLIES,,Y4000\nBUSINESS OWNER,HOLLYWOOD JANITORIAL SUPPLIES,Y4000\nSAN JUAN PUEBLO,,G6550\nMANAGER,WARREN CLARK DEVELOPMENT,Y4000\nCEO,Sizemore Personnel,G5250\nAttorney,\"Los Angeles County District Attorney's\",T1400\nHEALTHCARE,SELF,J7400\nPhysician,Brad Seely,Y4000\nPresident and Chief,Florida Hospital Fish Memorial,H2100\nConsultant/Doctor Of,Self-Employed,G0000\nReal Estate,Loeb Partners Realty LLc,F4200\npublic policy,Commonwealth of Massachusetts,X3000\nDEVLYN CORP,,G5000\nHORIZON HOMES,,Y4000\nReal Estate Investme,Sanderson J. Ray,J1200\nBusinessman,JT International,Y4000\nBusiness Owner,\"Reyes Holdings, LLC\",G2850\ncivil engineer,urs,B4000\nTRAINING ORGANIZER,SELF EMPLOYED,G0000\nattorney,telephone and data systems,C4100\n100% SS Disability,N/A,Y1000\nBanking,Oklahoma Bank & Trust Company,F1000\nFRANKLIN AUTO PARTS,,T2200\nLORTECH CORPORATION/PRESIDENT/ CEO,,C5130\nATTOR,FRANDZEL ROBINS BLOOM & CSATO,K1000\nZAPRUDER & ADELL,,K1000\nINSURANCE,COWAN & CO.,F0000\nPresident/Chief Exec,Lim Aqua-Nautic Specialist,Y4000\nPERTZEL & STOUFFER,,K1000\nBank of America,VP,G0000\nStaff Development Co,IA Dept of Education,Y4000\nHAYZLETT & ASSOCIATES,,Y4000\nManaging Director,interWAVE Communications,Y4000\nOWNER,PAUL`S PUB,G2900\nAttorney,Law Office of Raymond Kelly,K1000\nProfessional,Ventiv Health,Y4000\nManager,Diversified Thermal,Y4000\nOwner/President,AWISCO NY Corp.,Y4000\nCANADIAN RIVER MUNICIPAL WATER,,Y4000\nOliveto,,G2900\nATTORN,GILLESPIE ROZEN TANNER ET AL,K1000\nPresident,Encore Productions,Y4000\nSALES,TOWSLEYS INC,Y4000\nOwner/Operator Small Businesse,Self-Employed,G0000\nChair Retired,Koch Industries Graco Inc,X1200\nDOCTOR,DOPS GASTROENTEROLOGY SVC.,H1130\nOVER TECH,RDECOM,T1400\nOwner,Tierra Verde Properties,F4000\nLA PARISIENNE BAKERY INC,,G2100\nPOLAN INGRAM ADVOCACY GRO,,Y4000\nEXECUTIVE,MERCLE SHARP & DOHUN,Y4000\nREALTOR,LAKEPOINT REAL ESTATE,F4000\nSTARIS CORPORATION,,Y4000\nDoctor-Anesthesiology,Self-Employed Physician,H1100\nATT,MULLOOLY JEFFREY ROONEY & FLYNN,K1000\nCLAYBON JONES & CO,,Y4000\nsocial worker,DCF,Y4000\nDHL,,T7000\nCLINICAL SOCIAL WORKER,LCSW,Y4000\nAGRICULTURE/COTTON FARMER,SELF,A0000\nReal Estate Broker,Keller Williams Realty Boise,F4200\nROCKWELL INTERNATION,,J6200\nATTORNEY-AT-L,THE FALVELLO LAW FIRM,K1000\nDPS INDUSTRIES INC (GA),,Y4000\nCLINICAL PHARMACY SPECIALISTS,US DEPT OF VETERANS,X3000\nAttorney,HoganLovells,Z9500\nattorney,Tripp Scott Attorneys-At-Law,K1000\nATTORNEY,ARIAD/ATTORNEY,H4300\nWILLIS CORROON CORP,,Y4000\nPRESIDENT,QUALCARE INC.,Y4000\nVP Safety & Loss Control,Electric Power Assn of Mississippi,E1610\nHORIZON HOBBY DISTRIBUTORS,,Y4000\nCOMPUTER SECURITY,\"CIT GROUP, INC.\",F1400\nHILL BILLY CABIN,,Y4000\nMILW INTERNATIONAL HLTH TRAINING CT,,H0000\nCEO,Industrial Manufacturing,M0000\nWriter,The Daily Show,Y4000\nPrivate Equity,Silver Lake,Y4000\nAdministrator,\"Santa Rita Medical Center, Inc.\",Y4000\nInformation Requested,,M1500\nASSOCIA,,F4200\nPHYSICIAN,WASHOE MEDICAL CENTER,H2100\nAuthor/Illustrator,Karen B Winnick,Y4000\nNON-PROFIT,AIDS ACTION COMMITTEE,H3500\nPRESIDENT,ALTRIU GROUP,K2000\nGRUBB & ELLIS METRO WASHINGTON,,F4100\nDIRECTOR INVESTOR RELA,E*TRADE BANK,F1200\nOwner,Best Recycling,J1100\nINVESTMENT BAN,MORGAN STANLEY & CO.,F2300\nELEC. CONTR.,W.G. DALE ELECTRIC CO.,B3200\nBEST SALVAGE,,T2200\nVice President,Campaign for Liberty,Y4000\nCEO,\"VITAVER & ASSOCIATES, INC.\",J1100\nCOCO,,G2910\nENTERTAINMENT DINER,,G2900\nATTORNEY,ARMSTRONG & BANKS,F1000\nVice President,Equity Residential,F4000\nMayor,City of Chula Vista,X3000\nV.P. OPERATIONS,THE KINETIC CO.,M5100\nOwner,Manley Construction,B1500\nREALTOR,SMITH REALTY GROUP,F4200\nAccount Executive,Relsys International Inc,Y4000\nBUSINESS CONSULTAN,RED TAPE LIMITED,Y4000\nPUBLIS,\"TODAY'S MEDICAL DEVELOPMENTS\",M2300\nGOVT. ASSIST,\"CIRCUIT CLERK'S OFFICE\",X3000\nInformation Security,Microsoft Corporation,C5120\nPHY,ORTHOPAEDIC & SPINE SPECIALISTS,H1130\nAttorney,Corsello Law PC,K1000\nPAIN WEBBER INC,,F2100\nMANAGEMENT,\"REESMAN'S EXCAVATING AND GRADING IN\",Y4000\nOWNER,ADVERTISING,G5210\nHAYWARD MOBILE COUNTRY,,Y4000\nPRESIDENT,MICHIGAN TECH UNIVERSITY/PRESIDENT,H5100\nPresident,Frank W. Kent,Y4000\nChiropractor,Hoogeveen Chiropractic,H1500\nHOSPITALITY INDUSTRY,STARWOOD HOTELS,T9100\nMANAGING D,FINANCIAL SERVICES FORUM,F0000\nInvestment Fund Mgr,SPP Mezzanine Partners LLC,Y4000\nSOCIAL WORKER,METRO NORTH REGIONAL EMPLOYMENT BOARD,Y4000\nPUBLISHER,SELF,J5100\nCONS,SHOUSE & ASSOCIATES CONSULTING,Y4000\nSTEEL FABRICATORS OF MONR,,M2100\nEXECUTIVE,THE VILLAGES TECHNOLOGY SOLUTIONS GROU,F4100\nMILLER TRIPLETT & MILLER ENG INC,,Y4000\nCEO,Fetles Sand & Gravel,Y4000\nFAMILY THERAPIST,IPMG SELF EMPLOYED,Y4000\nSinger/Artist,Self,G0000\nRADIOLOGICAL ASSOC,,J7400\nCOMMERCIALFISHERMAN,SELF-EMPLOYED,E4100\nBricklayer,Advance Masonry,J1200\nMILES CUSTOMER BROKER,,Y4000\nlandscape architect,Information Requested,B3600\nREAL,EQUITY OFFICE PROPERTIES TRUST,F4100\nEXECUTIVE,U.B.S. INVESTMENT BANK,F2300\nPROFESSOR OF ENGINEERING,ECOLE POLYTECHNIQUE,Y4000\nStudent,Rutgers,J1200\nCONSULTANT,DAVIS MANAFORT,G5260\nPresident,Tomaco Incorporated,Y4000\nAMERICAN CENTURY COMPANIES,,F2100\nLaw Profesor,Brooklyn Law School,J1200\nKRAMER & TOBOCMAN,,Y4000\nATTORNEY,SIMEONE & MILLER,Y4000\nANESTH ASSOC OF THE POCONOS,,H1130\n\"Corp Director, Communit\",Beth Israel Medical Cent,H2100\nFINANCIAL,BONDURANT MANAGEMENT LLC,Y4000\nAYISTO HOSPITAL,,H1100\nDOTHAN ANEST ASSOC,,H1130\nVP,MATCHMAKER INC,Y4000\nDIRECTOR OF SMALL SERVICE AGENCY,SELF-EMPLOYED,G0000\nEVERGREEN INVESTMENT MANAGEMENT COM,,F2100\nVP - Translator,Mic & Associates,G5270\nATTORNEY,\"SANDBERG & LODUCA, LLP\",K1000\nPUBL,FINANCIAL MEDIA HOLDINGS GROUP,Z9500\nExec,Nugroove Music,Y4000\nConsultant,\"Csm, Inc\",G5270\nFREDERICK P. WINNER LTD.,,G2850\nSALES,HUNTINGTON,F1000\nU S PATENT OFFICE,,X3000\nWESTON DIESEL SERVICES INC,,Y4000\nAttorney,\"Vianale & vianale, LLP\",K1100\nADMINISTRATOR,HOUSING PARTNERSHIP,Y4000\nWellness Consultant,Self-Employed,G4000\nIWM INC,,Y4000\nPHYSICIAN,SIGNATURE HEALTHCARE,H3000\nSuperintendent,Dallas County Schools,X3500\nREAL ES,MEX-TURNING POINT FINANCIAL,F0000\nNOT EMPLOYED,NOT EMPLOYED,G6400\n\"SVP, INVESTMENT\",NUETERRA HEALTHCARE,H3200\nUNIPAC SERVICE CORPORATION,,Y4000\nSELF-EMPLOYED,EMERGENCY MEDICINE,H1100\nPRESIDENT,GENERAL DATA KOMMUNICATIONS,Y4000\nBC ECO DEV CORP,,Y4000\nEntertainment Manager,Self-Employed,J7300\nEXCAVATING CONTRACTOR,VEIT USA,Y4000\nINVESTOR,MOON CAPITAL,Y4000\nSCHOBER & REYNOLDS,,Y4000\nMELBOURNE FINANCIAL,,F0000\nCEO,HART & ASSOCIATES,Y4000\nWESTSIDE WASTE MANAGEMENT,,E3000\nGOVERNMENT RELA,DELOITTE CONSULTING,G5270\nExecutive Vice President,Liquid Environmental Solutions,E3000\nPresident,Unitek Insulation,B3000\nATTORNEY,KATTEN MUCHIN ROSENMAN LLP,G4000\nCOMMUNITY VOLUNTEER,SELF,T1000\nU.S. SENATE,RETIRED,X1200\nOWNER,LAIMING INSURANCE/OWNER,F3100\nBANKER,GULF COAST BANK & TRUST COMPANY,F1100\nLobbyist,\"Capitol Associates, Inc.\",K2000\nClinical Asst. Professor,UAMS,H1710\nLOBBYIST,BERNSTEIN STRATEGY GROUP,K2000\nINVESTMENT MANAGEMENT,RIOCO,Y4000\nEDGE GROUP,,Y4000\nPHYS,UPPER PENINSULA MEDICAL CENTER,H2100\nCEO,BROTOLOC HEALTH CARE SYSTEMS,Y4000\nHOMEMAKER/INVESTOR,SELF,F7000\nCommunications Director,Roger Baldwin Foundation of ACLU of Il,Z9500\nFinancial Advisor,Merrill Lynch,J7400\nWALDO CONSTRUCTION INC,,B1500\nDIRECTOR OF FI,EDEN ROC RENAISSANCE,Y4000\nVP/TREASURER,THE DOW CHEMICAL COMPANY,M1000\nMORTICIAN & FUN,WRIGHT FUNERAL HOME,G5400\nSUBSTITUTE TEACHER,FULTON COUNTY,X3000\ndeclined to provide,declined to provide,X3000\nattorney,\"Climaco, Lefkowitz, Peca, Wilc\",K1000\nCONSULTANT,BLUEGRASS GROUP/CONSULTANT,Y4000\nCeo,Philadelphia Ins Co,F3100\nSR. VICE PRESIDENT,ELECTRONIC ARTS,C5120\nDJ STRICKLAND PC,,Y4000\nAttorney at Law,\"Berger Singerman, PA\",Y4000\nAttorney,\"Barzee & Flores, PA\",K1000\nPRESIDENT,CAJUN CONTRACTORS,B1000\nCounsel,Henry Schein,H4100\nLAW OFFICES OF ROHN & CUSICK,,K1000\nPROGRAM MANAGER,ICI SERVICES CORP.,Y4000\nFINANCE,WARNER BROS.,C2400\nAssociate,Bernstein Global Wealth Management,F2100\nReal Estate,Heidi Stockwell,F4000\nVICE PRESIDEN,JAMES MINTZ GROUP INC,G5290\nPresident,Real Estate Roundtable,F4100\nPhysician,Bethlehem Family Practice,H1100\nVP OF CLIENT DEVELOPM,BENFIELD LTD.,Y4000\nCENTRAL GEORGIA EYE C,,H1120\nAssistant to the Chairman of the Board,Joint Industry Board of the Electrical,Y4000\nPresident,Palermos Pizza Inc.,G2900\nRegional Manager,TLV,Y4000\nCEO,Teraverde Financial LLC,Y4000\nPARTNER,\"MERIDIAN STRATEGIES, LLC\",Y4000\n\"CHRISTOPHER T. KURTZ, ATTORNEY AT L\",,K1000\nLIBRARIAN,SAN DIEGO COUNTY,J7400\nREAL ESTATE DEVELOPER,FONVILLE MORISEY REALTORS,F4200\nHENDERSON PROPERTIES INC,,Y4000\nDIRECTOR,GREYSTONE MEDICAL GROUP,H4500\nMARDENS/PRESIDENT/BUYER,,Y4000\nEngineer,\"HDR Engineering, Inc\",B4400\nSENIOR EXECUTIVE,BRIGADE CAPITAL,F2100\nHOSPITAL ADMINISTRAT,\"CHILDRENS NATIONAL MEDICAL CENTER,\",H2000\nactress/mother,self,C2400\nNurse Manager,Hraub Clinic Hosp,Y4000\nSPEECH PATHOLOGIST,,\nMEMBER,NYC COUNCIL/MEMBER,Y4000\nSEL,ALAMEDA FAMILY FUNERAL SERVICES,G5400\nHAMILTON CONNECTIONS INC,,Y4000\nPANGERE INDUSTRIES,,Y4000\n,CIRCLE LINE SIGHTSEEING YACTS INC.,Y4000\nOwner,Zanone Properties LLC,F4000\nEXECUTIVE VP,\"CKE RESTAURANTS, INC./EXECUTIVE VP\",G2900\nANESTHESIOLOGIST,ANESCO CENTRAL,H1130\n\"Morgan, Lewis, Bochins LLP\",,K1000\nCARR-GOTTSTEIN COMPANY INC,,J5100\nPRODUCER-DIRECT,,C2000\nORTHOPAEDIC SURGEON,ORTHO ASSOC OF MICHIGAN,H1130\nLABOR RESEARCH ASSOCIATION,,Y4000\nEXECUTIVE,COOK GROUP,H4100\nATTORNEY,HONIGMAN MILLER SCHWARTZ & COHN,J5100\nLYTAL REITER ETAL PA,,K1000\nHUSTON & CO,,Y4000\nVIKING COCA-COLA,,Y4000\nPhysician,Victoria Healthcare Vietnam,J1200\nPhysicians,Tricounty Eye Physicians and Surgeons,Y4000\nAttorney,Coker-Feiner,Y4000\nACACIA GROUP,,F3300\nHousewife,N/A,F3400\nCFP,PERRYMAN FINANCIAL ADVISORY,Y4000\n\"VP, Telesales\",Intuit,C5120\nPRESIDENT,\"RICHLOOM SHANGHAI TRADING, LTD.\",M8000\nArchitect,Handel Architects LLP,B4200\nEXECUTIVE,DEALER MANAGEMENT INC.,Y4000\nPhysician,Rothonan Institute,Y4000\nENTERTAINER,THEATRE DREAMS,C2900\nPHYSICIAN,\"Peter Anderson, Med Corp\",H1100\nPARTNER,CONGAREE RIVER,J7400\nOWNER,WAHLQUIST REAL ESTATE COMPANY,J1200\nSAMSON INVESTMENT ASSOCIATES,,Y4000\nSALES,KLEINSCHMIDT INC.,Y4000\nVICE PRESIDENT AND GENERAL MANAGER,WOAI,C2100\nOwner,Cherner Auto Group,Y4000\nORTHODONTIST,SHAHEEN ORTHODONTICS,Y4000\n\"Gov't Affairs Manager\",3M,M2300\nINDUSTRIAL DATA AUTOMATION,,Y4000\nBLACK HILLS SPECIAL SERVICES,,X4100\nPRESIDENT,PRUETT HOMES,B2000\nINVESTMENT ADVISOR,BRAVE WARRIOR ADVISORS,Y4000\nHARBOR PILOT,\"PORT EVERGLADES PILOTS\\' ASSOCIATION\",T6200\nEXECUTIVE,BASKAHGEGAN COMPANY,A5000\nOWNER,TIMOTHY J. COATS CO. INC.,Y4000\nCheif operating offi,Charles & Helen Schwab Foundation,Y4000\nPresident & CEO,Stage One Productions,Y4000\nREADY CUT FOODS,,J5100\nROBERTS AUTO PARTS,,T2200\nPRESIDENT,COCA-COLA PUERTO RICO BOTTLERS,G2700\nREALTOR,WHITMAN & ASSOC REALTOR,F4200\nFamily Physician,Mayo Clinic Arizona,H1100\nATTORNEY,MCALEESE & ASSOCIATES PC,K1000\nCLUB CORPORATION,,G5800\nSR DIR RISK,RADIOSHACK CORPORATION,G4200\nINSURANCE,LIBERTY MUTUAL GROUP,F3400\nUNC REMEDIATION,,T1600\nPRINCIPAL,HARVEST EQUITIES,Y4000\nBIOTECH VENTURE CAPITALIST,SELF,F2500\nPresident and Chief,Witham Memorial Hospital,H2100\nSecretary,Westbury High School,J1200\nCFO,Passages Hospice,H2200\nVice President and General Manager,KPHO-TV,C2100\nPresident,Bergstrom Aircraft Inc.,G1200\n\"Chairman, President & CEO\",Bar-S Foods Co,G2300\nCONSULTANT,SELD,J1200\nSELF/BUSINESS MAN/FARMER/SCIENTIST,,A1000\nCYBER SECURITY RESEARCH CONSULTANTS,,D6000\nPHYSICIAN,MIDDLE V. A. MEDICAL CENTER,Y4000\nSTONEHENGE CAPITAL,,F0000\n\"Associate Professor, University of PAT\",\"Director, Experimental-Research Center\",X0000\nINTERVENTIONAL CARDIOLOGIST,RETIRED,X1200\nAttorney,Burr & Smith,K1000\nACCOUNT EXECUTI,COTTINGHAM & BUTLER,F3100\nManaging Director,VTMS,Y4000\nPHYSICIAN,GENI A. BENNETTS M.D.,H1100\nKELSO CO,,F2300\nKENNOVAK ARCHITECT,,B4200\nSales Repsresentativ,IBM,C5100\nCEO,Centorr Vacuum,Y4000\nCFO,\"MILLER MECHANICAL C & E, LLC\",Y4000\nJOHN HARLAN & ASSOCIATES,,Y4000\n\"CHAMBERS, CONLON AND HARTWELL\",,K2000\nAdministrator,Manor Corp,Y4000\nERBORS MANAGEMENT CORP,,Y4000\nInvestor,Tanguot Capital,F0000\nCHAIRMAN,WINTON BLOUNT & ASSOCIATES,Y4000\nExecutive Director,Lighthouse Communities,Y4000\nAttorney; Director o,\"Cadwalader, Wickersham & Taft LLP\",Z9500\nPresident,Michael Capponi Corp. Llc,Y4000\nDIPLOMAT,RETIRED,Z9500\n\"VICE PRESIDENT, ETHICS\",PREMIER,Z9500\nREA,COLDWELL BANKER THE CONDO STORE,F4200\nLaw Office of Matthew Van Fleet,Lawyer,K1000\nExecutive Vice President,Wisconsin Energy,E1600\nInternet and Web Con,Self-employed,C5140\nOLDMAN COOLEY LEIGHTON LLP,,Y4000\nPresident Broker Market,Munich Reamerica,Y4000\nVP,\"PERFORMANCE ASSOCIATES, INC\",Y4000\nTHERA,SOCIAL WORKER,H6000\nOPERATIONS MANAGER,WHITING OIL AND GAS CORPORATIO,E1120\nJOHN MASSMAN CONTRACTING INC (J,,B1500\nTHE CRIPPEN COS,,Y4000\nBIOTECHNOLOGY INDUSTRIES,,H4500\nArtist,Larry Bell Inc,Y4000\nCUSMAN & WAKEFIELD,,F4200\nPresident,Db. Lighting Inc.,Y4000\nOWNER,RIDGEFIELD INTERIORS INC.,Y4000\nBIOCRYST PHARMACEUTICAL/CEO/CHAIRMA,,H4300\nPresident,\"Reliable Plating Works, Inc\",M5200\nPresident,\"Forristall Ocean Engineering, Inc\",B4400\nEVP,ASSOC BUILDERS & CONTRACTORS,B0500\nDirector of Sales,\"Carlas Pastas, Inc.\",G2100\nADMINISTRATOR,CORPUS CHRISTI OUTPATIENT SURGERY,H1130\nFISKE SERVICE,IRWIN,Y4000\n\"KLEINBERG, KAPLAN, WOLFF & COHEN, P\",,K1000\nNonprofit Director,Paul & Daisy Soros,Y4000\nGOVT,CORNERSTONE GOVERNMENT AFFAIRS,K2000\nNUTRITION CORP,,Y4000\nRETIRED,\"JAN ASHFORD PLUMBING, INC.\",X1200\nSelf Employed,Institute of Voice,Y4000\nBOROUGH OF QUEENS,,X3000\nATTORNEY,ANDREW J. COHEN,Y4000\nArchtectural Designer,Hoffman LLC,Y4000\nREGION PLANT ENGINEERING MANAGER,UNITED PARCEL SERVICE INC,T7100\nMANAGER,\"O'BRIEN REALTY INC.\",F4200\nADMINISTRATOR,JOHNS HOPKINS,H5100\nPHYSICIAN,CHD MERIDIAN HEALTHCARE,H0000\nVICE PRESIDENT,FLORIDA CRYSTAL,A1200\nEXECUTIVE,CERNER,J7300\nConsulting engineer,Southern Design,Y4000\nOWNER,LYONS PRINTING,C1300\nPublic Policy,JAB,Y4000\nDIRECTOR,MAINE STATE HOUSING AUTHORITY,Z9500\nATTORNEY,DORAN & MURPHY LLP,K1000\nDESTINATION RESORTS AND HOTELS,,T9100\nMIDLANTIC BANK CORP,,F1100\nPresident & Chief Executive Officer,McCue Mortgage Company,F4600\nISAACSON MILLER INC,,G5250\nHIGHLAND HIGH SCHOOL,,X3500\nphysician,\"Research Physicians, PA\",H1100\nCONSULTANT,NAVIGANT CONSULTING/SELF,G5270\nPRESIDENT,ONLINE ENTERPRISE INC,C5000\nAVIATION INSTRUCTOR,NONE,T1000\nAssistant Intergrato,Keilick & Soffan,Y4000\nCOMMERCIAL REAL ESTATE,SELF EMPLOYED,Z9500\nGRASSROOTS COORDINATOR,NEW MEXICO RECA,E1610\nATLAS WORLDWIDE HOLDING,,Y4000\nJEFFERSON GOVNT RELATION,,K2000\nWildlife Biologist,Alaska Department of Fish and Game,X3000\nDirector,State of Hawaii Dept of Taxation,Y4000\n\"QUICK INT'L COURIER\",,Y4000\nOWNER,CIBCO BARGE LINES LLC,Y4000\n(NAMED),RESTAURANT,G2900\nReal Estate Develope,NY Commercial,F4000\nOperations Management,Platinum Equity,Z9500\nCHARLES RYAN AND ASSOCIATES,,G5210\nPARTNER,ARCHER HALLIDAY,Y4000\nRIO REALTY,,F4200\nOwner,\"W. Silver, Inc.\",Y4000\nFARMER,CRANNEYFARMS,A1000\nEngineer,\"Wang Engineering, Inc\",Z9500\nCEO,Revel Entertainment,Y4000\nReal Estate Broker/Investor,Century21piscioneri,F4200\nUNION PARK PONTIAC,,T2300\nPhysician,Arizona Endocrinology,H1130\nELLICOTT MACHINE CORPORAT,,Y4000\nManager,Demo Systems,Y4000\nEASTIL MANAGMENT,,Y4000\nPOSTGRADUATE CENTER FOR MENTAL HEA,,Y4000\nGOVERNMENT AFFAIRS,UNITEDHEALTH GROUP,H3700\nELECTRICAL ENGINEERING,NASA,X3000\nATTORNEY,ELIAS GROUP,Y4000\nPartner,\"Perrin, Landry, Delaunay, Dartez &\",Y4000\nWILMINGTON MOTOR CARS,,T2300\nDEVELOPER,,H2200\nSoftware Engineer,Univeristy Of Washington,J1200\nBusiness Manager,\"Breslauer, Rutman, & Anderson\",G5270\nStaff Assist,United States Senate,J1200\nPrincipal,Madeira School,J7400\nExecutive,\"Advanced Health Media, LLC\",Y4000\nENGINEER,CELPLAN TECHNOLOGIES,Y4000\nATTORNEY,HESSE & HESSE L.L.P.,K1000\nBEER DISTRIBUTION,MOUNTAIN EAGLE INC.,Y4000\nVICE CHAI,CAMBRIDGE ENERGY RESEARCH,E1000\nSr VP,Strategic Marketing Innov,K2000\nSELF/PEST CONTROL/REAL ESTATE,,G0000\nATTORNEY,\"BRASHEAR, LLP\",Y4000\nProfessor,Northeastern University,Z9500\nGREAT PLAINS COKE,,Y4000\nCADWALADER WICKERSHAM & TAFT LLP,,K1000\nReal Estate Broker,Milestone Realtors,F4200\nATTORNEY,CAMPBELL MAACK & SESSIONS,K1000\nBusinessman,The Ferguson Group,K2000\nLSEM,,K1000\n\"PHYSICIAN'S ASSISTANT\",PHILIP HEALTH SERVICES,Y4000\nINSURANCE SALES,MASS MUTUAL,X1200\nReal Estate Broker Assoc/VP,Prudential Preferred Prop,F4200\nELECTRICAL ENGINEER,EN ENGINEERING,B4400\nResearch Lab Chief,National Institute,Y4000\nCYSTIC FIBROSIS FOUND,,Y4000\nSALES MANAGER,WWJ,Y4000\n\"FRIED, FRANK, HARRIS, SHRIVER ET AL\",,K1000\nWRITER,UNEMPLOYED,J1100\nPROF,HARVARD UNIV,H5100\nPresident & CEO,Chicago Board of Trade,F2200\nOILFIELD SERVICES,FAIRWEATHER INC.,Y4000\nAttorney,Law Offices of Norman Stein,K1000\nRETIR,RETIRED ERNST & YOUNG PARTNER,J1100\nSTANLEY INVESTEMENT,,F3300\nSOFTWARE SUPPORT ENGINEER,MICROSOFT,C5120\nMANAGING DIREC,KPG CAPITAL PARTNERS,F2600\nSpecial Ed Teacher,Episcopal Center for Children,G5000\nREGIST,PENNSYLVANIA DEPT. OF HEALTH,Y4000\nOwner,The Somerset Refinery Inc.,Y4000\nVice President,Roark Capital Group,G1000\nBENEFI,BROKERAGE PROFESSIONALS INC.,F3100\nCREATIVE,VIMEO,Y4000\nGENERAL MANAGER,PLAZA TOWERS LLC,Y4000\nPARTNER,CORNERSTONE HOLDINGS,X1200\nCFP,HORACE MANN,Y4000\nDOMINY FORD AND MCPHER,,F4200\nInvestor,Milestone Partners,Y4000\nPHYSICAN,WESTERN RADIATION ONCOLOGY,H0000\nATTORNEY AT LAW,\"Gist, Kennedy & Associates\",K1000\nSELECTED GROUP,,B1500\nATTORNEY,\"HAWKINS PARNELL THACKSTON  YOUNG, LL\",Y4000\nATTORNEY,FARHANG & MEDCOFF,Y4000\nMIKE FREEMAN INSURANCE AGENCY,,Y4000\nManagement Consultant,Shipley Associates,G5200\nInformation Requeste,The Solomon Organization. LLC.,F4500\nClient Solutions,BNY Mellon,F1100\nAdministrator,Maricopa County,X3000\nPRESIDENT/CEO,\"N. AMERICAN HOGANAS, INC.\",Y4000\nREGISTERED,\"MIKE'S MEDICAL PHARMACY\",G4900\nFAMILY CARE P C,,Y4000\nGRACEWOOD STATE HOSPITAL,,H2100\nUROLOGIST,\"BRIAN LORD, MD\",H1130\nAUTO DEALER,RADLEY AUTOMOTIVE GROUP,T2000\nMERCEDES-BENZ,ATLANTA CLASSIC CARS,C2200\nDirector,\"Applied Materials, Inc.\",C5110\nPhysician,Lakes Internal Medicine,Y4000\nATTO,ROBINS KAPLAN MAILER & CIROEAL,K1000\n\"SENIOR VP, FIELD OPERATIONS\",MISSOURI HOSPITAL ASSOCIATION,H2100\nREALTOR,REMAX ALL ESTATES REALTORS,F4200\nREAL ESTATE,WESTIMINSTER MNGMT,J5100\nTEACHER,CLAREMONT UNIFIED SCHOOLS,Y4000\nSr Vice President,CIGNA Corp,F3200\nENGINEERING EXEC,XM SATELLITE RADIO,C2100\nSelf,Al & Sam,J1200\nBusiness Development Manager,The AES Corporation,E1630\nTEACHER,MAGNOLIA SCHOOL DISTRICT,Y4000\nPSYCHIATRIST,LEW BRITTON MD,H1100\nTREASURER,GATEWOOD SCHOOLS,Y4000\nProject Manager III,Ch2Mhill/OMI,B4000\nOwner/Principal/Partner,Rande Duke Construction,B2000\nSub-Teacher,Amphitheater School District,X3500\nExec. Vice President,\"SMYTHE, CRAMER CO.\",F4200\nPresident,Peoples Underwriters Inc,F3100\nAttorney,Selzer Gurvitch Rabin & Obecny,K1000\nPODIATRIST,FOOT & ANKLE SPECIALISTS,Y4000\nACCOUNTANT,JLR MEDICAL GROUP,H1130\nCHAIRMAN,PARKLAND MANAGEMENT COMPANY,Y4000\nBudget Analyst,American Association for the Advanceme,Y4000\nCATHOLIC PRIEST,R.C. DIOCESE OF BOISE,X7000\nRealtor,Chell Realtors,J9000\nPROMISE SYSTEMS CORP,,Y4000\nEXECUTIVE VICE PRESI,JOHN D. WILLIAMS COMPANY,Y4000\nVenture Capitalist,Twin Birches LTD,F4100\nCLAYDESTA INC,,J1100\nSTRATEGIC CONSULTANT,UNEMPLOYMENT,Y1000\nPRESIDENT,R J CONSTRUCTION,B1500\nREALTOR,PRUDENTIAL MOUNTAIN,F4000\nABRAHAM WATKINS NICHOLS SORRELS,,K1000\nCHAIRMAN,\"AMERICAN DEFENCE INT'L\",K2100\nSTATE OF TEXAS,,A3300\nCITY OF WTBY,,X3000\nCHAIRMAN,\"T.ROWE PRICE GROUP, INC\",F2100\nOWNER,THE FIRST PLACE,Y0000\nCHRISTIAN SALVESEN INC,,Y4000\nPublishing,\"Dabora, Inc.\",Z9500\nOWNER,MARVEL EXCAVATING,B3600\nEXEC/ENGINEER,OHIO WILLOW WOOD COMPANY,B5200\nATTORNEY,\"BERGESON, LLP\",K1000\nCeo,Phone On Hold Mktng Systms Inc,Y4000\nBRADFORD CARPET ONE,,M8000\nDAYCOR PROPERTIES,,Y4000\nSYSTEMS ENGINEER,S.I.S.S.,Y4000\nCHAIRMAN,WOLFENSOHN & COMPANY,F2600\nCEO,Landauer Metropolitan,Y4000\nSVP MARKETING,ALLIED BURTON,Y4000\nMANAGER,\"THE BERGER COMPANY, INC.\",F4000\nPRESIDENT,CHIQUITA BRANDS INTL,F3400\nLEE ENTERPRISES,,C2100\nExec,Own co,Y4000\nTHE MASON CORP,,B5400\nPRESIDENT,BROUSSARD BROTHERS INC,Y4000\n\"CEO, Chairman of the Board\",\"CBL & Associates Properties, Inc\",G4000\nLAW OFFICES OF JOHN P SEARS,,K1000\nTHE FULTON GROUP INC,,Y4000\nteacher,George Mason University,H5100\nDEPUTY STAFF DIRECTOR,HOUSE BUDGET COMMITTEE,Y4000\nAUTO DEALER,DUEA MOTOR COMPANY,T2300\nDIVISIONAL CIO ENTERPRISE ARCHITECTURE,WALGREEN CO.,G4900\nPresident,EDC Management,Y4000\nGRANDSOUTH BANK,,F1000\nADULT CARDIOLOGY,Premier Cardiovascular Center PLC,H1100\nExecutive,F D Rich Co,Y4000\nAREA MGR,GE CAPITAL,M2300\nUS A,SOCIAL SECURITY ADMINISTRATION,X3000\nNEW HAMPSHIRE WRITERS PR,,Y4000\nOwner,Flax Art Supply Corp,Y4000\nAttorney,\"Essex Richards, PA\",Y4000\nInvestment Banker,Wachovia Securities Inc.,F2100\nReal Estate Development,Knight Company,F4100\nPresident,Marine Terminals of Arkansas,Y4000\nINVESTMENT BANKER,LONE STAR SECURITIES,F2100\nATTORNEY,\"ELIZABETH GOLDSTEIN, PC\",K1000\ncomputer programmer,Sabaki Corp.,Y4000\nPublic Relations Con,BS Ltd,Y4000\nOWNER,OMEGA BROKERS INC.,F3100\nHealth Care Provider,Cascade Vista,Y4000\nCARDIOLOGIST,NATIONAL CA MEDICAL ASSOC.,Y4000\nGerneral Manager,Versign,Y4000\nRETIRED,KENTUCKY MFG CO.,X1200\nMASS MUTUAL LIFE INS. CO.,,F1100\nENERGY CONSULTANT,B. C. I. INTERNATIONAL,Y4000\nCEO,MQSoftware,C5120\nWINDMILL DISTRIBUTING,INVENTORY MANAGER/WINDMILL DISTRIBU,Y4000\nPROFESSOR,UNC SCHOOL OF DENTISTRY,H5100\nVIDEO,UNIVERSITY OF WISCONSIN-STOUT,H5100\nFAMILY FRIST INC,,Y4000\nCO-OWNER,KDINTERACTIVE,Y4000\nPRESIDENT/CEO,B.A. HOLMES & ASSOCIATES,Y4000\nSVP OF TECHNOLOGY,ROSETTA STONE,Z9500\nGRESHAM OIL CO,,E1160\nKAUFMAN & BROAD,,J7400\nSOL TICK & CO,,Y4000\nPresident,\"Christine Kefauver, Inc.\",Y4000\nVII Photo,,Y4000\nLAWYER,,F5100\nNORTH EAST MEDICAL SERVICES,,H0000\nHPC PC,,Y4000\ntechnical writer,Oracle Corp,C5120\nOIL/GAS EXPLORATION,SELF--R H PICKENS,E1120\nExecutive,SELF-EMPLOYED,T7000\nHOMEMAKER,SEF,X1200\nEXECUTIVE,EXELON,E1600\nKOVILIC CONST CO INC,,B1000\nCONSULTANT,THE HAMM CONSULTING GROUP,K2000\nInformation Requested,Coastal behavioral health,Y4000\nPartner/Developer,\"Sierra Holdings, LLC\",F4100\nREAL ESTATE BROKER ASSOCIATE,PRUDENTIAL CA REALTY,F4200\nSYSTEMS ENGINEERING MANAGER,LOCKHEED MARTIN,D2000\nAUTOMOBILE DEAL,SUBURBAN COLLECTION,Y0000\nLAWYER,MARIS & LANIER P.C.,K1000\nINSURANCE BRO,CAVIGNAC & ASSOCIATES,F3100\nPHYSICIAN,DARTMOUTH HITCHCOCK MED,H2100\nLEGAL ASSISTANT,ARNOLD & PORTER,K1000\nRAD-TECH,UNEMPLOYED,Y1000\nRETIRED,MERRIMACK VALLEY,J7400\n\"SVP, Customer Operations\",\"Raymond James Financial, Inc\",F2100\nC.E.O.,CAPITOL STRATEGIES,G5260\nBUTLER WOOTEN OVERBY CHEELEY P,,K1100\nCONS,SWCA ENVIRONMENTAL CONSULTANTS,E2000\nMONEY MANAGEMENT,PUTMAN LOVELL,Y4000\nRESE,UNIVERSITY OF MONTANA-MISSOULA,H5100\nVice President,Hallett Materials,B5100\nATTORNEY,\"BOWLES RICE, LLP\",K1000\nPRESI,COMERSTONE GOVERNMENT AFFAIRS,K2000\nE.V.P,BEACH EXPRESS OIL,Y4000\nINFO REQUESTED,OZPED GROUP INC,Y4000\nSVP & CHIEF,PARKWAY PROPERTIES INC.,F4100\nCHAIRMAN OF T,ALLIANCE ENERGY CORP.,E1140\nAttorney,Greenberg Traveling,K1000\nSWAT-FAME INC,,M3100\nFINANCIAL SERVICES,THE BROWNING GROUP,F3100\nENGINEER,\"T. K. D. A., INC.\",Y4000\nOral & Maxillofacial Surgeon,Laham Glass & Nelson PA,H1400\nMULZER STONE CO,,Y4000\nOFFICE OF THE STATE PUBLIC DEFENDER,,X3000\nCorporate Officer,\"Lema Petroleum, Inc.\",E1100\nNUCLEAR FUELS PROCESSING OPER,WESANGHOUSEELEVERTECO.,Y4000\nOUR LADY OF PEACE SCHOOL,,H5100\nCUMBIE CONCRETE CO. INC./PRESIDENT/,,B5100\nCONSULTANT,ROBERT SPOLUM & ASSOCIATES,Y4000\nWA STATE LIBRARY,,X4200\nPROGRAM MANAGER,SELF,Y3000\nChairman,\"Alternative Investment Group, LLC\",F2100\nUNIVERSITY OF SOUTHERN CALIFORNIA S,,J7400\nOwner,Wilson Advisors,Y4000\nCEO,Creative Host Services Inc.,Y4000\n\"GOV'T RELATIONS\",GRAYSTONE GROUP,K2000\nTeacher,Cesa #10,Y4000\nEXECUTIVE DIRECTOR,MMEC @ MSU BOZEMAN/EXECUTIVE DIRECT,H5100\nWallace Street Ltd.,Self-employed,F2100\nEXECUTIVE,ESCO CORPORATION/EXECUTIVE,M5000\nConsultant,Alford & Associates,K2000\nPROPANE GAS DIST,,E1190\nAccountant,Goldman Sachs Execution,F2300\nARCHAEOLOGIST,CRITERION ASSOCIATES LLC,Y4000\nENGINEER MINE,\"ALPHA APPALACHIA SERVICES, INC.\",E1210\nPARTNER,THE JOSHUA GROUP,Y4000\nCPA,Deloitte Touche Llp,F5100\nGRANITE CONSTR CO,,B1000\nDENT,ORTHOPEADIC & NEUROLOGICAL SUR,H1130\nGRAY HONG BILLS & ASSOCIATES INC.,,B4000\nMunicipal Engineerin,\"Pickering, Corts & Summerson, Inc.\",Y4000\nOwner,Split Rock Lodge,Y4000\nfund-raiser,Self Employed,J7400\nPhysician,Avera Health,H1100\nUnix/Linux Systems A,\"Netherland, Sewell & Associates\",Y4000\nadvertising,self-employed,G0000\nCARPENTRY,SELF-EMPLOYED,B3000\nCEO,City Cab,T4200\nREALTOR,THE JACK STAHL COMPANY,F4200\nCertified Industrial Hygienist,Bidwell Environmental,Y4000\nWHITEHURST HARKNESS WATSON LONDON O,,Y4000\nBOUMA CORP./SENIOR EXEC./VICE PRESI,,B3000\nCHIEF DEVELOPMENT OF,VITALSMARTS,H5000\nAnalyst,UC Berkeley,H5100\nGREENFIELD DEVELOPMENT CORP,,Y4000\nCONTRACT MANAGER,IBM,C5100\nN/A/PHOTOGRAPHER,,X1200\nGIAMBRONE MASONRY,,B3000\nCROWN PACIFIC LTD,,Y4000\nATTORNEY,\"SEULAVREY DEVELOPMENT, INC.\",Y4000\nJOHN J SCHOEN COMPANY,,Y4000\nPARTNER,NOVOGRADAC AND COMPANY LLP,F5100\nSills Cummis & Gross,,K1000\nLaw Professor,\"NYU Law School, 40 Washington Square S\",H5170\nADMINISTRATIVE MANAGEMENT,I.M.S.,H5000\nVice President,\"Fuller & OBrien, Inc.\",Y4000\nDomestic Engineer,Kaiser International,Y4000\nPEYTON OLDS CADILLAC GMC,,T2300\nMed Recs Clerk,Trinity Hlth Sys,J1200\nTransportation Broke,\"Payne, Lynch & Aaociates, Inc.\",J1100\nDONNELLY CONROY & GELHAAR LLP,,K1000\nPRESIDENT,ADAMS & BLINN,K1000\nMother,My Kids,Y4000\nPASTERNACK POPISH REEF & TUMINARO,,Y4000\nPresident,MacMillin Hydraulic Engineering Corp.,Y4000\nOWNER,BAILEY EXCAVATING,B3600\nALABAMA BUSINESS FORMS,,C1300\nATTORNEY,\"ROGERS, POWERS & SCHWARTZ LLP\",Y4000\nSTOCKBROKER,LPL FINANCIAL,Z9500\nADULT,NEWARK BETH ISRAEL MEDCL CTR,H1100\nPhotographer,JON MORRIS PHOTOGRAPHY,Y4000\nRACONTEUR,SELF EMPLOYED,Y4000\nVP Ops & Visual Merc,RadioShack Corporation,G4200\nFinance Manager,\"Summit Media Broadcasting, LLC\",C2000\nOwner,Franklin Foods Inc,Y4000\nPresident,Clickhome,Y4000\nattorney,Baker Donelson,K1000\nCONSUMER ANTHROPOLOG,SELF-EMPLOYED,G5200\nSITUS REAL ESTATE CO,,F4000\nC. P. A.,\"Hass & Company, L.L.C.\",Y4000\nLawyer,Hogan & Hartson L.L.P.,C2100\nSR. VP PRODUCTION,NEW LINE CINEMA,C2400\nQUALITY ASSURANCE MANAGER,US EPA,Z9500\nRISK MANAGER,\"STRIPE, INC.\",Y4000\nSelf employed,Blue Bonnett Restaurant,G2900\nINSURANCE,SELF. PBWJR.,J1100\nOWNER,SERENITY GROUP,B1000\nOWNER,\"WALSTON HOMES, LLC\",Y4000\nVP - CARRIER SALES,ITC DELTACOM,C4000\n\"AKIN, GUMP, HAVER & FIELD LLP\",,K1000\nPRODUCER,GEORGE SPOTA PRODUCTIONS/PRODUCER,J7400\nADMINISTRATOR,CITY OF LOS ANGELES,Z9500\nSHREVEPORT PUBLISHING CO,,C1100\nSenior VP Property Operations,Equity Residential,F4100\nBUSINESS OWNER,P.S.I.,E1160\nREAL ESTATE INVESTMENT,\"J I. KISLAK, INC.\",F4000\nDue Diligence Attemp,Due Diligence Attempted 11/20/06,B4200\nBEVERAGE DISTRIBUTOR,THE CHARMER SUNBELT GROUP,G2850\nU S GOVT,,X3200\nWILMER CUTLER,,K1000\nPRESIDENT,JACKSONVILLE STATE UNIVERSITY,H5100\nADM,HYUNDAI,G0000\nPENNSYLVANIA STEEL FOUNDR,,M2100\nAttorney,Woods Law Firm,K1000\nPRES,J.R. INSULATION SALES & SERVIC,B3000\nMAPLE DALE INDIAN HILL,,Y4000\n\"Psychiatrist, Appointed Gov't Official\",State of NY,X3000\nJARICK PRODUCTS CO INC,,Y4000\nDICKINSON AND WRIGHT,,K1000\nSVP,MCKESSON CORPORATION,H4400\nappliance sales,home depot,G4500\nInvestment Analyst,Fairview Capital,F0000\n\"VP, Legal Council\",\"Entrust, Inc.\",C5130\nHARRY & SMITH CONTRA,,Y4000\nANESTHESIOLO,UNIVERSITY OF OKLAHOMA,H1130\nHEMATRONIX INC,,Y4000\nPartner,Daley & George LLP,K1000\nAD-VANCE INC,,Y4000\nEXECUTIVE,ROCKWELL,M2300\nMANAGING DIRECTOR,D F KING,Y4000\nRecord Producer,Lost Art Records,Z9500\nPRESIDENT/CEO,MASENMEYER CONCRETE CO.,B5100\nANAHEIM CHAMBER OF COMMERCE,,G1100\nPRESIDENT,WISEDA CORP,G5270\nCEO,\"Bollinger Shipyards, Inc\",T6100\nPresident,ATCO Properties,Y4000\nMARILYN BERRY THOMPSON PARTNER,,K1000\nsalesman,Empire State Fibers and Yarns,M8000\nLODGING,HAWAII BEACH HOMES,B2000\nExecutive,\"Starwood Energy Group Global, LLC\",E1000\nComptroller,\"The Davis Group, Inc.\",Y4000\nVP & GEN. MANAG,BOUNE OF SOUTH BAND,Y4000\nAttorney,Hinkle Elkouri Law Firm LLC,K1000\nPHYSICIAN,GYN LTD,H1100\nPRESIDENT,AXIA,Y4000\nOWNER.,SELF-EMPLOYED,G0000\nattorney,\"Marchina & Graham, PA\",K1000\nDirector of Strategic Planning,Beacon Academy,Y4000\nResearch Analyst,Sanford C. Bernstein Co.,F2100\nChief of Staff,Unitedhealth Group,H3700\nEDITOR,HAMMOCK PUBLISHING INC.,J1200\nVP PROJE,JM FAMILY ENTERPRISES INC.,T2300\nSMALL BUSINESS OWNER,\"SPEED SYSTEMS, INC.\",M5100\nBest Eptors,Information Requested,Y4000\n\"MACY'S CALIFORNIA\",,G4300\nEXECUTIVE,FALA DIRECT MARKETING,G5280\nHuman Services Consultant,IHSM,Y4000\nanesthesiologist,Sheridan Health,J7120\nOffice Manager,Ouachita-Saline Survey,B4300\nDELANO FARM COMPANY,,A1000\nRJA INC,,Y4000\nOwner,Pacific Northwest Project,Y4000\nTOWN MANAGER,TOWN OF BURGAW,X3000\nREADING SPECIALIST,MORAGA SCHOOL,Y4000\nWHOLESALER,SELF-EMPLOYED,G3000\nLAFAYETTE BANK & TRUST,,F1100\nMCCRAE MEDICAL ASSC,,H0000\nBOWMAN & BROOKE,,Y4000\nDOCKING MASTER/PILOT,ALASKA GULF COAST INC,Y4000\nMEDICAL CARE MANAGEMENT,SELF,H0000\nPartner,Hanna & Scott,K1000\nSELF-EMPLOYED,VANFLEET MEDICAL,Y4000\nPARENTS ANONYMOUS,,H6000\nSTARDOT CONSULTING,,J1200\nManaging Director,UHY Advisors,F5100\nNON-PROFIT EMERGENCY SERVICE OF BEA,,Y4000\nIT Services Executive,Alliance Consulting,G5270\nGE INTERNATIONAL MEXICO,,M2300\nDEVELOPER AND INVESTOR,SELF,G0000\nLEDWELL ENTERPRISES,,Y4000\n\"artist, writer\",self,J1200\nTeacher,New York City Department Of Education,X3500\nAttorney/partner,Dinsmore & Shohl Llp,K1000\nPROGRAM ANALYST,U.S. DEPT. HOUSING AND LVING DEVELOPME,Y4000\nMANAGING DIRECTOR,PRIEHL@BAINCAPITAL.COM,J1200\nOwner/Operator,Crislip Glass Inc,Y4000\nEXECUTIVE,VALOR TELECOM,C4000\nCollections Agent,RCM Hawaii,Y4000\nSHAKLEE DIST,,H4200\nSO-MAR ENTERPRISES,,Y4000\nINVESTOR AND CONSULTA,SELF-EMPLOYED,F7000\nPRESIDENT,DAWSON ASSOCIATES,J1100\nPRESIDENT,MAIL SERVICES L. C,Y4000\nPartner and Co-Found,Novack & Macey LLP,K1000\nMGR-COMMUNICATIONS,AMEX TRAVEL RELATED SERVICES,F1400\nNurse,N Broward Hospital Dist,H2100\nC.E,WESTERN SOUTHERN LIFE INSURANCE,F3300\nACCOUNT EXECUTIVE,FAIRWAY OUTDOOR ADVERTISING LLC,G5230\nEngineering Management,Tektronix,C5000\nVice President,Markquest,Y4000\nCEO,SECURITY INDUSTRY ASSOCIATION,G5290\nFILM SOUND EDITOR,FREELANCE,C2400\nINVESTMENTS,NEW KENT CAPITAL,Y4000\nFERGUSON PERFORATING & WI,,Y4000\nRetired,CSUF OF FRESNO CA,J7400\nInsurance Business Owner,Self-Employed,F3100\nPIPER JAFFREY & HOPWOO,,Y4000\nU.S. NAVY (RETIRED),U.S. NAVY,X1200\nPRESCOTT BUSH & CO,,Y4000\nBOWLING GREEN ST UNIV,,H5100\nCEO,Telemus Solutions,Y4000\nResearcher,UIC,H5100\nBROKER,CENTURY 21 SOUTHWEST,Y4000\nOWNER,CRYSTAL TREE,Y4000\nBEHN AND MEWANZIE,,Y4000\nScientific & Techini,Scientist,X0000\nSr. V. P.,Wheat Government Relations,K2000\nPresident and CEO,\"Bankers' Bank of Kansas NA\",F1100\nACTRESS,CASTLE RICH PRODUCTIONS,J1200\nMiddle School Director,Park Day School,Y4000\nEXECUTIVE,GROSSMAN MARKETING GROUP,C1300\nATTORNEY,\"MCINTOSH, SAWRAN\",K1000\nGOODMAN LUMBER,,B5200\nOrthopaedic Surgeon,COSM,H1130\nDoctor,\"Laboratory Physicians, PA\",H1100\nVP & CITY MANGER,LIBERTY PROPERTY TRUST,F4100\nExecutive,FIRST PREMIER BANK,F1000\nPHYSICIAN,GRACE MEDICAL HOME,Y4000\nGENERAL MANAGER,BUCK KREIHS,G5600\nsubstitute teacher,San Francisco Friends School,Y4000\nCBS MANUFACTURING,,Y4000\nBuilder,Jones Brothers,B1000\nChief Operating Officer,Genesee and Wyoming,T5100\nATTORNEY,PETERSON & MYERS  P.A.,K1000\nSystems Analyst,Varian Medical Systems,H0000\nGovernment Relations Director,Arent Fox Kintner Plotkin & Kahn PLLC,K1000\nSTATE SENATOR,STATE OF MAINE,X3000\nPHARMACIST,SOONER PHARMACY,G4900\nCo-Founder and Manag,Maveron LLC,F2500\nHOME ATTENDANT SERVICES,,Y4000\nFinance,Crestview Capital,F2600\nVP-CFO,SANDMEYER STEEL,M2100\nPhysician,Clarksville ENT,H1130\nMALVERN SERVICES CORPORATION,,F4000\nPartner,Keystone,Y4000\nCONSULTANT,DOGPATCH STRATEGIES,Y4000\nCIVIC BANK OF COMMERCE,,J1100\nECKERT SEAMANS,,Y4000\n\"Dir., Human Resource\",\"Alcon Laboratories, Inc.\",H4000\nFinancial Analyst,Friedman Consulting,J5100\nMARKETING,SYSTEMS IN MOTION,Z9500\nRet,Hewlett-Packard,C5100\nDENTIST,EARL DENTAL SERVICES,H1400\nTREADWAYS MOVING AND STORAGE,,T3100\nOwner,Diagnostic X-ray Service inc.,Y4000\nDept of Health Services,Dept of Health Services,X3000\nSENIOR VICE,AMERICAN NATIONAL BANK,F1100\nASS GEN TAX COUNSE,EXXON MOBIL CORP,Z9500\n\"EVP, Global Marketing\",DeFi Mobile,Y4000\nOWNER,\"MR. ANTHONY'S INC.\",Y4000\nOPERATING CO,,Y4000\nBLUR CROSS & BLUE SHIELD,,F3200\nVICE PRESIDENT AND MANAGING PARTNER,DRAKELEY POOL COMPANY,Y4000\nGovernment Relations,Air Transport Association,T1100\nNEURO,CENTRAL IL NEURO HLTH SCIENCE,H1130\nInstructor,Edmonds Community College,H5100\nArchitect,Beckwith Arhitecture PC,B4200\nowner,Citadel Management,Y4000\nOWNER,ANDLAUR LLC,Y4000\nCONSULTANT,NUGGET CONSULTING INC,Y4000\nEXECUTIVE,GROWMARK,A4300\nBUSINESS EXECUTIVE,BGM INDUSTRIES,F4500\nLawyer,\"Lang, Xifaras & Bullard\",K1000\nVice President,\"PEPSICO, INC.\",G2600\nGEORGIA AG CHEM INC,,A4100\nSENIOR V,RAPPAHANNOCK NATIONAL BANK,F1100\nDOCTOR,MEDICAL GROUP PRACTICE,Y4000\nSTEPHEN PONTIAC CADILLAC,,T2300\nORTHOP,PARK NICOLLET HEALTH SYSTEMS,Y4000\nCHAIRMAN,LABONCO CORP.,Y4000\nPresident,Mortgage Investment Trust Co.,F4600\nVP-MERCHANDISE MANAGER,CASUAL MALE RETAIL GROUP,Y4000\nPHYSCIAN,\"CHERRY CREEK ALLERGY,  ASTHMA, AND IMM\",Y4000\nCHIEF EXECUTIVE OFFICER,\"INTELSAT, LTD.\",C4400\n\"BEALL'S STORES/RETAIL/OWNER\",,G4300\nJAMES N GRAY CO,,B4000\nBOOKKEEPER,KABEL BUSINESS SERVICES,Y4000\nTAX SLAVE,AB,Y4000\nInformation Requeste,\"Vermillion Gator Farm, Inc.\",A3000\nSHOW CIRCUIT MAGAZINE,SELF,C1100\nMANAGING PARTNER,NCT VENTURES LLC,Y4000\nMARKETING,FREESCALE SEMICONDUCTOR,C5110\nRESIDENTIAL BUIL,BRAPTIS HOMES INC.,B2000\nCEO,GEMINI INC.,J1100\n\"SACKS, TIERNEY, KASEN\",,K1000\nEXECUTIVE,KANSAS MEDICAL SOCIETY,H1100\nReal Estate Developm,\"Northland Enterprises, LLC\",F4100\nSYS PROGMMR/LD,UNITED PARCEL SERVICE INC.,T7100\nMedical Epidemiologist,CDC,X3000\nINDUSTRIAL SALES ANAD MF,,Y4000\nSMEDLEY FINANCIAL SERVICES INC,,F0000\nDONOGHUE BARRETT AND MCCUE,,K1000\nPRESIDENT,HALO DISTRIBUTING CO.,G2850\nATTORNEY,\"KASOWITZ, BENSON, TORRES, AND FRIEDMAN\",K1000\nPresident & COO,Ugi Corporation,E1140\nCONSULTANT,JA ADVERTISING SERVICES,G5210\nManaging Director,Harris Rand Lusk,Y4000\nPRESIDENT,TRUSTMARK BANK,F1000\nOPTIMA HEALTH,,Y4000\nWILBOR CHOCOLATE CO,,G2200\nHR D,\"ODOM'S TENNESSEE PRIDE SAUSAGE\",G2300\nCEO,\"PROPEL SOFTWARE, INC.\",C5130\nATTORNEY,\"BROWNSTEIN HYATT FARBER SCHRECK, LLP\",J7400\nPRESIDENT,IN STREAM MEDIA,Y4000\nSURGEON,CU SCHOOL OF MEDICINE AND DENVER VAMC,H5150\n\"WELLS' DAIR INC\",,A2000\nPRESIDENT,JURGAN DEVELOPMENT & MANUFACTURING,Y4000\nFULBRIGHT & JAWORSKI LLP,,J1100\nConstruction,THE DE MOSS COMPANY,Y4000\nContractor,\"D'Annunzio & Sons Inc.\",B1000\nLUMBER INVESTMENTS,,A5000\n,CHARLSON & WILSON INSURANCE AGENCY,J9000\nAccountant,Kpmg,J1200\nSenior VP of Busines,Pure Earth,Y4000\nPARTNER,SS + K,G5210\nAttorney,williams & connolly llp,K1100\nCEO,BENZ OIL INC,E1100\nLANGDALE FORD,,T2300\nFROST,WHEELER,Y4000\nPresident - Regulato,BellSouth Corporation,C4100\nMOUNTAIN EMS INC,,Y4000\nManaging Director,\"KPMG Consulting, Inc.\",G5200\nAttorney,\"Davidson & O'Mara\",J1100\nPresident & CEO B&V Water,Black & Veatch,B4000\nSUN HYDRAULICS CORP,,Y4000\nTHE BALLON INC,,Y4000\nInvestment Banker,Sheffield Merchant Banking,Y4000\nLEADER MORTGAGE COMPANY,,F4600\nMCKAY PECAN GROVE APTS,,F4500\nCONTRACTOR,GAINES AND COMPANY,B1000\nHEMBORGER CONSTRUCTION,,B1500\nDERMATOLOGIST,SKINCARE PHYSICIANS OF FAIRFIELD COUNT,H1130\nCEO,AZNA CORPORATION,M9000\nCEO,COG OPERATING,Y4000\nTECHNOLOGY EDUCAITION COLLEGE,,H5200\nATTOR,\"OGLSTREE, DEAKINS, NASH AT AL\",K1000\nOWNER,FORD BAWN DAVIS LLC,Y4000\nSALES,MOHAWK INDUTRIES,J1100\nVPresident BusUnitSuppport,Pharmacia & Upjohn Company,H4300\nManaging Director,Bread Ltd.,G2100\nExecutive Vice President,Simmons First National Bank,F1100\nVice President Physician Services,St Joseph Mercy Hospital,H2100\nINTERIOR DESIGN,\"JANET SIMON, INC.\",Y4000\nMgr,LPNH,Y4000\nNurse,Dr Morton Kasden,Y4000\nCHIEF OPERATING OFFICER,THE ROSS GROUP,Y4000\nOwner,Newport Painting & Decorating,B3000\n\"Consultant, Attorney\",Palo Alto Economics,Y4000\nExecutive,National Seating & Mobility,Y4000\nPhysician,Thomas f Cahill md ltd,H1100\nROYAL PACKING,,A1400\nFIRST AMER TITLE INSURANCE CO,,F4300\nInformation Requested,Institute for Advanced Study,J1200\nAttorney,Self employeed,K1000\nCALIFORNIA LITHO ARTS/PRESIDENT/CEO,,C1300\nNURSERY MAN,HINSDALE NURSERIES,A8000\nAttorney,Lewitt & Engel,K1000\n\"ST LUKE'S\",,Y4000\nMINE SUPERINTENDENT,ROSEBUD MINING/MINE SUPERINTENDENT,E1200\nMassage Therapist,Living Health,Y4000\nInvestor,August Capital LLC,F2500\nMCQUEENY DAVIS KOHM & PAR,,Y4000\nELECTRONIC DISTRIBUTOR,THOMAS TRIEU,Y4000\nBARTLETT & COX CONSTR,,B1500\nVP OF REHAB,WAR MEMORIAL HOSPITAL,H2100\nMANUFACTURING/MARKETING,\"TCGO HOLDINGS, INC.\",Z9500\nBUSINESS MANAGER,THE NORDIC GROUP OF COMPANIES,Y4000\nVice President,Deutsche Bank,F1100\nPRAIRIE MEADOWS,SR. VICE PRESIDENT OF OPERATIONS/COO,Y4000\nUNIV TEXAS MD ANDERSON CANCER,,H2100\nLGBT STEERIING AND H,KORSAN MGMT SERVICES,Y4000\nAdjunct Professor/Co,Ashland University,H5100\nOWNER,ROSE & MOSER & ALLYN PUBLIC & ONLINE R,G5210\nProfessor of Physics,Trinity University,H5100\nDirector Of Internat,Mead Westvaco Corp.,M7100\nManufacturing,Flynn Enterprises,F2500\nPRESIDENT,LIMBAUGH TOYOTA INC,T2300\nATTORNEY,\"GOLDSMITH CTORIDES & RODRIGUEZ, LLP\",K1000\nENRON TRANSWESTERN PIPELI NE C,,E1140\nINVESTMENT ADVISOR,WURSHAN RETIREMENT GROUP INC.,Y4000\nInformation Requested,Information Requested,E1110\nRetired Colonel,US Air Force,J1200\nAttorney,Kolesar & Leatham Chtd,Y4000\nBANC ONE OKLAHOMA CORP,,F1100\nOwner,\"King-Mesa, Inc.\",G1100\nPROGRAMMER,\"CORAID, INC\",Z9500\nOperations Manager,Automated Waste Disposal Inc.,E3000\nYINGLING-MAUZY AGENCY INC,,F3100\nAMELCO ELECTRIC,,B3200\n\"INT'L RACEWAY PARKS\",,G6500\nPHARMACIST,MCCOY AND TYGART DRUGS,G4900\nREAL ESTATE,MAYNE & CO REAL ESTATE,F4000\nSENIOR VP AND CFO,PNM RESOURCES,E1600\nREHABILITATION PSYCHOLOGIST,SELF,Z9500\nMarquette General Health System,,J7150\nP,ORTHOPAEDIC AND SPINE SPECIALISTS,H1130\nCEO,The Hamner Institutes,Y4000\nPRESIDENT,MULTI-CARE MANAGEMENT/PRESIDEN,G5270\nHUBERT DISTRIBUTION,,Y4000\nENERGY,ENTERGY SERVICES INC.,E1620\nINVESTMENT MANAGER,PARKER CARLSON AND JOHNSON,Y4000\nVICE PRESIDENT,PITT GRILL,G2900\nPRIVATE EQUITY,\"BAIN CAPITAL, LLC\",F2600\nPHYSICIAN,U.T.M.C.,Y4000\nLAW PROFESSOR,GEORGETOWN LAW SCHOOL/LAW PROFESSOR,H5170\nDIR OVERSIGHT,,E1620\nCASTLE ROC,FILM PRODUCER & DIRECTOR,C2400\nAYCOCK PONTIAC INC,,T2300\nReg. Dir. of Operations,\"Genesis Health Ventures, Inc.\",H2200\nRetail Sales,\"Macksood's Inc\",Y4000\nMANAGER,PAPER THERMOMETER CO,Y4000\nEVP/COO,SCOTT-MCRAE GROUP,T2300\nTrading Executive,JPMorgan Chase Bank,F1100\nCommunications Consultant,\"White House Writers Group, Inc\",C1100\n\"LAWYER, LAW PROFESSOR\",JOHN MARSHALL LAW SC,H5170\nPhysician,Sfv Pulm. Med. Grp.,Y4000\nMORGANTOWN CHAMBER OF COMMERCE,,G1100\nBLAIR MILLS INC,,M8000\nOwner,\"Dupre Transport, L.L.C.\",Y4000\nRETIRED,LRF SLATER COMPANIES/RETIRED,F4000\nNCEOA,,Y4000\nPresident & CEO,Farrel Corporation,Y4000\nAttorney,Occidental Pelvorleu,E1110\nCEO,Maryland Aggregates Association,B5100\nCFO,Shah Capital Partners,Y4000\nBELLEFONTE LIME,,B5000\nWALLACE CRAIG & ASSOCIATES,,Y4000\nCARNEGIE CENTER ASSOCIATES,,Y4000\nCONSULTANT,INTL LAWYER,Y4000\n\"BASINGER'S PHARMACY\",,G4900\nASSOCIA,\"EDINGTON, PEEL & ASSOCIATES\",K2000\nINVES,DAVIDSON CORPORATE MANAGEMENT,F7000\nARTIST/INVESTOR,SELF-EMPLOYED,X0000\nENGIN,BOEING SATELLITE SYSTEMS INC.,D2000\nPhysician,George Fischmann,Y4000\nOHIO CONTRACTORS ASSOC,,Y4000\nEXECUTIVE,WINTERTHUR NORTH AMERICA,F3100\nATTORNEY,DENENA & POINTS; PC,J1200\nLIBRARIAN/MEDIA SPCLIST,WASHINGTON TOWNSHIP M S D,L1300\nAttorney,\"Borland & Borland, P.C.\",K1000\nExecutive,\"Hagerty, Peterson & Co., LLC\",Y4000\nOrthopaedic Surgeon,NY LIJ Health System,H1130\nPARTNER,CIBC WORLD MARKETS,F2100\nSTAFF ACCOUNTANT,FISHER COMMUNICATIONS/STAFF ACCOUNT,Y4000\nDoctor,Seton Center Good Samaritan Hosp,Y4000\nTHE DICKEY-GRABLER CO,,M5000\nVideo Production,AKA Media Inc,Y4000\nENTREPRENEUR,OFFSHORE ENGAGEMENT LLC,Y4000\nPRESIDENT,POMOCO GROUP,Y4000\nATTORNEY,DAVIS AND ASSOCIATES,K1000\nBank CEO,Union Bank,F1000\nGOVERNANCE OFFICER,ACXIOM,C5130\nLt NC USN,Retired,X1200\nEXECUTIVE,GENERAL MOTOR,T2100\n\"VICE PRESIDENT, INDUSTRY RELATIONS\",IMS HEALTH,G4900\nSinger/ Teacher,Self employed,C2600\nCRUZ DEVERS ASSOCIATES,,Y4000\nCRNA,South Central Anesthia LTD,Y4000\nFood Broker,Self,Y4000\nLANE AMBULANCE,,H3000\nOwner,Holiday Bowling Ctr.,Y4000\nDIRECTOR OF SALES,HORNADY MANUFACTURING COMPANY,J6200\nOLIVIER & STEIDLEY,,Y4000\nBERKSHIRE ASSET MANAGEMENT,,Y4000\nDirector,NY State Division of Criminal Justice,X3200\n\"WHITEHURST, HARKNESS, OZMAN & BREES\",,K1000\nOWNER,\"ROD'S WELDING AND REBUILDING\",E1210\nATTORNEY,UNIVERSAL TELEVISION/ATTORNEY,C2000\nPRESIDENT & CO,PENN NATIONAL GAMING,G6500\nAttorney,CapGemini,G5270\nPresident,Ascendant Compliance Management,Y4000\nMANAGER,\"P.O.&G. RESOURCES, LP\",J1100\nRetired engineer,Federal government,J7400\nBANKER,NORTH VALLEY BANK,F1200\nSIVE GROUP,,Y4000\nPresident,\"VHA GulfStates, Inc.\",Y4000\nCHAPIN & BANGS,,Y4000\nFILM PRODUCER,NEW MEDIA MAGIC LLC,J1200\nAdministrative Assistant,MIT Alumni Association,H5100\nCHEMICAL DEPENDENCY TECHNICIAN,MISSION INC.,J1200\nTHE SEGERDAHL CORPORATION,,C1300\nCROWELL CONSTRUCT,,B1500\nPresident / CEO,Whiting Management Resources,Y4000\nREAL ESTATE INVESTOR,JENKINS CAPITAL,Y4000\nSALEM SURGE SOCCER,,G6400\nOPTO,PACIFIC CATARACT & LASTER INST,Y4000\nOWNE,HEAVEN DRAGON CHINESE RESTRANT,Y4000\nMGR INTERPLAN PROGMS MKT SUP,BLUE CROSS BLUE SHIELD OF NE,F3200\nmanager,IMP Fishing Gear,Y4000\nWILSON CONTRACTOR INC,,Y4000\nPRESIDENT - CEO,\"SENIORCARE, INC\",H2200\nCHIEF DEVELOPMEN,SYMBION HEALTHCARE,H0000\nINSURANCE,JR KATZ,Y4000\nPRESIDENT/CHIEF EXECUTIVE OFFICER,PANHANDLE STATE BANK,F1100\nINVESTMENT MANAGEMENT CONSULTANT,MORGAN STANLEY,F2300\nINSURANCE BRO,FIRST INSURANCE GROUP,F3000\nTHOMAS MCGEE L C,,Y4000\nDEVELOPER,YATES CONSTRUCTION,B1500\nDR. OF A,AUDIOLOGY & HEARING CENTER,H1700\nASSOC,THE UNIVERSITY OF MISSISSIPPI,H5100\nINFO REQUESTED,CENTRAL CAROLINA PRIMARY CARE,Y4000\nOrthopaedic Surgeon,Univ of Kentucky Healthcare,H1130\nBOARD OF DIRECTORS,TRUSTMARK INSURANCE,F3100\nFINE & ASSOCIATES INTERNAL MEDICINE,,H1100\nTRAVEL DIRECTOR,GORE 2000,J1200\nService Contractor,Self,G5000\nLawyer,NMH,Y4000\nAUDIOLOGIST,AVA HEARING CENTER,H1700\nPRESIDENT,K HOVNANIAN HOMES,B2000\nAttorney,The Law Office of Edward Doheny,K1000\nARCO ALLOYS CORPORATION,,M2200\nADMINISTRAT,\"SENTARA HEALTHCARE, INC\",H0000\nDealer,Apple Chevrolet Inc,T2300\nPSYCHIATRIST,VA/PSYCHIATRIST,H1110\nHMO VA,,F3200\nInvestor - Venture C,Kettle Partners,J5100\nMEMPHIS FAMILY VISION,,Y4000\nKHON,,C2100\nHARDY & CAREY L L C,,Y4000\nGovt & Public Relations Specialist,Robert M Levy & Assc,J5100\nSelf-Employed/Art Patron,,Z4200\nPHYSICIAN,\"CEMG, INC\",Z9500\nVice President,Insight Business,C2200\nCONTRACTOR,SCHETHER ELECTRIC,Y4000\nLITERARY AGENT,\"SAVAGE TRICHTER INK, INC.\",Z9500\nATTORN,CAREER EDUCATION CORPORATION,H5300\nRetired,N/A,M4100\nACCOUNTA,VIRCHOW KRAUS & CO. L.L.P.,Y4000\nBUSINESS CAPITAL EVP,\"PEOPLE'S UNITED BANK\",F1200\nTeacher,Wesleyan School,H5100\nCEO,COHEN FINANCIAL,F0000\nEconomist,US House of Reps - Energy and Comm,M4000\nRESEARCH PHYSCIAN,SELF,Y4000\nSenior Vice Presiden,CommScope Inc.,C2200\nINFO REQUESTED,BINARY LINK,Y4000\nProduct Development,Visteon Corporation,T2200\nCEO,Contential Materials Corp,Y4000\nPRESIDENT,JOHN CIVETLA & SONS,Y4000\nBRESLAUER RUTMAN,,F5000\nPRESIDENT &,VALLEY INDEPENDENT BANK,F1100\nASSOCIATE,CAMBRIDGE UNIVERSITY,H5100\nOwner,Hogue Corp,M4100\n\"Ambric, Inc.\",,Y4000\nATTORNEY,MITCHELL WILLIAMS SELIG,K1000\n\"Partner, Government Relations\",The Ferguson Group,K2000\nNATIONAL QUA,SPECTRUM EXCHANGE CORP,Y4000\nConsultant,Appliacnce Assoc.,Y4000\nPRESIDENT,SCUBA & ARCHERY CENTER,Y4000\nCEO,POH REGIONAL MEDICAL CTR.,H2100\nUX STORYTELLER,AIRBNB,Z9500\nFINANCIAL,PRUDENTIAL FINANCIAL INC.,F3300\nP & K COAL CO LTD,,E1210\nSIEBEN POLK LAVERDIERE JONE,,K1000\nPRINCIPAL,BGR GOVERNEMENT AFFAIRS LLC,K2000\nCONSULTANT,DAN TATE LLC,K1000\nDoctor,Sage Memorial Hospital,H2100\nPRESIDENT,COLT ENERGY INC./PRESIDENT,E1100\nOWNER,CITY TIRE SVC.,Y4000\nVP,\"Eastern Computers, Inc.\",Y4000\nATTORNEY,\"MANLEY, BURKE, LIPTON & COOK/ATTORN\",K1000\nMerchant Banker,self,Z9500\nDISTINGUISH TECHNOLOGIST,HP,C5100\nBROADCAST EXECUTIVE,LOCALTVLLC.COM,Y4000\nPrincipal,SVE School District,Z9500\nCONSTRUCTION,ROSECRANS INTERESTS LTD.,Y4000\nPRESIDENT,HORIZON SYSTEMS MACHINING,Y4000\nACCOUNTAN,CONSTRUCTORA POMALES INC.,B1500\nPresident,Du Mond Inc.,F4000\nCUSTODIAN,CITY OF LANCASTER,X3000\nRCM CAPITAL,,Y4000\nINSTRUCTIONAL DESIGNER,SELF-EMPLOYED,Z9500\nOwner,\"William Bowman Associates, Inc\",Y4000\nKAGAN-EDELMAN PROPERTIES,,F4100\nCourt Attorney,State of New York,X3000\nInformation Requeste,stone canyon distributio,G0000\nEXECUTIVE DIRECTOR,\"ON YOUR MARK, INC.\",Y4000\nPRESIDEN,AMERICAN FUEL DISTRIBUTORS,Y4000\nPUBLISHER,LTB MEDIA,Y4000\nFINANCIAL AD,KEATING AND ASSOCIATES,Y4000\nowner,Venus de Milo,Y4000\nEXECUTIVE,LAMAR ADVERTISING,G5230\nEDUCATION,UNI. OF PITTS.,H5100\nGEN. MGMT.,TALEO CORPORATION,Y4000\nTEACHER,YPSILANTI PUBLIC SCHOOLS,X3500\nGOVERNMENT RELATIONS,GSK,Y4000\nChairman,American Household,M4300\nProf,Stoney bro,Y4000\nEXECUTIV,UTILITY PIPE SALES CO INC.,Y4000\nVICE PRESIDENT,ARINC,B4400\nBusinessman,\"Mendez & Company, Inc.\",Y4000\nMother,Self-employed,J7400\n\"Physician, Health Care Administration\",Promedia Health Systems,Y4000\nAttorney/Investor,Self,K1000\nREAL ESTATE BROKER,WYATT REALTY COMPANY,F4200\nMEDALIE CONSULTANTS,,J7400\nMCCORMICK GROUP INC,,Y4000\nRETRIRED,NONE,X1200\nPRESIDENT,PALADIN BRANDS,Y4000\nSecurities Analyst,Baron Capital,G0000\nDoctor,Rocky Mountain Med. Imaging,Y4000\nHONIGMAN MILLER,,Y4000\nPresident,Kennebec Tool & Die,M5000\nOffice Manager,Arnold D. Fagin PC,Y4000\nMEYER ENGRS LTD,,B4200\nFLORIDA DISTILLERS COMPAN,,G2820\nATTORNEY,JACKSON LEWIS LLP,K2000\nBUSINESS OWNER,\"BOB'S BURGERS & BREW\",G2900\nADMINISTRATOR,ANTIOCH CONV. HOSPITAL,H2100\nHALIFAX COMMUNITY COLLEGE,,H5100\nExecutive,\"Telephone and Data Systems, Inc\",C4100\nComputer programmer,Main Line Corp.,J1200\nFLIGHT ATTENDANT,DELTA AIRLINE,T1100\nAttorney,Pepee Rudolph LLP,Y4000\nGREEN SPRING HEALTH SVC,,H3700\nBUSINESS,CROSCALL INC.,Y4000\nGovernment Affairs / Lobbyist,\"CG Consulting Group, Inc\",Y4000\nMusician,Self employed,G0000\nCAUCH WHITE LLP,,K1000\nLG&E,,E1620\nTHE WEAVER BROTHERS COMPANY,,Y4000\nLITIGATION SUPPORT SPECIALIST,MUNGER TOLLES & OLSON LLP,K1000\nGOLDSMITH,WINDSOR JEWEL,Y4000\nC. E. O.,XODE,Y4000\nExecutive VP,Colonial Bank,F1000\nCHATFIELD DEAN,,Y4000\nFRESNO UNIFIED SCHOOLS,,X3500\nSchool Teacher,Clovis Unified School District,X3500\nFIDUCCIA & CO INC,,B2000\nEKAS INC,,Y4000\nREAL ESTATE,ISC PROPERTIES,F4000\nLEGAL-WILMINGTON,,F1400\nFIRST BRISTOL CORP,,Y4000\nOWNER,BACKYARD BURGERS,G2900\nRICHERT & ASSOCIATES,,Y4000\nMETAL CERAMICS,,M5000\nATT,LASER POKORNY SCHWARTZ FRIEDMAN,K1000\nATTORNEY,GRAND PASS MANAGEMENT INC.,Y4000\nCADBURY NORTH AMERICA INC,DR PEPPER,G2600\nSOFTWARE DEVELOPER,HUMANSTUFF,Y4000\nUNIVERSAC PROJECTS INC,,Y4000\nCHAPLAIN,\"NYC SHERIFF'S OFFICE\",Y4000\nSOUTHEASTERN ELECTRONIC,,Y4000\nChief Executive Offi,Kdi Stoneworks,B5100\nPrincipal,Hygrade Business Group,Y4000\nSENIOR VICE PRESIDENT,NYCOMED,H4300\nOWNER,BEACHTOWN GALVESTON CORP,J5000\nELECTRONICS,U.S. DEPT. OF COMMERCE,X3000\nDAIRY FARMER,AGHALOMA FARM,A1000\nPT ASST TO SUPT PERSONNEL,GLEN CORE SCHOOLS,X3500\nASHER & ASHER,,F5100\nCPA,Blumenson Associates,Y4000\nManaging Partner,Bluesten Asset Management,Y4000\nPartner,Wilest Investment Partners,F7000\nRetail,\"Weil's Inc\",Y4000\nAuto Dealer,Thorstad Chevrolet,J7400\nPOLI,SALT RIVER PIMA MARICOPA INDIA,Y0000\nATTORNEY,MARTIN & DROUGHT PC,Y4000\nA,\"SAVAGE, ELLIOTT, HOULIHAN & MOORE\",K1000\nPhysician Asst.,County of Monterey,Y4000\nWOW DISTRIBUTING CO./VP/OWNER,,Y4000\nPACIFIC HOLDINGS CORP,,F4000\nChairman of the Board,First National Bank of Illinois,F1100\nTRAVEL AGENT,SCANDIA WORLD TRAVEL,Y4000\nLAND DEVELOPER,J.H. UPTMORE,Y4000\nENTERCOM COMMINICATIONS CORPORATION,,C2100\nADVERTISING,RED STAR OUTDOOR,Y4000\nINDEPENDENT OIL OPERATOR,NORTHSTAR OPERATING COMPANY/INDEPEN,Y4000\nJ SACHS AND ASSOCIATES,,G5200\nPresident & CEO,The Carmen Group,K2000\nWriter Producer Hous,Paramont,Y4000\nComputer Consultant,Erie County,X3000\nPARTNER,WIRED WORLD,Y4000\nOWNER,MARIAN GARDENS,Y4000\nPartner,Butera and Andrews,F4600\nCEO,Spanpro Fiber Optics,Y4000\nFinancial advisor,AFM,Y4000\nConsultant,Vsi,Y4000\nATTORNEY,BAKER BOTTS LLP/ATTORNEY,K1000\nDIRECTOR,\"CARS & BOATS, INC.\",Y4000\nPIZAZZ-PRINTING,,C1300\nRIUKIN & RADLER,,K2100\nSOFTWARE ENGINEER,JHU/APL,H5100\nGovernment Relations,Williams & Jensen Company,K2000\nPRESIDENT,OCI INSTRUMENTS INC.,Y4000\nCEO,\"LTE, Inc.\",Y4000\nNew Home Consultant,Lennar Homes,B2000\nManagingDirector,Hess Energy Trading Co.,E1600\nPrivate Equity Investor,Parthenon Capital,F0000\nGIBBONS DELDEC,,Y4000\n\"ROY'S AZ PHARMACY\",,G4900\nreal estate represen,RE/MAX Premiere Properties,Y4000\nOWNER,\"CHRISTY'S MARKETS\",G2400\nState General Agent,Eric J. Giglione Assoc.,Y4000\nCONSTRUCTION,MOSS AND ASSOCIATES,Y4000\nSCF MARINE INC,,Y4000\nPRODUCT MANAGER,GENESYS,J1100\nMember - Owner,Ko-kaua Ohana LLC,Y4000\nCo-Founder,Edesia,Y4000\nMESORAH PUBLICATIONS,,C1100\nExecutive,Micro Nova,Y4000\nVICE PRESIDENT OF,LIFETIME NETWORKS,Y4000\nVice Chairman,KLIPSCH AUDIO TECHNOLOGIES,C5000\nBanker,Bank OF AMerica,Z9500\nhomemaker,n/a,T2300\nInformation Requested Per Best Efforts,EDENS BANK,F1000\nGeneral Manager,\"Taylor Communications, Inc\",Y4000\nUNIV OF PA,,J5100\nGILA PEDIATRICS,,H1130\nREAL E,DOMAIN REAL EST SERVICES INC,F4200\nPRESIDENT,LRI INC.,K2000\nInfo requested,Retired,Z9500\nReal Estate Broker,Gva Williams,F4200\nSENIOR ADVISOR,ABENGOA SOLAR,Y4000\nMCHENRY POLE PLANT,,Y4000\nCHIEF MANAGIN,CLARITY RESOURCES LLC,Y4000\nCHURCH INSURANCE,,F3100\nChairman and CEO,Permal Asset Management Inc,F2100\nOWNER,BEN SARGENT PAINTING AND DECORATING,B3000\nVP OF ACQUISITION & DEVELOPMENT,HALLKEEN MANAGEMENT,Y4000\nENGINEER,HERMAN HILL & ASSOCIATES,Y4000\nCOMMUNITY LEADER,SELF EMPLOYED,Y3000\nPRESIDENT,BEST PETROLEUM,E1170\nBUSINESSWOMAN,NORTH AMERICAN SITE DEVELOPERS,Y4000\nPHYSICIS,UNIVERSITY OF PENNSYLVANIA,H2100\nVenture Capitalist,Alliance Technology Ventures,Y4000\nAccountant,Kinder Morgan Energy Partners,E1140\nDeputy Mayor,City of La-Office of the Mayor,X3000\nstudent,Stanford University,Y1000\nELECTRICAL CONTRACTORS,,B3200\nVICE PRESIDENT,\"FIBERGATE, INC.\",J7500\nMAURIZIO CUSTOM TAILORS,,Y4000\nSUB-CONTRAC,KEENAN DEV.ASSOC. OF TN,Y4000\nDoctor,Ozark Chiropractic Arts,H1500\nKARPEL COMPUTERS,,Y4000\nAssociation Executiv,Pennsylvania Restaurant Asssociation,G2900\nATTORNEY,CASSIDY C FRITZ P.C.,K1000\nCPA,OTILLIO CPA,F5100\nGeneral Manger,Aberson Narotzky & White,Y4000\nManager,Oak Tree Internal Medicine Pc,H1130\nPRESIDENT,GIDEON CONSTRUCTION,B1500\nPublisher,Eastern Colorado News,Y4000\nOW,ADVANCED RESTORATION CORPORATION,Y4000\nREAL ESTATE,THE DISCOVERY GROUP,F2500\nPUBLISHER,BULLETIN OF THE ATOMIC SCIENTISTS/P,Y4000\nGALLERY OWN,ANTHONY MEIER FINE ARTS,Y4000\nCreative Director,McFarlin Group,Y4000\nCAPTIVA RESURCES,,F5100\nRequested,Requested,F1420\nProducer,Reprise Theatre Company,J1200\nPhysician-Scientist,\"National Institutes of Health, HHS\",X3000\nFARMER FACTORY W,JOHN DEERE TRACTOR,A4200\nUniversity Professor,Straford,Y4000\nWORKER,SEWING CLOTHING CO.,Y4000\nSORTER OPERATOR,FISERV INC,F1000\nCLOSE JENSON MILLER,,B4400\nSpecial Assistant,US Army,X5000\nSELF EMPLOYED,AVENTURA LIMOUSINE SERV,Y4000\nOwner,Bedazzled,Z9500\nCOO,Tribeca Enterprises,C2000\nDIRECTOR,FEDERATED GROUP,Y4000\nC T S,,T3100\nFOUNDER,BRAZILE & ASSOCIATES LLC,Y4000\nPRESIDENT & CEO,SPECTRUM STORES,Y4000\nACCOUNTANT,INTERFAITH HOSPITALITY NETWORK OF WASH,Y4000\nLONGWOOD,,Y4000\nCHIEF FINANCIAL OFFICER/VICE PRESIDENT,INFO REQUESTED,Y4000\nATTORNEY,ST LOUIS UNIVERSITY,H5100\nInvestment Manager,Quest International Management Co.,F2500\nPresident/CEO,Lamarque Motor Company,T2300\nPRESIDENT,\"ATLAS ENERGY MICHIGAN, LLC\",E1000\nLUNDAHL FAMILY ASSOCIATES,,Y4000\nMENOCO COMPANY,,Y4000\nSystems Operations &,UGI PENN NATURAL GAS,E1140\nBOSTON HARBOR ASSOCIATES,,Y4000\nLEGGAT MCCALL PROPERTIES,,J1100\nBOYETTE MORGAN MILLAR ET AL,,K1000\nTECHNOLOGY DIRECTOR,EOF RENEWABLE ENERGY,Y4000\nEDINA,REALTOR,F4200\nSTORE MANAGER,BERGMAN LUGGAGE/STORE MANAGER,Y4000\nEAGLE INSUR GROUP,,F3100\nPresident / Owner,\"H.J. MARTIN & SON, INC.\",B3000\nRN - Director of Penn Nu,University of Pennsylvan,H5100\nUNIVERSITY OF NORTH CAROLINA AT CH,,H5100\nLobbyist,\"D.C.I. Group, L.L.P.\",K2000\nANDERSON CIRCLE FARM,,Y4000\nMARKRIOT ENGINEERS INC,,B4400\nJACK WILLIAMS ASSOCIATES,,A2300\nROBERTS-BOICE PAPER CO,,A5200\nUNIV MD AT BALT,,H5100\nBUSINESS,RALPH SKTAR AND ASSOCIATES,Y4000\nDIRECTOR,PHILIP MORRIS INTER.,A1300\nSTATE A,OREGON DEPT. HUMAN SERVICES,J1200\nDIRECTOR,EQUINIX,Y4000\nREAL ESTATE,LIMESTONE ASSOCIATES,B5100\nTherapist,Middlesex School,Z9500\n\"B J'S PRESSURE WASHING\",,Y4000\nNONE,NOT EMPLOYED,F3100\nSEA-LAND CORPORATION,,T6200\nRETINA ASSOC OF,,H1120\nDIRECTOR,MURPHY BROWN LLCQ,G2300\nLobbyist,Latham/Watkins,K1000\nAttorney,\"Laird Ozmon, LTD.\",K1000\nDirector,Navstar Inc,Y4000\nowner,Morenergy Exploration Company,E1000\nHOSTESS,DUKES AT MALIBU,Y4000\nAttorney/Doctor,Self empoloyed,K1000\nEVP & CFO,MGM RESORTS INTERNATIONAL,G6500\nOWEN ELECTRIC SUPPLY INC./MANAGER/,,B5500\nlawyer,mcdermott will  amp; emery,K1200\nAMERICAN AGRICULTURE,,Y4000\nDEALER,NESMITH CHEVROLET,T2300\nREAL ESTATE DEVELOPER,THE RUNNYMEDE CORPORATION,Y4000\nEXEC,GARDEN STATE PHARACY OWNERS AS,Y4000\nARCATA ASSOCIATES INC,,C5000\nATTORNEY,GRIPPO  ELDEN,K1000\nDeveloper,River Ranch Development Co.,F4100\nINNER ASIA EXPEDITION,,J7400\nSupervisor,Unicco Corp.,Y4000\nCYPRESS TRAVEL CENTER,,T9400\nOwner-Bail Bonds,John Chisom Company,Y4000\nDIRECTOR,AAVIN EQUITY PARTNERS L.P.,F2500\nPARTNER,HOLLAND & KNIGHT/PARTNER,J7400\nInformation Requested,Buening Implement Inc,J2200\nPROCO MANUFACTURING CO,,G1200\nPRESIDENT,THE EUROPEAN INSTITUTE/PRESIDENT,Y4000\nDEAN SCHOOL OF MA,BOSTON UNIVERSITY,H5100\nAssistant VP,Equity Residential,F4100\nKENNEDY RICE DRYERS INC,,A4000\nGovernment Official,Department Of Commerce,X3000\nATTOR,RICHARD A. KAYNE & ASSOCIATES,K1000\nPRES,RESOURCE MOBILIZATION ADVISORS,Y4000\nsecurities,Raymond James Financial,F2100\nBUSINESS MANAGER,LOCAL UNION 528,LB100\nREGIONAL ACCOUNT MA,HERMES OF PARIS,Y4000\nFUNDRAISER,CHILDRENS RADIO FOUNDATIO/FUNDRAISE,Y4000\nReal Estate Broker,Magic Properties and Inv,F4200\nProfessor,Carnegie Mellon,H5100\nREILY CO,,Y4000\nMortgage Banker,Primelending A Plainscapital C,Y4000\nPROGRAMMER,K-FORCE,G5250\nEmergency Physicians,Western New Mexico Emergency Physician,Y4000\nAUDIOLOGIST,3M,M2300\nRADIATION ONC,BLUE RIDGE HEALTHCARE,H1130\nOwner,Pappas Associates,Y4000\nINFO REQUESTED,HORIZON MANAGEMENT GROUP,Y4000\nTrader,Wachovia Securities,F2100\nDental Consultant,Self,H1400\nAttorney,Scherffius Ballard Still & Ayres,K1000\n13171,,A1300\nPSYCHOLOGIST,Information Requested,H1110\nGLADWYNE CO,,Y4000\nFALALLON CAP,,Y4000\n\"BARKER'S PUMP & MACHINE\",,Y4000\nAnesthesiologist,University Anesthesia Associates,H1130\nCHIROPRAC,BAKKE CHIROPRACTIC CENTER,H1500\nExecutive Director,Light Rail Now,Y4000\nBUSINESSMAN,DATA MINING SERVICE,Y4000\nATTORNEY,\"WACHTEL.. LIPTON, ROSEN & KATZ\",Z9500\nOWNER,GRUB GROUPIE LLC,Y4000\nDBL,,J7400\nBRAUN & STEIDL ARCHTS INC,,B4200\nCHUBB,,F3400\nGEOPHYSICIST,WPX ENERGY,E1120\nRETIRED,CLINICAL PSYCHOLOGIST/RETIRED,X1200\nJOHNSON CONTROLLERS,,T2200\nPRESIDENT,WISCONSIN TITLE INC.,F4300\nC,WISAN SMITH RACKER & PRESCOTT LLP,J7700\nVICE PRESIDENT - COMMUNICATION,AMERICAN INSURANCE ASSOCIATION,J7400\nOwner,Peter Platten Properties,F4000\nPRESIDENT & C E.O.,E. M. DUGGAN INC.,Y4000\nPresident,JT Hwang Enterprises,Y4000\nFINANCIAL,ATTORNEY FINANCIAL GROUP,K1000\nAdministrator,New Beginnings Community Living Home,H2200\nATTORNEY,\"MUNGER CHADWICK, PLC.\",K1000\nREAL ES,\"BAKER DENNARD & GOETZ, INC.\",F4100\nVENTURE CAPITAL,USVP,J5100\nATTORNEY,MAYER BROWN & PLATT,K1200\nEXECUTIVE VICE PRESIDENT,JANNEY MONTGOMERY SCOTT,F2600\nCOMMERCIAL AGENT,\"SPECIAL ARTISTS AGENCY, INC\",Y4000\nOWNE,UNITED AMERICAN ELECTION SUPPL,G3000\nProgram Diretor,John A Hartford Fond,Y4000\nChairman,Fritz Communications,Y4000\nPresident,\"Big Red Liquors, Inc\",G2840\nGENERAL MANAGER,SODEXO,Y4000\nGovernment Affaris,Microsoft Corporation,C5120\nPHYSICIAN,DOCTORS IMAGING GROUP,H1130\nDirector,GSD&M,G5210\nLERNER DAVID LITTENBERG KRIMHOLTZ,,K1000\nPresident,Pederson Group,F4500\nNED KODECK CHTSE,,Y4000\nREAL EST,REALTY EXEC. PRESCOTT AREA,F4200\nInvestment Banking,\"Arbor Research & Trading, Inc.\",Y4000\nMARKETING DIRECTOR,MONARIE,Y4000\nREGIONAL VICE PRE,NYE SENIOR LIVING,H2200\nCONSTRUCTION,ROPER CONSTRUCTION,B1500\nAttorney,Lewis Broadcasting Corp.,C2100\nMD,\"St Anthony's Medical Center\",H2100\nMATERNITY CARE COALITION,,Y4000\nProfessor,Hhmi/The Rockefeller University,Y4000\nGRAND TAVERN,,G2900\nATTORNEY,SELF-EPLOYED,J7500\nLABORER,NAVILLUS TILE INC. D/B/A/LABORER,LB100\nEXECUTIVE VICE P,DOMINION RESOURCES,E1620\nREAL ESTATE,STONEGATE DEVELOPMENT PARTNERS,Y4000\nCONSTRUCTION,\"LARK BUILDERS, INC.\",B1500\nMRS. RUSSELL ROTH,RETIRED,X1200\nNONE/LEGISLATOR,ST OF WA,J1200\nGOVERNMENT RELA,LOUIS DREYFUS CORP.,F2200\nCEO,UBOKIA.COM,C5140\nCREATIVE DIRECTOR,NESNADNY+SCHWARTZ,Y4000\nOWNER,RICKY HAWKINS WALL COVERINGS,Y4000\nTHE WHITMORE GROUP LTD,,F4200\nMELICK-TULLY & ASSOC,,Y4000\nTEAM LEADER / IT,ADAMS DISTRIBUTION,Y4000\nCHAIRMAN,\"OMNIBANK, NA\",F1100\nHOME CARE NURSE,S.F.,Y4000\nOWNER,MET ONE INSTRUMENTS INC,Y4000\nCEO,Texican Horizon Energy Marketing,E1000\nPART,SQUIRE SANDERS PUBLIC ADVOCACY,Y4000\nBAINS FAMILY FARMS,,Y4000\nPRESID,INTEX RECREATION CORPORATION,Y4000\nATTORNEY,MARCH & MCLENNAN,K1000\nPRESIDENT,\"BDL, INC.\",Y4000\nSCHWARTZ MANES & RUBY,,K1000\nFinancial Manager,Self-Employed,F4100\nVice Pres.,\"Lewis Marine Supply, Inc.\",Y4000\nARCHITECT,ETC,Y4000\nAttorney,Halloran & Sage LLP,K1000\nAttorney,Robinson & Cole LLp,K1000\nProfessor,Polytechnic Universtiy,Y4000\nOAKCREST LBR,,A5000\nGeneral partner,GKM Newport,F2500\nFINANCE,KOHLBERG KRAVIS ROBERTS -- CO..,F2600\n,VALLEY ELECTRICAL CONSOLIDATED INC,B3200\nPresident,American Retirement Corp,Y4000\nCOO,KKSP,Y4000\nJENNMAR CORPORATION/PRESIDENT/OWNER,,E1200\nCommercial Real Estate,HHH Properties,F4000\nManager,Net Cash Rebates,Y4000\nPhysician,Comphealth,Y4000\nR & J CATTLE INC,,A3000\nBUSINESS OWNER,MICROGENINC.,Y4000\nMORGAN STANLEY ET AL.,,F2300\nATTORNEY,\"ROWE LAW, LLC\",Y4000\nENVIROMENTAL SERVICES,BEAM & ASSOCIATES,F2600\nPARTNER,IN-REL MANAGEMENT INC.,Y4000\nATTORNEY,TULLEY & ASSOCIATES,K1000\nCREDIT SUISSE PRIVATE,,F2100\nManager,\"Anhueser-Busch, Inc.\",G2810\nVice President,Pipe Fitters Local 636,LB100\nDIRECTOR OF ANNUAL GIVING,NATIONAL CATHEDRAL SCHOOL,X3500\nRIVERSIDE GEN HOSP,,H2100\nPRESIDENT/CEO,PACXA,Y4000\nMANAGER/BUYER,BAILEY-MATTHEWS SHELL MUSEUM,X4200\nNEWSPAPER PABLISHER,,C1100\nPhysician,Staten Island Hospitalist PC,H2100\nSocial Work,Key Point Health Services,Y4000\nREAL ESTATE DEVELOPM,WALNUT CAPITAL,F4100\nVice President,\"DH Lloyd & Associates, Inc\",F3100\nRestaurateur,American Hospitality Concepts; Inc.,G2900\nAPOLLO PROPANE INC,,E1190\nASSIST,KENTUCKY OFFICE OF INSURANCE,F3100\nBoard Member,UNIVERSIAL FIDELITY,Y4000\nCEO,Signature Companies,Y4000\nPHARMACIST,BUDERER DRUG CO./PHARMACIST,Y4000\n\"VICE PRESIDENT, FINANCE & BUSINESS DEV\",A+E NETWORKS,C2200\nexecutive,DAL Management Consultants,Y4000\nExec VP of Operations,Syracuse Research Corp,D4000\nLAWYER,SELF-EMPLOYOED,Z9500\nCeo,Nerts Inc.,J1100\nSOUTHERN CT STATE U,,J7400\nSPADE CORP,,Y4000\nCONSULTANT,THE BONJEAN COMPANY,Y4000\nCHAIRMAN AND,PHARMACIA CORPORATION,H4300\nOMNISYS,,Y4000\n\"Mgr, Materials/Struct\",Pratt,D2000\nSpecial Educ. Admini,US Dept. of Education,X3500\nVice President Sales,Yellow Book,Y4000\nCHAFFE & ASSOC,,G5270\nPERCY ATTORNEY AT LAW,,B2000\nPRES.,CRW INC.,Y4000\nJONES OSTEEM JONES & ARNOLD,,K1000\nAFFORDABLE HOUSE,,F4100\nC.E.O.,RAB HOLDINGS INC.,Y4000\nOwner,Ranch,A3000\nINFO REQUESTED,M. V. G.,Y4000\nCommunity banker,Hocking Valley Bank,F1000\nPRINCIPAL,CHARTERS & CO.,K2000\nCPA,REA SHAW GIFFIN & STUART,Y4000\nPNC BANK,,F1100\nINFO REQUESTED,Owner,G0000\n\"General Manager, Equ\",GE COMMERCIAL FINANCE,G5300\nVERMONT GAS COMPANY,,Y4000\nFounder/Partner,Winston Partners LLC,K1000\nCONSULTANT,AVAKIAN CONSULTING,Z9500\nSCIENTIST,CELL SIGNALING TECH,Y4000\nEXECUT,SENIOR RESOURCE GROUP L.L.C.,Y4000\nI3 Corp,Self,G0000\nPATHOLOGIST,MEDICAL CITY DALLAS HOSPITAL,H1130\nRN,FLAGSTAFF MEDICAL CENTER,H2100\nTeacher,Shamokin Area School District,X3500\nTrial Lawyer,\"hinton, alfert & Sumner\",J1200\nMICHAEL SWAINE DESIGN,,Y4000\nMEMBER,LABUTON SUCHARON,K1100\nWELLSTON SCHOOL DISTRICT,,X3500\nATTORNEY,AMERICAN DEFENSE INTERNATION,K2000\nLABS INC,,Y4000\nCivil Engineer,CGL LTD,Y4000\nDirector,Island Lincoln Mercury,T2300\nPollster,Triad Research Group,Y4000\nOWNER,CAPCO INC.,Y4000\nVice President,\"Ada's Trust & Investment, Inc.\",F2100\nAttorney - Government relations,Flaherty & Hood,K1000\nOwner,Joseph Rutigliano & Sons Inc.,Y4000\nCINDY MISCIKOWSKI,,Y4000\nVice President,New Villages Group,Z9500\nConsultant,Dawson & Assoc,K2000\nChairman,Olem Shoe Corporation,M3200\nCITY OF SHELBY,,X3000\nEXECUTIVE,UNITED RETAIL GROUP,Y4000\nEngineer,Verizon Corporation,C4100\nReal Estate Broker,AAA Real Estate,F4200\nWHOLESALE BEER DISTR OF TX INC,,G2850\nTeamster,Beyond Exhibit Logistics,Y4000\nPHYSICIAN-CARDIOLOGIST,SELF,Z9500\nHousewife,n/a,G5200\nBUSINESS M,SANDATA TECHNOLOGIES INC,C5120\nMANAGING DIRECTOR,\"KISSINGER, MCLARTY\",G5270\nCurator,Tobin Theatre Arts Fund,C2900\nQUEST PHARMACEUTICALS,,H4300\nOwner,Postells Mortuary,Y4000\nMANAGING DIRECTOR,P.S.I.,K2000\nSTEEL WORKER,INLAND STEEL,M2100\nSALES MANAGER,\"CPM - PASCO, WA\",B5100\nAttorney,Equity Partner - Nordman Cormany Hair,Y4000\nMECHANIC,\"DAVE'S FOREIGN CAR SERVICE (SELF-EMPLO\",Y4000\nEXECUTIVE,ZIMMERMAN ADVERTISING,G5210\nHealth Care Facility Developer / Opera,\"The Mariner Management Group, Inc\",Y4000\nManagement,Smith Drug Company,G4900\nJURUPA GOLF COURSE,,G6100\nPhysician Assistant,Whitney Internal Medicine,J7400\nMANAGER,CORDEIRO VAULT COMPANY,Y4000\nCAPIN CROUSE & COMP,,Y4000\nPhysician,Physicians for Womens Health,H0000\nSCC,SALEM COMMUNICATIONS,C2100\nSoftware Developer,Citadel Investment Group,F2700\nCo-CEO,Excelsior Energy Inc.,E1600\nEXECUTIVE VIC,HARTFORD STEAM BOILER,F3100\nREAL ESTATE EXECU,CHICAGO WHITE SOX,G6400\nPSYCHOLOGY PR,UNIVERSITY OF GEORGIA,H1110\nFounding Patner,\"Reisman, Peirez & Reisman\",K1000\nPAPARONE HOMES OF NJ,,B2000\n22 EAST ADVERTISING,,G5210\nPT,ROCK VALLEY PHYSICAL THERAPY,H1700\nPRES/CEO,AK CAPITAL,Y4000\nSTORE MANAGER,DETAILS,Y4000\nCONSO PRODUCTS COMPANY,,Y4000\nPetroleum Marketer,\"Shop Rite, Inc.\",E1170\nOwner,Wirick and Associates,Y4000\nAUDI,WALTER REED ARMY MEDICAL CENTE,H1700\nCEO,ROY ANDERSON CORP,F4100\nCOPANO FIELD SERVICE,,Y4000\nECONOMIST/HOUSEWIFE,Not employed,F5500\nSVP & CAO,NCTA,C2200\nBOULEVARD BUICK-PONTIAC-GMC,,T2300\nStaffer,Chet Edwards,Y4000\nWESTFIELD GARDEN APT,,F4500\nMortician,God,J1200\nSILLA CUMMIS,,K1000\nSELF-EMPLOYED,NONPROFIT CONSULTING,Z9500\nATTORNEY,PIERSON PATTERSON LLP,K1000\nINVESTORA,KELLNER DILEO AND CO.A,F2000\nCEO,SOUTH CENTRAL REG WATER AUTH,Y4000\nADMINIST,QUALITY CARE HEALTH CENTER,H2000\nSales,Mullin TBG,Y4000\nSALES DIRECTOR,MULTI-HOUSING DEPOT BY ARI,Z9500\nAuto Executive,Self,T2300\nRUCKMORE CARPET & FLOORS,,G4400\nENTERTAINER,BOUZER INC,Y4000\nGIFFORD REAL ESTATE,,F4200\nPacific Jet Aviation Llc/Owner/Dir,,Y4000\nRETIRED UTILITY EXECUTIVE RANCHER,SELF,X1200\nRETAIL,TERESA`S HALLMARK SHOP,Y4000\nOWNER,HOFFMAN INTERIORS,Y4000\n\"RIM OPERATING, INC.\",,E1120\nMYSTIC LAKE CASINOS,EXECUTIVE,G6500\nLICENSE PLATES REGULATIONS,,\nManager,Quizons,J1200\nChairperson,KASCOF,Y4000\nGREENVOTE,,JE300\nRS LAND,,Y4000\nMarketing,National Corn Growers Assn,A1500\nManager,Mass Mutual Life Ins,F3300\nOwner,International Graphics,J5400\nPHYSICIAN,NSIDE EMERG. ASS.,Y4000\nCNO CNH,COLISEUM HEALTH SYSTEM,H2100\nMARKETER,AMERICAN MARKETING GROUP,Y4000\nCHAIRMAN & CEO,WASTE MANAGEMENT,X1200\nReal Estate Broker/Owner,\"Rollinmead Realty, Inc\",F4200\nConsultant,Turchan Technologies,Y4000\nScientist,University of Virginia,J1200\nOwner,S & L Investments,F7000\nBusiness Executive,The Johnston Group,Y4000\nMANAGER,SATURN OF BOWIE,Y4000\nBOARDMEMBER,VERTEX PHARMACEUTICALS INCORPORATED,H4300\nSupervisor/Director,Flash Film Works,C2400\nTHOMAS ELECTRIC SERVICE INC,,B0500\nPROFESSOR,VOL MD.,H1100\nATTORNEY,DAVID VAN OS & ASSOCIATES,K1000\nvp operations/ceo,art Dallas Incorporated,Y4000\nMARKETING DIRECTOR,ELEARNERS.COM,C5140\nHOSPITALITY,\"PRESIDENTIAL PARTNERS, L.L.C.\",Y4000\nPROFESSOR,NORTHWESTERN,K1200\nOwner,Kohles Investment,K1000\nRetired Educator,Wittenberg University,J7400\nATTORNEY,BENNETT AND GUTHRIE,K1000\nPRESIDENT,WAYNE J. GRIFFIN ELECT.,Y4000\nSenior Vice Presiden,Holladay Properties,F4000\nKFC INC,,G2900\n\"SONNY'S FURNITURE CO\",,J5100\nManagement,South Beach Cardiology,J5100\nPRIVATE EQUITY INVES,SUMMIT PARTNERS,F2500\nPresident,Accurate Professional Bill,Y4000\nATTORNEY,JAVERBAUM WURGATT,K1000\nWERNER CO,,Y4000\nASSISTANT TO THE DIREC,THE DIRECTOR,Y4000\nPRESIDENT,SENAX INC.,Y4000\nLAWYER,STOLL BERNE LOKTING & SHLACHTER PC/,K1000\nCARDIOVASCULAR CLINICAL ASSOCS PC,,H1100\nECONOMY ELEC SYC,,Y4000\nVP for Student Engagement,Centenary College,J1200\nCPI COMPANIES,,Y4000\nPartner,Brown & Wood,K1000\nChairman,Gerard Klauer Mattison,F2600\nExecutive,\"Daniel Island Company, LLC\",Y4000\nGINSBURG FELDMAN WEIL,,Y4000\nS & J OPERATIONS,,Y4000\nParalegal,Retired,X1200\nExec VP,P&L Railroad,T5100\nOFFICE,DOWELS CINS & SHAFTS INC.,Y4000\nCHAIRMAN,SOUTHERN PROGRESS FUND,Y4000\nEXECUTIVE,NETWORK & SECURITY TECHNOLOGIES,Z9500\n\"Chief of Staff, Dranesville District S\",Fairfax County VA Board of Supervisors,Z9500\nLOBBYIST/CONSULTANT,FEDERAL POLICY GROUP,K2000\nCPA,\"Parente Beard, LLP\",Y4000\nDEPUTY TO THE EXECUT,HUMAN RIGHTS FIRST,Z9500\nBRETHREN RETIREMENT COMMUNITY,,X4000\nEngineer,\"OFS Fitel, LLC\",Y4000\nATTORNEY,WILCOX BUYCK AND WILLIAMS,K1000\nC H S PC,,Y4000\nStifel Nicolaus,,F2100\nHospital Administrat,Providence Medical Center,H2100\nDAVIS OPERATIONS,SELF,Y4000\nACTOR COMEDIAN,SELF EMPLOYED,C2000\nCARNEGIE MELTON UNIVERSITY,,J1200\nOWNER,DOGAN METAL PRODUCTS,Y4000\nINTERIOR DESIGNER,CHATSWORTH DESIGN INC.,Y4000\nRetired/Disability,Retired/Disability,X1200\nExecutive,Kistler Aerospace,Y4000\nVETERINARIAN / TEACHER,UNIVERSITY OF WISCONSIN,H5100\nCEO,CLUBCORP,G6100\nManager,Express Energy,E1000\nPRESIDENT,WILL-DRILL RESOURCES INC.,E1120\nReal Estate Broker,Austin Brokers - Self,F4200\nOFFICE MANAGER,ARTHUR W. PONZIO CO.,Y4000\nSOFTWARE ENGINEER,MANTECH,D9000\nMICRO MO,,Y4000\nemployee,Rhone Plank Plant,Y4000\nCHIEF EXECUTIVE OFFICER,NORTH SHORE - BARRINGTON ASSOCIATION O,G0000\nBANCO POPULAR DE PUERTO RICO,,F1100\nPHYSICIAN,\"THE ORTHOPEDIC GROUP, PA\",H1130\nATTORNEY,MITCHELL & SHAPIRO,J5100\nCeo,Ron James Inc.,Y4000\nJudge,Cape May County,Y4000\nACH RETURN,,H2200\nOwner,Pilipuf Grist & Associates,Y4000\nSoftware Consultant/Trainer,\"Axcede Business Solutions, LLC\",Y4000\nSPRINGER-MILLER SYSTEMS,,C5130\nGLOUCESTER HOUSE RESTAURANT,,G2900\nArchitect,Jennifer Marsh inc,Y4000\nMIDDLETON & REUTLINGER,,K1000\nMANUFACTURING,TMC INC.,Y4000\nGENERAL CONT,BRETT CONSTRUCTION CO.,B1500\nOWNER,CARD & ASSOCIATES LLC,Y4000\nGOLDRICH KEST KIRSCH & STERN,,F4000\nRF Engineering Services,Azurean Wave/Managing Partner,Y4000\nCEO,OGE Energy Corporation,E1600\n\"V.P., TRANSACTION T\",HEWLETT-PACKARD,C5100\nCOLLINS & LACY,,Y4000\nDIRECTOR O,MENTAL HEALTH ASSOCIATES,J7400\nRetired,Parker Drilling Company,E1150\nSONGWRITER/PERFORMER,SELF-EMPLOYED/SONGWRITER/PERFORMER,C2600\nCFO,\"HOLPRO VISION, LTD.\",Y4000\nVolunteer,\"Bush-Cheney '04\",K2000\nPRESIDENT,ZARROW HOLDING CO.,Y4000\nDENTIST,DCS,Y4000\nCEO,Stevens & Soldwisch Inc,Y4000\nPRODUCER,PINTO PRODUCTIONS,Z9500\nFOUNDER,HL GROUP,G5200\nMEARS TRANSPORTATION,,T9400\nHOTEL DEVELOPER,OCEAN GATE,F7000\nGUN SHOW,,Y4000\nALTMAN ET AL,,F5500\nVP  GOVERNMENT AFFAI,Sodexho Inc.,G2910\nPresident,Continental Wingate Company,F4000\nVICE PRESIDENT,AGS,Y4000\nFederal Affairs Exec VP,Crossroads Strategies,K2000\nBUSINESS OWNE,STOCK BUILDING SUPPLY,Y4000\nHCFG Business Manage,WFF Retail Services,F1100\nExecutivie,Eco- Block,Y4000\nPresident,Commercial Electric,B3200\nVICE PRESIDENT,Z. P. R. INVESTMENT MANAGEMENT INC.,Y4000\nEVP,GENESIS HEALTHCARE CORPORATION,H2200\n000 VP - PROCUREMENT WESTERN REGION,GEORGIA-PACIFIC LLC,E1160\nDIRECTOR OF SEVERAL COMPANIES,N.A,G0000\nREAL ESTATE DEVELOP,TRUE ASSOCIATES,F4100\nDRAKE LIVESTOCK CO,,A3000\nC.E.O.,MURANO GROUP L.L.C./C.E.O.,Y4000\nAttorney,Maynard Cooper & Gale,Z9500\nPRESIDENT,DKT INTERNATIONAL,J9000\nDIRECTOR OF PURCHASI,THE VILLAGES,F4100\nchoreographer,Self employed,C2900\n\"PRESIDENT, NATIONAL INSURANCE\",LIBERTY MUTUAL,F3400\nSr Budget Analyst,Chicago Public Schools,X3500\nSVP - GLOBAL COMMUNICATIONS,MERCK SHARP & DOHME,H4300\nARCHITECT,WNUK SPURLOCK ARCHITECTURE,B4200\nATTORNEY,MANNINF FULTON & SKINNEN/ATTORNEY,Y4000\nRICHARD DISANTI ET AL,,K1000\nCEO,ADVANCED MEDICAL OPTICS,H3300\nBUSINESS,EXCELL CLEANING & BLD SRVC,Y4000\nOwner,Green Design Furniture,M4100\nJ&B ACOUSTICAL CO,,B3000\nREALTOR,REMAX ALLIANCE,Y4000\nANESTHESIOLOGIST,ANESTHESIOLOGY CHARTERED/ANESTHESIO,H1130\nFAMILY NURSE PRACTITIONER,AVERA MCKENNAN HOSPITAL,H2100\n\"SR DIRECTOR, DIGITAL\",GUTHY-RENKER,C2300\nChief Technology Officer,AON Corporation,F3100\nSECRETARY,MACCABEE INDUSTRIAL,Y4000\nSCIENCE LECTURER,UNIVERSITY OF CA. AT SANTA BARBARA,Y4000\nDIRECTOR,MK FILMS,C2400\nAttorney,Hilborn & Hilborn Pc,K1000\nEngineer,The AeroSpace Corp,T1700\nSCHOOL TEACHER,ATTY,K1000\nHORSE RACING,SUNLAND PARK,Y4000\nPresident,Marina Holdings Limited,Y4000\nABBOTT-INTERFAST CORP,,M5000\nVP-external Affairs,Ppl,Y4000\nFORT MYER CONST CO,,B1500\nOWNER,CHINA TOWN RESTAURANT,G2900\nSTUDENT,\"SERVICE PAYMENT PLAN, INC/STUDENT\",Y4000\nRUSMAR INCORPORATED,,M1500\nSales Engineer,Appian,Y4000\nTeacher,Birmingham Pub Sch,J1200\nFinancial Executive,Swift,C5120\nEXECUTIVE,MUSEUM OF TOLERANCE,J5100\nCHIEF HR OFFICER,BAUSCH AND LOMB/CHIEF HR OFFICER,M9100\nPRESIDE,A-COIN & STAMP GALLERY INC.,G4600\nPresident/CEO,WLJA-FM,C2100\nPACIFIC FIBER PRODUCTS,,Y4000\n\"JOHN'S ISLAND COMMUNITY SERVICE LEA\",,Y4000\nAttorney,Krieg DeVault,K1000\nUGM INC,,Y4000\nPEDIATRICS & ADOLESCENTS,,H1130\nCHIEF EXECUTIVE,PRECISION TEMP INC.,Y4000\nPRESIDENT OF FEDERAL AFFAIRS,W2A,Y4000\nLAWYER,JENKENS ANS GILCHRIST,J5100\nInsurance Agent,Ferdinando Ins Assocs Inc,F3100\nAvonex Therapy Support,Biogen Idec,H4500\nWESTINGHOUSE SAVANNAH RIVER,,C5000\nCONSULTANT,\"VITALSITE SERVICES, INC\",Y4000\nVICE PRESIDENT,\"JM FAMILY ENTERPRISES, INC.\",T2300\nPHYSICIAN,LMU,Y4000\nRETAIL SLES,\"MACKSOOD'S INC\",Z9500\nSOUTH DAYTON ACUTE CARE,,H1100\nUSDI BLM,,X3000\nMORTGAGE GUARANTY CORP,,F4600\nINSURANCE BANKER,SELF,F3100\nUNDERWRITERS SAFETY & CLAIM,,F3100\nATTORNEY,\"SIFF & LAKE, LLP\",K2000\nP,PATHOLOGY MEDICAL LABORATORIES PA,H1130\nREAL ESTATE BROKER,\"HSI PROPERTIES, LLC\",F4200\nMFT,Self employed,Y4000\nPRESIDENT,RIEKES PACKAGING CORPORATION,Z9500\nCOMMERCIAL REAL ESTATE,,J1200\nJET SPECIALTIES COMPANY,,Y4000\nSALESMAN,WARBLE & ASSOC. LLP,Y4000\nHEALTH CARE REFORM,\"HOLLIS, LLC\",Y4000\nADMINISTRATIVE ASSISTANT,J.J. BROWN CO.,Y4000\nBUSINESS OWNER,SELF-EMPLOYED,F4000\nBANKER,COBANK,F1100\n\"Physician, pediatric urologist\",pediatric Urology associates,H1130\nMINISTER,EASTBROOK CHURCH OF CHRIST,X7000\nMarketing Consultant,Sensible Solutions Inc,J1200\nPRESIDENT/CEO,HUNT COMPANIES,F4100\nSALTER JOBS,,H4100\nPETITIONER,COURT OF PENNSYLVANIA,Y4000\nNone,,F4600\nRETIRED TEACHER,SELF EMPLOYED,X1200\nPresident & CEO,Piasecki Aircraft Corp,D2000\nMANAGER,ENTERPRISE HOLDINGS,T2500\nDEAN WITTER & REYNOLDS,,F2100\nResearch Fellow,Procter & Gamble,M1300\nC E O,LOVETOKNOW CORP,Y4000\nPhysician,Self-Employed,J1110\nExecutive,H. C. A.,H2100\nDEVELOPMENT CONSU,EBERLE ASSOCIATES,Y4000\nOWNER,\"HALL HEATING, INC\",Y4000\nPRESIDENT,HRI ASSOCIATES,Y4000\nSHERR DEVELOPMENT GROUP,,F4100\nINVISO INC,,Y4000\nFINANCE,WCAS MANAGEMENT CORP,F2600\nMANAGEMENT,DOWNEAST ENERGY,E1000\nOWNER,WEISMANN ASSOCIATES,Y4000\nAttorney,\"Parker, McCay, PA\",K1000\nMONTANA CANCER SPECIALISTS,,Y4000\nConsultant - Expert,Self employed,G5200\nPHILLIPS MGMT & CONS SVCS,,Y4000\nFERNAU & HARTMAN,,Y4000\nATTORN,MCKUIN FRANKEL WHITEHEAD LLP,Y4000\n\"SENIOR VICE PRESIDENT, EMPLOYEE BENEFI\",MMA,F3100\nLibrarian,\"City of Hayward, CA\",X3000\nLIGHTSPEED VENTURE PARTNERS,,F2500\nCHIEF ADMINISTRATIVE OFFICER,\"MACY'S INC.\",G4300\nProfessor,Ga Inst. Of Tech.,Y4000\nelectronics designer,Digitry Company aInc,Z9500\nHEALTH STATIS INC VANDERBILT INSTIT,,H1710\nIND UNIVERSITY,,H5100\nSecurity Supervisor,Lockheed Martin Corporation,D2000\n\"RVP, FINANCE\",COMCAST,C2200\nConsultant,Clark & Seinstock,K2000\nSHAPIRO ABRAMS & BEDECK,,K1000\nPHYSICIAN,COX HEALTH SYSTEMS,H0000\nWALBRIDGE AVENUE,,B1000\nACCOUNT,PARAMETRIC TECHNOLOGY CORP,Y4000\nPROJECT MGR,FLUOR ENTERPRISES INC.,B1000\nMANUFACTURER,WISCONSIN CONVERTING INC./MANUFACTU,Y4000\nPUBLIC HEALTH,CONTRA COSTA COUNTY,X3000\nPhysician,The Hinds Clinic,Y4000\n\"Senior Vice President, Operations\",Northridge Hospital Medical Center,H2100\nBARMI CORP,,Y4000\nBANKER,BANK OF COUSHATTA,Z9500\n\"BUSINESS OWNER, PRESIDENT & CEO\",REGENCY BEAUTY INSTITUTE,Z9500\nTHE NEW PRESS,,Y4000\nMANAGER,PRINTING SYSTEMS- INC.,J1100\nManager,Ewprc,Y4000\nPROPERTY MANAGER - REAL ESTATE,TRIPLEX REALTY/PROPERTY MANAGER - R,F4200\ninvestments,Federated Investor,F2100\nFaculty,Oakland University,H5100\nADMINISTRATOR,VANDEBILT UNIVERSITY,Y4000\nInformation Requested,Wagner Industries,Y4000\nVice-President,Republic Beverage Co.,J5100\nMARTINEZ MANGLARDI & DIAZ ARGUELLAS,,K1000\nExecutive,Springs Industries,M8000\nINS AGENT,WORK COMP PARTNERS,Y4000\nDirector,Dacotah Bank,F1000\nATTORNEY,FOLEY HOAG LLP,K2000\nSAJIK CORP,,J5100\nEXECUTIVE,DMB,Y4000\nAuto Dealer,Zelander Cheverlet Buick,T2300\nENGINEER,\"NEEL-SCHAFFER, INC\",B4000\nBRISTOL BAY NATIVES CORP,,J7500\nADVISOR,DIETEL PARTNERS,Y4000\nEngineer,Nova Research,Y4000\nZUBER & TAILLIEU LLP,,K1000\nATTORNEY,ALCADE AND FAY,K1000\nAttorney,AARP,J7200\nFISH & WILDLIFE BIOLOGIST,RETIRED,X1200\nRn,\"HCR Manor Care, Inc\",H2200\nSales,Trustwave,Y4000\nPH,UNIVERSITY OF MARYLAND BALTIMORE,H5100\nPostdoctoral Associate,MIT,H5100\nATTORNEY,F.C.C.,X3000\nPresident,FRANK W. KERR DRUG CO.,G4900\nDIRECTOR,OGIVY GOVERMENT RELATIONS,K2000\nInsurance,\"The Gleason Agency, Inc.\",F3100\nOWNER,MAC MCNEER CONSTRUCTION CO,B1500\nBAYLEY MANAGEMENT INC,,Y4000\nGC SERVICES LP,,F5200\nOwner,\"Luke's Liquors\",G2840\nPresident/CEO,Freedom Acceptance Corp.,F1400\nEducational Supervisor,\"St Joseph's School for the Deaf\",Y4000\nDW ETL Developer,\"Crocs, Inc\",Y4000\nPRESIDENT,XEROX CORPORATION,M4200\nretired,knu85ed@frontiernet.net,Y4000\nVICE PRESIDENT,\"KING WELL SERVICE, INC\",Y4000\nAttorney,\"Freightcar America, Inc\",Y4000\nInformation Requeste,Partner,F4200\nAttorney,Law Offices Of Alisa J.  Baker,K1000\nTEACHER,LEXINGTON PUBLIC SCHOOLS,Y4000\nteacher,ConVal District,J1200\nEXECUTIVE SEARCH INC,,G5250\nPRESIDENT WOMEN OF OUR HEMISPHERE,,G2810\nFORD MOTOR CO,,J9000\nLead Developer,Noloh LLC,Y4000\nSELF,ENERGY CONSULTANT,Z9500\nENT CLINIC OF TULSA,,Y4000\nARCHITECT,\"GRUZEN SAMTON, LLP\",Y4000\nDIABETES INSTITUTE,,Y4000\nREAL ESTATE DEV,NORTHWOOD INVESTORS,F4000\nContractor,Gregg Industrial Service,Y4000\nCONSULTANT,BEACON CONSULTING GROUP/CONSULTANT,K2000\nTHE ROSK GROUP INC,,Y4000\nSENIOR VI,BIOTECHNOLOGY ASSOCIATION,H4500\nSRA INTERNATIONAL/VICE PRESIDENT/DI,,J1200\nSCIENTIST,ENVIRONMENTAL PROTECTION AGENCY,X3000\nHealth Care Consulta,West Coast Consultan,Y4000\nATTORNEY-CIVIL RIGHTS/EEO,US. EEOC,X3000\nRBMG,,Y4000\nALLIANCE OF THE STREETS,,Y4000\nCOMCAST CAPITAL,,C2200\nPATERNO IMPORTS,,G3500\nSINGER STEEL CO,,M2100\nAttorney,\"Fortson, Bentley & Griffin\",K1000\nDIRECTOR,S.I.S. INC.,Y4000\nOPERATOR,AMQUIP,LB100\nPhysician,Morningstar Emergency,Y4000\nAmusement Games,Self employed,Y4000\nCOO,EJ PRESCOTT,Y4000\nO.N.E. COMPANY,,J7150\nCHANCELLOR,UNIVERSITY OF MICHIGAN-DEARBORN,H5100\nPHYSICI,WESTERN PIEDMONT ANESTHESIA,H1100\nInvestment,Stanley,D9000\n\"STRATEGIC PUBLIC PARTNERS, INC\",,K2000\nRETIRED,CAMPBELL SOUP,Z9500\nManaging Director,Real Estate,F2100\nExecutive,\"J. Michael Woody, Inc.\",Y4000\nDIRECTOR,UNITED HEATHCARE,Y4000\nLoan Officer,Wells Fargo Home Mortgage,F4200\nATTORNEY,\"RYAN, PHILLIPS, UTRECHT & MACK\",K2000\nPLYMALE & ASSOCIATES,,K1100\nVP systems,strategic solutions inc,G5200\nMedical Director NICU,Pediatrix Medical Services Inc,H1130\nExecutive Assistant,Sutton Place,Y4000\nGovernment Worker,US House,Y4000\nAttorney,\"Sturdevant Law Firm, Inc\",K1000\nSHEDRAIN CORPORATION,,Y4000\nWILSON DRAYER MORIRS ET,,Y4000\nCHIEF OPERA,GOODMAN PROPERTIES INC.,F4000\nCRAWFORD AUSTIN PROPERTIES,OWNER,F4000\nOwner,Carole C. Leland Custom House Broker,Y4000\nnon profit developme,self,G0000\nGENERAL MANAGER,MID-AMERICA LAWN,Y4000\nLAWYER,US GOVT,X3000\nFEDERAL LOBBYIST,MEDCO,H3700\nPartner Business,Fathom Ineractive Solutions,Y4000\nTINICUM INCORPORATED,,F2100\nCONSULTANT,GORDLEY ASSOCIATES,Y4000\nMachinist,Custom Control Sensors,Y4000\nTrustee,Northcrest Medical Center,H2100\nEASTERN CONF,,LT300\nTILE CERA WEST,,Y4000\nTECHNOLOGIST,SELF-EMPLOYED,G0000\n\"President & Chief Executive Officer, F\",GE Capital,M2300\nREAL PROPERTY MANAGEMENT,,F4500\nSr Advisor to VP of Heal,West Virginia University,H5100\nREDONDO BEACH MARINA,,T6000\nBOARD MEMBER,\"LAND O LAKES, INC\",A6000\nEXECUTI,NICOLSON PORTER & LIST INC.,Y4000\nASSOC IN OBGYN,,H1130\nDirector,\"AgSouth Farm Credit, ACA, FLCA\",A4000\nPhysician,Swedish,H1100\nMANAGING PARTNER,LAMB MCERLANE PC,K1000\nCHAIRMAN,YATES CONSTRUCTION,B1500\nTV PRODUCER,BUNIM-MURRAY PRODS,C2200\nDREYFUS CO,,F2100\nMANAGER,GOTHAM GROUP,Y4000\nOWNER,TIGER MORTGAGE INC,F4600\nMETROPOLITAN DESIGN GROUP,,Y4000\nBRASS BUCKLE,,Y4000\nWESRAY CAPITAL CORP,,F2300\nINSERT CULTURE MEDIA RESEARCH,TECHNOLOGY DIRECTOR,Y4000\nJBA INTERNATIONAL,,Y4000\nCONSTR,EVAN JOHNSON & SONS CONSTRU.,B1500\n\"CONSULTANT,SELF EMPLOYED\",SELF EMPLOYED,G0000\nMechanic,\"Stonebraker''s Garage\",Y4000\nGovernment Relations,Microsoft Corporation,C5120\nOPUS,,Y4000\nAUTO DEALER CEO,JUNGE AUTO GROUP,T2300\nSr Producer,NFL,G6400\nCEO,MICHAEL FOX INTERNATIONAL INC.,Y4000\nCOO,Hilliard Lyons,F2100\nCOUNSEL,CLIFFORD CHANCE U. S. LLP.,K1000\nINTERIOR,FORREST MARKETING & DESIGN,Y4000\nREAL ESTATE,SHORE TO SHORE PROPERTIES,F4000\nConvenience store ow,Self,G4300\nATTORNEY,WEINER & WEISS,Y4000\nC,CAPITAL SENIOR LIVING CORPORATION,H2200\nATTORNEY,GUERRA LAW GROUP,Y4000\nManager,Northland Services Inc,Y4000\nMINING,SIMION FABRICATION,M8000\nPrincipal,Self Employed,F4000\nMANAGER,JAMES RIVER AIR,B3400\nUNION REPRESENTATIVE,UNITED STEELWORKERS,LM100\nLogger & Constructio,D H Hardwick and Sons,Y4000\nOwner,Dominion Mechanical Cntrctrs,Y4000\nEASTERN MAINTENANCE & SERVICE INC,,B1500\nEXECUTIVE,AUDIOVOX INC,G5200\nALLEGIANCE TELECOM INC./SR. VP OSS/,,C4100\nOWNER/CEO,CATALYSIS,J1200\nManager,Avir Sensors,Y4000\npartner,Hidden Valley Ranch,G2000\nATTORNEY,MOTHEY RIVE LLC,K1100\nPARK KIM & YU,,K1000\nOWNER,\"VIVIANS HOMES, INC.\",B2000\nInvestment Advisor,MAKROD Investment Assoc Inc,F2100\nGOVERNMENT AFFAIRS,CUSMANO KANDLER & REED,K2000\nMissing - Requested,Missing - Requested,Y4000\nDesigner,Knowawall Inc,J1200\nOwner,\"Jay's Home Specialists\",Y4000\nPhysician,Kings Daughters Clinic,H1100\nSOFTWARE ARCHITECT,CA TECHNOLOGIES,C5120\nATTORNEY,LIEFF CABRASER ET AL.,K1000\nCONTRACTOR,MIDSOUTH CONTRACTORS SUPPLY LLC,Y4000\nMENK CORPORATION,,H4300\nSALES,ENTERPRISE HOLDINGS,T0000\nPHYICIANS,SELF,H1100\nSALES,THE MUNGO COMPANY,Y4000\nEXECUTIVE,NTRA,G6500\nCEO,FOSTER & CALLANAN FINANCIAL,Y4000\nSILVI CONCRETE,,B5100\nCALIFORNIA POULTRY FED,,A2300\nCommunity Manager,Rebuild L.A.,J7400\nMANAGER; GLOBAL APPLICATIONS,GE ERC,M2300\nCONSULTANT,WALT DISNEY CO.,C2000\nPETROLEUM EN,HILCORP ENERGY COMPANY,E1000\nCHAIRMAN,CASTLE CONNOLLY MEDICAL,J1100\nWws Sub Foreman,Massachusetts,Y4000\nOWNER,\"CAPITAL PUMPING, LP\",Y4000\nwinery,Self Employed,H4300\nOWNER,AURORA CASKET COMPANY,G5400\nRealtor,Kimbrell Realty,F4200\nField,Broomfield for Congress,J1200\nAssociate General Counsel,Perot System Corp,C5130\nREAL ESTATE,KOVIENG AND SGREY,Y4000\nAUTHOR,SELF-EMPLOYED,F1100\nREPRES,LA. HOUSE OF REPRESENTATIVES,Y4000\nCOHARLE HOG FARM INC,,A1000\nMidwife/Nurse Practitioner,Kaiser,H3700\nOWNER,CORNELLIER FIREWORKS,Y4000\n\"CRAVATH, SWAINE MOORE\",,K1000\nCEO,Chapman Automotive Group,Y4000\n\"HAWAII'S INSURANCE NETWORK LTD\",,F3100\nLIFESTYLE DIRECTO,LIFETIME MAGAZINE,C1100\nSENIOR MGR O,MARVIN WINDOWS & DOORS,M7200\nHR Administrator,CMA,Y4000\nGREEN MORRIS AND ASSOCIATES INC,,J5100\nOwner,\"RHP Properties, Inc.\",J1100\nMANAGEMENT,WOOD MACKENZIE,Y4000\nPresident,Tiller Corp.,Y4000\nATTORNEY,\"SCHULTE RETH & ZABEL, L.L.P.\",K1000\nOPTOMETRIST,SPECS VISION CENTER OF AIKEN,Y4000\nMANUFACTURING,PRECISION INC.,Y4000\nCHARLES M MALKEMUS INC,,Y4000\nREGISTERED REPRESENTATIVE,\"R. L. UTSEY & CO, INC.\",Y4000\nPartner,Loanology,H1130\nATTORNEY,FEDER MORRIS TAMBLYN,Y4000\nCEO,The Trump Organization,F4000\nROOFING CONTRACTOR,KHCBM,B1500\nAIDE/TEACHER,RETIRED,X1200\nLIBRARIAN,GRAYSLAKE PUBLIC LIBRARY,X4200\nReal Estate,\"Caran Properties, Inc.\",Y4000\nPRESIDENT,EPHRATA HOSPITAL,H2100\nRealtor,Poole Realty,F4200\nEDUCATION TESTING SERVICE,,Y4000\nSenior Architect,Bit Group,B4200\nDIRECTOR OF RESE,NUVEEN INVESTMENTS,F2100\n1128 SPRINGFIELD ASSOC,,Y4000\nLAWYER,STATE OF HAWAII,X3000\nATTORNEY,\"O'MELVERNY & MYERS LLP\",K1000\nHEAD OF WHOLESALE CREDIT,WELLS FARGO BANK N A,F1100\nDirector of Finance,WPIX-Tribune,C2100\nCOUNTY COMMISSIONER,STARKE COUNTY,Y4000\nATTORNEY,KILPATRICK TOWNSEND & STOCKTON LLP,K1000\nOWNER,\"SHORTY'S MEXICAN ROADHOUSE\",Z9500\nReal Estate Broker,RE/MAX Beyond,F4200\nEx. VP & General Cou,Duff & Phelps LLC,F5100\nLEEWARD CONSTRUCTION,,B1500\nSecretary,Ben Hill Griffin Inc.,Y4000\nEducation Policy Research,Self,Y4000\nReal Estate Management,Segal & Segal,F4000\nTEACHER,BANK STREET COLLEGE,H5100\nATTORNEY,WILKLE FARR & GALLINGHER,K1000\nMedical Research,University of Pennsylvania,H5100\nCARLILE TRANSPORTATION SYSTEMS,,T0000\nPresident,\"Cliff Madison Government Relations, In\",K2000\nPhysicist,Multibeam Systems Inc,Y4000\nCEO,SUNDANCE DEVELOPMENT,Y4000\nRETIRED,DOW,M1000\nEXECUTIVE,LAKE PLACID VACATION CORP.,Y4000\nGOLDBERGER FOODS INC,,Y4000\nPartner,Tassey and Associates,K2000\nPROPERTY MANAGER,TEN PLACE LLC,Y4000\nAdvertising,Orbitz,Z9500\nCONSULTANT,\"HUMANA, INC.\",H3700\nCHAIRMAN,TAPEMARK CO.,M7100\nATTORNEY,ASWD LAW,K1000\nProgramer,High Sierra Electronics,Y4000\nCOUNSEL,HHS,X3000\nPresident,Revlon International,M3300\nTrial Lawyer,Fine & Durrant,K1100\nCIVIL ENGINEER,SENECA CO.,Y4000\nMAYOR OF PALMER,CITY OF PALMER,X3000\nUnion Officer,Hpae,J1200\nB N Y MEDICAL DR,,H1100\nHEALTH INSURANCE,THE REGENCE GROUP,F3200\nSenior Vice President,\"Regions Insurance, Inc\",B0500\nPRESIDENT,WAINUI INC.,Y4000\nCPA,EDWARD C. LEE,Y4000\nCOUGHLIN STOIA GELLER RUDMAN & ROBB,,Y4000\n\"RANDY MEEK HOMES, INC./BUILDER/REMO\",,B2000\nCONSULTANT,WILHELM & CONLAN,G5200\nPRESIDENT,ALLIANCE BENEFIT GROUP,Y4000\nCEO,PHILLIPS DISTILLING CO,G2820\nATTORNEY,\"VIRTUE, NAJJAR AND BROWN, P.C.\",J1200\nChairman,Federal Realty Investment Trust,F4100\nComputer Consultant,Durham Public Schools,X3500\nRetired,USHHS,X3000\nPRESIDENT,E. OSTERMAN GAS SERVICE INC.,E1100\nPresident,\"GUY'S ELECTRICAL SERVICES\",G1200\nCHAI,INTERNATL FLAVORS & FRAGRANCES,M3300\nPRESIDENT,PONTOTOC GATHERING,Y4000\nPRESIDENT,DANIEL ROSENTHAL & ASSOC,G5210\nRN,KSB Hospital,H2100\nMETRO NASHVILLE PUBLIC ED,,X3500\nlawyer,\"Gibson, Dunn\",K1200\nAttorney,\"Robins, Kaplan, Miller and Cir\",J1200\nATTORNEY,\"TAYLOR, GANSON AND PERRIN, LLP\",Y4000\nToxicologist,U.S. Environmental Protection Agency,X3000\nELECTED OFFICIAL,ORANGE COUNTY,X3000\nSales Represenative,Zimmer Randall Associate,Y4000\nManager,Wtuz Radio Inc,C2100\nOwner,Shipley DoNuts,G2100\nteacher,school district of Philadelphia,J1200\nLONE STAR CORP,,F3100\nExecutive,Middle East Institute,Y4000\nOwner,Ferma Wood Flooring Whole Salers,Y4000\nEVENT PLANNER,\"WILLIAM H. COLEMAN, INC.\",Y4000\nOLYMPUS DEVELOPMENT CORP,,F4500\nAnalyst,J.P. Morgan Chase,F1100\nATTORNEY,JACKSON KELLY PLLC,K1000\nWeb Editor,University Health Publis,Y4000\nEducator,Peace Corps,X3000\nN/A/HOMEMAKER,,M2000\nPhysician,Dublin Family Practice,H1100\nCHICAGO ANNENBERG,,Y4000\npresident,Density Corp,Y4000\nHOME BUILDER,TREND HOMES,B2000\n\"WILLIAMS, BOX, DEBEE & FORSHEE\",,K1000\nReal Estate,Mac Farlan Investmetns,Y4000\nOB/GYN,SELF-EMPLOYED,H1100\nOwner,Mike Murphy Ford,Y4000\nATTO,\"WAITE, SCHNEIDER, BAYLESS & CH\",K1000\nOwner,United Paralegal Svc.,Y4000\nNORTHEASTERN INVESTMENT,,Y4000\nPRESIDENT,ROCKFORD PRODUCTS,Y4000\nMARKETING,ELECTRONIC ARTS,C5000\nKINGS RIVER STORE,,Y4000\nWESTERN RESERVE HIST SOC,,Y4000\nSr Vice Presicent,Ideal,Y4000\nEDELEMAN COMMUNICATIONS,,K2100\nLOCKE PURNELL RIAN,,K1000\nEXECUTIVE,MARWICK ASSOCIATION,F4000\nORTHOPAEDICS INDY PC,,H1130\nATTORNEY,PASSEN LAW GROUP,Z9500\nComputer Specialist,University of Michigan,H5100\nADMINISTRATOR,WENATCHEE VVB,Y4000\nDALE JARRETT,,Y4000\nCFO,WINN DIXIE,G2400\nU.C. Davis,,H5100\nMACHINE OPEERATOR,BASINTEKLL,J1100\n\"VICE PRESIDENT, RESEARCH & DEVELOPMENT\",JENNIE-O TURKEY STORE,A2300\nCEO,HUMANARC CORP.,Y4000\nFINANCIAL MANAGER,BENEFIT COMMUNICATIONS INC,J1100\nRPSC MEDICAL CENTER,RPS/PRESIDENT,Y4000\nEXPERT REFRIGERATION,,B3400\nProfessor,University of Puerto Rico at Mayaguez,H5100\nHAVERFORD COLLEGE/STUDENT/WORK STUD,,H5100\nMORRIS SCHNOOR & GREMEL/INSURANCE/O,,Y4000\nVice President,\"West Oregon Electric Cooperative, Inc\",E1610\nKEY FINANCIAL,,F0000\n\"Chairman, President & CEO\",New York Life,F3300\nPHYSICIAN / RESEARCHER,ALBERT EINSTEIN COLLEGE OF MEDICINE,H5150\nCEO,United Systems,C5130\nMANAGING DIREC,BROWN HARRIS STEVENS,F4500\nExecutive Director o,Self,G0000\n\"DIRECTOR, POLITICAL AFFAIRS\",NATIONAL ASSOCIATION OF CHAIN DRUG STO,G4900\nInvestment Advisor,The Beal Consulting Group,Y4000\nTROEMMER INC,,Y4000\nPresident,\"Dudley Haas Distributing Co., Inc.\",Y4000\nP J J D ENTERPRISES,,Y4000\nMAINE EMERGENCY PHY,,H1100\nRE DEVELOPE,APPLIED PROPERTY MNGMT.,F4500\nConsultant,Jim Perich-Anderson Consulting,E1000\nDIRECTOR,SOUTHWEST ARKANSAS TELEPHONE COOPERATI,C4100\nAUTO DEALER,HOOKS LINCOLN-MERCURY,T2300\nELECTRICAL ENG,SANDIA NATIONAL LABS,Y4000\nCPC CORPORATION,,H2100\nTHE CUNEO LAW GROUP PC/ATTORNEY/ATT,,J7500\nManagement,Palomar Group,Y4000\nSECRETARY TREASURER,MAASS MIDWEST,A4200\nc.e.o.,Maxium electric corp.,B3200\nDOCTOR,SUBURBAN OTOLARYNGOLOGY,H1130\nOwner,Whitmore Steel Inc.,M2100\nOPHTHAL,\"HUFFMAN AND HUFFMAN, P.S.C.\",Y4000\nQUALITY ASSURANCE MANAGER,ORACLE USA,C5120\nCLASSROOM ASSIST,MENTOR SCHOOLS,J1200\nINV,MOROCCO US COUNCIL ON TR,Y4000\nBRASWELL ENT INC,,H2200\nWestridge School,,Y4000\nPARTNERS LIFE INSURANCE,,F3300\nOffice Mgr,Partek Inc,Y4000\nDIRECTOR,CISNEROS COMMUNITY CENTER,H3000\nAttorney,Harbert Management Company,F2100\nAccountant,\"Waco Oil & Gas, Inc.\",E1100\nPRESIDENT,MARLAR ENGINEERING CO,B4400\nNARCOTE,,Y4000\nBUSINESSWOMAN,\"TAMALES BY LA CASITA, INC\",Z9500\nHOME BUILDER,KEN BROADWATER HOMES LLC,B2000\nVice Chairman,Martin Sprochet & Gear In,M2300\nDAY DREAM ARABIANS,,Y4000\nPHYSI,NORTHERN WESTCHESTER HOSPITAL,H2100\nMOLLER INT,,Y4000\nMANAGING DIREC,KNIGHT TRADING GROUP,Y4000\nManaging Director IS,AGL Resources,E1140\nH & T ROOFING,,Y4000\nPhysician,West End OB/GYN,Y4000\nPOLICE,NEWPORT KY POLICE DEPARTMENT,X3200\nBANKING EXECUTIVE,FIRST NATIONAL BANK OF SCOTI,F1100\nHOUSE CHARGE INC,,F5000\nCook,The Inn At Reading,J1200\nAMWAY DISTRIBUTOR,,J1200\nEXECUTIVE,HEALTHSPRING,H0000\nATTORNEY,HARRISON WHITE ET. AL,K1000\nTOTH FINANCIAL ADVISORY CARE,,Y4000\nEXECUTIVE VICE,KIRBY INLAND MARINE,T6200\nJ M HOLT & SONS,,Y4000\nPhysician,\"Aadam Z Quraishi, MD PA\",H1100\nADMINISTRATO,CAPITAL CARDIOVASCULAR,H1130\nATTORNEY,COPPEDGE  LEMAN AND WARD,K1000\nArt Center,Self,Z9500\nMINER,UEI WESTRIDGE RESOURCES,Y4000\nCHAIRMAN,SOUTHERN COMMERCIAL BANK,F1100\nINFORMATION REQUESTED,INFORMATION REQUESTED,G5300\nCOMPUTER,REPUBLIC BANK & TRUST CO.,F1000\nPRESIDENT,RIVER RUN HOLDING COMPANY,Y4000\n\"CB RICHARD ELLIS - N.E. PARTNERS, L\",,F4000\nDOLE,,X5000\n\"VP, FINANCE\",BALL CORPORATION,M7300\nInformation Requested,,F2000\nPresident,Prairie Island Tribal Council,G6550\nRetired District Judge,N/A,X1200\nTEACHER,MANSFIELD SCHOOL DISTRICT,L1300\nPHYSICIAN,SOUTHWEST IMAGING & INTERVENTIONAL SPE,H1130\nACCOUNTANT,ALLEGHENY WIRELINE,Y4000\nPHYSICIAN,PRASANTA C. CHANDRA,Y4000\nPresident and CEO,Southern Community Bank,F1100\nFIRE FIGHTER / EMS,NEW BEDFORD FIRE DEPT.,L1400\nprincipal,\"Barbor Griffith & Rogers, LLC\",K2000\nACE TOMATO COMPANY INC,,Y4000\nPharmacist,Rogers Park,H3200\nVIDEO ACTION FUND,,Y4000\nREAL ESTATE MANAGING DIRECTOR,COLLIERS INTERNATIONAL,F4000\nCOMMODITY MANAGER,TRIMBLE NAVIGATOR LTD,Y4000\nbusiness consultant,homemaker/self-employed,G5200\nReal Estate Develope,Donald Zucker Company,F4200\nINDEPENDENT VETERINA,VCA,Y4000\nSENIOR VICE PRESIDENT,GEICO/SENIOR VICE PRESIDENT,F3100\nSENIOR V.P. - SUPPLY CHAIN/LOGISTICS,BUMBLE BEE FOODS LLC,G2350\nENTERPRISE RENT-A-CAR ELCO CHEVOLET,,T2500\nTHOMPSON PETROLEUM,,E1120\nJOHN HANCOCK REALTY ADVIS,,F4200\nARCHITECT,COPE LINDNER,Y4000\nNEB MANAGEMENT,,Y4000\nDARIEN CAPITAL MGMT,,F2100\nATTORNEY,BARTLIT BECJ HEDMAN PALENCHAR & SCOTT,K1100\nLETTER SENT: 12/1/2008,,K1000\nOWNER,BRAVO INSURANCE AGENCY,F3100\nLAW OFFICES OF JOHN LUECK,,K1000\nJERICHO STATE CAPITOL CORP,,Y4000\nSTATION OWNER,KAFF,C2100\nVICE PRE,MACON IRON AND SCRAP METAL,M2400\nAssistant General Co,Martin Marietta Materials,B5100\nOWNER,LOVE BOX,Y4000\nOWNER,RONSONS,Y4000\nSMT,,Y4000\nEXECUTIVE,N-SIGHT,Y4000\nSURFACEINK CORPORATION/PRESIDENT/OW,,Y4000\nCRNA,DEBORAH HEART AND LUNG CENTER,H1710\nPOLICE OFFICER,FLORIDA D. O. T.,X3000\nAgent,Middaugh Associates,Y4000\nPHYSICIAN,ADVANTAGE MEDICAL,Y4000\nCEO,Temps Inc.,Y4000\nPresident,C&M Industries,Y4000\nMONEY MANAGER,ELLIOTT MGMT. CORP.,F2700\nPSEC FIRE DEPT./FIREFIGHTER/EMS,,L1400\nNurse Practitioner,Aaron Diamond Aids R,Y4000\nPresident of Ulniv,Univ of Baltimore,H5100\nFLEISCHMAN WALSH,,K2000\nTHE RELATED COS LP,,F4100\nProfessor,KU Medical Center,H2100\nCommissioner,State Of Louisiana,X3000\nChief Operating Officer,\"Molina Healthcare, Inc\",H3700\nATTORNEY,GABLE AND GOTWALLS,K1000\nGOVERNMENT AFFAIRS,JOHAN KLEHS & COMPANY INC.,K2000\nDIRECTOR OF MARKETING,CONFIRMATRIX LABS,H3400\nRealty Executive,Paige Heavey Fine Properties Group,F4000\nBUSINESS,AMERITEL,Y4000\nCOMMITTEE FOR TIM WIRTH,,J1200\nSHAMROCK FINANCIAL CORPORATION,,F4600\nATTORNEY,HAUPEN COX & LEROY,Y4000\nLobbyist,Fierce & Isakowitz,J7400\nPHYSICIAN,ORENTREICH MEDICAL GROUP,H1100\nFINANCIAL PLANNER,GOLDMAN WALKER GROUP,Y4000\nPRESIDENT,\"BEC/ALLWASTE, INC.\",Y4000\nPhsician,Thos Jeff U,H5100\nISAACSON RAYMOND AND BONNEAU,,Y4000\nINVESTMENT MANAGEMEN,H.I.G. CAPITAL,F2600\nSOFTWARE ENGINEER,\"L'MONTE INFORMATION SERVICES\",Y4000\nBOD Director,El Paso Corporation,E1210\nDirector Engineering & Tech Services,FPL,Y4000\nOperations Manager,\"Nester Brothers, Inc.\",B0500\nVICE PRESIDENT,JP MORGAN CHASE,J1200\nSELF-EMPLOYED,NONE,A5200\nMD,Sarasota Memorial Hospital,J1200\nConsultant,Monterey Benefits LLC,J1100\nSTOCKBROKER,ROBERT BRYAN FITZPATRICK P.C.,Y4000\nAdminstrator,Loma Linda University,H5100\nDIRECTOR STATE GOVERNMENT AFFAIRS,MICROSOFT CORPORATION,C5120\nSr Director IT,Cigna,F3200\nASSOCIATE,VICTORY MEMORIAL HOSPITAL,H2100\nPRESIDENT,SPIRIT ROCK CONSULTING,K2000\nRetired,Holy Spirit Hospital,H2100\nATTORNEY,MAR OP CO,E1120\nSTATLER INDUSTRIES,,Y4000\nPHYSICIAN SCIENTIST,,H5150\nInformation Requested,AAFPRS,H1130\nFIRST NATIONAL BANK WARNEGO,,F1000\nBLACKETER DEVELOPMENT,,Y4000\nCEO,Ctr for Disease Detection,Y4000\nPresident,Charter School Admission Service,Z9500\nBROKEN BOW CLI,MEDICAL TECHNOLOGIST,Y4000\nJANE JORDAN BLACK & CO,,Y4000\nFREEMONT BEAUTY,,G5100\nFLOOD BUMSTEAD MCCARTHY INC,,Y4000\nCONSULTANT,DDI,Y4000\nAttorney,OGE Energy Corporation,E1620\nGeneral Trailer Par,General Trailer Part,Y4000\nCommunications Manager,Gordon & Schwenkmeyer,G5220\nRADIOLOGIST,ALABAMA COASTAL RADIOLOGY,H1130\nEXECUT,PAUL FREDERICK MENSTYLE INC.,Y4000\nWeb Page Design and,\"Crouch Associates, Inc.\",Y4000\nEXECUTIVE RESOURCE GROUP,,Y4000\nCRIMINAL DEFENSE LAWY,SELF EMPLOYED,Y4000\nFIRESTONE VINEYARD,,G2820\n\"SUFFOLK CONSTRUCTION CO., INC.\",,B1500\nPUBLISHER,SELF-EMPLOYED,Z9500\nCEO,\"VERITIS GROUP, INC.\",Y4000\nManager,Infineon Technologies,C5110\nG T REILLY & ASSOC,,Y4000\nPUBLIC POLICY STYSTEM INC,LOBBYIST,K2000\nCashier,\"Shaw's/Star Mkt\",Y4000\nPARTNER/GENERAL MANAGER,\"MAHOGANY, LLC/PARTNER/GENERAL MANAG\",Y4000\nINVESTOR,FOUCS INVESTMENTS,J5100\nSCHOENEMAN BROS CO,,B5200\nBUSINESS OWNER,\"The Tepper Companies, LLC\",Y4000\nJENSON PRECAST,,B5100\nEXECUTIVE,SEROLAB,J1100\nEXECUTIVE DIRECTOR,COLORADO CHIROPRACTIC,H1500\nMEDICAL IMAGING,,H0000\nManaging Director,Fund Management Services,F2600\nNORTON COMMUN HOSP,,H1710\nPRESIDENT,FIRST DATA CORPORATION,F1400\nPA,Mount Sinai Hospital,J1200\nChairman of the Boar,Acusis,G5200\nInvestments advisor/,Rothschild Investment Corp.,Y4000\nENGINEER,MITRE CORP,J7400\nBANK EXECUTIVE,SPIRIT BANK/BANK EXECUTIVE,F1100\nPRESIDENT & CEO,POWDERMET INC.,Y4000\nPATHOLOGIST,SPRING BRANCH MED CTR,H1130\nInformation Requeste,Edwards Angell Palmer & Dodg,K1000\nOWNER,HOOKS SOLUTIONS,J7400\nDEPUTY STATE DIRECTOR,USDA RURAL DEVELOPMENT,X3000\nTOMSTEN INC,,Y4000\nCONCORDE SCHOOL OF HAIR DESIGN,,G5100\nCONTRACTOR,DAVID ROTH CONSTRUCTION,B1500\nEXECUTIVE VIC,VA LINEN SERVICE INC.,G5500\nDIRECTOR,AMERICAN PSYCHIATRIC ASSOCIATION,H1110\nINQUIRED,INQUIRED,B3000\nFOUNDING PARTNER,ACON INVESTMENTS LCC,F7000\nFORESTRY CONS,BOURLAND & ASSOCIATES,Y4000\nManager,\"World Names, Inc.\",Y4000\nBanking,US Trust Company NA,F2100\nInternational Repres,Boilermakers International,LM100\nVP Security,NBA,G6400\nSPECIAL EDUCATION WORKER,SELF EMPLOYED,J1200\nJOSEPH T DAY REALTY CO,,F4200\nEngineer,Cham Hill,B4000\nNC A & T UNIVERSITY,,H5100\nSales Rep,Krackeler Scientific Inc,J7400\nANALYST,MORGAN STANLEY,F2300\nATTORNEY,\"O'CONNOR AND HANNAN\",K1200\nVice President,America Online,C5140\nRealtor,Lindquist Realtors,F4200\nBUSINESS MANAGER,WESTERN AIR SYSTEMS & CONTROLS,Y4000\nEMER,NORTHERN NJ EMERGENCY PHYSICIA,H1100\nRICHLINE CORP,,Y4000\nTHE LISLE COMPANY,,F1100\n\"DIRECTOR, CORPORATE FACILITIES\",EMERGENT BIOSOLUTIONS,D9000\nMIKE FORD AGENCY,,F4200\nPAINE HAMBLEN,,K1000\nSINGER & DEUTSCH,,K1000\nSENIOR AN,SAANFORD C BERNSTEIN & CO,F2100\nGLENDENNING AUTO,,T2000\n\"SHOWOU, BROWN\",,Y4000\nExecutive,Akin Gump,K2000\nMarketing/Advertising,VP of Rollo Latino Magazine,C1100\n\"HUFFMAN & CARPENTER, INC.\",,Y4000\nBIRDSALL ENGINEERING,,Y4000\nPA,PRAIRIE MANAGEMENT & DEVELOPMENT,F4000\nENGINEER,\"KEYSTONE FOODS, L.L.C.\",JD100\nFEDERAL AFFAIRS RE,SUN MICROSYSTEMS,C5110\nEXECUTIVE,NAMMO TALLEY/EXECUTIVE,D2000\nCEO,\"SAGER, INC.\",Y4000\nCLIMACO CLIMACO SEMINATORE ET AL,,K1000\nOfficer,Serbian Association,Y4000\nSenior Buyer,\"Sims Metal Mgmt, Inc\",J5100\nEXECUTIVE,GAINEY CORPORATION,Y4000\nSales Director,\"PCC Airfoils, LLC\",Y4000\nS & H MANAGEMENT,,Y4000\nHOMESTEAD ELECTRIC COMPANY,,B3200\nCOMPUTER TECHNINCIAN,US BANK,F1100\nVETERINARY REFERNCE,,A4500\nMS CHAPTER OF THE ACC,,H1100\nConsultant,Capgernini Us LLC,Y4000\nATTORNEY,DETROIT MEDICAL CENTER,K1000\nAssociate Director For Policy,Executive Office Of The President,X3000\ncattle buyer,self,A3000\nNETWORK ANALYST,,Y4000\nPresident,Golub Capital,Z9500\nROOFING CONTRAC,MASTER SEALERS INC.,B3000\nROBERT TRENT JONES INT,,Y4000\nBOOKSELLER,MICAWBER BOOKS,G4600\n\"Partner, Marketing and Communications\",463 Communications,Y4000\nINVESTIGATIONS,US SENATE PERM COMM,Y4000\nRegistered Nurse,Cleveland Clinic Foundation,Z9000\nTeacher,Trinity Episcopal School,X3500\n\"Owner, Health Club\",\"American Facilities, Inc.\",Y4000\nPresident,\"Conventures, Inc.\",Y4000\nSMITHBACK EXC INC,,E4200\nPresident,Enger Urology,H1130\nREAL ESTATE,ABRAMSON PROPERTIES,Z9500\nDirector of Global Public Policy,Google Inc,C5140\nCITY COUNCIL MEMB,CITY OF SAN MATEO,X3000\nST AGNES HEALTH CARE,,H0000\nMortage Banker,James B Nutter & Co,F4600\nFINANCIA,WATERSHED ASSET MANAGEMENT,F2100\ndole,,F4600\nSCHWABE WILLIAMSON WYATT LAW FIRM,,K1000\nSOFTWARE ENGINEER,REDBACK NETWORKS,T1400\nMORTGAGE BROKER,WALKER & DUNLOP/MORTGAGE BROKER,F4000\nEXECU,UMASS MEMORIAL MEDICAL CENTER,H2100\nCEO,Intermix,Y4000\nBROWN ALCANTAR,,T0000\nPhysician,American College of Obstetricians and,H1130\nSEMIRETIRED,,Y4000\n\"ST BERNARD'S SCHOOL\",,H5100\nState Employee,State of Florida,X3000\nHOLTON HOMES INC,,G1200\nOwner,Abbey Theatre,Y0000\nConsultant,Kathleen McGrath,C2000\nManager,CSAA California Sate Automobile,Y4000\nCEO,Perdue Farms,A2300\nNurse Anesthetist,Kansas University,H5100\nESSROC ITALCEMENTI GROUP,,B5100\nREALTOR,DIANE TURTON REAL ESTATE,F4000\nPresident & CEO,Rutherford Oil Corporation,E1120\nPolitical Affairs Director,North Carolina Association of Realtors,F4200\nSTAFF,\"NAT'L ASSN OF REALTORS\",J9000\nFISHER SCIENTIFIC INTERNA,,M9000\nSPORTS PHYSICAN,,H1100\nSELF-EMPLOYED/PLANNER/DEVELOPER,,G5200\nOWNER,COASTAL SPECIALTY PRODUCTS,Y4000\nAttorney,White and Williams LLP,Z9500\nAttorney/Military Re,self/US Army,X5000\nATTORNEY,\"SMIT & KRAGT, PC\",K1000\nEXECUTIVE,ENERGIZER,M2300\nBERMALILLO PAR,BERNALILLO COUNTY PA,X3000\nRetured,Retuired,X1200\nExecutive,S&M Brands Inc.,A1300\nSELF EMPLOYER,,Z1100\nSMALL BUSINESS SERV,,G5270\nOWNER,ROEBUCK AUCTIONS,G5000\nAUTO EXECUTIVE,AMERICAN AXLE & MFG.,T2200\nSCHOOR DEPALMA & CANGER,,B4400\nChairman,BRANDYWINE REALTY TRUST,F4200\nInvestment Advisor,\"Shufro, Rose & Co LLC\",F2100\nREAL ESTATE & DEVELOP,SELF-EMPLOYED,F4000\nCOMMERCIAL REAL ESTATE DEVELOPER,DIXON COMPANIES INC,F4000\nARTIST,SCHOOL OF VISUAL ARTS,H5100\nCHIEF FINANCI,THE RIVERSIDE COMPANY,F2100\nPhysician,Dept Of Veterams Affairs,X3000\nPUBLICITY,CALVIN KLEIN,M3000\nPresident/Chief Exec,\"Jordan, Jones and Goulding, Inc.\",B4000\nPHYSICIAN EDUCATOR,SELF,H1100\nPRESIDENT,WOLFIN MORTAGAGE CO.,Y4000\nSal,B-G Mechanical Contractors Inc.,Y4000\nENGINEER,CONCORD ATLANTIC,Y4000\nPresident/Legislativ,Legislative Solutions Incorpor,Y4000\nWING HOP FUNG GINSENG CHINA PROD,,G2100\nATTORNEY,KINDRED HEALTHCARE INC.,H2100\nAGENT,STRATEGIC FINANCIAL SERVICES,Y4000\nD.O.C. OPTICS CORP.,,Y4000\nPRIMA CHECK CASHING INC,,F1420\nBEGA & INFONE INC,,Y4000\nENTREPRENEUR & INVESTOR,AURIC TECHNOLOGY,C5120\nVICE,THE DUTKO GROUP COMPANIES INC.,K2000\nN/A/COMMUNITY ACTIVIST,,H5100\nPRESIDENT,SELECT ENERGY INC.,E1000\nCOLUMBUS REGIONAL,,Y4000\nQA MANAGER,WASHINGTON RIVER PROTECTION SOLUTIONS,Y4000\nEXECUTIVE,ROYAL ESCROW,Y4000\nDOCTOR,VA MEDICAL CENTER,H1130\nPRIVERWOOD INTERNATIONAL,,Y4000\nWHOLESALE EXECUTIVE,MIDWAY WHOLESALE TOPEKA KS,Z9500\nPUBLIC HEALTH,STATE OF MAINE,X3000\nPRESI,ADVANTAGE 2000 CONSULTANT INC,X1200\nINFORMATION REQUESTED,WARRIOR LACROSSE,Y4000\nGeneral Manager,OBried Auto Team,T2000\nGROUP EXECUTIVE V,NAC INTERNATIONAL,Y4000\nPRESIDENT,\"J. & T. ELGIN, L.L.C.\",Y4000\nVP-MARKETING DIR,PUTNAM INVESTMENTS,F2100\nInvestor,Retired,JE300\nWEBER & SCHER MANUFACTURING,,Y4000\nPresident,Haris Design and Construction Co,B1500\nChief Operating Officer,Comcast Shared Services Corp,C2200\nPRESIDEN,\"STARVAGGI INDUSTRIES, INC.\",Y4000\n\"CENTER FOR THE STUDY OF BOY'S LIVES\",,Y4000\nFINANCIAL ASSET MANAGEMENT,,F2000\n\"FRAUNHEIM AND O'ROURKE\",,K2000\nManaging Director,Shelter Rock Holdings LLC,K2000\nExecutive,Learning Material,Y4000\nPUBLIC AFFAIRS M,AMERICAN RED CROSS,X4000\nSALES,KIMBERLY-CLARK CORPORATION,A5200\nTECHNICAL ADVISOR,FLORIDA HOUSING COALITION,Y4000\nc.e.o.,\"The Radiant Group, LLC\",Y4000\nEXECUTIVE,THE AMERICAN COAL COMPANY,E1210\nEXECUTIVE,R.H.I.,Y4000\nSelf,Ag. Consultant,G0000\nCORPORATE AFFAIRS,PFIZER INC,H4300\nReal Estate Broker,Joyner Fine Properties,F4200\nContractor,Ranger Construction,B1000\nVICE PRESIDENT HUMAN RESOURCES,HEALTH ALLIANCE HOSPITALS,H2100\nBARSE & BARSE CPAS PA,,F1200\nLOUIS KRAFT CO,,Y4000\nFILE CLERK,CHADBOURNE PARKE LLP,K1200\nLUMB,BARGE FOREST PRODUCTS CO. INC.,A5000\nConsultant,\"MLC Consulting, LLC\",Y4000\nCLINICAL SOCIAL WORKER,APEX COUNSELING CENTER,Y4000\nREAL ESTATE BROKER,RESULTS REALTY SERVICE,F4200\nChairman,\"AB Hirschfeld Press, INC\",C1300\nPartner,Manzanita Capital Ltd,F2600\nATTORNEY,JUDICIARY COMMITTEE/U.S. HOUSE OF REPR,X3000\nTreasuer,Chicago Housing Authority,F4000\nOWNER,GROTH WINERY,G2820\nDEVELOPER,OHERA,Y4000\nMANAGER,WRPS LLC,Y4000\nEXECUTIVE,DIGITAL VISION INC,C5120\nUNION NATL BANK,,F1100\nEXECUTIVE DIRECTOR,DE CENTER FOR JUSTIICE,Z9500\nROBINSON-GRIMES & CO,,Y4000\nPHYSICIAN MARKETING CONSU,,H1100\nARH CHEM INC,,M1000\nScheduler,Owens Illinois,J1200\nATTORNEY,POYNER & SPRUILL,K1000\nJUDGE,STATE WC/JUDGE,X3000\nC.E.O.,\"B. & B. MICROSCOPES, LTD.\",M9100\nFRIDRICH & CLARK,,F4000\nLAWYER,FREEMAN LEWIS LLP,K1000\nAUTO DEALER,\"ELLIOTT CHEVROLET, INC.\",T2300\nExex VP and Chief Financial Officer,\"Unitrin, Inc\",F3100\nOrthopaedic Surgeon,Baldwin Bone and Joint,H1130\nFORESTER MANAGER,SELF,A5000\nCORP PRESIDENT,SERCO MOLD INC.,J1100\nATTORNEY,LAW OFFICE OF ART BRENDER,K1000\nFarmer,T & R Farms,A1000\nSTRUCTURAL ENGINEER,BROWN AND CALDWELL,E2000\nVice President,The Weather Channel Interactiv,C2200\nCONSULTANT,INNOVATIVE PROCESS CONSULTING,Y4000\nDR BURNS M D,,H1100\nEXECUTIVE,SANMINA-SCI,C5130\nPrincipal,The kenny Group,G5210\nAttorney,Faegre,K1000\nAttorney,The Advocacy Group,Y4000\nMONTGOMERY INVESTMENTS,,Y4000\nSoftware Developer,Compuware,C5120\nINSURANCE,VALLEY INS ASSOC.,F3100\nENGINEER,LEFTWICH CONSULTING,Y4000\nBOCA MICRO TECHNOLOGY/PRESIDENT/CEO,,Y4000\nWholesale Distribution,Self-Employed,G0000\nPeachtree Orthopaedic Clinic,,H1130\nState University System,,J1200\nDENTIST/ENDODONTIST,\"CENTRAL MAINE ENDODONTICS, P.A.D\",H1400\nMorrison Fenske & Sund,,K1000\nTelecommunications Engineer,Sprint,C4200\nSACHS ELECTRIC CO,,B3200\nPROJECT MANAGER,AT&T WIRELESS,C4300\nExecutive,Magnolia Management Corporation,H2200\nCollege Teacher,Suny Em St Col,H5100\nMANUFACTURER,BAST BATH SYSTEMS,M1000\nVP,1 800 CONTACTS,Y4000\nOwner,Complete Pest & Lawn Service,G5700\nSTRONGHAVEN,,Y4000\nCattle Breeder,Self Employed,A3000\nATTORNEY,\"SCHOONMAKER, GEORGE, COLIN & BLOMBERG,\",Y4000\nOWNER/OPERATOR,MICON,Y4000\nGREG ORCHARDS & PRODUCE INC,,A1400\nS COUNTY ORTHOPAEDIC SPECIALIS,,H1130\nFILM PRODUCER,EYA PRODUCTIONS,Y4000\nOwner,UrgentCash,F5500\nAttorney,Fox Cable Networks,C2200\nCommunications,Brown Flynn,Y4000\nSecretary,Erie Machine and Engineering,B4400\nPARTNER,BRAND GLICK & BRAND,Y4000\nREAL ESTATE SALE,ZECKENDORS MARKETING,Y4000\nDIRECTOR OF FACILITATOR TRAINING & DEV,PATHWAYS TO LEADERSHIP/DIRECTOR OF,Y4000\nCONSULTANT,MRSS,Y4000\nhouse wife,Self,J7400\nSMALL BUSINESS OWNER,EMPIRE ABRASIVE EQUIPMENT COMPANY,M2300\nSELF/ARTIST/PHILANTHROPIST,,J7400\nL & L MFG CO,,Y4000\nVeterinarian,Cascade Animal Medical Center,A4500\nSTRATTON INTERESTS INC,,Y4000\nAT&T ALACOM,,C4200\nLAWYER,WORSHAM FORSYTHE,K1000\nTHE GILMAN PAPER CO.,,A5200\nPRESIDENT,\"FIRST BANK, CLEWISTON FL\",F1100\nPresident,Luevano Heart Construction,B1500\nKEMPFER SAWMILL INC,,Y4000\nNM SPORTS & WELLNESS,,Y4000\nDirector-Marketing,Sanderson Farms,A2300\nSANDOZ & SANDOZ,,Y4000\nMAVERICK STIMULATION CO LL,,Y4000\nREAL ESTATE DEVELOPER,HILLCREST PROPERTIES,F4000\nINGRIAN NETWORKS,,Y4000\nConsultant,C & I Distribution Inc,Y4000\nCENTRAL MECHANICAL CONST CO,,B0500\nHARGRAY COMMUNICATIONS,,Y4000\nGrape grower,Ridder Vineyard,G2810\nClaims Adjuster,US Military Consulting,Y4000\nOVERLAKE REPRODUCTIVE HEALTH,,H2100\npublic health,kaiser,H2000\nST FRANCIS HOSPITAL INC,,H2100\nJOURNALIST,SELF,C1100\nENGINEER,\"SUMMIT UTILITIES, INC.\",Y4000\nHANCE SCARBOROUGH WRIGHT,,J9000\nSTEARNS WEAVER ET AL,,K1000\nSr Dir Product Dev Eng,Comcast (Cc) of Willow Grove,C2200\nVice President,XRT Express Reefer Transport,Y4000\nProfessor,Lenoir-rhyne Col,J1200\nANDREW WISDOM ATTY AT LAW,,K1000\nENGLANDER & FISCHER,,Y4000\nATTORNEY,BONACCORSO & ASSOC,Y4000\nFURUTANI SATO & KOMATSUBARA,,Y4000\nCURAFLEX,,Y4000\nProfessor,University of N.C.,H5100\nGARDNERS CLEANERS,,Y4000\nPRESIDENT,KALINS INDOOR COMFORT,Y4000\nTEACHER,THE DALTON SHCOOL,Y4000\nExecutive,Plains Cotton,A1100\nGENERAL CONTRACTOR,SEL-EMPLOYED,JE300\nAMERICAN PUBLIC PAYPHONE CORP,,C4600\nreal estate,Bicentennial Realtors,F4200\nPHYSICIAN,GROUP HEALTH,H1130\nBusiness Executive,\"The Masterson Company, Inc.\",G2200\nPHILADELPHIA EDUCATION FUN,DIRECTOR,H5000\nEducation Consultant,Voltt,Y4000\nSTUDENT,MISSOURI BAPTIST CONVENTION,Y4000\nLAWYER,SCHWARE WILLIAMSONS & COMPANY,K1000\nFOLEY HOAG & ELIT,,K1000\nDR SURESH AMINA,,H1100\nCDC MGMT CORP,,J7400\nBRANCH MANAGER,AMERICAN LOAN,Y4000\nATTORNEY,WAYNE D EFFRON,Y4000\nEXECUTIVE,TULSA TRUCK MFG.,Y4000\nCHEMICAL SALES,PC ASSOCIATES,Y4000\nARCHITECT,CONDIA & ORNELAS ARCHITECTS,B4200\nSALES,JOHNSON & JOHNSON,Z9500\nArchitect,\"El Taller Colaborativo, PC\",Y4000\nPRINCIPAL,\"NEW CENTURY PLANNERS, LLC\",Y4000\nVICE PRES,ZILA NUTRACEUTICALS,Y4000\nATTORNEY,\"PARTNER-HAYES, HARKEY, SMITH & CASCIO,\",Y4000\nINVESTMENT MANAGER,T. ROWE PRICE GROUP,Y4000\nATTORNEY,MUCHMORE & WALWORK,K1000\nProfessor,Strayer Uni / Ibb-Voa,H5100\nDivision Marketing Manager,Brown-Forman Corporation,G2820\nOWNER,BAILI DEVELOPMENT INC,Y4000\nCLASSICIST,NOT EMPLOYED,Y1000\nPRESIDENT,APPLIED TECHNOLOGY,B4400\nINVESTMENT ADVI,CITADEL INVESTMENTS,F2700\nPRINCIPAL,ORETHER FOODS,Y4000\nBOKKEEPER,MARK YOKERS,Y4000\nGENERAL COUNSEL,INDIANAPOLIS AUTHORITY AIRPORT,T1600\nSVP,CHARTER CONSULTING,Y4000\n\"VP, Government Realt\",\"NASDAQ Stock Market, Inc.\",F2400\nASTRO DOME USA,,G6100\nTHE UNI-KOOL COMPANY,,A1000\nBEVERAGE WHOLESALER,,G5250\nCHAIRMAN,HARTE-HANKS INC.,G5220\nBOOKKEEPER,SELF EMPLOYED,J2200\nCEO,UPG OAK BROOK IL 60523,Y4000\nEngineer,Loral,C4400\nEXECUT,LYNX INVESTMENT ADVISORY LLC,F2100\nHealth Administratio,University of Michigan,J7400\nATLAS WELDING,,Z9600\nPARTNER,\"FLANAGAN, LIEBERMAN, HOFFMAN & SWAIM\",K1000\nTAG MANUFACTURING,,Y4000\nVice President,Zurich US,F3400\nBRANCH MANAGER,TOYOTA FORKLIFTS OF AUGUSTA,Y4000\nOWNER,OAK LEAF MARINA INC.,T6000\nCONSTRUCTION & FARMER,SELF EMPLOYED,B1500\nS W BELL TELEPHONE,,C4100\nHOMEMAKER,NOT-EMPLOYED/HOMEMAKER,H5100\nOwner,\"Ray Dial Collision Center, Inc.\",Y4000\nFOLEY AND DARDNER,,Y4000\nMANAGER,WHITE HEN PANTRY,Y4000\nRETIRED ATTORNEY,WACHTELL LIPTON ROSEN & KATZ/RETIRE,K1200\nROBBINS BERLINER & CARSON,,Y4000\nExecutive,\"Marinakis Chartering, Inc\",Y4000\nPresident,American Legacy Fishing,Y4000\nADMINISTRATOR,SPECIAL SCHOOL DISTRICT,H5100\nProfessor,Univ. of Penn. Law School,H5170\n\"KEATING, MEUTHING, & KLEKAMP\",,K1000\nWHITTIER LAW SCHOOL,,K1000\nEAST TENN APPRAISAL,,Y4000\nDIR-NAVY PROGRAMS,BOEING,D2000\nNETHERLAND RUBBER CO,,M1500\nGovernment Represen,\"Global Ctr, Inc\",Y4000\nFinance Off,City Of Bromington,J1200\nVICE PRE,IL INSTITUTE OF TECHNOLOGY,H5100\nChairman & CEO,Computer Sales International Inc.,C5100\nEN,COLORADO ENVIRONMENTAL COALITION,Y4000\nCLM AUTO & TRUCK SALVAGE,,T2400\nCHAIRMAN,ASHLAND CONSTRUCTION,B1500\nREGISTERED NURSE,VITAS HOSPICE,H3100\nOAKWOOD BROKERAGE,,Y4000\nSenior Hr Administra,City Of Atlanta Georgia,X3000\n\"CORPORATE BENEFIT DESIGN, LLC\",,Y4000\nOffice Manager,Portland Chiropractic,H1500\nBusiness Owner,Soutern Eagle Sales and Sevices LP,Y4000\nNight Supervisor,Milberg Weiss LLP,K1100\nAUTO DEALER,BUD MULCAHY JEEP,T2300\nDOCTOR,CHICAGO UNIVERSITY HOSPITAL,H2100\nOKLAHOMA ALLERGY & AST,,H1100\nGRAPE GROWER,SELF-EMPLOYED,A1400\nConsultant,Eightfold Way Consultants,J1200\nHomemaker,none,B4400\nCARDINAL PACKAGING INC,,A2000\nBUSINESS OWNER,VISTA FUELS,Y4000\nUS AIR,,Y4000\nEXECUTIVE,TEXAS PETROCHEMICALS CORP,E1100\nVICE CHAIRMAN,UNION BEVERAGE CO.,Y4000\nWIEN & MALKIN LLP,,F2100\nSVP TELEHEALT US,AMERICAN WELL,Y4000\nHuman Rights Advocacy,Self employed,G0000\nLAWYER,FABER DAEUFER & ROSENBERG PC,K1000\nREAL EST,STONEHILL MANAGEMENT CORP.,F4000\nPARTNER,HANOVER PLAZA LLC,Y4000\nHARRIS RANCH,,Z5100\nMarketing/Advertising,Schifter+Partners,Y4000\nATTORNEY,\"LAU & ASSOCIATES, LLC\",Z9500\nBAGH ASSOCIATES INC,,Y4000\nNon-Political Marketing Consultant,Self-Employed,Y4000\nDEPARTMENT OF POLI,BROWN UNIVERSITY,H5100\nPresident,Symes Toyota of Pasadena,T2310\nBUSINESS,\"BDGR, INC.\",T9300\nCFO,FLUID CONNECTOR PRODUCTS,Y4000\nSr Vice President,Pacific Life,F3300\nExec VP and CFO,Ergon,E1160\nNUCOR YAMATO STEEL,,M2100\nBUSINESS OWNER,SIDE STREET ESPRESSO,Z9500\nUS Playing Card Company,,M4000\nSr. VP,William Morris Agency,C2900\nHARBOUR INNS OF BALTIMOR,,T9100\nretired/not employed,None,J7400\nREAL ESTATE,BOERKE CO,F4000\nTHEATRICAL,PACE THEATRICAL COMPANY,C2900\nCEO,Suzman & Cole Design,J1200\nPRESIDENT,TOTAL CS,Y4000\nPRESIDENT,\"DIETARY DIRECTIONS, INC.\",H1700\nOWNER,BRADLEY EQUIPMENT RENTALS,G5300\nOWNER,BUQUET DISTRIBUTING,G2850\nBUTTENWIESER & ASSOC,,J1200\nRetired,HIP Of Greater NY,X1200\nReal Estate Broker,Iowa Realty,F4200\n,INTERNATIONAL CRANIOFACIAL INSTITU,Y4000\n\"GELMAN, ROSENBERG & FREEDMAN\",,J7150\nVenture Capital,Rustic Canyon Partners,F2500\nVICE PRESID,ARBELLA INSURANCE GROUP,F3100\nDOCUMENT EXAMINER,SELF,Y4000\nRepresentative Director,TononGeneral Sekiyu KK,Y4000\nSTARWOOD CAPITOL,,F4000\nATTORNEY,ACE,F3400\nENTREPRENEUR,NEXT VENTURE LLC,Y4000\nAttorney,Joy Mining Machinery,E1200\nTHE TRAVELERS COMPANIES INC.,,F3400\nOWNER,LIBERTY HOMES,B2000\nPRESIDENT,\"EUTAW CONSTRUCTION CO., INC\",B1500\nMachinest,Parker Hannifin,M2300\nState Legislator,Retired,X1200\nWARDWOOD ARMATURE REPAIR CO,,G5600\nRealtor,Cressy and Everett,Y4000\nLETTER SENT,INFORMATION REQUEST,H1400\nPresident,The First American Corp,F4300\nPresident,Boston Realty Advisers,F4200\nCEO,klj Solutions,Y4000\nReal Estate Developer,AMERICAN PROPERTY ENTERPRISES,F4100\nCEO/President,Intergenerational Strategies,Y4000\nVP,MCLAREN BAY REGION,Y4000\nINTERNATIONAL FINANCE CONSULTANT,SELF EMPLOYED,F5000\nSAN ANTONIO INDEPENDENT SCHOOL DIST,,X3500\nCFO,Rose Medical Center,H2100\nASSOCIATE,BAKER & MCKENZIE/ASSOCIATE,K1000\nOIL & GAS INVESTMENT,,F7000\nV.P. STRATEGIC A,URBAN AMERICA L.P.,Y4000\nVice President and Treasurer,Anheuser Busch Cos,G2810\nDIREC,ADVANCED TECHNOLOGY INSTITUTE,C5000\nHALLMARK NURSING CENTERS,,H2200\n\"WAFFLE HOUSE, INC./G/R\",,G2900\nOWNER,BAILEY FAMILY INVESTMENTS,F0000\nAt Home Parent,Self-employed,G0000\nBARNESS ORGANIZAT,,J5100\nREAL,\"CARDON DEVELOPMENT GROUP, LLC\",F4100\nPARTNE,GRIFFIN JOHNSON & ASSOCIATES,K2100\nMAURY MCGER INTERIOR,,Y4000\nPRESIDENT,PETRUS ENERGY LLC,E1000\nBenefits President,\"N. E. P. B., INC.\",Y4000\nFINANCIAL SERVICES REP.,METLIFE,F3300\nWILLIAMS/BAILEY/ATTORNEY,,K1100\nOFFICE MANAGER,NATIONWIDE INSURANCE,F3100\nEXECUTIVE,\"REPUBLIC TITLE OF TEXAS, INC.\",J1100\nSr Asst Gc&Asst Secy,Pfizer Legal-US,H4300\nPhysician,\"Ernest M DiGeronimo, MD, PA\",H1100\nINVESTMENT MANAGER,THOMAS H LEE PARTNERS,F2600\nPresident,\"Guardian Marine Int'l Inc.\",T6100\nHead of Trading,\"Renaissance Technologies, LLC\",F2700\nCHAIRMAN,TAMARACK PETROLEUM COMPANY INC.,E1100\nHARDIGG INDUSTRIES,,Y4000\nKY Department of Aviation,,X3000\nAssociate,Nossaman,K1000\n\"President-CEO, San D\",Time Warner Cable,C2000\nArchitect/Writer,Self employed,J1200\nCASCADIA DEVELOPMENT COMPANY,,Y4000\nANALYST,SAGAPONACK PARTNERS,Y4000\nGOVERNMENT RELAT,SULLIVAN & LESHANE,Y4000\nOwner,Carson Mechanical Inc.,Y4000\nChairman and CEO,\"Medtronic, Inc.\",H4100\nCHEF AMERICA INC,,G2100\nCONGRESSIONAL LIAISON,US DEPARTMENT OF HOMELAND SECURITY,X3000\nChief Executive Officer,Porter Adventist Hospital,H2100\nEXECUTIVE,HERITAGE HOME HEALTH,H3100\nAFFORDABLE HOUSING,,Y4000\nProsthetist/Orthotis,\"American P&O, Inc.\",H4100\nMEDICAL DOCTOR,VANDERBILT MEDICAL CENTER/MEDICAL D,H2100\nENGINEER,C.P.H. ENGINEERS,B4400\nEngineer,\"Commonwealth Associates, Inc.\",F2100\nRICHLAND DEVELOPMENT,,Y4000\nUS FEDERAL GOVERNMEN,,J7400\nCommericial Real Estate Loan Consultan,WAMU,J1100\nHARRIS & SUTTON,,Y4000\nPASSCO COMPANIES,,F4000\nCHI,PROFESSIONAL FIRELIGHTERS OF MA,Y4000\nDirector Of Reimburs,Pavia Health Inc.,H0000\nPROGRAMMER,UPS/PROGRAMMER,T7100\nCEO,\"FLORIDA HIROPRACTIC ASSOCIATION, INC.\",Y4000\nRIPPY WHITLOW & RONC LLP,,Y4000\nCHRISTENSEN MILLER FINK JACOBS,,Y4000\nCONSULTANT,\"ASM RECYCLING, INC\",M2400\nCHERRY HILL CONSTRUCTION,,B1000\nPhysician,Stormont Vail Hospital,H1100\nGravina Matte & Smith,Public Relations,K1000\nCINEMA CITY & MT ST,,C2700\nPHYSICIAN,RICHARD COLVIN,H1100\nReal Estate Broker,CB Richard Ellis Inc,F4200\nINVESTMENT ADVISORY,SELF-EMPLOYED,F2100\nSR. MORTGAGE PRODUCTS,SELF EMPLOYED,F4600\nFINANCIAL ADVI,FRONTIER WEALTH MGMT,F2100\nEAGLE COMMUNICATIONS INC,,F4300\nSTEWART SYSTEMS,,M2300\nSALES REP,EXECUTIVE GIFT SERVICES,J5100\nProgrammer,\"Media Cybernetics, Inc\",Y4000\nPRESIDENT,LEWIS OPERATING CORP.,F4000\nSound Designer,Freelance,G5200\nSR. MANAGING DIRECTOR,CITADEL,F2100\nPresident,Selling Source,G5210\nGeneral Counsel,Lincoln Electric System,E1600\nStaff,Sovereign Bank,F1100\nFREUDETHAL & ELKOWITZ,,E2000\nG & L PIPE ENGINEERING INC,,Y4000\nJ H COHN,,F3100\nEXECUTIVE,KELLEY GROUP,Y4000\nPROGRAM MANAGER,\"PACIFIC DEFENSE SOLUTIONS, LLC\",Y4000\nSMITH HUVAL & ASSOCIATES LLC,,Y4000\nRADIOLOGIST,MI RADIOLOGY SERVICES,H1130\nMANAGER,COCOPAH NURSERIES,A8000\nINVESTOR,ULYSSES MANAGEMENT LLC,G5200\nPresident,Npp Inc.,Y4000\nBUSINESSMAN,HITRON,Y4000\nEXECUTIVE,HIGHLAND OIL,E1100\nPRESTON THOUGRIMSN,,K1000\nExecutive,Mothers Against Violence,J7000\nPresident & CEO,\"MediSync Midwest, LLC\",F5000\n\"Director, Operations\",Wexner Foundation,Y4000\nNON-PROFIT,SELF EMPLOYED / SAME NAME,X4000\nPresident,AW Perry,F4000\nIntl Educ Program Officer,CIES,Z9500\nOPTOMETRIST,Self employed,H1120\nSALES,SOLTEX,Y4000\nDOCTOR,SAPERSTEIN MD INC.,H1100\nPRESIDENT,AMERICAN REFRIGERATION SUPPLIES INC.,Y4000\nD.M.N.M.,,Y4000\nOWNER,INFO PRO,Y4000\nContractor,Ronkin Construction,B1500\nATTORNEY,\"MORGAN,LEWIS & BOCKIUS LLP\",K1000\nIT Project Mgmt Manager,AT&T,C4100\nBUSINESS,LOS ANGELES RUBBER COMPANY,M1500\nPRINCIPAL,ALFONSO ARCHITECTS,B4200\nCEO,\"OCTAVIAN ADVISORS, LP\",Y4000\nHABUSH HABUSH ET AL,,K1000\nMarketing Communications,Schafer Condon Carter,J7400\nGENERAL,ENVIROMENTAL CHEMICAL CORP,M1000\nOWNER,RAFTER O RANCH,A3000\nPATHOLOGIST,BROOKHAVEN MEM HOSP MED CTR,H1130\nHANNAFORD,BUYER,Y4000\n\"APARTMENT'S OWNER\",,F4500\nINTERNATIONAL AUTO BODY,,T2400\nSpecial Agent (crimi,\"Retired, DHS (formerly US Customs Svc)\",X1200\nOWNER,\"SWIFT SUPPLY, INC.\",Y4000\nECONOMIC ANALYST,LG&E ENERGY CORP.,Y4000\nREGIONAL PRESIDENT,FIRST TECH CU,F1300\nCHILTON RANCH & CATTLE CO,,A3000\nDisaster Restoration,Self,G0000\nJM FORBES COMPANY,,Y4000\nCHARLOTTE CONV & VISITORS BUR,,G0000\nATTORNEY,MCCALLA REYMER,K1000\nMANAGING DIRECTOR REAL ESTATE FINANCE,CIT,F1400\nREAL ESTATE BROKER,\"MARY AILEEN MATHEIS, RLTR\",Z9500\n\"VP, INFORMATION TECHNOLOGY\",\"CORNING, INC.\",C5110\nMRI ASSOCIATES,,Y4000\nexecutive,Electric Mobility,B3200\nRELIABLE MECHANICAL,,Y4000\nINFO REQUESTED,Ron Larson C D T,Y4000\nEXECU,\"PORTERFIELD & LOWENTHAL, INC.\",K2000\nPresident,Barry Construction Co.,B1500\nNOT IN WORKFORCE,NOT IN WORKFORCE,A3000\nPrincipal,Marlowe & Co.,K2000\nPRIVATE EQUITY,WELSH CARSON ANDERSON & STOWE,F2600\nSWARTHMORE ASSET MANAGEMENT,,F0000\n\"CEO, SUBSIDIARY\",PROMONTORY FINANCIAL,F5000\nBODMAN LONGLEY & DAHLING,,K1000\nSENIOR VICE PRESIDENT,DTE ENERGY,E1620\nED MARSHALL JEWELERS,,Y4000\nEXECUTIVE,BFG URBAN,E1120\nEconomist,Cornell Univ,Z9500\nRICHARD LAWRENCE & ASSOC,,Y4000\nTREASURER,\"ZACHRY INDUSTRIAL, INC.\",B1000\nATTOR,\"CHILDREN'S HOSPITAL OF PHILA.\",H2100\nOwner,\"Robert H. Asher, Attorney At Law\",K1000\nOREGON #220 TEACHER,,H5000\ncfo,Gateway Bank of SW Florida,F1000\nVICE PRESIDENT,\"BILL SMITH, INC.\",Y4000\nCORPORATE OFFICER,AERAS,Y4000\nLYNN WOLFF ASSOCIATES,,Y4000\nOffice Manager,Dr. Sanjeev Anand,H1100\nInvestment Banker,East-West Financial Services,F0000\nMC Advisory LLC,,Y4000\nReal Estate Broker,Re/max Advantage - McCalla,F4200\nATTORNEY,LAW OFFICES OF JAMES PICCIONE,K1000\nOFFICE MANAGER,JOSEPH S. WASSEF MDPC,H1100\nENTREPRENEUR,VARIOUS: BOKMARKETGROUP: TEENFREE,Y4000\nprivate investigator,Burnside Investigations,K1000\nVice President of Arizona Operations,Summerwinds Garden Centers Inc,Y4000\nPresident and CEO,\"Capital South Partners, LLC\",Y4000\nFINANCE M,UNIVERSAL NURSING SERVICE,Y4000\nATTORNEY,OGDEN NEWELL & WELCH P.L.L.C.,K1000\nADVISOR,HERITAGE FOUNDATION,X4000\nVP,RAPISCAN SYSTEMS,Z9500\nRetired,JPM Chase & Co.,F1100\nDirector - Legislati,Boeing Company,D2000\nOwner/Priciple/Partner,AD Baker Homes,B2000\nBUSINESSMAN,ALTA PETE INC.,Y4000\nPastor,Sacred Heart Church,X7000\nMayfield & Robinson Inc.,,Y4000\nHOSPICE CHAPLAIN,VITAS INNOVATIVE HOSPICE CARE,H3100\nCOMPUTER GENERATED SOLUTIONS,,C5130\nClassroom Teacher,SALT LAKE CITY DISTRICT,L1300\nAdvertisi,Marketing Architects Inc.,B4200\nGUND INVESTMENT CO,,J9000\nLAWYER,RIEBEL LAW,Y4000\nREAL ESTATE DEVELOPMENT,SELF,C1100\nCEO,SUSQUEHANNA PFALTZGRAF,G0000\nFranchise Operator,\"Clements Management, LLC\",G2900\nCEO,IFIXME,Y4000\nADMINI,NEWINGTON CROPSEY FOUNDATION,Y4000\nSUNSTREET FOOD CORPORATION,,Y4000\nACCOUNTANT,,G5270\nCEO,\"PLANETARY RESOURCES, INC.\",Y4000\n\"Advertising, Public\",Self-Employed,G5210\nElder Law Atty,Cohen & Dwin,Y4000\nC.P A,PRICEWATERHOUSE COOPERS L L P,F5100\nPILOT,I3,Y4000\nABBOTT FARMS,,A1400\nPhysician,Oregon Health & Science University,H5100\nOPTOMETRIST,MARK R. KAPPERMAN D.D P.C.,Y4000\nFOCAL POINT HARDWARE,,G4500\nJAMES S SWARTZ,,H1700\nKIESCHNICK VINEYARDS,,J7150\nGENERAL AGENT,GUARDINA LIFE INS. CO.,F3100\nOwner,New Millenium Properties,F4000\nOwner,\"BTS, Inc.\",Y4000\nRETAIL JEWELS,,G4600\nINVESTOR,WESTERN FIDELITY TRUSTEES,Y4000\nPROFESSOR OF PHYSICS,UCSB.,H5100\nEMPLOYEE BENEFITS ADVISOR,LONGFELLOW BENEFITS,Y4000\nPHYSICIAN,EMERGENCY SERVICES ASSOCIATES,Y4000\nPRESIDENT,CROFTON HILLS COLLEGE,H5100\nExecutive,Coro Center for Civic Leadership,Y4000\nPresident,Maimonides Medical Center,H2100\nBANKER,BANK OF OZARKS,F1100\nATTOR,MILBANKTWEEDHADLEY&MCCLOY LLP,Z9500\nCONSULTANT,PMCI HAWAII,K2000\nRETIRED,BAIRD & COMPANY,X1200\nATTORNEY,HOFHEINMER NURBAUM,K1000\nINSURANCE CONSULTING,SELF-EMPLOYED,F3100\nOWNER,ADVANCED BODY MEDICINE,H1100\nTHOROUGHBRED BREEDER,SELF-EMPLOYED,A3500\nCENTRAL MFG SERV INC,,T7200\nAdoption Counsellor,Animal Rescue League,Y4000\nPRESIDENT & CEO,EATON MEAL PRODUCTS,M5000\nManaging Director,\"J&H Marsh & McLennan, Inc.\",F3100\nWRITER - PRODUCER TV & FILM,SELF,Z9500\nMACHINIST,SELF RETIRED,J1100\nPresident,The Molasky Companies,Y4000\nOwner,Herbert Lumber Co.,A5000\nNEW YORK & PRESBYTERIAN HOSP,,H2100\nATTORNEY,DAVIS & SCARRITT,K1000\nECONOMIST,,G5200\nSAN FRANCISCO DEPT OF PUBLIC HEALTH,,J7500\nCAO,\"NELSON MANDELA CHILDREN'S FUND\",Y4000\nPresident,Pro-Logic,Y4000\nPrincipal,\"Morvillo, Abramowitz, Grand, et al\",K1000\nBROKER,STEAM REALTY,F4200\nDICK BRANTMEIER FORD,,T2300\nPHYSICIAN,SACRAMENTO COUNTY,X3000\nAMER FED OF HOME HEALTH AGENCIES,,H0000\nTerritory Manager,Advanced Medical Optics,H3300\nSenior Vice Presiden,Independence Bank,F1000\nShipping,\"Ocean Shipholdings, Inc.\",T6000\nHOUPT WOLFE & HUGANIR LTD,,K1000\nATTOR,\"OGLETREE ABBOTT LAW FIRM, LLP\",K1000\nTHE LEONA GROUP,,G5200\nPRESIDE,CHRISTIAN BOOK DISTRIBUTORS,C1100\nCyber Technology,,Y4000\nDIRECTOR OF,CORPUS CHRISTI MED CTR,H2100\nVice-President,Wysong Gravel Co.,B5100\nDR-REGIONAL RENTAL MANAGER,\"EAN HOLDINGS, LLC\",T2500\nFELZER VINEYARDS,,G2850\nHOME HEALTH,GOODCARE SERVICES,Y4000\nEXECUT,STUART WEITZMAN HOLDINGS LLC,Y4000\n\"DIRECTOR, GOVERNMENT\",NACE INTERNATIONAL,Y4000\nCFO and COO,Heart Smart Foods Ltd,Y4000\nRECEPTIONIST,\"KARL B. HIATT, M.D.\",H1100\nREAL ESTATE DEVELOPER,JORDAN REAL ESTATE INVESTMENTS,F4000\nPresident,LJ Black Consulting,Y4000\nPresident,Town & Country Travel,Y4000\nSHERMAN WILLIAMS CO,,M1600\nDirector,Eastside Community Center,X4000\nCROCKER HOUSE COUNTRY INN,,Y4000\n\"EXECUTIVE V.P., SALES\",NEW BALANCE,M3200\nDIRECTOR OF,EL ROBINSON ENGINEERING,Y4000\nAttorney,\"Schochor, Federico & Staton, PA\",Y4000\nPresident,\"Hammerman & Gainer, Inc\",F3100\nFarming,Windy Hill Farm,A1000\nEDUCATIONAL CONSULTANT,RETIRED,X1200\nMarketing,Ars,Y4000\nBoston University,Research Professor,Y4000\nPARTNER,\"SPECTRUM CPA GROUP, LLP\",F5100\nChairman,Gymboree Corp.,G4100\nPRODIGAL MEDIA,,Y4000\nVP Marketing,\"Wellmark, Inc.\",F3200\nSENIOR VICE PRESIDEN,AMERUS LIFE INS COMPANY,F3300\nT J ADAMS & ASSOC INC,,F3100\nINFO REQUESTED,Jka Enterprises Of Tampa Inc,Y4000\nSENIOR VP,THE PIVOTAL GROUP,F4100\nGROUP ACCOUN,EURO RSCG 4D DISCOVERY,Y4000\nPHYS,GREYSTONE INTERNAL MEDICANE PC,Y4000\nMANGIAFICO DEVEL CPR,,B2000\nOptometrist,Central Eyes,Y4000\nAuthur,Self employed,C1100\nENGINEER,USAF,Z9500\nINVESTMENTS,CHIEFTAIN,F2100\nHOSTETLER CHURCH & ANDERSON LLC,,F3300\nProfesssor,Stanford University,H5100\nSELF EMPLOYED + ONLINE MARKETING MGR,BOATCRAZY.COM ISSUES MANAGEMENT LLC,Y4000\nOFFICE MANAGER,THOMAS A. OTTESON,Y4000\nClaims Manager,Clark Realty Builders,F4200\nCHIEF EXECUTIVE OFFICER,SOUTHWESTERN VERMONT MEDICAL CENTER,H2100\nOwner,Janet`s Tax & Business Services,Y4000\nWINE GROUP INC,,G2820\nHOEFFNER ET AL,,Y4000\nRETAIL SALES ASSOCIATE,HALLMARK STORES,Z9500\nPresident & CEO,Self-Employed,G0000\nAttorney,\"Van Matre & Harrison, PC\",K1000\nPartner,\"Branson, Brinkop, Griffith & Stron\",Y4000\nDeputy County Attorney,\"Douglas County, NE\",K1000\nCOMMENCEMENT LLC,,Y4000\nLAWYER,SACHS WALDMAN,K1000\nTHE PETERSON COMPANIES,,F4100\nWARD,SULLIVAN,Y4000\nRISK MANAGER,ROYAL BANK OF SCOTLAND,F1100\nOwner,Merrill Energy,E1000\nReal Estate Mgmt,The Rosen Group,Y4000\nMAX CENTER REALTY,RE,F4200\nG B TUBULORS INC,,Y4000\nOwner,Lynsta Llc,Y4000\nMANAGER,S.R.C. CORPORATION,J1100\nOwner,Netting producer,Y4000\nACCOUNTANT,WESTERN UNION,F1400\nAdministrator,Joliet Junior College,H5100\nMCKENNEY MECHANICAL,SELF,Y4000\nEnvironmental Engine,U.S. Environmental Agency,X3000\nPresident,Lakes Region General Hospital,H2100\nMechanical Contracto,\"E.M. Duggan, Inc.\",Y4000\nPRESIDENT,ABG FAB CO.,Y4000\nVICE PRESIDENT,THE RECORDING ACADEMY,C2600\nContractor,\"Industrial Specialty Contractors, L.L.\",B0500\nNEW DAYCARE,,Y4000\nREGIONAL AFFAIRS,RTA,Y4000\nPARALEGAL,KING & KING,K1000\nFRANKLIN FUNDS,,Y4000\nSAUL PARTNERS,,J1100\nDB Administrator,Microsoft,C5120\nINVESTMENTS,LASALLE CAPITAL GROUP,F0000\nRESEARCHER,GLAXO,H4300\nPROVIDE COMMERCE INC,,C1400\n\"VP, Sales\",U.S. concrete Pipe Co.,B1000\nVice President & Dea,Lincoln Memorial University,H1130\nSUNTIDE COMMERCIAL REALTY,,F4200\nVP OPERATIONS,FRANK MILLER LUMBER,A5000\nChairman,Welland Ginn,Y4000\nASHIRE CORP,,Y4000\nPhyscian,Northstar Behavioral Health,H2100\nENVIRO TIRE INC,,Y4000\nB.D.O./SEIDMAN L.L.P./CPA,,Y4000\nVP,\"SUSQUEHANNA BANCSHARES, INC.\",F1000\nAttorney,Mehlman Vogel Et Al,K2000\nSENIOR RELATIONSHIP MANAGEMENT,BARCLAYS CAPITAL,F2100\nINVESTMENT MANAGEMENT,MERRILL LYNCH & CO,F2100\nHousewife,none,C1100\nEXECUTIV,\"HEALTH DATA SERVICES, INC.\",J1100\nSTATE FISH,,G2350\nAttorney at law,\"Gibson, Dunn & Crutcher LLP\",Z9500\nIntelligence Liaison,US Department of Commerce,X3000\nGALLERIE FURS,,Y4000\nSALES,GREAT AMERICAN GROUP,Y4000\nFRIDAY ELDGREDGE & CLARK,,K1000\nOWNER,WALZ CABINET,Y4000\nBANCROFT SCHOOL OF MASSAGE,,H5200\nCO-FOUNDER,VAN DYK FAMILY WINES,Y4000\nPHILLIPS 66 DISTRB,,E1160\nWINERY OWNER,FALKNER WINERY,G2820\nFIRST VICE PRESIDENT,WELLS FARGO ADVISORS,F2100\nAntique Dealer,Self employed,J1200\n\"EVP & President, NAs\",\"EarthLink, Inc\",C5140\nVICE PRESIDENT,ROCKEFELLER UNIVERSITY,H5100\nBOOKKEEPER,\"BAND, INC.\",Y4000\nDOCTOR,CLARENCE ROBISON MD,H1100\nPresident/CEO,Carbine Development,B2000\nState Executive,West Virginia Health Care Association,H2200\nReinsurance Consulta,Self-Employed,F3100\nSCHOOL PSYCHOLOGY,REDLANDS UNIFIED,Y4000\nSTAR TOYOTA,,T2310\nCPA,SECURITY INDUSTRIAL INSURANCE,F3100\nHOMEMAKER,SELF,H2200\nCOUNTY SOLICITOR,,X3200\nFO,FORT ABRAHAM LINCOLN ASSOCIATION,Y4000\nOWNER/MANAGING PRINCIPAL,GOFF CAPITAL,F0000\nreal estate manageme,Self Employed,F4500\nBJM EMPLOYMENT SERVICES,,Y4000\nFLETCHER ALLEN HEALTH,,Y4000\nSWARTHMORE,,Y4000\nPhysician,Childrens Medical Center,H2100\nAUTO STORE,,T2200\nInvestor,UBS,F2100\nEARL KINSHIP CAPITAL CORP,,F0000\nLEO M GARONSKY & ASSOC,,Y4000\nHomemaker,Information Requested,M5100\nBANKER,WUMU,Y4000\nLECTURER,HARVARD UNIVERSITY/LECTURER,H5100\nExecutive,Montgomery Stire Partners,G5210\nPhysician,OK Cardiovascular Assoc,H1130\nNurse Clinician,\"Chemical Health Concepts, Inc\",Y4000\nOWNER/CONSULTANT,SUPPLY CHAIN DESIGN INC,Y4000\nCHAIRMAN OF THE BOARD (RETIRED),,B1000\nOwner,Bj Mitcham Realestate,Y4000\nSoftware Developer,Triple-I,Y4000\nHARRIS WELCO,,Y4000\nCAPITOL ADVOCACY,LEGISLATIVE ADVOCATE,K2000\nAttorney,Donoghue Barrett and Signal PC,K1000\nMIDDLESEX CO WLF B,,LC100\nGENERAL MANAGER,J&D HOME IMPROVEMENT INC.,Y4000\nGOVERNMENT AFFAIRS,GRIFOLS INC.,H4500\nRESTAURAN,BILLY GOAT TAVERN & GRILL,G2900\nTEACHER,NASHOBA REGIONAL,Y4000\nFinance,SF Fire Credit Union,F1300\nEXECUTIVE,NORTH AMERICAN GAMING & ENTAINMENT,Y4000\nEngineering Manager,\"Cisco Systems, Inc\",C5110\nTeacher,ABC Unified School District,X3500\nMEMBER,PILOT,T0000\nATTORNEY,DOUGLAS W. OTTO/ATTORNEY,Y4000\nBUSINESS EXECUTIVE,PARSONS CORP.,B4000\nCIVILIAN EMPLOYEE,US AIR FORCE,X5000\nFinance,Frontpoint,Y4000\nDiagonostic Radiolog,Self-Employed,G0000\nAdministrator,Blevins School District,X3500\nAttorney,Munger Tolles,Z9500\nPUBLIC HEALTH,\"MERIDIAN GROUP INTERNATIONAL, INC.\",Y4000\nOwner,\"China Merchant, Inc\",Y4000\nCHAUTAUQUA,,Y4000\nMilitary Trainer / Advisor/Military,,Y4000\nOURISMAN SUZUKI INC,,T2300\nMI FOOD AND BEVERAGE,,G2000\nPartner,Krieg Devault,K1000\nRETIRED TEACHER,RETIRED TEACHER,J1200\nARCAND & CO,,Y4000\nRESTAURANTEUR,\"BARGER BURGER, INC.\",G2900\nJUNI MED CORP,,Y4000\nTEKTRONIC,,Y4000\nMEDIA ASSISTANT ADMINISTRA,BURDINES,Y4000\nTHE BENENSON CAPITAL CO,,F4000\nSECRETARY,AMERICAN FAMILY INSURANCE,F3100\nINSURANCE AGENT,EQUITABLE LIFE,F2100\nNOUANTIS,,Y4000\nGRANTWRITER,THE NATURE CONSERVANCY,JE300\nStudent,U Of M,J1200\nAttorney,Bornn & Surls,Y4000\nLINN & HELMS ATTORNEYS,,K1000\nBusiness Rental Sales Director,\"Enterprise Rent-A-Car Company of UT, L\",T2500\nPHYSICIAN,ASCENTA THERAPEUTICS,Y4000\nPresident,McLaughlin Assest Mgmt,Y4000\n\"CATTLEMAN'S ASSOC\",,A3000\nINSURANCE AGENT,DAIGLE & ASSOCIATES,Y4000\nGOVERNMENT AFFAI,UNITEDHEALTH GROUP,J1100\nSales Manager / Treasurer,Allied Equipment,Y4000\nEXEC,COCA-COLA,G2600\nCHAIRMAN OF BOARD,FARMS LINKS,J1100\nSALES,\"CUTTING TOOLS, INC.\",Y4000\nINVESTMENT BR,EDWARD D. JONES & CO.,F2100\nHousehusband,Self-employed,G0000\nBUSINESSMAN,AGIO CAPITAL CORP/BUSINESSMAN,Y4000\nEXECUTIVE,ROSECLIFF INC.,Y4000\nProfessor,University Of Kent,H5100\nVICE PRESIDENT,MERIT MEDICAL,H4100\nPRESIDENT,REEGLER ASSOCIATES,G4400\nSENIOR DIRECTOR,SANTA CRUZ COUNTY OFFICE OF EDUCATION,Y4000\nPRESID,OAKLAND CATHOLIC HIGH SCHOOL,H5100\nCHESAPEAKE ENERGY CORP,,E1100\nAUTOMATEO TRACKING SYSTEM,,C5100\nComputer Hacker,Block Dietary Data Systems,Y4000\nLandscape Designer/Contractor,Self: Anne Houser Designs,B3600\nMARKETING,\"METLIFE, INC.\",F3300\nSECRETARY / TREASURER,MOSS MOTOR COMPANY INC,T2300\nPhysician,\"David Crowell, MD, LLC\",Y4000\nSAFETY DIRECTOR ASSISTANT,LAMAR ADVERTISING COMPANY,G5230\nSTEINBURG & BRYANT,,K1000\nAttorney,City and County of San Francisco,X3000\nATTORNEY / PRESIDENT,HILBORN & HILBORN PC,K1000\nBus,Self,Y4000\nEAST TECH MANAGEMENT,,F2500\nEXECUTIVE,INTELSEC CORPORATION,Y4000\nMARKETING DIRECTOR,KELL MUNOZ,B4200\nRN,DOHMH,Y4000\nPHIPPS HOUSES SERVICES,,F4100\nSenior Enterprise Architect,Coventry Health Care,H3700\n\"VP Int'l Division\",Swift & Company,G2300\nSales,Hokanson,Y4000\nGOVERNMENT RELATIONS,\"PORTERFIELD, LOWENTHAL AND FETTIG, LLC\",Z9500\nFINANCIAL,THE ROBECHEK COMPANY INC.,Y4000\nPresident,American Clinical Laboratory A,H3400\nCLASSIC BUICK OLDS PONT,,T2300\nGENERAL MA,SLR ROOFING SYSTEMS INC.,B3000\nAIRLINE PILOT,UNITED AIRLINES,LT100\nSELF PRESIDENT,,G0000\nPUBLIC AFFAIRS MANAGER,CON EDISON,Y4000\nWORLD RESOURCES INST,,Y4000\ndentist,Steen Orthodontics,H1400\nVICE PRESIDENT,HUBER CONSTRUCTION,B1500\nOWNER,BUCEPHELIS,K2000\nORTHOPED,ORTHO ASS. OF DUTCHESS CO.,H1130\n\"DIRECTOR, INTERNATIONAL DEV.\",MTC,H5200\nEMERG,EMERGENCY MEDICINE ASSC OF JA,Y4000\n\"SENIOR VICE PRESIDENT, ADMINISTRATION\",GRACE PACIFIC CORPORATION,Y4000\nVP LAND & LEGAL RECORDS,DENBURY RESOURCES INC.,E1120\nIdealab,Business,J1200\nSINGER ACTOR,,J1200\nMAIL CONTRACTOR,SELF EMPLOYED,G0000\nTARGET HEALTH INC,,H0000\nCEO,CIPA,Y4000\nSMALL BUSINESS OWNER AND ATTOR,SELF,Z9500\nK&F COMMERCIAL PROPERTIES,,K1000\nFrey Law Firm,,K1000\nCINTAS,,Z9000\nExecutive,Mentor Network,X4100\nEVP & COO,HDMA,Y4000\nArchitect - President,\"Lee Levine Architects, PC\",B4200\nSolutions Specialist,IBM,C5100\n\"Director, Investor Relations\",InterMedia Partners,F2600\nBOOKSELLER,DARSAWS BOOKS,Y4000\nCOO,TACALA LLC,G2900\nPRESIDENT &,LEHIGH VALLEY HOSPITAL,H2100\nDE TRUDE & COMPANY INC,,Y4000\nJ R KATZ ASSOC,,J5100\nAttorney At Law,\"Brownstein Hyatt & Farber, P.C.\",K1000\nFEENY DODGE,,T2300\nCEO,TAG,Z9500\nFIELD COORDINATOR,THE JOHN BIRCH SOCIETY,Y4000\nEXECUT,INTEROCEAN OIL & GAS COMPANY,E1120\nExecutive Director,Granite State Opera,G2900\nATTORNEY,FIDELITY NATIONAL TITLE GROUP,F4300\nMEMBER OF CONGRESS,GOVERNMENT/MEMBER OF CONGRESS,X3100\nFIRE FIGHTER / EMS,CONTRA COSTA COUNTY FIRE DEPT.,L1400\nHOTEL INVESTMENT/MGN,GRANITE HOSPITALITY,T9100\nMCDANIEL FRUIT CO,,Y4000\nBUSINESS OWNER,\"SAWYER SYSTEMS, LLC\",Y4000\nPHILANTHRAPIST,,X1200\nCONSULTANT,MCGIFFERT CONSULTING LLC,Y4000\nPRESIDENT &,\"AEROCARE HOLDINGS, INC.\",H4200\nUtility Tech,Matsushita Appliance Corp,Y4000\nHARLAN BERK LIMITED/OWNER,Harlan Berk Ltd/Numastist,Y4000\nPRESIDENT,COMMERCIAL ASSOCIATION OF REAL,F4200\nCounty Commissioner,Thurston County,Z9500\nS W MEDICAL SCHOOL,,H1130\nD R MOFFETT IRS,,Y4000\nSIEBEL CAPITAL MANAGEMENT,,F2100\nengineer,\"Malco Industries, Inc.\",Y4000\nDirector Permal Asse,\"Gerant, Permal Group S.C.A. a division\",Y4000\nPrivate Equity,Accretive Llc,F2500\nGULF ATLANTIC CONTRACTORS,,B1000\nBroker,J B Collins Assoc,Y4000\nREAL ESTATE SALES,,Y4000\nVP EN,WESTINGHOUSE ELECTRIC COMPANY,E1320\nMICRO DESIGN LTD,,Y4000\nAttorney,Reservoir Operations,Y4000\nCareer Soldier,US Army,Y4000\nTIERRA SANTA GOLF CLUB & COMMUNITY,,G6100\n\"NAT'L INST FOR PUBLIC\",,Y4000\nS E THORN & CO,,F2100\nConsulting & Investing,Self employed,G0000\nPRESIDENT - COO,TURNER INDUSTRIES,B1000\n\"Director, Cheese Operations\",\"Le Sueur Cheese Co, Inc\",A2000\nPRESIDENT,PEOPLE TEC,C5130\nCEO,J. GOLDMAN & CO LP,F2100\nRetired,City of Miami Police Department,X3000\nLOBBYIST,ROUSE COMPANY,F4100\nIT MANAGER,PAINWEBBER INC.,F2100\nCommunications,WPP,Y4000\nDod Contractor,Seii,Y4000\nI.D.B. BANK,,F1000\nPartner,Gill & Gallinger,K1000\nPresident,Utah American Energy inc,E1210\nCITY OF DETROIT,,J5100\nVIDEO TAPE ENGINEER,NBC,LC100\nMANAGER,EMPIRE STATE SUPPLY,Y4000\nOWNER,CMR EQUIPMENT LLC,Y4000\nYANKEE SYSTEMS INC,,Y4000\nGODSEY ASSOCIATES ARCHITECTS,,B4200\nEXECUTIVE,BUTTERFIELD BANK,F1000\nDermatologist,\"William P Coleman III, APMC\",Y4000\nDETROIT EDDISON,,J7120\nVICE PRESIDENT,\"KIMLEY-HORN AND ASSOCIATES, INC.\",B4000\nINVESTMENT BANKER,CHAFFE & ASSOCIATES INC.,Z9500\nGOVERNMENT AFFAIR,PLATINUM ADVISORS,K2000\nCEO,B&M HARDWARE CO.,Y4000\nDELAWARE COUNTY MEMORIAL HOSP,,H2100\nATTORNEY,\"GUNDERSON, SHARPE & WALKE, LLP\",K1000\nOperations Manager,Capital Sports Complex,Y4000\nDIRECTOR OF MUSIC AND LITURGY,ST. LUKE THE EVANGELIST CATHOLIC CHURC,X7000\nTgre,Gfrg,J1200\nProfessor,The College Of NJ,H5100\nAttorney,\"King, McCann, Scott, LLP\",K1000\nPHYSICIAN,GENESIS HEALTHCARE,H2200\nDRINKER BIDDLE &,,K1000\nCOMMODITIES BROKER,MAN FINANCIAL,F0000\nINVESTMENTS,CROW FAMILY HOLDINGS,F4000\nCONSULTANT,NANCY DOOREY ED,H5000\n\"MOODY, STROPLE ET AL\",,K1000\nPRESIDENT,\"STACK 'EM HIGH, INC\",Y4000\nPatent Attorney,File Prime Therapeutics,Y4000\nCEO,QUALITY INTEGRATED SERVICES INC.,Y4000\nArt Therapist,Agape Institute,Y4000\nADMIN,SUPERIOR,J1100\nPresident,Peter Sloan Financial Group,F0000\nMARINER SANDS,,Y4000\nCEO,INSIGHT HEALTH CORPORATION,Y4000\nmarketing manager,Orlando Freightliner,T3100\nMANAGER,ADAMS AND HAACK,G4400\nPartner,The Accord Group,K2000\nPRODUCTION MAN,BROADCOM CORPORATION,J7400\nDoctor,Northeast Ohio Eye Surgeons Inc,H1100\nNurse,MT SIANI MED CENTER,H1710\nANADARKO PETRELEUM CORP,,E1120\nConsultant Manager,Self-Employed,G5200\nFINANCE MANAGER,MAXWELL STREET PRESBYTERIAN CHURCH,X7000\nProfessor,EAST TEXAS BAPTIST UNIVERSITY,H5100\nPETROLIUM EQUIPMENT SERVI,,E1160\nEXEC.,GROUP W ADVISORS INC.,C5130\nASCENT,,C4400\nMedical,Golden Flower Chinese Herbs,A8000\nOwner,Bry - Mel Homes Inc.,B2000\nPhysician,Pierremont Anesthesia Consultant,H1130\nREGRAND MANAGEMENT INC,,F4200\nATTORNEY,\"WILMER, HALE, CUTLER, & PICKERING\",K1000\nASSISTANT OFFICE MANAGER,DIMARINO KROOP PRIETO JASTRO,Y4000\nGOVERNMENT RELA,LAMONICA & TRAMMELL,Y4000\nATTORNEY,NONE AT PRESENT,Y4000\nInsurance Consultant,LOP Counsultsing Group Inc,Y4000\nREAL ESTATE,MOSER & ASSOCIATES,F4000\nWATERFIELD FIN & UNION FED SAVINGS,,F1200\nLawyer,HUNTON & WILLIAMS,K1000\nDIRECTOR,FIRST BEACON INVESTMENTS,F7000\nSPANISH TEACHER,FS KEY ELEMENTARY SCHOOL,Y4000\nManagement Consultant,\"Health System Strategies, LLC\",Y4000\n\"VP, FUELS\",XCEL ENERGY,E1620\nInvestor/Developer,Self employed,F4100\nPrincipal,Aidan School,J1200\nPHYSICIAN,SOUTHEAST RADIATION ONCOLOGY GROUP,H1130\nPOWERPLANT OPERATOR,US ARMY CORPS OF ENGINEERS,X5000\nTHE SOUTHERN GALVINIZING CO,,J5100\nReal Estate Professional,Taylor & Theus Real Estate,F4000\nCFCO,OGE ENERGY,E1620\nINTERN,DNC,Y4000\nPres.,Glasslock,Y4000\nBROADWAY VIDEO,,J9000\nYMCA-WASH UNIV,,J7400\nRUTHERFORD OIL CO,,E1100\nCEO,Turner Enterprises; Inc,G2900\nDIRECTOR OF BUSI,MTI LABORATORY INC,Y4000\nPENSION CONSULTANT,\"THE SAVITZ ORGANIZATION, INC\",F5500\nBUSINESS OWNER,PAWN MANAGEMENT INC.,G4600\nLOBBYIST,THE INVESTMENT CO INSTITUTE,F2100\nC.P.A.,BLOOM HOCHERG & COMPANY P.C./C.P.A.,Y4000\nMANAGER,THE MATRIXX GROUP,Y4000\nSMITHFIELD HERALD,,C1100\nCEO,MAIN STREET BROADBAND,Y4000\nPRESIDENT,BAY BRIDGE STRATEGIES,JE300\nVICE PRE,COUCH DISTRIBUTING COMPANY,G2850\nCONSULTANT,AVAL,Y4000\nCARRINGTON COLEMAN SLOMAN,,K1000\nUNIV ILL MED CENTER,,H1400\nCHILDRESS-KLIEN INC,,F4100\nCORPORAT,UNIV OF PITTSBURGH MED CTR,H2100\nINVESTME,MURCHISON CAPITAL PARTNERS,Y4000\nPartner,Daniels Insurance Co.,F3100\nFORESTER,MOBILE FOREST PRODUCT INC.,A5000\nHURET ROTHENBERG & COMPANY,,Y4000\nPARALEGAL,WINSTON & STRAWN LLC,K1000\nClear Shot,,C4500\nDATABASE ADMINISTRATOR,JOHNSON & WALES UNIVERSITY/DATABASE,H5100\nVice President,\"Jc Ryan Ebco/h&c, Llc\",Y4000\nEEM MANAGEMENT,,J5100\nCo-Founder,Orenda International LLC,Y4000\nSHAFRAN REALTY INC,,F4200\nNovelist,Various Publishers,C1100\nPhysician-MD,Retired,X1200\nDATA COMMUNICATIONS,JP MORGAN CHASE,F1100\nCARPENTER,LOCAL 33,Y4000\nPres,Gachman Metals & Recycling,M2400\nREAL ESTATE,REGGIE REAL ESTATE INC.,F4000\nLongshore Marine Clerk,ILWU Local #23,LT500\nACTIVITY DEPT US GOVT,,X3000\nPRINCIPAL,REED ENTERPRISES,Y4000\nCOASTAL FINANCE,,F0000\nTelephone Constructi,S.B.C. Pacific Bell,C4100\nLegislative Liaison,State of Maryland,X3000\nCEO,STRATEGIC AND TACTICAL,Y4000\nDistrict Attorney,Douglas County,X3000\nPRESIDENT & CEO,PFG,G2000\nAttorney,\"Schottenstein, Zox & Dunn\",K1000\nEXECUTIVE,PEOPLES SAVINGS BANK,F1200\nCHAI,ASSOCIATED ASSET MANAGEMENT IN,Y4000\nCEO,CUSTODIA FINANCIAL,F3100\n\"EDWARDO'S RESTAURANT\",,G2900\nBusinessman,\"RBL Cabling, Inc.\",Y4000\nACCOUNTA,BRENNAN-MILLAN AND COMPANY,F5100\nCOMMUNITY OUTREACH,SELF-EMPLOYED/COMMUNITY OUTREACH,X4100\n,CHICAGO INSTITUTE FOR PSYCHOANALYS,Y4000\nSales Representative,AMWAY,G4800\nCIVIL ENGIN,ROBERT J. MAINIERO P.E.,Y4000\nBEST STRATEGY INC,,Y4000\nPROGRAM ANALYST,MATHEMATICA POLICY RESEARCH/PROGRAM,X4000\nEMPLOYMENT SERVICE,HIRING PARTNERS INC.,Y4000\n\"SKOMER'S MEN WEAR\",,G4100\nINSURA,DANIEL INSURANCE AGENCY INC.,F3100\nEXECUTIVE,LYTLE DEVELOPMENT,Y4000\nEXECUTIVE VICE PRESI,ELI LILLY & COMPANY,H4300\nteacher,UT-Austin,Y4000\nOIL & GAS PRODUCER,PEDEN ENERGY,Y4000\nRetional Socail Worker,Self,H6000\n\"VP OPERATIONS, EVENTS\",\"RADIO ONE, INC.\",J7500\nPRESIDENT &,TEXAS DISPOSAL SYSTEMS,E3000\nVICE PRESIDEN,CHILDRENS HOSPITAL LA,H2100\nTHERAPIST,THE WILLOW GROUP LLC,Y4000\nPHYSICIA,BAYLOW COLLEGE OF MEDICINE,H5150\nCOTTONSEED BYR,FARMING,A1000\nFormer GMB Member,UBS Corporate Center,F2100\nBUTCH-OUSTALET FORD,,T2300\nWRITER/PRODUCER,KATHERINE GREEN/WRITER/PRODUCER,Y4000\nOwner,Family Medical Specialty Clnc,H1100\nFLOYD COUNTY GA,,X3000\nADVERTISING - ACCT. MGMT,FCB HEALTHCARE,Y4000\nBANKER,\"J. P. MORGAN, LLC/BANKER\",F1100\n\"GLASS, MCCULLOUGLE\",,K1000\nMENHAM CAPITAL GRP,,F0000\nPRINCIPAL VENTURE GROUP,,Y4000\nPHYSICIAN,TEXAS TECH PHYSICIANS - UROLOGY,H1100\nPHARMACIST,SALINA REGIONAL,Y4000\nBLANK ROME COMISKY & MCCARTY,,K1000\nBUSI,BORDERLAND CONSTRUCTION CO INC,B1500\nPresident,Major Brands Inc.,G2850\nCEO,PRIMERA TECHNOLOGY,C5000\nVice President,ELI LILLY & CO,H4300\nClient Relations Manager,The Justus Group,Y4000\nSTRAUSS BRANDS/CEO/PRESIDENT,,Y4000\nOWNER,MONROE MUSIC,Y4000\nValle & Assoc,,K1000\nINSURANCE EXECUTIVE,EQUUS STANDARDBRED STATION,Y4000\nLobbyist,Federation of Amer Hospital,H2100\nCEO,FLORIDA WEST COAST CREDIT UNION,F1300\n\"MAST DRUG CO, INC\",,K1000\nBUSINESS,HOLLAND AMERICAN WAFER CO,G2100\nCONSULTANT,\"COLLABORENT GROUP, LTD.\",Y4000\nECONOMICS CONSULTAN,,F5000\nBUSINESS,INFO REQUESTED,C4300\nVICE PRESIDENT,\"QUINCY NEWSPAPERS, INC.\",C2100\nPhilanthropist,Self-employed,X4110\nOFFICER,FISCHER RESEARCH ASSOCIATION,Y4000\nCEO,B R Fries & Associates LLC,B1000\nLOWENBERG & LITUCHY,,H1400\nHOMEMAKERT,HOMEMAKER,F1000\nManaging Director- Small Business Lend,Capital Source,F1400\nDAIGGER,,J5100\nREAL ESTATE DEVELOPER,\"FLANK, INC.\",F4000\nCONTRACTOR,THE KEN GURRY CORP.,B3000\nCONSULTANT,MILK STRATEGIES,Y4000\nSCHEDULING CO-ORDINATOR,SARONY STUDIO,Y4000\nMARSHALL & MELLIORN,,Y4000\nLOUISVILLE UROLOGY ASSOCIATION,,H1130\nVice President,\"Stratcor, Inc.\",Y4000\nINVESTOR,INVESTOR LEASING CORPORATION,J1100\nPHYSI,KOHN INTERNAL MEDICINE ASSOC.,H0000\nHOUSEHOLD FINANCE GROUP,,F1400\nASSISTANT TREASURER,GENERAL MOTORS,T2100\nJACOBS GRUNDBERG BELT & DOW,,K1000\nAttorney,\"Brown, Rudnick,Freed & Gesmer\",K1000\nINCLONE SYSTEMS,,H4300\nUROLOGIST,STAR UROLOGY OF TEXAS,H1130\nCFO,TRUST COMPANY OF AMERICA,F2100\nATTORNEY,MANOFF AND SETTS,K1000\nChemistry Professor,Kansas State University,H5100\nATTORNEY,BERMAN DEVALERIO PLEASE,K1000\nExec Vice President,Pacific Life Insurance Company,F3300\nSales,AlphaGraphics,J1200\nTRADER,SABA CAPITAL,F2700\nEVP & CFO,\"HNG STORAGE, LP\",Y4000\nPRESIDENT,MCSHA PROPERTIES,F4500\n\"CHOATE, HALL\",,Y4000\nAttorney,Galligan & Reid PC,K1000\nMANAGER,FIFTH/THIRD BANK,Y4000\nAttorney,\"Meli, Guerin & Wall\",K1000\nWILKE THOMPSON,,Y4000\nPRESIDENT-EXEC.MGMT.,USAA,Y4000\nVALASSIS CORPORATION,,C1100\nTeacher/counselor,Drew School,Y4000\nC,WOLVERINE TRACTOR & EQUIPMENT CO.,B6000\nMCDERMOTH WILL & EMERY,,K1000\nAttorney,Van Matre and Harrison PC,K1000\nPRESIDENT,SERVIS FIRST BANK,F1000\nLAZARD REALTY INC,,F4200\nINFO REQUESTED,ROBERT`S HEATING & AIR,B3400\nUNIVERSITY OF PR,UNIVERSITY OF IOWA,H5100\nCorporate Management,Warchol Investments,Y4000\nPhysician,Long Beach Memorial,H1100\nENGINEER,LAS VEGAS PAVING CORP.,B3000\nTeacher (and retired military),Cole Valley Christian School,Y4000\nSELF-EMPLOYED,DISAM HOLDINGS LLC,M5000\nENVIROMENTALIST,BLUEWAVE STRATEGIES,E2000\nEXEUCTIVE,\"J.I. KISLAK, INC.\",J5100\nCommercial Real Estate,\"Urban Renaissance Group, LLC\",J1200\nOWNER,HACIENDAS DEL MONTE,Y4000\nEXECUTIV,BROOKS TORREY & SCOTT INC.,J1100\nPARTNER,SAINTSBURY,J1200\nOwner/Operator,hot dog Johnnys,Y4000\nROSE GROUP,,J5100\nSelf Employed,Oil & Gas Properties,E1100\nEXECUTIVE,VAUGHAN FURNITURE CO INC,Y4000\nExecutive,Innovative,Y4000\nFundraiser/interior,Nani S. Warren,Y4000\nDEPUTY GENERAL COUNSEL,PPL SERVICES CORPORATION,E1600\nA J DWOSKI & ASSOCIATES,,F4100\nCEO,MODERN HANDLING EQUIP,Y4000\nSYSTE,LOCKHEED MARTIN SPACE SYSTEMS,D2000\nReal Estate Investme,Huffines Communities Inc,J1100\nVice President,Chicago Title,F3100\nPANNONI ASSOCIATES,,Y4000\nED BELL INVESTMENTS,,F7000\nHUNTER INDUSTRIES LTD./SECRETARY/TR,,M5000\nSPECIALTY SURGICAL INSTRUMENTATION,,H4100\nSouth FL Director,New Israel Fund,J7400\nENGINEER,PETECHNOLOGIES,Y4000\nCOMPUTER PROG,GEORGETOWN UNIVERSITY,H5100\nFinance,The Poetry Foundation,Y4000\nInvestment Banker,Dresner Kleinwort Wasserstein,F2300\nOZAROVICH & SCHWARTZ,,Y4000\nCONTRACTOR,PAUL MILLER CONSTRUCTION CO INC,B1500\nEXECUTIVE,LEXINGRON INS,Y4000\nREAL ESTATE DEVEL,\"JWP INTERESTS, LP\",F4000\nREALTOR,PILKETON REALTORS,F4200\nAsst Director Of Maintenance,AEC,E1210\nMARKET RESEARCH ANALYST,HENTRY SCHIEN INC.,Y4000\nPresident/CEO,The Iris Network,Y4000\nReal Estate Assistan,Jeff Davis,Y4000\nChairman,Stewart Economics,F3000\nATTORNEY,SCHRIFFRIN & BARROWAY LLP,K1000\nLOBBYST,U.S. CHAMBER OF COMMERCE,G1100\nAttorney,Shopoff & Cavallo Llp,K1000\nOwner,Merryland Child Development Center,Y4000\n\"CEO,\",VAL PRINT,C1300\nPRIVATE BANKING MA,BANK OF THE WEST,F1100\nExecutive,Kauffman Foundation,X4100\nBUSINESS,,F4200\nBUSINESS,SUPERIOR SENIOR CARE INC.,H2200\nFinancial Administrator,University of Washington,H5100\nPRESIDENT,\"MEYER & ASSOCIATES, INC\",B4400\nBusiness Owner,Lawrence Paper Co,J1100\n\"JD, CPA, PARTNER\",SEIM JOHNSON LLP,Y4000\nSVP  &  CIO,EXELON CORPORATION,E1600\nCLINTON HARLEY,,H5200\nBORTUN CO,,Y4000\nDUFFS RESTAURANT,,G2900\nNYACK MEDICAL ASSOC,,H1130\nLAWYER,\"VAHID LAW FIRM, PLLC.\",K1000\n\"O'DWYER & BERNSTEIN\",,K1000\nCFO,CORIEO,Y4000\npart-time teacher,St Andrews Pres College,H5100\nPHYSICIAN,MARTIN KNEE & SPORTS MED CENTER,H1100\nKILLAM ASSOCIATES,,Y4000\nRESEARCH,ELI LILLY AND CO,T1400\nCEO,DSISOFT,Y4000\nATTORNEY,BAMMAGE & BURNHAM,Y4000\nManager,\"Raymond, Jones & Associates\",Y4000\nFREDERICK GYMNASTICS,,Y4000\nPOLLIN PROPERTIES,,J5100\nSr. Vice President,David Evans & Associates,B4000\nPALM DESERT DEV COMPANY,,B1000\nHEBREW TEACHER,RABBI PESACH RAYMON YESHIVA/HEBREW,J5100\nGENERAL MA,KENNECOTT ENERGY COMPANY,E1220\nPresident,Kingsway Realty,F4200\nFinance Exec.,New York Time Co.,J7400\ntechnical/computers,Not employed,Y1000\nRealtor,\"Patricia Choi Realty, Inc.\",F4200\nPRESIDENT,AMERICAN BANKERS MORTGAGE,F4600\nCEO,CRUSADER CLINIC,Y4000\nCONSULTANT,HDBAKER & COMPANY HAWAII LLC,Y4000\nPROF EMERITUS,UIC,J1200\nDIGITAR MANAGEMENT,,Y4000\nReal Estate Broker,Roger Cox & Associates Inc,F4200\nLobbyist,Copeland & Lowery,K2000\nOffice Manager,Nizhoni Roofing Inc,B3000\nCrop & Field Advisor,\"Macy''s Flying Service, Inc\",T1600\nFINANCIAL MANAGEMENT,TUCSON ELECTRIC POWER COMPANY,E1600\nLevinson Construction,,B1500\nOncologist,Carolina Oncology Specialists,H1130\nCEO,EMI GROUP,Y4000\nPresident,German Marshall Fund,JD200\nVAN DEUSEN & COMPANY,,F4000\nV. P. GENERAL MA,KING BEARINGS INC.,Y4000\n\"Senior VP, Sales Ope\",\"Analytical Graphics, Inc.\",D2000\nSENIOR EXECUTIVE VIC,BANK OF HAWAII,F1100\nManager,Rescare Edison Job Corp Academy,J1200\nenvironmental consul,CONSTRUCTSinc.,E2000\nINVESTOR,ROCKEFELLER FAMILY FUND,X4100\nA & B WELDING SUPPLY,,M2300\nPHYSICIAN,ELEONOR PIMENTEL MDPA,H1100\nMICHLELS FOX BANQUETS,,Y4000\nGOLDMAN SACHS & CO,,J7500\n\"PRESIDENT, THE AMERICAS\",METLIFE,F3300\nPartner,Olagey Capital Group,Y4000\nRICHARD RUBIN & CO,,F4500\nPhysician,COPAC Inc.,Z9500\nPRESIDENT,STOLAR HORIZON,Z9500\nManager - Internatio,GE Corporate,M2300\nNursing Home Operato,Self-Employed,H2200\nExecutive,Krapf Bus Companies,J1100\nFINANCIAL SALES,AVM LP,F2100\nexecutive,Westland Development Co.,F4100\nSr. Vice President,Genworth Financial,F3000\nC A D,St. Johns Parish,X7000\nn,The Tides Center/Out of Site,X4100\nREAL ESTATE PARTNER,,F4100\nR.N.,DEPARTMENT OF HEALTH & HUMAN SERVICES,X3000\nPRENT CORPORATION,,M1500\nCHIEF RISK OFFICER,FHLB CINCINNATI,F4600\nPresident,\"All Seasons Sidiing, Inc\",Y4000\nFLEXCHEX,,Y4000\nOwner/Sales,\"Republic Textile Equipment Co., Inc.\",M8000\nChair,\"Downey McGrath Group, Inc.\",Z9500\nAntique Gallery Owner,Self-Emplyed Single mom,Y4000\nAdministrator,Oce North America,Y4000\nPATTERSON FUEL OIL CO,,E1180\nPARTNER,PROSPECT VENTURE PARTNERS,Y4000\nPHYSICIAN,RADIOLOGY & NUCLEAR MEDICINE L. L. C.,H1130\nPrivate Investment,Erik Bergstrom,Y4000\nROBERT BEINS JEWELER,,G4600\nRENDELL CAMPAIGN,,J1200\nPRESIDENT,CAMBLIN MECHANICAL INC.,B3400\nPresident,Zillow.com,Z9500\nI U SCHOOL OF MEDICINE,,H5150\nVeritable LP,Investments,Y0000\nExecutive,Samrose Properties,Y4000\nVice President,\"L& M Botruck Rental, Inc.\",T3100\nFactory Worker,UAW,Y4000\nCAVAROCCHI RUSCLO DENNIS,,K2000\nSOFTWARE ENGINEER,\"NOVELL, INC.\",J7300\nTERRACE CARPETS,,Y4000\nBUSINESS DEVELOPMENT,UNICONNECT,Y4000\nPlanner,City of Placentia,X3000\nMANAGEMENT,THE FIELD MUSEUM,F4100\nALLIANCE RESIDENTIAL MORTGAGE,,F4600\nPhysician,\"Colorado Rehab & Oc Med, LLC\",Y4000\nGENERAL MANAGER,COLTON TELEPHONE COMPANY,Y4000\nPresident,Preventive Medicine Group,Y4000\nProfessor,Nicholls State University,H5100\nsales,eron johnson antiques,Y4000\nDIRECTOR OF PUBLIC AFFAIRS,QUALCOMM,C4300\nSHAWMUT,,K1000\nOwner/President,\"Mucci Insurance Group, LLC\",F3200\nSALES MANAGER,BLUCO INC,Y4000\nPRESIDENT,ROBERT WEHN & ASSOCIATES,Y4000\nINVESTMENT BANKER,NW FINANCIAL GROUP,F2300\nFRANCHISEE,EDN INC.,G2900\nCommodities Trader,Cheiron Trading,Y4000\nCONSTRUCTION OWNER,B&B CONSTRUCTION SERVICES,B1500\nN Y S PUBLIC EMPLOYMENT RELATI,,X3000\nGOVERNMENT AFF,CONSTELLATION ENERGY,E1620\nConsultant,Apex Systems Inc,G5250\nDirector,Citi Group,F1100\nHOURANI & ASSOCIATES,,Y4000\nMANAGEMENT,HARDY MACHINE,Y4000\nInformation Requeste,Lancaster General Hospital,H2100\nMachine operator,Mahle,Y4000\nCOUNSEL,EXXON MOBIL CORP,E1110\nSURGEON,NEW YORK PHYSICIANS LLP,H1100\nDirector Adult Progr,JCCSF,J5100\nOWNER,FRANCE PROPANE,E1190\nLIFE INSURANCE AGENT,MCSWANEY & ASSOC. CONSULTING/LIFE I,F3300\nPhotography,Olan Mills,G5240\nBookseller,Johnnycake Books,Y4000\nPhysician,\"Adrian Radiological Assoc., PC\",H1130\nENGINEERING MANAGER,SOUTHERN COMPANY SERVICES,E1620\nExecutive,World Saving & Loans Association,J1200\nAM PUBLIC TRANSIT ASSOC,,T4000\nBUSINESSMAN,TCG,Y4000\nNEUROSURGEON,MASS GENERAL HOSPITAL,H1130\nPresident/CEO,Peterman Ltd.,Y4000\nCENTURY KITCHEN & EQUIPMENT I,,Y4000\nSGT MAJOR ASSOCIATION,,X5000\nCEO,Tyco Electronics Ltd,C5000\nVP,AYERS DEVELOPMENT CO.,Y4000\nNone,,G2900\n\"WHHITMAN, HEFFERNAN\",,Y4000\nFarmer,Dinville Farm,A1000\nCEO,AMS,Y4000\nSOUTH CONSTRUCTION CO,,B1500\nPresident,Champion Chrysler,T2300\n\"Direector, Advertisi\",National Science Teachers Association,H5100\nGRANDBURY DRUG,,G4900\nPresident,Eufaula Internal Medicine,Y4000\nAdvertising Director,PG&E,J1200\nTHE MCGINN GROUP,,Y4000\nRetired,\"Green  Cay  Farms, Inc.\",A1000\nSENIOR VICE PRESI,AMERICAN AIRLINES,T1100\nCouncilwoman,Princeton NJ,JE300\nOWNER,TRAVEL WORLD,T9400\nSECURITIES BROKE,AMHERST SECURITIES,Y4000\nPROJECT MANAGER,GALABOTTA OLD LLC,H4300\nMJG,NATIONAL MOWER COMPANY,J1100\nOWNER,MADISON OYSTER BAR,Y4000\nInformation Requested,Realitycheck Consulting Network,Y4000\nSALES MGR,ALFRED DUNHILL,Y4000\nBANK,CITIZENS STATE BANK & TRUST CO,F1000\nTEACHER,PERSPECTIVES MATH AND SCIENCE ACADEMY,Z9500\nDirector - Intellectual property,AT&T,J1200\nFARMER,W & J FARMING PARTNERSHIP,A1500\nlawyer,Morrison Cohen LLP,K1000\nCEO,\"Schoor DePalma, Inc.\",B4000\nUNITED FOODS,,A1400\nAssociate General Counsel,Brookdale Senior Living,H2200\nPRESIDENT,HISPANIC CULTURAL CENTER FOUNDATION,Y4000\nLoan Closer,Morgan Stanley,F2300\nEXECUTIVE,PENTACON INC.,Y4000\nRetired Administrtive Assistant,Carbon County School District #1,X3500\n\"Director, Dairy Manufacturing\",\"Publix Super Markets, Inc\",A2000\nSTUART LAW FIRM PLLC,,K1000\nINDEPT OIL & GAS PRODUCER,,E1100\nSenior Vice Presiden,\"Allied Beverage Group, L.L.C.\",G2850\nChairman,Madison Dearborn Partners,F2600\nHUGHES LUMBER CO,,B5200\nJEWELER/SELF-EMPLOYED,K.B DESIGNS,Y4000\nMANAGING DIRECTOR,ECHOSTAR/HUGHES CLOUD SERVICES,Y4000\nADMINISTRATOR,SEIU,LG300\nV.P. Human Resources,Permanente Medical G,H3700\nAccountant,\"ERNST & YOUNG, L.L.P\",F5100\nFINTEX USA,,Y4000\nRADIO PRODUCER,AVEEKEE,Y4000\nCommunications,Pew Center for the States,X4000\nALSHULER GROSSMAN ET AL,,J7400\nTRINITY TRANSPORT,,Y4000\nSVP & GENERAL COUNSEL,MUNICH AMERICAN REASSURANCE COMPANY,F3300\nManager,ATC Management,Y4000\nprofessor,Bentley college,H5100\nATTORNEY,BARRAN LIEBMAN LLP,Y4000\nPRESI,FIRST CAPITAL INSULATION INC.,B0500\nREAL,C21 CHAMBERLAIN AND ASSOCIATES,Y4000\nCOMMERCIAL REALESTATE,,F4200\nSELF,1318 DBA IHOP,G2900\nCANDIDATE,CHARLES FOR CONGRESS,Z9000\nBeverages,Imbibe,Y4000\nWest Tx A M Univ,West Texas A&M University,H5100\nNONE,BRUCE DIEPHOUSE,Y4000\nCHAIRMAN AND CEO,THE ARAZ GROUP,J5100\nPRESIDENT / CREATIVE DIRECTOR,FLYING COLORS,Z9500\nDoctor,Provider Physicians East Inc,H1100\nWriters/producers,Self-employed,G0000\n\"WOLF, BLOCK, SHORR\",,K1000\nRISK MANAGEMENT OFFICER,SCANA,E1620\nLAIFER & ASSOC,,F2100\nRN,Virginia Mason Medical Center,H2100\nBROKER,LAND ADVISORS,Y4000\nATTORNE,LIGGIO BENRUB & WILLIAMS PA,J1200\nVice President of Operations,\"Recruiting Resources Unlimited, LLC\",Y4000\nHOME EXECTUIVE,SELF-EMPLOYED,Y4000\nAnalyst,Russell,Y4000\nFAIRWAY COLLECTION SERVICES,,Y4000\nAMERICAN CABLEVISION,,Y4000\nHome Improvement,Self-Employed,B3000\nTRANSTECH PHARMA,,H4300\nJOHN PRESIDENT,THONEL ASSOCIATES IN,Y4000\nCHAIRMAN,WILLIAMS AND JENSEN,K2000\nDESA INC,,Y4000\nPHYSICIAN,\"DRUE DEVORE, M.D.\",H1100\nSALES EXECUTIVE,TICOR TITLE OF NEVADA,F4300\nPRIVATE EQUITY,LEON MAYER & CO.,F4000\nASST. ADMINIST.,KAISER PERMANENTE,J7400\nJONES RAPHAEL & OULUNDSEN INC,,F3100\nLAWYER,DEVITA & HOWE,K1000\nBUSINESS OWNER,HABEGGER CORPORATION,Y4000\nDivision Manager,State of Colorado,X3000\nPILOT,DELTA AIR LINES INC./PILOT,T1100\nAUGUST MACK ENVIRONMENTAL,,E2000\nJOHN BREAUX SENATE COMMITTEE,,J1200\n\"BEASLEY, CASEY, CALLERAN ET AL\",,K1000\nRETIRED,\"US GOV'T\",Z9500\nPRTES.,EVANS AND WOOD/PRTES.,Y4000\nREAL ESTATE EX,ALLIANCE DEVELOPMENT,Y4000\nEXECUTIVE DIRECTOR,TOURO FOUNDATION,Y4000\nOWNER,SCHILLI TRANSP. SERVICES,Y4000\nEXECUTIVE,INTERSTATE VAN LINES,T3100\nREALTOR,MIDLAND PROPERTIES,F4000\nInvestment,self,G5270\nLRI INC./PRESIDENT/ CONSULTANT,,K2000\n\"VICE PRESIDENT, PUBLIC AFFAIRS & BUSIN\",STYRON LLC,M1000\nMANAGING MEMBER,TEXAS SILICA LLC,Y4000\nLEUCADIA NATIONAL CORPORATION,,F3400\nWAGLEY INVESTMENTS,,F4500\nBEERDWIRE INSTITUTE,,G2850\nHARRIS AND GRAVES PA,,Y4000\nAttorney,Washington Council of Ernst & Youn,K2000\nSTYLES HAIR AND NAIL SALON,,G5100\nSTUDENT,AMERICAN UNIVERSITY,Y1000\nCHAIRMAN,THOMPSON COBURN,Y4000\nEXECUTIVE,TRIANGLE PACIFIC CORP.,Y4000\nMANAGER,BAIN & COMPANY,F2600\nWOLF MARYLES & ASSOC LLC,,F5100\nPASTOR,HERITAGE BAPTIST CHURCH,X7000\nBUSINESS OWNER,DTS INC.,G5600\nPATENT BROKER,UBM TECHINSIGHTS,Y4000\nINFO REQUESTED,Mgd Technologies,Y4000\nBPG,,Y4000\nPROFESSOR OF BIOCHEM,UNIVERSITY OF ARKANSAS,H5100\nAnesthesiologist,LA County,X3000\nOWNER,\"PAIRIE PARK CINEMA, LLC\",C2400\nCeo/president,\"All-state Express, Inc.\",Y4000\nAssociate Professor,Singapore Management University,H5100\nRequested,,B2000\nGROUP VP,TALON LLC,F2600\nHospital Executive,RUMCSI,H2100\nInvestment advisor,Capital Counsel LLC,Y4000\nFARMER,BEAR MOUNTAIN DAIRY,A1000\nBALL STATE UNIVESITY,,H5100\nMANAGMENT,THOMPSON TRACTOR,A4200\nEXPLORER,,Y4000\nLOWENSTEIN SANDLER ET AL,,K1000\nAdministrative Assistant,Univera,Y4000\nINSTRUCTOR,LOS ANGELES COMM. COLL. DIST.,L1300\nCARVER CORP,,C5000\nTHE PHOENIX FUND FOR NEURO,,Y4000\nArchitect,\"PPKS Architects, Ltd.\",B4200\nOFFICE MANAGER,CEMTECH INTERNATIONAL,Y4000\nATTORNEY,NOSTRUM PHARMACEUTICALS,H4300\nPresident,\"RAPI, Ltd\",Y4000\nSurgeon,The Ohio Neurosurgical Institute,H1130\nManufacturing,Weyerhaeuser Corporation,A5000\nCARNES CONSTRUCTION CO,,B1000\nOWNER,NEW ERA INFORMATION TECHNOLOGIES,Y4000\nN/A/NONE,,F2100\nInvestment Executive,\"SmarForest Ventures, LLC\",G1200\nGLOBAL MANAGER,ADOBE,C5120\nLOAN PROCESSOR,REPUBLIC BANK,F1000\nEXECUTIVE,MOLEX INCORPORATED/EXECUTIVE,C5000\nPOLY-CON,,M2300\nINSURANCE AGENT,THE O.N. EQUITY SALES COMPANY,F3300\nBuilder,Mack Construction,B2000\nLawyer,Colliers Bennett,F4200\nPRESI,C A MILLER CUSTOM WOODWORKING,G1200\nPRESIDENT,OVERMAN BUILDING SUPPLY,Y4000\nBANKER,\"CITIZENS NATIONAL BANK, N.A.\",F1100\nPres.,Noland Health Services,Y4000\nCPA,Self - Employed,F5100\nSVP Finance/Controller,Sony Pictures Entertainment,C2400\nCustodian Service,D.P.W. B.B.R. City Hall,Y4000\nBEE FARMER,SELF,A0000\nMANAGING PARTNER,WHALEROCK CAPITAL,Y4000\nProgram Manager,us Army,X5000\nSAVIN CARLSON INVESTMENT CORP,,F2100\nAttorney,Martinez & Curtis,K1000\nKNOX & EVANS,,K1000\nVice-President,\"Vulcan, Inc.\",B5100\nPresident,Bilingual Educational Services,Y4000\nSANDIA LABS,,D4000\nPetroleum Geologists,Self Employed,E1100\nCO-FOUNDER,MARVELL,C5110\nART HISTORIAN,SELF EMPLOYED,J7400\nDOCTOR,CENTRAL DUPAGE HOSPITAL,H2100\nPRINTER SVC,JAPS OLSON CO,Y4000\nGovernment Employee,Cook County,X3000\nBRIAN INSULATION CO INC,,Y4000\nINVESTMENT COUNSELLOR,KALMAN KUSHNIR CAPITAL,F0000\nOPERATIONS MANAGER,MCCABE & COMPANY,K2000\nCOMMERCIAL CARVING COMPANY,,Y4000\nDOCU - DATA CORPORATION,,Y4000\nAttorney,Schreck Rose,Y4000\nBiologist,@home with kids,Y1000\nPRESIDENT,K2 CONSULTING,Y4000\nEXECUTIVE MANAGEM,SYMPHONY SERVICES,Y4000\nPHYSICIAN,STRAND ORTHOPAEDIC,H1130\nCEO,FUSION TELECOMMUNICATIONS,Y4000\nPRESIDENT,PR BASEBALL LEAGUE,Y4000\nPRESIDENT-GEN HOSPIT,\"GENESIS HEALTH VENTURES, INC.\",H2200\nBuilder,Thoughtforms Corp,Y4000\nPHYSICIAN,AHSG,Y4000\nPresident,Customer Feedback LLC,Y4000\nAsst. U.S. Attorney,U.S. Department of Justice,Z9500\nOWNER,VINE TECH EQUIPMENT,Y4000\nPAUL C MURPHY INC,,T3100\nEXECUTIVE,BRYCE CORP.,Y4000\nFINANCE,FIRST FEDERAL SAVINGS BANK,F1200\nEDITOR,SELF EMPLOYED/EDITOR,J1200\nPRESIDENT,THE ESPY COMPANY,Y4000\nAttorney,\"Regan, Halpern and Long\",K1000\nSOLE PROPRIETOR,CENEGENICS LLC,Y4000\nCLASSROOM TEACHER,SAN BERNARDINO CITY UNIFIED,L1300\nGovernment Employee,State of New Jersey,X3000\nCHIEF EXECUTIVE,HUGHES LAND COMPANY,J1100\nENVIRONMENTALIST,\"EPEAT, INC./ENVIRONMENTALIST\",Y4000\nProfessor,Tx A&M University,H5100\nRN,Chehalis West Assisted Living,J1200\nBusinessman,Borton Volvo Inc,T2310\nDirector,Merrill Lynch Capital Healthcare Finan,H2200\nSales,Kronos Incorporated,C5120\nDrum Technician,Drum Dr,Y4000\nINSURANCE SALES,FARMERS INSURANCE,F3100\nCONSULTANT,PUBLIC STRATEGIES,K2000\nROCKVILLE CRUSHED STONE,,B5100\nMEDIA PRODUCER,ODCTE,Y4000\nBANKER,MORGAN KEEGAN & CO.,F2100\nTECHNICAL SALES MGR,BRIO TECHNOLOGY,Y4000\nPresident,Arbonne,M3300\nC.,PLISE DEVELOPMENT & CONSTRUCTION,B1500\nPRINCIPAL,CREDIT RENAISSANCE PARTNERS/PRINCIP,F2100\n\"NAT'L DIRECTOR OF PRODUCER RELATIONS\",SUPERIOR FARMS,A1000\nARTIST,FIBER ARTS STUDIO,Y4000\nGENERAL CIGAR,,A1300\nVice President,Senath State Bank,F1100\nTV PRODUCER,FAMILY TODAY INC.,Y4000\nReal Estate Broker,Mcgraw,F4200\nChairman,The Shannon Foundation,G0000\nPHYSICIA,SOUTHERN HEART SPECIALISTS,H1130\nSCHRODEL WERTHEIM,,F2100\nMANAGING DIRECTOR,TREMONT PUBLIC ADVISORS,Z9500\nCHAIRMAN/FOUNDER,BELMARK INC/CHAIRMAN/FOUNDER,Z9500\n\"GRANDMA'S TREASURES\",,Y4000\nPROGRESSIVE CAPITOL SECURITIES CORP,,F2100\nOFFICE OF THE MAYOR,CITY & COUNTY OF DENVER,Z9500\nAD LIFE ADVERTISING,,G5210\nAttorney,Ayres Law Group,K2000\nLIEN RESOLUTION,LIEN RESOLUTION GROUP,Y4000\nSoftware Engineer,Link Simulation,Y4000\nCHAIRMAN,143 RECORDS,C2600\nV. P. OF OPERATIONS,FOUNDATION CLEANERS,Y4000\nMINOR ADVERTISING COMPANY,,G5210\nCOOPWOOD COMMUNICATIONS LLC,,Y4000\nPublisher,PlayBill,Y4000\nNURSE,MSU,H5100\nPhysician,\"Tabsafe Medical Services, Inc\",JE300\nPRESIDENT,COUNTRYFAIR FOOD STORES,G2400\nFIRST INDUSTRIAL REALTY TRUST,,F4200\nCORPORATE COUNSEL,ATLAS AIR WORLDWIDE HOLDINGS,T1500\nPERSONAL FINANCE COMPANY,,F0000\nNYC BOARD OF ELECTIONS,,Y4000\nLOAN OFFICER,PEOPLES LOAN COMPANY,Y4000\n\"BROTHER'S TOYOTA\",,T2310\n\"CROWE, CROWE & VERNAGLIA\",,K1000\nOwner,Bandu.Net,Y4000\nGroup President,United American Security,Y4000\nPHYSICIAN ASST,REDFIELD CLINIC/PHYSICIAN ASST,H1100\nAttorney,Nossaman LLP,K1000\nCLU,TODD ORGANIZATION,F5000\nBUILDER,SUNDERMAN CONSTR. CO,B2000\nATTORNEY,TISON AND GRANT PA,Y4000\nMARKETING CONSULTANT,STYNSON LLC,Z9500\nINTERGRATED ARCHIVE,,C5130\nZESIGER CAPITAL GROUP,,Y4000\nAttorney,Agarwal Firm,Y4000\nCOMMISSIONER OF THE GENERAL LAND OF,,Y4000\nfinance,Benn Capital,Y4000\nOWNER,COLLEGE SUCCESS FOUNDATION,H5000\nGOLF,,G5210\nOrthopaedic Surgeon,Fleming County Hospital,H1130\nAerospace Engineer,Boeing Company,D2000\nJOHSON & COLMAR,,Y4000\nMediator,Self,G0000\nDIRECTOR OF PUBLIC POLICY,SOUTHERN BANCORP COMMUNITY PARTNERS,Y4000\nBusiness Services Of,BB&T,F1100\nATTORNEY/EQUITY PART,QUARLES & BRADY STREICH LANG LLP,K1000\nPresident,Jones Dealerships,T2300\nMAILBOXES ETC,,G5000\nATTORNEY,\"METZ LEWIS, LLC\",K1000\nSEVIN ROSEV FUNDS,,F2100\nAttorney,Emery Celli & Abady,K1000\nENGINEER,MOFFATT & NICHOL,Y4000\nExecutive,Stuart E. Price & Co.,Y4000\n\"MGR, IPS\",\"AVNET, INC\",Y4000\nHilliard Lyons,,F2300\nPHYSICIAN,\"SOUTH COUNTY RADIOLOGISTS, INC\",H1130\nCOORDINATOR,COUNTY OF DELAWARE/ PA,Y4000\nC.E.O./CHAIRMAN,ARVEST,F1100\nSERVPRO OF EL CAJON/BUSINESS OWNER/,,Y4000\nOwner,D Howe & Sons Construction Inc.,B1500\nWriter,Brio Software,C5120\nGRAPHIC DESIGNER,THE BRAND UNION,Y4000\nCHIEF EXECUTIVE,AECOM,B4000\nPRICE KUSS & MELLOWITZ,,Y4000\nBARRERA ASSOCIATES INC,,Y4000\nEngineer,Citrix Systems,C5120\nRETIRED,ARMY,J6200\nEXECUTIVE VP,FORREST CITY ENTERPRISES/EXECUTIVE,F4100\nINVESTMENTS,SHORE CAPITAL PARTNERS LLC,Z9500\nInsurance Broker,HL Jamison & Co LLC,Y4000\nHEDGE FUND MANAGER,\"MULTIPLE PORTFOLIO FUND, LP\",K1000\nECKERT SEAMANS CHERING,,K1000\nDRESSMAKER AND SEWING TEACHER,SELF,Y4000\nFARM MANAGER,SELF-EMPLOYED/FARM MANAGER,A1000\nPIPING DESIGNER,JGA COMPANIES INC,Y4000\nMILLER & GEORGE,,Y4000\nPRESIDENT,FIRST AMERICAN TITLE CO. OF SD,F4300\nCONTINENTAL CEMENT CO INC,,B5100\nHORIZONTAL BORING,\"TURPIN, INC.\",Y4000\nYOUNG COMMUNICATIONS,,C4500\nDICKSTEIN SHAPIRO MORIN AND OSHINSK,,K1000\nFL HOSPITAL,ADVENTIST HEALTH SYSTEM,H2100\nEXECUTIVE,BESSEMER TRUST,F2100\nNEW ENTERPRISE STONE AND LIME,,B5100\nChief Executive Officer,Natix Global Asset Management,Y4000\nProfessor,Kent Law School,H5170\nASSOC PROFESSOR,UI URBANA-CHAMPAIGN,H5100\nFINANCIAL MANAGEMENT,SELF/FINANCIAL MANAGEMENT,F0000\nRETIRED,SALES,G0000\nGOVT.RELATIONS CONSULTANT,CAPITOL SOLUTIONS,K2000\nINSURANCE BROKER,PINOY INSURANCE CO. INC.,F3100\nEXECUTIVE DIRECTOR,EMPIRE STATE PRIDE AGENDA,Y4000\nTeacher,Csu,Y4000\nExecutive/Lawyer,Federated Investors,F2100\nVice President,Safe Decisions,Y4000\nCEO,LEXINGTON MGT GROUP,G5200\nALTOUR INTERNATIONAL,,J5100\nOWNER,\"RUDY'S TACOS\",Y4000\nRESORT AT THE MOUNTAIN,,Y4000\nGOUGEON MANUFACTURING,,E1500\nCHAIRMAN,BAKER REALTY CO.,F4200\nUnempolyed,Unemployed,G5260\nExecutive,\"Madison chemical Co,Inc\",M1000\nEXECUTIVE,WALTON CONSTRUCTION,B1500\nMALADY AND WOOTEN PUBLIC AFFAIRS LL,,K2000\nSURGEON,OHIO STATE UNIV. PHYSCIANS INC.,H1130\nEXECUTIVE,F-S PRESTRESS,Y4000\nRealtor,Ranch Realty,F4200\n\"LEWIS D'AMADO ET AL\",,K1000\nEXECUTIVE INVESTMENTS INC,,Y4000\nSTEPHEN W BRODERS COMPAN,,Y4000\nAttorney,Reese  Dinker & Bidell,J5100\nOWNER,STEINHARDT MANAGEMENT CO,F2600\nATTORNEY,\"BECKER & SCHULZ, S.C.\",K1000\nPresident,Wish Enterprises,F4500\nAMER PROTECTIVE SERVICES IN,,G5290\nBAUGH ENTERPRISES,,Y4000\nKEWAUNEE COUNTY,,Y4000\nATTORNEY,GLAUBER BERENSON &,K1000\nAttorney,\"Phillips, Spallas & Angstadt\",K1000\nformer journalist,retired,J1100\nBANKER,FIRST MORRIS BANK & TRUST,F1000\nCONSTRUCTION EQUIPME,BIERSCBACH EQUIPMENT,Y4000\nHARBOR REALTY,,F4200\nWARADY & DAVIS,,J5100\nINDEPENDENT CONTRACTOR/ REALTOR,BOB PARKS REALTY,F4200\nPRIVATE INV,BEAR STEARNS & CO. INC.,F2300\nMANAGER,ASPLUNDH TREE EXPERT COMPANY,A8000\nRETIRED,N/A,B4200\nlobbyist,K&L Gates,K2000\nTHINK - NH,,Y4000\nNIH MD,,X3000\nPROFESSOR,UNM SCHOOL OF LAW,H5100\nBANK EMPLOYEE,CITIBANK N. A.,F1100\nPresident,Hepler Research & Development Inc,Y4000\nEditor,Charter Communications,C2200\nInformation Requested,\"Tecton SMP, Inc\",J1200\nMovie Producer/Activ,Self-Employed,J1200\nPRESIDENT,\"BANCTENN CORP, INC.\",Y4000\nCEO,SIMMONS ADVERTISING INC,G5210\nPresident and CEO,Conatus Pharmaceuticals Inc,Y4000\nEXECUTIVE VICE PRESIDENT,\"WATCO COMPANIES, INC.\",T5300\nDEVELOPER,BROKER,F4000\nREALTOR,OLDE CARRIAGE REALTY,F4200\nPROJE,VIRGINIA MASON MEDICAL CENTER,H2100\nFLAGSHIP INDUSTRIES,,Y4000\nMORTGAGE BANKING,PROVIDENT BANKING,J1100\nINFO REQUESTED,Pete`s Chicken N More,Y4000\nChairman,Schwartz & Benjamin LLC,Y4000\nNEUROSURGEON,EASTSIDE NEUROSURGERY PC,H1130\nMARKETER,CARTERENERGY CORPORATION,E1170\nCHIEF EXECUTIVE OFFICER,COWTAN & TOUT/CHIEF EXECUTIVE OFFIC,G3000\nGOVT PERSONNEL MUTUAL LIFE INS CO,,F3300\nLawyer,Mass Law Reform Insitution,K1000\nBus Development,Peduzzi Associates Ltd.,G5270\nPARTNER,LAW OFFICES OF FREDERICK GRAEFE,K1000\nHealth Care Manager,Diagnostic Systems of GA,Y4000\nRET MINING,,Z4100\nREAL ESTATE BROKER,MEL FOSTER CO.,F4200\nVice President,Oakland University,H5100\nMANAGER/ECONOMIST,STATE OF CALIFORNIA PUC,Z9500\nINTL RESCUE COMMITTEE,,Y4000\nEngineer,STP NUC OPERATING CO.,Y4000\nQUANTUM CHEMICALS,,M1000\nMITCH COX PROPERTIES,,F4000\nCORPORATE OFFICER,\"RONLIE, INC.\",Y4000\nLIFESAVERS INC,,J6200\nSR. VP,SELIG ENTERPRISES,F4500\nSurgeon,SW Neuroscience,H1130\nCHILES OFFSHORE DRILLING COMPANY,,E1150\nMADDUX REPORT,,J1200\nPresident,\"RHM Consulting, Inc.\",Y4000\nLAWYER,NY LIFE INVESTMENT MGMT,F2100\nConsultant,Cumberland Consulting Group,Y4000\n\"Saint Ann's School\",,H5100\nEngineering Manager,Genentech,H4500\n\"Assoc Dean & Director, Extension and\",University of Delaware,H5100\nCUBOT CORP,,Y4000\n\"DIRECTOR, GOVERNMEN\",\"GENENTECH, INC.\",H4300\nSTRUCTURAL HISTORIAN,MASSDOT,Y4000\nLUX FARMS/FARMER/OWNER,,A1600\nASVC,,Y4000\nExternal Affairs,Ariel Capital Management,F2100\nSOUTHEASTERN ILLINOIS ELECTRIC COOP,,E1610\nMAXIE PRICE CHEVEROLET,,T2300\nMAYBELLE MANUFACTURING,,Y4000\nHEALTHCARE CONSULTA,DEFERRED HEALTH,Y4000\nPRE,KIMBALL HILL MANAGEMENT COMPANY,F4500\nInvestment,Self-employed,F7000\nOWNER,\"BUSINESS EQUIPMENT, INC.\",Y4000\nphysical therapist,unemployed,Y1000\nCity Planner,Self/V & Vandor Ltd,Y4000\nCEO,\"TLC BEATRICE, LLC\",J7500\nATTORNEY,CITY OF BOSTON,J1200\nCENTURY 21 ACTION RE,,F4200\nPRESIDENT,MODERN SALES & SERVICE,Y4000\nINFO REQUESTED,HOMEWOOD SUITES BY HILTON,G0000\nowner,Smokey Mountain Gift Show,Y4000\nCARDIOLOGIST,ATHENS REG SPEC SVCS,Y4000\nCORRIVEAU & ASSOCIATES,,Y4000\nVideogames,Electronic Arts,Y4000\nBRILEY WILD & ASSOCIATES INC,,B4000\nFINANCIAL EXEC,INGRAM BARGE COMPANY,T6200\nARCO COAL AUSTRALIA INC,,E1200\nCOO,JANNEY MONTGOMERY SCOTT,F2000\nCLU,JOHN D. BECKER & ASSOCIATES,F5000\nWriter / Fundraiser,Mspca,Y4000\nSMITH BROS,,B3000\nPRESIDENT,JIM CLARK AUTO CENTER,T2300\nEXECUTIVE,\"PAPER PRODUCTS CO., INC.\",A5200\nVP,HILL OIL COMPANY,E1100\nPartner,\"Pinnacle Healthcare, Inc.\",H0000\nVENTURE CAPITAL,\"USRG MANAGEMENT COMPANY, LLC\",Y4000\nGENERAL COUNSEL,LIQUID ENVIRONMENTAL SOLUTIONS/GENE,E2000\nOwner,Cafe` Bolero & Grill,G2900\nPASTOR,WATCHUNG PRESBETYRIAN CHURCH,X7000\nMARC EQUITY CORPORATION,MARRANO,Y4000\nCEO,\"BRADMARK TECHNOLOGIES, INC./CEO\",Y4000\nSurface Fwisher,Turbine Engine Components Tech,Y4000\nTOWN OF WOODBRIDGE,,K1000\nTOXICOLOGIST,AEGIS SCIENCES CORPORATION,H3000\nARC ALLEGHENY,,Y4000\nCONTROLLER,APPLIED HANDLING NW,Y4000\nREAL E,GARRISON DEVELOPMENT COMPANY,Y4000\nAZTECA FOODS INC,,G2000\nExec.,Golden Rule Ins. Co.,Y4000\nOWNER,LEAVECKEE & CO,G2900\nPartner,\"Encap Investements, LP\",F2600\nINVESTMENT ADVISOR,POINTE CAPITAL MANAGEMENT,F2100\nSenior Public Policy Advisor,Baker Donelson,J7400\nAttorney,McClain & Adams,K1000\nYUASA,,Y4000\nOwner,North Bowl Restaurant,G2900\nATTORNEY,MORGAN AND HARTSON,Y4000\nPRESIDENT,DENNIS DIGIRNDO CORPORATION,Y4000\nPUBLISHER,ELSEVIER,C1100\nEXECU,TECHNOLOGY CROSSOVER VENTURES,F2600\nJMJ FINANCIAL CORP,,F0000\nOWNER,CRUSH RESTAURANT,G2900\nVice President,Burton Snowboards,M3600\nCRNA,CRITICAL HEALTH SYSTEMS,H1710\nSTATE ASSEMBLY REPRESEN,STATE OF WI,X3000\nACTIVIST PHILANTHROPIST,,Y1000\nT & K ROOFING,,B3000\nEMERGENCY PHYSICIAN,DR. RONALD EUGENE GRAHAM,H1100\nDE ANZA GROUP INC,,Y4000\nOwner,Patton Leather Rhythm,Y4000\nWALLACE BAUMAN LEGON,,Y4000\nSTATE EXECUTIVE DIRECTOR,USDA FARM SERVICE AGENCY,X3000\nLeapfrog Interactive,,Y4000\nLobbyist,Jerich and Associates,Y4000\nComputer Operator,Mack Trucks,T3200\nATT,\"KLUGER, PERETZ, KAPLAN & BERLIN\",K1000\nRock Financial,Banker,F0000\nProject Manager,Terraquest Solutions,Y4000\nHOMEMAKER,N/A,M2400\nEBER INTERNATIONAL,,M3100\nChair,Hall Financial Group,F2600\nAUDIOLOGIST,HEMPHILL HEARING CENTER,Y4000\nPRES,ENERGY SERVICES PROVIDER GROUP,E1000\nPhysician,Shriners Hospital for Children,J7400\nOWNER,ARCADIA INT. CORP.,Y4000\nLOWE DEVELOPMENT CO,,B2000\nEXECUTIVE,KLONDYKE CONSTRUCTION,B1500\nPRESI,THOMAS P. PAPPAS & ASSOCIATES,K1000\nEQUIPMENT OPERAT,COMMONWEALTH OF PA,X3000\nBROKER/OWNER,HELP-U-SELL REALTY CONSULTANTS,F4200\nNurse,Patrick Hughes MD,H1100\nPHYSICIA,ALLENTOWN ANESTHESIA ASSOC,H1130\nComputer Programmer,Yelllow Roadway Tech,Y4000\nGRIFFIN PLUMMER & ASSOC,,Y4000\nGARRARD COUNTY MEMOR HOSP,,Y4000\nKITTLEMAN THOMAS RAMIREZ,,K1000\nMED STAR AMBULANCE SERV,,H3000\nPRESIDENT & CEO,RR DONNELLEY,C1300\nHUMAN RESOURCES,HME INC.,Y4000\nNATL ASSN OF SURETY BOND PRODUCERS,,F3100\nDIRECTOR O,\"VICTORIA'S SECRET DIRECT\",G4100\nCHESAPEAKE ANESTH ASSOC,,H1130\nBusiness Mgr,Benchmark Pub Ltd,G2900\nCO-OWNER,DURADRIL SYSTEMS INC,Y4000\nINVESTMENT MANAGER,GOLUB CAPITAL,F5000\nION Electronics,,D3000\nPRESIDENT,N.V.R. HOMES INC.,J1100\nOrthopaedic Surgeon,Dept of Veterans Affairs,H1130\nDEPUT,NORTH CAROLINA COURT SERVICES,Y4000\nPRIVATE EQUITY,KELSO AND CO.,C5110\nMCCOMB ENTERPRISES/OWNER/PRESIDENT,,Y4000\nPHYSICIAN,ORLANDO HEALTH,H1100\nMANAGER,ABN,F1100\nATTORNEY,THE POWELL LAW GROUP,K1000\nDP-GVP DEBS & CIO,DUKE ENERGY CORPORATION,E1620\nMANAGER,CALPACIFIC EQUIPMENT COMPANY,Y4000\nMANAGEMENT,OIL STATES INTERNATIONAL,E1150\nATTORNEY,\"WELSH & KATZ, LTD.\",Y4000\nCAST TRANSPORTATION INC,,T3000\nATTORNEY,G.E. CAPITAL,F1400\nFLIGHT PROFICIENCY SERVICE INC,,M1000\nManaging Director,Annaly Capital Management,F2100\n\"THE O'RIORDAN GROUP\",,G1300\n\"CEO,\",NAVFAC FEDERAL CREDIT UNION,F1300\nDAY LABORER,,G0000\nELECTRICAN,,B3200\nTURNER AD AGENCY,,G5210\nSELF-EMPLOYED DAIRYM,J W DAIRY FARM,A1000\nLABOR RELATIONS BOARD,,X3000\nKELLY SPRINGFIELD,,Y4000\nBodyworker,Self employed,Y4000\nConsultant,Deep Shift,Y4000\nCONSULTANT,ARTIST.COM,C5140\nSELF & TSC LTD,,Y4000\nHomemaker,N/A,E1150\nJAMES PENNY FOUNDATION,,J7400\nDIRECTOR,PACIFIC NW NATIONAL LAB/DIRECTOR,Y4000\nATTORNEY,KIRKLAND & ELLIS LLC,K1200\nFRONTENAL CO,,F2500\nICIL,,Y4000\nProduct Manager,AT&T,C4100\nReal Estate Developer,Key Developers LLC,F4100\nDENNIS M CASEY INC,,G5210\nInformation Requested,Greenfire Development,F4100\nACW MANAGEMENT CORP,,G5500\nReal Estate Investor,\"BH Equities, Inc.\",F4000\nCFO,Superior Beverage Group,G2000\nMANAGER,ROSENTHAL COLLINS GROUP L.L.C.,F2200\nPROFESSOR,THE UNIVERSITY OF PENNSYLVANIA,H5100\nHEART OF AMERICA RESTAURA,,G2900\nFoundation Director,Abbott Laboratories Funds,H4300\nMCCOMB SCHOOL DISTRICT,,X3500\nexecutive,Phoenix Computer Associates Inc.,C5100\nRealtor,Bob Cook Realty,F4200\nACCOUNT MANAGER,RUSH TRUCK CENTERS,Y4000\nInformation Requested,Iowa Health,H0000\n\"Self Employed, Retail Shop Owner\",Retropolitan Ltd,Y4000\nSELF EMPLOYED,\"MURPHY'S BLEACHERS\",Y4000\nRESEARCH MICROBIOLOGIST,U.S. EPA,X3000\nMEDICAL PHYSICIST,DUKE UNIVERSITY/MEDICAL PHYSICIST,H5100\nHEDGE FUND MANAGER,JAMISON CAPITAL,F2700\nSVP REFINING OPERATIONS,\"VALERO SERVICES, INC.\",E1160\n\"Writer, teacher\",Self,C1100\nManager,Energy Systems Group,E1620\nEXECUTIVE,FRITZI REALTY,J5100\nATTORNEY,HORWOOD MARCUS -- BERK,K1000\nPROGRAM M,SCIENCE & TECHNOLOGY INTL,Y4000\nPRIVATE EQUITY,JPM CHASE,F1100\nRN,RETIRED/RN,J1100\nNONPROFIT,RARE,Y4000\nTHOMAS GORMAN INC,,Y4000\nSki Instructor,Squaw Valley Ski Corporation,Y4000\nDOCTOR,ADAMS PATTERSON OBSTERICS & GY,Y4000\nREALTOR,HJN TEAM,Y4000\nAttorney,Great West Life,F3300\nOWNER,REX HEAT TREAT,Y4000\nAVP,USHealth Group Inc.,F3200\nARD,,G5200\n\"LANDS' END INC\",,G4700\nATTORNEY,PRAIRE MANAGEMENT AND DEVELOPMENT INC.,F4000\nOwner,Preferred Home & Community Based Servi,Y4000\nFAIRBANK MASLIN MAULIN & ASSOC,,Y4000\nNYS DORMITORY AUTHORI,,X3000\nENGINEER,IDEO,Y4000\nJP Morgan,,Z1100\nPRESIDENT,HUDSON & BERGEN,Y4000\nAttorney,\"Pratt, Fossard & Jensen\",Y4000\nORPRO INC,,H4100\nChemist,Shell Oil Co,E1110\neconomist,Nathan Associates Inc.,Y4000\n,\"Univ. Of California, San Francisco\",H5100\nSTRATEGIES FOR TOMORROW INC,,Y4000\nASST. PASTOR,TRINITY BAPTIST CHURCH,X7000\nTELECOMMUNICATIONS CONSULTANT,SELF,C4500\nBUYER,STATE PURCHASING,Y4000\nSOCIAL WORKE,WALDEN BEHAVIORAL CARE,H3800\nOWNER,STRATEGIC INVESTMENT ADVISOR,F2100\nCEO,WELSH COMPANIES,F4000\nHARBOR FREIGHT TOOL,,Y4000\nPROFESSOR EMERITUS-RETIRED,UCLA,H5100\nKOHLBERG KRAUIS ROBERTS,,F2600\nP P A C,,C2800\nQUINN GILLERPIE & ASSOCIATES,,K2000\nCHAIRMAN,NUNIMAE,Y4000\nWESTERN COMMUNITY COLLEGE,,H5100\nINVESTMENTS,RESEARCH AFFILLIATES,F2100\nDoctor,Columbus Neraceical Group,Y4000\nATTORNEY,\"WINDLES MARX LANE & MITTENDORF, LLP\",K1000\nPHYSICIAN,PJ SURGICAL INC.,Y4000\nKISLAK,,F4000\nENTREPRENEUR,PRO PIANO,Y4000\nDIESEL MECHANIC,\"STEVE'S DIESEL\",Y4000\nW. W. Norton & Compa,Editor,J1200\nPHYSICIAN,SELP-EMPLOYED,Y4000\nFAMILY THERAPIST SOCIAL W,,H6000\nVP OF GOVT A,CHESAPEAKE ENTERPRISES,K2000\n\"President, CEO\",Camco Financial,F0000\nPRESIDENT,HBK INVESTMENTS,F2100\nN/A,FRM Associates,Y4000\nEXECUTIVE,\"SPORTAILOR, INC.\",Y4000\nSAN DIEGO OFFICE INTERIORS,,Y4000\nRn,Bloomington Hospital And,H2100\nPresident,Citizens Bank,F1000\n\"GOV'T AFFAIRS\",GENERAL MOTORS,T2100\nCUSTOM AUTOMATION,,M2300\nBUSINESSPERSON,REGINA YIN,Y4000\nStaff Representative,United Steelworkers of America,LM100\nInformation Requested,\"State of CA, Department of Corrections\",X3200\nChiropractor,Med 1St Of Evansville,Y4000\nMIZZONE FILKO & MIZZONE,,Y4000\nInformation Requeste,Chaplin Global,Y4000\nPRESIDENT,RENT-A-CENTER,G5300\nPHYSICIAN,ASSOCIATES IN SURGERY,H1130\nreal estate,\"Pizzagalli Properties, LLC\",F4000\nATT.,ATT.,C4100\nInformation Requeste,\"Banc of America Investment Services, I\",F1100\nBusiness Development & Marketing,Self,G0000\nEXECUT,UNIVISION COMMUNICATIONS INC,C2300\nSHERIDAN TRANSPORT,,LT500\nCONTRACTING,KIDWELL COMPANIES/CONTRACTING,Y4000\nIT Management,Garco Building Systems,Y4000\nAssociate Producer,TWO RIVER THEATRE,C2900\nPRESIDENT,WATESHED DEVELOPMENT,Y4000\nHASON MILBY & RIDINGS,,Y4000\nPRESIDENT,\"CAPITOL GAINS, CORP.\",J5200\nEmergency Physician,Dr David E Wilcox,H1100\nNOMINEE FOR SEC OF ARMED FORCE,,Y4000\nPROFESSOR AND CONSULTANT,SELF-EMPLOYED,Y4000\nHORSETRAINER,SELF EMPLOYED,A3500\nVocational Rehabilitation Counselor,\"Robert R Cornell & Associates, LLC\",Y4000\nPresident,Quetron Systems Inc.,G1200\nCEO,KEMET CORPORATION,G4600\nC B L & ASSOCIATES,,F4100\nSills Cummis & Gross PC,,K1000\nCPA,WHITE PETRON,Y4000\nCOO,OUTLAND RENEWABLE ENERGY LLC,E1500\nWriter/Marketing Consultlant,Self employed,C1100\nSongwriter/Provider,Self Employed,G0000\nMERCHANDISE CONSULTANT,,Y4000\nConsultant,Armitage International,Y4000\nEXECUTIVE DIRE,,Y4000\nAC,CORNERSTONE COMMUNICATIONS GROUP,Y4000\nINSUR,BUSH & BOGGS INSURANCE AGENCY,F3100\nSelf,Legacy Endowment Corp,Y4000\nOil and Gas Executive,BHP Petroleum,Y4000\nINVESTMENT GROUP OF SANTA BARB,,F7000\nINSU,CENTRAL CAROLINA INSUR. AGENCY,F3100\nREAL ESTATE DEVEL,OCULUS DEVELOPERS,F4100\nINVESTOR,THE TRUMAN GROUP/INVESTOR,Y4000\nBILOGIS & KOSHMAN,,Y4000\nJAY B CALL III ASSOC INC,,F4700\nDIRECTOR,STENINSON GROUP,Y4000\nATTORNEY,HINSHAW & CULBERTSON LLP,K1000\nRELIGIOUS ED DIRECTO,\"ST. MARY'S CATHOLIC CHURCH\",X7000\nATTORNEY,\"COLE, SCOTT & KISSANE, P.A.\",K1000\nSR. PUBLIC AFFAIRS,HOLLAND & KNIGHT LLP/SR. PUBLIC AFF,K2000\nVice President - Fin,\"Diversified Laboratory Services, Inc.\",Y4000\nPRESIDENT,ESKEW COMMUNICATION GROUP,Y4000\nATTORNEY,NM PUBLIC DEFENDERS OFFICE,Y4000\nParalegal,\"Tim Rusk, Esq\",Y4000\nINSURA,\"OGDEN INSURANCE AGENCY, INC.\",A4000\nCEO,BOULEVARD BREWERY,Y4000\nOwner Of Art Studio,Self-Employed,Y4000\nINTERGRATED HEALTH SERVICES INC,,Y4000\nDAIRY FARMER,DON KRENZ JR.,A2000\nSoftware Engineer,Target,G4300\nGlobal Managing Partner,Reed Smith LLP,K1000\nATTORN,\"MOLLER DIPENTINA PECK & O'BR\",K1000\nINSURANCE,AMITY INSURANCE AGENCY,F3100\nMARSHALL RD MED CLINIC,,H2000\nExecutive,Columbus Bank & Trust,F1000\nINSURANCE,\"MANNING, NOZICK\",Y4000\nHigh School Instructor,St Stephens Episcopa,Y4000\nEXECUTIVE,SCOTT FISCHER ENTERPRISES,Y4000\nExec,Pebble Partnership,Y4000\nATTORNEY,\"HC ASSOCIATES, INC.\",K2000\nPresident,Trugreen Landcare,Y4000\nREALTOR,VELTHOEN ASSOCIATES,F4200\nOWNER,WESTERN METALS TRANSPORT INC.,Y4000\nPRINCIPAL,DR. SHAUN MCKEE,Y4000\nTRADE ASSOC,SC CREDIT UNION LEAGUE,F1300\nSR. VICE PRESIDENT,ACADIAN AMBULANCE SERVICE,H3000\nHealth Care Administrator,Carelink Community Support Services,Y4000\nOWNER,PYLES PLUMBING,B3400\nPH,WILLIAMETTE VALLEY CANCER CENTER,H2000\nFrame Attendant,S. B. C.,C4100\nWESTERN MUTUAL INSURANCE CO.,,F3100\nEXECUTIVE,\"LAS VEGAS GAMING, INC.\",Y4000\nPRESIDENT,BROVIHERE COMPANY INC,Y4000\nRestaurateur,\"Hall's On the River\",G2900\nAttorney,\"Kleinbard, Bell and Brecker\",K1000\nAttorney,Simmons Law Firm,K1100\nDivision Director-DOT,State of Alaska,X3000\nJ H WHITNEY & COMPAN,,F2500\nPresident,Continental Savings Bank,F1100\nPHYSICIAN,THE AMBASSADOR,Y4000\n\"KILLBUCK, INC.\",,Y4000\nBUSINESS OWNER,\"MC CAFFREY'S MARKETS\",Y4000\nPresident,\"Prairie Wolf Partners, LLC\",Y4000\nTHE HALL CHINA COMPANY,,M4000\nLEGAL RECRUITER,LIPPMAN JUNGERS LLC,Y4000\nCEO,Pacific Crest Securities,F2100\nVICE PRESIDENT,MCKESSON HBOC INC.,H4400\nFinancial; Advisor,Resource Services Inc,Y4000\nNURENBERG PLEVIN HELLER & MCCART,,K1000\nDIRECTOR SALES AND CLIENT MANAGEMENT,KIVA SYSTEMS INC.,Y4000\nHORRIGAN AMERICAN INC,,Y4000\nStrategy Consultant,Philliou Selwanes Partners,Y4000\nNORTH SOUTH PHYSICAL THERAPY,,H1700\nFinance Cte Co-Chair,Victory Campaign 2004,J1200\nPrincipal,Shiels Obletz Johnsen,Y4000\nDENTIST,\"CHARLES ARP, DDS\",Y4000\nattorney,\"Rosen, Bien & Asaro LLP\",J1200\nCriminologist,N/AtioN/Al Council on Crime and Delinq,Y4000\nOwner/Contractor,\"Elliot Electric, Inc.\",B3200\nHEALTH PLUS,,H3700\nCHIEF EXE,SPIKE SOURCE INCORPORATED,Y4000\nSR DEVELOPMENT DIRECTOR,AJC,Y4000\nMEDICAL TECHNICIAN,MYRTLE ST OBGYN/MEDICAL TECHNICIAN,H1130\nCOMMISSIONER,CITY OF CHICAGO,X3000\nOFFICE MANAGER,TWIGG CYCLES INC.,Y4000\nSenior Counsel,The Hartford,F3100\nSENIOR DIRECTOR,CHCA,H2100\nC,FONTAINE CONSTRUCTION CORPORATION,B1500\nRETIRED,PLEASURE LAND RV CENTER,Y4000\nPresident,\"Waffle House, Inc\",G2900\nPresident & CEO,F.D. Rich Co,F4100\nDeveloper,The Sembler Co.,Y4000\n\"FEDERALIST GROUP, LLC\",,K2100\nFINANCIAL ANALYST,TIAA-CREF,F3100\nSHOOK HARDY ET AL,,K1000\nPEOPLES ENERGY CORP,,E1140\nDIRECTOR OF PLANNING,ENERGY TRUST OF OREGON,Y4000\npsychiatrist,Self - Employed,H1110\nKOJAIAN & ASSOCIATES,,F4100\nMD,\"ASSOCIATED PATHOLOGISTS,S.C.\",H1130\nExecutive Director,LEADERSHIP NASHVILLE,Y4000\nSocial Worker,NJ Dept of Human Services,X3000\nEGAMI & ICHIKAWA,,F5100\nOWNER,ECOCHEM ANALYTICS,Y4000\nExecutive,Jpmorgan,F1100\nINFORMATION REQUESTED (BEST EFFORTS),INFORMATION REQUESTED (BEST EFFORTS),G5270\nFIDELITY MTG DECISIONS,,F4600\nODGON NEWELL & WELCH,,J7400\nHeart Surgeon,Coastal Cardio Vascular Surgery,H1130\nOrthopaedic Surgeon,Naponcet Valley PC,H1130\nATTORNEY,ARBITECH LLC,Y4000\nFORT SMITH PUBLIC SCHOOLS,,X3500\nReal Estate Broker,Prudential Serls Prime Properties,F4000\nRetail Owner,Self,G4000\nLobbyist/Pres. Gov.,Chwat and Co.,Y4000\nLARRY H MILLER CAR DEALERSHIP,,T2300\nDIRECTOR I. S. DEPT,FOOD GIANT INC,G2400\nPEPPER HAMILTON & SCHEETER,,K1000\nOWNER-HOMELAND PARK,,Y4000\nPetroleum Marketer,Black Oil Co,E1170\nTHE HUDSON GROUP,,G3000\nHomemaker,Information Requested Per Best Efforts,G5270\nManaging Director,Prime Policy,K2000\nPRINCIPAL,AZ CROWN INVESTMENTS,C5000\nPHYSICIAN,COVENANT HEALTH SYSTEM,J7400\nMGM INCL,,C2400\nUTILITY CONSULTAN,APPLIED UTILITIES,Y4000\nRancher,Renderbrook Spade Ranch,A3000\nGENERAL SECRETARY-TREASURER,\"SHEET METAL WORKERS INT'L\",LB100\nBAHR BROS INC,,Y4000\nCEO,NH DISTRIBUTORS,Y4000\n\"PACKER CITY INT'L TRUCK\",,G1200\nStock Broker,\"Trubee, Collins& Co, Inc\",F7000\nEXECUTIVE,\"SSFHS, INC.\",J1100\n\"PAUL, WIESS\",,K1000\nCONSULTANT,THE GODCHAUX SAFFORD GROUP,J7400\nCONTINENTAL AIR,,T1000\nreal estate,Prudential,F3300\nV.P. Telephone and D,Cox Communications,C2200\nVICE PRESIDENT OPERA,ATSOPORE WATER,Y4000\nPROFESSOR,CSUF - FRESNO,Y4000\n\"EWING, DIETZ, TURNER, KEHOE\",,Y4000\nRESIDENT NURSE,US VA,Y4000\nPRESIDENT - FACILI,ENERGY SOLUTIONS,E3000\nsales,Team Jostins Publications,C1100\n\"MANAGER, OPERATION ANALYST\",\"GENERAL DYNAMICS NASSCO/MANAGER, OP\",D5000\nON AIR HOST,RENDA BROADCASTING,C2100\nCLASSIC CONVEYOR COMPONENET CORP,,Y4000\nCHAIRMAN CE0,\"'COLUMBIA ARTISTS MGMT, INC'\",Y4000\nATTORNEY,THE SAUNDERS LAW FIRM,K1000\nROANOKE ORPUPADIC CTR,,Y4000\nResearcher,Dupont,M1000\nCONTRACTOR,\"MACCARI CO'S,INC.\",J1100\nOWNER,AIR SYSTEMS ENGINEERING,B4400\nEDUCATOR,STUART C DODD INST,J1200\nVICE PRESIDENT,LAS VEGAS HARLEY DAVIDSON,T8100\nPA,BARRETT DAFFIN & FRAPPIER L.L.P.,Y4000\nInvestor,Robinson Brown Investments,F7000\nPilot,Dakota Helicopters,Y4000\nCRAIGE BRAWLEY LIIPFERT & WALKER LL,,Y4000\nAttorney,Goldberg & Osbourne,K1000\nREAL ESTATE INVESTOR,CHANDLER MANAGEMENT,J1100\nFINANCIAL PLANNER,INDEPENDENT,F5000\nKMIR,,C2100\nCEO,Centennial Cellular,C4300\nCARTER SMITH MERRIAM TAPP ROGERS &,,K1000\nRABBI,CONGREGATION ANSHEI ISRAEL,J5100\nAPACHEE PRODUCTS,,Y4000\nR H ARNOLD & CO,,Y4000\nEXTERNAL AFFAIRS,\"CONSTELLATION BRANDS, INC.\",G2820\nHEAD FOOTBALL CO,SAN DIEGO CHARGERS,G6400\nPhysician,Dakota Clinic,J7400\nATTORNEY,MELAND RUSSIN BUDWICK,K1000\nADVANCEMENT OFFICER,DALLAS BAPTIST UNIVERSITY,H5100\nEMPLOYEE,THE ROUSE COMPANY,F4100\nARCHITECT,FRACINETTI ARQUITECTOS,Y4000\nCeo/chairman,Dr. Rico-perez Products Inc.,Y4000\nRetired/Trustee,Fielder Van Horik Living Trust,Y4000\nPartner,\"Perkins, Smith & Cohen\",K1000\nTALK OF THE TOWN,,Y4000\nReal Estate / Insurance,Self,F4000\n\"ST MARY'S UNIVERSITY SCHOOL LAW\",,J7300\nChief Nursing Officer,Baptist Hospital,H2100\nWarehouse Mrg,TAP Enterprises,J1200\nSALES,ABRAXIS BIOSCIENCE,H4300\nMARKETING EXECUTIVE,RED HAT/MARKETING EXECUTIVE,C5120\nPRINCIPAL,\"IMS/MTI NETWORK (USA), INC.\",C1100\n\"FRIEND, WEIRNESS, FRANKSON\",,Y4000\nArchitect,\"I.e, Design\",B4200\nM SUE WILSON LAW OF,,Y4000\nFINANCE / SALES,ARTISAN PARTNERS,F2100\nInformation Requested,City of Rochester,X3000\nDREXLER INC,,Y4000\nWASTE RECOVERY,,E3000\nSUPERVISOR,HACKENSACK BOARD OF EDUCATION,X3500\nATTORNEY,BARADAT & EDWARDS,K1000\nNEW ENGLAND PATR,EXECUTIVE DIRECTOR,G6400\nInvestor,Dwight Assontzl,J1200\nAttorney,Flahive Ogden &amp; Latson,K1000\nATTORNEY,MCKENNA LONG AND ALDRIDGE,Z9500\nOwner,RE Sweenix Co,Y4000\nManager,Edison Chouest,T6000\nPRESIDENT,MOREHOUSE MEDICAL SCHOOL,Y4000\nScientist,Affymetrix,H4500\nMILK PRODUCER,TONY A. NUNES DAIRY,A2000\nSUPERVISOR,SAC COUNTY,Y4000\nATTORNEY/MEDIATOR,\"SELF/SPAULDINGMCCULLOUGH, ET AL\",K1000\n\"DIRECTOR, BUSINESS OPERATIONS\",BRIGHT HOUSE NETWORKS,C2200\nB C WILLIAMS,,G2100\nGM,Toyota of Boerne,T2310\nFINANCIAL ADVI,LOOP CAPITAL MARKETS,F2100\nPATRIOT PROPERTIES,,F4000\nPRESIDENT,SAMRAT CONTAINER LINES INC,M7000\nContractor,Spratt Construction,B1500\nMANAGEMENT,SUDDENLINK COMMUNICATIONS,C2200\nOffer Manager,At&T,C4100\nATTORNEY,MIMS & ROCHELLE,Y4000\nAttorney,Haynes and Boone LLP,J1100\nTAYLOR PACKING CO,,A1400\nCONGRESSMAN,US GOVERNMENT,Y4000\nATTORNEY,OBER KALER GRIMERS & SHRIVER,Y4000\nDisabled Chemist,N/A,Y1000\nOWNER,AADVANTAGE NORTH AMERICAN,Y4000\nGENERA,HOPKINSVILLE ELECTRIC SYSTEM,B3200\nCOMMUNICATIONS,CITIGROUP,F1100\nBUSINESS CONSULTA,KINT & ASSOCIATES,Y4000\nMANAGER,WENDBING CORP.,G2900\nCHAIRMAN,HEB GROCERY CO.,G2400\nPHARMACIST,CARROLL PHARMACY,G4900\nPHARMACIST,CATERVILLE PHARMACY,G4900\nORANGE SHIPBUILDERS-SELF-EMPLOYED,,Y4000\nTERRY TERRY & STAPLETON,,Y4000\nTRANSMISSIONS BY RON INC,,T2400\nSECRETARY/TREASURER,BROOKS MACHINE INC.,Y4000\nLACEY MEISKI KOVEN & KAUFMAN,,Y4000\nGENERAL MANAGER,SCHALLER HONDA,T2300\nNE MEDICAL ASSOC HOSPITAL,,H2100\nPHYSICIAN,V. A. MC- WASH.D.C.,H1100\nPresident,\"Bradford Energy Company, Inc\",E1210\nLIBRARIAN,WILKINSON PUBLIC LIBRARY,Z9500\nBOOKKEEPER,TAPLIN & ASSOCIATES,K1000\nMCLEAN CONTRACTING LLC,,Y4000\nKERRY PECK & ASSOCIATES,,Y4000\nPA,GWATHMEY SIEGEL & ASSOCIATES LLC,Y4000\nOwner/Principal/Part,Hotchkiss Insurance Agency Inc,B2000\nassistant,Butch Dickson,Y4000\nGOEL FORWARDING AGENCY,,Y4000\nPension consultant,REPTECH Corp,F5500\nDECON HOUSE FURNITURE,,G4400\n\"BOOZ, ALLAN & HAMILTON\",,G1300\nManaging Principal,Commonwealth Financial Network,F0000\nREAL ESTATE EXECU,SCHULTZ BROS. CO.,J1100\nCommunications Contractor Iraq,Itt Systems,Y4000\nMarketing Manager,\"David Allen Company, Inc\",B0500\nTEACHER,NORTH ALLEGHENY,Y4000\nAttorney,Cohen & Co.,F5100\nASSOCIATION DIRECT,AZ ROCK PRODUCTS,Y4000\nIBM Sales Representative,Alta Technologies inc,Y4000\nEDITOR,RODMAN AND RENSHAW LLC,F2300\nOWNER,LEISURE LAWN OF FORT WAYNE,J1100\nMEDICAL RESE,ASSIOCATED RADIOLOGIST,J1100\nACCOUNTANT,MLGW LLP,Y4000\nARCHITECT,OZ ARCHITECTURE,B4200\nInternist,none,Y1000\nEDMOR PROPERTIES,,F4000\nManager,United Healthcare,H3700\nEL YUNQUE BABY FOODS,,Y4000\nORTHOPAEDIC SUR,UMPQUA ORTHOPAEDICS,H1130\nBROKER DEALER AGENT,PARK AVENUE SECURITIES LLC,Y4000\nALPHABETLAND PRESCHOOL & KINDE,,H5000\nPRINCIPAL,MCKINSEY & CO,G5270\nLEE & PICKELS DRUGS,,G4900\nMISTER SPEAR INC,,Y4000\nLand Surveyor,Sherburne County Pulbic Works,Y4000\nMILBERG WEISS BERSHAD HYNES LLP,,K1100\nPROFESSOR,SOUTHEAST COMMUNITY COLLEGE/PROFESS,H5100\nSOFTWARE TECH,INTEGRAL,Y4000\nMANAGING PARTNER,SARLES & OUIMET,Y4000\nApple Farmer,Self employed,A1400\nCONSULTANT,THE DEALY GROUP/CONSULTANT,Y4000\nPrincipal,Richard C. Sweeney CPA,F5100\nSenior Vice President,3001 Inc.,B4300\nN.A.,Ret.,X1200\nARCHITECT,HGA ARCHITECTS AND ENGINEERS,B4200\nInvestment Banker,Cornerstone National Bank,F1100\nOfficer,Mullican Flooring,A5000\nDEAN OF CONTINUING,RICE UNIVERSITY,Y4000\nAMERICAN COMMUNITY,,Y4000\nA-SONIC GUARD INC,,G5290\nJANET WILLOUGHBY GERHSM GETZ ET AL,,K1000\n\"(\\\"\"DS&M\\\"\")\",,K1000\nOWNER,AEROTECH HOLDINGS,Y4000\nSP ASN TO,UNITED PARCEL SERVICE INC,T7100\nContract Administration,\"DIMENSIONS INTERNATIONAL, INC.\",G5200\nEXECUTIVE MANAGING D,HFF,F4000\nBECKELEY FIRE DEPT,,L1400\nFINANCE DIRECTOR,S.T.E.P.,Y4000\nPublic Relations,Communications Office,Y4000\nSales Executive,Weil Aquatronics,J1200\nGENERAL MANAGER,WNUV-TV,C2200\nPHYSICIAN,THREE RIVERS UROLOGY,Y4000\nARDEN REALTY GROUP/CEO / CHAIRMAN,,F4000\nAttorney At La,Berger & Montague Pc,K1200\nPartner,Bracewell & Guiliani,K1000\nProcecutor,Mecosta County,H5100\nTEACHER,BEST EFFORT,X1200\nATTORNEY,\"LYONS GADDIS KAHN & HALL, PC\",Z9500\nPRESIDENT,EMERLING FORD,T2300\nGROCER,\"GARY'S FOODS\",Z9500\nReal Estate Broker,CENTURY 21 COUNTRY NORTH INC,F4200\nEXECUTIVE,DUNN CAPITAL MGT. LLC,J1100\nPRESIDENT/CEO,WSFS BANK,Z9500\nDirector,Alta Loma School District,X3500\nATTORNEY,MAGELLAN HEALTH SERVICES,H3700\nSENI,SCIENCE APPLICATIONS INTERNATI,D3000\nPHYSICIAN,CRPL,Y4000\nINVESTMENTS,\"LADEX, LLC\",G2350\nCHIEF STATE SCHL OFC,,X3500\nMT VERNON HEALTH,,H0000\n\"D'ADESKY REALTY\",,F4200\nBanker,Pacific Capital Bancorp,Y4000\nMANAGER,CHAMPION TECHNOLOGIES INC.,M1600\nattorney,Fresh Start Legal Group,K1000\nATTORNEY,BUTLER & KLEPPER,K1000\nBusiness Consultant,Information Requested,Y2000\nIT CONSULTANT,ASHBLACK CO.,Y4000\nATTORNEY,HERMAN & HERMAN PLLC,Y4000\nHDE ROBOTICS GROUP INC,,Y4000\nVice President,West Bay Exploration Company,E1150\nAssigned Judge,\"Judicial Council, California\",Y4000\nPHARMACIST,TRIANGLE PHARMACY,G4900\nSCHOOL DIRECTOR,RIDLAND CENTER,Y4000\nAMBASSADOR,U.S. STATE DEPT./AMBASSADOR,X3000\nVETERINARIAN,ROUNTREE SMALL ANIMAL CLINIC,Y4000\nattorney,Appleseed of New Mexico,Y4000\nConsultant,Information Management Consultant,G5200\nSEN,HOSPITAL CORPORATION OF AMERICA,H2100\nMANAGEMENT,CLEAR CHOICE MANAGEMENT SERVICES,Y4000\n\"FARUKI, WILLIAM & FRELAND\",,Y4000\nelectrical support,White Rock Quarries,E1200\nENGINEER,METRO MEDIA FIBER NETWORKS,Y4000\nRORD WALTZ,,Y4000\nSULLIVAN BALDICK,,Y4000\nLECTURER,HARVARD UNIVERSITY,J7400\nCEO,WULF CATTLE CO.,Y4000\nFINANCE,CAPITALA INVESTMENT ADVISORS,Z9500\nWRITER,FLYDIVER PRESS,J1100\nGOVERNMENT RELATIONS,NEXTERA ENERGY,E1600\nATTORNEY,D.S. THALER,K1000\nPresident,Weisenberg/Accordia Insurance,F3100\nAMERICAN INDIAN TRIBE,,G6550\nSw Engineer,Optimal Satcom,Y4000\nNETWORK ADMINISTRATO,FREMONT PUBLIC ASSOCIATION,Y4000\nPRESIDENT & CEO,TECO ENERGY,E1620\nDIRECTOR,C2 GROUP,K2000\nWM LEONARD & CO.,,Y4000\nMusic Industry Executive,Warner Music Group,C2600\nADVANTAGE INSURANCE,,F3100\nEmergency Physician,Cape Coral Hosp ED,H1100\n\"\\\"\"MAVERICK\\\"\",\"\",\"\",\"\",NEW YORK,NY,10128,\"\",\"\"MOTT, STEWART R\",,P\nPRODUCTION COORDINATOR,THE OHIO VALLEY COAL CO.,E1210\nRespiratory Therapist,Montefiore Medical Center,H2100\nChild Life Sepeciali,Kaiser Hospital,J1200\nVICE PRESIDENT,,A5200\nROADRUNNER TOWING &,,T3100\nCNG ENERGY SERVICES CORP,,E1140\nSERGEON,KAISER PERM/SERGEON,H2000\nengineer,University of California,H5100\nSECRETARY,PRECISION TRADING,Y4000\nUrban Planner,Pratt Institute,H5100\nARCHITECT,MCCRACKEN & LOPEZ PA,B4200\nhome,self,C5140\nCENTRAL PCA OF NW ILLINOIS,,A4000\nKEOHANE DETORE & KEEGAN,,K1000\nWEINTRAUB & ROSEN,,K1000\nCEO,Archipelago Holdings,C5140\nSoftware Engineer,Adb Global,Y4000\nSTUDIO EXECUTIVE,WARNER BROS.,Z9500\n\"DIRECTOR, LEGISLATIVE AFFIARS\",THE BOEING COMPANY,D2000\ntransportation engineer,iteris inc,Y4000\nDWF WHOLESALE FLORISTS,,A8000\nSTEWART & STEWART INC,,Y4000\nSECURITIES TRA,THE SPECIALIST ASSOC,Y4000\nSECONDARY ED SOCIAL STUDIES TE,NONE,Y4000\nLAVENEHOH & HORWACH,,F5100\nATTORNEY,\"WILSON, MARTIN, & DOWNS LLC\",Y4000\nMARHOFFER CHEVROLET,,T2300\nKENTUCKY CLINIC SOUTH OB/GYN./DOCTO,,H1130\nAUDIT MAN,GREAT WEST LIFE & ANNUITY,F1400\nOIL & GAS OPR,,E1100\nVice President; Quar,Advanced Materials,M2300\nP.A. TRA,KY DEPT. OF TRANSPORTATION,X3000\nINFO REQUESTED,Trg Financial,F0000\nMIRROR PRODUCTS,,Y4000\nOwner/Principal/PAR,Bestfield Homes,Y4000\nCOLLEGE OF PHYSICIANS COLUMBIA,,H5150\n\"GOV'T APPOINTE\",FARM CREDIT ADMINIST,X3000\nVice President,Marvin Engineering,B4400\nPRESIDENT,\"FALCON HEATING & A/C, INC.\",B0500\nOWNER,REIS-NICHOLS,G4600\nMarketing Consultant,\"Seed Communications, Inc\",Y4000\nCEO,\"Anbaric Holdings, LLC\",E1700\nVICE PRESIDENT OF ADMINISTRATION,LESLEY UNIVERSITY,H5100\nASSOCIATE,BLACKROCK,F2100\nREAL ESTATE,SELF-EMPLOYED - PETER FLOOD,A1600\nC.E.O./ OWNER,MUELLER ROOFING DIST,B3000\nMOUNT SINAI UNION FREE SCHOOL DISTR,,X3500\nTUSCAN ENERNY/RETIRED ATTORNEY / IN,,Y4000\nOwner,RSG Associates,Y4000\nSENIOR VP FOR DEVELO,UNIV. OF COLORADO FOUNDATION,H5100\nPRESIDENT,\"CAPITAL SERVICES, INC.\",F0000\nHEALTH PLANS,,H0000\nFIELD WORKER,GULF COMPRESS,Y4000\nDEER CREEK MUSIC CENTER,,Y4000\nCAMPBELL VANDERSLICE FURMAN LP,,F2100\nUS Air Force,,X5000\n\"VP, GENERAL COUNSEL AND SECRETARY\",DHL / EXEL INC.,T7100\nSPEED SHORE CORPORATION,,B1000\nOTOLOGY GROUP,,H1130\nGENERAL MANAGER,GE CAPITAL,M2300\nABBOTT SIGN CO,,Y4000\nUSED CARS,AFFORDABLE LEASE TO OWN,J1100\nROTARY FARMS PRESS INC,,Y4000\nC E O,FREEMAN,C1100\nCEO,Integrated Financial Settlements,K0000\nBUSINESS,ASSESSMENT TECHNOLOCY INC.,Y4000\nCEO,SMART SOLUTIONS INC.,Y4000\nINSURANCE,\"ASSOCIATED AGENCIES, INC\",F3100\nCEO,Aluminum Shapes,M2250\nADMINISTRATOR,GOLD AND SILVER INC.,Y4000\nMT. LEBANON,,Y4000\nDENTIST,L CARL DE JONGH DDS PA,H1400\nCONSULTANT,AVALANCHE STATE CONSULTING,Y4000\nCONSULTANT,\"NAVIGATORS GLOBAL, LLC\",K2000\nPRESI,CRESCENT DOOR & HARDWARE INC.,B0500\nPRESIDENT,\"TESSLER DEVELOPMENTS, LLC\",Y4000\nTHOMAS H LEE COMPAN,,F2100\nMOTTER PRINTING CO,,C1300\nPartner,\"Platnum Properties, L.P.\",F4000\nSystem Engineer,JPL,B4400\nA,\"FAFINSKI MARK &AMP; JOHNSON, P.A.\",K1000\nMULTIAQUA INC,,Y4000\nProfessor,Northwestern Univ,H5100\nBALDWIN & WHITNEY INS,,F3100\nMITCHELL HURST JACOBS & DICK,,Y4000\nPresident & CEO,\"ConnectiCare, Inc\",F3200\nFirefighter/EMS,WISCONSIN RAPIDS FIRE DEPARTMENT,L1400\nINVESTMENT BANKER,\"CITIGROUP GLOBAL MARKETS, INC.\",F2100\nLAWYER,\"ROBERT E. BATTLE, P.C.\",Y4000\nAIM INSURANCE AGENCY,,F3100\nVP Managing Director,MGIC Management,Y4000\nFounder,The Jack Hidary Fund,Y4000\nGrosolar,,Y4000\nFARMER,PROVIDENCE DAIRY,A2000\nPRESIDENT,SRM INC.,Y4000\n\"CEREAL FOOD PROCESSING, INC.\",,G2100\nAttorney,Law Offices of Janis C Nelson,J1100\nGeneral Manager,Kintera,Y4000\nAttorney,United States Council for Internationa,Y4000\nPARTNER,\"AGOGE GROUP, LLC\",Y4000\nEnvironmental Scientist,CDM,Y4000\nBELL MCANDREWS HILLZOHK & DAVIDIAN,,Y4000\nCHIEF EXECUTIVE OFFICER,EAST WEST BANK,F1100\nHOTEL OWNER,INDIAN SPRINGS,J1100\nDirector of Military,Commonwealth of  KY,X3000\nFOUNDER,IETAN CONSULTING,K2000\nAttorney,Cox Smith Matthews Inc.,K1200\nPRESIDENT,\"GRANT PLAINS SUPPLY, INC.\",J1100\nEngineer,Seagate Technology Corp.,C5110\nOwner,Williams & Associates LLC,K2000\nGLENN GARDNER REALTORS,,F4200\nGen Mgr.,B & H Towing,T3100\nECOS TECHNOLOGIES,,Y4000\nCounselor,Augusta Medical Center,H2100\nEXECUTIVE,PREFERRED MEDICAL MARKETING  C,Y4000\nMORTGAGE BANKER,BRAND MORTGAGE,F4600\nVP/RL-Human Resources,Information requested,F1400\nOwner,Nubian Transport Co,Y4000\nPROPERTY MANAGER,MERRIWOOD MANAGEMENT CO,Y4000\nLIBERTY DOCUMENT SERVICES,,Y4000\nPresident,Tower Lavs Ltd,Y4000\nFIELD VP CA,UST SALES AND MARKETING,A1300\nDURA FLOURS,,B2000\nBOARD OF DIRECTORS,\"WELLMARK, INC.\",F3200\nAttorney,Mercy Health Partners,H0000\nSALES,RACKS INC,Y4000\nBuilder,Fisherman Homes,B2000\nCEO,Gilbane Building Company,B4000\nPITTMAN AND PITTMAN,,Y4000\nWEISS BERZOWSKI,,Y4000\nTravel Industry Cons,Self-Employed,T9000\nVice President,Hildebrandt Paving Co.,B3000\nADMINISTRATOR,GREENHILL SCHOOL,Y4000\n\"WEIL, SOTSHAL & MANGES\",,K1000\nSUFFOLK TRANSPORTATION,,Y4000\nOral and Maxillofacial Surgeon,USAF,X5000\ninvestments in oil &,self,Y0000\nLILLS CUMMIS P.A.,,Y4000\nLEGAL COUNCIL,ITPE UNION,LG000\nVP,Atwood Oceanics,Y4000\nBUSINESS DEVELOPMENT MANAGER,\"WUNDERLICH-MALEC, INC.\",Y4000\nBusiness Merchant,\"Fresh Express, Inc.\",A1000\nLANDSCAPE WORKSHOP,,B3600\nEngineer,Backhop Software,C5120\nOwner,Bablu General Contracting Corp.,Y4000\nLAWN SERVICE OWNER,SELF-EMPLOYED,Y4000\nChairman & CEO,SW Jack Drilling Co.,E1120\nASSIST. CORE KNOWLEDG,HOBBS SCHOOLS,H5100\nOSBORNE COINAGE,,J1200\nRADIO CITY ENTERTAINMENT,,C2100\nCapital Group,,F2100\nKELLIHER SAMELS VOLK,,Y4000\nManager,Catholic Relief Services,Z9500\nVICE PRESIDENT,BOSTON SCIENTIFIC,H4100\nREGULATOR,FINRA,F2000\nC,\"COLLEGIATE FUNDING SERVICES, INC.\",Y4000\nCEO,AMEL,J1100\nCOMMERCIAL REAL ESTATE BROKER,LEGACY REAL ESTATE ADVISORS,F4000\nSupervisor,Information Requested,Y4000\nAdvertising,Vogue Magazine,C1100\nCHIEF FINANCIAL OFFICER,H2M BEVERAGES LLC,Y4000\nWeb/Internet Service,KickApps Corporation,C5140\nGOVERNMENT AFFAIRS,DOMINION,E1620\nNA,NA,G5100\nRN,Diabetes Girls Camp,J1200\nSTATE SENATE CANDIDATE,CITIZENS HELPING ELECT CHERYL KAGAN,Y4000\nInvestor,ZFB China Co,Y4000\nLegal Assistant,Gide Loyrrttr Novel,K1000\nLEGISLATIV,HOUSE OF REPRESENTATIVES,Y4000\nINDEP TV PRODUCER,,C2300\nCEO,MYTODDLERLINK,Y4000\nAuto Dealer,Sunset Imports,Y4000\nHealthcare Mgmt,The Jewish Guild forthe Blind,Z9500\nPresident,Activision-Blizzard,C5120\nInvestor,TGS Management Corp,F2100\nPres/CEO,Xceed FCU,Y4000\nSoftware Engineer,Pragmatics,C5130\nBUSINESS,\"RIOREY, INC.\",Z9500\nMusician,Northwestern University,J7400\nADVERTISING,,J7300\nCabinet Installer,Visual Interior Corporation,Y4000\nWATSON & KALLENBERGEN,,F5100\nTechnical Support,Employment Security Commission,G5290\nINSTRUCTOR,NEW HORIZONS CLC,Y4000\nNUNN MGT CO,,Y4000\nSTATE OF CALIFORNIA,,\nPrincipal,\"Una Clarke Associates, LLC\",J7500\nOwner,\"Memphis Cooling Towers, Llc\",Y4000\nState Troopers,NYS,X3000\nASSOC OF VASCULAR SURGEONS,,H1130\nPresident,Fierce and Isakowitz,K2000\nTELECOMMUNICATIONS,TELEPATH NETWORKS,Y4000\nAttorney,National Audubon Society Inc,J7400\nOwner,N Gil Electric Company Incorporated,Y4000\nCONSULTANT,AIGNER CLARK L.L.C.,J1100\nPresident,\"Fremont Industries, Inc\",J1100\nAttorney,\"Dickson, Ross & Honig\",K1000\nOWNER - TRAVEL AGEN,ABC ELECTRIC CO,B3200\nPARTNER,HEIDPRIEM & MAGER,K2000\nLaw Professor,George Wash. U,J7400\nSIMON & FISCHER OLDS,,T2300\nOwner,Connection Media Group,Y4000\nAssociates Cash Mgr.,Million Mutual Corporate Inc.,Z9500\nEXECUTIV,VESTAR DEVELOP CORPORATION,F4000\nCHAIRMA,\"SHEPHERD'S LEARNING CENTERS\",H5100\n\"Manager, Commercial\",RVI GROUP,G5300\nMeditation Therapist,Self,Y4000\nVP Business Planning - Energy,Phi Service Company,E1620\nREAL ESTATE BROKER,PRUDENTIAL TREND REALTY/MILLHO,Z9500\nIT CONSULTING,\"LMT, INC.\",Y4000\nReal Estate Broker,Vic Inn-Ternational Co,T9100\nSTARR & CO. LLC,,F5100\nagriculture retail,Self-Employed / Ramsdell F & M Inc.,A4100\nECHO INSURANCE AGENCY INC,,F3100\nPRESIDENT,LEGACY INTERNATIONAL,E1150\nCOHEN & FEELY,,Y4000\nPOL CONSULTANT,,J7400\nSTEVE THOMAS BMW,,T2300\nACCOU,\"NYACOL NAND TECHNOLOGIES, INC\",Y4000\nBALFOUR INVESTORS INC,,F2100\nAtty,Cohen Pontoni Lieberman,K1000\nNJ DIVISION OF MOTORE VEHICLES,,X3000\nCO,UNIVERSITY OF CALIFORNIA BECHTEL,H5100\nATTORNEY,\"STROUD WILLINK & HOWARD, LLC\",Y4000\nMEDICAL WRITER,\"KATE WILLIAMS RESEARCH & WRITING, L\",Y4000\nMETROPOLITAN MUSEUM OF ART,,J7150\nDRILL SITE MANAGE,MAJOR OIL COMPANY,E1150\nLOAN OFFICER,SILVER STATE MORTGAGE,F4600\nLATHROP &,RESIDENTIAL SURVEYS,B4300\nRN,LA COUNTY DEPT OF HEALTH,X3000\nSONGWRITER-COMPOSER,,Y4000\nPIONEER PEST CONTROL,,G5700\nRADIOLOGIST,\"RADIOLOGY ASSOC, INC.\",H1130\nAttorney,\"Ringler Associates, Inc.\",F3100\nPSYCHOTHERAPIST/POLICE PSYCHOLOGIST,\"ED THACKER, PHD\",Y4000\nJUDGE,U. S. GOVERNMENT,X3000\nBUSINESS EXECUTIVE,WCA,Y4000\nBridgetender,Broward County Streets Highwasy,Y4000\nOWNER/CEO,SPINDEL AGENCY,Y4000\nPHYSICIAN,MMC ANESTHESIA GROUP,H1130\nOWNER OPERATOR,LATSHAW DRILLING,E1150\nGRAPHIC DESIGNER,SELF,X3000\nATTORNEY,\"NIX PATTERSON & ROACH, LLP\",K1100\nSVP Marketingg,PepsiCo,G2600\nPRIVATE INVESTIGATER,,Y4000\nATTORNEY,CHAPMAN & CUTLER,K1000\nDATA PROCESSOR,DATAMATX,Y4000\nTrial Attorney,Cervantes & Associates,K1000\nEngineer,Chrysler Group LLC,T2100\nKRAWSON INDUSTRIES,,M2300\nCHEMICAL ENGINEER,WALL TO WALL A/C,Y4000\nFinacial Planning,A I Financial Services,F0000\nWILSON ENGSTROM CORUM & DUDLEY,,K1000\nCATTLEMAN RANCHER,SELF-EMPLOYED,A3000\nHANCE SCARBOROUGH & WRIGHT,,Y4000\nPERRY HALL HEATING & AIR CONDITIONI,,B3400\nPRESIDENT,BLUESTONE INDUSTRIES INC.,Y4000\nOwner,First Security Investment,F4000\nCPA,\"MORRISON & COMPANY, P. A.\",F5100\nCFO,Gould Investors,F4000\nENGINEER,PGI,Y4000\nTV PRODUCER AUTHOR,,C2300\nPresident & Chief Operating Officer,DTE Energy,E1620\nSENIOR VP,\"HERBALIFE INT'L\",H4600\nHENDALE COMMUN,,Y4000\nPrivate Investor,Self-Employed,M5000\nATTORNEY,LAWLESS AND LAWLESS,Z9500\nTRAINER,MCLEOB REG MEDICAL CENTER,H2100\nSUMTER OMS PA,,H1400\nBusiness,MDS Pharmaceutical,H4300\nPresident,Sbarro Inc.,Y4000\nLORD CAPITAL CORPORATION,,Y4000\nATTORNEY,M.D.K. LAW ASSOCIATES/ATTORNEY,K1000\nPETALUMA POULTRY PROCESSORS,,A2300\nBUSINESSMAN,SELF EMPLOYED,A0000\nPRES,SKILLCRAFT BODY SHOP,T2400\nCFP Professional,IPA Financial Advisors,Y4000\nLEGISLATIVE SPECIALIST,DICKSTEIN SHAPIRO LLP,K1000\nS PUBLIC COMMUNICATION ASSOCIAT,,Y4000\nSALIBA,TUTOR,Y4000\nETV ENDOWMENT OF SC,,C2100\nEXECUTIVE,TAMPA MAID FOODS LLC,Y4000\nMANAGING DIRECTOR,TENASKA,E1630\nOffice Manager,Darien Historical Society,Y4000\nSalesman,Carribbean Export,G3500\nSPECIAL PROJECT MANAGER,FMT/SPECIAL PROJECT MANAGER,Y4000\nFreelance Film Direc,Information Requested,C2400\nUrologist,\"Cohen, Berger, Soludy, Rolund, PA\",H1130\nADMINIST,PATERSON COUNSELING CENTER,Y4000\nVICE PRESIDENT V,ENERGYSOLUTIONS,E3000\nDRS TECHNOLOGIES,,D3000\nAttorney,Bernstein Litowitz Berger &amp; Grossm,J9000\nSENIOR PROGRAMMER,OKONITE COMPANY,Y4000\nPresident,Harry Singh & Sons,Y4000\nC00230342,,J1200\nDRY CLEANER,DRY CLEANER,G5500\nGREATER RIVERSIDE CHAMBER OF COMM,,G1100\nCONSTRUCTION,FEDERATED DEPT STORES,G4300\nCAPITOL INFO SERVICE IN,,C5130\nReal Estate Investor,\"Atlas Properties, Inc.\",F4000\nEmergency Physician,Singing River Hosp,H1100\nREAL ESTATE BROKER,KELLER WILLIAMS REALTY,J1100\nREAL ESTATE,ROTHWELL GORNT COMPANIES,Y4000\nHUSSEY GAY BELL & DEYOUNG IN,,Y4000\nAdministrator,Balboa Nephrology,H1130\nDeputy General Counsel,Northeast Utilities,E1620\nConsultant,Donald G. Myers Consulting,Y4000\nEXECUTIVE VP,LANDMARK AVIATION,J7400\nEXECUTIVE,PHARMERICA CORP,H4300\nVICE PRESIDE,GOODING RUBBER COMPANY,Y4000\nPHYSICIAN,\"FAMILY MEDICAL ASSOCIATES, PA\",H1100\nREPUBLIC NEW YORK CORPORATION,,\nCHAIRMAN OF THE B,ALLIANCEBERNSTEIN,F2100\nATS SOUTHEAST INC,,Y4000\nEXECUTIVE,ISLAND OPERATING CO.,E1150\nINFORMATION BUILDERS INC,,C5120\nDirector,First Albany,F2100\nPRES & CEO,\"WASCO, INC\",B3000\nCOO,FEDERATED INSURANCE CO.S,F3100\nPRESIDENT,\"CURTIS LIQUOR STORES, INC\",G2840\n\"VP, HUMAN RESOURCES\",AREVA,E1300\nDOCT,SANTA BARBARA COTTAGE HOSPITAL,H1100\nAUTO CITY,,T2300\nPROVIDENT AMERICAN CORPORATION,,F3100\nPROFESSOR OF OCCUPATIONAL THERAPY,COLORADO STATE UNIVERSITY,H5100\nASSISTANT,TLC PLUMBING,B3400\nATTORNEY,\"VAN NESS FELDMAN, PC PAC\",K1000\nGuardian/Conservator,\"Tiffany And O'Shea, L.L.C.\",Y4000\nLAWYER,\"ROYSTON, MUELLER, MC LEAN & REID,\",K1000\nMinister,Friendship Baptist Church,X7000\nFL DEPT OF TRANSPORTATION,,X3000\nONE FIFTY ONE ENTERPRISE,,Y4000\nATTORNEY,SHAW LAW LTD,Y4000\nPortfolio Manager,Basswood Partners,F2100\nCONTACTED NO RESPON,CAPMARK FINANCE,F4600\nPsychologist,Nicholas & Dorothy Cummings Foundation,Y4000\nATTORNEY,POSINELLI,J1200\nHousewife,Husband,X3200\nPartner,Mercator,Y4000\nSELF/RETIRED/VOLUNTEER,,X1200\nTISHMAN CO,,F4500\nInvestment Banking,Millenium Markets LLC,Y4000\nAttorney,hollingsworth law firm,K1000\nWV DEPT OF TRANS,,X3000\nHEALTH & HOSP CORP,,H2100\nGOLF PRO,CANADIAN LAKES ASSN,H5100\nVIRGIN RECORDS,,Y0000\nPARTNER,POLICY DEVELOPMENT GROUP INC,K2000\nBUSINESS OWNER,\"BLUE STATE COFFEE, LLC\",G2600\nINVESTMENT ADVISOR,MESIROW FINANCIAL,Z9500\nCEO,Peoria Tire & Vulcanizing,Y4000\nSENIOR VICE PRES,EASTER SEALS OF NH,Y4000\nMICHIGAN TECHNIC CORP,,Y4000\nEXECUTIVE,STERLING LP,Y4000\nSMALL BUSINESS OWNER,AMERICAN SOUTHEAST INFLATABLES & OXYGE,Y4000\nPRESIDENT,TOM SKANCKE & ASSOCIATES,G5200\nATTORNEY AT LAW,\"RUBIN & NORRIS, LLC\",Y4000\nWALMACK INTERNATIONAL STUD INC,,A3000\nCHOICE COMMUNICATIONS/PRESIDENT/CEO,,Y4000\nROYAL CARRIBEAN CRUISE LINES,,J5100\nVICE P,COMCAST (CC) OF WILLOW GROVE,C2200\nMARCUS DISTRIBUTERS,,Y4000\nSenior Information Systems Technici,Grand Forks County,X3000\nAPPRAISAL ASSOCIATION,,F4000\nFIRST BANK OF TN,,F1100\nREGION M,\"TRIMAC TRANSPORTATION, INC\",Y4000\nEXECUTIVE DIRECTOR,NORTH FLORIDA CHAPTER NECA,B3200\nAttorney,\"Cooper & Kirk, Pllc\",K1000\nDEVELOPER,LEISURE TIME LAND COMPANY,Y4000\nCIO,Unigroup,Y4000\nREAL ESTATE,PHONECIA DEVELOPMENT,F4000\nGASOLINE ALLEY,,Y4000\nSpouse,\"Wolverine Power Supply Co-op, Inc\",E1610\nAcctress,Dana Delany,Y4000\nCOMPUTER SCIE,DEPARTMENT OF DEFENSE,X5000\nInvestment Mgr.,St. Paul Companies,F3400\nMGR,AXIS INSURANCE,F3000\nCHARLS E WALKER ASS,,K2100\nSTANTON ELECTRIC,,B3200\n\"TONY'S AUTO REPAIR\",,T2400\nINVESTMENT ADVISOR,J.H. DARBIE & CO.,Y4000\nSales,\"The Loftis Group R.W.L.,  L.L.\",Y4000\nPRESIDENT,WILLIAM LOVING AND ASSOC.,J1100\nSELF EMPLOYED,JOHN HANSEN AND FRIENDS INC,Y4000\nAMERICAN FOREIGN SHIPPING CO INC,,T0000\nBeverage Distributor,Orangeburg Distributing,Y4000\nSENIOR MANAGING DIRECTOR,HFF,F4000\nVice President of Go,Colorado Hospital Association,H2100\nPRESIDENT,REPRODUCALA,Y4000\nCONTROLLER,AUTONATION/CONTROLLER,T2300\nGENERAL MANAGER,ROTORK CONTROLS INC,Y4000\nEXECUTIVE,WESMAR,J1100\nEAGLE PAUFAZ IND INC,,Y4000\nEXECUTIVE,ARISTELA CAPITAL,F0000\nKEITH: ATTORNE,SIMMONS AND FLETCHER,Y4000\nCONSULTANT,ASCEDANT RESOURCES LLC,Y4000\nHONOR MARINE INC,,Y4000\nReal Estate Broker,Windermere - Northwest,F4200\nManufacturer,Kayo,M3100\nKING MATERIAL,,Y4000\nRABBINIC ADMINISTRATOR,UNION OF ORTHODOX JEWISH CONG.,Z9500\nETOWAH INDUSTRIES,,Y4000\nAttorney,E.Steven Yonover & Assoc.,K1000\nATTORNEY,HBLD,Y4000\n\"DOMINO'S PIZZA TEAM\",,J1100\nINSURANCE,MARKET CORPORATION,F3100\nATTORNEY,\"SPECTOR, GADON AND ROSEN\",K1000\nHARBOR INS AGCY,,F3100\nENVIRONMENTAL CONSULT,VAM LABS INC.,Y4000\nILLUSTRATED PROPERTIES REALTY,,F4200\nMODERN GAS CO INC,,E1100\nPENSIO,RETIREMENT PLAN SERVICES INC,F5500\nEXECUTIVE,\"VAUGHAN & SONS, INC./EXECUTIVE\",Y4000\nLAWYER,US SECURITIES AND EXCHANGE COMM.,X3000\nAUTO SALES,\"GLEN'S AUTO SALES\",T2300\nTANELLY BROWN ET AL,,Y4000\nSECRETARY,\"R.L.O. CONTRACTORS, INC.\",Y4000\nGeneral Counsel,LTX Corporation,Y4000\nUNIV OF ILL AT URBANA-CHAMPAIGN,,H5100\nADVERTISING,CADIENT GROUP,Y4000\nOWNER,WESTMORELAND ELECTRIC,Y4000\nMANAGEMENT,ETHOX CHEMICAL CO.,M1000\n\"PRESIDENT, LIFE SAFETY & SECURITY PROD\",SECURITY PRODUCTS,G5290\nATTORNEY,\"COLE, SCHOTZ, MEISEL, FORMAN & LEONARD\",K1000\nLifetime,,Y4000\nINVESTMENT MANAGE,\"TPG CAPITAL, LTD.\",F2600\nEXECUTIVE,B&G EQUIPMENT CO.,J1100\nAttorney,Jeffer Mangels Butler & Mitchell,K1000\nEXECUTIVE PRESIDENT,SELF-EMPLOYED,Y4000\nRANCOFF CORPORATION,,F4000\nHealth Insurance Agent,Self-employed,F3200\nVICE,PLANNED PARENTHOOD LOS ANGELES,J7150\nMANAGER,MINNESOTA RECOVERY BUREAU,Y4000\nPRESIDENT,MID AMERICAN ENERGY,E1620\nEXECUTIVE,IMAGE PRODUCTS INC,Y4000\nPRESIDENT,THE SUMMIT FOUNDATIO,X4100\nDIRECT,LAKESIDE COMMUNITY COMMITTEE,H6000\nEngineer,Andover Technology Partners,Y4000\nOWNER,GALPIN MOTORS INC,T2300\nExecutive Director,CT Technology Council,Y4000\nR CHIN & ASSOCIATES,,F4100\nCONTRACTOR,H.H. WOODWORKING,Y4000\nOwner,Dale Investments,Y4000\nTHE ELLERMAN COMPANIES,,F3100\nVETERINARIAN,JEWELL ANIMAL HOSPITAL/VETERINARIAN,A4500\nEXEC VP,J D ABRAMS LP,B1000\nMANAGER - MARKETING,\"L.L.BEAN, INC\",G4100\nDEAN,UNIV. OF MD SCHOOL OF NURSING,H5100\nReal Estate Broker,Park Co/GMAC,F4200\nCEO,\"CAPITAL BLUEPRINTS, LLC/CEO\",C1300\nGLOBAL GOLF,,M3600\nPATHOLOGIST,OHIO STATE UNIV MED CTR,H1130\nChairman,\"Rosen, Sapperstein & Friedlander,\",F5100\nPresident,Jane L Sheffey & Associ,Y4000\nBUSINESSMAN,REALTOR,F4200\nFARMER & CATTLE FEEDER,SELF-EMPLOYED,A1000\nMONARCY,,Y4000\n\"PRESIDENT, CONSUMER BRANDS DIVISION\",RICH PRODUCTS CORPORATION,E4100\nAUTOMOTIVE SALES,ACCARDI DODGE CHRYSLER JEEP,T2300\nH G ASSOCIATES,,Y4000\nDirector Research,Torrey Pines Logic,Y4000\nProperty Manager,Jca Property Management,F4500\nJournalist,Self-Employed,C2300\nChief Executive Offi,Mercy Medical Center,H2100\nFuneral Director,\"Wilson's Funeral Homes Ltd\",G5400\nOWNER,Lda Steel Corp.,M2100\nEngineer,Williams Oil Co,E1100\nINFO REQUESTED,CITRUS RADIOLOGY ASSOC,H1130\nCEO,HORRY COUNTY ELECTRIC COOP,E1610\nAttorney,Weil Gotshal & Mange,K1000\nAccount Director,LRA Worldwide,Y4000\nPRINCIPAL A,\"WINGED KEEL GROUP, INC.\",F3300\nFINANCIAL ANALYST,UBS,F2100\nRIO ALCOM MINING & QUIVIRA CO,,E1200\nTEACHER,WINFIELD BOARD OF EDUCATION,X3500\nOLIVER WYMAN & COMP,,G5270\nCOMPLIANCE,GOLDMAN SACHS & CO./COMPLIANCE,F2300\nPresident,Arizona Itlabs LLC,Y4000\nMANAGING PARTNER,RED TREE CONSULTING GROUP,B4200\nWINBURN ASSOCIATES,,K2100\nPATHOLOGIST,MERITUS HEALTH,H1130\nVP,Deutsche Bank,J1200\nSECRET,SETTLERS IRRIGATION DISTRICT,A4000\nCONSULTANT,\"JUDITH STERN CONSULTING, INC.\",Y4000\nApplications,New York University,H5100\nMANAGER,\"GXS, INC\",Y4000\n\"SHAW BRANSFORD & O'ROURKE\",,K1000\nTeacher,Hindsdale elementary,X3500\nCONSTRUCTION ENGINEERS LTD/CEO/ENGI,,B1500\nOwner - financial consulting,\"Capstone Advisory Group, LLC\",Z9500\nDELAWARE MGMT CO,,Y4000\nEditor,Firedoglake,J1200\nCEO,\"MASTER AGENDA, LLC\",Y4000\nBed and Breakfast Ow,Self employed,T9100\nVM WHEELER III LLC,,Y4000\nENGINEER,VIGILENT,Y4000\nATTORNEY AND TEACHER,SELF,K1000\nATTORNEY,\"GENESCO SPORTS ENTERPRISES, INC.\",G6400\nArt Dir,Information Requested,J1200\nCEO,NATIONAL HEALTH CARE AFFILIATES,H3000\nSECRETARY,HIGHTS LANDSCAPING,B3600\nARLINGTON PRESS,,Y4000\nKNOXVILLE BUSINESS COLLEGE,,H5100\nPRESIDENT,STANDARD CHAIN & COMPANY,Y4000\nCIO / VP OF IT,WEA INSURANCE TRUST,Y4000\nTEACHE,ST MICHAELS EPISCOPAL CHURCH,X7000\nGUSLING & COMPANY CPA,,F5100\nCONSTRUCTION MANAGER,\"RCI MARINE, INC/CONSTRUCTION MANAGE\",Y4000\nOwner,Anberry Rehab Hosp.,H2100\nLEVANDER GILLEN AND MILLER,,Y4000\nOWNER,SUPERIOR FABRIC CARE,Y4000\nRetail Buisness Owner,G & S Packing Co,Y4000\nExecutive,Thales E-Security,C5130\nRETINA & VITREOUS CONSULT,,H1120\nPAYLESS SHOE STORES,,Y4000\nPERSONAL INVESTOR,\"KINSEY INSTERESTS, INC. - ENERGY\",J1100\nCPA,HEATHER SANQUIRETTR,J1100\nCEO,Linx It Software,C5120\nSE,ROBECO INVESTMENT MANAGEMENT INC,F2100\nASPEN TREE EXPERT CO. INC.,,Y4000\nMUSICIAN,\"HERB ALPERT PRESENTS, INC.\",Y4000\nCONSULTANT,COLUMBIA IS CONSULTING,Y4000\nMANAGER,DOWNEAST ENERGY,E1000\nMESSENGER SERVICE,,Y4000\nReal Estate,Guilford Glazer & Associates,F4100\nMEDICAL CONSULTANT,\"POTOMAC PHYSICIAN ASSOCIATES, P.C\",H1100\nPrincipal,\"Tpg Capital, L.P.\",F2600\nSpeech Therapist,NYC Board Of Education,X3500\nPLUMBER,PLUMBERS & FITTERS LOCAL 290,LB100\nINSTRUCTOR,MADISON AREA TECHNICAL COLLEGE,Z9500\nLETSON & SWADER,,K1000\nPUBLIC RELATIONS,\"MANATOS & MANATOS, INC./PUBLIC RELA\",K2000\nREGION 9 A-UNITED AUTO WORKERS,,Y4000\nTV BROADCAST STATION,,C2100\nATTORNEY,THE LUBRIZOL CORPORATION,M1000\nDirector of Planning,USDA,X3000\nWALNUT CREEK PEDIATRIC GROUP,,H1100\nBUSINESS CONSULTANT,S. GROUP INC.,Y4000\nATTORNEY,\"PARSONS, BEHLE & LATIMER\",K1000\nATTORNEY,\"BODKER, RAMSEY, ANDREWS, WINOGRAD & WI\",Y4000\nLONE STAR COMPANY,,Y4000\nNURSE,LEA REGIONAL HOSPITAL,H2100\nR&D Manager,Pliant Corporation,M7000\nINVESTMENTS,HQ INVESTMENTS,F7000\nCFO,NORIBACHI,Y4000\nAttorney,\"McGlinchey & Stafford, PLLC\",K1000\nCHAIRMAN,HARRIS WHOLESALE INC.,G2850\nManager/Attorney,Westands Water District,E5000\nPresident/money manager,LM Advisors,Y4000\nCEO,CONWAY REGIONAL MEDICAL CENTER,H2100\nUNIVERSITY OF NEBRASKA MEDICAL CTR.,,H1130\nCRESCENT EXCA & GRAHAM HM IMPROV CO,,Y4000\nALLIANCE CORPORATION,,B1500\nCOMMERCIAL TIRE SA,SNIDER TIRE INC.,Y4000\nPHYSICIAN,GENERAL HOSPITAL,H2100\nBUSINESS MANAGER,STONE DESIGN,Y4000\nATTORNEY,BIENENFELD AND WERTMAN,K1000\nJORDAN ASSOCIATES,,Y4000\nPresident,South Exchange Inc.,Y4000\nDAVID MACDONALD JR,SELF-EMPLOYED,G0000\nC.E.O.,NACCO INDUSTRIES,T3200\nWOLFF & SAMPSON,,K1000\nREGIONAL PRESIDENT,MERCY,H2100\nGroup President,Eaton Corporation,M2300\nTeacher,Lighthouse Community Charter School,Y4000\nPRECISION PROCESS,,Y4000\nOWNER,THAXTON SERVICE STATION,E1170\nP AND J FORD,,T2300\nPresident,Easy Enterprises Inc.,Y4000\nINTERNATIONAL SHIPHOLDING CO,,T6200\nMARSHALL CONTRACTORS,,Y4000\nPARADIGM SOFTWARE CORP,,C5120\nCEO,Red Canyon Software,C5120\nEXECUTIVE,BRADLEY PLYWOOD CORP.,J1100\npresident,Fidelity Paper,A5200\nJOHN HALL PUBLIC AFFAIRS,,K2000\nManager,KENNEDY DIE CASTINGS,M5000\nAT,\"COLEMAN, JOHNSON, ARTIGUES & JUR\",Y4000\nVp Of Fin,University Blanket & Flag,Y4000\nCALDWELL BANKER,,Y4000\nAsst Executive Director,U S Attorney,X3200\nDIRECTOR,NATIONAL BANK OF COMMERCE,F1100\nManagement,International Labour Organisation,X9000\nOWNER,KENNETH F. LONG JR. LLC,Y4000\nPARTNER,GOULD ELECTRIC,B3200\nVice President,Lee-Curtis Insurance Serv. Inc.,F3100\nENTRECORP,,J6200\nADULT CARDIOLOGY,Pennsylvania Cardiology,H1100\nEDWARD E GILLEN CO,,Y4000\nPUBLIC RELATIONS/ATT,GORDON C. JAMES PUBLIC RELATIONS,G5210\nPhysician,Nemours Foundation,Y4000\nPharmaceutical Consultant,Self,H4300\nALLIANCE COAST,,Y4000\nATTORNEY,LAW OFFICE OF JOHN NOONAN,K1000\nPARTNER,READ PROPERTIES,F4100\nLOVELL & SROUBLE INC,,Y4000\nPartner,John Hunting & Assoc,Y4000\nCFO,American Greetings Interactive,Y4000\nVALLEY QUALITY RECOURSES,,Y4000\nCONSULTANT,BOB LAWRENCE ASSOC,J1200\nCOMMERCIAL PRINTER,TRADE LITHO,C1300\nPROGRAM ENGINEER,CSC (COMPUTER SCIENCES CORP.),C5130\nHAMILTON BROTHERS OIL,,E1120\nExecutive,Cal Dental Assoc,H1400\nManaging Director,Rural Mountain Partners,Z9500\nOWN,\"FUN CITY CHILDREN'S PARTY PLACE\",Y4000\nGOVERNMENT RELATIONS,WELLS FARGO BANK,F1100\nCio & Portf Mgr-equi,\"Neuberger Berman, Llc\",F2100\nPROPERTY MANAGER,VERSA CRET CONTRACTING,Y4000\nPRESIDENT / CEO,HERITAGE BAG COMPANY,M1500\nEXECUTIVE,MALTON ELECTRIC CO,B3200\nEXECUTIVE,ARBOR INVESTMENTS GROPU,F2100\nAttorney,Slick Enterprises,G5200\nOwner,Bender Enterprises,Y4000\nDESIGN4ADVERTISING INC.,,G5210\nDeputy Communications Director,King County,X3000\nOWNER,ROY COLLINS CONSTRUCTION COMPA,B1500\nLOSURDO FOODS,,G2000\nDUNNING BENEFITS CORP,,F3100\nSTEEL SAL,METAL PRODUCTS OF ALABAMA,Y4000\n\"VP, GOVERNMENTAL AFFAIRS\",NEXTERA ENERGY,E1600\nRealtor,KW Mid American Region,F4200\nField Engineer,Technical Marine Service,Y4000\nOWNER,TRASH MASTER LLC,Y4000\nSIMONE ENTERPRISES,,Y4000\nNAT. CENTER FOR YOUTH LAW,LAWYER,K1000\n\"SR. VP, COMM. RELS & COMM\",CLARIAN - METHODIST HOSPITAL,H2100\nPresident of the Board,Frederick Bratcher & Company,Y4000\n\"CHILDREN'S HOSPITAL\",,H1110\nPRINCIPAL,BANKERS TRUST,F1100\nUPDIKE KELLY & SPELLACY,,\nPOLTE CORP,,Y4000\nDRY CLEANER,SELF-EMPLOYED,G5500\nOWNER,JUMPIN GINA`S MOONWALK & MORE,Y4000\nBERNARD FINANCIAL GROUP,,J5100\nCO-FOUNDER,ARMSTRONG FAMILY FOUNDATION,Y4000\nPRESIDENT/CEO,DP FOX VENTURES,F2600\nPRESIDENT,REPLACEMENTS LTD,J7300\nP DIMARCO INC,,Y4000\nEDGEFIELD AVIATION CORP,,F1100\nTreasurer,Data Experts Inc,Y4000\nC/O MARLBORO PHYSICAL THERAPY/PHYSI,,H1700\nV.P. CORPORATE SYS,INTERNATIONAL HQ,T9100\nDEAN,NORTHWESTERN STATE UNIVERSITY OF LOUIS,Y4000\nNEIGHBORING CONCEPTS,,Y4000\nLUDLOW BOARD OF EDUCATION,,X3500\nCOMPUTER PROGRAMMER,\"MVP SYSTEMS SOFTWARE, INC.\",C5120\nW L HALL COMPANY,,Y4000\nHVAC STUART MECHANICALS,,Y4000\nVice President Finan,Time Warner Cable,C2200\nUINTA REALTY,,F4200\nPRESIDENT,HIRSCHFELD STEEL CO. INC.,M2100\nFAGENSON AND ASSOCIATES,,F2100\nIMAGE MINDERS,,Y4000\nMANAGER,SANDERLING VENTURES,Y4000\nVp,Bert Company,Y4000\nAEROSPACE EXECUTIVE,NORTHRUP GRUMMAN,D5000\nLEAD OPERATOR,HOLLYFRONTIER CORPORATION,E1160\nOWNER/VICE PRESIDENT,OREGON AERO INC,T1300\nEXEC DIR SOCIAL SERVICES,SNAP,Y4000\nBIRKO CORPORATION,,M2300\nLOBBYIST,ILL ASSOC OF REALTORS/LOBBYIST,J9000\nReal Estate Developm,\"Howard Bilkiss, Ltd\",Y4000\nattorney,Sonosky Chambers,K1000\nExecutive Vice Presi,Kindred Healthcare,H2100\nWV DEPARTMENT OF HIGHWAYS,,X3000\nPresident,Closure Hanford,Y4000\nOWNER,CAMPAIGN PRODUCTS PLUS,Y4000\nChairman/CEO,\"Harris Farms, Inc.\",A3500\nART ADMINISTRATOR,,J7400\nBERG INJURY LAWYERS,,K1000\nAttorney/Graphics De,Self,G0000\nPENN MUTUAL INSURANCE COMPANY,,F3300\nA WORLD OF PETS & SUPPLIES LTD,,G4600\nPARTNERSHIP,,F5100\nPRESIDEN,WONDER VALLEY RANCH RESORT,A3000\nGRINNELL BEVERAGE CO.,,G2850\nBMW MAZDA GALLERY,,T2300\nMelavia Inc.,,H4300\nB&B DREDGING,,B1200\nCHIEF EXECUTIVE OFFICER PARTIALLY RET,CLAY WHITE & ASSOCIATES INC.,Y4000\nExecutive,Yourk Management & Research,J1100\nIT/Software Testing/,UnumProvident Corporation,Y4000\nPresident,Lafferty Entertainment,Y4000\nADVANTAGE MORTGAGE INC,,F4600\nPRESIDENT,NEW YOUNG BROADCASTING HOLDING CO INC.,C2100\nMARIN PROF FIREFIGHTER,,L1400\nBUILDER,SELECT BUILD,B1500\nSIMONSON HERS ET AL,,K1000\nHEADS AND,GARDENBOLT,Y4000\nANALYST,U.S. GOVERNMENT,Y4000\nAttorney,Coadwalader Wickersham and Taft,K1000\nCONSULTANT,CAPITOL RESOURCES,J1100\nPRES,SCHILLI TRANSPORTATION SERVICE,T0000\nConsultant,State of Maine,X3000\nEmergency Physician,Grant Riverside Hosp,H1100\nGovernment Affairs,News Corp.,C2400\nCFO,WEST HOUSTON MED CTR,H2100\nSALES,HOLT CAT,Y4000\nCardiologist,Idaho Cardiology,H1130\nANESTHESIOLOGIST,CHAMPLAIN VALLEY PHYSICIANS HOSPITAL M,H2100\nOwner,\"Unity Mold, Inc.\",Y4000\nINVESTOR,KOHLBERG KRAVIS ROBERTS & CO.,F2600\nSELF-EMPLOYED,Real Estate Investor,F4000\nCPA,\"MITCHENER, CROWDER & STACY, PL\",J1100\nGOVERNMENT RELATIONS LLC,,K2000\nBRANCH DIRECTOR,NATIONAL WILDLIFE FE,JE300\nOwner,Mc Farlane-Hillman Pharmacy,G4900\nFINANCIAL MANAGER,CLINTON GROUP,F2100\nSelf-employed,J.W. Witten Investments,F7000\nGeneral Manager Afte,Trek Bicycles,Y4000\nAttorney,\"Slator, Makamura & Co.\",Y4000\nINVESTOR,CHERRY LANE CAPITAL,F0000\nRegional Director,Colonial Bank,Y4000\nCPA,\"Taaffe & Associates, PC\",F5100\nPATTCO LLC,,F2100\nPreident,Pollack,Z9500\nROBERT L FOLKS & ASSOC,,Y4000\nEXECUTIVE,CARNIVAL CRUSE LINES,T6250\n\"consulting geologist, mining\",self,E1200\nWALLACE BAUMAN,,K1000\nCHIEF ENGINEER,COX MEDIA GROUP,C2200\n3M COMPANY,,J1100\nTELEVISION PRODUCTION EXECUT,M.G.M.,C2400\nC P A,SHULLMAN & ASSOCIATES,Y4000\nRetired,Walters Kl,K1000\nMANAGING DIRECTOR,GMT VENTURES,G5270\nRESTAURATEUR,\"MOLLY'S INC\",Y4000\nSELF/OWNER/BOOKS ARE FUN,,Y4000\nInsurance Agent,\"The Adams Agency, LLC.\",F3100\nFOUNDER,REFLOW,Y4000\nTutor,Tennessee Association For Child Ca,Y4000\nMBI,,F1100\nPresident/Ceo,Tsi Healthcare,Y4000\nATTORNEY,RUSSO COX & RUSSO PC,K1000\nATTORNE,\"C. WILLIAM LAYSTROM, JR. PA\",K1000\nFIREMAN,ST. JAMES FIRE DEPT,Y4000\n\"PRESIDENT OF INTERSTATE TOWING, INC.\",\"INTERSTATE TOWING, INC.\",T3100\nSenior VP,UC Irvine,H5100\nLAWYER,HARTMAN UNDERHILL BRAKEN,Y4000\nMANAGEMENT,RANEX ENTERPRISES,Y4000\nENGIN,\"BP EXPLORATION (ALASKA), INC.\",E1150\nATTORNEY,BECK HARRISON & DALMBERT,K1000\nPRESIDENT,WIRELESS COMMUNICATIONS,C4300\nRetired NY Sandy Hook Pilot,Self,X1200\nSURGE,ILLINOIS BONE JOINT INSTITUTE,H1130\nAttorney,Robert E. Sutton Law Offices,K1000\nREGIONAL CHIROPRACTOR,,H1500\nGOVERNMENT RELATIONS,THE KEELEN GROUP,K2000\nOWNER,PARK INVESTMENTS INC,F7000\nDiagnostic Radiologist,St Paul Radiology,H1130\nDean of Dental School,University of Pittsburgh,H5100\nPRES.,BUTTERFIELD FOODS,A2300\nSystems Analyst,Gap Inc,G4100\nDirector,Cape May Jazz Festiv,Y4000\nOwner,Dingman Collision Center,Y4000\nVP S. AMERICA OPER,JOHNSON CONTROLS,T2200\nInterior Decorator,Self employed,G5000\nReal Estate Agent,Robert Melanson,Y4000\nLawyer Retired Judge,Self employed,G0000\nSALES,3D CORPORATE SOLUTIONS,Y4000\nHEARING AID SALESMAN,PHONAK HEARING,Y4000\nSELF/MATH TUTOR/SEMI-RETIRED,,X1200\nEXECUTIVE,KEMIN INDUSTRIES INC.,Y4000\nKLINE & SPECTER PC,,K1000\nATTORNEY,PULLMAN AND COMLEY,K1000\nATTORNEY,\"MCGRAW, PETERSON\",Y4000\nCOMMUNICATIONS COACH,\"LAURUS CONSULTING, INC.\",Y4000\nGame Developer,Ncsoft,J1200\nSubstitute Teacher,ESD # 113,Y4000\nVP & GENERAL MANAGER,LEHIGH,A2000\nUS DEPT OF EDUCATION,,J1200\nOWNER,\"STRATTON'S CASH-IT-INC.\",F5500\nDevelopment Director,Luna Stage,Y4000\nSTEOPATHIC PHYSICIAN,,Y4000\nPresident,Yarnell Construction Co. Inc.,B1500\nChief Architect,Oracle,Z9500\nBERMAN ENTERPRISES,,J5100\nVP,FEDERATION OF AMERICAN HOSPITALS,H2100\nEXECUTIVE,VIVATERRA LLC,J1200\nBANK DIRECT,MD,H1100\nSoftware Engineer,ITA Inc,Y4000\nNATL ASSN FOR ADV OF ORTHOTICS & PR,,H1130\nCONTINENTAL CABLEVISION OF MORTON,,C2200\nAttorney,Newmeyer and Dillon LLP,K1000\nattorney,Broad & Cassel,K1000\nBUSINESSMAN,PARLEA RESOURCES CO,Y4000\nRealtor,Coldwell-Banker,F4200\nWILL NOT DISCLOSE DUE TO FEAR OF BE,,Y4000\nYELLOW HAWK,DEPT OF VETERAN AFFAIRS,X3000\n2GVENTURES,,F2500\nSUNRISE INTERNATIONAL GROUP,,Y4000\nSURGEON,LEWIS GALE CLINIC,H1130\nRWA MANAGEMENT MARKETING,,Y4000\nCONTINENTAL EXPRESS AIRLINE,,T1100\nIT MANAGER,RIHANI INTERNATIONAL,Y4000\nReal Estate,Commerical West Brokerage,Y4000\nGENI CONTRACTOR,SELF,B1500\nARNELL DEVELOPMENT CO.,,F4000\nPROGRAM DIRECTOR,CITY OF ALEXANDRIA/PROGRAM DIRECTOR,X3000\nReal Estate Broker,Su Familia Real Estate,F4200\nFinancial Consultant,Interlink Capital Strategies,F0000\nPHYSICIST,NATIONAL INSTITUTE OF HEALTH,J1200\nPolice Officer,Upper Saucon Police Department,X3200\nJAGELS INVESTMENTS,,J1100\nMEDIA OWNER,SELF,Y4000\nGraduate Student/Research Assistant,Boston University,H5100\nPresident & CEO,Alliance Spinal Therapy & Rehabilitati,Y4000\nCHAIRMAN,TULE RIVER TRIBAL COUNCIL,G6550\nCEO,SOMERSETT.COM,C5140\nDAVOIL,,Y4000\nPROFESSOR,ANDERSON SCHOOL OF MANAGEMENT,Y4000\nAttorney,Regas Frezados & Dallas LLP,K1000\nVICE PRESIDENT OF SALES,HEALTHSPRING,J1100\nEXECUTIVE DIRECTOR,NYS PERB,X3000\nINDUSTRIAL ENTERPRISES,,G1200\nHOSPITAL STAFFING,,H2100\nMENTAL HEALTH COUNSELOR,MURRAY PLUMB AND MURRAY,B3400\nMAIL CARRIER,U.S.P.S,X3700\nCBC CREDIT SERVICES INC,,F1400\nFarmer,Snowslip Farm,A1000\nAttorney,self employed/Johnson County Democ,J1200\nVICE PRESIDENT,PREMIER ADVOCA,Y4000\nHAVENS ADVISORS,,Y4000\nREAL ESTATE INVESTOR,SELF-EMPLOYED,F1000\nLAWYER,FERRO LAW & MEDIATION GROUP,K1000\nCHW SOUTHERN CALIFORNIA,,H2100\nLaw,Coats Rose,K1000\nCongressional Liaiso,U.S. Dept. Of Education,X3500\nOUTDOOR ADVERTISING ASSN OF A,,G5230\nEXECUTIVE,JOSAM CO.,Y4000\nJOHNSTON COCA-COLA,,Y4000\n\"ROONEY GROUP INT'L\",,K2000\nINDUSTRIAL SPORTS MEDICINE,,H1130\nFUNER,NOLAN AND TAYLOR FUNERAL HOME,G5400\nManager,CA Association of Food Banks,Y4000\nPRESIDENT,SWANSON BROTHERS,Y0000\nNEECE CATUR,,K2000\nPILLSBURY-WINTHROP,,K1000\nEXECUTIVE,\"INHIBITEX, INC.\",Z9500\nChapter Employee,SMACNA - Colorado,B3400\nCEO,SHARP COMMNITY MEDICAL GROU,H1100\nSULLIVAN STEEL INC,,M2100\nInvestment Banker,ZT Global Investment,F7000\nPresident & CEO,Broeren Russo Companies,Y4000\nCHIEF RISK OFFICER,\"ANNALY CAPITAL MANAGEMENT, INC.\",F4100\n\"DIRECTOR STEP , INSTITUTE FOR CHURCH L\",NOTRE DAME,Y4000\nEXECUTIV,DEPT. OF HOMELAND SECURITY,X3000\nATTORNEY-MEDIATOR,HINSHAW & CULBERTSON LLP,K1000\nPRESIDENT,AMERICAN CORP. BENEFITS INC.,Y4000\nBOOKKEEPER,HARRE CONSTRUCTION INC,B1500\nATTORNEY,STITES & HOPKINS,K1100\nLabor Relations,Sodexho Marriott Services,G2910\nDRUG C,NEW YORK CITY BOARD OF EDUC.,J1100\n\"PRESIDENT, GLOBAL DAIRY PRODUCTS GROUP\",\"DAIRY FARMERS OF AMERICA, INC.\",A2000\nCEO,WEBB PATTERSON COMMUNICATIONS,Y4000\nPhysician,\"Medical Associates, PC\",H1100\nPSYCHOLOGIST,SELF EMPLOYED,J1100\nREALTOR,SEEZY REALTY,F4200\nPARTNER,PENN QUARTERS,Y4000\nSales,\"Structural & Steel Products, Inc\",M2100\nATTORNEY,\"ERVIN, COHEN & JESUP, LLP\",K1000\n\"SAUL, EWING, REMICK, SAUL\",,K1000\nFOX-MORRIS,,G5250\nFUDGIES FAMOUS CHICKEN,,Y4000\nFAMILY PHY,CAMMEL FAMILY PHYSICIANS,Y4000\nVICE PRES,JE DUNN SOUTH CENTRAL INC,Y4000\nCOO,LITTLE HARBOR ADVISORS,Y4000\nSALES AGENT,AAA MICHIGAN,T9400\nVP Finance,Janer Technologies,Y4000\nREADY MEN LABOR,,Y4000\nINFORMATION ASSETS MANAGEMENT INC,,Y4000\nPreschool Assistant Teacher,IRS Nursery School,Y4000\nwholesale fish dealer,Nova,C5130\nTIRE SUPPLY,,Y4000\neducation,NYU,H5100\nSECURE CHOICE HEALTH,,H3700\nOffice Manager,\"Wayne F. Payne, Dds. Pc\",H1400\nEditor/Journalist,Time Warner,C2000\nREQUESTED,THE WASHINGTON GROUP,K2000\nNEWBOLD TOYOTA-VOLVO,,T2310\nInvestment Banking,\"GOLDMAN, SACHS & COMPANY\",F2300\nSVP-INVESTMENTS,ARCHSTONE,F4100\nTeacher,Punahou School,J1200\nUN Foundation,,X4100\nSOUTHERN NEURAL SCIENCE CENTER,,Y4000\nCPA,Kauls & Company,Y4000\nHOLIDAY ACRES RESORT,,T9100\nCA Senator,United States Senate,X3000\nMILFORD PLAZA ASSOC,,F4000\nCONSULTANT,WINNING STRATAGIES,G5260\nSENIOR VICE PRESIDENT & CPO,COMCAST CABLE,C2200\nOWNER,\"HUEY'S RESTAURANT\",G2900\nFELDMAN BODANSKY & RUBIN,,Y4000\nVICE PRESIDENT,PARIC CORPORATION/VICE PRESIDENT,B1000\nRISK MANAGEMENT,REQUESTED,F1400\nATTORNEY,BLACK SWAN LEGAL,Y4000\nRADIO STATION OWNER,KAGE INC,C2100\nTRUCK DRIVER,RENTWAY,G5300\nINSURANCE AGE,WD CAMPBELL & SON INC,Y4000\nMUSEUM DIRECTOR,KIRKLAND MUSEUM OF FINE & DECROATIVE A,J7400\nFarmer,Jim Haire,Y4000\nOwner,Paul Johnson Floor and Carpet,Y4000\nENGINEER,NOBLE ENERGY,E1120\nCHAIRMAN,ANTON AIRFOOD,G2910\nChairman,Jimmy Johns,G2900\nPresident,Majestic Liquors,G2840\nEXECUTIVE,\"THE PICKENS COMPANY, INC.\",E1120\nMANAGEMENT ANALYST,US DEPT OF TRANSPORT,X3000\nconsultant,Cohen Group,J1200\nC.F.O.,\"THE HINA GROUP, INC.\",Y4000\nSALE & KUEHNE PA,,J5100\nVP SOUTHERN REGION,PATRIOT COAL CORP.,E1200\nPRESIDENT,G P M ENGINEERING,G1200\nHOMEBU,MITCHELL & BEST GROUP L.L.C.,Y4000\nLICHTER GROSSMAN,,Y4000\nEngineer,Gibson Tube,M2100\nSOCIAL WORKER,SALEM STATE COLLEGE/SOCIAL WORKER,H5100\nFAMILY PHYSICIAN,NOVA SOUTHEASTERN UNIVERSITY,H5100\nBEER WHOLES,TRI COUNTY DISTRIBUTORS,G2850\nBLAKEMORE COTTON & GRAIN CO,,A1100\nGSA ADMIN,,X3000\nPresident,Bradawn Insurance Services,F3100\nPresident,G. K. Management,Y4000\nAttorney,Carmel & Carmel Pc,K1000\nCHAIRMAN AND CEO,HOME BOX OFFICE,C2200\nReal Estate Broker,Porter & Assoc,F4200\nSystems Engineer,Enterprise Rent-A-Car,T2500\nSTATE SENATOR,NEW HAMPSHIRE,Y4000\nATTORNEY,LEIFF CABRASER HEIMANN & BERNSTEIN,K1100\nOWNER,SILVERTON CONSTRUCTION,B1500\nPRESIDENT,AMOST FAMILY CEP,H3100\nLAWYER,DEWEY & LEBOEUF LLP/LAWYER,K1000\nPHYSICIAN,MU PHYSICIANS & SURGEONS,H1100\nIndependent Consultant,NA,G5200\nproperty management,first ave realty,Z9500\nDE ANZA BUILDING,,Y4000\nMARITIME SECUR,GENERAL DYNAMICS AIS,D3000\nPHYSICIAN,N.Y.U. SCHOOL OF MEDICINE,H5150\nCA BOTANA INTL,,H4000\nPsychologist,Middleton Cross Plains School District,X3500\nHOSPITAL ADMINISTRATOR,CENTRAL MAINE MEDICAL CENTER,H2000\nOWNER,STEAM MARKETING LLC,Y4000\nJONES MET CABLE,,J7400\nCONSOLIDATED SERVICES CORP,,Y4000\nAttorney,\"Fox, Hefter, Swibel, Levin &amp; Carro\",K1000\nCIVIC ENGINEER,MORETRENCH,B1000\nEngineer,Hydroacoustics Technology Inc,Y4000\nKNSN FM RADIO,,C2100\nDIRECTOR,FOUR OAKS BANK & TRUST,F1200\nMONTICELLO MED CLINIC,,H1100\nEXECUTIVE,QVC,C2100\nSurgeon-Physician,UCSF,H5100\nPartner,\"DeGravelles, Palmintier, Holthaus & Fr\",K1000\nEditorial Assistant,In Style Magazine,J1200\nspa Owner,Self employed,G5800\nEXECUTIVE,CAPITAL GROUP,Y4000\nSales Manager,MIKE ALBERT,Y4000\nSWAG KINTWEAR,,M3100\nAttorney,Sayles & Evans,K1000\nATTORNEY,\"BARRETT, JOHNSTON, & PARSLEY\",K1000\nRetired,Commercial Federal Bank,F1000\nMINISTER,FAITH CHRISTIAN FELLOWSHIP,Y4000\nPEDIATRICIAN,\"PEDIATRIC ALLIANCE, PC\",Y4000\nREAL ESTATE AGENT,RE/MAX BENCHMARK REALTY,F4000\nProject Manager,James Construction Group,B1500\nDIRECTOR OF MARKETI,CRANE AEROSPACE,Y4000\nSteam Fitter,Local 47,J1200\nFranchize Owner,Mc Donalds,G2900\nHistoric Preservatio,Ball Parc Properties,F4000\nVP,ZILBER LTD,Y4000\nATTORNEY - LOBBYIST,PERSONAL WATERCRAFT INDUSTRY,T8000\nKAWEAH RIVER ROCK CO,,B5100\nREAL ESTATE DEVELOPMENT,PARKSIDE PROPERTIES,F4000\nPresident,Allegheny Housing Rehabilitation,Y4000\n\"MOCK, SCHWABE ET AL\",,K1000\nSELF BUSINESS OWNER,,G0000\nPresident,GeoQuill Services,G5200\nCHRIS DAVIS,CHRIS DAVIS,Y4000\nQUATTLEBAUM GROOMS,,K1000\nVICE PRESIDENT,\"J&M MFG CO, INC.\",Y4000\nOrthodontist,Orthodontic Excellence,H1400\nELECTRONICS,CENTRAL DIST. ALARM,J6200\nWYOMING FINANCIAL SE,,F0000\nGeologist,\"F.G. Holl Company, LLC\",Y4000\nPARALEGAL,OLAN LAW,J1200\nATTORNEY,BRACEWELL GIULIANI/ATTORNEY,K1000\nVice President,\"Olan Mills, Inc\",G5240\nJ L SCOTT REALTY,,F4200\nMARTINEZ INDUSTRIES,,Y4000\nPublishing QA Lead,\"Luz, Inc\",C1100\nN T M,,Y4000\nENGINEER,MAVRIQ TECH,J5100\nNATIONAL PRISM PROJE,,J9000\nOWNER,RUTHERFORD GROVE,G2820\nATTORNEY,MITCHELL & BARLOW P.C.,Y4000\nExecutive,Golden Foods/Golden Brands Inc,G2000\nDESIGN CONSULTANT,PLAIN & FANCY,Y4000\nPresident,Miller Valentine Group,G5290\nattorney,Shutts & Bowen Law Firm,K1000\n\"YOUNG'S COMMERCIAL TRANSFER/OWNER/C\",,Y4000\nInsurance,Croxton & Roe,F3100\nEXECUTIVE VICE PRESIDENT &,C.M.A.I.,Y4000\nPresident,Surambala Corp,Y4000\nSecurity Guard,Riva Point At Lincol,Y4000\nNYS DEPARTMENT OF PUBLIC SERVICE,,X3000\nPOLICY MANAGEMENT & COMMUNICATIONS,,J1100\nREAL ESTATE,MEYER C. WEINER COMPANY,F4000\nSCOTCH PLYWOOD COMPANY,,A5000\nDOCTOR,C. P. DARBY JR. M. D.,H1100\nSMITH & HARROFF,,G5210\nMALCO THEATERS INC,,J1200\nLABORER,J T Magen & Co. Inc.,LB100\nEXECUTIVE,BARKSDALE MANAGEMENT,F7000\nDoctor,\"Milton Radiologists, Inc\",H1130\nOwner,Nature Stone,B5100\nEXEC,TUCSON TOWING,T3100\nVICE PRESIDENT,VERISQIL/VICE PRESIDENT,Y4000\nUniv Administrater,Mit,H5100\nMARKET LEADER,PENTON MEDIA,Z9500\nTRAFFIC ENGINEERING,AECOM,B4200\nSelf Employed,LaJo Market,Y4000\nOWNER,OMEGA BROKERS/OWNER,F3100\nBusinessman,\"Capitolworks-Politemps, Inc\",Y4000\nWAHLER PECYNA & FLEMING,,Y4000\nRainey Cluss LLC,,Y4000\nPROFESSOR,PENN. STAT UNIVERSITY,H5100\nDirector,Bread For The World/ Alliance to End H,Z9500\nNOVOGRADAC & COMPANY L.L.C.,,F5100\nVP - Risk Management,Option One Mortgage Corp.,F4600\nROCKLAND REALTY,,F4200\nIT ANALYST,ADAYANA,Y4000\nMID-TECH CORP,,Y4000\nBEACON PROPERTIES CORPORATION,,F4100\nOWNER,COURTESY CHEVRELET,Y4000\nSENIOR ADVISOR,NATL ASSOC OF CORP DIRECTORS,C1100\nPUBLIC AFFAIRS CONSULTANT,JOSEPHINE COOPER LLC/PUBLIC AFFAIRS,K2000\nALTERNATIVE HOUSE,,Y4000\nINSURANCE AGENT,KIRSTI HAVERDINK,Y4000\n\"SVP, ASSOCIATE GENERAL COUNSEL & CHIEF\",DIRECTV,C2200\nWHITMORE STEEL & SUPPLY INC,,M2100\nOWNER/RN,GENESIS HOME CARE/OWNER/RN,H2200\nTECH,PUBLIX SUPERMARKET,G2400\nVICE PRESIDENT,BORDER FOODS,Y4000\nMANAGER,GROUP ONE TRADING/MANAGER,Y4000\nTHOMPSON INSURANCE,,F3100\nENGINEER,,J5100\nATTORNE,ASSOCIATED CONSULTING GROUP,Y4000\nTeacher,Bridgewater Schools,Y4000\nNELSON HARPER & ASSOC,,F4200\nPHY,REGIONAL ORTHOPAEDIC ASSOCIATES,H1130\nPHY,CEDAR VALLEY MED SPECIALISTS PC,H1130\nELECTRICAL CONTRACTOR,BRIAN NOON INC,Y4000\n\"XENOPORT, INC.\",\"XENOPORT, INC.\",J7400\nRANCHER,WILLIAM MOORE RANCH CO.,A3000\nNORTHWEST REHABILITATION,,Y4000\nEXECUTIV,SEABROOK BROTHERS AND SONS,G2100\nSOFTWARE ENGINEERING MANA,MICROSOFT,C5120\nPHYSICIAN,DANIEL SIEGEL,Y4000\nArchitect,\"Alliance Architects, Inc\",B4200\nCHAIRMAN OF THE BOARD,BLUE CROSS/BLUE SHIELD,F3200\nGOOGLE,CHIEF BUSINESS OFFICER,Y4000\nEXECUTIVE,EMERITUS CORPORATION,Y4000\nCEO,SILICON VALLEY BANK,F1100\nDIVERSIFIED REFRIG INC,,B6000\nAttorney,Sullivan Hazeltine Allinson LLC,K1000\nATTORNEY,\"LEOPOLD, PETRICH & SMITH\",K1000\nOwner,Dicks TV and Satellite,Y4000\nHUNTERDON OTOLARUNGOLOGY ASSOC,,H1130\nMANAGER,RENT-A-CENTER INC.,G5300\n\"CITIZEN'S NATIONAL BANK\",,F1100\nUNITED MERCANTILE AGENCIES,,F5200\nActuary/consultant,Self employed,F3000\nDISTINGUISHED FELLOW,UNIVERSITY OF NEW HAVEN,H5100\nExecutive,Raytheon E-Systems,D3000\nHEALTHCARE ADMINISTRATOR,GOSNOLD ON CAPE COD/HEALTHCARE ADMI,Y4000\nATTORNEY,EUGENE C. BROOKS IV P.C.,K1000\nATTORNEY,\"FOSTER QUAN, L.L.P.\",K1000\nNATIONAL ACCOUNT DI,ALCON LABS INC.,H4000\nNOT EMPLOYED,NONONENE,Y4000\nEXECUTIVE,MELANKO CONSTRUCTION,B1500\nINFO REQUESTED,DG RICKETTS PIPELINE CONTRACTER,Y4000\nSUPERVISOR OPERA,UGI UTILITIES INC.,E1140\nAcademic Administrator,\"University of California, Berkeley\",H5100\nLAMAR SIGNS,,Y4000\nPresident,Dick Corporation,B1500\nCEO,BNC FINANCIAL GROUP INC/CEO,Y4000\nReal Estate Operator,Self-Employed,F4000\nAttorney,\"Neuheisel Law Firm, P.C.\",K1000\nTextile Sales,Willoughby Sales Inc,Y4000\nCEO,BELTON INDUSTRY,Y4000\nAdministrator,Congressional Church,X7000\nController,MidMichigan Health,H2100\nERNEST & CO WARE KEELIPS HOMANS CO,,F2400\nLUFKIN PRINTING,,C1300\nDON STEPHENSON & ASSOC INC,,Y4000\nCEO,\"IBT, Inc.\",M2300\nPrivate Equity,Mellon Ventures,J7400\nPE,\"Florence & Hutcheson, Inc\",B4000\nATTORNEY & SCHOOL SOCIAL WORKER,PA OF NY/NJ & PNW BOCES,Y4000\nEXECUTIVE,MARTIN AND COMPANY,Y4000\nMD,\"Plaza Family Care, PC\",Z9500\nBroadcasting,Aurn,Y4000\nC.E.O.,Advanced Technology Systems,C5130\nGeneral Contractor,CF Holloway & Co,Y4000\nDairy Consultant,Self employed,G0000\nST CLAIR RANCH,,Y4000\nReal estate,wvc,F4000\nDIGITAL RIVER,,Y4000\nMADISON CASH EXPRESS,,Y4000\nMCGRATH ELECTRICAL INC.,,B0500\nMICHAEL GARDNER,,C2100\nCEO,\"UDT SENSORS, INC.\",H4100\nBANKER,JPMORGAN CHASE & CO.,Z9500\nLAWYER,THE SHELLY COMPANYSPHALT,Y4000\nSMALL BUSINESS OWNER,SUN BELT OFFICE SUPPLY,Y4000\nAnesthesiologist and Intensivist,UT Houston Medical School,H1130\nDENTIST,\"SCHUYLER FAMILY DENTISTRY, PC.\",Y4000\nSTERLING HEALTHCARE GROUP,,H1100\nPARKS DIRECTOR,CHESTERFIELD COUNTY,Y4000\nCEO- USFS,ING AMERICA INSURANCE HOLDINGS INC.,F3100\nVisual Artist,Self-Employed,X0000\nAttorney,Suttle Law,K1000\nFire Fighter / EMS,Lombard Fire Dept,L1400\nRIDILLA DEVELOPEMENT CO.,,F4100\nNYC HRA,,X3000\nA,STANLEY SCHECHTER ATTORNEY AT LAW,K1000\nSENIOR VP,STANDARD TEXTILE,M8000\nCOLORADO ANESTHESIA CONSULTANT,,H1130\nJEC ENTERPRISES,,Y4000\nLTK CONSULTING SVCS,,G5270\nSm Business Owner,Self,Y4000\nFundraiser,Joe Lieberman for President,J1200\nowner/partner crna group of 2,Self,H1710\nDATABASE ANALYST,MCI,C4200\nOWNER,BYSKO ASSOCIATES,Y4000\nBUCHANAN LUMBER CO.,PRESIDENT,B5200\nPHYSICIAN,STEWARD HEALTH CARE,H2100\nPRESIDENT,CULVER FARMS,G1200\nManager,\"Compressor Works, Inc.\",Y4000\nPRESIDENT,CTANY,Y4000\nNone,Retired,J1100\nREA,GATTERMEIR DAVIDSON REAL ESTATE,F4000\nERIE BEER DIST,,G2800\nSTITES & HOPKINS PC,,Y4000\nLegal Secretary,Wilson & Anderson,Y4000\nREAL ESTATE DEVELO,WATT COMMUNITIES,J1100\nATTORNEY,\"SHEFFER LAW FIRM, PLLC\",K1000\nOwner,Sound Health Energy Llc,Y4000\nMEMBER,L&F DISTRIBUTORS,G2850\nCKE RESTAURANTS INC,,F4300\nATLANTA COMMITTEE FOR THE OLYMPICS,,J9000\nCEO,Barberton Citizens Hosp,H2100\nMANAGER- FINANCE & SPECIAL PROJECTS,\"NEW CONCEPTS, INC.\",Y4000\nTeacher,Sonkids Christian Pre-School,Y4000\nManagement Consultan,P.A. Consultants,Y4000\nARIEL CAPITAL MANAGEMENT/PRESIDENT/,,F2100\nPartner,\"Preston,Gates, Ellis Rouvelas\",K1000\nDIVERSIFIED ALARMS,,Y4000\nConstultant,Self Employed,G5200\nQUANTRA CORP,,Y4000\nCONSULTANT,RUBENSTINE ASSOCIATES,G5210\nVP,FARM CR SERVICES OF CENTRAL KS,Y4000\nCEO,CAHILL CONTRACTORS,Y4000\nRECRUITER,CONCEPTS IN STAFFING,Y4000\nBusiness Owner,Pellys Property Rental,F4500\nA&K SPORTSLAND,,G4000\nIndependent Consulta,Self,K2000\nPARKS JEWELERS,,Y4000\nAttorney,Paze Epstein & Jaffe,K1000\nPhysician,Valley Imaging Consultants,Y4000\nDOCTOR,DERMATOLOGY CTR,H1130\nBUSINESS OWNER,HENRY A. FOX SALES CO.,Y4000\nSmll Business Owner,Premier Sheep Supply LTD,Y4000\nREGISTERED PHARMACIS,C.V.S. PHARMACY,G4900\nDUPREE SECURITY GROUP,,Y4000\nVP FINANCE,DINEEQUITY,G2900\n\"Managerial, Misc.\",\"Halquist Stone Company, Inc.\",B5100\nSPORTS CLINIC INC,,H1700\nMKD ELECTRIC INC.,,B0500\nPRESIDENT,WATER RESEARCH CO.,J1100\nSALES,CYGNUS SUPPLY LLC/SALES,Y4000\nPartner,Lord Abbett & Co. LLC,F2100\nPartner,Butler and Harris,K1000\nSrtist,Self,G0000\nSELF,HECK COMPANY,Z9500\nJORDAN BURT BOROS CICCHETTI BERENSO,,K2000\nLINCOLN GROUP,,Y4000\nProfessor,Tmple University,H5100\nCRARY HOMES & REAL ESTATE,,F4200\nBUSINESS OWNER,PRIORITY INSURANCE,Y4000\n\"CHAIR, PRESIDENT AND CHIE\",WELLPOINT,H3700\nTeacher,Montgomery Cty Public Schools MD,X3500\nVIEW COMMUNICATIONS,,Y4000\nPhysician,Cleveland Clinical Foundation,H1130\nlaw student,law student,Y1000\nASST VICE PRESIDENT,Norfolk Southern Corp,T5100\nCHIEF DI,CENTRAL PENINSULA GEN HOSP,Y4000\npublic relations,Sansom Consulting,Y4000\nPRESDENT & CEO,XCEL ENERGY,E1620\nTEACHER!,OAKDALE JOINT UNIFIED SCHOOL DISTRICT,Y4000\nGRANTS MGMT SPECIALI,DEPT OF COMMERCE,X3000\nphilanthropy,The San Francisco Foundation,Z9500\nTOMOKO CORPORATION,,Y4000\nATTORNEY,KUDMAN TRACHTEN ALOELLP,Y4000\nWALLS REGIONAL HOSPITAL,,H2100\nVice Chairman,DTE Energy,E1620\nEQUITY SALESMAN,NEEDHAM & COMPANY,Y4000\nOUR LADY OF MT LEBANON,,Y4000\nPoet,Self,J9000\nOwner,The Hamilton-Ryker Company,Y4000\nPEDIATRICIAN,PEDIATRIC CARE CENTER,H1130\nPUBLIC,PHILLIPS INTERNATIONAL INC.,C1100\nFIFTH THIRD BANK,,E1210\nSMALL BUSINESS OWNER,SPILLMAN TECHNOLOGIES INC.,J1100\nVice President Provi,\"The Wellpoint Companies, Inc.\",H3700\nFARMER,JMS FARMS,A1000\nSelf,Lobbyist,K1200\nSMART GROWTH & TRANSPORTATION,MOBILITY LAB,Y4000\nElectrical Contracto,Hi-Tech Electric Company Inc,B3200\nHALD AND DORR,,K1000\nCPA,\"McCauley, Nicolas & Company\",F5100\nEXECUTIVE,ADVANCE FOODS COMPANY,G2300\nVICE PRESIDENT,MODERA CORPORATION,Y4000\nPHYSICIAN,\"EVERYWOMAN'S HEALTH\",Y4000\nCHIE,\"CTS STRATEGIC INVESTMENTS, LLC\",Y4000\nINVESTMENTS,PATRIOT EXPLORATION LLC,Y4000\nATTORNEY,\"COSSICH, SUMICH, PARSIOLA\",K1000\nMORTGAGE BANKER,FREDDY ZAMORA VARGAS,Y4000\nOwner,Justiss Oil Company,E1100\nPhysicist/Professor,University of Arizona,H5100\nCFA,SELF,Y4000\nSuperintendant,Indianola Public School,X3500\nSocial Worker,Programs for the Homeless,Y4000\nC A MOFFIE INC,,Y4000\nSUMMER WIND FARM,,Y4000\nLAMPSON CO,,B6000\nOwner,Joe Rodgers and Associates,Y4000\nEconomist,Private Sector Initiatives Fou,Y4000\nNEW APPLE,,Y4000\nmanager,Broward Bolt,Y4000\nSALES REP.,PRINCE AGRI PRODUCTS INC.,A3300\nREAL ESTATE AGENT,CKM ASSOCIATES,F4000\nEconomist,Washington Inst. Near East Pol,Y4000\nSIMPSON THATCHER & BARTLETT,,Y4000\nMoney Manager,Dover Management,F2100\nLOBBYIST,TK BENTLER PUBLIC AFFAIRS,Y4000\nINFORMATION REQUESTE,INFORMATION REQUESTED PER BEST EFFORTS,A4100\nEXECUTI,POLLARD LUMBER COMPANY INC.,B5200\nSEAN STEARNS,,Y4000\nSUPERVISOR,GEORGIA POWER COMPANY,E1600\nBoard Member,Weyerhaeuser Company,A5000\nExecutive Director,Wisconsin Housing Alliance,B2400\nENGINEE,LOGICAL CHOICE TECHNOLOGIES,Y4000\nLOAN ASSET MANAGER,LNR PARTNERS,F4000\nMEDIA SERVIC,GRANGE INSURANCE GROUP,F3100\nCEO,KERRY CAPITAL ADVISORS INC,F2100\nExecutive,HJ Kalikow,F4500\nExecutive,SGT Inc,D2000\nATTORNEY,FBHH/ATTORNEY,Y4000\nMAHONEY ADAMS ET AL,,K1000\nTHE GEORGE BALANCHINE TRUST,,Y4000\nDOCTOR,RENAL ASSOCIATES,Y4000\nDIRECTOR,\"XPEDX DIV. OF INT'L PAPER\",Y4000\nCONSULTANT,PRTM,G5270\n\"RRS MANAGEMENT, INC\",,Y4000\nPetroleum Engineer,\"Blach Stone Minerals Company, LP\",Y4000\nFINANCIAL,JACOBS LEVY,Y4000\nBUSINESS OWNER,VINDEMIA INC.,G0000\nJAY JOHNSON CONSTRUCTION CO,,B1500\nSELF-EMPLOYED,DELAPA PROPERTIES,F4000\nEXECUTIVE,CONTINENTAL HOSTS LTD.,Y4000\nREAL ESTATE BROKER,LEFLORE REAL ESTATE,Z9000\nManager,\"Mid South Transport, Inc.\",Y4000\nPRESIDENT,VILLARI FOOD GROUP,Y4000\nINVESTMENTS,NAEGELE COMMUNICATIONS,J1100\nGREENTREE INC,,Y4000\nJournalist,Bestofmedia LLC,Y4000\nAIRBORNE FREIGHT,,T1500\nVp Of Operations,Frank Parsons,Y4000\nHOUSER-MILLARD FUNERAL SERVICE,,G5400\nRet.,Warren Co.,Y4000\nPURCHASING,AMERICAN COAL CO.,E1210\nPRESIDENT,ENVISION HEALTHCARE,Y4000\nATTORNEY SEAR,PRESCOTT LEGAL SEARCH,K1000\nCEO,\"Premium Standard Farms, Inc.\",A3000\nExecutive,OK Osteopathic Assoc,Y4000\nPETERS REDITT WILLOUGHBY,,Y4000\nOwner,\"Casper's Company\",G2900\nOWNER,JOHN DEAGLE D.O.  P. A,Y4000\nAttorney,Helms Mulliss & Wicker PLLC,K1000\nCHRISTIANSEN & JACKAIN,,Y4000\nATTORNEY,TATUSKO KENNEDY P.C.,Y4000\nEXTERNAL WHOLESA,JOHN HANCOCK FUNDS,F0000\nEMERGENCY CARE,,H1100\nPresident,Spain Oil,E1100\nCEO Lifelink Foundation,\"Lifelink Foundation,Inc\",H1100\nRETIRED CONSULTANT,SELF EMPLOYED,G0000\nEXECUTIVE,WAUSAU FINANCIAL SYSTEMS,Y4000\nBALMAC INC,,F4100\nHealth System Manager,Amgen,H4300\nCONVENIENT STORE CLE,SHORT STOP ENTERPRISES,Y4000\nProfessor,U Of Il,H5100\nRATHMELL INVESTMENTS,,Y4000\nExec. V. P.,NYSE Group,F2400\nCOUCH & PHILLIPI INC.,,G5210\nDIRECTOR,DELTA DENTAL OF CALIFORNIA,F3200\nWOOD PRODUCTS INDUST,,Y4000\nFire Fighter / EMS,Fresno Fire Dept,L1400\nDIAGNOSTIC RADIOLOGIST,MEDICAL X-RAY CONSULTANTS/DIAGNOSTI,H1130\nOWNER,S. DANOU ENTERPRISES INC.,G2400\nattorney,miller shea p.c.,K1000\nReal Estate Develope,The Brandon Company,Y4000\nHealthcare Executive,Hospice of the Valley,H3100\nDUDLEY & CO,,F2100\nEXECUTIVE DI,J&J WORLDWIDE HEADQTRS,H4000\nPresident/CEO,Kansas Pipeline,E1120\nPRESIDENT,NWB SVC.,Y4000\nNATIONAL CHURCH SUPPLY CO INC,,X7000\nUNEMPLOYED,VETERAN DAV,Y4000\nODWALLA INC,,Y4000\nStaff Asecretary,Southwestern University,H5100\nLAWYER,STONG-GARNER-BAUER,Z9500\nSENIOR SYSTEMS ANALYST,LOCKHEED MARTIN CORPORATION/SENIOR,D2000\nSr. VP  Trade Associ,Connecticut Bankers Associatio,F1100\nPRESIDENT,E. SAMBOL CORPORATION,E5000\nATTORNEY,RUSSELL & LAZARUS APC,Y4000\nPresident/CEO,Texas Credit Union League,F1300\nATTORNEY,SACKS LEGAL SEARCH,G5250\nCENTRAL ME POWER CO,,Y4000\nSOCIAL WORKER,,F2200\nOWNER,FISHER SECURITIES,Y4000\nPrincipal,\"Landair Transport, Inc.\",Y4000\nJBB WORLDWIDE INC,,G2820\nBLOUNT HOLDINGS,,Y4000\nNurserywoman,Midwest Trading Co.,A8000\nEVERETT CARDIOLOGY,,H1130\nPresident,CFK Agency,Y4000\nExecutive,Diamond Investments,Y4000\nAccountant,Smurfit-stone,J1200\nURBAN PLANNING,SCAG,Y4000\nOWNER,FITLIFE GYM,Y4000\nVICE PRESIDENT,APPLIED SYSTEMS INC,Y4000\nMARKET RESEARCH,GENZYME CORPORATION,H4500\nManager of State Legislation and Polic,American Wind Energy Association,E1500\nAttorney,Arkansas Blue Cross and Blue Shield,F3200\nPRESIDENT,LINTILHAC FOUNDATION,X4100\nMARK MCCONNEL & ASSOCIATES,,B4200\nSVP Econ & Strategic,Federal Home Loan Mortgage Corporation,F4600\nGREENWICH CAPITAL MARKETS,,F2100\nPresident,3 Communications Corporation,C5110\nVice Chairman,Citizens First Bank,F1000\nINSURANCE,ISMIE MUTUAL INSURANCE COMPANY,F3100\nLINDA PELL & ASSOC,,Y4000\nSr Mgr,Idaho Power co,E1600\nAIR TRANSPORT ASSOCIATION,,T1100\nPHYSICIST,BECHTEL,E1700\nCONSULTANT,THE LAWMEDIA GROUP,Y4000\nAFRIDI ASSOCIATES,,Y4000\nMERIDIAN INTL GROUP INC,,Y4000\nCEO,\"HOST COMMITTEE, INC.\",Y4000\nATTORN,CARLOS WILLARD FLANAGAN P.A.,K1000\nJOHN J BARROW ATTORNEY AT LAW,,K1000\nEducation,Hastings College of Law,H5170\nCHAIRMAN EMERITUS,\"THE CENTER FOR AMERICAN AND INTERNAT'L\",Y4000\nTHIDKO PROPULSION,,Y4000\nMAINTENANCE MANAGER,WALKER DIE CASTING,M5000\nVice President,Venetian Hotel,G6500\nFRANKLIN COUNTY AUDITOR,STATE OF OHIO,X3000\nPRESIDENT,AROUND THE CLOCK HOME CARE/PRESIDEN,Y4000\nSIMON EYE CARE ASSO,,H1120\nANESTH SPECIALISTS OF BETHLEHEM,,H1130\nTHE ANSEL ADAMS PUBLISHING RIGHTS T,,C1100\nMD,he Permanente Medical Group,Y4000\nINFO REQUESTED,DUDERSTADT FOUNDATION CO,Y4000\nCONSTRUCTION,\"TEM, INC\",Y4000\nATTORNEY/PARTNER,\"CLAYMAN & ROSENBERG, LLP\",K1000\nCEO,The Bulfinch Company,Y4000\nAttorney,Dinse Knapp & McAndrew,K1000\nDentist,Gentle Dental Care,Y4000\nCHIROPRACTIC ASSISTANT,SUMMERFIELD FAMILY CHIROPRACTIC,H1500\n\"LEWIS, ECKERT, ROB & CO\",,G5270\nWEST PHILADELPHIA BRONZE CORPORATIO,,Y4000\nBOARD CHAIR,NEW HOPE ENTERPRISES,Y4000\nLawyer,Womble Carlyle Sandridge,K1000\nPROGRA OFFICER,RESOURCES LAW GROUP,K1000\nM. D.,Kalmansohnn- Schiff M.d. Inc.,H1100\nP,CENTRAL BREVARD ANESTHESIOLOGISTS,H1130\nPOLITICAL SCIENTIST,KETTERING FOUNDATION,Y4000\nPROPOSAL WRITER,MANTECH CORPORATION,Z9500\nVICE PRESIDENT RIG OPERATIONS,SIGNAL HILL PETROLEUM INC.,E1000\nS&C ELECTRIC CO,,B3200\nINSRUANCE,MET LIFE,F3300\nOFFICE MANAGER,FED GOVT,X3000\nMANAGER,ASSOCIATED SUPERMARKET,Y4000\nDean A & S,Youngstown State University,J7400\nPRESIDENT,A.B.C. PAVING,B3000\nMINER,BENNOC INC.,E1210\nSECRETARY,CAGO INC.,E1120\nRIO BRAVO PIECE GOODS,,Y4000\nCEO,HEALTHEZ,H0000\nRETIRED- ATTORNEY,,X1200\nINVESTOR,SEVEN RIVERS,A1000\nMechanical Designer,Northrop Grumman,D5000\nPRESIDENT,INTERTABEL INC.,Y4000\nMEDICAL BUSINESSMAN,SELF-EMPLOYED,G0000\nTOURISM-HOSPITALITY,RETIRED,X1200\nHANDYMAN,CITY PROPERTY MGT CO. INC.,F4500\nPOLSINELLI SHALTON & WELTE,,Y4000\nFINANCIAL PLANN,FSC SECURITIES CORP,F2100\nSecurity,Qualcomm,C4300\nAttorney,Nutter McClellan,K1000\nPastor,Boniah Temple,X7000\nSr. Manager/Corp Dev,\"Sun Microsystems, Inc.\",J1200\nPhysician,Carilian Health Syst,Y4000\nPRESIDENT,Q - C. INDUSTRIES INC.,Y4000\nV P RETIRED,,X1200\nChairman & CEO,Fleishman-Hillard Inc.,G5210\nInformation Requested,Tenet Hahnemann Hospital,H2100\nElectronic Engineer,Naval Surface Warfare Center,X5000\nOWNER,MITCHELL RESEARCH,G5280\nOPHTHALMOLOGIST,\"THE CLARK EYE CLINIC, P C.\",H1120\nChief Executive Offi,Radstar Llc,Y4000\nSecretary/Treasurer,Utility Workers Union,LE200\nCEO,ST. JUDE MEDICAL CENTER,H4100\nAPPLICATIONS ANALYST,UNC-CH/APPLICATIONS ANALYST,H5100\n\"JOHN'S GRILL\",,Y4000\nCALHOUN ENTERPRISES,,Y4000\nPRES,GEORGE WATERS CONSULTING SERVI,Y4000\nTRIPOAK,,Y4000\nFRANK BERNSTEIN CONAWAY & GOLDMAN,,J5100\nFIELD & ROOS LLP,,K1000\nOWNER,TRANE CORP OF TAMPA,J5100\nFINANCE MANAGER,ARROWHEAD LEXUS,T2310\nCONSULTANT,JACQUES ABATTO,Z9500\nENGINEER,MURRAY ENERGY CORP/ENGINEER,E1210\nWYOMING STATE LEGISLATURE,,Z9000\nREAL ESTATE,METRO PLAINS,F4000\nVASC,UNIVERSITY OF MISSISSIPPI MEDI,H5100\nBUILDER/ REALTOR / D,SELF-EMPLOYED,B1500\nAttorney,\"Engelhart & Greenwood, LLP\",K1000\nPHYSICIAN,NEVYAS EYE CARE,H1120\nCASHIER,BOUNTYLAND QUICK STOP,Y4000\nDIRECTOR OF,COLUMBIA UNION COLLEGE,H5100\nBIRMINGHAM REGIONAL PLANNING COMMIS,,X3000\nTRAFFIC SIGNALS INC,,Y4000\nDIRECTOR,VIRGINIA SOCIETY FO RHUMAN LIFE,Y4000\nOwner,Stonegate Pools,Y4000\nLegislative Director,California State Assembly,X3000\nPRESID,AIR PARTS OF LOCK HOMES INC.,B2000\nCORP RL E,UNITED PARCEL SERVICE INC,T7100\nconsultant,MEA-MFT,Z9500\nPhysician,Nichd,Y4000\nPresident,Northgate Chrysler Dodge Jeep,T2300\nREGIONAL VICE PRESIDENT,AEGAN/REGIONAL VICE PRESIDENT,Y4000\nDEVELOPMENT DIR,SPENCER ENTERPRISES,B2000\nBusiness Owner,Dw Sivers Company,Y4000\nCOLLEGE PROFESSOR,SOUTHWESTERN UNIVERSITY,H5100\nCEO,BLACKSTONE HOME CARE,F2600\nExecutive Director,ND Grain Growers Association,Y4000\nEQUITABLE LIFE INSURANCE COMPANY,,F3300\nREALTOR,CPA,F5100\nPHYSICIAN,SHARP-REES-STEALY MED.GR.,Y4000\nATTORNEY,\"S. JEROME MANDEL, PC\",Y4000\nPresident,California List,J7150\nREAL ESTATE,195 BUSINESS PARKS LLC,F4000\nVice President,\"Phillips Machine Service, Inc.\",E1200\nN/A/HOME MAKER,,T1400\nPUBLIC RELATIONS,ACCESSM3,Y4000\nTELEVISION PRODU,IMAGINE TELEVISION,J1200\nElectric Store Owner,Self-Employed,Y4000\nattorney,north shore-lij health system,Y4000\nPLANNER,\"NWADE COUNTY,CA\",Y4000\nTRUSTEE,VILLAGE OF LIBERTYVILLE,X3000\nVICE PRESIDENT,CAPMARK FINANCE,F4600\nBAE AUTOMATED SYSTEMS,,M2300\nBusiness Executive,\"Ihs, Inc\",C5130\nWARTRICK CHABER ET AL,,K1000\nALL AMERICAN YOGURT CO IN,,G2100\nCSC,,E1110\nBRIGHT HOUSE NETWORK - FLORIDA GROU,,C2200\nHomekeeper,Homekeeper,Y4000\nEMD,Pfizer,H4300\npresident,\"Cappelli Enterprises, Inc.\",F4100\nCHAIRMAN OF T,CALLIDUS SOFTWARE INC,C5120\nDIRECTOR,ELJAY CORPORATION,Y4000\nBUSINESS OWNER,VICTORY ENTERPISES,Y4000\nManaging Partner,FA Technology Ventures,J1200\nCEO &,INTERNATIONAL SPEEDWAY CORP.,G6400\nMA,THE CONTINENTAL PRODUCTS COMPANY,Y4000\nWireless Generation,,C4300\nINVESTMENT M,STERLING PAYOT COMPANY,F2100\nATTORNEY,DAVIDSON LAW FIRM,K1000\nANDREW ST GERMAIN,ASTELLAS,Y4000\nExecutive,Peoples Bank,F1000\nFARMERS MUTUAL INS,,F3100\nCHAS A MANAGANARO,,Y4000\nnot employed,none,F4000\nJUDGE,SELF-EMPLOYED/JUDGE,X3200\nFinancial Consulting,Steven Buss Consulting Inc,Y4000\nMINERAL MANAGER,SELF-EMPLOYED,Y4000\nDAVIS DUNN ADLER & SCHNEIDER,,J5100\nArt Advisor,Citigroup,F1100\nTEXTILE MANUFACTURER,,M8000\nFire Fighter / EMS,Boston Fire Dept,L1400\nProfessor,\"St. John's University School of La\",H5100\n\"President, US Pharma Dist\",McKesson Corporation,H4400\nWILLIAM MORRIS AGENCY INC.,,C2400\nSMALL BUSINESS OWNER,LARRY G. CUSHING & SONS INC.,Y4000\nPRESIDENT,OIL TRADING CONS.,Y4000\nTEACHER,PSCC,Y4000\nREAL ESTATE,GODDARD INVESTMENT GROUP,F7000\nSALOMON BROTHERS INC,,K2000\nGovernment Affairs R,Monsanto,A4100\nAttorney,Jenner & Block LLP,J9000\nBROKER,SEDWICK INSURANCE,F3100\nMember,Dragonmead,Y4000\nLAWYER,KIRLAND AND ELLIS,Z9500\nEXECUTIVE,NMT CORP.,C5000\nDOCTOR,DR. MARK WEIGHT MD,H1100\n\"VP, MATERIALS MANAGEMENT\",CAROLINAS HEALTHCARE SYSTEM,H2100\nATTORNEY,SHEFFER AND SHEFFER,K1000\nGARCIA-MENENDEZ ENT,,J5200\nDIRECTOR OF,HILLENBRAND INDUSTRIES,H4100\nCEO,AUTO-GAS SYSTEMS INC.,Y4000\nHOME FANTASY,,Y4000\nFarmer,Mobley Plant Co,A1000\nJOHN BUNNING TRANSFER CO INC,,Y4000\nCreative Director,Gsd&M Advertising,G5210\nProperty Developer,Braddock & Logan L P,Y4000\nCLERK OF COURT,VOTERS OF CHARLOTTESVILLE,Z9500\nOwner,Gold Coast Motors,Y4000\nSecurities/commoditi,Self,Z9500\nPHILIPS BROTHERS ELECTRIC CONSTRUCT,,B3200\nBEST OF BOSTON,,Y4000\nCustomer retention manager,Synagro technolgies,Y4000\nConsultant,Shainin LLC,Z9500\nEXCAUATION,,Y4000\nGENERAL,CONCEPT CONSTRUCTION CORP.,B1500\nPublisher,Baltimore Jewish Times,C1100\nconsultant,Abelia Corp.,Y4000\nCEO,Transaction Financial,F0000\nDISTRICT RETAIL EXECUTIVE,\"COMPASS BANCSHARES, INC.\",F1100\nC00348524,,E1210\nEXECUTIVE,SHADOW BEVERAGES,Y4000\nCONSU,\"KEEPING AMERICA'S PROMISE PAC\",Y4000\nWESTERN TRANSPORTATION LLC,,Y4000\nPRESIDENT,JACK LAWTON COS.,JE300\nPRINCIPAL SCIENTIST,ADOBE SYSTEMS,C5120\nDealer,Allen Mello Dodge Inc,T2300\nEdit,Time Warner,C2000\nPRESIDENT,UNITED TRADE INTERNATIONAL LTD,Y4000\nPHYSICIAN,UNIVERSITY OF PENNSYLVANI,H5100\nPartner,\"L&GL, LLC\",X4110\nOil & Gas Business,Self-Employed,E1100\nOwner,Galley at the Marina,Y4000\nATTORNEY,LATHAM AND WATKINS L.L.P.,K1000\nAUTO DEALER,MARTIN FORD,Y4000\nINTERNATIONAL REPRESENTITIVE,INTERNATIONAL UAW,LM150\nPRESIDENT,PCFS FINANCIAL SERVICES,F4600\nOwner,Subu LLC,Y4000\nInvestor,\"Copernicus Learning Fund, LP\",Y4000\nBIO VENTURES,,Y4000\nSMALL BUSINESS OWNER,\"ACTIVE CLEANING SERVICE'S INC.\",G5500\nLawyer,Neill Griffin Et Al,K1000\nGERSHENSON DEV CO,,J1200\nNAULAN INC,,Y4000\nROXWOOD CORPORATION,,Y4000\nASST VICE PR,BELL SOUTH CORPORATION,C4100\nAttorney,Bank Of New York,F1100\nAssociation Director,\"American Trucking Associations, Inc.\",T3100\nHARPER VAN SCOIK,,Y4000\nQUALITY MANAGER,L-3 COMMUNICATIONS,D3000\nEnvironmental Scientist,U S Epa,X3000\nSOSA AND ASSOC,,Y4000\nattorney,Anapol Schwartz,Z9500\nBOSTON TECHNOLOGY,,X4110\nCARD MONROE CORPORATION,MANAGEMENT,Y4000\nGALISON,,C1100\nEvart Producer,Self Employed,Y4000\nVP,REPUBLIC BEVERAGE CO.,G2850\nInformation Requeste,Information Requested,C0000\nManager,Colonial Cleaning Services,Y4000\nVERIZON COMMUNICATIONS,,C4300\nRECREATIONAL HOLDINGS,,Y4000\nIT,CITY OF DELAND,X3000\nSENIOR VICE PRESIDENT,PECO ENERGY,E1600\nINSURA,ASSOCIATED INSURANCE SERVICE,F3100\nCo Chairman,William E. Simons & Sons,F2100\nOwner,Morrisette Paper Co.,A5200\nPresident & CEO,\"Integrated Systems Solutions, Inc\",K2000\n\"TECHNICAL SALES - MARKETING, USAF '06\",SELF-EMPLOYED,G0000\nPRESIDENT,DALLAS SPRING,Y4000\nPROF,EINSTEIN COLL MED,Y4000\nRETIRED,-,C5120\n\"VP, TELEMATICS\",TCS,Y4000\nLawyer/Executive,Imagem USA,Y4000\nPhysician,\"Texas Children's Pediatrics Associatio\",H1130\nVERIZON SW,,C4100\nCUSTOMER SERVICE REP.,TARGET,G4300\nSoftware,Lanco Global,Y4000\nMover,Planes Incorporated,T7000\nPRESIDENT,CARDAR INCORPORATED,G0000\nPRESIDENT,LANTECH INC.,M2300\nREGISTERED NURSE,SF GEN HOSP,Y4000\nAgriculture,Pacific Triple E Ltd,Y4000\nPresident/Writer,Bludgeon Inc.,J1200\nLABORER,RAWSON CONTROL SYSTEM,Y4000\nAdult Education Counselor,Project Hope,X4000\n\"JACOBS, WALKES, WRIGHT & BACHE\",,K1000\nWALUKIEWICZ-ORAVITZ FUNERAL HOME,,G5400\nNOT FOR PROFIT FOUNDATION,SELF,J7400\nPHOENIX TV STATION,,C2100\nCEO,SKYE MARITIME,Y4000\nCHARAN INDUSTRIES,,Y4000\nCivil Engineer,The Schemmer Associates Inc,Y4000\nINVES,ESTATE OF JOHN W. ROLLINS SR.,F7000\nexec,Bondholder Communication Group,Y4000\nCONTRA,BARNHILL CONTRACTING COMPANY,B1000\nCROFTON & SONS INC,,Y4000\nAON CONSULTANTS,,G5250\nCHAIRMA,NORTH AMERICA TRADE SCHOOLS,Y4000\nLicensed Builder and General Contracto,\"Drummond Island Yacht Haven, Inc\",T8300\nN/A,RACHER,J1100\nGENERAL MANAGER,FROSCH TRAVEL,T9400\nInvestment Manager,Hudson Fairfax Group,Y4000\nRIVERDALE CHEMICAL CO,,A4100\nDoctor,Somerset Orthopedics Inc.,H1130\nCost Accounttant,RSIS Inc,Y4000\nHERBERT S NEWMAN & PARTNERS,,Y4000\nPENSION CONSU,\"BENEFIT DYNAMICS, INC\",F5500\nReal Estate,NTCIC,F4000\nPARTNER,JONES OSTEEN JONES,E1100\nFounder,\"Fulcrum Ventures, LLC\",Y4000\nTRAVEL AGENCY OWNER,TL/SUNCOAST TRAVEL,Z9500\nEXECUTIVE DIRECTOR,OREGON BALLET THEATER/EXECUTIVE DIR,C2900\nInsurance,PLASTRIDGE AGENCY,Y4000\nDeveloper,Oriole Homes,B2000\nSECRETARY OF REVENUE,COMMONWEALTH OF PA,X3000\nDIRECTOR OF OPERATIONS,\"CULVER FRANCHISING SYSTEM, INC.\",G2900\nDOUGLAS REECE,,Y4000\nSELF-EMPLOYED PHYSICIAN,EVERGREEN HEALTHCARE P. C.,H3000\nPHYSICIAN,ATLANTA PLASTIC SURGERY,H1130\nReal Estate Investor,Hosuing Capital Advisors,F2100\nCHAIRMAN,CORDISH COMPANY,J5100\nCPA,YEAGER & BOYD,F5100\nARCHITECT,ACAI ASSOCIATES INC.,B4200\nTAC COMMUNICATIONS PARTNERS,,Y4000\nRECORDING INDUSTRY ASSOCI OF AMERIC,,C2600\nSAIPAN GARMENT MANUFACTURING ASSOC.,,Y4000\nDENTIST,THORSHEIM & CERASO,H1400\nCEO,LIFENET,Y4000\nPRESIDENT,\"RPM INTERNATIONAL, INC.\",J1100\nMANAGER,ACTAGRO,Y4000\nLAN,\"Michael Bander, PA\",J7400\nEducator,East Harlem School,Y4000\nRetired/Homemaker,None,J7400\nUNIVERSITY OF NORTH CAROLINA LAW SC,,H5170\nCoombes,\"Agilent Technologies, Inc.\",J1200\nBLACKBIRD TECHNOLOGIES IN,,C5130\nInvestment Banker,Century Capital Associates,Y4000\nBROKER,BANK OF AMERICA,F1100\nATTORNEY,WILDMAN HARROLD,K1000\nOWNER,\"CAMROSE  KROSS, LLC\",Y4000\nHome Improvement Contractor,Kelemer Construction,B1500\nF J SCIAME CONSTRUCTION CO INC,,B1500\nPG CORPORATION,,Y4000\nSOUTHERN WINE & SPIRITS OF HAWAII,,G2800\nAAHP/PRESIDENT/CEO,,F3200\nDICK OLSON MOTORS INC,,T2300\nEXECUTIVE,ST. LOUIS CARDINALS,G6400\nSTATE SENATOR,STATE OF WASHINGTON,Z9000\nAVLON INDUSTRIES,,Y4000\ninvestment advisor,Shufro Rose LLC,F2100\nAttorney,hean@voicenet.com,Z9500\nREAL ESTATE DEVELOPMENT,FALCON GROUP,Y4000\nSENIOR VICE-PRESIDENT,SELECT MEDICAL,H2100\nLAWYER,YOUNG AND PERL,T1600\nMAKE-A-WISH FOUND./PRESIDENT/CEO,,X4100\nDirector,University of Arizona,H5100\nPresident,Farm Development Co,A0000\nVP Purch,Union Pacific RR,T5100\nTeacher,Center Line Sch,Y4000\nTechnology Section M,GTECH Corp.,G6500\nAgriculture manageme,Univeral capital corp/Silverado premiu,F0000\nPRESIDENT,SEELEY MEDICAL,H3100\nCOMMUNICATIONS RESEARCH,SELF-EMPLOYED,G0000\nUTU,RAILROAD UNION REP,Y4000\nEXECUTIV,ASHEVILLE ELECTRIC COMPANY,B3200\nPARTNER,ELOVICH & ADELL,Y4000\nSHAW CLAYTON CORPORATION,,Y4000\nRETAIL,CHEFKNIVESTOGO,Y4000\nU. S. CANE SUGAR REFINERS,PRESIDENT,A1200\nSPRADLING & SCOGGINS,,Y4000\nADMINISTRATION,AMERICAN UNIVERSITY,H5100\nREQUESTED,Solomont Bailis Ventures,J7400\nVINTNER,JORDAN VINEYARDS & WINERY,G2820\nOWNER,SENIOR SPIRIT OF ROSELLE PARK,Y4000\nInvestor,Saber Partners Llc,G5200\nRIM,,Y4000\nPresident,Bank of Newington,F1100\nGOHN HANKEY & STICHEL LLP,,K1000\nVP Information Techn,EXPERIAN,F5200\nHOMEMAKER,Information Requested,J5100\n\"VP, BUSINESS DEVELOPMENT\",MEDTOUCH,Y4000\nVice President,The Duberstein Group,Z9500\nINTEGRATED HOUSE-KEEPING SYSTEMS,,Y4000\nSOUTHEAST REGION SERVICE CORP,,Y4000\nEXPORTS,CONSULTANT-IMPORTS,G5200\nExecutive Vice President and Treasurer,Western World Insurance Group,F3100\nPHYSICIA,GETTYSBURG SURGICAL ASSOC.,H1130\nVP- Southern California Edison,Retired,X1200\nSPAGNUOLO AND ASSOCIATES,,B4400\nSr. VP,Newspaper Assoc. of America,C1100\natty,Perennial Strategy Group,K2000\nPHYSICIAN,SURAT GILL CORP.,Y4000\nMANION & KROMHOLZ,,Y4000\nPRESIDENT,TRANSPORTATION EQUIP. SUPPLY,T0000\nPHYSIC,SOUTH BEACH PREV. CARDIOLOGY,J5100\nOIL & GAS,FEATHERSTONE DEVELOPMENT/OIL & GAS,F4000\nART ADVISOR,SELF,J7400\nCDC Lender,Bay Colony Development Corp,G1200\nS C D C,,Y4000\nCEO ENERGY COMP,SOUTHWEST OPERATING,E1000\nRN,UNIVERSITY OF MIAMI,H1100\nATTORNEY,THORNTON WILLIAMS & ASSOC.,K1000\nOWNER,E20 VENDING COMPANY,G4850\nPRESIDE,INFRASTRUCTURE INCORPORATED,Y4000\nENGI,SUNNYSIDE TECHNICAL CONSULTING,Y4000\nTANNER MAINSTAIN & HOFFER,,J7400\nMEDALLION FINANCIAL,,F0000\nAttorney,Graybeal Jackson Haley LLP,K1000\nSELF EM,PRESIDENT FAMILY FOUNDATION,Y4000\nLT. COL. RET. USAF,SELF-EMPLOYED,Y4000\nEmergency Physician,Emergency Care Inc,H1100\nCHAIRMAN & CEO,ALTIMAX VENTURE CAPITAL,J6200\nMOTHER AND WIFE AND ATTORNEY,MCGIVAREN,Y4000\nBuilder Member Single-Family Spec/Trac,Lambie-Geer Homes,B2000\nstock trader,\"Blue Trading, LLC\",J5100\nLAS VEGAS CONVENTION & VISITORS AUT,,E1140\nSHIRLEY CHUCHIAN,,Y4000\nPresident,Distinct Discovery Homes Inc.,B2000\nVICE PRESIDENT,MOBRO MARINE,Y4000\nDirector of Information Systems,VFCorporation,M3100\nCorp Officer,\"Retired Officer, USA\",X1200\nINSURANCE BROKER,KORNREICH,F3100\nPHYSICIAN,SOUTHWESTERN NEUROSURGERY,H1130\nCHAIRMAN,EMPIRE OFFICE INC./CHAIRMAN,M4100\nCRANE MANUFACTURING,Q.M.C.,Y4000\nPACZOLT FINANCIAL GROUP,,F0000\nPresident,Friendship House,Y4000\nDesigner,BBD INC,Y4000\nPartner,\"Larson, Stewart, Myrick, & Link, LLC\",K2000\nCHAIRMAN,\"LIFEPOINT HOSPITALS, INC.\",H2100\nContractor,Self,J7400\nMORTGAGE INVESTMENT LENDING ASSN,,F4600\nNURSE,CATHOLIC MEDICAL CENTER,H2100\nPresident & CEO,Hoar Construction,B1500\nSECRETARY/TREASURER,IU OF BRICKLAYERS & ALLIED CRAFTWOR,LB100\nExecutive,Palumbo & Cerrell Inc.,K2000\nINVESTMENT BANKER,SHIPLEY RAIDY CAPITAL,F2100\nCHIEF OPERATING OFFICER,ACS,C5130\nChairman,L.R. Nelson Corp.,M2300\nPHYSICIAN,JACOBSON,Z9500\nMARKETING,VENTANA,Y4000\nPHYSICIAN,MAGRUDER EYE INSTITUTE,Y4000\nPEANUT PROCESSOR,MCCLESKEY MILLS,Y4000\nV. P/ G. M.,LANCASTER NASSE,Y4000\nManaging Director/Pa,\"Goldman (The) Sachs Group, Inc.\",F2100\nAttorney,Swiss Re America Hol,Y4000\nHydrogeologist,Arcadis,Y4000\nKEVIN ROGERS & ASSOC,,Y4000\nSTAPLETON SPENCE PACKAGE,,A1400\nPresident,Rockford Capital Leasing,Y4000\nPRODUCTION MANGER,BP,E1110\nJUDGE,CIRCUT COURT OF COOK,X3200\nINVESTMENT ADVISOR,\"SATELLITE ASSET MANAGEMENT, L.P.\",F2100\nRETIRED,HC PRICE,X1200\nAttorney,\"Butler, Wooten, Overby, & Fryhofer\",K1100\nCLASSROOM TEACHER,WHITTIER UNION HIGH,L1300\nCONSULTANT,,H1700\nPresident & CEO,TELACU,F0000\nVICE PRESIDENT,NAVIGATORS GLOBAL LLC,K2000\nPRINCIPAL,\"CORRIGAN INVESTMENTS, INC.\",F7000\nRJ ARCHER PETROLEUM,,E1100\nTRADER,JANET MONTGOMERY SCOTT,Y4000\nSELF EMPLOYED,EXXONMOBIL CORP,E1110\nPrincipal Owner,Healthy Planet LLC,J1200\nPENSION ADVISOR,,Y4000\nCEO,Vadium Technology Inc.,Y4000\nConsultant,Devere Anderson Enterprises,Y4000\nPRESID,INNOVATIVE PRODUCTIVITY INC.,Y4000\nRetired,Dupont,M1000\nPHYSIC,ST. VINCENT CHARITY HOSPITAL,H2100\n\"PRESIDENT, BEVERAGE &\",\"AUCTIVE, INC.\",Z9500\nROCHESTER REGIONAL HEALTHCARE,,H2100\nSPRINGLAKE COUNTRY CLUB,,Y4000\nProject Director,Walt Disney Imagineering,T9300\n\"HARRIS, BEACH & WILCOX\",,K1000\nPIONEER ENGINEERING,,B4400\nOwner,Global Strategic Edge,Y4000\nDEVELOPER,SMITHFIELD CONSTRUCTION GROUP INC.,B1500\nJ C JONES REALTY,,F4200\nCITY ARTS & LECTURES,,Y4000\n\"ACTION FOR CHILDREN'S TELEVISION\",,J7700\nMOUNT SINAL HOSPITAL,,H2100\nDirector,\"St. Mary's Occupational Medicine\",H0000\nInsurance Consultant,Insurance Management Services,F3100\nHERITAGE MARKETING CORP,,G5280\nWIRELESS INC,,C4100\nDIRECTOR,UNITED AUTO WORKERS,Z9500\n\"CAFE PASQUAL'S\",,G2900\nROBINSON PHILLIPS & CALCAGNIE,,K1000\nCNM,SHANGHAI UNITED FAMILY HOSPITAL,H1710\nCIVIL ENGINEER,CLEARWATER CONSULTANTS INC.,Y4000\nEngineer,Loretto Hospital,LB100\nManaging Partner,Gilbert-Stewart Operating,Y4000\nPAYNE SHEA AND ASSOCIATES,,K2000\nVICE PRESIDENT HUMAN RESOURCES,NOVA BIOMEDICAL,Y4000\nRetired,\"Thompson, Galenson and Associates LLC\",Y4000\nFlight Attendant,Self employed,T1100\nAntique Dealer,Antique Linens,Y4000\nEMPLOYMENT SPECIALISTS OF MAINE,,Y4000\nExecutive,COGNEX,M2300\nBOOKKEEPING/ADMINISTRATOR,\"RODOLFO FIERRO-STEVENS, MD\",H1100\nEXECUTIVE,EUTAW CONSTRUCTION CO.,B1500\nREAL ESTATE DEVELOPER,RMJ DEVELOPMENT GROUP/REAL ESTATE D,Y4000\nPhysician,\"Dept Of Veteran's Affairs\",X3000\nPRESIDENT & CEO,NEXTECH MATERIALS LTD.,Y4000\nINVESTMENT,FORUM CAPITAL PARTNERS,F0000\nPRESIDENT,CLARK ENTERPRISES INC.,F4000\nEXECUTIVE,MOBILE ASPHALT,B5100\nMONROE CO COURTHOUSE,,Y4000\nADMINISTRATOR,CLAY SURGERY CENTER,H1130\nJM AND SON ENTERPRISES,,Y4000\nWINE GROWER,THE WINE GROUP,G2820\nATTORNEY,\"PELLEGNNI, SEELEY, RYAN & BLAKESLEY\",K1000\nPRECISION EQUIP INC,,Y4000\nHOSTESS CAKE,,Y4000\nBALL HOMES,,B2000\nProject mgnr,Self employed,G0000\nAssistant General Counsel,Managed Funds Association,F2700\nSALES REPRESENTATIVE,NORTHWEST RIVER SUPPLIES,J7400\nConsultant,Roosevelt Thomas Con & Tr,Y4000\nCEO,Acadian Ambulance Services,H3000\nProfessor Physics (emeritus),University of Wisconsin,H5100\nKNIGHT DAHOOD FIRM,,K1000\nMILLER CANFIELD 7TH FLOOR,,K1000\nDoctor,\"Melvin Gonzalez, MD\",H1100\nCONSULTANT,KPMG PEAT MARWICK LLP,JE300\nCAFETE,PARAMUS CATHOLIC HIGH SCHOOL,H5100\nManaging Director,\"Barclay's Capital\",F2300\nLawyer,Laughlin Falbo Levy,Y4000\nCONSTRUCTION MANAGER,\"VARNEY AGENCY, INC\",F3400\nWEB SITE DEVELOPER,SELF EMPLOYED,C5130\nCRNA,Northfield Hospital,H1710\nDirector,Baraboo National Bank,F1000\nPHYSICI,ORTHOPEDIC SURGEON & CLINIC,H1130\nATTORNEY,\"CONROY, SIMBERG, ET AL\",K1000\nFISHERIES,SELF-EMPLOYED,Y4000\nsecurity firm,paul crespo enterprises,Y4000\nCLINICAL THERAPIST,SELF-EMPLOYED,G0000\nCEO,DISCOVERY COMMUNIC,C2200\nLIFE INSURA,NEW YORK LIFE INSURANCE,F3300\nPRESIDENT,NETWORX ONLINE,Y4000\nDOCTOR,RSZ ORTHOPAEDICS,H1130\nInvestment Advisor,Lyster Watson & Co,F2100\nPresident and CEO,Jones Petroleum Company,E1000\nCONSULTANT,CONCENSUS MAGMT GROUP,H1710\nREALTOR,NP DODGE COMPANY,T2300\nExecutive,Payne Webber,Y4000\nPresident,Unitech Training Academy,Y4000\nBEAN-JONES AGENCY,,Y4000\nASSOCIATION SERVICES SPECIALIST,LEAGUE OF SOUTHEASTERN CREDIT UNIONS,F1300\nREAL ESTATE,JRK ASSET MANAGEMENT,F4000\nretired manager,none,Z9500\nManager,Crystal Windows & Doors,G4500\nMILLION FORD MERC INC,,T2300\nMANAGING DIRECTOR,ALLIANTGROUP,F5300\nRecruiter,Segue Search,G5250\nASSOCIATE PUBL,PROGRESSIVE MAGAZINE,C1100\n,CHRISTENSEN MILLER FINK JACOBS & G,K1000\nCPA,MANSFIELD FDN,Y4000\nHomemaker,dole,G6400\nLawyer,International Resources Group,Y4000\nOwner,Charleston Bagel Co.,Y4000\nATTORNEY,BOYD & JENERETTE P.A.,Y4000\nPresident (New Start Up Company),Cahoo Inno-Tech Inc,Y4000\nJAT CORP,,Y4000\nELLIOTT-LEWIS CORP,,B3400\nPresident,Rsvp Vacations,J1200\nFundraising Consultant,Self-Employed,J7400\nFounder-Chairperson,Champions of Caring,Y4000\nTRADE ASSOCIATION ORESIDENS,NORTH AMERICAN MILLER ASSOC.,Y4000\nGeneral Contractor,Self,G0000\nVP Petroleum Supply and Distribution,\"Thornton's Inc\",E1170\nREAL ESTATE INVESTIG,SELF-EMPLOYED,F4000\nINVESTMENT BANKER,AVETA/INVESTMENT BANKER,J5100\nCEO,The Allen Group,F4100\nLEROY TRAVERS MD RADIOLOGIST S,,H1130\nZIP BEVERAGE INC,,G2850\nMORTGAGA SALES,SUCCESS MORTGAGE PARTNERS,J7120\nLIBRARIA,KING COUNTY LIBRARY SYSTEM,X4200\nLaw Clerk,Information Requested,K1000\nAttorney,Susanne Henley Esq Attorney at law,K1000\nATTORNEY,MILLER & WELLS PLLC,K1000\nVISUAL EFFECTS SUPER,DREAMWORKS SKG,C2400\nMINER,NEWMONT MINING CO.,J1100\nREAL ESTATE DEVELOPE,\"ANCHOR DEVELOPMENT, INC.\",F4100\nPF MCBRIDE INSURANCE,,F3100\nCHAIRMAN,THE CORKY MCMILLIN COMPANIES,F4100\nPediatrician,Self-Employed,J1100\nTECH-MAIL LLC,,Y4000\nNORTH STAR BAR,,Y4000\nPsychologist,Reed College,H5100\nPRESIDENT,HEALTH HABIT,H0000\nCEO,INDEPENDENT WOMENS FORCE,Y4000\nENGINEERED CONCEPTS INC,,B1000\nPresident,French Impression Inc,Y4000\nINTERNATIONAL FOREST PRODUCTS,,G6400\nOWNER,BALBOA BAY CLUB,Y4000\nCOOK ALEX MCFARRONN MANZO,,K1000\nOWNER,STUMP FARM,A1000\n\"EXECUTIVE VP, LAW &\",GENERAL MOTORS,T2100\nArts Education,Public School MN,X3500\nsales,Salesforce.com,G5270\nCEO,Adventist Healthcare,H2100\nHADDAD AND ASSOCIATES,,F4100\nEducator,Masschusetts Teachers Association,Y4000\nPresident,Tradi Corp.,Y4000\nFinancial Associate,Thrivent Financial,F3100\nPRESIDENT,HERSHEY TIRE CO. INC.,Y4000\nHUMAN SERVICES SPECI,STATE OF KANSAS,Z9500\nOwner,Janet Tyler Law Offices,K1000\nCOO,\"SCHAHET HOTELS, INC.\",T9100\nTELECOM ENGINEER,BT AMERICAS,C4100\nPresident & CEO,Birks and Mayors Jewelers,G4600\n\"LARKIN LEGAL SERVICES, P.C.\",,Z1200\nHELLER & RUTBERG,,Y4000\nMEDIA PUBLISHER/MANUFACTURER,HIGH SPPED PRODUCTIONS ELMICO ENTERPRI,C1300\nAttorney,\"Kaufman, Coren & Ress, PC\",K1000\nFINANCE,TRIANGLE PEAK PARTNERS,J1200\nLAN,AHANASIO LANDSCAPE ARCHITECTURE,B4200\nPUBLISHER,QUARRY PRESS DALLAS TEXAS,Y4000\nREPRESENTATIV,GERALD PETERS GALLERY,G4600\nEXEC,SELF-EMPLOYED,Z9500\nPostal Clerk,Postal Service,Y4000\nNET VENDOR,,Y4000\nSECRETARY,RIENZI GARDEN ENDOWMENT FUND,Y4000\nOWNER,GOODWIN AND ASSOC. INSURANCE SVC,F3100\nEXECUTIVE,TELCO COMMUNICATIONS,Y4000\nPRESIDENT-PRIVAT,FRANKLIN TEMPLETON,F2100\nMBF INTERIORS,,M8000\nJOHNSON REALESTATE & INVESTMEN,,Y4000\nHARTZ MT INDUSTRIES,,Y4000\nRN,UCD MC,Y4000\nOWNER,\"UTILITY SERVICE CO., INC.\",Y4000\nAUDIOLOGIST,FAMILY HEARING & SENSORY-NEURAL CENTER,Y4000\nCONSULTANT,AOC KEY SOLUTIONS,Y4000\nReal Estate Operator,Bldg Mgmt Co,F4500\nREAL ESTATE DEVELOP,DREW MANAGEMENT,F4100\nReal Estate Broker,Karen T. Kimura,F4200\nVice President,Houston Foundation,X4100\nCONVENANT MORTGAGE,,F4600\nDirect Sales Consultant,Self,Y4000\nCONSULTANT,MARGARET HOOVER & ASSOCIATES,Y4000\nREAL ESTATE MANAGEMENT,SELF EMPLOYED,F4000\nPRESIDENT,FLANAGAN INDUSTRIES,Y4000\nASSOCIATE LAW PROFESSOR,UW,H5100\nD.D.S.,SELF EMPLOYED,J1100\n\"EXC. VP, VI\",BOYD GAMING CORPORATION,G6500\nPT,PTPN OF FLORIDA,H1700\nOWNER,QUIGG BROTHERS,Y4000\nBroadway Producer,The Walnut Group,F2600\nPRESIDENT,TD OPTIONS LLC,F2200\nDEVELOPER,KAY MGMT CO,Y4000\nRESEARCH SCIENTIST,THE UNIVERSITY OF ALABAMA,H5100\nCOMMERCIAL REAL ESTATE,C.B. RICHARD ELLIS CARMODY L.L.C.,F4000\nINFORMATION REQUESTED PER BEST EFFORTS,GLOBE ENERGY SERVICES,E1000\nAttorney,\"Martin, Banks, Pond, Lehocky, Wilson\",K1100\nSTARK COLLECTIONS,,Y4000\nRegistered Nurse,Harvard Vauguard Hea,Y4000\nengineer,Consolidated Machine,J1200\nPHYSICIAN,ASSOCIATED RETINA,Y4000\nGENERAL MANAGER,HOLSTON GASES,Y4000\nPRESIDENT,RUDOLPHS INC.,Y4000\nVICE PRESIDENT,M&I MARSHALL & ILSLEY BANK,F1100\nBIOTECH CONSULTANT,MICHAELL WALSH,Y4000\nPHYSICIAN,ST. JOHNS HEALTH,H1100\n\"PRESIDENT, CIVIL ENG\",\"WGM GROUP, INC\",B4000\nPROGRAMMER,CENTURION INC.,Y4000\nAttorney,\"'Orvick, Hevrington'\",Y4000\nPhysician,Puget Sound Hearing,Y4000\nPublic Accountant,Bradshaw Pope & Franklin,Y4000\nATTORNEY,\"MELAND, RUSSIN & BUDWICK, P.A.\",K1000\nRudin Management Co. Inc.,,F4500\nEQUINE PROFESSIONAL,PRIVATE CONTRACTOR,J1200\nChief Operat,Schwabb Rehabili.Hosp.,Y4000\nATTORNEY,MILLER STARN & REGAL,K1000\nYOUNG CLEMENT RIVERS,,Y4000\nCO-CHAIRMAN,\"KARR BARTH ASSOC., INC.\",F3300\nOIL/GAS,PAGE EXPLORATION,Y4000\nManagement,NVidia,Y4000\nCONTRACT MANAGER,\"CRSA, INC.\",Y4000\nENTREPRENEUR,IMPERIAL TRADING,T6200\nDental Hygenist,Dr. Kielsecki,Y4000\nProduction Accountant,20Th Century Fox,C2400\nDirector Govt Relations,Dept of Ecology,X3000\nPartner,Bagell Josephs Levine,Y4000\n\"Farming, Banking, La\",\"The R. C. Durr Company, Inc.\",Y4000\nAttorney,Gunderson,K1000\nCABLE TV OPERATION,,C2200\nJAMESON M H SALSA,,Y4000\nLOBBYIST & CONSULTANT,SELF,K2000\nOil and gas producer,n.a.,Z9500\nDIRECTOR,GOLDEN WEST TELECOMMUNICATIONS COOPERA,C4100\nCFO,EXOBOX TECHNOLOGIES CORPORATION,Y4000\nEXECU,PLEASANT VIEW MINING CO. INC.,E1200\nVp,Shell E&P Company,E1110\nINTELL-SOURCE BUILDING,SELF,Y4000\nCEO,AFB CONSTRUCTION MANAGEMENT,B1500\nREAL ESTAT,YANCEY-HAUSMAN INTERESTS,F4000\nLIC. PROF. ENGINEE,APOLLO PROF SVCS,Y4000\nMortgage Banker,First Housing,F4600\nBERRY HILL GALLERIES,,J7400\nMAJOR PORPERTY,,Y4000\nNU PARADGM,,Y4000\nMI SOCIETY OF PATHOLOGISTS,,H1100\nMAYOR,CITY OF HIGHLAND PARK,J5100\nPHYSICIAN,COFFEE WOMENS CENTER,G2600\nBOND AND INSURANCE,SELF EMPLOYED,F3100\nMANAGER,MPUA,Y4000\nSUSAN WARSHAW COMPANY,,Y4000\nMANAGER,ALEXION PHARMACEUTICALS,H4300\nPHARMACALE INC,,H4000\nCFO,THE BLACKSTONE GROUP,F2600\nAttorney,SELF,B5100\nAssistant,Warner Direct Marketing,G5220\nGeneral Partner,\"Riverside Partners, Inc.\",F0000\nMANAGER,SOVEREIGN BANK,F1100\nManager,Title Service & Escrow,F4300\nALTRES/KO OLINA REALTY LLC/ACCOUNTA,,F4200\nSENIOR VICE PRESIDEN,\"FOOD LION, LLC\",G2400\nDAIRY - FARMER,,A2000\nTHE INDIE PRODUCTION CO,,C2400\nPeabdy Collge,Educatr,J1200\nOwner,Siboney,G5210\nCLINICIAN,BAYVIEW MEDICAL CLINIC,H2100\nACADEMY OF NATURAL SCIENCES,,X0000\nFinance,Ort,J1200\nDIR. OF GOV. AF,\"CHILDREN'S HOSPITAL\",H2100\nTAIT & ENGINEER,,B4000\nW. CAPITAL PARTNERS,,F0000\nCFO,\"ERNIE ELLIOTT, INC.\",Y4000\nOWNER,\"W&M WELDING, INC.\",Y4000\nCASPER ASL LTD,,Y4000\nPHYSICIAN/RABBI,TREE OF LIFE,Y4000\nMEDICAL DIRECTOR,MSPCC,Y4000\nBUSINESS OWNER,\"VINTACO, INC.\",Y4000\nINTEGRATED SOLUTIONS & SERVICES INC,,Y4000\nOWNER,BENTLEY WORLD PACKAGING/OWNER,Y4000\nMORTGAGE PLANNER,WACHOVIA,F1100\nAuto Dealer,Elk Grove Toyota,T2310\nRICHMOND SERVICE,,Y4000\nMONTPLAISIR & CO,,Y4000\nInvestment management,Turner Investments,F2100\nInsurance Agent,Yezzi & Company Inc.,F3100\nAD INDUSTRIES INC,,G5210\nCPA,MILFORD CONSULTANTS,G5200\nTRI-STAR TV,,C2300\nRESEARCH ASSOCIATE PROFESSOR OF MEDICI,WASHINGTON UNIVERSITY SCHOOL OF MEDICI,Z9500\nAdvertising/ Author,Self-Employed,G0000\nMANOR HOMES INC,,B2000\nAdministrator,Ararat Nursing Facility,H2200\nDOODY INSURANCE GROUP,,F3100\nVice Chairman,Warner Music Group,C2600\nEngineer,Prosser Hallock,Y4000\nATTORNEY,LAW OFFICE OF PAT MALONEY,K1000\nINSURANCE,ROBERTSON ROCK INSURANCE,F3100\nNINE THIRTY CAPITAL,,F0000\nSR. ELECT. ENGR.,BURNS & MCDONNELL,B4000\nRequested,Natural Gas Partners,E1100\napparel Manufacturer,self,M3100\nCardiologist,Lexington Clinic,Y4000\nPAC Manager (Not Registered Lobbyist),Aada,Y4000\nRestaurateur,Fine Dining Restaurant Group,G2900\nNEUROSURGEON,SELF,J1100\nVice President,ALD Enterprises,Y4000\nINSURANCE COMPANY EXECUTIVE,\"WEST INSURANCE AGENCY, INC\",F3100\nPresident,Wyrsch Leasing,G5300\nATTORNEY,LAW OFFICES OF WAYNE B COOPER/ATTOR,K1000\nCAPRI LOUNGE,,G2900\nExecutive,Ozarks Coca-Cola Bottling,G2700\nPRESIDENT,DIGITAL SOUND SYSTEMS,Y4000\nPRESIDENT,TECH SERVICES,Y4000\nPROJECT MANAGEMENT ASSOC,,B0500\nVP,RIO PETROLEUM INC,E1100\nFOLEY AND LARDNER/ATTORNEY / CONSUL,,K1000\nHOTEL MANAGEMENT,LANDS END,T9100\nbusinessman,self,F5000\nPRESIDENT,HAL LEONARD PUBLISHING CO,C1100\nREAL ESTATE,ALAN R. DAVIS & ASSOC.,Y4000\nNA,,J7120\nPROFESSOR,THE UNIVERSITY OF TENNESSEE,H5100\nELECTRONICS TECH,DIAMOND OFFSHORE DRILLING,E1150\nPresident / CEO,\"Northwest Broadcasting, Inc.\",C2100\nChief Financial Offi,Quixote Corporation,Y4000\nPRESIDENT & OWNER,KIRBY-SMITH MACHINERY INC.,Y4000\nFOUNDER AND PRINCIPLE,KMS SOFTWARE,C5130\nARTIST,DISABLED/RETIRED,X1200\nINFO REQUESTED,David Stoll Md Ltd.,Y4000\nGovernment Relations,GlaxoSmithKline,H4300\nProprietary Trader,\"Crossland LLC/Kirley Group, Chicago\",F2200\nUNIV OF MISSOURI S L,,J7400\nCONSULTANT,RCEI,Y4000\nReporter,New York Post,J1200\nreal estate,Ballast Point Ventures,F4000\nAdministrtor,Valente & Associates,K2000\nPHYSICIAN,ADVOCATE HEALTH/PHYSICIAN,H0000\nSenior Program Officer,Wallace Global Fund,X4100\nOWNER,CARMICHAEL INVESTMENTS,F7000\nconsultant,Princeton Consultants Inc.,Y4000\nPRIVATE EQUITY,BROOKWOOD FINANCIAL,Y4000\nENGINEER,ZEROCHAOS,Y4000\nSALES REPRESENTATIVE,US TECHNOLOGY,Y4000\nC.F.O.,ESCHELON INC,Y4000\nInspector General,NYS Dept. of Labor,X3000\nREAL EST,\"BROOKVIEW MANAGEMENT, INC.\",Y4000\nNOT-EMPLOYED,NONE,J7150\nCANYON STATE OIL COMPANY,,E1100\nRESEARCH,CHILDHOOL LEUKEMIA STUDY,Y4000\nW DELANY & ASSOC,,Y4000\nChairman,GTECH,G6500\nPRESIDENT,\"DAVIDSON ENTERPRISES, INC.\",D2000\nECONOMIST,TRUESDELL CONSULTING INC,Y4000\nATTORNEY,JOHNSON COUNTY,Y4000\nOWNER,CONNORS COMPANY LLC,Y4000\nCHASE HAMBRECHT & QUIST,,F2300\nLE MIEUX & SON TOYOTA,,T2310\nEXECUTIVE,\"GRACELAND FRUIT, INC\",A1400\nPRESIDENT,LEE MOORE CAPITAL CO.,Y4000\nATTORNEY,RELLES MEEKER  BORNS,Y4000\nRYLAND GROUP INC,,Y4000\nMANAGEMENT,ECCO II,A1400\nManagement Specialist,D. O. D./ De Ca,Y4000\nPROFESSOR,GRCC,Y4000\nOWNER,\"ESCATAWPA HOLLOW, INC.\",Y4000\nMUSIC INDUSTRY EXECUTIVE,WARNER MUSIC GROUP,C2600\nGAILY & ASSOC,,Y4000\nPRESIDENT & CE,KELLSTROM INDUSTRIES,Y4000\nOWNER,SOUTHERN COMFORT COACH,Y4000\nPRESIDENT,FRISBIE CONST CO.,B1500\nVICE PRESIDENT,ZMM INC.,B4200\nMechanical Engineer,Ohio State University,H5100\nBusiness Executive,A. D. C. S.,C5130\nPresident,TSP,Y4000\nMANAGEMENT CO,JOHNSON & CONSULTANTS,Y4000\nSelf Employed,David W Winters Live,Y4000\nCOLL,WASHINGTON & JEFFERSON COLLEGE,H5100\nJASPER FOODS INC,,Y4000\nBUSINESS FORMS DISTRIBUTO,SELF,Y4000\nResearch,Microsoft,C5120\nPhysician,\"Priscilla Ray MD, PA\",H1100\nATTORNEY,SCHWABE WILLIAMSON & WYATT,F4100\nKCSX / KRLA (RADIO)/SALES,,Y4000\nBROADCASTER,SELF-EMPLOYED/BROADCASTER,C2100\nMANAGER,\"DMI SERVICES, LLC\",Y4000\nManaging Director,\"KPMG, LLP\",F5100\nOWNER/ C.E.O.,\"WALDRON OF MARYLAND, INC.\",Y4000\nBEECHWOOD DISTRIBUTORS,,G2850\nFIRST EQUITY INVESTMENT,,F0000\nMINNESOTA INDEPENDENT REP PARTY,,J1100\nLawyer,Taft Stettinius & Hollister,K1000\nparish minister,Follen Church Society,X7000\nVENTURE CAPITALIST,,H0000\nTEACHER,GEORGIA STATE,Z9500\nATTORNEY,CARTER AND TATE,K1000\nPresident & General Counsel,\"Sawtooth Consulting, LLC\",Y4000\nInsurance management,Kensington management group,F3100\nHEDGE FUND MANAGER,APOLLO BIOTECH,F2100\nLUCCA COLD STORAGE,,Y4000\nTEACHERS,HAMILTON SD,Z9500\nGENERAL MANAGER,RAPIDPARTS INC.,Y4000\nTRUCK DEALER,PENN. FREIGHTLINER,Y4000\nExecutive,Heart Care Midwest,H1130\nCLERK TREASURER,CITY OF SHELBYVILLE,X3000\nHORSE FARM MAN,SWIFT CREEK FARM LLC,Y4000\nVIVA AMERICA VIDEO GROUP,,Y4000\nCPA,\"TRACEY HEUN BRENNAN & CO CPA'S\",Y4000\nConsultant,PSW Law,Y4000\nQ. C. MANAGER,AUTO METAL CRAFT INC.,Y4000\nFood Service Consultant,Self-Employed,G0000\nInformation Technolo,General Motors,T2100\nSVP CFO Personal Insurance,American Equity Insurance Company,F3400\nShorenstein Co,Senior Executive,G0000\nOWNER,MASON FURNITURE & APPLIANCE,Y4000\nPROFESSOR,INFORMATION REQUESTED PER BEST EFFORTS,H5100\n\"MGR, FINANCIAL PLANNING\",HEALTH NET,H3700\nCEO,\"CenTra, Inc.\",T3100\nPresident & Owner,Badger Oil Corporation,E1120\nCHASTAIN ENTERP,,Y4000\nInformation Requested,NAF,Y4000\nAttorney,\"Goodman Acker, P. C.\",K1000\nER,,E1620\nOwner,Riverside Auto Parts,T2200\nTELECOM TECHNICIAN,W.L. GORE & ASSOCIATES,M1000\nCAR DEALER,EVANSTON SUBARY,Y4000\n\"YIN MCDONALD'S\",,G2900\nSELF,BURKE TRUCKMEN/SELF,Y4000\nRE Investment Mgt,Buchanan Street Partners,F4000\nCEO,OVERHEAD DOOR COMPANY,Y4000\nTRADER,ROSENTHAL COLLINS,F2200\nINVESTMENTS,UBS GLOBAL ASSET MGMT.,F2100\nInformation Requeste,Florida Medical Center,H1100\nPEDIATRICIAN,,X1200\nC R NA,,Y4000\nNOT EMPLOYED,CNONE,Z9500\nExecutive Director,Sylvan Learning Center,H5000\nREAL ESTATE,\"CB RICHARD ELLIS - N.E. PARTNERS, LP\",Y4000\nMOORE BUICK PONTIAC,,T2300\nSenior Vice President & C.F.O.,SOAVE EXPRESS,Y4000\nPHYSICIAN,ADVANCED OPHTHALMOLOGY INC,Z9500\nCOBBS ALLEN & HALL INC,,Y4000\nMANAGING PARTNER,HBK INVESTMENTS,F2100\nSENIOR VICE PRESIDENT GOV RELATIONS,OGILVY,K2000\nSENIOR BANK EXAMINER,FEDERAL RESERVE BANK,X3000\nOwner/Manager,\"Island Triathlon & Bike, Inc\",Y4000\nENSIGN-BICKFORD INDUSTRIES,,M1700\nCUSTOM COATTING,,Y4000\n\"O'DONOGHUE CONSTR CO INC\",,B2000\nPOLICY ADV,THELEN REID & PRIEST LLP,K1000\nCPA,LAMBETH ACCOUNTANCY CORPORATIO,Y4000\nSELF EMPLOYED/MODEL RAILROADER/REAL,,F4000\nUS Ambassador to Por,Department of State,X3100\nSENIOR COUNSEL,KOCH CO PUBLIC SECTOR LLC/SENIOR CO,E1160\nEPA,SELF,X3000\nOwner,Geems International,Y4000\nFARMING,INVESTOR,F7000\nV.P. of Education,Golden Gate Chapter,B0500\nAdministrator,The Ohio State University,H5100\nTHE DENT WIZARD,,Y4000\nSENIOR ADVISOR,PPG,M1600\nGeneral Counsel,\"Adler Funk, Inc\",Y4000\nCOATES-DANSON DESIGN,,J1200\nVP,OSHKOSH COIL SPRING INC.,Y4000\nManager,Kaiser Permanente,H3700\n\"Pres, PerformRx Division\",AmeriHealthMercy,Y4000\nnurse,\"Vital Research, LLC\",H1710\nRetired Teacher,None,J1100\nAccountant,BuckleySandler,Y4000\nFAXON INC,,B2000\nPhysician,Marin Pediatric Associates,H1100\nGREENBRIAR VALLEY UROLOGY ASSOC,,H1130\nrisk manager,Mansfield Plumbing,B3400\nEXEC,GUILDCHRIST JEWELL LUMBER,B5200\nTARGET SPECIALTY PRODUCTS,,A4100\nCLAPP & EISENBERG P C,,K1000\nREMAX OF CALIFORNIA,,F4200\nProgrammer,\"Referentis, Inc.\",Y4000\n\"Director, Pb Economics and Planning\",FLINT HILLS RESOURCES LP,E1160\nReal Estate Broker,Continental Realty Co,F4200\nstock broker,Robbins & Henderson,Y4000\nChairman,\"VANS, INC.\",Y4000\nSVP,W R Berkley Corporation,F3400\nCorporate Vice President  Strategy & B,Motorola  Inc,C2200\nDERMATOLOGIST,SELF/DERMATOLOGIST,H1130\nPRESIDENT TEL,CONVERGYS CORPORATION,C5130\nAL HERNDAN,,K1000\nInvestment Banker,Chasefield LLC,J7120\nQUALITY ASSURANCE ANALYST,ACUCORP,C5130\nOwner,Burns Forest Products,A5000\nLOBBYIST,DIRECT TV,C2200\nEditorial Director,MLB Advanced Media,C5140\nRET.,JONES MEDICAL INDUSTRIES INC.,H4300\nCEO,Newfield Wireless,Y4000\nFAMILY MEDICAL CARE CLINICS,,Y4000\nAttorney,\"Heisler, Stewart & Daniels\",Y4000\nATTORNEY,GLANCY BINKOW LLP,J7400\nPHYSICIAN,D.N.P.C.,Y4000\nExecutive,Motiva Enterprieses,Y4000\nEVP CENTRAL DIVISION,UBS FINANCIAL SERVICES INC,F2100\nAttorney,Amalgamated Life,Y4000\nSABATINI & BECKER,,Y4000\nBROKER,SELF-EMPLOYED,F4000\nPhysician Radiologis,Newark Diagnostic Ra,Y4000\nPartner,Senate Engineering Company,B4400\nSCHMITT CO INC,,Y4000\nSISTERS OF CHARITY HEALTH CARE SYST,,H0000\nFINANCIAL MANAGER,AMERICAN EXP.,F1400\n\"Corporate Executive,\",Self,Y4000\nCEO,Medicare Rights Center,JH100\nSELF EMPLOYED/DESIGNER/DRAFTER,,G5000\nSurgeon,Dean Clinic,H1100\nNON-PROFIT,SELF-EMPLOYED,J1200\nDISTRICT 24 ILWU,,Y4000\nMASSEY ELEC CO,,B3200\nradiologist,NEB Radiology,J1200\nCONSULTANT,FLIR,Y4000\nMAST INDUSTRIES,,M3100\nPhysician,\"Cardiology Center of Amarillo, LLP\",H1100\nExecutive Assistant,Anniston Chemical Disposal Facility,B1000\nOLAWRENCE BERKELEY,,JD200\nLawyer,Hallmark Cards,C1400\nLKLP HEADSTART,,Y4000\nMATTHEW PETERSON,\"AMGEN, INC.\",H4300\nDevelopment Director,Septima Clark Public Charter School,X3500\nConsultant,Ram Aircraft L.P.,Y4000\nRN,el Camino Hospital,H2100\nSUBCONTRAC,HWY PAVEMENT SPECIALTIES,Y4000\nLawyer,Ricos & Price,K1000\nExecutive Director,\"Gay, Lesbian and Straight Education Ne\",J7300\nBUSINESS OWNER,\"K&E TECHNICAL, INC.\",Y4000\nSTOCKB,GILDER GAGNON HOWE + CO. LLC,J1100\nPARALEGAL,STEHLIK LAW OFFICE,K1000\nInvestment Principal,Grove Street Capital LLC,F0000\nDEVELOPMENT OFF,BRANDEIS UNIVERSITY,H5100\nPARTNER,\"DC LONDON, INC\",G5260\nOperations Manager,Laurel Asphalt,B5100\nAGENT,Northwestern Mutual,F3300\nPresident,Serfer Medical Group,Y4000\nOWNER,SINGH SEMICONDUCTORS,C5110\nLabor Consultant,Self,L0000\nVOLUNTEER,,G4400\nTECHNICIAN,ELI LILLY AND CO.,Z9500\nCOOPER/T.SMITH CORP./VICE CHAIRMAN,,T6200\nBUSINESS OWNER,OCANAS PRINTING,J1200\nATTORNEY,\"THE LAW OFFICE OF K. A. FOREMAN, PC\",K1000\nMANAGER,GULF POWER,E1600\nTPP,,Y4000\nEDUCATION SALES,PERMA-BOUND,Y4000\nCEO,THEREGENICS CORP,Y4000\nEXECUTIVE,Lockheed Martin,D2000\nA,\"INDUSTRIAL PROPERTIES GROUP, INC.\",F4000\nJEWELER,SIDNEY AND GARBER,Y4000\nE I DUPONT DE NEOURS & CO,,M1000\nCPA,Reiger Carr Monroe,Y4000\nPART,NELSON MULLINS RILEY & SCARBOR,K1000\nStudent,UST,J1200\nOWNER,GLADSTONE COUNTRY HOUSE,Y4000\nCHIEF,FINANCIAL CENTER CREDIT UNION,F1300\nATTORNEY,BINGHAM & MCCUTCHEON LLP,K1000\nDENTIST,SHANAHAN DENTAL,H1400\nCHAIRMAN,FRED JONES COMPANIES,Y4000\nCREATIVE ASSOCIATES INTL INC,,Y4000\nGeneral Manager,ABLE Management,T9100\nFarmer,\"Sined Leasing, Inc.\",Y4000\nHALL & HEDRICK,,Y4000\nLOMOS INC,,Y4000\nOPERATOR,MARINA OWNER,T6000\nMCSWAIN CARPETMAX,,Y4000\nLEGAL ASSISTANT,HALL & WYLKAN,Z9500\nEXECUTIVE,IDT/EXECUTIVE,C4200\nNEED INFO.,,Y4000\nTEACHER,RUSH HENRIETTA E A,L1300\nVICE PRESIDENT OF GOVERNMENT AFFIARS,URS CORP,B4000\nO-TRAK INC,,Y4000\n\"teacher, lawyer\",Carlos Rosario International PCS,J9000\nNEW OPTIONS ON WASTE,,Y4000\nCROWLEY MARKS & DOUG,,K1000\nPatent Agent,Wavs IP,Y4000\nMULTICARE,,Y4000\nLAWYER,PLANNED PARENTHOOD,J7150\nPRESIDENT,MALCOLM BRYANT CORP,Y4000\nDELOITTE & TOUCHE CONSULTING G,,F5100\nARTIST,MADDERLAKE LTD,Z9500\nExecutive,Schooner Information,Y4000\nEXECUTIVE,SKANSKA,Y4000\nENGINEERING CONSULTANT,SELF-EMPLOYED,H1700\nWHITEHALL PARK APARTMENTS,,F4500\nFACTORY,PENTAIR,M2300\n\"MCAULIFF, KELLY & RAFFAELLI\",,K2000\nPresident,Cap America,Y4000\nExecutive Director,Society for International Development,Y4000\nPHYSICIAN,ILLINOIS BONE & JOINT INST,H1130\nBUDGET CAR & TRUCK RENTAL,,T2500\nInformation Requeste,Target Corporation,G4300\nOWNER,WARREN GREEN & ASSOC.,Y4000\nATTORNEY,FINEMAN & BACH,K1000\nMD,HEMATOLOGY ONCOLOGY ASSCS.,H1130\nTRAVELERS/AETNA PROPERTY/C.E.O.,,F3400\nPresident,\"Nailfast, Inc.\",Y4000\nGIBRALTAR SAVINGS,,F0000\nSOFTWARE ENGINEER,,J1200\nDANIEL & HENRY CO,,F3100\nManagement Consultant,Logos Consulting Group,Y4000\nDisabled/Clinical Data Assoc,Novartis Pharmaceuticals,H4300\nINV CAPITOL,,Y4000\nPresident,Podgett & Assoc. Inc.,Y4000\n\"OUR LADY'S YOUTH CENTER\",,Y4000\nATTO,RIKER DANZING SCHERER & HYLAND,K1000\nPresident,Pivato Consulting,Y4000\nGLEN COVE CITY COURT,,X3200\nOWNER,TOMS SANDYLAND LLC,Y4000\nPODIATRIST,ARROYO FOOT & ANKLE CLINIC,Z9500\nINFO REQUESTED,JAMES WHITE FORT ASSN,Y4000\nPRESIDENT/PROFESSOR,AMERICAN ACADEMY OF CLINICAL SEXOLOGIS,Y4000\nEditor-in-chief,American Physical Society,X0000\nInformation Requeste,Washington Holdings,F4000\nCommunications Director,HRC 2008,Y4000\nOWNER,\"HARBAUGH POWER PRODUCTS, INC\",Y4000\nART DEALER,AQUAVELLA GALLERIES,G4600\nExecutive Vice Presi,AGC of Kentucky Inc,B1000\nLaw Professor,University of the Pacific,H5170\nFREIDMAN BILLINGS &,,Y4000\nTechnical Sales and MOMMY,Bio-Rad and SELF,Y4000\nALLISON SHEROD OWENS & SIDDONS,,F3100\nProfessor,Texes Tech Univ Health Sci Cen,Y4000\nINDIANA UNIVERSITY MEDICAL CENTER,,H1100\nDIRECTOR,FALL CREEK REGIONAL WASTE DISTRICT,Y4000\nINVESTOR,BAG INVESTMENTS,F7000\nREAL ESTATE,\"COLDWELL BANKER KENNON, PARKER, DUI\",J9000\nPRESIDENT,CITY BRIDGE FOUNDATION,J1200\nReal estate broker,Helen Calgano,F4200\nPresident-CEO,Capital Management Co.,F0000\nINVESTMENT MANAGER,\"RICHMOND MANAGEMENT, LLC\",Z9500\nPRESIDENT,\"RED BUD ESTATE SALES, INC.\",Y4000\nOWNER,NUCOR O&G,Y4000\nBotanist,Institute for Applied Ecology,Y4000\nPartner,Kling Rechter and Co.,F2600\nLOBBYIST,SELF - NO COMPANY NAME,K2000\nENGINEER,INFRASTRUCTURE ASSOCIATES INC.,Y4000\nTRUSTEE,CHARLES L. ADAMS TRUST,Y4000\nSEN. DIR. OF DEVELOPMENT,MENTAL HEALTH ASSOC. OF ESSEX,X4110\nProfessor,University Of Wisconsin-Madison,H5100\nExec,\"Sanderson's Farms Inc\",A2300\nPHYSI,CATARACT & REFRACTIVE SURGERY,H1130\nCOMMODORE INTERNATIONAL LTD,,C5000\nAttorney,St. Lukes Hospital,H2100\nCOLUMBUS ORTHO SURGEONS INC,,H1130\nCaptain,Usairways,T1100\nTRANPORTATION AGENT/BROKER,SELF-EMPLOYED,G0000\nSALES,WOODLINE ARIZONA INC.,Y4000\nKPLR TV,,C2100\nELECTRICIAN,SELF EMPLOYED,G1100\nE W B COMPANY,,Y4000\nCONTRACT ADMIN.,S. R A INTERNATIONAL,D9000\nRESTURANT OWNER,SELF-EMPLOYED,G2900\nRREEF MANAGEMENT CO,,F4500\nExecutive,Richard L Feigen & Co.,G6100\nVice President,Van Scoyor Assoc. Inc.,K2000\neditor,\"Glimmer Train Press, Inc.\",C1100\nBUILDING CONTRACTOR,K D GOTCHER INVESTMENTS,Y4000\nPAC DIRECTOR - FEDERAL RELATIONS,AMERICAN PETROLEUM INSTITUTE,E1100\nPHARMACEUTICALS,PONTIS LIFE SCIENCES INC.,Y4000\nMAYOR,CITY OF ODESSA,X3000\nCEO,\"JOBE MATERIALS, LLC\",B5000\nField Planning Asso,The Gas Company,E1100\n\"EXECUTIVE VICE PRESIDENT, CHIEF OPERAT\",RADIAN,Z9500\nExecutive,Tripps Inc,G4600\nPRESIDENT,ALL AMERICAN AUTO SALVAGE,T2200\nPHYSICIAN,NORTH SHORE LONG ISLAND JEWISH,H2100\nOWNER,SR FORWARDING,Y4000\nOWNER,BELK ENTERPRISES,M2300\nTV & Radio Show Host,Self,C2100\nVICE PRESIDENT,CONEMAUGH HEALTH SYSTEM,H2100\nPROJECT CONTROLS COORDINATOR,EPC CORPORATION,Y4000\nPRINCIPAL,SELF-EMPLOYED -CBR STRATEGIES,Y4000\nTEACHER,BOARD OF EDUCATION,X3500\nCOMP,NORTH DAKOTA STATE WATER COMMI,J1100\nPRESIDENT,HOUSER TRANSPORT,Y4000\nChief Financial Officer,Shutterfly,H4100\n\"CHRISOLM, JACOBSON\",,Y4000\nCITY PLANNER,\"CITY  OF NEW  YORK, HUDSON YARDS DEVEL\",X3000\nSECRETARY/TREASURER,FTS,Y4000\nExecutive Search,Phillips Oppenheim,J7400\nRAICH ENDE MALTER LERNER & CO,,Y4000\nWelfare Policy Analy,U.S. Government,Z9500\nSPECIAL SERVICES INC.,,Y4000\nMARKETING,,T5100\nLUMBER MA,BENNETT FOREST INDUSTRIES,A5000\n51 RANCH COMPANY,,Y4000\nRD,,Y4000\nINVESTM,LOVELL MINNICK PARTNERS LLC,F2600\nPRESIDENT,TEC ENVIRONMENTAL INC,E2000\nATTORNEY,FOSTER QUAN LLP,K1000\nPRESIDENT,ALPHA AIRPORTS,Y4000\nInterior Designer,Nancy Blumenkrantz,Y4000\nEXECU,LONG ISLAND BOARD OF REALTORS,F4200\nCommercial Real Estate Finance,LNR Property Corp,Z9500\nDEPUTY TO EXEC VP,THE ORTHODOX UNION/DEPUTY TO EXEC V,Y4000\nCertified Nurse Midw,\"Midwifery & Women's Health\",J7400\nFORTNEY & WEYGANDT INC,,Y4000\nHuman Resources,Advanced Acoustic Concepts,D3000\nChairman of the Boar,Sagner Company,F4100\nPRESIDENT,INFO REQUESTED,H1400\nEx. Dir.,Peoples Health Center Inc.,Y4000\nMINING ENGINEER,UNITED COAL COMPANY,F0000\nCHAIRMAN AND CEO,COMSTOCK HOMES,B2000\nEXECUTIVE MANAGER,GROUP 1 AUTOMOTIVE INC.,T2300\nCPA,TAX ACCOUNTANT,F5100\nNEUROSURGE,SOUTH SOUND NEUROSURGERY,H1130\nPARTNER,DR PROFESSIONAL REHAB,Y4000\n,PULMONARY SPECIALISTS OF NW INDIAN,Y4000\nBusiness Analyst,CVS Caremark,G4900\nPHYSICIAN /ADMINISTRATOR,HARRIS COUNTY HOSPITAL DISTRICT,H2100\nMUSEUM,RETIRED,X1200\nPulbic relations,Self employed`,Y4000\nAUTO PARTS DISTRIBUTO,SELF-EMPLOYED,T2200\n\"DUNLAP, KYLE/PRESIDENT/CEO\",,T2200\nPART,\"MOSES PRESTON & ZIEGELMAN, LLP\",Y4000\nCONSTRUCTION,DIMITRI CONSTRUCTION,B1500\nLEGISLATOR,STATE OF CALIFORNIA,J1200\nMANAGER,\"MHW, INC.\",Y4000\nPartner,Cornerstone Holdings,F2600\nMANAGER,HEAVNER FURNITURE MARKET/MANAGER,Y4000\nEXECUTIVE,VILLAGE GREEN COMPANIES,Y0000\nLEGISLATIVE DIREC,DELEGATE TIM HUGO,Y4000\nExecutive,United Dairy Farmers,G2400\nPRESIDENT,FLORIDA POWER & LIGHT CO.,E1600\nCONSULTANT,BLACKBAUD,Y4000\nOWNER,MLS COMMUNICATIONS,Y4000\nInformation Requested,Southside Copies,Y4000\nWEDGEWOOD CAPITAL MANAGEMENT INC,,F0000\nAIRPORT RETAIL DEVELOPMENT,\"BMG CONCESSIONS, LLC\",Y4000\nlawyer,U.S. Department of Justice,X3200\nPUBLISHER & PRESIDENT,DAILY COURT REVIEW INC.,C1100\nPRESIDENT,M E STARKS MD PA,Z9500\nATTORNEY,HASTINGS LAW OFFICE,K1000\nRESEARCH DIRECTOR,SJSN FOUNDATION,Y4000\nLAWYER,MGC,K1000\nMANAGER,DOUBLE DIAMOND,F4100\nMEDIQUAL,,Y4000\nOPTOMOLIGIST,,Z4100\nCEO,SOUTHERN HILLS HOSP,H2100\nOIL OPERATOR,,G1300\nPHYSICIAN,CARLOS ROCHA,Y4000\nPHYS,UNIVERSITY OF WASHINGTON MEDIC,H1130\nCEO,One Legacy,Y4000\nEXECUTIVE,AQUISTRUCTION INC,Y4000\nDENTIST,\"DAN PATRICK, DMD\",H1400\nDoctor,The Monroe Clinic,H1100\nVICE-PRES-BUSINESS,AMERIQUAL GROUP,G2100\n\"Cpa, Cfp\",Self-Employed,F5100\nINVESTMENT,BURNHAM U.S.A. EQUITIES,Y4000\nWYMONING FINANCIAL SECURITY INC,,Y4000\nManager,UVI-Small Business Dev Center,Y4000\nPROFESSOR,USC SCHOO OF DENTISTRY,H1400\nEXEC.,GLOBAL COMPANIES LLC,E1160\nCOMMERCIAL FISHE,\"OCEAN BREEZE, INC.\",Y4000\nCOASTAL FEDERAL CREDIT UN,,F1300\nCEO,COLUMBIA CASCADE CO.,M4100\nCOMBUSTION DESIGNS INC,,Y4000\nART GUIDE NORTHWEST,,Y4000\nATTORNEY,CLAYTON M ANDERSON AND ASSOCS.,J1200\nLAWYER/ CANDIDATE,SELF/LAWYER/ CANDIDATE,K1000\nAttorney,\"Whiteford, Taylor and Preston\",K1000\nHomemaker,Ipsos-Public Affairs,Y4000\nTEACHER/MUSICIAN,BERLIN CENTRAL SCHOOL DISTRICT,X3500\nCARLIN & SONS,,K1000\njournalist/commentat,self-employed,G0000\nPhysician,\"St. Vincent's Medical Center\",H2100\nFOUNDER,EDESIA,Y4000\nAttorney,\"Travers Dombroski, PC\",Y4000\nPRESIDENT & CEO,BRE PROPERTIES INC.,F4100\nCHARITABLE ACTIVITIES,NONE,Z9500\nEnterprise Software,Ca,C5120\nENGINEER,TASG,Y4000\nPRESIDENT,ISFEL CORP.,Y4000\nZITO CONSTRUCTION COMPANY,,B1500\nRetired,DuPont,M1000\nPRESIDENT,DESLAURIERS MUNICIAL SOLUTIONS INC.,Y4000\nCONSULTANT,NETTLETON ADVISORS LLC.,Y4000\nATTORNEY,HELLER EHRMAN LLP,J1200\nPRESIDENT,FIRST HOPE BANK NA,F1100\nCUMBERLAND DESIGN AND BUILDING,,B4000\nICA INC,,F2100\nATTORNEY,\"BERSTEIN, LITOWITZ, BERGER & GROSSMAN\",K1000\nGOVERNMENT RELATIONS,A.D.P. T.C.S.,G5200\nCofounder and General Partner,DCM,Z9500\nRetired,Weston Beuruge Co.,X1200\nATTORNEY,WESTFIELD GROUP,F4100\nInvestment Manager,Alydar Capital,F2500\nPhysician,WorldPath Medical,Y4000\nLAWYER,BOSCHERT & BOSCHERT,K1000\nCEO,Trinity Holding,Y4000\nPres.,Tomorrow Fund Management,Y4000\nBIZ OWNER,LYON OIL COMPANU,E1100\nEi&C Technician,Siemens Energy Inc,Y4000\nOWNER,SAM SCHMIDT MOTOR SPORTS,Y4000\nCHIEF OPERATING OFFICER,NRT CENTRAL REGION,F4200\nUNIROYAL TECH COR,,Y4000\nATTORNEY,JOHNSON & JUDY,K1000\nLAWYER,BAKER & ARMISTEND,E1210\nPresident,Wood Hills Inc,Y4000\nBUSINESS DEVELOPMENT,LANE 4 DEVELOPERS/BUSINESS DEVELOPM,Y4000\nPresident,Swanson Ford Inc,T2300\nANALYST,GREYSTONE & CO.,F2100\nGALLIN-MORELY ASSOC,,C2900\nCHERRY HILL CONSTR,,B1000\nPROFESSOR,UNIV. OF S. CALIF.,H5100\nNURSE PRACTITIONER,UNMC,H2100\nPresident/CEO,Sutton Siding & Remodeling; Inc.,B2000\nRequested,\"Equity Concept, Inc.\",Y4000\nOWNER,GASKIN CONSTRUCTION,B1500\nDoctor,All About Women Health Associates Inc,H1100\nTRAINER,US GOVERNMENT,X3000\nCONSULTANT,CUMBERLAIN ASSOCIATES,F2100\nRealtor,Residential Properties,F4000\nUS EQUAL EMPLT OPPY COMM,,X3000\nPROGRAM DIRECTOR,UNIVERSITY OF MISSISSIPPI,H1710\nST PAUL CARPET & TILE,,M8000\nInvestment Consultan,\"Merfin, LLC\",J1200\nCEO,\"ASHEBORO ELASTICE, INC.\",M3000\nATTORNEY,WALTHEW LAW FIRM,K1000\nGRIETZER & HONIK,,K1000\nREAL ESTATE DEVELO,MAGUIRE PARTNERS,Y4000\nC.E.O.,MAUTS DISCOUNT TIRE,Y4000\nMedical Doctor Clinic Physician,Wayne State University School Of Medic,H1100\n\"CRAVATH, SUAINE & MOORE\",,K1000\nDEALE,ROCKLAND FORD LINCOLN MERCURY,T2300\nConsultant,American Business Development,J1100\nMANCHESTER REAL ESTATE AND CONSTRUC,,B1500\nAGENT IN TRAINING,ABRAMS ARTISTS AGENCY,Z9500\nPROJECT MANAG,WALT DISNEY WORLD CO.,T9300\nCHAIRMAN,ALLISON-FISHER INTL LLC,J1100\nSELF EMPLOYED,\"A & S, LLC/SELF EMPLOYED\",Y4000\nPROPERTY T,THOMSON TAX & ACCOUNTING,Y4000\nMCP,,H5150\nDENTIST,\"S.W. WEBBER, III, DDS. PA\",H1400\nJOURNALIST,EMILY BENEDEK,Y4000\nRESOURCES,U.S.A.F.,X5000\nHOST SYSTEMS SUPPORT MANAGER,SOUTHERN COMPANY SERVICES,E1620\nBROKER,MORGAN WHITE GROUP,F3200\nVENTURE CAPITALIST,SOLSTICE CAPITAL,F0000\nCOURT REF,WAYNE COUNTY,X3000\nBUSINESS MANAGER,AZON U. S. A. INC.,M2300\ndecorative arts desi,self (not sustaining),G0000\nCOO,FSI,Y4000\nLAWYER,BRYAN CAVE,K1000\nSelf-employed,Self employed,A1000\nGENERAL PARKING CORPORATI,,F4500\nAMERICAN MOM,,Y4000\nBERG CONSTRUCTION INC,,B1500\nLOGGING,HERMAN BROS LOG & CONST INC,B5200\nBuilder,Midland Pacific Building Corp,B2000\nEUCLID CHEMICAL CO,,M1000\nINFO REQUESTED,FRANEY PARR AND MUHA,Y4000\nDOCTO,AEGIS FAMILY HEALTH CTRS KING,H1100\nMERCHANT SEAMAN,VARIOUS US FLAG VESSEL OPERATOR,LT500\nATTORNEY,\"LURIE,ILCHERT,MACDONNELL & RYAN LLP\",K1000\nPOLICY AIDE,SENATOR CLAIRE MCCASKILL,Z9500\nATTORNEY,KUMBET REICHERT,Y4000\nmanagement,Citadel Capitol Management,F2100\nCe.O.,Self-Employed,G0000\n\"TRIPP, SCOTT, ET AL\",,K1000\nHuman Resources / Accounting,Touchtone Corp,Y4000\nTeacher,Santa Mauicz College,H5100\nOwner,Nostalgic Sparkles,Y4000\nAKT DEVELOPMENT CORP.,,J1200\nFOUN FOR HEARING AID,,X4000\nMANAGER,AVIS RENT-A-CAR,T2500\nSR. MANAGING DIRCTOR,TURNPOINT ADVISORS,Y4000\nMSP RESOURCES INC,,Y4000\nAttorney,Beasley Allen Crow Methvin Portis & Mi,K1100\nGROCERY & RESTAURANT,,G2900\nCEO,\"FOCUSZONE MEDIA, INC.\",Y4000\nPresident,Red Wing Dimension Dental Studio,H1400\nBERDON LLP/CPA/ATTORNEY,,Y4000\nretired,retired,H1100\nLAWYER,ECKERT SEAMANS,K1000\nAdministrator,Beatrice Home Health inc,Y4000\nPARTNER,CROWE HORWATH LLP,F5000\nSTANFORD UNIV SCH OF MED,,H5150\nINSUR,KAUFMAN FINANCIAL CORPORATION,F3100\nNURSING,MANOR CARE HEALTH SERVICES,H0000\nCONSTRUCTION,G.C.I. INC.,C4200\nLawyer,Hutson and Detorres Pa,K1000\nPLEASE SELECT,DIDNT WANT TO SAY,Y4000\nVice President,RTO,Y4000\nFINANCIAL PLANNER,FINANCIAL NETWORK,F0000\n\"EXEC VP & COO, REG UTILITIES\",DUKE ENERGY BUSINESS SERVICES,E1620\nATT,SULLIVAN HILL LEWIN REZ & ENGEL,JD200\nCEO,SCOTT INDUSTRIAL SYSTEMS,Y4000\nSENIOR VP,SHAKLEE CORP.,H4600\nLEVINE & SEITZER,,Y4000\nFriess Associates,,F2100\nAttorney,\"Pausl, Weiss, Rifkind, Wheeton & Garri\",K1000\nLIFECARE MANAGEMENT,,H3000\nRetired Teacher and Business Owner,Self-Employed,X1200\nATTORNEY,BOWLES RICE MCDAVIDGRAFF & LOVE,K1000\nGA MIGRANT HEALTH PRO,,H1710\nMIRAGE HOTE,,\nLANDSCAPING,J AND E LAWNSCAPES,Y4000\nTHORNTON & TANENHAUS,,K1000\nGEORGIA SOUTHERN,,H5100\nLobbyist,Virtua Health Systems,H0000\nSPRIGGS & HOLLINGSWO,,Y4000\nDirector,State of AZ,X3000\nPUBLISHER,VEGAS CHINESE NEWS,Y4000\nVice President,Pioneer Natural Resources,E1150\nCompany President,Shamrock Trading Corporation,Y4000\nBLACKSTONE VALLEY ELEC,,Y4000\nManager,US Russia Business Council,G1400\nExecutive,Davison Transportation Inc.,T3100\nINSURANCE,ESLICK FINANCIAL,F3000\nMUSIC TEACHER,Self employed,H5000\nANESTHETIST,SCPMG/ANESTHETIST,H1100\nPOLICE SERGEANT,SAN ANTONIO POLICE DEPT.,X3200\nCMG,,X1200\nADJUNCT PROFESSOR,COLUMBIA COLLEGE CHICAGO,H5100\nC.E.O,LYONDELL BASELL INDUSTRIES,M1000\nBOCKO INC,,Y4000\nELECTRICAL CONTRACTO,\"JACK DALLAS, INC.\",Y4000\nHAI FINANCE CORP,,G3500\nTRANSPAC CAPITAL CORP,,G1200\nDENVER PAIN MGT,,Y4000\n\"DIRECTOR, COMMERCIAL OPERATIONS\",\"UPSTATE NIAGARA COOPERATIVE, INC.\",A2000\n\"WOMEN'S VOTE DIRECTOR\",\"OBAMA FOR AMERICA/WOMEN'S VOTE DIRE\",J1200\nDesigner,self Kay Kimpton,J7400\n\"CHAIRMAN,  COX ENTERPRISES\",COX ENTERPRISES INC.,C2200\nPhysician,\"Atrium Admin Svcs, Inc.\",H3100\nPHYS,ANESTHESIOLOGISTS FOR CHILDREN,H1130\nFL HOUSE OF REPRESENTATIVES,,X3000\nINS MGM COMPENSATION,,F3100\nUNIVERSITY EXCHANGE CORP,,Y4000\nSELF-EMPLOYED/AUTHOR/WRITER,,C1100\nG M WARREN POWER TRAIN,,Y4000\nOwner,\"Luciano's Restaurant\",G2900\nAdult Probation Aide,Schuylkill County Adult Probation,Y4000\nCHAIRMAN/ATTORNEY,KELLY DRYE COLLIER SHANNON,Y4000\nReal Estate & Bail Bonds,Self-Employed,F4000\nPHYSICIAN,CORE PHYSICIANS,Z9500\nALPHIA FOREIGN TRADE RESOURCES LTD.,,Y4000\nOwner,Berg Associates,Y4000\nJ.H. ROSE LOGISTICS,,T3100\nKAUGER,,Y4000\nPhysician-Scientist,Bloom Scientific Associates,Y4000\nBoard of Trustees,Drury University,J1100\n\"SENNEFF, BERNHEIM, EMERY, ET AL\",,Y4000\nCORPORATE VP,RS INFORMATION SYSTEMS INC.,Y4000\nLicensed Clinical Psychologist,Self-employed,G0000\nTRANSCORE,,T0000\nNATIONAL URBAN LEAGUE,,H6000\nPROFESSOR,JEWISH THEOLOGICAL S/PROFESSOR,X7000\nSenior Vice President,Cornet Technology,J7500\nReal Estate Manager,\"Rajoy Management, Inc.\",Y4000\nALLGOOD HEALTHCARE INC,,H2200\nTELECOM EXECUTIVE,TELCO COMMUNICATIONS,Y4000\nHousewife,,F4100\nVICE PRESIDENT,B&D SAGAMORE,K2000\nEngineer,C3i Systems Group,Y4000\nSURGEON,\"ROBERT O. KIMBALL, MD, PC\",H1100\nLIFE INSURANCE AGE,CLARK CONSULTING,F3300\nSELF,SOTA CONSTRUCTION SERVICES INC,Z9500\nHINTON LUMBER PRODUCTS,,B5200\nMONTE FIORE MEDICAL CENTER,,H1100\nDirector Fed Govt Relations,Biotechnical Industry Assn,H4500\nFOUNDI,WILSON SONSINI GOODRICH ET A,K1000\nPRESIDENT,CLARK METALS,M2000\nCARE-FREE WINDOWS,,B2400\nEXECUTIVE,ASPEN SKI TOURS INC.,Y4000\nVP FULL SRVC & MULTI-BRD MRKTG,HILTON WORLDWIDE,T9100\nCEO,Cassling Diagnostic Imaging,H4100\nPHYSICIAN,\"THE WOMEN'S PAVILION\",Y4000\nA S F ASSOCIATES,,Y4000\nNSIA INC,,Y4000\nARCHITECT,JOHN BERRY ARCHITECTS,B4200\n\"MANUFACTURER'S REPS\",SELF-EMPLOYED,M0000\nVICE PRESIDENT,GEORGE S. COYNE CHEMICAL CO.,M1000\nConsulting Engineer,REI Engineering & Construction,B1500\nProfessor,Carlton College,H5100\nNORMAN FISCHER & ASSOC,,G5210\nDESIGNER,INTELLIGENT DEVICES,J7400\nM D / Owner,Dennis Moore M D,H1100\nSecretary,\"M&K Apartments, Inc.\",F4500\nPRESIDENT,TUFTS HEALTH PLAN,F3200\nManager,AFL-CIO,L0000\nOWNER,ANCO MCDONALD,Y4000\nCivil Engineer,Ohio Dept Of Natural,X3000\nCONSULTANT,\"MATTLIN MANDELL, INC.\",Y4000\nChairman,ECR Innovative Living,Y4000\nSELF-EMPLOYED,RIVER ROAD RESTURANTS LLC,Y4000\nSVP AND MARKET,FIDELITY INVESTMENTS,F2100\nTeacher,Cittone Institute,Y4000\nAttorney,\"Pendley, Baudin & Coffin, LLP\",K1000\nCONGRESSWOMAN,RETIRED,X1200\nATTORNEY,OXNER THOMAS + PERMAR,K1000\nHAMILTON PLACE ASSOCIATES,,T9100\nDIVERSIFIED MAILING,,Y4000\nHOPPING EYE ASSOCIATES,,H1120\nMANAGER,SELF,Z9500\nSACHS ELEC,,Y4000\nCABARRUS RADIOLOGISTS,,H1130\nPersonnel,Evergreen Solutions,Y4000\nPrincipal/Investor,Monness Crespi Hardt & Company,F2100\nMANAGING DIRECTOR,\"OFFICE OF ROBERT F KENNEDY, JR\",Y4000\nREAL ESTATE INVESTME,WSJ PROPERTIES,F4200\nELECTRICAL CONTR,FORTIN ELECTRIC CO,B3200\nCAR SALESMAN,JONES AUTO GROUP/CAR SALESMAN,Y4000\nSR. VP,FIRST ENERGY,E1600\nPresident,E King Construction Company,B1500\nCEO,TOTAL MILITARY MANAGEMENT,Y4000\nPARTNER,\"WATKINS, LOURIE, ROLL & CHANCE PC\",K1000\nTOP QUALITY CONTROL EXEC -- GROUP (,HONEYWELL INTERNATIONAL,M2300\nExecutive,Music,C2000\nLEWS COUN,KENTUCKY COURT OF JUSTICE,Y4000\nDIRECTOR GAS INFRASTRUCTURE,NextEra Project Mgmt,E1600\nCFO,CBEYOND COMMUNICATIONS,Y4000\nTAUNMAN CO,,Y4000\nMedical Equip Co. Ow,C. P. Motion,J7400\nRETAIL GROC,OKIMOTO CORP,Y4000\nFilmmaker,Swinging T Productions,Y4000\nJULANDER ENERGY COMPANY,,Y4000\nESSEX DEVELOPMENT,,Y4000\nTEACHER,NEW YORK CITY PUBLIC SCHOOLS,X3500\nC.E.O,MASS MUTUAL,F3300\nSENIOR DIRECTOR EXTERNAL AFFAIRS,COMCAST CORP,C2200\nPARK PLANNER,\"CITY OF PITTSBURGH, PA.\",X3000\nMBM ADVISORS INC,,Y4000\nADMINSTRATOR/CHIEF EXECUTIVE OFFIC,\"NURSES CARE, INC.\",H3100\nINSURANCE BROKER,MARSH SALDANA/INSURANCE BROKER,F3000\nCHAIRMAN,SOUTH CENTRAL BANK,F1200\nAttorney,Zakheim and LaVrar,Y4000\nattorney/state senat,self,K1000\nFincnce Consultant,Bertrand Consulting Llc,Y4000\nSOFTWARE ENGINEER,EARTH NETWORKS,E2000\nSTOTTS APPRAISAL,,F4700\nUS TAX & BUSINESS CONSULTANT,,F5300\nCS DESIGNS,,Y4000\nPINNACLE TRADING LLC/EXECUTIVE,PINNACLE TRADING LLC/EXECUTIVE,F2200\nAttorney,Self employed,B5100\nVice President,LFP,Y4000\nPresident,Bay Mills Indian Community,G6550\nPIRELLI ARMSTRONG TIRE CORP,,LM100\nFarm Wife,Self-Employed,A1000\nAttorney,National Gay & Lesbian Task For,J7300\nMCCABE & COZZENS ESQS,,Y4000\nFinance Manager,Ford Motor Company,T2100\nWESLEY CROW ELECTRIC,,Y4000\nMGR. PROJ COORD & PERF ANA,UST INC.,A1300\nINVEST,\"NEFF CAPITAL MANAGEMENT, LLC\",F2100\nEXECUTIVE VICE PRESIDENT,RENAISSANCE EQUITY LLC,F4500\nStock Trader,Sloan Securities,Z9500\n15007,,C2100\nPRESIDENT,THE CLOSET WORKS,Y4000\nANESTHESIOLOGIST,THOMAS JEFFERSON UNIVERSITY,Z9500\nCommodity pool opera,\"Legacy Capital Group, Inc.\",J1100\nMUTH ELECTRIC,,B3200\nDermatologist,Dermatologist,H1130\nMANAGEMENT,COMMERCIAL ROOFING INC.,B3000\nSenior Vice Presiden,Dominion Energy,E1140\nCH,PROVIDENCE YAKIMA MEDICAL CENTER,H2100\nHealthcare Executive,Montefiore Medical Center,H2100\nMortgage Broker,Prime Time Mortgage Corporation,F4600\nBLACK KELLY SCRUGGS & HEALEY,,G2900\nOIL RECYCLING,,E3000\n\"TRAINER, ROBERTSON, SMITS & WADE\",,J1200\nPREISDENT,,Y3000\nAttorney,\"White, Cirrito and Nolly LLP\",Y4000\n\"PRESIDENT, CEO\",WINDWAY CAPITAL CORP,M1500\nGeneral Management,Time Inc,C2000\nRetail Small Business Owner,Silver in the City,Y4000\nDEVER & ASSOCIATES,,Y4000\nBANKER,COLDWELL-LAS COLINAS,Y4000\nEXECUTIVE,PASLOUR MORIEUX CONNAUGHT,K2000\nVENETIAN BLIND CREPT,BUSINESS OWNER,Y4000\nBUSINESS SYSTEMS CONSULTANT,SELF-EMPLOYED,Y4000\nKTMO RADIO,,C2100\nCONSTRUCTION,HANSEN CONSTRUCTION INC.,B1500\nDEAN OF LAW SCHOO,HOWARD UNIVERSITY,H5100\nPHYSICIAN,NEW IMAGE PLASTIC SURGERY ASSOCIATE,H1130\nAssociate,Wise Associates,Y4000\nRESIDENTIAL BUILDER,SELF-EMPLOYED,B2000\nPresident,Midwest Tool & Engineering Co.,M5000\nMANU,\"HUMPHRIS KIEFER & ASSOC., INC.\",Y4000\nREST,,G2900\nEXECUTIVE VICE PRESIDENT,LM SANDLER,J5100\nEngineer,\"DDC Engineers, Inc.\",B4400\nPRESIDENT,CAL-TEX INC.,Y4000\nPARTNER IN CHARGE,ADAMS AND REESE,K2000\n\"Director of Gov't Relations\",Roetzel & Andress,J7400\nPORTFOLIO MANAGER,NUMERIC INVESTORS,Z9500\nAttorney,Sutherland Asbill & Brennan,K1000\nGREAT PLAINS COMMUNI,,C4100\nREGIONAL FINANCE MANAGER,EMC CORPORATION,C5130\n\"SVP, CFO & TREASURER\",\"EQUITY LIFESTYLE PROPERTIES, INC.\",F4100\nC.E.O.,SCITOR CORPORATION,J6200\nBusiness Executive,S & K Sales Co,G2500\nYOUNG @ PERL PLC,,T1600\nOFFICE OF INTERNATIONAL TRADE,,Y4000\nPRESID,SSM REHABILITATION INSTITUTE,H2100\nCEO/President,Robinson Construction Company,B1500\n\"BARNEY'S NY\",,J1200\nPAWNBROKERS OF MANASSAS,,G4600\nFILM & TV PRODUCER,FRED BERNER FILMS,C2400\nREAL ESTATE,SUTTON,Y4000\nSTRATEGIC COMMUNICATIONS,FREDDIE MAC,F4600\nSenior VP,Strategic Marketing Innovation,K2000\nIT MANAGER,STATE FARM,Y4000\nPresident,Dimeo Construction Co.,B1500\nPhysician,Boehringer Ingelheim,H4300\nNUCLEAR CHEMIST,SELF-EMPLOYED,Y4000\nPartner,\"Poppe Holdings, LLC\",Y4000\nATTORNEY,WILEY REIN/ATTORNEY,K1000\nMANAGER,LADY MARY INC,Y4000\nCOMMERCIA REAL ESTATE,TISHMAN SPEYER,F4100\n\"CORP. VP, GLOBAL SUPPLY CHAIN\",\"WOODWARD, INC.\",M2300\nPHYSICIAN,SPRINGFIELD ILLINAS,Y4000\n\"SCHWARTZ INVESTMENTS, INC.\",,Y4000\nCAROL J WILLIAMS IN,,K1000\nPROFESSOR,UNIVERSITY OF NEBRAS,H5100\nCORRIGAN MOVING & STORAGE CO,,T3100\nSecretary/Payroll Clerk,\"Commercial Tooling, Inc\",Y4000\nEXECUTIVE,NAUMES INC.,Y4000\nfarmer,requested,A1000\nLawyer,\"Adelson, Testan, Brundo & Jimenez\",K1000\nATTORNEY,\"HURLEY, BURISH & STANTON\",K1000\ncreative director,Kaplan Theater Group,C2900\nENGINEER,AMPORTS INC.,Y4000\nCamp Director,Camp Cedar,Y4000\nPhysician,Fallon Clinic,Z9500\nPRESIDENT,DETROIT FORMING INC.,Y4000\nSALES EXECUTIVE,FOX BROADCASTING,J1200\nADMINISTRATION,GEORGIA HOSPITAL ASSOCIATION,H2100\nMGR BUS &,ENTERGY GULF STATES INC.,E1620\nBARBOUR&GRIFFITH,,K2000\nPRESIDENT,\"FILIPINA WOMEN'S NETWORK\",J1200\nINSURANCE,IRONSHORE,Y4000\nSHAUGHNESSY ROOFING INC,,B3000\nbusiness,ML Strategies,K2000\nVideo Producer,Green Valley,J9000\nATTORNEY,BROTMAN NUSBAUM FOX,Z9500\nPROD,J. JACOB VAN AKIN MEDIA DESIGN,Y4000\nEXEC,BELL POWER SYSTEMS,Y4000\nWELLS ELECTRONICS INC,,Y4000\nSALES,CITADEL,F2700\nCHAIRMAN,THE WESTERVELT COMPANY,Y4000\nPETTIT & MARTIN,,K1000\nCRAIG TRANSP CO,,Y4000\nSa;es,Sanofi-Avertis,Y4000\nCHAIRMA,WILLIAM E WOOD & ASSOCIATES,F4100\nINFO REQUESTED,Little Kids & Ko. Ink,Y4000\nSELF-EMPLOYED,SELF-EMPLOYED,G5800\nVICE PRESIDENT,ELDORADO,F3000\nVP MARKETING,WEIL PARTNER,Y4000\nWINNER LINCOLN MERCURY,,T2300\nEngineer,\"S. C. M. Consultants, Inc.\",Y4000\nCOASTAL ENGINEERING,,B4400\nPHYSICIAN,SOUTHWEST RADIOLOGY,H1130\nEPCO CARBON DIOXIDE,,Y4000\nAKIBIA CONSULTING,,J7400\nPSYCHOLOGIST,KAISER,H2000\n(INFORMATION REQUESTED),,F3100\nConsultant,Paul Magliocchetti Associates,J7400\nPRESIDENT,FEDERALIST GROUP LLC,K2100\nFire Inspector,New Lenox Fire Department,Y4000\nFood Dist.,M. F. D.,Y4000\nPRESIDENT,UNITED TALENT,Y4000\nCHAIRMAN EMERITU,RYDER SYSTEMS INC.,T3000\nAttorney,\"Dave Pine, Attorney at Law\",K1000\nLOVE ADVERTISING,,G5210\nINFORMATION TECH,SPAWAR SCC RETIRED,X1200\nELECTRICAL CONTRACTO,BRADFORD ELECTRIC INC.,B3200\nCONSULTING,LMT INC.,Y4000\nCONFERENCE,E.J. KRAUSE & ASSOCIATES,Y4000\nNEW COURSE CAPITAL,,J5100\nRealtor,Allen Real Estate,J1200\nEXECUTIVE,MILLER PUBLISHING INC.,C1100\nVice President,River Pile & Foundation Co,Y4000\nMARKETING &,SELF-EMPLOYED HOMEMAKER,G5280\nAttorney/Executive,PECO Energy Company,E1600\nBanker,Sooner State Bank,F1100\nFinancial Analyst,Petrie & Company,F2100\nNATL COUNCIL OF EDUCA OPPORTUNITIES,,Y4000\nFOOD SAFETY INSPECTOR,FL DEPT OF AGRICULTURE,X3000\nVice President Tour,Carnival Cruise Lines,T6250\n\"VP, GOVERNMENT AFFAIRS\",SPRINT,C4300\nELLIS-HARPER MANAGEMENT,,Y4000\nJ P THIBODEAUX INC,,T2300\nExecutive,United Energy Corp,E1100\nBUSINESS OWNER,FITNOLOGY INC. DBA FITNESS MASTER,Y4000\nSVP CORP. & GOV,H. J. HEINZ COMPANY,G2100\nARCHITECT,BONE LEVINE ARCHITECTS,B4200\nExecutive,Evolve Capital,J1100\nCompliance Director,Boeing,D2000\nWEST 135TH DEVELOPMENT,,Y4000\nVICE PRESIDENT,COVENTRY,Y4000\nBUSINESS CONSULTANT,CACI DYNAMIC SYSTEMS,Y4000\nNJ/SELF/LEGISLATOR/DENTIST,,Y4000\nPRESIDENT,FALMOUTH HOMES LLC,B2000\nTEMPLE-INLAND MORTGAGE,,M7000\nCHAIRMAN,TIEDEMANN INVESTMENTS,F2100\nC.E.O.,MORTENSON FAMILY DENTAL HOLDINGS,H1400\n\"MISSOURI FAMILY HEALTH COUNCIL, INC\",,Y4000\nALLSTATES FREIGHT SERV INC,,Y4000\nMarketing,UNION PACIFIC RAILROAD #11405,T5100\nOR&K INC,,Y4000\nAttorney,Kemper Insurance,F3100\nSCIENTIFIC,MONATAY ENTERPRISES LLC,Y4000\nPresident,Image Wear Expo,M3100\nADMINISTRATOR,ST. THOMAS UNIVERSITY,H5100\nRisk Manager,Homebanc,F1100\nCDA INDUSTRIAL FAB,,Y4000\nSOLE PRO,BOWSERS PERSONAL HOME CARE,H3100\nVP Govt Affairs,BAE Systems L&A,D8000\n\"artist's manager\",doug chapin management,Y4000\nPresident,Price Charities,G0000\nOWNE,ROSWELL LIVESTOCK & FARM SUPPL,A3000\nPresident,Destination St. Louis,Y4000\nRESTAURATEUR,SPRING HOUSE INC.,G2900\nCorporate Officer,B&B Realty Services,F4200\nATTORNEY,\"SUNDE, OLSON, KIRCHER AND ZENDER\",Y4000\nALHAMBRA COURT,,Y4000\nEdelsteins Better Fu,Self,G0000\nJ R COUGHLIN INC,,Y4000\nPhysician,Univer Of Florida,J1200\nManaging Director,AIG Financial Products Corp,F2100\nOWNER,CRE8,Y4000\nCFO,FIBROGEN,Y4000\nUNIVERSITY ADVANCEMENT,,Y4000\nOWNER,MONTANA HOUSE GIFTS SHOP,Y4000\nPresident & CEO,Consumers Energy,E1620\nEXECUTIVE,ELAVON,Y4000\nFULLBRIGHT AND JAWORSKI,,K1000\nMAENNER REAL ESTATE CO INC,,F4200\nSULLIVAN & WORCESTER LLP,,E1600\nDT PROPERTIES/N/A,,F4000\nneurologist,Neurological Services of Orlando,H1130\nhousewife,not employed,G2900\nCEO,\"LOWE'S COMPANIES\",G4500\nEXECUITIVE,NEW PENN MOTOR EXPRESS,Y4000\nINVESTMENT MGR,MITCHELL PARTNERS LP,Y4000\nSecurity/ Home Schoo,Citizens National Bank,F1000\nENGINEER,\"LOWY & DONNATH, INC.\",Y4000\nphysician,Matrix Health Systems,Y4000\nLEVI STRAUSS,,J7400\nCASE LOMABARDI & PETTIT,,Y4000\nU.S. ARMY,REQUESTED,X5000\nLIBRARIAN,WILMETTE PUBLIC LIBRARY,Z9500\nEXECUTIVE,EMIGRANTS SAVINGS BANK,F1200\nVice President,Novelis,Y4000\nVANTAGE POINT ADVISORS INC,,Y4000\nTHE COLUMBUS PARTNERSHIP,,J9000\nPROPERTY MANAGER,ROUND HILL PACIFIC,Y4000\nAVIATION CHARTER,SELF,T1400\nCEO,Arista Care Health Services,Y4000\nANESTH & PAIN MEDICINE,,H1130\nSELF EMPLOYED,VISTA SOL ENT,Y4000\nOwner,Tan Can Tanning Salon,Y4000\nBuilder,Andreasen & Bulgin Construction,B1500\nATTORNEY,\"ROBERSON, KIMBALL, & JALTOROSSIAN/A\",Y4000\nADMINISTRATIVE EMPLOYEE,WORLD BANK,X4200\nAircraft Designer,Embassy Aerospace,Z9500\nPHYSICIAN,CLARKSON COLLEGE,Y4000\nPHYSICIAN,UMASS MEMORIAL MED CTR,H1100\nMortgage Banker,The Carroll Mortgage Group,F4600\nEXECUTIVE VICE PRESIDENT,REVLON,M3300\nCLINICAL SOCIAL WORKER,MF COUNSELING CENTER,Y4000\nMD,\"CORNEA ASSOCIATES, P.C.\",H1120\nSENIOR DIRECTOR,\"RENT-A-CENTER, INC.\",G5300\nOWNER/RESTAURATEUR,\"LULU'S LANDING, INC.\",Y4000\nCONSULTANT - CIVIC VENTURES CO.,SELF-EMPLOYED,G5200\nNONE,NOT EMPLOYED,X3500\nATTORNEY,KEVIN OTERO,Y4000\nBROKER,CORAL SHORES REALTY,J9000\nDOCTOR,KIDNEY CARE CENTER,Y4000\nAIE RESOURCES,,E1210\nLOBBYIST,QUINN GITLESPIE & ASSOC,K2000\nPHYSICIAN,\"MICHAEL A. WESTON, M.D., P A.\",H1100\nESTATE RESEARCHER,\"CRIST RESEARCH,INC\",Y4000\nPEETS MEATS,,Y4000\nAssociate,Premier Property Management,F4500\nOwner,Janta Intl. Co. Inc.,Y4000\n\"CONN'S INC.\",CEO,G0000\nVP,J&M CORP,Y4000\nCONSULTANT,SAM SEVIER LLC,Y4000\nEXECUTIVE,THE SIEGEL GROUP,F4100\nTax Attorney,\"S. F. X. Broadcasting, Inc.\",C2100\nNote Business,Self,J7400\nAMERICOLD LOGISTICS,,T7200\nDirector,Connell Sugar & Rice,A1000\nClinical Psychologist,\"Sylvia F Carra, PhD\",Y4000\nBusiness Owner,\"Eastern Materials, Inc\",Y4000\nEDWARDS & JONES,,Y4000\nGENERAL MANAGER,INDIANAPOLIS DRUM SERVICE,M7000\nINVESTOR,FAIRFIELD,J1100\nOwner/President-CEO,\"Analytical Services, Inc.\",Y4000\nattorney,\"Harris, Harris, Bauerle, & Sharma\",K1000\nBusiness Owner,\"Mindworks Multimedia, Inc\",Y4000\nBERLINER FOODS CORP,,G2500\nRESEARCH ANALYST,DAVIDSON KAMAMER,Y4000\nV/W Coordinator,Dickinson County,X3000\nARCHAEOLOGIST,URS CORPORATION,B4000\nCHEMIST,MEADWESTVACO,M7100\nCEO,Boston Consulting Group,G5270\nPresident and CEO,ProMedica Health System,H2100\nPhysician,Flushing Hospital,H1100\nAttorney,\"Kinoy, Taren And Geraghty\",K1000\nReal Estate,Cornish & Carey,Y4000\nBELL ATLANTIC NETWORK SERVICES,,C4100\nSecretary,Gillam & Mason,Y4000\nTRACTOR REPAIR,,Y4000\nMANAGERIAL,ORGANIES INC.,Y4000\nGOOSENECK TRAILER,,T3200\nAttorney,\"Elmer J George, Attorney at Law\",K1000\nLISA ZENNI INTERIORS,,G5000\nCHIEF FINANCIAL OFFI,CHATHAM ASSET MANAGEMENT,F2100\nReal Estate Developer,\"Urban Land Interests, Inc\",F4000\nEDGEWOOD MGMT,,F2100\nGABELLI ASSET MANAGEMENT CO.,,F2100\nTOWN COMMISSIONER,PALM BEACH,Y4000\nEngineer,MIK Fund Services,Y4000\nAttorney,Kirkpatrick and Lockhart,Z9500\nFundraiser,General Theological Seminary,X7000\nCEO,TEEVIN BROS LAND & TIMBER,A5000\nSHAHEEN CHEVY INC,,T2300\nASSET M,\"MONTICELLO ASSOCIATES, INC.\",Y4000\nPROFESSOR,CAL. STATE-NORTHRIDGE,Y4000\nATTORNEY,\"RILEY WANOCK & JACOBSON, PLC\",Y4000\nCollege Professor,ILL Institute of Technology,H5100\nPRESIDENT EMERITUS,,Y4000\nhealthcare executive,Not employed,X1200\nACTRESS/PLAYWRIGHT,SELF,C2400\nREAL ES,ARIZONA RETAIL ADVISORS LLC,Y4000\nCONSULTANT,CAPITAL CITY STRATEGIES,K2000\nCREDIT BUREAU OF MONTANA-EASTERN DI,,F1400\nROBGLO INC,,Y4000\nHealthcare,\"'Best Doctors, Inc.'\",Y4000\nOwner,\"Shuler Brothers, Inc.\",Y4000\nOrthopaedic Surgeon,Chattanooga Bone & Joint Center,H1130\nKEESHIN BUSING,,T4100\nCOMMUNICATION CON,WAGNER ASSOCIATES,J7400\nMARKETING CONSULTANT,THE PEER GROUP,Z9500\nJeweler/ Bookkeeper,\"Cunningham's\",Y4000\nATTORNEY,EPS,Y4000\nFarm/Ranch,\"MC LENDON ACRES, INC.\",A1000\nSELF-EMPLOYED/APPRAISER/FARMER,,A1000\nINV,Self,Z9500\nSAN JOAQUIN HELICOPTER,,T1600\nCEO,Protein Sciences Corp.,Y4000\nChief Executive Officer,New Breed,G5200\nSTATE SENATOR,STATE OF NEW HAMPSHIRE/STATE SENATO,X3000\nReal Estate Developer,A.B.G. DEVELOPMENT,F4100\nSales Representative,CHEMPLEX,Y4000\nCHIEF OPERATIONS OFFICER,\"AAA NORTHERN CALIFORNIA, NEVADA AND UT\",F3100\nBIPIN N. BHAYANI MD SC,,Y4000\nLAWYER,CAROSELI BEACHLER,K1000\nCourier/ Handler,Federal Express,T7100\nInsurance Agent,\"Brown & Brown, Inc.\",F3100\nATTORNEY,FITZGERALD & ASSOCIATES,Y4000\nCEO,\"WATERSHED ASSET MANAGEMENT, LLC\",F2100\nSHAPIRO & ADAMS PA,,K1000\nLA DISTRICT ATTNY,,J1100\neconomist,ILSR,Y4000\nREAL ESTATE,\"O'SHAUGHNESSY, INC.\",J7400\nIT MANAGER,SAS INSTITUTE,Z9500\nHARPER & THOMPSON CO,,Y4000\nDIREC,ANNE BLUE HOME HLTH CARE AGCY,H0000\nPHYSICIAN,C.I.N.R.,Y4000\nPresident,Pacific Capital Group,F2100\nPRESIDENT,\"VINYL TECH, INC.\",Y4000\nEXECUTIVE,JENNA CONCRETE CORP.,B5100\nCVP CHIEF,BAXTER INTERNATIONAL INC.,H4100\nFREY ELECTRIC,,B3200\nSales Manager,Gowan Company,Y4000\nSales,Bacome Insurance,F3100\nBusiness Agent,I.U.O.E. Local 12,LB100\nVICE PRESIDENT CORPORATE AFFAIRS,MEDIMMUNDE/VICE PRESIDENT CORPORATE,H4300\nDisabled retiree,Disabled,Y1000\nPHYSICIANS PLUS MEDICAL G,,H3700\nPhysician,Baptist Health,H3000\nGLIMACHER REALTY TRUST,,F4200\nHOLLIDAY ASSOCIATES,,Y4000\nATTORN,MORICOLI HARRIS & COTTINGHAM,K1000\nATTORNEY,LAW OFC. OF VINCENT J. CIECKA,K1000\nComputer Programmer,\"Isotope Services, Inc.\",Y4000\nOWNER,HOLLYWOOD HAIR,Y4000\n\"Chairman, President, CEO\",HCR-ManorCare Inc,Y4000\nDealer,Pinegar Chevrolet Inc,T2300\nLAWYER,\"KIA LAW FIRM, LLC.\",K1000\nVP,STOLLER,Y4000\nOWNER,SEATTLE PACIFIC TRADING,Y4000\nPresident,Globalvest Management,F2100\nEdwards and Angell L,Legal Sec.,Y4000\nEXECUTIVE,PASSMARK SECURITY INC.,C5140\nProfessor,Cooper Union,H5100\nChariman,Vigor Properties,F4000\nEmergency Physician,\"Richard E Lally, MD\",H1100\nBRIAN HOMES INC,,Y4000\nT G M ASSOCIATES,,F4500\nMEMBER OF BEAM BOARD OF DIRECTORS,HORIZON CONSULTING GROUP LLC,G2820\nMANAGER,\"ROBMAR, LLC\",Y4000\nNEW HAVEN TERMINAL INC,,T6200\nCONSULTANT,CONSERVATION STRATEGIES,Y4000\nREAL ESTATE AG,SJB REAL ESTATE INC.,F4000\nTHE WW GROUP INC,,Y4000\nAGENT,\"Middaugh & Associates, Inc\",F3300\nAttorney,\"Wachtell, Lipton, Rosen & Katz\",J5100\nSecretary,Charles E Smith,F4100\n\"WINTHROP, STIMSON\",,K2000\nPresident,National Protective Services Inc.,Y4000\nOwner,Heart Of Dixie,Y4000\nDECORATOR,SELF EMPLOYED,Z9500\nCompliance Analyst,Williams-Sonoma,G4400\nPresident/CEO,NY Business Development Corp,Y4000\nGALLATIN GROUP,,K1000\nTELLEFSEN INVESTMENTS INC,,F2100\nSURVEYOR,\"E.D.I., INC\",E1200\nCASA RILLO,,G2900\nManaging Creative Di,Porter Novelli,G5210\nRequested info 10/31,Requested info 10/31,Y2000\nConsultant,Self- George Campbell & Assc,J1200\nPRESIDE,BLOOD PRESSURE TESTING INC.,Y4000\nCOOK,,G2900\nATTORNEY,SWANSON & MCNAMARA LLP/ATTORNEY,Y4000\nCEO,ConnamaraSystems LLC,Y4000\nPHYSICIAN,LAKEVIEW COMMUNITY HOSPITAL,H2100\n\"21'ST CENTURY GROUP\",,K2000\nMOONEY INSURANCE AGENCY,,F3100\nTREASURER,PIEDMONT FINANCIAL TRUST,Y4000\nSMALL BUSINESS OWNER,DALTEK INC,Y4000\nCOLLEGE TEACHER,FORRUM COLLEGE,H5100\nDONALDSON LUFKIN & JENNETTE,,X1200\nPATROLEUM LANDMAN,KOOTENAI RESOURCE GROUP,Y4000\nAccountant,CSC,Y4000\nPATHOLOGIST,\"BELLEVUE WOMAN'S HOSP\",H1130\nC.E.O.,SAINT JUDE HEALTHCARE,H2200\nExecutive,Image Printing Solutions,C1300\nMary Kay Cosmetics,Independent,C5110\nEXECUTIV,AMERICAN FOR FAIR TAXATION,J4000\nNurse,\"Bryan's Center Rehab\",Y4000\nBusiness Manager,Jhenn Systems,Y4000\n\"OLSON, FRANK PC\",,K1000\nATTORNEY AT LAW,BARKLEY T. MILLER,Y4000\nCOMMUNITY FIRST NATIONAL,,F1100\nCenter Director,MESA,Y4000\nNON PROFIT EMPLOYEE,CITIZENS FOUNDATION,Y4000\nDENTIST,E. ATHENS FAMILY DENTISTRY,H1400\nMARKETING,KOMTEK MEDIA,Y4000\nENGINEER,UNIVERSAL DESIGN INC.,Y4000\nMANAGEMENT,ATS CONSTRUCTION,B1500\nTHUNDER RIVER,,J1200\nOwner,Alphanumeric Systems,Y4000\nEXECUTIVE,DAVIS ENTERPRISES,Y4000\nAttorney,Zuclorman Spader LLP,K1000\nATTORNEY,KUYKENDALL & ASSOCIATES,K1000\nBLAHBLAH,BLAHBLAH,Y4000\nVP,Ra,Y4000\nM FABRIKINC INC,,J5100\nPRESIDENT,DETRONICS,Y4000\nSUGAR BEET GROWERS,,A1200\nBADGER LIQUOR,,G2840\nREAL ESTATE BROKER,JOYCE LEONARD AND ASSOCIATES,F4200\nM.  D.,CANCER CENTER OF KANSAS/M.  D.,H2000\nLobbyist,American Hospital Assn.,H2100\nCHAIRMAN/FOUNDER,ENERGY EDUCATION,E2000\nBREEDERS CUP LTD,,G6400\nPROFESSOR,WASHINGTON UNIVERSITY,J1200\nHOUSEDAD,,Y1000\nORINCON,,C5100\nPRESIDENT,DFS INC.,A3100\nCONSULTANT,BILL J CROUCH & ASSOCIATES,Y4000\nChairman,Eastridge Group,Y4000\nMarketing Specialist,Self,G5280\nInvestment Manager,Friess Association,F2100\nBOARD MEMBER,PRINCIPAL FUNDS,F2100\n\"LEWIS, BABCOCK AND HAWKINS\",,K1000\nCRISIS COUNSELOR,SANTA CLARA COUNTY,X3000\nARCHITECT,DAVIDA ROCHLIN ARCHITECTURE,B4200\nInvestor,Tailwind Capital/Self-Employed,F2600\nSALES MANAGER,CHEVRON CORPORATION,E1110\nJOHN P SEVASTOS DO & ASSOCIATES INC,,H1130\nPartner,Laurus,F2100\nmother,none,JE300\nEXECUTIVE VICE PRESIDENT & GENERAL COU,TURNER BROADCASTING SYSTEM INTERNATION,C2200\nTEACHER,WATERTOWN SCHOOL,Y4000\nGENERAL MANAGER,SYNERGY BEEF,A3300\nCEO,AREA ENERGY & ELECTRIC INC.,B0500\nDEPARTMENT STORE,,G4300\nOwner Partner,Access Health Solutions,J7400\nBALLENGER STRIKE & ASSOC,,Y4000\nCORPORATE TRAINER,GILEAD SCIENCES,H4500\nFOUNDER& CEO,WILSHIRE ASSOC,F2100\nH J KALIKOW & ASSOCIATES,,F4100\nExecutive,Petter Buttenweiser & Assoc,J1200\nEARNHARDT CHRY PLY JEEP,,T2300\nAssociate Executive,Illinois Manufacturers Assoc.,Y4000\nCHRISTMAS CAROLS,,Y4000\nPartner,Van Scoyoc Associates,K2000\nNATURAL RESOU,BUREAU OF RECLAMATION,X3000\nDIRECTOR,SAVANNAH CHAMBER,Y4000\nCEO,Trident USA,C5120\nNURSE ANESTHETIST,WAXAHACHIE ANESTHESIA CONSULTANT SE,H1130\nOWNER,SHORTLIST TALENT AGENCY,Y4000\nSPECIAL PROJECT,SFRC,Y4000\nSTOCK BROKER,TEJAS SECURITIES,F2100\nPRINCIPLE,TENNESSEN INVESTMENTS,Y4000\n\"FAIRVIEW PHYSICIANS' ASSOC\",,H1100\nExec.,ZT Tech. Services,J5100\nPARTNER,THE BLEZNAK ORGANIZATION,Y4000\nCHIEF OPERATING OFFR,TODD SHIPYARDS,T6100\nPatent Analysis & Software Litigation,Self employed,Y4000\nPresident,Joseph W McCartin Insurance,F3100\nBabysitter/Nanny,\"Boston's Best babysitters\",Y4000\nPARTNER,MACKET DATABASE,F2000\nAttorney,Gersowitz Libo & Korek P.C.,K1000\nSurgeon,Cooper Clinic,H1130\nOWNER,PHARMASIST,H1750\nSHELL CONSTRUCTION CO,,B1500\nWORLD RESOURCES CO,,M5200\nUnable to obtain,Best efforts,X1200\nBUS/TRUCK/VAN DRIVER,CLAYTON COUNTY SCHOOL DISTRICT/BUS/,L1300\nPROFESSOR,UNION-PSCE,Y4000\nCHESTER & ALLEN L L P,,K1000\nCFO,AEROFRAME,Y4000\nOwner,Political Works,Y4000\nCITI-BANK OF ILL,,F1100\nPresident,CT Dye & Sons Lumber,B5200\nCPA,\"JE PRUDEN, CPA\",F5100\nCFO,SAE INTERNATIONAL,Y4000\n\"TESSARO'S\",,Y4000\nPresident & CEO,Pacific Advisors,F2600\nCB BOOTS HILL RE,,Y4000\nKYNIKOS ASSOCIATION LTD,,F2100\nATTORNEY,VASQUEZ AND CO,K1000\nmarriage and life coach,self employed,G0000\nSales Manager,SMS Meer Service Inc,Y4000\nHALLMAN AND LORBER INC,,F3100\nSAUNDERS MANUFACTURING,,M5000\nINTERNL ASSOC OF RESIDENTIAL & COMM,,Y4000\nROBINSON LAKE SAWYER MILLER GROUP,,G5210\nVP SALES,DETOUR BAR,G4300\nVP,HEALTH POLICY SOURCE/VP,K2000\nMANHARD CONSULTING LTD,,Y4000\nLAWYER,ROBERTSON MONAGLE EASTAUGH,K2000\n\"CHRISTIE'S ENTERPRISES LTD\",,Y4000\nEnviromental Tech,Chevron Phillips Chem Co Lp,M1000\nWRITER,STAND UP COMIC,C1100\nCENTER,CHARLESTON JOB CORPS CENTER,H5200\nHACKETT & ARNOLD,,F4200\nPHYSICIAN,CENTRAL JERSEY HAND SURGERY,Y4000\nCRITTENDEN CO KY,,Y4000\nCONTRACTOR,BENNOR INC,Y4000\nVice Chairman,Tudor Investment Corporation,F2700\nOWNER,THE ARTERY GROUP,F4100\nfianancial services,Jeffries,F2100\nHENRY FORD HEALTH SYSTEM MACOMB HOS,,Y4000\nBOSSONG HOSIERY,,Y4000\nMANTENO STATE BANK,,F1100\nHARTLAND FOOD PRODUCTS INC,,G2100\nLAPEKA INC,,Y4000\nReal Estate,Managing Director,Z9500\nOfficer,U.S. Air Force,X5000\nCommodities Trader,Sef-Employed,F2200\nPresident,Dove Mortgage,F4600\n\"MIGDAL, TENNEY, GLASS ET AL\",,K1000\nGEOLOGIST,SELF,Y4000\nTECH SUPPORT,ORACLE,J1200\nPRESIDENT,LAKE ELMO BANK,F1000\nService Director,Sheffield Lake,Y4000\nBS&T LLC,,Y4000\nAttorney,\"Spencerware, LLC\",K1000\nPARTNER,GBLOCK LLC,Y4000\nMODINE MANUFACTURING COMPANY,,Y4000\nHOMEMAKER,NOT EMPLOYED/HOMEMAKER,G4200\nPresident,Bonita Packing Co,M1700\nBRAND BURSTIN & RUNNET,,Y4000\nENGINEER,\"MARATHON PIPE LINE, LLC\",E1110\nCLIMATE SCIENTIST,NASA,X3000\nAEROTECH INC,,Y4000\nLEBOW WEKSEL & CO INC,,Y4000\nREAL ESTATE EXECUTIVE,FEDERAL REALTY INVESTMENT,F4100\nGOVERNMENT AFFA,PRESTON GATES ELLIS,K2000\nChief Operating Offi,Four M Capital LLC,F0000\nLAWYER,PUBLIC CITIZEN,J9000\nVice President Trust,First Tennessee Bank,F1000\nBEAR STERANS & CO INC,,F2300\nChemical Engineer,Petrox Resources Inc,Y4000\nPRESIDENT,\"BENEDETTO COMMUNICATIONS, INC\",Y4000\nLOWENSTEIN FIRM,,K1000\nCOMPUTER STORAGE SPECIALIST,DYNAMIX GROUP,Y4000\nMANAGEMENT,AOPA ASF,Y4000\nGroup Vice President,Blue Cross Blue Sheild of Florida,F3200\nDENTIST,\"MACKLER, LUTINS & KNOX, DDS\",H1400\nEXECUTIVE,THE CLARK ESTATES,F5000\nAttorney,\"VanGrack, Axelson & Williamowsky\",K1000\nfinance,barclays capital,F2300\nUS GOVERNMENT,US AIR FORCE,X5000\n\"GOV'T\",USGS,Y4000\nManaging Director,\"GB FIXED ASSET SOLUTIONS, LLC\",G5300\nATTORNEY,COLLERAN OHARA & MILLS,K1000\nDirector,\"European Chalet, Inc\",Y4000\nPresident,Shrut & Asch Leather Co. Inc.,Y4000\nCONSULTANT ON,PROGRAM FOR HUMAN PO,Y4000\nCARRET & CO INC,,J7500\nATTORNEY,\"ROSEN, JENKINS & GREENWALD, PC/ATTO\",K1000\nVeterinarian,Mundelein Animal Hospital,A4500\nCOMMUNITY DEVEL CTR,,X3000\nROANOKE COURT SYSTEM,,Y4000\nPROSTHETIST-ORTHOTIST,CFI,H4100\nEVP HR,\"MCKESSON CORPORATION, INC.\",H4400\nOWNER,WHEEL CHAIRS OF KS/OWNER,Y4000\nFARMERS ALLIANCE MUT. INS CO/I/T MA,,Y0000\nPresident,Tactical Electronics& Military Supply,Y4000\nEXECUTIVE,UCG,Y4000\nUMPHENOUR MARTIN LONSDOR,,Y4000\nOWNER,AMBITION,Y4000\nresearcher/visiting teacher,Volunteer at Duquesne University,Y4000\nCOMPUTER OP,LINCOLN FINANCIAL GROUP,F0000\nEXEC,ALTADIS USA,A1300\nANALYST,SOS INTERNATIONAL,Y4000\nPsychologist,American Inst for Cognitive Therapy,Y4000\nALFRED G THOMSEN,,F4200\nCAMPAIGN FOR AMERICA,,J9000\nMANAGER,STORERTV,Z9500\nPRESIDENT,BRIDGEWATER ST.,Y4000\nNORTH SHORE SURGICAL ONCOLOGY ASSC,,H1130\nHOSPICE INC,,H6000\nDIRECTOR,HUMANA HEALTH PLAN,H3700\nSUBSTITUTE T,OREGON SCHOOL DISTRICT,X3500\nINSURANCE AGENT,NEASE LAGANA EDEN & CULLEN,F3100\nCounty Commissioner,Allegheny County,X3000\nAttorney,\"Morgan, Lewis  amp; Bockius\",K1000\nContractor General E,Halopoff & Sons Inc,Y4000\nPR,\"POLITICAL DEVELOPMENT GROUP, LLC\",Y4000\nWAYNESBORO CONST,,B1500\nReal Estate Broker,COMMERCE REALTY,F4200\nOWNER,SAM WERNER LUMBER COMPANY,Z9500\nAMELIA PRINTING COMP,SELF-EMPLOYED,G0000\nPresident,AutoNation USA,T2300\nVisiting Professor of law,Washington University School of Law,H5170\nBandmaster,U.S.Navy,X5000\nMORTGAGE BANKER,SOUTHTRUST MORTGAGE,F4600\nPhysician,Rothman Institute,H1000\nPRINCIPAL,SD SEARCH CONSULTANTS,Y4000\nCEO - Food Services organization,\"Jackmont Hospitality, Inc\",G2910\nLUIS LAINER,,Y4000\nExecutive,Zinn Petroleum Co.,Z9500\nGREYSTONE TELEVISION,,C2100\nChief Marketing Officer,Sunpower Corporation,E1500\nNUCARE SERVICES CORP,,H2200\nSAH ENTERPRISE INC,,Y4000\nPRESIDENT,GLOBOVISION TELE CN,T1400\nFIRST TRADE UNION,,Y4000\nCONTRACTOR,\"MICROBEE SYSTEMS, INC.\",Y4000\nINSURANCE SA,FIRST INSURANCE AGENCY,F3100\nRetired Rancher,N/A,J7150\nCHAIRMAN,RESMED,H4100\nRN,Kaiser Permanente Los Angeles Medical,Y4000\nWILLIAM PERRISH & ASSO,,Y4000\nC G C PARTNERS,,F2500\nGOULD AND RATHER,,J7400\nActivist,Self-Employed,J9000\nCHAIRMAN,SQUARE INDUSTRIES INC.,Y4000\n\"Director, Regulatory\",T-Mobile,C4300\nChief Operating Officer,Halifax Regional Health System,H2100\nTHE DISCOVERY GROUP,,Y4000\nGE NIEDERMEYER & COMPA,,Y4000\nVP - TAK,SUDDENLINK,C2200\nAttorney,The Intriago Group,Y4000\nEXECUTIVE,ARRIS GROUP,Y4000\nGLOBAL INVESTMENT ADVISORS,,F2100\nDPM,Indiana Podiatric Group,Y4000\nSR VP US MED & SCI,U S HUMAN HEALTH,H4300\nEXECUTIVE,NIA GROUP,Y4000\nPhysician,Neurological Institute of C.G.,H1130\nFamily member of emp,MAXXAM Inc. (See below),M2200\nstaff,Rick Johnson & Co. Inc,Y4000\nDREW,,Y4000\nC00034157,,F3200\nCFO,SINGLE SOURCE SYSTEMS INC.,Y4000\nELLIS PARK,,Y4000\nLOBBYIST,HINMAN STRAUB,K1000\nPres,Ducson Import Inc,Y4000\nCOMTECH MOBIL TELE CO,,C4300\nOWNER,\"CENTRE COURT PROPERTIES, LLC\",F4000\nSR. VP INTERNATIONAL,\"CKE RESTAURANTS/HARDEE'S FODD SYSTEMS\",G2900\nPRESIDENT & CEO,CURIAN CAPITAL LLC,F0000\nPURVIS BROS FORD,,Y4000\nPrivate Practice,Dentist,H1400\nMANAGER,PARTHENON FUTURES,Y4000\n\"'MANAGER HR & MAR\",SAGE BUILDERS LLP,Y4000\nGENERAL PARTNER,\"AMATURO GROUP, LTD. THE\",C2100\nSALES COORDINATOR,PHILLIPS MACHINE,G5600\nSTRATEGIC AFFAIRS CONSULTANT,PERKINS COIE,K1000\nDUN & BRADSTREET,,G5280\nADMINIST,THE UNITED WAY OF DELAWARE,X4000\nHEALTH CARE PROVIDER,INFORMATION REQUESTED,H1000\n\"Senior Director, Customer Experience\",Comcast Corporation,C2200\nSALES,\"ROSE'S SW PAPER\",Y4000\nPETROMARK INC,,E1170\nPRESIDENT & CEO,EICHLEAY HOLDINGS,Y4000\nREGISTERED NURSE,\"SELECT SPECIALTY HOSPITAL, HEIGHTS\",H2100\nLIND-WALDOCK AND COMPANY INC,,Y4000\nPilot... Captain,United Airlines,T1100\nOwner,Health Care Management Group,Y4000\nCONS,HAMILTON BULLETT DAVIS & ROMAN,K2000\n\"L'Etoile\",,\nRNFA,,Y4000\nREAL ESTATE BROKER,SELF,F4200\nRETIRED,\"21ST CENTURY HEALTH & BENEFITS, INC\",Y4000\nEDUCATION ALLIANCE LLC,,Y4000\nSenior Vice Presiden,FirstState Bank,F1100\nPRESIDENT,GF ENTERPRISES,G2900\nJudge,Metropolitan Davidson County,X3200\nLAWYER,DEWEY & LEBOUEF LLP,K2000\nPresident & Chief Ex,ZC Sterling,F4600\nPRESIDENT,INNOVATIVE ELECTRONICS,Y4000\njudge,Circuit Courts of Cook County,X3200\nHINSDALE FED SAVINGS,,F1200\nPENSION CONSULTANT,PENSION & BENEFIT SOLUTIONS,F5500\nexec,american red cross,X4100\nBarnes and Thorntbury,Attorney,K2000\nMserth Tutor,Self,Y4000\nJAMIESON MOORE,,K1000\nFINANCE,LAZARD FRERES,F2300\nVoyager Capital,,F0000\nProfessor,UT Southwestern Medical,H2100\nSELF EMPLOYED/INVESTOR/LAND DEVELOP,,G0000\nVP,Kimco Staffing Inc,G5250\nEXECUTIVE VICE PRESIDENT,\"GEORGE COMFORT & SONS, INC.\",Y4000\nWEDDING CHAPEL OWNER,SELF-EMPLOYED,Y4000\nCTO,STATE STREET,F2000\nSTEEL PIPE SALESMAN,CHALLENGER PIPE & STEEL LLC,Y4000\nEnvironmental Analyst,U S Coast Guard,X5000\nSENIOR MANAGER,FCHP,Y4000\nROOFER,SELF-EMPLOYED/ROOFER,B3000\nEXECUTIVE DIRECTOR,\"COMMUNITY LAW CENTER, INC\",Y4000\nDelivery Driver,Product Dev. Corp,Y4000\nMANAGER,REDCLOVER INC,Z9500\nLORYWATSON@MAC.COM,SELF,Z9500\nUSARBOR FINANCIAL CORP,,Y4000\nVet Tech,Providence,J1200\nALLIANCE HOME HEALTHCARE/OWNER/MANA,,Y4000\nV.P. OF POLICY ACQ,AAA MID-ATLANTIC,F3100\nHEALTH ECONOMIST,TECHNOMICS RESEARCH,Y4000\nChairman,The Rhoda Group,F2500\n\"JIMMY'S FASHION\",,Y4000\nMARKETER,DELL INC,C5100\nHUTCHISON & MASON,,K1000\nPODIATRIST,COOPER CLINIC,H1100\nPROFESSOR,GATEWAY COMMUNITY COLLEGE,H5100\nPhysician,Mt Auburn Hospitla,H1100\nSCHOFF SECURITY SYSTEMS,,Y4000\nSenior Fellow,The Urban Land Institute,Y4000\nCOLONY PAPERS INC.,,M7000\nattorney,The Legal Aid Society,Z9500\nRETIRED USAF,NA,X1200\nHAMMES CO,,F4100\narchitect,\"Harvard Jolly, Inc\",B4200\nOwner,Holsenbeck Realty,F4200\nHARRIS DAVIS & COMP P C,,Y4000\nPRESIDENT,ILWU,Y4000\nCSG SECURITY SERVICES,,Y4000\nPresident & Chief Executive Officer,American Security Mortgage Corp,F4600\nMortgage,Ameriquest,F4600\nINNOVATIVE BUSINESS SOLUTIONS INC,,J1100\nCONSULTANT OWNER,CFAR/CONSULTANT OWNER,Z9500\nOIL FIELD ENGINEER,HALLIBURTON,E1150\nLONGLEY SUPPLY CO,,B5300\nEXECUTIVE,BARRIERE CONSTRUCTION COMPANY,B1500\nMANAGING DIRECTOR,G. WILLIAM MILLER & CO.,Y4000\nLAND DEVELOPER,LANDMARK PROPERTY,F4000\nNONE,SELF EMPLOYED,J7400\nCEO,PENOBSCOT VALLEY HOSPITAL,H2100\nALTEC LANSING,,C5110\nINFORMATION REQUESTED,MD,H1100\nPRESIDENT & FOUNDER,THE GLOUCESTER INSTITUTE,Y4000\nSOFTWARE ENGINEER,I.B.M. CORP.,C5100\nInvestment Advisor,\"Nfp Securities, Inc\",F2100\nBOOKKEEPPER,CCSCE,Y4000\nPRESIDENT & CEO,BELKIN CORP,Y4000\nFIREFIGHTE,ORANGE COUNTY FIRE DEPT.,L1400\nTURMAN CHEVROLET,,T2300\nATTORNEY,\"DECHERT, LLP\",J7500\nVP FINANCE,ANHEUSER-BUSCH COS. INC.,G2810\nMANAGEMENT CONSULTANT,WATSON GROUP L.L.C.,J1100\nCHIEF INFORMAT,LIBERTY MUTUAL GROUP,F3400\nRESIDENTIAL MONEY CENTERS,,F1400\nSALES ASSOCIATE,\"DILMANN SOTHEBY'S INTL REALTY\",F4200\nACTUARY,ACE,Y4000\nINFO REQUESTED,TALISMAN COMPANIES,Y4000\nSOFTWARE DEVELOPER,ROUTINE MIRACLES,Z9500\nFinancings & Business Services,Consulting Finance Services LLC,F0000\nNEUROLOGIST,RICHARD C. GOLDMAN/NEUROLOGIST,J5100\nN/A/HOUSEWIFE,,H5100\nRUDIN MGMT. CO./BUILDER/OWNER,,F4500\nActing Controller,Carnival Cruise Lines,T6250\nLawyer,Regan Associates,K1000\nEnviromental Enginee,Law Engineering,B4400\nENGINEER,XRI INC,Y4000\nBUS EXEC FOR NAT SECURITY,,Y4000\nPRESIDENT,EVERETT CLINIC,H2000\nDIRECTOR,HAWAIIAN COMMERCIAL & SUGAR CO,T6200\nReal Estate Broker and Developer,Nabholz Properties Inc,F4000\nPHYS,MERCY CENTRAL INTERNAL MED CLI,H1100\nG E CAPITAL AVIATIO,,T1600\nEngineer,Krupp,Y4000\nCPO,SAUNDERS P&O,Y4000\nGAREY CONSTRUCTI,,B1000\nSPANGLER MOTORS,,F1100\nAttorney,\"Krislov &  Associates, Ltd\",K1000\nSTRONG TOOL CO INC,,G3000\nAttorney,\"Ziffren, Brittenhaum et al\",K1000\nPRESIDENT,KG STRATEGIES,Y4000\nVP/CONTRACTOR,AMERICAN LANDSCAPE SYSTEMS INC,B3600\nATTORNEY,STATE WATERS RESOURCES CONTROL BOARD,Y4000\nAd,Self,Y4000\nExecutive Committee,Executive Committee of the American Ca,Y4000\nAttorney,Met Life,F3300\nV.P. PRODUCTION,VOX PRINTING,C1300\nROSE EYE MED GROUP,,H1120\nGOVERNMENT RELAT,CAPITAL STRATEGIES,F0000\nTIDEWATER MARINE EXECUTIVE,,Y4000\nProgram Director,Big Brothers Big Sister,H6000\nBUSINESSMAN,CCA INDUSTRIES INC,J1100\nMember,\"Newman Development Group, LLC\",Y4000\nVP Govt. Relations & Compliance,American Homecare Supply,H3100\nO,TWIN BROTHERS ELECTRICAL SUPPLIES,B5500\n\"SVP, HEAD OF CLIENT OPERATIONS\",LUMI MOBILE,Y4000\nA/R Specialist,Caraustar,Y4000\nGOLD BOND ICE CREAM/OWNER/PRESIDENT,,G2100\nAttorney,Green And Green,K1000\nHomemaker,Not employed,H5150\nSCHULMAN REALTY,,F4200\nINSURANCE EXECUTIVE,HUMANA INC.,H3700\nTEACHER,HACIENDA HEIGHTS SCHOOL DISTRICT,X3500\nReal Estate Broker,Jenny Pruitt & Associates,F4200\nVP & GEN MGR,KLK INC.,Y4000\nLAWYER,K&L GATES LLP,K1000\nSR. VP - INTERNATION,\"BEAUTICONTROL, INC.\",M4000\nPRUDENTIAL REAL ESTATE,,Y4000\nMARTACK CORPORATION,,Y4000\nloafer,self,G0000\nPsychologist,Bradley Hospital,H2100\nPhysician,Eye Consultants fo PA,H1130\nFuneral Director,Westcott FH,G5400\nPACIFIC WORLD TRADE,,Y4000\nCOO,RCHO,Y4000\nVice President,\"J Rolfe Davis Insurance Agency, LLC\",F3100\nACCOUNTANT,CITY OF CHANDLER,X3000\nDIRECTOR,COUNTY OF COLUSA,J6200\nUNIVERSIT,UNIVERSITY OF CONNECTICUT,H5100\nHELVEX GROUP INC,,T6000\nDRIVER,Sealy Mattress,LT300\nBanking,Rabobank,F1100\nPRINCIPAL,GIBSONS RESTAURANT GROUP/PRINCIPAL,G2900\nManager,EVERGREEN RESOURCES,E1150\nSelf Employed,capitol bedding verona misc,Y4000\nBusiness Consultant,DMCI,Y4000\nSELF,,J6200\nMANAGING EDITOR,UNIVISION,C2300\nPRESIDENT,CKB RESTAURANTS INC.,G2900\nDIRECTOR OF THE DEPARTMENT OF ACCREDIT,AMERICAN OSTEOPATHIC ASSOCIATION,H1130\nPresident,Lebenthal,F2100\nFORENSIC NEUROPSYCHIATRIST,\"GEORGE WOODS, MD-APC\",H1100\nMEDICAL DEVICES SALES,SELF-EMPLOYED,G0000\nNELLARCO,,Y4000\nExecutive,Investors Management Corp Golden Corra,G2900\nDominion,,E1620\nPresident,McGrath Const. Company,B1500\nCEO & CHMN.,COGEN TECHNOLOGIES,F2100\nCOLUMBIA FITNESS CENTER,,G5800\nPresident,Pacific Seafood Processor Assn,G2350\nATTORNEY,28TH CIRCUIT COMMONWEALTH ATTORNEY,K1000\nFINANCIAL PLANNER,MORGILLO FINANCIAL MANAGEMENT INC.,F2100\nTOWSLEYS INC,,Y4000\nPHARMACY TECH,VSR HEALTHCARE,Y4000\nOWNER,SUTHERLIN NISSAN,T2310\nHAIRSTYLIST,TOTAL CONCEPT,G5100\nGovernment Relations,Rep Party of Puerto Rico,Y4000\nINVESTOR,SIGNAL EQUITY PARTNERS,Z9500\nKEYSTONE AUTOMOTIVE OPERATIONS,,T2200\nMKTING DIR,,C5120\nVice President,BOICH COMPANIES,E1210\nProfessor,Northwestern Univer,H5100\nSR. A/C MECH,FEDEX EXPRESS,T7100\nSELF EMPLOYED/INVESTMENTS/REAL ESTA,,F7000\nExecutive,Lemans Corporation,T2200\nEXECUTIVE,WASHINGTON PENN PLASTIC CO.,Y4000\nSATURN CORPORATION (GM),,Y4000\nSW ENGINEER,\"CISCO SYSTEMS, INC.\",J7400\nSURGEON,UNIVERSITY OF TX HEALTH SCIENCE CENTER,H1130\nWILSON CO.,,Y4000\nNUFSTEDLER KAUS & ETTINGER,,Y4000\nPHOTOGRAPHE,BLUE WILD LIFE FINE ART,J1200\nCO-Founder,New Majority,Y4000\nChairman,Caribe Homes,J5200\nPRESIDENT,RHODES CHEMICAL COMPANY,A4100\nLawyer,Gauthier,J1200\nProfessor Emerita,Rutgers University,H5100\nGA CRUSHED STONE ASSOC,,E1200\nFOUNDER,AMERICAN WASTE SYSTEM,E3000\n,COLLIERS BENNETT & KAHNWEILER INC.,F4200\nAttorney,White & Inse Llp,K1000\nEXTERNAL AFFAIRS,ARKANSAS SCHOLORSHIP LOTTERY,Y4000\nUF STRAINRITE,,Y4000\nAttorney,\"Mound, Cotton, Wollan & Greenspree\",K1000\nProfessor,Western New England College,H5100\nFURNITURE DEALER,HIVE MODERN DESIGN,Y4000\nMORTGAGE BANKER,TOWNE MORTGAGE CO.,F4600\nREAL ESTATE SALES,A16,F4000\nVP - INVESTMENT BANKING DIV,GOLDMAN SACHS GROUP INC.,F2300\nPOWER ELECTRIC COMPANY INC,,E1600\nFISHER FARMS,,A8000\nSelf Employed,Dan Royer,Y4000\nPRESIDENT,LUFKIN-LUTES TOURS,Y4000\nOFFICE MANAGER,SUNSTATE CONCRETE,B5100\nOwner,Two Js Painting,B3000\nOwner Eville Garage,Self,G0000\nPHYSICIAN,THE DERMATOLOGY GROUP,H1130\nDENTIST,\"CHARLES SCHMIDT, DDS, PA\",J6200\nOwner,Five Star Consultants,J1200\nHARMON-CONE CO,,Y4000\nPresident,\"Mulzer Crushed Stone, Inc\",B5100\nSecurities Professio,Information Requested,F2100\nSEAFOOD BUSINESS,10TH & M. SEAFOODS,G2350\nPHYSICIAN,UMASSMEMORIAL HEALTHCARE,H5100\nWireless Devices,Verizon Wireless,C4300\nManager,General Shelter of TX Ltd,Y4000\nCEO,AMERICAN HOME COMPANIONS,Y4000\nAttorney,Wrenn Law Group PLLC,K1000\nPresident,Pride Manufacturing,Y4000\nACTIVIST PARENT,NONE,Z9500\nREOVEST INC,,Y4000\nRetired,Nor employed,X1200\nATTORNEY,DOUGLAS M. HAMILTON PC,K1000\nChief Nurse-Anesthetist,Obici Health Care,H1710\n\"O'DONNELL LAW OFFICES\",,K1000\nHYDROLOGIST,U.S. GEOLOGICAL SURVEY,X3000\nTax Return Preparer,Reynolds Income Tax Service,Y4000\nREAL ESTATE,CONOR COMMERCIAL,Z9500\nCONSULTANT,C AND S CONSULTANTS,Y4000\nINSURANCE SALES,\"LOBARE OKSNEM, INC.\",Y4000\nOwner,The Glass House,Y4000\nOWNER,WHALLCO,J1100\nPrincipal,LeMunyon Group LLC,K2000\nCHILDRENS HOSPITAL BOSTON,,JE300\nSPECIAL ED ASST,MAT SU BOROUGH SCHOOL DISTRICT,L1300\nATTORNEY,\"LEE, LAWLESS AND BLYTH\",Y4000\nPRESIDENT,BULLHORN,Y4000\nREAL ESTATE DEVELOPMENT,POINT GAMMON CORP.,F2100\nGAVISH REALTY,,F4200\nProfesor Emeritus,University of New Mexxico,H5100\nMANAGING DIRECTOR,QSG LLC,Y4000\nGrief Counselor,Self,Y4000\nCONSULANT,GEI INC/CONSULANT,Y4000\nMother of Three,Self employed,G0000\nProgram manager,US EPA,X3000\nBLINN ASSOC OF N H,,F4400\nU.S. SENATE,,J1100\nCEO/President,Self,T2300\nSOFTWARE DEVELOPMENT,OMNICOMM SYSTEMS,Y4000\nCOMMODITY BROKER,BATES COMMODITIES,A3000\nDeputy Sheriff,\"Vanderburgh County Sheriff's Departmen\",X3200\nAdministrative Assistant,\"Ann E Oneil, Inc\",Y4000\nPRESIDENT,\"HEALTHCARE OF IOWA, INC.\",H2200\nREAL ESTATE MANAGER,SELF-EMPLOYED/REAL ESTATE MANAGER,F4500\nGeneral Contractor,Bay Area Metro Builder - Self,Y4000\nCONTRACTOR,A MARCHESES & SON INC,Y4000\nDesigner/Restauranteur,Self employed,G2900\nBOSTON CONCESSIONS GROUP,,Y4000\nLawyre,Mr Turie Wash Llp,Y4000\nNurse Practitioner,\"Donnelly & Oot, LLC\",J1200\nVice President and G,WLUK-TV/Emmis Communications Televisio,C2100\nBOWEN CONSTR CO INC,,B1000\nUAB EYE FOUNDATION,,Y4000\nPHYSICIAN,UT,Y4000\nGrantmaker/Teacher,Self,J1200\nPharmacist,Cherokee Pharmacy,G4900\nOwner,The Bavarian,Y4000\nVice President,United Government Services,Y4000\nAttorney,JACKSON MYRICK LLP,K1000\nInvestor,Self Emplyed,J7400\n\"Chairman, President & CEO\",Harleysville Insurance Companies,F3100\nMAC GREGOR USA INC,,Y4000\nCPA,MARKS PANETH AND SHRON LLP,Y4000\nRestauranteur,El Adobe Restaurant,G2900\nREAL ESTATE BROKER,CENTURY 21 AMERIV,Y4000\nPRES AND CEO,GARY JET CENTER,Y4000\nMARINE MECHANIC,NIEMIEC MARINE INC.,Y4000\nSuperintendent,Lincoln Construction,J1200\nOwner,Metro Concrete Inc,B5100\nREAL ESTATE BR,CORNETTE REALTY INC.,F4200\nBusiness Development,PBS & J,Y4000\nATTORNEY,\"GERMANESE, SCHROEDER, & ASSOCIATES/\",F5100\njgoossens@stny.rr.co,Guthrie,Z9500\nMANAGEMENT,\"HIGHROADS, INC.\",Y4000\nCITY COUNCILW,CITY OF LAGUNA NIGUEL,X3000\nAttorney,Sarles & Quimet,K1000\nOWNER,KING ARTHUR ENTERTAINMENT,C2000\nPresident,Cummins-Allison Corp.,M4200\nVICE PRESIDENT,AEC,Y4000\nSELF EMPLOYE,PETROLIFT SYSTEMS INC.,G0000\nMAYOR,TOWN OF CHICAGO RIDGE,Y4000\nSBA,,Y4000\n\"MOORE, BERSON, LIFFLANDER\",,M7100\nGOVERNMENT RELAT,CAPITOL SOULUTIONS,K2000\nCUSHMAN & WAKEFIELD OF PA,,T2000\n\"SELL/CHILDREN'S BOOKS AUTHOR/ILLUST\",,Y4000\nMANAGER,BUTTE COMPANIES/MANAGER,F4000\nCEO,Florida Rock Industries,B5100\nWriter/Journalist,Self Employed,C1100\nBENCHMARK ARCHITECTURE,,B4200\nIR,Information Requested,G0000\nA,AKIN GUMP STRAUSS HAUER & FELD LL,K2000\nCONSULTANT,\"SCHOOL WEB SERVICES, INC.\",Y4000\nCHEMIST,P.P.G.,Y4000\nATTORNEY,ARIAS OZZELLO & GIGNAC LLP,Y4000\nPIONEER PARK MITS HYUND,,T2300\nWeb Development,Self employed,C5140\nCONSULTANT,PSG INC.,Y4000\nCHIEF OF STAFF,OFFICE OF LT. GOVERNOR -- IL,Z9500\ntextile enginer/ pre,self employed,M8000\nSADDLEBACK VALLEY UNIFIED SCHOOL DI,,Y4000\nOrganizer,Jewish Commity Action,J1200\nSMYTHER CRAMER REALTORS,,F4200\nLAWYER,DAVIS WRIGHT TREMAINED LLP,Z9500\nATTORNEY,PORTLAND BUSINESS ALLIANCE,G1100\nPHYSICIAN ANESTHESIOLOGIST,MEDICAL ANESTHESIA CONSULTANTS,H1130\nCHAIRMAN & CHIEF EX,EQUITY ONE INC.,F4100\nREAL ESTATE DEVELOPER,JHM GROUP/REAL ESTATE DEVELOPER,F4100\nPHIPPS CONST CO.,,Y4000\nEngineer,GC Wallace Inc,Y4000\nBUILDING DEVELOPER,,F4100\nCAR AND TRUCK RENTAL,SHORE RENTALS INC,Z9500\nSIGNATURE LIFE INS,,F3300\nCANTU CONSTRUCCION,,B2000\nEQUINEX INC,,JE300\nINVESTMENT BANKER & TRU,,F2000\nV P,MILLER DODGE HYUNDAI,T2300\n\"GENERAL MGR., MERCHANT SVCS.\",\"VANTIV, INC.\",F5000\nFINANCE,DISCOVERY CHANNEL,C2200\nREGULATORY AFFAIRS,FRED HUTCHINSON CANCER RESEARCH CENTER,H2100\nPONDEROSA FIBERS OF AMERI,,Y4000\nCONGRESS,,J1100\nHEALTH,Self employed,H0000\nCOLUMBIA STEEL & METAL,,M2400\nDirector,Israel Venture Network,Y4000\nCONSULTANT,INFOSOLUTIONS,Y4000\nPRESIDENT,\"TANDEM LOGISTICS, INC.\",T3100\nLibrarian,Texas A & M Univ.,J7400\nADA UROLOGIC ASSOC,,H1130\nOilfield Contractor,Stringer Contracting,Y4000\nPresident/ CEO,\"FI Investment Group, LLC\",F2600\nAttorney,\"Williamson & Lavecchia, LLC\",K1000\nSALES,EW JOHNSON INC,Y4000\nDirector,Feng Shui Institute of Physics and Ene,Y4000\nILLUMINA,,Y4000\nHOLISTIC HEALTH COUNSELOR,SELF-EMPLOYED,G0000\nLAMKIN VAN EMAN TRIMBLE BEALS & ROU,,K1000\nF C HOCK PROPERTIES,,Y4000\nOwner,Mannys Auto Service Inc.,T2400\nManaging Director,Saga Investment Company,F2000\nSALES,WEIR SERVICE INC,Y4000\nattorney,\"Maroney O'connor\",K1000\nJONES DAY RAVIS & POGUE,,K1000\nOwner,Renaissance Tile Ceramic and Marbl,B5100\nConsultant,KMA Communications,Y4000\nPresident,Tri City Heat Treat Co.,Y4000\nOWNER,FORKLIFT TIRE OF FLORIDA,M1500\nCONSULTANT,EYE 2 EYE COMMUNICATIONS,Y4000\nPROFESSOR,THE UNIVERSITY OF ALABAMA,H5100\nCOMPUTER ASSOCIATES INTL,,C5120\nROCKING HORSE RESTAURANT,,G2900\nATTORNEY,\"GIBSON, DUNN & CRUTCHER LLP\",K2000\nROSETNES INC,,Y4000\nAttorney,Sulllivan et al,K1000\nPG & E,,E1620\nPHYSICIAN,AURORA MED GRP,H1130\nWRITER/PHOTOGRAPHER,SELF-EMPLOYED,Z9500\nPHYSICAL THERAPIST,SEQUIM PT,H1700\nATTORNEY,INDIANO & WILLIAMS PSC,K1000\nPHYSI,\"TENET PHYSICIAN SERVICES, LLC\",H1130\nINVESTMENT BANKER,SELF EMPLOYED,J7150\nBUSINESS OWNER,SELF,E1180\nCO-CHAIR,COMMISSION ON WARTIME CONTR.,Y4000\nPHYSICS GRADUATE STUDENT,INDIANA UNIVERSITY,H5100\nFARMER,MCCORKLE FARMS INC,A1000\nKM SPECIALIST,DAI,G5200\nUmpire/Author,Self,J7400\nINVESTMENTS,EDWARD JONES,F2100\nEducator,Carolina Friends School,X3500\nGarment Manufacturer,\"Flynn Enterprises, Inc.\",F2500\nANTIQUARIAN BOOKSELL,SELF-EMPLOYED,Y4000\nCITY LIGHTS ELECTRICAL,,B3200\nMILAN DENTAL ASSOCIATES,,H1400\nCLIPPER MANAGEMENT CO INC,,Y4000\n\"SELF-EMPLOYED OIL PRODUCER, RANCH\",,E1150\nSENIOR VICE PRESIDENT,\"EDER BROS., INC.\",G2850\nWESTERN SOUTHERN LIFE INSURANCE CO,,F3100\nDIAL GLOBAL/CO-OWNER/ CEO,,Y4000\nCONTRACTOR,L.S. LEE INC.,B1500\nPhysician,Mova Urgent Care,Y4000\nPhysician,Scott & White Healthcare,Y4000\nCHATTANOOGA TN,,J1100\nOwner,Rj Smith Controll & Consulting Inc.,Y4000\nATTORNEY,AVERSON & LINN,K1000\nPARTNER,\"MESA CAPITAL PARTNERS, LLC\",F4100\nPRESIDENT,\"MORISON ENTERPRISES, INC.\",A3100\nFINANCE DIRECTOR,T ROWE PRICE,F2100\nCommunications,BET,C2200\nMarketing Executive,Genaral Motors,T2100\nPEDIATRIC ANESTHESIOLOGIST,\"CHILDREN'S HOSPITAL OF PENNSYLVANIA\",H2100\nSTARR HOUSE,,Y4000\nMANAGER,FOOD SUE,J1100\nPHYSICIAN,SUNY DOWNSTATE UHB,Y4000\nPartner,\"Flying Colors USA, LLC\",G5260\nACCOUNTANT,SELF - I BUILT THAT WITH GOVMNT HELP,F5100\nKIELOCK CONSULTING,,Y4000\nARCHITECT,MILLER ARCHITECTS,B4200\nACCOUNTANT,SILVERSTEIN & WEISS,F5100\nVP,NIAGARA MOHAWK POWER CORPORATION,E1600\nINV,NORTH AMERICAN INVESTMENT GROUP,Y4000\nPHYSICIAN,ROCKY MOUNTAIN CANCER CENTERS,Y4000\nED COUNSELING SERVICES,,Y4000\n\"Director, Government\",\"Columbus Children's Hospital\",H2100\nGovt,Clear Creek Comm,Y4000\nA & E MANUFACTURING,,Y4000\nVice President,\"Gillam & Associates, Inc.\",Y4000\nC.E.O.,OSF HEALTHCARE,H0000\nCPA,HANDEL & ASSOC.,Y4000\nPARTNER,GRAND DEVELOPMENT COMPANY,Y4000\nATTO,JUDITH HOLMES & ASSOCIATES LLC,K1000\nDAPHNE FOUNDATION,,X4100\nphysician,elgin medical center pa,H1100\nYORBA PARK MEDICAL GROUP,,H1100\nProject manager,R R Donnelley,C1300\nSenator,House of Representatives,X3000\nJudicial Staff Attor,Oakland County Circuit Court,X3000\nPres.,Stratman Pharmacy,G4900\nBROADCASTING,REYNOLDS TECHNICAL ASSOCIATES,B4400\nCHIEF EXE,ESSEX GRAIN PRODUCTS INC.,Y4000\nEmergency Physician,Massac Mem Hosp,H1100\nSecretary,Anton Airfood; Inc.,G2900\nGREEN BUS LINES,,T4100\nBROWN & JAMES P C,,K1000\nTRAINER/CONSULTANT,SELF-EMPLOYED,G0000\npresident,FNC Technology Corp,Y4000\nSELF-EMPLOYED,\"SUNDSTROM ELECTRIC, INC.\",B3200\nEXECUTIVE,\"D&H GROUP, INC.\",Y4000\nTELEDYNE RODNEY METALS,,Y4000\nLONGHORN PARTNERS PIPELINE,,E1100\nPRESIDENT,GOLD STAR PRINTERS,C1300\nPETTICOAT CONTRACTING INC,,B1000\nRN,HOSPITAL OF CENTRAL CONNECTICUT,H2100\nPolicy Analyst,\"Holland & Knight, LLC\",J1200\nVice President for Stude,Ramapo College of New Je,H5100\nEngineer,Lister-Petter,Y4000\nN/A/HOME MAKER,,F4000\nISHII CONSTRUCTION,,B1000\nbanker,Freestar Bank,F1100\nSALES,84 LUMBER COMPANY,B5200\nInvestment Manager,Equite Value Ventures LLC,Y4000\nDIETICIAN,,J5100\nCHIEF OPERATING OFFICIER,FEMWELL,Y4000\nINSURANC,VELA INSURANCE AGENCY INC.,F3100\nEXECUTIVE,THE SCOULAR COMPANY,A1500\nINVESTMENT BANKER,CREDIT SUISSE/INVESTMENT BANKER,F2300\nAnesthesiologist,Self,J7150\nManager,Grand Canyon Title Agency Inc.,F4300\nADMINISTRATIVE PERSO,\"CAPELLON PHARMACEUTICALS, INC\",Y4000\nCONTRACT MANAGER,MERCK,H4300\nPresident,Midland Oil Co,E1120\n\"Manufacturer's Repre\",Repco Inc.,Y4000\nPSYCHOLO,BEHAVIOR MANAGEMENT ASSOC.,Y4000\nINVESTOR,SENNET CAPITAL,F0000\nENGINEE,INNOVATIVE ENERGY SOLUTIONS,E1000\nSALES MANAGER,THE LIVE MOTEL,T9100\nExecutive,Southwest Power Pool,Y4000\nOWNER,STEILING ENGINEERING,B4400\nAUTOMOTIVE TECH,SUBURBAN AUTOMOTIVE,Y4000\nBUSINNESS EXECUTIVE,MANPOWER,Z9500\nBest Efforts,n/a,K2000\nPRESIDENT,\"L. D. KERNS CONTRACTORS, INC.\",B0500\ncertified public acc,\"Wallace, Delury & O'Neil\",Y4000\nHAYDEN PERLE AND SILBER,,K1000\nDirector,Motorola,C4600\nTREND WEST RESORTS INC,,Y4000\nPsychoanalyist,Self employed,H1110\nexecutive,\"Rollins, Inc.\",G5700\nM SCHIEFER TRADING CO,,A1100\nOwner,Colesville Cleaners,Y4000\nLEGAL COUNSEL,N. M. M. A.,Y4000\nCHICAGO CORNEA CONSULTANTS,,H1120\nPRESIDENT,KAMILCHE COMPANY,Y4000\nTeacher,Woodville Union School,Y4000\nPHYSICIAN,CSR PC,Y4000\nState Director,Federal Government,Y4000\nAttorney,Finkelstein & Newman,K1000\nOIL PRO,YATES PETROLEUM CORPORATION,E1120\nPFILE HOMES INC,,B2000\nCONTRACTOR,F. L. CRANE & SONS,B1000\nOWNER,DUNIGAN BROS.,Y4000\nKAUFMAN COREN RESS & WEIDMAN PC,,K1000\nRAEL ESTATE,SELF,J8000\nST JOSEPH HOSPITAL,,H1100\nInvestman Banker,Goldman Sachs,F2300\nPRESIDENT/CEO,\"KEEPING PACE, INC.\",Y4000\n\"DIR, IT ARCHITECTURE\",DIRECTV,C2200\nPersonal Mgr.,Direct Management Group,Y4000\nConsultant,Oakland School;S,X3500\nATTORNEY,LAW OFFICES OF PETER T.,K1100\nTravel Agent,Travel Corp,Y4000\nGENERAL MANAGER,NEWS-PRESS & GAZETTE CO.,C2100\nESP COUNSELOR,STATE OF MISSISSIPPI,X3000\nANDERSON & DAHLEN INC,,Y4000\n30 S. WACKER DR. CHICAGO IL    #110,,F2200\nATTORNEY,VIHSON & ELKINS,Y4000\nSECURITY SERVICE FEDERAL,,Y4000\nU S CONSTRUCTORS INC,,B1500\nADMINISTRATOR,FAMILY HOUSING FUND,Y4000\nCHAIRMEN & CEO,J-MAR,Y4000\nAMERICAN BANCO,,F5200\nBIOSTATISTICIAN,SEPRACOR INC.,H4300\nPRINCIPAL,BRICKMAN ASSOCIATES,F2600\nPLANNER,SALT LAKE COUNTY GOVERNMENT,Y4000\nCONSULTANT,EPS SETTLEMENTS GROUP,F3300\nExecutive,Rolex USA,Y4000\nC.P.A.,CHRISTOPHER SMITH,Y4000\nDONUT KING,,G2100\nLONGWELL MAINTENANCE FOREMAN,AMERICAN COAL,E1210\nMID SOUTH SURGERY,,H1130\nADMINISTRATOR,COMMUNITY CONCEPTS INC,H3000\nG T PRODUCTS,,T2200\nPROVIDENCE ST. VINCENT MEDICAL CENT,,H2100\nCOMMUNITY BANK OF PEORIA,,F1100\nPhilanthropy,Schooner Foundation,J1200\n\"SENIOR VICE PRESIDENT, ASSET MANAGEMEN\",LOEWS HOTELS,T9100\nWITMAN RANCH,,A1400\nSTRAUS & BIN,,K1000\nDE GRATE MAINTENANCE,,Y4000\nRESTAURANT MANAGER,DOLLAR & SENSE CORPORATION,Y4000\nDISTRIBUTOR FOR STARLIGHT INTE,,G4600\nREAL ESTATE BROKER,\"THREE RIVERS, TENA MYERS\",F4200\nVAN GUARD CAPITAL,,F2100\nC.P.A.,VAZQUEZ & CO. CPAS,F5100\nSUPT OPS SH,ENTERGY OPERATIONS INC.,E1620\nBANK OF ELMWOOD,,F1100\nGENERAL MAN,RAY SKILLMAN AUTOMOTIVE,T2000\nPHYS,BROOKVILLE ANESTHESIA SERVICES,H1130\nMONTE FIORE MED CTR,,H2100\nManagement,Covenant Financial Services,F0000\nDIRECTOR,EAST ST LOUIS PARK DIST,Y4000\nNITSCHKE SAMPSON DIETZ,,Y4000\nVILLAGE KNOLL SHELL,,E1170\nCINCINNATI FIRE DEPT./FIREMAN/EMS,,L1400\nOWNER,VIN DEVERS INC.,Y4000\nPRIVATE INVESTOR,SELF,J1100\nLobbyist,Greenberg Traurig LLP,K2100\nPHYSIC,UCLA SCHOOL OF PUBLIC HEALTH,H5100\nMusic Director,Mt Calvary Luther Church,Y4000\nVisiting Physicist,University of California - Santa Barba,H5100\nPresident,Wolverine Gas & Oil,E1100\nWHHT,,Y4000\nCRNA,Abilene Regional Medical Center,H1710\nVice President & Gen,ARRIS Inc.,C2200\nPresident,The Style Council,Y4000\nINVESTMENT MANAGER,RUANE CUNNIFF AND GOLDFARB INC.,F2100\nABERNATHY MACGREGOR FRANK,,G2100\nMedical Tech,Med Center Bowling Green,Y4000\nCPA,\"Melvin, Bibb, Pinson & Segars\",F5100\nBRANDYWINE ANESTH ASSOC,,H1130\nRESEARCH ANALYST,\"REIMBURSEMENT TECHNOLOGIES, INC\",Z9500\nPRESIDENT/CHIEF EXECUTIVE OFFICER,DTE ENERGY,E1620\nRETIRED COLLEGE LIBRARIAN,VMI,X1200\nVice Chair,Conner Strong,F3100\nOWNER,MONCRIEF INTERNATIONAL,E1120\nOwner,Little John`S Excavating,B3600\nSELF EMP.,\"MARKLEY SERVICE, INC.\",Y4000\nFIELD SERVICE TECHNICIAN,CSC,C5130\nSecretary,Castelo Real Estate,F4000\nSECURITY AVIATION,,T1000\nCHAIRMAN,AMERICAN HERIT,F7000\nSTUDENT,UNIVERSITY OF AKRON,H5100\nSAINT LOUIS PARKING CO,,J7120\nExecutive,College of American Pathologis,H1130\nHUNT MANUFACTURING,,Y4000\nLaw Professor,University of New Mexico,H5100\nBIOFUELS MANAGER,CHEVRON,E1110\nUnion Representative,IATSE,LG400\nMANAGER,PORTAGE ADVISORS,Y4000\nMedical Physicist,University of Washington,H5100\nCivil Rights Attorney/Teacher,Self/NYU/Columbia,J1200\nPHYSICIAN,PENINSULA UROLOGY/PHYSICIAN,H1130\nIOWA MANUFACTURED,,Y4000\nRICHARD ANGERAME ASSOCS,,Y4000\nINTERNATIONAL ECONOMIST,US DEPT. OF AGRICULTURE,X3000\nDOMINION INCOME MANAGEMENT,,F2300\nPhysician,University Dermatology,H1130\nPRESIDENT,CORAZON BENIG M D,H1100\nWILLOW HEALTH CARE INC,,H0000\nOPERATOR,\"MC DONALD'S OWNER\",G2900\nCITY ELECTRIC INC,,B3200\n\"Vice President, General Counsel\",Direct Response Group,F3100\nBALLARD PETROLEUM,,E1100\nReal Estate Developer,ER Bacon Development LLC,F4100\nPRESIIDENT,BARDONS & OLIVER INC.,M2300\nOPERATIONS TECH,LBVSD,Y4000\nFILM EXECUTIVE,IFC ENTERTAINMENT,Y4000\nSUPERVISOR,STATE OF WI/WAUSAU SD,X3000\nPublic Relations Exe,\"ES3, Inc.\",C5120\nDirector Of Contract,Millls Peninsula Medical,Y4000\nSALESMAN,MORGAN STANLEY,J7120\nATTORNEY,FTC/ATTORNEY,Y4000\n\"Autodesk,Inc.\",,C5120\nSUNBELT CEMENT,,B5100\nBANKER,OUACHITA BANK,Y4000\nPHYSICIAN,\"NEUROSURGICAL ANESTHESIOLOGISTS, PLLC\",H1130\nUNEMPLOYED,NONE,F5100\nAdministrator,The National Development Council,G1000\nSAL,EDUCATIONAL TECHNOLOGY LEARNING,Y4000\nASSISTANT U.S. ATTORNEY,\"U.S. ATTORNEY'S OFFICE, NORTHERN DISTR\",K1000\nVP - Communications Services,Fidelity Investments,F2100\nINTERIOR DESIGNERS,RARIDEN SCHUMACHER MIO & CO.,Y4000\nCAROLINA MOTORSPORTS,,Y4000\nLegal Administrator,\"Akin Gump Strauss Hauer & Feld, LLP\",K1000\nRYERSON STEEL CO,,M2100\nBoard President,San Francisco General Hospital Foundat,Z9500\nPROFESSOR OF NURSING,NEW YORK UNIV,H5100\nMEDICAL AS,DRS. RABIN & FREMED P.C.,H1100\nHENNESSY MOTORS,,T2300\nMERCHANT SEAMAN,MAERSK LINE LTD.,T6200\nDOUGLAS/GALLAGHER/ARCHITECT,,B4200\nEXECUTIVE,MAPLETON INVESTMENTS,F2100\nSR. VICE PRESIDENT,TELACU COMPANIES,F4600\nPartner,Libitzky Holdings,F4000\nExterminator,Barrington Exterminators,Y4000\nOwner,Dickie Brennans Steakhouse,G2900\nV.P,NATIONAL SOFT DRINK ASSOCIATION,G2600\nINVESTMENT M,RUSTIC CANYON VENTURES,F2500\nVice President,Ohio Association of Professional Firef,Y4000\nIT,Government,X3000\nMUTUAL SAVINGS BANK,,F1200\nself employed,Stan Stephens Cruises,Y4000\nBusiness Manager,Rhodia,M1000\nSenior Sales Engineer,ENTEK Corp.,B0500\nExecutive,Brighthouse Networks,C2200\nEDUCATOR,DRAKE UNIVERSITY LAW SCHOOL,H5170\nSUPER,COMMONWEALTH OF MASSACHUSETTS,X3000\nPRINCIPAL,MAGIC CITY FINANCIAL GROUP,Y4000\nSTATION OWNER,UNIVISION,C2300\nDIR,AMERICAN FARM BUREAU FEDERATION,A6000\nHealth Information Technology Executiv,\"Surescripts, LLC\",Y4000\nWAUPACA FOUNDRY,,M2100\nEXECUTIVE,BRITISH TELECOM,Y4000\nCONSULTANT,\"BIDDISON HIER, LTD.\",Y4000\nPresident and CEO,GVA Williams,F4200\nNONE,NONE OF OUR BUSINESS,Y4000\nAttorney,\"O'Melvey & Myers LLP\",Y4000\nPharmacist,Rush University Medical Center,H5100\nPHOTGRAPHER,SELF-EMPLOYED,G5240\nCEO,MCKINLEY ASSOCIATES,J1100\nExecutive,BFC Financial,F0000\nPGA ONE CHARLES CENTER L.P.,,K1100\nExecutive/Attorney at Law,Tracinda Corporationn,F7000\nEMRE,,E1110\nREALTOR,MAX BROOCK REALTORS,F4200\nWriter,Self-Employed,J1200\nDOCTOR,JAMES L MOSES MD INC DBA OPHTHALMOLOGY,H1100\nAISM MA TORAM,,Y4000\nRETIRED,SAG HARBOR EXPRESS,J1100\nOwner,Queens Lumber Company,A5000\nOWNER,\"FREDDIE'S BBQ\",G2900\nPRESIDENT,SOVEREIGN METALS  & ALLOYS INC.,Y4000\nBUSINESS MANAGER,SIEMER MILLING COMPANY,Y4000\nHUMAN RESOURCES MANAGER,STATE OF ARIZONA DEPT OF ADMIN,X3000\nEXECUTIVE,GELLERT & ASSOCIATES,JE300\nBARGE TRANSPORTATION,CESES CONSULTING LLC,Y4000\nSVP FINANCE,CVS CAREMARK,G4900\nSELF,BLUE STAR PARTNERS/SELF,Y4000\nCHAIRMA,LEVEL 3 COMMUNICATIONS INC.,C4000\nPresident/ceo,Scot Forge,Y4000\nCORPORATE EXECUTIVE - ENGINEER,RETIRED,X1200\nVice President,Engineering Management Concepts,Y4000\nVP OF OPERATIONS FC GROUP,PARKER-HANNIFIN CORPORATION,M2300\nChief Executive Officer,\"Remote Data Backups, Inc\",G1000\nGUARDIAN BANK,RETIRED,X1200\nDesigner,Cooper Design Group LA,Y4000\nLaw Professor,Northeastern U School of Law,H5170\nATTORNEY,DHBLAIR INVESTMENTS,J1200\nC,HARBOURFRONT CONSULTING GROUP LLC,Y4000\nISHMAEL FOX & RASANSKY LLP,,K1000\nSR. MANAGING DIREC,BLACKSTONE GROUP,F2600\nDirector,Center for Auto Safety,Y4000\nBUSINES,NED ACQUISITION CORPORATION,Y4000\nAttorney,\"Skadden, Arps Slate, Meagher\",K1200\nPRESIDENT/CEO,FMPO,Y4000\nGENERAL COUNSEL,TRANSUNION LLC,Y4000\nPresident & Chief Executive Officer Pm,PMCC/PM Capital Corp.,A1300\nROSEN BIEN & ASARO,,Y4000\nPresident & CEO,Advantage West,Y4000\nDirector 2  Field Operations,Comcast,C2200\nLabor,Bay Area Covers,Y4000\nunemployed,homemaker,Y1000\nExecutive Director,Society Of Practitioners,Y4000\nPRESIDENT AND CHIEF OPERAT,EXPERIAN,F5200\nMANAGER/MEMBER,RED HEN SYSTEMS,Y4000\nOWNER,TOHL ENTERPRISES,Y4000\nSurgeon,Innovis Health,Y4000\nCredit Manager,CoBank,A4000\nA H SMITH ASSOC,,Y4000\nARSO INC,,Y4000\nMANAGER,RICHELLES SALON,Y4000\nSurgeon,Baylor College Of Medicine,H5150\nCEO,\"EVERGREEN MANAGEMENT, INC.\",F5500\nCARDIOLOGIST,CENTRAL CT CARDIOLOGY,H1130\nCONSULTANT,DRIGGERS & ASSOCIATES,Y4000\nPROP RENTALS,PROP COMPANY KAPLAN & ASSOC,Y4000\nCIO,ENERGY TRANSFER PARTNERS,E1140\nSales,State of Illinois,X3000\nSOUTERN TOOL INC,,Y4000\nVICE PRESIDENT-HR,LORILLARD TOBACCO COMPANY,A1300\n\"Gov't Affairs\",American council of Life Insurers,F3300\nAccounting,Mccune & Associates,Y4000\nEXECU,PRESERVATION TRUST OF VERMONT,G0000\nPERSONAL INVESTMENTS,SELF-EMPLOYED/PERSONAL INVESTMENTS,F7000\nPRESIDENT,SEIBAL INC,Y4000\nBAL HARBOURSHOPS,,F4100\nCONSULTANT,\"MILLENNIUM CONSULTING, INC.\",G5260\nReal Estate Manageme,Sieroty Co Inc,J1200\nDeveloper/Consultant,The Commonwealth Group,K1000\nMIDDLEBURG MANAGEMENT CORP,,G5270\nSURREY BOOKS,,Y4000\nAttorney,\"Newman & Simpson, LLP\",K1000\nVICE PRE,SOUTHERN CHAMPION TRAY LLP,M7100\nPRESIDENT,ENERGY PRODUCTION CORP.,E1000\nSOFTWARE DEVELOPER,COMPUWARE CORP.,C5120\nTeacher,Missouri Western State University,H5100\nPRINCIPAL,VERMEER GREAT PLAINS,Y4000\nTULLY AND WIENSTEIN,,Y4000\nFINANCIAL SERVICES EXEC.,METLIFE,F3300\nPRESIDENT,ALBINA COMM. BANK,Y4000\nPHYSICIAN,BEARMONT HOSPITAL,H2100\nDUNBAR MECHANICA,,Y4000\nGovernment Relations,Hecht Spencer & Associates,K2000\nretired,Information Requested,J7400\nSoftware Engineer,N.D.S. Americas,Y4000\nALPHA STEEL,,M2100\nPERDUE BRANDON & FIELDER,,K1000\nMANAGING DIRECTOR,U.B.S.,J1100\nMANAGER,\"GLAZER'S OF INDIANA\",G2850\nCivil Service,US Marine Corps,X5000\nCourier,Self,J1200\nMORGAN STANLEY & CO INC,,F2300\nPhysician,Bristol Myers Squib,J1200\nOWNER,PROCOURIER INC,Y4000\nCEO,\"Russian Town, Inc.\",Y4000\nProfessor,Penn State,H5100\nCEO,MB Financial,F1100\nPRESIDENT,VARGO CONSTRUCTION,B1500\nATTORNEY,BINGHAM MCCUTCHEN LLP,J1200\nDUES,SUNTRUST BANK,F1100\nPRESIDENT,WEST SALEM MACHINERY CO.,M2300\nLANDRY & DOYLE,,Y4000\nTANK TRUCK SALES,SELF EMPLOYED,G0000\nTINDALL,,Y4000\nINVESTOR,,F5200\nProf of Mgmt,Seattle University,J7400\nPRODUCER,MJM CREATIVE,G5200\nGOVERMENTAL RELATION,Self-employed,G0000\nREAL ESTAT,MILLER BROS. REAL ESTATE,F4000\nAttorney,Sonnenschein Nath & Rosenthal,G1000\nFINANCIA,MUSTARD SEED FINANCIAL LLC,X1200\nAttorney,Irwin E Russell,K1000\nAGERE SYSTEMS,,Y4000\nCONSULTANT,AL MALOOF GOVERNMENT CONSULTANTS,Y4000\nEXECUTIVE,SMS HOLDINGS,G5250\nWINSTON SERVICE CONTRACTORS,SELF-EMPLOYED/BUSINESS OWNER,Y4000\nOU Health Sciences Center,,H0000\nConsultant,\"Elegrity, Inc\",C5130\nMARATHON TOURS,,Y4000\nREQUESTED,LTP MANAGEMENT,G2900\nC.E.O.,T.E.A.,Y4000\nPresident & CEO,Strum Ruger and Company Inc,J6200\nPresident and Chief Executive Officer,Farmers Insurance Company of Flemingto,F3100\nENGINEER,INVENTWORKS,JE300\nMACDERMID INC,,Y4000\n\"Director, Human Reso\",Washington Savannah River Company,E3000\nPHYSICIAN,FIRST COAST ONCOLOGY,H1130\nORTHOP,ROTHMAN INSTITUTE ORTHOPEDIC,H1130\nCAMPBELL MITHUN ES,,G5210\nSVP,,H5000\nEXECUTIVE,STANDARD LABS INC.,Y4000\nGEN MGR LK PLACID,A DUDA & SONS INC,A1400\nEXECUTIVE DIREC,PRINCETON-IN-AFRICA,Y4000\nretailer,CT Beverage Mart,G2400\nClerk,Teamsters Local 952,LT300\nPRESIDENT,BORKE MOLD SPECIALTIES INC./PRESIDE,Y4000\n\"Poet,FReelance Ed\",Self,G0000\nAVISTA ENERGY,,Y4000\nMANA,BLACKMAN KALLICK & BARTELSTEIN,Y4000\nRIVERWAY CAPITAL PAR,,Y4000\nseafood producer,Quinn Fisheriers,G2350\nExecutive,Regional Recycling,Y4000\nMONEY M,SUPERIOR INVESTMENT COMPANY,Y4000\nPRESIDENT,CRESTVIEW AEROSPACE CORP.,T1300\nINNKEEPER,\"MIGIS LODGE, SELF-EMPLOYED\",T9100\nINVESTMENT MANAGER,BAUPOST,JE300\nFDIC WASHINGTON DC,,Y4000\n\"President, SCMG, Physician\",San Diego Internal Medicine,H1100\nPartner,Fox Kiser,K2000\nAttorney,FPL Advisory Group,K1000\nPARTNER,ANTHEM OIL & GAS,E1100\nOT,Healthsouth,H1700\nDESIGN CONSUL,\"STUART WEITZMAN, INC.\",J5100\n\"DVP, DTP\",Random House Inc,J7400\nSENIOR EXECUTIVE,CF DAY,Y4000\nCO-FOUNDER AND,REDSTONE INVESTMENTS,F4000\nAUSTIN ELECTRIC INC,,B3200\nretired/not employed,n/a,J1200\nCONTRACTOR,HILL BROS CONSTRUCTION,B1500\nTS & A INC,,H5100\nCEO,PILOT TRAVEL CENTER LLC,E1170\nRPH FIACP,HEALTH DIMENSIONS,H1750\nPRESID,FIRST CLASS AIR SUPPORT INC.,Y4000\nANESTHESIOLOGIST,CHILDRENS HOSP MED CTR,H1130\nGOLF PROFESSIONAL,PLAYERS COURSE,Y4000\nPACIFIC TRANGLE,,Y4000\nC.P.A.,RAYBURN BATES & FITZGERALD P.C.,Y4000\nconsultant,poms and associates,Z9500\nCommunications,Mondiale Corp,Y4000\nCITRUS GROWER & REAL ESTATE,,A1400\nMASTER FUNCT,\"TESORO COMPANIES, INC.\",E1160\nGeophysicist,MicroSeismic Inc,Y4000\nBANKER,NORTH STAR BANK,F1000\nAttorney,Wold Johnson PC,Y4000\nSales,\"Russell's\",Y4000\nMANAGE,SELF-EMPLOYED,Y4000\nBUSINESS OWNER,APPORVED MORTGAGE,F4600\nCAMBRIDGE TECHNOLOGIES,,C5000\nLAWYER,\"MEEHAN, BOYLE, BLACK & BOGDANOW, PC\",Z9500\nMANAGEMENT CONSULTANT,BRIDGE STRATEGY GROUP,Y4000\nEXECUTIVE,BISSO TOWBOATS,Y4000\nCENTRE GROUP,,Y4000\nINVESTOR,GOLDER INVESTMENT MANAGEMENT,Z9500\nMarketing Manager,I. B. M.,C5100\nsocial worker,LR Mental Health Center,Y4000\nTeacher,Arlington Independent School District,X3500\nLYON & LYON ASSOC,,Y4000\nConsultant,Emerson & Assoc,Y4000\nAssistant Profesor,SUNY Westchester,H5100\nOPERATIONS SPECIALIST,J.P. MORGAN CHASE,F1100\nRealtor,Overland Realty,F4200\nCPA,\"Lemaster & Daniels, Pllc\",F5100\nASSOCIATE,CHX CAPITAL,F0000\nfinancial consultant,\"Settlement Strategies, Inc.\",Z9500\nEDUC,\"CHILDREN'S LITERACY INITIATIVE\",Y4000\nLAUBACH FULTON &,,Y4000\nAssociated Building,Information Requested,Y4000\nBROADWAY REALTY,,F4200\nFirearms Dealer,Innovative Tactical Solutions,Y4000\nSUFFOLK COUNTY DISTRICT ATTORNEY,,K1000\nCONSULTANT,QUADRIC GROUP,Y0000\nRN,Baylor Hospital,H1710\nOWNER,KADINA CORPORATION,Y4000\nCHRYSLER PLYMOUTH DODGE,,T2100\nDirector,PCM3 Inc.,Y4000\nREGISTERED FEDERAL LOBBYIST,\"ROMANO & ASSOCIATES, LLC\",Z9500\nDATA PROCESSING,STATE OF  MINNESOTA/DATA PROCESSING,X3000\nMARKETING DIRECTOR,BERRY DUNN,Y4000\n\"LIDDELL, SAPP, ZIVLE\",,K1000\nATTORNEY,BANKHEAD & NIELSEN,Y4000\nEXECUTIVE VICE PRESIDENT,\"CLIENT SERVICES, INC.\",F5200\nSPA & ASSOCIATES,,Y4000\nAssoc Admin,Regional Medical Center Bayonet Point,H2100\nRN,Northwest Community Hospital,H2100\nREAL ESTATE,\"M&H CAPITAL, INC.\",J9000\nMANAGER,PAUL DAVIS RESTORATION,Y4000\nVICE PRESIDENT,SUN PACIFIC INC.,A1400\nAUTO DEALER,LOCHMOOR CHRYSLER JEEP,T2300\nOrthopaedic Surgeon,Delaware Bone & Joint Specialists,H1130\nKIMMING CORP,,Y4000\nATTORNEY,,E1200\nATTORNEY,MARRIOTT INTERNATION,T9100\nCFO,KIRKE FINANCIAL SERVICES,F2100\nBUSINESS O,VANTAGE POINT PROPERTIES,F4000\nATTORNEY,FLORIDA HOSPITAL,H2100\nMarketing Manager,Brandlin & Assoc.,J7400\nASSET MANAGEMENT,SEVEN POINT EQUITY PARTNERS LLC,Y4000\nATTORNEY,DUGGINS WREN MANN & ROMERO,K1000\nPresident,Scarafoni Finanical Group,Y4000\nVice President,General Atomics Corp.,E1320\nInfo Requested,Viad Corporation,J1100\n\"Physician, Plastic S\",Plastic Surgery Center of the,H1130\nConsultant,Self-Employed,D0000\nInvestments,Benson Capital Partners,F0000\nLeadership Consultan,Mentor to Leadership,Y4000\nGOVERNMENT RELATIONS DIRECTOR,AMT,M2300\nAttorney,\"Strategic Analysis, Inc.\",J1200\nPresident,Applies Thermal Science,Y4000\nAttorney,Bradshaw Johnson and Hund,K1000\nOWNER,TOM BEASLEY ENTERPRISES,Y4000\nSupervisor,Town Of Irondequoit,Y4000\nCEO,GALLERIA PRODUCE,A1400\nSVP,RADIOSHACK,G4200\nPRESIDENT,\"NASSAU CANDY DISTRIBUTORS, INC\",G2200\nSuperintendent of Schools,Harvard Public Schools,X3500\nMontcave Bakning,Pacific Southwest Re,Y4000\nGALLERY MANAGER,VANDER ZEE GALLERY,Y4000\nINVESTMENTS,MORGAN KEEGAN & CO INC,F2100\nPRESIDENT,\"DUKANE CONTRACT SERVICES, INC.\",G1200\nPresident,Atlantic Recovery,Y4000\nHENDERSON MOTORS,,T2300\nIOWA HOUSING ASSOCIATION,,B2400\nPRESIDENT,FIRST EDGE SORNSON,Y4000\n\"RYBA'S FUDGE\",,Y4000\nJOHN PLOTT COMPANY INC.,,Y4000\nOWNER,CAF WORLDWIDE INC.,Y4000\nBuilder,Harmony Homes of North Florida; Inc.,B2000\nLegislative Aide,Delegate Charles W. Carrico,Y4000\nATTORNEY,DEVINE AND NYQUIST,K1000\nACCESS ALLIANCE OF MI,,Y4000\nConstruction,TCI,Y4000\nHealth Care Administration,Yale University,H5100\nVice President,Ultimate Living International,Y4000\nPUBLIC AFFAIRS CONSULTANT,WASHINGTON 2 ADVOCATES/PUBLIC AFFAI,K2000\nFARMER,BAGGETT FARMS,Y4000\nSR. VICE PRESIDENT,HEAVENLY SPORTS,Y4000\nHOLT CATERPILLAR,,Y4000\nREAL ESTATE BROKER,DON WRIGHT AND ASSOCIATES/REAL ESTA,F4200\nCONSTRUCTION,\"C.S.BEATTY CONSTRUCTION, INC.\",B1500\nPORTFOLIO MANAGER,HBK CAPITAL,F2700\nVice President,\"Kozak Beverages, Inc\",G2850\nPACIFIC GIANT INC,,G2350\nSALES,DISH NETWORK,Z9500\nDRESS MANUFACTURER,,Y4000\nHealthcare IT,Nordic Consulting Partners,Y4000\nVP GOVT RELATIONS,WASHINGTON MUTUAL,F1200\n\"NETWORK IP, LLC\",,Y4000\nPsychotherapist,Community Health Awareness Council,Y4000\nHOBBY SHACK,,G4600\nCONSULTANT,FORGE,G5600\n\"Accounts Payable - Dentist's Office\",Dr David J Conner,Y4000\nAssociate,Latham & Watkins LLP,K1000\nVA. HOSP. CENTER-ARLINGTON,,Z9000\nDoctor,South Texas Center For Pediatric Care,H1130\nBROWNSTEIN HYATT & FABER D C,,K1000\n\"YOUNG, CLEMENT, RIVERS\",,K1000\nVICE PRESIDENT OF RESEARCH,NCC MEDIA,Y4000\nENGINEER,LITTON,D5000\nGALLAGHER CONSTRUCTION,,B1000\nCEO,COMMUNITY BANK OF BROWARD,F1100\nIMPORTER,EUROCOBBLE,Z9500\nREALTOR,GUIDA REALTY,F4200\nAttorney,\"Degan, Blanchard & Nash, P.C.\",K1000\nTAYLOR ROTH BUSH & HEFFNER,,K1000\nADMINISTRATOR,FAMILY HOMESTEAD,J1200\nPRESIDENT & CEO,JACKSON HEALTHCARE LLC,H3000\nASSET MANAGEMENT,CLINE TRUST COMPANY L.L.C.,Y4000\nInformation Requeste,Louisville Chamber of Commerce,G1100\nPROPERTY MANAGER,BALLYHALLINAN PROPERTIES,Z9500\nCEO,Southwest Air Products,Y4000\nPRODUCT DEVELOPMENT,\"HIERATH PRODUCTS, LLC\",Y4000\nBUSINESS OWNER,E MEDIA,Y4000\nREAL ES,PDS DEVELOPMENT CORPORATION,J1200\nBELLEVUE FIRE DEPT,,L1400\nAttorney,Servicesource Intrenational LLC,Y4000\nbroker,Provident Capital Manage.,Y4000\nPresident AFS,Ameren Energy Fuels & Services,E1600\nDISD SCHOOL BOARD #3 MEMBER,DISD SCHOOL BOARD #3,Y4000\nOwner,Covenant Homes,B2000\nMEDICAL EPIDEMIOLOGIST,CDC,Z9500\nTHE BERNTSEN GROUP,,Z9000\nATTORNE,DONOHUE MCKEE & MATTSON LTD,K1000\nCPA,Adamson & Co,F5100\nMGR.,MARTIN & SHAFT CO.,Y4000\nTEACHER,WINFIELD CITY SCHOOLS,X3500\nPhysician,Denver Health & Hospital Authority,H2100\nPHOTOGRAPHER,EVENT PHOTOGRAPHY GROUP,J1200\nPROGRAM DIRECT,AR SUPPORT NETWORK,Z9500\nLAW PARTNERSHIP,,K1000\nCONTRACTOR,GRIFFEN ENTERPRISES INC.,Y4000\nSenior VP,Draper and Kramer,F4200\ninvestment manager,FL Putnam Inc.,Y4000\nFellow,Dorm Major Institute,Y4000\nMANA,SOLUTIONS FOR MEDICAL BUSINESS,H1130\nC.E.O.,AMES CONTRACTING INC.,B1500\nPartner,Bond & Company,K2000\nAgent,Moberg Insurance,A4000\nMORTGAGE INVESTERS COR,,F4600\nHearing Clerk,US House of Representatives,X3000\nAttorney,\"Shor, Levin & DeRita, PC\",K1000\nFORCHT & ASSC,,Y4000\nResearch Cord,Seiu,LG300\nHOMEMAKER,INFORMATION REQUESTED,F2100\nGeneral Sales Manage,McGrath Lexus,T2310\nSELF-EMPLOYED,,L1200\nAttorney,\"Lewis E. Dinkins, PA\",Y4000\nPRESIDENT,TURKON AMERICAN LINE,J7500\nManaging Director/Partner,\"Marks & Sokolov, LLC\",K1000\nALVAREZ AND MARSHAL,,Y4000\nCONTRACTOR,CHAMPAGNE ELEVATOR,Y4000\nPHYSICIAN,\"MEDICAL FUNDING CONSULTANTS, LLC\",Y4000\nCEO & PRESIDENT,LADENBURG THALMANN FINANCIAL,F2100\nCurator,Adler Planetarium,X4200\nRESEARCH ASSOCIATE,PENN STATE UNIVERSITY,H5100\nPresident,\"Wagner Investment Management, Inc.\",F0000\nLIBERTY CO SCHOOL SY,,X3500\nASSOCIATED AGENCY,,J5100\nFINL ADVISOR,MORGAN STANLEY,F2300\n\"WENDA, DIEFENDERFER, RYAN, ET AL\",,K2000\nEVP,HEWLETT PACKARD,C5100\n\"Vice President, Corp\",Midland National Life Insurance Compan,F3300\nOffice Manager,Ga. Outdoor News,Y4000\nCEO,HERITAGE WEALTH COUNSELORS,Y4000\nCONTRACTOR,GRAHAM HEATING,Y4000\nINVESTMENT ADVI,DAVENPORT & COMPANY,F2100\nExecutive,Conexant Systems Inc.,C5110\nECONOMIC,CENTER FOR ECONOMIC GROWTH,H2000\nGEMSTAR GROUP INC,,Y4000\nKENNETH B ROGERS DMD PA,,H1400\nConsultant,Progressive Strategies,Y4000\nClinical Social Work,Self-employed,J1200\nBANK EXECUTIVE,CHASE MANHATTAN,F2100\nATTORNEY,MEHRI & SKECHT,JE300\nPresident,Weaber Inc,A5000\nTITLE INSURANCE,SELF- EMPLOYED ROBISON INC.,F4300\nLAWYER,NELSON LAW GROUP,K1000\nOwner,Fiancee Jewelry,G4600\nATTORNEY,\"GREENSEASON MONROE, PA\",K1000\nPresident/CEO,Wescom Credit Union,F1300\nHGO TECHNOLOGY INC,,Y4000\nANDERSON HIBER & BLAIR,,K1000\nAIR RESOURCES BOARD,,Y4000\nUrban Planner,Engelhardt Hammer,Y4000\nCOMM ON FOREI,YALE LAW SCHOOL,H5170\nSELF/PHYSICIAN/BUSINESS OWNER,,G5800\nCHAIRMAN PRES,HARTFORD STEAM BOILER,F3400\nVP,\"Beau Jo's Managent\",J1200\nVICE-PRESIDENT,GEORGIA POWER CO.,E1600\nOWNER,SPECIALTY ENGRAVING,Y4000\nPresident,Montana Chamber,Y4000\nCEO,CENTURE INTERNATIONAL ARMS,Y4000\nVice President & General Manager,GenPower Services,Y4000\n\"CHAIRMAN, CEO\",THE HARTFORD,F3100\nPRESIDENT,GGTW LLC,Y4000\nADMINISTRATOR,NEW MEXICO HEART INSTITUTE/ADMINIST,H1130\nBERGNER BOCKORNEY CLOUGH & B,,K2100\nPRESIDENT,NRP GROUP,F4100\nWORLD RESOURCES INSTITUTE,,X4000\nCUMBERLAND,,F2100\nSALES MANAGER -SOFTWARE,AIT-USA,Y4000\nEmergency Dept Physician,Emergency Medical Associates,H1100\nDAVIS AND SHANK,,K1000\nPROGRAM MANAGER,PACIFIC NORTHWEST NATIONAL,Y4000\nCPA,Woodward & Associates,F5100\nATTO,\"BARRASSO, USDIN, KUPPERMAN & F\",K1000\nEXECUTIVE,\"FITBIT, INC.\",Y4000\nPRESIDENT,ALEGIEND AIR,T1500\nOWNER,KOURY,Y4000\nAttorney,\"Lan & Associates, LLC\",K1000\nPRESI,A.L.THOMPSON ENTERPRISES INC.,Y4000\nFINANCE,TOWERS WATSON,G5270\nRUCKER MOTORS INC,,T2300\nRETIRED,LOCAL 502,J1200\nOPER ENGINEERS LOCAL 95,,LB100\nROBERT PITTENGER COMPANY,,Z1100\nSURVEYING,KENT SURVEYING INC.,B4300\nRETAILER,ALTA,Y4000\n,NORTH AMERICAN INDUSTRIAL SERVICES,Y4000\nBROWN DREW MASSY & SULLIVAN,,Y4000\nMEISEL TUTEUR & LEWIS PC,,Y4000\nNON PROFIT EXECUTIVE,THE OVERBROOK FOUNDATION,X4100\nLAWYER,\"ROPES & GRAY, LLP\",K1000\nRetired,WK Kellogg Foundation,Y4000\nSENIOR POLICY AD,\"ALSTON & BIRD, LLP\",K1000\nBanker,Bankwest,F1000\nReal Estate Deve,Trevi Holdings Llc,F4000\nUSPTO,Patent Examiner,Y4000\n\"STUDENT, GI BILL\",RETIRED MILIATRY,X1200\nNATIONAL PRESTO IND,,A5000\nADULT CARDIOLOGY,WESTWOOD CARDIOLOGY ASSOCIATES,H1100\nDoctor,\"Nicolle McGowan, MD\",H1100\nANETHETIST,EMORY MIDTOWN,Y4000\nCHARTER AIRLINE PILOT,,T1100\nPRESIDENT,THE LAWRENCE DOLL COMPANY,F4100\nPLANT MANAGER,\"GOLDEN PEANUT COMPANY, LLC\",A1400\nUHRAMAR DIAMOND SHAMROCK,,Y4000\nGLAMOUR HOMES,,B2000\nRAINBOW FARMS INC,,A1000\nPhysician,Freeman Health Systems,H0000\nATTORNEY,SHAGIN AND ASSOCIATES,Y4000\nLAB. TECH.,\"UNIV. OF NORTH CAROLINA, CHAPEL HILL\",Z9500\nDEMOPULOS & FERGUSON ASSOC,,B4000\n\"JONES, FOSTER, ET AL\",,K1000\nDirector; Finance,Pfizer Global Research And Developmen,H4300\nELECTRICAL SUPPLY,WISEWAY PLUMBING,B3400\nEXECUTIVE CONSULTANT,HAYWARD ASSOCIATES/EXECUTIVE CONSUL,J1100\nADAMS INSURANCE,,F3100\nN/A/HOMEMAKER,,H5000\n\"Meteorologist, Software Q/A\",Unemployed,Y1000\nVETERANS ADMINISTRATION,,X3000\nATTORNEY,AUTISM ADVOCACY & LAW CENTER,Y4000\nConstituent Services Coordinator,United States Senate,X3000\nCEO,Parker McCay,K1000\nHUNTER-SADLER CO,,Y4000\nREAL ESTATE SERVICES,REALOGY,F4200\nTULLY CONSTRUCTION CO,,B1500\nNot employed,Not employed,G5250\n\"Senior VP, External\",Verizon,C4100\nLEGACY MANAGEMENT GROUP INC.,,G5800\nCONSTRUCTION SALES,SELF EMPLOYED,Y4000\nVice Chairman of the Board,City Securities,F2100\nSECRETARY,JOHNSON ANSELMO,Y4000\nOWNER,TIDWELL GROUP,Y4000\nUNITED COMPANIES,,F1400\nLegal Assistant,Fried Frank,K1000\nCONSTR,\"MILESTONE CONSTRUCTION, INC.\",Y0000\nATTOR,SANDS ANDERSON MARKS & FULLER,K1000\nENGINEER,Electric City,B3200\nSENIOR VICE PRESIDENT CORPORATE COMMUN,H.C.A.,H2100\nECONSULT CORPORATION,,Y4000\nChief Operating Offi,Florida Panthers,G6400\nRegional Sales Manag,Pettibone/Traverse Lift LLC,Y4000\nRetired,\"Hampton Indus, Inc\",Y4000\nHARPER GROUP,,Y4000\nMESA PETROLEUM,,E1120\nENGINEER,\"HARRIS, INC.\",Y4000\nBUSINESS MANAGER,VIDRINE COMMUNITY CLINIC,Y4000\nINVENTOR,\"TECHNICAL SPECIALTIES, INC.\",Y4000\nManager,Logan Food Co.,Y4000\nENGINEER,PRAXAIR,M1000\nMEDICAL SERVICES CORP,,H3000\nBUSINESS CONSULTANT,RETIRED,X1200\nPHYSICIST,KAFB PHILLIPS LAB,Y4000\nMANAGER,THE LITTLE GOLDEN SKILLET,Y4000\nCHAIRMAN,DUKE ENERGY,Z9500\nATTORNEY,\"LANDRIGAN, POTTER & RANDLE, PC\",K1000\nGREAT SOUTHERN BANK,,F1000\nCORPORATE VICE PRESIDENT,ST. JOHN MEDICAL CENTER,H2100\nPEOPLES HERITAGE BAN,,F1200\nENTREPRENEUR,WIRELESS VENTURES L.L.C.,Y4000\nPRESIDENT,MICHIGAN CHIEF SALES INC.,G1200\nINVESTMENTS,PENNANT PARK,F2100\nATTORNEY,DAVIDSON BREEN AND DOUD,Y4000\nINSURANCE BROK,PB & ASSOCIATES INC.,F3100\nSales,Access Medical Assoc,Y4000\nBUILDER-ENGINEER,VELIZ CONSTRUCTION,Z9500\nTEACHER,NORWOOD CITY SCHOOLS,Z4200\nEXECUTIVE,R.G.C. MECHANICAL INC.,Y4000\n\"CROW'S NEST ASSOCIATES INC\",,Y4000\nB. & H. AIR TOOLS INC./PRESIDENT/ O,,M5100\nPHYSICIAN,DAYTON GASTRO,H1130\nFuneral Director,Stumpff FH,G5400\nATTORNEY,\"HORNTHAL, RILEY, ELLIS & MALAND\",Z9500\nAttorney,Harris Bancorp,Y4000\nInfo Requested,Rwh Properties Inc.,F4000\nAT,\"HUGHES, KELLNER, SULLIVAN & ALKE\",Y4000\nOCCUPATIONAL THERAPIST,UW,H5100\nCLINICAL PSYCHOLOGIST,SELF - EMPLOYED,J7400\nNAT INST AGING,,Y4000\nCEO,ACCEA CORPORATION,C5120\nEXECUTIVE,PORTMAN EQUIPMENT CO.,Y4000\nDean of the Law Scho,University of Oklahoma,H5100\nRoofer,Ideal Roofing,B3000\nIT Systems Architect,Hewlett-Packard,C5100\nVice President,Treece Alfrey Musat & Bosworth,Y4000\nAGGREGATE CONTROLL,TEXAS INDUSTRIES,M2100\nMETROPOLITAN COLLEGE OF NEW YORK,,H5100\nCHMN,WOLFENSOHN & CO,Z9500\nPresident,Iovine Electric,Y4000\nPRESIDENT,MTI COLLEGE OF BUSINESS,H5200\nCAPITAL BANK & TRUST,,F1000\nMANAGER,SPRINT,C4300\nCREEL FOUNDATION,,Y4000\nCHAMBLISS-BAHNER,,K1000\nLEIGH FIBERS,,Y4000\nPresident,\"FINANCIAL ACCOMODATION SVCS., INC.\",F0000\nSENIOR VICE PRESIDENT,LINCOLN PROPERTY COMPANY,F4100\n\"INT'L DEV GROUP\",,Y4000\nBUSINE,BOYS & TYLER FINANCIAL GROUP,F0000\nBAROWKA & BONURA ENGINEERS AND CONS,,B4400\nPRESIDENT,THE HARVEY CO.,Y4000\nOWNER,CA GRANT INC./OWNER,Y4000\nPRESIDENT,\"DEVON CONDOMINIUM B ASSOCIATION, INC.\",Y4000\nPresident,Turbo Components & Engineering,B4400\nENVIRONMENTAL ENGINEER,INTEL CORP,C5110\nTeacher,St Johns School,H5100\nPSYC,LA ACAD. OF MED. PSYCHOLOGISTS,H1110\nCEO,AAPC,Z9500\nR&D Director,Oglevee Computer Systems,C5100\nPRESIDENT,GENSER INSURANCE,F3100\nConsultant,\"WPL, Inc\",Y4000\nHG JETSON URBAN RENEWAL INVEST,,Y4000\nJESRALY INT CLEAN,,Y4000\nVISTA GROUP (REAL ESTATE),,F4200\nWALTON STREET CAPITOL,,F4200\nFOX,ARENT,K1000\nFABRIC MANUFACTURER,,M3100\nPRESIDENT,DEVON HEALTH SERVICES,H0000\nCONSULTANT,LEAP FINANCIAL,Y4000\nPhysician,TPS II,Y4000\nAttorney,\"Dalton, PLC\",K1000\nPROFESSO,UNIVERSITY OF RHODE ISLAND,J7400\nPSYCHOTHERAPIST,SOULCRAFT COUNSELING,Y4000\nOWNER AND TRAVEL AGENT,PREFERRED TRAVEL,T9400\nCPA,WINEBERG SOLHEIM HOWELL & SHAIN,F5100\nMORTGAGE BANKER,BELL MORTGAGE,F4600\nPERKS.COM,,Y4000\nINV. ADV,BLUME CAP,J1200\nDIRECTOR OF,CHESAPEAKE ENERGY CORP.,E1120\nTISHMAN MIDWEST MANAGEMENT CORP,,F4500\nCEO,CRYSTAL WINDOWS,M7200\nINVESTMENT BROKER,JUDDA CAPITAL MANAGEMENT,F2100\nPsychologist,Baylor Family Medicine,H1110\nCOMMUNITY ACTIVIST,SELF-EMPLOYED,H3100\nTHE LIMITED INC.,,G4100\nOAKLEY INDUSTRIES,,M5000\nVP ACCOUNTING,CBI,G2820\nAMERICAN SHARED HOSPIT,,H2100\nMANAGEMENT CONSULTANT,TRANSEGY,Y4000\nFARMER,TEEPLE FARMS INC.,A1400\nAttorney,Law Offices of Gerald L Shargel,K1000\nATTORNEY,\"THOMPSON, HINE\",K1000\nOYO GEOSPACE,,Y4000\nROBBINS LUMBER INC,,A5000\nFIRST HORIZON NATIONAL,,F1100\nSales Rep,Southwest Dealer Services,Y4000\nASSISTANT TO THE CEO,AKAMAI TECHNOLOGIES,Z9500\nVice President,\"Blueridge Films, Inc\",C2400\nVice Pres Of Operati,\"Freeodm Health,INc\",Y4000\nMOBLEY MARKETING,,Y4000\nmanagement,SunTrust Bank,F1100\nSenior VP Sales and,\"Plumrose USA, Inc.\",G2300\nZULANAS DISTRIBUTORS INC,,Y4000\nEQUITY BANCORP,,Y4000\nPRESIDENT & CEO/FOUNDER,EASTERN SHIP BUILDING GRO,T6100\nFOUNDER/CEO,\"CITADEL, LLC\",F2100\nMARSHALL AIR SYSTEMS,,M2300\nconsultant,self,Z9000\nPorfessor,Stevens,H5100\nEPIGRAPH INC,,C5130\nCONTRACTOR,SELF-CORSTONE,B1500\nATTORNEY,WEIL GOTSHAL & GRANGER,K1000\n,ST. LOUIS PHYSICIAL REHABILITATION,Y4000\nNYS LIQUOR AUTHORITY,,X3000\nEXECUTIVE,\"DOUGLAS HOME CARE, INC.\",H3000\nSUPPORTIVE HOU,THE ABELL FOUNDATION,X4100\nCHAIRMAN,\"FREEPORT-MCMORAN COPPER & GOLD, INC\",E1220\nJOHN A PETERSON JR,,Y4000\nSuperintendent Of Sc,GILBERT PUBLIC SCHOOLS,X3500\nUNISERV Director,Michigan Education Association,L1300\nAGEE & COMPANY,,Y4000\nSmall Business Owner,VLK Enterprises,Y4000\nDARRAS FREIGHT SVC INC,,Y4000\nSOFTWARE DEVELOPER,ELAW,Y4000\nGEORGIA NATIONAL GUARD,,Y4000\nCONSULTANT,THE CONSERVATION COMPANY,Y4000\nSALES REPRESENTATIVE,TRI-CENTRAL OFFICE SUPPLY,Y4000\nReal Estate (Propert,DHP Investments Co.,F4200\nMANAGEMENT,DRAGON DEN RESTAURANT,G2900\nPresident and CEO,Horizon Consulting Incorporated,Y4000\nReal Estate Develope,DevCon Partners,Y4000\nHousewife,NA,J7400\nManager,Pioneer Hi-Bred,Y4000\nAMERICAN MUSEUM NA,,X4200\nVICE PRESIDENT,THIRD COAST MORTGAGE L.L.C.,F4600\nSALES,DENNIS DON ASSOCIATES,Y4000\nUNITED RECORD PRESSING INC,,C2600\nAttorney,\"Smith & Baltaxe, LLP\",J1200\nRepresentative,Texas House,Y4000\nUNIVERSITY PROFESSOR,UNIVERSITY OF SOUTH FLORIDA,H5100\npresident,Larovo Stainless Scrap,Y4000\nSELF EMPLOYED LANDSCAPING COMPANY,HESS LAWNS INC,Y4000\nReal Estate,Bachmann Associates,F4000\nChairman and CEO,\"Charming Shoppes, Inc\",G4000\nInformation Requeste,Epcor Foundry / Seilkop Ind.,Y4000\nCorporate Officer,\"Hyval Industries, Inc.\",Y4000\nretired,delta air lines,Z9500\nVice President,\"Stanton Telecom, Inc\",Y4000\nPORTFOLIO MANAGER,KARSCH CAPITAL,F0000\nLAHEY CLINIC/CEO/M.D.,,H1100\nCONSULTANT,DELOTTIE CONSULTING LLP,Y4000\nMORRIS DICKSON COMPANY,,J1100\nOIL EXEC.,TEXAS ALLIANCE,E1120\nLEGISLATOR,WISCONSIN STATE ASSEMBLY/LEGISLATOR,X3000\nOWNER,CREATIVE VISION INTERIOR DESIGN,G5000\nLPROVICA INC,,Y4000\nPARTRNER,WALLACE GROSSMAN ASSOCIATES LL,Y4000\nMEDICAL BILLING INC,,Y4000\nFarm Manager,Taylor Ranch,A3000\nBiochemist,QSV Biologics,Y4000\nINSURANCE,BREWART ENTERPRISES,X1200\nLINN CO ANESTHESIOLO,,H1130\nConstruction,Sergi Construction,B1500\nSALES,R.J. YOUNG COMPANY,G4600\nWILDLIFE IMAGES,,Y4000\nVice President,\"Ferrate Treatment Technologies, LL\",J9000\nPartner- Management Consulting,IBM,C5100\nCERTIFIED PUBLIC ACCOUNTANT,DAVID FELSIM & ASSOC,Y4000\nSurgeon,\"Children's Hospital Los Angeles/Univer\",H2100\nbroker,Prebon,Y4000\nOwner,VISION WINDOW COMPANY INC.,M7200\nMARK S TANAKA CO INC,,G5270\nLAWYER,UD DEPT OF JUSTICE,Y4000\nSPECIALTY HEALTH CARE SERVICES,,H0000\nARCHITONICS,,Y4000\nCEO/EXECUTIVE DIRECTOR,GAY COMMUNITY CENTER OF RICHMOND,Y4000\nInsurance Agent,Irmo Ins Agcy Inc,F3100\nFINANCIAL SERVICES,ADVANCED FINANCIAL GROUP,F0000\nInformation Reqested,Self employed,K1000\nHealth Care Admin,Self,H0000\nCEO ORANGE PARK PAS,HCA,H2100\nGRANTMAKER,,Y4000\nMAILMAN,US POST OFFICE,X3700\nPRESIDENT,\"DM OPERATIONS MANAGEMENT, INC.\",Y4000\nL H D CONSTRUCTION,,B1000\nAccountant,Lamina,Y4000\n,DEDHAM HEALTH AND ATHLETIC COMPLEX,Y4000\nASSOCIATE,\"CRAWFORD, MURPHY & TILLY\",Y4000\nSENIOR VICE PRESIDENT,NAT. ASSOC. OF HOME BUILDERS/SENIOR,B2000\nSELF EMPLOYED LAWYER,NONE,Y4000\nVP PUBLIC POLICY,GENERAL MOTORS,T2100\nBusinessman,Self-Employed,F0000\nATTORNEY,\"CANTOR, STONEBURNER ET. AL\",Y4000\nPRESIDENT & CEO,\"FIRST HERITAGE, LLC\",F1400\nNONE,NONOE,Z9500\nSTOCK BROKER,WELLS FARGO,F1100\nBURNS INTERNATIONAL STAFFING,,G5250\nEnvironmental Consultant,EPDSCO,Y4000\nAttorney,\"Bell, Davis, & Pitt\",K1000\nCONSULTING,SELF,J2100\nPresident,Lexington Family Chiropractic,H1500\nRETIRED ORTHODONTIST,NONE,Y2000\n\"President, Board of Directors\",Grays Harbor Community Hospital,H2100\nLaw,\"Institute for Justice, Minnesota Chapt\",K1000\nBanker,Dickinson Financial Corp,F1100\nSpecial Education Vo,Self-employed,J1200\nDETROITER TRUCKSTOP CORPORATION,,E1170\nGreen Entrepreneur,\"Blue Moon Design, Inc.\",Z9500\nSales Manager,Spraggins Flooring,J1200\nSOCIAL WORKER/ POTTER,SELF-EMPLOYED,H6000\nMGR,ONE CALL CONCEPTS,Y4000\nKY FOR BETTER,,Y4000\nSecretary,Hay House,Y4000\nCORP DIR OF FOODS & NUTRITION,MEDICAL FACILITIES OF AMERICA,H2000\nCorporate Development,LeMai Enterprises,J1200\nPartner,Nowell Amoroso,K1000\nChief Marketing Offi,Walmart.Com,G4300\n\"WARBURG, PINCUS\",,J7400\nInventory Control,Town & Country Landscape Supply,B3600\nMANAGING DIRECTOR,DEAN WITTER,F2300\nINVESTMENT ADVISER,CAPITAL COUNSEL,F2100\nFINANCIAL MGMT GROUP,,F0000\nPRESIDENT,TOWER PARK CORPORATION,Y4000\nEXECUTIVE VICE PRESIDENT HUMAN RESOURC,E.M.C. CORPORATION,C5130\nATTORNEY,\"YOUNG & SIMMON, L.L.C.\",K1000\nCHAIRMAN,SOUTHWEST AIRLINES/CHAIRMAN,T1100\nschool librarian,Byram Hills School District,X3500\nSTEVENS REAL ESTATE,,F4200\nMETALS INC,,M5000\nSEARS PAYMENT SYSTEMS,,F2100\nDirector,Beam Global Spirits & Wine,G2820\nBRITTON & KOONTZ,,F1100\nOWNER,MCILWAIN CHARTERS/OWNER,Y4000\nPresident & CEO,\"Patriot Holdings, LLC\",Y4000\nSvp- Global Risk Management,ProLogis,F4100\nADJUNCT INSTRUCTOR,N/A,Y4000\nKELSO AND KAPLAN,,K1000\nEXEC DIR B,BRISTOL-MYERS SQUIBB CO.,H4300\nExecutive,AVI BioPharma,Y4000\nTRAINOR CONSTRUCTION CO,,B1500\nENGINEER,WELTY & ASSOCIATES,Y4000\nTeacher,\"Town of Falmouth, MA\",X3000\nSelf Employed/Engineer,,\nUMDNJ,,Y4000\nATTRNY/CONSULTANT,SELF,J7300\nNEAT MANAGEMENT,,Y4000\nDWYER REAL ESTATE,,F4200\nHOUSEWIFE,NA/HOUSEWIFE,Y1000\nINVESTMENT MANAGER,KESSLER FUND,J1100\nInsurance Agent,Steven Graves Insurance Agency,F3100\nTISHMAN REALTY AND CONSTRUCTION,SELF-EMPLOYED,B4000\nDEPT. OF COMMERCE/NOAA/BRANCH CHIEF,,X3000\nHOME BUILDING,CC DEVCO,F4100\nBiostatistician,Kaiser Perm,Y4000\nFINANCIAL MANAGER,STEADFAST FINANCIAL,Y4000\nH MARKUS & CO,,Y4000\nFAMOUS BRANDS DIST INC,,G2850\nMANAGING PARTNER,BDB LAW,Y4000\nCOMPORIUM/VICE PRESIDENT/CFO,,C4100\nCASE CASTING,,Y4000\nINSURANCE,RJF AGENCIES,Y4000\nTAX DIRECTOR,\"DAVIDOFF OF GENEVA USA, INC.\",Y4000\ngovernment affairs,bolton st johns,Z9500\nREALTOR,VIRGINIA COOK RELATORS,Y4000\nHIGH POINT BANK,,F1100\nPresident,D.L.D. Insurance Broker,F3100\nTeacher,Newport School,Y4000\nHOMEMAKE,PENINSULA TRUCK LINES INC.,T3100\nREAL ESTATE,REMAX BEACH CITIEX,F4200\nRETIRED CIVIL ENGINEER,,G0000\nSECURITY SERVICE CONSULTANT,SELF,Y4000\nReal Estate Development,The Fallon Company,F4100\nPRESIDENT,MARATHON GROUP,F2600\nVP MARKETING (ME,CONAGRA FOODS INC.,G2100\n\"CONDUIT TOTAL: 248,881.66\",,J2100\nPresident,Management Services Network,Y4000\nCHAIRMAN & CEO,MERCURY MEDICAL,Y4000\nPHARMACIST,KELLEY-ROSS PHARMACY,G4900\n\"PRESIDENT, TILCON NEW YORK\",\"OLDCASTLE MATERIALS, INC.\",B5100\nAVP NTWK & CAP PLNG,UNION PACIFIC RR,T5100\nBusiness Executive,\"TAG, Inc.\",J1200\nhospitality managmen,self employed,G0000\nVP,CARD-MONROE CORP.,J1100\nWESTERN MUTUAL INSURANCE GRP,,J1100\nBEER WHOLESALE,BUDWEISER DISTRIBUTION CO.,G2850\nCHARLES TOWNSEND,CHARLES TOWNSEND,Y4000\nEnvironmental Activi,Forest Guardians,JE300\nMgmt,\"Local Matters, Inc\",Y4000\nManager,Campito Plumbing & Heating,B3400\nEXECUTIVE,GTI,Y4000\ncustom carpenter,self,Y4000\nEngineer,\"Yar Com, Inc\",Y4000\nCEO,HILLMAR CHEESE COMPNAY,A2000\nVICE PRESIDENT,DELTA CONTRACTING,Y4000\nGeneral Agent,Agency Services Incorporated,F3300\nmessenger,Messenger,G5000\nPhysician,Center for Asthma & Allergies,H1130\nDOW JONES NYC,,G5280\nMANA,SANTA FE ANESTHESIA SPECIALIST,H1130\nLAWYER,SENDER WASSERMAN WADSWORTH PC,K1000\nComputer Cons,Self - Employed,Y4000\nATTORNEY,BRACEWELL GIULIANI,Z9500\nPURVIS GRAY SCHUETZE,,Y4000\nInvestor,Fairways Offsfhore Engineer,T1100\nSILVER DRUG SHOP,,G4900\nPresident,Sprick Creative Inc.,Y4000\nCUSTOMER PROGRAM MANAGER,USF,Y4000\nSOFTWARE ENGINEER,INTERNET BROADCASTING,C5140\nBANC OF AMER SECURITIES,,F2100\nRETIRED,RETIRED CLINICAL PSYCHOLOGIST,J7400\nLITHCON PETROLEUM,,J7500\nCEO,Two Men and a Truck,T3100\nLOGGING CONTRAC,,A5000\nMISSIONA,NEW HOPE UGANDA MINISTRIES,Y4000\nOWNER,Z&L US INC./OWNER,Y4000\nCEO,Members 1st Federal Credit Union,F1300\nPRESID,CONTOOCOOK ARTESIAN WELL CO.,Y4000\nTEACHER & NURSE,RETIRED,X1200\nPHYSICIAN,UNIVERSITY OF CALIFORNIA - DAVIS,H5100\nSOFTWARE E,DEUTSCHE BANK SECURITIES,Z9500\nCLARE ROSE NASSAU,,G2850\nATTORNEYA,SELF EMPLOYEDA,K1000\nESTIMATOR,KNOCHEL BROS. INC.,Y4000\nCEO,NOW,J7400\nOwner,Lexi`s,Y4000\nPRESIDENT,DELTA METALS CO,Y4000\nMANAGER,REQUESTED,Y1000\n\"HUBBELL, SAWYER, PEAK, & O'NEAL\",,\nUniversity Professor,\"Temple University, Japan Campus\",H5100\nMANAGER,SILICON GRAPHICS,C5110\nVIDEO SERVICES CORPORATION,,C2400\nBUSINESS CONSULTANT,PRACTICE SUPPORT GROUP,Y4000\nGOVERNMENT RELATIONS,U S CHAMBER OF COMMERCE,G1100\nABTEX BEVERAGE,,G2700\nCONSULTANT/ATTORNEY,SELF EMPLOYED,G5200\nOwner,McArdle Law Office,K1000\nEXECUTIVE,ALSAKER CORP,Y4000\nDEBTIS,,Y4000\nOWNER,PINCRAFT,Y4000\nADVERTISING,ABELSON TAYLOR,G5210\nSOFTWARE ENGINEER,JOHNSON & JOHNSON,H4000\n\"PHILLIPS NIZER, LP\",,K1000\nSURREYS OF FLORIDA,,Y4000\nPHARMACIST,COTTONWOOD PHARMACY,H1750\nEXEC,IAM NATIONAL PENS/EXEC,Y4000\nSHERWOOD INDUSTRIES INC,,M2100\nSOFTWARE DEVELOPER,CAMICO,F3100\nRENO AGRICULTURE &,,Y4000\nDEPUTY,\"L.A. COUNTY SHERIFF'S DEPT.\",X3000\nPHYSICIAN,BOAC,Z9500\nPHYSICIAN,AURORA HEALTH,H2100\nEXECUTIVE DIRECTOR,TEXAS ASSOCIATION OF BUILDERS/EXECU,B2000\nSR. VP - GL,ALCON LABORATORIES INC.,H4000\nRETIRED PERSONNEL MANAGER,RETIRED,X1200\nCF LAND SERVICES,,T3100\nEMD/FAMILY PHYSICIAN,CENTRO MEDICO DEL VALLE,H1100\nENGINEER,VPD INTEGRATION SERVICE LLC,M9000\nJIT SERVICES INC,,Y4000\nArtist,Self-employed,J7150\nGOLD HILL ENTERTAINMENTS INC,,C2600\nMARKETING MAN,ALLIED WASTE SERVICES,E3000\nCONSULTANT,QUADRIC GROUP INC,G5200\nFarm,Verco,Y4000\nattorney,Wright & Mills,K1000\nB,SHEET METAL WORKERS LOCAL NO. 464,LB100\nPhysician,VA N TX Health Care Ctr,Y4000\nPhysician,Neonatology Associates PC,H1130\nConsultant,Alese K Inst,Y4000\nHOMEMAKER/VOLUNTEER,SELF-EMPLOYED,F4500\nCEo,Collective X,Y4000\nPresident/CEO,Aeroscraft Inc,T1200\nExecutive Director,Metro Career Center,Y4000\nINFO REQUESTED,HOSPICE CARE-SOUTHEAST AR,H2200\nM M C INC,,Y4000\n\"RASEUR, LONG, TAWITZ, SCHNEIDER\",,Y4000\nCAMBRIDGE INTERNATIONAL INC,,K2000\nMANUFACTU,COMPLEX TOOLING & MOLDING,M5100\nC.E.O.,ANTHONY,Y4000\nALTUS HIGH SCHOOL,,Y4000\nPresident-Federal Af,Troutman Sanders,K1000\nAIKEN GUMP & ASSOC,,K2100\nFinancial Advisor,Waddell and Reed Inc,F2100\n\"LEND LEASE REAL ESTATE INVESTMENTS,\",,F4100\nENGI,MERLYN J. JENKINS & ASSOC. INC,B4300\nPresident,Florida Investment Inc.,F7000\nPIKEVILLE NATIONAL BANK & TRUST,,F1100\nDEPARTMENT OF JUSTICE U.S. ATTORNEY,,X3200\nChairman & Ceo,Profunds Group,Y4000\nREAL ESTATE,\"B.P.G. PROPERTIES, LTD.\",F4000\nChief Executive Offi,Paoli Medical Consultants,H0000\nMANAGER,ROGERS GROUP INVESTMENTS,B5100\nVICE PRESIDENT OF MARKETING,\"CISCO SYSTEMS, INC.\",C5110\nMarketing,Yahoo! Inc,C5140\nSR. DIRECTOR,MICROSOFT CORPORATION,C5120\nFOUR CORNERS TRAVEL,,T9400\nGENERAL MANAGER,XCEL ENERGY,E1620\nCASTELLI CONTRACTOR,,Y4000\nSRVP,VERISK ANALYTICS,Y4000\nPhysician,Quality Partners of Rhode Island,Y4000\nCUTLER CRANBERRY,,A1400\nFCS OF EAST/CENTRAL OKLAHOMA/DIRECT,,A4000\nPUBLICATION DISTRIBUTION & PUBLISHING,\"APD, INC.\",Y4000\nMB ALTMAN & SONS,,J7150\nPUBLIC RELATIONS,THE MARITIME AQUARIUM AT NORWALK,Y4000\nPARTNER,VICTORY PARK CAPITAL,F2100\nSales/Trader,Piper Jaffray Company,F2300\nGOVERNMENT RELATIONS EXECUTIVE,HONEYWELL INTERNATIONAL,M2300\nCEO,FED LAND BANK ASSOCIATION,F1100\nMarketing,American Express,Z9500\nBARLEN ENTERPRISES,,J1100\nDIRECTOR,EAGLE I,E1120\nLLC MEMBER,\"EDSLINK, LLC\",Y4000\nCONSTRUCTIO,WORTH CONSTRUCTION INC.,B1500\nPresident,Professional Insurors,F4500\nDEVEL,SHOOK & TARLTON INVESTMENT CO,Y4000\nFABRICATING CORP,,Y4000\nJOHN STUART SITEWORK,,B3400\nPresident/ceo,Sandcastle Homes Inc.,B2000\nAttorney,Bruce G Clark Assoc,Y4000\n\"PITTMAN, HOOKS ET AL\",,K1000\nATTORNEY,\"CENTURYLINK, INC.\",C4100\nLLOYD O MORRIS & ASSO,,Y4000\nONCOLOGY MEDICAL SCIENTIST,GLAXOSMITHKLINE,H4300\nBOURNE COMPANY,,Y4000\nMARTIN LUTHER KING ED CENTER,,Y4000\nPublisher/Futures Tr,Moore Research Center Inc,Y4000\nERSKINE & ERSKINE,,K1000\nP,FIRST CHOICE COMMUNITY HEALTHCARE,Y4000\nCEO,EM SOLUNTIONS,D9000\n\"SANDLER O'NEILL PARTNERS\",,J5100\nSenior Editor,the New Yorker magazine,C1100\nFINANCE CONSULTANT,SELF-EMPLOYED,J7400\nElectrician,IBEW Local #95,LC150\nDoctor,Prima Care,Y4000\nExcavating Contractor,\"Property Design, LLC\",Y4000\nOWNER,ABSOLUTE PAINTING,B3000\nATTORNEY,\"PAUL, WEISS, RIFKIND, WHARTON,\",J7400\nCEO,MORGAN KEEGAN & CO,F2100\nJ & B NEWELL,,Y4000\nADAMS REALTY,,J5400\nLawyer,Solomon Pearl,Y4000\nEVP & Chief Financia,TV One,C2200\nSr.Project Manager,Viacom,C2000\nRet.,U.S. Federal Civil Service,X3000\nVP,EMERSON ELECTRIC CO./VP,C5000\nMASDUN CAPITAL ADVISORS,,J7400\nCeo,Pfleger Foundation,Y4000\nBOATHOUSE AT WATERPLACE PARK,,G2900\nENTERTAINMENT,SELFEMPLOYED,C2000\nGENERAL MANAGER,OURISMAN AUTOMOTIVE,Y4000\nReal Estate,Perlow Investments,Y4000\nPHYSICIAN,INDIAN HLTH SERVICE,H1100\nMAYOY,CITY OF MURFREESBORO,X3000\nGOVERNMENT,MCMAHAN VAUGHAN & ASSOC,Y4000\nTWO RIVER GROUP HOLDINGS,,F2500\nTAICHERT WIGGINS ET AL,,K1000\nEAGLE ABRASIVES INC,,Y4000\nTOWN & COUNTRY HOMES,,F4000\nNATL DEM PARTY,,J1200\n\"SVP, M\",\"WOW! INTERNET, CABLE & PHONE\",C2200\nOwner,Hayden,Y4000\nSr Deputy,Co of LA,Y4000\nCOMMODITY FUTURES BROKER,AMARILLO BROKERAGE CO./COMMODITY FU,Y4000\nREAL ESTATE PROFESSIONAL,HYANNIS PORT CAPITAL,Y4000\nBOOKKEEPER,HILL HOME FURNISHING/BOOKKEEPER,Y4000\nEXECUTIVE,QUALITY HOMES,B2400\nCHAIRMAN-PHARMACIST,MAXOR NATIONAL,Y4000\n\"Principal, President\",\"Capital Management Advisors, Inc.\",F2100\nMELLI & WRIGHT,,Y4000\nEducational Consultant,Starr And Chapman In,Y4000\nREAL ESTATE,CASE & ASSOC,F4000\nHARTFORD DIST INC,,G2850\nProfessor,RPI,Y4000\nPostal Clerk,United States Postal Service,X3700\nEXECUTIVE,BOLLINGER SHIPYARDS INC.,T6100\nFED. GOV.T RELATIONS MGR,SALT RIVER PROJECT,E5000\nOwner,Moonstruck Restaurant,G2900\nBUSINESS MANAGER,CALTON COMPANIES,Y4000\nHUTTON GAS COMPANY,,Y4000\nPRESIDENT,ADVANTAGE ROOFING,B3000\nCONSTRUCTI,DILLARD CONSTRUCTION CO.,B1000\nBusiness Owner/mayor,Lakeside Homes Inc.,B2000\nManager,River Trading Co.,Y4000\nNON-PROFIT DEVELOPMENT,NOT EMPLOYED,Y1000\nphyscian,PAAMG,H1130\nNEW VENTURE GEAR INC,,T2200\nPhysician,\"I Anneli Hanna, MD\",H1100\nVP,Murphy Properties,F4000\nTN COMMERCIAL WAREHOUSE,,Y4000\nTAX CONSULTANT,\"O'NEILL CONSULTING LLC\",Y4000\nCJS INC,,Y4000\nDISTRIBUTION CONSTRUCTION CO.,,B1000\nPRESIDENT,YOUR COMMUNITY BANK,Y4000\nPresident,Management Arts LLC,Y4000\nPresident,Beltway Sales Inc.,Y4000\nVP MARKET,A.O. SMITH WATER PRODUCTS,M2300\nPrincipal,\"Cw3m Company, Inc.\",Y4000\nREAL ESTATE INVESTOR,GREYSTONE & CO,F2100\nExecutive,Ahtna Development Corporation,Y4000\nmanagement,City of Chicago,J7500\nEXECUTIVE DIRECTOR,CENTER FOR LAW AND JUSTICE,K1000\nINVESTOR,NEW WORLD CAPITAL GROUP,Y4000\nENGINEER,EQUINOX CORPORATION,Y4000\nChemist,Siemens,C5000\nExecutive Vice Presi,\"Rabobank, NA\",F1100\nENGINEER,STEC INC,C5110\nBarnett Parker Designs,,G5000\nPRESIDENT,FOX TELEVISION STATION,Y4000\nVENTURE CAPITAL,GYPSY HILL L.L.C.,F2500\nReal Estate Investor,\"D.R. BRYANT & COMPANY, INC.\",F4500\nELPH ENTERPRISES,,Y4000\nPresident,Long Beach Acceptance Corp,J1100\nSenior External Affa,Microsoft,C5120\nCOAL MINE OPERATOR,SELF-EMPLOYED,E1210\nSOUTHERN INSUSTRIAL MANUFACTURERS,,Y4000\nEngineering,Progeny Systems,C5120\nCOLLEGE PROFESSOR,SOUTGERN ILLINOIS UNIVERSITY EDWARDSVI,H5100\nEXECUTIVE,\"FRAZEE INVESTMENTS, LTD./EXECUTIVE\",F7000\nEXECUTIVE DIRECTOR,FOREST PARK SENIOR CITI CENTER,Y4000\nLOBBYIST,WEXLER & WALKER PPA,Z9500\nBROWNSTEIN HYATT FARBER STRICK,,K1000\nOWNER,SKS FARMS,A2300\nMI JCF,,Y4000\nSAN FRANCISCO STATE U,,H1710\nATTORNEY,BENJAMIN W. GLASS & ASSOCIATES,Y4000\nCEO,\"Vendmore Systems, LLC\",Y4000\nRetail,Atwood Distributing Inc.,Y4000\nManagement,Oxfam America,J1200\nEXECUTIVE,THE TRANZOMC COA,Y4000\nRadio Announcer,Whqr Public Radio,C2100\nCOMMERCIAL LEASI,TRAMMEL CROW CORP.,F4100\nJ S FASHION,,G4100\nChief Financial Officer,GE Capital,M2300\nWebmaster,Barnard College,H5100\nDIRECTOR OF GOVERNMENT AFFAIRS,DUCKS UNLIMITED/DIRECTOR OF GOVERNM,JE300\nBUSINESS ENTREPRENEUR,,Y4000\nPRESIDENT AND CEO,FEDEX CUSTOMER INFORMATION SERVIC ES,T7100\nREALTOR,YVONNE BUSH,Y4000\nCLEMENT PAPPAS & CO,,G2100\nEditorial Director,WordWorks Inc,Y4000\nGeneral Manager,Paradise Village,Y4000\n\"MANAGER, SCIENTIST\",SELF EMPLOYED,J1100\nUnified Grocers,,J1200\nCDC OF BOSTON,,Y4000\nAttorney,\"Robert P. Hein, P.C.\",Y4000\nVICE PRE,\"DIXON LUMBER COMPANY, INC.\",B5200\ndesigner,Bennett & Associates,J1100\nSVP BUSINESS DEVELOPMENT,ENCORE CAPITAL GROUP,F1000\nFixed Income Portfolio Manager,\"T Rowe Price Associates, Inc\",F2100\nPresident,Thomas Juza Construction,B1500\nAttorney,\"Oldecker, Biden & Belair\",K2000\nINVESTMENT BANKER,BENGAL PARTNERS,Y4000\nProfessional Staff,Fairfax Co. Board of Supervisors,Y4000\nHACKENSACK FIRE DEPT./FIREFIGHTER/E,,L1400\nTherapeutic Riding Instructor,Little Britches,Y4000\nMERCY HOSPITAL,,J5100\nPRESIDENT,MENKE & ASSOCIATES INC.,F5500\nConsultant,Gold Communications,K2000\nAttorney,Bailey & Oliver Law Firm,K1100\nStudent,UNEMPLOYED,Y1000\nNot employed,Not employed,J6200\nCARDIOLOGY ASSOCIATES OF NEA,,H1130\nGENERATION PLNG/DEVEL VP,SOUTHERN COMPANY SERVICES,E1600\nBond Trading,Incapital,Y4000\nFaculty,U,Y4000\nADMINISTRATIVE EXECUTIVE,SELF-EMPLOYED,Y4000\nATTORNEY/PARTNER,\"PAULICH, SLACK & WOLFF, PA\",Y4000\nConsultant,self-employed,G0000\nCO-CH,GRANITE CAPITAL INTERNATIONAL,F2100\nENGINEER,W2 DESIGN INC.,Y4000\nOwner,Guertin Grge. P Atty. at Law,K1000\nCULP REAL ESTATE,,F4000\nBOAT PEOPLE SOS,,Y4000\nCEO,\"Shelby Ind, Inc\",Y4000\nArchivist,MOMA,JE300\nSENIOR EXECUTIVE,ASSOCIATION OF AMERICAN COLLEGES AND U,J1200\nHEAD OF TREASURY MANAGEMENT,WELLS FARGO BANK N A,F1100\nLandfill Inspector,State of Illinois,X3000\nMANAGING DIRECTOR,TANG ADVISORS,Z9500\nHEALTH CARE CONSULTANT,\"DDC, INC.\",Y4000\nFEDERAL GOVERNMENT AFFAIRS,AMERICAN EXPRESS COMPANY,F1400\nDEVELOPER,MANEKIN CORP REAL ESTATE,J5100\nTENET HEALTHCARE CORPORATION,CORPORATE COMPLIANCE OFFICER,Z9500\nR E SWEENEY LUMBER,,A5000\n\"L'ENFANT PLAZA PRO\",,Y4000\nProfessor,ACC,Y4000\n\"EVP and COO, US\",Prudential Financial,F3300\nSHOPONLINE,,F7000\nOrthodontist,Great Expression Dental Centers,H1400\nPRINCIPAL,HEARTLAND STRATEGIES LLC,K2000\nSALES,PIRRSBURGH WIRE & CABLE,Y4000\nI BUILT THAT,SELF,G0000\nAURORA PUBLIC SCHOOLS,,L1300\nExecutive,\"Culbro, LLC\",F2600\nGOVERNMENT AFFAIRS,WASH. COUNCIL ERNEST YOUNG,Y4000\nBUSINESS OWNER,KOE TECHNICAL INC.,Y4000\nEducation,DOD,X5000\nSmall Biz owner,self,J1200\nPRESIDENT,EXPERIAN,F5200\nEvent Producer,Self,J1200\nMarket Research,Stratavene INC,Y4000\nORTHOPAEDIC SURGEON,SELF-EMPLOYED,J5100\nPresident,Ron Medlin Homes Inc.,B2000\nSCIENTI,NORTHWEST MARINE TECHNOLOGY,T6000\nJERMY SONDERS SEED CO,,A4000\nENGINEER,LINEAR TECHNOLOGY CORPORATION,C5000\nNORTH CENTRAL,,J1100\nProperty Administrator,\"Ashforth Pacific, Inc\",F4000\nAttorney,City of Haverhill,Z9500\nCEO,Robert J Weiler Company,F4200\nROBSON COMMUNITIES/BUILDER/DEVELOPE,,F4100\nSR. VP & DEF.,CASSIDY & ASSOCIATES,K2000\nPRESIDENT,DOR-WIN MANUFACTURING,M0000\nPRESIDENT,NORTH SAUTIAM PAVING CO.,B3000\nSALES,RANEW INSURANCE COMPANY,F3100\nPROF,UAB,H5100\nOil & Gas,Dempsey Oil,E1100\nGOVT AFFAIRS,IBM,C5100\nPresident,AAI,J5400\nCONTRACTOR,MOUNTAIN ENTERPRISES,B1000\nDR OF OSTEOPATHY,,H1130\nPhysician,Derm & Skin Cancer Specialists,H1130\nEXECUTIVE,TRENDMAKER HOMES,B2000\nInsurance,\"Rogers, Gunter, Rayon\",F3100\nSENIOR ANALYST,US ARMY,X5000\nFeldenkrais Practitioner,Self employed,J1200\nDEAN AND PROFESSOR,USF SCHOOL OF LAW,Y4000\nVPGM --DivM),Honeywell International,M2300\nPresident,Oberto Sausage Company,G2300\nTechinician,Mallinckrodt,J1200\nScientist,Cellsignaling Technology Inc,Y4000\nHAI FINANCE CORP.,FOUNDER,Z9500\nPIPELINE CONSTRUCTION BUSINESS OWNER,SELF EMPLOYED/PIPELINE CONSTRUCTION,B1500\nChief Financial Offi,\"NS GROUP, INC.\",Y4000\nPRESIDENT,CABRELLI BAKERY,G2100\nMORTGAGE BROKER,RESIDENTIAL BANCORP,F4600\nFINANCE,CAPMARK FINANCE,F4600\nSEEKING INFORMA,SEEKING INFORMATION,Y2000\nFI,FEDERAL NATIONAL MORTGAGE ASSOC.,F4600\nPresident,\"Inland Group, Inc.\",J1100\nAttorney,Nicholls & Crampton,K1000\nSEAWRIGHT & ASSOCIATES,,Y4000\nLobbyist,Carney Badley Spellman,Y4000\nCEO,1st Financial Bank,F1100\nCEO,\"TOPLA VENTURES, LLC\",C5120\nREAL ESTATE INVESTOR,JDS GROUP,F4000\nPRIVATE INVESTOR,F.E. RICHARDSON & CO.,F2100\nUNIVERSITY OF MASSACHUSETTS,,J1200\nCHAIR,ALBRIGHT STONEBRIDGE GROUP,K1000\nSupervisor,City Of San Francisco,X3000\nAttorney,Marsh,F5100\nPresident,Scottys Contracting & Stone,Y4000\nNEUROSURGEON,SETON HEALTHCARE,Y4000\nJudge,State of NY Court of Appeals,J5100\nConsultant,Clark Lytle & Geduldig,K2000\nATTORNEY,\"JACOBS, WALKER, RICE & BARRY\",Y4000\nDoctor,Doronham Women O.b.,Y4000\nEXEC,UNIVERSITY OF SOUTHERN ALABAMA,H5100\nPresident,\"Napco, Inc.\",J5100\nGOVERNME,MAGLIOCCHETTI & ASSOCIATES,K2000\nFRANKLIN LODGING IND,,Y4000\nDiagnostic Radiologist,\"St John's Mercy Medical Ctr\",H1130\nPublisher,\"DBDotCom, LLC\",Z9500\nLegislative Consultant,\"SERGEANT MAJOR ASSOCIATES, INC.\",J5100\nProprietor,Serendipity Gift Shop,G4600\nJCJ REALTY INC,,F4200\nEXECUTIVE DIR,PHX MUSEUM OF HISTORY,X4200\nEXECUTIVE,HILLDUN CORPORATION,Z9500\nSF CITY COLLEGE,,H5100\nVice President,Stragegies 360,Y4000\nBASIN ELECTRIC POWER COOP,,E1610\nBLACKHILLS CORP,,Y4000\nLAW,HESKELL SLAUGHTER YOUNG & REDIK,K1000\n\"FOLEY, MCLANE, NEALON, FOLEY &\",,K1100\nUPPER CUMBERLAND HUMAN RESOURC,,Y4000\nAttorney,\"Gay, Mccall, Isaacks, Gordon & Roberts\",J7400\nFinancial Advisor,U.B.S FINANCIAL SERVICES,F2100\nGlobal Sales Director,Milennium Hotels,T9100\nMORTAGE MATCH,,F4600\nLEHMAN BROS,,K1000\nPARTNER,H.C. ASSOCIATES,Y4000\nPRESIDENT,IMPERIAL BEVERAGE,G2850\nATTORNEY AT L,\"SPENCER & MASTON, LLP\",K1000\nINVESTOR,\"SEXTONS, INC.\",A3000\nPFIZER/SR. DIRECTOR/GROUP LEADER,,Z9500\nFINANCE / ACCOUNTING,PREMIUM DISTRIBUTORS OF WASH. D.C.,G2810\nWESCO DISTRIBUTION,,Y4000\nFEDERAL AFFAIRS CONSULTING,,Y4000\nHEALTHCARE,RIVERWALK SURGICAL,Y4000\nTRUSTEE,LAURENS ELECTRIC COOP,E1610\nRETIR,\"RADIO FREQUENCY SYSTEMS, INC.\",J1100\nDENTAL HYGENIST,LEE NEVENSCHWANDER,H1400\nBusiness Owner,Mini Picanteria el Guaya,Y4000\nCOMPUTER PROGRAMMER,NONE,C5120\nExecutive,\"Fricker's Restaurant\",G2900\nMATERIALS TESTING CONSULTANTS,,Y4000\nPRESIDENT AND CEO,SYNTONIX,H4500\nLONG MILLER & ASSOCIATES LLC,,F3100\nSHEPARDSON STERN,,G5200\nCHRISTAIN LAW FIRM,,K1000\nCeo,\"SYSCOM, Inc\",C5100\nOwner,Lost Arrow Corporation,G4100\nBAILEY SALES CORPORATION,,Y4000\nAssistant to CEO,FirstEnergy,E1600\nPRESIDENT & CEO,\"CARMEN GROUP, INC.\",K2000\nTRADEMARK ATTORNEY,US PATENT AND TRADEMARK OFFICE,X3000\nVP OF GOVERNMENT RELATIONS,INDIANA BANKERS ASSOCIATION,F1100\nCity Planner,Boston Revelopment Authority,Y4000\nOWNER,PINE MANOR MOBILE HOMES,B2000\nAttorney,Fitzpatrick Cella Harper & Sci,K1000\nat home mom/ free la,N/A,G5240\nPHILLAUR CORP,,Y4000\nManager,Fashion Food Corp,G2900\nEXECUTIVE OFFICER,VERMONT ASSOC OF REALTORS,Z9500\nINSURANCE AGENT/OWNER,\"STEWART'SINSURANCE DEPOT\",Y4000\nATTORNEY,VALENTINI & ASSOC.,K1000\nATTORNEY,LEISAWITZ HELLER,Y4000\nSPO PARTNERS AND COMPANY,,F7000\nATTORNEY/MINERAL MANAGER,SELF-EMPLOYED,G0000\nHead of I.P. Law,\"Novartis, Inc.\",H4300\nTax Lawyer,R. S. M. MC GLADREY,F5100\nOWNER,DAVID GREEN FURS,Y4000\nPOLICY ANALYST,US GOVERNMENT ACCOUNTABILITY OFFI,X3000\nDIXIE WAREHOUSE & CARTAGE CO.,,G5200\nCD INVESTMENT CO,,Y4000\nAttorney,\"Sondra Kaighen & Associates, PC\",K1000\nRestauranteur,Bully East,Y4000\nManaging Director,Barclays Capital,J1200\nEMPLOYEE,CITADEL INVESTMENT GROUP,F2700\nChief Executive Officer,\"SJM Partners, Inc\",F4000\nKOBA INC,,Y4000\nCONN VALLEY CHIPPING,,Y4000\nNURSING HOME OWNER,HOLIDAY HEALTH CARE,Y4000\nCEO,\"DAVISVILLE PROPERTIES, INC\",J1100\nshocroe properties inc,real estate,F4000\nFlorist,SELF-EMPLOYED,J1110\nPresident,Washington Resource Associates,G5250\nManager,Noblestrategy,Y4000\nBroker,Holborn Corporation,Y4000\nAttorney,Law Office Of Marcia L Doubet,K1000\nPartner,Bingham McCutchen,K1000\nMERIDIAN RESOURCES A,,Y4000\nHospitality/Real Est,\"Lalani Lodging, Inc.\",Y4000\nMORRIS COUPLING/DECEASED 12/02,,Y4000\nVERTICAL INVESTMENT GROUP,,F7000\nN P DODGE AND COMPANY,,F4200\nACCOUNT MANAGER,CJRW,Y4000\nPRIVATE WEALTH MANAGEMENT,U.B.S.,F2100\nEXECUTIVE DI,HOUSTON MEDICAL CENTER,H2100\nattorney,Finn & Hurt,K1000\nHOUSE OF BLUES INC,,G2900\nEXECUTIVE,AMERICAN TRADING & PRODUCTION CO,J5100\nCSBA,,Y4000\nGOTECH INC,,Y4000\nReal Estate,\"Trinity Financial, Inc\",Y4000\nTED MANN FOUNDATION,,C2700\nGRANT PLAINS SUPPLY INC,,B5000\nVP,SMITHBRIDGE GUAM,Y4000\nProgram Director,Yeshiva Headstart,Y4000\nTHE JACKSON CLINIC,,H1130\nPROFESSOR,COLUMBIA UNIV.,H5100\nDirector,Security State Bank,F1000\nBEST INSULATION SPECIALIST I,,Y4000\nEntertainment Director,Self-Employed,Y4000\nCAPITAL STRATEGIES INC,,Y4000\nIT PROGRAMMER,STAPLES,G4600\nEXECUTIVE,HOICH ENTERPRISES INC.,Y4000\nPolicy adviser,House Committee on Foreign Affairs,Y4000\nOWNER,E J MANDZIUK & SON FUNERAL,G5400\nBUSINESS MGR IT,AT,Y4000\nCHAIRMAN,THOMAS SAFRAN & ASSOCIATES,F4100\n\"WILKIE, FARR\",,C2200\nVice President Gover,INVISTA S.a.r.l.,E1160\nWEB DEVELOPER,IDAHO DEPARTMENT OF LABOR,X3000\nCBS COVERAGE GROUP,,J7400\nC.P.A.,F.T.I. CONSULTING INC.,Y4000\nExecutive,Mackinaw Administrators,G2900\nreal estate,Transeastern Properties,F4000\nPHYSICIAN,PEACHTREE CITY INTERNAL MEDICINE,J1100\nSR VICE PRESIDENT,BCBS ALABAMA,F3200\nLEASE PROGRAMS INC,,G5300\nMETROWEAR,,Y4000\nLAWYER,BOUL & ASSOCIATES,Y4000\nINVESTMENT MANAGEMENT,SIERRA GLOBAL MANAGEMENT L.L.C/INVE,Y4000\nENTREPRENEUR/SMALL BUSINESS OWNER,BIG SPACESHIP LLC,Y4000\nConsultant,Raftelis Financial Consultants,F0000\nPartner,Grant Funding LLC,Y4000\nBUSINESS OWNER,GG DIRECT,Y4000\nBAPTIST HEALTH CARE CORPORATION,,H2100\nRetired,Strs Ohio,Y4000\nJOINT ACTION COMMITTEE,,J5100\nMISSISSIPPI RIVER BANK,,F1100\nSOUTHERN STAR SHIPPING,,T6000\nPresident,Coldwell Banker Real Estate,F4200\nADVANCED SERVICES FOR PEST CON,,G5700\nC.E.O.,HELP PERSONNEL INC.,G5250\nCITY OF NEW MADRID,,X3000\nPHYSICIAN-MEDIC,BOICE-WILLIS CLINIC,Y4000\nAdministrative Assistant,State Of Illinois,X3000\nNORTH SHORE CATERING OF LAKE FOREST,,G2910\nVice President,Calfornia Broadcasters Association,C2100\nC. F. O.,FOREVER LIVING PRODUCTS,H4600\nHYDROGEOLOGIST,CH2M HILL,B4000\nSoftware Engineer,Analysts Internation Corp,Y4000\nManager,Murray Co,Y4000\nMINISTER,,G5200\nGOVERNMENT RELATION,LINK SIMULATION,Y4000\nMALLEN INDUSTRIES,,Y4000\nExecutive,McDonalds,G2900\nOCEANOGRAPHER,UNIVERSITY OF MARYLAND,H5100\nKPMG,,\nEXECUTIVE,HYDRUS CORP.,Y4000\nSTUDENT,U OF MN,H5100\nCO-O,KNIGHT-HALE SPORTING GOODS CO.,M3600\nBanker,Suntrust Bank,F1100\nCEO,Barkley Seed Inc.,Y4000\nCorporate Purchasing Manager,Tevror Apex Com,Y4000\nINFORMATION SYSTEMS MANAGE,ENGINEER,J7500\nCORP OFFIC,DEVON ENERGY CORPORATION,E1150\nC. E. D.,,Y4000\nPRESIDENT,PEERLESS TYRE CO.,Y4000\nInvestment Advisor,Self-Employed,J1200\nPHYSICIAN,INDEP ANES,H1130\nDEAN,YESHIVA UNIVERSITY,H5100\nAICPA EFFECTIVE LEGISLATION,,F5100\nCARPENTER SUPERVISOR,NYC HOUSING AUTHORITY,J1100\nowner,Handyes Construction LLC,B1500\nInvestme,Kempner Capital Management,F2100\nAssociate General Counsel,National Cable & Telecommunications As,C2200\nThree Village Historical Society,,Y4000\npartner,\"McKinsey and Company, Inc.\",G5270\nENTREPENEUR,TIRES INC OF FL,Z9500\nBUSINESS OWNER,NWI INC.,Y4000\nCustomer Service,Million Air,Y4000\nHENRY BERMAN & SONS,,Y4000\nSENIOR ANALYST FOR B,IOTC FINANCIAL SERVICES,F0000\nREAL ESTATE INVESTOR,COMMONWEALTH CAPITAL GROUP,J5100\nPRESIDENT/OWNER,BLASTEC INC.,Y4000\nOWNER,FAISON ASSOCIATES,J1100\nATTORNEY,Wilmer Hale,K1000\nPRESIDENT AND CEO,ALTA RESOURCES LLC,E1150\nCIO,SEARCH,Y4000\nPHYSICIAN,\"SEVEN OAKS WOMEN'S CENTER\",H1130\nDIAGNOSTIC RADIOLO,X-RAY ASSOCIATES,H1130\nINSURANCE,CORRIGAN BENEFITS,F3100\nTHE TALARIA COMPANY,,Y4000\nVP,ALLIANT TECHSYSTEMS,D8000\nOREGON TELEVISION INC,,C2100\nINFORMATION REQUESTE,ICON INTERNATIONAL,J6200\nConstruction Equipment Distribution,Fabick CAT,B6000\nFilm Services,Serendipitous LLC,Y4000\nVP OPERATIONS,NHS MGMT,H2200\nTRUCKING CO.,INTEGRITY CARRIERS LLC,T3100\ntechnical writer,self employed,C1100\nInvestment managemen,Chesapeake Partners,F2100\nPRESIDENT,ENTERPRISE BUSINESS MANAGEMENT/PRES,H4600\nDEVELOPMENTAL RESEARCH AND PROGRAMS,,Y4000\nGeneral Counsel,ACE USA,F3100\nCONTRACTOR,KENT ELECTRIC CO/CONTRACTOR,Y4000\nVP MEDICAL MANAGEMENT,HEALTH NET,H3000\nEXECUTIVE,CONOCO,E1110\nEDUCATION ADMINISTRATOR,NOT EMPLOYED,Z9500\nPRESIDENT AND CHIEF COMPLIANCE OFFICER,INFINITY FINANCIAL SERVICES,J1100\nTEACHERS INSURANCE & ANNUITY ASSOC.,,F3100\nFERMSI,,B1000\nAttorney,Arnstein & Lehr Llp,K1000\nOWNER,MEDITERRANEAN TILE,Y4000\nMORGAL MACH TOOL,,M5000\n\"DEPUTY DIRECTOR, FOOD\",THE PEW HEALTH GROUP,Z9500\nQUERY INSURANCE AGENCY INC,,F3100\nGREIR RIDDLE & ASSOC,,Y4000\nINSURA,CONSOLIDATED INSURANCE GROUP,F3100\nCivil Servant,Fema,X3000\nLAWYER,WILLIAMS + CONNOLLY,K1100\nTHE MCCONNELL FOUNDATION,,Y4000\nWALL KATHY,GRANDMA,Y4000\nConsultant,Pros Alternate Concepts Inc,Y4000\n\"ENG 5, ENGINEERING\",COMCAST (CC) OF WILLOW GROVE,C2200\nUSA DETERGENTS,,Y4000\nRUSSELL MEDICAL CENTER,,H2100\nMARINE DEALER,NONE PROVIDED,T1400\nRETIRED TEACHER,TOWN OF MILFORD MA,Y4000\nMEYERS DISTRIBUTING,,G2850\nAdvertising,Exposed Brick,Y4000\nOAK BROOK FINANCIAL CORPORATION,,F0000\nAMERICA ONLINE INC.,,J1200\nAttorney,\"Stratzman, Bromberg, Esserman\",K1000\nPRICEWATERHOUSE COOPERS L L,,F5100\nOWNER,MCADEN HOLDINGS,Y4000\nOWNER,SCHMIDT AGRI,Y4000\nVice President,State Farm Insurance Co.,F3400\nMEDICAL PRACTICE MANAGER,MARSH DERMATOLOGY,Y4000\nFINANCE DIRECTOR,3M,M2300\nP,WAYNE STATE UNIVERSITY,H5100\nBanker,BNY Mellon Financial Corp,F1100\nKWIK MARTS CONVENIENCE STORES,,Y4000\n\"AUTHOR, PSYCHOLOGIST, TALK SHOW HOST\",SELF-EMPLOYED,Y4000\nAGRIBUSINESS,SHAW FEEDYARD,Y4000\nProfessor,Siu School Medicine,Y4000\nUnderwriting and Cla,First American Title Insurance Co.,F4300\nParent Coordinator,NYC Board of Education,X3500\nBusiness Representative,Local Union 1204,LB100\nLOBBYIST,\"CLARK, LYTLE, GEDULDIG\",K2000\nSales,E And R Sales,Y4000\nPRESIDENT,MORAN RESOURCES CO,E1150\nindustrialist,Cast-Crete Corporation,Y4000\nINVESTMENT ADVISOR,MORGAN STANLEY SMITH BARNEY,F5500\nChairman Of The Board,Opto 22,Y4000\nn/a,retired,F2700\nCEO,MAU,Y4000\nProfessor,UCLA,J1200\nEXECUTIVE,DOUBLE EAGLE PRODUCE AND TRANSPOR,A1400\nVice President Busin,American Engineering,G1200\nWILBURT SMITH ASSOC,,Y4000\nC.E.O.,IMAGINE LEARNING,Y4000\nEXECUTIVE,\"O'NEAL OIL PROPERTIES\",E1100\nTEACHER,UC IRVINE/TEACHER,J1200\nMERIDIAN SCHOOL DISTRICT,,X3500\nCOLDWELL BANKER REALTY PROS,,F4200\nScientist,University Of Wisconsin,H5100\nInspector,UNIVERSITY OF TEXAS SYSTEM,H5100\nVISUAL ARTIST,,X0000\nPRESIDENT,FLAGSHIP PROPERTIES,F4000\nPRESIDENT & CE,PALPHIAN ENTERPRISES,Y4000\nHW,,K1000\nExecutive,Specialty Enzymes & Biotech,Y4000\nPRIVATE EQUITY,SWANDER PACE CAPITAL,J1200\nAttorney,C & C,J1200\nAttorney,NBC Universal,Z9500\nBALLINGER CO,,Y4000\nCHERUNDOLO BOLTAR & LEONE PC,,K1000\nsolution architect,Univision Online,Y4000\n\"BAR OWNER, MANUFACTURER\",SELF-EMPLOYED,G0000\nWILSON HULL & NEAL,,J1100\nEconomist,Russell Investments,F7000\nSTORM KING PRODUCTIONS,,J1200\nVP & CONTROLLER,AMEREN SERVICES,E1600\nCEO,G4 Media,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,AU INC.,J1100\nSr. VP-Chief Info Of,Baylor Health Care System,H2100\nPROJECT MANAGER,ERLAND CONSTRUCTION,B1500\n\"FOUNDER & CHAIRMAN, EMERITUS\",THE PAMPERED CHEF,G4800\nDirector,Clark & Weinstock,G5270\nOperating Engineer,Builders Concrete,LB100\nJournalist/Columnist,Mondadori,C1100\nFIELD DIR,N.J. REPUBLICAN ST. COMM.,J1100\nEVP COMMUNICATIONS,NAB,C2100\nPHYSICIA,HARBOR-UCLA MEDICAL CENTER,H2000\nPRESIDENT,ENVIROCAP LLC,Y4000\nExecutive,Zignego Company,Y4000\nENGINEER,FLORENCE CO.,Y4000\nCEO,\"LIGHTOUSE COMPUTER SERVICES, INC.\",Y4000\nNONE,,Z1200\n\"CNM, BOARD MEMBER\",AURORA HEALTH CARE,H1710\nOFFICER,ARLINGTON BANK,Z9500\n\"Managing Dir, National Motorsports Pr\",Wells Fargo Special Risks,F1100\nOwner,Mowat Construction,B1500\nAttorney,\"Nelson, Kinder ,Mosseau &amp; Saturley\",K1000\nACTUARY,HARTFORD LIFE,F3300\nSR. VICE PRESIDENT,HEALTHSOUTH,H2000\nCHAIRMAN AND CEO,DELTA PETROLEUM,E1100\nINFO SPEC,SELF EMPLOYED,Y4000\nCOMMUNITY VOLUNTEER,HADASSAH,Z9500\nPRESIDENT,A NEW MILLENNIUM CO.,Y4000\nLAWYER,U S NAVY,X5000\nGOVERNMENT AFFAIRS,ADVISORY GROUP,K2000\nAttorney,Adler Giersch,Z9500\nATTORNEY,ONEILL ATHY & CASEY PC,K2000\nNO JOB DESCRIPTION,ADMIN CENTER,A4200\nKEBCO INC,,Y4000\nVICE-PRESID,ANCHOR INVESTMENT CORP.,Y4000\nINTERCITY HOME HEALTH,,H3100\nOWNER,LISA NICHOLS ATTY. AT LAW,K1000\nBusiness Owner,Flower Essence Services,A8000\nCOLLEGE ADMINISTRATOR,CLAREMONT MCKENNA COLLEGE,H5100\nWILLIAM J KALMER CLU LTD,,F3300\nALUMNI DIRECTOR,COLLEGE PREPARATORY SCHOOL/ALUMNI D,H5100\nDENTIST,JAN HENLEY D.D.S,H1400\nMANAGER,OPEN OPTIONS INC,J1100\nInvestment Banker,Berman Capital,Y4000\nAttorney,Odom & Elliott,K1000\nFINANCIAL PLANNER,CUSTER FINANCIAL SERVICE,F5000\nSINGER SONGWRITER,,Y4000\nVA DISTRICT,MARTIN MARIETTA MATERIALS,B5100\nROOFER,DIVERSITIES ROOFING CORP.,X1200\nO R COLAN,,Y4000\nNewschools Venture Fund,,Y4000\nAT,LAW OFFICE OF DANIEL J. MOYNIHAN,K1000\nDIRECTOR OF DEVELOPMENT,HDC CONSTRUCTION CO.,B1500\nChief Operating Officer,Global Giving,J7400\nTeacher,Everett Area School District,Z9500\nMILK PRODUCER,WATTE BROS. DAIRY,A2000\nBuilder,Self - Employed,B1500\nCHAIRMA,DH BLAIR INVESTMENT BANKING,F2300\nCONSULTING,SELF-EMPLOYED,JH100\nFINANCE,READING ANTHRACITE CO.,Y4000\nNurse,Riverside Hospital,H2100\nPRESIDENT,EM BROWN INC./PRESIDENT,Y4000\nDUISMORE & SHOHL,,Y4000\nPresident,Stratis Health,F3200\nResearcher,New America Foundation,J7400\nRN,Hunterdon Medical Center,H0000\nHOLLON CONSTRUCTION,,B1000\nOWNER,CHAPPELL STEEL,Y4000\nExecutive,BT Investments,F7000\nConst Est/Project Mg,Gatlin Plumbing & Heating Inc,J1100\nSAFETY SURVEILLANCE SPECIALIST,PFIZER,H4300\nOwner,Chris-scocorp,Y4000\nCOUNSEL,EM Qatar,E1110\nOWNER,LEGACY FORD LINCOLN MERCURY,T2300\n\"V.P., International\",Jennmar Corporation,E1200\nCE MANAGEMENT DBA PAYDAY CASH ADVAN,,Y4000\nPresident of Fisher Healthcare,Fisher Scientific,M9000\nDUTKO WORLDWIDE/ATTORNEY/VICE PRESI,,K2000\nEXECUTIVE VICE PRES,BANK OF AMERICA,F1100\nResturant Management,Self,G2900\nSIKORA / PETTIT/INSURANCE,,Y4000\nCASHION THERNOPLASTICS,,M1500\nSOUTHCOAST CAPITAL,,Y4000\nGeneral Manager,Winner,T2300\nCEO,Indeck Power Co,Y4000\nBusinessman,Freeman Spogli,F2100\nTissue Bank Director,Berkeley Advanced Biomaterials,J1200\nAttorney,\"Comcast Cable Communications, LLC\",Z9500\nATTORNEY,DONNER HARITON AND BERKA P C,J1200\nLTIC ASSOC INC,,Y4000\nCHIEF EXECUTIVE OFFICER,SYNGEST,E1500\nEngineer,\"Huval & Ass't\",Y4000\nInsurance Agent,Allred-Thompson,F3100\nATTORNE,STEARNS WEAVER MILLER ET AL,J1200\nNORTH CAROLINA FARM BUREAU MUTUAL I,,F3100\nA,AFFILIATED COMPUTER SERVICES INC.,C5130\nWWF PARRER CO,,A5200\nSOUTHEAST ANESTHESIA CONSULTAN,,H1130\nDIRECTOR,INNOVATIVE RESOURCE GROUP,Y4000\nPharmacist,Natali Properties,F4000\nPRESIDENT,FCB CHICAGO,G5210\nSr Technology Execut,\"JPMorgan Chase Bank, NA\",F1100\nAccountant,Krizman Co. P.C.,Y4000\nCEO,NCFAP,Y4000\nPRESI,WHITE ROCK INVESTMENT COMPANY,Y4000\nNAHC,,H3100\nOPERATING GENERAL MANAGER,ALCOA,M2200\nBANKER,AMA CAPITAL PARTNERS,Y4000\nCHAIRMAN,ATLANTA BONDED WAREHOUSE,G2850\nRetired,9496458969,X1200\nPIONEER OUTDOOR,,G5230\nDIGESTIVE DISEASE,,H1130\nVP GL,NESTLE PURINA PETCARE COMPANY,A3100\n\"MANAGER, RESOU\",NEVADA POWER COMPANY,E1620\nINVESTOR,X10 CAPITAL,Y4000\nCEO,AIRKAMAN CECIL IM.,J9000\nSELF-EMPOLYED,SELF-EMPOLYED,G0000\nCOLYER INSURANCE AGENCY,,F3100\nPRO GOLF DISCOUNT OF ATL,,G6100\nEDUCATIONAL COMMUNICATION INC,,H5000\nROBINSON FOUNDRY,,M5000\nCOWARD HUND CONST,,B1000\nLAWYER,NELSON MULLINS,J1200\nCARPENTER,NYC DISTRICT COUNCIL,Y4000\nP,NAT PRTNRSHP FOR WOMEN & FAMILIES,J7400\nATTORNEY,\"MYERS LAW FIRM, PLLC\",K1000\nASSOCIATED EAM,,Y4000\nretired,retired,J9000\nVP MARKETING,\"BRE PROPERTIES, INC.\",F4100\nPRESI,\"CHAIN BRIDGE MANAGEMENT, INC.\",Y4000\nPRESIDENT,\"RAIN CLL CARBON, LLC\",E1160\nFarmer,Pedregal Vineyards,G2820\nPresident,Luberski Properties,F4000\nCEO,EQUITY INSIGHT INC.,F2100\nLawyer,Boies Schiller,K1000\nRADICAL MEDIA,,C2400\nLawyer,Horwood Marcus & Berk,J5100\nNEWS JOURNAL AND GUIDE,,Y4000\nCorporate Officer,\"D Nchors Vnlimited, Inc\",Y4000\nIT,BG,Y4000\nREAL ESTATE BR,UNITED COUNTRY SEVEN,F4000\nSOULT CONSULTING,,Y4000\nDARLINGTON SC,,Y4000\nCHIEF MARKETING OFFICE,ECHOSTAR LLC,C2200\nCONSULTANT,HOBBS & ASSOC,K2000\nCorp exec,Cityline partners,Y4000\nGENERAL CONTRACTOR,SELF,Y4000\nGERONTOLOGY HOME COMPANION,,Y4000\nBAKER DONALDSON BEARMAN,,K2000\nNEAL & HARWELL/ATTORNEY/ FOUNDING M,,K1000\nPETER FORK MINING CO,,E1210\nBeer Wholesaler,\"M. & M. DISTRIBUTORS, INC.\",G2850\nTHOMAS BROTHERS,,A8000\nMissionary,Self employed,X7000\nCOMMISSIONER,MONTANA PUBLIC SERVICE,X3000\nEXECUTIVE,TRAVELERS INSURANCE,F3100\nPlumber,Fairbanks & Sons Plumbing,B3400\nSTUART FRANKEL,,Y4000\nMARNET INSURANCE GROUP,,F3100\nPhysician,\"RCI,PLC\",Y4000\nSHAREHOLDER,\"COOPER COMMUNITIES, INC\",F4100\nSenior Vice Presiden,\"CB Richard Ellis, Inc\",F4000\nPresident & CEO,\"Miller Enterprises, Inc.\",G4300\nPHYSICIAN,OLMSTEAD MEDICAL GROUP,H1000\nCOMMERCIAL,MARS SNACKFOOD US LLC,G2200\nReal Estate Agent,ERA Elite Group Realtors,J7400\nAccount Director,\"Level 3 Communications, Inc\",C4000\nARNOLD MACHINERY CO,,B6000\nROBERTSON BROS. CONSTUCTION,,B3000\nMARKETING CONSULTANT,GIRLS GET IT!,Y4000\nEngineer,Shewmaker Enviromental,E2000\nDirector/Producer,Self-Employed,C2300\nService Coordinator,Brooklyn DDSO,H1400\nSGPA ARCHITECTURE,,B4200\nPACIFICORP CAPITAL,,C5100\nInvestor,Regis Management,Z9500\nC.E.O.,\"N.S. Industries, Inc.\",M1000\nPresident and CEO,US Chamber of Shipping,T6200\nINVESTOR,GLOBAL LEVERAGED CAPITAL,J1100\nROLL OFF EXPRESS,,Y4000\nSCIENTI,ENVIRONMENTAL RISK ANALYSIS,Y4000\nWriter,CSU Northridge,H5100\nRABBI,JEWISH RECOVERY CENTER,Y4000\n\"DEUTCH, LEVY & ENGLE ATTORNEYS\",,K1000\nAttorney,FAfinski Mark & Johnson,K1000\nCOMMERCE CLUB,,Y4000\nCO-FOUNDER,TPG CAPITAL,F2600\nJOHN MULLINS & SONS,,Y4000\nNew England Director,American Farmland Trust,J7400\nATTORNEY,DAVIS & GILBERT LLP,K1000\nE D S I,,Y4000\nLACTATION CONSULTATION,SELF EMPLOYED,Y4000\nBALT MUSEUM OF ART,,X4200\nPublic Relations,BJR Public Relations,G5210\nRESTAURANT OWNER,CIAO BELLA,G2900\nTMAA PRESIDENT 2012-13,TEXAS MEDICAL ASSOCIATION ALLIANCE,H1100\nMANUFACTURED HOUSING,SELF,B2400\nCapital Research Man,Senior Specialist,Y4000\nATTORNEY,MITHOFF & JACKS LLP,K1000\nCORPORATE BOND BROKER,ICAP,J1100\n\"Sr Project Analyst, Executive\",LPL Financial,F2100\nPARTNER,WASHINGTON COUNCIL ERNST & YOUNG,F5100\nMother,Deanne Todd,Y4000\nEXECUTIVE,SPARTA INC.,D3000\nGENERAL MANAGER,DELTA OIL MILL,Y4000\nOwner,Richard A Shade Insurance,Y4000\nOWNER,TAPHANDLES LLC,Y4000\nCommunications,Apta,K1000\nReal Estate Developer,Information Requested,F4100\nWEALTH MANAGEMENT ADVISOR,SELF,Z9500\nMana,United Lighting & Supply Compa,Y4000\nSurgeon,\"Surgical Associates of New Haven, PC\",Y4000\nCPA,\"HACKER, NELSON & CO.\",F5100\nCIVIL E,JOHN F. STAMBAUGH & COMPANY,A1400\nMAJARO INFO SYSTEMS INC,,Y4000\nFARMER,RIDGEWAY FARM LLC,A1000\nCEO,Desme Inc.,Y4000\nPresident and Chief,Western World Insurance Group,F3100\nTWIN CITIES-METRO CDC,,Y4000\nDirector Bus Development,Exotic Electro Optics,Y4000\nOWNER,HUBBELL INC.,C5000\nPRESIDENT,\"WOODBURY AND COMPANY, INC.\",Y4000\nSUMAN BEAUTY CORP,,Y4000\nUNDERSHERIFF,BERNALILLO COUNTY,X3000\nOFFICE MANA,RICHARD P SOLLEE D.D.S.,H1400\nFilm Producer,Alcon Entertainment,C2400\nGLAZING JOINT TRUST FUNDS,,LB100\nBRITT & BRITT ATTORNEYS,,K1000\nCOO & General Counse,The Prince Group,D9000\nAudio Consultant,Point One Audio,Y4000\nDAVID J GREENE AND COMPANY,,J1100\nOWNER,BROOKSIDE VENEERS,Y4000\nOWNER,TW SERVICES LLC,Y4000\nV.P./Gen. Mgr.,Lafarge Construction Materials,B5100\nATTORNEY,BURKE WILLIAMS & SORENSEN,J7400\nREGIONAL DIRECTOR,ALLINA HEALTH,H2100\nVICE-PRESIDENT,\"SCALA, INC.\",Y4000\nRAYMOND DEVELOPMENT CO,,Y4000\nTRANSL,AFU RESEARCH ENTERPRISES INC,Y4000\n,OUTDOOR ADVERTISING ASSOCIATION OF,G5230\nPRESTIGE REALTY,,F4200\nPediatric Dentist,Carolina Pediatric Dentistry,H1400\nCOMMUNICATIONS,URBAN PARTNERSHIP BANK,Z9500\nReal Estate,Dyson & Dyson Realty,F4200\nCONTRACTOR,B-5 CONSTRUCTION CO.,B1500\nTrader,Pioneer Futures,F2200\nSenior Business Mana,Union Pacific Railroad,T5100\nFinancial Advisor,Smith Barry,F2100\nLANDSCAPE,JB GARDENS INC.,Y4000\nTULANE MED CENTER,,H1120\nATT,BERNSTEIN LITOWITZ BERGER ET AL,K1000\nMORRIS SHAFFER INSURANCE,,F3100\nHOSPITAL ADMINIS,\"ST MARY'S HOSPITAL\",H2100\nSELF,HEALTH CARE,H0000\nattorney,\"Holland and Knight, LLP\",K1000\nVice President,\"L. S. Solutions, Inc.\",J7400\nSELF EMPLOYED,BERT BRUNDIGE LLC,G1200\nOwner,Cummins N Power,E1700\nADVERTISING,ZIMMERMAN AGENCY,Y4000\nProfessor,Stanford University,H5150\nPresident and CEO,Arbor Investment Group,F2100\nCEO,New York & Greenwood Lake Rail,Y4000\nSr Vice President,Trinity Industries,T5200\n\"AB Foods, LLC\",,Y4000\nMINNEAPOLIS PUBLIC SCHO,,X3500\nAtty.,Law Office of Arthur Heitzer,K1000\nCONSTITUENT OUTREACH DI,STATE OF MD,X3000\nPRESIDENT & CEO,GKN,T2200\nS & J CONSTRUCTION CO INC,,B1500\nMisc Management,Vulcan Materials Company,B5100\nManagement Consultan,IBM Corporation,C5100\nCULINARY SUPE,HYATT REGENCY ATLANTA,T9100\nATTORNEY,REICH & BINSTOCK LLP,K1000\nExecutive,Odyssey One Source,Y4000\nVice President,\"Lemon-Mohler Insurance Agency,\",F3100\nExecutive,Market Bank,Y4000\nFARMER,SELF-OWNER  HILLSIDE FARM,A1000\nBAUNER HEALTH SYSTEMS,,H3000\nPrincipal,Hauppauge Public Schools,X3500\nINVE,SELF-EMPLOYED-BEECHERL COMPANY,E1120\nVice President,\"Farm Credit West, ACA\",A4000\n1053-ERNST & YOUNG,,F5100\nCOMPUTER TECHNICIAN,MICROSOFT CORPORATION,C5120\nPRESIDENT,AMAZON HOSE & RUBBER CO.,Y4000\n\"Dir, Billing Sys & Programming\",Time Warner Cable,C2200\nCONSULTANT,PATTON BOGGS,K1000\nWIS DEPT OF JUSTICE,,X3000\nPresident,\"Sheila Maddox, Inc\",Y4000\nPhysicist,Los Alamos Nat Lab,X3000\nNOT EMPLOYED,NONE,F3400\nExec. Director,N Y S Child Care Coo,Y4000\n,Little River Band of Ottawa Indian,G6550\nDirector,Rock-Tenn Company,M7100\nPhysical Therapist,River Valley Rehabilitation,Y4000\nCOMMUNICATIONS PROFESSIONAL,OCHSNER HEALTH SYSTEM,H2100\nPresident,Moler Remodeling,Y4000\nPhysician,Lafayette Cancer Care PC,Y4000\nEXECUTIVE,EYE Q EYEWEAR CORP.,Y4000\nS,AMERICAN DESIGN & ENGINEERING CO.,B4400\nCHAIRMAN CEO & PRESIDENT,KOHLER CO.,B5300\nCTO,EMERSON ELECTRIC,Y4000\nINSURANCE ADVISOR,FRANKLIN MORRIS,Y4000\nGENERAL INSULATION INC,,Y4000\nNOT,NONE,J1100\nArchitect,UN,X3000\nCEO,MCCALL ENERGY CONSULTING,E1000\nLMI CO,,Y4000\nProfessor Medicine and Health Policy,Columbia University,H5100\nChairman and CEO,Bonten Media Group,C2100\nLegal Information Manager,Mayer Brown,K1200\nKAYE SCHOLER FIERMAN HAYS HANDLER,,K1000\nPresident  & CEO,Murray Energy Co.,E1210\nRETIRED,RETIRE/RETIRED,X1200\nexecutive recruiter,Consultant,J7400\nVICE PRES - FINANCIAL MGMT,,E1620\nMagazine Associate Publisher,\"Kohanza Media Ventures, LLC\",Y4000\nREMAX OF SIOUXLAND,,F4200\nREGIONAL ARTS COMMISSIONS,,J9000\nFILE CLERK,FRED MC GILVRAY INC,Y4000\nAttorney,\"Shuttlesworth & Moore, LLP\",K1000\nChairman,Lambert Smith Hampton,F4200\nARCHITECT,GRUZEN SAMTON,Y4000\nJSF SECURITIES,,F2100\nDoc/Nist,Us Govt,X3000\nRegistered Nurse,Alaska Native Tribal Health Consortium,X4000\nRADIO/CABLE,EAGLE COMMUNICATIONS,Y4000\nACTIVE HOME HEALTH,,H3100\nTreasurer,\"Chatham Jewelers, Inc\",M3200\nCEO,GREATER FORT BEND ECONOMIC DEV,Y4000\nPresident,\"Standar & Poor's\",F5500\nEXECUTIVE DIREC,INFINITY FOUNDATION,Y4000\nABFS INC,,F1400\nOWNER,BEL-AIR SWAPMEET INC.,Y4000\nOWNER,BLD,Y4000\nDental Consultant,Avesis,Y4000\nREQUESTING I,REQUESTING INFORMATION,K2000\nDEVELOPMENT ASSOCI,AMLI RESIDENTIAL,F4000\nCHAIRMAN & CEO,\"CHENEY BROTHERS, INC.\",G2500\nASSOCIATE PROFESSOR,OHIO UNIVERSITY,Z9500\nGOVERNMENT RELATIONS,SOONER STRATEGIES,Y4000\nBUSINESS OWNER,VAPE LOUNGE LLC,Y4000\nFEDERAL EMPLOYEE,U.S.GOV.,X3000\nConsulting,Self,J1200\nMOUNTAIRE COPORATION,,G2300\n.Information request,.Information Requested,Y1000\nRL ESTATE MGR,,Y4000\nMD,Ppmrc,Y4000\nConsultant,R.G. Rosenberg & Assoc.,J1200\nOwner,Sequoyah Enterprises,Y4000\nDI,MARY HITCHCOCK MEMORIAL HOSPITAL,H2100\nPhyisician,Self Employed,H1100\nOwner,Peter Blake Gallery,Y4000\nGOOD VALUE PHARMACY/OWNER/PHARMACIS,,H1750\nCEO,\"MEDRED, LLC\",C5120\nUNIVERSITY RESEARCH CORP,,H5100\n\"SIM'S MARKET\",,G2400\nLUCWORK ENTERPRISES INC,,G2900\nEXECUTIVE,Advantaca,Y4000\nCAPITAL FUNDING,SELF-EMPLOYED,Y4000\nPhysician,\"Sunset Internal Medicine & Geriatrics,\",Y4000\nINVESTOR,BOSSHARD INVESTMENTS,Y4000\nEXECUTIVE DIRECTOR O,UNIVERSITY OF NEW MEXICO,H5100\nPresid,Sewer Builders Supplies Inc.,Y4000\nATTORNEY GENERAL,STATE OF NEBRASKA,X3000\nCONSTRUCTION,M.P. CROWLEY CO. INC.,Y4000\nPRESIDENT,CONCARE INC.,B0500\nPRESIDENT,BEST IMAGES INC.,G5300\nINVESTMENTS,METHANWILL FAMILY OFFICE,Z9500\nCOMMERCIA,US DEPARTMENT OF COMMERCE,X3000\nVP MARKETING,CPM,Y4000\nOli & Gas,Self,E1120\nLandscape Material P,Self-Employed,B3600\nRESTAURANT OWNER,LETTUCE ENTERPRISES,Y4000\nCHOICE WASTE,,E3000\nLEVY GROSSMAN & BURGER,,K1000\nWARNER BROTHERS RECORDS,,J1200\nLAWYER,\"MUNSON, VININO & MIDYETTE\",K1000\nBoard Chairman,\"Xenonies Holdings, Inc.\",M6000\nKEY INVESTMENT INC,,JE300\nWESTPORT WORLD,,Y4000\nCOHNVUM PARTNERS LLC,,Y4000\nCorporate Officer,\"Capitol Aggregates, Ltd.\",Y4000\nATTO,LAW OFFICES OF MICHAEL J. ASTA,K1100\nAGENT FIEL,STATE FARM INSURANCE CO.,F3400\nVICE PRESIDEN,PLYMOUTH BEEF COMPANY,G2300\nPresident,\"McCabe Ambulance Service, Inc.\",Y4000\nATTORNEY,KAPLAN VOEKLER,Y4000\nABC QUILTING,,Y4000\nBETOC CORPORATION,,D3000\nPRESIDENT,A-1 METRO MOVERS,T3100\nPUEBLO RADIOLOGICAL GROUP,,H1130\nHOTEL EXECUTIVE,CONCORD HOSPITALITY ENTERPRISES,G5270\nATTORNEY,WOOD CRAPO LLC,J1100\nFINANCIAL & MANAGEMENT CONSULTING I,,F0000\nPRODUCER,MONKEY DOG PRODUCTIONS,Y4000\nprogrammer,wells fargo bank,F1100\nSECRETARY,MEPCO INC.,E1160\nPresident,Pal-Tech Inc.,B1000\nMANAGER,CONSERVATION SERVICES GROUP,Z9500\nSCHMIDT & MATTHEWS,,K1000\nENGINEER DIRECTOR,ELECTRIC BOAT,D5000\nATTORNEY,AMMEEN AND ASSOCIATES,K1000\nCROWE CHIZEK,,J1100\nUniversity Administrator,Roosevelt University,H5100\nSOS TEMPORARY SERV,,Y4000\nBOWLES INSURANCE AGENCY,,F3100\nINVES,WEAVER BARKSDALE & ASSOCIATES,Y4000\nATT,\"MASION, EDELMAN, BORMAN & BRAND\",K1000\nORGANIZER,AFGE,L1100\nHistorian,Unh,Y4000\nATTORNEY,\"LARRY M. ROTH, PA\",Y4000\nESS & VEE ACOUSTICAL,,Y4000\nPRESIDENT,SIMMONS BANK,Y4000\nPATHOLOGIST,DERM-PATH LAB OF CENTRAL STATES,H1130\nPT,MAKOVICKA SYLLIAASEN PHYSICAL THERAPY,H1700\nPRESIDENT/C.E.O.,INDUSTRIAL STEEL TREATING COMPANY,M2100\nEPISCOPAL CHAPLAIN AT YALE,EPISCOPAL CHURCH AT YALE,X7000\nUS MERCHANT MARINE,KIRBY MARINE FBG,Y4000\nschool administrator,retired,J7400\nPRES,CARROLL DANIEL CONSTRUCTION CO,B1000\nSvp Hr/general Couns,Amazon.com Holdings Inc.,C5140\nRETIRED PROFESSOR,MD ANDERSON CANCER CENTER,H2100\nATTORNEY,ROYAL OAK/ATTORNEY,Y4000\nOwner,Servicemaster,G5200\nP,UROLOGY ASSICIATES OF NORTH TEXAS,H1130\nMS CARRIER,,J1200\nEDGE WIRELESS,,C4300\nCEDAR RAPIDS,,Y4000\nPRINCIPAL,BESPOKE INVESTMENT GROUP,F2100\nEXECUTIVE,\"WYNNEFIELD CAPITAL, INC\",J5100\nPresident,\"Pennzoil Distributions of Hawaii, Inc.\",Y4000\nSTUDIO 27,,Y4000\nCounty Commissioner,Canyon County,Y4000\nANNABELS,,Y4000\nWINDHAM REALTY GROUP,,F4200\nATTORNEY AT LAW,LAW OFFICES OF DAVID S.W. FANG/ATTO,K1000\nPresident,Grenham Networks,Y4000\nEXEC. VICE,SYNOVUS FINANCIAL CORP.,F1100\nOIL & GAS ENGINEER,SEELY OIL CORP,E1100\nTIMMONS COMPANY/PRESIDENT/MANAGING,,K2000\nINSURANCE,SIGNATURE GROUP LLC,F3100\nPartner,Arnold & Porter,K1000\nLAWYER,KING & SPAROING,Y4000\nSales,Marriott Hotel,T9100\nScientist,Harvard Univ.,H5100\nFARBER INC,,F4100\nAutoworker,Retired,Y4000\nOLYMPIC STEEL INC,,J5100\nCFO,MEPCO,Z9500\nFINAN,SHAWMUT DESIGN & CONSTRUCTION,B1500\nNewspaper Columnist,Requested,C1100\nPARTNER,MELLINIA PUBLIC AFFAIRS,K2000\nINFORMATION REQUESTED PER BEST EFFORTS,SMALL BUSINESS OWNER,G0000\nNONPROFIT DEVELOPMENT,SONOMA LAND TRUST,Y4000\nLETTER SENT,INFORMATION REQUEST,X4110\nPRESIDENT,C-R CONTROL SYSTEMS INC.,G1200\nPhysician,Mitchell Radiology,H1130\nSR. VICE PRESIDENT,SCCUL,F1300\nGREENBERG-LAKE INC,,J1200\nDeveloper,Empresas VRM,Y4000\nEVP,James Mintz Group,K1000\nDeveloper,Davidson & Jones Corp.,T9100\nATLANTA PROJECT,,Y4000\nExecutive,M Capitol Management,K2000\nITALT GOLD STAR,,Y4000\nOFFICE OF GERARD DOHERTY,,K1000\nEngineer,\"W H Porter Consultants, PLLC\",Z9500\nORTHODONTIST,FURINO & HAMLIN ORTHODONTICS,H1400\nBROOKS OLDS-CAD-GMC,,T2300\nCEO,Information Research,J9000\nPhysician,LR Hematology/Oncology,H1130\nV.P,OGLETREE DEAKINS,K1000\nPresident & CEO,Innovation Investments LLC,F7000\nCommunity Affairs Co,\"The Doe Fund, Inc.\",Y4000\nDARBY PRINTING,,J7300\nPRESIDENT,STANDARD SALES COMPANY LP,G2850\nGOVERNMENT RELATIONS,TORREY GROUP,Y4000\nOWNER,JOE M. SIMOES FAMILY DAIRY/OWNER,A2000\nINSTRUCTOR PILOT,FLIGHTSAFETY INTL.,T1600\nCONST,ELECTRIC CONDUIT CONSTRUCTION,B1500\nFOUNDATION MANAGER,CONRAD N. HILTON FUNDATION,Y4000\nLEGISLATIVE AIDE,SENATOR MURKOWSKI,J1100\nDONIS CORP,,Y4000\nEXECUTIVE VICE PRESIDENT,\"DYNAMIC ANIMATION SYSTEMS, INC.\",C5120\nAIRPLANE SALES,SELF,Y4000\nBACHRACH & CO.,,G5240\nREAL,COLDWELL BANKER RES BEAR CREEK,F4200\nBROOKS INDUSTRIES,,Y4000\nMOSKOWITZ WOOD & NYZNYK LLP,,Y4000\nPodiatric Physician,Bay Area Foot & Ankle,H1130\nFINANCIAL ADVISOR,SECURITY BALLEU INC.,Y4000\nLOCAL PRES.,Longshoremen,Y4000\n\"Director, Govt/Publi\",\"Evergreen Resources, Inc.\",E1150\nCAMPBELL & COMPANY,,Y4000\nPresident,Security Financial Service Inc,F0000\nEXECUTIVE,SCOT AUTOMOTIVE LTD./EXECUTIVE,J1100\nphysicist,Brookhaven National Laboratory,X3000\nMAYEUX PLUMBING COMPANY,,B3400\nEXECUTIVE,\"CALENDAR SERVICES, INC.\",J7400\nMachinist,EPM,J1200\nMJM BUILDING GROUP INC,,Y4000\nPRODUCER,TRUE LOVE PRODUCTION,C2900\nRA ALAIMO ASSOCIATES,,B4000\nAttorney,\"Del Negro & Feldman, LLC\",K1000\nstate rep,State of Illinois,X3000\nUNIVERSITY OF ARKANSAS MEDICAL SERV,,H5150\nPresident & CEO,League of American Orcehstras,Y4000\nCTO,\"Midas Networks, Inc\",Y4000\nCARDINAL CHARTERS,,Y4000\nNATIONAL LENDING CENTER,,F1400\n\"CHAIRMAN, CEO\",RB COMPANY LLC,Y4000\n\"WATTS, CANNON & WHITE\",,Y4000\nADT SECURITY,,G5290\nINVESTMENTS,OCH-ZIFF,F2700\nSoftware Engineer,EricSON,Y4000\n\"VP, Marketing & Gove\",Lovelace Sandia Health System,H3000\nGovernment Relations,Bockorny Petrizzo,K2000\nManaging Partner,\"Spectrum Strategies, LLC\",Y4000\nUNION ELECTED OFFICER,AFL-CIO,L0000\nVICE PRESIDENT,U.S. FUND FOR UNICEF,X4000\nPHYSICIAN,DERM CTR LAKE CUMBERLAND,H1100\nExecutive,Hurlbut Trust,H5000\nHAMBERGER AND CORNELL,,K2000\nADMINISTRATIO,\"ABODE TREATMENT, INC.\",Y4000\nBUSINESS SERVICES,ALTOS SONOMA CORPORATION,E5000\n\"WELEBIR, MCCUNE, PARKINSON & J\",,Y4000\ntaxi cab,self,Y4000\nGOLDEN NUGGET LAUGHLIN,,G6500\nMERCK-MEDCO,,H3000\nLUMBER EXEC,,A5000\nTurner Enterprises,Self,A3300\nC.E.O.,ONE ON ONE MARKETING,Y4000\nPRESIDENT-COMMERCIAL BANKING DIVISION,AMG NATIONAL TRUST BANK,F1100\nDAVE HOLT INC,,T2300\nManager,Mazda Motor of American,T2310\nBANKER,WM BLAIR CO.,J9000\nWASHINGTON MUTUAL INVESTMENT FUNDS,,JD100\nPRESIDENT,SUPERIOR SWEEPERS,Y4000\n\"Vice President, Corp\",Cedars-Sinai Health System,H2100\nExecutive-Self,Charles E. Gilb Co.,G2500\nBABST CALLAND CLEMENTS & ZOMNIR,,Y4000\nM & M BUS,,Y4000\nPROFESSOR,ST. JOHNS UNIVERSITY,H5100\nVICE PRESIDENT,PROMEDCO.,Y4000\nFINANCIAL CONTROLLER,HARRIS CORPORATION,D3000\nTOTERN RESOURCE CORP,,Y4000\nSENIOR ADVISOR,DICKSTEIN SHAPIRO,K2000\nHomemaker,Na,J1200\nAttorney,\"Fox, Rothschild, OBrien etc.\",K1000\nWriter/Director,Self,G0000\nDentist,Saint Paul Oral Surgery,H1400\nOPERATIONS SUPERVISOR,WHITING OIL AND GAS CORPORATIO,E1120\nContractor,Cl Refrigeration,Y4000\nPresident,Bethany Medical Center,H2000\nATTORNEY,MOTION PICTURES,C2400\nMaket Research,Wrigley,G2100\nPRESIDENT,CLIFF MADISON GOVERNMENT AFFAIRS,K2000\nINFO REQUESTED,JOHNAMROD,Y4000\nPhysician,Urogynecology Consultants Medical Corp,H1100\nTREASURER,GE,M2300\nCHAIR,CHASE MANHATTAN MORTGAGE CORP,F4600\nPHYSICIAN,TODD HANSEN,Y4000\nHealthcare,Shriners Hospitals for Children,H2100\nOwner,Today Not Tomorrow Property Solution,F4000\nOWNER,BANCROFT CONTRACTING,Y4000\nINFO REQUESTED,William J Kay Dvm,Y4000\nPRES,21ST CENTURY DEVELOPMENT CORP.,Y4000\nExecutive,Corections Corporation of America,G7000\nSELF EMPLOYED/HOMEMAKER / INVESTOR,,F7000\nTELECO,ALASKA COMMUNICATIONS SYSTEM,C2100\nMERRILL MARINE TERMINAL,,Y4000\n\"VICE PRESIDENT, FEDERAL AFFAIRS\",AMERICAN CHEMISTRY COUNCIL,M1000\nHEALTHCARE LEADERSHIP COU,,H0000\nAZEVEDO & ASSOCIATES,SELF,Y4000\nPRESIDENT,CAPITOL LEGILSATIVE SOLUTIONS/PRESI,J1200\nOLYMPIC PAYROLL SERVICE,,G5200\nAttorney,Lowenstein Sandler,J7400\nMORGAN STANLEY,,\nDIRECTOR,KBR INC.,B4000\nCHIEF,WADDELL & REED INVESTMENT MGT,F2100\nPlanning Consultant/Mediator,Self employed,G5200\nFINANCIAL ANALYST,CENTERS FOR MEDICARE & MEDICAID SERVIC,X3000\nLIFE INSURANCE & INVESTMENTS SALESI,SELF,Z9500\nPOLITICAL CONSULTANT,PERSONAL PAC,J7150\nSMALL BUSIN,\"TLR WELL SERVICES, INC.\",Y4000\n\"DIRECTOR, FEATURE ES\",NEW LINE CINEMA,C2400\nATTORNEY,PITTA & DREIER LLP,K1000\nCOHILL GORDON & REINDEL,,Y4000\nExecutive,NYU,J7400\nSenior Vice Presiden,Montauk Financial Group,Y4000\nALBAN TRACTOR CO. INC.,,B0500\nALPHA SPECIALTY PRODUCTS,,Y4000\nVolunteer/Activist,N/A,J1200\nController,Dean Dairy Group,A2000\nSENIOR V,ALFA INSURANCE CORPORATION,F3100\nPRESIDENT,\"PROTOCOL GROUP, INC.\",Y4000\nOWNER,SAMPSON BLADEN OIL COMPANY/OWNER,E1100\nCORPORATE EXECUTIVE,\"V.Z.R., L.L.C.\",Y4000\nCHAIRMAN,NEW BALANCE,M3200\nMANAGING DIR,RIVERSTONE COMMUNITIES,F4000\nBANKING,GRANT THORNTON LLP,F5100\nFINANCIAL CONSUL,TOUCHSTONE CAPITAL,Y4000\nPresident CEO,The Meltzer Group,F3100\nLegislator,State of South Dakota,X3000\nFIRST NATIONAL BANK-ROCKPORT,,F1100\nProfessor,UTEP,Y4000\nGeneral Counsel,Sr Lifestyle Corporation,Y4000\nPartner,McCarter & English LLP,K1000\nCEO,Merrick Health Care Solutions,Y4000\nBOISE CASCADE,,G4600\nATTORNEY,MURTHA CULLING LLC,K1000\nEXECUTIVE CHAIR,SEATTLE SYMPHONY,C2800\nSENATOR,U.S. GOVERNMENT,J1200\nADVANCED TESTING INC,,B5000\nDirector of Financial Aid,Illinois Institute of Technology,H5100\nRelationships Executive,Price Waterhouse Coopers,F5100\nSoftware Dude,Summit Software company,J1200\nNational Sales Manag,Eldorado Hotel Santa Fe,T9100\nMANAGER,STEEL DYNAMICS,M2100\nENTREPRENEUR,SPORTS POTENTIAL,G6400\nPROGRAMMER,NOMURA SECURITIES INC.,F2100\nMEDICAL DIRECTOR,VITRO MOLECULAR LABORATORIES,Z9500\n\"BONAPARTE FILMS, LLC/WRITER/POLITIC\",,C2400\n\"USPRIVATECOMPANIES, LLC\",,Y4000\nDENAMERICA INC,,Y4000\nSANDERS BROS CONSTRUCTION CO,,B1500\nPARALEGAL,KIGHTLINGER AND GRAY,Y4000\nReal estate,Information Requested,F4000\nPRIVATE EQUIUTY,P.S. CAPITAL PARTNERS/PRIVATE EQUIU,F0000\nPODHURST ORSECK JOSEFSBERG ET AL,,K1000\nCFO,CONTROLLER,Y4000\nPRESIDENT,INTERSTATE GENERAL CO.,Y4000\nPHARMACIST,DIAMONDBACK DRUGS,J1100\nBKB PRINT & PROMOTION,,C1300\nCENTRO INC,,Y4000\nAttorney,Rogers & Greenberg LLP,K1000\nAttorney,Hawkins Datafodd and Wood LLP,K2000\nBAYLESS BOLAND MADIGAN & BARRETT IN,,K2000\nSales Rep,Miracle Marketing,Y4000\nPresident,\"Canon Hospice, Llc\",H2200\nOWNER/MANAGER,RYE BEACH PHARMACY INC,H1750\nMETAL ROOFING MANUFAC,SELF-EMPLOYED,Y4000\nConsultant,Sunnyvale,J1200\nReal Estate Appraise,\"Ronald M. Gold, ASA\",F4700\nCeo,Rav Gen,Y4000\nH R CONSULTANT,BENE TEMPS INC,J1200\nBOWL WINKLE MOTEL,,T9100\nFALCON AIR,,T1000\nHEALTH EAST,,H1130\nPUBLIC UTILITY CONSULTANT,TRH&A,Y4000\nAPARTMENT OWNER,M & K APTS. INC.,J1100\nREYNOLDS JONKNOFF FUNERALS HOMES,,G5400\nFlute Teacher,Ruth A Kasckow,J1200\nIT PROJECT MANAGER,LISA FAVORS CONSULTING/IT PROJECT M,Y4000\nManager,Cumberland Farms,A1000\nCARNAHAN FOR GOVERNOR,,Y4000\nINFO REQUESTED,Skylark Development LLC,Y4000\nNOT EMPLOYED,NONE,C0000\nBAYVIEW MANAGEMENT,,F4500\nPhysician/Professor,University of Michigan,H5100\nTelevision Producer,\"JWM Productions, LLC\",Y4000\nPresident,\"Rodland Toyota, Inc\",T2310\nMFG REP,ENGINEERED COMPONENTS INC,B4400\nMI REPUBLICAN PARTY,,J1100\nCOGNOS ADVERTISING,,G5210\nGovernment Relations,\"Capitol Partners, INC\",K2000\nMANAGER,GREENWOOD INVESTMENTS INC,F2100\nCustomer Service Man,Polyglass USA Inc.,B3000\nMARKETING EXECUTIVE,SYNGENTA,A4100\nREALTOR,RIO REAL ESTATE,F4000\nCEO,The Weiser Group,G5210\nPRESIDENT,AMERIMARK DIRECT,G5220\nChairman and CEO,Tilton Securities LLC,Y4000\nHOMEMAKER,FIRST FISCAL FUND CO.,F4200\nCEO,IHI,Y4000\nCeo,Cimarron Coach Of Va Inc.,Y4000\nPETROLEUM CONSULTANT,RANDALL & DEWEY INC.,Y4000\nProgram Administrator,Nih-Niehs,Y4000\nSALES SPECIALIST,REI,JE300\nMEDIATOR,CROFT ADR,Y4000\nLSUMC,,H2100\nCarpenter,Nsa,Y4000\nPLATINUM USA,,Y4000\nPRAIRIE LIFE INSURANCE COMPANY,,F3300\nDeveloper,California Ranchetta Development C,Y4000\nReal Estate Agent,Bay Real Estate,F4000\nFERRAARA & ROSSETTI,,K1000\nOral & maxillofacial,Self-Employed,H1400\nDirector,IACP,Y4000\nPathologist,South Central Indiana Patholog,H1130\nAUTO SUPPLIER,,T3000\nDistributor,Gulf Distributing Co.of Mobile,Y4000\nCEO,Clark Consulting,G5270\nOwner,Health Care Management,H3000\nDELGADO ACOSTA & BRADEN LLP,,K1000\nFISC INVESTMENT SERVICES CORP,,F3100\nUNIVERSITY OF TEXAS SYSTEMS,,H5100\nLM & ASSOCIATES,,Y4000\nInvestment Representative,Edward Jones,F2100\nTravel Writer/Agent,Self employed,Y4000\nATTORNEY,AT & T,C4100\nMANAGING DIRECTOR,MORGAN STANLEY & CO./MANAGING DIREC,F2300\nC OBAUGH PONTIAC BUICK,,T2300\nFARMER GINNER,,G0000\nSR. VICE PRESIDNET,MERRILL LYNCH,F2100\nPERSONAL TRAINER,\"DOOR 2 DOOR FITNESS, LLC\",Y4000\nPRO CONSULTING ASSOCIATES LTD,,Y4000\nATTORNEY,RICHMOND & CO,Z9500\nCARDIOLOGIS,CARDIO-VASCLAR MEDICINE,H1130\nPhysician,Digestive Health Center,Y4000\nBUILDING,GRAY & GRAY BUILDERS INC.,B1500\nEndodontist,Self-employed,H1400\nMANAGER,ATLANTIC MASTER PARKING,Y4000\nATTORNEY AT LAW,SELF/ATTORNEY AT LAW,K1000\nPRES & CEO,GID INVESTMENT ADVISORS,F2100\nNON-PROFIT EXECUTIVE,GREENLATINOS,Y4000\nSECURITES AN,SALOMON SMITH & BARNEY,F2100\nMarketing Director,Turner Dairy,A2000\nATTORNEY,OMNIUM WORLDWIDE,Y4000\n\"ROEHRIG, ROEHRIG, WILSON\",,Y4000\nBUSINESS OWNER,WHOLE WHEATERY LLC,Y4000\nClinical Pathologist,Vca Antech,H1130\nHr Director,Four Star Distribution,Y4000\nVICE PRESIDEN,VAN SCOYOC ASSOCIATES,F5300\nVIRGINIA INSTITUTE FOR PUBLIC POLIC,,J1100\nInfo Requested,Info. Requested,X1200\nSTOCKBROKER,ANDERSON & STRUDWICK/STOCKBROKER,Y4000\nREMAX,,J7120\nONCOLOGIST,LAKE NORMAN HEM/ONC SPECIALIST,H1100\nSELF EMPLOYED,SELF EMPLOYED,B4300\nASSISTANT,BROWN-FORMAN CORPORATION,G2820\nWriter/Art Consultan,Self Employed,J7400\nAccount Executive,G5 Search Marketing,H3100\nCHIEF EXECUTIVE OFFICER,HARTE-HANKS,G5220\nOWNER,EMPLOYMENT EDGE STAFFING,G5250\nEXECUTIVE,ISKOOT,Z9500\nconsultant,Usry Consulting,G5200\nATTORNEY,BARTON AND STREVER,K1100\nUSABILITY CONSULTANT,SELF-EMPLOYED,Y4000\nMUSICIAN,BAE AUDIO,Z9500\nPRESIDENT,AMC WAREHOUSES INC.,T7200\nGeneral Manager,Dominos Pizza Llc,G2900\nREGISTERED NURSE,SOUTHWEST FAMILY MEDICINE,Z9500\nDIRECTOR TV,H BOCUS INC/DIRECTOR TV,Y4000\nMANAGER,EXCEL ENERGY,E1620\nTelecommunications A,Brethren Home - Cross Keys,Y4000\nManager,\"Vanguard Research, Inc.\",D9000\nFUNDRAISING CONSULTANT,,J7700\nMedical Dentist,Self-Employed,G0000\nRADIATION ONCOLOGIST,ALLENTOWN RADIATION ONCOLOGY,H1130\nATTORNEY,\"O'CONNOR CAVANAGH\",K1000\nCHURCH HOSPITAL CORPORATION,,H2100\nGALVAND AND XANTHAKIS PC,,K1000\nOwner,Roth TEC,Y4000\nMANAGING DIRECTOR,BABSON CAPITAL MANAGEMENT LLC,F3300\nPresident & CEO,Belkin International,Y4000\nEngineer,Valdes Engineering Company,B4400\nPRES,PROGRESSIVE HOUSING STRATEGIES,F4100\nREAL ESTATE APPRAISER,THE OETZEL-WILLIAMS GROUP,Y4000\nTeacher,USC,J1200\nFlight Attendant,American Airlines,J7300\nC.E.O.,FRANKLIN GLAZING,Y4000\nEXECUTIVE,LAWRENCE PAPER COMPANY,A5200\nMORDINI WAHERS,,Y4000\nProfessional Fundraising Consultant,Self employed,G5200\nENGINEER,OPENTV,Y4000\nFRAILEY AND WILSON,,K1000\nWINE GRAPE,GROTH VINEYARDS & WINERY,G2820\nGeneral Manager,Continental Honda,T2300\nBEEF FARMER,,A3000\nINVESTMENT,LYNCH INVESTMENT COMPANY,F7000\nPROFESSOR,TEXAS STATE UNIVERSI,H5100\nJOHN MICHAEL MOTORS,,T2300\nCHAIRMAN,FIRST PLEDMONT CORPORATION,E3000\n,GRUMTHAL & SCHUETH PROPERTIES INC.,F4000\nIT Director,UGL Unicco,Y4000\nOwner,Glanz Properties,F4000\nPRESIDE,KOCSIS BROTHERS MACHINE CO.,Y4000\nPROGRAM DIRECT,STATE OF CONNECTICUT,X3000\nSecurity Mom,None,Y1000\nElectrical Contractor,Lyons-Pinner Electric Companie,B3200\nREVLON INC,,J7300\nPROFESSOR EMERITUS,UNIVERSITY OF MASSACHUSETTS,J7500\nFARMER,self,J9000\nA,VERNERLIIPFERTBERNHARDMCPHERSONHA,K2100\nANESTHESIOLOGIST,MONTGOMERY SURG CTR,H1130\nSALES MANAGER,HCO INNOVATIONS,A2300\nCHIEF MEDICAL OFFICER,INOVA LOUDOUN HOSPITAL,H2100\nSales Representative,Sam Kane Meats,G2300\nEXECUTIVE DIRECTOR,AGENCY SERVICES,F3100\nPRIME FINANCIAL NETWORK,,F0000\nVILLAGE PHARMACY,,H1750\nBusiness,Us Office Of Mgmt &,Y4000\nBOSTON FINANCIAL,,J7400\nKORTENHOF & ELY P C,,K1000\nColumbia University,Student,Y1000\nJANNA INDUSTRIES,,G5200\nCEO,Savi Technology,C5120\nPRESIDENT,LENVIL H DICKS REALTOR,G1200\nDENTIST,THE LIBBY GROUP,Y4000\nENGINEER,AUDUBON,Y4000\nEmergency Physician,Emerg Med Specialists,H1100\nMCGAHEE LACY & ASSOCIATES,,G2100\nDEALER,CANNON HONDA,T2310\nFINANCIAL ADVISOR,DAVID EHLERT,Y4000\nSales,SalesForce.com,G5270\nNYC DIVISION OF PAROLE,,X3200\nPRESIDENT,BOUNCE INC.,Y4000\nCONSTRUCTION,R.D. OLSON CONSTRUCTION,B1500\nExec,Riverdale Intnl,J7500\nMANAGER,STRONG,F2100\nPRESIDENT/CEO,COMMUNITY COLLEGE LEAGUE OF CALIFORNIA,H5100\n,EDELMAN PUBLIC RELATIONS WORLDWIDE,G5210\ndisabled/retired,N/A,X1200\njgm4@cox.net,self,Z9500\nFREE LANCE CONSULTANT,SELF,Y4000\nACCOUNT MANAGER,E AND E SALES AND MARKETING,Z9500\nARLINGTON CAPITAL PARTNERS,,F0000\nFinance Director,House Victory,Y4000\nMd,Cascade Eye Associates,H1120\nTAXBYTES INC,,Y4000\nSalesman,Hyoperian Solutions,Y4000\nCardiologist,Washington University School of Medic,H5150\n\"WINTHROP, STIMSON AND PUTNAM\",,K1000\nFRIEDMAN-SCHUMAN,ATTORNEY,Z9500\nAUTOMATED STEEL BUILDING COMPONENTS,,M2000\nPHARMACIST,CATHOLIC HEALTHCARE WEST,H2100\nExecutive,Ironshore Holdings,Y4000\nPresident & CEO,Figg Engineering Group,B4400\nChair Person,El Ad US Holding Inc,Y4000\nManager,JMD Gas Corp,Y4000\nPROFESSOR,UNIVERSITY OF MINNESOTA DULUTH,H5100\nPEDIATRIC SURGICAL ASSOCIATE,,H1130\nA,\"FALINSKI MARK &AMP; JOHNSON, P.A.\",J1200\nENGINEER/EXECUTIVE,RETIRED,X1200\nMental Health Care,Mental Wellness Center,Y4000\nACTRESS/WRITER,FREELANCE,F2300\nALL AMERICAN HOME CENTER,,Y4000\nInformation Requested,Mr Cal Chaney,H1100\nCONSULTANT,HONBERGER & WALTERS,K1000\nCRAVENS & CO INSURANCE,,F3100\nASSISTANT AD,CUMBERLAND HIGH SCHOOL,H5100\nPRESIDENT,DAYTON HYDRAULIC CO,G0000\nINVESTOR,WELLS FARGO,F1100\nVP & GENERAL COUNSEL,ESTERLINE CORP,D2000\nAttorney,\"Gessner, Snee, Mahoney & Lutch\",Y4000\nPHYS,CAPE CORAL EMERGENCY PHYSICIAN,H1100\nENGINEER,WIDETRONIX INC.,Y4000\nPresident,Pre- Settlement Finance Llc,F0000\nConsultant/Accountant,RH Brown & Company,Y4000\nFIRST SOUTHWEST CORP,,F2300\nFARMER & MERCH BANK,,F1100\nNone,None,C2800\nBUSINESS OWNER,AARMP HOSPITALITY LLC,Y4000\nMember,\"Ferrer Freeman & Company, LLC\",F2100\nBUCKEYE-INDUSTRIAL MINING COMPANY,,E1210\nFIDUCIARY ASSET MANAGEMENT,,F0000\nBOROUGH OF ENGLEWOOD CLIF,,X3000\nMEDICAL ETHICIST,DEPARTMENT OF VETERANS AFFAIRS,Z9500\nMember,BeckerPalk Enterprises LLC,Y4000\nPROGRAMMER,VISIONARY MEDICAL SYSTEM,Y4000\nCEO NATIONAL RESOURCES CO,,Y4000\nMaster Black Belt,Honeywell International,D2000\nManaging Director,Atlanta Development Authority,Y4000\nNURSERY FARMER,\"MIDWEST GROUNDCOVERS, LLC\",A8000\nOWNER,ENGLAND MOTORS,Y4000\nEXECUTIVE,WOOLBRIDGE DEVELOPMENT,F4100\nDiagnostic Radiologi,Quantum Radiology Northwest,H1130\nEXA2ESG EXECUTIVE LEVEL A2,HALLIBURTON & ASSOC COMPANIES,E1150\nPAINTER,WRITER,C1100\n\"MILLER, JOHNSON & KUEHN\",,Y4000\nOWNER,ENDURO PIPELINE SERVICES INC.,E1150\nMANATT PHELPS ROTHEN,,K2100\nLogger,Thompson Timber Co,A5000\nV.P.,AMERISURE,Y4000\nOWNER,MANNAS RESTAURANT,G2900\nCFO,PACIFIC RESIDENTIAL MORTGAGE,F4600\nMarketing,Verizon,C4100\nVILLAGE HARDWARE,,G4500\nKAISER FAMILY FOUND,,F4500\nEXECUTIVE DIRECTOR,MARYLAND PODIATRIC MEDICAL ASSN.,H1130\nLINEBARGER GOGGAN BLAIR PERA,,F5200\nARTIST WRITER,,X0000\nSEROLOGICALS INC,,H4300\nowner/contractor,Taylor Made Enterprises,Y4000\nDIVERSIFIED FLINTLOCK INC,,Y4000\nGeneral Manager,Carleton Life Support Systems Inc,Y4000\nPRESIDENT,KIBBECHEM INC.,Y4000\nlawyer,Reed & Smith LLp,K1000\nATTORNEY-AT-LAW,AGSHF LLP,K1000\nInvestor,J. W. Childs Associates,F2600\nREAL ESTATE ATTORNEY,MILLENNIUM TITLE,F4300\nRADIOLOGY ASSOC SC GRANT HOS,,H1130\nLawyer Mediator,Dana Curtis Mediation,Y4000\nConsultant,Capital Partners,Y4000\nPRESIDENT/CEO,WESTMARK CU,F1300\nPastor,Exdous MIns Bapt Church,X7000\nLAWYER,GDS STRATEGIES LLC,K2000\nHousewife,--------------,Y1000\nREAL ESTATE,ALLEN TENANT SERVICES,F4000\nExecutive Director,The John M. LLoyd Foundation,Y4000\nPRESIDENT,,F2100\nVP International Sales,\"Blair (William) & Company, L.L.C.\",F2100\nKIDVIDZ,,Y4000\nMATHEMATICIAN,UNIV. OF MD,H5100\nVICE PRESIDENT,LAFAYETTE LIFE,F3300\nANGELL AND ASSOCIATES,,F3300\nIT Analyst,Credit Suisse First,F2100\nCourt of Appeals Jud,State of Michigan,X3000\nEDUCATOR,ATLANTIC COMMUNITY COLLEGE,L1300\nPRESIDENT,A4C,G5200\nBUSINESS OWNER,HEAVY CONSTRUCTION INC./BUSINESS OW,B1500\nPresident,Biongoical Inc,Y4000\nVALLEY PROFESSIONAL CENTER,,F4200\nREAL ESTATE BROKER,SUSAN GUARDINO,F4000\nDIRECTOR DEPT.,LENOX HILL HOSPITAL,H2100\nFilm & Telivision Producer,Josephson Entertainment,Y4000\nCHAIRMAN,THE PRINCETON REVIEW,H5000\nRealtor,Coldwell Banker Grupe,F4200\nSales/Farming,Hammond & Stephens Co.,Y4000\nMTM ENTERTAINMENT INC,,Y4000\nInn Keeper,Teton Village Corp,Y4000\n\"Dean; Professor, Internal Medicine\",Midwestern University,H1130\nSoftware Sales,Microft Corporation,C5120\nBM-Business Manager,Enterprise Leasing Company of Philadel,T2500\nVP,Bluefish Wireless,Y4000\nAttorney,Lexmark International Inc,C5110\nCHRIS JOHN FOR CONGRESS COMMITTEE,,F4600\nOWNER,PEDUZZI ASSOCIATES LTC,G5270\nPresident and CEO,T. Casey and Associates,J7400\nGovernment Relaitons,Quaker,Y4000\nCORP. VICE PRESIDENT,\"ACCURATE WAGE, INC.\",Y4000\nPRESI,ATKINS CRISP PUBLIC RELATIONS,G5210\nSALES,FASHION PLUS IMPORTS,M3100\nMarketing & Adv,Marketing Resources,G5210\nLEXINGTON MEDICAL CEN,SELF-EMPLOYED,H2100\nGLENTIES LEASING CORP,,Y4000\nSmall Businessman,Pamo Valley Winery,J1100\nphysician,Northern Michigan Hospital,J1200\nFIRST WORLD COMMUNICATIONS,,C5100\nREAL ESTATE,SPAULDING & SLYE,J1100\nPhysician,UConn School of Medicine,Y4000\nVICE PRESIDENT OF MA,CHIP GANASSI RACING,G6400\nATTORNEY,LAW OFFICE OF BOHRER & LUKEMAN,K1000\nEMPLOYEE,TERRA INDUSTRIES INC.,A4100\nMota Construction Co,,B1500\nTHE LABORDE LAW FIRM LLC,,G6550\nOWNER OF THE RAVENS FOOTBALL T,,G6400\nBICKERSTAFF HEATH AND SMILEY,,K1000\nLINCOLN MEMORIAL UNIV,,H5100\nH AND H MANAGEMENT REAL ESTATE,,F4200\nCARDINAL GLASS,,Y4000\nA,PORTER WRIGHT MORRIS & ARTHUR LLP,J1200\nCLIMATE PROGRAM DIRECTOR,SAN FRANCISCO PUBLIC UTILITIES COMM,Y4000\nretired,retired no employer,J1200\nCHAIRMAN   &  CEO,YAZMI USA LLC,Z9500\nREA,FEDERAL REALTY INVESTMENT TRUST,F4200\nARAB-CHALDEAN COUNCIL,,J5000\nRanch Owner,Wolk Creek Elk Ranch,A3000\nRETIRED,R.N.,H1710\nDISTRIBUTION CONTROL SYSTEM,,D3000\nPresident,\"G Greenstreet, Inc\",Y4000\nCOCHISE COMM,,Y4000\nNRG RESOURCES INC./EXECUTIVE V.P./F,,M1000\nVice President/Sales Director,Hornady Manufacturing Company,J6200\nAssistant Professor,Duke University,J1200\nWETZEL ENGINEERS INC,,B4400\nPRESIDENT,BEVERAGE DIST. CO.,Y4000\nBEER DISTRI,PEARLSTINE DISTRIBUTORS,G2850\nPRESIDENT,MIDSTATE MACHINE & FABRICATING,Y4000\nWarmann Group,,Y4000\nOwner,VIP Livestock,A3000\nSILVER SADDLE SALOON,,Y4000\nDARIEN SEAFOOD,,G2350\nPHYSICIST,US. GOVERNMENT DOE,X3000\nMARTIN JUSTICE & VINCENT,,Y4000\nTELECOMMUNICATIONS,USAF,X5000\nVICE PRESIDENT,WELLMED MANAGEMENT,Y4000\nATTORNEY,\"CHEN LAW, LLC\",K1000\nPRODUCT MANAGER,T-NET TECHNOLOGY,Y4000\nSHARER BROS FARMS,,A1400\nCEO,APPLIED GLOBAL TECHNOLOGIES,C5000\nSTUDENT,STUDENT/STUDENT,X3500\nComputer Software Developer,Self employed,C5120\nPresident,Medical Device Manufacturers,H4100\nOWNER,SEATTLE AUTOMOTIVE DIST.,Y4000\nALLIED STRAUSS,,G4600\nINVESTMENT MANAGER,THORNBURG INVESTMENTS MANAGEMENT,F2100\nOWNER,JUNIPERO GROUP,Y4000\nInsurance Agent,Farmers Insurance,J1200\nAttorney,Johnson Law Offices,K1000\nGraphic Designer/ Business Owner,Self employed,Y4000\nCotton Breeder,Stoneville Pedigreed,A1100\nSUMMEY OUTDOOR ADV,,G5230\n\"CHILDREN'S INSTITUTE\",,J7700\nREALTOR,RUSSELL AND JEFFCOAT,F4200\nCONSTRUCTION,MARK L. CONSTRUCTION,B1500\nU.S. MILITARY,RET.,X1200\nCHAIRMAN & CEO,JPMORGAN CHASE BANK/CHAIRMAN & CEO,F2100\nSHARTSIS FRIESE GINSBURG,,J7400\nBanker,Yadkin Valley Bank,Y4000\nBARRETT RESOURCES CORPORATION,,E1150\nDIGITAL DEVELOPMENT,BEAM INTERACTIVE/DIGITAL DEVELOPMEN,Y4000\nBUILDAE,SELF,B1500\nAttorney,\"Brackatt & Gillis, P. C.\",Y4000\nJAZZ N THINGS,,Y4000\nMICHELIN NA,,T2200\nCBL POLICY INSTITUTE,,J1100\nATTORNEY,WEINER AND RATZAN PA,K1000\nEpiscopal Preist,St. Marks,X7000\nManager,Holiday Day Inn,T9100\nCorporate Consultant/Facilitator,Ohio Univeristy,H5100\nMANAGING DIRECTOR,\"FEDERAL COMMUNICATIONS COMMISSION, USA\",Z9500\nCHAIRMAN/CEO,THE POWELL COMPANIES,B1500\nGENERAL CONTRAC,NORWIN CONSTRUCTION,B1500\nOWNER,COLLIS ASSOCIATES,Y4000\nReal Estate Broker,\"Era Top Service Realty, Inc.\",F4200\nEmployee,Mercer Company,J7120\nSenior Public Health Advisor,\"DHHS/OASH/Office on Women's Health\",X3000\nManagement,\"GFA Brands, Inc.\",Y4000\nREALTOR,GEORGE L. CLARK,F4000\nPatent Agent,Synthetic Genomics,J7400\nInvestor,Self Employed,C5000\nPresident,United Casualty and SUrety Insurance C,Y4000\nPresident,Hock Development Co.,Y4000\nPRESIDENT,MAGNOLIA STATE BANK,F1100\nTeacher/Writer,Nyu-Scps,J1200\nVP LENDING,KITSAP CREDIT UNION,F1300\nAttorney,Bondurant Mixson & Elmore,K1000\nHARRISON-NICHOLS,,J4000\nCeo,Metroplex Healthscan Llc,Y4000\n\"CHAMBERLAIN, DAMANDA\",,Y4000\n\"PROFESSOR, EMERITUS\",DARTMOUTH COLLEGE,H5100\nPROJECT MANAGER,REIMAN CORP,B1000\nCONTRACTOR,YANKEE GUILD HOMES,B2000\nBRIGHAM & WOMENS ANES FOUND,,H1130\nGovt. Affairs,OB-C Group,K2000\nAttorney,\"Rush, Hannula & Harki\",Y4000\nTRAINA ENTERPRISES,,Y4000\nPROJECT MANAGER,KENSO CONSTRUCTION,B1500\nMILLER LIVESTOCK CO,,A3300\nPARKER FIRE PROTECTION,,Y4000\nSenior Vice Presiden,Citigroup,F1100\nCEO,EXPRESS EMPLOYMENT,J6200\nFINANCIAL ADVISOR,MC DONALD FINANCIAL GROUP,F0000\nAttorney,Freddie MaC,F4600\nINCORPORATED,,Y4000\nGALIES COMMUNICATIONS GROUP,,Y4000\nGILMORE PLANT & BULB,,Y4000\nVP FRO PUBLIC POLICY,LEADING AGE FLORIDA/VP FRO PUBLIC P,Y4000\nLAND & MINERAL MGMT,SELF,J7300\nWAGNER INSURANCE AGENCY,,F3100\nChief Information Officer,Citicorp / Citibank,F1100\nPRESID,NORTHERN BROADCASTING SYSTEM,C2100\nSTRUCTURED SETTLEMENTS,RINGLER ASSOCIATES,F4700\n\"MONTGOMERY, CRACKEN ET\",,K1000\nPRESIDENT &,CORPOREX CAMPANIES INC.,F4100\nINFORMATION REQUESTED,WOODLAND MOTEL,T9100\nEXEC,BWS COMPANY,Y4000\nPRESIDENT,VOXEM,Y4000\nEmergency Physician,Univ IL Chicago ED MC 724,H1100\nSENIOR VP INTERNAL AUDIT AND COMPLIA,NEXTERA ENERGY,E1600\nCAPE ASSOCIATES,,Y4000\nPresident & Chief Executive Officer,Archbold Medical Center,H2100\nCONDUCTOR,RICHARD ROSENBERG/CONDUCTOR,J5100\nChief Counsel,\"BNFL, INC\",E1320\nPRESIDENT,ROST ENTERPRISES LP,Y4000\nENERGY REG COMM,,X3000\nPRESIDENT/PETROLEUM GEOLOGIST,\"CARR RESOURCES, INC.\",Y4000\nBeef cattle rancher,Self,A3000\nPresident of Animati,20th Century Fox Studios,C2400\nEDITOR,\"JOHN B. HENRY, EDITOR\",C1100\nSALES,SALLIE MAE,F1410\nATTORNEY,UTILITIES INC,Y4000\nBIG SCREEN FURNITURE,,Y4000\nSLIGH FURNITURE,,Y4000\n\"DEAN, GRAD. SCHOOL OF BIOMEDIC\",UNTHSC,Y4000\nConsellor,Civic Stratrsics,Y4000\nPSYCHOLOGIST,HECKER-SCHWARTZ ASSOCIATES PA,Y4000\nMANAGING DIRECTOR,POWELL COMMUNICATIONS,Y4000\nEXECUTIVE,ALSTON BIRD LLC,K2000\nSR. DIR. COMP & LEGAL AFFAIRS,TIME WARNER CABLE,C2200\nSERVICE DISTRIBUTORS,MOUNTAIN,A1300\nExecutive,AKT Development,F4100\nPresident & CEO,Boston Capital Partners,F4000\nretired sheriff / ra,self,G0000\nENDODONTIST,\"JAMES M. WILCKO, DMD\",Y4000\nENGINEERING & PROFESSIONAL SVCS INC,,B4000\nphysician,Outpatient Pathology Associates,H1130\n\"PERRIN, PERRIN, ET AL\",,K1000\nMACRO INTERNATIONAL,,Y4000\nWASHINGTON STATE DEPT OF TRANS,,J1100\nPRESIDENT,3 ARTS ENTERTAINMENT,Y4000\nFuel Merchant / Owne,Major Petroleum Industries,E1100\nSENIOR COMPUTER CONSUL,DATA VOYAGER,Y4000\nLOUISVILLE DOWNTOWN DIST MANAGEMENT,,Y4000\nChief Sales and Mark,American Foods Group,G2300\nGREAT ATLANTIC REAL ESTATE,,F4000\nPerforming Songwriter,Self employed,Y4000\nGENERAL MANAGER,MAINTAIN SYSTEMS,Y4000\nCORPORATE STRATEGY,S&F MANAGEMENT COMPANY,Y4000\nProfessor emeritus,Ohio State University,H5100\nReal Esatate,Self-Employed,G0000\nDoctor,\"Struan Coleman, Md, Phd\",H1100\nChevrolet Pontiac Dealer,Self employed,T2300\nAttorney,Wilkes McHugh,K1000\n\"Holistic Health - Massage, Reiki, Yoga\",Self employed,Y4000\nBROKER,N.I.A. GROUP L.L.C.,F3100\nPRINCIPAL,EASTERN REAL ESTATE LLC,F4000\nAttorney,Kummer Kaempfer Bonner,K1000\nHAWAII CONVENTIONS I,CALIFORNIA,Y4000\nSOLIDS PROCESSING TECHNICIAN,CITY OF BOCA RATON,Z9500\nPCEE INC,,Y4000\nPresident,\"Kosair Children's Hospital\",H2100\nMSAE,,Y4000\nPERIODONTIST,D.L. TAGGE DDS,H1400\nPRESIDENT,BAIN AGENCY INC,F3100\nChairman,Environment 2004,JE300\nSTEINBERG PRESCHOOL,,F5100\nPUBLIC AFFAIR,JIM DYKE & ASSOCIATES,G5260\nteacher,Miami-Dade Public Schools,X3500\nEDWARD LEE ACCTG & CO,,Y4000\nPRESIDE,SCOTTYS CONTRACTING & STONE,B1500\nCPA,Richardson Pennington & Skinne,F5100\nPRESIDENT & CEO,R.R. DONNELLEY & SONS COMPANY,C1300\nCAPITALBLUECROSS,,F3200\nTelecommunications Consultant,Blue Field Strategies,Y4000\nAutomobile Coach Wor,Self-Employed,Y4000\nATTORNEY,HBJ INVESTMENT LLC,F7000\nVICE-PRESIDENT,URS CORP.,B4000\nCEO,RETRIEVER CONSULTING,Y4000\nREAL ESTATE BROKER,REALTY RESOURCES CORPORATION/REAL E,F4200\n\"HANIFER, IMHOFF\",,F2300\nBROADCASTING,\"RADIO ONE, INC.\",C2100\nInternational Electi,Self,G0000\nCONSULTANT,ROSEPINE FAMILY PHARMACY,G4900\nERME BEER DISTRIBUTOR,,G2850\nAttorney,\"Sneed, Vine, & Perry\",K1000\nAccountant,E.M. Wasburg Pincus & Company,F2600\nlawyer,Munger; Tolles & Olson LLP,Z9500\nexecutive,Regal Marine,Y4000\nMICHIGAN WORKS,,Y4000\nCONSULTING,KOGOVSEK & ASSOC.,K2000\nOwner,Jerd Technology Consultants Llc.,Y4000\nATTORNEY,REYNOLDS JOHNSTON HINTON/ATTORNEY,Y4000\nEXECUTIVE,VT SYSTEMS,B4000\nATTORNE,MILLER & CHEVALIERCHARTERED,K2000\nVice President,Tenco Usa Inc.,Y4000\nBook Keeper,S/G Elctronics Inc,F5500\nChairman,Cassidy & Associates,J1200\nREAL ESTATE DEVELOPER,C.H. CONSULTING INC.,G5200\nAttorney,Martin Drought & Torres,K1000\nJONES & MORA,,Y4000\nAGBAR CHEMICALS,,H4400\nMO OFFICE OF ADMINISTRATION,,Y4000\nSUNFLOWER ELECTRIC SYSTEM,,Y4000\nANALY,MSU EXTENSION - MACOMB COUNTY,Y4000\nDOUGLAS & JOSEPH,,Y4000\nB,CITIZENS UNION STATE BANK & TRUST,F1100\nLegal Assistant,\"The Cuda Law Firm, PC\",K1000\nPR,\"Brunswick Group, LLC\",G5210\nKRONISH ASSOCIATES,,Y4000\nPRESIDENT,BERNARD FINANCIAL,F0000\nCONSULTANT FOR NEW YO,,G5200\nOwner,G & M Motors,Y4000\nAttorney,\"Kaplan Kirsch & Rockwell, LLP\",K1000\nexecutive,B-3 Consulting,Y4000\nFarming/Retail,Corona Ranch,A3000\nATTORNEY,JONES HALL,K1000\nBUSINESS,THE GODDARD SCHOOL,Y4000\nCHIEF FINANCIAL OFF,WORTH & COMPANY,B0000\nPRINCIPAL,RUBICON ADVISORS,Z9500\nEngineer,\"Technology 21, Inc.\",Y4000\nPresident,Cox TV,C2100\nCHAIRMAN,SPANGLER CANDY COM.,G2200\nADMINIST,COORDINATED HEALTH SYSTEMS,H0000\nCS MCCLELLAN REAL ESTATE,,F4000\nVOUTE COATS STUART & OGRADY L P,,Y4000\nPRESIDENT,FOUR WINDS TRADING CO,Z9500\nC.F.O./Corporate Tre,Hillside Family Of Agencies,Y4000\nATTORNEY,TURNER BRANCH,K1000\nFEEDLOT OPERATOR,,A3300\nATTORNEY,URICCHIO HOWR AND KRELL,K1000\nBusiness Owner,Jeremy Daniel Enterprises Inc,Y4000\nPrincipal,Cambridge Seven Associates,Y4000\nElectrician,IDEW Local #3,Y4000\nVENTURE CAPITALIST,SELF/VENTURE CAPITALIST,F2500\nReal East Developer,\"Prem Realty, Inc.\",F4200\nLEVITAN AND ASSOCIATES/PRESIDENT/CE,,Y4000\nReal Estate Advisor,Keller Williams Realty Encino Sherman,Z9500\nCOLBER DEVISION CORP,,Y4000\nSECRETARY,FRANCISIAN SHARED LAB,Y4000\nDEALER INDIAN ARTS & CRAFT,SELF-EMPLOYED,Y4000\nRIVER VALLEY CONTRACT SERVICE,,Y4000\nRESEARCHER,BERKELEY LAB,J1200\nEXECU,AMERICAN HOMESTAR CORPORATION,B2400\nSINGER,BANANA PRODUCTIONS,J1200\nSupervisor,Rite Aid,J1200\nInvestment Banker,Bernstein Investment Research & Mgmt,F2100\nAttorney,Bensinger & Assoc.,K1000\nCFO,Aurons Solutions,Y4000\nMangement Consultant,Self-Employed,G0000\nAnthropologist,\"Impact Assessment, Inc\",Y4000\nEDITOR,SUNSET PUBLISHING,C1100\nPRES,AMER. CNCL. YNG. POLITICAL LDR,K2000\nProgram Management,United Healthcare,F3200\nSURGEON,OTOLARYNOLLOGY HEAD & NECK SUR,Y4000\nM C I TELECOMMUNICATIONS,,C4200\nExec. Director,AZ Dem. Party,J1200\nManager Global Operations Leader,GE Power Systems,M2300\nFITZGERALDS GAMING,,G6500\nINFO REQUESTED,7w Building LLC,Y4000\nBANKER,WALL COMPANIES,Y4000\nReal Estate Investorq,Peak Management,F4100\nPresident,\"J.B. Martin Co., Inc.\",Y4000\nManager,SAIC,D3000\n\"PRESIDENT, RHINO\",WARNER MUSIC GROUP,C2600\nGENERAL MANAGER; E,GE POWER SYSTEMS,M2300\nExecutive,Isidor Paiewonsky Assoc Inc,Y4000\nCEO,M International Inc,J2200\nOWNER,S.I. FEEDERS,Y4000\nPHYSICIAN,KAISER,J7300\nVice President,Hope Enterprises Inc,Y4000\nORGANIZATIONAL DEVELO,SELF-EMPLOYED,J9000\nBALLY MFG CORP,,G6500\nArtist/Educator,Self employed,X0000\nMANAGING GENERAL PARTNE,NGN CAPITAL,F2500\nREALTOR,C.B. RICHARD ELLIS,F4000\nAsst Director,St Catherines,Y4000\nLEULEMAN BANK SUPPLY CO,,Y4000\nSELF-EMPLOYED/VOLUNTEER/TRUSTEE,,Y4000\nIBERO AMERICAN INVESTORS CORP,,F7000\nDAVENPORT & CO L.L.C.,,F2100\nOWNER,PARADISE HEALTH FOODS,H4600\nIT,Capital,Y4000\nCITY COUNCILWOMAN,\"CITY OF WALNUT, CA\",X3000\nNavy Diversity Officer,US Department of the Navy,X5000\nEXECUTIVE,THE BRINKERHOFF COMPANY,F5100\nPARTNER,SLOAN FORD,Y4000\nEXECUTIVE,\"FRANKEL ASSOCIATES, INC.\",F4100\nentrepreneur,\"Zen Pizza, Inc\",G2900\nAttorney,\"Alexander, Baucus, Talef and Paul\",J1200\nCOO,RedPeak Properties LLC,F4100\nAttorney,\"Berger & Montague,P.\",K1100\nPRESIDENT OF PLANNIN,CRAIN & ASSOCIATES,Y4000\nCALDWELL AND WATSON,,K1000\nManager,\"Cargolux Airlines Int'l\",T1100\nHOSPITAL ADMINISTRATOR,MAUI MEMORIAL MEDICAL CENTER,Z9500\nHOMEMAKER,N/A,A1200\nPLUMBER,WARNER MECHANICAL,B3400\nBLUE CIRCLE CEMENT,,B5100\nMCCUMBER INCLAN,,Y4000\nOwner,The Star Group,Z9500\nMENTAL HEALTH THERAPIST,COUNTY OF MARIN (CA),Y4000\nBENJAMIN & JEROLD,,Y4000\nDeveloper,Courtland Homes,B2000\nSELF-EMPLOYED,ORIENTAL TREASURE,G0000\nFood Broker,Lott Marketing,Y0000\nCEO,Hilscher-Clarke Electric Company,B3200\nRUSING LOPEZ,,K1000\nWine Store Proprietor,Self employed,G0000\nINVE,\"HERITAGE HOTELS & RESORTS, INC\",T9100\nEXECUTIVE SEA,HIGHLAND SEARCH GROUP,G5250\nPACIFIC UNION RESIDENTIAL BROKER,,F4200\nPSYCHOTHERAPIST RETIRED,SELF,X1200\nExecutive Vice Presi,\"Clean Energy Systems, Inc.\",E1500\nPetroleum Landman,Killam Oil Company,E1100\nC00004325,,LT500\nExecutive,Southeast Wood Treating Inc,B5200\n\"MOSSO'S MED SUPPLY\",,H4100\nMAVERICK,,X4100\nAuto Dealer,Shortline Automotive,T2000\nSOFTWARE DEVELOPER,SELF,J1200\nCEO,SPECTRUM TECHNOLOGIES INC,Y4000\nmusic director,self,G0000\nREAL ESTATE DEVELOPMENT,URBAN-ATLANTIC,Y4000\nGROOME,SELF EMPLOYED PENROD KENNELS,Y4000\nTAX COLLECTOR,LEON COUNTY GOVERNMENT,Y4000\nDentist,J Larry Morris DMD PA,H1400\nInvestment Manager,BLM and Associates Inc,T1400\nOwner,Cmi,J6200\nSTEENSMA,SELF EMPLOYED,J1200\nAccount Executive,Open Table,G2900\nCHAIRMAN,HUFFINGTON POST,Y4000\nCEO,SISNEROS BROS,M0000\nLOG PROCUREMENT MANAG,BOISE CASCADE,A5200\nCEO,Pacific Medical Clinic,Y4000\nAttorney,Plunkett Jaffe,K1000\nIT MANAGEMENT,TRIGOLD,C5120\nUNION BAY SHIPBUILDING,,T6100\nPHYSICIAN,USON,Y4000\nEngineer,Between Jobs,Y1000\nMARKETING,GRIME & TEICH,Y4000\nINDIVIDUAL INVESTOR,RETIRED,X1200\nCONSULTANT,ENCOMPASS LLC.,Y4000\nATTORNEY,BEASLEY ALLEN CROWN/ATTORNEY,K1000\nExecutive Vice President and CFO,\"Cox Target Media, Inc\",C2200\nGOYTON CENTER OF NEVADA,,Y4000\nMASCHMEYER CONCRETE CO,,B5100\nHead Of Corp Communi,Aetna Inc.,H3700\nEXECUTIVE VICE PR,\"SPIRE SOLAR, INC.\",E1500\nHOSPITALITY EXECUTIVE,NINE PLATT CORP,Y4000\nExecutive,Student Loan Funding,F1400\nPhysician,Orthopedic Center of Palm Beach County,H1130\nNurse Practitioner,Prima Med,Y4000\nJBL PROPERTY,,J5100\nEXECUTIVE DIRECTOR,SUMMERHILL,F7000\nLAU DEFENSE SYSTEMS/PRESIDENT/CEO/E,,Y4000\nEXECUTIVE,F T D ASSOCIATION,Y4000\nENERGY STATEGIES INC,,Y4000\nMICHAUD-DUFFY GROUP LLP/ATTORNEY/MA,,K1000\nOral Maxillo Facial,Self-Employed,H1400\nELECTRIC STATION OPERATOR,DEPARTMENT OF WATER AND POWER,X3000\nPRESIDENT,CYBERNET SYSTEMS,D3000\nEMPLOYMENT & DEVELOPMENT SPECI,,Y4000\nFASTCO THREADED PROD,,M5000\nIntern,Maersk,J1200\nZIMMER HOLDINGS,,Y4000\nOPHTHALMOLOGIST,CLARUS EYE CENTRE,Y4000\nphysician,cascade physicians,H1100\nCAPE ELIZABETH HIGH SCHOOL,,X3500\nPRESIDENT,\"GARLICK ENTERPRISES, INC.\",Y4000\nVENTURE CAPITALIST,CENTERPOINT VENTURES,F2500\nOWNER/PRESIDENT,NEWCARE CONCEPTS INC.,Y4000\nZENINA FARMS INC,,Y4000\nOWNER RECYCLING,,M2400\nPresident,Ccr Ministries,Y4000\nCEO,GENERAL BIODIESEL,Y4000\nSECRETARY,UNIVERSAL TECH. INC.,M2300\nAttorney,Hacker Kanowsky & Braly,Y4000\nSCHREIER MALTING,,G2810\nPRESERVATION HALL,,Y4000\nMONEY MANAGEMENT,FOUR TREE ISLAND ADVISORY LLC,Y4000\nCAREER TRAINING NEVADA INC,,H5200\nPresident/chief Exec,Vanco Energy Company,E1150\nTEXAS STERLING CONSTRUCTION,,B1000\nADM SVCS MANAGER,EXXON CORP,E1110\nCHAIRMAN AND CE,PEABODY ENERGY CORP,E1210\nATTORNEY AT LAW,HALFON LAW OFFICE,K1000\nPresident & Chief Concept Officer,Pizza Hut,G2900\nD CONSTRUCTION,,B1500\nOFFICE ADMINISTRATOR,\"TIMCO, INC\",Y4000\nCONSULTANT,CHRISTENSEN GLOBAL STRATEGIES,Y4000\nOWNER,RICHARDS ALTERALTIONS,Y4000\nAttorney,Sloss Eckhouse Brennam LLP,Y4000\n\"COOPER'S WESTERN WEAR\",,G4100\nDIMENSION DATA,,C5130\nVP,Foothills Auto Group,T2000\nEMMET MARTIN & MARTIN L L P,,Y4000\nEthics Compliance manager,Microsoft,C5120\nLEGAL SECRETAR,\"MARTIN, PRINGLE, LLP\",Y4000\n\"DOSHNER'S FUNERAL HOME\",,G5400\nExecutive,Ill Assoc Of Realtors,F4200\nHomemaker,Unemployed,F1100\nRETIRED FLIGHT ATTENDANT,,J7400\nVP ADMINISTRA,VALPARAISO UNIVERSITY,F1100\nCO-CHAIRMAN,SILGAN HOLDINGS INC.,M7300\nCEO,PREMIER PACKAGING/ASSEMBLY,J1100\nBOSTON CAPITAL PARTNERS INC,,B2000\nFIDELITY NATL FINANCIAL,,F0000\nHOUSING DEVELOPME,SENCIT PROPERTIES,F4000\nINVESTMENT BANKER,JEFFRIES & CO,Y4000\nJOHN A PENNEY CO INC,,Y4000\nTeacher,Gateway High School,Z9500\nBKK INC,,Y4000\nOwner,Pat Rogers Harley,Y4000\nCEO,\"MARC Associates, Inc\",K2000\n\"Member,\",Eighty-Eight Oil LLC,E1100\nJL PROPERTIES INC,,F4000\nST LOUIS MUFFLER INC,,J5100\nPresident,f*a*d Consulting LLC,Y4000\nwriter,Words Without Music LLC,C1100\nRetailer,\"Gainan's Flowers\",A8000\nFOUNDER/PRESIDENT,MUSIC DOING GOOD LLC,Y4000\nOWNER,CAPITOL GRILL,G2900\nNurse Practitioner,Evercare,H1710\nManager,Verizon Tele,C4100\nC.P.A.,CRANETONELLIROSENBERG LLP,Y4000\nPartner,Jordan Burt LLP,Y4000\nFAMILY PRACTICE CENTER PA,,H1100\nCHAIRMAN AND CEO,ALTRIA GROUP INC,A1300\nFUTURAMIE DESIGN,,Y4000\nGBA SYSTEMS,,Y4000\nCEO,SWING BY SWING GOLF,Y4000\nManager,Dowd Wescott Group,F2100\nEMPLOYMENT SOLUTIONS,,G5250\nPresident,\"Ironstone Develpoment, LLC\",G0000\nAttorney,Center For Responsible Lending,F1000\nOwner,B & D Suzuki Cycle Center Inc.,Y4000\nJASCULCA TERMAN & ASSOCIATES,,J5100\nMedical Ctr Sr Sales Prof SBMD711S,sanofi-aventis US Inc,H4300\nLAWYER,\"PEIRSONPATTERSON, LLP\",Z9500\nRacing Business,Self-Employed,G6500\nFARMER,AMSTEL FARMS,A1000\nMANAGER,COVENTRY HEALTH CARE,H3700\nINVESTOR,STANDARD CHARTERED BANK,F1100\nAdministrator,SOS Academy Charter School,Y4000\nMANAGER,NYS DEPT OF TRANSPORTATION,X3000\nBRENNAN INDUSTRIAL GROU,,M0000\n\"BAYH, CONNAUGHTON, ET AL\",,K2000\nExecutive VP,SEI,Y4000\nVICE PRESIDENT & MANAGING DIRECTOR,CUMMINS INC.,M2300\nAuto Dealer,Colonial Auto Center,T2000\nLAWYER,ECHELON LLC,Y4000\nConstractor - Builde,Self,G0000\nEXECUTIVE,CALMAQUIP ENGINEERING CORP.,B4400\nORTHOPAEDIC SURGEON,CENTRAL INDIANA ORTHOPAEDICS,H1130\n\"DIRECTOR, DEVELOPMENT & OUTREACH\",HUMAN RIGHTS WATCH,J7000\nSecretary,New Hope Community Church,X7000\nCHAIRMAN,EAST PENN MFG. CO.,Y4000\nMerchant Banker,Self Employeed,F2100\nVice President/Treasurer,Self-Employed,G0000\nDALLAS ALLERGY AND,,H1130\nDIRECTOR,LAM RESEARCH CORPORATION,C5000\nDirector of Marketin,\"Saft America, Inc.\",M2300\nCORTESE DODGE,,T2300\nSvp Customer Operations,Exelon Corp,E1600\nNone,,F5100\nPresident,Baywood Technologies,Y4000\nBECKER LAW OFFICE,,K1000\nSYSTEM ENGINEER,ALCATEL-LUCENT,C4600\nCORPORATE COMMUNICATIONS,FORSYTHE TECHNOLOGY,J1200\nSIMPSON BEETON AND FINEGAN,,K1000\nAuto Dealer,Beaman Automotive Group,T2300\nSales Manager,A.V.P.,Y4000\nLANFORD BROTHERS COMPANY INC,,B1000\nDEVELOPER,PRIME PROPERTY INVESTOR,F4000\nPARTNER,\"UNITED IRON & METAL, LLC\",J6200\nDIRECTOR,CIENA,Y4000\nSoftware Engineer,FINRA- Financial Industry Regulator,Y4000\nPartner,Lifespan,H1130\nEXECUTIVE,\"SARAH & ROSS PEROT, JR. FOUNDA\",Y4000\nCPA,\"Levine, Katz, Nannis + Solomon, PC\",F5100\nOWNE,WITHERS BROADCASTING COMPANIES,C2100\nHARTFORD DISTRIBUTORS INC.,,G2850\nHUIZENGA GRAVEL CO INC,,B5100\nExecutive,Precision Metalforming Association,M5000\nDoctor,Thomas Jefferson Univaraty Hosp.,Y4000\nPhysician Consultant,National Heritage Ins Co,Y4000\nVice President,Churchill Residential,F4500\nHAYES MINERALS LLC,,E1200\nEXECUTIVE,SCHOOL FIRST FCU,F1300\nATTORNEY,HUNTON R. WILLIAMS,K1000\nMEDICAID PROVIDER,SELF-EMPLOYED,Y4000\nPAINT CONTRACTOR,D & W PAINTING INC.,B3000\nState Legislator,Commonwealth of Massachusetts,X3000\nSTERLING FINANCIAL MORTGAGE & INVES,,F4600\nCEO - Retail Financi,JP Morgan Chase,F1100\nADMINSTRATOR,\"DYNAMIC CONCEPTS, INC.\",Y4000\nKINGS CARDIOLOGY MED CENTER,,H1100\n\"Toyota, Volvo, Mercedes Dealer\",Dick Fyer & Associates Inc,Y4000\nPartner,\"DMR Architects, P.A.\",B4200\nATTORNEY,UNITED STATES GOVERNMENT - HHS,X3000\nAttorney,Shasta County,X3000\nPresident,Alert Global Media Inc.,C5140\nPROF. PHOTOGRAPHER,Self employed,G0000\nC.F.O.,TRILOGY REAL ESTATE GROUP,F4000\nSurgeon,University Towers,H1130\nMGR-CAPITAL MARKETS,EXXON MOBIL CORP,E1110\nPRESIDENT,ACTION TRUCK CENTER,T3000\nATTORNEY,STOEL RIVES LLP,J7150\nPrincipal,\"Higgins, McGovern, LLC\",K1000\nEXECUTIVE,SYSCO FOOD SERVICES,G2500\nBEVERLY HILLS PROPERTIES,,F4000\nSALES,SUPER NUTRITION,Y4000\nCEO,MOVIE TAVERN INC,J1100\nVICE PRESIDE,E.A.D.S. NORTH AMERICA,D2000\nVICE PRES.,CLAXTON POULTRY,A2300\nPreschool Teacher,\"North Coast Children's Services\",Y4000\nTV WRITER & PRODUCER,ICM,C2000\nAttorney at Law,Dow Lohnes,K2000\nPRESIDENT,\"TOPITZES & ASSOCIATES, INC\",Y4000\nEngineer,Baker Aickens & Associates,Y4000\nExecutive,Phelps Industries LLC,G4700\nSALES,PACIFIC ORTHOPAEDICS,H1130\nscientist,Amgen Inc,H4300\nDIRECTOR OF CORPORATE,COMCAST CABLE,C2200\nEnglish Prof,Furman University,H5100\nSENIOR VICE PRESIDENT,GCI TUNHEIM,Y4000\n\"REAL ESTATE DEV./COMM'L FISHING\",\"WALDEC ENTERPRISES, INC.\",J1100\nn/a,retired,F5100\nReal Estate Development,\"Lincoln Property Company, Inc\",F4000\nATTORNEY,SIMPON THACHER & BARTLETT LLP,Y4000\nManager,W-S Industrial Services,Y4000\n\"CHAIRMAN, PRESIDENT AND CEO\",\"COEUR D'ALENE MINES CORPORATION\",E1220\nBURKE CONSTRUCTION INC,,B1500\nMANAGING D,DUFF & PHELPS SECURITIES,Y4000\nAttorney,Federal Aviation Adminis,X3000\nCHIEF HEALTHCARE OFFICER,AAMC,H1130\nPresident,Innquest Software,C5120\nCLERGY,1ST CHURCH,X7000\nLAWYER,UNITED STATES DEP. OF JUST,X3200\nDirector of Business Services,Toyota Federal Credit Union,F1300\nARTER AND HADDEN,,K1000\nPUBLIC FINANCE,GOLDMAN SACHS,F2300\nEXECUTIVE,GRANDFATHER MOUNTAIN,Y4000\nJ & W HEALTH SERVICE,,H0000\nREAL ESTATE,CENTER POINT PROPERTIES,F4000\nSr Dir Business Ops,Comcast (Cc) of Willow Grove,C2200\nAttorney,\"Marjorie Rawls Roberts, PC\",K1000\nCREATIVE MARKETING COMM,,Y4000\nSAUDER WOODWORKING CO,,M4100\nEXECUTIVE VP,ZIONS BANCORPORATION/EXECUTIVE VP,F1100\nCORPORATE OFFICER,SELF-EMPLOYED,G0000\nDirector of Marketin,\"Sterne, Kessler, Goldstein & F\",Y4000\nOWNER,UPCHURCH DRUGS CORP.,Y4000\nV. Chairman,Van Der Moolen Specialists,F2100\nPartner,The Longstreet Clinic PC,Y4000\nPRESIDENT & CEO,FIRST BANK,F1200\nPRESIDENT,MITKEM CORPORATION,Y4000\nMUNDS & DOBBINS,,Y4000\nPRESIDENT,IRA SHAPIRO GLOBAL STRATEGIES,Y4000\nPROGRAM MANAGER,PARSONS CORPORATION,Z9500\nChairman,ANAF,Y4000\nNY LAND SERVICES,,F4300\nCHAIRM,THE INLAND REAL ESTATE GROUP,F4000\nAssistant/Live Exhibits,Amnh,Y4000\nUSAF HQ-DIVISION CHIEF,USAF,X5000\nGALLOP JOHNSON & NEYMAN,,K1000\nExecutive,\"Horizon Aviation Services, Inc\",T1000\nCHAIRMAN,WINEGARDNER & HAMMONS INC,Y0000\nC.E.O.,DIATECH ONCOLOGY,H1130\nAttorney,Weekley Schulte Valdes LLC,Y4000\nPALMER & DODGE LLP,LAWYER,J1200\nPHYSICI,RIVER REGION MEDICAL CENTER,H1100\nLAW,MARTINEZ & CURTIS PL,E5000\nLEWIS FARMS,,A1000\nSALES,JIMMY CHOO,Y4000\nconsultant,watson wyatt worldwide,G5200\nPhysician,Anesthesiologists of Erie,H1130\nConsultant,Progressive Gov INST,Y4000\nmortgage banker,Union Federal Bk of Indianapol,Y4000\nATTORNEY,CCI COMPANIES,G2700\nInvestment Management,SCS Financial,F0000\nDATABASE MANAGER,DMRA INC.,Y4000\nCEO,CR LAINE FURNITURE COMPANY/CEO,A1000\nRANCHER,BUSINESSMAN,A3000\nPRESIDENT,R.E. BARBER FORD,Y4000\nRetail,Unemployed,M3100\nTEACHER,MTN VIEW ADULT EDUCATION,Z9500\nPSYCHOLOGIST,TCRC,Y4000\nService,Fitzgerald Auto Mall,T2300\nCONWAY SOUTHERN EXP,,Y4000\nOwner,Country Curtains,J1200\nActuary/Business Owner,Self employed,F3100\nSoftware En,Compellent Technologies,C5120\nLAW PROFESSOR,GEORGETOWN UNIVERSITY,J1200\nGENERAL MANAGER,AUTO NATION / MINI OF STEVENS CREEK,T2300\nOwner,Hartman Management,Y4000\nMOLINE CONSUMERS CO,,Y4000\nHTG & AIR,,Y4000\nVICE PRESIDENT,GENERAL DYNAMICS,Z9500\nFACT SET RESEARCH,,Y4000\n\"GRIFFIN, JOHNSON ASSOC\",,K2100\nManager,\"The Flying P, Inc.\",Y4000\nSalesman,\"Argonetics, Inc.\",Y4000\nINSURANCE AGENT,SELF,F0000\nCHATEAU MONTELENA,,Y4000\nEXECUTIVE VICE-PRESIDENT,OUTDOOR AD ASSN OF AMERICA,G5230\nADMIN ASSISTANT,AZ STATE SENATE/ADMIN ASSISTANT,Y4000\nEXECUTIVE,OAK GROVE TERRACE,Y4000\nC.E.O./Director,Oak Grove Institute Foundation,Y4000\nVICE PRESIDEN,POWER BRAKE DIES INC.,Y4000\nAdmin,Recco Home Care Inc.,H3100\nAdministrator,Appomattox Health & Rehab Ctr,H2000\nEXEC VICE PRESIDEN,GRIESINGER ASSOC,Y4000\nInfo Requested,Info. Requested,F5500\nNurse Epidemiologist,USPHS,X3000\nSURGEON,WELLSTAR MEDICAL GROUP,Y4000\nCHAIRMAN,CUMMINS AMERICAN,M4200\nATTO,FINCH MCCRANIE BROWN HENDRIX S,K1000\nMEDICAL T,CEDAR SINAI MEDICAL CENTE,H2100\nISI EAST RUTHERFORD NEW JERSEY,,G5000\nPIERCE TRAILER SERVICE INC,,Y4000\nEXECUTIVE,TOLL BROTHERS BUILDERS,B2000\nElectrical Contractor,\"Comeau Electric, Inc\",B3200\nPROFESSOR,UNIVERISITY OF CALIFORNIA,H5100\nDOCTOR,GRINNELL REGIONAL MEDICAL CENTER,H2000\nEXECUTIVE,MAJESTIC REALTY,F4100\n\"BELIARD, GORDON & PARTNERS\",,F4200\nSENIOR V,VALOR COMMUNICATIONS GROUP,Y4000\nPresident,Cullinane and Associates,F4700\nMGR,DEPT OF STATE,X3000\nInventor,CEO/Founder Remote Light Inc,Y4000\nPhysician,Doctors Anatomic Pathology Ser,H1100\nPRESIDENT,PREMIER PAVING INC.,B3000\nphysician,Charlottesville Dermatology,J1200\nWEB DESIGNER,SALT LAKE WEB CENTRAL,Y4000\nOWNER,TANCO ELECTRIC,B3200\nEXCUTIVE,APL,T6000\nBurisness Man,Calibre Systesm Inc,Y4000\nST JOHN HEALTH,,H2100\nIRON/STEEL WORKER,RCC INC.,Y4000\nFACILITI,UNITED PARCEL SERVICE INC.,T7100\nLARSEN BRYANT & PORTER CPA,,F5100\nOwner,North American Title Loans,F4300\nC.E.O.,ME & MY BIG IDEAS,Y4000\nEXECUTIVE,HAMMOND LUMBER CO.,B5200\nWHOLESALE SUPPLIER,,G3000\nOWNER,ACRO LABEL INC.,M7000\nWITHON MEADOWS HLTH,,H0000\nATTORNEY,AYABE CHONG NISHIMOTO SIA,Y4000\nFinancial consultant,Brambear Inc,Y4000\nTEAN RESEARCH,,Y4000\nPRESIDENT,VALLEY MOTORS,T2300\nMORRIS ANIMAL INN,,G5000\npediatrician,County of San Luis Obispo,X3000\nVICE CHAIRMAN OF THE BOARD,FJC SECURITY,Y4000\nSelf- Employed,Greystone Investments - Husband,Y4000\nHOMEWOOD NURSERY & GARNDAN,,A8000\nHEGG COMPANIES,,Y4000\nDealer,Ralph Honda,T2300\nRadiologist (MD),Austin Radiological Association,H1130\nRYAN & SUDAN LLP,,K1000\nProgram Director,Luster National,Y4000\nATTORNE,FEDERAL MARITIME COMMISSION,X3000\nOwner,Floors USA,Y4000\nEXEC VICE PRESIDENT,PALLADIAN HEALTH,H0000\nDatabase Application Archiect,Jostens Inc,Y4000\nCoordinator,Alliance Imaging,Y4000\nGALANIS & FRIEDLAND,,Y4000\nEXECUTIVE,EMDEON CORPORATION,H1100\nPOD,OSU UNIVERSITY,Z9500\nVICE PRESIDENT MEDICAL AFFAIRS,MARY WASHINGTON HOSPITAL,H2100\nSALES,J.B. INTERNATIONAL,Y4000\nCHAIRMAN AND CEO,FIRST GREEN BANK,Y4000\nSKI RELIANCE BEACH AND SK,,Y4000\nPresident and CEO,\"Aspen Aerogels, Inc\",D3000\nOilfield Sales,Self-Employed,E1100\nKLAES CHIROPRACT CLINIC,,H1500\nDENTIST,MYRTLE BEACH DENTAL ASSOCIATES,H1400\nSALES,NEWSOM INDUSTRIES-SELF,Y4000\nSENATE ENGINEERING,,B4400\nBoard Member,\"St. Luke's Wood River Foundation\",Y4000\nWHITEHAVEN FINANCIAL,,F0000\nENGINEER,GOODRICH PETROLEUM,E1120\nPHYSICIANOB-,CHEROKEES WOMEN OB-GYN,H1130\nOIL & GAS OPR,,E1120\nOwner,SOJ Equipt INC,Y4000\nAttorney,\"Barrick,Switzer,Long,Balseley\",K1000\nEngineer,Logical Systems Inc,Y4000\nMarketing And Promot,\"Promotion Connections, Inc.\",Y4000\nINSUARNCE AGENT,SPENAR-KINNEY CO,F3100\nDIRECTOR,NATL ASSOC. FOR HOMECARE,Y4000\nCommunications Direc,Empire State Pride Agenda,Y4000\nV,PEHLER BROTHERS DISTRIBUTING INC.,G2850\nSCHAEFER REALTY BROK,,F4200\nSELF,SELF/SELF,X4100\nPlayground Equip Manufacturer,Krauss Craft Inc,Y4000\nentertainment direct,Court Street Management,Y4000\nINVESTMENTS,BERDAN EQUITIES COMPANY,F2100\nBusiness Exec.,\"DCH Management Services, Inc.\",Y4000\nBECHTEL HANFORD,,Y4000\nSOZA,,F5100\nOwner,John Endries Properties Llc,Y4000\nATTORNEY,PRESSLER GROUP,K1000\nPartner,Bonadio & Co. LLP,Y4000\nWAKEFIELD WARD ASSOCIATES,,Y4000\nHotelier,Irving House at Harvard,J1200\npresident,Bayport Valve & Fitting,Y4000\nGOVT AFFAIRS,CAPITOL COUNSEL LLC,K2000\nPresident,Lozano Insurance Adjusters,F3100\nMEMBER,FELLOWSHIP OF AMERICAN COLLEGE OF HEAL,Y4000\nBOOKKEEPER,LAREDO INSURANCE AGENCY,F3100\nChairman,Independent Construction Co,B1500\nLITTLE ROCK ATHLETIC CLUB,,G5800\nMINISTER,FIRST BAPTIST CHURCH OF ARLINGTON,X7000\nREAL ESTATE,PREMIER PROPIERTIES,F4000\nCpa,Harriet L Earnest Cp,Y4000\nExecutive Vice Presi,SONY BMG Music Entertainment,C2600\nINVESTOR,PENSON PROPERTIES INC.,F2200\nCEO,SEVILLE CLARRIN/CEO,M4100\nTELEC ASSOCIATES LIM,,Y4000\nKOLL,,F2100\nSTRUEVER BROS ECCL & RUISE INC,,B2000\nstudent,\"student'\",Y4000\nAUTO DEALER,AUTONATION INC.,T2300\nCLARKS VENTURES,,F2500\nJ & D Corvette,,Y4000\nPORTLAND CEMENT ASSOC,,B1000\nReal Estate Broker,Century 21 AAA North,F4200\nPRESIDENT,GITTINS & ASSOCIATES INC.,Y4000\nERWIN CAPITAL INC.,,F4100\nCAROLINA LEGAL ASSISTANCE,,Y4000\n* BEST EFFORT *,*BEST EFFORT*,H1120\nBRE PROPERTIES INC,,F4000\nWHEELING NATL HERITAGE,,Y4000\nLANIER FORD SHAVER & P,,K1000\nManagement Consultant,Carney Continuity Group Inc,Y4000\nDeveloper,\"Royal Am. Development, Inc.\",Y4000\nATTORNEY,ALFORD & KALIL P.A.,K1100\nChairman and CEO,\"Dole Food Company, Incorporate\",A1400\nCOVINGTON & BURLING,,D5000\nPRESIDENT,PACIFIC UNIVERSITY,J1200\nPLUMBER - VICE PRESI,S & J INDUSTRIAL,Y4000\nBulletin of the Atomic Scientists,,Y4000\nCHIEF ACADEMIC OFFIC,OXINE UNIVERSITY OF AMERICA,H5100\nENGINEER,INNOFCEX INC.,Y4000\nPRESIDENT/CEO,ALLIANCE FOR BIKING & WALKING,J9000\nCHAIRMAN & CEO,CENTIMARK CORP,B3000\nMATHEMATICIAN,NIH,Z9500\nHEALTHCARE,UNITED HEALTHCARE,H3700\nLAWYER,BOGARDUS & SCOTT,Y4000\nRecruiter,\"SPG, Inc.\",Y4000\nNURSE,OCHSNER HEALTH SYSTEM,H2100\nTRANSPORTATION,STD ENTINC,Y4000\nOwner and CEO,McCormack Communications,C1100\nCOMMACK ARENA MARKETING INC,,\nVeterinarian,self,A4500\nACCOUNT MANAGEMEN,ZENERGY MARKETING,E1000\nEpidemiologist,Self,J7400\nVP,AMERICAN RESORATION,Y4000\nBUSINESS OWNER,COTTONWOOD PROPERTIES,F4100\nPATHOLOGIST,LANDER VALLEY MED CTR,H1130\nKEEWIN REAL PROP COMP,,Y4000\nPHYSICIAN,MERCY HEALTH SYSTEM,J1100\nPresident,Self-Employed,M2250\n\"VP, SPECIAL PROJECT\",CHEVRON PRODUCTS COMPANY,E1110\nStudent,University of Maryland,J7400\nManager,Van Eck Associates Corp,Y4000\nPHYSICIAN,A.M.G.,F4000\nAttorney,Tilton & Rosebaum,J1200\nASSOCIATE,DEUTSCHE BANK,F1100\nInnkeeper,self,J1200\nINSURANCE ADJUSTER,PUBLIC ADJUSTMENT GROUP,Y4000\nEmergency Physician,St Francis Hosp ED,H1100\nSENIOR VI,MILLROSE CONSULTANTS INC.,Y4000\nAttorney,Epstein Becker,K1000\nPRES.,BNSF RAILWAY,T5100\nENTERTAINMENT MANAGER,SELF EMPLOYED,Y4000\nV,CORPORATE COMMUNICATIONS ALLIANCE,Y4000\nMEXICALY FOOD PRODUCE,,A1400\nFINANCIAL ADVISOR,SELF EMPLOYEED,Z9500\nSALES,ARIZONA AIRCRAFT INC,Y4000\nPortfolio Manager/Pa,\"Gardner, Russo and Gardner\",F2300\nSECRETARY,NY PRESS ASSOCIATION,Y4000\nSUBCOMMITTEE STAFF DIRE,U.S. SENATE,X3000\nOPTIMUM WINDOW MFG,,Y4000\nLINN LAW OFFICE,,K1000\nFAIRCHILD SPACE & DEF,,D2000\nRES. & MODELING,NONE,Y4000\nCEO,St Cloud Federal CU,F1300\nResearch Asst,UALR,Y4000\nAntique Dealer,Designer Corner,Y4000\nCAROLINA BUILDERS,,J1100\nCHAI,CARLILE TRANSPORTATION SYSTEMS,T0000\nPilot,Hal Turner,Y4000\nBUSINESS OWNER,\"TRIMED, INC./BUSINESS OWNER\",Y4000\nPARTNER,HOLLAND & KNIGHT LLP,B1000\nSENIOR RESEARCH ASSOCIATE,LTG ASSOCIATES,Z9500\nFounder,Ambrosia,Y4000\nVintner,Vineyard 29,G2820\nPresident,Trezevant Realty Corp,F4200\nREAL,UTAH PROPERTY DEVELOPMENT INC.,F4100\nARESTECH CHEM,,M1500\nMERCANTILE BANCORP INC,,F1100\nSHELBY WILLIAMS CO,,M4100\nSecurity Guard,Moore Security,Y4000\nTRULY ALL SERVICES INC,,Y4000\nLEVIN SHEA PFEFFER,,K1000\nFOUNDATION EXECUTIVE,SKADDEN FOUNDATION,K1200\nHUGHES AIRCRAFT,,J6200\nAttorney,\"stokes lazarus & carmichael, llp\",K1000\npresident,\"Barbour, Griffith, & Rogers\",K2000\nATTORNEY,DEUTSCHLEVY & ENGELCH,K1000\nPHYSICIAN,RADIOLOGY ASSOC. OF HOLLYWOOD,J9000\nSVP & DIRECTOR-CANAA,RETIRED,X1200\nORTHOPED,KS JOINT & SPINE INSTITUTE,Y4000\nPresident,Edge Product Dev Corp,Y4000\nMARK TWAIN ST JOSEPH HOSPITAL,,H2100\nAttorney,Square 1 Bank,F1000\nMORTGAGE BAN,POWER EXPRESS MORTGAGE,F4600\nExecutive,I.B.M.,C5100\nSALES EXECUTIVE,ASSA ABLOY/SALES EXECUTIVE,Y4000\nATTORNEY,\"BELLANCA, BEATTIE & DELISLIE\",Y4000\nCONSULTANT,Thomas Husband & Assoc,K2000\nDentist,MAITRE & MAITRE,H1400\nCONTRACTOR,G C WINTERS & ASSOC.,Y4000\nPROJECT MANAGER,CITY OF OAKLAND,X3000\nPublic Affairs,Holland And Knight,J1200\nEmergency Physician,Covenant Hlth Care,H1100\n\"MIGUEL'S HAIR SALO\",,Y4000\nInvest. Banker,Edward D. Jones & Co.,F2100\n\"SVP, West Coast Operations\",\"Caremark, LLC\",G4900\nEMERGENCY PHYSICIAN,INFINITY HEALTHCARE,H1100\nABSTRACTOR,VIDRINE & VIDRINE,Y4000\nREAL ESTATE DEVELPER,SELF EMPLOYED,F4100\nCFO,Microsoft,C5120\nOwner,Rosemont Press,H1130\nLawyer,\"Dalton and Finegold, LLP\",K1000\nCHIEF INNOVATION OFFICER,US AID,Z9500\nSUPREME EVALUATION INC.,,Y4000\nAttorney,\"Haynes and Boone, L.L.P.\",K1000\nAttorney,The Vanguard Group,F2100\nRENTSCHLERS INC,,Y4000\nPhysician,Advanced Dermatology PA,H1130\nANESTHESIOLOGIST,[Information Requested],J1200\nPRESIDENT,PATRIOT SOLUTIONS INTL,Y4000\nINVESTMENT ADVI,JENNISON ASSOCIATES,F2100\n\"Medical Director, Physician\",Hospice of Kitsap County,H2200\nPHARMACIST INTERN,CVS PHARMACY,G4900\nTUXEDO DENTAL PC,,H1400\nPresident,True Temp Heating & Air Conditi,B3400\nEXXON ENERGY LTD,,E1110\nCEO,Auto-Chlor,G2900\nTEACH,CHARLESTON COUNTY SCHOOL DIST,X3500\nCOO,NORTHWEST COMMUNITY HEALTHCARE,H2100\nInformation Requeste,Prisma Capital Partners,F0000\nCorp. Secretary,Watkins Investments,Y4000\nPresident,Truman State University,J7400\nPRES,ROBERT PHARR & ASSOCIATES INC.,Y4000\nBOOKKEEPER,POLLARD CONSTRUCTION,B1500\nAEROSPACE EXECUTIVE,VIRGIN GALACTIC,T1200\nRESTAURATEUR,CU LIBERTYVILLE LLC,Y4000\nBANKER,ABN AMRO ASIA LTD.,Y4000\nWILTON SCHOOL DISTRICT,,X3500\nPRESIDENT,CASCADE GENERAL INC.,T6100\nAttorney,\"Krause, Kalfayan, Benink & Slavens\",K1000\nTHE LOMAX COMPANY,,H1100\nIR,Mindful Properties,F4000\nINVESTOR,GART COMPANIES,F4100\nCOO AND EXECUTIVE,CROPLIFE AMERICA,A4100\nCONTRACTOR,GAINES AND CO.,B1000\nBAR OWNER,SELF EMPLOYED,G2900\nAttorney,Martin & Eskelson,K1000\nOrganizer,MoveOnPAC.org,J1200\nUTILITY CONSULTANT,HDR INC,B4000\nCommunications Direc,\"OAR of Fairfax, Inc.\",Y4000\nDATABASE CONSULTANT / MUSICIAN / PHOTO,SELF,Z9500\nMANUFACTURED HOMES,SELF-EMPLOYED,B2000\nVICE PRESIDENT,H2H INC.,Y4000\nPuppet Workshop Mana,Jim Henson Company,C2300\nPROJECT ENGINEER,COPPER VALLEY ELECTRIC ASSOCIATION,B3200\nFamily Resource,Nyack Schools,Y4000\nEngineer,\"AMEC Earth & Environmental, Inc\",B4000\nAttorney,Koresko & Associates,K1000\nCOE MFG COMPANY,,Y4000\nECOMMERCE ENTREPRENEUR,HABCO SERVICES GROUP LLC,Y4000\nPharmaceutical Regul,Self,H4300\nPRESIDENT SE REGION,AT&T,C4100\nSALESMAN,MMREIFF,Y4000\nRancher/Businesswoma,Self,A3000\nOWNER/WHOLESALE DISTRIBUTION,SELF-TITAN WHOLESALE INC.,Y4000\nAllergist,Allergy and Asthma Center,H1130\nRELIABLE CONTRACTING,,B0500\n\"Director, Federal Gov't Affairs\",\"Medco Health Solutions, Inc\",H3700\nCHEMIST,SCHERING PLOUGH,J1200\nPHILANPHROPIST,NOT EMPLOYED,Y1000\nSYSTEM ADMINISTRATOR,\"NEUSTAR, INC.\",C5140\nCOMMERCIAL REAL ESTATE,LANDQUEST,Y4000\nEMERGENCY MEDICAL SERVICE ASSOC,,H1130\nMgr Web Architecture,Aurora Healthcare,J1200\nbar owner,Victor V LLC,Y4000\nK M P G,,F5100\nORTHOPAEDIC SURGEON,FREDERICK MEMORIAL HOSPITAL,H1130\nPhysician,\"Texas Children's Hospital\",H1100\nPRODUCTION D,ENTERTAINMENT PARTNERS,Y4000\nICME INC,,Y4000\nPRESIDENT,\"CORNWALL CAPITAL, INC.\",F0000\nODIN PARTNERS LP,,F2100\nMANAGE,SELF,G0000\nattorney,Grisham & Lawless,K1000\nEXECUTIVE,CPI SECURITY SYSTEMS,Y4000\nMIDWEST HAULERS,,Y4000\nTHE GALBREATH COMPANY INC,,Y4000\nCHIEF ARCHITECT/ENGINEER,\"DISA, WASHINGTON DC\",Y4000\nVICE PRESIDENT,THE SHERIDAN CORP.,Y4000\nPHYSICIAN,DEPARTMENT VETERANS/PHYSICIAN,H1100\nLegislative counsel,PMA Group,G5270\nDEALER OF COLLECTIBLES,SELF-EMPLOYED,G0000\nL F JENNINGS,,B1000\nRegulatory Manager,Exelon Corp,E1600\nLEISURE CENTERS INC,,F4200\nRepublican National Comm./Republica,,Z5100\nBUSINESS MANAGER,WAKEFIELD MNGT INC,Y4000\nAttorney,Hallisey & Johnson,K1000\nSOFTWARE ENGINEER,CONVERGYS,C5130\nGovt Relations,Livingston group,K2000\nHURLBUT GONZALEZ HURLBUT & VALDEZ,,Y4000\nPRESIDENT,BONANZA,JE300\nJOHNSON & ASSOCIATES,GRIFFIN,K2000\n\"ST JOSEPH'S HEALTH CORP\",,H2000\nSWT INTERIORS,,J7400\nOFFICE MANAGER,STANFORD ASSOCIATES,Y4000\nVenture Capitalist,Foundry Group,F2500\nMIKE ANDERSON PONTIAC GMC,,T2300\nPublisher,Film Score Monthly,C1100\nGEOCAPITAL LLC,,Y4000\nREAL ESTATE DEVELOPER,CLYDE HOLLAND PARTNERS,Y4000\nCLARK CONSTRUCTION GROUP,,B1500\nService Oriented,Self employed,Y4000\nself -employed Exectuive,self,F2300\n\"SUSAN BROWN'S\",,T9300\n\"HECHT'S DEPARTMENT STORE\",,G4300\nVice President,\"Orchard, Hiltz & McCliment, Inc.\",B4000\nMARICOPA COUNTY SCH,,Y4000\nVICE-PRESIDENT,UNION ELECTRIC STEEL,M2100\nFUNDRAISER,RICE UNIVERSITY/FUNDRAISER,H5100\nREGIONAL VP,\"U S HEALTHWORKS, INC\",H3200\nH,\"METRO GOV'T OF NASHVILLE-DAVIDSON\",X3000\nFINANCIAL ADVISOR,Museum of S/I,X4200\nROBINSON COLE,,K1000\nChief Technology Off,Vasonova Inc,Y4000\nPRESIDENT/CEO,\"HUNGRY HOWIE'S PIZZA INC.\",G2900\nCHAIRMAN,AMERICAN FINANCIAL GROUP,F3100\nCEO & DIRECTOR,SAKER AVIATION,Y4000\nOwner Operator,Versailles Salon & Day Spa,Y4000\nACADIA HOSPITAL,,H1710\nC & C FORD SALES INC,,T2300\nPHYSICIAN,IQH,Y4000\nPHILLIPS MEDICAL SYSTEMS,,Y4000\nLAWYER,NESENOFF & MILTENBERG,Y4000\nPresident,\"Shingobee Builders, Inc\",B0500\nATTORNEY,MCKAY UNDERWELL,Z9500\nPHYSICIAN,NLM,Y4000\nCons LOB Claim,The Hartford,F3100\nVP,Lundquist Nethercuh & Griles,K2000\nDirector of Research,SC Research Authority,Y4000\nAUTOMOTIVE,RADLEY ACURA,Y4000\nBIOPURE CORPORATION,,H4300\nOWNER/SOFTWARE DEVELOPMENT FIRM,HERLICK DATA SYSTEMS,Y4000\nCHIEF,JENNIE STUART MEDICAL CENTER,H2100\nACCOUNTING,BCP TECHNICAL SERVICES INC,Y4000\nAdvertising Agency,\"Bobby King Associates, Inc.\",Y4000\nATTORNEY,BARON & BUDD PC,J7400\nMember,EDX Wireless,Y4000\nDeaconess,Beth Isreal deaconess Med Ctr,H2100\nOperations Manager,Latitudes International,Y4000\nRetired,Medical Billing Cons,X1200\nVice President/ Gen Manager,\"Triad Electric & Controls, Inc\",B0500\nLEED CONSULTANT,SELF-EMPLOYED,Y4000\nWILDER MAHOOD & CRENNEY,,J7400\nBUSINESSM,R.C. WHITNER & ASSOCIATES,K2000\nA A DRYWALL CORP,,\nSALESMAN,EPIX CO.,Y4000\nOUTDOOR AMUSEMENTS,,Y4000\nPresident,St Francis Medical Center,H2100\nClassroom Teacher,GRAND RAPIDS CITY SCHOOL DISTR,L1300\nBARBER BANASZYNSKI AND ASSOCIATES,,Y4000\nEXECUTIVE,THALLE CONSTRUCTION,B1500\nEXECUTI,FEDERATED DEPARTMENT STORES,G4300\nExecutive,Legacy Redevelopment Corp,F1000\nVP,CPC,B5100\nREAL ESTATE,VINTAGE REALTY,F4200\nScientist and dog breede,Not employed,X1200\nCHIEF MEDICAL OFFICE,KALEIDA HEALTH,H2100\nFRESH INTERNATIONAL INC.,,Y4000\nMotor Mechanic,Bay Crane Service,Y4000\n\"SVP, PRODUCTION\",TURNER BROADCASTING SYSTEM,C2000\nBUSINESS OWNER,CTS ADVANTAGE LOGISTICS,C5130\nREALTOR,HELLER REALTY,Y4000\nSUNITI MED CORP,,H1100\nCPA,\"THOMAS A. KOPP, CPA\",E1610\nPresident,Wright-Wisner Distributing Corp,G2850\nPsychol Training,Didi Hirsch CMHC,Y4000\nBusiness Owner,Emmi,Y4000\nCOMMERCIAL REAL ESTA,\"BOWDEN PROPERTIES, L.L.C.\",F4000\nConsultant,Comstock Consulting Group,Y4000\nProgrammer,Massbay Community Colleg,H5100\nPOLITICIAN,HOUSE OF REPRESENTATIVES/POLITICIAN,X3000\nUnemployed,Unemployed,E1120\nC.O.O.,PATERNO WINES INTERNATIONAL,G2820\nMANAGER,H.L.P. INDUSTRIES,Y4000\nREAL ESTATE,LEVEY & COMPANY,F4000\nCHAIRMAN,DANCONA,Y4000\nOWNE,\"PARTNER'S RENTAL PURCHASES INC\",G5300\nLAKESIDE HIGH SCHOOL,,H5100\nDESERT EAGLE DISTR,,G2850\nPM,FORUM ASSET MANAGEMENT,Y4000\nHealth Care Planner,SELF EMPLOYED,G0000\nVICE PRESIDENT,ROBISON INTERNATIONAL INC,K2000\nChief Executive Offi,Athenian Private Client Group,Y4000\nPORTFOLIO,WAGNER INVESTMENTS MGMT.,F2100\nSelf-Employed,Bickman Farms,A1000\nPARHAM & ASSOCIATES,,Y4000\nTECHNOLOGY,BELIEVE.IN,Z9500\nPRESIDENT HEALTH CARE GRO,BRISTOL-MYERS SQUIBB CO.,H4300\nDoctor,Cardio Consultants,H1130\nPRE,INDIANA MOTOR TRUCK ASSOCIATION,T3100\n\"Vice President, Business Development\",Northrop Grumman Space Technology,D5000\nTeacher,Temple Ohabei Shalom,J1200\nBARROWS COAL CO,,E1210\nWAGNER STOTT MERDATOR,,F2100\nOwner,\"DR.Carlson's Office\",Y4000\nCONSULTANT,BRANDSPARK,Y4000\nRADIO & T. V. COMMERC,SELF-EMPLOYED,C2100\nforester,Lone Rock Timber Co,A5000\nOncologist,Minnesota Oncology-Hematology,H1130\nSocial Worker,Serinity Hospice,H2200\nStudent/TA,UW Madison,Z9500\nVice President,Phelps Dodge Corporation,E1220\nADVOCATE,TAUZIN CONSULTANTS,K2000\nConsultant,Smith Martin & Boyette,K1000\nMental health Counselor,Self-employed,H3800\nRestaurateur,Outback Steakhouse Durham #3448,G2900\nFOREST HILL CHECK CASHING CO,,Y4000\nPHARMAIST,CLINIC PHARMACY INC,G4900\nREAL ESTATE DEVELOPER,\"EMS ENTERPRISES, INC.\",F4000\n28TH ASSY DISTR CALIF,,Y4000\nChiropractor,\"Hammond Chiropractic Life Center, Inc.\",H1500\nAttorney,\"Stein, Mitchell, & Mezines\",K1000\nVP ACCOUNT MANAGEMENT,Advanced PCS,H4400\nDirector Of Strategi,Riverside Research,Y4000\nIT SERVICES,HP,C5100\nRCP COMPANY,,B5100\nCONSULTANT,R2 CONSULTING,G5210\nROXBOROUGH-MANAUNK FSB,,Y4000\nVP COMMERCIAL PRINTING PAPER & PULP,ABIBOW US INC. D/B/A RESOLUTE FOREST P,A5200\nVice President State GovtAffairs,Altria,A1300\nMALOUF INTERESTS,,F4000\nResearch Behavioral,Treatment Research Institute,Y4000\nASSISTANT CON,LOWE ENTERPRISES INC.,F4200\nGov Relations,Smith Dawson & Andrews,K2000\nFOUNDER,PIMA MEDICAL INSTITUTE,H5300\nOwner,Sanders Consulting LLC,Y4000\nSHAW COMPANY,,Y4000\nDirector,Global Government Affairs,Y4000\nPRESIDENT,JC TURNER & ASSOC.,Y4000\nMECO INTERNATIONAL INC,,E1210\nBLA,,B4000\nRESEARCH SCIENTIST,\"MILLER INSTITUTE, UC BERKELEY\",Y4000\nResearcher,DUKE,Y4000\nSELF EMPLOYED / OWNER/PRESIDENT,,G0000\nAttorney,\"Hobbs, Straus, Dean and Walker\",K1000\nPRESIDENT,\"STANBERRY INSURANCE AGENCY, INC.\",F3100\n\"CARTEL III, LLC\",,Y4000\nGOVERNOR JIM GERINGER,,X3000\nConsulting,North Star Advisors,Y4000\nCOOSA VALLEY EQUINE CTR,,Y4000\nGATLIN CORPORATION,,Y4000\nPHYSICIAN,\"JACOBS, RAMIREZ AND FREEMAN ALLERGY\",H1100\nDirector Public Affairs,TWC,Y4000\nLOBBYIST,\"O'HARA LINDSAY & ASSOCIATES\",K2000\nAttorney,Bracewell and Giuliani,J1200\nProduction,Six Degrees,Y4000\nDealership Employee,Astorg Motor Co,T2300\nLobbyist,Polsinelli Shalton Welte Suelthaus,K2000\nAIRCRAFT,L-3 COM. VERTEX AEROSPACE,Y4000\nSMALL BUSINESS DEVELOPMEN,,Y4000\nPresident,Cenergy Companies,E1000\nMANAGER,RAKS BUILDING SUPPLY,A5000\n\"DONALDSON, LUFKIN, & JENRETTE\",,F2100\nPHYSICIAN,WELLSPAN HEALTHCARE,Y4000\nAttorney,Carol Herndon Esq PC,Y4000\nOwner,Natural Gas Processing,E1100\nInformation Requeste,Health Fusion,H3000\nFACULTY,SEATTLE COMMUNITY COLLEGE,L1300\nLOBBYIST,WINNING STRATEGIES WASHINGTON,Z9500\nUNEMPLOYED,UNEMPLOYED,K2100\nOIL ROYALTIES,,E1100\nDORSER INVESTMENTS,,Y4000\nOIL AND GAS,DEVON ENERGY,E1150\nCeo,Kair In Home Social Services Inc,Y4000\nGESCOM INC,,Y4000\nTREASURER,STATE COLLEGE PRESBYTERIAN CHURCH,X7000\nPathologist,Thomas Jefferson Univ Hosp,H1130\nGLOBAL PRODUCT DEVELOP,STATE STREET,F2000\nPHYSICIAN-CARDIOLOGIST,HCMC,Y4000\nCEO,FOREIGN POLICY GROUP,Y4000\nC D & L,,Y4000\nMAXIMA INC,,C5130\nCOLIN ANDERSON CENTER,,Y4000\nASPHALT MAINTENANCE,ASPHALT MEDICS,B5100\nSENIOR RESEARCH SCHOLAR,STANFORD UNIVERSITY,H5100\nAMERICAN TAUBERRY ASSOC,,Y4000\nTHE HAWTHORUE GROOP INC,,Y4000\nSELF-EMPLOYED,WENTWORTH INDUSTRIES,Z9500\nMANAGEM,ORGANIC GROWTH PARTNERS LLC,Y4000\nATTORNEY,DEPT OF JUSTICE/ OFFICE OF US TRUST,Z9500\nVP,UNITED DISTRIBUTORS,G2850\nSR VICE PRESIDENT & COO,ONCOR ELECTRIC DELIVERY,E1620\nMARKETING MEDIC,KIPANY PRODUCTIONS LTD,J1100\nDirector,\"National Bankshares, Inc.\",F1100\nFUNDRAISER,,J7150\nMAY ENTERPRISES,,K1000\nSPARROW JOHNSON AND UR,,F5100\nCHAIRMAN,CONTINENTAL COLLOIDS INC.,A2000\nOwner,Fritz-Pak Corporation,Y4000\nPRESIDENT OF TANGS INC.,TANGS INC.,Y4000\nSENIOR VP,CREST HOLLOW COUNTRY CLUB,G6100\nOwner,Assured Credit Services,Y4000\nPRESIDENT,\"OVERLAND CONSTRUCTORS, INC.\",B0500\n\"VP OF COMMUNICATIONS, SUSTAINABILITY &\",PLUM CREEK,A5000\nPARTNER,BANNER PUBLIC AFFAIRS,Y4000\nYAKIMA FEDERAL S&L,,F1200\nSMALL BUSINESSMAN,SELF EMPLOYEE FASTLUBE INCI,G0000\nATTORNEY,\"ORRICK & ERSKINE, LLP\",Y4000\n\"SHEA, PAIGE, ROGAL INC\",,K1000\nALLERGIST LTD,,J7400\nProfessor of Political Science,Lone Star College,H5100\nPARKER HUDSON RAINER &,,K1000\nCHAIRMAN AND FOU,CINTAS CORPORATION,M3100\nChief Executive Officer,Banks Contracting,F1000\nCPA,Cristobal & Company,F5100\nPSI RESOURCES INC,,Y4000\nNATIONAL INSTITUTE FOR PUBLIC POLIC,,X3000\nGOVE,\"KAUFMAN,PATTEE,BRANSTAD,MILLER\",K2000\nMEDICAL PRODUCT DEVELOPMENT,SELF EMPLOYED,G0000\nEngineer,\"Austin Engineering Company, Inc.\",B4400\nJOHNSON & HIGGINS OF PA,,F3100\nATTORNEY,\"CHRISTENSEN, GLASER, FINK, JACOBS, WEI\",J1200\nSALES MANAGER,CLUBS CHOICE FUNDRAISING,Y4000\nPHYSICIAN,SANFORD WORTHINGTON MEDICAL CENTER,H2100\nMINE MANAGER,ALLIANCE COAL LLC/WARRIOR MINE,E1210\nPrint Buyer,Cengage Learning,Y4000\nRESEARCHER,ADVOCATES FOR CHILDREN AND YOUTH/RE,Y4000\nDAVIS PAINTING & DECORATING,,B3000\nAttorney,\"Briley Law, LLC\",Y4000\nOwner,Mailey Insurance At Allstate,F3100\nCAMPBELL GEORGE AND STRONG LLP,,K1000\nDIRECTOR PAYROLL ACCTG,NORFOLK SOUTHERN/DIRECTOR PAYROLL A,T5100\nPODIATRIST,COLUMBUS PODIATRIST SURGERY,Y4000\nPresident and CEO,Digital Reception Services,Y4000\nATTORNEY,PHILIPS MEDICAL SYSTEMS,Z9500\nEMERGENCY MEDICINE PHYSICIAN,EMP,H1100\nSTUDENT,STUDENT,H5200\nAgriculture,Schreiber Foods,G2000\nPRESIDENT & CEO,MAXWELL SUPPLY,B5100\nPRESIDENT,OILTANKING HOUSTON INC.,E1100\nVICE PRESIDENT,CARE CENTRIC,Y4000\n\"VICE PRESIDENT ENVIRONMENTAL, HEALTH A\",APACHE CORPORATION,E1110\nARTIST,HOLISTIC PRACTIONER,Y4000\nHistorian/Farmer,National Park Service,X3000\nPartner,JL Real Ventures LLC,Y4000\nBUCKEYE QUALITY HOME,,Y4000\nCEO,SELF-EMPLOYED,C2600\nBusiness Owner,\"Baja Pump Usa, Inc\",Y4000\nSOMMERS SCHWARTZ SILVER SCHWARTZ,,K1000\nEXECUTIVE,GOLDMAN SACHS,F2300\nCHIEF EXECURIVE,PARK NATIONAL BANK,F1100\nEXECUTIVE,BIG FOOD ENTERPISES L.L.C.,G2000\nV.P.,BATTLE CREEK HEARING SERVICES,Y4000\nhome renovator,wife,K1000\nE Q M,,Y4000\nEXECUTIVE,HQ INVESTMENTS,H0000\nDANTROS DEVELOPMENT,,Y4000\nAttorney,City of Palo Alto,Z9500\nATTORNEY,\"THE DZIVI LAW FIRM, P.C.\",K1000\nINVESTMENTS,SELF-EMPLOYED,F2500\n\"PRESIDENT AND COO, ANIMATION, YOUNG AD\",TURNER BROADCASTING SYSTEM,C2000\nOwner,Brauer Capital,Y4000\nATTORNEY,\"MCLAUGHLIN AND STERN, LLP\",Z9500\nJAMES P POOLE CLU,,F3100\nNETWORK HEALTH FINANCIAL,,F0000\nPRECISION MEDICAL INC,,H1130\nManagement Co,Self employed,G5270\nSALES EXECUTIVE,KC SOUTHERN,T5100\nReal Estate Broker,Jack Bradley Realty GMAC Real,F4200\nEconomist,Promar International,Y4000\nFLINT HILL SCHOOL,,Y4000\nPUBLIC ACCOUNTING,KPMG LLP,F5100\nISDANER & CO,,J7500\nAttorney,\"Laner, Muchin\",Z9500\nGENERAL MANAGER,FARMERS COOPERATIVE,A2000\nN/A/RETIRED PERSONAL INVESTOR,,J1100\nSTOCK BROKER,CEEVERS & CO,J7400\nINFO REQUESTED,Mountainside Orthopedic,H1130\n\"VP, SALES\",\"ENDO PHARMACEUTICALS, INC\",H4300\nCHIEF EXECUTIVE,ARCH CHEMICALS INC.,J1100\nFAMILY INDEPENDENCE AGENCY,,Y4000\nAtty/ Vice President,Wells Fargo,F1100\nPRESIDENT & CEO,BARBARA FRANKLIN ENTERPRISES,G5200\nORTHOPAEDIC SURGEON,ALABAMA ORTHOPAEDIC CLINIC,H1130\nSoftware Engineer,Thefind Inc,Z9500\nDATABASE MANAGER,SMILE TRAIN,Y4000\nGraduate Student,University of Arizona,Y1000\nEXCEL STAFFING,,G5250\nADMINISTR,INDIAN HEALTH COUNCIL INC,H0000\nORAL SU,OMS SURGERY ASSOCIATES INC.,H1400\nTISHMAN REALTY & CONSTRUCTION,,J1200\nRIVER OAKS FORD INC,,T2300\nDir-Spc Syst Site,Lockheed Martin Corporation,D2000\nC.E.O.,HASBRO INC.,M3500\nSenior Auditor,\"John Drew & Company, Inc\",Y4000\nStationery Manufacturer,Self- Small Business Owner,Y4000\nPUCKETT OIL COMPANY,,E1100\nFarmer,Gulf Seeds,Y4000\nENGINEER,NORTH AMERICAN HOANA,Y4000\nCONTRACTOR,\"J. BANICKI CONSTRUCTION, INC.\",B1500\nBELLAN LAW LLC,,Y4000\nPresident,Hofmann & Leavy,Y4000\nInvestment Banker,Allen & Co.,F2300\nAttorney,Arent Fox LLP,J1200\nREAL ESTATE DEVELOPER,STILES CORPORATION/REAL ESTATE DEVE,F4100\nDIAG,SUSQUEHANNA IMAGING ASSOCIATES,H1130\nCEO,Mansat,Y4000\nOIL & GAS LEASING,,E1100\nEXECUTIVE,\"STRATO, INC.\",Y4000\nPlumber,Herrie Plumbing & Heating,B3400\nUS Dept. of Justice,,X3200\nSCHOOL PSYCHOLOGIST,NORTHWEST AREA EDUCATION AGENCY,Y4000\nMANAGER,FIRST HOME MORTGAGE,F4600\nExecutive Director,Native American Contractors,J7500\nICHA COLLEGE,,H5100\nOWNER,\"A. FRAZIER & ASSOCIATES, LLC\",Y4000\nAGENT,TPS INSURANCE,F3100\nPresident,Tru Clean Inc.,Y4000\nPOLICE OFFICER,EMORY,H5100\nCO-OWNER,PALM FACILITY SERVICES,Y4000\nComputer Specialist,Internal Revenue Service,X3000\nENGINEER,COMPUTER SCIENCES CO,C5130\nC.E.O.,WERNER ELECTRIC SUPPLY CO.,B5500\n\"LP EVANS CO'S\",,T2310\nAttorney,\"Stowell, Zeilenga & Ruth, L.L.P.\",K1000\nPRESIDENT,\"GATEWAY BROKERS, INC.\",F0000\nDIAMOND FABRICATORS INC,,Y4000\nEXECUTIVE VI,PRIMETEC INTERNATIONAL,C4200\nANGELES CORPORATION,,F4100\n\"SVP, INDUSTRIAL RELATIONS\",WARNER BROS.,C2000\nPROGRAMMER,\"FORCE 3, INC\",Z9500\nSCHWARTZ & ASSOC,,F4600\nFOUNDER,BEGNAUD MANUFACTURING,Y4000\nAgent,crr,F4000\nC.E.O.,Synergetics,Y4000\nPENTA ADVISORY SERVICES LLC,,Y4000\nANESTHESIOLO,FULLERTON ANESTH ASSOC,H1130\nGUILLOU & ASSOC INC,,Y4000\nAttorney,Hammond Law Group,K1000\nRecruitment Coordina,Tennessee Health Management,H2200\nHITCHCOCK AUTOMOTIVE RESO,,T2300\nKAL KRISHNAN & ASSOCIATES,,B4000\nPresident/C.E.O.,Aircraft Spruce,T1200\nFAMOUS MUSIC COMPANY,,Y4000\nSALES SPECIALIST,\"LOWE'S\",Y4000\nCEO,Windber Medical Center,H2100\nretired,Mellott Company,B5100\nENGINEER,WESTINGHOUSE ELECTRIC,E1320\nVP MFG. ENGINEERING,LEAR CORPORATION,T2200\nDOMESTIC ENGINEER,SELF EMPLOYED,F4500\nOWNER,J & C LUMBER,B5200\nILER & WALE INSURANCE INC,,F3100\nWEST CENTRAL COOPERATIVE,,A6000\nPHYSICIAN-UROLOGIST,,H1130\nDELL SMITH CO,,K2000\nAttorney,\"Jeffer, Mangels, Butler & Marmaro\",K1000\nAg Lender,Great Plains Ag Credit,A3300\nRN,SEQUOIA HOSP ER,J7400\nregional director,Dept of Health and Human Resources,X3000\nINSURANCE AGENT,LAWRENCE & BROWNLEE INSURANCE,Y4000\nPresident,Pecan Deluxe Candy Company,A2000\nChairman,Dow Lohnes LLC,K1000\n\"STEVEN CAPLAN'S INCONCEIVABLE ENT\",,Y4000\nATTORNEY,\"LAMOTHE LAW FIRM, LLC\",K1000\nManager,Internal Engine Parts,B4400\nMEDICAL BILLER,\"WM. F. REYNOLDS, MD\",Z9500\nN/A,Information Requested,G0000\nGovernment Relations,The Johnson Group,C2300\nsocial worker,state of Michigan,J1200\nINTERNATIONAL ALUMINUM CORP.,,M2250\nExecutive Director,REPUBLICAN JEWISH COALITION,J1100\nPresident,Public Education Network,H5000\nDEEP SOUTH FIN SERVICE,,F1400\nPresident,Petersen Farm,G1200\nEXECUTIVE,CHANNEL LOGISTICS LLC,T6000\nCONSULTANT,TOWERS PERRIN FORSTER-CROSBY INC,Y4000\nContracting,Dial One Wathen Inc.,Y4000\nPRESIDENT,CARGO-MASTER,T3100\nWNET THIRTEEN,,C2100\nRENTAL PROPERTY,MIMSCO L.L.C.,Y4000\nPARTNER/VP,MISSION CONTROL,C1300\nBusiness Owner,Cynthia Kay & CO,Y4000\nOWNER,MILESTONE SERVICES,Y4000\nCONSULTING ENG,PARSONS BRINCKERHOFF,B4000\nC.E.O.,DELTA MICROWAVE INC.,Y4000\nCONGARCE RIVER LTD PARTNERSHIP,,Y4000\nFinance,GOLDEN RULE FINANCIAL,F3100\nLiuna,,LB100\nTransit Operator,Oahu Transit Service,Y4000\nRAILROAD EXECUTIVE,TACOMA RAIL,T5100\nPhysician,Northwestern U,H5100\nEXECUTIVE,\"AA&M, INC\",Y4000\n\"FURMAN, SELZ L L C\",,F2100\nOWNER,STEWARD STEEL,M2100\nManager,Green Sky Seattle LLC,Y4000\nSOLUTIONS ENGINEERING CORP,,B4400\nHOOF TRIMMER,SELF-EMPLOYED,Y4000\nPRESIDENT,TEAM LINK,Y4000\nA PLUS BENEFITS INC,,G5270\nHOUSEWIFE,,M2250\nBUSINESS EXECUTIVE,SELF EMPLOYED,Z9500\nPRESIDENT & CEO,WETA TV/ FM,J1200\nEXECUTIVE,LUCAS OIL PRODUCTS INC.,E1100\nExecutive,The Baron Group,Y4000\nHARRIS INTERVIEWIN,,Y4000\nPRESIDENT,HELICOPTER ASSOCIATION INTERNATIONAL,T1200\nMAYOR,CITY OF SAN BERNARDINO,X3000\nTHE NEVIN GROUP,,Y4000\nR S G PRODUCTS,,A5000\nSENIOR ADVISOR,\"MANATT, PHELPS & PHILLIPS, LLC\",K1000\nExecutive,Thomas Tools Inc.,M5100\nLEAFLAND ASSOCIATES INC,,J5100\nEXECUTIVE,JPMORGAN CHASE & COMPANY,F1100\nBUSINESS ANALYST,BIOGEN IDEC,J1200\n\"SAUNDERS, KARP, & MEGRUE\",,F2600\nAttorney,\"Richard Jerome, Pc\",Y4000\nOwner,Ammon Painting Co,B3000\nTELECOMMUNICATIONS,CURRENT ANALYSIS,Y4000\nPresident & CEO,Pontiac Osteopathic Hospital,H2100\nGeneral Surgeon,Rio Grande Surgical Assn,Y4000\nOWNER,ASAP TITLE AGENCY,F4300\nCommunity Activist,N/A,F1100\nTechnical Writer,\"Truly Nolen of America, Inc\",G5700\nREPUBLIC GROUP INCORPORATED,,Y4000\nMARKETING,DREXEL HAMILTON,Y4000\nBUSINESS,ROBINSON BROWN INVESTMENTS,Y4000\nGRAPHIC DESIGNER,NOT EMPLOYED,G5240\nRealtor,Lovejoy Real Estate,F4000\nCORNELL & CO,,B1000\nDERMATOLOGIST,GARDENS DERMATOLOGY,H1130\nReal Estate,Cedar Creek,F4000\nExecutive,Haynes Furniture,M4100\nCHAIRMAN,BEAMAN AUTOMATIVES,J6200\n\"Littler Mendelson, PC\",,K1200\nAttorney,S N R,Y4000\nFIRST OAKBROOK BANCSHARES INC,,J1100\nPM,Cajun Industries LLC,B1000\nCEO,MCASB - Division of CPM FCU,F1300\nAdministrative,Big South Fork National Park Service,Y4000\nERIN WALKER,NONE,Y4000\nattorney,\"Hall, David and Joseph, PA\",K1000\nEXECUTIVE,CV INDUSTRIES,Y4000\nMCGUIRE WOODS BATTHE & BOOTHE,,K1000\nLAWYER,HINKLEY ALLEN & SNYDER LLP,Y4000\nChairman,John Akridge Cos.,Y4000\nATTORYNEY,PACHULSKI STANC,K1000\nPUBLIC RE,VOX POPULI COMMUNICATIONS,Y4000\nlaw Professor,Columbia University,J1200\nFARRIS MATHEWS,,K1000\nOHIO VALLEY TRUST,,Y4000\nPRESIDENT,OHIO THRIFT INC,Y4000\nCON EL ELECTRIC INC,,B3200\nMARIETTA DERMATOLOGY ASSOC,,H1130\nBREGA WINTERS,,Y4000\nChief Executive Offi,University Hospitals Case Medical Cent,H2100\nDIRECTOR,SEARS ROEBUCK,G4300\nOwner,\"Paul's TV\",G4200\nChairman Bd.,U-Line Corp,G5210\nPRINCIPAL,LUERY ALESIA & CO,Y4000\nMEDICAL RESEARCH PHYS,SELF-EMPLOYED,Y4000\nASST. BUSN. MNGR. (UNION REP.),BOILERMAKERS LOCAL 627,LM100\nPresident & Chief Executive Officer,Southcoast Hospitals Group,H2100\nPRESIDENT,MISTER SWEEPER,G1200\nOwner,\"Glick Investments, LLC\",F7000\nPRESIDENT,C.L.S.S. HOLDINGS L.L.C,Y4000\nINS. & ESTATE PLANNING,PURICH & ASSOCIATES,Y4000\nMIDWEST VALVE & FITTING,,M5000\nPresident,Wexler & Walker Public Policy,K2000\nCONSULTANT,JOE SLADE WHITE & CO,Y4000\nAttorney,Schering-Plough Corporation,H4300\nCIO,PQ CORPORATION,M1000\nSM CONSULTING,,Y4000\nC.E.O.,HILL DERMACEUTICALS,H4300\nDirector of Computer,Bryn Mawr College,H5100\nCHAMBER MEMBER,,Y4000\nAttorney,Quinn Emanuel LLP,K1100\nEOD,USAF,X5000\nPACKER,GROWER,A1400\nMortgage Banker,Pacific Southwest Realty Services,F4200\nBUTSAVAGE & ASSOC,,K1000\nTREASURER AND SECRET,WESTERN DEVCON,Y4000\nDAVENPORT LAW FIRM,,K1000\nAUTO DEALER,G. M. C. MOTORS INC.,T2300\nAttorney,State of Nc,X3000\nAttorney,\"Morgan & Macy, Ltd.\",Z9500\nAttorney,The Trigen Companies,Y4000\nOWNER,TLC VETERINARY CTR.,A4500\nEVERYTHING YOGURT,,G2000\nPresident,United Heating and Cooling,B3400\nCEO,BNY MELLON,F1100\nUNIVERSAL CONSTRUCTION CO,,B1000\nExecutive,InfoUSA,G5220\nInformation Requested,Indiana House of Representatives,X3000\nENGINEER,STANTEC CONSULTING SERVICES,Y4000\nPsychologist,SPSI,Y4000\nREAL ESTATE,TOMBROCK CORPORATION,F4000\nST,GEORGIA HOUSE OF REPRESENTATIVES,X3000\nSPENCER AUTO GLASS,,M7200\nCHAIRMAN,MILLER ENERGY,E1150\nPRESTON BUSINESS CONSULTA,,Y4000\nREAL,FIRST AMERICAN REAL ESTATEINC,F4200\nBanker,Capital Farm Credit,Y4000\nOPERATIONS ANALYST,SELF-EMPLOYED/OPERATIONS ANALYST,Y4000\nPhycician,Self employed,Y4000\nattorney,\"Jubelirer,Pass & Intrieri\",Y4000\nPest Control,ABC Pest Control,G5700\nBusiness Development,Pricewaterhouse Coopers,F5100\nGENERAL,\"STIFEL, NICOLAUS & COMPANY\",F2100\nSALES MANAGER,,G0000\nMANAGER,NAPA AUTOPARTS,Y4000\nOIL MARKETER,\"CLIPPER PETROLEUM, INC\",E1100\nGENERAL COUNSEL,NORTHWEST UTILITIES,E1620\nLAWYER,DISCOVER FINANCIAL SERVICES,F1400\nPRESIDENT,NUCLEUS INVESTMENTS,Y4000\nCLIFF MASSA & ASSOCIATES,,Y4000\nMEDICAL GENETICIST,SELF-EMPLOYED,Y4000\nG.T.L.,PUBLIX,G2400\nsubstitute teacher,Mayfield Public School,X3500\nOWNER,BUMBLE BEE TRANSPORT,Y4000\nPRESIDENT,BWRIDMG,Y4000\nINFORMATION REQUESTED PER BEST EFFORTS,VNA COMNMUNITY TRADERS,Y4000\nRetired Computer Professional,n/a,X1200\nTWO RIVER THEATER COMPANY,,C2900\nProduce Broker,Torbert Produce,A1400\nARCHITECT,STROLLO ARCHITECTS,B4200\nOwner,SeaView Capital,F2100\n\"PAYNE, WOOD & LITTLEJOHN\",,J1100\nIt Mgmt,University Of Iowa,J1200\nConsultant,The Morlan Group,Y4000\nRETAURANT OWNER,LANCASTER BBQ,G2900\nOCALA FAMILY MEDICAL CENTER,,H1100\nDealer,\"Continental Auto, Inc.\",T2310\nAttorney,GURIALE DELLAVERSON,K1000\nCollege Dean,\"CSU, Sacramento\",J1200\nAssociate Executive Director,American Dental Education Association,H1400\nEXECUTIVE,PRINT NORTHWEST,Y4000\nNURSERY SCHOOL DIRECTOR,AUBUNRDALE COMMUNITY NURSERY SCHOOL,Y4000\nBENCHMARK PROPERTY MGMT,,F4000\nATTORNEY,KATHLEEN SHANNON GLANCY PA,Z9500\nSchool Administrator,Ventura County Office Of Education,X3000\nGH VENTURE PARTNERS,,F2500\nProfessional,Deloitte,F5100\nTV PRODUCER,GOURVITZ COMMUNICATIONS,Y4000\nJAKSE LLC,JAKSE LLC,Y4000\nINVESTMENT BANK,SIGNAL HILL CAPITAL,F0000\nROBERT GIUNTA LAW OFFICE,,K1000\nTEACHER,TILTON SCHOOL,Y4000\nPresident & CEO,Clarian West Medical Center,H2100\nCher/Vintner,Home Restaurant,G2900\nGROUP PRESIDENT,STEWART TITLE GROUTING COMPANY,Y4000\nREAL ESTATE,SUZANNE L. KAYNE,J7400\nphysician,VAMC,Z9500\nFORREST CITY GROCERY COMPANY,,G2400\nRealtor/Owner,Edna E Perry Real Estate Comp.,F4000\nSELF-CHOICES BROKERAGE,,Y4000\nFARM SERVICE CENTER,,A4000\nDIAG,WAKE FOREST UNIV SCHOOL OF MED,H1130\nExecutive,The Global Consulting Group,G5210\nBREVARD ORTHOPAEDIC CLINIC,,H1130\nJONES-KELL,,Y4000\nREAL ESTATE,CORIANDER INC,F4100\nENGINEER,TEREX,Z9500\nMovie & Stage Actor,Self-Employed,G0000\nATTORNEY,\"SHULMAN,ROGERS,GANDAL,PORDY&ECKER,PA\",K1000\nOwner,Pinnacle Realty Svc.,F4200\nSr VP / COO,Old Republic National Title Insurance,F4300\nRETIRED,LOCAL INITIATIVES SUPPORT CORP.,H6000\nPHYSICIAN/PATHOLOGIS,\"CAPITAL PATHOLOGY, P.C.\",H1130\nBUSINES OWNER,CCSI,Y4000\n\"President of Gov't and Industrial Robo\",iRobot,C5000\nVAULT.COM INC.,,Y4000\nPRESIDENT & CEO,THE WITTENBERG GROUP LLC,Y4000\nCOMSUMER PRODUCTS SAFETY COMMIS,,Y4000\nAttorney/ Council at Large,Okey Law Firm/ Alliance,K1000\nPROFESSOR,SIUE,LG300\nATTORNEY,\"BARRETT,BOLT, KIRKWOOD,  LONG\",H5000\nREAL ESTATE BROKER,PRUDENTIAL AMERICANA/REAL ESTATE BR,J9000\nG,WITHEY PRICE LANDSCAPE AND DESIGN,B3600\nVP/GENERAL COUNSEL,PSE/VP/GENERAL COUNSEL,Y4000\nPresident,Euclid Software,J7500\nRegistered Nurse,Mount Carmel Home Care,Y4000\n\"President, Resident\",Jarby Inc.,J7400\nSELF/HOMEMAKER/VOLUNTEER,,M1000\nGOVT RELATIONS,FABIANI & CO,K2000\nCEO,\"APPEARANCE GROUP, INC.\",Y4000\nPROFESSOR,UNIVERSITY  OF WISCONSIN MADISON,H5100\nPRIVATE EQUITY PARTNER,TRIVEST PARTNERS,F2600\nMIDDLESEX MATERIALS,,Y4000\nBUS OWNER,PREM,Y4000\nNEEC,Admin Dir,Y4000\nCORPORATE COUNSEL &,GORMAN RUPP COMPANY,M2300\nSALES REPRESENTATIVE,BRIDGEVIEW ABSTRACT,Y4000\nDIRECTOR,SAPPHIRE ENERGY,E1000\nINDEPENDENT DIRECTOR,SELF-EMPLOYED,G4800\nstay at home mom,Homemaker,Y1000\nPRESIDENT,PHEASANT RIDGE EQUINE CLINIC,G1200\nPresident,Akc Commodities Inc.,Y4000\nCPA,\"HASS & CO, LLC\",Y4000\nCFO,KYTHERA BIOPHARMACEUTICALS,Y4000\nINACOMP,,Y4000\nPRINCIPLE,LAMPKIN GROUP/PRINCIPLE,Y4000\n15TH STREET FISHERIES,,G2900\nMarketing,Ad Marketing,J1200\nUniversity Professor,\"California State University, Long Beac\",H5100\nNATIONAL SECURITY CONSULTANT - PHIL,,Y4000\nCOMMERCIAL REAL ESTATE,4-D PROPERTIES,F4000\nSOCIAL ENTERPRISE CONSULTANT,RETIRED,X1200\nEXECUTIVE,RJJ COMPANIES,F2100\nEngineer,KFI Engineers,B4400\nMILLENNIUM WAVE INVESTMENTS,,Y4000\nCLERK,NYCHA,X3000\nBOOKKEEP,BOOTH ASSOCIATES S.E. INC.,Y4000\nOwner,Allied Health Research Lab,Y4000\nPhysician,MD Primary Care  UPS,H1100\nInformation Requested,Urban Justice Center,Y4000\nATTORNEY,\"SKOGEN ENGINEERING GROUP, INC\",B4400\nPresident,Public Service Credit Union,F1300\nNone Specified,None Specified,F4500\nCAROLINA BUDGE CO INC,,Y4000\nANALYST,,Y4000\nField Organizer,Joe Turnham,Y4000\nAPPLETREE CONTRACTORS,,Y4000\nPARTNER,CAL DIAMOND PARTNERS,Y4000\nAlternative High School Math Teacger,Intermediate School District 287,X3500\nOFFICE MANAGER,ERWIN T SU DDS,H1400\nWESTERN LAND COMPANY,,Y4000\nInsurance Executive,Sun Life Financial,F3300\nTechnical writer,Hewlett-Packard,C5100\nFire Fighter,Orland Fire Protection Dist.,Y4000\nALLIED VISION SERVICES,,H1120\nPresident,\"Quality Float Works, Inc.\",M5000\nREALTOR,RE/MAX OF PRINCETON,Y4000\nFIRST DAKOTA TITLE,,F4300\nReal Estate Investor,BNC Real Estate,F4000\nCHAIRMAN AND MANAGING MEM,FIVE MILE,Y4000\nENGINEER,\"LOWY & DONNATH, INC\",Y4000\nATTORNEY,\"THE PETERSON LAW FIRM, LLC/ATTORNEY\",K1000\nROTENBERG ASSOCIATES LLC/LAWYER/PUB,,K1000\nADMINISTRATION,\"CAPITAL KNOWLEDGE CONSULTING, LLC\",Y4000\nBENEFICIAL MGNMT CORP,,F1400\nVP-HUMAN RESOURCES,RETIRED/VP-HUMAN RESOURCES,X1200\nOWNER,TANIMURA & ANTLE INC.,A1000\nVP SALES AND MARKETING,GATE PETROLEUM,E1100\nRUS INDUSTRIES INC,,Y4000\nPROFESSOR,VANDERBILL UNIVERSITY,J1200\nasset management,\"Capital Counsel, LLC\",F2100\nMANAGING DIRECTO,GOLDCORP AUSTRALIA,Y4000\nFOUNTAIN OF HEALTH,,H0000\nPROJECT COORDINATOR,CARIDIANBCT,Y4000\nPHYSICIAN,EMERGENT MEDICAL ASSOCIATES,Y4000\nEVP-ASSET MANAGEMENT,\"ESSEX PROPERTY TRUST, INC.\",F4100\nexecutive,Fulbright,Y4000\nTRUNK ASSIGNOR,VERIZON-BELL ATLANTIC NORTH,LC100\nOWNER,KALYCO LLC,Y4000\nCEO,AL MORRELL DEVELOPMENT,D9000\nE J SNYDER AND CO,,Y4000\nPHYSICIAN,DOTHAN HEMATOLOGY ONCOLGY,H1130\nPresident,Kirby Risk,Y4000\nArchitect,Target,G4300\nPresident,ILWU 142,LT500\nProposal Process Manager,Northrop Grumman,D5000\nATTORNEY,\"AKIN GUMP, WASHINGTON, DC\",K2000\nHousewife,NA,G5200\nDIRECTOR,LIBERTY HAMPSHIRE COMPANY,Y4000\nSELF EMPLOYED,GRAPHIC DESIGNER,J1200\nPRESIDENT,BROADWAY TRUCK STOPS,G1200\nDDD INTERIORS,,Y4000\nREGO MFG,,Y4000\nGovernment relations,self,J1200\nMd,Obstetrics And Gynecology Specialis,H1130\nRESEARCH ASSISTANT,HPRT,Y4000\nPRINCIPAL,\"MICROCHIP TECHNOLOGY, INC\",Y4000\nAttorney,Law Offices Of James C Kim,K1000\nSURGEON,M.A.P.M.G.,Y4000\nLOBBYIST,BOEING,T1200\nSENIOR VICE PRESIDENT,ISLAND HOLDINGS,Y4000\nSR,MAGELLAN MEDICAID ADMINISTRATION,Y4000\nOwner,The MailMann,Y4000\nVICE-PRESIDENT,MNEMONICS,Y4000\nREHABILITATION COUNSELOR,SPECIAL TREE REHABILITATION SYSTEM,Y4000\nMINISTRY,THE NAVIGATORS,Y4000\nRE/MAX ADVANTAGE REALTY/REAL ESTATE,,F4200\nAttorney,Berry & Leftwich,K1000\nPRESIDENT,SAMSA PUBLISHING,C1100\nDERMATOLOGIST,CLINIC MOUNTAIN WEST,H1130\nBAKER & HOSTETL PA,,K1000\nCONTRACTOR,T. MORIARTY & SON,Y4000\ninvestment counselor,self employed,JE300\nSELF-EMPLOYED,EAR STUDIO INC.,Y4000\nOfficer,\"Southeastern Railroad Construction, in\",B1500\nPharmacist,\"Bruce's Browser\",J7300\nRESEARCH SPECIALIST,,G0000\nceo,red rock development,Y4000\nVICE PRESIDENT,TXU ELECTIRC,E1600\nAVIATION TECHICIAN,SATAC,Y4000\nOWNER,JERRY DUNCAN FORD INC.,T2300\nPRESI,HILL AIRCRAFT & LEASING CORP.,T1600\nOWNER,WEBER REFRIGERATION,Y4000\nSenior International,US Dept. of Commerce,X3000\nALAND CHIN LLC,,Y4000\nRUDEO PROPERTIES INC,,F4000\nScientist,\"Federal Gov't\",X3000\nPACIFIC CARE HEALTH,,H3700\nRETIRED,GSU,Y4000\nTOBIAS INSURANCE AGENCY INC,,F3100\nCOMPUTER SCIENTIS,GLAXO SMITH KLINE,H4300\nRESEARCH,UNIVERSITY OF NEBRASKA-LINCOLN,H5100\nEXECUTIVE DIRECTOR,GREAT NECK ARTS CENTER,Y4000\nDiagnostic Radiologist,Saint Francis Medical Center,H1130\nCLICH ACTION INC,,C5120\nManager,Trucking Fleet,T3100\nVP & Deputy General Counsel,Covidien,H4100\nRETAIL CLERK,WALDBAUMS INC.,Y4000\n\"RN, APN\",AI duPont Hospital for Children,H1710\nCANTON MUNICIPAL COURT,,Y4000\nCOHEN WOLFSTATE SEMEN,,Y4000\nPRESI,\"TYPECRAFT, WOOD & JONES, INC.\",Y4000\nSHIPP,DELEWARE RIVER STRUEDORS INC.,Y4000\nManaging Direcor,Bearing Point,G5200\nCFO,Watkins Industries,Y4000\nURBAN MANAGEMENT LLC,,Y4000\nADMISSION OFFICE,COLLEGIATE SCHOOL,Z9500\nMONTGOMERY MCCRACKEN WALKER ET AL,,K1000\nATTORNEY,FREDRIC MARRA & ASSOCIATES,K1000\nBUSINESSP PARTNER,THE LIVINGSTON GROUP,K2000\nCONSULTANT,STRATEGIC COMPENSATION GROUP,Y4000\nPHARMACIST,MD ANDERSON,Y4000\nMARRIAGE AND FAMILY T,SELF-EMPLOYED,Y4000\nADMINISTRATOR,FINCH CONSTRUCTION,B1500\nEXECUTIVE,SECURE DATA INC.,Y4000\nDIRECTOR,CBIZ/DIRECTOR,G5200\nRn,Hoag Hospital,H2100\nDENTIST,WALSH DENTAL,Y4000\nTHE RILEY GROUP,,Y4000\nINVESTMENT MANAGER,WELLINGTON MANAGEMENT COMPANY,F2100\nDOCT,CINCINNATI EYE PHYSICIANS INC.,Y4000\nFINANCIAL CONSULTANT,SELF-EMPLOYED,F1100\nMANAGEMENT,D. E. SHAW & CO. L.P.,F2700\nINDUSTRIAL D,TRIENCON SERVICES INC.,Y4000\nPsychologist,VA,L1100\nDIRECTOR OF NONPROFIT,NEW JERSEY COALTION FOR INCLUSIVE EDUC,Y4000\nRoyal Realtor,,F4200\nPRESIDENT,SOUTHEAST SEALING,Y4000\nMID HUDSON FAMILY,,Y4000\nLAWYER,\"WARREN & SINKLER, LLP\",Y4000\nEXECUTIVE,ASSOCIATED MASTER TRUST,Y4000\nSCHERING-PLOUGH CONSUMER,,H4300\nOrganic Chemist,N/A,Y4000\nATTORNEY,\"BRAMNICK, RODRIQUEZ ET AL\",K1000\nDentist,\"MAITRE & MAITRE, D.M.D.\",H1400\nTeacher,German School NY,H5000\nATTORNEY,SUTTLE LAW PC,Z9500\nInformation Requeste,Layman Lumber Co.,Y4000\nMINISTER,RETIRED,X1200\nLAKEWOOD FIRE DEPARTMENT,,X3000\nGLENWOOD MANAGEMENT,,J7400\nMortgage Banker,\"Union National Mtg, Company\",Y4000\nCONSULTING ELECTRICAL ENG,,Y4000\nIT SPECIALIST,EPA,X3000\nN/A/HOMEMAKER,,C4100\nHOME RENOVATION,,Y4000\nLEVIAN BROTHERS,,Y4000\naccountant,teknotax inc,Y4000\nPRESIDENT & C.E.O.,ARCHSTONE FOUNDATION,Y4000\nREAL ESTATE INVESTOR,\"J.I. KISLAK, INC.\",J5100\nSenior Management,Petrolem Traders  Corp,Y4000\nPRESIDENT,JOULANI AUTO GROUP,Y4000\nBANK OF S E EUROPE,,Y4000\nTHE INSCO DICO GROUP,,Y4000\n\"BYRUM, GAYNOR & DIEHE\",,Y4000\nRADIO COMMUNICATIONS,314 ASSOCIATES/RADIO COMMUNICATIONS,Y4000\nMARKETING/INVENTORY,BOBCAT OF MANDAN,Y4000\nHOBART HOUSE,,Y4000\nKNOWLEDGE SHARING DIRECTOR,PHILLIPS 66,Z9500\nCHEM FAB,,Y4000\nContractor,Gaines & Company,B1000\nMADISON KIPP CORPORATI,,M5000\n\"GARFIELD, ASHWORTH & EPSTEIN\",,K1000\nBanker,Southeast National Bank,F1000\nPresident,Sound Goods Llc,Y4000\nJATAR,,Y4000\nPRODUCER DIRECTOR,,J7400\nSUPERVISORY SPEC,FEDERAL GOVERNMENT,X3000\nLOBBYIST,WASHINGTON COUNCIL ERNST & YOUNG,F5100\nBanking,J.P. MORGAN CHASE,F1100\nNONE,RETIRED EDUCATION,J7400\nCHAIRMAN,M.G.S. CORPORATION,E1190\nHEALTH CARE WORKER,OSBURN DRUG CO.,Y4000\nAttorney,Watkins Ludlam Winter Stennis,K1000\nCEO,Dempsey Inc.,Y4000\nEXECUTIVE,BARR RESOURCES,G5250\nUnknown,\"Evapco, Inc\",Y4000\nAttorney,Securities & Exchange Commission,X3000\nEXECUTIVE VICE PRESIDENT,DIAL GLOBAL COMMUNICATIONSEXCELSIOR,C2100\nDiplomat,US Department of State,J1200\nCSI INTERNATIONAL INC,,G5200\nSelf-Employed Presid,Oakland Valve & Fitting Co.,M5000\nPresident,Georges,G1200\nG S. PRECISION INC.,,Y4000\nH C BUCHANAN CONCRETE INC,,B0500\nDirector of Communic,Colemont Insurance Brokers,F3100\nChief Operating Offi,Century 21 Department Store,G4300\nCORP. PRESIDENT,\"FDC MGMT, INC.\",Y4000\nPHYSICIAN,UTHSCSA,J1100\nOWNER,A WEY INC.,Y4000\nATTORNEY,MALONE LAW FIRM,K1000\nCPA,LINDSEY DAVIS & ASSOCIATES,Y4000\nSALES,BETTER BEVERAGES,Y4000\nCapitol Hill Group,consultant,K2000\nHOMEMAKER/MOM/COMMUNITY VOLUNTEER,,Y1000\nClassroom Teacher,GREELEY             6,L1300\nAttorney,NUCO2 INC.,Y4000\nPHYSICIAN,GASTROENTEROLOGY SPECIALTIES/PHYSIC,H1130\nPRESIDENT,MAHOGANY OIL AND GAS CO,Y4000\nCOALITION FOR EMPLOY THR EXPORTS,,G3500\nPRESI,\"ORANGE COUNTY ASSOCIATES, INC\",F4000\nENGINEER,PORT OF SEATTLE,T6000\nGENERAL MANAGER,CONSOL ENERGY INC,E1210\nGRAYHOUND TRASH,,E3000\nMANAGEMENT,ROSE GROVE CAPITAL,G5000\nPresident/CEO,Style Craft Homes Inc,B2000\nDISTRIBUTOR,MAGEE COMPANY,Y4000\nConsultant,CCS Fundraising,Y4000\nCERTIFIED PUBLIC ACCOUNTANT,STOSCH ASSOCIATES P.C.,Y4000\nBusiness Broker,Buy-Sellapharmacy.Com,G4900\n\"MULLER'S WOODFIELD ACURA\",,T2300\nVice President,Jaren Corporation,J1200\nCEO,DATA MART,J6200\nFISHER INVESTMENTS,,J4000\nANESTHESIOLOGIST,\"ASSOCIATES IN ANESTHESIA, INC.\",H1130\nHEAD START TEACHER,COLUMBIA CHILD DEVELOPMENT,Y4000\nInvestor,Westchester Medical Plaza,Y4000\nMANAGEMENT,\"MODESITT ASSOCIATES, INC\",Y4000\nCo owner,Dags Branch Coal Co. Inc.,E1210\nSocial Worker,N/A,J1200\nReal Estate Broker,RE/MAX Heritage,F4200\nADJUNCT LAW PROFESSOR,SELF,H5170\nCO-FOUNDER,ALTICOR CORP.,J1100\nAUTHOR,SELF,Z9500\nMEDICAL DIREC,WYETH PHARMACEUTICALS,H4300\nREAL ESTATE,LITCHFIELD ADVISORS INC,Z9500\nUNIVERSITY ADMINISTR,UW-RIVER FALLS,H5100\nBusiness Manager,\"Regal Empress Showcase, Inc\",Y4000\nATTORNEY,FOLEY & LARDNER LLP,J7300\nPUBLISHING EXECUTI,EAGLE PUBLISHING,C1100\nManagement,DTE Energy,E1620\nATTY.,SPEIGHTS & RUNYON,Y4000\nMANAGER,BLUESTONE COAL CORP.,E1210\nPHYSICIAN,TRIDENT ANESTHESIA GROUP,H1130\nCAPE TOWN RV SALES,,T8200\nReal Estate,Washington Square Partners,F4100\nChairman,Othar-Raven Industries,Z9500\nLAWYER,MORGAN LEWIS AND BOCKIUS L.L.P.,K1000\nSTEVEN EIDMAN D D S P C,,J5100\nPhysical Therapist,Images,H1700\nSALES,CONTINENTAL GROUP (SELF),Y4000\nN/A / HOMEMAKER,,Y1000\nSCHOOL DIST #51,,L1300\nMANUFACTURING/INVESTMENTS,\"FOUR M. INVESTMENTS, LLC\",M7100\nPRESIDENT,VALLEY ELECTRICAL CONTRACTORS INC/P,B3200\nATTORNEY,\"MITCHELL, SILBERBERG &\",K1000\nChairman,Todays Automotive Svc.,T2000\nOwner,Emma Rebecca Bays Carlon Dds,H1400\nFIRSTAR METROPOLITAN BANK & TRUST,,F1100\nMd,Univ Of Pa,H5100\nROCHESTER PLUMBING SUPPLY CO,,B5300\nHEALTH C,SOUTHERN NH MEDICAL CENTER,H2000\nPARTNER,B & W REALTY,F4200\nENGINEER,\"ENVIROMETRICS, INC\",Y4000\nINVESTOR,NASSAU POINT INVESTORS,Y4000\nATTORNEY,MORGAN LEWIS & CRUTCHER,Y4000\nDIRECTOR,UNIVERSITY TRANSPORTATION CENTER FOR M,B1000\nPresident,Rosehill & Associates,G5210\nHIGH COUNTRY FASHIONS,,M3100\nC.O.B. & C.E.O.,Robinson Dairy,A2000\nDIRECTOR CORPORATE,PG&E CORPORATION,E1620\nINVESTMENTS,SELF,G5270\nEXEC.,SONY,C5000\nMENTOR,SELF-EMPLOYED,Y4000\nPRESIDENT,EDINA REALTY TITLE INC.,F4300\nVICE PRESIDENT,BRESTER CONSTRUCTION,Y4000\nAdvertising Executive,Vogel Farina LLC,Z9500\nETOWAH COUNTY,,X3000\nPublic Policy Director,Avera Health,H0000\nSENIOR VP,FARMERS INSURANCE GROUP,F3100\nCouncilmember,City of San Jose,X3000\nPresident,The Young & Merrill Agcy Inc,F3100\nCONTINENTAL OFFICE,,Y4000\nMARKETING,ACCENTURE,G5270\nLOG HOME SALESPERSON,ANGEL FIRE LOG HOMES,Y4000\nPRESIDENT,F&W CONSTRUCTION,B1500\nLINCOLNWAY INTL TRUCKS,,Y4000\nATTORNEY,GOODSTEIN LAW FIRM LLC,K1000\nComputer programmer,Morningstar Inc.,C1100\nHOME BUILDER,NEW TOWN BUILDER,Y4000\nCEO,\"TRANSCEND SERVICES,IN.\",J1200\nCEO - Executive Prod,Atmosphere Entertainment MM LLC,Y4000\nConsultant,dZConsulting,Z9500\nMEMBER,DEVELOPMENT SERVICES LLC,F4000\nGENERAL CONTRACTO,FRANK GURNEY INC.,B1000\nDIRECTOR OF NATIONAL UPDAT,GRAINGER,E1700\nPALMOLIVE,COLGATE,M3300\nBEN BROOKS & ASSOCIATES,,Y4000\nPresident & Chief Op,BRE Properties; Inc.,F4100\nPRESIDENT,QUANTUM DESIGN,Y4000\nDevelopment Officer,Kona Hospital Foundation,H2100\nMEDALLION MANAGEMENT INC,,Y4000\nVICE PRESIDENT,ATWOOD OCEANICS,E1150\nLAWYER,\"BROWNSTEIN HYATT & FARBER, PC\",K1000\nART CONSULTANT,SELF EMPLOYER,Z9500\nCertified Financial Planner,Self Employeed,F0000\nBowling Prof,Self Employed,Y4000\nACE WHOLESALE,,G2500\nMARTIN HEALEY LTD,,Y4000\nSVP HR,AMETEK INC,M2300\nPresident,Pawlish Equipment,Y4000\nRealtor,Turnberry Realty,F4200\nMANAGEMENT CONSULTANT,ANETHER ASSOCIATES,Y4000\nEmergency Physician,Ft Sanders Parkwest Hosp ED,H1100\nROW AGENTY,UNIVERSAL FIELD SERVICES,Y4000\nMORTGAGE BANKER,MSA MORTGAGE INC./MORTGAGE BANKER,F4600\nExecutive,\"Milo's Tea Company Inc\",Y4000\nBUIST MOORE SMYTHE AND MCGEE PA,,Y4000\nATTORNEY,SMITH & MCGINTY,K1000\nCYPRESS PATHOLOGY PA,,H1130\nCHAIRMAN,QUICKSET INTERNATIONAL,Y4000\nExecutive Vice Presi,Verizon Corporate Svcs. Corp,C4100\nCREATIVE AGENTS,,Y4000\nYOSEMITE FOUNDATION,,Y4000\nATTORNEY AT,\"MCMAHON, BERGER, ET AL.\",H0000\nAttorney,\"Paul Conwell, Attorney\",K1000\nANESTHESIOLOGIST,\"DR. I. ZAFAR HAMID, M.D.\",H1100\nChairman,A.G.G. Associated Insurance Group,F3100\nSutin Thayer & Brodne,,K1000\nCONTRACTOR,\"DEL TURCO BROS., INC.\",Y4000\nConsultant,Chopper Trading,C5130\nVice President - Ext,Mirant,E1600\nDEALER,FOX TOYOTA SUBARU,T2300\nTHE KARSTEN CO,,Y4000\nKLOSTERMAN BAKING,,G2100\nPsychiatrist,Self-Employed,J7500\nSELF EMPLOYED,VISION INVESTMENT PROPERTIES LLC,Y4000\nMAZANDER ENGINEERING,,B4400\nExecutive,M.A. Berg & Assoc.,Y4000\nROSE HILLS COMPANY,,G5400\nRAYTH SYS CO NAGOYA AIRCRAFT WORKS,,D3000\nBanker,Old Second National Bank,F1100\nOffice Mgr,\"Andre P Desire, MD\",H1100\nMANAGING MEMBER,RON KAUFMAN COMPANIES LLC,Y4000\nEXECUTIVE,FOCUS PROPERTY GROUP,F4000\nBUSINESSMAN,MCCLELLAN NICHOLS SPORTS SYNDI,Y4000\nWriter,Fself,Y4000\nOWNER,A.P.X.,G5290\nCPA,SEN AND ASSOCIATES,Y4000\nTOYOTA,BILL DUBE FORD,T2310\nASSOCIATES CORPORATION OF NORTH AME,,F1400\nAir Line Pilots Asso,United Airlines,T1100\nRECRUITER,GRANILS SERVICES INTL,Y4000\nHOMECREST,,Y4000\nSMALL BUSINESS OWNER,REYCO ELECTRICAL SERVICES INC,Y4000\nREAL ESTATE BROKER,\"TONY CLARK, REALTORS\",Z9500\nSELF/ATTY/CPA/RANCHER,,J1100\nMIAMI FIRE DEPT./FIREFIGHTER/EMS,,L1400\nANIMAL RESCUE LEAGUE OF IOWA,,Y4000\nPROFESSOR OF ECONOMICS,BALL STATE UNIVERSITY,H5100\n\"PIRTLE, MORISSET\",,Y4000\nPSYCHOLOGICAL CONSUL,,H1110\nFACULTY,UNIVERSITY OF KENTUCKY,H5100\nSUSTAINABLE FINANCE,WORLD WILDLIFE FUND,Z9500\nLAWYER,RICHARDS LAYTON & FINGER,K1100\nCEO,MASS INC.,J1200\nCKB CAPITAL MANAGEMENT,,F2100\nBALANTINES S BAY CATER,,G2910\nEXECUTIVE VI,\"HELMERICH & PAYNE, INC\",E1150\nCEO,CARSON INDUSTRIES INC.,Y4000\nCPA,BOXER PROPERTIES,F4000\n\"SVP, Government Affa\",RIAA,Z9500\nLandscape Architect,U. S. Army Corps Of Engineers,X5000\nATTORNEY,MIKEHALFACRE FOR CONGRESS,J1100\nPRESIDENT/CEO,DEFENDERS OF WILDLIFE,JE300\nSIEBEN LAW FIRM,,K1000\nMISSOURI CARDIOVASCULAR,,H1100\nCORCORAN & ASSO,,Y4000\nJOHNSON & FOY,,Y4000\nBOARD OF DIRECTORS,BRADY INDUSTRIES/BOARD OF DIRECTORS,M1300\nRESTURAN OWNER,SELF-EMPLOYED,J1100\nPROPERTY MANAGEMENT,\"POINTE O'WOODS APARTMENTS LLC\",Y4000\nVice President,TIAA,F2000\nATTORNEY,HODGE LAW FIRM,K1000\nDEAN OF ENGINEERING,THE UNIVERSITY OF TOLEDO,H5100\nAMERICAN DIAMOND TOOL INC,,M5100\nPsychologist,Psychological Associates,H1110\nCHIEF OPERATING OFFICER,NORTH ATLANTA PRIMARY CARE,Y4000\nPRESIDENT,PLASTICOM TELECOMMUNICATIONS,M1500\nBELLAVIA & CASTLE,,Y4000\nExecutive,Chesapeake Resources,Y4000\nTOWER AUTOMOTIVE,,Y4000\nATTORNEY,ABRAHAMSEN MORAN + CONABOY,K1000\nPRESIDENT,BAY BRIDGE STRATEGIES,K2000\nWILLIAM R PREDEMAN & ASSOCIATES,,Y4000\nGOVERNMENT,PUBLIC CONSULTING GROUP,Y4000\nCHAIRMAN,ADVANCE NEWHOUSE COMMUN,Y4000\nCMDI NAST PUBLICATIONS,,C1100\nPRESIDENT,OWNER-OPERATOR INDEPENDENT DRI,Y4000\nAccountant,\"Everall D Perkins, PA, CPA\",F5100\nSOFTWARE DEVELOPER,INVESTMENT MANAGEMENT FIRM,F2100\nCEO,NATL ASSOC COMM HEALTH CTRS,Y4000\nPROFESSOR OF SOCIAL WORK,MIDDLESEX UNIVERSITY,Z9500\nALFORD DISTRIBUTING COMPANY,,G2850\nFINANCIAL ADVISOR,WIENER FINANCIAL  MANAGEMENT,F2100\nDAIRYMAN,P.M VANDER POEL DAIRY,A2000\nCFO,CHRISTIAN BOOK DISTRIBUTORS,C1100\nContractor,State Service Co. Inc.,Y4000\nAttorney,\"Preston, Gates, Ellis & Rouvelas\",K1000\nReal Estate & Investment,George Reeves Company,F4000\nZIMMERMAN SMITH & KOSTELNY,,K1000\nACTING AND VOICEOVER,SELF-EMPLOYED,Y4000\nREAL ESTATE,MCCULLOCH RANCH AND LAND CO. INC.,A3000\nPSYCHOTHERPIST,SELF-EMPLOYED,H1110\nPRESIDENT,KINGTEC COMMUNICATIONS INC.,Y4000\nARCHIVIST,NORFOLK TRUST,J7400\nWHITE SWAN LTD,,Y4000\ndirector,Performance Designs Inc.,Z9500\nExecutive,PTC,C5120\nEXECUTI,BROOKSIDE INTERNATIONAL INC,F2100\nDEAN OF THE HEL,BRANDEIS UNIVERSITY,H5100\nLAND SOLUTIONS INC,,Y4000\nco-owner,Central Beverage Group,G1200\nReal Estate Broaker,Meredith & Grew,F4200\nSELF EMPLOYED,\"THEODORE H. BUDD & SONS, INC.\",A1400\nATTORNEY,NIEHAUS L.L.P./ATTORNEY,Y4000\nCONSULTANT,SELF EMPLOYED/CONSULTANT,J1200\nCONTROLLER,\"HOPKINS & WAYSON, INC.\",Y4000\nELITE TECH SERVICES,,Y4000\nTHE RITTENHOUSE TRUST CO,,Y4000\nPresident,HARDRICK TRUCKING,G1200\nArnold Worldwide,,G5210\nResearch,Cambridge Energy,E1000\nBusiness Executive,Massini Group,Y4000\nTRB SYSTEMS INTERNATIONAL,,Y4000\nGEOTECHNICAL ENGINEER,CITY OF AUSTIN,X3000\nMORGAN DISTRIBUTING COMPANY,,G2850\nMENTAL HEALTH COUNSELOR,ALLIANCE PSYCHOLOGICAL,Y4000\nCANDIDATE SUPPORT,LIBERTARIAN PARTY,J1300\nIndependent Contractor,TPN,Y4000\nWILLIAMS MANAGEMENT CO,,Y4000\nARAMCO SERVICES CO,,Y0000\nOHIO RIVER COLLIERIES CO,,\nDEPUTY CHIEF OPERATING OFFICER,DAVITA,H3200\nComputer Scientist,\"Elder Research, Inc.\",Y4000\nAttorney,\"Downer, Suepple,..\",Y4000\nRETIRED LICSW,,J7400\nASHLEY PAYNE RANCH,,A1400\nMANAGER (SUBS),WSRC,B1000\nPRESIDENT,PLANNED PARENTHOOD GREAT NW,J7150\nSales,Long View Development,Y4000\nINSTRUMENTS AND CONTROLS SPECIALIST,FLORIDA POWER AND LIGHT,E1600\nSOUTHERN STATES MANAGEMENT,,Y4000\nPH,KIDNEY CENTER OF SOUTH LOUISIANA,Y4000\nGILBERT E CAROFF ATTORNEY AT LAW,,K1000\nHUNTER INDUSTRIES,,B1000\nManager,Historic Columbia Foundation,Y4000\nCHAIRMAN,GILLETT GROUP,G2300\nAGRI BUSINESSMAN,,A0000\nROYAL CAPITAL,,F0000\nCounsel,United State Senate,J1200\nDirector of Coaching,uic College of Education,H5100\nDAVIES PACIFIC CENTER,,F5500\nHEALTH CARE EXECUTIVE,VERANDAS MANAGEMENT INC,H2200\nSOCIAL MEDIA MANAGER,BURTON SNOWBOARDS,M3600\nAssoc Vice President,Hillsdale College,H5100\nATTORNEY,\"LEVENE GOULDIN & THOMPSON, LLP\",Y4000\nActress,20th Century Fox,C2400\nTHE FIRST NATIONAL BANK O,,F1100\nPresident,Environmental Product Sales,Y4000\nDirector Of Child Ca,\"Children's Endeavors Corporation\",Y4000\nALBUQUERQUE VALVE & FITTING,,M5000\nATTORNEY,LEE COSSELL KUEHN & LOVE LLP,K1000\nREAL ESTATE,CAROLINA ONE,F4200\nSTUDENT,INFORMATION REQUESTED,Y4000\nRESEARCH CHEMIST,US ARMY,X5000\nPresident,Merchandise Mart,F4000\nADVANCE DRAINAGE SYSTEMS INC,,Y4000\nCONSULTANT,\"CAPITOL HILL STRATEGIES, LLC\",Z9500\nPRESIDENT,DEKA RESEARCH,H4100\nRetired Senator,None,X1200\nSALES,\"JENMAX FOODS, LLC\",G2500\nTherapist,The Juniper Center,Y4000\nCorporate Paralegal,\"Stafford, Piller, Murnane, Plimpton, K\",K1000\nTARGET E LEASING INC,,Y4000\nNON PROFIT,SQUASH HAVEN/NON PROFIT,Y4000\nDEAKIN CONSULTING,,G5230\nVICE PRESIDENT,VALL RESORTS,T9300\nEditor/writer,Workman Publishing,J1200\nPhysician,Hines Hospital,H2100\nINVESTM,IROQUOIS CAPITAL MANAGEMENT,F2100\nATTORNE,\"THE PASCARELLA LAW FIRM, PC\",K1000\nDOCTOR,MICHIGAN RADIOLOGY SERVICES,H1130\nCHICKASAW HOLDING COMPANY,,Y4000\nEXECUTIVE DIRECTOR,\"THE HOMELESS ALLIANCE, INC.\",Y4000\nPUBLIC INFORM,KEENE SCHOOL DISTRICT,X3500\nCLERICAL,WILLOWAY NURSERIES INC,A8000\nJ&R ELECTRONICS INC,,Y4000\nTURNER PRIVATE NETWORKS INC.,,C2000\nARTIST,VALERIE M. WHITE,Y4000\nDR RIOS,,Y4000\nTOOL DESIGNER,TANDEL,Y4000\nSOCIAL SERVICES,NOT EMPLOYED,Y1000\nATTORNEY,KANTORLAW AND ASSOCIATES,K1000\nSales,Citizens Bank,F1100\nGILMORE ENTERPRISES CORP,,Y4000\nPRESIDENT,PRIZE PETROLEUM,Y4000\nPRINCIPAL,MOODY RAMBIN INTERESTS,F4200\nPresident,The Bauman Foundation,J7400\nST BK OF MAPLE PLAIN,,F1100\nPRODUCT MANAGER,NOREN PRODUCTS/PRODUCT MANAGER,Y4000\nSpecial Assistant To Ambassador R N,Leo A Daly Company,B4000\nCEO - Heartland,\"Psychiatric Solutions, Inc.\",H0000\nROBERT RICHARD ELLISTON MD,,H1100\nRETIRED,REALESTATE AGENT,J1100\nPresident,Reliable Machine Co.,Y4000\nMANAGER,LUCIE MANAGEMENT,Y4000\nOwner,New Orleans Bail Bond,G5000\nSTATE REP,STATE OF CT,X3000\nMEMB,NEW ORLEANS PARISH SCHOOL BOAR,J5100\nMANAGEMENT,ALLCHEM INDUSTRIES,J7400\nAttorney,McGee and Bogen,K1000\nLUMBE,SELF-EMPLOYED - HANSON LUMBER,B5200\nPRESIDENT,BRADY CAPITAL,F0000\nATTORNEY,EDWIN ABBEL INC.,Y4000\nGOLF CONSTRUCTION,,B1500\nEXECUTIVE,PEAKS INVESTMENTS,F2100\nFINANCIAL,NELSON FINANCIAL SERVICES,F0000\nWALKER FOODS,,G2000\nC.F.O.,DADE MEDICAL COLLEGE,H5300\nMGR CO,COMCAST ABB MANAGEMENT CORP.,C2200\nMANAGE,ENTERPRISE COMMERCIAL TRUCKS,Y4000\nPres,\"Sam Lee Enterprises Inc dba SLE Metal,\",M2400\nJUDGE,BERNALILLO COUNTY DISTRICT COURT/JU,X3200\nCDC REAL ESTATE CORPORATION,,F4000\nFINANC,PENNINGTON BASS & ASSOCIATES,Y4000\nNational Realty,,Z1200\nBUDGET DIRECTOR,CO DEPT OF LABOR,X3000\nDesigner,\"Van Wyck & Van Wyck , LLC\",Y4000\nATTORNEY,\"THE FERTEL LAW FIRM, P.C.\",K1000\nwriter and editor,self-employed,C1100\nCHIEF ACCOUNTING OFFICER,FOX CHASE BANK,F1100\n\"LERIOS & D'ANDREA MUSIC WORKS\",,C2600\nDIREC,MICHIGAN MILK PRODUCERS ASSN.,A2000\nNURSING HOME,CLEAR VIEW SANITARIUM,E3000\nDiagnostic Radiologist,RSI,H1130\nTV PRODUCER & MEDIA CONSULTANT,SELF,J1200\nRET TEACHER,,X1200\nSBS CORPORATION,,Y4000\n\"BAYLESS, BOLAND, BATES\",,K2000\nOwner,Damsky Insurance Company,F3100\n\"Vice President, Federal Relations\",Hospital and Healthsystem Assn of Penn,H2100\nPhysician,Union County,J1200\nMCDONALD DOUGLAS,,Y4000\nINTER URBAN PROPERTIES INC,,F4100\nMORGAGE BROKER,NORTH MARQ CAPITAL,F0000\nMATTEO BELKO BAKER,,Y4000\nAPPLACHIAN TIRE CO,,Y4000\nPresident,Northern Natural Gas Company,E1620\nPRESIDENT,PROGRESS CONTAINER CORP.,M7000\nSILVER SHIELD FOUNDATION,,Y4000\nLOBBYIST,THE PRINCE GROUP,K2000\nSCRAP METAL BROKER,\"ADVENT ENTERPRISES, INC.\",Y4000\nHODGES FUNERAL CHAPEL,,G5400\nDoctor,Daniel A Funk MD,H1100\nPro Athlete,San Jose Sharks,J1200\nSENIOR POLICY ADVISOR,NELSON MULLINS LAW FIRM,K1000\nOBERYMAYER REDMANN MAXWELL & HIPPEL,,Y4000\nCEO,MEMORIAL HEALTHCARE IPA,H1100\nATTORNEY,SPRUELL & POWELL,Y4000\nBusiness Owner/presi,Food Pac,Y4000\nOWNER,MCGOUGH CONSTRUCTION,B1500\nREAL ESTATE,M.D.I. LEASING,Y4000\nOWNER,WEAVER CHEVROLET,T2300\nATTORNE,DOW LOHNES & ALBERTSON PLLC,J9000\nREALTOR,REMAX EQUITY GROUP,F4200\nHAYNIE & ASSOCIATE,,K2000\nAMERICAN INSTITUTE OF PHYSICS,,J1200\nESSEX INVESTMENT MGMT,,F0000\nPresident,Sub-Surface Construction,B1500\nPHYSICIAN,PRESCOTT WOMENS CLINIC,Y4000\nAttorney,Wolf Block,Z9500\nV P OPERATIONS,,G0000\nHART STORES,,G4000\nDEVELOPMENT,TELECOM DEVELOPMENT,Y4000\nReal Estate,\"Zapolski Real Estate, LLC\",F4000\nLEARIAN,,Y4000\nGORDON FEINBLATT ROTHMAN ET AL,,J5100\n\"TOM'S FOODS\",,A1600\n\"LOE'S HIGHPORT INC\",,Y4000\nPCFG ADVISORY INC.,,F2100\nPROFESSOR,DE ANZA COLLEGE,H5100\nWHAT,WHO,Y4000\nEXECUTIVE,JEWISH UNITED FUND,J5100\nMARSH & MCLENNAN COMPANIES INC,,F3100\nVENTURE CAPITALIST,PHOENIX IP VENTURES,Z9500\nLiterature Director,NEA,Y4000\nCEO,\"Victor Int'l\",F4100\nARTS DIRECTOR,FRIENDS OF THE ST. LAWRENCE CHURCH,X7000\nINSURANCE AGENT,TOM SOFOS INS & BONDING INC,Y4000\nPRESIDENT,ADVENTIST HEALTH SYSTEMS,H2100\nService Tech,Hargrave Appliance,Y4000\nClearpoint Consulting,,Y4000\nCOMPOSIT,,C1300\nNATTEN MCCLENNAN FISH,,Y4000\nEMERGENCY MEDICINE,GLENS FALLS HOSPITAL,H1700\nReal Estate Develope,Self-employed,LM100\nSEMI-RETIRED BUILDER/DEVELOPER,SELF EMPLOYED/SEMI-RETIRED BUILDER/,X1200\nCOO VP OWNER,NEW SANTANA BAND INC,J1200\nSENIOR VP HUMAN RESOU,NYSE EURONEXT,F2400\n\"SENIOR VP, POWE\",CONSTELLATION POWER,Y4000\nFRANCHISE OWNE,QUIZNOS CLASSIC SUBS,Y4000\nPRESIDENT,\"TARCO, INC.\",Y4000\nEXECUTIVE,MID AMERICAN ENERGY,E1620\nAGENT,VAN METER INSURANCE AGENCY,F3100\nSemi-Retired,Self-Employed,G0000\nPRESIDEN,\"G & J PEPSI BOTTLERS, INC.\",G2700\nWetland Restoration And,Self employed,Y4000\nREAL ESTAT,\"NAT'L HOUSING DEV. CORP.\",F4000\nAg equipment manufacturer,John Deere Company,A4100\nNATIONAL MORTGAGE/BROKER/OWNER,,F4600\nLAMBO COMMUNICATIONS,,Y4000\nCEO,Grand View Hospital,H2100\nLegislator,State of Arizona,X3000\nBanker,Campus Federal Credit Union,F1300\nTHE ADS GROUP,,H2200\nEXECUTIVE DIR,STATE OF ISRAEL BONDS,J5100\nprofessar,Durham Tech Community College,H5100\nPresident,Renaisance Equity,Y4000\nDIVISION,ALASKA CREDIT UNION LEAGUE,F1300\nATTORNEY,BRANSCUM LAW OFFICE/ATTORNEY,K1000\nDIRECTOR OF MARKETING,LUZERNE BANK,Y4000\nPHYSICAL THER,MILDER AND ASSOCIATES,H1700\nATTORNEY,BEERS AND ASSOCIATES,K1000\nVICE PRESIDENT,HANSON PROFESSIONAL SERVICES INC.,B4000\nLOBBIST,HECHT SPENCER & ASSOC.,K2000\nretired-Librarian,Retired,J1200\nSR. ANALYST,FEDERAL GOVERNMENT,X3000\n\"GOV'T. RELATIONS\",COLLINS CONSULTING,J1200\nPROJECT,BERNER INTERNATIONAL CORP.,Y4000\nVP,Keefe Group,Y4000\nSMALL BUSINESS OWNER,\"AVENTINE, INC\",Z9500\nATTORNEY,FEDERAL LABOR RELATIONS AUTHORITY,Z9500\nREAL ESTATE,CORCORAN JENNISON CO,F4100\nOffice Automation Clerk,requested,Y4000\nOWNER,COWARD HUND,Y4000\nLUCICIAN FULLARTON & CO,,Y4000\nElectrical Contractor,\"Walker Seal Companies, Inc\",B3200\nOwner,Greenhill Mushroom Farm,A1000\nStaff Scientist,Pacific Biosciences,M9000\nManager,Eli Lilly & Co,H4300\nSOFTWARE DEVE,RENAISSANCE WORLDWIDE,C5130\nFinance Manager,Caravel Academy,H5100\nHG CAPITAL LLC,,Y4000\nKERRY VOLUNTEER,,Y4000\nOWNER,\"AUSTIN CAPITAL, INC.\",F0000\nTEACHER,CINCINNATI PUBLIC SCHOOL,L1300\nEMPRESSAS ORTIZ-BRUNET,,T1400\nPolitical Consultant,Wiklliam Mcclintock Associates,Y4000\nContract Specialist,\"NOAA, Dept of Commerce\",Z9500\nVICE PRESIDENT,MDU RESOURCES,E1620\nATTORNEY,\"SHARP, BEAVERS & CLINE\",K1000\nEXECUTIVE,SUPERIOR INDUSTRIES,J1100\nAttorney,Weinberg & Weinberg,J1200\nRESTAURANTEUR,\"LUIGINO'S INC.\",G2900\nGERMANTOWN HOSPITAL,,H2100\nOWNER,EXPRESSIONS CARPET AND FLOORING,M8000\nMary Kay Consultant,Self-Employed,M3300\nProfessor,College Of St. Benedict,J1200\nEDITOR,MOBILE PRESS REGISTER,C1100\nEXIDE TECHNOLOGIES,,Y4000\nLOUIS-DREYFUS CORPORAT,,A4300\nAttorney General,State of South Dakota,X3000\nAgricultural Engineer,Food & Agriculture Organization,G2000\nMEDICAL RECEIVABLES,,H0000\nPartner,Wood Byrd & Assoc Inc,Y4000\nAssistant School Administrator,Clovis Unified School District,X3500\nAttorney,Morgenstern Fisher and Blue LLC,K1000\nOwner,retired,J1200\nSLEF-EMPLOYED/EXECUTIVE/INVESTOR,,F7000\nC.E.O.,Creter Vault Corporation,Y4000\nElectrical Engineer,Ibm,C5100\nNEDUCSIN PROPERTIES,,F4500\nBRUNO AND FERRARO,,K1000\nRESEARCH DIRECTOR,\"BURTON GROUP, DIVISION OF GARTNER, INC\",G5200\nPEOPLE FOR THE AMER WAY,,J1200\nAttorney,well gotshel manges LLP,Y4000\nENVIRONMENTAL,TROUTMAN SANDERS LLP,K1000\nPRINCIPAL SYSTEMS ENGIN,MITRE CORP.,D3000\nSELF EMPLOYED,INVESTOR,F2600\nCEO,DISCOVERY SERVICES LLC,G5200\nEnvironmental Engine,Camp Dresser and McKee,B4000\nGARCIA TIRE,OWNER,T2200\nReal Estate,Hidden Valley Corp Of Virginia,F4400\nConsultant,Hearne Associates,Y4000\nABC INC,CAPITAL CITIES,G5210\nGREEN COVE MARINA,,Y4000\nOWNER,RECON SERVICES,J1100\nATTORNEY,MATTSONESQ.,K1000\nEX DIRECTOR,,G0000\nSTEPHENS PROPERTY GROUP,,F4000\nPHYSICIAN,U. ILLINOIS-CHICAGO,Y4000\n\"DIR., GLOBAL MARKETING\",FORD MOTOR COMPANY,T2100\nGULF ASPHALT CO,,B1000\nPHYSICIAN EXECUTIVE,TOWERS WATSON,Z9500\nWOUMBLE CALYLE SANDRIDGE & RIC,,Y4000\nOwner-mgr,\"Nandan Co, Llc\",G0000\nPHYSICIAN,NYU MEDICAL SCHOOL,H1130\nCOBALT CONSTRUCTION,,B1500\nOWNER OF COMPANY,RTP DEVELOPMENT,Y4000\nClinical Laboratory Scientist,\"Seattle Children's Hospital\",H2100\nPHYSICIAN,JLR MEDICAL,H1130\nCEO,UNITED AGRIBUSINESS LEAGUE,A6000\nSCHOOL NURSE,Moniteau School District,L1300\nEXECUTIVE,LOWE ENGINEEERS,Y4000\nPHYSICIANS ANETHESIA,,H1100\nEAGLE STRATEGIES CORP,,Y4000\nH. D. DEALER,H.D. OF MIAMI,J1100\nConsultant,\"Arrow Fastena Company, Inc.\",Y4000\nDirector,Venice Community Housing Corp,Y4000\nCOMPUTER PROGRAMM,CORPORATE EXPRESS,Y4000\nHEAD OF TECHNOLOGY,\"LINDE NORTH AMERICA, INC.\",M1000\nPhilanthropist & Photographer,Self,J7400\nWEST AMERICAN INVESTMENT GROUP,,F2100\nSTERN GRAHAM & KLAPPER,,K1000\nFINANCIAL ADVISOR,BAUER CAPTUR AND JOHNSON,Y4000\nCEO,ACAC FITNESS & WELLNESS CTR,G5800\nBELL & ASSOCIATES,,Y4000\nConsultant,Self Empolyed,G4300\nrequested information,Information Requested,Y2000\nRetired,MAYO CLINIC,H1100\nACCOUNT DIRECTOR,ASPEN MARKETING SERVICES,G5280\nOwner,Butter Bros. Construction,B1500\nAttorney,\"Halgoin, Garfield & Martinez\",K1000\nSenior Managing Director,\"Mannheim, LLC\",F2600\nSales,Worldwide Oilfield Machine,Y4000\nSENIO,UNIVISION COMMUNICATIONS INC.,C2100\nCOLLEY INDUSTRIES,,Y4000\nPRESIDENT & CEO,ALLIANCE BANK,F1100\nENERGY CONSULTANT,\"THE RAPIDAN GROUP, LLC\",Y4000\nChief Executive Officer,AGC of Minnesota,B1000\nBOOK,FEDERAL DEPOSIT INSURANCE CORP,X3000\nSTARTING OWN BUSINESS,,Y4000\nA H HANSEN SALES LTD,,Y4000\nConsultant,Visioneering Design Co.,Y4000\nINTERNATIONAL FAC G,,Y4000\nVICE PRESIDENT ENGINEERING,ECHOSTAR,C2200\nLOGISTICS MANAGER,MERIAL,H4300\nHEARTLAND TOYOTA/DEALER/GM,,T2300\n\"KEN'S CREATIVE KITCHEN\",,Y4000\nATTORNEY,PIPER MARBURY ETC.,K1000\nANALYST,AIR` FORCE,Z9500\nAttorney,Medallion Financial Corp,F0000\nLUCILE PACKARD HOSPITAL,,H2100\n\"CHAIRMAN, CEO & PRESIDE\",SUN AMERICA,X4100\nPRESIDENT,CU ROOTS COOPERATIVE,Y4000\nREAL ESTATE MANAGE,PARAN MANAGEMENT,F4000\nOWEN PARROTT ADKINS PSC,,Y4000\nTreasurer,\"PPG Industries, Inc.\",M1600\nSenior Fellow,Save Darfur Coalition,J5000\nCOAL SALESMAN,EMERALD COAL,E1210\nA H CASTON FARMS,,A1400\nGOVT. AFFAIRS,GREENBERG TRAURIG,K1000\nSCV MANAGEMENT COMPANY,,Y4000\nNAT.CTR MISSINGEXPLOITEDCHILD,,J9000\nINTEGRAL MEDICINE PRACTITIONER & TEACH,REIKI & HEALTH CENTERS,Z9500\nDoctor,\"DR. Michael S. Dwyer Ba, DDS, MS\",H1400\nTRAVEL RELATED SERVICES NA,,T9400\nMERCHANT,,G4200\nRepresentative,AXA Advisors,F2100\nChief Financial Offi,Imex Corp.,Y4000\nPresident,\"Parker's\",G4300\nManagement,Prometheus Partners,F2600\nInvestor,SELF EMPLOYED,F7000\nTeacher,Fowler Public Schools,J1200\nPRESIDENT,JONES REALTY,F4200\nFIVE STAR CLEANING SERVICES,,G5500\nFinancial Advisor,Mentor/The National Mentoring Partners,Y4000\nBARRINGTON VOLVO INC,,T2300\nPresident,Scalable Software,Z9500\nowner,Gilbert Macros & Mergers,Y4000\nINVESTOR,JAFFE CAPLAN FLEDER,Y4000\nDIRECTOR,BETH ISRAEL MEDICAL CENTER,H2100\nINFO REQUESTED,Wealth Advisory Group,Y4000\nWRITER/TRANSLATOR,SELF-EMPLOYED,G0000\n7 MEDIA INC,24,J1200\n256 OPERATING ASSOCIATES INC,,Y4000\nS.D.J. ASSOCIATES,CONSULTANT,J7400\nEVENT DEVELOPMENT,SELF-EMPLOYED,G0000\nPostal Clerk,USPS,J1200\nPrincipal,\"Roberts Rehab & Gradler, Inc.\",Y4000\nG.S. LEVINE INSURANCE SALES,,F3100\nCASH & CARRY ELECTRONICS,,G4200\nPresident,\"Motex, Inc.\",Y4000\nStore Owner Retail,Self employed,Y4000\nPresident,\"Control Fire & Safety, Inc.\",Y4000\nROGER WILLIAMS PARK CITY OF PROV,,X3000\nAmeritrade,,F2100\nPartner,Kinghorn Insurance Agency of Beaufort,F3100\nPresident & Chairman of the Board,Korbel Champagne Cellars,G2820\nPRESIDENT,HERITAGE ENERGY CO.,E1000\nD,RETAIL RESTAURANT DEVELOPMENT LLC,G2900\nAttorney,Prichard Hawkins McFarland & Young LLP,K1000\nLAWYER,MISSION HEALTH,H2100\nCONSTRUCTION EXECUTIVE,G. HARMS CONSTRUCTION,B1500\nHARDELL LUMBER,,G2400\nMANAGER/DIRECTOR,CARE CENTRE MANAGEMENT,J7120\nPROFESSOR,SALISBURY UNIV,H5100\nOwner,\"John O' Neil Johnson Motor\",T2300\nSpecial Agent,Bureau of ATF / DOJ,X3200\nBRANCH MANAGER,CASSAN ENTERPRISESE,F4000\nBANKER,,E1120\nPartner,\"Koskoff, Koskoff, & Bieder, P.C.\",K1100\npainter/writer,self,Z9500\nTEACHER,ITAWAMBA COMM. COLLEGE,H5100\nALLNET COMMUNICATIONS OF MICHIGAN,,Y4000\nWALL EINHORN & CHERUITZER,,Y4000\nPARTNER,\"CLAYCO, INC.\",B1000\nPT,UNC Hospitals,H1700\nPETROLEUM GEOLOGIST,SPOONER PETROLEUM CO,J1100\nPrincipal,Atlantic Realty Development Corpor,F4200\nANESTHESIOLOGIST,SO CTY ANES ASSOC,H1130\nGROWER,SELF EMPLOYED,A1500\nExecutive,\"Hanig's Footwear, Inc\",Y4000\nPsychotherapist,Flatirons Psychotherapy,Y4000\nACCOUNTS RECE,STILES TAYLOR & GRACE,K1000\nGeneral Contractor,T.L. Olson Construction,B1500\nFree Lance Photograper,Self,G5240\nCEO,REDSALSA TECHNOLOGIES,Y4000\nEXECUTIVE VICE PRES,OKLAHOMA LUMBER,B5200\nMORTGAGE LENDER,SELF EMPLOYED,G0000\nDoctor,Facial Plastic and Laser Surgery,H1130\nOWNER,HBA CORP,Y4000\nEducator,Nova Southeastern Un,Y4000\nMERKLE SIEGEL & FRIEDRICHSEN,,Y4000\nACCENT FLOWERS & GIFTS,,A8000\nSELF - EMPLOYED,DENNIS PET SALON,Y4000\nCHAIRMAN CEO,THE MED GROUP,Y4000\nCEO RIVERS BEND LITERARY AGE,,C1100\nFOX,,K1000\nTHE SCOULAR CO,,A1500\nPROFESSOR,UNIVERSITY OF NEBRASKA-LINCOLN,Z9500\nTHANKS A MILLION,,C1100\nInventor,Fund Evaluation Group,Y4000\nFISCHER & BYRNE,,Z9000\nManager,\"Joey's Movers\",Y4000\n\"ENVT'L SCIENTIST (CHANGE MAKER FOR THE\",US EPA,X3000\nExecutive,The Magazine Group,C1100\nSenior VP,UMMS,Y4000\nMD,\"Brigham and Women's Hospital Physician\",H1100\nENGINEER,KEENE R&D/ENGINEER,Y4000\nData Analyst,Health Net,Y4000\nA,SONNENSCHEIN NATH & ROSENTHAL LLP,J7400\nPRESIDENT,J.F. CONTRACTING CORP.,B2000\nPresident & CEO,Miami Corporation,F2600\nProgrammer,DEShaw & Co,F2700\nPRESIDENT,BUTLER AUTOMOTIVE GROUP,T2000\nCEO,AMERICAN ENERGY OPERATIONS. IN,E1000\nCEO,GUCKENHEIMER ENT. INC,Y4000\nKTSM RADIO,,C2100\nPresident,Italian Shoemakers Inc.,M3200\nREAL ESTATE INVESTOR,SCOTT DEVELOPMENT ENTERPRISE LLCOWNER,Y4000\nARCHITECT,\"THE MCINTOSH GROUP, LLC\",Z9500\nSELF-EMPLOYED/WRITER/POLITICAL CONS,,J1200\nChairman,HWS Consulting Group,Y4000\nJACQUELINE VANCE ORIENTAL,,Y4000\nATTORNEY,MINAMI TAMAKI,Y0000\nBusiness Manager - Kvvu,Meredith Corporation,C1100\nPrinciple,Demich Consulting,Y4000\nElectrical Engineer,\"Hernandez Engineering, Inc.\",B4400\nCoo,Axiom Capital,F2100\nPRESIDEN,BRIDGEPORT HOSP FOUNDATION,Y4000\nVestar,,F4100\nADS VENTURES,,Y4000\nVICE PRESIDENT,STILES MACHINERY,Y4000\nWas Small Business Owner,Ret,X1200\nCEO,STEVENS MGMT,F4200\nPRESIDENT,TELEPLAN INTERNATIONAL INC.,Y4000\nREAL ESTATE BROKER,TRAILS WEST REAL ESTATE,F4200\nCourt Consultant,National Center for State Courts,X3200\nowner,Arrowhead Farm,J1100\nPrincipal,\"Fortress Investment Group, LLC\",F2700\nOPERATIONS MANAGER,GRAND APPLIANCE/OPERATIONS MANAGER,Y4000\nL PERRIGO CO,,J1100\nDIRECTOR OF EDUCATION,SYLVAN LEARNING,Y4000\nATTORNEY,LAW OFFICE OF ROBERT WASHINGTON,K1000\nPRESIDENT,BROWN & COLE STORES,G2400\nBUSINESS EX,BETTER BAKED FOODS INC.,G2000\nTraining Consultant,Bianchi Group,Y4000\nANIBAL ARZUAGA INC,,Y4000\nAttorney,Wendel Rosen,K1000\nGlobal Sales & Distr,DIEBOLD CREDIT CORPORATION,G5300\nOWNER,MPL CONSTRUCTION,B1500\nFARMING/STATE REPRESENTAT,SELF,G0000\nENGINEER,MS Consulting,Y4000\nPATHOLOGI,UNIV OF MICHIGAN HLTH SYS,H1130\nPresident,Cerrell & Associates,K1000\nCONTRACTOR,MID-STATE CONSTRUCTION,B1500\nCOUNTER THREAT INSTITUTE INTERNATIO,,Y4000\nC.P.A.,SOUTHPORT STATION/FINANCIAL MANAGEMENT,Y4000\nDean,University Of Maryland,H5100\nWHITLEY JENKINS &,,Y4000\nHOPPER SOLIDAY,,Y4000\nWINGARD CONSTRUCTION & REAL,,B1500\nInterior designer,Self employed,G5000\nProfessor/ Scientist,Yale University School of Medicine,H5150\nATTORNEY,\"WILLIG, WILLAMS & DAVIDSON\",K1000\nPHYSICIAN,SAMFARL CLINIC,Y4000\nM D I INC,,G2400\nTONER CABLE EQUIPMENT,,C4600\nMORTGAGE BANKER,513 Bank,F4600\nINSU,NORTH AMERICAN COACH RISK MGT.,Y4000\nFLANAGAN AND ASSOCIATES INC,,Y4000\nPRESIDENT,\"D'AMBRA CONSTRUCTION/PRESIDENT\",B1500\nEXEC,\"STATE UTILITY CONTRACTORS, INC\",Y4000\nNORTHCUTT CHEV,,T2300\nPRESIDENT,\"POLICY GROUP, INC\",K2000\nINDIANA SUPPLY,,Y0000\nTIME DOMAIN SYSTEMS INC,,D3000\nGENERAL SECRETARY/TREASURER,UNITED BROTHERHOOD OF CARPENTERS & JOI,LB100\nEDMAR CORP,,J7400\nTX LEGISLATIVE CONSULTANT,,K2000\nSUPERIOR ENGINEERED PRODUCTS,,Y4000\nUSG PUBLIC HEALTH,,H0000\nPresident,Hawkeye Capital Management LLC,Y4000\nFRANCHINI,,Y4000\nAttorney,\"VanGrack,Axelson, et al\",K1000\nEXECUTIVE,MILL-MAX MFG. CORP,Y4000\nPHYSICIST,BOSTON UNIVERSITY,Z9500\nWESTNET INC/CEO/PRES,,Y4000\nMINNESOTA STATE GOVT,,X3500\nPARTNER,LAWLEY SERVICES,Y4000\nPHYSICIAN ADMINISTRATOR,HARVARD VANGUARD MEDICAL ASSOCIATES,H1100\nEVANS LUMBER COMPANY,,B5200\nBUS,PACIFIC SURVEYING & ENGINEERING,B4300\nEXECUTIVE VICE PRESIDENT,COVENTRY FIRST,F3300\nself employed,pm plastic technologies,J1200\nLICHTER GROSSMAN ET AL,,K1000\nCEO,JAKE MARTIN & SONS CONTRACTORS,Y4000\nCEO,KITSON AND PARTNERS,F5100\nConsultant,\"A.J., Inc.\",Y4000\nIRELAND COFFEE-TEA,,G2600\nMedia Producer,Byron W DeLear,Z9000\nAttorney/Owner,Law Offices of Richard Turbin,K1000\nREAL ESTATE,WOODBURY CORPORATION,F4100\nBELLEMEAD OF MICH,,Y4000\nMICHAELS PLACE,,G2900\nPHILANTHROPIC CO,\"SIDLEY AUSTIN, LLP\",K1000\nFINANCIAL/MGMT. ADVISOR,SELF,G5270\nAssistant to College Counseling,Bentley School,Y4000\nSALES,SORENSON INC.,Y4000\nPRESIDENT,DRAGON FONE,Y4000\nreal estate broker,self,Z9000\nOwner,Eagle Construction,Z9500\nExecutive,Aclade & Fay,K2000\nPARTNER,EVOLUTION CAPITAL  LLC,F0000\nJAMEX RECORDS,,J1200\nBANKER,BANK OF KAUKAUNA,F1100\nC.E.O.,\"HOSS'S STEAK & SEA HOUSE\",G2900\nGALBREATH & COMPANY LLC,,Y4000\nExecutive VP - Produ,HerbaLife,H4600\nExecutive,Aon Risk Services,F3100\nDIRECTOR NATIONAL ACC,LUNDBECK INC.,H4300\nATTORNEY,DIEGUEZ AND ASSOCIATES LLC,Y4000\nTHE INMAN CO,,Y4000\nPartnership/Law,Information Requested,K1000\nAttorney,\"Kenneth E Chase, PC\",Y4000\nPHYSICIAN,WILLOW MEDICAL CENTER,Y4000\nTURNER TOYOTA,,T2310\nVICE CHAIRMAN,DELTA CAREER EDUCATION CORPORATION/,Y4000\nINFORMATION REQUESTED,TRAMMELL CROW RESIDENTIAL,F4100\nINTERNAL MEDICINE,BAY CARE CLINIC,H1100\nDirector Legislative Affairs,Siemens Corporation,C5000\n\"O'MALLEY LANGAN\",,K1000\nRisk Consultant/self,Reynolds Metals Co.,M2200\nNursing Assistant,Information Requested,Y4000\nLYON CAPITAL CORPORATION,,Y4000\nIT Consultant,Ernst & Young,F5100\nCHAIRMAN,HARPER CONSTRUCTION CO.,B1500\nOwner,Dolgen Ventures,J7400\nEXECUTIVE VICE,WASHINGTON REALTORS,F4200\nChairman of the Board,Adirondack Bank,F1000\nFINANCE,BW REALTY ADVISORS,J2100\nALLENTOWN RACQUETBALL & FITNESS,,G5800\nCEO,CMCS Inc.,Y4000\nSOFTWARE ENGINEER,LIBSON INC,Y4000\nCASSIDAV SCHADE GLOOR,,K1000\nDIGITAL MICROWAVE CO,,Y4000\nLONG ISLAND ADVANCE,,Y4000\nNOT EMPLOYED,LYLE.SCHWARTZ2@VERIZON.NET,Z9500\nInformation Requested,Hogan & Hartson LL,K1000\nBALL KIRK HOLM,,K1000\nCEO,THE BRIGHTUP GROUP,K2000\nATTORNEY,DIA PIPER,Y4000\nATTORNEY,SELECT MEDICAL,H2100\n\"DIRECTOR, GLOBAL CORPORATE REPUTATION\",ELI LILLY & COMPANY,H4300\nAttorney,\"Law Offices of Shu-Ping Chan, LLC\",K1000\nVIDEO EDITOR,SELF,G5240\nINSURANCE BROKER,\"MCGRIFF, SIEBELS & WILLIAMS\",F3100\nOwner,Lynch Enterprises,G0000\nMCDONALD&#39;S RESTAURANTS/OWNER/OP,,G2900\nWADE QUIN HOMES INC/OWNER/PRINCIPAL,,B2000\nVIDEO PROFESSIONAL,LYON REPORTING,Y4000\nOwner,Painted Plate,Z9500\nCONSULTANT,PARAGON CONSTRUCTION CONSULTING,B1500\nBOARD OF EDUCATION-NY CITY,,X3500\nARCHITEC,\"KINSLOW, KEITH & TODD, INC\",B4200\nSOUHEGAN WOOD PRODUCTS INC,,J7400\nREAL ESTATE,BRENTWOOD PROPERTIES,F4000\nRETIRED,N/A,G4500\nAttorney,Patton & Patton,K1000\nEXECUTIVE,ROYALL & COMPANY,H5100\nWALTER H WEABER & SONS,,A5000\nOWNER,B & D LAND SALES,Y4000\nPresident,University Of Anesthesiology Sc,H1130\nPresident,NavTech,Y4000\nConst. Mgr.,BEDROC Contracting,B1000\nEXECUTIVE VICE PRESIDENT,COLUMBIA UNIVERSITY,Z9500\ndenist,self employed,H1400\nINVESTMENT ADV,AKJ ASSET MANAGEMENT,F2300\nV.P. MFG,\"CONWOOD COMPANY, L.P.\",A1300\nREAL ESTATE AGENT,GMAC REAL ESTATE,F4200\nMOTORCYCLE INDUSTRY COUNCIL,,T8100\nAttorney,Debevoire & Plimpton,K1000\nadministrator,Faklis Orthopedic,H1130\nEXECUTIVE,DIAKON LUTHERAN SOCIAL SERVICE,Y4000\nOwner,Home Buyers Realty,F4200\nBOHANNON DEV CO,,J7150\nFINANCIAL ANALYST,RAYMOND JAMES AND ASSOCIATES,F2100\nN PHILADELPHIA HEALTH SYSTEM,,Y4000\nSUSTAINABILITY,PORTLAND STATE UNIV,Y4000\nR B S MANSFIELD CORP,,Y4000\nMANAGING PARTNER AND,ANTARES,F4100\nRegistered Nurse,Glenbrook Hospital,H2100\n\"Inv't Mgr\",Putnam Investments,F2100\nCEO,WG ROSS CORP.,Y4000\nExecutive,BWXT-Y12,D9000\nINVESTMENT ADVISTOR,,F2100\nproduce broker,Torbert Produce,Z9500\nDirector of Communic,UT System,Y4000\nREAL ESTATE B,MASTERS SERVICES INC.,F4000\nDEPUTY SHERIFF,WHEELER & CO. TEXAS,Y4000\nHEDGPETH CATERING AND CONSULTING CO,,G2900\nCFO,STAR MILLING CO.,A3100\nENGINEER,OM ASSOCIATES,Y4000\nAT,BREAKSTONE WHITE-LIEF & GLUCK PC,K1100\nVP - SPECIALTY BUSINESS UNIT,,H4300\nCADWALADER WICKERSHAM ET AL.,,K1000\nPEDIATRIC,JOHNS HOPKINS UNIVERSITY,H1100\nATTORNEY,CAMPPEG WOORS,Y4000\nANALYST,PENNANT CAPITAL MANAGEMENT,F2100\nLawyer,Hunter Mac Can,Y4000\n\"KINDSVATER TRUCKING/HITCH'N POST/OW\",,T3100\nPHYSICIAN,TMMG,Y4000\nGOUVEIA & MILLER,,Y4000\nAdmin. Asst.,TX House of Representatives,Y4000\nEntrepreneur,SPS Studios,F2500\nCEO,Lable Source Inc.,Y4000\nCONGRESS WOMAN,,J1200\nEXECUTIVE,PMI MORTGAGE,F4600\nCeo/ Sdi Division,Itc,Y4000\nCIVIL SERVANT,U.S. GOVERNMENT/DEPT. OF DEFENSE,X5000\nCONSULTANT,CONSTITUTION ADVISORS,Y4000\n\"VP, CORPORATE AFFAIRS\",HEADWATERS,E1000\nCLERK OF SUPERIOR COURT,RETIRED,X1200\nPRESIDENT,TRI-CAL INC,G4600\nOIL & GAS,SENTRY REFINING,B5100\nHORMEL,,Y4000\nAttorney,Lawrence Romans & Assoc.,Y4000\nSOFTWARE CONSULTANT,\"JSYMMETRIC, INC.\",Y4000\nLAWYER/CONSULTANT,\"ALTMAN WEIL, INC.\",Y4000\nPARTNER,FB CAPITAL PARTNERS,F0000\nMRC TELECOM INC,,C4100\nMETAL CRAFT CO,,M5000\nBERTUCCI CONTRACTING,,Y4000\nMgt,M2p2,J1200\nsoftware engineer,Mentor Graphics,C1300\nEducation,DOD Army,Y4000\nSALES,METROCON,Y4000\nPresident,\"Ethnic Solutions, Inc\",Y4000\nPRESIDENT,EMBRIA HEALTH SCIENCES,Y4000\nCONSULTANT,NATIONAL BIODIESEL BOARD,K2000\nLIGNIDITY FUND,,F2100\nPresident,AgFirst FCB,A4000\nLEWISTOWN IND SCHOOL,,X3500\n\"BEATRICE CO'S INC\",,J6200\nOwner,\"Martin Pedata, P.a.\",Y4000\nJ MARVIN MULLIS,,K1000\nEducational consultant,Self-Employed,H5000\nPawnbroker,Cash-N-Pawn,G4600\nPHYSICIAN,OTTO MARQUEZ MD FACEP,H1100\nATTORNEY,CHEIFETZ & IANNITELLI,K1000\nCEO,\"D'ADDARIO AND COMPANY\",M4000\nSEDCO INC,,E1100\nINFORMATION REQUESTED,US DEPARTMENT OF STATE,X3000\nExeutive,St. Francis Hospital,H2100\nPRESIDENT,HOME TELEPHONE CO.,C4100\nGILLAS THOMAS,,F4200\nOFFICE MANAGER,WMPM,Y4000\nS. V. P.,ROTHMAN INSTITUTE,H1130\nSupervisor,Town of Day,X3000\nCHAIRMAN,EMERALD FUNDS INC,F4000\nPICCOLO FLOWER SHOP,,Y4000\nInsurance Broker,Roach Howard Smith & Barton,F3100\nMANAGING DIRECTOR HEAD OF FED. GOV. R,FINANCIAL SERVICES FORUM,F0000\nPostal Rate Commissi,\"United State Gov't\",Y4000\nAVI CAPITAL MANAGEMENT,,Y4000\nPRESI,SCHNITZER STEEL PRODUCSTS INC,M2100\nOwner,Warren Edwards,Y4000\nPrincipal,Milwaukee School of Languages,Y4000\nSAM LINDER INC,,T2310\nPRESIDENT,SMH INTERNATIONAL/PRESIDENT,D0000\nCeo,Absolute Amenities,Y4000\nLOGISTICS MANAGEMENT SPECIALIST,US GOVERNMENT,X3000\nREAL ESTATE BROKER,KELLER WILLIAMS CORNERSTONE RE,F4200\nPHYSICIAN,UNIVERSITY OF MINNESOTA PHYSICIANS,H5100\nEDUCATOR,THE UNIVERSITY OF TOLEDO,Z9500\nGSC PARTNERS/CHAIRMAN/CEO,,F2100\nPresident,\"RPM Engineers, PLLC\",B4400\nReal Estate,Camson Vacations,F4000\nOWNER,DEBONAIR MECHANICALINC,B3400\nPLATTNER VERDERAME,,K1000\nExecutive,Kotter Associates,J7400\nEMERY ROTHENBUHLER & SONS,,Y4000\nVP FINANCE/ACCOUNTING,AIG,F3100\nVICTORY VAN LINES,,Y4000\nCANDIDATE FOR LT GOV,,J7400\nENGINEER,REMINGTON,B4000\nCEDARBROOK RENTALS,,F3100\nPRESIDENT,WHITE HORSE TAVERN,G1200\n09660-VP SUPPLY CHAI,Rite Aid Corporation,G4900\nDR HEWITT,,Y4000\nGATEWOOD SKIPPER & RAMBO P.C.,,K1000\nOwner,Monitor Machines,Y4000\nOwner,\"Kulp's of Stratford LLC\",B3000\nRetired/investor/dir,n.a,J1100\nSenior Manager Business Development,Cisco,C5110\nINFORMATION REQUESTED,\"O'MALLEY CONSTRUCTION\",B1500\nPRESIDENT,PRUET COMPANIES,E1120\nOwner Manager,Rynthmband Instruments,Y4000\nPresident,Bob Allen Cadillac GMC Nissan,T2300\nStatistician,US Food and Drug Admin,X3000\nACCESS COURIER INC,,T7100\nCEO,CKx.com,C2800\nWAND PARTNERS,,Y4000\nSENIOR EXECUTIVE VICE PRESIDENT,HUNTINGTON BANK,F1000\nC.E.O.,AUSTIN FINANCIAL GROUP,F0000\nGALARY INC,,Y4000\nTravel Services,Executive Marketing Services,Y4000\nENVIRONMENTAL MANAGEMENT,CITY OF LOS ANGELES,X3000\nPRINCIPAL,LEIGHTON ASSOCIATES INC.,Y4000\nPhysician,Seattl Ob-Gyn,H1100\n\"ST JOHN'S HOSPICECARE\",RN,Y4000\nPresident,Grameen Foundation,Y4000\nDEVELOPER,TRILOGY INTERACTIVE,Y4000\nCROWN DISTRIBUTION CO INC,,Y4000\nCEO,FRANCISCAN HEALTH SYSTEM,H0000\nOwner,Thumb Ranch,A3000\nExecutive,Pioneer Group,F2100\nHEAVY EQUIPMENT OPERATOR,,B1000\nPHYSICIAN,JUNEAU EMERGENCY MEDICINE ASSOCIATES,Z9500\nBRESLOW NORRISON TERZIAN,,B2000\nOFF OF PETER S BUR,,K1000\nKFI/KOST/KACE/COX,,C2100\nRADIANT OIL,,E1170\nnetwork manager,Lincoln Property Company,F4000\nMember,Board of Regents,F4500\nProfessor,University of Los Angeles,H5100\nRAMIREZ MECHANICAL SYSTEMS INC,,B3400\nV.P.,\"MAGNUS MOBILITY SYSTEMS, INC.\",Y4000\nCEO,THE PM GROUP,Y4000\nBUILDER,MACLEISH BUILDING INC.,B1000\nATTORNEY,\"PA HOUSE OF REPS, DEMOCRATIC CAUCUS\",Z9500\nPresident,Prospera Credit Union,F1300\nMONTCLAIR CARE CENTER,,Y4000\nPRESIDENT/CEO,\"J.R. MORGAN OIL COMPANY, INC./PRESI\",G4300\nFED EMP CLAIM PROCESSOR,BCBS,F3200\nBusiness Owner,William Konopnicki,Y4000\nPodiatric Physician,HI Foot Clinic,H1130\n\"Exec. Director, SUMM\",SUMMERDANCE Santa Barbara,J1200\nEMERGENCY PHYSICIAN,HOSP OF SAINT RAPHAEL,H1100\nBUILDER,PAN JACKSON COMPANY,B1500\nRN,BUTLER HOSPITAL,H2100\nAssociation,Chickasaw Nation,G6550\nSR. VICE PRESIDENT,STERLING INVESTMENT PARTNERS,F2100\nBusiness Consultant,\"Levant Suez Consulting, LLC\",Y4000\nATTORNEY,BALZLI & ASSOCIATES,Y4000\nEnvironmental Consultant,Bergeson & Campbell,E2000\nREGIONAL TRAINING MGR.,APPLE,C5110\nLAW ENF,\"LEE COUNTY SHERIFF'S OFFICE\",Y4000\nPRESIDENT,SAVATREE,Y4000\nHOPKINS VAUGHN & ANDERSON,,K1000\nCOMP,COLORADO DEPARTMENT OF TRANSPO,X3000\nATTORNEY,MAYER B. GORDON & ASSOC PC,K1000\n\"VINCENT, ELKINS\",,K1000\nATTORNEY,SAWAYAROSE & SAWAYA PC,K1000\nGIN MANAGE,MARBLE BROTHERS FARM GIN,A1100\nRichmond Cold Storage,,T7200\nSr Vice President,Peterson Companies,Y4000\nTEAC,SCHOOL BOARD OF PINELLAS COUNT,Y4000\nExecutive Officer,West Virginia Assoc of REALTORS,F4200\nCHARLOTTE OBSERVER C,,C1100\nCEO,ZELNICKMEDIA,Z9500\nCHAIRMAN OF THE BOARD,ATMEL CORP/CHAIRMAN OF THE BOARD,C5110\nDENTIST,DEWITT DENTAL PROFESSIONALS,Y4000\nExecutive,Gilmore and Sons,B1500\nVP COMMUNICATIONS,DOUGLAS YONKO HENSLEY & CO.,G2850\nPRESIDENT/CEO,DOUBLE L,Y4000\nCommunity service vo,Self-employed,G0000\nCOTTON PRODUCER,S-K RANCH - SELF,A1100\nMORGAN STANLEY/DEAN WITTER/SENIOR V,,F2300\nSW Engineer,Cisco Systems Inc.,C5110\nHEALT,LUTHERAN FAMILY HEALTH CENTER,Y4000\nATTORNEY REAL ESTATE,SELF-EMPLOYED,F4000\nINSURANCE AGENT,PETER NOBILE INS AGENCY INC/INSURAN,Y4000\nCOMP EXEC,TRY SERVICES,Y4000\nmanager,Purgatory Golf Club,G6000\nGrants Manager,No Va Regional Commission,Y4000\n\"PRESIDENT, FTN FINANC\",FIRST HORIZON,F0000\nMEADE COUNTY REPUBLICAN PARTY,,Y4000\nINVESTOR,SOROS,F0000\nWATERSIDE FINANCIAL GROUP,,F0000\nInsurance Agent,John T Abram INC,Y4000\nPost Doc,GCG,J1200\nCEO,MILLER OIL CO.,E1100\nWriter,Fox Television,C2100\nKRAMER LEVIN JAFTALIS & FRANKEL,,K1000\nExecutive (Deputy Di,State Of California - California S,X3000\nPRESIDENT,AGRI AND KING INCORPORATE,Y4000\nAMERICAN SEVENTIES,,J5100\nINFO TECH,VERZION,Z9500\nCHIEF EXECUTIVE OFFICER,\"R.B. CONSTRUCTION, INC.\",G1200\nPhysician,los Palos Oncology and Hematology,J1200\nSTOCKBROKER,MORGAN STANLEY,J5100\nPRESIDENT,BLUE FIELD STRATEGIES,Y4000\nphysician,emergency medical associates,H1100\nBanker,\"National Bankshares, Inc.\",F1100\nAttorney,Law Office of John H Trevena,K1000\nPRES. & CEO,MARK IV CONSTRUCTION,B1500\nconsultant,GGW commucications,Y4000\nRETIRED,PRINCETON UNIVERSITY,J7400\nContractor,\"Michael F. Ronca & Sons, Inc.\",Y4000\nPT,\"Kentucky Physical Therapy & Rehab, Inc\",H1700\nMAXWELL PAPERS INC,,A5200\nDELIOTTET & TOUCHER,,F5100\nPsychologist,\"Linda O Hochman, PhD\",Y4000\nLAWYER,\"MCKOOL SMITH HENNIGAN, P.C.\",Z9500\nATTORNEY,CARNES & THORNBURG LLP,K1000\nKANSAS CARDIOLOGY ASSOC,,J1100\nVANCE KIRKLAND FOUNDATION,,X4100\nMARIAH BOATS INC,,T8300\nFINANCIAL CONSULTANT,SELF,J9000\nLawyer,\"Luxenberg,Johnson, and Dickens\",Y4000\nPresident,\"Applied Data Resources, Inc.\",Y4000\nPHYSICIAN,SAMG,H1130\nGEDNEY M HOWE III PA,,Y4000\nTEACHER,COLEGIO CRISTO DE LOS MILAGROS/TEAC,Y4000\nPROGRAM MANAGER,\"REALLEGAL, LLC\",Y4000\nChairman,Caelum Research Corp.,J7500\nCROP INSURANCE AGENT,MARY ROACH INSURANCE AGENCY,F3100\n\"Director, M&A\",Sikorsky,D2000\nTASER INTERNATIONAL,,Y4000\nSEAHAWK CORP,,Y4000\nPRISOCK IMPLEMENTS,,A4200\nLIAISON OFFICER,US ARMY,X5000\nCaregiver,Joseph family,Y4000\nMINING ENGINEER,WEBBER & WEBBER MINING CONSULTANT INC,Y4000\nLYNN JACKSON SHULTZ,,Y4000\nREAL ESTATE DEVELOPER,CUTLER MANAGEMENT CORP,F4000\nChairman,Brennan Mgmt. Group,Y4000\nOwner,\"Mad Dog Wireless, Inc\",Z9000\nRadio Personality,The Arlene Herson Show,Y4000\nProgram Officer,United Way of Mass Bay,Y4000\nLawyer,\"Kaufman Gartner, PC\",K1000\nFARM AID,,J7500\nSELF EMPLOYED/HOMEMAKER,NOT EMPLOYED,Y1000\nWILLIAMS & PETERS CONSTRUCTION,,B1500\nTRU LINE LITHOGRAPHING IN,,Y4000\nYOUTH HOSTEL OWNER,SELF,T9000\nIRONWORKERS,,LB100\nACCOUNT MANAGER,SALESFOCUS,J1100\nAMERICA FIRST COMPANIES,,F2100\nAVI FOODS,,G4850\nMANAGEMENT,OWEN JUSTICE DDS,H1400\nUSER EXPERIENCE RESE,CISCO,J7400\n\"DIRECTOR, SCHOOL NUTRITION PROGRAM\",BURKE COUNTY BOARD OF EDUCATIO,H1700\nExecutive,NorStar Specialty Foods Inc,Y4000\nGREENWOOD MILLS INC,,Y4000\nEMPLOYEE,\"THE LIVINGSTON GROUP, LLC\",K2000\nOIL & GAS,VICTORIA ENERGY CORPORATION,E1000\nNORTH JERSEY EYE ASSOC,,H1120\nContractor,Gene Fritzel Construction,B1500\nPUBLISHER,THE SHOWBOX MAGAZINE,C1100\nD D S,Self-Employed,H1400\nATTORNEY,KRAMER LEVIN NAFTALIS & FRANKEL,K1000\n\"THE CHILDREN'S CENTER\",,JE300\nEVP Chief Lending Op,Post Properties,F4100\nPROFESSOR,GEORGETOWN U LAW CENTER,J1200\nVice President,St Louis Honda,T2300\nREAL ESTATE,BOSTON LAND CO,F4100\nInformation Requeste,Newport Home Loan,F4500\nphysicist,Alcatel-Lucent,C4600\nOWNER,WALT KOCH LTD,Y4000\nPUBLIC SERVICE,TOWNSHIP OF MONTGOMERY,Y4000\nPSYCHIATRIST,NOT EMPLOYED,Y1000\nPRESIDENT,\"SMART & ASSOCIATES, INC.\",Y4000\n\"SPANGENBERG, SHIBLEY &\",,K1000\nGM/OWNER,\"GRAIN STATES SOYA, INC.\",Y4000\nPresident,Food With Care,Y4000\nFTP,CHRIS GUZMAN,Y4000\nPresident and CEO,M Financial Group,F0000\nState of Rhode Island,,J7400\nCollege Adminstrator,Red Rocks Commun college,H5100\nMED CONSULTANT,,H0000\nSANDPIPER IMPORTS,,Y4000\nSTRAIN BROTHERS INC,,B1000\nMOUNTAIN AIR CARGO,,T1500\nSIF,,Y4000\nKENMORE STAMP CO,,G1200\nSELF EMPLOYED-CONSULTANT,,G5200\nAttorney,Rhoads-Weber Shandwick,K2000\nInvestment banker,JC Bradford,F2300\nATTORNEY,CROWLEY & DOUGLAS L.L.P.,K1000\nPRESI,ATLANTIC AMERICAN CORPORATION,Y4000\nPATENT ATTORNEY,LATHROP & GAGE LLP,K1000\nManager,Latta Road Nursing Home,H2200\nO,\"ROCKWOOD CAPITAL MANAGEMENT, INC.\",F2100\nMANORCARE INC,,Y4000\nSENIOR ADVISOR,FIRST DATA SOLUTIONS,Y4000\nMANAGEMENT,PARSAM,Y4000\nSTUDIO EXECUTIVE,TWENTIETH CENTURY FOX/STUDIO EXECUT,C2400\nPersonal Chef,Retired,X1200\nMEDICAL DOCTOR,WASHINGTON UNIVERSITY,H5100\nHOLLYWOOD ENTERPRISES,,Y4000\nRadiologist,Radiology Assoc. Of Appleton,H1130\nOwner,America`s Industrial & Comm. Supply,Y4000\nCorporate Treasurer,NRG Energy Inc,E1630\nPRES,ADVANCE RESEARCH CHEMICALS INC,M1000\nRUST COMPANY OF THE WEST,,F2100\nEXECUTIVE,SABEY CORP,F4500\nOWNER,BPTRENDS,Y4000\nHeavy Equipment Operator,Columbus Steel,LB100\nOPRYLAND,,T9300\nOwner,Expert Research Group Inc,Y4000\nMARKETING AD,TESSIER ASSOCIATES INC,Y4000\nSr VP,Dakota Community Bank,F1000\nWINE SALES,JULIE RANAHAN,Y4000\nTRUSTEE,ERIC RAJALA,F5200\nCEO,ASTI,Y4000\nTRUCK DRIVER,UFI,Y4000\nResidential Real Estate Investment,\"R Hendrix Enterprise, LLC\",Y4000\nATTORNEY,\"GERAGHTY, DOUGHERTY & EDWARDS\",Y4000\nDeveloper,Thomas Safran & Associates,F4100\nSOARING EAGLE DISTRIIBUTING,,Y4000\nSR. MANAGING DIRECTOR,\"C.S P. ASSOCIATES, INC.\",G5270\nCO-OWNER,HEAD LEE NURSERY,A8000\nPRESIDENT,TRANSPORTATION & LOGISTICAL SERV. CORP,Y4000\nGRACE TAMA DEVELOPMENT CO.,,F4100\nEXECUTIVE,NAVMAR,D9000\nTruck Driver,\"Ziegler, Inc\",Y4000\nProgrammer/Owner,Fetch Suttworks (Self-employed),Y4000\nPresident & CEO,\"Twenty-First Century Group, Inc\",K2000\nDEVELOPMENT ASSOCIATE,EQUITY RESIDENTIAL,F4100\nOWNER,NATIONAL ELECTRIC LLC,Y4000\nATTORNEY,LANGDON & EMISON,Z9500\n\"MONTGOMERY, MCCRACKER WALKER ET AL\",,K1000\nInformation Requeste,Veritude,Y4000\nAttorney/Manager,Texas General Office,K1000\nPROFESSOR,UNIV OF MICHIGAN,Z9500\nHUMAN RESOURCES EXECUTIVE,MOORE STEPHENS FROST,F5100\nMANAGER,\"WORLDNAMES, INC\",Z9500\nTRI-LITE MFG CO,,Y4000\nExecutive,The Buncher Company,Y4000\nExecutive,Target Corp,G4300\nVP ASSET PROTECTION,\"SUPER VALU, INC\",J7400\nAttorney at Law,Staffwise Legal Inc.,J1200\nTEACHER,MASON PUBLIC SCHOOLS,X3500\nLW Support Foreman,AEC,E1210\nECONOMIC DEVELOPMENT CONSULTANT,DOWNTOWN TUCSON PARTNERSHIP/ECONOMI,J7400\nParalegal,Fenwick & West LLP,K1000\nPhysician,Syracuse Orthopaedic Specialists,H1130\nMEDICAL SUPPLIER,DYNAMIC MEDICAL SYSTEMS,Y4000\nPartner,\"McNeely, Pigott & Fox\",K1000\nArts Administration,Marion S C Arts Com,Y4000\nChief Executive Offi,\"Elser & Avacone, Inc\",Y4000\nEDISON-CHOUEST OFF SHORE,,Y4000\nArchitect,Minno & Wasko,B4200\nSELLERS & ATKINSON,,Y4000\nEXECUTIVE,CLARK HILL PARTNERS,Y4000\nOWNER,STARBOARD ADVERTISING GROUP,G5210\nCouncil Aide,City of Los Angeles,X3000\nSALES,HALLIBURTON,E1150\nBUSINESS OWNER,WESTERN DEV. GROUP,F4100\nREAL ESTATE DEVELOPE,SILVER RESIDENTIAL CO.,Y4000\nExecutive,Torguire Trise,Y4000\nFLOY TAG & MFG,,M1500\nRED RIVER VALLEY/WESTERN RR CO/EXEC,,Y4000\nCEO,Pathfinder Inc,H2200\nREAL ESTATE DEVELOPER,\"IMAGINE INFILL, LLC\",F4000\nTERREMARK,,F0000\nOWNER,GREAT NORTHERN TOOL & DIE INC,M5000\nPERNSTEINER LOGGING,,A5000\nEXECUTIVE,AHERN INSURANCE BROKERAGE,F3000\nOwner,Armstrong Fence Co.,Y4000\nCEO/President,Barksdale Federal Credit Union,F1300\nOWNER,MC CUNE CHRYSLER-JEEP,T2300\nPT ASSISTANT,PARKWAY REHAB,J7400\nENGINEER,GENERAL MOTORS CO.,Z9500\nConsultant,Denovo Communications,Y4000\nCEO,Century Group,J5200\nRESOLUTION MANAGEMENT GROUP INC,,Y4000\nNeurologist,Athens Neurological Associates P.C,H1130\nCOLLECTOR,MIDWEST ACCEPTANCE CORPORATION,Y4000\nINS AGENCY,SELF EMPLOYED/INS AGENCY,Y4000\n\"HR LEAD, BENEFITS, DEVLPMT & HR SYSTEM\",MONSANTO,A4000\nCo-Owns HBE Corp.,Self,G0000\nPOLICY ANALYST,TX MED. ASSOC.,H1100\nVice President,Financial 21 Community CU,F1300\nManager,American Sign Shop,J1200\nKAPLAN KILSHEIMER & FOX,,J1200\nLawyer,Latham & Watkins,Z9500\n\"PRESIDENT, FIELD O\",\"KARA HOMES, INC.\",B2000\nOWNER,ISC DISTRIBUTORS INC.,Y4000\nNASHVILLE NUPHOLOGY,,Y4000\nCHIEF OF STAFF,GORE 2000,Y4000\n\"Vice President, Communications\",Consumer Electronics Association,C0000\nPETER L BUTTENWIESER AND ASSOCIATES,,J1200\nTAX ACCOUNT,SELF-EMPLOYED,F5100\nBUSINESS OWNER,CHESAPEAKE BAY HELICOPTERS,Y4000\nLAWYER,MARTHA BANNERMAN,Y4000\nCORP COUNSEL,PFIZER INC.,H4300\nHARSCO TRACK TECHNOLOGIES,,M2000\nOR PACIFIC DEVLPMT,,Y4000\nSERV WELL,,G1300\nUNIVERSITY OF ILLINOIS/PROGRAMMER/M,,H5100\nOIL DEALER,SELF-EMPLOYED,E1100\nDIRECTOR OF HR,\"HIGHLAND CAPITAL MANAGEMENT, L.P.\",F2100\nMILLCREEK SCHOOL INC,,Y4000\nSurgeon,Urology Associates,H1130\nPhysician,Sdelf-Employed,G0000\nCONSULTANT,JAYA SOLUTIONS,Y4000\nInvestment Banking,Casmir Capital,F0000\nArts Advocate,Self employed,G0000\nLOS ANGELES COUNTY MUSEUM OF ART,,X4200\nCEO,TEKNEKRON CORP,Y4000\nmom,na,Y2000\nSURGEON,\"DRS LENTRICK & POLH, INC.\",Y4000\nEDISON PROJECTS,,Y4000\nDM,VITAMIN SHOPPE,G4900\nPRESIDE,JOHN FABICK TRACTOR COMPANY,A4200\nProf of Chemistry,UnivCa Berkeley,H5100\nENGINEER,WYOMING DEPARTMENT OF TRANSPORTATION,Y4000\nHistoric Preservation Administrator,National Conference of State Historic,Y4000\nJAMES RIVER COAL COMP.,,E1210\nLawyer,Blackburn Hundley Firm,K1000\nMORTGAGE BANKER,PLAZA HOME MORTGAGE,F4600\nBIG APPLE SIGN CO,,Y4000\nSTATISTICIAN,FRED HUTCHINSON CANCER CENTER,H2100\nCARLAN CONSULTING GROUP INC,,Y4000\nATTORNEY,REED SMITH SHAW & MCCLAY,K2000\nREGENCY PARK CORP,,Y4000\nspecial events,self,G5200\nREAL ESTATE DEVELOPER,SIMONE DEVELOPMENT,F4100\nEXECUTIVE,Community Foundation,X4100\nPresident,Nabholz Construction Corp.,B1500\nLEVINE LEICHTMAN CAPITAL,,F2600\nChief Executive Officer,Weirton Geriatric Center,H2200\nSHEFFEILD CONTAIMER CORP,,M4100\nEXECUTIVE,SOUTHERN LABEL,M7000\nINVESTMENT BROKER,\"A.G. EDWARDS, INC\",F2100\nTOXICOLOGIST,ST. LOUIS UNIVERSITY,H5100\nINSURANCE BROKER,RICHARD S. SMITH & ASSOCIATES,F3100\nOPTICIAN,TROPICAL OPTICAL,H3300\nREAL ESTATE INVESTOR,TRACY PATRICK III,Y4000\nMANAGED HEALTHCARE SY,,H0000\nSALESMAN,WESCO DISTRIBUTION,Y4000\nAPPLE INC,APPLE COMPUTER,C5110\nOwner,\"Lombard Financial Service, Inc\",F0000\nBiomed Tech,Ge Healthcare,H4100\nExecutive,\"FINEX Management Services, Inc.\",C5130\nAttorney/Partner,Perkins Co LLP,K1000\nWEBMASTER,UNIVERSITY OF TEXAS-AUSTIN,H5100\nPresident,\"Smith's Of Okeechobee\",Y4000\nCOLLEGE PROFESSOR,UNIV OF MI,H5100\nPRESIDENT & FOUNDER,IMAGINE PHILANTHROPHY,J7400\nDELANEY & KELLY CONSTR CO INC,,B2000\nCUSTOM PRINTING,,C1000\nPresident,Probolsky Research,Y4000\nCAL-SIERRA LEASING,,Y4000\nInvestor,None,Y1000\nTHE PRINTED PAGE/ASSISTANT MANAGER/,,C1300\nENGINEER,\"DAVID EVANS AND ASSOCIATES, INC\",Z9500\npresident,Health & Medicine Counsel,H0000\nPYSCOTHERIPIST,Self employed,G0000\nOwner,Tribble & Stephens,B1000\nPRESIDENT,MAHESH M. PATEL  MD INC.,H1100\nPATENT ATTORNEY,\"ROCHE MOLECULAR SYSTEMS, INC.\",H4300\njournalist,Not employed,X1200\nProfessor,University Of Utah,J7400\nXMI CORPORATION,,M3100\nVP,\"PMA, Inc\",Y4000\nProduction Exec,Showtime Networks,C2200\nBUILDING CONTRACTOR,MC CORMICK CONSTRUCTION COMPANY,B1500\nRN,FFX Hospital,J1200\nGovernment relations,The Macon Edwards Co.,K2000\nMANAGING DIRECTOR,ARGENT FINANCIAL GROUP,F5100\nMgmt General Mgr,GE Consumer & Industrial,M2300\nTrader,Asia Chemical,M1000\nENGINEERING,\"MICRON TECHNOLOGY, INC.\",C5110\nMarketing,Catalyst Communication,J9000\nTAKING CARE OF DAD,NONE,Z9500\nOWNER,JERRY LANGLEY OIL COMPANY L.L.C.,Y4000\nWELLNESS EDUCATOR,SELF EMPLOYED,J7400\nG L V INCORPORATED,,Y4000\nISLAND CAPITAL/CHAIRMAN/CEO,,J7150\nDUNLAP & MORAN PA,,Y4000\nGeneral Contractor,Doug Guard Construction,B1500\nSALES,AON,F3100\nFENNMORE DRAIG PC,,K1000\nINVEST-RANCHING,,Y4000\nJEFFERSON CONSULTING GROUP LLC,,K2000\nDREXEL ENTERPRISES INC LTD,,Y4000\nCONSULTANT,\"STERNBERG CONSULTING, INC.\",J5100\nROBINS-KAPLIN-ETAL,,K1000\nELLIS LAWTHORNE & SIMS,,Y4000\nLobbyist,Johnson Madigan Peck,K1000\nEXECUTIVE,COMMONWEALTH ENERGY CORP.,E1600\nINSURANCE,QUERBE & NELSON,F3100\nBANK OF SAN RAMON VALLEY,,F1100\nMACK AND COMPANIES,,J1100\nFinancial Services,GE Money,F1400\nExecutive,\"Yahoo, Inc.\",C5140\nEXECUTIVE,EARTHLINK,C5140\nEXECUTIVE,LSG CONSULTING SERVICES,Y4000\nAttorney,Robinson Bradshaw & Hindon PA,K1000\nTBSALES,,C2200\nENGINEER,INFORMATION REQUESTED PER BEST EFFORTS,D2000\nBUSINESS MANAGER,UNICORN RESEARCH INC,Y4000\nCEO,SUMMIT REGIONAL HEALTHCARE/CEO,H2100\nELECTRICAL CONT,SHELLY ELECTRIC INC,Y4000\nLEGAL SECRETARY,COMBS & COMBS,Y4000\nCOMMERCIAL RE,CUSHMAN E WAKEFIELD/COMMERCIAL RE,F4200\nPHYSICIAN,OXFORD HEALTH PLANS,H3700\nH & L PRODUCTIONS,,E1120\n\"SENIOR VICE PRESIDENT, CFO\",GID INVESTMENT ADVISERS LLC,F4100\nPETER CONDAHES CO,,Y4000\nMAPP & MAPP,,Y4000\nReal Estate,Blue Zees,F4000\nExecutive Coordinato,Ernst & Young,F5100\nBUSINESSMAN,SELF-EMPLOYED,C1100\nVICE PRESIDE,PROTEZ PHARMACEUTICALS,Y4000\nATTORNEY,DAVID B. VICKERY,Y4000\nSalesman,American Express,F1400\nART & ANTIQUE BROKER,SELF,G4600\nVENTURE CAPITAL,HEALTHMARK VENTURES,F2500\nATTORNEY,\"MILLER & STEENO, P.C.\",K1000\nASSOCIATE DEAN,MIT,H5100\nManagement,\"Madeleine Crouch & Co, Iinc\",Y4000\nAttorney,Hughes Watters & Askanase,K1000\nSelf,Arkan Somo & Assoc,Y4000\nATTORNEY,USA LAW INC.,Y4000\nVice President,Dupont,M1000\nOWNER,STATE FARM INSURANCE - ENNIS,F3400\nAgent,The Todd Organization,F3300\nTAWAS X-RAY CLINIC P C,,Y4000\nPresident,Thackston & Co.,Y4000\nREALTY CNTR BETTER HOMES,,F4200\nAttorney,Shevel & Krems,Y4000\nBETHESDA FOUNDATION,,H2200\nDIRECTO,HANCOCK COUNTY SAVINGS BANK,F1100\nPRESIDENT CEO,BARKER GMAC,Y4000\nATTORNEY,DEVINE & MITLVOCT,K1000\nUS BALTIC FOUNDATION,,Y4000\nDI CARO HIGHMAN,,Y4000\nattorney,requested,K1000\nBRYAN CAVE,OUTER KC COMMUNITY FDN,K1000\nSchool Psychologist,Manatery County Scho,Y4000\nEXECUTIVE,AMERCABLE,C2200\nOWNER,A BIT OF THIS,Y4000\nLEGISLATIVE ASST,RIVERSIDE COUNTY,X3000\nComm & Leg Liaison,Wa Academy Of Pediat,Y4000\nPLANNER,HARVARD COMMUNITY HEALTH PLAN,Z9500\nSALES,HOUSTON SUPPLY,Y4000\nPRESIDENT,BRITE-O-MATIC,Y4000\nOWNER,NAMANS SUPER MARKETS,G2400\nPEOPLE OF MARSHALL COUNTY,,Y4000\nORTHOPAEDIC SURGEON,SUN VALLEY ORTHOPEDIC SURGEONS,H1130\nInspector,State of Illinois,X3000\nPartner,TR Shadow View LLC,Y0000\nPresident,DRD Intl. Inc.,Y4000\nFARMER,BARNES ORCHARD LTD,Y4000\nPlanner,Geneva Investments,Y4000\nRTT,ST-STATE OF IOWA (GROUP 2),L1200\nGeneral Counsel & Corporate Secretary,MeriStar Hospitality Corporation,F4100\nAttorney,\"Ullman, Shapiro & Ullman\",K1000\nNURSE,N/A,X7000\nDevelopment Associate,Buchert Development,Y4000\nWEB DEVELOPER,MOZILLA,Y4000\nPhysician,\"Gundersen Clinic, Inc.\",H1100\nAccountant,City Animation,Y4000\nPhysician,Central Connecticut Cardiologist,H1130\nDEVELOPMENT OFFICER,SISTERS OF THE HOLY CROSS,Y4000\nInvestment Banker,\"The Breckenridge Group, Inc.\",Y4000\nINFO REQUESTED,Arthritis Center,H1100\nSYSTEM A,LEEPFROG TECHNOLOGIES INC.,J1200\nOFFICE CLERK,LBUSD,J1200\nDEVELOPMENT,TRANSYLVANIA UNIVERSITY,H5100\nARCHITECT,TULLY ARCHITECTURAL CONSULTING LLC,B4200\nPRES,\"NEIL'S AUTOMOTIVE INC\",Y4000\nManagement,Asg Realty,F4200\nPHYSICIAN,\"PIONEER PHYSICIANS, INC.\",H1100\nLOGISTICS,TLC,Y4000\nProgram Director,PHFE,Y4000\nEXECUTIVE,SCOTT BRASS INC,Y4000\nFinance,Davidson Entities,F4000\nPresident,\"Khanna & Guill, Inc\",C2100\nCEO,The Mountain Company,Y4000\nRegional Director,Senator Ken Salazar,X3000\n\"WATERS, KRAUS & PAUL\",TRIAL LAWYER,Z9500\nExecutive Vice Presi,Oldcastle Materials Inc.,B5100\nVETE,COUNTY LINE VETERINARY HOSPITA,A4500\nProduct Specialist,W L Gore and Associates,M1000\nPolitical Advisor,Self Employed,J7400\nHedge Fund,Investcorp International,F0000\nCEO,BLUE LAKE CRANE/CEO,B5400\nInsurance,Nation Safe Driver,Y4000\nOwner,\"Hardies Fruit & Vege Co, Inc\",A1400\nFAMILY PHYSICIAN,UMMHC,H1100\nOwner,Law Officies Of Heidi H. Romeo,Y4000\nGroom LAW Group,,K1000\nCPA,PAUL MCCOY FAMILY OFFICE SUPERVISORS,Y4000\nSF BOARD OF SUPERVISO,SAN FRANCISCO,X3000\n\"PARKER, SMITH & FECK\",,F3100\nPresident,Self-Employed,F1000\nATTORNEY,MS. MARY E. HITT LAW FIRM,K1000\nOWNER,DR. KENT SMITH MD,H1100\nDir.Asset Mng.,Ma.Housing Inv.,Y4000\nNanny,self,J1200\nPRESIDENT,LEHIGH PORTLAND CEMENT CO,B5100\nREAL ESTATE BROKER,MARKETPLACE REAL ESTATE,F4200\nCONSU,OUTDOOR MEDIA CONSULTANTS INC,G5230\nEXECUTIVE,\"ROHO, INC.\",Y4000\nPUBLICATIONS COORDINATOR,NORTHERN KY UNIVERSITY,Z9500\nVP,BROWNE & RUDNICK,K1000\nCommissioner,Metropolitan Airports Commission,T1600\nFarmer,\"Citicorp, Inc\",F1100\nAttorney,\"Jackson Walker, LLP\",K1000\nPresident,Frazer Lanier,Y4000\nSTATE OF HAWAII DEPT OF EDUCATION,,X3000\nOwner,Reliance Health Care,H0000\nDIRECTOR GOVERNMENT & REGULATORY AFFAI,COMCAST (CC) OF WILLOW GROVE,C2200\nPUBLICITY FO,PACIFIC COMMUNICATIONS,Y4000\nPLUMSOCK MESOAMERICAN STUDIES,,J1200\nMD,University of Virginia,H5100\nBOA,PRAIRIE HILLS ELEMENTARY SCHOOL,Y4000\nProfessor,Usc,Y4000\nTENNESSEE VALLEY EXHIBIT COMMISSION,,Y4000\n\"SR. VICE PRESIDENT, MEDIA RELATIONS\",SONY PICTURES ENTERTAINMENT,C2400\nOwner,Arbonne International,Y4000\nSELF,PROWLER FISHERIES,Y4000\nPres-gm,Kron-tv,C2100\nSTAR REALTY,,F4200\nRN,Banner Desert Medical Center,J1200\nMAF & ASSOCIATES,,Y4000\nCEO,ORLEANS HOME BUILDING,F4100\nRETIRED,RETIRED,E1110\nANN HARRISON SCHOOL OF DANCE,,H5000\nPHYSICIST,UNIVERSITY OF NORTH DAKOTA,H5100\nPRESIDENT,ASA,T2400\nBOAT BUILDING,SCARANO BOAT BUILDING,Y4000\nOWNER,G & W DIESEL,Y4000\nHUMAN RESOURCES MGR.,BDO SEIDMAN,F5100\nUNITED STATES POSTAL S,,X3700\nPCA/PRESIDENT/CEO,,B5100\nRisk Manager,Deere & Co.,A4200\nPresident,Forensic Accounting & Investigative Re,Y4000\nOrthopaedic Surgeon,Midlands Orthopaedics,H1130\nPresident,Golseth & Gregson Insurance Se,F3100\nGREAT TRADITIONS,,Y4000\nTv Broadcaster/Produ,Hollywood Close Ups,Y4000\nVP/Partner,The Dutko Group LLC,K2000\nPRESIDENT,CENCORE GROUP,Y4000\nEnvironmental Management,\"Sesarm, Inc\",Y4000\nREAL ESTATE SALES AG,MARY WORRALL & ASSOCIATES,Y4000\nPHOENIX MANAGEMENT SERVICES INC,,Y4000\nTENN HERITAGE ENTERPRISES,,B2000\nPASTOR,NEW HOPE MISSIONARY BAPT. CH,Y4000\nBIG FOOD ENTERPRISES INC,,G2000\nPENN MUTAL,,F3300\nACCOUNTANT,\"HARVEY, COVINGTON & THOMAS, LLC\",Y4000\nVICE PRESIDENT,CA CABLE TV ASSN,C2200\nADKISON NEED,,K1000\nSTAFF,US TREASURY,X3000\nHUMAN RESOURCES,GM LORDSTOWN COMPLEX,Y4000\nRETIRED. TEACHER,RETIRED TEACHER,X1200\nCUSTOM HOMEBUILDER,ROGER FITE HOMES/CUSTOM HOMEBUILDER,B2000\nPIZITZ REALTY COMPANY,,F4200\nHOUSTON PRO MEDICAL,,H1100\nAssistant District Attorney,\"Montgomery County District Atty's Off\",Y4000\nADDINGTON ENTER,,E1210\nPHYSICIA,BOCA LASER CTR & COSMETICS,Y4000\nLAWYER,Pepper Hamilton,K1000\nDIALYSIS NURSE,U.S. GOVERNMENT,X3000\nPRESIDENT,A & R INVESTMENTS,Y4000\nDIRECTOR,ETNA SUPPLY CO.,Y4000\nEXECUTIVE DIRECTOR,SANTA CRUZ COUNTY FARM BUREAU,Y4000\nBERNARD MADOFF INC,,F2100\nSr. SCM Engineer,Intuit Inc,C5120\nENGINEER,ATWELL-HICKS INC.,B4000\nPartner,Ledesma & Diaz,Y4000\nFINANCIAL ANALYST,DOKE AND GEBLANA USA,Y4000\nVice President,MultiCom Corp,Y4000\nPHYSICIAN SCIENTIST,UNIVERSITY OF TEXAS SOUTHWESTERN MEDIC,H5100\nAttorney,\"Bradley, Arant, Rose, & White\",K1000\nSUNBELT RENTALS/SALES/SALES,,B3600\nSTAR DELIVERY & TRANSFER,,T3100\nRIVKIN RADLER AND KREMER,,K1000\nexecutive,Colling Murphy,K2000\nPETROLEUM LANDMAN,SELF EMPLOYED,E1100\nSTEAM FAMILY FNDTN,,X4100\nLOVEABLE COMPANY THE,,Y4000\nPRES.CEO,SPECTRUM ASTRO INC.,D2000\nPart Owner; Chemical,Anderson and Associates,Y4000\nPHYSICIAN,LAKE NORMAN HEMATOLOGY ONCOLOG,H1130\nANALYST,CHAMBER CORPORATION,Y4000\nMANAG,BEST WESTERN STARLITE VILLAGE,T9100\nSALES ASSOCIATE,NEIMAN MARCUS,G4300\nPRESIDEN,DEKOTA NATURAL CASING INC.,Y4000\nInternational Paper,Attorney,K1000\nDAMASHE KLEINICK ET AL,,Y4000\nPresident,Los Angeles Business Council,Y4000\nSYNER CO INC,,G5270\nPROFESSOR,FORMERLY UNIV. MN,Y4000\nSOUTHTRUST BANK OF MIDDLE TENNESSEE,,F1100\nExecutive,HPS Office Systems,Y4000\nMANAGING PTR,CITY MARINA,Y4000\nInsurance Agent,Thomas Insurance Agencies,F3100\nTHE N.T.I. GROUP INC.,,C5140\nComputers,Self Employed,C5100\nMICHAEL BERCIK MD PA,,J1100\nTEACHER,PLAINFIELD SCHOOL DIST 202,L1300\nLAWYER,BERNSTEIN LITOWITZ BERGER & GROSSMAN,Z9500\nHospital Administrat,University of Michigan,J7400\nOWNER,RASMUSSEN EQUIPMENT CO,Y4000\nFUEL DISTRIBUTOR,COVICH WILLIAMS,Y4000\nINVESTMENT ADVISOR,,J1100\nKUMAR ENTERPRISES/PHYSICIAN/PARTNER,,Y4000\nPRESIDENT,ODESSA CHAMBER OF COMMERCE,G1100\nCole Schotz Meisel Forman and Leona,,Y4000\nVice President Sales and Marketing,Kemco Tool & Machine Co.,M5100\nVP-DEPUTY GENL COUNS,Miller Brewing Co.,G2810\nNonprofit Business Manager,Bryn Athyn Church,X7000\nSCHOOL ADMINISTRATOR,BERKSHIRE ARTS  TECHNOLOGY CHARTER P.,Y4000\nIAS,,F3100\nexec,Dupont,M1000\nCEO,JEFFREY J. KIMBELL & ASSOCIATES,K2000\nCOMPUTER SERVICE,,J5100\nTHE IBE GROUP INC,,G5200\nOWNER,EXL PETROLEUM,E1120\nAttorney,Gaglione and Dumas,K1000\nGov Employee,Social Security,J1200\nCOMPUTER SUPPORT,GA TECH,Y4000\nAUTO SUAGE PRODUCTS INC,,Y4000\nFashion Photographer,Self employed,G5240\nSOCIAL SCIENCE RESEARCHER,AMERICAN INSTITUTES FOR RESEARCH/SO,C5130\nREGISTERED DIETITIAN,SELF-EMPLOYED,H1700\nLobbyist,Timothy Moore & Company,K2000\nEXECUTIVE,GENZYME CORP.,H4500\nCONSTRUCION MANAGER,EXPRESSWAY,Y4000\nATTORNEY,JAMES BATES BRANNAN GROOVER LLP,Y4000\nI.T./Internet Suppor,Medlock & West Realty LLC,F4200\nBANKER & INVEST,G.W.L. COMPANY INC.,F2100\nAttorney,\"Hennen Heck, LLP\",K1100\nNY CITY COUNCIL,,J1200\nBUSINESS OWNER,CAROLE INC.,M3400\nCOMMUNITY COORDINATED,,Y4000\nPREMIER COMPANIES USA,,Y4000\nSMALL BUSINESS OWNER-SOFTWARE DEVELOPM,ACCOUNTABILITYSOLUTIONS,Y4000\nSELF/LIFE INSURANCE/FINANCIAL SERVI,,F3300\nSHEPHERD OF THE HILLS REALTY CO,,F4200\nLOAN OFFI,MORTGAGE HOUSE OF AMERICA,F4600\nLOBBYIS,THE LIVINGSTON GROUP L.L.C.,K2000\nUniversity Professor,Ukniversity Of Texas At Austin,Y4000\nATTORNEY,RIGGS ABNEY,K1000\nPRESIDENT,VOGLER MOTOR COMPANY INC,T2300\nCOMPANY EXECUTIVE,\"DRS DEFENSE SOLUTIONS, LLC\",Z9500\nExecutive,Pennfield Oil,E1100\nRETAIL SALES,IKON,Y4000\nTUTTLE & TAYLOR,,K1000\nLife Insurance,AGENT,F3300\nCOUNTY COMMISSIONER,BERNALILLO COUNTY,X3000\nOWNER,DC HUMPHRYS INC.,M8000\nPhysicain,Brighham Womens Hosp,H2100\nEXECUTIVE,AAPA,Y4000\nAuditor,Jet Propulsion Laboratory,X3000\nSALEM COMMUNICATIONS/GM / SACRAMENT,,C2100\nBUISNESSMAN,BCS ENTERPRISES INC,Y4000\nCEO,\"CLAMBAKE, INC\",Y4000\nTIMMINS & ASSOCIATES LLC,,K1000\nexecutive,Long Human Resources,Y4000\nENGINEER,ES3 ENGINEERING SYSTEMS,C5120\nWIMBERLY HENN & ASSOCIATES,,Y4000\nATTORNE,FUSCO MACKEY MATHEWS & GILL,K1000\nDEVELOPMENT DIRECTOR,SALVATION ARMY INDIANA DIVISION,Y4000\nEXECUTIVE,COACH AMERICA,Y4000\nINDEPENDENT OIL & GAS OPERATOR,SELF,E1120\nNORTH IOWA EYE CLINIC P C,,H1120\nVICE PRESIDENT,C2HM HILL,E1300\nCIO,\"Home Quality Management, Inc.\",Z9500\nTHE FUND FOR AMERICAS FUTURE,,Y4000\nBUILDER/INSTALLER,ARCHITECTURAL CABINETS INC,J1200\nProfessor of Mathema,University of Illinois,H5100\nI.T.,COMPUTER SCIENCES CORPORATION,C5130\nSPOKESWOMA,CONGRESSMAN JOHN BOEHNER,X3000\nDESIGNE,TROPICAL PCB DESIGN SERVICE,Y4000\nCEO,Joe Still Research Institute,Y4000\nVICE PRES,ROBISON INTERNATIONAL INC,K2000\nGENERAL CONTRACTOR,WDC CONTRACTORS,Y4000\nAttorney,George L Arnold PC,Y4000\nSocial Worker,Casa,Y4000\nPresident,Ohline Corporation,M4100\nCRNA,INDEPENDENT ANESTHESIALOGIST,H1710\nVice Chairman,The Collingwood Group,Y4000\nConsultant,\"Bracy, Tucker, Brown\",K2000\n\"CONNOLLY O'MALLEY ET AL\",,Y4000\nFRANK N BUTLER CO,,B5100\nDEAN,KICK SCHOOL OF MED USC,Y4000\nBuilder,Triangle Development,Y4000\nEGLE & ASSOC,,K2000\nSr. VP,Siebel Systems Inc.,C5120\nSCHOOL NURSE,SIMI VALLEY SCHOOT DISTRICT,X3500\nOil and Gas,Pardee Resources Co.,Y4000\nEXECUTIVE,PERFORMANCE AUTO NETWORK,T2310\nPROGRAMMER,ACTIVX BIOSCIENCES,Z9500\nPRINCIPAL,ARLES MANAGEMENT INC.,Y4000\nAttorney,Robinson Brog,K1000\nEDWARD PAGE ATTORNEY AT LA,,K1000\nBUSINESS E,MARSHALL FINANCIAL GROUP,F0000\nATTORNEY,\"WELL GOTSHAL & MANGES, LLP\",K1000\nOWNER,HAMPTON IINN,T9100\nINSURANCE,POPULAR INSURANCE,F3100\nPROTHERM INC,,B0500\nCLADEAUX & TAGLIERI,,Y4000\nCEO,United Professional Real Estate Inspec,F4000\nINTERGRATED BRANDS,,Y4000\n\"CACE'S SEAFOOD & STEAK HOUSE\",,G2900\nSVP-HUMA,BEAM GLOBAL SPIRITS & WINE,G2820\nCONCRETE FOUNDATION C,SELF-EMPLOYED,G0000\nCONSULTANT,RAY MILLER CONSULTING,Y4000\nKLEE INVESTMENTS,,Y4000\nSCHOOL ADMINISTRATOR,ROSSMAN SCHOOL,Y4000\nHealth Counselor,Cornell Health and Nutrition,J1200\nCONSULTANT,SELF,T6000\nA C L SHIPPING CORPORATION,,Y4000\nLibrary Director,Oakland Public Library,X4200\nCEO,US Enviromental Protectio,Y4000\nC O O,\"DIBA FAR EAST, LLC\",Y4000\nFACULTY MEMBER,UNIVERSITY OF MISSOURI,H5100\nPARTNER,THE CHASE GROUP,H0000\nPRICEWATERHOUSECOOPERS/BANKING/FINA,,F5100\nATTORNEY,HOUSE FINANCIAL SERVICES COMM.,Y4000\nTeacher,Scotia-Glenville CSD,J1200\nCONSTRUCTION SUPER,T A RUSSELL CORP,J1100\nPRESIDENT,ROGERS FORD SALES INC,T2300\nPresident,Prev Med,Y4000\nRequested,Self,G5200\nINFO REQUESTED,Armstrong Ranch Kennels,A3000\nST LOUIS CANCER CARE,,Y4000\nArchitect,\"Michael Kang Architect, PLLC\",B4200\nCorporate Vp Of Public S,Microsoft,C5120\nSALES REP,PHYSICAN SALES AND SERVIC,Y4000\nFirm Billing Manager,\"Boies, Schiller & Flexner, LLP\",K1000\nReal Extate,El Dorado Holdings,F4000\nMENTONE EGG FARMS,,A2300\nPRESIDEN,MESSER & SONS CONSTRUCTION,B1500\nPresident/CEO,WETA TV/FM,J1200\nKAHN CONSULTING INC,,F5100\nPUBLISHER,EDIBLE WHITE MOUNTAINS,Y4000\nS,FLEISHMAN-HILLARD GOVT. RELATIONS,K2000\nS/E/ACCOUNTANT,,Z9500\nSTONE QUARRY,SELF EMPLOYED,B5100\nPDC INC,,Y4000\nCONTRACTOR,ISC,J1100\nDICKINSON-HEFFNER,,Y4000\nDentist,Glacier community healthcare,Y4000\nEPISCOPAL HEALTH SERVICES,,H0000\nmanagement,Schaller Tool & Die Co.,J1100\nUROLOGIST,\"MOSES KIM, MD\",H1130\nATTORNEY,\"CLAYSON, MANN, YAEGER & HANSEN PLC\",Y4000\nChairman/CEO,Continental Resources,E1120\nCONSULTANT,JEC CONULTING CORP,F4600\nEL TALLER COLABORATIVO PC,,B4000\n\"Owner, Floral Designer\",Heavenly Hydrangeas Floral Design,Y4000\nSENIOR VICE PRESIDENT,NEACE LUKENS,F3100\nDir of Federal Affairs,State of WI,X3000\nCFO,ROSEN DIVERSIFIED,Y4000\nHealth Care Technology,Norvax,Y4000\nMAYOR,CITY OF COLUMBUS INDIANA,X3000\nTEACHER,CITY OF ATTLEBORO,X3000\nJ & W SELYMA,,Y4000\nAttorney,Bendich Stobaugh & Strong PC,X1200\nRETIRED BUSINESS EXECUTIVE,NONE,X1200\nHomemaker,Not employed,G5280\nSENIOR VICE PRESIDEN,\"RICHLAND PLANNED COMMUNITIES, INC.\",Y4000\nTRANSPORTATION,CRT INC.,Y4000\nEXECUTIVE,LOS ALAMITOS RACE TRACK,G6500\nSALES ASSISTANT,FRITO LAY,Y4000\nFREEDMAN DISTRIBUTORS INC,,J6100\nMORTGAGE BROK,GEORGETOWN PARK MORT.,B2000\nRETIRED,NOT EMPLOYED,F2100\nOWNER,\"FRONTIER TECH, INC.\",G5200\nSIDNEY FETNER ASSOCIATES,,Y4000\nINVESTOR,WESTVIEW CAPITAL,Y4000\nATTORNEY,ARNALL GOLDEN GREGORY LLP,K1000\nREALTOR,SOTHEBYS,Y4000\nWriter/Editor,Stewart Title Guaranty C,F4300\nSR. SOFTWARE ENGINEER,CHECKFREE,C5120\nat  home,n/a,C2300\nManager,Ach Mortgage Llc,F4600\nPRESIDENT CEO,UMT HOLDINGS,Y4000\nAttorney,\"Mansfield, Tanick and Kohn\",K1000\nMARKETING,WOODRUFF-SAWYER & CO.,Y4000\nInvestor,Capital Guardian Group,F2000\nFranchise Consultant,FranNet,G1000\nUniv of Chicago/ Sociology,Constellation Management Group,Y4000\nChairman,Mountaire Corporation,A2300\nWILLIAM M MERCER INCORPORATED,,F0000\nPRESIDENT,PRO-TRADER,F0000\nMANAGER,SEA DIP MOTEL,T9100\nController,Golden Gate Hotel & Casino,G6500\nProduct Manager,Salesforce.com,C5140\nATT,LAW OFFICES OF FRANCES-ANN FINE,K1000\nNEUROSURGEON,NACOGDOCHES NEUROSURGY,H1130\nST JOSEPH COMMUNITY HOSPITAL,,H2100\nCONSULTANT,NATIONAL MEDIA/CONSULTANT,G5210\nUS SSR,\"SOLVAY PHARMACEUTICALS, INC.\",H4300\nMAINTENA,VIRGINIA INTERMONT COLLEGE,H5100\nRN,NORTHWEST COMM HOSPITAL,J7400\nManager,Harman Consumer Group,Y4000\nMayor,City of Orlando,X3000\nNATIONAL DISASTER COALITION,,X4000\nBOEING,ENGINEER,D2000\nMEDICAL DOCTOR,U OF R MEDICAL CENTER,Z9500\nATTORNEY,CAROSELLI BEACHLER MCTIERNAN,K1000\nPROFESSOR,BUZZ COMMUNITIES,Y4000\nINVESTMENT E,MOUNTAINEER CAPITAL LP,G1200\nAttorney,Sanchez Daniels Hoffman,K1000\nOWNER,DOUGLAS KNOPE,Y4000\nATT,SELF-EMPLOYED,C4100\nReceptionist,Dr Eugen Steeb,Y4000\nVICE PR,NORTHWESTERN HUMAN SERVICES,H3200\nEXECUTIVE DIRECTOR,RW PALSTER FOUNDATION,Y4000\nSHEPHERT-TISSUE,,Y4000\nMIASSERIAN AND ZUROFF,,Y4000\nMANAGER,STATE FARM INS.,F3400\nProducer,Runway Media Productions,Y4000\nATTORNEY,\"DOW LOHNES, LLP\",K1000\nNaval Archite,Global Industries Ltd,E1150\nEngineer,Half Associates,Y4000\nPresident,Lago Mar Resort and Club,T9300\nACCOUNTANT,TYCO ELECTRONICS,C5000\nFINANCE,\"NELNET, INC.\",F1410\nPhysician,Marquette General Hospital,H1130\nVP,Millennium Investment Services,F7000\nCEO,RAFANELLI EVENTS,G5200\nCONSULTANT ON LIFE EXPECTANCY,SELF - ROBERT SHAVELLE,Y4000\nLegislative Affairs,Department Of State,X3000\nGeneral Manager,Amelia Island Chamber Music Festival,Y4000\nPresident and Chief Executive Officer,St Vincent Health System,H2100\nEducator,Southampton Public Schools,X3500\nPATTON-BOGGS,,K1000\nSENIOR VICE,GEMINI INDUSTRIES INC.,Y4000\nAFD LTD,,F5300\nDiagnostic Radiologist,Professional Radiology,H1130\nOwner,Mid-Oaks Services,Y4000\nFOREMAN - LONGSHORE,PACIFIC MARITIME ASSOC.,LT500\nPINNACLE TRADING LLC,,F2200\nRICHMAN GROUP OF FLORIDA,,Y4000\n\"VP, Government Affai\",Comcast Cable,C2200\nGENERAL CON-SEARS RO & COMPANY,,G4300\n\"MONTGOMERY ANESTHESIA ASSOCIATES, P\",,H1130\nPROJECT,\"KAPALUA LAND COMPANY, LTD.\",F4000\nOwner of car wash,Self-employed,G5000\nBUSINESS OWNER,THE DOT PRINTER,C1300\nCEO,ALICART GROUP LLC,Y4000\nEXEC,FIDELIO DENTAL INS CO,J7500\nVIDEOGRAPHER,SELF EMPLOYED,Z9500\nCEO,\"C.S.G. SYSTEMS, INC.\",Y4000\nPresident,Ronkin Construction,B1500\nSALES,KELTMAN PHARMACEUTICALS,Y4000\nSPEECH COMMUN CONSULTANT,,G5000\nROTH CAPITAL,,F2100\nENTERTAINER,\"NORMAL VIEWING, INC.\",Y4000\nPRES,AVILES ENGINEERING CORPORATION,B4400\nCONTRACTS MANAGER,\"CACI INTERNATIONAL, INC.\",D3000\nSELF EMPLOYED,ABNER MCWHORTER,Y4000\nPRINCIPAL,JBS CONSULTING SERVICES CO,Y4000\nVP Corporate Finance,Applied Materials,J7400\nDENTIST,MICHAEL H LEE DDS INC,Z9500\nPRESIDENT/CEO,HOVEROUND CORP.,H4100\nMORAN OIL CO,,E1100\nPOSTAL CLERK,464899,L1500\nRo,Irs,J1200\nLibrarian,Katherine Burke School,Y4000\ncontractor,Self-Employed,B1500\nEXECUTIVE,JOHN CARTER INC,J1100\nPresident,\"Weather Central, Inc\",C2100\nDEPUTY ASSISTANT SECRETARY,U.S. DEPARTMENT OF COMMERCE/DEPUTY,X3000\nDEPUTY CHIEF OF STAFF,OSTP,Y4000\nPRESIDENT,PERRICONE INVESTMENTS,JD200\nBURKE ASSOCIATES INC,,Y4000\nGardner,Self employed,J7400\nB & H PHOTO VIDEO,,G4600\nDIRECT MARKETING ASSOC,,G5280\nTHE AEROSPACE CORP,,T1700\nOWNER,ZACHRY CONSTRUCTION,B1000\nATTORNEY,M.C.C.,Y4000\nAttorney,\"Siegel Sevastianos, PC\",Y4000\nCOMMUNICATIONS,BICKEL & BREWER,K1000\nCIVIL ENGINEER,MACKIN ENGINEERING,B4400\nLOBBYIST,DITTUS COMMUNICATIONS,K2000\nJUDICIAL ASSISTANT,FI SUPREME COURT,Y4000\nTEA,BOONE COUNTY BOARD OF EDUCATION,X3500\nDISC MANAGEMENT CORP,,Y4000\nHOMEMAKER,SELF,T9000\nOwner,Cps Computer,Y4000\nPRESIDENT,WATERMAN & ASSOC,K2000\nBUSINESSS OWNER,RETIRED,X1200\nHEALTHCARE ANALYST,N.G.N. CAPITAL,F2500\n\"MARC L ESTVOLD ARCHITECT INC PS'\",,B4200\n\"WELLINGTON CONSULTING GROUP, LTD.\",CEO,Z9500\nPOLITICAL ACTIVIST,,C2400\nAUTO CLUB OF SO CA,,Y4000\nATTORNEY,OPEN SOCIETY,J7400\nFRANK.RUGANI@GMAIL.COM,\"O'MELVENY & MYERS LLP\",Z9500\nPITT INVESTMENTS,,Y4000\nBIBB SUPPLY CO,,Y4000\nSENIOR VICE PRESIDENT,VANITY FAIR OUTLETS,Y4000\nDirector of Sales and Marketing,New York Health Care,Y4000\nDEFENCE CONSULTANT,,D0000\n\"KIMBALL STROUD & ASSOCIATES, INC.\",PRESIDENT,Z9500\nFLYNN MANAGEMENT CORP,,F4100\nATTORNEY,CHOUINARD & DAVIS,K1000\nVP Audit Services,\"Triad Hospitals, Inc.\",H2100\nNon Profit Manager,Communities in Schools,X4000\nATTORNEY,\"FREED & WEISS, L.L.C.\",K1000\nFLORENCE CITY COUNCIL,,Y4000\nATTORNEY,FERRARA BROS. BUILDING MATERIALS CORP,Y4000\nATTORNEY,\"SANDALS & ASSOCIATES, P.C.\",K1000\nPROFESSOR,UNH,J9000\nFilm/Farm/Bldg,Self-Employed,J1200\nFARMER,TEIXEIRA BROTHERS,Y4000\nPresident,\"Berkley Risk Administrators Company, L\",F3400\nCNO,Lawnwood Regional Medical Center,H2100\nCHANDLER & ASSOCIATES,,Y4000\nDirector Corporate C,FHL Bank Atlanta,F4600\nLawyer,Tmg Legal,Y4000\nFUNERAL DIRECTOR,GUY & ALLEN,Y4000\nPRESIDENT,FLORATIVE PRODUCTS GROUP,Y4000\nSTATE OF WASH,,X3000\nSTATE FINANCIAL SERVICES,,F1100\nBackflow Tester,Self,G0000\nBUSSEL ASSET MANAGEMENT LLC,,F2100\n\"Vice-President, Sec.\",Card-Monroe Corporation,M2300\nVice President,Hummelstein Iron & Metal,M2000\nOIL AND GAS CONSULTANT,R. KING & CO,Y4000\nREAL ESTATE BROKER,MICHIGAN REO DEPOT,J9000\nSelf- Employed,,G0000\nVICE PRESIDENT,ADCO ELECTRIC CORP,B3200\nCHAIRWOMAN,HUBBARD RADIO,C2100\nASSOCIATE,KING & SPALDING,K1200\nCHAIRMAN,AMBEX VENTURE GROUP,F2500\nTELECOMMUNICATIONS GMGR,WESTGATE COMMUNICATIONS LLC DBA WEAVTE,Y4000\nCONSULT,WM. SHOEHIGH PUBLIC AFFAIRS,Y4000\nCEO,HASBRO INC.,M3500\nPRESIDENT,CARGIL INTERNATIONAL,J5200\nBASS ENTERPRISES PROD,,E1150\nC & D FLOORING,,E5000\nBanker,Equi Financial Corporation,F0000\nOil Producer,Klabzuba Royalty Company,Y4000\nPRESIDENT,CURRIE MOTORS AUTO GROUP,Y4000\nSTATISTICIAN,\"NATERA, INC.\",Y4000\nConsultant,Towers Perrin,Z9500\nOwner,Casper Estimating Service,Y4000\nPRESIDENT,DADE PAPER,A5200\n\"VP, LEGAL\",WARNER BROS.,C2000\nDiagnostic Radiologist,Brown and Associates,H1130\nATTORNEY,NEXION HEALTH,Y4000\n\"Group VP, DuPont Safety & Protection\",EI du Pont de Nemours and Company,M1000\nSenior Vice presiden,Sares Regis Personnel Group,F4500\nNEW HAMPSHIRE ANESTHESIOLOGIST,,H1130\nREAL ESTATE INVESTOR,SAUNDERS PROPERTY CO,F4500\nPharmacist,C. V. S.,G4900\nCONSULTING ENGINEER,INFORMATION REQUESTED PER BEST EFFORTS,X1200\nPresident-Eastern Di,Equity Residential,F4100\nVICE PRESIDENT,ROGOSIN INSTITUTE,Y4000\nPhysician,Upstate Neonatal Care Pc,Y4000\nAttorney,Smith & Dorsey,K1000\nSound Engineer,Self employed,J1200\nCFO,LEVITRONIX TECHNOLOGIES,Y4000\nCONSUMERS GAS UTILITY CO,,E1140\nA,DEAN RINGERS MORGAN & LAWTON P.A.,K1000\nCONSULTANT,\"EDWARDS AND KELCEY, INC.\",B4000\nINVESTMENTS,THE MULDER CORP,Y4000\nAdvertising Executiv,Russ Reid Company,K2000\nRecruiter,BDO Seidman,F5100\nDIRHUMANRESOURC,ASTD,Y4000\nEXECUTIVE,BARTLETT NUCLEAR,E2000\nAttorney,State Of Iowa,X3000\nDirect Selling Association Politica,,G4800\nOWNER,BAILEY AND CO,Y4000\nOWNER,SPRING GROVE BED & BREAKFAST,Y4000\nBUSINESS OWNER,MID WEST TRUCK-PARTS & SERVICES,Y4000\nATTORNEY,LONG LAW FIRM,K1000\nBUSINESS OWNER,HERITAGE TITLE OF VALENCIA COUNTY,F4300\nCHIEF OF STAFF,CITY OF SD 2007,Z9500\nPRESIDENT,PARTNERS/BRIGHAM,Y4000\nGeology Consultant,Florida Atlantic University,H5100\nATTORNEY,CARNEY & BASSIL,Y4000\nCommodities,Constellation CEG,E1620\nSENIOR VICE PRESIDENT ? RESIDENTIAL SE,VYVE BROADBAND,C2200\nProfessor,California Institute of Art,Y4000\nINTERDEVELOPMENT CORP,,Y4000\nMgr Safety & Env Health,US Smokeless Tobacco Manufacturing,A1300\nEXECUTIVE,GREAT SOUTH TIMBER INC.,A5000\nProfessor,CANISIUS COLLEGE,H5100\nPRESIDENT,FERNWOOD ADVISORS,F2100\nHAMPHIRE HOUSE,,G2900\nExecutive Director,\"Desert De Oro Foods, Inc\",G2900\nVICE PRESIDENT,\"MICRON TECHNOLOGY, INC\",C5110\nOWNER,KUI ASSOCIATES,Y4000\nUROLOG,THE PERMANENTE MEDICAL GROUP,H1130\nReal Estate,Propark,Y4000\nExec VP,\"Corinthian Colleges, Inc.\",H5200\nSMITH SOWALSKY,,K1000\nENGINEER,FTN ASSOCIATES,Z9500\nRIDDELL SPORTS,,Y4000\nDIRECTOR OF PRODUCT DEVELOPMENT,ENTERPRISE RECOVERY SYSTEMS,Y4000\nBRIDGE TEACHER,,Y4000\n\"RM WILSON CO., INC\",,E1240\nVP,STV Inc.,B4000\nElevator Constructor,Hopkins Illinois Elevator Co,B1500\nCEO,MAINSTREET ORGANIZATION OF REALTORS,J9000\nhomemaker,NONE,Y1000\nReal Estate,The Clinton Companies,Y4000\nGREENTREE DEVELOPMENT CO,,Y4000\nCEO,BAIRD INDUSTRIES,Y4000\nSENIOR VICE PRESIDENT,BOEING EMPLOYEE CREDIT UNION,F1300\nDICKINSON WRIGHT P L L C,,K1000\nROLLINS BURDICK HUNTER CO,,F3100\nSCIEN,NATIONAL INSITITUTE OF HEALTH,J7500\nMEDICAL DIRECTOR,\"D. ANN TRAVIS, MD, LLC\",H1100\nPOUCH TERMINAL INC,,Y4000\nEXECUTIVE,\"ILT, INC\",Y4000\nOFFICE MANAGE,EDINGER MEDICAL GROUP,H1100\nTeacher,Wayland & Southboro,Y4000\nBERENERGY COMPANY,,Y4000\nCLEMENT AUTO & TRUCK,,Y4000\nGeneral Manager Oper,\"Webster County Coal, LLC\",E1210\nEGNAIR CORPORATION,,Y4000\nManager,Mckinsey & Company,G5270\nCONSULTANT,KIMBELL  & ASSOCIATES,K2000\nHOMEMAKER,ROBERTS OXYGEN CO INC,G3000\nPresident/CEO,Hearthstone Homes,B2000\nPRESIDENT,\"ALLTECH SUPERIOR CARTRIDGES, INC.\",G1200\nExecutive,Iscol Family Foundation,X4100\nAdvertising Executiv,Shaker Advertising,G5210\nReal Estate Developer,Urban Atlantic,F4100\nQUALITY CLAIMS,,Y4000\nTERRANCE MONNIE CO,,Y4000\nSales Management,Chimerics LLC,J1200\nPRESIDENT,A & A,Y4000\nARK CARBIDE SAW & TOOL,,M5100\nPROJECT MANAGER,\"OGDEN PARTNERS, INC.\",Y4000\nRETIRED,PAUL JOHNSON PARK & NILES,Y4000\nAttorney,Greenberg Trauring,K1200\nDirector Government Policy,Astellas,Y4000\nRetired,\"BJ Chenault, CPA\",F5100\nDISTRICT MANAGER,WHAYNE SUPPLY CO./DISTRICT MANAGER,B6000\nVICE PRESIDENT,ALCON LABORATORIES,H4000\nSALES AUTO,,T2300\nS I GOLDMAN CO,,B0500\nVICE PRESIDENT,Pacific Hospitality Grp,Y4000\nQUADRANGIC GROUP,,F2100\nATLAS FOUNDATION,,X4100\nGeneral Manager,KSTC-TV,C2100\nChairman and CEO,Speidel Inc,Y4000\nMCMILLIAN COMPANIES,,Y4000\nphysician,Muskogee Pulmonary clinic,H1100\nVice Chairman,Advanta Corporation,F1400\nCULVER CITY,,Y4000\nPHY,\"EAGLE'S LANDING FAMILY PRACTICE\",H1100\nCivil Engineer,Self-Empoyed,B4000\nWA STATE ATTORN GEN,,X3200\nInvestment Advisor,JP Morgan,J5200\nASST. COUN,COUNT OF SAN LUIS OBISPO,Y4000\nInvestigator,John Brownical & Assoc.,Y4000\nPartner,PartnersFinancial,F3300\nVice President,McAllister & Quinn LLC,K2000\nVP SALES,CLEAR CHANNEL,C2100\npresident,The Window Company,B2000\nCounselor,Jta,J1200\nPresident,Paine Webber/Puerto Rico,F2100\nNEW HEALTH MANAGEMENT SYS,,Y4000\nExecutive,Information Planning Associa,Y4000\nPROPEL.COM,,C5120\nREV MGMT STRATGY DIR,UNITED PARCEL SERVICE INC,T7100\nEngineer,Adobe,C5120\nFLOYD MEDICAL HOSPITAL,,H1100\nINSTR DESIGN INTL,,H5100\nINSTRUCTOR,MISSOURI UNIVERSITY OF SCIENCE AND TEC,Y4000\nCONTRACTOR,MCCORVEY SHEET METAL WORKS,M2000\nCPG NUTRIENTS,,Y4000\nDentist,West TN Pediatric Dental,H1130\nCHIEF AD,KOHLBERG KRAVIS ROBERTS CO,F2600\nDIRECTOR,M A C C PAC,J5100\nEXECUTIVE DIRECTOR,GRASSFIRE ACTION INC/EXECUTIVE DIRE,J1100\nCo-Chairman,Karr Barth Associates,F3300\nCHAIRMAN,THAYER CAPITAL INVESTMENT,F2600\nCom Prog,Cray Inc.,J1200\nPROGRAMMER,THE NIELSEN COMPANY,G5200\nPROFESSOR GRAMBLING STATE,,Y4000\nEVENT PLANNER,BUSINESS JOURNAL,C1100\nDOG BREEDER,SELF-EMPLOYED,X1200\nReal Estate,self employed,J5100\nSELF EMPLOYED,G & G INDUSTRIES,Y4000\nManager of Legislati,National Marrow Donor Program,H2000\nATTORNEY,HPD,Y4000\nOwner,Mj Consulting Associates LLC,Y4000\nEXECUTIV,AMERICAN ENERGY OPERATIONS,E1120\nINVESTOR,DEER PARK ROAD CORPORATION,Y4000\nPRESIDENT,EXPORT PROCEDURES CO. INC.,Y4000\nCAPITAL ONE FINANCIAL,,F1400\nACCOUNTANT,\"HAWKINS FINANCIAL, LLC\",Y4000\nANHEUSER BUSCH RECYCLING CORP,,M2400\n\"SENIOR DIRECTOR, ENGINEERING\",COX COMMUNICATIONS,C2200\nReal Estate,Shows Real Estate,F4000\nSELF EMPLOYE,SAGAMORE ADVISORS INC.,Y4000\nMunicipal Employee,City of Houston,Z9500\nARCHITECT,KOVERT HAWKINS ARCHITECTS,Z9500\nLIELIGNANT,,Y4000\nSVP OF MORTGAGE LENDING,BANKPLUS,F1000\nMICHEL IN NORTH AMER,,M1500\nPRESIDENT,\"PRESIDIO COMPONENTS, INC.\",Y4000\nPRESIDENT,CONNER SALES CO,G1200\nHUFFINES CHEV,,T2300\nLA TRADE TECH COLLEGE,,H5200\nEAST CAROLINA UNIV SCHOOL,,H5100\nExecutive Director,JAC PAC,Y4000\nResearch Scientist,Universities Space Research Associatio,Y4000\nOwner,Universal Auto Care Inc.,Y4000\nDIRECTOR,NEUTRAL POSTURE INC.,Y4000\n1ST AMERILAND DEVLPT & CONSTR,,B1500\nReal estate management and leasing,Triton Commercial Real Estate,F4000\nPRESIDENT,SUMMERLAND ED,Y4000\nLYONS CO,CFO,Y4000\nSEIFER SCHOUF ANESTHESIA INC,,H1130\nOwner,Miles Funeral Home,G5400\nREALTOR,PARRISH REALTY,F4200\nManagement Consultant,Dynamic Healthcare Solutions,H0000\nCOLE HARDWOOD,,A5000\nProduction Assembler,Kenworth Truck Co,Y4000\nSoftware Engineer,CA Technologies,C5120\nReal Estate Broker,Burkhead Realty,F4200\nDR GOERSON & JACOBS,,K2100\nTRADER,SELF,J2200\nFARMER,4-W RANCH,Y4000\nPHARMACY ADMINISTRATOR,DESERT DRUGS PHARMACY,G4900\nCORPORATE CEO,\"M INTERNATIONAL, INC.\",J2200\nSales Manager,W W Grainger,G4500\nCORPORATE DIRECTOR,MITRE CORP.,D3000\nHOUSTON COMMUNITY BANK,,F1100\nPP BUSINESS MAN,,Y4000\nRegional President 5,WLLS FARGO,F1100\n,\"BELIEVER'S FELLOWSHIP OF LAKELAND,\",Y4000\nCOLLEGE ADMINISTRATOR,LASELL COLLEGE,H5100\nOPERATIONS MANA,NORTH AMERICAN COAL,E1210\nATTORNEY,ALPINE GROUP INC,K2000\nPresident & C.E.O.,Energy Association Of Pennsylv,E1000\nOwner,Varicose Vein Clinic,Y4000\nSENIOR VP,STANISLAUS FOOD PRODUCTS,G2000\nALL AROUND REALTY,,F4200\nNORTH TEXAS SPINE CARE,,H1130\nHomemaker,n/a,A5000\nOwner,\"Leavins Seafood, Inc.\",G2350\nBANK OF AMERICA-HAWAII,,F1100\nOwner,Kardos Apraisal & Co.,Y4000\nDIRECTOR OF AVIATION,PHILIP MORRIS INTERNATIONAL,A1300\nWESTERN FOREST PRODUCTS,,A5000\nOWNER,PREFERED HOMES,B2000\nCONSULTANT,DATA FUSION TECHNOLOGIES,Y4000\nHomemaker,Information Requested,G4600\nREAL ESTATE,HERITAGE MANAGEMENT,F4000\nEXECUT,FIRST AMERICA TITLE INS. CO.,F4300\nTRETTER GROUP INC,,Y4000\nDADE CTY SCHOOL BOARD,,X3500\nCENTRAL WASHINGTON ORTHOPEDIC CLINI,,H1130\nTELECOMMUNICATIONS SALES,CSG INTERNATIONAL,Y4000\nPresident,Carter Cafritz Development,F4100\nSPANN ENGINEERING SVCS,,B4400\nExecutive,Mike Piazza Honda,T2310\nFARMER,MILK PRODUCERS COUNCIL,A2000\nINVESTOR,AUSTIN VENTURES,F2500\nPRESIDENT,\"PAJ, INC\",F3400\nPARTNER - INSUR,ANDERSON INS AGENCY,F3100\nBusiness,Supermats Inc,Y4000\nANALYST,COMPUTER PROGRAMMER,J1200\nATTORNEY,CROW LAW FIRM,K1000\nDEVELOPER,AVERY RANCH CO. LTD.,A3000\nREAL ESTATE EVALUATION,,F4000\nCLEMENTS FUNERAL HOME,,G5400\nTOURISM,R. CRUSOE & SON,Y4000\nMOSNER & MOSNER,,K1000\nKEITH L HARTLEY CPA,,F5100\nCRESCENT BEER DISTRIBUTOR,,G2850\nSr Marketing VP,Health Partners,H3700\nTANKS INC,,Y4000\n\"VP, FUND DEVELOPMENT & EXTERNAL RELATI\",WHITE MEMORIAL MEDICAL CENTER,H2100\nLEXAS PARTNERS,,C2600\nEXECUTIVE,\"GO DADDY GROUP, INC.\",C5140\nATTORNEY,\"MARYANN CONWAY & ASSOCIATES, P.C.\",Y4000\nEngineer,R.S. Engineering,B4400\nGovernment Relations,TriWest Healthcare Alliance,H3700\nATTORNEY,SELF EMPLOYED/ATTORNEY,J1200\nPRESIDENT,NHC HEALTHCARE,H0000\nGEORGE M LEADER FAMI,,Y4000\nDELAWARE QUARRIES INC,,B5100\nPRESIDENT & CEO,ARKANSAS BCBS,F3200\nManager,Bowen Construction,B1500\nATORNEY,\"MICHAEL L. PHIFER, P.C.\",Z9500\nFAMILY,JEFFERSON FAMILY PHYSICIANS,H1100\nATTORNEY,THIGPEN AND JENKINS LLP,J1200\nSenior Associate,Eli Lilly & Associates,J1200\nRequested,Kohlberg Kravis Roberts & Company,F2600\n\"ALLEN, BRINTON, & SIMMONS PA\",,K1000\nAdvertising Executive,Comcast Corporation,C2200\nPresident,Buildology,H1130\nCONSULTANT INVESTOR,,A3000\nRAUL SANCHEZ,RAUL SANCHEZ,Y4000\nMOORE CAPITAL MANAGEMENT,,JE300\nCALIFF & HARPER,,K1000\nATTORNEY,SILDON & EVANS LAW GROUP,K1000\nCEO,PICOU BUILDERS SUPPLY COMPANY INC.,Y4000\nZELIFF IRELAND &,,K2000\nATTORNEY,\"TOMPKINS, MCGUIRE\",K1000\nFIDELITY BANK DUNMORE,,F1100\nCORPORATE EXECUTIVE BOARD,\"SYMPHONIC STRATEGIES, INC.\",Y4000\nPARALEGAL,AVON CONTRACTORS,B3000\nMarketing Director,Malone Construction,B1500\nPresident,Comer Industries Inc,M2300\nBRITISH MOTOR CAR DIST LTD,,T2000\nSOUTHWEST IDAHO ENT,,H1130\nDEVELOPER,\"MIELKE HOLDING, INC.\",Y4000\nPOTTER,SELF-EMPLOYED/POTTER,X0000\nPOLICY ANALYST,GOVT ACCOUNTABILITY OFFICE,Y4000\nRETIRED,COCKER PAM,Y4000\nExecutive,Henry S. Miller Co.,F4100\nInvestor,\"Atlas Brown, Inc\",Y4000\nVENTURE COMPAN,MURPHREE AND COMPANY,Y4000\nTRENT HILL,,Y4000\nLAWYER,INDIVIDUAL RIGHTS FOUNDATION,Y4000\nPRESIDENT,GLOBAL PROJECTS,Y4000\nTRI-ARTISAN PARTNERS,,F2600\nPUT MONEY MANAGER,VIRGINIA COMMERCE BANK,F1000\nMarketing Supervisor,ConocoPhillips Company,E1110\nTREASURER/CO-OWNER,QUALITY HYDRAULICS INC.,M2300\nTEACHER,\"UNO, MCC\",Z9500\nPathologist,Pacific Pathology Assoc Inc,H1130\n\"CONSULTANT, ATTORNEY, AUTHOR\",\"SELF/CONSULTANT, ATTORNEY, AUTHOR\",X3000\nENGINEER,WAELDER OIL & GAS INC.,E1100\nLEVITT MEDIA CO,,C1100\nATTORNEY,\"SHAPIRO, BLASI & WASSERMAN\",Y4000\nProfessor of Educati,Univ. of TX-Pan American,H5100\nTECHNICAL REP,GANS INK & SUPPLY CO.,Y4000\nphysician/volunteer,self employed,H1100\nFINANCIAL SERVICES,PRG SELECT,F5100\nCo-Owner,Brunkow Inc,Y4000\nCpa,Siemans Corp.,Y4000\nINSURANCE AGENT,GUARDIAN LIFE,F3100\nLARK INDUSTRIES INC,,Y4000\nPresident/Chief Exec,Scott-Lee Heating Company,B3400\nDEPUTY,STATE LAND COMMISSION,X3000\nOWNER/PRESIDENT,\"NEW CARE CONCEPTS, INC.\",Y4000\nTIME LOGIC INC,,C5110\nPHONE WARE INC,,Y4000\nATTORNEY,\"WHYTE, HERSCHBECK, DUDEK\",K1000\nBENNETT & KAHNWEILER CO,,F4200\nI.T. Consultant,\"Tac Worldwide, Inc.\",Y4000\nBANKER,GEORGIA BANK & TRUST/BANKER,F1000\nOffice Administrator,Alaska Orthopaedic Surgeons,H1130\nARCHITECT,LOW VOLTAGE ARCHITECTURE,B4200\nSACCA & SACCA,,K1000\nAttorney,Carr and Carr Attorneys,K1000\nSTORAGE SYSTEMS INC,,Y4000\nKANSAS ENERGY,,E1120\nVice Chair of Board,Publix Super Markets Inc.,G2400\nTHEATER DIRECTOR,SELF,J5100\nPresident,Huntington Career College,J5100\nART HISTORIAN,SCHOOL OF VISUAL ARTS NY/ART HISTOR,H5100\nFinancial Consultant,RBC,F1100\nOwner/President,True Colors Tanning LLC,G5100\nENGINEER,DWJ ENTERPRISES,Y4000\nUS DEPT OF LABOR,,LA100\nWEB DESIGNER,AVALON MIS,Y4000\nR.E. PHELON CO.,,M2300\nCONSULTANT,PAUL S. USTER,G5200\nATTORNEY,CAPALDI & ASSOCIATES,Y4000\nPRESIDENT & CEO,\"STIMSON LANE, LTD.\",Y4000\nHOSPITAL COUNCIL OF SO CA,,H2100\nOil Business,Southern Oil Exploration,Y4000\nBISHOP,THE SIXTH EPISCOPAL DISTRICT,X7000\nBanker,Founders Bank,F1100\nPHYSICIAN,SE;F-EMPLOYED,H1100\nSFX ENTERTAINMENT INC,,C2900\nRETAIL,SELF-EMPLOYED,F2100\nOffice Worker,Drew Oil Corporation,E1100\nUSED BOOK SELLER,SELF-EMPLOYED,G4600\nPresident Affiliate,Discovery Communications Inc.,C2200\nAttorney,\"Winthrop, Stimson, et al.\",K1000\n\"Vice President, Cons\",\"Granite Construction, Inc., Branch Div\",B5100\nSTRATEGIC TELECOM,,Y4000\nCEO,Otis Warren Co Inc,F4200\nDIRECTOR OF GOVERNMENT A,YAHOO INC.,C5140\nCEO,WILLIAMSON PRINTING COMPANY,J1100\nManager,Hansa Usa,Y4000\nChairman of the Board,Silicon Valley College,H5100\nNONE,NONE,J5000\nHomemaker/Volunteer,N/A,J1100\nPHYSICIAN,\"FPAMG, LTD.\",Y4000\nMANAGING DIRECTOR,NORTH CASTLE,J7400\nLecturer,Penn State University,H5100\nChief Medical Officer,Virginia Mason Medical Center,H2100\nPHYSICIAN ASST,,H1700\nATT,ARMSTRONG WORLD INDUSTRIES INC.,B5000\nSTARR WESTERN WEAR,,Y4000\nATTORNEY,NAHMAL LABOR RELA,Y4000\nFINANCE PROFESSIONAL,THE RAINE GROUP,Y4000\nW&M PROPERTIES INC.,,F4000\nMANAGER,\"UNIVERS BUSINESS, INC.\",Y4000\nPublic Health Consultant,psi,C5000\nCHAIRMAN OF THE BOARD,CLY-DEL,M5000\nExecutive,National Electric,B5500\nSupervisor,LADWP,Y4000\nHURT RICHARDSON GARNER TODD ET AL,,K1000\nMUNICIPAL EMPLOYEE,CITY OF HOUSTON,X3000\nOWNER,D.V.I. INC./OWNER,Y4000\nInfo Requested,Info Requestd,F1300\nFRIENDS OF TIM MOYER,,J1100\nReal Estate Developer,Fairfield Residential,F4100\nTeacher,Reitz Memorial High School,Y4000\nTEXACO NATURAL GAS INC,,E1140\nMarketing,Ghirardelli Chocolate Company,G2200\nDirector of Operatio,Players Air,Y4000\nExecutive,TAG inc,J5100\nCITY OF ANSONIA,,X3000\nCHAIRMAN,\"GALEN CAPITAL GROUP, LLC\",F0000\nSTAFF DIRECTOR,US SENATE BUDGET COMMITTEE,X3000\nLIBRARIAN,LIBERTY COUNTY BOARD OF EDUCATION,X3500\nPRESIDENT,MIRAMONTE SANATATION INC,Y4000\nPhoto Specialist,Walgreens,Z9000\nSR TECH ASSOC,E.I. DU PONT DE NEMOURS AND COMPANY,M1000\nExecutive,Revelations,G0000\nELLIOTT-LEWIS,,B3400\nSVP Technology,American Enterprise Inv Srvcs,F2100\nBUILDER,ED CADY & SONS,Y4000\nBASIL ROAD SOFTWARE,,C5120\nTelevision Writer,Tucker Cawley,Y4000\nRUSSO-SLAV CLUB,,Y4000\nPRODUCER/MANAGER,ANONYMOUS CONTENT,Y4000\nNEPHROLOGY SERVICES MEDICAL GROUP,,J7500\nAttorney,Netier and Costello LLC,K1000\nAdministrative,Labat-Anderson Incorporated,Y4000\nExecutive management,INCODE Inc,J1200\nEconomic Development Manager,City of Ridgecrest,X3000\nACROPRINT TIME RECORDER CO.,,Y4000\nBAPTIST HEALTH SYSTEM,,J7400\nN/A/VOLUNTEER TEACHER,,H5100\nPhysician,Covenant Medical Group,H1130\nV.P.  &  CFO FINANCE,SUNOCO INC.,E1160\nDisability Consultant,Self employed,Y4000\nCAPTAIN USAF RETIRED,USAF CIVIL SERVICE,X1200\nConsultant,Fergon Tool & Machinery,M5000\nOrthopaedic Surgeon,Pittsburgh Bone & Joint Clinic,H1130\nTEACHER,MUHLENBERG COUNTY SCHOOLS,X3500\nCONSU,RAUSER SCHEINFELDT & CO. INC.,Y4000\n\"AUGUSTA SYSTEMS, INC./ATTORNEY/BUSI\",,C5000\nAMARILLO ANESTH CONSULT,,H1130\nENGINEER,G.C.I.,C4200\nmd,esm pc,Y4000\nSales Enginer,Hawks Sales Corp,Y4000\nPARAMOUNT COMMUNICATIONS,,C2400\nSales,ICE,Y4000\nDEPT OF TOURISM,,T9000\npsycholgist,self,Z9500\nSCOTTSBORO OB/GYN/PHYSICIAN,,H1130\nCRO EXECUTIVE VICE PRESIDENT,FARM CREDIT EAST,A4000\nOwner,Harbor Wear,G4100\nNONE,NONE,C5100\n\"SUTER, DOYLE\",,Y4000\nSUMITOMO MARINE & FIRE,,F3400\nATTORNEY,PILLSBURY MADISON & SUTRO,K1000\nDirector,National Bank of Blacksburg,F1100\nDepartment of Defense (Naval War Co,,X5000\nCORNELIA CLEANERS,,G5500\nNOT GIVEN,SELF EMPLOYED,Y2000\nMSL,Johnson & Johnson,H4000\nEXECUTIVE,ORDERS CONSTRUCTION,B1500\nPathologist,Southern Indiana Pathologists,H1130\nInvestment Banking,Goldman Sachs & Co,F2300\nMEIJER,,G4300\nFurrier,David Green & Sons,G4100\n\"VP, Finance and Oper\",Ctr for American Progress,J1200\nTCS MANAGEMENT GROUP INC,,G5270\nURAC CORPORATION,,Y4000\nDIR.BUS. DEVELOP,U.S. MARINE REPAIR,D5000\nCHAIRMAN OF TH,COLUMBIA HELICOPTERS,T1500\nPOLICY ADVISOR,THE RUSSELL GROUP,K2000\nREALTOR,PETERSON REAL ESTATE,F4000\nSocial Gerontologist,Center for Social Gerontology,H0000\nREAL ESTATE,MGRE COMPANY LLC,Y4000\nCEO,AVAILITY LLC/CEO,H3000\nINVESTING,ASB HOLDINGS FIRST EAGLE,Y4000\nPrinter,Copy General Corp.,Y4000\nBUSINESS OWNER,SOUTHEAST LASER SYSTEMS,T1400\nowner,\"Caputo's Ice Plant\",Y4000\nSINGER BROTHERS,,E1120\nRestaurant Owner,Information Requested,F2100\nCeo & Chairman,Gwin Inc.,Y4000\nMONEY MANAGEMENT,,F5000\nSENIOR DIRECTOR OF GOVERNMENT AFFAIRS,ST. JUDE MEDICAL,H4100\nMARS INCORPORATED/CEO/OWNER,,G2200\nPHY,UTCI BOSTON BASKIN CANCER GROUP,Y4000\nSHER ROCHEE MUSH FARM,,A1400\nPSYCHOLOGIS,THE AUSTEN RIGGS CENTER,Y4000\nVICE,WILLARD MANUFACTURING COMPANY,Y4000\nTEACHER,UNIVERSITY,J1100\nPsychologist,Howard University,H5100\nChairman,MW Post Advisory Group,Y4000\nENGINEER,MATSON NAVIGATION,T6200\nSELF-EMPLOYED,SPENCER BRUS INC.,Y4000\nOPTHAMOLOGI,PROFESSIONAL EYE ASSOC.,H1120\nDIRECTOR OF HUMAN RESOURCES,SIDLEY AUSTIN LLP,K1000\nASSISTANT DIRECTOR,NEW ENGLAND INSTITUTE OF ADDICTION,Y4000\nLawyer,Waters & Kraus,K1100\nINSURANCE BROKER,DICK HALEY INSURANCE,J1100\nGORMAN PUBLISHING CO,,A2000\nRecord Producer,Frontier Records,Y4000\nTRINITY VILLAGE HOUSING,,Y4000\nRETIRED PROFESSOR OF MATHEM,RETIRED,X1200\nOrganizational Behavorist,Retired,Y4000\nST MONICA ELEMENTARY SCHOOL,,Y4000\nCONSULTANT,THE MCOHERSON GROUP,Y4000\nPHYSICIAN,WBMV INC,Y4000\nEXECUTIVE,NATCO PRODUCTS,Y4000\nInformation Technology,Verizon Business,C4100\nATTORNEY,\"KOSSOVER LAW OFFICES, LLP\",K1000\nMANAGER,\"BELLINO FIREWORKS, INC.\",M1100\nCEO,ST. LUKE TRUST,Y4000\nAttorney,ICT,Y4000\nPRESIDENT,CAMP JAM LLC,Y4000\nChief Investment Officer-AEFA,Ameriprise Financial Inc,F2100\nFire Fighter/EMS,Hastings Fire Dept.,L1400\nAttorney,\"Charlston, Revich & Wollitz Llp\",Y4000\nInformation Requested,National Gay and Lesbian Taskforce,J7300\nC & L RESTAURANT,,G2900\nExecutive,Missouri Corn Growers Assoc,A1500\nSCHEDULER,MONICA VERNON FOR CONGRESS,J1200\nBUD CONOLY RANCH,,A3000\nMANAGEMENT & FINANCIAL SERVICES GRO,,Y4000\nFinancial Consultant,Grove Financial,F0000\nChairman & CEO,Perseus LLC,F2300\nOwner,Tom Parker Agency,Y4000\nLAW OFFICE VM,,K1000\nATTORNEY,LEMLE & KELFEHER,K1000\n\"MCHOLE, COOK & WELCH PC\",,K1000\nFUQUA COMPANIES,,F2100\nCHAIRMAN,KRANSCO,G5270\nCommunications/Translations,\"Broccoli in California, Inc\",Y4000\nSIERRA PACIFIC RESOURCES,,G1300\nBusiness Owner,\"Westover Consultants, Inc\",Y4000\nDirector,Carleton Life Support Systems Inc,Y4000\nCFO,Arcadia Biosciences,J7300\nLockheed,,D2000\nInsurance Agent,\"Aegis Insurance Services, Inc\",F3100\nProject Manager,Do Deyi Oil Inc.,Y4000\nFINANCE,R.J.N. MANAGEMENT,Y4000\nCEO,DAHLHEIMER DISTRIBUTING,Y4000\nPRESIDENT,ZIROLI CORPORATION,Y4000\nInformation Requeste,Meridian Capital,F0000\nSCM CONSULTANT,SELF-EMPLOYED,Y4000\n\"F.K. EVEREST, INC./PRESIDENT / OWNE\",,Y4000\nCEO,MOORE ENGINEERS PC,B4400\nRetired Professor,none,X1200\nPresident,Milledgeville Coca Cola,Y4000\nGovernmental Relatio,McAllister and Walsh,K2000\nATTORNEY,\"THOMPSON, COBURN, L.L.P.\",K1000\n2ND MATE,INTREPID PERSONNEL & PROVISIONING,LT500\nBusiness Executive,ECO2 Partners,Y4000\n\"Director, IT\",1199Seiu Benefit & Pension Funds,Y4000\nArchitect,RDLA,J1200\nTRAINER,GRUBUB,Y4000\nOWNER,ATLANTIC RESOURCE GROUP,Y4000\nPRESIDENT,STERN INC.,Y4000\nPATENT LAWYER,FINNEGAN LLP,K1000\nOWNER,BELCON,Y4000\nCEO/General Manager,Reservation Telephone Cooperative,C4100\nPETROLEUM DISTRIBUTOR,SELF,E1160\nATTORN,BLANK ROME COMISKY & MCCAULY,K1000\nPHYSICIAN,CHRISTENBURY EYE CENTER,Y4000\nOAK RIDGE MFG INC,,Y4000\nVICE CHAI,\"CNL FINANCIAL GROUP, INC.\",J7120\nVice President & Tre,\"Praxair, Inc.\",M1000\nREAL ESTATE,OLIVERMCMILLAN,Z9500\nCPA,Mohr Davidow Ventures,J1200\nCONSULTANT,GOVERMENT,Z9500\nphysician,University of Iowa,H1130\nRETIRED,CHS,Y4000\nStaff Attorney Supervisor,Commonwealth of Kentucky,X3000\nConsulting Manager,Kaiser Permanente,H3700\n\"Writer, Attorney\",Self employed,K1000\nPresident/CEO,Ameripoint Title of Houston,F4300\nFERGUSON STEEL CO INC,,M2100\nREGISTERED NURSE,REGISTERED NURSE,F1000\nCOMMONWEALTH MEDIATIN & CONCIL INC,,Y4000\nCO,\"SUSAN GOLDSTEIN CONSULTING, INC.\",Y4000\nPartner,North Bridge Communications,K2000\nATTORNEY,\"ROBERT B. FEINGOLD & ASSOCIATES, PC\",Y4000\nConsultatant,GregSchildwachter.com,K2000\nATTOR,\"BUTLER WOOTEN & FRYHOFER, LLP\",K1000\nMarketing Mgr.,USMC(RET)/SIKORSKY,Y4000\nPHOTOGR,ROBERT CAMPAGNA PHOTOGRAPHY,G5240\nVP & CIO,MARRIOTT HEADQUARTERS,T9100\nL M TOWNSEND CATERING,,G2910\nHOME BUILDER,ELLIOTT HOMES INC.,Y4000\nCHIEF EXECUTIVE,HSG/CODEBLUE,Y4000\nBEST WESTERN WAYSIDE INN,,A3500\nSOFTWARE SPECIALIS,AMERICAN EXPRESS,J7400\nPHYSICIAN,CENTER FOR INTERVENTIONAL PAIN MANAGEM,J1200\nGERAWAN FARMS,,A1400\nSENIOR TECHNICAL ANALYST,HCA,H2100\nVALLEY RADIATON CLINIC,,Y4000\n\"MEAD, DORE & VOUTE\",,Y4000\nLobbyist,Van Scoyoc,K2000\nCFO,3 RIVERS MARINE & RAIL TERMINL,Y4000\nPublic Affairs,Princeton Public Affairs,K2000\nFarmer/Developer,Empresas Valdivieso,Y4000\nTELESPHERE COMMUNICATIONS,,Y4000\nWorld Champion Bridge,Self employed,Y4000\nPresident,Henry Consulting Group,Y4000\nCYBER SECURITY DIRECTOR,MICROSOFT,C5120\nSORENSEN TRANSPORTATION COMPANY INC,,T3100\nDENTAL HYGIENIST,STEVEN KRAUSS DDS,J5100\nPhysician Executive,Wellpoint,J1200\nCeo,A-z Sand & Stone Inc.,B5100\nUPRC,,Y4000\nPRESIDENT,\"STUPPLER & COMPANY, INC.\",Y4000\nINNOVATIVE HEALTH STRATEGIES,,H0000\nExecutive Director/CEO,NMPP Energy: Nebraska Municipal Power,E1600\nDirector Museum Gallery,White Plains Library,F2300\nPRESIDENT,HEARD MUSEUM,X4200\nCO-CHAIRMAN,GRAYLOEFFLER LLC,K2000\nSoftware Engineer,Federal Express,T7100\nAttorney,\"Wolf Block Schorr and Solis-Cohen, LLP\",K1000\nHoward University,Grants Administrator,Y4000\n\"Vice President, Chie\",GE Energy,M2300\nSOFTWARE ENGINEER,SMALL TREE COMMUNICATIONS,Y4000\nPRES,APPLIED SIGNAL TECHNOLOGY INC.,C4600\nIRON ENTERPRISES INC,,F1100\nHealth Care,Cheryl Brown,Y4000\nThoracic Surgeon,Cardiothoracic Surgical Assoc.,H1130\nADELPHI UNIV,,H5100\nPRESIDENT,DUVAL ASPHALT,B5100\nOwner,G Ronon Investments,F7000\nPRODUCER,CAREY-WERNER,C2300\nRetired,\"Beaty Haynes&Patterson,Inc.\",Y4000\nMARKETING PROJECTS INC,,G5280\nATTORNE,REED ARMSTRONG GORMAN MUDGE,Y4000\nSELF-EMPLOYED,JEFFREY SIMPSON,Y4000\nDeveloper,Tully Construction Co Inc,B1500\nStaff,U S Senate,X3000\nPeach State Labs,,C1000\nTITLE SEARCHER,SELF-EMPLOYED,G0000\nSALES,COSTCO INC,J1200\nSales/Marketing,Universal Orlando,G6700\nOPRYLAND U S A,,T9300\nATTORNEY,\"BURR & FOREMAN, LLP\",K1000\nCEO,Lend lease retail & Communitie,Y4000\nCONSULTANT,JPMM INC.,G5200\nRESTAURANT MANAGER,THE DINEX GROUP,G2900\nANIMATION,FIRE FLY/ANIMATION,Y4000\nRealtor,Amigas Realty,F4200\nPRESIDENT,THE WORTHING COMPANIES,Y4000\nVICE PRESIDE,FREMONT HOTEL & CASINO,G6500\nPHYSICIAN,ST MARYS MEDICAL CENTER,H2000\nROBERT GUZZARDI & ASSOC,,Y4000\nPARALEGAL,KNOBBE MARTENS,J7400\nBOARD MEMBER,NH LAKES ASSOCIATION,Y4000\nPRIVATE PRACTICE HEALTH INSURA,RBCB,J1200\nVice President and Controller,\"Piedmont Natural Gas Company,\",E1140\nMANAGEMENT,BAU CORP,Y4000\nComodity Broker,Self,Y4000\nTHE LAW OFFICES OF PETER J BRUDNY P,,K1000\nLINDEN LUMBER CO,,A5000\nDealer,Fred Martin Superstore,Y4000\nVice Chair,Albright Stonebridge Group,K2000\nDIRECTOR,NATIVE AMERICAN SCHOLARSHIP FUND/DI,Y4000\nINFORMATION SYSTEM,WELLS FARGO BANK,F1100\nMarine Chief Engineer,Retired,X1200\nCEO,WOLVERINE INSURANCE,F3100\nFRANKLIN & ASSOC,,Y4000\nFANNIE MAY,,J7700\nCEO,Electric Power Supply Association,E1600\nLawyer,Wood/Brownstein,K1000\nCONSTRUCTION EX,WMS ENTERPRISES LTD,Y4000\nCHAIRMEN O,AYRES LEWIS NORRIS & MAY,B4000\nMAPLE GATE ANESTHESIOLOGIST,,H1130\nATAK MGMT CORP.,,Y4000\nConsultant,Jay Thorne Inc,Y0000\nBLACK DIAMOND MINING,,E1200\nLAWYER,\"FRANKEL, RUBIN, BOND, DUBIN, SIEGEL &\",Y4000\nBUSINESS,GREGORY JOHN GALLIVAN,Y4000\nAMLI RESIDENTIAL PROPERTIES TRUST,,F4100\nmoney manager,roumell asset management,F2100\nHEALTHPLEX,,H0000\nVP,BRB Contractors Inc,B1000\nT J RILEY & ASSOCIATES,,G5270\nBEST EFFORT,NAV PAC,Y2000\nUNIVEST REALTY AND MANAGEMENT,,F4200\nDEVELOPMENT MANAGER,STANFORD UNIVERSITY,H5100\nWILLDE FARR & GALLAGHER LLP,,Y4000\nPHYSICIAN-ATTORNEY,,H1130\nCONSULTANT,\"TSA PARTNERS, INC.\",Y4000\nOwner,Fred Von Studios,Y4000\nDAMROW COMPANY INC,,A2000\nadministrator,Drew University,H5100\nASSISTANT ARCHIVIST,THE CHARLESTON MUSEUM,X4200\nEXECUTIVE,BELL AQUACULTURE,Y4000\nOWNER,CHEVALIER & ASSOCIATES,Y4000\nENGINEER,ABI IRRIGATION INC.,A4000\nMACHINE TOOL SALES,,Y4000\nCHIEF FINANCIAL,NUTRACEUTICAL CORP.,H4300\nElectronic,Self employed,C5000\nRE MAX RIVER CITIES,,F4200\nOWNER,LEWIS-BURKE ASSOCIATES,K2000\nKNOX OIL OF TEXAS INC,,E1100\nRESEARCHER,LOWELL OBSERVATORY,Z9500\nRUSELL CONSTRUCTION CO,,B1500\nPRESIDENT & CEO,LEGACY HEALTH,H2000\nPROJECT EST,HUTTON CONSTRUCTION INC,B1500\nFemale Small Bus,Westside Computing,Y4000\nAttorney,Grunfeld Desidario,K1000\nBROUTMAN & ASSOCIATES,,Y4000\nPrivate Equity Investor,Self,F0000\nATTORNEY/COMMUNITY VOLUNTEER,BRYAN CAVE LLP /SELF-EMPLOYED,K1000\nPRETI FLAHERTY BELIVEAU PACHIOS & H,,K1000\nHigh School Principal,Roaring Fork School District,X3500\nCHAM HILL,,B4000\n\"Director, Govt Affai\",\"IIABA, Inc.\",F3100\nFINANCIAL SVCS,SEARS HOLDINGS CORP.,G4300\nMarketing Mgr.,Hines,Z9500\nINVESTMENTS,TINLIN INVESTMENTS,Y4000\nINVESTMENT MANAG,BECKER INVESTMENTS,F7000\nOWNER,SOUTH BOSTON PHYSICAL THERAPY,H1700\nDIRECTOR,BARBARA W GOMEZ ARD RESEARCH,Y4000\nFARLEIGH FREEDYARD,,Y4000\nOwner,Design Electric,B3200\nlawyer,Rischmiller and Knippel LLP,K1000\nVICE PRESIDENT & DIRECTOR,BANK OF MINGO,F1100\nSULLIVAN & SON,,Y4000\nConsultant,Mesacosa Llc,Y4000\nPRESIDENT,RESEARCH FOR ACTION,J7400\nExecutive,AM&G Waterproofing,B3000\nFRANK POLITEO & ASSOCIATES,,Y4000\nHOMEMAKER INVESTOR,,F7000\natcs,faa,X3000\nDIRE,MORTGAGE INSURANCE COMPANIES O,F4600\nMANAGER,\"Jobe Concrete Products, Inc.\",B5100\nANNISTON MUNICIPAL AIRPORT,,T1600\nRETIRED LATIN TEACHE,NA,J7400\nOWNER,EMBUDO VALLEY ORGANICS,J7400\nVERNON COMPANIES,,Y4000\nBECHTEL JACOBS CO,,Y4000\nPRESIDENT,MORRISON MEAT PACKERS,G2300\nManaging Director,FNL Management Corp,Y4000\nPHYSICIA,PEDIATRIC CARDIOLOGY GROUP,H1130\nCEO,Davidson Insurance/Financial,F3100\nWolverine Gaas & Oil Corp,,E1600\nProgrammer/Applications Developer,Dept of Veterans Affairs,X3000\nWHITLOCK SELIM & KEEHN,,Y4000\nJOHNSON OIL CO OF GAYLORD,,E1100\nSPORTS PLAY,,Y4000\nATTORNEY,SEVERNS & BENNETT,K1000\nPRESIDENT,FSU,H5100\nphysician,university of washington,H5100\nROBERT PITTENGER CO,,F4000\nSALES,SHELL,E1110\nPRESIDENT,A1 PARTS SUPPLY,Y4000\nPayroll,Target Corp,G4300\nREAL ESTATE BROKER,PAT HUFFMAN REAL ESTATE,F4200\nInformation Requested,Sunbelt Systems,Y4000\nDICK & HARRIS,,Y4000\nNEUROLOGICAL SURGEON,\"COLUMBIA NEUROSURGICAL ASSOCIATES, LLC\",H1130\nBusiness Consultant,Freelance,G5200\nOperations Ma,Rineer Hydraulics Inc,Y4000\nPEOPLES BANK-MCPHERSON,,F1100\nPresident,Watson Mulch,Y4000\nTeacher,Showa Boston,Y4000\nREALTOR,PETER BROWN REALTORS,F4200\nCLEANERS,,G5500\nSALES REP,EBSCO,Y4000\nEVP & CEO,South River EMC,Y4000\nMANAGER,\"HUME RUN, INC.\",Y4000\nDistributor,Hycite Corporation,Y4000\nPRESIDENT AND CEO,DELUCCHI PLUS,G5210\nVP FLOOR OPERATIONS,NYMEX,F2200\nPOLICE OFFICER,FAIRFAX COUNTY POLICE DEPT,Z9500\nVICE PRESIDENT,GREYSTONE POWER CORPORATION,E1600\nVICE PRESIDENT,HAWAIIAN ELECTRIC COMPANY,B3200\nTeacher,CVU High School,Y4000\n\"CHAIRMAN, PRESIDENT &\",AUTOZONE INC.,T2200\nCPA,Squire Lemkin & LLP,Y4000\nVP CEMENT GENERAL MANAGER,\"TEXAS INDUSTRIES, INC.\",B5100\nReal Estate Broker,RE/MAX Foothills Real Estate -,F4200\nN/A/HOUSEWIFE,,B5000\nOWNER,C O BUILDING SYSTEM INC.,Y4000\nPresident,Woods Operating,F7000\nU OF PENNYSYLVANIA,,J1200\nINVESTMENT EXEC.,LIONHEART,Y4000\nBUSINESS OWNER,COLONIAL BUILDING SUPPLY,Y4000\nELECTROPHYSIOLOGY,Marin General Hospital,H1100\nPARTNER,ICHIGO ASSET MANAGEMENT,Y4000\nPRESIDENT,COMMAND ROOFING COMPANY,B3000\nRIDDLES,,Y4000\nN/A/MINISTER,,X7000\nDelegate,Self,G0000\nLINDSEY FENCE COMPANY,OWNER,B5400\nManaging Director,Reynders Gray & Co.,Y4000\nSOCIOLOGIST,RETIRED,Z9500\nLAW CLERK,\"ABRAMS, GORELICK, FRIEDMAN & JACKSON,\",K1000\nINDEPENDENT,,Y4000\nINVESTMENT ADVISOR,FIRST WASHINGTON CORPORATION,F2100\nAccountant,THM,H2000\nBroker Real Estate,Self Employed Remax,F4200\nSTUDENT,DREXEL UNIVERSITY COLLEGE OF MEDICINE,H5150\nCHAIRMAN AND CEO KRAFT FOODS INC.,KRAFT FOODS GLOBAL INC.,G2100\nNATIONAL EDUCATION ASS,,L1300\nF. & I. MANAGER,\"PAUL EVERT'S RV COUNTRY/F. & I. MAN\",Y4000\nAttorney,Loeb & Loeb,Z9500\nREAL ESTATE INVESTOR,APF PROPERTIES,F4000\nEditor,Odyssey Media,Y4000\nROBINSON MEMORIAL HOSPIT,,H2100\nSenior Manager,Vera Institute,J1200\nATTORNEY,HODGMAN,K1000\nProprietor,\"Ram Seal, Inc\",Y4000\nFINANCIAL SOLUTIONS,,F0000\nSenior Vice President/COO,AtlantiCare,H2100\nResearch Scientist,USDA,J1200\nREAL ESTATE,\"EARTHTONE INVESTMENTS, L.L.C.\",Y4000\nLandscape Architect,Michael Yellin,Y4000\nFinancial Rep.,Northwestern Mutual Financial,F3100\nCHIEF EXECUTIVE OFFICER,BIREME SYSTEMS LLC,Y4000\nCEO,ARNERLSTAR TRANSPORATION GROUP,Y4000\nCOATS/ROSE/ATTORNEY,,K1000\nCEO,ICMediaDirect.com,C5140\nBusiness Owner,Buy Low Foods,F2000\nOwner,RP Lumber,B5200\nREAL ESTATE AGENT,VT PARTNERS,Y4000\nOwner,Garden State Homes,B2000\nPHYSICIAN,LONGSTREET CLINIC,H1100\nCHAIRMAN AND CEO,MESIROW FINANCIAL,J5100\nAQUA KOOLERS,,Y4000\nNURSE PRACTITIONER,COVENANT CLINIC,F2100\nLAWYER,FEDERAL HO,Y4000\nattorney,\"Procopio, Cory, Hargreaves &\",Y4000\nBANKER,HUDSON CITY BANCORP INC.,F1100\nENGINEER,\"ABATANGELO-HANSON, LTD.\",Y4000\nSTRAIGHT CREEK FARM,,A3000\nACCOUNT REP,AMUSEMENT SERVICES,G6000\nGeneral Counsel,\"Bally Technologies, Inc\",G6400\nattorney,\"Kanji & Katzen, PLLC\",Z9500\nPRODUCTION MANAGER,ARMOR HOLDINGS,D0000\nAttorney,The Spence Law Firm,K1000\nStock Trader,Self employed,F2100\nWM J KENNEDY AND SONS,,Y4000\nMARX BROTHERS INC.,,Y4000\nARLINGTON OIL MILLS,,A1600\n\"A Bolder Vision, LLC\",,Y4000\nINSURANCE EXECUTIVE,BROWN & BROWN INSURANCE,F3100\nCENTURY 21 DEPT STORES,,G4300\nSelf employed,Maguire & Gord,Y4000\nVP,DAYTOP,Y4000\nDry Cleaning,Steamer Cleaners,Y4000\nMedia sales,\"Bayard Oot Jones & Assocs, LLP\",Y4000\nCOMPUTER CURRICULUM DEVELOPER,IBM,J1100\nEngineer,\"EMB INGINEERS & PLANNERS, INC\",Y4000\nSR VP,BELZ ENTERPRISES,F4000\nKIMCO DEVELOP CORP,,J5100\nConstruction Worker,Government,X3000\nDesigner,Triform Computer Drafting,Y4000\nChemist,Wyeth,H4300\nSNACK BAR MANAGER,,G2900\nGeneral Manager,Larry H Miller Chevrolet,T2300\nCOO,CLOUD PEAK ENERGY RESOURCES,E1210\nElectronics Speciali,Amtrak National Railroad,T5100\nPHYSICAL THERAPIST,AT HOME NETWORK,Y4000\nDOCTOR,THE RETINA GROUP INC,H1100\nINTELLIGENCE OFFICER,MILITARY,X5000\nCRM,,J5100\nOffice manager,General Trailer Parts LLC,Y4000\nPRESIDENT,THOMAS & THORNGREN,F5100\nOWNER,FREEDOM COMPANIES,T3100\nLOMAR DISTRIBUTING,,G2400\nEXECUTIVE,BROTHERHOOD MUTUAL,F3100\nManager,Centerstage Attractions Inc.,Y4000\nSelf,Rancher,A3000\nCOMMERICAL REAL,PCKARD REALTY INC.,F4200\nSELF-EMPLOYED,PEST FOG SALES CORPORATION,Y4000\nPROCUREMENT ANALYST,DLA,L1100\nASSOCIATE PROFESSOR,NATIONAL DEFENSE UNIVERSITY,H5100\nDIRECTOR,NAMTOR INC,F2100\nMother,Self,Y1000\nPARK THOMAS & BURKETT,,K1000\nAG RISK,,A4000\nartist,Hanks Stained Glass and Silk F,Y4000\nSVP GLOBAL SUPPLY CHAIN,GOODMAN GLOBAL,M4300\nMARKETINT & SALES,SCHLEGEL SYSTEMS,Y4000\nFOUNDING PARTNER,EDUCATION FIRST CONSULTING,Y4000\nOWNER,\"PEETZ FARMS, INC.\",A1000\nCEO,MISSOURI FOUNDATION FOR HEALTH,H0000\nGOVERNMENT AFFAIRS,RBS CITIZENS,Y4000\nField Reimbursement Manager,Genentech,H4500\nATTORNEY,JACKH. HUGHES JR. ATTY,Y4000\nSENIOR CADD TECHNICIAN,TY LIN INTERNATIONAL,B4000\nAIGNER CLARK L.L.C.,SELF-EMPLOYED,G5200\nPROJECT M,THE WAKEFIELD CORPORATION,Y4000\nDirector of Rehabili,Southwest Orthropaedics & Spine Center,Y4000\nCONSULTANT,CAPITAL LINKS CONSULTANT,K2000\nDirector,Chicago Project for Violence Preventio,Y4000\nWR CAPITAL,CONSULTANT,F0000\nOWNER,KEJ MACHINE INCE,M5000\nLawyer,eCotton.com,C5140\nGENERAL MANAGER,EMPIRE SOUTHWEST,B6000\nBanker,Gladstone Capital,Z9500\nORTHOPAEDIC SURGEON,WELLHORN CLINIC,H1130\nINFORMATION TECHNOLOGY,\"CISCO SYSTEMS, INC.\",C5110\nCHAIRMAN,THE MADISON GROUP INC.,K2000\nEXECUTIVE RECRUITER,\"HEIDRICK & STRUGGLES, INC.\",Z9500\nProfessor,\"Univ. of CA, Berkeley\",H5100\nMANAGING PARTNER,TATE & TRYON CPAS AND CONSULTANTS,G0000\nSALES,CROSS CREEK SYSTEMS,Y4000\nVice President,\"W A Schickedanz Agency, Inc\",F3100\nPresident,\"C.H. Glanz, Sr. Plumbing & Heating, In\",B3400\nPresident and Chief Executive Officer,St. Vincent Health System,H2100\nWARNER BROTHERS DOMESTIC TV DIST,,C2400\nCorporate Development,Dean Foods Company,A2000\nBBN TECHNOLOGIES,,H6000\nSELF-EMPLOYED,LATHER AND LOTIONS,Y4000\nPRESTON C CARLISLE P C,,Y4000\nGOVERNMENT RELATIONS DI,WELLS FARGO,F1100\nPresident,Haddon Renal Medical Specialist,H1130\nCEO,Holland Capital Markets,F2100\nCONSULTING ENGINEERS COUNCIL OF WAS,,B4000\nSTAFF PHYSI,VETERANS ADMINISTRATION,X3000\nGARRETTS FURNITURE,,Y4000\nCONTRACTOR,BARNARD COMPANIES INC.,B1000\nNCH CORP,,\nFORT WAYNE FOUNDRY/EXECUTIVE/EXECUT,,M2100\nAMURCON REALTY COMPANY,,F4200\nSURGICAL PRACTICE,,H1130\nDIRECTOR,ENTERPRISE HOLDING,T2500\nMANAGING DIRE,DESTINATION MATERNITY,Y4000\nCENTRECAP,,F4600\nATTORNEY,SHEA SHEA,Y4000\n\"Men's Basketball Coach\",University of North Carolina,H5100\nASSISTANT TO THE PRESIDENT,AFL-CIO,L0000\nTSAR,,JE300\nBANKER,FIRST TEXOMA NATIONAL BANK,Y4000\nLoan from Candidate,Line of credit,Z9000\nChief Executive Officer,\"Premier, Inc\",H2000\nSoftware Design,Self,C5120\nVice President,Great Dane,G2900\nEXECUTIVE,MIE PROPERTIES,F4000\nSOUTHERN TIER CENTRAL PLANNING BOAR,,J7400\nVice President,Mercedes Benz of LN,Y4000\nCo-founder,Next Fuels,E1500\nLEGAL CONSULTANT,SELF-EMPLOYED,J5100\nLA HAMBRA STUCCO,,B3000\nCEO,\"KIVEMED, INC.\",Y4000\nATTORNEY,POWELLGOLDSTEI,K1000\nReal Estate Sales,Broadway Realty,F4200\n,FULTZ MADDOX HOVIOUS & DICKENS PLC,Y4000\nCONSULTANT,YATES PROPERTIES,F4100\nTOLTEC PARTNERS,,J1200\nINFO REQUESTED,P Cabrales Construction,B1500\nMITSUBISHI TRUST,,F1100\n\"EXEC VP, CHIEF LEGAL OFFICER, AND CAO\",SEDGWICK,Y4000\nInformation Management C,\"Metastorm, Inc\",Y4000\nINDEPENDENCE RESOURCE INC,,Y4000\nSenior Management,Mellon Bank,F1000\nVice President,Bochringer Ingelhim Phas,Y4000\nOWNER,POWERHOUSE APPLIANCES,Y4000\nCOIM PRODUCTION,,Y4000\nPresident,AQuantive,C5120\nProfessor,City University of Ny,H5100\nCPA,B.R. CINCINNATI,Y4000\nAttorney-at-Law,Robbins Geller et al,K1100\nGINSBERG AND PALUMBO PC,,Y4000\nPUBLIC POLICY,PATTON BOGGS,K1000\nReseacher,University of Washington,H5100\nattorney,Ellmann & Ellmann,K1000\nSECRETARY/TREASURER,\"LONE STAR VAN LINES, INC.\",T3100\nPresident,Greater Cleveland Auto Dealers,T2300\nAttorney,Federal Public Defender,X3200\nPutnam Investments PAC,,F2100\nPRESIDE,CARDINAL INVESTMENT COMPANY,F2100\nCheck Processor,J.P. Morgan Chase Bank,F1100\nMarketing,LATX Operations,Y4000\nVP & Gm Energy & Pro,\"Air Products and Chemicals, Inc.\",M1000\nFIELD ENGINE,ANCHOR DRILLING FLUIDS,E1150\nVP GLOBAL HR,DELTA,T1100\nCWA LOCAL 9400,,LC100\nGOVERNMENT RELATIONS,AMERICAN PUBLIC UNIVERSITY,H5100\nMARTIN BROS WINERY,,J1100\nATTORNEY,SAMIR MASHNI & ASSOC PC,Y4000\nContractor,\"DonahueFavret Contractors, Inc.\",B0500\nCOMPUTER DESIGNER,SANDISK,C5110\nCOO,DSPOLITICAL LLC,Z9500\nCROWN LIEBING CO,,Y4000\nKIKKOMAN FOODS INC,,Y4000\nST VINCENTS PROF BUILDING,,Y4000\nABRAHAM WATKINS ET AL,,K1000\nengineer,3M,M2300\nPRES. & CEO,NEXTIT CORP,Y4000\nBusinessman,HCB Enterprises,G5500\nNEEL TITLE CORP,,F4300\nPENN ADVERTISING INC,,C2100\nHEALTH ECONOMIST,SELF,Y4000\nSCHOOLTEACHER,BALDWIN PARK USD,X3500\nbuiness owner,\"Count-On Tools, INC\",Y4000\nTEACHE,NEVADA STATE EDUCATION ASSN.,L1300\nENVIRONMENTAL,ASRC,Y4000\nSW Engineer,SDS,Y4000\nEngineer,Hatch MOtt MacDonald,B4000\nMUSICIAN,REO SPEEDWAGON,C2600\nVICE PRESIDENT,OAKLEY NETWORKS,C5120\nFINANCIER,HBJ INVESTMENTS LLC,F7000\nDOFFERMYRE SHIELDS & CANFIELD,,K1000\nATTORNEY,COUNTY OF JIM WELLS,X3000\nOWNER,\"R.S. AUDLEY, INC.\",Y4000\nOWNER/MGR,CYPRESS EQUIPMENT SERVICES INC,J1100\nPartner,CB&T,Y4000\nGovernment Relations,Nalco,M1000\nFIELD ENGINEER,SCHLUMBERGER,E1150\nATTORNEY,SMITH-JOHN,Y4000\nPUBLISHER SALES,SELF-EMPLOYED,C1100\nSALES,US ORDINANCE,D8000\nCEO,CANTOR COMMERCIAL REAL ESTATE,F4000\nGovernment Relations Consultant,\"Nelson, Mullins, Riley & Scarborough,\",K2000\nELECTRICAL ENGINEER,MARVELL SEMICONDUCTOR,Z9500\nTRI,PARKS CHESIN WALBERT & MILLER P,Y4000\nPresident,Nu Skin Enterprises,M3300\nCEO,\"North American Hydro, Inc.\",Y4000\nPSYCHOLOG,JEWISH BOARD OF EDUCATION,X3500\nLactation consultant,Self,Z9500\nDEVELOPMENT AND FUNDRAISING,ST. JOSEPH HOSPITAL FOUNDATION,H2100\nVICE PRESIDENT,CLOW WATER SYSTEMS COMPANY,Y4000\nATTORNEY,KRAUS & ZUCHLEWSKI LLP/ATTORNEY,Y4000\nConsultant,Operating Enhancements LLC,Y4000\ncpa,bregante+co,F5100\nPRODUCT SERVICE ENGINEER,LMS OIL,J2200\nPRES,BURKHART ADVERTISING SIGN DIV.,G5210\nEDUCATION SERVICES,CAMPUS DIRECT,Y4000\nCAMPBELL PEACHEY ASSOCIATION,,Y4000\nConsultant,Thinkfast Solutions,Y4000\nSURGEON,COOPER CLINIC,H1100\nPROGRESSIVE DEMOLITION,,B3600\nFINANCE,B.T.I.G. L.L.C.,Y4000\nBuilder,Lautz Custom Building,Y4000\nTHE BARSTOW SCHOOL,,X3500\nPARTNER,\"T & B TOWING, LLC\",T3100\nWOLFLIN MORTGAGE CO,,F4600\nPARTNER (ATTORNEY),COVINGTON & BURLING,K1000\n\"Social Work, Agency Owner/Director\",Self employed,H6000\nCitizen,Concerned,Y4000\nINFO REQUESTED,ROOFING BY SE SPICER,B3000\nCOMM TO ELECT PETER FORMAN,,Y4000\nPETER R FRIEDMAN LTD,,F4000\nC,NORTHEAST REHABILITATION HOSPITAL,H2100\nActress/Producer,Self Employed,C2400\nOWNER,SULLIVAN FINANCIAL,Y4000\nFINDLEYS PHARMACY INC,,F1100\nMicroprocessor Designer,MOTOROLA,C4600\nREALTOR,HOME REAL ESTATE,F4000\nCHAIRMAN AND COO,ATLANTIC RECORDS,C2600\nIT Consulting,\"Orange Technologies, Inc.\",Y4000\nSO COLUMBIA BASIN IRRIGATION DIST,,Y4000\nOffice Manager,Goode for Congress,J1100\nStockbroker,Hilliard-Lyons,F2300\nPenn Mutual,,F3300\nHOMEMAKER,NOT EMPLOYED,G0000\nORTHOTIST,ARIMED ORTHOPEDICS,H1130\nArtistic Director,Lincoln Center Theater,J1200\nCAMP DIRECTOR,RABBINICAL COLLEGE OF AMERICA,H5100\nPHYSICIAN,BEAVER MEDICAL GROUP LP,H0000\nPARTNER,Wilmer Hale,K1000\nPR,ALADDIN-WARD ELECTRIC & AIR INC.,B3200\nDENTIST,RANDY R. BLACK DDSPC,H1400\nMEMBER,ARYANA MGMT. GROUP LLC,Y4000\nOWNER,HEADSTART LLC,H6000\nCHAIRMAN,J.I. HARRIS & ASSOC.,F2100\nEO,North Dakota AB,B2000\nPRESIDENT & CEO,WORC REGIONAL CHAMBER OF COMMERCE,G1100\nWHITE FLEMING & CO,,F5100\nPsychologist,Cleveland Clinic,H1110\nPROPERTY TAX CONSULTANT,,J5100\nPRESIDENT,\"PENGUIN INDUSTRIES, INC\",F2100\nStaff,\"California Waste Solutions, Inc\",Y4000\nHEALTHCA,PRICEWATERHOUSECOOPERS LLP,F5100\nPartner,\"Miller, Zeichik and Associates Inc.\",Y4000\nPHYSICIAN,\"CVG, PC\",Y4000\nRE DEV,CALCAGNO INVESTMTS,J1100\nEXPRESS ESCROW COMPANY,,F4700\nCONSULTANT,CAROLINA LAND ACQUISITIONS,Y4000\nHANS H HERTELL LAW OFFICES,,K1000\nCEO,\"ATHELERA, LLC\",Y4000\nRetired,Technical Career Placemen,Y4000\nWIND FARMER,SELF-EMPLOYED,Y4000\nATTORNEY,FOUST & CLARK P.C.,K1000\nCasting Director,Atomic Casting,J1200\nPRESIDENT,COOPER LIGHTING,Y4000\nPENN CORP FINANCIAL GROUP,,Y4000\nATTORNEY,\"MCGLINCHEY STANFFORD, PLLC\",Y4000\nProducer,The Jim Henson Co.,C2300\nJAN ASHFORD PLUMMING INC,,Y4000\nATTORNEY,RYAN MERCALDO AND WORTHINGTON LLP,Y4000\nSOCIAL WORKER,COVENANT HOUSE,H6000\nComputer Programmer,Northrop Grumman Corp,D5000\nROY D EDMINSTON CO,,Y4000\nAttorney,Boudreau Albert & Wohlfeil,K1000\nAttorney,\"Direct Management, Inc\",Y4000\nJUDGE/ATTORNEY,\"STATE OF IL/STEFFEN, KELLY, & STEFFEN\",X3000\n\"VP, Development\",\"Triad Hospitals, Inc.\",H2100\nBANK,FIRST NATIONAL BANK OF STRATTO,F1100\nPresident,Old Surety Life Ins Co,F3300\nRUM TRUCKING,,T3100\nTEACHER,CONROE ISD/TEACHER,X3500\nENGINEER,\"PHONE COM, INC.\",T1400\nPresident,\"Strategic Soultions, Inc\",Y4000\nATTORNEY,\"BELCHER MANAGEMENT, LLC\",Y4000\nASSOC PROFESSOR EMERITA,NASSAU COMMUNITY COLLEGE,H5100\nOverseas Contractor,ITT-KBOSSS IMD-SSB-CPC,Y4000\nWALSH & WATTS INC,,K1000\nBEERGNER BOCKORNY INC,,K2100\nPHYSICIAN,UNIVERSITY OF WISCONSIN DEPT OF FAMILY,H1100\nPresident,Acme Electric Company,B3200\nAttorney,Farella Braun + Martell LLP,K1000\nSR. VICE-PRESIDENT,SALLIE MAE,F1410\nAttorney,\"Quarles & Broady, LLP\",K1200\nOwner,Don Soderberg Painting & Wallcovering,B3000\nSENIOR VP,DULKO GROUP,K2000\nTEACHER,EL DORADO UNION HIGH SCHOOL DISTRICT,Y4000\nATTORNEY,FULDER PATTON LLP,Y4000\nPRESIDENT/OWNER,ISF,Y4000\nCALLAS CONTRACTORS,,B0500\nJEWELRY DEALER,,G4600\nPRESID,\"CHARLES FRADIN, INCORPORATED\",Y4000\nAdministrative Assistant,University of Missouri,H5100\nMEDICAL SALES,KARL STORZ,Y4000\nFeedyard Manager,Carrizo Feeders,A3300\nATTORNEY,COHEN PLACITELLIA AND ROTH,K1000\nFREELANCE,SELF EMPLOYED,G5200\nPresident,Simply Hair Salon And Renewal Spa,G5100\nEducator,Northwestern Univ.,H5100\nPRESIDENT,SPROUT ONLINE,C2200\nSENIOR VP; DIRECTOR OF CORPORATE COMMU,URBAN PARTNERSHIP BANK,Y4000\nCONCEPTS MARKETING,,Y4000\nCABLE TELEVISION,,C2200\nRETIRED TEACHER/N/A,,J1200\nROY CAMPBELL CHEVROLET/MAZDA/AUTO D,,T2300\nCOUN,KENOSHA HUMAN DEVELOPMENT SERV,Y4000\nSTURDENT,STUDENT,Y1000\nVP & Chief Licensing Officer,Merck Sharp & Dohme,H4300\nAgency Director,NY State,Y4000\nATTORNEY,ROPERS MAJESKI PC,Y4000\nVICE PRESIDENT,WALT DISNEY IMAGINEERING,C2000\nChairman,Bastion Capital Corp.,F0000\nMANAGER,ECPI COLLEGE OF TECHNOLOGY,H5300\nCEO,Edward and Kelcey Engineers,B4000\nBusiness Owner,Forrest Tire,M1500\nJOKERS WILD,,G6500\nCHAIRMAN,MORINO INSTITUTE,X4100\nPsychotherapist,Aurora Health Care,H2100\n\"Manager, Software Development\",\"Cisco Systems, Inc\",C5110\nKOGAP MFG CO,,A5000\n\"Vice President, Warehousing\",Golub Corporation,G2400\nMUNOCO COMPANY,,Y4000\nManager,schaller tool and Die Co,J1100\nCEO,Bowersox Insurance Agency Comp,F3100\nPRINCIPAL,INNOVATION INVESTMENTS,F7000\nFINANCIAL ADVISORS,CEDAR BACK FINANCIAL PARTNERS,Y4000\nATTORNEY,WHYLE HIRSCHBOEDE DUDALE,Y4000\nCounselor,Cjuhsd,Y4000\nPresident,Benson Electric Inc,B3200\nDISTRIBUTION EXEC.,SELF-EMPLOYED,Y4000\nMAX SERV,,Y4000\nOwner,\"Robin's Nest Restaurant\",G2900\nINFO REQUESTED,REALTY WORLD PETROWSKY QUINTAL,F4200\nJEMISON AND MENDELSOHN PC,,K1000\nABN AMRO INFORMATION TECHNOLOGY SER,,F1100\nEXECUTIVE,SWAP SHOP,Y4000\nMOVER,GARRETTS MOVING AND STORAGE INC,Y4000\nAttorney,Frickey et al,K1000\nEXECUTIVE VICE PRESIDENT/CIO,TECH DATA CORPORATION,Y4000\nGRN. CONTR. CI,VALLEY ENGINEER INC.,B4400\nADCOMPUTER,,C5000\nCOLONIAL WHOLES,,G2850\nMICHIGAN FITNESS FOUNDATION,VICE PRESIDENT,G0000\nPhysician,Medical Edge Healthcare,Y4000\nCOLLEGE TEAC,SARAH LAWRENCE COLLEGE,H5100\nProfessor,Duquesne University,J1200\nWILLIAMSBURG FIRST NATIONAL BANK,,F1100\nPUBLISHER,MONARCH INTERNATIONAL,Y4000\nSALEM FIRE DEPARTMENT/FIREFIGHTER/E,,L1400\nSENIOR ADVISOR,OAK HILL CAPITAL MANAGEMENT INC,F2500\nRegional Manager,C.S.R.  RINKER,Y4000\nRANCHER,BUSINESSMAN OWNER,Y4000\nEVP & CFO,FirstEnergy,E1600\nSALES MANAGER,MYLAN INC,H4300\nENGINEER,\"CAPCO, INC.\",Y4000\n\"DIRECTOR, FEDERAL PUBLIC POLICY\",DOMINION,E1600\nRETIRED ENGINEER,,J7150\nBILLING MANAGER,SELF-EMPLOYED,Y4000\nREALTOR,\"THE ZAC TEAM, INC\",F4200\nLaw Prof.,Hofstra. Law School,H5170\nVICE PRESIDENT,DYNAMIC CORPORATION,Y4000\nTRAVEL DELIGHT,,T9400\n\"WEBSTER'S WINE BAR\",,Z9000\nTEACHER,WAYNEFLETE SCHOOL,H5100\nCHRISTIAN METHODIST CHURCH,,X7000\nPresident And Ceo,Gordon Brothers Group,F5500\nExecutive,Parkinson Disease Foundation,Y4000\nPRESIDE,\"L. L. PELLING COMPANY, INC.\",Y4000\nPr,Airgas,Y4000\nPACKAGING SERVICE OF MD,,H1100\nINVESTMENTS,\"JUNCTION ADVISORS, INC.\",Y4000\nTHE DYNAMAC CORPORATION,,G5270\nOwner,T W B Trucking,T3100\nMICROSURGERY CENTER,,H1710\nATTORNEY,CAMMACK & STRONG,K1000\nAMERICAN BRIDGE COMPANY,,Y4000\nPartner/Banker,Denwore St Capital,F0000\nBOWLING CENTER OWNER,BOWLING MANAGEMENT GROUP,Y4000\nMedical Research,Duke University,H5100\nSVP NATIONAL & ISO,FIRST DATA,C5140\nAttorney- Chrm.Manag,Kirkpatrick & Lockhart Nichols,K1000\nCEO,ILLUMINA,Y4000\nCOMPANY OWNER,WRIGHT CONCRETE & CONSTRUCTION INC.,B5100\nAnes,Greater Houston Anesthesiology,H1130\nSELF EMPLOYED,TENBY INC.,E1100\nPORTFOLIO MANA,AMERIPRISE FINANCIAL,F2100\nDirector,Scripps Research Ins,Y4000\nOWNER,ARCHITECTURAL BRONZE,B4200\nKAPLAN-STAHLER-GUMER AGENCY,,J1200\nRET  BOEING,BOEING CO,D2000\nNWE MANAGEMENT CO,,J5100\nPICIS INCC,,Y4000\nROYAL LIQUORS,,Y4000\nFEDERAL NATIONAL MORTGAGE AS,,F4600\nFORMER SPEAKER OF THE HOUSE,,X1200\nExecutive Director,Port of Morgan City,T6000\nPRESIDENT,MARCIA COWAN CPA,G1200\nATTORNEY,AMALL GOLDEN GREGORY LLP,K1000\nTHOMPSON VENTULETT STAINBACK & ASSO,,F5500\nSales,US Custom Harvestors,A1500\nTOUPONSE ENTER,,Y4000\nBiochemist,Becton Dickinson,H4100\nELECTRI,DAVIES ELECTRIC COMPANY INC,B3200\nPhysician,Personal Physicians of Connecticut LLC,Y4000\nCONSERVATIVE ACTIVIST,WASHINGTON CONSERVATIVE COALITION,J1100\nINSURANCE/INVESTMENTS,SELF,F3100\nEXECUTIVE,ELKHART ECONOMIC DEVELOPMENT CORPORATI,Y4000\nRETIRED,DHR HOLDINGS LLC,Y4000\nBUSINESSMAN,\"KNOX & SCHNEIDER, INC.\",Y4000\nFamily Practice Physician,Burlington Clinic-Aurora,Y4000\nMOM,HOME MAKER,Y1000\n\"VP, TANKER PROGRAM\",EADS NORTH AMERICA,D2000\nPORTFOLIO MANAGER,EBERWEIN CAPITAL,Z9500\nNONE,RETIRED,J7150\nExecutive Director,Community Family Life Services,Y4000\nmother domestic arti,self,Y1000\nMORTGAGE BANKER,Ronald F. Poe & Associates,F4600\nBEAM BROBECK WEST & SULLIV,,K1000\nNORTH DAKOTA HEALTHCARE ASSOCIATION,,H2100\nVeterinarian,Manheim Pike Veterinary Hospit,H2100\nPhysician,Oregon Medical Group,H0000\nOCONNELL FLAHERTY &,,Y4000\nCeo,Coalesce Corporation,Y4000\nBUSINESSMAN & RANCHER,SELF-EMPLOYED,A3000\nBANKING,EAGLE BANK,F1000\nWEST SALEM MACHINERY,,Y4000\nINTERIOR DES,BARNETT PARKER DESIGNS,G5000\nFEEL WELL THERAPY,,Y4000\nC.E.O.,FALCON TRUST,Y4000\nE LESLIE PETER & CO,,H2200\nAttorney,Oldaker Biden and Belair LLP,K1000\nPrincipal,Becker Management,Y4000\nExecutive,National Telecom. Inc.,J5100\nBP AMERICA/RETIRED/RETIRED RESEARCH,,E1110\nEXECUTIVE DIRECTOR,TENNESSEE CITIZENS ACTION,Y4000\nUNIVERSITY FACULTY,TEMPLE UNIVERSITY,H5100\nOwner,Burkhart Advert,G5210\nHOLIDAY COMPANIES,,G5100\n\"SHAREHOLDER OF DRUMMOND COMPANY, INC.\",NONE - RETIRED,E1210\nCULLIGAN,,E2000\nCEO,WICKED SAGE,Y4000\nPICTURE FRAMER,INFORMATION REQUESTED,G5000\nFaculty Member,University of Pennsylvania,H2100\nPresident,Round Peg Inc,J5100\nUNIVERSITY OF NORTH CAROLINA AT CHA,,Z9500\nBusiness Owner,\"Spa Nation, Inc\",Y4000\nLAWYER,ALLSTATE INSUR. CO.,X1200\nPROGRAM,U. S. DEPARTMENT OF JUSTICE,X3200\nLLOYD L MILLER DMD INC,,H1400\nowner,self,F5300\nPRESIDENT,METAL TECHNOLOGY INC.,Y4000\nMarketing,General Motors Corporation,T2100\nPROFESSOR OF LAW,UNIVERSITY OF TULSA,H5170\nCreative Director,\"Aptas, Inc.\",Z9500\nGENERAL TRUCK SALES,,T3000\nInvestor,Normandy FW LLC,F7000\nDESIGNER,Self employed,G5000\nATTORNEY,SHUTTS&BOWEN,K1000\nMANAGEMENT,A P BINGLE CO,Y4000\nInsurance Broker,J Rolfe Davis Insurance,F3100\nRETIRED MECH,SAN DIEGO TRUCK CENTER,J1100\nPRESIDENT & CEO,CALIFORNIA HOSPITAL ASSOCIATION,H2100\nManaging Partner,Centerview Partners,Z9500\nPresident,Don King Productions,G6400\nCONSULTANT,NONE,JE300\nCEO,SMA Communications LLC,J5100\nGARDENER,,J7400\nGovernment Affairs,American BDG,Y4000\nMBNA AMERCA BANK,,F1400\nINFO REQUESTED,NORTH COUNTY TRANSIT DISTRICT,Y4000\nROBINS KAPLAN MILLER,ATTORNEY,K1000\nVeterinarian,Human Animal Hospital/Owner,A4500\nSALES &,\"MONTY'S PLANT FOOD CO. INC.\",Y4000\nSOUTHERN WELDING SUPPLY,,Y4000\nFOOD COURT FINANCE,,E1170\nBanker,Castroville State Bank,F1100\nEXECUTIVE,MISSION VENTURES,Y4000\nINTERNATIONAL CON,,Y4000\nOWNER,POWHATTAN CONSTRUCTION,B1500\nORCHARD RANCH,,G1200\nRETIRED CHAIR,KOCH INDUSTRIES,X1200\nContractor,Corrigan Co.,Y4000\nW BANCORP,GULF S,F1100\nWHOLESALE DISTRIBUTO,THOMAS & HOWARD CO.,Y4000\nHOUSEWIFE,HOUSEWIFE/HOUSEWIFE,Y1000\nRETIRED/RETIRED/PAINTER/WRITER,,X1200\nSR. V. P. HU,PANAMASAT GREENWICH CT,Y4000\nPARTNER,CENTURY GOLF PARTNERS,Y4000\nPHARMACIST,VETERINARY ENTERPRISES OF TOMORROW,H1750\nVP,S. Abramham & Sons,Y4000\nManager,Sprint Nextel Corporatio,C4300\nPRESIDENT,E J TRUCKING LLC,G1200\nPriest,\"St. Stephen's Church/Armonk, New York\",X7000\nLAWYER,\"SCOTT A. SREBNICK, P.A.\",K1000\n134 Electrician,(Mpea)Metropolitan Pier and Exposition,Y4000\nEXECUTIVE,DALCO SERVICES INC.,Y4000\nPHYSICIAN,MICHAEL K LAIDLAW MD INC.,H1100\nNORTHERN OIL/OIL/GAS,,E1120\nPartner and Presiden,\"Fentress, Brown CPA Assoc\",F5100\nASSISTANT DIRECTOR,FOX ANIMATION,Y4000\nSPI,,A5000\nPHYSICIA,HOWARD MEDICAL CENTER P.A.,H1100\nASSOCIATION PRESIDENT,INDIANA CONSTRUCTION ASSOCIATION,B1500\nPublic Relations,Bank of Nebraska,F1100\nINSURANCE CEO,SOVEREIGN RISK INSURANCE/INSURANCE,F3100\nCEO,PANGAEA GLOBAL AIDS,Z9500\nSTAFF ASSISTA,U.S. DEPARTMENT LABOR,X3000\nConsultant,Knopf Associates,Y4000\nMember,\"Dickinson, Murphy, Rex and Sloan\",Y4000\nCFO,Kennedy Health Systems,Y4000\nMCNAMARA CONCRETE CO,,B1500\nGERBER & SOLOMON,,K1000\nINFORMATION REQUESTED PER BEST EFFORTS,TUCKER ELECTRIC INC,Y4000\nPRES,HAYNES BESCO GROUP,Y4000\nMD,Reynolds Medical Corp,Y4000\nFEDER,FEDERAL HOUSING FINANCE BOARD,X3000\nA,\"VALSANGIACOMO, DETORA & MCQUESTEN\",Y4000\nPHYSICIST,V.V.L. INC.,Y4000\nOperations Manager,Rossin Steel Inc,M2100\nB.M.W. CLIENT ADVISO,BRAMAN MOTORCARS,Y4000\nMARKETING CONSULTAN,ISLES MARKETING,G0000\nPRESIDENT,\"ORTHO-SURGE, INCORPORATED\",H1130\nPRESIDENT,JAMES MARINE PADUCAH RIVER SRV,T6100\nADVANCED BRO CATALYTECS CORPORATION,,Y4000\nTEACHER,RETIRED,J7400\nCOMMONWEALTH HILTON,,T9100\nGEFFEN FOUNDATION,,C2400\nPRESIDENT,R. W. SCOBIE INC.,G1200\nMEDIA BUSINESS,SELF-EMPLOYED,Y4000\nCOO,\"Spyrus, Inc.\",C5120\nCFO,WALRUS COMPANY INC.,Y4000\nANALYST,HOLLAND CAPITAL,F2100\nSENIOR SCIENTIST RECONNAISSANCE SYSTEM,NASC,Y4000\nDOW CHEM,,M1000\n\"VP, ET Clearing\",E Trade,F1400\nBROOKVILLE HARDWOODS,,A5000\nROLAND MURPHY CONSTR,,B1500\nAttorney,Commonweatlh Of Pa,X3000\nLAID OFF,,Y4000\nBLOOMFIELD SCHOOL DISTRIC,,X3500\nBANKING,SCHAUMBURG BANK & TRUST COMPANY N.A.,F1100\nOWNER,COUNTY LINE LUMBER,B5200\nLegislative Advocate,Sierra Club California,JE300\nPRESIDENT,NATIONAL FARMERS UNION,E1500\nVice President,American Bio-Systems,Y4000\nCEO RESOURCES,,J7400\nAVALONBAY COMMUNITIES INC,,F4100\nMeat Packing,Self Employed,G2300\nAdministrative Partn,\"Rifkin, Livingston, Levitan & Silver,\",K1000\nCITY GROUP,,Y4000\nPresident,\"Lee's Metals\",Y4000\nManager,Sam Linder Cadillac Honda Olds,T2300\nCENTER FOR TRAINING CAREER,,H5000\nExec. Vice President,\"CONSOL Energy, Inc.\",E1210\nLIBRARY DIRECTOR,DIXON PUBLIC LIBRARY DISTRICT,Y4000\nMODERN BODY ENGINEER CORP,,Y4000\nBROOKS PIERCE MCLENDON & HUMPHREY,,K1000\nHEAD OF MEDIA MER,THOMAS LEE EQUITY,F2600\nVICE PRESIDENT TECHNICAL OPERATIONS,COMCAST CABLE,C2200\nPRESIDENT,SELF,JE300\nMEDICAL DEVICES BUSINESS CONSULTANT,SELF-EMPLOYED,G0000\nATTORNEY,BRACEWELL & PATTERSON,K2000\nPROJECT MANAGER,STATE FARM,F3400\nSELF/PRESIDENT/CEO/EXECUTIVE,,G0000\nOwner,Triangle X Ranch,A3000\nFINANCIAL SERVI,\"TRENWITH GROUP, LLC\",Y4000\nPERMA-MARK INC,,Y4000\nSELF & UJA FED OF NY,,Y4000\nNATURAL RESOURCE DEVELOPMENT,,E1120\nATTORNEY,GONCE AND MESSR,K1000\nENGINEER,\"RCP, INC.\",E1100\n\"VP, FEDERAL GOVERN\",PG&E CORPORATION,E1620\nAttorney,Washington State Office of the Attorne,Y4000\nGOVERNMENT RELATIONS,MORGAN MCGUIRE LLC,K2000\nPRESIDENT,\"TECHNOLOGY EXCLUSIVE, LLC\",G0000\nEXECUTIVE DIRECTOR/CHIEF EXECUTIVE OFF,BLUE CROSS BLUE SHIELD OF MI FOUNDATIO,F3200\npresident,Quebecor World Buffalo,Y4000\nSALES,PARTNERS IN LEADERSHIP,G5270\nVP,Mine Power Systems,E1200\nSurgeon,Emergency Surgical Associates,Y4000\nUnemployed,none,Y1000\nLAW PROFESSOR,QUINNIPIAC UNIVERSITY SCHOOL OF LAW,H5100\nWESTERN AUTOMOTIVE CONSULT,,T2000\nDUFFY WALL,,E4200\nSELF EMPLOYED,\"DEPLOYMENT ESSENTIALS, LLC\",Y4000\nMARTIN COMMUNICATIONS,,C4600\nATTORNEY,\"LANE & WATERMAN, LLP\",Y4000\nPROFESSOR,ST. LOUIS COMMUNITY COLLEGE,H5100\nHealth Insurance Age,Warner Pacific Insurance Services,F3200\nKAISER (REDWOOD CITY),,J5100\nMANAGER,T A ASSOCIATES INC,T1400\nAUTO-DEALER,SELF-EMPLOYED,G0000\nManaging partner,\"Resolution Counsel, LLP\",Y4000\nOBGYN INC,,H1130\nCHICAGO STONE CO,ELMHURST,B5100\nHOHMAN PLATING,,Y4000\nWORTHEIM-SCHROEDER,,Y4000\nFINANCE,\"PAULSON &AMP; CO., INC.\",F2700\nMovie Director,Internationl Business Management,Y4000\nCFO,THE R COMPANY,Y4000\nJ K N Y,,Y4000\nPresident,Sanofi-Avent Inc.,H4300\nSTATE SENATOR,STATE OF ILLINOIS/STATE SENATOR,J7400\nMCLOUD & COMPANY L L S,,Y4000\nAttorney,\"Oldaker, Belair & Whittie, LLP\",K2000\nRUSSO & HEFFERNAN,,Y4000\nSTAFF REPRESENTATIVE,AFSCME CA CN 57/SANTA CLARA,L1200\nVP MARKETING,ORTHEON MEDICAL,H0000\nLOBBYIST,DALEY POLICY GROUP,K2000\nEVP,SOUTHERN PIONEER P&C INS. CO.,F4000\nChief Executive Officer,\"Allyis, Inc\",Z9500\nATTORNEY,WAYNES BOONE ATTORNEYS,K1000\nBuilder,Design Builders,Y4000\nSOCIAL WORKER,FAMILY SVC. BUCKS COUNTY,Z9500\nVISION INTERNATIONAL MARK,,Y4000\nAMPEX CORP,,Y4000\nFamily Nurse Practitioner,Southwest Community Health Center,Y4000\nAttorney,\"David Wm Boone, PC\",K1000\nBOH BROS CONSTRUCTION CO,,B1000\n\"Vice Chairman, President and Chief Ope\",North State Communications,C4100\nPR,PETER N. CAREY & ASSOCIATES INC.,G5220\nPayroll,Swank Enterprises,Y4000\nINVESTMENT MANAGEMENT,PRIVATE WEALTH PARTNERS,F5500\nC.E.O,SEAL-TITE INTERNATIONAL,Y4000\nINVESTOR,TECUMSEH CAPITAL,F0000\nOWNER,KING COTTON FABRICS,A1100\nPHYSICIAN,IMAGING CONSULTANTS OF ESSEX,J1100\nAttorney,Law Office of Wendel Withrow,K1000\nOwner,\"CMB Holdings, LLC\",Y4000\nEXECUTIVE DIRECTOR/CEO,TEXAMERICAS CENTER,Y4000\nF X LYONS COMPANY,,Y4000\nOWNER,HARRIS DISTRIBUTING,Y4000\nREAL,CARDINAL CAPITAL PARTNERS INC.,F4000\nMARKETING,PACIFIC RESEARCH INSTITUTE,Y4000\nATTORNEY,MCCLURE & TROTTER,K1000\nClassroom Teacher,STAFFORD CNTY PUBLIC SCHLS,L1300\nVICE CHAIRMAN & C.F.,DELPHI CORPORATION,T2200\nSENIOR CORP. OFFICER,CITIGROUP,J7400\nAssoc. VP Undergradu,Eastern MI Univ.,H5100\nPlanner,Napa County,X3000\nPRESIDENT AND C.E.O.,CHICAGO BRIDGE & IRON COMPANY/PRESI,B4000\nDairy Farmer,Hamstra Dairy,A2000\nCHAIRMAN OF T,CAL-AGRO SEED COMPANY,A4000\nPRESIDENT,MED-CARE EMS,Y4000\nUniversity Professor,University of Wisconsin,H5100\nEXECUTIVE,THE GEORGE GROUP,G5200\nVICE PRESIDENT GOVT. AFFAIR,CRYPTEK,C5100\nTEXAS KENWORTH CO,,T2300\nCPA,J.U.W. INVESTMENTS,F2100\nDEPUTY GENERAL MANAGER FOR OPERATIONS,ORBITAL SCIENCES CORPORATION,T1700\nPROFESSOR,ITHACA COLLEGE,H5100\nCEO,MONADNOCK PAPER MILLS,A5200\nOral Surgeon,Retired,X1200\nPRESIDENT,R W COX INC.,Y4000\nACCREDT SURETY &,,F3400\n\"EVP, CFO & Secretary\",\"Parkway Properties, Inc\",F4100\nCHAIRMAN,INFINITE COMPUTER SOLUTIONS,Y4000\nPRESIDENT,AMERICAN TANK AND FABRICATING CO,M5000\nInvestment Broker,Hess Energy Trading,E1000\nCEO,Solergy Power Limited,Y4000\nEXECUTIVE DIRECTOR,SHANANDOAH VALLEY BATTLEFIELDS,Y4000\n\"Vp, Pension Prod Mgmt\",TIAA,F2000\nATTORNEY,LAW OFFICE OF FREDERICK R. DEMPSEY,K1000\nPresident,\"Vencoy Marine, Inc.\",Y4000\nREAL ESTATE MANAGEMENT,WASHAM PROPERTIES/REAL ESTATE MANAG,F4000\nPRES,T & K UTIL INC,B1000\nMANAGEMENT,APAC CUSTOMER SERVICES INC.,G5200\nSr Director Engineering,Churchill Downs Inc,J1200\nATTORNEY,\"ERIC SEDILLO JEFFRIES, LLC\",K1000\nExecutive Coach,\"Berry Block & Bernstein,Llc\",Y4000\nFBD,,Y4000\nNANCY KUHN & ASSOCIATES,,Y4000\nPresident,Highland Beef Farms,A3000\n\"Director, Admin Services\",US Navy,G0000\nUROLOGIST,\"LEO LOWENTRITT, MD\",H1130\nTRIAL ATTORNEY,LAW OFFICES OF WALLACE C. DOOLITTLE,K1000\nwriter/storyteller,self,Z9500\nBARNEYS RENTAL,CHAINSAW OUTER,Y4000\nATTORN,KEVIN L. MURPHY & ASSOCIATES,K1000\n\"K&L GATES, LLP\",ATTORNEY,K1000\nPR,CHAMBERLAIN RESEARCH CONSULTANTS,Y4000\npresident/c.e.o.,\"Hinsdale Associates, Inc.\",Y4000\nIMPORT,IA EXPORT,Y4000\nCARLETON COLLEGE,,H5100\nADMINISTRATION,CHICAGO HORTICULTURAL,X4200\nS SCHWAB INC,,Y4000\nHAZEL BECKHORN AND HANES,,F4100\nSENIOR VICE PRESI,A.M.N. HEALTHCARE,H0000\nPHYSICIAN,ARK ORTHOPAEDICS PA,H1100\nCONSULTANT,CDM INC.,Y4000\nSELF EMPLOYED,,H3200\nSWINT ENTERPRISES,,Y4000\nYMCA OF SAN FRANCISCO/PRESIDENT/CEO,,G5800\nEHS Manager,Microchip Technology Inc,Y4000\nTRIAL LAWYER,\"KENNY, O'KEEFE & USSEGLIO, P.C.\",Y4000\nLANDAR CORP.,,F4100\nINSTALLATON OF PHONE,,C4100\nAttorney,Tooher Wocl Leydan LLC,Y4000\nJOHN HALL & ASSOCIATES,,Y4000\nORAL SURGEO,SHELBY R SMITHEY DDS PA,H1400\nSELF-EMPL PROPRIE,BATTLEFIELD LANES,G6100\nCDB,Cherokee Telephone Company,C4100\nALLIED PARKING SYSTEMS,,F4500\nALLEN FINLEY PROPERTIES,,F4000\nSUPT. OF EDUCATION,STATE OF SC,X3000\nWesterman & Associates,Attorney,K1000\nWINNER FORD SUZ LIN MERC,,T2300\nLOBBYIST,FIERCE ISAKOWITZ & BLALOCK,K2000\nPolitical Consultant,\"Emmons & Co, Inc\",G5260\nCongressional Aide,Us House,X3000\nPRESQUE ISLE,,LT500\nAttorney,Doumar Allsworth ET AL,J1200\nDISTRIBUTOR,\"K&L DISTRIBUTORS, INC.\",Y4000\nLOBBYIST/CONSULTANT,THE CORMAC GROUP LLP,K2000\nENGINEER,O36 NETWORKS,Y4000\nBUSINESSMAN,CAPITOL SERVICES INC.,Y4000\nEDUCATOR,DENVER JEWISH DAY SCHOOL,Y4000\nATTORNEY,\"JEFFREY A. RUBIN & ASSOCIATES, PC\",J5100\nELS MARKETING & DESIGN,,G5210\nREAL ESTATE,KENT BUILDERS MGMT. LLC,F4000\nE.A.,T. BRADY & ASSOC. INC,Y4000\nKUSSMAN & WHITEHALL,,Y4000\nSelf/ Gary Miller Agency Inc./Insur,,Y4000\nWholesale Apparel,Aquarius Ltd,Y4000\nATTORNEY,ALLEN YAZBECK,K1000\nDATABASE DIRECTOR,\"CANCERCARE, INC.\",Y4000\nU OF IOWA COLLEGE OF DE,,H5100\nPRODUCTION CREDIT ASSN OF NEW MEXIC,,A4000\nGovt Affairs,AGSH&F LLP,K1000\nUNIVERSITY PHYSICIAN GRP,,H1100\nCITY PLANNER/ENTREPRENEUR,SELF-EMPLOYED,X3000\nHYMAN BUILDERS,,B5200\nINVESTMENT MANAGEMENT,BAUPOST GROUP,F2100\nBUS. MANAGER,\"BREALAUER, RUTMAN & ANDERSON\",G5270\nCEO,IHS Inc,G5200\nENGINEER,GLEC,Y4000\nPresident,Wm H Clinger Corporation,B3200\nPresident-NonPrime,Indymac Bank,F4600\nPROGRAMMER,GIMMAL GROUP,Y4000\nBANKING,NICOLET NATIONAL BANK,F1100\nGOVERNMENT RELATIONS,UNIVERSITY OF WASHINGTON,H5100\nEXECUTIVE DIRECTOR SOFTWARE ENGINEERIN,WMS GAMING INC.,G6500\n,TREACY & EAGLEBURGER ARCHITECTS PC,B4200\nDEVELOPER,TOUCH ADVENTURES,Y4000\nINVESTMENTS,,M5000\nFloral Designer,Self,J7400\nC.O.O.,AMERICAN FAMILY & GERIATRIC CARE,H1130\nOwner,\"Satrad, Inc.\",G0000\nKAHN BROTHERS & CO INC,,F2100\nCounsel,Arbinet-Thexchange,Y4000\nVice President,Wisconsin REALTORS Association,F4200\nLEHMAN BELL MUELLA CANN,,Y4000\nMANAGING DIRECTOR,NEW YORK LIFE INSURANCE CO,F3300\nAvaya,,C4600\nMANAGER,\"HAWK'S VIEW GOLF CLUB & PION\",Y4000\nANESTHESIOLOGIST,FCAA,H1130\nCARDIOLOGY PARTNERS OF AM,,H1130\nManager,Winston Toys,Y4000\nbanker,Fidelity Bank,F1000\nPLUMBING SUPPLY CO,,J5100\nRegional Coordinator,Aflac Insurance,F3200\nCITY & COUNTY OF SAN FRAN,,X3000\nExecutive,\"The Weeks Lerman Group, L.L.C.\",Y4000\nInvestment Advisor,Self,J7400\nMANAGER,HAMMILL LAND & CATTLE LLC/MANAGER,Y4000\nCONSULTANT,DONNA MCLEAN ASSOCIATES,Y4000\nCORNERSTONE PROPERTIES,,J5100\nOwner,Advanced Health Services,Y4000\nEXECUTI,CONGRESSIONAL BUDGET OFFICE,X3000\nCOMMONWEALTH OF PA,GOVERNOR CORBETT,Y4000\nLifestyle expert,B Smith Enterprises,Y4000\nABENS FINANCIAL SERVICES INC,,F0000\nPHYSICIAN,\"FALL RIVER HEALTH SERVICES, HOT SPRING\",Y4000\nREY BROS INC,,Y4000\nVice President,FMA Alliance Ltd.,F5200\nLegislative Consultant,Bergner Bockorney Clough & Brain,K2000\nbusiness owner,KHS,Y4000\nConstruction,T & G,B1500\nSenior Advisor,Lafarge,B5100\nLUXTRON CORP,,Y4000\nAGRICOR INC,,G2100\nPresident,US Wire,J5100\nBusiness Developement Manager,Amerisourcebergen Corp,H4400\nKURT WEISS FLORIST INC,,A8000\nCommunications,Group 360,Y4000\nEXECUTIVE,STARTING POINT SERVICES,Y4000\nN/A,STUDENT,Y1000\nPROFESSOR EM,HARVARD MEDICAL SCHOOL,J1200\nPresident,Chicago Botanic Garden,X4200\nPEMBERTON GROUP INC,,Y4000\nMANUFACTURING EXECUT,\"CHUDNOW MANUFACTURING COMPANY, INC.\",Y4000\nSECURITIES EXECUT,WASHINGTON MUTUAL,F1200\nENGINEER,NATHANIEL GROUP,Y4000\nPharmacist,Uptown Drive,G4900\nBOARD DIRECTOR,INSULET CORP,Z9500\nPRESIDENT & CEO,\"ANGIODYNAMICS, INC.\",H4100\nAGENT,DELAHAYE & ASSOCIATES,Y4000\nOwner,Jack Phillips Co.,E1120\nTRADEWINDS AVIATION/OWNER/FLIGHT OP,,T1600\nOfficer,Energtix,Y4000\nAccountant,Virginia C Riper Charitabl,Z9500\nattorney,Johnson & Ward,K1000\nATTORNEY,BOGAN LAW FIRM,K1000\nPRESIDENT,PAMPLIN CO.,Y4000\nATTORNEY,\"NUMMI & ASSOCIATES, P.A.\",Y4000\nINSTITUTIONAL EQUITY TRADER,STEPHENS INC.,F2300\nADMINSTRATOR,ROI ENTERTAINMENT INC.,Y4000\nVice President - Hum,Holland America Line Inc.,T6250\nNOT EMPLOYED,NE,Z9500\nRealtor,White-Peterman Properties,F4000\nDoctor,Dr  Corbet Md,H1100\nEXEC VP,NY OIL HEATING ASSC.,Y4000\nPRES,BLUE RIDGE ELECTRIC CO-OP INC.,E1610\nAG PAC,,Y4000\nOwner,Stamar Inc,B3400\nPresident,\"CNL Financial Group, Inc.\",F4000\nCollege Professor,Carnegie Mellon University,H5100\nNon-Profit Executive,Trinity Boston Foundation,Y4000\nGeologist,XAE Corp,Y4000\nPATRICK COMMUNICATIONS CORPORATION,,Y4000\n\"DIRECTOR,\",ROBISON INTERNATIONAL INC,K2000\nVP COMMUNICA,ARIZONA PUBLIC SERVICE,E1600\nHANNUM WAGLE & CLINE CONS,,Y4000\nExecutive,Chem-Clay Corp,Y4000\nPARTNER,M. & M. OF 165 STREET ASSOCIATES,Y4000\nLAWYER,BELLISSIMO & PEIRCE,Y4000\nReal Estate,BBMW Land Co,F4000\nCredit Union CEO,Tooele FCU,F1300\nTOLLESON PRODUCE J A,,A1400\nSMALL BUSINESS OWNER,BERKLEY MACHINE  LLC,Y4000\nMcKenna & Aldridge,,K1000\nEXEC,NOVARTIS SERVICES INCORPORATED,H4300\nPilot,\"Cotchett, Pitre and Mccarthy\",K1000\nEXECUTIVE,SPORTING NEWS,C1100\nInvestor,Zwirn & Company,F7000\nINSURANCE AGENT,THE ALLEN AGENCY,Y4000\nMERCHANT,DEUTSCH & DEUTSCH,Y4000\nDISTRESSED,INTERNATIONAL RISK GROUP,F4100\nATTORNEY,DEBORAH M. GONZALEZ,Y4000\nInterior Designer,Savant,Y4000\nPRESIDENT,DATA PLUS COMM,J1100\nSocial Worker,Alzheimers Assciatio,Y4000\nConsulting-Self-Empl,Primavera Strategic Plan,Y4000\nMINING ENGINE,C.I.C. RESOURCES INC.,Y4000\nALLIANCE BANK MORTGAGE CENTER,,B2000\nInformation Technology,Exempla Healthcare,Y4000\nChief Financial Officer,Aabgu,Y4000\nTHE FREEDOM FORUM,,X4100\nFINANCE,ATWEL CORP,Y4000\nLEGISLATION,US CONGRESS,X3000\nMARKETING,PHILLIP CARPENTER,Y4000\nSELF,THE BKM GROUP,B4000\nManagement,\"Raines Commercial Group, Inc.\",Y4000\nFUTURES,CHICAGOMERCANTILE EXCHANGE,F2000\nDevelopment Consulta,Agilent Technologies,J7400\nEngineer,Global Technical Services Inc,Y4000\nSERVICE MANAGER,WABASH NATIONAL CORP,J6200\nREAL ESTATE BROKER,BOB LEIGH & ASSOCIATES(BOF),F4200\nManager,G. D. S. Exp. Inc.,T3100\nTech Writer,Q.Know Tech,J1200\nAssistant to the Superin,St Clair Countyregional,Y4000\nREMARK ELECTRIC CORPORATION,,Y4000\nComputer Specialist,Chkd,Y4000\nConsultant,de la Cruz & Assoc,Y4000\nExecutive Director,AMERICAN HAERT ASSOCIATION,H0000\nPHYSICIAN,FREDERIKSBERG,Y4000\nPhysician,Carle Clinic Association,H1100\n\"President, Developer\",The Rummel Companies,J7400\nPRESIDE,ASSURITY SECURITY GROUP INC,F3300\nLOBBYIST,NYSE GROUP INC.,F2400\nMCKEE GALLERY,,G4600\nSEN. ADVISOR TO D,DEPT. OF INTERIOR,X3000\nPresident & CSO,DreamMaker Bath & Kitchen by Worldwide,G1000\nProfessor of Chemistry,Washington State Univers,H5100\nCONTRACTOR,SCISM CONSTRUCTION COMPANY,B1500\nengineer,mathWorks,C5120\nHOSPITAL VOLUNTEER,,Y1000\nNUCL,\"ENTERGY NUCLEAR SOUTH, RIVER B\",J1100\nPLUM STREET BUILDING CO,,Y4000\nResearch Scientist,National Institutes of Health,X3000\nTHE BREHM GROUP,,J1100\nQUALITY RESOURCES INC,,Y4000\nK. BROADWATER CONSTRUCTION MANAGEME,,J1100\nATTORN,KATTEN MUCHIN ZAVIS ROSENMAN,J1100\nSales,Vsi,Y4000\nCOO-CFO,Greenworks Dev LLC,Y4000\nRUIDOSO FORD LINC MERCURY,,T2300\nDoctor,ALM,Y4000\nSTATE UNIVERSITY OF NY,,J1200\nSenior Counsel,\"McKenna, Long & Aldridge\",K1000\nAttorney,Debra Witter,Y4000\nWOMEN FIRST CARE INC.,,H3000\nReal Estate,Newmark & Co Real Estate Inc.,F4000\nExecutive,Interdigital,Y4000\nExecutive Director,Asian Community Service Center,Y4000\nHOME BU,\"KENNETH JAMES BUILDERS, LLC\",F4000\nMOORE FOOD,,G2500\nPresident,Slay Industies,T7200\nCOO,ACUMIUM,Y4000\nExecutive VP,\"Farm Credit Services of America ACA, F\",A4000\nGRAPHIC DESIGNER,WOF,X7000\nDIRECTOR OF SALES & MARKETING,SECRET AARDVARK TRADING CO.,Y4000\nSURGEON,KECK SCHOOL OF MEDICINE,H1130\n\"PUBLIC POLICY/GOV'T.\",\"CEPHALON, INC.\",H4300\nVice President of Consumer Marketing,A&E Television Networks,C2200\nC CITY,R,Y4000\nENGINEER,BAKER-WILLIAMS ENGINEERING GROUP,B4400\nCONSULTANT,MJ CAPITOL CONSULTING,Y0000\nATTORNEY,\"NAHIGIAN STRATEGIES, LLC\",Y4000\nGAHLSDORF LOGGING INC,,A5000\nPHYSICIA,GYNECOLOGY & OBSTETRICS PA,H1130\nVP,RAYTHEON COMPANY,D3000\nEMERGEN,FRONT RANGE EMER PHYSICIANS,H1100\nPresident,Wiggins Auctioneers,G1200\nLOS ALAMOS NATIONL LAB,,D4000\nInvestor,Pilgrim Capital,F0000\nDirector,John Deere,A4200\nJDL SECURITIES INC,,J1100\nHUGROVE MANAGEMENT,,Y4000\nPOWER CONSTUCTION CO.,,B1500\nPRESIDENT,ROYAL FURNITURE COMPANY,M4100\nBLUEGRASS COAL CO,,E1210\nATTORN,WYCHE BURGESS FREEMAN&PARHAN,K1000\nREG. DIET.,Information Requested,H1700\nEXECUTIVE,ALTER BARGE LINE,T6200\nORTHODONTIST (HUSBAND,SELF-EMPLOYED,H1400\nPresident,K955 Inc,Z9500\nEXE,HOWARD HUGHES MEDICAL INSTITUTE,H5150\nFARMER,\"CROMLEY FARMS, INC.\",A1000\nLEGISLATOR,MD GENERAL ASSEMBLY,X3000\nWEB DEVELOPER,FREELANCE,G5200\nCHIEF FIRE OFFICER,CLEMMONS FILE DEPARTMENT,Y4000\nAviation Law & Gover,David E Schaffer Assoc LLC,Y4000\nDIRECTOR OF GOVT. AFFAIRS,\"ASTELLAS PHARMA US, INC.\",H4300\nPHYSICIAN,\"Garfield Family Practice Associates, P\",H1100\nATTORNEY,\"BERSTEIN LIEHARD & LIFSHITZ, LLP\",K1000\nAttorney,Leeds Morelli & Brown,K1000\nFounder,ECPI College of Technology,H5200\nPresident,Pundmann & Co.,Y4000\nC.E.O.,CENTURY L.L.C.,Y4000\nSENIOR VICE PRESIDEN,FLOWERS BAKERIES GROUP,G2100\nSTOCKBRO,\"GILDER, GAGNON, HOWE & CO.\",J1100\nAMERICAN CITY BANK,,F1100\nVITA KEY PACKAGING INC,,Y4000\nTY WILSON REALTY,,F4200\nPAPERCONE CORPORATION,,M7000\nAttorney,BL Companies,B4200\nREAL ESTATE BROKER/OWNER,HURD REAL ESTATE ASSOCIATES LLC,F4000\nBUSINSS MANAGER,\"D P.K., INC\",Y4000\nretired professor,retired UNC-Greeensboro,Z9500\nServco LLC,,Y4000\nEDUCATOR,CHRISTIAN ACADEMY OF SAN ANTONIO,Y4000\nBROWN INDUSTRIES INC,,B5200\nAttorney,Garcia Law Firm,K1000\nRTH CONSULTING,,K2000\nCUBA BAKERY,,G2100\nconsultant,Huron Consulting Group,G5200\nBERRY FUNERAL HOME,,G5400\nMARINE INDUSTRY,OWNER,Y4000\nREFUSE,REFUSE,Y2000\nEngineer,Cannon & Cannon,Y4000\nEngineer,Poggemeyer Design Group,B4000\nPRESIDENT,\"LJF MANAGEMENT, INC.\",Y4000\nNUCOM,,C4600\nBroadcaster/ Lawyer,\"Jewell, Collins, Delay & Flood\",K1000\nUSA ARCHITECTS &,,B4200\nAttorney,Pbpa,Y4000\nMORGAN CONTRACTORS,,J1100\nPRESIDENT,SUPERIOR STONE,B5100\n\"CHANDLER, DEBRUN & FINK\",,Y4000\nRegional Library Branch Manager,FXCO Public Libraries,X4200\nChief Marketing Officer,YRC Worldwide,T3100\nENGINEER,\"SYSKA & HENNESSY, INC.\",B4000\nCrude OIl Acquisitions,GulfMark Energy Inc,E1000\nATTORNEY,DR. SHEZAD MALIK LAW FIRM,K1100\naccount executive,Clark Consulting,F1100\nAdministrator,TRUSTMARK INSURANCE COMPANY,Y4000\nPETROLEUM LAND SERVICES,\"TAGCO, INC.\",Y4000\nOwner,Arctic Moon Firefighters,Y4000\nSelf-Employed,James Houser Consultants,Y4000\nOFFICE MANAGER,ROBERT F FOSTER INC,Y4000\nFRITO LAY INC,,G4300\nWESFAM INCORPORATED,,Y4000\nOwner,Rhodes Manufacturing,Y4000\n\"FOX, ROTHCHILD, O'BRIEN & FRANKEL\",,K1000\nExecutive,Progency Systems,C5120\nAssociate,The Talon Group,Y4000\nATTORNEY,RUMANCLEMENTSTOBIN,K1000\nLASALLE PARTNERS,,Y4000\nCUSHING TRANSPORTATION INC,,Y4000\nBUILDER,ALIANCE DEVELOPMENT,Y4000\nPSYCHIATRIST,STATE OF MICHIGAN,X3000\nHARVEST ASSET MANAGEMENT INC,,F4100\nCLINIC,ADVABCED BIOMEDICAL RESEARCH,H0000\nTAYLOR LUCAS & SPEEGLE,,Y4000\nC.E.O.,INDUSTRIAL METAL SUPPLY,Y4000\nPartner,Norwest Equity Partners,F2100\nEASTERN STATE STEEL,,M2100\nGEOLOGIST,BARROW-SLOVER RESOURCES,Y4000\nBANKER,EDISON NATIONAL,Y4000\nPRESIDENT,SOUTH STAR INC.,Y4000\nOwner,Monte Vista Management Co.,X4100\nN A I I,,F3100\nAssoc. Vice Presiden,AdvaMed,H4100\nLEGISLATOR,STATE OF ND,X3000\nINSURANCE SALES,HIGHLAND CAPITAL BROKERAGE,F3100\nWeb Developer,\"Rtp, LLC\",Y4000\nExecutive,Louis Berger Group,B4000\nFACILITIES MANAGEMEN,NASA,J6200\nFLYING O ENTERPRISES INC,,Y4000\nArchitect,\"Moody/Nolan Ltd., Inc.\",B4200\nCONSULTANT,BATTELLE/CONSULTANT,D9000\nENGINEER,OWENS CORNING,B5400\nEducator,Self,X1200\nOwner,\"Moe's Southwest Grill\",G2900\nCLERGYMAN,SELF EMPLOYED/CLERGYMAN,X7000\npublic relations consultant,self-employed,G5210\nPhysician,API,Y4000\nPresident,Cermar Inc.,J5200\nCIRCLE U FOODS INC./COO/OWNER,,Y4000\nPresident,\"Ronald J. Bateman Group, Inc.\",Y4000\nmanagement,Gingher Inc.,J1100\nFOUNDER,OZ CAPITAL,F2700\n\"MCCARTHY, DUFFY, NEIDHART & SNAKARD\",,Y4000\nInternational Consul,OSC Ltd,Y4000\nOwner,Detec inc,Y4000\nOwner,Joe Lunardi Electric Company,B3200\nAttorney,Ral And ASSOC,K1000\nMD PHD,,Y4000\nHILLARD BROTHERS,,A3000\nHACKETTSTOWN SQUARE ASSOC,,F4000\nT-DOT,,Y4000\nMEMBER,RED HAWK,Y4000\nHOMELAND SECURITY EXPERT AT THINK TANK,9/11 SECURITY SOLUTIONS,Y4000\nExecutive Vice President,Natixis Global Asset Management,F2100\nSTOCKBROKER,RAYMOND JAMES,F2100\nPRINCIPAL,ON A ROLL TRUCKING,Z9500\nCPA,\"Margolis,Phipps & Wright\",Y4000\nLAWYER,MITCHELL WILLIAMS LAW FIRM/LAWYER,K1000\nDISTRICT MANAGER,SHOWNAC CORP,Y4000\nInvestor,Circle Creek Holdings,F2600\nA & W OIL,,E1100\nANESTHESIOLOGIST,OCHSNER CLINIC,H1100\nATTORNEY,HARRISON & MOBLEY LLP,Y4000\nEUGENE GRANT & CO,,F4100\nSONNENSCHEN NATH & ROSENTHAL,,K1000\nHIGHWAY CONTRACTOR,MAGO CONSTRUCTION CO.,B1500\nTERRITORY MANAGER,MOHAWK INDUSTRIES,M4000\nMANUFACTURERS REP,\"ROBIE DAVIS, INC.\",Y4000\nMediator/Artist,Self employed,G5200\nALLIANCE PATHOLOGY CONSULTANTS,,H1130\nattorney,Rawle & Henderson,K1000\nPRESIDENT,PERRICONE INVESTMENTS,J1100\nChairman,BRE Properties; Inc.,F4100\nConsulting Engineer,\"Thouvenot, Wade & Moerchen\",B4300\nMANAGER,APARTMENT OWNER,F4500\nBUSINESS ANALYST,NOT EMPLOYED/BUSINESS ANALYST,H4300\nWELLSFORD GROUP,,Y4000\nOwner,\"Rms, Inc.\",Y4000\nCREDIT RESEARCH & BOND BROKER,,Y4000\nSPEECH LANGUAGE PATHOLOG,COBB PEDIATRIC THERAPY SERVICE,H1130\nBUSINESS OW,MOUNTAIN VALLEY EXPRESS,Y4000\nPRESIDENT,ENITIAL ADVANCED COMMUNICATIONS,Y4000\nPHYSICIAN,QUINTIILES,Y4000\nPresident,\"Movie Tours, Inc\",Y4000\ncontractors,Cracovia Construction Co.,B1500\nPresident/CEO,Goings Custom Homes and Goings Basemen,B2000\nHEALTHCARE CONSULTING,,H1700\nMIDTOWN MEDICAL GROUP,,H0000\nAttorney,Jo Carroll Energy/City of Galena,E1000\nEXAMINER,THE TITLE COMPANY,Z9500\nTURTLE WAX INC,,J7120\nSales,Target Insurance Services,F3300\nCONSULTAN,CENTER FOR LONG TERM CARE,Y4000\nPHYSICIAN,\"WOMEN'S CARE CENTER\",H2000\nSALES,MARVIN J. PERRY & ASSOLIATES,Y4000\nTEXAS TECH HSC SON,,H1710\nLAWYER SEMI-RETIRED,SELF,K1000\nCivil Engineer/Contractor,Self-Employed,G0000\nSr. Vice President D,Telacu Industries,F0000\nReal Estate Investor,\"41 West Realty Group, Inc\",F4200\nSMALL BUSINESS OWNER,DIVERGENT MEDIA,Y4000\nPRESSMAN & ASSOC,,Y4000\n\"SELF/WORKERS' COMP/RISK MGMT CONSUL\",,Y4000\nPresident,National Compositecenter,Y4000\nPARTNER,DELAY-THOMPSON AND COMPANY,F3300\nDirector of Human Resources,\"Institution Food House, Inc.\",G2500\nATTORNEY/CONSULTANT,HERSHEL GOBER & ASSOC.,Y4000\nPresident,R G Michals Holding Inc.,Y4000\nWATT INDUSTRIES,,F4100\nExecutive,\"NIs, Inc.\",F5500\nPresident/CEO,RJB Properties,F4000\nLEVY AND STOPOL,,K1000\nE MONTGOMERY & ASSOCIATES,,Y4000\nREAL ESTATE,LNR PROPERTY CORPORATION,F4000\nPhysician,Wkhs,Y4000\nNURSE,STATE OF ALASKA,J1100\nAIR CHART,\"MOBY DICK AIRWAYS, ALASKA\",T1100\nHUGHES FRIC/OWNER/MANAGER,,Y4000\nPartner,Bittner Lambert & Werner,K1000\nEDUCATOR,SOINT DAVIDS SCHO,Y4000\nGLOBAL CHIEF CLAIMS OFFICER,\"STARR INSURANCE HOLDINGS, INC.\",F3000\nEXECUTIVE,PA ASSOCIATE SCHL ADMIN.,Y4000\nATTORNEY,\"MCLEOD, ALEXANDER, POWEL & APFFEL, P.C\",K1000\nMember,Federal Labor Relations Authority,Y4000\nAttorney,Friedman Collard Cutter & Panneton,K1000\nCFO,\"THE BAMA COMPANIES, INC\",J1200\nRoofing Contractor,Southern Roofing,B3000\n\"ELCAN AND ASSOCIATES, INC.\",,F4200\nRADIOLOGIST,DIVERSIFIED RADIOLOGY OF COLORADO,H1130\nDaycare Professional,Self-Employed,G5000\nIndustrial Hygenist,Usdol,X3500\nMEZVINSKY & ASSOCIATES,,Y4000\nPresident,Retail Program Managers,Y4000\nGENERAL AUTHORITY EMERITUS,LDS CHURCH,X7000\nArchitect,RNL Design,Y4000\nInformation Technology & Knowledge Man,Self employed,C5100\nREAL ESTATE AGENT,SUNSHINE MANAGEMENT CORP,Y4000\nNEAL MURDOCK & LEROY,,Y4000\nRETIRED/RETIRED,INFORMATION REQUESTED,X1200\nLATIMORE BLACK ET AL.,,F5100\nOwner,Midland Medical Supply,Y4000\nPHYSICIAN,JEFFREY REED M.D. P.C.,H1100\nExecutive,Capital Partnerships,K2000\nM,INNOVATIVE TECHNOLOGY APPLICATION,Y4000\nProperty Manager,Cedrus Llc,F4500\nCAR DEALE,LITTLE APPLE TOYOTA-HONDA,T2310\nChairman & CEO,ORION SAFETY PRODUCTS,Y4000\nPhysician,Goyle Clinic,Y4000\nSAFECO TILE,,Y4000\nHOMEBUILDER,NEIDNER HOME,Y4000\nCouncil,City of Alexandria,X3000\nCEO,MICRO TRENDS INC.,Y4000\nCIGNA HEALTH PLANS,,J1100\nEcologist,\"Pizzo & Associates, Ltd\",Y4000\nSALES EXEC,SELF EMPLOYED,G0000\nFISHER PRODUCTS GROUP,,M9000\nProfessor of Law,Emory University,H5100\nLCDC GOTV,Salisbury Township,Y4000\nCO-CHAIRMAN,REPUBLICAN NATIONAL COMMITTEE,J7400\nPR,PREFERRED ELECTRICAL CONTRACTORS,F1200\nSoftware Engineer,Exelps,Y4000\nAJ PEGNO CONTRUCTION CORPORATION,,Y4000\n\"VICE PRESIDENT, PRODUCT MGMT\",ASURION CORPORIATION,G5000\nCFO,NORTHLAND CONTROL SYSTEMS,Y4000\nPARSONS RINGSMUTH PLC,,Y4000\nCO-FOUNDER AND CHAIRMAN,NIKE,M3200\nMANAGER,THE DOW CHEMICAL COMPANY/MANAGER,M1000\nExecutive,\"Guidry's Catfish Inc.\",G2350\nCOO,Swift Park Property Managmnt,F4500\nREP. CAL DOOLEY,,J7400\nFACE & JAW SURGERY CENTER,,H1400\nOWNER,VILLAS & VOYAGES,Y4000\nComputer Consultant,\"Hewitt Associates, LLC\",G5270\nSOFTWARE ENGINEER,EXPERIS,Y4000\nATTORNEY,LAW OFFICES OF PAUL GRECH,K1000\nPHYSCIAN,PRESBYTERIAN MEDICAL GROUP,H1100\nMethodist Hospital,Nurse,H1710\nIN GEN & ADMIN,SWS INDIANA,G2850\nEXECUTIVE SEARCH CONSULTANT,,J7400\nPres,A J Diani Constr Co Inc,B1000\nEmergency Physician,\"John D Moorehouse, MD, FACEP\",H1100\nBUSINESS MANAGEMENT CONSULTANT,\"PATRICK MOON, INC.\",Y4000\nBOYDEN TIMOUS DULLEY & YOUNG,,Y4000\nsmall business owner,Amethyst Technologies,H3000\nCEO,\"ST JOHN'S LUTHERAN MINISTRIES\",Y4000\nGENERAL MANAGER,\"MIRO-DEN ,INC.\",Y4000\nPHILIPP BROS CHEMICAL,,M1000\nPublic Administratio,U.S. Small Business Administration,Z9500\nED,CO Transit Agencies,Y4000\nEXECUTIVE,PIZZA RANCH,Y4000\nGeneral Manager Trad,GE Commercial Financial,M2300\nCONTRACTOR,\"KELLY-RYAN, INC.\",Y4000\nPartner,Kasowitz Benson Torres & Friedman,K1000\nPROOFREADE,WILLKIE FARR & GALLAGHER,J1200\nEXECUTIVE,ACADIA INVESTMENTS,F2000\nGLOBAL GOVERNMENTS INC,,Y4000\nBoard Member,Capitol Research Management Co,Y4000\nADMINISTRATOR,CERTIFIABLE SHARPE,Y4000\nRETIRED,AMERICAN AIRLINES INC,T1100\nSELF MEADOWBROOK INS,,F3100\nSAP BASIS ADMINISTRA,AVAYA,C4600\nCITY COUNCIL MEMBER,WAYNE STATE UNIVERSITY,H5100\nVP TRA,COMCAST (CC) OF WILLOW GROVE,C2200\nPhysican/Surgeon,Ortho-Hand,H1130\nMEDICAL DOC,OAKLEAF MEDICAL NETWORK,Y4000\nNEBO II,,Y4000\n\"RENE'S DRUG STORE\",,J2500\nCRESSEND & ASSOC,,Y4000\nPHYSICIAN,INTERCARE,Y4000\nATTORNEY,THOMAS HOPKINS,Y4000\nCardiologist,St Paul Cardiology,H1130\n\"7C'S ORCHARD\",,A1400\nATTORNEY,LARSEN & CHAFFIN LLP,K1000\nPatent Attorney,Dechert LLP,K1000\nEditor,World Health Organization,Y4000\nEXECUTIVE,W. C. BRANTLEY CO.,Y4000\nBUSINESS PERSON,COURTNEY MEADOWS,Y4000\nBusiness Owner,Former Bilingual Edu,Y4000\nPROPERTY TAX ASSISTANCE CO,,Y4000\n\"SS&G FINANCIAL SERVICES, INC.\",,F5100\nPAPPAS EAR CLINIC,,H1130\nEXECUTIVE VICE PR,GENESEE & WYOMING,T5100\nAttorney,Cook Hall & Lampros,K1000\nCarvel Owner,Self,G0000\nDIAGNOSTIC RADIOLOGIST,RADIOLOGY ASSOCIATES OF NEW JERSEY/,H1130\nATTORNEY,HOLLINGSWORTH & ASSOCIATES,K1000\nWriter/Teacher,Carnegie Mellon Univ,H5100\nRETAILER,\"MOTHERS NUTRITIONAL, INC.\",Y4000\nEXECUTIVE,SMITH BARNEY INC.,Y4000\nRESEARCH PSYCHIATRIST,,H1110\nLawyer,\"Coto, Malley & Tamargo\",K1000\nCFO,SPRING MOUNTAIN,H2100\nMedia Planning and Placement,\"Mkm, Inc\",Y4000\nAttorney,\"Fidelity Nat'l Title Insurance\",F4300\nANESTHESIOLOGIST,UNIV OF AL BIRMINGHAM,H1130\nCPA,MCGLADERY LLP,F5100\nREAL ESTATE,THE BERNSTEIN COMPANIES,F4100\nBUSINESS EXECUTIVE,BARTLEY HEALTHCARE,H0000\nPresident,BCBS Foundation,F3200\nHomeschool Mom,Na,Y4000\nPhysician,Cinn Aematolgy Onc Inc,Y4000\ntelevision exec,discovery communications,C2200\nBUSINESS OW,OPINION CENTERS AMERICA,Y4000\nTEACHER,SYRACUSE UNIVERSITY,Z9500\nOWNER,WESTSIDE MKT.,Y4000\nREALTOR,Pacific Union Real Estate,F4200\nCALABRESE RACEK MORKOS,,F4700\nOWNER,BRISTOL INDUSTRIES,Y4000\nDEUTSCH WILLIAMS BROOKS DERENSIS,,Y4000\nCar Dealer,Union Park,Y4000\nSpecial Asst.,U.S. Dept. of Energy,X3000\nC.E.O./LABOR RELATIONS,THE BURKE GROUP,G5270\nPHYS,VANDERBILT UNIVERSITY HOSPITAL,H1100\nGUADALUPE VALLEY HOSPITAL,,H2100\nExecutive,Williams,K1000\nSCRUGGS MILLETE,,K1000\nMANAGER,BOYCE HYDRO LLC,Y4000\nChief Compliance Officer,Aetna Inc,H3700\nARCHAELOGIST,INFORMATION REQUESTED,Y4000\nLOCAL UNION,,LB100\nPRYTANIA REHABILITATION,,Y4000\nattorney,Gallagher Evelius & Jones LLP,K1000\nREAL ESTATE,TERRA II,F4000\nCALIF CABLE TV ASSN,,C2200\nPRUDENTIAL INTERNATIONAL REALTY,,F4200\nCFO,OBISIDIAN ENTERPRISES,Y4000\nCHARITABLE FOUNDATION,,JE300\nENGINEERING MANAGER,TIVO,C5000\nSTUDENT,N/A,T0000\nFinancial Advisor,Raymond James Group,J5200\nRETIRED,HILTON INTERNATIONAL,Y4000\nATTORNEY,COLLING GILBERT WRIGHT & CARTER,Y4000\nHISTORIAN,,Y0000\nExecutive,Jack Morris Auto Glass,M7200\nPRES,SCHERING PLOUGH RESEARCH INST.,H4300\nOrchestral Musician,Spokane Symphony,C2800\nFT WORTH FREIGHTLINER STERLING WEST,,T2300\nALAMBAMA POWER COMPANY,,E1600\nREALTOR,RE/MAX AMERICAN DREAM,F4200\nBUSINESS DEVELOPMENT,ANDERSON TRAIL,Y4000\nCPA,A SOFTWARE COMPANY,C5120\nPOWELL & CO,,Y4000\nJE ROBERT CO,,F4000\nOWNER,\"USA MARBLE & GRANITE, LLC\",B5100\nLEROY SPRINGS & CO INC,,Y4000\nATTORNEY,KELLOGG,G2100\nSR. V.P.,SPEEDWAY SUPERAMERICA LLC,G4300\nPartner,Troutman Sanders LLP,K2000\nATTORNEY,WALL ESLEECK,K1000\nExecutive,Wendon Company,Y4000\nPROPERTY MANAGER,WELLS FARGO,F1100\n\"HAMMER LGC, INC./VICE PRESIDENT/COO\",,B1000\nConsultant,WTL Associates,Y4000\nAttorney,\"Baumberger, Reboso and Spier\",K1000\nSOCIAL WORKER,LOWELL PUBLIC SCHOOLS,J7400\nTRAVEL UNLIMITED,,T9400\nSales,\"Infodirect, Inc\",Y4000\nENGINEER,ZIDMITE CORP.,Y4000\nEVP,Equity Group Investments,E1630\nMCPHEETERS LAW OFFICES,,K1000\nFinancial Services Professional,Citadel Investment Group,F2700\nGLEN BURNIE COUNSELING CENTER,,Y4000\nhomeschooling parent,self,G0000\nCIVIL ENGINEER,ATKINS NORTH AMERICA/CIVIL ENGINEER,Y4000\nPRESIDENT,NATIONAL AUDIO CO,C2600\nMANAGER,MURRAY ENERGY COMPANY,E1210\nGOVERNMENT AFFAIRS,\"CAPTIOLINE CONSULTING, LLC\",K2000\nBERRY & PERKINS,,Y4000\nCAMBRIDGE ASSOCIATES,,J1200\nCHIEF COMM OFFICER,SPECTRA ENERGY CORP.,E1140\nPublic Accountant,Pricewaterhouse Coopers,F5100\nPRYOY MCCLENDON COUNTS & CO,,Y4000\n\"HAWAII RESERVES, INC./PRESIDENT/CEO\",,Y4000\nDIRECTOR,BEN LOMAND RURAL TELEPHONE COOPERATIVE,C4100\nINTERIOR DESIGNER,SWANN INTERIORS,G5000\nINTERSPACE SERVICES INC,,Y4000\nVICE PRESIDENT,\"POPE DISTRIBUTING CO., INC.\",G2850\nEXECUTIVE VICE PRESI,DETROIT EDISON,Y4000\nMARKETING,SELF-EMPLOYED,G5200\nNC LEGISLATURE,,J6200\nCHAIRMAN,BELL CNTY REPUBLICAN PART,J1100\nHealthcare Managemen,Peace Health,H0000\nCHAIRMAN,1ST FRANKLIN FINANCIAL CORP,F1400\nINGEBRITSON & ASSOCIATES,,K1000\nRHOADS AND SIMON LLP,,K1000\nConsultant,Rite of Passage,Y4000\nPHYSICIAN,ADHS,Y4000\nAUTO DEA,BROSTROM KICKERT CHEV INC.,T2300\nPresident,\"E. C. Services, Inc.\",Y4000\nMANAGING PARTNER,AVENUE CAPITAL,J1200\nastronomer,\"AURA, Inc\",Y4000\nTRUSTEE,ORLEANS HOMEBUILDERS,B2000\nINFO REQUESTED,Sallie Mae Inc.,F1410\nC.P.A.,DENNISON & ASSOCIATES P.A.,Y4000\nReal Estate Developer,Element Homes,B2000\nATTORNEY,\"BEATLY & WOZNZIAK, PC\",K1000\nREAL ESTATE,BELMONT MANAGEMENT CO.,Y4000\nMARKETING DIRECTOR,KODAK,M9200\nPhysician,\"Metropolitan Women's Group, LLC\",Y4000\nMGR AVIATION SERVICES INC,,Y4000\nNATIONAL ASSN OF HOMEBU,,B2000\nMENTAL HEALTH CLINICIAN,A. BETTER WAY INC.,Y4000\nVALLEY VIEW ESTATES,SELF-EMPLOYED,Y4000\nInformation Requeste,Archipelago Corp,F2600\nCIVIL ENGINEE,MEGA CONTRACTING INC.,Y4000\nASHCRAFT ASSOCIATES INS,,F3100\nWILLIAM MOSES CO INC,,F4200\nAMBROSIA FINE FOODS,,Y4000\nOWNER,ENCINAS INVESTIGATIONS,G5290\nPAR,\"ROBINS, KAPLAN, MILLER & CIREAL\",K1000\nVICE CHAIRMAN,J H FLETCHER & CO,E1240\nPresident,\"Genesis Global Solutions, Inc.\",Y4000\nSELF EMPLOYED,RANDALL FORD,T2300\nEXECUTIVE VICE PRESIDENT,EAST IDAHO CREDIT UNION,F1300\nATTORNEY,LATHAM & WATKINS/ATTORNEY,K2000\nDirector,Greater Phoenix Economic Council,Y4000\nANTIQUES DEALER,ANTIQUE EXCHANGE,Y4000\nPortfolio Manager,Piedmont Investment Advisors,F2100\nFIRST FED S&L ASSN OF STORM LAKE,,F1200\nDIRECTOR,GREEN BULL FUND,F7000\nEXECUTIVE,CAPSTONE SHOWPLACE,Y4000\nAnesthesiologist,Self Employed in LLP,H1130\nCEO,SUDLER & HENNESSEY,Y4000\nVICE PRESIDENT INSURANCE BROKER,THE PROTECTOR GROUP INSURANCE AGE,F3100\nInformation Requested,\"Sandak, Hennessey & Greco, LLP\",K1000\nDIRECTOR GLOBAL TRAVEL,PFIZER INC,T0000\nWHOLESALE MARKETER,VALERO,E1160\nRETIRED CIVIL ENGINEER,N/A,X1200\nWOMEN IN NEED,,J7400\nNaval Aviator,US Navy,Y4000\nMOTION PICTURE ASSOC,,C2400\nHomemaker,Husband Self-Employed,Y4000\nPRESIDENT,MID STATE RV CENTER,Y4000\nPRESIDENT & CEO,WIGHT & CO.,B4200\nMARCUS GOODMAN BROOKS,,K1000\nOWNER,WALDORF DEMOLITION,Y4000\nNESS MOTLEY LOADHOT RICHARDSON & DO,,K1100\nOFFICE OF HENRY BUCHANAN,,Y4000\nOFFICE ADMIN + RETIRED TEACHER,\"KILROY RESTAURANTS, INC\",G2900\nARNOLD WHITE & DURKEE,,F4100\npresident,\"Correction Captains Assn., Inc\",Y4000\nTax Counsel,Public Storage,T7200\nAttorney,Robb & Robb LLC,K1000\nNAT GRAIN TRADE,,A1500\nLAND PARKER,,Y4000\nPRESIDENT,INCRETE OF MD INC.,Y4000\nCITY MANAGER,TOWN OF OLIVER SPRINGS,Z9500\nLINDSAY PROPERTIES LLC,MEMBER,X0000\nCT SURGEONS,,H1130\n\"CEMENT PRODUCTS AND SUPPLY CO., INC\",,B5100\n\"DOERNER, SANDERS, DANIEL\",,K1000\nBANKER,CAROLINA BANK,F1000\nSTARPLOUGH,,Y4000\nMusic Agent,MAC Presents,Y4000\nGOLDEN RULE LIFE INS CO,,F3100\nCRITICAL AIR MEDICINE,,H3000\nBanker,Leham Brother,Y4000\nMONTGOMERY MC CRACKEN WALKER & RHOA,,K1000\nreal estate broker,\"Gold Star Properties, Inc.\",F4200\nJOSEL FEENANE & GAIER,,K1000\nUTILITY EXECUT,SOUTHERN ENERGY INC.,E1000\nOwner,Bp2,J1200\nE PLANNING,,C5140\nOWNER,\"WOODBINE HOUSE, INC.\",Y4000\nCOLLAZO ENTERPRISES INC,,D4000\nOWNER,MCCUEN PROPERTIES,F4000\nMEDICAL DOCTOR,\"CAMDEN PHYSICIAN'S\",Y4000\nPRESIDENT,ED BECKER REAL ESTATE,G1200\nMANAGER,\"BRINK'S U.S.\",G5290\nPresident,Prime Inc,B4200\nPhysician,West Bay Orthopedic,H1130\nPUBLIC AFFAIRS COUNSELING,THOMAS GROUP CONSULTING,Y4000\nPHARMACIST,LOCK HAVEN,H5100\nFinancial Consultant,Woodbury Financial S,Y4000\nEngineer,Self Reliance Ukranian America,Y4000\nFINANCIAL PLANNER,HARRISON FINANCIAL SERVICES,Y4000\nREAL ESTATE BROKER,MCALPIN & COMPANY,F4200\nM.D.,SELF,J1110\n\"Senior VP, Government Relations\",Mintz Levin,K1200\nPRESIDENT,BOMGAR,C5130\nVINTON SLIVKA & PAN,,Y4000\nFELDMAN BROTHERS,,Y4000\nDIGITAL IMAGING TECHNICIAN,VARIOUS,Y4000\nCENDROWSKI SELECKY & REIN,,F5100\nmanager,NStar,E1600\nBAE SYSTEMS INC/ATTORNEY/BUSINESS E,,D2000\nCEO,WALTER OIL & GAS CORP.,E1100\nSENIOR LOAN REVIEW CONSULTANT,M&M CONSULTING,Y4000\nVOLUNTEER,UNEMPLOYED,G2900\nAIRMARK INC,,Y4000\nLobbyist,Ohio Grocers Association,G2400\nInformation Requeste,AK Steel Corporation,M2100\nAttorney,Cendant Mobility Services Corporat,Y4000\nCEO,BRESLIN REALTY,J5100\nInvestments,Midway Companies,F4100\nEd physcian,\"Central Nh Er Assoc., Pa\",Y4000\nCEO,PAI,Y4000\nCAMP & COTARMS INC,,Y4000\nWINE CONSULTANT,FINE WINE CONCIERGE,G2820\nMANAGER,YARMUTH DION INC.,M3100\nCHIEF EXECUTIVE OFFICER,BIA DOUGH,Y4000\nMICHAEL BAUER AND ASSOCIATES,,J7300\nIT SECURITY,ING US,F3100\nPRIVATE PRACTICE OF PSYCHOLOGY,N/A,H1110\nVice President of Op,Vicking Range Corporation,Y4000\n\"MD, PHD\",WOOLFSON EYE INSTITUTE,H1120\nFinance,Abdiel Capital,J1100\nVice President Revenue,Bon Secours-Richmond Community Hospita,H2100\nBuilding Inspector,Self employed,X3000\nUNIVERSAL FUNDING,,Y4000\nPRESIDENT,RIVER ENTERPRISES,Y4000\nPLUMBING DESIGNER,\"D/K MECHANICAL CONTRACTORS,INC/PLUM\",Y4000\nMARKET,PIVOTAL POINT COMMUNICATIONS,Y4000\nSELF/REAL ESTATE/DESIGN,,F4000\nattorney,\"Levinson Friedman, P.S.\",K1000\nDIRECTOR OF COMMUNICATIONS,\"ALEX LEE, INC.\",G2500\nOWNER,GOOCHIE POOCHIE PET RESORT,Y4000\nLOBBYIST,MARKQUEST,Y4000\nChief Legal Officer,Russell Investments,Y4000\nCorporate Pilot,Self,Y4000\nDentist,\"Daniel P Robinson, DDS, Inc\",H1400\nATTORNEY,VENABLE,K1000\nAttorney,CLETUS DAVIS PC,K1000\nAttorney,Kevin M Thompson Plc,J1200\nPhysician,Arkansas Nephrology Services,H1130\nMGMT CONSUL,,J1100\nPresident/ CEO,DFJ International,G5200\nOwner,84 Lumber,B5200\nREAL ESTATE,BLACKWOOD REAL ESTATE,F4000\nAdministrator and Priest,National WIC Association,Y4000\nHATFIELD METAL FAB INC,,M5000\nRALEIGH COMMUNITY,,H2100\nPRESIDENT,\"NEXION HEALTH, INC.\",H0000\nMALATESTA PALADINO INC,,Y4000\nNEURORADIOLOGIST,NEUROIMAGING INSTITUTE OF WINTER PARK,H1130\nANN NATHAN ART GALLERY,,G4600\nARTIST,SELF-EMPLOYED,G4500\nC G W EXPRESS INC,,Y4000\nInterior Designer,\"Holly Harrison Interiors, Inc\",Y4000\nLab Tech,Community Science Institute,Y4000\nDUNBAR RESORTS,,Y4000\nVP of Operations,\"Guardian Fiberglass, Inc.\",M7200\nSYNDICATE SALES INC,,M1500\nChairman,L&P Inc,Y4000\nEmergency Services Manager,Munson Healthcare,H2100\nCONSTRUCTION MANAGEMENT,KKG INC.,Y4000\nBOOKKEEPER,RANCHER,A3000\nLEARNING SPECIALIST/CANTOR/TUTOR,SELF,Y4000\nDIRECTOR,\"CRADDOCK MOVING COMPANY, INC\",Y4000\nDEL DEPT OF JUSTICE,,X3200\nAREA VICE PRESIDENT-SALES,ACCREDO HEALTH GROUP,Y4000\nATTORNEY,HIGHTOWER LAW FIRM,K1000\nNURSE PRACTITIONER,CPMC,Y4000\nFLIGHT ATTENDANT,SOUTHWEST AIRLINES,J7400\nConsultant,CSI,G5260\nRealtor,\"East Montgomery Realty, LLC\",Z9500\nATTORNEY,\"GRINDLE, ROBINSON, GOODHUE & FROLIN\",K1000\nTHE WOODS GROUP,,K1000\nRETIRED,N/A,H3400\nReal Estate,Red Capital Group,F0000\nConsultant,Paul Magistretti,J1200\n\"DAVIS, HOCKENBERG LAW FI\",,K1000\nMCKEE ACQUISITION CORP,,Y4000\nstudent,Omore School of Design,Y4000\nTHE BLANKMAN GROUP LLC,,Y4000\nVENTURE CAPITA,\"LAUDER PARTNERS, LCC\",F2500\nBASS ENTERPRISE PROD,,E1120\nPERIODONTIST,,\nExecutive,Cummins Northwest,Y4000\nPROJECT MANAGER,PRITCHARD&COMPANY BUILDERS,Y4000\ninsurance sales,self,J1200\nNurse Manager,Milwaukee Catholic Home,Y4000\nIT MANAGER,DHS-CBP,Y4000\nCEO,CENTRAL IOWA POWER COOPERATIVE,E1610\nLANDSCAPER,,E4200\nAttorney,Hill Company LLC,Y4000\nMEDICAL BILLER,,H0000\nRETIRED NAVAL OF,UNITED STATES NAVY,J1100\nAUCTIONEER,AIM CONSULTANTS,Y4000\nPRESIDENT,INDEPENDENT COMMUNITY BANKS OF NORTH D,F1100\nPRESIDENT,FIRST NATIONAL-WELLINGTON,F1100\nDirector,Ardmore Capital,F0000\nBoard Director/Consu,Young & Rubicom,G5210\nVP,BURRIS CONSTRUCTION CO,B1500\n,PROVIDENCE PORTLAND MEDICAL CENTER,H1710\nVP,Churchill Comm,Y4000\nTITAN TEXTILE COMPANY,,M8000\nBUSINESS OWNER,FANFINDER GPS,Y4000\nBANKER,GNB,Y4000\nPHYSICIAN,GENENVECH,H4500\nGENERAL ELEVATOR,,B5500\nM. D.,Eye Centers Of Southeast Texas,H1120\nLANE GEN HOSP,,H1130\nIT Security Director,University of Colorado at Boulder,H5100\nEXITE @ HOME/E. V. P./ GENERAL MANA,,Y4000\nMILLENNIUM GROUP,PRESIDENT,G0000\nOWNER,\"WELDED TUBES, INC\",Y4000\nCONSULTANT,CRESCENT CONSULTING,Y4000\nWriter,Self/ et y and LLC,Y4000\nEXEC VP GOVT AFFAIRS,\"AMERICA'S NATURAL GAS ALLIANCE\",E1140\nGOVT. RELATIONS,FEDEX,J7400\nREAL ESTATE BROKER,L. B. COMMERCIAL REALTY L.L.C.,F4200\nATTORNEY,MOSTYN LAW,K1100\nCHIEF FINANCIAL OFFICER,PACIFIC ALLIANCE MEDICAL CENTER,H2100\nSTANLEY MUFFLER CO,,Y4000\nARJAY,,G5250\nUS GOVERNMENT,DEPT OF DEFENSE,X5000\nPresident,THWIRS Inc.,Y4000\npresident,City College,H5100\nOwner,Deltex Royalty Company,Y4000\nOrthopaedic Surgeon,Muskogee Bone and Joint,H1130\nFamily Law Attorney,\"Kliever Law Group, LLP\",K1000\nPRESIDENT,STANDRIDGE TRUCK SHOP,T3100\nGLASSCOCK INC,,G4100\nDIRECTOR OF COMMUNICATIONS,ARCTIC SLOPE REGIONAL CORP,Y4000\nTHE TIME INC BOOK COMPANY,,C1100\nAMERICAN MEDICAL RES,,H3000\nR P O,,Y4000\nPHYSICIAN,OB-GYN ASSOC PC,H1130\nCOUNTRY COACH,,T8200\nMarketing Research,Kurkowski and Associates,Y4000\nPHARMACIST,BANNER DESERT MEDICAL CENTER,H2100\nUNDERWRITER,FACTEON,Y4000\nEAGLE RIVER INVESTMENTS,,F2100\nINSURANCE SALES,VANENGELENHOVEN AGENCY INC.,Y4000\nCHIEF EXECUTIVE OFFI,\"NORTHERN SAFETY CO., INC\",Y4000\nPlumbing & Heating,Self Employed,B3400\nI N NAYAK MD,,H1100\nPRESIDENT,\"TIMMONS & COMPANY, INC.\",K2000\nSales,Qiagen,Y4000\nCONSULTING,FOUNDATION STRATEGY GROUP,Y4000\nSALES,UBS WARBURG,F2300\nPHYSICIAN,EDISON METUCHEN ORTHOPAEDIC GROUP,H1130\nANCHORAGE CHYSLER CENT,,T2300\nCOCHRAN & COCHRAN,,Y4000\nLAWYER,\"TREZZA,ITHURBURN & STEIDLMAYER\",Y4000\nREAL ESTATE INVESTOR,HARLEY PROPERTY INVESTORS,F4000\nManager,Centex Homes,B2000\nLobbyist,Best Effort,K2000\nPRESIDENT,ASCAP/PRESIDENT,C2600\nLAWYER,SPRIGGS LAW FIRM,J7400\nAdministrator,\"US Nat'l Inst. Of Health\",Y4000\nIMA INC,,Y4000\nProsthodontist/Dentist,Self employed,H1400\n\"CEO, Cetera Financial Group\",ING Advisors Network,F2100\nATTORNEY,\"BAGGETT, MCCALL, BURGESS LLC\",Y4000\nPROFESSOR,VALPARASO UNIVERSITY,H5100\nALTAL GORD TECHNOLOGIES LLC,,J7400\nRESTAURANT OPS DIR,HALLRICH INC.,G2900\nWEST MICHIGAN EQUITIES,,M2300\nManager,PSEG,E1000\nARCHITECT,BARTON ARCHITECT,B4200\nPHYSICIA,MOUNT KIISCO MEDICAL GROUP,H1000\nJOHNSON KITZMILLER & DOVR,,J7400\nExecutive,Astrazeneca,H4300\nMANAGING DIRECTOR,MORGANSTANLEY,F2300\n\"ROSE, KLEIN & MARIOS\",,K1000\nAttorney,KB Homes,B2000\nLOCATION PLANNER,DRESSBARN/LOCATION PLANNER,Y4000\nMech Contr,Texair,B3400\nATTORNEY,MAGAVERN MAGAVERN & GRIMM,K1000\nATTORNEY,JOSE SANCHEZ LAW FIRM,K1000\nPhysical Therapist,Lea County Public Schools,X3500\nPartner,Baker Hostetler,K1000\nVLSYSTEMS,,Y4000\nATTORNEY,MCCARTHY AND HOLTHUS,K1000\nPHYSICAL THERAPY,HEALTHCARE,H0000\nCREST HOMES,,Y4000\n\"Senior VP, Business Technologi\",\"Piedmont Natural Gas Company,\",E1140\nCEO,PGI,Y4000\nPresident & CEO,\"St Mary's Hospital\",H2100\nSPOUSE,NOT APPLICABLE,H4300\nPRESIDENT,COLLECTION BUREAU OF KANSAS,Y4000\nGOVT AFFAIRS,FRANKLIN CONSULTING,Y4000\nBURLINGTON COAT FACTORY MUSE CORP,,G4100\nEXECUTIVE,\"KEHOE PARTNERS, LLC\",Y4000\nNURSE PRACTITIONER,FRONTIER HEALTH,H0000\nTHE JOB FORCE BOARD,,Y4000\nCasino/Hotel,Peppermill Partner,G6500\nINFO REQUESTED,US PROTECTION,Y4000\nPRESIDENT,\"CHANEY BROOKS & CO., INC.\",Y4000\nExecutive,\"Belfer Management, LLC\",F7000\nENGINEER,HORIZON METALS,Y4000\nBanker,\"Commercial Bank of Texas, NA\",F1100\nATTORNEY,MCLOCKLIN MURPHY & DISHMAN,K1000\nSALES MANAGEMENT,DUN & BRADSTREET,F5200\nMA,INTERNATIONAL SPECIALTY PRODUCTS,M1000\nPresident,Hurt Norton & Assoc.,K2000\nHealthcare Administration,Capella Healthcare,H2100\nPHYSICIST,RADATION SERVICES,Y4000\nCONSULTANT,AMS,Y4000\nVP Federal Government Affairs,Express Scripts Inc,H3000\nGREENVIULLE PEDIATRICS PA,,Y4000\n\"Director, Actor, Teacher\",Self employed,C2400\nOWNER,GLENN BUICK,T2300\nOwner/Principle Part,LaPierre Enterprises,B2000\nMETRO COUNCIL,LOUISVILLE,X3000\nPresident and Chief,Centegra Health System,H2100\nprinting services,\"SVO, Inc.\",Y4000\n\"LEIGHTON, KARNEY & CRABTREE\",,J7120\nNVESTOR,SELF,F7000\nsef,,J1200\nCoordinator,Wsaew,Y4000\nLYNDON STATE COLLEGE,,H5100\nJAMIE JOHNSTON ENTERPRISES,,Y4000\nActress,Kitty Likes to Scratch Production,Y4000\nTEXAS FUEL & ASPHALT,,B5100\nSCHOOL PRINCIPAL,ST. JOHNS COUNTY DISTRICT SCHOOLS,X3500\nAAP,,H5100\nInformation Requeste,Burgess & Niple Limited,Y4000\nATTORNEY,STEVE PHILLIPS/ATTORNEY,J7500\nTHORSNES BARTOLOTTA MCGUIRE ET AL,,K1000\nDesigner,Stonehill Designs,Y4000\nAttorney,\"Judd, Shea, Ulrich et al\",K1000\nSales Consultant,Courtney Industrial Battery,Y4000\nAttorney,Wallace Jordan Ratliff,Y4000\nPresident,Eurocraft Home Improvement,Y4000\nDIAGNOSTIC R,JOHNS HOPKINS HOSPITAL,H1130\nFILM PRODUCER,RKR MEDIA,Y4000\nCASALE SKOZEN WOODWARD & BULS LLP,,Y4000\nOFFICE MANAGER,LAW OFFICES OF ERIC K. KRASLE AND ASSO,K1000\nTRADE LINK,,Y4000\nPRESIDENT,\"SNYDER INDUSTRIES, INC.\",Y4000\nADMINISTRATION,CARDINAL MAINTENENCE CONTRACTING SERVI,G5200\nteacher,Cambridge Public Schools,Z9500\nDESCHAUER/BOGGS L.L.P./CEO,,Y4000\nSVP-Acquisitions,CNL Retirement Properties; Inc.,F4100\nMARCK-MEDCO MANAGED CARE LLC,,H4400\nOMEGA PIPELINE CO,,E1140\nCOMMONWEALTH ORTHOPEDICS/REHAB/PHYS,,H1130\nVENTURE CAPITAL,ARENA CAPITAL,F2500\nDrilling Engineer,Self-Employed,B4400\nPARTNER,\"DANWAR PROPERTIES, LLC\",F4000\nKEN MONTGOMERY TRUCKING INCORPORATE,,T3100\nAT,HUDSON POTS & BERNSTEIN LAW FIRM,K1000\nINVESTOR,INTREPID CAPITAL MANAGEMENT INC.,F2100\nRETIRED CPC DIRECTOR,RETIRED,X1200\nA,U.S. SECURITIES AND EXCHANGE COMM,Z9500\nChief Executive Offi,Centennial Communications,C4300\nPHYSICIAN,CAPITAL HEALTH PLAN,Y4000\nI T T,,F3100\nBOOKKEEPER,GHIRARDO CPA,F5100\nOwner,John Hayes & Sons,Y4000\nEXECUTIVE,EASTERN STATES EXPOSITION,Y4000\nInvestigator,FPDNNY,Y4000\nPhysician,Thomas Langley Med,Y4000\nOwner,Friends Jewelry Ltd.,G4600\nGENERAL MANAGER,DOUGLAS HYUNDAI,T2310\nPRESIDENT,TORKAN DEVELOPMENT CORP AND VILLADOM C,Y4000\nACCOUNTANT,DIXIE GIN,A1100\nExecutive,Offshore Marine Service Association,G1000\nOwner,Ann Of Green Gables,Y4000\nExecutive Vice Presi,Citizens Bank Pennsylvania,F1100\nCAI INSURANCE,,F3100\nPROFESSOR,AMEIRCAN RIVER COLLEGE,H5100\nCreative Consulting,Self,Y4000\nInformation Requeste,Viacom,C2000\nOPHTHALMOLOGIST,\"BILTMORE EYE PHYSICIANS, P.C.\",H1100\nTICOR TITLE COMPANY,,F4300\nowner,McDonough Plumbing,B3400\nHEALTH,\"ARION CARE SOLUTIONS, LLC\",Y4000\nLAWYER,\"HARRIS, FINLEY, & BOGLE PC\",K1000\nBUILDER,PERFORMANCE BUILDERS,Y4000\nVice President,Brenner Real Estate Group,F4000\nFARMER/LAWYER,SELF EMPLOYED,A1000\nWHITMIRE DISTRIBUTION,,H4400\nrealtor,Prudential Palms,F4200\nPRESIDENT,BUNCOMBE CONSTRUCTION,B1500\nPRESIDENT,CATHOLIC HEALTHCARE,H2100\n\"WYLIE, MCBRIDE, JESINGER, SURE\",,K1000\nOrthopaedic Surgeon,Anchorage Fracture & Orthopedic Clinic,H1130\nPresident,INCA Engineers Inc.,B4400\nTEACHER,SOUTHPORT MONTESSORI,Y4000\nBOOKSELLER,BUSINESS OWNER READ -- EXPLORE INCNC,Y4000\nCLARKS 1-HR CLEANER,,Y4000\nCORNERSTONE SYSTEMS INC./PRESIDENT/,,Y4000\nPRESIDENT & CHIEF OP,PMI MORTGAGE INSURANCE CO.,F3100\nPULASKI FURNITURE CORP,,G4400\nA&R TOOL & EQUIP RENT,,G5300\ncontractor,Milco General Contracting Corp.,Y4000\nPARTNER,\"CHAMBERS, COLIN & HARTWELL\",K2000\nC.F.,NAUAPACHE REGIONAL MEDICAL CEN,H0000\nAttorney,Bryan Cave LLP,J9000\nAttorney,Law Office of Michael Goldst,K1000\nStructural Engineer,Liftech Consultants Inc.,Y4000\nCENTER FOR PUBLIC POLICY PRIORITIES,,Y4000\nBRANCH CHIEF,US COURTS,X3200\nVeture Capital,Self-Employed,G0000\nCOURIERONE,,Y4000\nBECK-ELMAN AGENCY,,Y4000\nHotel Owner/Operator,Mars Hospitality,Y4000\nWichita State University,,J1200\nSENIOR VP FINANCE & ADMIN,SACRED HEART UNIVERSITY,H5100\nPRESIDENT,THE COMMUNITY FOUNDATION,Y4000\nCORPORATE VICE PRESIDENT APPLICATIONS,VANGUARD HEALTH SYSTEMS,H2100\nPHYSICIAN,PALOS EMERGENCY MEDICAL SERVIC,Y4000\nInvestor,John Cappetta,Y4000\nATTY EST TAX,IRS,L1100\nVenture Capital,Crorspoent Venture Capital,F2500\nBOARDMAN CAPITAL PARTNERS,,Y4000\nATTORNEY,KAPLAN JATFET & GATES PA,Y4000\nFARALLAN CAPITAL MANAGEMENT,,F2700\nSECURITY ENGINEERED,,Y4000\nMarketing,\"Cohen, Milstein, Hausfeld & Toll\",K1100\nREGISTERED NURSE,GOLDEN RIDGE SURGERY CENTER,H1130\nREAL ESTATE,HUME PROPERTIES,F4000\nPRESIDENT,GRAY DISTRIBUTION SERVICES INC.,Y4000\nGarden Center employ,Hibbard Rd. Gardens,Y4000\nASSET MANAGER,22 RESEARCH,Z9500\nSTUDENT,NONE,F4200\nGOVERNMENT AFFAIRS,METHANEX,M1000\nInformation Requeste,SMC Construction,B1500\nMANOR PINES HEALTH CARE,,H2200\nTOM GRANT MUSIC,,Y4000\nReal Estate,Key Properties,J5100\nACTIVIST,FEMINIST MAJORITY,Z9500\nBusiness Development Specialist,\"Lumidigm, Inc\",Y4000\nCHARLES DEARTH PONT BUICK,,T2300\nMANAGING DIRECTOR,ESSEX WOODLANDS,F2500\nINVESTOR/PHILANTHROPIST,SELF-EMPLOYED,F7000\nDIRECT RESPONSE FUND RAISING,EBERLE COMMUNICATIONS GROUP,G5220\nOCC S&H CONSULTANT,SELF,Y4000\nVICE PRESID,ENVIROCARE OF UTAH INC.,E3000\nCRNA,Brigham and Womens Hospital,H1710\nGENERAL COUNSEL AND,FM SERVICES CO.,E1150\nPRESIDENT & CEO,CALIFORNIA WATER SERVICE CO.,E5000\nConsultant,Buley Public Affairs,Y4000\nBOSTON IVF,,H1100\nTeach,University Of Rochester,H5100\nEMPOLYER BENEFITS INC,,Y4000\nDIRECTOR - CONE MILLS CORPORATION,,M8000\nCEO,US First,F1300\nEPIPHANY NURSERY SCHOOL,,H5000\nArcht Designer,Archt Susan Desko Al,Y4000\nProducer/Director/Writer,\"JW Creative Solutions, Ltd\",Y4000\nHOMEMAKER,,LT300\nVeterinarian,Air Animal Inc.,Y4000\nPERSONANEL POLICY SERVICES,,Y4000\nMEDICAL ARTIST,,H0000\nMUZI FORD CITY,,Y4000\nGULFOIL PETZALL & SHOEMAKE LLC,,Y4000\nOwner,Sagewood Group,J1100\nBUS OWNE,CASTLE POINT & PUBLICATION,C1100\nSHORELINE GROUP,,F2300\nGOLDEN CONSULTANT,,J7150\nBAPTIST COMMUNITY SERVICE,,Y4000\nACCOUNTANT,SELF-EMPLOYED,J5200\nPHYSICIAN,TEAM HEALTH/PHYSICIAN,H3000\nATT,\"MURRAY MONTGOMERY AND O'DONNELL\",K2000\nAT & T WIRELESS,,K2000\nDAVID BOCK,DAVID BOCK,Y4000\nEXECUTIVE,INNOVIVE INC./EXECUTIVE,H4500\nASSN CONSULTANCY,,G0000\nPathologist,SUNY Downstate Med Ctr,H1130\nCOLUMBIA FOODS,,G2000\nCOMPUTER SYSTEMS,,C5100\nOWNER,\"EDGE CONSTRUCTION, INC.\",B2000\nRETIRED,JOHNSON & JOHNSON,H4000\nContractor/Construction,Self-Employed,B1500\nPhysician,Heartland Pathology Cons,H1130\nManagement,Polycon,Y4000\nARVIDA CORPORATION,,B2000\nLABO,VANGUARD CONSTR&DEVELOPMENT C0,LB100\nInformation Requeste,Stoel Rives/Attorney,K1000\nBUILDER,Information Requested Per Best Efforts,B1500\nFinancial Advisor,Cross Markets Concepts inc,Y4000\nBUSINESS E,PALM BEACH OCEAN STUDIOS,Y4000\n\"DIRECTOR, PUBLIC AFFAIRS\",\"NATIONAL SHOOTING SPORTS FOUNDATION, I\",J6200\nEDUCATION,STATE OF ILLINOIS,X3000\nChairman of Board,Harvey Enterprises,F4100\nGENERAL M,HARVEST CONSTRUCTION INC.,B1500\nPRIMM INVESTMENT INC,,G2900\nVP FINANACE & CFO,TEXAS INDUSTRIES,M2100\nSALES,DAPHNE WARNER & ASSOC/SALES,Y4000\nSOFTWARE ENGINEER,FLUKE ELECTRONICS,Y4000\nEAGLE BODY,,Y4000\nELECTRONIC WARFARE INC,,D3000\nAttorney,Atlas & Hall,K1000\nAttorney,\"Patton,Boggs LLP\",K1000\nVICE CHAIRMAN,TENET HEALTHCARE CORPORATION,H2100\nENGINEER,CENTURY DIVERSIFIED,B4000\nAttorney,Shea Homes,J1200\nInformation Requeste,Loeffler Tuggey Pauerstein Rosenthal L,K1000\nInformation Requested Per Best Efforts,INFORMATION REQUESTED PER BEST EFFORTS,X3000\nSR. VICE PRESI,GREYHOUND LINES INC.,T4100\nMC ARTHUR COMPANY,,F4200\nPRESIDENT,PA COAL ALLIANCE,E1210\nCOMPUTER CONSULTANT,SELF,T1400\nCEO/Owner,KBNO Radio,C2100\nCAR SALVAGE,,Y4000\nPROFESSOR EMERITUS,UW MADISON,H5100\nARCHITECT,B.K.A. ARCHITECTS,B4200\nCOO,SPRINGFIELD GROCER COMPANY,G2910\nOWNER,STREET TOYOTA MAZDA,T2310\nCAMPBELL MITHUN,,Y4000\nreal estate,Self-employed,J7400\nAtty.,\"Munger, Chadwick\",K1000\nCOMMERCIAL REAL ESTA,DIVERSIFIED REAL ESTATE SERVICES,F4000\nCITY OF MONTEREY PARK,,X3000\nOwner,Compass Associates Inc.,Y4000\nMarketing Consultant,AllPro Marketing,Y0000\nSOFTWARE SALES,\"DATEX, INC\",Z9500\nFRED JONES INDUS,,Y4000\nFELLERS & SNIDER,,K1000\nReal Estate Consultant,Self employed,J1200\nLOCOMOTIVE ENGINEER,UNION PACIFIC SYSTEMS,Z9500\nAttorney,Glick & Retamar,K1000\nCONSERVATIONIST,,B4200\nATTORNEY,\"ADLER GROUP, INC.\",F4100\nAttorney,The Simmons Firm LLC,K1100\nOwner,Key Electric,B3200\nPresident,Don G. Wellons Properties,F4000\nOwner of research bu,\"Policy Studies Associates, Inc.\",J1200\nBusiness Owner,\"Self-Employed (Marilyn's Inc.)\",Y4000\nPRESIDENT AND FOUNDER,\"FITZGIBBON MEDIA, INC.\",Y4000\nSELF-EMPLOYED/REAL ESTATE SALES/INV,,J5100\nSR. V,\"PENSKE TRUCK LEASING CO., LLP\",T3100\nCounsel,Bristol Myers Squibb,H4300\nSELF-EMPLOYED,METRO DETROIT SIGNS INC,G5230\nCONSULTANT,MELCHER+TUCKER CONSULTANTS,Z9500\nINFORMATION REQUESTED PER BEST EFFORTS,INTEGRO INSURANCE BROKER,F3100\nQUATRO CORPORATION,,Y4000\nSHELLWORTH CLEU,,Y4000\n\"PIGGY'S\",,G2900\nExecutive,Watson Land Co.,F4100\nPORTFOLIO,UNIVERSITY OF CALIFORNIA,H5100\nINLAND MAILING SERVICE,,Y4000\nVP PORTFOL,GABLES RESIDENTIAL TRUST,F4100\nSales Associate,\"Physician Micro Systems, Inc\",Y4000\nVP Gas Supply,PSEG Energy Res and Trade,E1620\nDIAGNOSTIC RADIOLOGIST,HAMOT MEDICAL CENTER,H1130\nQa Engineer,Apple Computer,C5110\nBUSINESS DEVELOPMENT MGR.,GRAVITAS,Y4000\nPHYSICAL THEREPIST,,H1700\nMANAGI,\"GROSVENOR CAPITAL MGMT, L.P.\",F2700\nFINANCE DIRECTOR,STATE OF ALABAMA,X3000\nE.V.P.,\"POPULAR, INC.\",F1100\n\"FIRST NAT'L BANK LAGRANGE\",,F1100\nCEO,CAMPBELL CLINIC,Y4000\nALUMNI ASSOC OF CA COAST UNIV,,H5100\nDirector/Advance Man,\"C.N.H., L.L.C.\",Y4000\nEXECUTIVE,BIG FOOD ENTERPRISES,G2000\nFOUNDER,THE STEP 2 CO.,Y4000\nCFO,HI-TECH CONSTRUCTION COMPANY,B1500\nRANDY HICKERSON DDS,,H1400\nCOLDWELL BANKER BUNDAKER,,Y4000\nNY Assembly,Assembly Member,Z9500\nOWNER,HAVANA GROUP CIGAR CLUB,A1300\nFARMER,\"DULL HOMESTEAD, INC.\",Z9500\nDIREC,HOUSEHOLD FINANCE CORPORATION,F1400\nAMERICAN INTL PETROLEUM CORP,,E1120\nCFO,The Gallegos Corporation,Y4000\nSELECT MGT HLDGS INC,,Y4000\nPRESIDENT & CEO,\"THOMPSON TRACTOR COMPANY, INC.\",A4200\nPHYSI,MESILLA VALLEY ANESTHESIOLOGY,H1130\nSupervisor,All Title Services Of Wisconsin,F4300\nCEO,PRICE ENTERPRISES,Y4000\nA M T CAPITAL CORP,,Y4000\nVP,GLOBAL SOLUTION PARTNER ORG.,Y4000\nowner,\"Gus's Famous Fried Chicken\",Y4000\nSenior Software Engineer,\"MasterCard Int'l\",F1400\nRefractory Salesman,Self Employed,G0000\nEvents,Hilton Hotels Corp,J1200\nPhysician,Ctr-interventional Pain Mgmt,H1130\nMANAGER,ADAMS CONSTRUCTION,B1500\nHOMEMAKER,NA/HOMEMAKER,J1200\nClaims Officer,WA State Division of Child Support,Y4000\nTeacher,Montgomery Co Public Sch,X3500\nChairman and Director,\"Leanin'' Tree\",C1400\nCENTRAL PUMP SERVICE CORP,,Y4000\nKENTECH CORP,,E1600\nWILKES-BARRE FEDERAL CREDIT UNION,,F1300\nFUND MANAGER,VERNONVILLE ASSET MANAGEMENT LLC,J1100\nOWNE,DUCKS IN FLIGHT WATER FOWL LLC,E5000\nREAL ESTAT,THE APARTMENT GROUP INC.,F4500\nVICE PRESIDENT,STATER BROS. MARKETS,G2400\nExecutive,Ed Levy Co.,J5100\nPR,BOULLIOUN AVIATION SERVICES INC.,T1100\ndocumentry producer,Self-employed,Y4000\nFLORIDAS PREFERRED HOMES INC,,B2000\nCARE CLINIC,UNIV OF ILL,H5100\nHASTINGS ARCHITECTURE ASS,,B4200\nRESEARCHER,PUBLIC EDUCATION PARTNERS GREENVILLE C,Y4000\nCONSULTING,HOUSING CAPITAL ADVISORS,F4100\nLand Conservation,Berkshire Natural Resources Council in,Y4000\nNONPROFIT EXEC,LIBERTY HILL,Z9500\nEXECUTIVE ASSISTANT,TOLL BROTHERS,Z9500\nOFFICE,OLD SOUTH BUILDING SUPPLIES,B5000\nWELCOME STOCK FARM,,A3000\nUNITED FOOC &,,LG100\nVP,ABARTA OIL & GAS CO. INC,E1100\nCable telecommunications,Cox Cable,C2200\nBank Administrator,Community Resources Financial Ctr,Y4000\nCONSULTANT,ASI,Y4000\nInvestments,Clanco Management,F5000\nMCALLISTER AND SONS,,Y4000\nATTORNEY,\"LAW OFFICE OF MATTHEW VANCE, P.C.\",K1000\nDirector,Marshall Industrial Hardware,Y4000\nGABELLI ASSET MGMT INC,,F2100\nPresident,Montgomery Bank & Trust Co.,F1000\nEDITOR,SELF-EMPLOYED,J1200\nArchitect,Landmark Architects Inc.,B4200\nlawyer,Eichner & Norris,Z9500\nInformation Requested Per Best Efforts,COMING OF AGE,Y4000\nRETIRED,KOESTER COMPANIES,Y4000\nPHYSICIAN,EMAJN PLLC - PARTNER,Y4000\n\"VP, Sec & Assoc Gen'\",United Technologies Corporation,D2000\nExecutive,J P Cullen and Sons,J1100\nCHILD WELFARE ADM,STATE OF ILLINOIS,J1200\nCONSULTANT,PACIFIC PUBL. AFFAIRS,G5210\nPUBLIC AFFAIRS CONSULTANT,DCI GROUP,K2000\nExecutive - Media Producer,Prostate Cancer Foundation,Y4000\nInformation Requested,Oncology Hemo Care,H1130\nALVARADO GERKAN & BENNETT,,K2000\n\"Vice President, Operations\",Play Hard,Y4000\nAIRLINE PILOT,PSA AIRLINES,T1100\nAttorney,\"Sheehan, Schiavoni, Mooridian\",Y4000\nCHAIRMAN,ATLANTIC DETROIT DIESEL,Y4000\nCONSULTANT,THE GRESH GROUP,Y4000\nOWENS CORNING,ALPHA,M1000\nBKSH & ASSOCIATES,,J1200\nEQUITY RESEARCH ANALYST,\"RAYMOND JAMES & ASSOCIATES, INC.\",F2100\nBREAN MURRAY AND CO,,Y4000\nDIRECTOR OF COMMUNICATIONS,HAWAII COMMUNITY FOUNDATION,Y4000\nLawyer,Hogan & Hartson LLP,J7400\nPresident,E3,Y4000\nDean and Professor of Economics,College of Business NMSU,H5200\nVICE PRESIDENT,\"BASIC COMMERCE AND INDUSTRIES, INC.\",C5120\nKONORER ASSOCIATES,,Y4000\nAUSTIN EAR NOSE & THROAT CLI,,H1130\nPRESIDENT & CEO,OCV LLC,J1100\nEXECUTIVE,WRIGHT & FILIPPS/EXECUTIVE,H4100\nEXECUTIVE,E. SCHNEIDER & SONS INC.,Y4000\nPRESIDENT,VERLO INDUSTRIES,Y4000\nHEALT,BENEFITS JUST FOR GROUPS INC.,F3200\nConsultant,Saic,J1200\nMANATEE FRUIT CO,,Y4000\nOWNER,MORSE HOMES INC,B2000\nSENIOR SUBCONTR,LOCKHEED MARTIN CO.,D2000\nContractor Developer,\"Chamberlain, Ltd.\",Y4000\nPHYSICIAN,GEORGE WASHINGTON UNIVERSITY,Z9500\nCEO,Las Casitas de Sebastopol Real Est.,F4000\nPhysician,\"Lotus Clinics, PC\",Y4000\nRetired,\"LifePartners, Inc.\",Y4000\nEngineer,AEROSPACE CORP,T1700\nPresident,Today Foundation,X4100\nPRESIDENT,CHAMPLAIN HARDWOODS INC,A5000\nExecutive Director,Virginia Oncology Associates - Lake Wr,H1130\nCEO,\"GALEN PUBLISHING, LLC D/B/A AD\",C1100\nASIAN-PACIFIC AM INST FOR LA,,Y4000\nCRNA,Commonwealth Anesthesia,H1710\nPresident/CEO,Access Quality Therapy Services,H3200\nEXECUTIVE,\"COGGINS IND., INC.\",Y4000\n\"FACULTY, PHYSICIAN\",UNIVERSITY OF PITTSBURGH,H5100\nPHYSICIAN,AESTHETICS OF THE SKIN,Y4000\neducation,\"Paul Smith's College\",H5100\n\"WILKINSON O'GRADY CO. INC.\",,F2100\nPROFESSIONAL SERVICES,TERADATA/PROFESSIONAL SERVICES,C5110\nCONTRACTOR,UNITED MARBLE & GRANITE INC.,Y4000\nDOCTOR,LEXINGTON DIOGNOSTIC CENTER,H1100\nPROFESSOR,UNIVERSITY OF WISCONSIN,H5100\nCHAIRMAN,\"SWEEPSTER, INC.\",J1100\nMEDICAL FIELD,FMC,M1000\nINVESTOR,TAGGART FINANCIAL GROUP INC.,Y4000\nLawyer,\"Donald L Schlapprizzi, PC\",Y4000\nLAWYER,TELLER LEVIT SILVERTRUST,Y4000\nPRESIDENT,VILLAGE OF LONG GROVE,Y4000\nPRESIDENT,AUBURN NETWORK,C2100\nBEADLESTON GALLERY,,Y4000\nWHITE PRINTING CO,,C1300\nTHE TECH ASSISTANCCE COLLABORATI,,J7400\nINVESTME,NATSOURCE ASSET MANAGEMENT,Y4000\nJULIAN LECRAW & CO,,F4000\nTeacher,Ministry Education,Y4000\nDO,WEST COAST EYE INSTITUTE,H1120\nATTORNEY,US PATENT OFFICE,X3000\nOrthopaedic Surgeon,McHenry County Orthopaedics,H1130\nFinance,Sekf,Y4000\nPHYSICIAN,U.C. SURGEONS,Y4000\nAttorney,Wayfinder Management LLC,Y4000\nHURT & SELL,,F4200\ncommunications coord,county of orange,J1200\nMUTUAL SELECTION MANAGEMENT CO,,J4000\nEducator,First Graudate,Y4000\nCORPO,ALTRIA CORPORATE SERVICES INC,Z9500\nNUTRITION SERVICES ASSOC,,Y4000\nREALTOR,HAWTHORNE REALTY INC.,F4200\nATTORNEY,EDMISTEN LAW OFFICE,K1000\nCFO,CRETE CARRIER CORP,T3100\nLOCKAMY SCRAP METAL INC,,M2400\nRESTAURANT,ALIZZI PROPERTIES INC,F4000\nWILLIAMS GROUP INTERNATIONAL,,B3000\n\"cardiologist, Asst P\",University of Michigan,H5100\nLOUIS DREYFUS CORPORATION,,F2200\nCONSULTANT - POLITICAL COMMUNICATIONS,\"MESSAGE, AUDIENCE, AND PRESENTATION\",Y4000\n\"DUVIN, CAHN & BARNER\",,K1000\nPresident/CEO,\"Red Mountain Bank, National Associatio\",F1100\nPathologist,Edward Hosp,H1130\nFinancial Advisor,ADAR Investment,J5100\nPresident,Prince Creek Construction,B1500\nPARTNER,BML REALTY,F4200\nINNOVEX INC,,Y4000\nUNIVERSITY HOSPITALS,,H1100\nFinancing Analyst,Aviva Insurance,Y4000\nPRESIDENT,ENVIROVAC INC.,Y4000\nENGINEER,PG&E COMPANY,E1620\nOwner,Dynamic Air Systems Llc,Y4000\nGovernment,Us Department Of Homeland Secu,X3000\nNonprofit Exec,\"Givingnet, Inc\",Y4000\nJACK WOOD CONSTRUCTION CO,,B1500\nLawyer,Eric H Bernston & Assicates LLC,K1000\nDANSARD-GROHNKE,,Y4000\nDENTIST,MONI MOSHARAF DDS INC,J1100\nPORT AUTHORITY NY & NJ,,X3000\nDirector,Manufacturers Bank,F1100\nadministrator,Ida Culver House Retirement Home,H2200\nAttorney,\"Fitzpatrick, Cella, Harper and Scinto\",J1200\nPresident,Radiant Systems,Y4000\nJAMERSON & BAUWENS,,B3200\nSEARL & ASSOCIATES ARCHITECTS,,B4200\nINTERNEVRON PHARMACEUTICALS INC,,H4300\nSTATE REPRESENTATIVE,NC GENERAL ASSEMBLY,Y4000\nBanker,Chattahoochee Bank of GA,F1100\nATTORNEY,PARISH AND CASTLEMAN/ATTORNEY,Y4000\nChief Supply Chain Officer,Fisher Scientific - Logistics,M9000\nEXECUTIVE,\"WAFFLE HOUSE, INC.\",G2900\nAttorney,Kahn Kleinman,K1000\nINFORMATION REQUESTEC,,G4400\nBAUER INSURANCE,,F3100\nFurniture Store,Self-Employed,G4400\nVAN KAMPEN AMERICAN,,F2100\nInvestment Banker,\"XMS Capital Partners, LLC\",F0000\nCPA,\"RULIEN & ASSOCIATES, LLC\",F5100\nSENIOR MANAGING DIREC,NEW YORK LIFE,F3300\nAttorney,\"Luxenberg, Garbett, Kelly,...\",K1000\nAssociate,Federal Home Loan Bank Board,F4600\nPRESIDENT,SCRIVENER OIL CO.,E1170\n\"Vice President, ADS NAFT\",Infineon Technologies,C5110\nTAX & FINANCIAL MGMT. SERVICES,O BDAILEY & ASSOC.,Y4000\nASSISTANT DIRECTOR,RILEY & HORIZON ACADEMY NET,Y4000\nTRADER,\"GOLDMAN, SACHS & CO.\",F2300\nATTORNEY,\"WEISMAN, KENNEDY & BERRIS CO., LPA\",K1000\nKERRIGAN ESTES ET AL,,Y4000\nSURGEON,FORCE ORTHOPEDICS,H1130\nSENIOR VP,VERTEX PHARMACEUTICALS INC,H4300\nLADD-HONFORD,,Y4000\nCO-FOUNDER,\"BIG ROUND MUSIC, LLC\",Y4000\nArchitect,DMR Architects,B4200\nAERO-SPACE CONSULTANT,,T1000\nPublic Relations/Spe,Self-employed,G0000\nCEO,BLUECROSS BLUESHIELD OF TN,F3200\nPhysician,Urology Specialists Lv,H1130\nCOMM CONSULTANT,BSM6 WORLDWIDE,G5210\nRICHARDSON IND,,Y4000\nSUBSTITUT,WINCHESTER PUBLIC SCHOOLS,X3500\nREAL ESTATE,BAYVIEW LOAN SERVICING,Y4000\nKERN CONSULTING,,Y4000\nCONSULTANT,ANNIE E CASEY FOUNDATION,X4100\nPRESIDENT,BAY MINETTE LAND CO.,Y4000\nSELF EMPL,MEDICAL DECISION SERVICES,Y4000\nCONSULTING ENGINEER,\"MCTISH, KUNKEL & ASSOCIATES\",G5200\nPresident,My Mom Knows Best Inc.,Y4000\nRanch Manager,\"King Ranch, Inc\",A3000\nOWNER,ADVENTURELAND AMUSEMENT PARK,Y4000\n\"NICK, LYDEN & CO\",,F2100\nPRESIDENT,RITCHIE TRUCKING,T3100\nPRESIDENT &,SHAMROCK MATERIALS INC,B5100\nATTORNEY,\"O'NEILL CANNON AND HOLLMAN, S.C.\",Y4000\nPEACHIN SCHWARTZ,,Y4000\nAttorney,BNA Inc,Y4000\nSr Economist,US Senate,X3000\nPRESIDENT,RANPAC INC,Y4000\nMAN,INTERNATIONAL PROFIT ASSOCIATES,G5270\nprogrammer,Self-Employed,C5130\nn/a,,E1600\nContractor,Skyscraper Service Systems,Y4000\nCAO,Virginia Bankers Association,F1100\nAttorney,\"Nappi & Hoppe, LLC\",K2000\nJ C HEY CO,,Y4000\nOwner,FanButch Color Printing Inks,C1300\n\"VP, RESEARCH/POLICY\",ENVIRONMENTAL LAW INSTITUTE,JE300\nATTORNEY,\"BRENNER, SALZMAN & WALLMAN\",K1000\nVICE PRESIDENT,GENWORTH FINANCIAL,F3000\nPORTFOLIO MANAGER,SUENKMAN CAPITAL,Y4000\nOwner,Ac Fleet Inc.,Y4000\nNORWOOD GROUP INC,,Y4000\nHardware Engineer,Rutherford Graphic Products LLC,C1300\nBUSINESSMAN,BOEING,D2000\nBARR NUNN TRANSPORTATION,,T0000\nBUS. CONSULTAN,GAMMA SERVICES CORP.,Y4000\nMAJOR PHARMACEUTICAL,,J5100\n\"Vice President, Legal & Administration\",Intelligent Optical Systems,M9100\nCONSULTANT,OTTO REICH ASSOCIATES LLC,Y4000\nPhysician,Permanente Medical Group Inc,H3700\nATTORNEY,LEAVENS STRAND GLOVER & ADLERS LLC,Y4000\nACTUARY,THE DONNER CO,J1100\nPRESIDENT,SMITHFIELD BEEF GROUP,G2300\nC.E.O.,ISLAND COLD STORAGE/C.E.O.,Y4000\nEXEC,PASSPORT HEALTH COMMUNICATIONS,Y4000\nEXECUTIVE OFFICER,BA OF WESTERN NEVADA,B2000\nPresident,Pro-acct Services Inc.,F5100\nNUEVO ENERGY COMPANY,,E1150\nTHE KEEFE COMPANY,,\nCEO and Founder,Intersystems,C5120\n\"STEMBELER, ADAMS & SWEET INC\",,Y4000\n\"MANAGING DIRECTOR, HEAD OF INVESTMENT\",MORGAN STANLEY WEALTH MGMT.,F0000\nMotorsports Marketing,Champion Sports Group,Y4000\nSOFTWARE ENGINEER,RETIRED BOEING/SOFTWARE ENGINEER,X1200\nHALLIBURTON CORPORATION,,G1300\nU.S. Ambassador To N,U.s. Government,X3100\nFINANCIAL ADVISOR,WADDELL & REED,J1100\nOWNE,INTERNATIONAL HOUSE OF PANCAKE,Y4000\nRANCH MANAGER,INFORMATION REQUESTED PER BEST EFFO,A3000\nhigher education pol,self employed,J7400\nLOEWS THEATRES MANAGEMENT CORP,,G6100\nRetail/Owner,Self-Employed,G0000\nMAMSI,,H3700\nVICE PRESIDENT M&A,SIEMENS CORPORATION,C5000\nbuisness manager,YankeeTek Ventures,Y4000\nOWNER,KIGMA RADIO SHOP,C2100\nWYLEN & GILMORE,,Y4000\nIPTIVIA,,Y4000\nSALES,CEVA,Y4000\nSANDLER CAPITAL,,F2100\nSR. MANAGING DIRECTOR,CUSHMAN & WAKEFIELD,F4200\nExecutive,Tribune Interactive Inc.,C1100\nPresident/CEO,Orbitel Communications,Y4000\nOFFICE OF IRWIN SAVODNIK,,Y4000\nSALES REPRESENTA,NATIONAL CINAMEDIA,Y4000\nLegislator,State of Oregon,X3000\narchitect,ssoe,Y4000\nMANAGING DIRECTOR,SPAUDLING & SLYE INVESTMENTS,F2100\nINFORMATION REQUESTED PER BEST EFFORTS,MINDSHIFT TECHNOLOGIES,Y4000\nSVP AND GENERAL MANAGE,WARNER BROS.,C2000\nChairman and Chief E,Showtime Networks Inc.,C2200\nCEO,\"FURR'S CAFETERIAS; INC..\",G2900\nKIM SUSAN INC,,Y4000\nLERNER DAVID,,Y4000\nPENSIONER,,Y4000\nPresident/CEO,\"Howe Barnes Hoefer & Arnett, Inc.\",F1100\nDIR. REGULATORY/STRATEGIC SVCS.,GRAND CANYON STATE ELECTRIC CO-OP,E1610\nMANAGER,RCI CONSTRUCTION GROUP,B1500\nPRESIDENT,\"J.J. CASHMAN, INC.\",B3000\nCHAI,\"DIMENSIONS INTERNATIONAL, INC.\",G5200\nbiotechnology consultant,self,H4500\nPARTNER,GLOBAL STRATEGY GROUP,D6000\nAttorney,\"Richard Preston & Associates, LLC\",Y4000\nSCIENTIST,CATALYTIC DIPLOMACY,Y4000\nSurgeon,MD Anderson Cancer Center,H2100\nATTORNEY,ANN H. GUILL,Y4000\nCARESPRING,,Y4000\nREAL ESTATE BROKER,\"SUN VISTA ENTERPRISES, INC.\",F4200\n\"LOVEY, WOLFF & SWIFT\",,Y4000\nLOVELL AND LYLE,,Y4000\nPRESIDENT,DON RITTER GROUP,Y4000\nGULF COAST PRODUCE DISTRIB.,,A1400\nNONE,SELF-EMPLOYED,Z9500\nPrincipal Owner,True Artist Management,Y4000\nDIRECTOR GOVT,CALIFORNIA APT ASSOC,Y4000\nOwner,\"Park Stein, Inc.\",Y4000\nRITAIRE,,Y4000\nFOUNDING AND MANA,WOJNO DEVELOPMENT,Y4000\nSPINE ASSOC PA,NEURO,H1130\nAdmin,University of Colorado,H5100\nPublic Relations,City of Miami,X3000\nConsultant,Mintonciyan Consulting,Y4000\nLELAND ENGINEERING,,B4400\nCOMMUNICATIONS CONSU,\"MARCHESE COMMUNICATIONS, INC.\",Y4000\nMOUNTAINEER RACE TRACK,,Y4000\nRADIOLOGIST,MADISON RADIOLOGIST,H1130\nVICE PRESIDENT OF OPERATIONS,NANINI NORTHWEST LLC,Y4000\nEYESPEAK/TATTOOIST/ BUSINESS OWNER,,Y4000\nEXECUTIVE DIRECTOR,M-CARE,Y4000\nMANAGER,SIENNA JOHNSON DEVELOPMENT,Y4000\nSIEBAL SYSTEM,,C5120\n\"BOSTON BASEBALL FIELD OF DREAMS, LL\",,Y4000\nCIO,NET JETS,T1400\nCOUNSULTANT,SELF,J7400\nPRES GEORGE BUSH,U S GOVERNMENT,X3000\nFounder and Chairman,Telosa Software,C5120\nJUDGE,TENNESSEE COURT OF JUDICIARY,X3200\n\"O'PARK MANAGEMENT SERVICES INC.\",,F4500\nU S ARMY-RETIRED,,X1200\nPresident,\"Nokia, Inc.\",C4300\nATTORNEY,PETERS & SCOON ATTORNEYS/ATTORNEY,K1000\nAttorney,\"Nanci Nishimura, Esq\",K1000\nBOOKSELLER,THOMAS A GOLDWASSER RARE BOOKS,Y4000\nATTORNEY,FULBRIGHT & JANORSKI/ATTORNEY,K1000\nLIFE INSURANCE,SELF-EMPLOYED,F3300\nASHTON REALTY,,F4200\nARCHITECTURAL SERVICES,,B4200\nC.O.O.,STARWOOD CAPITAL,F4100\nVICE PRES,HOLSTEAD PROPERTY COMPANY,J7400\nCONSULTANT,\"FRANCES F. YELEN ASSOCIATES, INC.\",Y4000\nHomemaker,Information Requested Per Best Efforts,E1190\nMARINE CONCEPTS INC,,T6100\nFerence Cheese & Inc,Self Employed,G0000\nDAVCO RESTAURANTS,DAVCO RESTAURANTS,G2900\nATTORNEY,CONOCOPHILLIPS,Z9500\nBUSINESS OWNER,STROM ENTERPRISES,Y4000\nAUTO DEALER,SELF EMPLOYED,T2300\nNEUROSURGEON,ONA,Y4000\nExecutive,SF,Y4000\nCLERK OF CIRCUIT C,CITY OF RICHMOND,X3000\nPresident,Louis Kwiker & Associates LLC,Y4000\nFinancial Advisor,Beacon Financial Services,F0000\nPHILLIP CROSBY ASSOCIATION,,G5270\nPRESIDENT & CEO,PHILLIPS DISTILLING CO.,Z9500\nREAL ESTATE,WATERTON ASSOCIATES L.L.C.,F5100\nATTORNEY,\"PAULSON & CO., INC.\",F2700\nAttorney at Law,Rogers Hardin LLP,K1000\nsurgeon Educator,University of iowa,H5100\nPARTNER,HANSON PROFESSIONAL SERVICES INC.,B4000\nREAL ESTATE INVESTMEN,BENNETT GROUP,F4000\nHILLEL DIR,JEWISH FED OF CENTRAL MA,Y4000\n\"EDWIN O'DELL & CO\",,Y4000\nSolutions Architect,\"CompuCredit, Inc\",F1400\nATTORNEY,FOLOY & LARDNER LLP,Y4000\nATTORNEY,CAMPBELL DURRANT BEATTY PALOMBO,Y4000\nPROFESSOR,U OF CALIFORNIA,H5100\nALBERS SHEETMETAL & VENTILATING INC,,B3400\nWILSON & GEO MEYER,,B1000\nATTORNEY,RPP LAW,K1000\nSELF-EMPLOYED,NOT EMPLOYED,Y1000\nATTORNEY,SELF EMPLOYED - DELOATCH & HINTON PLL,K1000\nAttorney,Us Dept Of Health And Human Services,X3000\nProject Manager,B&W Solutions,Y4000\nScientist,HMC,J7500\nAccountant,\"Geo Synthetics, Inc\",Y4000\nMANAGER - ALASKA,LINC ENERGY,Y4000\nCHAIRMAN,CR SOFTWARE INC,C5120\nAnalyst,Jpmorgan Chase,F1100\nAccounting Assistant,City Of Walnut Creek,X3000\nPresident,COMPASS TRADING COMPANY,Y4000\nPRESIDENT,QUASON COMPUTER SVS. INC.,C5130\nC E O,The Investor Relations Group,G0000\nAssociation Executive,The National Restaurant Association Ed,G2900\nSTEINBERG ENTERPRISE,,F4200\nPUBLIC SERVICE,US HOUSE OF REPRESENTATIVES,X3000\nRETIRED,DOW CHEMICAL CO.,X1200\n\"BLITZ, BARDGETT & DEUTSCH\",,K1000\nADMINISTRATION,UT SOUTHWESTERN,H5150\nExecutive,Davidsohn Global Technologies,C5120\nLecturer,University of California,J1200\nBROWNSTEIN HYATT & FARBER,,K2000\nPART,\"CASHE, LEWIS COUDRAIN AND SAVA\",K1000\nRGI,,Y4000\nPHY,PLASTIC SURGERY CONSULTANTS LLC,H1130\nMCNAIR LAW FIRM P A,,K1000\nEXECUTIVE,NIXDROFF KREIN INDUSTRIES,Y4000\nSPECIAL ASSISTANT,USCCR,Y4000\nADMINISTRATOR,CLEMSON UNIVERSITY/ADMINISTRATOR,H5100\nInvestment Manager,Silver Rock Financial,Y4000\nRETIRED,GENERAL ATOMICS,E1320\nSatellite tech,self employed,Y4000\nPetroleum Engineer,\"Henry Resources, Llc\",E1000\nConsultant Software,EMC Corp.,C5130\nHOSPITAL EMERGENCY,,H1100\nVP,Exelon Generation,E1600\nNATIONAL MICRO INDUSTRIES,,Y4000\nTECHNICAL REP,RICOH USA/TECHNICAL REP,Y4000\nATTOR,\"CARR, KOREIN, TILLERY, ET. AL\",K1100\nCONSULTANT,WINNER AND ASSOCIATES,G5210\nGENERAL MANA,TCI OF COLORADO (SVC.),Y4000\nSenior Vice Pres.,Sagamore Assoc.,B1000\nCPA,Demasco,J1200\nUROLOGIST,FOOTHILLS UROLOGY,H1130\nAMERICAN PAWN,,G4600\nINVESTMENT MANAGER,CARRET ASSET MANAGEMENT L.L.C.,F2100\nPresident/Owner,\"International Machinery Exchange, Inc.\",Y4000\nEXECUTIVE,\"ASTERISK, INCORPORATED\",C1100\nCPA,Williams & Ribb LLP,Y4000\nAttorney/Not employe,Bullivant Houser Bailey PC,J1200\nWOODSTOCK CORPORATION,,Y4000\nGeneral Contractor,William Brother Construction,B1500\nEXECUTIVE,REVOLUTION GROUP,Y4000\nENGINEER,CHEVRON,E1160\nMarketing Manager,Fe Co,Y4000\nVICE PRESIDENT,\"TENASKA, INC.\",E1630\nLawyer,\"Rakestraw & Rakestraw, LLC\",K1000\nPROPERTY MGMT.,KEITH PROPERTIE,F4000\nphysician,\"Premier Primary Care, Inc.\",Y4000\n\"HART'S PAINT & DECORATIONS\",,G4500\nDESERT ISLE MOTEL,,T9100\nDETAILS,,G4600\nSELF-EMPLOYED/GENERAL CONTRACTOR/IN,,B1000\nEconomist,Fao Un,Y4000\nAdministrator,Pa Turnpike Commission,X3000\n\"FOUNDER, CHAIRMAN\",\"OCEANIT/FOUNDER, CHAIRMAN\",D2000\nCo-owner,Domaille Engineering,B4400\nAUTOMATED BUSINESS SYSTEM,,C5100\nFilmmaker,Jane Doe Films,C2400\nOWNER,NEIL KELLY INC.,C2000\nPRESIDENT,STOCK LUMBER,Y4000\nONLINE MARKETING,SELF-EMPLOYED/ONLINE MARKETING,G5280\nCONTRACTOR,FORSBERG CONST. INC.,Y4000\nCONSULTANT,SEMAC,Y4000\nEDUCATIONAL ADMINIST,SANTA FE PUBLIC SCHOOLS,X3500\nEXEC VICE PRESIDENT,NEW YORK LIFE,F3300\nPRESID,THE GEE STRATEGIES GROUP LLC,Y4000\nPRINCIPAL,SCHEPKER & ASSOCIATES,K2000\nCHAIRMAN OF THE BOARD,,J1100\nREAL ESTATE BROKCER,SELF-EMPLOYED,F4200\nPUBLIC ACCO,CATURANO AND COMPANY PC,Y4000\nAttorney,\"Akerman, Senterfitt, & Eidson\",K1000\nCOMMERCIAL REAL ESTATE,DEHAVILLAND PROPERTIES,T1400\nFOUNDER,STORIES ON STAGE,Y4000\nCHAIR,GRAND MARINER LLC,T8000\nTeacher,Dutchess Day School,F2600\nCHIEF EXECUTIVE OFFICER,MN CATHOLIC CU,F1300\nConsultant,\"Karaton Services, LLC\",Y4000\nEXECUTIVE,CROWN CONTROLS,Y4000\nCEO,ENCOMPASS CONSULTING GROUP,Y4000\nEXECUTIVE VP,CONCOCO PHILIPS,Y4000\nTEACHER,DISCOVERY CENTER OF MURFREESBORO,Y4000\nChairman & CEO,Kibble & Prentice,F3100\nrequested,requested,C1300\nCEO,AmerUS Life Insurance,F3300\nKINGS HARBOR CARE CENTER,,Y4000\nLaboratory director,National Medical Services,Y4000\nChief Operating Officer,Prism One,Y4000\nAttorney,\"Alston Bird, LLC\",K2000\nTimberman,Self,A5000\nFOSTER WHEELER CORP,,F1100\nFASHION MAGIC,USA,Y4000\nULTRAMET,,Y4000\nVenture Ca,Pacific General Ventures,F2500\nSales,Maddock Industries Inc,Y4000\nCivil Engineer,Bechel Power Corp,J1200\nOWNER,M TECH SUPPLY,Y4000\nCLEO STATE BANK,,F1100\nAdministrative Faculty,University of Nevada Las Vegas,H5100\nOWNER,\"DAVID MI & PARTNERS, ARCHITECTS\",B4200\nAttorney,\"Rothschild, Wishek & Sands\",K1000\nChairman and CEO,Amerada Hess Corporation,E1110\nCPA,Pepsi Americas,G2600\nKNOWLEDGEWARE SYSTEMS,,Y4000\nSEVERN TRENT ENV SER INC,,Y4000\nHomemaker,Onyx,Y4000\nLOCATION SCOUT,PLAN A LOCATIONS,Y4000\nTEACHER,MARIN COUNTY PUBLIC SCHOOLS,X3500\nCONSTRUCTION,CONSTRUCTION,B1500\nreal estate developm,Sandpiper Development Company LLC,F4100\nIndependent writer,Self-employed,J1200\nCONTRACTOR,KEITH CONSTRUCTION CO.,B1500\nSILVER EAGLE TRANSPORT,,T3100\nIT MANAGER,THE PERFORMANCE GROUP,Y4000\nMarket Segment Director,INC,B4000\nSR. MEDICAL DIRECTOR,CSL BEHRING,H4500\nteacher,spirit rock meditation center,H3800\nANGELA FRAZIER,,Y4000\nEditor,Maine Home & Design,Z9500\nDirector of Summer P,Point Park University,Z9500\npublic affairs,NYS Department of Health,X3000\nPARTNER,\"BOUNCER, L.P.\",F3300\nFARMING,SELF,A1600\nRETIRED U.S. SENATOR,UNITED STATES SENATE,X3000\nBUDDIES NURSERY,,Y4000\nMother/Homemaker,Self-employed,G0000\nLE BEOUF BROS TOWING L.L.C.,,T3100\n,MERCY HOSPITAL & MERIT CARE CLINIC,H2100\nINVESTM,AKAR CAPITAL MANAGEMENT INC,Y4000\nCLEARY GULL REILAND,,F2100\nMANAGER,JURIS ABSTRACT,F4300\nExecutive VP,Hays Companies,F3200\nPresident/CEO,Hawaiian Electric Company,B3200\nCFO and VP Business Planning,CT Hospital Association,H2100\nattorney,Cahill/Wink LLP,Z9500\nHUSSON COLLEGE,,H5100\nPhysician,Self--Employed,H1100\ninternet director,General Mills,G2100\nPHYSICIAN,NORIDIAN,Y4000\nKINLEY CORPORATION,,E1150\nREAL ESTATE BROKER,MARTHA TURNER PROPERTIES,Z9500\nchemist,city of tucson,J7400\nUROLOG,\"KANSAS CITY UROLOGY CARE, PC\",H5100\nPRESIDENT,KABLELINK COMMUNICATIONS,Y4000\nWINE CONSULTANT,,G2820\nEVP-General Counsel & Secretary,Mack-Cali Realty Corporation,F4100\nCOMPUTER,AMERICAN FAMILY INSURANCE,F3100\nNEUROLOGIST,DESERT NEUROLOGY,H1130\nFINANCIAL STRATEGIST,DAY FINANCIAL GROUP/FINANCIAL STRAT,F0000\nPRESIDENT,CONWAY BLOCK COMPANY INC.,B5100\n\"VETERINARIAN, RETIRED\",SELF,Z9500\nJPMORGAN CHASE & CO./BANKER/BANKER,,Z9500\nBRESLIN RIDYARD FADERO,,B4200\nSCHNILDKNECHT FUNERAL,,G5400\nRETIREDE-NOT EMPLOYED,NONE,Z9500\nVP,\"WATERSOHN COMPANIES, INC.\",Y4000\nOwner,\"Spartac, LLC\",Y4000\nPRESIDENT,DEACON RECRUITING,Y4000\nAttorney,Burke Burns & Pinelli. Ltd,K1000\nExecutive VP and CCO,Vertex Pharmaceuticals Incorporated,H4300\nPOTTS,,Y4000\nANALYST,HONEYWELL,Z9500\nPHYSICAL THERAPIST,VANCOUVER REHABILITATION AND THERAPY C,Y4000\nSE-KURE CONTROLS,,Y4000\nBUSINESS BANKING SALES EXECUTIVE,JP MORGAN CHASE,F1100\nBUSINESS,ICERTIS,Z9500\nRONALD D MCIVER,,Y4000\nREAL ESTATE,WATERFRONT PROPERTIES,F4000\nSALES REPRESEMTATOVE,AIRCO COMMERCIAL SERVICES,Y4000\nHOBAS USA,,Y4000\nATTORNEY,MACDONALD WALTON & RAZOR,Y4000\nEXECUTIVE,\"LOGI-TECH, INC.\",JE300\nMANAGER,AMERICAN EXECUTIVE INC.,Y4000\nBuilder,Mast Construction Inc,B2000\nTRI-TECH INC,,Y4000\nREAL ESTATE,THE HANOVER COMPANY,F4000\nVice President Business Development,Heritage Broadcasting,C2100\nHOUSING DEVELOPMENT,SELF,B2000\nRIVER PARISHES TRAVEL CEN,,T9400\nNEUROLOGIST,SELF,J1200\nINSURANCE AGENT,TROY INSURANCE INC.,F3100\nELECTRICAL CONTRACTOR,SELF/ELECTRICAL CONTRACTOR,B3200\nExecutive,Marketing Resource Group,Y4000\nARTIST/LANDSCAPE DESIGNER,SELF-EMPLOYED,X0000\nMANSTER REAL ESTATE INC,,F4200\nPest Control,McCauley Services,Y4000\nMARKETING MANAGER,\"MAPLE LEAF FARMS, INC\",A1000\nAttorney,\"Cohen Milstein, Hausfel\",K1100\nRICE FOWLER ET AL LLP,,K1000\nSUSMAN GODFREY,,J7400\nVice Chairman,\"McDonald's of Corrales\",G2900\nATTORNY,HARVER & BATTEY,Y4000\nBROKER-LOAN ORIGINATOR,\"CROSS COUNTRY EQUITY, LLC.\",Y4000\nSHEGELL & SHEGELL,,Y4000\nSTATE POLICE SERGENT,,X3200\nJournalist,The Daily Star,Y4000\nLA CITY ATTORNEY OFFICE,,K1000\nWALTER/EDWARDS GROUP LLC/PRINCIPAL,,Y4000\nOFFICE,SELF-EMPLOYED,G0000\n\"Sr Dir, HR\",Fluor Signature Services - Div. of FE,B1000\nSales Tax Auditor,State of California,X3000\nMORRIS & MORRIS PC,,K1000\nCOOK,PHIL,J1200\nCEO,Gund Investment,F2600\nCMO SR VP,EXPRESS SCRIPTS,H3000\nSCHOOL BOARD MEMBER,RETIRED/SCHOOL BOARD MEMBER,X1200\nAttorney,Global Rights,Y4000\nJ A DRAKE WELL SERVICES,,Y4000\nManager,Big Two Tax Service,Y4000\nManager,Avenue Capital,F2700\nDeveloper,City Loft Corporation,Y4000\nSCHROEDER PUBLISHING CO.,,C1100\nPROFESSOR,UNIV. OF NEW MEXICO,H5100\nanalyst,MBIA Insurance Corporation,F3000\nAETNA MEDICAL & HEALTH SE,,F3100\nSUBSTATION TECH,J.E.A.,E1600\nORTHOPAEDIC SURGEON,NH ORTHOPAEDIC SURGERY,H1130\nOwner,Latierno & Son Corporation,Y4000\nPOWER PLANT OPERATOR,RCCMH,E1600\nADMINISTRATOR,SURGERY CENTER OF OCALA/ADMINISTRAT,H1130\n\"MILLER'S RESTAURANTS\",,G2900\nPUBLIC RELATIONS,BROCADE,C5000\nRETIRED AH,RET.,X1200\nPOLYCHEM CORP,,Y4000\nMACKENZIE & COMPANY,,Y4000\nPHARMACIST,BI-WIZE DRUG,Y4000\nELECTRIC,L.A. DEPT. WATER AND POWER,Y4000\nATTORNEY,SLATTERY & DUFFEY LTD.,K1100\nTechnical Consultant,Self-Employed,G5270\nOWNER,PHILLIPS MACHINE SERVICE INC,G5600\nLOBBY PAGER,FOUR SEASONS PLACE,Y4000\nMARC E LELAND & ASSOCIATES,,Y4000\nAttorney,\"Hala J Gores, PC\",Z9500\nC-CUBE MICROSYSTEMS INC,,Y4000\nTECHNOLOGY,IBM,C5100\nVP SALES,PATRIOT COAL CORPORATION,E1210\nSLOCUM DICKSON MEDICAL,,H1130\nWESTMARK REALTY ADVISORS,,F4100\nEmergency Physician,Mount Sinai Medical Center,H1100\nReal Estate Develope,Dickinson Development,F4000\nTRI STATE PLAN ADMIN INC,,Y4000\nMILLER BRANDS-PHOENIX DBA SHAMROCK,,G2850\nPhysician,Mercer Gastroenterology,H1130\nGENERAL MANAGER,SEATLE CITY LIGHTS,Y4000\nCHAIRMAN,REVERSE MORTGAGE SOLUTIONS,F4600\nEXECUTIVE MANAGER,MBH ALTHANI,Y4000\nCEO,BAPTIST MEDICAL CENTER SOUTH,Y4000\nRN,Lovelace Sandia Health System,H2100\nRAI CO,,Y4000\nLAWYER,HURON CONSULTANT,Y4000\nSr Policy Advisor,Olsson Frank Weeda PA,K2000\nTEACHER,VIRGINIA EDUC ASSOC.,L1300\nPRESIDENT CATALOG SA,QUEBECOR WORLD,G5220\nLegislative Coordinator,Tennessee Health Care Association,H2200\nFINANCIAL CONSU,HADDOCK INVESTMENTS,Y4000\nACCOUNTING,ARTHUR NOLL ACCOUNTING,J5100\nDirector of Business Development,\"McLane Advanced Technologies, LLC\",Y4000\nTHOMAS B EVANS JR,,K2000\nOWNER,C. J. MEISELWITZ,Y4000\nPRESIDENT,CM GOVT RELATIONS,K2000\nOWNER,BENNING CONSTRUCTION COMPANY,B1500\nPARTNERSHIP/N/A,,K1000\nVP OF ADM,TRAFFICADE SERVICE INC.,Y4000\nASSOCIATED ENGINEERS,,Y4000\nBUSINESS EXECUT,DISTRICT PHOTO INC.,Y4000\nAttorney,Zuniga & Soto-Miranda PSC,K1000\nPR,SUNSHINE CONSULTANTS,Y4000\nPRESIDENT,\"PRECISION FORM, INC.\",Y4000\nSchool Teacher,WjCC Public School /Merrimac Center,X3500\nGRAND STRAND HEALTH CARE,,Y4000\nDean Of The Business,The University Of Mississippi,H5100\nI,GILBERT-KRUPIN INSURANCE & ESTATE,F3100\nAIRLINE PILOT,JETBLUE AIRWAYS,T1100\nHAIR STYLIST,PREMIER SALONS,Y4000\nCHAIRMAN AND CEO,AMERICAN ELECTRIC POWER/CHAIRMAN AN,E1600\nPres. International,Kraft Foods,A1300\nLITTLEFIELD CORPORATION,,Y4000\nContractor,\"Bowie, Sims, & Prange Inc\",Y4000\nSELF EMPLOYED/RANCHING/OIL & GAS,,A3000\nPresident,Virginia Pilots Assn,Y4000\nPresident,Bayada Nurses,G1200\nDEALER,\"PHIL WINSLOW MOTOR, INC\",T2310\nSpecial Events,Cystic Fibrosis Fdn,J1200\nRHODES CARPET,,M8000\nC.P.A.,Self,J7400\nWRITER,ACTIVIST,J7150\nPIERCE AVIATION,,A1400\nEMPLOYEE BENEFITS,SELF,Z9500\nBANKER,WILLIAM BLAIR COMPANY,F2300\nSECRETARY OF TECH,STATE OF COLORADO,X3000\nACCOUNTA,SILL LAW ESSAD. FIEDLER...,Y4000\nMEDICAL FIELD,IU HEALTH,H1130\nSalesmen,Angels Bakery,Y4000\nSELF,PENDRY APARTMENTS,Z9500\nWINDOW COMPANY,,Y4000\nCONSULTANT,SKIP RHODES & ASSOCIATES,Y4000\nFREEMAN FREEMAN & SMILEY,,K1000\nDIVISION MANAGER,SCIENCE APPLICATIONS INTL CORP,D3000\nATTORNEY,GOLDFARB&LIPMAN,K1000\nFinancial Secretary,Sts Peter & Paul Grk Ortho Church,Z9500\nPHYSICIAN,FEMA,H1100\nContractor,GM Sager Construction,B1500\nAttorney,Nichols Zauzig & Sandler,K1000\nExecutive Vice Presi,DalMac,Y4000\nDevelopment,Aids Action Committee,H3500\nChief Executive Officer,Activision,C5120\nOil Operator,Gary-Williams Energy,E1120\n\"SAINT MARY'S HALL\",,Y4000\nATTORNEY,,H3200\nMarlborough School,,H5100\nEngineer,\"Michael J Walkley, PA\",Y4000\nVice-Pres,Meyer& AssocIns,Y4000\nSELF-EMPLOYED,,M7000\nArtist,Self employed,H5100\nATTORNEY,SEDGWICK LLP,K1000\nbusiness executive,business executive,C2600\nSocial Worker,State Of Arizona,J1200\nPMI PARKING,,F4500\nPHYSICIAN,BRYAN HEART INSTITUTE,Y4000\nWELBORN ELECTRIC INC,,Y4000\nBAVARIAN INN INC,,T9100\nEXEC.,GRAND SAKWA PROPERTIES,J1100\nTimber Co. Owner,Franklin Lumber,Y4000\nHealth Care,Sterling Health Care,Y4000\nOWNER,GALLINS VENDING COMPANY,Y4000\nPARTNER,LONG ALDRIDGE,K1000\nACTOR,NULLABOR LLC,Y4000\nLobbyist,\"Vantage Point Consulting, LLC\",K2000\nAccountant,702 Communications,Y4000\nWachtelle & Masyr,,Y4000\nCEO,APARTMENTS OF AMERICA,Y4000\nEDS/CHIEF EXECUTIVE OFFICER/CHIEF O,,C5130\nCEO,US Uranium Corp,Y4000\nPhysician,Council for Relationships,Y4000\nAM,UNUM LIFE INS CO OF,F3100\nTechnical Assistant,Amwins Insurance Brokerage of Californ,F3100\nATTORNEY,BROWN RUDNICK LLP,J7300\nPORTFOLIO MANAGE,OSPRAIE MANAGEMENT,F2700\nHAYES COFFEY & BERRY P,,K1000\n\"SOLOMON, FORNARI, WEISS ET AL\",,Y4000\nMINI-SYSTEMS INC./ENGINEER/MANAGER,,Y4000\nCUSTOM WOODWORKING,,Y4000\nPUBLISHER/FOUNDER,M.D. PUBLISH,C1100\nHUMAN RESOURCES EXEC,DAVIS CONCRETE CONSTRUCTION I,B1500\nAttorney at Law,\"Vena, Riley, Deptula LLP\",Y4000\nAL LEAGUE OF MUNIC,,X3000\nINVESTOR,\"FELL & COMPANY, INC.\",F7000\nSR. MGR. BUDGET,TRI STATE G & T,Y4000\nHIRSCH GLOVER & ROBINSON,,K1000\nExecutive,VIDYAH,Y4000\nComputer Programmer,Keane,Y4000\nMETEROLOGIST,WINDSOR IVCATION INC.,Y4000\nTROOPER,NEW YORK STATE POLICE,X3200\nLEM INC/WHOLESALE RETAIL/ADMINISTRA,,J1100\nOwner,Snb Inc.,Y4000\nRESEARCH MANAGER,PEW CHARITABLE TRUSTS,X4100\nLONG PAYNE INC,,K1000\nTechnical Information Specialist,Nasa,X3000\nCONSULTANT,\"BEAL SOLUTIONS, INC.\",Y4000\nOwner,\"Mestizo Restaurant Mestizo, Inc\",G2900\nSAP SPECIALIST,\"VALERO SERVICES, INC.\",E1160\nMD PEDIATRIC ASSOC,,H1130\nATTORNEY,LEHRMAN AND ANDERSON LAW FIRM,K1000\nCOO,HEDGE FUND,F2700\nREALTOR,DIAMOND REALTY,F4200\nG.M.,I.S.M.,Y4000\nSAVANNAH PSYCHOLOGIST,,H1110\nSoftware Engineer,Vigyan,Y4000\nVICE PRESIDENT,T-MOBILE,C4300\nMDV DISTRIBUTORS,,Y4000\nSCIENTIST,U OF VA/SCIENTIST,H5100\nEDUCATION,CAMPBELL-KIBLER ASSOCIATES,Z9500\nPresident - IRNS,Fidelity National Information Svcs,F4300\nCBS OUTDOOR/CHAIRMAN / CEO,,G5230\nENGINEER,PIXAR,C2400\nNEW BRUNSWICK PLATING,,M5200\nExecutive Producer,CBS Paramount,C2300\nCORPOREX,,F4500\nCATLYN PARTNERS LTD,,Y4000\n\"CAIN'S COFFEE COMPANY\",,G2600\nBROKER,C.I. CAPITAL PARTNERS,F2600\nMANHATTAN BOROUGH PRESIDENT,,Y4000\nMANAGING PARTNER,HSP DIRECT,G5220\nPHARMACIST,\"PHARMASOURCE -INDIANAPOLIS, IN\",Y4000\nEngineer,Dura Automotive,J1200\nYORK FIRE DEPT./FIRE FIGHTER/EMS,,L1400\nPRESIDENT & CEO,HUDSON GROUP,Y4000\nAttorney,\"US Attorneys Office, Northern Distri\",K1000\nROSS RESEARCH,,Y4000\nOKLAHOMA CITY/FIRE FIGHTER/EMS,,L1400\nCEO,Pyramid Construction,B1500\nMAGELLA MIDSTREAM PARTNERS LP,,Y4000\nMARSHALL DENNEHEY WARNER ET AL,,K1000\nChairman/Chief Executive Officer,NBRS Financial,F1100\nCEO,SHANGRI-LA INDUSTRIES,C2400\nCFO,VANGUARD HEALTH SYSTEMS INC.,H2100\nPROFESSOR,SDSU,Y4000\nEXECUTIVE VICE PR,KOJAIAN COMPANIES,F4100\nDirector of Strategic Development and,SEIU Healthcare Minnesota,LH100\nManager,\"Masco Tech, Inc.\",Y4000\nPhysician,St John health system,H2100\nPART,CORNERSTONE GOVERNMENT AFFAIRS,K2000\nExecutive,\"Jovan, Inc\",Y4000\nLawyer,Boxer & Gerson,K1000\nEXPORT SALES MANAGER,SEATRADE INTERNATIONAL,G2350\nLIBRARIAN,SADDLEBACK COLLEGE,H5100\nOwner,Elliott Building Group,Y4000\nJAEGOR SIGN,,Y4000\nPRESIDENT & CEO,MCKISSACK & MCKISSACK/PRESIDENT & C,B4200\nCEO,CAUDILL SEED,Y4000\nadministrator,PeaceHealth St  Joseph Medical Center,H2100\nPsychiatrist,Marcia Adelman,Y4000\nPRESIDENT OF PERFORMANCE PLASTICS,THE DOW CHEMICAL COMPANY/PRESIDENT,M1000\nCONTROL SOLUTIONS,,Y4000\nATTORNEY,UNITED STATES DEPARTMENT OF JUSTICE,Z9500\nMANNING ARCHITECTS,,B4200\nANESTHESIA ASSOCIATES PA,,H1130\nManager,Trammell Crow Residential,F4100\nCEO,PHAROS LLC,J1200\n\"teacher''s aid\",San Mateo/Foster City School District,X3500\nMGR,DUKE ENERGY,E1620\nPresident,Preventive Medicine Research I,H1100\nCAPITAL CITIES ABC,,J7400\nElected Official,Manhattan School District,X3500\nCEO,PUSH,Y4000\nCPA,Bkd Llp,F5100\nSYKES INC,,Y4000\nPHOTOGRAPHER,\"HHS, CDC\",Y4000\nCOMPUTER ASSOCIATES INTERNATIONAL,,C5120\nJOHNSON ANSELMAN ET AL,,Y4000\nSurgeon,Ret,X1200\nInvestment Planning,Self Employed,F2100\nTHE KRAFT FOUNDATION,,X4100\nHigh School Math Teacher,Isidore Newman School,H5100\nCOMPANY PRES,TOM NEHL TRUCK COMPANY,Y4000\nORTHADONTIST,SELF/ORTHADONTIST,H1400\nAdministrator,Technology Refresh,C5120\nOWNER,MARINE CONSTRUCTION COMPANY,B1500\n\"VP, Clinical Affairs\",Percsys Inc,Y4000\nAUTO SAL,VENICE NISSAN DODGE DAEWOO,F2100\nGrantmaker/Trustee,self,Z9500\nExecutive,Chicago Mercantile Exchange,F2200\nWork/Family Columnis,Wash Post,Y4000\nAttorney,\"Litvin, Blumberg etal\",K1000\nMORTON COMMUNITY BANK,,F1100\nDIRECTOR,CASTLE & COOKE,F4500\nTEACHER,BAINBRIDGE ISLAND SD,X3500\nEXECUTIVE,CAPITAL RESULTS LLC,Y4000\nJOURNALIST,MCGRAW-NEIL,Y4000\nCEO,Barnett Auto Group,Y4000\nLawyer/Publisher/Legislator,Ken Guin Attorney at Law PC,K1000\nCA STATE UNIV SACRAMENTO,,H5100\nBusiness,The Winhall Companies,F4000\nINSURANCE BROKER,ARLINGTON/ROE & CO.,Y4000\nVICE PRESIDEN,ENTERPRISE RENT A CAR,T2500\nE HORN CONSTRUCTION INC,,B1000\nCFO,\"BFO, INC.\",J7400\nPRE,ALAN AND RUBY RIEDEL FOUNDATION,Y4000\nJ RAY CONSTRUCTION CO,,J1200\nOWNER,ALARMINGLY AFFORDABLE. INC.,Y4000\nPresident,\"Pryor Creek Fleet Services, Inc\",B0500\nInvestor,\"Goldman, Sachs & Co\",J1200\nDENTIST,\"RAYMOND KATZ, DDS\",H1400\nSCIENTIST,RET.,X1200\nENVIRONMENTAL ACTIVIST,NONE,Z9500\nN/A NONE/PHILANTHROPIST,,B5400\nInformation Requeste,University of Colorado,H5100\nRETIRED ECONOMI,\"INT'L MONETARY FUND\",J7400\nOwner,Paradigm Associates,B2000\nKING & MORGENSTERN ATTORNEYS,,K1000\nNursing Professor,Kingsborough CC - CUNY,Y4000\nCONSULTANT,CARPENTER SNODGRASS,Y4000\nProfessor,University of California - Irvine,Z9500\nRICH SERVICES,,Y4000\n\"SVP, Global Risk Man\",\"Franklin Resources, Inc.\",F2100\nATTORNEY,DWLS,Y4000\nDirector of the Boar,Auto-Owners Insurance Company,F3100\nBROKER,REALTY PLUS,F4200\nCONLEY P SMITH OPERATING,,E1120\nRED PALACE RESTAUR,,G2900\nSUN CAL DATES,,A1400\nSoftware Engineer,Electrodynamics,Y4000\n\"C'S GLASS\",,Y4000\nOwner,WHMI,Y4000\nSOCIAL WO,LIGHTHOUSE YOUTH SERVICES,Y4000\nVice president,Hornady Manufacturing Co,J7150\nInvestment Portfolio Manager,FH International Asset Management LLC,Y4000\nTHREE POINT STRATEGIES/STRATEGIST/S,,Y4000\nAD SALES EXECUTIVE,COMCAST,Z9500\nPLYMOUTH PARTNERS/REP./COMMERCIAL E,,J7400\nSALES,JOHN MIDDLETON INC.,A1300\nPHYSICIAN,AHF,Y4000\nVAN NESS FELDMAN P.C.,,K1000\nInvestment Managemen,\"Ancient Art, L.P.\",Y4000\nCHIEF EXECUTIVE OFFICER,NASSAU-SUFFOLK HOSPITAL CNCL.,H2100\nATTORNEY,ZELLER HOFF & ZELLER INC.,Y4000\nCHANDLER MANAGMENT CORP,,J1100\nSenior Analyst and Managing Director,Deutsche Bank,F1100\nPrincipal,NGP Energy Technology Partners,E1500\nSCIENTIST,GRIFOLS,H4500\nDENTIST,MICHAEL BANKS DENTISTRY,H1400\n\"Senior Manager, Memb\",NBTA,T0000\nPastor,Grace Covenant Presbyterian Church,X7000\nREAL ESTATE,Information Requested,F4100\nDAVIS COMM INC,,Y4000\nLAWYER,MC KEE NELSON ERNST & YOUNG,K1000\nDAIRY FARMER,HICKORY HILL FARMS INC.,A1000\nORGANIZER,ESDI,Y4000\nPRESIDENT & CEO,AM GENERAL/PRESIDENT & CEO,D8000\nDir of Policy,Mental Health Assoc,J7400\nREAL-ESTATE AGENT,TRI COLDWELL BANKER,F4000\nbrvela,gdlp02l,Y4000\nPIZZA HUT INC,,G2600\nEXECU,LAKEWOOD ESTATES MFD. HOUSING,B2400\nBUSINESS OWNER,FEI INC.,Y4000\nIntellecutal Property Strategist,Hewlett Packard,C5100\nOWNER,THOMSEN AUTO SUPPLY INC,T2200\nPRESIDEN,NATIONAL CHURCH RESIDENCES,Y4000\nPsychologist,Veterans Administration,H2100\nGENEI INC,,Y4000\nRETIRED SINCE 1986,NONE,X1200\nFinance,Capital Cannon Advisors,F2100\nPhysician,Rardin Health,H1100\nADVERTISING,MCCANN ERICKSON,Z9500\nATTORNEY,MILETICH COHEN,Y4000\nNurse Practitioner,Ravizee & Harris PC,Y4000\nRETIRED,US COURTS SOUTHERN DISTRICT OF TEXAS,X1200\nOwner,L.A. Thomas Trucking,T3100\nDist Director,Congressman Tony BaL,X3000\nVICE PRESIDENT CLOUD COMPUTING,HP,C5100\nNEIL FISHER REALTY,SELF-EMPLOYED,F4200\nChief Operating Offi,Hartford Hospital,H2100\nNURSE,MAYO CLINIC INTENSIVE CARE,H1100\nMELHADO FLYNNT ASSOCIATES,,F2100\nVICE PRES,CREECH BROTHER TRUCKLINES,Y4000\n\"DIRECTOR, CH\",\"DRUMMOND COMPANY, INC.\",E1210\nEXECUTIVE,CENTRAL STATE IDEALEASE LLC,Y4000\nOWNER,HUTCHENS PLUMBING,B3400\nCONSULTANT,\"PAUL M. LISNEK, INC.\",Y4000\nInvestor,Self,G2820\nCorporate Vice President,ES3,C5120\nVICE PRESIDENT,\"DIAMOND EQUIPMENT, INC.\",Y4000\nPRODUCE BROKER,\"FARMER'S FRIEND\",Y4000\nMICHIGAN SAVING LEAGUE,,F1200\nPAKMEX INTERNATIONAL INC,,G2900\nINT,ERIKA BRUNSON DESIGN ASSOCIATES,Y4000\nPresident,Paxson Comm.,C2100\nATTORNEY,ARNOLD AND PORTER LLC,K1000\nPRESIDENT,TUMBLEWEED SPECIALTIES,G1200\nLibrarian,Calif State Univ North,H5100\nRegistered Nurse,Sandrea Remedies Day Spa,Y4000\nVP - DESIGN SER,\"THE GEO GROUP, INC.\",G7000\nGeneral Manager,\"Napa Ambulance Services, Inc.\",Y4000\nBENCHMARK,,C5100\nInterpreter,Self,G5200\nConsultant,Reiter Begun Associates,Y4000\nOwner,\"Pavement Services, Inc\",Y4000\nCAMELOT HOMES INC,,B2000\nMANAGING PARTN,TFM INVESTMENT GROUP,F2200\nPHYSICIAN,LEXINGTON CLINIC,Y4000\nAttorney,Self-employed/Law Office of Stephen Be,K1000\nTEACHER/THERAPIST,SELF-EMPLOYED,H5100\nProduct Development,Celtic Pharma,F2600\nATTORNEY,BAMBERGER FOREMAN OSWALD HAHN,Y4000\nTRANSPORTATION DRIVER,S.T.E.P. INC.,G5250\nCounty Judge,Bexar County,X3000\nOWNER,TOMASSO TRATTORIA INC.,Y4000\nTHE SHELTON GROUP,,Y4000\nCHAIRMAN,GREAT WESTERN,J9000\nWORLDWYN ACCEPTANCE,,Y4000\nTHERAPIST/WRITER,CENTRAL COAST TREATMENT CENTER,Y4000\nPLASTIC,PLASTIC SURGERY ASSOCIATES,H2100\n\"VP, Division Manager\",Atkins N America Holdings Corporation,B4000\nVOLUSIA COUNTY STATE ATTORNEY,,X3200\nATTORNEY,\"FROST, BROWN & TODD\",K1000\nChairman & C.E.O.,\"H.B. MELLOTT ESTATE, INC.\",B5100\nPRESIDENT & CEO,DAVIS TRUST COMPANY,Y4000\nATTORNEY,BWST-LAW PLLC,Y4000\nATTORNEY,PEMBROKE ASSOC.,Y4000\nREAL ESTATE DEVELOPER,CAPPELLI ENTERPRISES INC.,F4100\nPARTNER,\"TARPLINS, DOWNS AND YOUNG, LLC/PART\",K2000\nAdministrative Assis,\"LRI, Inc.\",D2000\nMAINTENANCE,SWS RECYCLING BUSINESS,M2400\nMARYWOOD/KEYSTONE DISTANCE/TEACHER,,Y4000\nEXECUTIVE,COLLUM LUMBER,A5000\nDIRECTOR OF R&D,CONAGRA FOODS INC.,G2100\nSPORTS AGENT,SELF-EMPLOYED,K1000\nBERRY & MILLER CONSTR,,B1500\nSoftware Engineer,\"Novatech, LLC\",Y4000\nAsset Manager,Cargill Investment Group Ltd,F2100\nPresident,Performance Minerals Corp,E1200\nMGM/MIRAGE RESORTS/EXECUTIVE VICE P,,G6500\nGOLF PRO,GOLF CLUB OF TENNESSEE,G6100\nCommunity Worker,San Mateo County,Z9500\nPartner,\"The Law of Stephen L. Smith, PLLC\",Y4000\nREALTOR,\"HOPPE, INC\",F4000\nOwner,Northland Grocery,G2400\nEXECUTIVE,DAVID-LYNCH INC.,Y4000\n\"JONES, GRANGER, TRAMUTO, CHRISTY, &\",,Y4000\nATTORNEY,\"DANA HANKINS, ATTY.\",K1000\nIT,EBS360,Z9500\nRESEARCH & LAW,GOLDWATER INSTITUTE,J1100\nSENATOR,NEW YORK STATE,X3000\nROYSTON CAYSLER DODGE/JEEP/OWNER,,T2300\nPRESI,ROSENZWEIG FINANCIAL SERVICES,F0000\nPHYSICIST,UNIVERSITY OF CA,H5100\nSTUDENT,UNITED DAIRY FARMERS,G2400\nAWMS,,Y4000\nCOMMUNITY VOLUNTEER,N/A,F4500\nITZKAN & MARCHIEL,,F4000\nFOUNDER,HAFNER VINEYARD,G2820\nRABBI,AWAKENED HEART PROJ/RABBI,Y4000\nCHAIRMAN,DOC,Y4000\nPresident,Essex Capital,F0000\nCONSULTANT,GOVERNMENT INSIGHT GROUP/CONSULTANT,J1200\nPodiatric Physician,Podiatry Associates of SE TX,H1130\nDALE WATERS,WATERS CRAFTSMAN,Y4000\nLIFE INSURANCE CO OF THE SOUTHWEST,,F3300\nHorse Trader,Self-Employed,A3500\nPresident,\"RMS Foods, Inc.\",G2000\nFARMER,FRED BEER FARMS,G1200\n\"Judge, Superior Court\",County of Los Angeles CA,Y4000\nHUMAN RESOURCES MANAGER,CENTRAL ELECTRIC POWER CO-OP,E1610\nMANAGER,MCKINSEY &  CO.,G5270\nSUDLER & CO,,F4100\nCHAIRMAN &CEO,METROPOLITAN THEATRES CORPORATION,C2700\nMANAGER,\"DONG'S ENTERPRISES INC/MANAGER\",Y4000\nAPPRAISER,DUFF R. PHELPS LLC,F5100\nattorney,\"ISG Washington, DC\",K2000\nManager,\"Showalter Flying Services, Inc\",Y4000\nPRESIDENT,GRO CENTRIC,Y4000\nPORTFOLIO MANAGER,SHENKMAN CAPITAL,F0000\nK & R COAL CO INC,,E1210\nPRESIDENT,MULTI PARTS SUPPLY INC.,T2200\nMarketing,\"Frank's Casing\",Y4000\nBUSINESS OWNER,SELF,E4200\nBRYANT SUPPLY CO INC,,E1700\nATTORNE,VENZIE PHILLIPS & WARSHAWER,K1000\nHOUSEWIFE,NOT EMPLOYED,H5100\nREGIONAL MANAGER,BESSER,Y4000\nPARTNER,\"LOCKE LORD STRATEGIES, LP\",K2000\nReal Estate Broker,Donald E Fender Inc,F4200\nSONOGRAPHER,INDEPENDENCE PARK IMAGING CENTER,Z9500\n\"PRYOR, MCCLENDON, COUNTS & CO INC\",,F2100\nBUSINESS OWNER,DEAN TRANSPORTATION,T4100\nPLANT ENGINEER,ASH GROVE CEMENT CO.,B5100\nDPS COMPANY,,Y4000\nUNION LOCAL 300,,L0000\nENGINEER/GOVERNMENTAL AFFAIRS CONSULTA,SELF-EMPLOYED,Y4000\nCEO,Midwest Medical Holdings,H0000\nSales Manager,LRr Nelson Corp,J1200\nPresident,Nebraska Cooperative Council,A6000\nSERVICE ENGINEER,\"TRIDENT COMPUTER RESOURCES, INC.\",Y4000\nHistorical Interpreter,Self-employed,Y4000\nInsurance Agent,Pathways,F3300\nCONSULTANT,THE ORCA INSTITUTE,Y4000\nPROFESSOR,UW,J1200\nDENTIST,CIRCLE PINES DENTAL,Y4000\nPROLON A CLOYS CO,,Y4000\nPresident,\"Clean Earth Technologies, Inc\",G5200\nOWNER,LEE MANUFACTURING,J6200\nJAB,,Y4000\nSocial Worker,Assoc of Community Employment,H6000\nOWNER PR,SELF-SAGE EDN. ENTERPRISES,Y4000\nCHAIRMAN/CEO,GREGORY PEST SOLUTIONS,Y4000\nCEO,Winthrop Realty Trust,J5100\nADVERTI,ERBACH COMMUNICATIONS GROUP,Y4000\nINSTITUTE OF CHILDRENS LITERATURE,,Y4000\nPRODUCER,TV LAND,Y4000\nDERMATOL,\"DELAWARE DERMATOLOGY, P.A.\",H1130\nSmall Business Owner,Data Bridge Marketing Systems,Y4000\nARCH,HUNT ENGINEERS ARCHITECTS SURV,B4200\nPRECISION CAPITAL,PRECISION CAPITAL,F2100\nCEO,SMILEY MEDIA,C5140\nREAL ESTATE,\"FICKLING & COMPANY, INC.\",F4000\nATTORNEY,\"JOSEPH, LICHTENSTEIN & LEVINSON\",Z9500\nPresident,PHARMACIACORP,H4300\nGEOLOGIST,HOUSTON ENERGY LP,E1000\nCEO,SMITHERS MERCHANT BUILDERS LP,B1000\nExecutive,Evergreen Aviation,T1600\nDirector of Investor Relations,Concordia Advisors,F2700\nPLANET RECYCLING INC,,M2400\nPRES,\"AMERICAN TARGET ADVERTISING, I\",G5210\nJ WALKER RECREATIONAL VEHICLES,,T8000\nPHARMACIST,OMNICARE PHARMACIES,Y4000\nKEMPER FARMS,,Y4000\nMFGR. REP,TEGAN MARKETING INC.,Y4000\nAstronomer,University of Texas at Austin,H5100\nROBERT FORBIS INC DBA PR,,Y4000\nOwner,Auto Wash Express,Y4000\nCONGRESSIONAL LIAISON OFFICER,NATIONAL ENDOWMENT FOR THE ARTS,Y4000\nVP GOVERNMENT RELATIONS,BCBS,F3200\nKOTTER ASSOCIATES,,Y4000\nOFFICE OF PUBLIC E,DEPT. OF DEFENSE,X5000\nSelf-Employed,\"Revadventures, LLC\",Y4000\nsmall business owner,Culver Pictures Inc,Z9500\nCFO,CARESOUTH,Y4000\nLOBB,TONGOUR SIMPSON HOLSCLAW LYTLE,K2000\nGENERAL,HARDAWAY CONSTRUCTION CORP.,B1000\nEXECUTIVE,\"SAYBREX INTERNATIONAL, INC.\",Y4000\nMAYFAIR SALES,,G2200\nEngineer,Analog Devices,Y4000\nBOOKSELLER,ARUNDEL BOOKS,Y4000\nREAL ESTATE MANGER,JORDAN REALTY,F4000\nContractor - administrator,CSC,C5130\nBUSINESS,AS PETSCHE PROPERTY CO.,F4000\nG LEBLANC CORP,,J7300\nATTORNEY,\"QUATRINI AND RAFFERTY, P.C.\",Y4000\nCORNERSTONE CAFE,,G2900\nASSOCIATE,LONG NYQUIST & ASSOC.,Y4000\nATTORNEY,\"LAW OFFICES OF ADAM SHORE, PLLC\",K1000\nSales Manager,\"Enidine, Inc\",J1200\nCOIN DEALER,HERITAGE AUCTIONS GALLERIES,G5000\nCHAIRMAN & C. E. O.,MONADNOCK PAPER MILLS I.N.C.,A5200\nContractor,Manafort Brothers Inc,B3600\nVP/COO,\"Advantage Health Systems, Inc\",H2200\nATTORNEY,\"NEW VISTA GROUP, LLC\",K2000\nAVP - PURCHASING & SUPPLY M,GENTIVA,H3100\nJOHNSON FAIN PARTNERS,,B4200\nPRESIDENT,ARMOR WORKS,G5290\nEXECUTIVE V.P.,THE DWYER GROUP,Y4000\nowner,Elewski and Assoc.,Y4000\nHealth Admin,Federal Government,X3000\nPRESIDENT,MICH. HOSPITAL ASSN.,H2100\nV,DE LAGE LANDEN FINANCIAL SERVICES,G5300\nCeo,Gallimore Instr Inc,Y4000\nOPSWARE,,C5140\nConsultant,THS Inovation Corp.,Y4000\nPRESIDENT AND CEO,DCS SERVICES,Y4000\nNON PROFIT MANAGEMENT,CASEY FAMILY PROGRAMS,H6000\nSENIOR DIRECTOR GOVERNMENT RELATIONS,HUAWEI TECHNOLOGIES (USA),Y4000\nZERN RENTAL INC,,G5300\nPresident,CNG Financial Corp.,F1400\nDESIGNER,ATOMIC PROPS,Y4000\nFOREHL LAST LANDAU MILLER & KATZ L,,Y4000\nOWNER,\"ARMOLOY OF OHIO, INC.\",Y4000\nPHYSICIAN,HAMPTON ROADS NEUROLOGY,Y4000\nDentist,Yarmosky DDS PC,H1400\nINFO REQUESTED,ENERCON SERVICES INCORPORATED,Y4000\nConsultant,\"Charter Oak Financial Consultants, LLC\",F0000\nTHIRD MILL VC,,F2500\nCEO,HERMAN GRANT CO. INC.,Y4000\nSTAR JEWELERS,,G4600\nInformation Requested,WRR Radio,C2100\nGOLDBERG KATZMAN & SHIPMAN P.C.,,K1000\nNorthwestern University,Law Professor,H5100\nPresident,K Colton LLC,B2000\nPresident,Pneumatic Control Inc,Y4000\nConsultant,\"Baker, Donelson, etal\",K2000\nEducator,Duke Ellington School of the Arts,Y4000\nEXECUTIVE DIRECTOR,COMMONWEALTH OF KENTUCKY,X3000\nFINANCIAL OFFICER,\"KEITHLY-WILLIAMS SEEDS, INC./FINANC\",J1100\nDirector Sales Consulting,HCL,J1100\nFIRST NATIONAL OF DWIGHT,,F1100\nNurserywoman,Pecks Green Thumb Nursery,A8000\nTRASH-AWAY INC,,Y4000\nPOST PRODUCT,UNIVERSAL STUDIOS INC.,C2400\nRN,CARNEY HOSPITAL,H2100\nADLER ROSEN AND PETERS,,Y4000\nACE TEX,,Y4000\nExecutive,West Teleservices,C5130\nPROPERTIES OF THE VILLAGES/SALES/RE,,F4000\nPresident,El Dorado Trading Corp,Y4000\nINSTRUCTOR,DC PUBLIC SCHOOLS,X3500\nStock Broker,Bear Stearnes,F2300\n\"O'QUINN, O'KERINSKY, ET AL\",,K1000\nLESLIE RUDD INVESTMENT CO,,F0000\nGROUP HOME DIRECTOR,UNICORN YOUTH SERVICES/GROUP HOME D,Y4000\nDeveloper,Grand Oaks LLC,Y4000\nRAGGHIANTI FREITAS MONTOBBIO WALLAC,,K1000\nSEAL GUARD,,Z9000\nPRESIDE,ANDERSON CAPITAL MANAGEMENT,F0000\nPHYSICIAN,PRMC,Y4000\nSchool Educator,\"USD 418, McPherson, KS\",Y4000\nMARKETING/ENGINEER,INTEL,C5110\nATTORNEY,\"ROBT S COFFEY, INC\",Y4000\nREAL ESTATE BROK,TERRY SPELL REALTY,F4200\nKNAPPTON CORPORATION,,T6200\nTHE HARDESTY CO INC,,Y4000\nCO-OWNER,ENSTROM CANDIES,G2200\nPHYSICAIN,\"RADIOLOGY, INC.\",H1130\nChief Marketing Offi,\"Harrah's Entertainment, Inc.\",G6500\nProgram Manager,Lockhead,D2000\nCardiologist,Los Alamitos Cardiovascular,H1130\nPHYSICIAN,UNIVERSITY MASSACHUSETTS,H5100\n\"Counsel, Assistant G\",OGE Energy Corp,E1620\nVENTURE PARTNER,RUSTIC CANYON PARTNERS,F2500\nHANCOCK PUBLISHING INC,,C1100\nW WA BEVERAGE OR ALASKA DISTRIBUTOR,,G2850\nDIRECTOR,UBS INVESTMENT BANK,F2100\nWILEY REINN & FIELD,,K1000\nVENTURE CAPITAL,MEAKEM BECKER,F2500\nExecutive,World Savings And Loan Assoc,J1200\nPhysician,Carilson Health System,Y4000\nEVERGREEN EYE CENTER,,Y4000\nInvestment advisor,Merrill Lynch & Co.,F2100\nINVESTOR,LINDEU LLC,J5100\nDeputy Director,DMJM Program Management,B4000\nConsultant,Newton Advisory Resources,Y4000\nCEO,\"Liberty Managers, LLC\",Y4000\nCONTRACTO,MORETRENCH AMERICAN CORP.,B3000\nMANAGER,NED R HEALY & COMPANY,J1200\nOBION,,Y4000\nTeacher,TVUSD,Y4000\nExecutive Assistant,NBC News,C2300\naccountant,\"Credit Suise, First Boston\",F2100\nMANAGING DIRECTOR,SIGNAL EQUITY,F2100\nANDREW MORRISS,UNIV. OF ALABAMA,H5100\nNATIONAL GALLERY,,G4600\nBROWN INVESTMENT ADVISORY,,Y4000\nPresident,Emerald Properties LLC,F4000\nBANKER,WAUKESHA STATE PARK,F1000\nOWNER,FOCUS CONSTRUCTION COMPANY,B1500\nCOMPLIANCE OFFICER,INTERNATIONAL CAPITAL,Y4000\nVP,\"Al Neyer, Inc.\",F4000\nASSISTANT SECRETARY,US DEPARTMENT OF STATE,X3000\nMD PHD,,H1100\nCEO,Inscap Management LLC,F2000\nOWNE,DUNBAR AND ZIMMERLI OUTFITTERS,Y4000\nEducator,World Ed Inc.,Y4000\nTHACHER PROFFIT & WOOD,,F4600\nVICE PRESIDENT,US TELECOM,J1200\nCEO,CITIZENS GUARANTY BANK,Y4000\nCRAVEN THOMPSON & ASSOCIATES,,B4000\nCOLDWELL BANKER MCCORMICK,,F4200\nPRESIDENT,WALTON CONSTRUCTION,B1500\nBENETECH CORPORATION,,Y4000\nMETROPOLITAN LABOR COUNCIL,,Y4000\nMarketing/Sales,Self employed,J1200\nPRESIDENT,COMSACO INC.,Y4000\nJEWELER,SUMPTERS JEWELRY,G4600\nOWNER,GREENWOOD SAW COMPANY,Y4000\nREAL ESTATE DEVELOPM,\"PARC HOMES, LLC\",F4000\nOwner,Mountain Funding LLC,Y4000\nPRESID,TEXAS LAND COORDINATORS INC.,Y4000\nAUTO & TRUCK SALES,RETIRED - SELF EMPLOYED,J6200\nCLG,,Y4000\nDMD,Information Requested,H1400\nCeo,Tandem Health Care,H2200\nMULLINS & ASSOCIATES,,F4200\nLegal Assistant,Law Offices Of Edwin Chau,K1000\nCALIFORNIA CASUALTY MANAGEMENT COMP,,F3100\nSurgeon,Weill Medical College of Cornell,H5150\nBRENTWOOD NATIONAL BANK,,F1100\nMERRILL LYNCH CAPITAL MARKETS,,F2100\nBusinessman,Indore oil Company,Y4000\nSMALL BUSINESS OWNER-IGNITE USA,IGNITE-USA,Y4000\nPIZZUTI,,B1000\nBusiness Manager,United Parcel Service,T7100\nWEST GRO FARMS INC,,A1000\nEXECUTIVE OWNER,A-1 PLANK INC.,Y4000\nInformation Requested,,G4500\nEXECUTIVE,UBS FINANCIAL SERVICES,F2100\n\"Vice Chancellor, Community Relations\",Keiser University,H5300\nPROFESSIONAL ENGINEER,LOADTEST INC.,Y4000\nBUSINESS OWNER,\"MINUTEMAN TRUCKS, INC\",Y4000\nCONSULTANT,HARRINGTON-HUGHES & ASSOCIATES INC.,Y4000\nLead Analyst/Programmer,Kaiser Permanente,H3700\nKATHEN MUCHIN & DAVIS,,K1000\nREAL ESTATE DEVELOPER,MUSS DEVELOPMENT/REAL ESTATE DEVELO,J5100\nPRESIDENT,GLOBAL AIRCRAFT SOLUTIONS,T1600\nco-owner U.S.A. Form,\"U.S.A. Form, Inc.\",Y4000\nKAMBUR & MEISSNER,,K1000\nATTORNEY,NICOLETTE & PERKINS,K1000\nSELF-EMPLOYED/OIL/RANCHING,,E1100\nOCCUPATIONAL HEALTH,WHOLE HEALTH,Y4000\nOWNER,\"JALIL'S ORIENTAL RUGS\",G4400\nMEDICAL WRITER,BIOGEN IDEC,H4500\nMarketing Specialist,Studio XL,Y4000\nASSOCIATE PROFESSOR,MIAMI-DADE COLLEGE,H5100\nM H CONCEPTS INTERNATIONAL LTD,,Y4000\nARCHITECT,FLEISCHMAN GARCIA,B4200\nAcademia,Ohio Technical College,H5200\nScience Teacher,not Working now,Y1000\nDOLE,,A4000\nSales,Victor Graphics,C1300\nPSYCHOLOGICAL COUNSELOR,SELF,G0000\nI-80 INVESTMENTS COMPANY,,T3100\nOWNER,CHAIN SAW CITY,Y4000\nSales,Atlantel,Y4000\nDIRECTOR OF,UCB HUMAN RIGHTS CENTER,Y4000\n\"Songwriter, Music Publisher, Producer\",Self-employed,C1100\nCEO,\"SANCHEZ-O'BRIEN OIL & GAS\",E1100\nDESIGNER,\"DESIGN 45, LLC\",Y4000\nTech,Honda Village,J1200\nVICE CHAIRMAN,NASDAQ,F2400\nChairman,Kirtland Capital,F2100\nEXECUTIVE,AMERICAN QUALITY SCHOOLS,Y4000\nSOFTWARE ENGINEERING,,C5120\nManager,Sandia National Labs,D4000\ntelecommunications,xm radio,C2100\nCHAIRMAN,THE CATO CORPORATION,G4100\nREAL ESTATE-DEVELOPER,SELF-EMPLOYED,F4100\nWHITE HOUSE FELLOW,US GOVERNMENT,X3000\nPRESIDE,\"EMERSON INTERNATIONAL, INC.\",F4000\nPRESID,\"THE LOUIS BERGER GROUP, INC.\",B4000\n\"FREEPORT-MCMORAN COPPER & GOLD, INC\",,E1220\nEXECUTIVE,SHAPELL INDUSTRIES,B2000\nOpthalmologist,Self Employed,H1120\nCFO,LIME ROCK MANAGEMENT,J1200\nPHYSICIAN,CHAMPLAIN VALLEY PHYSICIANS HOSPITAL,Z9500\nUNITED MANAGEMENT CO,SPRINT,C4200\nconsultant,D3 Technologies,Y4000\nOWNER,MOTINE ENERGY,Y4000\nSCIENTIFIC EDITOR,SELF-EMPLOYED,G0000\nATTORNEY,PERKINS OLSON/ATTORNEY,Y4000\nPAINTING IH INC,,B3000\nCHAIRMAN,JOSEPH ABBOUD WORLDWIDE,M3100\nMKTG Pricing Ldr,GE Industrial Systems,M2300\nMORTENSEN MATZELLE,,Y4000\nGENERAL CONTRACTOR,JOHN G. EARLY INC.,Z9500\nCPA,\"Appelrouth, Farah & Co.\",J5100\nPresident,Burlington Camping,Y4000\nBusiness Development,Radiance Technology,C5120\nCPA,\"BOWMAN & CO., LLP\",F5100\nVP of Sales,\"Staco Switch, Inc\",J1100\nEXECUTIVE,NORTH AMERICAN COMMUNICATIONS,G5220\nOWNER - INVEST,BOECKMAN INVESTMENTS,Y4000\nCONSULTANT,ALFRED SMITH ASSOCIATES,Z9500\nATTORNEY,\"DECOTIIS, FITZPATRICK & COLE\",K1000\n\"Assistant Vice President, Finance\",\"University of Maryland, College Park\",H5100\nretired,Episcopal Church,JD200\nOwner,Tulsa Welding School,H5100\nEXECUTIVE DIRECTOR,\"AFFORDABLE HOUSING CONNECTIONS, INC.\",Y4000\nHealthcare Executive,\"Pyramid Healthcare Solutions, Inc\",Y4000\nBanker/Financial Adv,A. B. N. Amro Bank,F1100\nONCOLOGIST,SELF/ONCOLOGIST,H1130\nAttorney,Keane Reese Vesely & Gerdes PA,K1000\nContracts Manager,D F I InternatIONAL,Y4000\nC.E.O./CHAIRMAN,ZUFFA L.L.C.,G6400\nLANG SIMPSON ROBINSON & SOMERVILLE,,K1000\nSCHRODER WERTHEIM & CO INC,,F2100\n\"VP, FINANCIALS OPS & METRICS\",HEALTH NET PHARMACEUTICAL SERVICES,H3700\nLIGAND,,Y4000\nDENTIST,JOSEPH J. MEYER D.D.S.,J6200\nMULTIMEDIA PRODUCTION,SELF EMPLOYED,Y4000\nEXECUTIVE,\"LAWRENCE BATTELLE, INC.\",Y4000\nDeveloper,\"Rummel Construction Group, Inc\",J7400\nAMERICAN ARBETRATION ASSOCIATION,,Y4000\nAttorney,\"William B. Kingman, P.C.\",Y4000\nCHAIRMAN,\"FULLEN TRANSPORTATION SERVICES, INC.\",T0000\nCARNIVAL CRUISE,,T6250\nPRESIDENT,\"PARAGON METALLURGICAL PRODUCTS, INC.\",Y4000\nARCHITECTURE,ELLEN BURGESS ARCHITECT,Z9500\nCHIEF EXECUTIVE OFFI,WR BERKLEY CO.,Y4000\nWOLFE ELECTRIC COMPANY INC.,,B0500\nIT MANAGEMENT,\"PERKINELMER, INC.\",Y4000\nCEO,\"Wellness in the Schools, Inc\",Y4000\nManager,Knight Manufacturing,Y4000\nAPOLLO HVAC,,M2300\nEDUCATOR,UW-ROCK COUNTY,Y4000\nGLENDALE MEMORIAL HOSPITAL,,\nMECHANICAL ENGINEER,INDYNE INC.,C5130\nExecutive VP,Bio-Reference Laboratories,H3400\nTANANI CONSULTANTS &,,Y4000\nSVP,TENET HEALTHCARE CORPORATION,H2100\nAnalyst,Cadence,Y4000\nReal Estate,Fla Grove Mt,F4500\nSALES,PAREXEL,Y4000\nCFO,GLORI ENERGY INC.,E1000\nob-gyn physician,The Group for Women,Y4000\nBusiness Owner,City Center Parking,F4500\nZIMBELMAN HOMES/PRESIDENT/CEO,,B2000\nExecutive,Center for Economic Growth,Y4000\nProfessor,Cleveland Chiropractric College,H1500\nCONSULTANT,NMSHTD,Y4000\nVP,SNC,Y4000\nCEO & CHAIRM,T.E.I. INDUSTRIES INC.,G5000\nPresident/General Manager,\"Southern Eagle Sales & Service, LP\",G2850\nPROFESSOR,STANFORD UNIV,H5100\nSTORE CLERK,FOX GENERAL STORE,Y4000\nSENIOR VICE PRESIDENT AND CHIEF OPERAT,MINISTRY HEALTH CARE,H2100\nNAT ASSOC REALTORS,,F4200\nANAESTHESIA SERVICE MED,,H1130\nphysician,Duke Univ Medical Center,H2100\nEDINBORO UNIVERSITY,,Z9000\nREALTY ESTATE MANAGEMENT,,F4000\nNeurosurgeons,University of Minnesota,H1130\nHOMEMAKER,SELF-EMPLOYED,J5000\nPartner,Manatos and Manatos,K2000\nExecutive Director,Indianapolis Museum of Art,X4200\nPHYSICIAN,GASTRO-INTESTINAL ASSOC.,Y4000\nTELEPHONE OPERATOR,PACIFIC TELEPHONE CO,C4100\nHealh care administrator,\"Sunshine Health Facilities, In\",Y4000\nDELOITTE FINANCIAL ADVISORY SERVICE,,F5100\nLOCAL MARKET HEAD SE,AETNA INC.,H3700\nPolice Officer  / Captain,City and County of San Francisco,X3000\nPRESIDENT,\"STRATEGY CENTER, LLC\",Y4000\nEXECUTIVE,BRETT COMMUNICATIONS,Y4000\nSELF/ECONOMIST/ECONOMIST,,F5500\nHOME,NONE,K2000\nHOGG ROBINSON OF MICHIGAN,,F3300\nChair,Dearborn County Dems,Y4000\nVP HUMAN RESOURCES,\"COMCAST MO GROUP, INC.\",C2200\nPhysician,Abbott Northwestern,H2100\nUNINSURED PHD STUDENT UNIVERSITY OF CH,UNIVERSITY OF CHICAGO,H5100\nTHE PULASKI BANKING CO,,F1100\nBROWNSTEIN HAYATT ET AL,,J5100\nSAYERVILLE CARWASH,,Y4000\nEditor,Tribez Magazine,C1100\nEDITOR,UNICEF,J1200\nProject Superintendent,Ref-Chem Llc,Y4000\nCONSTRUCTION M,KWAME BUILDING GROUP,B1500\nFOUNDER/MANAGING DIRECTOR,ARMAK & ASSOCIATES,Y4000\nPRESIDENT,A.T. WILLIAMS OIL,E1170\nEL,\"ELECTRO DESIGN ENGINEERING, INC.\",B4400\nDean-Walton College,University of Arkansas,F1100\nState Staff,Senator Tom Harkin,Y4000\nKOURTY,,M3100\nPHYSICIAN,LAKELAND REGIONAL MEDICAL CENTER,Z9500\nF&G INSTITUTIONAL TRADING,,F2100\nINSTRUCTOR,U OF M DULUTH,H5100\nOFFICE MANAGER,ANNE EPSTEIN MD,H1100\nPINEWOOD FOUNDATION,,J7700\nExe Vice President and COO,\"Hoar Construction, LLC\",B0500\nKUZINEVICH & MILLER,,K1000\nGOVERNMENT RELATIONS,KING & SPAULDING,K1200\nLOOMP INC,,Y4000\nMD,Post Eye Center,H1120\nVenture Capital,Village Venture,Y4000\nWOODS HOLE OCEANGRAPH INSTITUTE,,X0000\n\"GALERIE L'ENFANT\",,Y4000\nNILES COMMUNITY SCHOOLS,,X3500\nSETTOON MARINE INC.,,Y4000\nCONSULTANT,PATTERN ENERGY GROUP/CONSULTANT,E1000\nCORP. EXECUTIVE,LAWYERS MUTUAL,F3100\nPA GOVERNMENT,,X3000\nPRES,PIASECKI STEEL CONSTRUCTION CO,B1500\nPACKING & SHIPP,PINZETTE GLASSWORKS,M7200\nSEATON HALL UNIVERSITY,,H5100\nSOLI DEO GLORIA FOUNDATION,,B1000\nPresident,Key Truck & Equipment Inc.,Y4000\nCHAI,\"ASHLEY FURNITURE INDUSTRIES, I\",G4400\nCommunity Volunteer,Community Volunteer,X1200\nPARISH BOND BROKERS,,Y4000\nEXECUTIVE DIRECTOR,TAYLOR FOUNDATION,Y4000\nLABRIE EQUIPMENT,,E3000\nATTORNEY,STUBBS & PERDUE P.A.,K1000\nSALES,BABY CITY,Y4000\nSTEVENSON HARDWARE,,G4500\nTRUCKDRIVER,SELF-EMPLOYED,Y4000\nGeneral Counsel,Third Point LLC,F2700\nChairman,Wexler Walker Public Policy Associates,K2000\nArchitect,DGP Architects,B4200\nTANNER & CO,,F2300\nMedical Sales,Self employed,J1200\nATLANTA JUNIOR COLLEGE,,H5100\nSCHNEITTER FIREWORKS & IMPORTING,,M1100\nPresident,Goldstein And Fluxgold Pc,Y4000\nManager,Kaplan,H5100\nPRESIDENT,PATE DAWSON COMPANY,G2910\nLawyer-Mediator,Ordas Alternative Dispute Res. Ser,Y4000\nWINDY KNOLL FARM,,Y4000\nATTORNEY,PEPCO HOLDINGS,E1620\nArtist,Selfl-Employed,X0000\nATTORNEY,SILVER GOLUB & TIETEL,K1000\nSAFETY STRIPING SERVICE INC.,,B1000\nSELF-EMPLOYED/REAL ESTATE / RANCHIN,,F4000\nJ S HOVNANIAN & SONS/PRESIDENT/CEO,,B2000\nCONSULTANT,RODGERS CAPITAL GROUP LP,F0000\nRIFKIN LIVINGSTON ETAL,,K1000\nOwner,Hudson Enterprises,F4000\nOwner,Horns Auto Center,Y4000\nINVESTOR,QUAD PARTNERS LLC,F2600\nLANGDOM EMISON KUHLMAN ET AL,,K1000\nRestaurant Owner (Diner),Lovely Inc dba The Roxy,Y4000\nIT RESEARCH,\"OSTRIKEY VON SIMSON, INC.\",G5270\nRetired (House Husband),My Wife,Y4000\n\"DALLAS DA'S OFFICE\",,Y4000\nPriest,St Lukes Episcopal Church,X7000\nSOFTWARE DEVELOPER,RACKSPACE,Y4000\nInternet Executive,Harrington & Pike,Y4000\nPRESIDENT & C.M.O.,M. E. DECISION,Y4000\nATTORNEY,FREDRIC PRESS,K1000\nDEALER,RIMROCK CHRYSLER JEEP DAEWOO,T2300\nOwner,Shop Rite,G2400\nPublic Markets,The Blackstone Group,F2600\nCEO,MCCABE & ASSOCIATES,Y4000\nATTORNEY,\"GRESHAM, PC\",Y4000\nUN,,X4000\nSENIOR MANAGING DIRECTOR,HOULIHAN LOKEY,F2300\nPersonal Asst.,Dogpatch LLC,Y4000\n\"V.P., Manufacturing\",\"Engineered Air Systems, Inc.\",D3000\nBNA,,C1100\nSchool Principal,Spencer School District,X3500\nBroker,Guardian Mortgage,F4600\nInformation Requested,Earth Information Technologies,Y4000\nFIRST RULE PROPERTIES PARTNERSHIP,,Y4000\nChairman,\"Wilmorite, Inc.\",F4100\nReal Estate,MB Corporation,B0000\nPSYCHOLOGIST,\"SUSAN L. WILLIAMS, PHD, INC.\",H1110\nINTERIOR DESIGNER,DAYBREAK DESIGNS,Y4000\n\"CHILDREN'S HOSPITAL/PRESIDENT/FOUND\",,H2100\nACTUERY,SELF,G0000\nAIRCRAFT MAINTENANCE,UNITED STATES AIR FORCE,X5000\nOwner,Texas Norvell Fire and Security Inc.,Y4000\nBELLSOUTH TELECOM,,C4100\nMEDIA ASSISTANT,ALLEGORY MARKETING,Y4000\nTITLE REP.,ELLIOTT WALDRON,Y4000\nLIBRARIAN,MERCY HIGH SCHOOL,Y4000\nExecutive Vice President Business Deve,Redflex Traffic Systems,Y4000\nFAYETTE COUNTY ATTORNEY,,Z9000\nE F BRADY INC,,B1000\nPHARES ELECTRONICS CORP,,Y4000\nRetired,Cornell University,X1200\nLAINAW TRANSIT INC,,Y4000\nVICE PRESIDENT,\"MATCHMASTER, INC\",Y4000\nAttorney,Whitney Internal Medicine,Y4000\nGRANTS MANAGER,DC PUBLIC LIBRARY,X4200\nREAL ESTATE,E. V. C. O.,F4000\nConsultant,Corporate Consultants,Y4000\nMAT,,Y4000\nSVP CHIEF RETAIL MARKETING OFFICER,CVS CAREMARK,G4900\nWORSEK & VIHON PC,,K1000\nATTORNEY,\"LEWITT, HOCKMAN, ET AL\",K1000\nwholesale distributor,dahl,Y4000\nFREE LANCE STENOGRAPHER,,Y4000\nGardener,Stander for Peace,Y4000\nConsultant,St. Germaine & Associates,Y4000\nLawyer,\"Friedman, Rubin & White\",K1000\nNORWOOD CHIROPRACTIC CENTER,,H1500\nDelivery Driver,Luckys Pizza,G2900\nAttorney,Christian Brothers Inv Svcs,Y4000\nPLASTIPAC,,M7000\nProducer,BEI Inc,Y4000\nEXECUTIVE DIRECTOR,MARYLAND STATE EDUCATION ASSOCIATION,Z9500\nSenior Associate,Henry L Stimson Center,X4000\nPRESDIENT,AFFINON GROUP,G5280\nOWNER,BON-TON AND FRIEDMAN INC.,Y4000\nCommercial Finance,The CIT Group,F1400\nAttorney/School Administrator,Dungan & LeFevre,K1000\nATTORNEY,A&G CUSTOM METALS,K1000\nSVP - GLOBAL IRON ORE SALES,CLIFFS NATURAL RESOURCES,E1200\nPRESIDENT,MORGAN STATE UNIVERSITY,H5100\nPROFESSOR,AMERICAN UNIVERSITY,J7300\nHELP-U-LOAN,,F1400\nATTORNE,RYAN MACKINNON VASAPOLI ETL,K2000\nRealtor,C. Dan Joyner Co.,Y4000\nProfessor,USC Law,H5170\nGeneral Manager,Sherwin Williams,M1600\nWEALTH MANAGEMENT,KEMPT & CO,Y4000\nDIRECTOR,UNIVERSITY OF NEW HAMPSHIRE/DIRECTO,H5100\nCHAIRMAN & CEO,UNITED PARCEL SERVICE INC,T7100\nTILLAMOOK COUNTY HOSPITAL,,H2100\nCEO,Legg Mason Real Estate Services,F4000\nDirector Of Programs,Worldfund,Y4000\nLOCHNER INC,,K1000\n\"Mc Donald's Franchisee\",Self-Employed,G0000\nElectrical Contracto,Singleton Electric Company Inc,B3200\nINVESTIGATOR,HHMI/STANFORD UNIVERSITY,Y4000\nOWNER,PERFORM RX,Y4000\nATTORNEY,\"JANOV LAW OFFICES, P.C.\",K1000\nCPA,SANSIVERI KIMBALL & MCNAMEE,Y4000\nOWNER,PENN TROY FUNERAL HOME,G5400\nVERSATUBE CORPORATION,,Y4000\nWRITER,PSYCHOLOGIST,H1110\nOwner,Babu Kakani,Y4000\nDirector,Butler County Board of Elections,Y4000\nEDUCATOR,SOUTH COAST MEDICAL GROUP,H1100\nSELF,OIL & GAS,E1100\nCONTRACTOR,\"GRAMERCY GROUP, INC.\",Y4000\n\"Dean, School of Engineering and Applie\",University of Pennsylvania,H5100\nSALES ENGINEER,CITRIX SYSTEMS,C5120\nPresident,Streva Distributing Co of New Iberia,G2850\nVeterinarian,Cornell University,J7400\nFLORIDA ECONOMIC ASSOC,,Y4000\nPresident,National Auto Parts Warehouse,T2200\nGENERAL MANAGER,NOVARTIS,H4300\nCHAIRMAN,\"NEEDHAM & COMPANY, LLC\",J1200\nMANAGER,W.C.F. AIRCRAFT CORPORATION,Y4000\nOWNER,FRITTS GROUP,K2000\nattorney,Knopik Varner Moore,Y4000\nLawyer,Carl Marks Inc,Y4000\nInvestment Rep,Edward Jones Investments,F2100\nFITNESS INSTRUCTOR,YMCA OF MID TN,Y4000\n\"MACKENZIE'S PUB\",,G2900\nDIRECTOR OF RISK MANAGEMENT,FIRST NATIONAL BANK OF PA,F1100\nCEO,NEOPAD TECHNOLOGIES CORPORATIO,Y4000\nTALBOT FINANCIAL SERVICES,,F0000\nVICE PRESIDENT SALES,BCBS OF ARIZONA,F3200\nALVARADO CONSTRUCTION INC,,B1000\nSTATE OF OREGON,,J7500\nExecutive,\"Huber, Inc\",T2310\nWHOLESALE,\"TRIVO WEST, LTD.\",Y4000\n\"Gov't Relations Dire\",Blue Cross Blue Shield,F3200\nAssociate Professor,Adelphi University,H5100\n\"LUMBERMEN'S INVESTMENT CORP AUSTIN\",,M7100\nMUSCO CORP./OWNER/PRESIDENT,,M6000\nExecutive,True Drilling,E1150\nCHAIRMAN,\"VAMSC, INC.\",Y4000\nPARTNER,CAPITAL STRATEGIES GROUP,F3300\nSOFTWARE DESIGNER,LANS LLC,Y4000\nPRESIDENT,A-1 DRYER VENT CLEANING,G5000\nMANAGING DIRECTOR,ROTHSCHILD/MANAGING DIRECTOR,F2300\nReal Estate Develope,Fulwider Corp.,J1200\nDeputy Director,Brookhaven Sciences Associates,Y4000\nPUBLIC SERVICE,SOCIAL SECURITY ADMINISTRATON,X3000\nattorney,public defender service for DC,K1000\nMECHANICAL CONTRACTO,RITE-WAY PLUMBING & HEATING,B3400\n\"VP,LRB ANALYT, PROGMGMT &STRAT\",AETNA INC.,H3700\nCHANCELLOR BROADCASTING CO,,C2100\nSupervisory Operations Officer,U S Department of Housing and Urban,X3000\nBOWAN FARMS,,A0000\nH S PROCESSING,,J1100\nANESTHESIOLOGIST,MUSC,Y4000\nCrna,Truman Medical Center,H2100\nPATHOLOGIST,EASTSIDE MEDICAL CTR,H1130\nEXECUTIVE VICE PRESIDENT,J.P. MORGAN,F1100\nASSISTANT REGIONAL DIRECTOR,FDIC,X3000\nPOLICY ADVISOR,STATE OF IL,X3000\nOwner,Clifford Commercial Real Estate,F4000\nDirector of Corporat,Brown-Forman,G2820\nDIPRETE-LAURIENZO,,Y4000\nDOCTOR,FLORIDA HOSPITAL,H2100\nPRODUCTION DIRECTOR,STAGE AMERICA,Y4000\nTEACHER,BILLINGS SCHOOL DISTRICT #2,X3500\nSELF STORAGE,LITTLE HOUSE,Y4000\nKUEHNE AND NAGEL INC,,Y4000\nOFFICE MANAGER,LEVENDIS LAW GROUP,J1200\nAT,HOUSTON SHAHADY PALEN & HOCHBERG,K1000\nVice Chairman & CEO,ILSCO Corporation,C5000\nDVP AMERICAS QA OP,ABBOTT LABORATORIES,H4300\nCHAIRM,\"OXYGEN BIOTHERAPEUTICS, INC.\",Y4000\nDirector Of Government Affairs,Comcast,C2200\nPRESIDENT/CEO,Del-Med Inc,Y4000\nPRESIDENT/C.O.O,TACALA L.L.C.,G2900\nManager,Univ. Mortgage,F4600\nIT CONSULTANT,\"RIIS, LLC\",Y4000\nSoftware Engineer,Hologie,Y4000\nCEO,\"Tinicum, Inc.\",F2100\nPRODUCER,WATSON FARMS,A1600\n\"FAGENSON & CO, INC\",,F2100\nWINEGROWER,PAGE SPRINGS CELLARS,G2820\n\"VICE PRESIDENT, PUBLIC POLICY\",TIME WARNER INC.,Z9500\nChairman,County Commission,X3000\nATTORNEY,\"LEAVY, SCHULTZ, DAVIS & FEARING\",Y4000\nDIPLOMATIC,U.S. DEPARTMENT OF STATE,X3000\nRON PERRY AUTOMALL,,T2300\nFINANCIAL ADVISOR,WELLS FARGO ADVISOR,J1100\nAttorney,\"HUGHES, WATTERS & ASKANASE, L.L.P.\",K1000\nCOMMERCIAL R,LIBERTY PROPERTY TRUST,J7400\nRICHARDS WATSON GE,,K1000\nCertified Public Acc,\"Boulay, Hentmaker, Z\",Y4000\nCEO,Teaching Strategies,Z9500\nFIRST ARKANSAS INS,,F3100\nLEATHER TONERY,,Y4000\nNEVEGORT CONSULTING,,G5270\nMEDIA PLUS/NEWS/TV WIRE PRODUCER,,Y4000\nFILM EDITOR,Self employed,C2400\nSALES EXECUTIVE,MICROSOFT,C5120\nCEO,Alken Industries,Y4000\n\"DIDN'T INDICATE\",\"DIDN'T INDICATE\",Y4000\nPRAMURA GRANT COMPANY,,Y4000\nTLC HOME HEALTH CARE,,H3100\nWRITER/THERAPIST,SELF-EMPLOYED,C1100\nATTORNEY/PARTNER,HOLSTEN & ASSOCIATES ATTORNEYS AT LAW,K1000\nManufacturer,\"ACADEMY AWARDS, INC.\",Y4000\nattorney,Farthing & Farthing PC,Z9500\nMANAGER,A. T. & T.,C4100\nRESEARCH SCIENTIST,RETIRED,Z9500\nAttorney,\"Davis Law Group, PL\",K1000\nEXECUTIVE,CG ENTERPRISES INC,Y4000\nPRESIDENT AND CHIEF MARKETING OFFIC,ILLUMINATING TECHNOLOGIES,Y4000\nCEO,DLM Developers,Y4000\nOWNER,CHARLES BOGGINI COMPANY,Y4000\nInvestment Banker,West L.B.,Y4000\nCURTIS HERTEL & ASSOC,,Y4000\nOWNER,\"ROBY'S PROPANE GAS INC\",E1190\nSTANDARDS ADVER COUNCIL,,Y4000\nFOUNDATION DIRECTOR,ROCKEFELLER FINANCIAL SERVICE,J7150\nHUMAN RES,WOLVERINE HUMAN RESOURCES,Y4000\nPRESIDENT,WESTERN STATES INVESTMENT GRP,F7000\nREQUESTED,CFR DEVELOPMENT INC.,Y4000\nMCCLURE COMFORT CARE INC.,,Y4000\nExecutive,Sierra Nevada Corp.,D3000\nInformation Requeste,UNASSIGNED EMPLOYER # SC90003,L1300\nAttorney,\"Wiley, Rein & Fielding\",K2000\nCROWLEY INSURANCE,,F3100\nINSTITUTE OF NEUROPSYCHIATRY,,H1130\nInformation Requested,Caseys Services Company,Y4000\nCONSULT,KONINGISOR LUCIANO & ASSOC.,Y4000\nVice President,Zeno Group,Y4000\nBRYTON MANAGEMENT CORP,,F3100\nComputer Scientist,Adobe,C5120\nPresident,Bald Head Island Ltd,Y4000\nEXEC.,ABCOV INC.,Y4000\nENGINEER,US DEPT OF DEFENSE,J6200\nATTORNEY/CHIEF AML C,HSBC,F1400\nCONNECTIFY INC.,,Y4000\nEXECUTIVE,CHESAPEAKE BAY ACADEMY,Y4000\nD AND E INDUSTRIES INC,,E1240\nMANAGER,\"SHEPHARD'S BEACH RESORT\",Y4000\nTransportation Planner/Analyst,Metropolitan Transportation Commission,T4000\nPhysician,Southwest Skin specialists,Z9500\nResearcher,Cadence Design Systems,C5120\nNot emlpoyed,Not emlpoyed,Y1000\nBOARD MEMBER,LAND TITLE GUARANTEE CO,F4300\nOWNER,THE SINGULARIS GROUP,Y4000\nMILTON PUBLIC SCHOOLS,,H5100\nSoftware Developer,Nashwest LLC,Y4000\nCATUOGNO COURT REPORTING,,G5200\nBenifit Consultant,Mellon,Y4000\nUS CONSUMER PROD SAFETY COMM,,Y4000\nG L SAYRE INC,,Y4000\nAM-SOD,,Y4000\nCONSULTANT,ALONSO & FRASIER,G5200\ntravel Agent,Preferred Travel,T9400\nHomemaker,N/A,Z9500\nPresiden,Barbara L. Claeys Interior,F2100\nManager,Corning,C5110\nCONTRACTOR,KOKOSING CONSTRUCTION CO. INC.,B1500\nTIAA CREF,,F3100\nOWNER,PACIFIC MODULAR,Y4000\nETECH SOLUTIONS,,Y4000\nCLERICAL,IBEW LOCAL 46,L5000\nINVESTOR,NEILL H. BROWNSTEIN,Y4000\nArchitectual Industr,Information Requested,B4200\nKLAUER MFG CO,,K1000\nJEWELER,\"SKATELLS JEWELERS, INC.\",Y4000\nGENERAL COUNSEL,BROOKSHIRE GROCERY COMPANY,G2400\n\"VP, Business Solutions\",Advito LLC,T0000\n\"Managerial, Misc.\",\"Maryland Materials, Inc.\",B5100\nPresident/CEO,C L  Martineau Homes Inc,B2000\nFINANCE,HNRG,Y4000\nSENIOR VICE PRESIDENT,ATK,D0000\nM I T LINCOLN LABS,,D4000\nAttorney,Robert Bosch Corp.,Y4000\nSTUDENT,STUDENT,T1400\nDiagnostic Radiologist,South Texas Radiology Group,H1130\nCOMMISSIONER,STATE OF MISSISSIPPI,X3000\nSales Manager,ING,F3100\nKIRBY PARK ANIMAL HOSP,,A4500\nPRICEWATER HOUSE COOPERS L.L.P.,,F5100\nFOUNDER,INSTITUTE FOR EDUCATION,X4000\nResearch Assistant,Il Dept Of Human Services,X3000\nDEANVILLE NURSING HOME,,H2200\nSVP,GUY CARPENTER,F3100\nDoctor,Information Requested Per Best Efforts,H1100\nVICE PRESIDENT,TECHSTYLES INC.,Z9500\nEngineer,Caplugs,Y4000\nDEISGNER,SELF EMPLOYED,Y4000\nArchitect,MESH Architectures,B4200\nGENERAL TIRE & RUBBER COMPANY,,LM100\nATTORNEY/PROSECUTOR,TIFT COUNTY SOLICITOR GENERAL,Y4000\nPresident,Bushkill Bakery Repair,G1200\nLawyer,\"Michael G Wasserman, PC\",Z9500\nInsurance Agent,The Hopewell Company,F3100\nCELLULAR ONE,SBI,J1200\nURBAN PLANNING CONSUL,,G5200\nCEO,RUXTON CAPITAL GROUP,F0000\nPRESIDENT/CEO,MOLDED FIBER GLASS,Y4000\nCONTRACTOR,THE PETTERSON COMPANY,Y4000\nEXECUTIVE,MILLER TRANSPORTERS,T0000\nFINANCIAL ANAYLIST,HCA,H2100\n\"RUSKIN, MOSCU, EVANS & FALTISCHEK\",,K1000\nMINING ENGINEER,OHIO VALLEY COAL CO.,E1210\nPOWER CURBERS INC,,Y4000\nPRESIDENT,DIXIE PLYWOOD COMPANY,Y4000\nTHE BARREL HEAD,,G2900\nSUGHRUE MIM ZINN,,Y4000\nCIVIL ENGINEER,PALMER ENGINEERING CO./CIVIL ENGINE,B4000\nUNITED BMB GROUP INC,,Y4000\nEXECUTIVE,ACTION LIFT,Y4000\nAttorney,Belkin Burden Wenig & Goldman,K1000\nDEBATE COACH,HARVARD UNIVERSITY,H5100\nPresident,\"Omeris, Inc\",Y4000\nSR SOFTWARE DIRECTOR,JUNIPER NETWORKS,C5100\nANALYST,STRATEGIC HEALTH CARE,Z9500\nPresident/CEO,Indiana Farmers Mutual Insurance Compa,F3100\nPREFERRED FREEZER SERVICES,,E4100\nMACGREGOR ELECTRIC S E,,B3200\nReal Estate Sales &,Ralston Valley Preferred Real Estate,F4000\nCorporate Counsel,Autodesk,C5120\nCHAIRMAN,ERIC MARDER ASSOC IN,Y4000\nTHOMSON ROOFING & METAL CO,,B3000\nSHERMANN AND STERLING,,Y4000\nCEO,Ford Restaurant Group,G2900\nChairwoman/Real Estate,The Time Group,F4500\nREAL ESTATE,BOYLE INVESTMENTS,F7000\nOWNER,VALLEY REAL ESTATE,F4000\nWRITING & SPEAKING,NORQUIST ASSOCIATES,Y4000\nInformation Requeste,Allied World Assurance,Y4000\nExecutive,\"Dallas City Packing, Inc.\",Y4000\nATTORN,WARD ANDERSON PORRITT & BILA,K1000\nOwner,Valley Harley Davidson,Y4000\nRANCHERS STATE BANK,,F1100\nGREENSTEIN DELORME & LUCHS P C,,K1000\nFINANCIAL MARKETING,SELF-EMPLOYED,Y4000\nOCCUPATIONAL THERAPIST,DEPT OF PUBLIC SAFETY,H1700\nHAGEN WILKA ARCHER PC,,Y4000\nRealtor,ED Real Estate,F4000\nPRESIDENT,ST. CLOUD HOSPITAL,H2100\nEXECUTIVE,CAPITAL CITY STRATEGIES,Y4000\nAUTO ENG MGR,UNITED PARCEL SERVICE INC.,T7100\nVP STRATEGIC DVLPMT,SPECTRA ENERGY CORP.,E1140\nOWNER,QUEENS MEDALLION LEASING INC.,Y4000\nSENIOR VICE PRESIDENT,ONCOR,Y4000\nCEO AND FOUNDER,INTERSYSTEMS,Y4000\nAttorney,Law Offices of Curtis Coulter,K1000\nERWIN KNIGHT & COOK,,Y4000\nUniversity Administr,N/A,H5100\nPRESIDENT,\"BELINA, INERIORS, INC.\",Y4000\nCHICAGO STONE CO,,B5100\nAttorney,\"Sands, Anderson, Marks & Miller PC\",K1000\nNEW YORK FITNESS CLUB INC.,,G5800\nFINANCIAL ADVISOR,DONLAN & BARCOMB,Y4000\nPRESIDENT,COMMUNITY ENHANCEMENT SVCS,Y4000\n\"HIROSE, OTO AND BAILEY\",,J7500\nAttorney,Clark & Weinstock,K2000\nCEO,WOLFISKIN LLC,Y4000\nDONAHUE ET AL ATT,,Y4000\n[information received],[information received],Y2000\nMARKETING,AQUILA TECHNOLOGIES GROUP,C5130\nCommodity Trading,none,F2200\nCONSULTANT,OCKLESHAW NOAKES & STAVES,Y4000\nNEW YORK MERCANTILE EXCHANGE,,F2100\nFALLSTON UTILITIES INC,,B1000\nMANAGER,YAI,Y4000\nSecy/Tres,Van Masters Management Inc,G2900\nPOLICY ANALYST,ITAA,Y4000\nBUSINESS OWNER,CAPITOL BEARINGS,Y4000\nCONSULTING,EMPOWERMENT INSTITUTE,Y4000\nINVESTMENT BANKING,CREDIT SUISSE,F2300\nMgr,\"JED of Southwest Florida, Inc\",Y4000\nCONSULTING,ROGICH GROUP,K2000\nPRIVATE EQUITY,KEATING VOLLMER CO.,Y4000\nMILLER MANUFACTURING CO,,Y4000\nPRESIDENT,CAPITOL CITY GROUP,K2000\nProcess Eng Project,\"OWENS-ILLINOIS, INC\",M7200\nChief of Staff,United States Congress,X3000\nGENERAL MOTORS CORP,,T2100\nOwner,Kaleidoscope Consulting,Y4000\nVice Pres.,Planning Systems,C5000\nNIAGRA TRADING COMPANY,,Y4000\nRETIRED DISABLED VETERAN,NONE,X1200\nManaging Director,\"Richmond Management, LLC\",Z9500\nSWARTZ-MORRIS MEDIA,,Y4000\nLawyer,Missile Defense Agency,Y4000\nVICE PRESIDENT,HEARTLAND CHILD DEVELOPMENT/VICE PR,G5000\nSMITH & METALITZ,,K1000\nRequested,Requested - Not provided,M5000\nEnvironmental Consultant,\"Entrix, Inc\",Y4000\nVICE PRESIDENT MARK,PARKER HANNIFIN,M2300\nOwner,John M Santiago & Assoc,Y4000\nPOLICY,CENTER FOR COMMUNITY CHANGE,JH100\nSQUIRES SANDERS & D,,K1000\nBUSINESS DEVELOPMENT,ACHILLION PHARMACEUTICALS INC.,H4300\nTEACHER,HAWAII STATE DEPT. OF EDUCATION,X3000\nPartner,The Westwood Group,Y4000\n\"BOSTON CHILDREN'S SERVICES\",,H6000\nL F DRISCOLL COMPANY,,B4000\nMELLON PRIVATE WEALTH,,J5100\nPRESIDENT,BOB LAWRENCE & ASSOCIATES/PRESIDENT,K2000\nCNM,MISSOULA OB-GYN ASSOC,Y4000\nSecretary,Auto World Of America Corp.,T2300\nIRRIGATION SALES,,Y4000\nMASCOTECH,,M4100\nADMINISTRATOR,Northwestern Memorial Hospital,H2100\nBuyer,Avron Dist.,J1200\n\"VAIL / O'NEIL CLINIC/PHYSICIAN\",,H1100\nBio-Tech,FFA Sciences,Y4000\nFilmmaker,Rusticator Pictures LLC,Y4000\nFLIPPO & ASSOC,,K2000\nEngineer,\"S&Me, Inc\",Y4000\nSTAFF ASSI,OFFICE OF PRESIDENT BUSH,J1100\nAIR VAN NORTH AMERICAN,,T3100\nNAN HEIM & ASSOC,,Y4000\nPresident and CEO,Lynden,T7000\nFinancial Advisor,RW Baird & Co,Y4000\nPRES,DOLORES KOKI EDUCATIONAL FOUND,J5100\nGeneral Counsel,United Steelworkers,J1200\nPresident,FirstNat.Bank of Waynesboro,F1000\nInvestment Banker,vFinance Investments Inc,J1200\nPHILANTHROPIST,TRAWICK FOUNDATION,Y4000\nManager,\"RDT Investments, LLC\",F7000\nCHIEF EXECUTIVE OFFICER,CENTRAL INSURANCE,Y4000\nMANAGER,NATL INSTITUTE OF TRANSPLANTA,Y4000\nreligious educator,self employed,J1200\nPHYSICIAN,\"WOMEN'S MEDICAL CENTER\",Y4000\nChairman,CA Democratic Party,J1200\nPORTF,ARIEL CAPITAL MANAGEMENT INC.,F2100\nCARACOLE INC,,Y4000\nPRESIDENT,FRG GROUP,Y4000\nINVESTMENT BROKER,PLAZA INVESTMENTS,F7000\nSENIOR PROGRAM ANALYST,US NAVY,X5000\nEXECUTIVE,IMAGE GRAPHIX,Y4000\nH-P PRODUCTS,,Y4000\nEXECUTIVE,GUARDIAN LIFE INS. CO.,K1000\nEditor,Greenwood Publishing Group,C1100\nCHARTER CAPTAIN,SELF,Y4000\nBOYER SINGLETON,,B4300\nPresident,Colorado Auto Dealers Assoc,T2300\nOWNER,BAKER ENTERPRISES,Y4000\nPRESIDENT,STRADA INC.,Y4000\nBUILDER,\"WAYNE HOMES, LLC\",B2000\nW L TUEKON SUPPLY CO,,Y4000\nINFO REQUESTED,ANCHOR RADIOLOGY PA,H1130\nGovt. Relations,\"Schramm, Williams & Ass. Inc.\",A1400\nPhysician,Lupton Dermatology,H1130\nCEO,SHAPE UP AMERICA,Y4000\nCPA,Romano PC,Y4000\nChairman,Princeton Properties,F4000\nWealth Manager,Ameriprise Financial,F2100\nBUSINESS OWNER,\"RENTAL SERVICES, INC.\",G0000\nHome Builder,Self employed,B2000\nAttorney,Willkie Fair & Gallagher,K1000\nCONSULTANT,\"TIPSTONE GROUP, LLC\",Y4000\n\"SATTER, EWING\",,Y4000\nCHERRY HILLS PHARMACEUTICAL,,H4300\nORCHARDIST,,J1100\nATTORNEY,\"CHAIKIN & SHERMAN, P.C.\",Y4000\nAttorney,\"Holt Ney Zatcoff & Wasserman, LLP\",K1000\nMANAGING MEM,MTERRA VENTURES L.L.C.,Y4000\nChief Executive Officer,\"AgriBank, FCB\",A6000\nPRESIDENT,GLENNWOOD BEER DISTRIBUTORS,G2850\nNUMH TOOL COMPANY,,Y4000\nMCCULLOUGH OIL COMPANY I,,E1100\nBusiness Owner,Frontier Abstract,F4300\nEXECUTIVE,NEXTERA ENERGY RESOURCES,Z9500\nEXECUTIVE,THE FRAGASSO GROUP,E1100\nDDCM Inc,President,F4100\nHomeworker,Not employed,Y1000\nretired nurse,none,X1200\nN RADIOLOGIC GROUP,,J5100\nSEASIDE REALTY,,F4500\nPresident,Federal Savings Bank,F1000\nPresident,Three Rivers Community College,H5100\nCEO,CR BARD,H4100\nHOKES BENTON JONES & APPEL,,K1000\nPHYSICIAN AND NURSE,,H1100\nPRES.,ASSOC. BUILDERS & CONTRACTORS,B0500\nGYN LTD,ST PAUL OB,H1130\nPartner,Q Strategies,Y4000\n\"GREY, FOX, BLUEGRAS\",,Y4000\nRetired,Ann Arbor Public Sc,X3500\nVICE-PRESIDENT,COMCAST,Z9500\nVice President Life/Health Operations,Country Insurance & Financial Services,F3300\nNAPA VALLEY COLLEGE,,H5100\nSURGERY P C,,H1100\nPresident,Beachside Dental Consultants Inc.,H1400\nREALLY BIG,,Y4000\nPRESIDENT,LLAMA COMPANY,F2100\nTrustee,Marital Trust Created Under the HRK Bu,Y4000\nUS GENERAL ACCOUNTING OFF,,J9000\nINFORMIT,,Y4000\nMGMT,UBS,F2100\nPRG INC,,Y4000\nACTUATION UNLIMITED INC,,Y4000\nPARTNER,HOLCOMBE FAIR AND LANE REALTOR,F4200\nVENTURE CAPITAL,SELF,J7400\nPRESIDENT,CAPITAL HILL CONSULTING GROUP,K2000\nDR.,SELF EMPLOYED,H1100\nMANUFACTURING,MACBONE INDUSTRIES LTD.,Y4000\nSR. VICE PRESIDENT,INTERNATIONAL PAPER,A5200\nAttorney,\"Proskauer, Rose\",J7400\nOwner,Baseball Heaven LLC,Y4000\nHALL ESTIL,,K1000\n\"O'MALLEY AND HARRIS\",,Y4000\nINSURANCE AGENT,SEARCY & CO,Y4000\nPresident,Odyssey Child Dvlpmnt.,Y4000\nTEACHE,FOUNTAIN VALLEY SCHOOL DIST.,X3500\nCFO,UNIVERSAL HEALTH SERVICES,H2100\nOil & Gas Exploration,Wheless Industries,E1150\nAttorney,\"Capital Hub Investments, LLC\",F7000\nCHIROPRACTOR,ARCTIC CHIROPRACTIC BETHEL,H1500\nFIELD SERVICE ENGINEER,KOKUSAI,Y4000\nPHARMACIST,HOBBS PHARMACY,G4900\nAttorney,\"Law Office of Cameron Secrist,PC\",K1000\nDIRECTOR,S.N. SERVICING CORPORATION,F2100\nPRESIDENT AND,KNIGHT INFRASTRUCTURE,Y4000\nOCCUPATIONAL THERAPI,OCCUPATIONAL & HAND THERAPY,Y4000\nATTORNEY,LCSEN P.A.,Y4000\nAssistant Controller,Wyeth,H4300\nCeo,\"Airline Automation, Inc.\",T1100\nPresident,Arclare Coal Company,E1210\nEXECUTIVE HOUSE,MORTAGE BROKER,F4600\nNUGENT SAND CO,,Y4000\nPETERSON CONSTRUCTION,,B1000\nENGINEER,ROLLS-ROYCE,Z9500\nOWNER,\"BAGS, INC\",M1500\nCITY OF ALAMEDA,VICE-MAYOR,J7500\nMALCHMAN & KRAMER,,Y4000\nREAL ESTATE,MAJESTIC REALTY,F4100\nAttorney,Federal Reserve Bank,X3000\nATTORNEY,LISA & SOUSA,Y4000\nVP PUBLIC AFFAIRS,REI,Y4000\nAGRICULTURE/FARMER,LLJ FARM MANAGEMENT,Y4000\nPARTNER,TONIO BURGOS & ASSOCIATES OF NEW JERSE,K2000\nManager,TDEC - Oakland Data Center,C5130\nAttorney,Frederikson and Byron PA,K1000\nLINCOLN FINANCIAL,FINANCIAL PLANNER,F2100\nBusiness Systems Ana,Saic,J5000\nReal Estate,Sel,F4000\n\"DIRECTOR, FEDERAL GOV'T AFFAI\",CISCO,C5110\nPHYSIC,BARROW NEUROLGICAL INSTITUTE,H1130\nVICE PRESIDENT,K.I.,Y4000\nATTORNEY,\"LAW OFFICE OF MAGGIE JO HILLIARD, P.A.\",K1000\nM.D.,ALIGN MD,H1100\nInsurance Agent,B H Baird Insurance Agency,F3100\nConsultant,\"Letan Consulting, LLC\",K2000\nNORTHSIDE REALTY,,F4200\nownner,major marine tours,Y4000\nENVIRONMENTAL MANAGEMENT & ENGINEER,,JE300\nTHE BEACH COMPANY/CEO/CEO,,F4200\nSTRATHMORE CO INC/REAL ESTATE/INVES,,F4000\nPriest,\"All Saints' Church\",X7000\nDirector,Center For The Visually Impaired,Y4000\nPrincipal,The Colony Group,Y4000\nCEO,NETWORK SOLUTIONS,C5130\nCPA,\"BARRY DODSON, CPA\",Y4000\nEXECUTIVE DIRECTOR,PINRA PARTY,Y4000\nReal Estate,Kaufman Organization/Kaufman Realty Co,J1100\nFIRST TRUST NA,,F1100\nweb Designer (And This Form Needs Help,Self employed,C5130\nOWNER,\"QUINLAN'S PHARMACY\",G4900\nInsurance Agent,\"NIA Group Associates, LLP\",Y4000\nPhysician,\"P Dwight Beery, MD PA\",H1100\nDEAFNESS RESEARCH FOUNDATION,,F4200\nOthepidic Sergeon,Centra;orthopaedics,H1130\nconsultant,Tim Rupli & Associates,K2000\nGov. Affairs,U.S. Fuel Cell Council,Y4000\nSENIER PROJECT LEADER,THE AEROSPACE CORP.,T1700\nPHD CANDIDATE UNIV O,,Y1000\nVice President,Corporate Communications Alliance,Y4000\nRETIRED,CAL STATE UNIV,Z9500\nCPA,\"HOLMAN & FRENIA, PC\",Y4000\nOil & Gas Exploratio,\"R. P. M. Petroleum, L. L. C.\",E1100\nLORI CORP,,J5100\nSDC CORP,,Y4000\nKITCHEN CONNECTION,,Y4000\nSYSTEMS ENGINEER,WELLS-FARGO,F1100\nDIRECTOR,PAL TECH,J1200\nOWNER,\"GEHN'S LANDSCAPING\",B3600\nMETAL DEALER,\"LEWIS SCRAP METAL, LLC\",M2400\nEXEC VP & CFO SCANA,\"SCANA SERVICES, INC.\",E1620\nAttorney,Franklin Co. Municipal Court,X3200\nARK INDUSTRIES INC,,Y4000\nNORTHWESTERN MUTUAL LIFE INS.,,F3100\nFAC,\"UNIVERSITY OF CALIFORNIA, DAVIS\",H5100\nBakersville-Donovan,,Y4000\nCENDEX CORPORATION,,Y4000\nCFO,KUHNLE BROS TRUCKING,T3100\nLawyer,\"Maynard, Cooper & Gale, PC\",K1000\nOWNER / MANAGER,SKY LOGISTICS AND DISTRIBUTION INC,Y4000\nELECTRICAL CONTRACTOR (OWNER),ADVANCED ELECTRICAL SOLUTIONS,B3200\nDEVELOPER/BUILDER,\"D.R. MON GROUP, INC.\",B1500\nOWNER,NOVIA ASSOC,J1100\nBusiness Owner,Northern Counties Secretarial,Y4000\nManagement Consultan,Annie E. Casey Foundation,J1200\nMFO COMPANY,,Y4000\n\"OVERTON'S SUPPLY\",,Y4000\nOHIO STATE UNIVERSITY MEDICAL CENTE,,H2100\nPSU-HMC/DEPT OF NEUROSURGERY/NEUROS,,H1130\nSenior Vice President,STP Nuclear Operations,Y4000\nGEOLOGIST,CONCHO RESOURCES,Z9500\nEXECUTIVE ASSIS,HCK RECREATION INC.,Y4000\nSenior Vice President,DMJM Harris,Y0000\nPresident,Universal Wire & Stamping,Y4000\nSR.SYSTEMS ENGINEERS,US ARMY CERDEC,X5000\nPARTNER,TAYLOR TIMBER,A5200\nCORAL RIDGE GOLF COURSE INC,,G6000\nGeneral Counsel,Canterpoint Properties Trust,F4100\nCHAIRMAN,C. S. FIRST BOSTON LTD.,F2100\nFIVE J PROPERTIES,,F4000\nCEO,IBILIEY UNIFORMS,Y4000\nRETIRED,DIANE WARNING,Z9500\nOwner,Direct Student Service. Inc.,Y4000\nMGMT CONSULTING,PROPHET,G5210\nConsulting,\"SHHE, Inc.\",G5200\nSENIOR VP,WSTRATEGIES/SENIOR VP,K2000\nManagement,VESTAR INC,Y4000\nCEO,The Sisco Group,Z9500\nPartner,Kyle Moyer & Company LLC,Y4000\nBRUBAKER & ASSOCIATES,,Y4000\nOIL & GAS,LABORDE MARINE LLG,E1100\nENGINEER,CANON ENGINEERING,B4400\nFRANCHISE OW,\"MCDONALD'S CORPORATION\",G2900\nDoctor,(Information Requested),H1100\nTHE BURCHELL NURSERY,,A8000\nFINC CONSULTANT,,Y4000\nOWNER,\"KIRBY SMITH MACHINERY, INC.\",Y4000\nBURR & COLE CONSULTING ENGIN,,Y4000\nMEDIA,NY METRO RADIO KOREA INC.,C2100\nOWNER,CENTER CANDY CO,Y4000\nSales,Ft. Lauderdale Harly Davidson,Y4000\nMANAGER,KNORAD BEIER DIST.,Y4000\nTEACHER,PORTLAND COMMUNITY COLLEGE,J1200\nSURGEON,AURORA HEALTHCARE,H2100\nPASO ROBLES WASTE DISP INC,,E3000\nUCSB,,F4200\nKEITH CLARK,,Y4000\n*INSURANCE SALES - &MANAGING PARTNER,*SEVEN CORNERS INC. - &NAVIGO LOGISTIC,Z9500\nDental Hygienist,Dr. Don Fricke,Y4000\nHART CO DEPT OF FAMI,,X3000\nPHYSI,COMMUNITY URGENT CARE MEDICAL,H0000\nJIM DAVIS AND ASSOC,,Y4000\nSummer Associate (Lawyer),DLA Piper LLP,K1000\nMANAGING DIRECTOR,KPG CAPITAL,Y4000\nAUTOMOBILE DEALE,KERN MOTOR COMPANY,Y4000\nKLUKWAN FOREST PRODUCTS INC,,A5000\nCOMPUTER PR,E.D.P. CONNECT SERVICES,Y4000\nMUTUAL BENEFIT LIFE INS,,F3100\nATTOR,FIRST AMERICAN TITLE INS. CO.,F4300\nS & B REALTY,,F4200\nSPEECH AND HEARING TH,SELF EMPLOYED,J7400\nPATTON BOGGS LLD,,K1000\nPHYSICIAN,CEDARS MED CLINIC,H1100\nHUGHES DATA SYSTEMS,,Y4000\nRealtor,Outrigger Enterprises Inc.,T9100\nPartner,Zaffaroni Partners,Y4000\nVP GLOBAL SOURCING,PFIZER INC,H4300\nPastor,Catholic Drocese Of Joliet,X7000\nPRINCIPAL,FULTON CAPITAL ADVISORS,F2100\nPres,Klondyke Construction LLC,B1000\nALEXANDER HUTTON,,F2100\nManagement,Newton Properties Group,F4000\nAttorney,Rodgers Powers & Sch,K1000\nPRESIDENT/CEO,PETRIZZO BOND,K2000\nCOO,Reading Plus,Y4000\nSpecialty Food Busin,Applegate Farms / Groveland Trading,A1000\nARTIST/DEVELOPER,SELF-EMPLOYED,X0000\nBEST,SCHOTTENSTEIN REAL ESTATE GROU,F4000\nInfo Requested,Out Of Bounds,Y4000\nInvestor,\"Tyndall Mgt, LLC\",F2000\nINVESTMENTS ANALYST,SCHOONER CAPITAL,F2100\nSENIOR VP,NUCLEAR ENERGY INSTITUTE/SENIOR VP,E1300\nBUSINESS OWNER,BELT DRIVES LTD,Y4000\nCOMCAST CABLE TV OF NEW JERSEY,,C2200\nCamp Expert,American Camp Association,Y4000\nMEDIATOR/ATTORNEY,\"POLIAKOFF $ ASSOCIATES, PA\",Z9500\nEngineer,Duke Energy Corporation,E1620\nMIDWEST HEALTH CTR,,Y4000\nowner,Brandenburg Telephone,C4000\nMANAGER,BANDITO BARNEYS,Y4000\nCASTLE CREEK CAPITAL,,F0000\nENERGY BUSINESS,SELF,E1100\nSEMI-RETIRED OFFICER,TITLE AGENCY,F4300\n\"MOLDED DIMENSIONS, INC/OWNER/CEO\",,Y4000\nStategic Director,Madrona Investment Group,F2500\nSALES,JEFFERSON DOOR COMPANY,B5400\nCONSULTANT,OUTREACH HEALTH CARE,Y4000\nENGINEER,\"ECM, INC.\",B4000\nORA,HEAD & NECK SURGICAL ASSOCIATES,H1400\nVICE PRESIDENT BUSIN,TERREMARK WORLDWIDE INC.,C4500\nPresident,Vrain Corporation,Y4000\nSR. VP HUMA,ALLEGAINCE TELECOM INC.,C4100\nZUGER KIRMIS & SMITH,ATTORNEY,K1000\nGeneral Manager,Robertoswoodwind.com,Y4000\nVP Sales and Marketi,Noven Pharmaceuticals,H4300\nWESTERN SHAMROCK,,Y4000\nChairman,Human Potential Project,Y4000\nMARKE,ANN TAYLOR STORES CORPORATION,Y4000\nPRESIDENT,\"A.E.B.M., INC.\",Y4000\nBiostatistician,Cleveland Clinic Foundation,H2100\nEXECUTIVE AND DI,ENCOR TECHNOLOGIES,Y4000\nPediatrician,Univ of CA Davis,J1200\nTEACHER,THE PUTNEY SCHOOL,X3500\nEXECUTIVE,THE BAUMAN FOUNDATION,J1200\nPhysician,Fifth Avenue OB/GYN,H1130\nPartner,\"Quarles & Brady, LLC\",K1000\nMD SURGEON UROLOGIST,,J1100\nOWNER,REYNOLDS OIL COMPANY,Y4000\nMARATHON CONSTRUCTION CORP,,B1000\nSurgeon,Fox Chase Cancer Center,H2100\nBROADSTREET MANAGEMENT,,Y4000\nNATIONAL HOUSING CO,,B1500\nReal Estate Developer,Olympia Land Corporation,F4100\nRED DEVON FARMS,,A1200\nATTORNEY,\"MOORE, MCLENNAN LLP\",K1000\nTEACHER,BOSTON COLLEGE HS,Y4000\nReal Estate Broker,Ocean Atlantic Agency - Comm.,F4200\nPHARMACIST,PROSCRIPT PHARMACY,H1750\nPENCOV SERVICE IND.,,Y4000\nBrand Marketing,\"Cnl, Inc\",J1200\nKURT WEISS GREENHOUSES INC,,Y4000\nprofessor,NYC,X3000\nAttorney,\"Baiely & Dixon, LLP\",K1000\nAttorney,California State Public Def,J7400\nAccountant,McGladry,Y4000\nInformation Requeste,Americans for Unfpa,J7400\nEDUCATOR,AMER YOUTH POL FOR,Y4000\nISAACSON MILLER,,G5250\nVP,PFS INC.,Y4000\nINVESTMENT BANKING,STRATEGIC ADVISORY SERVICES LLC,G5200\nFarmer/Rancher,Domenigoni Farms,A3000\nFORGE CONSULTING/PRESIDENT/CEO,,F5500\nTransmission Repair,SOMERSET TRANSMISSION & REPAIR CENTER,G5600\nGOLDBERG & SIMPSON,,K2000\nATTORNEY & SENIO,BUCHANAN INGERSOLL,K2000\nEXECUTIVE,PARIC CORPORATION,B1000\nCIVIC  VOLUNTEER,CIVIC VOLUNTEER,X1200\nRetail Sales Manager,Comag Marketing Group,Y4000\nExecutive,\"Friedman, Billings,\",F2300\nCAPITAL BUILDING MAINTENANCE,,Y4000\nPresident & CEO,Reece Communications Inc,C4000\nSELF,SPRADLEY BARR FORD,T2300\nCfo,Perricone Investments,F7000\nBILLINGS INVESTMENTS,,F4000\nPILOT,U.S. DEPARTMENT OF JUSTICE,X3200\nGENERAL MANAGER,PREMIER GRAPHICS,C1300\nBACCO & THE RED FISH GRIL,,G2900\nDENTIST,\"OUSBORNE AND KELLER, DDS\",H1400\nACCOUNT MANAGER,ALFRED WILLIAMS & CO.,Y4000\nPhysician,Regional Eye Associates,H1120\n\"Mgr, Site Programs\",Framatome-ANP,E1300\nSELF EMPLOYED,WILLIAMS TANK LINES,Y4000\nCEO,ADV-MKT,Y4000\nPresident & CEO,INB Southeast,Y4000\nSales,Torre Lazure / McCann Erickson,Y4000\nUNION PACIFIC RESOURCES,,E1120\n\"VP, New Technology\",Headwaters Incorporated,E1000\nAttorney,\"WilliamsAcosta,PLLC\",Y4000\nPHYSICIAN,GHS,H1100\nINVESTMENTS,DEWBERRY CAPITAL,F4000\nPhysican,Information Requested,H1100\nNORTH SHORE NEWS C,,Y4000\nVICE PRESI,HARTFORD LIFE INSURANNCE,F3300\nPresident,HARRISBURG Regional Chamber,Y4000\nEWING JOHNSON ET AL,,Y4000\nPresident/CEO,Corporate Holdings LLC,F4100\nCEO,NEVADA RURAL CONSTRUCTION RSVP INC,B1500\nSAN FRANCISCO FEDERAL S & L,,F1200\nINTERNATION,A. M. DEAR & ASSOCIATES,J7400\nBuilder,Rockland Ventures Ltd,Y4000\nSPECIAL EVENTS MANAG,BRITISH CONSULATE-GENERAL HONG KONG,Y4000\nRN-RETIRED,NOT EMPLOYED,X1200\nSECURITY SPECIALIST,FEDEX EXPRESS,T7100\nConsultant,Sagebrush Corp,Y4000\nPROFESSOR,WESTERN MICH UNIVERSITY,H5100\nEXECU,MICHIGAN TRUCKING ASSOCIATION,T3100\nHAYDEN CO,,B2000\nCATALANO CASE CATALANO FANN,,Y4000\nPresident,Lyco Energy Corporation,E1120\nEngineer Consultant,United Consulting,B4400\nGREAT LAKES TOWING CO,,T3100\nPETROLEUM ENGINEER,BART JOHNSON INC. (SELF EMPLOTED),Y4000\nManagement,The F Dohmen Co,Y4000\nSALES,RAB,Y4000\nDirector,\"Harrah's Entertainment\",G6500\nAUTOMATED DATA SERV. GRP.,,C5100\nConsultant-Governmen,Self Employed,G0000\nINSURANCE,J. SMITH LANCER & COMPANY,Y4000\nUS House of Representatives,,X3000\nPRESIDENT,COALITION FOR A SECURE DRIVERS LICENSE,Y4000\nSENIOR COUNSEL,KOCH INDUSTRIES INC.,E1160\nPRESIDENT & CEO,KOREAN CHURCHES FOR COMMUNITY DEVELOPM,X7000\nSt. Paul Volunteers for Good Govern,,F3400\nCEO,APEX Supply,J1100\nTrustee,Harborview Medical Center,H2100\nTRADING,CITADEL,Z9500\nRANCHER,AGRICULTER,J1100\nCONSTRUCTION,\"CHARLES PERRY PARTNERS, INC./CONSTR\",B1500\nPHYSICIAN,ROXBORO MEDACCESS,Y4000\nWTS PRODUCT MANAGER,CATERPILLAR INC.,B1000\nEXECUTIVE,PVS CHEMICALS INC,M1000\nCAMPAING DIRECTOR,SEIU,J1200\n\"Rothgerber, Johnson\",Attorney,K1000\nAUTO FLEET,,Y4000\nHomemaker,Self-employed,H2200\nPHYSICIAN,MOUNT CARMEL HEALTH PROVIDERS,Y4000\nPRESIDENT,CHEMICAL BANK WEST,F1100\nRAY BRAGG & ASSOCIATES,,K2000\nOperating Engineer,Tribco Construction,LB100\nBUSINESSMAN,\"MTA DISTRIBUTORS, INC.\",Y4000\ngovt consultant,\"Barr, Murman & Tonelli, PA\",Y4000\nCONSULTANT,CHEROKEE,Y4000\nATTORNEY,UNIVERSITY OF CALIF,H5100\nASC CO,,Y4000\nExecutive,Korn Ferry International,G5250\n\"Vice President Strategy , Services\",Glasshouse Technologies,Y4000\nlawyer,National Football League,Z9500\nAttorney,Barry Hinden,K1000\nINFO REQUESTED,,E4200\nMANAGING PARTNER,SCOGGINS CAPITAL,F2100\nOwner,Airmaster Fan Company,Y4000\nOwner,Booth Ranches LLC,A3000\nActivist/Facilitator,Self,G0000\nBANK,LEBANON CITIZENS NATIONAL BANK,F1100\nSTEFFL DRILLING & PUMP INC,,E2000\nRYLES RESOURCE GRP,,Y4000\nPresident/ceo,Bernards Bros Const,JD100\nCOMPTROLLER,FCUL,F1300\nOwner,\"Numark Associates, Inc.\",Y4000\nPresident,SAVANTAGE SOLUTIONS,G5200\nAsst Director - Gove,Buchanan Ingersoll PC,K1000\nSTEVENS PLUMBING,,C1300\nOWNER,BAY STATE MILLING COMPANY,Y4000\nBusiness Owner,Best Crystal,Y4000\nDIRECTOR,SELECT MEDICAL,H2000\nDIRECTOR,EVENSTAD FAMILY FOUNDATION,Y4000\nComputer Leasing,Oakcreek Funding Corporation,Y4000\nDCC NORTH AMERICA LLC,,Y4000\nACE WIRE & CABLE CO INC,,B5500\nPRESIDENT &,AMERICAN SOFTWARE INC.,J1100\nCO-CHAIRMAN,\"MCCONNELL, WETENHALL & CO, INC.\",F2100\n\"BINGHAM, DANA AND GOULD\",,K1000\nATTORNEY,PRICE & PRICE,Y4000\nRealtor,Colonial Real Estate,F4000\nDALLAS ANESTHESIOLOGY ASSOC,,H1130\nBusiness,Idealab,J1200\nPARTNER,WASHINGTON2 ADVOCATES LLC,K2000\nSOFTWARE TECHNICIAN,REALNETWORKS,C5120\nORTHOPAEDIC SURGEON,ARTHROSCOPY & ORTHOPAEDIC SURGERY,H1130\nBRIGAR INC,,Y4000\nCHIEF E,UPSTATE UNIVERSITY HOSPITAL,H2100\nCORNER DUNDROW & CO,,Y4000\nEXECUTIVE,NEVADA NEWTECH,Y4000\nJOHN J MCMULLEN INC,,Y4000\nLand Surveyor,Geotopo,Y4000\nPresident,CityBridge Foundation,X4100\nBURNET REALTY INC,,F4200\nDELEGAT,VIRGINIA HOUSE OF DELEGATES,Y4000\nGovernment Manager,US EPA,X3000\nSUNFLOWER BTO,,Y4000\nTv Host,HSN,Y4000\nH I E I,,Y4000\nFilm/Television Editor,Creative Differences,Y4000\nREGIONAL VP,HEIGHTS FINANCE/REGIONAL VP,F1400\nDiagnostic Radiologi,X-Ray PA Association,H1130\nDir. of Manufacturin,US Smokeless Tob. Co.,A1300\nCHIEF,DEPARTMENT OF VETERAN AFFAIRS,X3000\nLEGISLATOR,STATE OF GA,X3000\nPRESIDENT,EM FEDERAL ENGINEERING CORP,B4400\nATTORNEY,\"SCHERR, LEGATE & ERLICH\",K1000\nALPINE MEADOWS,,T9300\nSOUTH KEELER PROPERTIES,,F4000\nRC STORAGE,MANAGER,G0000\n\"GOV'T RELATIONS\",CASCADE ASSOCIATES,K2000\nSVP Human Resources,C&F Bank,F1100\nINFO REQUESTED,Hanson Aggretates West Inc.,Y4000\nATTORNEY,\"STROOCK, STROOCK & LAVAN L.L.P.\",K1000\nATTORNEY AT LAW,DILWORTH PAXSON LLP,K1000\nMedical Imaging Equip,Self,Y4000\nPRINCIPAL,HEALTH QUEST CORPORATION,H0000\nMORRIS ELECTRIC,,B3200\nPR,RADIATION MONITORING DEVICES INC,Y4000\nLocal Rep,LIUNA,L1500\nMEDICAL DIRECTOR NICU,\"PEDIATRIX MEDICAL SERVICES, INC\",H1130\nHARTER TRUCKING & EXCAVATING,,T3100\nPHYSICIAN,FAMILY OFFICE,Y4000\n\"MCGLINCHEY, STAFFORD, CELLINI ET AL\",,K1000\nInvestment Managemen,AEA Holdings/Aetos Capit,F2100\nKINNINGER FINANCIAL,,K2000\nNATIONWIDE/SENIOR VICE PRESIDENT/CO,,F3100\nDOCUMENT MANAGEM,THE PAPER EXCHANGE,Y4000\nDURANGO HERALD,,J7400\nClinical Social Worker (And Community,Carolina Partners in Mental Health Car,Y4000\nChief Operating Officer,\"Many Furnes, Inc\",Y4000\n\"ARTIST - PORTRAITS, EDITORIAL\",SELF,G5240\nREAL ESTATE EXECUTIVE,BROOKFIELD OFFICE PROPERTIES,F4000\nCONSULTANTS IN GASTROENTEROLOGY,,H1130\nEmergency Physician,\"Stephen Douglas Chin, MD, FACEP\",H1100\nLawyer,Lafollette Godfry Ka,Y4000\nState Government Affairs Direc,Cigna,F3200\nMT STATE COLLEGE,,H5100\nPARTNER,CAL STRATEGIES/PARTNER,Y4000\nMANAGER,DURAND BUILDERS,Y4000\nInvestment Mgr.,Daltan Investments,J1200\nCOMPUTER PROGRAMMER,PROGESSIVE INSURANCE,F3000\nPRESIDENT,KANE REALTY CORPORATION,F4200\nAttorney,Turbin Law Firm,K1000\nEXECUTIVE VICE PRESIDENT,CORPORATE AMERICA FAMILY CU,F1300\nTELECOMMUNIC,ALJRLON COMMUNICATIONS,J1100\nATTORNEY,WICKEL SMITH,Y4000\nPRESIDENT,BROWN CAPITAL,F0000\nADMISSION COORDINATOR,GEORGETOWN UNIVERSITY,Z9500\nSr. Advisor,\"Akin, Gump, Straus, Hauer & Feld\",K1000\nCEO,Infinity Financial Group,F0000\nREAL ESTA,SCULO CASE DEVELOPMENT CO,Y4000\nOwner/Attorney,Bosshard Parke,K1000\nREAL ESTATE,\"THE MC KINNEY COMPANY, INC.\",Y4000\nAttorney,Retired,J6200\nRAVEN CONSTRUCTION INC,,B2000\nVice President,Brodeuer Worldwide,Y4000\nPRES,INFRASTRUCTURE ASSOCIATES INC.,Y4000\nLUMMUS INDUSTRIES INC,,M2300\nExecutive Director,Southeastern Vermont Community Action,JH100\nSENIOR VP,MONARCH BEVERAGES,G2850\nFOSROC INC,,M1000\nPRES,BARBOUR GRIFFITH & ROGERS INC.,K2000\nANATHESIOLOGY CONSULTANTS OF THE PA,,Y4000\nCONTRACTOR,GULFCOAST UTILITY CONSTRUCTORS INC.,B1500\nWalt Disney Company,,C2000\nPresident,GSD&M,Y4000\nSENIOR VP,\"MCKINLEY, INC.\",F4000\nPhysician,U.S. Veterans Administration,J1200\nAttorney,Self-emoloyed,J1200\nNegotiator,Hewlett-Packard,J1200\nGovernment Affairs,R&A Group,K2000\nInvestments,Tejon Exploration Company,E1150\nDEALERSHIP EMPLOYEE,ATWOOD CHEVROLET INC,T2300\nINSURANCE BROKER,SEGUROS MULTIPLES,Y4000\nPRESIDENT,THE BANK OF BAKER,G1200\nprofessor,columbia university,Z9500\nRETIRED (CHIEF JUSTICE),N/A,X1200\nEngineer,The Mitre Corp,D3000\nPRESIDENT,SILVER GIVING FOUNDATION,Y4000\nVICE PRESIDENT,GENSLER,Y4000\nTEETER ASSOCIATES INC,,Y4000\nSVP FINANCIAL OPERATIONS,\"AHS MANAGEMENT COMPANY, INC.\",H3000\nVICE PRESIDENT,SINA PEARSON TEXTIES,Y4000\nCARGRILL INC,,Y4000\nAttorney,\"Packard, Packard & Johnson\",K1000\nSALES,MONSTER,Y4000\nLUMBERMAN,\"R.E. SWEENEY CO., INC.\",B5200\nLegal Expert,Mechelextex Inc,Y4000\nOwner,\"M&F Stringing, LLC\",Y4000\nCPA,Gus Schrum & Co,Y4000\nSTATE OF LA,,Y4000\nVenture Capital,Buchanan Investments,F7000\nCORNERSTONE REAL ESTATE SVCS,,F4000\nINVESTMENT ANALYST,TRILLIUM ASSET MANAGEMENT CORPORATION,F2100\nADULT CARDIOLOGY,Colorado Heart Institute,H1100\nSTATE OF TEXAS STATE JUDG,,X3000\nMALL PROPERTIES INC,,F4100\nManager,Dovex Corporation,Y4000\nCHAIRMAN,U. S. INSPECT LLC,G5200\nARCHIVIST,UNIF OF MICHIGAN,J1200\nCARDIOLOGY ASSOCIATES OF PALM BEACH,,H1130\nKLEMKOWSKI & PANOS PA,,Y4000\nMuseum Director,Lacma,Y4000\nSELF EMPLOYED,PHYSICIAN,Y4000\nOWNER,ALLIANCE ENERGY,E1000\nSelf Employed,Dentist,H1400\nMANAGING PARTNER,V. JOHN WHITE AND ASSOCIATES,K1000\nCHAIRMAN/CEO,THE CITIZENS BANK OF WINFIELD,F1100\nCANDIDATE STATE ASSEMBLY,SELF,Z9500\nPHYSICIAN,RPI,Y4000\nInformation Requeste,Activist,X0000\nINMAGIC INC,,J7400\nFarmer,Scates Farm,A1000\nTV production,Harpo Inc,C2400\nENGINEER,TEXAS PETROLEUM LP,Y4000\nTURNER FOUNDATION,,X4100\nPRESIDENT,FOSTER NEEDLE CO INC,Y4000\nPRESIDENT,\"H.C. COMPANIES, INC.\",F5000\nOWNER,KARL S CARPET CLEANING,Y4000\nPartner,Capitol Tax Partners LLP,K2000\nPRIVATE EQUITY INVESTMENTS,ANDREW W. BYRD & COMPANY,F2100\nINFO REQUESTED,CENTRE FOR NURO SKILLS,Y4000\nCHAIRMAN & CEO,INTELLISIS,Y4000\nMASSAGE THERAPIS,SELF,Z9500\nCOMMUNITY ACTIVIST,SELF,J7500\nATTORNEY,\"VICOWTO SODORBORG, LLC\",Z9500\nPRESIDENT,\"BELL AMBULANCE, INC.\",H3000\nVice President,\"Regal Marine Industries, Inc.\",T6100\nATTORNEY,CORELLA BYRNE,Y4000\nComposix Co./business owner,,\nBanker,Fulton Bank,B2000\nMORTGAGE BANKER,Indy Mac Bank,F4600\nSalesforce.Com Inc,,G5270\nInvestment Banker,Millennium Capital,F2100\nCROSBY & HEAFEY,,K1000\nTAX VP-DEPT HEAD,,F1400\nOwner,Diamond Ice Prints,C1300\nINVESTOR,SCION CAPITAL GROUP,Y4000\nSenior,International Paper Company,A5200\nHOMEMAKER,CHILD ADVOCACY PAC,Y4000\nAttorney,Moffat Thomas,K1000\nConsultant,The EBW Group Inc,Y4000\nCEO,NEW ULM QUARTZITE QUARRIES,Y4000\n\"CEO, PhD\",\"Center Point, Inc\",H3000\nCARDIOTHORACIC SURGEONS,,H1130\nPRESIDENT,RED ROCK RANCH,A3000\nDirector,Jacobs Engineering Group Inc.,B4000\nRED SPRINGS FUEL OIL CO,,E1100\nAttorney,MCGLYNN & GLISSON APLC,K1000\nEXECUTIVE,SARGENTO/EXECUTIVE,A2000\nGeneral Manager,Friend Motor Sales,T2300\nVP,DEL WEBB,F4100\nPRESI,NEW ENGLAND ENERGY MANAGEMENT,E1000\nREAL ESTATE,FOSSETT REALTY,J1100\nANN DANIEL,,Y4000\nAttorney,US Fed Gov,J1200\nPRESIDEN,ARTER FINANCIAL STRATEGIES,F0000\nLAWYER,\"JONES, BICK, KISTNER, JONES & LORENZ\",Y4000\nPresident,Mar Owen Oil & Gas Corp.,E1100\nRice Street Music Co,Self employed,Z9500\ndba Norah Dooley Sto,storyteller/author,Y4000\nREAL ESTATE BR,HARRELL & ASSOCIATES,F4200\nRETIRED,COLLEGE OF DUPAGE,J7400\nMedical Technologist,Kettering Medical Center,H2000\nSALES,ADMIRAL BEVERAGE,Y4000\nDR D SILVERSTROM,,Y4000\nReal Estate Agent,Chin Realty,F4200\nAttorney,\"Rubin, Winston, et. al\",K1000\nPERIODONTIST,DENTAL ASSOCIATES LTD,J1100\nWriter/Director/Filmmaker,Self employed,G0000\nbusiness owner,Underground Devices Inc,Y4000\nprofessor/consultant,University of South Florida/self-emplo,Z9500\nPRESIDENT,ALLIANCE CONSTRUCTION,B1000\nChairperson,The Raiser Organization,Y4000\nAE ASSOCIATES,,K2000\nU.S. CHAMBER OF CO,COUNCIL DIRECTOR,G1100\nPresident,\"Aldebaran Enterprises, Inc.\",Y4000\nCEO,COGNEX CORP,J5100\nSenior Development Associate,Welsh Companies Inc,F4000\nAttorney,Public Interest Law Center of Philadel,Y4000\nVP & Corporate Secre,Sallie Mae,F1410\nAcupuncturist,Self,H1700\nPHYSICIAN,WOMEN OB-GYN ASSOCIATES,H1100\nMOBILEMEDIA,,Y4000\nATTORNEY,ANDERSON & ANDERSON/ATTORNEY,K1000\nMEDICAL DIRECTOR/PHYSICIAN,MIND AND BODY WELLNESS CTR.,Y4000\nEntrepreneur,PJW Enterprises LLC,Y4000\nTELECOMMUNICATIONS,INTERACTIVE DATA AND TELEPHONE,C4100\nSALES SUPPORT,PDI INC.,Y4000\nSIMMONS LAW,,K1100\nPresident,Widmeyer Communications,J7300\nPartner,CJ Nesti Materials,Y4000\nAttorney,Moe Legal Services,Y4000\nOwner,Charles Hiltzheimer & Assoc. Inc.,Y4000\nOWNER,CARLYLE FUNDING CORP,Y4000\nATTORNEY,SCHNEIDER WALLACE ET AL,Y4000\nDECOTIIS FITZPATRICK,,K1000\nFINANCIAL,SMITH BARNEY - CITIGROUP,F2100\nRealtor,Hasson,Y4000\nAttorney,Mckenna Storer,Y4000\nadviser on internati,self-employed,J1200\nManager and Agent,Ted Kurland Associates,C2000\nVASCULAR SURGE,TEXAS VASCULAR ASSOC,H1130\nATTORNEY,LATHEN & WATKINS,Z9500\nCITY OF SAN FRANCISCO,,B1000\nMANAGER,THE SHAW GROUP,B1000\nPHYSICIAN,UNIV. OF WI SCHOOL OF MEDICINE & PUBLI,Y4000\nreal estate agent,self employed,F4200\nCAPRI RESTAURANT,,G2900\nPATHOLOGIST,UNITED HOSP OF ST PAUL,H1130\nOWNER,FLYNN BROS. CONSTRUCTION INC.,B1500\nhomesteader,self,G0000\nSoftware Developer,\"Robert M Blumen, Inc\",C5130\nCEO,\"Tiger Optics, LLC\",Y4000\nSpecial Educator,ECF Kayne Eras Center,Y4000\nPhysician,Seattle King County Health Dept,Y4000\nPresident,\"Tennessee Valley Towing, Inc.\",T6200\nPRESIDENT,WINNER & MANDABACH,Z9500\nMARKETING,COMMONGROUND,Y4000\nDIV SR VP,POLAR AIR CARGO WORLDWIDE,T1500\nAnderson Management,Self,Y4000\nTeacher / Seminar Provider,Self employed,H5100\nPARTNER & VICE PRESIDENT,FOCUSED ADVOCACY,Y4000\nBuilder Member Single-Family Spec/Trac,Airhart Constr Co,B2000\nAttorney,\"Perrin, Landry, deLaunay, Dartez & Oue\",K1000\nM.D.,SELLF-EMPLOYED,H1100\nBUTLER FAIRMAN & SEUFERT INC,,Y4000\nPRESIDENT,DEBRA K LEWIS INC,G1200\nPresident,Concord Servicing Corp,Y4000\nAttorney,Bryant Jupiter,Y4000\nSales,\"D & A Building Services, Inc.\",Y4000\nSCHOOL BUS DRIVER,NORTHVIEW PUBLIC SCHOOLS,Y4000\nReal estate,Heartland Realty,F4200\nALLIANCES NW,,Y4000\nAttorney,\"United Steelworkers of America, AFL-CI\",LM100\nLt. Colonel USAF Ret,N/A,J1100\nREALTOR,CRYE-LEIKE,F4200\n\"DRS SIGLER, ROSKES ET AL\",,H1100\nCOMPLIANCE MANAGER,QUINTILES,H4300\npresident,Enterprise Computer Syst.,C5100\nPRESIDENT,BARTOW FORD COMPANY,T2300\nATTORNEY,\"PASCUZZI O'NEILL & MOORE\",Y4000\nORGANIZING COORDINATOR,\"INTERNATIONAL UNION, UAW\",LM150\nVP,DEPENDABLE HIGHWAY EXPRESS,Y4000\nPresident,Schaefer Stevedoring Inc,Y4000\n\"AGEN FOR INT'L DEVL\",,Y4000\nPRESIDENT,MAMIYE BROTHERS INC.,M3100\nREALTOR AND MUSIC TEACHER,SELF-EMPLOYED,F4200\nProducer,Escape Artists,C2000\nChairman of the Board,Thornton Oil Corp,E1170\nSCRIPPS,,H2100\nBUSINESS EXEC,PLANNED REALTY GROUP INC,F4200\nWKY HARDWOOD REVIEW,,Y4000\nC.F.O.,P. SCHOENFELD ASSET MANAGEMENT,F2100\nDir HR,Jack L Massie Contractor Inc,B1000\nINFO REQUESTED,Executive Kitchens,Y4000\nCEO,Brightstar Corporation,C4600\nPresident,Dunbar Sales Co,Y4000\nCFO,CKE RESTAURANTS/CFO,G2900\nPOTTS EXPLORATION,,Y4000\nBOARD MEMBER,CFIDS ASSOCIATION OF AMERICA,JH100\nSMALL BUSINESS OWNER,FOREST CITY PAINT & SUPPLY CO. INC.,Y4000\nRETIRED - UTILITY,NONE,Y1000\nDOMESTIC GODDESS,SELF,Z9500\nVICE PRE,SOUTHERN CALIFORNIA EDISON,E1620\nAttorney,Doherty Law offices,K1000\nPresident,Eskandari Stone Inc.,B5100\nExecutive,Stonnington Group,Y4000\nEXECUTIVE,SKYBITZ INC.,T3100\nEditor,Edelman & Gold LLC,Y4000\nInvestments,Crews & Asso,Y4000\nBanker,JP Morgan Chase,J5100\nPART,SIMONS & JASPOVICE PARTNERSHIP,Y4000\nMORTGAGE BANKER,Gateway Funding Diversified Mortgage C,F4600\nResearch Administrat,Texas Tech University,J1200\nCorporate Counsel,Cox Communications  inc.,C2200\nTreasurer,Covanta Energy,E1630\nGREENBERG & TRAINING,,K1000\nPhysician - Self,\"Raymond A Raskin, MD\",H1100\nOwner,R & B Properties,J1200\nFKW INCORPORATED,,Y4000\nAssistant Vice President,Great-West Life & Annuity Insurance Co,F3300\nSOFTWARE ENGINEER,CLINICAL DATA,Y4000\nTHE GRAND UNION CO,,G2400\n,THE GOODYEAR TIRE & RUBBER COMPANY,Z9500\nCOURTESY CHEVROLET INC,,T2300\nATTORNEY,COLEMAN YOVANOVICH & COESTER,Y4000\nCHILD CARRE,\"CAMPUS CHILD CARE, INC.\",Y4000\nContractor,\"Glen Construction Co., Inc.\",B0500\nAttorney,\"Lipscomb, Johnson, Sleister, Dailey &\",K1000\nFINANCIAL CONSULTANT,MURRER BROTHERS L.L.C./FINANCIAL CO,Y4000\nHS ADMINISTR,MOVENMENT COMPENNATIVE,Y4000\nK & 2 PARTNERS,,Y4000\nPresident,Barrett Bros Oil & Gas,E1100\nAltman & Nix,,K1000\nManaging Director,JNK Securities,F2100\nExecutive Director,North Coast Railroad Authority,T5100\n\"President, Utah Divi\",First American Title Insurance Co.,F4300\nTAX MANAGER,\"HERFF JONES, INC.\",M3400\nPhysician,Dubuque ENT Head and Neck Surgery,H1130\nOWNER,NUTRIA SPORT,Y4000\nOFFICE MANA,ANDREWS EXCAVATION INC.,B3600\nSTRATEGIST,M.E.C.M. LTD.,Y4000\nCFO,\"AIRPORT EQUIPMENT RENTAL, INC\",G5300\nSafety Group Manager,\"Lovell Safety Mgmnt Co, LLC\",Y4000\nNYS STOCKBROKER,,F2100\nEXECUTIVE,HOLIDAY COMPANIES,Y4000\nDUNAGAN YATES & ALLISON PC,,Y4000\n\"CABANIAS, BURKE ET AL\",,K1000\nPresident,Towne BMW MINI,T2300\nManager,Discovery Science Center,X4200\nKARRINGTON INDUSTRIES INC.,,Y4000\nTMC COMPANIES,,Y4000\nSales,The Outfit,Y4000\nPhysician retired,Retired,J7400\nOWNER,FOGHORN CONSULTING,G5270\nPRESIDENT AND CEO,CONNECTICUT HOSPITAL ASSOCIATION,H2100\n\"PONTIAC NAT'L BANK\",,F1100\nR & S FARMS,,A0000\nINTEGRATED WASTE,,E3000\nSARES REGS GROUP,,F4000\nEthics Expert,Pfizer,J7400\nDOCTOR,MED COLLEGE OF WI/DOCTOR,Y4000\nGARY HART,,Y4000\n\"NATIONAL SALES MANGER, GOLDEN VALLEY,\",\"COMCAST SPOTLIGHT, LLC\",C2200\nCASTLE CONSTRUCTION CORP.,,B1000\nManagement,Stareward Hotel,T9100\nattorney,Raggio & Raggio PLLC,Y4000\nInvestments,Harvard Management Co,F2600\nAVMAPAC,TENESSEE VALLEY ANIMAL CARE,A4500\nWeekly Newspaper Pub,Self-Employed,G0000\nVice President,\"Dawson Insurance Agency, Inc\",F3100\nComputer Application,Wa Dnr,Y4000\nFILM PRODU,ARMENIAN FILM FOUNDATION,C2400\nMOORE & FITZPATRICK,,F5100\nATTORNEY,\"ROSENZWEIG, JONES & MACNABB, P.C.\",Y4000\nRPN INC,,J1100\nBRICKLAYER,TRI STAR MASONRY,B3000\nCEO,XTEK INC.,Y4000\nSELF - EMPLOYED,,Z1100\nDOCTOR,PALMETTO OBGYN,H1130\nPH,PREFERRED ANESTHESIA CONSULTANTS,H1130\nBUSINESS MANAGER,MOY SAM CORP.,Y4000\nCER,BELL FOSTERBOWMAN FLEMING P. A.,F5100\nState Sales Manager,AFLAC,Y4000\nAPT AND HOUSE MANAGER,,Y4000\nSMALL BUSINESS (MACHINE SHOP) OWNER,\"FLATHERS PRECISION, INC\",Y4000\nCOMPLETE INC,,Y4000\nConsultant,Arbor Land Consultants,Y4000\nAMERICAN DREAM FOUNDATION,,X4000\nELECTROPHYSIOLOGY,Augusta Cardiology Clinic,H1100\nOwner,Kennedy Concrete,B5100\nACCOUNTANT,WILDBLUE,Z9500\nACCOUNT SUPERVISOR,VOX MEDICA,Y4000\nPHARMACIST,WHITES INC,Y4000\nPRESIDENT,Hershey`s Automotive,T2000\n\"CAUTHORN, HALE, HORNBERGER\",,Y4000\nEXECUTIVE,\"RELIABLE PARTNERS, LLC\",Y4000\nPRESIDENT,HENRY CROWN & CO.,F4200\nSENIOR MANAGING DIRECTOR,CANTOR FITZGERALD,F2100\nBANKER,WOOD FOREST NATIONAL BANK,F1100\nATTORNEY,HELP LEGAL AID,K1000\nPRESIDENT,\"DUKE'S MANAGEMENT CORP\",Y4000\nCompany President,Ace Reporting Svcs,Y4000\nSVP & CTO,Federal Home Loan Mortgage Corporation,F4600\nI.T. TECH,ACORN TECHNOLOGY,Y4000\nPRESIDENT,BENTLEY UNIVERSITY,H5100\nDirector of Storytelling,Stagebridge,Y4000\ndirector/composer,\"ragamoo, inc\",Y4000\nOffice Manager,\"C C Carpentry, Inc\",Y4000\nEXECUTIVE VP,BORSHOFF JOHNSON & CO.,J1100\nMortgage Banker,Option one Mortgage,F4600\nMANAGING DIRECTOR,METWEST FINANCIAL,F5000\nPresident & CEO,First Cash,F0000\nInvestment Manager,Mercator Asset Management L. P,Y4000\nCAYLER LOCKHART CAMPBELL EVANS,,Y4000\nCHAIRMAN OF THE BOARD,INTEL,C5110\nFellow,Brookings Institute,X4000\nATLANTIC REALTY DEVELOPME,,F4200\nPARTNER,\"BOWLING & JOHNSON, PLLC\",K1000\nOwner,Aspen Group,G5270\nAUSTIN LEWIS & ROGERS,,K1000\nPRESIDENT,HNTB CORPORATION,B4000\nGEOSCIENCE ADVISOR,HEADWAVE/GEOSCIENCE ADVISOR,Y4000\nVSP/CLO/GENERAL COUNSEL,,F3200\nHOUSEWIFE & MOTHER,,J1100\nFundrising Consultan,Self-employed,G0000\nExecutive,Zizza and Co,Y4000\nHIGHER EDUCATION,SLIPPERY ROCK UNIVERSITY,H5100\nTHE BERNS COMPANY,,J1100\nOWNS SHOP FOR PERFORMING ARTS,,J1200\nAttorney,\"David Lee and Associates, PLC\",Z9500\nSenior VP- Leasing,Boston Properties Inc,F4000\nGATZONIS CONS,,Y4000\nVICE PRESIDENT,\"MOLLY'S FUND FIGHTING LUPUS/VICE PR\",Y4000\nCOMMUNICATION,MEADE SCHOOL DISTRICT,X3500\nPHYSI,UNIVERSITY OF COLORADO & NIST,J1200\nTechnologist,Anne Arundel Medical Center,H2100\nVICE PRESIDENT,MACERICH,F4100\nCEO,AMONIX INC.,Z9500\nLEVINE & EISENBERG,,Y4000\nPresident,Juckette Management Services,G1200\nEXECUTIVE,STONY POINT GROUP INC.,F2100\nCHAIRMAN,\"FIVE STATES ENERGY CO., LLC\",E1120\nELECTRICIAN,RETIRED/ROCKWELL INSTITUTE,X1200\nMGA PARTNERS,,Y4000\nOwner,Pile Driving Equipment Co.,Y4000\nSYSTEM ADMINISTRATOR,MERCHANT SOLUTIONS INTERNATIONAL,Y4000\nWOODFIN SUITES HOTELS LLC/CHAIRMAN/,,T9100\nDirector,Storm Media Studios,Y4000\nVICE CHAIRMAN,N/A,J9000\nHARTFORD CONCRETE PROD,,B5100\nCHIEF ENGI,CA WATER SERVICE COMPANY,E5000\nVICE P,TRAVELERS PROP. CASUALTY CO.,F3400\nCo-Chairman,Podesta Mattoon,K2000\nOWNER,MIDWEST LASER THERAPY,Y4000\nPresident & CEO,The Koffler Group,Y4000\nExternal Affairs and Public Policy,Daimler,T2000\nAttorney,Sher Herman Bellone & Pipograph,K1000\nFINANCIAL RESEARC,TWIN CAPITAL MGMT,Y4000\nREAL ESTATE,IAT BAHAMAN LTD,F4000\nSR PROGRAM ANALYST,CITY OF TAMPA/SR PROGRAM ANALYST,X3000\nFIRST DISTRICT COUNCILOR,OHIO STATE MEDICAL ASSOCIATI,H1100\nInvestment Mangement,\"Torray, LLC\",Y4000\nCivil Engineer,HMB Engineer Inc,B4400\nAttorney,U.S. Securities And Exch,X3000\nVP Investor Relation,\"Smithfield Foods, Inc.\",G2300\nENGINEERS,UNITED DEFENSE L.P.,JE300\nATTO,DEWAYNE ZINKIN ATTORNEY AT LAW,K1000\nPRESIDENT,CENTURA CAPITAL,F4600\nPresident,UniCare Inc.,Y4000\nINVESTMENT MANAGER,RESERVOIR CAPITAL GROUP,Z9500\nPACIFIC FINANCIAL GROUP,,Y4000\nadventure travel con,Andean Treks Inc,Y4000\nSNELL ELECTRIC,,Y4000\nPhysician,NextGen Healthcare,Z9500\nOPERATIONS AGENT,ROCK-IT CARGO,Y4000\nADAMS-BURCH INC,,Y4000\nSvp,Starwood Hotels & Resorts,T9100\nMarketing Director,\"Bernardin, Lochmueller, Assoc.\",B4000\nPERRY PATRICK LAW FIRM,,K1000\nSELF/FAMER/RANCHER,,A1000\n\"Vice President, Trade, Export and Cont\",EADS North America,D2000\nVice President,\"J.C. & Son's, Inc.\",Y4000\nAdvisor,Hogan & Hartson LLP,K1000\nR.N.C. NATIONAL COMMITTEE MEMBER,REPUBLICAN PARTY OF FLORIDA,J1100\nPhysician,Texas Specialist Center Inc,H1100\nPARALEGAL,AT&T INC.,C4100\nSocial Worker,Salem State College,H5100\nCHIEF EXECUTI,F.I. INVESTMENT GROUP,F7000\nReal Estate,Self,F4200\nBUSINESS,TRANSIT RESOURCE CENTER,Y4000\nPRES,REGISTRAR AND TRANSFER COMPANY,Y4000\nCONSULTANT,LANDMARK STRATEGIES,G5260\nBUTTS COUNTY SCHOOL SYSTEM,,X3500\nATLANTIC & GULF FISHING SUPPLY CORP,,Y4000\nPHYSICIST,US DEPT OF DEFENSE,X5000\nCOLUMBIA ST PETERSBURG MEDICAL CTR,,H2100\nREEFER PETERBUILT,,T2300\nPRESIDENT,SPARTANBURG FOREST PRODUCTS,A5000\nOWNER,SUPREME GROOMING SERV.,Y4000\nSCHOOL PRINCIPAL,HOUSTON ISD,X3500\nCONSULTANT,FW ENTERPRISES INC.,Y4000\nInsurance,Nemco Brokerage,J1200\nWESTERN ENTERPRISES,,Y4000\nRestaurateur,Team St. Louis; LLC,G2900\nIBANKER,FIRETREE PARTNERS,Y4000\nClinical Psychologist,VA Health Care System,Y4000\nHome Repair,Self employed,F5100\nPresident,Arwood Inc.,Y4000\nSPARGENBERG,,Y4000\nCANTILO MAISEL AND HUBBARD,,K1000\nLEONARD ARCHIVES INC,,Y4000\nJOYCE FARMS,,A1000\nKANTER AND COMPANY,,F5100\nParalegal,Alan N McClain,Y4000\nCEO,OGLETREES INC,Y4000\nTAMBLE ELECTRIC INC,,Y4000\nCPA,\"LYNN W OWEN III, CA\",Y4000\nGEOLOGIST,EAST TEXAS OIL & GAS LLC,Y4000\nOwner,R P K  Unlimited Inc.,Y4000\nController,Merrick Intl,Y4000\nPresident,Benssons,Y4000\nCarpenter,Lyons Industries,Y4000\nTHE HOME EDUCATION,,H5000\nExec.,Population Communications Internat,Y4000\nHERSHEL GOBER & ASSOCIATES,,Y4000\nOncology Nurse Practitioner,Columbus Regional Healthcare Systems,Y4000\nHOLISTIC HEALTH COUNSELOR,YOUR VERY GOOD HEALTH,Y4000\nASSMAN IMPLEMENT INC,,A4200\nSTAFF SCIENTIST,RIGHT WORKS INC.,Y4000\nTAFT CONTRACTING CO,,B3000\nProject Executive IT,Not employed,Y1000\nATTORNEY,WONG FLEMING,Y4000\nWCI,,F4100\nPHARMACIST,DICKSON APOTHECARY/PHARMACIST,Y4000\nOWNER,DUGAN BOX & COMPANY,Y4000\nPROGRAM MANAGER,MAGNA STEYR,Y4000\nBEVOLO LIGHTING,,M6000\nEXEC. DIRECTOR,MATA,Y4000\nTRITON INVESTMENT MANAGEMENT CORP,,F0000\nRINGER ASSOCIATES,,F3400\nREAL ESTATE,\"SW MGMT, LLC\",F4000\nelectrical engineer/,Smartronix,Y4000\nCEO,Mack-Cali Realty Corporation,F4100\nVICE PRESIDENT SALES & MARKETING,PATRON SPIRITS COMPANY,G2820\nCROWN PACKING,,Y4000\nNEUMEIER INV. COUNSEL,,JE300\nGRAY COMMUNICATIONS,,Y4000\n\"System Executive, Government Relations\",Memorial Hermann Healthcare System,H2100\nGILLILAND INSURANCE,,F3100\nCEO,Silverman Companies,F4100\nSTATE OF GEORGIA,,J1100\n\"PEAKS REAL ESTATE - SOTHEBY'S INTER\",,F4000\nmanager,state farm insurance,F3400\nInformation Requeste,Marta,Y4000\nH PARNEGG,,Y4000\nSr. Vice President,South Nassau Communities Hospital,H2100\nECONOMIST,US INTERNATIONAL TRADE COMMISSION,Z9500\nPRESIDENT,PINES INVESTMENTS,F0000\nATTORNEY,\"GARDEN CITY GROUP, INC./ATTORNEY\",Y4000\nLEG,AMERICAN LAND TITLE ASSOCIATION,F4300\nPRESIDENT,WEST SIDE BEER DISTRIBUTING/PRESIDE,G2850\ndeveloper,Ersa Grae Corp.,F4100\nchairman/CEO,\"ICOP Digital, Inc\",D6000\nBusiness Owner,\"National Tax Advisors, Inc.\",G5270\nGOVERNMENT CONSULTING,\"BRONNER GROUP, LLC\",G5270\nPresident,Fangman Financial,F0000\nPRESIDENT,SOWDEREN PACKAGING,Y4000\nAttorney,Thomas P. Pappas & Associates,K1000\nREAL ESTATE BROKER,JOHNSON REALTY ADVISORS INC.,F4200\nGeneral Manager,WSFL-TV,C2100\nBUILDER,COVINGTON CONTRACTING,Y4000\nGlobal Head EM Trading Strategy,Citigroup,F1100\nCFO,US ENTERPRISER INC,F4200\nTUPPERWARE CORPORATION,,M4000\nSALES,GOINDUSTRY DOVEBID,Z9500\nPlains Exploratory & Productio,,E1120\nEXECUTIVE,SIMSBURY BANK,Y4000\nPresident,Corporate Concepts,Y4000\nSENIOR VICE PRESIDENT,\"MACYS, INC.\",G4300\nEducator,\"Globalkids, Inc\",Y4000\nTeacher,Christ Church Nursery School,Y4000\nATTORNEY,EVANS & BRYANT,K1000\nPRESIDENT CEO,FAR INDUSTRIES,Y4000\nCONSULTANT,ZEFER,C5140\nVANDERBILT GROUP LLC,,Y4000\nSales,Diversified Forest Products,A5000\nBILLBOARD ADVERTISIN,\"KEY-ADS., INC.\",Y4000\nScientist,Stony Brook University,H5100\nLOBYIST,SELF,K2000\nTUBAUGH REMOLDING LLC,SELF,B1000\nGaming Manager,Susan Lederer,G6500\nVP CHLORALKALI MKTG SVC/CALHYP,\"PPG INDUSTRIES, INC.\",M1600\nADVOCACY,\"PFIZER, INC\",H4300\nPresident,Independent Office Products and Furnit,G0000\nRetired,FedEx Express,T7100\nAttorney,DIMA,Y4000\nDEEGAN DAY DESIGN,,G5000\nMember,\"Capital Counsel, LLC\",K2000\nExecutive,American Jet Engine,Y4000\nExecutive,\"Palladian Partners, Inc\",Y4000\nSURGEON,UCSF,Z9500\nPortfolio Manager,\"BEAR, STEARNS & COMPANY INC.\",F2300\nCPA,\"MCMANUS & BONE, LLP\",Y4000\nPSYCHOLOGIS,BRONX COMMUNITY COLLEGE,Z9500\nTechnician,University Of Alaska Fairbanks,H5100\nSELF/FARMER/MEAT PROCESSER,,G2300\nEVP and General Mana,BMG/RCA Records,C2600\nOwner,Joseph Gallo Farms,A1000\nCOLUMBIA MACHINE WORKS,,M2300\nJOHNS HOPKINS UNIVERSITY,,J5000\nOwner,Adelard and Edwards Inc,Y4000\nTHE INSTITUTE OF BUSINESS CAREERS,,H5200\nEXECUTIVE,CHASE PROPERTIES,F4000\nVICE-PRESIDENT,META HOUSING CORPORATION,Y4000\nMOHR-BELL INC,,Y4000\nATTORNEY,\"CAMPBELL DELONG, LLP\",Y4000\nWEAR ME APPAREL CORP,,Y4000\nOWNER,COMPARE SUPERMARKET,G2400\nENGINEER,STAFFING INOVATIONS,Y4000\nMADISON REALTY GROUP INC,,F4200\nSVP TREASURER,METROPOLITAN LIFE,Y4000\nGUERRIERI VENTURE PARTNER,,Y4000\nDir F & A,England & Company,Y4000\nEXEC. DIR.,INDIANA SPECIALTY GROUP,Y4000\nEngineering Manager,Nasa,X3000\nNICHOLS-HOMESHIELD,,Y4000\nFOOD LION/KROGER/REGISTERED PHARMAC,,G2400\nBLOSSMAN OIL,,E1100\nCHIEF EX,LOGAN BANK & TRUST COMPANY,F1100\nOWNER,SHOUHAYIB INVESTMENT,Y4000\nKAISER FOUNDATION HEALTH PLAN INC,,J1200\nCEO,ENGLEWOOD COMM HOSP,H2100\nTV producer,Self,C2300\nVICE PRESIDENT/CONTROLLER,DAVITA,H3200\nKPL VENTURES,,C4600\nHOMEMAKER,SELF EMPLOYED,H1130\nPresident/CEO,Legacy Health System,H2100\nPRESIDENT AND CEO,\"LAND O'LAKES\",A2000\nATTORNEY,WINSTEAD PC,Z9500\nPRESIDENT & CEO,PLANNED PARENTHOOD OF THE ROCKY MOUNTA,J7150\nCEO,Vulcan Materials,B5100\nIMMIGRANT CENTER,,Y4000\n\"VP, INFORMATION SERVI\",DIRECT SUPPLY,H4100\nPRODUCE MERCHANT,\"FRIEDA'S INC.\",Z9500\nEXECUTIVE,OCTFCU,F1300\nAd Agency President/Co-Owner,Outer Circle Creative Media Concepts,Y4000\nconsultant,self Employed,G5200\nPRESIDENT,MILLSTONE CO.,Y4000\n\"Electrical Contractor, Preside\",\"Electrical Contractors Hawaii,\",B3200\nCRNA,CMM Anesthesia LLC,H1710\nAttorney,\"SuttleLaw, PC\",Z9500\nFILM LOCATION SCOUT,,Y4000\nScientist,Univer Of Arizona,J1200\nMETZE SERVICENTER,,J7400\nCATTLE FEEDER,SELF-EMPLOYED,A3300\nKNOXVILLE ORTHOPEDIC CLIN,,H1130\nAdministrator,Silver Lake Nursing Center,Y4000\nGGN INC,,Y4000\nEducator,Columbia University,H5100\nCOUCH & PHILIPPI,,Y4000\nInformation Requeste,Suffolk University,H5100\nEstimator,FISHER ELECTRIC,B3200\nCORPORATE EXECUTIVE,FX ENERGY INC.,E1120\n\"FANDANGLE'S\",,Y4000\nTOMS FAMILY RESTS,,Y4000\nVinter,Jefferson Vineyards,G2820\nVESTA CORPORATION,,Y4000\n\"BANKER'S CREDIT LIFE\",,Y4000\nPresident,Davis Manafort,Y4000\nKAUFMAN ORGANNAM,,F4200\nFARMS,SELF-EMPLOYED,A1000\nNeurosurgeon,Neurosurgery Assoc. Central AL,H1130\nLOVEWELL COMPANY,,Y4000\nACTOR,WARNER BROTHERS,J7400\nexecutive,Zip Cash,F1420\nCity of Santa Fe,City Councilor,X3000\nTattoo Artist/Proper,Self employed,Y4000\nANESTHESIA ASSOCIATES WAUKESHA,,H1130\nrequested,requested,X0000\nSenior Vice Presiden,Orc Malro,J7400\nSENIOR VICE PRESIDENT,TELACU DEVELOPMENT COMPANY,B1500\nBIG RIVER LUMBER COMPANY,,J1100\nACCOUNTANT,WALTER RUBENSTEIN & CO.,J5100\nDirector,Fairfax Christian School,Y4000\nOwner,Specialty Supply Corp.,Y4000\nRETAIL SALES,KANE FURNITURE,Y4000\nFINANCIAL ANALYST,IBM CORP.,C5100\n\"MC MAHAN'S FURNITURE STORES\",,G4400\nInsurance Salesman,King Insurance Agency,F3100\nMEYER WANDELMAN,,Y4000\nJASEN & JASEN,,Y4000\nMETRO DADE COUNTY,,J7400\nAEGIS HOLDINGS,,M6000\nMANAGER,C & R RESTAURANTS,G2900\nREAL ESTATE SALES,DYNAMIC PROPERTIES,F4000\nBALLARD SPAAR,,K1000\nRETIRED,PLAZA GIFTS,Y4000\nMACHINE OPPERATOR,PAPPAS & CO.,Y4000\nPRESIDENT & CEO,ROOSEVELT INSTITUTE,Z9500\nSENIOR SOFTWARE ENGINEER,AIRVANA INC,C4300\nTeacher,DISTRICT 58,Y4000\nTHE MCELROY-MINISTER CO,,F3100\nLetter Sent,Trammel Crow,F4500\nSR EXE,DEPT OF VA,X3000\nPINNACLE COMMUNITIES LTD,,Y4000\nEXECUT,BLUE CROSS BLUE SHIELD OF AZ,F3200\nNAIL TRIX INC.,,Y4000\nPRESIDENT,ANDREW LUMBER,A5000\nOWNER,WEXFORD CONSULTANTS LLC,Y4000\nDARDOFF USA,PRESIDENT,Y4000\nGTE MOBILENET,,C4300\nPrincipal,Wisznia Associates,Y4000\nMarketing Manager,Sun Microwystems,Y4000\nPRESID,RANGEMARK INSURANCE SERVICES,F3100\nBLACKSTONE GROUP LP,,F2600\nWHOLESALER,DH TIXX,Y4000\nSecretary,\"Bear Tubular Steel, Inc.\",M2100\nReal Estate,Corcoran,F4200\n,\"CURTIS, MALLET-PREVOST, COLT & MOS\",K1000\nVP - Chief Marketing Officer,First American Title Insurance Company,F4300\nJEFFRY HANUS APPRAISALS,,F4700\nATTORNEY,MAYNORD COOPER AND GALE P.C.,K1000\nMILLS CORPORATION,,F4100\nC E O,Penncara Energy,E1000\nPRESIDENT,DERYA STAFFING & CONSULTING,J7500\nFL POWER & LIGHT,,E1600\nEXEC,FOREST HILLS FINANCIAL GROUP,F0000\nINVESTMENTS,REAL ESTATE,J5100\nEXECUTIVE VICE PRESIDENT/C.F.O.,LAS VEGAS SAANDS,G6500\nAsst Counsel to the,NYS,X3000\nNC DEPT OF CRIME CONTROL AND PUBLI,,X3200\nAUBURN FAITH COMMUNITY HOSPITA,,H2100\nCEO - M INTERNATIONAL,SELF-EMPLOYED,J2200\nEXECUTIVE,\"JOHNSON ISUZU, INC.\",Y4000\nForeign Service Offi,US Dept of Commerce,X3000\nMSD OF LAWRENCE TOWNSHIP,,X3500\nInvestments,Doughty Hanson & Company,F2600\nManaging Partner,Bunnell Woulse,Y4000\nCOMMERCE PHARMACY,,G4900\nSenior Risk Analyst,Caxton Associates,F2700\nSENIOR MANAGING P,STERLING PARTNERS,F0000\nvolunteer,Blue Valley Community Action P,X4100\nPACE ADVERTISING AGENCY,,G5210\nBOWKER CONSTRUCTION,,B1500\nNURSE,\"Tulsa Health Group, PLC\",Y4000\nCELEBRATE YOUR ABUNDANCE,,Y4000\nExecutive,Bridgestone Americas Holding,J1100\nHARVEST ADVERTISING,,G5210\nGEORGE WASHINGTON UNIVERSITY SCHOOL,,J7400\nHOMEBUILDER,ENIREP INC,Y4000\nExecutive,Homeland Security Capitol Corp,F2500\nADFAC/IMAC,CHAIRMAN/PRESIDENT,Z9500\nDIRECTOR,RYO MIAMI CORP.,J6200\nnone,retired,J6200\nVICE PRESIDENT CORPO,AT&T BROADBAND,C2200\nCounselor,Fact,X4100\nFLUOR INDUSTRIES,,B1000\nNEWSOUTH CAPMANAGEMENT,,Y4000\nPHYSICIAN,REGIONAL UROLOGY,H1130\nGeneral Manager,US Lending Enova,Y4000\nPRESI,OIL SHALE EXPLORATION COMPANY,E1150\nJMR TRUST,,Y4000\nPsychology Doctor,Sole Proprietor,H1100\nSOFTWARE ENGINE,PHILLIPS ELECTONICS,Y4000\n\"HELM, PLETCHER, HOGAN, BOWEN, ET AL\",,K1000\n\"Executive VP, Bunge\",\"Bunge North America, Inc.\",A1500\nAdministrator,\"Lutco, Inc\",Y4000\nTOMIC CONSTRUCTION,,B1500\nHOOGENBOEM NOFZINGER,,Y4000\nNetwork Engineer,Liberty National Light In,Y4000\nTITLE SOURCE,,F4300\nTeacher,Adam Miller,Y4000\nPHYSICIAN,UNIVERSITY OF ARKANSAS FOR MEDICAL SCI,H5150\nPresident,\"AEL Silverman, CLU, CHFC\",Y4000\nEXECUTIVE,COVENANT TRANSPORT,T0000\n\"SVP, PRODUCTS AND SE\",\"HEALTHEDGE SOFTWARE, INC.\",C5120\nASSOCIATE PROFESSOR,UNIVERSITY OF DELAWARE,H5100\nMANAGERINFO. TECH & SUPPOR,UST INC.,A1300\nCONSULTANT,\"GREYSAGE, LLC\",Z9500\nSALES ENGINEER,THERMO-TROL,Y4000\nTLM,,Y4000\nAttorney,Jenner & Block LLP,Z9500\nACTUARY,BLOOM HEALTH,Y4000\nROLLINS HUDIG HALL OF OREGO,,F3400\nATTORNEY,LAW FIRM OF ALTON C. TODD,Z9500\nREAL ESTATE,BAUER PROPERTIES,F4000\nPRESIDENT/CEO,\"JEFF CLICK HOMES, L.L.C./PRESIDENT/\",B2000\nOwner/ Pediatrician,Washington Pediatric Associates,H1100\nLEFORCE LAND &,,Y4000\nAdminstrator,Los Angeles Unified Scho,X3500\nEXECUTIVE,GOLDMAN SACHS,F4000\nAPOLLO TECHNOLOGIES CO,,J5100\nBAKER OFFICE SUPPLY,,G4600\nCEO,GOOGLE,C5140\nexecutive,Otomelara,Y4000\nJOHNNY MANGOS,JOHNNY MANGOS,Y4000\nBanking,Western Federal Credit Union,F1300\nPRESIDENT,WAVEFRONTRESEARCH,Y4000\nGARTRELL ALEXANDER & GEBHARDT,,K1000\nFARMER,DANIELSKI HARVESTING AND FARMING,A1000\nQUALITY JEEP/EAGLE/MAZDA,,F1100\nPresident,Cameron Harris & Associates,F3100\nAccountant,\"Gil Development, Inc.\",Y4000\nCHIEF,AMADEUS CAPITAL PARTNERS LTD.,Y4000\nATTORNEY,\"VINSON & ELKINS, LLP\",K1000\nProject Manager,Veterans Health Administration,X3000\nChairman/CEO,\"Top Innovations, Inc\",G5200\nPartner,\"Prize Fight, LLC\",Y4000\nDevelopment,AMNH,F0000\nSR DESIGNER,EARL & WRIGHT CONSULT EN,Y4000\nPERILLO DEVELOPMENT,,Y4000\nKIZER & BLACK,,Y4000\nREAL ESTATE,LW CAVE REAL ESTATE,F4000\nPHILANTHROPIST,NOT EMPLOYED,G0000\nMEMORIAL SLOAN KETTENING,,H2100\nARTS ADMINISTRATOR,EMERSON COLLEGE,H5100\nCTC DISTRIBUTION SERVICES,,T7000\nREAL ESTATE,CPC,F4000\nMANAGER,AUSTIN COPPER,J1100\nPresident/CIO/Portfo,The Edgar Lomax Co.,F2100\nLOCKHEED AERONAUTICAL SYSTEMS,,D2000\nRESPIRATORY SERVICES,AUGUSTA HEALTH CARE INC.,Y4000\nATTORNEY,\"KUTAK ROCK, LLP\",K1000\nCOO,LEVEL ONE MARKETING,Y4000\nEngineer,CT Dept. of Environmental Prot,Y4000\nCAMPUS CORNER INC,,Y4000\nFRIEDMAN & UHLMEYER INC,,Y4000\n\"Local Gov't Liason\",WA State Auditor,Y4000\nFBS INFORMATION SERVICES,,F1100\nPRESIDENT,UNITED BRASS MFRS. INC.,Y4000\nLawyer,Unilever,M3300\nSALES,EAGLE ROCK DISTRIBUTING,G2850\nnot your business,not your business,Y1000\nPresident,Fortitech,Y4000\nTeacher,Suvi Borodin,Y4000\nAUTO DEALER,EZ WAY AUTO SALES,T2300\nSPECIAL ASSISTANT,MAYOR OF BOSTON,JE300\nINDEPENDENT INSURANCE AGENT / PARTNER,GENESIS FINANCIAL & INSURANCE SERVICES,F3100\nIS consutling,Self employed,G0000\nState Representative,S C House Of Represent,X3000\nAttorney,Cohen & Cohen PA,K1000\nREAL ESTATE,NEWMAN KNIGHT,F4000\nSTRATEGIC COMMUNICATIO,\"AFSCME INTL'\",L1200\nPHYSICIAN,HEIGHTS MEDICAL BLDG,H1110\nPresident,Kobayashi Group,F4100\nGOVERNMENT RELATIONS,MADISON SERVICE GROUP INC.,K2000\nOwner/Financial Cons,\"Capstone Advisory Group, LLC\",G5270\nRECORDING INDUSTRY OF AMERICA,,J7300\nORGANIZER,PEW CHARITABLE TRUSTS,X4100\nVICE PRESIDENT,STC CONSTRUCTION,B1500\nANNUITY SPECIAL,NEW WASHINGTON BANK,Y4000\nBanker,\"Canacord Adams, Inc.\",Y4000\nATTORNEY,LOOPER MCGRAW/ATTORNEY,K1000\nLANCO FASHION,,Y4000\nManager,Andrew Lauren Company,Y4000\nRETIRED,DEPT. OF ENERGY,X3000\nCAMP,,Y4000\nVP  EXECUTIVE PROJECT,The Clorox Company,M1300\nCEO,PROCACCI BROTHERS,J7500\nOWNER,\"BARRY'S IMPORT AUTO SALVAGE\",T2200\nReal Estate Development,Nts Development Co,B0000\nVRH CONSTRUCTION CO,,B1000\nAttorney,Self-Employed,F5100\nInformation Requested,Iberdrola,E1630\nINSURANCE AGENT,COMMERCIAL INSURANCE ASSOCIATES L.L.C,F3100\nVICE PRESIDENT MANUFA,SELF-EMPLOYED,M0000\nATTORNEY,BELTRAN FIRM,Y4000\nOrganizer,SOL California,Y4000\nATTORNEY,SHIMKUS MURPHY,Y4000\nINVESTOR,\"TSG VENTURES, LP\",F1400\nSr.V.P.,The Related Cos.,F4100\nDYTECH SOLUTIONS,,Y4000\nCompliance,Horter Inv,Y4000\nGROCER,NORTH STATE GROCERY INC,Y4000\n,U.S. SMALL BUSINESS ADMINISTRATION,X3000\nMILLENNIUM MEDICAL EDUCATION RESOUR,,Y4000\nBusinessman,Smith Companies,F4000\nSPORTS MARKETING,LIVENATION,Y4000\nManufacturing,SCHAWK-CINTI,C1300\nBROKER,A G EDWARDS,F2100\nSELF-EMPLOYED/AGRICULTURE/ PRODUCTI,,A0000\nPrincipal,\"Jenkins Hill Group, LLC\",Y4000\nFinancial Consultant,Buyer Development Group,Y4000\nPARTNER,ALAMO GLENN PARTNERS LLC,Y4000\nOWNER,DAUGHERTY COMPANIES INC.,Y4000\nOwner,Cassels Holding Company,Y4000\nOWNER,INTERIORS BY J & L,Y4000\nSR 18CD,Information Requested,Y4000\nMCFARLANE FARMS,,A6000\nChief Engineer,\"Underground Construction Company, Inc.\",B0500\nB W REED BENEFITS,,Y4000\nARES-SERMO INC,,H4300\nCOMMUNITY BANKER,WACHOVIA BANK,F1100\nVolunteer,Community Activist,X1200\nATTORNEY AT LAW,EDGAR SNYDER & ASSOC.,K1000\nPresident,\"B O X Partners, Llc\",Y4000\nCORP TAX MGR,UNITED PARCEL SERVICE INC,T7100\nPROPERTY MANAGER,DELPHINE,Y4000\nEXEC DIRECT,CIVIL JUSTICE COALITION,Y4000\nEMPLOYEE BENEFIT CONSULTANT,GALLAGHER BENEFIT SERVICES,G5200\nATTORNEY,BEVERIDGE & DIAMOND,J1200\nProfessional - Attorney,Self Employed,K1000\n\"VP, Sales & Marketin\",Shick Tube Veyor Corp,G2100\nCFO/Owner,Employer Options,Y4000\nTHE GREGG CO LTD,,T5200\n\"Vice President, Publ\",Ariel Capital,F2100\nPRESIDENT,\"PHOENIX TOOL & GAGE, INC.\",M5100\nInvestment Banker,Ardour Capital,F0000\nClassroom Teacher,UNASSIGNED SCDT EMPLOYER # PA90121,L1300\nGLATTING JACKSON,,Y4000\nMR SIDS CLOTHING STORE,,Y4000\nPRINCIPAL-MA,ASSOCIATED EQITIES INC,F4200\n\"ATLANTA'S FINEST\",,G2900\nMember,\"Manchin & Aloi, PLLC\",K1000\nVP OF ENGINEERING,RADIANT SYSTEMS,Y4000\nWRITER AND CONSULTANT,SELF-EMPLOYED,G5200\nSHERWOOD PONTIAC-GMC,,T2300\nG & H RENTALS,,G5300\nVenture Capital/Inv.,Solera Capital,F0000\n\"VP, GLOBALBUSINESSP\",WAL-MART STORES INC.,G4300\nfuneral Director Exec Dir,LE moon funeral home,G5400\nMechanical Engineer,Cem. Bell Industries,Y4000\nRHEUMATOLOGIST,ARTHRITIS CENTER OF LEXINGTON/RHEUM,H1130\nGeneral Contractor,Mclean Building Co,Y4000\nU.S. NAVY,,J1200\nCorp President,Admiral Corp,Y4000\nVICE PRESIDENT OF ADMINIST,RESOURCE,Y4000\nOWNER,Tri-County Florida Title,F4300\nEngineer,Arop,Y4000\nVICE PRESIDENT,MICROCOSM INC.,Y4000\nOwner Business,Self,G0000\nCRNA PARTNER,\"WEST TN ANESTHESIA, P.C\",H1710\n\"DICKSTEIN SHAPIRO, LLP\",ATTORNEY,K1000\nINFO REQUESTED,Mayport Enterprises Llc,Y4000\nMANAGER,HARDEN MECHANICAL CONTRACTORS,Y4000\nPARTNER,FIERCE ISAKOWITZ& BLALOCK,K2000\nFOUNDER,YANTIS COMPANY,Y4000\nStudent,Cornell University,Y1000\nCEO,LyondellBasell Industries,M1000\nOWNER,MULTI-HEALTH SERVICES INC.,H3100\nTEACHER,DC-UDC FACULTY ASSN-NEA,L1300\nInvestments Manager,\"Ivor and Company, LLC\",F2100\nINTERIOR DESIGNER,INFORMATION REQUESTED PER BEST EFFORTS,G5270\nRetired,MSU College of Law,H5170\nPRINCIPAL,WILLIAMS & JENSEN,J7500\nPresident,Tradelink LLC,F2200\nPRESIDENT & CEO,TM BIER & ASSOCIATES,Z9500\nSenior VP Federal Affairs,AdvaMed,H4100\nExecutive,\"Colt Energy, Inc.\",E1000\nLaw Professor,\"Temple University, Beasley School of L\",H5100\nREALTOR,THE OLEANDER COMPANY,Y4000\nTEPITON,FRANKLIN,Y4000\nVP CORPORATION & BUSINESS DEVELOPM,CENTER POINT ENERGY,E1000\nATTORNEY,DOUGLAS & BOYKINS,K1000\nSALES EXECUTIVE,MEDASSURANT INC.,Y4000\nSALES & ADMIN,UTILITY TRAILER SALES,T2300\nBusinessperson,\"Mehlman, Vogel & Castagnetti\",K2000\nC&P INSURANCE,,F3100\nCOSMETIC SURGEON,SELF-EMPLOYED,H1100\nAttorney,Wheeler Trigg,Y4000\nCONSULTANT,\"PLANTE & ASSOCIATES, INC.\",Y4000\nCHIEF OF STAF,CONGRESSMAN LACY CLAY,X3000\nCEO,Markcorp,K2000\nPRESIDENT,GORHAM SAVINGS BANK,F1100\nVice President,West Virginia High Technology Consorti,Y4000\nMINNTECH,,Y4000\nCEO,\"Axosoft, LLC\",Y4000\nREAL ESTATE,NEW WEST HOME,Y4000\nOWNER,WILLIAM FOODS INC.,G2000\nOwner/President,Bruce Cozart Construction,B1500\nTeacher,Novato Charter School,Y4000\nGOODHUE GOODHUE FALLON & GALLA,,Y4000\nOperating Engineer,USA Hoist,LB100\nATTORNEY,THE HEALTH LAW FIRM,K1000\nCUMBERLAND UNIV,,H5100\nAtty,Hogan & Hartson,K2000\nweight loss clinic,self,G0000\nGeneral Manager,Marriott Corporation,T9100\nEXECUTIVE,\"BIO REFERENCE LABS, INC.\",H3400\nEXECUTIVE,CHATHAM HOLDINGS CORP.,Y4000\nALTER GROUP LTD,,F4100\nM HASSAN LAW OFFICE,,K1000\nAttorney,Abbott Law Off,J7400\nANZ AUTO SOUND,,T2200\nCONTRA COSTA CO,,Y4000\nAttorney,KnopikVarnerMoore,Z9500\nINVESTMENTS,TRAIN BABCOCK ADVISORS,Y4000\nCorporate Security In,Self-Employed,Y4000\nATTORNEY,AR STATE SENATE/ATTORNEY,Y4000\nCONTRACTOR,EAGLE ONE ROOFING,B3000\nAttorney,Daniel J Downes,Y4000\nMAX ALPIN SCHECHTER DAY SCHOOL,,Y4000\nProducer,Seiu,J1200\nATTORNEY AT LAW,STATE OF IOWA - DHS,X3200\nOFFICE MANAGER,SOUTHERN ILLINOIS UNIVERSITY,H5100\nPART,\"CAVAROCCHI, RUSCIO DENNIS ASSO\",K2000\nATTORNEY PART TIME,GEORGE R. WILLY LAW FIRM\\,K1000\nU OF M CREDIT UNION,,F1300\nOwner/sales,\"Fredco Packaging, Inc\",J7120\nBROKER,THE STAUBACH COMPANY,F4700\nACCOUNTANT,\"CAMP, MORING, WISE & CANNON CP/ACCO\",Y4000\nVice President Operations,Ardent Health Services,H2100\nCEO,ETHICSGAME.COM/CEO,C5140\nTrader,DRU Options,F2200\nEVERITT ENTERPRISES,,Y4000\nBUSINESS,BRISSETT & ASSOCIATES LLC,Y4000\nVP-CHEMICAL GROUP,AIR PRODUCTS,M1000\nC.,RAUBER ELECTRICAL MATERIALS INC.,B3200\nPathologist,Adirondack Med Ctr,H1130\nAQUAPERFECT,,Y4000\nEXECUTIVE,NABORS ROD & ELECTRICAL INC.,Y4000\nHealthcare Technology Executive,Oracle Corp,C5120\nPartner,\"Clark, Lytle& Geduldig\",K2000\nOwner/president,I-opt Inc.,Y4000\nHAMILTON HEATH CARE SYSTEMS,,Y4000\nBUSINESS,SUNRIDER INTERNATIONAL,H4600\n\"US President, Global\",Pitney Bowes,M4200\nChairman,Five & Dime General Stores,Y4000\no,C & M Building,Y4000\nINVESTEC ERNST,,F2100\nCONTRACTOR,HAURY & SMITH,J1100\nInsurance Broker,Self,E4200\nREMAX REALTY NORTH,,F4200\nL M COHEN & SONS INC,,Y4000\nNational Sales Manag,\"Davis Selected Advisers, L.P.\",F2100\nOwner,\"Spruce Properties, LLC\",F4000\nRETIRED PROFESSOR OF CHEMI,,J7400\nProfessor,Iowa St Univ,H5100\nEngineer,Huntington Ingalls Industries,T6100\nHOSPICE DOCTOR,PART TIME VITAS EMPLOYEE,Z9500\nPresident,in Star Capital,F0000\nVice Chairman,Terre Haute Economic Development Corp,E3000\nScientist,BNL,Y4000\n,THE ALLIANCE FOR DOWNTOWN NEW YORK,F4100\nOwner,Real Estate Pro. Ed Group LLC,F4000\nNutritionist,Self Employed,F2100\nPhysician,Wicluta Surgical Specialists,H1130\nACCOUNTANT,ROYAL CAPITAL CORP,Y4000\nFORMER SENATOR,,Y4000\nNVG LLC,ATTORNEY,K1000\nPresident,Montana Insurance Managers Miles City,F3100\nNUSERYMENS,,J5100\nHITT ELECTRIC CORP,,B3200\nPA DEPARTMENT OF PUBLIC WELFARE,,X3000\nFamily Physician,James J Byrnes MD PA,H1100\nInformation Requeste,Mlegal,Y4000\nINVESTMENT ADVIS,CTC CONSULTING LLC,Y4000\nRESEARCH ANALYST,PACIFIC CREST SECURITIES/RESEARCH A,F2100\nREAL ESTATE EXECUTIVE,FAISON,F4100\nPRINCIPAL,PODESTA MATTON,K2000\nADMINISTRATION,\"METROPOLITAN COMMUNITY COLLEGE, OMAHA\",Z9500\nOwner,LexGas Inc.,Y4000\nBusiness manager,BT America Inc,Y4000\nCURFMAN HARRIS ROSE WELTZ AND SMITH,,K1000\nASST TO THE PRESIDEN,BOSTON PROFESSIONAL HOCKEY ASSOCIATION,Y4000\nHARRON COMMUNICATIONS,,C2200\nELLIOTT ZWEBEN ET AL,,K2000\nEXECUTIVE DIRECTOR,KEYS TO WORK,Y4000\nPARTNER,ADVENIO PARTNERS L.L.P.,Y4000\nPRESIDENT,LIGHTHOUSE TECHNOLOGY ASSOCIATES,Y4000\nINVESTOR,WCAS MANAGEMENT CORP,G5270\nBANKER,M.B.N.A. CORPORATION,F1400\nbookseller,Great Jones Books/ Labyrinth Books,J1200\nattorney,Drexel University,H5100\nINVEST,\"STEDMAN WEST INTERESTS, INC.\",G5270\nTelecommunications,Recently Unemployed,C4000\nSITE SELECTION ADVISORY GROUP INC,,G5270\nPRESIDENT,RANG OIL COMPANY,E1100\nCHAIRMAN,SOUTHLAND CONCRETE LLC,B0500\nGRIFFIN INSURANCE,,F3100\nPORTFOLIO SOLUTIONS,,Y4000\nAttorney,\"Paul, Weiss, Rifkind, et. al\",J1200\nABLE BODY CORP,,Y4000\n\"UNPROFITABLE SMALL BUSINESSMAN, ZERO I\",SELF,Z9500\nDIRECTOR OF GOVERNMENT AFFAIRS,CHOP,Y4000\nENGINEER,\"EDWARD J. DESETA CO., INC\",B4000\nVICE PRESIDENT,DIXIE ROAD BLDG.,Y4000\nTechnical,Willis Lease Finance Corporation,G5300\nPHYSICIAN,OZARK MEDICAL CENTER,H1130\nLAWYER,LYONDELL CHEMICAL COMPANY,M1000\nPRESIEDENT,OH TECHNOLOGIES INC.,Y4000\nResearch Technician,Oak Ridge National Labs,J1200\nPHYSICIST,MANDEX INC,Y4000\nWILDLIFE BIOLOGIST,SELF EMPLOYED,X0000\nMRC STUDIOS,,Y4000\nFIRST MANHATTAN CO.,,F2100\nHOMEMAKER,NONE,C1300\nEDUCATOR,FERMI RESEARCH ASSOC.,Y4000\nCAREY TECHNOLOGIES,,Y4000\nPartner,Holland Partners,F4100\nRANIER GAYLE AND ELLIOT LLC,,K1000\nChief Executive Offi,CBA Industries,Y4000\nATTORNEY,GREATER RICHMOND BAR FOUNDATION,Y4000\nCHAI,IMMULOGIC PHARMACEUTICAL CORP.,H4300\nFAMILY CARE CTR,,H1100\nATTORNEY,KAHN BROWN & POORE LLP,K1000\nChairman,Nemazee Capital Corporation,F2100\nSales,Regannis Auto,Y4000\n\"VICE PRESIDENT, FED.\",LIBERTY MUTUAL,K2000\nCEO,METROPOLITAN THEATERS,C2700\nCo-Owner,Salem Radio,C2100\nARCHITE,\"CALLOWAY ARCHITECTURES, LLC\",Y0000\nSuperintendent,Self,F4000\nSAVE THE CHILDREN FDN,,J7400\nFinancial Advisor,Russell Doe Financial Services,J1100\n\"Manager, Charter School Development\",Lincoln Center,G6100\nPHYSICIAN,\"ASHEVILLE ANESTHESIA ASSOCIATES, PA\",H1130\nORTHOPAEDIC SUR,PREMIER ORTHOPAEDIC,H1130\n\"VP, TAXES\",\"TESORO COMPANIES, INC.\",E1160\nLegal Administration,Goldberg Persky & White,K1000\nInvestor,Baroda,F2500\nDirector of Purchasing,Codonics,Y4000\nDUDLEY BROS CO,,Y4000\nDOWELL TRUCK STOP,,E1170\nEXECUTIVE,OIL AND GAS RENTAL SERVICES,E1150\nEconomist,Social Security Administration,X3000\nRegional Vice Presid,\"CHRISTUS Santa Rosa Children's Hospita\",H2100\nROCKAWAY ARTIST ALLIANCE INC,,Y4000\nCHAIRMAN,LAGRANGE GROCERY COMPANY,G2400\nBOARD/COUNCIL,SRP,E5000\nSr Distribution Manager,\"Madden Communications, Inc\",Y4000\nEVP; Risk Management,Guardian,F3200\nContractor,Beasley Construction Co,B1500\nVP Regulatory Affairs,\"Cox Communications, Inc\",C2200\nPresident,Hawk Contracting of NY Inc.,Y4000\nATTORNE,DWYER MCCARTHY & ASSOCIATES,K1100\nSecurity Manager,Cedars-Sinai Medical Center,H2100\nINVESTMENT BANKING,SCI INVESTORS,Y4000\nSelf Employed,Crossroads Ford,Y4000\nCorporate Management,USCO Logistics,Y4000\nCFO,FARNSWORTH INVESTMENT COMPANY,F0000\n\"L'ANSE CHEUSE SCHOOLS\",,X3500\nCHIEF EXECUTIVE OFFICER,\"TRIUMPH MEDIA HOLDINGS, INC.\",Y4000\nCEO,ANDERSON HAY & GRAIN CO INC.,A1500\nDIRECTOR OF GOVERNMENTAL AFFAIRS,DUPONT CO,M1000\nDILWORTH PAXSON KALISH ET AL,,K1000\nDredging,Maintenance Dredging Inc,B1200\nCHIEF OF STAFF,SENATE MAJORITY OFFICE,Z9500\nSPACIAL ANALYST,UMBC,J7400\nPRESIDENT & CEO,AVISA PHARMA INC.,Y4000\nDOCTOR,MIDWEST RADIOLOGICAL ASSOCIATES,H1130\nTruck Driver,Easton-Chippewa LLC,Y4000\nBANK OF CASLILE,,F1000\nEducation,Donaldson Lufkin & Jenrette,F2100\nPartner,Hudson Manor Health Care Center,Y4000\nHOMELAND SECURITY CONSULTANT,ERUDYNE,Y4000\nWGN -TV,,C2100\nLobbyist,Securities Industry Association,F2100\nPSYCHOLOGIST,SAVANNAH PSYCHOTHERAPY CENTER,Y4000\nCEO,ALLEN TECHNOLOGY CORPORATION,Y4000\nEXECUTIVE,DALAI LAMA FELLOWS,Y4000\nPHYSICIAN,LONG ISLAND COLLEGE HOSPI,H2100\nMILLIPORE CORP,,J7400\nDesigner & Behavioral Scientist,CyberVillage Corporation,Y4000\nDIRECTOR OF GOVT,EADS NORTH AMERICA,D2000\nCONS HENT,,Y4000\nMANAGING E,CHARLES RIVER ASSOCIATES,Y4000\nAccountant,Crews Environmental,Y4000\nMEDIC AIRE,,Y4000\nMANAGER,TRI-STATE STONE,B5100\nPHYS,UNIVERSITY SURGICAL ASSOCIATES,H1130\nAttorney,Cary Kane llp,Y4000\nSR. ACCOUNT MANAGER,CBS 46,Y4000\nPROPERTY MANAGEMENT,RENTERS WAREHOUSE,Y4000\nHEALTHCARE FINANCE,FSA,F3100\nATTORNEY,CAUTEN FORBES & WILLIAMS,K2000\nPRESIDENT,HURLBUT TRUST,J6200\nFLORA SERVICE INC,,Y4000\nSELF,M & J FARMS,A1000\nROBINSON SILVERMAN PEAIU,,K1000\nVANCOUVER NISSAN,,T2310\nPyschologist,New York Presbyterian,Y4000\nOFFICE OF SCIENCE & TECHNOLOGY,,Y4000\nSpeech Pathologist,Creative Therapy Services,Y4000\nTeacher in Health Po,Baruch College-School of Public Af,H5100\nPM,WELLS FARGO,F1100\nChairman,Bloomington Lincoln Mercury,T2300\nInsurance Agent,American Fidelity,F3100\nPRESIDE,LONG LEAF ENERGY GROUP INC.,E1000\nINTERNATIONAL SA,MILLER ENTERPRISES,Y4000\n\"DICK'S FLOWERS INC\",,A8000\nAttorney,Star Service INC,Y4000\nNATIONAL NETWORK,,Y4000\nSURGEON,AMUNDSON,Y4000\nVP GOVERNMENT AFFAIRS,BOYD GAMING CORPORATION,G6500\nVICE PRESIDENT,CREDIT SUISSE FIRST BOSTON,J5100\nTrade Associatin Executive,Ohio Health Care Association,Y4000\nVENTURE C,G. T. C. R. GOLDEN RAMNER,F2100\nKUPPER PARKE COMMUNICATIO,,Y4000\nCEO,Sunset Excatvating,Y4000\nROYAL CARIBEAN CRUISES LTD,,T6250\nATTORNEY AT LAW,\"PRESTON & MALCOM, PC\",Y4000\nENGINEER,HILINE ENGINEERING,B4400\nPhysician,Orlando Orthopedic Center,H1130\nR A MILLER GUEST CO,,Y4000\nWaiter,Aldos,Y4000\nJC PENNEY LIFE INSURANCE COMP,,J1100\nBanker,Institute for Savings,Y4000\nBERGER & MONTEONE PC,,K1000\nMARKETING COMUNICATIONS,VANGUARD DIRECT INC.,Y4000\nGOVERNMENT ADMINISTRATOR,COUNTY OF SAN DIEGO,X3000\nAttorney,\"Johnson, Madigan, Peck, Boland\",K1000\nAttorney,Agins Haaz & Seidel,K1000\nLEEDY CORP,,F2100\nBUSINESS OWNER,A.S. METAL REAGEL INC.,Y4000\nManager,DRW LLC,Y4000\nMOBILE BAY TRANSPORTATION,,T4200\nReal Estate Management,Vernhunt,F4000\nATTORNEY,THE Fairfax Group,Y4000\nInformation Requested,US House of Representatives,X3000\nSales,Stonetrust Insurance,F3100\nEXECUTIVE,ACCESS PLANS INC.,Y4000\nVice President,CountryBank USA,F1100\nTOTAL VISION,,Y4000\nPartner,Barnum Quality Hardwood Floors,B2000\nChief Financial Officer,E*TRADE Group Inc.,F2100\nSTOLL KEENON AND PARK LLP,,K1000\nINFORMATION REQUESTED PER BEST EFF,FARMERS & MERCHANT BANK,F1100\nN/A/HOMEMAKER,,K1200\nOwner,Revere Suburban Realty,F4200\nWA STATE CONT. OF MASON CONTRACTORS,,B3000\nWEB DESIG,BUCHANAN AUTOMOTIVE GROUP,T2300\nSKY VIEW GOLF CLUB,,G6100\nManager,Pfizer Animal Health,A3000\nEstuarine Ecologist,State of Maryland,X3000\nPresident,Builders Mortgage,J1100\nCPA,\"Sobelman, Cohen & Associates\",Y4000\nOfficer,US Navy,X5000\nInvestment Manager,Grow Associates,J7400\nCosmetic Dentist,Incredible Smiles,Y4000\nNH HOME BUILDERS,,B2000\n\"MURRAY, SCHEN, MONTGOMERY\",,K2000\nBELLEVUE PROPERTIES LLC,,F4000\nORBITAL ENGINEERS,,G5200\nTEACHER,UNIVERSITY OF PHOENIX,H5300\nVice President/General Manager  Manate,Bright House Networks,C2200\n\"BERMAN HOPKINS CPA'S\",,F5100\nSALES,SHAMROCK,Y4000\nManager,Stonebridge Golf and Country Club,Y4000\nCLARION HOTEL & CASINO,,T9100\nPresident & CEO,Turfway Park,Y4000\nPresident,Commonwealth Wine & Spirits,G2850\nPresident,Dave Towell Cadillac Saab Inc,T2300\nATTORNEY,CHRISTIAN & BARTON LLP/ATTORNEY,K1000\nExecutive,Douglas Theatres,C2700\nBURTON PACKAGING CO INC,,M7100\nMANAGEMENT,NORTHFIELD,Y4000\nENTERTAINMENT,REACH MEDIA,Y4000\nRESEARCHER,OSU STATISTICS,H5100\nInvestment,\"Woodlawn Company, Inc.\",F4000\nPartner,Griffin Tavern,Y4000\nPartner,REVOLUTION MEDIA GROUP,G5210\nEXECUTIVE MINING SYSTEMS INC,,E1200\nPRACTICE ADMINIST,ALAN M MINDLIN MD,H1100\nPHYSI,ANDROSCOGGIN CARDIOLOGY ASSOC,J1200\nGM AUTO DEALER,\"RICHARD'S CHEVROLET-BUICK, INC.\",T2300\nPARTNER/CONSULTANT,KPMG MIDATLANTIC,F5100\nBINGHAMTON SLAG ROOFING CO,,B3000\nAttorney,Cathleen Collins,Y4000\nOwner,MacDonald Builders Inc.,Y4000\nT S S INC,,Y4000\nSANI-PLANT CO,,Y4000\nED,Conservation Lands Foundation,Y4000\nAttorney,Goldmas Sachs & Co.,F2300\nInformation Requested,\"Time Finance Company, Inc\",F0000\nFinance Executive,D And L Meat Co.,G2300\nInfo Requested,\"S & B Investments, LLC\",Y4000\nWM MEYER CO,,B5300\nRetail stores,Self Employed,Y4000\nVOLUNTEER,SELF-EMPLOYED,C5110\nPresident & CEO,Stavra International,Y4000\nConstruction Manager,\"Lone Pine Construction, Inc\",B1000\nPhysician,Bay Area Pathology Asso.,H1130\nCHIEF EXECUTIVE OFFICER,CONSUMER UNITED,F3400\nPRESIDENT,ROCKY RESEARCH,B4000\nAdmin,Rec-Tek Corp,Y4000\nmedia executive,HW,Y4000\nAttorney,MD Nonprofits,Y4000\nFINANCIAL SERVICES,THE MONEY STOP,Y4000\nGeneral Sergeon,Self-Employed,H1130\nENGINEER,TISHMAN CONSTRUCTION CORP.,F4500\nEL CORONADO RANCH,,A3000\nMANAGER,ITALY-AMERICAN CONSTRUCTION,B3000\nSALES REPRESENTATIVE,OSTEOLOGIC/SALES REPRESENTATIVE,Y4000\nBRUCE J LEVITZ LAW OFFICES,,K1000\nChief Executive Offi,Christus St. Elizabeth Hospital,H2100\nLOGISTICS,ANDERSON HOLDING,J1100\nPRESIDENT,CHESAPEAKE ENERGY CORP,E1120\nNOW LEGAL DEFENSE &,,Y4000\nExecutive,Credit Acceotance,Y4000\nB/T JOURNEY,SOUTHLAND INDUSTRIES,B3400\nWORTHEN-CAMDEN,,F1100\nSYSTEMS ANALYST,CORVERGYS INC,J1100\nAttorney,Britcher Leone & Roth,J1200\nChief Information Officer,Multnomah County Oregon,Y4000\nMANAGING DIRECTOR OF HUMAN RESOURCES,MORRISON FOERSTER LLP,K1000\nRETIRED,PEDIATRIC & ADOLESCENT MEDICIN,H1100\nInvestigator,Gordonsilver Ltd,K1000\nDIRECTOR,MEMORIAL HOSPITAL,H2100\nKEEFE & COMPANY,,K1000\nOwner,Kaufman Organization,F7000\nOwner,JLW Enterprises,Y4000\nCHAIRMAN & CEO,SABAN ENTERTAINMENT,J1200\nMD,PANHANDLE ANESTHESIOLOGY ASSOCIATES,H1130\nPOLICY RESEARCHER,MDRC,Y4000\nBusiness Owner,\"Lynn Gibson, Inc\",Y4000\nPRESIDENT,ENFORCER GROUP,Y4000\nPresident,RSK STRATEGIES,F2100\nInformation Requeste,\"Galpin Motors, Inc.\",T2300\nManager,WaterFurnace,Y4000\nNATIONAL CREDIT UNION ADMIN,,X3000\nRED BANKS RADIOLOGISTS,,H1130\nOWNER,HYLAND SOFTWARE,J7120\nDENTIST,NEAL A STUBBS DDS PA,H1400\nBARTLETT SHOWER DOORS,,Y4000\nAdministrative Assistant,Springfield Clinic,Y4000\nTEACHER,UNIVERSITY OF COLORADO,J1200\nCUSTOM,KENTUCKY CENTER FOR THE ARTS,Y4000\nFED EX GROUND PACKAGE,,G0000\nTeacher Union Presid,Pittsburgh Board of Public Educati,Y4000\nM.D.,DES MONIES ANESTHESIOLOGISTP.C.,H1130\nCIVIL ENGINEER,\"CHRISTOPHER B BURKE ENGINEERING, LLC\",B4400\nINSURANCE SALES,SELF,F3300\nMARKETING,COUNTRYMARK,Y4000\nOPTHAMOLOGIST,MARCO OPTHALMIC,H1120\nBENNETT & KAHNWEILER,,Y4000\nDevelopment,Smithsonian,X4200\nReal Estate,Don Levin,F4000\nACCOUNTANT,HARDINGE INC.,M2300\nSENIOR VICE PRESIDENT,PEABODY COAL,E1210\nCONTRACTOR,GOHF,Y4000\nEXECUTIVE,HANK LANE MUSIC,Y4000\nSMALL BUSINESS OWNER,A.T.H. IND.,Y4000\nOwner,Erika Brunson Design,Y4000\nCEO,UPSHER SMITH LABORATORIES,H4300\nVICE PRESIDENT,CGI FEDERAL,C5120\nDENTIST,THEODORE G. MUCHITENI DDS,H1400\nARCHER-MEEK-WEILER,,Y4000\nPresident,Adelphi University,H5100\nTelecommunications,Pal Talk,Y4000\nPHYSICIAN,COMMUNITY URGENT CARE,H1100\nINVESTMENT ADVISE,HYPERION PARTNERS,F2100\n74B,U.S. Army,X5000\nPRESIDENT,SONOCO,Y4000\nPresident,Brenneman Pork Inc,G1200\nINSURANCE AGENT,\"TOM MICHAEL INSURANCE AGENCY, INC  DBA\",F3100\nTHE MODERN SPECIALTIES CO,,Y4000\nDISPATCHER,ADT SECURITY SERVICES,G5290\nART DEALER,METRO PICTURES,J1200\nART INSTRUCTOR,SCHRODT ART STUDIO,Y4000\nImmigration Staff Attorney,University of Tulsa College of Law,H5170\nEMS,SOUTHERN NEVADA HEALTH DISTRICT,Y4000\nCOMMERCIAL BANKING,CITIZENS BANK,F1000\nMusic Industry,Information Requested,J1200\nPARTNER,PINEWOOD PLANTATION,Y4000\nSocial Services,Chicago House,Z9500\nPROFESSOR,SMSU,H5100\nCEO,\"Bull Moose Energy, LLC\",E1000\nLoan Officer,CapitalSource Finance,F1400\nYORKSHIP BUSINESS SUP,,F1100\nHAYNES MOTOR COMPANY,,Y4000\nATTORNEY,CLOSELINE SETTLEMENTS,Y4000\nGALFOND BERGER,,K1000\nMarketing Director,Connors & Company,Y4000\nNOEL GROUP,,F2100\nCONSULTANT,\"SCA, INC\",Y4000\nVP CORPORATE AFFAIRS,CARLSON,Y4000\nDirector,MUSSALLEM GALLERY & NO. MUV. CORP.,Y4000\nBUSINESS MANAGER,GLADES DAY SCHOOL,Y4000\nEXECUTIVE,BBA COPR,Y4000\nPUBLISHER,VILLAGER NEWSPAPER GROUP,C1100\nEXECUTIVE,SOUTH JERSEY GAS COMPANY,E1140\nVP INVESTMENTS,HCR INC,Y4000\nCONSULTANT,JADE FIRE SERVICES,Y4000\nEDUCATOR,LAICU INC.,H5100\nDeveloper,Self Employed,J5100\nSPORTS PROMOTIONS,SELF-EMPLOYED,Y4000\nVICE PRESIDENT,ALCATEL-LUCENT,C4600\nNOT EMPLOYED,RETIRED/DISABLED,X1200\nHERSHEY FOODS CORP CITIZENSHIP,,G2200\nOWNER,ERICKSON LAND & CATTLE CO INC,Y4000\n\"MCDERMOTT, WIL & EMERS\",,K1000\nWACO OIL INC,,E1100\nAdministrator,Threet & Associates,Y4000\nPsychologist,Montgomery Co Public,Y4000\nFINANCIAL SERVICE,MRU HOLDINGS INC.,Y4000\nATTORNEY / PARTNER,SELF,K1000\nEXECUTIV,MANHATTAN CONSTRUCTION CO.,B1500\nCEO,MOMENTUM STRATEGIES,Y4000\nPartner,DLA Piper US LLP,G1000\nInsurance Agent,Benefits Group  Inc.,F3200\nCAPUTO/KADO PODIATRY/PODIATRIST,,Y4000\npresident,United Gulf,Y4000\nACCOUNTANT,PAYROLL EXPRESS SVC INC,Y4000\nPRINCIPAL,WHITMER & WORRALL,K2000\nRICE PRODUCER,SELF-EMPLOYED,A1600\nExecutive Asst City Attorney,\"San Diego City Attorney's Office\",K1000\nDAVID L NUTTER D D S,,H1400\nMILWAUKEE MACK SALES INC,,T3000\nWNC HOUSING TAX CREDIT IV SERIES I,,B2000\nHospital X-Ray,Dallas County Hospital Distric,H2100\nPresident and CEO,Pryde Corporation,Y4000\nPRINCIPAL,CHERTOFF GROUP,Y4000\nCEO,WESTLAKE INTERNATIONAL GROUP,Y4000\nSENIOR VICE PRESI,ROCK-TENN COMPANY,M7100\nEVP & Chief Financia,Brookdale Senior Living Inc,H2200\nPhysician,Family Physicians Of Urbana Inc,H1100\nHEALTH COMMUNICATIONS SPECIALIST,CENTERS FOR DISEASE CONTROL,X3000\nCatholic Priest,Diocese of San Bernandino,Z9500\nManaging Partner,Thompson Petroleum,E1110\nWHITAKER WELLNESS INSTIT MED CLINIC,,Y4000\nSELF EMPLOYED/ECOLOGIST/CONSULTANT,,E3000\nCHAIRMAN,ALL-SYSTEMS SATELLITE DISTRIB.,C4300\nH D HUDSON MANUFACTURING CO,,M5000\nATTORNEY,\"JOSEPH R. GATHRIGHT, JR.\",Y4000\nBAKER MANOCK & JENSEN,,K1000\nCONSULTING,SELF EMPLOYED,D2000\nS,GOULSTON & ATOMS,K1000\nFINANCIAL ADVISOR,FIRST UNION,F1100\nEXECUTIVE VP,\"CVS SYSTEMS, INC.\",C4400\nCustomer Service Manager,Live Nation,C2800\nATTORNEY,MCGINN & CARPENTER P.A.,K1000\nCUMMINGS & WHITE-SPUNNER,,F4000\nPORTFOLIO MANAGER,OSPRAIE MANAGEMENT,F2700\nAGENT,NOUGHT-NOUGHT INSURANCE,A4000\nSpokesman,California Teachers Association,L1300\nJDH FINC SERVICE,,F5500\nATTORNEY,\"LAPIN & LAPIN, P.C.\",J7400\nOwner,Franks Petroleum,E1100\nAttorney,James L. Feinberg & Associates,Z9500\nDIELECTRICS INC,,M1500\nPHOTOGRAPHE,EVENT PHOTOGRAPHY GROUP,G5240\nV.P. OF EDUCATION,ABC-NORTHERN CALIFORNIA CHAPTER,B0500\nPrincipal,\"Price Waterhouse Coopers, LLC\",F5100\nAttorney,Micromedex,Y4000\nDESIGNER,COVERT-TECHNOLOGY,Z9500\nClinical Psychologis,Capella University,H5300\nATTORNEY,ST. JOHN MEDICAL CENTER,H2000\nOFFICER,\"A.V.I. FOODSYSTEMS, INC.\",G2000\nFIRST AVENUE REALTY,,JE300\nSeh-A,,Y4000\nInformation Requeste,USF,J1200\nPENSKE CORPORATION,,T2500\nATTORNEY,PAUL WEISS ET AL.,Z9500\nPresident/CEO,Healthfirst Corporation,J1100\nWALKER COMPANIES,,Y4000\nADVERTISING AGENCY OWNER,,Y4000\nADMINISTRATOR,SOUTH PUGET SOUND COMMUNITY COLLEGE,H5100\nSAM GLAST PC,,Y4000\nENGINEER,SAN FRANCISCO CARE CENTER,Y4000\nPUBLIX SUPERMARKET,,X1200\nDEALER,\"BRICKNER'S OF ANTIGO\",T2300\nPresident,Classic Touch Carwash,G5000\nREALTOR,CENTURY 21 HOMETOWN ASSOCIATES,J9000\nSCIENTIST,NATIONAL INSTITUTE OF ENVIRONMENTA,J7400\nAdmin Mgmt,Self-Employed,Y4000\nExecutive Director,National Grain Sorghum Produce,A1400\nPRESIDENT,JEM SPORTSWEAR,G4100\nOWNER,EVERGREEN PARTNERS,F4000\nADMINISTRATOR,PHYSICIAN HOSPICE CARE LLC,Y4000\nExecutive,\"Stanley Steemer International,\",Y4000\nINFO REQUESTED,ALPHA COMP CONSULTING,Y4000\nNON-PROFIT DIRECTOR,WOMENS RESOURCE CENTER,H6000\nSEEDSMA,CONDOR SEED PRODUCTION INC.,A4000\nVICE PRESIDENT,\"TRC COMPANIES, INC.\",E2000\nManager,Steinway,J1200\nRELOCATION CONSULTANT,SELF EMPLOYED,G5200\nREALTOR,THE KENTWOOD CO,Z9500\nCHIEF EXECUTIVE OFFICER,\"VANTAGE ONCOLOGY, INC.\",H3200\nOWNER,DIAMOND WAREHOUSE,Y4000\nPHYSICIAN,ANES MED GRP SANTA BARBA,H1130\nGENENAL RE,,Y4000\nN/A,NOT EMPLOYED,J1200\nPRINCIPAL,MOLTO CAPITAL LLC,F0000\nSALESFORECE.COM INC.,,C5140\nABI IRRIGATION INC,,Y4000\nOWNER,ARCHER DISTRIBUTING,Y4000\nPHYSICIAN,KAISER PERMANENTE,Y4000\nExecutive,\"MasTec, Inc\",B1000\nMONTEREY PENINSULA ENGINEERING,,B4400\nCPA,CNY ACCOUNTANTS,F5100\nDESIGNER,DKNY,M3100\nMASS ENVELOPE PLUS,,J9000\nWESTWOOD MGMT,,F2100\nNBC SPORTS,,C2300\nPresident,Big End Paving Co.,B3000\nACCOUNTANT,MINNICK-HOYNER,Y4000\nRETIRED,CA DEPT OF CORRECTIONS & REHABILITATIO,Y4000\nREAL ESTATE INVESTOR,\"RTI PROPERTIES, INC.\",F4000\nC.E.O.,\"Keystonne Sanitary Landfill, Inc.\",E3000\nPhysician,David A. Piacente,Y4000\n\"VICE PRESIDENT, DISTINGUISHED FELLOW\",RTI INTERNATIONAL/NC STATE/VICE PRE,X4000\nDesigner  / Builder,Hampton Deck Llc,Y4000\nSnr VP,pentegra,Y4000\nYOUNG CONTRACTORS,,B1000\nEngineer,Agere,J1200\nBookkeeper,Shauis Supermarkets,Y4000\nUNEMPLOYED/N/A,,F2700\nVIRGINIA STATE LEGISLATOR & FARMER,,X3000\nReal Estate,Nova Realty Trust,F4200\nOffice Manager,Warnock MacKinlay,Y4000\nAttorney,\"Jan L Herrick, Pllc\",Y4000\nPRESDIENT,THE COLTON HOUSING GROUP,B2000\nPRES BENT SCRAP METAL,,M2400\nMISSILE SYSTEMS VICE PRESIDENT,RAYTHEON,D3000\nFOOTWEAR IMPORTER,,M3200\nPACTRUST/PRESIDENT/CEO,,F4000\nWholesale,Qwest,C4000\nBUSINESS AGENT,SHEET METAL WORKERS NO 170,LB100\n\"MCBRAYER, MCGINNIS, LESLIE, KIRKLAN\",,K1000\nSMITH LAW FIRM,,K1000\nConsultant,Rise Group,G5270\nPhysician,Greensboro Anesthesia Physicians,H1130\nSchool Board Member,Rialto Unified School District,X3500\nOWNER,JANSSON FINANCIAL,F2100\nSECRETARY,PEYLA ELECTIRC,Y4000\nCeo,Charlotte Plastic Surgery Center Pa,H1130\nLEIGH VENTURES,,J7150\nGRAN,ALASKA NATIVE TRIBAL HEALTH CO,Y4000\nOWNER,\"KISTLER O'BRIEN FIRE PROTECT.\",Y4000\nPHYSICIAN,BAYLOR UNIV,H5100\nCONSULTANT,RAY BISHOP & ASSOCIATES,Z9500\nGERANT PERMAL GROUP S.C.A. A DIVISI,,Y4000\nCRS,\"F C TUKER, CO\",Y4000\nPRESIDENT,TOTAL MECHANIC,Y4000\nB&A FARMS,,A1200\nPublic Works Lead In,City of Spokane,X3000\nFRENKER & HERSHKOWITZ,,K1000\nB/T JOURNEY,\"THERMA, INC\",Y4000\nPEKING GARDEN REST,,Y4000\nInvestor,James M. Forbes Real Estate,F4000\nPresident,Matz Blancato & Associates,K2000\nINSURANCE MANAGER,SOUTHERN PIONEER PROPERTY AND CASUALTY,F4000\nPRESIDENT,PALMER MFG. & TANK INC.,M2300\nCENTURY 21 STEEL & ASSOC,,M2100\nAttorney,\"McGuire Woods, LLP\",J7500\nRetail Manager,Newburns Management group LLC,Y4000\nDIRECTOR OF FED. GOV. AFFAIRS,PORTER GORDON SILVER,Y4000\nATTORNEY,LAVELLE LAW FIRM,K1000\nWESTERN CAPITAL FINANCIAL,,Y4000\nAttorney,Nelson Levine Deluca & H,K1000\nPERSONAL ASSISTANT SERVICES,SELF-EMPLOYED,Y4000\nSECRETARY,DIOCESE OF NASHVILLE,X7000\nphysician,CT GI,Y4000\nENGINEER,LACLEDE GAS,E1100\nPhysician,Charleston Radiology Therapy,H1130\n\"DIRECTOR, RESEARCH DEVELOPMENT\",OREGON HEALTH & SCIENCE UNIVERSITY,H5150\nPHYSICI,CHATTAHOOCHEE HEALTH CLINIC,Y4000\nINSURANCE SALES,JARBOE CONSULTING,J1100\nCLAIM ADJUST,R L JUDGE & ASSOCIATES,Y4000\nAUDIT,DAY ZIMMERMANN MASON & HANGER,B4000\nREAL ESTATE,THE MENKITI GROUP,Y4000\nINFO REQUESTED,\"JSA II ENTERPRISES, INC.\",Y4000\nCENTRAL FELLOWSHIP CHRISTIAN A,,Z1100\nDEVON ENERGY PRODUCTION COMPANY L.P,,E1000\nMANAGER,PESCO INC.,M2300\nEDEA INC,,Y4000\nGRAYSTONE UP CHURCH,,J6200\nDIRECTOR OF COM,DISCOVER MEDIAWORKS,Y4000\nBusiness Exec,Giant Eagle Markets,Y4000\nPresident,Complete Healthcare Resources,J1200\n\"VICE PRESIDENT, MARKETING & STRATEGY\",\"COMCAST CABLE COMMUNICATIONS, LLC\",C2200\nORACLE DBA,UNISYS,C5130\nConsultant,Response America,Y4000\nCEO,TRINITY COMPANY,Y4000\nPresident,Carl Marks and Co,K1000\nLaboratory Technician,Crabtree & Evelyn,Y4000\nRETIRED ARMY,U.S. ARMY,X1200\nOMNETICS CONNECTOR CORP,,C5000\nOWNER,POSTAL ADVANTAGE,G2850\nCHIEF EXECUTIVE OFFI,RAV TEC CONSULTING INC,Y4000\nEXECUTIVE,BOEING COMPANY,T1200\nSALES,KEYES-DAVIS COMPANY,Y4000\nAttorney,\"Sorling, Northrup, Hanna et al\",K1000\ninfo tech,DFAS-IN,J1100\nFirst Insurance & Investments,,F3100\nCOMMERCIAL CREDIT REPAIRS INC,,Y4000\nField Consultant,The 7 Eleven Corporation,G4300\nBURR OAK TOOL & GAUGE,,M5100\nOwner,J Roberts & Co. Real Estate Advisor,F4000\nRetired Academic,Rutgers University,J1200\nORAL SURGEON,CENTRAL JERSEY OMS,H1400\nRegistered Nurse,Cohasset Knoll Nursing Home,H2200\nBALA R ASSOC,,B4400\nInvestment Management,Wynnefield Capital,F2100\nEXC INTERNATIONAL,,Y4000\nAMERIPRISE FINANCIAL,FINANCIAL ADVISOR/AVP,Y4000\nReal Estate Develope,The Alter Group,F4100\n\"Nuaxis, LLC\",,Y4000\nVP PRODUCTION,THE FARM,Y4000\nACCOUNTANT,RWC PARTNERS/ACCOUNTANT,Y4000\nM2 ASSOCIATES,,Y4000\nPRIVATE EQUITY INVESTMENTS,STONELAKE CAPITAL PARTNERS,F4100\nPHYSICIAN,NYUMC,Y4000\nPred Advertising Agency,,G5210\nAttorney,\"Rebecca Perry, Pllc\",Y4000\nCEO,DYNACORP INC.,Y4000\n2ND CLASS PETTY OFFICER,U.S. NAVY,X5000\nSENIOR VP,RADIAN,Z9500\nPROJECT GENERAL MANA,WASHINGTON GROUP INTERNATIONAL,B1000\nSTEPHEN MEYER CPA,,F5100\nExecutive Director,Colorado Association of Mechanical and,Y4000\nREGIONAL SALES MANAGER,CABLE ONE,C2200\nSHAPO & FREEDMAN,,Y4000\nDesigner,Terry Byrd Eason Des,B4200\nEVP,Detica,Y4000\nVICE PRESIDENT OF TECHNOLOGY,UNION NATIONAL MORTGAGE CO.,F4600\nGRINSPEC INC,,Y4000\nBroker,Self -Employed,F2200\nAttorney,\"Levine, Steinberg, Miller & Huver\",K1000\nREALTOR,FINGELLY R.E,Y4000\nsales exec,self,G0000\nASSOCIATED UNDERWRITERS,,Y4000\nSVP & REGIONAL MANAGER-SAN FRANCISCO,\"BOSTON PROPERTIES, INC.\",F4100\nRetired Fire Chief,IEC Industrial Emergency Council,Y4000\nELECTRIC MOTOR SHOP,,B3200\nHARTCASE CORP,,M9300\nCoil Co Owner,Self,G0000\nCPA,POST SMYTHE LUTZ & ZIEL LLP,F5100\nMANAGEMENT CONSULTANT,SELF-EMPLOYED/MANAGEMENT CONSULTANT,G5270\nTraffic Engineer,Howard County,X3000\nTEACHER,UNIVERSITY OF HAWAII - WEST OAHU,H5100\nActress/Homemaker,Self,C2400\nPRESIDENT,\"PAYMENT AGENCY, INC.\",Y4000\nCOMMODITY TRADER,,F2200\nDirector,Com. of PA,Y4000\n\"DIRECTOR, LABOR RELATIONS\",WALT DISNEY WORLD,C2000\n\"AIKEN, GUMP & STRAUSS\",,K1000\nPRESIDENT,NEW BEDFORD PANORAMEX CORPORATION,C4600\nrestauranteur,Suburban Diner,G2900\nSTAFF REPRESENTATIVE,AFSCME NY LOC 1000/LOCAL 460,L1200\nASHBURY CAPITAL MANAGEMENT,,F2100\nCLARK REFINING & MARKETING,,J1100\nK R PROPERTIES,,B2000\nTRANSPORTATION MGMT INVESTMENT GROU,,Y4000\nPresident,CTG Oil Inc,E1100\nPresident,Lexus of Messapequa,T2310\nCONTRACTOR,WILLIAMS HOMES/CONTRACTOR,B2000\nOSZAJCA DESIGN GROUP INC,,Y4000\nMITCHELL TRANSPORTATION,,Y4000\nEXECUTIVE,C.A.I. INTERNATIONAL,Y4000\nPresident,HOFFMAN HAPPY HOLSTEINS L L C,G1200\nEXECUTIVE,FM HOME IMPROVEMENTS,B2000\nDIAGNOSTIC RADIOLOGIST,UTAH VALLEY RADIOLOGY,H1130\nAttorney,Brune & Richard,Z9500\nCONSULTANT,A. LAVELLE CONSULTING SERVICES,Y4000\nVP of Operations,Cpanel of Texas,Y4000\nASSISTANT MANAGER,GROUNDS BAKERY & CAFE/ASSISTANT MAN,G2100\nADMINISTRATIVE ASSISTANT,AMERICAN FAMILY & GERIATRIC CA,H1130\n\"BARNEY'S NEW YORK\",,Y4000\nOWNER,\"SOUTH SIDE FIXTURES, INC./OWNER\",Y4000\nPhysician,Dgfp,Y4000\nKEILIN & CO LLC,,F2100\nDIVISION MEDICAL,,H0000\nANESTHESI,ANESTHESIOLOGY ASSOCIATES,H1130\nTHERAPIST,BARBARA PIERCE,H1110\nVP of Sales,Nuherbs Co,Z9500\nENGINEER,R.J. WOOD AND CO.,Y4000\nEMERGENCY MEDICINE,FAIRBANKS MEMORIAL HOSPITAL,H1700\nFinance Professional,Dan River Inc,F5000\nVICE PRESIDENT,\"NAT'L ASSN. OF REAL ESTATE INVESTMENT\",Z9500\nart gallery owner,self,G4600\nSPEARS INC,,Y4000\nGeneral Counsel & EV,AT&T,C4100\nFOX CO,,F4200\nExecutive Director,Assoc. of Oil Pipelines,Y4000\nIT Director,Consumer Electronics Association,C0000\nComputer Analyst,\"Humana, Inc.\",H3700\nPREEBORN & PETERS,,Y4000\nNEBRASKA ORTHOPAEDIC ASSOCIATES PC,,H1130\nattorney,Philadelphia Bar Association,K1000\nSALES LEADER,LONGABERGER NAT.,Y4000\nProf,Sdsu,Y4000\nADMINISTRATOR,U OF TX,H1130\nSALES,LTE,Y4000\nPHYSICIAN,M.E. HAMILTON M.D. P.A.,H1100\nPresident,Watson Realty Corporation,F4200\nPARTNERS HEALTH CENTER,,H0000\nOWNER,CENTRAL LIQUOR/OWNER,G2850\nATTORNEY,HDMA,Y4000\nAccount Executive,Corkill Insurance Agency,F3100\nMD,Self,H1120\nSOLOMAN SMITH BARNEY,,J5100\nEXECUTIVE VICE PRE,ACCU WEATHER INC,C5130\nOWNER/FINANCIAL INVESTOR,SEASTACK ENTERPRISES,F4000\nChairman & CEO,\"Powers Global Strategies, LLC\",Y4000\nCEO,HEALTHFUSION,H3000\nMANAGER,UNITED STATES GYPSUM,Y4000\nNurse Manager,Meriter Hospital,H2100\nHospital Administrat,U of L Hospital,H2100\nHR,\"Chanel, Inc.\",J1200\nPRESIDENT,APTER INDUSTRIES INC.,G4300\nPresident,Peach Trader,Y4000\nATTORNEY,\"KAZAN, MCCLAIN, LYONS\",Z9500\nCLINICAL DOC SOLUTIONS,,Y4000\nPATHOLOGIST,HATTIESBURG CLINIC PA,H1130\nCA STATE BANKING DEP,,X3000\nAccount Manager,State Street Corp,F2000\nPHYSICIAN,NOLAN D SHIPMAN MD & ASSOC.,H1100\nPROFESSOR,NEW MEXICO TECH,J1200\nACCELIO COPR,,Y4000\nROBERT EAST CO,,B1500\nCONSULTANT,BRADLEY ARANT/CONSULTANT,K1200\nFinance,Sun Capital Partners,F2600\nPATH,HIGHLANDS PATHOLOGY ASSOCIATES,H1130\nOWNER,WINZINGER INC.,B3000\nMANAGING DIRECTOR,HUDSON REALTY CAPITAL LLC,F4200\nPRESIDEN,BILL LANE CONSTRUCTION INC,B2000\nPresident,Tomahawk Treating Service LLC,G1200\nClassroom Teacher,STANLY COUNTY SCHOOLS,L1300\nREAL ESTATE INVESTOR,HACKMAN CAPITAL PARTNER,F0000\nEmergency Physician,\"Bernadette Boyd Gniadecki, DO\",H1100\n,MA BUSINESS ALLIANCE FOR EDUCATION,Y4000\nMANAGER,PACIFIC ALLIED PRODUCTS,M2300\nPresident,Somerset Auctions,G1200\nASIA SOCIETY,,Y4000\nCEO,McLane Group,G2500\nCREDIT RISK MANAGE,BARCLAYS BANK DE,F1100\nGeneral Manager,\"Tremron, Inc.\",Y4000\nCOLDWELL BANKER COASTCO R E,,F4200\nMarketing Manager,WILDCARD SYSTEMS,Y4000\nINVESTMENT MANAGEMENT,KYNIKOS ASSOCIATES LTD./INVESTMENT,F2100\nMANAGER,CROSS CREEK BUILDERS,Y4000\nPresident & Chief Op,Sentara Healthcare,H2100\nExecutive,A-55 Limited,Y4000\nOWNER,\"REYNOLDS AND ASSOCIATES, INC\",Y4000\nEXECUTI,COMMUNITY HEALTH FOUNDATION,Y4000\nASSOCIATE DIRECTOR O,\"LOW INCOME HOUSING INSTITUTE, SEATTLE\",Y4000\nSPECTRA INC,,C5110\nEXECUTIVE,HILL SOLUTIONS,K2000\nVice President,PETCO,M4000\nCEO,\"Vietri, Inc.\",G4400\nCOUNTY MAYOR,FRANKLIN COUNTY,Y4000\nINSURANCE BROKER,ALLMAN & CO INC.,F3100\nORTHODONTIST,\"ORTHODONTIC CONCEPTS, INC\",H1400\nRETIRED MILITARY,NONE,X1200\nPROPRIETOR,ALL SMALL JOBS,Y4000\nMUSIC TEACHER,JEANNE RUSSELL,Y4000\nREALTOR,EXIT REALTY HORIZONS,F4200\nINSURANCE SALES,Cameron M Harris & Co,F3100\nPUBLIC AFFAIRS DIRECTOR,NORTH AMERICAN DEVELOPMENT BANK,Y4000\n\"CARR, GOODSON & LEE PC\",,Y4000\nSIMPSON & KEPLER,,K1000\nSelf Employed,Chengdu Restaurant,G2900\nLAWYER,JOHN R. MITCHELLL.C.,Y4000\nBIOLOGIS,ARKANSAS GAME & FISH COMM.,X3000\nPRIVATE CONCIERGE,SELF-EMPLOYED,Y4000\nPROFESSOR,UNIV OF FLORIDA,X1200\nPRESIDENT,CENTRAL IRON & METAL COMPANY LLC/PR,Y4000\nREAL EASTE AGENT,SELF/REAL EASTE AGENT,Y4000\nRETIRED,USAIP,X1200\nATTORNEY,VAN WINKLE,K1000\nMID CONTINENT VENTURES I,,Y4000\nPartner,Crounse & Malchow,G5220\nCONTRACTOR,YANTIS COMPANY,Y4000\nPHYSICIAN,THOMAS KOUTELOS,Y4000\nPresident & CEO,\"InstallerNet, Inc\",C0000\nFOOTHILL PRESBYTERIAN HOSPITAL,,J1100\nBanker,Industrial Bank,F1000\nMail contractor,Beam Bros Trucking Inc,X3700\nContractor,Dm Jm/Htb,Y4000\nOWNER,SOUTHLAND CONSTRUCTION INC,B1500\nEVP,STARION FINANCIAL,Y4000\nFinancial Systems Analys,Sempra Energy,E1620\nLAWYER,PATTON BOGGS,K1000\nEXECUTIVE,\"COMING, INC.\",C4000\nMEDICAL BILLING SERVICE,BILLING CONNECTION OF SOUTHERN OREGON,Y4000\n2ND MATE,\"USS TRANSPORT, LLC\",LT500\nFinancial Services,Van Clemens & Co,F2000\nRALPH M PARSON CO,,F3300\nDRS MORI BEAN & BROOKS,,H1100\nBUSINESSMAN,ACCREDITED SURETY,F3400\nEXECUTIVE,WILLIAMS REAL ESTATE,F4000\nINVESTMENTS ADVISOR,SELF- EMPLOYED,X1200\nPRES,\"TITANIUM PRODUCTS DESIGN, INC.\",Y4000\nOTHER,OTHER,D0000\nInvestment Managemen,Grant St Asset Mang,F2100\nNURSE,EVANGELICAL LUTHERAN GOOD SAMARITAN SO,Y4000\nPRESIDENT,ARLOMA CORP,Y4000\nhousewife,Homemaker,Y1000\nBUILDING SUPPLY,SELF (PLYWOOD CASE CO),B5000\nRancher,Hf Bar Ranch,J1200\nPETROLEUM LANDMAN,\"DAKOTA LAND SERVICES, INC/PETROLEUM\",Y4000\nFINANCIAL ANAL,FRONT POINT PARTNERS,Y4000\nPHYSICAL THERAPIST,PEAK SPORTS & SPINE PHYSICAL THERAPY,Y4000\nCEO,MARSTON & ASSOCIATES,Y4000\nPARTNER,HARTSELL AND WILLIAMS,K1000\nVICE PRESIDENT,TAMPA FARM SVS,A6000\nMANAGER,SITEWORKS,Y4000\nBanker,The Bank Of New York Mellon,F1100\nCONSTRUCTION MANAGER,TACON INC,J1200\nST JAMES SUGAR COOPERATIVE INC,,A1200\nPresident,Auburn BioDiesel Corporation,Y4000\nEDGEMONT ASST MANAGEMENT,,Y4000\nBLACK NANAPORT STONE ETAL,,K2000\nPHYSICIAN,DERMATOLOGY ASSOCIATES OF LAGRANGE,H1130\nGREYLINE OF DALLAS FORT WORTH,,T9000\nTeacher,SPRINGS,Y4000\nPORTFOLIO MANAGER,DAVIS SELECTED ADVISERS,J1200\nC P A,Skwiersky Alpert And Bressler Llp,F5100\nMANAGER,TEKMARK,Y4000\nPRESIDENT,RUSS REID COMPANY,K2000\nJ P MASCARO & SONS,,E3000\nEngineer,\"Alvery,  Inc.\",Y4000\nRED STAR FUEL OIL CO,,E1170\nLAWYER,SHER MINNARD LLP,J1200\nPilot,ASA,Y4000\nDELCREST CHIROPRACTICE INC,,H1500\nPHYS,CTR. FLORIDA ANESTHESIE ASSOC.,H1130\nPARTNER,EMD ASSOCIATES,C5000\nCPA,Mcelheny & Associates Llp,F5100\nATTY,,J3000\nTHE BARLOW CORP,,F4100\nPRESIDENT,COLSA INC,Y4000\nEXECUTIVE,LOEB PARTNERS CORPORATION,F2100\nGOVT OF THE COMMONWEALTH N M I,,X3000\nCPA,HENRY & HORNE LLP,Y4000\nLEANZA AGRAPIDIS & KALEB,,K1000\nCHAPMAN REALTY,,F4200\nEAGLE PLUMBING,,B3400\nLoan Officer,1st Vanguard Mortgage,J1200\nPresident,\"CDR Financial Products, Inc.\",F2100\nJ S MCCARTHY,,C1300\nVALORE MCALLISTER,,Y4000\n\"J H TODD'S PAYROLL SERVICE INC\",,G5200\nPRESIDENT & C.E.O,RESOURCE MANAGEMENT INC,Y4000\nEXECUTIVE DIRECTOR,KY COM ON WOMEN,Y4000\nOwner,Aronson Insurance Agency,F3100\nPUBLIC RELATIONS.,ACCIDENT FUND INSURANCE,F3200\nCEO,\"SHAMMROCK HOLDINGS, INC\",F4200\nPresident and Chief Executive Officer,St Catherine Hospital,H2100\nHOME MANAGER,,H5000\nJEFFER MANFIELD,,Y4000\nPresident,Crowson Oilfield Specialy Inc.,E1150\nPresident,Prestige Painting And Decorating,B3000\nInformation Requeste,Town of Westport,X3000\nSHEPARDSON STERN KAMINSKY,,C5120\nExecutive,Information Teaching Assoc. of Ame,C5100\nBUSINESS ANALYST,QUALIS CORPORATION,D9000\nSUBSTITUTE TEACHER,ALIEF INDEPENDENT SCHOOL DISTRICT,X3500\nCEO,F.V. MARTIN TRUCKING COMPANY,T3100\nPRESIDENT,WESTERN PETROLIUM,E1160\nAUTO DEALER,HOLLINGSWORTH FORD,T2300\nCommunity Services Coordinator,USC,Y4000\nSPRINGLINE CO,,Y4000\nMortgage Banker,Greenlight,F4600\nOWNER,HARDEN FRASER CONSTRUCTION,B1500\nOWNER,\"WCG, INC.\",Y4000\nPSYCH,ROBERT P. PEREIRA P.H.D. INC.,H1110\n\"Apollo Associated Services, LLC\",,Y4000\nPHYS,ST JUDE HERITAGE MEDICAL GROUP,H1100\nBusiness Manager,Morganti Group,B1000\nPresident,Sittercity.com,F4100\nDESIGNER,KOPPEL&SCHER,Y4000\nSURGEON,ILLINOIS EYE SURGEONS,Y4000\nHUMAN RESOURCES,CITY OF PEORIA,J7500\nCEO,TRANSTRADE INC.,Y4000\nINIV OF CALIFORNIA,,H5100\nMANAGER,HARVEST HOUSE INC.,Y4000\nACCOUNTA,CDC MANAGEMENT CORPORATION,F4500\nPresident,Thomas Bachus Insurance Service,Y4000\nPRINCIPAL,SEVEN CORNERS,Y4000\nHealthcare Exec,Rehab Care Group,H0000\nORTHOPAEDIC SURGEON,JCPA,H1130\nCEO,CALLAS ASSOC,F0000\nMARKET,CAREER EDUCATION CORPORATION,H5200\nCourt Services Manager,\"Synergy Services, Inc\",Y4000\nEXECUTIVE,ROCKY PATEL CIGAR CO,A1300\nFRENCH OIL,,E1100\nRetail,\"Harry's Shoes\",Y4000\nGUPTA PERMOLD CORPORATION,,Y4000\nCHIEF EXECUTIVE OFFI,ALM MANAGEMENT,F2100\nOwner,Smith Stephens,F3100\nORAL SURGEON,SCOTT BULLOCH,Y4000\nComputer Operator,Con-Way,T3100\nSubmariner,US Navy,X5000\nHENDEL COLLINS ET AL,,K1000\nC. E. O.,BENT RIVER MACHINE INC.,Y4000\nCIVIL ENGR,SELF EMPLOYED,B4000\nSALES,USANA,Y4000\nReal Estate Developer,John J Flatley Company,F4100\nEVENT PLANNER,SAVETHEDATE.COM,Y4000\nRUDDY MORGAN ORGANIZATION,,C2400\nEXECUTIVE,JC FLOWERS AND COMPANY,F2600\nEXECUTIVE,OLDCASTLE PRECAST INC,B5100\nMANAGER,\"J. RIGGS CONSTRUCTION CONSULTANTS, L.L\",B4000\nSOUTHWESTERN POWER RESOURCES ASSOCI,,E1600\nSPRINGFIELD UNDERGROUND I,,Y4000\nSales Manager,Western Pacific Roofing Corp.,B3000\nATTORNEY,MACADAM LAW OFFICES/ATTORNEY,K1000\nPRISCILLA MURPHY REAL,,F4200\nPHARMAC,UPPER PENINSULA HEALTH PLAN,Y4000\nBusiness manager,University of Michigan,H5100\nSEATTLE SNOHOMISH MILL CO,,J1100\nVACCODIAN BREAK U S A,,Y4000\nISSUELINK,,Y4000\nMANAGER,INTERCONTINENTALEXCHANGE,F2400\nCROWE MARINE,,T6000\nChairman,Hmg Advisory Corp,Y4000\nAT HOME,AT HOME,G2900\nPROFESSOR,CORNELL MEDICAL COLLEGE,J7400\nROYAL ENVIRONMENTAL,,Y4000\nSECURITY MASTER INC,,Y4000\nProject Manager,I B M Corp,C5100\nSENIOR VICE PR,KESSLER & ASSOCIATES,K2000\nSCHULMAN SCHULMAN & MEROS,,Y4000\nPresident,Peninsula Moving & Storage,T3100\ngeneral manager,Nations Health,F3200\nRetired,\"Uncle Julio's Restaurant\",G2900\nOwner,Saintsbury,G2820\nTEACHER,AACC,Y4000\nFARMER,Self employed,J7400\n\"ADAM'S JEWELRY INC\",,G4600\nUNITED TITLE COMPANIES IN,,F4300\nPHYSICIAN,SAN ANTONIO DIGESTIVE DISEASE CONSU,H1100\nManaging General Partner,Millett Real Estate,F4000\nDOWNING LABOR RELATIONS INC,,Y4000\nOwner,Harford Cnty Wellness,Y4000\nPRESI,\"CLEARWATER BAY MARKETING, LLC\",Y4000\nREAL ESTATE DEVE,CONROY DEVELOPMENT,F4100\nPORTFOLIO MANAGER,APPALOSSA,F2700\nWILLIAM M MENCER IN,,Y4000\nCORPORATE PLANNING,\"TRICAL, INC.\",G4600\nExec. VP,Allegheny Tech,Z9500\nTRINITY THERAPEUTIC MASSAGE,,Y4000\nPresident and CEO,Baylor Health Care System,H2100\nCHIEF ADMINISTRATIVE OFFICER,AVERA,Y4000\nChairman & CEO,Cavco Industries,B2400\nOwner,\"Witte's Bar-b-que & Catering\",G2900\nRED RIVER SKI AREA,,Y4000\nMANAGER,,X3700\nUNIVERSITY OF NOTRE DAME LAW SCHOOL,,H5170\nALBERTSON,,Y4000\nMANAGING DIRECTOR,THORNBURG FUNDS GROUP,F2100\nEXECUTIVE,SUNSHINE ADVANCE GROUP,Y4000\nPRESIDENT,CONGRESSIONAL CAPITAL MANAGEMENT,F2100\nsr Engineer,Raytheon,D3000\nAttorney,Labaton Sucharow LLP,K1100\nInsurance,Lopez Luna Insurance,F3100\nCOO,DENALI ASSET MANAGEMENT/COO,F2100\nOwner,\"B J's Grinder King\",Y4000\nBURKE GROUP,,Y4000\nFarmer,Duarte Nursery Inc,A8000\nKENTCO CAPITAL CORP,,F0000\nFoundation President,John Templeton Foundation,X4100\nATTORNEY,ALTHEIMER AND GRAY,K1000\nBENESCH FRIEDLANDER LAW OFFICE,,K1000\nSTATE OF NEW MEXICO-VALENCIA COUNTY,,X3000\nAttorney,Jackson Lewis,J7400\nALUMNI RELATIONS,EMORY UNIVERSITY SCHOOL OF LAW,J1200\n21ST CENTURY PARK,,F4100\nFINANCE,PARAMOUNT PICTURES,C2400\nManager,Revere Gas & Appliance,E1100\nMARINE GEOLOGIST,COASTAL PLANNING,Y4000\nPRESIDENT,HCI HOLDINGS,C4000\nRICH FOODS,,G2900\nCO-CHAIR,ADVANCEPIERRE FOODS,G2300\nTERRY DOUGLAS PROPERTIES,,F4000\n\"VALLEY CHILDREN'S\",,H1100\nA.V.E/R.D.O. EASTERN,MANOR CARE,H2200\nEAST ORANGE CHIROPRACTIC ASSOC,,H1500\nVice President,Hornady Mfg.,J7150\nSoftware Engineer,\"WildPackets, Inc.\",C5120\nAttorney,\"COUDERT BROTHERS, L.L.P.\",K1200\nREAL ESTATE BROKER,MOLLOY REAL ESTATE SERVICES,F4200\n\"President, NCS\",First American Title Insurance Co.,F4300\nLaborer,Labor Local 91,Y4000\nCO. VP,METRO GAMING AND AMUSEMENT,Y4000\nRN,SOCIAL WORKER,H6000\nPresident and CEO,\"eBay, Inc.\",C5140\nC J LAWRENCE,,F2100\nFUNERAL DIRECTOR,KRAEER FUNERAL HOMES/FUNERAL DIRECT,G5400\nOwner,G2 Inc.,Y4000\nuniversity professor,\"university of genoa, italy\",Z9500\nFINANCIAL ADVISOR,S.R.S.,Y4000\nANDOR COMPANIES,,Y4000\nVP A&I;Ophthalmology; SrFellow,Pharmacia,H4300\nPRESIDENT,YWCA OF GREATER CLEVELAND,Y4000\nManagement,All-Travel,T9400\nVOLUNTEER FOR CARE INTERNATION,,Y4000\nPresident,Hudson Screw Machine,Y4000\nPROJECT DEVELOPER,\"PIONEER GREEN ENERGY, LLC\",E1500\nSYSTEMS CONSULTANT,APR CONSULTING INC,Y4000\nCFO,YARDARM KNOT INC.,G2350\nMETALS BROKER,BEHR IRON & METAL,Y4000\nATTORNEY,MORIARTY & CONNOR L.L.C.,K1000\nPartner,HALLETT & MC CORMICK,Y4000\nBanker,\"Commercial State Bank, Wagner\",F0000\nNW SHOALS COMMUNITY COLLEGE,,H5100\nCOO,Money Tree Incorporated,F1400\nAUTO RET,CONTINENTAL MOTORCARS INC.,T2300\nTeacher,ACS International Schools England,Y4000\nAttorney,\"Wacks & Hartmann, LLC\",K1000\nSENIOR VICE PRESIDENT,DMJM+HARRIS,B1000\nRegistered Nurse,Medstaff,Y4000\nADMIN MANAGER,UIUC,H2100\nSTATE OF ALABAMA/MADISON COUNT/CHAI,,X3000\nPresident,Dealer Management Services,Y4000\nEXEC DIRECTOR,KENNAMETAL INC,M5100\nOWNER,THE HOGUE CORP,Y4000\nREDLAND GROUP,,F3100\nCLERICAL,\"EASTWOOD CUSTOM HOMES, INC.\",B2000\nwinery owner,Paradise Hll Vineyard,G2820\nVICE PRESIDENT,\"CAESAR'S ENTERTAINMENT\",G6500\nOWNER,ROMANS RACING STABLES,Y4000\nResearch Scientist,Battelle Memorial In,D9000\nSENIOR RELATIONSHIP,LEHMAN BROTHERS,F2100\nPRESIDENT,\"ROUDE, INC./PRESIDENT\",Y4000\nStudent,Florida State University,H5100\nCEO,XION MEDIA,C5120\nEXECUTIVE,REGIS HOMES,Z9500\nPRECIOUS METALS,,E1220\nTransportation Planning Div Director,NMSHTD,Y4000\nDISTRIBUTOR-NUTRITION,SELF-EMPLOYED,Y4000\nCEO,Zco World USA,J1100\nPRINCIPAL,THE LEMUNYOU GROUP,Y4000\nCOO,RITOCH POWELL & ASSOCIATES,Y4000\nGRAND RONDE TRIBES,GRAND RONDE TRIBES,G6550\nCEO,Horton Mfg,T2200\nVICE PRESIDENT,DIVERSIFIED SEARCH INC,G5250\nOwner,Cobblestone Abstract Title Co.,F4300\nOWNER,AFFECTIONATE HOME CARE,Y4000\nEXECUTIVE,SCRIPPS NETWORKS,C2200\nProgrammer,Amdocs,Y4000\nEMPLOYEE,STANLEY STAHL MGMT INC,Y4000\nEducation Research,Self-Employed,H5000\nAccountant,Falcon Metal Corporation,M2000\nCOLORADO-FAYETTE MEDICAL CENTER,,H2100\nBOSTON REAL ESTATE,,F4200\nWRITER AND PROGRAMMER,SELF,Z9500\nEXECUTIVE DI,SOUTH SIDE DAY NURSERY,Y4000\nCARNEGIE HALL,,E1100\nMEDICAL SYSTEMS INC,,H4100\n\"AMERICAN NATL FINANCIAL, INC.\",,F0000\nINVESTMENTS,\"MESA VERDE, INC.\",Y4000\nPOTOMAC INSTITUTE,,X4100\nOWNER,CUSUMANO & SONS INC.,Y4000\nAttorney,Klingler Law,Y4000\nSALYER COMPANY,,\nJosephs Bistro,Proprietor,G0000\nMANAGER,\"MASSEY, WOOD & WEST\",E1180\nAdministrator,Miami Country Day School,Y4000\nExecutive Director,Friends of the Family Academy,J7400\nCAROLE LONG ASSOCIATES,,Y4000\nPRESIDE,NATION COATING SYSTEMS INC.,Y4000\nEXC.,EDGEWOOD MANAGEMENT CORP.,F2100\nWILLIAMS INSUL CO,,B3000\nSR. VICE PRESIDENT,SSM HEALTH CARE,JH100\nMANAGEMENT CONSULTANT,STRATEGIC BUSINESS SERVICES INC.,Y4000\nBLI INC,,Y4000\nATTORNEY,BRUNINI FIRM,K1000\nProfessor,University of Manchester,H5100\n\"VP, DIVERSITY MAN\",INTERPUBLIC GROUP,G5210\nPresident,Silver State Materials Corp,B5100\nGEV,ARKANSAS FARM BUREAU FEDERATION,A6000\nState Representative,State Of Michigan,X3000\nFLORIDA HOSPITAL-ORLANDO,,H2100\nV,\"IRON HORSE RANCH & VINEYARDS, LLC\",G2820\nATTORNEY,HIGDON & CARSON,Y4000\nHOLLAND CHRISTIAN SCHOOLS,,H5100\nMANAGEM,CATALOG COMMUNICATIONS CORP,Y4000\nPRESIDENT,KALMBACH FEEDS,A3100\nOwner,The Stamp Place,G4600\nBusiness Advisor,Self employed,G0000\nCANAPE BROTHERS INC,,T2300\nMUNKER-FEDRIC PA,,Y4000\nAcct Exec,First American Title,F4300\nATTORNEY,TOWN WEST REALTY INC.,F4200\nOnline Marketing,Second Thought Inc,J1200\nREGISTERED NURSE,CA. PACIFIC MEDICAL CTR./REGISTERED,H2100\nATTORNEY,\"O'BRIEN LAW FIRM\",K1000\nPRODUCTION MANAGERS,WORLD SAVINGS,F1200\nDERMATOLOGIST,ARROWHEAD DERMATOLOGY,H1130\nHLR MERCATOR,,F4200\n* BEST EFFORT *,*BEST EFFORT*,X1200\nPHYSICIAN,GLASSMAN EYE ASSOCIATES,Y4000\nFULLER & MINOR PA,,Y4000\nPOTTER SHUPE & ASSOCIATES INC,,F2100\nPRESIDENT AND CEO,GREATER CHICAGO URBAN LEAGUE,Y4000\nCROWN CAPTIVE INSURANCE CO,,J7500\nBUSINESS EXEC,\"CUSTOM HOLDINGS, INC.\",J5100\nDECO,TOWN AND COUNTRY INTERIORS LLC,Y4000\nDirector of Technica,Insight Communications,C2200\nChairman,CSN Stores,Y4000\n\"SENIOR VICE PRESIDENT, INTERNAL AUDIT\",CABLEVISION SYSTEMS CORPORATION,C2200\nATTORNEY,WALDER HAYDEN & BROGAN,Y4000\nMULITCARE COMPANY,NURSING HOME,Y4000\nBRADLEY SMOOT,,Y4000\nPresident,\"Mr. Snubb, Inc.\",Y4000\nMD,SOUTH DENVER GASTROENTEROLOGY,H1130\nOWNER,BEYOND FURNITURE,Y4000\nAttorney,CoatsRose,K1000\nExecutive Vice President & General Cou,Cephalon Inc,H4300\nConsultant,KRG,Y4000\nLIBRARIAN,JONES DAY/LIBRARIAN,K1000\nStore Mgr.,\"Everyone's Books Inc.\",J1200\nAttorney,\"Self, P&G Retired\",X1200\nSEAFOOD SUPPLY CO,,G2350\nDENOOYER CHEVROLET-GEO,,T2300\nPresident,\"America's Body Co\",T3200\nEnvironmental Consultant,Bob Schneider,Y4000\nEDUCATION,GREAT NECK PUBLIC SCHOOLS,Z9500\nMANAGER,HUNTER DOUGLAS,Z9500\nMD,St. Lukes Internal Medicine,Y4000\nChief Administrative Officer,Think Mutual Bank,F1100\nATTORNEY,MCNAMEE LOCHNER,K1000\nCivil Engineer,Bonestroo Engineering Corp.,B4000\nSmall Ventures USA,,F2600\nATTORNEY,\"WILLIAMS & JENSEN, LLC\",K2000\nANDREW GARRETT INC,,Y4000\nISLAND TITLE CORPORATION,,F4300\nINVESTMENT BANKER,PALI CAPITAL,F2100\nINFORMATION SERVICES,TXI RIVERSDIE CEMENT,Y4000\nPHYSICIAN,ALAN J. BARNETT M.D.,H1100\nproducer/director,Disney,C2000\nTHORTIEF LARSEN & SON,,B3000\nTAX COUNSEL,CONOCO PHILLIPS CO.,E1110\nCOMMERCIAL FISHERWOMAN,SELF,Y4000\nFIRSTCITY SERVICING,,Y4000\nHOTEL MANAGER,FOUR SAILS RESORT,Y4000\nCEO,iSuppli Corporation,C5130\nN/A,N/A,K1000\nLITERARY AGENT,SELF,J7200\nMember Of States App,State Of Michigan,X3000\nOVERSEAS MERCHANT CO,,Y4000\nOffice Manager,Golden Bonefish,Y4000\nVice President-Strat,FORT JAMES OPERATING CO,E1160\nENTERTAINER,GOOD KNIGHT MUSIC,Y4000\nGRANITE CAPITAL L P,,F2100\nPHYSICIAN,SARASOTA PATHOLOGY,H1100\nDEPUTY GENE,ASTORIA FEDERAL SAVINGS,F1200\nTAX DIRECTOR,IDA-CORP,E1600\nCHIEF FINANCIAL OFFICER,WASHINGTON MUTUAL,F1200\nManaging Dir Food an,GE Commercial Finance,F1400\nCorporate Recruiter,Self employed,G5250\nATTORNEY,BERNARDI ROWAYNE & GILISA P.C.,Y4000\nDENTAL HYGIENIST,DR. JAMES FISHER,Y4000\nATTORNEY,BIENENSEL AND WERTMAN,K1000\nA RUSSELL SMITH ATTORNEY,,K1000\nBUSIN,TRICOUNTY INSURANCE CALABASAS,F3100\nCALIFORNIA STATE BUR OF NARCOTICS E,,J1100\nART DIRECTOR,PRINT ELECTRIC INC.,C1300\nPRESIDEN,CENTURY BANK OF THE OZARKS,F1000\nGENERAL MANAG,FLOORS INC. OF MOBILE,Y4000\nInspector,City of Paterson,X3000\nORTHOPEDIC,BAYLOR COLLEGE OF MEDICINE,H5150\nGENERAL MANAGER,LINCARE,H4100\nPRESIDENT OF THE BOARD,ANTIQUE BOAT MUSEUM,X4200\nPRESIDENT,BRIGHTON COMMERCE BANK,F1000\nPRESIDENT,CENTURY BUICK CO INC,T2300\nHARNISH-BRINKER INC,,Y4000\nInvestment Mgnt,Alliance Bernstein,F2100\n\"MFG'S REP\",WOODRUFF SALES GROUP INC,Y4000\nPRESIDENT & CEO,RJR,A1300\nRETIRED ASSOCIATE GENERAL,SELF,Y4000\nMiller Welding,Self,Y4000\nBANDWAGON BROCKERAGE INC,,Y4000\nManager,Fulton Pharmacy,H1750\nE D D ENTERPRISES INC,,Y4000\nR. C. DEPT. OF SOCIAL SERVICES,,H6000\nKAUFMAN BERNSTEIN OBERMAN TIVOZI,,Y4000\nVINEYARDIST,MARIAS VINEYARD,G2820\nCHUHAK AND TECSON,,K1000\nFINANCIAL CONSULTANT,SOUTHWEST INVESTMENT ADVISORS,Y4000\nauthor,self-emplyed,J1200\nAttorney,The Pioneer Companies,M1000\nEXECU,NEWMARK & COMPANY REAL ESTATE,F4000\nGOVERNMENTAL RELATI,PINEGAR & SMITH,Y4000\nMECHANICAL CONTRACTO,\"T.M.S., INC.\",Y4000\nVice President,HCSS,B4000\nKRG Capital,,F2600\nProducer,\"Generate Holdings, Inc\",Y4000\nCEO,Kemp Partners,Y4000\nCARNEGIE CAPITAL MANAGEMENT,,Y4000\nOwner,\"Kinkade-Cornell Insurance Agency, Inc\",F3100\nPhysician,\"Cedar-Riverside People's Center\",Y4000\nNURSE PRACTITIONER IN ADULT MENTAL HEA,SELF-EMPLOYED,G0000\nPhysician,Liver Specialists Of Texas,Y4000\nRESTAURANTEUR,DAVIDS CATFISH,G2900\nAMERICAN INTERNATIONAL SERVICES,,J5400\nKINNETT,,A2000\nEngineer,Network Appliance,Y4000\nAttorney,Squires Sanders Dempsey,K1000\nPARAMOUNT COMMUNICATION,,C2400\nDIVERSIFIED INVESTMENTOR,RETIRED,M0000\nCHAIRMAN & CEO,LIGHTYEAR CAPITAL,F2100\nFOOD SERVICES,WEI WEI RESTAURANT,G2900\nEngineer,\"Impinj, Inc\",Y4000\nNAIC & WASHINGTON LIASON,,Y4000\nLIFE CARE AMBULANCE,,H3000\nBOND TRADER,CAXTON PARTNERS,F2700\nWESTCO AUTOMATES,,C5100\nOLEARY & ASSOCIATES,,Y4000\nPRESIDENT,MONMOUTH REAL ESTATE INVESTMEN,F4000\nUNION OFFICER,IAFF,Z9500\nCEO,SUN NUCLEAR CORP,Y4000\nWACHTELL LIPT ROSEN KATZ,,K1000\nATTORNEY,ESTEE LAUDER,J1200\nDirector,Vector Security,Y4000\nCEO,Skarven Enterprise,C5120\nSCHOLTENSTEIN STONES,,Y4000\nCONSULT,LESHER RUSSELL & BARRON INC,K1000\nManager,\"Auto Metric, Inc\",D3000\nATTORNEY,AXELROD LALIBERTE LLC,Y4000\nInvestment Advisor,Buckingham Asset Management,J1200\nNATURAL & CULTURAL RESOURCE PRESERVATI,PARTNERSHIP FOR THE NATIONAL TRAILS SY,Y4000\nORTHODONTIST,\"DR DANIEL K. MARTISIUS, DDS\",H1400\n\"Vp/slm, Acute Care M\",Mckesson Corporation,H4400\nCFO,Ironbound Capital Management LP,F2100\nPHYSICIAN,HICKORY CARDIOLOGY ASSOC.,H1130\nCLARK THOMAS & WINTER,,K1000\nRegional Manager,Freedom Mortgage,F4600\nOFFICE RENTAL-MANUFACTURE,,G5300\nPhysician,Taligen Therapeutics,Y4000\n\"VICE PRESIDENT, PROJECT AND ASSET MANA\",EXELON,E1300\nHospitality,Garden Court Hotel,T9100\nCOO,CAROLLO ENGINEERS,B4400\nCFO,Pennoni Associates Inc,B4000\nASSET MANAGER,FIDELITY INVESTMENTS/ASSET MANAGER,F2100\nMANAGER,PRUDENTIAL INSURANCE,F3100\nPRESIDENT,CHARLES RIVER ANALYTICS,Y4000\nRegulatory Manager,\"Strategic Energy, LLC\",E1600\nCHAPMAN & CO,,F2100\nBANKER,KLEIN BANK,F1100\nPRESIDENT/C.E.O,PALADIN CONSULTING INC.,Y4000\nJUDGE/ATTORNEY,PUEBLO OF POJOAQUE,G6550\nReal Estate Manager,Sieroty Company,F4500\nVP MOORE DIRECT,,C1300\nPresident,\"Magna Properties, Inc\",F4000\nECKERD DRUG STORE,,G4900\nADMINI,KIM TON TRANSLATION SERVICES,Y4000\nINTERNATIONAL RESCUE COMM,,J7400\nINTERNATIO,\"SD BIEN ENTERPRISES, INC\",Y4000\nERDNER BROS INC,,Y4000\nMEDICAL SCHOOL PROFESSOR,VANDERBILT UNIVERSITY,H5100\nATTOR,\"MARK S. MANDELL, ATTY. AT LAW\",K1000\nCOSTAR COMPANY,,H4100\nLANGDON & CO INC,,Y4000\nIMS/PRESIDENT/CEO,,B4400\n,\"WALLER LANSDEN DORTCH & DAVIS, LLP\",K1100\nInformation Requested,Bell Music,Y4000\nConsultant,The Clark Group LLC,G5270\nPROPERTY MANAGER,JARAL PROPERTIES,F4000\nVP-ENG,ST. MARY LAND &B EXPLORATION,Y4000\nWEIRTON GERIATRIC CENTER,,H1130\nEXECUTIVE,\"TALON GROUP, LLC\",F2600\nATTORNEY,\"LAW OFFICES OF TIMOTHY A. SCOTT, APC\",K1000\nExecutive,R&P New Life Properties,F4000\nOWNER,QUIET BENEFITS AGENCY,Y4000\nPEELE & COMPANY,,Y4000\nPLASTIC FAB INC,,M1500\nWINSTON LABORATORIES INC,,H4300\nBUSINESS MANAGEMENT,GGB INDUSTRIES,J1100\nFINANCIA,\"SOURCE CAPITAL GROUP, INC.\",F0000\nPHYSICIAN,UN MEDICAL CENTER,H2100\nR D PLANT CONTRACTORS,,Y4000\nPresident,Independent Propane Co.,Y4000\nVICE PRESIDENT & GENE,F.P.L. ENERGY,E1600\nREAL ESTATE INVEST,CLAIRON PARTNERS,Y4000\nSENIOR COUNSEL,MOBIL OIL QATAR INC,E1110\nCAMP DIRECTOR,CAMP RIVERBED,G6100\nULMER & BERVE LLP,,K1000\nLOAN OFFICER APARTME,W.A.M.U.,J1100\nBULLOCK CHILDS & PENDLEY PA,,K1000\nHomemaker,Not Applicable,H1130\nTV Set Decorator,Self,J1200\nTheatrical Film Buyer,Self employed,G0000\nChairman,Bob Kwait Consulting Group/Kwait & Ass,G4900\nDIRECTOR OF YOUTH MINISTRIES,RUTHFRED LUTHERAN CHURCH/DIRECTOR O,X7000\nH G SCHIFF & CO,,Y4000\nReal Estate,Breslin and Breslin,K1000\nPres.,L & M Truck Sales,Y4000\nMANAGER,BEACON FINANCE CORPORATION,F0000\nRELIANCE SAVINGS ASSN,,F1200\nRancher,Hilliard Brothers,A3000\nCONSULTANT,MAYFIELD & ROBINSON INC.,F2100\nPRESIDENT,TRIPLE-S STEEL SUPPLY CO.,M2100\nHYDEN MANOR,,Y4000\nPLAIN HOLDINGS CORP,,Y4000\nPRE,ERWIN DODSON ALLEN FUNERAL HOME,G1200\nSENIOR VICE PRESIDENT,NEW YORK HOSPITAL QUEENS,H2100\nPRESIDENT,ARROW SPEED WAREHOUSE,T2200\nCHARTER STEEL,,M2100\nTEAM MEMBER,TMMK,Y4000\nSR. MANAGER,AMAZON,C5140\nSZAFERMAN LAKIND ET AL,,K1000\nOPERATIONS,COTEAU PROPERTIES,F4000\nOWNER,PERRY RESTAURANT INC.,G2900\nARAI JACSON ARCHITEC,,Y4000\nAttorney,Berkowitz Lefkovits Isom and Kushner,J5100\nIOWA HEALTH,,Y4000\nexecutive,ceiltech,Y4000\nPresident of Enterta,Warner Bros.,C2000\nENGR MGR,EPRI,J7400\nHRW RESOURCES INC,,Y4000\nHuman Resources Director,Franklin Co,Y4000\nSTEEL DISTRIBUTION,\"SPECIALTY ROLLED METALS, LLC.\",Y4000\nManager,Exact Sciences Corp,H4100\nPRESIDENT,DIRECT LOGISTICS INC/PRESIDENT,Y4000\nChief Operating Officer,CashTyme,F1420\nHealth Care Consultant,Tx Health Dept,X3000\nINVESTOR,DES CAMPS & GREGORY INC.,F3100\nChairman/President,The American National Bank of Texas,F1100\nLawyer,\"Hennigan, Bennett & Dorman\",K1000\nCFO,STIFEL NICOLAUS & COMPANY,F2100\nSKW ESKIMOS INC,,Y4000\nFAGER EXCAVATING CO,,B3600\nATTORNEY,\"CHRISTENSEN FULTON & FILZ, PLLC\",Y4000\nOWNER,FORMULAB,Y4000\nLaw School Dean,Stetson University College of Law,H5170\nDIRECTOR,SANTANA SHIPPING SERVICES,T0000\nLOBBYIST,MARTINEZ & SONS,K2000\nCONSTANTINOPLE & VALLONE CONSULTING,,Y4000\nORTHOP,TEXAS SCOTTISH RITE HOSPITAL,H2100\nL A COUNTY OFFICE OF EDUCATION,,X3000\nAIR-MECH,,B3400\nVP Corporate Controller,Genesis HealthCare,H2200\nJONES & EDGE P C,,Y4000\nOWNER,HAWKINS LEASE SERVICE,Y4000\nBanker,First Security Bank,F1000\nPHYSICIAN,ADULT INPATIENT MEDICAL SERVICES/PH,H1100\nAdminstrative Assistant,Harrah Reynolds,Y4000\nSENIOR VICE PRESIDENT,MED GROUP,Y4000\nAttorney,Jacobs Chase Frick,J7400\nPresident,\"Plymart, Inc.\",Y4000\nChairman of the Boar,The Goodman Company,G4000\nShopping Center Deve,The Pratt Company,Y4000\nPRESIDENT PACKAGING COMPANY,ZUCKERMAN HANICHMAN,M7000\nProteoTech Inc,COO & CFO,Y4000\nLawyer,UNDP,X8000\nPHYSICIAN,SCOLIOSIS ASSOCIATES,H1000\nCONSULTANT/REGIONAL REPRESENTATIVE,HOLSTEIN U.S.A.,Y4000\nNRMLA,SVP FOR COMMUNICATIONS,Y4000\nTHOMAS FARMS INC,,A1000\nMANAGEMENT,GULF COAST WELDING C,Y4000\nCEO,LIFT LCC,Y4000\nSALES MANAGER,BLASIUS CHEVY,T2300\nNEW HERTIAGES ASSOCIATES,,C2200\nLAND DEVELOPER,,F4100\nPHARMACIST,PUBLIX,Z9500\nINVESTMENTS,BARCLAYS,Z9500\nInformation Requeste,Self-Employed,J1200\nProgram Manager,Massachusetts Dept of Elementary and S,J7400\nSPIRIT OF SUCCESS INC,,Y4000\n\"MANAGING DIRECTOR, GLOBAL\",CITIGROUP,F1100\nYELLOW CAB NOC,,T4200\nCeo,Natural Heritage Institute,Y4000\nTHE GATEHOUSE GRILL,,G2900\nCLINTON CAMPAIGN,,J1200\nCOMMODITY TRADING ADVISOR,SELF-EMPLOYED,Z9500\nBANA ELECTRIC,,Y4000\nVICE PRESIDENT,MCDONALD HOPKINS GOVERNMENT STRATEGIES,Y4000\nTRI CITY SALES,,Y4000\nMedical Doctor,Park Avenue Dermatology Associates,H1130\nPRESIDENT,NU-SASH,Y4000\nEmergency Physician,SEORMC,H1100\nPRESIDENT,RATTO ENTERPRISES,Y4000\nIMP VALLEY COLLEGE,,H5100\nSYSTEMS MANAGER 3,MCKESSON CORPORATION,H4400\n\"MIKE'S MASONRY\",,B3000\nATTORNEY,\"BLATT, HASENMILLER, LEIBSKER & MOORE L\",K1000\nKATZ BLENDEN & PANTIRER,,Y4000\nPRESIDENT,\"VAN SCOYOC ASSOCIATES, INC\",K2000\nASPHALT MATERIALS,,B5000\nOwner,Jack Fisher Orthdonics,Y4000\n\"PRESIDENT, MI\",PSYCHIATRIC SOLUTIONS,H2100\nConsultant,Protiviti,G5270\nLawyer,Finkelstein & Partners,K1000\nINTERNAL MED.,HEARTCLINIC OF SE KY,H1100\nAttorney,Richard M Knellinger,Y4000\nCHAMPION CHRYSLER,,T2400\nPRESIDENT,CAPITAL TRUST MANAGEMENT,F4000\nSVP,\"Union Bank, Lake Odessa, Mich\",F1100\nCEO,JENNINGS PARTNERS INC.,Y4000\nComputer Services Executive,N/A,Y4000\nVICE PREZ,BREEDING INSULATION CO.,B3000\nMARCUS HOTEL CORP,,T9100\n\"TWIN COAST ENT. INC./WENDY'S/PRESID\",,G1200\nCHAIRMAN,ACHIEVEMENT TECHNOLOGIES,Z9500\nACCOUNTANT,APPLEBEES INTERNATIONAL INC,G2900\nCOO,NATUREMAKER,Y4000\nMANAGING DIRECTOR,BLUE CROSS BLUE SHIELD ASSOCIATION,F3200\nPT FERRO CONSTRUCTION,,B1500\nPUBLIC INTEREST DATA,,Y4000\nPHYSICIAN,TEMPLE UNIVERSITY,J7300\nPRESIDENT EASTERN DIVISION,COMCAST,C2200\nANESTHESIOLOGIST,ST. LUKES HOSPITAL,H2100\nCHIEF OF STAFF,CONGRESSMAN SHIMKUS,X3000\nINVESTOR,V.C.F.A. GROUP,F2500\nBROKER,RSCO-ROBERTSON STEPHENS,Y4000\nProfessional Staff,Purdue University,H5100\nEDITOR,CENTER FOR DISCOVERY,Y4000\nPresident,Consolidated Restaurants Inc,Z9500\nG & J PEPSI COLA,,G2600\nEVALUATOR,UC BERKELEY,Z9500\nVice President,Grade A ShopRite,G2500\nWEATHER FORECASTER,USMC,Y4000\nHIGHWAYMASTER INC,,Y4000\nManufacturer,Dromlet Com,Y4000\nHILDAGO COUNTY,,X3000\nSALES EFFECTIVENESS LEA,GE MORTGAGE,M2300\nPresident,Petroleum Development Corp.,E1100\nSELF-EMPLOYED/TELEVISION WRITER/PRO,,C2100\nhomemaker,n/a,G2850\nATTORNEY,BLANK ROME COMISKY &,K1000\nGREAT WESTERN DINING,,G2900\nNORTHWEST PAPER CO,,Y4000\nBROADWAVE USA,,F2100\nDirector,\"47 Pictures, Inc\",Y4000\nAIA,,Y4000\nANN EPPARD ASSOC LTD,,K2000\nST AUGUST,UNIV,Y4000\nGEOPHYSICS/GEOLOGY,CHEVRON,E1110\nConstruction,\"NEFinish Systems, LLC\",Y4000\nPRESIDENT,HAWAIIAN CEMENT,B5000\nREALTOR,CENTURY 21 GOLDEN REALTY,F4200\nVP,ACLI,K2000\nKEITH H BROOKS INC,,Y4000\nManager,Junip Tradings,Y4000\nAttorney,Bonin & Marashen,Y4000\nCEO,MARIN COMMUNITY CLINIC/CEO,Y4000\nField Engineer,\"Siemens Energy, Sddti\",E1000\nPresident,R.A. Cohen & Associates,J5100\nMARKETING,REFUSE,G5280\n\"O'CONNORS LIQUORS\",,G2840\nFOREMOST MARITIME CORP,,T6100\nINVESTMENTS,FRANKLIN MUTUAL,F2100\nPhisician,Long Island College Hospital,H2100\nGORE MUSIC & AMUSEMENT CO,,Y4000\nattorney,self,J7400\nADMIN/MANAGER,L.I.S.I.,F3100\nChairman,\"PHILLIPS INTERNATIONAL, INC.\",C1100\nPresident,Alarity Solatiors Corp,D9000\nChairperson,Care Matrix Corp,B1000\nAnist,Self,G0000\nPROPERTY MANAGER,FREMONT DOCK CO,Y4000\nCEO,KINDRED HEALTHCARE/CEO,H2100\nPRESIDENT,ACCIO ENERGY,Z9500\nInsurance Agent,The Holleman Companies,F3300\nREGISTERED NURSE,BAY AREA SURGICAL MANAGEMENT,H1130\nBANKING,ENRONC CORP. - EES,E1100\nOWNER,\"SMITH CALDWELL DRUG STORE, INC.\",Y4000\nENTREPRENEUR,ESTEN WALKER,Y4000\nINVESTMENT BROKER,METHUSELAH ADVISORS,F2300\nDirector,Three V Corrporation,Y4000\nCONSULTANT,,G4800\nAttorney,Whitehead & Klosterman,K1000\nATTORNEY,CREATIVE ASSOCIATES,G5270\nCARRPARK,,G1100\nMEDICAL DOCTER,SELF-EMPLOYED,J1200\nPresident,Emerald Division LLC,Y4000\nCFO,Northeast Remsco Construction,B1500\nLIBERTY BAIL BONDING INC,,G5000\nNATIONAL VIATICAL ASSOCIA,,Y4000\nATTORNEY,BADIANAN INGEASOLL,Y4000\nBAY CITY SERVICES INC,,Y4000\nCITY COUNCILMEMBER,CITY OF ATLANTA,X3000\nMANUFACTURING REP,\"BLISS-MURSKI, INC.\",Y4000\nGERALD A BARRETT INC,,Y4000\nEXECUTIVE MANAGER,B&G MANUFACTURING COMPANY INC.,Y4000\nABRAMS FOSTER NOLE & WILLIAMS,,F5100\nSr Reservoir Enginee,Chesapeake Energy,E1120\nPHYSICIAN,ADVANCED COSMETIC SURGERY,H1130\nPJ MECHANICA,PETER J PAPPAS,B3400\nINSTITUTE FOR RESEAR,,Y4000\nEDUCATOR,GRANITE SCHOOL DISTRICT,X3500\nD STRAUT & ENTERPRISES INC,,B5100\nAttorney,Belluck and Fox,J1200\nMIDWEST GLASS REPS INC,,M7200\nSOFTWARE ENGINEER,\"METEORCOMM, LLC\",Y4000\nHOMEMAKER/N/A,,B1500\nI.C. Designer,Analog Devices,C5110\nPHYSICIAN,JFK MEDICAL CENTER,H1100\nLAWYER,LIFELINE HUMANITARIAN ORG.,Y4000\nDirector Or Tech,Gilardi,K1000\nFIELD DIRECTOR,CITY OF RIVERSIDE,X3000\nInterior Designer,Mc Millen & Company,Y4000\nReal Estate Investor,Shoreline Company,F4000\nPHYSICIAN,WALDO COUNTY HOSPITAL,H1130\nLandscaper,Hawaiiansin2deep Inc,Y4000\nRETIRED,NA,F2600\nDOCTOR/SCIENTIST,UNIVERSITY OF MICHIGAN,H5100\n\"METTE, EVANS AND WOODSIDE\",,K1000\nCONSULTANT,\"J.F. LEHMAN & CO., INC.\",Y4000\n\"JANI'S SOLUTIONS\",,Y4000\neconomist,ACS CAN,Y4000\nREGIONAL PLANNER,,Y4000\nCONTROLLER,PREMIER IMAGE CORP,Y4000\nREGIONAL VICE PRESIDENT - ARGENTINA,APACHE CORPORATION,E1110\nDENNIS HENNEN,,Y4000\nTreas - Donna Weinrich,,T3100\nDirector,Yum Restaurants International,G2900\nCHAIRMAN - CEO,AMERITAS,F3300\nIHOP FRANCHISEE,ARELESS OPERATING CORP.,G2900\nASSOCIAT,UNIVERSITY OF PENNSYLVANIA,H5100\nUS AIRFORCE,,H1710\nINVESTMENT BANKER,MICHAEL G. KLEIN,Y4000\nMAGNETIC RESONANCE INS,,Y4000\nOWNER,\"MAJESTIC REALTORS, INC.\",F4200\nGABRIELLA AND PAUL ROSENBAUM FOUNDA,,Y4000\nMusic Exec.,Universal Music Group,C2600\nSchool Psychologist,Self employed,H1110\nCertified Public Acc,\"Pastroff, Barja, Kelly & Co.\",Z9500\nZWEIBACK CAPITAL MNGMT,,F5000\nPhysician,Medical Assoc. of Cape Cod,H1130\nRICK SALWEN,,Y4000\nCPA,HORNE & COMPANY,F5100\nEXECUTIVE,THE KROGER CO.,J5100\nATLANTA APPAREL MART,,Y4000\nHALSEY DRUG COMPANY INC,,G4900\nPRATT MANAGEMENT CO LLC,,F4000\nIT,Kaiser,H2000\nBST SYSTEMS INC,,Y4000\nOFFICE,JIM CLICK,T2300\nCHIEF EXECUTI,ST JOHN HEALTH SYSTEM,H2100\nBOLIVAN INS AGENCY,,F3100\nAttorney,\"Fafinski Mark & Johnson,\",J1200\nJ & L CONSTRUCTION,,G1200\nPHY,\"HAMPTON VILLAGE PEDIATRICS, LLC\",H1130\nNon Profit Exec,IIB,Y4000\nPENNER ROCK SERVICE/MANUFACTURER/SA,,Y4000\nPHYSICIAN,INSTITUTE FOR ADDICTION STUDY,Y4000\nLobbyist,Homberger & Walters Inc.,K2000\nLIPSCHUTZ GREENBLATT AND KING,,Y4000\nFINANCIAL PLANNER,TODD LEVY,Y4000\nFOUNDER,PK ASSOCIATES LLC,Y4000\nEXEC,DJB REALTY,F4200\nBiochemist,Cornell Univ Med School,Z9500\nTeledata Communicati,Self-Employed,G0000\nSMALL BUSINESS CHIEF,SELF,G0000\nATTORNEY,\"O' MELVENY & MYERS, L.L.P.\",K1000\nCEO,HAND BENEFITS & TRUST,Y4000\nPUBLIC RELATIONS,SC COMMUNICATIONS,C0000\nELECTRICAL CONTRAC,SUNWEST ELECTRIC,Y4000\nAttorney,\"Scott Myers, Attorney\",K1000\nPolicy research,AARP,J7200\nINVESTOR,FOUR M INVESTMENTS,M7100\nReal Estate Develope,\"P. Zaccaro, Co. Inc.\",F4200\nI/T Professional,Ibm,C5100\nLawyer,Dbvois,J1200\nOperator,Tierra Environmental,E2000\nHOLLIS & ASSOCIATES,,Y4000\nPACIFIC AMERICAN MANAGEMENT COMPANY,,Y4000\nPRESID,BENSON CONSTRUCTION CO. INC.,B1000\nAnalyst,Michelle Applebaum Research,Y4000\nCENTRA INDUSTRIES,,Y4000\nENGINEER,SOUTHERN COMPANY SERVICES,E1600\nIVESTMENT PROFESSIONAL,MATTHEW INTERNATIONAL CAPITAL,F2100\nARCHIVIST,SELF EMPLOYED,G0000\nJEWELER,JIMMY SMITH JEWELERY,Y4000\nRN,Manicay Mem Hosp,J1200\nWRITER,GUEST OF A GUEST,Y4000\nSENIOR VICE PRESIDENT,ST JOHN HEALTH SYSTEM,H0000\nOffice Manage,Arlington Orthopedics,H1130\nBROKER,CALDWELL BANKER,F4200\nDUNCAN BUICK,,Y4000\nATTORNEY,FALLS CITIES WAREHOUSE,T7200\nOccupational Therapi,Retired,J1200\nPARTNER,ETZIONI PARTNERS,J5100\nVP COMPLIANCE,FOXWOODS CASINO,G6550\nPRESIDENT,STEPAN COMPANY/PRESIDENT,M1000\nMANAGING,LEORA CONSULTING GROUP LLC,Y4000\nPRESIDENT,INDIANHEAD FOODSERVICE,G2910\nTHE FEEDROOM INC./MEDIA EXECUTIVE /,,Y4000\nDEVELOPER,PHILLIPS DEVELOPMENT & REALTY,F4200\nCPA,\"COLLINS, MASON & COMPANY, LLP\",F5100\nSTAFF MEMBER,SONOS NETWORKS,J7150\nExecutive Director E,Cox Communications Inc.,C2200\nSALES MANAGER,NEOSHO FORD,T2300\nTHE CRT GROUP,,Y4000\nCONSULTANT,DEAN WORD COMPANY,J1100\nMANAGER,\"MIDWEST SALES, INC.\",Y4000\nMAINTENANCE ANALYST,,D2000\nHomemaker,Not Employed,K1000\nInformation Assurance,Ia2 Inc,Y4000\nLITERARY AGENT,ROTHMAN BRECHER,Y4000\nCPA,SHECHTMAN MARKS DEVOR PC,F5100\nPhysician,Orthopedic Associates of Grand Rapids,H1130\nPresident,Cardinal Health,H4400\nFUNERAL DIRECTOR,VANDENBERG FUNERAL HOME,G5400\nCEO,B.L. HARBERT INTERNATIONAL,B4000\nMASTER,\"ARGENT MARINE OPERATIONS, INC.\",LT500\nSOCIAL WORKER,TX HEALTH RESOURCES,Z9500\nbookkeeper,self,F5500\nPartner,\"Roedel, Koch, Parsons, Blache, Balhoff\",Y4000\nSUNRISE SHIPPING AGENCY INC,,T6200\nPRESIDENT,THE EMERSON GROUP/PRESIDENT,H4300\nMOM & COMMUNITY VOLUNTEER,SELF-EMPLOYED,G0000\nCOVE FOUR SLIDE STATION,,Y4000\nCONSERVATOR,SELF,Y4000\nCORPORATE EXECUTIVE,GRIDPOINT INC.,Y4000\nMARKETING MANAGER,UNISYS CORP.,C5130\nCO OWNER LE,LEWIS SCRAP METAL LLC,M2400\n\"COHEN, POLLOCK, MERLIN\",,K1000\nPARTNER,CLARK LYTLE GEDULDIG AND CRANF,K2000\nBUSINESS COMMITTEE SEC,ONEIDA TRIBE,J7500\nMechanic,United States Postal Service,X3700\nRETIRED CHEMIST,NOT EMPLOYED,Z9500\nATTORNEY,B.H.F.S./ATTORNEY,K1000\nNORTHERN CALIFORNIA PCA/FLBA/DIRECT,,A4000\nWITT-THOMAS-HARRIS PROD,,C2300\nATTY,LOS ANGELES COUNTY,X3000\nAlumni Relations Director - Europe,The University of Chicago,H5100\nExecutive,\"Par Truck Tech, Inc\",Y4000\nATTORNEY,ARNOLD GREVIER ATTORNEY,K1000\n\"EVP, CHIEF HR OFFICER\",DEAN FOODS,A2000\nMURRAY CALLOWAY COUNTY HOSPITA,,H2100\nRIVERSIDE PARK INDUST ASSOC,,F4000\nInvestment Banker,UBS Americas,Z9500\nT M KOVACEVICH,,Y4000\nExecutive,\"Raex, Inc\",Y4000\nlibrary administrator,miami dade public library system,X4200\nCONSULTA,MOTION PICTURE ASSOCIATION,X1200\nEl Charro,Self,G0000\nCEO,ASCAP,C2600\nPartner,\"O'Malley Beverage Inc\",G2850\nVice President,Merrill Lynch Private Client Group,F2100\nARCHITECT,CANNON DESIGN,B4200\nMARKETING REP.,RESPITEC,Y4000\nPROGRESS PRINTING COR,,J7300\nRanching/Farming,SELF-EMPLOYED,A3000\nVice President US Sa,\"Imagistics Int'L Inc\",Y4000\nBERKELEY HIGH SCHOOL,,X3500\nPresident CEO,St Joseph Regional Health Center,H2100\nPresident,National Assoc of the Blind,Y4000\nSales,Carmies,J1200\nATTORNEY,KILPATRICK & ASSOC.,K1000\nBusiness Representative,JOB CORPS,LB100\n\"JOE'S QUICK MARTS\",,G2400\nComputer comsultant,Self employed,Z9500\nINSURANCE AGENT,INSURANCE ASSOCIATES INC,F3100\nPresident/ceo,Rackspace,C5140\nMANAGER,ANDERSON PEST SERVICES/MANAGER,G5700\nDEAN,HARDING UNIVERSITY,H5100\nMIRAGE RESORT,,G6500\nATTORNEY,\"JOHN DEGRAVELLES, L.L.C.\",Z9500\nPRESIDENT NATIONA,TIME WARNER CABLE,C2000\nAerospace Engineer,\"AeroAstro, Inc\",Y4000\nPHYS,ASHEVILLE INTEGRATIVE MEDICINE,H1100\n\"Chairman, President\",\"Hunt Consolidated, Inc.\",E1120\nPolice Officer,Essex County,X3000\nFAST FOOD MANAGEMENT,SELF,G2900\nPRINCIP,VANGUARG BROKERAGE SERVICES,Y4000\nPublicist,Self,G0000\nOwner,Tags Processing,Y4000\nCHAIRMAN AND PRESIDENT,\"BANKNORTH GROUP, INC.\",F1000\nJeweler,Zoland & Sons,Y4000\nOwner,Dolphin Pool Supply & Svc.,Y4000\nDoctor,William Barrett Md Pc,Y4000\nLawyer,Us Environmental Pro,X3000\nPresident,Ironco Enterprises,Y4000\n\"Sales, Support\",\"Kitchen & Bath Creations, LLC\",Y4000\nPresident,Iacono & Associates,Y4000\nSELF EMPLOYED,JOHN L PRODUCTIONS,Y4000\nTrial Attorney,Stoll Stoll Berne,K1000\nManaging Memeber,World Ventures LLC,Y4000\nEducation,The Ohio State University,H5100\nREALTOR,CAMPBELL AND ROSEMARY REAL ESTATE,F4000\nGENERAL MGR.,CULLIGAN WATER,Y4000\nCONSTRUCTION EQUIPMENT DISTRIBUTOR,\"STEPHENSON EQUIPMENT, INC.\",B6000\nExecutive,Blackboard,Y4000\nPRESIDENT AND CEO CITIINS,CITIGROUP,F1100\nGOVERNMENT RELATIONS,EXXONMOBIL,E1110\nOCALA PROPERTIES,,F4000\nPRESIDENT,\"TJS MINING, INC.\",E1210\nPRESIDENT,COCO COLA,Y4000\nPresident,Dayton Economic Dev. Corp,F4100\nPUBLIC RELATIONS,MCNEIL WILSON COMMUNICATIONS,Z9500\nINS AGENT,MGA INS GROUP,Y4000\nnot Working,not Working,Y1000\nGeneral Sale Manager,Southern Wine & Spirits of Colorado,G2850\nHILL & DORR,,K1000\nRestaurant Mngmt.,Self,G0000\nWANXIANG AMERICA CORP,,Y4000\nERNST + YOUNG,,F5100\nSALES,KEY HOLLY INC.,J1100\nSELF EMPLOYED/ALLERGIST/PHYSICIAN,,H1100\nATTORNEY,DANZIGER & DE LLANO L.L.P.,K1100\nATTORNEY,WALTER CLARK LEGAL GROUP,J1200\nCounsel - eBiz,GE Energy,M2300\nMANAGER,COOK COUNTY,X3000\nPRESIDE,ICHEFUNCTA MEDICAL SERVICES,Y4000\nSPEECH PATHOLOGIST,QLI,Y4000\nPRESIDENT,SCHENKELSHULTZ,B4200\nCommunications Contractor,Tropical Communications Inc,Y4000\nSECURITY DIRECTOR,FALCON,Y4000\nGREAT COASTAL,,Y4000\nGallery Owner,Self employed,G4600\nARCHITECT,\"E.D.A. S.W., L.L.C.\",Y4000\nACCOUNT REP,JOHN BURRIS STATE FARM,F3100\nScheduler,Senator Olympia Snowe,Y4000\nBiologist,Amgen Inc,H4300\nNORTHWEST ARKANSAS HBA,,B2000\nVP,\"MAVEN RETIREMENT LIVING, INC.\",Y4000\nVice President,Wohlsen Construction Company,B0500\nDIR/EMPLOYMENT & CULTURAL AFFAIRS,US DEPT OF LABOR,X3000\nExec Dir,\"Women's Env & Dev Org\",Y4000\nCHAIRMAN EMERITUS,RODEL INC.,M2300\nSELF E,\"THE DDOUG BEAT COMPANY, INC.\",Y4000\nTreasures,Mich Environmental,Y4000\nVice president,Thompson Masonry contracting Co.,J1100\nDENTIST,FLORIDA FAMILY DENTISTRY P.A.,H1400\nFESTA REALTY,,F4200\n\"GIANT EAGLE, EDGEWOOD\",,G2400\nowner,Landmark Precast,Y4000\nTeacher,Pittsburgh Board Of Education,X3500\n\"SVP, Finance & CFO\",\"Old Dominion Freight Line, Inc\",T3100\nBUSINESS ANALYST,\"PFPC, INC.\",Y4000\nKAREN JONES OR BAB,,Y4000\nEXECUTIVE VICE PRESIDENT,SWETT & CRAWFORD,F3100\nChairman,Phipps Houses,F4500\nExecutive,Stancorp. Inc.,Y4000\nHealth Administrator,US Public Health Service,J1200\nEconomist,Deloitte & Touche,F5100\nFORD RESEARCH LABS,FORD MOTOR COMPANY,T2100\nDEVELOPMENT & COMMUNITY RELATIONS,\"ST . DAVID'S CENTER FOR CHILD & FAMILY\",Z9500\nVALLEY WAREHOUSE,,T7200\nATTORNEY,BURR & FORMAN L.L.P.,K1000\nASCG INCORPORATED/PRESIDENT/CEO,,B4000\nONLINE ENTREPRENEUR,SELF-EMPLOYED,Y4000\nCFO,COLLETTE VACATIONS,Y4000\nBUSINESSMAN DRAPERY FABRILATOR,SELF-EMPLOYED,G0000\nLOHMAN BROTHERS,,Y4000\nOWNER,CAPITAL EQUITIES REALTY,F4200\nCONSULTANT,CROSSLINK STRATEGY,Y4000\nP&IP,,Y4000\nJACKSONVILLE SCHOOL DISTRICT,,X3500\n\"TONY'S PIZZERIA & DELI\",,G2900\nCLIN PSYCHOLOGY & PSYCHOTHERAPY ASS,,H1110\nCHAIRMAN OF TH,LEBENTHAL & CO. INC.,F2100\nPROF & CHAIRMAN DE,UNIVERSITY OF PA,H5100\nEXEC.,I&C MANAGEMENT,Y4000\nPHYSICIAN,KAISER,JE300\nTEACHER,AUTHOR,C1100\nSocial Worker,Contran,J7400\nIL US,,Y4000\nREAL ESTATE CONSULTANT,,F4200\nSR. PARTNER,\"GRUNFELD, DESIDERIO\",K1000\nINTERLOCAL MUNICIPAL TRUST,,Y4000\nATTORNEY,HOLZER HOLZER & FISTEL LLC,Z9500\nVP ASS,MORTGAGE GUARANTY INS. CORP.,F4600\nCEO,D & J CONSTRUCTION CO,B1500\nFund Manager,Capra Investments,F2100\nM & M,,J5100\nFinancier,\"WW Tichenor & Company, Inc\",F7000\nAttorney,\"Stoll, Keenon & Parks\",K1000\nEducator,San Ramon Unified School,Y4000\nIMIND EDUCATION SYSTEMS,,Y4000\nSTATE OF CALIF DEPT O,,X3000\nContractor,Dmi Corp,Y4000\nCrane Operator,Nelson Crane Service,B6000\nCEO,Harris RF Communications,Y4000\nContractor- Real Estate,Self-Employed,F4000\nINVESTMENTS,MATTERHORN CAPITAL,Y4000\nEVP & CFO,Equity Office Properties Trust,F4100\nPRINCIPAL,GLOBAL STRATEGIC PARTNERS,Y4000\neconomist,US govt,J1200\nRETIRED,NORTHWEST EXCAVATING,B6000\nEVP Engineering,Cedar Point Communications,C2200\nWILDLIFE BIOLOGIST,USFS,Y4000\nLAKE WASHINGTON TEC,S PUGENT SOUND COM C,Y4000\nFACULTY,UNIV. OF CHICAGO,H5100\nML MACHINERY COMPANY,,M2300\nCATTLE RANCHER,,Y0000\nArchitect,Tsao & Mckown,B4200\nDisney Worldwide Services,,Y4000\nMETRO FIBER OPTICS,,Y4000\nTIME REALTY CORPORATION,,F4200\nPresident,\"2G Associates, LLC\",Y4000\nPUBLIC EMP,UNITED STATES GOVERNMENT,Y4000\nJB JONES DRILLING LLC,,Y4000\n,APPALACHIAN ORTHOPAEDIC ASSOCIATES,H1130\nGREEN RAINGER LANDSCAPING,,B3600\nSALES MANAGER,MULTIPLE BUSINESS SYSTEMS,Y4000\nExecutive,\"Cubist Pharmaceuticals, Inc\",H4300\nFLUORAMICS,,Y4000\nPAWNBROKER,ZEIDMAN INC.,Y4000\nDR PATEL MD,,H1100\nFOWLER & WILLS,,Y4000\nLABOR,SELF-EMPLOYED,L0000\nOWNER,RODMAN CONSTRUCTION,B1500\nVICE PRESIDENT,INFORMATION TECH INDUSTRY CNCL/VICE,C5100\nChief Operating Offi,\"LUBA Workers' Comp\",F3400\nGEORGETOWN LAW CENTER,,H5150\n\"SVP, Chief Operations Integration Offi\",Providence Health & Services,H2100\nPRESIDENT - USS,UNITED STATES STEEL,M2100\nwriter/human rights advocate,self,C1100\nCEO,MQS,G0000\nLESLIE AND ASSOCIATES,,Y4000\nKYSER BUILDER INC,,B1500\nMMD,HCR.MANORCARE INC.,H2200\nAnalyst,Xerox,M4200\nATTORNEYS,,J9000\nPUBLIC POLICY RESEARCH,CARNEGIE ENDOWMENT/PUBLIC POLICY RE,X4100\nExecutive VP & CEO,Fortis Inc.,F3100\nPRESIDENT,VAISHNAVA CENTER,Y4000\nMELVIN AND ELAIN WOLF FOUNDATION,,Y4000\nHOLLAND PUMP COMPANY,,M2300\nLAWYER,FEDERAL HOME LOAN OF INDIANAPOLIS,F4600\nPRESIDENT,PRUDENTIAL LIFE INSURANCE,F3300\nBULB GROWER,,Y4000\nResearch Director,Columbia University - CITI,H5100\nF R OUT CO,,Y4000\nLegislative Aide,U.S. House Of Representatives,X3000\nEXEC,GLOBAL COMPANIES,Y4000\nGovt. Relations,Ibm,C5100\nPRESIDENT,ABSTRACT & GUARANTY CO.,F4300\nPHYSICIAN,GEORGIA CORRECTIONAL,H1100\nREGIONAL DIRECTOR OF NETWORK DEVELOPME,PROVIDENCE HEALTH PLANS,H2100\nPRESIDENT,LYNN-DUSANTARA,A5000\nC.E.O.,Columbia Energy & Environmenta,E2000\nProfessor of law,Harvard Law School,H5170\noil and gas explorat,self-employed,E1150\nTEACHER,GB SCHOOL SYSTEM,Y4000\nArchitect,Fxfowle Architects,B4200\nDirector of Development,\"Consumer Attorney's of CA\",J7400\nOWNER,WADE EHRLICH STUDIO,Y4000\nPRESIDENT,EXPORT RAILROAD,T5100\nCEO,\"Walsh, Duffield Co\",F4200\nDeveloper,Auspen Construction,B1500\nOFFICE MANAGER,GREATER ERIE AUTO AUCTION,T2300\nINTERNATIONAL TECHNOLOG,,Y4000\nATTORNEY,LENNAR COPRORATION,F4100\nLONGABERGER FOUNDATION,,M4000\nPRINCIPAL,H.C.R. INVESTMENT GROUP L.L.C.,Y4000\nACCOUNTANT,ROBERT W. BAIRD & CO. INC.,Z9500\nRAVENEL DEVELOPMENT CORPORATION,,F4100\nHUDSON BROTHERS CONSTRUCTION CO,,B1500\nAttorney,Weathers & Riley,Y4000\nCOUNTY OF GALVESTON TEXAS,,X3000\nATTORNEY,Allen Schulman & Assoc,K1000\nRancher,Self employed,A3000\nOPERATIONS MANAGER,AUSTIN ELECTRIC SERVICES LLC,Y4000\nAttorney,Greenberg Law Office,K1000\nREAT ESTATE DEVELOPER,,F4100\nTHM OIL CO,,E1100\nPresident,Blue Ocean Technologies LLC,Z9500\nLobbyist,Bockorny Group,Z9500\nENGINEER,ITT EXE US/ENGINEER,D3000\nDIGITAL MARKETING,VIACOM,G5230\nPARTNER,MTA INC.,Y4000\nLOS MILOS PRODUCTIONS,,Y4000\nCONNECTICUT NATL BANK,,F1100\n\"VP, FINANCE\",MORGAN STANLEY,F2300\n\"Vice President, Federal Government Aff\",Western Growers,G2500\nOWNER,KORF MOTORS,T2300\nCENTURY TOOL,,M5100\nRestaurateur,\"Sharp Holding, Inc\",G2900\nPHARMACIST,GOOD BAY PHARMACY,G4900\nBallet,Self - Employed,C2900\nCLS MA,HAYES DIVERSIFIED TECHNOLOGY,Y4000\nQUICKIE MART,,G2400\nFire Fighter/EMS,DEKALB COUNTY FIRE DEPARTMENT,L1400\nGEORGE D ZAMIAS DEVELOPER,PRESIDENT,G0000\nBanker,Deutsche Bank,F1100\nPresident & Owner,Dallas Mobile Communications,Y4000\nWarehouse Operator,3M Company,M2300\nDEPUTY CHIEF ADMINISTRATIVE OFFICER,NEW CASTLE COUNTY,X3000\nFAMILY STRESS CENTER,,Y4000\nDealer,The Wallingford Auto Co,T2300\nRetired,Thomas & Sons,Y4000\nProfessor,Self,Y4000\nVICE PRESIDENT/CFO,ALLIANT ENERGY,E1620\nAttorney,Gerald I Holtz LLC,K1000\nTelecommunications S,Sbc/Detroit Public S,Y4000\nCentral Office Tech,Sbc Ommunications,C4100\nOWNER,AFT HOLDINGS,F2600\nManaging Director,First Principles Capital Mngt LLC,F2100\nChmn and CEO,Corporate Executive Board Company,Y4000\nProfessor,Michigan State Universtiy,Y4000\nCBS BUILDERS,,B1500\nCONGRESSMAN,CONGRESS,Y4000\nGOVT AFFAIRS,MOTOROLLA,K2000\nOwner,Wall-bedzzz,Y4000\nPOLACHECK COMPANY,,J5100\nCHORAL DIRECTOR,,Y4000\nSELF EMPLOYED/SAME NAME/SCIENTIST,,J7400\nProfessor,USD,J7300\nADMINISTRATOR,CHUCK BROWN CONSTRUCTION INC.,B1500\nSCHALLER AUTO WORLD,,T2310\nCONTRACTOR,MASTERS TOUCH EXTERIORS INC.,Y4000\nCITY ATTY,,Y4000\nPRESIDENT,PRIME HEALTH CARE,H3000\nENGINEER,WMB INC.,Y4000\nEXECUTIVE MANAGER,LAWSON SOFTWARE,C5120\nATTORNEY,\"BRADLEY, DRENDEL & JEANNEY\",Z9500\nUNION OFFICIAL,AFL-CIO,Z9500\nSELF EMPLOYED/SHIP CAPTAIN/OWNER,,Y4000\nCFO,Naturener USA,Y4000\nExecutive,Valley Mining Drive,E1200\nTHE CYPRESS GROUP LLC,,F2300\nPRESIDENT,PRICE-LESS DRUG STORES,G4900\nPRESIDENT,CABOT GUN CO,Y4000\nscientist,Allegheny Singr Research Inst.,Y4000\nIDEALAB,,C5130\nPRESIDENT,ELITE STAFFING SERVICES,G5250\nKAISER PERMANENTE-REDWOOD CITY,,H3700\nGALLERY K,,J5100\nCAMP DIRECTOR,HARPETH HALL,Y4000\nRetailing,Neiman Marcus,G4300\nPARTNER,L & F DISTRIBUTORS LTD.,G2850\nprofessor of legal s,University of Pennsylvania,H5100\nGEOLOGIST,TEXAS COMM. ON ENV QUALITY,J7400\nInformation Requested,National Black Growers Council,Y4000\nDIRECTOR ERP PRACTICE,KAAVA CONSULTING INC.,Y4000\nBUILDER,FMC,M1000\nDATA ARCHITECT,WILMERHALE,K1000\nEXECUTIVE,YORK CONTAINER/EXECUTIVE,M7000\nHUMAN RESOURCES,GOLDMAN SACHS/HUMAN RESOURCES,F2300\nLOSS PREVENTION DIRECTOR,CVS PHARMACY,G4900\nMedical Doctor,Americare Health,H0000\nFUND MANAGER,FOSS FUND,Y4000\nINFO SPECIALIST,,J7400\nCOLETTE PHILLIPS COMMUNIC,,Y4000\nIM ORATZ & CO,,Y4000\nLieutenant,Wayne County,X3000\nOWNER,\"KERIAN MACHINES, INC.\",A4200\nCLEVELAND AUTO & TIRE CO,,M1500\nATTORNEY,\"LEVINE & STIVERS, LLC\",K1000\nPUBLISHER,MOTHER JONES MAGAZINE,C1100\nMarketing,Procter & Gamble,M3300\nPRESIDENT,SF PARTNERS,J5100\nCEO,OMEGA CONCRETE SYSTEMS,B5100\n\"ROJAS, VOGTE & LEE\",,B4000\nZOOLOGIST,SMITHSONIAN INSTITUT/ZOOLOGIST,X4200\nLawyer,\"Fredrickson & Byron, PA\",K1000\nSOCIAL WORKER,CARL VOGEL CENTER,Y4000\nDiagnostic Radiologi,Radiology Assoc of Fox Valley,H1130\n\"SR. DIRECTOR, SELLER STANDARDS\",\"EBAY, INC.\",C5140\nVICE PRESIDENT,\"MULTIPLAN, INC.\",H3700\nCommunication Specia,Department Of Defense,X5000\nADMINISTRATOR,BEVERLY HILLS MED CENTER/ADMINISTRA,H2100\nPresident,\"Teague's Auto Repair\",G1200\nSTAM DRUG CO,,Y4000\nPRINCIPAL,ALPINE VENDING,G6100\nWINEMAKER,ARGYLE WINERY,G2820\nACXIOM CORPORATION,,G5220\nComposer,GR&F,F5100\nCREATIVE DIRECTOR,ANTHEM WORLD WIDE,Y4000\nMANAGER,PRACTICAL LAW,K1000\nALSTON,,Y4000\nFOUNDER,HOT POTATO,Y4000\nRASNER ENTERPRISES,,Y4000\nCEO,CAREER EDUCATION CORPO,H5200\nDRESSLER INDUSTRIES,,Y4000\nChief Administrator,Philip J Rock Center and School,Y4000\nOWNER,ORANGE TUSTIN INN,T9100\nCHEMISTS,COMPACT MEMBRANE SYSTEMS,Y4000\nAMERICAN COLLECTIONS CONSL,,Y4000\nDoctor,M&M Orthopedics,H1130\nINVES,CONTRAVISORY INVESTMENT MGMT.,F2100\nATT,\"HARRIS WILLSHIRE & GRANNIS, LLP\",K2000\nPROGRAMMER,GOOGLE INC,J7150\nEVP - MERCHANDI,LERNER STORES  INC.,G4100\nLobbyist,\"Avenson, Oakley, & Cope\",Y4000\nManager,Caudills Electric,B3200\nEXECUTIVE ASSISTANT,ENERGY EARTH,C5000\nPRESIDENT & C,THE RUSS REID COMPANY,G5210\nATTORNEY/PARTNER,\"SNELL & WILMER, LLP\",K1000\nPres. & Treas.,Federation of Indian Associations,Y4000\nManager,FBR CoMotion Venture Capital,F2500\nJ J FERGUSON CO,,B1000\nPRESIDENT/CEO,\"MSD GLOBAL SOLUTIONS, LLC\",Y4000\nCEO,LewisGale Hospital,H2100\nSTORAGE TEC,,C5110\nATTORNEY,OBION SPIVAK,Y4000\nMANUFACTURING REPRESENTATIVE,KEITH PARKER & ASSOCIATESINC,Y4000\n\"NJC MACHINE CO./SEC'Y/TREAS.\",,Y4000\nASSN PRESIDENT,ASC ASSOCIATION,H3200\nDIMARCO & RILEY,,J2200\nPublishing,\"Mildred Hird, Inc.\",J7400\nCPA,Georgia State University Robinson,F5100\nPresident,The Pate Company,B3000\nPresident,MR Beal & Company,F2100\nOwner,Cardoza Building Maintinance,Y4000\nVIRCO MFG CORPORATION,,J1100\nEXECUTIVE,AUDUBON NATURE INSTITUTE,G6100\nSENIOR PARALEGAL,GATOR INVESTMENTS/SENIOR PARALEGAL,F7000\nAttorney,Thon Beck & Vanni,K1000\nSPECIALIST MASTER/MANAGER,DELOITTE CONSULTING,F5100\nInsurance Agent,State Farm Insurance Agency,F3100\nPhysician,Orlando Heart Center,Y4000\nSOFTWARE DEVELOPER,WEINSTEIN PROPERTIES,F4000\nOrthopaedic Surgeon,Rockford Orthopedic Associates,H1130\nPRESIDENT & C.E.O.,LIMOS.COM,C5140\nExecutive,Superfund,Y4000\nZILBER LTD,,G4900\nCONSULTANT,BROKERAGE PROFESSIONALS INC.,F0000\nPRESIDENT,EXPRESS MARINE INC,J1200\nA AIUDI & SONS,,Y4000\n\"CFO, Gulf Coast Division\",\"HCA, Inc\",H2100\nNone,N/A,H5100\nCEO,SKIPPER MARINE,Y4000\nRELOCATION ASSISTANCE INC,,Y4000\nEditor and Publisher,Self- Owner/Inside Tennis Magazine,Z9500\ndesign golf swing ai,DRK Golf,Y4000\nAttorney,\"Groves Julius & Simpson, L.L.P\",K1100\nSTEVEN HOPPING MD FACS,,H1100\nREAL ESTATE,REOC DEVELOPMENT LLC,F4000\nMCGEE HANKLA BACKES & DOBROVOLNY PC,,K1000\nRegional Sales Manager,Call Source,F4500\nBookkeeper / Office Manager,\"Carl L.D. Dieda Ins, Agency\",F3100\nSALES,GEMALTO INC.,C5130\nAMOAHL CORP,,C5110\nFederal Government Relations,Principal Financial Group,J1200\nGENERAL COUNSEL,BABCOCK POWER INC.,Y4000\nREAL ESTATE,ADERHOLD PROPERTIES,F4000\nWRITER,\"DEUTSCH, LA\",Y4000\nBusiness C.E.O.,SIMMONS COMMUNICATIONS/PATRIOT MEDIA,C2200\nRegional Manager-New,Boston Properties; Inc.,F4100\nPRESIDENT,QLIANCE MEDICAL GROUP OF WASHINGTON,Y4000\nSELF,DOLLAR BROTHERS INC,A1600\nPROGRAM MANAGER,ED SCHULTZ SHOW,Y4000\nVice President,American Veal Assocation,Y4000\nLAWYER,SYCR,Y4000\nCONSULTANT,CARNEGIE MELLON UNIVERSITY,H5100\nEXECUTIVE ASSISTANT,STRATHMOOR FAMILY DENTISTRY,Y4000\nHISTORIC PRESERVATIO,STATE OF NEW MEXICO,J7400\n\"CLARK ENTERPRISES, INC\",,B1000\nAttorney,Krislov and Associates,J1200\nArt Advisor,Business Matters in the Visual Arts,Y4000\nMETRO FOODS INCORPORATED/PRESIDENT/,,G2000\nCPA,TMCostello CPA PA,F5100\nFINANCE,BESSEMER TRUST,F2100\nAERO METALCRAFT,,Y4000\npolicy director,Scenic Texas Inc.,Y4000\n\"OURY, DECLEMENTS, MIZDOL & ET AL\",,K1000\nPHYSICIAN,KANE CARDIOLOGY/PHYSICIAN,H1130\nSelf-employed Ranch Owner,Rocking W Ranch,G4300\nEXECUTIVE VICE PRESIDENT & CFO,MAA,F4100\nPERKINELMER INC,,D3000\nRealtor,Brooklyn Bridge Realty,F4200\nFounder/Pres,\"Learning V2, Inc\",Y4000\nNJHMFA,,Y4000\nCOMMISSIONER,DENTON COUNTY,J1100\nCHESAPEAKE INTERLINK,,C5120\nProfessor,Col State Univ,Y4000\nSpecial Counsel,USDA,X3000\nCERTIFIED FINANCIAL ADVISOR,LIFE STRATEGIES LLC,Y4000\nEDMUND SCIENTIFIC CO,,M9100\nBLIGHT & MONTAGUE,,K1000\nAttorney,Thompson Coburn Llp,K1000\nCNM,Kaiser Permanente,H1710\nUrologist,J.M. Cage Corporation,H1130\nCONSULTANT,FIDELITY NATIONAL  FINANCIAL,F4300\nGOVERNMENT RELATIONS CONSULTANT,\"TWINLOGIC STRATEGIES, LLP\",K2000\nODELL HICKS & CO,,F5100\npresident,The Kassouf Company,Y4000\n\"COCO'S WATER CAFE\",,F1200\nLOBBYIST,\"BROWNSTEIN HYATT FARBER SCHRECK, LLP\",K1000\nChief of Staff,City of Schenectady,X3000\nTEACHER,RIVERSIDE SCHOOL,Y4000\nVolunteer/Board Member,Montgomery Hospice,H2200\nhousewife,RETIRED,X1200\nARCHITECHT,SELF-EMPLOYED,B4200\nSVP & Head of Govern,Charles Schwab Corporation,F2100\nBANCROFT BAG CO,,Y4000\nAttorney,Rhymes & Williams Llp,K1000\nanesthesiologist,Greater Houston Anesthesioloogy,H1130\nADVANCED PRACTICAL SOLUTIONS LLP,,G5270\nRETIRED,,G3000\nPresident and C.E.O.,My Pleasure.com,C5140\n\"Vice President, Corp\",CHPA,H4300\nOWNER,OZARK RADIO NETWORK,C2100\nMUSEUM EDUCATOR,ARCHADECK FRANCHISE,X4200\nOPTOMETRIST,JAMES H SAWYER OD PSC,Y4000\nManaging Director,Questox Corporation,Y4000\nCHIEF FINANCIAL OFFICE,WEYERHAEUSER,A5000\nPresident & CIO,Assurant Inc.,F3100\nATTORNEY,MDAF,Y4000\nNORTHWESTERN,,Y4000\nPRESIDENT,BAY HERITAGE FINANCIAL CORPORATION,F4000\nLAWYE,CHAPMAN IMMIGRATION LAW GROUP,K1000\nNELSON GUGGENHEIM FELKER,,Y4000\nTHILLENS INC,,Y4000\nOwner,Computer Aid,C5100\nSCIEN,INSTITUTE FOR SYSTEMS BIOLOGY,H5100\nPETROLEUM ENGINE,A&A TANK TRUCK CO.,J1100\nTELEOS AXXCT MANAGEMENT,,F0000\nADMINISTRATIVE,WACHOVIA SECURITIES,F2100\nVP OF ENGINEERING,ORACLE CORP.,C5120\nInvestment Manager,\"Ruane, Cunniff & Goldfarb\",F2100\nClaims Rep,Ace Use,J1200\nGEN. MGR.,FIRST CHOICE INC.,T3100\nCEO,REPUCARE,Z9500\nJAMES REALTY,,F4200\nPresident,A E L  AVIATION ENTERPRISES,G1200\nOffice,Acpuapuntkin Inc Dbs Kenneth Volklinba,Y4000\nPublisher,Outlook Media Inc,Y4000\nEXECUTIVE,FROMKIN BROS INC,Y4000\nCHAPLA,LAKE VALLEY COMMUNITY CHURCH,X7000\nSenior VP Gov Relations,Russ Reid Co,K2000\nWEB MARKETING & ANALYTICS,SELF-EMPLOYED,G0000\nCCO,Energy Future Holdings,E1600\nASSOC OF COMMUNITY,,X4100\nMidwest Regional VP,ABC Supply,B5000\nGEARY PACIFIC,,J1100\nVP & GM,STATE MINE SERVICES,Y4000\nFreeman Beauty Labs,,Y4000\nPHYSICIAN,SELF,E4200\nFASHION,ANGELA LINDVALL INC.,Y4000\nKIMBLE LANDFILL,,B5100\nANESTHESIOLOG,ANES SERVICES NETWORK,H1130\nPHOTOGRAPHER,TAMISIE HONEY PHOTOGRAPHY,Y4000\nDEVELOPMENT,SELF-EMPLOYED,J1100\nJOHNSON & JOHNSON EXEC,,H4000\nCEO,NUETERRA HOLDINGS/CEO,Y4000\nINVESTMENTS,2SV VCAPITAL LLC,Y4000\nVICE PRESIDENT/C.F.O,\"THE CHRISTIAN BROADCASTING NETWORK,\",C2100\nNW AR TELEPHONE CO,,C4100\nINVESTOR,JDM PARTNERS,F5000\nOrthopaedic Surgeon,Mayo Clinic,H1130\nLAWYER,\"LEONARD, STREET & DEINARD\",K1000\nChairman & CEO,Buckman-Mitchell Inc.,F3100\nEXECUTIVE,LUXOR HOTEL & CASINO,G6500\nLAWYER,\"GRAHAM  GRAHAM, PC\",Y4000\nKARL ZETTERBERG CONSTRUCTION,,B2000\nDEVROUAX & PURNELL,,B4200\nSES AMERICOM INC,,C4400\n\"DICK SMITH, INC/OWNER / AUTO PARTS\",,Y4000\nFinancial Executive,DE Shaw Group,F2700\nWESTERN LIME CORP,,Y4000\nInformation Requested,AHIP,F3200\nOCCUPATIONAL THERAPIST,\"DISABILITY MGMT. PROGRAM,STATE OF MI\",H1700\nDEVELOPER,ENGINEER,B4400\nTHOMPSON AND ASSOC,,Y4000\nattorney,\"Chester, Wilcox, & Saxbe\",J1100\nOwner,Anysystem,Y4000\nPRESIDENT,REGAL MARKETING,Y4000\nCAPA PARTNERS LTD,,Y4000\nReal Estate Broker,\"McGraw, Davisson, Stewart\",F4200\nGallery,Director,G4600\nAMERICAN NATIONAL BANK & TRUST CO,,F1000\nTHE SMR GROUP LTD,,Y4000\n\"V.P., EXECUTIVE DEVELOPMENT & CHIEF LE\",GE CORPORATE,M2300\nPresident of Corp/Le,American Target Advertising,J1100\nCODE HENNESSEY AND SIMMONS,,Y4000\nPresident-Investments,Charles E Smith Companies,F4000\nCONSULTANT,PURPLE STRATEGIES,Z9500\nadministrative,Thomas Gordon,Y4000\nJ BERGLUND COMPANY INC,,J1100\nOWNER,STEVEN DREXLER CPA,F5100\nEDUCATOR,USDOI,Y4000\nIT Director,Tufts University,Z9500\nMORTGAGE BANKER,AMNET MORTGAGE,F4600\nPrincipal,\"Davis Group Consulting, Inc\",Y4000\nPRESIDENT,COOPER HOSPITAL - CAMDEN,H2100\nINTERIOR DESIGNER,DRAKE DESIGN ASSOCIATES,G5000\nOWNER,O`BRIEN`S GENERAL STORE INC,Y4000\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,BAPTIST REGIONAL MEDICAL CENTER,H2100\nCOMMUNICATIONS,GREENFIELD BELSER LTD,J1200\nRetired,Beatrice Foods,Y4000\nCEO,ICESTONE LLC,Y4000\nManaging Member,Riverside Marketing Llc,Y4000\nGeneral Contractor,Ted Chagaris,Y4000\nCEO,\"SAI CONSULTING ENGINEERS, INC.\",B4000\nEngineer,Lasp,Y4000\nSOFTWARE PROGRAMMER,RAYTHEON,D3000\nAttorney,Cumsley & Levin,Y4000\nPhysician,Maui Chest Medicine,Y4000\nEXECUTIVE VICE PRESIDENT,THE TCW GROUP INC.,F2100\nBusinessman,Nick Tzimas,Y4000\nBERDAR EQUITIES COMPANY,,J5100\nChief Executive Officer - The United G,\"United Liquors, Ltd.\",G2850\nOIL & GAS,DURR OIL & GAS L.L.C.,E1100\nInsurance Rep,Amerigroup,Y4000\nCRITICAL HEALTH SYSTEMS,,H1100\nDeveloper,Midland Atlantic,Y4000\nWIELAND + CO INC,,Y4000\nVP STRATEGIC PLANNING,OGE,Y4000\nINFO REQUESTED,LANGLEY PROPERTIES,F4000\nMARKETING AGENT,METRIKA INC.,G5200\nTeacher,Fairfield Public Schools,X3500\nCBR ASSOCIATES LC,,E1220\nMARK TWAIN BANK,,F4600\nOWNER,\"UCONS, LLC\",Y4000\nEducator,Peace Ecology,JE300\nATTORNEY,MARY DEMARCO LEE PLLC.,Y4000\nINTERIOR DESIGNER,IVETTE CERANYO INTERIORS,Y4000\nJORDAN VINEYARDS,,G2820\nCivil Engineer,\"Fischbach Transportation Group, Inc\",Y4000\nInvestor,Oak Hill Capital Partners,F0000\nPresident,\"Jarby, Inc.\",G5200\nPHYSICIAN,DUVA SAWKA INC,Y4000\nOwner,Puma Road Wine,Y4000\nCOMPUTER CONSULT,GENERAL COMP SERVE,Y4000\nNORFOLK & DEDHAM GROUP/PRESIDENT/CE,,F3100\nTEAM LEADER,INPO,Y4000\nAttorney,Law Offices of Eduardo Jaime,Y4000\nGENERAL COUNSEL,OSI SYSTEMS,H4100\nPRODUCTION SUP,CORNING INCORPORATED,C4000\nLUMBER MANUFACTURING,BRAZEALE LUMBER COMPANY,Y4000\nTHERMO ELECTION CORP,,E2000\nATTORNEY,GREENE & SCHULTZ/ATTORNEY,K1100\nhrm,Home Depot,G4500\nCEO,\"CLEMENT PAPPAS & CO., INC.\",G2600\nOWNER,PHARMACORP,Y4000\nEXECUTIVE,PARKER MOTOR FREIGHT INC.,T3100\nDIR,WAYNE COUNTY PROSECUTORS OFFICE,Y4000\nPSYTHOTHERAPIST,SELF,H1110\nDoctor,Connecticut Heart Group,Y4000\nPRESIDENT,DAVIS CONSTRUCTION,B1500\nSOUTHERN WINE & SPIRITS OF SC,,G2850\nTENNESSEE LOG HOMES,,B2000\nVascular Surgeon,Vascular Specialists of Central Florid,Y4000\nCONSULTANT,KELLOGG ASSOCIATES,Y4000\nHOWELL TRICE & HOPE P A,,K1000\nEXECUTIVE DIRECTOR,THE QUINCY JONES FOUNDATION,C2100\nPRESIDENT,SUMMA DEVELOPMENT,Y4000\nLAW PROFESSOR,UNIVERSITY OF HOUSTON LAW CENTER,H5100\nTHE ASPEN INSTITUTE,,X4000\nPRESIDENT,\"PURCHASING SOLUTIONS INTERNATIONAL, IN\",Y4000\nPARTNER,GIULIANI PARTNERS,Y4000\nK GOLDSMITH & CO,,F4200\nPAINTER,ENTERTAINMENT PARTNERS,C2000\nChairman,\"BYERLY FORD NISSAN, INC.\",T2310\nBUSINESS AND ESTATE ADVISORS,,F4200\nInformation Requeste,Self/Miramax Films,C2400\n350 Waren LP,LLP Member,Y4000\nBUSINESS EXECUTIVE,BLACK ROCK KELSO CAPITAL,F0000\nCEO,LAKE GEORGE RV PARK INC.,Y4000\nOW,FILLMORE AND FISHER PHARMACY INC,H1750\nPresident,(@) Business,Y4000\nOwner,Rdn Miscellaneous Metals,M5000\nCPA,Wall Einhorn & Chernitzer,F5100\nKENCO GROUP,,T7200\nTHOUSAND ISLAND PRINTING,,C1300\nMANAGER,NOCO ENERGY/MANAGER,E1100\nNetwork Engineer,EW Scripps,C1100\nPhysician,\"Mt Sinai Medical Center, New York\",H2100\nLEWIS AND ROCA,,J5100\nManagement Consultant,The Parthenon Group,G5270\nFINANCI,DHK FINANCIAL ADVISORS INC.,F0000\nTEXAS RAILROAD COMMISSION,,X3000\nRETIRED,TOOL MAKER,X1200\nOwner/ Private Inves,TriStar Investigations,Y4000\nOwner,Gbn Inc,Y4000\nRITTENHOUSE FINANCIAL SERVICE,,F2100\nTHOMPSON HINE & FLORY LL,,K1000\nSocial Work,Mental Health Assn. of SE PA,Y4000\nDevelopment Consultant,REI Equities,Y4000\nSubstitute Teacher,Substitute Teacher,H5100\nCENTRAL SCHOOL DISTRICT,,X3500\nPRES,ISR MEDIA,J5100\nCEO,\"Great Plains Cos, Inc.\",Z9500\nSenior Manager,Peabody Energy,E1210\nProfessor,Montgomery County Community College,J1200\nEXECUTIVE,\"ADVANCED MEDIA INTERNATIONAL, LLC\",Y4000\nReal Estate Developer,\"J. Loew & Associates, Inc.\",F4000\nNATI,SVP PROGRAM AND NETWORK POLICY,Y4000\nVICE PRESIDENT,AIMCO,F4500\nRegistered Nurse,APCCM,Y4000\nEXECUTIVE,BRIO INVESTMENT GROUP,F7000\nVp-Merchandisng,Barnes & Noble,G4600\nExecutive,\"Poplar Grove Partners II, LLC\",Y4000\nAUTO DEALER,NISSAN OF E. PROVIDENCE,T2310\nANESTHESIOLOGIST,KAISER PERMANENTE MED,H1130\nVeterinerian,Self employed,A4500\nExec VP,\"Molasky Pacific, LLC\",Y4000\nRET,CASE WESTERN RESERVE UNIVERSITY,J1200\nVP,FCSO,F3200\nAttorney,GCR LLC,Y4000\nExecutive,\"Staghorn Energy, LLC\",E1000\nDealer,Dreher Holloway Jaguar,T2310\nPartner,Pinnacle Group,Y4000\nPHYSICIAN,ARGONNE NATIONAL LABS,X3000\nCITY OF NORCROSS,,X3000\nAttorney,\"Gronek & Latham, P.A.\",A2000\n\"EXECUTIVE VICE PRESIDENT, HUMAN RESOUR\",COMCAST CABLE,C2200\nAttorney,Sutton Hicks and Lucas,K1000\nPHYSCIAN & SURGEN,SELF EMPLOYED,H1130\nCHAIRMAN,TARLTON CORP,B1000\nSHIP REPAIR,NORTH POINT MARINE & INDUSTRIAL INC,Y4000\nINSURANCE BROKER,AEGIS SERVICE CORP,Y4000\nPRESIDENT,VIACOM PARAMOUNT PICTURES/PRESIDENT,Y4000\nOWNER,\"MICHAEL'S DESIGN\",Y4000\nPresident,Gbmp Investment Corp.,F4000\nattorney,Budin & Lipkin,K1000\nHARPER CHEVROLET,,T2300\ninsurance,The Delp Company,F3100\nW C FOREST PRODUCT INC,,A5000\nWALNUT GROVE AUCTION,,Y4000\nNJ DEPT OF ED,,X3500\nPhysician,\"Saint Mary's Hospital\",H1100\nJOURNEYPERSON,BAC LOCAL NO 18 MO TILE MARBLE/JOUR,LB100\nPRESIDENT,JOHN R. PARISH COMPANY,J1100\nAttorney,\"Frederic Dorwart, Lawyers\",K1000\nDIMENSIONS IN BEHAVIORAL SCIENCE,,H3800\nOWNER,MCDONALS,Y4000\nCAFE SUCH A BAGEL,,G2900\nCEO,\"Alltite, Inc\",Y4000\nBUSINESS WOMAN,SELF,J7400\nVOLUNTEER,,B5300\nAUSTIN URETHANE,,M1500\nDirector Of Communications,Itt Industries,C5000\nSENIOR VICE PRESIDEN,MERRILL LYNCH,J5400\nPHYSICAL THER,MICHAEL MATTIA MS. PT,Y4000\nBROOKE COMMUNICATIONS IN,,Y4000\nPhysician,Jean Pierre M.D.,H1100\nExecutive,\"Proactive Strategies, Inc.\",Y4000\nACCOUNT,FARFAR PATHOLING ASSOCIATES,H1130\nAFFILIATED CAPITAL,,F0000\nPRESIDENT,BROADCAST CAPITAL,C2100\nKAUFMAN AND CONOLES,,Y4000\nExecutive,Peter Kiewit Sons,B1000\nKAUFMAN & REIBACH,,K1000\nRetired,OPPENHEIMER FAMILY FOUNDATION,X4100\nAG TRUCKING,,T3100\nFire Fighter / EMS,Minneapolis Airport Fire Dept,L1400\nBusiness Consultant,Self Employed,Y4000\nM T COMMUNICATIONS,,C2100\nCOMMUNICATIONS TECH,HOMELAND DEFENSE,Y4000\nWEALTH,OPTIMAL WEALTH & INVESTMENTS,F2100\nExecutive,J & W Seligman & Co.,F2100\nGreenhouse Operator,\"Russo's Greenhouse Inc.\",Y4000\nSUPREME HEATING,,B3400\nLynn Mckinley-Grant,,Y4000\nPresident & Coo,Apptis,C5130\nPRESIDENT & CEO,MERCED PROPERTY & CASUALTY COMPANY,F3100\nINVESTMENTS ADVISOR,CARDINAL INVESTMENTS COMPANY,F7000\nSELF EMPLOYED,\"TIFFANY'S RESORT\",Y4000\nVice President,ABB Inc,J1200\nEXECUTIVE,SPA CASTLE,G5100\nDIRECTOR OF DEVELOPMENT,THE CAMRIDGE SCHOOL OF DALLAS,Y4000\nInformation Requeste,State Water Resources Control  B,E5000\nFINANCE,GREYSTONE CO,F2100\nAssoc Curator - Ethnohistory,University of Arizona,H5100\nSINGER EXTRACT INC,,G2110\nHARRY MOODY OUTDOOR ADVERTISING,,G5230\nATTORNEY,ENTWISTLE & CAPPUCCI LLP,K1000\nEngineer,Evergreen Operating Co.,Y4000\nHarris Assoc,,F2100\nASSOCIATE LAB DIRECT,U.T.-BATTELLE,E0000\nOWNER,JMI PROPERTIES/OWNER,F4000\nRn,Newton Wellesley Hos,Y4000\nARVEY HODES ET AL,,K1000\nMIDDLE OFFICE,ELLIOTT MANAGEMENT CORP.,F2700\nHOWARD MERRELL & PARTNERS INC,,Y4000\nV.P.,APCO WORLDWIDE,G5210\nENGINEER,PRECISION FILTERS INC,C5000\nRESEARCH,NYS PSYCHIATRIC INSTITUTE,Y4000\nManaging Partner,RM Capital Management LLC,F2100\nSELF,CATTLE RANCHER,A3000\nPRESIDENT/CFO/A&D COLD STORAGE INC.,,J1200\nOccupational Therapist,Not Employed,H1700\nPresident,3Rivers Developoment Corp,Y4000\nFinancial Advisor,Mapstone Financial Group,F0000\nAttorney,Bernstein Liebhard and Lifshitz,K1000\nDOGGIE DAYCARE OWNER,PLANET POOCH / SELF,Y4000\nInsurance Agent,\"Cassens Insurance Agency, Inc\",F3100\nSABAN ENTERTAINMENT INC.,,C2300\nBROKER,GOGGANS INC.,K2000\nExecutive,Kempthorn Moters,T2300\nBANKING,CHASE FINANCING LTD,F1000\nProfessor,Florida Institute of Technology,H5100\nLAWYER,BENDISH STABENGH & STRONG,K1000\nCEO,OVERSEAS SERVICES CORP,G5200\nPARTNER,RYAN PHILLIPS UTECHT ET AL,K2000\nNASH JOHNSON & SONS FARM,,A2300\nDirector,Comsquared Systems,Y4000\nAttorney,MILBANK TWEED HADLEY,K1000\nFARMER OWNER,,Y4000\nCONSTRUCTION,AGRO INDUSTRIES,J5200\nCLOSE-TROTTER,,Y4000\nPHYSICIAN,LOWERY EYE CENTER,H1100\nIT Consulting,eAlliance Corporation,Y4000\nKNIGHTS OIL TOOLS,OWNER,E1150\nB&T DIST CO,,G2850\nRetired,\"St. Stephen' Episcopal Church\",X7000\nReal Estate Developer,Altman Company,F4100\nReatil Store Owner,Self employed,G4000\n\"VP, ENGINEERING\",STEELEYE TECHNOLOGY,Y4000\nSECURITY ENGINEER,INFORMATION REQUESTED PER BEST EFFORTS,H5100\nQUATRO CORPORATION,,G5200\nUrologist,\"Paul Michael Block, MD\",H1130\nENGINEER,REEB RIGGING,Y4000\nRetail Executive,Milwaukee Brewers Baseball Club,F2100\nFLIPPO LUMBER CORP,,A5000\npresident,Subway Development of SC,Y4000\nC S I S,,G5200\nGENERAL MANAGER,HONEYWELL INTERNATIONAL,M2300\nORAL SURGEON,AVADA ORAL SURGERY ASSOCIATES,H1400\nINFO REQUESTED,A-trains Hobby Store,Y4000\nAJC CONSTRUCT CO,,B2000\nCARDIOVASCULAR MEDICAL GROUP OF SO,,H1130\nDUNCAN CONSTRUCTION,,B1000\nCONDORTECH SERVICES INC,,Y4000\nManaging Director,Tudor Investment Corp (Retired),X1200\nVIRGINIA HEALTH SERVICES,,H0000\nBARRICK ENTERPRISES INC,,G4300\nC.E.O,CASH AMERICA INTERNATIONAL,F1420\nEL PASO WATER DISTRICT,,Y4000\nCEO,CINTEL FEDERAL CREDIT UNION,F1300\nNurse,Flushing Hospital,H2100\nProfessor,Univ. NV Reno,H5100\nN / A/SELF EMPLOYED BSNSMAN,,G0000\nChairman,Favour Royal,F7000\nINSTRUC,DES MOINES AREA COMM. COLL.,H5100\nC P P V A,,H1100\nAttorney,\"Richard v Falcon, PA\",Y4000\nConsultant,Steven Wolfe & Assoc,K2000\nCHRISTIANSEN DRYWALL INC./SEC./TREA,,B3000\nTeacher,University of Illinois,H5100\nOwner,Idaho Systems LLC,Y4000\nMgr Complex,\"Tyson Foods, Inc\",G2300\nALLAN A MYERS INC,,B1000\nLI OF IDAHO,,Y4000\nDIRECTOR OF RURAL DEVELOPMENT,USDA,X3000\nALLIANCE CAPITAL,,Y4000\nPUBLISH,\"AMERICAN-REPUBLICAN, INC.\",J1100\nMARKET MANEUVERS,,Y4000\nOwner,Sunset Chiropractic,H1500\nATTORNEY,BENSON BYRNE & RISCH,K1000\nC.P.A.,Sel-Employed,G0000\nCEO,INSIGHT INVESTMENTS,Z9500\nBENEFITS DIRECTO,VALERO ENERGY CORP,E1100\nENGINEER,NUCLEAR REGULATORY COMMISSION/ENGIN,X3000\nCORPORATE STRATEGY,IHS/CORPORATE STRATEGY,C5130\nAttorney,US Dept Of HUD,X3000\nPresident,\"Ellis Enterprises,inc.\",Y4000\nENGINEE,MCWHORTER & FRANKLIN ENGRS.,Y4000\nSALES MANAGER,SALES MANAGER,G0000\nCo-Founder,Next Fuels,Z9500\nCIO,THE ANDERSONS,A4000\nRETIRED,SCIENTIST,X0000\nV. P. NORTH AMERICAN OPT.,UNITED SUGARS CORPORATION,A1200\nLORD DAY & LORD BARRETT SMITH,,K2000\nchild psychiatrist,self employed,H1110\nCFO,MCCOY GROUP INC.,Y4000\nEXECUTIVE,GHAFARI ASSOCIATES INC.,B4200\ngovt relations,Southern Strategies,K2000\nPRODUCER,ANDREW WYLY FILM CO,Z9500\nATTY,SELF,K1000\nCONSERVATION VOL,,JE300\nHANSEN BLACKWELL SANDERS,,Y4000\nLUMBAR CARPETS,,Y4000\nContractor,KWS Construction,B1500\nTEMPLE TRAVEL,,T9400\nTREASURER,ROBISON INTERNATIONAL,K2000\nPRESIDENT/CEO,PNGC POWER,E1610\nInformation Requeste,Building Contractor/Sugar Ridge Land C,B2000\nPresident,\"Paid In Full, Inc\",Y4000\nBethlehem Ev. Lutheran Church,,X7000\nCEO,Aids Action Committee of MA,H3500\nPLAS,AESTHETIC SURGERY CENTER OF WP,H1130\nFinance,Finance,F0000\n\"DIRECTOR, HUMAN RESOURCES\",CORNING INCORPORATED,C5110\nAttorney,EMPIRE REALTY COMPANY,F4200\nSUMMIT SCHOOL,,H5000\nMCPHERSON MEDICAL & SURGICAL A,,Y4000\nTRI CITY OIL,,E1100\nProject Manager,Bell and Associates Construction,B1500\nInsurance Agent,Mark V. Williamson Co.,F3100\nBIOLOGIST,YALE UNIV,J7400\nHALL-ERICKSON INC.,,Y4000\nACCURATE CONSTRUCTION & EXCAVATION,,B0500\nOwner,NexGen Industries,T3100\nOwner,\"Fuel Frontiers, Inc.\",Y4000\nROTELLE INC,,G2500\nOWNER,TOCCO & ASSOC. INC.,Y4000\nINSURANCE SALES,DISTINGUISHED PROGRAMS GROUP,F3100\nPRESIDENT,ELLIS PARKING CO,F4500\nProgrammer,Callvision,Y4000\nExecutive Director,MS Manufactured Housing,Y4000\nPresident,Infotonics Technology Center,C5000\nLAW OFFICES OF D GOLOMB,,K1000\nChairman,Flagstar Bank,F1200\nPACIFIC COAST SEAFOOD,,G2350\nCeo,Community Gatepath,Z9500\nTITLE CONSULTANT,SELF,G0000\nSELF EMPLOYED/PSYCHOTHERAPIST,COLUMBIA COLLEGE/PROFESSOR/RETIRED,X1200\nExecutive,Heisley Family Foundation,Y4000\nInformation Requeste,Kpmg LLP,F5100\nVANECH BROTHERS INC,,B2000\nINFO REQUESTED,\"Midwest Health Professionals, Pc\",H0000\nROMANO ENTERPRISES,,J1100\nVice President,Retail store,G4000\nAttorney/Managing Partner,LOCKE LIDDELL & SAPP L.L.P.,K1000\nINSURANCE BROKER,THE DANA COMPANIES,F3100\nSEDGWICK DETERT MORAN AND ARNOLD LL,,Y4000\nPRESIDENT,\"DAVID JONES INVESTMENTS, INC.\",F7000\nATTY,NUTTER MCCLENNAN & FISH,K1000\nPRESIDENT,COLEMAN AMERICAN,T3100\nAttorney,Finn & Hurtt,J1200\nPRINCIPAL,ACKERMAN REALTY,F4200\nFederal Management Systems Inc,President,G5270\nAttorney,Lashly Baer and Hamel,K1000\nOWNER,HUGHES AND ASSOCIATES,Y4000\nCHAIRMAN,RUSNAK GROUP,T2300\nExecutive Director,WMAN,Y4000\nPRESIDEN,FIRST FEDERAL SAVINGS BANK,F1100\nSINGER/ACTOR,SELF,C2600\nDELLRUSSO FUNERAL HOME,,G5400\nREFCO INC,,F2100\nSales,Fuchs Lubricant,M1000\nELECTRIC POWER RESEARCH INST,,E1600\nlandscape contractor,Self,B3600\nTRAVEL HORIZONS UNLIMITED,,T9400\nBUSINESSMAN,F. M. C. TECHNOLOGIES,E1150\nAttorney,Anthem,F3200\n\"AMERICAN HOLE 'N ONE\",,Y4000\nREALTOR,ROWENA COMPANIES,F4000\nLAWYER,ATLANTIC JUSTICE LAW GROUP,Y4000\nINTERIOR DESIGN,MELISSA RICE DESIGNS LLC,Z9500\nPRAIRIE GARDENS,,Y4000\nPHYSICION,SELF-KRYSTYNA BELSKI/PHYSICION,Y4000\nAttorney,Gallon Takacs Boissoneault & Schaffer,K1000\nATTORNEY,MITCHELL & SILBERBERG,K1000\nDirector/Producer,Warner Bros.,C2400\nGENERAL COUNSEL,FIRST MIDWEST BANK,F1100\nM ALFIERI CO INC,,B1000\nRetired Stuntman,N/A,X1200\nPartner,\"O'Keefe Ashendon Lyons LLP\",J7400\n\"CORPORATE VICE PRESIDENT, PROPERTY SOL\",BRIGHT HOUSE NETWORKS,C2200\nPARTNER,DENHAM CAPITAL,Y4000\nPresident & CEO,Orange County Credit Union,F1300\nBRUCE C BRIDGMAN,,J1100\nSR. VICE PRESIDENT,AMTRUST MORTGAGE,F4600\nOwner,Brueckner Insurance & Financial Servic,B0500\nATT,OSULLIVAN BEAUCHAMP KELLY ET AL,Y4000\nSENIOR VICE PRESIDENT & GENERAL COUNSE,BIOMET INC,H4100\nCONSULTING PETROLEUM,SELF-EMPLOYED,E1000\nPROGRAM MANAGER,LIFE TECHNOLOGIES,H4500\n,WALLERL LANSDEN DORTCH & DAVIS LLP,K1100\nEmergency Physician,Self Reg Hlth Care,H1100\nPhysician,St anthony Hospital,H1100\nChairman & CEO,The Vanguard Group,F2100\nGENERAL MANAGER,TOMAK PRECISION,M2300\nOPERATIONS,CISCO SYSTEMS,C5110\nEMMIS,WKCF-TV,C2100\nCEO,\"Boscov's Dept Stores\",G4300\nINFORMATION TECHNOLOGY,SAN BERNARDINO,Y4000\n\"PRESIDENT, OW\",MULTI-CARE MANAGEMENT,G5270\nC.E.O.,Viacom Outdoor,G5230\nRestaurateur,Jack,G2900\nGENERAL MANAGER,UNITED TELEPHONE ASSN,C4100\nSocial Worker,Surfer Worker,Y4000\nATTORNEY,\"VAUGHT & CONNER, PLLC\",K1000\nCONSULTANT,JACKSON EDUCATION CONSULTING INC,Y4000\nREGIONAL MANAGERS,MICRO FLO COMPANY,Y4000\nCEO,BLUE CHIP SURGICAL,Y4000\nDIE SETTER,LEGGETT & PLATT INC,M4100\nENGINEER,\"WCW INTERNATIONAL, INC.\",Y4000\nNURSE,HUNTINGTON PRACTICE ASSOCIATES,Y4000\nChief Executive Officer,GOJO Industries Inc,J7500\nINVESTORS TITLE INSURANCE COMPANY,,F4300\nMANAGER,MONTGOMERY COUNTY,X3000\nAttorney,\"Levin, Fishbein, Sedran, & Berman\",K1100\nCoo,St Paul Travelers,F3400\nINVE,NATIONWIDE HEALTH PROPERTIES I,F4000\nATTORNEY,\"DOWD, HOWARD & CORRIGAN, LLC\",K1000\nJEWELRY DESIGNER,KIM ALESSI INC.,Y4000\nSVP AND REGIONAL GENERAL COUNSEL,\"BOSTON PROPERTIES, INC.\",F4100\nSupervision Aide,Los Angeles Unified School District,X3500\nOWNE,WESTERN KENTUCKY ENDOSCOPY INC,Y4000\nSENIOR ADVISOR,LOUNSBERY FOUNDATION,Y4000\nUNIV OF CAL-BERKELEY,,J1200\nEXECUTIVE,ST FRANCIS UNIVERSITY,H5100\nATTORNEY,PARKER ROSEN LAW/ATTORNEY,K1000\nCAPITAL CARE MANAGEMENT COMPANY,,H2200\nChief Executive,Golden Eagle Distributors,G2850\nMANAGING DIRECTOR,DDB,G5210\nConsultant,Dynamix Partners,Y4000\nRPH,BELLEVUE PHARMACY,H1750\n\"Director, Subdivisio\",Nebraska Public Power District,E1600\nK & F DISCOUNT FASHIONS,,G4100\nSELF EMPLOYED/RANCHING/HUNTING,,A3000\nCONSULTANT,\"HEALTH MANAGEMENT ASSOCIATES, INC.\",H2100\nOIL & GAS EXPLORATION AND PROD,,E1120\nSpeece-Lewis Enginee,Self,B4400\nCYMRI INC,,C5120\nA,GRUBMAN INDURSKY & SCHINDLER P.C.,K1000\nTelevision Editor,NICKELODEON,C2200\n\"VP, Purchasing & Pro\",Diversicare Management Service,H2200\nBRODERICK OFFICE FURNITURE,,Y4000\nREAL ESTATE,CUMMINGS PROPERTIES,F4100\nPHYSICIAN,OSA PHYSICIANS,H1130\nVice President,H & H System & Design,Y4000\nPresident,ETEC,M2300\ncitrus/real estate,Nelson & Company,F5100\nWILCO AREA CAREER CENTER,,H5200\nTEACHER,BELMONT SCHOOL,Z9500\nAssociate Lab Director,Battelle,D9000\nPROJECT MANAGER,HOMELAND SECURITY,Y4000\nActor/ President,Sweet Willy Productions,Y4000\nBusiness Coordinator,Oneil properties,F4000\nH L S INC,,Y4000\nOwner of Restaurant,\"Libby's\",G2900\nPHYSICIAN,READING ANES ASSOC,H1130\nGILLETTE NEBRASKA DAIRIES,,A2000\nJOHN C WHITE DDS,,G1200\nATTY,NAUGHTON LAW,Z9500\nExecutive,Energy Future Holdings C,E1600\nOWNER,OWENS SUPPLY,Y4000\nPARTNER,\"JOHNSON, MADIGAN PECK\",K2000\nOWNER,WALLACE ELECTRICAL,B3200\nBANKER,C. E. UNTERBERG TOWBIN,F2300\nPresident,\"Key Investment, Inc.\",JE300\nRETI,SHEET METAL WORKERS LOCAL  268,LB100\nVenture Capital,Inctank,Y4000\nVICE PRESIDENT,L & G CONCRETE,B5100\nPRESIDENT,JALA GROUP,Y4000\nVice President,AON RISK SERVICES OF TEXAS,F3100\nPRESIDENT AND FOUNDER,\"WINNING CONNECTIONS, INC.\",G5260\nATTORNEY,MURPHY DESMOND S.C.,J1200\nINDEPENDENT CONSULTANT,NOT EMPLOYED,X1200\nLORENTZ BRUUN CO INC,,Y4000\nAttorney,Carrigan McCluskey & Roberson,Y4000\nMINISTER,\"ST. PAUL'S EPISCOPAL CHURCH\",X7000\nHEAL,REGIONAL E. TEXAS HEALTHCARE S,Y4000\nMedpace,,Y4000\nEMERGENCY PHYSICIAN,WAKE EMER PHYS PA,H1100\nSoftware Development Engineer,Amazoncom,C5140\nPAYNE WEBBER,,G2900\nPRESIDENT,\"NELSON-JAMESON, INC.\",G3000\nDESIGNER,JANE WILNER DESIGNS,M8000\nPRESIDENT,ASSOC. OF BERMUDA INSURERS AND REINSUR,F3000\nVICE PRESIDE,WALTER INDUSTRIES INC.,E1210\nEXECUTIVE,GREGORY CONSTRUCTION,J1100\nManager,WIJ Inc,Y4000\nCEO,SRA INTERNATIONAL INC.,D9000\nSR. IP ASSOCIATE,ELECTRONIC ARTS INC.,C5120\nARS SALES REPRESENTATIVE,\"REALPAGE, INC.\",F4100\nEXECUTIVE,BUCKINGHAM COMPANIES,Y4000\nCEO,AES LLC,C5140\nATTORNEY,ASHCROFT-SULLIVAN,K1000\nPRESIDEN,DELANY CAPITAL CORPORATION,G5270\nMAINOUR & GRANT,,Y4000\nIndustry Team Leader,Hydrolox,Y4000\nExecutive,Mclean Contracting Company,Y4000\nTAILOR,SELF,G5000\nSALES MANAGER,HORTON SELLERS,Y4000\nN/A- Homemaker,N/A,J1200\nPHARMACIST,SUPER DRUGS,G4900\nEducation,\"Plorah, Inc\",Y4000\nADMINISTRATOR,REDFORD TOWNSHIP,X3000\nQUEENSBORO STEEL,,M2100\nCHEF,TREVA RESTAURANT,G2900\nCEO,Progreso Finaciero,F0000\nSTUDENT,SANTA CLARA UNIVERSITY/STUDENT,Y1000\nPRESIDENT,RAIN COMMUNICATIONS,Y4000\nINVESTMENT,RAINTREE INVESTMENT CORP,J1100\nCONSULTANT,D. BECKER CONSULTING INC,H1700\nKUBAN,,Y4000\nCPA,NEWBY & ASSOCIATES,F5100\nPARTNER,STEVE DEVALENTINE FARMS,A1000\nLAW FIRM CONSULTANT,WILEY REIN LLP,K1000\nPresident and Founde,Fashion Institute of Design an,H5200\nWOODMEN,,Y4000\nRegional Sales Vice,Bumble Bee Seafoods LLC,G2350\nNUCOR CORP,,J1100\nNATL ASIAN PACIFIC CTR AGING,,Y4000\nEXECUTIVE,HILLIARD BROTHERS,A3000\nPRINTING BUS,,Y4000\nWHITE HOUSE DC,,J1100\nPHYSICIAN,PREFERRED ANESTH. CONSULTANTS,H1130\nMechanical Engineer,IT Services,Y4000\nLawyer,\"SHAW NORTON, L.L.P.\",Y4000\nCLINCIAL SUPPORT SPEC,\"ABIOMED, INC.\",H4100\nPresident,J.L. HUBBARD COMPANY,G5000\nHousehold manager,Information Requested,E1100\nHOLIDAY RETIREMENT CORP,,B2000\nAttorney,law office of darlena belts,K1000\nH.S. TE,GWINNETT CO. PUBLIC SCHOOLS,X3500\nSELF- EMPLOYE,JOHN H. KIM M.D. P.C.,Y4000\nSTAFF PHYSICIAN,BARAGA COUNTY MEMORIAL HOSPTIAL,H2100\nFormer President,GRB Solutions Inc,Y4000\nteacher/staff develo,NYC Dept of Education,X3500\nDEVELOPER,,J1200\nWAKEFIELD NATIONAL BAN,,F1100\nEXECUTIVE,CEMARA,Y4000\nMANAGER,MIDDLE GEORGIA INTERNAL MEDICINE & KID,Y4000\nEXECUTIVE VICE PRESIDENT,EOG RESOURCES INC,E1140\nCHAIRMAN & CEO,\"BECHTEL GROUP, INC/CHAIRMAN & CEO\",B1000\nSr. V.P.,Golden Rule Financial Corp.,F3100\n\"OLSSON, FRANK & WEEDA\",,K1000\nSOCI,LEE COUNTY DEPT OF SOCIAL SERV,Y4000\nWHOLESALE NURSERY,LOG HOUSE PLANTS,J1200\nMILLER GARDNER INC CONSULTING ET AL,,B4000\nREAL ESTATE,WHEELER APPRAISALS,F4700\nVP Public Affairs,UNION PACIFIC RAILROAD,T5100\nCOMMERCIAL MANAGER,SHELL CHEMICAL,Y4000\nDEFENDER RESORT MANAGEMENT INC,,Y4000\n\"Senior V. P., Dental\",ODS,F3200\nHealth Care Attorney,\"Murer Consultants, Inc\",Z9500\nREALTOR,MCGREW REALTY,F4200\nEXECU,PA ASSC. OF MEDICAL SUPPLIERS,H4100\nR N,MANASSAS PEDS,H1130\n\"GOLDEN'S COMPANIES\",,B5100\nAttorney,Duane Morris LP,K1000\nREALTO,CORNERSTONE PROPERTY MGT. VA,F4500\nK WATSON CO,,Y4000\nPIVNICK PLYWOOD,,B5200\nADMINISTRATOR,MT. SINAI,Y4000\nVICE CHAIRMAN,AGH FINANCIAL CORP.,F0000\nCHIEF EXECUTI,\"ON DECK CAPITAL, INC.\",Y4000\nINFORMAT,GLOBAL CONSULTING SERVICES,Y4000\nLEG. DIR.,BARBOUR GRIFFITH & ROGERS,K2000\nMANA,ONE PRICE CLOTHING STORES INC.,G4100\nSTRATEGIC,SOUTHERN COMPANY SERVICES,E1620\nReal Estate Broker,ROBERT ARKLEY REAL ESTATE,F4200\nCONSULTANT,A NEW ME,Y4000\nScientist,Athena Neurosciences,J7400\n\"SKIDS FARMS, INC./FARMER/RANCHER\",,A1000\nREAL ESTATE DEVELOPER,ROTHWELL GORNT COMPANIES,Y4000\nMRJ GROUP INC,,Y4000\nBANKER,CHILTON TRUST COMPANY,Y4000\nMINNESOTA COMM COLLEGE SYSTEMS,,H5100\nATTORNEY,KAYSER & REDFERN LLP,J1100\nPSYCHOLOGIST,THE WELLNESS INSTITUTE,J7400\nMILOS PUSKAR CPA,,F5100\nMANAGER,,F3100\nC.F.O,\"CUMMING CUMBERLAND, INC\",Y4000\nRDO,HCR. MANOR CARE INC,H2200\nFREY & SON FARMS,,A0000\nGeophysicist,Prospect Consulting,Y4000\nPRESID,FEMCO SERVICE INC. OIL DIST.,Y4000\nVP SUPPLY CHAIN MNGMT,DRS TECH,D3000\nPharmacist,The Home Health Store,Y4000\nAccountant,Certified Public Accountants,Y4000\nJUNKERT CONSTR JEFF,,B2000\nOWNER,CAJUN INDUSTRIES,B1000\nJOHN WORTHAM & SON,,Y4000\nOWNER,COCHRAN HARDWOOD LLC,Y4000\nRETIRED,,Z9100\nAMERICAN HEALTH INC,,H0000\nDIRECTOR GOV,RALSTON PURINA COMPANY,Z9500\nChairman,Williams & Jensen PC,K2100\nGOVERNMENT RELATIO,CT HOSPITAL ASSN,H2100\nWORKER,KENNAMETAL,Z9500\nOFFICER,TELAPEX,C4100\nVp Sales,mge,Y4000\nPresident/General Ma,\"Deaf Smith Electric Cooperative, Inc.\",E1610\nDISTRIBUTION MANUFACTU,L. B. FOSTER,M5000\nRet,Retired,G6400\nTOP DENTAL GROUP INC,,H1400\nLAWYER,WR BERKLEY,F3400\nLegal Referral Couns,Association Of The Bar Of The City Of,X3000\nHair Cutter,SELF-EMPLOYED,G0000\nPHYSICIAN (RADIOLOGIST),RADIOLOGY ASSOC OF THE FV,H1130\nDOCTOR,DIGESTIVE DISEASE CONULTANTS,H1130\nWEATHERFORD TITLE,,F4300\nINVEST,RAYMOND JAMES FINANCIAL SERV,F2100\nGeneral Counsel,International Rectifier Corp.,Z9500\nJACK EVERETT LLC,,Y4000\nCORPORATE DIRECTOR,DISNEY COMPANY,C2000\nExecutive Vice President,BD,Y4000\nALEX N CORPORATION,,Y4000\nC.E.O.,\"OBJECT VIDEO, INC.\",C5130\nConstruction Industry,Corna Kokosing,B1500\nMERCHANT,PHILIP F. BOGATIN INC.,M2400\nRENTAL - MAN,WATERFALL VILLAGE,Y4000\nOWNER,INTELECT INC.,Y4000\nDIAGNOSTIC RADIOLOGIST,VA HOSPITAL OF PR,H1130\nINVESTOR,\"ZANONE PROPERTIES, LLC\",J1100\nREAL ESTATE,PEABODY & SMITH,F4200\nPRESIDENT,ACM DISTRIBUTING,Y4000\nCEO,CAMPUS FEDERAL CREDIT UNION,F1300\nSALES,TUFF SHED INC,Y4000\nC E O,AMERICAN RENAL ASSOCIATES,H3000\nCPA,\"GILBERT ASSOCIATES, INC.\",Y4000\nCEO,GLOBAL PARTNERS,E1140\nNORTHWEST CHIROPRACTIC CENTER,,H1500\nPATHOLOGIST,UNIVERSITY PATHOLOGISTS/PATHOLOGIST,H1130\nSatow Foudation,Self employed,X4100\nBank CEO,Bryant Bank,F1100\nPARTNER,TARGETED CREATIVE COMMUNICAT,Y4000\nLAWYER,MCML PA,K1000\nConsultant,I.D.M.C.,Y4000\nRN,LIEBBE FRIM,Y4000\nAARDEMA DAIRY,,A2000\nSenior Vice President Valued Clients G,At&T,Y4000\nASST PUBLISHER,HI TORQUE PUB,C1100\nEXEC.,WEIGHT LOSS ENTERPRISES,Y4000\n\"Manager, Travel\",California State Automobile Associatio,Y4000\nSENIOR ATTORNEY,IMMIGRANT & REFUGEE SERVICES,J9000\nVice President,The Mountain Company,B3000\nMANAGING GENERAL PARTNER,\"GOULD INVESTORS, L.P.\",J5100\nNEIGHBORCARE PHARMACIES,,G4900\nATTORNEY,SMITH BROWN-YAZZIE LLP,K2000\nNW FORESTRY ASSN,,A5000\nOWNER,R & J MACHINERY SALES INC,Y4000\nDiagnostic Radiologist,Casper Medical Imaging,H1130\nUS POSTAL SERVICE,US POSTAL SERVICE,X3700\nPreformance Artist,Self-Employed,Y4000\nATTORNEY,GOREN & GOREN P.C.,K1000\nManager/Trader,G Bar LP,Y4000\nPawnbroker,\"Kohn's Loan Co.\",G4600\nCampaign Manager,Mario Trujillo for DA 2012,Y4000\nATTORNEY,SHEFSKY E. FROELICH,K1000\nCHAIRMAN BUSINESS EXECUTIVE,SOUTHERN STAR SHIPPING CO. INC.,T6200\nCULLEN MURPHY & CO,,F3100\nBILL HUGHES REAL ESTATE,,F4000\nChief Operating Offi,Medical Asst. Research Specialist,H0000\nGroup President,\"Oscar J. Boldt, Contractor\",Y4000\nORTHOPEDIC SURGEON,,F2200\nINTERFACE CONSTR,,B1000\nWAMU,,C2100\nHUNTER ASSOCIATES INC,,Y4000\nASI INC,,G5250\nPresident,Suburban Chevrolet,T2300\nSALES EXECUTIVE,SCRIPTSAVE,Y4000\nILLUSTRATOR,KIRKMAN ILLUSTRATION LLC,Y4000\nBuilding Contractor,Project Management Inc.,Y4000\n\"MCAULIFF, KELLY & RAFFAELLI\",,K2100\nProgrammer,TekSystems,G5250\nVA AUTO DEALERS ASSOCIA,,T2300\nCEO,\"News America, Inc.\",C1100\nPROPERTY MANAGER,HOLMES INVESTMENTS,F7000\nRAY GIAMPAOLI,,Y4000\nWEAVER INVESTIGATIONS INC,,Y4000\nVP - PUBLIC RELATION,HOLLAND AMERICA LINE INC.,T6250\nENGINEER,AIRCELL,Y4000\nATTORNEY,\"JONES, DAY, PEAVIS & POGUE\",K1000\nCommissioner (District 2),Palm Beach County,X3000\nAttorney,Schwartz Barkin & Mitchell,K1000\nVice President,\"Strahler's Foods Inc.\",Y4000\nATTORNEY,Information Requested,Y4000\nOWNER,PACIFIC COMMERCIAL PROPERTY,F4000\nCRYSTAL CRUISES,,Y4000\nCONTENT COORDINATOR,ROMMEY FOR PRESIDENT INC.,J1100\nOWNE,MANAGEMENT DESIGN & CONST. INC,B1500\nLAWYER,ARCHER & GREINER,K1000\nPCI INDUSTRIES,,M2300\nMTM DEVELOPMENT INC./BUILDER/DEVELO,,F4000\nREAL ESTATE EXECUTIVE,BRANDYWINE REALTY TRUST,F4100\nCHAIRMAN,LATONA ASSOCIATES,F2300\nDAIRY FARMER,NEZINSCOT FARM,A1000\nPresident,Comfort Zone Of Blairsville,Y4000\nlibrarian,MS Gulf Coast Community College,H5100\nCONSULTANT OCCUPATIONAL THERAPY,,H1700\nPresident,\"Ray's Pharmacy Inc\",G1200\nPHYSICIAN,BAZ ALLERGY & ASTHMA,Y4000\nPsychologist,PCA,Y4000\nOWNS INVEST ADV GROUP,,Y4000\nSUPERVISOR,CITY OF ALBUQUERQUE,X3000\nEXIS CAPITAL,,F0000\nANALYST,FINANCIAL SERVICES,F0000\nGARDEN STATE LIMOS,,T4200\nATTORNEY,COOPER & LEE LAW OFFICE,K1000\nBOOZ/ALLEN/HAMILTON/CONSULTANT,,G5270\nLABBATS,JOHANNA FARMS,A2000\nExecutive,Hyde Group,Y4000\nPROFESSOR,UCI,H5100\nEXECUTIVE,READCO,Y4000\nMAGNATONE PUBLISHING,,C1100\nFINANCE,AMA,J7400\nPLAZA CLEANERS,,G5500\n\"MILLER'S BOTTLE CO\",,G2700\nSr Consultant,Emc Corp,C5130\nFLORES AND RUCKS,,E1150\nPRESIDENT AN,\"DOWNING PARTNERS, INC.\",J9000\nJ-PAX PRINTING,,C1300\nOrthepedic Surgeon,Self,H1130\nPhysician,Duke-NUS Med School Singapore,J1200\nPresident,S.B.C. INDIANA,C4100\nROLLINS CLEAVENGER & ROLLINS,,F3100\nAttorney,Morris Laing Evans Brock Kennedy,K1000\nMICHIGAN REPUBLICAN COMMI,,G4800\nSIOUX FALLS CABLE,,C2200\nHEALTHCARE CONSULTANT,UNIVERSAL AMERICAN,F3200\nDIRE,NEW JERSEY BUSINESS FINANCE CO,G1200\nSinger/Painter,Self employed,C2600\nVP,Harris Corporation,D3000\nATTORNEY,MOORE BREWER WOLFE JONES TYLER & NORTH,Y4000\nMIDWESTERN BROADCASTING CO,,C2100\nFINANCIAL ANALYST,SUTTER WEST BAY,H2100\nDIRECTOR,DENTAL EXPLORATION,Y4000\nSR. VP,ENSCONCE,Y4000\nMAINTENANCE MECHANIC,CITY OF SAINT PETERSBURG,X3000\nTIMOTHY CARL BLAKE PA,,K1000\nAttorney,Agnew & Brusavich,K1000\nMANAGER,ROYAL AUTOMOTIVE GROUP,T2000\nCEO,W.L.E. R.R.,Y4000\nPresident/ EVP,Keyspan/ National Grid,E1620\nCEO,DIAMOND STAR,Y4000\nPhysician,UNC School of Medicine,H5150\nHOUSEHOLD BANK,,F1400\nDIRECTOR,\"FLBA OF KINGSBURG, FLCA\",A4000\nCEO,\"Lambert's Cove\",Y4000\nCPA,SMITH COCHRAN & HICKS,Y4000\nScientist,SETI Institute,H5100\nDESIGNER,KITE INC.,Y4000\nSELF EMPLOYED/CONTRACTOR,TUDOR CONSTRUCTION,B1500\nATTORNE,WISEMAN BLACKBURN & FUTRELL,Y4000\n\"VP, FEDERAL RELATIONS\",STRATEGIES 360,K2000\nCONTRAC,M.G.I.C. MORTGAGE INSURANCE,F4600\nsoftware engineer,NS Microwave,C4600\nMAYOR,ISLAMORADA,Y4000\nPresident and CEO,Quail Creek Bank,F1100\nATTORNEY,RAMEY FLOCK,K1000\nSAVAGE ROYALL & SHEHEEN,,K1000\nLIFE INSURANCE,MULLIN TBG,F5000\nRESTAURANTEUR,\"FRISCH'S\",Y4000\nCHAIRMAN,\"BUFFLINK, INC.\",Y4000\nEXECUTIVE,CTS,Y4000\nPatent Agent,(Self),J1200\nORAL SURGEON,EAST LYME ORAL AND MAXILLOFACI,H1400\nGeneral Sales Manage,Glacier Northwest,B5100\nPhysician,Affinity Health Syst,H1100\nGEN TEL CALIFORNIA,,LC100\nIT,Self,Y4000\nDIRECTOR,STEN CORPORATION,Y4000\nconsultant,Besler Consulting,H3000\nPROPERTY MANAGEMENT,BLETTNER GROUP,F4000\nINST FOR DEFENSE ANALYSES,,X5000\nRETIRED LIBRARIAN,,X1200\nelectrician,Albert Electric,Y4000\nInvestment Consultan,Rogers Casey,F2100\nCONSULTANT,WELSTER CONSULTING,Y4000\nPRESIDENT,POE & BROWN OF TEXAS INC.,F3100\nNATIONAL CIVIC LEA,,Y4000\nAttorney/partner,\"Hoagland, Longo, et al\",K1000\nTEAC,WESTMINISTER CHRISTIAN ACADEMY,H5100\nPOPE & JOHN,,K1000\nMOONEY GROVE MOBILE MANOR,,Y4000\nAUTHOR,INDEPENDENT,Y3000\nOwner,Bryant Business Graphics,C1300\nVP Govt Affairs,Ctr for American Progress,Y4000\nINFORMATION TECHNOLO,SANDIA NATIONAL LABORATORIES,D4000\nINVESTMENT MANAGER,REALM PARTNERS,F7000\nIT Specialist,Mundo Red It,C5130\nPHYSICIAN,REGIONAL WOMENS HEALTH GROUP,Y4000\nMIDWAY FORD INC,,J5200\nTDH CAPITAL INC,,F2500\nJULIEN J STUDLEY INCORPORATE,,F4200\nINVESTMENT SPECIALIS,SELF-EMPLOYED,F2200\nSTUDENT,NOT EMPLOYED,B1000\nRAPPAPORT FAMILY FOUNDATION,,J1200\nATTOR,FORMAN HOLT ELIADAS AND RAVIN,K1000\nLIME CAPITAL MANAGEMENT,,Y4000\nAttorney,Mundy & Gammage P.C.,K1000\nChairman,Dell Computer Corp,C5100\nOWNER,TAYLOR CORPORATION,Y4000\nNurse,Ramone Quinones,Y4000\nFLOW BMW,,T2310\n\"DIRECTOR LAW & GOV'T AFFAIRS\",AT&T,C4200\nActive Duty Infantry Officer,US Army,X5000\nKANIA JINDUER LASAK FEENEY,,K1000\n\"SMITH, JOHNSON, BRANDT\",,Y4000\nSr. Scientist,\"BSM, Inc.\",Y4000\nAGRICULTURE SALES,ARIZONA AG MARKETING & CONSULTING GROU,Y4000\nPROPERTY MANAGER,M&R NEUFELD INVESTMENTS,F4000\nHome Health Care provider,\"Hospice of NM, LLC\",H2200\nCHIEF OF STAFF,STENNEY HOYER -,Y4000\nN/A/SLF EMP BUSINESSMAN,,G0000\nDASHKA ROTH,,Y4000\nDrywall Contractor,\"Interior Construction, Inc\",B0500\nPRESIDENT,BOYCOM CABLEVISION INC.,C2200\nproject manager,County of Orange,X3000\nATTORNEY,\"GEORGE H. MOYER, JR.\",K1100\nHISTORIAN,UNIVERSITY OF VIRGINIA,H5100\nCON CHAKA FATTAH,,X3000\nINVESTMENT MANAGER,TA ASSETS LP,F2500\nGRUNFELD DESIDERIO LEBOWITZ,,K1000\nEXECUTIVE,KRAPF BUS COMPANY,Y1000\nREGISTERED INV. ADV.,SELF,Z9500\nChairman of the Board,William Morris Agency,G5000\nDOCTOR,PFIZER,H4300\nART GALLERY OWNER,BERTA WALKER GALLERY,J1200\nGEORGE SCHMID & SONS INC,,Y4000\nVice President/Finan,Bright House Networks,C2200\nSUPER AMERICA,,Y4000\nLaywer,Orrick,K1200\nPASTOR,FAIRMOUNT COMMUNITY CHURCH UNITED CHUR,X7000\nCRNA,FROEDTERT HOSPITAL,H1710\nvideo production,Farris Co.,Y4000\nPROFESSOR,VCU,Y4000\nPARTNER,CUSTOM ONE HOMES,B2000\nPROFESSOR OF M,MASS. GENERAL HOSPIT,H2100\nSELF EMPLOYED,\"MCDONALD'S OF B.R.\",G2900\nMEDICAL O,\"POLARIS EYE & LASER, INC.\",Y4000\nIndependent Oil Producer,Yates Petroleum Corp,E1120\nTraining Coordinator,Northwest Arkansas Community College,J1200\nINFORMATION REQUESTED,CA. DEPT. WATER RESOURCES,Y4000\nEXECUTIVE,ASPLUNDH TREE EXPERT CO/EXECUTIVE,A8000\nFINANCIAL CONSULTANT,NJL&C,Y4000\nGEE & JENSEN ENGINEERS,,Y4000\nMANA,TOPWATER INVESTMENT MANAGEMENT,F2100\nEarly Childhood Educator,The Early Years Sch,Y4000\nSPECTOR ROSEMAN AND KODROFF,,Y4000\nEXECUTIVE,DINCO,F4000\nvoiceover artist,various,Y4000\nSELF-EMPLOYED,CARSON LINE SERVICE,B1000\nBD EDDY ENTERPRISES,,Y4000\nASSOC COMMUNITY PGMS,,J1100\nLand Developer,West Hill,Y4000\nPRESIDENT,BILL HARRIS AUTO CENTER,T2300\nAdvertising Executive,Vogel Farina LLC,Y4000\nOFFICE,NONE,Y2000\nPsychologist,Self-Employed,H1100\nEXECUTIVE,BAERLEIN STRATEGIC,K2000\nATTORNEY,GOODSILL ANDERSON QUINN & STIFEL,Z9500\nWELLNESS COACH,SELF-EMPLOYED,F4100\nPRESIDENT,MISSOURI COALITION FOR LIVESAVING CURE,Y4000\nManager,Eberhard Equipment,Y4000\nOWNER/PRESIDENT,RADCHEM PRODUCTS INC.,Y4000\nOLIVER H VAN HORN CO LLC,,Y4000\nRECREATION DIRECTOR,BLAIRSTOWN GP.,Y4000\nPRODUCE CO,,G2000\nNATIONAL PLUMBING,,B3400\nSocial Services Orga,Sunrisegroup.org,Y4000\nCFO,MONARCH RESOURCES,Y4000\nBELL FUELS,,E1100\nInvestment Banker,LAZARD,F2100\nDOMINION DESIGN,,G5000\nBIO TECHNOLOGY,CARIS INC.,Y4000\nSENIO,JANITRONICS BUILDING SERVICES,Y4000\nSCIENTIST,PHOTON REASEARCH ASSOCIATES,D2000\nCeo,Stake Center Locating,Y4000\nTEMPLE-INLAND FOREST PRODUCTS CORP.,,M7100\nCorporate Trainer/Consultant,Self employed,Y4000\nEngineering Manager,Wyle Labs,D2000\nREGISTERED NUR,SAN DIEGO BLOOD BANK,Y4000\nROLLS ROYCE NORTH AMERICA,,T1300\nMARATHON CONSULTING GROUP,,Y4000\nEXPORT,IMPORT,F2000\nPOLICY CONSULTANT,LEGAL,Y4000\nUNEMPLOYED,N/A,F5000\nPRESIDENT,\"NORMAN PASCHALL CO., INC.\",Y4000\nM D BURKE & CO,,Y4000\nRETIRED GEOPHYSICIST,N/A,X1200\nPartner,Neptune Capital Management LLC,F2100\nCONSULTANT,OPTIMAL ENERGY,E1000\nGARY WILLIAMS OIL AND G,,E1120\nLAW OFFICES OF COUNTRYMAN & MCDANIE,,K1000\nDELTA ADVISORY GROUP,,Y4000\nAttorney,Drexel U,Y4000\nCONSULTING,THE LUCAS GROUP,Y4000\nHAYS LAND CO,,B1000\nExecutive,McLane Group,G0000\nVice Preisdent,BGR Group,K2000\nOffice Manager,Barterpays Inc,J1200\nReal Estate Licensee,Ferrari-Lund Real Estate,Y4000\nATTORNEY,\"THE GLAZER LAW OFFICE, PLLC\",K1000\nSR ASST G,PHILIP MORRIS MGMT. CORP.,A1300\nTOWN OF BLOOMIFELD,,X3000\nFIRST NATIONAL BANK OF TULSA,,F1100\nCEO/Minister,The Joseph Assignment Global Initiativ,Y4000\nSENIOR REA,GMAC COMMERICAL MORTGAGE,F4600\nDDS-Periodontist,Self,H1400\nANESTHESIOLOGIST,PIKES PEAK ANESTHESIA ASSOC./ANESTH,H1130\nFARMER,RETIRED,Z9500\nP&C CONTRACTORS,,B1500\nPrincipal,\"Blank Rome Gov't Relations LLC\",K2000\nGROUP CHAIR,HEALTH LAW DEPARTMENT,K1000\nmanagment consultant,Self,G5270\nHEARTHSTONE ADVISORS,,Y4000\nATTORNEY,\"SCHUCHAT,COOK & WERN\",K1000\nPhysician,Norton Sound Health Corporation,Y4000\nPartner,\"Hughes, Hubbard & Reed, LLP\",K1000\nSelf Employed Owner,\"Pettigrew Associates, inc\",Y4000\nCITIZENS UNIFED INC,,Y4000\nNot Employed,N/A,D4000\nPROGRAM MANAGER,IL DEPT. OF NATURAL RESOURCES,X3000\nMONTMORENCI VINEYARDS,,G2820\nDirector Finance,Cisco,C5110\nEngineer,\"Linscott, Law & Greenspan\",K1000\nHAMBRO FOREST PROD,,A5000\nFederal Public Defender,US Government,X3000\nPresident,The Chickering Group,F3200\nInternational Trade Specialist (Career,US Department of Commerce,X3000\nOwner,Peggy Mackeys Personal Care Home,Y4000\nMetals Broker Buyer,Self,Y4000\nPresident,F&R Construction,B1500\nMASHANTUCKET PEQUOT TRIBAL NAT,,G6550\nGD SEARLE & COMPANY,,H4300\nAdministrator,State of LA,X3000\nOwner,Hyde Park Herald,C1100\nPHYSICIAN,CARDIOVASCULAR SURGERY ASSOC.,H1130\nOWNER/OPERATOR,DOUNG YOUNG NURSERY,Y4000\nPHYS,AFFILIATES IN GASTROENTEROLOGY,H1130\nRESTAURANT & FOOD CAT,SELF EMPLOYED,G2900\nManager,Jefferson Associates,Y4000\nBUSINESS OWNER,MERCOMM INC.,Y4000\nIT Professional,Datasource Inc,Y4000\nMANAGEMENT CONSULTIN,SELF-EMPLOYED,G5270\nBANKER,FIRST SENTINEL BANK,Y4000\nRICHARD E ALEXANDER C,,B1500\nInvestment Manager,Adams St. Partners,Y4000\nSOFTWARE ENGINEER,WMS GAMING,Z9500\nSOFTWARE ENGINEE,CODEGENERATION INC,Y4000\nOWNER OF CROSSFIT VIRTUOSITY,SELF-EMPLOYED,G0000\nJACKSON COUNTY HEALTH CARE AUTHORIT,,X3000\nVICE PRESIDENT,THE ALPINE GROUP,K2000\nMANAGER,CALIFORNIA AIR RESOURCES BOARD,X3000\nCAMPBELL MITHUN,,G5210\nBRYD AND ASSOCIATES,,Y4000\nPRESIDENT,\"TISPORT, LLC\",Y4000\nCFO,DALE JARRETT DRIVING ADVENTURE,Y4000\nEXECUTIVE - ENGINEERING SECTION,GE AVIATION,M2300\nGIBLIN COMBS ETAL,,K1000\nPRIVATE EQUITY,GROTON PARTNERS LLC,J1100\nOIL & GAS,FEATHERSTONE DEVELOPMENT,F4000\nCEO,THE RED APPLE GROUP,E1160\nSR. DIRECTOR,BRIGHT HOUSE NETWORKS,C2200\nISAAC FARMS,,A0000\nCOB,H C Gabler Inc,Y4000\nOWNER,ADVANCED MOLDING TECHNOLOGIES,Y4000\nINSURANCE BROKER,KING & NEEL,J1100\nAttorney,Erickson Beasley Et,Y4000\nEXECUTIVE DIRECTOR,NATIONAL COMMUNITY ACTION FOUNDATION,X4100\nFELDMAN FAMILY LP,,Y4000\nPILGRIM AMERICA GROUP,,J7300\nOSI INDUSTRIES INC,,G2300\nS JOHN DAVIS & ASSOC LT,,Y4000\nROLLINS TRUCK LEASING,,T3000\nOWNER,BARNETT CAPITAL,F0000\nCPA,Zeplowitz and Assoc.,Y4000\nMUSICAL DIR,,Y4000\nATTORNEY,\"DOUGLAS B. LEVY, PC/ATTORNEY\",J5100\nPresident,South Shore Chamber of Commerce,G1100\nEXECUTIVE,\"THE PENINSULA GROUP, INC\",Y4000\nHAN COMMUNICATIONS INC,,J7400\nBusiness Owner,American Systems For Business,Y4000\nOwner,The Livingston Group,K2000\nLETTER SENT DECLINED TO STATE,.,J1100\nOWNER,SAND HILL HOMES,B2000\nEXECUTIVE,FREMONT CONTRACT CARRIERS,T3000\n\"EDUCATOR, ORDAINED MINISTER\",SELF-EMPLOYED,Y4000\nManaging Director,CARREDEN GROUP INCORPORATED,G5300\nORG CONSULTANT,,J7400\nDAMRELL NELSON ET AL,,K1000\nPresident,Sirkin Enterprises,Y4000\nHIGHLANDS PETROLEUM COMPANY,,E1100\nPresident,Green Tree Properties,J5100\nOrthopaedic Surgeon,Putnam Orthopaedic,H1130\nCEO,Dry Storage Corp,J7400\nATTORNEY/CONSULTANT,HERSHEL GOBER & ASSOC.,Z9500\nM J SULLIVAN AUTOMOTIVE,,T2000\nEXECUTIVE,DELTA PACIFIC INC.,Y4000\nCeo,\"M Space Holdings, Llc\",Y4000\nPresident,Team Goewey Dodge,T2300\nWIS JOHNSON GRAIN,,A1500\nCEO,Dupont Hospital,H2100\nOwner,Sterling Mets Association/ NY Mets,F2100\nEng.,Ares Corporation,Y4000\nWATSON & WATSON P C,,Y4000\nSENATE FOREIGN,U.S. SENATE,X3000\nExecutive,Century Tool Co. Inc.,M5100\nEXECUTIVE DIRECTOR,PA AUTO THEFT PREVENTION AUTHORITY,Y4000\nPresident/CEO,Wisconsin Bankers Association,F1100\nTEACHER,NEIMUS HATORAH,Y4000\nConsultant,Booz $ Company,G5270\nCHIEF OF PARTY,CARANA CORPORATION,Y4000\nEXECU,COMMUNITY BANKERS ASSOCIATION,F1000\nROOS FRAZIER & HUSSEY LLP,,Y4000\nLOS ANGELES COUNTY,,J6200\nFilm & Theater Produ,Self employed,G0000\nPolitical Deputy,ECG,J1100\nEXEC.,THE ZITELMAN GP.,Y4000\nOWNER-OPERATOR,MCDONALD FRANCHISE OWNER,G2900\nS R WOJDAK AND ASSOCIATES,,K2000\nAdmin. Assistant,County of Fairfax,X3000\nCHAIRMAN,FORKLIFTS INC.,Y4000\nAttorney,Accredited Home Lenders,F4600\nPRESIDENT,OGILVY GOVERNMENT RELATIONS/PRESIDE,K2000\nATTORNEY,ROISMAN HENEL LLP,Y4000\nINSURANCE,SELF,J9000\nSelf-Employed,Westering Enterprises,Y4000\nVP & COMPANY SUPERINTENDE,ALLEN CO.,F2300\nMETROSTAR PLAZA ASSOCIATES,,Y4000\nV.P. SALES & MARKETING,M2S INC.,Y4000\nMORAN OIL ENTERPRISE,,E1100\nAdministrator,Ssc Boulder Operating Co. Llc,Y4000\nReal Estate,Carol Jones Realtors,F4200\nconsultant,The LeMunyon Group,K2000\nDIAGNOSTIC PATHOLOGY ASSOC,,H1130\nCOLLIERS & PINKARD,,Y4000\nEXECUTIVE VICE PRESID,LIBERTY WOODS,A5000\nMEENAN OIL CO INC,,E1180\nPres./CEO,Outdoor Ad. of America A,G5230\nAutomobile Sales and Service,\"Miller-Nicholson, Inc\",Y4000\nPhysician,Stanford R Medical Group,Y4000\nREAL ESTATE MANAGEMENT,FISCH PROPERTIES,F4000\nSTAFF,LEEDS FAMILY FOUNDATION,F2100\nVP OF SYSTECH,LAFARGE NORTH AMERICA,B5100\nPHYSICIAN,FOUNDATION HEALTH,J7400\nATTORNE,MICHAEL WEINER & ASSOCIATES,K1000\nCANINE COUNSELORS,,Y4000\nPresident And Ceo,Set Family Medical Clinics/Centura Hea,Y4000\nKARAKA BAY FILMS,,C2400\nREALTOR,WISSAHICKON REALTORS,F4200\nPresident,NEVADA HOTEL,G1200\nWESTBROOKE HOSPITALITY CORP,,Y4000\nMG. PA,\"Thomas River Properties, LLC\",F4000\nReal Estate,Self Employed,G5300\nINGRAM TIMBER ENTERPRISES,,A5000\nCFO,INTREPID CAPITAL INVESTMENTS,F4000\nEXEC,NATL. RURAL ELECTRIC COOPERATI,E1610\nINVESTMENT ADVISOR,COBIZ INVESTMENT MANAGEMENT,J7400\nPRESIDENT/CEO,\"CACI INTERNATIONAL, INC.\",D3000\nAttorney,Calvino and Assoc.,K1000\nGOPHER GLOVE DIVISION,,Y4000\nExecutive,Centerplate - Denver Convention Comple,G2900\nCommunity role,S4B,F3400\nRESTAURATEUR,HOTEL & RESTAURANT S,G2900\nHOEG FOXING & DOWNES,,Y4000\nFAR WEST SAVINGS & LOAN ASSOCIATION,,F4300\nCEO - CHAIRMAN,UNITIL,E1620\nCHIEF EXECUTIVE OFFICER,TRANSPES WORLDWIDE,Y4000\nOwner / Beekeeper,Self,A1600\nDIRECTOR,\"FOREST LABORATORIES, INC./DIRECTOR\",H4300\nMEDICAL SALES,HILLROM,H4100\nReal Estate,Marilyn Duke,F4000\nOwner,\"Rove Enterprises, Inc.\",Y4000\nPHYSICIAN,HEMATOLOGY ONCOLOGY SERVICES OF ARKANS,Z9500\nSITTON BUICK PONT GMC TRK,,T2300\nATTORNEY,HYATT CORP,T9100\nDIREC,ENTERPRISE RENT-A-CAR COMPANY,T2500\nReal estate,Pacific Asset Corp,Y4000\nCAAC,,Y4000\nINDEPENDENT OIL & GA,,E1120\nATTORNEY,BUCHANANAN INGERSOLL & ROONEY,J7400\nKING HARDESTY AND MOORE,,Y4000\nProgrammer,Splunk Inc,Y4000\nSTUDENT TEACHER,JAMES LOGAN HIGH SCHOOL,Y4000\nChiropractor,Highpoint Patient Services,Y4000\nSCIENTIFIC RESEARCH CORP,,C5130\nChairman & CEO,Clinical Laboratories of Hawai,Y4000\nINSURANCE AGE,ALL SERVICE INSURANCE,F3100\nHomemaker,n/a,E1110\nATTORNEY,\"EHRENKRANTZ & EHRENKRANZ, L.L.P.\",K1000\nEXECUTIVE,\"FIRST PRINCIPLES, INC.\",Y4000\nAuto dealer,Phoenix Motor Company,Y4000\nSound engineer,Self,G0000\nTHE TOVAH CORP,,C2000\nPRESIDENT AND CEO,GIFT OF LIFE DONOR PROGRAM,Y4000\nSVP STRATEGY & ADMINISTRATION,EXELON CORP,E1600\nPSYCHOLOGIST,FRIEL ASSOCIATES,Y4000\nDEALER,HAMPDEN DODGE,T2300\nCeo,Celite Systoms Inc,C4000\nConsultant,Childrens Defense,J7700\nREAL ESTATE DEVELOPER,HAYMAKER DEVELOPMENT COMPANY,F4000\nDC REPUBLICAN COMMITTEE,,J1100\nPresident & COO,Fleishman-Hillard Inc.,G5210\nHEALTH CARE WORKER,VETERANS AFFAIRS,X3000\nPRIVATE INVESTMENT BROK,,Y4000\nARCHITECT,HUEDAK BOBO GROUP,Y4000\nEXECUTIVE,T.D. SERVICE FINANCIAL,F5000\nPresident,Chenille Media Corp,Y4000\nCORCORAN & JENNISON CO,,F4000\nAttorney,Bear Stearns & Co,F2300\nINVESTMENTS,ASCENDANT ADVISORS,F2000\nPresident,CBT Insurance Agency Inc.,F3100\nPresident,Luhn-mccain Insurance,F3100\nCERT,HUSELTON MASUM & MANLTSBY P.E.,F5100\nSELF-EMPLOYED/HOMEMAKER/HOMEMAKER,,G6400\nCivil Servant,City of New York,X3000\nARNOLD PET OIL & GAS,,E1100\nDirector of Operations,The Jaroth Companies,Y4000\nReal Estate Broker,\"The Groveland Group, Inc.\",F4000\nASSOC UNIV FOR RSRCH IN ASTRON,,H5100\nMOBILE CO,,Y4000\nDECISION STRATEGIES INTL,,G5270\nATTORNEY,CRAIN LAW FIRM,K1000\nnurse,RKMC,J1200\nPrincipal,\"Edington, Peel & Associates\",K2000\nCHIEF MARKETING OFFICER,\"KONOS, INC.\",Y4000\nConsultant,Self employed,F2500\nOrthopaedic Surgeon,Tulsa Bone & Joint Associates,H1130\nATTORNEY,BARNES & THURNBURG LLP,K1000\nCEO,BRIDGETREE INC,Y4000\nAsst Director - Career Counseling,Seiu Uhw-West and Joint Employer Educa,LH100\nPHARMACEUTICAL,ABBOTT LABORATORIES,H4300\nENGINEER,CHESTERFIELD COUNTY,Y4000\nBERRY INVESTMENT INC,,M3600\nCOMMUNITY SERVICE MGR,CHESTER CO DEPT OF COMM DEV,X3000\n,BRAVANTE AUTOMATIC SPRINKLER CORP.,B0500\nPACIFIC MARINE LEASING,,Y4000\nDesigner,Metropolitan Museum of Art,J1200\nteacher,Unity Woods Yoga Center,G5800\nCHAIRMAN,\"STRUCTURE TONE, INC.\",B1500\nFormer President/CEO,New Mexico Hospitals & Health Systems,H2100\nPresident,Kovler Foundation,Y4000\nAttorney - Managing Partner - Pittsbur,Schnader Harrison,K1000\nBOISE ORTHOPEDIC CLINIC,,H1130\nUNBANKS,,Y4000\nARKANSAS FREIGHTWAYS,,T3100\nRVP AMERICAS,ASTRAZENECA PHARMACEUTICALS LP,H4300\nDIRECTOR NON-PROFIT ORGANIZATION,,J7700\nMASONIC FOUNDATION,,Y4000\nEXECUTIVE,DIGITAL VISION,C5120\nPresident,Marine Hydralics,T6000\n\"PRESIDENT, COMM. REAL ESTATE\",RAINES COMPANY,Y4000\nDHA INC,,K2000\nOWNE,DWIRE EARTHMOVING & EXCAVATING,B3600\nCONSULTANT,PROFESSIONAL NETWORK GROUP INC,Y4000\nJournalist,The Deal Llc,Y4000\nCPA,MOORE COLSON & COMPANY,Y4000\nBLUE CROS BLUE SHIELD,,F3200\nSCHILLING ENTERPRISES LTD,,Y4000\nVice President,US Oncology,H1130\n\"Deputy Regional Director, Central and\",National Democratic Institute for Inte,J1200\nPresident,\"Rising Graphics, Inc.\",Y4000\nPresident & CEO,\"Community Builders, Inc\",F4000\nTeacher,ASHLEY HALL SCHOOL,H5100\nExecutive VP & Proje,Propst Constr Co Inc,B1000\nBUSINESS COMMUNITY LIAISON,MUHLENBERG CAREER DEVELOPMENT CENTER,Y4000\nGENERAL MANAGER,CASHBACK,F1400\nINSURANCE A,NEVADA INSURANCE AGENCY,F3000\nROBERT T BROWN CONSTRUCTION INC,,B1000\nMedical Writer,American Health Cons,Y4000\nPHYSICIAN,INTERVENTIONAL PAIN CONSULTANTS,Y4000\nBUSINESS OWNER,MED LIFE SERVICES,Y4000\nCoordinator,Genesis Health System,Y4000\nBUSINESS EXECUTIV,TOIBB ENTERPRISES,Y4000\nVP FEDERAL GOVT RELATIONS,RAI SERVICES COMPANY,A1300\nINVESTMENT BANKER,PERELLA WEINBEAL PARTNERS,Y4000\nPRESIDENT,S.R. WEINER & ASSOCIATES,F4500\nORANGE COUNTY MUNICIPAL COURT,,J1100\nFRED BRIGGS DISTG,,G2850\nINVESTOR,STADIUM CAPITAL MANAGEMENT LLC,F2700\nROBINSON-HUMPHREY,,X1200\nARCHITECT,WXY ARCHITECTURE+URBAN DESIGN,B4200\n\"DR. IKE'S/OWNER/RETAIL\",,Y4000\nPHARMACIST,PHARM PHARMACY,G4900\nAttorney,Johnson and Lambeth,K1000\nPATHOLOGIST,COMMONWEALTH LAB CONSULTANTS,H1130\nDANDURAND DRUGS,,G4900\nLEVENTHAL & VOGUE,,K1000\nNurse,Meridian Home Care,J1200\nEXECUTIVE,WEAVER INVESTMENT COMPANY,F7000\nUBS,ADVISOR,Z9500\nTELEPHONE SYSTEMS,,C4100\nENGINEER,\"SOLA, TAPIA & ASSOCIADOS\",Y4000\nAccountant,Sara Lee Corporation,G2100\nSUN MACHINERY COMPANY,,Y4000\nGOVT. RELA,STEVEN WINN & ASSOCIATES,Y4000\nPRESIDENT,JARBEAU & ASSOCIATES,Y4000\nTRANSPORTATION,INDEPENDENT CONTRACTOR,B3000\nAttorney,\"O'Connor & Hannan\",K2100\nECONOMICS STUDIES INC,,Y4000\nCEO,METROPOLITAN THEATERS,J5100\nVice President,Albert Bros. of Altus Inc.,G2850\nOwner,Kilian Construction,B1500\nOWNER,NH INTL. SPEEDWAY,G6400\nREALTOR,COLDWELL BANKER RESIDENTIAL REAL ESTAT,F4000\nAttorney,Gregory Christy & Manikal,K1000\nNON,TELLURIDE COUNCIL FOR THE ARTS,Y4000\nLANDY & LANDY ATTORNEY-AT-LAW,,K1000\nOwner,Austin & Bednash Construction,B1500\nPresident,Smith Publishing,C1100\n1ST SECURITY BANK IN ABQ,,F1100\nSPORTS REPORTER,CBS,C2300\nADULT CARDIOLOGY,Pima Heart,H1100\nAttorney,Alabama Elder Justice Project,Y4000\nBUSINESS EXEC,SOROS FUND MANAGEMENT,J7700\nLAW ENFORCEMENT,U.S. GOVERNMENT,X3000\nJ A L TRADING CO,,J1100\nSTOCKBROKER,PACIFIC GROWTH EQUITIES,F2100\nEXECUTIVE,CORNERSTONE PROPANE,E1190\nPigeon Township Trus,Vanderburgh County,X3000\nCOMMERCIAL REAL,,J7300\nBusiness Representat,Iowa Nebraska Western Illinois,LB100\nMORROW OIL & GAS CO,,E1120\nART & AUCTION MAGAZINE,,J7150\nExecutive,Visa,G5200\nChairman,Rentacenter,Y4000\nManager,Atlanta Apartment Association,F4500\nPresident,Trans County Title Company,J1100\nPHYSICIAN,WENATCHEE VALLEY MEDICAL CENTER/PHY,H1100\nCONSTRUCTION MANAGER,\"JACOBS CIVIL, INC.\",Y4000\nDEFENSE CONSULTANT,NORWOOD & ASSOCIATES INC.,Y4000\nSENIOR VICE PRESIDENT,IBC BANK,F1100\n\"GOV'T AFFAI\",COPELAND LOWERY JACQUEZ,K2000\nSELF-EMPLOYED/GRADING CONTRACTOR /,,B0000\nSOFTWARE ENGINEER,ASLAN ENGINEERING,B4400\nLAWYER,BPPR,Y4000\nINSURANCE AGENT,LIBERTY MUTUAL GROUP,F3400\nOwner,\"Apex Technology Sales, Inc\",Y4000\nVice President,Smith-Free Group,K2000\nTEACHER,CLARK COUNTY SCHOOL SYSTEM,Y4000\nManaging Director,Clark &Weinstock,K2000\nRED BALL INTL,,Y4000\nVICE PRESIDENT,PROVIDENCE HEALTH & SERVICES/VICE P,H2100\nLegal Assistant,Self Employed,K0000\nInstructor,Allen Community College,H5100\nRETAIL MANAGEMENT,THE FURRY NATION,Y4000\nCo-Owner,Total Hvac,Y4000\nPRESIDENT,RANDOLPH & BALDWIN INC.,Y4000\nFashion Designer,LP Style LLC,Y4000\nATTORNEY,THE MITCHELL LAW FIRM PC,Z9500\nCONTRACTOR,BATTER LEHIGH PLUMBI,Y4000\nPHARMACIST,SEMINARY DRIVE PHARMACY,G4900\nExecutive,National Envelope Corp.,H5000\nVICE PRESIDENT,MANTECH CORPORATION,D9000\nMANAGEMENT,DBT AMERICA INC.,E1200\nOWNER,ABBOTT AND ASSOC. INC.,B3400\nMAILER,POST DISPATCH,LC100\nPresident,Albatech Inc.,Y4000\nGOLF MART INC,,Y4000\nUHLMANN CONSTRUCTION,,J1100\nEXECUTIVE,\"IMPACT STRATEGIES, INC.\",G5200\nCIO,VISTA HEALTHPLAN,H3700\nHydrologist,ETI Corperation,Y4000\nManager,Landmark Homes,B2000\nPresident,Db Thompson Incorporated,Y4000\nMachine Sales,Beck Equipment Inc,Y4000\nBROWNSTEIN HYATT FARBER & M,,J5100\nSALES AND DESIGN,SELF,Y4000\nCRNA,GEISINGER HEALTH SYSTEM,H3000\nChief of Staff,Congressman Pete Visclosky,X3000\nBLANK ROME COMISKEY ET AL,,J7400\nPresident - Apparel,INVISTA S ? R L,E1160\nhomemaker/writer,Self employed,Z9500\nMARKETING DIRECTOR,DELAWARE NORTH,G2910\nOral & Maxillofacial Surgeon,Valley Oral &  Maxillofacial,Y4000\nANALYST,T. ROWE PRICE/ANALYST,F2600\n\"Group Dir, Strategic Planning\",Science Applications Intl Corp,D3000\nPresident,CAREAGE CORPORATION,Y4000\nJOE MACPHERSON ENTERPRISE,,T2310\nPHYSI,UNIV. OF CALIF. SAN FRANCISCO,H5100\nFRANKLIN TOWNSHIP,,X3000\nWEB DEVELOPER,VELIR STUDIOS,Y4000\nBROKER/SALESPERSON,SKOGMAN REALTY,F4200\nCOMMODIT TRADER,,F2100\nRetired,Solar3D,Y4000\nWING HING TRADING CORP,,Y4000\nLOBBYIST,CASSIDY& ASSOICATES,Z9500\nBARE PRODUCTS COMPANY,,Y4000\nATTORNEY,THE BUSCH CASPINO FIRM,K1200\nPARTNER,SOUTHERN STRATEGIES GROUP,Y4000\nTeacher,PG County Schools,X3500\nDirector of Policy,American Public Transportation Associa,T0000\nManaging Director,Financial Dynamics,G5210\nCHIEF TECHNOLOGY OFF,SMART TECHNOLOGY,Y4000\nManaging Director,Toledano Properties,F4000\nINVESTMENT ADVISOR,\"DUNCKER, STREETT & COMPANY\",F2100\nAttorney,Bamker Botts,K1000\nIN,PHILLIPS DEVELOPMENT CORPORATION,Y4000\nLOBBIEST,FRANKLIN SQUARE GROUP,K2000\nGENERAL MANAGER,,C4100\nUser Operations Associate,Facebook,C5140\nManager,Foundation for National,Y4000\nDIRECTOR AND CE,\"CHERTOFT GROUP, LLC\",Y4000\nSenior Lecturer,Harvard Business School,Y4000\nCEO,The Abell Foundation,X4100\nCHAIRMAN CE,TRANSPO INDUSTRIES INC.,B1000\nPresident,\"Wenger Manufacturing, Inc\",Y4000\nDirector,Progressive Medical Center,H2000\nMerchant,Self Employed,G4000\nKITCHEN REMODELER,DUN RITE HOME IMPROVEMENTS INC,Y4000\nDARRYL D BERGER INVESTMENTS,,J5100\nBOARD MEM,EL CAJON WASTE MANAGEMENT,E3000\nSPECIAL EXP MARIN,,T6200\nCONSULTANT,\"EMG, INC.\",Y4000\nTHE VALUE GROUP,,F4200\nATTORNEY,ALLEN ASCH,Y4000\nResearcher,Working Families Win,Y4000\nHealth Science Policy Analyst,NIH,Y4000\nF N WOLF INC,,Y4000\nExecutive,Arrow International Inc.,Y4000\nbusiness manager,Gas Equipment Engineering Corp,B4400\nMATH TEACHER,\"CITY OF NEWTON, MA\",Z9500\nNAPA AUTO PARTS,HANSBERRY,T2200\nACCOUNTANT,DELL/ACCOUNTANT,C5100\nGUNDERSON LUTHERAN MEDICA,,H1100\nReal Estate Broker,Lake Nona Harmony Homes LLC,F4200\nLawyer,Simson Thacher & Bartlett,K1000\nPsychiatrist,Community Health &amp; Counseling Serv,Y4000\nCONSUMER AFFAIRS ANALYST,PUC,Y4000\nCounsellor At Law,\"Paster & Harpootian, Limited\",K1000\n\"Acct Exec, Sls\",Pratt,D2000\nFIRST TEAM MANAGEMENT INC,,Y4000\nattorney,Wildman Harrold LLP,K1000\nSales Manager,Pacific Stair,Y4000\nPresident and Owner,A Folino Construction,B1500\nengineer,Concurrent Technologies Corp,C5130\nOWNER,CAPRI JEWELERS,Y4000\nBUSINESS EXEC,\"ON HAND SOFTWARE, INC\",Z9500\nHOTEL OWNER,INFINITY HOTEL GROUP,T9100\nEDITOR/WRITER,E.E.I. COMMUNICATIONS,C1100\nMARION COUNTY,,X3000\nTeacher,Catholic High School,Y4000\nLUMBERMAN,A. C. HOUSTON LUMBER CO.,B5200\nOWNER,INMAN MGMNT. TRUCKING INC.,T3100\nCENTURY REAL ESTATE,,F4200\nPresident & Chief Executive Officer,Borgess Medical Center,H2100\nOWENS MOVERS,,T3100\nSELF EMPLOYED/CORRECTIONS/GOVERNMEN,,G5200\nElectrician,Self - Employed,B3200\nATTORNEY,ROSEN & SABA LLP,K1000\nGas Measurement Technician,BP P{ipelines,Y4000\nPHYSICIAN,PHYSICIAN HEALTHCARE NETWORK,H1100\nDEWEY & LEBOEUF/PARTNER/CHAIRMAN,,K1000\nMEDICAL LAB MANAGER,PATHOLOGY ASSOCIATES,H1130\nManager,\"Medley's Self Storage\",Y4000\nEXECUTIVE DIRECTOR,COLLEGE PLANNING,H5100\nCONSULTANT,COLUMBIA ULTIMATE,Y4000\nPUBLISHER,WELLESLEY INFORMATION SERVICES,Y4000\nCAR DEALER,PETERS AUTO OF NASHUA,Y4000\nATM Operator,ATM Concepts,Y4000\nPRIVATE EQUITY INVESTOR,NAUTIC PARTNERS,J1200\nSELF/SPEAKER/TRAINER,,X0000\nPresident,Groundscape Technologies LLC,Y4000\nBanker,MBNA,F1100\nSR. VICE PRESIDENT,BMI/SR. VICE PRESIDENT,C2600\nOWNER,DONANHUE FAVRET,Y4000\nEXECUTIVE DIRECTOR,SOUTHERN UNIVERSITY AT SHREVEPORT FOUN,Y4000\nWHEELOCK STREET CAPITAL/PRIVATE R/E,,F0000\nLandscape Architect,\"The WLB Group, Inc.\",Y4000\nPHYSICIAN,ABINGTON HEMOTOLOGY ONCOLOGY,H1130\nH2M2 JOINT VENTURE,,Y4000\nSystems Engineer,\"Vmware, Inc\",C5120\n3 ADVERTISING/DESIGN DIRECTOR/PARTN,,E1500\nENGINEER,GMB ENGINEERS & PLANNERS INC,Y4000\nCONTROLLER,BMW OF CORPUS CHRISTI,T2310\nDIRECTOR,COMSCORE,Y4000\nWOMBLE CARLYLE SANDRIDGE PLLC,,K1000\nPRESIDENT AND,CHIEF OIL AND GAS LLC,E1100\nCOUNSEL,YALE PROPERTIES USA,F4200\nExecutive,Preferred Properties,Y4000\nOwner,Molly Maid,Y4000\nADMIN.,UA LOCAL 7 WELFARE P.,Y4000\nSenior Scientist,Family Health International,J7400\nAttorney,\"Greenberg, Traurig\",K1000\nPresident,\"Doranco, Inc.\",M5000\nNATL SECURITY AGENCY,,Y4000\nCONSULTANT,MEHLMAN VOGEL CASTAGNETTI INC./CONS,K2000\nSTUDENT,,H5200\nManager,E-Town Orthopaedic Associates,H1130\nMID AMERICAN DEV CO,,F4100\nATTORNEY,PANDELL LAW FIRM INC.,K1000\nCHIPMAN ADAMS,,Y4000\nOWENSBORO BODY SHOP,,T2400\nAttorney,Corrections Corporation Of Ame,G7000\nReal Estate,Lamb Partners,F4100\nDistrict Manager,Chesapeake Energy,E1120\nOwner,Gastineau Insurance Svc.,F3100\nPlumber,Moral Plumbing Inc.,B3400\nAGRI-BUSINESS EXECUTIVE,ALICO INC.,A1200\nELECTRIC SERVICE & SUPPLY,,B3200\nMILLER BREWING DIST,,G2850\nPRESIDENT,AAB PROPERTIES,F4000\nAttorney,\"Holden Industries, Inc\",Y4000\nSales- tenant screening,First Advantage Safe Rent,F4500\nTeacher,Corning Christian Academy,Y4000\nSHERMAN E SMITH,,Y4000\nAdministrator,Bandstandlive,J1200\nATTORNEY,\"HURT, CROSBIE, & MAY LLC\",K1000\nConstruction,\"Peter Scalamandre and Sons, Inc\",Y4000\nAMERICAN STOCK TRANSFER & TRUST CO,,Y4000\nNETWORK SUPPORT SPECIALIST,TRUCKEE MEADOWS COMMUNITY COLLEGE,Y4000\nManager,\"Palen, Hammes, Hoerter , Brown\",Y4000\nFORD DEALER,SELF-EMPLOYED/FORD DEALER,T2300\nPresident,Cm Automotive Systems Inc.,T2000\nPresident/ceo,Ne Independent Community Banke,Y4000\nATTORNEY,\"ANDERSON, LEHMAN\",K1000\nExecutive Vice Presi,First Northern Bank,F1100\nLawyer,Public Service Commi,X3000\nPresident,Columbus Jewish Federation,Y4000\nSW FLORIDA REGIONAL DEV,,G1200\nCONSULTANT,AKERMAN SENTERFITT LAW FIRM.,K1000\nPartner & Chief Admin Officer,Blank Rome LLP,K1000\nPsychologist/Social,Hanna Perkins Child Development Center,Y4000\nCEO,MIRANT CORPORATION,E1600\n\"RISCASSI & DAVIS, P.C.\",,K1000\nBuilder,Eastbrook Companies,Y4000\nDIRECTOR PROCUREMENT,SEABOARD OVERSEAS GROUP,G2300\nFinance Mortgage,Self-Employed,G0000\nConsultant,Val-Add Service Corp,Y4000\nSAXON PUBLISHERS INC,,C1100\nSECURITY PACIFIC STATE BANK,,F1100\nLobbyist,Susan Carr and Associates,K2000\nSQUIRES ENTERPRISES INC,,Y4000\nPRESIDENT,SEDONA,G5250\nSenior Fellow,CAP,Y4000\nC.E.O.,TUBE CITY INC.,Y4000\nTeacher,Perris Elem. School District,X3500\nVice President,Chapman Construction Company,B1500\nATTORNEY,NOTTAGE AND WARD,Y4000\nREAL EST. DEVELOPER,SELF-EMPLOYED,F4100\nEXEC VICE PRESIDENT,,M7200\nPOTENT ATTORNEY,SELF,K1000\nRUTLEDGE ECENIA PURNELL/ATTORNEY/AT,,K1000\nEXECUTIVE DIRECTOR,FELLOWSHIP FARM,Y4000\nATTORNEY,BETRA GLEN,Y4000\nPresident,Pelco Products,M2100\nINSURANCE BROKER,DEAN & DRAPER INSURANCE AGENCY LP,F3100\nBACKHOE SERVICE,SELF-EMPLOYED,G0000\nN/A/HOMEMAKER,,T1500\nHEALTHCARE - DOC,CAROLINA PATHOLOGY,H1130\nBROYDRICK AND BROYDRICK,,K2000\nOwner,Industrial Finishes,Y4000\nPhysician,Greenfield Caputo MD PA,H1100\n\"EVP, General Counsel\",NBC Universal,C2300\nREAL ESTATE BROKER,BERKSHIRE HATHAWAY FLORIDA,F4200\nREALTOR,CA ASSOCIATION OF REALTORS,F4200\nTECHNOLOGY,FACEBOOK,Z9500\nDOD Civilian US Army,Redtired,Y4000\nW,HAROLDSON GROUP INTERNATIONAL LLC,Y4000\nCHIEF OF STAFF,U.S. HOUSE OF REP.,X3000\nCHAIRMAN,THE PAULS CORPORATION,F4200\nOWNER,STUCKEY MANAGEMENT,Y4000\nPresident,H S I Corporation,Y4000\nWARE FOREST PRODUCTS,,A5000\nAttorney,Colorado College,H5100\nORTHOPAEDIC SURGEON,UT PHYSICIANS,H1130\nCPA,\"RUBIN BROWN, LLP\",Y4000\nM D RADIOLOGIST,,\nFIRST ANALYSIS CORP,,F2100\nATTORNEY,MCGUIRE WOODS LAW FIRM,K1000\nSHIAWASSE ANESTHESIA SERVICES,,H1130\nATTORN,BIERMAN SHOHAT LOEWY & KLEIN,J5100\nManager,Meeker Investments,F7000\nExecutive,Safe Auto Insurance Co.,J5100\nPresident,Continental Western Insurance Company,F3400\nALLEN & HOSHALL LTD ARCHITECTS ENGI,,B4000\nCLARK INDUSTRIES INC,,A1400\nARCANUM,,Y4000\nAttorney,Matsumoto LaFountaine & Chow,K1000\nOperator,Con Edison Of Ny,E1620\nHOLLAND AND KNIGHT LLP,,K2000\nHAWKINS AIR CONDITIONING AND REFRIG,,B3400\nPhysician,Nwctem,Y4000\nATTORNEY,DUVAL & STACHENFELD,K1000\nHOMERMAKER,HOMEMAKER,Y1000\nMORTGAGE BANKER,COLE TAYLOR BANK,F4600\nRADIATION ONEOLOGIST S W,,H1130\nCHAIRMAN & CEO,NULLI SECUNDUS ASSOCIATES,Y4000\nTEACHER,UTSA,Y4000\nEXECUTIVE,AMERIKOHL,Y4000\nANALYST,DCLB/ANALYST,Y4000\nManager,Chicago Title Company,F4300\nINV,SIERRA INVESTMENT PARTNERS INC.,Y4000\nArchitect,Shope Reno & Wharton,Y4000\nBECHTEL ENV INC,,E2000\nLOBBYIST,SELF & CHICKASAW NATION,K2000\nBASEBALL OFFICE OF COMM,,G6400\nPASEDENA HOMES,,B2000\nPhysical Therapist,Jefferson General Hosp,J1200\nB&B AMUSEMENTS,,J1100\nTeacher,\"Sent Large Donation but Haven't Heard\",F2500\nPUBLIC RELATIONS EXECUTIVE,\"PFAELZERDEAN & PARTNERS, INC\",Y4000\nSales Representative,\"Shipman's Fire EQ. Company Inc.\",Y4000\nKENTUCKY ASSOCIATION OF HIGHWAY CON,,Y4000\nResident Cnslor,House Of Mercy,J1200\nIndependant Sales Represenatives,Self employed,G0000\nEXECUTIVE,VANTAGE ENERGY,E1000\nPRESIDENT - REAL ESTATE,HERITAGE REALTY,F4200\nCEO,EXPORT TRANSPORTS,Y4000\nSurgeon,Eye Physicians & Surgeons of DC,Y4000\nMAE NACOL & ASSOCIATES PC,,J7400\nOWNER,PANHANDLE GRADING & PAVING,B3000\nEXECUTIVE DIRECTOR,AT&T ALABAMA,C4100\nC.E.O./Software Desi,\"Starpath, Inc.\",Y4000\nSenior V.P. and General Counsel,\"RAG American Coal Holding, Inc.\",E1200\nESTT INC,,Y4000\nUnemployed,not Applicable,J1200\nConsultant,Venture Management Services,F2500\nJDS PHARMACEUTICALS,,Y4000\nManaging Partner,SUSQUEHANA INVESTMENT GROUP,F2100\n\"GRAEBER, SIMMONS, COWAN\",,F4200\nCounselor,Gsu,Y4000\nREGISTERED DI,\"MSE & ASSOCIATES, LLC\",Y4000\nDOCTOR,CONCORD EYE CARE  P.C.,JE300\nDIRECTOR,Golden Years,Y4000\nPUBLIC STRATEGIST,CONLAN & DUNN,J1200\nCEO,Boars Head,J1200\nPlant Manager,Titan America,B5100\nAttorney,United States Senate - Energy & Natura,X3000\nEMERITUS PROFESSOR,UW MADISON,J1200\nEngineer,Staffing Inovations,G5250\nPresident,Flythe Construction,B1500\nFLANNAGAN SAUERKRAUT,,G2100\nFINANCE PROFESSIONAL,CNH,Y4000\nReal Estate,Prudential Georgia Realty,J9000\nBUTKOVICH SCHIPF &,,Y4000\nCEO,BUFFINGTON CAPITOL HOLDINGS,F4100\nCEO,Rancho Santa Fe Pharmacy,G4900\nOwner,Braselton Homes,B2000\nJAMESON & GUTIERREZ,,G5200\nCEO,Royal Die and Stamping,G0000\nPresident & CEO,UrbanAmerica Principals III,F4000\nC.P.A,R.A.O. CPA A. PAC,F5100\nAttorney,Port Authority of NY & NJ,T6000\nPIA NORTH DAKOTA,,A4000\nSELF PROPERTY MNGR,SELF-EMPLOYED,G0000\nI,HUB INTERNATIONAL NEW ENGLAND LLC,F3100\nCONSULTANT,SELF,G2900\nSOFTWARE ENGINEER,HARVARD UNIVERSITY,H5100\n\"SOUTHWEST WOMEN'S HEALTH ASSOCIATIO\",,Y4000\nSELF-EMPLOYED,ROSENBLUM EYE CENTERS,H1120\n\"BAKER, DONELSON, BEARMAN & CALDWELL\",,K2000\n\"JONES, JONES, CLOSE AND B\",,K1000\nOWNER,ARCTIC STORM MANAGEMENT GROUP,E4100\nLAWSON & WEITZEN,,K1000\nPresident,\"North Central Insulation, Inc.\",G1200\nOrthopedic Surgeon,Black Hills Surgery Center,H1130\nBAYARD HANDELMAN MUR,,Y4000\nFOUNDER,COMCAST CORPORATION,C2200\nCONTRACTOR,JM FAHEY CONSTRUCTION,B1000\nTIMBER AGRICULTURE,SELF EMPLOYED,A5000\nPresident,Ferris Cromwell Insurance Ageny,F3100\nANZALOTA AUTO SALES,,T2300\nVP,DM & E Railroad,T5100\nCTO,EOLAS TECHNOLOGIES INC.,Z9500\nDIRECTOR OF MARKETIN,HARRIS INVESTMENT MANAGEMENT,Y4000\nMuseum Director,NC Museum Of National,X4200\nRipley Fine Art,Addison,G4600\n\"STEEL STRUCTURES, INC/ESTIMATOR/ PR\",,Y4000\nInformation Requested,,F2500\nSALES,LONE OAK MEDICAL TECHNOLOGIES LLC,Y4000\nSALES,BELDON BRICK & SUPPLY,Y4000\nCOLONIAL WORLD INDUSTRIES,,Y4000\nANESTHESIOLOGIST,BURLINGTON ANESTH,H1130\nREAL ESTATE,FOREST CITY ENTERPRISES,Z9500\nPRESIDENT,CAPITOL ADVOCATES,K2000\nMERCY PROFESSIONAL PRACTICE ASSOC,,H1100\nAdvertising Executive,Capitol Outdoor,G5230\nDOCTOR,DOCTOR OF INTERNAL MEDICINE,H1130\nMONEY MANAGER,N.A.,F2100\nHYM,,Y4000\nMILLER CANFIELD ET AL,,K1000\nEDUCATIONAL RE,CAMPBELL-KIBLER ASSC,Y4000\npresident,Cincinnati Mortgage,F4600\nMANAGER,FIXTURE HARDWARE CO,Y4000\nCHAIRMAN,PARKER VISION,Y4000\nPHYSICIAN,RAVALLI ORTHOPEDICS & SPORTS M,H1130\nREGULATORY COUNSEL,CME,F2400\nPRESIDENT & CEO,CLARE ROSE INC,G2850\nreal estate,Pinnacle Housing Group,Y4000\nOwner,Business Plus Corp,Y4000\nNASHVILLE ELECTRIC,,A3500\nDeveloper,\"McCormack Baron & Associates, Inc.\",F4500\nATTORNEY,BABBITT & MELTON,K1000\nprogrammer,Thinkware. Inc.,JD200\nSWIMMING POOL CONTRACTOR,SELF,B3000\nCHIEF STRATEGY OFFICER,CASSIDY & ASSOCIATES,K2000\nSpecial Agent,DHS/ICE,K1000\nPhysician,Nationwide Childrens Hospita,H2100\nSIERRA DVLPT GRP,,G6500\nExecutive,Ml Financial Inc,F0000\nExec Dir,Housing Authority of Northumberland Co,Y4000\nGARST WEST VETERINARY CLINIC,,A4500\nOWNER,HARBOURSIDE AT INDIAN LAKE,Y4000\nOwner,Cloumbia River Housing,Y4000\nAttorney,Arlington County,K1000\nCOMMUNITY VOLUNTEER,,J7300\nAttorney,Garrison Scott GambleRosenthal,K1000\nProfessor Of Chemist,University Of Tennessee,H5100\nPRESIDENT,BARRS INSURANCE,F3100\nJEFFCOAT PIKE & NAPPER LLC,,Y4000\nPresident,CLMS,Y4000\nPresident,\"IRM, Ltd.\",Y4000\nPublic Administrator,Oregon Dept Human,Y4000\nExec VP,Calyon Financial Inc,F2200\nTEKPAK INC.,,Y4000\nCLERK,USPS,X3700\nINDUSTRIAL SOLVENTS CORP,,M0000\nCHAIRMAN,SERVICON SYSTEMS/CHAIRMAN,G5000\nFIRST AMER. TITLE INS. CO./NY/PRESI,,F4300\nDENTIST,BRIEN V. HARVEY PERIODONTICS,H1400\nTECHNOLOGY,SELF,K1000\nChairman/CEO,\"L Warner Companies, Inc\",Y4000\nJON T FRYE CHAUTEVED,,Y4000\nDIRECTOR OF COMMUNICATION,ASCAP,C2600\nCHAIRMAN,\"GIRLING HEALTH CARE, INC.\",H0000\nACEP,,Y4000\nENGINEER,CITY OF NY,H5100\nRetired,\"Eno, Boulay, Martin, Donahue, LLP\",K1000\nPEO,,G5270\nGOVERNMENT AFFAIRS,\"COMING, INC.\",C4000\nHAECHTEN INS AGENCY,,A4000\nCEO,ROGERS GARDENS,Y4000\nBuilder Member Multifamily Building/Ow,Jrg Associates,B2000\nSr. Vice President,Davidson Companies,F2100\nHOME LUMBER CO./OWNER/OPERATOR LUMB,,B5200\nFOODTOWN,,\nLaw Enforcement Training,Self,X3200\nSTAFF,UNIV OF CALIF BERKELEY,H5100\nSEAMSTRESS,SELF/HOMEMAKER,M3100\nTWO RIVERS RETIREMENT HOMES,,Y4000\nEngineer,Fluor Federal Services,B4400\nGLENWOOD HIGH,,Y4000\nRegistered Nurse,University of Miami,H1710\n\"President, PHS\",Praxair Healthcare Services,M1000\nREGISTERED NURSE,GROUP HEALTH COOPERATIVE,Z9500\nCEO/OWNER,URGENT PLUS CARE,Y4000\nEnvironmentalist,NRDC,JE300\nVice President,KSA,H2000\nGREEN & SIEFTER,,K1000\nPRESIDENT/CHIEF EXECUTIVE OFFICER,\"CONNECTICUT RIVER BANK, NATIONAL ASSOC\",F1100\nPhysician,Pulmonary Associates,H1100\nLIBERTY CHECK,,C1300\nOWNER,GREENWOOD FARM,A1000\nPresident,Handi House Inc.,Y4000\nConsultant/Lobbyist,\"Corporate Education Consulting, Inc.\",Y4000\nMediator,Information Requested,G5200\nPresident,Cleveland Indians,G6400\nFINANCIAL PLANNER,SMITH VARNEY,Y4000\nEducator,Columbus City Schools,X3500\nBUSTAMANTE NUNEX CO,,Y4000\nDIRECTO,ALLIANCE FOR SUSTAINABLE CO,Y4000\nPRESIDENT/CEO,INTERMOUNTAIN DISTRIBUTING CO,Y4000\nVILLA GROUP,,Y4000\nDIRECTOR OF CORPORATE SALES,AUSTIN POWDER CO.,B5100\nBloom Hergott Diemer Rosenthal LaVi,,K1000\nVice President,Coastal Construction Group,B1500\nINFO REQUESTED,Beth Israel Hospital,H2100\nATTORNEY AT LAW,,LT000\nAttorney,Petway & Tucker,K1000\nBusiness Owner/Tesdell Elect Ltd,Self,Y4000\nATTORNEY,WATSON PHARMACEUTICAL,H4300\nConsultant,Strategic Health Alliance,Y4000\nWHITE ASS,,Y4000\n\"Managing Dir., Globa\",Edelman Public Relations,G5210\nCEO,MCDONALDS CORP.,G2900\na,Roosevelt University,H5100\nVice President,Kwaitkowski Masonry,Y4000\nOwner,Satterwhite Properties,F4000\nITS PREMIER TRAVEL,,T9400\nEXEC,NDRI,Y4000\nOWNER,PINSON EXCAVATING,B3600\nPRESIDENT,CENTERLINE ELECTRIC INC.,Y4000\nStudent,Info Requested,J1100\nZIPPO,,M5000\nAUSTIN MANAGEMENT,,Y4000\nESSI,,D3000\n\"Director, Government\",Ohio Hospital Association,H2100\nTEACHER,GARY COMMUNITY SCHOOLS,Y4000\nPETER BUTTENWIESER & ASSOCIATES,,Y4000\nISD Specialist,Fdic,X3000\nOSU/SELF EMPLOYED/OWNERS OF PEAK IN,,H5100\nMANAGEMENT,HESPERIA CAPITAL,Y4000\nHousing Specialist,Usda-Rural Develpmet,X3000\nBUSINESS OWNER LODGING,SELF-EMPLOYED,G0000\nVICE PRESIDENT MARKE,BOARDROOM INC.,G5220\nSoftware Developer,n/a,C5120\nHOMESMART REALTY,REALTOR,F4200\nOPERATING CONSULTANT,OPERATING ADVISORS,Y4000\nManager,\"Harnsberger Consulting Group, Inc\",Y4000\nFORD MOTOR COMPANY,,E4200\nIns Advisor,Self,G0000\nDOCTOR,MEDICAL ASSOCIATES CLINIC,H1130\nELECTRICIAN,INDUSTRIAL ELECTRICAL MOTOR,Y4000\nTHE COOK GROUP,,K2000\nDIRECTOR,QUANTUM ENERGY,E1000\nHEAL,MOUNT SINAI SCHOOL OF MEDICINE,H5150\nAttorney,Peck Shaffer,J1100\nSILVER & SILVER,,K1000\nRECORDS AUDITOR,DEPT. OF CHILDREN & FAMILIES,X3000\nENGINEER,WYNN CROSBY MGMT,Y4000\nExecutive,JR Businesses Inc,Y4000\nPHYSICIA,BALTIMORE CITY MEDICAL PAC,Y4000\nVICE CHAIRMAN,COLORADO ROCK,G0000\nGENERAL MANAGE,MIDWEST GROUNDCOVERS,A8000\nPHYSICIAN,PIETRO V. ROCCA MD PA,H1100\nMANUFACTUR,SONOCO PACKAGING COMPANY,Y4000\nChairman,\"Peckham Industries, Inc.\",B5000\nCommissioner,Historical Heritage Commission,Y4000\nPhotojournalist,Information Requested,C1100\nTRANSPORT EXECU,SCR MEDICAL TRANSP.,T4200\nASSISTANT,\"B&D INDUSTRIES, INC.\",Z9500\nBEYOND BOUNDARIES INC./PRESIDENT/CE,,Y4000\nPhysician,St Johns Regional Med Ctr,H2100\nCHAIRMAN,ESMARK,Y4000\nMANAGER,FOOD SERVICE SUPPLY,Y4000\nIndependent Filmmake,Information Requested,C2400\nCPA,MEREDITH N LUNATI CPA,F5100\nVOLUNTEER,NOT EMPLOYED/VOLUNTEER,K1000\nTETRA PAK INC,,A2000\nCPA/Business Manager,Burton Goldstein & Co. LLC,G5270\nVP HUMAN RESOURC,MCKESSON HBOC INC.,H4400\n\"COEUR D'ALENE MINES\",,E1220\nFinance,Cedars-Sinai Med Center,H2100\nManaging Director,Professional Travel Consult,Y4000\nBANKING,OH CAPITAL CORP FOR HOUSING,Y4000\nCONS,BASKERVILLE INTERNATIONAL LTD.,Y4000\nMILLER-VALENTINE CONSTRUCTION,,B1000\nPresident & Founder,Platinum Advisors,G5210\nLAW OFFICE OF CARL A CAPOZZOLA,,K1000\nADVERTISIN,WRITING & COMMUNICATIONS,C1100\nEXECUTIVE,CREDIT ACCEPTANCE CORP.,J2200\nSenior Vice President  International F,A&E Television Networks,C2200\nStudent,Not Employed,H1710\nChairman,Anc,Y4000\nSALES MAN,AUTO  DEARLER,T2300\nPROGRAMMER,2M CORP.,Y4000\nInvestor,Klein Enterprises,J5100\nExecutive,RMF Consulting,F3300\nVP CALIFORNIA DIVIS,ALTA DENA DAIRY,A2000\nVP,PRIVATE EQUITY COUNCIL,J1200\nRealtor,Robert A. Marshall,Y4000\nPRUDENTIAL SECURITIES INC,,J7400\nDOCTOR,SYSTEMS PATHOLOGY,H1130\nDietitian,\"Nationwide Children's Hospital\",H2100\nFinancial Consultant,\"Cove Hill Consulting, Inc\",F2300\nManager,\"Noah's Development LLC\",Y4000\nPresident,Southern Railroad of New Jersey,T5100\nCEO & PRESIDENT,T2 BIOSYSTEMS,Y4000\nDYNASTY CRUISE LINE,,T6250\nCONSULTANT,\"POLICY COMMUNICATIONS, INC.\",Y4000\nRETIRED,WELLS COLLEGE,H5100\nFRANCIS PARTNERSHIP,MASON,Y4000\nATTORNEY,LIPMAN & KATZ P.A.,K1100\nADULT DAY CARE CENTER,,H2000\nCHAIRMAN OF THE BOAR,\"NAT'L NEUROFIBROMATOSIS FOUND\",H1130\nFEDERAL HOME LOAN BANK OF DES MOINE,,F4600\nVICE-PRESIDENT,SENSAGE,Y4000\nPRESIDENT & COO,TUPPERWARE BRANDS,Z9500\nPRESIDENT,E - INFOTEK,Y4000\nBILTMORE ESTATE,,G6100\nCOLLEGE PROFESSOR,COMMONWEALTH OF MASSACHUSETTS,X3000\nMANAGER,SIMPLY FASHIONS,M3100\nExecutive,Custom Pack Inc,Y4000\nMONARCH BEV,,G2850\nVice President,Palisades Medical Center,H0000\nPRESIDENT,ANYTHING IT,Y4000\nPHYSICIAN,INTEGRIS OF OK,H0000\nprofessor of law,Rutgers University,H5100\nCHA,RIVER OAKS FINANCIAL GROUP INC.,F0000\nPRESIDENT,NAPICO,Y4000\nTherapist,Denise Gilpatric,Y4000\nENGINEER,SUNSET EXCAVATING,B3600\n\"THE BOY'S MARKETS\",,G2400\nReal Estate Mgt,Central Park Mgt,F4000\nReal Estate Broker,Sun Realty-Nags Head/Duck Offi,F4200\nhousewife,housewife,F0000\nDir Information Serv,\"Home Depot U.S.A., Inc.\",G4500\nMATTHEW OUTDOOR ADVERTISIN,,G5230\nMICHELIN TIRE CORP,,T2200\nPROPERTY MANAGMENT,SELF,F4500\nSI TV,,C2300\nREAL ESTATE DEVELOPER,FRED GLAIZE L.C.,Y4000\nLITTLE ROCK SCHOOL DISTRI,,X3500\nKARR BARTH & ASSOCIATES,,F3300\nFinance,ACI Capital,F2600\nEMPLOYEE COMM _ BRAND DEPT MGR,UNITED PARCEL SERVICE INC,T7100\nINTERNATIONA,THE PEOPLES GROUP LTD.,Y4000\nPresident,Austin Heart,H1130\nretired,terry.haight@gmail.com,J1200\nCpo/E-7,Us Navy,X5000\nCON,KIMLEY-HORN AND ASSOCIATES INC.,B4000\nCFO,PRECISION DYNAMICS CORP.,Y4000\nRE BROKER,CBRE INC.,F4200\nLAWYER,CONROY COBURN & HIZZARD,Y4000\nOwner,Grosskopf Bus Comp,Y4000\nOfficer,Usn,X5000\nSELF-EMPLOYED,SERVICE,Y4000\nCEO,BODINE ASSEMBLY& TEST SYSTEM,Y4000\nINVESTMENTS,SATURN MANAGEMENT,F2500\nPhotographer,Wills,J1200\nWORLD ATLANTIC AIRLINES,PRESIDENT,G0000\nGERALD TODARO & ASSOCIATES,,Y4000\nCHAIRMAN,UNITED RESOURCES,Y4000\nJONES BROTHERS & JONES,,B1500\nPHYSI,NORTH SHORE-LLI HEALTH SYSTEM,Y4000\nSVP R&D,VIA Pharmaceuticals,Y4000\nRE DEVELOP,,F4100\nPARTNER,QVT FINANCIAL LP,F2700\nSALES REPRESENTATIVE,PRECISION ORTHOPEDICS INC,H1130\nReal Estate,The Federal City Company,F4000\nOWNER,ACCOMMODATIONS PLUS,Y4000\nPresident,Whole Foods Market,G2400\nMANAGER,ABBOTT LABEL INC.,M7000\nPHYSIC,CARDIOLOGY CONSULTANTS OF NV,H1130\nN/A/HOMEMAKER,,T4100\nPR,WIT STRATEGY,Y4000\nPresident,Architectural Facades Un,B4200\nPRESIDENT AND GENERAL MANAGER,KXAN AND KNVA-TV,C2100\nWEINGOTTEN REALTY INC,,F4100\nVP SPECIAL PROJECTS OPERATIONS,KOCH CO PUBLIC SECTOR LLC,E1160\nOPHTHALMOLOG,UNIVERSITY OF KENTUCKY,H5100\nCONSULTANT,SELF,H4500\nOpns. Cmte,Procter and Gamble Company,M3300\nCHAIRMAN,MARION CO. REPUBLICAN CMTE,J1100\nSoftware Engineer,Savvis,Y4000\nPhysician,ORH,Y4000\nCUSTOM METAL FAB,,M5000\nGENERAL PARTNER,IDG VENTURES VIETNAM,Y4000\nSALES ENG,,J1100\nOWNER & OPERATOR,\"MCLENDON ACRES, INC\",A1000\nCHAIRMAN,BANK PITTSBURGH,F1000\nBANKER,ML,Y4000\nPastor,Korean Presbyterian Church,X7000\nPresident,Mc Cloy Financial Svc.,F0000\nPHARMACIST,BANKS DRUG/PHARMACIST,Y4000\nVICE PRESIDENT,RESEARCH NOW,Y4000\nExecutive,Gray Insurance,F3100\nState Representative,Information Requested,X3100\nR.N.,Self-employed,H2100\nC.E.O.,Daigle Enterprises,Y4000\nPRESID,SIGAL CONSTRUCTION COMPANIES,B1500\nLUCKY OIL SERVICE,,E1100\nFLORIDA FRUIT & VEGETABLE ASSOCIATI,,A1400\nRADFORD COMMUNITY HOSPITAL,,H1130\nSTASSINOS ENTERPRISES INC./SECY/TRE,,Y4000\nEATON LAW FIRM,,K1000\nFirefighter/EMS,OAK CREEK FIRE DEPARTMENT,L1400\n\"Gov't Relations\",ANPC,Y4000\nCHAIRMAN,\"CS WO & SONS, LTD.\",G4400\nAEI INC,,E1210\nPRESIDENT,VALLEY-WIDE HEALTH SYSTEMS,Y4000\nGOLF,SELF,G6100\nconsultant,The Glover Park Group,K2000\nFOUNDER & CHAIRMAN,\"GUARDSMARK, INC.\",G5290\nTRUSTEE,MAIN LINE HEALTH,H0000\nCHIEF EXECUTIVE OFFICER,S.T.C.C.,Y4000\nQMC,,Y4000\nBUTLER FITZGERALD & POTTER,,K1000\nCEO,MDVIP,H3100\nPHYSICIAN,OBSTATRICS AND GYNOC,Y4000\nExecutive Management,Junosource,Y4000\nCRNA,Anesthesiology Associates,H1710\nMANAGER,C&S BUILDERS,Z9500\nFED DEPT & STO,,G4300\nANESTHESIOLOGIST,PIEDMONT ANESTH & PAIN,H1130\nComputer Consultant,NetFusion,Y4000\nMANAGER,MCCURLEY,Y4000\nBEVERAGE DISTRIBUTION,BEVERAGE MGMT.,G2850\nOWNER,\"SCANNAVINO, INC.\",Y4000\nCEO,CINCINATTI OPERA,C2900\nHYATT INC,,J5100\nAttorney,\"Bush Graziano & Rice,\",J1200\nProfessor,David Pine,Y4000\nCONTROLLER,CUTRALE CITRUS JUICES USA INC,G2600\nCOMBE INC,,G4900\nAttorney,Bryant Miller & Olive,K1000\nPRESIDENT/CEO,WISCONSIN BANKERS ASSN,F1100\nDAVCO INCORPORATED,,Y4000\nPHARMACIES,,G4900\nAttorney,Wilmer Cutler Pickering Hale & Door LL,K1000\nSUITTER AXLAND ARMST,,Y4000\nNISSAN DEALER,SELF-EMPLOYED,T2310\nPHYSICIAN/FACULTY,UNIVERSITY OF PENNSYLVANIA SCHOOL OF M,H5100\nMOORE BLUE DIAMOND,,Y4000\nREAL ESTATE INVESTM,LIONSTUNE GROUP,F4000\nR.N.,INOVA HEALTH SYSTEMS; FAIRFAX,Y4000\nCONTROLLER,GRAVES HOSPITALITY,T9100\nVACATION RENTALS,SELF,J1200\nPresident,\"Pryor Mechanical, Inc.\",Y4000\nPHYSICIAN,BORGESS,Y4000\nPhysician,Choctaw Professional Resource,Y4000\nNW NATURAL,LAWYER,K1000\nADJUSTOR,ARNOLD AND ARNOLD INC,J1100\nFOWLEE PACKING CO INC,,A1400\nLEGISLATI,OFFICE OF DEL. BOB PURKEY,Y4000\nVICE,HAWAII MEDICAL SERVICE ASSOC.,H3000\nSenior District Exec,Boy Scouts Of America,X4000\nEXECUTIVE,SEDANOS SUPERMARKET,G2400\nOwner,EMM Holdings,F1000\nJOHN DEERE HEALTH CARE,,H0000\nTOWER ASSET MANAGEMENT,,F2100\nLITHOGRAPHER,PHARMACEUTIC LITHO & LABEL CO,Y4000\nCPA,COHEN & ASSOCIATES,F5100\nARCHITECT,AS IT STANDS/ARCHITECT,Y4000\nPRESIDENT & CE,WM. C. BROWN COMPANY,Y4000\n,UNIVERSITY OF UTAH-HUNTSMAN CANCER,Z9500\nPRESIDENT,SOBEL FAMILY FOUNDATION,J1100\n\"HOLLANDER, COHEN\",,J7150\n\"EXECUTIVE VP, NORTH AMERIC\",MONSANTO,A4100\nPRESIDENT,CAPITAL GROUP,F2100\nREGIONAL VICE PRESIDENT,PRIDE MOBILITY PRODUCTS CORP,H4100\nPresident,Modern Male,Y4000\nPROFESSOR/SCIENTIST,MIT,H5100\nPhysician-Semi-Retir,Self,H1100\nOWNER,GALAXY 66,Y4000\nCounselor,Fairfax County Public Schools,X3500\nBUSINESS OWNER,TOPEKA SERVICES INC.,Y4000\nAtty,LSNY-onx,Y4000\nGREGORIS MOTORS INC,,T2300\nExecutive Secretary,City & County of San Francisco,X3000\nCEO,\"Palmer Food Services, Inc\",G2000\nREAL ESTATE,D.L.K. ENTERPRISES INC.,Y4000\nATTORNEY,\"PATTERSON, BELKNOP, WEBBER\",J7150\nWRITER/PHOTOGRAPHER,SELF EMPLOYED,J7400\nManager,Wilson County Youth Athletic,Y4000\nREAL ESTA,ELLIS BUSINESS CONSULTING,F4100\nSELF/OWNER/WRITER-EDITOR-PUBLISHER,,C1100\nMarketing Consultant,Carazo Communications,Y4000\nATTORNEY,SWARTZ CAMPBELL L.L.C.,K1000\nPhysician,\"Summit Oncology Assoc., Inc.\",J7400\nBurton Oil Company,Edgar S. Burton,E1100\nPRESIDENT,THE TELEIN GROUP,G5270\nPresident,Catalyst Community Partners,Y4000\nBUSINESS OWNE,CONTROL SOUTHERN INC.,E1700\nEXECUTIVE,PFG,Y4000\nCEO,CLINICAL CARE OPTIONS,Y4000\nCorporate Director,\"Fannie Mae, Nicor, Office Depot, Tenet\",F4600\nATTORNEY,NIXON PEABODY/ATTORNEY,K2000\nWIREMAN,,B3200\nPUBIC AFFAIRS CONSULTANT,,J7400\nAutomobile Dealer,Rowe Dealerships,Y4000\nCOELHO FARMS,,A1000\nATTORNEY,EARP COHN PC,Y4000\nCOYLE ENTERPRISES,,M5100\nAutomotive,Mayer Chevrolet Oldsmobile,T2300\nTax Consultant,Boston Capital,F4000\nInvestment Mgr,Greylin Investments,Z9500\nSELF EMPLOYED SMALL BUSINESS,BUTTONS BAGS AND BOWS,Y4000\nPHARMINGEN,,Y4000\nScientist,Invitrogen,H4500\nEXECUTIVE,MODERN TECHNOLOGIES,C5120\nROOFER,\"GLICK'S CONSTRUCTION/ROOFER\",B1500\nEnvironmental Specialist,City of Los Angeles (Ca),X3000\nATTORNEY,\"GARAU GERMANO & PENNINGTON, P.C.\",Y4000\nACCOUNT VICE PRES,UNITED HEALTHCARE,F3200\nATT,LAW OFFICE OF STEVEN D. WOLCOTT,K1000\nOwner,Fellis & Salazar Body Shop,T2400\nHARDWARE SUPP OF AME,,K1000\nOWNE,E.D. SIEBERT TRUCKING SER. INC,T3100\nPromotions/Fundraisi,Self,G0000\nN/A,NONE,JE300\nTHE PERMANENTE MED. GRP.,,H3700\nPRESIDENT,FIRST FEDERAL SAVINGS,F1200\nPsychologist,Star Foundation,J1200\nADMIN VP,ASHLAND INC,E1160\nST MARYS PRESCRIPTION PROG,,Y4000\nATTORNEY,KELLEY DRYER & WARREN LLP,K1000\nAttorney,Ruiz & Sperow,K1000\nCEO,ALPINE MEDICAL ASSOCIATES,Y4000\nELYRIA MANUFACTURING,,G1100\nLANDSCAPER,PRO CARE LANDSCAPE AND LAWN SERVICES I,B3600\nR & R PRODUCTS COMPANY,,G1100\ninvestor,First Holding,J5100\nYELLOW CAB OF HOUSTON,,T4200\nCHAIRMAN,LILAC CAPITAL LLC,F0000\nLEVEL PLAYING FIELD CORP,,Y4000\nINTELLISIM,,Y4000\nMANAGEMENT,SILCHESTER,J1100\nEXECUTIVE,TULANE COUNTY,Y4000\nOWNER,INTERNATIONAL INDUSTRIES,E1210\nOWNER,PECONIC PROPANE,E1190\nGreat Lakes Roofing,Owner,B3000\nI.T. MANAGER,FEDERAL GOVERNMENT,X3000\nATTORNEY,INDIANO WILLIAMS/ATTORNEY,K1000\nWILLIAMS & WILLIAMS FUNERAL,,G5400\nPHYSI,COLORADO PULMONARY ASSOCIATES,H1130\nInternational Development,DAI,J1200\nHERSEY TRUST CO,,Y4000\nASOC JEWISH CHARITIES OF BALTIMORE,,Y4000\nSoftware developer,MSCI Inc,F5000\nClerical Associate,Office of School Support Service,X3500\nEXECUTIVE SEARCH CONSULTANT,HOWARD-SLOAN LEGAL SEARCH,Y4000\nFederal Human Resou Rces,Dhhs/Nih,Y4000\nRESEARCH BUSINESS,SELF-EMPLOYED,Y4000\nCOSMOS COMMUNICATIONS,SELF-EMPLOYED,G5210\nReal Estate,Atlantic Realty,Z9500\nAttorney,\"Moye, Giles, O' Keefe\",K1000\nORTHO SURG SPEC,,H1130\nPASTOR,OLIVET INST. BAPTIST CHURCH,X7000\nPhD Student,University of Chicago,H5100\nSERBER KONSCHAK & JAQUETT,,K1000\nRN/Scientist,UAMS,Y4000\nDirector of Research and Development,\"Fermat Capital Management, LLC\",F2100\nCONSUMER PRODUCT,,X3000\nDIRECTOR OF OPERATIONS,GRAHAM COMPANIES,F4000\nCHAIRMAN OF TH,J. P. WEIGAND & SONS,J8000\nVICE PRESIDENT,ILLINOIS CHAMBER OF COMMERCE,G1100\npresident,\"Risser Oil Corporation, Inc.\",Y4000\nSALES,MCGHEE OFFICE SUPPLY,Y4000\nPresident,Superior Structures Llc,Y4000\nCEO,FOX HILLS TOWING,T3100\nCORP VP,,G0000\nSALES REP,RUMSEY ELECTRIC,Y4000\nStay-At-Home dad,Self employed,G0000\nOutdoor lighting,Self employed,G0000\nMANNING AND SMITH,,Y4000\nMechanic/ Small Business Owner,Self,T2400\nHARLIN PRODUCTION,,C2400\nWESTER CREDIT BUREAU,,F1400\nEngineer,Corning Inc.,C5110\nADMI,UNIVERSITY OF PENNSYLVANIA HEA,H5100\nATTORNEY,WILKEY & WILSON PSC,Y4000\nAttorney,Phico Insurance Company,F3100\nprofessor,Lehigh University,H5100\nEXECUTIVE,HEETER PRINTING,C1300\nTeacher,Anahuac ISD,X3500\nHUNT SUEDHOFF BORROR & EILBACHER,,Y4000\nBRIAR TEK,,Y4000\nATTORNEY,JOHN & CONNER P.L.C.,K1000\nFINANCIAL ANALYST,E.E.S.,C5130\nPRESIDENT,R & H MOTOR CARS LTD.,J5100\nVP/GM,CERRITOS INFINITI,T2310\nPRESIDENT,\"TECHINICAL ANALYSIS, INC.\",Y4000\nJEWISH COMM. RELATIONS CONCIL OF NY,,J7500\nC.P.A.,ASHER AND COMPANY LTD.,Y4000\nDirt Contractor,Self Employed,G0000\nHOMEMAKERA,,G5200\nExecutive Associate Dean,Virginia Commonwealth University,H5100\nOIL AND GAS,,\nSALES,SUNCOAST SANITATION,E3000\nEEO COUNSELOR,USPTO,Y4000\nVENTURE CAPITALIST,\"AMERICA'S GROWTH CAPITAL\",Z9500\nPRIMERA TECHNOLOGIES,,J1100\nSELF-EMPLOYED,MAKR WEBER,Y4000\nSALES,PLYMOUUTH,G2300\nEXECUTIV,HUTCHISON HAYES INTL. INC.,Y4000\nAttorney,PhillipsMcFall,K1000\nVETERI,ASSOC OF AMERICAN VETERINARY,H5100\n\"VP,  RISK MANA\",CARNIVAL CORPORATION,T6250\nFINANCIAL,BB&T CAPITAL MAKRETS,F2300\nPhysician,The Schnider Group LLC,Y4000\nANESTHESIOLOGIST,ART LARGOZA M.D. INC.,H1100\n\"President, CFO & Broker/Carpet Importi\",Self employed,M8000\nAttorney,Eisenmorgen Benny,Y4000\nFire Fighter,Lake Zurich Fire Department,X3000\nACAICA GROUP,,F3100\nECONOMIST,C,Z9500\nATTORNEY,\"HOLT, NEY, ZATCOFF & WASSERMAN\",K1000\nINVESTM,SHOTT CAPITAL MANAGMENT LLC,F2100\nOWNER,\"GEENEN DEKOCK PROPERTIES, LLC GDK CONS\",F4000\nPresident,\"Information for Public Affairs, Inc\",Y4000\nTOTE-A-POKE,,Y4000\nATTORNEY,THE BALDWIN LAW FIRM,Z9500\nRABBI,CONGREGATION BETH ISREAL,X7000\nREALTOR,RE/MAX Beach Cities - MB,F4200\nCAPITOL ADVISORS INC,,F2100\nTrader,Tradelink LLC,F2200\nSHEPARD REALTY CO,,F4200\nKANSAS CITY SOUTHERN INC,,T5100\nConsultant,Booz Allen Hamiton,G5270\nAUDIO TECH.,CITY OF PHILADELPHIA,X3000\nPARTNER,\"DALTON & FINEGOLD, LLP\",Z9500\nREAL ESTATE DEV. SENIOR HSNG.,ASSOCIATED EQUITIES,F4100\nK FEINBERG & ASSOC,,Y4000\nKNIGHT MANZI BRENNAN ET AL,,K1000\nGRAPHIC SERVICE,,J7300\nTONY GEE & QUANDEL,,B4000\nINFO REQUESTED,Ebs Oil & Gas Partners Llc,E1100\nCHASE/WILLIAMS GROUP/GENERAL CONTRA,,Y4000\nBusiness Man,Self Employed,J1100\nATTORNEY,MICROSOFT,J1200\nPsychologist,University of Scranton,H1110\nCEO,TACOMA CORP.,G2900\nCEO,TGI HEALTHWORKS,Y4000\nRESEARCH & EVAL ASSOC,,Y4000\nINVESTOR,VTRADING COMPANY,Y4000\nDermatologist,Physician,H1100\nSurgeon,Madeleine Ewing,H1130\nPRESIDENT,KOLL DEVELOPMENT COMPANY,F4100\nLobbyist,Chevron,E1110\nAttorney,Bernstein & Lipsett PC,J7400\nHEFFREN TILLOTSON,,Y4000\nMarketing,Vestas,Y4000\nWASHINGTON MUTUAL BANK,,F1100\nPHYSICIST,USC,Y4000\nSonic Drive In Franchisee,Self,Y4000\nPARA LEGAL,\"LONG, PARKER LAW FIRM\",K1000\nPUBLIC RELATIONS.,LEARY PR.,Y4000\nCPA,SELF-EMPLOYED,J7400\nSENIOR VICE PRESDIENT,SIFMA,F2100\nRETAIL EXECUTIVE,\"DILLARD'S, INC.\",G4300\nSTIGER ENGINEERS,,Y4000\nSENIOR PARTNER,LABATON SUCHAROW,K1200\nINSURANCE,LAYNE ASSOCIATES,Y4000\nEXEC,AMER.COLLEGE OF GASTROENTOLOGY,H1130\nNURS,UNIVERSITY OF CALIFORNIA DAVIS,H5100\nPhysician,Peoria Radiology Associates,H1130\nREGISTERED NURSE,ST. VINCENT CATHOLIC MEDICAL,Y4000\nTECHNICAL OPTIONS INC,,Y4000\nBUILDING CONTRACTOR,GRANTHAN CONST CO INC,Y4000\nBusiness Executive,Health Dialog Services Corporation,H1700\nPrincipal,Winning Strategies,Y4000\nOwner/Engineer,Nexus Clinical LLC,H4500\nPresident/CEO,Humane Society of the United States,J7600\nPro Drywall Systems/Owner/General M,,B3000\nGLADDEN PRODUCTS,,C2400\nINSURANCE OWNER,SELF-EMPLOYED,F3100\nOWNER,LM CONSTRUCTION LLC,B1500\nTrade Relations,Dominon Virginia Power,B2000\nGroup VP,Connell Company,G2500\nelectrition,advanced custom electric,Y4000\nFire Fighter / EMS,Portland Fire Dept.,L1400\nOWNER,COLONIAL LAUNDRY MAT,G5500\nCHAIRMAN,KAUFMAN FINANCIAL GROUP,F0000\nMIAMI UNV,MUSIC PROF,Y4000\nCORA TEXAS,,A1200\nCEO,Puresyn Inc,Y4000\nCeo-  Senior Exec.,Retired,X1200\nAgribusiness Executi,\"Alico, Inc.\",A1200\nSHIPPER,GROWER,A1400\nANESTHESIOLOGIST,ASSOC ANESTHESIOLOGIST,H1130\nRadiation Oncologist,Washington Radiation Oncology,H1130\nPresident,\"Chatworth Design, Inc.\",Y4000\nLobbyist,\"Jim English Consulting, LLC\",K2000\nHUTTENBAUER CO,,Y4000\nATTO,\"VERNER, LIIPHERT, BERNHAND, MC\",K1000\nROGERS AGENCY,,Y4000\nPresident,Self-Employed/DC Oil Company Inc,E1100\nT CRAWFORD ENTERPRISES,,Y4000\nEXECUTIVE SEARCH,TRIMBLE,Y4000\nRetired,William Blair & Company,F2300\nRESIDEN,\"SANDERSON CUSTOM HOMES, LLC\",B2000\nFinancial Analyst,Mcgraw-Hill,C1100\nGENERAL MANAGER,STRATTON LUMBER,B5200\nREYNOLDS HENDRICK ET AL,,Y4000\nGOLD ANGLES,,Y4000\nOwner,Cannon Automotive,T2000\nphysician/author,self,H1100\nFLAVOR RIGHT FOODS,,G2000\nAGRICULTURE,FAGERBERG PRODUCE,A1400\nBookseller,Time-Tested Books,J1200\nPLOTKIN JACOBS ORLEF,,Y4000\nATTORNEY,DPEH,Y4000\nSocial Science Researcher,JBS International,G5000\nPRESID,\"J & L IRRIGATION CORP., INC.\",A4000\nVP UNDERWRITIN,MORTGAGEAMERICA INC.,F4600\nBROOKSTREET SECURITIES CORP,,F2100\nGOVERNMENT A,CONTINENTIAL RESOURCES,E1120\nCLEMENTS TELEPHONE,,C4100\nSR. VP,JONES & CARTER,J1100\nPrincipal,\"Clyde's Restaurant Group\",G2900\nPEACE BRIDGE,,Y4000\nMIDA GROUP,,Y4000\nFISHERMAN,SELF-EMPLOYED,J2200\nVP & GENERAL COUNSEL,ASSOCIATED ESTATES REALTY CORPORATION,F4100\nSystems Engineer,Station Casinos,G6500\nBELL & BELL,,K1000\nMANAGER,\"TWO AMIGOS, LLC\",Y4000\nChief Executive Officer,\"Gray Television, Inc\",C2100\nVP Development Law,Darden Restaurants Inc.,G2900\nTHE ROCHEFELLER UNIV,,H5100\nPARTNER,MARX LAYNE & COMPANY,Y4000\nEXECUTIVE,\"CAW EQUITIES, LLC\",Y4000\nATTORNEY,LIPSCOMB & YUKNIS,K1000\nPMA RE PMA CAPITAL,,F3100\nMIDLAND GROUP,,F4600\nGBM RESOURCES,,F3100\nDirector,ITT Technical Institute,H5200\nMANAGER,POINSETT RICE & GRAIN,Y4000\nNEW YORK PHILHARMONIC,,C2600\nCHIEF FINANCIAL OFFICER,CANCER RESEARCH AND BIOSTATISTICS,Y4000\nFINANCE,GOLDMAN  SACHS,J7400\nOFFICE MANAGER,CAPTIOL HILL PARTNERS/OFFICE MANAGE,K2000\nDryden Central Schoo,Science Teacher,J7400\nRESTAURANTEUR AND BUSINESS,,G2900\nFINITE INDUSTRIES INC,,M2300\nExecutive,American Meter Co,Y4000\nPRESIDENT COB,,Y4000\nSOUTHLAND CONTRACTING/CONTRACTOR/C.,,Y4000\nSELF EMPLOYED,RUTTERS FARM STORES,A2000\nTELLEFSEN INVESTMENTS INC,,F7000\nVICE CHAIRMAN,MCANDREWS AND FORBES,M3300\nBROADWAY VOLVO INC,,T2300\nManagement,J & L. Oil Inc.,E1100\nPhysician,NWWPOA,Y4000\nPOTTER,SELF-EMPLOYED,X0000\nHOMEMAKER,HUBBY,J1100\nHARRIS MITCHELL,,Y4000\nPresident,J.M. Kaplan Fund,X1200\nInformation Requested,Eastern Metal/USA-Sign,Y4000\nEngineer VI,General Atomics,E1320\nPROFESSOR,UNIVERSITY OF MISSOURI,H6000\nCEO,\"EPIVAX, INC/CEO\",Y4000\nPrincipal,Podesta Partners,K2000\nA,\"MILFORD ANESTHESIA ASSOCIATES, PC\",H1130\nPublic Relations,Full Court Press,Y4000\nEXECUTIVE,WHITE CASTLE SYSTEM,G2900\nhomemaker,Homemaker,K2100\nDVS PARTNERS,,F2500\nPetroleum Landman,Self Employed,E1120\nPHARMACY ASS,STONY BROOK UNIVERSITY,H5100\nCAPITAL GAMING INT,,G6500\nCHAIRMAN,PENNHILL PROPERTIES/CHAIRMAN,F4500\nRICHARD L BOYLAN & ASSOC,,Y4000\nChairman/ceo,Sell Jewelry,Y4000\nBARCLAYSAMERICAN CORP,,F1400\nBudget Analyst,Center on Budget,Y4000\nSURGEON,TEMPLE VASCULAR SURGERY,H1130\nGASTINEAU LOG HOMES,,B2000\nLD SYS ARCHITEC,UNITED PARCEL SERVICE INC,T7100\nPRESIDENT,VERNON COMMERCIAL PROPERTIES,F4000\nPRESIDENT,RESEARCH GENETICS,H4500\nArchitect,Perkins Eastman Architects,B4200\nGOVERNMENT RELATIONS,CASSIDY & ASSOICATES,K2000\nOwner,\"GMG Motors, Inc\",JD100\nTeacher,\"Bedford County Public Schools, Bed\",X3500\nGEOLOGIST,GAMIRL OIL CO.,Y4000\nSearch Marketing Executive,Doubleclick Performics,Y4000\nCEO,ALFRED SANZARI ENTERPRISE INC,Y4000\nSOFTWARE ENGINEER,\"GRACENOTE, INC\",Y4000\nEXPRESS ONE INTERNATIONALINC.,,Z9500\nTEDFORD CONSTRUCTION CO,,B1500\nSCIENTIST,WYETH,Z9500\nARTIST VOLUNTEER,SELF-EMPLOYED/ARTIST VOLUNTEER,G5270\nBERMAN GAUFIN TOMSIC & SAVAGE,,K1000\nInvestor,\"O'Keefe Associates, L.P.\",Y4000\nELECTRIC POLICY ANALYST/ATTORNEY,PUBLIC POWER COUNCIL,E1610\nDIRECTOR,MCKEE FOODS CORP,G2100\nBOOK HOUSE,,G4600\nHEITMAN BREWING,,Y4000\nPastor,Gospel Lighthouse,Y4000\nAttorney at Law,McManimon & Scotland,K1000\nTREASURER,B-LINE FILTER & SUPPLY INC,T2200\nMB Investments,,J7400\nPRESIDENT,AMERICAN LINK CORP/PRESIDENT,Y4000\nPublic Relations,Sel-Employed,Y4000\nMANAGER,TOP OF THE BAY CORP,Y4000\nSTRANGE & CARPENTER,,K1000\nRETIRED,GAGE MKGT,Y4000\nATTORNEY,MYERS ANDRAS SHERMAN & ZARRABIAN LLP,Z9500\nPRESIDENT,\"MERSINO ENT, INC\",Y4000\nFINANCE MANAGER,BIOGEN IDEC,H4500\nInformation Requeste,Hampshire Hotels and Resorts LLC,T9100\nOWNER,MC NAIR & ASSOC.,Y4000\nINSURANCE BROKER,KEENAN SUGGS BOWERS ELKINS,F3100\nPART-TIME ADMINS,NORTHEASTERN UNIV.,H5100\nDirector,The Peace House,J1200\nUSFS NEZ PERCE NF,,Y4000\nVice President,Koman Sportswear,G4100\nPARTNER,KEYSTONE CONSTRUCTION CORP,B1500\nCFO,CARRIER CORP,M2300\nPresident,HIS,Y4000\nEVENT PLANNER,CONTINENTAL CATERERS,Y4000\nPresident/Farmer,SC Farm Bureau,J1200\nProprietor,The Flower Cottage,A8000\nCEO,Experian,F5200\nPROJECT MANA,ELECTRIC POWER SYSTEMS,E1600\nTED WELCH INVESTMENTS,,F4000\nPIETRANTONI MENDEZ &,,Y4000\nCONCEPT 100 REALTY/HOUSEWIFE /REALT,,J1100\nHR ADMINISTRATOR,\"NCO,INC\",Y4000\nSHANTOK PAINTING & ROOFIN,,B3000\nMCKAY BELL AND BYERLEY,,Y4000\nReal Estate,Arcis Investments,F4000\nINVESTO,RAMSEY QUANTITATIVE SYSTEMS,A1000\nREGIONAL MANAGER,MARINER FINANCE,F1400\nAdvisor,Goldman Sachs & Co.,F2300\nTHE ORIENTAL SHOP,,Y4000\nCTR FOR DIG DISEASE,,H1100\nEXECUTIVE,NUVISION MANAGEMENT,Y4000\nLAWRENCE AVIATION,,T1600\nINVESTOR,GOULD INVESTORS,J5100\nVice President,\"Wendys International, Inc\",G2900\nPRESIDENT,\"VELTRI, INC.\",Z9500\nENVIRONMENTAL PROTECTION SPECIALIST,US ENVIRONMENTAL PROTECTION AGENCY,X3000\nfounder,Newtithing Group,J1200\nHELPING HANDS INC,,G5250\nteacher,ETSU,Y4000\nSPELLMAN & CO,,Y4000\nMANSIS & MCLENNON,,F3100\nVOGEL BRANTNER KELLY KNUTSON WEIR B,,K1000\nConsultant,Self,X4100\nMORTGAGE INVESTMENT TRUST CORP,,F4600\nCALVERT CO LIBRARY,,X4200\nSENIOR LIAISON,NATIONAL EDUCATION ASSOCIATION,Z9500\nLAW FIRM,HUNTON & WILLIAMS,K1000\ndeveloper,Carroll Community Development LLC,F4100\nGOLDBERG AND SPECTOR,,K2000\nINDUSTRIAL POWER & LIGHTING,,Y4000\nBISHOP,NEW HOPE BAPTIST CHURCH/BISHOP,X7000\nCHIEF EXECUTIVE OFFICER,BROWNSTEIN HYATT FARBER SCHRECK,K1000\nDesigner,Club Kiddoo,G6100\nPRESIDENT & CEO,LEWIS-GOETZ,B6000\nENGINEERING DIRECTOR,WESTERN DIGITAL CORP.,C5110\nPT,Mountain Land Rehabilitation,H1700\nDIRECTOR OF SALES,SOCIABLE LABS,Y4000\nHEALTH EXECUTIVE,RESCARE HOMECARE,Y4000\nPresident,Aslan LLC,Y4000\nATTORNEY,DOUGLAS WEST & ASSOCIATES,K1000\nSelf Property Manager,Self,J6200\nEXECUTIVE,TSR INC.,Y4000\nWriter,Brinsights llc,G5210\nDIRECTOR,MG INT. BROKERS LLC,Y4000\nGAY & LESBIAN COMM SVS CENTER,,Y4000\nTEACHER,SARTELL HIGH SCHOOL,X3500\nPhotographer,\"Powell Phtography, Inc\",Y4000\nSTITES HOPKINS FAIR & REIDERER,,Y4000\nAttorney,Boyd and Kentor PC,K1000\n\"President & COO, HLI\",The Hartford,F3100\nI E W,,Y4000\nDirector of Valuatio,\"S & S Business Services, Inc.\",F5500\nComputer Programmer,Zenith LG,Y4000\nMORTGAGE,PMI MORTGAGE INSURANCE CO,F4600\nManager Corp Sustainability,The North Face,Y4000\nC.E.O./OWNER,ECO QUEST INTERNATIONAL,Y4000\nSole Proprietor Attorney,Self employed,G0000\nCity Drug Company,self,G4900\nREAL ESTATE BROKER,\"EVANS, ELDER, AND BROWN\",Z9500\nClinical Psychologis,Vaughans Psychological Svcs,H1130\nReal Estate Appraiser,Gatzke Appraisal,F4700\nOakwood Cleaner,Self-employed,G0000\nLINCOLN CLUB OF NORTHERN CA,,J1100\nPRESIDENT,CS FIRST BOSTON,Y4000\nWife and Mother,Retired,X1200\nDIRECTOR,ATLANTIC SHORES HEALTHCARE,H2100\nPOSINELLI-WHITE,,Y4000\nPRESIDENT,JACKSON FED. OF TEACHERS,Y4000\nSELF-EMPLOYED/AUTHOR/LECTURER/COACH,,C1100\nPrinceton University,,H5100\nMedical Doctor,SW Hollcroft Medical Center,H1100\nPRESIDENT,DEBRUNNER & ASSOCIATES,K1000\nSALESMAN - OWNER,,Y4000\nNATIONAL ENERGY PRODUCERS,,E1600\nEXECUTIVE,LAKE SHORE SIDING CO.,Y4000\nVP OF BUSINESS DEVELOPMENT,AREAS USA,Y4000\nSR. PARTNER,J.N. SNYDER CO./SR. PARTNER,Y4000\nKEEP NC BEAUTIFUL,EXECUTIVE DIRECTOR,Z9500\nManager,FX Architecture,B4200\n\"DIR, FIELD OPERATIONS\",Time Warner Cable,C2200\nCEO,ROY CAMPBELL CHEVROLET,T2300\nHERMAN HERMAN AND KATZ,,K1000\nCONTRACTOR,ADAMS INVESTIGATIONS,F7000\nSR. MGR. URBAN SALES,ANHEUSER-BUSCH INC.,G2810\nCHARIMAN,ERIE PRESS SYSTEMS,M2300\nChairman & CEO,\"Claire's Stores Inc.\",G4100\nEXEC,NATIONWIDE,F3100\nMOLTEN METALS,,E2000\nOIL GAS,,E1120\nBUISNESS EXECUTIVE,\"MBI, INC\",J1100\nContractor,Southwest Air Balance Corp.,B3400\nRASMUSSEN COOMBER,,Y4000\nIN PATIENT M.D.,NORTH EAST MED CTR,Y4000\nMARKETING MANA,JAZZ PHARMACEUTICALS,H4300\nPRESIDENT,RANDY DEBALLIE FARMS,G1200\nBUSINESS OWNER,MILESTONE LLC,Y4000\nATTORNEY,ROBLES RAEL & ANAYA P.C./ATTORNEY,K1000\nSVP; MARKETING,SAP AMERICA; INC.,C5120\nSales Manager,Apperson Print Management Services,C1300\nPRESIDENT & C.E.O,SAGEBRUSH RESOURCES II LLC,Y4000\nLOBBYIST,CANADIAN RAILWAY,K2100\nGeneral Contractor,Vandervert Construction Inc,B2000\nPrinciple,Mehlman Vogel Castagnetti,K2000\nattorney,wiggin and dana,K1000\nMedical doctor,NY University School of Medicine,H5150\nRUSK INTERESTS LLC,,Y4000\nMANAGER,JPMORGAN,J5100\nAES MEDWAY,,E1630\nOWNER,KNF & T STAFFING RESOURCES INC.,G5250\nCONTRACTOR,NEWMAN-ALTON INC.,Y4000\nPARTNER,KHOSLA VENTURE,F2500\nOwner,Glass Supply,M7200\nATTORNEY,NEWMAN HOFFOS & DEVALL LLP,Y4000\nAttorney,Joseph L Shalant,Y4000\nFREE-LANCE EDUCATOR,,Y4000\nLATIN SCHOOL OF CHICAGO,,H5100\nVICE PRESIDENT,WINNING STRATEGIES/VICE PRESIDENT,K2000\nManaging VP Midwest Zone,Tower Group Companies,F3100\nHAGGARDS PLUMBING,,B3400\nCRESCENT-WESTWOOD JEWELERS INCOR,,G4600\nUNION FIELD REP.,CCPOA,Y4000\nFINANCIAL SERVICES,GENEVA,Y4000\nCEO,The Morey Company,C5000\nBEDFORD ROGERS,,K1000\nTEACHER,MINNESOTA EDUC,L1300\nAUSTIN TEAL CORP,,Y4000\nLawyer,Law Offices of Robert Gould,K1000\nOWNER,WASHINGTON STEALTH,G6400\nLAWYER,CIEL,Y4000\n\"researcher, writer\",self,C1100\nBRESLIN & TROVINI,,K1000\nPortfolio Manager,\"Smith Asset Management, Inc.\",F2100\nEDUCATION,IFSA FOUNDATION,J1200\nAnalyst,Selectiva Systems,Y4000\nSFWMD,,Y4000\nFIRST UNION CORP OF VIRGINIA,,Y4000\nExecutive,Nomad venture fund,Y4000\nSPOHRER & WILNER,,Y4000\nRETIRED,CAMPBELL EWALD CO.,X1200\n\"SAN DIEGO CANYONLANDS, INC.\",,Y4000\nHOMEMAKER,BEST EFFORT,F5100\nExecutive,Intersoft Corporation,Y4000\nSR DIRECTOR,WERBER WALKER,Y4000\nREALTOR,MICHIGAN ASSOCIATION OF REALTORS,J9000\nProfessor,Texas Tech Univ,H5100\nPUBLISHER,ABOVE TRAINING,Y4000\nWHITE CO LUMBER,,B5200\nFIRST TENNESSEE NATL CORP,,F1100\nUSA DETERGENTS INC,,M1300\nVideo Archiver/Editor,Rockefeller University,H5100\nHomemaker,Not Employed,F4300\nSecurities Dealer,Self-Employed,G0000\nPolitical Consultant,Kennedy Interprises,Y4000\nAttorney,HarveyDPaytonAt.atla,Y4000\nFUNDRAISER,STRATTON-CARPENTER AND ASSOCIATES,K2000\n\"WAITE, SCHNEIDER, BAYLESS & CO\",,K1000\nRegistered Nurse,Fasloc Inc.,Y4000\nPROFESSOR,MEIJI UNIVERSITY,J1200\nPRESIDENT,\"MAYERS ELECTRIC COMPANY, INC.\",B3200\nINVESTOR,WARD PETROLEUM CORP.,E1120\nTRECO CO,,Y4000\nAUCTIONEER,HIGGENBOTHAM AUCTIONEERS,Y4000\nTHE LLAMA COMPANY,PRESIDENT,F2100\nSELF-EMPLOYED,ABL ENTERPRISES LLC,Y4000\nHAMPTON AUTOMOTIVE INC,,T2300\nSR. V,RAG COAL SALES OF AMERICA INC,E1210\nSALES,LONE STAR STEEL,M2100\nPODIATRIST,COOPER CLINIC,Z9500\nELTING INC,,B1000\nCEO,MAKINO,Y4000\nKLEBERGT HEAD,,K1000\nN/A/SLFEMPFARMER,,A1000\nSVP/Field Mgmt,AMERICAN EXPRESS FINANCIAL ADVISORS,F1400\nFilmmaker,Zohe Film Production,C2400\nChairman,\"The Evans Group, Ltd.\",Y4000\nVICE PRESIDENT,PRUTA BIOSCIENCES,K1000\nEVERGREEN CAPITAL MGMT,,F2100\nINSURANCE,THE RHODES INSURANCE GROUP,F3100\nCAO,PRUDENTIAL FINANCIAL,F3300\nPRESIDENT & CEO,\"ALLIANCE RESOURCE PARTNERS, LP\",E1210\nWYTHE DISTRIBUTORS,,Y4000\nBUSINESSMA,PETERBOROUGH OIL COMPANY,E1100\nAdministrator,North Clarksville Medical,H0000\nVICE PRESIDENT,\"ASAP PROFESSIONAL SERVICES, INC.\",Y4000\nR.N.C.,R.N.C.,J1100\nOWNER,LEDBETTER CORNER & ASSOCIATES INC.,Y4000\nDORSEY ALSTON,,Y4000\nCHIEF OF STAFF,US CONGRESS,J7500\nCFO,Carlson Systems,G3000\nHOUSEWIFE,NOT APPLICABLE,H1100\nBIELFELDT & CO,,F1100\nPURCHASING SUPER,SANTA CLARA COUNTY,X3000\nAnalyst,Kaia,Y4000\nHR EXECUTIVE DIRECTOR - SAL,FORD MOTOR COMPANY,T2100\nFARMER,MICHAEL EGGMAN,Z9000\nHOSPITALITY MARKETING,SELF-EMPLOYED,G0000\nExecutive,The Sholl Group,Y4000\nTHE HALLERAN COMPANY,,Y4000\nMANAGING GENERAL,VENROCK ASSOCIATES,F2500\nATTORNEY,\"HOGE, FENTA, JONES & APPELL INC\",Y4000\nEXEC PRINCIPAL,SWS AMERICA,G2850\nAttorney,\"Teras& Wilde, LLC\",K1000\nTEACHER,GARDEN GROVE UNIFIED,L1300\nVP - SALES & MARKETING,LOCHINVAR,M2300\nATTORNEY,SILVERBERG STONEHILL,K1000\nTeacher,The Megan Furth Academy,Y4000\nVice President/COO,\"Quincy Newspapers, Inc\",Z9500\nVP Marketing,Abbott Labs,H4300\nChief Executive Offi,Advantage Human Resourcing,Y4000\nLIFE INSURANCE SALES,CLARY EXECUTIVE BENEFITS LLC,F3300\nLEGAL SECRETARY,LEONARD STREET/LEGAL SECRETARY,Y4000\nPrinciple,Step-by-Step,J1200\nAVP TXS,AHPC CORPORATE,H4300\nRANCHMAN,SELF,A3000\nHEALTHCARE PURCHASING/MATERIALS MGR,CALDWELL MEMORIAL HOSPITAL,Z9500\nPROFESSIONAL HISTORY,PRINCETON UNIVERSITY,H5100\nA D MARBLE,,G5200\nPROJECT MANAGER,COLSA CORP.,D4000\nPROFESSOR,INSTITUTE FOR SYSTEMS BIOLOGY,J6200\nMATHMETICIAN,US GOV,X3000\nOPI PRODUCTS INC,,M3300\nCHEZ NORA,,Y4000\nSTEEL DISTRIBUTOR,FREEWAY METALS,Y4000\nFARMER,SELF,M1000\nBLUE OX DISTRIBUTORS,,Y4000\nPhysician,Suny Downstate and Kings County Hospit,Y4000\nATTORNEY,\"GORDON AND DONOR, P.A.\",K1000\nSenior Vice President,Kellogg,Y4000\nCHARLEYS CONCRETE COMPANY,,B2000\nVICE-PRESIDENT,PRO LUMBER INC.,B5200\nContractor,\"SUNDQUIST HOLDINGS, INC.\",J1100\nMANAGER; SERVICE E,GE POWER SYSTEMS,M2300\nRN,CENTRAL BAPTIST,Y4000\nDealership Employee,Greenway Motors,T2300\nPRINCIPAL,PINNACLE INSURANCE PARTNERS,F3100\nJUNIPER DEVELOPMENT,,Y4000\nARCHER COACH CORP,,Y4000\nPRESIDENT,THE I.D. GROUP/PRESIDENT,F4100\nPrivate Equity,Eckford Group,Y4000\nUNITED COUNTIES BANCORPORATION,,F1100\nPROGRAM DIRECTOR,ITAA - INF. TECH ASSOC OF AMER,Y4000\nEngineer,\"Churchill, P.C.\",Y4000\nLANGE SALES INC,,Y4000\nGLENCORE LTD.,,Y4000\nBusiness Systems Analyst,Advanced Micro Devices Inc,C5110\nProject Management,Raytheon Company,D3000\nFOUNDER,PAPPAJOHN ENTERPRISES,F2500\nPublic Participant,None,J1200\nINFORMATION TECHNOLOGY,WEYERHAEUGER,A5000\nSenior Managing Director,Blackstone Real Estate Advisors,F4000\nPresident,\"Easter Assoc., Inc.\",Y4000\nAFG,,F3000\nINVESTMENT MANA,VENNISON ASSOCIATES,Y4000\nManager,Flexicon Corp,Y4000\nrestaurateur,Origin India,G2900\nPHY,UNIVERSITY OF MISSOURI-COLUMBIA,H5100\nPRESIDENT,CREEKWOOD PROPERTY CORP,F4000\nMINISTER,DC BAPTIST CONVENTION,X7000\nTRADER,VINMAR,Y4000\nHedge Fund Manager,Kawa Capital Management,F2100\nAMERICAN CHARTER FEDERAL,,F1200\nMathematician,Center For Communica,Y4000\nINVESTOR,VLM INVESTMENTS,F5000\nCNO,DOCTORS HOSPITAL-DALLAS,H2100\nGIBBS & HILL,,Y4000\nSocial Worker,Lamp Community,Y4000\nPhotographer/Pathologist,Self/UTMB,Y4000\nreal estate analyst,\"ACF Property Management, INC\",Z9500\nMORTGAGE BANKER,AMEGY MORTGAGE,F4600\nRestaurateur,Bella Notte Ristorante,G2900\nNurse,Self-Employed,JH100\nCONTRACT,MCGEE WALPOLE CONSOLIDATED,B1500\nDIRECTOR OF PUBLIC AFFAIRS,VAIL RESORTS,T9300\nOW,ROBERT GARIANO ASSOCIATES L.L.C.,Y4000\nOwner,New Seoul BBQ Buffet,G2900\nDiagnostic Radiologi,Radiology Consultants of WA,H1130\nMUSEUM EDUCATOR,SELF EMPLOYED,G0000\nSales,Fresenius Medical Caro NA,H3200\nMANAGER,WIND ASSOCIATES INC.,Y4000\nInformation Requested,University of Virginia,J7400\ngeneral contractor,Billy Cotter Construction,B1500\nREAL ESTATE DEVELOPER,RL WORTH & ASSOCIATES,F4000\nACCOUNTANT,OPPENHEIMER,F2100\nATTORNEY,AVANSINO MELARKY KNOBEL & MULL,Y4000\nExecutive,Penneco Oil Co.,E1100\nRETIRED,N/A,H2100\nPartner,Continental Realty Corp,F4200\n\"LORD DAY & LORD, BARRETT\",,K1000\nSVP INFORMATION,DEAN FOODS COMPANY,A2000\nINVESTOR,W.E. COOPER INVESTMENTS,Y4000\nPHILANTHROPIST,NOT EMPLOYED/PHILANTHROPIST,X4110\nPHYSICIAN,DEPARTMENT OF DEFENSE,X5000\nKOKFER PIEROTTI MAIOCCO DUCK,,Y4000\nFOUNDER/ PRINCIPAL,HAYNES & COMPANY CONSULTING,G5200\nPRESIDENT/TV PRODUCER/WRITER,,C2300\nTEACHER - PHYSICIAN,EAST CAROLINA UNIVERSITY,H5100\nDUNHILL MANAGEMENT,,Y4000\nUsitc,,Y4000\nIVEY ASSOCIATES,,Y4000\nBROKER/RANCHER,TALON ASSET MANAGEMENT,F0000\nFRIEND OF PLANET AND,SELF,G0000\nFINANCER,MSSB,Y4000\nOwner,Fair Cooling & Heating,B3400\nAPPRAISER,IDAHO LAND & APPRAISAL,F4700\nGOVERNMENT RELATIONS,\"CLARK, LYTLE & GEDULDIG\",K2000\nSCHNECK ELECTRIC,,Y4000\nRN Consultant,Safe Engineering,B4400\nCEO,\"CHR, Inc\",Y4000\nAttorney,Ivy Tech Community College,H5100\nATTORNEY,YOUNG & HAMPTON,Y4000\nPhysician,Associated Emergeny Physicians,Y4000\nCONSULTANT,SELF-EMPLOYED DBA SERENDIPITY CONSULTI,G5200\nPresident,Magnolia Marketing Company,G2850\nEX,COLUMBIA TRISTAR MARKETING GROUP,Y4000\nERWIN DIST CO INC,,Y4000\nPRESIDENT &,TRILOGY HEALTH SERVICES,H2200\nEngineer,Donatelle,J1200\nMANAGING MEMBER,VINEYARD CAPITOL GROUP,G2820\nCEO,Harmony Center,Y4000\nHANCOCK AVIATION SERVICE,,Y4000\nARROW FASTENER CO INC,,M2300\nPRINCIPAL,NHB ADVISORS/PRINCIPAL,J7400\nAttorney,\"State of CT, Treasurer's Office\",X3000\nUniversity Professor,Pace University,H5100\nPACIFICA CORP,,Y4000\nEDUCATOR,TEAC,Y4000\nCEO,AMERICAN TRUCKING ASSOC/CEO,T3100\nCEO AND PRESIDENT,BORGHESE INC.,M3300\nManagement consultan,\"Daniel C. Wells, LLC\",Y4000\nREFINERY WORKER,CHEVRON,E1110\n\"Director, Legislative Advocacy\",American Podiatric Medical Association,H1130\nCANCER SCIENTIST,\"SAIC, NCI-FCRF\",D3000\nIH SERVICES INC,,Y4000\nSteel Worker,Ally Ludlem Tech,Y4000\nLAW OFFICES OF STEVEN R PEREIRA,,K1000\nCHAIRMAN,UNIVERSITY HOSPITALS,H2100\nCardiologist,Vazzana & Bogin Cardiology,H1130\nContractor,WDC Contractors,Y4000\nOwner,Olde Town LLC,Y4000\nEXECUTIVE DIRECTOR,SCENIC HUDSON,Y4000\nADVANTA CORPORATION,,G5220\nPresident /CEO,Clearbrook,Y4000\nOWNER,\"MYRL & ROY'S PAVING\",B3000\nPartner,Adv Computer & Networking,Y4000\nInv Advisor,Blume Capital Mgmt,F2100\nEXECUTIVE,LANIER UPSHAW INS,F3100\nEVANS & POSTHAUER,,Y4000\nTEACHER,JEWISH COMMUNITY CENTER,J7500\nSurgeon,Moenning & Moenning Md Pa,Y4000\nPrinciple,\"Brown and Company, Inc\",K2000\nChief Executive Offi,Fairfield Medical Center,H2100\nSALES MANAGER,\"SHENANDOAH'S PRIDE\",A2000\nPartner,Elevation Cellars,G2820\nPHYSICIAN,COMMONWEALTH LABORATORY CONSULTANTS,Y4000\nREAL ESTATE MAN & INVESTMENT,SELF,F4000\nV.P.,ALVARADO AND GERKEN,K2000\nPresident,Preventive Medicine Research Institute,H2000\nREAL ESTATE,MALLAS ESTATES,F4000\nExecutive Director,CA School Boards Association,J1200\n\"VICE PRESIDENT, OPERATIONS\",ENTERGY OPERATIONS,E1300\nPartner,\"Nordhaus, Haltom, Taylor, Taradash\",Y4000\nWILLARD & WILLIAMS INSURANCE AGENCY,,F3100\nFederal Strategy Advisor,AARP,J7400\nInsurance Investigator,Safeco Insurance Company,F3400\nDUAL EXCHANGE LAND COMPANY,,F4200\nProperty Manager,Elk Creek Hand Co Ll,Y4000\nPresident,KAI,Y4000\nENGINEER PROFESSOR,CENTRAL CT STATE UNIVERSITY,H5100\nMOVIE PRODUCER,ROBERT HALMI INC.,Y4000\nDR-Management Assistant,\"ELCO of Detroit, LLC\",T2500\nPHOENIX GIN CO,,A1100\nCEO,LENNAR HOMES,B2000\n3 HO FOUNDATION,,X4100\nBONDSMAN,,F1400\nREAL ESTATE AGENT,SELF EMPLOYED/REAL ESTATE AGENT,F4200\nATTORNEY,RICHARD G. ADAMS LLC,Y4000\nSTOCKBROKER,WYOMING FINANCIAL,F0000\nMATSON TECH,,Y4000\nNURSE,CHRISTIANA CARE HEALTH SYSTEM,H0000\nASSOCIATED CONTRACTORS,,Y4000\nSIOUX CITY CHAMBER OF COMMERCE,,G1100\nPresident & CEO,Big Lots,G4300\nDIRECTOR,ACCIDENT FUND,Y4000\nTOWN & COUNTRY DISTRIBUTORS,,Y4000\nCO-CHAIRMAN,REYES HOLDINGS L.L.C.,G2850\nManaging Director -,GE Commercial Finance,M2300\n\"SENIOR DIRECTOR, SALES\",BRIGHT HOUSE NETWORKS,C2200\n\"PATRIDGE, SNOW & HAHN\",,K1000\nPARTNER,EATON & VAN WINKLE,K1000\nPEROLTA COMM COLLEGE,,H5100\nSales & Marketing,eDiets.com,C5140\nPARTN,POMERANTE HANDEK BLOCK ET AL.,K1000\nPlastic Surgeon,Medical Centre of Santa Monica,H2100\nmanagement,\"11 Canterbury, LLC\",Y4000\nMECHANIC,SIKORSKY AEROSPACE MAINTENANCE,Y4000\nPsychotherapist,Retired,J7400\nPRESIDE,TAMKO ASPHALT PRODUCTS INC.,B5400\nOPERA,\"DUTTON EQUIPMENT REPAIR, INC.\",G5600\nAQR CAPITAL MANAGEMENT/PARTNER/FUND,,F2700\nVP OF ENGINEERING,VELOCENT SYSTEMS,Y4000\nIN,HIGHLAND CAPITAL HOLDING COMPANY,F2100\nMCNEIL PATTERSON INSURANCE,,F3100\nDEUTSCH,,Y4000\nFander,Product Archiets Inc,Y4000\nLANCASTER ANESTH & ASSOC,,H1130\nOFFICE ADMINISTRATOR,TREVINO EYE CLINIC,Y4000\nWILBUR-ELLIS COMPANY,,A4000\nSR. V.P. H.R. & ORGANIZATIONAL ADVISO,THE TIMKEN COMPANY,M5000\nChief Operating Offi,\"John Carlo, Inc.\",B1000\nSALES,GOINDUSTRY DOVEBID,J2200\nWriter/Garden Designer,FLYER MAGAZINE,C1100\nPartner,Niro Scavone Haller & Niro,K1000\nSCOTT CHEVROLET INC,,T2300\nGM,FDC,Y4000\nINFORMATION TECHNOLO,SELF-EMPLOYED,C5100\nEXECUTIVE,GROUP NINE ASSOCIATES,Y4000\nProperty Management,NVN Leasing,Y4000\nLINOTYPE CO,,Y4000\nSENIOR VIC,FIDUCIARY MANAGEMENT INC,F5000\nATTORNEY,OSI GROUP LLC,Y4000\nCHAIRMAN,\"HIGHMARK, INC.\",Z9500\nPHARMACIST,FT WAYNE CUSTOM RX,J9000\nSENIOR POLICY ANALYST,OFFICE OF PERSONNEL MANAGEMENT,X3000\nBANKER,CITIZENS SECURITY/BANKER,J6200\nBUILDER,SEGAL & MOREL INC,B2000\nFRESNO PATHOLOGY MEDICAL GROUP INC,,H1130\nPresident,\"The New You, Inc.\",Y4000\nSOCIAL WORKE,WAYZATA PUBLIC SCHOOLS,X3500\nPRESIDENT & CEO,LUMBERMENS MERCHANDISING CORPORATION,B5000\nEXEC VP & CFO,\"WILLBROS GROUP, INC.\",B4000\nENGINEER,ALBERT A WEBB & ASSOCIATES,B4000\nRAA,,Y4000\nORTHOPEDIC SURGEON,COM,H1130\nLANCASTER CO SCHOOLS,,X3500\nSecretary,\"Pacella Trucking Express, Inc\",T3100\nHEAVY EQUIPMENT SALES,REYNOLDS-WARREN EQUIPMENT CO,Y4000\nPROPERTY MSNAGEMENT,SELF,F4500\nR VIJAY M D,,H1100\nGovernment,Microsoft Corp.,C5120\nPOWELL GOLDSTEIN FRAZER&M,,K1000\nCEO,\"INLAND REAL ESTATE GROUP, INC.\",F4100\nPodiatric Physician,Chemung Country Medical Society,H1130\nManaging Director,US Government Accountablity Office,X3000\nExecutive,Deltrol Controls,M2300\nREAL ESTATE AP,AREAS APPRAISES INC.,F4700\nPHARMACIST,,Y0000\nCPA,VIRCHOW KRAUSE & CO,Z9500\nPERSONAL TRAINER,ALLIANCE FITNES CENTER,Y4000\nBAKED GOODS MFG.,LAVI ENTERPRISES,Y4000\nOwner,\"Hampford Research, Inc.\",Y4000\nDermatologist,Atlanta Center For Dermatologic Diseas,H1130\nSTONE CREEK FAMILY PHYSICIANS,,H1100\nSVP ASMINISTRATION,EECU,J9000\nCar Dealer,Self,T2300\nOHIO DEMOCRATIC,,J1200\nNURSE,LAKESHORE BONE & JOINT INSTITUTE,Y4000\nUNIV OF NE MED CENTER,,E4200\nThe Chase Group,,G5210\nFUND RAISING COORDINATOR,,G5200\nCFO,DSC Logistics,Y4000\nRealtor,Venture Realty of North Florida Inc,F4200\nATTORNEY,\"THOMAS B WEAVER, PC\",Z9500\nSELF-EMPLOYED,,T1700\nCHAPTER STATE,,Y4000\nParalegal,Law Office of Russell Miller,K1000\nPROFESSOR,GEORGIA GWINNETT COLLEGE,H5100\nExecutive,Paradigm Properties,F4000\nOWNER,PLUG NICKEL INC,Y4000\nPUBLIC AF,\"THE ALLBAUGH COMPANY, LLC\",Y4000\nTAILGATERS CO,,Y4000\nEXECUTIVE DIRECTOR,JAPANESE AMERICAN CITIZENS LEAGUE/JACL,Z9500\nPhyican,Greenbrier Phyicans Inc,H1100\nLand Surve,Voorheis & Voorheis Inc.,Y4000\nHOVDE FINANCIAL INC,,F2300\nattorney,\"Katz, etc\",G5230\nSELF,REXGLENN INC,J1100\nEXECUTIVE V.P.,FENTON MANAGEMENT,Y4000\nAttorney,Fried Frank Harris Shriver Jacobson,K1000\nEXEC VP ADM,FOREST CITY ENTERPRISES,J5100\nMULLIS INS,,F3000\nCEO,Prinpac,Y4000\nSALES,MERIDIAN SYSTEMS,Y4000\nPresident/CEO,San Francisco Fire Credit Union,F1300\nBUSINESS,QORVIS COMMUNICATIONS LLC,G5210\nSales,\"Mohmann and Bownard, Inc.\",Y4000\nConsulting,Econometrica,Y4000\nEXEC. V.P.,OCCIDENTAL PETROLEUM,E1110\nHILLIARD BROS,EXECUTIVE,A3000\nVice President,Wackenhut,G7000\nCHUBB & SON INSURANCE CO,,F3400\nPHYSICIAN,JOHN A. HAUGEN ASSOCIATES,H1130\nCHAIRMAN & CEO,Advanced PCS,H4400\nMFS COMMUNICATIONS COMPANY,,C4000\nCEO,\"Response Scientific, Inc\",Y4000\nSWOC OTD,,Y4000\nINVESTING,NOVINGTON CAPITAL,Y4000\nSUTTER HEALTH CARE,,H2200\nEmergency Physician,Fairfield Medical Center,H1100\nTransit Planner,Wmata,T4000\nFILM MAKER,,F2700\nEXECUTIVE,DOUGLAS E. BARNHART INC.,C5130\nFIRST WORTHING,,F4200\nPRES.,UNDEWOOD SAFEBUILT INC.,Y4000\n\"WOMEN'S CLINIC SHOALS\",,H1100\nPACIFIC PUBLIC,,G5210\nGWINN & ROBY,,J1100\nSoftware Engineer,Not employed,J1200\nBusiness Owner,Scanstat Technologies,Y4000\nICAHN & COMPANY,,F2100\nTV STATION INVESTMENT,CLOCKTOWERLLC,J1100\nROCKEFELLER FAMILY,,F7000\nVICE PR,BARRY EVANS JOSEPH & SNIPES,Y4000\nLAMB-WESTON INC,,G2100\nself,COOK REUF & ASSOC,Y4000\nFINKLESTEIN BRUCHMANN,,Y4000\nCHIEF EX,HUB CITY INDUSTRIES L.L.C.,E1150\nRestaurant Owner,Kentucky Fried Chicken,Y4000\nPRESIDENT,AFTER SCHOOL PROGRAMS INC.,X3500\nMONROE SHERMAN ET AL,,K1000\nEDUCATION ALTERNATIVES,,Y4000\nF,PETER MIRIJANIAN PUBLIC RELATIONS,K2000\nPresident & Chief Investment Officer,\"Daruma Asset Management, Inc\",Y4000\nFUNDRAI,INTERNATIONAL BACCALAUREATE,Y4000\nBALLARD & ASSOC,,Y4000\nINVESTOR,MBF HEALTHCARE,F2600\nChief Admin. Officer,JP Morgan Chase,F1100\nExecutive,Mercy Subarban Hospital,H2100\nSAP BUSINESS CONSULTANT,ALL IN ONE CONSULTING INC.,Y4000\nPresident,Jayce Ent. Inc.,Y4000\nCHOC CHOC BUILD IT MART,,Y4000\nUrologist,\"Wayne B. Glazier, M.D., P.C.\",H1130\nOWNE,ALLIED PAVING CONTRACTORS INC.,B3000\nExecutive Coach and Career Counselor,self,G0000\nEXECUTIVE DIRECTOR,SUSMAN GODFREY,K1000\nSOFTWARE ENGINEER,GROCKIT,Y4000\nT.V. Producer/Educat,Self-Employed,C2300\nATTORNEY,\"DOW, LOHNES & ALBERTSON\",K2000\nBANKER,COMMERCE UNION BANK,F1000\nExecutive Director,\"Alaska Cabaret, Hotel, Restaur\",T9100\nPHYSICIAN,VICANA BROUGHT,Y4000\nPublisher,Newsmax Media,C1100\nInsurance Sales,self,F3100\nSALES,SELF-EMPLOYED,H1000\nAttorney,\"Wood, Odom & Edge, PA\",K1000\nContract Officer,Portland State University,H5100\nMEDICAL INFORMATION TECHNOLOGIES IN,,H0000\nBUSINESS PARTNER,MAE RESOURCES/BUSINESS PARTNER,E1120\nPresident,Yes Marketing,Y4000\nEXECUTIVE,ELDORADO HOLDINGS,F4000\nEngineer,Mayfield Engineering,J1200\nSenior Policy Advisor,Akin Gump Strauss Hauer,K2000\nHEAD OF US PRODUCT AND MARKET RESEARCH,INVESCO,F2100\nPresident,Kerr Distributing Company,Y4000\nECONOMIC DEVELOPMENT CONSULTANT,SUSAN BARNES CONSULTING,Y4000\nProf,WA,Y4000\nMedical Director,Blount Memorial Hospital,H2100\nAM MARTINSVILLE,LADD,M4100\nCHIEF EXECUT,CENTRAL MERIDIAN CORP.,Y4000\nBUSINESS OWNER,TAUBER OIL COMPANY,E1120\nAGENT,CENTENNIAL INS AGENCY INC,A4000\nMCDONALD CORP,,G2900\nATTORNEY,\"RIGGS, ABNEY, NEAL, TURPEN,\",K1000\nDUBIN & SWIECA HOLDINGS,,F2200\nOWNER,CREATIVE PROCESS,Y4000\nATTORNEY,ANGEL REYES & ASSOCIATES,Y4000\nVENTURE CAPITAL,THE RODA GROUP,F2500\nCFO,BNE REAL ESTATE,F4000\nLEWIS HYMAN INC,,M4000\nCOMMUNICATIONS SPECIALIST,INTERNATIONAL BROTHERHOOD OF ELECTRICA,LC150\nLAND S,FARMER AND SIMPSON ENGINEERS,A1000\nEnrolled Agent/Tax A,Bill Kitchens Income Tax Serv,Y4000\nLABER REP,ST LOUIS LABOR COUNCIL,Y4000\nInterior Decorator,Pam Kelley & Assocs.,Y4000\nB&H PHOTO & VIDEO,,Y4000\nProducer,NTC,Y4000\nHOME HEALTH CARE OWNER,SELF-EMPLOYED,Y4000\nTEACHER,SMYTH COUNTY SCHOOL BOARD,X3500\nHOSPITALITY/REAL ESTATE DVLPR.,\"LALANI LODGING, INC.\",Y4000\nLAB,SCHEPENS EYE RESEARCH INSTITUTE,H1120\nBUTTENWIESER &,,J1200\n\"HILB, ROGEL ET AL\",,F3100\nPhysician,NACS,J7400\nCHAIRMAN,VISTAGE FLORIDA - TAMPA,Y4000\nAttorney,LEE Cossell Kuehn & Love LLP,K1000\nCRNA,JOHNS HOPKINS UNIVERSITY,H1710\nAccountant,\"Ferrer and Poirot, PC\",F5100\nADMINISTRATION,SELF-EMPLOYED,J1110\nCHIEF,ILLINOIS HOSPITAL ASSOCIATION,H2100\nTHE LAW OFFICES OF JAY F. MALCYNSKY,,K1000\nBUSINESS OWNER,STORM GROUP,Y4000\nGENERAL MANAGER,MULTIPLE SYSTEMS,Y4000\nVICE PRESIDENT ATLAN,RAIL LINK INC.,T5100\nROBERT P MADISON CO,,Y4000\nMARSHALL RD MEDICAL CLINIC,,H1100\nSoc Worker,Self-Employed,J7400\nLAN SPECIALIST,STATE OF CONNECTICUT,X3000\ngas station owner,self,E1170\nTHE BEACON,,Y4000\nCFO,MEDISTAR CORP.,F4100\nCAPE COUNTY PRIVATE AMBULANCE,,H3000\nOwner,\"Home Medical Care, Inc\",Y4000\nPHYSICIAN,ALLIANCE ENT INC,H1130\nATTORNEY,KOLLAR GENERAL COUNSEL,Y4000\nOWNER,KIRK MILLER,Y4000\nPHYSICIAN,A&PC,H1130\nFARMER/ PRESIDENT,PUE BEAUTY FARMS INC.,Y4000\nARCHITECT,\"SUSAN WOODWARD NOTKINS ARCHITECTS, PC\",B4200\nCEO,ATLANTIC AMERICAN,Y4000\nSALES,SOUTHWEST CENTURY,Y4000\nInsurance Agent,ADN Risk Services,Y4000\nOWNER,SAGE VALLEY,Y4000\nFINANCIAL PLANNER,\"ABACUS WEALTH PARTNERS, LLC\",J1200\nINVESTIGATOR - PARALEGAL,\"LYTAL, REITER, SMITH, IVY & FRONRATH\",Z9500\nREAL ESTATE DEVEL,LAIRD INVESTMENTS,F7000\nPhysician (Psychiatr,Self employed,G0000\nPRESIDENT,PA SHIP SUPPLY,Y4000\nPRINCIPAL,EMPIRE CONSULTING GROUP,J1200\nINSURANCE EXECUTIVE,NATIONWIDE INSURANCE,F3100\nWORK AT HOME,BEST EFFORT,Y4000\nFUND MANAGER,MANATUCK HILL,F2700\nM. D.,Self Employed,H1100\nBusiness Owner,AmTar Mineral,E1200\nPRESIDEN,SR PRODUCTION OF EL DORADO,Y4000\nALL-BRITE ELECTRIC,,Y4000\nCERTIFIED PUBLIC ACCOUNTING,,F1100\nBROOKFIELD FINANCIAL,,F2000\nMANN HEALTH SERVICES INC,,H0000\nATTORNEY,STOLTZE & UPDEGRAFF,Y4000\nENGINEER,TEI ROCK DRILLS,Y4000\nExec VP-QMR,Questar Exploration & Prod,E1140\nFilm/TV/Web Producer,\"Digital Innovations Group, Inc\",J1200\nCONSULTANT,FOUNDOS GROUP/CONSULTANT,Y4000\nCOMMUNICATIONS DIRECTOR,U.S. CONGRESS,X3000\nPILOT,PRO-AIR ENTERPRISES INC.,Y4000\nMARINE OFFICER,RETIRED,X1200\nMEDICAL TECHNOLOGIST (LAB),BLANCHARD VALLEY HOSPITAL,H2100\nMCS INDUSTRIES INC,,Y4000\nPresident,The Chin Co.,Y4000\nSHOW PROMOTOR,SELF-EMPLOYED,G0000\nTAX ADVISOR,ERMA & YOUNG L. L. P.,Y4000\nDEMOCRACY PROGRAM DIRECTOR,BRENNAN CENTER FOR JUSTICE,Z9500\nATTORNEY,\"WILLIAMS AND JENSE, PC\",J7500\nPROFESSOR,UNIV MICH,Z9500\nLANGAN,,Y4000\nConsultant,Beaconsfield Advisors LLC,J1200\nREAL ESTATE EXEC.,FOREST CITY ENTERPRISES/REAL ESTATE,F4100\nCEO,JFK MEDICAL CENTER,H2100\nBANKER,B.N.Y. MORTGAGE,F4600\nOMAR AGENCY SYSTEM INC,,Y4000\nARBITRATOR,LAW PROFESSOR,H5170\nGORMAN - RUPP COMPANY,,B5300\nPartner,Prince Household LLC,J1100\nATTORNEY,\"THE LIMITED, COLUMBUS, OHIO\",Y4000\nRETIRED,NA/RETIRED,J7400\nHEALTH ADMINISTRATION,JORDAN VALLEY,Y4000\nLaw Professor,The Catholic University of America,H5100\nPresident,John A Logan College,H5100\nGALLAND KHARASCHETAL,,Y4000\nPRESIDENT,MIDWAY BROADCASTING CORP.,C2100\nROSSI COX ET AL,,Y4000\nFederal Affairs,\"SBC Telecommunications, Inc.\",C4100\nGFI MORTGAGE BANKERS,,F4600\nMIKE DELAHAYE & ASSOCIATES,,Y4000\nPhysician,University Health Systems East,H2100\nATTORNEY,RICHARDS LAYTON & FINGER,K1100\nREAL ESTATE DEVEL,GEORGE ELKINS CO.,F4000\nDIRECTOR OF STRATEGIC PLANNING,UTILITY WORKERS UNION OF AMERICA,LE200\nPresident and CEO,Paragon Biomedical,Y4000\nExecutive Director,Illinois Association of Aggregate Prod,B5100\nNATIVIDAD AND ASSOCIATES,,J7400\nInformation Requeste,\"Valuerich, INc.\",Y4000\nBIOTECH EXECUTIVE,SIALIX,Y4000\nRICHAND C BALOUGH,,Y4000\nBALESTRA CAPITAL,,F2100\nHADEN INC,,Y4000\nCEO,VISION COMMUNITY MANAGEMENT,Y4000\nCOLONNA SHIPYARD,,D5000\nVICE PRESIDENT,LOAD TECHNOLOGY INC.,Y4000\nCEO,THE RING GROUP,F4100\nVP GLOBAL OPS,CAREER BUILDER,Y4000\nGIS ANALYST,SELF,J1200\nTravel Insurance Executive,Retired,X1200\nVICE-PRESIDENT,FLINT TRADING,B1000\nOwner,Griffard Insurance Agency,F3100\nBYRD AND COMPANY LLC,,Y4000\nSenior Producer,Thomas & Associates,Y4000\nAttorney,Indiana State AFL-CIO,Y4000\nIDION FILMS,,C2400\nCLANIEL ENTERPRISES,,Y4000\nCeo,Del Mar Partners,JE300\nVice President,\"Golden Valley Electric Association., I\",E1610\nREAL ESTATE,\"FLORIDA WOODLAND GROUP, INC.\",F4000\nPRESIDENT,BEST PETROLEUM CO,E1170\nJudge,City of Youngstown,X3000\n\"Vice President, Business Analysis\",INVISTA S A R L,E1160\nPresident,Northwestern Lumber Association,B5000\nOwner,Jackie Brand Jr./css Drywall I,Y4000\nCONSULTANT,THE BRATTLE GROUP INC.,Z9500\n\"Owner Rn,Bsn,Ms, Legalnurse Consultan\",G & B Resourses,Y4000\nArchitectural Draftsmen,JGA Inc,Y4000\nDAIMLER CHRYSLER,,C4100\nOwner,F & F Packaging,Y4000\nFRESENIUS MEDICAL CARE NORTH AMERIC,,H3000\nPhysician,K.C. Heart Group,Y4000\nFINANCIAL ADVISOR,CSG ADVISORS,Y4000\nPHARMACIST,NEW REDHOOK CORP.,Y4000\nCOTCHETT & ILLSTOA,,K1000\nCHILKOOT CHARLIES,,Y4000\nOwner,Iacoboni Site Specialists,Y4000\nPRESIDENT & CH,SIMON PROPERTY GROUP,F4100\nEXECUTIVE,U.S.P.I.,Y4000\nOWNER,DC RESTORATION,Y4000\nCrowell & Moring Llp,,K1000\nCOO,HARRAHS ENTERTAINMENT,G6500\nATTORNEY,\"KAREN JOHNSON, PA\",Y4000\nCRNA,Dr William Kaye,H1710\nReal Estate Developer,Rime Company,J5100\nTHE HAZELTON GROUP INC,,Y4000\nATTORNEY,HUNTON GREY,K1000\nAssoc VP Div Mgr Survey,Atkins N America Holdings Corporation,B4000\nATTORNEY,VAN ETTEN SUZUMOTO & SIPPRELLE LLP,K1000\nRECD,USDA,X3000\nPHYSICIAN,LAKE SHORE MEDICAL,Y4000\nCEO,KNOVEL,Z9500\nDENTIST,NORTH COUNTY DENTAL LAB INC.,Y4000\nCORPORATE TAX CONSUL,\"SKINNER TAX CONSULTING, INC.\",F5300\nCONSTRUCTION,HAINES & KIBBLEHOUSE,Y4000\nDON PRATT CONSTRUCTION,,B2000\nPRESIDENT,CTS SERVICES,B0500\nEXECUTIVE,GROUP HEALTH,J1200\nConsultant,LINK,J1200\nHATCHER DESIGN,,J7400\nAttorney,The Palmer & Dodge,K1000\nResearch Staff Member,Institute for Defense Analyses,Z9500\nELECTED COUNCIL,\"WICOMICO COUNTY, MD\",X3000\n\"Gov't Relat Rep\",\"Griffin, Johnson, Dover & Stewart\",K2000\nRn,Kaisor Permanente,H2000\nDRIVER,OMEGA TRUCKING COMPANY,J7500\nTV & WEB PRODUCER,DIGITAL INNOVATIONS GROUP,X4100\nBERWALD INVESTMENT CO,,Y4000\nBusinessman,FORD MOTOR COMPANY,T2100\nKAUFMAN FOUNDATION,,Y4000\nATTORNEY,SEROTA WEISS,Y4000\nC.E.,NORTH AMERICAN HEALTH CARE INC,H0000\nRECRUITING PARTNER,GOOGLE VENTURES,Y4000\nCONTRACTOR/ATTORNEY,ACE GLASS,M7200\nVice President,Pragmatics,C5130\nVICE P,HNTB ARCHITECTS ENGINEERS PC,B4000\nEXECUT,VOYAGER EXPANDED LEARNING LP,C1100\nACOOUNT,HOME IMPROVEMENT PROCESSING,Y4000\nHR DIRECTOR,\"FIDDLER, GONZALEZ & RODRIGUEZ PSC\",K1000\nPRIVATE INVESTING,,Y0000\nSELF/VIDEO PRODUCER/WRITER,,Y4000\nBURNS & TAYLOR L L C,,Y4000\nRVP,WHITE LODGING,T9100\nprofessor,Nova Southeastern University,H5100\nOWNE,NICHOLAS PETSCHEK ARCHITECTURE,B4200\nVETERI,CAMILE VET. CLINIC A.P.V.M.C,Y4000\nCORP. EXEC.,ACW MANAGEMENT CORP.,Y4000\nProfessor/Psychologist,Yale University,H1110\nPRES,EQUITY NOW,F2100\nDENNEY ELECTRIC CO INC,,B3200\nInformation Requeste,Spirit of Christ Church Miami River LL,X7000\nNon-Profit Executive,The Aspen Institute,X4000\nPresident,\"Trinity Door Systems, Inc\",B3000\nRANCHER,WILLIAM BRANDT RANCH,Y4000\nDOCTOR,SURGICAL GROUP OF JC,Y4000\nAssistant Dean for I,Chicago-Kent College of Law,H5170\nCommunications,Baylor University,H5100\nCFO,B D Systems,F5100\nPHYSICIAN,CARSON HEALTH,Y4000\nPART-TIME TEACHER,NEW ENGLAND SCHOOL OF ENGLISH,Z9500\nSWISHER & LOHSE PHARMACY/OWNER/MANA,,H1750\nCEO,The Puckett Group,Y4000\nSELF-EMPLOYED/R. E. BROKER/ CATTLE,,F4200\nPRESIDENT & CEO,BANK OF RHODE ISLAND,Y4000\nCONSULTANT,U.H.Y. ADVISORS,F5100\nEXECUTIVE,LINSALATA CAPITAL MANAGEMENT,Y4000\nCEO,\"OCTARIAN ADVISORS, LP\",Y4000\nPOLLY & MACARTHUR,,Y4000\nAdministrative Assistant,New York Presbyterian Hosptal,H2100\nOCCUPATIONAL THERAPIST,BRISTOL COMMUNITY COLLEGE,H1700\nINVESTOR,T. ROWE PRICE,F2100\nBARBICH ASSOCIATES,,Y4000\nEXECUTIVE,STARZ/LIBERTY MEDIA,C2200\nCEO,PRODUCTSTEWARDSHIP.US,Y4000\nPURCHASING MANAGER,\"PECKHAM INDUSTRIES, INC.\",B5000\nBBJI,,Y4000\nStock Building Manager,Stock Building Suppy,Y4000\nMID-STATES FINANCIAL CORPORATION,,F1100\nMEDICAL TRANSPORTATION SVCS.,,Y4000\nAttorney,\"Werman Law Office, PC\",K1000\nINSURANCE AGENT,S & S AG. INSURANCE,F3100\nDENTAL SALES,\"RIBBOND, INC.\",Z9500\nTEAMSTERS,,J1200\nPRESIDENT,POSEY SUPPLY CO INC,B2400\nPresident,Spring City Electrical Mfg. Corp.,B3200\nSOMERSET CAPITAL,,F0000\nCITY OF HOUSTON,,J7400\nT & G EXCAVATING,,B3600\nGEORGE SUTTON,JONES WALDO,K1000\nBookeeper,Watson Pharmacy,G4900\nAD AGENCY EXEC,,G5210\nOwner,\"Quinney Electric Company, Inc\",B3200\nNY APPLE TOURS,,T9400\nProfessor,UNIVERSITY OF TENNESSEE,H1700\nATTORNEY,\"NELSON, MULLINS RILEY\",K1000\nForeman,National Fuel Gas,E1140\nCEO,\"CACTUS HOLDINGS, INC.\",Y4000\nRECRUITING,SELF EMPLOYED,Y4000\nBUSINESS MANAGER,SOMERSET HILLS R.T.C.,H5100\nSVP,Fannie Mae,F4600\nASHLEY HANNULA & HALOM,,Y4000\nRn,Med Center,H2000\nCLINICAL RESEARCH CONSULTANT,PROUNLIMITED/CLINICAL RESEARCH CONS,Y4000\nROSCOE MOSS CO,,E5000\nFRANCHI,D. M. I. INTERNATIONAL INC.,Y4000\nRETIRED,CHARLES SCHWAB,F2100\nLEHNDORF MANAGEMENT USA,,F4000\nFinance Manager,Lincoln Financial Group,F0000\nManager,Eagle Consulting LLC,Y4000\nVP/General Manager,Midwest Homes Inc,B2000\nCONSULTANT,SSG ADVISORS LLC,Z9500\nVICE PRES.,VAN SCOYOC ASSOCIATES,K2000\nConsultant,BCP International,Y4000\nADMIN,WABASH COLLEGE,Z9500\nOWNER,\"BARSON'S DELI\",Y4000\nExecutive Director,Bolsa Chica Land Trust,Y4000\nPOLICY/LAWYER,STATE OF WASHINGTON,X3000\n[information requested],Autoliv,Y4000\nCHIEF OF SUSTAINABILITY,CITY OF CLEVELAND/CHIEF OF SUSTAINA,X3000\nMANAGING DIRECTOR,AMSTED RAIL INTERNATIONAL,M2300\nEntrepreneur,T P G Ventures,Y4000\nTrial and Jury Consultant,\"Schlesinger Associates, inc\",Y4000\nVICE PRESIDEN,PROFESSIONAL PRINTERS,C1300\nMusic,Sonybmg,C2600\nCLERGY,CHRIST LUTHERAN CHURCH,X7000\nRIGHTWAY FOOD STORE,,Y4000\nCEO,\"CHRISTIE STRATEGIES, LLC\",G5260\nDC,TFCC,Z9500\nBroadway Presenter,Florida Theatrical Association,JE300\nMANAGER,BALANCED BODY INC.,Y4000\nOWNER,ROBERT FISCHER & CO.  INC,Y4000\nMANAGER,COMMERCE & INDUSTRY INC.,Y4000\nAttorney,Mccarter & English llp,Z9500\nBANKER,\"TALMER BANK., INC.\",F1100\nAT,VERNER LIIPFERT. BERNHARD MCPHER,K2000\nSR. VP,\"AMYLIN PHARMACEUTICALS, INC.\",H4300\nLOBBYIST,KHEDER & ASSOCIATES INC/LOBBYIST,Y4000\nGROCERY MANUFACTURERS OF AMERICA IN,,G0000\nMARKETING/SALES,SKULLCANDY INC.,C5000\nEngineer,Meade Emerge,E1000\nUniversity of Michigan,Professor,Z9500\nGENERAL PARTNER,\"SLS CAPITAL MANAGEMENT, LLC\",Z9500\nExecutive,Raven Transport Company,Y4000\nRELIABLE CREDIT ASSN.,,Y4000\nPHYSICIAN,OUR LADY OF LOURDES,H1100\nENGINEER,OASIS SEMI CONDUCTOR,C5110\nADMINISTRATOR,TRINITY HOSPITAL,H2100\nNORTHERN CALIF COLL SERVICE INC,,Y4000\nBusiness Owner,Far Out Music,Y4000\nBIOTECH EXECUTIVE,\"ALEXION PHARMACEUTICALS, INC.\",J1200\nFLORIDA SCHOOL BOOK DEPOSITORY,,X3500\nBUSINESS,MT. HOOD BEVERAGE COMPANY,G2850\nAttorney/Consultant,Damas And Associates,Y4000\nLANEY & DUKE TERMINAL WARE,,Y4000\nPresident and Chief,\"St. Mary's Healthcare Center\",H2100\nOWNE,MARK  PIERCE  CHIROPRATIC  CLI,H1500\nCEO,YAHOO!,C5140\nExec VP/CAO,Adventist HealthCare,H2100\nLAWYER,FIELDS LAW GROUP,K1000\nINVESTMENT BANKER,INFO REQUESTED,F2300\nPhysician,Quantium Radiology,H1130\n1061-ERNST & YOUNG,,F5100\nGENERAL PARTNER,AL III PARTNERS,Y4000\nAttorney,Camabell Foley,K1000\nFood Processor,Self-employed,G2100\nDENTIST,MILFORD DENTAL GROUP INC.,Y4000\nCHIE,HUNTSVILLE COCA-COLA BTLG. CO.,G2600\nR&W EXCAVATING,,B3600\nPRESIDENT,BARSHOP VENTURES LLC,Y4000\n\"RALPH'S ON THE PARK\",,Y4000\nOwner,General Recreation,Y4000\nMGR MILL/PLT MED,WEYERHAEUSER NR COMPANY,A5000\n\"MANAGER, ADVOCACY DEVELOPMENT\",NATIONAL RESTAURANT ASSOCIATION,G2900\nConfernce Director,Self employed,Y4000\nCOMPANY DIR,EDGAR & WOOD LTD.,J1200\nBOOKSELLER,THE BOOK STALL,Y4000\nCHAIRMAN,SOUTHWEST STRATEGIES,Y4000\nCITIZENS SAVINGS FINANCIAL CORPORAT,,F1100\nOrganic Farmer,Zranch LLC,A3000\nProject Manager,American Family Insurance,F3100\nVICE PR,INDIANAPOLIS MOTOR SPEEDWAY,G6500\nRAFFAELI SPEES SPRINGER ET AL,,K2100\nVP Sales,Power Service Products,Y4000\nPresident & Chief Ex,Nash Health Care Systems,H2100\nSENIOR DIRECTOR,INOVA FAIRFAX HOSPITAL,H2100\nFINANCIAL SPECIALIST,MERRIL LYNCH,F2100\nGRAND CASINOS GULFPORT,,G6500\nCAA,AGENT,Y3000\nDIREC,\"PEDIATRIX MEDICAL GROUP, S.P.\",H1000\nUNCG GREENSBORO,,H5100\nFELNER ENTERPRISES,,Y4000\nATTORNEY,\"LENABURG, FITZNER, NELSON AND HOOPER,\",Y4000\nPIANO TEACHER,SELF EMPLOYED,F4100\nvice president,Cornerstone Government Affairs,K2000\nCHAIRMAN & CEO,TRIANGLE TECH GROUP,J1100\nAttorney,\"Levin, Sheer, Pfeffer\",K1000\nWEISMAN & ROSEN,,K1000\nretired,n/a,H4500\nOWNER,TROPICANA RESORT HOTEL,T9100\nINSURANCE BROKER,WILLIS,H2200\nADMINISTRATIVE ASSISTANT,THE CHALLENGE PRINTING,C1300\nControler,Cadillac-bud Davis,T2300\nCEO,GIFTS Software Inc.,J1200\nConsultant,Moulter Associates,Y4000\nPhysician,\"Faye Ameredes,DO, PC\",Y4000\nENGINEER,BELCAN CORPORATION,J6200\nDefense Intelligence Agency,,X5000\nManager,Pro Sound,Y4000\nFINANCIAL EDUCATION,AAA FAIR CREDIT FOUNDATION,F4200\nPhysician,\"Pediatric Surgical Group, LLC\",H1130\nHALE + ASSOCIATES,,H1100\nMARKETING DIRECTOR,NEMHC,Y4000\nINFORMATION SYS,LF GARLINGHOUSE INC,Y4000\nEXECUTIVE,CENY CORPORATION,B1000\nPINNELL INC,,Y4000\nLOBBYI,CONGRESSIONAL STRATEGIES LLC,K2000\nTRUCK DRVR,TRUCK DRIVER,T3100\nFruit Grower,WC Walker & Son,Y4000\nMANAGEMENT EXECUTIV,MGM GRAND HOTEL,G6500\nMAWN & ASSOCIATES INC,,Y4000\nNONPROFIT EXECUTIVE,NEW JERSEY COMMUNITY CAPITAL,Y4000\nBUSINESS,\"THE HENDRIKUS GROUP, INC.\",B3600\nSecretary-Treasurer,LOCAL LODGE 778,LM100\nTeacher,Ogemaw School Distrct,J1200\nATTORNEY,WANDERER & WANDERER,K1000\nATTORNEY,ROBES & GRAY LLP,Y4000\nCHINA PALACE,,G2900\nCONSULTANT,SELF EMPLOYED,G5240\nVice President of Public Affairs,Blue Cross & Blue Shields,F3200\nResearch Scientist in Psychometrics,Self employed,X0000\nSales,N. C. H. Corporation,M1000\nOWNER,MTH ELECTRIC TRAINS,Y4000\nORTHOPAEDIC SURGEON,MOORE CLINIC,Y4000\nSpecial Education Facilitator,East Moline School District #37,X3500\nOwner,Eaton Ashpalt,Y4000\nUNITED INTERNATIONAL AMALGAMATED,,Y4000\nMANAGEMENT,PT&C INC.,Y4000\nAttorney,Akin Gump & Strauss,K1000\nOWNER,RESTAURANT SERVICE L.L.C.,G2900\nBUSINESS OWNER,BLUFF SPRINGS PAPER COMPANY/BUSINES,A5200\nHI - LINE INDUSTRIES INC,,Y4000\nSAVAGE AND SCHWARTZMAN PA,,K1000\nHOMEMAKER,SELF,F5000\nPresident,Council of Federal Home Loan Banks,F4600\nPRESIDENT,STARMOUNT LIFE INSURANCE/PRESIDENT,J5100\nDOCTOR,WOMANS MEDICAL,H0000\nBLAEMIRE COMMUNICATIONS INC,,Y4000\nDIRECTOR OF GOVT RELATIONS,JONES WALKER LAW FIRM,K2000\nPROFESS,ENERGY CONCEPTS ENGINEERING,B4400\nOWNER,FORNOFF FERTILIZER,Y4000\nInformation Requeste,An Liancheng Inc,F3000\nPublic Health/Communications Consultan,Self employed,Y4000\nAttorney,\"Muth & Shapiro, PC\",K1000\nLOAN OFFICER,HAMILTON NATIONAL MORTGAGE COMPANY,F4600\nTreasurer,Frank Brunckhorst Deli Services Co LLC,G2300\nCIVIL EN,PINELLAS COUNTY GOVERNMENT,X3000\nFINISH MASTER,,Y4000\nSELF/WRITER/ARTS MANAGEMENT,,J1200\nExecutive,Kansaas City Southern,T5100\nATTORNEY,TEXAS UNITED CORPORATION,Y4000\nPARTNER,\"THE CARRERA AGENCY, INC.\",Y4000\nHAYMARKET CENTER,,Y4000\nPresbyterian Ministe,PC(USA),Y4000\nCONSULTANT,ENGAGE STRATEGIES,JE300\nEXECUTIVE VP,AGRIBANK FCB,A4000\nLEHIGH U.,PROFESSOR,J7400\nGARDEN STATE LIMOSINE SERVICE,,T4200\nGEOPHYSICIS,SELF-SUNBELT GEOPHYSICS,Y4000\nVICE PRESIDENT,THE NOBLE FOUNDATION,X4100\nPRESIDENT,\"FIRST STATE BK-KS, KS\",F1100\nPartner,Stono Construction Group LLP,B1500\nMAGOFFIN CO,,Y4000\nTRADER,PALMYRA CAPITAL ADVISORS,F2100\nOWNER,INFO REQUESTED,M4100\nSenior Partner,\"Kazan, Mcclain et al\",K1000\nInformation Requested,American Institute of Architects,B4200\nOwner,\"George W. Mephis, Hypnotherapist\",Y4000\nAttorney,Davies & Lemmis Law Corp,K1000\nPROFESSOR,ST. GEORGE UNIVERSITY,H5100\nTENNESSEE ADHESIVES CO,,M1700\nCO-HEAD OF MUN,SALOMON SMITH BARNEY,F1100\nSENIOR VP STRA,KOCH INDUSTRIES INC.,E1160\nFH INC,,Y4000\nVOLUNTEER AT FREE CLINIC,FAMILY NURSE PRACTITIONER,J7400\nATTORNEY,JASPAN SCHLESINGER & HOFFMAN,Y4000\nAttorney Spealized B,Petterson Young Puten/ Seattle Booking,K1000\nBUSINESSMAN,PRUET OIL,E1160\nLawyer,\"Collins & Moore, PLLC\",K1000\nService,House of Heat,Y4000\nOwner,Phelps Sungas Inc,E1190\nVice President,Univision Corp.,J5200\nphysician,\"Gaston Radiology, PA\",J1100\nEXECUTIVE,KYPHON,Y4000\nPartner,Enhanced Capital Partners,F2000\nMARKETING,ORLANS ASSOCIATES,K1000\nARCHITECT,\"GBBN ARCHITECTS, INC.\",B4200\nRisk Analyst,Ebay,C5140\nStaff,Americans For A Palestinian State,J5000\nPHOTOGRAPH,KEVIN SCHAFER PHOTOGRAPH,G5240\nSales,Ultima Inc,Y4000\nRETIRED,NOT EMPLOYED,X0000\nClothes Designer,Self,G0000\nE,TRANSPORTATION INTERNATIONAL POOL,T3100\nTECHNICIAN,AT-TECH,Y4000\nSURGEON,NORTH JERSEY SURGICAL SPEC.,H1100\nHOMES BY MARILYN,,Y4000\nREAL ESTATE,MAC HAIK ENTERPRISES,F7000\nHPS ENTERPRISES/CEO/PRESIDENT,,Y4000\nTeacher,Fredericksburg City Schools,X3500\nCFO,\"CONCORD CONSORTIUM, INC.\",Y4000\nManager Of Public Works,\"CITY OF DENVER, COLORADO\",X3000\nBAGEL CRAFT OF HEMPSTE,,Y4000\nconsultant,self,H4500\nInstructor,Neumann Association,Y4000\nCOPORATE OFFIC,GERARD T. COURY INC.,Y4000\nOWNER,ADVANCED MICRO SOLUTIONS INC.,J1100\nBRIAN HICKEY & ASSOC,,Y4000\nAUDIOLOGY & HEARING INSTRUMENTS,,H1700\nSt Denis J Villere & Co/investm,N/a/homemaker,Y1000\nSCIENTIST,TUFTS UNIVERSITY,H5100\nGroup Benefits Strat,Health Insurance Consultant,F3200\nCORPORAT VICE PRESID,\"ALLERGAN, INC.\",H4300\nTHE SCOULAR COMPANY,,A4300\nInvestment Executive,\"Equinox Capital, Inc.\",G1200\nU S SENATOR,,\nowner,Balas Farming Co.,A1600\nDRAFTER,CADD GRAPHICS,J1100\nPRESIDENT,TYLER MOUNTAIN WATER COMPANY/PRESID,E5000\nfamily physician,Mt Carmel Health,Z9500\nWEALTH ADVISORY,MERRILL LYNCH,F2100\nDOCTOR,WESTLAKE ORHTOPEDICS,Y4000\nMRA CONSULTING,,Y4000\nPROSTHETIST,ALABAMA ARTIFICIAL LIMB,H4100\nBusiness Manager,Good Samaritan Community Healthcare,H0000\nPROGRAMMER,PIVOTAL LABS,Y4000\nHEAVY EQUIP OP & OWNER,SELF EMPLOYED,Y4000\nDVP R&D/SCI AFFAIR,ABBOTT LABORATORIES,H4300\nSKANDIA AMERICA REINSURANCE CORP,,F3100\n\"SAM FISHMAN, INC\",,Y4000\n\"DIRECTOR, WORKFORCE PLANNING\",KAISER PERMANENTE,Z9500\nSCOTT & WHITE MEMORIAL HOSPITAL DEP,,H1130\nPRESIDENT,C & M ENTERPRISES,Y4000\nTEACHER,SB SCHOOL DST.,X3500\nCHIEF FINANCIAL OFFICER,GATES MCVEY,F4100\nCOUNTY BOARD OF EDUCATION,,X3500\nATTORNEY,MURDOCK & PALAZZO,K1000\n\"VICE PRESIDENT, PRODUCT MARKETING & BU\",\"ARRIS, INC.\",C2200\nConsultant/Attorney,Alixpartners LLP,G5200\n\"FAIDLEY'S SEAFOOD\",,G2350\nSOCIAL WORKE,CHICAGO PUBLIC SCHOOLS,X3500\n\"Vice President, Huma\",RGA Reinsurance,F3300\nATTORNEY,PRIVACY PRESEVE INC.,F2000\nPhysician,GW MFA,Y4000\nCEO,SANDSTROM COMPANY,Y4000\nAttorney,Friedman Kaplan Seiler & Adelman LLP,K1000\nIMC FERTILIZER GROUP,,Y4000\nATTORNEY,FIBBE LIGHTNER LLP,Y4000\nCommunications,Golinharris,G5210\nPRESIDENT,VISION SECURITY TECHNOLOGIES,Y4000\nSTATE REPRESENTATIVE,STATE OF VERMONT/STATE REPRESENTATI,X3000\nRUAN INFORMATION SER,RUAN TRANS. MGMT SYSTEMS,T3100\nLEGAL ASSISTANT,CURTIS GOODWIN,K1000\nChurch Executive,retired,X1200\nMontgomery County Pu,Teacher,X3500\nRetired,Atm,X1200\nAttorney,Cotton Bledsoe Tighe & Dawson,K1000\nEXECUTIVE,P.Q. CORPORATION,M1000\nREAL ESTATE DEVELOPER,\"SR CAPITAL, LLC\",F4000\nSMITH FASTENER CO,,Y4000\nSMALL BUSINESS OWNER,FLASHLIGHT ENGINEERING AND CONSULTING,Z9500\nPUBLISHER,\"DAHLSTROM & COMPANY, INC.\",C1100\nNYS N,\"R.J. BRAS' PAPERWORK SERVICES\",Y4000\nCEO,Univeral Lubricants,M1000\nSales & Distribution,Self employed,G0000\nSALESMAN,ENERFAB,M5000\nIOWA RETINA,,H1120\nINSURANCE AGEN,ROSE AND KIERNAN INC,F3100\nATTORNEY,HENSON & FUERST,K1000\nAFFILIATED COMPUTER SYSTEMS,,C5100\nNURSE PRACTITIONER,UNH,H5100\nSTATE OF MASSACHUSETTES,,JE300\nGORDON-HELD,,Y4000\nPresident,Sowder Seed Co,Y4000\nNASH FINCH CO,,Y4000\nInformation Requeste,Deal Motor Cars,Y4000\nPOST & BUCKLEY,,B4000\nTEACHER,NEW YORK CITY DEPARTMENT OF EDUCATION,X3000\nWEST VIRGINIA STATE COLLEGE,,H5100\nFire Fighter/EMS,CARLSBAD,L1400\nSENATE SELECT COMM ON INTELLIGENCE,,X3000\nBUILDER,CONTEMPORARY BUILDERS,B2000\nSEGRANT CAPITAL,,Y4000\nCORPORATE FELLOW,INTEL,C5110\nRequest Pending,PBS Services Inc,B2000\nTeacher,Lewis And Clark,H5100\nSMILES REALTY INC. C-21,,F4200\nRD Sinah,First Tennessee Financial,F0000\nRUNNELLS ENTERPRISE,,A3000\nCRYSTAL SPRINGS QUARRY GOLF CLUB,,B1000\n\"CITY COLLEGE OF NEW YORK, CITY UNIV\",,Y4000\n\"SENIOR VICE PRESIDENT, INFO TECH\",\"HOSPIRA, INC\",H4300\nOWNER,RENFROE OUTDOOR BILLBOARDS,G5230\nAttorney,Meyer & Wyse LLP,J1200\nCHEVRON OIL CO,,E1110\nSOURCE INTERLINK COMPANIES,,Y4000\nCalculations Clerk II,\"New York State, Binghamt\",Y4000\nNIGO CONSTRUCTION,,B1500\nHARRIS,GOLIN,K2000\nPsychiatry,Yale University,H5100\n\"FREEDOM TECHNOLOGIES, INC\",,Y4000\n\"VERNER, LIIPFERT, BERNARD ET AL\",,K2100\nEXEC. VP,\"NORTHEAST DAIRY FOOD, INC.\",A2000\nPresident,Bologna Coal Co.,E1210\nOWNER,ADVENTURE OUTDOORS,Y4000\nSELF REAL ESTATE,,F4000\nTRITON MANAGEMENT INC,,Y4000\nREGENCO,,Y4000\nDirector,Several companies,J8000\nFAYETTE COUNTY BOARD OF EDUCATION,,X3500\nManaging Partner/President,Self-Employed,G0000\nBUSINESS,IPEG INC./BUSINESS,Y4000\nDirector of Corporat,HERBALIFE,H4600\nPARTNER,WATER TOWER SQUARE,F4100\nM.D.,UNIVERSITY OF TENNESSEE,H5100\nPRESIDENT,AKT DEVELOPMENT CORP.,F4100\nVP SALES,BAKER CONCRETE,B5100\nMARTIN W DIES,,Y4000\nREAL ESTATE,CANALE REAL ESTATE,F4200\nPHYSICI,COASTAL CAROLINA EYE CENTER,H1120\n\"Business Consultant, Business Owner\",GR Stockwell & Associates Inc,Z9500\nATTORNEY,\"GOODELL, DEVRIES, LEECH & DANN, LLP\",Y4000\nPRESIDENT,ALLERGY BUYERS CLUBCOM,Y4000\nCOMMUNITY FIRST BANKSHARES INC,,F1100\nDEVELOPER,WESTCOR PTRS.,Y4000\nDRIVER,MCLANE WESTERN,Y4000\nBARBACK,CLUB 313,J1100\nPHARMLINE INC,,G4600\nCOE,Council for Opportunity in Educati,Y4000\nTELEVISION PRODUCTION,\"HARPO PRODUCTIONS, INC\",C2400\nME,D.O.C. N.D.A.A. NATIONAL WEATHER,Y4000\nPresident,Harley E Harmon Insurance Agen,F3100\nATTORNEY,HAYTHE & CURLEY,K1000\nGIVAN & SPAINHOUR,,K1000\nEntrepeneur,Guixens Food Group Inc.,G2000\nCEO,OK GRAIN & FEED ASSN,Y4000\nVP OF OPERATIONS,CESARO LLC,Y4000\nmover,cbmoves,Y4000\nRN,Prohealth Care,H0000\nLegislative Asst,Perf,J1200\nOffice Clerk,Self-Employed,G0000\nPartner,Harren Interests,Y4000\nVENTURE CAPITALIST,OAK MANAGEMENT,Z9500\nDIRECTOR OF SALES & MARKETING,WILLAMETTE VALLEY CO,M1600\nRN,Pediatric Health Choice,H1130\nGEMMELL,BRYANT,Y4000\nMCGARR CAPITAL MGMT,,F2100\nChief Executive Offi,Stanislaus Surgical Hospital,H2100\nLieutenant,\"Harris County Sheriff's Office\",Y4000\nConstruction,FJW Company Inc.,Y4000\nATTOR,\"HAIGHT, BROWN & BORESTRE, LLP\",K1000\nPRESIDENT,ERNA YALFE FOUNDATION,Y4000\n\"DEUTSCH, KERRIGAN & STILES\",,Y4000\nCommanding Officer,LAPD,X3200\nBILLING SPECIALIST,SALEM PSYCHIATRIC ASSOCIATES,J1200\nGALLERY DIRECTOR,ARTIST,Y4000\n\"ABE'S ELECTRONICS\",,Y4000\nDirector,Dittus Communications,K2000\nATTORNEY,FEDERAL GOVT,Z9500\nHEAD TRAFFIC CONTROL,UMC,Y4000\nSMALL BUS,NORSEMAN PRODUCTIONS INC.,Y4000\nPRESIDENT,VAN-WAL MACHINE INC.,Y4000\nTUCKER ROCKY DIST,,T2200\nBLOUNT INDUSTRIES,,B1000\nPresident/Engineer,Green Energy Mgt,E1000\nSELF,SELF,H4100\nSALES,JACMAR FOOD SERVICE DISTRIBUTION,Y4000\nSr. Vice President,APCO Worldwide,G5210\nVICE-PRESIDEN,DUBERSTEIN GROUP INC.,K2000\nACCOUNTANT,\"DAVID POWELL, INC\",Y4000\nHOME BUILDER,DIXIE SHELL HOMES,B2000\nPRESIDENT,\"THERMAL COMBUSTION INNOVATORS, INC.\",Y4000\nCTIA,,C4300\nPRESIDENT,HRPA INC.,Y4000\nORGA INC,,M1500\nMANUF HOUSING FOR REGULATORY REFORM,,G0000\nHOUSEMAN,SELF EMPLOYED,G0000\nAttorney,Bird Manella,K1000\nManaging Member,\"Steelhead Partners, LLC\",F2600\nCONSTRUCTION,RANDELS SAND & GRAVEL,B5100\nHead of Public and Information Service,Alabama A & M University,H5100\nC.O.O.,DEL DITTO VINEYARDS,G2820\nSPENCER SAVINGS BANK,,F1200\nPEDIATRIC ASSOC OF SO IND,,H1130\nMEDIA STRATEGIST,SELF - MITCHELL,Y4000\nTech,Pace Telecommunications,Y4000\nBusinessman,Kent County Motor Sales,T2300\nAMERICAN THERMOPHILIC CORP,,Y4000\nPLANNING,NORTHRUP-GRUMMAN,D5000\nPRESIDENT,\"WESTPORT ROADWAY SERVICES, INC.\",Y4000\n\"RFS HOTEL INVESTORS, INC\",,T9100\nRETIRED,U. CALIFORNIA DAVIS,J1200\nPRESIDENT,STROTMAN INTERNATIONAL,Y4000\nGATLENBURG MOTEL CO,,T9100\nVice President HR,Bausch & Lomb,M9100\nDICKSTEIN SHAPIRO,,K2000\nATTORNEY,LAW OFFICES OF JAMES J STONE,Z9500\nMUTUAL SERIES FUND,,F2100\nCOLLEGE PROFESSOR,BELLEVUE UNIVERSITY,Y4000\nOwner/Manager,Kims Pharmacy,H1750\nSALES,EXPEDITORS INTERNATIONAL,T7000\nFIRE FIGHTER / EMS,BOSTON FIRE DEPT.,L1400\nMANUFACTURING,SCHMITZ READY MIX INC,B5100\nMEDICAL SALES,CAMTRONICS,Y4000\nVP Strategy,Ode Magazine,C1100\nII GALETO RESTAURANT,,G2900\nCreative Director,Bayard Advertisement,G5210\n\"OLSON PRECAST OF ARIZONA, INC.\",,Y4000\nMORGAN DENNEY & RATHER,,Y4000\nFALCON PRODUCTS INDUSTRIES,,M4000\nVICE CHAIRMAN,FRANKLIN MINT,G4600\nTMA RESOURCES,,X1200\nNutritionist,Self-Employed,J1100\nExecutive,\"MacDermid, Inc.\",Y4000\nGovt. Relations,Cerestar USA Inc./,Y4000\nPhysician,United Anesthesia Se,H1130\nHUMAN RESOURCES VICE PRESIDENT,I.B.M,C5100\nPublishing,Pioneer Communications,Y4000\nGREAT LAKES CAPITAL CORP,,Y4000\nAttorney,Nyhan Pfister Bambrick Kinzie & Lowry,K1000\nConsultant,Wildwood Corporation,Y4000\nsales-trader,Miller Tabak,Z9500\nREAL ESTATE DEVELOPER,\"BUCCINI/POLLIN GROUP, INC.\",Y4000\nCEO,CUMBERLAND GULF GROUP,Y4000\naggriculture,Self employed,A0000\nDATABASE CONSULTANT,SELF,Z9500\nFHLB OF TOPEKA,,Y4000\nOwner,Louise Benes Dance Co.,Y4000\nIndep Film Video,Self employed,C2400\nExecutive,Area Detector Systems Corp,Y4000\nCEO,Wilhagen Ventures,Y4000\nHOMAX INC,,M3400\nPresident,Security Bank of the Ozarks,F1100\nARKANSAS BLUE CROSS BLUE SHIEL,,F3200\nReal Estate,The Flance Company,F4200\nSTATE OF SC,,F3100\nATTORNEY AT LAW,PORTER & MALOUF,K1000\nProduce Broker,Cascade Trading Inc,Y4000\nPHYSICIAN,SELF-EMPLOYED/RETIRED,X1200\nPRESIDENT,PHANSTIEL ENTERPRISES LLC,G5270\nPHILA,THE SHERRY LANSING FOUNDATION,Y4000\nWINN PARISH,,X3000\nChairman &  C E O,Corinthian College,H5200\nOWNER,THE OLES GROUP/OWNER,Y4000\nEXEC- SELF EMPLOYED,BFI WASTE SYSTEMS,E3000\nATTORNEY,TITCHELL MALTZMAN ET. AL,K1000\nSALES,STAPLE,J7300\nCIVIL ENGINEER,VRH CONSTRUCTION CORP,B1500\nNATIONAL PROFESSIONAL RESOURCE FUND,,Y4000\nPresident,Greenville Drug Store Inc.,G4900\nCEO,QUALITY KING DISTRIBUTORS,G3500\nVP,AMERICAN ENGINEERING & MANUFAC,B4400\nSENIOR VICE PRESIDENT I,VIACOM INC.,C2000\nNETSCAPE,,C5120\nLYON & ASSOCIATES,,F4200\nNONE,N/A/NONE,J5100\nPublisher,Double Way,J1200\nPresident-Delta Division,\"HCA, Inc\",H2100\nChairman,MD Building Products,Y4000\nChairman,Hug Enterprises,F2100\nPresident/Owner,National Business Furniture,G5220\nLONG ISLAND PULMONARY MEDICAL ASSOC,,H1130\nJ AND J INVESTMENTS,,Y4000\nSALESMAN,GUARDIAN LIFE INS. CO.,F3300\nDEVELOPER,FRANK MERCEDE AND SONS,F4000\nCEO,WB 56,Y4000\nGAS COMPANY,,E1100\nAccounting,G E,M2300\nNONE,,A5000\nAlternat Operator,Bay Cnty Road Comm,Y4000\nATTORNEY,BEUTINILI GIANACOPLOS,Y4000\nAttorney/Mom,Self employed,K1000\nEMERGEN,COMMUNITY MEDICAL CENTER ED,H1100\nCHAIRMAN A,AVILES ENGINEERING CORP.,B4000\nATTORNEY,SALAMAN/FINK LAW OFFICES,Y4000\nEDGEWOOD CENTER,,H2200\nPERMANENT GENERAL ASSURANCE,,F3100\nJ E MCAMIS INC,,Y4000\nART DIRECTOR,RUDOLPH DESIGN LLC.,Y4000\nDIAGNOSTIC RADIOLOGIST,\"RAM, P.C.\",H1130\nCOMPUTER PROGRAMMER,HEALTH CARE SERVICE CORPORATION,J7300\nCYPRUS POPULAR BANK,,Y4000\nOwner,Lenz Enterprises,Y4000\nPRESIDENT & CEO,FIRST STATE BANK,F1000\nPartner,Sofer Steiner & Assoc.,Y4000\nArchitect,\"Smallwood, Reynolds, et al\",B4200\nFORT WAYNE WIRE & DIE IN,,Y4000\nFILM EXECUTIV,IMAGINE ENTERTAINMENT,C2400\nComputer Consultant,\"Tropaion, Inc\",Y4000\nFEDERATE INVESTMENTS/ADVISOR/BUYER,,F2100\nDIRECTOR FIELD OPERATIONS,HERITAGE INSURANCE,Y4000\nEXECUTIVE DIRECTOR,KANSAS HEALTHCARE COLLABORATIVE,H2100\nGENERAL COUNCIL,MICRON,C5100\nConservation Planner,Dutchess Land Conservancy,Y4000\nattorney,\"Kirby, McInerny & Squire LLP\",K1000\nCredit Manager,Western NV Supply,Y4000\nGRESHAM PETROLEUM,,E1160\nROBERT N MOORE,,Y4000\n\"RONNY'S GARDEN WORLD\",,Y4000\nCEO,\"Amy's Kitchen Inc\",G2100\nPresident,Check into Checking,F1420\nHEALTH CARE GIVER,ST CLAIRES HOSP.,Y4000\nFINANCIAL SERVICES,CENTERVIEW PARTNERS,F2100\nREGISTE,MONTGOMERY COUNTY VT SCHOOL,H5100\nClinical Researcher,National Institutes of Health,X3000\nSELF EMPLOYED/HOMEMAKER/ WRITER,,C1100\nBiologist,Washington State,X3000\nPRESIDENT,OKOLANA DRUG COMPANY,Y4000\nOWNER/OPERATOR HORSE,SELF-EMPLOYED,G0000\nphysician,Northeast Orthopaedics,H1130\nPR - Government,Kentucky Dept. of Agriculture,X3000\nVICE-P,REPUB. ENV. ADVOCACY COUNCIL,J7400\nCOMPUTER,U.S. DEPARTMENT OF JUSTICE,X3200\nANESTHESIOLOGIST BIOETHICIST,SELF,Z9500\nInformation Requeste,Self-Employed,G0000\nConsultant,\"HSK Consulting, LLC\",Y4000\nENGLANDER CAPITAL,,F2200\nSr Fellow,CSIS,X4000\nAttorney,\"MCGUIRE, WOODS, BATTLE, BOOTHE\",K1000\nCHIEF EXECUTIVE OFFICER,SYNAPTEK,Y4000\nHOME MGR,,Y1000\nattorney,\"Vose Law Firm, LLP\",K1000\nProfessor Of Physics,California Institute Of Technology,Y1000\nPresident,Julander Energy Company,Y4000\nPRESIDENT,GINGLES DEPARTMENT STORES,G4300\nInvestments,Crystal Capital,F0000\nMANAGEMENT,CARLO INC/MANAGEMENT,Y4000\nCHIEF OPERATING OFFICER,\"TWO MEN AND A TRUCK INTERNATIONAL, INC\",G1000\nPRESIDENT,UKROPS SUPERMARKETS INC.,G2400\nPRESIDENT/CEO,BRYANT BANK,F1000\nNORMANDY PRODUCTS,,Y4000\n\"Spottswoode Winery, Inc.\",,G2820\nFINANCIAL CONSULTANT,JOHN HANCOCK,F3300\nRetired Attorney,Former Partner Simpson Thacher & Bartl,X1200\nFINANCE,LEVIN CAPITAL GROUP,F2100\nPRESIDENT,THE LYNMARK GROUP,B2000\nREAL ESTATE BROKER,\"STARK COMPANY, REALTORS/REAL ESTATE\",F4200\nSPECTER 96,,J1100\nDeveloper,Drake Management,Y4000\nTax Attorney,State Street Corporation,F2000\nPhysician,Nevada Retina Associates,Y4000\nAUTHOR SPEAKER,SELF-EMPLOYED,C1100\nSATURN REALTY OF NY/OWNER/BROKER,,F4200\nBANK PRESIDENT,FIRST STATE BANK OF ROSEMOUNT/BANK,F1000\nPRES.,INTEGRATED CROP MGT.,Y4000\nPHYSICIAN,HEALTH SOUTH,H2000\nMAIN CONSTR,,B1000\nAttorney,\"Womble, Carlyle, Sandridge & Rice, PLL\",K1000\nChief Executive Officer,Henry Ford Wyandotte Hospital,H2100\nExecutive Management,Doracon Development,F4100\nPEACHTREE CORNERS,,J1100\nP JACK MGMT GROUP,,Y4000\nOrganizer,American Federation of Teachers,L1300\nEMERSON HARDWOODS,,Y4000\nCHILDRENS NATIONAL M,INFORMATION REQUESTED,Y4000\nDOUD B T S INC,,F4100\nINFO,PROVIDENCE HEALTH & SERVICES SO. CA,K1000\nJAMES YIP MEDICAL CORPORATION,,H1100\nbiostatistician,MUSC,Y4000\nPERIODONTIST,PACIFIC DENTAL ASSOCIATES,J5100\nEXECUTIVE SEARCH AND CONSULTING,DIVERSIFIED SEARCH,Z9500\n\"ST JOHN'S PLACE DEV\",,Y4000\nFIRST NAT BANK GLIDDEN,,F1100\nEMPLOYEE,MR CARE AUTO,Y4000\nPRESIDENT,JKB MEDIA,Y4000\nMarital and Family Therapist,Self,Y4000\nSCANDIA AM BANK,,F1000\nEducator/Administrator,Private Prep School,Y4000\nSenior Fiduciary Officer,JP Morgan Chase,F1100\nGREEN DOLL & MCDONALD,,Y4000\nCPA,MICHAEL & COMPANY CPA,Y4000\nOWNER,KRAFT SENIORS HOME INC.,H2200\nMarketing,Ferro,Y4000\nGOVERNMENT RELATIONS,TARPLIN STRATEGIES LLC,K2000\nENDEAVOR RESTAURANT GROUP/CEO/CHAIR,,G2900\nLehr Middlebrooks & Vreeland,,K1000\nProfessor,Univ of Wash,J1200\n\"GLOBAL CHAIRMAN,\",BURSON-MARSTELLER,K2000\nC B M ENVIRONMENTAL,,Y4000\nCEO,ROCKY PATEL PREMIUM CIGARS,A1300\nSOFTWARE SALES,SELF ASSOCIATE,C5120\nProgrammer,At&t,C4100\nMARKETING,NORWEGIAN CRUISE LINE,T6250\nBUSINESS EXECUTIVE,\"PRIVA TECHNOLOGIES, INC.\",Y4000\nINSURANC,SCARBOROUGH AND ASSOCIATES,F3100\nSALES MANAGER,BOLAND TRANE,Y4000\nTeacher,Albert Einstien College Of Medicin,H5150\nFINANCE DIRECTOR,HEALTH INFORMATION CENTER,Z9500\nSALESMAN,NORMURA SECURITIES,F2100\nPRESIDENT & CEO,\"O'DONNELL & NACCARATO\",Y4000\nSELF-EMPLOYED,PROFESSIONAL FITNESS PERSONAL TRAINING,Y4000\nhousewife/mother,n/a,Y1000\nOWNER,\"MANNA FREIGHT SYSTEMS, INC.\",T3100\nCLERK\\BOOKKEEPER,\"TILTON'S WESTIDE INC\",Y4000\nCONANT AUTOMOTIVE RESOURC,PRESIDENT,T2000\nTechnology Group,Wm Wrigley Jr Company,G2100\nPRESIDENT,BILL PAGE HONDA,T2310\nReal Estate Broker,Keller Williams Cornerstone HW,F4200\nSales,\"Mr. Industrial Services, Inc.\",Y4000\nself-employed,far east import,Y4000\nCARPET MANUFACTURER,SELF-EMPLOYED,J5100\nAccountant,Congregation Etz Chayim,X7000\nMANUFACTURING MANAGER,MSG INC.,Y4000\nMILLENIUM APPAREL GROUP,,Y4000\n,BOLTON & COMPANY INSURANCE BROKERS,F3100\nDOCTOR,PHYSICIANS IN FAMILY PRACTICE INC,H1100\nINVESTMENT PR,CJM INVESTMENTS CORP.,F7000\nJB DEWAR INC,,Y4000\nPublisher & Chairman,Sage Publications,J7400\nAttourney,Self,K1000\nRHETT DAVIS & ASSOCIATES INC,,Y4000\nEmergency Physician,\"Scott A Coradi, DO\",H1100\nBROADWAY & CLOVERFIELD,,Y4000\nMAN,METROPOLITAN MEDIA PARTNERS LLC,Y4000\nFilm Producer,\"LNSZ Mgmt, LLC\",Y4000\nOWNER,BROADWAY PETROLEUM INC,Y4000\nPARKLAND S D,,L1300\n\"NASSIRI, INC.\",,G4100\nAURORA PROF PHARMACY,,J7400\n\"COSENTINO, WALKER, SHEWMAKER ET AL\",,Y4000\nINSURANCE MARKETER,DIVERSIFIED COMPASS,Y4000\nCHAIRMAN & CHIEF EXECUTIVE OFFICER,\"DOUGHERTY'S PHARMACY\",G4900\nChief Financial Offi,Vozeh Equipment Corp.,Y4000\nCOMMUNITY ACTIVIST,,C5140\nJOHN T LANE PSC,,Y4000\nNURSE,PERMANENTE MEDICAL GROUP,H1100\nREPUBLIC RANGER DIST,,Y4000\nGEO CONTROL SYSTEMS,,Y4000\nPhysician,La Vida Medical Group,J1200\nBENESCH FRIEDLANDER COPLAN & ARONOF,,J5100\nRealtor,none,F4200\nANALOG SOLUTIONS DIV MGR,,Y4000\nVP SALES,DIXON-MARQUETTE CEMENT CO.,B5100\nCirculation Libraria,Falmouth Memorial Library,X4200\nPROGRAM ANALYST,EPA,X3000\nController,\"Partnership for New York City, Inc.\",Y4000\nDYNAMIC BUILDERS,,B1000\nCONTROLLER,AEROSPACE DYNAMICS INTL.,D2000\n\"Vice President, Coun\",First American Title Company,F4300\nExecutive Vice President,Council for Aid to Education,Y4000\nRetired,dawson insurance agency,Y4000\nProfessor,Danville Area Community College,H5100\nAG CHEMICAL SA,LEFFINGWELL AG SALES,Y4000\nEngineer,\"Gei Consultants, Inc.\",Y4000\nEXECUTIVE,\"SERVICON SYSTEMS, INC.\",Y4000\nHOSPITALITY,SELF-EMPLOYED/HOSPITALITY,K1000\nBUSINESS OWN,CASWELL LATOCHA CO INC,Y4000\nOWNER,NEWS TRIBUNE CO.,C1100\nDoctor,Berrien County Hospital,H2100\nSTATE EMPLOYEE,STATE OF MONTANA,X3000\nEDUCATOR,JOHNSON & WALES UNIVERSITY,H5100\nSEFCO CORP,,Y4000\nJOHN KENYON EYE CENTER,,H1120\nCOMPUTER FORENSICS,K&F CONSULTING,Y4000\n\"Marketing, Advertising\",\"M Relevance, LLC\",B2000\nCONTROLLER,CONSTRUCTION PARTNERS,B1500\nENCO MATERIALS,,Y4000\nINVESTOR,,G2850\nEXECUTIVE DIRECTOR,COOPER & KIRK PLLC,K2000\nDentist,\"Egert, Riley, Deroo & Associates\",Y4000\nLAWYER,PAYNE MITCHELL LAW GROUP,K1000\n\"HALLMARK CARDS, INC./PRESIDENT/CEO\",,C1400\nFLEISCHLI OIL CO,,E1100\nIndependent Consultant,Self-Employed,J7400\nPACIFIC STOCK EXCHANGE,,J5100\nConsultant,JKW Consulting LLC,Y4000\nPARALEGAL,RODRIGUEZ + ASSOCIATES,Z9500\nDODSON LUMBER CO.,SELF EMPLOYED,B5200\nAttorney,Moyer & Bergman,K1000\nPRESIDENT,AMERISOURCE INDUSTRIAL SUPPLY,Y4000\nCEO,Nicholas & Lence Communications LLC,Y4000\nELLA HILL HULCH COMMUNITY CENTER,,Y4000\nUNION BANK OF MENA,,F1000\nphysician,\"Pathology,Inc, Torrance, ca\",H1130\nVP of Architecture,URS Corporation,B4000\nH J ROSS & ASSC,,Y4000\nPRINCIPAL,\"ICE MILLER WHITEBOARD, LLC\",K1000\nPRESIDENT & C.E.O.,WOMAN POWER INC.,Y4000\nFREE LANCE VIDEO EDIT,SELF-EMPLOYED,C2400\nOWNER,SIFT: 2 CUPCAKERY,Y4000\nOWNER,CAROLINA MUDCATS,Y4000\nOwner,Moon Made,J1200\nFLEET OPERATOR,TAXI CLUB MANAGEMENT,Y4000\nICCR,,Y4000\nEASTERN GENERAL CONTRACTORS,,B1000\nELECTRICAL CONTRACTOR,MONA ELECTRIC GROUP INC,B3200\nVICE PRESIDENT,WEST INSURANCE GROUP,J1200\nCOUNCILMAN,LEBANON TOWN COUNCIL,Y4000\nSenior Principal,Blank Rome Government Relations,K2000\nAssociation Executive,CTAM,Y4000\nDOCTOR,NATIONAL JEWISH MEDICAL,H2100\nPresident,\"Rock Industries, Inc.\",B5100\nTHETC,,J1200\nMedical Technologies,\"Children's Hospital Of Philadelphia\",H2100\nAUTO DEALER,LIMBAUGH TOYOTA,T2310\nBUD JOHNSON & ASSOCIATES INC./CEO/O,,Y4000\nVIDEO OPERATOR,EVIL SHENANIGANS,Y4000\nChairman,Barrow Chamber of Commerce,G1100\nBuyer,\"Bruce's Iron & Metal Inc\",M2400\nMOSBACHER ENERGY COMPANY/PRESIDENT/,,E1000\npresident,Capitol Hill Consulting Group,K2000\nCHAVEZ-GRIEVES CONSULT ENGRS INC,,B4000\nOWNER,L.D.C. PROPERTIES,F4000\nMECHANICAL ENGINEER,US TREASURY,X3000\nLOBBYIST,ROBERT LEVY & ASSOCIATES,J5200\nREAL ESTATE,ATR KATZ,J5100\nMOBACO TRANSPORTATION,,Y4000\nAttorney,Blund & Associates,Y4000\nInsurance Agent,Springdale Ins,F3100\nPLANT ENG MGR,UNITED PARCEL SERVICE INC.,T7100\nSURGEON/BARIATRIC,SAINT FRANCIS HOPSITAL,Y4000\nWENDEL DESIGN,,Y4000\nVICE CHAIR,FRANKLIN MINT,Y4000\nNEW BARNSTABLE CORPO,,C2100\nEXECUTIVE,MARIETTA DAILY JOURNAL,C1100\nFIRST FEDERAL SAVINGS/PRESIDENT/CEO,,F1200\nCEO,Residential Mortgage Corp,F4600\nCPA,\"Keith a Gardner, Cpa\",F5100\nPSYCHOTHEREPY,SELF-EMPLOYED,Y4000\nVENTURE CAPITAL,MISSION VENTURES,F2500\nG R NOTO INC,,Y4000\nREAL ESTA,\"MCCOY-WRIGHT REALTY, INC.\",F4200\nLARSEN SERVICE DRUG INC/OWNER/MANAG,,H1750\nCO PRESIDENT,\"WELSH, CARSON, ANDERSON & ST\",F2600\nPresident,The Webb Agency Inc,F3000\nRETIRED RECORDS INFO.,FM GLOBAL,F3100\nHOVDE FINANCIAL,,F2300\nDISPOSABLE INSTRUMENT CO./VP/CO-OWN,,Y4000\nINVESTMENT BANKER,BANK OF AMERICA/MERRILL LYNCH,F1100\nT S RAGSDALE CO,,A1300\nTECHNOLOGY EXECUT,MBNA AMERICA BANK,F1400\nOper. Eng.,None,X1200\nDATABASE A,UNIV. OF CENTRAL FLORIDA,H5100\nPresident,Taurus 3 C Services Industry,Y4000\nProgram Manager,Nys Comptroller Offi,Y4000\nICC ENERGY CORP,,E1140\nLOOP COLD STORAGE,,Y4000\nVice President,Sallie Mae Corp,F1410\nVP OPERATIONS,CENDANT CORPORATION,T9100\nSelf-Employed/In-Town Homes/Real Es,,B2000\nCONTRACTOR,BRIDGE CONSTRUCTION,B1500\nPhysician,RMMC,Y4000\nConsultant,Strategic Discovery,Y4000\nCEO,American Pest,G5700\nPRESIDENT,THOMARIOS CONSTRUCTION,JH100\nSTATE REPRESENTATIVE,OREGON LEGISLATIVE ASSEMBLY,X3000\nPartner,Barr Laboratories,H4300\nWriter,No,C1100\nCHIEF SCIENTIST,ES3,C5120\nPRESIDENT,STANLEY INVESTMENT & MANAGEMENT,F2100\nBuilding Systems Consulting,Lancaster Redevelopment Corporation,B2000\nPresident,Great Lakes Orthodontics Ltd.,H1400\nTransportation,Momentum Transportation,Y4000\nBroadcaster,KRSL KCAY,Y4000\nSALES,KECKLER ASSOCIATION INC,Y4000\nBookkeeper,Camp Saginaw,Y4000\nASST. VP,NY & ASSOC.,Y4000\nRETIRED TEACHER,,X3500\nRESIDENT ENERGY SPECIALIST,PIEDMONT NATURAL GAS CO,B2000\nCARE ONE,,H3000\n\"DRUMMOND, WOODS\",,Y4000\nATTORNEY,REGIONS FINANCIAL CORP,J5100\nexecutive,Comcast,C2200\nCORNUTS INC,,Y4000\nPHYSICIA,COLUMBIA IMAGING - RETIRED,X1200\nCOO,THE SCHNEIDER CORPORATION,B4000\nPHYSICIAN,\"CEREXA, INC.\",Y4000\nDepartment Chair- Physic,Suny Downstate Medical C,H2100\nCEO,\"Waddell & Reed, Inc.\",F2100\nPHYSICIAN,SARASOTA MEMORIAL E.R.,H1100\nPARTNER,NIGAGLIONI & FERRAIOULI,K1000\n\"BATEMAN, EICHLER, HILL, RICHARDS\",,F2100\nCEO AND OWNER,ALLEGIANCE HEALTH MANAGEMENT,Y4000\nAuto Dealer,McCafferty Auto Group,Y4000\nATTORNEY,SNOSHY LAW OFFICES,K1000\nVALLEY FARMER,,A0000\nPHYSICIAN,GIBSON AREA HOSPITAL,H2100\nretired,none (retired),X1200\nPresident,WPI,Y4000\nBROKER,JOHN BYRNE,Y4000\nSTOCK ENTERPRISES,,Y4000\nPRESIDENT,KARMAN DEVELOPMENT GROUP,Y4000\nRETAIL PACKAGE STORE,,G2840\nASSC. PRESIDENT,FLORIDA WILDLIFE FEDERATION,Y4000\nCONSULTING,LIVELY CONSULTING SERVICES,Y4000\nPlanner,Commonwealth of MA,X3000\nBILLINGSLEY COMPANY/ARCHITECT/DEVEL,,F4000\nKREGER CAPITAL MGMT,,Y4000\nLAWYER,TURNER BROADCASTING,C2000\nBYZ CATHOLIC M ARCH,,X7000\nceo,\"south mountain co, inc\",Y4000\nSoftware Designer,\"Guy Carpenter & Company, LLC\",F3100\nBUSINESS OWNER,AMFM INCORPORATED,G5270\nBusinessman-,S&R Tropic Juices,G2600\nOHIO VLY WHOLESALE DISTRIBUTOR MERC,,J7120\nEXECUT,\"MAYER, BROWN, ROWE & MAW LLP\",K1200\nE BOARD,SHEET METAL WOKERS LOCAL 55,LB100\nTHOMSON MOTOR CENTRE INC,,T2300\nAdministrator,Phil Health Manag. C,Y4000\nCEO,DJRD BROADCASTING,Y4000\nUs Army,Uncle Sam,X3000\nPresident,\"Weaver's Spas & Pool\",G1200\nHeart surgeon / Professor,Univ of Colo Health Sciences,H5150\nF C BUSINESS SYSTEMS,,C5130\nReal Estate Broker,Fernandina Bch Realty,F4200\nReal Estate,\"Groux Investments, LLC\",F4000\nDiagnostic Radiologi,Univ of Colorado Health Sci Ctr,H1130\nTHORACIC & CARDIOVASCULAR ASSOCIATE,,H1130\n\"DELAWARE HUDSON REALTY GROUP,\",,J1100\nSCHOENEMAN BROS. CO.,,B5200\nDRISCOLL STRAWBERRIES ASSOC,,A1400\nCBT SPECIALIST INSTRUCTOR,TECHWISE,Y4000\nOwner,United Controls,Y4000\nCONSUL,\"DAVIS GROUP CONSULTING, INC.\",G5210\nSURGEON,NORTH FULTON ENT ASSOC.,Y4000\nELECTRICAL CONTRACTOR,EXCEL ELECTRICAL TECHNOLOGIES INC.,Y4000\nCITYWIDE BUS,,Y4000\nATTORNEY,GUBB & BARSHAY,J2100\nREAL ESTATE,MANI BROTHERS,F4000\nVP,Covanta Energy Corp,E1630\nConsultant,Ben Barnes Group,J1200\nSR DIR UPCS,UNION PACIFIC RAILROAD,T5100\nMETYKO & ASSOCIATES,,Y4000\nMCGLINN CAPITAL MGT,,F2100\nFOUNDER AND CHAIRMAN,FAIRMOUNT MINERALS,B5100\nA,LAW OFFICES OF LEMBHARD G. HOWELL,K1000\nPresident,Roberts Communications and Marketing,Y4000\nPHYSICIAN,SAINTS MEMORIAL HOSPITAL,H2100\nCHIEF ENGINEER GT,MAERSK LINE LTD.,Y4000\nCOMMISSIONER,MINNESOTA DEPATMENT OF TRANSPORTATION,X3000\n\"FRISBEE, MOORE, STUFF, & OLSON\",,K1000\nPRESID,\"INSTITUTION FOOD HOUSE, INC.\",G2500\nOLYMPIA SCHOOL DIST,,H5100\nOwner,Maletis Beverage/Beer Wholesaler,G2850\nOil Company Exec,Anderson Oil Co,E1100\nCHAIRMAN,U.S. RISK INSURANCE GROUP,J1100\nATTORNEY,\"SALES, TILLMAN, WALLBAUM, CATLETT &\",K1000\nN/A/INVESTMENT ADVISOR-RETIRED,,J1100\nSVP Casting,Warner Brothers Television,C2300\nNORTHSIDE PHARMACY,,G4900\nSOFTWARE TESTER,JACKSON HEWITT INC.,F5300\nRICHARDSON CO BANK,,F1100\nManager,Poseidon Tours,Y4000\nDeputy Publisher,\"Random House, Inc\",C1100\nAttorney,Shapiro & Kreisman,K1000\nChair of Charitable Foundation,Information Requested,J7600\nReal Estate Agent,Premier Development LLC,F4100\nFERRELL DUNCAN,,H1100\nATTORNEY,\"DOUGAS BOWDOIN, P.A.\",Y4000\n\"MID-CONTINENT SAFETY, LLC\",,Y4000\nGRAND LO,\"INT'L ASSOC. OF MACHINISTS\",LM100\nSMALL BUSINESS OWNER,NEVADA WINE CELLARS,G2820\nCo-Chair,The Stephens Group LLC,F2300\nORAL SURGEON,ETOMS,Y4000\nOWNER,\"M. H. WEST & CO., INC.\",Y4000\nCOMMITTEE FOR ARTS AND HUMANITIES,,Y4000\nStats Marketing,Clc,G5000\nBUSINESS EXECUTIVE,PAREXEL,Y4000\nPhysician,Schaller Anderson,Y4000\nC. P. A.,Olsen & Associates L. L. C.,F5100\nattorney,Kvibideus & Brustein LLP,Y4000\nEXECUTIVE,NACCO INDUST,M2300\nCEO,WINDSOR PRODUCTION CORP.,Y4000\nManager,Mirant Corp.,E1600\nFIRST SECURITY GROUP/PRESIDENT/CEO,,Y4000\nAttorney,\"O'Malley Miles Nylen\",K1000\nNORTHSIDE RADIOLOGY,,H1130\nEXECUTIVE,\"LIPOF ADVERTISING, INC.\",G5210\nANDREWS & KURTIN,,K1000\nOWNER,JAYTV INC,Y4000\nDIRECTOR TECHNICAL SERVICES,ATI,Y4000\nSELF EMP,UNITED,F0000\nSELF-EMPLOYED,BRIDGEPORT,Y4000\nPR,NATIONAL HEALTH CARE ASSOCIATION,H0000\nENVIZION,,Y4000\nNEW YORK HOSPITAL MEDICAL CENTER OF,,H2100\nHEALTH CARE,S.Y. LIU M.D.P.A.,Y4000\nHOSPITAL FINANCE,ST. BERNARDS HEALTHCARE,Y4000\nDirector,PNC BANK,F1100\nSELF-EMPLOYED,JAMES ANDRADA,Y4000\nWITTHAUER ASSOC,,Y4000\nMedical Officer,US Public Hleath Service,J1200\nRN,KALEIDA HEALTH-VNA OF WNY,Z9500\nCINCINNATI GARDENS,,K1000\nProject Manager,Encore Corporation,Y4000\nHoward Hughes Medica,Univ. Professor,H5150\nCRIMINAL INVESTIGATO,DEPARTMENT OF JUSTICE,X3200\nSOFTWARE CONSULTANT,MSB ASSOCIATES,Y4000\nShip Agent,Biehl & Company L.P.,T6000\nGENERAL ELECTRIC COMPA,,M2300\nPRESIDENT,HEETER DIRECT,Y4000\nPublisher,Harpercollins,C1100\nDAVIS & SHAW FURNITURE & REALTY COS,,F4200\nMANAGER,John L Scott,F4000\nENGINEER,METROPOLITAN PIER & EXPO,LB100\nWATERLOO WORKS,,A4200\nBANKER,GLOBIS CAPITAL PARTNERS,F0000\nARTISTIC HOMES INC,,Y4000\nFIRE FIGHTER / EMS,COEUR D ALENE FIRE DEPT.,L1400\n11,Ernst & Young,F5100\nVALLEY CITY LINEN,,Y4000\nAdministrator,The Lifeboat Foundation,Y4000\nADMINISTRATOR,FRESNO STATE,H5100\nTRIVAK,,Y4000\nChiropractor,Kiley Chiropractic,H1500\nDYER ELLIS JOSEPH AND MILLS,,K2000\nLINDSEY INS AGENCY,,E1120\nCOATINGS DISTRIBUTOR,COATING SYSTEMS AND SUPPLY,Y4000\nSUBURBAN MED CENTER,,H2000\nPartner,Velasquez & Lausell,G5200\nLAWYE,ANDERSON BENNETT AND PARTNERS,Y4000\nInformation Requeste,Hellmuth Obata & Kassabaum Architects,B4200\nARCHITECT & LANDSCAPE ARCHITEC,SELF,B4200\nPAC WEST INTERMOUNTAIN,,Y4000\nCAPITOL ALLIANCE GROUP,,Y4000\nExecutive Management,Darden Restaurants,G2900\nFAYARD FREIGHT,,Y4000\nUNET INC,,B3200\nEducator,Emory Univ,H5100\nVICE PRESIDENT,NATHAN ADELSON HOSPICE,Z9500\nContractor,\"Slavco Construction, Inc\",B1500\nMANA,BOOSTER FAMILY PARTNERSHIP LLP,Y4000\nJACKSON PROPERTIES LTD,,Y4000\nPRESIDENT,HEALTHSPRING/PRESIDENT,H0000\nPRESIDENT,\"ABITA BREWING COMPANY, LLC\",G2810\nOWNER - PRESIDENT,HAR ADHESIVE TECHNOLOGIES,Z9500\nAttorney,\"Goldstein, Fishman, Bender & Romanoff\",K1000\n\"Consultant, Author\",Venture Works Inc,Y4000\nBROKER,HAFETZ & ASSOCIATES,F3200\nW T I,,E3000\nRADIO,RADIOLOGY CONSULTANTS OF IOWA,H1130\nPHYSICIAN,SOUTHERN CALIFORNIA PERMANENTE MEDICAL,H1100\nSEAVER FINISHING/PRESIDENT/OWNER,,Y4000\nInsurance Sales,Northeast Delta Dental,G2900\nBusinessman,Aurora Cabinet Co Inc,B2000\nHELICOS BIOSCIENCES CORP,,Y4000\nAT&T NETWORK WIRELESS,,C4300\nPresident and CEO,Gateway Financial,F3100\nPRESIDENT,BRYAN A LOWE & ASSOCIATES,Y4000\nDEPUTY CLERK,WAYNE COUNTY CLERK,X3000\nSales,Cse Corp,E1240\nHOLUALOA ARIZONA INC,,Y4000\nPRINCI,STRATEGIC ISSUES  MANAGEMENT,Y4000\nINSURANCE,ALLIED BUSINESS SERVICES,Y4000\nBALDINOS GIANT JERSEY SUBS INC,,Y4000\nphysician,S.E. Anesthesiologists Inc.,H1130\nPresident/CEO,Urban League of Eastern MA,Y4000\nPhysician,Zachary Orthopaedic Care Cente,H1130\nREAL ESTATE DEVELO,SWIRE PROPERTIES,J5100\nlawyer,Lozier Corp,B2000\nVICE PRESIDENT REGULATOR CASE MANAGEME,AMERICAN ELECTRIC POWER,E1600\nINVESTMENT MANAGER,JCK ASSOC.,Y4000\nCEO,LAMPREY BROTHERS,E1180\n\"TOYS \\\"\"R\\\"\" US\",,J7400\nPresident,Tracey Miller & Associates,Y4000\nRADIOLOGIC TECHNOLOGIST,,H1700\nCOMMISSIONER,LYCOMING COUNTY,X3000\nFOOD IMPORTER,APACHE PRODUCE IMPORTS,A1400\nPRESIDENT,FIRST INDUSTRIAL SUPPLY,Y4000\nCHAIRMAN,REPUBLIS PROPERTIES CORP.,F4000\nChief Nursing Office,Virtua Health,H2100\nNUCLEAR PHYSICIST,SELF-EMPLOYED,G0000\nTHE LUCELIN FOUNDATION,,J7400\nBARNETT PROPERTIES INC,,F4000\nreal estate investme,None,J1100\nOWNER,DAVEL INDUSTRIES INC.,Y4000\nAC TECHNICIAN,SELF-EMPLOYED,G0000\nCEO,BOSTON MUSEUM,X4200\nEDUCATOR,MARQUETTE UNIVERSITY,H5100\nPOLITICAL,GOOGLE,C5140\nINVESTMENT/PROPERTY MANAGER,SELF EMPLOYED,F7000\nARIZONA MAIL ORDER,,Y4000\nGrantwriter/Consulta,Self employed,J7400\nMANAGER,HUNTSMAN LLC,A4100\nATTORNEY,GN ENTERPRISE,Y4000\nAssociate in Educati,NYS Education Dept.,X3000\nPRESIDENT,ALPENA PCS,Y4000\nPRESIDENT,GOLDFILMS,C2400\nINTERNET STRATEG,AMERICAN SOLUTIONS,Y4000\nMANA,THE COMERSTONE INSURANCE GROUP,F3100\nKITTREDGE RESTAURANT SUPPLIES,,M2300\nDIRECTOR OF DEGVELOPMENT,THE SALVATION ARMY,X4100\nPresident,Diggit Excavating Company,B3600\nAttorney,\"Hogan & Hartson,Llp\",K1000\n\"LITMAN, LITMAN, HARRIS, BROWN ETC\",,K1000\nElectrical Contracto,Puget Sound Chapter NECA,B3200\nPHYSICIA,FEDERAL WAY MEDICAL CENTER,H1100\nConsultant,Momentum SI,Y4000\nAttorney,\"Roedel, Parsons, Koch, Balhoff & McCol\",K1000\nEXECUTIVE,MATANUSKA TELEPHONE ASSOC,C4000\nM.D.,EYE CONSULTANTS OF HUNTINGTON,J6200\nHEALTH ADMINISTRATOR,DUKE UNIVERSITY HEALTH SYSTEM,H3000\nUnknown,Pepelea Ins & Inv,Y4000\nPROJECT MANAGER,NYCEDC,Y4000\nManaging Member,Medical Physics Consultants,Y4000\nSHAREH,PEOPLES BANK & TRUST COMPANY,F1100\nArchitect,Seaton Wilson Architects,B4200\nSAFETY CLEAN,,Y4000\nInformation Requeste,west Central Motor Freight,T3100\nVP,OSBORNE COINAGE,M2300\nEMPLOYEE,BCBSAZ,F3200\nUS EPA,US EPA,X3000\nEXECUTIVE,SBC MANAGEMENT LLC,C4000\nROBINSON LEVER MONTGOMERY,,J1200\nLetter sent: 9/23/2008,Letter sent: 9/23/2008,Y2000\n\"MANNINO, WALSH & GRIFFITH PC\",,K1000\nPRESIDENT,THE AMERICAN WORKER PLANS,Y4000\nPUBLIC RELATIONS,KEKSI,Y4000\nJustice,State Of Texas,X3000\nPresident,\"Lyne Energy, LP\",E1000\nAttorney,Brigham McCutchen,Y4000\nowner,Lakota Bakery,G2100\nPASTOR,COVENANT PRESBYTERIAN CHURCH,X7000\nMIDWAY MOBILE,,J1100\nPhysician Assistant,Stanford University School of Medicine,J1200\nPHILIP I MAPPA INTERESTS,,Y4000\nPRESIDENT OF HISPANI,NICO INC. OWNER,Y4000\nPrincipal Architect,Icon Architecture,B4200\nDIAGOSTIC RADIOLOGIST,\"RADIA, INC.\",H1130\nC.E.O.,DEPENDABLE COMPONENT SUPPLY,Y4000\nEVP & CFO,HOLLYFRONTIER CORPORATION,E1160\nCEO,Sherill House,H2200\nProcess Engineer,Fluor Corp,B1000\nADMIN. LAW JUDGE,SOCIAL SECURITY ADMINISTRATION,J5100\nFERRERO INS SERVICES,,F3100\nCollege Faculty,Bryn Mawr College,H5100\nTUT BROS FARMS,,A0000\nPHYSICIAN,VIA CHRISTI CLINIC/PHYSICIAN,Y4000\nPRESIDENT,DISH INSTALLATION INC.,Y4000\nDIRE,PATHWAYS HOME HEALTH & HOSPICE,H3100\nAttorney,Chadbourne & Parke  LLP,K1000\nPresident,\"Kauff's Enterprises\",Y4000\nPhysician,GREEN CLINIC,H1100\nADMIN,CONTRA COSTA CHRISTIAN SCHOOL,J1100\nPRESIDENT,KL GABBERT & ASSOCIATES,Y4000\nGeneral Contractor,M.J. Sun Pson Corp.,Y4000\n\"JOHN MUIR HEALTH/PRESIDENT/CEO, JOH\",,H2100\nPhysician,Skyline Medical,Y4000\nSCIENCE CENTER,MATH,Y4000\nCHANTILLY HOTELS,,T9100\nMCG NORTHWEST INC,,Y4000\nAttorney,\"Noble Environmental Power, LLC\",E1500\nPresident,Pacific Ocean,Y4000\nPresident,\"Bryden Motors, Inc.\",T2300\nCGU LIFE INSURANCE CO OF,,F3300\nTIR CORPORATION,CONTRACTOR,J1200\nAttorney,\"Perona, Langer, Beck et al\",K1000\nATTORNEY,THE MCCALLISTER LAW FIRM,Z9500\nREAL ESTATE BROKER,TRAILS WEST REAL ESTATE/LAKESI/REAL,F4200\n.INSURANCE.,RISK SOLUTION PARTNERS LLC,Y4000\nBroker,Dayman Worldwide,Y4000\nSecretary,CTR,J1200\nHospital Administrat,Inova Health System,H0000\nSocial Worker,Harold Simmons Foundation,J7400\nManagement,Golden Rule Insurance,F3100\n\"GOV'T RELAT\",UNIVERSITY OF MINNESOTA,K2000\nImporter,Banfi Vintners,G2800\nSTATE REPRESENTATIVE,COMMONWEALTH OF KENTUCKY,J7150\nOWNER,EDISON CHOUSET OFFSHORE INC,T6000\nCTR FOR LIVING & LEARNING INC,,Y4000\nVETERINARIAN,STONEY,Y4000\nCOUNTY OF ORANGE CALIF,,X3000\nDIRECTOR,NEWARK PUBLIC SCHOOLS,X3500\nTraffic Engineer,Or Dept. Of Transpor,Y4000\nHealth Insurance Marketing,N.A.S. Financial Services,F0000\nSr. Vice. Pres.,St. Joe Corp.,F4200\nAttorney,\"Patton, Boggs LLP\",K2000\nWOODWORKER,DUNCAN MCFETRIDGE,J1200\nRETIRED PROFESSOR,RUTGERS UNIVERSITY,H5100\nCEO,EpiSolutions Inc.,Y4000\nEXECUTIVE DIRECTOR,CCCY,Y4000\nVP/GENERAL MANAGER,REGENCY HOMES,B2000\nS R P,,Y4000\nREAL ESTATE DEVELOPM,\"EDWARD J. MINSKOFF EQUITIES, INC.\",F2100\n\"Public Info, Media Parks & Rec\",Brevard County Brd Of Cnty Com,X3000\nFORTNER,,Y4000\nCONSULTANT,MARIN COMMUNITY FOUNDATION,X1200\nPRESIDENT,HSAINSURANCE.COM,F3200\nSKI PATROL,DEER VALLEY RESORT,Y4000\nATTORNEY,ALANIZ & SCHRAEDAR,K1000\nattorney,\"Otha Curtis Nelson, Jr, Law Firm\",Z9500\nPUBLISER,BROADMAN & HOLEMAN,Y4000\nCHESTERFIELD LUMBER,,B5200\nBLOOMINGDALE,,Y4000\nEXECUTIVE,PENN GENERAL ENERGY LLC,E1120\nNATL DEFENSE INDUSTRIAL ASSN,,Y4000\nATTORNEY,\"SEIGER, MOSES, SCHOENTADT\",Y4000\nANALYST,SIGMATECH,Y4000\nlawyer,self-employed (retired),K1000\nAPWU,,L1500\nCONSULTANT,BAYSIDE CAPITAL COMPANY,Z9500\nPRESIDENT,SKIHI ENTERPRISES INC.,B0500\nGeneral Manager,Independent Power Systems,Y4000\nEXECUTIVE,MUSIC REPORTS INC.,Y4000\nPRESIDEN,\"BILL LYNCH ASSOCIATES, LLC\",Y4000\nFINANCE,HUNNICUTT & CO. LLC,J1100\nMartial Arts Instructor,Deverberg Academy,Y4000\nReal Estate,\"Alori Properties Management, Inc\",F4500\nCEO,FERREIRA CONSTRUCTION,B1500\nOLSON-DALEY CORP,,Y4000\nRCG ASSOCIATES INC,,Y4000\nNot employed,,F5200\nSenior Vice President,Turner Network Sales  Inc,C2200\nPrincipal,The Monument Group,Y4000\nDeveloper,\"Boston North Companies, LLC.\",Y4000\nBANKER,DIAMOND BACK/BANKER,Y4000\nMASON,BAT MASONERY COMPANY INC,JD100\nMotorcoach Operator,Escot Bus Lines,Y4000\nSECRETARY-TREAS.,KELCO,Y4000\nArchitech/Prof.,Umd,Y4000\nEXECUTIVE,\"FAST LINKS, INC.\",Y4000\nSENIOR VICE PRESIDENT,VULCAN INC.,F7000\nPRINCIPAL,\"ENVIRO BUSINESS, INC.\",Y4000\nProfessor,Wash Theology Union,Y4000\nK-O-MATIC CORP,,Y4000\nNORWEST VENTURE CAPITAL MANAGEMENT,,F2500\nRetired Social Work,,X1200\nPresident,Canfield & Associates,F3100\nFirefighter/EMS,WALLINGFORD FIRE DEPARTMENT,L1400\nExec Director,Rural Law Center of New York,K1000\nInsurance & Financial,Self-Employed,F3100\nORTHOPAEDIC,SELF-EMPLOYED,H1130\nPROGRAM ANALYS,\"D3 TECHNOLOGIES, INC\",J1100\nFINANCE EXECUTIVE,THE LUBRIZOL CORPORATION,M1000\n\"WHEAT FIRST, BUTCHER SINGER\",,F2100\nGOVERNMENT RELATIONS,GOODRICH CORPORATION,T1300\nAdministrator,\"Women's Bureau,Usdol\",X3000\nSTEPHENS & COMPA,,F4000\nVICE CHAIRMAN,A.B.C. CARPET & HOME,M8000\nCop,DCJ,J1200\nATTORNEY,EISNE & ROME PC,J1200\nWATSON-YATES FUNERAL HOME,,G5400\nattorney,YMCA of the USA,G5800\nTEILBORG SANDERS & PARKS,,K1000\nPresident,Inviting Company,Y4000\nPUBLIC WOR,CITY OF EAST RIDGE T. N.,X3000\nOwner,Foshay Towers,Y4000\nGRESHAM-SMITH AND,,Y4000\nConsultant,Valley Insight Group,Y4000\nAgriculture & Natural Resources Agent,University of Kentucky Cooperative Ext,Y4000\nPresident,\"Heritage Title Company of Austin, Inc\",F4100\nAMERICAN FAMILY LIFE INS,,F3200\nCLEANING TECHNICIAN OWNER,CLEAN SWEEP,Y4000\nPROPERTY MGR.,KIRBY REALTORS,F4200\nrequested,requested,G5000\nradiologist,Radiology Associates,H1130\nChef/Restaratuer,Self employed,G0000\n\"Director, McNair\",\"Xavier University, LA\",H5100\nINFO REQUESTED,CUSTOM PROPERTIES INC,F4000\nVOELKER INVESTMENTS,FRANTZEN,F2100\nBUILDER/DEVELOPER,ROBERTSON BROTHERS,Z9500\nSoftware Engineer,Yelp,Y4000\nPRESIDENT,\"BRICKLEY, SEARS & SORETT\",Y4000\nProfessor/Adminsitra,Cooper Union/Nyu,H5100\nAssistant to Commiss,NJ Department of Education,Y4000\nADULT CARDIOLOGY,Shore Cardiology Consultants,H1100\nMARINE CONTRACTOR,BREEZESWEPT,Y4000\nPUBLLISHER,HOT OFF THE PRESS,J7400\nSNYDER & SPOERL C P,,Y4000\nEXECUTIVE,\"CORNING, INC.\",J7400\nMED COLL OF OHIO-TOLE,,H1400\nATTORNEY,\"TOWN OF OYSTER BAY, NY\",X3000\nATTORNEY,KEANE & BEANE P.C.,K1000\nLTM INC,,Y4000\nGENERAL MANAGER,CHATEAU RESIDENCE CLUB,Y4000\nObstetrician,Self Employed,H1130\nSUN AIR PARTS,,Y4000\nChief Executive Officer,Providence Sacred Heart Medical Center,H2100\nManaging Director,Environmental Health Strategy Center,Y4000\nLIBRARIAN,SCHAUMBURG TOWNSHIP,X3000\nWELDER,MONO CERAMICS INC,Y4000\nOil & Gas Exploratio,JTD Resources,J1100\nBANK ONE MOLINE,,F1100\nCommunications Manager,LPS,Y4000\nTelecommunications/c,\"Q3 Telecom, Inc\",Y4000\nDOCTOR,WOMENS SPECIALISTS OF NM,Y4000\nZELLNER CONSTRUCTION CO INC,,B0500\nINVESTMENTS,FOOTSTAR INC.,Y4000\nPsychiatrist,Polaris,Y4000\nANESTHESIOLOGIST,RESTON ANESTHESIA ANESTHESIA MANAGEMEN,H1130\nExecutive,Glacier Northwest,Y4000\nreal estate,\"M&E, LLC\",F4000\nCEO,THE PARC GROUP,F4100\nOWNER,JENNIFER BETH MAZER MD PA,H1100\nVICE CHAIRMAN,CORNING INCORPORATED,C4000\n\"WUNDER, DIEF, ET AL\",,K2100\nanalyst,Siebert Brandford Shank,F2300\nOWNER,Exel Health Enterprises,Y4000\nPresident,Hamilton Distribution Llc,Y4000\nBERTHOLD TIENEY ET AL.,,K1000\n\"MILLER'S RENTAL & SALES INC\",,G4600\nINVESTMENTS,CROW HOLDINGS,F4500\nphysician,Memorial Sloan Kettering,H2100\nSALES,STEPHENS GALLERY,Z9500\nCLARK & WOLF P S,,Y4000\nAdministration,ECMC,Y4000\nNATIVE AFFAIRS & DEVELOPMENT,,Y4000\nACCOUNTING ASST,PRIME TIME CHRISTIAN BROADCAST,C2000\nPRESIDENT,RPH INVESTMENTS,F7000\nREGIONAL SALES MANAGER,AMERIPRO FUNDING INC.,F4600\nATTORNEY,\"LOEFLER, TUGGY, ROSENTRAD\",K1000\nECONOMIC,BERKS ECONOMIC PARTNERSHIP,Y4000\nSCIENTIST CONSULTANT,SELF-EMPLOYED,X0000\nREAL ESTATE,BAY COUNTRY APPRAISAL SERVICE,Y4000\nBU,PLUMBERS & PIPEFITTERS LOCAL 776,LB100\nINVESTMENTS/FINANCE,SELF,F7000\nOHIO NATIONAL LIFE INS CO,,F3300\nAUDITOR & ATTORNEY,MCDERMOTT & AKIN GUMP STRAUSS HAUER &,Y4000\nMeteorologist,US Department of Commerce,L1100\nGRAPHIC CERT,,Y4000\nARCHITECT,ZIMMER GUNSUL FRASCA,B4200\nCHIEF DEPUTY,NEW CASTLE COUNTY GOVT,X3000\nExecutive Director,Wolfensohn Family Foundation,Y4000\nOWNER-MANAGER,SELF,G0000\nVENTURE CAPITA,NOAH PARTNERS L.L.C.,Y4000\nAttorney,\"Merrill & Stone, LLC\",K1100\nOf Counsel,Arent Fox,K1000\nOwner,Griffis Custom Homes Llc,B2000\n\"Carrington & Carrington, ltd\",,Y4000\nElectrician,Kemet Electric LLC,Y4000\nExecutive,Schostak Bros. & Company,F4000\nhealthcare consultant,self,H1700\nPresident,R.W. Armstrong,B4400\nCEO,Orb Networks,C5000\nATTORNEY,ALLEN DELL PA,Y4000\nGOVERNMENT EMPLOYEE,BOULDER COUNTY,X3000\nSENIOR VICE PRESIDENT,GE CAPITAL,M2300\nSEMI RETIRED,SELF EMPLOYED/SEMI RETIRED,X1200\nINVESTMEN,DADGLEY PHELPS & BELL INC,Y4000\nTEACHER,LOS ANGELES UNIFIED SCHOOLS,X3500\nIT CONSULTANT,\"RLS CONSULTING, LLC\",Y4000\nPHARMACIST,RASI LABORATORIES,H1750\nMEDIA AND PUBLIC RELATIONS,WELLS FARGO,F1100\nPawnbroker-President,USA Credit,Y4000\nLINGERLONGER HOTELS AND RESORTS,,T9100\nFORESTER,SELF EMPLOYED,J1200\nDirector of Education,AGA,Y4000\nExecutive,Safeguard Tech Inc.,Y4000\nPARTNER,SOLEADO LLC,Y4000\nC.O.O.,SAM HOUSTON RACE PARK,Y4000\nLobbyist,\"Aiken, Gump, Straus, Hauer & F\",K2000\nPsychiatrist,Mass Genl Hospital,Z9500\nSALESMAN,CLEVELAND BROTHERS,B6000\nINSURANCE BROKER,TRUEX INSURANCE,F3100\nPHYSICAN,TEXAS ORTHOPEDIC HOSPITAL,H1130\nROOSEVELT ISLAND OPERATING CORPORAT,,Y4000\nSUPERVISOR,YUBA COUNTY,X3000\nPRESIDENT,FIDELITY FINANCIAL SERVICES INC,Y4000\nSales,Cvtherapeutics,Y4000\nConsultant,\"2ndEdison, Inc.\",Y4000\nEngineer,Starfire Systems,M1000\nHome Maker,None,J7150\n\"HORN, KAPLAN, GOLDBERG, & ET AL\",,Y4000\nBN RAILROAD DIVISION DENVER,,T5100\nEXECUTIVE,AMER. SUPERCONDUCTOR,E1700\nInsurance,Accredited Surety & Casualty,F3400\nDECORDOVA COOPER & CO,,F2400\nVice President,Covenant Medical Center,H2100\nNORTHERN CALIFORNIA HOLSTEINS,,Y4000\nGROOM & NORBERG,,Y4000\nALBERT G RUBEN AND CO,,F3100\nMarketing,Charles Schwab,F2100\nOWNER,\"ITTY BITTY OIL, LLC\",E1100\nPARTN,MALIN BERGQUIST & COMPANY LLP,F5100\nHERMAN HERMAN & KATZ COTLAR,,K1000\n\"LIPMAN, FRIZZEL & MITCHELL\",,Y4000\nCHAIRMAN AND CEO,\"CASTLE & COOKE, INC.\",F4500\nSENIOR VICE PRESIDENT,SILVER EAGLE DISTRIBUTORS,G2850\nCLU,ALLIANCE RESOURCE GROUP,Y4000\nCAREFREE MANAGEMENT INC,,Y4000\nChief Executive Officer,General Motors,T2100\nPrincipal,Perennial Strategies,K2000\nBUSINESS OWNER,VACO LOS ANGELES LLC.,Y4000\nEXEC,\"SUNSTONE HOTEL INVESTORS, INC.\",T9100\nBUSN. EXEC,INTEL,C5110\nACCOUNTANT,MICROWAVE FILTER CO,C5000\nDeveloper,\"Tri Properties, Inc.\",F4000\nLOB,CAVAROCCHI RUSCIO DENNIS ASSOC.,K2000\nCPA,PROEBSTEL MICHELS CPA PS,J1100\nMETHODIST HEALTH FOUNDATI,,H0000\nPRINCIPAL,IDAHO CHOOSES LIFE,Y4000\nDir. of Athletics,University of AZ,Z9500\nWebsite Design,Ion Global,Y4000\nPRESIDENT,F.W. DAVISON AND COMPANY,G5270\nREAL ESTATE,IADAM EQUITIES LLC,Y4000\nUNEMPLOYED,UNEMPLOYED,C5130\nJAMES S ROWEN AND ASSOC,,Y4000\nCHIEF MARKETING OFFI,SERVICEMASTER,G5200\nCIVIL ENGINEER,EMHT,Y4000\nBEGGS PHARMACY,,G4900\nHOME MAKER,,K2000\nCHIEF EX,BARRON COLLIER PARTNERSHIP,F4100\nATTORNEY,\"DOW GOLUB REMELS & BEVERLY, LLP\",Y4000\nSTUDENT,CARSON-NEWMAN COLLEGE,Y1000\nConsultant,\"BJ Struthers, Ltd.\",J7400\nphysician,Christiana Medical Group,H1100\nAttorney,\"Rosen & Eichner, PA\",K1000\nCEO,\"TAHER, INC.\",Y4000\n\"VP, District  Sales\",CIT,G5300\nATTORNEY,GOLDBERG & SIMPSON,K1000\nEXECUTIVE,TRAVELERS/EXECUTIVE,F3400\nINSURANCE,BROWN AND BROWN INC.,F3100\nSALES,\"AIR HORIZONS, LLC.\",J1100\nEVP & CHIEF,KEYSTONE PROPERTY TRUST,F4100\nCONSULTANT,CALLAHAN & ASSOC./CONSULTANT,K2000\nMANAGER ANALYTIC,SANOFI PASTEUR INC,H4300\nPROFESSIONAL OFFICE ENTERPRISES,,Y4000\nBRICE JONES,,Y4000\nReal Estate,Palestra Properties,F4200\nMIDLNATIC NATIONAL BANK,,F1100\nKOGER EQUITY INC,,F2100\nINVESTMENT BANKER,CI CAPITAL PARTNERS,Z9500\nSales,Critical Care Assesment,Y4000\nNUTRA SYSTEMS,,G5000\nPotter Sculptor Teacher,Self-Employed/Horheich College,J1200\nL & H CO INC,,Y4000\nCoffee,Self,G2600\nOWNER,\"ARMSTRONG GAS COMPANY, LLC\",Y4000\nORTHODONTIST,DON M. WILKINS DDS MSD PA,J1100\nProfessional Poker P,Self,J1200\nSelf-Employed,Ad-Way Inc.,Y4000\nCARROLL TITLE AGENCY,,F4300\nBUSNESS DEVELOPMENT CONSULTANT,SELF-EMPLOYED,G5200\nAdministrator,Brookdale Senior Living,H2200\nHOME MAKER,,F5000\nGERIATRIC CARE MANAGER,SELF,J7400\nRETIRED,RETIREE,L1200\nAVP - Operations (Hosp),Gentiva,H3100\nExec.,HCA,H2100\nUnemployed,Unemployed,B4000\nDENTIST,,C1100\nCompliance Manager,Tagge Rutherford Financial,F0000\nMONEY MANAGER,LM CAPITAL GROUP,F0000\nSUPERVISOR,TYCO HEALTHCARE,H4000\nUNGARETTLE & HARRIS,,K1000\nOWNER,DORSCH FORD,T2300\nRealtor,Denver Home Mortgage,J1200\nIN-FLIGHT CATERING,FLYING FOOD GROUP,G2910\nCEO/Owner,\"Yale Equipment & Services, Inc\",Y4000\nPRESIDEN,EMERALD INTERNATIONAL CORP,E1210\nREMEDIATION FINANCIA,,F4000\nVice Chairman & General Counsel,Dutko Worldwide,K2000\nPRESIDENT,J SCHMIDT CHEVROLET OLDSM,T2300\nPRESIDENT,MINNESOTA BUILDING AND CONSTRUCTION TR,B1500\nV-P RE Loans,First Community Bank,F1000\nCOMMUNICATIONS E,COX COMMUNICATIONS,C2200\nInformation Requested,Miller Buckfire,F2100\nDIRECTOR,\"LYNDON, INC\",Y4000\nBANKER,NORCAL CAPITAL GROUP,Z9500\nSMITH BUCKLIN & ASSOC INC,,G0000\nBUILDER,BRYDGE AND LEE INC,Y4000\nNY UNIVERSITY SCHOOL,,H5100\nInformation Requested,Information Requested,G6800\nINSURANCE OWNER,MONARCH INSURANCE,Y4000\nPRESIDENT & CEO,GREATER PHOENIX ECONOMIC COUNCIL,Y4000\nVENTURE CAPITALIST,MOUNTAIN GROUP CAPITAL,Z9500\nEpidemiologist,RTI Health Solutions,Y4000\nKFH LAND CO INC,,F4000\nBOOKKEEPER,KINGSWAY EXT. CO. INC.,Y4000\nTHERESA CASTRO,,Y4000\nINTERSYSTEMS,,T7200\nPresident,\"Bean Resources, Inc\",Y4000\nManager,International Trade,G3500\nPRINCIPAL,WESTSIDE INVESTMENTS,F4000\nTAYLOR WISEMAN TAYLOR,,B4000\nEXE,,Y4000\nATTORNEY,NOT EMPLOYED/ATTORNEY,K1000\nREGISTERED LAND SURVEYOR,,B4300\nATTORNEY,SHAPIRO LAW GROUP,K1100\nAssistant Nurse,Veterans Administration,X3000\nLAB ASST.,CHS,Y4000\nExecutive Director,Moxley International,Y4000\nPartner,\"David Burke Construction, LLC\",B1500\nTISHMAN REAL ESTATE SERVICES,,F4000\n\"VPresident CorpRep&Philan'y\",Pfizer Inc,H4300\nENGINEER,SELF IMPLOYED,B4400\nGRAND RIVER CONSTRUCTION,,B1500\nENGINEER,\"MACK TRUCKS, INC\",T3200\nLawyer,Higgs Fletcher & Mack,K1000\nOWNER,JARS,Y4000\nDirector,Resource Bank,F1000\nVENTURE CAPITALIST,GOOGLE VENTURES,Z9500\nSENIOR VICE PRESIDENT,NATIONAL ASSOCIATION OF REALTO,Z9500\nINDIVIDUAL DEV. & FAMILY SERVICES,COMMUNITY ACTION OF SOUTHERN IN/IND,Y4000\nBCI COMMERCIAL ROOFING INC,,B3000\nResearch Analyst,\"Smart Campaigns, Inc\",Y4000\nLAWYER,Weston Solutions Inc.,E2000\nSTREET FAMILY FOUNDATION,,Y4000\nCIPA,,Y4000\nCREVE COEUR LICENSE BUREAU,,Y4000\nKIEWIT CONST CO,,B1000\nExecutive Director,Indianapolis Housing Authority,Y4000\nlobbyist,The Walter Group,K2000\nAttorney,\"Kaufman, Gelberr & Bern\",K1000\nSCOTT MURPHY & DANIEL,,Y4000\nDentist,Dr Pedro R Jones,Y4000\nCPA,MCGOWAN GUNTERMANN,Y4000\n\"FREEDOM FARMS, INC\",,Y4000\nCEO,\"AMERICAN LEGACY PUBLISHING, INC.\",C1100\nOIM,TRANSOCEAN,E1150\nPRESIDENT,MICROMARKETING LLC,Y4000\nSchool Administrator,Oak Meadow Montessori School,H5000\nSales,Jackx Concierger,J1200\nFounder & Spiritual,The New Synagogue of Fort Lee,X7000\nCLINICAL COUNSELOR,FAMILY & CHILDREN SERVICES,H6000\nREGISTERED NURSE,\"UNIVERSITY OF CA, SAN FRANCISCO\",H5100\nAdministrator,Englewood Hospital,H2100\nSegandt@MacCom,SalesforceCojm,J1200\nMCCULLUM FOR CONGRESS,,Y4000\nOWNER,CHEF TUNA CREATIONS LLC,Y4000\nEXECUTIVE,KINSEY INTERESTS INC,E1120\nPRINCIPAL,PEMWEBER HAIR SALON,Y4000\nCEO,EMG,Z9500\nATTORNEY,KELLY HAGLUND,Y4000\nPHYSICIAN,GERALD C. MOORE M.D. P.A.,Y4000\nSpecial Assistant,NYS OMRDD,Y4000\nRestaurant,Mountain Sun Pub & Brewery,G2900\nProducer,TKO Entertainment,Y4000\nBROWNSTEIN HYATT,,J1200\nPRESIDENT,INFINITY BROADCASTING,C2100\nEMERALD ILLUSTRATING & DE,,G5240\nCONTRACTOR,MJT ENTERPRISES,Y4000\nDYER INS,,F3100\nSALES,\"INT'L. CHEMTEX INC.\",Y4000\nWASSERMAN PROPERITIES LLC,,Y4000\nATT,LAW OFFICES OF WELEBIR & MCCUNE,K1000\nCEO,\"Bioelements, Inc\",Y4000\n\"VP, ENERGY POLICY\",ITC HOLDINGS CORP.,E1620\nWENS-FM/EMMIS/SENIOR VP MARKET MANA,,C2100\nBROKER,ASSOCIATES REALTY INC.,F4200\nREGIONAL MANAGER,PAK RITE RENTALS,F4500\nMISSOURI AFLCIO,,L0000\nTHE HARVEY GROUP INC,,G4200\nPROGRAM MANAGER,CHARTIS INSURANCE,F3100\nPodiatrist,Oak Cliff Podiatry Center,Y4000\nExecutive,Universities Research Association,H5100\nREAL ESTAT,NOVA DEVELOPMENT COMPANY,J1200\nINTEGRATED LOGISTICS SERVICES INC,,G1200\nAUTO DEALER,,F0000\nphysician,Drs. Funnell & Strebel Inc.,H1100\nENGINEERING,ITC HOLDINGS CORP.,E1620\nPRESIDENT,CACTUS SERVICES INC.,M3500\n\"BACHNER, TALLY, POLEVOY, MISHER\",,K1000\nPRESIDENT,1 SQUARED R ELEMENT CO.,Y4000\nCONS,R.H. OLSON INVESTMENTS L.L.C.C,Y4000\nBROADWAY VIDEO,,C2300\nCommercial Realtor,NAI Emory Hill Real Estate Services In,F4000\nATTORNEY,ASTRAZENECA PHARMACEUTICALS LP,H4300\nComputer Programmer,UCSF,H5100\nDALLAS MUSEUM OF NATURAL HISTORY,,X4200\nDIMAR & ASSOC,,Y4000\nReal Estate Broker,Mccar Homes,B2000\nsales,sunprinting company,C1300\nLAKSHMANA ENTERPRISE,,E2000\nExecutive,Greater Rochester Enterp,Y4000\nPresident,Mb Visnic,Y4000\nowner,Churchill & Banks Ltd,F1000\nCompany President,Weavo Corporation,J1200\nPresident,Price Performance Measurement Systems,Y4000\nHome Inspector,Self-Employed,F4700\nPsychiatrist,Jackson Clinic,H1100\nInsurance Advisor,Hnritle Callalen,Y4000\nPartner,Day and Wheeler,Y4000\nEXEC VICE,FLINT HILLS RESOURCES LP,E1160\nINVESTMENT REP,EDWARD JONES,F2100\nBLAKES LOT A BURGER,,G2900\nPHYSICIAN,DCSA,Y4000\nChairman,U.S. L.E.C. Corp.,C4000\nTax Partner/CPA,GNACPA,F5100\nSENIOR FELLOW,RICHMAN CENTER,Y4000\nINFO REQUESTED,ENERGY MANUFACTURING INC,E1000\nREAL ESTATE,\"CORDANO COMPANY, INC.\",F4000\nINSURANCE,INTEGRO U.S.A.,Y4000\nGEORGETOWN INDUSTRIES,,M5100\nCFO,DEERE & COMPANY,A4200\nOWNER,REIDSVILLE VET HOSPITAL,A4500\nHOMEMAKER,,T2300\nSENIOR SYSTEMS TECH/PRESIDENT/CEO/E,,Y4000\nAL-JON,,B2000\nINFORMATION REQUESTED PER BEST EFFORTS,CIC PARTNERS FIRM LP,F2600\nOWNER,DBA MR TRANSMISSION,Y4000\nOwner,Hometown Brand Center,G5300\nWESTIN HOTEL,,F1100\nDEVELOPMENT COUNSELOR,,Y4000\nDOS RIOS TEXTILES CORP,,M8000\nATTORNEY,BURNES & THORNBURG LLP,K2000\nExecutive,Custom Food Group LLC,G2000\nAttorney,Liebman-Mimbu PLLC,Y4000\nCALCEL,,Y4000\nBUSINESS EXEC.,RUAN CENTER CORPORATION,T3100\nPART TIME DEV SP,OHIO CONFERENCE OF COMMUNITY DEVELOPME,Y4000\nPHYSICIST,UPENN DEPARTMENT OF PHYSICS AND ASTRON,Z9500\nSOFTWARE EXECUTIVE,INTUIT,C5120\nCHAIRMAN,TH WIDMEYER GROUP,J7300\nPRESID,NORTHRUP GRUMMAN CORPORATION,D5000\nBusinessman,The Vectre Corporation,J1100\nMINISTET,\"PRESBYTERIAN CHILDERN'S HOMES\",Y4000\nCEO,Sherman Dixie,B5100\nBanker / IT,Abbott Labs Employees Credit Union,F1300\nDubai Group,,Y4000\nCHIR,WEST & EAST ORLANDO CHIROPRACT,H1500\nPHYSICAN,MARIO A LANZA MD FAAFP,F3100\nLAWN CARE SERVICE,SELF,Y4000\nAS COFINANCIAL GROUP,,F0000\nDEPT CRIMINAL JUSTICE TRAINING,,X3200\nVICE PRESIDENT/GENERAL MGR,\"ENTERPRISE LEASING COMPANY OF PHOENIX,\",T2500\nATTORNEY,DAVID P. WILSON PC,K1000\nPRESIDENT,LACLEDE GAS,Y4000\nGym Owner,Harigian Fitness,Y4000\nDIRECTOR,MISSION ESSENTIAL,D9000\nAttorney,Dicks & Workman LLC,K1000\nINFO REQUESTED,POTOMAC PRIVATE INVESTIGATIONS,G5290\nTeacher,Diocese of Covington,X7000\nHAMMER RESIDENCES,,Y4000\nSenior Regional Manager,Gables Residential Services,F4500\nSoftware Engineer,\"Ziprealty, Inc.\",F4200\nP.R. EXECUTIVE,COOKERLY PUBLIC RELATIONS,G5210\nATTORNEY,THE CLAYTON LAW FIRM,K1000\nTHE ST FRANCOIS COUNTY ABRACT CO,,F4300\nPRESIDENT & COO,NORTHSIDE FOODS,G2300\nPortfolio Manager,Iridian Partners,F2100\nATTORNEY,LIQUIDITY SERVICES INC.,F2100\nCEO,WELDON STEAM GERERAT,Y4000\nVP/MARKETING,PRINTING INDUSTRIES OF AMERICA,C1300\nATTORNEY,THE KREAGER LAW FIRM,K1000\nACCOUNTANT,AZURE MANAGEMENT,Y4000\nR.N.,ELM PLACE AMBULATORY SURG. CTR,Y4000\nDIRECTOR OF TRAINING,TEXAS DEMOCRATIC PARTY,Z9500\nSales,Muehlstein,Y4000\nGLAD,Non Profit Mgt.,J7400\nCEO,Pennmark,Y4000\nJIM PRODUCTS INC,,Y4000\nMANAGING DIRECTOR,\"MOORE CAPITAL MANAGEMENT, L.L.C.\",F2700\nCEO,SPECTRUM AUTOMATOR,Y4000\nFuneral director,Bongiovi Funeral Home LLC,G5400\nB I INC,,Y4000\nHUMAN SERVICES,\"AMEGO, INC\",Y4000\nPathologist,Amarillo Pathology Assocs LTD,H1130\nStma,,Y4000\nInvestor,Securestorage,Y4000\nOwner,Kapteins Ace Hardware,M5100\nCFO,KILROY REALTY CORP.,F4200\nCEO,Megatran,Y4000\nMedia Consultant,Strother-Duffy-Strother,J7400\nBookeeper Mgmt.,G. T. F. Properties,Y4000\nENVIRONMENTAL ANALYST,STATE OF VERMONT/ENVIRONMENTAL ANAL,X3000\nCEO,Wometco Enterprises Inc,G6100\nBUSINESS,\"CORNING, INC.\",C4000\nTechnology Director,Pearson Education,C1100\nATTY,\"LUPPINO, LLP\",Y4000\nSOFTWARE ENGINEER,TAKE TWO INTERACTIVE,Y4000\nVIRGINIA EYE INSTITUTE,,H1120\nHOMEMAKER,NOT EMPLOYED,H3800\nMAKERS MARK DISTILLERY,,G2820\nConsultant,\"Vittori Consulting, Llc\",Y4000\nMarketing,Rhoads Group of DC,Y4000\nSENIOR ADVISOR,RELATED,F4100\nATOMIC DISTG CO INC,,G2850\nOWNER,\"LAW OFFICES OF PATRICK L CORDERO, P A\",K1000\nEXECUTIVE,BEST WINDOW MAN OF NEW YORK INC,Y4000\nCONESCO DOKA,,Y4000\nCAR DEALER,ANDERSON HONDA,T2310\nCARROW DOYLE & ASSOCIATES,,F5100\nEngineer,Kraft Foods,G2100\nSELF-EMPLOYED,BUNCH CONSULTING,Y4000\nLEFEBRE GALLERY,,Y4000\nLOBBYIST,OSI PHARMACEUTICALS,H4300\nCHAIRMAN,STONYFIELD FARM INC.,A2000\nENRON NET WORKS,,C4000\nArchitect/ professor,Univ Of Md Coll Park,H5100\nPRESIDENT & C.E.O.,SELF-EMPLOYED,G0000\nWebmaster,Foundation for National Progress,Y4000\nBUSINESS EXECUTIVE,S&S WORLDWIDE,Y4000\nPresident,Sk Enterprises,Y4000\nEXECUTIVE VICE PRESIDENT DEVELOPMENT,C.K.E. RESTAURANTS INC.,G2900\nPhysician Allergist,Self-Employed,G0000\nDESIGNER/BUILDER,SELF-EMPLOYED,G0000\nPresident,Thomas F Keefe Insurance,F3100\n\"SEARCY, DENNEY\",,K1000\nInformation Requeste,Divco West Properties,F4000\nFundraiser,Quinnipiac University,H5100\nATTORNEY,NEYLAN LAW OFFICE,K1000\nDEWITT & REARICK INC,,F4200\nExecutive Director,CMS Energy,E1620\nPresident COO & Vice,Wyeth,H4300\nREAL ESTATE BROKER,FLORIDA HOMES REALTY & MORTGAG,F4200\nPRESIDENT,W & M PROPERTIES,F4000\nINVESTMENT MANAGER,GREEN COURTE PARTNERS LLC,Y4000\nBUSINESSMAN,EMC CORP,Z9500\n\"PRESIDENT, CEO\",BIO REFERENCE LABORATORIES INC,H3400\nCOLLETT & BUCKLE,,Y4000\nVice President,Capital One,G5220\nWHITCUP & ARCE INC,,K1000\nPurchasing Agent,City of Kirkland,X3000\nowner,\"Howlin, Inc.\",Y4000\nSCIENTIST,\"JOHNSON, JOHNSON\",H4000\nDIR HR DS MKT,PHILIP MORRIS U.S.A.,A1300\nATHLETICA INC,,J1100\nWASSERSTEIN PARELLA,,F2300\nINTERNATIONAL MERCANTILE CO INC,,F5200\nUNITED MAINTENANCE SERVICE,,Y4000\nROTTERMAN & ASSOC,,G5260\nSONOMAT INC,,J9100\nATTORNEY,BONDURANT MIXON AND ELMORE,K1000\nPresident,Wagensomer Construction Inc.,B1500\nHealthcare,Mainland Medical Center,H2100\nME,FLORIDA INTERNATIONAL UNIVERSITY,H5100\nDELTA DENTAL,Oregon Dental Service,F3200\nMarketing,Savvis,Y4000\nDIRECTOR,NEWBOLD ADVISORS,Y4000\nSpecialty Contractor,Brickley Environmental,Y4000\ntreasurer,\"Bowl America, Inc\",G6100\nTest Technician,\"Northern Power, Waitsfield, VT\",J9000\nSYSTEMS ANALYST,MCCCD,Y4000\nHARRIS CROUCH LONG & SCOTT,,F3100\nManager,\"Delicatessen Services, Inc\",J7400\nOWNER,ABRAHAM STRATEGIES,Z9500\nVp Real Estate,Houghton Mittlin Com,C1100\nMCCLAIN FINLON,,K2000\nPHARMACY MANAGER,IDEAL PHARMACY,G4900\nFARMER,ERRA LINDA FARMS III,Y4000\nCEO,Arvest Bank Group,F1100\nDirector of Product,Equinix,J7400\nASSOCIATE CREATIVE DIRECTOR,FERRARA  COMPANY ADVERTISING AND MAR,G5210\nConsultant,\"Carti,inc\",Y4000\nPresident,Valet Waste,F4500\nBOB DAWSON & ASSOCIATES,,K2000\nDEPUTY,MANAGEMENT & TRAINING CORP,G7000\nEXECUTIVE,LEAKE AUTO AUCTION,G5000\nPHILANTHR,HAWKEYE INTERNATIONAL LLC,Y4000\nMEDICAL LAB SUPPLY CO,,H4100\nR.E. EXECUTIVE,DURST ORGANIZATION,J1200\nEXECU,NORTH DAKOTA REPUBLICAN PARTY,J1100\nSurgeon,\"Center for Urologic Care, LTD\",H1130\ncomputer technician,Princeton University,H5100\nAttorney,\"Moher & Cannello, P.C.\",K1000\nATTORNEY,SACHNOFF & WEAVER LTD.,K1000\nManager Product Supp,GE Infrastructure,M2300\nORGANIZING REPRESENTATIVE,IUPAT DISTRICT COUNCIL 57,LB100\nGOVERNMENT RELATIONS,PRINCETON UNIVERSITY,H5100\nDODSON,,K1000\nOWNER,WINGSPREAD ENTERPRISES,J1100\nPSYCHOLOGIST,\"NEW BEGINNINGS TODAY, LLC\",Y4000\nUnited Sta,Pediatric,H1130\nATTORNEY,\"COKER, SCHICKEL, SORENSON & DANIEL PA\",K1000\nRETAI,\"RAPUNZEL'S OF PALM BEACH INC.\",Y4000\n\"Director, Special Pr\",Boston College,J1200\nLOBBYIST,GEORGE M MILLER,K2000\nAttorney,\"Bernstein, Liebhard, Litshotz\",K1000\nAir Traffic Controller,U S Army,X5000\nUniversity Health Sy,Case Western Reserve University,H5100\nM.I.S. Analyst,PROVIDENT BANK,F1100\nManager,American Title Co.,F4300\nMASS DEPT SOCIAL SERVIC,,X3000\nCOOKING INSTRUCTOR,SELF-EMPLOYED,Y4000\nPRESIDENT,\"CRESTPOINT SOLUTIONS, INC.\",Y4000\nPsychologist,Self Employed,G4100\nCONSTRU,\"AMERICA'S COMMUNITY BANKERS\",F1200\nPRESIDENT,\"R. W. RHINE, INC.\",Y4000\nGENERAL ORTHOPAEDICS - SELF EM,,Z9000\nEXECUTIVE,SKYLINE HOTEL,T9100\nEVP,Michigan Health & Hospital Assn,H2100\nCASINO WEST,,G6500\nVICE P,\"TEMPLETON COAL COMPANY, INC.\",E1210\nTHE LINCOLN FOUNDATION FOR PERFORMA,,Y4000\nProject Manager,Choice Hotels International,T9100\nNEW ENGLAND FIRE EQUIPMENT,,Y4000\nEXEC. DIRECTOR,CALIF. COASTAL,Y4000\nVICE-PRESIDENT CORPORATE AFFAIRS,INTUIT,C5120\nCOUNSEL,THE ADVOCAY GROUP,Y4000\nConsultant,DLA Piper US LLP,K1000\nPRE,PACIFIC TECHNICAL RESOURCES INC,Y4000\nVP IM PROF &,J&J WORLDWIDE HEADQTRS,H4000\nED,\"MQC Enterprises, Inc\",Y4000\nPRESIDENT,\"S.C. PARKS ASSOCIATES, INC\",Y4000\nWeb designer,Flow Media Design,Y4000\nSr Housing Management,Classic Residence by Hyatt,H2200\nHIGHER ED,PORTLAND STATE UNIVERSITY,J7400\nARCHITECT,NEUMANN SMITH,Y4000\nR & A INVESTMENTS,,Y4000\nACCOUNT EXECUTIVE,MEGAN ANDERSON-MORRIS,Y4000\nDESANTIS & DESANTIS,,Y4000\nPHYSICIAN,SPINE INSTITUTE OF NEVADA,Y4000\nGENERAL MANAGER,PENN FIBER,M1500\nOwner,Professional Business Systems,F1100\nVice President,Amer. Auto Carriers,T2000\nPhysician,Bozeman Deaconess Hospital,H2100\nPresident,Rushford State Bank,F1000\nRILEY & MCDERMITT,,K1000\nLAWYER,\"SACRAMENTO COUNTY, CALIFORNIA\",Z9500\nFL MUNICIPAL POWER AGENCY,,E1600\nJOPAL ASSOCIATES INC,,Y4000\n\"HOLLY'S LEGAL STREET\",,Y4000\nTrade Association Exec,Edison Electric Insitute,E1600\nTHE SHIDLER GROUP,,Y4000\nIntelligence Analyst,US Army,X5000\nCTY. PTY. VICE TREASURER,MARY,Y4000\nPRES.,\"TOMMY'S TAXI\",T4200\nCONSULTANT,SMI INC,K2000\nNAUMAN FLYING,,Y4000\nSheet Metal Worker,\"Robert's Roofing\",B3000\ndirector of several,n.a.,J1100\nMARKETING,MATCH MARKETING GROUP,Y4000\nPresident,Home Medical Supplies & Equipm,H4100\nElectrical Contracto,Bakke Westphal,B3200\nexecutive,National Committee on US-China Rel,J5000\nLAWYER,FORD MOTOR COMPANY,T2100\nVP,\"EAT'N PARK HOSPITALITY\",G2900\npathologist,self,H1130\nRETIRED,U S DEPT OF DEF,X5000\nPUBLIC AFFAIRS MANAGEMENT,,G5210\nExecutive/General Co,Olympus Construction,B1500\nSALES MARKETING,ROSS SIMON,Y4000\nBOOKKEEPER,AMHERST PED,H1130\nPartner/Attorney,\"Cooley, Goodward\",K1000\n\"THIEL'S AUTO BODY SHOP\",,T2400\nStudent,Davidson College,H5100\nALBERT EINSTEIN MED CTR,,H2100\nCHIEF OF P,ECONOMIC DEVELOPMENT ADM,Y4000\nMUSICIAN/MOM,SELF/MUSICIAN/MOM,C2600\nOwner,Reliance Real Estate,F4000\nBERGHOFF RESTAURANT COMPANY,,G2900\nHAYNIE AND ASSOCIATES,,K2000\nENGINEER,NOVO NORDISK,H4100\nP.I.A./ENGINEER/HOMEMAKER,,Y4000\nHARBOR PILOT,SELF EMPLOYED,J6200\nPhotographer,Self,H1130\nRANGE KLEEN INC,,Y4000\nPITTMAN TRACTOR COMPANY INC,,Y4000\nEXECUTIVE VICE PRESIDEN,\"BRINK'S INC\",T1500\nCARLILE-MACY,,Y4000\nSELF EMPLOYED,ALTESUS.COM,Z9500\nPartner,\"Pacific Equities West, LLC\",F2100\nSenior Policy Analyst,Consumer Reports,X4000\nADAM CORPORATION - GROUP,,F1200\nPrincipal,PODESTA MATTOON,K2000\nMARCO EAGEN KENNEDY,,Y4000\nOWNER,EUBANK FUNERAL HOME,G5400\nDELTA AIRLINES INC.,,T1100\nLAWYER,\"VARNUM, RIDDERING, SCHMIDT & HOWLETT\",K1000\nPRESIDENT AND CHIEF EXECUTIVE OFFICER,TUALITY HEALTHCARE,H2100\nPHYSICS A,MICHIGAN STATE UNIVERSITY,J1200\nWW Sales Manager,International Business Machines,J1200\nGENERAL MANAGER,BAISDEN BROTHERS HARDWARE,F1100\nACADEMIC PHYSICIAN,UNIVERSITY OF TENNESSEE,H5100\nPRESIDENT,TJK SALES INC,Y4000\nArchitect,Ballard+Mensua Architecture,B4200\nCEO,TRANSMONTHIGNE,E1160\nANESTHESIOLOGIST,TRAVERSE ANESTHESIA ASSOCIATES,H1130\nBANK MANAGER,REGIONS BANK,F1100\nMiller and Cohen,,Y4000\nATTORNEY,JAMES J TEMPLE JR. PA,K1100\nVP of Productions Mo,Parmount,Y4000\nMOON GLOW DAIRY,,A2000\nSIDNEY R BORDERS P C,,Y4000\nGOVERNME,COLLIER SHANNON SCOTT PLLC,K2000\nCHAIRMAN & CEO,\"ALTRIA GROUP, INC.\",A1300\nFIRE FIGHTER,KEY BISCAYNE FIRE DEPT,L1400\nDIREC,INTERFAITH ACTION & PLURALISM,Y4000\nCommercial real esta,Self Employed,F4200\nPARTNER,DREW & MOFFETT PROPERTIES LLC,F4000\nLAWYER,Luedeka Neely Graham,Y4000\nSocial Service Executive,Women in Need,J7400\nPILOT,NUTJETS,Y4000\nAI & ASSOCIATES INC,,B4000\nCONT,SIMPSON COMMERCIAL CONTRACTING,B3000\nMANAGER,MONTEREY COUNTY DISPOSAL SERVICE,E3000\nSMALL BUSINESS OWNER,NORTHVIEW WINDOW & DOOR LLC,Y4000\nHENDRICK CHEVROLET,,T2300\n\"Vice President, Global Markets Financi\",Merrill Lynch,F2100\nROBERT DECRESCE,UNIVERSITY PATHOLOGISTS P.C.,Y4000\nCAPITOL TRUST,,Y4000\nChairman CEO,LEAF Financial Corporation,G5300\nEXECUTIVE,SONJU CORPORATION,Y4000\nPRESIDENT,ELY AND COMPANY INC.,Y4000\nREALTOR,DAVIDE REALTY,F4200\nATTORNEY,WEXLER & WALKER PPA,K2000\nPROJECT MGR,HCA,H2100\nGLACIER BAY FISH,,E4100\nBolt Group,,Y4000\n\"HARVEY'S AUTO SUPPLY\",,T2200\nPRODUCT MANAGER,INFOR GLOBAL SOLUTIONS,C5130\nSCHOTT FOUNDATION,,X4100\nAttorney,Gray Robinson Ryan & Fox,K1000\nRehabilitation Engin,State of North Carolina,J1110\nTEACHER,ACTON-BOXBOROUGH REGIONAL SCHOOL DISTR,Y4000\nfinance,\"Cardinal Point Capital, LLC\",Y4000\nASST. VICE PR,SWISHER INTERNATIONAL,A1300\nVICE PRESIDENT & CO,ACE GUARANTY RE,F3100\nTRUSTEE,PEBBLEBROOK HOTEL TRUST,F4100\nCHAIRMAN AND CHIEF E,BERGSTROM CORPORATION,Y4000\nMETRO-GOLDYN-MAYER,,C2400\nCEO,CATHOLIC HEALTH PARTNERS,H4500\nPHYSICIAN,PENNSYLVANIA HEALTHCARE ASSOCIATION,Y4000\nADVISOR,MATHEYS LANE CAPITAL MANAGEMENT L.P.,Y4000\nExecutive,J Fletcher Creamer & Son Inc,B3000\nRESTORE VISION CENTERS,SELF,Y4000\nReal estate broker,River Valley RE (self employed),F4000\nPresident,\"Amistad Freight Services, Inc\",Y4000\nTHE VANDE BERG WORLD REPORT,,C1100\nATTORNEY,SONKIN & KOBERNA CO,K1000\nINFO REQUESTED,WARNER BROS,C2000\nSPARKS STEAK HOUSE,,Y4000\nNATIONAL ELECTRIC COIL/EXECUTIVE /,,Y4000\nKITCH DRUTCHOS & WAYNN,,K1000\nPRESIDENT,WESTERN NATIONAL GROUP,F4500\nATTORNEY,CHRISTINA MELTON CRAIN  P.C.,K1000\nFOULGER PRATT COMPANIES,,Y4000\nADVERTISING AGENCY EXECUTI,RENEGADE,J1100\nOwner,Colvin Oil,E1100\nFarmer,Schultz Ranch Inc.,A1000\nBUSINESSMAN,SELF,G6500\nA & C UTILITIES SUPPLY CO,,Y4000\nDEPE DENE RESORT,,Y4000\nVP DEVELOPM,S.L. NUSBAUM REALTY CO.,F4200\nCOUNSEL,EXTELL DEVELOPMENT COMPANY,F4200\nEXECUTIVE,GOODYEAR,M1500\nOIL EXPLORATION,SOCO INTERNATIONAL,Y4000\nMGM GROUP OF COMPANIES,,Y4000\nProperty Manage,Erasmy & Associates,Y4000\nPARTNER,CPE CONSULTANTS,Y4000\nSETTLEMENT BR,EPS SETTLEMENTS GROUP,F3000\nATTORNEY,\"AUGHTMAN LAW FIRM, LLC\",K1000\nSURGEON,YANKTON BONE AND JOINT,H2100\nCHILD PSYCIATRIST-SELF EMPLOYED,SELF,H1130\nDOCTOR,UROLOGY SPECIALISTS,H1130\neconomsit,University of Vermont,J1200\nPRESIDENT/ CEO,ADVANTACH TECHNOLOGIES,Y4000\nCHIQUITA,,A1400\nPartner,Veritas,J7120\nN/A/UNEMPLOYED TEACHER,,F1100\nWOFFORD GLASS,,Y4000\nPRESIDENT,\"PRUESS ELEVATOR, INC.\",Y4000\nPRESIDENT,GAY & SON AGCY INC,F3100\nPhysician,\"Patricia S Mikes, MD, S\",H1100\nExecutive,Preferred One,Y4000\nEXECUTI,ST. JOHNS MERCY HEALTH CARE,H0000\nET SYSTEMS,,Y4000\nAttorney,Shearman & Sterling Llp,K1200\nMETROPOLITAN LIFE INSURANCE COMPANY,,J7400\nPresident,\"Rickenbacker Marina, Inc\",Y4000\nKING RESOURCES INC.,,Y4000\nRoad  Construc,Wingra Stone Company,B1500\nHOMEMAKER,,E1150\n\"Vice President, Offi\",Marquette University,H5100\nTeacher,Island Park Schools,Y4000\nPRESIDENT,THOMPSON REALTY CORP.,F4200\nSR ACCOUNT MANAGER,TARP WORLDWIDE,Y4000\nHOMEMAKER,CITIZENS FIRST BANK,F1000\nINVESTMENT BANKING,PAUL LEACH & CO,J1100\nOwner,Justice Finance Co,F0000\nSelf-Employed,DLK Enterprises,F4500\nInsurance Broker,Frase Yacht Insurance Services,F3100\nowner,HI TORQUE PUBLICATIONS & HI FAVOR,C1100\nSR. MANAGER,INTERIM SERVICES INC.,G5250\nFARMER,SALOPEK 6U FARMS,A1000\nCONSULTANT,IELAN CONSULTING,J1200\nEXECUTIVE,\"ENAGRA, INC\",Y4000\nCE,UNIVERSITY HOSPITAL OF CLEVELAND,H2100\nMarketing Manager,Organic Vintners,Y4000\nC.E.O.,KELLY AND ASSO. INC.,K2000\nATTORNEY,\"CARELLA, BYRNE, OLSTEIN, BRODY & AGNEL\",K1000\nSales,Corporate Safe,Y4000\nESL Teacher,Self employed,Y4000\nPARTNER,HARBOURVEST,F2600\nSHERMAN & WALDMAN,,K1000\nPS,CHARTER BEHAVIORAL HEALTH SYSTEM,H3800\nATTORNEY,UNGARETTI & HARRIS,J7400\nIBEW #3,,LC150\nStrategy Consulting,Bain & Company,G5270\nCUNNINGHAM MOVING/STG CORP./BOTH CO,,Y4000\nCOMPLIANCE MANAGEMENT,SELF EMPLOYED,Y4000\nvolunteeer,N.A.,Y1000\nATTORNEY-PSYCHOLOGY,,K1000\nPART TIME VOLUNTEER,KANSAS CITY CHILD PROTECTION CENTER,Y4000\nCEO,American National Bank,F1100\nMEDICAL DIRECTOR ANESTH,\"AMERICAN ANESTHESIOLOGY OF TEXAS, INC.\",H1130\nManager,\"Crown Roll Leaf, Inc.\",M2300\nBUSINESS OWNER,ARCHIVE MANAGEMENT ASSOCIATES T/A HILL,Z9500\nattorney,wachtell Lipton,Z9500\nATTORNEY,HEARN BRITTAIN & MARTIN,Y4000\nCOMPUTER ASSOC INTERNATIONAL INC,,C5100\nPresident,Avtivator,Y4000\nASSISTANT FEDERAL PUBLIC DEFENDER,UNITED STATES COURTS/ASSISTANT FEDE,X3200\nInvestment Manager,INTERNATIONAL FINANCE HOLDING,F1100\nATTORNEY,SAN MATEO COUNTY,X3000\nPRESIDENT,C.T.A.C.,Y4000\nSTATE STEEL SUPPLY CO,,M2100\nDEVELOPER,SOFTWARE,J1100\nSENIOR MANAGER,TIME WARNER TELECOM,C4100\nPRESIDENT,JEFFERSON HOMEBUILDERS,B2000\nHUMAN RESOURCES,FUTURES INC.,Y4000\nATTORNEY,\"HANSEN, JACOBSON ET AL.\",J1200\nPresident,NCUSCR,Y4000\nPresident,\"The Impressions Group,inc.\",Y4000\nATTORNEY,IUPA,Z9500\nPresident,Abcrn,Y4000\nAir Force Officer,US Air Force,J7120\nTRAFTON & MATZON,,K1000\nAttorney/Editor,Thomson Reuters,C1100\n\"DANNY'S CLEANERS\",,G5500\nLAND SURVEYOR,\"AMERICAN SURVEYING & ENGINEERING, P.C.\",B4300\nPRESIDENT & CEO,CENTER FOR STRATEGIC & INTL STUDIES,D3000\nINSURANCE SALES,SANGER & ALTGELT,F3100\nCOUNCIL UNIVERSITY MEDICAL COLLEGE,,H5150\nCAR DEALER,ELMIRA CHEVROLET,T2300\nPROJECT MAN,CORPORATION SERVICE CO.,Y4000\nOwner/Principle/Partner,B Daniel Door & Hardware,B2000\n\"MARKETING MGR, SOFTWARE PRODUC\",ADOBE SYSTEMS,C5120\nReal Estate,SACKETT CORPORATION,F4000\nOWNER,JELLY CAFE,Z9500\nMANAGER,FLYERS ENERGY,E1000\nCardiothoracic Surge,Carolina Cardiovascular Surgic,H1130\nYACHT MANAGER,J CLASS MANAGEMENT,J1200\nSORENSEN BROTHERS INC,,B1000\nATTORNEY,LENT & SCRIVNER,K2000\nVP of Community Development,Keiser College,H5200\nEQUITABLE REAL ESTATE INVEST MGMT,,F4000\nPARALEGAL,ALTAMURA & CROSSIN PA,Y4000\nFIXED INCO,ANHERST SECURITIES GROUP,Y4000\nManagement Consultants,Consulting Partners,Y4000\nsoftware engineer,Process Software,C5120\nENTREPRENEUR,SWAP SCRIPTS,Y4000\nATTORNEY,STERN & GREENBERG,K1000\nHuman Resources Officer,First Community Bank Silver Lake,F1100\nCONSULTING,ECS CONSULTING,Y4000\npres,Electric Service Group Inc,B3200\n\"VP LEGISLATIVE&GOVN'T AFFAIRS\",EAN SERVICES,T2500\nABRAMSON & CAREY,,K1000\nPresident,Novozymes,Y4000\nRETIRED,NONE (RETIRED FROM USN),X1200\nDENTAL HYGIENI,\"LAXER, LONG & SAVAGE\",Y4000\nArchitect,Diedrich LLC,Y4000\nCEO,Doctors Hospital at Renaissance,H2100\nTrout Unlimited,Coordinator,Y4000\nSVP CORPORATE D,INSIGHT ENTERPRISES,Y4000\nVIDEO EDITOR,IMAGE ENTERTAINMENT,Y4000\nMEZZANIN DEBT INVESTOR,SELF,Y4000\nNeurosurgeon,SCPMG,H1130\n\"Manager, Risk Manage\",Brown-Forman Corporation,G2820\nEducator,New York State United Te,L1300\nFRONTIER TRAVEL & TOURS,,T9400\nActuary,Travelers Insurance,F3400\nBAIL BONDSMAN,ALLEGHENY BAIL BONDS,G5000\nGRAYLINE TOURS,,T9000\nCert. Financial Plan,Self Employed,G0000\n\"PIO'S RESTAURANT\",,G2900\nCARGILL CORP,,A1000\nLOGISTICS UNLIMITED INC,SELF-EMPLOYED,Z9500\nEXECUTIVE,BUTTERFIELD & BUTTERFIELD,Y4000\nPHYSICIAN,LEADER SURGICAL CENTER,H3200\nCivil Engineer,Palmer Engineering Co,B4000\nC.O.O.,PPL/C.O.O.,E1600\nCARDIOVASCULAR DISEASE M.D.,MAYO CLINIC/CARDIOVASCULAR DISEASE,H2100\nLawyer,Macdonald Hoague & Bayless,K1000\nManagement Consulting,The Mejorando Group,Y4000\nManager - Financial Planning,Kaiser Permanente,H3700\nSenior Vice Presiden,Seitzer Inc,Y4000\nPresident,Ficht Services,Y4000\nOWNER,DAVISCO FOODS INTERNATIONAL,J1100\nPhysician,Southern California Kaiser Permane,Y4000\nSTEEPLECHASE VILLAGE,,J1100\nPresident,TBS Industrial,Y4000\nPOZZI DISTRIBUTORS,WENCO,Y4000\nPhysician Assistant,Redfield Medical Clinic,H2000\nArchitect,Design Group,Y4000\nConsultant,Jack Horner Consulting (Self),Y4000\nVICE PRESIDENT,WOOLPERT,B4000\nbusinessman,\"Syam Int'l Inc.\",Y4000\nSpecial Projects Man,Action Service Corporation,G5200\nDIRECTOR O,TEXAS INDEPENDENT ENERGY,E1000\nPILOT,AVIATION AIRLINES,T1100\nRETIRED,UNIVERSITY OF WIS,H5100\nPHYSICIAN,CARDIOVASCULAR ASSOCIATES,Z9500\nVP Sales & Marketing,Electric Insurance Group,F3100\nHORSE RANCHER,SELF,A3000\nCONSULTANT,C & G CONSULTING,Y4000\nVP,REPUBLIC BEVERAGE COMPANY,G2850\nEPSTEIN GIN CO & EPSTEIN,,F1100\nPHYSICIAN,123 PHYSICAL THERAPY LLC,Y4000\nPhysician,Family Med East Chtd,Y4000\nOrthopaedic Surgeon,\"First Settlement Orthopaedics, Inc\",H1130\nMANAGER,MN LIMITED,Y4000\nMOTOR WHEEL,,Y4000\nSwart Architects,Architect,B4200\nSUPERCONDUCTOR TECH INC,,Y4000\nEXECUTIVE,DMS STORE FIXTURES,M2300\nCHIEF ADMINISTRATIVE,SONY PICTURES ENTERTAINMENT,C2400\nChemist,\"Ortec, Inc.\",Y4000\nISMART LLC,,Y4000\nConsultant,Itt,Y4000\nRaymond James,Finance,J7400\nPRESIDENT,BREAD FOR THE WORLD,X4000\nPROJECT MGR,United Parcel Service,T7100\nOWNER,ELDRIN BELL AND ASSOC,Y4000\nPENN WAREHOUSE INC,,F5100\nTHE JOHN BUCK CO,,F4200\nTHE YORK WATER CO,,E5000\nROBT L MINER,,Y4000\nPHYSICIAN,WELLINGTON,Y4000\nCHIEF EXECUTIVE OFFICER,DOERLE FOOD SERVICE,Y4000\nPROPERTY MANAGEME,LAWRENCE J. OLSON,Y4000\nInsurance and Estate Planning,Self-Employed,F3100\nPRESI,SKEFFINGTON  DISTRIBUTING CO.,Y4000\nQUAIL LODGE INC,,Y4000\nFIRLDS & BROWN,,Y4000\nPresident & CEO,Independence Community Bank,F1000\nHOLIDAY INN EXECUTIVE CENTER,,T9100\nPresident,Ellenbecker Inv. Group Inc.,F7000\nCOMMUNITY MANAGER,\"PDS, INC.\",J6200\nBOSWELL ENERGY CO,,E1000\nRETIRED UNIVERSITY PROFES,NONE,JE300\nINSURANCE,A.O.N. RISK SERVICES,F3100\n\"GENE MCGILL'S & ASSOCIATES I\",,Y4000\nSTOCK BROKER,GRUNTAH & CO.,F2100\nCEO,\"DAR Public Relations, Inc\",G5210\nNEW CAR DEALER,WILEY AUTO GROUP,Y4000\nBOEING/ AUTOMETRIC/SR. IMAGE ANALYS,,D3000\nMACDONALD,,Y4000\nEditor/Publisher,Thrilling Wonder Llc,J1200\nCLEV CLINIC,,H2100\nREGISTERED INVESTMENT ADVISOR/MONEY MA,HANCOCK-SMITH L.L.C.,Y4000\nGardener,Master Gardening,Y4000\nPRESIDENT/OWNER,CERAMIC TECHNOLOGY INC.,Y4000\nContractor & Boat Builder,Self-Employed,Y4000\nMEDICAL AEROSPACE C,GRAGAN RESEARCH,Y4000\nExecutive/Retired,Self,G0000\nDATA ANALYST,MAMASOURCE.COM,Y4000\nAMERICAN PIONEER INSURANCE COMPANIE,,F3100\nFREEMAN HEALTH SYSTEMS,,H2100\nTEACHER,UND,H5100\nDOM BUILDERS,,Y4000\nSOCIAL WORKER,WESTWIND FOSTER,Y4000\n\"ASS'T. U. S. ATTORNEY\",UNITED STATES DEPARTMENT OF JUSTICE,X3200\nINVESTOR,SELF-EMPLOYED/INVESTOR,F2700\nCivil Engineer,Brown and Caldwell,Y4000\nMANAGER,ELLIOTT ADVISORS UK LTD,F2700\nMEDICAL TECHNOLOGIST,SABETHA COMMUNITY HOSPITAL,H2100\nEducator And Counselor,Self employed,H5000\nCOO & President,\"American Land Lease, Inc\",B2400\nATTORNEY,AMERICAN BANKERS ASSN.,F1100\nEXECUTIVE,FLIPSWAP INC,Y4000\nSystems Engineer,Kassys Group,Y4000\nTECHNOLOGY,CAPITAL MARKETS ACCESS PARTNERS,Y4000\nVice President,\"Cook & Riley, Inc.\",B0500\nREALTOR,STROYKE PROPERTIES,F4000\nCALOEIS ENGINEERING,,B4400\nARTIST,HOLY COW INC,Y4000\nPresident,T-mac Inc.,Y4000\nPARSONS BRINDENHOFF,,B4000\nMGR. DIR.,BLESSING PETRD. GRP LLC,J6200\nATTORNEY,\"JEFFREY L SKOVRON, PC\",Y4000\nROBBINS-GIOIA INC,,C5130\nRancher,Schott Limousine,Y4000\n\"Chief Operating Officer, Ice Cream\",Dean Foods Company,A2000\nATTORNEY,WICZER & ZELMAR,K1000\nJACKSON MEMORIAL HOSPITAL,,J7400\nOwner,\"Banyan's Bakery\",G2100\nPharmacist,Realo Discount Drugs,Y4000\nGENERAL MANAGER,CHIPPEWA VALLEY ETHANOL COMPANY,E1500\nPRIVATE CLIENT ADVIS,BANK OF AMERICA,F1100\nKORF INDUSTRIES INC,,J2200\nDealer Principal,Morgan Motors,T2300\nTHE NEWTON GROUP LLC,,Y4000\nCONCESSION SERVICES,,Y4000\nPRINCIPAL OWNER,THE ZAMOISKI GROUP,Y4000\nPARTNER ATTORNEY,\"WALLER, LUNDEN, DORTCH & DAVIS LLP\",K1100\nENGINEERING SUPERVISOR,CENG,Y4000\nSENIOR DEPUTY PUBLIC DEFENDER,COUNTY OF SANTA BARBARA,X3000\n\"STURGILL TURNER BARKER & MOLONEY, P\",,K1000\nINDEPENDENT SCHOOL DISTRICT,,X3500\nLAWYER,U.S. S.E.C,Z9500\nSUPERVISOR,COUNTY OF SACRAMENTO,Y4000\nMEDICAL TECHNOLOGIST,DEPARTMENT OF VETERANS AFFAIRS,X3000\nSvp - Finance,\"Hines Real Estate Investment Trust, In\",F4100\nDirector of Customer Operations,Comcast Cable,C2200\nM. D./Pathologist,None,H1100\nOwner,KWK Construction Inc.,B1500\nAttorney,\"Fredericks, Peebles and Morgan\",K1000\nVP SR,EP MERCHANT ENERGY N. AMERICA,E1140\nnone,none,G5270\nMONK,SYDA FOUNDATION,X4100\nUniversity of Delawa,Professor,J7400\nProfessor of Health,George Washington University,H5100\nFUQUA INDUSTRIES,,Y4000\nMEMPHIS GASTRO GROUP,,H1130\nMEMORIAL HERMANN HOSPI,,H2100\nMATERIALS MANAGER,COCA-COLA,G2600\nCEO,HNHfoundation,Y4000\nrestaurant owner,\"MARINO'S\",Y4000\nAttorney,Lattrop & Gage LC,K1000\nCHIEF EXECUTIVE OFFICER,\"I2E, INC.\",Y4000\nBUSINESS,FFD INC.,Y4000\nOWNER,PRINCE-BUSH-SMITH HOTELS,T9100\nPresident,A.H.E. D.,Y4000\nNEVADA RESORTS ASSN,,G6500\nProject Manager,Kroger,G2400\nMEMBER,\"BEATTY & WOZNIAK, P.C.\",K1000\nYouth Parde Auth Board Member,Utah State,Y4000\nmedia buyer,GMMB,G5210\nGIFTS GALORE,,Y4000\nAt Home mom,Unemployed,Y1000\nFinancial Planner,\"Accredited Investors, Inc.\",F0000\nARCHEOLOGIST,CRESCENT RESOURCES,F4000\nAttorney,\"Marisol,inc\",J1200\nOWNER,R M MANUFACTURING,Y4000\nBROKER,\"SOUTHPACE PROPERTIES, INC.\",F4000\nPresident & CEO,Integrated Nano-Technologies,Y4000\nOWNER,The Busch Firm,K1000\nSTAY AT HOME MOM TO ACTIVE DUTY HUSBAN,USAF,X5000\nSENIOR VP,\"BROADLANE, INC.\",H1100\nLANDSCAPE GARDENER,3 SEEDS,B3600\nDirector,Lyondell Chemical Company,M1000\nChairman of the Board,Perot Systems Corporation,C5130\nINSURANCE BROKER,CHUCK MEYER INSURANCE,F3100\nPRESIDENT,BARTLETT PROCESSING COS,A4000\nNABORS GIBLIN ET AL,,K1000\nGENERAL AGENT,GUARDIAN LIFE INS. CO./GENERAL AGEN,F3300\nM J CURRAN & ASSOC,,Y4000\nCommunications Direc,State of Connecticut,X3000\nC.P.A.,\"HABIF,AROGEI & WYNNE L.L.P.\",F5100\nTRANS-CARE AMBULANCE,,H3000\nTWIN LAKES TELEP COOPERATIVE CORP,,C4100\nConsultant,Advanced Datatools Corporation,Y4000\nMGMT CON,RE BROKER,Y4000\nPHYSICIAN,STEPHEN NELSON M. D.,H1100\nPRESIDENT,THE FULBECK CORPORATION,Y4000\nInsurance Broker,The Daner & Horey Company,Y4000\nATTORNEY,\"SUFIAN & PASSAMANO, LLP/ATTORNEY\",Y4000\nEXECUTIV,BRICK INDUSTRY ASSOCIATION,B5100\nSenior Policy Advisor,Patton Boggs,K1000\nR.N. Manager,MENTOR CORPORATION,Y4000\nSR. VP RAIL PRODUCTS,LB FOSTER CO.,M5000\nPresident,Consumer Credit Counseling Ser,F5200\n,NORTH CASCADE CARDIOLOGY (CO-OWNER,Z9500\nMechanical Engineer,WPS,Y4000\nCEO,MADISON DEARBORN PARTNERS LLC,F2600\nPHYSICIAN,NY PRESBYTERIAN HOSPITAL,H1100\n\"Author, Speaker, Organizational Develo\",The Reina Trust Building Institute,Y4000\n\"Ashbritt, Inc.\",,E2000\nEXTERNAL AFFAIRS,GENERATIONS OF HOPE DEVELOPMENT,Y4000\nAMERITECH,,C5100\nEPISCOPAL PRIEST,UNIVERSITY OF TEXAS MEDICAL BRANCH IN,H5150\nNORTHERN CALIFORNIA ANES PHYS,,H1130\nConsultant,Bergson & Company,Y4000\nCPA,CAUSEY DEMGEN & MOORE INC.,Y4000\nGENERAL COUNSEL,SERVICE CORPORATION INTERNATIONAL/G,G5400\nVP,Harvey Daco Advertising,G5210\nphysician,Mid Atlantic Spine,H1100\nWINDHAM COMMUNITY MEMORIAL HOSPITAL,,H2100\nWIKK INDUSTRIES INC,,Y4000\nEXECUTIVE COACH,PERFORMANCE SOLUTIONS,F1000\nAdministrator,Benton County Health Department,Y4000\nGLENDALE CITY COLLEGE,,H5100\nSALES,STRATIX CORP,Y4000\nOWNER,PALMETTO PROPANE,E1190\n\"VP of Gov't Relation\",Greystone Group,K2000\nAttorney,\"Carrington, Coleman & Blumenthal\",K1000\nNORTH SHORE SPIRIT/OWNER/MANAGING P,,Y4000\nSR. VP,MGIC,F4600\nJeweler,Hamilton Jewelers Pavilions,G4600\nRancher,C & G Ranch,A3000\nHOLGAR & ASSOCIATES,,Y4000\nAFFORDABLE HOUSING BUILDER,CATSPAW CONSTRUCTION CORP,B1500\nReal Estate Photography,Cookhouse Co,F4000\nJ P HORGAN,,F1100\nELLIS COMMUNICATING,,G5290\nEMPLOYER NETWORK COMPUTG SERVICES,,C5000\nCPA,BRADLEY ALLEN AND ASS.,Y4000\nINVESTOR,CONVERGENT ASSOCIATES,F7000\nMOVSOVITZ & SON,,Y4000\nACLU,,J7150\n\"Head of Helium, Hydrogen and TT Ops\",Linde LLC,M1000\nLAWYER,BERGER & MONTAGUE,K1200\nEXECUTIV,QUESTAR EXPLORATION & PROD,E1140\nCEO,Insurance Network of Texas,F3100\nATTORNEY/HEALTH CARE,RICHARD L. LEVIN & ASSOCIATES PLLC,Y4000\nEmergency Physician,CA Emer Phys Med Grp,H1100\nPresident,The Brownstein Group,Y4000\nVICE PRESIDENT,FARMERS BANK,F1000\n\"Vice President, Boeing Engine Programs\",GE Technology Infrastructure,M2300\nPHYSICIAN,ST JOHN HEALTH SYSTEM,H0000\n\"SENIOR VP, GOVERNMENT AFFAIRS\",DIRECTV,C2200\nManager,Spanish Town Farm Store ltd,Y4000\npresident/ceo,CTCA,Y4000\nAttorney,\"Schulte Rothe & Zabel, LLP\",K1000\n\"GEN MED SEV WILKES-BARRE GEN'L\",,J7120\nASSISTANT ADMINISTRATOR SSM FUND,STATE OF CONNECTICUT,X3000\nBroker,\"Pres, Bateman & Turner Insurance Agenc\",F3100\nPublishing,\"Performance Media Group, Llc\",Y4000\nDDS,FIRST IMPRESSIONS SC,Y4000\nBUSINESSWOMAN (SUPERCUTS),SELF EMPLOYED,G0000\nATTORNEY,\"SUSSMAN, SOLLIS, EBIN TWEEDY\",K1000\nPROFESSOR,BOSTON UNIV SCHOOL OF MEDICINE,H5100\nRamsey Enrilich LLP,,Y4000\nMUSIKANTOW CONSULTING,,T9100\nAssistant Office Manager,Requested,Y4000\nO,SOUTHWEST LIVESTOCK EXCHANGE INC.,A3300\nTRAINING CONSULTANT,FOUNDATION FOR A GLOBAL COMMUNITY,Y4000\nALLIED HOME WARRANTY,,Y4000\nPARTNER,PHOENIX LABS,Y4000\nCITIBANK CORP,,F1100\nPUBLISHING EXECUTIVE,CCI,Y4000\nPresident,NCI Building Systems,J1100\nPRESIDENT A,VANTAGE FINANCIAL GROUP,F0000\nCardiologist,Blvestem Cardiology,H1130\n\"TRIPP, SCOTT, CONKLIN, S\",,K1000\nEXECUTIVE,GREAT EASTERN COLOR LITHO CORP./EXE,C1300\nNon-profit consultant,Self Employed,X4000\n\"Director of Gov't Affairs\",Michigan Pharmacists Assn,Y4000\nAttorney,\"Hughey Law, PC\",K1000\nADMINISTRATOR,\"LIVING ASSISTANCE SERVICES, INC\",H2200\nPHYSICIAN,CAREMONT MEDICAL GROUP,Y4000\nPHYSICIAN,HAMILTON NEPHROLOGY,H1130\nTHOTIS INSURANCE,,F3100\nTEACHER,TORREY PINES,X3500\nMERCHANDISE STORE OWNER,,G4000\nOwner,Fit for Life,Y4000\nBANC CORPORATION,,F1100\nAtty,Gregory R Giometti&asst P,K1000\nOPERATIONS R,JACK DANIEL DISTILLERY,G2820\nCHUGACH ALASKA,,F4100\nTEACHER,FAIRFAX COUNTY PUB. SCHOOLS,Y4000\nOwner,Natali Properties,F4000\nPARTNER,MAINEASIA LLC,Y4000\nCONTRACTOR,\"HIDANO CONSTRUCTION, INC.\",B1500\nGORDON-PLATT ENERGY,,E1000\nMANISTIQUE AREA SCHOOLS,,X3500\nANIMATION DIRECTOR,FOX ANIMATION,Y4000\nTechnical Writer,\"Active Circle, SA\",Y4000\nSelf Employed,\"Calvin'S Electric, Ltd.\",B3200\nOWNER,SNOW TIME INC.,Y4000\nHuman Resources Mana,Sears,G4300\nAttorney,Skidda Avps,K1000\nDIRECTOR,MAHOUSE OF REPS,X3000\nEconomist,Western Carolina Univ,H5100\nC.P.A.,\"O'CONNER DAVIES\",Y4000\nSENIO,MEAKEM BECKER VENTURE CAPITAL,F2500\nREAL ESTATE,HAWLEY REALTY CO,J7400\nTechnician,American University,H5100\nlabor representative,Laborers Local 777,J1200\nREAL ESTATE BROKER,SEABOARD COMMERCIAL PROPERTIES,F4000\nINVESTMENT ANALYST,\"HMC-NY, INC.\",Y4000\nVICE PRESIDENT,CALIFORNIA PORTLAND CEMENT COM,B5100\nDISTRICT COUNCIL NO 5,,Y4000\nFLUEGEL LAW OFFICE,,K1000\nLIBRARY DIRECTOR,ROGERS FREE LIBRARY,Y4000\nConsultant,\"Panza, Maurer & Maynard\",K1000\nEXECUTIVE,TROUTMAN SANDERS,K2000\nVENTURE CAPI,BURCH INVESTMENT GROUP,F0000\nLawyer/Administrator,DC Access to Justice Commission,Y4000\nGREENWOOD PACKING,,Y4000\nPROPERTY MANAGER,DALTON HOTEL CORP,T9100\nOwner,Diana Durham,Y4000\nSpouse,Self Employed,F2300\nMEMBER DART,INVESTOR,Y4000\nBEN J JHUN CPA,,F5100\nINFO REQUESTED,MODULAR MUD LABS LLC,Y4000\nTRAINING CONSULTANT,SCOTT INDUSTRIAL SYSTEMS/TRAINING C,Y4000\nPartner,Plaster & Associates LLC,K2000\nOwner,Robert E Blake Dds,H1400\nMACRO YOGA LLC/OWNER/OPERATOR,,Y4000\nNICHOLAS TURKEY FARM,,Y4000\nOWNER,LONE STAR WHOLESALE,Y4000\nROBERT G MCGRAW CO,,Y4000\nVice President,Comprehensive Community Svcs.,Y4000\nSPINELLI PIZZA,,G2900\nINSURANCE,GILBERT KRUPIN,F3100\nPHYSICIAN,UNION NEUROSURGERY,H1130\nPRESIDENT,\"ROSS FINANCIAL SERVICES, INC.\",Y4000\nBANKER,NORTHERN TRUST/BANKER,F1100\nCARSON FISHER PLC,,Y4000\nAttorney,\"Bruce A. Rogers, P.A.\",Y4000\nCONCRETE SEALANTS INC,,M1700\nDIAGNOS,UNIV OF MISSOURI - COLUMBIA,H1130\nLawyer,Honigman,K1000\nUW-STEVENS PT,,J9000\nJHL CONSULTING,,Y4000\nInvestor,ROUND TABLE HEALTHCARE PARTNERS,F2100\nMAX UNITED REALTY,RE,F4200\nLOWER MERLON TOWNSHIP,,X3000\nConsultant,Selk,Y4000\nCITY COUNCIL MEMBER,CITY OF HAYWARD,X3000\nCYPRESS FINANCIAL,,F0000\nTelevision Producer,Caris Media,Y4000\nPRESIDENT,THE DOERRER GROUP,Y4000\nINVESTMENT MANAGEMENT,AVENIR CORP.,Y4000\nPublic Policy,\"Baker,Donelson et al\",K2000\nPROPERTY MANAGER,JBR DEVELOPMENT CO,Y4000\nPERRIN FORDREE & ASSOC,,F5100\nTHE MACK LAW FIRM,,K1000\nPHYSICIAN,ORTHOPAEDIC INSTITUTE FOR SPIN,H1000\nCOUNTY OF SAN DIEGO PUBLIC DEFENDER,,Y4000\nATTORNEY,GRAZZOTHILL P.C.,Z9500\nZIMPRO,U S FILTER,M4000\nAttorney,\"Kevin F Jursinski, PA\",Y4000\nPHYSICIAN,SLEF,H1100\nLIFETRUST INC,,Y4000\nPRESIDENT,D.F.I.,J1100\nBroker,Self - Commodities Broker,F0000\nBUS,GREENLAWN TRANSIT,T4100\nCO-OWNER,BROOKSHIRE PROVINET SOLUTIONS,H2200\nATTORNEY,\"LATTIE, MARENGO, LIBERTINO\",Y4000\nR+M CREATIVE,,Y4000\nlerning consultant,retired,J7400\nLACROSSE FOOTWEAR INC,,Y4000\nRetired,contra costa county,X1200\nFoundahn Dive Cm,Exec,G0000\nAttorney,\"HSSK, LLC\",Y4000\nSALES MANAGER,RICKENBAUGH  CADILLAC,T2300\nGRIEF COUNSELOR,SELF,Y4000\nADMINISTRATIV,UNIVERSITY V.W. MAZDA,T2310\nCoo,Wendys International Inc.,G2900\nAttorney,Maricopa City,Y4000\nCeo,Summit Maintenance Inc,Y4000\nBusiness Owner,H & D Concrete,B5100\nPRINCIPAL,GUARDIAN LIFE INSURANCE,F3100\nInsurance Executive,New Jersey Manufacturers Insurance Co.,F3100\nCHEIF EXECUTIVE OFFICER,C.I. HOST,C5130\n,WOMENS ORG FOR EDUCATION RESOURCES,Y4000\nFarmer,Boyce Resource Development,Y4000\n\"Senior Vp, Corporate\",Schaller Anderson,G5270\nVice President,Escgov,Y4000\n\"VERNER, WIPPERT\",,K1000\nSICAMORE VENTURES,,F0000\nPEND ORIELLE BANK,,F1000\nASPEN INSTITUTE,,X4000\nJONES BLECHMAN WOLTZ KELLY,,Y4000\nC.E.O.,TRANS AMERICAN C.H.B. INC.,Y4000\n\"KRUPNICK, CAMPBELL, MALONE & ET AL\",,K1000\nCOMPOUND TECH,,Y4000\nInvestor,Vaughn Petroleum Inc.,E1100\nPHYSICIAN,SANTA LUCIA MEDICAL GROUP,H0000\nCurator,American Antiquarian Soc,Z9500\nSOFWARE ENGINEER,\"CONCUR TECHNOLOGIES, INC\",C5120\nRancher,Dos Pesos Ranch,A3000\nCHEM,BROOKHAVEN NATIONAL LABORATORY,H3000\nREAL ESTATE BROKE,STEED REAL ESTATE,F4200\nANALYST,NM DEPARTMENT OF VETERAN AFFAIRS,Y4000\nMANAGER,EXEL LOGISTICS,Y4000\nOwner,Ogar Architect,B4200\nLEGAL ADVISOR,THE INTL CTR,Y4000\nCONSULTANT,NAHIGIAN STRATEGIES,K2000\nOWNER,ARLINGTON COUNSELING & THERAPY,Y4000\n\"SIEGEL, KELLEHER & KAHN\",,K1000\nBON TON STORES,,Y4000\nAttorney,Murphy Reid,Y4000\nRespiratory Therapist,United States Air Force,X5000\nCONSULTANT DRILLING ENGINEER,SELF (CURRENTLY THROUGH SENERGY INTERN,B4400\nGULFSTREAM AEROSPACE,ENGINEER,B4400\nLecturer,The University of Michigan,Z9500\nGLEASON FINANCIAL,,G2400\nJOHN J MCMANUS & SONS,,Y4000\nEXECUTIVE DIRECTOR,CARS,Y4000\nME,\"QUALITY ASSURANCE SERVICES, INC.\",Y4000\nAUDITOR,STATE OF CA,J7400\nWALNUT AUTO BODY SHOP,,T2400\nOil Producer,FAIRFAX ENERGY CORPORATION,E1100\nATTORNEY,COVINGTON AND BURLING LLP,K2000\nAttorney,Kemoss Haeger Todd & Evans,Y4000\nBUSINESS OWNER,VICOM,Y4000\nCHIEF FINANCIAL OFFICER,INFORMATION REQUESTED PER BEST EFFORTS,G0000\nMANAGEMENT,LIONSGATE,Z9500\nInsurance Agent,Sanbuck Inc.,F3100\nSALES,DATALINK CORPORATION,Y4000\nMANAGER,\"RAM JACK OF SOUTH CAROLINA, INC.\",Y4000\nAEGEAN MARINE PETROLEUM NETWORK INC,,Y4000\nPEABODY CONSTRUCTION COMPANY,,J7400\nPHYSI,DAYTON CANCER CENTER HOSPITAL,H1100\nOCCUPATIONAL THERAPIST,CAREN PETERS,Y4000\nPHARMACY TECH,C.V.S.,G4900\nPROSKAUER ROSE GOETZ & MENDELSOHN,,J1200\nFilmmaker,\"Shangri-La Films, LLC\",C2400\nEDS,,J7400\nExecutive Director of Development,Norwalk Community College,H5100\nSales,Cessna Aircraft,T1200\nTechnology,Self employed,G0000\nSPORTS MANAGEMENT,\"WGL MANAGMENT, INC.\",Y4000\nFILMMAKER,SELF,C2400\nINTELLISYSTEMS INC,,Y4000\nINSURANCE BROKER,GAB ROBINS NA,F3100\nTeacher/Coach,Fenwick High School,Y4000\n\"VALASSIS COMMUNICATIONS, INC\",,C1100\nCHAI,ASSOCIATED SERVICE CORPORATION,Y4000\nPRESIDENT,TAMPA STEEL,M2100\nSelf/Veterinarian,,\nSENIOR VICE,MARKETING DRIVE U.S.A.,Y4000\nPRESIDENT AND CEO,STANDARD CONCRETE PRODUCTS,B5100\nHUMAN RESOURCES,KEN AMERICAN CORP.,Y4000\nASSOCIATED GENERAL AGENCY INC,,F3100\nGovernment Relations,Experian North America,F5200\nOFFI,MID-ATLANTIC DAIRY ASSOCIATION,A2000\nMMM-INVEST INC,,H2200\nEXECUTIVE,ALLIED ADVERTISING AGENCY,G5210\nDIRECTOR OPERATIONS,COLORSPACE INC,Y4000\nOwner,Ted Johnson Propane,Y4000\nCFO,CELTAXSYS,Y4000\nMONROE GUARANTEE,,F3100\nOwner,A-Pass Weikel,Y4000\nGENERAL ATOMICS/PRESIDENT/CEO,,E1320\nBASHA GROCERIES,,G2400\nNORSTAR FINANCIAL GROUP,FLEET,F1100\nRADIATOR SPECIALTIES,,Y4000\nLAWYER,DECHERT L.L.P.,K1000\nAttorney,INVESTOR FORCE. INC.,K1000\nLand Development,Gus Montemayor & Associates,Y4000\nAttorney,Bryon Cove LLp,Y4000\nOSTENDORF-MORRIS,,Y4000\nABM,,Y4000\nPresident/CEO,\"Calise & Sons Bakery, Inc\",G2100\nSENIOR ADVISOR,DISRUPTOR INC.,Y4000\nPRESIDENT GEN MANAGER OWNER,,Y4000\nElectronic Installer,Self employed,Y4000\nCOLLEGE PROFESSOR,UNNIVERSITY OF MARYLAND,Y4000\n\"GERTLER, GERTLER\",,K1000\nEXECUTIVE,ELLIOT MGMT. CORP.,F2700\nOwner,The Radar Group,Y4000\nPROFESSOR,NCA/PROFESSOR,Y4000\nHedge Fund,Strategic Value Partners,Y4000\nOWNER,ADDISON`S AUTO CTR.,T2000\n\"Director, Fed Govt Affairs\",Comcast,C2200\nATTORNEY,SILVER & ARCHIBALD LLP,Y4000\nBROKER,ROLL & ROSS ASSET MONEY,Y4000\nASSISTANT ATTORNEY GENER,COMM OF MA,X3000\nbusiness executive,Overseas Services Corp,G2500\nattorney,William A. Gallina,K1000\nGABY JUNIORS,,G4100\nVP - SERVICE DELIVERY,\"HCA, INC.\",H2100\nChief Operating Officer,AT&T Broadband,C2200\nJOHN T HUGGHINS DENTIST,,H1400\nInvestment Banking,RBC Capital Markets,J1200\nCEO,HAMMER CONSTRUCTION/CEO,B1500\nCNRA,NORTH TAMPA ANESTHESIA CONSULTANTS,H1710\nEngineering Manager,Optisolar,Y4000\nUNITED ELECTRIC CO,,B3200\nReceptionist,Columbia Co.Comm. Healthcare,Y4000\nPRESIDENT,??.. INUPIAT CORPORATION,Y4000\nREAL ESTATE AGENT,CLAREMONT REALTY,F4200\nPRESIDENT & CEO,DUTY FREE AMERICAS,G4000\nPRESIDENT,,G4000\n\"Chaplain, resident\",Hospital of University of Pa,H2100\nReal Estate,Birchwood Acres L.P.,Y4000\nDirector,Integra Realty Resources,H2200\nPT LIBRARIA/HOMEMAKER,LOMPC PUBLIC LIBRARY,J1100\nREAL ESTATE,CASTER PROPERTIES,Y4000\nOWNER,SOUTHWORTH MILTON INC./OWNER,Y4000\nGeneral Counsel/Corp,E*Trade Financial,F2100\nPHYSICIAN,MID-TN BONE & JOINT,Y4000\n\"SVP, CFO\",NY Public Library,X4200\nFinance Driector,Health Initiatives for Youth,J1200\nPHYSICIAN / SOCIAL W,DAPS / SELF,Y4000\nHealth Care Administ,MCG,Y4000\nENGINEER,ACUSON,J7400\nFirst Selectman,Town of Fairfield,X3000\nGREAT WESTERN MEAT CO,,G2300\nInformation Requeste,Owner-Construction,B1500\nPHARMACIST,INOVA HEALTH SYSTEM/PHARMACIST,H0000\nSVP,RVI GROUP,G5300\nATTORNEY,HILLIS CLARK,K1000\nHead of Lower School,Grace Church School,X7000\nPRESIDENT,RIVERSIDE MANUFACTURING/PRESIDENT,M3100\nBELL FUELS INC,,Y4000\nAVIATION SERVICES,SKYFIT,T1400\nREALTOR,LIPTON REALTY,F4200\nSALES ADMINISTRATION,SMARTECH INTERNATIONAL,Y4000\n\"VP, Leasing Division\",KRONOS INCORPORATED,G5300\nMANAGEMENT,\"SEBRIGHT PRODUCTS, INC.\",Y4000\nChief Marketing Officer,Sterling National Corporation - a Memb,F4600\nPRESIDENT,CALIFORNIA DESIGN COLLEGE,H5200\nOwner,Seafood Processing Plant,G2350\nATTORNEY,\"PAUL S. WETHER, LLC\",Y4000\nPresident,American Shipbuilding Association,T6100\nProfessor retired - SIUC,SIUC - Professor retired,X1200\nOWNER,BLUE RIDGE DRILLING,Y4000\nSenior Associate,Capitol Health Group,K2000\nExecutive,G. Stewart Hall & Assoc.,K2000\nSubcontractror,Self Employed,Y4000\nHorwitz Law Firm,,K1000\nCONSULTANT,CAD/CAM PUBLISHING,Y4000\nATTORNEY,EK & EK PUBLIC ADVOCACY,Y4000\nSVP OPERATIONS,AMYRIS,Y4000\nLOBBYIST,TIMBER CREEK GROUP,K2000\nAttorney,\"Marcus, Errico, Emmer & Brooks, PC\",Y4000\nPresident,PSC Security,Y4000\nINVESTMENT MANAGEMENT,JLEM INC,J1100\nEXECUTIVE,PB,Y4000\nLAWYER,SULLIVAN & CROMWELL LLC,K1000\nOWNER,WEGMANS CONSTRUCTION,B1500\nACTOR-WRITER,VARIOUS,J7400\nATTORNEY,BARTLIL BECK HERMAN ET AL,K1100\nHomemaker,n/a,G5800\nPATHOLOGIST,HOOSIER PATHOLOGY,H1130\nEDITOR,HOUGHTON MIFFLIN CO,C1100\nPresident,The Compounding Shoppe,G1200\nReporter,Bloomberg News,Y4000\nSYSTEMS PAINTING,,B3000\nSOFTWARE ENGINEER,IQ TECHNOLOGY,Y4000\nPresident/CEO,\"Aging in America, Inc\",Y4000\nANDYNE,,Y4000\nDETROIT FARMING INC,,A1400\nTHE AUCTION BLOCK CO,,G5000\nResearch Scientist,U of MD,J7400\nFinancial Advisor,JF Captial Advisors LLC,Y4000\nGENERAL PARTNER,SPARK CAPITAL,F0000\nANDERSON NAUHEIM,,K1000\nSYSTEMS DOCUMENTATION,,J7300\nACCOUNT DEVELOPMENT M,HERMAN MILLER,M4000\nBUSINESS MANAGER,DUPONT,M1000\nDRIANO & SORENSEN,,Y4000\nEXECUTIVE,CTE ENGINEERING,B4400\nATTORNEY,\"JACOBSON & RATZEL, P.A.\",K1000\nSO CAL EDISON,,Y4000\nBUSINESS O,COMMERCIAL CAPITAL CORP.,F1400\nNot employed,,H3700\nACTOR,N/A/ACTOR,C2900\nHORMEL,,G2100\nWRITER ACTIVIST FOR T,SELF-EMPLOYED,C1100\nCLASSROOM TEACHER,MARS AREA SD,L1300\nCONSULTAN,CROSSROADS STRATEGIES LLC,K2000\nChief of Marketing,Cancer Center of America,H2000\nOLDS,POYNTER CHEVEROLET,Y4000\nReal Estate Broker,Rita Realty Inc.,J5000\nORIENT OVERSEAS,,Y4000\nPBS REALTY,,F4000\nANALYST,U. OF PA,H5100\nACTOR,THOMAS ARNOLD,Y4000\nREQUESTED,SELF-EMPLOYED,J1100\nCEO,Windward Studios,Y4000\narborist,Graf Tree Care,Z9500\nCHIE,EVANGELICAL COMMUNITY HOSPITAL,H2100\nMUNICIPALITY OF CAGUAS,,X3000\nBREWER & PRITCHARD,,K1000\nLAWYER,BOWMAN AND BROOKE LLP,K1000\nPHYSICIAN,SHORE FAMILY PRACTICE,Z9500\nPHYSICAL THERAPY STUDENT,,Y4000\nWAGGENER & EDSTROM,,Y4000\nHOSUEWIFE,NA,Y1000\nCARLIN COMPANIES,,Y4000\nINSURANCE CONSULTING,GUARDIAN LIFE INSURANCE CO,F3100\nBOWNER PRINTING CO,,C1300\nAgent,Hornig Insurance Agency,F3100\nPRESIDENT,LEEDS MATTRESS STORES,Y4000\nCHIEF EXECUTIVE OFFICER,KING WORLD PRODUCTIONS,C2300\nExecutive,Philadelphia Medical Billing,Y4000\n,UNIVERSITY OF DISTRICT OF COLUMBIA,H5100\nCeo,Natural Alternatives International,H4300\nENGINEER,C.D.M SMITH,B1000\nOWNER,\"FENN FOODS, INC\",Y4000\nPARTNER,FERRARI PARTNERS LP,Y4000\nSRDIRECTOR BUS OPERATIONS,PFIZER INC,H4300\nORTHO CLINIC OF SALINA,,H1130\n\"Rocky ML Children's\",Attorney,K1000\nPRESIDENT,ECPI COLLEGE OF TECHNOLOGY,H5300\nBUSTERS LIQUORS,,Y4000\nRealtor,ReMax Good Earth Realty,J9000\nCeo,Tsi International,Y4000\nPENDERGRASS INVSTMTS,,Y4000\nINVESTOR,BARRIER FREE FUTURES,Y4000\nCHAIRMAN,SAMSON INVESTMENTS COMPANY,F7000\nSocial Worker,Ucan,Y4000\nNATIONAL SERVICE INDUSTRIES,,M0000\nPresident,Ohio Aerospace Institute,Y4000\nRegistered Nurse,UCSF Medical Center,H2000\nCEO,TELOSA SOFTWARE,C5120\nCFO,PLASTIC FUSION,Y4000\nNUCLEAR PROMOTION,,Y4000\nDANIELLE ASHLEY ADVERTISING & PUBLI,,G5210\nOwner,California Memorial Group,Y4000\nCITRUS GRO,CERTI-FINE FRUIT COMPANY,A1400\nW B MCKEE SECURITIES,,F2100\nSELF EMPLOYED,PRAIRIE DOG MGT,Y4000\nPUBLIC RELATIONS,SANDERS,Y4000\nPresident & CEO,Pathway Genomics,H3000\nOwner,Chromba Inc,Y4000\n\"PIPER, JAFFRAY COS\",,F2100\nPRINCIPAL,LINN MAR,Y4000\nSUPPES INC,,Y4000\nP JAMES VOLOSHIN M D,,H1100\nCONSTRUCTION MANAGEMENT,SELF/AAC & ASSOC LLC,B4000\nconstruction,Jeff Thomas Contracting,Y4000\nPHYSICIAN,DIAGNOSTIC CLINIC,H1100\nQuantitative Strategist,Morgan Stanley,F2300\nPRIVATE INVESTMENT,VERHAAREN COMPANIES/PRIVATE INVESTM,Y4000\nAttorney,Jeffrey M Goldberg Law Off,K1100\nAttorney,\"Mattleman, Weinroth & Miller, PC\",K1000\nManaging Partner,Tarameen LLC,Y4000\nHOLISTIC HEALTH CONSULTANT,SELF,Z9500\nOWNER,WONDERFUL HOUSE RESTAURANT,G2900\nCALLAWAY SALES,,Y4000\nPRESIDENT,REW LANDSCAPE CORPORATION,Y4000\nPRINCIPAL,\"VIP LIBERTY, LLC\",Y4000\nKENOSHA FIRE DEPT,,L1400\nFlight Attendant,Self,T1100\nATTO,HARRIS JERRIGAN & GENOP L.L.C.,K1000\nINDUSTRY CONSULTANT,LMF CONSULTING,H4100\nTTUHSC,,H2100\nUNIVERSITY OF MICHIGAN/SURGEON/PROF,,H5100\nVICE PRESIDENT,TUFTS UNIVERSITY,H5100\nPR,RUBBER MANUFACTURERS ASSOCIATION,M1500\nJOHN NOEL COMPANY,,JE300\nACCOUN,NC MUTUAL WHOLESALE DRUG CO.,Y4000\nCARROLL CARROLL & BUTZ,,Y4000\nInformation Requeste,JR & Sons Precast,B5100\nSUN WORLD,,Y4000\nAttorney-Tv Judge,Sony,C5000\nHAMBURG RUBIN MULLIN MAXWELL &,,K1000\nPHYSICIAN,UNIVERSITY OF VERMONT/PHYSICIAN,H5100\nSHOP MANAGER,JIM HENSON COMPANY,C2300\nCHOCK FULL OF NUTS CORP,,Y4000\nComputer Programmer,University Of Washington,H5100\nPRESIDENT,SMALL BUS. INVESTOR ALLIANCE,F2500\nPresident,\"Hopwood, Inc\",E1500\nOWNER,\"PEARLSTINE DISTRIBUTORS, INC\",G2850\nDAVIS SPAERSTEIN & SALOMON,,K1000\nTelecom Analyst,Windstream,C4100\nBRITE O MATIC,,Y4000\nMETALLICS SYSTEMS CO LP,,M5000\n\"REG PRES, ILLUMINATING CO\",FIRSTENERGY,E1600\nContractor,Clausen & Sons,Y4000\nChairman & CEO,\"The Cameron Companies, LLC\",Y4000\nOrthopedic surgeon,Midwest Orthopedic Institute,H1130\nATTORNEY,STRADLING YOCCA,Y4000\nPHARMACEUTICALS,SANOFI,H4300\nINVESTMENT BANKER,SELF,Z9500\nEducational Admin.,Hollins University,J7400\nZEITNER & SONS INC,,T3100\nSENIOR PARTNER,\"NOVICK, EDELSTEIN, LUBELL, REISMAN, WA\",Y4000\nOwner,Mc Gills Muffler Shop,Y4000\nREPRESENTATIVE,FMI,Y4000\nOWNER,NEW MEXICO TEXAS COACHES,Y4000\nBUSINESS OWNER,CMI LIMOUSINE,T4200\n,ASSOCIATED COLLEGES OF THE MIDWEST,H5100\nEXPLORATION/DEVELOPM,STERLING PETROLEUM,E1100\nFARMER,RENEWABLE RESOURCES GROUP,K1000\nPresident,Custom Carpet And Interiors In,Y4000\nPhysician,Selina Regional Health Center,H1130\nOWNER,DATA PROCESSING,C5130\nBuilder,\"Ed Johnson Cons. Co., Inc.\",Y4000\nRetired,Kaspick & Company,F3100\nRANCHER,self,J1100\nTHE HAMLIN SCHOOL,,H5000\nCEO,NANO HEALTH SCIENCES,Y4000\nOwner,CRO Corp,Y4000\nChief Financial Offi,Terre Haute Regional Hospital,H2100\nINVESTMENT BAN,PACKERKANE & CO. INC,F2300\nSOFTWARE ENGINEER,AVM SOFTWARE,Z9500\nCARDINAL VENTURE,,F2500\nSTUDENT,STUDENT/STUDENT,H3100\nARCHITECT,JUNE STREET ARCHITECTURE,B4200\nAttorney,\"Schverman, Bikkal and Sandbey\",K1000\nPARTNER/COUNSEL,CONSTANTINE CANNON LLP,K2000\nCATEG,GENERAL NUTRITION CORPORATION,H4600\nPHYSIC,CORNERSTONE PHYSICAL THERAPY,H1700\nSTATE AID CONSULTANT OF SCH. N,SELF EMPLOYED,Y4000\nFEED MERCHANDIS,FARMERS COOPERATIVE,E1500\nACKERMAN MANAGEMENT INC & A & P REC,,Y4000\nHIGH TOUCH INC,,Y4000\nAhg.Inc,,Y4000\n\"JAY'S SPORTING GOODS\",,G4600\nRYAN-PARREIRA & CO,,Y4000\nHuman Resources,Sears,Y4000\nSales,The Penn Companies,Y4000\nPublishing,Atlantic Media,Y4000\nTER HORST LAMSON & FISK,,Y4000\nUNIV OF MASSACHUSETT,,H5100\nRG DICKENSON,,Y4000\nPartner,Capitoline Consulting,K2000\nMusician,The Ceveland Orchestra,Y4000\nPAUL BERKMAN & CO,,F2100\nEXEC. VP,RESOURCE MANAGEMENT,A5000\nCHIEF FINANCIAL OFFICER,CANANDAIGUA WINE COMPANY,G2800\nMGR FINANCI,ASTORIA FEDERAL SAVINGS,F1200\nOffice Manager,F.D.I.C.,X3000\nSR. VP & GENER,MCKESSON CORPORATION,H4400\nFACE & BODY DAY SPAS,,G5800\nAttorney,\"Marks & Harrison, P.C.\",K1100\nPHYSICIAN ASSISTANT,NOBLE COMMUNITY CHOICE PROVIDERS,Y4000\nPrivate Equity,Lightyear Capital,Z9500\nPresid,Flutie Entertainment Usa Inc,Y4000\nSTREET & SON CONST CO,,F4200\nWATTS & WATTS,,Y4000\nCOMPTROLLER,MANHATTAN FORD LINCOLN INCORPORTATED,Y4000\nFINANCIAL CONSULTANT,ORION FINANCIAL CORP.,Y4000\nENGINEERING AGGREGATES CO,,B5100\nFACILITY ENGINEER,LOWER FOODS STORES INC.,J6200\nBuisness Manager,Self-Employed,G0000\nVALLEY PRESCRIPTION SERVICES,,Y4000\nLANDAUER ASSOCIATES,,Y4000\nENGINEER,SCHORR DEPALMA,B4400\nCAMPOS CONST CO,,Y4000\nEXECUTIVE DIRECTOR,ARIZONA PSYCHOLOGICAL ASSOCIATION,J7400\nManager and Producer,Tried & True Records,Y4000\nCONSULTANT,GUARANTEE ELECTRIC COMPANY,B3200\nDIAGNOSTIC RADIOLOGIST,NORTHWESTERN MEDICAL FACULTY,H1130\nGOVERNME,PRESTONGATESELLIS ROUVELAS,K2000\nClaims Coordinator,Manhattan Insurance,F3100\nGRAYBAR ELECTRIC CO,,M2300\nRegional Manager,National Carport Industries,Y4000\nSCOTT LK BAPTIST CHURCH PAS,,X7000\nCHEF,OAKRIDGE CONFERENCE CENTER,Y4000\nRETIRED EXECUTIVE,NONE,X1200\nPsychotherapist,Nielson Nrg,Y4000\nC.E.O. FUNERAL DIRECTOR,RUTHERFORD FUNERAL HOMES,G5400\nAdmin,University of Hawaii,H5100\nREALTOR,JOSEPH BARNETT,J1100\nATTORNEY,\"DOERNER, SAUNDERS, DANIEL & ANDERSON,\",Y4000\nDirector of Finance & Administration,Aspiriant,F5500\nREALTOR,DILBECK REAL ESTATE,F4000\nEXECUTIVE,\"TUMI, INC.\",Y4000\nSelf-Employed,ATTORNEY,K1000\nPUBLIC CITIZEN,,Z9500\nPresident,Consolidated Packaging Inc,Y4000\nEngineer,\"Stoke, Inc\",Y4000\nATTY - PARTNER,COVINGTON BURL,K1000\nASSOCIATE JUDGE,STATE OF ILLINOIS,X3000\nChief Accounting Off,\"HCA, Inc.\",H2100\nSTRATEGIC ALLIANCE MANAGER,JOY GLOBAL,E1240\nOWNER,\"DW CAMPBELL OF ATLANTA, INC.\",Y4000\nDEER RUN BED & BREAKFAST,,T9100\nROGERS SUPPLY CO,,Y4000\nOwner,Simpson Furniture,Y4000\nCHAIRMAN,BODLEY GROUP,G2000\nFOREST MANOR N HOME,,H2200\nREAL ESTATE,MCMAHAN GROUP LLC,Y4000\nAdministrator,\"Governor's Office State of NC\",Y4000\nTRIAN ARTIST,,G5210\nIT,Merck,H4300\nPRESIDENT S&NG,SAIC,D3000\nINVESTMENT BANKER,41 NORTH ADVISORS,Y4000\nCONSULTANT,EDK ASSOCIATES INC.,Y4000\nCORPORATE MANAGEMENT,CITATION TOOL,M5100\nPARTNER,A & S TRUCKING SERVICE INC.,T3100\nRETIRED MERCHANT MARINE,N/A,X1200\nRIVERS DOYLE WALSH & CO,,Y4000\nINFO REQUESTED,MAINTENANCE SERVICES SYSTEMS,Y4000\nCOMM VOLUNTEER,,F7000\nMARION COUNTY COMMISSION,,X3000\nHALPRIN TEMPLE ET AL,,K1000\nASSET MANAGER,JD FINANCIAL CORP,F0000\nButler,AP Farm,A1000\nExecutive Speechwriter,Time Warner,C2000\nRE CROSBY & SON,,Y4000\nPROFESSOR,\"BOSTON UNIVERSITY'S SCHOOL OF MEDICINE\",Y4000\nNatural Resources Instructor,Grays Harbor College,Y4000\nOrthopaedic Surgeon,Medical College of Wisconsin,H1130\nAttorney/Owner,Benincasa Law Firm,K1000\nNATL ASSN UNIFORMED SRVS,,X5000\nLawyer,Lanphier & Kowalkowski Ltd,K1000\nSELF-EMPLOYED/ENGINEER/GEOPHYSICIST,,E1100\nlawyer,\"Wells, Purcell, Kraatz & Brookman\",Y4000\nPhysician,Marietta Neurological Associat,H1100\nHEALTH POLICY & REIM,\"MEDTRONIC, INC.\",H4100\nWELL GOLSNAL & MANG,,Y4000\nStudent,Not employed,H3700\nNurse,Seattle School District,H5100\nRETAIL STORE,THE MENAGERIE II INC.,Y4000\nVice President,Russ Redi Company,K2000\nPRESIDENT,CURIS ENTERPRISES,Y4000\nCEO,N.V.R. INC.,J1100\nONSHORE NON,MURPHY E&P COMPANY USA,E1160\nGovernment Manager,Usda,X3000\nKOPFF NARDELLI DOPF LLP,,Y4000\nSHOWROOM LIGHTING/PRESIDENT/PRESIDE,,G4400\nMTY BROKER,,Y4000\nBAY CITIES PET HOSP INC,,A4500\nENGINEERING MAN,UGS THE PLM COMPANY,Y4000\nSenior VP,WSL,Y4000\nCEO,MULLIN CONSULTING,F5000\nVICE PRESIDENT,US CHAMBER OF COMMERCE,G1100\nIt Manager,K Line America Inc,Y4000\nLabor Relations Spec,New York State United Te,L1300\nFOUNDATION INNOVATION IN MEDICINE,,JH100\nOWNER,BEACHMERE INN,Y4000\nPRESIDENT,APPLIED BEHAVIOR CTR  AUTISM,Y4000\nMALEO THEATERS INC,,JE300\nAUTOMOBILE DEALER,ALLEN HONDA,T2310\nTEACHER,MAINE MARITIME ACADEMY,H5100\nClassroom Teacher,WALKER COUNTY SCHOOL DISTRICT,L1300\nVP,Star Label Products,M7000\nLobbyist,Leadership Conference on Civil Rights,J7400\nTrucking Manager,Self-Employed,G0000\nTHE TRAVELERS INC,,J1200\nMESA LIMITED PARTNER,,E1120\nMEMBER,TCU CSX,LM100\nINITIAL CLEANING SERVICE,,J7500\nAttorney,\"Law Offices Of Deborah Rose Tracy, P.A\",K1000\nSalesmen,Ed Os Manufacturers,Y4000\nController,Tuscan/LeHigh,A2000\nAttorney,Farrar&Bates,K1000\nMuseum Director,Autry National Cente,X4200\nDeveloper,Brockman Enterprises,Y4000\nRANCHER / REAL ESTATE / INVENTOR,SELF-EMPLOYED,A3000\nCEO; PRESIDENT,\"PLATINUM CORRAL, LLC\",G2900\nAttorney,\"American Int'l Group\",F3100\n\"CHIEF, DIVISION OF GENETICS\",NEW YORK STATE PSYCHITRIC INSTITUTE,Z9500\nCONTRACTOR,JEZOWSKI AND MARKEL CONTRACTORS INC,J1100\nE G REINSCH COMPANIES,,Y4000\nARCADIA USD,,X3500\nNOVA HOME HEALTH CORP,,H3100\nVP - Mortgage Sales,Home Savings,Y4000\nSELF-EMPLOYED,APERTURE INVESTMENTS,Y4000\nVICE PRESIDENT,ELECTRONICS,C5000\nJournalist/Researcher,Gtr Global,Y4000\nInternational Consultant,\"Norfolk Intern 'l\",Y4000\nTHE HOME MAKERS,,Y1000\nSENIOR VICE PRESIDEN,MARSH USA INC.,F3100\nEOFF ENTERPRISES INC,,Y4000\nPOLICE OFFICER,PORT OF SEATTLE,Z9500\nNEUROSURGEON,NEW YORK UNIV MED CTR,H1130\nPRESIDENT,FRANK JACKSON LINCOLN MER,T2300\nEngineer,Parsons Brinckerhoff,J1200\nSALES,LIFELOCK,F5500\nVP CORPORATE DEVELOP,PEREZ BROTHERS,Y4000\nInvestments,Not employed,F7000\nPRESIDENT,INDMAR PRODUCTS CO. INC.,T8300\nPresident and CEO,Blue Cross Blue Shield of SC,Z9500\nConsultant,\"Tim Mahoney, Inc.\",Z9500\nLAND DEVELOPER,CANYONLANDS CORP,F4000\nHORSE BREEDER,OCALA STUD,Y4000\nSW DEVELOPER,MARATHON TECHNOLOGIES,Y4000\nREAL ESTATE,MONK REAL ESTATE SCHOOL,F4000\nALLIANCE RENTAL CENTER/OWNER/PRESID,,Y4000\nINVESTMENTS,HALCO IND.,Y4000\nVICE PRESIDENT,EDC INC.,C5120\nEXECUTIVE,CROSS ATLANTIC CAPITAL,Y4000\nFAO,UN FOOD AND AGRICULTURAL ORGANIZATION,Y4000\nC.E.O. & Chairman,Cognex Corporation,M2300\nOwner,\"CJ's Barbecue & Fish\",G2900\nINFINITY,CBS,C2100\nCOVAD,,C5140\nReal Estate,Architutla Heritage,Y4000\nTECHNIPLAST,,Y4000\nRadiologist,Lima Radiological Assoc.,H1130\nBUILDER,DOZIER BUILDERS,B1500\nOwner,DR. Yon Lai DDS PC,H1400\nArchitect,Studio Daniel Libeskind,Y4000\naccountant,Edie & Marie Boat Settlements,Y4000\nBRIGHT STAR RESTAURANT,,G2900\nPARTNER,KNOTT SECURITIES,F2100\nFinancial Advisor,Ameriprise Financial Services,F2100\nInformation Requested,Polaris Ventures,F2500\nCeo,\"Heeby'S Surplus Inc\",Y4000\nAttorney,Bartlett Hackett Feinberg PC,Y4000\nFOOD WHOLESALER,B. GREEN & CO.,Y4000\nVICE PRESIDENT OF SALES,INNOVATIVE THERAPIES,Y4000\nFUNDRAISING CONSULTANT,SELF,F4200\nDIAGNOSTIC RADIOLOGIST,SCOTTSDALE LINCOLN HEALTH NETWORK,H1130\nHUDSON MANAGEMENT COMPANY,,Y4000\nTEACHER,\"AFCD, INC\",J7400\n\"ST JOSEPH'S HOSP & MED CENTER\",,H2100\nATTORNEY,HARRISON BELTIS,K1000\nDamian,,Y4000\nPUBLIC RELATIONS,RMD COMMUNICATIONS,Y4000\nGENERAL CONTRACTOR/DEVELOPER,LANDEL CONSTRUCTION,B1500\nBUSINESS INSURANCE SPECI,MASSMUTUAL,F0000\nMAINTENANCE,RYDER SCOTT CO.,Y4000\nTHOMPSON REALTY COMPANY,,F4500\nOwner,GOP Shoppe,Y4000\nSTILE ASSOCIATES LTD,,Y4000\nprofessor,Univ. of Northern Iowa,H5100\nNurse,\"Children's Hospital of Mi\",J7400\nHARDBERGER & RODRIGUEZ,,K1000\nCOO,JETSTRAM FCU,F1300\nATTORNEY,WEIL GOTSHAL & MANGES LLP/ATTORNEY,K1000\nCOO,ANSAY & ASSOCIATES,F3100\nPRESIDENT & CHIEF,COX HEALTH SYSTEM,H2100\nPRESIDENT/CEO/CTO (ELECTRICAL ENGINEER,\"CALCULEX, INC.\",Z9500\nRESEARCH SCIENTIST,EMORY,H5100\nOWNER,AMERICAN PAYROLL ADVANCE,F5500\nCONSULTANT,A.C.S.I.,Y4000\nTRANSWOOD,,Y4000\nHEALTH SERVICES RESE,WILLIAM STERN & ASSOCIATES,J7400\nTISHMAN CONSTRUCTION,,F4100\nATTORN,KOZYAK TRAPIN & THROCHMORTAN,K1000\nConsultant,SOS of New Mexico,Y4000\nOWNER,KKO & ASSOCIATES,Y4000\nINVESTMENTS,WYNNEFIELD CAPITAL,F2100\nAttorney,Silver Golub & Teitell LLP,J7400\nUnknown,Land Olakes,A6000\nPhysician,Self,J5000\nSTUDENT,USAF RESERVES,X5000\nLIVESTOCK BUSINESS,SELF EMPLOYED,A3000\nCONTROLLER,COBBLESTONE HOMES,B2000\nPartner,Integrity Partners & Associates,Y0000\nSECTION MANAGER,STATE OF CALIFORNIA,J1100\nPRESIDENT,MARY WASHINGTON HOSPITAL,H2100\nATTORNEY,DOYLE LOWTHER LLP,Y4000\nMANAGER,3 ARTS,Z9500\nANESTHESIOLOGIST,COOK COUNTY,H1130\nFilm producer,North Am Film Co Inc,C2400\nTRUCK DRIVER,SELF-EMPLOYED,G0000\nC.E.O.,\"TEAM-SERV, INC.\",Y4000\nFREELANCE WRITER,,G4600\nAttorney,Gillman Foundation,A5200\nHEAD OF CREDIT,CCRE,F4600\n\"President & CEO, Southern Progress\",\"Time, Inc\",C2000\nOwner,\"Stauffer's Cafe & Pie Shoppe Inc\",G2900\nArchitect,Stein / Troost,J1200\nMANAGING PARTNER,CASTILLE AND DEFOOR/MANAGING PARTNE,Y4000\nPAVLIK BROTHERS HEATING AND COOLING,,B2000\nResearch,Un of North Carolina at Chapel Hill,H5100\nVICE PRESIDENT,CITIGROUP/VICE PRESIDENT,F1100\nEYSTER PROPERTIES,,F4000\n.Information Request,.Information Requested,F4000\nPRESIDENT,TURN SERVICES LLC,T6000\nREP LOIS CAPPS,,J1200\nOwner,Chinese Taste,Y4000\nSECURE CONCEPT DEVELOPMENT,,Y4000\nDiagnostic Radiologi,Diagnostic Radiology Associates,H1130\nA DALGGER & SON,,Y4000\nSr VP Consulting Services,Sirius Computer Solutions,Y4000\nREAL ESTATE INVESTMENT,WESTPORT CAPITAL PARTNERS LLC,F0000\nFIXED INCOME CAPITAL MKT,,F0000\nOwner,DAP Mueller & Associates,Y4000\nAttorney,Judith K Schermer Pllc,Y4000\nPRESIDENT,CENTURY STEEL INC,M2100\nOperating Account,Self,Y4000\nHEARD PROPERTIES LLC,,Y4000\nOWNER,HARRIS FUNERAL HOME,G5400\nDEFENSE ADVISOR,DEPARTMENT OF DEFENSE,X5000\nNetwork Engineer,\"Outback Steakhouse, Inc.\",G2900\nFinancial Advisor,McMahan & Associates,Y4000\nSALE,NATIONAL WHOLESALE LIQUIDATORS,Y4000\nAHS INC,,Y4000\nWRITER/EDITOR/PROOFREADER,SELF,Z9500\nAttorney,Hale Skemp,Y4000\nDesigner,Stuart Antique,G4600\nIMMIGRATION MUSEUM OF NEW AMERICAN,,X4200\nHIGLIN-BEITLER DEVELOPMENTS,,F4000\nPresident,Smith Craft Real Estate,F4000\nCAFE PANINI,,G2900\nBusiness Owner,\"Frank C. Alegre Trucking, Inc.\",T3100\nPHY,VETERANS ADMINISTATION HOSPITAL,H2100\nATTORNEY,\"D'AMICO GRIFFIN & PELLINICCHI\",K1000\nSUPV MEDICAL,BAYER CORPORATION,H4300\nRetired Pastor,The Almighty,Y4000\nEXECU,AUBURN DISTRICT NURSING ASSN.,Y4000\nOwner/President,Millennium Consultants,Y4000\nCONSULTANT,\"PORTAGE ADVISORS, LLC.\",F5500\nGovernment Relations,\"Porterfield & Lowenthal, LLC\",Z9500\nMI CONSOLIDATED GAS CO/PRESIDENT/CO,,E1100\nAIRLINE CAPTAIN,RETIRED/DELTA AIRLINES,J1100\nDAYTOOL & DIE INC,,M5000\nDivision VP,\"Brookdale Senior Living, Inc.\",H2200\nINVESTMENT M,DOCK STREET ASSET MGMT,F2100\nEXECUTIVE,\"ADLER GROUP, INC.\",F4100\nSVP HR &,SOUTHERN COMPANY SERVICES,E1620\nEXECUTIVE,MILLER INT.,Y4000\nowner,Mr U-Haul Company,Y4000\nPROJECT MANAGER,TELOS CORP,C5130\nEXECUTIVE,\"HOST HOTELS & RESORTS, INC.\",F4100\nInfo Requested,Beneath The Bark,Y4000\nFASKEN OIL & RANCH LTD,,E1100\nMEDICAL PHYSICIAN,,J1100\nEXECUTIVE SECRETARY/CEO,CAKEBREAD CELLARS/EXECUTIVE SECRETA,G2820\nSchool Teacher,N/A,Y1000\nVETERNAR,WOODBRIGE VETERINARY GROUP,A4500\nOwner,Smith Partners Ltd..,Y4000\nOPERATIONS DIRECTOR,CISCO,Z9500\nPROSKAUER ROSE LLP,PROSKAUER ROSE LLP,K1000\nAttorney,Glosser & Kim,K1000\nC E O,Big Six Drilling,E1150\nOWNER,BOB MOSS AND ASSOC.,K2000\nLEADCO,,Y4000\nACCOUNT MANAGER,\"OFFICE DEPOT, INCORPORATED\",G4400\nLAWYER,KILPATRICK STOCKTON,Z9500\nAttorney,\"Law Ofc of Stephen C Estes, PC\",K1000\nMERRIL CORPORATION,,Y4000\nSystems Administrato,Openwave Systems,J1200\nEngineer,KCE,Y4000\nANDERSON MERCHANDISERS,,Y4000\nHAMLIN CONSTRUCTION,,B1000\nMANKOFF HILL HELD & METZGER,,K1000\nLumber Industry,\"Emporium Hardwoods, Inc\",A5000\nPolitical Consultant,VELASQUEZ  MAGANA  LAUSELL,K2000\nExecutive Chairman,Petsmart,G4600\nBROWN CONSULTING,,Y4000\nGLOBE CORP,,F4000\nBUSINESS MGR,I B E W LOCAL UNION 58,LC150\nInsurance Sales,Promus Financial,G5270\nSD FARMERS UNION,,A6000\nBUSINESSMAN,AKRAYA,Y4000\nPartner,Crowe Horwath LLP,F1100\nSOLAR ENERGY,,E1000\nFund Manager,Diamondback Capital Mgmt,F2100\nPapermaker,PCA,Y4000\nExecutive Officer,LA Metro,Y4000\nMUSIC PRODUCER,\"SELF/JEFF BUCKLEY MUSIC, INC./MUSIC\",C2600\nPRINCIPAL,PHILANTHROPIC VENTURES,X4100\nENGINEER,MASSEY ENERGY,E1210\nSVP-MARKETIN,\"EAT'N PARK HOSPITALITY\",G2900\nPARTS ENROUTE,,Y4000\nSCHUCHART SERVICES INC,,Y4000\nCEO,Rural/Metro Corporation,H3000\nPRESI,FIDELITY NATIONAL TITLE GROUP,F4300\nExecutive,Conner Strong,Y4000\nPRO FINANCIAL SERVICES INC,,Y4000\nPUB,BROADCASTING BOARD OF GOVERNORS,C2300\nEXPO ENERGY & ENVIRONMENT,,E1100\nBANKER,MAK CAPITAL,F0000\nSELF EMPLOYED,ARC. J. PETRICCA,G0000\nCHAIRMAN,ALBANESE ORGANIZATION,Y4000\nGM TRADEAB,HEINZ MANAGEMENT COMPANY,G2100\nOFFICE MGR,\"PITLIK & WICK, INC.\",Y4000\nFirst Vice President Customer Experien,Washington Mutual,F1200\nSURGEON,MANITOWOC CLINIC,H1100\nFINE OLIN & ANDERMAN,,K1000\nOwner,\"Image & Design, Inc.\",Y4000\nPHYSICIAN,AHCS,H3100\nAssistant Vice President,State Auto Insurance Co,F3400\nSPOUSE,\"DEAN WORD COMPANY, LTD.\",B1000\nPresident & CEO,\"Madison Title Agency, LLC\",F4300\nMANAGING MEMBER,\"ROSEN PARTNERS, LLC\",F4500\nDirector Program Mgt.,SAVVIS Communications,C5140\nRETIRED SOCIOLOGIST,,X1200\ndr,Ncap,Y4000\nWAITE,ROSLYN RESTAURANT CORPORATION,G2900\nONEIL AND ATHY,,K2000\nCHAIRMAN,MAHOPAC NATIONAL BANK,F1100\nINFO REQUESTED,LOUISBURG CIDER MILL INC,Y4000\nAdmin Associate,E Catlin Donnelly & Associates,Y4000\n\"Physician's Assistant (Hematology/Onco\",Pronger Smith Health Care,Y4000\nPhysician,\"Harvinder Sahota, M.D.\",H1100\nEVENT RENTAL COMMUNICATIONS,,Y4000\nMEDICAL DOCTOR,MONTCLAIR ANESTHESIA ASSOCIATES,H1130\nVice President,Berklee College of Music,H5100\nPresident,American Beverage Assn,G2600\nOwner,Athens Home Inspections,Y4000\nSCIENTIST,MAKETOLIFE,Y1000\nExecutive VP,Vestar Development,F4100\nEducator,Project SEED,Y4000\nPhysician,Peoria Surgical Group,H2000\nDirector of Photography,Mark Falstad,J1200\nOWNER,M&J ACQUISTION,Y4000\nSENIOR MANAGER,\"MERCK, INC./SENIOR MANAGER\",Y4000\nVICE PRESIDENT,LEGACY PARTNERS,Y4000\nINVESTMENT MANAGER,ATTUCKS ASSET MANAGEMENT,F2100\nCEO,RCOA,Y4000\nWESTFIELD GROUP/ATTORNEY/EXECUTIVE,,F3100\nPRESIDENT,PTS CONSULTING & SERVICE GROUP INC,Y4000\nCeo,CBS Technologies,C5000\nC.E.O.,LEDFORD ENGINEERING COMPANY,B4400\nDIRECTOR OF FINANCE,CENTRAL REFORM CONGREGATION,JE300\nCRE,\"CBRE REAL ESTATE SERVICES, INC.\",F4000\nANALYST,SVERDRUP TECHNOLOGY,Y4000\nMEDIA EXECUTIVE,\"N.T.M., INC.\",G5210\nHigh School Teacher,Smithtown Central,Y4000\nCAD SPECIALIST,AQUA ENGINEERING,B4400\nENGINEER,ABM,Y4000\nLAWYER,BAKERBOOTS,Y4000\nBUCKBEE-MEARS,,Y4000\nDeputy Campaign Manager,Daniel Johnson for Congress,J1200\nUSPTO CHIEF OF STAFF,US DEPT OF COMMERCE,X3000\nHull Forest Products Inc,Self,A5000\nphys,univ wa,J1200\nlaw Firm Administrator,Williams Venker & Sanders,K1000\nLivestock Market Owner/Operator,Linden Stockyards,A3000\nBOARD OF PATENT ATTORNEY,,K1000\nCANONSBURG HOSPITAL,,H2100\nATTORNEY,MONTAGUT & SOBRAL PC,Y4000\nOWNER,UNIQUE INDUSTRIAL PRODUCTS,Y4000\nOFFICE MANAGER,I.D. DOCTORS,Y4000\narchitectural space plan,Self employed,B4200\nCARENET HEALTH SYSTEM,,H3000\nPROJECT MANAGER,NJDCF,Y4000\nInsurance Agent,Net Life Auto & Home,F3100\nATTORNEY,THOMPSON HINE LLP,Y0000\nSVP BUS. AND LEG,WARNER MUSIC GROUP,C2000\nPLUMBER,LOCAL 267 PLUMBERS AND STEAMFITTERS,Y4000\n\"ASS'T TO HEAD OF PSYCHIATRY DEPARTMENT\",UNIVERSITY OF ARIZONA,H5100\nGENERAL MANAGER,WALT KOCH LTD.,Y4000\nAL KILGO,,Y4000\nINVESTMENT BANKER,ANGELO GORDON CO.,F2700\nCHF EXECUTIVE,HEALTH CARE CHIEF EXECUT.,J1100\nCONS,THE TWENTY FIRST CENTURY GROUP,K2000\nSOUTHWESTERN PARKING &,,M1500\nPROFESSOR OF CRIMINOLOGY,FLORIDA STATE UNIVERSITY,H5100\nBuilder,Estate Builders,B2000\nMedical School Dean,Florida State University,H5100\nPACAMOR INC,,Y4000\nP,\"BUTTENWIESER AND ASSOCIATES, INC.\",J1200\nManager,Akeena Solar,Y4000\nCONTAINER TERMINAL COMPANY,,Y4000\nExecutive,CINCINNATI UNITED CONTRACTORS,B1500\nTISCH & COMPANY,,Y4000\nChairman and President,The Lenfest Group,C2200\nConstruction Manager,\"THBGP, Inc.\",Y4000\nPROCTER & GAMBLE,GOVERNMENT RELATIONS,K2000\nSIVERTS AUTOMOTIVE,,T2000\nFLIGHT TRAINING SUPERVISOR,\"UNITED PARCEL SERVICE OF AMERICA, INC\",J6200\nHARBOR SEAFOOD INC,,Y4000\nAttorney,\"Terrell, Hogan, Ellis, & Yegelwel, PA\",K1100\nFinancial Manager,Exxon Mobile,E1110\nKEDREN COMMUNITY HEALTH CENTER,,H0000\nCONSULTING,GOOCH CONSULTING,Y4000\nCLARION RESORT HOTEL,,G6500\nBSN,,Y4000\nMANUFACTURING CONSTRU,SELF-EMPLOYED,G0000\nCHECKERED FLAG MOTOR CAR COMP,,T2300\nTwin City Ptg,Twin City Printing,C1300\nBusiness Executive,Blts & Pieces,Y4000\nDIRECTOR CLINICAL SERVICES,HCR MANORCARE,H2200\nHOME BUILDER,\"KNIGHT DEVELOPMENT, INC.\",B2000\n/TYCO ELECTRONICS/ENGINEER,,J7120\nPEREZ GORAN RODRIGUEZ,,Y4000\nMovie Producer,LRO Productions,Y4000\nHealth care Executiv,UPMC,H1100\nChief Executive Offi,The Reserve Fund,Z9500\nWEINSTEIN & PENZA,,K1000\nMARY AILEEN MATHEIS,,Y4000\nOwner,Linda Dresner Clothing,J5100\nManaging Director,Duane Morris,G5210\nPRESIDENT,WESTERN INDUSTRIAL RESOURCES,E1100\nADULT CARDIOLOGY,Mid Atlantic CV Associates,H1100\nExecutive Director,\"Nibakure Children's Village\",Y4000\nPresident,Blackburn Motor Co Inc,T2300\nVice Pres.,Word Processing Svc. Inc.,Y4000\nCASA DEL SOL APARTMENTS,,F4500\nDEVELOPER,OAKS PROPERTIES,F4000\nFORESTER,\"PINE SOUTH, INC.\",Y4000\nPR,TEXAS COALITION FOR CONSERVATION,Y4000\nCONSULTANT,BAAN,Y4000\nTRUETECH INC,,Y4000\nExecutive Vice President,Pinnacle Bank,F1100\nAnnouncer,David Scott Productions Inc,Y4000\nARCHITECT,RAL ARCHITECTURE + DESIGN,Z9500\nINVESTOR,RENE ORTLIEB,F7000\nPatient Financial Se,Contra Costa Regional Medical Center,J1100\nCREDIT,MONEY MANAGONS OF EAU CLAIRE,Y4000\nSTOCKBROKER,JONES & ASSOC INC,F2100\nALLEN HOSHALL & ASSOC,,B4000\nCPA,Taaffee & Assoc.,F5100\nEducator,Montgomery Co. Board of Edu.,X3500\nCRNA,US AIR FORCE,H1710\nMARSHALL ERDMAN & ASSC,,B1500\nATTORNEY,BORTON PETRINI CONRON,K1000\nCEO,Tube City IMS Corp.,M2400\nOWNER,JOSEPH A. DELUCA INC.,Y4000\nENTREPRENEUR IN RENEWABLE ENER,SELF,Y4000\nEXECUTIVE VP,CORNERSTONE GOVERNMENT,K2000\nOwner,Whitco Inc,Y4000\nAttorney,aller morrison robertson,Y4000\nBUSINESS OWNER,CARIHOL CONSULTANTS,Y4000\nFounder,TM Industries,Y4000\nTEACHER,BISHOP KENNY HIGH SCHOOL,Y4000\nTHE MONEY STORE INC,,F4600\nQUALITY CONTROL INSPECTOR,MOTOROLLA,C4600\nTEACHER,CHICAGO PUBLIC SHOOLS,X3500\nPATHOLOG,SO. OAKLA PATHOLOGY ASSOC.,J1100\nPHYSICIAN,PPMG,Y4000\nMINNEAPOLIS RAD ONCOLOGY PHY,,Y4000\nT REX CAPITAL  LLC,,Y4000\nGOVERNMENTAL AFFAIRS,SOUTHERN COMPANY SERVICES,E1600\nChemist,Evonik - Degussa,Y4000\nVenture Capital,DFJ Gotham Ventures,F2500\nOWNER,SKAGWAY,Y4000\nBOOKKEEPER/OWNER,\"MARKET CREATORS, INC\",Y4000\nPHYSICIAN,\"UROPARTNERS, LLC\",Y4000\nMuseum Executive,National Soccer Hall of Fame,X4200\nInformation Requested,University of North Carolina,H5100\nTRANSPORTATION CONSULTANT,IBI GROUP,Z9500\nADMI,MCCORMICK TAYLOR & ASSOCIATION,Y4000\nMANAGER,VERPEETEN,J1200\nEXECUTIVE,ANGLOGOLD ASHANTI,E1220\nFinancial Analyst,Corinthians Healthcare,H0000\n\"VP, ASSET MGT.\",\"VENTAS HEALTHCARE PROPERTIES, INC.\",H2200\nBARBOURVILLE MTN,,Y4000\nSIMPSON THACKER,,K1000\nSenior Vice President & Counsel,LIMITED BRANDS,G4100\nSales,Bab Consultants,J1200\n\"ALLCARE HEALTH MANAGEMENT SYSTEM, I\",,Y4000\nMAILMAN,USPS,J1200\nGENERAL CONTRACTOR,JAVCONINC,Y4000\nMONEY MANA,HILLCREST MANAGEMENT LLC,Y4000\nNURSE,TUSCOLA COUNTY MEDICAL CENTER,J9000\nPROFESSIONAL ORGANIZER,CLUTTERBUSTERS,Y4000\nPRESIDENT,EVERTEC INC.,C5130\nEngineer Home Maker,Transystem Corp,Y4000\nGreat American Insurance Company,,F3100\nWARNER NICKLES,,\nGENNIS & GENNIS,,K1000\nVice President,Heartland Anesthesia,H1130\nJASON WINTERS INTERNATIONAL,,Y4000\nINVESTMENT EXECUTIVE,FEF MANAGEMENT LLC,F2500\nOwner,Fair Funeral Home,G5400\nST MARTIN & LIRERRE LAW FIRM,,K1000\nManaging Partner,Thayer Hidden Creek,Y4000\n"
  },
  {
    "path": "week-4/ontime_reports_may_2015_ny.csv",
    "content": "\"YEAR\",\"MONTH\",\"DAY_OF_MONTH\",\"CARRIER\",\"FL_NUM\",\"ORIGIN\",\"DEST\",\"DEP_DELAY\",\"ARR_DELAY\",\"CANCELLED\",\"CANCELLATION_CODE\",\"DIVERTED\",\"ACTUAL_ELAPSED_TIME\",\"AIR_TIME\",\"DISTANCE\",\"CARRIER_DELAY\",\"WEATHER_DELAY\",\"NAS_DELAY\",\"SECURITY_DELAY\",\"LATE_AIRCRAFT_DELAY\",\n2015,5,1,\"AA\",\"44\",\"LAS\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,294.00,273.00,2248.00,,,,,,\n2015,5,2,\"AA\",\"44\",\"LAS\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,299.00,280.00,2248.00,,,,,,\n2015,5,3,\"AA\",\"44\",\"LAS\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,294.00,274.00,2248.00,,,,,,\n2015,5,4,\"AA\",\"44\",\"LAS\",\"JFK\",-11.00,4.00,0.00,\"\",0.00,320.00,275.00,2248.00,,,,,,\n2015,5,5,\"AA\",\"44\",\"LAS\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,291.00,270.00,2248.00,,,,,,\n2015,5,6,\"AA\",\"44\",\"LAS\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,304.00,279.00,2248.00,,,,,,\n2015,5,7,\"AA\",\"44\",\"SEA\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,319.00,297.00,2422.00,,,,,,\n2015,5,8,\"AA\",\"44\",\"SEA\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,316.00,293.00,2422.00,,,,,,\n2015,5,9,\"AA\",\"44\",\"SEA\",\"JFK\",-6.00,5.00,0.00,\"\",0.00,339.00,307.00,2422.00,,,,,,\n2015,5,10,\"AA\",\"44\",\"SEA\",\"JFK\",38.00,31.00,0.00,\"\",0.00,321.00,301.00,2422.00,0.00,31.00,0.00,0.00,0.00,\n2015,5,11,\"AA\",\"44\",\"SEA\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,319.00,291.00,2422.00,,,,,,\n2015,5,12,\"AA\",\"44\",\"SEA\",\"JFK\",19.00,-10.00,0.00,\"\",0.00,299.00,283.00,2422.00,,,,,,\n2015,5,13,\"AA\",\"44\",\"SEA\",\"JFK\",-1.00,-10.00,0.00,\"\",0.00,319.00,287.00,2422.00,,,,,,\n2015,5,14,\"AA\",\"44\",\"SEA\",\"JFK\",175.00,157.00,0.00,\"\",0.00,310.00,291.00,2422.00,157.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"AA\",\"44\",\"SEA\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,321.00,295.00,2422.00,,,,,,\n2015,5,16,\"AA\",\"44\",\"SEA\",\"JFK\",0.00,5.00,0.00,\"\",0.00,333.00,303.00,2422.00,,,,,,\n2015,5,17,\"AA\",\"44\",\"SEA\",\"JFK\",-4.00,7.00,0.00,\"\",0.00,339.00,313.00,2422.00,,,,,,\n2015,5,18,\"AA\",\"44\",\"SEA\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,323.00,300.00,2422.00,,,,,,\n2015,5,19,\"AA\",\"44\",\"SEA\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,308.00,280.00,2422.00,,,,,,\n2015,5,20,\"AA\",\"44\",\"SEA\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,321.00,291.00,2422.00,,,,,,\n2015,5,21,\"AA\",\"44\",\"SEA\",\"JFK\",-10.00,-29.00,0.00,\"\",0.00,309.00,283.00,2422.00,,,,,,\n2015,5,22,\"AA\",\"44\",\"SEA\",\"JFK\",85.00,89.00,0.00,\"\",0.00,332.00,298.00,2422.00,85.00,0.00,4.00,0.00,0.00,\n2015,5,23,\"AA\",\"44\",\"SEA\",\"JFK\",3.00,-16.00,0.00,\"\",0.00,309.00,278.00,2422.00,,,,,,\n2015,5,24,\"AA\",\"44\",\"SEA\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,314.00,292.00,2422.00,,,,,,\n2015,5,25,\"AA\",\"44\",\"SEA\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,319.00,298.00,2422.00,,,,,,\n2015,5,26,\"AA\",\"44\",\"SEA\",\"JFK\",26.00,30.00,0.00,\"\",0.00,332.00,308.00,2422.00,26.00,0.00,4.00,0.00,0.00,\n2015,5,27,\"AA\",\"44\",\"SEA\",\"JFK\",-2.00,8.00,0.00,\"\",0.00,338.00,308.00,2422.00,,,,,,\n2015,5,28,\"AA\",\"44\",\"SEA\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,324.00,289.00,2422.00,,,,,,\n2015,5,29,\"AA\",\"44\",\"SEA\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,317.00,297.00,2422.00,,,,,,\n2015,5,30,\"AA\",\"44\",\"SEA\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,321.00,295.00,2422.00,,,,,,\n2015,5,31,\"AA\",\"44\",\"SEA\",\"JFK\",-3.00,8.00,0.00,\"\",0.00,339.00,310.00,2422.00,,,,,,\n2015,5,1,\"AA\",\"45\",\"JFK\",\"LAS\",37.00,26.00,0.00,\"\",0.00,341.00,305.00,2248.00,15.00,0.00,0.00,0.00,11.00,\n2015,5,2,\"AA\",\"45\",\"JFK\",\"LAS\",-1.00,-17.00,0.00,\"\",0.00,336.00,303.00,2248.00,,,,,,\n2015,5,3,\"AA\",\"45\",\"JFK\",\"LAS\",-9.00,-40.00,0.00,\"\",0.00,321.00,290.00,2248.00,,,,,,\n2015,5,4,\"AA\",\"45\",\"JFK\",\"LAS\",56.00,45.00,0.00,\"\",0.00,341.00,301.00,2248.00,45.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"AA\",\"45\",\"JFK\",\"LAS\",2.00,-30.00,0.00,\"\",0.00,320.00,288.00,2248.00,,,,,,\n2015,5,6,\"AA\",\"45\",\"JFK\",\"LAS\",-1.00,-21.00,0.00,\"\",0.00,332.00,296.00,2248.00,,,,,,\n2015,5,7,\"AA\",\"45\",\"JFK\",\"SEA\",91.00,76.00,0.00,\"\",0.00,364.00,321.00,2422.00,4.00,0.00,0.00,0.00,72.00,\n2015,5,8,\"AA\",\"45\",\"JFK\",\"SEA\",40.00,37.00,0.00,\"\",0.00,376.00,326.00,2422.00,4.00,0.00,0.00,0.00,33.00,\n2015,5,9,\"AA\",\"45\",\"JFK\",\"SEA\",66.00,58.00,0.00,\"\",0.00,371.00,329.00,2422.00,58.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"AA\",\"45\",\"JFK\",\"SEA\",-3.00,-16.00,0.00,\"\",0.00,366.00,329.00,2422.00,,,,,,\n2015,5,11,\"AA\",\"45\",\"JFK\",\"SEA\",14.00,7.00,0.00,\"\",0.00,372.00,321.00,2422.00,,,,,,\n2015,5,12,\"AA\",\"45\",\"JFK\",\"SEA\",27.00,21.00,0.00,\"\",0.00,373.00,345.00,2422.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,13,\"AA\",\"45\",\"JFK\",\"SEA\",11.00,16.00,0.00,\"\",0.00,384.00,346.00,2422.00,11.00,0.00,5.00,0.00,0.00,\n2015,5,14,\"AA\",\"45\",\"JFK\",\"SEA\",36.00,17.00,0.00,\"\",0.00,360.00,329.00,2422.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,15,\"AA\",\"45\",\"JFK\",\"SEA\",4.00,-5.00,0.00,\"\",0.00,370.00,341.00,2422.00,,,,,,\n2015,5,16,\"AA\",\"45\",\"JFK\",\"SEA\",2.00,-38.00,0.00,\"\",0.00,339.00,317.00,2422.00,,,,,,\n2015,5,17,\"AA\",\"45\",\"JFK\",\"SEA\",35.00,14.00,0.00,\"\",0.00,358.00,317.00,2422.00,,,,,,\n2015,5,18,\"AA\",\"45\",\"JFK\",\"SEA\",29.00,63.00,0.00,\"\",0.00,413.00,327.00,2422.00,0.00,0.00,34.00,0.00,29.00,\n2015,5,19,\"AA\",\"45\",\"JFK\",\"SEA\",-3.00,1.00,0.00,\"\",0.00,383.00,350.00,2422.00,,,,,,\n2015,5,20,\"AA\",\"45\",\"JFK\",\"SEA\",-4.00,-12.00,0.00,\"\",0.00,371.00,339.00,2422.00,,,,,,\n2015,5,21,\"AA\",\"45\",\"JFK\",\"SEA\",150.00,125.00,0.00,\"\",0.00,354.00,317.00,2422.00,0.00,0.00,0.00,0.00,125.00,\n2015,5,22,\"AA\",\"45\",\"JFK\",\"SEA\",75.00,93.00,0.00,\"\",0.00,397.00,341.00,2422.00,0.00,0.00,18.00,0.00,75.00,\n2015,5,23,\"AA\",\"45\",\"JFK\",\"SEA\",11.00,27.00,0.00,\"\",0.00,395.00,347.00,2422.00,11.00,0.00,16.00,0.00,0.00,\n2015,5,24,\"AA\",\"45\",\"JFK\",\"SEA\",-3.00,-20.00,0.00,\"\",0.00,362.00,334.00,2422.00,,,,,,\n2015,5,25,\"AA\",\"45\",\"JFK\",\"SEA\",-1.00,-38.00,0.00,\"\",0.00,342.00,318.00,2422.00,,,,,,\n2015,5,26,\"AA\",\"45\",\"JFK\",\"SEA\",149.00,137.00,0.00,\"\",0.00,367.00,313.00,2422.00,17.00,0.00,0.00,0.00,120.00,\n2015,5,27,\"AA\",\"45\",\"JFK\",\"SEA\",4.00,51.00,0.00,\"\",0.00,426.00,327.00,2422.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,28,\"AA\",\"45\",\"JFK\",\"SEA\",4.00,5.00,0.00,\"\",0.00,380.00,335.00,2422.00,,,,,,\n2015,5,29,\"AA\",\"45\",\"JFK\",\"SEA\",7.00,10.00,0.00,\"\",0.00,382.00,337.00,2422.00,,,,,,\n2015,5,30,\"AA\",\"45\",\"JFK\",\"SEA\",4.00,-13.00,0.00,\"\",0.00,362.00,333.00,2422.00,,,,,,\n2015,5,31,\"AA\",\"45\",\"JFK\",\"SEA\",73.00,84.00,0.00,\"\",0.00,390.00,344.00,2422.00,0.00,51.00,11.00,0.00,22.00,\n2015,5,1,\"AA\",\"64\",\"DFW\",\"JFK\",8.00,-14.00,0.00,\"\",0.00,203.00,183.00,1391.00,,,,,,\n2015,5,2,\"AA\",\"64\",\"DFW\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,214.00,190.00,1391.00,,,,,,\n2015,5,3,\"AA\",\"64\",\"DFW\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,216.00,192.00,1391.00,,,,,,\n2015,5,4,\"AA\",\"64\",\"DFW\",\"JFK\",2.00,-17.00,0.00,\"\",0.00,206.00,188.00,1391.00,,,,,,\n2015,5,5,\"AA\",\"64\",\"DFW\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,213.00,187.00,1391.00,,,,,,\n2015,5,6,\"AA\",\"64\",\"DFW\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,206.00,189.00,1391.00,,,,,,\n2015,5,7,\"AA\",\"64\",\"MIA\",\"JFK\",-1.00,2.00,0.00,\"\",0.00,183.00,149.00,1089.00,,,,,,\n2015,5,8,\"AA\",\"64\",\"MIA\",\"JFK\",-9.00,-13.00,0.00,\"\",0.00,176.00,148.00,1089.00,,,,,,\n2015,5,9,\"AA\",\"64\",\"MIA\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,180.00,160.00,1089.00,,,,,,\n2015,5,10,\"AA\",\"64\",\"MIA\",\"JFK\",5.00,10.00,0.00,\"\",0.00,185.00,152.00,1089.00,,,,,,\n2015,5,11,\"AA\",\"64\",\"MIA\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,171.00,150.00,1089.00,,,,,,\n2015,5,12,\"AA\",\"64\",\"MIA\",\"JFK\",38.00,39.00,0.00,\"\",0.00,181.00,145.00,1089.00,0.00,0.00,36.00,0.00,3.00,\n2015,5,13,\"AA\",\"64\",\"MIA\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,162.00,143.00,1089.00,,,,,,\n2015,5,14,\"AA\",\"64\",\"MIA\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,179.00,157.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"64\",\"MIA\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,163.00,144.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"64\",\"MIA\",\"JFK\",2.00,-10.00,0.00,\"\",0.00,168.00,147.00,1089.00,,,,,,\n2015,5,17,\"AA\",\"64\",\"MIA\",\"JFK\",11.00,1.00,0.00,\"\",0.00,170.00,142.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"64\",\"MIA\",\"JFK\",83.00,95.00,0.00,\"\",0.00,192.00,143.00,1089.00,0.00,0.00,95.00,0.00,0.00,\n2015,5,19,\"AA\",\"64\",\"MIA\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,168.00,142.00,1089.00,,,,,,\n2015,5,20,\"AA\",\"64\",\"MIA\",\"JFK\",-6.00,-11.00,0.00,\"\",0.00,175.00,144.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"64\",\"MIA\",\"JFK\",1.00,-18.00,0.00,\"\",0.00,161.00,136.00,1089.00,,,,,,\n2015,5,22,\"AA\",\"64\",\"MIA\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,158.00,139.00,1089.00,,,,,,\n2015,5,23,\"AA\",\"64\",\"MIA\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,174.00,150.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"64\",\"MIA\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,165.00,146.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"64\",\"MIA\",\"JFK\",116.00,115.00,0.00,\"\",0.00,179.00,138.00,1089.00,31.00,0.00,0.00,0.00,84.00,\n2015,5,26,\"AA\",\"64\",\"MIA\",\"JFK\",-6.00,-33.00,0.00,\"\",0.00,153.00,136.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"64\",\"MIA\",\"JFK\",162.00,188.00,0.00,\"\",0.00,206.00,143.00,1089.00,0.00,0.00,188.00,0.00,0.00,\n2015,5,28,\"AA\",\"64\",\"MIA\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,166.00,146.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"64\",\"MIA\",\"JFK\",120.00,120.00,0.00,\"\",0.00,180.00,148.00,1089.00,0.00,0.00,0.00,0.00,120.00,\n2015,5,30,\"AA\",\"64\",\"MIA\",\"JFK\",38.00,21.00,0.00,\"\",0.00,163.00,142.00,1089.00,2.00,0.00,0.00,0.00,19.00,\n2015,5,31,\"AA\",\"64\",\"MIA\",\"JFK\",7.00,-3.00,0.00,\"\",0.00,170.00,141.00,1089.00,,,,,,\n2015,5,1,\"AA\",\"65\",\"JFK\",\"DFW\",-5.00,-35.00,0.00,\"\",0.00,213.00,193.00,1391.00,,,,,,\n2015,5,2,\"AA\",\"65\",\"JFK\",\"DFW\",-5.00,-27.00,0.00,\"\",0.00,221.00,187.00,1391.00,,,,,,\n2015,5,3,\"AA\",\"65\",\"JFK\",\"DFW\",-6.00,-42.00,0.00,\"\",0.00,207.00,183.00,1391.00,,,,,,\n2015,5,4,\"AA\",\"65\",\"JFK\",\"DFW\",22.00,-9.00,0.00,\"\",0.00,212.00,181.00,1391.00,,,,,,\n2015,5,5,\"AA\",\"65\",\"JFK\",\"DFW\",-2.00,-33.00,0.00,\"\",0.00,212.00,184.00,1391.00,,,,,,\n2015,5,6,\"AA\",\"65\",\"JFK\",\"DFW\",-8.00,-46.00,0.00,\"\",0.00,205.00,178.00,1391.00,,,,,,\n2015,5,7,\"AA\",\"65\",\"JFK\",\"MIA\",-6.00,1.00,0.00,\"\",0.00,198.00,156.00,1089.00,,,,,,\n2015,5,8,\"AA\",\"65\",\"JFK\",\"MIA\",52.00,53.00,0.00,\"\",0.00,192.00,150.00,1089.00,12.00,0.00,1.00,0.00,40.00,\n2015,5,9,\"AA\",\"65\",\"JFK\",\"MIA\",20.00,19.00,0.00,\"\",0.00,190.00,148.00,1089.00,10.00,0.00,0.00,0.00,9.00,\n2015,5,10,\"AA\",\"65\",\"JFK\",\"MIA\",-5.00,-12.00,0.00,\"\",0.00,184.00,162.00,1089.00,,,,,,\n2015,5,11,\"AA\",\"65\",\"JFK\",\"MIA\",-4.00,15.00,0.00,\"\",0.00,210.00,165.00,1089.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,12,\"AA\",\"65\",\"JFK\",\"MIA\",43.00,27.00,0.00,\"\",0.00,175.00,144.00,1089.00,0.00,0.00,0.00,19.00,8.00,\n2015,5,13,\"AA\",\"65\",\"JFK\",\"MIA\",-4.00,-9.00,0.00,\"\",0.00,186.00,158.00,1089.00,,,,,,\n2015,5,14,\"AA\",\"65\",\"JFK\",\"MIA\",-1.00,1.00,0.00,\"\",0.00,193.00,157.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"65\",\"JFK\",\"MIA\",13.00,6.00,0.00,\"\",0.00,184.00,152.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"65\",\"JFK\",\"MIA\",-7.00,11.00,0.00,\"\",0.00,209.00,141.00,1089.00,,,,,,\n2015,5,17,\"AA\",\"65\",\"JFK\",\"MIA\",-1.00,-29.00,0.00,\"\",0.00,163.00,142.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"65\",\"JFK\",\"MIA\",4.00,-12.00,0.00,\"\",0.00,175.00,150.00,1089.00,,,,,,\n2015,5,19,\"AA\",\"65\",\"JFK\",\"MIA\",0.00,17.00,0.00,\"\",0.00,208.00,164.00,1089.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,20,\"AA\",\"65\",\"JFK\",\"MIA\",7.00,-13.00,0.00,\"\",0.00,171.00,144.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"65\",\"JFK\",\"MIA\",7.00,-1.00,0.00,\"\",0.00,183.00,153.00,1089.00,,,,,,\n2015,5,22,\"AA\",\"65\",\"JFK\",\"MIA\",-2.00,-8.00,0.00,\"\",0.00,185.00,147.00,1089.00,,,,,,\n2015,5,23,\"AA\",\"65\",\"JFK\",\"MIA\",3.00,-13.00,0.00,\"\",0.00,175.00,143.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"65\",\"JFK\",\"MIA\",-4.00,-32.00,0.00,\"\",0.00,163.00,137.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"65\",\"JFK\",\"MIA\",-2.00,-20.00,0.00,\"\",0.00,173.00,144.00,1089.00,,,,,,\n2015,5,26,\"AA\",\"65\",\"JFK\",\"MIA\",-2.00,-13.00,0.00,\"\",0.00,180.00,148.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"65\",\"JFK\",\"MIA\",-3.00,-17.00,0.00,\"\",0.00,177.00,148.00,1089.00,,,,,,\n2015,5,28,\"AA\",\"65\",\"JFK\",\"MIA\",-5.00,-28.00,0.00,\"\",0.00,168.00,144.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"65\",\"JFK\",\"MIA\",6.00,-2.00,0.00,\"\",0.00,183.00,140.00,1089.00,,,,,,\n2015,5,30,\"AA\",\"65\",\"JFK\",\"MIA\",-9.00,-3.00,0.00,\"\",0.00,197.00,144.00,1089.00,,,,,,\n2015,5,31,\"AA\",\"65\",\"JFK\",\"MIA\",-7.00,-23.00,0.00,\"\",0.00,175.00,142.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"66\",\"AUS\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,222.00,206.00,1521.00,,,,,,\n2015,5,8,\"AA\",\"66\",\"AUS\",\"JFK\",-8.00,-9.00,0.00,\"\",0.00,223.00,202.00,1521.00,,,,,,\n2015,5,9,\"AA\",\"66\",\"AUS\",\"JFK\",-10.00,-3.00,0.00,\"\",0.00,231.00,206.00,1521.00,,,,,,\n2015,5,10,\"AA\",\"66\",\"AUS\",\"JFK\",1.00,4.00,0.00,\"\",0.00,227.00,202.00,1521.00,,,,,,\n2015,5,11,\"AA\",\"66\",\"AUS\",\"JFK\",-1.00,21.00,0.00,\"\",0.00,246.00,194.00,1521.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,12,\"AA\",\"66\",\"AUS\",\"JFK\",11.00,16.00,0.00,\"\",0.00,229.00,205.00,1521.00,11.00,0.00,5.00,0.00,0.00,\n2015,5,13,\"AA\",\"66\",\"AUS\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,217.00,198.00,1521.00,,,,,,\n2015,5,14,\"AA\",\"66\",\"AUS\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,211.00,194.00,1521.00,,,,,,\n2015,5,15,\"AA\",\"66\",\"AUS\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,222.00,202.00,1521.00,,,,,,\n2015,5,16,\"AA\",\"66\",\"AUS\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,217.00,195.00,1521.00,,,,,,\n2015,5,17,\"AA\",\"66\",\"AUS\",\"JFK\",150.00,149.00,0.00,\"\",0.00,223.00,203.00,1521.00,0.00,149.00,0.00,0.00,0.00,\n2015,5,18,\"AA\",\"66\",\"AUS\",\"JFK\",-7.00,2.00,0.00,\"\",0.00,233.00,206.00,1521.00,,,,,,\n2015,5,19,\"AA\",\"66\",\"AUS\",\"JFK\",87.00,86.00,0.00,\"\",0.00,223.00,197.00,1521.00,86.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"AA\",\"66\",\"AUS\",\"JFK\",1.00,-12.00,0.00,\"\",0.00,211.00,191.00,1521.00,,,,,,\n2015,5,21,\"AA\",\"66\",\"AUS\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,207.00,187.00,1521.00,,,,,,\n2015,5,22,\"AA\",\"66\",\"AUS\",\"JFK\",5.00,-8.00,0.00,\"\",0.00,211.00,188.00,1521.00,,,,,,\n2015,5,23,\"AA\",\"66\",\"AUS\",\"JFK\",58.00,41.00,0.00,\"\",0.00,207.00,193.00,1521.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"AA\",\"66\",\"AUS\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,220.00,198.00,1521.00,,,,,,\n2015,5,25,\"AA\",\"66\",\"AUS\",\"JFK\",-10.00,-19.00,0.00,\"\",0.00,215.00,193.00,1521.00,,,,,,\n2015,5,26,\"AA\",\"66\",\"AUS\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,222.00,204.00,1521.00,,,,,,\n2015,5,27,\"AA\",\"66\",\"AUS\",\"JFK\",-10.00,-1.00,0.00,\"\",0.00,233.00,200.00,1521.00,,,,,,\n2015,5,28,\"AA\",\"66\",\"AUS\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,220.00,202.00,1521.00,,,,,,\n2015,5,29,\"AA\",\"66\",\"AUS\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,217.00,198.00,1521.00,,,,,,\n2015,5,30,\"AA\",\"66\",\"AUS\",\"JFK\",-1.00,0.00,0.00,\"\",0.00,225.00,200.00,1521.00,,,,,,\n2015,5,31,\"AA\",\"66\",\"AUS\",\"JFK\",5.00,-5.00,0.00,\"\",0.00,214.00,194.00,1521.00,,,,,,\n2015,5,1,\"AA\",\"66\",\"SJU\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,227.00,206.00,1598.00,,,,,,\n2015,5,2,\"AA\",\"66\",\"SJU\",\"JFK\",-10.00,-31.00,0.00,\"\",0.00,217.00,199.00,1598.00,,,,,,\n2015,5,3,\"AA\",\"66\",\"SJU\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,221.00,197.00,1598.00,,,,,,\n2015,5,4,\"AA\",\"66\",\"SJU\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,226.00,203.00,1598.00,,,,,,\n2015,5,5,\"AA\",\"66\",\"SJU\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,222.00,203.00,1598.00,,,,,,\n2015,5,6,\"AA\",\"66\",\"SJU\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,221.00,201.00,1598.00,,,,,,\n2015,5,7,\"AA\",\"67\",\"JFK\",\"AUS\",-2.00,-31.00,0.00,\"\",0.00,225.00,204.00,1521.00,,,,,,\n2015,5,8,\"AA\",\"67\",\"JFK\",\"AUS\",-1.00,-8.00,0.00,\"\",0.00,247.00,208.00,1521.00,,,,,,\n2015,5,9,\"AA\",\"67\",\"JFK\",\"AUS\",11.00,-14.00,0.00,\"\",0.00,229.00,203.00,1521.00,,,,,,\n2015,5,10,\"AA\",\"67\",\"JFK\",\"AUS\",1.00,4.00,0.00,\"\",0.00,257.00,208.00,1521.00,,,,,,\n2015,5,11,\"AA\",\"67\",\"JFK\",\"AUS\",-3.00,-19.00,0.00,\"\",0.00,238.00,204.00,1521.00,,,,,,\n2015,5,12,\"AA\",\"67\",\"JFK\",\"AUS\",0.00,12.00,0.00,\"\",0.00,266.00,228.00,1521.00,,,,,,\n2015,5,13,\"AA\",\"67\",\"JFK\",\"AUS\",-1.00,-10.00,0.00,\"\",0.00,245.00,206.00,1521.00,,,,,,\n2015,5,14,\"AA\",\"67\",\"JFK\",\"AUS\",-4.00,-8.00,0.00,\"\",0.00,250.00,213.00,1521.00,,,,,,\n2015,5,15,\"AA\",\"67\",\"JFK\",\"AUS\",-4.00,-25.00,0.00,\"\",0.00,233.00,203.00,1521.00,,,,,,\n2015,5,16,\"AA\",\"67\",\"JFK\",\"AUS\",-1.00,12.00,0.00,\"\",0.00,267.00,228.00,1521.00,,,,,,\n2015,5,17,\"AA\",\"67\",\"JFK\",\"AUS\",-1.00,-21.00,0.00,\"\",0.00,234.00,213.00,1521.00,,,,,,\n2015,5,18,\"AA\",\"67\",\"JFK\",\"AUS\",68.00,127.00,0.00,\"\",0.00,313.00,218.00,1521.00,68.00,0.00,59.00,0.00,0.00,\n2015,5,19,\"AA\",\"67\",\"JFK\",\"AUS\",4.00,-3.00,0.00,\"\",0.00,247.00,212.00,1521.00,,,,,,\n2015,5,20,\"AA\",\"67\",\"JFK\",\"AUS\",-4.00,10.00,0.00,\"\",0.00,268.00,219.00,1521.00,,,,,,\n2015,5,21,\"AA\",\"67\",\"JFK\",\"AUS\",-4.00,-15.00,0.00,\"\",0.00,243.00,217.00,1521.00,,,,,,\n2015,5,22,\"AA\",\"67\",\"JFK\",\"AUS\",117.00,124.00,0.00,\"\",0.00,261.00,211.00,1521.00,0.00,0.00,7.00,0.00,117.00,\n2015,5,23,\"AA\",\"67\",\"JFK\",\"AUS\",-6.00,-19.00,0.00,\"\",0.00,241.00,206.00,1521.00,,,,,,\n2015,5,24,\"AA\",\"67\",\"JFK\",\"AUS\",-2.00,-19.00,0.00,\"\",0.00,237.00,211.00,1521.00,,,,,,\n2015,5,25,\"AA\",\"67\",\"JFK\",\"AUS\",-5.00,28.00,0.00,\"\",0.00,287.00,242.00,1521.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,26,\"AA\",\"67\",\"JFK\",\"AUS\",-4.00,-10.00,0.00,\"\",0.00,248.00,210.00,1521.00,,,,,,\n2015,5,27,\"AA\",\"67\",\"JFK\",\"AUS\",-3.00,14.00,0.00,\"\",0.00,271.00,223.00,1521.00,,,,,,\n2015,5,28,\"AA\",\"67\",\"JFK\",\"AUS\",-2.00,-27.00,0.00,\"\",0.00,229.00,195.00,1521.00,,,,,,\n2015,5,29,\"AA\",\"67\",\"JFK\",\"AUS\",-4.00,-29.00,0.00,\"\",0.00,229.00,201.00,1521.00,,,,,,\n2015,5,30,\"AA\",\"67\",\"JFK\",\"AUS\",-2.00,1.00,0.00,\"\",0.00,257.00,218.00,1521.00,,,,,,\n2015,5,31,\"AA\",\"67\",\"JFK\",\"AUS\",-6.00,15.00,0.00,\"\",0.00,275.00,219.00,1521.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,1,\"AA\",\"67\",\"JFK\",\"SJU\",-4.00,-20.00,0.00,\"\",0.00,228.00,203.00,1598.00,,,,,,\n2015,5,2,\"AA\",\"67\",\"JFK\",\"SJU\",-3.00,-16.00,0.00,\"\",0.00,231.00,206.00,1598.00,,,,,,\n2015,5,3,\"AA\",\"67\",\"JFK\",\"SJU\",-2.00,-7.00,0.00,\"\",0.00,239.00,208.00,1598.00,,,,,,\n2015,5,4,\"AA\",\"67\",\"JFK\",\"SJU\",-3.00,-10.00,0.00,\"\",0.00,237.00,208.00,1598.00,,,,,,\n2015,5,5,\"AA\",\"67\",\"JFK\",\"SJU\",8.00,-3.00,0.00,\"\",0.00,233.00,209.00,1598.00,,,,,,\n2015,5,6,\"AA\",\"67\",\"JFK\",\"SJU\",-7.00,-25.00,0.00,\"\",0.00,226.00,202.00,1598.00,,,,,,\n2015,5,1,\"AA\",\"117\",\"JFK\",\"LAX\",0.00,-33.00,0.00,\"\",0.00,351.00,321.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"117\",\"JFK\",\"LAX\",-9.00,-47.00,0.00,\"\",0.00,346.00,319.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"117\",\"JFK\",\"LAX\",-3.00,-19.00,0.00,\"\",0.00,368.00,325.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"117\",\"JFK\",\"LAX\",-10.00,-46.00,0.00,\"\",0.00,348.00,323.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"117\",\"JFK\",\"LAX\",-5.00,-40.00,0.00,\"\",0.00,349.00,310.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"117\",\"JFK\",\"LAX\",-3.00,-34.00,0.00,\"\",0.00,353.00,313.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"117\",\"JFK\",\"LAX\",17.00,-8.00,0.00,\"\",0.00,359.00,334.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"117\",\"JFK\",\"LAX\",-1.00,7.00,0.00,\"\",0.00,392.00,330.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"117\",\"JFK\",\"LAX\",-2.00,-27.00,0.00,\"\",0.00,359.00,326.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"117\",\"JFK\",\"LAX\",-5.00,-11.00,0.00,\"\",0.00,378.00,333.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"117\",\"JFK\",\"LAX\",-8.00,-29.00,0.00,\"\",0.00,363.00,332.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"117\",\"JFK\",\"LAX\",-3.00,25.00,0.00,\"\",0.00,412.00,370.00,2475.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,13,\"AA\",\"117\",\"JFK\",\"LAX\",17.00,9.00,0.00,\"\",0.00,376.00,346.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"117\",\"JFK\",\"LAX\",-4.00,-20.00,0.00,\"\",0.00,368.00,330.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"117\",\"JFK\",\"LAX\",-8.00,-20.00,0.00,\"\",0.00,372.00,338.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"117\",\"JFK\",\"LAX\",-3.00,-43.00,0.00,\"\",0.00,344.00,326.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"117\",\"JFK\",\"LAX\",-6.00,-24.00,0.00,\"\",0.00,366.00,339.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"117\",\"JFK\",\"LAX\",-6.00,-21.00,0.00,\"\",0.00,369.00,335.00,2475.00,,,,,,\n2015,5,19,\"AA\",\"117\",\"JFK\",\"LAX\",-3.00,-6.00,0.00,\"\",0.00,381.00,343.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"117\",\"JFK\",\"LAX\",-5.00,-28.00,0.00,\"\",0.00,361.00,341.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"117\",\"JFK\",\"LAX\",-8.00,-20.00,0.00,\"\",0.00,372.00,325.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"117\",\"JFK\",\"LAX\",-6.00,-32.00,0.00,\"\",0.00,358.00,335.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"117\",\"JFK\",\"LAX\",-9.00,-13.00,0.00,\"\",0.00,380.00,351.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"117\",\"JFK\",\"LAX\",-6.00,-38.00,0.00,\"\",0.00,352.00,320.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"117\",\"JFK\",\"LAX\",6.00,-10.00,0.00,\"\",0.00,368.00,338.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"117\",\"JFK\",\"LAX\",-5.00,-37.00,0.00,\"\",0.00,352.00,328.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"117\",\"JFK\",\"LAX\",-5.00,-7.00,0.00,\"\",0.00,382.00,342.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"117\",\"JFK\",\"LAX\",-7.00,-35.00,0.00,\"\",0.00,356.00,323.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"117\",\"JFK\",\"LAX\",-2.00,-2.00,0.00,\"\",0.00,384.00,335.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"117\",\"JFK\",\"LAX\",-6.00,-48.00,0.00,\"\",0.00,342.00,308.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"117\",\"JFK\",\"LAX\",5.00,-24.00,0.00,\"\",0.00,355.00,317.00,2475.00,,,,,,\n2015,5,1,\"AA\",\"118\",\"LAX\",\"JFK\",0.00,-1.00,0.00,\"\",0.00,336.00,308.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"118\",\"LAX\",\"JFK\",10.00,-9.00,0.00,\"\",0.00,318.00,301.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"118\",\"LAX\",\"JFK\",175.00,165.00,0.00,\"\",0.00,327.00,303.00,2475.00,27.00,0.00,0.00,0.00,138.00,\n2015,5,4,\"AA\",\"118\",\"LAX\",\"JFK\",-4.00,2.00,0.00,\"\",0.00,343.00,312.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"118\",\"LAX\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,327.00,301.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"118\",\"LAX\",\"JFK\",-6.00,-2.00,0.00,\"\",0.00,341.00,317.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"118\",\"LAX\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,322.00,295.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"118\",\"LAX\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,319.00,298.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"118\",\"LAX\",\"JFK\",-6.00,17.00,0.00,\"\",0.00,360.00,324.00,2475.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,10,\"AA\",\"118\",\"LAX\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,321.00,301.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"118\",\"LAX\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,318.00,295.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"118\",\"LAX\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,329.00,306.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"118\",\"LAX\",\"JFK\",-9.00,-34.00,0.00,\"\",0.00,312.00,276.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"118\",\"LAX\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,314.00,290.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"118\",\"LAX\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,318.00,286.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"118\",\"LAX\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,322.00,297.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"118\",\"LAX\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,313.00,291.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"118\",\"LAX\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,319.00,293.00,2475.00,,,,,,\n2015,5,19,\"AA\",\"118\",\"LAX\",\"JFK\",-4.00,-32.00,0.00,\"\",0.00,309.00,285.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"118\",\"LAX\",\"JFK\",-4.00,-48.00,0.00,\"\",0.00,293.00,269.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"118\",\"LAX\",\"JFK\",37.00,5.00,0.00,\"\",0.00,305.00,273.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"118\",\"LAX\",\"JFK\",-6.00,-45.00,0.00,\"\",0.00,298.00,277.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"118\",\"LAX\",\"JFK\",-8.00,-33.00,0.00,\"\",0.00,312.00,283.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"118\",\"LAX\",\"JFK\",-7.00,-33.00,0.00,\"\",0.00,311.00,290.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"118\",\"LAX\",\"JFK\",-8.00,-5.00,0.00,\"\",0.00,340.00,308.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"118\",\"LAX\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,329.00,304.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"118\",\"LAX\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,336.00,308.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"118\",\"LAX\",\"JFK\",-1.00,-2.00,0.00,\"\",0.00,336.00,312.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"118\",\"LAX\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,319.00,293.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"118\",\"LAX\",\"JFK\",0.00,-1.00,0.00,\"\",0.00,336.00,306.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"118\",\"LAX\",\"JFK\",-8.00,41.00,0.00,\"\",0.00,386.00,342.00,2475.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,1,\"AA\",\"120\",\"LAS\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,298.00,271.00,2248.00,,,,,,\n2015,5,2,\"AA\",\"120\",\"LAS\",\"JFK\",17.00,-2.00,0.00,\"\",0.00,292.00,274.00,2248.00,,,,,,\n2015,5,3,\"AA\",\"120\",\"LAS\",\"JFK\",-3.00,18.00,0.00,\"\",0.00,332.00,274.00,2248.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,4,\"AA\",\"120\",\"LAS\",\"JFK\",-2.00,-1.00,0.00,\"\",0.00,312.00,282.00,2248.00,,,,,,\n2015,5,5,\"AA\",\"120\",\"LAS\",\"JFK\",-5.00,-28.00,0.00,\"\",0.00,288.00,271.00,2248.00,,,,,,\n2015,5,6,\"AA\",\"120\",\"LAS\",\"JFK\",-1.00,0.00,0.00,\"\",0.00,312.00,287.00,2248.00,,,,,,\n2015,5,7,\"AA\",\"120\",\"LAS\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,293.00,275.00,2248.00,,,,,,\n2015,5,8,\"AA\",\"120\",\"LAS\",\"JFK\",-1.00,-24.00,0.00,\"\",0.00,288.00,268.00,2248.00,,,,,,\n2015,5,9,\"AA\",\"120\",\"LAS\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,294.00,276.00,2248.00,,,,,,\n2015,5,10,\"AA\",\"120\",\"LAS\",\"JFK\",-8.00,-6.00,0.00,\"\",0.00,313.00,296.00,2248.00,,,,,,\n2015,5,11,\"AA\",\"120\",\"LAS\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,299.00,267.00,2248.00,,,,,,\n2015,5,12,\"AA\",\"120\",\"LAS\",\"JFK\",55.00,22.00,0.00,\"\",0.00,278.00,254.00,2248.00,0.00,0.00,18.00,0.00,4.00,\n2015,5,13,\"AA\",\"120\",\"LAS\",\"JFK\",-6.00,-36.00,0.00,\"\",0.00,281.00,261.00,2248.00,,,,,,\n2015,5,14,\"AA\",\"120\",\"LAS\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,292.00,271.00,2248.00,,,,,,\n2015,5,15,\"AA\",\"120\",\"LAS\",\"JFK\",1.00,-16.00,0.00,\"\",0.00,294.00,275.00,2248.00,,,,,,\n2015,5,16,\"AA\",\"120\",\"LAS\",\"JFK\",-5.00,7.00,0.00,\"\",0.00,323.00,295.00,2248.00,,,,,,\n2015,5,17,\"AA\",\"120\",\"LAS\",\"JFK\",-3.00,3.00,0.00,\"\",0.00,317.00,288.00,2248.00,,,,,,\n2015,5,18,\"AA\",\"120\",\"LAS\",\"JFK\",46.00,38.00,0.00,\"\",0.00,303.00,257.00,2248.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,19,\"AA\",\"120\",\"LAS\",\"JFK\",5.00,-20.00,0.00,\"\",0.00,286.00,258.00,2248.00,,,,,,\n2015,5,20,\"AA\",\"120\",\"LAS\",\"JFK\",14.00,-25.00,0.00,\"\",0.00,272.00,245.00,2248.00,,,,,,\n2015,5,21,\"AA\",\"120\",\"LAS\",\"JFK\",-1.00,-37.00,0.00,\"\",0.00,275.00,253.00,2248.00,,,,,,\n2015,5,22,\"AA\",\"120\",\"LAS\",\"JFK\",-9.00,-35.00,0.00,\"\",0.00,285.00,266.00,2248.00,,,,,,\n2015,5,23,\"AA\",\"120\",\"LAS\",\"JFK\",-3.00,-30.00,0.00,\"\",0.00,284.00,264.00,2248.00,,,,,,\n2015,5,24,\"AA\",\"120\",\"LAS\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,294.00,268.00,2248.00,,,,,,\n2015,5,25,\"AA\",\"120\",\"LAS\",\"JFK\",-4.00,-28.00,0.00,\"\",0.00,287.00,268.00,2248.00,,,,,,\n2015,5,26,\"AA\",\"120\",\"LAS\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,307.00,286.00,2248.00,,,,,,\n2015,5,27,\"AA\",\"120\",\"LAS\",\"JFK\",81.00,,1.00,\"A\",0.00,,,2248.00,,,,,,\n2015,5,28,\"AA\",\"120\",\"LAS\",\"JFK\",-7.00,-29.00,0.00,\"\",0.00,289.00,270.00,2248.00,,,,,,\n2015,5,29,\"AA\",\"120\",\"LAS\",\"JFK\",336.00,316.00,0.00,\"\",0.00,291.00,272.00,2248.00,0.00,0.00,0.00,0.00,316.00,\n2015,5,30,\"AA\",\"120\",\"LAS\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,302.00,281.00,2248.00,,,,,,\n2015,5,31,\"AA\",\"120\",\"LAS\",\"JFK\",68.00,85.00,0.00,\"\",0.00,328.00,292.00,2248.00,0.00,0.00,85.00,0.00,0.00,\n2015,5,7,\"AA\",\"130\",\"ORD\",\"JFK\",8.00,3.00,0.00,\"\",0.00,141.00,107.00,740.00,,,,,,\n2015,5,8,\"AA\",\"130\",\"ORD\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,140.00,113.00,740.00,,,,,,\n2015,5,9,\"AA\",\"130\",\"ORD\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,130.00,109.00,740.00,,,,,,\n2015,5,10,\"AA\",\"130\",\"ORD\",\"JFK\",57.00,49.00,0.00,\"\",0.00,138.00,101.00,740.00,0.00,0.00,0.00,0.00,49.00,\n2015,5,11,\"AA\",\"130\",\"ORD\",\"JFK\",-9.00,33.00,0.00,\"\",0.00,188.00,112.00,740.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,12,\"AA\",\"130\",\"ORD\",\"JFK\",119.00,83.00,0.00,\"\",0.00,110.00,91.00,740.00,0.00,0.00,83.00,0.00,0.00,\n2015,5,13,\"AA\",\"130\",\"ORD\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,124.00,95.00,740.00,,,,,,\n2015,5,14,\"AA\",\"130\",\"ORD\",\"JFK\",10.00,-21.00,0.00,\"\",0.00,115.00,99.00,740.00,,,,,,\n2015,5,15,\"AA\",\"130\",\"ORD\",\"JFK\",-8.00,-1.00,0.00,\"\",0.00,153.00,100.00,740.00,,,,,,\n2015,5,16,\"AA\",\"130\",\"ORD\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,126.00,101.00,740.00,,,,,,\n2015,5,17,\"AA\",\"130\",\"ORD\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,129.00,104.00,740.00,,,,,,\n2015,5,18,\"AA\",\"130\",\"ORD\",\"JFK\",90.00,125.00,0.00,\"\",0.00,181.00,117.00,740.00,0.00,0.00,125.00,0.00,0.00,\n2015,5,19,\"AA\",\"130\",\"ORD\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,131.00,99.00,740.00,,,,,,\n2015,5,20,\"AA\",\"130\",\"ORD\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,127.00,94.00,740.00,,,,,,\n2015,5,21,\"AA\",\"130\",\"ORD\",\"JFK\",2.00,-24.00,0.00,\"\",0.00,120.00,95.00,740.00,,,,,,\n2015,5,22,\"AA\",\"130\",\"ORD\",\"JFK\",30.00,20.00,0.00,\"\",0.00,136.00,104.00,740.00,13.00,0.00,0.00,0.00,7.00,\n2015,5,23,\"AA\",\"130\",\"ORD\",\"JFK\",44.00,55.00,0.00,\"\",0.00,157.00,108.00,740.00,44.00,0.00,11.00,0.00,0.00,\n2015,5,24,\"AA\",\"130\",\"ORD\",\"JFK\",1.00,-20.00,0.00,\"\",0.00,125.00,95.00,740.00,,,,,,\n2015,5,25,\"AA\",\"130\",\"ORD\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,132.00,101.00,740.00,,,,,,\n2015,5,26,\"AA\",\"130\",\"ORD\",\"JFK\",31.00,22.00,0.00,\"\",0.00,137.00,108.00,740.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"AA\",\"130\",\"ORD\",\"JFK\",133.00,154.00,0.00,\"\",0.00,167.00,127.00,740.00,0.00,0.00,154.00,0.00,0.00,\n2015,5,28,\"AA\",\"130\",\"ORD\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,130.00,100.00,740.00,,,,,,\n2015,5,29,\"AA\",\"130\",\"ORD\",\"JFK\",0.00,40.00,0.00,\"\",0.00,186.00,113.00,740.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,30,\"AA\",\"130\",\"ORD\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,139.00,104.00,740.00,,,,,,\n2015,5,31,\"AA\",\"130\",\"ORD\",\"JFK\",98.00,143.00,0.00,\"\",0.00,191.00,137.00,740.00,0.00,0.00,73.00,0.00,70.00,\n2015,5,1,\"AA\",\"131\",\"JFK\",\"MIA\",-5.00,-21.00,0.00,\"\",0.00,174.00,148.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"131\",\"JFK\",\"MIA\",16.00,14.00,0.00,\"\",0.00,188.00,148.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"131\",\"JFK\",\"MIA\",-3.00,4.00,0.00,\"\",0.00,197.00,139.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"131\",\"JFK\",\"MIA\",11.00,1.00,0.00,\"\",0.00,180.00,146.00,1089.00,,,,,,\n2015,5,5,\"AA\",\"131\",\"JFK\",\"MIA\",-1.00,0.00,0.00,\"\",0.00,191.00,163.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"131\",\"JFK\",\"MIA\",-7.00,7.00,0.00,\"\",0.00,204.00,171.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"131\",\"JFK\",\"ORD\",10.00,-17.00,0.00,\"\",0.00,147.00,110.00,740.00,,,,,,\n2015,5,8,\"AA\",\"131\",\"JFK\",\"ORD\",25.00,14.00,0.00,\"\",0.00,163.00,115.00,740.00,,,,,,\n2015,5,9,\"AA\",\"131\",\"JFK\",\"ORD\",0.00,-17.00,0.00,\"\",0.00,157.00,119.00,740.00,,,,,,\n2015,5,10,\"AA\",\"131\",\"JFK\",\"ORD\",-6.00,-14.00,0.00,\"\",0.00,166.00,116.00,740.00,,,,,,\n2015,5,11,\"AA\",\"131\",\"JFK\",\"ORD\",1.00,-20.00,0.00,\"\",0.00,153.00,111.00,740.00,,,,,,\n2015,5,12,\"AA\",\"131\",\"JFK\",\"ORD\",2.00,-8.00,0.00,\"\",0.00,164.00,129.00,740.00,,,,,,\n2015,5,13,\"AA\",\"131\",\"JFK\",\"ORD\",-5.00,-9.00,0.00,\"\",0.00,170.00,129.00,740.00,,,,,,\n2015,5,14,\"AA\",\"131\",\"JFK\",\"ORD\",16.00,1.00,0.00,\"\",0.00,159.00,125.00,740.00,,,,,,\n2015,5,15,\"AA\",\"131\",\"JFK\",\"ORD\",-5.00,-25.00,0.00,\"\",0.00,154.00,120.00,740.00,,,,,,\n2015,5,16,\"AA\",\"131\",\"JFK\",\"ORD\",4.00,-4.00,0.00,\"\",0.00,166.00,120.00,740.00,,,,,,\n2015,5,17,\"AA\",\"131\",\"JFK\",\"ORD\",-4.00,-28.00,0.00,\"\",0.00,150.00,111.00,740.00,,,,,,\n2015,5,18,\"AA\",\"131\",\"JFK\",\"ORD\",-6.00,-4.00,0.00,\"\",0.00,176.00,124.00,740.00,,,,,,\n2015,5,19,\"AA\",\"131\",\"JFK\",\"ORD\",-5.00,-10.00,0.00,\"\",0.00,169.00,129.00,740.00,,,,,,\n2015,5,20,\"AA\",\"131\",\"JFK\",\"ORD\",-5.00,-6.00,0.00,\"\",0.00,173.00,137.00,740.00,,,,,,\n2015,5,21,\"AA\",\"131\",\"JFK\",\"ORD\",134.00,123.00,0.00,\"\",0.00,163.00,118.00,740.00,0.00,0.00,0.00,0.00,123.00,\n2015,5,22,\"AA\",\"131\",\"JFK\",\"ORD\",48.00,36.00,0.00,\"\",0.00,162.00,129.00,740.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,23,\"AA\",\"131\",\"JFK\",\"ORD\",-3.00,-10.00,0.00,\"\",0.00,167.00,126.00,740.00,,,,,,\n2015,5,24,\"AA\",\"131\",\"JFK\",\"ORD\",-5.00,-11.00,0.00,\"\",0.00,168.00,131.00,740.00,,,,,,\n2015,5,25,\"AA\",\"131\",\"JFK\",\"ORD\",-7.00,-12.00,0.00,\"\",0.00,169.00,112.00,740.00,,,,,,\n2015,5,26,\"AA\",\"131\",\"JFK\",\"ORD\",0.00,-19.00,0.00,\"\",0.00,155.00,120.00,740.00,,,,,,\n2015,5,27,\"AA\",\"131\",\"JFK\",\"ORD\",267.00,242.00,0.00,\"\",0.00,149.00,110.00,740.00,240.00,0.00,0.00,0.00,2.00,\n2015,5,28,\"AA\",\"131\",\"JFK\",\"ORD\",-7.00,-21.00,0.00,\"\",0.00,160.00,116.00,740.00,,,,,,\n2015,5,29,\"AA\",\"131\",\"JFK\",\"ORD\",-6.00,-26.00,0.00,\"\",0.00,154.00,114.00,740.00,,,,,,\n2015,5,30,\"AA\",\"131\",\"JFK\",\"ORD\",-3.00,-16.00,0.00,\"\",0.00,161.00,115.00,740.00,,,,,,\n2015,5,31,\"AA\",\"131\",\"JFK\",\"ORD\",107.00,135.00,0.00,\"\",0.00,202.00,120.00,740.00,0.00,31.00,28.00,0.00,76.00,\n2015,5,1,\"AA\",\"133\",\"JFK\",\"LAX\",-7.00,-37.00,0.00,\"\",0.00,348.00,322.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"133\",\"JFK\",\"LAX\",-5.00,-39.00,0.00,\"\",0.00,344.00,319.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"133\",\"JFK\",\"LAX\",165.00,163.00,0.00,\"\",0.00,376.00,343.00,2475.00,8.00,0.00,0.00,0.00,155.00,\n2015,5,4,\"AA\",\"133\",\"JFK\",\"LAX\",-3.00,-15.00,0.00,\"\",0.00,366.00,335.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"133\",\"JFK\",\"LAX\",-9.00,-24.00,0.00,\"\",0.00,363.00,329.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"133\",\"JFK\",\"LAX\",-6.00,-2.00,0.00,\"\",0.00,382.00,337.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"133\",\"JFK\",\"LAX\",1.00,-5.00,0.00,\"\",0.00,372.00,345.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"133\",\"JFK\",\"LAX\",7.00,26.00,0.00,\"\",0.00,397.00,344.00,2475.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,10,\"AA\",\"133\",\"JFK\",\"LAX\",7.00,10.00,0.00,\"\",0.00,381.00,336.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"133\",\"JFK\",\"LAX\",-5.00,-2.00,0.00,\"\",0.00,381.00,336.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"133\",\"JFK\",\"LAX\",-1.00,-20.00,0.00,\"\",0.00,359.00,328.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"133\",\"JFK\",\"LAX\",-4.00,-21.00,0.00,\"\",0.00,361.00,338.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"133\",\"JFK\",\"LAX\",-3.00,-25.00,0.00,\"\",0.00,356.00,333.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"133\",\"JFK\",\"LAX\",11.00,5.00,0.00,\"\",0.00,372.00,337.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"133\",\"JFK\",\"LAX\",-4.00,-20.00,0.00,\"\",0.00,362.00,328.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"133\",\"JFK\",\"LAX\",-1.00,-4.00,0.00,\"\",0.00,375.00,339.00,2475.00,,,,,,\n2015,5,19,\"AA\",\"133\",\"JFK\",\"LAX\",-3.00,27.00,0.00,\"\",0.00,408.00,360.00,2475.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,20,\"AA\",\"133\",\"JFK\",\"LAX\",-4.00,1.00,0.00,\"\",0.00,383.00,353.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"133\",\"JFK\",\"LAX\",14.00,2.00,0.00,\"\",0.00,366.00,337.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"133\",\"JFK\",\"LAX\",0.00,10.00,0.00,\"\",0.00,388.00,341.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"133\",\"JFK\",\"LAX\",-7.00,-25.00,0.00,\"\",0.00,360.00,313.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"133\",\"JFK\",\"LAX\",4.00,-2.00,0.00,\"\",0.00,372.00,340.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"133\",\"JFK\",\"LAX\",10.00,-15.00,0.00,\"\",0.00,353.00,330.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"133\",\"JFK\",\"LAX\",-3.00,51.00,0.00,\"\",0.00,432.00,346.00,2475.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,28,\"AA\",\"133\",\"JFK\",\"LAX\",4.00,-23.00,0.00,\"\",0.00,351.00,333.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"133\",\"JFK\",\"LAX\",3.00,-16.00,0.00,\"\",0.00,359.00,333.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"133\",\"JFK\",\"LAX\",58.00,65.00,0.00,\"\",0.00,385.00,324.00,2475.00,19.00,0.00,7.00,0.00,39.00,\n2015,5,1,\"AA\",\"134\",\"JFK\",\"MIA\",-5.00,-10.00,0.00,\"\",0.00,186.00,154.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"134\",\"JFK\",\"MIA\",-4.00,-11.00,0.00,\"\",0.00,184.00,151.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"134\",\"JFK\",\"MIA\",-5.00,-12.00,0.00,\"\",0.00,184.00,143.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"134\",\"JFK\",\"MIA\",5.00,9.00,0.00,\"\",0.00,195.00,151.00,1089.00,,,,,,\n2015,5,5,\"AA\",\"134\",\"JFK\",\"MIA\",-4.00,-4.00,0.00,\"\",0.00,191.00,153.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"134\",\"JFK\",\"MIA\",-1.00,6.00,0.00,\"\",0.00,198.00,159.00,1089.00,,,,,,\n2015,5,1,\"AA\",\"74\",\"DFW\",\"JFK\",3.00,-12.00,0.00,\"\",0.00,213.00,187.00,1391.00,,,,,,\n2015,5,2,\"AA\",\"74\",\"DFW\",\"JFK\",2.00,-15.00,0.00,\"\",0.00,211.00,189.00,1391.00,,,,,,\n2015,5,3,\"AA\",\"74\",\"DFW\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,209.00,186.00,1391.00,,,,,,\n2015,5,4,\"AA\",\"74\",\"DFW\",\"JFK\",56.00,28.00,0.00,\"\",0.00,200.00,184.00,1391.00,3.00,0.00,0.00,0.00,25.00,\n2015,5,5,\"AA\",\"74\",\"DFW\",\"JFK\",74.00,54.00,0.00,\"\",0.00,208.00,186.00,1391.00,7.00,0.00,0.00,0.00,47.00,\n2015,5,6,\"AA\",\"74\",\"DFW\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,212.00,188.00,1391.00,,,,,,\n2015,5,1,\"AA\",\"84\",\"BOS\",\"JFK\",67.00,55.00,0.00,\"\",0.00,69.00,48.00,187.00,55.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"AA\",\"84\",\"BOS\",\"JFK\",-9.00,-25.00,0.00,\"\",0.00,65.00,46.00,187.00,,,,,,\n2015,5,3,\"AA\",\"84\",\"BOS\",\"JFK\",-8.00,-26.00,0.00,\"\",0.00,63.00,41.00,187.00,,,,,,\n2015,5,4,\"AA\",\"84\",\"BOS\",\"JFK\",-9.00,-13.00,0.00,\"\",0.00,77.00,48.00,187.00,,,,,,\n2015,5,5,\"AA\",\"84\",\"BOS\",\"JFK\",-8.00,-3.00,0.00,\"\",0.00,86.00,51.00,187.00,,,,,,\n2015,5,6,\"AA\",\"84\",\"BOS\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,68.00,45.00,187.00,,,,,,\n2015,5,1,\"AA\",\"84\",\"JFK\",\"BOS\",2.00,-9.00,0.00,\"\",0.00,63.00,38.00,187.00,,,,,,\n2015,5,2,\"AA\",\"84\",\"JFK\",\"BOS\",-4.00,-11.00,0.00,\"\",0.00,67.00,50.00,187.00,,,,,,\n2015,5,3,\"AA\",\"84\",\"JFK\",\"BOS\",0.00,-11.00,0.00,\"\",0.00,63.00,43.00,187.00,,,,,,\n2015,5,4,\"AA\",\"84\",\"JFK\",\"BOS\",-7.00,-17.00,0.00,\"\",0.00,64.00,44.00,187.00,,,,,,\n2015,5,5,\"AA\",\"84\",\"JFK\",\"BOS\",-6.00,-20.00,0.00,\"\",0.00,60.00,40.00,187.00,,,,,,\n2015,5,6,\"AA\",\"84\",\"JFK\",\"BOS\",-3.00,-18.00,0.00,\"\",0.00,59.00,35.00,187.00,,,,,,\n2015,5,7,\"AA\",\"84\",\"JFK\",\"BOS\",-4.00,-9.00,0.00,\"\",0.00,69.00,44.00,187.00,,,,,,\n2015,5,8,\"AA\",\"84\",\"JFK\",\"BOS\",-5.00,3.00,0.00,\"\",0.00,82.00,43.00,187.00,,,,,,\n2015,5,9,\"AA\",\"84\",\"JFK\",\"BOS\",-3.00,-19.00,0.00,\"\",0.00,58.00,35.00,187.00,,,,,,\n2015,5,10,\"AA\",\"84\",\"JFK\",\"BOS\",-8.00,-19.00,0.00,\"\",0.00,63.00,43.00,187.00,,,,,,\n2015,5,11,\"AA\",\"84\",\"JFK\",\"BOS\",-4.00,3.00,0.00,\"\",0.00,81.00,49.00,187.00,,,,,,\n2015,5,12,\"AA\",\"84\",\"JFK\",\"BOS\",-6.00,7.00,0.00,\"\",0.00,87.00,35.00,187.00,,,,,,\n2015,5,13,\"AA\",\"84\",\"JFK\",\"BOS\",0.00,-11.00,0.00,\"\",0.00,63.00,36.00,187.00,,,,,,\n2015,5,14,\"AA\",\"84\",\"JFK\",\"BOS\",2.00,-12.00,0.00,\"\",0.00,60.00,39.00,187.00,,,,,,\n2015,5,15,\"AA\",\"84\",\"JFK\",\"BOS\",0.00,20.00,0.00,\"\",0.00,94.00,37.00,187.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,16,\"AA\",\"84\",\"JFK\",\"BOS\",-8.00,-8.00,0.00,\"\",0.00,74.00,40.00,187.00,,,,,,\n2015,5,17,\"AA\",\"84\",\"JFK\",\"BOS\",-5.00,-12.00,0.00,\"\",0.00,67.00,45.00,187.00,,,,,,\n2015,5,18,\"AA\",\"84\",\"JFK\",\"BOS\",-4.00,29.00,0.00,\"\",0.00,107.00,42.00,187.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,19,\"AA\",\"84\",\"JFK\",\"BOS\",-4.00,6.00,0.00,\"\",0.00,84.00,56.00,187.00,,,,,,\n2015,5,20,\"AA\",\"84\",\"JFK\",\"BOS\",-4.00,-16.00,0.00,\"\",0.00,62.00,37.00,187.00,,,,,,\n2015,5,21,\"AA\",\"84\",\"JFK\",\"BOS\",-5.00,-13.00,0.00,\"\",0.00,66.00,39.00,187.00,,,,,,\n2015,5,22,\"AA\",\"84\",\"JFK\",\"BOS\",-3.00,3.00,0.00,\"\",0.00,80.00,45.00,187.00,,,,,,\n2015,5,23,\"AA\",\"84\",\"JFK\",\"BOS\",-1.00,-12.00,0.00,\"\",0.00,63.00,42.00,187.00,,,,,,\n2015,5,24,\"AA\",\"84\",\"JFK\",\"BOS\",-1.00,-8.00,0.00,\"\",0.00,67.00,45.00,187.00,,,,,,\n2015,5,25,\"AA\",\"84\",\"JFK\",\"BOS\",-4.00,-10.00,0.00,\"\",0.00,68.00,41.00,187.00,,,,,,\n2015,5,26,\"AA\",\"84\",\"JFK\",\"BOS\",4.00,-7.00,0.00,\"\",0.00,63.00,43.00,187.00,,,,,,\n2015,5,27,\"AA\",\"84\",\"JFK\",\"BOS\",-4.00,-17.00,0.00,\"\",0.00,61.00,40.00,187.00,,,,,,\n2015,5,28,\"AA\",\"84\",\"JFK\",\"BOS\",-4.00,-15.00,0.00,\"\",0.00,63.00,43.00,187.00,,,,,,\n2015,5,29,\"AA\",\"84\",\"JFK\",\"BOS\",-4.00,-14.00,0.00,\"\",0.00,64.00,39.00,187.00,,,,,,\n2015,5,30,\"AA\",\"84\",\"JFK\",\"BOS\",-6.00,-15.00,0.00,\"\",0.00,65.00,43.00,187.00,,,,,,\n2015,5,31,\"AA\",\"84\",\"JFK\",\"BOS\",5.00,-4.00,0.00,\"\",0.00,65.00,42.00,187.00,,,,,,\n2015,5,1,\"AA\",\"85\",\"JFK\",\"SFO\",-9.00,-33.00,0.00,\"\",0.00,379.00,359.00,2586.00,,,,,,\n2015,5,2,\"AA\",\"85\",\"JFK\",\"SFO\",-8.00,-46.00,0.00,\"\",0.00,365.00,344.00,2586.00,,,,,,\n2015,5,3,\"AA\",\"85\",\"JFK\",\"SFO\",-7.00,-4.00,0.00,\"\",0.00,406.00,362.00,2586.00,,,,,,\n2015,5,4,\"AA\",\"85\",\"JFK\",\"SFO\",-2.00,5.00,0.00,\"\",0.00,410.00,371.00,2586.00,,,,,,\n2015,5,5,\"AA\",\"85\",\"JFK\",\"SFO\",-8.00,7.00,0.00,\"\",0.00,418.00,380.00,2586.00,,,,,,\n2015,5,6,\"AA\",\"85\",\"JFK\",\"SFO\",-4.00,-9.00,0.00,\"\",0.00,398.00,345.00,2586.00,,,,,,\n2015,5,7,\"AA\",\"85\",\"JFK\",\"SFO\",-1.00,-36.00,0.00,\"\",0.00,368.00,349.00,2586.00,,,,,,\n2015,5,10,\"AA\",\"85\",\"JFK\",\"SFO\",100.00,103.00,0.00,\"\",0.00,406.00,366.00,2586.00,0.00,0.00,103.00,0.00,0.00,\n2015,5,11,\"AA\",\"85\",\"JFK\",\"SFO\",-5.00,6.00,0.00,\"\",0.00,414.00,370.00,2586.00,,,,,,\n2015,5,12,\"AA\",\"85\",\"JFK\",\"SFO\",-5.00,-12.00,0.00,\"\",0.00,396.00,365.00,2586.00,,,,,,\n2015,5,13,\"AA\",\"85\",\"JFK\",\"SFO\",,,1.00,\"A\",0.00,,,2586.00,,,,,,\n2015,5,14,\"AA\",\"85\",\"JFK\",\"SFO\",-6.00,-1.00,0.00,\"\",0.00,408.00,370.00,2586.00,,,,,,\n2015,5,17,\"AA\",\"85\",\"JFK\",\"SFO\",7.00,-2.00,0.00,\"\",0.00,394.00,362.00,2586.00,,,,,,\n2015,5,18,\"AA\",\"85\",\"JFK\",\"SFO\",2.00,-13.00,0.00,\"\",0.00,388.00,370.00,2586.00,,,,,,\n2015,5,19,\"AA\",\"85\",\"JFK\",\"SFO\",4.00,3.00,0.00,\"\",0.00,402.00,361.00,2586.00,,,,,,\n2015,5,20,\"AA\",\"85\",\"JFK\",\"SFO\",11.00,7.00,0.00,\"\",0.00,399.00,374.00,2586.00,,,,,,\n2015,5,21,\"AA\",\"85\",\"JFK\",\"SFO\",25.00,7.00,0.00,\"\",0.00,385.00,358.00,2586.00,,,,,,\n2015,5,22,\"AA\",\"85\",\"JFK\",\"SFO\",17.00,25.00,0.00,\"\",0.00,411.00,375.00,2586.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,23,\"AA\",\"85\",\"JFK\",\"SFO\",-3.00,-15.00,0.00,\"\",0.00,391.00,359.00,2586.00,,,,,,\n2015,5,24,\"AA\",\"85\",\"JFK\",\"SFO\",-7.00,-25.00,0.00,\"\",0.00,385.00,359.00,2586.00,,,,,,\n2015,5,25,\"AA\",\"85\",\"JFK\",\"SFO\",-3.00,-29.00,0.00,\"\",0.00,377.00,346.00,2586.00,,,,,,\n2015,5,26,\"AA\",\"85\",\"JFK\",\"SFO\",85.00,68.00,0.00,\"\",0.00,386.00,364.00,2586.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,27,\"AA\",\"85\",\"JFK\",\"SFO\",-5.00,56.00,0.00,\"\",0.00,464.00,377.00,2586.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,28,\"AA\",\"85\",\"JFK\",\"SFO\",18.00,1.00,0.00,\"\",0.00,386.00,363.00,2586.00,,,,,,\n2015,5,31,\"AA\",\"85\",\"JFK\",\"SFO\",-2.00,-35.00,0.00,\"\",0.00,370.00,340.00,2586.00,,,,,,\n2015,5,1,\"AA\",\"94\",\"SAN\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,315.00,298.00,2446.00,,,,,,\n2015,5,2,\"AA\",\"94\",\"SAN\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,317.00,295.00,2446.00,,,,,,\n2015,5,3,\"AA\",\"94\",\"SAN\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,321.00,297.00,2446.00,,,,,,\n2015,5,4,\"AA\",\"94\",\"SAN\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,315.00,295.00,2446.00,,,,,,\n2015,5,5,\"AA\",\"94\",\"SAN\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,307.00,289.00,2446.00,,,,,,\n2015,5,6,\"AA\",\"94\",\"SAN\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,323.00,303.00,2446.00,,,,,,\n2015,5,7,\"AA\",\"94\",\"SAN\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,318.00,290.00,2446.00,,,,,,\n2015,5,8,\"AA\",\"94\",\"SAN\",\"JFK\",-2.00,-2.00,0.00,\"\",0.00,330.00,298.00,2446.00,,,,,,\n2015,5,9,\"AA\",\"94\",\"SAN\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,314.00,290.00,2446.00,,,,,,\n2015,5,10,\"AA\",\"94\",\"SAN\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,312.00,291.00,2446.00,,,,,,\n2015,5,11,\"AA\",\"94\",\"SAN\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,316.00,291.00,2446.00,,,,,,\n2015,5,12,\"AA\",\"94\",\"SAN\",\"JFK\",115.00,103.00,0.00,\"\",0.00,318.00,282.00,2446.00,0.00,103.00,0.00,0.00,0.00,\n2015,5,13,\"AA\",\"94\",\"SAN\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,305.00,281.00,2446.00,,,,,,\n2015,5,14,\"AA\",\"94\",\"SAN\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,306.00,284.00,2446.00,,,,,,\n2015,5,15,\"AA\",\"94\",\"SAN\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,325.00,285.00,2446.00,,,,,,\n2015,5,16,\"AA\",\"94\",\"SAN\",\"JFK\",-7.00,-28.00,0.00,\"\",0.00,309.00,290.00,2446.00,,,,,,\n2015,5,17,\"AA\",\"94\",\"SAN\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,312.00,291.00,2446.00,,,,,,\n2015,5,18,\"AA\",\"94\",\"SAN\",\"JFK\",-5.00,-28.00,0.00,\"\",0.00,307.00,281.00,2446.00,,,,,,\n2015,5,19,\"AA\",\"94\",\"SAN\",\"JFK\",-8.00,-32.00,0.00,\"\",0.00,306.00,278.00,2446.00,,,,,,\n2015,5,20,\"AA\",\"94\",\"SAN\",\"JFK\",-4.00,-47.00,0.00,\"\",0.00,287.00,268.00,2446.00,,,,,,\n2015,5,21,\"AA\",\"94\",\"SAN\",\"JFK\",-8.00,-47.00,0.00,\"\",0.00,291.00,273.00,2446.00,,,,,,\n2015,5,22,\"AA\",\"94\",\"SAN\",\"JFK\",-2.00,-44.00,0.00,\"\",0.00,288.00,269.00,2446.00,,,,,,\n2015,5,23,\"AA\",\"94\",\"SAN\",\"JFK\",-9.00,-34.00,0.00,\"\",0.00,305.00,283.00,2446.00,,,,,,\n2015,5,24,\"AA\",\"94\",\"SAN\",\"JFK\",-12.00,-34.00,0.00,\"\",0.00,308.00,285.00,2446.00,,,,,,\n2015,5,25,\"AA\",\"94\",\"SAN\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,320.00,298.00,2446.00,,,,,,\n2015,5,26,\"AA\",\"94\",\"SAN\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,318.00,297.00,2446.00,,,,,,\n2015,5,27,\"AA\",\"94\",\"SAN\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,319.00,296.00,2446.00,,,,,,\n2015,5,28,\"AA\",\"94\",\"SAN\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,318.00,296.00,2446.00,,,,,,\n2015,5,29,\"AA\",\"94\",\"SAN\",\"JFK\",-10.00,-34.00,0.00,\"\",0.00,306.00,287.00,2446.00,,,,,,\n2015,5,30,\"AA\",\"94\",\"SAN\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,327.00,308.00,2446.00,,,,,,\n2015,5,31,\"AA\",\"94\",\"SAN\",\"JFK\",-2.00,12.00,0.00,\"\",0.00,344.00,315.00,2446.00,,,,,,\n2015,5,1,\"AA\",\"95\",\"JFK\",\"SAN\",-6.00,-25.00,0.00,\"\",0.00,350.00,318.00,2446.00,,,,,,\n2015,5,2,\"AA\",\"95\",\"JFK\",\"SAN\",6.00,-25.00,0.00,\"\",0.00,338.00,318.00,2446.00,,,,,,\n2015,5,3,\"AA\",\"95\",\"JFK\",\"SAN\",-5.00,-14.00,0.00,\"\",0.00,360.00,326.00,2446.00,,,,,,\n2015,5,4,\"AA\",\"95\",\"JFK\",\"SAN\",1.00,-33.00,0.00,\"\",0.00,335.00,309.00,2446.00,,,,,,\n2015,5,5,\"AA\",\"95\",\"JFK\",\"SAN\",0.00,-40.00,0.00,\"\",0.00,329.00,305.00,2446.00,,,,,,\n2015,5,6,\"AA\",\"95\",\"JFK\",\"SAN\",-6.00,-33.00,0.00,\"\",0.00,342.00,307.00,2446.00,,,,,,\n2015,5,7,\"AA\",\"95\",\"JFK\",\"SAN\",17.00,39.00,0.00,\"\",0.00,391.00,361.00,2446.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,8,\"AA\",\"95\",\"JFK\",\"SAN\",75.00,96.00,0.00,\"\",0.00,390.00,345.00,2446.00,75.00,0.00,21.00,0.00,0.00,\n2015,5,9,\"AA\",\"95\",\"JFK\",\"SAN\",1.00,-22.00,0.00,\"\",0.00,346.00,320.00,2446.00,,,,,,\n2015,5,10,\"AA\",\"95\",\"JFK\",\"SAN\",32.00,22.00,0.00,\"\",0.00,359.00,321.00,2446.00,5.00,0.00,0.00,0.00,17.00,\n2015,5,11,\"AA\",\"95\",\"JFK\",\"SAN\",-1.00,4.00,0.00,\"\",0.00,374.00,339.00,2446.00,,,,,,\n2015,5,12,\"AA\",\"95\",\"JFK\",\"SAN\",59.00,40.00,0.00,\"\",0.00,350.00,328.00,2446.00,0.00,0.00,0.00,0.00,40.00,\n2015,5,13,\"AA\",\"95\",\"JFK\",\"SAN\",-2.00,15.00,0.00,\"\",0.00,386.00,334.00,2446.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,14,\"AA\",\"95\",\"JFK\",\"SAN\",7.00,-4.00,0.00,\"\",0.00,358.00,325.00,2446.00,,,,,,\n2015,5,15,\"AA\",\"95\",\"JFK\",\"SAN\",4.00,-3.00,0.00,\"\",0.00,362.00,333.00,2446.00,,,,,,\n2015,5,16,\"AA\",\"95\",\"JFK\",\"SAN\",5.00,-9.00,0.00,\"\",0.00,355.00,331.00,2446.00,,,,,,\n2015,5,17,\"AA\",\"95\",\"JFK\",\"SAN\",-1.00,-28.00,0.00,\"\",0.00,342.00,319.00,2446.00,,,,,,\n2015,5,18,\"AA\",\"95\",\"JFK\",\"SAN\",70.00,97.00,0.00,\"\",0.00,396.00,348.00,2446.00,10.00,0.00,27.00,0.00,60.00,\n2015,5,19,\"AA\",\"95\",\"JFK\",\"SAN\",-2.00,5.00,0.00,\"\",0.00,376.00,341.00,2446.00,,,,,,\n2015,5,20,\"AA\",\"95\",\"JFK\",\"SAN\",-2.00,-16.00,0.00,\"\",0.00,355.00,321.00,2446.00,,,,,,\n2015,5,21,\"AA\",\"95\",\"JFK\",\"SAN\",4.00,13.00,0.00,\"\",0.00,378.00,353.00,2446.00,,,,,,\n2015,5,22,\"AA\",\"95\",\"JFK\",\"SAN\",-3.00,-20.00,0.00,\"\",0.00,352.00,330.00,2446.00,,,,,,\n2015,5,23,\"AA\",\"95\",\"JFK\",\"SAN\",6.00,4.00,0.00,\"\",0.00,367.00,329.00,2446.00,,,,,,\n2015,5,24,\"AA\",\"95\",\"JFK\",\"SAN\",-2.00,-26.00,0.00,\"\",0.00,345.00,320.00,2446.00,,,,,,\n2015,5,25,\"AA\",\"95\",\"JFK\",\"SAN\",-5.00,-30.00,0.00,\"\",0.00,344.00,316.00,2446.00,,,,,,\n2015,5,26,\"AA\",\"95\",\"JFK\",\"SAN\",-4.00,-26.00,0.00,\"\",0.00,347.00,324.00,2446.00,,,,,,\n2015,5,27,\"AA\",\"95\",\"JFK\",\"SAN\",-5.00,118.00,0.00,\"\",0.00,492.00,336.00,2446.00,0.00,0.00,118.00,0.00,0.00,\n2015,5,28,\"AA\",\"95\",\"JFK\",\"SAN\",-3.00,-17.00,0.00,\"\",0.00,355.00,324.00,2446.00,,,,,,\n2015,5,29,\"AA\",\"95\",\"JFK\",\"SAN\",-1.00,0.00,0.00,\"\",0.00,370.00,332.00,2446.00,,,,,,\n2015,5,30,\"AA\",\"95\",\"JFK\",\"SAN\",-4.00,-26.00,0.00,\"\",0.00,347.00,303.00,2446.00,,,,,,\n2015,5,31,\"AA\",\"95\",\"JFK\",\"SAN\",8.00,21.00,0.00,\"\",0.00,382.00,312.00,2446.00,8.00,0.00,13.00,0.00,0.00,\n2015,5,7,\"AA\",\"101\",\"JFK\",\"DCA\",109.00,108.00,0.00,\"\",0.00,99.00,53.00,213.00,108.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"AA\",\"101\",\"JFK\",\"DCA\",40.00,49.00,0.00,\"\",0.00,109.00,50.00,213.00,0.00,0.00,49.00,0.00,0.00,\n2015,5,9,\"AA\",\"101\",\"JFK\",\"DCA\",-5.00,-10.00,0.00,\"\",0.00,95.00,57.00,213.00,,,,,,\n2015,5,10,\"AA\",\"101\",\"JFK\",\"DCA\",-3.00,35.00,0.00,\"\",0.00,138.00,62.00,213.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,11,\"AA\",\"101\",\"JFK\",\"DCA\",-2.00,-8.00,0.00,\"\",0.00,94.00,56.00,213.00,,,,,,\n2015,5,12,\"AA\",\"101\",\"JFK\",\"DCA\",2.00,-16.00,0.00,\"\",0.00,82.00,52.00,213.00,,,,,,\n2015,5,13,\"AA\",\"101\",\"JFK\",\"DCA\",-5.00,-25.00,0.00,\"\",0.00,80.00,55.00,213.00,,,,,,\n2015,5,14,\"AA\",\"101\",\"JFK\",\"DCA\",-3.00,-23.00,0.00,\"\",0.00,80.00,51.00,213.00,,,,,,\n2015,5,15,\"AA\",\"101\",\"JFK\",\"DCA\",16.00,14.00,0.00,\"\",0.00,98.00,57.00,213.00,,,,,,\n2015,5,16,\"AA\",\"101\",\"JFK\",\"DCA\",1.00,17.00,0.00,\"\",0.00,116.00,51.00,213.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,17,\"AA\",\"101\",\"JFK\",\"DCA\",-2.00,-1.00,0.00,\"\",0.00,101.00,62.00,213.00,,,,,,\n2015,5,18,\"AA\",\"101\",\"JFK\",\"DCA\",-6.00,12.00,0.00,\"\",0.00,118.00,55.00,213.00,,,,,,\n2015,5,19,\"AA\",\"101\",\"JFK\",\"DCA\",1.00,3.00,0.00,\"\",0.00,102.00,53.00,213.00,,,,,,\n2015,5,20,\"AA\",\"101\",\"JFK\",\"DCA\",-7.00,-30.00,0.00,\"\",0.00,77.00,56.00,213.00,,,,,,\n2015,5,21,\"AA\",\"101\",\"JFK\",\"DCA\",3.00,-4.00,0.00,\"\",0.00,93.00,64.00,213.00,,,,,,\n2015,5,22,\"AA\",\"101\",\"JFK\",\"DCA\",-3.00,-25.00,0.00,\"\",0.00,78.00,53.00,213.00,,,,,,\n2015,5,23,\"AA\",\"101\",\"JFK\",\"DCA\",32.00,11.00,0.00,\"\",0.00,79.00,53.00,213.00,,,,,,\n2015,5,24,\"AA\",\"101\",\"JFK\",\"DCA\",3.00,8.00,0.00,\"\",0.00,105.00,57.00,213.00,,,,,,\n2015,5,25,\"AA\",\"101\",\"JFK\",\"DCA\",-6.00,-14.00,0.00,\"\",0.00,92.00,52.00,213.00,,,,,,\n2015,5,26,\"AA\",\"101\",\"JFK\",\"DCA\",-3.00,-11.00,0.00,\"\",0.00,92.00,67.00,213.00,,,,,,\n2015,5,27,\"AA\",\"101\",\"JFK\",\"DCA\",-6.00,-13.00,0.00,\"\",0.00,93.00,59.00,213.00,,,,,,\n2015,5,28,\"AA\",\"101\",\"JFK\",\"DCA\",-3.00,1.00,0.00,\"\",0.00,104.00,58.00,213.00,,,,,,\n2015,5,29,\"AA\",\"101\",\"JFK\",\"DCA\",-7.00,-19.00,0.00,\"\",0.00,88.00,58.00,213.00,,,,,,\n2015,5,30,\"AA\",\"101\",\"JFK\",\"DCA\",8.00,6.00,0.00,\"\",0.00,98.00,54.00,213.00,,,,,,\n2015,5,31,\"AA\",\"101\",\"JFK\",\"DCA\",66.00,76.00,0.00,\"\",0.00,110.00,54.00,213.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,7,\"AA\",\"104\",\"DCA\",\"JFK\",85.00,81.00,0.00,\"\",0.00,82.00,45.00,213.00,0.00,0.00,0.00,0.00,81.00,\n2015,5,8,\"AA\",\"104\",\"DCA\",\"JFK\",39.00,30.00,0.00,\"\",0.00,77.00,51.00,213.00,0.00,0.00,0.00,0.00,30.00,\n2015,5,9,\"AA\",\"104\",\"DCA\",\"JFK\",49.00,36.00,0.00,\"\",0.00,73.00,46.00,213.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,10,\"AA\",\"104\",\"DCA\",\"JFK\",32.00,93.00,0.00,\"\",0.00,147.00,47.00,213.00,0.00,0.00,63.00,0.00,30.00,\n2015,5,11,\"AA\",\"104\",\"DCA\",\"JFK\",56.00,56.00,0.00,\"\",0.00,86.00,46.00,213.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,12,\"AA\",\"104\",\"DCA\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,64.00,39.00,213.00,,,,,,\n2015,5,13,\"AA\",\"104\",\"DCA\",\"JFK\",53.00,37.00,0.00,\"\",0.00,70.00,45.00,213.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,14,\"AA\",\"104\",\"DCA\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,84.00,51.00,213.00,,,,,,\n2015,5,15,\"AA\",\"104\",\"DCA\",\"JFK\",18.00,-7.00,0.00,\"\",0.00,61.00,44.00,213.00,,,,,,\n2015,5,16,\"AA\",\"104\",\"DCA\",\"JFK\",370.00,351.00,0.00,\"\",0.00,67.00,41.00,213.00,0.00,340.00,0.00,0.00,11.00,\n2015,5,17,\"AA\",\"104\",\"DCA\",\"JFK\",-2.00,16.00,0.00,\"\",0.00,104.00,46.00,213.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,18,\"AA\",\"104\",\"DCA\",\"JFK\",8.00,17.00,0.00,\"\",0.00,95.00,45.00,213.00,0.00,1.00,9.00,0.00,7.00,\n2015,5,19,\"AA\",\"104\",\"DCA\",\"JFK\",2.00,-12.00,0.00,\"\",0.00,72.00,44.00,213.00,,,,,,\n2015,5,20,\"AA\",\"104\",\"DCA\",\"JFK\",48.00,51.00,0.00,\"\",0.00,89.00,43.00,213.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,21,\"AA\",\"104\",\"DCA\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,84.00,41.00,213.00,,,,,,\n2015,5,22,\"AA\",\"104\",\"DCA\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,79.00,42.00,213.00,,,,,,\n2015,5,23,\"AA\",\"104\",\"DCA\",\"JFK\",5.00,-17.00,0.00,\"\",0.00,64.00,45.00,213.00,,,,,,\n2015,5,24,\"AA\",\"104\",\"DCA\",\"JFK\",-5.00,-1.00,0.00,\"\",0.00,90.00,51.00,213.00,,,,,,\n2015,5,25,\"AA\",\"104\",\"DCA\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,70.00,42.00,213.00,,,,,,\n2015,5,26,\"AA\",\"104\",\"DCA\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,77.00,41.00,213.00,,,,,,\n2015,5,27,\"AA\",\"104\",\"DCA\",\"JFK\",50.00,79.00,0.00,\"\",0.00,115.00,53.00,213.00,0.00,0.00,79.00,0.00,0.00,\n2015,5,28,\"AA\",\"104\",\"DCA\",\"JFK\",-6.00,36.00,0.00,\"\",0.00,128.00,50.00,213.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,29,\"AA\",\"104\",\"DCA\",\"JFK\",-8.00,-11.00,0.00,\"\",0.00,83.00,43.00,213.00,,,,,,\n2015,5,30,\"AA\",\"104\",\"DCA\",\"JFK\",1.00,-14.00,0.00,\"\",0.00,71.00,44.00,213.00,,,,,,\n2015,5,31,\"AA\",\"104\",\"DCA\",\"JFK\",141.00,171.00,0.00,\"\",0.00,116.00,49.00,213.00,0.00,0.00,100.00,0.00,71.00,\n2015,5,1,\"AA\",\"155\",\"LGA\",\"ORD\",34.00,23.00,0.00,\"\",0.00,146.00,110.00,733.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"AA\",\"155\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,3,\"AA\",\"155\",\"LGA\",\"ORD\",-10.00,-38.00,0.00,\"\",0.00,129.00,110.00,733.00,,,,,,\n2015,5,4,\"AA\",\"155\",\"LGA\",\"ORD\",-6.00,-24.00,0.00,\"\",0.00,139.00,112.00,733.00,,,,,,\n2015,5,5,\"AA\",\"155\",\"LGA\",\"ORD\",-9.00,-10.00,0.00,\"\",0.00,156.00,121.00,733.00,,,,,,\n2015,5,6,\"AA\",\"155\",\"LGA\",\"ORD\",-8.00,-14.00,0.00,\"\",0.00,151.00,117.00,733.00,,,,,,\n2015,5,7,\"AA\",\"155\",\"LGA\",\"ORD\",-9.00,-18.00,0.00,\"\",0.00,148.00,109.00,733.00,,,,,,\n2015,5,8,\"AA\",\"155\",\"LGA\",\"ORD\",-4.00,-20.00,0.00,\"\",0.00,141.00,108.00,733.00,,,,,,\n2015,5,9,\"AA\",\"155\",\"LGA\",\"ORD\",-8.00,-14.00,0.00,\"\",0.00,151.00,115.00,733.00,,,,,,\n2015,5,10,\"AA\",\"155\",\"LGA\",\"ORD\",-8.00,-10.00,0.00,\"\",0.00,155.00,116.00,733.00,,,,,,\n2015,5,11,\"AA\",\"155\",\"LGA\",\"ORD\",-9.00,-28.00,0.00,\"\",0.00,138.00,109.00,733.00,,,,,,\n2015,5,12,\"AA\",\"155\",\"LGA\",\"ORD\",-5.00,-3.00,0.00,\"\",0.00,159.00,123.00,733.00,,,,,,\n2015,5,13,\"AA\",\"155\",\"LGA\",\"ORD\",-9.00,-19.00,0.00,\"\",0.00,147.00,118.00,733.00,,,,,,\n2015,5,14,\"AA\",\"155\",\"LGA\",\"ORD\",-10.00,-14.00,0.00,\"\",0.00,153.00,126.00,733.00,,,,,,\n2015,5,15,\"AA\",\"155\",\"LGA\",\"ORD\",-1.00,-22.00,0.00,\"\",0.00,136.00,112.00,733.00,,,,,,\n2015,5,16,\"AA\",\"155\",\"LGA\",\"ORD\",-7.00,-28.00,0.00,\"\",0.00,136.00,116.00,733.00,,,,,,\n2015,5,17,\"AA\",\"155\",\"LGA\",\"ORD\",-8.00,-19.00,0.00,\"\",0.00,146.00,109.00,733.00,,,,,,\n2015,5,18,\"AA\",\"155\",\"LGA\",\"ORD\",-7.00,-21.00,0.00,\"\",0.00,143.00,108.00,733.00,,,,,,\n2015,5,19,\"AA\",\"155\",\"LGA\",\"ORD\",-2.00,-15.00,0.00,\"\",0.00,144.00,115.00,733.00,,,,,,\n2015,5,20,\"AA\",\"155\",\"LGA\",\"ORD\",14.00,12.00,0.00,\"\",0.00,155.00,126.00,733.00,,,,,,\n2015,5,21,\"AA\",\"155\",\"LGA\",\"ORD\",101.00,91.00,0.00,\"\",0.00,147.00,120.00,733.00,91.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"AA\",\"155\",\"LGA\",\"ORD\",-6.00,36.00,0.00,\"\",0.00,199.00,118.00,733.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,23,\"AA\",\"155\",\"LGA\",\"ORD\",-2.00,-18.00,0.00,\"\",0.00,141.00,116.00,733.00,,,,,,\n2015,5,26,\"AA\",\"155\",\"LGA\",\"ORD\",-5.00,-23.00,0.00,\"\",0.00,139.00,115.00,733.00,,,,,,\n2015,5,27,\"AA\",\"155\",\"LGA\",\"ORD\",-8.00,-25.00,0.00,\"\",0.00,140.00,114.00,733.00,,,,,,\n2015,5,28,\"AA\",\"155\",\"LGA\",\"ORD\",-7.00,-19.00,0.00,\"\",0.00,145.00,114.00,733.00,,,,,,\n2015,5,29,\"AA\",\"155\",\"LGA\",\"ORD\",-7.00,-20.00,0.00,\"\",0.00,144.00,112.00,733.00,,,,,,\n2015,5,30,\"AA\",\"155\",\"LGA\",\"ORD\",-6.00,-22.00,0.00,\"\",0.00,141.00,109.00,733.00,,,,,,\n2015,5,31,\"AA\",\"155\",\"LGA\",\"ORD\",-3.00,-28.00,0.00,\"\",0.00,132.00,115.00,733.00,,,,,,\n2015,5,1,\"AA\",\"163\",\"JFK\",\"SFO\",35.00,20.00,0.00,\"\",0.00,381.00,342.00,2586.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"AA\",\"163\",\"JFK\",\"SFO\",-3.00,-33.00,0.00,\"\",0.00,366.00,334.00,2586.00,,,,,,\n2015,5,3,\"AA\",\"163\",\"JFK\",\"SFO\",-1.00,-24.00,0.00,\"\",0.00,373.00,343.00,2586.00,,,,,,\n2015,5,4,\"AA\",\"163\",\"JFK\",\"SFO\",-6.00,-7.00,0.00,\"\",0.00,395.00,360.00,2586.00,,,,,,\n2015,5,5,\"AA\",\"163\",\"JFK\",\"SFO\",-9.00,-42.00,0.00,\"\",0.00,363.00,328.00,2586.00,,,,,,\n2015,5,6,\"AA\",\"163\",\"JFK\",\"SFO\",-4.00,-15.00,0.00,\"\",0.00,385.00,348.00,2586.00,,,,,,\n2015,5,7,\"AA\",\"163\",\"JFK\",\"SFO\",2.00,-6.00,0.00,\"\",0.00,388.00,355.00,2586.00,,,,,,\n2015,5,8,\"AA\",\"163\",\"JFK\",\"SFO\",3.00,11.00,0.00,\"\",0.00,404.00,362.00,2586.00,,,,,,\n2015,5,10,\"AA\",\"163\",\"JFK\",\"SFO\",0.00,19.00,0.00,\"\",0.00,415.00,353.00,2586.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,11,\"AA\",\"163\",\"JFK\",\"SFO\",-2.00,22.00,0.00,\"\",0.00,420.00,376.00,2586.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,12,\"AA\",\"163\",\"JFK\",\"SFO\",73.00,58.00,0.00,\"\",0.00,381.00,345.00,2586.00,14.00,0.00,0.00,0.00,44.00,\n2015,5,13,\"AA\",\"163\",\"JFK\",\"SFO\",-6.00,-25.00,0.00,\"\",0.00,377.00,343.00,2586.00,,,,,,\n2015,5,14,\"AA\",\"163\",\"JFK\",\"SFO\",-4.00,-30.00,0.00,\"\",0.00,370.00,337.00,2586.00,,,,,,\n2015,5,15,\"AA\",\"163\",\"JFK\",\"SFO\",4.00,7.00,0.00,\"\",0.00,399.00,369.00,2586.00,,,,,,\n2015,5,17,\"AA\",\"163\",\"JFK\",\"SFO\",-3.00,-26.00,0.00,\"\",0.00,373.00,340.00,2586.00,,,,,,\n2015,5,18,\"AA\",\"163\",\"JFK\",\"SFO\",86.00,108.00,0.00,\"\",0.00,418.00,361.00,2586.00,0.00,0.00,22.00,0.00,86.00,\n2015,5,19,\"AA\",\"163\",\"JFK\",\"SFO\",19.00,47.00,0.00,\"\",0.00,424.00,364.00,2586.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,20,\"AA\",\"163\",\"JFK\",\"SFO\",60.00,64.00,0.00,\"\",0.00,400.00,369.00,2586.00,0.00,0.00,64.00,0.00,0.00,\n2015,5,21,\"AA\",\"163\",\"JFK\",\"SFO\",-2.00,42.00,0.00,\"\",0.00,440.00,363.00,2586.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,22,\"AA\",\"163\",\"JFK\",\"SFO\",66.00,74.00,0.00,\"\",0.00,404.00,366.00,2586.00,0.00,0.00,74.00,0.00,0.00,\n2015,5,23,\"AA\",\"163\",\"JFK\",\"SFO\",-5.00,-17.00,0.00,\"\",0.00,384.00,352.00,2586.00,,,,,,\n2015,5,24,\"AA\",\"163\",\"JFK\",\"SFO\",25.00,12.00,0.00,\"\",0.00,383.00,353.00,2586.00,,,,,,\n2015,5,25,\"AA\",\"163\",\"JFK\",\"SFO\",9.00,9.00,0.00,\"\",0.00,396.00,353.00,2586.00,,,,,,\n2015,5,26,\"AA\",\"163\",\"JFK\",\"SFO\",-3.00,3.00,0.00,\"\",0.00,402.00,367.00,2586.00,,,,,,\n2015,5,27,\"AA\",\"163\",\"JFK\",\"SFO\",-4.00,16.00,0.00,\"\",0.00,416.00,358.00,2586.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,28,\"AA\",\"163\",\"JFK\",\"SFO\",4.00,1.00,0.00,\"\",0.00,393.00,357.00,2586.00,,,,,,\n2015,5,29,\"AA\",\"163\",\"JFK\",\"SFO\",25.00,24.00,0.00,\"\",0.00,395.00,362.00,2586.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"AA\",\"163\",\"JFK\",\"SFO\",145.00,222.00,0.00,\"\",0.00,473.00,356.00,2586.00,0.00,145.00,77.00,0.00,0.00,\n2015,5,1,\"AA\",\"164\",\"SFO\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,331.00,303.00,2586.00,,,,,,\n2015,5,3,\"AA\",\"164\",\"SFO\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,339.00,308.00,2586.00,,,,,,\n2015,5,4,\"AA\",\"164\",\"SFO\",\"JFK\",21.00,5.00,0.00,\"\",0.00,330.00,303.00,2586.00,,,,,,\n2015,5,5,\"AA\",\"164\",\"SFO\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,339.00,308.00,2586.00,,,,,,\n2015,5,6,\"AA\",\"164\",\"SFO\",\"JFK\",-5.00,6.00,0.00,\"\",0.00,357.00,320.00,2586.00,,,,,,\n2015,5,7,\"AA\",\"164\",\"SFO\",\"JFK\",0.00,14.00,0.00,\"\",0.00,358.00,322.00,2586.00,,,,,,\n2015,5,8,\"AA\",\"164\",\"SFO\",\"JFK\",-9.00,-27.00,0.00,\"\",0.00,326.00,309.00,2586.00,,,,,,\n2015,5,9,\"AA\",\"164\",\"SFO\",\"JFK\",-11.00,-13.00,0.00,\"\",0.00,342.00,317.00,2586.00,,,,,,\n2015,5,10,\"AA\",\"164\",\"SFO\",\"JFK\",40.00,43.00,0.00,\"\",0.00,347.00,320.00,2586.00,40.00,0.00,3.00,0.00,0.00,\n2015,5,11,\"AA\",\"164\",\"SFO\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,333.00,302.00,2586.00,,,,,,\n2015,5,12,\"AA\",\"164\",\"SFO\",\"JFK\",82.00,50.00,0.00,\"\",0.00,312.00,286.00,2586.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,13,\"AA\",\"164\",\"SFO\",\"JFK\",-2.00,-41.00,0.00,\"\",0.00,305.00,288.00,2586.00,,,,,,\n2015,5,14,\"AA\",\"164\",\"SFO\",\"JFK\",-6.00,1.00,0.00,\"\",0.00,351.00,302.00,2586.00,,,,,,\n2015,5,15,\"AA\",\"164\",\"SFO\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,336.00,305.00,2586.00,,,,,,\n2015,5,16,\"AA\",\"164\",\"SFO\",\"JFK\",-6.00,10.00,0.00,\"\",0.00,360.00,325.00,2586.00,,,,,,\n2015,5,17,\"AA\",\"164\",\"SFO\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,342.00,304.00,2586.00,,,,,,\n2015,5,18,\"AA\",\"164\",\"SFO\",\"JFK\",100.00,111.00,0.00,\"\",0.00,355.00,331.00,2586.00,0.00,0.00,111.00,0.00,0.00,\n2015,5,19,\"AA\",\"164\",\"SFO\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,333.00,295.00,2586.00,,,,,,\n2015,5,20,\"AA\",\"164\",\"SFO\",\"JFK\",-2.00,-4.00,0.00,\"\",0.00,342.00,303.00,2586.00,,,,,,\n2015,5,21,\"AA\",\"164\",\"SFO\",\"JFK\",10.00,-13.00,0.00,\"\",0.00,321.00,293.00,2586.00,,,,,,\n2015,5,22,\"AA\",\"164\",\"SFO\",\"JFK\",257.00,236.00,0.00,\"\",0.00,323.00,305.00,2586.00,48.00,0.00,0.00,0.00,188.00,\n2015,5,23,\"AA\",\"164\",\"SFO\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,329.00,301.00,2586.00,,,,,,\n2015,5,24,\"AA\",\"164\",\"SFO\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,333.00,309.00,2586.00,,,,,,\n2015,5,25,\"AA\",\"164\",\"SFO\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,337.00,312.00,2586.00,,,,,,\n2015,5,26,\"AA\",\"164\",\"SFO\",\"JFK\",-1.00,11.00,0.00,\"\",0.00,356.00,322.00,2586.00,,,,,,\n2015,5,27,\"AA\",\"164\",\"SFO\",\"JFK\",6.00,11.00,0.00,\"\",0.00,349.00,310.00,2586.00,,,,,,\n2015,5,28,\"AA\",\"164\",\"SFO\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,338.00,306.00,2586.00,,,,,,\n2015,5,29,\"AA\",\"164\",\"SFO\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,334.00,301.00,2586.00,,,,,,\n2015,5,30,\"AA\",\"164\",\"SFO\",\"JFK\",-9.00,-17.00,0.00,\"\",0.00,336.00,307.00,2586.00,,,,,,\n2015,5,31,\"AA\",\"164\",\"SFO\",\"JFK\",-1.00,19.00,0.00,\"\",0.00,364.00,318.00,2586.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,1,\"AA\",\"1\",\"JFK\",\"LAX\",-7.00,-16.00,0.00,\"\",0.00,367.00,321.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"1\",\"JFK\",\"LAX\",-6.00,-34.00,0.00,\"\",0.00,348.00,321.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"1\",\"JFK\",\"LAX\",-5.00,11.00,0.00,\"\",0.00,392.00,317.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"1\",\"JFK\",\"LAX\",-6.00,-16.00,0.00,\"\",0.00,366.00,313.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"1\",\"JFK\",\"LAX\",-10.00,-56.00,0.00,\"\",0.00,330.00,310.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"1\",\"JFK\",\"LAX\",21.00,0.00,0.00,\"\",0.00,355.00,318.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"1\",\"JFK\",\"LAX\",-6.00,-31.00,0.00,\"\",0.00,351.00,324.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"1\",\"JFK\",\"LAX\",-2.00,-13.00,0.00,\"\",0.00,365.00,331.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"1\",\"JFK\",\"LAX\",-4.00,-20.00,0.00,\"\",0.00,360.00,320.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"1\",\"JFK\",\"LAX\",1.00,0.00,0.00,\"\",0.00,375.00,339.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"1\",\"JFK\",\"LAX\",-5.00,-2.00,0.00,\"\",0.00,379.00,343.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"1\",\"JFK\",\"LAX\",-6.00,0.00,0.00,\"\",0.00,382.00,334.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"1\",\"JFK\",\"LAX\",-6.00,-17.00,0.00,\"\",0.00,365.00,321.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"1\",\"JFK\",\"LAX\",2.00,-9.00,0.00,\"\",0.00,365.00,324.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"1\",\"JFK\",\"LAX\",-9.00,-15.00,0.00,\"\",0.00,370.00,335.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"1\",\"JFK\",\"LAX\",18.00,16.00,0.00,\"\",0.00,374.00,327.00,2475.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"AA\",\"1\",\"JFK\",\"LAX\",-2.00,-1.00,0.00,\"\",0.00,377.00,343.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"1\",\"JFK\",\"LAX\",-3.00,-2.00,0.00,\"\",0.00,377.00,332.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"1\",\"JFK\",\"LAX\",-5.00,-24.00,0.00,\"\",0.00,357.00,330.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"1\",\"JFK\",\"LAX\",0.00,-4.00,0.00,\"\",0.00,372.00,334.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"1\",\"JFK\",\"LAX\",-4.00,-21.00,0.00,\"\",0.00,359.00,324.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"1\",\"JFK\",\"LAX\",-7.00,-9.00,0.00,\"\",0.00,374.00,326.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"1\",\"JFK\",\"LAX\",-9.00,-27.00,0.00,\"\",0.00,358.00,328.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"1\",\"JFK\",\"LAX\",0.00,-12.00,0.00,\"\",0.00,364.00,317.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"1\",\"JFK\",\"LAX\",-7.00,-2.00,0.00,\"\",0.00,381.00,324.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"1\",\"JFK\",\"LAX\",-3.00,-12.00,0.00,\"\",0.00,367.00,328.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"1\",\"JFK\",\"LAX\",-7.00,-44.00,0.00,\"\",0.00,339.00,310.00,2475.00,,,,,,\n2015,5,1,\"AA\",\"2\",\"LAX\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,329.00,298.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"2\",\"LAX\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,323.00,300.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"2\",\"LAX\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,330.00,304.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"2\",\"LAX\",\"JFK\",-10.00,-29.00,0.00,\"\",0.00,323.00,297.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"2\",\"LAX\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,334.00,296.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"2\",\"LAX\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,332.00,306.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"2\",\"LAX\",\"JFK\",11.00,-13.00,0.00,\"\",0.00,318.00,294.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"2\",\"LAX\",\"JFK\",-5.00,-28.00,0.00,\"\",0.00,319.00,290.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"2\",\"LAX\",\"JFK\",18.00,-1.00,0.00,\"\",0.00,323.00,304.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"2\",\"LAX\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,337.00,303.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"2\",\"LAX\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,331.00,298.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"2\",\"LAX\",\"JFK\",73.00,39.00,0.00,\"\",0.00,308.00,277.00,2475.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,13,\"AA\",\"2\",\"LAX\",\"JFK\",6.00,-31.00,0.00,\"\",0.00,305.00,279.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"2\",\"LAX\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,332.00,295.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"2\",\"LAX\",\"JFK\",-2.00,-28.00,0.00,\"\",0.00,316.00,293.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"2\",\"LAX\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,339.00,294.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"2\",\"LAX\",\"JFK\",-8.00,-30.00,0.00,\"\",0.00,320.00,297.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"2\",\"LAX\",\"JFK\",101.00,106.00,0.00,\"\",0.00,347.00,323.00,2475.00,0.00,0.00,106.00,0.00,0.00,\n2015,5,19,\"AA\",\"2\",\"LAX\",\"JFK\",121.00,83.00,0.00,\"\",0.00,304.00,284.00,2475.00,83.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"AA\",\"2\",\"LAX\",\"JFK\",-5.00,-31.00,0.00,\"\",0.00,316.00,270.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"2\",\"LAX\",\"JFK\",-7.00,-48.00,0.00,\"\",0.00,301.00,280.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"2\",\"LAX\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,320.00,291.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"2\",\"LAX\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,321.00,289.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"2\",\"LAX\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,321.00,296.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"2\",\"LAX\",\"JFK\",3.00,-16.00,0.00,\"\",0.00,323.00,299.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"2\",\"LAX\",\"JFK\",7.00,6.00,0.00,\"\",0.00,341.00,308.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"2\",\"LAX\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,331.00,294.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"2\",\"LAX\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,322.00,299.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"2\",\"LAX\",\"JFK\",-8.00,0.00,0.00,\"\",0.00,350.00,306.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"2\",\"LAX\",\"JFK\",222.00,229.00,0.00,\"\",0.00,349.00,312.00,2475.00,222.00,0.00,7.00,0.00,0.00,\n2015,5,1,\"AA\",\"3\",\"JFK\",\"LAX\",-7.00,-18.00,0.00,\"\",0.00,354.00,323.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"3\",\"JFK\",\"LAX\",-2.00,-2.00,0.00,\"\",0.00,365.00,324.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"3\",\"JFK\",\"LAX\",-6.00,22.00,0.00,\"\",0.00,393.00,327.00,2475.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,4,\"AA\",\"3\",\"JFK\",\"LAX\",-3.00,-9.00,0.00,\"\",0.00,359.00,320.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"3\",\"JFK\",\"LAX\",-8.00,-10.00,0.00,\"\",0.00,363.00,332.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"3\",\"JFK\",\"LAX\",-7.00,-23.00,0.00,\"\",0.00,349.00,316.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"3\",\"JFK\",\"LAX\",-8.00,-5.00,0.00,\"\",0.00,368.00,339.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"3\",\"JFK\",\"LAX\",0.00,-6.00,0.00,\"\",0.00,359.00,334.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"3\",\"JFK\",\"LAX\",-5.00,-16.00,0.00,\"\",0.00,354.00,330.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"3\",\"JFK\",\"LAX\",-3.00,34.00,0.00,\"\",0.00,402.00,343.00,2475.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,11,\"AA\",\"3\",\"JFK\",\"LAX\",-8.00,-5.00,0.00,\"\",0.00,368.00,333.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"3\",\"JFK\",\"LAX\",-6.00,3.00,0.00,\"\",0.00,374.00,353.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"3\",\"JFK\",\"LAX\",-7.00,-16.00,0.00,\"\",0.00,356.00,332.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"3\",\"JFK\",\"LAX\",-7.00,-8.00,0.00,\"\",0.00,364.00,327.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"3\",\"JFK\",\"LAX\",-6.00,6.00,0.00,\"\",0.00,377.00,353.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"3\",\"JFK\",\"LAX\",186.00,177.00,0.00,\"\",0.00,356.00,337.00,2475.00,177.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"AA\",\"3\",\"JFK\",\"LAX\",-3.00,-7.00,0.00,\"\",0.00,361.00,340.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"3\",\"JFK\",\"LAX\",-3.00,22.00,0.00,\"\",0.00,390.00,333.00,2475.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,19,\"AA\",\"3\",\"JFK\",\"LAX\",-3.00,21.00,0.00,\"\",0.00,389.00,345.00,2475.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,20,\"AA\",\"3\",\"JFK\",\"LAX\",14.00,4.00,0.00,\"\",0.00,355.00,333.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"3\",\"JFK\",\"LAX\",11.00,5.00,0.00,\"\",0.00,359.00,337.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"3\",\"JFK\",\"LAX\",-7.00,10.00,0.00,\"\",0.00,382.00,356.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"3\",\"JFK\",\"LAX\",-2.00,4.00,0.00,\"\",0.00,371.00,343.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"3\",\"JFK\",\"LAX\",-9.00,-38.00,0.00,\"\",0.00,336.00,315.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"3\",\"JFK\",\"LAX\",-4.00,-13.00,0.00,\"\",0.00,356.00,334.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"3\",\"JFK\",\"LAX\",46.00,29.00,0.00,\"\",0.00,348.00,326.00,2475.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"AA\",\"3\",\"JFK\",\"LAX\",-4.00,-7.00,0.00,\"\",0.00,362.00,335.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"3\",\"JFK\",\"LAX\",-5.00,-12.00,0.00,\"\",0.00,358.00,333.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"3\",\"JFK\",\"LAX\",-2.00,-15.00,0.00,\"\",0.00,352.00,328.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"3\",\"JFK\",\"LAX\",-8.00,-6.00,0.00,\"\",0.00,367.00,311.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"3\",\"JFK\",\"LAX\",-8.00,-11.00,0.00,\"\",0.00,362.00,314.00,2475.00,,,,,,\n2015,5,1,\"AA\",\"4\",\"LAX\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,331.00,303.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"4\",\"LAX\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,326.00,299.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"4\",\"LAX\",\"JFK\",7.00,-6.00,0.00,\"\",0.00,327.00,302.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"4\",\"LAX\",\"JFK\",1.00,-17.00,0.00,\"\",0.00,322.00,299.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"4\",\"LAX\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,331.00,300.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"4\",\"LAX\",\"JFK\",-2.00,-2.00,0.00,\"\",0.00,340.00,312.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"4\",\"LAX\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,326.00,305.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"4\",\"LAX\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,313.00,295.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"4\",\"LAX\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,338.00,303.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"4\",\"LAX\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,317.00,291.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"4\",\"LAX\",\"JFK\",47.00,10.00,0.00,\"\",0.00,303.00,276.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"4\",\"LAX\",\"JFK\",-6.00,-43.00,0.00,\"\",0.00,303.00,284.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"4\",\"LAX\",\"JFK\",9.00,-15.00,0.00,\"\",0.00,316.00,293.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"4\",\"LAX\",\"JFK\",3.00,-26.00,0.00,\"\",0.00,311.00,291.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"4\",\"LAX\",\"JFK\",46.00,25.00,0.00,\"\",0.00,319.00,293.00,2475.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,19,\"AA\",\"4\",\"LAX\",\"JFK\",-1.00,-40.00,0.00,\"\",0.00,301.00,276.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"4\",\"LAX\",\"JFK\",-2.00,-34.00,0.00,\"\",0.00,308.00,286.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"4\",\"LAX\",\"JFK\",-4.00,-33.00,0.00,\"\",0.00,311.00,281.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"4\",\"LAX\",\"JFK\",-7.00,-30.00,0.00,\"\",0.00,317.00,286.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"4\",\"LAX\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,333.00,302.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"4\",\"LAX\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,318.00,299.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"4\",\"LAX\",\"JFK\",4.00,-10.00,0.00,\"\",0.00,326.00,300.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"9\",\"JFK\",\"LAX\",-4.00,-11.00,0.00,\"\",0.00,364.00,327.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"9\",\"JFK\",\"LAX\",-7.00,-24.00,0.00,\"\",0.00,354.00,325.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"9\",\"JFK\",\"LAX\",-9.00,-11.00,0.00,\"\",0.00,369.00,332.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"9\",\"JFK\",\"LAX\",-11.00,-31.00,0.00,\"\",0.00,351.00,325.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"9\",\"JFK\",\"LAX\",-5.00,31.00,0.00,\"\",0.00,407.00,348.00,2475.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,9,\"AA\",\"9\",\"JFK\",\"LAX\",9.00,-5.00,0.00,\"\",0.00,357.00,329.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"9\",\"JFK\",\"LAX\",-2.00,-6.00,0.00,\"\",0.00,367.00,321.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"9\",\"JFK\",\"LAX\",-2.00,8.00,0.00,\"\",0.00,381.00,352.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"9\",\"JFK\",\"LAX\",-8.00,56.00,0.00,\"\",0.00,435.00,373.00,2475.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,13,\"AA\",\"9\",\"JFK\",\"LAX\",-3.00,20.00,0.00,\"\",0.00,394.00,356.00,2475.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,14,\"AA\",\"9\",\"JFK\",\"LAX\",-2.00,4.00,0.00,\"\",0.00,377.00,337.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"9\",\"JFK\",\"LAX\",-3.00,2.00,0.00,\"\",0.00,376.00,338.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"9\",\"JFK\",\"LAX\",-2.00,-7.00,0.00,\"\",0.00,366.00,325.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"9\",\"JFK\",\"LAX\",-4.00,-28.00,0.00,\"\",0.00,347.00,329.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"9\",\"JFK\",\"LAX\",-5.00,-9.00,0.00,\"\",0.00,367.00,320.00,2475.00,,,,,,\n2015,5,19,\"AA\",\"9\",\"JFK\",\"LAX\",-5.00,2.00,0.00,\"\",0.00,378.00,349.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"9\",\"JFK\",\"LAX\",-7.00,29.00,0.00,\"\",0.00,407.00,361.00,2475.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,21,\"AA\",\"9\",\"JFK\",\"LAX\",-4.00,-3.00,0.00,\"\",0.00,372.00,344.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"9\",\"JFK\",\"LAX\",-5.00,-15.00,0.00,\"\",0.00,361.00,333.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"9\",\"JFK\",\"LAX\",-6.00,-12.00,0.00,\"\",0.00,365.00,324.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"9\",\"JFK\",\"LAX\",-1.00,22.00,0.00,\"\",0.00,394.00,323.00,2475.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,28,\"AA\",\"9\",\"JFK\",\"LAX\",-8.00,-26.00,0.00,\"\",0.00,353.00,327.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"9\",\"JFK\",\"LAX\",44.00,21.00,0.00,\"\",0.00,348.00,322.00,2475.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"AA\",\"9\",\"JFK\",\"LAX\",-10.00,-41.00,0.00,\"\",0.00,340.00,316.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"9\",\"JFK\",\"LAX\",20.00,-11.00,0.00,\"\",0.00,340.00,312.00,2475.00,,,,,,\n2015,5,1,\"AA\",\"10\",\"LAX\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,317.00,293.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"10\",\"LAX\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,310.00,294.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"10\",\"LAX\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,321.00,302.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"10\",\"LAX\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,322.00,294.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"10\",\"LAX\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,321.00,302.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"10\",\"LAX\",\"JFK\",-3.00,6.00,0.00,\"\",0.00,337.00,307.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"10\",\"LAX\",\"JFK\",-4.00,,0.00,\"\",1.00,,,2475.00,,,,,,\n2015,5,8,\"AA\",\"10\",\"LAX\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,325.00,299.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"10\",\"LAX\",\"JFK\",-9.00,-7.00,0.00,\"\",0.00,330.00,311.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"10\",\"LAX\",\"JFK\",0.00,3.00,0.00,\"\",0.00,331.00,310.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"10\",\"LAX\",\"JFK\",,,1.00,\"A\",0.00,,,2475.00,,,,,,\n2015,5,12,\"AA\",\"10\",\"LAX\",\"JFK\",-7.00,-36.00,0.00,\"\",0.00,299.00,279.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"10\",\"LAX\",\"JFK\",6.00,-8.00,0.00,\"\",0.00,314.00,286.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"10\",\"LAX\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,324.00,296.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"10\",\"LAX\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,327.00,303.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"10\",\"LAX\",\"JFK\",-2.00,8.00,0.00,\"\",0.00,338.00,312.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"10\",\"LAX\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,318.00,295.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"10\",\"LAX\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,311.00,290.00,2475.00,,,,,,\n2015,5,19,\"AA\",\"10\",\"LAX\",\"JFK\",3.00,-17.00,0.00,\"\",0.00,308.00,276.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"10\",\"LAX\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,308.00,280.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"10\",\"LAX\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,310.00,294.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"10\",\"LAX\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,314.00,294.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"10\",\"LAX\",\"JFK\",-7.00,-12.00,0.00,\"\",0.00,323.00,303.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"10\",\"LAX\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,316.00,290.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"10\",\"LAX\",\"JFK\",-8.00,-6.00,0.00,\"\",0.00,330.00,309.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"10\",\"LAX\",\"JFK\",-4.00,-3.00,0.00,\"\",0.00,329.00,309.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"10\",\"LAX\",\"JFK\",46.00,22.00,0.00,\"\",0.00,304.00,281.00,2475.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"AA\",\"10\",\"LAX\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,331.00,297.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"10\",\"LAX\",\"JFK\",3.00,13.00,0.00,\"\",0.00,338.00,308.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"10\",\"LAX\",\"JFK\",0.00,3.00,0.00,\"\",0.00,331.00,298.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"12\",\"LAX\",\"JFK\",25.00,22.00,0.00,\"\",0.00,338.00,306.00,2475.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"AA\",\"12\",\"LAX\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,322.00,300.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"12\",\"LAX\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,323.00,303.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"12\",\"LAX\",\"JFK\",-7.00,-31.00,0.00,\"\",0.00,317.00,295.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"12\",\"LAX\",\"JFK\",14.00,-16.00,0.00,\"\",0.00,311.00,295.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"12\",\"LAX\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,320.00,295.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"12\",\"LAX\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,330.00,304.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"12\",\"LAX\",\"JFK\",18.00,2.00,0.00,\"\",0.00,325.00,293.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"12\",\"LAX\",\"JFK\",47.00,13.00,0.00,\"\",0.00,307.00,277.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"12\",\"LAX\",\"JFK\",8.00,-22.00,0.00,\"\",0.00,311.00,285.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"12\",\"LAX\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,316.00,291.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"12\",\"LAX\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,325.00,290.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"12\",\"LAX\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,330.00,303.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"12\",\"LAX\",\"JFK\",-2.00,-22.00,0.00,\"\",0.00,321.00,297.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"12\",\"LAX\",\"JFK\",53.00,54.00,0.00,\"\",0.00,342.00,292.00,2475.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,19,\"AA\",\"12\",\"LAX\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,332.00,297.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"12\",\"LAX\",\"JFK\",22.00,-27.00,0.00,\"\",0.00,292.00,268.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"12\",\"LAX\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,325.00,286.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"12\",\"LAX\",\"JFK\",-5.00,-40.00,0.00,\"\",0.00,306.00,279.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"12\",\"LAX\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,326.00,306.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"12\",\"LAX\",\"JFK\",90.00,74.00,0.00,\"\",0.00,325.00,306.00,2475.00,0.00,0.00,67.00,0.00,7.00,\n2015,5,28,\"AA\",\"12\",\"LAX\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,326.00,299.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"12\",\"LAX\",\"JFK\",8.00,-5.00,0.00,\"\",0.00,328.00,300.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"12\",\"LAX\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,341.00,311.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"12\",\"LAX\",\"JFK\",24.00,41.00,0.00,\"\",0.00,358.00,331.00,2475.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,1,\"AA\",\"15\",\"JFK\",\"SFO\",-6.00,-16.00,0.00,\"\",0.00,380.00,350.00,2586.00,,,,,,\n2015,5,4,\"AA\",\"15\",\"JFK\",\"SFO\",3.00,-5.00,0.00,\"\",0.00,382.00,360.00,2586.00,,,,,,\n2015,5,5,\"AA\",\"15\",\"JFK\",\"SFO\",-5.00,-39.00,0.00,\"\",0.00,356.00,332.00,2586.00,,,,,,\n2015,5,6,\"AA\",\"15\",\"JFK\",\"SFO\",-5.00,-13.00,0.00,\"\",0.00,382.00,353.00,2586.00,,,,,,\n2015,5,7,\"AA\",\"15\",\"JFK\",\"SFO\",-8.00,-38.00,0.00,\"\",0.00,360.00,331.00,2586.00,,,,,,\n2015,5,8,\"AA\",\"15\",\"JFK\",\"SFO\",-4.00,-26.00,0.00,\"\",0.00,368.00,329.00,2586.00,,,,,,\n2015,5,10,\"AA\",\"15\",\"JFK\",\"SFO\",2.00,-26.00,0.00,\"\",0.00,362.00,342.00,2586.00,,,,,,\n2015,5,11,\"AA\",\"15\",\"JFK\",\"SFO\",-7.00,-11.00,0.00,\"\",0.00,386.00,362.00,2586.00,,,,,,\n2015,5,12,\"AA\",\"15\",\"JFK\",\"SFO\",-1.00,10.00,0.00,\"\",0.00,401.00,355.00,2586.00,,,,,,\n2015,5,13,\"AA\",\"15\",\"JFK\",\"SFO\",-6.00,-12.00,0.00,\"\",0.00,384.00,353.00,2586.00,,,,,,\n2015,5,14,\"AA\",\"15\",\"JFK\",\"SFO\",1.00,-26.00,0.00,\"\",0.00,363.00,340.00,2586.00,,,,,,\n2015,5,15,\"AA\",\"15\",\"JFK\",\"SFO\",-4.00,7.00,0.00,\"\",0.00,401.00,352.00,2586.00,,,,,,\n2015,5,17,\"AA\",\"15\",\"JFK\",\"SFO\",17.00,12.00,0.00,\"\",0.00,385.00,343.00,2586.00,,,,,,\n2015,5,18,\"AA\",\"15\",\"JFK\",\"SFO\",-6.00,-30.00,0.00,\"\",0.00,366.00,342.00,2586.00,,,,,,\n2015,5,19,\"AA\",\"15\",\"JFK\",\"SFO\",-9.00,-11.00,0.00,\"\",0.00,388.00,362.00,2586.00,,,,,,\n2015,5,20,\"AA\",\"15\",\"JFK\",\"SFO\",-3.00,6.00,0.00,\"\",0.00,399.00,375.00,2586.00,,,,,,\n2015,5,21,\"AA\",\"15\",\"JFK\",\"SFO\",-5.00,-5.00,0.00,\"\",0.00,390.00,367.00,2586.00,,,,,,\n2015,5,22,\"AA\",\"15\",\"JFK\",\"SFO\",-5.00,-10.00,0.00,\"\",0.00,385.00,353.00,2586.00,,,,,,\n2015,5,23,\"AA\",\"15\",\"JFK\",\"SFO\",-5.00,-9.00,0.00,\"\",0.00,386.00,362.00,2586.00,,,,,,\n2015,5,26,\"AA\",\"15\",\"JFK\",\"SFO\",-3.00,-29.00,0.00,\"\",0.00,364.00,342.00,2586.00,,,,,,\n2015,5,27,\"AA\",\"15\",\"JFK\",\"SFO\",-3.00,-8.00,0.00,\"\",0.00,385.00,356.00,2586.00,,,,,,\n2015,5,28,\"AA\",\"15\",\"JFK\",\"SFO\",-3.00,2.00,0.00,\"\",0.00,395.00,357.00,2586.00,,,,,,\n2015,5,29,\"AA\",\"15\",\"JFK\",\"SFO\",-3.00,-11.00,0.00,\"\",0.00,382.00,346.00,2586.00,,,,,,\n2015,5,31,\"AA\",\"15\",\"JFK\",\"SFO\",-3.00,-32.00,0.00,\"\",0.00,361.00,335.00,2586.00,,,,,,\n2015,5,4,\"AA\",\"16\",\"SFO\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,336.00,311.00,2586.00,,,,,,\n2015,5,6,\"AA\",\"16\",\"SFO\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,340.00,316.00,2586.00,,,,,,\n2015,5,7,\"AA\",\"16\",\"SFO\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,344.00,320.00,2586.00,,,,,,\n2015,5,10,\"AA\",\"16\",\"SFO\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,341.00,310.00,2586.00,,,,,,\n2015,5,11,\"AA\",\"16\",\"SFO\",\"JFK\",1.00,45.00,0.00,\"\",0.00,390.00,332.00,2586.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,12,\"AA\",\"16\",\"SFO\",\"JFK\",42.00,4.00,0.00,\"\",0.00,308.00,285.00,2586.00,,,,,,\n2015,5,13,\"AA\",\"16\",\"SFO\",\"JFK\",4.00,-33.00,0.00,\"\",0.00,309.00,288.00,2586.00,,,,,,\n2015,5,14,\"AA\",\"16\",\"SFO\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,325.00,302.00,2586.00,,,,,,\n2015,5,17,\"AA\",\"16\",\"SFO\",\"JFK\",35.00,48.00,0.00,\"\",0.00,359.00,333.00,2586.00,35.00,0.00,13.00,0.00,0.00,\n2015,5,18,\"AA\",\"16\",\"SFO\",\"JFK\",87.00,100.00,0.00,\"\",0.00,359.00,326.00,2586.00,0.00,0.00,100.00,0.00,0.00,\n2015,5,19,\"AA\",\"16\",\"SFO\",\"JFK\",5.00,-3.00,0.00,\"\",0.00,338.00,308.00,2586.00,,,,,,\n2015,5,20,\"AA\",\"16\",\"SFO\",\"JFK\",4.00,-32.00,0.00,\"\",0.00,310.00,293.00,2586.00,,,,,,\n2015,5,21,\"AA\",\"16\",\"SFO\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,325.00,298.00,2586.00,,,,,,\n2015,5,23,\"AA\",\"16\",\"SFO\",\"JFK\",-4.00,-36.00,0.00,\"\",0.00,314.00,294.00,2586.00,,,,,,\n2015,5,24,\"AA\",\"16\",\"SFO\",\"JFK\",-9.00,-27.00,0.00,\"\",0.00,328.00,306.00,2586.00,,,,,,\n2015,5,26,\"AA\",\"16\",\"SFO\",\"JFK\",-5.00,6.00,0.00,\"\",0.00,357.00,326.00,2586.00,,,,,,\n2015,5,27,\"AA\",\"16\",\"SFO\",\"JFK\",74.00,92.00,0.00,\"\",0.00,364.00,305.00,2586.00,0.00,0.00,92.00,0.00,0.00,\n2015,5,28,\"AA\",\"16\",\"SFO\",\"JFK\",42.00,37.00,0.00,\"\",0.00,341.00,317.00,2586.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"AA\",\"16\",\"SFO\",\"JFK\",138.00,153.00,0.00,\"\",0.00,361.00,331.00,2586.00,0.00,0.00,153.00,0.00,0.00,\n2015,5,1,\"AA\",\"18\",\"SFO\",\"JFK\",0.00,2.00,0.00,\"\",0.00,339.00,304.00,2586.00,,,,,,\n2015,5,2,\"AA\",\"18\",\"SFO\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,326.00,303.00,2586.00,,,,,,\n2015,5,3,\"AA\",\"18\",\"SFO\",\"JFK\",3.00,14.00,0.00,\"\",0.00,348.00,319.00,2586.00,,,,,,\n2015,5,4,\"AA\",\"18\",\"SFO\",\"JFK\",-4.00,1.00,0.00,\"\",0.00,342.00,306.00,2586.00,,,,,,\n2015,5,5,\"AA\",\"18\",\"SFO\",\"JFK\",-2.00,9.00,0.00,\"\",0.00,348.00,303.00,2586.00,,,,,,\n2015,5,6,\"AA\",\"18\",\"SFO\",\"JFK\",-1.00,3.00,0.00,\"\",0.00,341.00,318.00,2586.00,,,,,,\n2015,5,7,\"AA\",\"18\",\"SFO\",\"JFK\",-6.00,32.00,0.00,\"\",0.00,375.00,331.00,2586.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,8,\"AA\",\"18\",\"SFO\",\"JFK\",-7.00,19.00,0.00,\"\",0.00,363.00,330.00,2586.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,10,\"AA\",\"18\",\"SFO\",\"JFK\",50.00,34.00,0.00,\"\",0.00,321.00,301.00,2586.00,25.00,0.00,0.00,0.00,9.00,\n2015,5,11,\"AA\",\"18\",\"SFO\",\"JFK\",177.00,159.00,0.00,\"\",0.00,319.00,291.00,2586.00,53.00,0.00,0.00,0.00,106.00,\n2015,5,12,\"AA\",\"18\",\"SFO\",\"JFK\",-2.00,,0.00,\"\",1.00,,,2586.00,,,,,,\n2015,5,13,\"AA\",\"18\",\"SFO\",\"JFK\",-3.00,-3.00,0.00,\"\",0.00,337.00,295.00,2586.00,,,,,,\n2015,5,14,\"AA\",\"18\",\"SFO\",\"JFK\",9.00,4.00,0.00,\"\",0.00,332.00,313.00,2586.00,,,,,,\n2015,5,15,\"AA\",\"18\",\"SFO\",\"JFK\",30.00,26.00,0.00,\"\",0.00,333.00,305.00,2586.00,6.00,0.00,0.00,0.00,20.00,\n2015,5,17,\"AA\",\"18\",\"SFO\",\"JFK\",30.00,19.00,0.00,\"\",0.00,326.00,302.00,2586.00,3.00,0.00,0.00,0.00,16.00,\n2015,5,18,\"AA\",\"18\",\"SFO\",\"JFK\",56.00,60.00,0.00,\"\",0.00,341.00,302.00,2586.00,27.00,0.00,4.00,0.00,29.00,\n2015,5,19,\"AA\",\"18\",\"SFO\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,321.00,287.00,2586.00,,,,,,\n2015,5,20,\"AA\",\"18\",\"SFO\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,327.00,290.00,2586.00,,,,,,\n2015,5,21,\"AA\",\"18\",\"SFO\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,330.00,301.00,2586.00,,,,,,\n2015,5,22,\"AA\",\"18\",\"SFO\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,321.00,300.00,2586.00,,,,,,\n2015,5,25,\"AA\",\"18\",\"SFO\",\"JFK\",-5.00,0.00,0.00,\"\",0.00,342.00,310.00,2586.00,,,,,,\n2015,5,26,\"AA\",\"18\",\"SFO\",\"JFK\",-4.00,15.00,0.00,\"\",0.00,356.00,308.00,2586.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,27,\"AA\",\"18\",\"SFO\",\"JFK\",-8.00,-12.00,0.00,\"\",0.00,333.00,311.00,2586.00,,,,,,\n2015,5,28,\"AA\",\"18\",\"SFO\",\"JFK\",-8.00,-3.00,0.00,\"\",0.00,342.00,303.00,2586.00,,,,,,\n2015,5,29,\"AA\",\"18\",\"SFO\",\"JFK\",-8.00,-13.00,0.00,\"\",0.00,332.00,309.00,2586.00,,,,,,\n2015,5,31,\"AA\",\"18\",\"SFO\",\"JFK\",6.00,3.00,0.00,\"\",0.00,334.00,309.00,2586.00,,,,,,\n2015,5,1,\"AA\",\"19\",\"JFK\",\"LAX\",-10.00,-44.00,0.00,\"\",0.00,334.00,318.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"19\",\"JFK\",\"LAX\",-4.00,-25.00,0.00,\"\",0.00,347.00,316.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"19\",\"JFK\",\"LAX\",-5.00,-23.00,0.00,\"\",0.00,350.00,326.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"19\",\"JFK\",\"LAX\",-5.00,-34.00,0.00,\"\",0.00,339.00,312.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"19\",\"JFK\",\"LAX\",-4.00,-33.00,0.00,\"\",0.00,339.00,311.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"19\",\"JFK\",\"LAX\",-3.00,-32.00,0.00,\"\",0.00,339.00,319.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"19\",\"JFK\",\"LAX\",-7.00,-22.00,0.00,\"\",0.00,353.00,328.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"19\",\"JFK\",\"LAX\",-1.00,-12.00,0.00,\"\",0.00,357.00,323.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"19\",\"JFK\",\"LAX\",10.00,5.00,0.00,\"\",0.00,363.00,333.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"19\",\"JFK\",\"LAX\",2.00,-21.00,0.00,\"\",0.00,345.00,326.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"19\",\"JFK\",\"LAX\",-6.00,-24.00,0.00,\"\",0.00,350.00,329.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"19\",\"JFK\",\"LAX\",-5.00,0.00,0.00,\"\",0.00,373.00,355.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"19\",\"JFK\",\"LAX\",-7.00,-32.00,0.00,\"\",0.00,343.00,327.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"19\",\"JFK\",\"LAX\",-4.00,-26.00,0.00,\"\",0.00,346.00,324.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"19\",\"JFK\",\"LAX\",-9.00,-22.00,0.00,\"\",0.00,355.00,333.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"19\",\"JFK\",\"LAX\",-5.00,-12.00,0.00,\"\",0.00,361.00,333.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"19\",\"JFK\",\"LAX\",-8.00,-17.00,0.00,\"\",0.00,359.00,337.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"19\",\"JFK\",\"LAX\",-6.00,-22.00,0.00,\"\",0.00,352.00,327.00,2475.00,,,,,,\n2015,5,19,\"AA\",\"19\",\"JFK\",\"LAX\",1.00,19.00,0.00,\"\",0.00,386.00,354.00,2475.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,20,\"AA\",\"19\",\"JFK\",\"LAX\",1.00,-11.00,0.00,\"\",0.00,356.00,339.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"19\",\"JFK\",\"LAX\",-5.00,-19.00,0.00,\"\",0.00,354.00,333.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"19\",\"JFK\",\"LAX\",-7.00,50.00,0.00,\"\",0.00,425.00,369.00,2475.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,23,\"AA\",\"19\",\"JFK\",\"LAX\",0.00,-8.00,0.00,\"\",0.00,360.00,341.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"19\",\"JFK\",\"LAX\",-8.00,-38.00,0.00,\"\",0.00,338.00,318.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"19\",\"JFK\",\"LAX\",-7.00,-28.00,0.00,\"\",0.00,347.00,326.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"19\",\"JFK\",\"LAX\",-6.00,5.00,0.00,\"\",0.00,379.00,329.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"19\",\"JFK\",\"LAX\",-2.00,-4.00,0.00,\"\",0.00,366.00,335.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"19\",\"JFK\",\"LAX\",-6.00,-7.00,0.00,\"\",0.00,367.00,336.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"19\",\"JFK\",\"LAX\",-5.00,-24.00,0.00,\"\",0.00,349.00,327.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"19\",\"JFK\",\"LAX\",-9.00,-49.00,0.00,\"\",0.00,328.00,310.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"19\",\"JFK\",\"LAX\",-7.00,-39.00,0.00,\"\",0.00,336.00,313.00,2475.00,,,,,,\n2015,5,1,\"AA\",\"20\",\"SFO\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,326.00,298.00,2586.00,,,,,,\n2015,5,2,\"AA\",\"20\",\"SFO\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,326.00,305.00,2586.00,,,,,,\n2015,5,3,\"AA\",\"20\",\"SFO\",\"JFK\",-9.00,-3.00,0.00,\"\",0.00,345.00,310.00,2586.00,,,,,,\n2015,5,4,\"AA\",\"20\",\"SFO\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,336.00,305.00,2586.00,,,,,,\n2015,5,5,\"AA\",\"20\",\"SFO\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,338.00,309.00,2586.00,,,,,,\n2015,5,6,\"AA\",\"20\",\"SFO\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,338.00,317.00,2586.00,,,,,,\n2015,5,7,\"AA\",\"20\",\"SFO\",\"JFK\",-8.00,3.00,0.00,\"\",0.00,350.00,322.00,2586.00,,,,,,\n2015,5,8,\"AA\",\"20\",\"SFO\",\"JFK\",-7.00,12.00,0.00,\"\",0.00,358.00,317.00,2586.00,,,,,,\n2015,5,9,\"AA\",\"20\",\"SFO\",\"JFK\",-5.00,7.00,0.00,\"\",0.00,351.00,323.00,2586.00,,,,,,\n2015,5,10,\"AA\",\"20\",\"SFO\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,329.00,306.00,2586.00,,,,,,\n2015,5,11,\"AA\",\"20\",\"SFO\",\"JFK\",57.00,55.00,0.00,\"\",0.00,337.00,299.00,2586.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,12,\"AA\",\"20\",\"SFO\",\"JFK\",-4.00,-43.00,0.00,\"\",0.00,300.00,283.00,2586.00,,,,,,\n2015,5,13,\"AA\",\"20\",\"SFO\",\"JFK\",-7.00,-33.00,0.00,\"\",0.00,313.00,288.00,2586.00,,,,,,\n2015,5,14,\"AA\",\"20\",\"SFO\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,325.00,303.00,2586.00,,,,,,\n2015,5,15,\"AA\",\"20\",\"SFO\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,335.00,304.00,2586.00,,,,,,\n2015,5,16,\"AA\",\"20\",\"SFO\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,323.00,302.00,2586.00,,,,,,\n2015,5,17,\"AA\",\"20\",\"SFO\",\"JFK\",22.00,10.00,0.00,\"\",0.00,327.00,303.00,2586.00,,,,,,\n2015,5,18,\"AA\",\"20\",\"SFO\",\"JFK\",47.00,84.00,0.00,\"\",0.00,376.00,354.00,2586.00,30.00,0.00,37.00,0.00,17.00,\n2015,5,19,\"AA\",\"20\",\"SFO\",\"JFK\",24.00,-9.00,0.00,\"\",0.00,306.00,289.00,2586.00,,,,,,\n2015,5,20,\"AA\",\"20\",\"SFO\",\"JFK\",19.00,-19.00,0.00,\"\",0.00,301.00,284.00,2586.00,,,,,,\n2015,5,21,\"AA\",\"20\",\"SFO\",\"JFK\",44.00,14.00,0.00,\"\",0.00,309.00,293.00,2586.00,,,,,,\n2015,5,25,\"AA\",\"20\",\"SFO\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,328.00,304.00,2586.00,,,,,,\n2015,5,26,\"AA\",\"20\",\"SFO\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,330.00,309.00,2586.00,,,,,,\n2015,5,27,\"AA\",\"20\",\"SFO\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,332.00,305.00,2586.00,,,,,,\n2015,5,28,\"AA\",\"20\",\"SFO\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,331.00,303.00,2586.00,,,,,,\n2015,5,29,\"AA\",\"20\",\"SFO\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,330.00,302.00,2586.00,,,,,,\n2015,5,30,\"AA\",\"20\",\"SFO\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,328.00,304.00,2586.00,,,,,,\n2015,5,31,\"AA\",\"20\",\"SFO\",\"JFK\",10.00,64.00,0.00,\"\",0.00,393.00,359.00,2586.00,0.00,0.00,64.00,0.00,0.00,\n2015,5,1,\"AA\",\"21\",\"JFK\",\"LAX\",5.00,-13.00,0.00,\"\",0.00,368.00,318.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"21\",\"JFK\",\"LAX\",-8.00,-8.00,0.00,\"\",0.00,386.00,328.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"21\",\"JFK\",\"LAX\",-8.00,-39.00,0.00,\"\",0.00,355.00,324.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"21\",\"JFK\",\"LAX\",-3.00,-30.00,0.00,\"\",0.00,359.00,330.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"21\",\"JFK\",\"LAX\",-8.00,-35.00,0.00,\"\",0.00,359.00,312.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"21\",\"JFK\",\"LAX\",7.00,-21.00,0.00,\"\",0.00,358.00,326.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"21\",\"JFK\",\"LAX\",1.00,7.00,0.00,\"\",0.00,392.00,362.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"21\",\"JFK\",\"LAX\",-2.00,-5.00,0.00,\"\",0.00,383.00,339.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"21\",\"JFK\",\"LAX\",55.00,40.00,0.00,\"\",0.00,371.00,338.00,2475.00,17.00,0.00,0.00,0.00,23.00,\n2015,5,11,\"AA\",\"21\",\"JFK\",\"LAX\",10.00,9.00,0.00,\"\",0.00,385.00,344.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"21\",\"JFK\",\"LAX\",60.00,42.00,0.00,\"\",0.00,368.00,331.00,2475.00,15.00,0.00,0.00,0.00,27.00,\n2015,5,13,\"AA\",\"21\",\"JFK\",\"LAX\",-8.00,-7.00,0.00,\"\",0.00,387.00,334.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"21\",\"JFK\",\"LAX\",-2.00,11.00,0.00,\"\",0.00,399.00,341.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"21\",\"JFK\",\"LAX\",-5.00,-4.00,0.00,\"\",0.00,387.00,333.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"21\",\"JFK\",\"LAX\",-1.00,-17.00,0.00,\"\",0.00,370.00,337.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"21\",\"JFK\",\"LAX\",99.00,122.00,0.00,\"\",0.00,409.00,357.00,2475.00,0.00,0.00,23.00,0.00,99.00,\n2015,5,19,\"AA\",\"21\",\"JFK\",\"LAX\",-3.00,-6.00,0.00,\"\",0.00,383.00,355.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"21\",\"JFK\",\"LAX\",-7.00,-23.00,0.00,\"\",0.00,370.00,340.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"21\",\"JFK\",\"LAX\",-3.00,0.00,0.00,\"\",0.00,389.00,361.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"21\",\"JFK\",\"LAX\",-7.00,-33.00,0.00,\"\",0.00,360.00,340.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"21\",\"JFK\",\"LAX\",-3.00,-17.00,0.00,\"\",0.00,372.00,339.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"21\",\"JFK\",\"LAX\",18.00,4.00,0.00,\"\",0.00,372.00,330.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"21\",\"JFK\",\"LAX\",5.00,34.00,0.00,\"\",0.00,415.00,339.00,2475.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,28,\"AA\",\"21\",\"JFK\",\"LAX\",-4.00,-37.00,0.00,\"\",0.00,353.00,332.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"21\",\"JFK\",\"LAX\",-5.00,-14.00,0.00,\"\",0.00,377.00,334.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"21\",\"JFK\",\"LAX\",98.00,60.00,0.00,\"\",0.00,348.00,319.00,2475.00,0.00,55.00,0.00,0.00,5.00,\n2015,5,1,\"AA\",\"22\",\"LAX\",\"JFK\",-2.00,17.00,0.00,\"\",0.00,351.00,304.00,2475.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,2,\"AA\",\"22\",\"LAX\",\"JFK\",-2.00,11.00,0.00,\"\",0.00,345.00,308.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"22\",\"LAX\",\"JFK\",31.00,18.00,0.00,\"\",0.00,319.00,299.00,2475.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"AA\",\"22\",\"LAX\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,319.00,294.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"22\",\"LAX\",\"JFK\",-7.00,-8.00,0.00,\"\",0.00,331.00,299.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"22\",\"LAX\",\"JFK\",-7.00,-8.00,0.00,\"\",0.00,331.00,307.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"22\",\"LAX\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,330.00,305.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"22\",\"LAX\",\"JFK\",12.00,-4.00,0.00,\"\",0.00,316.00,298.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"22\",\"LAX\",\"JFK\",-2.00,7.00,0.00,\"\",0.00,341.00,311.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"22\",\"LAX\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,314.00,296.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"22\",\"LAX\",\"JFK\",60.00,54.00,0.00,\"\",0.00,326.00,293.00,2475.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,12,\"AA\",\"22\",\"LAX\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,310.00,277.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"22\",\"LAX\",\"JFK\",-2.00,-37.00,0.00,\"\",0.00,297.00,279.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"22\",\"LAX\",\"JFK\",4.00,-12.00,0.00,\"\",0.00,316.00,293.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"22\",\"LAX\",\"JFK\",-1.00,-23.00,0.00,\"\",0.00,310.00,292.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"22\",\"LAX\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,324.00,293.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"22\",\"LAX\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,315.00,291.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"22\",\"LAX\",\"JFK\",38.00,108.00,0.00,\"\",0.00,402.00,378.00,2475.00,0.00,0.00,108.00,0.00,0.00,\n2015,5,19,\"AA\",\"22\",\"LAX\",\"JFK\",234.00,192.00,0.00,\"\",0.00,290.00,273.00,2475.00,5.00,0.00,0.00,0.00,187.00,\n2015,5,20,\"AA\",\"22\",\"LAX\",\"JFK\",-7.00,-51.00,0.00,\"\",0.00,288.00,268.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"22\",\"LAX\",\"JFK\",-6.00,-33.00,0.00,\"\",0.00,305.00,280.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"22\",\"LAX\",\"JFK\",21.00,-9.00,0.00,\"\",0.00,302.00,280.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"22\",\"LAX\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,315.00,295.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"22\",\"LAX\",\"JFK\",3.00,-11.00,0.00,\"\",0.00,318.00,297.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"22\",\"LAX\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,327.00,300.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"22\",\"LAX\",\"JFK\",4.00,-3.00,0.00,\"\",0.00,325.00,299.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"22\",\"LAX\",\"JFK\",-5.00,0.00,0.00,\"\",0.00,337.00,301.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"22\",\"LAX\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,339.00,302.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"22\",\"LAX\",\"JFK\",17.00,43.00,0.00,\"\",0.00,358.00,328.00,2475.00,17.00,0.00,26.00,0.00,0.00,\n2015,5,31,\"AA\",\"22\",\"LAX\",\"JFK\",-7.00,53.00,0.00,\"\",0.00,392.00,353.00,2475.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,1,\"AA\",\"24\",\"SFO\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,337.00,310.00,2586.00,,,,,,\n2015,5,2,\"AA\",\"24\",\"SFO\",\"JFK\",-10.00,-24.00,0.00,\"\",0.00,333.00,312.00,2586.00,,,,,,\n2015,5,3,\"AA\",\"24\",\"SFO\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,337.00,309.00,2586.00,,,,,,\n2015,5,4,\"AA\",\"24\",\"SFO\",\"JFK\",-10.00,-29.00,0.00,\"\",0.00,328.00,309.00,2586.00,,,,,,\n2015,5,5,\"AA\",\"24\",\"SFO\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,337.00,304.00,2586.00,,,,,,\n2015,5,6,\"AA\",\"24\",\"SFO\",\"JFK\",-4.00,-6.00,0.00,\"\",0.00,345.00,313.00,2586.00,,,,,,\n2015,5,7,\"AA\",\"24\",\"SFO\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,346.00,309.00,2586.00,,,,,,\n2015,5,8,\"AA\",\"24\",\"SFO\",\"JFK\",-3.00,4.00,0.00,\"\",0.00,354.00,325.00,2586.00,,,,,,\n2015,5,10,\"AA\",\"24\",\"SFO\",\"JFK\",59.00,37.00,0.00,\"\",0.00,325.00,303.00,2586.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"AA\",\"24\",\"SFO\",\"JFK\",-8.00,-34.00,0.00,\"\",0.00,321.00,294.00,2586.00,,,,,,\n2015,5,12,\"AA\",\"24\",\"SFO\",\"JFK\",-12.00,-24.00,0.00,\"\",0.00,335.00,313.00,2586.00,,,,,,\n2015,5,13,\"AA\",\"24\",\"SFO\",\"JFK\",-7.00,-45.00,0.00,\"\",0.00,309.00,291.00,2586.00,,,,,,\n2015,5,14,\"AA\",\"24\",\"SFO\",\"JFK\",28.00,8.00,0.00,\"\",0.00,327.00,303.00,2586.00,,,,,,\n2015,5,15,\"AA\",\"24\",\"SFO\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,331.00,311.00,2586.00,,,,,,\n2015,5,17,\"AA\",\"24\",\"SFO\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,326.00,301.00,2586.00,,,,,,\n2015,5,18,\"AA\",\"24\",\"SFO\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,335.00,308.00,2586.00,,,,,,\n2015,5,19,\"AA\",\"24\",\"SFO\",\"JFK\",-8.00,-29.00,0.00,\"\",0.00,326.00,299.00,2586.00,,,,,,\n2015,5,20,\"AA\",\"24\",\"SFO\",\"JFK\",-9.00,-28.00,0.00,\"\",0.00,328.00,310.00,2586.00,,,,,,\n2015,5,21,\"AA\",\"24\",\"SFO\",\"JFK\",-5.00,-40.00,0.00,\"\",0.00,312.00,290.00,2586.00,,,,,,\n2015,5,22,\"AA\",\"24\",\"SFO\",\"JFK\",-5.00,24.00,0.00,\"\",0.00,376.00,333.00,2586.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,23,\"AA\",\"24\",\"SFO\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,336.00,301.00,2586.00,,,,,,\n2015,5,24,\"AA\",\"24\",\"SFO\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,334.00,308.00,2586.00,,,,,,\n2015,5,25,\"AA\",\"24\",\"SFO\",\"JFK\",-9.00,-25.00,0.00,\"\",0.00,331.00,309.00,2586.00,,,,,,\n2015,5,26,\"AA\",\"24\",\"SFO\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,340.00,313.00,2586.00,,,,,,\n2015,5,27,\"AA\",\"24\",\"SFO\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,343.00,316.00,2586.00,,,,,,\n2015,5,28,\"AA\",\"24\",\"SFO\",\"JFK\",-7.00,-36.00,0.00,\"\",0.00,318.00,295.00,2586.00,,,,,,\n2015,5,29,\"AA\",\"24\",\"SFO\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,332.00,304.00,2586.00,,,,,,\n2015,5,31,\"AA\",\"24\",\"SFO\",\"JFK\",-2.00,4.00,0.00,\"\",0.00,353.00,334.00,2586.00,,,,,,\n2015,5,1,\"AA\",\"30\",\"LAX\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,318.00,297.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"30\",\"LAX\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,313.00,293.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"30\",\"LAX\",\"JFK\",3.00,-10.00,0.00,\"\",0.00,317.00,296.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"30\",\"LAX\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,322.00,295.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"30\",\"LAX\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,324.00,306.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"30\",\"LAX\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,333.00,308.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"30\",\"LAX\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,323.00,298.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"30\",\"LAX\",\"JFK\",7.00,-6.00,0.00,\"\",0.00,317.00,294.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"30\",\"LAX\",\"JFK\",-5.00,-3.00,0.00,\"\",0.00,332.00,304.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"30\",\"LAX\",\"JFK\",10.00,-25.00,0.00,\"\",0.00,295.00,278.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"30\",\"LAX\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,311.00,292.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"30\",\"LAX\",\"JFK\",3.00,-15.00,0.00,\"\",0.00,312.00,290.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"30\",\"LAX\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,318.00,296.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"30\",\"LAX\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,311.00,286.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"30\",\"LAX\",\"JFK\",3.00,-5.00,0.00,\"\",0.00,322.00,297.00,2475.00,,,,,,\n2015,5,19,\"AA\",\"30\",\"LAX\",\"JFK\",-6.00,-42.00,0.00,\"\",0.00,294.00,275.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"30\",\"LAX\",\"JFK\",1.00,-32.00,0.00,\"\",0.00,297.00,273.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"30\",\"LAX\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,315.00,289.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"30\",\"LAX\",\"JFK\",13.00,-16.00,0.00,\"\",0.00,301.00,282.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"30\",\"LAX\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,313.00,290.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"30\",\"LAX\",\"JFK\",-3.00,8.00,0.00,\"\",0.00,341.00,300.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"30\",\"LAX\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,327.00,297.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"30\",\"LAX\",\"JFK\",40.00,30.00,0.00,\"\",0.00,320.00,295.00,2475.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"AA\",\"30\",\"LAX\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,329.00,307.00,2475.00,,,,,,\n2015,5,1,\"AA\",\"32\",\"LAX\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,326.00,300.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"32\",\"LAX\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,330.00,308.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"32\",\"LAX\",\"JFK\",26.00,3.00,0.00,\"\",0.00,318.00,295.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"32\",\"LAX\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,336.00,302.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"32\",\"LAX\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,321.00,300.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"32\",\"LAX\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,331.00,309.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"32\",\"LAX\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,326.00,304.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"32\",\"LAX\",\"JFK\",26.00,14.00,0.00,\"\",0.00,329.00,302.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"32\",\"LAX\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,345.00,305.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"32\",\"LAX\",\"JFK\",29.00,64.00,0.00,\"\",0.00,376.00,334.00,2475.00,0.00,0.00,64.00,0.00,0.00,\n2015,5,12,\"AA\",\"32\",\"LAX\",\"JFK\",21.00,-7.00,0.00,\"\",0.00,313.00,280.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"32\",\"LAX\",\"JFK\",-3.00,-30.00,0.00,\"\",0.00,314.00,280.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"32\",\"LAX\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,327.00,298.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"32\",\"LAX\",\"JFK\",-5.00,-30.00,0.00,\"\",0.00,316.00,295.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"32\",\"LAX\",\"JFK\",72.00,123.00,0.00,\"\",0.00,392.00,362.00,2475.00,0.00,0.00,123.00,0.00,0.00,\n2015,5,19,\"AA\",\"32\",\"LAX\",\"JFK\",-4.00,-34.00,0.00,\"\",0.00,311.00,288.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"32\",\"LAX\",\"JFK\",-2.00,-49.00,0.00,\"\",0.00,294.00,275.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"32\",\"LAX\",\"JFK\",0.00,3.00,0.00,\"\",0.00,344.00,282.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"32\",\"LAX\",\"JFK\",31.00,-2.00,0.00,\"\",0.00,308.00,288.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"32\",\"LAX\",\"JFK\",-6.00,-36.00,0.00,\"\",0.00,311.00,287.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"32\",\"LAX\",\"JFK\",-7.00,-31.00,0.00,\"\",0.00,317.00,296.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"32\",\"LAX\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,323.00,292.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"32\",\"LAX\",\"JFK\",41.00,27.00,0.00,\"\",0.00,327.00,312.00,2475.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,28,\"AA\",\"32\",\"LAX\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,335.00,306.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"32\",\"LAX\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,324.00,299.00,2475.00,,,,,,\n2015,5,1,\"AA\",\"33\",\"JFK\",\"LAX\",-2.00,-33.00,0.00,\"\",0.00,348.00,325.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"33\",\"JFK\",\"LAX\",-1.00,-29.00,0.00,\"\",0.00,351.00,323.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"33\",\"JFK\",\"LAX\",-2.00,21.00,0.00,\"\",0.00,402.00,334.00,2475.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,4,\"AA\",\"33\",\"JFK\",\"LAX\",-7.00,8.00,0.00,\"\",0.00,394.00,316.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"33\",\"JFK\",\"LAX\",-3.00,-19.00,0.00,\"\",0.00,363.00,316.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"33\",\"JFK\",\"LAX\",0.00,4.00,0.00,\"\",0.00,383.00,327.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"33\",\"JFK\",\"LAX\",-9.00,-22.00,0.00,\"\",0.00,366.00,327.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"33\",\"JFK\",\"LAX\",-1.00,6.00,0.00,\"\",0.00,386.00,339.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"33\",\"JFK\",\"LAX\",-7.00,-42.00,0.00,\"\",0.00,344.00,320.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"33\",\"JFK\",\"LAX\",-8.00,5.00,0.00,\"\",0.00,392.00,338.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"33\",\"JFK\",\"LAX\",,,1.00,\"A\",0.00,,,2475.00,,,,,,\n2015,5,13,\"AA\",\"33\",\"JFK\",\"LAX\",-5.00,-9.00,0.00,\"\",0.00,375.00,336.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"33\",\"JFK\",\"LAX\",-7.00,-3.00,0.00,\"\",0.00,383.00,334.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"33\",\"JFK\",\"LAX\",-7.00,5.00,0.00,\"\",0.00,391.00,344.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"33\",\"JFK\",\"LAX\",-8.00,4.00,0.00,\"\",0.00,391.00,328.00,2475.00,,,,,,\n2015,5,19,\"AA\",\"33\",\"JFK\",\"LAX\",-7.00,11.00,0.00,\"\",0.00,397.00,355.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"33\",\"JFK\",\"LAX\",-5.00,-1.00,0.00,\"\",0.00,383.00,349.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"33\",\"JFK\",\"LAX\",-4.00,-2.00,0.00,\"\",0.00,381.00,348.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"33\",\"JFK\",\"LAX\",-4.00,-22.00,0.00,\"\",0.00,361.00,336.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"33\",\"JFK\",\"LAX\",-2.00,-23.00,0.00,\"\",0.00,358.00,339.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"33\",\"JFK\",\"LAX\",-5.00,-22.00,0.00,\"\",0.00,362.00,332.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"33\",\"JFK\",\"LAX\",4.00,8.00,0.00,\"\",0.00,383.00,337.00,2475.00,,,,,,\n2015,5,1,\"AA\",\"34\",\"LAX\",\"JFK\",22.00,5.00,0.00,\"\",0.00,324.00,302.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"34\",\"LAX\",\"JFK\",14.00,-6.00,0.00,\"\",0.00,321.00,297.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"34\",\"LAX\",\"JFK\",0.00,-22.00,0.00,\"\",0.00,319.00,301.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"34\",\"LAX\",\"JFK\",-6.00,11.00,0.00,\"\",0.00,358.00,312.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"34\",\"LAX\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,321.00,297.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"34\",\"LAX\",\"JFK\",-6.00,-2.00,0.00,\"\",0.00,345.00,320.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"34\",\"LAX\",\"JFK\",-7.00,-1.00,0.00,\"\",0.00,347.00,313.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"34\",\"LAX\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,324.00,304.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"34\",\"LAX\",\"JFK\",-3.00,-6.00,0.00,\"\",0.00,338.00,305.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"34\",\"LAX\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,328.00,298.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"34\",\"LAX\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,340.00,308.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"34\",\"LAX\",\"JFK\",62.00,34.00,0.00,\"\",0.00,313.00,277.00,2475.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,13,\"AA\",\"34\",\"LAX\",\"JFK\",-5.00,-42.00,0.00,\"\",0.00,304.00,280.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"34\",\"LAX\",\"JFK\",-6.00,-30.00,0.00,\"\",0.00,317.00,293.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"34\",\"LAX\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,333.00,295.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"34\",\"LAX\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,335.00,292.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"34\",\"LAX\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,324.00,295.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"34\",\"LAX\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,319.00,288.00,2475.00,,,,,,\n2015,5,19,\"AA\",\"34\",\"LAX\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,333.00,283.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"34\",\"LAX\",\"JFK\",-2.00,-3.00,0.00,\"\",0.00,340.00,275.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"34\",\"LAX\",\"JFK\",-1.00,-35.00,0.00,\"\",0.00,307.00,277.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"34\",\"LAX\",\"JFK\",-7.00,-42.00,0.00,\"\",0.00,306.00,283.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"34\",\"LAX\",\"JFK\",-10.00,-48.00,0.00,\"\",0.00,303.00,285.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"34\",\"LAX\",\"JFK\",-7.00,-7.00,0.00,\"\",0.00,341.00,298.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"34\",\"LAX\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,330.00,299.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"34\",\"LAX\",\"JFK\",28.00,17.00,0.00,\"\",0.00,330.00,298.00,2475.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"AA\",\"34\",\"LAX\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,331.00,306.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"34\",\"LAX\",\"JFK\",-9.00,-34.00,0.00,\"\",0.00,316.00,297.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"34\",\"LAX\",\"JFK\",-3.00,-29.00,0.00,\"\",0.00,315.00,295.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"34\",\"LAX\",\"JFK\",-6.00,-11.00,0.00,\"\",0.00,336.00,312.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"34\",\"LAX\",\"JFK\",-5.00,1.00,0.00,\"\",0.00,347.00,321.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"235\",\"JFK\",\"BOS\",53.00,57.00,0.00,\"\",0.00,76.00,43.00,187.00,0.00,0.00,4.00,27.00,26.00,\n2015,5,8,\"AA\",\"235\",\"JFK\",\"BOS\",13.00,8.00,0.00,\"\",0.00,67.00,33.00,187.00,,,,,,\n2015,5,9,\"AA\",\"235\",\"JFK\",\"BOS\",-6.00,-5.00,0.00,\"\",0.00,73.00,41.00,187.00,,,,,,\n2015,5,10,\"AA\",\"235\",\"JFK\",\"BOS\",0.00,0.00,0.00,\"\",0.00,72.00,43.00,187.00,,,,,,\n2015,5,11,\"AA\",\"235\",\"JFK\",\"BOS\",-9.00,-17.00,0.00,\"\",0.00,64.00,31.00,187.00,,,,,,\n2015,5,12,\"AA\",\"235\",\"JFK\",\"BOS\",14.00,10.00,0.00,\"\",0.00,68.00,37.00,187.00,,,,,,\n2015,5,13,\"AA\",\"235\",\"JFK\",\"BOS\",-8.00,-7.00,0.00,\"\",0.00,73.00,38.00,187.00,,,,,,\n2015,5,14,\"AA\",\"235\",\"JFK\",\"BOS\",71.00,61.00,0.00,\"\",0.00,62.00,40.00,187.00,0.00,0.00,0.00,53.00,8.00,\n2015,5,15,\"AA\",\"235\",\"JFK\",\"BOS\",-8.00,-11.00,0.00,\"\",0.00,69.00,40.00,187.00,,,,,,\n2015,5,16,\"AA\",\"235\",\"JFK\",\"BOS\",5.00,-11.00,0.00,\"\",0.00,56.00,37.00,187.00,,,,,,\n2015,5,17,\"AA\",\"235\",\"JFK\",\"BOS\",0.00,-1.00,0.00,\"\",0.00,71.00,34.00,187.00,,,,,,\n2015,5,18,\"AA\",\"235\",\"JFK\",\"BOS\",33.00,63.00,0.00,\"\",0.00,102.00,33.00,187.00,0.00,0.00,30.00,0.00,33.00,\n2015,5,19,\"AA\",\"235\",\"JFK\",\"BOS\",-3.00,21.00,0.00,\"\",0.00,96.00,43.00,187.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,20,\"AA\",\"235\",\"JFK\",\"BOS\",-9.00,1.00,0.00,\"\",0.00,82.00,40.00,187.00,,,,,,\n2015,5,21,\"AA\",\"235\",\"JFK\",\"BOS\",45.00,30.00,0.00,\"\",0.00,57.00,36.00,187.00,0.00,0.00,0.00,22.00,8.00,\n2015,5,22,\"AA\",\"235\",\"JFK\",\"BOS\",37.00,41.00,0.00,\"\",0.00,76.00,43.00,187.00,0.00,0.00,4.00,0.00,37.00,\n2015,5,23,\"AA\",\"235\",\"JFK\",\"BOS\",-2.00,3.00,0.00,\"\",0.00,77.00,41.00,187.00,,,,,,\n2015,5,24,\"AA\",\"235\",\"JFK\",\"BOS\",-8.00,-15.00,0.00,\"\",0.00,65.00,40.00,187.00,,,,,,\n2015,5,25,\"AA\",\"235\",\"JFK\",\"BOS\",-5.00,-10.00,0.00,\"\",0.00,67.00,38.00,187.00,,,,,,\n2015,5,26,\"AA\",\"235\",\"JFK\",\"BOS\",-8.00,-8.00,0.00,\"\",0.00,72.00,40.00,187.00,,,,,,\n2015,5,27,\"AA\",\"235\",\"JFK\",\"BOS\",103.00,99.00,0.00,\"\",0.00,68.00,40.00,187.00,9.00,0.00,0.00,0.00,90.00,\n2015,5,28,\"AA\",\"235\",\"JFK\",\"BOS\",-5.00,4.00,0.00,\"\",0.00,81.00,38.00,187.00,,,,,,\n2015,5,29,\"AA\",\"235\",\"JFK\",\"BOS\",77.00,76.00,0.00,\"\",0.00,71.00,32.00,187.00,0.00,0.00,0.00,0.00,76.00,\n2015,5,30,\"AA\",\"235\",\"JFK\",\"BOS\",-4.00,-1.00,0.00,\"\",0.00,75.00,39.00,187.00,,,,,,\n2015,5,31,\"AA\",\"235\",\"JFK\",\"BOS\",139.00,238.00,0.00,\"\",0.00,171.00,33.00,187.00,0.00,0.00,157.00,0.00,81.00,\n2015,5,1,\"AA\",\"235\",\"JFK\",\"SEA\",0.00,-13.00,0.00,\"\",0.00,366.00,336.00,2422.00,,,,,,\n2015,5,2,\"AA\",\"235\",\"JFK\",\"SEA\",-5.00,-12.00,0.00,\"\",0.00,372.00,342.00,2422.00,,,,,,\n2015,5,3,\"AA\",\"235\",\"JFK\",\"SEA\",3.00,11.00,0.00,\"\",0.00,387.00,346.00,2422.00,,,,,,\n2015,5,4,\"AA\",\"235\",\"JFK\",\"SEA\",-5.00,-2.00,0.00,\"\",0.00,382.00,351.00,2422.00,,,,,,\n2015,5,5,\"AA\",\"235\",\"JFK\",\"SEA\",-6.00,-14.00,0.00,\"\",0.00,371.00,344.00,2422.00,,,,,,\n2015,5,6,\"AA\",\"235\",\"JFK\",\"SEA\",0.00,-34.00,0.00,\"\",0.00,345.00,312.00,2422.00,,,,,,\n2015,5,7,\"AA\",\"236\",\"BOS\",\"JFK\",-8.00,-7.00,0.00,\"\",0.00,82.00,50.00,187.00,,,,,,\n2015,5,8,\"AA\",\"236\",\"BOS\",\"JFK\",5.00,16.00,0.00,\"\",0.00,92.00,55.00,187.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,9,\"AA\",\"236\",\"BOS\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,69.00,51.00,187.00,,,,,,\n2015,5,10,\"AA\",\"236\",\"BOS\",\"JFK\",-1.00,-24.00,0.00,\"\",0.00,58.00,41.00,187.00,,,,,,\n2015,5,11,\"AA\",\"236\",\"BOS\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,80.00,40.00,187.00,,,,,,\n2015,5,12,\"AA\",\"236\",\"BOS\",\"JFK\",-3.00,5.00,0.00,\"\",0.00,89.00,47.00,187.00,,,,,,\n2015,5,13,\"AA\",\"236\",\"BOS\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,70.00,43.00,187.00,,,,,,\n2015,5,14,\"AA\",\"236\",\"BOS\",\"JFK\",-7.00,-11.00,0.00,\"\",0.00,77.00,40.00,187.00,,,,,,\n2015,5,15,\"AA\",\"236\",\"BOS\",\"JFK\",4.00,4.00,0.00,\"\",0.00,81.00,42.00,187.00,,,,,,\n2015,5,16,\"AA\",\"236\",\"BOS\",\"JFK\",-9.00,-15.00,0.00,\"\",0.00,75.00,44.00,187.00,,,,,,\n2015,5,17,\"AA\",\"236\",\"BOS\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,63.00,42.00,187.00,,,,,,\n2015,5,18,\"AA\",\"236\",\"BOS\",\"JFK\",31.00,24.00,0.00,\"\",0.00,74.00,54.00,187.00,2.00,0.00,0.00,0.00,22.00,\n2015,5,19,\"AA\",\"236\",\"BOS\",\"JFK\",-1.00,8.00,0.00,\"\",0.00,90.00,57.00,187.00,,,,,,\n2015,5,20,\"AA\",\"236\",\"BOS\",\"JFK\",-7.00,-4.00,0.00,\"\",0.00,84.00,55.00,187.00,,,,,,\n2015,5,21,\"AA\",\"236\",\"BOS\",\"JFK\",-10.00,-15.00,0.00,\"\",0.00,76.00,45.00,187.00,,,,,,\n2015,5,22,\"AA\",\"236\",\"BOS\",\"JFK\",-9.00,-6.00,0.00,\"\",0.00,84.00,48.00,187.00,,,,,,\n2015,5,23,\"AA\",\"236\",\"BOS\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,72.00,44.00,187.00,,,,,,\n2015,5,24,\"AA\",\"236\",\"BOS\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,72.00,52.00,187.00,,,,,,\n2015,5,25,\"AA\",\"236\",\"BOS\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,73.00,49.00,187.00,,,,,,\n2015,5,26,\"AA\",\"236\",\"BOS\",\"JFK\",-7.00,-11.00,0.00,\"\",0.00,77.00,48.00,187.00,,,,,,\n2015,5,27,\"AA\",\"236\",\"BOS\",\"JFK\",-10.00,9.00,0.00,\"\",0.00,100.00,56.00,187.00,,,,,,\n2015,5,28,\"AA\",\"236\",\"BOS\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,74.00,45.00,187.00,,,,,,\n2015,5,29,\"AA\",\"236\",\"BOS\",\"JFK\",-7.00,-10.00,0.00,\"\",0.00,78.00,48.00,187.00,,,,,,\n2015,5,30,\"AA\",\"236\",\"BOS\",\"JFK\",-3.00,-2.00,0.00,\"\",0.00,82.00,51.00,187.00,,,,,,\n2015,5,31,\"AA\",\"236\",\"BOS\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,66.00,45.00,187.00,,,,,,\n2015,5,1,\"AA\",\"236\",\"SEA\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,324.00,295.00,2422.00,,,,,,\n2015,5,2,\"AA\",\"236\",\"SEA\",\"JFK\",-1.00,-20.00,0.00,\"\",0.00,309.00,293.00,2422.00,,,,,,\n2015,5,3,\"AA\",\"236\",\"SEA\",\"JFK\",7.00,-12.00,0.00,\"\",0.00,309.00,288.00,2422.00,,,,,,\n2015,5,4,\"AA\",\"236\",\"SEA\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,306.00,281.00,2422.00,,,,,,\n2015,5,5,\"AA\",\"236\",\"SEA\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,313.00,283.00,2422.00,,,,,,\n2015,5,6,\"AA\",\"236\",\"SEA\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,312.00,294.00,2422.00,,,,,,\n2015,5,7,\"AA\",\"143\",\"JFK\",\"BOS\",207.00,206.00,0.00,\"\",0.00,62.00,33.00,187.00,206.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"AA\",\"143\",\"JFK\",\"BOS\",-4.00,-4.00,0.00,\"\",0.00,63.00,37.00,187.00,,,,,,\n2015,5,9,\"AA\",\"143\",\"JFK\",\"BOS\",-7.00,-11.00,0.00,\"\",0.00,59.00,44.00,187.00,,,,,,\n2015,5,10,\"AA\",\"143\",\"JFK\",\"BOS\",-4.00,-4.00,0.00,\"\",0.00,63.00,38.00,187.00,,,,,,\n2015,5,11,\"AA\",\"143\",\"JFK\",\"BOS\",-2.00,-5.00,0.00,\"\",0.00,60.00,34.00,187.00,,,,,,\n2015,5,12,\"AA\",\"143\",\"JFK\",\"BOS\",-6.00,-9.00,0.00,\"\",0.00,60.00,40.00,187.00,,,,,,\n2015,5,13,\"AA\",\"143\",\"JFK\",\"BOS\",-4.00,-10.00,0.00,\"\",0.00,57.00,38.00,187.00,,,,,,\n2015,5,14,\"AA\",\"143\",\"JFK\",\"BOS\",0.00,-6.00,0.00,\"\",0.00,57.00,36.00,187.00,,,,,,\n2015,5,15,\"AA\",\"143\",\"JFK\",\"BOS\",-1.00,-8.00,0.00,\"\",0.00,56.00,33.00,187.00,,,,,,\n2015,5,16,\"AA\",\"143\",\"JFK\",\"BOS\",-5.00,-2.00,0.00,\"\",0.00,66.00,42.00,187.00,,,,,,\n2015,5,17,\"AA\",\"143\",\"JFK\",\"BOS\",-2.00,-1.00,0.00,\"\",0.00,64.00,35.00,187.00,,,,,,\n2015,5,18,\"AA\",\"143\",\"JFK\",\"BOS\",-5.00,45.00,0.00,\"\",0.00,113.00,43.00,187.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,19,\"AA\",\"143\",\"JFK\",\"BOS\",-10.00,7.00,0.00,\"\",0.00,80.00,51.00,187.00,,,,,,\n2015,5,20,\"AA\",\"143\",\"JFK\",\"BOS\",2.00,4.00,0.00,\"\",0.00,65.00,38.00,187.00,,,,,,\n2015,5,21,\"AA\",\"143\",\"JFK\",\"BOS\",255.00,253.00,0.00,\"\",0.00,61.00,37.00,187.00,12.00,0.00,0.00,0.00,241.00,\n2015,5,22,\"AA\",\"143\",\"JFK\",\"BOS\",-5.00,-7.00,0.00,\"\",0.00,61.00,39.00,187.00,,,,,,\n2015,5,23,\"AA\",\"143\",\"JFK\",\"BOS\",1.00,3.00,0.00,\"\",0.00,65.00,41.00,187.00,,,,,,\n2015,5,24,\"AA\",\"143\",\"JFK\",\"BOS\",-4.00,-2.00,0.00,\"\",0.00,65.00,41.00,187.00,,,,,,\n2015,5,25,\"AA\",\"143\",\"JFK\",\"BOS\",-5.00,-7.00,0.00,\"\",0.00,61.00,41.00,187.00,,,,,,\n2015,5,26,\"AA\",\"143\",\"JFK\",\"BOS\",-5.00,19.00,0.00,\"\",0.00,87.00,42.00,187.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,27,\"AA\",\"143\",\"JFK\",\"BOS\",67.00,65.00,0.00,\"\",0.00,61.00,40.00,187.00,0.00,0.00,0.00,0.00,65.00,\n2015,5,28,\"AA\",\"143\",\"JFK\",\"BOS\",0.00,9.00,0.00,\"\",0.00,72.00,47.00,187.00,,,,,,\n2015,5,29,\"AA\",\"143\",\"JFK\",\"BOS\",-3.00,-9.00,0.00,\"\",0.00,57.00,35.00,187.00,,,,,,\n2015,5,30,\"AA\",\"143\",\"JFK\",\"BOS\",-3.00,-7.00,0.00,\"\",0.00,59.00,40.00,187.00,,,,,,\n2015,5,31,\"AA\",\"143\",\"JFK\",\"BOS\",-2.00,13.00,0.00,\"\",0.00,78.00,44.00,187.00,,,,,,\n2015,5,1,\"AA\",\"185\",\"JFK\",\"LAX\",-1.00,-5.00,0.00,\"\",0.00,371.00,318.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"185\",\"JFK\",\"LAX\",-3.00,-24.00,0.00,\"\",0.00,354.00,321.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"185\",\"JFK\",\"LAX\",-5.00,-25.00,0.00,\"\",0.00,355.00,323.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"185\",\"JFK\",\"LAX\",-7.00,-6.00,0.00,\"\",0.00,376.00,325.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"185\",\"JFK\",\"LAX\",70.00,46.00,0.00,\"\",0.00,351.00,317.00,2475.00,46.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"AA\",\"185\",\"JFK\",\"LAX\",-7.00,-13.00,0.00,\"\",0.00,369.00,345.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"185\",\"JFK\",\"LAX\",-3.00,-2.00,0.00,\"\",0.00,376.00,343.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"185\",\"JFK\",\"LAX\",0.00,-23.00,0.00,\"\",0.00,352.00,325.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"185\",\"JFK\",\"LAX\",-2.00,-41.00,0.00,\"\",0.00,336.00,307.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"185\",\"JFK\",\"LAX\",-3.00,-22.00,0.00,\"\",0.00,356.00,337.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"185\",\"JFK\",\"LAX\",-7.00,-10.00,0.00,\"\",0.00,372.00,342.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"185\",\"JFK\",\"LAX\",2.00,-23.00,0.00,\"\",0.00,350.00,324.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"185\",\"JFK\",\"LAX\",-5.00,-37.00,0.00,\"\",0.00,343.00,309.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"185\",\"JFK\",\"LAX\",-6.00,-22.00,0.00,\"\",0.00,359.00,332.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"185\",\"JFK\",\"LAX\",-8.00,-18.00,0.00,\"\",0.00,365.00,340.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"185\",\"JFK\",\"LAX\",-2.00,-20.00,0.00,\"\",0.00,357.00,329.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"185\",\"JFK\",\"LAX\",-4.00,-14.00,0.00,\"\",0.00,365.00,329.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"185\",\"JFK\",\"LAX\",50.00,100.00,0.00,\"\",0.00,425.00,365.00,2475.00,10.00,0.00,50.00,0.00,40.00,\n2015,5,19,\"AA\",\"185\",\"JFK\",\"LAX\",1.00,21.00,0.00,\"\",0.00,395.00,348.00,2475.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,20,\"AA\",\"185\",\"JFK\",\"LAX\",-7.00,-23.00,0.00,\"\",0.00,359.00,333.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"185\",\"JFK\",\"LAX\",5.00,-6.00,0.00,\"\",0.00,364.00,339.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"185\",\"JFK\",\"LAX\",-4.00,-9.00,0.00,\"\",0.00,370.00,331.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"185\",\"JFK\",\"LAX\",-3.00,-15.00,0.00,\"\",0.00,363.00,323.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"185\",\"JFK\",\"LAX\",-4.00,-20.00,0.00,\"\",0.00,359.00,328.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"185\",\"JFK\",\"LAX\",69.00,,0.00,\"\",1.00,,,2475.00,,,,,,\n2015,5,28,\"AA\",\"185\",\"JFK\",\"LAX\",-4.00,-14.00,0.00,\"\",0.00,365.00,330.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"185\",\"JFK\",\"LAX\",-5.00,-9.00,0.00,\"\",0.00,371.00,334.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"185\",\"JFK\",\"LAX\",-1.00,-10.00,0.00,\"\",0.00,366.00,325.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"185\",\"JFK\",\"LAX\",44.00,144.00,0.00,\"\",0.00,475.00,361.00,2475.00,0.00,17.00,100.00,0.00,27.00,\n2015,5,7,\"AA\",\"198\",\"BOS\",\"JFK\",221.00,224.00,0.00,\"\",0.00,87.00,47.00,187.00,42.00,0.00,3.00,0.00,179.00,\n2015,5,8,\"AA\",\"198\",\"BOS\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,64.00,49.00,187.00,,,,,,\n2015,5,9,\"AA\",\"198\",\"BOS\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,67.00,43.00,187.00,,,,,,\n2015,5,10,\"AA\",\"198\",\"BOS\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,70.00,45.00,187.00,,,,,,\n2015,5,11,\"AA\",\"198\",\"BOS\",\"JFK\",-1.00,3.00,0.00,\"\",0.00,88.00,47.00,187.00,,,,,,\n2015,5,12,\"AA\",\"198\",\"BOS\",\"JFK\",71.00,86.00,0.00,\"\",0.00,99.00,46.00,187.00,0.00,0.00,86.00,0.00,0.00,\n2015,5,13,\"AA\",\"198\",\"BOS\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,77.00,47.00,187.00,,,,,,\n2015,5,14,\"AA\",\"198\",\"BOS\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,77.00,37.00,187.00,,,,,,\n2015,5,15,\"AA\",\"198\",\"BOS\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,68.00,42.00,187.00,,,,,,\n2015,5,16,\"AA\",\"198\",\"BOS\",\"JFK\",-11.00,-15.00,0.00,\"\",0.00,80.00,39.00,187.00,,,,,,\n2015,5,17,\"AA\",\"198\",\"BOS\",\"JFK\",4.00,2.00,0.00,\"\",0.00,82.00,49.00,187.00,,,,,,\n2015,5,18,\"AA\",\"198\",\"BOS\",\"JFK\",78.00,86.00,0.00,\"\",0.00,92.00,50.00,187.00,0.00,0.00,68.00,0.00,18.00,\n2015,5,19,\"AA\",\"198\",\"BOS\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,65.00,43.00,187.00,,,,,,\n2015,5,20,\"AA\",\"198\",\"BOS\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,66.00,40.00,187.00,,,,,,\n2015,5,21,\"AA\",\"198\",\"BOS\",\"JFK\",217.00,231.00,0.00,\"\",0.00,98.00,62.00,187.00,0.00,0.00,14.00,0.00,217.00,\n2015,5,22,\"AA\",\"198\",\"BOS\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,69.00,43.00,187.00,,,,,,\n2015,5,23,\"AA\",\"198\",\"BOS\",\"JFK\",-9.00,31.00,0.00,\"\",0.00,124.00,52.00,187.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,24,\"AA\",\"198\",\"BOS\",\"JFK\",-10.00,-25.00,0.00,\"\",0.00,69.00,43.00,187.00,,,,,,\n2015,5,25,\"AA\",\"198\",\"BOS\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,81.00,43.00,187.00,,,,,,\n2015,5,26,\"AA\",\"198\",\"BOS\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,77.00,40.00,187.00,,,,,,\n2015,5,27,\"AA\",\"198\",\"BOS\",\"JFK\",71.00,64.00,0.00,\"\",0.00,77.00,49.00,187.00,0.00,0.00,30.00,0.00,34.00,\n2015,5,28,\"AA\",\"198\",\"BOS\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,74.00,43.00,187.00,,,,,,\n2015,5,29,\"AA\",\"198\",\"BOS\",\"JFK\",-9.00,-14.00,0.00,\"\",0.00,79.00,44.00,187.00,,,,,,\n2015,5,30,\"AA\",\"198\",\"BOS\",\"JFK\",-9.00,-17.00,0.00,\"\",0.00,76.00,40.00,187.00,,,,,,\n2015,5,31,\"AA\",\"198\",\"BOS\",\"JFK\",90.00,82.00,0.00,\"\",0.00,76.00,49.00,187.00,0.00,0.00,82.00,0.00,0.00,\n2015,5,1,\"AA\",\"198\",\"ORD\",\"JFK\",3.00,-4.00,0.00,\"\",0.00,144.00,108.00,740.00,,,,,,\n2015,5,2,\"AA\",\"198\",\"ORD\",\"JFK\",65.00,56.00,0.00,\"\",0.00,142.00,106.00,740.00,0.00,0.00,0.00,0.00,56.00,\n2015,5,3,\"AA\",\"198\",\"ORD\",\"JFK\",0.00,-22.00,0.00,\"\",0.00,129.00,105.00,740.00,,,,,,\n2015,5,4,\"AA\",\"198\",\"ORD\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,129.00,104.00,740.00,,,,,,\n2015,5,5,\"AA\",\"198\",\"ORD\",\"JFK\",5.00,-13.00,0.00,\"\",0.00,133.00,101.00,740.00,,,,,,\n2015,5,6,\"AA\",\"198\",\"ORD\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,144.00,105.00,740.00,,,,,,\n2015,5,7,\"AA\",\"199\",\"JFK\",\"BOS\",12.00,-3.00,0.00,\"\",0.00,65.00,40.00,187.00,,,,,,\n2015,5,8,\"AA\",\"199\",\"JFK\",\"BOS\",-7.00,-8.00,0.00,\"\",0.00,79.00,34.00,187.00,,,,,,\n2015,5,9,\"AA\",\"199\",\"JFK\",\"BOS\",-3.00,-22.00,0.00,\"\",0.00,61.00,35.00,187.00,,,,,,\n2015,5,10,\"AA\",\"199\",\"JFK\",\"BOS\",15.00,0.00,0.00,\"\",0.00,65.00,38.00,187.00,,,,,,\n2015,5,11,\"AA\",\"199\",\"JFK\",\"BOS\",-5.00,-14.00,0.00,\"\",0.00,71.00,31.00,187.00,,,,,,\n2015,5,12,\"AA\",\"199\",\"JFK\",\"BOS\",-6.00,-13.00,0.00,\"\",0.00,73.00,38.00,187.00,,,,,,\n2015,5,13,\"AA\",\"199\",\"JFK\",\"BOS\",-6.00,-26.00,0.00,\"\",0.00,60.00,38.00,187.00,,,,,,\n2015,5,14,\"AA\",\"199\",\"JFK\",\"BOS\",22.00,2.00,0.00,\"\",0.00,60.00,34.00,187.00,,,,,,\n2015,5,15,\"AA\",\"199\",\"JFK\",\"BOS\",-4.00,-20.00,0.00,\"\",0.00,64.00,33.00,187.00,,,,,,\n2015,5,16,\"AA\",\"199\",\"JFK\",\"BOS\",1.00,-13.00,0.00,\"\",0.00,66.00,40.00,187.00,,,,,,\n2015,5,17,\"AA\",\"199\",\"JFK\",\"BOS\",38.00,35.00,0.00,\"\",0.00,77.00,40.00,187.00,34.00,0.00,0.00,0.00,1.00,\n2015,5,18,\"AA\",\"199\",\"JFK\",\"BOS\",-5.00,-28.00,0.00,\"\",0.00,57.00,35.00,187.00,,,,,,\n2015,5,19,\"AA\",\"199\",\"JFK\",\"BOS\",-2.00,4.00,0.00,\"\",0.00,86.00,40.00,187.00,,,,,,\n2015,5,20,\"AA\",\"199\",\"JFK\",\"BOS\",7.00,-10.00,0.00,\"\",0.00,63.00,41.00,187.00,,,,,,\n2015,5,21,\"AA\",\"199\",\"JFK\",\"BOS\",1.00,-12.00,0.00,\"\",0.00,67.00,38.00,187.00,,,,,,\n2015,5,22,\"AA\",\"199\",\"JFK\",\"BOS\",52.00,32.00,0.00,\"\",0.00,60.00,40.00,187.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"AA\",\"199\",\"JFK\",\"BOS\",17.00,-2.00,0.00,\"\",0.00,61.00,38.00,187.00,,,,,,\n2015,5,24,\"AA\",\"199\",\"JFK\",\"BOS\",-8.00,-22.00,0.00,\"\",0.00,66.00,44.00,187.00,,,,,,\n2015,5,25,\"AA\",\"199\",\"JFK\",\"BOS\",-9.00,-15.00,0.00,\"\",0.00,74.00,44.00,187.00,,,,,,\n2015,5,26,\"AA\",\"199\",\"JFK\",\"BOS\",18.00,-6.00,0.00,\"\",0.00,56.00,37.00,187.00,,,,,,\n2015,5,27,\"AA\",\"199\",\"JFK\",\"BOS\",-2.00,0.00,0.00,\"\",0.00,82.00,40.00,187.00,,,,,,\n2015,5,28,\"AA\",\"199\",\"JFK\",\"BOS\",-3.00,-11.00,0.00,\"\",0.00,72.00,39.00,187.00,,,,,,\n2015,5,29,\"AA\",\"199\",\"JFK\",\"BOS\",-1.00,54.00,0.00,\"\",0.00,135.00,36.00,187.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,30,\"AA\",\"199\",\"JFK\",\"BOS\",-3.00,-6.00,0.00,\"\",0.00,77.00,38.00,187.00,,,,,,\n2015,5,31,\"AA\",\"199\",\"JFK\",\"BOS\",30.00,113.00,0.00,\"\",0.00,163.00,47.00,187.00,0.00,0.00,111.00,0.00,2.00,\n2015,5,1,\"AA\",\"199\",\"JFK\",\"ORD\",-6.00,-41.00,0.00,\"\",0.00,139.00,107.00,740.00,,,,,,\n2015,5,2,\"AA\",\"199\",\"JFK\",\"ORD\",57.00,16.00,0.00,\"\",0.00,133.00,111.00,740.00,1.00,0.00,0.00,0.00,15.00,\n2015,5,3,\"AA\",\"199\",\"JFK\",\"ORD\",0.00,-11.00,0.00,\"\",0.00,163.00,116.00,740.00,,,,,,\n2015,5,4,\"AA\",\"199\",\"JFK\",\"ORD\",-5.00,-5.00,0.00,\"\",0.00,174.00,125.00,740.00,,,,,,\n2015,5,5,\"AA\",\"199\",\"JFK\",\"ORD\",29.00,20.00,0.00,\"\",0.00,165.00,126.00,740.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,6,\"AA\",\"199\",\"JFK\",\"ORD\",-4.00,-15.00,0.00,\"\",0.00,163.00,121.00,740.00,,,,,,\n2015,5,7,\"AA\",\"200\",\"JFK\",\"MIA\",2.00,15.00,0.00,\"\",0.00,205.00,148.00,1089.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,8,\"AA\",\"200\",\"JFK\",\"MIA\",-2.00,-20.00,0.00,\"\",0.00,174.00,144.00,1089.00,,,,,,\n2015,5,9,\"AA\",\"200\",\"JFK\",\"MIA\",35.00,29.00,0.00,\"\",0.00,186.00,143.00,1089.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"AA\",\"200\",\"JFK\",\"MIA\",-4.00,0.00,0.00,\"\",0.00,196.00,161.00,1089.00,,,,,,\n2015,5,11,\"AA\",\"200\",\"JFK\",\"MIA\",-5.00,-11.00,0.00,\"\",0.00,186.00,153.00,1089.00,,,,,,\n2015,5,12,\"AA\",\"200\",\"JFK\",\"MIA\",48.00,36.00,0.00,\"\",0.00,180.00,146.00,1089.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"AA\",\"200\",\"JFK\",\"MIA\",0.00,15.00,0.00,\"\",0.00,207.00,160.00,1089.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,14,\"AA\",\"200\",\"JFK\",\"MIA\",-2.00,13.00,0.00,\"\",0.00,207.00,144.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"200\",\"JFK\",\"MIA\",2.00,5.00,0.00,\"\",0.00,195.00,151.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"200\",\"JFK\",\"MIA\",3.00,-10.00,0.00,\"\",0.00,179.00,149.00,1089.00,,,,,,\n2015,5,17,\"AA\",\"200\",\"JFK\",\"MIA\",-8.00,-10.00,0.00,\"\",0.00,190.00,144.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"200\",\"JFK\",\"MIA\",3.00,13.00,0.00,\"\",0.00,202.00,143.00,1089.00,,,,,,\n2015,5,19,\"AA\",\"200\",\"JFK\",\"MIA\",-3.00,0.00,0.00,\"\",0.00,195.00,151.00,1089.00,,,,,,\n2015,5,20,\"AA\",\"200\",\"JFK\",\"MIA\",-7.00,-8.00,0.00,\"\",0.00,191.00,146.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"200\",\"JFK\",\"MIA\",5.00,14.00,0.00,\"\",0.00,201.00,167.00,1089.00,,,,,,\n2015,5,22,\"AA\",\"200\",\"JFK\",\"MIA\",-1.00,6.00,0.00,\"\",0.00,199.00,149.00,1089.00,,,,,,\n2015,5,23,\"AA\",\"200\",\"JFK\",\"MIA\",-2.00,-17.00,0.00,\"\",0.00,177.00,143.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"200\",\"JFK\",\"MIA\",-4.00,-34.00,0.00,\"\",0.00,162.00,138.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"200\",\"JFK\",\"MIA\",-3.00,8.00,0.00,\"\",0.00,203.00,154.00,1089.00,,,,,,\n2015,5,26,\"AA\",\"200\",\"JFK\",\"MIA\",1.00,-2.00,0.00,\"\",0.00,189.00,143.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"200\",\"JFK\",\"MIA\",45.00,38.00,0.00,\"\",0.00,185.00,145.00,1089.00,38.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"AA\",\"200\",\"JFK\",\"MIA\",0.00,7.00,0.00,\"\",0.00,199.00,150.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"200\",\"JFK\",\"MIA\",185.00,163.00,0.00,\"\",0.00,170.00,136.00,1089.00,163.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"AA\",\"200\",\"JFK\",\"MIA\",-4.00,3.00,0.00,\"\",0.00,199.00,139.00,1089.00,,,,,,\n2015,5,31,\"AA\",\"200\",\"JFK\",\"MIA\",-5.00,-13.00,0.00,\"\",0.00,184.00,141.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"210\",\"LAS\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,293.00,271.00,2248.00,,,,,,\n2015,5,8,\"AA\",\"210\",\"LAS\",\"JFK\",138.00,111.00,0.00,\"\",0.00,278.00,259.00,2248.00,4.00,0.00,0.00,0.00,107.00,\n2015,5,9,\"AA\",\"210\",\"LAS\",\"JFK\",63.00,63.00,0.00,\"\",0.00,305.00,278.00,2248.00,63.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"AA\",\"210\",\"LAS\",\"JFK\",45.00,83.00,0.00,\"\",0.00,343.00,275.00,2248.00,45.00,0.00,38.00,0.00,0.00,\n2015,5,11,\"AA\",\"210\",\"LAS\",\"JFK\",5.00,-9.00,0.00,\"\",0.00,291.00,271.00,2248.00,,,,,,\n2015,5,12,\"AA\",\"210\",\"LAS\",\"JFK\",47.00,10.00,0.00,\"\",0.00,268.00,251.00,2248.00,,,,,,\n2015,5,13,\"AA\",\"210\",\"LAS\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,282.00,257.00,2248.00,,,,,,\n2015,5,14,\"AA\",\"210\",\"LAS\",\"JFK\",1.00,-7.00,0.00,\"\",0.00,297.00,271.00,2248.00,,,,,,\n2015,5,15,\"AA\",\"210\",\"LAS\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,293.00,268.00,2248.00,,,,,,\n2015,5,16,\"AA\",\"210\",\"LAS\",\"JFK\",22.00,6.00,0.00,\"\",0.00,289.00,268.00,2248.00,,,,,,\n2015,5,17,\"AA\",\"210\",\"LAS\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,296.00,272.00,2248.00,,,,,,\n2015,5,18,\"AA\",\"210\",\"LAS\",\"JFK\",-1.00,-10.00,0.00,\"\",0.00,296.00,273.00,2248.00,,,,,,\n2015,5,19,\"AA\",\"210\",\"LAS\",\"JFK\",0.00,-26.00,0.00,\"\",0.00,279.00,256.00,2248.00,,,,,,\n2015,5,20,\"AA\",\"210\",\"LAS\",\"JFK\",0.00,-36.00,0.00,\"\",0.00,269.00,247.00,2248.00,,,,,,\n2015,5,21,\"AA\",\"210\",\"LAS\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,286.00,262.00,2248.00,,,,,,\n2015,5,22,\"AA\",\"210\",\"LAS\",\"JFK\",-5.00,-38.00,0.00,\"\",0.00,272.00,256.00,2248.00,,,,,,\n2015,5,23,\"AA\",\"210\",\"LAS\",\"JFK\",,,1.00,\"A\",0.00,,,2248.00,,,,,,\n2015,5,24,\"AA\",\"210\",\"LAS\",\"JFK\",-5.00,-30.00,0.00,\"\",0.00,280.00,262.00,2248.00,,,,,,\n2015,5,25,\"AA\",\"210\",\"LAS\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,298.00,275.00,2248.00,,,,,,\n2015,5,26,\"AA\",\"210\",\"LAS\",\"JFK\",-1.00,-7.00,0.00,\"\",0.00,299.00,277.00,2248.00,,,,,,\n2015,5,27,\"AA\",\"210\",\"LAS\",\"JFK\",-6.00,2.00,0.00,\"\",0.00,313.00,279.00,2248.00,,,,,,\n2015,5,28,\"AA\",\"210\",\"LAS\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,291.00,266.00,2248.00,,,,,,\n2015,5,29,\"AA\",\"210\",\"LAS\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,293.00,273.00,2248.00,,,,,,\n2015,5,30,\"AA\",\"210\",\"LAS\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,294.00,272.00,2248.00,,,,,,\n2015,5,31,\"AA\",\"210\",\"LAS\",\"JFK\",0.00,21.00,0.00,\"\",0.00,326.00,303.00,2248.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,7,\"AA\",\"211\",\"JFK\",\"LAS\",-6.00,5.00,0.00,\"\",0.00,363.00,320.00,2248.00,,,,,,\n2015,5,8,\"AA\",\"211\",\"JFK\",\"LAS\",-4.00,12.00,0.00,\"\",0.00,368.00,311.00,2248.00,,,,,,\n2015,5,9,\"AA\",\"211\",\"JFK\",\"LAS\",-3.00,3.00,0.00,\"\",0.00,358.00,315.00,2248.00,,,,,,\n2015,5,10,\"AA\",\"211\",\"JFK\",\"LAS\",-2.00,3.00,0.00,\"\",0.00,357.00,310.00,2248.00,,,,,,\n2015,5,11,\"AA\",\"211\",\"JFK\",\"LAS\",-4.00,-14.00,0.00,\"\",0.00,342.00,308.00,2248.00,,,,,,\n2015,5,12,\"AA\",\"211\",\"JFK\",\"LAS\",-3.00,2.00,0.00,\"\",0.00,357.00,330.00,2248.00,,,,,,\n2015,5,13,\"AA\",\"211\",\"JFK\",\"LAS\",-3.00,-4.00,0.00,\"\",0.00,351.00,310.00,2248.00,,,,,,\n2015,5,14,\"AA\",\"211\",\"JFK\",\"LAS\",-2.00,-22.00,0.00,\"\",0.00,332.00,308.00,2248.00,,,,,,\n2015,5,15,\"AA\",\"211\",\"JFK\",\"LAS\",-1.00,-13.00,0.00,\"\",0.00,340.00,310.00,2248.00,,,,,,\n2015,5,16,\"AA\",\"211\",\"JFK\",\"LAS\",-3.00,-25.00,0.00,\"\",0.00,330.00,301.00,2248.00,,,,,,\n2015,5,17,\"AA\",\"211\",\"JFK\",\"LAS\",32.00,20.00,0.00,\"\",0.00,340.00,315.00,2248.00,0.00,0.00,18.00,0.00,2.00,\n2015,5,18,\"AA\",\"211\",\"JFK\",\"LAS\",91.00,131.00,0.00,\"\",0.00,392.00,308.00,2248.00,2.00,0.00,40.00,0.00,89.00,\n2015,5,19,\"AA\",\"211\",\"JFK\",\"LAS\",-5.00,11.00,0.00,\"\",0.00,368.00,333.00,2248.00,,,,,,\n2015,5,20,\"AA\",\"211\",\"JFK\",\"LAS\",8.00,8.00,0.00,\"\",0.00,352.00,315.00,2248.00,,,,,,\n2015,5,21,\"AA\",\"211\",\"JFK\",\"LAS\",-5.00,-10.00,0.00,\"\",0.00,347.00,319.00,2248.00,,,,,,\n2015,5,22,\"AA\",\"211\",\"JFK\",\"LAS\",10.00,33.00,0.00,\"\",0.00,375.00,339.00,2248.00,1.00,0.00,23.00,0.00,9.00,\n2015,5,23,\"AA\",\"211\",\"JFK\",\"LAS\",4.00,9.00,0.00,\"\",0.00,357.00,327.00,2248.00,,,,,,\n2015,5,24,\"AA\",\"211\",\"JFK\",\"LAS\",-2.00,-2.00,0.00,\"\",0.00,352.00,306.00,2248.00,,,,,,\n2015,5,25,\"AA\",\"211\",\"JFK\",\"LAS\",-3.00,7.00,0.00,\"\",0.00,362.00,310.00,2248.00,,,,,,\n2015,5,26,\"AA\",\"211\",\"JFK\",\"LAS\",-3.00,-19.00,0.00,\"\",0.00,336.00,300.00,2248.00,,,,,,\n2015,5,27,\"AA\",\"211\",\"JFK\",\"LAS\",-4.00,106.00,0.00,\"\",0.00,462.00,344.00,2248.00,0.00,0.00,106.00,0.00,0.00,\n2015,5,28,\"AA\",\"211\",\"JFK\",\"LAS\",-5.00,-5.00,0.00,\"\",0.00,352.00,309.00,2248.00,,,,,,\n2015,5,29,\"AA\",\"211\",\"JFK\",\"LAS\",-2.00,-7.00,0.00,\"\",0.00,347.00,312.00,2248.00,,,,,,\n2015,5,30,\"AA\",\"211\",\"JFK\",\"LAS\",-4.00,-17.00,0.00,\"\",0.00,339.00,291.00,2248.00,,,,,,\n2015,5,31,\"AA\",\"211\",\"JFK\",\"LAS\",-6.00,-5.00,0.00,\"\",0.00,353.00,297.00,2248.00,,,,,,\n2015,5,1,\"AA\",\"290\",\"AUS\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,212.00,192.00,1521.00,,,,,,\n2015,5,2,\"AA\",\"290\",\"AUS\",\"JFK\",-2.00,3.00,0.00,\"\",0.00,229.00,209.00,1521.00,,,,,,\n2015,5,3,\"AA\",\"290\",\"AUS\",\"JFK\",-2.00,-2.00,0.00,\"\",0.00,224.00,208.00,1521.00,,,,,,\n2015,5,4,\"AA\",\"290\",\"AUS\",\"JFK\",0.00,17.00,0.00,\"\",0.00,241.00,215.00,1521.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,5,\"AA\",\"290\",\"AUS\",\"JFK\",-9.00,-5.00,0.00,\"\",0.00,228.00,212.00,1521.00,,,,,,\n2015,5,6,\"AA\",\"290\",\"AUS\",\"JFK\",-10.00,-20.00,0.00,\"\",0.00,214.00,195.00,1521.00,,,,,,\n2015,5,7,\"AA\",\"290\",\"MCO\",\"JFK\",-5.00,-1.00,0.00,\"\",0.00,162.00,130.00,944.00,,,,,,\n2015,5,8,\"AA\",\"290\",\"MCO\",\"JFK\",-6.00,1.00,0.00,\"\",0.00,165.00,136.00,944.00,,,,,,\n2015,5,9,\"AA\",\"290\",\"MCO\",\"JFK\",-3.00,-1.00,0.00,\"\",0.00,160.00,137.00,944.00,,,,,,\n2015,5,10,\"AA\",\"290\",\"MCO\",\"JFK\",2.00,-2.00,0.00,\"\",0.00,154.00,133.00,944.00,,,,,,\n2015,5,11,\"AA\",\"290\",\"MCO\",\"JFK\",-6.00,3.00,0.00,\"\",0.00,167.00,139.00,944.00,,,,,,\n2015,5,12,\"AA\",\"290\",\"MCO\",\"JFK\",7.00,18.00,0.00,\"\",0.00,169.00,140.00,944.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,13,\"AA\",\"290\",\"MCO\",\"JFK\",-10.00,-22.00,0.00,\"\",0.00,146.00,127.00,944.00,,,,,,\n2015,5,14,\"AA\",\"290\",\"MCO\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,151.00,132.00,944.00,,,,,,\n2015,5,15,\"AA\",\"290\",\"MCO\",\"JFK\",3.00,28.00,0.00,\"\",0.00,183.00,126.00,944.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,16,\"AA\",\"290\",\"MCO\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,148.00,127.00,944.00,,,,,,\n2015,5,17,\"AA\",\"290\",\"MCO\",\"JFK\",-5.00,-7.00,0.00,\"\",0.00,156.00,134.00,944.00,,,,,,\n2015,5,18,\"AA\",\"290\",\"MCO\",\"JFK\",211.00,220.00,0.00,\"\",0.00,167.00,132.00,944.00,0.00,0.00,220.00,0.00,0.00,\n2015,5,19,\"AA\",\"290\",\"MCO\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,143.00,125.00,944.00,,,,,,\n2015,5,20,\"AA\",\"290\",\"MCO\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,147.00,126.00,944.00,,,,,,\n2015,5,21,\"AA\",\"290\",\"MCO\",\"JFK\",1.00,-7.00,0.00,\"\",0.00,150.00,123.00,944.00,,,,,,\n2015,5,22,\"AA\",\"290\",\"MCO\",\"JFK\",1.00,-17.00,0.00,\"\",0.00,140.00,118.00,944.00,,,,,,\n2015,5,23,\"AA\",\"290\",\"MCO\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,141.00,122.00,944.00,,,,,,\n2015,5,24,\"AA\",\"290\",\"MCO\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,145.00,127.00,944.00,,,,,,\n2015,5,25,\"AA\",\"290\",\"MCO\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,146.00,125.00,944.00,,,,,,\n2015,5,26,\"AA\",\"290\",\"MCO\",\"JFK\",20.00,6.00,0.00,\"\",0.00,144.00,125.00,944.00,,,,,,\n2015,5,27,\"AA\",\"290\",\"MCO\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,141.00,125.00,944.00,,,,,,\n2015,5,28,\"AA\",\"290\",\"MCO\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,149.00,123.00,944.00,,,,,,\n2015,5,29,\"AA\",\"290\",\"MCO\",\"JFK\",-7.00,-3.00,0.00,\"\",0.00,162.00,133.00,944.00,,,,,,\n2015,5,30,\"AA\",\"290\",\"MCO\",\"JFK\",-8.00,-11.00,0.00,\"\",0.00,155.00,132.00,944.00,,,,,,\n2015,5,31,\"AA\",\"290\",\"MCO\",\"JFK\",-9.00,-4.00,0.00,\"\",0.00,163.00,130.00,944.00,,,,,,\n2015,5,1,\"AA\",\"291\",\"JFK\",\"AUS\",24.00,-6.00,0.00,\"\",0.00,224.00,195.00,1521.00,,,,,,\n2015,5,2,\"AA\",\"291\",\"JFK\",\"AUS\",-7.00,-50.00,0.00,\"\",0.00,211.00,197.00,1521.00,,,,,,\n2015,5,3,\"AA\",\"291\",\"JFK\",\"AUS\",12.00,-10.00,0.00,\"\",0.00,232.00,201.00,1521.00,,,,,,\n2015,5,4,\"AA\",\"291\",\"JFK\",\"AUS\",23.00,-11.00,0.00,\"\",0.00,220.00,198.00,1521.00,,,,,,\n2015,5,5,\"AA\",\"291\",\"JFK\",\"AUS\",101.00,,0.00,\"\",1.00,,,1521.00,,,,,,\n2015,5,6,\"AA\",\"291\",\"JFK\",\"AUS\",2.00,-24.00,0.00,\"\",0.00,228.00,198.00,1521.00,,,,,,\n2015,5,7,\"AA\",\"291\",\"JFK\",\"MCO\",-6.00,-9.00,0.00,\"\",0.00,175.00,132.00,944.00,,,,,,\n2015,5,8,\"AA\",\"291\",\"JFK\",\"MCO\",-6.00,-32.00,0.00,\"\",0.00,152.00,129.00,944.00,,,,,,\n2015,5,9,\"AA\",\"291\",\"JFK\",\"MCO\",-4.00,-14.00,0.00,\"\",0.00,168.00,122.00,944.00,,,,,,\n2015,5,10,\"AA\",\"291\",\"JFK\",\"MCO\",-1.00,-29.00,0.00,\"\",0.00,150.00,125.00,944.00,,,,,,\n2015,5,11,\"AA\",\"291\",\"JFK\",\"MCO\",112.00,109.00,0.00,\"\",0.00,175.00,134.00,944.00,0.00,0.00,109.00,0.00,0.00,\n2015,5,12,\"AA\",\"291\",\"JFK\",\"MCO\",127.00,104.00,0.00,\"\",0.00,155.00,130.00,944.00,104.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"AA\",\"291\",\"JFK\",\"MCO\",-5.00,-10.00,0.00,\"\",0.00,173.00,133.00,944.00,,,,,,\n2015,5,14,\"AA\",\"291\",\"JFK\",\"MCO\",-7.00,-22.00,0.00,\"\",0.00,163.00,127.00,944.00,,,,,,\n2015,5,15,\"AA\",\"291\",\"JFK\",\"MCO\",-6.00,-17.00,0.00,\"\",0.00,167.00,138.00,944.00,,,,,,\n2015,5,16,\"AA\",\"291\",\"JFK\",\"MCO\",-6.00,-30.00,0.00,\"\",0.00,154.00,127.00,944.00,,,,,,\n2015,5,17,\"AA\",\"291\",\"JFK\",\"MCO\",-1.00,-24.00,0.00,\"\",0.00,155.00,129.00,944.00,,,,,,\n2015,5,18,\"AA\",\"291\",\"JFK\",\"MCO\",-2.00,-8.00,0.00,\"\",0.00,172.00,130.00,944.00,,,,,,\n2015,5,19,\"AA\",\"291\",\"JFK\",\"MCO\",-7.00,6.00,0.00,\"\",0.00,191.00,153.00,944.00,,,,,,\n2015,5,20,\"AA\",\"291\",\"JFK\",\"MCO\",1.00,-15.00,0.00,\"\",0.00,162.00,143.00,944.00,,,,,,\n2015,5,21,\"AA\",\"291\",\"JFK\",\"MCO\",-6.00,-16.00,0.00,\"\",0.00,168.00,140.00,944.00,,,,,,\n2015,5,22,\"AA\",\"291\",\"JFK\",\"MCO\",-2.00,-5.00,0.00,\"\",0.00,175.00,139.00,944.00,,,,,,\n2015,5,23,\"AA\",\"291\",\"JFK\",\"MCO\",34.00,32.00,0.00,\"\",0.00,176.00,131.00,944.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"AA\",\"291\",\"JFK\",\"MCO\",42.00,30.00,0.00,\"\",0.00,166.00,127.00,944.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"AA\",\"291\",\"JFK\",\"MCO\",66.00,47.00,0.00,\"\",0.00,159.00,127.00,944.00,47.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"AA\",\"291\",\"JFK\",\"MCO\",-3.00,-9.00,0.00,\"\",0.00,172.00,128.00,944.00,,,,,,\n2015,5,27,\"AA\",\"291\",\"JFK\",\"MCO\",0.00,-16.00,0.00,\"\",0.00,162.00,130.00,944.00,,,,,,\n2015,5,28,\"AA\",\"291\",\"JFK\",\"MCO\",-6.00,-28.00,0.00,\"\",0.00,156.00,134.00,944.00,,,,,,\n2015,5,29,\"AA\",\"291\",\"JFK\",\"MCO\",-4.00,-22.00,0.00,\"\",0.00,160.00,126.00,944.00,,,,,,\n2015,5,30,\"AA\",\"291\",\"JFK\",\"MCO\",-8.00,-31.00,0.00,\"\",0.00,155.00,126.00,944.00,,,,,,\n2015,5,31,\"AA\",\"291\",\"JFK\",\"MCO\",-3.00,-22.00,0.00,\"\",0.00,159.00,124.00,944.00,,,,,,\n2015,5,1,\"AA\",\"292\",\"LAX\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,327.00,304.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"292\",\"LAX\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,330.00,306.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"292\",\"LAX\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,334.00,306.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"292\",\"LAX\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,324.00,298.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"292\",\"LAX\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,320.00,296.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"292\",\"LAX\",\"JFK\",54.00,38.00,0.00,\"\",0.00,322.00,302.00,2475.00,38.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"AA\",\"292\",\"LAX\",\"JFK\",-6.00,-30.00,0.00,\"\",0.00,314.00,295.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"292\",\"LAX\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,317.00,292.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"292\",\"LAX\",\"JFK\",4.00,7.00,0.00,\"\",0.00,341.00,303.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"292\",\"LAX\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,331.00,301.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"292\",\"LAX\",\"JFK\",-8.00,-17.00,0.00,\"\",0.00,329.00,302.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"292\",\"LAX\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,334.00,309.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"292\",\"LAX\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,317.00,279.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"292\",\"LAX\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,320.00,295.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"292\",\"LAX\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,319.00,286.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"292\",\"LAX\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,324.00,301.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"292\",\"LAX\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,337.00,299.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"292\",\"LAX\",\"JFK\",8.00,-8.00,0.00,\"\",0.00,322.00,300.00,2475.00,,,,,,\n2015,5,19,\"AA\",\"292\",\"LAX\",\"JFK\",-2.00,-30.00,0.00,\"\",0.00,310.00,287.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"292\",\"LAX\",\"JFK\",-3.00,-41.00,0.00,\"\",0.00,300.00,277.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"292\",\"LAX\",\"JFK\",-5.00,-33.00,0.00,\"\",0.00,310.00,282.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"292\",\"LAX\",\"JFK\",-4.00,-31.00,0.00,\"\",0.00,311.00,292.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"292\",\"LAX\",\"JFK\",-4.00,-34.00,0.00,\"\",0.00,308.00,283.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"292\",\"LAX\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,328.00,300.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"292\",\"LAX\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,326.00,304.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"292\",\"LAX\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,318.00,292.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"292\",\"LAX\",\"JFK\",-7.00,-9.00,0.00,\"\",0.00,336.00,300.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"292\",\"LAX\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,324.00,301.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"292\",\"LAX\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,328.00,303.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"292\",\"LAX\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,334.00,308.00,2475.00,,,,,,\n2015,5,1,\"AA\",\"293\",\"JFK\",\"LAX\",-2.00,-34.00,0.00,\"\",0.00,350.00,320.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"293\",\"JFK\",\"LAX\",-7.00,-10.00,0.00,\"\",0.00,379.00,324.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"293\",\"JFK\",\"LAX\",-4.00,-47.00,0.00,\"\",0.00,339.00,316.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"293\",\"JFK\",\"LAX\",-6.00,-21.00,0.00,\"\",0.00,367.00,333.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"293\",\"JFK\",\"LAX\",-7.00,-41.00,0.00,\"\",0.00,348.00,307.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"293\",\"JFK\",\"LAX\",-6.00,-45.00,0.00,\"\",0.00,343.00,311.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"293\",\"JFK\",\"LAX\",-3.00,14.00,0.00,\"\",0.00,399.00,352.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"293\",\"JFK\",\"LAX\",15.00,-10.00,0.00,\"\",0.00,357.00,314.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"293\",\"JFK\",\"LAX\",-3.00,8.00,0.00,\"\",0.00,393.00,336.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"293\",\"JFK\",\"LAX\",-2.00,-1.00,0.00,\"\",0.00,383.00,336.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"293\",\"JFK\",\"LAX\",-4.00,-25.00,0.00,\"\",0.00,361.00,329.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"293\",\"JFK\",\"LAX\",-7.00,-10.00,0.00,\"\",0.00,379.00,325.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"293\",\"JFK\",\"LAX\",-4.00,-11.00,0.00,\"\",0.00,375.00,347.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"293\",\"JFK\",\"LAX\",-5.00,-4.00,0.00,\"\",0.00,383.00,337.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"293\",\"JFK\",\"LAX\",0.00,-12.00,0.00,\"\",0.00,370.00,338.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"293\",\"JFK\",\"LAX\",-5.00,-17.00,0.00,\"\",0.00,370.00,329.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"293\",\"JFK\",\"LAX\",50.00,83.00,0.00,\"\",0.00,415.00,347.00,2475.00,0.00,0.00,35.00,0.00,48.00,\n2015,5,19,\"AA\",\"293\",\"JFK\",\"LAX\",2.00,21.00,0.00,\"\",0.00,401.00,347.00,2475.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,20,\"AA\",\"293\",\"JFK\",\"LAX\",-6.00,-13.00,0.00,\"\",0.00,375.00,347.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"293\",\"JFK\",\"LAX\",-6.00,-12.00,0.00,\"\",0.00,376.00,337.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"293\",\"JFK\",\"LAX\",-3.00,-11.00,0.00,\"\",0.00,374.00,337.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"293\",\"JFK\",\"LAX\",-5.00,0.00,0.00,\"\",0.00,387.00,348.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"293\",\"JFK\",\"LAX\",-4.00,-9.00,0.00,\"\",0.00,377.00,333.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"293\",\"JFK\",\"LAX\",-6.00,-25.00,0.00,\"\",0.00,363.00,328.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"293\",\"JFK\",\"LAX\",-2.00,20.00,0.00,\"\",0.00,404.00,327.00,2475.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,28,\"AA\",\"293\",\"JFK\",\"LAX\",-2.00,-1.00,0.00,\"\",0.00,383.00,337.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"293\",\"JFK\",\"LAX\",0.00,-21.00,0.00,\"\",0.00,361.00,319.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"293\",\"JFK\",\"LAX\",106.00,145.00,0.00,\"\",0.00,421.00,339.00,2475.00,0.00,106.00,39.00,0.00,0.00,\n2015,5,3,\"AA\",\"171\",\"JFK\",\"LAX\",-5.00,-42.00,0.00,\"\",0.00,341.00,322.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"171\",\"JFK\",\"LAX\",-5.00,-38.00,0.00,\"\",0.00,345.00,320.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"171\",\"JFK\",\"LAX\",-6.00,-8.00,0.00,\"\",0.00,376.00,322.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"171\",\"JFK\",\"LAX\",-5.00,-6.00,0.00,\"\",0.00,377.00,336.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"171\",\"JFK\",\"LAX\",-1.00,-13.00,0.00,\"\",0.00,366.00,343.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"171\",\"JFK\",\"LAX\",-5.00,5.00,0.00,\"\",0.00,388.00,351.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"171\",\"JFK\",\"LAX\",0.00,-6.00,0.00,\"\",0.00,372.00,331.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"171\",\"JFK\",\"LAX\",14.00,-8.00,0.00,\"\",0.00,356.00,331.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"171\",\"JFK\",\"LAX\",-5.00,-29.00,0.00,\"\",0.00,354.00,328.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"171\",\"JFK\",\"LAX\",-3.00,-24.00,0.00,\"\",0.00,357.00,336.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"172\",\"LAX\",\"JFK\",41.00,33.00,0.00,\"\",0.00,336.00,308.00,2475.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"AA\",\"172\",\"LAX\",\"JFK\",-6.00,-32.00,0.00,\"\",0.00,318.00,296.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"172\",\"LAX\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,338.00,313.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"172\",\"LAX\",\"JFK\",-1.00,-29.00,0.00,\"\",0.00,316.00,294.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"172\",\"LAX\",\"JFK\",105.00,62.00,0.00,\"\",0.00,301.00,276.00,2475.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,13,\"AA\",\"172\",\"LAX\",\"JFK\",-8.00,-49.00,0.00,\"\",0.00,303.00,280.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"172\",\"LAX\",\"JFK\",11.00,-13.00,0.00,\"\",0.00,320.00,295.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"172\",\"LAX\",\"JFK\",139.00,123.00,0.00,\"\",0.00,328.00,294.00,2475.00,123.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"AA\",\"172\",\"LAX\",\"JFK\",35.00,93.00,0.00,\"\",0.00,402.00,293.00,2475.00,0.00,0.00,93.00,0.00,0.00,\n2015,5,22,\"AA\",\"172\",\"LAX\",\"JFK\",152.00,110.00,0.00,\"\",0.00,302.00,280.00,2475.00,110.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"AA\",\"172\",\"LAX\",\"JFK\",23.00,6.00,0.00,\"\",0.00,327.00,297.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"172\",\"LAX\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,334.00,303.00,2475.00,,,,,,\n2015,5,1,\"AA\",\"177\",\"JFK\",\"SFO\",9.00,-19.00,0.00,\"\",0.00,374.00,343.00,2586.00,,,,,,\n2015,5,3,\"AA\",\"177\",\"JFK\",\"SFO\",-6.00,-37.00,0.00,\"\",0.00,371.00,343.00,2586.00,,,,,,\n2015,5,4,\"AA\",\"177\",\"JFK\",\"SFO\",4.00,10.00,0.00,\"\",0.00,408.00,380.00,2586.00,,,,,,\n2015,5,5,\"AA\",\"177\",\"JFK\",\"SFO\",-10.00,-58.00,0.00,\"\",0.00,354.00,326.00,2586.00,,,,,,\n2015,5,6,\"AA\",\"177\",\"JFK\",\"SFO\",-4.00,-39.00,0.00,\"\",0.00,367.00,347.00,2586.00,,,,,,\n2015,5,7,\"AA\",\"177\",\"JFK\",\"SFO\",-1.00,-16.00,0.00,\"\",0.00,387.00,357.00,2586.00,,,,,,\n2015,5,8,\"AA\",\"177\",\"JFK\",\"SFO\",0.00,-5.00,0.00,\"\",0.00,397.00,358.00,2586.00,,,,,,\n2015,5,9,\"AA\",\"177\",\"JFK\",\"SFO\",-3.00,-29.00,0.00,\"\",0.00,376.00,359.00,2586.00,,,,,,\n2015,5,10,\"AA\",\"177\",\"JFK\",\"SFO\",7.00,31.00,0.00,\"\",0.00,426.00,387.00,2586.00,7.00,0.00,24.00,0.00,0.00,\n2015,5,11,\"AA\",\"177\",\"JFK\",\"SFO\",-5.00,-9.00,0.00,\"\",0.00,398.00,366.00,2586.00,,,,,,\n2015,5,12,\"AA\",\"177\",\"JFK\",\"SFO\",76.00,50.00,0.00,\"\",0.00,376.00,352.00,2586.00,47.00,0.00,0.00,0.00,3.00,\n2015,5,13,\"AA\",\"177\",\"JFK\",\"SFO\",-6.00,-35.00,0.00,\"\",0.00,373.00,342.00,2586.00,,,,,,\n2015,5,14,\"AA\",\"177\",\"JFK\",\"SFO\",-5.00,-11.00,0.00,\"\",0.00,396.00,355.00,2586.00,,,,,,\n2015,5,15,\"AA\",\"177\",\"JFK\",\"SFO\",29.00,41.00,0.00,\"\",0.00,414.00,374.00,2586.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,16,\"AA\",\"177\",\"JFK\",\"SFO\",-6.00,-22.00,0.00,\"\",0.00,386.00,358.00,2586.00,,,,,,\n2015,5,17,\"AA\",\"177\",\"JFK\",\"SFO\",56.00,44.00,0.00,\"\",0.00,390.00,360.00,2586.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"AA\",\"177\",\"JFK\",\"SFO\",19.00,47.00,0.00,\"\",0.00,430.00,382.00,2586.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,19,\"AA\",\"177\",\"JFK\",\"SFO\",30.00,60.00,0.00,\"\",0.00,432.00,379.00,2586.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,20,\"AA\",\"177\",\"JFK\",\"SFO\",-1.00,6.00,0.00,\"\",0.00,409.00,376.00,2586.00,,,,,,\n2015,5,21,\"AA\",\"177\",\"JFK\",\"SFO\",-3.00,-15.00,0.00,\"\",0.00,390.00,356.00,2586.00,,,,,,\n2015,5,23,\"AA\",\"177\",\"JFK\",\"SFO\",-3.00,-9.00,0.00,\"\",0.00,396.00,372.00,2586.00,,,,,,\n2015,5,25,\"AA\",\"177\",\"JFK\",\"SFO\",-7.00,-43.00,0.00,\"\",0.00,366.00,342.00,2586.00,,,,,,\n2015,5,26,\"AA\",\"177\",\"JFK\",\"SFO\",59.00,31.00,0.00,\"\",0.00,374.00,348.00,2586.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"AA\",\"177\",\"JFK\",\"SFO\",45.00,93.00,0.00,\"\",0.00,450.00,364.00,2586.00,45.00,0.00,48.00,0.00,0.00,\n2015,5,28,\"AA\",\"177\",\"JFK\",\"SFO\",-4.00,-48.00,0.00,\"\",0.00,358.00,338.00,2586.00,,,,,,\n2015,5,29,\"AA\",\"177\",\"JFK\",\"SFO\",-6.00,-15.00,0.00,\"\",0.00,393.00,361.00,2586.00,,,,,,\n2015,5,30,\"AA\",\"177\",\"JFK\",\"SFO\",-3.00,-10.00,0.00,\"\",0.00,395.00,356.00,2586.00,,,,,,\n2015,5,31,\"AA\",\"177\",\"JFK\",\"SFO\",188.00,268.00,0.00,\"\",0.00,482.00,372.00,2586.00,0.00,188.00,80.00,0.00,0.00,\n2015,5,1,\"AA\",\"178\",\"BOS\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,71.00,43.00,187.00,,,,,,\n2015,5,2,\"AA\",\"178\",\"BOS\",\"JFK\",-1.00,7.00,0.00,\"\",0.00,92.00,41.00,187.00,,,,,,\n2015,5,3,\"AA\",\"178\",\"BOS\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,64.00,41.00,187.00,,,,,,\n2015,5,4,\"AA\",\"178\",\"BOS\",\"JFK\",11.00,-4.00,0.00,\"\",0.00,69.00,47.00,187.00,,,,,,\n2015,5,5,\"AA\",\"178\",\"BOS\",\"JFK\",-10.00,-22.00,0.00,\"\",0.00,72.00,43.00,187.00,,,,,,\n2015,5,6,\"AA\",\"178\",\"BOS\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,76.00,43.00,187.00,,,,,,\n2015,5,1,\"AA\",\"178\",\"JFK\",\"BOS\",13.00,16.00,0.00,\"\",0.00,66.00,37.00,187.00,8.00,0.00,3.00,0.00,5.00,\n2015,5,2,\"AA\",\"178\",\"JFK\",\"BOS\",-5.00,-6.00,0.00,\"\",0.00,62.00,43.00,187.00,,,,,,\n2015,5,3,\"AA\",\"178\",\"JFK\",\"BOS\",-5.00,-5.00,0.00,\"\",0.00,63.00,33.00,187.00,,,,,,\n2015,5,4,\"AA\",\"178\",\"JFK\",\"BOS\",-10.00,14.00,0.00,\"\",0.00,87.00,39.00,187.00,,,,,,\n2015,5,5,\"AA\",\"178\",\"JFK\",\"BOS\",-9.00,-13.00,0.00,\"\",0.00,59.00,39.00,187.00,,,,,,\n2015,5,6,\"AA\",\"178\",\"JFK\",\"BOS\",-10.00,-16.00,0.00,\"\",0.00,57.00,39.00,187.00,,,,,,\n2015,5,2,\"AA\",\"179\",\"JFK\",\"SFO\",-7.00,-31.00,0.00,\"\",0.00,366.00,340.00,2586.00,,,,,,\n2015,5,3,\"AA\",\"179\",\"JFK\",\"SFO\",-6.00,-33.00,0.00,\"\",0.00,363.00,342.00,2586.00,,,,,,\n2015,5,4,\"AA\",\"179\",\"JFK\",\"SFO\",-4.00,-16.00,0.00,\"\",0.00,378.00,355.00,2586.00,,,,,,\n2015,5,6,\"AA\",\"179\",\"JFK\",\"SFO\",-2.00,-38.00,0.00,\"\",0.00,354.00,326.00,2586.00,,,,,,\n2015,5,7,\"AA\",\"179\",\"JFK\",\"SFO\",-3.00,-26.00,0.00,\"\",0.00,367.00,345.00,2586.00,,,,,,\n2015,5,8,\"AA\",\"179\",\"JFK\",\"SFO\",6.00,-27.00,0.00,\"\",0.00,357.00,333.00,2586.00,,,,,,\n2015,5,9,\"AA\",\"179\",\"JFK\",\"SFO\",-9.00,-36.00,0.00,\"\",0.00,363.00,329.00,2586.00,,,,,,\n2015,5,10,\"AA\",\"179\",\"JFK\",\"SFO\",-5.00,-37.00,0.00,\"\",0.00,358.00,337.00,2586.00,,,,,,\n2015,5,11,\"AA\",\"179\",\"JFK\",\"SFO\",-8.00,12.00,0.00,\"\",0.00,410.00,378.00,2586.00,,,,,,\n2015,5,12,\"AA\",\"179\",\"JFK\",\"SFO\",-9.00,-11.00,0.00,\"\",0.00,388.00,366.00,2586.00,,,,,,\n2015,5,13,\"AA\",\"179\",\"JFK\",\"SFO\",-3.00,-8.00,0.00,\"\",0.00,385.00,357.00,2586.00,,,,,,\n2015,5,14,\"AA\",\"179\",\"JFK\",\"SFO\",0.00,9.00,0.00,\"\",0.00,399.00,361.00,2586.00,,,,,,\n2015,5,15,\"AA\",\"179\",\"JFK\",\"SFO\",-7.00,-12.00,0.00,\"\",0.00,385.00,359.00,2586.00,,,,,,\n2015,5,16,\"AA\",\"179\",\"JFK\",\"SFO\",-1.00,-12.00,0.00,\"\",0.00,379.00,349.00,2586.00,,,,,,\n2015,5,17,\"AA\",\"179\",\"JFK\",\"SFO\",-8.00,-8.00,0.00,\"\",0.00,390.00,350.00,2586.00,,,,,,\n2015,5,18,\"AA\",\"179\",\"JFK\",\"SFO\",47.00,42.00,0.00,\"\",0.00,385.00,344.00,2586.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,19,\"AA\",\"179\",\"JFK\",\"SFO\",15.00,53.00,0.00,\"\",0.00,428.00,380.00,2586.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,20,\"AA\",\"179\",\"JFK\",\"SFO\",4.00,47.00,0.00,\"\",0.00,433.00,391.00,2586.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,21,\"AA\",\"179\",\"JFK\",\"SFO\",-2.00,11.00,0.00,\"\",0.00,403.00,371.00,2586.00,,,,,,\n2015,5,25,\"AA\",\"179\",\"JFK\",\"SFO\",-4.00,-26.00,0.00,\"\",0.00,368.00,340.00,2586.00,,,,,,\n2015,5,26,\"AA\",\"179\",\"JFK\",\"SFO\",8.00,-22.00,0.00,\"\",0.00,360.00,338.00,2586.00,,,,,,\n2015,5,27,\"AA\",\"179\",\"JFK\",\"SFO\",-4.00,-20.00,0.00,\"\",0.00,374.00,342.00,2586.00,,,,,,\n2015,5,28,\"AA\",\"179\",\"JFK\",\"SFO\",-3.00,-6.00,0.00,\"\",0.00,387.00,350.00,2586.00,,,,,,\n2015,5,29,\"AA\",\"179\",\"JFK\",\"SFO\",-5.00,-16.00,0.00,\"\",0.00,379.00,349.00,2586.00,,,,,,\n2015,5,30,\"AA\",\"179\",\"JFK\",\"SFO\",-6.00,-46.00,0.00,\"\",0.00,350.00,332.00,2586.00,,,,,,\n2015,5,31,\"AA\",\"179\",\"JFK\",\"SFO\",35.00,11.00,0.00,\"\",0.00,366.00,337.00,2586.00,,,,,,\n2015,5,1,\"AA\",\"180\",\"LAX\",\"JFK\",-3.00,10.00,0.00,\"\",0.00,340.00,300.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"180\",\"LAX\",\"JFK\",25.00,27.00,0.00,\"\",0.00,329.00,296.00,2475.00,25.00,0.00,2.00,0.00,0.00,\n2015,5,3,\"AA\",\"180\",\"LAX\",\"JFK\",18.00,35.00,0.00,\"\",0.00,344.00,305.00,2475.00,6.00,0.00,17.00,0.00,12.00,\n2015,5,4,\"AA\",\"180\",\"LAX\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,316.00,294.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"180\",\"LAX\",\"JFK\",13.00,26.00,0.00,\"\",0.00,340.00,305.00,2475.00,13.00,0.00,13.00,0.00,0.00,\n2015,5,6,\"AA\",\"180\",\"LAX\",\"JFK\",-5.00,5.00,0.00,\"\",0.00,337.00,306.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"180\",\"LAX\",\"JFK\",0.00,6.00,0.00,\"\",0.00,333.00,305.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"180\",\"LAX\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,331.00,305.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"180\",\"LAX\",\"JFK\",25.00,25.00,0.00,\"\",0.00,327.00,299.00,2475.00,1.00,0.00,0.00,0.00,24.00,\n2015,5,11,\"AA\",\"180\",\"LAX\",\"JFK\",0.00,3.00,0.00,\"\",0.00,330.00,301.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"180\",\"LAX\",\"JFK\",-5.00,-40.00,0.00,\"\",0.00,292.00,268.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"180\",\"LAX\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,306.00,280.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"180\",\"LAX\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,308.00,288.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"180\",\"LAX\",\"JFK\",-1.00,-26.00,0.00,\"\",0.00,302.00,284.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"180\",\"LAX\",\"JFK\",1.00,-9.00,0.00,\"\",0.00,317.00,291.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"180\",\"LAX\",\"JFK\",21.00,47.00,0.00,\"\",0.00,353.00,333.00,2475.00,9.00,0.00,26.00,0.00,12.00,\n2015,5,19,\"AA\",\"180\",\"LAX\",\"JFK\",5.00,-28.00,0.00,\"\",0.00,294.00,270.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"180\",\"LAX\",\"JFK\",1.00,-44.00,0.00,\"\",0.00,282.00,265.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"180\",\"LAX\",\"JFK\",2.00,-29.00,0.00,\"\",0.00,296.00,277.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"180\",\"LAX\",\"JFK\",18.00,-5.00,0.00,\"\",0.00,304.00,283.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"180\",\"LAX\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,320.00,293.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"180\",\"LAX\",\"JFK\",36.00,37.00,0.00,\"\",0.00,328.00,297.00,2475.00,17.00,0.00,1.00,0.00,19.00,\n2015,5,27,\"AA\",\"180\",\"LAX\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,314.00,290.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"180\",\"LAX\",\"JFK\",-2.00,18.00,0.00,\"\",0.00,347.00,313.00,2475.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,29,\"AA\",\"180\",\"LAX\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,316.00,296.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"180\",\"LAX\",\"JFK\",1.00,23.00,0.00,\"\",0.00,349.00,330.00,2475.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,1,\"AA\",\"181\",\"JFK\",\"LAX\",-4.00,-28.00,0.00,\"\",0.00,362.00,320.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"181\",\"JFK\",\"LAX\",-4.00,-56.00,0.00,\"\",0.00,334.00,316.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"181\",\"JFK\",\"LAX\",-5.00,-25.00,0.00,\"\",0.00,366.00,333.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"181\",\"JFK\",\"LAX\",-3.00,-39.00,0.00,\"\",0.00,350.00,321.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"181\",\"JFK\",\"LAX\",-3.00,-37.00,0.00,\"\",0.00,352.00,327.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"181\",\"JFK\",\"LAX\",-4.00,-27.00,0.00,\"\",0.00,363.00,328.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"181\",\"JFK\",\"LAX\",2.00,-5.00,0.00,\"\",0.00,379.00,351.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"181\",\"JFK\",\"LAX\",1.00,7.00,0.00,\"\",0.00,392.00,345.00,2475.00,,,,,,\n2015,5,9,\"AA\",\"181\",\"JFK\",\"LAX\",-3.00,-36.00,0.00,\"\",0.00,353.00,311.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"181\",\"JFK\",\"LAX\",-4.00,1.00,0.00,\"\",0.00,391.00,338.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"181\",\"JFK\",\"LAX\",-3.00,-26.00,0.00,\"\",0.00,363.00,330.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"181\",\"JFK\",\"LAX\",-4.00,-11.00,0.00,\"\",0.00,379.00,359.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"181\",\"JFK\",\"LAX\",0.00,13.00,0.00,\"\",0.00,399.00,343.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"181\",\"JFK\",\"LAX\",-3.00,-1.00,0.00,\"\",0.00,388.00,336.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"181\",\"JFK\",\"LAX\",-3.00,-15.00,0.00,\"\",0.00,374.00,343.00,2475.00,,,,,,\n2015,5,16,\"AA\",\"181\",\"JFK\",\"LAX\",-1.00,-16.00,0.00,\"\",0.00,371.00,340.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"181\",\"JFK\",\"LAX\",-1.00,-28.00,0.00,\"\",0.00,359.00,331.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"181\",\"JFK\",\"LAX\",18.00,26.00,0.00,\"\",0.00,394.00,342.00,2475.00,18.00,0.00,8.00,0.00,0.00,\n2015,5,19,\"AA\",\"181\",\"JFK\",\"LAX\",3.00,15.00,0.00,\"\",0.00,398.00,349.00,2475.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,20,\"AA\",\"181\",\"JFK\",\"LAX\",-7.00,9.00,0.00,\"\",0.00,402.00,353.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"181\",\"JFK\",\"LAX\",-2.00,0.00,0.00,\"\",0.00,388.00,345.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"181\",\"JFK\",\"LAX\",0.00,-21.00,0.00,\"\",0.00,365.00,340.00,2475.00,,,,,,\n2015,5,23,\"AA\",\"181\",\"JFK\",\"LAX\",-4.00,-17.00,0.00,\"\",0.00,373.00,331.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"181\",\"JFK\",\"LAX\",-3.00,-31.00,0.00,\"\",0.00,358.00,326.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"181\",\"JFK\",\"LAX\",32.00,11.00,0.00,\"\",0.00,365.00,333.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"181\",\"JFK\",\"LAX\",-4.00,-25.00,0.00,\"\",0.00,365.00,334.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"181\",\"JFK\",\"LAX\",14.00,34.00,0.00,\"\",0.00,406.00,351.00,2475.00,14.00,0.00,20.00,0.00,0.00,\n2015,5,28,\"AA\",\"181\",\"JFK\",\"LAX\",94.00,69.00,0.00,\"\",0.00,361.00,329.00,2475.00,69.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"AA\",\"181\",\"JFK\",\"LAX\",0.00,-14.00,0.00,\"\",0.00,372.00,331.00,2475.00,,,,,,\n2015,5,30,\"AA\",\"181\",\"JFK\",\"LAX\",-1.00,-34.00,0.00,\"\",0.00,353.00,315.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"181\",\"JFK\",\"LAX\",-1.00,22.00,0.00,\"\",0.00,409.00,328.00,2475.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,1,\"AA\",\"255\",\"JFK\",\"LAX\",-5.00,-24.00,0.00,\"\",0.00,349.00,316.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"255\",\"JFK\",\"LAX\",-8.00,-24.00,0.00,\"\",0.00,352.00,315.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"255\",\"JFK\",\"LAX\",-1.00,-6.00,0.00,\"\",0.00,363.00,323.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"255\",\"JFK\",\"LAX\",-4.00,-2.00,0.00,\"\",0.00,370.00,323.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"255\",\"JFK\",\"LAX\",-5.00,-26.00,0.00,\"\",0.00,347.00,318.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"255\",\"JFK\",\"LAX\",-8.00,-26.00,0.00,\"\",0.00,350.00,314.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"255\",\"JFK\",\"LAX\",-6.00,-14.00,0.00,\"\",0.00,360.00,326.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"255\",\"JFK\",\"LAX\",5.00,11.00,0.00,\"\",0.00,374.00,333.00,2475.00,,,,,,\n2015,5,10,\"AA\",\"255\",\"JFK\",\"LAX\",-5.00,-8.00,0.00,\"\",0.00,365.00,328.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"255\",\"JFK\",\"LAX\",-8.00,-3.00,0.00,\"\",0.00,373.00,339.00,2475.00,,,,,,\n2015,5,12,\"AA\",\"255\",\"JFK\",\"LAX\",-4.00,8.00,0.00,\"\",0.00,380.00,345.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"255\",\"JFK\",\"LAX\",-9.00,-7.00,0.00,\"\",0.00,370.00,330.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"255\",\"JFK\",\"LAX\",-4.00,-11.00,0.00,\"\",0.00,361.00,325.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"255\",\"JFK\",\"LAX\",-4.00,-5.00,0.00,\"\",0.00,367.00,325.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"255\",\"JFK\",\"LAX\",-8.00,18.00,0.00,\"\",0.00,394.00,333.00,2475.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,19,\"AA\",\"255\",\"JFK\",\"LAX\",-4.00,-5.00,0.00,\"\",0.00,367.00,333.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"255\",\"JFK\",\"LAX\",-8.00,6.00,0.00,\"\",0.00,382.00,350.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"255\",\"JFK\",\"LAX\",-8.00,-4.00,0.00,\"\",0.00,372.00,347.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"255\",\"JFK\",\"LAX\",-4.00,55.00,0.00,\"\",0.00,427.00,364.00,2475.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,23,\"AA\",\"255\",\"JFK\",\"LAX\",-7.00,-18.00,0.00,\"\",0.00,357.00,332.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"255\",\"JFK\",\"LAX\",-4.00,-15.00,0.00,\"\",0.00,357.00,326.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"255\",\"JFK\",\"LAX\",-6.00,-39.00,0.00,\"\",0.00,335.00,318.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"255\",\"JFK\",\"LAX\",-3.00,-2.00,0.00,\"\",0.00,369.00,325.00,2475.00,,,,,,\n2015,5,28,\"AA\",\"255\",\"JFK\",\"LAX\",-4.00,3.00,0.00,\"\",0.00,375.00,340.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"255\",\"JFK\",\"LAX\",-7.00,-26.00,0.00,\"\",0.00,349.00,322.00,2475.00,,,,,,\n2015,5,1,\"AA\",\"256\",\"LAX\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,323.00,301.00,2475.00,,,,,,\n2015,5,2,\"AA\",\"256\",\"LAX\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,337.00,308.00,2475.00,,,,,,\n2015,5,3,\"AA\",\"256\",\"LAX\",\"JFK\",3.00,-8.00,0.00,\"\",0.00,331.00,304.00,2475.00,,,,,,\n2015,5,4,\"AA\",\"256\",\"LAX\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,341.00,309.00,2475.00,,,,,,\n2015,5,5,\"AA\",\"256\",\"LAX\",\"JFK\",-6.00,-30.00,0.00,\"\",0.00,318.00,295.00,2475.00,,,,,,\n2015,5,6,\"AA\",\"256\",\"LAX\",\"JFK\",6.00,12.00,0.00,\"\",0.00,348.00,313.00,2475.00,,,,,,\n2015,5,7,\"AA\",\"256\",\"LAX\",\"JFK\",-2.00,-31.00,0.00,\"\",0.00,313.00,291.00,2475.00,,,,,,\n2015,5,8,\"AA\",\"256\",\"LAX\",\"JFK\",-8.00,48.00,0.00,\"\",0.00,398.00,336.00,2475.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,10,\"AA\",\"256\",\"LAX\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,329.00,303.00,2475.00,,,,,,\n2015,5,11,\"AA\",\"256\",\"LAX\",\"JFK\",97.00,100.00,0.00,\"\",0.00,345.00,323.00,2475.00,0.00,0.00,100.00,0.00,0.00,\n2015,5,12,\"AA\",\"256\",\"LAX\",\"JFK\",-3.00,-39.00,0.00,\"\",0.00,306.00,270.00,2475.00,,,,,,\n2015,5,13,\"AA\",\"256\",\"LAX\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,331.00,287.00,2475.00,,,,,,\n2015,5,14,\"AA\",\"256\",\"LAX\",\"JFK\",3.00,2.00,0.00,\"\",0.00,341.00,304.00,2475.00,,,,,,\n2015,5,15,\"AA\",\"256\",\"LAX\",\"JFK\",-2.00,-31.00,0.00,\"\",0.00,313.00,290.00,2475.00,,,,,,\n2015,5,17,\"AA\",\"256\",\"LAX\",\"JFK\",1.00,-22.00,0.00,\"\",0.00,319.00,294.00,2475.00,,,,,,\n2015,5,18,\"AA\",\"256\",\"LAX\",\"JFK\",34.00,17.00,0.00,\"\",0.00,325.00,294.00,2475.00,0.00,0.00,16.00,0.00,1.00,\n2015,5,19,\"AA\",\"256\",\"LAX\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,325.00,296.00,2475.00,,,,,,\n2015,5,20,\"AA\",\"256\",\"LAX\",\"JFK\",0.00,-52.00,0.00,\"\",0.00,290.00,270.00,2475.00,,,,,,\n2015,5,21,\"AA\",\"256\",\"LAX\",\"JFK\",-2.00,-28.00,0.00,\"\",0.00,316.00,292.00,2475.00,,,,,,\n2015,5,22,\"AA\",\"256\",\"LAX\",\"JFK\",7.00,-28.00,0.00,\"\",0.00,307.00,284.00,2475.00,,,,,,\n2015,5,24,\"AA\",\"256\",\"LAX\",\"JFK\",-5.00,-37.00,0.00,\"\",0.00,310.00,288.00,2475.00,,,,,,\n2015,5,25,\"AA\",\"256\",\"LAX\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,322.00,295.00,2475.00,,,,,,\n2015,5,26,\"AA\",\"256\",\"LAX\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,335.00,301.00,2475.00,,,,,,\n2015,5,27,\"AA\",\"256\",\"LAX\",\"JFK\",87.00,76.00,0.00,\"\",0.00,331.00,304.00,2475.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,28,\"AA\",\"256\",\"LAX\",\"JFK\",-8.00,-8.00,0.00,\"\",0.00,342.00,311.00,2475.00,,,,,,\n2015,5,29,\"AA\",\"256\",\"LAX\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,331.00,304.00,2475.00,,,,,,\n2015,5,31,\"AA\",\"256\",\"LAX\",\"JFK\",17.00,52.00,0.00,\"\",0.00,377.00,320.00,2475.00,0.00,0.00,52.00,0.00,0.00,\n2015,5,1,\"AA\",\"276\",\"ORD\",\"LGA\",-8.00,-5.00,0.00,\"\",0.00,128.00,102.00,733.00,,,,,,\n2015,5,4,\"AA\",\"276\",\"ORD\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,117.00,102.00,733.00,,,,,,\n2015,5,5,\"AA\",\"276\",\"ORD\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,117.00,97.00,733.00,,,,,,\n2015,5,6,\"AA\",\"276\",\"ORD\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,124.00,103.00,733.00,,,,,,\n2015,5,7,\"AA\",\"276\",\"ORD\",\"LGA\",-9.00,-19.00,0.00,\"\",0.00,115.00,103.00,733.00,,,,,,\n2015,5,8,\"AA\",\"276\",\"ORD\",\"LGA\",-9.00,6.00,0.00,\"\",0.00,140.00,122.00,733.00,,,,,,\n2015,5,11,\"AA\",\"276\",\"ORD\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,117.00,103.00,733.00,,,,,,\n2015,5,12,\"AA\",\"276\",\"ORD\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,111.00,95.00,733.00,,,,,,\n2015,5,13,\"AA\",\"276\",\"ORD\",\"LGA\",-8.00,-24.00,0.00,\"\",0.00,109.00,92.00,733.00,,,,,,\n2015,5,14,\"AA\",\"276\",\"ORD\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,112.00,93.00,733.00,,,,,,\n2015,5,15,\"AA\",\"276\",\"ORD\",\"LGA\",17.00,0.00,0.00,\"\",0.00,108.00,96.00,733.00,,,,,,\n2015,5,18,\"AA\",\"276\",\"ORD\",\"LGA\",181.00,227.00,0.00,\"\",0.00,171.00,130.00,733.00,0.00,0.00,227.00,0.00,0.00,\n2015,5,19,\"AA\",\"276\",\"ORD\",\"LGA\",38.00,31.00,0.00,\"\",0.00,118.00,99.00,733.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,20,\"AA\",\"276\",\"ORD\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,112.00,90.00,733.00,,,,,,\n2015,5,21,\"AA\",\"276\",\"ORD\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,116.00,97.00,733.00,,,,,,\n2015,5,22,\"AA\",\"276\",\"ORD\",\"LGA\",2.00,-2.00,0.00,\"\",0.00,121.00,89.00,733.00,,,,,,\n2015,5,26,\"AA\",\"276\",\"ORD\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,118.00,102.00,733.00,,,,,,\n2015,5,27,\"AA\",\"276\",\"ORD\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,124.00,110.00,733.00,,,,,,\n2015,5,28,\"AA\",\"276\",\"ORD\",\"LGA\",-8.00,-18.00,0.00,\"\",0.00,115.00,99.00,733.00,,,,,,\n2015,5,29,\"AA\",\"276\",\"ORD\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,113.00,99.00,733.00,,,,,,\n2015,5,1,\"AA\",\"307\",\"LGA\",\"ORD\",-6.00,-25.00,0.00,\"\",0.00,142.00,105.00,733.00,,,,,,\n2015,5,3,\"AA\",\"307\",\"LGA\",\"ORD\",-8.00,-39.00,0.00,\"\",0.00,130.00,110.00,733.00,,,,,,\n2015,5,4,\"AA\",\"307\",\"LGA\",\"ORD\",-7.00,-23.00,0.00,\"\",0.00,145.00,108.00,733.00,,,,,,\n2015,5,5,\"AA\",\"307\",\"LGA\",\"ORD\",-8.00,-19.00,0.00,\"\",0.00,150.00,120.00,733.00,,,,,,\n2015,5,6,\"AA\",\"307\",\"LGA\",\"ORD\",-10.00,-12.00,0.00,\"\",0.00,159.00,113.00,733.00,,,,,,\n2015,5,7,\"AA\",\"307\",\"LGA\",\"ORD\",-7.00,-15.00,0.00,\"\",0.00,153.00,110.00,733.00,,,,,,\n2015,5,8,\"AA\",\"307\",\"LGA\",\"ORD\",-5.00,-8.00,0.00,\"\",0.00,158.00,111.00,733.00,,,,,,\n2015,5,10,\"AA\",\"307\",\"LGA\",\"ORD\",-7.00,-24.00,0.00,\"\",0.00,144.00,112.00,733.00,,,,,,\n2015,5,11,\"AA\",\"307\",\"LGA\",\"ORD\",-7.00,-25.00,0.00,\"\",0.00,143.00,110.00,733.00,,,,,,\n2015,5,12,\"AA\",\"307\",\"LGA\",\"ORD\",-6.00,-23.00,0.00,\"\",0.00,144.00,121.00,733.00,,,,,,\n2015,5,13,\"AA\",\"307\",\"LGA\",\"ORD\",-6.00,-12.00,0.00,\"\",0.00,155.00,123.00,733.00,,,,,,\n2015,5,14,\"AA\",\"307\",\"LGA\",\"ORD\",-4.00,-22.00,0.00,\"\",0.00,143.00,119.00,733.00,,,,,,\n2015,5,15,\"AA\",\"307\",\"LGA\",\"ORD\",-5.00,-23.00,0.00,\"\",0.00,143.00,114.00,733.00,,,,,,\n2015,5,17,\"AA\",\"307\",\"LGA\",\"ORD\",-5.00,-29.00,0.00,\"\",0.00,137.00,110.00,733.00,,,,,,\n2015,5,18,\"AA\",\"307\",\"LGA\",\"ORD\",-5.00,-25.00,0.00,\"\",0.00,141.00,110.00,733.00,,,,,,\n2015,5,19,\"AA\",\"307\",\"LGA\",\"ORD\",22.00,15.00,0.00,\"\",0.00,154.00,119.00,733.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"AA\",\"307\",\"LGA\",\"ORD\",-8.00,-5.00,0.00,\"\",0.00,164.00,131.00,733.00,,,,,,\n2015,5,21,\"AA\",\"307\",\"LGA\",\"ORD\",1.00,18.00,0.00,\"\",0.00,178.00,123.00,733.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,22,\"AA\",\"307\",\"LGA\",\"ORD\",0.00,-7.00,0.00,\"\",0.00,154.00,118.00,733.00,,,,,,\n2015,5,24,\"AA\",\"307\",\"LGA\",\"ORD\",-6.00,-21.00,0.00,\"\",0.00,146.00,125.00,733.00,,,,,,\n2015,5,25,\"AA\",\"307\",\"LGA\",\"ORD\",-6.00,4.00,0.00,\"\",0.00,171.00,130.00,733.00,,,,,,\n2015,5,26,\"AA\",\"307\",\"LGA\",\"ORD\",-8.00,-17.00,0.00,\"\",0.00,152.00,111.00,733.00,,,,,,\n2015,5,27,\"AA\",\"307\",\"LGA\",\"ORD\",-9.00,-26.00,0.00,\"\",0.00,144.00,109.00,733.00,,,,,,\n2015,5,28,\"AA\",\"307\",\"LGA\",\"ORD\",15.00,1.00,0.00,\"\",0.00,147.00,116.00,733.00,,,,,,\n2015,5,29,\"AA\",\"307\",\"LGA\",\"ORD\",-2.00,-5.00,0.00,\"\",0.00,158.00,112.00,733.00,,,,,,\n2015,5,31,\"AA\",\"307\",\"LGA\",\"ORD\",-1.00,-19.00,0.00,\"\",0.00,143.00,116.00,733.00,,,,,,\n2015,5,1,\"AA\",\"309\",\"LGA\",\"ORD\",-11.00,-19.00,0.00,\"\",0.00,149.00,104.00,733.00,,,,,,\n2015,5,2,\"AA\",\"309\",\"LGA\",\"ORD\",-4.00,-28.00,0.00,\"\",0.00,133.00,106.00,733.00,,,,,,\n2015,5,3,\"AA\",\"309\",\"LGA\",\"ORD\",-10.00,-35.00,0.00,\"\",0.00,132.00,111.00,733.00,,,,,,\n2015,5,4,\"AA\",\"309\",\"LGA\",\"ORD\",-7.00,-13.00,0.00,\"\",0.00,151.00,116.00,733.00,,,,,,\n2015,5,5,\"AA\",\"309\",\"LGA\",\"ORD\",-7.00,-9.00,0.00,\"\",0.00,155.00,123.00,733.00,,,,,,\n2015,5,6,\"AA\",\"309\",\"LGA\",\"ORD\",-5.00,-7.00,0.00,\"\",0.00,155.00,121.00,733.00,,,,,,\n2015,5,7,\"AA\",\"309\",\"LGA\",\"ORD\",-6.00,-16.00,0.00,\"\",0.00,147.00,112.00,733.00,,,,,,\n2015,5,8,\"AA\",\"309\",\"LGA\",\"ORD\",-6.00,-36.00,0.00,\"\",0.00,127.00,107.00,733.00,,,,,,\n2015,5,9,\"AA\",\"309\",\"LGA\",\"ORD\",-7.00,-20.00,0.00,\"\",0.00,144.00,120.00,733.00,,,,,,\n2015,5,10,\"AA\",\"309\",\"LGA\",\"ORD\",-9.00,-14.00,0.00,\"\",0.00,152.00,121.00,733.00,,,,,,\n2015,5,11,\"AA\",\"309\",\"LGA\",\"ORD\",-6.00,-6.00,0.00,\"\",0.00,157.00,121.00,733.00,,,,,,\n2015,5,12,\"AA\",\"309\",\"LGA\",\"ORD\",-6.00,-18.00,0.00,\"\",0.00,145.00,127.00,733.00,,,,,,\n2015,5,13,\"AA\",\"309\",\"LGA\",\"ORD\",-2.00,20.00,0.00,\"\",0.00,179.00,132.00,733.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,14,\"AA\",\"309\",\"LGA\",\"ORD\",-2.00,-1.00,0.00,\"\",0.00,158.00,121.00,733.00,,,,,,\n2015,5,15,\"AA\",\"309\",\"LGA\",\"ORD\",-7.00,-20.00,0.00,\"\",0.00,144.00,120.00,733.00,,,,,,\n2015,5,16,\"AA\",\"309\",\"LGA\",\"ORD\",-10.00,-26.00,0.00,\"\",0.00,141.00,116.00,733.00,,,,,,\n2015,5,17,\"AA\",\"309\",\"LGA\",\"ORD\",-12.00,-28.00,0.00,\"\",0.00,141.00,113.00,733.00,,,,,,\n2015,5,18,\"AA\",\"309\",\"LGA\",\"ORD\",-3.00,-4.00,0.00,\"\",0.00,156.00,115.00,733.00,,,,,,\n2015,5,19,\"AA\",\"309\",\"LGA\",\"ORD\",-8.00,-9.00,0.00,\"\",0.00,156.00,118.00,733.00,,,,,,\n2015,5,20,\"AA\",\"309\",\"LGA\",\"ORD\",-2.00,-3.00,0.00,\"\",0.00,156.00,127.00,733.00,,,,,,\n2015,5,21,\"AA\",\"309\",\"LGA\",\"ORD\",-3.00,-3.00,0.00,\"\",0.00,157.00,132.00,733.00,,,,,,\n2015,5,22,\"AA\",\"309\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,23,\"AA\",\"309\",\"LGA\",\"ORD\",11.00,-5.00,0.00,\"\",0.00,141.00,117.00,733.00,,,,,,\n2015,5,26,\"AA\",\"309\",\"LGA\",\"ORD\",-2.00,-11.00,0.00,\"\",0.00,148.00,117.00,733.00,,,,,,\n2015,5,27,\"AA\",\"309\",\"LGA\",\"ORD\",-4.00,-18.00,0.00,\"\",0.00,143.00,116.00,733.00,,,,,,\n2015,5,28,\"AA\",\"309\",\"LGA\",\"ORD\",18.00,5.00,0.00,\"\",0.00,144.00,113.00,733.00,,,,,,\n2015,5,29,\"AA\",\"309\",\"LGA\",\"ORD\",87.00,84.00,0.00,\"\",0.00,154.00,111.00,733.00,84.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"AA\",\"309\",\"LGA\",\"ORD\",-5.00,-12.00,0.00,\"\",0.00,150.00,115.00,733.00,,,,,,\n2015,5,31,\"AA\",\"309\",\"LGA\",\"ORD\",-5.00,17.00,0.00,\"\",0.00,179.00,145.00,733.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,1,\"AA\",\"312\",\"MIA\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,168.00,140.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"312\",\"MIA\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,169.00,136.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"312\",\"MIA\",\"JFK\",22.00,11.00,0.00,\"\",0.00,171.00,138.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"312\",\"MIA\",\"JFK\",-1.00,-2.00,0.00,\"\",0.00,181.00,160.00,1089.00,,,,,,\n2015,5,5,\"AA\",\"312\",\"MIA\",\"JFK\",117.00,100.00,0.00,\"\",0.00,165.00,141.00,1089.00,0.00,0.00,0.00,0.00,100.00,\n2015,5,6,\"AA\",\"312\",\"MIA\",\"JFK\",2.00,-16.00,0.00,\"\",0.00,166.00,141.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"312\",\"MIA\",\"JFK\",14.00,24.00,0.00,\"\",0.00,192.00,151.00,1089.00,0.00,0.00,10.00,0.00,14.00,\n2015,5,8,\"AA\",\"312\",\"MIA\",\"JFK\",27.00,35.00,0.00,\"\",0.00,190.00,169.00,1089.00,0.00,0.00,18.00,0.00,17.00,\n2015,5,9,\"AA\",\"312\",\"MIA\",\"JFK\",4.00,-1.00,0.00,\"\",0.00,177.00,155.00,1089.00,,,,,,\n2015,5,10,\"AA\",\"312\",\"MIA\",\"JFK\",54.00,53.00,0.00,\"\",0.00,181.00,149.00,1089.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,11,\"AA\",\"312\",\"MIA\",\"JFK\",46.00,44.00,0.00,\"\",0.00,180.00,152.00,1089.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"AA\",\"312\",\"MIA\",\"JFK\",6.00,13.00,0.00,\"\",0.00,189.00,148.00,1089.00,,,,,,\n2015,5,13,\"AA\",\"312\",\"MIA\",\"JFK\",56.00,51.00,0.00,\"\",0.00,177.00,155.00,1089.00,0.00,0.00,0.00,0.00,51.00,\n2015,5,14,\"AA\",\"312\",\"MIA\",\"JFK\",19.00,20.00,0.00,\"\",0.00,183.00,146.00,1089.00,0.00,0.00,1.00,0.00,19.00,\n2015,5,15,\"AA\",\"312\",\"MIA\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,180.00,148.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"312\",\"MIA\",\"JFK\",16.00,15.00,0.00,\"\",0.00,181.00,153.00,1089.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"AA\",\"312\",\"MIA\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,180.00,146.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"312\",\"MIA\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,174.00,146.00,1089.00,,,,,,\n2015,5,19,\"AA\",\"312\",\"MIA\",\"JFK\",60.00,44.00,0.00,\"\",0.00,166.00,142.00,1089.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"AA\",\"312\",\"MIA\",\"JFK\",130.00,99.00,0.00,\"\",0.00,151.00,132.00,1089.00,99.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"AA\",\"312\",\"MIA\",\"JFK\",18.00,13.00,0.00,\"\",0.00,177.00,145.00,1089.00,,,,,,\n2015,5,22,\"AA\",\"312\",\"MIA\",\"JFK\",19.00,17.00,0.00,\"\",0.00,180.00,150.00,1089.00,0.00,0.00,6.00,0.00,11.00,\n2015,5,23,\"AA\",\"312\",\"MIA\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,167.00,149.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"312\",\"MIA\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,175.00,148.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"312\",\"MIA\",\"JFK\",-1.00,3.00,0.00,\"\",0.00,186.00,147.00,1089.00,,,,,,\n2015,5,26,\"AA\",\"312\",\"MIA\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,160.00,141.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"312\",\"MIA\",\"JFK\",20.00,31.00,0.00,\"\",0.00,193.00,137.00,1089.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,28,\"AA\",\"312\",\"MIA\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,176.00,149.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"312\",\"MIA\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,175.00,147.00,1089.00,,,,,,\n2015,5,30,\"AA\",\"312\",\"MIA\",\"JFK\",185.00,180.00,0.00,\"\",0.00,177.00,153.00,1089.00,148.00,0.00,0.00,0.00,32.00,\n2015,5,31,\"AA\",\"312\",\"MIA\",\"JFK\",167.00,,0.00,\"\",1.00,,,1089.00,,,,,,\n2015,5,1,\"AA\",\"317\",\"LGA\",\"ORD\",-3.00,-16.00,0.00,\"\",0.00,147.00,104.00,733.00,,,,,,\n2015,5,3,\"AA\",\"317\",\"LGA\",\"ORD\",-5.00,-30.00,0.00,\"\",0.00,135.00,109.00,733.00,,,,,,\n2015,5,4,\"AA\",\"317\",\"LGA\",\"ORD\",-8.00,-23.00,0.00,\"\",0.00,145.00,108.00,733.00,,,,,,\n2015,5,5,\"AA\",\"317\",\"LGA\",\"ORD\",-8.00,-6.00,0.00,\"\",0.00,162.00,121.00,733.00,,,,,,\n2015,5,6,\"AA\",\"317\",\"LGA\",\"ORD\",-9.00,-4.00,0.00,\"\",0.00,165.00,115.00,733.00,,,,,,\n2015,5,7,\"AA\",\"317\",\"LGA\",\"ORD\",-8.00,-25.00,0.00,\"\",0.00,143.00,112.00,733.00,,,,,,\n2015,5,8,\"AA\",\"317\",\"LGA\",\"ORD\",-6.00,-5.00,0.00,\"\",0.00,161.00,107.00,733.00,,,,,,\n2015,5,10,\"AA\",\"317\",\"LGA\",\"ORD\",16.00,14.00,0.00,\"\",0.00,158.00,111.00,733.00,,,,,,\n2015,5,11,\"AA\",\"317\",\"LGA\",\"ORD\",1.00,-22.00,0.00,\"\",0.00,137.00,110.00,733.00,,,,,,\n2015,5,12,\"AA\",\"317\",\"LGA\",\"ORD\",-6.00,-18.00,0.00,\"\",0.00,148.00,119.00,733.00,,,,,,\n2015,5,13,\"AA\",\"317\",\"LGA\",\"ORD\",-9.00,25.00,0.00,\"\",0.00,194.00,121.00,733.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,14,\"AA\",\"317\",\"LGA\",\"ORD\",-9.00,-6.00,0.00,\"\",0.00,163.00,118.00,733.00,,,,,,\n2015,5,15,\"AA\",\"317\",\"LGA\",\"ORD\",-3.00,-22.00,0.00,\"\",0.00,141.00,117.00,733.00,,,,,,\n2015,5,17,\"AA\",\"317\",\"LGA\",\"ORD\",26.00,-5.00,0.00,\"\",0.00,129.00,105.00,733.00,,,,,,\n2015,5,18,\"AA\",\"317\",\"LGA\",\"ORD\",50.00,25.00,0.00,\"\",0.00,135.00,109.00,733.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"AA\",\"317\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,20,\"AA\",\"317\",\"LGA\",\"ORD\",-4.00,8.00,0.00,\"\",0.00,172.00,118.00,733.00,,,,,,\n2015,5,21,\"AA\",\"317\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,22,\"AA\",\"317\",\"LGA\",\"ORD\",-8.00,-12.00,0.00,\"\",0.00,156.00,121.00,733.00,,,,,,\n2015,5,26,\"AA\",\"317\",\"LGA\",\"ORD\",-8.00,-22.00,0.00,\"\",0.00,146.00,112.00,733.00,,,,,,\n2015,5,27,\"AA\",\"317\",\"LGA\",\"ORD\",-2.00,-17.00,0.00,\"\",0.00,145.00,112.00,733.00,,,,,,\n2015,5,28,\"AA\",\"317\",\"LGA\",\"ORD\",-3.00,-13.00,0.00,\"\",0.00,150.00,112.00,733.00,,,,,,\n2015,5,29,\"AA\",\"317\",\"LGA\",\"ORD\",-2.00,5.00,0.00,\"\",0.00,167.00,116.00,733.00,,,,,,\n2015,5,31,\"AA\",\"317\",\"LGA\",\"ORD\",-6.00,-23.00,0.00,\"\",0.00,143.00,113.00,733.00,,,,,,\n2015,5,1,\"AA\",\"392\",\"ORD\",\"LGA\",2.00,-11.00,0.00,\"\",0.00,120.00,103.00,733.00,,,,,,\n2015,5,3,\"AA\",\"392\",\"ORD\",\"LGA\",19.00,-2.00,0.00,\"\",0.00,112.00,100.00,733.00,,,,,,\n2015,5,4,\"AA\",\"392\",\"ORD\",\"LGA\",-8.00,-24.00,0.00,\"\",0.00,117.00,100.00,733.00,,,,,,\n2015,5,5,\"AA\",\"392\",\"ORD\",\"LGA\",4.00,-11.00,0.00,\"\",0.00,118.00,99.00,733.00,,,,,,\n2015,5,6,\"AA\",\"392\",\"ORD\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,123.00,102.00,733.00,,,,,,\n2015,5,7,\"AA\",\"392\",\"ORD\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,124.00,103.00,733.00,,,,,,\n2015,5,8,\"AA\",\"392\",\"ORD\",\"LGA\",49.00,53.00,0.00,\"\",0.00,137.00,102.00,733.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,10,\"AA\",\"392\",\"ORD\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,121.00,101.00,733.00,,,,,,\n2015,5,11,\"AA\",\"392\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,12,\"AA\",\"392\",\"ORD\",\"LGA\",-2.00,-22.00,0.00,\"\",0.00,113.00,92.00,733.00,,,,,,\n2015,5,13,\"AA\",\"392\",\"ORD\",\"LGA\",8.00,-18.00,0.00,\"\",0.00,107.00,89.00,733.00,,,,,,\n2015,5,14,\"AA\",\"392\",\"ORD\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,116.00,99.00,733.00,,,,,,\n2015,5,15,\"AA\",\"392\",\"ORD\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,115.00,99.00,733.00,,,,,,\n2015,5,17,\"AA\",\"392\",\"ORD\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,118.00,98.00,733.00,,,,,,\n2015,5,18,\"AA\",\"392\",\"ORD\",\"LGA\",78.00,107.00,0.00,\"\",0.00,162.00,133.00,733.00,0.00,0.00,107.00,0.00,0.00,\n2015,5,19,\"AA\",\"392\",\"ORD\",\"LGA\",0.00,0.00,0.00,\"\",0.00,133.00,97.00,733.00,,,,,,\n2015,5,20,\"AA\",\"392\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,21,\"AA\",\"392\",\"ORD\",\"LGA\",-2.00,-24.00,0.00,\"\",0.00,111.00,90.00,733.00,,,,,,\n2015,5,22,\"AA\",\"392\",\"ORD\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,114.00,94.00,733.00,,,,,,\n2015,5,24,\"AA\",\"392\",\"ORD\",\"LGA\",-7.00,-28.00,0.00,\"\",0.00,112.00,97.00,733.00,,,,,,\n2015,5,25,\"AA\",\"392\",\"ORD\",\"LGA\",-6.00,-26.00,0.00,\"\",0.00,113.00,100.00,733.00,,,,,,\n2015,5,26,\"AA\",\"392\",\"ORD\",\"LGA\",-2.00,-22.00,0.00,\"\",0.00,113.00,96.00,733.00,,,,,,\n2015,5,27,\"AA\",\"392\",\"ORD\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,119.00,104.00,733.00,,,,,,\n2015,5,28,\"AA\",\"392\",\"ORD\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,128.00,101.00,733.00,,,,,,\n2015,5,29,\"AA\",\"392\",\"ORD\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,120.00,100.00,733.00,,,,,,\n2015,5,31,\"AA\",\"392\",\"ORD\",\"LGA\",-5.00,13.00,0.00,\"\",0.00,151.00,104.00,733.00,,,,,,\n2015,5,1,\"AA\",\"394\",\"ORD\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,123.00,101.00,733.00,,,,,,\n2015,5,2,\"AA\",\"394\",\"ORD\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,121.00,100.00,733.00,,,,,,\n2015,5,3,\"AA\",\"394\",\"ORD\",\"LGA\",-8.00,-10.00,0.00,\"\",0.00,124.00,107.00,733.00,,,,,,\n2015,5,4,\"AA\",\"394\",\"ORD\",\"LGA\",23.00,13.00,0.00,\"\",0.00,116.00,102.00,733.00,,,,,,\n2015,5,5,\"AA\",\"394\",\"ORD\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,121.00,103.00,733.00,,,,,,\n2015,5,6,\"AA\",\"394\",\"ORD\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,128.00,101.00,733.00,,,,,,\n2015,5,7,\"AA\",\"394\",\"ORD\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,120.00,104.00,733.00,,,,,,\n2015,5,8,\"AA\",\"394\",\"ORD\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,123.00,102.00,733.00,,,,,,\n2015,5,9,\"AA\",\"394\",\"ORD\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,127.00,104.00,733.00,,,,,,\n2015,5,10,\"AA\",\"394\",\"ORD\",\"LGA\",-9.00,-16.00,0.00,\"\",0.00,119.00,103.00,733.00,,,,,,\n2015,5,11,\"AA\",\"394\",\"ORD\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,115.00,99.00,733.00,,,,,,\n2015,5,12,\"AA\",\"394\",\"ORD\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,114.00,98.00,733.00,,,,,,\n2015,5,13,\"AA\",\"394\",\"ORD\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,115.00,93.00,733.00,,,,,,\n2015,5,14,\"AA\",\"394\",\"ORD\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,115.00,96.00,733.00,,,,,,\n2015,5,15,\"AA\",\"394\",\"ORD\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,115.00,100.00,733.00,,,,,,\n2015,5,16,\"AA\",\"394\",\"ORD\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,129.00,99.00,733.00,,,,,,\n2015,5,17,\"AA\",\"394\",\"ORD\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,113.00,98.00,733.00,,,,,,\n2015,5,18,\"AA\",\"394\",\"ORD\",\"LGA\",,,1.00,\"C\",0.00,,,733.00,,,,,,\n2015,5,19,\"AA\",\"394\",\"ORD\",\"LGA\",57.00,48.00,0.00,\"\",0.00,117.00,102.00,733.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,20,\"AA\",\"394\",\"ORD\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,123.00,99.00,733.00,,,,,,\n2015,5,21,\"AA\",\"394\",\"ORD\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,118.00,95.00,733.00,,,,,,\n2015,5,22,\"AA\",\"394\",\"ORD\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,110.00,92.00,733.00,,,,,,\n2015,5,23,\"AA\",\"394\",\"ORD\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,117.00,93.00,733.00,,,,,,\n2015,5,26,\"AA\",\"394\",\"ORD\",\"LGA\",11.00,-1.00,0.00,\"\",0.00,114.00,100.00,733.00,,,,,,\n2015,5,27,\"AA\",\"394\",\"ORD\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,114.00,99.00,733.00,,,,,,\n2015,5,28,\"AA\",\"394\",\"ORD\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,123.00,104.00,733.00,,,,,,\n2015,5,29,\"AA\",\"394\",\"ORD\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,121.00,99.00,733.00,,,,,,\n2015,5,30,\"AA\",\"394\",\"ORD\",\"LGA\",-4.00,5.00,0.00,\"\",0.00,135.00,117.00,733.00,,,,,,\n2015,5,31,\"AA\",\"394\",\"ORD\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,116.00,99.00,733.00,,,,,,\n2015,5,1,\"AA\",\"398\",\"ORD\",\"LGA\",-9.00,-11.00,0.00,\"\",0.00,121.00,104.00,733.00,,,,,,\n2015,5,2,\"AA\",\"398\",\"ORD\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,108.00,96.00,733.00,,,,,,\n2015,5,3,\"AA\",\"398\",\"ORD\",\"LGA\",78.00,78.00,0.00,\"\",0.00,123.00,105.00,733.00,78.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"AA\",\"398\",\"ORD\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,116.00,102.00,733.00,,,,,,\n2015,5,5,\"AA\",\"398\",\"ORD\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,114.00,93.00,733.00,,,,,,\n2015,5,6,\"AA\",\"398\",\"ORD\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,118.00,96.00,733.00,,,,,,\n2015,5,7,\"AA\",\"398\",\"ORD\",\"LGA\",5.00,2.00,0.00,\"\",0.00,120.00,103.00,733.00,,,,,,\n2015,5,8,\"AA\",\"398\",\"ORD\",\"LGA\",-9.00,10.00,0.00,\"\",0.00,142.00,124.00,733.00,,,,,,\n2015,5,9,\"AA\",\"398\",\"ORD\",\"LGA\",23.00,33.00,0.00,\"\",0.00,133.00,105.00,733.00,0.00,23.00,10.00,0.00,0.00,\n2015,5,10,\"AA\",\"398\",\"ORD\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,125.00,107.00,733.00,,,,,,\n2015,5,11,\"AA\",\"398\",\"ORD\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,117.00,104.00,733.00,,,,,,\n2015,5,12,\"AA\",\"398\",\"ORD\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,119.00,98.00,733.00,,,,,,\n2015,5,13,\"AA\",\"398\",\"ORD\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,114.00,95.00,733.00,,,,,,\n2015,5,14,\"AA\",\"398\",\"ORD\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,116.00,98.00,733.00,,,,,,\n2015,5,15,\"AA\",\"398\",\"ORD\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,113.00,97.00,733.00,,,,,,\n2015,5,16,\"AA\",\"398\",\"ORD\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,112.00,97.00,733.00,,,,,,\n2015,5,17,\"AA\",\"398\",\"ORD\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,109.00,96.00,733.00,,,,,,\n2015,5,18,\"AA\",\"398\",\"ORD\",\"LGA\",160.00,226.00,0.00,\"\",0.00,189.00,149.00,733.00,0.00,0.00,226.00,0.00,0.00,\n2015,5,19,\"AA\",\"398\",\"ORD\",\"LGA\",39.00,51.00,0.00,\"\",0.00,135.00,98.00,733.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,20,\"AA\",\"398\",\"ORD\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,112.00,91.00,733.00,,,,,,\n2015,5,21,\"AA\",\"398\",\"ORD\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,110.00,93.00,733.00,,,,,,\n2015,5,22,\"AA\",\"398\",\"ORD\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,110.00,92.00,733.00,,,,,,\n2015,5,23,\"AA\",\"398\",\"ORD\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,104.00,90.00,733.00,,,,,,\n2015,5,26,\"AA\",\"398\",\"ORD\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,120.00,102.00,733.00,,,,,,\n2015,5,27,\"AA\",\"398\",\"ORD\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,116.00,103.00,733.00,,,,,,\n2015,5,28,\"AA\",\"398\",\"ORD\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,115.00,98.00,733.00,,,,,,\n2015,5,29,\"AA\",\"398\",\"ORD\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,109.00,94.00,733.00,,,,,,\n2015,5,30,\"AA\",\"398\",\"ORD\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,119.00,103.00,733.00,,,,,,\n2015,5,31,\"AA\",\"398\",\"ORD\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,111.00,96.00,733.00,,,,,,\n2015,5,7,\"AA\",\"938\",\"JFK\",\"SJU\",78.00,75.00,0.00,\"\",0.00,236.00,203.00,1598.00,6.00,0.00,0.00,0.00,69.00,\n2015,5,8,\"AA\",\"938\",\"JFK\",\"SJU\",24.00,28.00,0.00,\"\",0.00,243.00,206.00,1598.00,3.00,0.00,4.00,0.00,21.00,\n2015,5,9,\"AA\",\"938\",\"JFK\",\"SJU\",27.00,23.00,0.00,\"\",0.00,235.00,205.00,1598.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,10,\"AA\",\"938\",\"JFK\",\"SJU\",92.00,87.00,0.00,\"\",0.00,234.00,209.00,1598.00,8.00,0.00,0.00,0.00,79.00,\n2015,5,11,\"AA\",\"938\",\"JFK\",\"SJU\",56.00,55.00,0.00,\"\",0.00,238.00,204.00,1598.00,9.00,0.00,0.00,0.00,46.00,\n2015,5,12,\"AA\",\"938\",\"JFK\",\"SJU\",8.00,-5.00,0.00,\"\",0.00,226.00,191.00,1598.00,,,,,,\n2015,5,13,\"AA\",\"938\",\"JFK\",\"SJU\",28.00,31.00,0.00,\"\",0.00,242.00,199.00,1598.00,0.00,0.00,3.00,0.00,28.00,\n2015,5,14,\"AA\",\"938\",\"JFK\",\"SJU\",-6.00,-26.00,0.00,\"\",0.00,219.00,183.00,1598.00,,,,,,\n2015,5,15,\"AA\",\"938\",\"JFK\",\"SJU\",-8.00,-13.00,0.00,\"\",0.00,234.00,193.00,1598.00,,,,,,\n2015,5,16,\"AA\",\"938\",\"JFK\",\"SJU\",167.00,142.00,0.00,\"\",0.00,214.00,189.00,1598.00,116.00,0.00,0.00,0.00,26.00,\n2015,5,17,\"AA\",\"938\",\"JFK\",\"SJU\",10.00,-5.00,0.00,\"\",0.00,224.00,191.00,1598.00,,,,,,\n2015,5,18,\"AA\",\"938\",\"JFK\",\"SJU\",4.00,13.00,0.00,\"\",0.00,248.00,193.00,1598.00,,,,,,\n2015,5,19,\"AA\",\"938\",\"JFK\",\"SJU\",4.00,28.00,0.00,\"\",0.00,263.00,200.00,1598.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,20,\"AA\",\"938\",\"JFK\",\"SJU\",61.00,36.00,0.00,\"\",0.00,214.00,191.00,1598.00,11.00,0.00,0.00,0.00,25.00,\n2015,5,21,\"AA\",\"938\",\"JFK\",\"SJU\",-1.00,10.00,0.00,\"\",0.00,250.00,202.00,1598.00,,,,,,\n2015,5,22,\"AA\",\"938\",\"JFK\",\"SJU\",103.00,93.00,0.00,\"\",0.00,229.00,195.00,1598.00,81.00,0.00,0.00,0.00,12.00,\n2015,5,23,\"AA\",\"938\",\"JFK\",\"SJU\",-1.00,-16.00,0.00,\"\",0.00,224.00,191.00,1598.00,,,,,,\n2015,5,24,\"AA\",\"938\",\"JFK\",\"SJU\",-9.00,-33.00,0.00,\"\",0.00,215.00,188.00,1598.00,,,,,,\n2015,5,25,\"AA\",\"938\",\"JFK\",\"SJU\",-7.00,-30.00,0.00,\"\",0.00,216.00,184.00,1598.00,,,,,,\n2015,5,26,\"AA\",\"938\",\"JFK\",\"SJU\",-3.00,-24.00,0.00,\"\",0.00,218.00,189.00,1598.00,,,,,,\n2015,5,27,\"AA\",\"938\",\"JFK\",\"SJU\",95.00,79.00,0.00,\"\",0.00,223.00,195.00,1598.00,21.00,0.00,0.00,0.00,58.00,\n2015,5,28,\"AA\",\"938\",\"JFK\",\"SJU\",17.00,21.00,0.00,\"\",0.00,243.00,200.00,1598.00,0.00,0.00,4.00,0.00,17.00,\n2015,5,29,\"AA\",\"938\",\"JFK\",\"SJU\",-7.00,-4.00,0.00,\"\",0.00,242.00,203.00,1598.00,,,,,,\n2015,5,30,\"AA\",\"938\",\"JFK\",\"SJU\",-7.00,-13.00,0.00,\"\",0.00,233.00,200.00,1598.00,,,,,,\n2015,5,31,\"AA\",\"938\",\"JFK\",\"SJU\",893.00,899.00,0.00,\"\",0.00,245.00,193.00,1598.00,47.00,0.00,6.00,0.00,846.00,\n2015,5,1,\"AA\",\"942\",\"JFK\",\"MIA\",1.00,-4.00,0.00,\"\",0.00,184.00,165.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"942\",\"JFK\",\"MIA\",0.00,-21.00,0.00,\"\",0.00,168.00,149.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"942\",\"JFK\",\"MIA\",48.00,32.00,0.00,\"\",0.00,173.00,148.00,1089.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"AA\",\"942\",\"JFK\",\"MIA\",-6.00,6.00,0.00,\"\",0.00,201.00,172.00,1089.00,,,,,,\n2015,5,5,\"AA\",\"942\",\"JFK\",\"MIA\",-2.00,-4.00,0.00,\"\",0.00,187.00,159.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"942\",\"JFK\",\"MIA\",-4.00,-19.00,0.00,\"\",0.00,174.00,153.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"942\",\"JFK\",\"MIA\",-8.00,-16.00,0.00,\"\",0.00,181.00,151.00,1089.00,,,,,,\n2015,5,8,\"AA\",\"942\",\"JFK\",\"MIA\",-3.00,-20.00,0.00,\"\",0.00,172.00,148.00,1089.00,,,,,,\n2015,5,9,\"AA\",\"942\",\"JFK\",\"MIA\",1.00,-13.00,0.00,\"\",0.00,175.00,147.00,1089.00,,,,,,\n2015,5,10,\"AA\",\"942\",\"JFK\",\"MIA\",-2.00,-18.00,0.00,\"\",0.00,173.00,150.00,1089.00,,,,,,\n2015,5,11,\"AA\",\"942\",\"JFK\",\"MIA\",-10.00,-29.00,0.00,\"\",0.00,170.00,152.00,1089.00,,,,,,\n2015,5,12,\"AA\",\"942\",\"JFK\",\"MIA\",5.00,20.00,0.00,\"\",0.00,204.00,174.00,1089.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,13,\"AA\",\"942\",\"JFK\",\"MIA\",87.00,82.00,0.00,\"\",0.00,184.00,154.00,1089.00,82.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"AA\",\"942\",\"JFK\",\"MIA\",-2.00,-4.00,0.00,\"\",0.00,187.00,165.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"942\",\"JFK\",\"MIA\",-3.00,-16.00,0.00,\"\",0.00,176.00,154.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"942\",\"JFK\",\"MIA\",5.00,-18.00,0.00,\"\",0.00,166.00,145.00,1089.00,,,,,,\n2015,5,17,\"AA\",\"942\",\"JFK\",\"MIA\",5.00,-33.00,0.00,\"\",0.00,151.00,140.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"942\",\"JFK\",\"MIA\",-4.00,-26.00,0.00,\"\",0.00,167.00,145.00,1089.00,,,,,,\n2015,5,19,\"AA\",\"942\",\"JFK\",\"MIA\",1.00,-14.00,0.00,\"\",0.00,174.00,145.00,1089.00,,,,,,\n2015,5,20,\"AA\",\"942\",\"JFK\",\"MIA\",-2.00,-31.00,0.00,\"\",0.00,160.00,141.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"942\",\"JFK\",\"MIA\",-6.00,-28.00,0.00,\"\",0.00,167.00,152.00,1089.00,,,,,,\n2015,5,22,\"AA\",\"942\",\"JFK\",\"MIA\",-1.00,12.00,0.00,\"\",0.00,202.00,154.00,1089.00,,,,,,\n2015,5,23,\"AA\",\"942\",\"JFK\",\"MIA\",-5.00,-31.00,0.00,\"\",0.00,163.00,142.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"942\",\"JFK\",\"MIA\",-5.00,-41.00,0.00,\"\",0.00,153.00,133.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"942\",\"JFK\",\"MIA\",-2.00,-17.00,0.00,\"\",0.00,174.00,146.00,1089.00,,,,,,\n2015,5,26,\"AA\",\"942\",\"JFK\",\"MIA\",-15.00,-25.00,0.00,\"\",0.00,179.00,148.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"942\",\"JFK\",\"MIA\",-4.00,-27.00,0.00,\"\",0.00,166.00,145.00,1089.00,,,,,,\n2015,5,28,\"AA\",\"942\",\"JFK\",\"MIA\",3.00,-12.00,0.00,\"\",0.00,174.00,145.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"942\",\"JFK\",\"MIA\",-6.00,-37.00,0.00,\"\",0.00,158.00,137.00,1089.00,,,,,,\n2015,5,30,\"AA\",\"942\",\"JFK\",\"MIA\",0.00,-20.00,0.00,\"\",0.00,169.00,142.00,1089.00,,,,,,\n2015,5,31,\"AA\",\"942\",\"JFK\",\"MIA\",-1.00,-20.00,0.00,\"\",0.00,170.00,144.00,1089.00,,,,,,\n2015,5,1,\"AA\",\"999\",\"JFK\",\"ORD\",-3.00,-30.00,0.00,\"\",0.00,140.00,105.00,740.00,,,,,,\n2015,5,2,\"AA\",\"999\",\"JFK\",\"ORD\",-1.00,-28.00,0.00,\"\",0.00,140.00,108.00,740.00,,,,,,\n2015,5,3,\"AA\",\"999\",\"JFK\",\"ORD\",-5.00,-28.00,0.00,\"\",0.00,144.00,113.00,740.00,,,,,,\n2015,5,4,\"AA\",\"999\",\"JFK\",\"ORD\",1.00,-26.00,0.00,\"\",0.00,140.00,115.00,740.00,,,,,,\n2015,5,5,\"AA\",\"999\",\"JFK\",\"ORD\",0.00,-8.00,0.00,\"\",0.00,159.00,127.00,740.00,,,,,,\n2015,5,6,\"AA\",\"999\",\"JFK\",\"ORD\",-7.00,-24.00,0.00,\"\",0.00,150.00,122.00,740.00,,,,,,\n2015,5,7,\"AA\",\"999\",\"JFK\",\"ORD\",-5.00,-29.00,0.00,\"\",0.00,143.00,107.00,740.00,,,,,,\n2015,5,8,\"AA\",\"999\",\"JFK\",\"ORD\",26.00,8.00,0.00,\"\",0.00,149.00,114.00,740.00,,,,,,\n2015,5,9,\"AA\",\"999\",\"JFK\",\"ORD\",13.00,-6.00,0.00,\"\",0.00,148.00,116.00,740.00,,,,,,\n2015,5,11,\"AA\",\"999\",\"JFK\",\"ORD\",-5.00,-20.00,0.00,\"\",0.00,152.00,115.00,740.00,,,,,,\n2015,5,12,\"AA\",\"999\",\"JFK\",\"ORD\",-3.00,9.00,0.00,\"\",0.00,179.00,128.00,740.00,,,,,,\n2015,5,13,\"AA\",\"999\",\"JFK\",\"ORD\",-4.00,-9.00,0.00,\"\",0.00,162.00,126.00,740.00,,,,,,\n2015,5,14,\"AA\",\"999\",\"JFK\",\"ORD\",-4.00,13.00,0.00,\"\",0.00,184.00,150.00,740.00,,,,,,\n2015,5,15,\"AA\",\"999\",\"JFK\",\"ORD\",3.00,9.00,0.00,\"\",0.00,173.00,121.00,740.00,,,,,,\n2015,5,16,\"AA\",\"999\",\"JFK\",\"ORD\",0.00,-9.00,0.00,\"\",0.00,158.00,114.00,740.00,,,,,,\n2015,5,18,\"AA\",\"999\",\"JFK\",\"ORD\",-4.00,-8.00,0.00,\"\",0.00,163.00,116.00,740.00,,,,,,\n2015,5,19,\"AA\",\"999\",\"JFK\",\"ORD\",2.00,-8.00,0.00,\"\",0.00,157.00,124.00,740.00,,,,,,\n2015,5,20,\"AA\",\"999\",\"JFK\",\"ORD\",-3.00,1.00,0.00,\"\",0.00,171.00,133.00,740.00,,,,,,\n2015,5,21,\"AA\",\"999\",\"JFK\",\"ORD\",-2.00,-17.00,0.00,\"\",0.00,152.00,126.00,740.00,,,,,,\n2015,5,22,\"AA\",\"999\",\"JFK\",\"ORD\",0.00,-7.00,0.00,\"\",0.00,160.00,124.00,740.00,,,,,,\n2015,5,23,\"AA\",\"999\",\"JFK\",\"ORD\",-2.00,-13.00,0.00,\"\",0.00,156.00,121.00,740.00,,,,,,\n2015,5,25,\"AA\",\"999\",\"JFK\",\"ORD\",-3.00,-8.00,0.00,\"\",0.00,162.00,119.00,740.00,,,,,,\n2015,5,26,\"AA\",\"999\",\"JFK\",\"ORD\",-5.00,-22.00,0.00,\"\",0.00,150.00,118.00,740.00,,,,,,\n2015,5,27,\"AA\",\"999\",\"JFK\",\"ORD\",-6.00,-22.00,0.00,\"\",0.00,151.00,115.00,740.00,,,,,,\n2015,5,28,\"AA\",\"999\",\"JFK\",\"ORD\",-3.00,-22.00,0.00,\"\",0.00,148.00,120.00,740.00,,,,,,\n2015,5,29,\"AA\",\"999\",\"JFK\",\"ORD\",17.00,8.00,0.00,\"\",0.00,158.00,115.00,740.00,,,,,,\n2015,5,30,\"AA\",\"999\",\"JFK\",\"ORD\",-6.00,-21.00,0.00,\"\",0.00,152.00,114.00,740.00,,,,,,\n2015,5,22,\"AA\",\"1000\",\"DFW\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,201.00,165.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1084\",\"LGA\",\"MIA\",-8.00,8.00,0.00,\"\",0.00,209.00,161.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1084\",\"LGA\",\"MIA\",-7.00,-26.00,0.00,\"\",0.00,174.00,146.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1084\",\"LGA\",\"MIA\",-2.00,-13.00,0.00,\"\",0.00,182.00,148.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1084\",\"LGA\",\"MIA\",1.00,-3.00,0.00,\"\",0.00,189.00,158.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1084\",\"LGA\",\"MIA\",-6.00,-7.00,0.00,\"\",0.00,192.00,163.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1084\",\"LGA\",\"MIA\",-8.00,5.00,0.00,\"\",0.00,206.00,157.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1084\",\"LGA\",\"MIA\",-6.00,-27.00,0.00,\"\",0.00,172.00,146.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1084\",\"LGA\",\"MIA\",-2.00,-7.00,0.00,\"\",0.00,188.00,145.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1084\",\"LGA\",\"MIA\",-7.00,-15.00,0.00,\"\",0.00,185.00,143.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"1084\",\"LGA\",\"MIA\",6.00,-21.00,0.00,\"\",0.00,166.00,148.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"1084\",\"LGA\",\"MIA\",-3.00,-6.00,0.00,\"\",0.00,190.00,154.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1084\",\"LGA\",\"MIA\",-3.00,-12.00,0.00,\"\",0.00,184.00,143.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1084\",\"LGA\",\"MIA\",-5.00,-16.00,0.00,\"\",0.00,182.00,155.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1084\",\"LGA\",\"MIA\",-8.00,-10.00,0.00,\"\",0.00,191.00,150.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1084\",\"LGA\",\"MIA\",-6.00,-25.00,0.00,\"\",0.00,174.00,145.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1084\",\"LGA\",\"MIA\",127.00,110.00,0.00,\"\",0.00,176.00,149.00,1096.00,0.00,0.00,0.00,0.00,110.00,\n2015,5,21,\"AA\",\"1084\",\"LGA\",\"MIA\",-3.00,-20.00,0.00,\"\",0.00,176.00,151.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1084\",\"LGA\",\"MIA\",-6.00,0.00,0.00,\"\",0.00,199.00,153.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1084\",\"LGA\",\"MIA\",-5.00,-1.00,0.00,\"\",0.00,197.00,144.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1084\",\"LGA\",\"MIA\",-8.00,-35.00,0.00,\"\",0.00,166.00,138.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1084\",\"LGA\",\"MIA\",-7.00,-37.00,0.00,\"\",0.00,163.00,146.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"1084\",\"LGA\",\"MIA\",-3.00,-5.00,0.00,\"\",0.00,191.00,143.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1084\",\"LGA\",\"MIA\",-4.00,-13.00,0.00,\"\",0.00,184.00,141.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1084\",\"LGA\",\"MIA\",-10.00,-7.00,0.00,\"\",0.00,196.00,144.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1084\",\"LGA\",\"MIA\",-10.00,-25.00,0.00,\"\",0.00,178.00,142.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1084\",\"MIA\",\"LGA\",-5.00,-27.00,0.00,\"\",0.00,154.00,140.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1084\",\"MIA\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,160.00,143.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1084\",\"MIA\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,170.00,147.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1084\",\"MIA\",\"LGA\",4.00,-7.00,0.00,\"\",0.00,165.00,144.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1084\",\"MIA\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,165.00,141.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1084\",\"MIA\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,172.00,154.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1084\",\"MIA\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,165.00,149.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1084\",\"MIA\",\"LGA\",-3.00,7.00,0.00,\"\",0.00,186.00,165.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1084\",\"MIA\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,176.00,161.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"1084\",\"MIA\",\"LGA\",0.00,20.00,0.00,\"\",0.00,196.00,167.00,1096.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,11,\"AA\",\"1084\",\"MIA\",\"LGA\",5.00,-2.00,0.00,\"\",0.00,169.00,150.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1084\",\"MIA\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,176.00,150.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1084\",\"MIA\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,172.00,148.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1084\",\"MIA\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,167.00,151.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1084\",\"MIA\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,171.00,151.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1084\",\"MIA\",\"LGA\",-6.00,,0.00,\"\",1.00,,,1096.00,,,,,,\n2015,5,21,\"AA\",\"1084\",\"MIA\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,162.00,143.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1084\",\"MIA\",\"LGA\",2.00,-3.00,0.00,\"\",0.00,171.00,147.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1084\",\"MIA\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,164.00,149.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1084\",\"MIA\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,171.00,152.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1084\",\"MIA\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,162.00,142.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"1084\",\"MIA\",\"LGA\",13.00,3.00,0.00,\"\",0.00,166.00,150.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1084\",\"MIA\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,174.00,154.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1084\",\"MIA\",\"LGA\",-3.00,0.00,0.00,\"\",0.00,179.00,152.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1084\",\"MIA\",\"LGA\",-7.00,-27.00,0.00,\"\",0.00,156.00,142.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1100\",\"DFW\",\"LGA\",-9.00,-7.00,0.00,\"\",0.00,205.00,177.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1100\",\"DFW\",\"LGA\",10.00,11.00,0.00,\"\",0.00,204.00,190.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1100\",\"DFW\",\"LGA\",-9.00,-5.00,0.00,\"\",0.00,207.00,191.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1100\",\"DFW\",\"LGA\",72.00,79.00,0.00,\"\",0.00,210.00,183.00,1389.00,72.00,0.00,7.00,0.00,0.00,\n2015,5,7,\"AA\",\"1100\",\"DFW\",\"LGA\",-3.00,-1.00,0.00,\"\",0.00,205.00,185.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1100\",\"DFW\",\"LGA\",-8.00,-7.00,0.00,\"\",0.00,204.00,183.00,1389.00,,,,,,\n2015,5,11,\"AA\",\"1100\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,12,\"AA\",\"1100\",\"DFW\",\"LGA\",-5.00,-32.00,0.00,\"\",0.00,176.00,161.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1100\",\"DFW\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,188.00,168.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1100\",\"DFW\",\"LGA\",0.00,5.00,0.00,\"\",0.00,208.00,182.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1100\",\"DFW\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,194.00,175.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1100\",\"DFW\",\"LGA\",5.00,11.00,0.00,\"\",0.00,209.00,187.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1100\",\"DFW\",\"LGA\",188.00,184.00,0.00,\"\",0.00,199.00,166.00,1389.00,184.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"AA\",\"1100\",\"DFW\",\"LGA\",-6.00,7.00,0.00,\"\",0.00,216.00,186.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1100\",\"DFW\",\"LGA\",53.00,55.00,0.00,\"\",0.00,205.00,171.00,1389.00,0.00,53.00,2.00,0.00,0.00,\n2015,5,22,\"AA\",\"1100\",\"DFW\",\"LGA\",-1.00,-24.00,0.00,\"\",0.00,180.00,161.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1100\",\"DFW\",\"LGA\",-8.00,-22.00,0.00,\"\",0.00,189.00,176.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1100\",\"DFW\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,193.00,178.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1100\",\"DFW\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,194.00,170.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1100\",\"DFW\",\"LGA\",-9.00,-3.00,0.00,\"\",0.00,209.00,186.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1100\",\"DFW\",\"LGA\",6.00,14.00,0.00,\"\",0.00,211.00,179.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1100\",\"LGA\",\"DFW\",-7.00,-20.00,0.00,\"\",0.00,232.00,178.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1100\",\"LGA\",\"DFW\",-1.00,-32.00,0.00,\"\",0.00,214.00,182.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1100\",\"LGA\",\"DFW\",-7.00,-52.00,0.00,\"\",0.00,200.00,178.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1100\",\"LGA\",\"DFW\",58.00,47.00,0.00,\"\",0.00,234.00,185.00,1389.00,0.00,0.00,0.00,0.00,47.00,\n2015,5,7,\"AA\",\"1100\",\"LGA\",\"DFW\",-8.00,-26.00,0.00,\"\",0.00,227.00,186.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1100\",\"LGA\",\"DFW\",-6.00,-39.00,0.00,\"\",0.00,212.00,185.00,1389.00,,,,,,\n2015,5,11,\"AA\",\"1100\",\"LGA\",\"DFW\",20.00,-12.00,0.00,\"\",0.00,213.00,196.00,1389.00,,,,,,\n2015,5,12,\"AA\",\"1100\",\"LGA\",\"DFW\",-5.00,-21.00,0.00,\"\",0.00,229.00,200.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1100\",\"LGA\",\"DFW\",-6.00,20.00,0.00,\"\",0.00,271.00,202.00,1389.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,14,\"AA\",\"1100\",\"LGA\",\"DFW\",0.00,-12.00,0.00,\"\",0.00,233.00,195.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1100\",\"LGA\",\"DFW\",-1.00,-28.00,0.00,\"\",0.00,218.00,194.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1100\",\"LGA\",\"DFW\",5.00,-23.00,0.00,\"\",0.00,217.00,197.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1100\",\"LGA\",\"DFW\",172.00,157.00,0.00,\"\",0.00,230.00,192.00,1389.00,0.00,0.00,0.00,0.00,157.00,\n2015,5,20,\"AA\",\"1100\",\"LGA\",\"DFW\",-1.00,-9.00,0.00,\"\",0.00,237.00,189.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1100\",\"LGA\",\"DFW\",44.00,36.00,0.00,\"\",0.00,237.00,206.00,1389.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,22,\"AA\",\"1100\",\"LGA\",\"DFW\",-5.00,8.00,0.00,\"\",0.00,258.00,212.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1100\",\"LGA\",\"DFW\",-3.00,-25.00,0.00,\"\",0.00,223.00,192.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1100\",\"LGA\",\"DFW\",2.00,-28.00,0.00,\"\",0.00,215.00,186.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1100\",\"LGA\",\"DFW\",-3.00,-41.00,0.00,\"\",0.00,207.00,190.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1100\",\"LGA\",\"DFW\",33.00,34.00,0.00,\"\",0.00,246.00,202.00,1389.00,0.00,0.00,1.00,0.00,33.00,\n2015,5,29,\"AA\",\"1100\",\"LGA\",\"DFW\",1.00,-9.00,0.00,\"\",0.00,235.00,192.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1103\",\"LGA\",\"DFW\",-6.00,-50.00,0.00,\"\",0.00,204.00,181.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1103\",\"LGA\",\"DFW\",-7.00,-52.00,0.00,\"\",0.00,203.00,184.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1103\",\"LGA\",\"DFW\",-9.00,-45.00,0.00,\"\",0.00,212.00,188.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1103\",\"LGA\",\"DFW\",-10.00,-50.00,0.00,\"\",0.00,208.00,186.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1103\",\"LGA\",\"DFW\",0.00,-36.00,0.00,\"\",0.00,212.00,185.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1103\",\"LGA\",\"DFW\",-2.00,-33.00,0.00,\"\",0.00,217.00,191.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1103\",\"LGA\",\"DFW\",-2.00,-26.00,0.00,\"\",0.00,224.00,196.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1103\",\"LGA\",\"DFW\",17.00,-14.00,0.00,\"\",0.00,217.00,188.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1103\",\"LGA\",\"DFW\",2.00,-30.00,0.00,\"\",0.00,216.00,196.00,1389.00,,,,,,\n2015,5,10,\"AA\",\"1103\",\"LGA\",\"DFW\",-7.00,18.00,0.00,\"\",0.00,273.00,255.00,1389.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,11,\"AA\",\"1103\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,12,\"AA\",\"1103\",\"LGA\",\"DFW\",-7.00,-28.00,0.00,\"\",0.00,227.00,208.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1103\",\"LGA\",\"DFW\",-3.00,-42.00,0.00,\"\",0.00,209.00,190.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1103\",\"LGA\",\"DFW\",-3.00,-21.00,0.00,\"\",0.00,230.00,192.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1103\",\"LGA\",\"DFW\",-5.00,-30.00,0.00,\"\",0.00,223.00,193.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1103\",\"LGA\",\"DFW\",-2.00,-36.00,0.00,\"\",0.00,214.00,193.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1103\",\"LGA\",\"DFW\",9.00,9.00,0.00,\"\",0.00,248.00,223.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1103\",\"LGA\",\"DFW\",-4.00,-35.00,0.00,\"\",0.00,217.00,197.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1103\",\"LGA\",\"DFW\",-2.00,-33.00,0.00,\"\",0.00,217.00,191.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1103\",\"LGA\",\"DFW\",51.00,23.00,0.00,\"\",0.00,220.00,195.00,1389.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"AA\",\"1103\",\"LGA\",\"DFW\",0.00,0.00,0.00,\"\",0.00,248.00,211.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1103\",\"LGA\",\"DFW\",-5.00,-31.00,0.00,\"\",0.00,222.00,201.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1103\",\"LGA\",\"DFW\",-7.00,-26.00,0.00,\"\",0.00,229.00,203.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1103\",\"LGA\",\"DFW\",-4.00,-17.00,0.00,\"\",0.00,235.00,208.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1103\",\"LGA\",\"DFW\",-4.00,-34.00,0.00,\"\",0.00,218.00,190.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1103\",\"LGA\",\"DFW\",-3.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,27,\"AA\",\"1103\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,28,\"AA\",\"1103\",\"LGA\",\"DFW\",0.00,-38.00,0.00,\"\",0.00,210.00,188.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1103\",\"LGA\",\"DFW\",-7.00,-40.00,0.00,\"\",0.00,215.00,190.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1103\",\"LGA\",\"DFW\",-3.00,-9.00,0.00,\"\",0.00,242.00,211.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1103\",\"LGA\",\"DFW\",-3.00,-46.00,0.00,\"\",0.00,205.00,187.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1104\",\"DFW\",\"LGA\",8.00,3.00,0.00,\"\",0.00,203.00,171.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1104\",\"DFW\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,197.00,184.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1104\",\"DFW\",\"LGA\",110.00,98.00,0.00,\"\",0.00,196.00,177.00,1389.00,0.00,0.00,93.00,0.00,5.00,\n2015,5,4,\"AA\",\"1104\",\"DFW\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,202.00,181.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1104\",\"DFW\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,202.00,184.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1104\",\"DFW\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,199.00,183.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1104\",\"DFW\",\"LGA\",104.00,91.00,0.00,\"\",0.00,195.00,180.00,1389.00,91.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"AA\",\"1104\",\"DFW\",\"LGA\",-3.00,7.00,0.00,\"\",0.00,218.00,185.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1104\",\"DFW\",\"LGA\",36.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,10,\"AA\",\"1104\",\"DFW\",\"LGA\",80.00,145.00,0.00,\"\",0.00,273.00,214.00,1389.00,0.00,80.00,65.00,0.00,0.00,\n2015,5,11,\"AA\",\"1104\",\"DFW\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,206.00,181.00,1389.00,,,,,,\n2015,5,12,\"AA\",\"1104\",\"DFW\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,193.00,170.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1104\",\"DFW\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,193.00,168.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1104\",\"DFW\",\"LGA\",1.00,2.00,0.00,\"\",0.00,209.00,176.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1104\",\"DFW\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,211.00,173.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1104\",\"DFW\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,197.00,179.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1104\",\"DFW\",\"LGA\",25.00,26.00,0.00,\"\",0.00,209.00,184.00,1389.00,0.00,25.00,1.00,0.00,0.00,\n2015,5,18,\"AA\",\"1104\",\"DFW\",\"LGA\",167.00,156.00,0.00,\"\",0.00,197.00,169.00,1389.00,156.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"AA\",\"1104\",\"DFW\",\"LGA\",48.00,35.00,0.00,\"\",0.00,195.00,172.00,1389.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,20,\"AA\",\"1104\",\"DFW\",\"LGA\",24.00,8.00,0.00,\"\",0.00,192.00,170.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1104\",\"DFW\",\"LGA\",25.00,13.00,0.00,\"\",0.00,196.00,163.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1104\",\"DFW\",\"LGA\",49.00,13.00,0.00,\"\",0.00,172.00,157.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1104\",\"DFW\",\"LGA\",-3.00,-26.00,0.00,\"\",0.00,185.00,171.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1104\",\"DFW\",\"LGA\",2.00,-2.00,0.00,\"\",0.00,204.00,178.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1104\",\"DFW\",\"LGA\",-9.00,-20.00,0.00,\"\",0.00,197.00,176.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1104\",\"DFW\",\"LGA\",20.00,18.00,0.00,\"\",0.00,206.00,177.00,1389.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"AA\",\"1104\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,28,\"AA\",\"1104\",\"DFW\",\"LGA\",52.00,39.00,0.00,\"\",0.00,195.00,175.00,1389.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"AA\",\"1104\",\"DFW\",\"LGA\",20.00,14.00,0.00,\"\",0.00,202.00,181.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1104\",\"DFW\",\"LGA\",82.00,94.00,0.00,\"\",0.00,220.00,195.00,1389.00,0.00,82.00,12.00,0.00,0.00,\n2015,5,31,\"AA\",\"1104\",\"DFW\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,192.00,176.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1104\",\"LGA\",\"DFW\",-8.00,-49.00,0.00,\"\",0.00,201.00,172.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1104\",\"LGA\",\"DFW\",-8.00,-44.00,0.00,\"\",0.00,206.00,183.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1104\",\"LGA\",\"DFW\",4.00,-36.00,0.00,\"\",0.00,202.00,178.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1104\",\"LGA\",\"DFW\",0.00,-40.00,0.00,\"\",0.00,202.00,180.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1104\",\"LGA\",\"DFW\",-6.00,-45.00,0.00,\"\",0.00,203.00,177.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1104\",\"LGA\",\"DFW\",-1.00,-27.00,0.00,\"\",0.00,216.00,178.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1104\",\"LGA\",\"DFW\",-5.00,-18.00,0.00,\"\",0.00,229.00,199.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1104\",\"LGA\",\"DFW\",-4.00,-42.00,0.00,\"\",0.00,204.00,186.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1104\",\"LGA\",\"DFW\",-10.00,3.00,0.00,\"\",0.00,255.00,198.00,1389.00,,,,,,\n2015,5,10,\"AA\",\"1104\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1104\",\"LGA\",\"DFW\",-6.00,-11.00,0.00,\"\",0.00,237.00,208.00,1389.00,,,,,,\n2015,5,12,\"AA\",\"1104\",\"LGA\",\"DFW\",-7.00,-21.00,0.00,\"\",0.00,228.00,201.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1104\",\"LGA\",\"DFW\",-6.00,-4.00,0.00,\"\",0.00,244.00,196.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1104\",\"LGA\",\"DFW\",-10.00,-8.00,0.00,\"\",0.00,244.00,193.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1104\",\"LGA\",\"DFW\",-9.00,-24.00,0.00,\"\",0.00,227.00,193.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1104\",\"LGA\",\"DFW\",25.00,11.00,0.00,\"\",0.00,228.00,195.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1104\",\"LGA\",\"DFW\",22.00,4.00,0.00,\"\",0.00,224.00,198.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1104\",\"LGA\",\"DFW\",34.00,34.00,0.00,\"\",0.00,242.00,212.00,1389.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,19,\"AA\",\"1104\",\"LGA\",\"DFW\",97.00,73.00,0.00,\"\",0.00,218.00,191.00,1389.00,0.00,0.00,0.00,0.00,73.00,\n2015,5,20,\"AA\",\"1104\",\"LGA\",\"DFW\",38.00,31.00,0.00,\"\",0.00,235.00,203.00,1389.00,0.00,0.00,0.00,0.00,31.00,\n2015,5,21,\"AA\",\"1104\",\"LGA\",\"DFW\",-10.00,-21.00,0.00,\"\",0.00,231.00,205.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1104\",\"LGA\",\"DFW\",-11.00,7.00,0.00,\"\",0.00,260.00,208.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1104\",\"LGA\",\"DFW\",-6.00,-4.00,0.00,\"\",0.00,244.00,201.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1104\",\"LGA\",\"DFW\",67.00,31.00,0.00,\"\",0.00,206.00,187.00,1389.00,0.00,0.00,0.00,0.00,31.00,\n2015,5,25,\"AA\",\"1104\",\"LGA\",\"DFW\",-7.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,26,\"AA\",\"1104\",\"LGA\",\"DFW\",-3.00,-24.00,0.00,\"\",0.00,221.00,194.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1104\",\"LGA\",\"DFW\",-2.00,-28.00,0.00,\"\",0.00,216.00,195.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1104\",\"LGA\",\"DFW\",34.00,32.00,0.00,\"\",0.00,240.00,197.00,1389.00,5.00,0.00,0.00,0.00,27.00,\n2015,5,29,\"AA\",\"1104\",\"LGA\",\"DFW\",-8.00,-13.00,0.00,\"\",0.00,237.00,197.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1104\",\"LGA\",\"DFW\",-5.00,-35.00,0.00,\"\",0.00,212.00,190.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1104\",\"LGA\",\"DFW\",-4.00,-37.00,0.00,\"\",0.00,209.00,191.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1107\",\"LGA\",\"DFW\",-3.00,-38.00,0.00,\"\",0.00,203.00,182.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1107\",\"LGA\",\"DFW\",-4.00,-32.00,0.00,\"\",0.00,210.00,186.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1107\",\"LGA\",\"DFW\",-7.00,-43.00,0.00,\"\",0.00,202.00,178.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1107\",\"LGA\",\"DFW\",-9.00,-55.00,0.00,\"\",0.00,192.00,177.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1107\",\"LGA\",\"DFW\",-10.00,-37.00,0.00,\"\",0.00,211.00,187.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1107\",\"LGA\",\"DFW\",-3.00,-25.00,0.00,\"\",0.00,216.00,192.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1107\",\"LGA\",\"DFW\",-5.00,-43.00,0.00,\"\",0.00,200.00,179.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1107\",\"LGA\",\"DFW\",51.00,39.00,0.00,\"\",0.00,226.00,204.00,1389.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"AA\",\"1107\",\"LGA\",\"DFW\",28.00,47.00,0.00,\"\",0.00,257.00,215.00,1389.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,12,\"AA\",\"1107\",\"LGA\",\"DFW\",-8.00,-14.00,0.00,\"\",0.00,232.00,215.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1107\",\"LGA\",\"DFW\",-2.00,-12.00,0.00,\"\",0.00,228.00,204.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1107\",\"LGA\",\"DFW\",-6.00,-32.00,0.00,\"\",0.00,212.00,192.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1107\",\"LGA\",\"DFW\",-10.00,-32.00,0.00,\"\",0.00,216.00,193.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1107\",\"LGA\",\"DFW\",-6.00,-14.00,0.00,\"\",0.00,230.00,196.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1107\",\"LGA\",\"DFW\",0.00,-20.00,0.00,\"\",0.00,218.00,192.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1107\",\"LGA\",\"DFW\",46.00,36.00,0.00,\"\",0.00,228.00,185.00,1389.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"AA\",\"1107\",\"LGA\",\"DFW\",-4.00,-18.00,0.00,\"\",0.00,224.00,198.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1107\",\"LGA\",\"DFW\",-2.00,43.00,0.00,\"\",0.00,283.00,207.00,1389.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,22,\"AA\",\"1107\",\"LGA\",\"DFW\",-3.00,0.00,0.00,\"\",0.00,241.00,214.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1107\",\"LGA\",\"DFW\",-4.00,-15.00,0.00,\"\",0.00,227.00,198.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1107\",\"LGA\",\"DFW\",-8.00,-34.00,0.00,\"\",0.00,212.00,191.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1107\",\"LGA\",\"DFW\",-5.00,-23.00,0.00,\"\",0.00,220.00,188.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1107\",\"LGA\",\"DFW\",-1.00,-30.00,0.00,\"\",0.00,209.00,194.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1107\",\"LGA\",\"DFW\",45.00,30.00,0.00,\"\",0.00,223.00,191.00,1389.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"AA\",\"1107\",\"LGA\",\"DFW\",-7.00,-41.00,0.00,\"\",0.00,204.00,181.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1107\",\"LGA\",\"DFW\",-4.00,70.00,0.00,\"\",0.00,312.00,241.00,1389.00,0.00,0.00,70.00,0.00,0.00,\n2015,5,1,\"AA\",\"1108\",\"DFW\",\"LGA\",-1.00,12.00,0.00,\"\",0.00,226.00,196.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1108\",\"DFW\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,205.00,186.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1108\",\"DFW\",\"LGA\",1.00,5.00,0.00,\"\",0.00,217.00,189.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1108\",\"DFW\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,209.00,185.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1108\",\"DFW\",\"LGA\",-9.00,-6.00,0.00,\"\",0.00,216.00,185.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1108\",\"DFW\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,204.00,184.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1108\",\"DFW\",\"LGA\",-7.00,17.00,0.00,\"\",0.00,238.00,179.00,1389.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,10,\"AA\",\"1108\",\"DFW\",\"LGA\",63.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1108\",\"DFW\",\"LGA\",20.00,-3.00,0.00,\"\",0.00,191.00,171.00,1389.00,,,,,,\n2015,5,12,\"AA\",\"1108\",\"DFW\",\"LGA\",-4.00,-37.00,0.00,\"\",0.00,181.00,165.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1108\",\"DFW\",\"LGA\",-6.00,-36.00,0.00,\"\",0.00,184.00,164.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1108\",\"DFW\",\"LGA\",125.00,100.00,0.00,\"\",0.00,189.00,173.00,1389.00,6.00,0.00,0.00,0.00,94.00,\n2015,5,15,\"AA\",\"1108\",\"DFW\",\"LGA\",4.00,33.00,0.00,\"\",0.00,243.00,178.00,1389.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,17,\"AA\",\"1108\",\"DFW\",\"LGA\",38.00,25.00,0.00,\"\",0.00,201.00,179.00,1389.00,0.00,25.00,0.00,0.00,0.00,\n2015,5,18,\"AA\",\"1108\",\"DFW\",\"LGA\",1.00,14.00,0.00,\"\",0.00,227.00,207.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1108\",\"DFW\",\"LGA\",32.00,13.00,0.00,\"\",0.00,195.00,172.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1108\",\"DFW\",\"LGA\",-4.00,-25.00,0.00,\"\",0.00,193.00,168.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1108\",\"DFW\",\"LGA\",3.00,0.00,0.00,\"\",0.00,211.00,167.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1108\",\"DFW\",\"LGA\",-6.00,-37.00,0.00,\"\",0.00,183.00,161.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1108\",\"DFW\",\"LGA\",-4.00,26.00,0.00,\"\",0.00,244.00,179.00,1389.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,25,\"AA\",\"1108\",\"DFW\",\"LGA\",-7.00,-24.00,0.00,\"\",0.00,197.00,174.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1108\",\"DFW\",\"LGA\",-9.00,-26.00,0.00,\"\",0.00,197.00,172.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1108\",\"DFW\",\"LGA\",1.00,-27.00,0.00,\"\",0.00,186.00,165.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1108\",\"DFW\",\"LGA\",19.00,3.00,0.00,\"\",0.00,198.00,176.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1108\",\"DFW\",\"LGA\",97.00,76.00,0.00,\"\",0.00,193.00,174.00,1389.00,0.00,0.00,0.00,0.00,76.00,\n2015,5,31,\"AA\",\"1108\",\"DFW\",\"LGA\",-6.00,-26.00,0.00,\"\",0.00,194.00,175.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1108\",\"LGA\",\"DFW\",-1.00,-35.00,0.00,\"\",0.00,208.00,182.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1108\",\"LGA\",\"DFW\",-5.00,-26.00,0.00,\"\",0.00,221.00,186.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1108\",\"LGA\",\"DFW\",-10.00,-34.00,0.00,\"\",0.00,218.00,188.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1108\",\"LGA\",\"DFW\",-11.00,-41.00,0.00,\"\",0.00,212.00,180.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1108\",\"LGA\",\"DFW\",-7.00,-25.00,0.00,\"\",0.00,224.00,182.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1108\",\"LGA\",\"DFW\",-7.00,-40.00,0.00,\"\",0.00,209.00,182.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1108\",\"LGA\",\"DFW\",-7.00,-29.00,0.00,\"\",0.00,220.00,188.00,1389.00,,,,,,\n2015,5,10,\"AA\",\"1108\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1108\",\"LGA\",\"DFW\",-8.00,-18.00,0.00,\"\",0.00,232.00,203.00,1389.00,,,,,,\n2015,5,12,\"AA\",\"1108\",\"LGA\",\"DFW\",-3.00,-22.00,0.00,\"\",0.00,223.00,194.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1108\",\"LGA\",\"DFW\",-10.00,0.00,0.00,\"\",0.00,252.00,202.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1108\",\"LGA\",\"DFW\",78.00,68.00,0.00,\"\",0.00,232.00,195.00,1389.00,0.00,0.00,0.00,0.00,68.00,\n2015,5,15,\"AA\",\"1108\",\"LGA\",\"DFW\",6.00,-13.00,0.00,\"\",0.00,223.00,194.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1108\",\"LGA\",\"DFW\",1.00,-3.00,0.00,\"\",0.00,238.00,206.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1108\",\"LGA\",\"DFW\",36.00,20.00,0.00,\"\",0.00,226.00,193.00,1389.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,19,\"AA\",\"1108\",\"LGA\",\"DFW\",-10.00,-46.00,0.00,\"\",0.00,206.00,189.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1108\",\"LGA\",\"DFW\",-3.00,-10.00,0.00,\"\",0.00,235.00,195.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1108\",\"LGA\",\"DFW\",-1.00,2.00,0.00,\"\",0.00,245.00,209.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1108\",\"LGA\",\"DFW\",15.00,7.00,0.00,\"\",0.00,234.00,203.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1108\",\"LGA\",\"DFW\",-4.00,-26.00,0.00,\"\",0.00,220.00,194.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1019\",\"LGA\",\"MIA\",-5.00,-13.00,0.00,\"\",0.00,195.00,162.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1019\",\"LGA\",\"MIA\",-9.00,-8.00,0.00,\"\",0.00,204.00,155.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1019\",\"LGA\",\"MIA\",3.00,-14.00,0.00,\"\",0.00,186.00,148.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1019\",\"LGA\",\"MIA\",-9.00,-27.00,0.00,\"\",0.00,185.00,156.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1019\",\"LGA\",\"MIA\",13.00,20.00,0.00,\"\",0.00,210.00,173.00,1096.00,6.00,0.00,7.00,0.00,7.00,\n2015,5,6,\"AA\",\"1019\",\"LGA\",\"MIA\",-7.00,12.00,0.00,\"\",0.00,222.00,170.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1019\",\"MIA\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,169.00,144.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1019\",\"MIA\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,159.00,140.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1019\",\"MIA\",\"LGA\",8.00,-7.00,0.00,\"\",0.00,162.00,149.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1019\",\"MIA\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,164.00,148.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1019\",\"MIA\",\"LGA\",24.00,15.00,0.00,\"\",0.00,168.00,148.00,1096.00,3.00,0.00,0.00,0.00,12.00,\n2015,5,6,\"AA\",\"1019\",\"MIA\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,169.00,147.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1029\",\"LGA\",\"MIA\",-9.00,-6.00,0.00,\"\",0.00,200.00,159.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1029\",\"LGA\",\"MIA\",74.00,38.00,0.00,\"\",0.00,161.00,143.00,1096.00,0.00,0.00,0.00,0.00,38.00,\n2015,5,3,\"AA\",\"1029\",\"LGA\",\"MIA\",-7.00,-32.00,0.00,\"\",0.00,172.00,149.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1029\",\"LGA\",\"MIA\",-10.00,-33.00,0.00,\"\",0.00,174.00,149.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1029\",\"LGA\",\"MIA\",-6.00,-23.00,0.00,\"\",0.00,180.00,152.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1029\",\"LGA\",\"MIA\",-7.00,-13.00,0.00,\"\",0.00,191.00,151.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1029\",\"LGA\",\"MIA\",-1.00,-26.00,0.00,\"\",0.00,172.00,149.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1029\",\"LGA\",\"MIA\",-1.00,-29.00,0.00,\"\",0.00,169.00,148.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1029\",\"LGA\",\"MIA\",-4.00,-28.00,0.00,\"\",0.00,173.00,153.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"1029\",\"LGA\",\"MIA\",77.00,76.00,0.00,\"\",0.00,196.00,151.00,1096.00,0.00,0.00,0.00,0.00,76.00,\n2015,5,11,\"AA\",\"1029\",\"LGA\",\"MIA\",-6.00,-17.00,0.00,\"\",0.00,186.00,147.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"1029\",\"LGA\",\"MIA\",-6.00,-9.00,0.00,\"\",0.00,194.00,164.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1029\",\"LGA\",\"MIA\",-5.00,-7.00,0.00,\"\",0.00,195.00,146.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1029\",\"LGA\",\"MIA\",3.00,-12.00,0.00,\"\",0.00,182.00,150.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1029\",\"LGA\",\"MIA\",186.00,151.00,0.00,\"\",0.00,162.00,142.00,1096.00,151.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"AA\",\"1029\",\"LGA\",\"MIA\",-11.00,-14.00,0.00,\"\",0.00,194.00,176.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1029\",\"LGA\",\"MIA\",-6.00,-13.00,0.00,\"\",0.00,190.00,142.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1029\",\"LGA\",\"MIA\",89.00,69.00,0.00,\"\",0.00,177.00,146.00,1096.00,0.00,0.00,0.00,0.00,69.00,\n2015,5,19,\"AA\",\"1029\",\"LGA\",\"MIA\",5.00,23.00,0.00,\"\",0.00,215.00,164.00,1096.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,20,\"AA\",\"1029\",\"LGA\",\"MIA\",-5.00,28.00,0.00,\"\",0.00,230.00,153.00,1096.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,21,\"AA\",\"1029\",\"LGA\",\"MIA\",30.00,36.00,0.00,\"\",0.00,203.00,169.00,1096.00,0.00,0.00,6.00,0.00,30.00,\n2015,5,22,\"AA\",\"1029\",\"LGA\",\"MIA\",-6.00,-13.00,0.00,\"\",0.00,190.00,150.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1029\",\"LGA\",\"MIA\",36.00,-6.00,0.00,\"\",0.00,155.00,137.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1029\",\"LGA\",\"MIA\",10.00,-26.00,0.00,\"\",0.00,161.00,142.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1029\",\"LGA\",\"MIA\",19.00,-5.00,0.00,\"\",0.00,173.00,146.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1029\",\"LGA\",\"MIA\",9.00,-19.00,0.00,\"\",0.00,169.00,147.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1029\",\"LGA\",\"MIA\",0.00,17.00,0.00,\"\",0.00,214.00,146.00,1096.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,28,\"AA\",\"1029\",\"LGA\",\"MIA\",-7.00,-3.00,0.00,\"\",0.00,201.00,152.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1029\",\"LGA\",\"MIA\",-1.00,-24.00,0.00,\"\",0.00,174.00,146.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1029\",\"LGA\",\"MIA\",-15.00,-5.00,0.00,\"\",0.00,207.00,141.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1029\",\"LGA\",\"MIA\",880.00,873.00,0.00,\"\",0.00,190.00,155.00,1096.00,634.00,0.00,0.00,0.00,239.00,\n2015,5,1,\"AA\",\"1029\",\"MIA\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,160.00,139.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1029\",\"MIA\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,174.00,156.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1029\",\"MIA\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,166.00,150.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1029\",\"MIA\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,168.00,152.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1029\",\"MIA\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,168.00,149.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1029\",\"MIA\",\"LGA\",12.00,-4.00,0.00,\"\",0.00,160.00,142.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1029\",\"MIA\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,167.00,152.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1029\",\"MIA\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,177.00,155.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1029\",\"MIA\",\"LGA\",-2.00,3.00,0.00,\"\",0.00,181.00,163.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"1029\",\"MIA\",\"LGA\",85.00,97.00,0.00,\"\",0.00,188.00,160.00,1096.00,3.00,0.00,12.00,0.00,82.00,\n2015,5,11,\"AA\",\"1029\",\"MIA\",\"LGA\",2.00,9.00,0.00,\"\",0.00,183.00,159.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"1029\",\"MIA\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,177.00,151.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1029\",\"MIA\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,171.00,149.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1029\",\"MIA\",\"LGA\",-3.00,-1.00,0.00,\"\",0.00,178.00,153.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1029\",\"MIA\",\"LGA\",98.00,98.00,0.00,\"\",0.00,176.00,155.00,1096.00,10.00,0.00,0.00,0.00,88.00,\n2015,5,16,\"AA\",\"1029\",\"MIA\",\"LGA\",-5.00,-1.00,0.00,\"\",0.00,180.00,162.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1029\",\"MIA\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,179.00,155.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1029\",\"MIA\",\"LGA\",104.00,106.00,0.00,\"\",0.00,178.00,153.00,1096.00,0.00,0.00,18.00,0.00,88.00,\n2015,5,19,\"AA\",\"1029\",\"MIA\",\"LGA\",-2.00,19.00,0.00,\"\",0.00,197.00,151.00,1096.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,20,\"AA\",\"1029\",\"MIA\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,167.00,148.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"1029\",\"MIA\",\"LGA\",14.00,49.00,0.00,\"\",0.00,211.00,187.00,1096.00,14.00,0.00,35.00,0.00,0.00,\n2015,5,22,\"AA\",\"1029\",\"MIA\",\"LGA\",15.00,-3.00,0.00,\"\",0.00,158.00,142.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1029\",\"MIA\",\"LGA\",58.00,50.00,0.00,\"\",0.00,168.00,149.00,1096.00,15.00,0.00,0.00,0.00,35.00,\n2015,5,24,\"AA\",\"1029\",\"MIA\",\"LGA\",17.00,20.00,0.00,\"\",0.00,179.00,153.00,1096.00,0.00,0.00,3.00,0.00,17.00,\n2015,5,25,\"AA\",\"1029\",\"MIA\",\"LGA\",56.00,42.00,0.00,\"\",0.00,162.00,149.00,1096.00,42.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"AA\",\"1029\",\"MIA\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,162.00,142.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1029\",\"MIA\",\"LGA\",33.00,23.00,0.00,\"\",0.00,166.00,147.00,1096.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,28,\"AA\",\"1029\",\"MIA\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,166.00,148.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1029\",\"MIA\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,166.00,151.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1029\",\"MIA\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,167.00,147.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1029\",\"MIA\",\"LGA\",28.00,,0.00,\"\",1.00,,,1096.00,,,,,,\n2015,5,1,\"AA\",\"1048\",\"MIA\",\"JFK\",62.00,39.00,0.00,\"\",0.00,155.00,134.00,1089.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"AA\",\"1048\",\"MIA\",\"JFK\",18.00,11.00,0.00,\"\",0.00,171.00,135.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"1048\",\"MIA\",\"JFK\",11.00,-8.00,0.00,\"\",0.00,159.00,138.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"1048\",\"MIA\",\"JFK\",176.00,173.00,0.00,\"\",0.00,175.00,138.00,1089.00,38.00,0.00,0.00,0.00,135.00,\n2015,5,5,\"AA\",\"1048\",\"MIA\",\"JFK\",9.00,-6.00,0.00,\"\",0.00,163.00,143.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"1048\",\"MIA\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,167.00,142.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"1048\",\"MIA\",\"JFK\",-4.00,-6.00,0.00,\"\",0.00,178.00,151.00,1089.00,,,,,,\n2015,5,8,\"AA\",\"1048\",\"MIA\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,170.00,144.00,1089.00,,,,,,\n2015,5,9,\"AA\",\"1048\",\"MIA\",\"JFK\",54.00,50.00,0.00,\"\",0.00,176.00,156.00,1089.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,10,\"AA\",\"1048\",\"MIA\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,179.00,156.00,1089.00,,,,,,\n2015,5,11,\"AA\",\"1048\",\"MIA\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,167.00,143.00,1089.00,,,,,,\n2015,5,12,\"AA\",\"1048\",\"MIA\",\"JFK\",10.00,-3.00,0.00,\"\",0.00,167.00,141.00,1089.00,,,,,,\n2015,5,13,\"AA\",\"1048\",\"MIA\",\"JFK\",3.00,15.00,0.00,\"\",0.00,192.00,150.00,1089.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,14,\"AA\",\"1048\",\"MIA\",\"JFK\",4.00,3.00,0.00,\"\",0.00,179.00,150.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"1048\",\"MIA\",\"JFK\",-1.00,4.00,0.00,\"\",0.00,185.00,155.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"1048\",\"MIA\",\"JFK\",30.00,27.00,0.00,\"\",0.00,177.00,156.00,1089.00,16.00,0.00,0.00,0.00,11.00,\n2015,5,17,\"AA\",\"1048\",\"MIA\",\"JFK\",8.00,-8.00,0.00,\"\",0.00,164.00,145.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"1048\",\"MIA\",\"JFK\",25.00,14.00,0.00,\"\",0.00,169.00,144.00,1089.00,,,,,,\n2015,5,19,\"AA\",\"1048\",\"MIA\",\"JFK\",29.00,51.00,0.00,\"\",0.00,202.00,159.00,1089.00,29.00,0.00,22.00,0.00,0.00,\n2015,5,20,\"AA\",\"1048\",\"MIA\",\"JFK\",3.00,1.00,0.00,\"\",0.00,178.00,144.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"1048\",\"MIA\",\"JFK\",25.00,29.00,0.00,\"\",0.00,184.00,152.00,1089.00,25.00,0.00,4.00,0.00,0.00,\n2015,5,22,\"AA\",\"1048\",\"MIA\",\"JFK\",68.00,56.00,0.00,\"\",0.00,168.00,148.00,1089.00,0.00,0.00,10.00,0.00,46.00,\n2015,5,23,\"AA\",\"1048\",\"MIA\",\"JFK\",33.00,18.00,0.00,\"\",0.00,165.00,145.00,1089.00,5.00,0.00,0.00,0.00,13.00,\n2015,5,24,\"AA\",\"1048\",\"MIA\",\"JFK\",-10.00,-13.00,0.00,\"\",0.00,177.00,147.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"1048\",\"MIA\",\"JFK\",41.00,26.00,0.00,\"\",0.00,165.00,146.00,1089.00,22.00,0.00,0.00,0.00,4.00,\n2015,5,26,\"AA\",\"1048\",\"MIA\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,160.00,141.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"1048\",\"MIA\",\"JFK\",258.00,249.00,0.00,\"\",0.00,171.00,142.00,1089.00,0.00,0.00,249.00,0.00,0.00,\n2015,5,28,\"AA\",\"1048\",\"MIA\",\"JFK\",3.00,15.00,0.00,\"\",0.00,192.00,172.00,1089.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,29,\"AA\",\"1048\",\"MIA\",\"JFK\",-1.00,-7.00,0.00,\"\",0.00,174.00,150.00,1089.00,,,,,,\n2015,5,30,\"AA\",\"1048\",\"MIA\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,166.00,147.00,1089.00,,,,,,\n2015,5,31,\"AA\",\"1048\",\"MIA\",\"JFK\",1.00,35.00,0.00,\"\",0.00,214.00,166.00,1089.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,16,\"AA\",\"1111\",\"LGA\",\"DFW\",11.00,13.00,0.00,\"\",0.00,239.00,200.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1111\",\"LGA\",\"DFW\",1.00,-9.00,0.00,\"\",0.00,227.00,197.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1111\",\"LGA\",\"DFW\",-5.00,-1.00,0.00,\"\",0.00,241.00,191.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1111\",\"LGA\",\"DFW\",-1.00,-6.00,0.00,\"\",0.00,232.00,208.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1111\",\"LGA\",\"DFW\",-5.00,-4.00,0.00,\"\",0.00,238.00,202.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1111\",\"LGA\",\"DFW\",-4.00,-3.00,0.00,\"\",0.00,238.00,215.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1111\",\"LGA\",\"DFW\",0.00,-4.00,0.00,\"\",0.00,233.00,206.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1111\",\"LGA\",\"DFW\",-4.00,-6.00,0.00,\"\",0.00,235.00,196.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1111\",\"LGA\",\"DFW\",7.00,5.00,0.00,\"\",0.00,235.00,210.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1111\",\"LGA\",\"DFW\",-11.00,12.00,0.00,\"\",0.00,260.00,205.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1111\",\"LGA\",\"DFW\",-2.00,-27.00,0.00,\"\",0.00,212.00,191.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1111\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,28,\"AA\",\"1111\",\"LGA\",\"DFW\",80.00,75.00,0.00,\"\",0.00,232.00,190.00,1389.00,75.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"AA\",\"1111\",\"LGA\",\"DFW\",-1.00,-12.00,0.00,\"\",0.00,226.00,180.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1111\",\"LGA\",\"DFW\",-7.00,-6.00,0.00,\"\",0.00,238.00,187.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1111\",\"LGA\",\"DFW\",-4.00,-23.00,0.00,\"\",0.00,218.00,191.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1112\",\"DFW\",\"LGA\",72.00,62.00,0.00,\"\",0.00,201.00,186.00,1389.00,62.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"AA\",\"1112\",\"DFW\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,203.00,182.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1112\",\"DFW\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,208.00,190.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1112\",\"DFW\",\"LGA\",2.00,-4.00,0.00,\"\",0.00,205.00,185.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1112\",\"DFW\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,205.00,187.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1112\",\"DFW\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,210.00,187.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1112\",\"DFW\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,208.00,184.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1112\",\"DFW\",\"LGA\",18.00,4.00,0.00,\"\",0.00,197.00,179.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1112\",\"DFW\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,214.00,193.00,1389.00,,,,,,\n2015,5,10,\"AA\",\"1112\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1112\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,12,\"AA\",\"1112\",\"DFW\",\"LGA\",-2.00,-30.00,0.00,\"\",0.00,183.00,158.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1112\",\"DFW\",\"LGA\",-3.00,-25.00,0.00,\"\",0.00,189.00,167.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1112\",\"DFW\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,196.00,177.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1112\",\"DFW\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,206.00,169.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1112\",\"DFW\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,194.00,175.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1112\",\"DFW\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,202.00,179.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1112\",\"DFW\",\"LGA\",3.00,-4.00,0.00,\"\",0.00,204.00,173.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1112\",\"DFW\",\"LGA\",0.00,54.00,0.00,\"\",0.00,265.00,171.00,1389.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,20,\"AA\",\"1112\",\"DFW\",\"LGA\",-7.00,-31.00,0.00,\"\",0.00,187.00,166.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1112\",\"DFW\",\"LGA\",59.00,33.00,0.00,\"\",0.00,185.00,166.00,1389.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"AA\",\"1112\",\"DFW\",\"LGA\",-8.00,-47.00,0.00,\"\",0.00,172.00,156.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1112\",\"DFW\",\"LGA\",-6.00,-35.00,0.00,\"\",0.00,182.00,166.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1112\",\"DFW\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,199.00,175.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1112\",\"DFW\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,198.00,174.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1112\",\"DFW\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,192.00,174.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1112\",\"DFW\",\"LGA\",1.00,-15.00,0.00,\"\",0.00,195.00,172.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1112\",\"DFW\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,202.00,182.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1112\",\"DFW\",\"LGA\",36.00,23.00,0.00,\"\",0.00,198.00,176.00,1389.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,30,\"AA\",\"1112\",\"DFW\",\"LGA\",24.00,50.00,0.00,\"\",0.00,237.00,181.00,1389.00,0.00,24.00,26.00,0.00,0.00,\n2015,5,31,\"AA\",\"1112\",\"DFW\",\"LGA\",11.00,3.00,0.00,\"\",0.00,203.00,176.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1112\",\"LGA\",\"DFW\",47.00,42.00,0.00,\"\",0.00,240.00,182.00,1389.00,0.00,0.00,0.00,0.00,42.00,\n2015,5,2,\"AA\",\"1112\",\"LGA\",\"DFW\",,,1.00,\"A\",0.00,,,1389.00,,,,,,\n2015,5,3,\"AA\",\"1112\",\"LGA\",\"DFW\",-8.00,-51.00,0.00,\"\",0.00,202.00,181.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1112\",\"LGA\",\"DFW\",-6.00,-47.00,0.00,\"\",0.00,204.00,183.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1112\",\"LGA\",\"DFW\",-10.00,-55.00,0.00,\"\",0.00,200.00,181.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1112\",\"LGA\",\"DFW\",-5.00,-48.00,0.00,\"\",0.00,202.00,176.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1112\",\"LGA\",\"DFW\",17.00,5.00,0.00,\"\",0.00,233.00,205.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1112\",\"LGA\",\"DFW\",-6.00,-28.00,0.00,\"\",0.00,223.00,187.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1112\",\"LGA\",\"DFW\",92.00,88.00,0.00,\"\",0.00,241.00,194.00,1389.00,0.00,88.00,0.00,0.00,0.00,\n2015,5,10,\"AA\",\"1112\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1112\",\"LGA\",\"DFW\",22.00,37.00,0.00,\"\",0.00,260.00,207.00,1389.00,22.00,0.00,15.00,0.00,0.00,\n2015,5,12,\"AA\",\"1112\",\"LGA\",\"DFW\",-6.00,-12.00,0.00,\"\",0.00,239.00,216.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1112\",\"LGA\",\"DFW\",-4.00,-6.00,0.00,\"\",0.00,243.00,203.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1112\",\"LGA\",\"DFW\",-1.00,-19.00,0.00,\"\",0.00,227.00,196.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1112\",\"LGA\",\"DFW\",-1.00,-18.00,0.00,\"\",0.00,228.00,192.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1112\",\"LGA\",\"DFW\",-10.00,-23.00,0.00,\"\",0.00,232.00,196.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1112\",\"LGA\",\"DFW\",-1.00,-24.00,0.00,\"\",0.00,222.00,200.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1112\",\"LGA\",\"DFW\",-5.00,-17.00,0.00,\"\",0.00,233.00,190.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1112\",\"LGA\",\"DFW\",38.00,9.00,0.00,\"\",0.00,216.00,192.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1112\",\"LGA\",\"DFW\",-5.00,-32.00,0.00,\"\",0.00,218.00,202.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1112\",\"LGA\",\"DFW\",18.00,21.00,0.00,\"\",0.00,248.00,216.00,1389.00,0.00,0.00,3.00,0.00,18.00,\n2015,5,22,\"AA\",\"1112\",\"LGA\",\"DFW\",-6.00,-15.00,0.00,\"\",0.00,236.00,209.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1112\",\"LGA\",\"DFW\",-8.00,-32.00,0.00,\"\",0.00,221.00,201.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1112\",\"LGA\",\"DFW\",-2.00,-34.00,0.00,\"\",0.00,213.00,192.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1112\",\"LGA\",\"DFW\",24.00,60.00,0.00,\"\",0.00,281.00,244.00,1389.00,0.00,24.00,36.00,0.00,0.00,\n2015,5,26,\"AA\",\"1112\",\"LGA\",\"DFW\",-5.00,-21.00,0.00,\"\",0.00,229.00,191.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1112\",\"LGA\",\"DFW\",-3.00,-22.00,0.00,\"\",0.00,226.00,192.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1112\",\"LGA\",\"DFW\",-12.00,-2.00,0.00,\"\",0.00,255.00,212.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1112\",\"LGA\",\"DFW\",5.00,-19.00,0.00,\"\",0.00,221.00,192.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1112\",\"LGA\",\"DFW\",-8.00,-33.00,0.00,\"\",0.00,220.00,191.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1112\",\"LGA\",\"DFW\",0.00,-19.00,0.00,\"\",0.00,226.00,195.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1114\",\"DFW\",\"LGA\",14.00,11.00,0.00,\"\",0.00,202.00,186.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1114\",\"DFW\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,190.00,174.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1114\",\"DFW\",\"LGA\",-1.00,6.00,0.00,\"\",0.00,212.00,192.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1114\",\"DFW\",\"LGA\",-5.00,-1.00,0.00,\"\",0.00,209.00,190.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1114\",\"DFW\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,192.00,178.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1114\",\"DFW\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,202.00,183.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1114\",\"DFW\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,205.00,191.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1114\",\"DFW\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,205.00,184.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1114\",\"DFW\",\"LGA\",-9.00,24.00,0.00,\"\",0.00,238.00,216.00,1389.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,10,\"AA\",\"1114\",\"DFW\",\"LGA\",128.00,125.00,0.00,\"\",0.00,202.00,187.00,1389.00,0.00,109.00,0.00,0.00,16.00,\n2015,5,11,\"AA\",\"1114\",\"DFW\",\"LGA\",62.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,12,\"AA\",\"1114\",\"DFW\",\"LGA\",-5.00,-30.00,0.00,\"\",0.00,180.00,166.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1114\",\"DFW\",\"LGA\",-4.00,-30.00,0.00,\"\",0.00,179.00,165.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1114\",\"DFW\",\"LGA\",21.00,13.00,0.00,\"\",0.00,197.00,175.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1114\",\"DFW\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,197.00,173.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1114\",\"DFW\",\"LGA\",14.00,-3.00,0.00,\"\",0.00,188.00,175.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1114\",\"DFW\",\"LGA\",14.00,11.00,0.00,\"\",0.00,202.00,181.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1114\",\"DFW\",\"LGA\",-2.00,11.00,0.00,\"\",0.00,218.00,169.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1114\",\"DFW\",\"LGA\",0.00,39.00,0.00,\"\",0.00,244.00,174.00,1389.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,20,\"AA\",\"1114\",\"DFW\",\"LGA\",31.00,7.00,0.00,\"\",0.00,181.00,165.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1114\",\"DFW\",\"LGA\",14.00,-11.00,0.00,\"\",0.00,180.00,165.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1114\",\"DFW\",\"LGA\",-8.00,-26.00,0.00,\"\",0.00,187.00,160.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1114\",\"DFW\",\"LGA\",-4.00,-26.00,0.00,\"\",0.00,183.00,165.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1114\",\"DFW\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,199.00,180.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1114\",\"DFW\",\"LGA\",-7.00,-25.00,0.00,\"\",0.00,187.00,175.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1114\",\"DFW\",\"LGA\",102.00,98.00,0.00,\"\",0.00,201.00,177.00,1389.00,38.00,0.00,0.00,0.00,60.00,\n2015,5,27,\"AA\",\"1114\",\"DFW\",\"LGA\",45.00,44.00,0.00,\"\",0.00,204.00,178.00,1389.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"AA\",\"1114\",\"DFW\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,201.00,176.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1114\",\"DFW\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,202.00,182.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1114\",\"DFW\",\"LGA\",42.00,58.00,0.00,\"\",0.00,221.00,191.00,1389.00,0.00,36.00,16.00,0.00,6.00,\n2015,5,31,\"AA\",\"1114\",\"DFW\",\"LGA\",7.00,-10.00,0.00,\"\",0.00,188.00,172.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1114\",\"LGA\",\"DFW\",-2.00,-7.00,0.00,\"\",0.00,237.00,181.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1114\",\"LGA\",\"DFW\",7.00,-12.00,0.00,\"\",0.00,223.00,182.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1114\",\"LGA\",\"DFW\",-10.00,-32.00,0.00,\"\",0.00,220.00,184.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1114\",\"LGA\",\"DFW\",-8.00,-20.00,0.00,\"\",0.00,230.00,185.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1114\",\"LGA\",\"DFW\",-10.00,-22.00,0.00,\"\",0.00,230.00,184.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1114\",\"LGA\",\"DFW\",-12.00,-11.00,0.00,\"\",0.00,243.00,184.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1114\",\"LGA\",\"DFW\",-7.00,-10.00,0.00,\"\",0.00,239.00,204.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1114\",\"LGA\",\"DFW\",-7.00,-16.00,0.00,\"\",0.00,233.00,194.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1114\",\"LGA\",\"DFW\",105.00,86.00,0.00,\"\",0.00,223.00,192.00,1389.00,0.00,0.00,0.00,0.00,86.00,\n2015,5,10,\"AA\",\"1114\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1114\",\"LGA\",\"DFW\",37.00,69.00,0.00,\"\",0.00,274.00,199.00,1389.00,21.00,0.00,32.00,0.00,16.00,\n2015,5,12,\"AA\",\"1114\",\"LGA\",\"DFW\",-9.00,-8.00,0.00,\"\",0.00,243.00,204.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1114\",\"LGA\",\"DFW\",31.00,48.00,0.00,\"\",0.00,259.00,199.00,1389.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,14,\"AA\",\"1114\",\"LGA\",\"DFW\",-9.00,6.00,0.00,\"\",0.00,257.00,194.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1114\",\"LGA\",\"DFW\",-7.00,7.00,0.00,\"\",0.00,256.00,197.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1114\",\"LGA\",\"DFW\",-7.00,-9.00,0.00,\"\",0.00,240.00,198.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1114\",\"LGA\",\"DFW\",-13.00,-28.00,0.00,\"\",0.00,227.00,193.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1114\",\"LGA\",\"DFW\",-8.00,-11.00,0.00,\"\",0.00,239.00,196.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1114\",\"LGA\",\"DFW\",4.00,-6.00,0.00,\"\",0.00,232.00,200.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1114\",\"LGA\",\"DFW\",-9.00,-3.00,0.00,\"\",0.00,248.00,197.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1114\",\"LGA\",\"DFW\",-3.00,11.00,0.00,\"\",0.00,256.00,207.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1114\",\"LGA\",\"DFW\",2.00,-5.00,0.00,\"\",0.00,235.00,202.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1114\",\"LGA\",\"DFW\",14.00,0.00,0.00,\"\",0.00,228.00,209.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1114\",\"LGA\",\"DFW\",-7.00,-34.00,0.00,\"\",0.00,215.00,196.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1114\",\"LGA\",\"DFW\",58.00,88.00,0.00,\"\",0.00,272.00,232.00,1389.00,0.00,48.00,30.00,0.00,10.00,\n2015,5,26,\"AA\",\"1114\",\"LGA\",\"DFW\",-3.00,-7.00,0.00,\"\",0.00,238.00,212.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1114\",\"LGA\",\"DFW\",,,1.00,\"C\",0.00,,,1389.00,,,,,,\n2015,5,28,\"AA\",\"1114\",\"LGA\",\"DFW\",-7.00,-6.00,0.00,\"\",0.00,243.00,204.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1114\",\"LGA\",\"DFW\",-6.00,-26.00,0.00,\"\",0.00,222.00,186.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1114\",\"LGA\",\"DFW\",-6.00,-26.00,0.00,\"\",0.00,222.00,191.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1114\",\"LGA\",\"DFW\",-2.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,1,\"AA\",\"1121\",\"LGA\",\"DFW\",-6.00,-20.00,0.00,\"\",0.00,226.00,179.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1121\",\"LGA\",\"DFW\",-8.00,-31.00,0.00,\"\",0.00,217.00,183.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1121\",\"LGA\",\"DFW\",20.00,1.00,0.00,\"\",0.00,221.00,188.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1121\",\"LGA\",\"DFW\",-5.00,-15.00,0.00,\"\",0.00,230.00,190.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1121\",\"LGA\",\"DFW\",-5.00,-24.00,0.00,\"\",0.00,221.00,182.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1121\",\"LGA\",\"DFW\",-11.00,-11.00,0.00,\"\",0.00,240.00,189.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1121\",\"LGA\",\"DFW\",-6.00,-14.00,0.00,\"\",0.00,232.00,198.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1121\",\"LGA\",\"DFW\",-7.00,-8.00,0.00,\"\",0.00,239.00,191.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1121\",\"LGA\",\"DFW\",30.00,38.00,0.00,\"\",0.00,248.00,226.00,1389.00,30.00,0.00,8.00,0.00,0.00,\n2015,5,10,\"AA\",\"1121\",\"LGA\",\"DFW\",6.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1121\",\"LGA\",\"DFW\",9.00,39.00,0.00,\"\",0.00,270.00,216.00,1389.00,9.00,0.00,30.00,0.00,0.00,\n2015,5,12,\"AA\",\"1121\",\"LGA\",\"DFW\",-5.00,-11.00,0.00,\"\",0.00,234.00,210.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1121\",\"LGA\",\"DFW\",55.00,34.00,0.00,\"\",0.00,219.00,191.00,1389.00,34.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"AA\",\"1121\",\"LGA\",\"DFW\",,,1.00,\"A\",0.00,,,1389.00,,,,,,\n2015,5,15,\"AA\",\"1121\",\"LGA\",\"DFW\",-7.00,-25.00,0.00,\"\",0.00,222.00,193.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1121\",\"LGA\",\"DFW\",105.00,113.00,0.00,\"\",0.00,248.00,196.00,1389.00,105.00,0.00,8.00,0.00,0.00,\n2015,5,17,\"AA\",\"1121\",\"LGA\",\"DFW\",-7.00,-19.00,0.00,\"\",0.00,228.00,203.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1121\",\"LGA\",\"DFW\",-7.00,-16.00,0.00,\"\",0.00,231.00,198.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1121\",\"LGA\",\"DFW\",0.00,-3.00,0.00,\"\",0.00,237.00,197.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1121\",\"LGA\",\"DFW\",-3.00,7.00,0.00,\"\",0.00,250.00,204.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1121\",\"LGA\",\"DFW\",18.00,4.00,0.00,\"\",0.00,226.00,199.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1121\",\"LGA\",\"DFW\",237.00,247.00,0.00,\"\",0.00,250.00,195.00,1389.00,0.00,0.00,10.00,0.00,237.00,\n2015,5,23,\"AA\",\"1121\",\"LGA\",\"DFW\",-6.00,-10.00,0.00,\"\",0.00,236.00,206.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1121\",\"LGA\",\"DFW\",-8.00,-18.00,0.00,\"\",0.00,230.00,210.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1121\",\"LGA\",\"DFW\",-10.00,-23.00,0.00,\"\",0.00,227.00,207.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1121\",\"LGA\",\"DFW\",-7.00,-21.00,0.00,\"\",0.00,226.00,191.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1121\",\"LGA\",\"DFW\",0.00,-9.00,0.00,\"\",0.00,231.00,193.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1121\",\"LGA\",\"DFW\",-5.00,-23.00,0.00,\"\",0.00,222.00,188.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1121\",\"LGA\",\"DFW\",-3.00,-8.00,0.00,\"\",0.00,235.00,186.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1121\",\"LGA\",\"DFW\",-3.00,-17.00,0.00,\"\",0.00,226.00,185.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1121\",\"LGA\",\"DFW\",-8.00,-24.00,0.00,\"\",0.00,224.00,195.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1131\",\"LGA\",\"DFW\",-4.00,-24.00,0.00,\"\",0.00,232.00,180.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1131\",\"LGA\",\"DFW\",-5.00,-42.00,0.00,\"\",0.00,215.00,184.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1131\",\"LGA\",\"DFW\",-2.00,-46.00,0.00,\"\",0.00,208.00,183.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1131\",\"LGA\",\"DFW\",-5.00,-21.00,0.00,\"\",0.00,236.00,196.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1131\",\"LGA\",\"DFW\",-7.00,-52.00,0.00,\"\",0.00,207.00,183.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1131\",\"LGA\",\"DFW\",-7.00,-28.00,0.00,\"\",0.00,231.00,184.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1131\",\"LGA\",\"DFW\",-5.00,-24.00,0.00,\"\",0.00,233.00,197.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1131\",\"LGA\",\"DFW\",1.00,-9.00,0.00,\"\",0.00,242.00,191.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1131\",\"LGA\",\"DFW\",30.00,44.00,0.00,\"\",0.00,266.00,200.00,1389.00,30.00,0.00,14.00,0.00,0.00,\n2015,5,10,\"AA\",\"1131\",\"LGA\",\"DFW\",-6.00,87.00,0.00,\"\",0.00,345.00,284.00,1389.00,0.00,0.00,87.00,0.00,0.00,\n2015,5,11,\"AA\",\"1131\",\"LGA\",\"DFW\",22.00,-9.00,0.00,\"\",0.00,221.00,191.00,1389.00,,,,,,\n2015,5,12,\"AA\",\"1131\",\"LGA\",\"DFW\",-2.00,-14.00,0.00,\"\",0.00,240.00,214.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1131\",\"LGA\",\"DFW\",31.00,41.00,0.00,\"\",0.00,262.00,196.00,1389.00,31.00,0.00,10.00,0.00,0.00,\n2015,5,14,\"AA\",\"1131\",\"LGA\",\"DFW\",11.00,-2.00,0.00,\"\",0.00,239.00,194.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1131\",\"LGA\",\"DFW\",-8.00,-34.00,0.00,\"\",0.00,226.00,195.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1131\",\"LGA\",\"DFW\",3.00,-5.00,0.00,\"\",0.00,244.00,194.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1131\",\"LGA\",\"DFW\",-6.00,-15.00,0.00,\"\",0.00,243.00,202.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1131\",\"LGA\",\"DFW\",62.00,27.00,0.00,\"\",0.00,217.00,199.00,1389.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"AA\",\"1131\",\"LGA\",\"DFW\",-3.00,-23.00,0.00,\"\",0.00,232.00,193.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1131\",\"LGA\",\"DFW\",425.00,439.00,0.00,\"\",0.00,266.00,201.00,1389.00,0.00,0.00,14.00,0.00,425.00,\n2015,5,21,\"AA\",\"1131\",\"LGA\",\"DFW\",19.00,-5.00,0.00,\"\",0.00,228.00,203.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1131\",\"LGA\",\"DFW\",,,1.00,\"A\",0.00,,,1389.00,,,,,,\n2015,5,23,\"AA\",\"1131\",\"LGA\",\"DFW\",168.00,144.00,0.00,\"\",0.00,228.00,197.00,1389.00,144.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"AA\",\"1131\",\"LGA\",\"DFW\",0.00,-23.00,0.00,\"\",0.00,229.00,192.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1131\",\"LGA\",\"DFW\",-7.00,-32.00,0.00,\"\",0.00,227.00,192.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1131\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,27,\"AA\",\"1131\",\"LGA\",\"DFW\",-2.00,-30.00,0.00,\"\",0.00,224.00,198.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1131\",\"LGA\",\"DFW\",0.00,-12.00,0.00,\"\",0.00,240.00,186.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1131\",\"LGA\",\"DFW\",-9.00,-25.00,0.00,\"\",0.00,236.00,182.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1131\",\"LGA\",\"DFW\",32.00,10.00,0.00,\"\",0.00,230.00,190.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1131\",\"LGA\",\"DFW\",-5.00,-47.00,0.00,\"\",0.00,210.00,190.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1133\",\"LGA\",\"MIA\",8.00,20.00,0.00,\"\",0.00,207.00,160.00,1096.00,0.00,0.00,12.00,0.00,8.00,\n2015,5,2,\"AA\",\"1133\",\"LGA\",\"MIA\",74.00,48.00,0.00,\"\",0.00,169.00,153.00,1096.00,0.00,0.00,0.00,0.00,48.00,\n2015,5,3,\"AA\",\"1133\",\"LGA\",\"MIA\",12.00,13.00,0.00,\"\",0.00,196.00,151.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1133\",\"LGA\",\"MIA\",-7.00,-9.00,0.00,\"\",0.00,193.00,165.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1133\",\"LGA\",\"MIA\",-10.00,-22.00,0.00,\"\",0.00,183.00,160.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1133\",\"LGA\",\"MIA\",-8.00,7.00,0.00,\"\",0.00,210.00,160.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1133\",\"LGA\",\"MIA\",-8.00,-37.00,0.00,\"\",0.00,166.00,146.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1133\",\"LGA\",\"MIA\",-9.00,-30.00,0.00,\"\",0.00,174.00,147.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1133\",\"LGA\",\"MIA\",10.00,37.00,0.00,\"\",0.00,222.00,148.00,1096.00,0.00,0.00,27.00,0.00,10.00,\n2015,5,10,\"AA\",\"1133\",\"LGA\",\"MIA\",-5.00,-11.00,0.00,\"\",0.00,189.00,153.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"1133\",\"LGA\",\"MIA\",-9.00,-16.00,0.00,\"\",0.00,188.00,158.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"1133\",\"LGA\",\"MIA\",-7.00,-50.00,0.00,\"\",0.00,152.00,138.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1133\",\"LGA\",\"MIA\",-5.00,-1.00,0.00,\"\",0.00,199.00,149.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1133\",\"LGA\",\"MIA\",-3.00,-15.00,0.00,\"\",0.00,183.00,138.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1133\",\"LGA\",\"MIA\",-9.00,-25.00,0.00,\"\",0.00,179.00,151.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1133\",\"LGA\",\"MIA\",-6.00,-21.00,0.00,\"\",0.00,180.00,141.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1133\",\"LGA\",\"MIA\",-10.00,-36.00,0.00,\"\",0.00,169.00,145.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1133\",\"LGA\",\"MIA\",2.00,-31.00,0.00,\"\",0.00,162.00,143.00,1096.00,,,,,,\n2015,5,19,\"AA\",\"1133\",\"LGA\",\"MIA\",53.00,39.00,0.00,\"\",0.00,181.00,153.00,1096.00,0.00,0.00,0.00,0.00,39.00,\n2015,5,20,\"AA\",\"1133\",\"LGA\",\"MIA\",-9.00,-17.00,0.00,\"\",0.00,187.00,146.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"1133\",\"LGA\",\"MIA\",-2.00,-11.00,0.00,\"\",0.00,186.00,154.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1133\",\"LGA\",\"MIA\",-8.00,-22.00,0.00,\"\",0.00,181.00,154.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1133\",\"LGA\",\"MIA\",-5.00,-24.00,0.00,\"\",0.00,176.00,146.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1133\",\"LGA\",\"MIA\",-4.00,-45.00,0.00,\"\",0.00,154.00,137.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1133\",\"LGA\",\"MIA\",-10.00,-43.00,0.00,\"\",0.00,162.00,142.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1133\",\"LGA\",\"MIA\",-2.00,-22.00,0.00,\"\",0.00,175.00,145.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1133\",\"LGA\",\"MIA\",-14.00,-41.00,0.00,\"\",0.00,168.00,146.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"1133\",\"LGA\",\"MIA\",10.00,0.00,0.00,\"\",0.00,185.00,149.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1133\",\"LGA\",\"MIA\",-11.00,-29.00,0.00,\"\",0.00,177.00,141.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1133\",\"LGA\",\"MIA\",-7.00,-40.00,0.00,\"\",0.00,162.00,139.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1133\",\"LGA\",\"MIA\",-1.00,-24.00,0.00,\"\",0.00,172.00,144.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1133\",\"MIA\",\"LGA\",0.00,28.00,0.00,\"\",0.00,205.00,139.00,1096.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,2,\"AA\",\"1133\",\"MIA\",\"LGA\",73.00,92.00,0.00,\"\",0.00,196.00,161.00,1096.00,73.00,0.00,19.00,0.00,0.00,\n2015,5,3,\"AA\",\"1133\",\"MIA\",\"LGA\",44.00,28.00,0.00,\"\",0.00,161.00,147.00,1096.00,24.00,0.00,0.00,0.00,4.00,\n2015,5,4,\"AA\",\"1133\",\"MIA\",\"LGA\",-5.00,10.00,0.00,\"\",0.00,192.00,147.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1133\",\"MIA\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,160.00,139.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1133\",\"MIA\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,170.00,148.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1133\",\"MIA\",\"LGA\",-3.00,4.00,0.00,\"\",0.00,184.00,167.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1133\",\"MIA\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,172.00,153.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1133\",\"MIA\",\"LGA\",5.00,34.00,0.00,\"\",0.00,206.00,170.00,1096.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,1,\"AA\",\"325\",\"LGA\",\"ORD\",-3.00,-14.00,0.00,\"\",0.00,154.00,99.00,733.00,,,,,,\n2015,5,2,\"AA\",\"325\",\"LGA\",\"ORD\",-7.00,-30.00,0.00,\"\",0.00,142.00,103.00,733.00,,,,,,\n2015,5,3,\"AA\",\"325\",\"LGA\",\"ORD\",-5.00,-31.00,0.00,\"\",0.00,139.00,110.00,733.00,,,,,,\n2015,5,4,\"AA\",\"325\",\"LGA\",\"ORD\",-9.00,-24.00,0.00,\"\",0.00,150.00,112.00,733.00,,,,,,\n2015,5,5,\"AA\",\"325\",\"LGA\",\"ORD\",-9.00,-26.00,0.00,\"\",0.00,148.00,113.00,733.00,,,,,,\n2015,5,6,\"AA\",\"325\",\"LGA\",\"ORD\",-6.00,-6.00,0.00,\"\",0.00,165.00,113.00,733.00,,,,,,\n2015,5,7,\"AA\",\"325\",\"LGA\",\"ORD\",-7.00,-40.00,0.00,\"\",0.00,132.00,110.00,733.00,,,,,,\n2015,5,8,\"AA\",\"325\",\"LGA\",\"ORD\",0.00,-15.00,0.00,\"\",0.00,150.00,106.00,733.00,,,,,,\n2015,5,9,\"AA\",\"325\",\"LGA\",\"ORD\",-2.00,-14.00,0.00,\"\",0.00,153.00,111.00,733.00,,,,,,\n2015,5,10,\"AA\",\"325\",\"LGA\",\"ORD\",38.00,25.00,0.00,\"\",0.00,152.00,121.00,733.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"AA\",\"325\",\"LGA\",\"ORD\",-7.00,-16.00,0.00,\"\",0.00,156.00,115.00,733.00,,,,,,\n2015,5,12,\"AA\",\"325\",\"LGA\",\"ORD\",10.00,0.00,0.00,\"\",0.00,155.00,120.00,733.00,,,,,,\n2015,5,13,\"AA\",\"325\",\"LGA\",\"ORD\",-10.00,2.00,0.00,\"\",0.00,177.00,122.00,733.00,,,,,,\n2015,5,14,\"AA\",\"325\",\"LGA\",\"ORD\",5.00,21.00,0.00,\"\",0.00,181.00,116.00,733.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,15,\"AA\",\"325\",\"LGA\",\"ORD\",-5.00,-25.00,0.00,\"\",0.00,145.00,115.00,733.00,,,,,,\n2015,5,16,\"AA\",\"325\",\"LGA\",\"ORD\",-11.00,-20.00,0.00,\"\",0.00,156.00,114.00,733.00,,,,,,\n2015,5,17,\"AA\",\"325\",\"LGA\",\"ORD\",17.00,-5.00,0.00,\"\",0.00,143.00,111.00,733.00,,,,,,\n2015,5,18,\"AA\",\"325\",\"LGA\",\"ORD\",221.00,208.00,0.00,\"\",0.00,152.00,112.00,733.00,0.00,0.00,0.00,0.00,208.00,\n2015,5,19,\"AA\",\"325\",\"LGA\",\"ORD\",31.00,1.00,0.00,\"\",0.00,135.00,117.00,733.00,,,,,,\n2015,5,20,\"AA\",\"325\",\"LGA\",\"ORD\",-9.00,11.00,0.00,\"\",0.00,185.00,128.00,733.00,,,,,,\n2015,5,21,\"AA\",\"325\",\"LGA\",\"ORD\",46.00,13.00,0.00,\"\",0.00,132.00,115.00,733.00,,,,,,\n2015,5,22,\"AA\",\"325\",\"LGA\",\"ORD\",0.00,-4.00,0.00,\"\",0.00,161.00,116.00,733.00,,,,,,\n2015,5,23,\"AA\",\"325\",\"LGA\",\"ORD\",-10.00,-24.00,0.00,\"\",0.00,151.00,115.00,733.00,,,,,,\n2015,5,24,\"AA\",\"325\",\"LGA\",\"ORD\",-7.00,-15.00,0.00,\"\",0.00,157.00,118.00,733.00,,,,,,\n2015,5,25,\"AA\",\"325\",\"LGA\",\"ORD\",-11.00,-34.00,0.00,\"\",0.00,142.00,118.00,733.00,,,,,,\n2015,5,26,\"AA\",\"325\",\"LGA\",\"ORD\",-4.00,-15.00,0.00,\"\",0.00,154.00,118.00,733.00,,,,,,\n2015,5,27,\"AA\",\"325\",\"LGA\",\"ORD\",-7.00,-37.00,0.00,\"\",0.00,135.00,113.00,733.00,,,,,,\n2015,5,28,\"AA\",\"325\",\"LGA\",\"ORD\",8.00,-9.00,0.00,\"\",0.00,148.00,107.00,733.00,,,,,,\n2015,5,29,\"AA\",\"325\",\"LGA\",\"ORD\",-4.00,-13.00,0.00,\"\",0.00,156.00,111.00,733.00,,,,,,\n2015,5,30,\"AA\",\"325\",\"LGA\",\"ORD\",-4.00,-23.00,0.00,\"\",0.00,146.00,113.00,733.00,,,,,,\n2015,5,31,\"AA\",\"325\",\"LGA\",\"ORD\",-4.00,-15.00,0.00,\"\",0.00,154.00,119.00,733.00,,,,,,\n2015,5,1,\"AA\",\"328\",\"LGA\",\"ORD\",-6.00,-27.00,0.00,\"\",0.00,141.00,102.00,733.00,,,,,,\n2015,5,2,\"AA\",\"328\",\"LGA\",\"ORD\",-8.00,-32.00,0.00,\"\",0.00,138.00,106.00,733.00,,,,,,\n2015,5,3,\"AA\",\"328\",\"LGA\",\"ORD\",59.00,42.00,0.00,\"\",0.00,145.00,106.00,733.00,0.00,0.00,0.00,0.00,42.00,\n2015,5,4,\"AA\",\"328\",\"LGA\",\"ORD\",-6.00,-23.00,0.00,\"\",0.00,145.00,109.00,733.00,,,,,,\n2015,5,5,\"AA\",\"328\",\"LGA\",\"ORD\",-9.00,-22.00,0.00,\"\",0.00,149.00,121.00,733.00,,,,,,\n2015,5,6,\"AA\",\"328\",\"LGA\",\"ORD\",-7.00,-4.00,0.00,\"\",0.00,165.00,112.00,733.00,,,,,,\n2015,5,7,\"AA\",\"328\",\"LGA\",\"ORD\",-7.00,-28.00,0.00,\"\",0.00,141.00,111.00,733.00,,,,,,\n2015,5,8,\"AA\",\"328\",\"LGA\",\"ORD\",4.00,-10.00,0.00,\"\",0.00,148.00,110.00,733.00,,,,,,\n2015,5,9,\"AA\",\"328\",\"LGA\",\"ORD\",17.00,14.00,0.00,\"\",0.00,159.00,109.00,733.00,,,,,,\n2015,5,10,\"AA\",\"328\",\"LGA\",\"ORD\",-9.00,-4.00,0.00,\"\",0.00,167.00,111.00,733.00,,,,,,\n2015,5,11,\"AA\",\"328\",\"LGA\",\"ORD\",1.00,-19.00,0.00,\"\",0.00,142.00,109.00,733.00,,,,,,\n2015,5,12,\"AA\",\"328\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,13,\"AA\",\"328\",\"LGA\",\"ORD\",-7.00,32.00,0.00,\"\",0.00,201.00,123.00,733.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,14,\"AA\",\"328\",\"LGA\",\"ORD\",15.00,18.00,0.00,\"\",0.00,165.00,113.00,733.00,0.00,0.00,3.00,0.00,15.00,\n2015,5,15,\"AA\",\"328\",\"LGA\",\"ORD\",-5.00,-28.00,0.00,\"\",0.00,139.00,114.00,733.00,,,,,,\n2015,5,16,\"AA\",\"328\",\"LGA\",\"ORD\",-12.00,-4.00,0.00,\"\",0.00,170.00,118.00,733.00,,,,,,\n2015,5,17,\"AA\",\"328\",\"LGA\",\"ORD\",-13.00,-47.00,0.00,\"\",0.00,128.00,107.00,733.00,,,,,,\n2015,5,18,\"AA\",\"328\",\"LGA\",\"ORD\",217.00,221.00,0.00,\"\",0.00,166.00,112.00,733.00,0.00,0.00,4.00,0.00,217.00,\n2015,5,19,\"AA\",\"328\",\"LGA\",\"ORD\",42.00,16.00,0.00,\"\",0.00,136.00,115.00,733.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,20,\"AA\",\"328\",\"LGA\",\"ORD\",-2.00,-2.00,0.00,\"\",0.00,162.00,113.00,733.00,,,,,,\n2015,5,21,\"AA\",\"328\",\"LGA\",\"ORD\",-5.00,-27.00,0.00,\"\",0.00,140.00,117.00,733.00,,,,,,\n2015,5,22,\"AA\",\"328\",\"LGA\",\"ORD\",-2.00,-9.00,0.00,\"\",0.00,155.00,117.00,733.00,,,,,,\n2015,5,23,\"AA\",\"328\",\"LGA\",\"ORD\",-3.00,-7.00,0.00,\"\",0.00,158.00,115.00,733.00,,,,,,\n2015,5,24,\"AA\",\"328\",\"LGA\",\"ORD\",19.00,6.00,0.00,\"\",0.00,149.00,122.00,733.00,,,,,,\n2015,5,25,\"AA\",\"328\",\"LGA\",\"ORD\",-4.00,-26.00,0.00,\"\",0.00,140.00,114.00,733.00,,,,,,\n2015,5,26,\"AA\",\"328\",\"LGA\",\"ORD\",-7.00,-11.00,0.00,\"\",0.00,158.00,111.00,733.00,,,,,,\n2015,5,27,\"AA\",\"328\",\"LGA\",\"ORD\",-4.00,-36.00,0.00,\"\",0.00,130.00,113.00,733.00,,,,,,\n2015,5,28,\"AA\",\"328\",\"LGA\",\"ORD\",-5.00,-14.00,0.00,\"\",0.00,153.00,110.00,733.00,,,,,,\n2015,5,29,\"AA\",\"328\",\"LGA\",\"ORD\",-4.00,-15.00,0.00,\"\",0.00,151.00,112.00,733.00,,,,,,\n2015,5,30,\"AA\",\"328\",\"LGA\",\"ORD\",-9.00,-10.00,0.00,\"\",0.00,161.00,114.00,733.00,,,,,,\n2015,5,31,\"AA\",\"328\",\"LGA\",\"ORD\",-13.00,-31.00,0.00,\"\",0.00,144.00,117.00,733.00,,,,,,\n2015,5,1,\"AA\",\"329\",\"LGA\",\"ORD\",-2.00,-16.00,0.00,\"\",0.00,150.00,104.00,733.00,,,,,,\n2015,5,3,\"AA\",\"329\",\"LGA\",\"ORD\",-4.00,-26.00,0.00,\"\",0.00,142.00,109.00,733.00,,,,,,\n2015,5,4,\"AA\",\"329\",\"LGA\",\"ORD\",-7.00,-28.00,0.00,\"\",0.00,143.00,114.00,733.00,,,,,,\n2015,5,5,\"AA\",\"329\",\"LGA\",\"ORD\",-10.00,-16.00,0.00,\"\",0.00,158.00,130.00,733.00,,,,,,\n2015,5,6,\"AA\",\"329\",\"LGA\",\"ORD\",-5.00,-8.00,0.00,\"\",0.00,161.00,114.00,733.00,,,,,,\n2015,5,7,\"AA\",\"329\",\"LGA\",\"ORD\",-4.00,-36.00,0.00,\"\",0.00,132.00,106.00,733.00,,,,,,\n2015,5,8,\"AA\",\"329\",\"LGA\",\"ORD\",40.00,12.00,0.00,\"\",0.00,136.00,107.00,733.00,,,,,,\n2015,5,10,\"AA\",\"329\",\"LGA\",\"ORD\",-1.00,-13.00,0.00,\"\",0.00,152.00,115.00,733.00,,,,,,\n2015,5,11,\"AA\",\"329\",\"LGA\",\"ORD\",7.00,-16.00,0.00,\"\",0.00,141.00,113.00,733.00,,,,,,\n2015,5,12,\"AA\",\"329\",\"LGA\",\"ORD\",-5.00,-26.00,0.00,\"\",0.00,143.00,123.00,733.00,,,,,,\n2015,5,13,\"AA\",\"329\",\"LGA\",\"ORD\",-8.00,5.00,0.00,\"\",0.00,177.00,118.00,733.00,,,,,,\n2015,5,14,\"AA\",\"329\",\"LGA\",\"ORD\",-1.00,11.00,0.00,\"\",0.00,176.00,119.00,733.00,,,,,,\n2015,5,15,\"AA\",\"329\",\"LGA\",\"ORD\",-6.00,-18.00,0.00,\"\",0.00,152.00,121.00,733.00,,,,,,\n2015,5,17,\"AA\",\"329\",\"LGA\",\"ORD\",-7.00,7.00,0.00,\"\",0.00,178.00,124.00,733.00,,,,,,\n2015,5,18,\"AA\",\"329\",\"LGA\",\"ORD\",99.00,80.00,0.00,\"\",0.00,145.00,108.00,733.00,0.00,0.00,0.00,0.00,80.00,\n2015,5,19,\"AA\",\"329\",\"LGA\",\"ORD\",-8.00,-27.00,0.00,\"\",0.00,145.00,111.00,733.00,,,,,,\n2015,5,20,\"AA\",\"329\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,21,\"AA\",\"329\",\"LGA\",\"ORD\",-7.00,-23.00,0.00,\"\",0.00,148.00,116.00,733.00,,,,,,\n2015,5,22,\"AA\",\"329\",\"LGA\",\"ORD\",-2.00,-2.00,0.00,\"\",0.00,164.00,117.00,733.00,,,,,,\n2015,5,24,\"AA\",\"329\",\"LGA\",\"ORD\",-6.00,-19.00,0.00,\"\",0.00,151.00,126.00,733.00,,,,,,\n2015,5,25,\"AA\",\"329\",\"LGA\",\"ORD\",-6.00,-32.00,0.00,\"\",0.00,138.00,115.00,733.00,,,,,,\n2015,5,26,\"AA\",\"329\",\"LGA\",\"ORD\",-6.00,-33.00,0.00,\"\",0.00,137.00,108.00,733.00,,,,,,\n2015,5,27,\"AA\",\"329\",\"LGA\",\"ORD\",-11.00,-36.00,0.00,\"\",0.00,139.00,116.00,733.00,,,,,,\n2015,5,28,\"AA\",\"329\",\"LGA\",\"ORD\",-11.00,-10.00,0.00,\"\",0.00,165.00,119.00,733.00,,,,,,\n2015,5,29,\"AA\",\"329\",\"LGA\",\"ORD\",-3.00,-17.00,0.00,\"\",0.00,150.00,108.00,733.00,,,,,,\n2015,5,31,\"AA\",\"329\",\"LGA\",\"ORD\",2.00,-14.00,0.00,\"\",0.00,148.00,119.00,733.00,,,,,,\n2015,5,1,\"AA\",\"331\",\"LGA\",\"ORD\",-11.00,-39.00,0.00,\"\",0.00,136.00,101.00,733.00,,,,,,\n2015,5,2,\"AA\",\"331\",\"LGA\",\"ORD\",-10.00,-44.00,0.00,\"\",0.00,130.00,105.00,733.00,,,,,,\n2015,5,3,\"AA\",\"331\",\"LGA\",\"ORD\",-4.00,-30.00,0.00,\"\",0.00,138.00,107.00,733.00,,,,,,\n2015,5,4,\"AA\",\"331\",\"LGA\",\"ORD\",-5.00,-33.00,0.00,\"\",0.00,136.00,113.00,733.00,,,,,,\n2015,5,5,\"AA\",\"331\",\"LGA\",\"ORD\",-9.00,-18.00,0.00,\"\",0.00,155.00,125.00,733.00,,,,,,\n2015,5,6,\"AA\",\"331\",\"LGA\",\"ORD\",-5.00,8.00,0.00,\"\",0.00,177.00,117.00,733.00,,,,,,\n2015,5,7,\"AA\",\"331\",\"LGA\",\"ORD\",-7.00,-29.00,0.00,\"\",0.00,142.00,105.00,733.00,,,,,,\n2015,5,8,\"AA\",\"331\",\"LGA\",\"ORD\",-8.00,-37.00,0.00,\"\",0.00,135.00,110.00,733.00,,,,,,\n2015,5,9,\"AA\",\"331\",\"LGA\",\"ORD\",-2.00,13.00,0.00,\"\",0.00,179.00,120.00,733.00,,,,,,\n2015,5,10,\"AA\",\"331\",\"LGA\",\"ORD\",-6.00,6.00,0.00,\"\",0.00,176.00,114.00,733.00,,,,,,\n2015,5,11,\"AA\",\"331\",\"LGA\",\"ORD\",-3.00,-29.00,0.00,\"\",0.00,138.00,110.00,733.00,,,,,,\n2015,5,12,\"AA\",\"331\",\"LGA\",\"ORD\",0.00,-13.00,0.00,\"\",0.00,151.00,122.00,733.00,,,,,,\n2015,5,13,\"AA\",\"331\",\"LGA\",\"ORD\",-3.00,12.00,0.00,\"\",0.00,179.00,132.00,733.00,,,,,,\n2015,5,14,\"AA\",\"331\",\"LGA\",\"ORD\",-4.00,17.00,0.00,\"\",0.00,185.00,123.00,733.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,15,\"AA\",\"331\",\"LGA\",\"ORD\",-5.00,-35.00,0.00,\"\",0.00,134.00,115.00,733.00,,,,,,\n2015,5,16,\"AA\",\"331\",\"LGA\",\"ORD\",19.00,6.00,0.00,\"\",0.00,151.00,118.00,733.00,,,,,,\n2015,5,17,\"AA\",\"331\",\"LGA\",\"ORD\",-3.00,-18.00,0.00,\"\",0.00,149.00,108.00,733.00,,,,,,\n2015,5,18,\"AA\",\"331\",\"LGA\",\"ORD\",,,1.00,\"C\",0.00,,,733.00,,,,,,\n2015,5,19,\"AA\",\"331\",\"LGA\",\"ORD\",36.00,19.00,0.00,\"\",0.00,147.00,114.00,733.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,20,\"AA\",\"331\",\"LGA\",\"ORD\",-3.00,11.00,0.00,\"\",0.00,178.00,121.00,733.00,,,,,,\n2015,5,21,\"AA\",\"331\",\"LGA\",\"ORD\",-1.00,-13.00,0.00,\"\",0.00,152.00,118.00,733.00,,,,,,\n2015,5,22,\"AA\",\"331\",\"LGA\",\"ORD\",-4.00,-3.00,0.00,\"\",0.00,165.00,125.00,733.00,,,,,,\n2015,5,23,\"AA\",\"331\",\"LGA\",\"ORD\",-5.00,-25.00,0.00,\"\",0.00,144.00,116.00,733.00,,,,,,\n2015,5,24,\"AA\",\"331\",\"LGA\",\"ORD\",48.00,32.00,0.00,\"\",0.00,148.00,123.00,733.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,25,\"AA\",\"331\",\"LGA\",\"ORD\",-13.00,-44.00,0.00,\"\",0.00,133.00,111.00,733.00,,,,,,\n2015,5,26,\"AA\",\"331\",\"LGA\",\"ORD\",-8.00,-29.00,0.00,\"\",0.00,143.00,110.00,733.00,,,,,,\n2015,5,27,\"AA\",\"331\",\"LGA\",\"ORD\",-8.00,-34.00,0.00,\"\",0.00,138.00,113.00,733.00,,,,,,\n2015,5,28,\"AA\",\"331\",\"LGA\",\"ORD\",-7.00,-24.00,0.00,\"\",0.00,147.00,116.00,733.00,,,,,,\n2015,5,29,\"AA\",\"331\",\"LGA\",\"ORD\",-7.00,-8.00,0.00,\"\",0.00,163.00,116.00,733.00,,,,,,\n2015,5,30,\"AA\",\"331\",\"LGA\",\"ORD\",-6.00,-30.00,0.00,\"\",0.00,140.00,115.00,733.00,,,,,,\n2015,5,31,\"AA\",\"331\",\"LGA\",\"ORD\",-8.00,-20.00,0.00,\"\",0.00,152.00,111.00,733.00,,,,,,\n2015,5,1,\"AA\",\"335\",\"JFK\",\"CLT\",-5.00,-10.00,0.00,\"\",0.00,119.00,86.00,541.00,,,,,,\n2015,5,2,\"AA\",\"335\",\"JFK\",\"CLT\",0.00,-1.00,0.00,\"\",0.00,123.00,84.00,541.00,,,,,,\n2015,5,3,\"AA\",\"335\",\"JFK\",\"CLT\",-3.00,-14.00,0.00,\"\",0.00,113.00,76.00,541.00,,,,,,\n2015,5,4,\"AA\",\"335\",\"JFK\",\"CLT\",-7.00,-29.00,0.00,\"\",0.00,102.00,75.00,541.00,,,,,,\n2015,5,5,\"AA\",\"335\",\"JFK\",\"CLT\",0.00,-22.00,0.00,\"\",0.00,102.00,75.00,541.00,,,,,,\n2015,5,6,\"AA\",\"335\",\"JFK\",\"CLT\",-3.00,-8.00,0.00,\"\",0.00,119.00,78.00,541.00,,,,,,\n2015,5,7,\"AA\",\"335\",\"JFK\",\"CLT\",-1.00,-1.00,0.00,\"\",0.00,124.00,87.00,541.00,,,,,,\n2015,5,8,\"AA\",\"335\",\"JFK\",\"CLT\",56.00,42.00,0.00,\"\",0.00,110.00,82.00,541.00,0.00,0.00,0.00,0.00,42.00,\n2015,5,9,\"AA\",\"335\",\"JFK\",\"CLT\",5.00,0.00,0.00,\"\",0.00,119.00,81.00,541.00,,,,,,\n2015,5,10,\"AA\",\"335\",\"JFK\",\"CLT\",-5.00,-12.00,0.00,\"\",0.00,117.00,85.00,541.00,,,,,,\n2015,5,11,\"AA\",\"335\",\"JFK\",\"CLT\",-6.00,3.00,0.00,\"\",0.00,133.00,78.00,541.00,,,,,,\n2015,5,12,\"AA\",\"335\",\"JFK\",\"CLT\",16.00,10.00,0.00,\"\",0.00,118.00,84.00,541.00,,,,,,\n2015,5,13,\"AA\",\"335\",\"JFK\",\"CLT\",-5.00,6.00,0.00,\"\",0.00,135.00,93.00,541.00,,,,,,\n2015,5,14,\"AA\",\"335\",\"JFK\",\"CLT\",1.00,20.00,0.00,\"\",0.00,143.00,88.00,541.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,15,\"AA\",\"335\",\"JFK\",\"CLT\",-6.00,-8.00,0.00,\"\",0.00,122.00,81.00,541.00,,,,,,\n2015,5,16,\"AA\",\"335\",\"JFK\",\"CLT\",-1.00,-11.00,0.00,\"\",0.00,114.00,79.00,541.00,,,,,,\n2015,5,17,\"AA\",\"335\",\"JFK\",\"CLT\",-4.00,-11.00,0.00,\"\",0.00,117.00,78.00,541.00,,,,,,\n2015,5,18,\"AA\",\"335\",\"JFK\",\"CLT\",-6.00,-2.00,0.00,\"\",0.00,128.00,75.00,541.00,,,,,,\n2015,5,19,\"AA\",\"335\",\"JFK\",\"CLT\",-4.00,-6.00,0.00,\"\",0.00,122.00,95.00,541.00,,,,,,\n2015,5,20,\"AA\",\"335\",\"JFK\",\"CLT\",-6.00,0.00,0.00,\"\",0.00,130.00,90.00,541.00,,,,,,\n2015,5,21,\"AA\",\"335\",\"JFK\",\"CLT\",-5.00,7.00,0.00,\"\",0.00,136.00,93.00,541.00,,,,,,\n2015,5,22,\"AA\",\"335\",\"JFK\",\"CLT\",-1.00,17.00,0.00,\"\",0.00,142.00,92.00,541.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,23,\"AA\",\"335\",\"JFK\",\"CLT\",-4.00,-7.00,0.00,\"\",0.00,121.00,88.00,541.00,,,,,,\n2015,5,24,\"AA\",\"335\",\"JFK\",\"CLT\",-5.00,-22.00,0.00,\"\",0.00,107.00,83.00,541.00,,,,,,\n2015,5,25,\"AA\",\"335\",\"JFK\",\"CLT\",-2.00,-19.00,0.00,\"\",0.00,107.00,78.00,541.00,,,,,,\n2015,5,26,\"AA\",\"335\",\"JFK\",\"CLT\",-4.00,-17.00,0.00,\"\",0.00,111.00,80.00,541.00,,,,,,\n2015,5,27,\"AA\",\"335\",\"JFK\",\"CLT\",-4.00,-1.00,0.00,\"\",0.00,127.00,89.00,541.00,,,,,,\n2015,5,28,\"AA\",\"335\",\"JFK\",\"CLT\",40.00,31.00,0.00,\"\",0.00,115.00,76.00,541.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"AA\",\"335\",\"JFK\",\"CLT\",-2.00,1.00,0.00,\"\",0.00,127.00,78.00,541.00,,,,,,\n2015,5,30,\"AA\",\"335\",\"JFK\",\"CLT\",4.00,-9.00,0.00,\"\",0.00,111.00,78.00,541.00,,,,,,\n2015,5,31,\"AA\",\"335\",\"JFK\",\"CLT\",-1.00,-9.00,0.00,\"\",0.00,116.00,78.00,541.00,,,,,,\n2015,5,2,\"AA\",\"336\",\"ORD\",\"LGA\",24.00,23.00,0.00,\"\",0.00,126.00,102.00,733.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"AA\",\"336\",\"ORD\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,124.00,101.00,733.00,,,,,,\n2015,5,4,\"AA\",\"336\",\"ORD\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,127.00,96.00,733.00,,,,,,\n2015,5,5,\"AA\",\"336\",\"ORD\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,123.00,100.00,733.00,,,,,,\n2015,5,6,\"AA\",\"336\",\"ORD\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,125.00,101.00,733.00,,,,,,\n2015,5,7,\"AA\",\"336\",\"ORD\",\"LGA\",61.00,61.00,0.00,\"\",0.00,127.00,101.00,733.00,22.00,0.00,0.00,0.00,39.00,\n2015,5,9,\"AA\",\"336\",\"ORD\",\"LGA\",28.00,25.00,0.00,\"\",0.00,124.00,104.00,733.00,4.00,0.00,0.00,0.00,21.00,\n2015,5,10,\"AA\",\"336\",\"ORD\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,125.00,101.00,733.00,,,,,,\n2015,5,11,\"AA\",\"336\",\"ORD\",\"LGA\",-1.00,14.00,0.00,\"\",0.00,142.00,111.00,733.00,,,,,,\n2015,5,12,\"AA\",\"336\",\"ORD\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,110.00,86.00,733.00,,,,,,\n2015,5,13,\"AA\",\"336\",\"ORD\",\"LGA\",0.00,14.00,0.00,\"\",0.00,141.00,93.00,733.00,,,,,,\n2015,5,14,\"AA\",\"336\",\"ORD\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,118.00,101.00,733.00,,,,,,\n2015,5,16,\"AA\",\"336\",\"ORD\",\"LGA\",11.00,-2.00,0.00,\"\",0.00,114.00,97.00,733.00,,,,,,\n2015,5,17,\"AA\",\"336\",\"ORD\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,125.00,102.00,733.00,,,,,,\n2015,5,18,\"AA\",\"336\",\"ORD\",\"LGA\",-4.00,9.00,0.00,\"\",0.00,140.00,98.00,733.00,,,,,,\n2015,5,19,\"AA\",\"336\",\"ORD\",\"LGA\",8.00,-12.00,0.00,\"\",0.00,107.00,91.00,733.00,,,,,,\n2015,5,20,\"AA\",\"336\",\"ORD\",\"LGA\",-7.00,3.00,0.00,\"\",0.00,137.00,93.00,733.00,,,,,,\n2015,5,21,\"AA\",\"336\",\"ORD\",\"LGA\",14.00,12.00,0.00,\"\",0.00,125.00,97.00,733.00,,,,,,\n2015,5,24,\"AA\",\"336\",\"ORD\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,108.00,92.00,733.00,,,,,,\n2015,5,25,\"AA\",\"336\",\"ORD\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,126.00,99.00,733.00,,,,,,\n2015,5,26,\"AA\",\"336\",\"ORD\",\"LGA\",5.00,3.00,0.00,\"\",0.00,125.00,102.00,733.00,,,,,,\n2015,5,27,\"AA\",\"336\",\"ORD\",\"LGA\",57.00,46.00,0.00,\"\",0.00,116.00,100.00,733.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,28,\"AA\",\"336\",\"ORD\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,123.00,99.00,733.00,,,,,,\n2015,5,30,\"AA\",\"336\",\"ORD\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,124.00,107.00,733.00,,,,,,\n2015,5,31,\"AA\",\"336\",\"ORD\",\"LGA\",140.00,140.00,0.00,\"\",0.00,127.00,102.00,733.00,0.00,0.00,8.00,0.00,132.00,\n2015,5,1,\"AA\",\"337\",\"LGA\",\"ORD\",-3.00,-32.00,0.00,\"\",0.00,132.00,107.00,733.00,,,,,,\n2015,5,2,\"AA\",\"337\",\"LGA\",\"ORD\",-9.00,-43.00,0.00,\"\",0.00,127.00,103.00,733.00,,,,,,\n2015,5,3,\"AA\",\"337\",\"LGA\",\"ORD\",-3.00,-27.00,0.00,\"\",0.00,137.00,109.00,733.00,,,,,,\n2015,5,4,\"AA\",\"337\",\"LGA\",\"ORD\",-8.00,-14.00,0.00,\"\",0.00,155.00,115.00,733.00,,,,,,\n2015,5,5,\"AA\",\"337\",\"LGA\",\"ORD\",-7.00,10.00,0.00,\"\",0.00,178.00,125.00,733.00,,,,,,\n2015,5,6,\"AA\",\"337\",\"LGA\",\"ORD\",1.00,-2.00,0.00,\"\",0.00,158.00,123.00,733.00,,,,,,\n2015,5,7,\"AA\",\"337\",\"LGA\",\"ORD\",-6.00,-31.00,0.00,\"\",0.00,136.00,109.00,733.00,,,,,,\n2015,5,8,\"AA\",\"337\",\"LGA\",\"ORD\",-9.00,-22.00,0.00,\"\",0.00,148.00,110.00,733.00,,,,,,\n2015,5,9,\"AA\",\"337\",\"LGA\",\"ORD\",-8.00,-20.00,0.00,\"\",0.00,149.00,120.00,733.00,,,,,,\n2015,5,10,\"AA\",\"337\",\"LGA\",\"ORD\",1.00,9.00,0.00,\"\",0.00,169.00,119.00,733.00,,,,,,\n2015,5,11,\"AA\",\"337\",\"LGA\",\"ORD\",-8.00,-4.00,0.00,\"\",0.00,165.00,116.00,733.00,,,,,,\n2015,5,12,\"AA\",\"337\",\"LGA\",\"ORD\",-4.00,-11.00,0.00,\"\",0.00,154.00,125.00,733.00,,,,,,\n2015,5,13,\"AA\",\"337\",\"LGA\",\"ORD\",-2.00,3.00,0.00,\"\",0.00,166.00,127.00,733.00,,,,,,\n2015,5,14,\"AA\",\"337\",\"LGA\",\"ORD\",-2.00,3.00,0.00,\"\",0.00,166.00,120.00,733.00,,,,,,\n2015,5,15,\"AA\",\"337\",\"LGA\",\"ORD\",-6.00,0.00,0.00,\"\",0.00,167.00,119.00,733.00,,,,,,\n2015,5,16,\"AA\",\"337\",\"LGA\",\"ORD\",14.00,-1.00,0.00,\"\",0.00,146.00,119.00,733.00,,,,,,\n2015,5,17,\"AA\",\"337\",\"LGA\",\"ORD\",-4.00,-19.00,0.00,\"\",0.00,146.00,107.00,733.00,,,,,,\n2015,5,18,\"AA\",\"337\",\"LGA\",\"ORD\",132.00,131.00,0.00,\"\",0.00,160.00,115.00,733.00,0.00,0.00,0.00,0.00,131.00,\n2015,5,19,\"AA\",\"337\",\"LGA\",\"ORD\",-8.00,-9.00,0.00,\"\",0.00,160.00,123.00,733.00,,,,,,\n2015,5,20,\"AA\",\"337\",\"LGA\",\"ORD\",-6.00,9.00,0.00,\"\",0.00,176.00,136.00,733.00,,,,,,\n2015,5,21,\"AA\",\"337\",\"LGA\",\"ORD\",-7.00,-29.00,0.00,\"\",0.00,139.00,118.00,733.00,,,,,,\n2015,5,22,\"AA\",\"337\",\"LGA\",\"ORD\",10.00,-5.00,0.00,\"\",0.00,146.00,117.00,733.00,,,,,,\n2015,5,23,\"AA\",\"337\",\"LGA\",\"ORD\",-8.00,-27.00,0.00,\"\",0.00,142.00,121.00,733.00,,,,,,\n2015,5,24,\"AA\",\"337\",\"LGA\",\"ORD\",-8.00,-9.00,0.00,\"\",0.00,160.00,130.00,733.00,,,,,,\n2015,5,25,\"AA\",\"337\",\"LGA\",\"ORD\",-10.00,-15.00,0.00,\"\",0.00,156.00,115.00,733.00,,,,,,\n2015,5,26,\"AA\",\"337\",\"LGA\",\"ORD\",-8.00,-16.00,0.00,\"\",0.00,153.00,121.00,733.00,,,,,,\n2015,5,27,\"AA\",\"337\",\"LGA\",\"ORD\",-3.00,-16.00,0.00,\"\",0.00,148.00,126.00,733.00,,,,,,\n2015,5,28,\"AA\",\"337\",\"LGA\",\"ORD\",-4.00,-10.00,0.00,\"\",0.00,155.00,117.00,733.00,,,,,,\n2015,5,29,\"AA\",\"337\",\"LGA\",\"ORD\",-4.00,23.00,0.00,\"\",0.00,188.00,111.00,733.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,30,\"AA\",\"337\",\"LGA\",\"ORD\",-7.00,-9.00,0.00,\"\",0.00,159.00,116.00,733.00,,,,,,\n2015,5,31,\"AA\",\"337\",\"LGA\",\"ORD\",-3.00,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,1,\"AA\",\"343\",\"LGA\",\"ORD\",-4.00,-25.00,0.00,\"\",0.00,149.00,105.00,733.00,,,,,,\n2015,5,3,\"AA\",\"343\",\"LGA\",\"ORD\",-5.00,-36.00,0.00,\"\",0.00,139.00,109.00,733.00,,,,,,\n2015,5,4,\"AA\",\"343\",\"LGA\",\"ORD\",-13.00,-17.00,0.00,\"\",0.00,166.00,118.00,733.00,,,,,,\n2015,5,5,\"AA\",\"343\",\"LGA\",\"ORD\",-5.00,-2.00,0.00,\"\",0.00,173.00,126.00,733.00,,,,,,\n2015,5,6,\"AA\",\"343\",\"LGA\",\"ORD\",-4.00,13.00,0.00,\"\",0.00,187.00,121.00,733.00,,,,,,\n2015,5,7,\"AA\",\"343\",\"LGA\",\"ORD\",-4.00,-28.00,0.00,\"\",0.00,146.00,107.00,733.00,,,,,,\n2015,5,8,\"AA\",\"343\",\"LGA\",\"ORD\",14.00,33.00,0.00,\"\",0.00,189.00,131.00,733.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,10,\"AA\",\"343\",\"LGA\",\"ORD\",-5.00,-24.00,0.00,\"\",0.00,151.00,113.00,733.00,,,,,,\n2015,5,11,\"AA\",\"343\",\"LGA\",\"ORD\",135.00,108.00,0.00,\"\",0.00,143.00,114.00,733.00,0.00,5.00,0.00,0.00,103.00,\n2015,5,12,\"AA\",\"343\",\"LGA\",\"ORD\",-11.00,-26.00,0.00,\"\",0.00,155.00,120.00,733.00,,,,,,\n2015,5,13,\"AA\",\"343\",\"LGA\",\"ORD\",-4.00,-6.00,0.00,\"\",0.00,168.00,120.00,733.00,,,,,,\n2015,5,14,\"AA\",\"343\",\"LGA\",\"ORD\",-3.00,-17.00,0.00,\"\",0.00,156.00,118.00,733.00,,,,,,\n2015,5,15,\"AA\",\"343\",\"LGA\",\"ORD\",-6.00,-21.00,0.00,\"\",0.00,155.00,118.00,733.00,,,,,,\n2015,5,17,\"AA\",\"343\",\"LGA\",\"ORD\",-10.00,-28.00,0.00,\"\",0.00,152.00,108.00,733.00,,,,,,\n2015,5,18,\"AA\",\"343\",\"LGA\",\"ORD\",207.00,206.00,0.00,\"\",0.00,169.00,130.00,733.00,0.00,0.00,0.00,0.00,206.00,\n2015,5,19,\"AA\",\"343\",\"LGA\",\"ORD\",17.00,16.00,0.00,\"\",0.00,169.00,119.00,733.00,2.00,0.00,0.00,0.00,14.00,\n2015,5,20,\"AA\",\"343\",\"LGA\",\"ORD\",-3.00,34.00,0.00,\"\",0.00,207.00,123.00,733.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,21,\"AA\",\"343\",\"LGA\",\"ORD\",18.00,15.00,0.00,\"\",0.00,167.00,118.00,733.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,22,\"AA\",\"343\",\"LGA\",\"ORD\",-4.00,-17.00,0.00,\"\",0.00,157.00,119.00,733.00,,,,,,\n2015,5,24,\"AA\",\"343\",\"LGA\",\"ORD\",-8.00,-21.00,0.00,\"\",0.00,157.00,127.00,733.00,,,,,,\n2015,5,25,\"AA\",\"343\",\"LGA\",\"ORD\",-4.00,-28.00,0.00,\"\",0.00,146.00,111.00,733.00,,,,,,\n2015,5,26,\"AA\",\"343\",\"LGA\",\"ORD\",0.00,-29.00,0.00,\"\",0.00,141.00,110.00,733.00,,,,,,\n2015,5,27,\"AA\",\"343\",\"LGA\",\"ORD\",0.00,58.00,0.00,\"\",0.00,228.00,139.00,733.00,0.00,0.00,58.00,0.00,0.00,\n2015,5,28,\"AA\",\"343\",\"LGA\",\"ORD\",-10.00,-34.00,0.00,\"\",0.00,146.00,114.00,733.00,,,,,,\n2015,5,29,\"AA\",\"343\",\"LGA\",\"ORD\",24.00,15.00,0.00,\"\",0.00,161.00,111.00,733.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"AA\",\"343\",\"LGA\",\"ORD\",303.00,290.00,0.00,\"\",0.00,157.00,114.00,733.00,0.00,104.00,0.00,0.00,186.00,\n2015,5,1,\"AA\",\"345\",\"LGA\",\"ORD\",-6.00,-9.00,0.00,\"\",0.00,165.00,105.00,733.00,,,,,,\n2015,5,2,\"AA\",\"345\",\"LGA\",\"ORD\",-4.00,-38.00,0.00,\"\",0.00,134.00,108.00,733.00,,,,,,\n2015,5,3,\"AA\",\"345\",\"LGA\",\"ORD\",2.00,-10.00,0.00,\"\",0.00,156.00,114.00,733.00,,,,,,\n2015,5,4,\"AA\",\"345\",\"LGA\",\"ORD\",-7.00,-7.00,0.00,\"\",0.00,168.00,122.00,733.00,,,,,,\n2015,5,5,\"AA\",\"345\",\"LGA\",\"ORD\",31.00,61.00,0.00,\"\",0.00,198.00,120.00,733.00,0.00,0.00,30.00,0.00,31.00,\n2015,5,6,\"AA\",\"345\",\"LGA\",\"ORD\",-5.00,11.00,0.00,\"\",0.00,184.00,117.00,733.00,,,,,,\n2015,5,7,\"AA\",\"345\",\"LGA\",\"ORD\",91.00,62.00,0.00,\"\",0.00,139.00,109.00,733.00,1.00,0.00,0.00,0.00,61.00,\n2015,5,8,\"AA\",\"345\",\"LGA\",\"ORD\",-4.00,5.00,0.00,\"\",0.00,177.00,113.00,733.00,,,,,,\n2015,5,9,\"AA\",\"345\",\"LGA\",\"ORD\",-7.00,-23.00,0.00,\"\",0.00,152.00,120.00,733.00,,,,,,\n2015,5,10,\"AA\",\"345\",\"LGA\",\"ORD\",-6.00,-22.00,0.00,\"\",0.00,152.00,116.00,733.00,,,,,,\n2015,5,11,\"AA\",\"345\",\"LGA\",\"ORD\",96.00,65.00,0.00,\"\",0.00,137.00,111.00,733.00,0.00,0.00,0.00,0.00,65.00,\n2015,5,12,\"AA\",\"345\",\"LGA\",\"ORD\",-6.00,-19.00,0.00,\"\",0.00,155.00,124.00,733.00,,,,,,\n2015,5,13,\"AA\",\"345\",\"LGA\",\"ORD\",-3.00,11.00,0.00,\"\",0.00,182.00,122.00,733.00,,,,,,\n2015,5,14,\"AA\",\"345\",\"LGA\",\"ORD\",-3.00,-10.00,0.00,\"\",0.00,161.00,123.00,733.00,,,,,,\n2015,5,15,\"AA\",\"345\",\"LGA\",\"ORD\",-3.00,-27.00,0.00,\"\",0.00,144.00,118.00,733.00,,,,,,\n2015,5,16,\"AA\",\"345\",\"LGA\",\"ORD\",-9.00,-25.00,0.00,\"\",0.00,152.00,116.00,733.00,,,,,,\n2015,5,17,\"AA\",\"345\",\"LGA\",\"ORD\",-8.00,-24.00,0.00,\"\",0.00,152.00,107.00,733.00,,,,,,\n2015,5,18,\"AA\",\"345\",\"LGA\",\"ORD\",271.00,311.00,0.00,\"\",0.00,208.00,129.00,733.00,7.00,0.00,40.00,0.00,264.00,\n2015,5,19,\"AA\",\"345\",\"LGA\",\"ORD\",-2.00,13.00,0.00,\"\",0.00,183.00,123.00,733.00,,,,,,\n2015,5,20,\"AA\",\"345\",\"LGA\",\"ORD\",14.00,53.00,0.00,\"\",0.00,207.00,124.00,733.00,0.00,0.00,39.00,0.00,14.00,\n2015,5,21,\"AA\",\"345\",\"LGA\",\"ORD\",44.00,19.00,0.00,\"\",0.00,143.00,112.00,733.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,22,\"AA\",\"345\",\"LGA\",\"ORD\",-3.00,-5.00,0.00,\"\",0.00,166.00,120.00,733.00,,,,,,\n2015,5,23,\"AA\",\"345\",\"LGA\",\"ORD\",-9.00,-35.00,0.00,\"\",0.00,142.00,118.00,733.00,,,,,,\n2015,5,24,\"AA\",\"345\",\"LGA\",\"ORD\",-4.00,-16.00,0.00,\"\",0.00,156.00,124.00,733.00,,,,,,\n2015,5,25,\"AA\",\"345\",\"LGA\",\"ORD\",-5.00,-26.00,0.00,\"\",0.00,147.00,110.00,733.00,,,,,,\n2015,5,26,\"AA\",\"345\",\"LGA\",\"ORD\",-10.00,-46.00,0.00,\"\",0.00,132.00,110.00,733.00,,,,,,\n2015,5,27,\"AA\",\"345\",\"LGA\",\"ORD\",13.00,26.00,0.00,\"\",0.00,181.00,138.00,733.00,0.00,0.00,13.00,0.00,13.00,\n2015,5,28,\"AA\",\"345\",\"LGA\",\"ORD\",-9.00,-22.00,0.00,\"\",0.00,155.00,119.00,733.00,,,,,,\n2015,5,29,\"AA\",\"345\",\"LGA\",\"ORD\",17.00,14.00,0.00,\"\",0.00,165.00,113.00,733.00,,,,,,\n2015,5,30,\"AA\",\"345\",\"LGA\",\"ORD\",-5.00,-10.00,0.00,\"\",0.00,163.00,116.00,733.00,,,,,,\n2015,5,31,\"AA\",\"345\",\"LGA\",\"ORD\",130.00,139.00,0.00,\"\",0.00,177.00,127.00,733.00,0.00,130.00,9.00,0.00,0.00,\n2015,5,1,\"AA\",\"348\",\"ORD\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,122.00,102.00,733.00,,,,,,\n2015,5,2,\"AA\",\"348\",\"ORD\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,113.00,99.00,733.00,,,,,,\n2015,5,3,\"AA\",\"348\",\"ORD\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,117.00,103.00,733.00,,,,,,\n2015,5,4,\"AA\",\"348\",\"ORD\",\"LGA\",17.00,4.00,0.00,\"\",0.00,116.00,98.00,733.00,,,,,,\n2015,5,5,\"AA\",\"348\",\"ORD\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,114.00,97.00,733.00,,,,,,\n2015,5,6,\"AA\",\"348\",\"ORD\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,121.00,101.00,733.00,,,,,,\n2015,5,7,\"AA\",\"348\",\"ORD\",\"LGA\",29.00,29.00,0.00,\"\",0.00,129.00,106.00,733.00,20.00,0.00,9.00,0.00,0.00,\n2015,5,8,\"AA\",\"348\",\"ORD\",\"LGA\",92.00,101.00,0.00,\"\",0.00,138.00,109.00,733.00,0.00,64.00,9.00,0.00,28.00,\n2015,5,9,\"AA\",\"348\",\"ORD\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,120.00,101.00,733.00,,,,,,\n2015,5,10,\"AA\",\"348\",\"ORD\",\"LGA\",19.00,6.00,0.00,\"\",0.00,116.00,100.00,733.00,,,,,,\n2015,5,11,\"AA\",\"348\",\"ORD\",\"LGA\",120.00,109.00,0.00,\"\",0.00,118.00,100.00,733.00,0.00,0.00,0.00,0.00,109.00,\n2015,5,12,\"AA\",\"348\",\"ORD\",\"LGA\",2.00,-22.00,0.00,\"\",0.00,105.00,85.00,733.00,,,,,,\n2015,5,13,\"AA\",\"348\",\"ORD\",\"LGA\",-3.00,-27.00,0.00,\"\",0.00,105.00,88.00,733.00,,,,,,\n2015,5,14,\"AA\",\"348\",\"ORD\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,121.00,97.00,733.00,,,,,,\n2015,5,15,\"AA\",\"348\",\"ORD\",\"LGA\",2.00,-2.00,0.00,\"\",0.00,125.00,95.00,733.00,,,,,,\n2015,5,16,\"AA\",\"348\",\"ORD\",\"LGA\",44.00,31.00,0.00,\"\",0.00,116.00,97.00,733.00,23.00,0.00,8.00,0.00,0.00,\n2015,5,17,\"AA\",\"348\",\"ORD\",\"LGA\",1.00,3.00,0.00,\"\",0.00,131.00,102.00,733.00,,,,,,\n2015,5,18,\"AA\",\"348\",\"ORD\",\"LGA\",97.00,90.00,0.00,\"\",0.00,122.00,104.00,733.00,0.00,0.00,90.00,0.00,0.00,\n2015,5,19,\"AA\",\"348\",\"ORD\",\"LGA\",21.00,6.00,0.00,\"\",0.00,114.00,100.00,733.00,,,,,,\n2015,5,20,\"AA\",\"348\",\"ORD\",\"LGA\",26.00,15.00,0.00,\"\",0.00,118.00,89.00,733.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,21,\"AA\",\"348\",\"ORD\",\"LGA\",194.00,,0.00,\"\",1.00,,,733.00,,,,,,\n2015,5,22,\"AA\",\"348\",\"ORD\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,129.00,101.00,733.00,,,,,,\n2015,5,23,\"AA\",\"348\",\"ORD\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,112.00,94.00,733.00,,,,,,\n2015,5,24,\"AA\",\"348\",\"ORD\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,118.00,93.00,733.00,,,,,,\n2015,5,25,\"AA\",\"348\",\"ORD\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,125.00,99.00,733.00,,,,,,\n2015,5,26,\"AA\",\"348\",\"ORD\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,129.00,103.00,733.00,,,,,,\n2015,5,27,\"AA\",\"348\",\"ORD\",\"LGA\",57.00,63.00,0.00,\"\",0.00,135.00,102.00,733.00,0.00,0.00,10.00,0.00,53.00,\n2015,5,28,\"AA\",\"348\",\"ORD\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,117.00,93.00,733.00,,,,,,\n2015,5,29,\"AA\",\"348\",\"ORD\",\"LGA\",6.00,32.00,0.00,\"\",0.00,155.00,102.00,733.00,0.00,0.00,26.00,0.00,6.00,\n2015,5,30,\"AA\",\"348\",\"ORD\",\"LGA\",106.00,97.00,0.00,\"\",0.00,120.00,94.00,733.00,67.00,0.00,0.00,0.00,30.00,\n2015,5,31,\"AA\",\"348\",\"ORD\",\"LGA\",28.00,92.00,0.00,\"\",0.00,193.00,129.00,733.00,0.00,0.00,69.00,0.00,23.00,\n2015,5,1,\"AA\",\"1053\",\"LGA\",\"MIA\",-7.00,-29.00,0.00,\"\",0.00,168.00,151.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1053\",\"LGA\",\"MIA\",-14.00,-43.00,0.00,\"\",0.00,161.00,146.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1053\",\"LGA\",\"MIA\",0.00,-18.00,0.00,\"\",0.00,172.00,148.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1053\",\"LGA\",\"MIA\",-7.00,-15.00,0.00,\"\",0.00,182.00,164.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1053\",\"LGA\",\"MIA\",-1.00,-13.00,0.00,\"\",0.00,178.00,152.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1053\",\"LGA\",\"MIA\",-8.00,-19.00,0.00,\"\",0.00,179.00,149.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1053\",\"LGA\",\"MIA\",-2.00,-20.00,0.00,\"\",0.00,172.00,150.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1053\",\"LGA\",\"MIA\",-3.00,-31.00,0.00,\"\",0.00,162.00,143.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1053\",\"LGA\",\"MIA\",-9.00,-38.00,0.00,\"\",0.00,161.00,148.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"1053\",\"LGA\",\"MIA\",-1.00,-5.00,0.00,\"\",0.00,186.00,150.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"1053\",\"LGA\",\"MIA\",65.00,41.00,0.00,\"\",0.00,166.00,146.00,1096.00,17.00,0.00,0.00,0.00,24.00,\n2015,5,12,\"AA\",\"1053\",\"LGA\",\"MIA\",-12.00,-18.00,0.00,\"\",0.00,184.00,149.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1053\",\"LGA\",\"MIA\",-2.00,-3.00,0.00,\"\",0.00,189.00,144.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1053\",\"LGA\",\"MIA\",8.00,-13.00,0.00,\"\",0.00,169.00,143.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1053\",\"LGA\",\"MIA\",-4.00,-33.00,0.00,\"\",0.00,161.00,144.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1053\",\"LGA\",\"MIA\",96.00,72.00,0.00,\"\",0.00,166.00,147.00,1096.00,0.00,72.00,0.00,0.00,0.00,\n2015,5,17,\"AA\",\"1053\",\"LGA\",\"MIA\",-2.00,-22.00,0.00,\"\",0.00,170.00,143.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1053\",\"LGA\",\"MIA\",19.00,-3.00,0.00,\"\",0.00,168.00,137.00,1096.00,,,,,,\n2015,5,19,\"AA\",\"1053\",\"LGA\",\"MIA\",42.00,24.00,0.00,\"\",0.00,172.00,147.00,1096.00,0.00,0.00,0.00,0.00,24.00,\n2015,5,20,\"AA\",\"1053\",\"LGA\",\"MIA\",25.00,52.00,0.00,\"\",0.00,217.00,149.00,1096.00,0.00,0.00,27.00,0.00,25.00,\n2015,5,21,\"AA\",\"1053\",\"LGA\",\"MIA\",-8.00,-23.00,0.00,\"\",0.00,175.00,149.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1053\",\"LGA\",\"MIA\",-9.00,-24.00,0.00,\"\",0.00,175.00,145.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1053\",\"LGA\",\"MIA\",-13.00,-45.00,0.00,\"\",0.00,158.00,142.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1053\",\"LGA\",\"MIA\",-9.00,-33.00,0.00,\"\",0.00,166.00,144.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1053\",\"LGA\",\"MIA\",109.00,86.00,0.00,\"\",0.00,167.00,147.00,1096.00,86.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"AA\",\"1053\",\"LGA\",\"MIA\",-12.00,-29.00,0.00,\"\",0.00,173.00,149.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1053\",\"LGA\",\"MIA\",65.00,53.00,0.00,\"\",0.00,178.00,147.00,1096.00,0.00,0.00,0.00,0.00,53.00,\n2015,5,28,\"AA\",\"1053\",\"LGA\",\"MIA\",10.00,12.00,0.00,\"\",0.00,192.00,144.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1053\",\"LGA\",\"MIA\",-3.00,-23.00,0.00,\"\",0.00,170.00,144.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1053\",\"LGA\",\"MIA\",-9.00,-40.00,0.00,\"\",0.00,159.00,141.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1053\",\"LGA\",\"MIA\",97.00,66.00,0.00,\"\",0.00,159.00,142.00,1096.00,0.00,5.00,0.00,0.00,61.00,\n2015,5,1,\"AA\",\"1053\",\"MIA\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,164.00,146.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1053\",\"MIA\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,180.00,142.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1053\",\"MIA\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,167.00,144.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1053\",\"MIA\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,161.00,142.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1053\",\"MIA\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,174.00,149.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1053\",\"MIA\",\"LGA\",22.00,6.00,0.00,\"\",0.00,164.00,145.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1053\",\"MIA\",\"LGA\",-7.00,-6.00,0.00,\"\",0.00,181.00,156.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1053\",\"MIA\",\"LGA\",-8.00,-27.00,0.00,\"\",0.00,161.00,145.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1053\",\"MIA\",\"LGA\",-4.00,0.00,0.00,\"\",0.00,184.00,158.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"1053\",\"MIA\",\"LGA\",32.00,53.00,0.00,\"\",0.00,201.00,169.00,1096.00,32.00,0.00,21.00,0.00,0.00,\n2015,5,11,\"AA\",\"1053\",\"MIA\",\"LGA\",67.00,69.00,0.00,\"\",0.00,182.00,153.00,1096.00,0.00,0.00,20.00,0.00,49.00,\n2015,5,12,\"AA\",\"1053\",\"MIA\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,162.00,146.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1053\",\"MIA\",\"LGA\",-6.00,-3.00,0.00,\"\",0.00,183.00,152.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1053\",\"MIA\",\"LGA\",14.00,21.00,0.00,\"\",0.00,187.00,148.00,1096.00,0.00,0.00,7.00,0.00,14.00,\n2015,5,15,\"AA\",\"1053\",\"MIA\",\"LGA\",12.00,20.00,0.00,\"\",0.00,188.00,157.00,1096.00,6.00,0.00,8.00,0.00,6.00,\n2015,5,16,\"AA\",\"1053\",\"MIA\",\"LGA\",-6.00,7.00,0.00,\"\",0.00,193.00,153.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1053\",\"MIA\",\"LGA\",-4.00,6.00,0.00,\"\",0.00,190.00,148.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1053\",\"MIA\",\"LGA\",61.00,57.00,0.00,\"\",0.00,176.00,154.00,1096.00,0.00,0.00,52.00,0.00,5.00,\n2015,5,19,\"AA\",\"1053\",\"MIA\",\"LGA\",30.00,30.00,0.00,\"\",0.00,180.00,156.00,1096.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,20,\"AA\",\"1053\",\"MIA\",\"LGA\",-4.00,22.00,0.00,\"\",0.00,206.00,145.00,1096.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,21,\"AA\",\"1053\",\"MIA\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,176.00,150.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1053\",\"MIA\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,168.00,145.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1053\",\"MIA\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,177.00,153.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1053\",\"MIA\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,171.00,148.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1053\",\"MIA\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,167.00,148.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1053\",\"MIA\",\"LGA\",0.00,-24.00,0.00,\"\",0.00,156.00,141.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1053\",\"MIA\",\"LGA\",15.00,,0.00,\"\",1.00,,,1096.00,,,,,,\n2015,5,28,\"AA\",\"1053\",\"MIA\",\"LGA\",-8.00,-5.00,0.00,\"\",0.00,183.00,152.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1053\",\"MIA\",\"LGA\",-6.00,-22.00,0.00,\"\",0.00,164.00,147.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1053\",\"MIA\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,175.00,149.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1053\",\"MIA\",\"LGA\",156.00,163.00,0.00,\"\",0.00,187.00,149.00,1096.00,0.00,0.00,163.00,0.00,0.00,\n2015,5,7,\"AA\",\"1064\",\"LGA\",\"MIA\",42.00,36.00,0.00,\"\",0.00,197.00,178.00,1096.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"AA\",\"1064\",\"LGA\",\"MIA\",-5.00,-23.00,0.00,\"\",0.00,185.00,143.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1064\",\"LGA\",\"MIA\",-6.00,-9.00,0.00,\"\",0.00,200.00,150.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"1064\",\"LGA\",\"MIA\",-9.00,-3.00,0.00,\"\",0.00,209.00,170.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"1064\",\"LGA\",\"MIA\",-6.00,5.00,0.00,\"\",0.00,214.00,150.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"1064\",\"LGA\",\"MIA\",12.00,5.00,0.00,\"\",0.00,196.00,161.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1064\",\"LGA\",\"MIA\",-3.00,12.00,0.00,\"\",0.00,218.00,161.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1064\",\"LGA\",\"MIA\",-4.00,1.00,0.00,\"\",0.00,208.00,161.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1064\",\"LGA\",\"MIA\",-3.00,-19.00,0.00,\"\",0.00,187.00,153.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1064\",\"LGA\",\"MIA\",-8.00,-45.00,0.00,\"\",0.00,166.00,144.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1064\",\"LGA\",\"MIA\",3.00,-24.00,0.00,\"\",0.00,176.00,149.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1064\",\"LGA\",\"MIA\",-5.00,0.00,0.00,\"\",0.00,208.00,156.00,1096.00,,,,,,\n2015,5,19,\"AA\",\"1064\",\"LGA\",\"MIA\",250.00,243.00,0.00,\"\",0.00,196.00,165.00,1096.00,243.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"AA\",\"1064\",\"LGA\",\"MIA\",0.00,-15.00,0.00,\"\",0.00,188.00,147.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"1064\",\"LGA\",\"MIA\",-11.00,8.00,0.00,\"\",0.00,222.00,170.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1064\",\"LGA\",\"MIA\",-3.00,3.00,0.00,\"\",0.00,209.00,179.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1064\",\"LGA\",\"MIA\",-2.00,-30.00,0.00,\"\",0.00,175.00,146.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1064\",\"LGA\",\"MIA\",20.00,-27.00,0.00,\"\",0.00,156.00,138.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1064\",\"LGA\",\"MIA\",-8.00,-10.00,0.00,\"\",0.00,201.00,151.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1064\",\"LGA\",\"MIA\",37.00,6.00,0.00,\"\",0.00,172.00,149.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1064\",\"LGA\",\"MIA\",-6.00,-31.00,0.00,\"\",0.00,178.00,154.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"1064\",\"LGA\",\"MIA\",-9.00,-40.00,0.00,\"\",0.00,172.00,149.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1064\",\"LGA\",\"MIA\",-5.00,-23.00,0.00,\"\",0.00,185.00,142.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1064\",\"LGA\",\"MIA\",-4.00,-25.00,0.00,\"\",0.00,182.00,143.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1064\",\"LGA\",\"MIA\",-2.00,-19.00,0.00,\"\",0.00,186.00,141.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1064\",\"MIA\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,168.00,152.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1064\",\"MIA\",\"LGA\",18.00,48.00,0.00,\"\",0.00,207.00,157.00,1096.00,18.00,0.00,30.00,0.00,0.00,\n2015,5,9,\"AA\",\"1064\",\"MIA\",\"LGA\",16.00,,0.00,\"\",1.00,,,1096.00,,,,,,\n2015,5,10,\"AA\",\"1064\",\"MIA\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,173.00,157.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"1064\",\"MIA\",\"LGA\",28.00,23.00,0.00,\"\",0.00,172.00,155.00,1096.00,13.00,0.00,0.00,0.00,10.00,\n2015,5,12,\"AA\",\"1064\",\"MIA\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,168.00,149.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1064\",\"MIA\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,168.00,147.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1064\",\"MIA\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,169.00,151.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1064\",\"MIA\",\"LGA\",-9.00,-18.00,0.00,\"\",0.00,168.00,150.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1064\",\"MIA\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,173.00,155.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1064\",\"MIA\",\"LGA\",13.00,19.00,0.00,\"\",0.00,183.00,157.00,1096.00,4.00,0.00,6.00,0.00,9.00,\n2015,5,18,\"AA\",\"1064\",\"MIA\",\"LGA\",43.00,126.00,0.00,\"\",0.00,260.00,156.00,1096.00,0.00,0.00,95.00,0.00,31.00,\n2015,5,19,\"AA\",\"1064\",\"MIA\",\"LGA\",9.00,2.00,0.00,\"\",0.00,170.00,143.00,1096.00,,,,,,\n2015,5,20,\"AA\",\"1064\",\"MIA\",\"LGA\",-9.00,-20.00,0.00,\"\",0.00,166.00,150.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"1064\",\"MIA\",\"LGA\",-8.00,-18.00,0.00,\"\",0.00,167.00,148.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1064\",\"MIA\",\"LGA\",-6.00,-27.00,0.00,\"\",0.00,156.00,141.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1064\",\"MIA\",\"LGA\",30.00,20.00,0.00,\"\",0.00,167.00,150.00,1096.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,24,\"AA\",\"1064\",\"MIA\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,167.00,150.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1064\",\"MIA\",\"LGA\",30.00,17.00,0.00,\"\",0.00,164.00,147.00,1096.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,26,\"AA\",\"1064\",\"MIA\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,164.00,145.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1064\",\"MIA\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,158.00,145.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"1064\",\"MIA\",\"LGA\",18.00,0.00,0.00,\"\",0.00,159.00,148.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1064\",\"MIA\",\"LGA\",4.00,-6.00,0.00,\"\",0.00,167.00,151.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1064\",\"MIA\",\"LGA\",24.00,15.00,0.00,\"\",0.00,168.00,148.00,1096.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,31,\"AA\",\"1064\",\"MIA\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,174.00,149.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1175\",\"LGA\",\"MIA\",-5.00,-7.00,0.00,\"\",0.00,186.00,154.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1175\",\"LGA\",\"MIA\",0.00,-13.00,0.00,\"\",0.00,175.00,154.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1175\",\"LGA\",\"MIA\",-4.00,3.00,0.00,\"\",0.00,195.00,147.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1175\",\"LGA\",\"MIA\",-9.00,-14.00,0.00,\"\",0.00,183.00,157.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1175\",\"LGA\",\"MIA\",-12.00,-3.00,0.00,\"\",0.00,197.00,162.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1175\",\"LGA\",\"MIA\",-8.00,11.00,0.00,\"\",0.00,207.00,157.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1175\",\"LGA\",\"MIA\",-1.00,-11.00,0.00,\"\",0.00,178.00,152.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1175\",\"LGA\",\"MIA\",0.00,-8.00,0.00,\"\",0.00,180.00,151.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1175\",\"LGA\",\"MIA\",227.00,217.00,0.00,\"\",0.00,178.00,146.00,1096.00,0.00,0.00,0.00,0.00,217.00,\n2015,5,10,\"AA\",\"1175\",\"LGA\",\"MIA\",-10.00,19.00,0.00,\"\",0.00,217.00,162.00,1096.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,11,\"AA\",\"1175\",\"LGA\",\"MIA\",-4.00,-10.00,0.00,\"\",0.00,182.00,158.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"1175\",\"LGA\",\"MIA\",-1.00,-7.00,0.00,\"\",0.00,182.00,157.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1175\",\"LGA\",\"MIA\",-6.00,12.00,0.00,\"\",0.00,206.00,154.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1175\",\"LGA\",\"MIA\",0.00,-1.00,0.00,\"\",0.00,187.00,150.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1175\",\"LGA\",\"MIA\",-5.00,-10.00,0.00,\"\",0.00,183.00,151.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1175\",\"LGA\",\"MIA\",-3.00,-11.00,0.00,\"\",0.00,180.00,144.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1175\",\"LGA\",\"MIA\",16.00,2.00,0.00,\"\",0.00,174.00,144.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1175\",\"LGA\",\"MIA\",-4.00,-21.00,0.00,\"\",0.00,171.00,148.00,1096.00,,,,,,\n2015,5,19,\"AA\",\"1175\",\"LGA\",\"MIA\",27.00,31.00,0.00,\"\",0.00,192.00,166.00,1096.00,0.00,0.00,4.00,0.00,27.00,\n2015,5,20,\"AA\",\"1175\",\"LGA\",\"MIA\",10.00,-3.00,0.00,\"\",0.00,175.00,145.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"1175\",\"LGA\",\"MIA\",16.00,8.00,0.00,\"\",0.00,180.00,160.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1175\",\"LGA\",\"MIA\",4.00,23.00,0.00,\"\",0.00,207.00,155.00,1096.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,23,\"AA\",\"1175\",\"LGA\",\"MIA\",-8.00,-20.00,0.00,\"\",0.00,176.00,146.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1175\",\"LGA\",\"MIA\",-2.00,-29.00,0.00,\"\",0.00,161.00,140.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1175\",\"LGA\",\"MIA\",-11.00,-23.00,0.00,\"\",0.00,176.00,150.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1175\",\"LGA\",\"MIA\",11.00,-6.00,0.00,\"\",0.00,171.00,146.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1175\",\"LGA\",\"MIA\",0.00,-18.00,0.00,\"\",0.00,170.00,153.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"1175\",\"LGA\",\"MIA\",33.00,26.00,0.00,\"\",0.00,181.00,148.00,1096.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,29,\"AA\",\"1175\",\"LGA\",\"MIA\",10.00,-1.00,0.00,\"\",0.00,177.00,143.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1175\",\"LGA\",\"MIA\",27.00,5.00,0.00,\"\",0.00,166.00,145.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1175\",\"LGA\",\"MIA\",-9.00,-23.00,0.00,\"\",0.00,174.00,147.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1175\",\"MIA\",\"LGA\",-5.00,-28.00,0.00,\"\",0.00,153.00,139.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1175\",\"MIA\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,168.00,154.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1175\",\"MIA\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,166.00,149.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1175\",\"MIA\",\"LGA\",80.00,101.00,0.00,\"\",0.00,197.00,144.00,1096.00,80.00,0.00,21.00,0.00,0.00,\n2015,5,5,\"AA\",\"1175\",\"MIA\",\"LGA\",7.00,-13.00,0.00,\"\",0.00,156.00,141.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1175\",\"MIA\",\"LGA\",-8.00,-1.00,0.00,\"\",0.00,183.00,149.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1175\",\"MIA\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,171.00,151.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1175\",\"MIA\",\"LGA\",46.00,61.00,0.00,\"\",0.00,191.00,155.00,1096.00,0.00,0.00,61.00,0.00,0.00,\n2015,5,9,\"AA\",\"1175\",\"MIA\",\"LGA\",-3.00,9.00,0.00,\"\",0.00,188.00,167.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"1175\",\"MIA\",\"LGA\",-6.00,-1.00,0.00,\"\",0.00,181.00,159.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"1175\",\"MIA\",\"LGA\",9.00,4.00,0.00,\"\",0.00,171.00,152.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"1175\",\"MIA\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,171.00,152.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1175\",\"MIA\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,170.00,146.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1175\",\"MIA\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,172.00,154.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1175\",\"MIA\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,179.00,150.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1175\",\"MIA\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,176.00,154.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1175\",\"MIA\",\"LGA\",33.00,28.00,0.00,\"\",0.00,171.00,149.00,1096.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"AA\",\"1175\",\"MIA\",\"LGA\",5.00,92.00,0.00,\"\",0.00,263.00,151.00,1096.00,0.00,0.00,92.00,0.00,0.00,\n2015,5,19,\"AA\",\"1175\",\"MIA\",\"LGA\",25.00,106.00,0.00,\"\",0.00,257.00,140.00,1096.00,14.00,0.00,81.00,0.00,11.00,\n2015,5,20,\"AA\",\"1175\",\"MIA\",\"LGA\",59.00,48.00,0.00,\"\",0.00,165.00,136.00,1096.00,48.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"AA\",\"1175\",\"MIA\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,165.00,147.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1175\",\"MIA\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,170.00,147.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1175\",\"MIA\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,161.00,144.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1175\",\"MIA\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,177.00,159.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1175\",\"MIA\",\"LGA\",39.00,26.00,0.00,\"\",0.00,163.00,141.00,1096.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"AA\",\"1175\",\"MIA\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,172.00,146.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1175\",\"MIA\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,163.00,142.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"1175\",\"MIA\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,162.00,146.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1175\",\"MIA\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,158.00,145.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1175\",\"MIA\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,168.00,147.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1175\",\"MIA\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,176.00,152.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1176\",\"DFW\",\"LGA\",4.00,-9.00,0.00,\"\",0.00,203.00,185.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1176\",\"DFW\",\"LGA\",-1.00,-26.00,0.00,\"\",0.00,191.00,178.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1176\",\"DFW\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,218.00,185.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1176\",\"DFW\",\"LGA\",9.00,-2.00,0.00,\"\",0.00,205.00,185.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1176\",\"DFW\",\"LGA\",-2.00,2.00,0.00,\"\",0.00,220.00,179.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1176\",\"DFW\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,218.00,184.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1176\",\"DFW\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,214.00,186.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1176\",\"DFW\",\"LGA\",-3.00,15.00,0.00,\"\",0.00,234.00,183.00,1389.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,9,\"AA\",\"1176\",\"DFW\",\"LGA\",-1.00,19.00,0.00,\"\",0.00,236.00,206.00,1389.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,10,\"AA\",\"1176\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1176\",\"DFW\",\"LGA\",15.00,44.00,0.00,\"\",0.00,245.00,216.00,1389.00,15.00,0.00,29.00,0.00,0.00,\n2015,5,12,\"AA\",\"1176\",\"DFW\",\"LGA\",14.00,-27.00,0.00,\"\",0.00,175.00,158.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1176\",\"DFW\",\"LGA\",-1.00,-27.00,0.00,\"\",0.00,190.00,173.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1176\",\"DFW\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,204.00,169.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1176\",\"DFW\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,199.00,175.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1176\",\"DFW\",\"LGA\",25.00,-3.00,0.00,\"\",0.00,188.00,174.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1176\",\"DFW\",\"LGA\",13.00,-7.00,0.00,\"\",0.00,196.00,179.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1176\",\"DFW\",\"LGA\",10.00,17.00,0.00,\"\",0.00,223.00,192.00,1389.00,10.00,0.00,7.00,0.00,0.00,\n2015,5,19,\"AA\",\"1176\",\"DFW\",\"LGA\",10.00,-11.00,0.00,\"\",0.00,195.00,172.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1176\",\"DFW\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,196.00,161.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1176\",\"DFW\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,201.00,168.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1176\",\"DFW\",\"LGA\",19.00,-14.00,0.00,\"\",0.00,183.00,166.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1176\",\"DFW\",\"LGA\",22.00,-6.00,0.00,\"\",0.00,188.00,174.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1176\",\"DFW\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,201.00,178.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1176\",\"DFW\",\"LGA\",6.00,-8.00,0.00,\"\",0.00,202.00,177.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1176\",\"DFW\",\"LGA\",5.00,3.00,0.00,\"\",0.00,214.00,178.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1176\",\"DFW\",\"LGA\",52.00,34.00,0.00,\"\",0.00,198.00,178.00,1389.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,28,\"AA\",\"1176\",\"DFW\",\"LGA\",8.00,-8.00,0.00,\"\",0.00,200.00,182.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1176\",\"DFW\",\"LGA\",3.00,26.00,0.00,\"\",0.00,239.00,187.00,1389.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,30,\"AA\",\"1176\",\"DFW\",\"LGA\",11.00,-4.00,0.00,\"\",0.00,201.00,179.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1176\",\"DFW\",\"LGA\",16.00,29.00,0.00,\"\",0.00,229.00,196.00,1389.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,25,\"AA\",\"1108\",\"LGA\",\"DFW\",-9.00,68.00,0.00,\"\",0.00,319.00,277.00,1389.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,26,\"AA\",\"1108\",\"LGA\",\"DFW\",-9.00,-32.00,0.00,\"\",0.00,219.00,191.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1108\",\"LGA\",\"DFW\",-4.00,6.00,0.00,\"\",0.00,252.00,201.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1108\",\"LGA\",\"DFW\",0.00,7.00,0.00,\"\",0.00,249.00,200.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1108\",\"LGA\",\"DFW\",46.00,8.00,0.00,\"\",0.00,204.00,184.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1108\",\"LGA\",\"DFW\",-11.00,-41.00,0.00,\"\",0.00,212.00,192.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1110\",\"JFK\",\"DFW\",-5.00,-24.00,0.00,\"\",0.00,218.00,173.00,1391.00,,,,,,\n2015,5,2,\"AA\",\"1110\",\"JFK\",\"DFW\",-2.00,-22.00,0.00,\"\",0.00,217.00,190.00,1391.00,,,,,,\n2015,5,3,\"AA\",\"1110\",\"JFK\",\"DFW\",-7.00,-30.00,0.00,\"\",0.00,214.00,186.00,1391.00,,,,,,\n2015,5,4,\"AA\",\"1110\",\"JFK\",\"DFW\",-2.00,-29.00,0.00,\"\",0.00,210.00,184.00,1391.00,,,,,,\n2015,5,5,\"AA\",\"1110\",\"JFK\",\"DFW\",-6.00,-14.00,0.00,\"\",0.00,229.00,187.00,1391.00,,,,,,\n2015,5,6,\"AA\",\"1110\",\"JFK\",\"DFW\",-8.00,-50.00,0.00,\"\",0.00,195.00,179.00,1391.00,,,,,,\n2015,5,7,\"AA\",\"1110\",\"JFK\",\"DFW\",-3.00,-8.00,0.00,\"\",0.00,232.00,199.00,1391.00,,,,,,\n2015,5,8,\"AA\",\"1110\",\"JFK\",\"DFW\",-4.00,-25.00,0.00,\"\",0.00,216.00,189.00,1391.00,,,,,,\n2015,5,9,\"AA\",\"1110\",\"JFK\",\"DFW\",-1.00,-8.00,0.00,\"\",0.00,230.00,205.00,1391.00,,,,,,\n2015,5,10,\"AA\",\"1110\",\"JFK\",\"DFW\",-6.00,15.00,0.00,\"\",0.00,258.00,238.00,1391.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,11,\"AA\",\"1110\",\"JFK\",\"DFW\",-4.00,10.00,0.00,\"\",0.00,251.00,224.00,1391.00,,,,,,\n2015,5,12,\"AA\",\"1110\",\"JFK\",\"DFW\",-1.00,13.00,0.00,\"\",0.00,251.00,204.00,1391.00,,,,,,\n2015,5,13,\"AA\",\"1110\",\"JFK\",\"DFW\",-4.00,-11.00,0.00,\"\",0.00,230.00,203.00,1391.00,,,,,,\n2015,5,14,\"AA\",\"1110\",\"JFK\",\"DFW\",3.00,5.00,0.00,\"\",0.00,239.00,205.00,1391.00,,,,,,\n2015,5,15,\"AA\",\"1110\",\"JFK\",\"DFW\",4.00,9.00,0.00,\"\",0.00,242.00,196.00,1391.00,,,,,,\n2015,5,16,\"AA\",\"1110\",\"JFK\",\"DFW\",-3.00,-13.00,0.00,\"\",0.00,227.00,192.00,1391.00,,,,,,\n2015,5,17,\"AA\",\"1110\",\"JFK\",\"DFW\",7.00,6.00,0.00,\"\",0.00,236.00,219.00,1391.00,,,,,,\n2015,5,18,\"AA\",\"1110\",\"JFK\",\"DFW\",-4.00,-11.00,0.00,\"\",0.00,230.00,203.00,1391.00,,,,,,\n2015,5,19,\"AA\",\"1110\",\"JFK\",\"DFW\",-3.00,-2.00,0.00,\"\",0.00,238.00,206.00,1391.00,,,,,,\n2015,5,20,\"AA\",\"1110\",\"JFK\",\"DFW\",-5.00,0.00,0.00,\"\",0.00,242.00,201.00,1391.00,,,,,,\n2015,5,21,\"AA\",\"1110\",\"JFK\",\"DFW\",-3.00,7.00,0.00,\"\",0.00,247.00,217.00,1391.00,,,,,,\n2015,5,22,\"AA\",\"1110\",\"JFK\",\"DFW\",207.00,245.00,0.00,\"\",0.00,275.00,203.00,1391.00,207.00,0.00,38.00,0.00,0.00,\n2015,5,23,\"AA\",\"1110\",\"JFK\",\"DFW\",-6.00,-13.00,0.00,\"\",0.00,230.00,194.00,1391.00,,,,,,\n2015,5,24,\"AA\",\"1110\",\"JFK\",\"DFW\",-4.00,-5.00,0.00,\"\",0.00,236.00,207.00,1391.00,,,,,,\n2015,5,25,\"AA\",\"1110\",\"JFK\",\"DFW\",-5.00,-12.00,0.00,\"\",0.00,230.00,197.00,1391.00,,,,,,\n2015,5,26,\"AA\",\"1110\",\"JFK\",\"DFW\",-6.00,-27.00,0.00,\"\",0.00,216.00,189.00,1391.00,,,,,,\n2015,5,27,\"AA\",\"1110\",\"JFK\",\"DFW\",-5.00,-15.00,0.00,\"\",0.00,227.00,194.00,1391.00,,,,,,\n2015,5,28,\"AA\",\"1110\",\"JFK\",\"DFW\",-5.00,7.00,0.00,\"\",0.00,249.00,205.00,1391.00,,,,,,\n2015,5,29,\"AA\",\"1110\",\"JFK\",\"DFW\",1.00,23.00,0.00,\"\",0.00,259.00,220.00,1391.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,30,\"AA\",\"1110\",\"JFK\",\"DFW\",-1.00,-26.00,0.00,\"\",0.00,212.00,187.00,1391.00,,,,,,\n2015,5,31,\"AA\",\"1110\",\"JFK\",\"DFW\",3.00,-8.00,0.00,\"\",0.00,226.00,196.00,1391.00,,,,,,\n2015,5,1,\"AA\",\"1111\",\"LGA\",\"DFW\",-7.00,-19.00,0.00,\"\",0.00,225.00,178.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1111\",\"LGA\",\"DFW\",14.00,-15.00,0.00,\"\",0.00,208.00,185.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1111\",\"LGA\",\"DFW\",-11.00,-25.00,0.00,\"\",0.00,223.00,187.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1111\",\"LGA\",\"DFW\",110.00,117.00,0.00,\"\",0.00,244.00,183.00,1389.00,110.00,0.00,7.00,0.00,0.00,\n2015,5,5,\"AA\",\"1111\",\"LGA\",\"DFW\",-4.00,-31.00,0.00,\"\",0.00,210.00,185.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1111\",\"LGA\",\"DFW\",-9.00,-4.00,0.00,\"\",0.00,242.00,187.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1111\",\"LGA\",\"DFW\",-7.00,-23.00,0.00,\"\",0.00,221.00,200.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1111\",\"LGA\",\"DFW\",-7.00,-27.00,0.00,\"\",0.00,217.00,185.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1111\",\"LGA\",\"DFW\",-8.00,13.00,0.00,\"\",0.00,258.00,206.00,1389.00,,,,,,\n2015,5,10,\"AA\",\"1111\",\"LGA\",\"DFW\",-13.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1111\",\"LGA\",\"DFW\",4.00,9.00,0.00,\"\",0.00,242.00,219.00,1389.00,,,,,,\n2015,5,12,\"AA\",\"1111\",\"LGA\",\"DFW\",-11.00,-25.00,0.00,\"\",0.00,223.00,202.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1111\",\"LGA\",\"DFW\",-8.00,1.00,0.00,\"\",0.00,246.00,197.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1111\",\"LGA\",\"DFW\",-8.00,-19.00,0.00,\"\",0.00,226.00,194.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1111\",\"LGA\",\"DFW\",1.00,-11.00,0.00,\"\",0.00,225.00,194.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1144\",\"DFW\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,198.00,181.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1144\",\"DFW\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,192.00,174.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1144\",\"DFW\",\"LGA\",21.00,13.00,0.00,\"\",0.00,199.00,179.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1144\",\"DFW\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,196.00,182.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1144\",\"DFW\",\"LGA\",15.00,19.00,0.00,\"\",0.00,211.00,192.00,1389.00,12.00,0.00,4.00,0.00,3.00,\n2015,5,6,\"AA\",\"1144\",\"DFW\",\"LGA\",-3.00,0.00,0.00,\"\",0.00,210.00,176.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1144\",\"DFW\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,200.00,185.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1144\",\"DFW\",\"LGA\",16.00,13.00,0.00,\"\",0.00,204.00,187.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1144\",\"DFW\",\"LGA\",126.00,131.00,0.00,\"\",0.00,212.00,188.00,1389.00,0.00,1.00,5.00,0.00,125.00,\n2015,5,10,\"AA\",\"1144\",\"DFW\",\"LGA\",195.00,190.00,0.00,\"\",0.00,202.00,185.00,1389.00,0.00,190.00,0.00,0.00,0.00,\n2015,5,11,\"AA\",\"1144\",\"DFW\",\"LGA\",-1.00,28.00,0.00,\"\",0.00,236.00,183.00,1389.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,12,\"AA\",\"1144\",\"DFW\",\"LGA\",-3.00,-31.00,0.00,\"\",0.00,179.00,162.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1144\",\"DFW\",\"LGA\",23.00,26.00,0.00,\"\",0.00,210.00,172.00,1389.00,0.00,23.00,3.00,0.00,0.00,\n2015,5,14,\"AA\",\"1144\",\"DFW\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,187.00,171.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1144\",\"DFW\",\"LGA\",1.00,-11.00,0.00,\"\",0.00,195.00,175.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1144\",\"DFW\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,201.00,184.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1144\",\"DFW\",\"LGA\",27.00,13.00,0.00,\"\",0.00,193.00,177.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1144\",\"DFW\",\"LGA\",31.00,44.00,0.00,\"\",0.00,220.00,191.00,1389.00,0.00,31.00,13.00,0.00,0.00,\n2015,5,19,\"AA\",\"1144\",\"DFW\",\"LGA\",44.00,40.00,0.00,\"\",0.00,203.00,180.00,1389.00,0.00,0.00,15.00,0.00,25.00,\n2015,5,20,\"AA\",\"1144\",\"DFW\",\"LGA\",2.00,13.00,0.00,\"\",0.00,218.00,166.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1144\",\"DFW\",\"LGA\",21.00,-3.00,0.00,\"\",0.00,183.00,167.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1144\",\"DFW\",\"LGA\",-3.00,-22.00,0.00,\"\",0.00,188.00,165.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1144\",\"DFW\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,192.00,171.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1144\",\"DFW\",\"LGA\",-7.00,-27.00,0.00,\"\",0.00,187.00,171.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1144\",\"DFW\",\"LGA\",32.00,141.00,0.00,\"\",0.00,316.00,200.00,1389.00,0.00,32.00,109.00,0.00,0.00,\n2015,5,26,\"AA\",\"1144\",\"DFW\",\"LGA\",7.00,1.00,0.00,\"\",0.00,201.00,184.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1144\",\"DFW\",\"LGA\",0.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,28,\"AA\",\"1144\",\"DFW\",\"LGA\",-3.00,4.00,0.00,\"\",0.00,214.00,180.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1144\",\"DFW\",\"LGA\",39.00,35.00,0.00,\"\",0.00,203.00,185.00,1389.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"AA\",\"1144\",\"DFW\",\"LGA\",-2.00,16.00,0.00,\"\",0.00,225.00,194.00,1389.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,31,\"AA\",\"1144\",\"DFW\",\"LGA\",37.00,103.00,0.00,\"\",0.00,273.00,246.00,1389.00,0.00,0.00,103.00,0.00,0.00,\n2015,5,1,\"AA\",\"1144\",\"LGA\",\"DFW\",-8.00,-44.00,0.00,\"\",0.00,205.00,176.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1144\",\"LGA\",\"DFW\",-9.00,-46.00,0.00,\"\",0.00,204.00,184.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1144\",\"LGA\",\"DFW\",7.00,-35.00,0.00,\"\",0.00,199.00,180.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1144\",\"LGA\",\"DFW\",-7.00,-26.00,0.00,\"\",0.00,222.00,179.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1144\",\"LGA\",\"DFW\",-5.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,8,\"AA\",\"1144\",\"LGA\",\"DFW\",3.00,-24.00,0.00,\"\",0.00,214.00,190.00,1389.00,,,,,,\n2015,5,11,\"AA\",\"1144\",\"LGA\",\"DFW\",18.00,27.00,0.00,\"\",0.00,250.00,207.00,1389.00,0.00,0.00,9.00,0.00,18.00,\n2015,5,12,\"AA\",\"1144\",\"LGA\",\"DFW\",-3.00,-18.00,0.00,\"\",0.00,226.00,196.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1144\",\"LGA\",\"DFW\",25.00,19.00,0.00,\"\",0.00,235.00,183.00,1389.00,0.00,0.00,2.00,0.00,17.00,\n2015,5,14,\"AA\",\"1144\",\"LGA\",\"DFW\",-3.00,-27.00,0.00,\"\",0.00,217.00,195.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1144\",\"LGA\",\"DFW\",-4.00,-32.00,0.00,\"\",0.00,213.00,193.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1144\",\"LGA\",\"DFW\",36.00,77.00,0.00,\"\",0.00,282.00,200.00,1389.00,0.00,0.00,41.00,0.00,36.00,\n2015,5,19,\"AA\",\"1144\",\"LGA\",\"DFW\",27.00,6.00,0.00,\"\",0.00,220.00,199.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1144\",\"LGA\",\"DFW\",6.00,37.00,0.00,\"\",0.00,272.00,201.00,1389.00,0.00,0.00,31.00,0.00,6.00,\n2015,5,21,\"AA\",\"1144\",\"LGA\",\"DFW\",-4.00,7.00,0.00,\"\",0.00,252.00,209.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1144\",\"LGA\",\"DFW\",-13.00,-38.00,0.00,\"\",0.00,216.00,195.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1144\",\"LGA\",\"DFW\",211.00,180.00,0.00,\"\",0.00,210.00,191.00,1389.00,52.00,0.00,0.00,0.00,128.00,\n2015,5,26,\"AA\",\"1144\",\"LGA\",\"DFW\",0.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,27,\"AA\",\"1144\",\"LGA\",\"DFW\",,,1.00,\"A\",0.00,,,1389.00,,,,,,\n2015,5,28,\"AA\",\"1144\",\"LGA\",\"DFW\",1.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,29,\"AA\",\"1144\",\"LGA\",\"DFW\",37.00,5.00,0.00,\"\",0.00,209.00,182.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1148\",\"DFW\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,197.00,181.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1148\",\"DFW\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,199.00,182.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1148\",\"DFW\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,210.00,188.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1148\",\"DFW\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,199.00,180.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1148\",\"DFW\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,210.00,184.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1148\",\"DFW\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,204.00,184.00,1389.00,,,,,,\n2015,5,11,\"AA\",\"1148\",\"DFW\",\"LGA\",87.00,93.00,0.00,\"\",0.00,219.00,189.00,1389.00,0.00,0.00,93.00,0.00,0.00,\n2015,5,12,\"AA\",\"1148\",\"DFW\",\"LGA\",-1.00,-35.00,0.00,\"\",0.00,179.00,164.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1148\",\"DFW\",\"LGA\",1.00,1.00,0.00,\"\",0.00,213.00,171.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1148\",\"DFW\",\"LGA\",11.00,-9.00,0.00,\"\",0.00,193.00,173.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1148\",\"DFW\",\"LGA\",6.00,-12.00,0.00,\"\",0.00,195.00,175.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1148\",\"DFW\",\"LGA\",37.00,33.00,0.00,\"\",0.00,209.00,191.00,1389.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,19,\"AA\",\"1148\",\"DFW\",\"LGA\",67.00,63.00,0.00,\"\",0.00,209.00,181.00,1389.00,0.00,0.00,0.00,0.00,63.00,\n2015,5,20,\"AA\",\"1148\",\"DFW\",\"LGA\",-6.00,38.00,0.00,\"\",0.00,257.00,187.00,1389.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,21,\"AA\",\"1148\",\"DFW\",\"LGA\",-2.00,-28.00,0.00,\"\",0.00,187.00,170.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1148\",\"DFW\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,204.00,173.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1148\",\"DFW\",\"LGA\",52.00,119.00,0.00,\"\",0.00,280.00,210.00,1389.00,0.00,52.00,67.00,0.00,0.00,\n2015,5,26,\"AA\",\"1148\",\"DFW\",\"LGA\",4.00,-2.00,0.00,\"\",0.00,207.00,184.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1148\",\"DFW\",\"LGA\",41.00,82.00,0.00,\"\",0.00,254.00,232.00,1389.00,41.00,0.00,41.00,0.00,0.00,\n2015,5,28,\"AA\",\"1148\",\"DFW\",\"LGA\",12.00,8.00,0.00,\"\",0.00,209.00,182.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1148\",\"DFW\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,214.00,187.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1148\",\"LGA\",\"DFW\",-9.00,-33.00,0.00,\"\",0.00,224.00,207.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1156\",\"DFW\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,198.00,181.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1156\",\"DFW\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,200.00,177.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1156\",\"DFW\",\"LGA\",12.00,12.00,0.00,\"\",0.00,211.00,187.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1156\",\"DFW\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,197.00,181.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1156\",\"DFW\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,208.00,184.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1156\",\"DFW\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,200.00,182.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1156\",\"DFW\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,200.00,181.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1156\",\"DFW\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,203.00,188.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1156\",\"DFW\",\"LGA\",-2.00,8.00,0.00,\"\",0.00,221.00,194.00,1389.00,,,,,,\n2015,5,10,\"AA\",\"1156\",\"DFW\",\"LGA\",90.00,91.00,0.00,\"\",0.00,212.00,189.00,1389.00,0.00,42.00,1.00,0.00,48.00,\n2015,5,11,\"AA\",\"1156\",\"DFW\",\"LGA\",96.00,123.00,0.00,\"\",0.00,238.00,216.00,1389.00,0.00,0.00,36.00,0.00,87.00,\n2015,5,12,\"AA\",\"1156\",\"DFW\",\"LGA\",-2.00,-28.00,0.00,\"\",0.00,185.00,163.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1156\",\"DFW\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,216.00,172.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1156\",\"DFW\",\"LGA\",5.00,-14.00,0.00,\"\",0.00,192.00,173.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1156\",\"DFW\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,208.00,188.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1156\",\"DFW\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,202.00,179.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1156\",\"DFW\",\"LGA\",1.00,-18.00,0.00,\"\",0.00,192.00,175.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1156\",\"DFW\",\"LGA\",4.00,20.00,0.00,\"\",0.00,227.00,189.00,1389.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,19,\"AA\",\"1156\",\"DFW\",\"LGA\",37.00,25.00,0.00,\"\",0.00,199.00,178.00,1389.00,0.00,3.00,0.00,0.00,22.00,\n2015,5,20,\"AA\",\"1156\",\"DFW\",\"LGA\",10.00,-8.00,0.00,\"\",0.00,193.00,164.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1156\",\"DFW\",\"LGA\",-3.00,-33.00,0.00,\"\",0.00,181.00,166.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1156\",\"DFW\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,195.00,171.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1156\",\"DFW\",\"LGA\",-2.00,2.00,0.00,\"\",0.00,215.00,185.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1156\",\"DFW\",\"LGA\",-4.00,-27.00,0.00,\"\",0.00,188.00,173.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1156\",\"DFW\",\"LGA\",179.00,170.00,0.00,\"\",0.00,202.00,180.00,1389.00,0.00,111.00,0.00,0.00,59.00,\n2015,5,26,\"AA\",\"1156\",\"DFW\",\"LGA\",193.00,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,27,\"AA\",\"1156\",\"DFW\",\"LGA\",9.00,11.00,0.00,\"\",0.00,213.00,179.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1156\",\"DFW\",\"LGA\",-2.00,9.00,0.00,\"\",0.00,222.00,188.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1156\",\"DFW\",\"LGA\",-7.00,11.00,0.00,\"\",0.00,229.00,190.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1156\",\"DFW\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,215.00,191.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1156\",\"DFW\",\"LGA\",71.00,72.00,0.00,\"\",0.00,212.00,190.00,1389.00,0.00,0.00,16.00,0.00,56.00,\n2015,5,1,\"AA\",\"1164\",\"DFW\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,214.00,190.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1164\",\"DFW\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,203.00,180.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1164\",\"DFW\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,201.00,182.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1164\",\"DFW\",\"LGA\",-3.00,9.00,0.00,\"\",0.00,227.00,194.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1164\",\"DFW\",\"LGA\",9.00,-1.00,0.00,\"\",0.00,205.00,189.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1164\",\"DFW\",\"LGA\",-6.00,-25.00,0.00,\"\",0.00,194.00,175.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1164\",\"DFW\",\"LGA\",-4.00,18.00,0.00,\"\",0.00,235.00,189.00,1389.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,10,\"AA\",\"1164\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1164\",\"DFW\",\"LGA\",0.00,1.00,0.00,\"\",0.00,214.00,184.00,1389.00,,,,,,\n2015,5,12,\"AA\",\"1164\",\"DFW\",\"LGA\",-5.00,-41.00,0.00,\"\",0.00,177.00,162.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1164\",\"DFW\",\"LGA\",-3.00,-22.00,0.00,\"\",0.00,194.00,172.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1164\",\"DFW\",\"LGA\",0.00,-24.00,0.00,\"\",0.00,189.00,167.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1164\",\"DFW\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,204.00,187.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1164\",\"DFW\",\"LGA\",3.00,-10.00,0.00,\"\",0.00,200.00,182.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1164\",\"DFW\",\"LGA\",-1.00,6.00,0.00,\"\",0.00,220.00,190.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1164\",\"DFW\",\"LGA\",19.00,69.00,0.00,\"\",0.00,263.00,185.00,1389.00,19.00,0.00,50.00,0.00,0.00,\n2015,5,20,\"AA\",\"1164\",\"DFW\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,204.00,164.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1164\",\"DFW\",\"LGA\",0.00,-29.00,0.00,\"\",0.00,184.00,160.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1164\",\"DFW\",\"LGA\",26.00,0.00,0.00,\"\",0.00,187.00,170.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1164\",\"DFW\",\"LGA\",-3.00,-30.00,0.00,\"\",0.00,186.00,172.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1164\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,26,\"AA\",\"1164\",\"DFW\",\"LGA\",30.00,8.00,0.00,\"\",0.00,191.00,167.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1164\",\"DFW\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,199.00,173.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1164\",\"DFW\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,201.00,171.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1164\",\"DFW\",\"LGA\",-4.00,2.00,0.00,\"\",0.00,219.00,190.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1164\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,1,\"AA\",\"1165\",\"BOS\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,69.00,43.00,187.00,,,,,,\n2015,5,2,\"AA\",\"1165\",\"BOS\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,58.00,35.00,187.00,,,,,,\n2015,5,3,\"AA\",\"1165\",\"BOS\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,64.00,41.00,187.00,,,,,,\n2015,5,4,\"AA\",\"1165\",\"BOS\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,65.00,43.00,187.00,,,,,,\n2015,5,5,\"AA\",\"1165\",\"BOS\",\"JFK\",-10.00,-11.00,0.00,\"\",0.00,74.00,42.00,187.00,,,,,,\n2015,5,6,\"AA\",\"1165\",\"BOS\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,64.00,41.00,187.00,,,,,,\n2015,5,7,\"AA\",\"1165\",\"BOS\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,67.00,40.00,187.00,,,,,,\n2015,5,8,\"AA\",\"1165\",\"BOS\",\"JFK\",-1.00,67.00,0.00,\"\",0.00,143.00,79.00,187.00,0.00,0.00,67.00,0.00,0.00,\n2015,5,9,\"AA\",\"1165\",\"BOS\",\"JFK\",19.00,18.00,0.00,\"\",0.00,74.00,55.00,187.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"AA\",\"1165\",\"BOS\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,78.00,42.00,187.00,,,,,,\n2015,5,11,\"AA\",\"1165\",\"BOS\",\"JFK\",-6.00,-2.00,0.00,\"\",0.00,79.00,43.00,187.00,,,,,,\n2015,5,12,\"AA\",\"1165\",\"BOS\",\"JFK\",-5.00,38.00,0.00,\"\",0.00,118.00,84.00,187.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,13,\"AA\",\"1165\",\"BOS\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,75.00,46.00,187.00,,,,,,\n2015,5,14,\"AA\",\"1165\",\"BOS\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,62.00,39.00,187.00,,,,,,\n2015,5,15,\"AA\",\"1165\",\"BOS\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,62.00,43.00,187.00,,,,,,\n2015,5,16,\"AA\",\"1165\",\"BOS\",\"JFK\",-10.00,-16.00,0.00,\"\",0.00,69.00,48.00,187.00,,,,,,\n2015,5,17,\"AA\",\"1165\",\"BOS\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,67.00,39.00,187.00,,,,,,\n2015,5,18,\"AA\",\"1165\",\"BOS\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,61.00,40.00,187.00,,,,,,\n2015,5,19,\"AA\",\"1165\",\"BOS\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,75.00,53.00,187.00,,,,,,\n2015,5,20,\"AA\",\"1165\",\"BOS\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,64.00,42.00,187.00,,,,,,\n2015,5,21,\"AA\",\"1165\",\"BOS\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,63.00,44.00,187.00,,,,,,\n2015,5,22,\"AA\",\"1165\",\"BOS\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,64.00,47.00,187.00,,,,,,\n2015,5,23,\"AA\",\"1165\",\"BOS\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,63.00,44.00,187.00,,,,,,\n2015,5,24,\"AA\",\"1165\",\"BOS\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,63.00,42.00,187.00,,,,,,\n2015,5,25,\"AA\",\"1165\",\"BOS\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,65.00,41.00,187.00,,,,,,\n2015,5,26,\"AA\",\"1165\",\"BOS\",\"JFK\",-5.00,-4.00,0.00,\"\",0.00,76.00,42.00,187.00,,,,,,\n2015,5,27,\"AA\",\"1165\",\"BOS\",\"JFK\",-12.00,-3.00,0.00,\"\",0.00,84.00,43.00,187.00,,,,,,\n2015,5,28,\"AA\",\"1165\",\"BOS\",\"JFK\",-8.00,-11.00,0.00,\"\",0.00,72.00,44.00,187.00,,,,,,\n2015,5,29,\"AA\",\"1165\",\"BOS\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,60.00,39.00,187.00,,,,,,\n2015,5,30,\"AA\",\"1165\",\"BOS\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,70.00,40.00,187.00,,,,,,\n2015,5,31,\"AA\",\"1165\",\"BOS\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,69.00,40.00,187.00,,,,,,\n2015,5,1,\"AA\",\"1170\",\"DFW\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,211.00,187.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1170\",\"DFW\",\"LGA\",,,1.00,\"A\",0.00,,,1389.00,,,,,,\n2015,5,3,\"AA\",\"1170\",\"DFW\",\"LGA\",26.00,47.00,0.00,\"\",0.00,230.00,185.00,1389.00,3.00,0.00,21.00,0.00,23.00,\n2015,5,4,\"AA\",\"1170\",\"DFW\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,204.00,181.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1170\",\"DFW\",\"LGA\",10.00,7.00,0.00,\"\",0.00,206.00,181.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1170\",\"DFW\",\"LGA\",1.00,0.00,0.00,\"\",0.00,208.00,182.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1170\",\"DFW\",\"LGA\",0.00,12.00,0.00,\"\",0.00,221.00,201.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1170\",\"DFW\",\"LGA\",22.00,44.00,0.00,\"\",0.00,231.00,192.00,1389.00,22.00,0.00,22.00,0.00,0.00,\n2015,5,9,\"AA\",\"1170\",\"DFW\",\"LGA\",0.00,11.00,0.00,\"\",0.00,220.00,204.00,1389.00,,,,,,\n2015,5,10,\"AA\",\"1170\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1170\",\"DFW\",\"LGA\",1.00,28.00,0.00,\"\",0.00,236.00,209.00,1389.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,12,\"AA\",\"1170\",\"DFW\",\"LGA\",-4.00,-35.00,0.00,\"\",0.00,178.00,159.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1170\",\"DFW\",\"LGA\",7.00,-10.00,0.00,\"\",0.00,192.00,169.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1170\",\"DFW\",\"LGA\",15.00,3.00,0.00,\"\",0.00,197.00,171.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1170\",\"DFW\",\"LGA\",10.00,6.00,0.00,\"\",0.00,205.00,174.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1170\",\"DFW\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,203.00,185.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1170\",\"DFW\",\"LGA\",1.00,-16.00,0.00,\"\",0.00,192.00,177.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1170\",\"DFW\",\"LGA\",6.00,25.00,0.00,\"\",0.00,228.00,199.00,1389.00,6.00,0.00,19.00,0.00,0.00,\n2015,5,19,\"AA\",\"1170\",\"DFW\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,203.00,180.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1170\",\"DFW\",\"LGA\",1.00,-16.00,0.00,\"\",0.00,192.00,163.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1170\",\"DFW\",\"LGA\",-1.00,-29.00,0.00,\"\",0.00,181.00,167.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1170\",\"DFW\",\"LGA\",23.00,-3.00,0.00,\"\",0.00,183.00,161.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1170\",\"DFW\",\"LGA\",74.00,66.00,0.00,\"\",0.00,201.00,177.00,1389.00,0.00,60.00,0.00,0.00,6.00,\n2015,5,24,\"AA\",\"1170\",\"DFW\",\"LGA\",26.00,13.00,0.00,\"\",0.00,196.00,177.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1170\",\"DFW\",\"LGA\",55.00,51.00,0.00,\"\",0.00,205.00,184.00,1389.00,0.00,30.00,0.00,0.00,21.00,\n2015,5,26,\"AA\",\"1170\",\"DFW\",\"LGA\",27.00,29.00,0.00,\"\",0.00,211.00,177.00,1389.00,0.00,0.00,2.00,0.00,27.00,\n2015,5,27,\"AA\",\"1170\",\"DFW\",\"LGA\",13.00,22.00,0.00,\"\",0.00,218.00,172.00,1389.00,0.00,0.00,9.00,0.00,13.00,\n2015,5,28,\"AA\",\"1170\",\"DFW\",\"LGA\",-7.00,-5.00,0.00,\"\",0.00,211.00,181.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1170\",\"DFW\",\"LGA\",2.00,17.00,0.00,\"\",0.00,224.00,190.00,1389.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,30,\"AA\",\"1170\",\"DFW\",\"LGA\",12.00,9.00,0.00,\"\",0.00,206.00,181.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1170\",\"DFW\",\"LGA\",45.00,67.00,0.00,\"\",0.00,231.00,194.00,1389.00,0.00,0.00,62.00,0.00,5.00,\n2015,5,1,\"AA\",\"1295\",\"LGA\",\"MIA\",4.00,-9.00,0.00,\"\",0.00,173.00,154.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1295\",\"LGA\",\"MIA\",-5.00,-10.00,0.00,\"\",0.00,181.00,153.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1295\",\"LGA\",\"MIA\",-7.00,-35.00,0.00,\"\",0.00,158.00,146.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1295\",\"LGA\",\"MIA\",-7.00,-22.00,0.00,\"\",0.00,171.00,151.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1295\",\"LGA\",\"MIA\",-9.00,-16.00,0.00,\"\",0.00,179.00,161.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1295\",\"LGA\",\"MIA\",-10.00,-22.00,0.00,\"\",0.00,174.00,154.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1295\",\"LGA\",\"MIA\",-12.00,-22.00,0.00,\"\",0.00,176.00,151.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1295\",\"LGA\",\"MIA\",-2.00,-24.00,0.00,\"\",0.00,164.00,145.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1295\",\"LGA\",\"MIA\",-9.00,-21.00,0.00,\"\",0.00,174.00,145.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"1295\",\"LGA\",\"MIA\",-6.00,-25.00,0.00,\"\",0.00,167.00,152.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"1295\",\"LGA\",\"MIA\",-5.00,-18.00,0.00,\"\",0.00,173.00,155.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"1295\",\"LGA\",\"MIA\",-7.00,-14.00,0.00,\"\",0.00,179.00,156.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1295\",\"LGA\",\"MIA\",0.00,-1.00,0.00,\"\",0.00,185.00,165.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1295\",\"LGA\",\"MIA\",-7.00,-39.00,0.00,\"\",0.00,154.00,138.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1295\",\"LGA\",\"MIA\",-6.00,-13.00,0.00,\"\",0.00,179.00,156.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1295\",\"LGA\",\"MIA\",-6.00,-20.00,0.00,\"\",0.00,172.00,153.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1295\",\"LGA\",\"MIA\",-9.00,-38.00,0.00,\"\",0.00,157.00,142.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1295\",\"LGA\",\"MIA\",-5.00,-13.00,0.00,\"\",0.00,178.00,148.00,1096.00,,,,,,\n2015,5,19,\"AA\",\"1295\",\"LGA\",\"MIA\",-9.00,-26.00,0.00,\"\",0.00,169.00,150.00,1096.00,,,,,,\n2015,5,20,\"AA\",\"1295\",\"LGA\",\"MIA\",-5.00,-26.00,0.00,\"\",0.00,165.00,149.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"1295\",\"LGA\",\"MIA\",-5.00,-12.00,0.00,\"\",0.00,179.00,153.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1295\",\"LGA\",\"MIA\",-10.00,-31.00,0.00,\"\",0.00,165.00,148.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1295\",\"LGA\",\"MIA\",-4.00,-16.00,0.00,\"\",0.00,174.00,146.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1295\",\"LGA\",\"MIA\",-3.00,-26.00,0.00,\"\",0.00,163.00,142.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1295\",\"LGA\",\"MIA\",-5.00,-25.00,0.00,\"\",0.00,166.00,149.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1295\",\"LGA\",\"MIA\",-8.00,-23.00,0.00,\"\",0.00,171.00,150.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1295\",\"LGA\",\"MIA\",-8.00,-24.00,0.00,\"\",0.00,170.00,148.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"1295\",\"LGA\",\"MIA\",-4.00,-33.00,0.00,\"\",0.00,157.00,144.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1295\",\"LGA\",\"MIA\",-8.00,-34.00,0.00,\"\",0.00,160.00,141.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1295\",\"LGA\",\"MIA\",-5.00,-33.00,0.00,\"\",0.00,158.00,141.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1295\",\"LGA\",\"MIA\",-9.00,-33.00,0.00,\"\",0.00,162.00,144.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1297\",\"MIA\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,162.00,139.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"1297\",\"MIA\",\"JFK\",0.00,-26.00,0.00,\"\",0.00,153.00,133.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"1297\",\"MIA\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,161.00,141.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"1297\",\"MIA\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,166.00,138.00,1089.00,,,,,,\n2015,5,5,\"AA\",\"1297\",\"MIA\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,161.00,137.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"1297\",\"MIA\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,169.00,140.00,1089.00,,,,,,\n2015,5,1,\"AA\",\"1305\",\"ORD\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,146.00,110.00,740.00,,,,,,\n2015,5,2,\"AA\",\"1305\",\"ORD\",\"JFK\",-1.00,-26.00,0.00,\"\",0.00,126.00,106.00,740.00,,,,,,\n2015,5,3,\"AA\",\"1305\",\"ORD\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,137.00,110.00,740.00,,,,,,\n2015,5,4,\"AA\",\"1305\",\"ORD\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,158.00,123.00,740.00,,,,,,\n2015,5,5,\"AA\",\"1305\",\"ORD\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,134.00,101.00,740.00,,,,,,\n2015,5,6,\"AA\",\"1305\",\"ORD\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,128.00,102.00,740.00,,,,,,\n2015,5,7,\"AA\",\"1305\",\"ORD\",\"JFK\",114.00,96.00,0.00,\"\",0.00,133.00,105.00,740.00,0.00,0.00,0.00,0.00,96.00,\n2015,5,8,\"AA\",\"1305\",\"ORD\",\"JFK\",175.00,162.00,0.00,\"\",0.00,138.00,117.00,740.00,114.00,13.00,0.00,0.00,35.00,\n2015,5,10,\"AA\",\"1305\",\"ORD\",\"JFK\",71.00,53.00,0.00,\"\",0.00,133.00,104.00,740.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,11,\"AA\",\"1305\",\"ORD\",\"JFK\",7.00,23.00,0.00,\"\",0.00,167.00,131.00,740.00,0.00,0.00,16.00,0.00,7.00,\n2015,5,12,\"AA\",\"1305\",\"ORD\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,144.00,91.00,740.00,,,,,,\n2015,5,13,\"AA\",\"1305\",\"ORD\",\"JFK\",13.00,-16.00,0.00,\"\",0.00,122.00,103.00,740.00,,,,,,\n2015,5,14,\"AA\",\"1305\",\"ORD\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,140.00,105.00,740.00,,,,,,\n2015,5,15,\"AA\",\"1305\",\"ORD\",\"JFK\",4.00,-17.00,0.00,\"\",0.00,130.00,104.00,740.00,,,,,,\n2015,5,17,\"AA\",\"1305\",\"ORD\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,135.00,110.00,740.00,,,,,,\n2015,5,18,\"AA\",\"1305\",\"ORD\",\"JFK\",1.00,-4.00,0.00,\"\",0.00,146.00,103.00,740.00,,,,,,\n2015,5,19,\"AA\",\"1305\",\"ORD\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,137.00,102.00,740.00,,,,,,\n2015,5,20,\"AA\",\"1305\",\"ORD\",\"JFK\",3.00,-22.00,0.00,\"\",0.00,126.00,97.00,740.00,,,,,,\n2015,5,21,\"AA\",\"1305\",\"ORD\",\"JFK\",26.00,5.00,0.00,\"\",0.00,130.00,99.00,740.00,,,,,,\n2015,5,22,\"AA\",\"1305\",\"ORD\",\"JFK\",58.00,19.00,0.00,\"\",0.00,112.00,93.00,740.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,24,\"AA\",\"1305\",\"ORD\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,138.00,96.00,740.00,,,,,,\n2015,5,25,\"AA\",\"1305\",\"ORD\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,139.00,105.00,740.00,,,,,,\n2015,5,26,\"AA\",\"1305\",\"ORD\",\"JFK\",-3.00,1.00,0.00,\"\",0.00,155.00,104.00,740.00,,,,,,\n2015,5,27,\"AA\",\"1305\",\"ORD\",\"JFK\",66.00,52.00,0.00,\"\",0.00,137.00,111.00,740.00,0.00,0.00,21.00,0.00,31.00,\n2015,5,28,\"AA\",\"1305\",\"ORD\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,131.00,103.00,740.00,,,,,,\n2015,5,29,\"AA\",\"1305\",\"ORD\",\"JFK\",84.00,82.00,0.00,\"\",0.00,149.00,102.00,740.00,70.00,0.00,0.00,0.00,12.00,\n2015,5,31,\"AA\",\"1305\",\"ORD\",\"JFK\",168.00,205.00,0.00,\"\",0.00,188.00,157.00,740.00,0.00,0.00,37.00,0.00,168.00,\n2015,5,1,\"AA\",\"1312\",\"PHX\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,290.00,266.00,2153.00,,,,,,\n2015,5,2,\"AA\",\"1312\",\"PHX\",\"JFK\",-4.00,-3.00,0.00,\"\",0.00,294.00,270.00,2153.00,,,,,,\n2015,5,3,\"AA\",\"1312\",\"PHX\",\"JFK\",5.00,5.00,0.00,\"\",0.00,293.00,273.00,2153.00,,,,,,\n2015,5,4,\"AA\",\"1312\",\"PHX\",\"JFK\",-7.00,7.00,0.00,\"\",0.00,307.00,270.00,2153.00,,,,,,\n2015,5,5,\"AA\",\"1312\",\"PHX\",\"JFK\",1.00,-15.00,0.00,\"\",0.00,277.00,262.00,2153.00,,,,,,\n2015,5,6,\"AA\",\"1312\",\"PHX\",\"JFK\",-4.00,5.00,0.00,\"\",0.00,302.00,273.00,2153.00,,,,,,\n2015,5,7,\"AA\",\"1312\",\"PHX\",\"JFK\",14.00,22.00,0.00,\"\",0.00,301.00,283.00,2153.00,14.00,0.00,8.00,0.00,0.00,\n2015,5,8,\"AA\",\"1312\",\"PHX\",\"JFK\",-3.00,5.00,0.00,\"\",0.00,301.00,256.00,2153.00,,,,,,\n2015,5,10,\"AA\",\"1312\",\"PHX\",\"JFK\",1.00,13.00,0.00,\"\",0.00,305.00,277.00,2153.00,,,,,,\n2015,5,11,\"AA\",\"1312\",\"PHX\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,291.00,254.00,2153.00,,,,,,\n2015,5,13,\"AA\",\"1312\",\"PHX\",\"JFK\",-6.00,-3.00,0.00,\"\",0.00,296.00,262.00,2153.00,,,,,,\n2015,5,14,\"AA\",\"1312\",\"PHX\",\"JFK\",-5.00,-5.00,0.00,\"\",0.00,293.00,262.00,2153.00,,,,,,\n2015,5,15,\"AA\",\"1312\",\"PHX\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,287.00,261.00,2153.00,,,,,,\n2015,5,17,\"AA\",\"1312\",\"PHX\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,280.00,254.00,2153.00,,,,,,\n2015,5,18,\"AA\",\"1312\",\"PHX\",\"JFK\",21.00,32.00,0.00,\"\",0.00,304.00,284.00,2153.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,20,\"AA\",\"1312\",\"PHX\",\"JFK\",-4.00,18.00,0.00,\"\",0.00,315.00,241.00,2153.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,21,\"AA\",\"1312\",\"PHX\",\"JFK\",65.00,42.00,0.00,\"\",0.00,270.00,247.00,2153.00,0.00,0.00,0.00,0.00,42.00,\n2015,5,22,\"AA\",\"1312\",\"PHX\",\"JFK\",-6.00,-37.00,0.00,\"\",0.00,262.00,239.00,2153.00,,,,,,\n2015,5,24,\"AA\",\"1312\",\"PHX\",\"JFK\",1.00,-14.00,0.00,\"\",0.00,278.00,258.00,2153.00,,,,,,\n2015,5,25,\"AA\",\"1312\",\"PHX\",\"JFK\",101.00,111.00,0.00,\"\",0.00,303.00,267.00,2153.00,4.00,0.00,10.00,0.00,97.00,\n2015,5,27,\"AA\",\"1312\",\"PHX\",\"JFK\",126.00,110.00,0.00,\"\",0.00,277.00,259.00,2153.00,0.00,0.00,96.00,0.00,14.00,\n2015,5,28,\"AA\",\"1312\",\"PHX\",\"JFK\",-6.00,-1.00,0.00,\"\",0.00,298.00,267.00,2153.00,,,,,,\n2015,5,29,\"AA\",\"1312\",\"PHX\",\"JFK\",0.00,0.00,0.00,\"\",0.00,293.00,267.00,2153.00,,,,,,\n2015,5,31,\"AA\",\"1312\",\"PHX\",\"JFK\",150.00,168.00,0.00,\"\",0.00,311.00,285.00,2153.00,0.00,0.00,168.00,0.00,0.00,\n2015,5,1,\"AA\",\"1192\",\"DCA\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,75.00,51.00,213.00,,,,,,\n2015,5,2,\"AA\",\"1192\",\"DCA\",\"JFK\",-15.00,-24.00,0.00,\"\",0.00,76.00,49.00,213.00,,,,,,\n2015,5,3,\"AA\",\"1192\",\"DCA\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,73.00,43.00,213.00,,,,,,\n2015,5,4,\"AA\",\"1192\",\"DCA\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,66.00,44.00,213.00,,,,,,\n2015,5,5,\"AA\",\"1192\",\"DCA\",\"JFK\",-1.00,-2.00,0.00,\"\",0.00,85.00,45.00,213.00,,,,,,\n2015,5,6,\"AA\",\"1192\",\"DCA\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,79.00,50.00,213.00,,,,,,\n2015,5,1,\"AA\",\"1192\",\"JFK\",\"DCA\",1.00,-28.00,0.00,\"\",0.00,71.00,51.00,213.00,,,,,,\n2015,5,2,\"AA\",\"1192\",\"JFK\",\"DCA\",-8.00,-33.00,0.00,\"\",0.00,75.00,51.00,213.00,,,,,,\n2015,5,3,\"AA\",\"1192\",\"JFK\",\"DCA\",16.00,9.00,0.00,\"\",0.00,93.00,52.00,213.00,,,,,,\n2015,5,4,\"AA\",\"1192\",\"JFK\",\"DCA\",-6.00,-31.00,0.00,\"\",0.00,75.00,57.00,213.00,,,,,,\n2015,5,5,\"AA\",\"1192\",\"JFK\",\"DCA\",-6.00,-27.00,0.00,\"\",0.00,79.00,58.00,213.00,,,,,,\n2015,5,6,\"AA\",\"1192\",\"JFK\",\"DCA\",-8.00,-22.00,0.00,\"\",0.00,86.00,59.00,213.00,,,,,,\n2015,5,7,\"AA\",\"1345\",\"DFW\",\"JFK\",1.00,-21.00,0.00,\"\",0.00,205.00,186.00,1391.00,,,,,,\n2015,5,8,\"AA\",\"1345\",\"DFW\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,213.00,193.00,1391.00,,,,,,\n2015,5,9,\"AA\",\"1345\",\"DFW\",\"JFK\",77.00,68.00,0.00,\"\",0.00,218.00,198.00,1391.00,0.00,68.00,0.00,0.00,0.00,\n2015,5,10,\"AA\",\"1345\",\"DFW\",\"JFK\",137.00,137.00,0.00,\"\",0.00,227.00,199.00,1391.00,0.00,137.00,0.00,0.00,0.00,\n2015,5,11,\"AA\",\"1345\",\"DFW\",\"JFK\",19.00,10.00,0.00,\"\",0.00,218.00,193.00,1391.00,,,,,,\n2015,5,12,\"AA\",\"1345\",\"DFW\",\"JFK\",14.00,-15.00,0.00,\"\",0.00,198.00,170.00,1391.00,,,,,,\n2015,5,13,\"AA\",\"1345\",\"DFW\",\"JFK\",8.00,-11.00,0.00,\"\",0.00,208.00,181.00,1391.00,,,,,,\n2015,5,14,\"AA\",\"1345\",\"DFW\",\"JFK\",3.00,-24.00,0.00,\"\",0.00,200.00,176.00,1391.00,,,,,,\n2015,5,15,\"AA\",\"1345\",\"DFW\",\"JFK\",-3.00,-27.00,0.00,\"\",0.00,203.00,181.00,1391.00,,,,,,\n2015,5,16,\"AA\",\"1345\",\"DFW\",\"JFK\",71.00,45.00,0.00,\"\",0.00,201.00,178.00,1391.00,41.00,0.00,0.00,0.00,4.00,\n2015,5,17,\"AA\",\"1345\",\"DFW\",\"JFK\",49.00,26.00,0.00,\"\",0.00,204.00,182.00,1391.00,0.00,1.00,0.00,0.00,25.00,\n2015,5,18,\"AA\",\"1345\",\"DFW\",\"JFK\",52.00,27.00,0.00,\"\",0.00,202.00,176.00,1391.00,25.00,0.00,2.00,0.00,0.00,\n2015,5,19,\"AA\",\"1345\",\"DFW\",\"JFK\",34.00,29.00,0.00,\"\",0.00,222.00,176.00,1391.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"AA\",\"1345\",\"DFW\",\"JFK\",9.00,-8.00,0.00,\"\",0.00,210.00,169.00,1391.00,,,,,,\n2015,5,21,\"AA\",\"1345\",\"DFW\",\"JFK\",-7.00,-51.00,0.00,\"\",0.00,183.00,166.00,1391.00,,,,,,\n2015,5,22,\"AA\",\"1345\",\"DFW\",\"JFK\",0.00,-22.00,0.00,\"\",0.00,205.00,182.00,1391.00,,,,,,\n2015,5,23,\"AA\",\"1345\",\"DFW\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,209.00,181.00,1391.00,,,,,,\n2015,5,24,\"AA\",\"1345\",\"DFW\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,219.00,179.00,1391.00,,,,,,\n2015,5,25,\"AA\",\"1345\",\"DFW\",\"JFK\",-3.00,-34.00,0.00,\"\",0.00,196.00,176.00,1391.00,,,,,,\n2015,5,26,\"AA\",\"1345\",\"DFW\",\"JFK\",41.00,26.00,0.00,\"\",0.00,212.00,178.00,1391.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,27,\"AA\",\"1345\",\"DFW\",\"JFK\",51.00,82.00,0.00,\"\",0.00,258.00,195.00,1391.00,0.00,0.00,82.00,0.00,0.00,\n2015,5,28,\"AA\",\"1345\",\"DFW\",\"JFK\",1.00,39.00,0.00,\"\",0.00,265.00,199.00,1391.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,29,\"AA\",\"1345\",\"DFW\",\"JFK\",14.00,2.00,0.00,\"\",0.00,215.00,189.00,1391.00,,,,,,\n2015,5,30,\"AA\",\"1345\",\"DFW\",\"JFK\",-4.00,-3.00,0.00,\"\",0.00,228.00,198.00,1391.00,,,,,,\n2015,5,31,\"AA\",\"1345\",\"DFW\",\"JFK\",55.00,61.00,0.00,\"\",0.00,233.00,193.00,1391.00,0.00,0.00,37.00,0.00,24.00,\n2015,5,1,\"AA\",\"1345\",\"MIA\",\"JFK\",15.00,-7.00,0.00,\"\",0.00,156.00,135.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"1345\",\"MIA\",\"JFK\",-4.00,-32.00,0.00,\"\",0.00,150.00,133.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"1345\",\"MIA\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,157.00,139.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"1345\",\"MIA\",\"JFK\",12.00,-3.00,0.00,\"\",0.00,163.00,139.00,1089.00,,,,,,\n2015,5,5,\"AA\",\"1345\",\"MIA\",\"JFK\",20.00,7.00,0.00,\"\",0.00,165.00,144.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"1345\",\"MIA\",\"JFK\",26.00,5.00,0.00,\"\",0.00,157.00,143.00,1089.00,,,,,,\n2015,5,1,\"AA\",\"1320\",\"JFK\",\"PHX\",-9.00,-31.00,0.00,\"\",0.00,313.00,277.00,2153.00,,,,,,\n2015,5,2,\"AA\",\"1320\",\"JFK\",\"PHX\",-7.00,-37.00,0.00,\"\",0.00,305.00,284.00,2153.00,,,,,,\n2015,5,3,\"AA\",\"1320\",\"JFK\",\"PHX\",-6.00,-12.00,0.00,\"\",0.00,329.00,286.00,2153.00,,,,,,\n2015,5,4,\"AA\",\"1320\",\"JFK\",\"PHX\",-3.00,-27.00,0.00,\"\",0.00,311.00,285.00,2153.00,,,,,,\n2015,5,5,\"AA\",\"1320\",\"JFK\",\"PHX\",-7.00,-28.00,0.00,\"\",0.00,314.00,285.00,2153.00,,,,,,\n2015,5,6,\"AA\",\"1320\",\"JFK\",\"PHX\",26.00,0.00,0.00,\"\",0.00,309.00,280.00,2153.00,,,,,,\n2015,5,7,\"AA\",\"1320\",\"JFK\",\"PHX\",-4.00,-38.00,0.00,\"\",0.00,301.00,284.00,2153.00,,,,,,\n2015,5,8,\"AA\",\"1320\",\"JFK\",\"PHX\",-5.00,-2.00,0.00,\"\",0.00,338.00,308.00,2153.00,,,,,,\n2015,5,10,\"AA\",\"1320\",\"JFK\",\"PHX\",-7.00,-30.00,0.00,\"\",0.00,312.00,283.00,2153.00,,,,,,\n2015,5,11,\"AA\",\"1320\",\"JFK\",\"PHX\",-7.00,10.00,0.00,\"\",0.00,352.00,310.00,2153.00,,,,,,\n2015,5,13,\"AA\",\"1320\",\"JFK\",\"PHX\",8.00,8.00,0.00,\"\",0.00,335.00,296.00,2153.00,,,,,,\n2015,5,14,\"AA\",\"1320\",\"JFK\",\"PHX\",-2.00,-8.00,0.00,\"\",0.00,329.00,294.00,2153.00,,,,,,\n2015,5,15,\"AA\",\"1320\",\"JFK\",\"PHX\",132.00,126.00,0.00,\"\",0.00,329.00,300.00,2153.00,126.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"AA\",\"1320\",\"JFK\",\"PHX\",-2.00,-12.00,0.00,\"\",0.00,325.00,301.00,2153.00,,,,,,\n2015,5,18,\"AA\",\"1320\",\"JFK\",\"PHX\",-2.00,0.00,0.00,\"\",0.00,337.00,290.00,2153.00,,,,,,\n2015,5,20,\"AA\",\"1320\",\"JFK\",\"PHX\",32.00,20.00,0.00,\"\",0.00,323.00,303.00,2153.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"AA\",\"1320\",\"JFK\",\"PHX\",256.00,266.00,0.00,\"\",0.00,345.00,310.00,2153.00,23.00,0.00,10.00,0.00,233.00,\n2015,5,22,\"AA\",\"1320\",\"JFK\",\"PHX\",228.00,238.00,0.00,\"\",0.00,345.00,326.00,2153.00,0.00,0.00,10.00,0.00,228.00,\n2015,5,24,\"AA\",\"1320\",\"JFK\",\"PHX\",-2.00,-9.00,0.00,\"\",0.00,328.00,309.00,2153.00,,,,,,\n2015,5,25,\"AA\",\"1320\",\"JFK\",\"PHX\",-8.00,-22.00,0.00,\"\",0.00,321.00,300.00,2153.00,,,,,,\n2015,5,27,\"AA\",\"1320\",\"JFK\",\"PHX\",-8.00,-19.00,0.00,\"\",0.00,324.00,296.00,2153.00,,,,,,\n2015,5,28,\"AA\",\"1320\",\"JFK\",\"PHX\",-4.00,-2.00,0.00,\"\",0.00,337.00,303.00,2153.00,,,,,,\n2015,5,29,\"AA\",\"1320\",\"JFK\",\"PHX\",11.00,6.00,0.00,\"\",0.00,330.00,301.00,2153.00,,,,,,\n2015,5,31,\"AA\",\"1320\",\"JFK\",\"PHX\",-4.00,-32.00,0.00,\"\",0.00,307.00,275.00,2153.00,,,,,,\n2015,5,1,\"AA\",\"1406\",\"MIA\",\"JFK\",-8.00,-24.00,0.00,\"\",0.00,166.00,133.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"1406\",\"MIA\",\"JFK\",-7.00,-34.00,0.00,\"\",0.00,155.00,136.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"1406\",\"MIA\",\"JFK\",11.00,-11.00,0.00,\"\",0.00,160.00,139.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"1406\",\"MIA\",\"JFK\",44.00,24.00,0.00,\"\",0.00,162.00,133.00,1089.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"AA\",\"1406\",\"MIA\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,165.00,138.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"1406\",\"MIA\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,163.00,140.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"1406\",\"MIA\",\"JFK\",3.00,18.00,0.00,\"\",0.00,197.00,155.00,1089.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,8,\"AA\",\"1406\",\"MIA\",\"JFK\",11.00,2.00,0.00,\"\",0.00,173.00,150.00,1089.00,,,,,,\n2015,5,9,\"AA\",\"1406\",\"MIA\",\"JFK\",167.00,171.00,0.00,\"\",0.00,186.00,149.00,1089.00,167.00,0.00,4.00,0.00,0.00,\n2015,5,10,\"AA\",\"1406\",\"MIA\",\"JFK\",53.00,36.00,0.00,\"\",0.00,165.00,142.00,1089.00,6.00,0.00,0.00,0.00,30.00,\n2015,5,11,\"AA\",\"1406\",\"MIA\",\"JFK\",-4.00,6.00,0.00,\"\",0.00,192.00,160.00,1089.00,,,,,,\n2015,5,12,\"AA\",\"1406\",\"MIA\",\"JFK\",104.00,79.00,0.00,\"\",0.00,157.00,139.00,1089.00,79.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"AA\",\"1406\",\"MIA\",\"JFK\",154.00,154.00,0.00,\"\",0.00,182.00,150.00,1089.00,0.00,0.00,0.00,0.00,154.00,\n2015,5,14,\"AA\",\"1406\",\"MIA\",\"JFK\",73.00,56.00,0.00,\"\",0.00,165.00,139.00,1089.00,8.00,0.00,0.00,0.00,48.00,\n2015,5,15,\"AA\",\"1406\",\"MIA\",\"JFK\",46.00,43.00,0.00,\"\",0.00,179.00,146.00,1089.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,16,\"AA\",\"1406\",\"MIA\",\"JFK\",109.00,95.00,0.00,\"\",0.00,168.00,144.00,1089.00,86.00,0.00,0.00,0.00,9.00,\n2015,5,17,\"AA\",\"1406\",\"MIA\",\"JFK\",27.00,22.00,0.00,\"\",0.00,177.00,143.00,1089.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,18,\"AA\",\"1406\",\"MIA\",\"JFK\",9.00,31.00,0.00,\"\",0.00,204.00,177.00,1089.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,19,\"AA\",\"1406\",\"MIA\",\"JFK\",71.00,55.00,0.00,\"\",0.00,166.00,146.00,1089.00,0.00,0.00,1.00,0.00,54.00,\n2015,5,20,\"AA\",\"1406\",\"MIA\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,161.00,142.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"1406\",\"MIA\",\"JFK\",2.00,-12.00,0.00,\"\",0.00,168.00,144.00,1089.00,,,,,,\n2015,5,22,\"AA\",\"1406\",\"MIA\",\"JFK\",28.00,10.00,0.00,\"\",0.00,164.00,141.00,1089.00,,,,,,\n2015,5,23,\"AA\",\"1406\",\"MIA\",\"JFK\",73.00,63.00,0.00,\"\",0.00,172.00,147.00,1089.00,4.00,0.00,0.00,0.00,59.00,\n2015,5,24,\"AA\",\"1406\",\"MIA\",\"JFK\",32.00,15.00,0.00,\"\",0.00,165.00,142.00,1089.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"AA\",\"1406\",\"MIA\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,167.00,139.00,1089.00,,,,,,\n2015,5,26,\"AA\",\"1406\",\"MIA\",\"JFK\",220.00,202.00,0.00,\"\",0.00,164.00,141.00,1089.00,0.00,0.00,0.00,0.00,202.00,\n2015,5,27,\"AA\",\"1406\",\"MIA\",\"JFK\",1.00,-10.00,0.00,\"\",0.00,171.00,140.00,1089.00,,,,,,\n2015,5,28,\"AA\",\"1406\",\"MIA\",\"JFK\",15.00,0.00,0.00,\"\",0.00,167.00,139.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"1406\",\"MIA\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,171.00,149.00,1089.00,,,,,,\n2015,5,30,\"AA\",\"1406\",\"MIA\",\"JFK\",5.00,-13.00,0.00,\"\",0.00,164.00,139.00,1089.00,,,,,,\n2015,5,31,\"AA\",\"1406\",\"MIA\",\"JFK\",43.00,70.00,0.00,\"\",0.00,209.00,179.00,1089.00,0.00,0.00,27.00,0.00,43.00,\n2015,5,1,\"AA\",\"1410\",\"MIA\",\"LGA\",2.00,-11.00,0.00,\"\",0.00,167.00,139.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1410\",\"MIA\",\"LGA\",-7.00,-26.00,0.00,\"\",0.00,161.00,142.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1410\",\"MIA\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,163.00,145.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1410\",\"MIA\",\"LGA\",66.00,40.00,0.00,\"\",0.00,154.00,140.00,1096.00,37.00,0.00,0.00,0.00,3.00,\n2015,5,5,\"AA\",\"1410\",\"MIA\",\"LGA\",24.00,13.00,0.00,\"\",0.00,169.00,144.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1410\",\"MIA\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,176.00,146.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1357\",\"JFK\",\"SJU\",-4.00,-18.00,0.00,\"\",0.00,233.00,202.00,1598.00,,,,,,\n2015,5,2,\"AA\",\"1357\",\"JFK\",\"SJU\",-4.00,-15.00,0.00,\"\",0.00,236.00,207.00,1598.00,,,,,,\n2015,5,3,\"AA\",\"1357\",\"JFK\",\"SJU\",198.00,231.00,0.00,\"\",0.00,280.00,220.00,1598.00,198.00,0.00,33.00,0.00,0.00,\n2015,5,4,\"AA\",\"1357\",\"JFK\",\"SJU\",-3.00,9.00,0.00,\"\",0.00,259.00,208.00,1598.00,,,,,,\n2015,5,5,\"AA\",\"1357\",\"JFK\",\"SJU\",-4.00,-11.00,0.00,\"\",0.00,240.00,207.00,1598.00,,,,,,\n2015,5,6,\"AA\",\"1357\",\"JFK\",\"SJU\",-5.00,5.00,0.00,\"\",0.00,257.00,209.00,1598.00,,,,,,\n2015,5,7,\"AA\",\"1357\",\"JFK\",\"SJU\",-5.00,-6.00,0.00,\"\",0.00,246.00,206.00,1598.00,,,,,,\n2015,5,8,\"AA\",\"1357\",\"JFK\",\"SJU\",31.00,41.00,0.00,\"\",0.00,257.00,215.00,1598.00,31.00,0.00,10.00,0.00,0.00,\n2015,5,9,\"AA\",\"1357\",\"JFK\",\"SJU\",5.00,0.00,0.00,\"\",0.00,242.00,202.00,1598.00,,,,,,\n2015,5,10,\"AA\",\"1357\",\"JFK\",\"SJU\",-4.00,-11.00,0.00,\"\",0.00,240.00,205.00,1598.00,,,,,,\n2015,5,11,\"AA\",\"1357\",\"JFK\",\"SJU\",80.00,75.00,0.00,\"\",0.00,242.00,206.00,1598.00,75.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"AA\",\"1357\",\"JFK\",\"SJU\",-5.00,-18.00,0.00,\"\",0.00,234.00,202.00,1598.00,,,,,,\n2015,5,13,\"AA\",\"1357\",\"JFK\",\"SJU\",-3.00,-6.00,0.00,\"\",0.00,244.00,202.00,1598.00,,,,,,\n2015,5,14,\"AA\",\"1357\",\"JFK\",\"SJU\",-4.00,-29.00,0.00,\"\",0.00,222.00,179.00,1598.00,,,,,,\n2015,5,15,\"AA\",\"1357\",\"JFK\",\"SJU\",0.00,6.00,0.00,\"\",0.00,253.00,197.00,1598.00,,,,,,\n2015,5,16,\"AA\",\"1357\",\"JFK\",\"SJU\",-4.00,-34.00,0.00,\"\",0.00,217.00,186.00,1598.00,,,,,,\n2015,5,17,\"AA\",\"1357\",\"JFK\",\"SJU\",196.00,171.00,0.00,\"\",0.00,222.00,191.00,1598.00,171.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"AA\",\"1357\",\"JFK\",\"SJU\",75.00,81.00,0.00,\"\",0.00,253.00,199.00,1598.00,75.00,0.00,6.00,0.00,0.00,\n2015,5,19,\"AA\",\"1357\",\"JFK\",\"SJU\",-5.00,0.00,0.00,\"\",0.00,252.00,199.00,1598.00,,,,,,\n2015,5,20,\"AA\",\"1357\",\"JFK\",\"SJU\",-4.00,17.00,0.00,\"\",0.00,268.00,208.00,1598.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,21,\"AA\",\"1357\",\"JFK\",\"SJU\",57.00,40.00,0.00,\"\",0.00,230.00,201.00,1598.00,40.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"AA\",\"1357\",\"JFK\",\"SJU\",11.00,26.00,0.00,\"\",0.00,262.00,208.00,1598.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,23,\"AA\",\"1357\",\"JFK\",\"SJU\",-3.00,,1.00,\"A\",0.00,,,1598.00,,,,,,\n2015,5,24,\"AA\",\"1357\",\"JFK\",\"SJU\",-11.00,-28.00,0.00,\"\",0.00,230.00,188.00,1598.00,,,,,,\n2015,5,25,\"AA\",\"1357\",\"JFK\",\"SJU\",-6.00,-18.00,0.00,\"\",0.00,235.00,189.00,1598.00,,,,,,\n2015,5,26,\"AA\",\"1357\",\"JFK\",\"SJU\",27.00,-3.00,0.00,\"\",0.00,217.00,191.00,1598.00,,,,,,\n2015,5,27,\"AA\",\"1357\",\"JFK\",\"SJU\",-5.00,-19.00,0.00,\"\",0.00,233.00,194.00,1598.00,,,,,,\n2015,5,28,\"AA\",\"1357\",\"JFK\",\"SJU\",43.00,39.00,0.00,\"\",0.00,243.00,203.00,1598.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"AA\",\"1357\",\"JFK\",\"SJU\",-2.00,-9.00,0.00,\"\",0.00,240.00,197.00,1598.00,,,,,,\n2015,5,30,\"AA\",\"1357\",\"JFK\",\"SJU\",5.00,-2.00,0.00,\"\",0.00,240.00,201.00,1598.00,,,,,,\n2015,5,31,\"AA\",\"1357\",\"JFK\",\"SJU\",-6.00,-3.00,0.00,\"\",0.00,250.00,208.00,1598.00,,,,,,\n2015,5,1,\"AA\",\"1357\",\"SJU\",\"JFK\",-11.00,-43.00,0.00,\"\",0.00,232.00,209.00,1598.00,,,,,,\n2015,5,2,\"AA\",\"1357\",\"SJU\",\"JFK\",-13.00,-29.00,0.00,\"\",0.00,248.00,212.00,1598.00,,,,,,\n2015,5,3,\"AA\",\"1357\",\"SJU\",\"JFK\",218.00,173.00,0.00,\"\",0.00,219.00,194.00,1598.00,0.00,0.00,0.00,0.00,173.00,\n2015,5,4,\"AA\",\"1357\",\"SJU\",\"JFK\",-5.00,-47.00,0.00,\"\",0.00,222.00,202.00,1598.00,,,,,,\n2015,5,5,\"AA\",\"1357\",\"SJU\",\"JFK\",-10.00,-45.00,0.00,\"\",0.00,229.00,208.00,1598.00,,,,,,\n2015,5,6,\"AA\",\"1357\",\"SJU\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,240.00,211.00,1598.00,,,,,,\n2015,5,7,\"AA\",\"1357\",\"SJU\",\"JFK\",-8.00,-44.00,0.00,\"\",0.00,228.00,200.00,1598.00,,,,,,\n2015,5,8,\"AA\",\"1357\",\"SJU\",\"JFK\",23.00,4.00,0.00,\"\",0.00,245.00,208.00,1598.00,,,,,,\n2015,5,9,\"AA\",\"1357\",\"SJU\",\"JFK\",-8.00,-46.00,0.00,\"\",0.00,226.00,198.00,1598.00,,,,,,\n2015,5,10,\"AA\",\"1357\",\"SJU\",\"JFK\",-7.00,-41.00,0.00,\"\",0.00,230.00,199.00,1598.00,,,,,,\n2015,5,11,\"AA\",\"1357\",\"SJU\",\"JFK\",64.00,22.00,0.00,\"\",0.00,222.00,201.00,1598.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,12,\"AA\",\"1357\",\"SJU\",\"JFK\",-5.00,-40.00,0.00,\"\",0.00,229.00,215.00,1598.00,,,,,,\n2015,5,13,\"AA\",\"1357\",\"SJU\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,245.00,212.00,1598.00,,,,,,\n2015,5,14,\"AA\",\"1357\",\"SJU\",\"JFK\",-9.00,-4.00,0.00,\"\",0.00,269.00,224.00,1598.00,,,,,,\n2015,5,15,\"AA\",\"1357\",\"SJU\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,245.00,215.00,1598.00,,,,,,\n2015,5,16,\"AA\",\"1357\",\"SJU\",\"JFK\",1028.00,1012.00,0.00,\"\",0.00,248.00,214.00,1598.00,1012.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"AA\",\"1357\",\"SJU\",\"JFK\",153.00,126.00,0.00,\"\",0.00,237.00,215.00,1598.00,0.00,0.00,0.00,0.00,126.00,\n2015,5,18,\"AA\",\"1357\",\"SJU\",\"JFK\",81.00,71.00,0.00,\"\",0.00,254.00,224.00,1598.00,7.00,0.00,0.00,0.00,64.00,\n2015,5,19,\"AA\",\"1357\",\"SJU\",\"JFK\",-3.00,-33.00,0.00,\"\",0.00,234.00,204.00,1598.00,,,,,,\n2015,5,20,\"AA\",\"1357\",\"SJU\",\"JFK\",9.00,-20.00,0.00,\"\",0.00,235.00,211.00,1598.00,,,,,,\n2015,5,21,\"AA\",\"1357\",\"SJU\",\"JFK\",32.00,-4.00,0.00,\"\",0.00,228.00,205.00,1598.00,,,,,,\n2015,5,22,\"AA\",\"1357\",\"SJU\",\"JFK\",3.00,9.00,0.00,\"\",0.00,270.00,224.00,1598.00,,,,,,\n2015,5,23,\"AA\",\"1357\",\"SJU\",\"JFK\",,,1.00,\"A\",0.00,,,1598.00,,,,,,\n2015,5,24,\"AA\",\"1357\",\"SJU\",\"JFK\",-17.00,-8.00,0.00,\"\",0.00,273.00,236.00,1598.00,,,,,,\n2015,5,25,\"AA\",\"1357\",\"SJU\",\"JFK\",-9.00,-35.00,0.00,\"\",0.00,238.00,212.00,1598.00,,,,,,\n2015,5,26,\"AA\",\"1357\",\"SJU\",\"JFK\",56.00,24.00,0.00,\"\",0.00,232.00,214.00,1598.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"AA\",\"1357\",\"SJU\",\"JFK\",-5.00,5.00,0.00,\"\",0.00,274.00,218.00,1598.00,,,,,,\n2015,5,28,\"AA\",\"1357\",\"SJU\",\"JFK\",32.00,3.00,0.00,\"\",0.00,235.00,207.00,1598.00,,,,,,\n2015,5,29,\"AA\",\"1357\",\"SJU\",\"JFK\",-9.00,-48.00,0.00,\"\",0.00,225.00,208.00,1598.00,,,,,,\n2015,5,30,\"AA\",\"1357\",\"SJU\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,253.00,207.00,1598.00,,,,,,\n2015,5,31,\"AA\",\"1357\",\"SJU\",\"JFK\",1.00,-37.00,0.00,\"\",0.00,226.00,209.00,1598.00,,,,,,\n2015,5,7,\"AA\",\"1367\",\"MIA\",\"LGA\",11.00,29.00,0.00,\"\",0.00,198.00,159.00,1096.00,0.00,0.00,18.00,0.00,11.00,\n2015,5,8,\"AA\",\"1367\",\"MIA\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,182.00,154.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1367\",\"MIA\",\"LGA\",42.00,46.00,0.00,\"\",0.00,184.00,162.00,1096.00,15.00,0.00,4.00,0.00,27.00,\n2015,5,10,\"AA\",\"1367\",\"MIA\",\"LGA\",-1.00,6.00,0.00,\"\",0.00,187.00,163.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"1367\",\"MIA\",\"LGA\",13.00,45.00,0.00,\"\",0.00,212.00,176.00,1096.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,12,\"AA\",\"1367\",\"MIA\",\"LGA\",-5.00,-26.00,0.00,\"\",0.00,159.00,142.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1367\",\"MIA\",\"LGA\",15.00,22.00,0.00,\"\",0.00,187.00,160.00,1096.00,15.00,0.00,7.00,0.00,0.00,\n2015,5,14,\"AA\",\"1367\",\"MIA\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,163.00,147.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1367\",\"MIA\",\"LGA\",8.00,8.00,0.00,\"\",0.00,180.00,148.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1367\",\"MIA\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,184.00,152.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1367\",\"MIA\",\"LGA\",-5.00,2.00,0.00,\"\",0.00,187.00,156.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1367\",\"MIA\",\"LGA\",-2.00,22.00,0.00,\"\",0.00,204.00,159.00,1096.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,19,\"AA\",\"1367\",\"MIA\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,175.00,148.00,1096.00,,,,,,\n2015,5,20,\"AA\",\"1367\",\"MIA\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,169.00,142.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"1367\",\"MIA\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,168.00,149.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1367\",\"MIA\",\"LGA\",21.00,18.00,0.00,\"\",0.00,177.00,147.00,1096.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"AA\",\"1367\",\"MIA\",\"LGA\",-6.00,3.00,0.00,\"\",0.00,189.00,158.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1367\",\"MIA\",\"LGA\",8.00,3.00,0.00,\"\",0.00,175.00,158.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1367\",\"MIA\",\"LGA\",-4.00,-24.00,0.00,\"\",0.00,160.00,145.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1367\",\"MIA\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,161.00,142.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1367\",\"MIA\",\"LGA\",85.00,92.00,0.00,\"\",0.00,187.00,150.00,1096.00,0.00,0.00,92.00,0.00,0.00,\n2015,5,28,\"AA\",\"1367\",\"MIA\",\"LGA\",12.00,5.00,0.00,\"\",0.00,173.00,147.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1367\",\"MIA\",\"LGA\",24.00,20.00,0.00,\"\",0.00,176.00,152.00,1096.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,30,\"AA\",\"1367\",\"MIA\",\"LGA\",31.00,19.00,0.00,\"\",0.00,168.00,152.00,1096.00,2.00,0.00,0.00,0.00,17.00,\n2015,5,31,\"AA\",\"1367\",\"MIA\",\"LGA\",24.00,34.00,0.00,\"\",0.00,190.00,152.00,1096.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,1,\"AA\",\"1380\",\"JFK\",\"STT\",37.00,34.00,0.00,\"\",0.00,238.00,200.00,1623.00,34.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"AA\",\"1380\",\"JFK\",\"STT\",108.00,102.00,0.00,\"\",0.00,235.00,208.00,1623.00,102.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"AA\",\"1380\",\"JFK\",\"STT\",-8.00,-12.00,0.00,\"\",0.00,237.00,209.00,1623.00,,,,,,\n2015,5,4,\"AA\",\"1380\",\"JFK\",\"STT\",-4.00,-17.00,0.00,\"\",0.00,228.00,207.00,1623.00,,,,,,\n2015,5,5,\"AA\",\"1380\",\"JFK\",\"STT\",-6.00,-22.00,0.00,\"\",0.00,225.00,206.00,1623.00,,,,,,\n2015,5,6,\"AA\",\"1380\",\"JFK\",\"STT\",-3.00,-20.00,0.00,\"\",0.00,224.00,204.00,1623.00,,,,,,\n2015,5,7,\"AA\",\"1380\",\"JFK\",\"STT\",-4.00,-7.00,0.00,\"\",0.00,238.00,204.00,1623.00,,,,,,\n2015,5,8,\"AA\",\"1380\",\"JFK\",\"STT\",210.00,195.00,0.00,\"\",0.00,226.00,201.00,1623.00,195.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"AA\",\"1380\",\"JFK\",\"STT\",9.00,1.00,0.00,\"\",0.00,233.00,210.00,1623.00,,,,,,\n2015,5,10,\"AA\",\"1380\",\"JFK\",\"STT\",3.00,-11.00,0.00,\"\",0.00,227.00,205.00,1623.00,,,,,,\n2015,5,11,\"AA\",\"1380\",\"JFK\",\"STT\",-2.00,-9.00,0.00,\"\",0.00,234.00,210.00,1623.00,,,,,,\n2015,5,12,\"AA\",\"1380\",\"JFK\",\"STT\",33.00,53.00,0.00,\"\",0.00,261.00,232.00,1623.00,33.00,0.00,20.00,0.00,0.00,\n2015,5,13,\"AA\",\"1380\",\"JFK\",\"STT\",-5.00,-14.00,0.00,\"\",0.00,232.00,198.00,1623.00,,,,,,\n2015,5,14,\"AA\",\"1380\",\"JFK\",\"STT\",-7.00,-14.00,0.00,\"\",0.00,234.00,195.00,1623.00,,,,,,\n2015,5,15,\"AA\",\"1380\",\"JFK\",\"STT\",-4.00,-16.00,0.00,\"\",0.00,229.00,194.00,1623.00,,,,,,\n2015,5,16,\"AA\",\"1380\",\"JFK\",\"STT\",-1.00,-28.00,0.00,\"\",0.00,214.00,192.00,1623.00,,,,,,\n2015,5,17,\"AA\",\"1380\",\"JFK\",\"STT\",-4.00,-21.00,0.00,\"\",0.00,224.00,193.00,1623.00,,,,,,\n2015,5,18,\"AA\",\"1380\",\"JFK\",\"STT\",-5.00,-30.00,0.00,\"\",0.00,216.00,196.00,1623.00,,,,,,\n2015,5,19,\"AA\",\"1380\",\"JFK\",\"STT\",-1.00,-24.00,0.00,\"\",0.00,218.00,196.00,1623.00,,,,,,\n2015,5,20,\"AA\",\"1380\",\"JFK\",\"STT\",-2.00,,0.00,\"\",1.00,,,1623.00,,,,,,\n2015,5,21,\"AA\",\"1380\",\"JFK\",\"STT\",104.00,83.00,0.00,\"\",0.00,220.00,195.00,1623.00,83.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"AA\",\"1380\",\"JFK\",\"STT\",-4.00,-16.00,0.00,\"\",0.00,229.00,201.00,1623.00,,,,,,\n2015,5,23,\"AA\",\"1380\",\"JFK\",\"STT\",-7.00,-31.00,0.00,\"\",0.00,217.00,197.00,1623.00,,,,,,\n2015,5,24,\"AA\",\"1380\",\"JFK\",\"STT\",-1.00,-35.00,0.00,\"\",0.00,207.00,185.00,1623.00,,,,,,\n2015,5,25,\"AA\",\"1380\",\"JFK\",\"STT\",-4.00,-36.00,0.00,\"\",0.00,209.00,192.00,1623.00,,,,,,\n2015,5,26,\"AA\",\"1380\",\"JFK\",\"STT\",-6.00,12.00,0.00,\"\",0.00,259.00,207.00,1623.00,,,,,,\n2015,5,27,\"AA\",\"1380\",\"JFK\",\"STT\",-7.00,-28.00,0.00,\"\",0.00,220.00,196.00,1623.00,,,,,,\n2015,5,28,\"AA\",\"1380\",\"JFK\",\"STT\",-4.00,-8.00,0.00,\"\",0.00,237.00,202.00,1623.00,,,,,,\n2015,5,29,\"AA\",\"1380\",\"JFK\",\"STT\",62.00,49.00,0.00,\"\",0.00,228.00,195.00,1623.00,49.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"AA\",\"1380\",\"JFK\",\"STT\",-7.00,-27.00,0.00,\"\",0.00,221.00,201.00,1623.00,,,,,,\n2015,5,31,\"AA\",\"1380\",\"JFK\",\"STT\",2.00,33.00,0.00,\"\",0.00,272.00,216.00,1623.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,1,\"AA\",\"1380\",\"STT\",\"JFK\",28.00,9.00,0.00,\"\",0.00,248.00,220.00,1623.00,,,,,,\n2015,5,2,\"AA\",\"1380\",\"STT\",\"JFK\",87.00,53.00,0.00,\"\",0.00,233.00,205.00,1623.00,0.00,0.00,0.00,0.00,53.00,\n2015,5,3,\"AA\",\"1380\",\"STT\",\"JFK\",-2.00,-42.00,0.00,\"\",0.00,227.00,205.00,1623.00,,,,,,\n2015,5,4,\"AA\",\"1380\",\"STT\",\"JFK\",-6.00,-42.00,0.00,\"\",0.00,231.00,210.00,1623.00,,,,,,\n2015,5,5,\"AA\",\"1380\",\"STT\",\"JFK\",-4.00,-42.00,0.00,\"\",0.00,229.00,212.00,1623.00,,,,,,\n2015,5,6,\"AA\",\"1380\",\"STT\",\"JFK\",-3.00,-37.00,0.00,\"\",0.00,233.00,212.00,1623.00,,,,,,\n2015,5,7,\"AA\",\"1380\",\"STT\",\"JFK\",0.00,-31.00,0.00,\"\",0.00,236.00,208.00,1623.00,,,,,,\n2015,5,8,\"AA\",\"1380\",\"STT\",\"JFK\",181.00,129.00,0.00,\"\",0.00,215.00,196.00,1623.00,0.00,0.00,0.00,0.00,129.00,\n2015,5,9,\"AA\",\"1380\",\"STT\",\"JFK\",-7.00,-12.00,0.00,\"\",0.00,262.00,210.00,1623.00,,,,,,\n2015,5,10,\"AA\",\"1380\",\"STT\",\"JFK\",-8.00,-46.00,0.00,\"\",0.00,229.00,203.00,1623.00,,,,,,\n2015,5,11,\"AA\",\"1380\",\"STT\",\"JFK\",-5.00,-43.00,0.00,\"\",0.00,229.00,206.00,1623.00,,,,,,\n2015,5,12,\"AA\",\"1380\",\"STT\",\"JFK\",55.00,22.00,0.00,\"\",0.00,234.00,214.00,1623.00,5.00,0.00,0.00,0.00,17.00,\n2015,5,13,\"AA\",\"1380\",\"STT\",\"JFK\",1.00,-26.00,0.00,\"\",0.00,240.00,219.00,1623.00,,,,,,\n2015,5,14,\"AA\",\"1380\",\"STT\",\"JFK\",-10.00,12.00,0.00,\"\",0.00,289.00,243.00,1623.00,,,,,,\n2015,5,15,\"AA\",\"1380\",\"STT\",\"JFK\",-10.00,-30.00,0.00,\"\",0.00,247.00,223.00,1623.00,,,,,,\n2015,5,16,\"AA\",\"1380\",\"STT\",\"JFK\",1324.00,1318.00,0.00,\"\",0.00,261.00,230.00,1623.00,1318.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"AA\",\"1380\",\"STT\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,260.00,226.00,1623.00,,,,,,\n2015,5,18,\"AA\",\"1380\",\"STT\",\"JFK\",16.00,-9.00,0.00,\"\",0.00,242.00,221.00,1623.00,,,,,,\n2015,5,19,\"AA\",\"1380\",\"STT\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,252.00,217.00,1623.00,,,,,,\n2015,5,20,\"AA\",\"1380\",\"STT\",\"JFK\",333.00,306.00,0.00,\"\",0.00,240.00,220.00,1623.00,0.00,0.00,0.00,0.00,306.00,\n2015,5,21,\"AA\",\"1380\",\"STT\",\"JFK\",86.00,55.00,0.00,\"\",0.00,236.00,216.00,1623.00,8.00,0.00,0.00,0.00,47.00,\n2015,5,22,\"AA\",\"1380\",\"STT\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,248.00,225.00,1623.00,,,,,,\n2015,5,23,\"AA\",\"1380\",\"STT\",\"JFK\",-2.00,6.00,0.00,\"\",0.00,275.00,231.00,1623.00,,,,,,\n2015,5,24,\"AA\",\"1380\",\"STT\",\"JFK\",-11.00,-29.00,0.00,\"\",0.00,249.00,227.00,1623.00,,,,,,\n2015,5,25,\"AA\",\"1380\",\"STT\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,241.00,216.00,1623.00,,,,,,\n2015,5,26,\"AA\",\"1380\",\"STT\",\"JFK\",0.00,18.00,0.00,\"\",0.00,285.00,227.00,1623.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,27,\"AA\",\"1380\",\"STT\",\"JFK\",-4.00,-33.00,0.00,\"\",0.00,238.00,218.00,1623.00,,,,,,\n2015,5,28,\"AA\",\"1380\",\"STT\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,243.00,211.00,1623.00,,,,,,\n2015,5,29,\"AA\",\"1380\",\"STT\",\"JFK\",35.00,8.00,0.00,\"\",0.00,240.00,209.00,1623.00,,,,,,\n2015,5,30,\"AA\",\"1380\",\"STT\",\"JFK\",-16.00,-38.00,0.00,\"\",0.00,245.00,209.00,1623.00,,,,,,\n2015,5,31,\"AA\",\"1380\",\"STT\",\"JFK\",16.00,52.00,0.00,\"\",0.00,303.00,232.00,1623.00,0.00,0.00,36.00,0.00,16.00,\n2015,5,1,\"AA\",\"1510\",\"MIA\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,169.00,135.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"1510\",\"MIA\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,173.00,136.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"1510\",\"MIA\",\"JFK\",8.00,-5.00,0.00,\"\",0.00,177.00,143.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"1510\",\"MIA\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,178.00,144.00,1089.00,,,,,,\n2015,5,5,\"AA\",\"1510\",\"MIA\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,175.00,144.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"1510\",\"MIA\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,170.00,139.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"1510\",\"MIA\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,184.00,148.00,1089.00,,,,,,\n2015,5,8,\"AA\",\"1510\",\"MIA\",\"JFK\",22.00,40.00,0.00,\"\",0.00,208.00,157.00,1089.00,0.00,0.00,18.00,0.00,22.00,\n2015,5,9,\"AA\",\"1510\",\"MIA\",\"JFK\",4.00,9.00,0.00,\"\",0.00,195.00,153.00,1089.00,,,,,,\n2015,5,10,\"AA\",\"1510\",\"MIA\",\"JFK\",3.00,-12.00,0.00,\"\",0.00,175.00,145.00,1089.00,,,,,,\n2015,5,11,\"AA\",\"1510\",\"MIA\",\"JFK\",9.00,-4.00,0.00,\"\",0.00,177.00,147.00,1089.00,,,,,,\n2015,5,12,\"AA\",\"1510\",\"MIA\",\"JFK\",19.00,12.00,0.00,\"\",0.00,183.00,150.00,1089.00,,,,,,\n2015,5,13,\"AA\",\"1510\",\"MIA\",\"JFK\",5.00,-17.00,0.00,\"\",0.00,168.00,138.00,1089.00,,,,,,\n2015,5,14,\"AA\",\"1510\",\"MIA\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,174.00,152.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"1510\",\"MIA\",\"JFK\",0.00,4.00,0.00,\"\",0.00,194.00,146.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"1510\",\"MIA\",\"JFK\",8.00,1.00,0.00,\"\",0.00,183.00,146.00,1089.00,,,,,,\n2015,5,17,\"AA\",\"1510\",\"MIA\",\"JFK\",2.00,-16.00,0.00,\"\",0.00,172.00,147.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"1510\",\"MIA\",\"JFK\",-19.00,6.00,0.00,\"\",0.00,215.00,174.00,1089.00,,,,,,\n2015,5,19,\"AA\",\"1510\",\"MIA\",\"JFK\",5.00,-14.00,0.00,\"\",0.00,171.00,142.00,1089.00,,,,,,\n2015,5,20,\"AA\",\"1510\",\"MIA\",\"JFK\",1.00,-2.00,0.00,\"\",0.00,187.00,156.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"1510\",\"MIA\",\"JFK\",-3.00,0.00,0.00,\"\",0.00,193.00,146.00,1089.00,,,,,,\n2015,5,22,\"AA\",\"1510\",\"MIA\",\"JFK\",1.00,-25.00,0.00,\"\",0.00,164.00,137.00,1089.00,,,,,,\n2015,5,23,\"AA\",\"1510\",\"MIA\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,178.00,144.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"1510\",\"MIA\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,173.00,148.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"1510\",\"MIA\",\"JFK\",-6.00,-31.00,0.00,\"\",0.00,165.00,139.00,1089.00,,,,,,\n2015,5,26,\"AA\",\"1510\",\"MIA\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,171.00,144.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"1510\",\"MIA\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,184.00,151.00,1089.00,,,,,,\n2015,5,28,\"AA\",\"1510\",\"MIA\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,165.00,140.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"1510\",\"MIA\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,185.00,148.00,1089.00,,,,,,\n2015,5,30,\"AA\",\"1510\",\"MIA\",\"JFK\",1.00,-12.00,0.00,\"\",0.00,177.00,148.00,1089.00,,,,,,\n2015,5,31,\"AA\",\"1510\",\"MIA\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,178.00,140.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"1596\",\"SJU\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,224.00,203.00,1598.00,,,,,,\n2015,5,8,\"AA\",\"1596\",\"SJU\",\"JFK\",-10.00,-7.00,0.00,\"\",0.00,241.00,201.00,1598.00,,,,,,\n2015,5,9,\"AA\",\"1596\",\"SJU\",\"JFK\",-8.00,-12.00,0.00,\"\",0.00,234.00,205.00,1598.00,,,,,,\n2015,5,10,\"AA\",\"1596\",\"SJU\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,223.00,201.00,1598.00,,,,,,\n2015,5,11,\"AA\",\"1596\",\"SJU\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,222.00,203.00,1598.00,,,,,,\n2015,5,12,\"AA\",\"1596\",\"SJU\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,233.00,214.00,1598.00,,,,,,\n2015,5,13,\"AA\",\"1596\",\"SJU\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,234.00,219.00,1598.00,,,,,,\n2015,5,14,\"AA\",\"1596\",\"SJU\",\"JFK\",1218.00,1212.00,0.00,\"\",0.00,232.00,216.00,1598.00,1212.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"AA\",\"1596\",\"SJU\",\"JFK\",-10.00,-4.00,0.00,\"\",0.00,244.00,218.00,1598.00,,,,,,\n2015,5,16,\"AA\",\"1596\",\"SJU\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,231.00,214.00,1598.00,,,,,,\n2015,5,17,\"AA\",\"1596\",\"SJU\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,229.00,213.00,1598.00,,,,,,\n2015,5,18,\"AA\",\"1596\",\"SJU\",\"JFK\",-6.00,17.00,0.00,\"\",0.00,261.00,235.00,1598.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,19,\"AA\",\"1596\",\"SJU\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,230.00,211.00,1598.00,,,,,,\n2015,5,20,\"AA\",\"1596\",\"SJU\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,225.00,208.00,1598.00,,,,,,\n2015,5,21,\"AA\",\"1596\",\"SJU\",\"JFK\",1.00,-15.00,0.00,\"\",0.00,222.00,204.00,1598.00,,,,,,\n2015,5,22,\"AA\",\"1596\",\"SJU\",\"JFK\",-9.00,-11.00,0.00,\"\",0.00,236.00,210.00,1598.00,,,,,,\n2015,5,23,\"AA\",\"1596\",\"SJU\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,231.00,214.00,1598.00,,,,,,\n2015,5,24,\"AA\",\"1596\",\"SJU\",\"JFK\",-6.00,-4.00,0.00,\"\",0.00,240.00,221.00,1598.00,,,,,,\n2015,5,25,\"AA\",\"1596\",\"SJU\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,232.00,211.00,1598.00,,,,,,\n2015,5,26,\"AA\",\"1596\",\"SJU\",\"JFK\",-3.00,1.00,0.00,\"\",0.00,242.00,214.00,1598.00,,,,,,\n2015,5,27,\"AA\",\"1596\",\"SJU\",\"JFK\",-2.00,-1.00,0.00,\"\",0.00,239.00,218.00,1598.00,,,,,,\n2015,5,28,\"AA\",\"1596\",\"SJU\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,226.00,206.00,1598.00,,,,,,\n2015,5,29,\"AA\",\"1596\",\"SJU\",\"JFK\",0.00,6.00,0.00,\"\",0.00,244.00,210.00,1598.00,,,,,,\n2015,5,30,\"AA\",\"1596\",\"SJU\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,224.00,206.00,1598.00,,,,,,\n2015,5,31,\"AA\",\"1596\",\"SJU\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,232.00,203.00,1598.00,,,,,,\n2015,5,7,\"AA\",\"1601\",\"JFK\",\"DFW\",-1.00,-20.00,0.00,\"\",0.00,224.00,196.00,1391.00,,,,,,\n2015,5,8,\"AA\",\"1601\",\"JFK\",\"DFW\",-5.00,-26.00,0.00,\"\",0.00,222.00,189.00,1391.00,,,,,,\n2015,5,9,\"AA\",\"1601\",\"JFK\",\"DFW\",20.00,13.00,0.00,\"\",0.00,236.00,190.00,1391.00,,,,,,\n2015,5,10,\"AA\",\"1601\",\"JFK\",\"DFW\",,,1.00,\"B\",0.00,,,1391.00,,,,,,\n2015,5,11,\"AA\",\"1601\",\"JFK\",\"DFW\",7.00,39.00,0.00,\"\",0.00,275.00,213.00,1391.00,0.00,0.00,32.00,0.00,7.00,\n2015,5,12,\"AA\",\"1601\",\"JFK\",\"DFW\",2.00,-7.00,0.00,\"\",0.00,234.00,201.00,1391.00,,,,,,\n2015,5,13,\"AA\",\"1601\",\"JFK\",\"DFW\",-4.00,-26.00,0.00,\"\",0.00,221.00,199.00,1391.00,,,,,,\n2015,5,14,\"AA\",\"1601\",\"JFK\",\"DFW\",-3.00,-19.00,0.00,\"\",0.00,227.00,193.00,1391.00,,,,,,\n2015,5,15,\"AA\",\"1601\",\"JFK\",\"DFW\",0.00,-5.00,0.00,\"\",0.00,238.00,204.00,1391.00,,,,,,\n2015,5,16,\"AA\",\"1601\",\"JFK\",\"DFW\",0.00,-8.00,0.00,\"\",0.00,235.00,202.00,1391.00,,,,,,\n2015,5,17,\"AA\",\"1601\",\"JFK\",\"DFW\",-4.00,14.00,0.00,\"\",0.00,261.00,228.00,1391.00,,,,,,\n2015,5,18,\"AA\",\"1601\",\"JFK\",\"DFW\",-4.00,-21.00,0.00,\"\",0.00,226.00,187.00,1391.00,,,,,,\n2015,5,19,\"AA\",\"1601\",\"JFK\",\"DFW\",-2.00,3.00,0.00,\"\",0.00,248.00,206.00,1391.00,,,,,,\n2015,5,20,\"AA\",\"1601\",\"JFK\",\"DFW\",-8.00,-40.00,0.00,\"\",0.00,211.00,189.00,1391.00,,,,,,\n2015,5,21,\"AA\",\"1601\",\"JFK\",\"DFW\",-2.00,6.00,0.00,\"\",0.00,251.00,211.00,1391.00,,,,,,\n2015,5,22,\"AA\",\"1601\",\"JFK\",\"DFW\",-5.00,-1.00,0.00,\"\",0.00,247.00,206.00,1391.00,,,,,,\n2015,5,23,\"AA\",\"1601\",\"JFK\",\"DFW\",-1.00,-21.00,0.00,\"\",0.00,223.00,196.00,1391.00,,,,,,\n2015,5,24,\"AA\",\"1601\",\"JFK\",\"DFW\",-2.00,-35.00,0.00,\"\",0.00,210.00,186.00,1391.00,,,,,,\n2015,5,25,\"AA\",\"1601\",\"JFK\",\"DFW\",6.00,35.00,0.00,\"\",0.00,272.00,233.00,1391.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,26,\"AA\",\"1601\",\"JFK\",\"DFW\",-2.00,-6.00,0.00,\"\",0.00,239.00,210.00,1391.00,,,,,,\n2015,5,27,\"AA\",\"1601\",\"JFK\",\"DFW\",-3.00,-16.00,0.00,\"\",0.00,230.00,190.00,1391.00,,,,,,\n2015,5,28,\"AA\",\"1601\",\"JFK\",\"DFW\",-6.00,-14.00,0.00,\"\",0.00,235.00,206.00,1391.00,,,,,,\n2015,5,29,\"AA\",\"1601\",\"JFK\",\"DFW\",9.00,3.00,0.00,\"\",0.00,237.00,194.00,1391.00,,,,,,\n2015,5,30,\"AA\",\"1601\",\"JFK\",\"DFW\",58.00,49.00,0.00,\"\",0.00,234.00,185.00,1391.00,49.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"AA\",\"1601\",\"JFK\",\"DFW\",8.00,-3.00,0.00,\"\",0.00,232.00,198.00,1391.00,,,,,,\n2015,5,1,\"AA\",\"1601\",\"JFK\",\"MIA\",-6.00,-15.00,0.00,\"\",0.00,182.00,153.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"1601\",\"JFK\",\"MIA\",-2.00,-15.00,0.00,\"\",0.00,178.00,148.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"1601\",\"JFK\",\"MIA\",-6.00,-14.00,0.00,\"\",0.00,183.00,146.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"1601\",\"JFK\",\"MIA\",-5.00,-22.00,0.00,\"\",0.00,174.00,150.00,1089.00,,,,,,\n2015,5,5,\"AA\",\"1601\",\"JFK\",\"MIA\",-7.00,-17.00,0.00,\"\",0.00,181.00,159.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"1601\",\"JFK\",\"MIA\",-5.00,-9.00,0.00,\"\",0.00,187.00,155.00,1089.00,,,,,,\n2015,5,1,\"AA\",\"1682\",\"ORD\",\"LGA\",-8.00,-6.00,0.00,\"\",0.00,137.00,104.00,733.00,,,,,,\n2015,5,2,\"AA\",\"1682\",\"ORD\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,119.00,98.00,733.00,,,,,,\n2015,5,3,\"AA\",\"1682\",\"ORD\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,122.00,100.00,733.00,,,,,,\n2015,5,4,\"AA\",\"1682\",\"ORD\",\"LGA\",-5.00,-27.00,0.00,\"\",0.00,113.00,98.00,733.00,,,,,,\n2015,5,5,\"AA\",\"1682\",\"ORD\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,119.00,95.00,733.00,,,,,,\n2015,5,6,\"AA\",\"1682\",\"ORD\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,128.00,97.00,733.00,,,,,,\n2015,5,7,\"AA\",\"1682\",\"ORD\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,118.00,98.00,733.00,,,,,,\n2015,5,8,\"AA\",\"1682\",\"ORD\",\"LGA\",48.00,38.00,0.00,\"\",0.00,125.00,105.00,733.00,19.00,0.00,0.00,0.00,19.00,\n2015,5,9,\"AA\",\"1682\",\"ORD\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,126.00,101.00,733.00,,,,,,\n2015,5,10,\"AA\",\"1682\",\"ORD\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,129.00,101.00,733.00,,,,,,\n2015,5,11,\"AA\",\"1682\",\"ORD\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,125.00,104.00,733.00,,,,,,\n2015,5,12,\"AA\",\"1682\",\"ORD\",\"LGA\",-9.00,-35.00,0.00,\"\",0.00,109.00,89.00,733.00,,,,,,\n2015,5,13,\"AA\",\"1682\",\"ORD\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,115.00,91.00,733.00,,,,,,\n2015,5,14,\"AA\",\"1682\",\"ORD\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,121.00,95.00,733.00,,,,,,\n2015,5,15,\"AA\",\"1682\",\"ORD\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,124.00,94.00,733.00,,,,,,\n2015,5,16,\"AA\",\"1682\",\"ORD\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,123.00,92.00,733.00,,,,,,\n2015,5,17,\"AA\",\"1682\",\"ORD\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,124.00,96.00,733.00,,,,,,\n2015,5,18,\"AA\",\"1682\",\"ORD\",\"LGA\",210.00,215.00,0.00,\"\",0.00,140.00,99.00,733.00,0.00,0.00,215.00,0.00,0.00,\n2015,5,19,\"AA\",\"1682\",\"ORD\",\"LGA\",42.00,31.00,0.00,\"\",0.00,124.00,92.00,733.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,20,\"AA\",\"1682\",\"ORD\",\"LGA\",-4.00,-25.00,0.00,\"\",0.00,114.00,86.00,733.00,,,,,,\n2015,5,21,\"AA\",\"1682\",\"ORD\",\"LGA\",3.00,-16.00,0.00,\"\",0.00,116.00,94.00,733.00,,,,,,\n2015,5,22,\"AA\",\"1682\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,23,\"AA\",\"1682\",\"ORD\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,117.00,90.00,733.00,,,,,,\n2015,5,24,\"AA\",\"1682\",\"ORD\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,117.00,93.00,733.00,,,,,,\n2015,5,25,\"AA\",\"1682\",\"ORD\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,140.00,112.00,733.00,,,,,,\n2015,5,26,\"AA\",\"1682\",\"ORD\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,120.00,101.00,733.00,,,,,,\n2015,5,27,\"AA\",\"1682\",\"ORD\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,128.00,98.00,733.00,,,,,,\n2015,5,28,\"AA\",\"1682\",\"ORD\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,120.00,99.00,733.00,,,,,,\n2015,5,29,\"AA\",\"1682\",\"ORD\",\"LGA\",56.00,36.00,0.00,\"\",0.00,115.00,97.00,733.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,30,\"AA\",\"1682\",\"ORD\",\"LGA\",46.00,43.00,0.00,\"\",0.00,128.00,103.00,733.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,31,\"AA\",\"1682\",\"ORD\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,127.00,99.00,733.00,,,,,,\n2015,5,1,\"AA\",\"1696\",\"LGA\",\"MIA\",0.00,-10.00,0.00,\"\",0.00,185.00,157.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1696\",\"LGA\",\"MIA\",-6.00,-35.00,0.00,\"\",0.00,166.00,152.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1696\",\"LGA\",\"MIA\",0.00,-8.00,0.00,\"\",0.00,187.00,153.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1696\",\"LGA\",\"MIA\",-9.00,-25.00,0.00,\"\",0.00,179.00,162.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1696\",\"LGA\",\"MIA\",-6.00,-13.00,0.00,\"\",0.00,188.00,163.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1696\",\"LGA\",\"MIA\",-4.00,-14.00,0.00,\"\",0.00,185.00,156.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1696\",\"LGA\",\"MIA\",-5.00,-5.00,0.00,\"\",0.00,195.00,162.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1696\",\"LGA\",\"MIA\",10.00,6.00,0.00,\"\",0.00,191.00,145.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1696\",\"LGA\",\"MIA\",26.00,2.00,0.00,\"\",0.00,171.00,150.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"1696\",\"LGA\",\"MIA\",-3.00,-3.00,0.00,\"\",0.00,195.00,168.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"1696\",\"LGA\",\"MIA\",-11.00,0.00,0.00,\"\",0.00,206.00,169.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"1696\",\"LGA\",\"MIA\",77.00,68.00,0.00,\"\",0.00,186.00,156.00,1096.00,68.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"AA\",\"1696\",\"LGA\",\"MIA\",-2.00,-16.00,0.00,\"\",0.00,181.00,157.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1696\",\"LGA\",\"MIA\",-3.00,-7.00,0.00,\"\",0.00,191.00,146.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1696\",\"LGA\",\"MIA\",-3.00,-25.00,0.00,\"\",0.00,173.00,147.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1696\",\"LGA\",\"MIA\",-13.00,-48.00,0.00,\"\",0.00,160.00,145.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1696\",\"LGA\",\"MIA\",19.00,-4.00,0.00,\"\",0.00,172.00,146.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1696\",\"LGA\",\"MIA\",6.00,-1.00,0.00,\"\",0.00,188.00,151.00,1096.00,,,,,,\n2015,5,19,\"AA\",\"1696\",\"LGA\",\"MIA\",1.00,-15.00,0.00,\"\",0.00,179.00,161.00,1096.00,,,,,,\n2015,5,20,\"AA\",\"1696\",\"LGA\",\"MIA\",-2.00,-14.00,0.00,\"\",0.00,183.00,150.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"1696\",\"LGA\",\"MIA\",-4.00,-26.00,0.00,\"\",0.00,173.00,151.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1696\",\"LGA\",\"MIA\",-8.00,-7.00,0.00,\"\",0.00,196.00,156.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1696\",\"LGA\",\"MIA\",-10.00,-34.00,0.00,\"\",0.00,171.00,143.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1696\",\"LGA\",\"MIA\",68.00,37.00,0.00,\"\",0.00,164.00,140.00,1096.00,0.00,0.00,6.00,0.00,31.00,\n2015,5,25,\"AA\",\"1696\",\"LGA\",\"MIA\",-7.00,-15.00,0.00,\"\",0.00,187.00,146.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1696\",\"LGA\",\"MIA\",13.00,-7.00,0.00,\"\",0.00,175.00,152.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1696\",\"LGA\",\"MIA\",-8.00,-23.00,0.00,\"\",0.00,180.00,151.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"1696\",\"LGA\",\"MIA\",-4.00,-22.00,0.00,\"\",0.00,177.00,150.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1696\",\"LGA\",\"MIA\",-5.00,-23.00,0.00,\"\",0.00,177.00,142.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1696\",\"LGA\",\"MIA\",-9.00,-27.00,0.00,\"\",0.00,177.00,144.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1696\",\"LGA\",\"MIA\",-2.00,-8.00,0.00,\"\",0.00,189.00,151.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1696\",\"MIA\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,165.00,143.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1696\",\"MIA\",\"LGA\",-3.00,-27.00,0.00,\"\",0.00,161.00,134.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1696\",\"MIA\",\"LGA\",6.00,0.00,0.00,\"\",0.00,179.00,149.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"1696\",\"MIA\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,180.00,147.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1696\",\"MIA\",\"LGA\",3.00,8.00,0.00,\"\",0.00,190.00,154.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1696\",\"MIA\",\"LGA\",-10.00,-14.00,0.00,\"\",0.00,181.00,146.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1696\",\"MIA\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,189.00,156.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1696\",\"MIA\",\"LGA\",3.00,6.00,0.00,\"\",0.00,189.00,156.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1696\",\"MIA\",\"LGA\",51.00,44.00,0.00,\"\",0.00,179.00,160.00,1096.00,30.00,0.00,0.00,0.00,14.00,\n2015,5,10,\"AA\",\"1696\",\"MIA\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,175.00,157.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"1696\",\"MIA\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,183.00,154.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"1696\",\"MIA\",\"LGA\",7.00,-4.00,0.00,\"\",0.00,175.00,150.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1696\",\"MIA\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,169.00,144.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1696\",\"MIA\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,180.00,155.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1696\",\"MIA\",\"LGA\",4.00,0.00,0.00,\"\",0.00,182.00,146.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1696\",\"MIA\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,166.00,148.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1696\",\"MIA\",\"LGA\",19.00,-1.00,0.00,\"\",0.00,166.00,148.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1696\",\"MIA\",\"LGA\",27.00,23.00,0.00,\"\",0.00,182.00,156.00,1096.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,19,\"AA\",\"1696\",\"MIA\",\"LGA\",8.00,9.00,0.00,\"\",0.00,187.00,142.00,1096.00,,,,,,\n2015,5,20,\"AA\",\"1696\",\"MIA\",\"LGA\",-1.00,6.00,0.00,\"\",0.00,193.00,153.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"1696\",\"MIA\",\"LGA\",12.00,9.00,0.00,\"\",0.00,183.00,150.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1696\",\"MIA\",\"LGA\",0.00,-22.00,0.00,\"\",0.00,164.00,137.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1696\",\"MIA\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,174.00,147.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1696\",\"MIA\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,177.00,155.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1696\",\"MIA\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,182.00,155.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1696\",\"MIA\",\"LGA\",50.00,26.00,0.00,\"\",0.00,162.00,141.00,1096.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"AA\",\"1696\",\"MIA\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,174.00,144.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"1696\",\"MIA\",\"LGA\",5.00,-19.00,0.00,\"\",0.00,162.00,144.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1696\",\"MIA\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,165.00,147.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1696\",\"MIA\",\"LGA\",8.00,15.00,0.00,\"\",0.00,193.00,152.00,1096.00,8.00,0.00,7.00,0.00,0.00,\n2015,5,31,\"AA\",\"1696\",\"MIA\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,174.00,151.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"2230\",\"JFK\",\"MIA\",4.00,14.00,0.00,\"\",0.00,200.00,155.00,1089.00,,,,,,\n2015,5,8,\"AA\",\"2230\",\"JFK\",\"MIA\",-3.00,-13.00,0.00,\"\",0.00,180.00,150.00,1089.00,,,,,,\n2015,5,9,\"AA\",\"2230\",\"JFK\",\"MIA\",5.00,5.00,0.00,\"\",0.00,190.00,144.00,1089.00,,,,,,\n2015,5,10,\"AA\",\"2230\",\"JFK\",\"MIA\",-4.00,-7.00,0.00,\"\",0.00,187.00,158.00,1089.00,,,,,,\n2015,5,11,\"AA\",\"2230\",\"JFK\",\"MIA\",-3.00,-19.00,0.00,\"\",0.00,174.00,154.00,1089.00,,,,,,\n2015,5,12,\"AA\",\"2230\",\"JFK\",\"MIA\",0.00,17.00,0.00,\"\",0.00,207.00,153.00,1089.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,13,\"AA\",\"2230\",\"JFK\",\"MIA\",-7.00,-20.00,0.00,\"\",0.00,177.00,161.00,1089.00,,,,,,\n2015,5,14,\"AA\",\"2230\",\"JFK\",\"MIA\",0.00,-13.00,0.00,\"\",0.00,177.00,137.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"2230\",\"JFK\",\"MIA\",-3.00,11.00,0.00,\"\",0.00,204.00,155.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"2230\",\"JFK\",\"MIA\",-4.00,-15.00,0.00,\"\",0.00,179.00,147.00,1089.00,,,,,,\n2015,5,17,\"AA\",\"2230\",\"JFK\",\"MIA\",-8.00,-24.00,0.00,\"\",0.00,174.00,148.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"2230\",\"JFK\",\"MIA\",1.00,-3.00,0.00,\"\",0.00,186.00,141.00,1089.00,,,,,,\n2015,5,19,\"AA\",\"2230\",\"JFK\",\"MIA\",-4.00,-25.00,0.00,\"\",0.00,169.00,143.00,1089.00,,,,,,\n2015,5,20,\"AA\",\"2230\",\"JFK\",\"MIA\",-4.00,-14.00,0.00,\"\",0.00,180.00,143.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"2230\",\"JFK\",\"MIA\",-5.00,9.00,0.00,\"\",0.00,204.00,161.00,1089.00,,,,,,\n2015,5,22,\"AA\",\"2230\",\"JFK\",\"MIA\",129.00,133.00,0.00,\"\",0.00,194.00,148.00,1089.00,97.00,0.00,4.00,0.00,32.00,\n2015,5,23,\"AA\",\"2230\",\"JFK\",\"MIA\",32.00,8.00,0.00,\"\",0.00,166.00,145.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"2230\",\"JFK\",\"MIA\",11.00,-16.00,0.00,\"\",0.00,163.00,140.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"2230\",\"JFK\",\"MIA\",-3.00,-18.00,0.00,\"\",0.00,175.00,141.00,1089.00,,,,,,\n2015,5,26,\"AA\",\"2230\",\"JFK\",\"MIA\",-4.00,-18.00,0.00,\"\",0.00,176.00,144.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"2230\",\"JFK\",\"MIA\",-6.00,-13.00,0.00,\"\",0.00,183.00,147.00,1089.00,,,,,,\n2015,5,28,\"AA\",\"2230\",\"JFK\",\"MIA\",-4.00,-19.00,0.00,\"\",0.00,175.00,146.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"2230\",\"JFK\",\"MIA\",41.00,24.00,0.00,\"\",0.00,173.00,141.00,1089.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"AA\",\"2230\",\"JFK\",\"MIA\",13.00,-7.00,0.00,\"\",0.00,170.00,142.00,1089.00,,,,,,\n2015,5,31,\"AA\",\"2230\",\"JFK\",\"MIA\",13.00,10.00,0.00,\"\",0.00,187.00,153.00,1089.00,,,,,,\n2015,5,1,\"AA\",\"1664\",\"BOS\",\"JFK\",-2.00,-29.00,0.00,\"\",0.00,65.00,50.00,187.00,,,,,,\n2015,5,2,\"AA\",\"1664\",\"BOS\",\"JFK\",-10.00,-37.00,0.00,\"\",0.00,65.00,41.00,187.00,,,,,,\n2015,5,3,\"AA\",\"1664\",\"BOS\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,88.00,43.00,187.00,,,,,,\n2015,5,4,\"AA\",\"1664\",\"BOS\",\"JFK\",28.00,8.00,0.00,\"\",0.00,72.00,50.00,187.00,,,,,,\n2015,5,5,\"AA\",\"1664\",\"BOS\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,71.00,42.00,187.00,,,,,,\n2015,5,7,\"AA\",\"1664\",\"BOS\",\"JFK\",3.00,-4.00,0.00,\"\",0.00,85.00,40.00,187.00,,,,,,\n2015,5,8,\"AA\",\"1664\",\"BOS\",\"JFK\",30.00,27.00,0.00,\"\",0.00,89.00,39.00,187.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,9,\"AA\",\"1664\",\"BOS\",\"JFK\",68.00,41.00,0.00,\"\",0.00,65.00,44.00,187.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,10,\"AA\",\"1664\",\"BOS\",\"JFK\",28.00,11.00,0.00,\"\",0.00,75.00,46.00,187.00,,,,,,\n2015,5,11,\"AA\",\"1664\",\"BOS\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,88.00,41.00,187.00,,,,,,\n2015,5,12,\"AA\",\"1664\",\"BOS\",\"JFK\",42.00,45.00,0.00,\"\",0.00,95.00,63.00,187.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,13,\"AA\",\"1664\",\"BOS\",\"JFK\",17.00,-7.00,0.00,\"\",0.00,68.00,43.00,187.00,,,,,,\n2015,5,14,\"AA\",\"1664\",\"BOS\",\"JFK\",-3.00,-30.00,0.00,\"\",0.00,65.00,46.00,187.00,,,,,,\n2015,5,15,\"AA\",\"1664\",\"BOS\",\"JFK\",-5.00,-7.00,0.00,\"\",0.00,90.00,54.00,187.00,,,,,,\n2015,5,16,\"AA\",\"1664\",\"BOS\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,72.00,51.00,187.00,,,,,,\n2015,5,17,\"AA\",\"1664\",\"BOS\",\"JFK\",31.00,15.00,0.00,\"\",0.00,76.00,48.00,187.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,18,\"AA\",\"1664\",\"BOS\",\"JFK\",21.00,9.00,0.00,\"\",0.00,80.00,47.00,187.00,,,,,,\n2015,5,19,\"AA\",\"1664\",\"BOS\",\"JFK\",-2.00,10.00,0.00,\"\",0.00,104.00,46.00,187.00,,,,,,\n2015,5,20,\"AA\",\"1664\",\"BOS\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,77.00,43.00,187.00,,,,,,\n2015,5,21,\"AA\",\"1664\",\"BOS\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,84.00,57.00,187.00,,,,,,\n2015,5,22,\"AA\",\"1664\",\"BOS\",\"JFK\",20.00,-5.00,0.00,\"\",0.00,67.00,42.00,187.00,,,,,,\n2015,5,23,\"AA\",\"1664\",\"BOS\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,70.00,49.00,187.00,,,,,,\n2015,5,24,\"AA\",\"1664\",\"BOS\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,75.00,51.00,187.00,,,,,,\n2015,5,25,\"AA\",\"1664\",\"BOS\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,76.00,48.00,187.00,,,,,,\n2015,5,26,\"AA\",\"1664\",\"BOS\",\"JFK\",-14.00,-36.00,0.00,\"\",0.00,70.00,40.00,187.00,,,,,,\n2015,5,27,\"AA\",\"1664\",\"BOS\",\"JFK\",56.00,37.00,0.00,\"\",0.00,73.00,49.00,187.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,28,\"AA\",\"1664\",\"BOS\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,84.00,50.00,187.00,,,,,,\n2015,5,29,\"AA\",\"1664\",\"BOS\",\"JFK\",43.00,33.00,0.00,\"\",0.00,82.00,48.00,187.00,0.00,0.00,0.00,0.00,33.00,\n2015,5,30,\"AA\",\"1664\",\"BOS\",\"JFK\",-8.00,-15.00,0.00,\"\",0.00,85.00,52.00,187.00,,,,,,\n2015,5,31,\"AA\",\"1664\",\"BOS\",\"JFK\",804.00,789.00,0.00,\"\",0.00,77.00,47.00,187.00,679.00,0.00,0.00,0.00,110.00,\n2015,5,1,\"AA\",\"1664\",\"JFK\",\"BOS\",-5.00,-33.00,0.00,\"\",0.00,52.00,33.00,187.00,,,,,,\n2015,5,2,\"AA\",\"1664\",\"JFK\",\"BOS\",-5.00,-35.00,0.00,\"\",0.00,50.00,33.00,187.00,,,,,,\n2015,5,3,\"AA\",\"1664\",\"JFK\",\"BOS\",11.00,-5.00,0.00,\"\",0.00,64.00,36.00,187.00,,,,,,\n2015,5,4,\"AA\",\"1664\",\"JFK\",\"BOS\",-5.00,-17.00,0.00,\"\",0.00,68.00,40.00,187.00,,,,,,\n2015,5,5,\"AA\",\"1664\",\"JFK\",\"BOS\",-4.00,-13.00,0.00,\"\",0.00,71.00,34.00,187.00,,,,,,\n2015,5,6,\"AA\",\"1664\",\"JFK\",\"BOS\",-5.00,-24.00,0.00,\"\",0.00,61.00,41.00,187.00,,,,,,\n2015,5,1,\"AA\",\"2266\",\"LGA\",\"MIA\",-7.00,-7.00,0.00,\"\",0.00,186.00,158.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"2266\",\"LGA\",\"MIA\",-9.00,-20.00,0.00,\"\",0.00,175.00,156.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"2266\",\"LGA\",\"MIA\",-12.00,-13.00,0.00,\"\",0.00,185.00,153.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"2266\",\"LGA\",\"MIA\",-9.00,-23.00,0.00,\"\",0.00,172.00,153.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"2266\",\"LGA\",\"MIA\",-8.00,-12.00,0.00,\"\",0.00,182.00,157.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"2266\",\"LGA\",\"MIA\",-9.00,-7.00,0.00,\"\",0.00,188.00,160.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"2266\",\"LGA\",\"MIA\",-10.00,-2.00,0.00,\"\",0.00,194.00,156.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"2266\",\"LGA\",\"MIA\",-5.00,-4.00,0.00,\"\",0.00,187.00,152.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"2266\",\"LGA\",\"MIA\",-9.00,-25.00,0.00,\"\",0.00,170.00,147.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"2266\",\"LGA\",\"MIA\",-9.00,-21.00,0.00,\"\",0.00,174.00,152.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"2266\",\"LGA\",\"MIA\",-8.00,-15.00,0.00,\"\",0.00,179.00,158.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"2266\",\"LGA\",\"MIA\",-11.00,-36.00,0.00,\"\",0.00,161.00,144.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"2266\",\"LGA\",\"MIA\",-11.00,21.00,0.00,\"\",0.00,218.00,171.00,1096.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,14,\"AA\",\"2266\",\"LGA\",\"MIA\",-8.00,-13.00,0.00,\"\",0.00,181.00,142.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"2266\",\"LGA\",\"MIA\",-9.00,-26.00,0.00,\"\",0.00,169.00,147.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"2266\",\"LGA\",\"MIA\",-9.00,-23.00,0.00,\"\",0.00,172.00,141.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"2266\",\"LGA\",\"MIA\",-7.00,-24.00,0.00,\"\",0.00,169.00,143.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"2266\",\"LGA\",\"MIA\",-7.00,2.00,0.00,\"\",0.00,195.00,147.00,1096.00,,,,,,\n2015,5,19,\"AA\",\"2266\",\"LGA\",\"MIA\",58.00,50.00,0.00,\"\",0.00,178.00,149.00,1096.00,50.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"AA\",\"2266\",\"LGA\",\"MIA\",-4.00,-18.00,0.00,\"\",0.00,172.00,145.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"2266\",\"LGA\",\"MIA\",-5.00,2.00,0.00,\"\",0.00,193.00,168.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"2266\",\"LGA\",\"MIA\",-2.00,-9.00,0.00,\"\",0.00,179.00,155.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"2266\",\"LGA\",\"MIA\",-3.00,-21.00,0.00,\"\",0.00,168.00,143.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"2266\",\"LGA\",\"MIA\",-7.00,-37.00,0.00,\"\",0.00,156.00,140.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"2266\",\"LGA\",\"MIA\",-6.00,-20.00,0.00,\"\",0.00,172.00,145.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"2266\",\"LGA\",\"MIA\",-7.00,-30.00,0.00,\"\",0.00,163.00,147.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"2266\",\"LGA\",\"MIA\",-12.00,-25.00,0.00,\"\",0.00,173.00,149.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"2266\",\"LGA\",\"MIA\",-4.00,0.00,0.00,\"\",0.00,190.00,148.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"2266\",\"LGA\",\"MIA\",-8.00,-31.00,0.00,\"\",0.00,163.00,143.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"2266\",\"LGA\",\"MIA\",-7.00,-19.00,0.00,\"\",0.00,174.00,147.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"2266\",\"LGA\",\"MIA\",-10.00,23.00,0.00,\"\",0.00,219.00,146.00,1096.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,1,\"AA\",\"2273\",\"LGA\",\"MIA\",-6.00,-5.00,0.00,\"\",0.00,207.00,164.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"2273\",\"LGA\",\"MIA\",-8.00,-22.00,0.00,\"\",0.00,192.00,151.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"2273\",\"LGA\",\"MIA\",-2.00,-26.00,0.00,\"\",0.00,182.00,151.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"2273\",\"LGA\",\"MIA\",-9.00,-23.00,0.00,\"\",0.00,192.00,152.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"2273\",\"LGA\",\"MIA\",-8.00,-22.00,0.00,\"\",0.00,192.00,168.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"2273\",\"LGA\",\"MIA\",-7.00,-8.00,0.00,\"\",0.00,205.00,158.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"2273\",\"LGA\",\"MIA\",-6.00,-28.00,0.00,\"\",0.00,184.00,157.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"2273\",\"LGA\",\"MIA\",-1.00,-16.00,0.00,\"\",0.00,191.00,144.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"2273\",\"LGA\",\"MIA\",12.00,-22.00,0.00,\"\",0.00,172.00,148.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"2273\",\"LGA\",\"MIA\",19.00,-6.00,0.00,\"\",0.00,181.00,151.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"2273\",\"LGA\",\"MIA\",81.00,42.00,0.00,\"\",0.00,167.00,148.00,1096.00,0.00,0.00,0.00,0.00,42.00,\n2015,5,12,\"AA\",\"2273\",\"LGA\",\"MIA\",-6.00,-23.00,0.00,\"\",0.00,189.00,165.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"2273\",\"LGA\",\"MIA\",18.00,9.00,0.00,\"\",0.00,197.00,158.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"2273\",\"LGA\",\"MIA\",-3.00,-24.00,0.00,\"\",0.00,185.00,164.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"2273\",\"LGA\",\"MIA\",-5.00,-37.00,0.00,\"\",0.00,174.00,149.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"2273\",\"LGA\",\"MIA\",-13.00,-40.00,0.00,\"\",0.00,179.00,144.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"2273\",\"LGA\",\"MIA\",5.00,-30.00,0.00,\"\",0.00,171.00,146.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"2273\",\"LGA\",\"MIA\",43.00,1.00,0.00,\"\",0.00,164.00,144.00,1096.00,,,,,,\n2015,5,19,\"AA\",\"2273\",\"LGA\",\"MIA\",0.00,38.00,0.00,\"\",0.00,244.00,168.00,1096.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,20,\"AA\",\"2273\",\"LGA\",\"MIA\",-2.00,9.00,0.00,\"\",0.00,217.00,148.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"2273\",\"LGA\",\"MIA\",-3.00,0.00,0.00,\"\",0.00,209.00,153.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"2273\",\"LGA\",\"MIA\",-1.00,-27.00,0.00,\"\",0.00,180.00,157.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"2273\",\"LGA\",\"MIA\",-4.00,-26.00,0.00,\"\",0.00,184.00,144.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"2273\",\"LGA\",\"MIA\",-5.00,-46.00,0.00,\"\",0.00,165.00,142.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"2273\",\"LGA\",\"MIA\",-10.00,1.00,0.00,\"\",0.00,217.00,155.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"2273\",\"LGA\",\"MIA\",-4.00,-35.00,0.00,\"\",0.00,175.00,147.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"2273\",\"LGA\",\"MIA\",-6.00,-17.00,0.00,\"\",0.00,195.00,152.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"2273\",\"LGA\",\"MIA\",-4.00,-23.00,0.00,\"\",0.00,187.00,159.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"2273\",\"LGA\",\"MIA\",-4.00,-19.00,0.00,\"\",0.00,191.00,143.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"2273\",\"LGA\",\"MIA\",-2.00,-4.00,0.00,\"\",0.00,204.00,143.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"2273\",\"LGA\",\"MIA\",266.00,253.00,0.00,\"\",0.00,193.00,146.00,1096.00,0.00,253.00,0.00,0.00,0.00,\n2015,5,1,\"AA\",\"2273\",\"MIA\",\"LGA\",-7.00,-32.00,0.00,\"\",0.00,153.00,138.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"2273\",\"MIA\",\"LGA\",5.00,-9.00,0.00,\"\",0.00,164.00,144.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"2273\",\"MIA\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,171.00,146.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"2273\",\"MIA\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,166.00,143.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"2273\",\"MIA\",\"LGA\",1.00,5.00,0.00,\"\",0.00,182.00,163.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"2273\",\"MIA\",\"LGA\",-6.00,-28.00,0.00,\"\",0.00,156.00,145.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"2273\",\"MIA\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,168.00,153.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"2273\",\"MIA\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,176.00,152.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"2273\",\"MIA\",\"LGA\",28.00,43.00,0.00,\"\",0.00,193.00,174.00,1096.00,1.00,0.00,15.00,0.00,27.00,\n2015,5,10,\"AA\",\"2273\",\"MIA\",\"LGA\",-3.00,-1.00,0.00,\"\",0.00,180.00,156.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"2273\",\"MIA\",\"LGA\",-5.00,,0.00,\"\",1.00,,,1096.00,,,,,,\n2015,5,12,\"AA\",\"2273\",\"MIA\",\"LGA\",4.00,-1.00,0.00,\"\",0.00,173.00,152.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"2273\",\"MIA\",\"LGA\",47.00,35.00,0.00,\"\",0.00,166.00,148.00,1096.00,25.00,0.00,0.00,0.00,10.00,\n2015,5,14,\"AA\",\"2273\",\"MIA\",\"LGA\",16.00,9.00,0.00,\"\",0.00,171.00,151.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"2273\",\"MIA\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,176.00,154.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"2273\",\"MIA\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,173.00,155.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"2273\",\"MIA\",\"LGA\",1.00,1.00,0.00,\"\",0.00,178.00,148.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"2273\",\"MIA\",\"LGA\",49.00,,0.00,\"\",1.00,,,1096.00,,,,,,\n2015,5,19,\"AA\",\"2273\",\"MIA\",\"LGA\",7.00,1.00,0.00,\"\",0.00,172.00,144.00,1096.00,,,,,,\n2015,5,20,\"AA\",\"2273\",\"MIA\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,181.00,151.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"2273\",\"MIA\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,165.00,152.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"2273\",\"MIA\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,168.00,145.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"2273\",\"MIA\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,176.00,151.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"2273\",\"MIA\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,175.00,154.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"2273\",\"MIA\",\"LGA\",-9.00,-26.00,0.00,\"\",0.00,161.00,143.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"2273\",\"MIA\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,167.00,147.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"2273\",\"MIA\",\"LGA\",-7.00,-5.00,0.00,\"\",0.00,180.00,149.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"2273\",\"MIA\",\"LGA\",-6.00,-26.00,0.00,\"\",0.00,158.00,144.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"2273\",\"MIA\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,174.00,157.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"2273\",\"MIA\",\"LGA\",18.00,21.00,0.00,\"\",0.00,181.00,154.00,1096.00,0.00,0.00,3.00,0.00,18.00,\n2015,5,31,\"AA\",\"2273\",\"MIA\",\"LGA\",10.00,11.00,0.00,\"\",0.00,179.00,144.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"2285\",\"JFK\",\"MCO\",-4.00,-15.00,0.00,\"\",0.00,157.00,136.00,944.00,,,,,,\n2015,5,2,\"AA\",\"2285\",\"JFK\",\"MCO\",0.00,-2.00,0.00,\"\",0.00,166.00,129.00,944.00,,,,,,\n2015,5,3,\"AA\",\"2285\",\"JFK\",\"MCO\",-6.00,-7.00,0.00,\"\",0.00,167.00,129.00,944.00,,,,,,\n2015,5,4,\"AA\",\"2285\",\"JFK\",\"MCO\",-8.00,8.00,0.00,\"\",0.00,184.00,134.00,944.00,,,,,,\n2015,5,5,\"AA\",\"2285\",\"JFK\",\"MCO\",-7.00,-2.00,0.00,\"\",0.00,173.00,141.00,944.00,,,,,,\n2015,5,6,\"AA\",\"2285\",\"JFK\",\"MCO\",39.00,42.00,0.00,\"\",0.00,171.00,140.00,944.00,39.00,0.00,3.00,0.00,0.00,\n2015,5,1,\"AA\",\"2285\",\"MCO\",\"JFK\",-8.00,-34.00,0.00,\"\",0.00,138.00,118.00,944.00,,,,,,\n2015,5,2,\"AA\",\"2285\",\"MCO\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,147.00,124.00,944.00,,,,,,\n2015,5,3,\"AA\",\"2285\",\"MCO\",\"JFK\",13.00,-2.00,0.00,\"\",0.00,149.00,128.00,944.00,,,,,,\n2015,5,4,\"AA\",\"2285\",\"MCO\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,153.00,126.00,944.00,,,,,,\n2015,5,5,\"AA\",\"2285\",\"MCO\",\"JFK\",-8.00,-29.00,0.00,\"\",0.00,143.00,118.00,944.00,,,,,,\n2015,5,6,\"AA\",\"2285\",\"MCO\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,145.00,125.00,944.00,,,,,,\n2015,5,7,\"AA\",\"2285\",\"MCO\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,157.00,141.00,944.00,,,,,,\n2015,5,8,\"AA\",\"2285\",\"MCO\",\"JFK\",74.00,97.00,0.00,\"\",0.00,187.00,144.00,944.00,0.00,0.00,97.00,0.00,0.00,\n2015,5,9,\"AA\",\"2285\",\"MCO\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,158.00,137.00,944.00,,,,,,\n2015,5,10,\"AA\",\"2285\",\"MCO\",\"JFK\",31.00,61.00,0.00,\"\",0.00,194.00,169.00,944.00,31.00,0.00,30.00,0.00,0.00,\n2015,5,11,\"AA\",\"2285\",\"MCO\",\"JFK\",147.00,159.00,0.00,\"\",0.00,176.00,154.00,944.00,41.00,0.00,12.00,0.00,106.00,\n2015,5,12,\"AA\",\"2285\",\"MCO\",\"JFK\",101.00,95.00,0.00,\"\",0.00,158.00,131.00,944.00,0.00,0.00,0.00,0.00,95.00,\n2015,5,13,\"AA\",\"2285\",\"MCO\",\"JFK\",26.00,35.00,0.00,\"\",0.00,173.00,140.00,944.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,14,\"AA\",\"2285\",\"MCO\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,147.00,125.00,944.00,,,,,,\n2015,5,15,\"AA\",\"2285\",\"MCO\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,154.00,130.00,944.00,,,,,,\n2015,5,16,\"AA\",\"2285\",\"MCO\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,149.00,128.00,944.00,,,,,,\n2015,5,17,\"AA\",\"2285\",\"MCO\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,152.00,132.00,944.00,,,,,,\n2015,5,18,\"AA\",\"2285\",\"MCO\",\"JFK\",9.00,18.00,0.00,\"\",0.00,173.00,153.00,944.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,19,\"AA\",\"2285\",\"MCO\",\"JFK\",-1.00,39.00,0.00,\"\",0.00,204.00,155.00,944.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,20,\"AA\",\"2285\",\"MCO\",\"JFK\",43.00,26.00,0.00,\"\",0.00,147.00,122.00,944.00,0.00,26.00,0.00,0.00,0.00,\n2015,5,21,\"AA\",\"2285\",\"MCO\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,145.00,127.00,944.00,,,,,,\n2015,5,22,\"AA\",\"2285\",\"MCO\",\"JFK\",-1.00,-9.00,0.00,\"\",0.00,156.00,126.00,944.00,,,,,,\n2015,5,23,\"AA\",\"2285\",\"MCO\",\"JFK\",60.00,52.00,0.00,\"\",0.00,156.00,130.00,944.00,27.00,0.00,0.00,0.00,25.00,\n2015,5,24,\"AA\",\"2285\",\"MCO\",\"JFK\",39.00,17.00,0.00,\"\",0.00,142.00,122.00,944.00,5.00,0.00,0.00,0.00,12.00,\n2015,5,25,\"AA\",\"2285\",\"MCO\",\"JFK\",54.00,32.00,0.00,\"\",0.00,142.00,122.00,944.00,6.00,0.00,0.00,0.00,26.00,\n2015,5,26,\"AA\",\"2285\",\"MCO\",\"JFK\",22.00,5.00,0.00,\"\",0.00,147.00,127.00,944.00,,,,,,\n2015,5,27,\"AA\",\"2285\",\"MCO\",\"JFK\",15.00,40.00,0.00,\"\",0.00,189.00,123.00,944.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,28,\"AA\",\"2285\",\"MCO\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,150.00,129.00,944.00,,,,,,\n2015,5,29,\"AA\",\"2285\",\"MCO\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,160.00,136.00,944.00,,,,,,\n2015,5,30,\"AA\",\"2285\",\"MCO\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,151.00,128.00,944.00,,,,,,\n2015,5,31,\"AA\",\"2285\",\"MCO\",\"JFK\",136.00,145.00,0.00,\"\",0.00,173.00,143.00,944.00,0.00,0.00,145.00,0.00,0.00,\n2015,5,1,\"AA\",\"1638\",\"CLT\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,108.00,83.00,541.00,,,,,,\n2015,5,2,\"AA\",\"1638\",\"CLT\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,117.00,79.00,541.00,,,,,,\n2015,5,3,\"AA\",\"1638\",\"CLT\",\"JFK\",-8.00,-8.00,0.00,\"\",0.00,113.00,91.00,541.00,,,,,,\n2015,5,4,\"AA\",\"1638\",\"CLT\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,103.00,78.00,541.00,,,,,,\n2015,5,5,\"AA\",\"1638\",\"CLT\",\"JFK\",3.00,-5.00,0.00,\"\",0.00,105.00,79.00,541.00,,,,,,\n2015,5,6,\"AA\",\"1638\",\"CLT\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,101.00,77.00,541.00,,,,,,\n2015,5,7,\"AA\",\"1638\",\"CLT\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,105.00,85.00,541.00,,,,,,\n2015,5,8,\"AA\",\"1638\",\"CLT\",\"JFK\",115.00,127.00,0.00,\"\",0.00,121.00,86.00,541.00,0.00,67.00,12.00,0.00,48.00,\n2015,5,9,\"AA\",\"1638\",\"CLT\",\"JFK\",43.00,36.00,0.00,\"\",0.00,102.00,83.00,541.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,10,\"AA\",\"1638\",\"CLT\",\"JFK\",81.00,79.00,0.00,\"\",0.00,107.00,79.00,541.00,0.00,0.00,79.00,0.00,0.00,\n2015,5,11,\"AA\",\"1638\",\"CLT\",\"JFK\",24.00,37.00,0.00,\"\",0.00,122.00,89.00,541.00,0.00,0.00,13.00,0.00,24.00,\n2015,5,12,\"AA\",\"1638\",\"CLT\",\"JFK\",36.00,25.00,0.00,\"\",0.00,98.00,76.00,541.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,13,\"AA\",\"1638\",\"CLT\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,101.00,78.00,541.00,,,,,,\n2015,5,14,\"AA\",\"1638\",\"CLT\",\"JFK\",-7.00,-11.00,0.00,\"\",0.00,105.00,85.00,541.00,,,,,,\n2015,5,15,\"AA\",\"1638\",\"CLT\",\"JFK\",80.00,81.00,0.00,\"\",0.00,110.00,87.00,541.00,80.00,0.00,1.00,0.00,0.00,\n2015,5,16,\"AA\",\"1638\",\"CLT\",\"JFK\",-3.00,0.00,0.00,\"\",0.00,112.00,85.00,541.00,,,,,,\n2015,5,17,\"AA\",\"1638\",\"CLT\",\"JFK\",-2.00,-1.00,0.00,\"\",0.00,110.00,85.00,541.00,,,,,,\n2015,5,18,\"AA\",\"1638\",\"CLT\",\"JFK\",-4.00,-1.00,0.00,\"\",0.00,112.00,83.00,541.00,,,,,,\n2015,5,19,\"AA\",\"1638\",\"CLT\",\"JFK\",91.00,101.00,0.00,\"\",0.00,119.00,95.00,541.00,0.00,0.00,11.00,0.00,90.00,\n2015,5,20,\"AA\",\"1638\",\"CLT\",\"JFK\",24.00,21.00,0.00,\"\",0.00,106.00,81.00,541.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,21,\"AA\",\"1638\",\"CLT\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,104.00,75.00,541.00,,,,,,\n2015,5,22,\"AA\",\"1638\",\"CLT\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,103.00,79.00,541.00,,,,,,\n2015,5,23,\"AA\",\"1638\",\"CLT\",\"JFK\",-5.00,-4.00,0.00,\"\",0.00,110.00,75.00,541.00,,,,,,\n2015,5,24,\"AA\",\"1638\",\"CLT\",\"JFK\",-7.00,-9.00,0.00,\"\",0.00,107.00,87.00,541.00,,,,,,\n2015,5,25,\"AA\",\"1638\",\"CLT\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,104.00,81.00,541.00,,,,,,\n2015,5,26,\"AA\",\"1638\",\"CLT\",\"JFK\",-1.00,4.00,0.00,\"\",0.00,114.00,81.00,541.00,,,,,,\n2015,5,27,\"AA\",\"1638\",\"CLT\",\"JFK\",3.00,23.00,0.00,\"\",0.00,129.00,88.00,541.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,28,\"AA\",\"1638\",\"CLT\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,103.00,84.00,541.00,,,,,,\n2015,5,29,\"AA\",\"1638\",\"CLT\",\"JFK\",-2.00,-1.00,0.00,\"\",0.00,110.00,88.00,541.00,,,,,,\n2015,5,30,\"AA\",\"1638\",\"CLT\",\"JFK\",5.00,5.00,0.00,\"\",0.00,109.00,85.00,541.00,,,,,,\n2015,5,31,\"AA\",\"1638\",\"CLT\",\"JFK\",114.00,145.00,0.00,\"\",0.00,140.00,88.00,541.00,0.00,0.00,145.00,0.00,0.00,\n2015,5,1,\"AA\",\"1640\",\"LGA\",\"MIA\",-7.00,-18.00,0.00,\"\",0.00,178.00,153.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1640\",\"LGA\",\"MIA\",-3.00,-12.00,0.00,\"\",0.00,180.00,156.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"1640\",\"LGA\",\"MIA\",86.00,58.00,0.00,\"\",0.00,161.00,148.00,1096.00,0.00,0.00,0.00,0.00,58.00,\n2015,5,4,\"AA\",\"1640\",\"LGA\",\"MIA\",-5.00,-20.00,0.00,\"\",0.00,174.00,153.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1640\",\"LGA\",\"MIA\",-7.00,-17.00,0.00,\"\",0.00,179.00,156.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1640\",\"LGA\",\"MIA\",-6.00,-13.00,0.00,\"\",0.00,182.00,149.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1640\",\"LGA\",\"MIA\",7.00,-11.00,0.00,\"\",0.00,171.00,139.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1640\",\"LGA\",\"MIA\",-8.00,-26.00,0.00,\"\",0.00,171.00,142.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1640\",\"LGA\",\"MIA\",4.00,-26.00,0.00,\"\",0.00,159.00,145.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"1640\",\"LGA\",\"MIA\",89.00,71.00,0.00,\"\",0.00,171.00,148.00,1096.00,0.00,0.00,0.00,0.00,71.00,\n2015,5,11,\"AA\",\"1640\",\"LGA\",\"MIA\",43.00,18.00,0.00,\"\",0.00,164.00,141.00,1096.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,12,\"AA\",\"1640\",\"LGA\",\"MIA\",-11.00,-21.00,0.00,\"\",0.00,179.00,150.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1640\",\"LGA\",\"MIA\",157.00,121.00,0.00,\"\",0.00,153.00,139.00,1096.00,0.00,0.00,0.00,0.00,121.00,\n2015,5,14,\"AA\",\"1640\",\"LGA\",\"MIA\",12.00,-6.00,0.00,\"\",0.00,171.00,146.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1640\",\"LGA\",\"MIA\",6.00,-20.00,0.00,\"\",0.00,163.00,142.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1640\",\"LGA\",\"MIA\",143.00,119.00,0.00,\"\",0.00,165.00,148.00,1096.00,0.00,107.00,0.00,0.00,12.00,\n2015,5,17,\"AA\",\"1640\",\"LGA\",\"MIA\",-1.00,-12.00,0.00,\"\",0.00,178.00,144.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1640\",\"LGA\",\"MIA\",156.00,155.00,0.00,\"\",0.00,188.00,135.00,1096.00,0.00,0.00,0.00,0.00,155.00,\n2015,5,19,\"AA\",\"1640\",\"LGA\",\"MIA\",7.00,9.00,0.00,\"\",0.00,191.00,155.00,1096.00,,,,,,\n2015,5,20,\"AA\",\"1640\",\"LGA\",\"MIA\",5.00,23.00,0.00,\"\",0.00,207.00,143.00,1096.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,21,\"AA\",\"1640\",\"LGA\",\"MIA\",3.00,-1.00,0.00,\"\",0.00,185.00,153.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1640\",\"LGA\",\"MIA\",2.00,-19.00,0.00,\"\",0.00,168.00,147.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1640\",\"LGA\",\"MIA\",0.00,-32.00,0.00,\"\",0.00,157.00,138.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1640\",\"LGA\",\"MIA\",-8.00,-44.00,0.00,\"\",0.00,153.00,141.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1640\",\"LGA\",\"MIA\",-6.00,-18.00,0.00,\"\",0.00,177.00,146.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1640\",\"LGA\",\"MIA\",-7.00,-35.00,0.00,\"\",0.00,161.00,148.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1640\",\"LGA\",\"MIA\",169.00,135.00,0.00,\"\",0.00,155.00,143.00,1096.00,0.00,0.00,0.00,0.00,135.00,\n2015,5,28,\"AA\",\"1640\",\"LGA\",\"MIA\",-2.00,-12.00,0.00,\"\",0.00,179.00,141.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1640\",\"LGA\",\"MIA\",-6.00,-14.00,0.00,\"\",0.00,181.00,141.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1640\",\"LGA\",\"MIA\",-8.00,-40.00,0.00,\"\",0.00,157.00,141.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1640\",\"LGA\",\"MIA\",,,1.00,\"B\",0.00,,,1096.00,,,,,,\n2015,5,1,\"AA\",\"1640\",\"MIA\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,167.00,145.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"1640\",\"MIA\",\"LGA\",34.00,29.00,0.00,\"\",0.00,171.00,147.00,1096.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"AA\",\"1640\",\"MIA\",\"LGA\",97.00,89.00,0.00,\"\",0.00,168.00,148.00,1096.00,89.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"AA\",\"1640\",\"MIA\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,163.00,146.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"1640\",\"MIA\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,161.00,145.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"1640\",\"MIA\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,177.00,149.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"1640\",\"MIA\",\"LGA\",-3.00,10.00,0.00,\"\",0.00,189.00,163.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"1640\",\"MIA\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,174.00,150.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"1640\",\"MIA\",\"LGA\",17.00,16.00,0.00,\"\",0.00,175.00,158.00,1096.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,10,\"AA\",\"1640\",\"MIA\",\"LGA\",82.00,94.00,0.00,\"\",0.00,188.00,157.00,1096.00,82.00,0.00,12.00,0.00,0.00,\n2015,5,11,\"AA\",\"1640\",\"MIA\",\"LGA\",57.00,53.00,0.00,\"\",0.00,172.00,148.00,1096.00,0.00,0.00,0.00,0.00,53.00,\n2015,5,12,\"AA\",\"1640\",\"MIA\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,174.00,148.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1640\",\"MIA\",\"LGA\",159.00,164.00,0.00,\"\",0.00,181.00,158.00,1096.00,159.00,0.00,5.00,0.00,0.00,\n2015,5,14,\"AA\",\"1640\",\"MIA\",\"LGA\",13.00,5.00,0.00,\"\",0.00,168.00,151.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1640\",\"MIA\",\"LGA\",17.00,7.00,0.00,\"\",0.00,166.00,149.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1640\",\"MIA\",\"LGA\",6.00,15.00,0.00,\"\",0.00,185.00,154.00,1096.00,0.00,0.00,9.00,0.00,6.00,\n2015,5,17,\"AA\",\"1640\",\"MIA\",\"LGA\",14.00,5.00,0.00,\"\",0.00,167.00,149.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1640\",\"MIA\",\"LGA\",33.00,113.00,0.00,\"\",0.00,256.00,162.00,1096.00,0.00,0.00,113.00,0.00,0.00,\n2015,5,19,\"AA\",\"1640\",\"MIA\",\"LGA\",16.00,13.00,0.00,\"\",0.00,173.00,149.00,1096.00,,,,,,\n2015,5,20,\"AA\",\"1640\",\"MIA\",\"LGA\",2.00,12.00,0.00,\"\",0.00,186.00,150.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"1640\",\"MIA\",\"LGA\",7.00,-1.00,0.00,\"\",0.00,168.00,148.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1640\",\"MIA\",\"LGA\",23.00,5.00,0.00,\"\",0.00,158.00,141.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1640\",\"MIA\",\"LGA\",23.00,12.00,0.00,\"\",0.00,165.00,153.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1640\",\"MIA\",\"LGA\",-3.00,0.00,0.00,\"\",0.00,179.00,152.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1640\",\"MIA\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,165.00,149.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1640\",\"MIA\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,160.00,142.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1640\",\"MIA\",\"LGA\",7.00,,0.00,\"\",1.00,,,1096.00,,,,,,\n2015,5,28,\"AA\",\"1640\",\"MIA\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,160.00,143.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1640\",\"MIA\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,164.00,149.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1640\",\"MIA\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,178.00,154.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1640\",\"MIA\",\"LGA\",46.00,,1.00,\"B\",0.00,,,1096.00,,,,,,\n2015,5,1,\"AA\",\"2243\",\"JFK\",\"MIA\",-4.00,-19.00,0.00,\"\",0.00,172.00,154.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"2243\",\"JFK\",\"MIA\",-6.00,-14.00,0.00,\"\",0.00,179.00,150.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"2243\",\"JFK\",\"MIA\",-3.00,-21.00,0.00,\"\",0.00,169.00,148.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"2243\",\"JFK\",\"MIA\",-4.00,-16.00,0.00,\"\",0.00,175.00,145.00,1089.00,,,,,,\n2015,5,5,\"AA\",\"2243\",\"JFK\",\"MIA\",-7.00,-16.00,0.00,\"\",0.00,178.00,160.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"2243\",\"JFK\",\"MIA\",7.00,-8.00,0.00,\"\",0.00,172.00,153.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"2243\",\"JFK\",\"MIA\",1.00,-10.00,0.00,\"\",0.00,170.00,149.00,1089.00,,,,,,\n2015,5,8,\"AA\",\"2243\",\"JFK\",\"MIA\",35.00,31.00,0.00,\"\",0.00,177.00,149.00,1089.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,9,\"AA\",\"2243\",\"JFK\",\"MIA\",-4.00,-19.00,0.00,\"\",0.00,166.00,145.00,1089.00,,,,,,\n2015,5,10,\"AA\",\"2243\",\"JFK\",\"MIA\",-3.00,-8.00,0.00,\"\",0.00,176.00,154.00,1089.00,,,,,,\n2015,5,11,\"AA\",\"2243\",\"JFK\",\"MIA\",1.00,-6.00,0.00,\"\",0.00,174.00,154.00,1089.00,,,,,,\n2015,5,12,\"AA\",\"2243\",\"JFK\",\"MIA\",2.00,-2.00,0.00,\"\",0.00,177.00,157.00,1089.00,,,,,,\n2015,5,13,\"AA\",\"2243\",\"JFK\",\"MIA\",0.00,4.00,0.00,\"\",0.00,185.00,161.00,1089.00,,,,,,\n2015,5,14,\"AA\",\"2243\",\"JFK\",\"MIA\",-3.00,-10.00,0.00,\"\",0.00,174.00,145.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"2243\",\"JFK\",\"MIA\",0.00,-11.00,0.00,\"\",0.00,170.00,151.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"2243\",\"JFK\",\"MIA\",-4.00,-9.00,0.00,\"\",0.00,176.00,152.00,1089.00,,,,,,\n2015,5,17,\"AA\",\"2243\",\"JFK\",\"MIA\",23.00,5.00,0.00,\"\",0.00,163.00,142.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"2243\",\"JFK\",\"MIA\",-3.00,-8.00,0.00,\"\",0.00,176.00,144.00,1089.00,,,,,,\n2015,5,19,\"AA\",\"2243\",\"JFK\",\"MIA\",-2.00,3.00,0.00,\"\",0.00,186.00,160.00,1089.00,,,,,,\n2015,5,20,\"AA\",\"2243\",\"JFK\",\"MIA\",1.00,-4.00,0.00,\"\",0.00,176.00,150.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"2243\",\"JFK\",\"MIA\",-1.00,-7.00,0.00,\"\",0.00,175.00,152.00,1089.00,,,,,,\n2015,5,22,\"AA\",\"2243\",\"JFK\",\"MIA\",-2.00,-15.00,0.00,\"\",0.00,168.00,149.00,1089.00,,,,,,\n2015,5,23,\"AA\",\"2243\",\"JFK\",\"MIA\",1.00,-3.00,0.00,\"\",0.00,177.00,149.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"2243\",\"JFK\",\"MIA\",-4.00,-13.00,0.00,\"\",0.00,172.00,147.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"2243\",\"JFK\",\"MIA\",-3.00,-19.00,0.00,\"\",0.00,165.00,146.00,1089.00,,,,,,\n2015,5,26,\"AA\",\"2243\",\"JFK\",\"MIA\",-6.00,-23.00,0.00,\"\",0.00,164.00,144.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"2243\",\"JFK\",\"MIA\",-1.00,-17.00,0.00,\"\",0.00,165.00,145.00,1089.00,,,,,,\n2015,5,28,\"AA\",\"2243\",\"JFK\",\"MIA\",3.00,-11.00,0.00,\"\",0.00,167.00,146.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"2243\",\"JFK\",\"MIA\",-2.00,-17.00,0.00,\"\",0.00,166.00,142.00,1089.00,,,,,,\n2015,5,30,\"AA\",\"2243\",\"JFK\",\"MIA\",-3.00,-26.00,0.00,\"\",0.00,158.00,139.00,1089.00,,,,,,\n2015,5,31,\"AA\",\"2243\",\"JFK\",\"MIA\",-3.00,-16.00,0.00,\"\",0.00,168.00,141.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"2254\",\"MIA\",\"JFK\",63.00,59.00,0.00,\"\",0.00,176.00,151.00,1089.00,0.00,0.00,0.00,0.00,59.00,\n2015,5,8,\"AA\",\"2254\",\"MIA\",\"JFK\",61.00,65.00,0.00,\"\",0.00,184.00,157.00,1089.00,6.00,0.00,4.00,0.00,55.00,\n2015,5,9,\"AA\",\"2254\",\"MIA\",\"JFK\",93.00,82.00,0.00,\"\",0.00,169.00,149.00,1089.00,56.00,0.00,0.00,0.00,26.00,\n2015,5,10,\"AA\",\"2254\",\"MIA\",\"JFK\",53.00,88.00,0.00,\"\",0.00,215.00,180.00,1089.00,0.00,0.00,88.00,0.00,0.00,\n2015,5,11,\"AA\",\"2254\",\"MIA\",\"JFK\",16.00,43.00,0.00,\"\",0.00,207.00,181.00,1089.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,12,\"AA\",\"2254\",\"MIA\",\"JFK\",-3.00,7.00,0.00,\"\",0.00,190.00,147.00,1089.00,,,,,,\n2015,5,13,\"AA\",\"2254\",\"MIA\",\"JFK\",165.00,162.00,0.00,\"\",0.00,177.00,151.00,1089.00,162.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"AA\",\"2254\",\"MIA\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,165.00,147.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"2254\",\"MIA\",\"JFK\",41.00,51.00,0.00,\"\",0.00,190.00,153.00,1089.00,1.00,0.00,10.00,0.00,40.00,\n2015,5,16,\"AA\",\"2254\",\"MIA\",\"JFK\",-1.00,23.00,0.00,\"\",0.00,204.00,171.00,1089.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,17,\"AA\",\"2254\",\"MIA\",\"JFK\",23.00,17.00,0.00,\"\",0.00,174.00,150.00,1089.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"AA\",\"2254\",\"MIA\",\"JFK\",44.00,102.00,0.00,\"\",0.00,238.00,178.00,1089.00,0.00,0.00,102.00,0.00,0.00,\n2015,5,19,\"AA\",\"2254\",\"MIA\",\"JFK\",-3.00,2.00,0.00,\"\",0.00,185.00,154.00,1089.00,,,,,,\n2015,5,20,\"AA\",\"2254\",\"MIA\",\"JFK\",2.00,-3.00,0.00,\"\",0.00,175.00,145.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"2254\",\"MIA\",\"JFK\",138.00,133.00,0.00,\"\",0.00,175.00,139.00,1089.00,133.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"AA\",\"2254\",\"MIA\",\"JFK\",-9.00,-7.00,0.00,\"\",0.00,182.00,142.00,1089.00,,,,,,\n2015,5,23,\"AA\",\"2254\",\"MIA\",\"JFK\",11.00,5.00,0.00,\"\",0.00,174.00,149.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"2254\",\"MIA\",\"JFK\",-14.00,-12.00,0.00,\"\",0.00,182.00,148.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"2254\",\"MIA\",\"JFK\",1.00,-22.00,0.00,\"\",0.00,157.00,138.00,1089.00,,,,,,\n2015,5,26,\"AA\",\"2254\",\"MIA\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,168.00,143.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"2254\",\"MIA\",\"JFK\",96.00,97.00,0.00,\"\",0.00,181.00,139.00,1089.00,0.00,0.00,97.00,0.00,0.00,\n2015,5,28,\"AA\",\"2254\",\"MIA\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,172.00,143.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"2254\",\"MIA\",\"JFK\",14.00,4.00,0.00,\"\",0.00,170.00,147.00,1089.00,,,,,,\n2015,5,30,\"AA\",\"2254\",\"MIA\",\"JFK\",12.00,24.00,0.00,\"\",0.00,192.00,152.00,1089.00,12.00,0.00,12.00,0.00,0.00,\n2015,5,31,\"AA\",\"2254\",\"MIA\",\"JFK\",127.00,122.00,0.00,\"\",0.00,175.00,148.00,1089.00,0.00,0.00,122.00,0.00,0.00,\n2015,5,1,\"AA\",\"2262\",\"MIA\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,161.00,136.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"2262\",\"MIA\",\"JFK\",94.00,75.00,0.00,\"\",0.00,163.00,134.00,1089.00,17.00,0.00,0.00,0.00,58.00,\n2015,5,3,\"AA\",\"2262\",\"MIA\",\"JFK\",0.00,-24.00,0.00,\"\",0.00,158.00,136.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"2262\",\"MIA\",\"JFK\",72.00,64.00,0.00,\"\",0.00,174.00,139.00,1089.00,0.00,0.00,0.00,0.00,64.00,\n2015,5,5,\"AA\",\"2262\",\"MIA\",\"JFK\",2.00,-14.00,0.00,\"\",0.00,166.00,137.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"2262\",\"MIA\",\"JFK\",6.00,-4.00,0.00,\"\",0.00,172.00,145.00,1089.00,,,,,,\n2015,5,1,\"AA\",\"2351\",\"JFK\",\"MIA\",13.00,4.00,0.00,\"\",0.00,189.00,156.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"2351\",\"JFK\",\"MIA\",17.00,5.00,0.00,\"\",0.00,186.00,146.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"2351\",\"JFK\",\"MIA\",1.00,-31.00,0.00,\"\",0.00,166.00,144.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"2351\",\"JFK\",\"MIA\",242.00,223.00,0.00,\"\",0.00,179.00,149.00,1089.00,223.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"AA\",\"2351\",\"JFK\",\"MIA\",1.00,-27.00,0.00,\"\",0.00,170.00,141.00,1089.00,,,,,,\n2015,5,6,\"AA\",\"2351\",\"JFK\",\"MIA\",-4.00,-29.00,0.00,\"\",0.00,173.00,147.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"2351\",\"JFK\",\"MIA\",74.00,44.00,0.00,\"\",0.00,169.00,144.00,1089.00,4.00,0.00,0.00,0.00,40.00,\n2015,5,8,\"AA\",\"2351\",\"JFK\",\"MIA\",-4.00,-22.00,0.00,\"\",0.00,181.00,141.00,1089.00,,,,,,\n2015,5,9,\"AA\",\"2351\",\"JFK\",\"MIA\",-4.00,-23.00,0.00,\"\",0.00,180.00,148.00,1089.00,,,,,,\n2015,5,10,\"AA\",\"2351\",\"JFK\",\"MIA\",122.00,93.00,0.00,\"\",0.00,170.00,151.00,1089.00,56.00,0.00,0.00,0.00,37.00,\n2015,5,11,\"AA\",\"2351\",\"JFK\",\"MIA\",-5.00,-12.00,0.00,\"\",0.00,192.00,149.00,1089.00,,,,,,\n2015,5,12,\"AA\",\"2351\",\"JFK\",\"MIA\",2.00,-23.00,0.00,\"\",0.00,174.00,153.00,1089.00,,,,,,\n2015,5,13,\"AA\",\"2351\",\"JFK\",\"MIA\",12.00,-13.00,0.00,\"\",0.00,174.00,141.00,1089.00,,,,,,\n2015,5,14,\"AA\",\"2351\",\"JFK\",\"MIA\",3.00,-14.00,0.00,\"\",0.00,182.00,154.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"2351\",\"JFK\",\"MIA\",0.00,-12.00,0.00,\"\",0.00,187.00,142.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"2351\",\"JFK\",\"MIA\",21.00,-3.00,0.00,\"\",0.00,175.00,144.00,1089.00,,,,,,\n2015,5,17,\"AA\",\"2351\",\"JFK\",\"MIA\",1.00,6.00,0.00,\"\",0.00,204.00,158.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"2351\",\"JFK\",\"MIA\",5.00,16.00,0.00,\"\",0.00,210.00,142.00,1089.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,19,\"AA\",\"2351\",\"JFK\",\"MIA\",47.00,61.00,0.00,\"\",0.00,213.00,154.00,1089.00,0.00,0.00,15.00,0.00,46.00,\n2015,5,20,\"AA\",\"2351\",\"JFK\",\"MIA\",0.00,-22.00,0.00,\"\",0.00,177.00,151.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"2351\",\"JFK\",\"MIA\",78.00,71.00,0.00,\"\",0.00,192.00,163.00,1089.00,3.00,0.00,0.00,0.00,68.00,\n2015,5,22,\"AA\",\"2351\",\"JFK\",\"MIA\",70.00,46.00,0.00,\"\",0.00,175.00,142.00,1089.00,46.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"AA\",\"2351\",\"JFK\",\"MIA\",26.00,2.00,0.00,\"\",0.00,175.00,141.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"2351\",\"JFK\",\"MIA\",-4.00,-38.00,0.00,\"\",0.00,165.00,136.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"2351\",\"JFK\",\"MIA\",32.00,23.00,0.00,\"\",0.00,190.00,150.00,1089.00,8.00,0.00,0.00,0.00,15.00,\n2015,5,26,\"AA\",\"2351\",\"JFK\",\"MIA\",-7.00,-27.00,0.00,\"\",0.00,179.00,146.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"2351\",\"JFK\",\"MIA\",257.00,225.00,0.00,\"\",0.00,167.00,144.00,1089.00,82.00,0.00,0.00,0.00,143.00,\n2015,5,28,\"AA\",\"2351\",\"JFK\",\"MIA\",36.00,29.00,0.00,\"\",0.00,192.00,144.00,1089.00,21.00,0.00,0.00,0.00,8.00,\n2015,5,29,\"AA\",\"2351\",\"JFK\",\"MIA\",59.00,35.00,0.00,\"\",0.00,175.00,143.00,1089.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"AA\",\"2351\",\"JFK\",\"MIA\",-2.00,-25.00,0.00,\"\",0.00,176.00,140.00,1089.00,,,,,,\n2015,5,31,\"AA\",\"2351\",\"JFK\",\"MIA\",836.00,865.00,0.00,\"\",0.00,228.00,159.00,1089.00,806.00,0.00,29.00,0.00,30.00,\n2015,5,1,\"AA\",\"2325\",\"MIA\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,161.00,140.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"2325\",\"MIA\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,164.00,145.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"2325\",\"MIA\",\"LGA\",5.00,38.00,0.00,\"\",0.00,209.00,141.00,1096.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,4,\"AA\",\"2325\",\"MIA\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,162.00,135.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"2325\",\"MIA\",\"LGA\",10.00,-6.00,0.00,\"\",0.00,160.00,139.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"2325\",\"MIA\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,169.00,149.00,1096.00,,,,,,\n2015,5,7,\"AA\",\"2325\",\"MIA\",\"LGA\",18.00,28.00,0.00,\"\",0.00,186.00,155.00,1096.00,4.00,0.00,10.00,0.00,14.00,\n2015,5,8,\"AA\",\"2325\",\"MIA\",\"LGA\",112.00,,0.00,\"\",1.00,,,1096.00,,,,,,\n2015,5,9,\"AA\",\"2325\",\"MIA\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,176.00,159.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"2325\",\"MIA\",\"LGA\",8.00,-5.00,0.00,\"\",0.00,163.00,150.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"2325\",\"MIA\",\"LGA\",-2.00,18.00,0.00,\"\",0.00,196.00,178.00,1096.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,12,\"AA\",\"2325\",\"MIA\",\"LGA\",4.00,-10.00,0.00,\"\",0.00,162.00,144.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"2325\",\"MIA\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,175.00,156.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"2325\",\"MIA\",\"LGA\",2.00,-7.00,0.00,\"\",0.00,167.00,146.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"2325\",\"MIA\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,163.00,142.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"2325\",\"MIA\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,156.00,140.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"2325\",\"MIA\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,167.00,151.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"2325\",\"MIA\",\"LGA\",-4.00,6.00,0.00,\"\",0.00,186.00,156.00,1096.00,,,,,,\n2015,5,19,\"AA\",\"2325\",\"MIA\",\"LGA\",15.00,19.00,0.00,\"\",0.00,180.00,146.00,1096.00,15.00,0.00,4.00,0.00,0.00,\n2015,5,20,\"AA\",\"2325\",\"MIA\",\"LGA\",-6.00,-26.00,0.00,\"\",0.00,156.00,137.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"2325\",\"MIA\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,155.00,140.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"2325\",\"MIA\",\"LGA\",27.00,8.00,0.00,\"\",0.00,157.00,140.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"2325\",\"MIA\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,176.00,154.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"2325\",\"MIA\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,164.00,149.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"2325\",\"MIA\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,171.00,149.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"2325\",\"MIA\",\"LGA\",1.00,-15.00,0.00,\"\",0.00,160.00,146.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"2325\",\"MIA\",\"LGA\",67.00,91.00,0.00,\"\",0.00,200.00,148.00,1096.00,0.00,0.00,91.00,0.00,0.00,\n2015,5,28,\"AA\",\"2325\",\"MIA\",\"LGA\",3.00,-10.00,0.00,\"\",0.00,163.00,145.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"2325\",\"MIA\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,173.00,152.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"2325\",\"MIA\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,163.00,149.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"2325\",\"MIA\",\"LGA\",189.00,191.00,0.00,\"\",0.00,178.00,154.00,1096.00,187.00,0.00,2.00,0.00,2.00,\n2015,5,16,\"AA\",\"2445\",\"JFK\",\"MCO\",0.00,-20.00,0.00,\"\",0.00,156.00,124.00,944.00,,,,,,\n2015,5,17,\"AA\",\"2445\",\"JFK\",\"MCO\",2.00,-9.00,0.00,\"\",0.00,165.00,127.00,944.00,,,,,,\n2015,5,18,\"AA\",\"2445\",\"JFK\",\"MCO\",-4.00,-27.00,0.00,\"\",0.00,153.00,123.00,944.00,,,,,,\n2015,5,19,\"AA\",\"2445\",\"JFK\",\"MCO\",0.00,-18.00,0.00,\"\",0.00,158.00,130.00,944.00,,,,,,\n2015,5,20,\"AA\",\"2445\",\"JFK\",\"MCO\",-3.00,-23.00,0.00,\"\",0.00,156.00,125.00,944.00,,,,,,\n2015,5,21,\"AA\",\"2445\",\"JFK\",\"MCO\",0.00,-19.00,0.00,\"\",0.00,157.00,138.00,944.00,,,,,,\n2015,5,22,\"AA\",\"2445\",\"JFK\",\"MCO\",9.00,-7.00,0.00,\"\",0.00,160.00,137.00,944.00,,,,,,\n2015,5,23,\"AA\",\"2445\",\"JFK\",\"MCO\",-4.00,-20.00,0.00,\"\",0.00,160.00,132.00,944.00,,,,,,\n2015,5,24,\"AA\",\"2445\",\"JFK\",\"MCO\",-4.00,-31.00,0.00,\"\",0.00,149.00,123.00,944.00,,,,,,\n2015,5,25,\"AA\",\"2445\",\"JFK\",\"MCO\",-5.00,-23.00,0.00,\"\",0.00,158.00,124.00,944.00,,,,,,\n2015,5,26,\"AA\",\"2445\",\"JFK\",\"MCO\",-1.00,-28.00,0.00,\"\",0.00,149.00,128.00,944.00,,,,,,\n2015,5,27,\"AA\",\"2445\",\"JFK\",\"MCO\",-7.00,-25.00,0.00,\"\",0.00,158.00,129.00,944.00,,,,,,\n2015,5,28,\"AA\",\"2445\",\"JFK\",\"MCO\",-5.00,-17.00,0.00,\"\",0.00,164.00,133.00,944.00,,,,,,\n2015,5,29,\"AA\",\"2445\",\"JFK\",\"MCO\",-4.00,-21.00,0.00,\"\",0.00,159.00,128.00,944.00,,,,,,\n2015,5,30,\"AA\",\"2445\",\"JFK\",\"MCO\",-4.00,-25.00,0.00,\"\",0.00,155.00,127.00,944.00,,,,,,\n2015,5,31,\"AA\",\"2445\",\"JFK\",\"MCO\",-7.00,-37.00,0.00,\"\",0.00,146.00,125.00,944.00,,,,,,\n2015,5,1,\"AA\",\"2445\",\"MCO\",\"JFK\",18.00,-5.00,0.00,\"\",0.00,135.00,117.00,944.00,,,,,,\n2015,5,2,\"AA\",\"2445\",\"MCO\",\"JFK\",-8.00,-5.00,0.00,\"\",0.00,161.00,134.00,944.00,,,,,,\n2015,5,3,\"AA\",\"2445\",\"MCO\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,150.00,129.00,944.00,,,,,,\n2015,5,4,\"AA\",\"2445\",\"MCO\",\"JFK\",3.00,-11.00,0.00,\"\",0.00,144.00,126.00,944.00,,,,,,\n2015,5,5,\"AA\",\"2445\",\"MCO\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,141.00,124.00,944.00,,,,,,\n2015,5,6,\"AA\",\"2445\",\"MCO\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,141.00,122.00,944.00,,,,,,\n2015,5,1,\"AA\",\"2314\",\"JFK\",\"BOS\",-2.00,-10.00,0.00,\"\",0.00,64.00,34.00,187.00,,,,,,\n2015,5,2,\"AA\",\"2314\",\"JFK\",\"BOS\",-6.00,-9.00,0.00,\"\",0.00,69.00,38.00,187.00,,,,,,\n2015,5,3,\"AA\",\"2314\",\"JFK\",\"BOS\",8.00,-3.00,0.00,\"\",0.00,61.00,42.00,187.00,,,,,,\n2015,5,4,\"AA\",\"2314\",\"JFK\",\"BOS\",25.00,14.00,0.00,\"\",0.00,61.00,39.00,187.00,,,,,,\n2015,5,5,\"AA\",\"2314\",\"JFK\",\"BOS\",-2.00,-10.00,0.00,\"\",0.00,64.00,32.00,187.00,,,,,,\n2015,5,6,\"AA\",\"2314\",\"JFK\",\"BOS\",-5.00,-2.00,0.00,\"\",0.00,75.00,43.00,187.00,,,,,,\n2015,5,1,\"AA\",\"2382\",\"JFK\",\"MIA\",3.00,-7.00,0.00,\"\",0.00,184.00,155.00,1089.00,,,,,,\n2015,5,2,\"AA\",\"2382\",\"JFK\",\"MIA\",-5.00,-8.00,0.00,\"\",0.00,191.00,150.00,1089.00,,,,,,\n2015,5,3,\"AA\",\"2382\",\"JFK\",\"MIA\",-7.00,-23.00,0.00,\"\",0.00,178.00,147.00,1089.00,,,,,,\n2015,5,4,\"AA\",\"2382\",\"JFK\",\"MIA\",61.00,41.00,0.00,\"\",0.00,174.00,143.00,1089.00,14.00,0.00,0.00,0.00,27.00,\n2015,5,5,\"AA\",\"2382\",\"JFK\",\"MIA\",1.00,15.00,0.00,\"\",0.00,208.00,158.00,1089.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,6,\"AA\",\"2382\",\"JFK\",\"MIA\",10.00,-4.00,0.00,\"\",0.00,180.00,151.00,1089.00,,,,,,\n2015,5,7,\"AA\",\"2382\",\"JFK\",\"MIA\",-6.00,-34.00,0.00,\"\",0.00,166.00,142.00,1089.00,,,,,,\n2015,5,8,\"AA\",\"2382\",\"JFK\",\"MIA\",1.00,10.00,0.00,\"\",0.00,203.00,141.00,1089.00,,,,,,\n2015,5,9,\"AA\",\"2382\",\"JFK\",\"MIA\",-2.00,16.00,0.00,\"\",0.00,212.00,142.00,1089.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,10,\"AA\",\"2382\",\"JFK\",\"MIA\",-2.00,-8.00,0.00,\"\",0.00,188.00,149.00,1089.00,,,,,,\n2015,5,11,\"AA\",\"2382\",\"JFK\",\"MIA\",0.00,-6.00,0.00,\"\",0.00,188.00,149.00,1089.00,,,,,,\n2015,5,12,\"AA\",\"2382\",\"JFK\",\"MIA\",-7.00,-17.00,0.00,\"\",0.00,184.00,164.00,1089.00,,,,,,\n2015,5,13,\"AA\",\"2382\",\"JFK\",\"MIA\",-4.00,13.00,0.00,\"\",0.00,211.00,168.00,1089.00,,,,,,\n2015,5,14,\"AA\",\"2382\",\"JFK\",\"MIA\",7.00,-2.00,0.00,\"\",0.00,185.00,152.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"2382\",\"JFK\",\"MIA\",-3.00,-13.00,0.00,\"\",0.00,184.00,146.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"2382\",\"JFK\",\"MIA\",-3.00,-27.00,0.00,\"\",0.00,170.00,143.00,1089.00,,,,,,\n2015,5,17,\"AA\",\"2382\",\"JFK\",\"MIA\",1.00,-19.00,0.00,\"\",0.00,174.00,146.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"2382\",\"JFK\",\"MIA\",-2.00,-15.00,0.00,\"\",0.00,181.00,141.00,1089.00,,,,,,\n2015,5,19,\"AA\",\"2382\",\"JFK\",\"MIA\",-5.00,2.00,0.00,\"\",0.00,201.00,157.00,1089.00,,,,,,\n2015,5,20,\"AA\",\"2382\",\"JFK\",\"MIA\",11.00,5.00,0.00,\"\",0.00,188.00,148.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"2382\",\"JFK\",\"MIA\",24.00,32.00,0.00,\"\",0.00,202.00,151.00,1089.00,24.00,0.00,8.00,0.00,0.00,\n2015,5,22,\"AA\",\"2382\",\"JFK\",\"MIA\",17.00,9.00,0.00,\"\",0.00,186.00,140.00,1089.00,,,,,,\n2015,5,23,\"AA\",\"2382\",\"JFK\",\"MIA\",2.00,-11.00,0.00,\"\",0.00,181.00,141.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"2382\",\"JFK\",\"MIA\",-6.00,-25.00,0.00,\"\",0.00,175.00,141.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"2382\",\"JFK\",\"MIA\",-2.00,-12.00,0.00,\"\",0.00,184.00,148.00,1089.00,,,,,,\n2015,5,26,\"AA\",\"2382\",\"JFK\",\"MIA\",11.00,-10.00,0.00,\"\",0.00,173.00,142.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"2382\",\"JFK\",\"MIA\",-2.00,6.00,0.00,\"\",0.00,202.00,141.00,1089.00,,,,,,\n2015,5,28,\"AA\",\"2382\",\"JFK\",\"MIA\",-5.00,1.00,0.00,\"\",0.00,200.00,141.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"2382\",\"JFK\",\"MIA\",-2.00,-19.00,0.00,\"\",0.00,177.00,138.00,1089.00,,,,,,\n2015,5,30,\"AA\",\"2382\",\"JFK\",\"MIA\",-3.00,19.00,0.00,\"\",0.00,216.00,144.00,1089.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,31,\"AA\",\"2382\",\"JFK\",\"MIA\",1.00,15.00,0.00,\"\",0.00,208.00,140.00,1089.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,7,\"AA\",\"2415\",\"MIA\",\"LGA\",12.00,34.00,0.00,\"\",0.00,200.00,158.00,1096.00,12.00,0.00,22.00,0.00,0.00,\n2015,5,8,\"AA\",\"2415\",\"MIA\",\"LGA\",68.00,82.00,0.00,\"\",0.00,192.00,156.00,1096.00,0.00,0.00,14.00,0.00,68.00,\n2015,5,9,\"AA\",\"2415\",\"MIA\",\"LGA\",45.00,46.00,0.00,\"\",0.00,179.00,159.00,1096.00,45.00,0.00,1.00,0.00,0.00,\n2015,5,10,\"AA\",\"2415\",\"MIA\",\"LGA\",0.00,23.00,0.00,\"\",0.00,201.00,179.00,1096.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,11,\"AA\",\"2415\",\"MIA\",\"LGA\",3.00,8.00,0.00,\"\",0.00,183.00,151.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"2415\",\"MIA\",\"LGA\",1.00,-15.00,0.00,\"\",0.00,162.00,144.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"2415\",\"MIA\",\"LGA\",10.00,7.00,0.00,\"\",0.00,175.00,158.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"2415\",\"MIA\",\"LGA\",20.00,25.00,0.00,\"\",0.00,183.00,161.00,1096.00,2.00,0.00,5.00,0.00,18.00,\n2015,5,15,\"AA\",\"2415\",\"MIA\",\"LGA\",3.00,0.00,0.00,\"\",0.00,175.00,148.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"2415\",\"MIA\",\"LGA\",8.00,16.00,0.00,\"\",0.00,186.00,155.00,1096.00,8.00,0.00,8.00,0.00,0.00,\n2015,5,17,\"AA\",\"2415\",\"MIA\",\"LGA\",6.00,12.00,0.00,\"\",0.00,184.00,151.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"2415\",\"MIA\",\"LGA\",29.00,47.00,0.00,\"\",0.00,196.00,163.00,1096.00,0.00,0.00,24.00,0.00,23.00,\n2015,5,19,\"AA\",\"2415\",\"MIA\",\"LGA\",47.00,50.00,0.00,\"\",0.00,181.00,150.00,1096.00,0.00,0.00,3.00,0.00,47.00,\n2015,5,20,\"AA\",\"2415\",\"MIA\",\"LGA\",0.00,4.00,0.00,\"\",0.00,182.00,142.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"2415\",\"MIA\",\"LGA\",101.00,91.00,0.00,\"\",0.00,168.00,146.00,1096.00,91.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"AA\",\"2415\",\"MIA\",\"LGA\",,,1.00,\"A\",0.00,,,1096.00,,,,,,\n2015,5,23,\"AA\",\"2415\",\"MIA\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,171.00,151.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"2415\",\"MIA\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,174.00,149.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"2415\",\"MIA\",\"LGA\",4.00,-13.00,0.00,\"\",0.00,161.00,146.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"2415\",\"MIA\",\"LGA\",21.00,-2.00,0.00,\"\",0.00,155.00,142.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"2415\",\"MIA\",\"LGA\",147.00,142.00,0.00,\"\",0.00,173.00,145.00,1096.00,108.00,0.00,0.00,0.00,34.00,\n2015,5,28,\"AA\",\"2415\",\"MIA\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,167.00,142.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"2415\",\"MIA\",\"LGA\",5.00,-5.00,0.00,\"\",0.00,168.00,148.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"2415\",\"MIA\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,175.00,150.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"2415\",\"MIA\",\"LGA\",53.00,87.00,0.00,\"\",0.00,212.00,159.00,1096.00,0.00,0.00,87.00,0.00,0.00,\n2015,5,1,\"AA\",\"2438\",\"MIA\",\"LGA\",3.00,-2.00,0.00,\"\",0.00,173.00,143.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"2438\",\"MIA\",\"LGA\",105.00,98.00,0.00,\"\",0.00,171.00,145.00,1096.00,43.00,0.00,0.00,0.00,55.00,\n2015,5,3,\"AA\",\"2438\",\"MIA\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,171.00,144.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"2438\",\"MIA\",\"LGA\",17.00,-8.00,0.00,\"\",0.00,153.00,139.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"2438\",\"MIA\",\"LGA\",4.00,-18.00,0.00,\"\",0.00,156.00,142.00,1096.00,,,,,,\n2015,5,6,\"AA\",\"2438\",\"MIA\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,166.00,148.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"2445\",\"JFK\",\"MCO\",-2.00,-19.00,0.00,\"\",0.00,159.00,139.00,944.00,,,,,,\n2015,5,2,\"AA\",\"2445\",\"JFK\",\"MCO\",-5.00,-19.00,0.00,\"\",0.00,162.00,131.00,944.00,,,,,,\n2015,5,3,\"AA\",\"2445\",\"JFK\",\"MCO\",-7.00,-26.00,0.00,\"\",0.00,157.00,129.00,944.00,,,,,,\n2015,5,4,\"AA\",\"2445\",\"JFK\",\"MCO\",-7.00,-28.00,0.00,\"\",0.00,155.00,131.00,944.00,,,,,,\n2015,5,5,\"AA\",\"2445\",\"JFK\",\"MCO\",-4.00,-19.00,0.00,\"\",0.00,161.00,140.00,944.00,,,,,,\n2015,5,6,\"AA\",\"2445\",\"JFK\",\"MCO\",9.00,-2.00,0.00,\"\",0.00,165.00,141.00,944.00,,,,,,\n2015,5,7,\"AA\",\"2445\",\"JFK\",\"MCO\",-6.00,-12.00,0.00,\"\",0.00,170.00,133.00,944.00,,,,,,\n2015,5,8,\"AA\",\"2445\",\"JFK\",\"MCO\",-3.00,-17.00,0.00,\"\",0.00,162.00,127.00,944.00,,,,,,\n2015,5,9,\"AA\",\"2445\",\"JFK\",\"MCO\",-2.00,-29.00,0.00,\"\",0.00,149.00,120.00,944.00,,,,,,\n2015,5,10,\"AA\",\"2445\",\"JFK\",\"MCO\",22.00,0.00,0.00,\"\",0.00,154.00,126.00,944.00,,,,,,\n2015,5,11,\"AA\",\"2445\",\"JFK\",\"MCO\",-6.00,-26.00,0.00,\"\",0.00,156.00,130.00,944.00,,,,,,\n2015,5,12,\"AA\",\"2445\",\"JFK\",\"MCO\",-4.00,0.00,0.00,\"\",0.00,180.00,134.00,944.00,,,,,,\n2015,5,13,\"AA\",\"2445\",\"JFK\",\"MCO\",-6.00,-17.00,0.00,\"\",0.00,165.00,140.00,944.00,,,,,,\n2015,5,14,\"AA\",\"2445\",\"JFK\",\"MCO\",-1.00,-24.00,0.00,\"\",0.00,153.00,126.00,944.00,,,,,,\n2015,5,15,\"AA\",\"2445\",\"JFK\",\"MCO\",-1.00,2.00,0.00,\"\",0.00,179.00,143.00,944.00,,,,,,\n2015,5,10,\"AA\",\"1133\",\"MIA\",\"LGA\",-3.00,6.00,0.00,\"\",0.00,186.00,162.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"1133\",\"MIA\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,168.00,151.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"1133\",\"MIA\",\"LGA\",5.00,1.00,0.00,\"\",0.00,173.00,151.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"1133\",\"MIA\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,163.00,144.00,1096.00,,,,,,\n2015,5,14,\"AA\",\"1133\",\"MIA\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,181.00,163.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"1133\",\"MIA\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,173.00,148.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"1133\",\"MIA\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,174.00,155.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"1133\",\"MIA\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,169.00,155.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"1133\",\"MIA\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,177.00,158.00,1096.00,,,,,,\n2015,5,19,\"AA\",\"1133\",\"MIA\",\"LGA\",-8.00,69.00,0.00,\"\",0.00,254.00,149.00,1096.00,0.00,0.00,69.00,0.00,0.00,\n2015,5,20,\"AA\",\"1133\",\"MIA\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,162.00,145.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"1133\",\"MIA\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,168.00,147.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"1133\",\"MIA\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,164.00,145.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"1133\",\"MIA\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,157.00,141.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"1133\",\"MIA\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,164.00,147.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"1133\",\"MIA\",\"LGA\",-4.00,-26.00,0.00,\"\",0.00,155.00,143.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"1133\",\"MIA\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,158.00,144.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"1133\",\"MIA\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,171.00,148.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"1133\",\"MIA\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,164.00,146.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"1133\",\"MIA\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,167.00,153.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"1133\",\"MIA\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,165.00,147.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"1133\",\"MIA\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,160.00,144.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"1134\",\"DFW\",\"LGA\",3.00,-6.00,0.00,\"\",0.00,205.00,189.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1134\",\"DFW\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,202.00,186.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1134\",\"DFW\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,206.00,186.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1134\",\"DFW\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,208.00,187.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1134\",\"DFW\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,203.00,180.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1134\",\"DFW\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,211.00,187.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1134\",\"DFW\",\"LGA\",2.00,-5.00,0.00,\"\",0.00,207.00,184.00,1389.00,,,,,,\n2015,5,10,\"AA\",\"1134\",\"DFW\",\"LGA\",101.00,90.00,0.00,\"\",0.00,203.00,178.00,1389.00,0.00,81.00,0.00,0.00,9.00,\n2015,5,11,\"AA\",\"1134\",\"DFW\",\"LGA\",40.00,44.00,0.00,\"\",0.00,218.00,198.00,1389.00,33.00,0.00,4.00,0.00,7.00,\n2015,5,12,\"AA\",\"1134\",\"DFW\",\"LGA\",8.00,-16.00,0.00,\"\",0.00,190.00,166.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1134\",\"DFW\",\"LGA\",-8.00,-29.00,0.00,\"\",0.00,193.00,172.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1134\",\"DFW\",\"LGA\",4.00,-6.00,0.00,\"\",0.00,204.00,178.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1134\",\"DFW\",\"LGA\",13.00,7.00,0.00,\"\",0.00,208.00,178.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1134\",\"DFW\",\"LGA\",16.00,-8.00,0.00,\"\",0.00,190.00,174.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1134\",\"DFW\",\"LGA\",2.00,48.00,0.00,\"\",0.00,260.00,172.00,1389.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,19,\"AA\",\"1134\",\"DFW\",\"LGA\",134.00,115.00,0.00,\"\",0.00,195.00,174.00,1389.00,115.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"AA\",\"1134\",\"DFW\",\"LGA\",6.00,-29.00,0.00,\"\",0.00,179.00,166.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1134\",\"DFW\",\"LGA\",7.00,-11.00,0.00,\"\",0.00,196.00,166.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1134\",\"DFW\",\"LGA\",-2.00,-33.00,0.00,\"\",0.00,183.00,162.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1134\",\"DFW\",\"LGA\",4.00,-6.00,0.00,\"\",0.00,204.00,178.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1134\",\"DFW\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,197.00,176.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1134\",\"DFW\",\"LGA\",34.00,30.00,0.00,\"\",0.00,210.00,177.00,1389.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"AA\",\"1134\",\"DFW\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,211.00,184.00,1389.00,,,,,,\n2015,5,28,\"AA\",\"1134\",\"DFW\",\"LGA\",116.00,141.00,0.00,\"\",0.00,239.00,190.00,1389.00,45.00,0.00,25.00,0.00,71.00,\n2015,5,29,\"AA\",\"1134\",\"DFW\",\"LGA\",28.00,26.00,0.00,\"\",0.00,212.00,184.00,1389.00,7.00,0.00,0.00,0.00,19.00,\n2015,5,31,\"AA\",\"1134\",\"DFW\",\"LGA\",21.00,-2.00,0.00,\"\",0.00,191.00,174.00,1389.00,,,,,,\n2015,5,1,\"AA\",\"1134\",\"LGA\",\"DFW\",19.00,-16.00,0.00,\"\",0.00,214.00,179.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1134\",\"LGA\",\"DFW\",-3.00,-21.00,0.00,\"\",0.00,231.00,184.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1134\",\"LGA\",\"DFW\",-7.00,-39.00,0.00,\"\",0.00,217.00,181.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1134\",\"LGA\",\"DFW\",-10.00,-40.00,0.00,\"\",0.00,219.00,187.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1134\",\"LGA\",\"DFW\",-6.00,-4.00,0.00,\"\",0.00,251.00,184.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1134\",\"LGA\",\"DFW\",1.00,-13.00,0.00,\"\",0.00,235.00,207.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1134\",\"LGA\",\"DFW\",15.00,5.00,0.00,\"\",0.00,239.00,203.00,1389.00,,,,,,\n2015,5,10,\"AA\",\"1134\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1134\",\"LGA\",\"DFW\",22.00,40.00,0.00,\"\",0.00,267.00,200.00,1389.00,0.00,0.00,18.00,0.00,22.00,\n2015,5,12,\"AA\",\"1134\",\"LGA\",\"DFW\",-4.00,-15.00,0.00,\"\",0.00,238.00,199.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1134\",\"LGA\",\"DFW\",24.00,13.00,0.00,\"\",0.00,238.00,203.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1134\",\"LGA\",\"DFW\",-6.00,-25.00,0.00,\"\",0.00,230.00,195.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1134\",\"LGA\",\"DFW\",-3.00,-31.00,0.00,\"\",0.00,221.00,187.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1134\",\"LGA\",\"DFW\",-7.00,-27.00,0.00,\"\",0.00,229.00,187.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1134\",\"LGA\",\"DFW\",20.00,-12.00,0.00,\"\",0.00,217.00,188.00,1389.00,,,,,,\n2015,5,19,\"AA\",\"1134\",\"LGA\",\"DFW\",93.00,103.00,0.00,\"\",0.00,259.00,213.00,1389.00,0.00,0.00,10.00,0.00,93.00,\n2015,5,20,\"AA\",\"1134\",\"LGA\",\"DFW\",99.00,116.00,0.00,\"\",0.00,266.00,201.00,1389.00,99.00,0.00,17.00,0.00,0.00,\n2015,5,21,\"AA\",\"1134\",\"LGA\",\"DFW\",-3.00,14.00,0.00,\"\",0.00,266.00,202.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1134\",\"LGA\",\"DFW\",2.00,-10.00,0.00,\"\",0.00,237.00,207.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1134\",\"LGA\",\"DFW\",-11.00,-4.00,0.00,\"\",0.00,256.00,221.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1134\",\"LGA\",\"DFW\",-8.00,12.00,0.00,\"\",0.00,269.00,233.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1134\",\"LGA\",\"DFW\",15.00,-4.00,0.00,\"\",0.00,230.00,201.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1134\",\"LGA\",\"DFW\",-3.00,50.00,0.00,\"\",0.00,302.00,202.00,1389.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,28,\"AA\",\"1134\",\"LGA\",\"DFW\",110.00,90.00,0.00,\"\",0.00,229.00,194.00,1389.00,0.00,0.00,0.00,0.00,90.00,\n2015,5,29,\"AA\",\"1134\",\"LGA\",\"DFW\",3.00,-17.00,0.00,\"\",0.00,229.00,190.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1134\",\"LGA\",\"DFW\",149.00,118.00,0.00,\"\",0.00,218.00,197.00,1389.00,0.00,118.00,0.00,0.00,0.00,\n2015,5,1,\"AA\",\"1138\",\"DFW\",\"LGA\",13.00,7.00,0.00,\"\",0.00,209.00,185.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1138\",\"DFW\",\"LGA\",126.00,111.00,0.00,\"\",0.00,200.00,180.00,1389.00,18.00,0.00,0.00,0.00,93.00,\n2015,5,3,\"AA\",\"1138\",\"DFW\",\"LGA\",0.00,1.00,0.00,\"\",0.00,216.00,190.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1138\",\"DFW\",\"LGA\",31.00,13.00,0.00,\"\",0.00,197.00,181.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1138\",\"DFW\",\"LGA\",37.00,23.00,0.00,\"\",0.00,201.00,180.00,1389.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"AA\",\"1138\",\"DFW\",\"LGA\",0.00,2.00,0.00,\"\",0.00,217.00,185.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1138\",\"DFW\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,202.00,187.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1138\",\"DFW\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,206.00,182.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1138\",\"DFW\",\"LGA\",103.00,102.00,0.00,\"\",0.00,214.00,190.00,1389.00,0.00,69.00,0.00,0.00,33.00,\n2015,5,10,\"AA\",\"1138\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1138\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,12,\"AA\",\"1138\",\"DFW\",\"LGA\",4.00,-20.00,0.00,\"\",0.00,191.00,167.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1138\",\"DFW\",\"LGA\",31.00,9.00,0.00,\"\",0.00,193.00,166.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1138\",\"DFW\",\"LGA\",,,1.00,\"A\",0.00,,,1389.00,,,,,,\n2015,5,15,\"AA\",\"1138\",\"DFW\",\"LGA\",-6.00,-28.00,0.00,\"\",0.00,193.00,175.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1138\",\"DFW\",\"LGA\",5.00,-18.00,0.00,\"\",0.00,192.00,172.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1138\",\"DFW\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,201.00,178.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1138\",\"DFW\",\"LGA\",3.00,62.00,0.00,\"\",0.00,274.00,205.00,1389.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,19,\"AA\",\"1138\",\"DFW\",\"LGA\",14.00,16.00,0.00,\"\",0.00,217.00,174.00,1389.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,20,\"AA\",\"1138\",\"DFW\",\"LGA\",7.00,-6.00,0.00,\"\",0.00,202.00,167.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1138\",\"DFW\",\"LGA\",15.00,-5.00,0.00,\"\",0.00,195.00,170.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1138\",\"DFW\",\"LGA\",1.00,-29.00,0.00,\"\",0.00,185.00,167.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1138\",\"DFW\",\"LGA\",-5.00,-35.00,0.00,\"\",0.00,185.00,167.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1138\",\"DFW\",\"LGA\",5.00,-1.00,0.00,\"\",0.00,209.00,176.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1138\",\"DFW\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,196.00,174.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1138\",\"DFW\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,201.00,177.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1138\",\"DFW\",\"LGA\",38.00,34.00,0.00,\"\",0.00,211.00,179.00,1389.00,24.00,0.00,0.00,0.00,10.00,\n2015,5,28,\"AA\",\"1138\",\"DFW\",\"LGA\",-2.00,10.00,0.00,\"\",0.00,227.00,186.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1138\",\"DFW\",\"LGA\",21.00,17.00,0.00,\"\",0.00,211.00,182.00,1389.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"AA\",\"1138\",\"DFW\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,215.00,187.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1138\",\"DFW\",\"LGA\",1.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,1,\"AA\",\"1138\",\"LGA\",\"DFW\",-2.00,-33.00,0.00,\"\",0.00,212.00,183.00,1389.00,,,,,,\n2015,5,2,\"AA\",\"1138\",\"LGA\",\"DFW\",91.00,49.00,0.00,\"\",0.00,201.00,182.00,1389.00,0.00,0.00,0.00,0.00,49.00,\n2015,5,3,\"AA\",\"1138\",\"LGA\",\"DFW\",-8.00,-56.00,0.00,\"\",0.00,195.00,180.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1138\",\"LGA\",\"DFW\",-3.00,-48.00,0.00,\"\",0.00,198.00,186.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1138\",\"LGA\",\"DFW\",-10.00,-40.00,0.00,\"\",0.00,213.00,185.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1138\",\"LGA\",\"DFW\",-11.00,-20.00,0.00,\"\",0.00,234.00,183.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1138\",\"LGA\",\"DFW\",-8.00,-30.00,0.00,\"\",0.00,221.00,198.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1138\",\"LGA\",\"DFW\",-2.00,-8.00,0.00,\"\",0.00,237.00,213.00,1389.00,,,,,,\n2015,5,9,\"AA\",\"1138\",\"LGA\",\"DFW\",87.00,54.00,0.00,\"\",0.00,210.00,188.00,1389.00,0.00,0.00,0.00,0.00,54.00,\n2015,5,10,\"AA\",\"1138\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1138\",\"LGA\",\"DFW\",81.00,76.00,0.00,\"\",0.00,238.00,205.00,1389.00,10.00,0.00,0.00,0.00,66.00,\n2015,5,12,\"AA\",\"1138\",\"LGA\",\"DFW\",-12.00,-11.00,0.00,\"\",0.00,244.00,206.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1138\",\"LGA\",\"DFW\",257.00,225.00,0.00,\"\",0.00,211.00,190.00,1389.00,0.00,0.00,0.00,0.00,225.00,\n2015,5,14,\"AA\",\"1138\",\"LGA\",\"DFW\",138.00,117.00,0.00,\"\",0.00,222.00,195.00,1389.00,7.00,0.00,0.00,0.00,110.00,\n2015,5,15,\"AA\",\"1138\",\"LGA\",\"DFW\",-8.00,-17.00,0.00,\"\",0.00,234.00,211.00,1389.00,,,,,,\n2015,5,16,\"AA\",\"1138\",\"LGA\",\"DFW\",-8.00,4.00,0.00,\"\",0.00,255.00,217.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1138\",\"LGA\",\"DFW\",5.00,-9.00,0.00,\"\",0.00,229.00,192.00,1389.00,,,,,,\n2015,5,18,\"AA\",\"1138\",\"LGA\",\"DFW\",45.00,32.00,0.00,\"\",0.00,230.00,196.00,1389.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,19,\"AA\",\"1138\",\"LGA\",\"DFW\",1.00,6.00,0.00,\"\",0.00,248.00,201.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1138\",\"LGA\",\"DFW\",16.00,40.00,0.00,\"\",0.00,267.00,200.00,1389.00,2.00,0.00,24.00,0.00,14.00,\n2015,5,21,\"AA\",\"1138\",\"LGA\",\"DFW\",-3.00,3.00,0.00,\"\",0.00,249.00,204.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1138\",\"LGA\",\"DFW\",2.00,-6.00,0.00,\"\",0.00,235.00,205.00,1389.00,,,,,,\n2015,5,23,\"AA\",\"1138\",\"LGA\",\"DFW\",-8.00,-35.00,0.00,\"\",0.00,216.00,193.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1138\",\"LGA\",\"DFW\",8.00,-28.00,0.00,\"\",0.00,207.00,188.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1138\",\"LGA\",\"DFW\",14.00,27.00,0.00,\"\",0.00,256.00,216.00,1389.00,0.00,14.00,13.00,0.00,0.00,\n2015,5,26,\"AA\",\"1138\",\"LGA\",\"DFW\",-5.00,-30.00,0.00,\"\",0.00,218.00,194.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1138\",\"LGA\",\"DFW\",-8.00,79.00,0.00,\"\",0.00,330.00,197.00,1389.00,0.00,0.00,79.00,0.00,0.00,\n2015,5,28,\"AA\",\"1138\",\"LGA\",\"DFW\",-2.00,-31.00,0.00,\"\",0.00,214.00,197.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1138\",\"LGA\",\"DFW\",0.00,-28.00,0.00,\"\",0.00,215.00,184.00,1389.00,,,,,,\n2015,5,30,\"AA\",\"1138\",\"LGA\",\"DFW\",-12.00,-30.00,0.00,\"\",0.00,225.00,189.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1138\",\"LGA\",\"DFW\",345.00,334.00,0.00,\"\",0.00,232.00,192.00,1389.00,0.00,126.00,0.00,0.00,208.00,\n2015,5,1,\"AA\",\"1140\",\"DFW\",\"LGA\",1.00,-1.00,0.00,\"\",0.00,204.00,190.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1140\",\"DFW\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,205.00,182.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1140\",\"DFW\",\"LGA\",40.00,37.00,0.00,\"\",0.00,203.00,176.00,1389.00,0.00,0.00,0.00,0.00,37.00,\n2015,5,5,\"AA\",\"1140\",\"DFW\",\"LGA\",-9.00,-12.00,0.00,\"\",0.00,203.00,182.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1140\",\"DFW\",\"LGA\",-6.00,6.00,0.00,\"\",0.00,218.00,183.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1140\",\"DFW\",\"LGA\",4.00,5.00,0.00,\"\",0.00,207.00,185.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1140\",\"DFW\",\"LGA\",24.00,12.00,0.00,\"\",0.00,194.00,175.00,1389.00,,,,,,\n2015,5,10,\"AA\",\"1140\",\"DFW\",\"LGA\",193.00,208.00,0.00,\"\",0.00,221.00,195.00,1389.00,0.00,36.00,15.00,0.00,157.00,\n2015,5,11,\"AA\",\"1140\",\"DFW\",\"LGA\",-1.00,-25.00,0.00,\"\",0.00,182.00,168.00,1389.00,,,,,,\n2015,5,12,\"AA\",\"1140\",\"DFW\",\"LGA\",10.00,-10.00,0.00,\"\",0.00,186.00,162.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1140\",\"DFW\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,201.00,171.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1140\",\"DFW\",\"LGA\",3.00,-5.00,0.00,\"\",0.00,198.00,178.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1140\",\"DFW\",\"LGA\",18.00,3.00,0.00,\"\",0.00,191.00,175.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1140\",\"DFW\",\"LGA\",103.00,87.00,0.00,\"\",0.00,190.00,177.00,1389.00,0.00,5.00,0.00,0.00,82.00,\n2015,5,18,\"AA\",\"1140\",\"DFW\",\"LGA\",41.00,99.00,0.00,\"\",0.00,264.00,214.00,1389.00,0.00,0.00,99.00,0.00,0.00,\n2015,5,19,\"AA\",\"1140\",\"DFW\",\"LGA\",11.00,-1.00,0.00,\"\",0.00,194.00,175.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1140\",\"DFW\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,191.00,169.00,1389.00,,,,,,\n2015,5,21,\"AA\",\"1140\",\"DFW\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,188.00,172.00,1389.00,,,,,,\n2015,5,22,\"AA\",\"1140\",\"DFW\",\"LGA\",35.00,16.00,0.00,\"\",0.00,187.00,172.00,1389.00,3.00,0.00,0.00,0.00,13.00,\n2015,5,24,\"AA\",\"1140\",\"DFW\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,191.00,177.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1140\",\"DFW\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,194.00,174.00,1389.00,,,,,,\n2015,5,26,\"AA\",\"1140\",\"DFW\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,201.00,178.00,1389.00,,,,,,\n2015,5,27,\"AA\",\"1140\",\"DFW\",\"LGA\",,,1.00,\"C\",0.00,,,1389.00,,,,,,\n2015,5,28,\"AA\",\"1140\",\"DFW\",\"LGA\",-3.00,26.00,0.00,\"\",0.00,235.00,191.00,1389.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,29,\"AA\",\"1140\",\"DFW\",\"LGA\",20.00,21.00,0.00,\"\",0.00,207.00,180.00,1389.00,15.00,0.00,1.00,0.00,5.00,\n2015,5,31,\"AA\",\"1140\",\"DFW\",\"LGA\",21.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,1,\"AA\",\"1140\",\"LGA\",\"DFW\",-8.00,-48.00,0.00,\"\",0.00,214.00,184.00,1389.00,,,,,,\n2015,5,3,\"AA\",\"1140\",\"LGA\",\"DFW\",-7.00,-48.00,0.00,\"\",0.00,213.00,182.00,1389.00,,,,,,\n2015,5,4,\"AA\",\"1140\",\"LGA\",\"DFW\",13.00,-35.00,0.00,\"\",0.00,206.00,179.00,1389.00,,,,,,\n2015,5,5,\"AA\",\"1140\",\"LGA\",\"DFW\",-6.00,-39.00,0.00,\"\",0.00,221.00,200.00,1389.00,,,,,,\n2015,5,6,\"AA\",\"1140\",\"LGA\",\"DFW\",-14.00,-31.00,0.00,\"\",0.00,237.00,180.00,1389.00,,,,,,\n2015,5,7,\"AA\",\"1140\",\"LGA\",\"DFW\",41.00,10.00,0.00,\"\",0.00,223.00,181.00,1389.00,,,,,,\n2015,5,8,\"AA\",\"1140\",\"LGA\",\"DFW\",-1.00,-20.00,0.00,\"\",0.00,235.00,206.00,1389.00,,,,,,\n2015,5,10,\"AA\",\"1140\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,11,\"AA\",\"1140\",\"LGA\",\"DFW\",-8.00,-28.00,0.00,\"\",0.00,234.00,206.00,1389.00,,,,,,\n2015,5,12,\"AA\",\"1140\",\"LGA\",\"DFW\",-3.00,-19.00,0.00,\"\",0.00,238.00,201.00,1389.00,,,,,,\n2015,5,13,\"AA\",\"1140\",\"LGA\",\"DFW\",-10.00,-17.00,0.00,\"\",0.00,247.00,200.00,1389.00,,,,,,\n2015,5,14,\"AA\",\"1140\",\"LGA\",\"DFW\",28.00,-12.00,0.00,\"\",0.00,214.00,192.00,1389.00,,,,,,\n2015,5,15,\"AA\",\"1140\",\"LGA\",\"DFW\",-2.00,-32.00,0.00,\"\",0.00,224.00,203.00,1389.00,,,,,,\n2015,5,17,\"AA\",\"1140\",\"LGA\",\"DFW\",79.00,36.00,0.00,\"\",0.00,211.00,184.00,1389.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,18,\"AA\",\"1140\",\"LGA\",\"DFW\",204.00,210.00,0.00,\"\",0.00,260.00,199.00,1389.00,6.00,0.00,6.00,0.00,198.00,\n2015,5,19,\"AA\",\"1140\",\"LGA\",\"DFW\",15.00,2.00,0.00,\"\",0.00,241.00,196.00,1389.00,,,,,,\n2015,5,20,\"AA\",\"1140\",\"LGA\",\"DFW\",74.00,94.00,0.00,\"\",0.00,274.00,199.00,1389.00,74.00,0.00,20.00,0.00,0.00,\n2015,5,21,\"AA\",\"1140\",\"LGA\",\"DFW\",191.00,169.00,0.00,\"\",0.00,232.00,215.00,1389.00,0.00,0.00,0.00,0.00,169.00,\n2015,5,22,\"AA\",\"1140\",\"LGA\",\"DFW\",10.00,-21.00,0.00,\"\",0.00,223.00,201.00,1389.00,,,,,,\n2015,5,24,\"AA\",\"1140\",\"LGA\",\"DFW\",-3.00,-12.00,0.00,\"\",0.00,245.00,229.00,1389.00,,,,,,\n2015,5,25,\"AA\",\"1140\",\"LGA\",\"DFW\",34.00,33.00,0.00,\"\",0.00,253.00,226.00,1389.00,18.00,15.00,0.00,0.00,0.00,\n2015,5,26,\"AA\",\"1140\",\"LGA\",\"DFW\",0.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,27,\"AA\",\"1140\",\"LGA\",\"DFW\",-5.00,25.00,0.00,\"\",0.00,284.00,202.00,1389.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,28,\"AA\",\"1140\",\"LGA\",\"DFW\",12.00,3.00,0.00,\"\",0.00,245.00,211.00,1389.00,,,,,,\n2015,5,29,\"AA\",\"1140\",\"LGA\",\"DFW\",10.00,-35.00,0.00,\"\",0.00,209.00,186.00,1389.00,,,,,,\n2015,5,31,\"AA\",\"1140\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,7,\"AA\",\"1254\",\"MIA\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,179.00,150.00,1089.00,,,,,,\n2015,5,8,\"AA\",\"1254\",\"MIA\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,178.00,150.00,1089.00,,,,,,\n2015,5,9,\"AA\",\"1254\",\"MIA\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,171.00,151.00,1089.00,,,,,,\n2015,5,10,\"AA\",\"1254\",\"MIA\",\"JFK\",-1.00,0.00,0.00,\"\",0.00,180.00,149.00,1089.00,,,,,,\n2015,5,11,\"AA\",\"1254\",\"MIA\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,167.00,148.00,1089.00,,,,,,\n2015,5,12,\"AA\",\"1254\",\"MIA\",\"JFK\",1.00,11.00,0.00,\"\",0.00,189.00,148.00,1089.00,,,,,,\n2015,5,13,\"AA\",\"1254\",\"MIA\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,178.00,146.00,1089.00,,,,,,\n2015,5,14,\"AA\",\"1254\",\"MIA\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,168.00,144.00,1089.00,,,,,,\n2015,5,15,\"AA\",\"1254\",\"MIA\",\"JFK\",-4.00,-27.00,0.00,\"\",0.00,156.00,135.00,1089.00,,,,,,\n2015,5,16,\"AA\",\"1254\",\"MIA\",\"JFK\",-6.00,12.00,0.00,\"\",0.00,197.00,144.00,1089.00,,,,,,\n2015,5,17,\"AA\",\"1254\",\"MIA\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,174.00,144.00,1089.00,,,,,,\n2015,5,18,\"AA\",\"1254\",\"MIA\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,171.00,152.00,1089.00,,,,,,\n2015,5,19,\"AA\",\"1254\",\"MIA\",\"JFK\",-5.00,2.00,0.00,\"\",0.00,186.00,145.00,1089.00,,,,,,\n2015,5,20,\"AA\",\"1254\",\"MIA\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,165.00,140.00,1089.00,,,,,,\n2015,5,21,\"AA\",\"1254\",\"MIA\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,155.00,139.00,1089.00,,,,,,\n2015,5,22,\"AA\",\"1254\",\"MIA\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,164.00,141.00,1089.00,,,,,,\n2015,5,23,\"AA\",\"1254\",\"MIA\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,161.00,142.00,1089.00,,,,,,\n2015,5,24,\"AA\",\"1254\",\"MIA\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,167.00,143.00,1089.00,,,,,,\n2015,5,25,\"AA\",\"1254\",\"MIA\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,176.00,142.00,1089.00,,,,,,\n2015,5,26,\"AA\",\"1254\",\"MIA\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,170.00,141.00,1089.00,,,,,,\n2015,5,27,\"AA\",\"1254\",\"MIA\",\"JFK\",-3.00,-6.00,0.00,\"\",0.00,176.00,142.00,1089.00,,,,,,\n2015,5,28,\"AA\",\"1254\",\"MIA\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,164.00,143.00,1089.00,,,,,,\n2015,5,29,\"AA\",\"1254\",\"MIA\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,171.00,143.00,1089.00,,,,,,\n2015,5,30,\"AA\",\"1254\",\"MIA\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,169.00,146.00,1089.00,,,,,,\n2015,5,31,\"AA\",\"1254\",\"MIA\",\"JFK\",-3.00,2.00,0.00,\"\",0.00,184.00,146.00,1089.00,,,,,,\n2015,5,1,\"AA\",\"1263\",\"JFK\",\"LAS\",1.00,-22.00,0.00,\"\",0.00,321.00,296.00,2248.00,,,,,,\n2015,5,2,\"AA\",\"1263\",\"JFK\",\"LAS\",38.00,26.00,0.00,\"\",0.00,332.00,302.00,2248.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"AA\",\"1263\",\"JFK\",\"LAS\",2.00,-5.00,0.00,\"\",0.00,337.00,305.00,2248.00,,,,,,\n2015,5,4,\"AA\",\"1263\",\"JFK\",\"LAS\",16.00,-4.00,0.00,\"\",0.00,324.00,301.00,2248.00,,,,,,\n2015,5,5,\"AA\",\"1263\",\"JFK\",\"LAS\",9.00,-18.00,0.00,\"\",0.00,317.00,291.00,2248.00,,,,,,\n2015,5,6,\"AA\",\"1263\",\"JFK\",\"LAS\",2.00,-21.00,0.00,\"\",0.00,321.00,288.00,2248.00,,,,,,\n2015,5,7,\"AA\",\"1263\",\"JFK\",\"LAS\",-6.00,-12.00,0.00,\"\",0.00,338.00,304.00,2248.00,,,,,,\n2015,5,8,\"AA\",\"1263\",\"JFK\",\"LAS\",-5.00,-10.00,0.00,\"\",0.00,339.00,310.00,2248.00,,,,,,\n2015,5,9,\"AA\",\"1263\",\"JFK\",\"LAS\",-5.00,-23.00,0.00,\"\",0.00,326.00,292.00,2248.00,,,,,,\n2015,5,10,\"AA\",\"1263\",\"JFK\",\"LAS\",-5.00,-23.00,0.00,\"\",0.00,326.00,293.00,2248.00,,,,,,\n2015,5,11,\"AA\",\"1263\",\"JFK\",\"LAS\",-3.00,-14.00,0.00,\"\",0.00,333.00,304.00,2248.00,,,,,,\n2015,5,12,\"AA\",\"1263\",\"JFK\",\"LAS\",-4.00,10.00,0.00,\"\",0.00,358.00,308.00,2248.00,,,,,,\n2015,5,13,\"AA\",\"1263\",\"JFK\",\"LAS\",-1.00,-8.00,0.00,\"\",0.00,337.00,307.00,2248.00,,,,,,\n2015,5,14,\"AA\",\"1263\",\"JFK\",\"LAS\",-2.00,-6.00,0.00,\"\",0.00,340.00,304.00,2248.00,,,,,,\n2015,5,15,\"AA\",\"1263\",\"JFK\",\"LAS\",-1.00,6.00,0.00,\"\",0.00,351.00,316.00,2248.00,,,,,,\n2015,5,16,\"AA\",\"1263\",\"JFK\",\"LAS\",-4.00,-16.00,0.00,\"\",0.00,332.00,297.00,2248.00,,,,,,\n2015,5,17,\"AA\",\"1263\",\"JFK\",\"LAS\",1.00,3.00,0.00,\"\",0.00,346.00,305.00,2248.00,,,,,,\n2015,5,18,\"AA\",\"1263\",\"JFK\",\"LAS\",-4.00,0.00,0.00,\"\",0.00,348.00,308.00,2248.00,,,,,,\n2015,5,19,\"AA\",\"1263\",\"JFK\",\"LAS\",-6.00,-1.00,0.00,\"\",0.00,349.00,320.00,2248.00,,,,,,\n2015,5,20,\"AA\",\"1263\",\"JFK\",\"LAS\",-2.00,9.00,0.00,\"\",0.00,355.00,316.00,2248.00,,,,,,\n2015,5,21,\"AA\",\"1263\",\"JFK\",\"LAS\",3.00,3.00,0.00,\"\",0.00,344.00,313.00,2248.00,,,,,,\n2015,5,22,\"AA\",\"1263\",\"JFK\",\"LAS\",-4.00,-9.00,0.00,\"\",0.00,339.00,314.00,2248.00,,,,,,\n2015,5,23,\"AA\",\"1263\",\"JFK\",\"LAS\",-6.00,-4.00,0.00,\"\",0.00,346.00,322.00,2248.00,,,,,,\n2015,5,24,\"AA\",\"1263\",\"JFK\",\"LAS\",-4.00,-11.00,0.00,\"\",0.00,337.00,312.00,2248.00,,,,,,\n2015,5,25,\"AA\",\"1263\",\"JFK\",\"LAS\",-4.00,-29.00,0.00,\"\",0.00,319.00,292.00,2248.00,,,,,,\n2015,5,26,\"AA\",\"1263\",\"JFK\",\"LAS\",-4.00,-34.00,0.00,\"\",0.00,314.00,294.00,2248.00,,,,,,\n2015,5,27,\"AA\",\"1263\",\"JFK\",\"LAS\",10.00,-2.00,0.00,\"\",0.00,332.00,307.00,2248.00,,,,,,\n2015,5,28,\"AA\",\"1263\",\"JFK\",\"LAS\",-4.00,-16.00,0.00,\"\",0.00,332.00,301.00,2248.00,,,,,,\n2015,5,29,\"AA\",\"1263\",\"JFK\",\"LAS\",-4.00,-12.00,0.00,\"\",0.00,336.00,301.00,2248.00,,,,,,\n2015,5,30,\"AA\",\"1263\",\"JFK\",\"LAS\",-2.00,-17.00,0.00,\"\",0.00,329.00,299.00,2248.00,,,,,,\n2015,5,31,\"AA\",\"1263\",\"JFK\",\"LAS\",-3.00,-26.00,0.00,\"\",0.00,321.00,294.00,2248.00,,,,,,\n2015,5,7,\"AA\",\"2486\",\"LGA\",\"MIA\",17.00,3.00,0.00,\"\",0.00,176.00,151.00,1096.00,,,,,,\n2015,5,8,\"AA\",\"2486\",\"LGA\",\"MIA\",3.00,12.00,0.00,\"\",0.00,199.00,154.00,1096.00,,,,,,\n2015,5,9,\"AA\",\"2486\",\"LGA\",\"MIA\",-8.00,-22.00,0.00,\"\",0.00,176.00,142.00,1096.00,,,,,,\n2015,5,10,\"AA\",\"2486\",\"LGA\",\"MIA\",-6.00,-25.00,0.00,\"\",0.00,171.00,151.00,1096.00,,,,,,\n2015,5,11,\"AA\",\"2486\",\"LGA\",\"MIA\",0.00,5.00,0.00,\"\",0.00,195.00,160.00,1096.00,,,,,,\n2015,5,12,\"AA\",\"2486\",\"LGA\",\"MIA\",-4.00,-20.00,0.00,\"\",0.00,174.00,150.00,1096.00,,,,,,\n2015,5,13,\"AA\",\"2486\",\"LGA\",\"MIA\",-7.00,25.00,0.00,\"\",0.00,222.00,177.00,1096.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,14,\"AA\",\"2486\",\"LGA\",\"MIA\",-1.00,-8.00,0.00,\"\",0.00,183.00,153.00,1096.00,,,,,,\n2015,5,15,\"AA\",\"2486\",\"LGA\",\"MIA\",-6.00,-26.00,0.00,\"\",0.00,170.00,151.00,1096.00,,,,,,\n2015,5,16,\"AA\",\"2486\",\"LGA\",\"MIA\",-5.00,-17.00,0.00,\"\",0.00,178.00,147.00,1096.00,,,,,,\n2015,5,17,\"AA\",\"2486\",\"LGA\",\"MIA\",-10.00,-42.00,0.00,\"\",0.00,158.00,141.00,1096.00,,,,,,\n2015,5,18,\"AA\",\"2486\",\"LGA\",\"MIA\",3.00,-13.00,0.00,\"\",0.00,174.00,152.00,1096.00,,,,,,\n2015,5,19,\"AA\",\"2486\",\"LGA\",\"MIA\",12.00,5.00,0.00,\"\",0.00,183.00,150.00,1096.00,,,,,,\n2015,5,20,\"AA\",\"2486\",\"LGA\",\"MIA\",-4.00,-15.00,0.00,\"\",0.00,179.00,142.00,1096.00,,,,,,\n2015,5,21,\"AA\",\"2486\",\"LGA\",\"MIA\",-6.00,-2.00,0.00,\"\",0.00,194.00,163.00,1096.00,,,,,,\n2015,5,22,\"AA\",\"2486\",\"LGA\",\"MIA\",-1.00,-11.00,0.00,\"\",0.00,180.00,152.00,1096.00,,,,,,\n2015,5,23,\"AA\",\"2486\",\"LGA\",\"MIA\",-6.00,-35.00,0.00,\"\",0.00,161.00,145.00,1096.00,,,,,,\n2015,5,24,\"AA\",\"2486\",\"LGA\",\"MIA\",-4.00,-32.00,0.00,\"\",0.00,162.00,141.00,1096.00,,,,,,\n2015,5,25,\"AA\",\"2486\",\"LGA\",\"MIA\",-6.00,-33.00,0.00,\"\",0.00,163.00,144.00,1096.00,,,,,,\n2015,5,26,\"AA\",\"2486\",\"LGA\",\"MIA\",-5.00,-28.00,0.00,\"\",0.00,167.00,147.00,1096.00,,,,,,\n2015,5,27,\"AA\",\"2486\",\"LGA\",\"MIA\",-7.00,-24.00,0.00,\"\",0.00,173.00,150.00,1096.00,,,,,,\n2015,5,28,\"AA\",\"2486\",\"LGA\",\"MIA\",-7.00,-27.00,0.00,\"\",0.00,170.00,150.00,1096.00,,,,,,\n2015,5,29,\"AA\",\"2486\",\"LGA\",\"MIA\",-1.00,-27.00,0.00,\"\",0.00,164.00,148.00,1096.00,,,,,,\n2015,5,30,\"AA\",\"2486\",\"LGA\",\"MIA\",-5.00,-27.00,0.00,\"\",0.00,168.00,149.00,1096.00,,,,,,\n2015,5,31,\"AA\",\"2486\",\"LGA\",\"MIA\",9.00,6.00,0.00,\"\",0.00,187.00,150.00,1096.00,,,,,,\n2015,5,1,\"AA\",\"2498\",\"LGA\",\"MIA\",-9.00,-9.00,0.00,\"\",0.00,190.00,154.00,1096.00,,,,,,\n2015,5,2,\"AA\",\"2498\",\"LGA\",\"MIA\",-9.00,-8.00,0.00,\"\",0.00,191.00,150.00,1096.00,,,,,,\n2015,5,3,\"AA\",\"2498\",\"LGA\",\"MIA\",-5.00,-29.00,0.00,\"\",0.00,166.00,151.00,1096.00,,,,,,\n2015,5,4,\"AA\",\"2498\",\"LGA\",\"MIA\",-9.00,-20.00,0.00,\"\",0.00,179.00,152.00,1096.00,,,,,,\n2015,5,5,\"AA\",\"2498\",\"LGA\",\"MIA\",-1.00,29.00,0.00,\"\",0.00,220.00,161.00,1096.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,6,\"AA\",\"2498\",\"LGA\",\"MIA\",-3.00,-14.00,0.00,\"\",0.00,179.00,162.00,1096.00,,,,,,\n2015,5,1,\"B6\",\"48\",\"LAS\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,296.00,273.00,2248.00,,,,,,\n2015,5,2,\"B6\",\"48\",\"LAS\",\"JFK\",-7.00,-37.00,0.00,\"\",0.00,287.00,271.00,2248.00,,,,,,\n2015,5,3,\"B6\",\"48\",\"LAS\",\"JFK\",-4.00,21.00,0.00,\"\",0.00,342.00,272.00,2248.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,4,\"B6\",\"48\",\"LAS\",\"JFK\",5.00,-21.00,0.00,\"\",0.00,291.00,267.00,2248.00,,,,,,\n2015,5,5,\"B6\",\"48\",\"LAS\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,292.00,274.00,2248.00,,,,,,\n2015,5,6,\"B6\",\"48\",\"LAS\",\"JFK\",2.00,-17.00,0.00,\"\",0.00,298.00,279.00,2248.00,,,,,,\n2015,5,7,\"B6\",\"48\",\"LAS\",\"JFK\",-3.00,-32.00,0.00,\"\",0.00,288.00,273.00,2248.00,,,,,,\n2015,5,8,\"B6\",\"48\",\"LAS\",\"JFK\",27.00,23.00,0.00,\"\",0.00,313.00,270.00,2248.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,9,\"B6\",\"48\",\"LAS\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,311.00,290.00,2248.00,,,,,,\n2015,5,10,\"B6\",\"48\",\"LAS\",\"JFK\",7.00,-20.00,0.00,\"\",0.00,290.00,273.00,2248.00,,,,,,\n2015,5,11,\"B6\",\"48\",\"LAS\",\"JFK\",-2.00,-36.00,0.00,\"\",0.00,283.00,269.00,2248.00,,,,,,\n2015,5,12,\"B6\",\"48\",\"LAS\",\"JFK\",14.00,-24.00,0.00,\"\",0.00,279.00,255.00,2248.00,,,,,,\n2015,5,13,\"B6\",\"48\",\"LAS\",\"JFK\",-4.00,-55.00,0.00,\"\",0.00,266.00,250.00,2248.00,,,,,,\n2015,5,14,\"B6\",\"48\",\"LAS\",\"JFK\",-4.00,-37.00,0.00,\"\",0.00,284.00,267.00,2248.00,,,,,,\n2015,5,15,\"B6\",\"48\",\"LAS\",\"JFK\",0.00,-31.00,0.00,\"\",0.00,286.00,269.00,2248.00,,,,,,\n2015,5,17,\"B6\",\"48\",\"LAS\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,294.00,263.00,2248.00,,,,,,\n2015,5,18,\"B6\",\"48\",\"LAS\",\"JFK\",240.00,303.00,0.00,\"\",0.00,380.00,343.00,2248.00,0.00,0.00,279.00,0.00,24.00,\n2015,5,19,\"B6\",\"48\",\"LAS\",\"JFK\",15.00,-20.00,0.00,\"\",0.00,282.00,261.00,2248.00,,,,,,\n2015,5,20,\"B6\",\"48\",\"LAS\",\"JFK\",59.00,13.00,0.00,\"\",0.00,271.00,242.00,2248.00,,,,,,\n2015,5,21,\"B6\",\"48\",\"LAS\",\"JFK\",12.00,-37.00,0.00,\"\",0.00,268.00,252.00,2248.00,,,,,,\n2015,5,22,\"B6\",\"48\",\"LAS\",\"JFK\",3.00,-40.00,0.00,\"\",0.00,274.00,252.00,2248.00,,,,,,\n2015,5,24,\"B6\",\"48\",\"LAS\",\"JFK\",-11.00,-41.00,0.00,\"\",0.00,287.00,270.00,2248.00,,,,,,\n2015,5,25,\"B6\",\"48\",\"LAS\",\"JFK\",19.00,-13.00,0.00,\"\",0.00,285.00,265.00,2248.00,,,,,,\n2015,5,26,\"B6\",\"48\",\"LAS\",\"JFK\",-10.00,-41.00,0.00,\"\",0.00,286.00,271.00,2248.00,,,,,,\n2015,5,27,\"B6\",\"48\",\"LAS\",\"JFK\",157.00,124.00,0.00,\"\",0.00,284.00,262.00,2248.00,0.00,124.00,0.00,0.00,0.00,\n2015,5,28,\"B6\",\"48\",\"LAS\",\"JFK\",-3.00,-33.00,0.00,\"\",0.00,287.00,267.00,2248.00,,,,,,\n2015,5,29,\"B6\",\"48\",\"LAS\",\"JFK\",-8.00,-35.00,0.00,\"\",0.00,290.00,272.00,2248.00,,,,,,\n2015,5,31,\"B6\",\"48\",\"LAS\",\"JFK\",205.00,249.00,0.00,\"\",0.00,361.00,325.00,2248.00,0.00,0.00,249.00,0.00,0.00,\n2015,5,1,\"B6\",\"53\",\"JFK\",\"PBI\",-5.00,-2.00,0.00,\"\",0.00,175.00,146.00,1028.00,,,,,,\n2015,5,2,\"B6\",\"53\",\"JFK\",\"PBI\",-6.00,-13.00,0.00,\"\",0.00,165.00,140.00,1028.00,,,,,,\n2015,5,3,\"B6\",\"53\",\"JFK\",\"PBI\",8.00,-4.00,0.00,\"\",0.00,160.00,142.00,1028.00,,,,,,\n2015,5,4,\"B6\",\"53\",\"JFK\",\"PBI\",4.00,11.00,0.00,\"\",0.00,179.00,146.00,1028.00,,,,,,\n2015,5,5,\"B6\",\"53\",\"JFK\",\"PBI\",-8.00,-18.00,0.00,\"\",0.00,162.00,148.00,1028.00,,,,,,\n2015,5,6,\"B6\",\"53\",\"JFK\",\"PBI\",-6.00,1.00,0.00,\"\",0.00,179.00,154.00,1028.00,,,,,,\n2015,5,7,\"B6\",\"53\",\"JFK\",\"PBI\",9.00,5.00,0.00,\"\",0.00,168.00,145.00,1028.00,,,,,,\n2015,5,8,\"B6\",\"53\",\"JFK\",\"PBI\",-4.00,-18.00,0.00,\"\",0.00,158.00,140.00,1028.00,,,,,,\n2015,5,9,\"B6\",\"53\",\"JFK\",\"PBI\",-4.00,-24.00,0.00,\"\",0.00,152.00,134.00,1028.00,,,,,,\n2015,5,10,\"B6\",\"53\",\"JFK\",\"PBI\",-1.00,-8.00,0.00,\"\",0.00,165.00,144.00,1028.00,,,,,,\n2015,5,11,\"B6\",\"53\",\"JFK\",\"PBI\",4.00,-15.00,0.00,\"\",0.00,153.00,137.00,1028.00,,,,,,\n2015,5,12,\"B6\",\"53\",\"JFK\",\"PBI\",-3.00,-22.00,0.00,\"\",0.00,153.00,136.00,1028.00,,,,,,\n2015,5,13,\"B6\",\"53\",\"JFK\",\"PBI\",-4.00,-26.00,0.00,\"\",0.00,150.00,137.00,1028.00,,,,,,\n2015,5,14,\"B6\",\"53\",\"JFK\",\"PBI\",-5.00,-16.00,0.00,\"\",0.00,161.00,144.00,1028.00,,,,,,\n2015,5,15,\"B6\",\"53\",\"JFK\",\"PBI\",1.00,-16.00,0.00,\"\",0.00,155.00,135.00,1028.00,,,,,,\n2015,5,16,\"B6\",\"53\",\"JFK\",\"PBI\",32.00,11.00,0.00,\"\",0.00,151.00,129.00,1028.00,,,,,,\n2015,5,17,\"B6\",\"53\",\"JFK\",\"PBI\",138.00,129.00,0.00,\"\",0.00,163.00,130.00,1028.00,129.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"53\",\"JFK\",\"PBI\",2.00,0.00,0.00,\"\",0.00,170.00,134.00,1028.00,,,,,,\n2015,5,19,\"B6\",\"53\",\"JFK\",\"PBI\",46.00,32.00,0.00,\"\",0.00,158.00,135.00,1028.00,11.00,0.00,0.00,0.00,21.00,\n2015,5,20,\"B6\",\"53\",\"JFK\",\"PBI\",-5.00,-17.00,0.00,\"\",0.00,160.00,142.00,1028.00,,,,,,\n2015,5,21,\"B6\",\"53\",\"JFK\",\"PBI\",74.00,66.00,0.00,\"\",0.00,164.00,141.00,1028.00,12.00,0.00,0.00,0.00,54.00,\n2015,5,22,\"B6\",\"53\",\"JFK\",\"PBI\",-3.00,-2.00,0.00,\"\",0.00,173.00,144.00,1028.00,,,,,,\n2015,5,23,\"B6\",\"53\",\"JFK\",\"PBI\",-2.00,-23.00,0.00,\"\",0.00,151.00,138.00,1028.00,,,,,,\n2015,5,24,\"B6\",\"53\",\"JFK\",\"PBI\",-4.00,-23.00,0.00,\"\",0.00,153.00,132.00,1028.00,,,,,,\n2015,5,25,\"B6\",\"53\",\"JFK\",\"PBI\",9.00,-7.00,0.00,\"\",0.00,156.00,136.00,1028.00,,,,,,\n2015,5,26,\"B6\",\"53\",\"JFK\",\"PBI\",-5.00,-23.00,0.00,\"\",0.00,154.00,133.00,1028.00,,,,,,\n2015,5,27,\"B6\",\"53\",\"JFK\",\"PBI\",-8.00,-12.00,0.00,\"\",0.00,168.00,135.00,1028.00,,,,,,\n2015,5,28,\"B6\",\"53\",\"JFK\",\"PBI\",-8.00,-30.00,0.00,\"\",0.00,150.00,134.00,1028.00,,,,,,\n2015,5,29,\"B6\",\"53\",\"JFK\",\"PBI\",-4.00,-24.00,0.00,\"\",0.00,152.00,132.00,1028.00,,,,,,\n2015,5,30,\"B6\",\"53\",\"JFK\",\"PBI\",-2.00,-16.00,0.00,\"\",0.00,158.00,133.00,1028.00,,,,,,\n2015,5,31,\"B6\",\"53\",\"JFK\",\"PBI\",-2.00,-20.00,0.00,\"\",0.00,154.00,132.00,1028.00,,,,,,\n2015,5,1,\"B6\",\"54\",\"PBI\",\"JFK\",3.00,-31.00,0.00,\"\",0.00,141.00,125.00,1028.00,,,,,,\n2015,5,2,\"B6\",\"54\",\"PBI\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,162.00,134.00,1028.00,,,,,,\n2015,5,3,\"B6\",\"54\",\"PBI\",\"JFK\",8.00,-9.00,0.00,\"\",0.00,158.00,136.00,1028.00,,,,,,\n2015,5,4,\"B6\",\"54\",\"PBI\",\"JFK\",14.00,-20.00,0.00,\"\",0.00,141.00,129.00,1028.00,,,,,,\n2015,5,5,\"B6\",\"54\",\"PBI\",\"JFK\",12.00,-26.00,0.00,\"\",0.00,137.00,126.00,1028.00,,,,,,\n2015,5,6,\"B6\",\"54\",\"PBI\",\"JFK\",15.00,-4.00,0.00,\"\",0.00,156.00,138.00,1028.00,,,,,,\n2015,5,7,\"B6\",\"54\",\"PBI\",\"JFK\",29.00,16.00,0.00,\"\",0.00,162.00,147.00,1028.00,15.00,0.00,0.00,0.00,1.00,\n2015,5,8,\"B6\",\"54\",\"PBI\",\"JFK\",-4.00,-27.00,0.00,\"\",0.00,152.00,136.00,1028.00,,,,,,\n2015,5,9,\"B6\",\"54\",\"PBI\",\"JFK\",-4.00,19.00,0.00,\"\",0.00,198.00,151.00,1028.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,10,\"B6\",\"54\",\"PBI\",\"JFK\",4.00,13.00,0.00,\"\",0.00,184.00,167.00,1028.00,,,,,,\n2015,5,11,\"B6\",\"54\",\"PBI\",\"JFK\",-1.00,-23.00,0.00,\"\",0.00,153.00,137.00,1028.00,,,,,,\n2015,5,12,\"B6\",\"54\",\"PBI\",\"JFK\",,,1.00,\"C\",0.00,,,1028.00,,,,,,\n2015,5,13,\"B6\",\"54\",\"PBI\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,157.00,134.00,1028.00,,,,,,\n2015,5,14,\"B6\",\"54\",\"PBI\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,154.00,140.00,1028.00,,,,,,\n2015,5,15,\"B6\",\"54\",\"PBI\",\"JFK\",3.00,-15.00,0.00,\"\",0.00,157.00,138.00,1028.00,,,,,,\n2015,5,16,\"B6\",\"54\",\"PBI\",\"JFK\",24.00,7.00,0.00,\"\",0.00,158.00,144.00,1028.00,,,,,,\n2015,5,17,\"B6\",\"54\",\"PBI\",\"JFK\",134.00,153.00,0.00,\"\",0.00,194.00,147.00,1028.00,9.00,0.00,19.00,0.00,125.00,\n2015,5,18,\"B6\",\"54\",\"PBI\",\"JFK\",137.00,123.00,0.00,\"\",0.00,161.00,137.00,1028.00,0.00,0.00,123.00,0.00,0.00,\n2015,5,19,\"B6\",\"54\",\"PBI\",\"JFK\",52.00,34.00,0.00,\"\",0.00,157.00,142.00,1028.00,16.00,0.00,0.00,0.00,18.00,\n2015,5,20,\"B6\",\"54\",\"PBI\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,160.00,133.00,1028.00,,,,,,\n2015,5,21,\"B6\",\"54\",\"PBI\",\"JFK\",69.00,50.00,0.00,\"\",0.00,156.00,140.00,1028.00,5.00,0.00,0.00,0.00,45.00,\n2015,5,22,\"B6\",\"54\",\"PBI\",\"JFK\",1.00,-17.00,0.00,\"\",0.00,157.00,135.00,1028.00,,,,,,\n2015,5,23,\"B6\",\"54\",\"PBI\",\"JFK\",-10.00,-34.00,0.00,\"\",0.00,151.00,134.00,1028.00,,,,,,\n2015,5,24,\"B6\",\"54\",\"PBI\",\"JFK\",-10.00,-33.00,0.00,\"\",0.00,152.00,140.00,1028.00,,,,,,\n2015,5,25,\"B6\",\"54\",\"PBI\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,152.00,130.00,1028.00,,,,,,\n2015,5,26,\"B6\",\"54\",\"PBI\",\"JFK\",-4.00,-36.00,0.00,\"\",0.00,143.00,131.00,1028.00,,,,,,\n2015,5,27,\"B6\",\"54\",\"PBI\",\"JFK\",272.00,252.00,0.00,\"\",0.00,155.00,131.00,1028.00,0.00,0.00,252.00,0.00,0.00,\n2015,5,28,\"B6\",\"54\",\"PBI\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,154.00,136.00,1028.00,,,,,,\n2015,5,29,\"B6\",\"54\",\"PBI\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,153.00,137.00,1028.00,,,,,,\n2015,5,30,\"B6\",\"54\",\"PBI\",\"JFK\",0.00,-27.00,0.00,\"\",0.00,148.00,133.00,1028.00,,,,,,\n2015,5,31,\"B6\",\"54\",\"PBI\",\"JFK\",47.00,67.00,0.00,\"\",0.00,195.00,141.00,1028.00,0.00,0.00,67.00,0.00,0.00,\n2015,5,1,\"B6\",\"63\",\"JFK\",\"SEA\",-2.00,1.00,0.00,\"\",0.00,371.00,327.00,2422.00,,,,,,\n2015,5,3,\"B6\",\"63\",\"JFK\",\"SEA\",-6.00,3.00,0.00,\"\",0.00,377.00,347.00,2422.00,,,,,,\n2015,5,4,\"B6\",\"63\",\"JFK\",\"SEA\",12.00,10.00,0.00,\"\",0.00,366.00,329.00,2422.00,,,,,,\n2015,5,5,\"B6\",\"63\",\"JFK\",\"SEA\",-3.00,-12.00,0.00,\"\",0.00,359.00,324.00,2422.00,,,,,,\n2015,5,6,\"B6\",\"63\",\"JFK\",\"SEA\",-4.00,-9.00,0.00,\"\",0.00,363.00,327.00,2422.00,,,,,,\n2015,5,7,\"B6\",\"63\",\"JFK\",\"SEA\",18.00,-10.00,0.00,\"\",0.00,340.00,309.00,2422.00,,,,,,\n2015,5,8,\"B6\",\"63\",\"JFK\",\"SEA\",0.00,-21.00,0.00,\"\",0.00,347.00,319.00,2422.00,,,,,,\n2015,5,10,\"B6\",\"63\",\"JFK\",\"SEA\",-3.00,-36.00,0.00,\"\",0.00,335.00,306.00,2422.00,,,,,,\n2015,5,11,\"B6\",\"63\",\"JFK\",\"SEA\",-3.00,-28.00,0.00,\"\",0.00,343.00,306.00,2422.00,,,,,,\n2015,5,12,\"B6\",\"63\",\"JFK\",\"SEA\",-5.00,-2.00,0.00,\"\",0.00,371.00,333.00,2422.00,,,,,,\n2015,5,13,\"B6\",\"63\",\"JFK\",\"SEA\",-5.00,10.00,0.00,\"\",0.00,383.00,342.00,2422.00,,,,,,\n2015,5,14,\"B6\",\"63\",\"JFK\",\"SEA\",5.00,-16.00,0.00,\"\",0.00,347.00,323.00,2422.00,,,,,,\n2015,5,15,\"B6\",\"63\",\"JFK\",\"SEA\",-2.00,-12.00,0.00,\"\",0.00,358.00,317.00,2422.00,,,,,,\n2015,5,17,\"B6\",\"63\",\"JFK\",\"SEA\",6.00,-19.00,0.00,\"\",0.00,343.00,302.00,2422.00,,,,,,\n2015,5,18,\"B6\",\"63\",\"JFK\",\"SEA\",4.00,4.00,0.00,\"\",0.00,368.00,317.00,2422.00,,,,,,\n2015,5,19,\"B6\",\"63\",\"JFK\",\"SEA\",-4.00,6.00,0.00,\"\",0.00,378.00,330.00,2422.00,,,,,,\n2015,5,20,\"B6\",\"63\",\"JFK\",\"SEA\",-1.00,0.00,0.00,\"\",0.00,369.00,333.00,2422.00,,,,,,\n2015,5,21,\"B6\",\"63\",\"JFK\",\"SEA\",-3.00,-23.00,0.00,\"\",0.00,348.00,325.00,2422.00,,,,,,\n2015,5,22,\"B6\",\"63\",\"JFK\",\"SEA\",-6.00,11.00,0.00,\"\",0.00,385.00,330.00,2422.00,,,,,,\n2015,5,24,\"B6\",\"63\",\"JFK\",\"SEA\",-5.00,-19.00,0.00,\"\",0.00,354.00,328.00,2422.00,,,,,,\n2015,5,25,\"B6\",\"63\",\"JFK\",\"SEA\",-1.00,-40.00,0.00,\"\",0.00,329.00,304.00,2422.00,,,,,,\n2015,5,26,\"B6\",\"63\",\"JFK\",\"SEA\",-3.00,-41.00,0.00,\"\",0.00,330.00,303.00,2422.00,,,,,,\n2015,5,27,\"B6\",\"63\",\"JFK\",\"SEA\",-3.00,-19.00,0.00,\"\",0.00,352.00,317.00,2422.00,,,,,,\n2015,5,28,\"B6\",\"63\",\"JFK\",\"SEA\",-1.00,-7.00,0.00,\"\",0.00,362.00,320.00,2422.00,,,,,,\n2015,5,29,\"B6\",\"63\",\"JFK\",\"SEA\",-1.00,-3.00,0.00,\"\",0.00,366.00,322.00,2422.00,,,,,,\n2015,5,31,\"B6\",\"63\",\"JFK\",\"SEA\",-1.00,-3.00,0.00,\"\",0.00,366.00,338.00,2422.00,,,,,,\n2015,5,1,\"B6\",\"65\",\"JFK\",\"ABQ\",25.00,-13.00,0.00,\"\",0.00,276.00,241.00,1826.00,,,,,,\n2015,5,3,\"B6\",\"65\",\"JFK\",\"ABQ\",-1.00,-45.00,0.00,\"\",0.00,270.00,236.00,1826.00,,,,,,\n2015,5,4,\"B6\",\"65\",\"JFK\",\"ABQ\",-6.00,-42.00,0.00,\"\",0.00,278.00,237.00,1826.00,,,,,,\n2015,5,7,\"B6\",\"65\",\"JFK\",\"ABQ\",4.00,30.00,0.00,\"\",0.00,340.00,284.00,1826.00,4.00,0.00,26.00,0.00,0.00,\n2015,5,8,\"B6\",\"65\",\"JFK\",\"ABQ\",0.00,7.00,0.00,\"\",0.00,321.00,271.00,1826.00,,,,,,\n2015,5,9,\"B6\",\"65\",\"JFK\",\"ABQ\",-10.00,-37.00,0.00,\"\",0.00,287.00,261.00,1826.00,,,,,,\n2015,5,10,\"B6\",\"65\",\"JFK\",\"ABQ\",-4.00,-30.00,0.00,\"\",0.00,288.00,244.00,1826.00,,,,,,\n2015,5,11,\"B6\",\"65\",\"JFK\",\"ABQ\",-5.00,-1.00,0.00,\"\",0.00,318.00,267.00,1826.00,,,,,,\n2015,5,12,\"B6\",\"65\",\"JFK\",\"ABQ\",-4.00,-20.00,0.00,\"\",0.00,298.00,259.00,1826.00,,,,,,\n2015,5,13,\"B6\",\"65\",\"JFK\",\"ABQ\",-1.00,-31.00,0.00,\"\",0.00,284.00,248.00,1826.00,,,,,,\n2015,5,14,\"B6\",\"65\",\"JFK\",\"ABQ\",-5.00,-37.00,0.00,\"\",0.00,282.00,246.00,1826.00,,,,,,\n2015,5,15,\"B6\",\"65\",\"JFK\",\"ABQ\",2.00,2.00,0.00,\"\",0.00,314.00,276.00,1826.00,,,,,,\n2015,5,16,\"B6\",\"65\",\"JFK\",\"ABQ\",-2.00,-19.00,0.00,\"\",0.00,297.00,257.00,1826.00,,,,,,\n2015,5,17,\"B6\",\"65\",\"JFK\",\"ABQ\",-4.00,-32.00,0.00,\"\",0.00,286.00,241.00,1826.00,,,,,,\n2015,5,18,\"B6\",\"65\",\"JFK\",\"ABQ\",8.00,45.00,0.00,\"\",0.00,351.00,278.00,1826.00,8.00,0.00,37.00,0.00,0.00,\n2015,5,19,\"B6\",\"65\",\"JFK\",\"ABQ\",-3.00,-2.00,0.00,\"\",0.00,315.00,255.00,1826.00,,,,,,\n2015,5,20,\"B6\",\"65\",\"JFK\",\"ABQ\",-5.00,-14.00,0.00,\"\",0.00,305.00,263.00,1826.00,,,,,,\n2015,5,21,\"B6\",\"65\",\"JFK\",\"ABQ\",0.00,-4.00,0.00,\"\",0.00,310.00,264.00,1826.00,,,,,,\n2015,5,22,\"B6\",\"65\",\"JFK\",\"ABQ\",-1.00,8.00,0.00,\"\",0.00,323.00,264.00,1826.00,,,,,,\n2015,5,23,\"B6\",\"65\",\"JFK\",\"ABQ\",-1.00,24.00,0.00,\"\",0.00,339.00,294.00,1826.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,24,\"B6\",\"65\",\"JFK\",\"ABQ\",-12.00,-46.00,0.00,\"\",0.00,280.00,250.00,1826.00,,,,,,\n2015,5,25,\"B6\",\"65\",\"JFK\",\"ABQ\",-8.00,-26.00,0.00,\"\",0.00,296.00,257.00,1826.00,,,,,,\n2015,5,26,\"B6\",\"65\",\"JFK\",\"ABQ\",0.00,-7.00,0.00,\"\",0.00,307.00,265.00,1826.00,,,,,,\n2015,5,27,\"B6\",\"65\",\"JFK\",\"ABQ\",8.00,6.00,0.00,\"\",0.00,312.00,252.00,1826.00,,,,,,\n2015,5,28,\"B6\",\"65\",\"JFK\",\"ABQ\",-1.00,-9.00,0.00,\"\",0.00,306.00,270.00,1826.00,,,,,,\n2015,5,29,\"B6\",\"65\",\"JFK\",\"ABQ\",-3.00,-8.00,0.00,\"\",0.00,309.00,265.00,1826.00,,,,,,\n2015,5,30,\"B6\",\"65\",\"JFK\",\"ABQ\",-6.00,-28.00,0.00,\"\",0.00,292.00,249.00,1826.00,,,,,,\n2015,5,31,\"B6\",\"65\",\"JFK\",\"ABQ\",105.00,168.00,0.00,\"\",0.00,377.00,269.00,1826.00,0.00,105.00,63.00,0.00,0.00,\n2015,5,1,\"B6\",\"66\",\"ABQ\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,240.00,223.00,1826.00,,,,,,\n2015,5,3,\"B6\",\"66\",\"ABQ\",\"JFK\",5.00,2.00,0.00,\"\",0.00,244.00,234.00,1826.00,,,,,,\n2015,5,4,\"B6\",\"66\",\"ABQ\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,239.00,226.00,1826.00,,,,,,\n2015,5,7,\"B6\",\"66\",\"ABQ\",\"JFK\",38.00,85.00,0.00,\"\",0.00,294.00,274.00,1826.00,9.00,0.00,47.00,0.00,29.00,\n2015,5,8,\"B6\",\"66\",\"ABQ\",\"JFK\",8.00,-2.00,0.00,\"\",0.00,237.00,222.00,1826.00,,,,,,\n2015,5,9,\"B6\",\"66\",\"ABQ\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,245.00,223.00,1826.00,,,,,,\n2015,5,10,\"B6\",\"66\",\"ABQ\",\"JFK\",5.00,-11.00,0.00,\"\",0.00,231.00,218.00,1826.00,,,,,,\n2015,5,11,\"B6\",\"66\",\"ABQ\",\"JFK\",2.00,-21.00,0.00,\"\",0.00,224.00,210.00,1826.00,,,,,,\n2015,5,12,\"B6\",\"66\",\"ABQ\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,232.00,216.00,1826.00,,,,,,\n2015,5,13,\"B6\",\"66\",\"ABQ\",\"JFK\",10.00,0.00,0.00,\"\",0.00,237.00,215.00,1826.00,,,,,,\n2015,5,14,\"B6\",\"66\",\"ABQ\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,229.00,215.00,1826.00,,,,,,\n2015,5,15,\"B6\",\"66\",\"ABQ\",\"JFK\",3.00,-5.00,0.00,\"\",0.00,239.00,220.00,1826.00,,,,,,\n2015,5,16,\"B6\",\"66\",\"ABQ\",\"JFK\",-1.00,-2.00,0.00,\"\",0.00,246.00,228.00,1826.00,,,,,,\n2015,5,17,\"B6\",\"66\",\"ABQ\",\"JFK\",40.00,24.00,0.00,\"\",0.00,231.00,212.00,1826.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"66\",\"ABQ\",\"JFK\",38.00,34.00,0.00,\"\",0.00,243.00,220.00,1826.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,19,\"B6\",\"66\",\"ABQ\",\"JFK\",3.00,-33.00,0.00,\"\",0.00,211.00,198.00,1826.00,,,,,,\n2015,5,20,\"B6\",\"66\",\"ABQ\",\"JFK\",-7.00,-39.00,0.00,\"\",0.00,215.00,200.00,1826.00,,,,,,\n2015,5,21,\"B6\",\"66\",\"ABQ\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,225.00,203.00,1826.00,,,,,,\n2015,5,22,\"B6\",\"66\",\"ABQ\",\"JFK\",13.00,-8.00,0.00,\"\",0.00,226.00,213.00,1826.00,,,,,,\n2015,5,23,\"B6\",\"66\",\"ABQ\",\"JFK\",33.00,9.00,0.00,\"\",0.00,223.00,207.00,1826.00,,,,,,\n2015,5,24,\"B6\",\"66\",\"ABQ\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,236.00,219.00,1826.00,,,,,,\n2015,5,25,\"B6\",\"66\",\"ABQ\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,228.00,216.00,1826.00,,,,,,\n2015,5,26,\"B6\",\"66\",\"ABQ\",\"JFK\",3.00,-12.00,0.00,\"\",0.00,232.00,217.00,1826.00,,,,,,\n2015,5,27,\"B6\",\"66\",\"ABQ\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,235.00,223.00,1826.00,,,,,,\n2015,5,28,\"B6\",\"66\",\"ABQ\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,238.00,219.00,1826.00,,,,,,\n2015,5,29,\"B6\",\"66\",\"ABQ\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,242.00,223.00,1826.00,,,,,,\n2015,5,30,\"B6\",\"66\",\"ABQ\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,238.00,217.00,1826.00,,,,,,\n2015,5,31,\"B6\",\"66\",\"ABQ\",\"JFK\",162.00,159.00,0.00,\"\",0.00,244.00,226.00,1826.00,0.00,0.00,0.00,0.00,159.00,\n2015,5,1,\"B6\",\"71\",\"JFK\",\"SLC\",-6.00,-15.00,0.00,\"\",0.00,323.00,276.00,1990.00,,,,,,\n2015,5,2,\"B6\",\"71\",\"JFK\",\"SLC\",3.00,-29.00,0.00,\"\",0.00,300.00,266.00,1990.00,,,,,,\n2015,5,3,\"B6\",\"71\",\"JFK\",\"SLC\",-4.00,-33.00,0.00,\"\",0.00,303.00,264.00,1990.00,,,,,,\n2015,5,4,\"B6\",\"71\",\"JFK\",\"SLC\",2.00,24.00,0.00,\"\",0.00,354.00,308.00,1990.00,2.00,0.00,22.00,0.00,0.00,\n2015,5,5,\"B6\",\"71\",\"JFK\",\"SLC\",0.00,-49.00,0.00,\"\",0.00,283.00,250.00,1990.00,,,,,,\n2015,5,6,\"B6\",\"71\",\"JFK\",\"SLC\",-5.00,-49.00,0.00,\"\",0.00,288.00,266.00,1990.00,,,,,,\n2015,5,7,\"B6\",\"71\",\"JFK\",\"SLC\",-5.00,-41.00,0.00,\"\",0.00,296.00,269.00,1990.00,,,,,,\n2015,5,8,\"B6\",\"71\",\"JFK\",\"SLC\",5.00,-15.00,0.00,\"\",0.00,312.00,277.00,1990.00,,,,,,\n2015,5,9,\"B6\",\"71\",\"JFK\",\"SLC\",-3.00,-39.00,0.00,\"\",0.00,296.00,267.00,1990.00,,,,,,\n2015,5,10,\"B6\",\"71\",\"JFK\",\"SLC\",-3.00,23.00,0.00,\"\",0.00,358.00,310.00,1990.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,11,\"B6\",\"71\",\"JFK\",\"SLC\",15.00,12.00,0.00,\"\",0.00,329.00,282.00,1990.00,,,,,,\n2015,5,12,\"B6\",\"71\",\"JFK\",\"SLC\",-1.00,-14.00,0.00,\"\",0.00,319.00,295.00,1990.00,,,,,,\n2015,5,13,\"B6\",\"71\",\"JFK\",\"SLC\",16.00,2.00,0.00,\"\",0.00,318.00,271.00,1990.00,,,,,,\n2015,5,14,\"B6\",\"71\",\"JFK\",\"SLC\",0.00,-22.00,0.00,\"\",0.00,310.00,270.00,1990.00,,,,,,\n2015,5,15,\"B6\",\"71\",\"JFK\",\"SLC\",0.00,-5.00,0.00,\"\",0.00,327.00,286.00,1990.00,,,,,,\n2015,5,16,\"B6\",\"71\",\"JFK\",\"SLC\",-5.00,-33.00,0.00,\"\",0.00,304.00,274.00,1990.00,,,,,,\n2015,5,17,\"B6\",\"71\",\"JFK\",\"SLC\",-5.00,-24.00,0.00,\"\",0.00,313.00,281.00,1990.00,,,,,,\n2015,5,18,\"B6\",\"71\",\"JFK\",\"SLC\",36.00,111.00,0.00,\"\",0.00,407.00,279.00,1990.00,31.00,0.00,75.00,0.00,5.00,\n2015,5,19,\"B6\",\"71\",\"JFK\",\"SLC\",24.00,22.00,0.00,\"\",0.00,330.00,279.00,1990.00,12.00,0.00,0.00,0.00,10.00,\n2015,5,20,\"B6\",\"71\",\"JFK\",\"SLC\",10.00,2.00,0.00,\"\",0.00,324.00,293.00,1990.00,,,,,,\n2015,5,21,\"B6\",\"71\",\"JFK\",\"SLC\",-2.00,-20.00,0.00,\"\",0.00,314.00,279.00,1990.00,,,,,,\n2015,5,22,\"B6\",\"71\",\"JFK\",\"SLC\",-1.00,-33.00,0.00,\"\",0.00,300.00,282.00,1990.00,,,,,,\n2015,5,23,\"B6\",\"71\",\"JFK\",\"SLC\",-3.00,-11.00,0.00,\"\",0.00,324.00,296.00,1990.00,,,,,,\n2015,5,24,\"B6\",\"71\",\"JFK\",\"SLC\",-2.00,-43.00,0.00,\"\",0.00,291.00,265.00,1990.00,,,,,,\n2015,5,25,\"B6\",\"71\",\"JFK\",\"SLC\",-3.00,-16.00,0.00,\"\",0.00,319.00,281.00,1990.00,,,,,,\n2015,5,26,\"B6\",\"71\",\"JFK\",\"SLC\",-2.00,-11.00,0.00,\"\",0.00,323.00,277.00,1990.00,,,,,,\n2015,5,27,\"B6\",\"71\",\"JFK\",\"SLC\",24.00,37.00,0.00,\"\",0.00,345.00,274.00,1990.00,24.00,0.00,13.00,0.00,0.00,\n2015,5,28,\"B6\",\"71\",\"JFK\",\"SLC\",0.00,-33.00,0.00,\"\",0.00,299.00,269.00,1990.00,,,,,,\n2015,5,29,\"B6\",\"71\",\"JFK\",\"SLC\",-2.00,-19.00,0.00,\"\",0.00,315.00,280.00,1990.00,,,,,,\n2015,5,30,\"B6\",\"71\",\"JFK\",\"SLC\",-3.00,-17.00,0.00,\"\",0.00,318.00,265.00,1990.00,,,,,,\n2015,5,31,\"B6\",\"71\",\"JFK\",\"SLC\",109.00,71.00,0.00,\"\",0.00,294.00,268.00,1990.00,33.00,0.00,38.00,0.00,0.00,\n2015,5,1,\"B6\",\"72\",\"SLC\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,246.00,232.00,1990.00,,,,,,\n2015,5,2,\"B6\",\"72\",\"SLC\",\"JFK\",0.00,0.00,0.00,\"\",0.00,268.00,249.00,1990.00,,,,,,\n2015,5,3,\"B6\",\"72\",\"SLC\",\"JFK\",2.00,4.00,0.00,\"\",0.00,270.00,244.00,1990.00,,,,,,\n2015,5,4,\"B6\",\"72\",\"SLC\",\"JFK\",29.00,13.00,0.00,\"\",0.00,252.00,230.00,1990.00,,,,,,\n2015,5,1,\"B6\",\"183\",\"JFK\",\"MCO\",-3.00,-8.00,0.00,\"\",0.00,171.00,144.00,944.00,,,,,,\n2015,5,2,\"B6\",\"183\",\"JFK\",\"MCO\",10.00,0.00,0.00,\"\",0.00,166.00,132.00,944.00,,,,,,\n2015,5,3,\"B6\",\"183\",\"JFK\",\"MCO\",-1.00,-21.00,0.00,\"\",0.00,156.00,125.00,944.00,,,,,,\n2015,5,4,\"B6\",\"183\",\"JFK\",\"MCO\",-5.00,-6.00,0.00,\"\",0.00,175.00,131.00,944.00,,,,,,\n2015,5,5,\"B6\",\"183\",\"JFK\",\"MCO\",1.00,3.00,0.00,\"\",0.00,178.00,141.00,944.00,,,,,,\n2015,5,6,\"B6\",\"183\",\"JFK\",\"MCO\",-7.00,-9.00,0.00,\"\",0.00,174.00,137.00,944.00,,,,,,\n2015,5,7,\"B6\",\"183\",\"JFK\",\"MCO\",3.00,11.00,0.00,\"\",0.00,184.00,134.00,944.00,,,,,,\n2015,5,8,\"B6\",\"183\",\"JFK\",\"MCO\",65.00,69.00,0.00,\"\",0.00,180.00,125.00,944.00,20.00,0.00,4.00,0.00,45.00,\n2015,5,9,\"B6\",\"183\",\"JFK\",\"MCO\",-6.00,-24.00,0.00,\"\",0.00,158.00,121.00,944.00,,,,,,\n2015,5,10,\"B6\",\"183\",\"JFK\",\"MCO\",-3.00,-27.00,0.00,\"\",0.00,152.00,125.00,944.00,,,,,,\n2015,5,11,\"B6\",\"183\",\"JFK\",\"MCO\",-3.00,-10.00,0.00,\"\",0.00,169.00,129.00,944.00,,,,,,\n2015,5,12,\"B6\",\"183\",\"JFK\",\"MCO\",0.00,-24.00,0.00,\"\",0.00,152.00,130.00,944.00,,,,,,\n2015,5,13,\"B6\",\"183\",\"JFK\",\"MCO\",18.00,-9.00,0.00,\"\",0.00,149.00,129.00,944.00,,,,,,\n2015,5,14,\"B6\",\"183\",\"JFK\",\"MCO\",-4.00,-13.00,0.00,\"\",0.00,167.00,129.00,944.00,,,,,,\n2015,5,15,\"B6\",\"183\",\"JFK\",\"MCO\",-4.00,-13.00,0.00,\"\",0.00,167.00,131.00,944.00,,,,,,\n2015,5,16,\"B6\",\"183\",\"JFK\",\"MCO\",-5.00,-19.00,0.00,\"\",0.00,162.00,126.00,944.00,,,,,,\n2015,5,17,\"B6\",\"183\",\"JFK\",\"MCO\",79.00,55.00,0.00,\"\",0.00,152.00,127.00,944.00,55.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"183\",\"JFK\",\"MCO\",10.00,16.00,0.00,\"\",0.00,182.00,127.00,944.00,10.00,0.00,6.00,0.00,0.00,\n2015,5,19,\"B6\",\"183\",\"JFK\",\"MCO\",-8.00,-13.00,0.00,\"\",0.00,171.00,134.00,944.00,,,,,,\n2015,5,20,\"B6\",\"183\",\"JFK\",\"MCO\",-7.00,-26.00,0.00,\"\",0.00,157.00,132.00,944.00,,,,,,\n2015,5,21,\"B6\",\"183\",\"JFK\",\"MCO\",-3.00,-4.00,0.00,\"\",0.00,175.00,140.00,944.00,,,,,,\n2015,5,22,\"B6\",\"183\",\"JFK\",\"MCO\",72.00,76.00,0.00,\"\",0.00,180.00,142.00,944.00,55.00,0.00,4.00,0.00,17.00,\n2015,5,23,\"B6\",\"183\",\"JFK\",\"MCO\",9.00,4.00,0.00,\"\",0.00,171.00,132.00,944.00,,,,,,\n2015,5,24,\"B6\",\"183\",\"JFK\",\"MCO\",-4.00,-24.00,0.00,\"\",0.00,156.00,124.00,944.00,,,,,,\n2015,5,25,\"B6\",\"183\",\"JFK\",\"MCO\",-2.00,-16.00,0.00,\"\",0.00,162.00,123.00,944.00,,,,,,\n2015,5,26,\"B6\",\"183\",\"JFK\",\"MCO\",-3.00,-17.00,0.00,\"\",0.00,162.00,127.00,944.00,,,,,,\n2015,5,27,\"B6\",\"183\",\"JFK\",\"MCO\",-5.00,-24.00,0.00,\"\",0.00,157.00,130.00,944.00,,,,,,\n2015,5,28,\"B6\",\"183\",\"JFK\",\"MCO\",-4.00,-20.00,0.00,\"\",0.00,160.00,132.00,944.00,,,,,,\n2015,5,29,\"B6\",\"183\",\"JFK\",\"MCO\",6.00,-12.00,0.00,\"\",0.00,158.00,124.00,944.00,,,,,,\n2015,5,30,\"B6\",\"183\",\"JFK\",\"MCO\",-4.00,4.00,0.00,\"\",0.00,184.00,130.00,944.00,,,,,,\n2015,5,31,\"B6\",\"183\",\"JFK\",\"MCO\",-10.00,-20.00,0.00,\"\",0.00,166.00,125.00,944.00,,,,,,\n2015,5,1,\"B6\",\"185\",\"ROC\",\"JFK\",-6.00,-6.00,0.00,\"\",0.00,84.00,63.00,264.00,,,,,,\n2015,5,2,\"B6\",\"185\",\"ROC\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,71.00,60.00,264.00,,,,,,\n2015,5,3,\"B6\",\"185\",\"ROC\",\"JFK\",-9.00,-29.00,0.00,\"\",0.00,64.00,49.00,264.00,,,,,,\n2015,5,4,\"B6\",\"185\",\"ROC\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,78.00,63.00,264.00,,,,,,\n2015,5,5,\"B6\",\"185\",\"ROC\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,72.00,56.00,264.00,,,,,,\n2015,5,6,\"B6\",\"185\",\"ROC\",\"JFK\",23.00,2.00,0.00,\"\",0.00,63.00,49.00,264.00,,,,,,\n2015,5,7,\"B6\",\"185\",\"ROC\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,72.00,58.00,264.00,,,,,,\n2015,5,8,\"B6\",\"185\",\"ROC\",\"JFK\",69.00,62.00,0.00,\"\",0.00,77.00,66.00,264.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,9,\"B6\",\"185\",\"ROC\",\"JFK\",-10.00,-10.00,0.00,\"\",0.00,84.00,73.00,264.00,,,,,,\n2015,5,10,\"B6\",\"185\",\"ROC\",\"JFK\",-7.00,-10.00,0.00,\"\",0.00,81.00,65.00,264.00,,,,,,\n2015,5,11,\"B6\",\"185\",\"ROC\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,73.00,54.00,264.00,,,,,,\n2015,5,12,\"B6\",\"185\",\"ROC\",\"JFK\",0.00,17.00,0.00,\"\",0.00,101.00,77.00,264.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,13,\"B6\",\"185\",\"ROC\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,74.00,61.00,264.00,,,,,,\n2015,5,14,\"B6\",\"185\",\"ROC\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,78.00,61.00,264.00,,,,,,\n2015,5,15,\"B6\",\"185\",\"ROC\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,73.00,59.00,264.00,,,,,,\n2015,5,16,\"B6\",\"185\",\"ROC\",\"JFK\",-7.00,5.00,0.00,\"\",0.00,96.00,61.00,264.00,,,,,,\n2015,5,17,\"B6\",\"185\",\"ROC\",\"JFK\",-7.00,-9.00,0.00,\"\",0.00,82.00,61.00,264.00,,,,,,\n2015,5,18,\"B6\",\"185\",\"ROC\",\"JFK\",14.00,-3.00,0.00,\"\",0.00,67.00,54.00,264.00,,,,,,\n2015,5,19,\"B6\",\"185\",\"ROC\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,83.00,68.00,264.00,,,,,,\n2015,5,20,\"B6\",\"185\",\"ROC\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,71.00,47.00,264.00,,,,,,\n2015,5,21,\"B6\",\"185\",\"ROC\",\"JFK\",-8.00,-10.00,0.00,\"\",0.00,82.00,71.00,264.00,,,,,,\n2015,5,22,\"B6\",\"185\",\"ROC\",\"JFK\",24.00,10.00,0.00,\"\",0.00,70.00,57.00,264.00,,,,,,\n2015,5,23,\"B6\",\"185\",\"ROC\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,78.00,53.00,264.00,,,,,,\n2015,5,24,\"B6\",\"185\",\"ROC\",\"JFK\",-10.00,-36.00,0.00,\"\",0.00,58.00,46.00,264.00,,,,,,\n2015,5,25,\"B6\",\"185\",\"ROC\",\"JFK\",25.00,3.00,0.00,\"\",0.00,62.00,50.00,264.00,,,,,,\n2015,5,26,\"B6\",\"185\",\"ROC\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,72.00,58.00,264.00,,,,,,\n2015,5,27,\"B6\",\"185\",\"ROC\",\"JFK\",-9.00,-34.00,0.00,\"\",0.00,59.00,49.00,264.00,,,,,,\n2015,5,28,\"B6\",\"185\",\"ROC\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,67.00,51.00,264.00,,,,,,\n2015,5,29,\"B6\",\"185\",\"ROC\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,71.00,57.00,264.00,,,,,,\n2015,5,30,\"B6\",\"185\",\"ROC\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,69.00,58.00,264.00,,,,,,\n2015,5,31,\"B6\",\"185\",\"ROC\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,72.00,59.00,264.00,,,,,,\n2015,5,1,\"B6\",\"189\",\"JFK\",\"SAN\",3.00,-15.00,0.00,\"\",0.00,348.00,304.00,2446.00,,,,,,\n2015,5,2,\"B6\",\"189\",\"JFK\",\"SAN\",-1.00,-32.00,0.00,\"\",0.00,335.00,313.00,2446.00,,,,,,\n2015,5,3,\"B6\",\"189\",\"JFK\",\"SAN\",14.00,-14.00,0.00,\"\",0.00,338.00,317.00,2446.00,,,,,,\n2015,5,4,\"B6\",\"189\",\"JFK\",\"SAN\",1.00,-22.00,0.00,\"\",0.00,343.00,313.00,2446.00,,,,,,\n2015,5,5,\"B6\",\"189\",\"JFK\",\"SAN\",-3.00,-46.00,0.00,\"\",0.00,323.00,305.00,2446.00,,,,,,\n2015,5,6,\"B6\",\"189\",\"JFK\",\"SAN\",0.00,,0.00,\"\",1.00,,,2446.00,,,,,,\n2015,5,7,\"B6\",\"189\",\"JFK\",\"SAN\",-4.00,-17.00,0.00,\"\",0.00,353.00,331.00,2446.00,,,,,,\n2015,5,8,\"B6\",\"189\",\"JFK\",\"SAN\",40.00,34.00,0.00,\"\",0.00,360.00,324.00,2446.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,9,\"B6\",\"189\",\"JFK\",\"SAN\",8.00,11.00,0.00,\"\",0.00,369.00,334.00,2446.00,,,,,,\n2015,5,10,\"B6\",\"189\",\"JFK\",\"SAN\",-5.00,-31.00,0.00,\"\",0.00,340.00,318.00,2446.00,,,,,,\n2015,5,11,\"B6\",\"189\",\"JFK\",\"SAN\",11.00,12.00,0.00,\"\",0.00,367.00,331.00,2446.00,,,,,,\n2015,5,12,\"B6\",\"189\",\"JFK\",\"SAN\",76.00,63.00,0.00,\"\",0.00,353.00,338.00,2446.00,51.00,0.00,0.00,0.00,12.00,\n2015,5,13,\"B6\",\"189\",\"JFK\",\"SAN\",-5.00,8.00,0.00,\"\",0.00,379.00,336.00,2446.00,,,,,,\n2015,5,14,\"B6\",\"189\",\"JFK\",\"SAN\",11.00,5.00,0.00,\"\",0.00,360.00,326.00,2446.00,,,,,,\n2015,5,15,\"B6\",\"189\",\"JFK\",\"SAN\",-2.00,9.00,0.00,\"\",0.00,377.00,330.00,2446.00,,,,,,\n2015,5,16,\"B6\",\"189\",\"JFK\",\"SAN\",2.00,15.00,0.00,\"\",0.00,379.00,326.00,2446.00,2.00,0.00,13.00,0.00,0.00,\n2015,5,17,\"B6\",\"189\",\"JFK\",\"SAN\",15.00,11.00,0.00,\"\",0.00,362.00,336.00,2446.00,,,,,,\n2015,5,18,\"B6\",\"189\",\"JFK\",\"SAN\",-2.00,7.00,0.00,\"\",0.00,375.00,326.00,2446.00,,,,,,\n2015,5,19,\"B6\",\"189\",\"JFK\",\"SAN\",-2.00,7.00,0.00,\"\",0.00,375.00,336.00,2446.00,,,,,,\n2015,5,20,\"B6\",\"189\",\"JFK\",\"SAN\",-7.00,3.00,0.00,\"\",0.00,376.00,337.00,2446.00,,,,,,\n2015,5,21,\"B6\",\"189\",\"JFK\",\"SAN\",-4.00,-6.00,0.00,\"\",0.00,364.00,338.00,2446.00,,,,,,\n2015,5,22,\"B6\",\"189\",\"JFK\",\"SAN\",2.00,39.00,0.00,\"\",0.00,403.00,356.00,2446.00,2.00,0.00,37.00,0.00,0.00,\n2015,5,23,\"B6\",\"189\",\"JFK\",\"SAN\",-6.00,-7.00,0.00,\"\",0.00,365.00,340.00,2446.00,,,,,,\n2015,5,24,\"B6\",\"189\",\"JFK\",\"SAN\",-1.00,-16.00,0.00,\"\",0.00,351.00,331.00,2446.00,,,,,,\n2015,5,25,\"B6\",\"189\",\"JFK\",\"SAN\",-8.00,-30.00,0.00,\"\",0.00,344.00,323.00,2446.00,,,,,,\n2015,5,26,\"B6\",\"189\",\"JFK\",\"SAN\",-7.00,-38.00,0.00,\"\",0.00,335.00,312.00,2446.00,,,,,,\n2015,5,27,\"B6\",\"189\",\"JFK\",\"SAN\",-7.00,-13.00,0.00,\"\",0.00,360.00,326.00,2446.00,,,,,,\n2015,5,28,\"B6\",\"189\",\"JFK\",\"SAN\",-4.00,-23.00,0.00,\"\",0.00,347.00,329.00,2446.00,,,,,,\n2015,5,29,\"B6\",\"189\",\"JFK\",\"SAN\",-6.00,-6.00,0.00,\"\",0.00,366.00,336.00,2446.00,,,,,,\n2015,5,30,\"B6\",\"189\",\"JFK\",\"SAN\",-6.00,-35.00,0.00,\"\",0.00,337.00,309.00,2446.00,,,,,,\n2015,5,31,\"B6\",\"189\",\"JFK\",\"SAN\",-2.00,-25.00,0.00,\"\",0.00,343.00,311.00,2446.00,,,,,,\n2015,5,1,\"B6\",\"190\",\"SAN\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,326.00,304.00,2446.00,,,,,,\n2015,5,2,\"B6\",\"190\",\"SAN\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,316.00,302.00,2446.00,,,,,,\n2015,5,3,\"B6\",\"190\",\"SAN\",\"JFK\",-4.00,-30.00,0.00,\"\",0.00,311.00,298.00,2446.00,,,,,,\n2015,5,4,\"B6\",\"190\",\"SAN\",\"JFK\",-6.00,12.00,0.00,\"\",0.00,355.00,320.00,2446.00,,,,,,\n2015,5,5,\"B6\",\"190\",\"SAN\",\"JFK\",5.00,-23.00,0.00,\"\",0.00,309.00,294.00,2446.00,,,,,,\n2015,5,6,\"B6\",\"190\",\"SAN\",\"JFK\",193.00,175.00,0.00,\"\",0.00,319.00,284.00,2446.00,0.00,0.00,22.00,0.00,153.00,\n2015,5,7,\"B6\",\"190\",\"SAN\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,322.00,296.00,2446.00,,,,,,\n2015,5,8,\"B6\",\"190\",\"SAN\",\"JFK\",40.00,-4.00,0.00,\"\",0.00,293.00,280.00,2446.00,,,,,,\n2015,5,9,\"B6\",\"190\",\"SAN\",\"JFK\",14.00,2.00,0.00,\"\",0.00,325.00,296.00,2446.00,,,,,,\n2015,5,10,\"B6\",\"190\",\"SAN\",\"JFK\",-5.00,-4.00,0.00,\"\",0.00,338.00,310.00,2446.00,,,,,,\n2015,5,11,\"B6\",\"190\",\"SAN\",\"JFK\",119.00,134.00,0.00,\"\",0.00,352.00,315.00,2446.00,0.00,0.00,123.00,0.00,11.00,\n2015,5,12,\"B6\",\"190\",\"SAN\",\"JFK\",61.00,30.00,0.00,\"\",0.00,306.00,275.00,2446.00,0.00,0.00,0.00,0.00,30.00,\n2015,5,13,\"B6\",\"190\",\"SAN\",\"JFK\",17.00,-28.00,0.00,\"\",0.00,292.00,275.00,2446.00,,,,,,\n2015,5,14,\"B6\",\"190\",\"SAN\",\"JFK\",8.00,-15.00,0.00,\"\",0.00,314.00,290.00,2446.00,,,,,,\n2015,5,15,\"B6\",\"190\",\"SAN\",\"JFK\",9.00,-22.00,0.00,\"\",0.00,306.00,286.00,2446.00,,,,,,\n2015,5,16,\"B6\",\"190\",\"SAN\",\"JFK\",32.00,4.00,0.00,\"\",0.00,309.00,290.00,2446.00,,,,,,\n2015,5,17,\"B6\",\"190\",\"SAN\",\"JFK\",13.00,-2.00,0.00,\"\",0.00,322.00,294.00,2446.00,,,,,,\n2015,5,18,\"B6\",\"190\",\"SAN\",\"JFK\",120.00,138.00,0.00,\"\",0.00,355.00,339.00,2446.00,0.00,0.00,132.00,0.00,6.00,\n2015,5,19,\"B6\",\"190\",\"SAN\",\"JFK\",22.00,-13.00,0.00,\"\",0.00,302.00,282.00,2446.00,,,,,,\n2015,5,20,\"B6\",\"190\",\"SAN\",\"JFK\",4.00,-37.00,0.00,\"\",0.00,296.00,268.00,2446.00,,,,,,\n2015,5,21,\"B6\",\"190\",\"SAN\",\"JFK\",-8.00,-35.00,0.00,\"\",0.00,310.00,275.00,2446.00,,,,,,\n2015,5,22,\"B6\",\"190\",\"SAN\",\"JFK\",127.00,73.00,0.00,\"\",0.00,283.00,266.00,2446.00,51.00,0.00,0.00,0.00,22.00,\n2015,5,23,\"B6\",\"190\",\"SAN\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,333.00,307.00,2446.00,,,,,,\n2015,5,24,\"B6\",\"190\",\"SAN\",\"JFK\",-8.00,-30.00,0.00,\"\",0.00,315.00,297.00,2446.00,,,,,,\n2015,5,25,\"B6\",\"190\",\"SAN\",\"JFK\",-11.00,-38.00,0.00,\"\",0.00,310.00,286.00,2446.00,,,,,,\n2015,5,26,\"B6\",\"190\",\"SAN\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,323.00,294.00,2446.00,,,,,,\n2015,5,27,\"B6\",\"190\",\"SAN\",\"JFK\",133.00,165.00,0.00,\"\",0.00,369.00,311.00,2446.00,0.00,0.00,165.00,0.00,0.00,\n2015,5,28,\"B6\",\"190\",\"SAN\",\"JFK\",-9.00,-35.00,0.00,\"\",0.00,311.00,294.00,2446.00,,,,,,\n2015,5,29,\"B6\",\"190\",\"SAN\",\"JFK\",-4.00,-35.00,0.00,\"\",0.00,306.00,291.00,2446.00,,,,,,\n2015,5,30,\"B6\",\"190\",\"SAN\",\"JFK\",7.00,39.00,0.00,\"\",0.00,369.00,342.00,2446.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,31,\"B6\",\"190\",\"SAN\",\"JFK\",113.00,168.00,0.00,\"\",0.00,392.00,350.00,2446.00,0.00,0.00,168.00,0.00,0.00,\n2015,5,1,\"B6\",\"198\",\"MCO\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,147.00,119.00,950.00,,,,,,\n2015,5,2,\"B6\",\"198\",\"MCO\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,147.00,125.00,950.00,,,,,,\n2015,5,3,\"B6\",\"198\",\"MCO\",\"LGA\",-9.00,10.00,0.00,\"\",0.00,175.00,133.00,950.00,,,,,,\n2015,5,4,\"B6\",\"198\",\"MCO\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,159.00,129.00,950.00,,,,,,\n2015,5,5,\"B6\",\"198\",\"MCO\",\"LGA\",-8.00,-4.00,0.00,\"\",0.00,160.00,131.00,950.00,,,,,,\n2015,5,6,\"B6\",\"198\",\"MCO\",\"LGA\",-7.00,-7.00,0.00,\"\",0.00,156.00,123.00,950.00,,,,,,\n2015,5,7,\"B6\",\"198\",\"MCO\",\"LGA\",-7.00,-3.00,0.00,\"\",0.00,160.00,126.00,950.00,,,,,,\n2015,5,8,\"B6\",\"198\",\"MCO\",\"LGA\",-6.00,0.00,0.00,\"\",0.00,162.00,135.00,950.00,,,,,,\n2015,5,9,\"B6\",\"198\",\"MCO\",\"LGA\",-3.00,6.00,0.00,\"\",0.00,165.00,141.00,950.00,,,,,,\n2015,5,10,\"B6\",\"198\",\"MCO\",\"LGA\",-6.00,-2.00,0.00,\"\",0.00,160.00,130.00,950.00,,,,,,\n2015,5,11,\"B6\",\"198\",\"MCO\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,158.00,130.00,950.00,,,,,,\n2015,5,12,\"B6\",\"198\",\"MCO\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,152.00,128.00,950.00,,,,,,\n2015,5,13,\"B6\",\"198\",\"MCO\",\"LGA\",-8.00,-25.00,0.00,\"\",0.00,139.00,117.00,950.00,,,,,,\n2015,5,14,\"B6\",\"198\",\"MCO\",\"LGA\",-10.00,-6.00,0.00,\"\",0.00,160.00,135.00,950.00,,,,,,\n2015,5,15,\"B6\",\"198\",\"MCO\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,147.00,123.00,950.00,,,,,,\n2015,5,16,\"B6\",\"198\",\"MCO\",\"LGA\",-4.00,6.00,0.00,\"\",0.00,166.00,137.00,950.00,,,,,,\n2015,5,17,\"B6\",\"198\",\"MCO\",\"LGA\",-3.00,5.00,0.00,\"\",0.00,164.00,129.00,950.00,,,,,,\n2015,5,18,\"B6\",\"198\",\"MCO\",\"LGA\",-6.00,38.00,0.00,\"\",0.00,200.00,178.00,950.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,19,\"B6\",\"198\",\"MCO\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,150.00,134.00,950.00,,,,,,\n2015,5,20,\"B6\",\"198\",\"MCO\",\"LGA\",-11.00,-19.00,0.00,\"\",0.00,148.00,128.00,950.00,,,,,,\n2015,5,21,\"B6\",\"198\",\"MCO\",\"LGA\",44.00,35.00,0.00,\"\",0.00,147.00,125.00,950.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"B6\",\"198\",\"MCO\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,143.00,116.00,950.00,,,,,,\n2015,5,23,\"B6\",\"198\",\"MCO\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,158.00,126.00,950.00,,,,,,\n2015,5,24,\"B6\",\"198\",\"MCO\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,144.00,127.00,950.00,,,,,,\n2015,5,25,\"B6\",\"198\",\"MCO\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,154.00,124.00,950.00,,,,,,\n2015,5,26,\"B6\",\"198\",\"MCO\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,144.00,129.00,950.00,,,,,,\n2015,5,27,\"B6\",\"198\",\"MCO\",\"LGA\",7.00,13.00,0.00,\"\",0.00,162.00,139.00,950.00,,,,,,\n2015,5,28,\"B6\",\"198\",\"MCO\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,149.00,127.00,950.00,,,,,,\n2015,5,29,\"B6\",\"198\",\"MCO\",\"LGA\",-7.00,-1.00,0.00,\"\",0.00,162.00,126.00,950.00,,,,,,\n2015,5,30,\"B6\",\"198\",\"MCO\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,148.00,129.00,950.00,,,,,,\n2015,5,31,\"B6\",\"198\",\"MCO\",\"LGA\",4.00,-6.00,0.00,\"\",0.00,146.00,125.00,950.00,,,,,,\n2015,5,1,\"B6\",\"199\",\"LGA\",\"MCO\",-3.00,12.00,0.00,\"\",0.00,186.00,140.00,950.00,,,,,,\n2015,5,2,\"B6\",\"199\",\"LGA\",\"MCO\",-5.00,-21.00,0.00,\"\",0.00,155.00,132.00,950.00,,,,,,\n2015,5,3,\"B6\",\"199\",\"LGA\",\"MCO\",-1.00,-12.00,0.00,\"\",0.00,160.00,130.00,950.00,,,,,,\n2015,5,4,\"B6\",\"199\",\"LGA\",\"MCO\",0.00,14.00,0.00,\"\",0.00,185.00,128.00,950.00,,,,,,\n2015,5,5,\"B6\",\"199\",\"LGA\",\"MCO\",-10.00,-20.00,0.00,\"\",0.00,161.00,135.00,950.00,,,,,,\n2015,5,6,\"B6\",\"199\",\"LGA\",\"MCO\",-11.00,7.00,0.00,\"\",0.00,189.00,141.00,950.00,,,,,,\n2015,5,7,\"B6\",\"199\",\"LGA\",\"MCO\",-8.00,-30.00,0.00,\"\",0.00,149.00,128.00,950.00,,,,,,\n2015,5,8,\"B6\",\"199\",\"LGA\",\"MCO\",8.00,4.00,0.00,\"\",0.00,167.00,128.00,950.00,,,,,,\n2015,5,9,\"B6\",\"199\",\"LGA\",\"MCO\",-1.00,-26.00,0.00,\"\",0.00,146.00,120.00,950.00,,,,,,\n2015,5,10,\"B6\",\"199\",\"LGA\",\"MCO\",34.00,12.00,0.00,\"\",0.00,149.00,132.00,950.00,,,,,,\n2015,5,11,\"B6\",\"199\",\"LGA\",\"MCO\",-1.00,-11.00,0.00,\"\",0.00,161.00,128.00,950.00,,,,,,\n2015,5,12,\"B6\",\"199\",\"LGA\",\"MCO\",-2.00,-28.00,0.00,\"\",0.00,145.00,122.00,950.00,,,,,,\n2015,5,13,\"B6\",\"199\",\"LGA\",\"MCO\",-11.00,16.00,0.00,\"\",0.00,198.00,134.00,950.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,14,\"B6\",\"199\",\"LGA\",\"MCO\",9.00,2.00,0.00,\"\",0.00,164.00,123.00,950.00,,,,,,\n2015,5,15,\"B6\",\"199\",\"LGA\",\"MCO\",9.00,-10.00,0.00,\"\",0.00,152.00,134.00,950.00,,,,,,\n2015,5,16,\"B6\",\"199\",\"LGA\",\"MCO\",3.00,0.00,0.00,\"\",0.00,168.00,127.00,950.00,,,,,,\n2015,5,17,\"B6\",\"199\",\"LGA\",\"MCO\",-6.00,-17.00,0.00,\"\",0.00,160.00,128.00,950.00,,,,,,\n2015,5,18,\"B6\",\"199\",\"LGA\",\"MCO\",33.00,6.00,0.00,\"\",0.00,144.00,122.00,950.00,,,,,,\n2015,5,19,\"B6\",\"199\",\"LGA\",\"MCO\",-7.00,-21.00,0.00,\"\",0.00,157.00,129.00,950.00,,,,,,\n2015,5,20,\"B6\",\"199\",\"LGA\",\"MCO\",-10.00,11.00,0.00,\"\",0.00,192.00,130.00,950.00,,,,,,\n2015,5,21,\"B6\",\"199\",\"LGA\",\"MCO\",-1.00,-16.00,0.00,\"\",0.00,156.00,136.00,950.00,,,,,,\n2015,5,22,\"B6\",\"199\",\"LGA\",\"MCO\",-8.00,-8.00,0.00,\"\",0.00,171.00,135.00,950.00,,,,,,\n2015,5,23,\"B6\",\"199\",\"LGA\",\"MCO\",-3.00,-22.00,0.00,\"\",0.00,152.00,131.00,950.00,,,,,,\n2015,5,24,\"B6\",\"199\",\"LGA\",\"MCO\",-7.00,-36.00,0.00,\"\",0.00,142.00,126.00,950.00,,,,,,\n2015,5,25,\"B6\",\"199\",\"LGA\",\"MCO\",-10.00,-34.00,0.00,\"\",0.00,147.00,125.00,950.00,,,,,,\n2015,5,26,\"B6\",\"199\",\"LGA\",\"MCO\",-7.00,-22.00,0.00,\"\",0.00,156.00,127.00,950.00,,,,,,\n2015,5,27,\"B6\",\"199\",\"LGA\",\"MCO\",1.00,-19.00,0.00,\"\",0.00,151.00,128.00,950.00,,,,,,\n2015,5,28,\"B6\",\"199\",\"LGA\",\"MCO\",2.00,0.00,0.00,\"\",0.00,169.00,131.00,950.00,,,,,,\n2015,5,29,\"B6\",\"199\",\"LGA\",\"MCO\",28.00,31.00,0.00,\"\",0.00,174.00,124.00,950.00,2.00,0.00,3.00,0.00,26.00,\n2015,5,30,\"B6\",\"199\",\"LGA\",\"MCO\",0.00,-14.00,0.00,\"\",0.00,157.00,133.00,950.00,,,,,,\n2015,5,31,\"B6\",\"199\",\"LGA\",\"MCO\",-10.00,-34.00,0.00,\"\",0.00,147.00,122.00,950.00,,,,,,\n2015,5,1,\"B6\",\"201\",\"JFK\",\"FLL\",17.00,-10.00,0.00,\"\",0.00,180.00,156.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"201\",\"JFK\",\"FLL\",19.00,-18.00,0.00,\"\",0.00,172.00,146.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"201\",\"JFK\",\"FLL\",-1.00,-29.00,0.00,\"\",0.00,179.00,144.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"201\",\"JFK\",\"FLL\",10.00,-19.00,0.00,\"\",0.00,178.00,151.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"201\",\"JFK\",\"FLL\",-2.00,3.00,0.00,\"\",0.00,212.00,157.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"201\",\"JFK\",\"FLL\",-5.00,-4.00,0.00,\"\",0.00,208.00,150.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"201\",\"JFK\",\"FLL\",5.00,-27.00,0.00,\"\",0.00,175.00,141.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"201\",\"JFK\",\"FLL\",2.00,12.00,0.00,\"\",0.00,217.00,168.00,1069.00,,,,,,\n2015,5,9,\"B6\",\"201\",\"JFK\",\"FLL\",-5.00,-49.00,0.00,\"\",0.00,165.00,141.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"201\",\"JFK\",\"FLL\",-3.00,-7.00,0.00,\"\",0.00,203.00,152.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"201\",\"JFK\",\"FLL\",-2.00,-19.00,0.00,\"\",0.00,190.00,145.00,1069.00,,,,,,\n2015,5,12,\"B6\",\"201\",\"JFK\",\"FLL\",13.00,-14.00,0.00,\"\",0.00,180.00,150.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"201\",\"JFK\",\"FLL\",-5.00,-32.00,0.00,\"\",0.00,180.00,142.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"201\",\"JFK\",\"FLL\",-5.00,-46.00,0.00,\"\",0.00,166.00,140.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"201\",\"JFK\",\"FLL\",0.00,-34.00,0.00,\"\",0.00,173.00,142.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"201\",\"JFK\",\"FLL\",-8.00,-50.00,0.00,\"\",0.00,167.00,136.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"201\",\"JFK\",\"FLL\",-2.00,-39.00,0.00,\"\",0.00,170.00,141.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"201\",\"JFK\",\"FLL\",,,1.00,\"C\",0.00,,,1069.00,,,,,,\n2015,5,19,\"B6\",\"201\",\"JFK\",\"FLL\",-2.00,-24.00,0.00,\"\",0.00,185.00,153.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"201\",\"JFK\",\"FLL\",59.00,29.00,0.00,\"\",0.00,177.00,144.00,1069.00,17.00,0.00,0.00,12.00,0.00,\n2015,5,21,\"B6\",\"201\",\"JFK\",\"FLL\",10.00,-12.00,0.00,\"\",0.00,185.00,155.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"201\",\"JFK\",\"FLL\",-3.00,-37.00,0.00,\"\",0.00,173.00,146.00,1069.00,,,,,,\n2015,5,23,\"B6\",\"201\",\"JFK\",\"FLL\",-1.00,-34.00,0.00,\"\",0.00,176.00,140.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"201\",\"JFK\",\"FLL\",152.00,114.00,0.00,\"\",0.00,169.00,137.00,1069.00,114.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"B6\",\"201\",\"JFK\",\"FLL\",-4.00,-36.00,0.00,\"\",0.00,175.00,143.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"201\",\"JFK\",\"FLL\",6.00,-32.00,0.00,\"\",0.00,169.00,141.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"201\",\"JFK\",\"FLL\",,,1.00,\"C\",0.00,,,1069.00,,,,,,\n2015,5,28,\"B6\",\"201\",\"JFK\",\"FLL\",-2.00,-24.00,0.00,\"\",0.00,185.00,141.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"201\",\"JFK\",\"FLL\",-3.00,-33.00,0.00,\"\",0.00,177.00,136.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"201\",\"JFK\",\"FLL\",-8.00,-35.00,0.00,\"\",0.00,182.00,137.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"201\",\"JFK\",\"FLL\",,,1.00,\"C\",0.00,,,1069.00,,,,,,\n2015,5,1,\"B6\",\"202\",\"FLL\",\"JFK\",12.00,-16.00,0.00,\"\",0.00,155.00,131.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"202\",\"FLL\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,163.00,140.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"202\",\"FLL\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,162.00,140.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"202\",\"FLL\",\"JFK\",11.00,-8.00,0.00,\"\",0.00,164.00,138.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"202\",\"FLL\",\"JFK\",-2.00,-34.00,0.00,\"\",0.00,151.00,132.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"202\",\"FLL\",\"JFK\",20.00,-6.00,0.00,\"\",0.00,157.00,135.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"202\",\"FLL\",\"JFK\",0.00,-27.00,0.00,\"\",0.00,156.00,140.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"202\",\"FLL\",\"JFK\",37.00,46.00,0.00,\"\",0.00,192.00,161.00,1069.00,37.00,0.00,9.00,0.00,0.00,\n2015,5,9,\"B6\",\"202\",\"FLL\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,178.00,154.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"202\",\"FLL\",\"JFK\",1.00,-17.00,0.00,\"\",0.00,165.00,141.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"202\",\"FLL\",\"JFK\",0.00,-20.00,0.00,\"\",0.00,163.00,143.00,1069.00,,,,,,\n2015,5,12,\"B6\",\"202\",\"FLL\",\"JFK\",134.00,107.00,0.00,\"\",0.00,156.00,140.00,1069.00,0.00,0.00,107.00,0.00,0.00,\n2015,5,13,\"B6\",\"202\",\"FLL\",\"JFK\",4.00,-24.00,0.00,\"\",0.00,155.00,137.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"202\",\"FLL\",\"JFK\",13.00,-4.00,0.00,\"\",0.00,166.00,146.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"202\",\"FLL\",\"JFK\",3.00,-26.00,0.00,\"\",0.00,154.00,137.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"202\",\"FLL\",\"JFK\",5.00,-15.00,0.00,\"\",0.00,164.00,150.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"202\",\"FLL\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,160.00,141.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"202\",\"FLL\",\"JFK\",80.00,62.00,0.00,\"\",0.00,165.00,146.00,1069.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,19,\"B6\",\"202\",\"FLL\",\"JFK\",38.00,8.00,0.00,\"\",0.00,153.00,139.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"202\",\"FLL\",\"JFK\",-9.00,-41.00,0.00,\"\",0.00,151.00,137.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"202\",\"FLL\",\"JFK\",-3.00,-37.00,0.00,\"\",0.00,149.00,131.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"202\",\"FLL\",\"JFK\",1.00,-21.00,0.00,\"\",0.00,161.00,134.00,1069.00,,,,,,\n2015,5,23,\"B6\",\"202\",\"FLL\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,165.00,143.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"202\",\"FLL\",\"JFK\",-10.00,-33.00,0.00,\"\",0.00,160.00,142.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"202\",\"FLL\",\"JFK\",16.00,-13.00,0.00,\"\",0.00,154.00,132.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"202\",\"FLL\",\"JFK\",2.00,-24.00,0.00,\"\",0.00,157.00,138.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"202\",\"FLL\",\"JFK\",-3.00,-34.00,0.00,\"\",0.00,152.00,134.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"202\",\"FLL\",\"JFK\",-3.00,-30.00,0.00,\"\",0.00,156.00,137.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"202\",\"FLL\",\"JFK\",9.00,-15.00,0.00,\"\",0.00,159.00,143.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"202\",\"FLL\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,164.00,141.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"202\",\"FLL\",\"JFK\",111.00,87.00,0.00,\"\",0.00,159.00,138.00,1069.00,0.00,0.00,87.00,0.00,0.00,\n2015,5,1,\"B6\",\"207\",\"PWM\",\"JFK\",-10.00,-16.00,0.00,\"\",0.00,73.00,47.00,273.00,,,,,,\n2015,5,2,\"B6\",\"207\",\"PWM\",\"JFK\",-15.00,-28.00,0.00,\"\",0.00,66.00,50.00,273.00,,,,,,\n2015,5,3,\"B6\",\"207\",\"PWM\",\"JFK\",100.00,86.00,0.00,\"\",0.00,65.00,48.00,273.00,0.00,0.00,0.00,0.00,86.00,\n2015,5,4,\"B6\",\"207\",\"PWM\",\"JFK\",-19.00,-33.00,0.00,\"\",0.00,65.00,49.00,273.00,,,,,,\n2015,5,5,\"B6\",\"207\",\"PWM\",\"JFK\",-10.00,-3.00,0.00,\"\",0.00,86.00,62.00,273.00,,,,,,\n2015,5,6,\"B6\",\"207\",\"PWM\",\"JFK\",-10.00,9.00,0.00,\"\",0.00,98.00,50.00,273.00,,,,,,\n2015,5,7,\"B6\",\"207\",\"PWM\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,64.00,47.00,273.00,,,,,,\n2015,5,8,\"B6\",\"207\",\"PWM\",\"JFK\",-13.00,-28.00,0.00,\"\",0.00,64.00,47.00,273.00,,,,,,\n2015,5,9,\"B6\",\"207\",\"PWM\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,73.00,49.00,273.00,,,,,,\n2015,5,10,\"B6\",\"207\",\"PWM\",\"JFK\",-7.00,-6.00,0.00,\"\",0.00,80.00,50.00,273.00,,,,,,\n2015,5,11,\"B6\",\"207\",\"PWM\",\"JFK\",-10.00,5.00,0.00,\"\",0.00,94.00,57.00,273.00,,,,,,\n2015,5,12,\"B6\",\"207\",\"PWM\",\"JFK\",162.00,173.00,0.00,\"\",0.00,90.00,64.00,273.00,0.00,0.00,173.00,0.00,0.00,\n2015,5,13,\"B6\",\"207\",\"PWM\",\"JFK\",-14.00,-29.00,0.00,\"\",0.00,64.00,50.00,273.00,,,,,,\n2015,5,14,\"B6\",\"207\",\"PWM\",\"JFK\",-16.00,-31.00,0.00,\"\",0.00,64.00,46.00,273.00,,,,,,\n2015,5,15,\"B6\",\"207\",\"PWM\",\"JFK\",-10.00,-17.00,0.00,\"\",0.00,72.00,51.00,273.00,,,,,,\n2015,5,16,\"B6\",\"207\",\"PWM\",\"JFK\",80.00,68.00,0.00,\"\",0.00,67.00,50.00,273.00,57.00,0.00,0.00,0.00,11.00,\n2015,5,17,\"B6\",\"207\",\"PWM\",\"JFK\",-15.00,-34.00,0.00,\"\",0.00,60.00,46.00,273.00,,,,,,\n2015,5,18,\"B6\",\"207\",\"PWM\",\"JFK\",173.00,169.00,0.00,\"\",0.00,75.00,56.00,273.00,0.00,0.00,169.00,0.00,0.00,\n2015,5,19,\"B6\",\"207\",\"PWM\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,65.00,49.00,273.00,,,,,,\n2015,5,20,\"B6\",\"207\",\"PWM\",\"JFK\",-10.00,-7.00,0.00,\"\",0.00,82.00,62.00,273.00,,,,,,\n2015,5,21,\"B6\",\"207\",\"PWM\",\"JFK\",-11.00,-16.00,0.00,\"\",0.00,74.00,58.00,273.00,,,,,,\n2015,5,22,\"B6\",\"207\",\"PWM\",\"JFK\",26.00,18.00,0.00,\"\",0.00,71.00,54.00,273.00,2.00,0.00,0.00,0.00,16.00,\n2015,5,23,\"B6\",\"207\",\"PWM\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,63.00,49.00,273.00,,,,,,\n2015,5,24,\"B6\",\"207\",\"PWM\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,68.00,48.00,273.00,,,,,,\n2015,5,25,\"B6\",\"207\",\"PWM\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,61.00,45.00,273.00,,,,,,\n2015,5,26,\"B6\",\"207\",\"PWM\",\"JFK\",-20.00,-36.00,0.00,\"\",0.00,63.00,48.00,273.00,,,,,,\n2015,5,27,\"B6\",\"207\",\"PWM\",\"JFK\",-14.00,4.00,0.00,\"\",0.00,97.00,50.00,273.00,,,,,,\n2015,5,28,\"B6\",\"207\",\"PWM\",\"JFK\",7.00,11.00,0.00,\"\",0.00,83.00,64.00,273.00,,,,,,\n2015,5,29,\"B6\",\"207\",\"PWM\",\"JFK\",-17.00,-40.00,0.00,\"\",0.00,56.00,45.00,273.00,,,,,,\n2015,5,30,\"B6\",\"207\",\"PWM\",\"JFK\",7.00,-2.00,0.00,\"\",0.00,70.00,58.00,273.00,,,,,,\n2015,5,31,\"B6\",\"207\",\"PWM\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,69.00,50.00,273.00,,,,,,\n2015,5,1,\"B6\",\"208\",\"JFK\",\"PWM\",-6.00,-19.00,0.00,\"\",0.00,64.00,48.00,273.00,,,,,,\n2015,5,2,\"B6\",\"208\",\"JFK\",\"PWM\",-4.00,-15.00,0.00,\"\",0.00,66.00,48.00,273.00,,,,,,\n2015,5,3,\"B6\",\"208\",\"JFK\",\"PWM\",113.00,107.00,0.00,\"\",0.00,71.00,48.00,273.00,107.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"208\",\"JFK\",\"PWM\",-6.00,-16.00,0.00,\"\",0.00,67.00,44.00,273.00,,,,,,\n2015,5,5,\"B6\",\"208\",\"JFK\",\"PWM\",-4.00,-20.00,0.00,\"\",0.00,61.00,44.00,273.00,,,,,,\n2015,5,6,\"B6\",\"208\",\"JFK\",\"PWM\",-4.00,-8.00,0.00,\"\",0.00,73.00,52.00,273.00,,,,,,\n2015,5,7,\"B6\",\"208\",\"JFK\",\"PWM\",-5.00,-6.00,0.00,\"\",0.00,76.00,51.00,273.00,,,,,,\n2015,5,8,\"B6\",\"208\",\"JFK\",\"PWM\",0.00,-8.00,0.00,\"\",0.00,69.00,46.00,273.00,,,,,,\n2015,5,9,\"B6\",\"208\",\"JFK\",\"PWM\",-6.00,-9.00,0.00,\"\",0.00,74.00,52.00,273.00,,,,,,\n2015,5,10,\"B6\",\"208\",\"JFK\",\"PWM\",-1.00,-5.00,0.00,\"\",0.00,73.00,50.00,273.00,,,,,,\n2015,5,11,\"B6\",\"208\",\"JFK\",\"PWM\",-4.00,-15.00,0.00,\"\",0.00,66.00,54.00,273.00,,,,,,\n2015,5,12,\"B6\",\"208\",\"JFK\",\"PWM\",-1.00,-15.00,0.00,\"\",0.00,63.00,50.00,273.00,,,,,,\n2015,5,13,\"B6\",\"208\",\"JFK\",\"PWM\",-9.00,-15.00,0.00,\"\",0.00,71.00,49.00,273.00,,,,,,\n2015,5,14,\"B6\",\"208\",\"JFK\",\"PWM\",-4.00,-11.00,0.00,\"\",0.00,70.00,53.00,273.00,,,,,,\n2015,5,15,\"B6\",\"208\",\"JFK\",\"PWM\",1.00,-8.00,0.00,\"\",0.00,68.00,47.00,273.00,,,,,,\n2015,5,16,\"B6\",\"208\",\"JFK\",\"PWM\",24.00,19.00,0.00,\"\",0.00,72.00,47.00,273.00,12.00,0.00,0.00,0.00,7.00,\n2015,5,17,\"B6\",\"208\",\"JFK\",\"PWM\",-6.00,-19.00,0.00,\"\",0.00,64.00,52.00,273.00,,,,,,\n2015,5,18,\"B6\",\"208\",\"JFK\",\"PWM\",-5.00,-8.00,0.00,\"\",0.00,74.00,45.00,273.00,,,,,,\n2015,5,19,\"B6\",\"208\",\"JFK\",\"PWM\",-7.00,-17.00,0.00,\"\",0.00,67.00,49.00,273.00,,,,,,\n2015,5,20,\"B6\",\"208\",\"JFK\",\"PWM\",-7.00,-15.00,0.00,\"\",0.00,69.00,46.00,273.00,,,,,,\n2015,5,21,\"B6\",\"208\",\"JFK\",\"PWM\",-2.00,-17.00,0.00,\"\",0.00,62.00,44.00,273.00,,,,,,\n2015,5,22,\"B6\",\"208\",\"JFK\",\"PWM\",22.00,29.00,0.00,\"\",0.00,84.00,44.00,273.00,22.00,0.00,7.00,0.00,0.00,\n2015,5,23,\"B6\",\"208\",\"JFK\",\"PWM\",0.00,-12.00,0.00,\"\",0.00,65.00,54.00,273.00,,,,,,\n2015,5,24,\"B6\",\"208\",\"JFK\",\"PWM\",-3.00,-10.00,0.00,\"\",0.00,70.00,49.00,273.00,,,,,,\n2015,5,25,\"B6\",\"208\",\"JFK\",\"PWM\",-7.00,-19.00,0.00,\"\",0.00,65.00,46.00,273.00,,,,,,\n2015,5,26,\"B6\",\"208\",\"JFK\",\"PWM\",-10.00,-23.00,0.00,\"\",0.00,64.00,42.00,273.00,,,,,,\n2015,5,27,\"B6\",\"208\",\"JFK\",\"PWM\",-12.00,-20.00,0.00,\"\",0.00,69.00,42.00,273.00,,,,,,\n2015,5,28,\"B6\",\"208\",\"JFK\",\"PWM\",0.00,-5.00,0.00,\"\",0.00,72.00,56.00,273.00,,,,,,\n2015,5,29,\"B6\",\"208\",\"JFK\",\"PWM\",-4.00,-23.00,0.00,\"\",0.00,58.00,42.00,273.00,,,,,,\n2015,5,30,\"B6\",\"208\",\"JFK\",\"PWM\",22.00,8.00,0.00,\"\",0.00,63.00,43.00,273.00,,,,,,\n2015,5,31,\"B6\",\"208\",\"JFK\",\"PWM\",-4.00,-16.00,0.00,\"\",0.00,65.00,46.00,273.00,,,,,,\n2015,5,1,\"B6\",\"211\",\"JFK\",\"LAS\",-4.00,-15.00,0.00,\"\",0.00,321.00,289.00,2248.00,,,,,,\n2015,5,2,\"B6\",\"211\",\"JFK\",\"LAS\",-8.00,-13.00,0.00,\"\",0.00,327.00,294.00,2248.00,,,,,,\n2015,5,3,\"B6\",\"211\",\"JFK\",\"LAS\",-5.00,-17.00,0.00,\"\",0.00,320.00,291.00,2248.00,,,,,,\n2015,5,4,\"B6\",\"211\",\"JFK\",\"LAS\",9.00,0.00,0.00,\"\",0.00,323.00,293.00,2248.00,,,,,,\n2015,5,5,\"B6\",\"211\",\"JFK\",\"LAS\",-3.00,-18.00,0.00,\"\",0.00,317.00,284.00,2248.00,,,,,,\n2015,5,6,\"B6\",\"211\",\"JFK\",\"LAS\",-7.00,-32.00,0.00,\"\",0.00,307.00,282.00,2248.00,,,,,,\n2015,5,7,\"B6\",\"211\",\"JFK\",\"LAS\",-1.00,-9.00,0.00,\"\",0.00,324.00,298.00,2248.00,,,,,,\n2015,5,8,\"B6\",\"211\",\"JFK\",\"LAS\",6.00,12.00,0.00,\"\",0.00,338.00,301.00,2248.00,,,,,,\n2015,5,9,\"B6\",\"211\",\"JFK\",\"LAS\",-6.00,-13.00,0.00,\"\",0.00,325.00,294.00,2248.00,,,,,,\n2015,5,10,\"B6\",\"211\",\"JFK\",\"LAS\",-5.00,-11.00,0.00,\"\",0.00,326.00,297.00,2248.00,,,,,,\n2015,5,11,\"B6\",\"211\",\"JFK\",\"LAS\",36.00,25.00,0.00,\"\",0.00,321.00,298.00,2248.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"B6\",\"211\",\"JFK\",\"LAS\",-4.00,13.00,0.00,\"\",0.00,349.00,324.00,2248.00,,,,,,\n2015,5,13,\"B6\",\"211\",\"JFK\",\"LAS\",-4.00,-2.00,0.00,\"\",0.00,334.00,313.00,2248.00,,,,,,\n2015,5,14,\"B6\",\"211\",\"JFK\",\"LAS\",-3.00,-2.00,0.00,\"\",0.00,333.00,307.00,2248.00,,,,,,\n2015,5,15,\"B6\",\"211\",\"JFK\",\"LAS\",52.00,79.00,0.00,\"\",0.00,359.00,309.00,2248.00,0.00,0.00,27.00,0.00,52.00,\n2015,5,17,\"B6\",\"211\",\"JFK\",\"LAS\",-4.00,-16.00,0.00,\"\",0.00,320.00,301.00,2248.00,,,,,,\n2015,5,18,\"B6\",\"211\",\"JFK\",\"LAS\",-9.00,-17.00,0.00,\"\",0.00,324.00,299.00,2248.00,,,,,,\n2015,5,19,\"B6\",\"211\",\"JFK\",\"LAS\",0.00,14.00,0.00,\"\",0.00,346.00,317.00,2248.00,,,,,,\n2015,5,20,\"B6\",\"211\",\"JFK\",\"LAS\",-1.00,-2.00,0.00,\"\",0.00,331.00,313.00,2248.00,,,,,,\n2015,5,21,\"B6\",\"211\",\"JFK\",\"LAS\",-1.00,10.00,0.00,\"\",0.00,343.00,323.00,2248.00,,,,,,\n2015,5,22,\"B6\",\"211\",\"JFK\",\"LAS\",-3.00,6.00,0.00,\"\",0.00,341.00,316.00,2248.00,,,,,,\n2015,5,24,\"B6\",\"211\",\"JFK\",\"LAS\",0.00,-17.00,0.00,\"\",0.00,315.00,296.00,2248.00,,,,,,\n2015,5,25,\"B6\",\"211\",\"JFK\",\"LAS\",-4.00,-21.00,0.00,\"\",0.00,315.00,294.00,2248.00,,,,,,\n2015,5,26,\"B6\",\"211\",\"JFK\",\"LAS\",1.00,8.00,0.00,\"\",0.00,339.00,300.00,2248.00,,,,,,\n2015,5,27,\"B6\",\"211\",\"JFK\",\"LAS\",-6.00,3.00,0.00,\"\",0.00,341.00,303.00,2248.00,,,,,,\n2015,5,28,\"B6\",\"211\",\"JFK\",\"LAS\",-6.00,-16.00,0.00,\"\",0.00,322.00,301.00,2248.00,,,,,,\n2015,5,29,\"B6\",\"211\",\"JFK\",\"LAS\",-5.00,-4.00,0.00,\"\",0.00,333.00,305.00,2248.00,,,,,,\n2015,5,31,\"B6\",\"211\",\"JFK\",\"LAS\",-2.00,-16.00,0.00,\"\",0.00,318.00,289.00,2248.00,,,,,,\n2015,5,1,\"B6\",\"213\",\"JFK\",\"LGB\",-4.00,-33.00,0.00,\"\",0.00,336.00,312.00,2465.00,,,,,,\n2015,5,2,\"B6\",\"213\",\"JFK\",\"LGB\",1.00,-4.00,0.00,\"\",0.00,360.00,324.00,2465.00,,,,,,\n2015,5,3,\"B6\",\"213\",\"JFK\",\"LGB\",-1.00,-23.00,0.00,\"\",0.00,343.00,315.00,2465.00,,,,,,\n2015,5,4,\"B6\",\"213\",\"JFK\",\"LGB\",4.00,-24.00,0.00,\"\",0.00,337.00,312.00,2465.00,,,,,,\n2015,5,5,\"B6\",\"213\",\"JFK\",\"LGB\",11.00,-24.00,0.00,\"\",0.00,330.00,309.00,2465.00,,,,,,\n2015,5,6,\"B6\",\"213\",\"JFK\",\"LGB\",-5.00,-24.00,0.00,\"\",0.00,346.00,324.00,2465.00,,,,,,\n2015,5,7,\"B6\",\"213\",\"JFK\",\"LGB\",34.00,23.00,0.00,\"\",0.00,354.00,326.00,2465.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"B6\",\"213\",\"JFK\",\"LGB\",46.00,42.00,0.00,\"\",0.00,361.00,334.00,2465.00,7.00,0.00,0.00,0.00,35.00,\n2015,5,9,\"B6\",\"213\",\"JFK\",\"LGB\",-3.00,-24.00,0.00,\"\",0.00,344.00,324.00,2465.00,,,,,,\n2015,5,10,\"B6\",\"213\",\"JFK\",\"LGB\",0.00,-12.00,0.00,\"\",0.00,353.00,329.00,2465.00,,,,,,\n2015,5,11,\"B6\",\"213\",\"JFK\",\"LGB\",10.00,7.00,0.00,\"\",0.00,362.00,335.00,2465.00,,,,,,\n2015,5,12,\"B6\",\"213\",\"JFK\",\"LGB\",15.00,17.00,0.00,\"\",0.00,367.00,350.00,2465.00,15.00,0.00,2.00,0.00,0.00,\n2015,5,13,\"B6\",\"213\",\"JFK\",\"LGB\",7.00,-6.00,0.00,\"\",0.00,352.00,328.00,2465.00,,,,,,\n2015,5,14,\"B6\",\"213\",\"JFK\",\"LGB\",-1.00,-13.00,0.00,\"\",0.00,353.00,334.00,2465.00,,,,,,\n2015,5,15,\"B6\",\"213\",\"JFK\",\"LGB\",-2.00,3.00,0.00,\"\",0.00,370.00,350.00,2465.00,,,,,,\n2015,5,16,\"B6\",\"213\",\"JFK\",\"LGB\",40.00,40.00,0.00,\"\",0.00,365.00,339.00,2465.00,36.00,0.00,0.00,0.00,4.00,\n2015,5,17,\"B6\",\"213\",\"JFK\",\"LGB\",-2.00,-1.00,0.00,\"\",0.00,366.00,339.00,2465.00,,,,,,\n2015,5,18,\"B6\",\"213\",\"JFK\",\"LGB\",17.00,30.00,0.00,\"\",0.00,378.00,340.00,2465.00,6.00,0.00,13.00,0.00,11.00,\n2015,5,19,\"B6\",\"213\",\"JFK\",\"LGB\",4.00,9.00,0.00,\"\",0.00,370.00,343.00,2465.00,,,,,,\n2015,5,20,\"B6\",\"213\",\"JFK\",\"LGB\",133.00,146.00,0.00,\"\",0.00,378.00,351.00,2465.00,133.00,0.00,13.00,0.00,0.00,\n2015,5,21,\"B6\",\"213\",\"JFK\",\"LGB\",-3.00,4.00,0.00,\"\",0.00,372.00,349.00,2465.00,,,,,,\n2015,5,22,\"B6\",\"213\",\"JFK\",\"LGB\",5.00,2.00,0.00,\"\",0.00,362.00,344.00,2465.00,,,,,,\n2015,5,23,\"B6\",\"213\",\"JFK\",\"LGB\",9.00,17.00,0.00,\"\",0.00,373.00,335.00,2465.00,9.00,0.00,8.00,0.00,0.00,\n2015,5,24,\"B6\",\"213\",\"JFK\",\"LGB\",3.00,9.00,0.00,\"\",0.00,371.00,342.00,2465.00,,,,,,\n2015,5,25,\"B6\",\"213\",\"JFK\",\"LGB\",1.00,-13.00,0.00,\"\",0.00,351.00,330.00,2465.00,,,,,,\n2015,5,26,\"B6\",\"213\",\"JFK\",\"LGB\",18.00,2.00,0.00,\"\",0.00,349.00,323.00,2465.00,,,,,,\n2015,5,27,\"B6\",\"106\",\"ORD\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,120.00,98.00,740.00,,,,,,\n2015,5,28,\"B6\",\"106\",\"ORD\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,129.00,100.00,740.00,,,,,,\n2015,5,29,\"B6\",\"106\",\"ORD\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,119.00,99.00,740.00,,,,,,\n2015,5,30,\"B6\",\"106\",\"ORD\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,122.00,105.00,740.00,,,,,,\n2015,5,31,\"B6\",\"106\",\"ORD\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,116.00,101.00,740.00,,,,,,\n2015,5,1,\"B6\",\"108\",\"JFK\",\"PWM\",-10.00,-24.00,0.00,\"\",0.00,68.00,45.00,273.00,,,,,,\n2015,5,2,\"B6\",\"108\",\"JFK\",\"PWM\",-5.00,-9.00,0.00,\"\",0.00,78.00,45.00,273.00,,,,,,\n2015,5,3,\"B6\",\"108\",\"JFK\",\"PWM\",-5.00,-12.00,0.00,\"\",0.00,75.00,47.00,273.00,,,,,,\n2015,5,4,\"B6\",\"108\",\"JFK\",\"PWM\",22.00,25.00,0.00,\"\",0.00,85.00,47.00,273.00,22.00,0.00,3.00,0.00,0.00,\n2015,5,5,\"B6\",\"108\",\"JFK\",\"PWM\",-1.00,-10.00,0.00,\"\",0.00,73.00,44.00,273.00,,,,,,\n2015,5,6,\"B6\",\"108\",\"JFK\",\"PWM\",5.00,-1.00,0.00,\"\",0.00,76.00,48.00,273.00,,,,,,\n2015,5,7,\"B6\",\"108\",\"JFK\",\"PWM\",-7.00,-15.00,0.00,\"\",0.00,74.00,45.00,273.00,,,,,,\n2015,5,8,\"B6\",\"108\",\"JFK\",\"PWM\",-2.00,2.00,0.00,\"\",0.00,86.00,45.00,273.00,,,,,,\n2015,5,9,\"B6\",\"108\",\"JFK\",\"PWM\",18.00,2.00,0.00,\"\",0.00,66.00,43.00,273.00,,,,,,\n2015,5,10,\"B6\",\"108\",\"JFK\",\"PWM\",57.00,45.00,0.00,\"\",0.00,70.00,42.00,273.00,9.00,0.00,0.00,0.00,36.00,\n2015,5,11,\"B6\",\"108\",\"JFK\",\"PWM\",51.00,35.00,0.00,\"\",0.00,66.00,45.00,273.00,0.00,0.00,0.00,0.00,35.00,\n2015,5,12,\"B6\",\"108\",\"JFK\",\"PWM\",5.00,8.00,0.00,\"\",0.00,85.00,47.00,273.00,,,,,,\n2015,5,13,\"B6\",\"108\",\"JFK\",\"PWM\",39.00,31.00,0.00,\"\",0.00,74.00,46.00,273.00,0.00,0.00,0.00,0.00,31.00,\n2015,5,14,\"B6\",\"108\",\"JFK\",\"PWM\",-7.00,-7.00,0.00,\"\",0.00,82.00,45.00,273.00,,,,,,\n2015,5,15,\"B6\",\"108\",\"JFK\",\"PWM\",-2.00,-16.00,0.00,\"\",0.00,68.00,43.00,273.00,,,,,,\n2015,5,16,\"B6\",\"108\",\"JFK\",\"PWM\",121.00,120.00,0.00,\"\",0.00,81.00,63.00,273.00,120.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"108\",\"JFK\",\"PWM\",-4.00,-14.00,0.00,\"\",0.00,72.00,46.00,273.00,,,,,,\n2015,5,18,\"B6\",\"108\",\"JFK\",\"PWM\",8.00,13.00,0.00,\"\",0.00,87.00,42.00,273.00,,,,,,\n2015,5,19,\"B6\",\"108\",\"JFK\",\"PWM\",0.00,4.00,0.00,\"\",0.00,86.00,50.00,273.00,,,,,,\n2015,5,20,\"B6\",\"108\",\"JFK\",\"PWM\",-4.00,-15.00,0.00,\"\",0.00,71.00,45.00,273.00,,,,,,\n2015,5,21,\"B6\",\"108\",\"JFK\",\"PWM\",-10.00,-15.00,0.00,\"\",0.00,77.00,43.00,273.00,,,,,,\n2015,5,22,\"B6\",\"108\",\"JFK\",\"PWM\",23.00,22.00,0.00,\"\",0.00,81.00,51.00,273.00,2.00,0.00,0.00,0.00,20.00,\n2015,5,23,\"B6\",\"108\",\"JFK\",\"PWM\",-3.00,-23.00,0.00,\"\",0.00,62.00,43.00,273.00,,,,,,\n2015,5,24,\"B6\",\"108\",\"JFK\",\"PWM\",-12.00,-20.00,0.00,\"\",0.00,74.00,46.00,273.00,,,,,,\n2015,5,25,\"B6\",\"108\",\"JFK\",\"PWM\",-7.00,-18.00,0.00,\"\",0.00,71.00,45.00,273.00,,,,,,\n2015,5,26,\"B6\",\"108\",\"JFK\",\"PWM\",-13.00,-9.00,0.00,\"\",0.00,86.00,43.00,273.00,,,,,,\n2015,5,27,\"B6\",\"108\",\"JFK\",\"PWM\",-10.00,-22.00,0.00,\"\",0.00,70.00,44.00,273.00,,,,,,\n2015,5,28,\"B6\",\"108\",\"JFK\",\"PWM\",-6.00,-19.00,0.00,\"\",0.00,69.00,41.00,273.00,,,,,,\n2015,5,29,\"B6\",\"108\",\"JFK\",\"PWM\",-15.00,-18.00,0.00,\"\",0.00,79.00,44.00,273.00,,,,,,\n2015,5,30,\"B6\",\"108\",\"JFK\",\"PWM\",57.00,42.00,0.00,\"\",0.00,67.00,44.00,273.00,42.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"B6\",\"108\",\"JFK\",\"PWM\",197.00,188.00,0.00,\"\",0.00,73.00,43.00,273.00,0.00,20.00,0.00,0.00,168.00,\n2015,5,1,\"B6\",\"115\",\"SYR\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,66.00,54.00,209.00,,,,,,\n2015,5,2,\"B6\",\"115\",\"SYR\",\"JFK\",-10.00,-24.00,0.00,\"\",0.00,62.00,47.00,209.00,,,,,,\n2015,5,3,\"B6\",\"115\",\"SYR\",\"JFK\",-12.00,-27.00,0.00,\"\",0.00,61.00,44.00,209.00,,,,,,\n2015,5,4,\"B6\",\"115\",\"SYR\",\"JFK\",-10.00,-22.00,0.00,\"\",0.00,64.00,45.00,209.00,,,,,,\n2015,5,5,\"B6\",\"115\",\"SYR\",\"JFK\",-17.00,-28.00,0.00,\"\",0.00,65.00,48.00,209.00,,,,,,\n2015,5,6,\"B6\",\"115\",\"SYR\",\"JFK\",47.00,36.00,0.00,\"\",0.00,65.00,44.00,209.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"B6\",\"115\",\"SYR\",\"JFK\",-9.00,-26.00,0.00,\"\",0.00,59.00,46.00,209.00,,,,,,\n2015,5,8,\"B6\",\"115\",\"SYR\",\"JFK\",90.00,121.00,0.00,\"\",0.00,107.00,84.00,209.00,0.00,0.00,121.00,0.00,0.00,\n2015,5,9,\"B6\",\"115\",\"SYR\",\"JFK\",18.00,90.00,0.00,\"\",0.00,148.00,54.00,209.00,18.00,0.00,72.00,0.00,0.00,\n2015,5,10,\"B6\",\"115\",\"SYR\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,63.00,45.00,209.00,,,,,,\n2015,5,11,\"B6\",\"115\",\"SYR\",\"JFK\",-12.00,-25.00,0.00,\"\",0.00,63.00,45.00,209.00,,,,,,\n2015,5,12,\"B6\",\"115\",\"SYR\",\"JFK\",-9.00,24.00,0.00,\"\",0.00,109.00,67.00,209.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,13,\"B6\",\"115\",\"SYR\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,66.00,51.00,209.00,,,,,,\n2015,5,14,\"B6\",\"115\",\"SYR\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,61.00,45.00,209.00,,,,,,\n2015,5,15,\"B6\",\"115\",\"SYR\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,59.00,43.00,209.00,,,,,,\n2015,5,16,\"B6\",\"115\",\"SYR\",\"JFK\",-8.00,27.00,0.00,\"\",0.00,111.00,42.00,209.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,17,\"B6\",\"115\",\"SYR\",\"JFK\",-10.00,-11.00,0.00,\"\",0.00,75.00,51.00,209.00,,,,,,\n2015,5,18,\"B6\",\"115\",\"SYR\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,79.00,50.00,209.00,,,,,,\n2015,5,19,\"B6\",\"115\",\"SYR\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,65.00,51.00,209.00,,,,,,\n2015,5,20,\"B6\",\"115\",\"SYR\",\"JFK\",-10.00,-31.00,0.00,\"\",0.00,55.00,41.00,209.00,,,,,,\n2015,5,21,\"B6\",\"115\",\"SYR\",\"JFK\",-8.00,-6.00,0.00,\"\",0.00,78.00,54.00,209.00,,,,,,\n2015,5,22,\"B6\",\"115\",\"SYR\",\"JFK\",-11.00,-24.00,0.00,\"\",0.00,63.00,46.00,209.00,,,,,,\n2015,5,23,\"B6\",\"115\",\"SYR\",\"JFK\",-15.00,-34.00,0.00,\"\",0.00,57.00,45.00,209.00,,,,,,\n2015,5,24,\"B6\",\"115\",\"SYR\",\"JFK\",-8.00,-28.00,0.00,\"\",0.00,56.00,42.00,209.00,,,,,,\n2015,5,25,\"B6\",\"115\",\"SYR\",\"JFK\",-9.00,-24.00,0.00,\"\",0.00,61.00,47.00,209.00,,,,,,\n2015,5,26,\"B6\",\"115\",\"SYR\",\"JFK\",-11.00,-23.00,0.00,\"\",0.00,64.00,44.00,209.00,,,,,,\n2015,5,27,\"B6\",\"115\",\"SYR\",\"JFK\",24.00,18.00,0.00,\"\",0.00,70.00,46.00,209.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"B6\",\"115\",\"SYR\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,63.00,47.00,209.00,,,,,,\n2015,5,29,\"B6\",\"115\",\"SYR\",\"JFK\",-10.00,-28.00,0.00,\"\",0.00,58.00,44.00,209.00,,,,,,\n2015,5,30,\"B6\",\"115\",\"SYR\",\"JFK\",-13.00,-25.00,0.00,\"\",0.00,64.00,45.00,209.00,,,,,,\n2015,5,31,\"B6\",\"115\",\"SYR\",\"JFK\",-8.00,0.00,0.00,\"\",0.00,84.00,54.00,209.00,,,,,,\n2015,5,1,\"B6\",\"116\",\"JFK\",\"SYR\",-7.00,-8.00,0.00,\"\",0.00,77.00,40.00,209.00,,,,,,\n2015,5,2,\"B6\",\"116\",\"JFK\",\"SYR\",-8.00,-22.00,0.00,\"\",0.00,64.00,42.00,209.00,,,,,,\n2015,5,3,\"B6\",\"116\",\"JFK\",\"SYR\",-6.00,-9.00,0.00,\"\",0.00,75.00,45.00,209.00,,,,,,\n2015,5,4,\"B6\",\"116\",\"JFK\",\"SYR\",-8.00,-16.00,0.00,\"\",0.00,70.00,40.00,209.00,,,,,,\n2015,5,5,\"B6\",\"116\",\"JFK\",\"SYR\",-6.00,-18.00,0.00,\"\",0.00,66.00,44.00,209.00,,,,,,\n2015,5,6,\"B6\",\"116\",\"JFK\",\"SYR\",-8.00,-8.00,0.00,\"\",0.00,78.00,48.00,209.00,,,,,,\n2015,5,7,\"B6\",\"116\",\"JFK\",\"SYR\",-6.00,-14.00,0.00,\"\",0.00,70.00,43.00,209.00,,,,,,\n2015,5,8,\"B6\",\"116\",\"JFK\",\"SYR\",28.00,15.00,0.00,\"\",0.00,65.00,43.00,209.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"B6\",\"116\",\"JFK\",\"SYR\",-2.00,-9.00,0.00,\"\",0.00,71.00,40.00,209.00,,,,,,\n2015,5,10,\"B6\",\"116\",\"JFK\",\"SYR\",-1.00,-17.00,0.00,\"\",0.00,62.00,40.00,209.00,,,,,,\n2015,5,11,\"B6\",\"116\",\"JFK\",\"SYR\",-9.00,-6.00,0.00,\"\",0.00,81.00,44.00,209.00,,,,,,\n2015,5,12,\"B6\",\"116\",\"JFK\",\"SYR\",24.00,7.00,0.00,\"\",0.00,61.00,41.00,209.00,,,,,,\n2015,5,13,\"B6\",\"116\",\"JFK\",\"SYR\",-4.00,2.00,0.00,\"\",0.00,84.00,48.00,209.00,,,,,,\n2015,5,14,\"B6\",\"116\",\"JFK\",\"SYR\",14.00,14.00,0.00,\"\",0.00,78.00,46.00,209.00,,,,,,\n2015,5,15,\"B6\",\"116\",\"JFK\",\"SYR\",-4.00,-6.00,0.00,\"\",0.00,76.00,46.00,209.00,,,,,,\n2015,5,16,\"B6\",\"116\",\"JFK\",\"SYR\",61.00,52.00,0.00,\"\",0.00,69.00,43.00,209.00,52.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"116\",\"JFK\",\"SYR\",-5.00,-10.00,0.00,\"\",0.00,73.00,42.00,209.00,,,,,,\n2015,5,18,\"B6\",\"116\",\"JFK\",\"SYR\",-5.00,6.00,0.00,\"\",0.00,89.00,41.00,209.00,,,,,,\n2015,5,19,\"B6\",\"116\",\"JFK\",\"SYR\",0.00,-1.00,0.00,\"\",0.00,77.00,44.00,209.00,,,,,,\n2015,5,20,\"B6\",\"116\",\"JFK\",\"SYR\",-4.00,-3.00,0.00,\"\",0.00,79.00,48.00,209.00,,,,,,\n2015,5,21,\"B6\",\"116\",\"JFK\",\"SYR\",-7.00,-17.00,0.00,\"\",0.00,68.00,46.00,209.00,,,,,,\n2015,5,22,\"B6\",\"116\",\"JFK\",\"SYR\",9.00,23.00,0.00,\"\",0.00,92.00,49.00,209.00,7.00,0.00,14.00,0.00,2.00,\n2015,5,23,\"B6\",\"116\",\"JFK\",\"SYR\",-5.00,-16.00,0.00,\"\",0.00,67.00,48.00,209.00,,,,,,\n2015,5,24,\"B6\",\"116\",\"JFK\",\"SYR\",-10.00,-28.00,0.00,\"\",0.00,60.00,43.00,209.00,,,,,,\n2015,5,25,\"B6\",\"116\",\"JFK\",\"SYR\",-7.00,-13.00,0.00,\"\",0.00,72.00,42.00,209.00,,,,,,\n2015,5,26,\"B6\",\"116\",\"JFK\",\"SYR\",-10.00,-25.00,0.00,\"\",0.00,63.00,40.00,209.00,,,,,,\n2015,5,27,\"B6\",\"116\",\"JFK\",\"SYR\",-3.00,-6.00,0.00,\"\",0.00,75.00,43.00,209.00,,,,,,\n2015,5,28,\"B6\",\"116\",\"JFK\",\"SYR\",-7.00,-1.00,0.00,\"\",0.00,84.00,45.00,209.00,,,,,,\n2015,5,29,\"B6\",\"116\",\"JFK\",\"SYR\",-6.00,-16.00,0.00,\"\",0.00,68.00,39.00,209.00,,,,,,\n2015,5,30,\"B6\",\"116\",\"JFK\",\"SYR\",25.00,2.00,0.00,\"\",0.00,55.00,36.00,209.00,,,,,,\n2015,5,31,\"B6\",\"116\",\"JFK\",\"SYR\",-6.00,-21.00,0.00,\"\",0.00,63.00,38.00,209.00,,,,,,\n2015,5,1,\"B6\",\"117\",\"BOS\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,68.00,49.00,187.00,,,,,,\n2015,5,2,\"B6\",\"117\",\"BOS\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,58.00,38.00,187.00,,,,,,\n2015,5,3,\"B6\",\"117\",\"BOS\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,65.00,41.00,187.00,,,,,,\n2015,5,4,\"B6\",\"117\",\"BOS\",\"JFK\",-1.00,8.00,0.00,\"\",0.00,81.00,41.00,187.00,,,,,,\n2015,5,5,\"B6\",\"117\",\"BOS\",\"JFK\",-10.00,-22.00,0.00,\"\",0.00,60.00,40.00,187.00,,,,,,\n2015,5,6,\"B6\",\"117\",\"BOS\",\"JFK\",33.00,38.00,0.00,\"\",0.00,77.00,63.00,187.00,33.00,0.00,5.00,0.00,0.00,\n2015,5,7,\"B6\",\"117\",\"BOS\",\"JFK\",-4.00,-3.00,0.00,\"\",0.00,73.00,41.00,187.00,,,,,,\n2015,5,8,\"B6\",\"117\",\"BOS\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,63.00,42.00,187.00,,,,,,\n2015,5,9,\"B6\",\"117\",\"BOS\",\"JFK\",8.00,1.00,0.00,\"\",0.00,65.00,41.00,187.00,,,,,,\n2015,5,10,\"B6\",\"117\",\"BOS\",\"JFK\",15.00,22.00,0.00,\"\",0.00,79.00,47.00,187.00,15.00,0.00,7.00,0.00,0.00,\n2015,5,11,\"B6\",\"117\",\"BOS\",\"JFK\",10.00,7.00,0.00,\"\",0.00,69.00,49.00,187.00,,,,,,\n2015,5,12,\"B6\",\"117\",\"BOS\",\"JFK\",-6.00,28.00,0.00,\"\",0.00,106.00,69.00,187.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,13,\"B6\",\"117\",\"BOS\",\"JFK\",-4.00,-2.00,0.00,\"\",0.00,74.00,43.00,187.00,,,,,,\n2015,5,14,\"B6\",\"117\",\"BOS\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,60.00,42.00,187.00,,,,,,\n2015,5,15,\"B6\",\"117\",\"BOS\",\"JFK\",-4.00,-2.00,0.00,\"\",0.00,74.00,43.00,187.00,,,,,,\n2015,5,16,\"B6\",\"117\",\"BOS\",\"JFK\",20.00,11.00,0.00,\"\",0.00,63.00,43.00,187.00,,,,,,\n2015,5,17,\"B6\",\"117\",\"BOS\",\"JFK\",4.00,9.00,0.00,\"\",0.00,77.00,41.00,187.00,,,,,,\n2015,5,18,\"B6\",\"117\",\"BOS\",\"JFK\",16.00,22.00,0.00,\"\",0.00,78.00,51.00,187.00,15.00,0.00,6.00,0.00,1.00,\n2015,5,19,\"B6\",\"117\",\"BOS\",\"JFK\",-1.00,7.00,0.00,\"\",0.00,80.00,40.00,187.00,,,,,,\n2015,5,20,\"B6\",\"117\",\"BOS\",\"JFK\",-6.00,1.00,0.00,\"\",0.00,79.00,52.00,187.00,,,,,,\n2015,5,21,\"B6\",\"117\",\"BOS\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,69.00,47.00,187.00,,,,,,\n2015,5,22,\"B6\",\"117\",\"BOS\",\"JFK\",11.00,1.00,0.00,\"\",0.00,62.00,45.00,187.00,,,,,,\n2015,5,23,\"B6\",\"117\",\"BOS\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,60.00,43.00,187.00,,,,,,\n2015,5,24,\"B6\",\"117\",\"BOS\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,64.00,44.00,187.00,,,,,,\n2015,5,25,\"B6\",\"117\",\"BOS\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,60.00,38.00,187.00,,,,,,\n2015,5,26,\"B6\",\"117\",\"BOS\",\"JFK\",3.00,-12.00,0.00,\"\",0.00,57.00,40.00,187.00,,,,,,\n2015,5,27,\"B6\",\"117\",\"BOS\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,61.00,40.00,187.00,,,,,,\n2015,5,28,\"B6\",\"117\",\"BOS\",\"JFK\",10.00,17.00,0.00,\"\",0.00,79.00,42.00,187.00,10.00,0.00,7.00,0.00,0.00,\n2015,5,29,\"B6\",\"117\",\"BOS\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,63.00,40.00,187.00,,,,,,\n2015,5,30,\"B6\",\"117\",\"BOS\",\"JFK\",0.00,6.00,0.00,\"\",0.00,78.00,41.00,187.00,,,,,,\n2015,5,31,\"B6\",\"117\",\"BOS\",\"JFK\",4.00,-10.00,0.00,\"\",0.00,58.00,40.00,187.00,,,,,,\n2015,5,1,\"B6\",\"118\",\"JFK\",\"BOS\",-3.00,-4.00,0.00,\"\",0.00,75.00,36.00,187.00,,,,,,\n2015,5,3,\"B6\",\"118\",\"JFK\",\"BOS\",-9.00,-16.00,0.00,\"\",0.00,69.00,36.00,187.00,,,,,,\n2015,5,4,\"B6\",\"118\",\"JFK\",\"BOS\",-7.00,-19.00,0.00,\"\",0.00,64.00,40.00,187.00,,,,,,\n2015,5,5,\"B6\",\"118\",\"JFK\",\"BOS\",-7.00,-27.00,0.00,\"\",0.00,56.00,33.00,187.00,,,,,,\n2015,5,6,\"B6\",\"118\",\"JFK\",\"BOS\",16.00,-6.00,0.00,\"\",0.00,54.00,35.00,187.00,,,,,,\n2015,5,7,\"B6\",\"118\",\"JFK\",\"BOS\",-7.00,-28.00,0.00,\"\",0.00,55.00,34.00,187.00,,,,,,\n2015,5,8,\"B6\",\"118\",\"JFK\",\"BOS\",63.00,71.00,0.00,\"\",0.00,84.00,35.00,187.00,10.00,0.00,8.00,0.00,53.00,\n2015,5,10,\"B6\",\"118\",\"JFK\",\"BOS\",6.00,-4.00,0.00,\"\",0.00,66.00,42.00,187.00,,,,,,\n2015,5,11,\"B6\",\"118\",\"JFK\",\"BOS\",-3.00,0.00,0.00,\"\",0.00,79.00,45.00,187.00,,,,,,\n2015,5,12,\"B6\",\"118\",\"JFK\",\"BOS\",,,1.00,\"C\",0.00,,,187.00,,,,,,\n2015,5,13,\"B6\",\"118\",\"JFK\",\"BOS\",-4.00,-24.00,0.00,\"\",0.00,56.00,35.00,187.00,,,,,,\n2015,5,14,\"B6\",\"118\",\"JFK\",\"BOS\",-5.00,-21.00,0.00,\"\",0.00,60.00,45.00,187.00,,,,,,\n2015,5,15,\"B6\",\"118\",\"JFK\",\"BOS\",-4.00,-20.00,0.00,\"\",0.00,60.00,35.00,187.00,,,,,,\n2015,5,17,\"B6\",\"118\",\"JFK\",\"BOS\",-6.00,-24.00,0.00,\"\",0.00,58.00,33.00,187.00,,,,,,\n2015,5,18,\"B6\",\"118\",\"JFK\",\"BOS\",-6.00,-23.00,0.00,\"\",0.00,59.00,34.00,187.00,,,,,,\n2015,5,19,\"B6\",\"118\",\"JFK\",\"BOS\",41.00,50.00,0.00,\"\",0.00,85.00,47.00,187.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,20,\"B6\",\"118\",\"JFK\",\"BOS\",-5.00,-22.00,0.00,\"\",0.00,59.00,41.00,187.00,,,,,,\n2015,5,21,\"B6\",\"118\",\"JFK\",\"BOS\",-3.00,-14.00,0.00,\"\",0.00,65.00,37.00,187.00,,,,,,\n2015,5,22,\"B6\",\"118\",\"JFK\",\"BOS\",-1.00,-8.00,0.00,\"\",0.00,69.00,39.00,187.00,,,,,,\n2015,5,24,\"B6\",\"118\",\"JFK\",\"BOS\",77.00,76.00,0.00,\"\",0.00,75.00,42.00,187.00,76.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"B6\",\"118\",\"JFK\",\"BOS\",-4.00,-21.00,0.00,\"\",0.00,59.00,38.00,187.00,,,,,,\n2015,5,26,\"B6\",\"118\",\"JFK\",\"BOS\",-3.00,-10.00,0.00,\"\",0.00,69.00,39.00,187.00,,,,,,\n2015,5,27,\"B6\",\"118\",\"JFK\",\"BOS\",97.00,78.00,0.00,\"\",0.00,57.00,37.00,187.00,70.00,0.00,0.00,0.00,8.00,\n2015,5,28,\"B6\",\"118\",\"JFK\",\"BOS\",-1.00,-17.00,0.00,\"\",0.00,60.00,37.00,187.00,,,,,,\n2015,5,29,\"B6\",\"118\",\"JFK\",\"BOS\",-4.00,-19.00,0.00,\"\",0.00,61.00,34.00,187.00,,,,,,\n2015,5,31,\"B6\",\"118\",\"JFK\",\"BOS\",27.00,63.00,0.00,\"\",0.00,112.00,76.00,187.00,0.00,0.00,63.00,0.00,0.00,\n2015,5,1,\"B6\",\"123\",\"JFK\",\"LAX\",3.00,-37.00,0.00,\"\",0.00,337.00,309.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"123\",\"JFK\",\"LAX\",-4.00,-37.00,0.00,\"\",0.00,344.00,317.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"123\",\"JFK\",\"LAX\",-2.00,-19.00,0.00,\"\",0.00,360.00,318.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"123\",\"JFK\",\"LAX\",-1.00,-34.00,0.00,\"\",0.00,344.00,315.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"123\",\"JFK\",\"LAX\",-7.00,-28.00,0.00,\"\",0.00,356.00,310.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"123\",\"JFK\",\"LAX\",-3.00,-27.00,0.00,\"\",0.00,353.00,312.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"123\",\"JFK\",\"LAX\",-3.00,-25.00,0.00,\"\",0.00,355.00,325.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"123\",\"JFK\",\"LAX\",-6.00,-30.00,0.00,\"\",0.00,353.00,325.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"123\",\"JFK\",\"LAX\",-3.00,-25.00,0.00,\"\",0.00,355.00,323.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"123\",\"JFK\",\"LAX\",5.00,-39.00,0.00,\"\",0.00,333.00,309.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"123\",\"JFK\",\"LAX\",-4.00,-21.00,0.00,\"\",0.00,360.00,329.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"123\",\"JFK\",\"LAX\",2.00,13.00,0.00,\"\",0.00,388.00,355.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"123\",\"JFK\",\"LAX\",-1.00,-9.00,0.00,\"\",0.00,369.00,335.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"123\",\"JFK\",\"LAX\",-6.00,-20.00,0.00,\"\",0.00,363.00,332.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"123\",\"JFK\",\"LAX\",-5.00,-5.00,0.00,\"\",0.00,377.00,331.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"123\",\"JFK\",\"LAX\",-3.00,29.00,0.00,\"\",0.00,409.00,333.00,2475.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,17,\"B6\",\"123\",\"JFK\",\"LAX\",-2.00,-19.00,0.00,\"\",0.00,360.00,324.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"123\",\"JFK\",\"LAX\",-4.00,-27.00,0.00,\"\",0.00,354.00,323.00,2475.00,,,,,,\n2015,5,19,\"B6\",\"123\",\"JFK\",\"LAX\",-7.00,3.00,0.00,\"\",0.00,387.00,349.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"123\",\"JFK\",\"LAX\",-4.00,-9.00,0.00,\"\",0.00,372.00,344.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"123\",\"JFK\",\"LAX\",6.00,2.00,0.00,\"\",0.00,373.00,345.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"123\",\"JFK\",\"LAX\",-2.00,15.00,0.00,\"\",0.00,394.00,355.00,2475.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,23,\"B6\",\"123\",\"JFK\",\"LAX\",-3.00,-15.00,0.00,\"\",0.00,365.00,340.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"123\",\"JFK\",\"LAX\",-3.00,-15.00,0.00,\"\",0.00,365.00,344.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"123\",\"JFK\",\"LAX\",-6.00,-33.00,0.00,\"\",0.00,350.00,319.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"123\",\"JFK\",\"LAX\",-5.00,-13.00,0.00,\"\",0.00,369.00,322.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"123\",\"JFK\",\"LAX\",-2.00,-26.00,0.00,\"\",0.00,353.00,320.00,2475.00,,,,,,\n2015,5,28,\"B6\",\"123\",\"JFK\",\"LAX\",-1.00,-18.00,0.00,\"\",0.00,360.00,322.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"123\",\"JFK\",\"LAX\",-3.00,-9.00,0.00,\"\",0.00,371.00,331.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"123\",\"JFK\",\"LAX\",-5.00,-40.00,0.00,\"\",0.00,342.00,309.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"123\",\"JFK\",\"LAX\",-4.00,-35.00,0.00,\"\",0.00,346.00,308.00,2475.00,,,,,,\n2015,5,1,\"B6\",\"124\",\"LAX\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,320.00,294.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"124\",\"LAX\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,318.00,297.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"124\",\"LAX\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,315.00,301.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"124\",\"LAX\",\"JFK\",18.00,-5.00,0.00,\"\",0.00,310.00,298.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"124\",\"LAX\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,309.00,293.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"124\",\"LAX\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,322.00,307.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"124\",\"LAX\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,315.00,296.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"124\",\"LAX\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,318.00,302.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"124\",\"LAX\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,321.00,303.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"124\",\"LAX\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,326.00,314.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"124\",\"LAX\",\"JFK\",0.00,2.00,0.00,\"\",0.00,335.00,306.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"124\",\"LAX\",\"JFK\",101.00,60.00,0.00,\"\",0.00,292.00,272.00,2475.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,13,\"B6\",\"124\",\"LAX\",\"JFK\",0.00,-30.00,0.00,\"\",0.00,303.00,276.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"124\",\"LAX\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,314.00,289.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"124\",\"LAX\",\"JFK\",-3.00,-43.00,0.00,\"\",0.00,293.00,281.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"124\",\"LAX\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,317.00,297.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"124\",\"LAX\",\"JFK\",-4.00,-33.00,0.00,\"\",0.00,304.00,289.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"124\",\"LAX\",\"JFK\",6.00,-21.00,0.00,\"\",0.00,306.00,292.00,2475.00,,,,,,\n2015,5,19,\"B6\",\"124\",\"LAX\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,319.00,283.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"124\",\"LAX\",\"JFK\",-4.00,-50.00,0.00,\"\",0.00,287.00,269.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"124\",\"LAX\",\"JFK\",-8.00,-55.00,0.00,\"\",0.00,286.00,269.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"124\",\"LAX\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,318.00,298.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"124\",\"LAX\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,306.00,292.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"124\",\"LAX\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,315.00,297.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"124\",\"LAX\",\"JFK\",-10.00,-16.00,0.00,\"\",0.00,327.00,300.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"124\",\"LAX\",\"JFK\",1.00,-15.00,0.00,\"\",0.00,317.00,300.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"124\",\"LAX\",\"JFK\",0.00,-20.00,0.00,\"\",0.00,313.00,301.00,2475.00,,,,,,\n2015,5,28,\"B6\",\"124\",\"LAX\",\"JFK\",10.00,-18.00,0.00,\"\",0.00,305.00,290.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"124\",\"LAX\",\"JFK\",-6.00,-34.00,0.00,\"\",0.00,305.00,287.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"124\",\"LAX\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,318.00,302.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"124\",\"LAX\",\"JFK\",39.00,77.00,0.00,\"\",0.00,371.00,330.00,2475.00,0.00,0.00,77.00,0.00,0.00,\n2015,5,1,\"B6\",\"135\",\"JFK\",\"PHX\",8.00,,0.00,\"\",1.00,,,2153.00,,,,,,\n2015,5,2,\"B6\",\"135\",\"JFK\",\"PHX\",-3.00,-11.00,0.00,\"\",0.00,333.00,269.00,2153.00,,,,,,\n2015,5,3,\"B6\",\"135\",\"JFK\",\"PHX\",-2.00,-32.00,0.00,\"\",0.00,311.00,282.00,2153.00,,,,,,\n2015,5,4,\"B6\",\"135\",\"JFK\",\"PHX\",-3.00,-35.00,0.00,\"\",0.00,309.00,278.00,2153.00,,,,,,\n2015,5,5,\"B6\",\"135\",\"JFK\",\"PHX\",-5.00,-29.00,0.00,\"\",0.00,317.00,287.00,2153.00,,,,,,\n2015,5,6,\"B6\",\"135\",\"JFK\",\"PHX\",0.00,-9.00,0.00,\"\",0.00,332.00,286.00,2153.00,,,,,,\n2015,5,7,\"B6\",\"135\",\"JFK\",\"PHX\",-4.00,14.00,0.00,\"\",0.00,359.00,320.00,2153.00,,,,,,\n2015,5,8,\"B6\",\"135\",\"JFK\",\"PHX\",-6.00,15.00,0.00,\"\",0.00,362.00,317.00,2153.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,9,\"B6\",\"135\",\"JFK\",\"PHX\",-7.00,-8.00,0.00,\"\",0.00,340.00,299.00,2153.00,,,,,,\n2015,5,10,\"B6\",\"135\",\"JFK\",\"PHX\",3.00,3.00,0.00,\"\",0.00,341.00,313.00,2153.00,,,,,,\n2015,5,11,\"B6\",\"135\",\"JFK\",\"PHX\",0.00,5.00,0.00,\"\",0.00,346.00,307.00,2153.00,,,,,,\n2015,5,12,\"B6\",\"135\",\"JFK\",\"PHX\",-2.00,-7.00,0.00,\"\",0.00,336.00,306.00,2153.00,,,,,,\n2015,5,13,\"B6\",\"135\",\"JFK\",\"PHX\",-1.00,-8.00,0.00,\"\",0.00,334.00,281.00,2153.00,,,,,,\n2015,5,14,\"B6\",\"135\",\"JFK\",\"PHX\",2.00,-15.00,0.00,\"\",0.00,324.00,291.00,2153.00,,,,,,\n2015,5,15,\"B6\",\"135\",\"JFK\",\"PHX\",-3.00,-9.00,0.00,\"\",0.00,335.00,308.00,2153.00,,,,,,\n2015,5,16,\"B6\",\"135\",\"JFK\",\"PHX\",13.00,36.00,0.00,\"\",0.00,364.00,319.00,2153.00,13.00,0.00,23.00,0.00,0.00,\n2015,5,17,\"B6\",\"135\",\"JFK\",\"PHX\",-1.00,-23.00,0.00,\"\",0.00,319.00,282.00,2153.00,,,,,,\n2015,5,18,\"B6\",\"135\",\"JFK\",\"PHX\",-1.00,62.00,0.00,\"\",0.00,404.00,332.00,2153.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,19,\"B6\",\"135\",\"JFK\",\"PHX\",3.00,32.00,0.00,\"\",0.00,370.00,307.00,2153.00,3.00,0.00,29.00,0.00,0.00,\n2015,5,20,\"B6\",\"135\",\"JFK\",\"PHX\",0.00,-6.00,0.00,\"\",0.00,335.00,306.00,2153.00,,,,,,\n2015,5,21,\"B6\",\"135\",\"JFK\",\"PHX\",-4.00,8.00,0.00,\"\",0.00,353.00,308.00,2153.00,,,,,,\n2015,5,22,\"B6\",\"135\",\"JFK\",\"PHX\",11.00,11.00,0.00,\"\",0.00,341.00,299.00,2153.00,,,,,,\n2015,5,23,\"B6\",\"135\",\"JFK\",\"PHX\",-6.00,13.00,0.00,\"\",0.00,360.00,308.00,2153.00,,,,,,\n2015,5,24,\"B6\",\"135\",\"JFK\",\"PHX\",-2.00,-26.00,0.00,\"\",0.00,317.00,291.00,2153.00,,,,,,\n2015,5,25,\"B6\",\"135\",\"JFK\",\"PHX\",-6.00,-20.00,0.00,\"\",0.00,327.00,296.00,2153.00,,,,,,\n2015,5,26,\"B6\",\"135\",\"JFK\",\"PHX\",-4.00,-9.00,0.00,\"\",0.00,336.00,303.00,2153.00,,,,,,\n2015,5,27,\"B6\",\"135\",\"JFK\",\"PHX\",200.00,178.00,0.00,\"\",0.00,319.00,291.00,2153.00,178.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"B6\",\"135\",\"JFK\",\"PHX\",1.00,-10.00,0.00,\"\",0.00,330.00,284.00,2153.00,,,,,,\n2015,5,29,\"B6\",\"135\",\"JFK\",\"PHX\",111.00,89.00,0.00,\"\",0.00,319.00,291.00,2153.00,89.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"B6\",\"135\",\"JFK\",\"PHX\",-7.00,-37.00,0.00,\"\",0.00,311.00,271.00,2153.00,,,,,,\n2015,5,31,\"B6\",\"135\",\"JFK\",\"PHX\",147.00,207.00,0.00,\"\",0.00,401.00,281.00,2153.00,147.00,0.00,60.00,0.00,0.00,\n2015,5,1,\"B6\",\"136\",\"PHX\",\"JFK\",105.00,89.00,0.00,\"\",0.00,274.00,258.00,2153.00,4.00,0.00,0.00,0.00,85.00,\n2015,5,2,\"B6\",\"136\",\"PHX\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,288.00,265.00,2153.00,,,,,,\n2015,5,3,\"B6\",\"136\",\"PHX\",\"JFK\",-5.00,-3.00,0.00,\"\",0.00,292.00,271.00,2153.00,,,,,,\n2015,5,4,\"B6\",\"136\",\"PHX\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,279.00,262.00,2153.00,,,,,,\n2015,5,5,\"B6\",\"136\",\"PHX\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,277.00,261.00,2153.00,,,,,,\n2015,5,6,\"B6\",\"136\",\"PHX\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,277.00,253.00,2153.00,,,,,,\n2015,5,7,\"B6\",\"136\",\"PHX\",\"JFK\",8.00,27.00,0.00,\"\",0.00,309.00,292.00,2153.00,0.00,0.00,19.00,0.00,8.00,\n2015,5,8,\"B6\",\"136\",\"PHX\",\"JFK\",8.00,7.00,0.00,\"\",0.00,289.00,275.00,2153.00,,,,,,\n2015,5,9,\"B6\",\"136\",\"PHX\",\"JFK\",63.00,42.00,0.00,\"\",0.00,269.00,250.00,2153.00,0.00,42.00,0.00,0.00,0.00,\n2015,5,10,\"B6\",\"136\",\"PHX\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,287.00,268.00,2153.00,,,,,,\n2015,5,11,\"B6\",\"136\",\"PHX\",\"JFK\",14.00,22.00,0.00,\"\",0.00,298.00,273.00,2153.00,10.00,0.00,8.00,0.00,4.00,\n2015,5,12,\"B6\",\"136\",\"PHX\",\"JFK\",0.00,-23.00,0.00,\"\",0.00,267.00,245.00,2153.00,,,,,,\n2015,5,13,\"B6\",\"136\",\"PHX\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,280.00,262.00,2153.00,,,,,,\n2015,5,14,\"B6\",\"136\",\"PHX\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,287.00,268.00,2153.00,,,,,,\n2015,5,15,\"B6\",\"136\",\"PHX\",\"JFK\",5.00,-3.00,0.00,\"\",0.00,282.00,261.00,2153.00,,,,,,\n2015,5,16,\"B6\",\"136\",\"PHX\",\"JFK\",30.00,16.00,0.00,\"\",0.00,276.00,260.00,2153.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,17,\"B6\",\"136\",\"PHX\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,270.00,250.00,2153.00,,,,,,\n2015,5,18,\"B6\",\"136\",\"PHX\",\"JFK\",72.00,53.00,0.00,\"\",0.00,271.00,247.00,2153.00,8.00,0.00,0.00,0.00,45.00,\n2015,5,19,\"B6\",\"136\",\"PHX\",\"JFK\",35.00,-1.00,0.00,\"\",0.00,254.00,232.00,2153.00,,,,,,\n2015,5,20,\"B6\",\"136\",\"PHX\",\"JFK\",5.00,-29.00,0.00,\"\",0.00,256.00,238.00,2153.00,,,,,,\n2015,5,21,\"B6\",\"136\",\"PHX\",\"JFK\",7.00,-30.00,0.00,\"\",0.00,253.00,238.00,2153.00,,,,,,\n2015,5,22,\"B6\",\"136\",\"PHX\",\"JFK\",14.00,-7.00,0.00,\"\",0.00,269.00,250.00,2153.00,,,,,,\n2015,5,23,\"B6\",\"136\",\"PHX\",\"JFK\",13.00,-17.00,0.00,\"\",0.00,260.00,246.00,2153.00,,,,,,\n2015,5,24,\"B6\",\"136\",\"PHX\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,280.00,264.00,2153.00,,,,,,\n2015,5,25,\"B6\",\"136\",\"PHX\",\"JFK\",5.00,-1.00,0.00,\"\",0.00,284.00,255.00,2153.00,,,,,,\n2015,5,26,\"B6\",\"136\",\"PHX\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,273.00,257.00,2153.00,,,,,,\n2015,5,27,\"B6\",\"136\",\"PHX\",\"JFK\",199.00,169.00,0.00,\"\",0.00,260.00,244.00,2153.00,19.00,0.00,0.00,0.00,150.00,\n2015,5,28,\"B6\",\"136\",\"PHX\",\"JFK\",28.00,3.00,0.00,\"\",0.00,265.00,250.00,2153.00,,,,,,\n2015,5,29,\"B6\",\"136\",\"PHX\",\"JFK\",98.00,88.00,0.00,\"\",0.00,280.00,267.00,2153.00,9.00,0.00,0.00,0.00,79.00,\n2015,5,30,\"B6\",\"136\",\"PHX\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,284.00,268.00,2153.00,,,,,,\n2015,5,31,\"B6\",\"136\",\"PHX\",\"JFK\",203.00,192.00,0.00,\"\",0.00,279.00,258.00,2153.00,0.00,0.00,0.00,0.00,192.00,\n2015,5,1,\"B6\",\"153\",\"JFK\",\"PBI\",-8.00,-21.00,0.00,\"\",0.00,176.00,148.00,1028.00,,,,,,\n2015,5,2,\"B6\",\"153\",\"JFK\",\"PBI\",-2.00,-33.00,0.00,\"\",0.00,158.00,135.00,1028.00,,,,,,\n2015,5,3,\"B6\",\"153\",\"JFK\",\"PBI\",-1.00,-11.00,0.00,\"\",0.00,179.00,140.00,1028.00,,,,,,\n2015,5,4,\"B6\",\"153\",\"JFK\",\"PBI\",-9.00,-22.00,0.00,\"\",0.00,176.00,137.00,1028.00,,,,,,\n2015,5,5,\"B6\",\"153\",\"JFK\",\"PBI\",-9.00,9.00,0.00,\"\",0.00,207.00,152.00,1028.00,,,,,,\n2015,5,6,\"B6\",\"153\",\"JFK\",\"PBI\",2.00,-22.00,0.00,\"\",0.00,165.00,135.00,1028.00,,,,,,\n2015,5,7,\"B6\",\"153\",\"JFK\",\"PBI\",27.00,2.00,0.00,\"\",0.00,164.00,132.00,1028.00,,,,,,\n2015,5,8,\"B6\",\"153\",\"JFK\",\"PBI\",14.00,2.00,0.00,\"\",0.00,177.00,135.00,1028.00,,,,,,\n2015,5,9,\"B6\",\"153\",\"JFK\",\"PBI\",-2.00,-29.00,0.00,\"\",0.00,162.00,135.00,1028.00,,,,,,\n2015,5,10,\"B6\",\"153\",\"JFK\",\"PBI\",24.00,17.00,0.00,\"\",0.00,182.00,149.00,1028.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"B6\",\"153\",\"JFK\",\"PBI\",-5.00,-21.00,0.00,\"\",0.00,173.00,146.00,1028.00,,,,,,\n2015,5,12,\"B6\",\"153\",\"JFK\",\"PBI\",,,1.00,\"C\",0.00,,,1028.00,,,,,,\n2015,5,13,\"B6\",\"153\",\"JFK\",\"PBI\",-9.00,-45.00,0.00,\"\",0.00,153.00,132.00,1028.00,,,,,,\n2015,5,14,\"B6\",\"153\",\"JFK\",\"PBI\",-2.00,-26.00,0.00,\"\",0.00,165.00,134.00,1028.00,,,,,,\n2015,5,15,\"B6\",\"153\",\"JFK\",\"PBI\",-4.00,-26.00,0.00,\"\",0.00,167.00,139.00,1028.00,,,,,,\n2015,5,16,\"B6\",\"153\",\"JFK\",\"PBI\",-4.00,-35.00,0.00,\"\",0.00,158.00,133.00,1028.00,,,,,,\n2015,5,17,\"B6\",\"153\",\"JFK\",\"PBI\",102.00,82.00,0.00,\"\",0.00,169.00,127.00,1028.00,82.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"153\",\"JFK\",\"PBI\",132.00,168.00,0.00,\"\",0.00,225.00,129.00,1028.00,15.00,0.00,36.00,0.00,117.00,\n2015,5,19,\"B6\",\"153\",\"JFK\",\"PBI\",30.00,49.00,0.00,\"\",0.00,208.00,149.00,1028.00,2.00,0.00,19.00,0.00,28.00,\n2015,5,20,\"B6\",\"153\",\"JFK\",\"PBI\",4.00,-28.00,0.00,\"\",0.00,157.00,133.00,1028.00,,,,,,\n2015,5,21,\"B6\",\"153\",\"JFK\",\"PBI\",66.00,66.00,0.00,\"\",0.00,189.00,147.00,1028.00,66.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"B6\",\"153\",\"JFK\",\"PBI\",41.00,31.00,0.00,\"\",0.00,179.00,141.00,1028.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"153\",\"JFK\",\"PBI\",65.00,39.00,0.00,\"\",0.00,163.00,133.00,1028.00,35.00,0.00,0.00,0.00,4.00,\n2015,5,24,\"B6\",\"153\",\"JFK\",\"PBI\",-9.00,-44.00,0.00,\"\",0.00,154.00,130.00,1028.00,,,,,,\n2015,5,25,\"B6\",\"153\",\"JFK\",\"PBI\",-7.00,-23.00,0.00,\"\",0.00,173.00,139.00,1028.00,,,,,,\n2015,5,26,\"B6\",\"153\",\"JFK\",\"PBI\",-4.00,-31.00,0.00,\"\",0.00,162.00,135.00,1028.00,,,,,,\n2015,5,27,\"B6\",\"153\",\"JFK\",\"PBI\",,,1.00,\"C\",0.00,,,1028.00,,,,,,\n2015,5,28,\"B6\",\"153\",\"JFK\",\"PBI\",-3.00,-35.00,0.00,\"\",0.00,157.00,132.00,1028.00,,,,,,\n2015,5,29,\"B6\",\"153\",\"JFK\",\"PBI\",-5.00,-33.00,0.00,\"\",0.00,161.00,129.00,1028.00,,,,,,\n2015,5,30,\"B6\",\"153\",\"JFK\",\"PBI\",-10.00,-46.00,0.00,\"\",0.00,153.00,128.00,1028.00,,,,,,\n2015,5,31,\"B6\",\"153\",\"JFK\",\"PBI\",141.00,163.00,0.00,\"\",0.00,211.00,129.00,1028.00,0.00,80.00,22.00,0.00,61.00,\n2015,5,1,\"B6\",\"154\",\"PBI\",\"JFK\",-8.00,-31.00,0.00,\"\",0.00,138.00,123.00,1028.00,,,,,,\n2015,5,2,\"B6\",\"154\",\"PBI\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,153.00,126.00,1028.00,,,,,,\n2015,5,3,\"B6\",\"154\",\"PBI\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,145.00,131.00,1028.00,,,,,,\n2015,5,4,\"B6\",\"154\",\"PBI\",\"JFK\",-10.00,-25.00,0.00,\"\",0.00,146.00,129.00,1028.00,,,,,,\n2015,5,5,\"B6\",\"154\",\"PBI\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,144.00,128.00,1028.00,,,,,,\n2015,5,6,\"B6\",\"154\",\"PBI\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,143.00,125.00,1028.00,,,,,,\n2015,5,7,\"B6\",\"154\",\"PBI\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,153.00,140.00,1028.00,,,,,,\n2015,5,8,\"B6\",\"154\",\"PBI\",\"JFK\",-7.00,0.00,0.00,\"\",0.00,168.00,152.00,1028.00,,,,,,\n2015,5,9,\"B6\",\"154\",\"PBI\",\"JFK\",-10.00,2.00,0.00,\"\",0.00,173.00,159.00,1028.00,,,,,,\n2015,5,10,\"B6\",\"154\",\"PBI\",\"JFK\",-10.00,-3.00,0.00,\"\",0.00,168.00,147.00,1028.00,,,,,,\n2015,5,11,\"B6\",\"154\",\"PBI\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,154.00,139.00,1028.00,,,,,,\n2015,5,12,\"B6\",\"154\",\"PBI\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,157.00,141.00,1028.00,,,,,,\n2015,5,13,\"B6\",\"154\",\"PBI\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,146.00,128.00,1028.00,,,,,,\n2015,5,14,\"B6\",\"154\",\"PBI\",\"JFK\",-6.00,0.00,0.00,\"\",0.00,167.00,147.00,1028.00,,,,,,\n2015,5,15,\"B6\",\"154\",\"PBI\",\"JFK\",-10.00,-26.00,0.00,\"\",0.00,145.00,131.00,1028.00,,,,,,\n2015,5,16,\"B6\",\"154\",\"PBI\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,154.00,138.00,1028.00,,,,,,\n2015,5,17,\"B6\",\"154\",\"PBI\",\"JFK\",-5.00,6.00,0.00,\"\",0.00,172.00,137.00,1028.00,,,,,,\n2015,5,18,\"B6\",\"154\",\"PBI\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,160.00,133.00,1028.00,,,,,,\n2015,5,19,\"B6\",\"154\",\"PBI\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,153.00,137.00,1028.00,,,,,,\n2015,5,20,\"B6\",\"154\",\"PBI\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,148.00,133.00,1028.00,,,,,,\n2015,5,21,\"B6\",\"154\",\"PBI\",\"JFK\",-12.00,-27.00,0.00,\"\",0.00,146.00,132.00,1028.00,,,,,,\n2015,5,22,\"B6\",\"154\",\"PBI\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,144.00,129.00,1028.00,,,,,,\n2015,5,23,\"B6\",\"154\",\"PBI\",\"JFK\",-7.00,-2.00,0.00,\"\",0.00,166.00,142.00,1028.00,,,,,,\n2015,5,24,\"B6\",\"154\",\"PBI\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,159.00,137.00,1028.00,,,,,,\n2015,5,25,\"B6\",\"154\",\"PBI\",\"JFK\",-10.00,-15.00,0.00,\"\",0.00,156.00,133.00,1028.00,,,,,,\n2015,5,26,\"B6\",\"154\",\"PBI\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,153.00,132.00,1028.00,,,,,,\n2015,5,27,\"B6\",\"154\",\"PBI\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,143.00,129.00,1028.00,,,,,,\n2015,5,28,\"B6\",\"154\",\"PBI\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,144.00,130.00,1028.00,,,,,,\n2015,5,29,\"B6\",\"154\",\"PBI\",\"JFK\",-8.00,-6.00,0.00,\"\",0.00,163.00,138.00,1028.00,,,,,,\n2015,5,30,\"B6\",\"154\",\"PBI\",\"JFK\",-14.00,-16.00,0.00,\"\",0.00,159.00,138.00,1028.00,,,,,,\n2015,5,31,\"B6\",\"154\",\"PBI\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,151.00,132.00,1028.00,,,,,,\n2015,5,1,\"B6\",\"161\",\"JFK\",\"SMF\",-1.00,-21.00,0.00,\"\",0.00,354.00,330.00,2521.00,,,,,,\n2015,5,2,\"B6\",\"161\",\"JFK\",\"SMF\",-5.00,-29.00,0.00,\"\",0.00,350.00,326.00,2521.00,,,,,,\n2015,5,3,\"B6\",\"161\",\"JFK\",\"SMF\",-8.00,-27.00,0.00,\"\",0.00,355.00,331.00,2521.00,,,,,,\n2015,5,4,\"B6\",\"161\",\"JFK\",\"SMF\",-10.00,-23.00,0.00,\"\",0.00,361.00,326.00,2521.00,,,,,,\n2015,5,5,\"B6\",\"161\",\"JFK\",\"SMF\",-9.00,-41.00,0.00,\"\",0.00,342.00,324.00,2521.00,,,,,,\n2015,5,6,\"B6\",\"161\",\"JFK\",\"SMF\",61.00,53.00,0.00,\"\",0.00,366.00,323.00,2521.00,53.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"B6\",\"161\",\"JFK\",\"SMF\",-5.00,-27.00,0.00,\"\",0.00,352.00,326.00,2521.00,,,,,,\n2015,5,8,\"B6\",\"161\",\"JFK\",\"SMF\",133.00,116.00,0.00,\"\",0.00,357.00,330.00,2521.00,0.00,92.00,0.00,0.00,24.00,\n2015,5,9,\"B6\",\"161\",\"JFK\",\"SMF\",4.00,-26.00,0.00,\"\",0.00,344.00,319.00,2521.00,,,,,,\n2015,5,10,\"B6\",\"161\",\"JFK\",\"SMF\",0.00,-39.00,0.00,\"\",0.00,335.00,318.00,2521.00,,,,,,\n2015,5,11,\"B6\",\"161\",\"JFK\",\"SMF\",-5.00,-4.00,0.00,\"\",0.00,375.00,342.00,2521.00,,,,,,\n2015,5,12,\"B6\",\"161\",\"JFK\",\"SMF\",-8.00,33.00,0.00,\"\",0.00,415.00,365.00,2521.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,13,\"B6\",\"161\",\"JFK\",\"SMF\",-8.00,15.00,0.00,\"\",0.00,397.00,361.00,2521.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,14,\"B6\",\"161\",\"JFK\",\"SMF\",-7.00,-24.00,0.00,\"\",0.00,357.00,330.00,2521.00,,,,,,\n2015,5,15,\"B6\",\"161\",\"JFK\",\"SMF\",-3.00,-19.00,0.00,\"\",0.00,358.00,326.00,2521.00,,,,,,\n2015,5,16,\"B6\",\"161\",\"JFK\",\"SMF\",-3.00,28.00,0.00,\"\",0.00,405.00,331.00,2521.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,17,\"B6\",\"161\",\"JFK\",\"SMF\",-4.00,-26.00,0.00,\"\",0.00,352.00,324.00,2521.00,,,,,,\n2015,5,18,\"B6\",\"161\",\"JFK\",\"SMF\",-6.00,-30.00,0.00,\"\",0.00,350.00,325.00,2521.00,,,,,,\n2015,5,19,\"B6\",\"161\",\"JFK\",\"SMF\",14.00,3.00,0.00,\"\",0.00,363.00,335.00,2521.00,,,,,,\n2015,5,20,\"B6\",\"161\",\"JFK\",\"SMF\",-6.00,-11.00,0.00,\"\",0.00,369.00,341.00,2521.00,,,,,,\n2015,5,21,\"B6\",\"161\",\"JFK\",\"SMF\",-3.00,-6.00,0.00,\"\",0.00,371.00,340.00,2521.00,,,,,,\n2015,5,22,\"B6\",\"161\",\"JFK\",\"SMF\",-4.00,-21.00,0.00,\"\",0.00,357.00,337.00,2521.00,,,,,,\n2015,5,23,\"B6\",\"161\",\"JFK\",\"SMF\",-4.00,-26.00,0.00,\"\",0.00,352.00,332.00,2521.00,,,,,,\n2015,5,24,\"B6\",\"161\",\"JFK\",\"SMF\",-7.00,-33.00,0.00,\"\",0.00,348.00,332.00,2521.00,,,,,,\n2015,5,25,\"B6\",\"161\",\"JFK\",\"SMF\",-5.00,-19.00,0.00,\"\",0.00,360.00,327.00,2521.00,,,,,,\n2015,5,26,\"B6\",\"161\",\"JFK\",\"SMF\",-3.00,-31.00,0.00,\"\",0.00,346.00,323.00,2521.00,,,,,,\n2015,5,27,\"B6\",\"161\",\"JFK\",\"SMF\",-7.00,-29.00,0.00,\"\",0.00,352.00,327.00,2521.00,,,,,,\n2015,5,28,\"B6\",\"161\",\"JFK\",\"SMF\",0.00,-16.00,0.00,\"\",0.00,358.00,336.00,2521.00,,,,,,\n2015,5,29,\"B6\",\"161\",\"JFK\",\"SMF\",-4.00,-21.00,0.00,\"\",0.00,357.00,325.00,2521.00,,,,,,\n2015,5,30,\"B6\",\"161\",\"JFK\",\"SMF\",-7.00,-21.00,0.00,\"\",0.00,360.00,325.00,2521.00,,,,,,\n2015,5,31,\"B6\",\"161\",\"JFK\",\"SMF\",-4.00,-25.00,0.00,\"\",0.00,353.00,330.00,2521.00,,,,,,\n2015,5,1,\"B6\",\"162\",\"SMF\",\"JFK\",16.00,6.00,0.00,\"\",0.00,312.00,294.00,2521.00,,,,,,\n2015,5,2,\"B6\",\"162\",\"SMF\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,313.00,297.00,2521.00,,,,,,\n2015,5,3,\"B6\",\"162\",\"SMF\",\"JFK\",6.00,7.00,0.00,\"\",0.00,323.00,300.00,2521.00,,,,,,\n2015,5,4,\"B6\",\"162\",\"SMF\",\"JFK\",45.00,30.00,0.00,\"\",0.00,307.00,291.00,2521.00,0.00,0.00,0.00,0.00,30.00,\n2015,5,5,\"B6\",\"162\",\"SMF\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,313.00,300.00,2521.00,,,,,,\n2015,5,6,\"B6\",\"162\",\"SMF\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,321.00,301.00,2521.00,,,,,,\n2015,5,7,\"B6\",\"162\",\"SMF\",\"JFK\",8.00,32.00,0.00,\"\",0.00,346.00,334.00,2521.00,8.00,0.00,24.00,0.00,0.00,\n2015,5,8,\"B6\",\"162\",\"SMF\",\"JFK\",0.00,12.00,0.00,\"\",0.00,334.00,313.00,2521.00,,,,,,\n2015,5,9,\"B6\",\"162\",\"SMF\",\"JFK\",13.00,4.00,0.00,\"\",0.00,313.00,300.00,2521.00,,,,,,\n2015,5,10,\"B6\",\"162\",\"SMF\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,304.00,291.00,2521.00,,,,,,\n2015,5,11,\"B6\",\"162\",\"SMF\",\"JFK\",13.00,-17.00,0.00,\"\",0.00,292.00,278.00,2521.00,,,,,,\n2015,5,12,\"B6\",\"162\",\"SMF\",\"JFK\",-1.00,-24.00,0.00,\"\",0.00,299.00,280.00,2521.00,,,,,,\n2015,5,13,\"B6\",\"162\",\"SMF\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,302.00,283.00,2521.00,,,,,,\n2015,5,14,\"B6\",\"162\",\"SMF\",\"JFK\",-4.00,10.00,0.00,\"\",0.00,336.00,308.00,2521.00,,,,,,\n2015,5,15,\"B6\",\"162\",\"SMF\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,308.00,293.00,2521.00,,,,,,\n2015,5,16,\"B6\",\"162\",\"SMF\",\"JFK\",7.00,8.00,0.00,\"\",0.00,323.00,309.00,2521.00,,,,,,\n2015,5,17,\"B6\",\"162\",\"SMF\",\"JFK\",24.00,12.00,0.00,\"\",0.00,310.00,297.00,2521.00,,,,,,\n2015,5,18,\"B6\",\"162\",\"SMF\",\"JFK\",117.00,107.00,0.00,\"\",0.00,312.00,289.00,2521.00,68.00,0.00,0.00,0.00,39.00,\n2015,5,19,\"B6\",\"162\",\"SMF\",\"JFK\",-2.00,-32.00,0.00,\"\",0.00,292.00,278.00,2521.00,,,,,,\n2015,5,20,\"B6\",\"162\",\"SMF\",\"JFK\",12.00,-22.00,0.00,\"\",0.00,288.00,273.00,2521.00,,,,,,\n2015,5,21,\"B6\",\"162\",\"SMF\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,309.00,296.00,2521.00,,,,,,\n2015,5,22,\"B6\",\"162\",\"SMF\",\"JFK\",2.00,-24.00,0.00,\"\",0.00,296.00,281.00,2521.00,,,,,,\n2015,5,23,\"B6\",\"162\",\"SMF\",\"JFK\",93.00,73.00,0.00,\"\",0.00,302.00,289.00,2521.00,0.00,0.00,0.00,0.00,73.00,\n2015,5,24,\"B6\",\"162\",\"SMF\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,317.00,304.00,2521.00,,,,,,\n2015,5,25,\"B6\",\"162\",\"SMF\",\"JFK\",8.00,-2.00,0.00,\"\",0.00,312.00,296.00,2521.00,,,,,,\n2015,5,26,\"B6\",\"162\",\"SMF\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,314.00,297.00,2521.00,,,,,,\n2015,5,27,\"B6\",\"162\",\"SMF\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,319.00,298.00,2521.00,,,,,,\n2015,5,28,\"B6\",\"162\",\"SMF\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,309.00,294.00,2521.00,,,,,,\n2015,5,29,\"B6\",\"162\",\"SMF\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,313.00,300.00,2521.00,,,,,,\n2015,5,30,\"B6\",\"162\",\"SMF\",\"JFK\",-1.00,1.00,0.00,\"\",0.00,324.00,300.00,2521.00,,,,,,\n2015,5,31,\"B6\",\"162\",\"SMF\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,309.00,294.00,2521.00,,,,,,\n2015,5,1,\"B6\",\"163\",\"JFK\",\"SRQ\",-2.00,-10.00,0.00,\"\",0.00,175.00,151.00,1041.00,,,,,,\n2015,5,2,\"B6\",\"163\",\"JFK\",\"SRQ\",-6.00,-17.00,0.00,\"\",0.00,172.00,143.00,1041.00,,,,,,\n2015,5,3,\"B6\",\"163\",\"JFK\",\"SRQ\",-8.00,-18.00,0.00,\"\",0.00,173.00,145.00,1041.00,,,,,,\n2015,5,4,\"B6\",\"163\",\"JFK\",\"SRQ\",-1.00,-19.00,0.00,\"\",0.00,165.00,145.00,1041.00,,,,,,\n2015,5,5,\"B6\",\"163\",\"JFK\",\"SRQ\",-4.00,-17.00,0.00,\"\",0.00,170.00,146.00,1041.00,,,,,,\n2015,5,6,\"B6\",\"163\",\"JFK\",\"SRQ\",27.00,31.00,0.00,\"\",0.00,187.00,151.00,1041.00,27.00,0.00,4.00,0.00,0.00,\n2015,5,7,\"B6\",\"163\",\"JFK\",\"SRQ\",-5.00,-12.00,0.00,\"\",0.00,172.00,146.00,1041.00,,,,,,\n2015,5,8,\"B6\",\"163\",\"JFK\",\"SRQ\",114.00,100.00,0.00,\"\",0.00,169.00,145.00,1041.00,0.00,11.00,0.00,0.00,89.00,\n2015,5,9,\"B6\",\"163\",\"JFK\",\"SRQ\",-8.00,-29.00,0.00,\"\",0.00,162.00,137.00,1041.00,,,,,,\n2015,5,10,\"B6\",\"163\",\"JFK\",\"SRQ\",-6.00,-31.00,0.00,\"\",0.00,158.00,138.00,1041.00,,,,,,\n2015,5,11,\"B6\",\"163\",\"JFK\",\"SRQ\",-6.00,-24.00,0.00,\"\",0.00,165.00,143.00,1041.00,,,,,,\n2015,5,12,\"B6\",\"163\",\"JFK\",\"SRQ\",26.00,29.00,0.00,\"\",0.00,186.00,152.00,1041.00,15.00,0.00,3.00,0.00,11.00,\n2015,5,13,\"B6\",\"163\",\"JFK\",\"SRQ\",-6.00,-16.00,0.00,\"\",0.00,173.00,154.00,1041.00,,,,,,\n2015,5,14,\"B6\",\"163\",\"JFK\",\"SRQ\",0.00,-13.00,0.00,\"\",0.00,170.00,145.00,1041.00,,,,,,\n2015,5,15,\"B6\",\"163\",\"JFK\",\"SRQ\",-10.00,-9.00,0.00,\"\",0.00,184.00,142.00,1041.00,,,,,,\n2015,5,16,\"B6\",\"163\",\"JFK\",\"SRQ\",7.00,-12.00,0.00,\"\",0.00,164.00,140.00,1041.00,,,,,,\n2015,5,17,\"B6\",\"163\",\"JFK\",\"SRQ\",-1.00,-5.00,0.00,\"\",0.00,179.00,144.00,1041.00,,,,,,\n2015,5,18,\"B6\",\"163\",\"JFK\",\"SRQ\",0.00,-18.00,0.00,\"\",0.00,165.00,138.00,1041.00,,,,,,\n2015,5,19,\"B6\",\"163\",\"JFK\",\"SRQ\",19.00,23.00,0.00,\"\",0.00,187.00,147.00,1041.00,19.00,0.00,4.00,0.00,0.00,\n2015,5,20,\"B6\",\"163\",\"JFK\",\"SRQ\",-7.00,-20.00,0.00,\"\",0.00,170.00,146.00,1041.00,,,,,,\n2015,5,21,\"B6\",\"163\",\"JFK\",\"SRQ\",-5.00,-19.00,0.00,\"\",0.00,169.00,151.00,1041.00,,,,,,\n2015,5,22,\"B6\",\"163\",\"JFK\",\"SRQ\",27.00,36.00,0.00,\"\",0.00,192.00,155.00,1041.00,27.00,0.00,9.00,0.00,0.00,\n2015,5,23,\"B6\",\"163\",\"JFK\",\"SRQ\",-6.00,-25.00,0.00,\"\",0.00,164.00,147.00,1041.00,,,,,,\n2015,5,24,\"B6\",\"163\",\"JFK\",\"SRQ\",-6.00,-41.00,0.00,\"\",0.00,148.00,138.00,1041.00,,,,,,\n2015,5,25,\"B6\",\"163\",\"JFK\",\"SRQ\",-4.00,-26.00,0.00,\"\",0.00,161.00,142.00,1041.00,,,,,,\n2015,5,26,\"B6\",\"163\",\"JFK\",\"SRQ\",-1.00,-13.00,0.00,\"\",0.00,171.00,142.00,1041.00,,,,,,\n2015,5,27,\"B6\",\"163\",\"JFK\",\"SRQ\",-9.00,-26.00,0.00,\"\",0.00,166.00,145.00,1041.00,,,,,,\n2015,5,28,\"B6\",\"163\",\"JFK\",\"SRQ\",-1.00,-4.00,0.00,\"\",0.00,180.00,144.00,1041.00,,,,,,\n2015,5,29,\"B6\",\"163\",\"JFK\",\"SRQ\",-6.00,-19.00,0.00,\"\",0.00,170.00,140.00,1041.00,,,,,,\n2015,5,30,\"B6\",\"163\",\"JFK\",\"SRQ\",-10.00,-24.00,0.00,\"\",0.00,169.00,145.00,1041.00,,,,,,\n2015,5,31,\"B6\",\"163\",\"JFK\",\"SRQ\",2.00,-16.00,0.00,\"\",0.00,165.00,140.00,1041.00,,,,,,\n2015,5,1,\"B6\",\"164\",\"SRQ\",\"JFK\",13.00,,1.00,\"A\",0.00,,,1041.00,,,,,,\n2015,5,2,\"B6\",\"164\",\"SRQ\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,156.00,142.00,1041.00,,,,,,\n2015,5,3,\"B6\",\"164\",\"SRQ\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,161.00,143.00,1041.00,,,,,,\n2015,5,4,\"B6\",\"164\",\"SRQ\",\"JFK\",-9.00,-19.00,0.00,\"\",0.00,160.00,142.00,1041.00,,,,,,\n2015,5,5,\"B6\",\"164\",\"SRQ\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,148.00,133.00,1041.00,,,,,,\n2015,5,6,\"B6\",\"164\",\"SRQ\",\"JFK\",34.00,15.00,0.00,\"\",0.00,151.00,137.00,1041.00,4.00,0.00,0.00,0.00,11.00,\n2015,5,7,\"B6\",\"164\",\"SRQ\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,157.00,140.00,1041.00,,,,,,\n2015,5,8,\"B6\",\"164\",\"SRQ\",\"JFK\",101.00,94.00,0.00,\"\",0.00,163.00,147.00,1041.00,7.00,0.00,0.00,0.00,87.00,\n2015,5,9,\"B6\",\"164\",\"SRQ\",\"JFK\",-12.00,-18.00,0.00,\"\",0.00,164.00,148.00,1041.00,,,,,,\n2015,5,10,\"B6\",\"164\",\"SRQ\",\"JFK\",-15.00,-20.00,0.00,\"\",0.00,165.00,148.00,1041.00,,,,,,\n2015,5,11,\"B6\",\"164\",\"SRQ\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,165.00,147.00,1041.00,,,,,,\n2015,5,12,\"B6\",\"164\",\"SRQ\",\"JFK\",115.00,110.00,0.00,\"\",0.00,165.00,142.00,1041.00,0.00,0.00,89.00,0.00,21.00,\n2015,5,13,\"B6\",\"164\",\"SRQ\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,150.00,136.00,1041.00,,,,,,\n2015,5,14,\"B6\",\"164\",\"SRQ\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,164.00,145.00,1041.00,,,,,,\n2015,5,15,\"B6\",\"164\",\"SRQ\",\"JFK\",-11.00,-23.00,0.00,\"\",0.00,158.00,144.00,1041.00,,,,,,\n2015,5,16,\"B6\",\"164\",\"SRQ\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,165.00,148.00,1041.00,,,,,,\n2015,5,17,\"B6\",\"164\",\"SRQ\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,162.00,141.00,1041.00,,,,,,\n2015,5,18,\"B6\",\"164\",\"SRQ\",\"JFK\",50.00,57.00,0.00,\"\",0.00,177.00,144.00,1041.00,0.00,0.00,57.00,0.00,0.00,\n2015,5,19,\"B6\",\"164\",\"SRQ\",\"JFK\",32.00,15.00,0.00,\"\",0.00,153.00,141.00,1041.00,7.00,0.00,0.00,0.00,8.00,\n2015,5,20,\"B6\",\"164\",\"SRQ\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,159.00,143.00,1041.00,,,,,,\n2015,5,21,\"B6\",\"164\",\"SRQ\",\"JFK\",-9.00,-35.00,0.00,\"\",0.00,144.00,132.00,1041.00,,,,,,\n2015,5,22,\"B6\",\"164\",\"SRQ\",\"JFK\",34.00,19.00,0.00,\"\",0.00,155.00,140.00,1041.00,3.00,0.00,0.00,0.00,16.00,\n2015,5,23,\"B6\",\"164\",\"SRQ\",\"JFK\",-15.00,-31.00,0.00,\"\",0.00,154.00,135.00,1041.00,,,,,,\n2015,5,24,\"B6\",\"164\",\"SRQ\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,154.00,144.00,1041.00,,,,,,\n2015,5,25,\"B6\",\"164\",\"SRQ\",\"JFK\",-20.00,-40.00,0.00,\"\",0.00,150.00,138.00,1041.00,,,,,,\n2015,5,26,\"B6\",\"164\",\"SRQ\",\"JFK\",-11.00,-30.00,0.00,\"\",0.00,151.00,135.00,1041.00,,,,,,\n2015,5,27,\"B6\",\"164\",\"SRQ\",\"JFK\",-10.00,-32.00,0.00,\"\",0.00,148.00,135.00,1041.00,,,,,,\n2015,5,28,\"B6\",\"164\",\"SRQ\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,157.00,142.00,1041.00,,,,,,\n2015,5,29,\"B6\",\"164\",\"SRQ\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,169.00,152.00,1041.00,,,,,,\n2015,5,30,\"B6\",\"164\",\"SRQ\",\"JFK\",-15.00,-18.00,0.00,\"\",0.00,167.00,151.00,1041.00,,,,,,\n2015,5,31,\"B6\",\"164\",\"SRQ\",\"JFK\",40.00,31.00,0.00,\"\",0.00,161.00,140.00,1041.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,1,\"B6\",\"167\",\"JFK\",\"OAK\",45.00,35.00,0.00,\"\",0.00,378.00,334.00,2576.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"B6\",\"167\",\"JFK\",\"OAK\",11.00,-15.00,0.00,\"\",0.00,362.00,335.00,2576.00,,,,,,\n2015,5,3,\"B6\",\"167\",\"JFK\",\"OAK\",-2.00,-21.00,0.00,\"\",0.00,369.00,330.00,2576.00,,,,,,\n2015,5,4,\"B6\",\"167\",\"JFK\",\"OAK\",-6.00,-29.00,0.00,\"\",0.00,365.00,330.00,2576.00,,,,,,\n2015,5,5,\"B6\",\"167\",\"JFK\",\"OAK\",-9.00,-45.00,0.00,\"\",0.00,352.00,322.00,2576.00,,,,,,\n2015,5,6,\"B6\",\"167\",\"JFK\",\"OAK\",-4.00,-36.00,0.00,\"\",0.00,356.00,320.00,2576.00,,,,,,\n2015,5,7,\"B6\",\"167\",\"JFK\",\"OAK\",-3.00,-22.00,0.00,\"\",0.00,369.00,326.00,2576.00,,,,,,\n2015,5,8,\"B6\",\"167\",\"JFK\",\"OAK\",3.00,-28.00,0.00,\"\",0.00,357.00,325.00,2576.00,,,,,,\n2015,5,9,\"B6\",\"167\",\"JFK\",\"OAK\",7.00,-7.00,0.00,\"\",0.00,374.00,338.00,2576.00,,,,,,\n2015,5,10,\"B6\",\"167\",\"JFK\",\"OAK\",-8.00,-24.00,0.00,\"\",0.00,372.00,344.00,2576.00,,,,,,\n2015,5,11,\"B6\",\"167\",\"JFK\",\"OAK\",10.00,1.00,0.00,\"\",0.00,379.00,344.00,2576.00,,,,,,\n2015,5,12,\"B6\",\"167\",\"JFK\",\"OAK\",-7.00,3.00,0.00,\"\",0.00,398.00,364.00,2576.00,,,,,,\n2015,5,13,\"B6\",\"167\",\"JFK\",\"OAK\",-3.00,-20.00,0.00,\"\",0.00,371.00,350.00,2576.00,,,,,,\n2015,5,14,\"B6\",\"167\",\"JFK\",\"OAK\",-3.00,-6.00,0.00,\"\",0.00,385.00,343.00,2576.00,,,,,,\n2015,5,15,\"B6\",\"167\",\"JFK\",\"OAK\",17.00,26.00,0.00,\"\",0.00,397.00,346.00,2576.00,17.00,0.00,9.00,0.00,0.00,\n2015,5,16,\"B6\",\"167\",\"JFK\",\"OAK\",-4.00,67.00,0.00,\"\",0.00,459.00,337.00,2576.00,0.00,0.00,67.00,0.00,0.00,\n2015,5,17,\"B6\",\"167\",\"JFK\",\"OAK\",3.00,-14.00,0.00,\"\",0.00,371.00,333.00,2576.00,,,,,,\n2015,5,18,\"B6\",\"167\",\"JFK\",\"OAK\",-2.00,-12.00,0.00,\"\",0.00,378.00,332.00,2576.00,,,,,,\n2015,5,19,\"B6\",\"167\",\"JFK\",\"OAK\",-4.00,9.00,0.00,\"\",0.00,401.00,351.00,2576.00,,,,,,\n2015,5,20,\"B6\",\"167\",\"JFK\",\"OAK\",-5.00,34.00,0.00,\"\",0.00,427.00,380.00,2576.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,21,\"B6\",\"167\",\"JFK\",\"OAK\",-2.00,3.00,0.00,\"\",0.00,393.00,363.00,2576.00,,,,,,\n2015,5,22,\"B6\",\"167\",\"JFK\",\"OAK\",-9.00,-26.00,0.00,\"\",0.00,371.00,340.00,2576.00,,,,,,\n2015,5,23,\"B6\",\"167\",\"JFK\",\"OAK\",-5.00,-28.00,0.00,\"\",0.00,365.00,339.00,2576.00,,,,,,\n2015,5,24,\"B6\",\"167\",\"JFK\",\"OAK\",-8.00,-37.00,0.00,\"\",0.00,359.00,331.00,2576.00,,,,,,\n2015,5,25,\"B6\",\"167\",\"JFK\",\"OAK\",87.00,59.00,0.00,\"\",0.00,360.00,333.00,2576.00,59.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"B6\",\"167\",\"JFK\",\"OAK\",-5.00,-28.00,0.00,\"\",0.00,365.00,331.00,2576.00,,,,,,\n2015,5,27,\"B6\",\"167\",\"JFK\",\"OAK\",-7.00,-14.00,0.00,\"\",0.00,381.00,335.00,2576.00,,,,,,\n2015,5,28,\"B6\",\"167\",\"JFK\",\"OAK\",66.00,53.00,0.00,\"\",0.00,375.00,342.00,2576.00,48.00,0.00,0.00,0.00,5.00,\n2015,5,29,\"B6\",\"167\",\"JFK\",\"OAK\",33.00,14.00,0.00,\"\",0.00,369.00,338.00,2576.00,,,,,,\n2015,5,30,\"B6\",\"167\",\"JFK\",\"OAK\",-3.00,-20.00,0.00,\"\",0.00,371.00,332.00,2576.00,,,,,,\n2015,5,31,\"B6\",\"167\",\"JFK\",\"OAK\",-3.00,-26.00,0.00,\"\",0.00,365.00,335.00,2576.00,,,,,,\n2015,5,1,\"B6\",\"168\",\"OAK\",\"JFK\",-9.00,-9.00,0.00,\"\",0.00,327.00,307.00,2576.00,,,,,,\n2015,5,2,\"B6\",\"168\",\"OAK\",\"JFK\",-9.00,-11.00,0.00,\"\",0.00,325.00,308.00,2576.00,,,,,,\n2015,5,3,\"B6\",\"168\",\"OAK\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,324.00,311.00,2576.00,,,,,,\n2015,5,4,\"B6\",\"168\",\"OAK\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,313.00,300.00,2576.00,,,,,,\n2015,5,5,\"B6\",\"168\",\"OAK\",\"JFK\",-7.00,-5.00,0.00,\"\",0.00,329.00,309.00,2576.00,,,,,,\n2015,5,6,\"B6\",\"168\",\"OAK\",\"JFK\",0.00,4.00,0.00,\"\",0.00,331.00,312.00,2576.00,,,,,,\n2015,5,7,\"B6\",\"168\",\"OAK\",\"JFK\",0.00,50.00,0.00,\"\",0.00,377.00,355.00,2576.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,8,\"B6\",\"168\",\"OAK\",\"JFK\",26.00,37.00,0.00,\"\",0.00,338.00,320.00,2576.00,2.00,0.00,11.00,0.00,24.00,\n2015,5,9,\"B6\",\"168\",\"OAK\",\"JFK\",-11.00,2.00,0.00,\"\",0.00,340.00,318.00,2576.00,,,,,,\n2015,5,10,\"B6\",\"168\",\"OAK\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,313.00,297.00,2576.00,,,,,,\n2015,5,11,\"B6\",\"168\",\"OAK\",\"JFK\",-2.00,-28.00,0.00,\"\",0.00,301.00,283.00,2576.00,,,,,,\n2015,5,12,\"B6\",\"168\",\"OAK\",\"JFK\",-9.00,-17.00,0.00,\"\",0.00,319.00,289.00,2576.00,,,,,,\n2015,5,13,\"B6\",\"168\",\"OAK\",\"JFK\",-4.00,-27.00,0.00,\"\",0.00,304.00,288.00,2576.00,,,,,,\n2015,5,14,\"B6\",\"168\",\"OAK\",\"JFK\",-3.00,-1.00,0.00,\"\",0.00,329.00,308.00,2576.00,,,,,,\n2015,5,15,\"B6\",\"168\",\"OAK\",\"JFK\",8.00,22.00,0.00,\"\",0.00,341.00,320.00,2576.00,0.00,0.00,14.00,0.00,8.00,\n2015,5,16,\"B6\",\"168\",\"OAK\",\"JFK\",-3.00,3.00,0.00,\"\",0.00,333.00,311.00,2576.00,,,,,,\n2015,5,17,\"B6\",\"168\",\"OAK\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,316.00,298.00,2576.00,,,,,,\n2015,5,18,\"B6\",\"168\",\"OAK\",\"JFK\",-10.00,-16.00,0.00,\"\",0.00,321.00,303.00,2576.00,,,,,,\n2015,5,19,\"B6\",\"168\",\"OAK\",\"JFK\",-7.00,-40.00,0.00,\"\",0.00,294.00,278.00,2576.00,,,,,,\n2015,5,20,\"B6\",\"168\",\"OAK\",\"JFK\",8.00,-23.00,0.00,\"\",0.00,296.00,282.00,2576.00,,,,,,\n2015,5,21,\"B6\",\"168\",\"OAK\",\"JFK\",6.00,-3.00,0.00,\"\",0.00,318.00,302.00,2576.00,,,,,,\n2015,5,22,\"B6\",\"168\",\"OAK\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,313.00,300.00,2576.00,,,,,,\n2015,5,23,\"B6\",\"168\",\"OAK\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,309.00,297.00,2576.00,,,,,,\n2015,5,24,\"B6\",\"168\",\"OAK\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,320.00,308.00,2576.00,,,,,,\n2015,5,25,\"B6\",\"168\",\"OAK\",\"JFK\",316.00,302.00,0.00,\"\",0.00,313.00,303.00,2576.00,0.00,0.00,0.00,0.00,302.00,\n2015,5,26,\"B6\",\"168\",\"OAK\",\"JFK\",16.00,7.00,0.00,\"\",0.00,318.00,305.00,2576.00,,,,,,\n2015,5,27,\"B6\",\"168\",\"OAK\",\"JFK\",7.00,-3.00,0.00,\"\",0.00,317.00,302.00,2576.00,,,,,,\n2015,5,28,\"B6\",\"168\",\"OAK\",\"JFK\",-9.00,-3.00,0.00,\"\",0.00,333.00,305.00,2576.00,,,,,,\n2015,5,29,\"B6\",\"168\",\"OAK\",\"JFK\",-4.00,-3.00,0.00,\"\",0.00,328.00,309.00,2576.00,,,,,,\n2015,5,30,\"B6\",\"168\",\"OAK\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,318.00,303.00,2576.00,,,,,,\n2015,5,31,\"B6\",\"168\",\"OAK\",\"JFK\",18.00,14.00,0.00,\"\",0.00,323.00,308.00,2576.00,,,,,,\n2015,5,1,\"B6\",\"395\",\"HPN\",\"MCO\",-11.00,-7.00,0.00,\"\",0.00,163.00,144.00,972.00,,,,,,\n2015,5,2,\"B6\",\"395\",\"HPN\",\"MCO\",-6.00,-17.00,0.00,\"\",0.00,148.00,131.00,972.00,,,,,,\n2015,5,3,\"B6\",\"395\",\"HPN\",\"MCO\",-10.00,-20.00,0.00,\"\",0.00,149.00,129.00,972.00,,,,,,\n2015,5,4,\"B6\",\"395\",\"HPN\",\"MCO\",-9.00,-14.00,0.00,\"\",0.00,154.00,136.00,972.00,,,,,,\n2015,5,5,\"B6\",\"395\",\"HPN\",\"MCO\",3.00,6.00,0.00,\"\",0.00,162.00,140.00,972.00,,,,,,\n2015,5,6,\"B6\",\"395\",\"HPN\",\"MCO\",16.00,26.00,0.00,\"\",0.00,169.00,145.00,972.00,10.00,0.00,10.00,0.00,6.00,\n2015,5,7,\"B6\",\"395\",\"HPN\",\"MCO\",0.00,-2.00,0.00,\"\",0.00,157.00,135.00,972.00,,,,,,\n2015,5,8,\"B6\",\"395\",\"HPN\",\"MCO\",-3.00,-10.00,0.00,\"\",0.00,152.00,130.00,972.00,,,,,,\n2015,5,9,\"B6\",\"395\",\"HPN\",\"MCO\",5.00,-4.00,0.00,\"\",0.00,150.00,124.00,972.00,,,,,,\n2015,5,10,\"B6\",\"395\",\"HPN\",\"MCO\",3.00,-4.00,0.00,\"\",0.00,152.00,137.00,972.00,,,,,,\n2015,5,11,\"B6\",\"395\",\"HPN\",\"MCO\",-12.00,-14.00,0.00,\"\",0.00,157.00,132.00,972.00,,,,,,\n2015,5,12,\"B6\",\"395\",\"HPN\",\"MCO\",64.00,78.00,0.00,\"\",0.00,173.00,135.00,972.00,12.00,0.00,14.00,0.00,52.00,\n2015,5,13,\"B6\",\"395\",\"HPN\",\"MCO\",-20.00,-24.00,0.00,\"\",0.00,155.00,134.00,972.00,,,,,,\n2015,5,14,\"B6\",\"395\",\"HPN\",\"MCO\",0.00,-19.00,0.00,\"\",0.00,140.00,125.00,972.00,,,,,,\n2015,5,15,\"B6\",\"395\",\"HPN\",\"MCO\",-7.00,-9.00,0.00,\"\",0.00,157.00,142.00,972.00,,,,,,\n2015,5,16,\"B6\",\"395\",\"HPN\",\"MCO\",-10.00,-20.00,0.00,\"\",0.00,149.00,130.00,972.00,,,,,,\n2015,5,17,\"B6\",\"395\",\"HPN\",\"MCO\",-4.00,-12.00,0.00,\"\",0.00,151.00,127.00,972.00,,,,,,\n2015,5,18,\"B6\",\"395\",\"HPN\",\"MCO\",-7.00,-15.00,0.00,\"\",0.00,151.00,126.00,972.00,,,,,,\n2015,5,19,\"B6\",\"395\",\"HPN\",\"MCO\",-2.00,-12.00,0.00,\"\",0.00,149.00,130.00,972.00,,,,,,\n2015,5,20,\"B6\",\"395\",\"HPN\",\"MCO\",-7.00,-23.00,0.00,\"\",0.00,143.00,129.00,972.00,,,,,,\n2015,5,21,\"B6\",\"395\",\"HPN\",\"MCO\",-8.00,-2.00,0.00,\"\",0.00,165.00,137.00,972.00,,,,,,\n2015,5,22,\"B6\",\"395\",\"HPN\",\"MCO\",-17.00,-20.00,0.00,\"\",0.00,156.00,136.00,972.00,,,,,,\n2015,5,23,\"B6\",\"395\",\"HPN\",\"MCO\",-9.00,-21.00,0.00,\"\",0.00,147.00,134.00,972.00,,,,,,\n2015,5,24,\"B6\",\"395\",\"HPN\",\"MCO\",-3.00,-20.00,0.00,\"\",0.00,142.00,128.00,972.00,,,,,,\n2015,5,25,\"B6\",\"395\",\"HPN\",\"MCO\",-8.00,-21.00,0.00,\"\",0.00,146.00,128.00,972.00,,,,,,\n2015,5,26,\"B6\",\"395\",\"HPN\",\"MCO\",-9.00,-23.00,0.00,\"\",0.00,145.00,131.00,972.00,,,,,,\n2015,5,27,\"B6\",\"395\",\"HPN\",\"MCO\",-14.00,-23.00,0.00,\"\",0.00,150.00,134.00,972.00,,,,,,\n2015,5,28,\"B6\",\"395\",\"HPN\",\"MCO\",-8.00,-14.00,0.00,\"\",0.00,153.00,137.00,972.00,,,,,,\n2015,5,29,\"B6\",\"395\",\"HPN\",\"MCO\",56.00,47.00,0.00,\"\",0.00,150.00,130.00,972.00,9.00,0.00,0.00,0.00,38.00,\n2015,5,30,\"B6\",\"395\",\"HPN\",\"MCO\",-10.00,-22.00,0.00,\"\",0.00,147.00,130.00,972.00,,,,,,\n2015,5,31,\"B6\",\"395\",\"HPN\",\"MCO\",-10.00,-28.00,0.00,\"\",0.00,141.00,127.00,972.00,,,,,,\n2015,5,1,\"B6\",\"398\",\"MCO\",\"LGA\",15.00,-1.00,0.00,\"\",0.00,145.00,123.00,950.00,,,,,,\n2015,5,2,\"B6\",\"398\",\"MCO\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,160.00,131.00,950.00,,,,,,\n2015,5,3,\"B6\",\"398\",\"MCO\",\"LGA\",15.00,13.00,0.00,\"\",0.00,159.00,131.00,950.00,,,,,,\n2015,5,4,\"B6\",\"398\",\"MCO\",\"LGA\",107.00,85.00,0.00,\"\",0.00,139.00,124.00,950.00,85.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"B6\",\"398\",\"MCO\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,142.00,121.00,950.00,,,,,,\n2015,5,6,\"B6\",\"398\",\"MCO\",\"LGA\",-8.00,13.00,0.00,\"\",0.00,182.00,136.00,950.00,,,,,,\n2015,5,7,\"B6\",\"398\",\"MCO\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,143.00,127.00,950.00,,,,,,\n2015,5,8,\"B6\",\"398\",\"MCO\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,156.00,130.00,950.00,,,,,,\n2015,5,9,\"B6\",\"398\",\"MCO\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,156.00,137.00,950.00,,,,,,\n2015,5,10,\"B6\",\"398\",\"MCO\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,159.00,135.00,950.00,,,,,,\n2015,5,11,\"B6\",\"398\",\"MCO\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,157.00,133.00,950.00,,,,,,\n2015,5,12,\"B6\",\"398\",\"MCO\",\"LGA\",-9.00,-14.00,0.00,\"\",0.00,156.00,131.00,950.00,,,,,,\n2015,5,13,\"B6\",\"398\",\"MCO\",\"LGA\",10.00,11.00,0.00,\"\",0.00,162.00,131.00,950.00,,,,,,\n2015,5,14,\"B6\",\"398\",\"MCO\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,148.00,132.00,950.00,,,,,,\n2015,5,15,\"B6\",\"398\",\"MCO\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,147.00,126.00,950.00,,,,,,\n2015,5,16,\"B6\",\"398\",\"MCO\",\"LGA\",-9.00,-16.00,0.00,\"\",0.00,154.00,128.00,950.00,,,,,,\n2015,5,17,\"B6\",\"398\",\"MCO\",\"LGA\",19.00,6.00,0.00,\"\",0.00,148.00,130.00,950.00,,,,,,\n2015,5,18,\"B6\",\"398\",\"MCO\",\"LGA\",93.00,75.00,0.00,\"\",0.00,143.00,130.00,950.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,19,\"B6\",\"398\",\"MCO\",\"LGA\",132.00,163.00,0.00,\"\",0.00,192.00,147.00,950.00,0.00,0.00,163.00,0.00,0.00,\n2015,5,20,\"B6\",\"398\",\"MCO\",\"LGA\",15.00,0.00,0.00,\"\",0.00,146.00,125.00,950.00,,,,,,\n2015,5,21,\"B6\",\"398\",\"MCO\",\"LGA\",33.00,23.00,0.00,\"\",0.00,151.00,132.00,950.00,3.00,0.00,0.00,0.00,20.00,\n2015,5,22,\"B6\",\"398\",\"MCO\",\"LGA\",27.00,16.00,0.00,\"\",0.00,150.00,122.00,950.00,12.00,0.00,0.00,0.00,4.00,\n2015,5,23,\"B6\",\"398\",\"MCO\",\"LGA\",14.00,-1.00,0.00,\"\",0.00,146.00,128.00,950.00,,,,,,\n2015,5,24,\"B6\",\"398\",\"MCO\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,158.00,135.00,950.00,,,,,,\n2015,5,25,\"B6\",\"398\",\"MCO\",\"LGA\",3.00,-12.00,0.00,\"\",0.00,146.00,127.00,950.00,,,,,,\n2015,5,26,\"B6\",\"398\",\"MCO\",\"LGA\",3.00,-22.00,0.00,\"\",0.00,136.00,121.00,950.00,,,,,,\n2015,5,27,\"B6\",\"398\",\"MCO\",\"LGA\",116.00,96.00,0.00,\"\",0.00,141.00,126.00,950.00,0.00,0.00,96.00,0.00,0.00,\n2015,5,28,\"B6\",\"398\",\"MCO\",\"LGA\",34.00,21.00,0.00,\"\",0.00,148.00,126.00,950.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"B6\",\"398\",\"MCO\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,156.00,131.00,950.00,,,,,,\n2015,5,30,\"B6\",\"398\",\"MCO\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,146.00,127.00,950.00,,,,,,\n2015,5,31,\"B6\",\"398\",\"MCO\",\"LGA\",48.00,,0.00,\"\",1.00,,,950.00,,,,,,\n2015,5,1,\"B6\",\"402\",\"FLL\",\"JFK\",-5.00,-40.00,0.00,\"\",0.00,151.00,133.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"402\",\"FLL\",\"JFK\",-5.00,-33.00,0.00,\"\",0.00,157.00,139.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"402\",\"FLL\",\"JFK\",-3.00,-35.00,0.00,\"\",0.00,154.00,139.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"402\",\"FLL\",\"JFK\",-5.00,-42.00,0.00,\"\",0.00,149.00,131.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"402\",\"FLL\",\"JFK\",-5.00,-43.00,0.00,\"\",0.00,148.00,131.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"402\",\"FLL\",\"JFK\",,,1.00,\"A\",0.00,,,1069.00,,,,,,\n2015,5,7,\"B6\",\"402\",\"FLL\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,174.00,149.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"402\",\"FLL\",\"JFK\",60.00,41.00,0.00,\"\",0.00,167.00,138.00,1069.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,9,\"B6\",\"402\",\"FLL\",\"JFK\",-14.00,-35.00,0.00,\"\",0.00,165.00,147.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"402\",\"FLL\",\"JFK\",-7.00,-28.00,0.00,\"\",0.00,165.00,151.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"402\",\"FLL\",\"JFK\",122.00,141.00,0.00,\"\",0.00,205.00,172.00,1069.00,0.00,0.00,133.00,0.00,8.00,\n2015,5,12,\"B6\",\"402\",\"FLL\",\"JFK\",1.00,-25.00,0.00,\"\",0.00,160.00,144.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"402\",\"FLL\",\"JFK\",24.00,12.00,0.00,\"\",0.00,174.00,144.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"402\",\"FLL\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,162.00,144.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"402\",\"FLL\",\"JFK\",22.00,-3.00,0.00,\"\",0.00,161.00,143.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"402\",\"FLL\",\"JFK\",1.00,-11.00,0.00,\"\",0.00,174.00,156.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"402\",\"FLL\",\"JFK\",-1.00,-24.00,0.00,\"\",0.00,163.00,143.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"402\",\"FLL\",\"JFK\",,,1.00,\"C\",0.00,,,1069.00,,,,,,\n2015,5,19,\"B6\",\"402\",\"FLL\",\"JFK\",0.00,-1.00,0.00,\"\",0.00,185.00,155.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"402\",\"FLL\",\"JFK\",4.00,-8.00,0.00,\"\",0.00,174.00,140.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"402\",\"FLL\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,171.00,149.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"402\",\"FLL\",\"JFK\",39.00,39.00,0.00,\"\",0.00,186.00,145.00,1069.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,23,\"B6\",\"402\",\"FLL\",\"JFK\",-12.00,-36.00,0.00,\"\",0.00,162.00,141.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"402\",\"FLL\",\"JFK\",-7.00,-28.00,0.00,\"\",0.00,165.00,143.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"402\",\"FLL\",\"JFK\",0.00,-36.00,0.00,\"\",0.00,150.00,134.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"402\",\"FLL\",\"JFK\",3.00,-21.00,0.00,\"\",0.00,162.00,135.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"402\",\"FLL\",\"JFK\",209.00,184.00,0.00,\"\",0.00,161.00,133.00,1069.00,0.00,0.00,184.00,0.00,0.00,\n2015,5,28,\"B6\",\"402\",\"FLL\",\"JFK\",-1.00,-23.00,0.00,\"\",0.00,164.00,142.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"402\",\"FLL\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,165.00,143.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"402\",\"FLL\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,163.00,142.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"402\",\"FLL\",\"JFK\",249.00,243.00,0.00,\"\",0.00,180.00,164.00,1069.00,0.00,0.00,243.00,0.00,0.00,\n2015,5,1,\"B6\",\"403\",\"JFK\",\"SJU\",-1.00,12.00,0.00,\"\",0.00,249.00,212.00,1598.00,,,,,,\n2015,5,2,\"B6\",\"403\",\"JFK\",\"SJU\",25.00,19.00,0.00,\"\",0.00,230.00,206.00,1598.00,8.00,0.00,0.00,0.00,11.00,\n2015,5,3,\"B6\",\"403\",\"JFK\",\"SJU\",17.00,10.00,0.00,\"\",0.00,229.00,204.00,1598.00,,,,,,\n2015,5,4,\"B6\",\"403\",\"JFK\",\"SJU\",2.00,5.00,0.00,\"\",0.00,239.00,206.00,1598.00,,,,,,\n2015,5,5,\"B6\",\"403\",\"JFK\",\"SJU\",-4.00,1.00,0.00,\"\",0.00,241.00,207.00,1598.00,,,,,,\n2015,5,6,\"B6\",\"403\",\"JFK\",\"SJU\",-5.00,-16.00,0.00,\"\",0.00,225.00,200.00,1598.00,,,,,,\n2015,5,7,\"B6\",\"403\",\"JFK\",\"SJU\",0.00,-8.00,0.00,\"\",0.00,228.00,200.00,1598.00,,,,,,\n2015,5,8,\"B6\",\"403\",\"JFK\",\"SJU\",21.00,10.00,0.00,\"\",0.00,225.00,204.00,1598.00,,,,,,\n2015,5,9,\"B6\",\"403\",\"JFK\",\"SJU\",47.00,48.00,0.00,\"\",0.00,237.00,197.00,1598.00,25.00,0.00,1.00,0.00,22.00,\n2015,5,10,\"B6\",\"403\",\"JFK\",\"SJU\",-2.00,-6.00,0.00,\"\",0.00,232.00,203.00,1598.00,,,,,,\n2015,5,11,\"B6\",\"403\",\"JFK\",\"SJU\",5.00,-7.00,0.00,\"\",0.00,224.00,203.00,1598.00,,,,,,\n2015,5,12,\"B6\",\"403\",\"JFK\",\"SJU\",7.00,-11.00,0.00,\"\",0.00,218.00,201.00,1598.00,,,,,,\n2015,5,13,\"B6\",\"403\",\"JFK\",\"SJU\",3.00,-10.00,0.00,\"\",0.00,223.00,198.00,1598.00,,,,,,\n2015,5,14,\"B6\",\"403\",\"JFK\",\"SJU\",-2.00,-31.00,0.00,\"\",0.00,207.00,182.00,1598.00,,,,,,\n2015,5,15,\"B6\",\"403\",\"JFK\",\"SJU\",96.00,69.00,0.00,\"\",0.00,209.00,187.00,1598.00,34.00,0.00,0.00,0.00,35.00,\n2015,5,16,\"B6\",\"403\",\"JFK\",\"SJU\",-2.00,-34.00,0.00,\"\",0.00,204.00,183.00,1598.00,,,,,,\n2015,5,17,\"B6\",\"403\",\"JFK\",\"SJU\",-2.00,-13.00,0.00,\"\",0.00,225.00,188.00,1598.00,,,,,,\n2015,5,18,\"B6\",\"403\",\"JFK\",\"SJU\",-6.00,-10.00,0.00,\"\",0.00,232.00,191.00,1598.00,,,,,,\n2015,5,19,\"B6\",\"403\",\"JFK\",\"SJU\",6.00,-10.00,0.00,\"\",0.00,220.00,193.00,1598.00,,,,,,\n2015,5,20,\"B6\",\"403\",\"JFK\",\"SJU\",4.00,-11.00,0.00,\"\",0.00,221.00,196.00,1598.00,,,,,,\n2015,5,21,\"B6\",\"403\",\"JFK\",\"SJU\",-3.00,-5.00,0.00,\"\",0.00,234.00,196.00,1598.00,,,,,,\n2015,5,22,\"B6\",\"403\",\"JFK\",\"SJU\",15.00,-5.00,0.00,\"\",0.00,216.00,196.00,1598.00,,,,,,\n2015,5,23,\"B6\",\"403\",\"JFK\",\"SJU\",-3.00,-27.00,0.00,\"\",0.00,212.00,192.00,1598.00,,,,,,\n2015,5,24,\"B6\",\"403\",\"JFK\",\"SJU\",-2.00,-30.00,0.00,\"\",0.00,208.00,183.00,1598.00,,,,,,\n2015,5,25,\"B6\",\"403\",\"JFK\",\"SJU\",-3.00,-29.00,0.00,\"\",0.00,210.00,187.00,1598.00,,,,,,\n2015,5,26,\"B6\",\"403\",\"JFK\",\"SJU\",-5.00,-30.00,0.00,\"\",0.00,211.00,187.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"403\",\"JFK\",\"SJU\",-3.00,-28.00,0.00,\"\",0.00,211.00,192.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"403\",\"JFK\",\"SJU\",5.00,-7.00,0.00,\"\",0.00,224.00,195.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"403\",\"JFK\",\"SJU\",-5.00,-15.00,0.00,\"\",0.00,226.00,199.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"403\",\"JFK\",\"SJU\",-3.00,-13.00,0.00,\"\",0.00,226.00,200.00,1598.00,,,,,,\n2015,5,31,\"B6\",\"403\",\"JFK\",\"SJU\",-2.00,-5.00,0.00,\"\",0.00,233.00,199.00,1598.00,,,,,,\n2015,5,5,\"B6\",\"72\",\"SLC\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,254.00,236.00,1990.00,,,,,,\n2015,5,6,\"B6\",\"72\",\"SLC\",\"JFK\",3.00,-4.00,0.00,\"\",0.00,261.00,246.00,1990.00,,,,,,\n2015,5,7,\"B6\",\"72\",\"SLC\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,249.00,231.00,1990.00,,,,,,\n2015,5,8,\"B6\",\"72\",\"SLC\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,246.00,232.00,1990.00,,,,,,\n2015,5,9,\"B6\",\"72\",\"SLC\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,265.00,247.00,1990.00,,,,,,\n2015,5,10,\"B6\",\"72\",\"SLC\",\"JFK\",32.00,24.00,0.00,\"\",0.00,260.00,241.00,1990.00,7.00,0.00,0.00,0.00,17.00,\n2015,5,11,\"B6\",\"72\",\"SLC\",\"JFK\",14.00,-16.00,0.00,\"\",0.00,238.00,221.00,1990.00,,,,,,\n2015,5,12,\"B6\",\"72\",\"SLC\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,244.00,222.00,1990.00,,,,,,\n2015,5,13,\"B6\",\"72\",\"SLC\",\"JFK\",38.00,33.00,0.00,\"\",0.00,263.00,238.00,1990.00,32.00,0.00,0.00,0.00,1.00,\n2015,5,14,\"B6\",\"72\",\"SLC\",\"JFK\",-11.00,-27.00,0.00,\"\",0.00,252.00,231.00,1990.00,,,,,,\n2015,5,15,\"B6\",\"72\",\"SLC\",\"JFK\",6.00,9.00,0.00,\"\",0.00,271.00,245.00,1990.00,,,,,,\n2015,5,16,\"B6\",\"72\",\"SLC\",\"JFK\",18.00,17.00,0.00,\"\",0.00,267.00,246.00,1990.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"72\",\"SLC\",\"JFK\",-7.00,-42.00,0.00,\"\",0.00,233.00,223.00,1990.00,,,,,,\n2015,5,18,\"B6\",\"72\",\"SLC\",\"JFK\",119.00,127.00,0.00,\"\",0.00,276.00,258.00,1990.00,9.00,0.00,8.00,0.00,110.00,\n2015,5,19,\"B6\",\"72\",\"SLC\",\"JFK\",31.00,6.00,0.00,\"\",0.00,243.00,220.00,1990.00,,,,,,\n2015,5,20,\"B6\",\"72\",\"SLC\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,242.00,222.00,1990.00,,,,,,\n2015,5,21,\"B6\",\"72\",\"SLC\",\"JFK\",-8.00,-38.00,0.00,\"\",0.00,238.00,223.00,1990.00,,,,,,\n2015,5,22,\"B6\",\"72\",\"SLC\",\"JFK\",-12.00,-42.00,0.00,\"\",0.00,238.00,220.00,1990.00,,,,,,\n2015,5,23,\"B6\",\"72\",\"SLC\",\"JFK\",-7.00,-31.00,0.00,\"\",0.00,244.00,225.00,1990.00,,,,,,\n2015,5,24,\"B6\",\"72\",\"SLC\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,250.00,237.00,1990.00,,,,,,\n2015,5,25,\"B6\",\"72\",\"SLC\",\"JFK\",32.00,19.00,0.00,\"\",0.00,255.00,232.00,1990.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"B6\",\"72\",\"SLC\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,257.00,241.00,1990.00,,,,,,\n2015,5,27,\"B6\",\"72\",\"SLC\",\"JFK\",37.00,16.00,0.00,\"\",0.00,247.00,231.00,1990.00,1.00,0.00,0.00,0.00,15.00,\n2015,5,28,\"B6\",\"72\",\"SLC\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,255.00,237.00,1990.00,,,,,,\n2015,5,29,\"B6\",\"72\",\"SLC\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,253.00,237.00,1990.00,,,,,,\n2015,5,30,\"B6\",\"72\",\"SLC\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,255.00,236.00,1990.00,,,,,,\n2015,5,31,\"B6\",\"72\",\"SLC\",\"JFK\",69.00,50.00,0.00,\"\",0.00,249.00,237.00,1990.00,0.00,0.00,0.00,0.00,50.00,\n2015,5,1,\"B6\",\"76\",\"MSY\",\"JFK\",-4.00,-35.00,0.00,\"\",0.00,157.00,145.00,1182.00,,,,,,\n2015,5,2,\"B6\",\"76\",\"MSY\",\"JFK\",-8.00,-34.00,0.00,\"\",0.00,162.00,150.00,1182.00,,,,,,\n2015,5,3,\"B6\",\"76\",\"MSY\",\"JFK\",-11.00,-27.00,0.00,\"\",0.00,172.00,152.00,1182.00,,,,,,\n2015,5,4,\"B6\",\"76\",\"MSY\",\"JFK\",-13.00,-37.00,0.00,\"\",0.00,164.00,150.00,1182.00,,,,,,\n2015,5,5,\"B6\",\"76\",\"MSY\",\"JFK\",-10.00,-32.00,0.00,\"\",0.00,166.00,152.00,1182.00,,,,,,\n2015,5,6,\"B6\",\"76\",\"MSY\",\"JFK\",-10.00,-22.00,0.00,\"\",0.00,176.00,155.00,1182.00,,,,,,\n2015,5,7,\"B6\",\"76\",\"MSY\",\"JFK\",-10.00,-22.00,0.00,\"\",0.00,176.00,151.00,1182.00,,,,,,\n2015,5,8,\"B6\",\"76\",\"MSY\",\"JFK\",151.00,137.00,0.00,\"\",0.00,174.00,156.00,1182.00,10.00,0.00,0.00,0.00,127.00,\n2015,5,9,\"B6\",\"76\",\"MSY\",\"JFK\",-11.00,-25.00,0.00,\"\",0.00,174.00,156.00,1182.00,,,,,,\n2015,5,10,\"B6\",\"76\",\"MSY\",\"JFK\",-11.00,-23.00,0.00,\"\",0.00,176.00,158.00,1182.00,,,,,,\n2015,5,11,\"B6\",\"76\",\"MSY\",\"JFK\",-13.00,-19.00,0.00,\"\",0.00,182.00,167.00,1182.00,,,,,,\n2015,5,12,\"B6\",\"76\",\"MSY\",\"JFK\",128.00,116.00,0.00,\"\",0.00,176.00,151.00,1182.00,0.00,0.00,100.00,0.00,16.00,\n2015,5,13,\"B6\",\"76\",\"MSY\",\"JFK\",0.00,-30.00,0.00,\"\",0.00,158.00,144.00,1182.00,,,,,,\n2015,5,14,\"B6\",\"76\",\"MSY\",\"JFK\",4.00,-11.00,0.00,\"\",0.00,173.00,153.00,1182.00,,,,,,\n2015,5,15,\"B6\",\"76\",\"MSY\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,163.00,149.00,1182.00,,,,,,\n2015,5,16,\"B6\",\"76\",\"MSY\",\"JFK\",3.00,-12.00,0.00,\"\",0.00,173.00,155.00,1182.00,,,,,,\n2015,5,17,\"B6\",\"76\",\"MSY\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,170.00,150.00,1182.00,,,,,,\n2015,5,18,\"B6\",\"76\",\"MSY\",\"JFK\",179.00,188.00,0.00,\"\",0.00,197.00,165.00,1182.00,0.00,0.00,188.00,0.00,0.00,\n2015,5,19,\"B6\",\"76\",\"MSY\",\"JFK\",85.00,64.00,0.00,\"\",0.00,167.00,149.00,1182.00,11.00,0.00,0.00,0.00,53.00,\n2015,5,20,\"B6\",\"76\",\"MSY\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,164.00,147.00,1182.00,,,,,,\n2015,5,21,\"B6\",\"76\",\"MSY\",\"JFK\",19.00,-18.00,0.00,\"\",0.00,151.00,139.00,1182.00,,,,,,\n2015,5,22,\"B6\",\"76\",\"MSY\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,167.00,140.00,1182.00,,,,,,\n2015,5,23,\"B6\",\"76\",\"MSY\",\"JFK\",-10.00,-38.00,0.00,\"\",0.00,160.00,145.00,1182.00,,,,,,\n2015,5,24,\"B6\",\"76\",\"MSY\",\"JFK\",-12.00,-34.00,0.00,\"\",0.00,166.00,156.00,1182.00,,,,,,\n2015,5,25,\"B6\",\"76\",\"MSY\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,177.00,154.00,1182.00,,,,,,\n2015,5,26,\"B6\",\"76\",\"MSY\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,170.00,155.00,1182.00,,,,,,\n2015,5,27,\"B6\",\"76\",\"MSY\",\"JFK\",-10.00,-38.00,0.00,\"\",0.00,160.00,147.00,1182.00,,,,,,\n2015,5,28,\"B6\",\"76\",\"MSY\",\"JFK\",23.00,4.00,0.00,\"\",0.00,169.00,152.00,1182.00,,,,,,\n2015,5,29,\"B6\",\"76\",\"MSY\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,175.00,157.00,1182.00,,,,,,\n2015,5,30,\"B6\",\"76\",\"MSY\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,173.00,158.00,1182.00,,,,,,\n2015,5,31,\"B6\",\"76\",\"MSY\",\"JFK\",2.00,-18.00,0.00,\"\",0.00,168.00,151.00,1182.00,,,,,,\n2015,5,28,\"B6\",\"80\",\"RNO\",\"JFK\",5.00,-18.00,0.00,\"\",0.00,292.00,276.00,2411.00,,,,,,\n2015,5,29,\"B6\",\"80\",\"RNO\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,309.00,288.00,2411.00,,,,,,\n2015,5,31,\"B6\",\"80\",\"RNO\",\"JFK\",102.00,88.00,0.00,\"\",0.00,301.00,283.00,2411.00,0.00,0.00,0.00,0.00,88.00,\n2015,5,28,\"B6\",\"81\",\"JFK\",\"RNO\",-3.00,-42.00,0.00,\"\",0.00,349.00,324.00,2411.00,,,,,,\n2015,5,29,\"B6\",\"81\",\"JFK\",\"RNO\",-6.00,-51.00,0.00,\"\",0.00,346.00,307.00,2411.00,,,,,,\n2015,5,31,\"B6\",\"81\",\"JFK\",\"RNO\",79.00,106.00,0.00,\"\",0.00,418.00,328.00,2411.00,0.00,0.00,106.00,0.00,0.00,\n2015,5,1,\"B6\",\"83\",\"JFK\",\"MCO\",0.00,13.00,0.00,\"\",0.00,185.00,145.00,944.00,,,,,,\n2015,5,2,\"B6\",\"83\",\"JFK\",\"MCO\",0.00,-23.00,0.00,\"\",0.00,149.00,126.00,944.00,,,,,,\n2015,5,3,\"B6\",\"83\",\"JFK\",\"MCO\",-5.00,-22.00,0.00,\"\",0.00,155.00,128.00,944.00,,,,,,\n2015,5,4,\"B6\",\"83\",\"JFK\",\"MCO\",2.00,-5.00,0.00,\"\",0.00,165.00,132.00,944.00,,,,,,\n2015,5,5,\"B6\",\"83\",\"JFK\",\"MCO\",-5.00,-20.00,0.00,\"\",0.00,157.00,137.00,944.00,,,,,,\n2015,5,6,\"B6\",\"83\",\"JFK\",\"MCO\",-9.00,-20.00,0.00,\"\",0.00,161.00,142.00,944.00,,,,,,\n2015,5,7,\"B6\",\"83\",\"JFK\",\"MCO\",-4.00,-24.00,0.00,\"\",0.00,152.00,131.00,944.00,,,,,,\n2015,5,8,\"B6\",\"83\",\"JFK\",\"MCO\",2.00,-21.00,0.00,\"\",0.00,149.00,126.00,944.00,,,,,,\n2015,5,9,\"B6\",\"83\",\"JFK\",\"MCO\",-6.00,-36.00,0.00,\"\",0.00,142.00,123.00,944.00,,,,,,\n2015,5,10,\"B6\",\"83\",\"JFK\",\"MCO\",-7.00,-12.00,0.00,\"\",0.00,167.00,131.00,944.00,,,,,,\n2015,5,11,\"B6\",\"83\",\"JFK\",\"MCO\",-1.00,-21.00,0.00,\"\",0.00,152.00,126.00,944.00,,,,,,\n2015,5,12,\"B6\",\"83\",\"JFK\",\"MCO\",13.00,-11.00,0.00,\"\",0.00,148.00,127.00,944.00,,,,,,\n2015,5,13,\"B6\",\"83\",\"JFK\",\"MCO\",-4.00,-15.00,0.00,\"\",0.00,161.00,134.00,944.00,,,,,,\n2015,5,14,\"B6\",\"83\",\"JFK\",\"MCO\",-3.00,-34.00,0.00,\"\",0.00,141.00,123.00,944.00,,,,,,\n2015,5,15,\"B6\",\"83\",\"JFK\",\"MCO\",2.00,-2.00,0.00,\"\",0.00,168.00,135.00,944.00,,,,,,\n2015,5,16,\"B6\",\"83\",\"JFK\",\"MCO\",7.00,-26.00,0.00,\"\",0.00,139.00,119.00,944.00,,,,,,\n2015,5,17,\"B6\",\"83\",\"JFK\",\"MCO\",36.00,24.00,0.00,\"\",0.00,160.00,126.00,944.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,18,\"B6\",\"83\",\"JFK\",\"MCO\",29.00,17.00,0.00,\"\",0.00,160.00,121.00,944.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"B6\",\"83\",\"JFK\",\"MCO\",33.00,15.00,0.00,\"\",0.00,154.00,129.00,944.00,5.00,0.00,0.00,0.00,10.00,\n2015,5,20,\"B6\",\"83\",\"JFK\",\"MCO\",-8.00,-21.00,0.00,\"\",0.00,159.00,128.00,944.00,,,,,,\n2015,5,21,\"B6\",\"83\",\"JFK\",\"MCO\",-4.00,3.00,0.00,\"\",0.00,179.00,135.00,944.00,,,,,,\n2015,5,22,\"B6\",\"83\",\"JFK\",\"MCO\",-3.00,-17.00,0.00,\"\",0.00,158.00,140.00,944.00,,,,,,\n2015,5,23,\"B6\",\"83\",\"JFK\",\"MCO\",-2.00,-13.00,0.00,\"\",0.00,161.00,132.00,944.00,,,,,,\n2015,5,24,\"B6\",\"83\",\"JFK\",\"MCO\",-4.00,-22.00,0.00,\"\",0.00,154.00,120.00,944.00,,,,,,\n2015,5,25,\"B6\",\"83\",\"JFK\",\"MCO\",-5.00,-26.00,0.00,\"\",0.00,151.00,125.00,944.00,,,,,,\n2015,5,26,\"B6\",\"83\",\"JFK\",\"MCO\",96.00,71.00,0.00,\"\",0.00,147.00,127.00,944.00,0.00,0.00,0.00,0.00,71.00,\n2015,5,27,\"B6\",\"83\",\"JFK\",\"MCO\",-5.00,-24.00,0.00,\"\",0.00,153.00,126.00,944.00,,,,,,\n2015,5,28,\"B6\",\"83\",\"JFK\",\"MCO\",-4.00,-26.00,0.00,\"\",0.00,150.00,132.00,944.00,,,,,,\n2015,5,29,\"B6\",\"83\",\"JFK\",\"MCO\",-3.00,-29.00,0.00,\"\",0.00,146.00,121.00,944.00,,,,,,\n2015,5,30,\"B6\",\"83\",\"JFK\",\"MCO\",-10.00,-38.00,0.00,\"\",0.00,144.00,123.00,944.00,,,,,,\n2015,5,31,\"B6\",\"83\",\"JFK\",\"MCO\",-4.00,-11.00,0.00,\"\",0.00,165.00,127.00,944.00,,,,,,\n2015,5,1,\"B6\",\"84\",\"MCO\",\"JFK\",-4.00,-39.00,0.00,\"\",0.00,139.00,122.00,944.00,,,,,,\n2015,5,2,\"B6\",\"84\",\"MCO\",\"JFK\",-3.00,-37.00,0.00,\"\",0.00,140.00,124.00,944.00,,,,,,\n2015,5,3,\"B6\",\"84\",\"MCO\",\"JFK\",-4.00,-38.00,0.00,\"\",0.00,140.00,127.00,944.00,,,,,,\n2015,5,4,\"B6\",\"84\",\"MCO\",\"JFK\",4.00,-31.00,0.00,\"\",0.00,139.00,123.00,944.00,,,,,,\n2015,5,5,\"B6\",\"84\",\"MCO\",\"JFK\",-4.00,-33.00,0.00,\"\",0.00,145.00,118.00,944.00,,,,,,\n2015,5,6,\"B6\",\"84\",\"MCO\",\"JFK\",13.00,-3.00,0.00,\"\",0.00,158.00,132.00,944.00,,,,,,\n2015,5,7,\"B6\",\"84\",\"MCO\",\"JFK\",6.00,-26.00,0.00,\"\",0.00,142.00,127.00,944.00,,,,,,\n2015,5,8,\"B6\",\"84\",\"MCO\",\"JFK\",141.00,110.00,0.00,\"\",0.00,143.00,125.00,944.00,0.00,0.00,85.00,0.00,25.00,\n2015,5,9,\"B6\",\"84\",\"MCO\",\"JFK\",70.00,60.00,0.00,\"\",0.00,164.00,130.00,944.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,10,\"B6\",\"84\",\"MCO\",\"JFK\",-6.00,-32.00,0.00,\"\",0.00,148.00,129.00,944.00,,,,,,\n2015,5,11,\"B6\",\"84\",\"MCO\",\"JFK\",136.00,166.00,0.00,\"\",0.00,204.00,167.00,944.00,0.00,0.00,153.00,0.00,13.00,\n2015,5,12,\"B6\",\"84\",\"MCO\",\"JFK\",3.00,-23.00,0.00,\"\",0.00,148.00,129.00,944.00,,,,,,\n2015,5,13,\"B6\",\"84\",\"MCO\",\"JFK\",69.00,45.00,0.00,\"\",0.00,150.00,131.00,944.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,14,\"B6\",\"84\",\"MCO\",\"JFK\",-3.00,-29.00,0.00,\"\",0.00,148.00,128.00,944.00,,,,,,\n2015,5,15,\"B6\",\"84\",\"MCO\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,147.00,128.00,944.00,,,,,,\n2015,5,16,\"B6\",\"84\",\"MCO\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,155.00,141.00,944.00,,,,,,\n2015,5,17,\"B6\",\"84\",\"MCO\",\"JFK\",-3.00,-27.00,0.00,\"\",0.00,150.00,130.00,944.00,,,,,,\n2015,5,18,\"B6\",\"84\",\"MCO\",\"JFK\",164.00,161.00,0.00,\"\",0.00,171.00,144.00,944.00,133.00,0.00,28.00,0.00,0.00,\n2015,5,19,\"B6\",\"84\",\"MCO\",\"JFK\",52.00,90.00,0.00,\"\",0.00,212.00,153.00,944.00,52.00,0.00,38.00,0.00,0.00,\n2015,5,20,\"B6\",\"84\",\"MCO\",\"JFK\",123.00,121.00,0.00,\"\",0.00,172.00,134.00,944.00,0.00,121.00,0.00,0.00,0.00,\n2015,5,21,\"B6\",\"84\",\"MCO\",\"JFK\",157.00,124.00,0.00,\"\",0.00,141.00,122.00,944.00,0.00,0.00,0.00,0.00,124.00,\n2015,5,22,\"B6\",\"84\",\"MCO\",\"JFK\",66.00,30.00,0.00,\"\",0.00,138.00,116.00,944.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,23,\"B6\",\"84\",\"MCO\",\"JFK\",1.00,-31.00,0.00,\"\",0.00,142.00,127.00,944.00,,,,,,\n2015,5,24,\"B6\",\"84\",\"MCO\",\"JFK\",-4.00,-30.00,0.00,\"\",0.00,148.00,128.00,944.00,,,,,,\n2015,5,25,\"B6\",\"84\",\"MCO\",\"JFK\",80.00,46.00,0.00,\"\",0.00,140.00,126.00,944.00,46.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"B6\",\"84\",\"MCO\",\"JFK\",11.00,-14.00,0.00,\"\",0.00,149.00,125.00,944.00,,,,,,\n2015,5,27,\"B6\",\"84\",\"MCO\",\"JFK\",249.00,221.00,0.00,\"\",0.00,146.00,125.00,944.00,0.00,0.00,221.00,0.00,0.00,\n2015,5,28,\"B6\",\"84\",\"MCO\",\"JFK\",-3.00,-29.00,0.00,\"\",0.00,148.00,131.00,944.00,,,,,,\n2015,5,29,\"B6\",\"84\",\"MCO\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,154.00,130.00,944.00,,,,,,\n2015,5,30,\"B6\",\"84\",\"MCO\",\"JFK\",-9.00,-26.00,0.00,\"\",0.00,157.00,132.00,944.00,,,,,,\n2015,5,31,\"B6\",\"84\",\"MCO\",\"JFK\",283.00,277.00,0.00,\"\",0.00,168.00,144.00,944.00,0.00,0.00,277.00,0.00,0.00,\n2015,5,1,\"B6\",\"85\",\"BUF\",\"MCO\",-10.00,-16.00,0.00,\"\",0.00,150.00,134.00,1011.00,,,,,,\n2015,5,2,\"B6\",\"85\",\"BUF\",\"MCO\",-3.00,-19.00,0.00,\"\",0.00,140.00,128.00,1011.00,,,,,,\n2015,5,3,\"B6\",\"85\",\"BUF\",\"MCO\",-6.00,-9.00,0.00,\"\",0.00,153.00,128.00,1011.00,,,,,,\n2015,5,4,\"B6\",\"85\",\"BUF\",\"MCO\",-2.00,-8.00,0.00,\"\",0.00,150.00,130.00,1011.00,,,,,,\n2015,5,5,\"B6\",\"85\",\"BUF\",\"MCO\",13.00,14.00,0.00,\"\",0.00,157.00,134.00,1011.00,,,,,,\n2015,5,6,\"B6\",\"85\",\"BUF\",\"MCO\",-10.00,-18.00,0.00,\"\",0.00,148.00,138.00,1011.00,,,,,,\n2015,5,7,\"B6\",\"85\",\"BUF\",\"MCO\",-10.00,-17.00,0.00,\"\",0.00,149.00,137.00,1011.00,,,,,,\n2015,5,8,\"B6\",\"85\",\"BUF\",\"MCO\",-14.00,-12.00,0.00,\"\",0.00,158.00,132.00,1011.00,,,,,,\n2015,5,9,\"B6\",\"85\",\"BUF\",\"MCO\",-6.00,-21.00,0.00,\"\",0.00,141.00,126.00,1011.00,,,,,,\n2015,5,10,\"B6\",\"85\",\"BUF\",\"MCO\",-8.00,-16.00,0.00,\"\",0.00,148.00,129.00,1011.00,,,,,,\n2015,5,11,\"B6\",\"85\",\"BUF\",\"MCO\",0.00,-2.00,0.00,\"\",0.00,154.00,130.00,1011.00,,,,,,\n2015,5,12,\"B6\",\"85\",\"BUF\",\"MCO\",-1.00,-7.00,0.00,\"\",0.00,150.00,135.00,1011.00,,,,,,\n2015,5,13,\"B6\",\"85\",\"BUF\",\"MCO\",-5.00,-16.00,0.00,\"\",0.00,145.00,130.00,1011.00,,,,,,\n2015,5,14,\"B6\",\"85\",\"BUF\",\"MCO\",-7.00,-23.00,0.00,\"\",0.00,140.00,124.00,1011.00,,,,,,\n2015,5,15,\"B6\",\"85\",\"BUF\",\"MCO\",-8.00,-13.00,0.00,\"\",0.00,151.00,134.00,1011.00,,,,,,\n2015,5,16,\"B6\",\"85\",\"BUF\",\"MCO\",45.00,28.00,0.00,\"\",0.00,139.00,128.00,1011.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,17,\"B6\",\"85\",\"BUF\",\"MCO\",10.00,-3.00,0.00,\"\",0.00,143.00,128.00,1011.00,,,,,,\n2015,5,18,\"B6\",\"85\",\"BUF\",\"MCO\",-6.00,-16.00,0.00,\"\",0.00,146.00,129.00,1011.00,,,,,,\n2015,5,19,\"B6\",\"85\",\"BUF\",\"MCO\",-9.00,-11.00,0.00,\"\",0.00,154.00,132.00,1011.00,,,,,,\n2015,5,20,\"B6\",\"85\",\"BUF\",\"MCO\",-7.00,-11.00,0.00,\"\",0.00,152.00,133.00,1011.00,,,,,,\n2015,5,21,\"B6\",\"85\",\"BUF\",\"MCO\",0.00,5.00,0.00,\"\",0.00,161.00,137.00,1011.00,,,,,,\n2015,5,22,\"B6\",\"85\",\"BUF\",\"MCO\",-8.00,-2.00,0.00,\"\",0.00,162.00,137.00,1011.00,,,,,,\n2015,5,23,\"B6\",\"85\",\"BUF\",\"MCO\",-8.00,-22.00,0.00,\"\",0.00,142.00,130.00,1011.00,,,,,,\n2015,5,24,\"B6\",\"85\",\"BUF\",\"MCO\",-14.00,-21.00,0.00,\"\",0.00,149.00,128.00,1011.00,,,,,,\n2015,5,25,\"B6\",\"85\",\"BUF\",\"MCO\",-3.00,-8.00,0.00,\"\",0.00,151.00,133.00,1011.00,,,,,,\n2015,5,26,\"B6\",\"85\",\"BUF\",\"MCO\",-9.00,-18.00,0.00,\"\",0.00,147.00,133.00,1011.00,,,,,,\n2015,5,27,\"B6\",\"85\",\"BUF\",\"MCO\",-8.00,-9.00,0.00,\"\",0.00,155.00,140.00,1011.00,,,,,,\n2015,5,28,\"B6\",\"85\",\"BUF\",\"MCO\",-10.00,-7.00,0.00,\"\",0.00,159.00,136.00,1011.00,,,,,,\n2015,5,29,\"B6\",\"85\",\"BUF\",\"MCO\",-7.00,-17.00,0.00,\"\",0.00,146.00,131.00,1011.00,,,,,,\n2015,5,30,\"B6\",\"85\",\"BUF\",\"MCO\",27.00,24.00,0.00,\"\",0.00,153.00,136.00,1011.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"B6\",\"85\",\"BUF\",\"MCO\",-8.00,-15.00,0.00,\"\",0.00,149.00,131.00,1011.00,,,,,,\n2015,5,1,\"B6\",\"89\",\"JFK\",\"SAN\",-1.00,-41.00,0.00,\"\",0.00,344.00,311.00,2446.00,,,,,,\n2015,5,2,\"B6\",\"89\",\"JFK\",\"SAN\",-2.00,-54.00,0.00,\"\",0.00,332.00,305.00,2446.00,,,,,,\n2015,5,3,\"B6\",\"89\",\"JFK\",\"SAN\",8.00,-29.00,0.00,\"\",0.00,347.00,319.00,2446.00,,,,,,\n2015,5,4,\"B6\",\"89\",\"JFK\",\"SAN\",12.00,-24.00,0.00,\"\",0.00,348.00,321.00,2446.00,,,,,,\n2015,5,5,\"B6\",\"89\",\"JFK\",\"SAN\",-6.00,-53.00,0.00,\"\",0.00,337.00,311.00,2446.00,,,,,,\n2015,5,6,\"B6\",\"89\",\"JFK\",\"SAN\",-5.00,3.00,0.00,\"\",0.00,392.00,316.00,2446.00,,,,,,\n2015,5,7,\"B6\",\"89\",\"JFK\",\"SAN\",-2.00,8.00,0.00,\"\",0.00,394.00,346.00,2446.00,,,,,,\n2015,5,8,\"B6\",\"89\",\"JFK\",\"SAN\",33.00,17.00,0.00,\"\",0.00,368.00,329.00,2446.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"B6\",\"89\",\"JFK\",\"SAN\",-1.00,-40.00,0.00,\"\",0.00,345.00,323.00,2446.00,,,,,,\n2015,5,10,\"B6\",\"89\",\"JFK\",\"SAN\",9.00,11.00,0.00,\"\",0.00,386.00,331.00,2446.00,,,,,,\n2015,5,11,\"B6\",\"89\",\"JFK\",\"SAN\",15.00,-9.00,0.00,\"\",0.00,360.00,330.00,2446.00,,,,,,\n2015,5,12,\"B6\",\"89\",\"JFK\",\"SAN\",-2.00,-3.00,0.00,\"\",0.00,383.00,361.00,2446.00,,,,,,\n2015,5,13,\"B6\",\"89\",\"JFK\",\"SAN\",-3.00,-20.00,0.00,\"\",0.00,367.00,330.00,2446.00,,,,,,\n2015,5,14,\"B6\",\"89\",\"JFK\",\"SAN\",0.00,-6.00,0.00,\"\",0.00,378.00,336.00,2446.00,,,,,,\n2015,5,15,\"B6\",\"89\",\"JFK\",\"SAN\",-4.00,-24.00,0.00,\"\",0.00,364.00,344.00,2446.00,,,,,,\n2015,5,16,\"B6\",\"89\",\"JFK\",\"SAN\",-3.00,13.00,0.00,\"\",0.00,400.00,359.00,2446.00,,,,,,\n2015,5,17,\"B6\",\"89\",\"JFK\",\"SAN\",-5.00,-37.00,0.00,\"\",0.00,352.00,325.00,2446.00,,,,,,\n2015,5,18,\"B6\",\"89\",\"JFK\",\"SAN\",6.00,-16.00,0.00,\"\",0.00,362.00,338.00,2446.00,,,,,,\n2015,5,19,\"B6\",\"89\",\"JFK\",\"SAN\",-2.00,-1.00,0.00,\"\",0.00,385.00,346.00,2446.00,,,,,,\n2015,5,20,\"B6\",\"89\",\"JFK\",\"SAN\",-1.00,-8.00,0.00,\"\",0.00,377.00,343.00,2446.00,,,,,,\n2015,5,21,\"B6\",\"89\",\"JFK\",\"SAN\",27.00,23.00,0.00,\"\",0.00,380.00,352.00,2446.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"B6\",\"89\",\"JFK\",\"SAN\",-6.00,-20.00,0.00,\"\",0.00,370.00,350.00,2446.00,,,,,,\n2015,5,23,\"B6\",\"89\",\"JFK\",\"SAN\",-1.00,-11.00,0.00,\"\",0.00,374.00,349.00,2446.00,,,,,,\n2015,5,24,\"B6\",\"89\",\"JFK\",\"SAN\",-8.00,-35.00,0.00,\"\",0.00,357.00,318.00,2446.00,,,,,,\n2015,5,25,\"B6\",\"89\",\"JFK\",\"SAN\",-4.00,-41.00,0.00,\"\",0.00,347.00,320.00,2446.00,,,,,,\n2015,5,26,\"B6\",\"89\",\"JFK\",\"SAN\",-6.00,-38.00,0.00,\"\",0.00,352.00,324.00,2446.00,,,,,,\n2015,5,27,\"B6\",\"89\",\"JFK\",\"SAN\",146.00,169.00,0.00,\"\",0.00,407.00,323.00,2446.00,0.00,146.00,23.00,0.00,0.00,\n2015,5,28,\"B6\",\"89\",\"JFK\",\"SAN\",-4.00,-21.00,0.00,\"\",0.00,367.00,332.00,2446.00,,,,,,\n2015,5,29,\"B6\",\"89\",\"JFK\",\"SAN\",-1.00,-17.00,0.00,\"\",0.00,368.00,330.00,2446.00,,,,,,\n2015,5,30,\"B6\",\"89\",\"JFK\",\"SAN\",-1.00,-34.00,0.00,\"\",0.00,351.00,310.00,2446.00,,,,,,\n2015,5,31,\"B6\",\"89\",\"JFK\",\"SAN\",35.00,38.00,0.00,\"\",0.00,387.00,315.00,2446.00,35.00,0.00,3.00,0.00,0.00,\n2015,5,1,\"B6\",\"90\",\"SAN\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,312.00,291.00,2446.00,,,,,,\n2015,5,2,\"B6\",\"90\",\"SAN\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,318.00,295.00,2446.00,,,,,,\n2015,5,3,\"B6\",\"90\",\"SAN\",\"JFK\",4.00,-13.00,0.00,\"\",0.00,313.00,293.00,2446.00,,,,,,\n2015,5,4,\"B6\",\"90\",\"SAN\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,308.00,290.00,2446.00,,,,,,\n2015,5,5,\"B6\",\"90\",\"SAN\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,317.00,296.00,2446.00,,,,,,\n2015,5,6,\"B6\",\"90\",\"SAN\",\"JFK\",0.00,-23.00,0.00,\"\",0.00,307.00,292.00,2446.00,,,,,,\n2015,5,7,\"B6\",\"90\",\"SAN\",\"JFK\",63.00,,0.00,\"\",1.00,,,2446.00,,,,,,\n2015,5,8,\"B6\",\"90\",\"SAN\",\"JFK\",25.00,8.00,0.00,\"\",0.00,313.00,294.00,2446.00,,,,,,\n2015,5,9,\"B6\",\"90\",\"SAN\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,309.00,286.00,2446.00,,,,,,\n2015,5,10,\"B6\",\"90\",\"SAN\",\"JFK\",38.00,55.00,0.00,\"\",0.00,347.00,332.00,2446.00,9.00,0.00,17.00,0.00,29.00,\n2015,5,11,\"B6\",\"90\",\"SAN\",\"JFK\",-2.00,-40.00,0.00,\"\",0.00,292.00,273.00,2446.00,,,,,,\n2015,5,12,\"B6\",\"90\",\"SAN\",\"JFK\",30.00,5.00,0.00,\"\",0.00,305.00,291.00,2446.00,,,,,,\n2015,5,13,\"B6\",\"90\",\"SAN\",\"JFK\",28.00,7.00,0.00,\"\",0.00,309.00,287.00,2446.00,,,,,,\n2015,5,14,\"B6\",\"90\",\"SAN\",\"JFK\",59.00,55.00,0.00,\"\",0.00,326.00,293.00,2446.00,46.00,0.00,0.00,0.00,9.00,\n2015,5,15,\"B6\",\"90\",\"SAN\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,309.00,287.00,2446.00,,,,,,\n2015,5,16,\"B6\",\"90\",\"SAN\",\"JFK\",3.00,-28.00,0.00,\"\",0.00,299.00,284.00,2446.00,,,,,,\n2015,5,17,\"B6\",\"90\",\"SAN\",\"JFK\",2.00,-30.00,0.00,\"\",0.00,298.00,283.00,2446.00,,,,,,\n2015,5,18,\"B6\",\"90\",\"SAN\",\"JFK\",12.00,-28.00,0.00,\"\",0.00,290.00,274.00,2446.00,,,,,,\n2015,5,19,\"B6\",\"90\",\"SAN\",\"JFK\",33.00,-8.00,0.00,\"\",0.00,289.00,267.00,2446.00,,,,,,\n2015,5,20,\"B6\",\"90\",\"SAN\",\"JFK\",18.00,-31.00,0.00,\"\",0.00,281.00,257.00,2446.00,,,,,,\n2015,5,21,\"B6\",\"90\",\"SAN\",\"JFK\",7.00,-25.00,0.00,\"\",0.00,298.00,273.00,2446.00,,,,,,\n2015,5,22,\"B6\",\"90\",\"SAN\",\"JFK\",-3.00,-40.00,0.00,\"\",0.00,293.00,269.00,2446.00,,,,,,\n2015,5,23,\"B6\",\"90\",\"SAN\",\"JFK\",5.00,-23.00,0.00,\"\",0.00,302.00,285.00,2446.00,,,,,,\n2015,5,24,\"B6\",\"90\",\"SAN\",\"JFK\",69.00,47.00,0.00,\"\",0.00,308.00,289.00,2446.00,47.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"B6\",\"90\",\"SAN\",\"JFK\",0.00,-24.00,0.00,\"\",0.00,306.00,286.00,2446.00,,,,,,\n2015,5,26,\"B6\",\"90\",\"SAN\",\"JFK\",-4.00,-37.00,0.00,\"\",0.00,297.00,279.00,2446.00,,,,,,\n2015,5,27,\"B6\",\"90\",\"SAN\",\"JFK\",15.00,1.00,0.00,\"\",0.00,316.00,298.00,2446.00,,,,,,\n2015,5,28,\"B6\",\"90\",\"SAN\",\"JFK\",20.00,1.00,0.00,\"\",0.00,311.00,293.00,2446.00,,,,,,\n2015,5,29,\"B6\",\"90\",\"SAN\",\"JFK\",21.00,4.00,0.00,\"\",0.00,313.00,292.00,2446.00,,,,,,\n2015,5,30,\"B6\",\"90\",\"SAN\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,312.00,292.00,2446.00,,,,,,\n2015,5,31,\"B6\",\"90\",\"SAN\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,315.00,294.00,2446.00,,,,,,\n2015,5,1,\"B6\",\"94\",\"MCO\",\"HPN\",0.00,-12.00,0.00,\"\",0.00,148.00,127.00,972.00,,,,,,\n2015,5,2,\"B6\",\"94\",\"MCO\",\"HPN\",-3.00,21.00,0.00,\"\",0.00,184.00,135.00,972.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,3,\"B6\",\"94\",\"MCO\",\"HPN\",2.00,0.00,0.00,\"\",0.00,158.00,140.00,972.00,,,,,,\n2015,5,4,\"B6\",\"94\",\"MCO\",\"HPN\",0.00,-1.00,0.00,\"\",0.00,159.00,144.00,972.00,,,,,,\n2015,5,5,\"B6\",\"94\",\"MCO\",\"HPN\",-7.00,-16.00,0.00,\"\",0.00,151.00,133.00,972.00,,,,,,\n2015,5,6,\"B6\",\"94\",\"MCO\",\"HPN\",-6.00,-15.00,0.00,\"\",0.00,151.00,131.00,972.00,,,,,,\n2015,5,7,\"B6\",\"94\",\"MCO\",\"HPN\",-1.00,5.00,0.00,\"\",0.00,166.00,144.00,972.00,,,,,,\n2015,5,8,\"B6\",\"94\",\"MCO\",\"HPN\",-3.00,3.00,0.00,\"\",0.00,166.00,140.00,972.00,,,,,,\n2015,5,9,\"B6\",\"94\",\"MCO\",\"HPN\",17.00,19.00,0.00,\"\",0.00,162.00,143.00,972.00,17.00,0.00,2.00,0.00,0.00,\n2015,5,10,\"B6\",\"94\",\"MCO\",\"HPN\",-5.00,-1.00,0.00,\"\",0.00,164.00,142.00,972.00,,,,,,\n2015,5,11,\"B6\",\"94\",\"MCO\",\"HPN\",-4.00,6.00,0.00,\"\",0.00,170.00,138.00,972.00,,,,,,\n2015,5,12,\"B6\",\"94\",\"MCO\",\"HPN\",0.00,-7.00,0.00,\"\",0.00,153.00,136.00,972.00,,,,,,\n2015,5,13,\"B6\",\"94\",\"MCO\",\"HPN\",-4.00,-16.00,0.00,\"\",0.00,148.00,133.00,972.00,,,,,,\n2015,5,14,\"B6\",\"94\",\"MCO\",\"HPN\",-4.00,0.00,0.00,\"\",0.00,164.00,141.00,972.00,,,,,,\n2015,5,15,\"B6\",\"94\",\"MCO\",\"HPN\",-2.00,-3.00,0.00,\"\",0.00,159.00,136.00,972.00,,,,,,\n2015,5,16,\"B6\",\"94\",\"MCO\",\"HPN\",0.00,-1.00,0.00,\"\",0.00,159.00,138.00,972.00,,,,,,\n2015,5,17,\"B6\",\"94\",\"MCO\",\"HPN\",-7.00,-12.00,0.00,\"\",0.00,155.00,137.00,972.00,,,,,,\n2015,5,18,\"B6\",\"94\",\"MCO\",\"HPN\",-5.00,-3.00,0.00,\"\",0.00,162.00,143.00,972.00,,,,,,\n2015,5,19,\"B6\",\"94\",\"MCO\",\"HPN\",-2.00,5.00,0.00,\"\",0.00,167.00,136.00,972.00,,,,,,\n2015,5,20,\"B6\",\"94\",\"MCO\",\"HPN\",-2.00,2.00,0.00,\"\",0.00,164.00,139.00,972.00,,,,,,\n2015,5,21,\"B6\",\"94\",\"MCO\",\"HPN\",42.00,29.00,0.00,\"\",0.00,147.00,129.00,972.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"B6\",\"94\",\"MCO\",\"HPN\",39.00,30.00,0.00,\"\",0.00,151.00,130.00,972.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"94\",\"MCO\",\"HPN\",-8.00,-17.00,0.00,\"\",0.00,151.00,133.00,972.00,,,,,,\n2015,5,24,\"B6\",\"94\",\"MCO\",\"HPN\",-11.00,-2.00,0.00,\"\",0.00,169.00,141.00,972.00,,,,,,\n2015,5,25,\"B6\",\"94\",\"MCO\",\"HPN\",2.00,3.00,0.00,\"\",0.00,161.00,140.00,972.00,,,,,,\n2015,5,26,\"B6\",\"94\",\"MCO\",\"HPN\",-8.00,-19.00,0.00,\"\",0.00,149.00,133.00,972.00,,,,,,\n2015,5,27,\"B6\",\"94\",\"MCO\",\"HPN\",0.00,-9.00,0.00,\"\",0.00,151.00,136.00,972.00,,,,,,\n2015,5,28,\"B6\",\"94\",\"MCO\",\"HPN\",-4.00,-8.00,0.00,\"\",0.00,156.00,133.00,972.00,,,,,,\n2015,5,29,\"B6\",\"94\",\"MCO\",\"HPN\",-6.00,-6.00,0.00,\"\",0.00,160.00,136.00,972.00,,,,,,\n2015,5,30,\"B6\",\"94\",\"MCO\",\"HPN\",48.00,55.00,0.00,\"\",0.00,167.00,138.00,972.00,48.00,0.00,7.00,0.00,0.00,\n2015,5,31,\"B6\",\"94\",\"MCO\",\"HPN\",,,1.00,\"A\",0.00,,,972.00,,,,,,\n2015,5,1,\"B6\",\"97\",\"JFK\",\"DEN\",-3.00,-36.00,0.00,\"\",0.00,253.00,221.00,1626.00,,,,,,\n2015,5,2,\"B6\",\"97\",\"JFK\",\"DEN\",-4.00,-38.00,0.00,\"\",0.00,252.00,220.00,1626.00,,,,,,\n2015,5,3,\"B6\",\"97\",\"JFK\",\"DEN\",0.00,-36.00,0.00,\"\",0.00,250.00,215.00,1626.00,,,,,,\n2015,5,4,\"B6\",\"97\",\"JFK\",\"DEN\",18.00,38.00,0.00,\"\",0.00,306.00,274.00,1626.00,18.00,0.00,20.00,0.00,0.00,\n2015,5,5,\"B6\",\"97\",\"JFK\",\"DEN\",-2.00,-46.00,0.00,\"\",0.00,242.00,216.00,1626.00,,,,,,\n2015,5,6,\"B6\",\"97\",\"JFK\",\"DEN\",-5.00,-16.00,0.00,\"\",0.00,275.00,238.00,1626.00,,,,,,\n2015,5,7,\"B6\",\"97\",\"JFK\",\"DEN\",-3.00,-25.00,0.00,\"\",0.00,264.00,231.00,1626.00,,,,,,\n2015,5,8,\"B6\",\"97\",\"JFK\",\"DEN\",9.00,-11.00,0.00,\"\",0.00,266.00,226.00,1626.00,,,,,,\n2015,5,9,\"B6\",\"97\",\"JFK\",\"DEN\",-5.00,45.00,0.00,\"\",0.00,336.00,240.00,1626.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,10,\"B6\",\"97\",\"JFK\",\"DEN\",3.00,-26.00,0.00,\"\",0.00,257.00,225.00,1626.00,,,,,,\n2015,5,11,\"B6\",\"97\",\"JFK\",\"DEN\",-2.00,-32.00,0.00,\"\",0.00,256.00,225.00,1626.00,,,,,,\n2015,5,12,\"B6\",\"97\",\"JFK\",\"DEN\",-1.00,-1.00,0.00,\"\",0.00,286.00,252.00,1626.00,,,,,,\n2015,5,13,\"B6\",\"97\",\"JFK\",\"DEN\",-1.00,-28.00,0.00,\"\",0.00,259.00,223.00,1626.00,,,,,,\n2015,5,14,\"B6\",\"97\",\"JFK\",\"DEN\",0.00,-14.00,0.00,\"\",0.00,272.00,231.00,1626.00,,,,,,\n2015,5,15,\"B6\",\"97\",\"JFK\",\"DEN\",-1.00,-24.00,0.00,\"\",0.00,263.00,230.00,1626.00,,,,,,\n2015,5,16,\"B6\",\"97\",\"JFK\",\"DEN\",-5.00,4.00,0.00,\"\",0.00,295.00,261.00,1626.00,,,,,,\n2015,5,17,\"B6\",\"97\",\"JFK\",\"DEN\",0.00,-23.00,0.00,\"\",0.00,263.00,222.00,1626.00,,,,,,\n2015,5,18,\"B6\",\"97\",\"JFK\",\"DEN\",0.00,87.00,0.00,\"\",0.00,373.00,242.00,1626.00,0.00,0.00,87.00,0.00,0.00,\n2015,5,19,\"B6\",\"97\",\"JFK\",\"DEN\",-6.00,1.00,0.00,\"\",0.00,293.00,230.00,1626.00,,,,,,\n2015,5,20,\"B6\",\"97\",\"JFK\",\"DEN\",2.00,-12.00,0.00,\"\",0.00,272.00,244.00,1626.00,,,,,,\n2015,5,21,\"B6\",\"97\",\"JFK\",\"DEN\",-4.00,-9.00,0.00,\"\",0.00,281.00,237.00,1626.00,,,,,,\n2015,5,22,\"B6\",\"97\",\"JFK\",\"DEN\",-3.00,-13.00,0.00,\"\",0.00,276.00,238.00,1626.00,,,,,,\n2015,5,23,\"B6\",\"97\",\"JFK\",\"DEN\",-4.00,-27.00,0.00,\"\",0.00,263.00,241.00,1626.00,,,,,,\n2015,5,24,\"B6\",\"97\",\"JFK\",\"DEN\",-2.00,-39.00,0.00,\"\",0.00,249.00,215.00,1626.00,,,,,,\n2015,5,25,\"B6\",\"97\",\"JFK\",\"DEN\",-5.00,-18.00,0.00,\"\",0.00,273.00,235.00,1626.00,,,,,,\n2015,5,26,\"B6\",\"97\",\"JFK\",\"DEN\",-4.00,-29.00,0.00,\"\",0.00,261.00,230.00,1626.00,,,,,,\n2015,5,27,\"B6\",\"97\",\"JFK\",\"DEN\",-3.00,0.00,0.00,\"\",0.00,289.00,227.00,1626.00,,,,,,\n2015,5,28,\"B6\",\"97\",\"JFK\",\"DEN\",-5.00,-24.00,0.00,\"\",0.00,267.00,221.00,1626.00,,,,,,\n2015,5,29,\"B6\",\"97\",\"JFK\",\"DEN\",-4.00,-32.00,0.00,\"\",0.00,258.00,227.00,1626.00,,,,,,\n2015,5,30,\"B6\",\"97\",\"JFK\",\"DEN\",-8.00,-38.00,0.00,\"\",0.00,256.00,222.00,1626.00,,,,,,\n2015,5,31,\"B6\",\"97\",\"JFK\",\"DEN\",84.00,158.00,0.00,\"\",0.00,360.00,238.00,1626.00,0.00,0.00,74.00,0.00,84.00,\n2015,5,1,\"B6\",\"98\",\"DEN\",\"JFK\",-11.00,-15.00,0.00,\"\",0.00,222.00,200.00,1626.00,,,,,,\n2015,5,2,\"B6\",\"98\",\"DEN\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,213.00,194.00,1626.00,,,,,,\n2015,5,3,\"B6\",\"98\",\"DEN\",\"JFK\",-7.00,-5.00,0.00,\"\",0.00,228.00,210.00,1626.00,,,,,,\n2015,5,4,\"B6\",\"98\",\"DEN\",\"JFK\",26.00,12.00,0.00,\"\",0.00,212.00,197.00,1626.00,,,,,,\n2015,5,5,\"B6\",\"98\",\"DEN\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,221.00,200.00,1626.00,,,,,,\n2015,5,6,\"B6\",\"98\",\"DEN\",\"JFK\",1.00,-4.00,0.00,\"\",0.00,221.00,203.00,1626.00,,,,,,\n2015,5,7,\"B6\",\"98\",\"DEN\",\"JFK\",-7.00,41.00,0.00,\"\",0.00,274.00,256.00,1626.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,8,\"B6\",\"98\",\"DEN\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,214.00,196.00,1626.00,,,,,,\n2015,5,9,\"B6\",\"98\",\"DEN\",\"JFK\",45.00,131.00,0.00,\"\",0.00,312.00,195.00,1626.00,0.00,1.00,86.00,0.00,44.00,\n2015,5,10,\"B6\",\"98\",\"DEN\",\"JFK\",-1.00,-1.00,0.00,\"\",0.00,226.00,207.00,1626.00,,,,,,\n2015,5,11,\"B6\",\"98\",\"DEN\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,203.00,185.00,1626.00,,,,,,\n2015,5,12,\"B6\",\"98\",\"DEN\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,210.00,195.00,1626.00,,,,,,\n2015,5,13,\"B6\",\"98\",\"DEN\",\"JFK\",15.00,9.00,0.00,\"\",0.00,220.00,201.00,1626.00,,,,,,\n2015,5,14,\"B6\",\"98\",\"DEN\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,213.00,195.00,1626.00,,,,,,\n2015,5,15,\"B6\",\"98\",\"DEN\",\"JFK\",3.00,27.00,0.00,\"\",0.00,250.00,207.00,1626.00,3.00,0.00,24.00,0.00,0.00,\n2015,5,16,\"B6\",\"98\",\"DEN\",\"JFK\",0.00,22.00,0.00,\"\",0.00,248.00,219.00,1626.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,17,\"B6\",\"98\",\"DEN\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,230.00,203.00,1626.00,,,,,,\n2015,5,18,\"B6\",\"98\",\"DEN\",\"JFK\",86.00,60.00,0.00,\"\",0.00,200.00,184.00,1626.00,0.00,0.00,0.00,0.00,60.00,\n2015,5,19,\"B6\",\"98\",\"DEN\",\"JFK\",1.00,-5.00,0.00,\"\",0.00,220.00,176.00,1626.00,,,,,,\n2015,5,20,\"B6\",\"98\",\"DEN\",\"JFK\",-4.00,-35.00,0.00,\"\",0.00,195.00,177.00,1626.00,,,,,,\n2015,5,21,\"B6\",\"98\",\"DEN\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,205.00,183.00,1626.00,,,,,,\n2015,5,22,\"B6\",\"98\",\"DEN\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,206.00,184.00,1626.00,,,,,,\n2015,5,23,\"B6\",\"98\",\"DEN\",\"JFK\",-4.00,-29.00,0.00,\"\",0.00,201.00,182.00,1626.00,,,,,,\n2015,5,24,\"B6\",\"98\",\"DEN\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,211.00,193.00,1626.00,,,,,,\n2015,5,25,\"B6\",\"98\",\"DEN\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,215.00,196.00,1626.00,,,,,,\n2015,5,26,\"B6\",\"98\",\"DEN\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,212.00,196.00,1626.00,,,,,,\n2015,5,27,\"B6\",\"98\",\"DEN\",\"JFK\",15.00,-1.00,0.00,\"\",0.00,210.00,193.00,1626.00,,,,,,\n2015,5,28,\"B6\",\"98\",\"DEN\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,209.00,186.00,1626.00,,,,,,\n2015,5,29,\"B6\",\"98\",\"DEN\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,215.00,196.00,1626.00,,,,,,\n2015,5,30,\"B6\",\"98\",\"DEN\",\"JFK\",-3.00,9.00,0.00,\"\",0.00,238.00,196.00,1626.00,,,,,,\n2015,5,31,\"B6\",\"98\",\"DEN\",\"JFK\",162.00,158.00,0.00,\"\",0.00,222.00,205.00,1626.00,5.00,0.00,0.00,0.00,153.00,\n2015,5,1,\"B6\",\"102\",\"JFK\",\"BUF\",-6.00,-34.00,0.00,\"\",0.00,80.00,53.00,301.00,,,,,,\n2015,5,2,\"B6\",\"102\",\"JFK\",\"BUF\",-5.00,-26.00,0.00,\"\",0.00,87.00,52.00,301.00,,,,,,\n2015,5,3,\"B6\",\"102\",\"JFK\",\"BUF\",-5.00,-36.00,0.00,\"\",0.00,77.00,53.00,301.00,,,,,,\n2015,5,4,\"B6\",\"102\",\"JFK\",\"BUF\",-5.00,-27.00,0.00,\"\",0.00,86.00,53.00,301.00,,,,,,\n2015,5,5,\"B6\",\"102\",\"JFK\",\"BUF\",-4.00,-28.00,0.00,\"\",0.00,84.00,55.00,301.00,,,,,,\n2015,5,6,\"B6\",\"102\",\"JFK\",\"BUF\",82.00,46.00,0.00,\"\",0.00,72.00,51.00,301.00,46.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"B6\",\"102\",\"JFK\",\"BUF\",-4.00,-23.00,0.00,\"\",0.00,89.00,56.00,301.00,,,,,,\n2015,5,8,\"B6\",\"102\",\"JFK\",\"BUF\",117.00,88.00,0.00,\"\",0.00,79.00,50.00,301.00,28.00,0.00,0.00,0.00,60.00,\n2015,5,9,\"B6\",\"102\",\"JFK\",\"BUF\",-6.00,-32.00,0.00,\"\",0.00,82.00,52.00,301.00,,,,,,\n2015,5,10,\"B6\",\"102\",\"JFK\",\"BUF\",33.00,0.00,0.00,\"\",0.00,75.00,50.00,301.00,,,,,,\n2015,5,11,\"B6\",\"102\",\"JFK\",\"BUF\",0.00,-21.00,0.00,\"\",0.00,87.00,53.00,301.00,,,,,,\n2015,5,12,\"B6\",\"102\",\"JFK\",\"BUF\",-5.00,-23.00,0.00,\"\",0.00,90.00,58.00,301.00,,,,,,\n2015,5,13,\"B6\",\"102\",\"JFK\",\"BUF\",0.00,-12.00,0.00,\"\",0.00,96.00,59.00,301.00,,,,,,\n2015,5,14,\"B6\",\"102\",\"JFK\",\"BUF\",-5.00,-28.00,0.00,\"\",0.00,85.00,54.00,301.00,,,,,,\n2015,5,15,\"B6\",\"102\",\"JFK\",\"BUF\",3.00,-16.00,0.00,\"\",0.00,89.00,57.00,301.00,,,,,,\n2015,5,16,\"B6\",\"102\",\"JFK\",\"BUF\",-10.00,-34.00,0.00,\"\",0.00,84.00,52.00,301.00,,,,,,\n2015,5,17,\"B6\",\"102\",\"JFK\",\"BUF\",-7.00,-30.00,0.00,\"\",0.00,85.00,50.00,301.00,,,,,,\n2015,5,18,\"B6\",\"102\",\"JFK\",\"BUF\",93.00,183.00,0.00,\"\",0.00,198.00,63.00,301.00,2.00,0.00,90.00,0.00,91.00,\n2015,5,19,\"B6\",\"102\",\"JFK\",\"BUF\",-5.00,-1.00,0.00,\"\",0.00,112.00,59.00,301.00,,,,,,\n2015,5,20,\"B6\",\"102\",\"JFK\",\"BUF\",0.00,-26.00,0.00,\"\",0.00,82.00,56.00,301.00,,,,,,\n2015,5,21,\"B6\",\"102\",\"JFK\",\"BUF\",-4.00,-6.00,0.00,\"\",0.00,106.00,57.00,301.00,,,,,,\n2015,5,22,\"B6\",\"102\",\"JFK\",\"BUF\",41.00,22.00,0.00,\"\",0.00,89.00,62.00,301.00,6.00,0.00,0.00,0.00,16.00,\n2015,5,23,\"B6\",\"102\",\"JFK\",\"BUF\",0.00,-22.00,0.00,\"\",0.00,86.00,53.00,301.00,,,,,,\n2015,5,24,\"B6\",\"102\",\"JFK\",\"BUF\",-4.00,-20.00,0.00,\"\",0.00,92.00,58.00,301.00,,,,,,\n2015,5,25,\"B6\",\"102\",\"JFK\",\"BUF\",4.00,-15.00,0.00,\"\",0.00,89.00,54.00,301.00,,,,,,\n2015,5,26,\"B6\",\"102\",\"JFK\",\"BUF\",34.00,10.00,0.00,\"\",0.00,84.00,49.00,301.00,,,,,,\n2015,5,27,\"B6\",\"102\",\"JFK\",\"BUF\",160.00,141.00,0.00,\"\",0.00,89.00,52.00,301.00,2.00,0.00,0.00,0.00,139.00,\n2015,5,28,\"B6\",\"102\",\"JFK\",\"BUF\",-3.00,-4.00,0.00,\"\",0.00,107.00,55.00,301.00,,,,,,\n2015,5,29,\"B6\",\"102\",\"JFK\",\"BUF\",103.00,76.00,0.00,\"\",0.00,81.00,47.00,301.00,76.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"B6\",\"102\",\"JFK\",\"BUF\",11.00,-11.00,0.00,\"\",0.00,86.00,56.00,301.00,,,,,,\n2015,5,31,\"B6\",\"102\",\"JFK\",\"BUF\",338.00,314.00,0.00,\"\",0.00,84.00,55.00,301.00,0.00,101.00,0.00,0.00,213.00,\n2015,5,1,\"B6\",\"105\",\"JFK\",\"ORD\",-7.00,-47.00,0.00,\"\",0.00,145.00,109.00,740.00,,,,,,\n2015,5,2,\"B6\",\"105\",\"JFK\",\"ORD\",-2.00,-37.00,0.00,\"\",0.00,150.00,110.00,740.00,,,,,,\n2015,5,3,\"B6\",\"105\",\"JFK\",\"ORD\",-5.00,-42.00,0.00,\"\",0.00,148.00,116.00,740.00,,,,,,\n2015,5,4,\"B6\",\"105\",\"JFK\",\"ORD\",-7.00,-33.00,0.00,\"\",0.00,159.00,119.00,740.00,,,,,,\n2015,5,5,\"B6\",\"105\",\"JFK\",\"ORD\",73.00,51.00,0.00,\"\",0.00,163.00,122.00,740.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,6,\"B6\",\"105\",\"JFK\",\"ORD\",0.00,-15.00,0.00,\"\",0.00,170.00,117.00,740.00,,,,,,\n2015,5,7,\"B6\",\"105\",\"JFK\",\"ORD\",5.00,-21.00,0.00,\"\",0.00,159.00,112.00,740.00,,,,,,\n2015,5,8,\"B6\",\"105\",\"JFK\",\"ORD\",122.00,88.00,0.00,\"\",0.00,151.00,112.00,740.00,0.00,0.00,54.00,0.00,34.00,\n2015,5,9,\"B6\",\"105\",\"JFK\",\"ORD\",0.00,-35.00,0.00,\"\",0.00,150.00,112.00,740.00,,,,,,\n2015,5,10,\"B6\",\"105\",\"JFK\",\"ORD\",127.00,115.00,0.00,\"\",0.00,173.00,118.00,740.00,0.00,0.00,18.00,0.00,97.00,\n2015,5,11,\"B6\",\"105\",\"JFK\",\"ORD\",-2.00,-24.00,0.00,\"\",0.00,163.00,117.00,740.00,,,,,,\n2015,5,12,\"B6\",\"105\",\"JFK\",\"ORD\",0.00,-9.00,0.00,\"\",0.00,176.00,132.00,740.00,,,,,,\n2015,5,13,\"B6\",\"105\",\"JFK\",\"ORD\",8.00,-12.00,0.00,\"\",0.00,165.00,125.00,740.00,,,,,,\n2015,5,14,\"B6\",\"105\",\"JFK\",\"ORD\",27.00,-8.00,0.00,\"\",0.00,150.00,120.00,740.00,,,,,,\n2015,5,15,\"B6\",\"105\",\"JFK\",\"ORD\",-2.00,-23.00,0.00,\"\",0.00,164.00,118.00,740.00,,,,,,\n2015,5,16,\"B6\",\"105\",\"JFK\",\"ORD\",-6.00,-43.00,0.00,\"\",0.00,148.00,116.00,740.00,,,,,,\n2015,5,17,\"B6\",\"105\",\"JFK\",\"ORD\",0.00,-26.00,0.00,\"\",0.00,159.00,108.00,740.00,,,,,,\n2015,5,18,\"B6\",\"105\",\"JFK\",\"ORD\",393.00,348.00,0.00,\"\",0.00,140.00,112.00,740.00,0.00,0.00,348.00,0.00,0.00,\n2015,5,19,\"B6\",\"105\",\"JFK\",\"ORD\",19.00,46.00,0.00,\"\",0.00,212.00,124.00,740.00,7.00,0.00,27.00,0.00,12.00,\n2015,5,20,\"B6\",\"105\",\"JFK\",\"ORD\",4.00,32.00,0.00,\"\",0.00,213.00,125.00,740.00,4.00,0.00,28.00,0.00,0.00,\n2015,5,21,\"B6\",\"105\",\"JFK\",\"ORD\",-3.00,-9.00,0.00,\"\",0.00,179.00,115.00,740.00,,,,,,\n2015,5,22,\"B6\",\"105\",\"JFK\",\"ORD\",11.00,15.00,0.00,\"\",0.00,189.00,131.00,740.00,2.00,0.00,4.00,0.00,9.00,\n2015,5,23,\"B6\",\"105\",\"JFK\",\"ORD\",-5.00,-30.00,0.00,\"\",0.00,160.00,127.00,740.00,,,,,,\n2015,5,24,\"B6\",\"105\",\"JFK\",\"ORD\",-2.00,-16.00,0.00,\"\",0.00,171.00,123.00,740.00,,,,,,\n2015,5,25,\"B6\",\"105\",\"JFK\",\"ORD\",-6.00,-32.00,0.00,\"\",0.00,159.00,114.00,740.00,,,,,,\n2015,5,26,\"B6\",\"105\",\"JFK\",\"ORD\",-5.00,-44.00,0.00,\"\",0.00,146.00,112.00,740.00,,,,,,\n2015,5,27,\"B6\",\"105\",\"JFK\",\"ORD\",-2.00,-4.00,0.00,\"\",0.00,183.00,111.00,740.00,,,,,,\n2015,5,28,\"B6\",\"105\",\"JFK\",\"ORD\",4.00,-20.00,0.00,\"\",0.00,161.00,116.00,740.00,,,,,,\n2015,5,29,\"B6\",\"105\",\"JFK\",\"ORD\",-2.00,6.00,0.00,\"\",0.00,193.00,131.00,740.00,,,,,,\n2015,5,30,\"B6\",\"105\",\"JFK\",\"ORD\",36.00,-3.00,0.00,\"\",0.00,146.00,116.00,740.00,,,,,,\n2015,5,31,\"B6\",\"105\",\"JFK\",\"ORD\",315.00,290.00,0.00,\"\",0.00,160.00,116.00,740.00,0.00,2.00,0.00,0.00,288.00,\n2015,5,1,\"B6\",\"106\",\"ORD\",\"JFK\",46.00,37.00,0.00,\"\",0.00,121.00,104.00,740.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"B6\",\"106\",\"ORD\",\"JFK\",7.00,-4.00,0.00,\"\",0.00,119.00,104.00,740.00,,,,,,\n2015,5,3,\"B6\",\"106\",\"ORD\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,116.00,99.00,740.00,,,,,,\n2015,5,4,\"B6\",\"106\",\"ORD\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,124.00,103.00,740.00,,,,,,\n2015,5,5,\"B6\",\"106\",\"ORD\",\"JFK\",18.00,-1.00,0.00,\"\",0.00,111.00,95.00,740.00,,,,,,\n2015,5,6,\"B6\",\"106\",\"ORD\",\"JFK\",-10.00,-16.00,0.00,\"\",0.00,124.00,100.00,740.00,,,,,,\n2015,5,7,\"B6\",\"106\",\"ORD\",\"JFK\",-13.00,-10.00,0.00,\"\",0.00,133.00,106.00,740.00,,,,,,\n2015,5,8,\"B6\",\"106\",\"ORD\",\"JFK\",-5.00,24.00,0.00,\"\",0.00,159.00,132.00,740.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,9,\"B6\",\"106\",\"ORD\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,119.00,105.00,740.00,,,,,,\n2015,5,10,\"B6\",\"106\",\"ORD\",\"JFK\",-9.00,-15.00,0.00,\"\",0.00,124.00,99.00,740.00,,,,,,\n2015,5,11,\"B6\",\"106\",\"ORD\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,123.00,103.00,740.00,,,,,,\n2015,5,12,\"B6\",\"106\",\"ORD\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,121.00,100.00,740.00,,,,,,\n2015,5,13,\"B6\",\"106\",\"ORD\",\"JFK\",-9.00,-25.00,0.00,\"\",0.00,114.00,94.00,740.00,,,,,,\n2015,5,14,\"B6\",\"106\",\"ORD\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,118.00,96.00,740.00,,,,,,\n2015,5,15,\"B6\",\"106\",\"ORD\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,114.00,94.00,740.00,,,,,,\n2015,5,16,\"B6\",\"106\",\"ORD\",\"JFK\",-6.00,0.00,0.00,\"\",0.00,136.00,106.00,740.00,,,,,,\n2015,5,17,\"B6\",\"106\",\"ORD\",\"JFK\",-3.00,1.00,0.00,\"\",0.00,134.00,104.00,740.00,,,,,,\n2015,5,18,\"B6\",\"106\",\"ORD\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,121.00,101.00,740.00,,,,,,\n2015,5,19,\"B6\",\"106\",\"ORD\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,116.00,101.00,740.00,,,,,,\n2015,5,20,\"B6\",\"106\",\"ORD\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,112.00,92.00,740.00,,,,,,\n2015,5,21,\"B6\",\"106\",\"ORD\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,119.00,92.00,740.00,,,,,,\n2015,5,22,\"B6\",\"106\",\"ORD\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,124.00,96.00,740.00,,,,,,\n2015,5,23,\"B6\",\"106\",\"ORD\",\"JFK\",-10.00,-26.00,0.00,\"\",0.00,114.00,95.00,740.00,,,,,,\n2015,5,24,\"B6\",\"106\",\"ORD\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,113.00,91.00,740.00,,,,,,\n2015,5,25,\"B6\",\"106\",\"ORD\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,116.00,97.00,740.00,,,,,,\n2015,5,26,\"B6\",\"106\",\"ORD\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,115.00,99.00,740.00,,,,,,\n2015,5,1,\"B6\",\"315\",\"SYR\",\"JFK\",-10.00,-3.00,0.00,\"\",0.00,79.00,53.00,209.00,,,,,,\n2015,5,2,\"B6\",\"315\",\"SYR\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,68.00,46.00,209.00,,,,,,\n2015,5,3,\"B6\",\"315\",\"SYR\",\"JFK\",-7.00,-11.00,0.00,\"\",0.00,68.00,53.00,209.00,,,,,,\n2015,5,4,\"B6\",\"315\",\"SYR\",\"JFK\",-11.00,-20.00,0.00,\"\",0.00,63.00,49.00,209.00,,,,,,\n2015,5,5,\"B6\",\"315\",\"SYR\",\"JFK\",-14.00,-22.00,0.00,\"\",0.00,64.00,43.00,209.00,,,,,,\n2015,5,6,\"B6\",\"315\",\"SYR\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,54.00,41.00,209.00,,,,,,\n2015,5,7,\"B6\",\"315\",\"SYR\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,58.00,43.00,209.00,,,,,,\n2015,5,8,\"B6\",\"315\",\"SYR\",\"JFK\",17.00,6.00,0.00,\"\",0.00,61.00,47.00,209.00,,,,,,\n2015,5,9,\"B6\",\"315\",\"SYR\",\"JFK\",-8.00,-9.00,0.00,\"\",0.00,71.00,47.00,209.00,,,,,,\n2015,5,10,\"B6\",\"315\",\"SYR\",\"JFK\",-15.00,-16.00,0.00,\"\",0.00,71.00,48.00,209.00,,,,,,\n2015,5,11,\"B6\",\"315\",\"SYR\",\"JFK\",-8.00,-13.00,0.00,\"\",0.00,67.00,51.00,209.00,,,,,,\n2015,5,12,\"B6\",\"315\",\"SYR\",\"JFK\",15.00,10.00,0.00,\"\",0.00,67.00,51.00,209.00,,,,,,\n2015,5,13,\"B6\",\"315\",\"SYR\",\"JFK\",28.00,18.00,0.00,\"\",0.00,62.00,44.00,209.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"B6\",\"315\",\"SYR\",\"JFK\",8.00,-8.00,0.00,\"\",0.00,56.00,40.00,209.00,,,,,,\n2015,5,15,\"B6\",\"315\",\"SYR\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,67.00,49.00,209.00,,,,,,\n2015,5,16,\"B6\",\"315\",\"SYR\",\"JFK\",48.00,33.00,0.00,\"\",0.00,57.00,44.00,209.00,1.00,0.00,0.00,0.00,32.00,\n2015,5,17,\"B6\",\"315\",\"SYR\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,59.00,44.00,209.00,,,,,,\n2015,5,18,\"B6\",\"315\",\"SYR\",\"JFK\",12.00,56.00,0.00,\"\",0.00,116.00,56.00,209.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,19,\"B6\",\"315\",\"SYR\",\"JFK\",3.00,-5.00,0.00,\"\",0.00,64.00,47.00,209.00,,,,,,\n2015,5,20,\"B6\",\"315\",\"SYR\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,66.00,49.00,209.00,,,,,,\n2015,5,21,\"B6\",\"315\",\"SYR\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,63.00,46.00,209.00,,,,,,\n2015,5,22,\"B6\",\"315\",\"SYR\",\"JFK\",24.00,23.00,0.00,\"\",0.00,71.00,49.00,209.00,7.00,0.00,0.00,0.00,16.00,\n2015,5,23,\"B6\",\"315\",\"SYR\",\"JFK\",-11.00,-22.00,0.00,\"\",0.00,61.00,43.00,209.00,,,,,,\n2015,5,24,\"B6\",\"315\",\"SYR\",\"JFK\",-14.00,-19.00,0.00,\"\",0.00,67.00,52.00,209.00,,,,,,\n2015,5,25,\"B6\",\"315\",\"SYR\",\"JFK\",-12.00,-21.00,0.00,\"\",0.00,63.00,42.00,209.00,,,,,,\n2015,5,26,\"B6\",\"315\",\"SYR\",\"JFK\",-12.00,-20.00,0.00,\"\",0.00,64.00,46.00,209.00,,,,,,\n2015,5,27,\"B6\",\"315\",\"SYR\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,59.00,46.00,209.00,,,,,,\n2015,5,28,\"B6\",\"315\",\"SYR\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,61.00,47.00,209.00,,,,,,\n2015,5,29,\"B6\",\"315\",\"SYR\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,58.00,47.00,209.00,,,,,,\n2015,5,30,\"B6\",\"315\",\"SYR\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,58.00,47.00,209.00,,,,,,\n2015,5,31,\"B6\",\"315\",\"SYR\",\"JFK\",-12.00,-17.00,0.00,\"\",0.00,67.00,49.00,209.00,,,,,,\n2015,5,1,\"B6\",\"316\",\"SFO\",\"JFK\",-4.00,-39.00,0.00,\"\",0.00,316.00,299.00,2586.00,,,,,,\n2015,5,2,\"B6\",\"316\",\"SFO\",\"JFK\",-6.00,-36.00,0.00,\"\",0.00,321.00,307.00,2586.00,,,,,,\n2015,5,3,\"B6\",\"316\",\"SFO\",\"JFK\",15.00,-10.00,0.00,\"\",0.00,326.00,308.00,2586.00,,,,,,\n2015,5,4,\"B6\",\"316\",\"SFO\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,330.00,308.00,2586.00,,,,,,\n2015,5,5,\"B6\",\"316\",\"SFO\",\"JFK\",5.00,-22.00,0.00,\"\",0.00,324.00,304.00,2586.00,,,,,,\n2015,5,6,\"B6\",\"316\",\"SFO\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,331.00,310.00,2586.00,,,,,,\n2015,5,7,\"B6\",\"316\",\"SFO\",\"JFK\",1.00,-19.00,0.00,\"\",0.00,331.00,315.00,2586.00,,,,,,\n2015,5,8,\"B6\",\"316\",\"SFO\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,333.00,312.00,2586.00,,,,,,\n2015,5,9,\"B6\",\"316\",\"SFO\",\"JFK\",-9.00,-24.00,0.00,\"\",0.00,336.00,316.00,2586.00,,,,,,\n2015,5,10,\"B6\",\"316\",\"SFO\",\"JFK\",0.00,-22.00,0.00,\"\",0.00,329.00,309.00,2586.00,,,,,,\n2015,5,11,\"B6\",\"316\",\"SFO\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,336.00,299.00,2586.00,,,,,,\n2015,5,12,\"B6\",\"316\",\"SFO\",\"JFK\",11.00,-31.00,0.00,\"\",0.00,309.00,278.00,2586.00,,,,,,\n2015,5,13,\"B6\",\"316\",\"SFO\",\"JFK\",-1.00,-31.00,0.00,\"\",0.00,321.00,294.00,2586.00,,,,,,\n2015,5,14,\"B6\",\"316\",\"SFO\",\"JFK\",3.00,-22.00,0.00,\"\",0.00,326.00,307.00,2586.00,,,,,,\n2015,5,15,\"B6\",\"316\",\"SFO\",\"JFK\",20.00,-8.00,0.00,\"\",0.00,323.00,306.00,2586.00,,,,,,\n2015,5,16,\"B6\",\"316\",\"SFO\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,338.00,315.00,2586.00,,,,,,\n2015,5,17,\"B6\",\"316\",\"SFO\",\"JFK\",29.00,19.00,0.00,\"\",0.00,341.00,322.00,2586.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"316\",\"SFO\",\"JFK\",177.00,185.00,0.00,\"\",0.00,359.00,333.00,2586.00,0.00,0.00,185.00,0.00,0.00,\n2015,5,19,\"B6\",\"316\",\"SFO\",\"JFK\",21.00,9.00,0.00,\"\",0.00,339.00,306.00,2586.00,,,,,,\n2015,5,20,\"B6\",\"316\",\"SFO\",\"JFK\",-2.00,-38.00,0.00,\"\",0.00,315.00,291.00,2586.00,,,,,,\n2015,5,21,\"B6\",\"316\",\"SFO\",\"JFK\",6.00,-19.00,0.00,\"\",0.00,326.00,298.00,2586.00,,,,,,\n2015,5,22,\"B6\",\"316\",\"SFO\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,335.00,309.00,2586.00,,,,,,\n2015,5,23,\"B6\",\"316\",\"SFO\",\"JFK\",9.00,-29.00,0.00,\"\",0.00,313.00,294.00,2586.00,,,,,,\n2015,5,24,\"B6\",\"316\",\"SFO\",\"JFK\",-10.00,-26.00,0.00,\"\",0.00,335.00,302.00,2586.00,,,,,,\n2015,5,25,\"B6\",\"316\",\"SFO\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,332.00,311.00,2586.00,,,,,,\n2015,5,26,\"B6\",\"316\",\"SFO\",\"JFK\",32.00,11.00,0.00,\"\",0.00,330.00,314.00,2586.00,,,,,,\n2015,5,27,\"B6\",\"316\",\"SFO\",\"JFK\",156.00,141.00,0.00,\"\",0.00,336.00,307.00,2586.00,0.00,0.00,141.00,0.00,0.00,\n2015,5,28,\"B6\",\"316\",\"SFO\",\"JFK\",14.00,-6.00,0.00,\"\",0.00,331.00,303.00,2586.00,,,,,,\n2015,5,29,\"B6\",\"316\",\"SFO\",\"JFK\",0.00,-35.00,0.00,\"\",0.00,316.00,300.00,2586.00,,,,,,\n2015,5,30,\"B6\",\"316\",\"SFO\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,338.00,303.00,2586.00,,,,,,\n2015,5,31,\"B6\",\"316\",\"SFO\",\"JFK\",220.00,238.00,0.00,\"\",0.00,369.00,341.00,2586.00,0.00,0.00,238.00,0.00,0.00,\n2015,5,1,\"B6\",\"317\",\"BOS\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,70.00,52.00,187.00,,,,,,\n2015,5,3,\"B6\",\"317\",\"BOS\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,70.00,42.00,187.00,,,,,,\n2015,5,4,\"B6\",\"317\",\"BOS\",\"JFK\",49.00,29.00,0.00,\"\",0.00,65.00,45.00,187.00,0.00,0.00,0.00,0.00,29.00,\n2015,5,5,\"B6\",\"317\",\"BOS\",\"JFK\",-11.00,-33.00,0.00,\"\",0.00,63.00,43.00,187.00,,,,,,\n2015,5,6,\"B6\",\"317\",\"BOS\",\"JFK\",33.00,30.00,0.00,\"\",0.00,82.00,52.00,187.00,4.00,0.00,0.00,0.00,26.00,\n2015,5,7,\"B6\",\"317\",\"BOS\",\"JFK\",-1.00,-9.00,0.00,\"\",0.00,77.00,43.00,187.00,,,,,,\n2015,5,8,\"B6\",\"317\",\"BOS\",\"JFK\",116.00,91.00,0.00,\"\",0.00,60.00,45.00,187.00,0.00,0.00,91.00,0.00,0.00,\n2015,5,9,\"B6\",\"317\",\"BOS\",\"JFK\",87.00,66.00,0.00,\"\",0.00,64.00,40.00,187.00,0.00,0.00,66.00,0.00,0.00,\n2015,5,10,\"B6\",\"317\",\"BOS\",\"JFK\",32.00,35.00,0.00,\"\",0.00,88.00,50.00,187.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,11,\"B6\",\"317\",\"BOS\",\"JFK\",,,1.00,\"C\",0.00,,,187.00,,,,,,\n2015,5,12,\"B6\",\"317\",\"BOS\",\"JFK\",30.00,24.00,0.00,\"\",0.00,79.00,46.00,187.00,0.00,0.00,22.00,0.00,2.00,\n2015,5,13,\"B6\",\"317\",\"BOS\",\"JFK\",81.00,70.00,0.00,\"\",0.00,74.00,44.00,187.00,40.00,0.00,0.00,0.00,30.00,\n2015,5,14,\"B6\",\"317\",\"BOS\",\"JFK\",-9.00,-34.00,0.00,\"\",0.00,60.00,40.00,187.00,,,,,,\n2015,5,15,\"B6\",\"317\",\"BOS\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,75.00,56.00,187.00,,,,,,\n2015,5,17,\"B6\",\"317\",\"BOS\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,65.00,48.00,187.00,,,,,,\n2015,5,18,\"B6\",\"317\",\"BOS\",\"JFK\",27.00,18.00,0.00,\"\",0.00,76.00,48.00,187.00,0.00,0.00,7.00,0.00,11.00,\n2015,5,19,\"B6\",\"317\",\"BOS\",\"JFK\",43.00,24.00,0.00,\"\",0.00,66.00,48.00,187.00,4.00,0.00,0.00,0.00,20.00,\n2015,5,20,\"B6\",\"317\",\"BOS\",\"JFK\",30.00,15.00,0.00,\"\",0.00,70.00,42.00,187.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,21,\"B6\",\"317\",\"BOS\",\"JFK\",4.00,-5.00,0.00,\"\",0.00,76.00,45.00,187.00,,,,,,\n2015,5,22,\"B6\",\"317\",\"BOS\",\"JFK\",90.00,66.00,0.00,\"\",0.00,61.00,38.00,187.00,0.00,0.00,66.00,0.00,0.00,\n2015,5,24,\"B6\",\"317\",\"BOS\",\"JFK\",-12.00,-19.00,0.00,\"\",0.00,78.00,50.00,187.00,,,,,,\n2015,5,25,\"B6\",\"317\",\"BOS\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,88.00,49.00,187.00,,,,,,\n2015,5,26,\"B6\",\"317\",\"BOS\",\"JFK\",-12.00,-7.00,0.00,\"\",0.00,90.00,50.00,187.00,,,,,,\n2015,5,27,\"B6\",\"317\",\"BOS\",\"JFK\",289.00,267.00,0.00,\"\",0.00,63.00,46.00,187.00,7.00,0.00,0.00,0.00,260.00,\n2015,5,28,\"B6\",\"317\",\"BOS\",\"JFK\",10.00,2.00,0.00,\"\",0.00,77.00,40.00,187.00,,,,,,\n2015,5,29,\"B6\",\"317\",\"BOS\",\"JFK\",102.00,79.00,0.00,\"\",0.00,62.00,39.00,187.00,3.00,0.00,0.00,0.00,76.00,\n2015,5,30,\"B6\",\"317\",\"BOS\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,67.00,51.00,187.00,,,,,,\n2015,5,31,\"B6\",\"317\",\"BOS\",\"JFK\",267.00,278.00,0.00,\"\",0.00,96.00,72.00,187.00,0.00,0.00,238.00,0.00,40.00,\n2015,5,1,\"B6\",\"318\",\"JFK\",\"BOS\",-5.00,-10.00,0.00,\"\",0.00,60.00,37.00,187.00,,,,,,\n2015,5,2,\"B6\",\"318\",\"JFK\",\"BOS\",-5.00,-2.00,0.00,\"\",0.00,68.00,39.00,187.00,,,,,,\n2015,5,3,\"B6\",\"318\",\"JFK\",\"BOS\",-5.00,2.00,0.00,\"\",0.00,72.00,42.00,187.00,,,,,,\n2015,5,4,\"B6\",\"318\",\"JFK\",\"BOS\",-2.00,11.00,0.00,\"\",0.00,78.00,43.00,187.00,,,,,,\n2015,5,5,\"B6\",\"318\",\"JFK\",\"BOS\",0.00,20.00,0.00,\"\",0.00,85.00,43.00,187.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,6,\"B6\",\"318\",\"JFK\",\"BOS\",-6.00,-21.00,0.00,\"\",0.00,50.00,35.00,187.00,,,,,,\n2015,5,7,\"B6\",\"318\",\"JFK\",\"BOS\",-4.00,0.00,0.00,\"\",0.00,69.00,42.00,187.00,,,,,,\n2015,5,8,\"B6\",\"318\",\"JFK\",\"BOS\",26.00,44.00,0.00,\"\",0.00,83.00,49.00,187.00,0.00,26.00,18.00,0.00,0.00,\n2015,5,9,\"B6\",\"318\",\"JFK\",\"BOS\",-3.00,6.00,0.00,\"\",0.00,74.00,35.00,187.00,,,,,,\n2015,5,10,\"B6\",\"318\",\"JFK\",\"BOS\",-2.00,5.00,0.00,\"\",0.00,72.00,42.00,187.00,,,,,,\n2015,5,11,\"B6\",\"318\",\"JFK\",\"BOS\",7.00,19.00,0.00,\"\",0.00,77.00,46.00,187.00,3.00,0.00,12.00,0.00,4.00,\n2015,5,12,\"B6\",\"318\",\"JFK\",\"BOS\",-2.00,-8.00,0.00,\"\",0.00,59.00,37.00,187.00,,,,,,\n2015,5,13,\"B6\",\"318\",\"JFK\",\"BOS\",-6.00,-4.00,0.00,\"\",0.00,67.00,37.00,187.00,,,,,,\n2015,5,14,\"B6\",\"318\",\"JFK\",\"BOS\",-3.00,-11.00,0.00,\"\",0.00,57.00,39.00,187.00,,,,,,\n2015,5,15,\"B6\",\"318\",\"JFK\",\"BOS\",-1.00,-13.00,0.00,\"\",0.00,53.00,37.00,187.00,,,,,,\n2015,5,16,\"B6\",\"318\",\"JFK\",\"BOS\",-1.00,-2.00,0.00,\"\",0.00,64.00,39.00,187.00,,,,,,\n2015,5,17,\"B6\",\"318\",\"JFK\",\"BOS\",3.00,4.00,0.00,\"\",0.00,66.00,42.00,187.00,,,,,,\n2015,5,18,\"B6\",\"318\",\"JFK\",\"BOS\",-1.00,0.00,0.00,\"\",0.00,66.00,39.00,187.00,,,,,,\n2015,5,19,\"B6\",\"318\",\"JFK\",\"BOS\",12.00,30.00,0.00,\"\",0.00,83.00,54.00,187.00,12.00,0.00,18.00,0.00,0.00,\n2015,5,20,\"B6\",\"318\",\"JFK\",\"BOS\",-7.00,-16.00,0.00,\"\",0.00,56.00,36.00,187.00,,,,,,\n2015,5,21,\"B6\",\"318\",\"JFK\",\"BOS\",-7.00,-11.00,0.00,\"\",0.00,61.00,44.00,187.00,,,,,,\n2015,5,22,\"B6\",\"318\",\"JFK\",\"BOS\",-5.00,-4.00,0.00,\"\",0.00,66.00,42.00,187.00,,,,,,\n2015,5,23,\"B6\",\"318\",\"JFK\",\"BOS\",-3.00,-3.00,0.00,\"\",0.00,65.00,39.00,187.00,,,,,,\n2015,5,25,\"B6\",\"318\",\"JFK\",\"BOS\",-2.00,-3.00,0.00,\"\",0.00,64.00,41.00,187.00,,,,,,\n2015,5,26,\"B6\",\"318\",\"JFK\",\"BOS\",-7.00,0.00,0.00,\"\",0.00,72.00,40.00,187.00,,,,,,\n2015,5,27,\"B6\",\"318\",\"JFK\",\"BOS\",-8.00,-2.00,0.00,\"\",0.00,71.00,40.00,187.00,,,,,,\n2015,5,28,\"B6\",\"318\",\"JFK\",\"BOS\",-5.00,-7.00,0.00,\"\",0.00,66.00,42.00,187.00,,,,,,\n2015,5,29,\"B6\",\"318\",\"JFK\",\"BOS\",-1.00,-9.00,0.00,\"\",0.00,60.00,36.00,187.00,,,,,,\n2015,5,30,\"B6\",\"318\",\"JFK\",\"BOS\",-5.00,-8.00,0.00,\"\",0.00,65.00,43.00,187.00,,,,,,\n2015,5,31,\"B6\",\"318\",\"JFK\",\"BOS\",-8.00,-9.00,0.00,\"\",0.00,67.00,41.00,187.00,,,,,,\n2015,5,1,\"B6\",\"323\",\"JFK\",\"LAX\",0.00,-25.00,0.00,\"\",0.00,346.00,312.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"323\",\"JFK\",\"LAX\",-5.00,-31.00,0.00,\"\",0.00,345.00,316.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"323\",\"JFK\",\"LAX\",-1.00,-24.00,0.00,\"\",0.00,348.00,319.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"323\",\"JFK\",\"LAX\",-3.00,-33.00,0.00,\"\",0.00,341.00,313.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"323\",\"JFK\",\"LAX\",-5.00,-35.00,0.00,\"\",0.00,341.00,311.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"323\",\"JFK\",\"LAX\",-4.00,-43.00,0.00,\"\",0.00,332.00,313.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"323\",\"JFK\",\"LAX\",1.00,-23.00,0.00,\"\",0.00,347.00,324.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"323\",\"JFK\",\"LAX\",-4.00,-15.00,0.00,\"\",0.00,360.00,330.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"323\",\"JFK\",\"LAX\",13.00,-17.00,0.00,\"\",0.00,341.00,322.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"323\",\"JFK\",\"LAX\",1.00,-8.00,0.00,\"\",0.00,362.00,329.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"323\",\"JFK\",\"LAX\",10.00,-12.00,0.00,\"\",0.00,349.00,323.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"323\",\"JFK\",\"LAX\",-2.00,0.00,0.00,\"\",0.00,373.00,347.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"323\",\"JFK\",\"LAX\",-6.00,-12.00,0.00,\"\",0.00,365.00,337.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"323\",\"JFK\",\"LAX\",-2.00,-3.00,0.00,\"\",0.00,370.00,326.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"323\",\"JFK\",\"LAX\",-6.00,1.00,0.00,\"\",0.00,378.00,338.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"323\",\"JFK\",\"LAX\",3.00,9.00,0.00,\"\",0.00,377.00,328.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"323\",\"JFK\",\"LAX\",30.00,27.00,0.00,\"\",0.00,368.00,336.00,2475.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"323\",\"JFK\",\"LAX\",-2.00,-6.00,0.00,\"\",0.00,367.00,330.00,2475.00,,,,,,\n2015,5,19,\"B6\",\"323\",\"JFK\",\"LAX\",29.00,24.00,0.00,\"\",0.00,366.00,339.00,2475.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"B6\",\"323\",\"JFK\",\"LAX\",-5.00,0.00,0.00,\"\",0.00,376.00,355.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"323\",\"JFK\",\"LAX\",14.00,22.00,0.00,\"\",0.00,379.00,349.00,2475.00,14.00,0.00,8.00,0.00,0.00,\n2015,5,22,\"B6\",\"323\",\"JFK\",\"LAX\",-4.00,12.00,0.00,\"\",0.00,387.00,345.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"323\",\"JFK\",\"LAX\",-12.00,-22.00,0.00,\"\",0.00,361.00,338.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"323\",\"JFK\",\"LAX\",-1.00,0.00,0.00,\"\",0.00,372.00,345.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"323\",\"JFK\",\"LAX\",-2.00,-23.00,0.00,\"\",0.00,350.00,324.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"323\",\"JFK\",\"LAX\",34.00,10.00,0.00,\"\",0.00,347.00,318.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"323\",\"JFK\",\"LAX\",-6.00,-24.00,0.00,\"\",0.00,353.00,326.00,2475.00,,,,,,\n2015,5,28,\"B6\",\"323\",\"JFK\",\"LAX\",-9.00,-8.00,0.00,\"\",0.00,372.00,331.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"323\",\"JFK\",\"LAX\",-11.00,-10.00,0.00,\"\",0.00,372.00,333.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"323\",\"JFK\",\"LAX\",-2.00,-38.00,0.00,\"\",0.00,335.00,307.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"323\",\"JFK\",\"LAX\",-2.00,-25.00,0.00,\"\",0.00,348.00,309.00,2475.00,,,,,,\n2015,5,1,\"B6\",\"324\",\"LAX\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,312.00,296.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"324\",\"LAX\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,314.00,300.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"324\",\"LAX\",\"JFK\",25.00,15.00,0.00,\"\",0.00,325.00,305.00,2475.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"324\",\"LAX\",\"JFK\",7.00,-14.00,0.00,\"\",0.00,314.00,298.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"324\",\"LAX\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,311.00,299.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"324\",\"LAX\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,324.00,309.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"324\",\"LAX\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,322.00,309.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"324\",\"LAX\",\"JFK\",-6.00,2.00,0.00,\"\",0.00,343.00,294.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"324\",\"LAX\",\"JFK\",-4.00,6.00,0.00,\"\",0.00,345.00,298.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"324\",\"LAX\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,322.00,307.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"324\",\"LAX\",\"JFK\",1.00,55.00,0.00,\"\",0.00,389.00,303.00,2475.00,1.00,0.00,54.00,0.00,0.00,\n2015,5,12,\"B6\",\"324\",\"LAX\",\"JFK\",18.00,-18.00,0.00,\"\",0.00,299.00,275.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"324\",\"LAX\",\"JFK\",-4.00,-44.00,0.00,\"\",0.00,295.00,280.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"324\",\"LAX\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,322.00,297.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"324\",\"LAX\",\"JFK\",2.00,-30.00,0.00,\"\",0.00,303.00,291.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"324\",\"LAX\",\"JFK\",32.00,9.00,0.00,\"\",0.00,312.00,292.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"324\",\"LAX\",\"JFK\",-6.00,-37.00,0.00,\"\",0.00,304.00,290.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"324\",\"LAX\",\"JFK\",141.00,186.00,0.00,\"\",0.00,380.00,347.00,2475.00,0.00,0.00,186.00,0.00,0.00,\n2015,5,19,\"B6\",\"324\",\"LAX\",\"JFK\",-3.00,-39.00,0.00,\"\",0.00,299.00,283.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"324\",\"LAX\",\"JFK\",-7.00,-48.00,0.00,\"\",0.00,294.00,269.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"324\",\"LAX\",\"JFK\",10.00,-26.00,0.00,\"\",0.00,299.00,282.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"324\",\"LAX\",\"JFK\",5.00,-17.00,0.00,\"\",0.00,313.00,289.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"324\",\"LAX\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,308.00,290.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"324\",\"LAX\",\"JFK\",-8.00,-37.00,0.00,\"\",0.00,306.00,294.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"324\",\"LAX\",\"JFK\",-9.00,-35.00,0.00,\"\",0.00,309.00,293.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"324\",\"LAX\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,324.00,308.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"324\",\"LAX\",\"JFK\",177.00,192.00,0.00,\"\",0.00,350.00,315.00,2475.00,0.00,0.00,192.00,0.00,0.00,\n2015,5,28,\"B6\",\"324\",\"LAX\",\"JFK\",-6.00,-2.00,0.00,\"\",0.00,339.00,315.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"324\",\"LAX\",\"JFK\",-2.00,-28.00,0.00,\"\",0.00,309.00,292.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"324\",\"LAX\",\"JFK\",27.00,42.00,0.00,\"\",0.00,350.00,330.00,2475.00,27.00,0.00,15.00,0.00,0.00,\n2015,5,31,\"B6\",\"324\",\"LAX\",\"JFK\",154.00,203.00,0.00,\"\",0.00,384.00,349.00,2475.00,0.00,154.00,49.00,0.00,0.00,\n2015,5,1,\"B6\",\"325\",\"JFK\",\"TPA\",0.00,-29.00,0.00,\"\",0.00,161.00,137.00,1005.00,,,,,,\n2015,5,2,\"B6\",\"325\",\"JFK\",\"TPA\",-3.00,-36.00,0.00,\"\",0.00,157.00,134.00,1005.00,,,,,,\n2015,5,3,\"B6\",\"325\",\"JFK\",\"TPA\",-5.00,-12.00,0.00,\"\",0.00,183.00,136.00,1005.00,,,,,,\n2015,5,4,\"B6\",\"325\",\"JFK\",\"TPA\",-4.00,-23.00,0.00,\"\",0.00,171.00,141.00,1005.00,,,,,,\n2015,5,5,\"B6\",\"325\",\"JFK\",\"TPA\",-10.00,-18.00,0.00,\"\",0.00,182.00,150.00,1005.00,,,,,,\n2015,5,6,\"B6\",\"325\",\"JFK\",\"TPA\",-1.00,12.00,0.00,\"\",0.00,203.00,153.00,1005.00,,,,,,\n2015,5,7,\"B6\",\"325\",\"JFK\",\"TPA\",-8.00,-30.00,0.00,\"\",0.00,168.00,139.00,1005.00,,,,,,\n2015,5,8,\"B6\",\"325\",\"JFK\",\"TPA\",-6.00,-3.00,0.00,\"\",0.00,193.00,137.00,1005.00,,,,,,\n2015,5,9,\"B6\",\"325\",\"JFK\",\"TPA\",-6.00,-26.00,0.00,\"\",0.00,170.00,132.00,1005.00,,,,,,\n2015,5,10,\"B6\",\"325\",\"JFK\",\"TPA\",-8.00,-15.00,0.00,\"\",0.00,183.00,137.00,1005.00,,,,,,\n2015,5,11,\"B6\",\"325\",\"JFK\",\"TPA\",-5.00,-2.00,0.00,\"\",0.00,193.00,142.00,1005.00,,,,,,\n2015,5,12,\"B6\",\"325\",\"JFK\",\"TPA\",7.00,,0.00,\"\",1.00,,,1005.00,,,,,,\n2015,5,13,\"B6\",\"325\",\"JFK\",\"TPA\",-2.00,-26.00,0.00,\"\",0.00,166.00,148.00,1005.00,,,,,,\n2015,5,14,\"B6\",\"325\",\"JFK\",\"TPA\",-2.00,-19.00,0.00,\"\",0.00,173.00,138.00,1005.00,,,,,,\n2015,5,15,\"B6\",\"325\",\"JFK\",\"TPA\",31.00,25.00,0.00,\"\",0.00,184.00,141.00,1005.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"B6\",\"325\",\"JFK\",\"TPA\",-6.00,-33.00,0.00,\"\",0.00,163.00,136.00,1005.00,,,,,,\n2015,5,17,\"B6\",\"325\",\"JFK\",\"TPA\",45.00,39.00,0.00,\"\",0.00,184.00,158.00,1005.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"325\",\"JFK\",\"TPA\",53.00,20.00,0.00,\"\",0.00,157.00,137.00,1005.00,10.00,0.00,0.00,0.00,10.00,\n2015,5,19,\"B6\",\"325\",\"JFK\",\"TPA\",6.00,12.00,0.00,\"\",0.00,196.00,152.00,1005.00,,,,,,\n2015,5,20,\"B6\",\"325\",\"JFK\",\"TPA\",-2.00,-30.00,0.00,\"\",0.00,162.00,143.00,1005.00,,,,,,\n2015,5,21,\"B6\",\"325\",\"JFK\",\"TPA\",-3.00,13.00,0.00,\"\",0.00,206.00,147.00,1005.00,,,,,,\n2015,5,22,\"B6\",\"325\",\"JFK\",\"TPA\",12.00,-6.00,0.00,\"\",0.00,172.00,151.00,1005.00,,,,,,\n2015,5,23,\"B6\",\"325\",\"JFK\",\"TPA\",-8.00,1.00,0.00,\"\",0.00,199.00,171.00,1005.00,,,,,,\n2015,5,24,\"B6\",\"325\",\"JFK\",\"TPA\",-8.00,-19.00,0.00,\"\",0.00,179.00,149.00,1005.00,,,,,,\n2015,5,25,\"B6\",\"325\",\"JFK\",\"TPA\",29.00,5.00,0.00,\"\",0.00,166.00,138.00,1005.00,,,,,,\n2015,5,26,\"B6\",\"325\",\"JFK\",\"TPA\",-3.00,-26.00,0.00,\"\",0.00,167.00,137.00,1005.00,,,,,,\n2015,5,27,\"B6\",\"325\",\"JFK\",\"TPA\",-2.00,-3.00,0.00,\"\",0.00,189.00,140.00,1005.00,,,,,,\n2015,5,28,\"B6\",\"325\",\"JFK\",\"TPA\",-1.00,-8.00,0.00,\"\",0.00,183.00,154.00,1005.00,,,,,,\n2015,5,29,\"B6\",\"325\",\"JFK\",\"TPA\",0.00,-35.00,0.00,\"\",0.00,155.00,133.00,1005.00,,,,,,\n2015,5,30,\"B6\",\"325\",\"JFK\",\"TPA\",-7.00,-12.00,0.00,\"\",0.00,185.00,142.00,1005.00,,,,,,\n2015,5,31,\"B6\",\"325\",\"JFK\",\"TPA\",6.00,-21.00,0.00,\"\",0.00,163.00,137.00,1005.00,,,,,,\n2015,5,1,\"B6\",\"326\",\"TPA\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,152.00,123.00,1005.00,,,,,,\n2015,5,2,\"B6\",\"326\",\"TPA\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,144.00,130.00,1005.00,,,,,,\n2015,5,3,\"B6\",\"326\",\"TPA\",\"JFK\",-10.00,-22.00,0.00,\"\",0.00,152.00,136.00,1005.00,,,,,,\n2015,5,4,\"B6\",\"326\",\"TPA\",\"JFK\",-9.00,-27.00,0.00,\"\",0.00,146.00,131.00,1005.00,,,,,,\n2015,5,5,\"B6\",\"326\",\"TPA\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,146.00,129.00,1005.00,,,,,,\n2015,5,6,\"B6\",\"326\",\"TPA\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,145.00,129.00,1005.00,,,,,,\n2015,5,7,\"B6\",\"326\",\"TPA\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,151.00,133.00,1005.00,,,,,,\n2015,5,8,\"B6\",\"326\",\"TPA\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,147.00,134.00,1005.00,,,,,,\n2015,5,9,\"B6\",\"326\",\"TPA\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,164.00,148.00,1005.00,,,,,,\n2015,5,10,\"B6\",\"326\",\"TPA\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,151.00,136.00,1005.00,,,,,,\n2015,5,11,\"B6\",\"326\",\"TPA\",\"JFK\",-7.00,-3.00,0.00,\"\",0.00,168.00,137.00,1005.00,,,,,,\n2015,5,12,\"B6\",\"326\",\"TPA\",\"JFK\",-1.00,-9.00,0.00,\"\",0.00,156.00,135.00,1005.00,,,,,,\n2015,5,13,\"B6\",\"326\",\"TPA\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,151.00,130.00,1005.00,,,,,,\n2015,5,14,\"B6\",\"326\",\"TPA\",\"JFK\",-5.00,-5.00,0.00,\"\",0.00,164.00,142.00,1005.00,,,,,,\n2015,5,15,\"B6\",\"326\",\"TPA\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,148.00,134.00,1005.00,,,,,,\n2015,5,16,\"B6\",\"326\",\"TPA\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,152.00,134.00,1005.00,,,,,,\n2015,5,17,\"B6\",\"326\",\"TPA\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,156.00,135.00,1005.00,,,,,,\n2015,5,18,\"B6\",\"326\",\"TPA\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,163.00,144.00,1005.00,,,,,,\n2015,5,19,\"B6\",\"326\",\"TPA\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,156.00,139.00,1005.00,,,,,,\n2015,5,20,\"B6\",\"326\",\"TPA\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,146.00,132.00,1005.00,,,,,,\n2015,5,21,\"B6\",\"326\",\"TPA\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,152.00,133.00,1005.00,,,,,,\n2015,5,22,\"B6\",\"326\",\"TPA\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,152.00,130.00,1005.00,,,,,,\n2015,5,23,\"B6\",\"326\",\"TPA\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,141.00,127.00,1005.00,,,,,,\n2015,5,24,\"B6\",\"326\",\"TPA\",\"JFK\",3.00,-2.00,0.00,\"\",0.00,159.00,135.00,1005.00,,,,,,\n2015,5,25,\"B6\",\"326\",\"TPA\",\"JFK\",-8.00,-26.00,0.00,\"\",0.00,146.00,134.00,1005.00,,,,,,\n2015,5,26,\"B6\",\"326\",\"TPA\",\"JFK\",-9.00,-24.00,0.00,\"\",0.00,149.00,129.00,1005.00,,,,,,\n2015,5,27,\"B6\",\"326\",\"TPA\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,149.00,132.00,1005.00,,,,,,\n2015,5,28,\"B6\",\"326\",\"TPA\",\"JFK\",88.00,67.00,0.00,\"\",0.00,143.00,129.00,1005.00,67.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"B6\",\"326\",\"TPA\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,163.00,139.00,1005.00,,,,,,\n2015,5,30,\"B6\",\"326\",\"TPA\",\"JFK\",-9.00,1.00,0.00,\"\",0.00,174.00,162.00,1005.00,,,,,,\n2015,5,31,\"B6\",\"326\",\"TPA\",\"JFK\",-8.00,-12.00,0.00,\"\",0.00,160.00,135.00,1005.00,,,,,,\n2015,5,1,\"B6\",\"354\",\"PBI\",\"JFK\",4.00,-14.00,0.00,\"\",0.00,151.00,135.00,1028.00,,,,,,\n2015,5,2,\"B6\",\"354\",\"PBI\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,148.00,133.00,1028.00,,,,,,\n2015,5,3,\"B6\",\"354\",\"PBI\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,159.00,142.00,1028.00,,,,,,\n2015,5,4,\"B6\",\"354\",\"PBI\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,157.00,140.00,1028.00,,,,,,\n2015,5,5,\"B6\",\"354\",\"PBI\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,153.00,135.00,1028.00,,,,,,\n2015,5,6,\"B6\",\"354\",\"PBI\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,155.00,141.00,1028.00,,,,,,\n2015,5,7,\"B6\",\"354\",\"PBI\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,167.00,145.00,1028.00,,,,,,\n2015,5,8,\"B6\",\"354\",\"PBI\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,158.00,146.00,1028.00,,,,,,\n2015,5,9,\"B6\",\"354\",\"PBI\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,163.00,147.00,1028.00,,,,,,\n2015,5,10,\"B6\",\"354\",\"PBI\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,156.00,141.00,1028.00,,,,,,\n2015,5,11,\"B6\",\"354\",\"PBI\",\"JFK\",-10.00,-10.00,0.00,\"\",0.00,169.00,148.00,1028.00,,,,,,\n2015,5,12,\"B6\",\"354\",\"PBI\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,162.00,144.00,1028.00,,,,,,\n2015,5,13,\"B6\",\"354\",\"PBI\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,145.00,131.00,1028.00,,,,,,\n2015,5,14,\"B6\",\"354\",\"PBI\",\"JFK\",-10.00,-10.00,0.00,\"\",0.00,169.00,144.00,1028.00,,,,,,\n2015,5,15,\"B6\",\"354\",\"PBI\",\"JFK\",-11.00,-36.00,0.00,\"\",0.00,144.00,129.00,1028.00,,,,,,\n2015,5,16,\"B6\",\"354\",\"PBI\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,154.00,140.00,1028.00,,,,,,\n2015,5,17,\"B6\",\"354\",\"PBI\",\"JFK\",-10.00,-29.00,0.00,\"\",0.00,150.00,137.00,1028.00,,,,,,\n2015,5,18,\"B6\",\"354\",\"PBI\",\"JFK\",11.00,21.00,0.00,\"\",0.00,179.00,165.00,1028.00,11.00,0.00,10.00,0.00,0.00,\n2015,5,19,\"B6\",\"354\",\"PBI\",\"JFK\",-1.00,-7.00,0.00,\"\",0.00,163.00,138.00,1028.00,,,,,,\n2015,5,20,\"B6\",\"354\",\"PBI\",\"JFK\",-14.00,-31.00,0.00,\"\",0.00,152.00,137.00,1028.00,,,,,,\n2015,5,21,\"B6\",\"354\",\"PBI\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,154.00,139.00,1028.00,,,,,,\n2015,5,22,\"B6\",\"354\",\"PBI\",\"JFK\",-9.00,-34.00,0.00,\"\",0.00,144.00,129.00,1028.00,,,,,,\n2015,5,23,\"B6\",\"354\",\"PBI\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,155.00,136.00,1028.00,,,,,,\n2015,5,24,\"B6\",\"354\",\"PBI\",\"JFK\",-10.00,-21.00,0.00,\"\",0.00,158.00,140.00,1028.00,,,,,,\n2015,5,25,\"B6\",\"354\",\"PBI\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,166.00,142.00,1028.00,,,,,,\n2015,5,26,\"B6\",\"354\",\"PBI\",\"JFK\",-4.00,-28.00,0.00,\"\",0.00,145.00,132.00,1028.00,,,,,,\n2015,5,27,\"B6\",\"354\",\"PBI\",\"JFK\",5.00,11.00,0.00,\"\",0.00,175.00,136.00,1028.00,,,,,,\n2015,5,28,\"B6\",\"354\",\"PBI\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,152.00,135.00,1028.00,,,,,,\n2015,5,29,\"B6\",\"354\",\"PBI\",\"JFK\",-15.00,-27.00,0.00,\"\",0.00,157.00,139.00,1028.00,,,,,,\n2015,5,30,\"B6\",\"354\",\"PBI\",\"JFK\",-11.00,-29.00,0.00,\"\",0.00,151.00,135.00,1028.00,,,,,,\n2015,5,31,\"B6\",\"354\",\"PBI\",\"JFK\",-11.00,-25.00,0.00,\"\",0.00,155.00,138.00,1028.00,,,,,,\n2015,5,1,\"B6\",\"358\",\"BUR\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,320.00,293.00,2465.00,,,,,,\n2015,5,2,\"B6\",\"358\",\"BUR\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,318.00,289.00,2465.00,,,,,,\n2015,5,3,\"B6\",\"358\",\"BUR\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,317.00,298.00,2465.00,,,,,,\n2015,5,4,\"B6\",\"358\",\"BUR\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,311.00,293.00,2465.00,,,,,,\n2015,5,5,\"B6\",\"358\",\"BUR\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,319.00,302.00,2465.00,,,,,,\n2015,5,6,\"B6\",\"358\",\"BUR\",\"JFK\",-1.00,1.00,0.00,\"\",0.00,326.00,304.00,2465.00,,,,,,\n2015,5,7,\"B6\",\"358\",\"BUR\",\"JFK\",-5.00,,0.00,\"\",1.00,,,2465.00,,,,,,\n2015,5,8,\"B6\",\"358\",\"BUR\",\"JFK\",30.00,34.00,0.00,\"\",0.00,328.00,298.00,2465.00,17.00,0.00,4.00,0.00,13.00,\n2015,5,9,\"B6\",\"358\",\"BUR\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,318.00,291.00,2465.00,,,,,,\n2015,5,10,\"B6\",\"358\",\"BUR\",\"JFK\",-3.00,7.00,0.00,\"\",0.00,334.00,317.00,2465.00,,,,,,\n2015,5,11,\"B6\",\"358\",\"BUR\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,302.00,279.00,2465.00,,,,,,\n2015,5,12,\"B6\",\"358\",\"BUR\",\"JFK\",22.00,-11.00,0.00,\"\",0.00,291.00,274.00,2465.00,,,,,,\n2015,5,13,\"B6\",\"358\",\"BUR\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,309.00,289.00,2465.00,,,,,,\n2015,5,14,\"B6\",\"358\",\"BUR\",\"JFK\",5.00,-4.00,0.00,\"\",0.00,315.00,296.00,2465.00,,,,,,\n2015,5,15,\"B6\",\"358\",\"BUR\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,321.00,303.00,2465.00,,,,,,\n2015,5,16,\"B6\",\"358\",\"BUR\",\"JFK\",0.00,9.00,0.00,\"\",0.00,333.00,314.00,2465.00,,,,,,\n2015,5,17,\"B6\",\"358\",\"BUR\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,318.00,290.00,2465.00,,,,,,\n2015,5,18,\"B6\",\"358\",\"BUR\",\"JFK\",96.00,91.00,0.00,\"\",0.00,319.00,304.00,2465.00,0.00,0.00,0.00,0.00,91.00,\n2015,5,19,\"B6\",\"358\",\"BUR\",\"JFK\",-2.00,-50.00,0.00,\"\",0.00,276.00,260.00,2465.00,,,,,,\n2015,5,20,\"B6\",\"358\",\"BUR\",\"JFK\",7.00,-28.00,0.00,\"\",0.00,289.00,269.00,2465.00,,,,,,\n2015,5,21,\"B6\",\"358\",\"BUR\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,308.00,291.00,2465.00,,,,,,\n2015,5,22,\"B6\",\"358\",\"BUR\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,305.00,287.00,2465.00,,,,,,\n2015,5,23,\"B6\",\"358\",\"BUR\",\"JFK\",-4.00,-27.00,0.00,\"\",0.00,301.00,278.00,2465.00,,,,,,\n2015,5,24,\"B6\",\"358\",\"BUR\",\"JFK\",-4.00,-2.00,0.00,\"\",0.00,326.00,307.00,2465.00,,,,,,\n2015,5,25,\"B6\",\"358\",\"BUR\",\"JFK\",-10.00,-24.00,0.00,\"\",0.00,310.00,289.00,2465.00,,,,,,\n2015,5,26,\"B6\",\"358\",\"BUR\",\"JFK\",-8.00,-4.00,0.00,\"\",0.00,328.00,304.00,2465.00,,,,,,\n2015,5,27,\"B6\",\"358\",\"BUR\",\"JFK\",260.00,252.00,0.00,\"\",0.00,316.00,295.00,2465.00,0.00,0.00,0.00,0.00,252.00,\n2015,5,28,\"B6\",\"358\",\"BUR\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,309.00,293.00,2465.00,,,,,,\n2015,5,29,\"B6\",\"358\",\"BUR\",\"JFK\",65.00,54.00,0.00,\"\",0.00,313.00,298.00,2465.00,54.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"B6\",\"358\",\"BUR\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,321.00,296.00,2465.00,,,,,,\n2015,5,31,\"B6\",\"358\",\"BUR\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,310.00,294.00,2465.00,,,,,,\n2015,5,1,\"B6\",\"359\",\"JFK\",\"BUR\",-9.00,-28.00,0.00,\"\",0.00,366.00,314.00,2465.00,,,,,,\n2015,5,2,\"B6\",\"359\",\"JFK\",\"BUR\",-2.00,-38.00,0.00,\"\",0.00,349.00,321.00,2465.00,,,,,,\n2015,5,3,\"B6\",\"359\",\"JFK\",\"BUR\",1.00,-29.00,0.00,\"\",0.00,355.00,329.00,2465.00,,,,,,\n2015,5,4,\"B6\",\"359\",\"JFK\",\"BUR\",-3.00,-41.00,0.00,\"\",0.00,347.00,321.00,2465.00,,,,,,\n2015,5,5,\"B6\",\"359\",\"JFK\",\"BUR\",-7.00,-33.00,0.00,\"\",0.00,359.00,335.00,2465.00,,,,,,\n2015,5,6,\"B6\",\"359\",\"JFK\",\"BUR\",15.00,-19.00,0.00,\"\",0.00,351.00,326.00,2465.00,,,,,,\n2015,5,7,\"B6\",\"359\",\"JFK\",\"BUR\",0.00,-20.00,0.00,\"\",0.00,365.00,338.00,2465.00,,,,,,\n2015,5,8,\"B6\",\"359\",\"JFK\",\"BUR\",25.00,14.00,0.00,\"\",0.00,374.00,341.00,2465.00,,,,,,\n2015,5,9,\"B6\",\"359\",\"JFK\",\"BUR\",-2.00,-36.00,0.00,\"\",0.00,351.00,324.00,2465.00,,,,,,\n2015,5,10,\"B6\",\"359\",\"JFK\",\"BUR\",-3.00,0.00,0.00,\"\",0.00,388.00,334.00,2465.00,,,,,,\n2015,5,11,\"B6\",\"359\",\"JFK\",\"BUR\",0.00,-13.00,0.00,\"\",0.00,372.00,339.00,2465.00,,,,,,\n2015,5,12,\"B6\",\"359\",\"JFK\",\"BUR\",-1.00,-2.00,0.00,\"\",0.00,384.00,353.00,2465.00,,,,,,\n2015,5,13,\"B6\",\"359\",\"JFK\",\"BUR\",0.00,-11.00,0.00,\"\",0.00,374.00,334.00,2465.00,,,,,,\n2015,5,14,\"B6\",\"359\",\"JFK\",\"BUR\",-1.00,-23.00,0.00,\"\",0.00,363.00,332.00,2465.00,,,,,,\n2015,5,15,\"B6\",\"359\",\"JFK\",\"BUR\",-3.00,-12.00,0.00,\"\",0.00,376.00,341.00,2465.00,,,,,,\n2015,5,16,\"B6\",\"359\",\"JFK\",\"BUR\",-4.00,-11.00,0.00,\"\",0.00,378.00,349.00,2465.00,,,,,,\n2015,5,17,\"B6\",\"359\",\"JFK\",\"BUR\",-1.00,-28.00,0.00,\"\",0.00,358.00,329.00,2465.00,,,,,,\n2015,5,18,\"B6\",\"359\",\"JFK\",\"BUR\",70.00,101.00,0.00,\"\",0.00,416.00,344.00,2465.00,14.00,0.00,31.00,0.00,56.00,\n2015,5,19,\"B6\",\"359\",\"JFK\",\"BUR\",1.00,-3.00,0.00,\"\",0.00,381.00,351.00,2465.00,,,,,,\n2015,5,20,\"B6\",\"359\",\"JFK\",\"BUR\",4.00,10.00,0.00,\"\",0.00,391.00,351.00,2465.00,,,,,,\n2015,5,21,\"B6\",\"359\",\"JFK\",\"BUR\",14.00,1.00,0.00,\"\",0.00,372.00,346.00,2465.00,,,,,,\n2015,5,22,\"B6\",\"359\",\"JFK\",\"BUR\",-2.00,-6.00,0.00,\"\",0.00,381.00,355.00,2465.00,,,,,,\n2015,5,23,\"B6\",\"359\",\"JFK\",\"BUR\",-1.00,-4.00,0.00,\"\",0.00,382.00,348.00,2465.00,,,,,,\n2015,5,24,\"B6\",\"359\",\"JFK\",\"BUR\",-1.00,-30.00,0.00,\"\",0.00,356.00,323.00,2465.00,,,,,,\n2015,5,25,\"B6\",\"359\",\"JFK\",\"BUR\",-7.00,-25.00,0.00,\"\",0.00,367.00,335.00,2465.00,,,,,,\n2015,5,26,\"B6\",\"359\",\"JFK\",\"BUR\",5.00,-29.00,0.00,\"\",0.00,351.00,325.00,2465.00,,,,,,\n2015,5,27,\"B6\",\"359\",\"JFK\",\"BUR\",300.00,272.00,0.00,\"\",0.00,357.00,331.00,2465.00,0.00,0.00,272.00,0.00,0.00,\n2015,5,28,\"B6\",\"359\",\"JFK\",\"BUR\",-2.00,-20.00,0.00,\"\",0.00,367.00,334.00,2465.00,,,,,,\n2015,5,29,\"B6\",\"359\",\"JFK\",\"BUR\",-1.00,-28.00,0.00,\"\",0.00,358.00,329.00,2465.00,,,,,,\n2015,5,30,\"B6\",\"359\",\"JFK\",\"BUR\",7.00,-22.00,0.00,\"\",0.00,356.00,318.00,2465.00,,,,,,\n2015,5,31,\"B6\",\"359\",\"JFK\",\"BUR\",-1.00,5.00,0.00,\"\",0.00,391.00,326.00,2465.00,,,,,,\n2015,5,1,\"B6\",\"362\",\"PBI\",\"LGA\",14.00,-7.00,0.00,\"\",0.00,146.00,133.00,1035.00,,,,,,\n2015,5,2,\"B6\",\"362\",\"PBI\",\"LGA\",20.00,7.00,0.00,\"\",0.00,154.00,140.00,1035.00,,,,,,\n2015,5,3,\"B6\",\"362\",\"PBI\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,154.00,139.00,1035.00,,,,,,\n2015,5,4,\"B6\",\"362\",\"PBI\",\"LGA\",3.00,8.00,0.00,\"\",0.00,172.00,146.00,1035.00,,,,,,\n2015,5,5,\"B6\",\"362\",\"PBI\",\"LGA\",10.00,-8.00,0.00,\"\",0.00,149.00,137.00,1035.00,,,,,,\n2015,5,6,\"B6\",\"362\",\"PBI\",\"LGA\",18.00,4.00,0.00,\"\",0.00,153.00,140.00,1035.00,,,,,,\n2015,5,7,\"B6\",\"362\",\"PBI\",\"LGA\",18.00,19.00,0.00,\"\",0.00,168.00,144.00,1035.00,13.00,0.00,1.00,0.00,5.00,\n2015,5,8,\"B6\",\"362\",\"PBI\",\"LGA\",11.00,8.00,0.00,\"\",0.00,164.00,147.00,1035.00,,,,,,\n2015,5,9,\"B6\",\"362\",\"PBI\",\"LGA\",25.00,47.00,0.00,\"\",0.00,189.00,175.00,1035.00,13.00,0.00,22.00,0.00,12.00,\n2015,5,10,\"B6\",\"362\",\"PBI\",\"LGA\",12.00,8.00,0.00,\"\",0.00,163.00,147.00,1035.00,,,,,,\n2015,5,11,\"B6\",\"362\",\"PBI\",\"LGA\",2.00,45.00,0.00,\"\",0.00,210.00,186.00,1035.00,2.00,0.00,43.00,0.00,0.00,\n2015,5,12,\"B6\",\"362\",\"PBI\",\"LGA\",99.00,92.00,0.00,\"\",0.00,160.00,141.00,1035.00,92.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"B6\",\"362\",\"PBI\",\"LGA\",7.00,-8.00,0.00,\"\",0.00,152.00,138.00,1035.00,,,,,,\n2015,5,14,\"B6\",\"362\",\"PBI\",\"LGA\",-8.00,-12.00,0.00,\"\",0.00,163.00,146.00,1035.00,,,,,,\n2015,5,15,\"B6\",\"362\",\"PBI\",\"LGA\",1.00,-10.00,0.00,\"\",0.00,156.00,140.00,1035.00,,,,,,\n2015,5,16,\"B6\",\"362\",\"PBI\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,166.00,144.00,1035.00,,,,,,\n2015,5,17,\"B6\",\"362\",\"PBI\",\"LGA\",10.00,-3.00,0.00,\"\",0.00,154.00,138.00,1035.00,,,,,,\n2015,5,18,\"B6\",\"362\",\"PBI\",\"LGA\",,,1.00,\"C\",0.00,,,1035.00,,,,,,\n2015,5,19,\"B6\",\"362\",\"PBI\",\"LGA\",96.00,134.00,0.00,\"\",0.00,205.00,144.00,1035.00,0.00,0.00,134.00,0.00,0.00,\n2015,5,20,\"B6\",\"362\",\"PBI\",\"LGA\",10.00,-8.00,0.00,\"\",0.00,149.00,136.00,1035.00,,,,,,\n2015,5,21,\"B6\",\"362\",\"PBI\",\"LGA\",10.00,1.00,0.00,\"\",0.00,158.00,138.00,1035.00,,,,,,\n2015,5,22,\"B6\",\"362\",\"PBI\",\"LGA\",0.00,-6.00,0.00,\"\",0.00,161.00,139.00,1035.00,,,,,,\n2015,5,23,\"B6\",\"362\",\"PBI\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,154.00,140.00,1035.00,,,,,,\n2015,5,24,\"B6\",\"362\",\"PBI\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,165.00,150.00,1035.00,,,,,,\n2015,5,25,\"B6\",\"362\",\"PBI\",\"LGA\",34.00,23.00,0.00,\"\",0.00,156.00,141.00,1035.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,26,\"B6\",\"362\",\"PBI\",\"LGA\",-7.00,-25.00,0.00,\"\",0.00,149.00,134.00,1035.00,,,,,,\n2015,5,27,\"B6\",\"362\",\"PBI\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,157.00,137.00,1035.00,,,,,,\n2015,5,28,\"B6\",\"362\",\"PBI\",\"LGA\",-3.00,-1.00,0.00,\"\",0.00,169.00,140.00,1035.00,,,,,,\n2015,5,29,\"B6\",\"362\",\"PBI\",\"LGA\",27.00,22.00,0.00,\"\",0.00,162.00,145.00,1035.00,11.00,0.00,0.00,0.00,11.00,\n2015,5,30,\"B6\",\"362\",\"PBI\",\"LGA\",-8.00,-7.00,0.00,\"\",0.00,168.00,150.00,1035.00,,,,,,\n2015,5,31,\"B6\",\"362\",\"PBI\",\"LGA\",14.00,9.00,0.00,\"\",0.00,162.00,139.00,1035.00,,,,,,\n2015,5,21,\"B6\",\"363\",\"JFK\",\"SEA\",6.00,-7.00,0.00,\"\",0.00,372.00,318.00,2422.00,,,,,,\n2015,5,21,\"B6\",\"364\",\"SEA\",\"JFK\",-6.00,-39.00,0.00,\"\",0.00,287.00,274.00,2422.00,,,,,,\n2015,5,1,\"B6\",\"371\",\"LGA\",\"FLL\",-8.00,-10.00,0.00,\"\",0.00,171.00,152.00,1076.00,,,,,,\n2015,5,2,\"B6\",\"371\",\"LGA\",\"FLL\",-6.00,-12.00,0.00,\"\",0.00,167.00,149.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"371\",\"LGA\",\"FLL\",-13.00,-24.00,0.00,\"\",0.00,162.00,140.00,1076.00,,,,,,\n2015,5,4,\"B6\",\"371\",\"LGA\",\"FLL\",-5.00,0.00,0.00,\"\",0.00,178.00,153.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"371\",\"LGA\",\"FLL\",-20.00,-9.00,0.00,\"\",0.00,184.00,154.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"371\",\"LGA\",\"FLL\",-15.00,-18.00,0.00,\"\",0.00,170.00,148.00,1076.00,,,,,,\n2015,5,7,\"B6\",\"371\",\"LGA\",\"FLL\",-9.00,-11.00,0.00,\"\",0.00,171.00,148.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"371\",\"LGA\",\"FLL\",-13.00,-18.00,0.00,\"\",0.00,168.00,145.00,1076.00,,,,,,\n2015,5,9,\"B6\",\"371\",\"LGA\",\"FLL\",-8.00,-20.00,0.00,\"\",0.00,161.00,143.00,1076.00,,,,,,\n2015,5,10,\"B6\",\"371\",\"LGA\",\"FLL\",-11.00,-9.00,0.00,\"\",0.00,175.00,151.00,1076.00,,,,,,\n2015,5,11,\"B6\",\"371\",\"LGA\",\"FLL\",-13.00,-3.00,0.00,\"\",0.00,183.00,148.00,1076.00,,,,,,\n2015,5,12,\"B6\",\"371\",\"LGA\",\"FLL\",-6.00,-13.00,0.00,\"\",0.00,166.00,142.00,1076.00,,,,,,\n2015,5,13,\"B6\",\"371\",\"LGA\",\"FLL\",-10.00,-18.00,0.00,\"\",0.00,165.00,147.00,1076.00,,,,,,\n2015,5,14,\"B6\",\"371\",\"LGA\",\"FLL\",4.00,-12.00,0.00,\"\",0.00,157.00,132.00,1076.00,,,,,,\n2015,5,15,\"B6\",\"371\",\"LGA\",\"FLL\",-10.00,-17.00,0.00,\"\",0.00,166.00,147.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"371\",\"LGA\",\"FLL\",-12.00,-23.00,0.00,\"\",0.00,162.00,134.00,1076.00,,,,,,\n2015,5,17,\"B6\",\"371\",\"LGA\",\"FLL\",-11.00,-28.00,0.00,\"\",0.00,156.00,139.00,1076.00,,,,,,\n2015,5,18,\"B6\",\"371\",\"LGA\",\"FLL\",-15.00,1.00,0.00,\"\",0.00,189.00,139.00,1076.00,,,,,,\n2015,5,19,\"B6\",\"371\",\"LGA\",\"FLL\",-10.00,-10.00,0.00,\"\",0.00,173.00,145.00,1076.00,,,,,,\n2015,5,20,\"B6\",\"371\",\"LGA\",\"FLL\",3.00,-12.00,0.00,\"\",0.00,158.00,141.00,1076.00,,,,,,\n2015,5,21,\"B6\",\"371\",\"LGA\",\"FLL\",-9.00,-6.00,0.00,\"\",0.00,176.00,156.00,1076.00,,,,,,\n2015,5,22,\"B6\",\"371\",\"LGA\",\"FLL\",-10.00,-22.00,0.00,\"\",0.00,161.00,144.00,1076.00,,,,,,\n2015,5,23,\"B6\",\"371\",\"LGA\",\"FLL\",-12.00,-14.00,0.00,\"\",0.00,171.00,149.00,1076.00,,,,,,\n2015,5,24,\"B6\",\"371\",\"LGA\",\"FLL\",-10.00,-31.00,0.00,\"\",0.00,152.00,138.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"371\",\"LGA\",\"FLL\",-11.00,-18.00,0.00,\"\",0.00,166.00,143.00,1076.00,,,,,,\n2015,5,26,\"B6\",\"371\",\"LGA\",\"FLL\",-11.00,-14.00,0.00,\"\",0.00,170.00,147.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"371\",\"LGA\",\"FLL\",-13.00,-29.00,0.00,\"\",0.00,157.00,142.00,1076.00,,,,,,\n2015,5,28,\"B6\",\"371\",\"LGA\",\"FLL\",-12.00,-8.00,0.00,\"\",0.00,177.00,145.00,1076.00,,,,,,\n2015,5,29,\"B6\",\"371\",\"LGA\",\"FLL\",0.00,-17.00,0.00,\"\",0.00,156.00,136.00,1076.00,,,,,,\n2015,5,30,\"B6\",\"371\",\"LGA\",\"FLL\",-7.00,-17.00,0.00,\"\",0.00,163.00,142.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"371\",\"LGA\",\"FLL\",-15.00,-30.00,0.00,\"\",0.00,158.00,141.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"375\",\"JFK\",\"MSY\",-1.00,-9.00,0.00,\"\",0.00,192.00,155.00,1182.00,,,,,,\n2015,5,3,\"B6\",\"376\",\"MSY\",\"JFK\",-4.00,-28.00,0.00,\"\",0.00,165.00,150.00,1182.00,,,,,,\n2015,5,1,\"B6\",\"384\",\"MCO\",\"JFK\",0.00,-26.00,0.00,\"\",0.00,136.00,121.00,944.00,,,,,,\n2015,5,2,\"B6\",\"384\",\"MCO\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,142.00,124.00,944.00,,,,,,\n2015,5,3,\"B6\",\"384\",\"MCO\",\"JFK\",0.00,-23.00,0.00,\"\",0.00,139.00,125.00,944.00,,,,,,\n2015,5,4,\"B6\",\"384\",\"MCO\",\"JFK\",123.00,88.00,0.00,\"\",0.00,127.00,114.00,944.00,4.00,0.00,0.00,0.00,84.00,\n2015,5,5,\"B6\",\"384\",\"MCO\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,141.00,119.00,944.00,,,,,,\n2015,5,6,\"B6\",\"384\",\"MCO\",\"JFK\",-10.00,-30.00,0.00,\"\",0.00,142.00,125.00,944.00,,,,,,\n2015,5,7,\"B6\",\"384\",\"MCO\",\"JFK\",-6.00,-5.00,0.00,\"\",0.00,163.00,130.00,944.00,,,,,,\n2015,5,8,\"B6\",\"384\",\"MCO\",\"JFK\",58.00,50.00,0.00,\"\",0.00,154.00,132.00,944.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,9,\"B6\",\"384\",\"MCO\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,158.00,130.00,944.00,,,,,,\n2015,5,10,\"B6\",\"384\",\"MCO\",\"JFK\",27.00,12.00,0.00,\"\",0.00,147.00,133.00,944.00,,,,,,\n2015,5,11,\"B6\",\"384\",\"MCO\",\"JFK\",176.00,160.00,0.00,\"\",0.00,146.00,126.00,944.00,12.00,0.00,0.00,0.00,148.00,\n2015,5,12,\"B6\",\"384\",\"MCO\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,155.00,127.00,944.00,,,,,,\n2015,5,13,\"B6\",\"384\",\"MCO\",\"JFK\",8.00,-9.00,0.00,\"\",0.00,145.00,130.00,944.00,,,,,,\n2015,5,14,\"B6\",\"384\",\"MCO\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,141.00,124.00,944.00,,,,,,\n2015,5,15,\"B6\",\"384\",\"MCO\",\"JFK\",30.00,6.00,0.00,\"\",0.00,138.00,123.00,944.00,,,,,,\n2015,5,16,\"B6\",\"384\",\"MCO\",\"JFK\",-2.00,7.00,0.00,\"\",0.00,171.00,130.00,944.00,,,,,,\n2015,5,17,\"B6\",\"384\",\"MCO\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,145.00,131.00,944.00,,,,,,\n2015,5,18,\"B6\",\"384\",\"MCO\",\"JFK\",74.00,96.00,0.00,\"\",0.00,184.00,166.00,944.00,0.00,0.00,48.00,0.00,48.00,\n2015,5,19,\"B6\",\"384\",\"MCO\",\"JFK\",12.00,3.00,0.00,\"\",0.00,153.00,126.00,944.00,,,,,,\n2015,5,20,\"B6\",\"384\",\"MCO\",\"JFK\",5.00,1.00,0.00,\"\",0.00,158.00,128.00,944.00,,,,,,\n2015,5,21,\"B6\",\"384\",\"MCO\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,139.00,119.00,944.00,,,,,,\n2015,5,22,\"B6\",\"384\",\"MCO\",\"JFK\",69.00,44.00,0.00,\"\",0.00,137.00,119.00,944.00,41.00,0.00,0.00,0.00,3.00,\n2015,5,23,\"B6\",\"384\",\"MCO\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,146.00,129.00,944.00,,,,,,\n2015,5,24,\"B6\",\"384\",\"MCO\",\"JFK\",-10.00,-27.00,0.00,\"\",0.00,145.00,128.00,944.00,,,,,,\n2015,5,25,\"B6\",\"384\",\"MCO\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,146.00,127.00,944.00,,,,,,\n2015,5,26,\"B6\",\"384\",\"MCO\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,145.00,120.00,944.00,,,,,,\n2015,5,27,\"B6\",\"384\",\"MCO\",\"JFK\",190.00,169.00,0.00,\"\",0.00,141.00,120.00,944.00,0.00,0.00,0.00,0.00,169.00,\n2015,5,28,\"B6\",\"384\",\"MCO\",\"JFK\",-8.00,-28.00,0.00,\"\",0.00,142.00,129.00,944.00,,,,,,\n2015,5,29,\"B6\",\"384\",\"MCO\",\"JFK\",6.00,-13.00,0.00,\"\",0.00,143.00,125.00,944.00,,,,,,\n2015,5,30,\"B6\",\"384\",\"MCO\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,150.00,130.00,944.00,,,,,,\n2015,5,31,\"B6\",\"384\",\"MCO\",\"JFK\",148.00,170.00,0.00,\"\",0.00,184.00,168.00,944.00,0.00,0.00,101.00,0.00,69.00,\n2015,5,2,\"B6\",\"502\",\"FLL\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,144.00,130.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"502\",\"FLL\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,160.00,139.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"502\",\"FLL\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,166.00,146.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"502\",\"FLL\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,148.00,133.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"502\",\"FLL\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,155.00,138.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"502\",\"FLL\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,163.00,147.00,1069.00,,,,,,\n2015,5,9,\"B6\",\"502\",\"FLL\",\"JFK\",12.00,12.00,0.00,\"\",0.00,171.00,153.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"502\",\"FLL\",\"JFK\",-8.00,-12.00,0.00,\"\",0.00,167.00,145.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"502\",\"FLL\",\"JFK\",-5.00,7.00,0.00,\"\",0.00,183.00,149.00,1069.00,,,,,,\n2015,5,12,\"B6\",\"502\",\"FLL\",\"JFK\",-8.00,-12.00,0.00,\"\",0.00,167.00,144.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"502\",\"FLL\",\"JFK\",-8.00,-24.00,0.00,\"\",0.00,155.00,136.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"502\",\"FLL\",\"JFK\",-10.00,-17.00,0.00,\"\",0.00,164.00,145.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"502\",\"FLL\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,158.00,144.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"502\",\"FLL\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,163.00,144.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"502\",\"FLL\",\"JFK\",6.00,3.00,0.00,\"\",0.00,168.00,146.00,1069.00,,,,,,\n2015,5,19,\"B6\",\"502\",\"FLL\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,161.00,140.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"502\",\"FLL\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,163.00,142.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"502\",\"FLL\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,154.00,137.00,1069.00,,,,,,\n2015,5,23,\"B6\",\"502\",\"FLL\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,155.00,135.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"502\",\"FLL\",\"JFK\",-10.00,-17.00,0.00,\"\",0.00,164.00,150.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"502\",\"FLL\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,160.00,141.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"502\",\"FLL\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,156.00,137.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"502\",\"FLL\",\"JFK\",-11.00,-38.00,0.00,\"\",0.00,144.00,134.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"502\",\"FLL\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,160.00,140.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"502\",\"FLL\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,164.00,139.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"502\",\"FLL\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,156.00,137.00,1069.00,,,,,,\n2015,5,1,\"B6\",\"507\",\"PWM\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,74.00,59.00,273.00,,,,,,\n2015,5,2,\"B6\",\"507\",\"PWM\",\"JFK\",-14.00,-32.00,0.00,\"\",0.00,70.00,47.00,273.00,,,,,,\n2015,5,3,\"B6\",\"507\",\"PWM\",\"JFK\",153.00,127.00,0.00,\"\",0.00,62.00,48.00,273.00,127.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"507\",\"PWM\",\"JFK\",-12.00,-37.00,0.00,\"\",0.00,63.00,48.00,273.00,,,,,,\n2015,5,5,\"B6\",\"507\",\"PWM\",\"JFK\",-10.00,-28.00,0.00,\"\",0.00,70.00,55.00,273.00,,,,,,\n2015,5,6,\"B6\",\"507\",\"PWM\",\"JFK\",-11.00,-33.00,0.00,\"\",0.00,66.00,53.00,273.00,,,,,,\n2015,5,7,\"B6\",\"507\",\"PWM\",\"JFK\",2.00,1.00,0.00,\"\",0.00,87.00,49.00,273.00,,,,,,\n2015,5,8,\"B6\",\"507\",\"PWM\",\"JFK\",61.00,52.00,0.00,\"\",0.00,79.00,46.00,273.00,0.00,0.00,52.00,0.00,0.00,\n2015,5,2,\"B6\",\"263\",\"JFK\",\"SEA\",-5.00,-22.00,0.00,\"\",0.00,365.00,338.00,2422.00,,,,,,\n2015,5,9,\"B6\",\"263\",\"JFK\",\"SEA\",-1.00,-30.00,0.00,\"\",0.00,353.00,322.00,2422.00,,,,,,\n2015,5,16,\"B6\",\"263\",\"JFK\",\"SEA\",22.00,-3.00,0.00,\"\",0.00,357.00,314.00,2422.00,,,,,,\n2015,5,23,\"B6\",\"263\",\"JFK\",\"SEA\",0.00,-11.00,0.00,\"\",0.00,371.00,332.00,2422.00,,,,,,\n2015,5,30,\"B6\",\"263\",\"JFK\",\"SEA\",3.00,30.00,0.00,\"\",0.00,409.00,361.00,2422.00,3.00,0.00,27.00,0.00,0.00,\n2015,5,2,\"B6\",\"264\",\"SEA\",\"JFK\",9.00,-3.00,0.00,\"\",0.00,309.00,282.00,2422.00,,,,,,\n2015,5,9,\"B6\",\"264\",\"SEA\",\"JFK\",-7.00,-2.00,0.00,\"\",0.00,326.00,300.00,2422.00,,,,,,\n2015,5,16,\"B6\",\"264\",\"SEA\",\"JFK\",14.00,32.00,0.00,\"\",0.00,339.00,320.00,2422.00,14.00,0.00,18.00,0.00,0.00,\n2015,5,22,\"B6\",\"264\",\"SEA\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,301.00,284.00,2422.00,,,,,,\n2015,5,23,\"B6\",\"264\",\"SEA\",\"JFK\",14.00,19.00,0.00,\"\",0.00,326.00,278.00,2422.00,14.00,0.00,5.00,0.00,0.00,\n2015,5,30,\"B6\",\"264\",\"SEA\",\"JFK\",39.00,8.00,0.00,\"\",0.00,290.00,276.00,2422.00,,,,,,\n2015,5,1,\"B6\",\"271\",\"LGA\",\"FLL\",-6.00,5.00,0.00,\"\",0.00,194.00,153.00,1076.00,,,,,,\n2015,5,2,\"B6\",\"271\",\"LGA\",\"FLL\",-5.00,-4.00,0.00,\"\",0.00,184.00,151.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"271\",\"LGA\",\"FLL\",2.00,5.00,0.00,\"\",0.00,186.00,148.00,1076.00,,,,,,\n2015,5,4,\"B6\",\"271\",\"LGA\",\"FLL\",-10.00,2.00,0.00,\"\",0.00,195.00,157.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"271\",\"LGA\",\"FLL\",-16.00,-12.00,0.00,\"\",0.00,187.00,154.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"271\",\"LGA\",\"FLL\",-5.00,21.00,0.00,\"\",0.00,209.00,155.00,1076.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,7,\"B6\",\"271\",\"LGA\",\"FLL\",-1.00,-17.00,0.00,\"\",0.00,167.00,151.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"271\",\"LGA\",\"FLL\",22.00,25.00,0.00,\"\",0.00,186.00,145.00,1076.00,6.00,0.00,3.00,0.00,16.00,\n2015,5,9,\"B6\",\"271\",\"LGA\",\"FLL\",-3.00,-1.00,0.00,\"\",0.00,185.00,146.00,1076.00,,,,,,\n2015,5,10,\"B6\",\"271\",\"LGA\",\"FLL\",-5.00,-21.00,0.00,\"\",0.00,167.00,149.00,1076.00,,,,,,\n2015,5,11,\"B6\",\"271\",\"LGA\",\"FLL\",-7.00,-6.00,0.00,\"\",0.00,184.00,152.00,1076.00,,,,,,\n2015,5,12,\"B6\",\"271\",\"LGA\",\"FLL\",-11.00,-31.00,0.00,\"\",0.00,163.00,137.00,1076.00,,,,,,\n2015,5,13,\"B6\",\"271\",\"LGA\",\"FLL\",0.00,14.00,0.00,\"\",0.00,197.00,152.00,1076.00,,,,,,\n2015,5,14,\"B6\",\"271\",\"LGA\",\"FLL\",68.00,85.00,0.00,\"\",0.00,200.00,155.00,1076.00,0.00,0.00,17.00,0.00,68.00,\n2015,5,15,\"B6\",\"271\",\"LGA\",\"FLL\",-3.00,-17.00,0.00,\"\",0.00,169.00,148.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"271\",\"LGA\",\"FLL\",-4.00,-11.00,0.00,\"\",0.00,176.00,139.00,1076.00,,,,,,\n2015,5,17,\"B6\",\"271\",\"LGA\",\"FLL\",-13.00,-28.00,0.00,\"\",0.00,168.00,139.00,1076.00,,,,,,\n2015,5,18,\"B6\",\"271\",\"LGA\",\"FLL\",38.00,15.00,0.00,\"\",0.00,160.00,142.00,1076.00,4.00,0.00,0.00,0.00,11.00,\n2015,5,19,\"B6\",\"271\",\"LGA\",\"FLL\",2.00,-9.00,0.00,\"\",0.00,172.00,141.00,1076.00,,,,,,\n2015,5,20,\"B6\",\"271\",\"LGA\",\"FLL\",-6.00,-2.00,0.00,\"\",0.00,187.00,141.00,1076.00,,,,,,\n2015,5,21,\"B6\",\"271\",\"LGA\",\"FLL\",0.00,-12.00,0.00,\"\",0.00,171.00,147.00,1076.00,,,,,,\n2015,5,22,\"B6\",\"271\",\"LGA\",\"FLL\",4.00,21.00,0.00,\"\",0.00,200.00,153.00,1076.00,4.00,0.00,17.00,0.00,0.00,\n2015,5,23,\"B6\",\"271\",\"LGA\",\"FLL\",-7.00,-20.00,0.00,\"\",0.00,170.00,140.00,1076.00,,,,,,\n2015,5,24,\"B6\",\"271\",\"LGA\",\"FLL\",-15.00,-45.00,0.00,\"\",0.00,153.00,133.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"271\",\"LGA\",\"FLL\",-12.00,-33.00,0.00,\"\",0.00,162.00,143.00,1076.00,,,,,,\n2015,5,26,\"B6\",\"271\",\"LGA\",\"FLL\",-5.00,-10.00,0.00,\"\",0.00,178.00,144.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"271\",\"LGA\",\"FLL\",-4.00,-20.00,0.00,\"\",0.00,167.00,146.00,1076.00,,,,,,\n2015,5,28,\"B6\",\"271\",\"LGA\",\"FLL\",-13.00,-16.00,0.00,\"\",0.00,180.00,146.00,1076.00,,,,,,\n2015,5,29,\"B6\",\"271\",\"LGA\",\"FLL\",-3.00,-10.00,0.00,\"\",0.00,176.00,138.00,1076.00,,,,,,\n2015,5,30,\"B6\",\"271\",\"LGA\",\"FLL\",-8.00,-16.00,0.00,\"\",0.00,175.00,140.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"271\",\"LGA\",\"FLL\",-16.00,-34.00,0.00,\"\",0.00,165.00,142.00,1076.00,,,,,,\n2015,5,1,\"B6\",\"272\",\"FLL\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,161.00,138.00,1076.00,,,,,,\n2015,5,2,\"B6\",\"272\",\"FLL\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,153.00,137.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"272\",\"FLL\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,157.00,140.00,1076.00,,,,,,\n2015,5,4,\"B6\",\"272\",\"FLL\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,165.00,139.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"272\",\"FLL\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,171.00,141.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"272\",\"FLL\",\"LGA\",-12.00,-13.00,0.00,\"\",0.00,168.00,143.00,1076.00,,,,,,\n2015,5,7,\"B6\",\"272\",\"FLL\",\"LGA\",-9.00,-13.00,0.00,\"\",0.00,165.00,148.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"272\",\"FLL\",\"LGA\",-6.00,9.00,0.00,\"\",0.00,184.00,161.00,1076.00,,,,,,\n2015,5,9,\"B6\",\"272\",\"FLL\",\"LGA\",-7.00,9.00,0.00,\"\",0.00,185.00,162.00,1076.00,,,,,,\n2015,5,10,\"B6\",\"272\",\"FLL\",\"LGA\",-2.00,28.00,0.00,\"\",0.00,199.00,173.00,1076.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,11,\"B6\",\"272\",\"FLL\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,168.00,149.00,1076.00,,,,,,\n2015,5,12,\"B6\",\"272\",\"FLL\",\"LGA\",,,1.00,\"A\",0.00,,,1076.00,,,,,,\n2015,5,13,\"B6\",\"272\",\"FLL\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,156.00,141.00,1076.00,,,,,,\n2015,5,14,\"B6\",\"272\",\"FLL\",\"LGA\",-5.00,11.00,0.00,\"\",0.00,185.00,153.00,1076.00,,,,,,\n2015,5,15,\"B6\",\"272\",\"FLL\",\"LGA\",1.00,-9.00,0.00,\"\",0.00,159.00,141.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"272\",\"FLL\",\"LGA\",-7.00,3.00,0.00,\"\",0.00,179.00,149.00,1076.00,,,,,,\n2015,5,17,\"B6\",\"272\",\"FLL\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,164.00,148.00,1076.00,,,,,,\n2015,5,18,\"B6\",\"272\",\"FLL\",\"LGA\",-5.00,37.00,0.00,\"\",0.00,211.00,194.00,1076.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,19,\"B6\",\"272\",\"FLL\",\"LGA\",-8.00,-12.00,0.00,\"\",0.00,165.00,148.00,1076.00,,,,,,\n2015,5,20,\"B6\",\"272\",\"FLL\",\"LGA\",-11.00,-24.00,0.00,\"\",0.00,156.00,140.00,1076.00,,,,,,\n2015,5,21,\"B6\",\"272\",\"FLL\",\"LGA\",-7.00,0.00,0.00,\"\",0.00,176.00,141.00,1076.00,,,,,,\n2015,5,22,\"B6\",\"272\",\"FLL\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,160.00,140.00,1076.00,,,,,,\n2015,5,23,\"B6\",\"272\",\"FLL\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,169.00,143.00,1076.00,,,,,,\n2015,5,24,\"B6\",\"272\",\"FLL\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,162.00,146.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"272\",\"FLL\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,160.00,141.00,1076.00,,,,,,\n2015,5,26,\"B6\",\"272\",\"FLL\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,155.00,139.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"272\",\"FLL\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,167.00,144.00,1076.00,,,,,,\n2015,5,28,\"B6\",\"272\",\"FLL\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,168.00,147.00,1076.00,,,,,,\n2015,5,29,\"B6\",\"272\",\"FLL\",\"LGA\",-3.00,27.00,0.00,\"\",0.00,199.00,144.00,1076.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,30,\"B6\",\"272\",\"FLL\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,172.00,149.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"272\",\"FLL\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,156.00,137.00,1076.00,,,,,,\n2015,5,1,\"B6\",\"282\",\"HOU\",\"JFK\",0.00,-35.00,0.00,\"\",0.00,189.00,174.00,1428.00,,,,,,\n2015,5,2,\"B6\",\"282\",\"HOU\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,209.00,192.00,1428.00,,,,,,\n2015,5,3,\"B6\",\"282\",\"HOU\",\"JFK\",-1.00,-20.00,0.00,\"\",0.00,205.00,188.00,1428.00,,,,,,\n2015,5,4,\"B6\",\"282\",\"HOU\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,205.00,189.00,1428.00,,,,,,\n2015,5,5,\"B6\",\"282\",\"HOU\",\"JFK\",-3.00,-30.00,0.00,\"\",0.00,197.00,185.00,1428.00,,,,,,\n2015,5,6,\"B6\",\"282\",\"HOU\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,202.00,188.00,1428.00,,,,,,\n2015,5,7,\"B6\",\"282\",\"HOU\",\"JFK\",25.00,27.00,0.00,\"\",0.00,226.00,194.00,1428.00,25.00,0.00,2.00,0.00,0.00,\n2015,5,8,\"B6\",\"282\",\"HOU\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,212.00,189.00,1428.00,,,,,,\n2015,5,9,\"B6\",\"282\",\"HOU\",\"JFK\",13.00,0.00,0.00,\"\",0.00,211.00,197.00,1428.00,,,,,,\n2015,5,10,\"B6\",\"282\",\"HOU\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,199.00,187.00,1428.00,,,,,,\n2015,5,11,\"B6\",\"282\",\"HOU\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,207.00,185.00,1428.00,,,,,,\n2015,5,12,\"B6\",\"282\",\"HOU\",\"JFK\",95.00,68.00,0.00,\"\",0.00,197.00,181.00,1428.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,13,\"B6\",\"282\",\"HOU\",\"JFK\",21.00,1.00,0.00,\"\",0.00,204.00,189.00,1428.00,,,,,,\n2015,5,14,\"B6\",\"282\",\"HOU\",\"JFK\",5.00,-9.00,0.00,\"\",0.00,210.00,188.00,1428.00,,,,,,\n2015,5,15,\"B6\",\"282\",\"HOU\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,199.00,183.00,1428.00,,,,,,\n2015,5,16,\"B6\",\"282\",\"HOU\",\"JFK\",-1.00,-20.00,0.00,\"\",0.00,205.00,185.00,1428.00,,,,,,\n2015,5,17,\"B6\",\"282\",\"HOU\",\"JFK\",247.00,228.00,0.00,\"\",0.00,205.00,193.00,1428.00,0.00,15.00,0.00,0.00,213.00,\n2015,5,18,\"B6\",\"282\",\"HOU\",\"JFK\",154.00,155.00,0.00,\"\",0.00,225.00,214.00,1428.00,0.00,0.00,155.00,0.00,0.00,\n2015,5,19,\"B6\",\"282\",\"HOU\",\"JFK\",5.00,-19.00,0.00,\"\",0.00,200.00,184.00,1428.00,,,,,,\n2015,5,20,\"B6\",\"282\",\"HOU\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,208.00,192.00,1428.00,,,,,,\n2015,5,21,\"B6\",\"282\",\"HOU\",\"JFK\",10.00,20.00,0.00,\"\",0.00,234.00,178.00,1428.00,10.00,0.00,10.00,0.00,0.00,\n2015,5,22,\"B6\",\"282\",\"HOU\",\"JFK\",13.00,-19.00,0.00,\"\",0.00,192.00,176.00,1428.00,,,,,,\n2015,5,23,\"B6\",\"282\",\"HOU\",\"JFK\",3.00,-23.00,0.00,\"\",0.00,198.00,180.00,1428.00,,,,,,\n2015,5,24,\"B6\",\"282\",\"HOU\",\"JFK\",23.00,-7.00,0.00,\"\",0.00,194.00,183.00,1428.00,,,,,,\n2015,5,25,\"B6\",\"282\",\"HOU\",\"JFK\",14.00,-12.00,0.00,\"\",0.00,198.00,181.00,1428.00,,,,,,\n2015,5,26,\"B6\",\"282\",\"HOU\",\"JFK\",79.00,57.00,0.00,\"\",0.00,202.00,190.00,1428.00,57.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"B6\",\"282\",\"HOU\",\"JFK\",41.00,29.00,0.00,\"\",0.00,212.00,200.00,1428.00,0.00,6.00,0.00,0.00,23.00,\n2015,5,28,\"B6\",\"282\",\"HOU\",\"JFK\",25.00,9.00,0.00,\"\",0.00,208.00,196.00,1428.00,,,,,,\n2015,5,29,\"B6\",\"282\",\"HOU\",\"JFK\",-13.00,-33.00,0.00,\"\",0.00,204.00,192.00,1428.00,,,,,,\n2015,5,30,\"B6\",\"282\",\"HOU\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,207.00,194.00,1428.00,,,,,,\n2015,5,31,\"B6\",\"282\",\"HOU\",\"JFK\",65.00,65.00,0.00,\"\",0.00,224.00,187.00,1428.00,0.00,0.00,65.00,0.00,0.00,\n2015,5,1,\"B6\",\"283\",\"JFK\",\"MCO\",-3.00,-24.00,0.00,\"\",0.00,171.00,134.00,944.00,,,,,,\n2015,5,2,\"B6\",\"283\",\"JFK\",\"MCO\",-6.00,-45.00,0.00,\"\",0.00,153.00,128.00,944.00,,,,,,\n2015,5,3,\"B6\",\"283\",\"JFK\",\"MCO\",-4.00,-34.00,0.00,\"\",0.00,162.00,128.00,944.00,,,,,,\n2015,5,4,\"B6\",\"283\",\"JFK\",\"MCO\",-3.00,-20.00,0.00,\"\",0.00,175.00,129.00,944.00,,,,,,\n2015,5,5,\"B6\",\"283\",\"JFK\",\"MCO\",-3.00,-30.00,0.00,\"\",0.00,165.00,138.00,944.00,,,,,,\n2015,5,6,\"B6\",\"283\",\"JFK\",\"MCO\",12.00,6.00,0.00,\"\",0.00,186.00,140.00,944.00,,,,,,\n2015,5,7,\"B6\",\"283\",\"JFK\",\"MCO\",-8.00,-37.00,0.00,\"\",0.00,163.00,130.00,944.00,,,,,,\n2015,5,8,\"B6\",\"283\",\"JFK\",\"MCO\",185.00,164.00,0.00,\"\",0.00,171.00,123.00,944.00,164.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"B6\",\"283\",\"JFK\",\"MCO\",-4.00,-41.00,0.00,\"\",0.00,155.00,125.00,944.00,,,,,,\n2015,5,10,\"B6\",\"283\",\"JFK\",\"MCO\",-8.00,-12.00,0.00,\"\",0.00,188.00,129.00,944.00,,,,,,\n2015,5,11,\"B6\",\"283\",\"JFK\",\"MCO\",-4.00,-24.00,0.00,\"\",0.00,172.00,129.00,944.00,,,,,,\n2015,5,12,\"B6\",\"283\",\"JFK\",\"MCO\",2.00,-31.00,0.00,\"\",0.00,159.00,134.00,944.00,,,,,,\n2015,5,13,\"B6\",\"283\",\"JFK\",\"MCO\",-4.00,-41.00,0.00,\"\",0.00,155.00,127.00,944.00,,,,,,\n2015,5,14,\"B6\",\"283\",\"JFK\",\"MCO\",-1.00,-25.00,0.00,\"\",0.00,168.00,127.00,944.00,,,,,,\n2015,5,15,\"B6\",\"283\",\"JFK\",\"MCO\",-7.00,-31.00,0.00,\"\",0.00,168.00,132.00,944.00,,,,,,\n2015,5,16,\"B6\",\"283\",\"JFK\",\"MCO\",30.00,2.00,0.00,\"\",0.00,164.00,124.00,944.00,,,,,,\n2015,5,17,\"B6\",\"283\",\"JFK\",\"MCO\",-3.00,-25.00,0.00,\"\",0.00,170.00,133.00,944.00,,,,,,\n2015,5,18,\"B6\",\"283\",\"JFK\",\"MCO\",73.00,28.00,0.00,\"\",0.00,147.00,121.00,944.00,7.00,0.00,0.00,0.00,21.00,\n2015,5,19,\"B6\",\"283\",\"JFK\",\"MCO\",-2.00,-1.00,0.00,\"\",0.00,193.00,148.00,944.00,,,,,,\n2015,5,20,\"B6\",\"283\",\"JFK\",\"MCO\",-3.00,-30.00,0.00,\"\",0.00,165.00,142.00,944.00,,,,,,\n2015,5,21,\"B6\",\"283\",\"JFK\",\"MCO\",-2.00,2.00,0.00,\"\",0.00,196.00,136.00,944.00,,,,,,\n2015,5,22,\"B6\",\"283\",\"JFK\",\"MCO\",0.00,-26.00,0.00,\"\",0.00,166.00,137.00,944.00,,,,,,\n2015,5,23,\"B6\",\"283\",\"JFK\",\"MCO\",-1.00,-29.00,0.00,\"\",0.00,164.00,134.00,944.00,,,,,,\n2015,5,24,\"B6\",\"283\",\"JFK\",\"MCO\",-6.00,-40.00,0.00,\"\",0.00,158.00,122.00,944.00,,,,,,\n2015,5,25,\"B6\",\"283\",\"JFK\",\"MCO\",-1.00,-35.00,0.00,\"\",0.00,158.00,127.00,944.00,,,,,,\n2015,5,26,\"B6\",\"283\",\"JFK\",\"MCO\",-5.00,-33.00,0.00,\"\",0.00,164.00,129.00,944.00,,,,,,\n2015,5,27,\"B6\",\"283\",\"JFK\",\"MCO\",-5.00,-40.00,0.00,\"\",0.00,157.00,126.00,944.00,,,,,,\n2015,5,28,\"B6\",\"283\",\"JFK\",\"MCO\",-2.00,-24.00,0.00,\"\",0.00,170.00,131.00,944.00,,,,,,\n2015,5,29,\"B6\",\"283\",\"JFK\",\"MCO\",-2.00,-35.00,0.00,\"\",0.00,159.00,123.00,944.00,,,,,,\n2015,5,30,\"B6\",\"283\",\"JFK\",\"MCO\",21.00,-2.00,0.00,\"\",0.00,169.00,122.00,944.00,,,,,,\n2015,5,31,\"B6\",\"283\",\"JFK\",\"MCO\",90.00,85.00,0.00,\"\",0.00,187.00,123.00,944.00,10.00,0.00,0.00,0.00,75.00,\n2015,5,1,\"B6\",\"284\",\"MCO\",\"JFK\",5.00,-16.00,0.00,\"\",0.00,148.00,117.00,944.00,,,,,,\n2015,5,2,\"B6\",\"284\",\"MCO\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,148.00,128.00,944.00,,,,,,\n2015,5,3,\"B6\",\"284\",\"MCO\",\"JFK\",14.00,8.00,0.00,\"\",0.00,163.00,131.00,944.00,,,,,,\n2015,5,4,\"B6\",\"284\",\"MCO\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,145.00,123.00,944.00,,,,,,\n2015,5,5,\"B6\",\"284\",\"MCO\",\"JFK\",11.00,-23.00,0.00,\"\",0.00,135.00,121.00,944.00,,,,,,\n2015,5,6,\"B6\",\"284\",\"MCO\",\"JFK\",6.00,-21.00,0.00,\"\",0.00,142.00,125.00,944.00,,,,,,\n2015,5,7,\"B6\",\"284\",\"MCO\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,148.00,132.00,944.00,,,,,,\n2015,5,8,\"B6\",\"284\",\"MCO\",\"JFK\",43.00,32.00,0.00,\"\",0.00,158.00,126.00,944.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,9,\"B6\",\"284\",\"MCO\",\"JFK\",50.00,43.00,0.00,\"\",0.00,162.00,134.00,944.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,10,\"B6\",\"284\",\"MCO\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,163.00,139.00,944.00,,,,,,\n2015,5,11,\"B6\",\"284\",\"MCO\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,152.00,134.00,944.00,,,,,,\n2015,5,12,\"B6\",\"284\",\"MCO\",\"JFK\",42.00,13.00,0.00,\"\",0.00,140.00,123.00,944.00,,,,,,\n2015,5,13,\"B6\",\"284\",\"MCO\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,150.00,124.00,944.00,,,,,,\n2015,5,14,\"B6\",\"284\",\"MCO\",\"JFK\",5.00,-22.00,0.00,\"\",0.00,142.00,126.00,944.00,,,,,,\n2015,5,15,\"B6\",\"284\",\"MCO\",\"JFK\",0.00,-26.00,0.00,\"\",0.00,143.00,123.00,944.00,,,,,,\n2015,5,16,\"B6\",\"284\",\"MCO\",\"JFK\",-5.00,-30.00,0.00,\"\",0.00,144.00,124.00,944.00,,,,,,\n2015,5,17,\"B6\",\"284\",\"MCO\",\"JFK\",-5.00,-28.00,0.00,\"\",0.00,146.00,130.00,944.00,,,,,,\n2015,5,18,\"B6\",\"284\",\"MCO\",\"JFK\",,,1.00,\"C\",0.00,,,944.00,,,,,,\n2015,5,19,\"B6\",\"284\",\"MCO\",\"JFK\",-1.00,11.00,0.00,\"\",0.00,181.00,124.00,944.00,,,,,,\n2015,5,20,\"B6\",\"284\",\"MCO\",\"JFK\",2.00,-17.00,0.00,\"\",0.00,150.00,125.00,944.00,,,,,,\n2015,5,21,\"B6\",\"284\",\"MCO\",\"JFK\",128.00,103.00,0.00,\"\",0.00,144.00,121.00,944.00,103.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"B6\",\"284\",\"MCO\",\"JFK\",23.00,-8.00,0.00,\"\",0.00,138.00,117.00,944.00,,,,,,\n2015,5,23,\"B6\",\"284\",\"MCO\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,145.00,125.00,944.00,,,,,,\n2015,5,24,\"B6\",\"284\",\"MCO\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,156.00,132.00,944.00,,,,,,\n2015,5,25,\"B6\",\"284\",\"MCO\",\"JFK\",-5.00,-33.00,0.00,\"\",0.00,141.00,127.00,944.00,,,,,,\n2015,5,26,\"B6\",\"284\",\"MCO\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,147.00,121.00,944.00,,,,,,\n2015,5,27,\"B6\",\"284\",\"MCO\",\"JFK\",194.00,181.00,0.00,\"\",0.00,156.00,120.00,944.00,0.00,0.00,181.00,0.00,0.00,\n2015,5,28,\"B6\",\"284\",\"MCO\",\"JFK\",-1.00,10.00,0.00,\"\",0.00,180.00,155.00,944.00,,,,,,\n2015,5,29,\"B6\",\"284\",\"MCO\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,155.00,136.00,944.00,,,,,,\n2015,5,30,\"B6\",\"284\",\"MCO\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,146.00,124.00,944.00,,,,,,\n2015,5,31,\"B6\",\"284\",\"MCO\",\"JFK\",213.00,264.00,0.00,\"\",0.00,220.00,131.00,944.00,0.00,0.00,264.00,0.00,0.00,\n2015,5,1,\"B6\",\"285\",\"ROC\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,73.00,55.00,264.00,,,,,,\n2015,5,2,\"B6\",\"285\",\"ROC\",\"JFK\",-18.00,-24.00,0.00,\"\",0.00,73.00,57.00,264.00,,,,,,\n2015,5,3,\"B6\",\"285\",\"ROC\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,73.00,60.00,264.00,,,,,,\n2015,5,4,\"B6\",\"285\",\"ROC\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,76.00,58.00,264.00,,,,,,\n2015,5,5,\"B6\",\"285\",\"ROC\",\"JFK\",-8.00,-30.00,0.00,\"\",0.00,57.00,46.00,264.00,,,,,,\n2015,5,6,\"B6\",\"285\",\"ROC\",\"JFK\",-13.00,-28.00,0.00,\"\",0.00,64.00,52.00,264.00,,,,,,\n2015,5,7,\"B6\",\"285\",\"ROC\",\"JFK\",-10.00,-26.00,0.00,\"\",0.00,63.00,52.00,264.00,,,,,,\n2015,5,8,\"B6\",\"285\",\"ROC\",\"JFK\",40.00,31.00,0.00,\"\",0.00,70.00,51.00,264.00,1.00,0.00,0.00,0.00,30.00,\n2015,5,9,\"B6\",\"285\",\"ROC\",\"JFK\",-9.00,-25.00,0.00,\"\",0.00,63.00,50.00,264.00,,,,,,\n2015,5,10,\"B6\",\"285\",\"ROC\",\"JFK\",-10.00,-25.00,0.00,\"\",0.00,64.00,49.00,264.00,,,,,,\n2015,5,11,\"B6\",\"285\",\"ROC\",\"JFK\",-9.00,-19.00,0.00,\"\",0.00,69.00,56.00,264.00,,,,,,\n2015,5,12,\"B6\",\"285\",\"ROC\",\"JFK\",26.00,21.00,0.00,\"\",0.00,74.00,57.00,264.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,13,\"B6\",\"285\",\"ROC\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,71.00,55.00,264.00,,,,,,\n2015,5,14,\"B6\",\"285\",\"ROC\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,63.00,46.00,264.00,,,,,,\n2015,5,15,\"B6\",\"285\",\"ROC\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,67.00,51.00,264.00,,,,,,\n2015,5,16,\"B6\",\"285\",\"ROC\",\"JFK\",5.00,-9.00,0.00,\"\",0.00,65.00,51.00,264.00,,,,,,\n2015,5,17,\"B6\",\"285\",\"ROC\",\"JFK\",13.00,0.00,0.00,\"\",0.00,66.00,51.00,264.00,,,,,,\n2015,5,18,\"B6\",\"285\",\"ROC\",\"JFK\",7.00,19.00,0.00,\"\",0.00,91.00,73.00,264.00,4.00,0.00,12.00,0.00,3.00,\n2015,5,19,\"B6\",\"285\",\"ROC\",\"JFK\",1.00,-12.00,0.00,\"\",0.00,66.00,48.00,264.00,,,,,,\n2015,5,20,\"B6\",\"285\",\"ROC\",\"JFK\",9.00,4.00,0.00,\"\",0.00,74.00,50.00,264.00,,,,,,\n2015,5,21,\"B6\",\"285\",\"ROC\",\"JFK\",-10.00,-25.00,0.00,\"\",0.00,64.00,49.00,264.00,,,,,,\n2015,5,22,\"B6\",\"285\",\"ROC\",\"JFK\",74.00,112.00,0.00,\"\",0.00,117.00,56.00,264.00,0.00,0.00,38.00,0.00,74.00,\n2015,5,23,\"B6\",\"285\",\"ROC\",\"JFK\",83.00,71.00,0.00,\"\",0.00,67.00,51.00,264.00,71.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"B6\",\"285\",\"ROC\",\"JFK\",-9.00,-14.00,0.00,\"\",0.00,74.00,56.00,264.00,,,,,,\n2015,5,25,\"B6\",\"285\",\"ROC\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,65.00,50.00,264.00,,,,,,\n2015,5,26,\"B6\",\"285\",\"ROC\",\"JFK\",-15.00,-33.00,0.00,\"\",0.00,61.00,50.00,264.00,,,,,,\n2015,5,27,\"B6\",\"285\",\"ROC\",\"JFK\",-12.00,-27.00,0.00,\"\",0.00,64.00,52.00,264.00,,,,,,\n2015,5,28,\"B6\",\"285\",\"ROC\",\"JFK\",-11.00,-23.00,0.00,\"\",0.00,67.00,53.00,264.00,,,,,,\n2015,5,29,\"B6\",\"285\",\"ROC\",\"JFK\",-19.00,-35.00,0.00,\"\",0.00,63.00,53.00,264.00,,,,,,\n2015,5,30,\"B6\",\"285\",\"ROC\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,65.00,51.00,264.00,,,,,,\n2015,5,31,\"B6\",\"285\",\"ROC\",\"JFK\",-11.00,-23.00,0.00,\"\",0.00,67.00,50.00,264.00,,,,,,\n2015,5,1,\"B6\",\"286\",\"JFK\",\"ROC\",-1.00,-13.00,0.00,\"\",0.00,71.00,48.00,264.00,,,,,,\n2015,5,2,\"B6\",\"286\",\"JFK\",\"ROC\",-8.00,-16.00,0.00,\"\",0.00,75.00,47.00,264.00,,,,,,\n2015,5,3,\"B6\",\"286\",\"JFK\",\"ROC\",-6.00,-9.00,0.00,\"\",0.00,80.00,49.00,264.00,,,,,,\n2015,5,4,\"B6\",\"286\",\"JFK\",\"ROC\",-5.00,-12.00,0.00,\"\",0.00,76.00,47.00,264.00,,,,,,\n2015,5,5,\"B6\",\"286\",\"JFK\",\"ROC\",0.00,-8.00,0.00,\"\",0.00,75.00,50.00,264.00,,,,,,\n2015,5,6,\"B6\",\"286\",\"JFK\",\"ROC\",-3.00,-18.00,0.00,\"\",0.00,68.00,51.00,264.00,,,,,,\n2015,5,7,\"B6\",\"286\",\"JFK\",\"ROC\",-9.00,-15.00,0.00,\"\",0.00,77.00,48.00,264.00,,,,,,\n2015,5,8,\"B6\",\"286\",\"JFK\",\"ROC\",54.00,35.00,0.00,\"\",0.00,64.00,47.00,264.00,7.00,0.00,0.00,0.00,28.00,\n2015,5,9,\"B6\",\"286\",\"JFK\",\"ROC\",-2.00,-11.00,0.00,\"\",0.00,74.00,48.00,264.00,,,,,,\n2015,5,10,\"B6\",\"286\",\"JFK\",\"ROC\",-5.00,-17.00,0.00,\"\",0.00,71.00,53.00,264.00,,,,,,\n2015,5,11,\"B6\",\"286\",\"JFK\",\"ROC\",-5.00,-4.00,0.00,\"\",0.00,84.00,53.00,264.00,,,,,,\n2015,5,12,\"B6\",\"286\",\"JFK\",\"ROC\",,,1.00,\"C\",0.00,,,264.00,,,,,,\n2015,5,13,\"B6\",\"286\",\"JFK\",\"ROC\",25.00,17.00,0.00,\"\",0.00,75.00,53.00,264.00,10.00,0.00,0.00,0.00,7.00,\n2015,5,14,\"B6\",\"286\",\"JFK\",\"ROC\",-2.00,-15.00,0.00,\"\",0.00,70.00,52.00,264.00,,,,,,\n2015,5,15,\"B6\",\"286\",\"JFK\",\"ROC\",-3.00,-10.00,0.00,\"\",0.00,76.00,50.00,264.00,,,,,,\n2015,5,16,\"B6\",\"286\",\"JFK\",\"ROC\",44.00,35.00,0.00,\"\",0.00,74.00,50.00,264.00,14.00,0.00,0.00,0.00,21.00,\n2015,5,17,\"B6\",\"286\",\"JFK\",\"ROC\",-7.00,-16.00,0.00,\"\",0.00,74.00,47.00,264.00,,,,,,\n2015,5,18,\"B6\",\"286\",\"JFK\",\"ROC\",71.00,61.00,0.00,\"\",0.00,73.00,52.00,264.00,61.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"B6\",\"286\",\"JFK\",\"ROC\",8.00,-1.00,0.00,\"\",0.00,74.00,53.00,264.00,,,,,,\n2015,5,20,\"B6\",\"286\",\"JFK\",\"ROC\",-9.00,-26.00,0.00,\"\",0.00,66.00,51.00,264.00,,,,,,\n2015,5,21,\"B6\",\"286\",\"JFK\",\"ROC\",0.00,3.00,0.00,\"\",0.00,86.00,53.00,264.00,,,,,,\n2015,5,22,\"B6\",\"286\",\"JFK\",\"ROC\",-8.00,-17.00,0.00,\"\",0.00,75.00,58.00,264.00,,,,,,\n2015,5,23,\"B6\",\"286\",\"JFK\",\"ROC\",1.00,7.00,0.00,\"\",0.00,90.00,68.00,264.00,,,,,,\n2015,5,24,\"B6\",\"286\",\"JFK\",\"ROC\",-2.00,1.00,0.00,\"\",0.00,87.00,59.00,264.00,,,,,,\n2015,5,25,\"B6\",\"286\",\"JFK\",\"ROC\",-10.00,-20.00,0.00,\"\",0.00,73.00,50.00,264.00,,,,,,\n2015,5,26,\"B6\",\"286\",\"JFK\",\"ROC\",-8.00,-25.00,0.00,\"\",0.00,66.00,47.00,264.00,,,,,,\n2015,5,27,\"B6\",\"286\",\"JFK\",\"ROC\",-9.00,-10.00,0.00,\"\",0.00,82.00,57.00,264.00,,,,,,\n2015,5,28,\"B6\",\"286\",\"JFK\",\"ROC\",-9.00,-21.00,0.00,\"\",0.00,71.00,50.00,264.00,,,,,,\n2015,5,29,\"B6\",\"286\",\"JFK\",\"ROC\",-6.00,-22.00,0.00,\"\",0.00,67.00,47.00,264.00,,,,,,\n2015,5,30,\"B6\",\"286\",\"JFK\",\"ROC\",-5.00,-18.00,0.00,\"\",0.00,70.00,49.00,264.00,,,,,,\n2015,5,31,\"B6\",\"286\",\"JFK\",\"ROC\",-7.00,-19.00,0.00,\"\",0.00,71.00,50.00,264.00,,,,,,\n2015,5,1,\"B6\",\"298\",\"MCO\",\"LGA\",166.00,150.00,0.00,\"\",0.00,140.00,119.00,950.00,150.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"B6\",\"298\",\"MCO\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,153.00,126.00,950.00,,,,,,\n2015,5,3,\"B6\",\"298\",\"MCO\",\"LGA\",1.00,-8.00,0.00,\"\",0.00,147.00,129.00,950.00,,,,,,\n2015,5,4,\"B6\",\"298\",\"MCO\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,143.00,125.00,950.00,,,,,,\n2015,5,5,\"B6\",\"298\",\"MCO\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,147.00,124.00,950.00,,,,,,\n2015,5,6,\"B6\",\"298\",\"MCO\",\"LGA\",-7.00,-30.00,0.00,\"\",0.00,133.00,117.00,950.00,,,,,,\n2015,5,7,\"B6\",\"298\",\"MCO\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,152.00,128.00,950.00,,,,,,\n2015,5,8,\"B6\",\"298\",\"MCO\",\"LGA\",37.00,39.00,0.00,\"\",0.00,158.00,132.00,950.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,9,\"B6\",\"298\",\"MCO\",\"LGA\",0.00,11.00,0.00,\"\",0.00,167.00,135.00,950.00,,,,,,\n2015,5,10,\"B6\",\"298\",\"MCO\",\"LGA\",-3.00,8.00,0.00,\"\",0.00,167.00,146.00,950.00,,,,,,\n2015,5,11,\"B6\",\"298\",\"MCO\",\"LGA\",0.00,0.00,0.00,\"\",0.00,156.00,132.00,950.00,,,,,,\n2015,5,12,\"B6\",\"298\",\"MCO\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,146.00,128.00,950.00,,,,,,\n2015,5,13,\"B6\",\"298\",\"MCO\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,141.00,122.00,950.00,,,,,,\n2015,5,14,\"B6\",\"298\",\"MCO\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,152.00,129.00,950.00,,,,,,\n2015,5,15,\"B6\",\"298\",\"MCO\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,151.00,127.00,950.00,,,,,,\n2015,5,16,\"B6\",\"298\",\"MCO\",\"LGA\",-9.00,-12.00,0.00,\"\",0.00,153.00,129.00,950.00,,,,,,\n2015,5,17,\"B6\",\"298\",\"MCO\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,141.00,125.00,950.00,,,,,,\n2015,5,18,\"B6\",\"298\",\"MCO\",\"LGA\",,,1.00,\"C\",0.00,,,950.00,,,,,,\n2015,5,19,\"B6\",\"298\",\"MCO\",\"LGA\",199.00,191.00,0.00,\"\",0.00,148.00,123.00,950.00,0.00,0.00,191.00,0.00,0.00,\n2015,5,20,\"B6\",\"298\",\"MCO\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,138.00,123.00,950.00,,,,,,\n2015,5,21,\"B6\",\"298\",\"MCO\",\"LGA\",80.00,84.00,0.00,\"\",0.00,160.00,121.00,950.00,50.00,0.00,4.00,0.00,30.00,\n2015,5,22,\"B6\",\"298\",\"MCO\",\"LGA\",-4.00,-26.00,0.00,\"\",0.00,134.00,119.00,950.00,,,,,,\n2015,5,23,\"B6\",\"298\",\"MCO\",\"LGA\",-4.00,-25.00,0.00,\"\",0.00,135.00,118.00,950.00,,,,,,\n2015,5,24,\"B6\",\"298\",\"MCO\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,146.00,131.00,950.00,,,,,,\n2015,5,25,\"B6\",\"298\",\"MCO\",\"LGA\",164.00,174.00,0.00,\"\",0.00,166.00,131.00,950.00,164.00,0.00,10.00,0.00,0.00,\n2015,5,26,\"B6\",\"298\",\"MCO\",\"LGA\",8.00,2.00,0.00,\"\",0.00,150.00,122.00,950.00,,,,,,\n2015,5,27,\"B6\",\"298\",\"MCO\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,148.00,126.00,950.00,,,,,,\n2015,5,28,\"B6\",\"298\",\"MCO\",\"LGA\",0.00,-6.00,0.00,\"\",0.00,150.00,128.00,950.00,,,,,,\n2015,5,29,\"B6\",\"298\",\"MCO\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,150.00,125.00,950.00,,,,,,\n2015,5,30,\"B6\",\"298\",\"MCO\",\"LGA\",3.00,5.00,0.00,\"\",0.00,158.00,129.00,950.00,,,,,,\n2015,5,31,\"B6\",\"298\",\"MCO\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,158.00,134.00,950.00,,,,,,\n2015,5,1,\"B6\",\"299\",\"LGA\",\"MCO\",-10.00,-17.00,0.00,\"\",0.00,163.00,137.00,950.00,,,,,,\n2015,5,2,\"B6\",\"299\",\"LGA\",\"MCO\",-10.00,-31.00,0.00,\"\",0.00,149.00,127.00,950.00,,,,,,\n2015,5,3,\"B6\",\"299\",\"LGA\",\"MCO\",2.00,-15.00,0.00,\"\",0.00,153.00,127.00,950.00,,,,,,\n2015,5,4,\"B6\",\"299\",\"LGA\",\"MCO\",124.00,114.00,0.00,\"\",0.00,160.00,130.00,950.00,51.00,0.00,0.00,0.00,63.00,\n2015,5,5,\"B6\",\"299\",\"LGA\",\"MCO\",-13.00,-27.00,0.00,\"\",0.00,156.00,141.00,950.00,,,,,,\n2015,5,6,\"B6\",\"299\",\"LGA\",\"MCO\",1.00,2.00,0.00,\"\",0.00,171.00,136.00,950.00,,,,,,\n2015,5,7,\"B6\",\"299\",\"LGA\",\"MCO\",-8.00,-36.00,0.00,\"\",0.00,142.00,129.00,950.00,,,,,,\n2015,5,8,\"B6\",\"299\",\"LGA\",\"MCO\",-8.00,-29.00,0.00,\"\",0.00,149.00,125.00,950.00,,,,,,\n2015,5,9,\"B6\",\"299\",\"LGA\",\"MCO\",-17.00,-49.00,0.00,\"\",0.00,138.00,119.00,950.00,,,,,,\n2015,5,10,\"B6\",\"299\",\"LGA\",\"MCO\",-6.00,-21.00,0.00,\"\",0.00,155.00,131.00,950.00,,,,,,\n2015,5,11,\"B6\",\"299\",\"LGA\",\"MCO\",-15.00,-13.00,0.00,\"\",0.00,172.00,137.00,950.00,,,,,,\n2015,5,12,\"B6\",\"299\",\"LGA\",\"MCO\",-8.00,-29.00,0.00,\"\",0.00,149.00,129.00,950.00,,,,,,\n2015,5,13,\"B6\",\"299\",\"LGA\",\"MCO\",-1.00,-6.00,0.00,\"\",0.00,165.00,125.00,950.00,,,,,,\n2015,5,14,\"B6\",\"299\",\"LGA\",\"MCO\",-3.00,-31.00,0.00,\"\",0.00,142.00,121.00,950.00,,,,,,\n2015,5,15,\"B6\",\"299\",\"LGA\",\"MCO\",-6.00,-29.00,0.00,\"\",0.00,147.00,125.00,950.00,,,,,,\n2015,5,16,\"B6\",\"299\",\"LGA\",\"MCO\",-14.00,-45.00,0.00,\"\",0.00,139.00,125.00,950.00,,,,,,\n2015,5,17,\"B6\",\"299\",\"LGA\",\"MCO\",-2.00,-18.00,0.00,\"\",0.00,154.00,124.00,950.00,,,,,,\n2015,5,18,\"B6\",\"299\",\"LGA\",\"MCO\",71.00,43.00,0.00,\"\",0.00,142.00,120.00,950.00,8.00,0.00,0.00,0.00,35.00,\n2015,5,19,\"B6\",\"299\",\"LGA\",\"MCO\",157.00,151.00,0.00,\"\",0.00,164.00,143.00,950.00,11.00,0.00,0.00,0.00,140.00,\n2015,5,20,\"B6\",\"299\",\"LGA\",\"MCO\",-9.00,7.00,0.00,\"\",0.00,186.00,134.00,950.00,,,,,,\n2015,5,21,\"B6\",\"299\",\"LGA\",\"MCO\",13.00,26.00,0.00,\"\",0.00,183.00,145.00,950.00,0.00,0.00,13.00,0.00,13.00,\n2015,5,22,\"B6\",\"299\",\"LGA\",\"MCO\",14.00,5.00,0.00,\"\",0.00,161.00,135.00,950.00,,,,,,\n2015,5,23,\"B6\",\"299\",\"LGA\",\"MCO\",-11.00,-35.00,0.00,\"\",0.00,146.00,126.00,950.00,,,,,,\n2015,5,24,\"B6\",\"299\",\"LGA\",\"MCO\",-20.00,-52.00,0.00,\"\",0.00,138.00,124.00,950.00,,,,,,\n2015,5,25,\"B6\",\"299\",\"LGA\",\"MCO\",-5.00,-28.00,0.00,\"\",0.00,147.00,131.00,950.00,,,,,,\n2015,5,26,\"B6\",\"299\",\"LGA\",\"MCO\",-14.00,-28.00,0.00,\"\",0.00,156.00,139.00,950.00,,,,,,\n2015,5,27,\"B6\",\"299\",\"LGA\",\"MCO\",86.00,122.00,0.00,\"\",0.00,206.00,134.00,950.00,7.00,0.00,36.00,0.00,79.00,\n2015,5,28,\"B6\",\"299\",\"LGA\",\"MCO\",8.00,3.00,0.00,\"\",0.00,165.00,127.00,950.00,,,,,,\n2015,5,29,\"B6\",\"299\",\"LGA\",\"MCO\",-9.00,-20.00,0.00,\"\",0.00,159.00,126.00,950.00,,,,,,\n2015,5,30,\"B6\",\"299\",\"LGA\",\"MCO\",-15.00,-31.00,0.00,\"\",0.00,154.00,121.00,950.00,,,,,,\n2015,5,31,\"B6\",\"299\",\"JFK\",\"MCO\",306.00,352.00,0.00,\"\",0.00,216.00,122.00,944.00,306.00,0.00,46.00,0.00,0.00,\n2015,5,1,\"B6\",\"301\",\"JFK\",\"FLL\",-2.00,-22.00,0.00,\"\",0.00,177.00,154.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"301\",\"JFK\",\"FLL\",-8.00,-5.00,0.00,\"\",0.00,200.00,148.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"301\",\"JFK\",\"FLL\",117.00,109.00,0.00,\"\",0.00,189.00,143.00,1069.00,79.00,0.00,0.00,0.00,30.00,\n2015,5,4,\"B6\",\"301\",\"JFK\",\"FLL\",-8.00,-20.00,0.00,\"\",0.00,185.00,156.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"301\",\"JFK\",\"FLL\",-6.00,-20.00,0.00,\"\",0.00,183.00,159.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"301\",\"JFK\",\"FLL\",12.00,33.00,0.00,\"\",0.00,218.00,153.00,1069.00,12.00,0.00,21.00,0.00,0.00,\n2015,5,7,\"B6\",\"301\",\"JFK\",\"FLL\",48.00,30.00,0.00,\"\",0.00,179.00,152.00,1069.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"B6\",\"301\",\"JFK\",\"FLL\",7.00,-1.00,0.00,\"\",0.00,189.00,147.00,1069.00,,,,,,\n2015,5,9,\"B6\",\"301\",\"JFK\",\"FLL\",4.00,-20.00,0.00,\"\",0.00,173.00,145.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"301\",\"JFK\",\"FLL\",13.00,37.00,0.00,\"\",0.00,221.00,171.00,1069.00,13.00,0.00,24.00,0.00,0.00,\n2015,5,11,\"B6\",\"301\",\"JFK\",\"FLL\",40.00,60.00,0.00,\"\",0.00,217.00,162.00,1069.00,0.00,0.00,20.00,40.00,0.00,\n2015,5,12,\"B6\",\"301\",\"JFK\",\"FLL\",17.00,5.00,0.00,\"\",0.00,185.00,145.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"301\",\"JFK\",\"FLL\",0.00,-25.00,0.00,\"\",0.00,172.00,149.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"301\",\"JFK\",\"FLL\",1.00,-11.00,0.00,\"\",0.00,185.00,138.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"301\",\"JFK\",\"FLL\",-3.00,-33.00,0.00,\"\",0.00,167.00,142.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"301\",\"JFK\",\"FLL\",1.00,-26.00,0.00,\"\",0.00,170.00,136.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"301\",\"JFK\",\"FLL\",-1.00,-10.00,0.00,\"\",0.00,188.00,143.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"301\",\"JFK\",\"FLL\",13.00,-6.00,0.00,\"\",0.00,178.00,140.00,1069.00,,,,,,\n2015,5,19,\"B6\",\"301\",\"JFK\",\"FLL\",36.00,48.00,0.00,\"\",0.00,209.00,159.00,1069.00,36.00,0.00,12.00,0.00,0.00,\n2015,5,20,\"B6\",\"301\",\"JFK\",\"FLL\",-6.00,-40.00,0.00,\"\",0.00,163.00,142.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"301\",\"JFK\",\"FLL\",6.00,32.00,0.00,\"\",0.00,223.00,156.00,1069.00,6.00,0.00,26.00,0.00,0.00,\n2015,5,22,\"B6\",\"301\",\"JFK\",\"FLL\",3.00,-13.00,0.00,\"\",0.00,181.00,155.00,1069.00,,,,,,\n2015,5,23,\"B6\",\"301\",\"JFK\",\"FLL\",-4.00,-36.00,0.00,\"\",0.00,165.00,143.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"301\",\"JFK\",\"FLL\",-2.00,-30.00,0.00,\"\",0.00,169.00,135.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"301\",\"JFK\",\"FLL\",-4.00,-23.00,0.00,\"\",0.00,178.00,153.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"301\",\"JFK\",\"FLL\",-2.00,-22.00,0.00,\"\",0.00,177.00,144.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"301\",\"JFK\",\"FLL\",-7.00,-37.00,0.00,\"\",0.00,167.00,143.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"301\",\"JFK\",\"FLL\",4.00,-21.00,0.00,\"\",0.00,172.00,145.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"301\",\"JFK\",\"FLL\",-3.00,-38.00,0.00,\"\",0.00,162.00,139.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"301\",\"JFK\",\"FLL\",-3.00,-36.00,0.00,\"\",0.00,164.00,140.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"301\",\"JFK\",\"FLL\",-3.00,-23.00,0.00,\"\",0.00,177.00,139.00,1069.00,,,,,,\n2015,5,1,\"B6\",\"302\",\"FLL\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,156.00,130.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"302\",\"FLL\",\"JFK\",-17.00,-33.00,0.00,\"\",0.00,158.00,136.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"302\",\"FLL\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,169.00,145.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"302\",\"FLL\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,159.00,140.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"302\",\"FLL\",\"JFK\",5.00,-17.00,0.00,\"\",0.00,152.00,130.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"302\",\"FLL\",\"JFK\",3.00,2.00,0.00,\"\",0.00,173.00,140.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"302\",\"FLL\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,161.00,142.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"302\",\"FLL\",\"JFK\",88.00,84.00,0.00,\"\",0.00,170.00,146.00,1069.00,0.00,0.00,84.00,0.00,0.00,\n2015,5,9,\"B6\",\"302\",\"FLL\",\"JFK\",27.00,25.00,0.00,\"\",0.00,172.00,149.00,1069.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,10,\"B6\",\"302\",\"FLL\",\"JFK\",71.00,61.00,0.00,\"\",0.00,164.00,146.00,1069.00,0.00,0.00,48.00,0.00,13.00,\n2015,5,11,\"B6\",\"302\",\"FLL\",\"JFK\",43.00,33.00,0.00,\"\",0.00,164.00,141.00,1069.00,0.00,0.00,29.00,0.00,4.00,\n2015,5,12,\"B6\",\"302\",\"FLL\",\"JFK\",,,1.00,\"A\",0.00,,,1069.00,,,,,,\n2015,5,13,\"B6\",\"302\",\"FLL\",\"JFK\",-6.00,6.00,0.00,\"\",0.00,186.00,170.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"302\",\"FLL\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,161.00,143.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"302\",\"FLL\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,156.00,141.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"302\",\"FLL\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,168.00,152.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"302\",\"FLL\",\"JFK\",42.00,33.00,0.00,\"\",0.00,165.00,138.00,1069.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"302\",\"FLL\",\"JFK\",129.00,150.00,0.00,\"\",0.00,195.00,180.00,1069.00,0.00,0.00,42.00,0.00,108.00,\n2015,5,19,\"B6\",\"302\",\"FLL\",\"JFK\",-5.00,12.00,0.00,\"\",0.00,191.00,170.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"302\",\"FLL\",\"JFK\",21.00,19.00,0.00,\"\",0.00,172.00,139.00,1069.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,21,\"B6\",\"302\",\"FLL\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,167.00,141.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"302\",\"FLL\",\"JFK\",108.00,84.00,0.00,\"\",0.00,150.00,136.00,1069.00,0.00,0.00,0.00,0.00,84.00,\n2015,5,23,\"B6\",\"302\",\"FLL\",\"JFK\",74.00,66.00,0.00,\"\",0.00,166.00,148.00,1069.00,66.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"B6\",\"302\",\"FLL\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,159.00,143.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"302\",\"FLL\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,163.00,137.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"302\",\"FLL\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,156.00,138.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"302\",\"FLL\",\"JFK\",,,1.00,\"C\",0.00,,,1069.00,,,,,,\n2015,5,28,\"B6\",\"302\",\"FLL\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,168.00,142.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"302\",\"FLL\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,158.00,142.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"302\",\"FLL\",\"JFK\",-10.00,-10.00,0.00,\"\",0.00,174.00,155.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"302\",\"FLL\",\"JFK\",36.00,32.00,0.00,\"\",0.00,170.00,149.00,1069.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,1,\"B6\",\"307\",\"PWM\",\"JFK\",-11.00,-26.00,0.00,\"\",0.00,74.00,47.00,273.00,,,,,,\n2015,5,2,\"B6\",\"307\",\"PWM\",\"JFK\",-19.00,-42.00,0.00,\"\",0.00,66.00,47.00,273.00,,,,,,\n2015,5,3,\"B6\",\"307\",\"PWM\",\"JFK\",-4.00,-29.00,0.00,\"\",0.00,64.00,51.00,273.00,,,,,,\n2015,5,4,\"B6\",\"307\",\"PWM\",\"JFK\",11.00,-10.00,0.00,\"\",0.00,68.00,50.00,273.00,,,,,,\n2015,5,5,\"B6\",\"307\",\"PWM\",\"JFK\",-11.00,-29.00,0.00,\"\",0.00,71.00,57.00,273.00,,,,,,\n2015,5,6,\"B6\",\"307\",\"PWM\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,85.00,51.00,273.00,,,,,,\n2015,5,7,\"B6\",\"307\",\"PWM\",\"JFK\",-6.00,-31.00,0.00,\"\",0.00,64.00,47.00,273.00,,,,,,\n2015,5,8,\"B6\",\"307\",\"PWM\",\"JFK\",12.00,7.00,0.00,\"\",0.00,84.00,49.00,273.00,,,,,,\n2015,5,9,\"B6\",\"307\",\"PWM\",\"JFK\",-11.00,-19.00,0.00,\"\",0.00,81.00,66.00,273.00,,,,,,\n2015,5,10,\"B6\",\"307\",\"PWM\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,80.00,53.00,273.00,,,,,,\n2015,5,11,\"B6\",\"307\",\"PWM\",\"JFK\",-12.00,-4.00,0.00,\"\",0.00,97.00,67.00,273.00,,,,,,\n2015,5,12,\"B6\",\"307\",\"PWM\",\"JFK\",,,1.00,\"C\",0.00,,,273.00,,,,,,\n2015,5,13,\"B6\",\"307\",\"PWM\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,70.00,49.00,273.00,,,,,,\n2015,5,14,\"B6\",\"307\",\"PWM\",\"JFK\",-14.00,-35.00,0.00,\"\",0.00,68.00,47.00,273.00,,,,,,\n2015,5,15,\"B6\",\"307\",\"PWM\",\"JFK\",-7.00,-12.00,0.00,\"\",0.00,84.00,52.00,273.00,,,,,,\n2015,5,16,\"B6\",\"307\",\"PWM\",\"JFK\",-9.00,-31.00,0.00,\"\",0.00,67.00,51.00,273.00,,,,,,\n2015,5,17,\"B6\",\"307\",\"PWM\",\"JFK\",16.00,0.00,0.00,\"\",0.00,73.00,55.00,273.00,,,,,,\n2015,5,18,\"B6\",\"307\",\"PWM\",\"JFK\",91.00,83.00,0.00,\"\",0.00,81.00,58.00,273.00,0.00,0.00,75.00,0.00,8.00,\n2015,5,19,\"B6\",\"307\",\"PWM\",\"JFK\",-8.00,-31.00,0.00,\"\",0.00,66.00,51.00,273.00,,,,,,\n2015,5,20,\"B6\",\"307\",\"PWM\",\"JFK\",-13.00,-35.00,0.00,\"\",0.00,67.00,51.00,273.00,,,,,,\n2015,5,21,\"B6\",\"307\",\"PWM\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,77.00,64.00,273.00,,,,,,\n2015,5,22,\"B6\",\"307\",\"PWM\",\"JFK\",248.00,233.00,0.00,\"\",0.00,74.00,57.00,273.00,224.00,0.00,0.00,0.00,9.00,\n2015,5,23,\"B6\",\"307\",\"PWM\",\"JFK\",57.00,37.00,0.00,\"\",0.00,69.00,49.00,273.00,1.00,0.00,0.00,0.00,36.00,\n2015,5,24,\"B6\",\"307\",\"PWM\",\"JFK\",24.00,12.00,0.00,\"\",0.00,77.00,56.00,273.00,,,,,,\n2015,5,25,\"B6\",\"307\",\"PWM\",\"JFK\",-11.00,-35.00,0.00,\"\",0.00,65.00,48.00,273.00,,,,,,\n2015,5,26,\"B6\",\"307\",\"PWM\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,69.00,51.00,273.00,,,,,,\n2015,5,27,\"B6\",\"307\",\"PWM\",\"JFK\",259.00,235.00,0.00,\"\",0.00,65.00,50.00,273.00,181.00,0.00,54.00,0.00,0.00,\n2015,5,28,\"B6\",\"307\",\"PWM\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,79.00,52.00,273.00,,,,,,\n2015,5,29,\"B6\",\"307\",\"PWM\",\"JFK\",-13.00,-34.00,0.00,\"\",0.00,68.00,47.00,273.00,,,,,,\n2015,5,30,\"B6\",\"307\",\"PWM\",\"JFK\",-10.00,-34.00,0.00,\"\",0.00,65.00,49.00,273.00,,,,,,\n2015,5,31,\"B6\",\"307\",\"PWM\",\"JFK\",,,1.00,\"C\",0.00,,,273.00,,,,,,\n2015,5,1,\"B6\",\"308\",\"JFK\",\"PWM\",-1.00,-13.00,0.00,\"\",0.00,69.00,48.00,273.00,,,,,,\n2015,5,2,\"B6\",\"308\",\"JFK\",\"PWM\",-6.00,-18.00,0.00,\"\",0.00,69.00,46.00,273.00,,,,,,\n2015,5,3,\"B6\",\"308\",\"JFK\",\"PWM\",-5.00,-3.00,0.00,\"\",0.00,83.00,47.00,273.00,,,,,,\n2015,5,4,\"B6\",\"308\",\"JFK\",\"PWM\",-1.00,-12.00,0.00,\"\",0.00,70.00,42.00,273.00,,,,,,\n2015,5,5,\"B6\",\"308\",\"JFK\",\"PWM\",-2.00,-9.00,0.00,\"\",0.00,74.00,47.00,273.00,,,,,,\n2015,5,6,\"B6\",\"308\",\"JFK\",\"PWM\",-3.00,-22.00,0.00,\"\",0.00,62.00,50.00,273.00,,,,,,\n2015,5,7,\"B6\",\"308\",\"JFK\",\"PWM\",-15.00,-31.00,0.00,\"\",0.00,65.00,44.00,273.00,,,,,,\n2015,5,8,\"B6\",\"308\",\"JFK\",\"PWM\",33.00,19.00,0.00,\"\",0.00,67.00,48.00,273.00,5.00,0.00,0.00,0.00,14.00,\n2015,5,9,\"B6\",\"308\",\"JFK\",\"PWM\",-5.00,-15.00,0.00,\"\",0.00,71.00,47.00,273.00,,,,,,\n2015,5,10,\"B6\",\"308\",\"JFK\",\"PWM\",-7.00,-23.00,0.00,\"\",0.00,65.00,42.00,273.00,,,,,,\n2015,5,11,\"B6\",\"308\",\"JFK\",\"PWM\",-10.00,-32.00,0.00,\"\",0.00,59.00,45.00,273.00,,,,,,\n2015,5,12,\"B6\",\"308\",\"JFK\",\"PWM\",,,1.00,\"C\",0.00,,,273.00,,,,,,\n2015,5,13,\"B6\",\"308\",\"JFK\",\"PWM\",-2.00,-7.00,0.00,\"\",0.00,76.00,52.00,273.00,,,,,,\n2015,5,14,\"B6\",\"308\",\"JFK\",\"PWM\",-9.00,-20.00,0.00,\"\",0.00,70.00,52.00,273.00,,,,,,\n2015,5,15,\"B6\",\"308\",\"JFK\",\"PWM\",0.00,-11.00,0.00,\"\",0.00,70.00,45.00,273.00,,,,,,\n2015,5,16,\"B6\",\"308\",\"JFK\",\"PWM\",-3.00,-16.00,0.00,\"\",0.00,68.00,45.00,273.00,,,,,,\n2015,5,17,\"B6\",\"308\",\"JFK\",\"PWM\",30.00,20.00,0.00,\"\",0.00,71.00,44.00,273.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"308\",\"JFK\",\"PWM\",29.00,18.00,0.00,\"\",0.00,70.00,46.00,273.00,10.00,0.00,0.00,0.00,8.00,\n2015,5,19,\"B6\",\"308\",\"JFK\",\"PWM\",-7.00,-29.00,0.00,\"\",0.00,59.00,44.00,273.00,,,,,,\n2015,5,20,\"B6\",\"308\",\"JFK\",\"PWM\",8.00,-9.00,0.00,\"\",0.00,64.00,47.00,273.00,,,,,,\n2015,5,21,\"B6\",\"308\",\"JFK\",\"PWM\",-10.00,-27.00,0.00,\"\",0.00,64.00,44.00,273.00,,,,,,\n2015,5,22,\"B6\",\"308\",\"JFK\",\"PWM\",260.00,247.00,0.00,\"\",0.00,68.00,49.00,273.00,247.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"308\",\"JFK\",\"PWM\",68.00,64.00,0.00,\"\",0.00,77.00,47.00,273.00,3.00,0.00,0.00,0.00,61.00,\n2015,5,24,\"B6\",\"308\",\"JFK\",\"PWM\",34.00,30.00,0.00,\"\",0.00,77.00,49.00,273.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"B6\",\"308\",\"JFK\",\"PWM\",-4.00,-13.00,0.00,\"\",0.00,72.00,48.00,273.00,,,,,,\n2015,5,26,\"B6\",\"308\",\"JFK\",\"PWM\",-8.00,-21.00,0.00,\"\",0.00,68.00,47.00,273.00,,,,,,\n2015,5,27,\"B6\",\"308\",\"JFK\",\"PWM\",-2.00,-17.00,0.00,\"\",0.00,66.00,42.00,273.00,,,,,,\n2015,5,28,\"B6\",\"308\",\"JFK\",\"PWM\",15.00,-1.00,0.00,\"\",0.00,65.00,42.00,273.00,,,,,,\n2015,5,29,\"B6\",\"308\",\"JFK\",\"PWM\",-5.00,-18.00,0.00,\"\",0.00,68.00,47.00,273.00,,,,,,\n2015,5,30,\"B6\",\"308\",\"JFK\",\"PWM\",-6.00,-28.00,0.00,\"\",0.00,59.00,41.00,273.00,,,,,,\n2015,5,31,\"B6\",\"308\",\"JFK\",\"PWM\",-5.00,-14.00,0.00,\"\",0.00,72.00,51.00,273.00,,,,,,\n2015,5,10,\"B6\",\"453\",\"JFK\",\"PBI\",-10.00,-13.00,0.00,\"\",0.00,167.00,139.00,1028.00,,,,,,\n2015,5,11,\"B6\",\"453\",\"JFK\",\"PBI\",-10.00,-24.00,0.00,\"\",0.00,156.00,141.00,1028.00,,,,,,\n2015,5,12,\"B6\",\"453\",\"JFK\",\"PBI\",-7.00,-22.00,0.00,\"\",0.00,155.00,135.00,1028.00,,,,,,\n2015,5,13,\"B6\",\"453\",\"JFK\",\"PBI\",-9.00,-24.00,0.00,\"\",0.00,155.00,143.00,1028.00,,,,,,\n2015,5,14,\"B6\",\"453\",\"JFK\",\"PBI\",-9.00,-27.00,0.00,\"\",0.00,152.00,131.00,1028.00,,,,,,\n2015,5,15,\"B6\",\"453\",\"JFK\",\"PBI\",-8.00,-22.00,0.00,\"\",0.00,156.00,138.00,1028.00,,,,,,\n2015,5,16,\"B6\",\"453\",\"JFK\",\"PBI\",-5.00,-25.00,0.00,\"\",0.00,150.00,131.00,1028.00,,,,,,\n2015,5,17,\"B6\",\"453\",\"JFK\",\"PBI\",-1.00,-16.00,0.00,\"\",0.00,155.00,135.00,1028.00,,,,,,\n2015,5,18,\"B6\",\"453\",\"JFK\",\"PBI\",3.00,-14.00,0.00,\"\",0.00,153.00,134.00,1028.00,,,,,,\n2015,5,19,\"B6\",\"453\",\"JFK\",\"PBI\",-7.00,-11.00,0.00,\"\",0.00,166.00,133.00,1028.00,,,,,,\n2015,5,20,\"B6\",\"453\",\"JFK\",\"PBI\",-10.00,-31.00,0.00,\"\",0.00,149.00,130.00,1028.00,,,,,,\n2015,5,21,\"B6\",\"453\",\"JFK\",\"PBI\",-3.00,-6.00,0.00,\"\",0.00,167.00,148.00,1028.00,,,,,,\n2015,5,22,\"B6\",\"453\",\"JFK\",\"PBI\",-1.00,-15.00,0.00,\"\",0.00,156.00,140.00,1028.00,,,,,,\n2015,5,23,\"B6\",\"453\",\"JFK\",\"PBI\",-5.00,-16.00,0.00,\"\",0.00,159.00,144.00,1028.00,,,,,,\n2015,5,24,\"B6\",\"453\",\"JFK\",\"PBI\",-7.00,-31.00,0.00,\"\",0.00,146.00,131.00,1028.00,,,,,,\n2015,5,25,\"B6\",\"453\",\"JFK\",\"PBI\",-10.00,-25.00,0.00,\"\",0.00,155.00,134.00,1028.00,,,,,,\n2015,5,26,\"B6\",\"453\",\"JFK\",\"PBI\",-6.00,-19.00,0.00,\"\",0.00,157.00,134.00,1028.00,,,,,,\n2015,5,27,\"B6\",\"453\",\"JFK\",\"PBI\",-3.00,-14.00,0.00,\"\",0.00,159.00,136.00,1028.00,,,,,,\n2015,5,28,\"B6\",\"453\",\"JFK\",\"PBI\",-4.00,-20.00,0.00,\"\",0.00,154.00,138.00,1028.00,,,,,,\n2015,5,29,\"B6\",\"453\",\"JFK\",\"PBI\",-7.00,-27.00,0.00,\"\",0.00,150.00,130.00,1028.00,,,,,,\n2015,5,30,\"B6\",\"453\",\"JFK\",\"PBI\",-10.00,-21.00,0.00,\"\",0.00,159.00,134.00,1028.00,,,,,,\n2015,5,31,\"B6\",\"453\",\"JFK\",\"PBI\",-3.00,-15.00,0.00,\"\",0.00,158.00,135.00,1028.00,,,,,,\n2015,5,1,\"B6\",\"454\",\"PBI\",\"JFK\",17.00,-6.00,0.00,\"\",0.00,145.00,128.00,1028.00,,,,,,\n2015,5,2,\"B6\",\"454\",\"PBI\",\"JFK\",-8.00,-4.00,0.00,\"\",0.00,172.00,134.00,1028.00,,,,,,\n2015,5,3,\"B6\",\"454\",\"PBI\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,158.00,139.00,1028.00,,,,,,\n2015,5,4,\"B6\",\"454\",\"PBI\",\"JFK\",30.00,10.00,0.00,\"\",0.00,148.00,135.00,1028.00,,,,,,\n2015,5,5,\"B6\",\"454\",\"PBI\",\"JFK\",19.00,-5.00,0.00,\"\",0.00,144.00,127.00,1028.00,,,,,,\n2015,5,6,\"B6\",\"454\",\"PBI\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,151.00,131.00,1028.00,,,,,,\n2015,5,7,\"B6\",\"454\",\"PBI\",\"JFK\",5.00,-10.00,0.00,\"\",0.00,153.00,139.00,1028.00,,,,,,\n2015,5,8,\"B6\",\"454\",\"PBI\",\"JFK\",70.00,70.00,0.00,\"\",0.00,168.00,137.00,1028.00,0.00,0.00,70.00,0.00,0.00,\n2015,5,9,\"B6\",\"454\",\"PBI\",\"JFK\",24.00,33.00,0.00,\"\",0.00,177.00,152.00,1028.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,10,\"B6\",\"454\",\"PBI\",\"JFK\",76.00,66.00,0.00,\"\",0.00,158.00,142.00,1028.00,9.00,0.00,0.00,0.00,57.00,\n2015,5,11,\"B6\",\"454\",\"PBI\",\"JFK\",69.00,59.00,0.00,\"\",0.00,158.00,138.00,1028.00,45.00,0.00,0.00,0.00,14.00,\n2015,5,12,\"B6\",\"454\",\"PBI\",\"JFK\",8.00,-12.00,0.00,\"\",0.00,148.00,133.00,1028.00,,,,,,\n2015,5,13,\"B6\",\"454\",\"PBI\",\"JFK\",2.00,11.00,0.00,\"\",0.00,177.00,162.00,1028.00,,,,,,\n2015,5,14,\"B6\",\"454\",\"PBI\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,158.00,140.00,1028.00,,,,,,\n2015,5,15,\"B6\",\"454\",\"PBI\",\"JFK\",12.00,10.00,0.00,\"\",0.00,166.00,150.00,1028.00,,,,,,\n2015,5,16,\"B6\",\"454\",\"PBI\",\"JFK\",-11.00,-23.00,0.00,\"\",0.00,156.00,143.00,1028.00,,,,,,\n2015,5,17,\"B6\",\"454\",\"PBI\",\"JFK\",130.00,130.00,0.00,\"\",0.00,168.00,137.00,1028.00,13.00,0.00,0.00,0.00,117.00,\n2015,5,18,\"B6\",\"454\",\"PBI\",\"JFK\",18.00,13.00,0.00,\"\",0.00,163.00,148.00,1028.00,,,,,,\n2015,5,19,\"B6\",\"454\",\"PBI\",\"JFK\",150.00,135.00,0.00,\"\",0.00,153.00,133.00,1028.00,0.00,0.00,0.00,0.00,135.00,\n2015,5,20,\"B6\",\"454\",\"PBI\",\"JFK\",39.00,27.00,0.00,\"\",0.00,156.00,136.00,1028.00,0.00,0.00,4.00,0.00,23.00,\n2015,5,21,\"B6\",\"454\",\"PBI\",\"JFK\",27.00,8.00,0.00,\"\",0.00,149.00,135.00,1028.00,,,,,,\n2015,5,22,\"B6\",\"454\",\"PBI\",\"JFK\",24.00,33.00,0.00,\"\",0.00,177.00,136.00,1028.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,23,\"B6\",\"454\",\"PBI\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,159.00,142.00,1028.00,,,,,,\n2015,5,24,\"B6\",\"454\",\"PBI\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,150.00,135.00,1028.00,,,,,,\n2015,5,25,\"B6\",\"454\",\"PBI\",\"JFK\",55.00,25.00,0.00,\"\",0.00,138.00,126.00,1028.00,11.00,0.00,0.00,0.00,14.00,\n2015,5,26,\"B6\",\"454\",\"PBI\",\"JFK\",-4.00,12.00,0.00,\"\",0.00,184.00,130.00,1028.00,,,,,,\n2015,5,27,\"B6\",\"454\",\"PBI\",\"JFK\",,,1.00,\"C\",0.00,,,1028.00,,,,,,\n2015,5,28,\"B6\",\"454\",\"PBI\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,151.00,137.00,1028.00,,,,,,\n2015,5,29,\"B6\",\"454\",\"PBI\",\"JFK\",5.00,-10.00,0.00,\"\",0.00,153.00,137.00,1028.00,,,,,,\n2015,5,30,\"B6\",\"454\",\"PBI\",\"JFK\",12.00,-3.00,0.00,\"\",0.00,153.00,137.00,1028.00,,,,,,\n2015,5,31,\"B6\",\"454\",\"PBI\",\"JFK\",177.00,191.00,0.00,\"\",0.00,182.00,168.00,1028.00,0.00,0.00,108.00,0.00,83.00,\n2015,5,1,\"B6\",\"461\",\"LGA\",\"PBI\",-6.00,-1.00,0.00,\"\",0.00,175.00,150.00,1035.00,,,,,,\n2015,5,2,\"B6\",\"461\",\"LGA\",\"PBI\",-10.00,-22.00,0.00,\"\",0.00,158.00,138.00,1035.00,,,,,,\n2015,5,3,\"B6\",\"461\",\"LGA\",\"PBI\",-16.00,-21.00,0.00,\"\",0.00,165.00,143.00,1035.00,,,,,,\n2015,5,4,\"B6\",\"461\",\"LGA\",\"PBI\",-10.00,-8.00,0.00,\"\",0.00,172.00,144.00,1035.00,,,,,,\n2015,5,5,\"B6\",\"461\",\"LGA\",\"PBI\",-11.00,-16.00,0.00,\"\",0.00,165.00,146.00,1035.00,,,,,,\n2015,5,6,\"B6\",\"461\",\"LGA\",\"PBI\",-6.00,-5.00,0.00,\"\",0.00,171.00,143.00,1035.00,,,,,,\n2015,5,7,\"B6\",\"461\",\"LGA\",\"PBI\",-3.00,-9.00,0.00,\"\",0.00,164.00,141.00,1035.00,,,,,,\n2015,5,8,\"B6\",\"461\",\"LGA\",\"PBI\",3.00,9.00,0.00,\"\",0.00,176.00,139.00,1035.00,,,,,,\n2015,5,9,\"B6\",\"461\",\"LGA\",\"PBI\",22.00,11.00,0.00,\"\",0.00,159.00,134.00,1035.00,,,,,,\n2015,5,10,\"B6\",\"461\",\"LGA\",\"PBI\",0.00,-11.00,0.00,\"\",0.00,159.00,144.00,1035.00,,,,,,\n2015,5,11,\"B6\",\"461\",\"LGA\",\"PBI\",1.00,-2.00,0.00,\"\",0.00,167.00,146.00,1035.00,,,,,,\n2015,5,12,\"B6\",\"461\",\"LGA\",\"PBI\",-10.00,-23.00,0.00,\"\",0.00,157.00,134.00,1035.00,,,,,,\n2015,5,13,\"B6\",\"461\",\"LGA\",\"PBI\",-1.00,-10.00,0.00,\"\",0.00,161.00,144.00,1035.00,,,,,,\n2015,5,14,\"B6\",\"461\",\"LGA\",\"PBI\",-2.00,-16.00,0.00,\"\",0.00,156.00,131.00,1035.00,,,,,,\n2015,5,15,\"B6\",\"461\",\"LGA\",\"PBI\",-5.00,-22.00,0.00,\"\",0.00,153.00,139.00,1035.00,,,,,,\n2015,5,16,\"B6\",\"461\",\"LGA\",\"PBI\",-5.00,-25.00,0.00,\"\",0.00,150.00,133.00,1035.00,,,,,,\n2015,5,17,\"B6\",\"461\",\"LGA\",\"PBI\",-6.00,-23.00,0.00,\"\",0.00,153.00,139.00,1035.00,,,,,,\n2015,5,18,\"B6\",\"461\",\"LGA\",\"PBI\",-1.00,-6.00,0.00,\"\",0.00,165.00,136.00,1035.00,,,,,,\n2015,5,19,\"B6\",\"461\",\"LGA\",\"PBI\",1.00,-1.00,0.00,\"\",0.00,168.00,139.00,1035.00,,,,,,\n2015,5,20,\"B6\",\"461\",\"LGA\",\"PBI\",-5.00,-18.00,0.00,\"\",0.00,157.00,131.00,1035.00,,,,,,\n2015,5,21,\"B6\",\"461\",\"LGA\",\"PBI\",-5.00,-18.00,0.00,\"\",0.00,157.00,139.00,1035.00,,,,,,\n2015,5,22,\"B6\",\"461\",\"LGA\",\"PBI\",-6.00,-8.00,0.00,\"\",0.00,168.00,142.00,1035.00,,,,,,\n2015,5,23,\"B6\",\"461\",\"LGA\",\"PBI\",-3.00,-18.00,0.00,\"\",0.00,155.00,135.00,1035.00,,,,,,\n2015,5,24,\"B6\",\"461\",\"LGA\",\"PBI\",19.00,-4.00,0.00,\"\",0.00,147.00,130.00,1035.00,,,,,,\n2015,5,25,\"B6\",\"461\",\"LGA\",\"PBI\",-11.00,-23.00,0.00,\"\",0.00,158.00,137.00,1035.00,,,,,,\n2015,5,26,\"B6\",\"461\",\"LGA\",\"PBI\",-6.00,-19.00,0.00,\"\",0.00,157.00,138.00,1035.00,,,,,,\n2015,5,27,\"B6\",\"461\",\"LGA\",\"PBI\",6.00,-4.00,0.00,\"\",0.00,160.00,142.00,1035.00,,,,,,\n2015,5,28,\"B6\",\"461\",\"LGA\",\"PBI\",0.00,-13.00,0.00,\"\",0.00,157.00,138.00,1035.00,,,,,,\n2015,5,29,\"B6\",\"461\",\"LGA\",\"PBI\",-12.00,-22.00,0.00,\"\",0.00,160.00,133.00,1035.00,,,,,,\n2015,5,30,\"B6\",\"461\",\"LGA\",\"PBI\",-9.00,-24.00,0.00,\"\",0.00,155.00,133.00,1035.00,,,,,,\n2015,5,31,\"B6\",\"461\",\"LGA\",\"PBI\",-11.00,-33.00,0.00,\"\",0.00,148.00,133.00,1035.00,,,,,,\n2015,5,1,\"B6\",\"464\",\"SEA\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,310.00,294.00,2422.00,,,,,,\n2015,5,3,\"B6\",\"464\",\"SEA\",\"JFK\",17.00,2.00,0.00,\"\",0.00,312.00,282.00,2422.00,,,,,,\n2015,5,4,\"B6\",\"464\",\"SEA\",\"JFK\",9.00,13.00,0.00,\"\",0.00,331.00,305.00,2422.00,,,,,,\n2015,5,5,\"B6\",\"464\",\"SEA\",\"JFK\",13.00,-2.00,0.00,\"\",0.00,312.00,287.00,2422.00,,,,,,\n2015,5,6,\"B6\",\"464\",\"SEA\",\"JFK\",32.00,29.00,0.00,\"\",0.00,324.00,304.00,2422.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"B6\",\"464\",\"SEA\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,323.00,304.00,2422.00,,,,,,\n2015,5,8,\"B6\",\"464\",\"SEA\",\"JFK\",-4.00,37.00,0.00,\"\",0.00,368.00,315.00,2422.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,10,\"B6\",\"464\",\"SEA\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,319.00,303.00,2422.00,,,,,,\n2015,5,11,\"B6\",\"464\",\"SEA\",\"JFK\",116.00,116.00,0.00,\"\",0.00,327.00,282.00,2422.00,0.00,0.00,116.00,0.00,0.00,\n2015,5,12,\"B6\",\"464\",\"SEA\",\"JFK\",17.00,-27.00,0.00,\"\",0.00,283.00,266.00,2422.00,,,,,,\n2015,5,13,\"B6\",\"464\",\"SEA\",\"JFK\",12.00,-11.00,0.00,\"\",0.00,304.00,282.00,2422.00,,,,,,\n2015,5,14,\"B6\",\"464\",\"SEA\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,306.00,290.00,2422.00,,,,,,\n2015,5,15,\"B6\",\"464\",\"SEA\",\"JFK\",-5.00,15.00,0.00,\"\",0.00,347.00,315.00,2422.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,17,\"B6\",\"464\",\"SEA\",\"JFK\",-3.00,22.00,0.00,\"\",0.00,352.00,324.00,2422.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,18,\"B6\",\"464\",\"SEA\",\"JFK\",134.00,140.00,0.00,\"\",0.00,333.00,320.00,2422.00,0.00,0.00,137.00,0.00,3.00,\n2015,5,19,\"B6\",\"464\",\"SEA\",\"JFK\",12.00,-12.00,0.00,\"\",0.00,303.00,283.00,2422.00,,,,,,\n2015,5,20,\"B6\",\"464\",\"SEA\",\"JFK\",0.00,-36.00,0.00,\"\",0.00,291.00,277.00,2422.00,,,,,,\n2015,5,21,\"B6\",\"464\",\"SEA\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,312.00,294.00,2422.00,,,,,,\n2015,5,22,\"B6\",\"464\",\"SEA\",\"JFK\",14.00,-14.00,0.00,\"\",0.00,299.00,277.00,2422.00,,,,,,\n2015,5,24,\"B6\",\"464\",\"SEA\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,312.00,290.00,2422.00,,,,,,\n2015,5,25,\"B6\",\"464\",\"SEA\",\"JFK\",-10.00,-27.00,0.00,\"\",0.00,310.00,292.00,2422.00,,,,,,\n2015,5,26,\"B6\",\"464\",\"SEA\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,322.00,303.00,2422.00,,,,,,\n2015,5,27,\"B6\",\"464\",\"SEA\",\"JFK\",183.00,175.00,0.00,\"\",0.00,319.00,298.00,2422.00,0.00,0.00,175.00,0.00,0.00,\n2015,5,28,\"B6\",\"464\",\"SEA\",\"JFK\",126.00,116.00,0.00,\"\",0.00,317.00,301.00,2422.00,116.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"B6\",\"464\",\"SEA\",\"JFK\",31.00,7.00,0.00,\"\",0.00,303.00,285.00,2422.00,,,,,,\n2015,5,31,\"B6\",\"464\",\"SEA\",\"JFK\",138.00,111.00,0.00,\"\",0.00,300.00,286.00,2422.00,0.00,111.00,0.00,0.00,0.00,\n2015,5,1,\"B6\",\"477\",\"JFK\",\"JAX\",8.00,-11.00,0.00,\"\",0.00,146.00,118.00,828.00,,,,,,\n2015,5,2,\"B6\",\"477\",\"JFK\",\"JAX\",6.00,-12.00,0.00,\"\",0.00,147.00,113.00,828.00,,,,,,\n2015,5,3,\"B6\",\"477\",\"JFK\",\"JAX\",23.00,9.00,0.00,\"\",0.00,151.00,114.00,828.00,,,,,,\n2015,5,4,\"B6\",\"477\",\"JFK\",\"JAX\",-5.00,-33.00,0.00,\"\",0.00,137.00,113.00,828.00,,,,,,\n2015,5,5,\"B6\",\"477\",\"JFK\",\"JAX\",-6.00,-29.00,0.00,\"\",0.00,142.00,117.00,828.00,,,,,,\n2015,5,6,\"B6\",\"477\",\"JFK\",\"JAX\",19.00,4.00,0.00,\"\",0.00,150.00,120.00,828.00,,,,,,\n2015,5,7,\"B6\",\"477\",\"JFK\",\"JAX\",4.00,-23.00,0.00,\"\",0.00,138.00,108.00,828.00,,,,,,\n2015,5,8,\"B6\",\"477\",\"JFK\",\"JAX\",22.00,23.00,0.00,\"\",0.00,166.00,108.00,828.00,11.00,0.00,1.00,0.00,11.00,\n2015,5,9,\"B6\",\"477\",\"JFK\",\"JAX\",20.00,1.00,0.00,\"\",0.00,146.00,112.00,828.00,,,,,,\n2015,5,10,\"B6\",\"477\",\"JFK\",\"JAX\",-3.00,-29.00,0.00,\"\",0.00,139.00,115.00,828.00,,,,,,\n2015,5,11,\"B6\",\"477\",\"JFK\",\"JAX\",24.00,33.00,0.00,\"\",0.00,174.00,114.00,828.00,12.00,0.00,9.00,12.00,0.00,\n2015,5,12,\"B6\",\"477\",\"JFK\",\"JAX\",19.00,-10.00,0.00,\"\",0.00,136.00,116.00,828.00,,,,,,\n2015,5,13,\"B6\",\"477\",\"JFK\",\"JAX\",-2.00,-24.00,0.00,\"\",0.00,143.00,116.00,828.00,,,,,,\n2015,5,14,\"B6\",\"477\",\"JFK\",\"JAX\",14.00,-3.00,0.00,\"\",0.00,148.00,114.00,828.00,,,,,,\n2015,5,15,\"B6\",\"477\",\"JFK\",\"JAX\",-2.00,-29.00,0.00,\"\",0.00,138.00,115.00,828.00,,,,,,\n2015,5,16,\"B6\",\"477\",\"JFK\",\"JAX\",128.00,103.00,0.00,\"\",0.00,140.00,111.00,828.00,0.00,0.00,0.00,0.00,103.00,\n2015,5,17,\"B6\",\"477\",\"JFK\",\"JAX\",100.00,93.00,0.00,\"\",0.00,158.00,114.00,828.00,9.00,0.00,0.00,0.00,84.00,\n2015,5,18,\"B6\",\"477\",\"JFK\",\"JAX\",-2.00,-13.00,0.00,\"\",0.00,154.00,113.00,828.00,,,,,,\n2015,5,19,\"B6\",\"477\",\"JFK\",\"JAX\",26.00,25.00,0.00,\"\",0.00,164.00,116.00,828.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"B6\",\"477\",\"JFK\",\"JAX\",-5.00,-28.00,0.00,\"\",0.00,142.00,121.00,828.00,,,,,,\n2015,5,21,\"B6\",\"477\",\"JFK\",\"JAX\",-6.00,-4.00,0.00,\"\",0.00,167.00,131.00,828.00,,,,,,\n2015,5,22,\"B6\",\"477\",\"JFK\",\"JAX\",9.00,-5.00,0.00,\"\",0.00,151.00,126.00,828.00,,,,,,\n2015,5,23,\"B6\",\"477\",\"JFK\",\"JAX\",8.00,-3.00,0.00,\"\",0.00,154.00,114.00,828.00,,,,,,\n2015,5,24,\"B6\",\"477\",\"JFK\",\"JAX\",-6.00,-28.00,0.00,\"\",0.00,143.00,111.00,828.00,,,,,,\n2015,5,25,\"B6\",\"477\",\"JFK\",\"JAX\",-7.00,-31.00,0.00,\"\",0.00,141.00,112.00,828.00,,,,,,\n2015,5,26,\"B6\",\"477\",\"JFK\",\"JAX\",-6.00,-30.00,0.00,\"\",0.00,141.00,112.00,828.00,,,,,,\n2015,5,27,\"B6\",\"477\",\"JFK\",\"JAX\",-8.00,-31.00,0.00,\"\",0.00,142.00,116.00,828.00,,,,,,\n2015,5,28,\"B6\",\"477\",\"JFK\",\"JAX\",-2.00,-29.00,0.00,\"\",0.00,138.00,113.00,828.00,,,,,,\n2015,5,29,\"B6\",\"477\",\"JFK\",\"JAX\",0.00,-28.00,0.00,\"\",0.00,137.00,107.00,828.00,,,,,,\n2015,5,30,\"B6\",\"477\",\"JFK\",\"JAX\",-4.00,-27.00,0.00,\"\",0.00,142.00,106.00,828.00,,,,,,\n2015,5,31,\"B6\",\"477\",\"JFK\",\"JAX\",-10.00,-34.00,0.00,\"\",0.00,141.00,110.00,828.00,,,,,,\n2015,5,1,\"B6\",\"478\",\"JAX\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,127.00,108.00,828.00,,,,,,\n2015,5,2,\"B6\",\"478\",\"JAX\",\"JFK\",0.00,-29.00,0.00,\"\",0.00,122.00,110.00,828.00,,,,,,\n2015,5,3,\"B6\",\"478\",\"JAX\",\"JFK\",4.00,-19.00,0.00,\"\",0.00,128.00,116.00,828.00,,,,,,\n2015,5,4,\"B6\",\"478\",\"JAX\",\"JFK\",-13.00,-40.00,0.00,\"\",0.00,124.00,109.00,828.00,,,,,,\n2015,5,5,\"B6\",\"478\",\"JAX\",\"JFK\",-8.00,-34.00,0.00,\"\",0.00,125.00,102.00,828.00,,,,,,\n2015,5,6,\"B6\",\"478\",\"JAX\",\"JFK\",8.00,-19.00,0.00,\"\",0.00,124.00,109.00,828.00,,,,,,\n2015,5,7,\"B6\",\"478\",\"JAX\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,146.00,122.00,828.00,,,,,,\n2015,5,8,\"B6\",\"478\",\"JAX\",\"JFK\",56.00,42.00,0.00,\"\",0.00,137.00,116.00,828.00,0.00,0.00,35.00,0.00,7.00,\n2015,5,9,\"B6\",\"478\",\"JAX\",\"JFK\",44.00,26.00,0.00,\"\",0.00,133.00,112.00,828.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,10,\"B6\",\"478\",\"JAX\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,136.00,114.00,828.00,,,,,,\n2015,5,11,\"B6\",\"478\",\"JAX\",\"JFK\",121.00,128.00,0.00,\"\",0.00,158.00,141.00,828.00,0.00,0.00,109.00,0.00,19.00,\n2015,5,12,\"B6\",\"478\",\"JAX\",\"JFK\",28.00,12.00,0.00,\"\",0.00,135.00,107.00,828.00,,,,,,\n2015,5,13,\"B6\",\"478\",\"JAX\",\"JFK\",18.00,-3.00,0.00,\"\",0.00,130.00,112.00,828.00,,,,,,\n2015,5,14,\"B6\",\"478\",\"JAX\",\"JFK\",-6.00,-30.00,0.00,\"\",0.00,127.00,112.00,828.00,,,,,,\n2015,5,15,\"B6\",\"478\",\"JAX\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,145.00,111.00,828.00,,,,,,\n2015,5,16,\"B6\",\"478\",\"JAX\",\"JFK\",94.00,114.00,0.00,\"\",0.00,171.00,129.00,828.00,5.00,0.00,20.00,0.00,89.00,\n2015,5,17,\"B6\",\"478\",\"JAX\",\"JFK\",83.00,83.00,0.00,\"\",0.00,151.00,118.00,828.00,0.00,0.00,4.00,0.00,79.00,\n2015,5,18,\"B6\",\"478\",\"JAX\",\"JFK\",81.00,83.00,0.00,\"\",0.00,153.00,131.00,828.00,0.00,0.00,83.00,0.00,0.00,\n2015,5,19,\"B6\",\"478\",\"JAX\",\"JFK\",85.00,82.00,0.00,\"\",0.00,148.00,120.00,828.00,0.00,71.00,0.00,0.00,11.00,\n2015,5,20,\"B6\",\"478\",\"JAX\",\"JFK\",43.00,55.00,0.00,\"\",0.00,163.00,112.00,828.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,21,\"B6\",\"478\",\"JAX\",\"JFK\",0.00,-24.00,0.00,\"\",0.00,127.00,109.00,828.00,,,,,,\n2015,5,22,\"B6\",\"478\",\"JAX\",\"JFK\",32.00,8.00,0.00,\"\",0.00,127.00,103.00,828.00,,,,,,\n2015,5,23,\"B6\",\"478\",\"JAX\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,136.00,115.00,828.00,,,,,,\n2015,5,24,\"B6\",\"478\",\"JAX\",\"JFK\",-8.00,-37.00,0.00,\"\",0.00,122.00,107.00,828.00,,,,,,\n2015,5,25,\"B6\",\"478\",\"JAX\",\"JFK\",-8.00,-36.00,0.00,\"\",0.00,123.00,106.00,828.00,,,,,,\n2015,5,26,\"B6\",\"478\",\"JAX\",\"JFK\",-5.00,-32.00,0.00,\"\",0.00,124.00,109.00,828.00,,,,,,\n2015,5,27,\"B6\",\"478\",\"JAX\",\"JFK\",,,1.00,\"C\",0.00,,,828.00,,,,,,\n2015,5,28,\"B6\",\"478\",\"JAX\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,140.00,109.00,828.00,,,,,,\n2015,5,29,\"B6\",\"478\",\"JAX\",\"JFK\",3.00,-18.00,0.00,\"\",0.00,130.00,113.00,828.00,,,,,,\n2015,5,30,\"B6\",\"478\",\"JAX\",\"JFK\",-7.00,-2.00,0.00,\"\",0.00,156.00,120.00,828.00,,,,,,\n2015,5,31,\"B6\",\"478\",\"JAX\",\"JFK\",250.00,275.00,0.00,\"\",0.00,176.00,149.00,828.00,0.00,0.00,275.00,0.00,0.00,\n2015,5,1,\"B6\",\"483\",\"JFK\",\"MCO\",-5.00,11.00,0.00,\"\",0.00,187.00,142.00,944.00,,,,,,\n2015,5,2,\"B6\",\"483\",\"JFK\",\"MCO\",-3.00,-22.00,0.00,\"\",0.00,152.00,129.00,944.00,,,,,,\n2015,5,3,\"B6\",\"483\",\"JFK\",\"MCO\",-2.00,7.00,0.00,\"\",0.00,180.00,130.00,944.00,,,,,,\n2015,5,4,\"B6\",\"483\",\"JFK\",\"MCO\",-5.00,-14.00,0.00,\"\",0.00,162.00,129.00,944.00,,,,,,\n2015,5,5,\"B6\",\"483\",\"JFK\",\"MCO\",4.00,-6.00,0.00,\"\",0.00,161.00,138.00,944.00,,,,,,\n2015,5,6,\"B6\",\"483\",\"JFK\",\"MCO\",-5.00,-5.00,0.00,\"\",0.00,171.00,140.00,944.00,,,,,,\n2015,5,7,\"B6\",\"483\",\"JFK\",\"MCO\",-4.00,-26.00,0.00,\"\",0.00,149.00,129.00,944.00,,,,,,\n2015,5,8,\"B6\",\"483\",\"JFK\",\"MCO\",12.00,-10.00,0.00,\"\",0.00,149.00,124.00,944.00,,,,,,\n2015,5,9,\"B6\",\"483\",\"JFK\",\"MCO\",-7.00,-9.00,0.00,\"\",0.00,169.00,120.00,944.00,,,,,,\n2015,5,10,\"B6\",\"483\",\"JFK\",\"MCO\",-2.00,-25.00,0.00,\"\",0.00,148.00,126.00,944.00,,,,,,\n2015,5,11,\"B6\",\"483\",\"JFK\",\"MCO\",6.00,-2.00,0.00,\"\",0.00,163.00,131.00,944.00,,,,,,\n2015,5,12,\"B6\",\"483\",\"JFK\",\"MCO\",3.00,0.00,0.00,\"\",0.00,168.00,129.00,944.00,,,,,,\n2015,5,13,\"B6\",\"483\",\"JFK\",\"MCO\",0.00,14.00,0.00,\"\",0.00,185.00,136.00,944.00,,,,,,\n2015,5,14,\"B6\",\"483\",\"JFK\",\"MCO\",5.00,-10.00,0.00,\"\",0.00,156.00,122.00,944.00,,,,,,\n2015,5,15,\"B6\",\"483\",\"JFK\",\"MCO\",5.00,-1.00,0.00,\"\",0.00,165.00,132.00,944.00,,,,,,\n2015,5,16,\"B6\",\"483\",\"JFK\",\"MCO\",6.00,17.00,0.00,\"\",0.00,182.00,123.00,944.00,6.00,0.00,11.00,0.00,0.00,\n2015,5,17,\"B6\",\"483\",\"JFK\",\"MCO\",31.00,9.00,0.00,\"\",0.00,149.00,127.00,944.00,,,,,,\n2015,5,18,\"B6\",\"483\",\"JFK\",\"MCO\",3.00,1.00,0.00,\"\",0.00,169.00,123.00,944.00,,,,,,\n2015,5,19,\"B6\",\"483\",\"JFK\",\"MCO\",-2.00,-7.00,0.00,\"\",0.00,166.00,129.00,944.00,,,,,,\n2015,5,20,\"B6\",\"483\",\"JFK\",\"MCO\",-2.00,-8.00,0.00,\"\",0.00,165.00,128.00,944.00,,,,,,\n2015,5,21,\"B6\",\"483\",\"JFK\",\"MCO\",-6.00,-10.00,0.00,\"\",0.00,167.00,136.00,944.00,,,,,,\n2015,5,22,\"B6\",\"483\",\"JFK\",\"MCO\",5.00,27.00,0.00,\"\",0.00,193.00,138.00,944.00,5.00,0.00,22.00,0.00,0.00,\n2015,5,23,\"B6\",\"483\",\"JFK\",\"MCO\",0.00,-25.00,0.00,\"\",0.00,146.00,131.00,944.00,,,,,,\n2015,5,24,\"B6\",\"483\",\"JFK\",\"MCO\",-3.00,-33.00,0.00,\"\",0.00,141.00,122.00,944.00,,,,,,\n2015,5,25,\"B6\",\"483\",\"JFK\",\"MCO\",-1.00,-16.00,0.00,\"\",0.00,156.00,127.00,944.00,,,,,,\n2015,5,26,\"B6\",\"483\",\"JFK\",\"MCO\",-2.00,-23.00,0.00,\"\",0.00,150.00,126.00,944.00,,,,,,\n2015,5,27,\"B6\",\"483\",\"JFK\",\"MCO\",-1.00,-13.00,0.00,\"\",0.00,159.00,128.00,944.00,,,,,,\n2015,5,28,\"B6\",\"483\",\"JFK\",\"MCO\",-6.00,-15.00,0.00,\"\",0.00,162.00,127.00,944.00,,,,,,\n2015,5,29,\"B6\",\"483\",\"JFK\",\"MCO\",3.00,-10.00,0.00,\"\",0.00,158.00,123.00,944.00,,,,,,\n2015,5,30,\"B6\",\"483\",\"JFK\",\"MCO\",-1.00,-15.00,0.00,\"\",0.00,157.00,124.00,944.00,,,,,,\n2015,5,31,\"B6\",\"483\",\"JFK\",\"MCO\",0.00,-21.00,0.00,\"\",0.00,150.00,123.00,944.00,,,,,,\n2015,5,1,\"B6\",\"484\",\"MCO\",\"JFK\",-4.00,-32.00,0.00,\"\",0.00,136.00,121.00,944.00,,,,,,\n2015,5,2,\"B6\",\"484\",\"MCO\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,160.00,127.00,944.00,,,,,,\n2015,5,3,\"B6\",\"484\",\"MCO\",\"JFK\",-7.00,-12.00,0.00,\"\",0.00,159.00,132.00,944.00,,,,,,\n2015,5,4,\"B6\",\"484\",\"MCO\",\"JFK\",0.00,13.00,0.00,\"\",0.00,177.00,153.00,944.00,,,,,,\n2015,5,5,\"B6\",\"484\",\"MCO\",\"JFK\",-10.00,-34.00,0.00,\"\",0.00,140.00,118.00,944.00,,,,,,\n2015,5,6,\"B6\",\"484\",\"MCO\",\"JFK\",12.00,-11.00,0.00,\"\",0.00,141.00,124.00,944.00,,,,,,\n2015,5,7,\"B6\",\"484\",\"MCO\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,147.00,127.00,944.00,,,,,,\n2015,5,8,\"B6\",\"484\",\"MCO\",\"JFK\",161.00,144.00,0.00,\"\",0.00,147.00,127.00,944.00,0.00,0.00,3.00,0.00,141.00,\n2015,5,9,\"B6\",\"484\",\"MCO\",\"JFK\",33.00,48.00,0.00,\"\",0.00,179.00,134.00,944.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,10,\"B6\",\"484\",\"MCO\",\"JFK\",33.00,42.00,0.00,\"\",0.00,173.00,131.00,944.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,11,\"B6\",\"484\",\"MCO\",\"JFK\",101.00,95.00,0.00,\"\",0.00,158.00,135.00,944.00,0.00,0.00,95.00,0.00,0.00,\n2015,5,12,\"B6\",\"484\",\"MCO\",\"JFK\",23.00,35.00,0.00,\"\",0.00,176.00,124.00,944.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,13,\"B6\",\"484\",\"MCO\",\"JFK\",16.00,18.00,0.00,\"\",0.00,166.00,150.00,944.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,14,\"B6\",\"484\",\"MCO\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,145.00,123.00,944.00,,,,,,\n2015,5,15,\"B6\",\"484\",\"MCO\",\"JFK\",-6.00,25.00,0.00,\"\",0.00,195.00,133.00,944.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,16,\"B6\",\"484\",\"MCO\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,146.00,133.00,944.00,,,,,,\n2015,5,17,\"B6\",\"484\",\"MCO\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,147.00,131.00,944.00,,,,,,\n2015,5,18,\"B6\",\"484\",\"MCO\",\"JFK\",80.00,88.00,0.00,\"\",0.00,172.00,150.00,944.00,0.00,0.00,66.00,0.00,22.00,\n2015,5,19,\"B6\",\"484\",\"MCO\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,168.00,145.00,944.00,,,,,,\n2015,5,20,\"B6\",\"484\",\"MCO\",\"JFK\",42.00,31.00,0.00,\"\",0.00,153.00,123.00,944.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,21,\"B6\",\"484\",\"MCO\",\"JFK\",9.00,-4.00,0.00,\"\",0.00,151.00,125.00,944.00,,,,,,\n2015,5,22,\"B6\",\"484\",\"MCO\",\"JFK\",46.00,45.00,0.00,\"\",0.00,163.00,123.00,944.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,23,\"B6\",\"484\",\"MCO\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,152.00,132.00,944.00,,,,,,\n2015,5,24,\"B6\",\"484\",\"MCO\",\"JFK\",-7.00,-32.00,0.00,\"\",0.00,139.00,126.00,944.00,,,,,,\n2015,5,25,\"B6\",\"484\",\"MCO\",\"JFK\",-11.00,-26.00,0.00,\"\",0.00,149.00,125.00,944.00,,,,,,\n2015,5,26,\"B6\",\"484\",\"MCO\",\"JFK\",5.00,-9.00,0.00,\"\",0.00,150.00,128.00,944.00,,,,,,\n2015,5,27,\"B6\",\"484\",\"MCO\",\"JFK\",,,1.00,\"C\",0.00,,,944.00,,,,,,\n2015,5,28,\"B6\",\"484\",\"MCO\",\"JFK\",-2.00,-22.00,0.00,\"\",0.00,144.00,131.00,944.00,,,,,,\n2015,5,29,\"B6\",\"484\",\"MCO\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,148.00,131.00,944.00,,,,,,\n2015,5,30,\"B6\",\"484\",\"MCO\",\"JFK\",3.00,-5.00,0.00,\"\",0.00,156.00,136.00,944.00,,,,,,\n2015,5,31,\"B6\",\"484\",\"MCO\",\"JFK\",184.00,201.00,0.00,\"\",0.00,181.00,164.00,944.00,0.00,0.00,122.00,0.00,79.00,\n2015,5,1,\"B6\",\"485\",\"ROC\",\"JFK\",-11.00,-31.00,0.00,\"\",0.00,71.00,55.00,264.00,,,,,,\n2015,5,2,\"B6\",\"485\",\"ROC\",\"JFK\",-10.00,-28.00,0.00,\"\",0.00,73.00,52.00,264.00,,,,,,\n2015,5,3,\"B6\",\"485\",\"ROC\",\"JFK\",52.00,34.00,0.00,\"\",0.00,73.00,60.00,264.00,34.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"485\",\"ROC\",\"JFK\",-12.00,-37.00,0.00,\"\",0.00,66.00,55.00,264.00,,,,,,\n2015,5,5,\"B6\",\"485\",\"ROC\",\"JFK\",-12.00,-27.00,0.00,\"\",0.00,76.00,55.00,264.00,,,,,,\n2015,5,6,\"B6\",\"485\",\"ROC\",\"JFK\",-11.00,-31.00,0.00,\"\",0.00,71.00,53.00,264.00,,,,,,\n2015,5,1,\"B6\",\"408\",\"JFK\",\"PWM\",-3.00,-24.00,0.00,\"\",0.00,73.00,49.00,273.00,,,,,,\n2015,5,2,\"B6\",\"408\",\"JFK\",\"PWM\",-9.00,-30.00,0.00,\"\",0.00,73.00,48.00,273.00,,,,,,\n2015,5,3,\"B6\",\"408\",\"JFK\",\"PWM\",-2.00,,0.00,\"\",1.00,,,273.00,,,,,,\n2015,5,4,\"B6\",\"408\",\"JFK\",\"PWM\",-7.00,-21.00,0.00,\"\",0.00,80.00,43.00,273.00,,,,,,\n2015,5,5,\"B6\",\"408\",\"JFK\",\"PWM\",-7.00,-32.00,0.00,\"\",0.00,69.00,43.00,273.00,,,,,,\n2015,5,6,\"B6\",\"408\",\"JFK\",\"PWM\",-4.00,-22.00,0.00,\"\",0.00,76.00,44.00,273.00,,,,,,\n2015,5,7,\"B6\",\"408\",\"JFK\",\"PWM\",27.00,6.00,0.00,\"\",0.00,73.00,50.00,273.00,,,,,,\n2015,5,8,\"B6\",\"408\",\"JFK\",\"PWM\",-5.00,-7.00,0.00,\"\",0.00,92.00,47.00,273.00,,,,,,\n2015,5,9,\"B6\",\"408\",\"JFK\",\"PWM\",-6.00,-24.00,0.00,\"\",0.00,76.00,46.00,273.00,,,,,,\n2015,5,10,\"B6\",\"408\",\"JFK\",\"PWM\",16.00,-7.00,0.00,\"\",0.00,71.00,43.00,273.00,,,,,,\n2015,5,11,\"B6\",\"408\",\"JFK\",\"PWM\",-1.00,-8.00,0.00,\"\",0.00,87.00,43.00,273.00,,,,,,\n2015,5,12,\"B6\",\"408\",\"JFK\",\"PWM\",35.00,10.00,0.00,\"\",0.00,69.00,47.00,273.00,,,,,,\n2015,5,13,\"B6\",\"408\",\"JFK\",\"PWM\",-7.00,-12.00,0.00,\"\",0.00,89.00,53.00,273.00,,,,,,\n2015,5,14,\"B6\",\"408\",\"JFK\",\"PWM\",-6.00,-14.00,0.00,\"\",0.00,86.00,49.00,273.00,,,,,,\n2015,5,15,\"B6\",\"408\",\"JFK\",\"PWM\",-2.00,-22.00,0.00,\"\",0.00,74.00,47.00,273.00,,,,,,\n2015,5,16,\"B6\",\"408\",\"JFK\",\"PWM\",8.00,-17.00,0.00,\"\",0.00,69.00,46.00,273.00,,,,,,\n2015,5,17,\"B6\",\"408\",\"JFK\",\"PWM\",236.00,247.00,0.00,\"\",0.00,105.00,68.00,273.00,19.00,0.00,11.00,0.00,217.00,\n2015,5,18,\"B6\",\"408\",\"JFK\",\"PWM\",,,1.00,\"C\",0.00,,,273.00,,,,,,\n2015,5,19,\"B6\",\"408\",\"JFK\",\"PWM\",0.00,-13.00,0.00,\"\",0.00,81.00,45.00,273.00,,,,,,\n2015,5,20,\"B6\",\"408\",\"JFK\",\"PWM\",-5.00,-24.00,0.00,\"\",0.00,75.00,47.00,273.00,,,,,,\n2015,5,21,\"B6\",\"408\",\"JFK\",\"PWM\",14.00,-8.00,0.00,\"\",0.00,72.00,42.00,273.00,,,,,,\n2015,5,22,\"B6\",\"408\",\"JFK\",\"PWM\",179.00,187.00,0.00,\"\",0.00,102.00,49.00,273.00,179.00,0.00,8.00,0.00,0.00,\n2015,5,23,\"B6\",\"408\",\"JFK\",\"PWM\",-4.00,-28.00,0.00,\"\",0.00,70.00,48.00,273.00,,,,,,\n2015,5,24,\"B6\",\"408\",\"JFK\",\"PWM\",-8.00,-29.00,0.00,\"\",0.00,73.00,50.00,273.00,,,,,,\n2015,5,25,\"B6\",\"408\",\"JFK\",\"PWM\",-9.00,-17.00,0.00,\"\",0.00,86.00,45.00,273.00,,,,,,\n2015,5,26,\"B6\",\"408\",\"JFK\",\"PWM\",-5.00,-21.00,0.00,\"\",0.00,78.00,48.00,273.00,,,,,,\n2015,5,27,\"B6\",\"408\",\"JFK\",\"PWM\",,,1.00,\"A\",0.00,,,273.00,,,,,,\n2015,5,28,\"B6\",\"408\",\"JFK\",\"PWM\",23.00,10.00,0.00,\"\",0.00,81.00,45.00,273.00,,,,,,\n2015,5,29,\"B6\",\"408\",\"JFK\",\"PWM\",-6.00,-34.00,0.00,\"\",0.00,66.00,46.00,273.00,,,,,,\n2015,5,30,\"B6\",\"408\",\"JFK\",\"PWM\",-2.00,-14.00,0.00,\"\",0.00,82.00,50.00,273.00,,,,,,\n2015,5,31,\"B6\",\"408\",\"JFK\",\"PWM\",,,1.00,\"C\",0.00,,,273.00,,,,,,\n2015,5,1,\"B6\",\"411\",\"JFK\",\"LAS\",-5.00,4.00,0.00,\"\",0.00,348.00,293.00,2248.00,,,,,,\n2015,5,2,\"B6\",\"411\",\"JFK\",\"LAS\",-8.00,-27.00,0.00,\"\",0.00,320.00,290.00,2248.00,,,,,,\n2015,5,3,\"B6\",\"411\",\"JFK\",\"LAS\",-5.00,-2.00,0.00,\"\",0.00,342.00,293.00,2248.00,,,,,,\n2015,5,4,\"B6\",\"411\",\"JFK\",\"LAS\",-5.00,-10.00,0.00,\"\",0.00,334.00,299.00,2248.00,,,,,,\n2015,5,5,\"B6\",\"411\",\"JFK\",\"LAS\",3.00,-31.00,0.00,\"\",0.00,305.00,280.00,2248.00,,,,,,\n2015,5,6,\"B6\",\"411\",\"JFK\",\"LAS\",-8.00,-23.00,0.00,\"\",0.00,324.00,282.00,2248.00,,,,,,\n2015,5,7,\"B6\",\"411\",\"JFK\",\"LAS\",-4.00,-7.00,0.00,\"\",0.00,336.00,299.00,2248.00,,,,,,\n2015,5,8,\"B6\",\"411\",\"JFK\",\"LAS\",14.00,11.00,0.00,\"\",0.00,336.00,303.00,2248.00,,,,,,\n2015,5,9,\"B6\",\"411\",\"JFK\",\"LAS\",-5.00,-12.00,0.00,\"\",0.00,332.00,295.00,2248.00,,,,,,\n2015,5,10,\"B6\",\"411\",\"JFK\",\"LAS\",-4.00,-24.00,0.00,\"\",0.00,319.00,293.00,2248.00,,,,,,\n2015,5,11,\"B6\",\"411\",\"JFK\",\"LAS\",-1.00,1.00,0.00,\"\",0.00,341.00,306.00,2248.00,,,,,,\n2015,5,12,\"B6\",\"411\",\"JFK\",\"LAS\",5.00,-4.00,0.00,\"\",0.00,330.00,311.00,2248.00,,,,,,\n2015,5,13,\"B6\",\"411\",\"JFK\",\"LAS\",-1.00,25.00,0.00,\"\",0.00,365.00,318.00,2248.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,14,\"B6\",\"411\",\"JFK\",\"LAS\",6.00,2.00,0.00,\"\",0.00,335.00,304.00,2248.00,,,,,,\n2015,5,15,\"B6\",\"411\",\"JFK\",\"LAS\",-6.00,31.00,0.00,\"\",0.00,376.00,323.00,2248.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,16,\"B6\",\"411\",\"JFK\",\"LAS\",-2.00,18.00,0.00,\"\",0.00,359.00,294.00,2248.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,17,\"B6\",\"411\",\"JFK\",\"LAS\",-6.00,-11.00,0.00,\"\",0.00,334.00,302.00,2248.00,,,,,,\n2015,5,18,\"B6\",\"411\",\"JFK\",\"LAS\",11.00,17.00,0.00,\"\",0.00,345.00,302.00,2248.00,11.00,0.00,6.00,0.00,0.00,\n2015,5,19,\"B6\",\"411\",\"JFK\",\"LAS\",-5.00,7.00,0.00,\"\",0.00,351.00,313.00,2248.00,,,,,,\n2015,5,20,\"B6\",\"411\",\"JFK\",\"LAS\",26.00,39.00,0.00,\"\",0.00,352.00,314.00,2248.00,26.00,0.00,13.00,0.00,0.00,\n2015,5,21,\"B6\",\"411\",\"JFK\",\"LAS\",-4.00,10.00,0.00,\"\",0.00,353.00,326.00,2248.00,,,,,,\n2015,5,22,\"B6\",\"411\",\"JFK\",\"LAS\",7.00,68.00,0.00,\"\",0.00,400.00,323.00,2248.00,7.00,0.00,61.00,0.00,0.00,\n2015,5,23,\"B6\",\"411\",\"JFK\",\"LAS\",2.00,0.00,0.00,\"\",0.00,337.00,307.00,2248.00,,,,,,\n2015,5,24,\"B6\",\"411\",\"JFK\",\"LAS\",2.00,-14.00,0.00,\"\",0.00,323.00,296.00,2248.00,,,,,,\n2015,5,25,\"B6\",\"411\",\"JFK\",\"LAS\",-5.00,-6.00,0.00,\"\",0.00,338.00,294.00,2248.00,,,,,,\n2015,5,26,\"B6\",\"411\",\"JFK\",\"LAS\",0.00,-23.00,0.00,\"\",0.00,316.00,291.00,2248.00,,,,,,\n2015,5,27,\"B6\",\"411\",\"JFK\",\"LAS\",-1.00,4.00,0.00,\"\",0.00,344.00,301.00,2248.00,,,,,,\n2015,5,28,\"B6\",\"411\",\"JFK\",\"LAS\",24.00,4.00,0.00,\"\",0.00,319.00,297.00,2248.00,,,,,,\n2015,5,29,\"B6\",\"411\",\"JFK\",\"LAS\",-2.00,-21.00,0.00,\"\",0.00,320.00,284.00,2248.00,,,,,,\n2015,5,30,\"B6\",\"411\",\"JFK\",\"LAS\",-7.00,-26.00,0.00,\"\",0.00,320.00,288.00,2248.00,,,,,,\n2015,5,31,\"B6\",\"411\",\"JFK\",\"LAS\",-2.00,-23.00,0.00,\"\",0.00,318.00,290.00,2248.00,,,,,,\n2015,5,1,\"B6\",\"415\",\"JFK\",\"SFO\",-2.00,-21.00,0.00,\"\",0.00,379.00,334.00,2586.00,,,,,,\n2015,5,2,\"B6\",\"415\",\"JFK\",\"SFO\",2.00,-28.00,0.00,\"\",0.00,368.00,337.00,2586.00,,,,,,\n2015,5,3,\"B6\",\"415\",\"JFK\",\"SFO\",-3.00,-35.00,0.00,\"\",0.00,366.00,330.00,2586.00,,,,,,\n2015,5,4,\"B6\",\"415\",\"JFK\",\"SFO\",-2.00,-29.00,0.00,\"\",0.00,371.00,329.00,2586.00,,,,,,\n2015,5,5,\"B6\",\"415\",\"JFK\",\"SFO\",-2.00,-42.00,0.00,\"\",0.00,358.00,326.00,2586.00,,,,,,\n2015,5,6,\"B6\",\"415\",\"JFK\",\"SFO\",-2.00,-33.00,0.00,\"\",0.00,367.00,322.00,2586.00,,,,,,\n2015,5,7,\"B6\",\"415\",\"JFK\",\"SFO\",-8.00,-40.00,0.00,\"\",0.00,366.00,331.00,2586.00,,,,,,\n2015,5,8,\"B6\",\"415\",\"JFK\",\"SFO\",-2.00,-34.00,0.00,\"\",0.00,366.00,333.00,2586.00,,,,,,\n2015,5,9,\"B6\",\"415\",\"JFK\",\"SFO\",31.00,17.00,0.00,\"\",0.00,384.00,346.00,2586.00,3.00,0.00,0.00,0.00,14.00,\n2015,5,10,\"B6\",\"415\",\"JFK\",\"SFO\",-7.00,-26.00,0.00,\"\",0.00,379.00,352.00,2586.00,,,,,,\n2015,5,11,\"B6\",\"415\",\"JFK\",\"SFO\",16.00,34.00,0.00,\"\",0.00,416.00,372.00,2586.00,16.00,0.00,18.00,0.00,0.00,\n2015,5,12,\"B6\",\"415\",\"JFK\",\"SFO\",-5.00,25.00,0.00,\"\",0.00,428.00,367.00,2586.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,13,\"B6\",\"415\",\"JFK\",\"SFO\",-2.00,-3.00,0.00,\"\",0.00,397.00,351.00,2586.00,,,,,,\n2015,5,14,\"B6\",\"415\",\"JFK\",\"SFO\",14.00,2.00,0.00,\"\",0.00,386.00,344.00,2586.00,,,,,,\n2015,5,15,\"B6\",\"415\",\"JFK\",\"SFO\",-6.00,-20.00,0.00,\"\",0.00,384.00,345.00,2586.00,,,,,,\n2015,5,16,\"B6\",\"415\",\"JFK\",\"SFO\",-5.00,-2.00,0.00,\"\",0.00,401.00,337.00,2586.00,,,,,,\n2015,5,17,\"B6\",\"415\",\"JFK\",\"SFO\",0.00,-20.00,0.00,\"\",0.00,378.00,337.00,2586.00,,,,,,\n2015,5,18,\"B6\",\"415\",\"JFK\",\"SFO\",21.00,52.00,0.00,\"\",0.00,429.00,349.00,2586.00,21.00,0.00,31.00,0.00,0.00,\n2015,5,19,\"B6\",\"415\",\"JFK\",\"SFO\",36.00,26.00,0.00,\"\",0.00,388.00,350.00,2586.00,6.00,0.00,0.00,0.00,20.00,\n2015,5,20,\"B6\",\"415\",\"JFK\",\"SFO\",-1.00,49.00,0.00,\"\",0.00,448.00,399.00,2586.00,0.00,0.00,49.00,0.00,0.00,\n2015,5,21,\"B6\",\"415\",\"JFK\",\"SFO\",1.00,-7.00,0.00,\"\",0.00,390.00,361.00,2586.00,,,,,,\n2015,5,22,\"B6\",\"415\",\"JFK\",\"SFO\",12.00,0.00,0.00,\"\",0.00,386.00,349.00,2586.00,,,,,,\n2015,5,23,\"B6\",\"415\",\"JFK\",\"SFO\",-3.00,-3.00,0.00,\"\",0.00,398.00,369.00,2586.00,,,,,,\n2015,5,24,\"B6\",\"415\",\"JFK\",\"SFO\",-6.00,-36.00,0.00,\"\",0.00,368.00,340.00,2586.00,,,,,,\n2015,5,25,\"B6\",\"415\",\"JFK\",\"SFO\",-10.00,-37.00,0.00,\"\",0.00,371.00,330.00,2586.00,,,,,,\n2015,5,26,\"B6\",\"415\",\"JFK\",\"SFO\",-5.00,-32.00,0.00,\"\",0.00,371.00,336.00,2586.00,,,,,,\n2015,5,27,\"B6\",\"415\",\"JFK\",\"SFO\",-3.00,-21.00,0.00,\"\",0.00,380.00,338.00,2586.00,,,,,,\n2015,5,28,\"B6\",\"415\",\"JFK\",\"SFO\",-3.00,-29.00,0.00,\"\",0.00,372.00,339.00,2586.00,,,,,,\n2015,5,29,\"B6\",\"415\",\"JFK\",\"SFO\",-7.00,-23.00,0.00,\"\",0.00,382.00,337.00,2586.00,,,,,,\n2015,5,30,\"B6\",\"415\",\"JFK\",\"SFO\",-6.00,-46.00,0.00,\"\",0.00,358.00,323.00,2586.00,,,,,,\n2015,5,31,\"B6\",\"415\",\"JFK\",\"SFO\",-8.00,-34.00,0.00,\"\",0.00,372.00,331.00,2586.00,,,,,,\n2015,5,1,\"B6\",\"416\",\"SFO\",\"JFK\",-10.00,-31.00,0.00,\"\",0.00,326.00,309.00,2586.00,,,,,,\n2015,5,2,\"B6\",\"416\",\"SFO\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,328.00,310.00,2586.00,,,,,,\n2015,5,3,\"B6\",\"416\",\"SFO\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,320.00,307.00,2586.00,,,,,,\n2015,5,4,\"B6\",\"416\",\"SFO\",\"JFK\",-7.00,-8.00,0.00,\"\",0.00,346.00,321.00,2586.00,,,,,,\n2015,5,5,\"B6\",\"416\",\"SFO\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,336.00,312.00,2586.00,,,,,,\n2015,5,6,\"B6\",\"416\",\"SFO\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,332.00,311.00,2586.00,,,,,,\n2015,5,7,\"B6\",\"416\",\"SFO\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,335.00,314.00,2586.00,,,,,,\n2015,5,8,\"B6\",\"416\",\"SFO\",\"JFK\",4.00,24.00,0.00,\"\",0.00,367.00,321.00,2586.00,4.00,0.00,20.00,0.00,0.00,\n2015,5,9,\"B6\",\"416\",\"SFO\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,341.00,315.00,2586.00,,,,,,\n2015,5,10,\"B6\",\"416\",\"SFO\",\"JFK\",2.00,-13.00,0.00,\"\",0.00,332.00,303.00,2586.00,,,,,,\n2015,5,11,\"B6\",\"416\",\"SFO\",\"JFK\",123.00,127.00,0.00,\"\",0.00,351.00,310.00,2586.00,0.00,0.00,110.00,0.00,17.00,\n2015,5,12,\"B6\",\"416\",\"SFO\",\"JFK\",20.00,-7.00,0.00,\"\",0.00,320.00,287.00,2586.00,,,,,,\n2015,5,13,\"B6\",\"416\",\"SFO\",\"JFK\",3.00,-28.00,0.00,\"\",0.00,316.00,297.00,2586.00,,,,,,\n2015,5,14,\"B6\",\"416\",\"SFO\",\"JFK\",0.00,-24.00,0.00,\"\",0.00,323.00,301.00,2586.00,,,,,,\n2015,5,15,\"B6\",\"416\",\"SFO\",\"JFK\",1.00,-15.00,0.00,\"\",0.00,331.00,314.00,2586.00,,,,,,\n2015,5,16,\"B6\",\"416\",\"SFO\",\"JFK\",-1.00,4.00,0.00,\"\",0.00,352.00,320.00,2586.00,,,,,,\n2015,5,17,\"B6\",\"416\",\"SFO\",\"JFK\",3.00,6.00,0.00,\"\",0.00,350.00,319.00,2586.00,,,,,,\n2015,5,18,\"B6\",\"416\",\"SFO\",\"JFK\",122.00,134.00,0.00,\"\",0.00,359.00,340.00,2586.00,0.00,0.00,99.00,0.00,35.00,\n2015,5,19,\"B6\",\"416\",\"SFO\",\"JFK\",24.00,19.00,0.00,\"\",0.00,342.00,310.00,2586.00,12.00,0.00,0.00,0.00,7.00,\n2015,5,20,\"B6\",\"416\",\"SFO\",\"JFK\",56.00,17.00,0.00,\"\",0.00,308.00,284.00,2586.00,7.00,0.00,0.00,0.00,10.00,\n2015,5,21,\"B6\",\"416\",\"SFO\",\"JFK\",-5.00,-34.00,0.00,\"\",0.00,318.00,296.00,2586.00,,,,,,\n2015,5,22,\"B6\",\"416\",\"SFO\",\"JFK\",1.00,-3.00,0.00,\"\",0.00,343.00,311.00,2586.00,,,,,,\n2015,5,23,\"B6\",\"416\",\"SFO\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,335.00,305.00,2586.00,,,,,,\n2015,5,24,\"B6\",\"416\",\"SFO\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,333.00,305.00,2586.00,,,,,,\n2015,5,25,\"B6\",\"416\",\"SFO\",\"JFK\",358.00,329.00,0.00,\"\",0.00,318.00,301.00,2586.00,320.00,0.00,0.00,0.00,9.00,\n2015,5,26,\"B6\",\"416\",\"SFO\",\"JFK\",30.00,7.00,0.00,\"\",0.00,324.00,308.00,2586.00,,,,,,\n2015,5,27,\"B6\",\"416\",\"SFO\",\"JFK\",114.00,110.00,0.00,\"\",0.00,343.00,302.00,2586.00,0.00,0.00,110.00,0.00,0.00,\n2015,5,28,\"B6\",\"416\",\"SFO\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,333.00,308.00,2586.00,,,,,,\n2015,5,29,\"B6\",\"416\",\"SFO\",\"JFK\",2.00,-26.00,0.00,\"\",0.00,319.00,303.00,2586.00,,,,,,\n2015,5,30,\"B6\",\"416\",\"SFO\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,326.00,307.00,2586.00,,,,,,\n2015,5,31,\"B6\",\"416\",\"SFO\",\"JFK\",127.00,169.00,0.00,\"\",0.00,389.00,341.00,2586.00,0.00,0.00,169.00,0.00,0.00,\n2015,5,1,\"B6\",\"417\",\"BOS\",\"JFK\",-4.00,-33.00,0.00,\"\",0.00,61.00,40.00,187.00,,,,,,\n2015,5,3,\"B6\",\"417\",\"BOS\",\"JFK\",-6.00,-37.00,0.00,\"\",0.00,59.00,40.00,187.00,,,,,,\n2015,5,4,\"B6\",\"417\",\"BOS\",\"JFK\",-12.00,-31.00,0.00,\"\",0.00,71.00,45.00,187.00,,,,,,\n2015,5,5,\"B6\",\"417\",\"BOS\",\"JFK\",-3.00,-32.00,0.00,\"\",0.00,61.00,49.00,187.00,,,,,,\n2015,5,6,\"B6\",\"417\",\"BOS\",\"JFK\",-3.00,-3.00,0.00,\"\",0.00,90.00,41.00,187.00,,,,,,\n2015,5,7,\"B6\",\"417\",\"BOS\",\"JFK\",-6.00,-31.00,0.00,\"\",0.00,65.00,42.00,187.00,,,,,,\n2015,5,8,\"B6\",\"417\",\"BOS\",\"JFK\",-6.00,-32.00,0.00,\"\",0.00,64.00,43.00,187.00,,,,,,\n2015,5,9,\"B6\",\"417\",\"BOS\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,83.00,43.00,187.00,,,,,,\n2015,5,10,\"B6\",\"417\",\"BOS\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,81.00,45.00,187.00,,,,,,\n2015,5,11,\"B6\",\"417\",\"BOS\",\"JFK\",13.00,31.00,0.00,\"\",0.00,108.00,74.00,187.00,12.00,0.00,18.00,0.00,1.00,\n2015,5,12,\"B6\",\"417\",\"BOS\",\"JFK\",56.00,74.00,0.00,\"\",0.00,108.00,43.00,187.00,0.00,0.00,74.00,0.00,0.00,\n2015,5,13,\"B6\",\"417\",\"BOS\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,67.00,42.00,187.00,,,,,,\n2015,5,14,\"B6\",\"417\",\"BOS\",\"JFK\",14.00,-13.00,0.00,\"\",0.00,63.00,45.00,187.00,,,,,,\n2015,5,15,\"B6\",\"417\",\"BOS\",\"JFK\",-3.00,-27.00,0.00,\"\",0.00,66.00,43.00,187.00,,,,,,\n2015,5,17,\"B6\",\"417\",\"BOS\",\"JFK\",10.00,-8.00,0.00,\"\",0.00,72.00,51.00,187.00,,,,,,\n2015,5,18,\"B6\",\"417\",\"BOS\",\"JFK\",192.00,179.00,0.00,\"\",0.00,77.00,51.00,187.00,124.00,0.00,55.00,0.00,0.00,\n2015,5,19,\"B6\",\"417\",\"BOS\",\"JFK\",9.00,-10.00,0.00,\"\",0.00,71.00,44.00,187.00,,,,,,\n2015,5,20,\"B6\",\"417\",\"BOS\",\"JFK\",0.00,-20.00,0.00,\"\",0.00,70.00,45.00,187.00,,,,,,\n2015,5,21,\"B6\",\"417\",\"BOS\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,77.00,54.00,187.00,,,,,,\n2015,5,22,\"B6\",\"417\",\"BOS\",\"JFK\",-1.00,10.00,0.00,\"\",0.00,101.00,52.00,187.00,,,,,,\n2015,5,24,\"B6\",\"417\",\"BOS\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,77.00,50.00,187.00,,,,,,\n2015,5,25,\"B6\",\"417\",\"BOS\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,69.00,43.00,187.00,,,,,,\n2015,5,26,\"B6\",\"417\",\"BOS\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,68.00,43.00,187.00,,,,,,\n2015,5,27,\"B6\",\"417\",\"BOS\",\"JFK\",296.00,289.00,0.00,\"\",0.00,83.00,48.00,187.00,0.00,0.00,280.00,0.00,9.00,\n2015,5,28,\"B6\",\"417\",\"BOS\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,73.00,47.00,187.00,,,,,,\n2015,5,29,\"B6\",\"417\",\"BOS\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,80.00,46.00,187.00,,,,,,\n2015,5,31,\"B6\",\"417\",\"BOS\",\"JFK\",,,1.00,\"C\",0.00,,,187.00,,,,,,\n2015,5,1,\"B6\",\"418\",\"JFK\",\"BOS\",-3.00,-33.00,0.00,\"\",0.00,60.00,36.00,187.00,,,,,,\n2015,5,2,\"B6\",\"418\",\"JFK\",\"BOS\",-2.00,-27.00,0.00,\"\",0.00,65.00,41.00,187.00,,,,,,\n2015,5,3,\"B6\",\"418\",\"JFK\",\"BOS\",43.00,29.00,0.00,\"\",0.00,76.00,43.00,187.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"418\",\"JFK\",\"BOS\",-9.00,-31.00,0.00,\"\",0.00,68.00,39.00,187.00,,,,,,\n2015,5,6,\"B6\",\"418\",\"JFK\",\"BOS\",-9.00,-25.00,0.00,\"\",0.00,74.00,46.00,187.00,,,,,,\n2015,5,7,\"B6\",\"418\",\"JFK\",\"BOS\",4.00,-10.00,0.00,\"\",0.00,76.00,45.00,187.00,,,,,,\n2015,5,8,\"B6\",\"418\",\"JFK\",\"BOS\",160.00,136.00,0.00,\"\",0.00,66.00,39.00,187.00,9.00,0.00,0.00,0.00,127.00,\n2015,5,9,\"B6\",\"418\",\"JFK\",\"BOS\",-5.00,-32.00,0.00,\"\",0.00,63.00,43.00,187.00,,,,,,\n2015,5,10,\"B6\",\"418\",\"JFK\",\"BOS\",49.00,29.00,0.00,\"\",0.00,70.00,39.00,187.00,9.00,0.00,0.00,0.00,20.00,\n2015,5,11,\"B6\",\"418\",\"JFK\",\"BOS\",72.00,54.00,0.00,\"\",0.00,72.00,37.00,187.00,10.00,0.00,0.00,0.00,44.00,\n2015,5,13,\"B6\",\"418\",\"JFK\",\"BOS\",27.00,7.00,0.00,\"\",0.00,70.00,38.00,187.00,,,,,,\n2015,5,14,\"B6\",\"418\",\"JFK\",\"BOS\",-1.00,-10.00,0.00,\"\",0.00,81.00,45.00,187.00,,,,,,\n2015,5,15,\"B6\",\"418\",\"JFK\",\"BOS\",44.00,18.00,0.00,\"\",0.00,64.00,38.00,187.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"B6\",\"418\",\"JFK\",\"BOS\",41.00,15.00,0.00,\"\",0.00,64.00,43.00,187.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"418\",\"JFK\",\"BOS\",119.00,93.00,0.00,\"\",0.00,64.00,34.00,187.00,93.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"418\",\"JFK\",\"BOS\",37.00,90.00,0.00,\"\",0.00,143.00,34.00,187.00,20.00,0.00,53.00,0.00,17.00,\n2015,5,20,\"B6\",\"418\",\"JFK\",\"BOS\",55.00,32.00,0.00,\"\",0.00,67.00,38.00,187.00,1.00,0.00,0.00,0.00,31.00,\n2015,5,22,\"B6\",\"418\",\"JFK\",\"BOS\",41.00,23.00,0.00,\"\",0.00,72.00,40.00,187.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"418\",\"JFK\",\"BOS\",-10.00,-33.00,0.00,\"\",0.00,67.00,37.00,187.00,,,,,,\n2015,5,24,\"B6\",\"418\",\"JFK\",\"BOS\",-3.00,-18.00,0.00,\"\",0.00,75.00,40.00,187.00,,,,,,\n2015,5,25,\"B6\",\"418\",\"JFK\",\"BOS\",-6.00,-26.00,0.00,\"\",0.00,70.00,39.00,187.00,,,,,,\n2015,5,27,\"B6\",\"418\",\"JFK\",\"BOS\",,,1.00,\"C\",0.00,,,187.00,,,,,,\n2015,5,28,\"B6\",\"418\",\"JFK\",\"BOS\",-3.00,-16.00,0.00,\"\",0.00,77.00,39.00,187.00,,,,,,\n2015,5,29,\"B6\",\"418\",\"JFK\",\"BOS\",97.00,90.00,0.00,\"\",0.00,83.00,44.00,187.00,90.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"B6\",\"418\",\"JFK\",\"BOS\",-5.00,-34.00,0.00,\"\",0.00,61.00,37.00,187.00,,,,,,\n2015,5,31,\"B6\",\"418\",\"JFK\",\"BOS\",109.00,179.00,0.00,\"\",0.00,160.00,33.00,187.00,0.00,109.00,70.00,0.00,0.00,\n2015,5,1,\"B6\",\"423\",\"JFK\",\"LAX\",-1.00,-36.00,0.00,\"\",0.00,338.00,316.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"423\",\"JFK\",\"LAX\",-10.00,-32.00,0.00,\"\",0.00,351.00,321.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"423\",\"JFK\",\"LAX\",-2.00,-30.00,0.00,\"\",0.00,345.00,320.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"423\",\"JFK\",\"LAX\",0.00,-25.00,0.00,\"\",0.00,348.00,313.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"423\",\"JFK\",\"LAX\",-3.00,-39.00,0.00,\"\",0.00,337.00,306.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"423\",\"JFK\",\"LAX\",-9.00,-32.00,0.00,\"\",0.00,350.00,330.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"423\",\"JFK\",\"LAX\",-6.00,-17.00,0.00,\"\",0.00,362.00,332.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"423\",\"JFK\",\"LAX\",2.00,-18.00,0.00,\"\",0.00,353.00,334.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"423\",\"JFK\",\"LAX\",-2.00,-20.00,0.00,\"\",0.00,355.00,328.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"423\",\"JFK\",\"LAX\",-7.00,-30.00,0.00,\"\",0.00,350.00,324.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"423\",\"JFK\",\"LAX\",3.00,-16.00,0.00,\"\",0.00,354.00,325.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"423\",\"JFK\",\"LAX\",-4.00,0.00,0.00,\"\",0.00,377.00,348.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"423\",\"JFK\",\"LAX\",0.00,-26.00,0.00,\"\",0.00,347.00,322.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"423\",\"JFK\",\"LAX\",-3.00,-27.00,0.00,\"\",0.00,349.00,327.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"423\",\"JFK\",\"LAX\",-1.00,-5.00,0.00,\"\",0.00,369.00,344.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"423\",\"JFK\",\"LAX\",0.00,-11.00,0.00,\"\",0.00,362.00,333.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"423\",\"JFK\",\"LAX\",-6.00,-15.00,0.00,\"\",0.00,364.00,334.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"423\",\"JFK\",\"LAX\",-4.00,-1.00,0.00,\"\",0.00,376.00,338.00,2475.00,,,,,,\n2015,5,19,\"B6\",\"423\",\"JFK\",\"LAX\",-2.00,0.00,0.00,\"\",0.00,375.00,348.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"423\",\"JFK\",\"LAX\",-2.00,-9.00,0.00,\"\",0.00,366.00,342.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"423\",\"JFK\",\"LAX\",-7.00,-2.00,0.00,\"\",0.00,378.00,344.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"423\",\"JFK\",\"LAX\",-1.00,-3.00,0.00,\"\",0.00,371.00,350.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"423\",\"JFK\",\"LAX\",0.00,5.00,0.00,\"\",0.00,378.00,353.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"423\",\"JFK\",\"LAX\",-7.00,-27.00,0.00,\"\",0.00,353.00,325.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"423\",\"JFK\",\"LAX\",25.00,10.00,0.00,\"\",0.00,358.00,328.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"423\",\"JFK\",\"LAX\",-4.00,-12.00,0.00,\"\",0.00,365.00,321.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"423\",\"JFK\",\"LAX\",49.00,65.00,0.00,\"\",0.00,389.00,348.00,2475.00,49.00,0.00,16.00,0.00,0.00,\n2015,5,28,\"B6\",\"423\",\"JFK\",\"LAX\",-2.00,-8.00,0.00,\"\",0.00,367.00,342.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"423\",\"JFK\",\"LAX\",-5.00,-25.00,0.00,\"\",0.00,353.00,324.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"423\",\"JFK\",\"LAX\",-4.00,-42.00,0.00,\"\",0.00,335.00,308.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"423\",\"JFK\",\"LAX\",-5.00,-41.00,0.00,\"\",0.00,337.00,310.00,2475.00,,,,,,\n2015,5,1,\"B6\",\"424\",\"LAX\",\"JFK\",-5.00,-34.00,0.00,\"\",0.00,311.00,299.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"424\",\"LAX\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,322.00,306.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"424\",\"LAX\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,336.00,315.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"424\",\"LAX\",\"JFK\",24.00,4.00,0.00,\"\",0.00,320.00,299.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"424\",\"LAX\",\"JFK\",5.00,-18.00,0.00,\"\",0.00,317.00,299.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"424\",\"LAX\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,323.00,306.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"424\",\"LAX\",\"JFK\",-5.00,-35.00,0.00,\"\",0.00,310.00,294.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"424\",\"LAX\",\"JFK\",26.00,30.00,0.00,\"\",0.00,344.00,302.00,2475.00,23.00,0.00,4.00,0.00,3.00,\n2015,5,9,\"B6\",\"424\",\"LAX\",\"JFK\",14.00,-6.00,0.00,\"\",0.00,320.00,301.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"424\",\"LAX\",\"JFK\",4.00,-22.00,0.00,\"\",0.00,314.00,300.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"424\",\"LAX\",\"JFK\",115.00,123.00,0.00,\"\",0.00,348.00,321.00,2475.00,0.00,0.00,123.00,0.00,0.00,\n2015,5,12,\"B6\",\"424\",\"LAX\",\"JFK\",3.00,-30.00,0.00,\"\",0.00,307.00,273.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"424\",\"LAX\",\"JFK\",4.00,-29.00,0.00,\"\",0.00,307.00,291.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"424\",\"LAX\",\"JFK\",31.00,3.00,0.00,\"\",0.00,312.00,292.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"424\",\"LAX\",\"JFK\",13.00,-18.00,0.00,\"\",0.00,309.00,291.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"424\",\"LAX\",\"JFK\",18.00,-18.00,0.00,\"\",0.00,304.00,291.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"424\",\"LAX\",\"JFK\",128.00,92.00,0.00,\"\",0.00,304.00,283.00,2475.00,81.00,0.00,0.00,0.00,11.00,\n2015,5,18,\"B6\",\"424\",\"LAX\",\"JFK\",122.00,,0.00,\"\",1.00,,,2475.00,,,,,,\n2015,5,19,\"B6\",\"424\",\"LAX\",\"JFK\",36.00,9.00,0.00,\"\",0.00,313.00,287.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"424\",\"LAX\",\"JFK\",-1.00,-50.00,0.00,\"\",0.00,291.00,273.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"424\",\"LAX\",\"JFK\",17.00,-24.00,0.00,\"\",0.00,299.00,284.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"424\",\"LAX\",\"JFK\",20.00,-17.00,0.00,\"\",0.00,303.00,288.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"424\",\"LAX\",\"JFK\",-9.00,-43.00,0.00,\"\",0.00,306.00,286.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"424\",\"LAX\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,315.00,298.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"424\",\"LAX\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,325.00,297.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"424\",\"LAX\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,322.00,300.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"424\",\"LAX\",\"JFK\",130.00,111.00,0.00,\"\",0.00,321.00,304.00,2475.00,0.00,0.00,111.00,0.00,0.00,\n2015,5,28,\"B6\",\"424\",\"LAX\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,328.00,304.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"424\",\"LAX\",\"JFK\",-9.00,-31.00,0.00,\"\",0.00,318.00,295.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"424\",\"LAX\",\"JFK\",22.00,17.00,0.00,\"\",0.00,335.00,316.00,2475.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"B6\",\"424\",\"LAX\",\"JFK\",125.00,138.00,0.00,\"\",0.00,353.00,338.00,2475.00,0.00,125.00,13.00,0.00,0.00,\n2015,5,1,\"B6\",\"426\",\"TPA\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,150.00,136.00,1005.00,,,,,,\n2015,5,2,\"B6\",\"426\",\"TPA\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,152.00,136.00,1005.00,,,,,,\n2015,5,3,\"B6\",\"426\",\"TPA\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,166.00,145.00,1005.00,,,,,,\n2015,5,4,\"B6\",\"426\",\"TPA\",\"JFK\",7.00,10.00,0.00,\"\",0.00,174.00,152.00,1005.00,,,,,,\n2015,5,5,\"B6\",\"426\",\"TPA\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,149.00,130.00,1005.00,,,,,,\n2015,5,6,\"B6\",\"426\",\"TPA\",\"JFK\",18.00,-4.00,0.00,\"\",0.00,149.00,133.00,1005.00,,,,,,\n2015,5,7,\"B6\",\"426\",\"TPA\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,156.00,140.00,1005.00,,,,,,\n2015,5,8,\"B6\",\"426\",\"TPA\",\"JFK\",96.00,100.00,0.00,\"\",0.00,175.00,142.00,1005.00,0.00,0.00,100.00,0.00,0.00,\n2015,5,9,\"B6\",\"426\",\"TPA\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,169.00,135.00,1005.00,,,,,,\n2015,5,10,\"B6\",\"426\",\"TPA\",\"JFK\",-7.00,15.00,0.00,\"\",0.00,193.00,141.00,1005.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,11,\"B6\",\"426\",\"TPA\",\"JFK\",92.00,89.00,0.00,\"\",0.00,168.00,150.00,1005.00,0.00,0.00,89.00,0.00,0.00,\n2015,5,12,\"B6\",\"426\",\"TPA\",\"JFK\",176.00,152.00,0.00,\"\",0.00,147.00,124.00,1005.00,0.00,12.00,0.00,0.00,140.00,\n2015,5,13,\"B6\",\"426\",\"TPA\",\"JFK\",40.00,49.00,0.00,\"\",0.00,180.00,155.00,1005.00,0.00,0.00,49.00,0.00,0.00,\n2015,5,14,\"B6\",\"426\",\"TPA\",\"JFK\",16.00,24.00,0.00,\"\",0.00,179.00,141.00,1005.00,0.00,16.00,8.00,0.00,0.00,\n2015,5,15,\"B6\",\"426\",\"TPA\",\"JFK\",30.00,21.00,0.00,\"\",0.00,162.00,140.00,1005.00,0.00,8.00,0.00,0.00,13.00,\n2015,5,16,\"B6\",\"426\",\"TPA\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,159.00,140.00,1005.00,,,,,,\n2015,5,17,\"B6\",\"426\",\"TPA\",\"JFK\",48.00,29.00,0.00,\"\",0.00,152.00,134.00,1005.00,9.00,0.00,0.00,0.00,20.00,\n2015,5,18,\"B6\",\"426\",\"TPA\",\"JFK\",121.00,152.00,0.00,\"\",0.00,202.00,181.00,1005.00,0.00,0.00,138.00,0.00,14.00,\n2015,5,19,\"B6\",\"426\",\"TPA\",\"JFK\",21.00,31.00,0.00,\"\",0.00,181.00,154.00,1005.00,15.00,0.00,10.00,0.00,6.00,\n2015,5,20,\"B6\",\"426\",\"TPA\",\"JFK\",47.00,60.00,0.00,\"\",0.00,184.00,136.00,1005.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,21,\"B6\",\"426\",\"TPA\",\"JFK\",16.00,-15.00,0.00,\"\",0.00,140.00,126.00,1005.00,,,,,,\n2015,5,22,\"B6\",\"426\",\"TPA\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,154.00,133.00,1005.00,,,,,,\n2015,5,23,\"B6\",\"426\",\"TPA\",\"JFK\",8.00,-5.00,0.00,\"\",0.00,158.00,143.00,1005.00,,,,,,\n2015,5,24,\"B6\",\"426\",\"TPA\",\"JFK\",-13.00,-29.00,0.00,\"\",0.00,155.00,136.00,1005.00,,,,,,\n2015,5,25,\"B6\",\"426\",\"TPA\",\"JFK\",9.00,-3.00,0.00,\"\",0.00,159.00,137.00,1005.00,,,,,,\n2015,5,26,\"B6\",\"426\",\"TPA\",\"JFK\",117.00,164.00,0.00,\"\",0.00,218.00,139.00,1005.00,0.00,117.00,47.00,0.00,0.00,\n2015,5,27,\"B6\",\"426\",\"TPA\",\"JFK\",68.00,53.00,0.00,\"\",0.00,156.00,132.00,1005.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,28,\"B6\",\"426\",\"TPA\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,150.00,135.00,1005.00,,,,,,\n2015,5,29,\"B6\",\"426\",\"TPA\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,160.00,141.00,1005.00,,,,,,\n2015,5,30,\"B6\",\"426\",\"TPA\",\"JFK\",2.00,-12.00,0.00,\"\",0.00,157.00,140.00,1005.00,,,,,,\n2015,5,31,\"B6\",\"426\",\"TPA\",\"JFK\",165.00,192.00,0.00,\"\",0.00,198.00,173.00,1005.00,0.00,165.00,27.00,0.00,0.00,\n2015,5,1,\"B6\",\"431\",\"LGA\",\"SRQ\",0.00,-13.00,0.00,\"\",0.00,169.00,145.00,1047.00,,,,,,\n2015,5,2,\"B6\",\"431\",\"LGA\",\"SRQ\",-1.00,-19.00,0.00,\"\",0.00,164.00,141.00,1047.00,,,,,,\n2015,5,3,\"B6\",\"431\",\"LGA\",\"SRQ\",-2.00,-11.00,0.00,\"\",0.00,173.00,145.00,1047.00,,,,,,\n2015,5,4,\"B6\",\"431\",\"LGA\",\"SRQ\",-5.00,-23.00,0.00,\"\",0.00,164.00,144.00,1047.00,,,,,,\n2015,5,5,\"B6\",\"431\",\"LGA\",\"SRQ\",-7.00,-32.00,0.00,\"\",0.00,157.00,141.00,1047.00,,,,,,\n2015,5,6,\"B6\",\"431\",\"LGA\",\"SRQ\",-3.00,11.00,0.00,\"\",0.00,196.00,156.00,1047.00,,,,,,\n2015,5,7,\"B6\",\"431\",\"LGA\",\"SRQ\",5.00,-17.00,0.00,\"\",0.00,160.00,142.00,1047.00,,,,,,\n2015,5,8,\"B6\",\"431\",\"LGA\",\"SRQ\",60.00,61.00,0.00,\"\",0.00,183.00,149.00,1047.00,17.00,0.00,1.00,0.00,43.00,\n2015,5,9,\"B6\",\"431\",\"LGA\",\"SRQ\",-9.00,-33.00,0.00,\"\",0.00,158.00,133.00,1047.00,,,,,,\n2015,5,10,\"B6\",\"431\",\"LGA\",\"SRQ\",62.00,39.00,0.00,\"\",0.00,159.00,142.00,1047.00,6.00,0.00,0.00,0.00,33.00,\n2015,5,11,\"B6\",\"431\",\"LGA\",\"SRQ\",3.00,-7.00,0.00,\"\",0.00,172.00,142.00,1047.00,,,,,,\n2015,5,12,\"B6\",\"431\",\"LGA\",\"SRQ\",23.00,8.00,0.00,\"\",0.00,167.00,153.00,1047.00,,,,,,\n2015,5,13,\"B6\",\"431\",\"LGA\",\"SRQ\",-10.00,-17.00,0.00,\"\",0.00,175.00,146.00,1047.00,,,,,,\n2015,5,14,\"B6\",\"431\",\"LGA\",\"SRQ\",-6.00,-12.00,0.00,\"\",0.00,176.00,146.00,1047.00,,,,,,\n2015,5,15,\"B6\",\"431\",\"LGA\",\"SRQ\",-2.00,-12.00,0.00,\"\",0.00,172.00,146.00,1047.00,,,,,,\n2015,5,16,\"B6\",\"431\",\"LGA\",\"SRQ\",55.00,37.00,0.00,\"\",0.00,164.00,143.00,1047.00,6.00,0.00,0.00,0.00,31.00,\n2015,5,17,\"B6\",\"431\",\"LGA\",\"SRQ\",1.00,-14.00,0.00,\"\",0.00,167.00,139.00,1047.00,,,,,,\n2015,5,18,\"B6\",\"431\",\"LGA\",\"SRQ\",271.00,259.00,0.00,\"\",0.00,170.00,136.00,1047.00,51.00,0.00,0.00,0.00,208.00,\n2015,5,19,\"B6\",\"431\",\"LGA\",\"SRQ\",96.00,101.00,0.00,\"\",0.00,187.00,158.00,1047.00,14.00,0.00,5.00,0.00,82.00,\n2015,5,20,\"B6\",\"431\",\"LGA\",\"SRQ\",-13.00,-2.00,0.00,\"\",0.00,193.00,150.00,1047.00,,,,,,\n2015,5,21,\"B6\",\"431\",\"LGA\",\"SRQ\",-2.00,-18.00,0.00,\"\",0.00,166.00,147.00,1047.00,,,,,,\n2015,5,22,\"B6\",\"431\",\"LGA\",\"SRQ\",-10.00,-1.00,0.00,\"\",0.00,191.00,161.00,1047.00,,,,,,\n2015,5,23,\"B6\",\"431\",\"LGA\",\"SRQ\",-3.00,-21.00,0.00,\"\",0.00,164.00,146.00,1047.00,,,,,,\n2015,5,24,\"B6\",\"431\",\"LGA\",\"SRQ\",-4.00,-23.00,0.00,\"\",0.00,163.00,145.00,1047.00,,,,,,\n2015,5,25,\"B6\",\"431\",\"LGA\",\"SRQ\",-6.00,-5.00,0.00,\"\",0.00,183.00,147.00,1047.00,,,,,,\n2015,5,26,\"B6\",\"431\",\"LGA\",\"SRQ\",-11.00,-27.00,0.00,\"\",0.00,166.00,146.00,1047.00,,,,,,\n2015,5,27,\"B6\",\"431\",\"LGA\",\"SRQ\",-7.00,-28.00,0.00,\"\",0.00,161.00,149.00,1047.00,,,,,,\n2015,5,28,\"B6\",\"431\",\"LGA\",\"SRQ\",1.00,-14.00,0.00,\"\",0.00,167.00,143.00,1047.00,,,,,,\n2015,5,29,\"B6\",\"431\",\"LGA\",\"SRQ\",-1.00,-5.00,0.00,\"\",0.00,178.00,139.00,1047.00,,,,,,\n2015,5,30,\"B6\",\"431\",\"LGA\",\"SRQ\",-9.00,-27.00,0.00,\"\",0.00,164.00,143.00,1047.00,,,,,,\n2015,5,31,\"B6\",\"431\",\"LGA\",\"SRQ\",-4.00,9.00,0.00,\"\",0.00,195.00,141.00,1047.00,,,,,,\n2015,5,1,\"B6\",\"432\",\"SRQ\",\"LGA\",230.00,205.00,0.00,\"\",0.00,148.00,132.00,1047.00,205.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"B6\",\"432\",\"SRQ\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,155.00,139.00,1047.00,,,,,,\n2015,5,3,\"B6\",\"432\",\"SRQ\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,156.00,142.00,1047.00,,,,,,\n2015,5,4,\"B6\",\"432\",\"SRQ\",\"LGA\",-12.00,-33.00,0.00,\"\",0.00,152.00,138.00,1047.00,,,,,,\n2015,5,5,\"B6\",\"432\",\"SRQ\",\"LGA\",-7.00,-28.00,0.00,\"\",0.00,152.00,138.00,1047.00,,,,,,\n2015,5,6,\"B6\",\"432\",\"SRQ\",\"LGA\",11.00,-17.00,0.00,\"\",0.00,145.00,135.00,1047.00,,,,,,\n2015,5,7,\"B6\",\"432\",\"SRQ\",\"LGA\",-11.00,-31.00,0.00,\"\",0.00,153.00,139.00,1047.00,,,,,,\n2015,5,8,\"B6\",\"432\",\"SRQ\",\"LGA\",54.00,46.00,0.00,\"\",0.00,165.00,145.00,1047.00,1.00,0.00,0.00,0.00,45.00,\n2015,5,9,\"B6\",\"432\",\"SRQ\",\"LGA\",-8.00,-29.00,0.00,\"\",0.00,152.00,140.00,1047.00,,,,,,\n2015,5,10,\"B6\",\"432\",\"SRQ\",\"LGA\",258.00,251.00,0.00,\"\",0.00,166.00,138.00,1047.00,251.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"B6\",\"432\",\"SRQ\",\"LGA\",122.00,121.00,0.00,\"\",0.00,172.00,146.00,1047.00,0.00,0.00,121.00,0.00,0.00,\n2015,5,12,\"B6\",\"432\",\"SRQ\",\"LGA\",11.00,-8.00,0.00,\"\",0.00,154.00,138.00,1047.00,,,,,,\n2015,5,13,\"B6\",\"432\",\"SRQ\",\"LGA\",-12.00,-20.00,0.00,\"\",0.00,165.00,150.00,1047.00,,,,,,\n2015,5,14,\"B6\",\"432\",\"SRQ\",\"LGA\",-5.00,-27.00,0.00,\"\",0.00,151.00,137.00,1047.00,,,,,,\n2015,5,15,\"B6\",\"432\",\"SRQ\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,160.00,140.00,1047.00,,,,,,\n2015,5,16,\"B6\",\"432\",\"SRQ\",\"LGA\",35.00,20.00,0.00,\"\",0.00,158.00,144.00,1047.00,3.00,0.00,0.00,0.00,17.00,\n2015,5,17,\"B6\",\"432\",\"SRQ\",\"LGA\",-8.00,-27.00,0.00,\"\",0.00,154.00,138.00,1047.00,,,,,,\n2015,5,18,\"B6\",\"432\",\"SRQ\",\"LGA\",266.00,266.00,0.00,\"\",0.00,173.00,153.00,1047.00,0.00,0.00,15.00,0.00,251.00,\n2015,5,19,\"B6\",\"432\",\"SRQ\",\"LGA\",140.00,137.00,0.00,\"\",0.00,170.00,144.00,1047.00,0.00,0.00,46.00,0.00,91.00,\n2015,5,20,\"B6\",\"432\",\"SRQ\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,156.00,137.00,1047.00,,,,,,\n2015,5,21,\"B6\",\"432\",\"SRQ\",\"LGA\",0.00,-22.00,0.00,\"\",0.00,151.00,134.00,1047.00,,,,,,\n2015,5,22,\"B6\",\"432\",\"SRQ\",\"LGA\",-4.00,-29.00,0.00,\"\",0.00,148.00,132.00,1047.00,,,,,,\n2015,5,23,\"B6\",\"432\",\"SRQ\",\"LGA\",-8.00,-22.00,0.00,\"\",0.00,159.00,142.00,1047.00,,,,,,\n2015,5,24,\"B6\",\"432\",\"SRQ\",\"LGA\",-9.00,-29.00,0.00,\"\",0.00,153.00,142.00,1047.00,,,,,,\n2015,5,25,\"B6\",\"432\",\"SRQ\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,178.00,145.00,1047.00,,,,,,\n2015,5,26,\"B6\",\"432\",\"SRQ\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,161.00,144.00,1047.00,,,,,,\n2015,5,27,\"B6\",\"432\",\"SRQ\",\"LGA\",248.00,260.00,0.00,\"\",0.00,185.00,146.00,1047.00,0.00,0.00,260.00,0.00,0.00,\n2015,5,28,\"B6\",\"432\",\"SRQ\",\"LGA\",-4.00,-27.00,0.00,\"\",0.00,150.00,135.00,1047.00,,,,,,\n2015,5,29,\"B6\",\"432\",\"SRQ\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,169.00,146.00,1047.00,,,,,,\n2015,5,30,\"B6\",\"432\",\"SRQ\",\"LGA\",-7.00,-25.00,0.00,\"\",0.00,155.00,143.00,1047.00,,,,,,\n2015,5,31,\"B6\",\"432\",\"SRQ\",\"LGA\",,,1.00,\"C\",0.00,,,1047.00,,,,,,\n2015,5,1,\"B6\",\"445\",\"SWF\",\"MCO\",-1.00,-10.00,0.00,\"\",0.00,161.00,145.00,989.00,,,,,,\n2015,5,2,\"B6\",\"445\",\"SWF\",\"MCO\",94.00,95.00,0.00,\"\",0.00,171.00,141.00,989.00,12.00,0.00,1.00,0.00,82.00,\n2015,5,3,\"B6\",\"445\",\"SWF\",\"MCO\",-8.00,-18.00,0.00,\"\",0.00,160.00,136.00,989.00,,,,,,\n2015,5,4,\"B6\",\"445\",\"SWF\",\"MCO\",-13.00,-23.00,0.00,\"\",0.00,160.00,145.00,989.00,,,,,,\n2015,5,5,\"B6\",\"445\",\"SWF\",\"MCO\",-5.00,13.00,0.00,\"\",0.00,188.00,151.00,989.00,,,,,,\n2015,5,6,\"B6\",\"445\",\"SWF\",\"MCO\",-14.00,-18.00,0.00,\"\",0.00,166.00,146.00,989.00,,,,,,\n2015,5,7,\"B6\",\"445\",\"SWF\",\"MCO\",-10.00,-19.00,0.00,\"\",0.00,161.00,141.00,989.00,,,,,,\n2015,5,8,\"B6\",\"445\",\"SWF\",\"MCO\",-3.00,-15.00,0.00,\"\",0.00,158.00,140.00,989.00,,,,,,\n2015,5,9,\"B6\",\"445\",\"SWF\",\"MCO\",9.00,-7.00,0.00,\"\",0.00,154.00,139.00,989.00,,,,,,\n2015,5,10,\"B6\",\"445\",\"SWF\",\"MCO\",32.00,34.00,0.00,\"\",0.00,172.00,145.00,989.00,32.00,0.00,2.00,0.00,0.00,\n2015,5,11,\"B6\",\"445\",\"SWF\",\"MCO\",-6.00,-7.00,0.00,\"\",0.00,169.00,144.00,989.00,,,,,,\n2015,5,12,\"B6\",\"445\",\"SWF\",\"MCO\",43.00,32.00,0.00,\"\",0.00,159.00,142.00,989.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"B6\",\"445\",\"SWF\",\"MCO\",-8.00,-16.00,0.00,\"\",0.00,162.00,139.00,989.00,,,,,,\n2015,5,14,\"B6\",\"445\",\"SWF\",\"MCO\",149.00,134.00,0.00,\"\",0.00,155.00,136.00,989.00,5.00,0.00,0.00,0.00,129.00,\n2015,5,15,\"B6\",\"445\",\"SWF\",\"MCO\",-5.00,-4.00,0.00,\"\",0.00,171.00,146.00,989.00,,,,,,\n2015,5,16,\"B6\",\"445\",\"SWF\",\"MCO\",-10.00,-20.00,0.00,\"\",0.00,160.00,140.00,989.00,,,,,,\n2015,5,17,\"B6\",\"445\",\"SWF\",\"MCO\",-16.00,-34.00,0.00,\"\",0.00,152.00,136.00,989.00,,,,,,\n2015,5,18,\"B6\",\"445\",\"SWF\",\"MCO\",-8.00,-19.00,0.00,\"\",0.00,159.00,134.00,989.00,,,,,,\n2015,5,19,\"B6\",\"445\",\"SWF\",\"MCO\",53.00,61.00,0.00,\"\",0.00,178.00,159.00,989.00,53.00,0.00,8.00,0.00,0.00,\n2015,5,20,\"B6\",\"445\",\"SWF\",\"MCO\",3.00,14.00,0.00,\"\",0.00,181.00,166.00,989.00,,,,,,\n2015,5,21,\"B6\",\"445\",\"SWF\",\"MCO\",38.00,28.00,0.00,\"\",0.00,160.00,143.00,989.00,27.00,0.00,0.00,0.00,1.00,\n2015,5,22,\"B6\",\"445\",\"SWF\",\"MCO\",-2.00,-2.00,0.00,\"\",0.00,170.00,155.00,989.00,,,,,,\n2015,5,23,\"B6\",\"445\",\"SWF\",\"MCO\",-13.00,-26.00,0.00,\"\",0.00,157.00,135.00,989.00,,,,,,\n2015,5,24,\"B6\",\"445\",\"SWF\",\"MCO\",-7.00,-23.00,0.00,\"\",0.00,154.00,135.00,989.00,,,,,,\n2015,5,25,\"B6\",\"445\",\"SWF\",\"MCO\",-6.00,-10.00,0.00,\"\",0.00,166.00,144.00,989.00,,,,,,\n2015,5,26,\"B6\",\"445\",\"SWF\",\"MCO\",12.00,0.00,0.00,\"\",0.00,158.00,140.00,989.00,,,,,,\n2015,5,27,\"B6\",\"445\",\"SWF\",\"MCO\",-12.00,18.00,0.00,\"\",0.00,200.00,152.00,989.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,28,\"B6\",\"445\",\"SWF\",\"MCO\",-1.00,-5.00,0.00,\"\",0.00,166.00,149.00,989.00,,,,,,\n2015,5,29,\"B6\",\"445\",\"SWF\",\"MCO\",-2.00,-9.00,0.00,\"\",0.00,163.00,138.00,989.00,,,,,,\n2015,5,30,\"B6\",\"445\",\"SWF\",\"MCO\",-9.00,-4.00,0.00,\"\",0.00,175.00,147.00,989.00,,,,,,\n2015,5,31,\"B6\",\"445\",\"SWF\",\"MCO\",27.00,43.00,0.00,\"\",0.00,186.00,138.00,989.00,0.00,27.00,16.00,0.00,0.00,\n2015,5,1,\"B6\",\"453\",\"JFK\",\"PBI\",-1.00,4.00,0.00,\"\",0.00,175.00,146.00,1028.00,,,,,,\n2015,5,2,\"B6\",\"453\",\"JFK\",\"PBI\",-2.00,-9.00,0.00,\"\",0.00,163.00,141.00,1028.00,,,,,,\n2015,5,3,\"B6\",\"453\",\"JFK\",\"PBI\",-9.00,-21.00,0.00,\"\",0.00,158.00,141.00,1028.00,,,,,,\n2015,5,4,\"B6\",\"453\",\"JFK\",\"PBI\",-7.00,-14.00,0.00,\"\",0.00,163.00,141.00,1028.00,,,,,,\n2015,5,5,\"B6\",\"453\",\"JFK\",\"PBI\",-5.00,-11.00,0.00,\"\",0.00,164.00,145.00,1028.00,,,,,,\n2015,5,6,\"B6\",\"453\",\"JFK\",\"PBI\",-10.00,-20.00,0.00,\"\",0.00,160.00,147.00,1028.00,,,,,,\n2015,5,7,\"B6\",\"453\",\"JFK\",\"PBI\",-4.00,-8.00,0.00,\"\",0.00,166.00,141.00,1028.00,,,,,,\n2015,5,8,\"B6\",\"453\",\"JFK\",\"PBI\",-6.00,-15.00,0.00,\"\",0.00,161.00,135.00,1028.00,,,,,,\n2015,5,9,\"B6\",\"453\",\"JFK\",\"PBI\",-2.00,-12.00,0.00,\"\",0.00,160.00,139.00,1028.00,,,,,,\n2015,5,1,\"B6\",\"581\",\"JFK\",\"HOU\",-7.00,-30.00,0.00,\"\",0.00,218.00,186.00,1428.00,,,,,,\n2015,5,2,\"B6\",\"581\",\"JFK\",\"HOU\",-3.00,-27.00,0.00,\"\",0.00,224.00,192.00,1428.00,,,,,,\n2015,5,3,\"B6\",\"581\",\"JFK\",\"HOU\",16.00,-20.00,0.00,\"\",0.00,205.00,184.00,1428.00,,,,,,\n2015,5,4,\"B6\",\"581\",\"JFK\",\"HOU\",-4.00,-30.00,0.00,\"\",0.00,215.00,192.00,1428.00,,,,,,\n2015,5,5,\"B6\",\"581\",\"JFK\",\"HOU\",-2.00,-34.00,0.00,\"\",0.00,209.00,185.00,1428.00,,,,,,\n2015,5,6,\"B6\",\"581\",\"JFK\",\"HOU\",0.00,-24.00,0.00,\"\",0.00,217.00,193.00,1428.00,,,,,,\n2015,5,7,\"B6\",\"581\",\"JFK\",\"HOU\",-2.00,-26.00,0.00,\"\",0.00,217.00,192.00,1428.00,,,,,,\n2015,5,8,\"B6\",\"581\",\"JFK\",\"HOU\",-3.00,-34.00,0.00,\"\",0.00,210.00,185.00,1428.00,,,,,,\n2015,5,9,\"B6\",\"581\",\"JFK\",\"HOU\",-8.00,-41.00,0.00,\"\",0.00,215.00,190.00,1428.00,,,,,,\n2015,5,10,\"B6\",\"581\",\"JFK\",\"HOU\",-6.00,-35.00,0.00,\"\",0.00,212.00,189.00,1428.00,,,,,,\n2015,5,11,\"B6\",\"581\",\"JFK\",\"HOU\",18.00,43.00,0.00,\"\",0.00,266.00,221.00,1428.00,7.00,0.00,25.00,11.00,0.00,\n2015,5,12,\"B6\",\"581\",\"JFK\",\"HOU\",-9.00,,0.00,\"\",1.00,,,1428.00,,,,,,\n2015,5,13,\"B6\",\"581\",\"JFK\",\"HOU\",0.00,-28.00,0.00,\"\",0.00,213.00,196.00,1428.00,,,,,,\n2015,5,14,\"B6\",\"581\",\"JFK\",\"HOU\",-5.00,-16.00,0.00,\"\",0.00,230.00,196.00,1428.00,,,,,,\n2015,5,15,\"B6\",\"581\",\"JFK\",\"HOU\",-3.00,-15.00,0.00,\"\",0.00,229.00,201.00,1428.00,,,,,,\n2015,5,16,\"B6\",\"581\",\"JFK\",\"HOU\",-11.00,-34.00,0.00,\"\",0.00,225.00,197.00,1428.00,,,,,,\n2015,5,17,\"B6\",\"581\",\"JFK\",\"HOU\",55.00,37.00,0.00,\"\",0.00,223.00,194.00,1428.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"581\",\"JFK\",\"HOU\",182.00,212.00,0.00,\"\",0.00,271.00,204.00,1428.00,19.00,0.00,30.00,0.00,163.00,\n2015,5,19,\"B6\",\"581\",\"JFK\",\"HOU\",-5.00,-19.00,0.00,\"\",0.00,227.00,193.00,1428.00,,,,,,\n2015,5,20,\"B6\",\"581\",\"JFK\",\"HOU\",-2.00,-32.00,0.00,\"\",0.00,211.00,194.00,1428.00,,,,,,\n2015,5,21,\"B6\",\"581\",\"JFK\",\"HOU\",-5.00,0.00,0.00,\"\",0.00,246.00,207.00,1428.00,,,,,,\n2015,5,22,\"B6\",\"581\",\"JFK\",\"HOU\",23.00,10.00,0.00,\"\",0.00,228.00,207.00,1428.00,,,,,,\n2015,5,23,\"B6\",\"581\",\"JFK\",\"HOU\",-5.00,-28.00,0.00,\"\",0.00,225.00,191.00,1428.00,,,,,,\n2015,5,24,\"B6\",\"581\",\"JFK\",\"HOU\",-4.00,5.00,0.00,\"\",0.00,250.00,226.00,1428.00,,,,,,\n2015,5,25,\"B6\",\"581\",\"JFK\",\"HOU\",-3.00,19.00,0.00,\"\",0.00,263.00,204.00,1428.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,26,\"B6\",\"581\",\"JFK\",\"HOU\",-3.00,-14.00,0.00,\"\",0.00,230.00,200.00,1428.00,,,,,,\n2015,5,27,\"B6\",\"581\",\"JFK\",\"HOU\",9.00,12.00,0.00,\"\",0.00,244.00,208.00,1428.00,,,,,,\n2015,5,28,\"B6\",\"581\",\"JFK\",\"HOU\",16.00,-11.00,0.00,\"\",0.00,214.00,194.00,1428.00,,,,,,\n2015,5,29,\"B6\",\"581\",\"JFK\",\"HOU\",-7.00,-24.00,0.00,\"\",0.00,224.00,195.00,1428.00,,,,,,\n2015,5,30,\"B6\",\"581\",\"JFK\",\"HOU\",-2.00,,0.00,\"\",1.00,,,1428.00,,,,,,\n2015,5,31,\"B6\",\"581\",\"JFK\",\"HOU\",-4.00,-17.00,0.00,\"\",0.00,228.00,190.00,1428.00,,,,,,\n2015,5,1,\"B6\",\"583\",\"JFK\",\"MCO\",-1.00,11.00,0.00,\"\",0.00,172.00,137.00,944.00,,,,,,\n2015,5,2,\"B6\",\"583\",\"JFK\",\"MCO\",3.00,5.00,0.00,\"\",0.00,162.00,127.00,944.00,,,,,,\n2015,5,3,\"B6\",\"583\",\"JFK\",\"MCO\",-1.00,-14.00,0.00,\"\",0.00,147.00,125.00,944.00,,,,,,\n2015,5,4,\"B6\",\"583\",\"JFK\",\"MCO\",-3.00,1.00,0.00,\"\",0.00,164.00,129.00,944.00,,,,,,\n2015,5,5,\"B6\",\"583\",\"JFK\",\"MCO\",-4.00,0.00,0.00,\"\",0.00,164.00,136.00,944.00,,,,,,\n2015,5,6,\"B6\",\"583\",\"JFK\",\"MCO\",-5.00,-13.00,0.00,\"\",0.00,152.00,134.00,944.00,,,,,,\n2015,5,7,\"B6\",\"583\",\"JFK\",\"MCO\",-4.00,-3.00,0.00,\"\",0.00,161.00,128.00,944.00,,,,,,\n2015,5,8,\"B6\",\"583\",\"JFK\",\"MCO\",0.00,-3.00,0.00,\"\",0.00,157.00,125.00,944.00,,,,,,\n2015,5,9,\"B6\",\"583\",\"JFK\",\"MCO\",-1.00,15.00,0.00,\"\",0.00,176.00,122.00,944.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,10,\"B6\",\"583\",\"JFK\",\"MCO\",-1.00,-15.00,0.00,\"\",0.00,146.00,125.00,944.00,,,,,,\n2015,5,11,\"B6\",\"583\",\"JFK\",\"MCO\",-3.00,-7.00,0.00,\"\",0.00,156.00,129.00,944.00,,,,,,\n2015,5,12,\"B6\",\"583\",\"JFK\",\"MCO\",-4.00,-17.00,0.00,\"\",0.00,147.00,126.00,944.00,,,,,,\n2015,5,13,\"B6\",\"583\",\"JFK\",\"MCO\",-7.00,-11.00,0.00,\"\",0.00,156.00,132.00,944.00,,,,,,\n2015,5,14,\"B6\",\"583\",\"JFK\",\"MCO\",-6.00,-28.00,0.00,\"\",0.00,138.00,120.00,944.00,,,,,,\n2015,5,15,\"B6\",\"583\",\"JFK\",\"MCO\",,,1.00,\"A\",0.00,,,944.00,,,,,,\n2015,5,16,\"B6\",\"583\",\"JFK\",\"MCO\",-3.00,-12.00,0.00,\"\",0.00,151.00,120.00,944.00,,,,,,\n2015,5,17,\"B6\",\"583\",\"JFK\",\"MCO\",-7.00,-9.00,0.00,\"\",0.00,158.00,124.00,944.00,,,,,,\n2015,5,18,\"B6\",\"583\",\"JFK\",\"MCO\",-4.00,-20.00,0.00,\"\",0.00,144.00,120.00,944.00,,,,,,\n2015,5,19,\"B6\",\"583\",\"JFK\",\"MCO\",-3.00,-17.00,0.00,\"\",0.00,146.00,123.00,944.00,,,,,,\n2015,5,20,\"B6\",\"583\",\"JFK\",\"MCO\",-4.00,-23.00,0.00,\"\",0.00,141.00,122.00,944.00,,,,,,\n2015,5,21,\"B6\",\"583\",\"JFK\",\"MCO\",-6.00,-8.00,0.00,\"\",0.00,158.00,135.00,944.00,,,,,,\n2015,5,22,\"B6\",\"583\",\"JFK\",\"MCO\",-4.00,-2.00,0.00,\"\",0.00,162.00,136.00,944.00,,,,,,\n2015,5,23,\"B6\",\"583\",\"JFK\",\"MCO\",-5.00,-17.00,0.00,\"\",0.00,148.00,131.00,944.00,,,,,,\n2015,5,24,\"B6\",\"583\",\"JFK\",\"MCO\",0.00,-1.00,0.00,\"\",0.00,159.00,123.00,944.00,,,,,,\n2015,5,25,\"B6\",\"583\",\"JFK\",\"MCO\",-5.00,-12.00,0.00,\"\",0.00,153.00,122.00,944.00,,,,,,\n2015,5,26,\"B6\",\"583\",\"JFK\",\"MCO\",-5.00,-11.00,0.00,\"\",0.00,154.00,128.00,944.00,,,,,,\n2015,5,27,\"B6\",\"583\",\"JFK\",\"MCO\",-5.00,-6.00,0.00,\"\",0.00,159.00,127.00,944.00,,,,,,\n2015,5,28,\"B6\",\"583\",\"JFK\",\"MCO\",-3.00,-9.00,0.00,\"\",0.00,154.00,130.00,944.00,,,,,,\n2015,5,29,\"B6\",\"583\",\"JFK\",\"MCO\",12.00,-2.00,0.00,\"\",0.00,146.00,125.00,944.00,,,,,,\n2015,5,30,\"B6\",\"583\",\"JFK\",\"MCO\",-2.00,-5.00,0.00,\"\",0.00,157.00,123.00,944.00,,,,,,\n2015,5,31,\"B6\",\"583\",\"JFK\",\"MCO\",-3.00,-16.00,0.00,\"\",0.00,147.00,125.00,944.00,,,,,,\n2015,5,1,\"B6\",\"584\",\"MCO\",\"JFK\",10.00,-13.00,0.00,\"\",0.00,133.00,115.00,944.00,,,,,,\n2015,5,2,\"B6\",\"584\",\"MCO\",\"JFK\",-4.00,20.00,0.00,\"\",0.00,180.00,128.00,944.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,3,\"B6\",\"584\",\"MCO\",\"JFK\",23.00,17.00,0.00,\"\",0.00,150.00,131.00,944.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"584\",\"MCO\",\"JFK\",3.00,4.00,0.00,\"\",0.00,157.00,133.00,944.00,,,,,,\n2015,5,5,\"B6\",\"584\",\"MCO\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,143.00,121.00,944.00,,,,,,\n2015,5,6,\"B6\",\"584\",\"MCO\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,136.00,121.00,944.00,,,,,,\n2015,5,7,\"B6\",\"584\",\"MCO\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,143.00,128.00,944.00,,,,,,\n2015,5,8,\"B6\",\"584\",\"MCO\",\"JFK\",1.00,-3.00,0.00,\"\",0.00,152.00,130.00,944.00,,,,,,\n2015,5,9,\"B6\",\"584\",\"MCO\",\"JFK\",28.00,27.00,0.00,\"\",0.00,155.00,130.00,944.00,17.00,0.00,0.00,0.00,10.00,\n2015,5,10,\"B6\",\"584\",\"MCO\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,146.00,126.00,944.00,,,,,,\n2015,5,11,\"B6\",\"584\",\"MCO\",\"JFK\",2.00,3.00,0.00,\"\",0.00,157.00,135.00,944.00,,,,,,\n2015,5,12,\"B6\",\"584\",\"MCO\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,141.00,125.00,944.00,,,,,,\n2015,5,13,\"B6\",\"584\",\"MCO\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,140.00,121.00,944.00,,,,,,\n2015,5,14,\"B6\",\"584\",\"MCO\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,145.00,130.00,944.00,,,,,,\n2015,5,15,\"B6\",\"584\",\"MCO\",\"JFK\",,,1.00,\"A\",0.00,,,944.00,,,,,,\n2015,5,16,\"B6\",\"584\",\"MCO\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,140.00,125.00,944.00,,,,,,\n2015,5,17,\"B6\",\"584\",\"MCO\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,146.00,126.00,944.00,,,,,,\n2015,5,18,\"B6\",\"584\",\"MCO\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,144.00,127.00,944.00,,,,,,\n2015,5,19,\"B6\",\"584\",\"MCO\",\"JFK\",4.00,-11.00,0.00,\"\",0.00,141.00,126.00,944.00,,,,,,\n2015,5,20,\"B6\",\"584\",\"MCO\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,138.00,124.00,944.00,,,,,,\n2015,5,21,\"B6\",\"584\",\"MCO\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,136.00,121.00,944.00,,,,,,\n2015,5,22,\"B6\",\"584\",\"MCO\",\"JFK\",7.00,-14.00,0.00,\"\",0.00,135.00,117.00,944.00,,,,,,\n2015,5,23,\"B6\",\"584\",\"MCO\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,138.00,122.00,944.00,,,,,,\n2015,5,24,\"B6\",\"584\",\"MCO\",\"JFK\",6.00,-3.00,0.00,\"\",0.00,147.00,129.00,944.00,,,,,,\n2015,5,25,\"B6\",\"584\",\"MCO\",\"JFK\",8.00,-15.00,0.00,\"\",0.00,133.00,120.00,944.00,,,,,,\n2015,5,26,\"B6\",\"584\",\"MCO\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,141.00,124.00,944.00,,,,,,\n2015,5,27,\"B6\",\"584\",\"MCO\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,140.00,125.00,944.00,,,,,,\n2015,5,28,\"B6\",\"584\",\"MCO\",\"JFK\",8.00,-6.00,0.00,\"\",0.00,142.00,124.00,944.00,,,,,,\n2015,5,29,\"B6\",\"584\",\"MCO\",\"JFK\",1.00,-15.00,0.00,\"\",0.00,140.00,127.00,944.00,,,,,,\n2015,5,30,\"B6\",\"584\",\"MCO\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,144.00,125.00,944.00,,,,,,\n2015,5,31,\"B6\",\"584\",\"MCO\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,148.00,126.00,944.00,,,,,,\n2015,5,1,\"B6\",\"585\",\"ROC\",\"JFK\",-9.00,-12.00,0.00,\"\",0.00,85.00,64.00,264.00,,,,,,\n2015,5,3,\"B6\",\"585\",\"ROC\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,72.00,56.00,264.00,,,,,,\n2015,5,4,\"B6\",\"585\",\"ROC\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,67.00,55.00,264.00,,,,,,\n2015,5,5,\"B6\",\"585\",\"ROC\",\"JFK\",50.00,29.00,0.00,\"\",0.00,67.00,46.00,264.00,0.00,0.00,0.00,0.00,29.00,\n2015,5,6,\"B6\",\"585\",\"ROC\",\"JFK\",-12.00,-30.00,0.00,\"\",0.00,70.00,53.00,264.00,,,,,,\n2015,5,7,\"B6\",\"585\",\"ROC\",\"JFK\",-11.00,-5.00,0.00,\"\",0.00,94.00,76.00,264.00,,,,,,\n2015,5,8,\"B6\",\"585\",\"ROC\",\"JFK\",125.00,137.00,0.00,\"\",0.00,100.00,73.00,264.00,0.00,0.00,137.00,0.00,0.00,\n2015,5,10,\"B6\",\"585\",\"ROC\",\"JFK\",33.00,17.00,0.00,\"\",0.00,72.00,55.00,264.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,11,\"B6\",\"585\",\"ROC\",\"JFK\",50.00,41.00,0.00,\"\",0.00,79.00,59.00,264.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,12,\"B6\",\"585\",\"ROC\",\"JFK\",-13.00,-11.00,0.00,\"\",0.00,90.00,49.00,264.00,,,,,,\n2015,5,13,\"B6\",\"585\",\"ROC\",\"JFK\",53.00,29.00,0.00,\"\",0.00,64.00,52.00,264.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,14,\"B6\",\"585\",\"ROC\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,73.00,55.00,264.00,,,,,,\n2015,5,15,\"B6\",\"585\",\"ROC\",\"JFK\",-11.00,-25.00,0.00,\"\",0.00,74.00,60.00,264.00,,,,,,\n2015,5,17,\"B6\",\"585\",\"ROC\",\"JFK\",-10.00,-14.00,0.00,\"\",0.00,84.00,68.00,264.00,,,,,,\n2015,5,18,\"B6\",\"585\",\"ROC\",\"JFK\",208.00,200.00,0.00,\"\",0.00,80.00,66.00,264.00,5.00,0.00,0.00,0.00,195.00,\n2015,5,19,\"B6\",\"585\",\"ROC\",\"JFK\",-10.00,-21.00,0.00,\"\",0.00,77.00,62.00,264.00,,,,,,\n2015,5,20,\"B6\",\"585\",\"ROC\",\"JFK\",75.00,51.00,0.00,\"\",0.00,64.00,49.00,264.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,21,\"B6\",\"585\",\"ROC\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,68.00,55.00,264.00,,,,,,\n2015,5,22,\"B6\",\"585\",\"ROC\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,74.00,55.00,264.00,,,,,,\n2015,5,24,\"B6\",\"585\",\"ROC\",\"JFK\",-10.00,-25.00,0.00,\"\",0.00,73.00,59.00,264.00,,,,,,\n2015,5,25,\"B6\",\"585\",\"ROC\",\"JFK\",-12.00,-35.00,0.00,\"\",0.00,65.00,51.00,264.00,,,,,,\n2015,5,26,\"B6\",\"585\",\"ROC\",\"JFK\",-19.00,-40.00,0.00,\"\",0.00,67.00,54.00,264.00,,,,,,\n2015,5,27,\"B6\",\"585\",\"ROC\",\"JFK\",,,1.00,\"C\",0.00,,,264.00,,,,,,\n2015,5,28,\"B6\",\"585\",\"ROC\",\"JFK\",-12.00,-23.00,0.00,\"\",0.00,77.00,59.00,264.00,,,,,,\n2015,5,29,\"B6\",\"585\",\"ROC\",\"JFK\",-16.00,-37.00,0.00,\"\",0.00,67.00,51.00,264.00,,,,,,\n2015,5,31,\"B6\",\"585\",\"ROC\",\"JFK\",223.00,231.00,0.00,\"\",0.00,96.00,81.00,264.00,0.00,0.00,231.00,0.00,0.00,\n2015,5,1,\"B6\",\"586\",\"JFK\",\"ROC\",-6.00,-7.00,0.00,\"\",0.00,88.00,46.00,264.00,,,,,,\n2015,5,2,\"B6\",\"586\",\"JFK\",\"ROC\",-8.00,-20.00,0.00,\"\",0.00,77.00,48.00,264.00,,,,,,\n2015,5,3,\"B6\",\"586\",\"JFK\",\"ROC\",3.00,-6.00,0.00,\"\",0.00,80.00,50.00,264.00,,,,,,\n2015,5,4,\"B6\",\"586\",\"JFK\",\"ROC\",-1.00,-8.00,0.00,\"\",0.00,82.00,49.00,264.00,,,,,,\n2015,5,5,\"B6\",\"586\",\"JFK\",\"ROC\",-4.00,-18.00,0.00,\"\",0.00,75.00,53.00,264.00,,,,,,\n2015,5,6,\"B6\",\"586\",\"JFK\",\"ROC\",-5.00,-9.00,0.00,\"\",0.00,85.00,51.00,264.00,,,,,,\n2015,5,7,\"B6\",\"586\",\"JFK\",\"ROC\",-5.00,-17.00,0.00,\"\",0.00,77.00,47.00,264.00,,,,,,\n2015,5,8,\"B6\",\"586\",\"JFK\",\"ROC\",60.00,45.00,0.00,\"\",0.00,74.00,48.00,264.00,45.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"B6\",\"586\",\"JFK\",\"ROC\",-2.00,-7.00,0.00,\"\",0.00,84.00,48.00,264.00,,,,,,\n2015,5,10,\"B6\",\"586\",\"JFK\",\"ROC\",-6.00,-22.00,0.00,\"\",0.00,73.00,49.00,264.00,,,,,,\n2015,5,11,\"B6\",\"586\",\"JFK\",\"ROC\",-10.00,-17.00,0.00,\"\",0.00,82.00,48.00,264.00,,,,,,\n2015,5,12,\"B6\",\"586\",\"JFK\",\"ROC\",-4.00,-6.00,0.00,\"\",0.00,87.00,52.00,264.00,,,,,,\n2015,5,13,\"B6\",\"586\",\"JFK\",\"ROC\",-5.00,-3.00,0.00,\"\",0.00,91.00,53.00,264.00,,,,,,\n2015,5,14,\"B6\",\"586\",\"JFK\",\"ROC\",-7.00,2.00,0.00,\"\",0.00,98.00,55.00,264.00,,,,,,\n2015,5,15,\"B6\",\"586\",\"JFK\",\"ROC\",-2.00,-6.00,0.00,\"\",0.00,85.00,50.00,264.00,,,,,,\n2015,5,16,\"B6\",\"586\",\"JFK\",\"ROC\",-2.00,12.00,0.00,\"\",0.00,103.00,52.00,264.00,,,,,,\n2015,5,17,\"B6\",\"586\",\"JFK\",\"ROC\",-6.00,-10.00,0.00,\"\",0.00,85.00,51.00,264.00,,,,,,\n2015,5,18,\"B6\",\"586\",\"JFK\",\"ROC\",-1.00,9.00,0.00,\"\",0.00,99.00,47.00,264.00,,,,,,\n2015,5,19,\"B6\",\"586\",\"JFK\",\"ROC\",-3.00,-4.00,0.00,\"\",0.00,88.00,50.00,264.00,,,,,,\n2015,5,20,\"B6\",\"586\",\"JFK\",\"ROC\",-1.00,14.00,0.00,\"\",0.00,104.00,58.00,264.00,,,,,,\n2015,5,21,\"B6\",\"586\",\"JFK\",\"ROC\",-7.00,-14.00,0.00,\"\",0.00,82.00,52.00,264.00,,,,,,\n2015,5,22,\"B6\",\"586\",\"JFK\",\"ROC\",57.00,81.00,0.00,\"\",0.00,113.00,54.00,264.00,57.00,0.00,24.00,0.00,0.00,\n2015,5,23,\"B6\",\"586\",\"JFK\",\"ROC\",83.00,91.00,0.00,\"\",0.00,97.00,77.00,264.00,83.00,0.00,8.00,0.00,0.00,\n2015,5,24,\"B6\",\"586\",\"JFK\",\"ROC\",-3.00,-26.00,0.00,\"\",0.00,66.00,51.00,264.00,,,,,,\n2015,5,25,\"B6\",\"586\",\"JFK\",\"ROC\",-3.00,-11.00,0.00,\"\",0.00,81.00,50.00,264.00,,,,,,\n2015,5,26,\"B6\",\"586\",\"JFK\",\"ROC\",-2.00,-11.00,0.00,\"\",0.00,80.00,49.00,264.00,,,,,,\n2015,5,27,\"B6\",\"586\",\"JFK\",\"ROC\",-10.00,-15.00,0.00,\"\",0.00,84.00,48.00,264.00,,,,,,\n2015,5,28,\"B6\",\"586\",\"JFK\",\"ROC\",-4.00,-14.00,0.00,\"\",0.00,79.00,52.00,264.00,,,,,,\n2015,5,29,\"B6\",\"586\",\"JFK\",\"ROC\",-9.00,-21.00,0.00,\"\",0.00,77.00,47.00,264.00,,,,,,\n2015,5,30,\"B6\",\"586\",\"JFK\",\"ROC\",-1.00,-3.00,0.00,\"\",0.00,87.00,47.00,264.00,,,,,,\n2015,5,31,\"B6\",\"586\",\"JFK\",\"ROC\",-4.00,-15.00,0.00,\"\",0.00,78.00,50.00,264.00,,,,,,\n2015,5,1,\"B6\",\"601\",\"JFK\",\"FLL\",-4.00,-7.00,0.00,\"\",0.00,175.00,150.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"601\",\"JFK\",\"FLL\",-4.00,-3.00,0.00,\"\",0.00,179.00,144.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"601\",\"JFK\",\"FLL\",-4.00,-15.00,0.00,\"\",0.00,167.00,149.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"601\",\"JFK\",\"FLL\",-8.00,-3.00,0.00,\"\",0.00,183.00,148.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"601\",\"JFK\",\"FLL\",-9.00,0.00,0.00,\"\",0.00,187.00,151.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"601\",\"JFK\",\"FLL\",-9.00,-4.00,0.00,\"\",0.00,183.00,154.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"601\",\"JFK\",\"FLL\",-4.00,-2.00,0.00,\"\",0.00,180.00,148.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"601\",\"JFK\",\"FLL\",-4.00,-9.00,0.00,\"\",0.00,173.00,145.00,1069.00,,,,,,\n2015,5,9,\"B6\",\"601\",\"JFK\",\"FLL\",-3.00,-12.00,0.00,\"\",0.00,169.00,141.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"601\",\"JFK\",\"FLL\",-7.00,-16.00,0.00,\"\",0.00,169.00,148.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"601\",\"JFK\",\"FLL\",-8.00,-17.00,0.00,\"\",0.00,169.00,146.00,1069.00,,,,,,\n2015,5,12,\"B6\",\"601\",\"JFK\",\"FLL\",-5.00,-12.00,0.00,\"\",0.00,171.00,144.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"601\",\"JFK\",\"FLL\",28.00,21.00,0.00,\"\",0.00,171.00,155.00,1069.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"B6\",\"601\",\"JFK\",\"FLL\",-4.00,-23.00,0.00,\"\",0.00,159.00,135.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"601\",\"JFK\",\"FLL\",-4.00,-11.00,0.00,\"\",0.00,171.00,152.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"601\",\"JFK\",\"FLL\",-3.00,-23.00,0.00,\"\",0.00,158.00,136.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"601\",\"JFK\",\"FLL\",-4.00,-22.00,0.00,\"\",0.00,160.00,141.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"601\",\"JFK\",\"FLL\",-6.00,-4.00,0.00,\"\",0.00,180.00,136.00,1069.00,,,,,,\n2015,5,19,\"B6\",\"601\",\"JFK\",\"FLL\",-2.00,-13.00,0.00,\"\",0.00,167.00,142.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"601\",\"JFK\",\"FLL\",-5.00,-25.00,0.00,\"\",0.00,158.00,136.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"601\",\"JFK\",\"FLL\",-5.00,-14.00,0.00,\"\",0.00,169.00,149.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"601\",\"JFK\",\"FLL\",-5.00,-18.00,0.00,\"\",0.00,165.00,144.00,1069.00,,,,,,\n2015,5,23,\"B6\",\"601\",\"JFK\",\"FLL\",-5.00,-19.00,0.00,\"\",0.00,164.00,143.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"601\",\"JFK\",\"FLL\",-2.00,-20.00,0.00,\"\",0.00,160.00,139.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"601\",\"JFK\",\"FLL\",-7.00,-16.00,0.00,\"\",0.00,169.00,142.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"601\",\"JFK\",\"FLL\",-5.00,-8.00,0.00,\"\",0.00,175.00,144.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"601\",\"JFK\",\"FLL\",-2.00,-15.00,0.00,\"\",0.00,165.00,142.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"601\",\"JFK\",\"FLL\",-7.00,-2.00,0.00,\"\",0.00,183.00,147.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"601\",\"JFK\",\"FLL\",-6.00,-22.00,0.00,\"\",0.00,162.00,138.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"601\",\"JFK\",\"FLL\",-6.00,-20.00,0.00,\"\",0.00,164.00,134.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"601\",\"JFK\",\"FLL\",-7.00,-33.00,0.00,\"\",0.00,152.00,136.00,1069.00,,,,,,\n2015,5,1,\"B6\",\"605\",\"JFK\",\"ORD\",-3.00,-23.00,0.00,\"\",0.00,139.00,105.00,740.00,,,,,,\n2015,5,2,\"B6\",\"605\",\"JFK\",\"ORD\",-1.00,-15.00,0.00,\"\",0.00,145.00,111.00,740.00,,,,,,\n2015,5,3,\"B6\",\"605\",\"JFK\",\"ORD\",-2.00,-15.00,0.00,\"\",0.00,146.00,111.00,740.00,,,,,,\n2015,5,4,\"B6\",\"605\",\"JFK\",\"ORD\",-5.00,-15.00,0.00,\"\",0.00,149.00,112.00,740.00,,,,,,\n2015,5,5,\"B6\",\"605\",\"JFK\",\"ORD\",-4.00,17.00,0.00,\"\",0.00,180.00,144.00,740.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,6,\"B6\",\"605\",\"JFK\",\"ORD\",-5.00,-12.00,0.00,\"\",0.00,152.00,119.00,740.00,,,,,,\n2015,5,7,\"B6\",\"605\",\"JFK\",\"ORD\",32.00,17.00,0.00,\"\",0.00,144.00,108.00,740.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"B6\",\"605\",\"JFK\",\"ORD\",-1.00,-13.00,0.00,\"\",0.00,147.00,112.00,740.00,,,,,,\n2015,5,9,\"B6\",\"605\",\"JFK\",\"ORD\",0.00,-11.00,0.00,\"\",0.00,148.00,114.00,740.00,,,,,,\n2015,5,10,\"B6\",\"605\",\"JFK\",\"ORD\",22.00,40.00,0.00,\"\",0.00,177.00,118.00,740.00,8.00,0.00,18.00,0.00,14.00,\n2015,5,11,\"B6\",\"605\",\"JFK\",\"ORD\",-4.00,-20.00,0.00,\"\",0.00,143.00,118.00,740.00,,,,,,\n2015,5,12,\"B6\",\"605\",\"JFK\",\"ORD\",10.00,9.00,0.00,\"\",0.00,158.00,134.00,740.00,,,,,,\n2015,5,13,\"B6\",\"605\",\"JFK\",\"ORD\",-1.00,6.00,0.00,\"\",0.00,166.00,128.00,740.00,,,,,,\n2015,5,14,\"B6\",\"605\",\"JFK\",\"ORD\",-5.00,-14.00,0.00,\"\",0.00,150.00,121.00,740.00,,,,,,\n2015,5,15,\"B6\",\"605\",\"JFK\",\"ORD\",-1.00,-5.00,0.00,\"\",0.00,155.00,123.00,740.00,,,,,,\n2015,5,16,\"B6\",\"605\",\"JFK\",\"ORD\",8.00,-7.00,0.00,\"\",0.00,144.00,114.00,740.00,,,,,,\n2015,5,17,\"B6\",\"605\",\"JFK\",\"ORD\",-6.00,-11.00,0.00,\"\",0.00,154.00,113.00,740.00,,,,,,\n2015,5,18,\"B6\",\"605\",\"JFK\",\"ORD\",32.00,21.00,0.00,\"\",0.00,148.00,114.00,740.00,9.00,0.00,0.00,0.00,12.00,\n2015,5,19,\"B6\",\"605\",\"JFK\",\"ORD\",13.00,3.00,0.00,\"\",0.00,149.00,122.00,740.00,,,,,,\n2015,5,20,\"B6\",\"605\",\"JFK\",\"ORD\",-1.00,-1.00,0.00,\"\",0.00,159.00,128.00,740.00,,,,,,\n2015,5,21,\"B6\",\"605\",\"JFK\",\"ORD\",12.00,7.00,0.00,\"\",0.00,154.00,119.00,740.00,,,,,,\n2015,5,22,\"B6\",\"605\",\"JFK\",\"ORD\",-3.00,-1.00,0.00,\"\",0.00,161.00,125.00,740.00,,,,,,\n2015,5,23,\"B6\",\"605\",\"JFK\",\"ORD\",2.00,-15.00,0.00,\"\",0.00,142.00,122.00,740.00,,,,,,\n2015,5,24,\"B6\",\"605\",\"JFK\",\"ORD\",19.00,29.00,0.00,\"\",0.00,169.00,131.00,740.00,19.00,0.00,10.00,0.00,0.00,\n2015,5,25,\"B6\",\"605\",\"JFK\",\"ORD\",-2.00,-4.00,0.00,\"\",0.00,157.00,120.00,740.00,,,,,,\n2015,5,26,\"B6\",\"605\",\"JFK\",\"ORD\",-5.00,-23.00,0.00,\"\",0.00,141.00,113.00,740.00,,,,,,\n2015,5,27,\"B6\",\"605\",\"JFK\",\"ORD\",8.00,7.00,0.00,\"\",0.00,158.00,133.00,740.00,,,,,,\n2015,5,28,\"B6\",\"605\",\"JFK\",\"ORD\",-8.00,-6.00,0.00,\"\",0.00,161.00,118.00,740.00,,,,,,\n2015,5,29,\"B6\",\"605\",\"JFK\",\"ORD\",19.00,8.00,0.00,\"\",0.00,148.00,116.00,740.00,,,,,,\n2015,5,30,\"B6\",\"605\",\"JFK\",\"ORD\",3.00,-3.00,0.00,\"\",0.00,153.00,120.00,740.00,,,,,,\n2015,5,31,\"B6\",\"605\",\"JFK\",\"ORD\",6.00,31.00,0.00,\"\",0.00,184.00,130.00,740.00,6.00,0.00,25.00,0.00,0.00,\n2015,5,1,\"B6\",\"606\",\"ORD\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,128.00,110.00,740.00,,,,,,\n2015,5,2,\"B6\",\"606\",\"ORD\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,124.00,106.00,740.00,,,,,,\n2015,5,3,\"B6\",\"606\",\"ORD\",\"JFK\",2.00,-19.00,0.00,\"\",0.00,119.00,102.00,740.00,,,,,,\n2015,5,4,\"B6\",\"606\",\"ORD\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,134.00,100.00,740.00,,,,,,\n2015,5,5,\"B6\",\"606\",\"ORD\",\"JFK\",20.00,11.00,0.00,\"\",0.00,131.00,103.00,740.00,,,,,,\n2015,5,6,\"B6\",\"606\",\"ORD\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,132.00,108.00,740.00,,,,,,\n2015,5,7,\"B6\",\"606\",\"ORD\",\"JFK\",17.00,13.00,0.00,\"\",0.00,136.00,107.00,740.00,,,,,,\n2015,5,8,\"B6\",\"606\",\"ORD\",\"JFK\",18.00,105.00,0.00,\"\",0.00,227.00,109.00,740.00,0.00,0.00,105.00,0.00,0.00,\n2015,5,9,\"B6\",\"606\",\"ORD\",\"JFK\",18.00,16.00,0.00,\"\",0.00,138.00,101.00,740.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,10,\"B6\",\"606\",\"ORD\",\"JFK\",46.00,48.00,0.00,\"\",0.00,142.00,106.00,740.00,0.00,0.00,14.00,0.00,34.00,\n2015,5,11,\"B6\",\"606\",\"ORD\",\"JFK\",19.00,16.00,0.00,\"\",0.00,137.00,102.00,740.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,12,\"B6\",\"606\",\"ORD\",\"JFK\",17.00,9.00,0.00,\"\",0.00,132.00,90.00,740.00,,,,,,\n2015,5,13,\"B6\",\"606\",\"ORD\",\"JFK\",48.00,23.00,0.00,\"\",0.00,115.00,91.00,740.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,14,\"B6\",\"606\",\"ORD\",\"JFK\",-3.00,-6.00,0.00,\"\",0.00,137.00,102.00,740.00,,,,,,\n2015,5,15,\"B6\",\"606\",\"ORD\",\"JFK\",6.00,-6.00,0.00,\"\",0.00,128.00,105.00,740.00,,,,,,\n2015,5,16,\"B6\",\"606\",\"ORD\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,117.00,101.00,740.00,,,,,,\n2015,5,17,\"B6\",\"606\",\"ORD\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,123.00,106.00,740.00,,,,,,\n2015,5,18,\"B6\",\"606\",\"ORD\",\"JFK\",42.00,116.00,0.00,\"\",0.00,214.00,125.00,740.00,0.00,0.00,101.00,0.00,15.00,\n2015,5,19,\"B6\",\"606\",\"ORD\",\"JFK\",2.00,-11.00,0.00,\"\",0.00,127.00,98.00,740.00,,,,,,\n2015,5,20,\"B6\",\"606\",\"ORD\",\"JFK\",30.00,22.00,0.00,\"\",0.00,132.00,90.00,740.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,21,\"B6\",\"606\",\"ORD\",\"JFK\",6.00,0.00,0.00,\"\",0.00,134.00,103.00,740.00,,,,,,\n2015,5,22,\"B6\",\"606\",\"ORD\",\"JFK\",41.00,55.00,0.00,\"\",0.00,154.00,101.00,740.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,23,\"B6\",\"606\",\"ORD\",\"JFK\",-9.00,-39.00,0.00,\"\",0.00,110.00,97.00,740.00,,,,,,\n2015,5,24,\"B6\",\"606\",\"ORD\",\"JFK\",23.00,6.00,0.00,\"\",0.00,123.00,97.00,740.00,,,,,,\n2015,5,25,\"B6\",\"606\",\"ORD\",\"JFK\",31.00,20.00,0.00,\"\",0.00,129.00,106.00,740.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"B6\",\"606\",\"ORD\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,130.00,102.00,740.00,,,,,,\n2015,5,27,\"B6\",\"606\",\"ORD\",\"JFK\",174.00,183.00,0.00,\"\",0.00,149.00,116.00,740.00,0.00,174.00,9.00,0.00,0.00,\n2015,5,28,\"B6\",\"606\",\"ORD\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,137.00,101.00,740.00,,,,,,\n2015,5,29,\"B6\",\"606\",\"ORD\",\"JFK\",6.00,-7.00,0.00,\"\",0.00,127.00,104.00,740.00,,,,,,\n2015,5,30,\"B6\",\"606\",\"ORD\",\"JFK\",4.00,10.00,0.00,\"\",0.00,146.00,105.00,740.00,,,,,,\n2015,5,31,\"B6\",\"606\",\"ORD\",\"JFK\",211.00,254.00,0.00,\"\",0.00,183.00,115.00,740.00,0.00,0.00,229.00,0.00,25.00,\n2015,5,1,\"B6\",\"611\",\"JFK\",\"LAS\",13.00,-20.00,0.00,\"\",0.00,325.00,296.00,2248.00,,,,,,\n2015,5,3,\"B6\",\"611\",\"JFK\",\"LAS\",11.00,-11.00,0.00,\"\",0.00,336.00,300.00,2248.00,,,,,,\n2015,5,4,\"B6\",\"611\",\"JFK\",\"LAS\",-2.00,-27.00,0.00,\"\",0.00,333.00,290.00,2248.00,,,,,,\n2015,5,5,\"B6\",\"611\",\"JFK\",\"LAS\",-4.00,-24.00,0.00,\"\",0.00,338.00,285.00,2248.00,,,,,,\n2015,5,6,\"B6\",\"611\",\"JFK\",\"LAS\",-5.00,-29.00,0.00,\"\",0.00,334.00,288.00,2248.00,,,,,,\n2015,5,7,\"B6\",\"611\",\"JFK\",\"LAS\",-4.00,-8.00,0.00,\"\",0.00,354.00,309.00,2248.00,,,,,,\n2015,5,8,\"B6\",\"611\",\"JFK\",\"LAS\",3.00,-17.00,0.00,\"\",0.00,338.00,303.00,2248.00,,,,,,\n2015,5,10,\"B6\",\"611\",\"JFK\",\"LAS\",5.00,-16.00,0.00,\"\",0.00,337.00,306.00,2248.00,,,,,,\n2015,5,11,\"B6\",\"611\",\"JFK\",\"LAS\",-1.00,8.00,0.00,\"\",0.00,367.00,321.00,2248.00,,,,,,\n2015,5,12,\"B6\",\"611\",\"JFK\",\"LAS\",86.00,85.00,0.00,\"\",0.00,357.00,316.00,2248.00,0.00,0.00,0.00,85.00,0.00,\n2015,5,13,\"B6\",\"611\",\"JFK\",\"LAS\",100.00,79.00,0.00,\"\",0.00,337.00,295.00,2248.00,79.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"B6\",\"611\",\"JFK\",\"LAS\",-2.00,-15.00,0.00,\"\",0.00,345.00,298.00,2248.00,,,,,,\n2015,5,15,\"B6\",\"611\",\"JFK\",\"LAS\",-4.00,-16.00,0.00,\"\",0.00,346.00,304.00,2248.00,,,,,,\n2015,5,16,\"B6\",\"611\",\"JFK\",\"LAS\",-6.00,-9.00,0.00,\"\",0.00,355.00,309.00,2248.00,,,,,,\n2015,5,17,\"B6\",\"611\",\"JFK\",\"LAS\",8.00,-3.00,0.00,\"\",0.00,347.00,300.00,2248.00,,,,,,\n2015,5,18,\"B6\",\"611\",\"JFK\",\"LAS\",1.00,62.00,0.00,\"\",0.00,419.00,320.00,2248.00,1.00,0.00,61.00,0.00,0.00,\n2015,5,19,\"B6\",\"611\",\"JFK\",\"LAS\",-3.00,22.00,0.00,\"\",0.00,383.00,322.00,2248.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,20,\"B6\",\"611\",\"JFK\",\"LAS\",-4.00,-2.00,0.00,\"\",0.00,360.00,322.00,2248.00,,,,,,\n2015,5,21,\"B6\",\"611\",\"JFK\",\"LAS\",17.00,16.00,0.00,\"\",0.00,357.00,312.00,2248.00,4.00,0.00,0.00,0.00,12.00,\n2015,5,22,\"B6\",\"611\",\"JFK\",\"LAS\",0.00,6.00,0.00,\"\",0.00,364.00,318.00,2248.00,,,,,,\n2015,5,23,\"B6\",\"611\",\"JFK\",\"LAS\",-8.00,-14.00,0.00,\"\",0.00,352.00,317.00,2248.00,,,,,,\n2015,5,24,\"B6\",\"611\",\"JFK\",\"LAS\",-5.00,-27.00,0.00,\"\",0.00,336.00,301.00,2248.00,,,,,,\n2015,5,25,\"B6\",\"611\",\"JFK\",\"LAS\",-6.00,-23.00,0.00,\"\",0.00,341.00,306.00,2248.00,,,,,,\n2015,5,26,\"B6\",\"611\",\"JFK\",\"LAS\",1.00,-20.00,0.00,\"\",0.00,337.00,299.00,2248.00,,,,,,\n2015,5,27,\"B6\",\"611\",\"JFK\",\"LAS\",,,1.00,\"C\",0.00,,,2248.00,,,,,,\n2015,5,28,\"B6\",\"611\",\"JFK\",\"LAS\",-3.00,-17.00,0.00,\"\",0.00,344.00,298.00,2248.00,,,,,,\n2015,5,29,\"B6\",\"611\",\"JFK\",\"LAS\",-5.00,-28.00,0.00,\"\",0.00,335.00,289.00,2248.00,,,,,,\n2015,5,30,\"B6\",\"611\",\"JFK\",\"LAS\",-5.00,-31.00,0.00,\"\",0.00,332.00,301.00,2248.00,,,,,,\n2015,5,31,\"B6\",\"611\",\"JFK\",\"LAS\",92.00,194.00,0.00,\"\",0.00,460.00,322.00,2248.00,0.00,92.00,102.00,0.00,0.00,\n2015,5,1,\"B6\",\"615\",\"JFK\",\"SFO\",-4.00,-31.00,0.00,\"\",0.00,363.00,333.00,2586.00,,,,,,\n2015,5,2,\"B6\",\"615\",\"JFK\",\"SFO\",-2.00,-31.00,0.00,\"\",0.00,361.00,334.00,2586.00,,,,,,\n2015,5,3,\"B6\",\"615\",\"JFK\",\"SFO\",-2.00,-25.00,0.00,\"\",0.00,367.00,329.00,2586.00,,,,,,\n2015,5,4,\"B6\",\"615\",\"JFK\",\"SFO\",6.00,2.00,0.00,\"\",0.00,386.00,358.00,2586.00,,,,,,\n2015,5,5,\"B6\",\"615\",\"JFK\",\"SFO\",-5.00,-30.00,0.00,\"\",0.00,365.00,324.00,2586.00,,,,,,\n2015,5,6,\"B6\",\"615\",\"JFK\",\"SFO\",-2.00,-41.00,0.00,\"\",0.00,351.00,320.00,2586.00,,,,,,\n2015,5,7,\"B6\",\"615\",\"JFK\",\"SFO\",-3.00,-30.00,0.00,\"\",0.00,363.00,334.00,2586.00,,,,,,\n2015,5,8,\"B6\",\"615\",\"JFK\",\"SFO\",-1.00,-17.00,0.00,\"\",0.00,374.00,336.00,2586.00,,,,,,\n2015,5,9,\"B6\",\"615\",\"JFK\",\"SFO\",-10.00,-28.00,0.00,\"\",0.00,372.00,336.00,2586.00,,,,,,\n2015,5,10,\"B6\",\"615\",\"JFK\",\"SFO\",-6.00,-19.00,0.00,\"\",0.00,377.00,347.00,2586.00,,,,,,\n2015,5,11,\"B6\",\"615\",\"JFK\",\"SFO\",-3.00,-12.00,0.00,\"\",0.00,381.00,347.00,2586.00,,,,,,\n2015,5,12,\"B6\",\"615\",\"JFK\",\"SFO\",-1.00,7.00,0.00,\"\",0.00,398.00,372.00,2586.00,,,,,,\n2015,5,13,\"B6\",\"615\",\"JFK\",\"SFO\",-9.00,-17.00,0.00,\"\",0.00,382.00,356.00,2586.00,,,,,,\n2015,5,14,\"B6\",\"615\",\"JFK\",\"SFO\",-5.00,-20.00,0.00,\"\",0.00,375.00,342.00,2586.00,,,,,,\n2015,5,15,\"B6\",\"615\",\"JFK\",\"SFO\",-3.00,-21.00,0.00,\"\",0.00,372.00,344.00,2586.00,,,,,,\n2015,5,16,\"B6\",\"615\",\"JFK\",\"SFO\",-2.00,-15.00,0.00,\"\",0.00,377.00,344.00,2586.00,,,,,,\n2015,5,17,\"B6\",\"615\",\"JFK\",\"SFO\",-7.00,-20.00,0.00,\"\",0.00,377.00,342.00,2586.00,,,,,,\n2015,5,18,\"B6\",\"615\",\"JFK\",\"SFO\",53.00,85.00,0.00,\"\",0.00,422.00,353.00,2586.00,0.00,53.00,32.00,0.00,0.00,\n2015,5,19,\"B6\",\"615\",\"JFK\",\"SFO\",2.00,17.00,0.00,\"\",0.00,405.00,351.00,2586.00,2.00,0.00,15.00,0.00,0.00,\n2015,5,20,\"B6\",\"615\",\"JFK\",\"SFO\",27.00,57.00,0.00,\"\",0.00,420.00,372.00,2586.00,0.00,0.00,57.00,0.00,0.00,\n2015,5,21,\"B6\",\"615\",\"JFK\",\"SFO\",0.00,-9.00,0.00,\"\",0.00,381.00,359.00,2586.00,,,,,,\n2015,5,22,\"B6\",\"615\",\"JFK\",\"SFO\",36.00,42.00,0.00,\"\",0.00,396.00,345.00,2586.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,23,\"B6\",\"615\",\"JFK\",\"SFO\",-7.00,-23.00,0.00,\"\",0.00,374.00,352.00,2586.00,,,,,,\n2015,5,24,\"B6\",\"615\",\"JFK\",\"SFO\",-1.00,-20.00,0.00,\"\",0.00,371.00,338.00,2586.00,,,,,,\n2015,5,25,\"B6\",\"615\",\"JFK\",\"SFO\",6.00,-2.00,0.00,\"\",0.00,382.00,331.00,2586.00,,,,,,\n2015,5,26,\"B6\",\"615\",\"JFK\",\"SFO\",-2.00,-10.00,0.00,\"\",0.00,382.00,327.00,2586.00,,,,,,\n2015,5,27,\"B6\",\"615\",\"JFK\",\"SFO\",-3.00,-20.00,0.00,\"\",0.00,373.00,344.00,2586.00,,,,,,\n2015,5,28,\"B6\",\"615\",\"JFK\",\"SFO\",-3.00,-16.00,0.00,\"\",0.00,377.00,344.00,2586.00,,,,,,\n2015,5,29,\"B6\",\"615\",\"JFK\",\"SFO\",-4.00,-4.00,0.00,\"\",0.00,390.00,337.00,2586.00,,,,,,\n2015,5,30,\"B6\",\"615\",\"JFK\",\"SFO\",10.00,-27.00,0.00,\"\",0.00,353.00,324.00,2586.00,,,,,,\n2015,5,31,\"B6\",\"615\",\"JFK\",\"SFO\",2.00,-3.00,0.00,\"\",0.00,385.00,334.00,2586.00,,,,,,\n2015,5,1,\"B6\",\"616\",\"SFO\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,326.00,301.00,2586.00,,,,,,\n2015,5,3,\"B6\",\"616\",\"SFO\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,336.00,312.00,2586.00,,,,,,\n2015,5,4,\"B6\",\"616\",\"SFO\",\"JFK\",2.00,-13.00,0.00,\"\",0.00,326.00,311.00,2586.00,,,,,,\n2015,5,5,\"B6\",\"616\",\"SFO\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,331.00,307.00,2586.00,,,,,,\n2015,5,6,\"B6\",\"616\",\"SFO\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,323.00,308.00,2586.00,,,,,,\n2015,5,7,\"B6\",\"616\",\"SFO\",\"JFK\",-3.00,,0.00,\"\",1.00,,,2586.00,,,,,,\n2015,5,8,\"B6\",\"616\",\"SFO\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,326.00,313.00,2586.00,,,,,,\n2015,5,10,\"B6\",\"616\",\"SFO\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,330.00,310.00,2586.00,,,,,,\n2015,5,11,\"B6\",\"616\",\"SFO\",\"JFK\",60.00,48.00,0.00,\"\",0.00,329.00,296.00,2586.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,12,\"B6\",\"616\",\"SFO\",\"JFK\",9.00,-22.00,0.00,\"\",0.00,310.00,283.00,2586.00,,,,,,\n2015,5,13,\"B6\",\"616\",\"SFO\",\"JFK\",-2.00,-33.00,0.00,\"\",0.00,310.00,289.00,2586.00,,,,,,\n2015,5,14,\"B6\",\"616\",\"SFO\",\"JFK\",14.00,14.00,0.00,\"\",0.00,341.00,307.00,2586.00,,,,,,\n2015,5,15,\"B6\",\"616\",\"SFO\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,331.00,306.00,2586.00,,,,,,\n2015,5,17,\"B6\",\"616\",\"SFO\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,327.00,310.00,2586.00,,,,,,\n2015,5,18,\"B6\",\"616\",\"SFO\",\"JFK\",81.00,102.00,0.00,\"\",0.00,362.00,339.00,2586.00,0.00,0.00,27.00,0.00,75.00,\n2015,5,19,\"B6\",\"616\",\"SFO\",\"JFK\",23.00,-9.00,0.00,\"\",0.00,309.00,290.00,2586.00,,,,,,\n2015,5,20,\"B6\",\"616\",\"SFO\",\"JFK\",52.00,8.00,0.00,\"\",0.00,297.00,283.00,2586.00,,,,,,\n2015,5,21,\"B6\",\"616\",\"SFO\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,317.00,294.00,2586.00,,,,,,\n2015,5,22,\"B6\",\"616\",\"SFO\",\"JFK\",26.00,-2.00,0.00,\"\",0.00,313.00,292.00,2586.00,,,,,,\n2015,5,24,\"B6\",\"616\",\"SFO\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,336.00,312.00,2586.00,,,,,,\n2015,5,25,\"B6\",\"616\",\"SFO\",\"JFK\",11.00,-8.00,0.00,\"\",0.00,322.00,301.00,2586.00,,,,,,\n2015,5,26,\"B6\",\"616\",\"SFO\",\"JFK\",129.00,126.00,0.00,\"\",0.00,338.00,309.00,2586.00,126.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"B6\",\"616\",\"SFO\",\"JFK\",15.00,32.00,0.00,\"\",0.00,358.00,307.00,2586.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,28,\"B6\",\"616\",\"SFO\",\"JFK\",16.00,2.00,0.00,\"\",0.00,327.00,300.00,2586.00,,,,,,\n2015,5,29,\"B6\",\"616\",\"SFO\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,327.00,304.00,2586.00,,,,,,\n2015,5,31,\"B6\",\"616\",\"SFO\",\"JFK\",109.00,103.00,0.00,\"\",0.00,335.00,313.00,2586.00,0.00,0.00,103.00,0.00,0.00,\n2015,5,1,\"B6\",\"617\",\"BOS\",\"JFK\",-5.00,-3.00,0.00,\"\",0.00,77.00,47.00,187.00,,,,,,\n2015,5,2,\"B6\",\"617\",\"BOS\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,65.00,45.00,187.00,,,,,,\n2015,5,3,\"B6\",\"617\",\"BOS\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,54.00,40.00,187.00,,,,,,\n2015,5,4,\"B6\",\"617\",\"BOS\",\"JFK\",2.00,-6.00,0.00,\"\",0.00,67.00,44.00,187.00,,,,,,\n2015,5,5,\"B6\",\"617\",\"BOS\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,65.00,47.00,187.00,,,,,,\n2015,5,6,\"B6\",\"617\",\"BOS\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,64.00,40.00,187.00,,,,,,\n2015,5,7,\"B6\",\"617\",\"BOS\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,69.00,39.00,187.00,,,,,,\n2015,5,8,\"B6\",\"617\",\"BOS\",\"JFK\",25.00,30.00,0.00,\"\",0.00,80.00,58.00,187.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,9,\"B6\",\"617\",\"BOS\",\"JFK\",41.00,37.00,0.00,\"\",0.00,71.00,51.00,187.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,10,\"B6\",\"617\",\"BOS\",\"JFK\",12.00,-1.00,0.00,\"\",0.00,62.00,41.00,187.00,,,,,,\n2015,5,11,\"B6\",\"617\",\"BOS\",\"JFK\",1.00,-11.00,0.00,\"\",0.00,63.00,41.00,187.00,,,,,,\n2015,5,12,\"B6\",\"617\",\"BOS\",\"JFK\",114.00,119.00,0.00,\"\",0.00,80.00,44.00,187.00,0.00,0.00,119.00,0.00,0.00,\n2015,5,13,\"B6\",\"617\",\"BOS\",\"JFK\",-11.00,-16.00,0.00,\"\",0.00,70.00,41.00,187.00,,,,,,\n2015,5,14,\"B6\",\"617\",\"BOS\",\"JFK\",-1.00,-20.00,0.00,\"\",0.00,56.00,37.00,187.00,,,,,,\n2015,5,15,\"B6\",\"617\",\"BOS\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,61.00,40.00,187.00,,,,,,\n2015,5,16,\"B6\",\"617\",\"BOS\",\"JFK\",-2.00,9.00,0.00,\"\",0.00,86.00,47.00,187.00,,,,,,\n2015,5,17,\"B6\",\"617\",\"BOS\",\"JFK\",1.00,-15.00,0.00,\"\",0.00,59.00,40.00,187.00,,,,,,\n2015,5,18,\"B6\",\"617\",\"BOS\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,62.00,37.00,187.00,,,,,,\n2015,5,19,\"B6\",\"617\",\"BOS\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,67.00,50.00,187.00,,,,,,\n2015,5,20,\"B6\",\"617\",\"BOS\",\"JFK\",2.00,-14.00,0.00,\"\",0.00,59.00,38.00,187.00,,,,,,\n2015,5,21,\"B6\",\"617\",\"BOS\",\"JFK\",8.00,-5.00,0.00,\"\",0.00,62.00,42.00,187.00,,,,,,\n2015,5,22,\"B6\",\"617\",\"BOS\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,69.00,45.00,187.00,,,,,,\n2015,5,23,\"B6\",\"617\",\"BOS\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,60.00,39.00,187.00,,,,,,\n2015,5,24,\"B6\",\"617\",\"BOS\",\"JFK\",-9.00,-24.00,0.00,\"\",0.00,60.00,41.00,187.00,,,,,,\n2015,5,25,\"B6\",\"617\",\"BOS\",\"JFK\",9.00,7.00,0.00,\"\",0.00,73.00,46.00,187.00,,,,,,\n2015,5,26,\"B6\",\"617\",\"BOS\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,64.00,47.00,187.00,,,,,,\n2015,5,27,\"B6\",\"617\",\"BOS\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,73.00,49.00,187.00,,,,,,\n2015,5,28,\"B6\",\"617\",\"BOS\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,70.00,41.00,187.00,,,,,,\n2015,5,29,\"B6\",\"617\",\"BOS\",\"JFK\",13.00,9.00,0.00,\"\",0.00,71.00,37.00,187.00,,,,,,\n2015,5,30,\"B6\",\"617\",\"BOS\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,61.00,47.00,187.00,,,,,,\n2015,5,31,\"B6\",\"617\",\"BOS\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,65.00,46.00,187.00,,,,,,\n2015,5,3,\"B6\",\"618\",\"JFK\",\"BOS\",0.00,-7.00,0.00,\"\",0.00,81.00,44.00,187.00,,,,,,\n2015,5,5,\"B6\",\"618\",\"JFK\",\"BOS\",-2.00,-23.00,0.00,\"\",0.00,67.00,39.00,187.00,,,,,,\n2015,5,8,\"B6\",\"618\",\"JFK\",\"BOS\",16.00,-2.00,0.00,\"\",0.00,70.00,39.00,187.00,,,,,,\n2015,5,9,\"B6\",\"618\",\"JFK\",\"BOS\",57.00,34.00,0.00,\"\",0.00,65.00,46.00,187.00,1.00,0.00,0.00,0.00,33.00,\n2015,5,12,\"B6\",\"618\",\"JFK\",\"BOS\",-5.00,-16.00,0.00,\"\",0.00,77.00,39.00,187.00,,,,,,\n2015,5,13,\"B6\",\"618\",\"JFK\",\"BOS\",19.00,10.00,0.00,\"\",0.00,79.00,41.00,187.00,,,,,,\n2015,5,15,\"B6\",\"618\",\"JFK\",\"BOS\",-5.00,-29.00,0.00,\"\",0.00,64.00,38.00,187.00,,,,,,\n2015,5,19,\"B6\",\"618\",\"JFK\",\"BOS\",-2.00,-1.00,0.00,\"\",0.00,89.00,42.00,187.00,,,,,,\n2015,5,22,\"B6\",\"618\",\"JFK\",\"BOS\",30.00,14.00,0.00,\"\",0.00,72.00,39.00,187.00,,,,,,\n2015,5,25,\"B6\",\"618\",\"JFK\",\"BOS\",11.00,6.00,0.00,\"\",0.00,83.00,42.00,187.00,,,,,,\n2015,5,26,\"B6\",\"618\",\"JFK\",\"BOS\",0.00,-14.00,0.00,\"\",0.00,74.00,42.00,187.00,,,,,,\n2015,5,1,\"B6\",\"623\",\"JFK\",\"LAX\",-4.00,-51.00,0.00,\"\",0.00,349.00,314.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"623\",\"JFK\",\"LAX\",68.00,35.00,0.00,\"\",0.00,363.00,325.00,2475.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"B6\",\"623\",\"JFK\",\"LAX\",-8.00,-49.00,0.00,\"\",0.00,355.00,317.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"623\",\"JFK\",\"LAX\",-1.00,-28.00,0.00,\"\",0.00,369.00,335.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"623\",\"JFK\",\"LAX\",-3.00,-61.00,0.00,\"\",0.00,338.00,309.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"623\",\"JFK\",\"LAX\",-2.00,-41.00,0.00,\"\",0.00,357.00,328.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"623\",\"JFK\",\"LAX\",45.00,71.00,0.00,\"\",0.00,422.00,344.00,2475.00,45.00,0.00,26.00,0.00,0.00,\n2015,5,8,\"B6\",\"623\",\"JFK\",\"LAX\",2.00,-15.00,0.00,\"\",0.00,379.00,340.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"623\",\"JFK\",\"LAX\",-4.00,-35.00,0.00,\"\",0.00,365.00,327.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"623\",\"JFK\",\"LAX\",0.00,-23.00,0.00,\"\",0.00,373.00,336.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"623\",\"JFK\",\"LAX\",-2.00,-33.00,0.00,\"\",0.00,365.00,335.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"623\",\"JFK\",\"LAX\",47.00,16.00,0.00,\"\",0.00,365.00,343.00,2475.00,6.00,0.00,0.00,0.00,10.00,\n2015,5,13,\"B6\",\"623\",\"JFK\",\"LAX\",-3.00,-37.00,0.00,\"\",0.00,362.00,331.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"623\",\"JFK\",\"LAX\",-3.00,-33.00,0.00,\"\",0.00,366.00,333.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"623\",\"JFK\",\"LAX\",-5.00,-31.00,0.00,\"\",0.00,370.00,333.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"623\",\"JFK\",\"LAX\",-5.00,-23.00,0.00,\"\",0.00,378.00,340.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"623\",\"JFK\",\"LAX\",-4.00,-36.00,0.00,\"\",0.00,364.00,327.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"623\",\"JFK\",\"LAX\",-3.00,5.00,0.00,\"\",0.00,404.00,340.00,2475.00,,,,,,\n2015,5,19,\"B6\",\"623\",\"JFK\",\"LAX\",16.00,38.00,0.00,\"\",0.00,418.00,345.00,2475.00,16.00,0.00,22.00,0.00,0.00,\n2015,5,20,\"B6\",\"623\",\"JFK\",\"LAX\",-2.00,-24.00,0.00,\"\",0.00,374.00,341.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"623\",\"JFK\",\"LAX\",0.00,-19.00,0.00,\"\",0.00,377.00,340.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"623\",\"JFK\",\"LAX\",5.00,-20.00,0.00,\"\",0.00,371.00,345.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"623\",\"JFK\",\"LAX\",1.00,-14.00,0.00,\"\",0.00,381.00,344.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"623\",\"JFK\",\"LAX\",-8.00,-36.00,0.00,\"\",0.00,368.00,330.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"623\",\"JFK\",\"LAX\",3.00,-22.00,0.00,\"\",0.00,371.00,329.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"623\",\"JFK\",\"LAX\",0.00,-15.00,0.00,\"\",0.00,381.00,347.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"623\",\"JFK\",\"LAX\",6.00,30.00,0.00,\"\",0.00,420.00,330.00,2475.00,6.00,0.00,24.00,0.00,0.00,\n2015,5,28,\"B6\",\"623\",\"JFK\",\"LAX\",-2.00,-10.00,0.00,\"\",0.00,388.00,342.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"623\",\"JFK\",\"LAX\",-5.00,-36.00,0.00,\"\",0.00,365.00,325.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"623\",\"JFK\",\"LAX\",-3.00,-52.00,0.00,\"\",0.00,347.00,317.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"623\",\"JFK\",\"LAX\",176.00,284.00,0.00,\"\",0.00,504.00,343.00,2475.00,0.00,136.00,108.00,0.00,40.00,\n2015,5,1,\"B6\",\"624\",\"LAX\",\"JFK\",0.00,4.00,0.00,\"\",0.00,330.00,303.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"624\",\"LAX\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,312.00,298.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"624\",\"LAX\",\"JFK\",3.00,6.00,0.00,\"\",0.00,329.00,318.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"624\",\"LAX\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,317.00,301.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"624\",\"LAX\",\"JFK\",7.00,-1.00,0.00,\"\",0.00,318.00,304.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"624\",\"LAX\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,324.00,310.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"624\",\"LAX\",\"JFK\",28.00,53.00,0.00,\"\",0.00,351.00,335.00,2475.00,17.00,0.00,25.00,0.00,11.00,\n2015,5,8,\"B6\",\"624\",\"LAX\",\"JFK\",-8.00,-12.00,0.00,\"\",0.00,322.00,305.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"624\",\"LAX\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,304.00,287.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"624\",\"LAX\",\"JFK\",7.00,22.00,0.00,\"\",0.00,341.00,326.00,2475.00,7.00,0.00,15.00,0.00,0.00,\n2015,5,11,\"B6\",\"624\",\"LAX\",\"JFK\",-7.00,-31.00,0.00,\"\",0.00,302.00,287.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"624\",\"LAX\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,304.00,287.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"624\",\"LAX\",\"JFK\",-9.00,-36.00,0.00,\"\",0.00,299.00,288.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"624\",\"LAX\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,315.00,300.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"624\",\"LAX\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,323.00,308.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"624\",\"LAX\",\"JFK\",-4.00,17.00,0.00,\"\",0.00,347.00,332.00,2475.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,17,\"B6\",\"624\",\"LAX\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,308.00,286.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"624\",\"LAX\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,312.00,291.00,2475.00,,,,,,\n2015,5,19,\"B6\",\"624\",\"LAX\",\"JFK\",-2.00,-48.00,0.00,\"\",0.00,280.00,268.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"624\",\"LAX\",\"JFK\",-2.00,-42.00,0.00,\"\",0.00,286.00,271.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"624\",\"LAX\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,311.00,288.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"624\",\"LAX\",\"JFK\",-6.00,-38.00,0.00,\"\",0.00,294.00,280.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"624\",\"LAX\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,300.00,289.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"624\",\"LAX\",\"JFK\",-10.00,-11.00,0.00,\"\",0.00,325.00,308.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"624\",\"LAX\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,310.00,295.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"624\",\"LAX\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,316.00,298.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"624\",\"LAX\",\"JFK\",1.00,-14.00,0.00,\"\",0.00,311.00,296.00,2475.00,,,,,,\n2015,5,28,\"B6\",\"624\",\"LAX\",\"JFK\",7.00,-7.00,0.00,\"\",0.00,312.00,295.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"624\",\"LAX\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,314.00,298.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"624\",\"LAX\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,316.00,301.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"624\",\"LAX\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,308.00,292.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"507\",\"PWM\",\"JFK\",52.00,29.00,0.00,\"\",0.00,65.00,49.00,273.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,10,\"B6\",\"507\",\"PWM\",\"JFK\",54.00,46.00,0.00,\"\",0.00,80.00,60.00,273.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,11,\"B6\",\"507\",\"PWM\",\"JFK\",79.00,70.00,0.00,\"\",0.00,79.00,55.00,273.00,0.00,0.00,70.00,0.00,0.00,\n2015,5,12,\"B6\",\"507\",\"PWM\",\"JFK\",38.00,32.00,0.00,\"\",0.00,82.00,61.00,273.00,0.00,0.00,29.00,0.00,3.00,\n2015,5,13,\"B6\",\"507\",\"PWM\",\"JFK\",35.00,31.00,0.00,\"\",0.00,84.00,51.00,273.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,14,\"B6\",\"507\",\"PWM\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,74.00,57.00,273.00,,,,,,\n2015,5,15,\"B6\",\"507\",\"PWM\",\"JFK\",-9.00,-5.00,0.00,\"\",0.00,92.00,62.00,273.00,,,,,,\n2015,5,16,\"B6\",\"507\",\"PWM\",\"JFK\",-17.00,-35.00,0.00,\"\",0.00,70.00,56.00,273.00,,,,,,\n2015,5,17,\"B6\",\"507\",\"PWM\",\"JFK\",246.00,221.00,0.00,\"\",0.00,63.00,45.00,273.00,4.00,0.00,0.00,0.00,217.00,\n2015,5,18,\"B6\",\"507\",\"PWM\",\"JFK\",,,1.00,\"C\",0.00,,,273.00,,,,,,\n2015,5,19,\"B6\",\"507\",\"PWM\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,69.00,51.00,273.00,,,,,,\n2015,5,20,\"B6\",\"507\",\"PWM\",\"JFK\",76.00,65.00,0.00,\"\",0.00,77.00,51.00,273.00,0.00,0.00,65.00,0.00,0.00,\n2015,5,21,\"B6\",\"507\",\"PWM\",\"JFK\",-10.00,-29.00,0.00,\"\",0.00,69.00,55.00,273.00,,,,,,\n2015,5,22,\"B6\",\"507\",\"PWM\",\"JFK\",175.00,158.00,0.00,\"\",0.00,71.00,56.00,273.00,0.00,0.00,0.00,0.00,158.00,\n2015,5,23,\"B6\",\"507\",\"PWM\",\"JFK\",-13.00,-32.00,0.00,\"\",0.00,69.00,55.00,273.00,,,,,,\n2015,5,24,\"B6\",\"507\",\"PWM\",\"JFK\",-15.00,-35.00,0.00,\"\",0.00,68.00,49.00,273.00,,,,,,\n2015,5,25,\"B6\",\"507\",\"PWM\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,77.00,62.00,273.00,,,,,,\n2015,5,26,\"B6\",\"507\",\"PWM\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,78.00,55.00,273.00,,,,,,\n2015,5,27,\"B6\",\"507\",\"PWM\",\"JFK\",,,1.00,\"A\",0.00,,,273.00,,,,,,\n2015,5,28,\"B6\",\"507\",\"PWM\",\"JFK\",2.00,1.00,0.00,\"\",0.00,87.00,60.00,273.00,,,,,,\n2015,5,29,\"B6\",\"507\",\"PWM\",\"JFK\",-12.00,-13.00,0.00,\"\",0.00,87.00,50.00,273.00,,,,,,\n2015,5,30,\"B6\",\"507\",\"PWM\",\"JFK\",-9.00,-29.00,0.00,\"\",0.00,68.00,56.00,273.00,,,,,,\n2015,5,31,\"B6\",\"507\",\"PWM\",\"JFK\",285.00,277.00,0.00,\"\",0.00,80.00,63.00,273.00,0.00,0.00,277.00,0.00,0.00,\n2015,5,1,\"B6\",\"514\",\"LGB\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,312.00,300.00,2465.00,,,,,,\n2015,5,2,\"B6\",\"514\",\"LGB\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,313.00,298.00,2465.00,,,,,,\n2015,5,3,\"B6\",\"514\",\"LGB\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,320.00,306.00,2465.00,,,,,,\n2015,5,4,\"B6\",\"514\",\"LGB\",\"JFK\",4.00,16.00,0.00,\"\",0.00,342.00,321.00,2465.00,4.00,0.00,12.00,0.00,0.00,\n2015,5,5,\"B6\",\"514\",\"LGB\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,315.00,302.00,2465.00,,,,,,\n2015,5,6,\"B6\",\"514\",\"LGB\",\"JFK\",39.00,39.00,0.00,\"\",0.00,330.00,294.00,2465.00,0.00,0.00,0.00,0.00,39.00,\n2015,5,7,\"B6\",\"514\",\"LGB\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,313.00,296.00,2465.00,,,,,,\n2015,5,8,\"B6\",\"514\",\"LGB\",\"JFK\",89.00,85.00,0.00,\"\",0.00,326.00,299.00,2465.00,0.00,0.00,0.00,0.00,85.00,\n2015,5,9,\"B6\",\"514\",\"LGB\",\"JFK\",21.00,23.00,0.00,\"\",0.00,332.00,312.00,2465.00,0.00,21.00,2.00,0.00,0.00,\n2015,5,10,\"B6\",\"514\",\"LGB\",\"JFK\",,,1.00,\"A\",0.00,,,2465.00,,,,,,\n2015,5,11,\"B6\",\"514\",\"LGB\",\"JFK\",157.00,166.00,0.00,\"\",0.00,339.00,312.00,2465.00,0.00,0.00,166.00,0.00,0.00,\n2015,5,12,\"B6\",\"514\",\"LGB\",\"JFK\",5.00,-25.00,0.00,\"\",0.00,300.00,279.00,2465.00,,,,,,\n2015,5,13,\"B6\",\"514\",\"LGB\",\"JFK\",-3.00,-31.00,0.00,\"\",0.00,302.00,282.00,2465.00,,,,,,\n2015,5,14,\"B6\",\"514\",\"LGB\",\"JFK\",4.00,-23.00,0.00,\"\",0.00,303.00,292.00,2465.00,,,,,,\n2015,5,15,\"B6\",\"514\",\"LGB\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,310.00,296.00,2465.00,,,,,,\n2015,5,16,\"B6\",\"514\",\"LGB\",\"JFK\",10.00,-5.00,0.00,\"\",0.00,315.00,298.00,2465.00,,,,,,\n2015,5,17,\"B6\",\"514\",\"LGB\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,316.00,301.00,2465.00,,,,,,\n2015,5,18,\"B6\",\"514\",\"LGB\",\"JFK\",223.00,196.00,0.00,\"\",0.00,303.00,290.00,2465.00,0.00,0.00,196.00,0.00,0.00,\n2015,5,19,\"B6\",\"514\",\"LGB\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,309.00,290.00,2465.00,,,,,,\n2015,5,20,\"B6\",\"514\",\"LGB\",\"JFK\",-1.00,-40.00,0.00,\"\",0.00,291.00,269.00,2465.00,,,,,,\n2015,5,21,\"B6\",\"514\",\"LGB\",\"JFK\",-3.00,-30.00,0.00,\"\",0.00,303.00,282.00,2465.00,,,,,,\n2015,5,22,\"B6\",\"514\",\"LGB\",\"JFK\",-6.00,-38.00,0.00,\"\",0.00,298.00,278.00,2465.00,,,,,,\n2015,5,23,\"B6\",\"514\",\"LGB\",\"JFK\",0.00,-28.00,0.00,\"\",0.00,302.00,288.00,2465.00,,,,,,\n2015,5,24,\"B6\",\"514\",\"LGB\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,310.00,296.00,2465.00,,,,,,\n2015,5,25,\"B6\",\"514\",\"LGB\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,318.00,296.00,2465.00,,,,,,\n2015,5,26,\"B6\",\"514\",\"LGB\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,316.00,303.00,2465.00,,,,,,\n2015,5,27,\"B6\",\"514\",\"LGB\",\"JFK\",,,1.00,\"C\",0.00,,,2465.00,,,,,,\n2015,5,28,\"B6\",\"514\",\"LGB\",\"JFK\",2.00,-17.00,0.00,\"\",0.00,311.00,299.00,2465.00,,,,,,\n2015,5,29,\"B6\",\"514\",\"LGB\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,319.00,301.00,2465.00,,,,,,\n2015,5,30,\"B6\",\"514\",\"LGB\",\"JFK\",5.00,7.00,0.00,\"\",0.00,332.00,319.00,2465.00,,,,,,\n2015,5,31,\"B6\",\"514\",\"LGB\",\"JFK\",202.00,204.00,0.00,\"\",0.00,332.00,310.00,2465.00,0.00,0.00,204.00,0.00,0.00,\n2015,5,1,\"B6\",\"515\",\"BOS\",\"BUF\",-5.00,-18.00,0.00,\"\",0.00,74.00,58.00,395.00,,,,,,\n2015,5,2,\"B6\",\"515\",\"BOS\",\"BUF\",-2.00,1.00,0.00,\"\",0.00,90.00,57.00,395.00,,,,,,\n2015,5,3,\"B6\",\"515\",\"BOS\",\"BUF\",-3.00,-10.00,0.00,\"\",0.00,80.00,64.00,395.00,,,,,,\n2015,5,4,\"B6\",\"515\",\"BOS\",\"BUF\",-6.00,-11.00,0.00,\"\",0.00,82.00,63.00,395.00,,,,,,\n2015,5,5,\"B6\",\"515\",\"BOS\",\"BUF\",14.00,12.00,0.00,\"\",0.00,85.00,68.00,395.00,,,,,,\n2015,5,6,\"B6\",\"515\",\"BOS\",\"BUF\",-8.00,-7.00,0.00,\"\",0.00,88.00,68.00,395.00,,,,,,\n2015,5,7,\"B6\",\"515\",\"BOS\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,79.00,63.00,395.00,,,,,,\n2015,5,8,\"B6\",\"515\",\"BOS\",\"BUF\",-3.00,-6.00,0.00,\"\",0.00,84.00,66.00,395.00,,,,,,\n2015,5,9,\"B6\",\"515\",\"BOS\",\"BUF\",-4.00,-7.00,0.00,\"\",0.00,84.00,61.00,395.00,,,,,,\n2015,5,10,\"B6\",\"515\",\"BOS\",\"BUF\",-7.00,-12.00,0.00,\"\",0.00,82.00,66.00,395.00,,,,,,\n2015,5,11,\"B6\",\"515\",\"BOS\",\"BUF\",-2.00,-1.00,0.00,\"\",0.00,88.00,73.00,395.00,,,,,,\n2015,5,12,\"B6\",\"515\",\"BOS\",\"BUF\",-6.00,-2.00,0.00,\"\",0.00,91.00,68.00,395.00,,,,,,\n2015,5,13,\"B6\",\"515\",\"BOS\",\"BUF\",-8.00,-16.00,0.00,\"\",0.00,79.00,66.00,395.00,,,,,,\n2015,5,14,\"B6\",\"515\",\"BOS\",\"BUF\",-6.00,-17.00,0.00,\"\",0.00,76.00,61.00,395.00,,,,,,\n2015,5,15,\"B6\",\"515\",\"BOS\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,79.00,63.00,395.00,,,,,,\n2015,5,16,\"B6\",\"515\",\"BOS\",\"BUF\",58.00,51.00,0.00,\"\",0.00,80.00,63.00,395.00,51.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"515\",\"BOS\",\"BUF\",-6.00,-15.00,0.00,\"\",0.00,78.00,63.00,395.00,,,,,,\n2015,5,18,\"B6\",\"515\",\"BOS\",\"BUF\",0.00,-8.00,0.00,\"\",0.00,79.00,61.00,395.00,,,,,,\n2015,5,19,\"B6\",\"515\",\"BOS\",\"BUF\",-4.00,-5.00,0.00,\"\",0.00,86.00,67.00,395.00,,,,,,\n2015,5,20,\"B6\",\"515\",\"BOS\",\"BUF\",-7.00,-10.00,0.00,\"\",0.00,84.00,68.00,395.00,,,,,,\n2015,5,21,\"B6\",\"515\",\"BOS\",\"BUF\",-1.00,3.00,0.00,\"\",0.00,91.00,72.00,395.00,,,,,,\n2015,5,22,\"B6\",\"515\",\"BOS\",\"BUF\",-6.00,0.00,0.00,\"\",0.00,93.00,67.00,395.00,,,,,,\n2015,5,23,\"B6\",\"515\",\"BOS\",\"BUF\",-6.00,-11.00,0.00,\"\",0.00,82.00,65.00,395.00,,,,,,\n2015,5,24,\"B6\",\"515\",\"BOS\",\"BUF\",-7.00,-12.00,0.00,\"\",0.00,82.00,69.00,395.00,,,,,,\n2015,5,25,\"B6\",\"515\",\"BOS\",\"BUF\",-2.00,-2.00,0.00,\"\",0.00,87.00,67.00,395.00,,,,,,\n2015,5,26,\"B6\",\"515\",\"BOS\",\"BUF\",-9.00,-3.00,0.00,\"\",0.00,93.00,67.00,395.00,,,,,,\n2015,5,27,\"B6\",\"515\",\"BOS\",\"BUF\",-4.00,-11.00,0.00,\"\",0.00,80.00,62.00,395.00,,,,,,\n2015,5,28,\"B6\",\"515\",\"BOS\",\"BUF\",-8.00,-11.00,0.00,\"\",0.00,84.00,66.00,395.00,,,,,,\n2015,5,29,\"B6\",\"515\",\"BOS\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,79.00,61.00,395.00,,,,,,\n2015,5,30,\"B6\",\"515\",\"BOS\",\"BUF\",-8.00,-17.00,0.00,\"\",0.00,78.00,62.00,395.00,,,,,,\n2015,5,31,\"B6\",\"515\",\"BOS\",\"BUF\",-8.00,-6.00,0.00,\"\",0.00,89.00,68.00,395.00,,,,,,\n2015,5,1,\"B6\",\"516\",\"BUF\",\"BOS\",-13.00,-9.00,0.00,\"\",0.00,88.00,69.00,395.00,,,,,,\n2015,5,2,\"B6\",\"516\",\"BUF\",\"BOS\",-10.00,-17.00,0.00,\"\",0.00,78.00,62.00,395.00,,,,,,\n2015,5,3,\"B6\",\"516\",\"BUF\",\"BOS\",-6.00,-19.00,0.00,\"\",0.00,72.00,56.00,395.00,,,,,,\n2015,5,4,\"B6\",\"516\",\"BUF\",\"BOS\",-2.00,-8.00,0.00,\"\",0.00,79.00,60.00,395.00,,,,,,\n2015,5,5,\"B6\",\"516\",\"BUF\",\"BOS\",-9.00,-17.00,0.00,\"\",0.00,77.00,54.00,395.00,,,,,,\n2015,5,6,\"B6\",\"516\",\"BUF\",\"BOS\",0.00,-10.00,0.00,\"\",0.00,75.00,60.00,395.00,,,,,,\n2015,5,7,\"B6\",\"516\",\"BUF\",\"BOS\",-7.00,-18.00,0.00,\"\",0.00,74.00,57.00,395.00,,,,,,\n2015,5,8,\"B6\",\"516\",\"BUF\",\"BOS\",-4.00,-5.00,0.00,\"\",0.00,84.00,65.00,395.00,,,,,,\n2015,5,9,\"B6\",\"516\",\"BUF\",\"BOS\",-2.00,-6.00,0.00,\"\",0.00,81.00,64.00,395.00,,,,,,\n2015,5,10,\"B6\",\"516\",\"BUF\",\"BOS\",-8.00,-15.00,0.00,\"\",0.00,78.00,58.00,395.00,,,,,,\n2015,5,11,\"B6\",\"516\",\"BUF\",\"BOS\",-8.00,-9.00,0.00,\"\",0.00,84.00,58.00,395.00,,,,,,\n2015,5,12,\"B6\",\"516\",\"BUF\",\"BOS\",-9.00,-12.00,0.00,\"\",0.00,82.00,60.00,395.00,,,,,,\n2015,5,13,\"B6\",\"516\",\"BUF\",\"BOS\",-8.00,-24.00,0.00,\"\",0.00,69.00,54.00,395.00,,,,,,\n2015,5,14,\"B6\",\"516\",\"BUF\",\"BOS\",-5.00,-15.00,0.00,\"\",0.00,75.00,56.00,395.00,,,,,,\n2015,5,15,\"B6\",\"516\",\"BUF\",\"BOS\",-7.00,-18.00,0.00,\"\",0.00,74.00,58.00,395.00,,,,,,\n2015,5,16,\"B6\",\"516\",\"BUF\",\"BOS\",13.00,-2.00,0.00,\"\",0.00,70.00,55.00,395.00,,,,,,\n2015,5,17,\"B6\",\"516\",\"BUF\",\"BOS\",-8.00,-17.00,0.00,\"\",0.00,76.00,53.00,395.00,,,,,,\n2015,5,18,\"B6\",\"516\",\"BUF\",\"BOS\",-6.00,1.00,0.00,\"\",0.00,92.00,73.00,395.00,,,,,,\n2015,5,19,\"B6\",\"516\",\"BUF\",\"BOS\",-10.00,-10.00,0.00,\"\",0.00,85.00,62.00,395.00,,,,,,\n2015,5,20,\"B6\",\"516\",\"BUF\",\"BOS\",-5.00,-19.00,0.00,\"\",0.00,71.00,54.00,395.00,,,,,,\n2015,5,21,\"B6\",\"516\",\"BUF\",\"BOS\",-6.00,-16.00,0.00,\"\",0.00,75.00,56.00,395.00,,,,,,\n2015,5,22,\"B6\",\"516\",\"BUF\",\"BOS\",-2.00,-9.00,0.00,\"\",0.00,78.00,56.00,395.00,,,,,,\n2015,5,23,\"B6\",\"516\",\"BUF\",\"BOS\",-5.00,-15.00,0.00,\"\",0.00,75.00,56.00,395.00,,,,,,\n2015,5,24,\"B6\",\"516\",\"BUF\",\"BOS\",-3.00,-21.00,0.00,\"\",0.00,67.00,55.00,395.00,,,,,,\n2015,5,25,\"B6\",\"516\",\"BUF\",\"BOS\",-10.00,-14.00,0.00,\"\",0.00,81.00,53.00,395.00,,,,,,\n2015,5,26,\"B6\",\"516\",\"BUF\",\"BOS\",-1.00,-13.00,0.00,\"\",0.00,73.00,56.00,395.00,,,,,,\n2015,5,27,\"B6\",\"516\",\"BUF\",\"BOS\",-8.00,-17.00,0.00,\"\",0.00,76.00,57.00,395.00,,,,,,\n2015,5,28,\"B6\",\"516\",\"BUF\",\"BOS\",-9.00,-21.00,0.00,\"\",0.00,73.00,53.00,395.00,,,,,,\n2015,5,29,\"B6\",\"516\",\"BUF\",\"BOS\",-7.00,-20.00,0.00,\"\",0.00,72.00,57.00,395.00,,,,,,\n2015,5,30,\"B6\",\"516\",\"BUF\",\"BOS\",-11.00,-26.00,0.00,\"\",0.00,70.00,57.00,395.00,,,,,,\n2015,5,31,\"B6\",\"516\",\"BUF\",\"BOS\",-5.00,-19.00,0.00,\"\",0.00,71.00,55.00,395.00,,,,,,\n2015,5,1,\"B6\",\"518\",\"JFK\",\"BOS\",29.00,13.00,0.00,\"\",0.00,58.00,39.00,187.00,,,,,,\n2015,5,2,\"B6\",\"518\",\"JFK\",\"BOS\",-1.00,-10.00,0.00,\"\",0.00,65.00,36.00,187.00,,,,,,\n2015,5,3,\"B6\",\"518\",\"JFK\",\"BOS\",-4.00,-15.00,0.00,\"\",0.00,63.00,34.00,187.00,,,,,,\n2015,5,4,\"B6\",\"518\",\"JFK\",\"BOS\",-3.00,-7.00,0.00,\"\",0.00,70.00,38.00,187.00,,,,,,\n2015,5,5,\"B6\",\"518\",\"JFK\",\"BOS\",-3.00,-18.00,0.00,\"\",0.00,59.00,36.00,187.00,,,,,,\n2015,5,6,\"B6\",\"518\",\"JFK\",\"BOS\",9.00,-1.00,0.00,\"\",0.00,64.00,36.00,187.00,,,,,,\n2015,5,7,\"B6\",\"518\",\"JFK\",\"BOS\",-4.00,-15.00,0.00,\"\",0.00,63.00,39.00,187.00,,,,,,\n2015,5,8,\"B6\",\"518\",\"JFK\",\"BOS\",15.00,5.00,0.00,\"\",0.00,64.00,33.00,187.00,,,,,,\n2015,5,9,\"B6\",\"518\",\"JFK\",\"BOS\",-3.00,7.00,0.00,\"\",0.00,84.00,40.00,187.00,,,,,,\n2015,5,10,\"B6\",\"518\",\"JFK\",\"BOS\",-7.00,-16.00,0.00,\"\",0.00,65.00,40.00,187.00,,,,,,\n2015,5,11,\"B6\",\"518\",\"JFK\",\"BOS\",-7.00,-12.00,0.00,\"\",0.00,69.00,36.00,187.00,,,,,,\n2015,5,12,\"B6\",\"518\",\"JFK\",\"BOS\",-1.00,-6.00,0.00,\"\",0.00,69.00,45.00,187.00,,,,,,\n2015,5,13,\"B6\",\"518\",\"JFK\",\"BOS\",-2.00,-2.00,0.00,\"\",0.00,74.00,39.00,187.00,,,,,,\n2015,5,14,\"B6\",\"518\",\"JFK\",\"BOS\",-4.00,-7.00,0.00,\"\",0.00,71.00,37.00,187.00,,,,,,\n2015,5,15,\"B6\",\"518\",\"JFK\",\"BOS\",-3.00,-8.00,0.00,\"\",0.00,69.00,42.00,187.00,,,,,,\n2015,5,16,\"B6\",\"518\",\"JFK\",\"BOS\",-2.00,21.00,0.00,\"\",0.00,97.00,42.00,187.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,17,\"B6\",\"518\",\"JFK\",\"BOS\",1.00,-2.00,0.00,\"\",0.00,71.00,36.00,187.00,,,,,,\n2015,5,18,\"B6\",\"518\",\"JFK\",\"BOS\",-6.00,7.00,0.00,\"\",0.00,87.00,43.00,187.00,,,,,,\n2015,5,19,\"B6\",\"518\",\"JFK\",\"BOS\",-8.00,-9.00,0.00,\"\",0.00,73.00,42.00,187.00,,,,,,\n2015,5,20,\"B6\",\"518\",\"JFK\",\"BOS\",-3.00,-8.00,0.00,\"\",0.00,69.00,40.00,187.00,,,,,,\n2015,5,21,\"B6\",\"518\",\"JFK\",\"BOS\",-4.00,-13.00,0.00,\"\",0.00,65.00,39.00,187.00,,,,,,\n2015,5,22,\"B6\",\"518\",\"JFK\",\"BOS\",-7.00,14.00,0.00,\"\",0.00,95.00,40.00,187.00,,,,,,\n2015,5,23,\"B6\",\"518\",\"JFK\",\"BOS\",-5.00,-12.00,0.00,\"\",0.00,67.00,43.00,187.00,,,,,,\n2015,5,24,\"B6\",\"518\",\"JFK\",\"BOS\",-8.00,-22.00,0.00,\"\",0.00,60.00,43.00,187.00,,,,,,\n2015,5,25,\"B6\",\"518\",\"JFK\",\"BOS\",-8.00,-24.00,0.00,\"\",0.00,58.00,37.00,187.00,,,,,,\n2015,5,26,\"B6\",\"518\",\"JFK\",\"BOS\",-1.00,-2.00,0.00,\"\",0.00,73.00,44.00,187.00,,,,,,\n2015,5,27,\"B6\",\"518\",\"JFK\",\"BOS\",-10.00,-16.00,0.00,\"\",0.00,68.00,42.00,187.00,,,,,,\n2015,5,28,\"B6\",\"518\",\"JFK\",\"BOS\",4.00,6.00,0.00,\"\",0.00,76.00,39.00,187.00,,,,,,\n2015,5,29,\"B6\",\"518\",\"JFK\",\"BOS\",-4.00,-12.00,0.00,\"\",0.00,66.00,37.00,187.00,,,,,,\n2015,5,30,\"B6\",\"518\",\"JFK\",\"BOS\",-5.00,-16.00,0.00,\"\",0.00,63.00,39.00,187.00,,,,,,\n2015,5,31,\"B6\",\"518\",\"JFK\",\"BOS\",-5.00,-19.00,0.00,\"\",0.00,60.00,42.00,187.00,,,,,,\n2015,5,1,\"B6\",\"523\",\"JFK\",\"LAX\",1.00,-49.00,0.00,\"\",0.00,345.00,317.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"523\",\"JFK\",\"LAX\",-5.00,-52.00,0.00,\"\",0.00,348.00,320.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"523\",\"JFK\",\"LAX\",-2.00,-47.00,0.00,\"\",0.00,350.00,320.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"523\",\"JFK\",\"LAX\",7.00,-22.00,0.00,\"\",0.00,366.00,333.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"523\",\"JFK\",\"LAX\",-4.00,-63.00,0.00,\"\",0.00,336.00,309.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"523\",\"JFK\",\"LAX\",-10.00,-45.00,0.00,\"\",0.00,360.00,329.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"523\",\"JFK\",\"LAX\",0.00,21.00,0.00,\"\",0.00,416.00,378.00,2475.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,8,\"B6\",\"523\",\"JFK\",\"LAX\",-1.00,-17.00,0.00,\"\",0.00,379.00,344.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"523\",\"JFK\",\"LAX\",-2.00,-59.00,0.00,\"\",0.00,338.00,322.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"523\",\"JFK\",\"LAX\",-5.00,-9.00,0.00,\"\",0.00,391.00,333.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"523\",\"JFK\",\"LAX\",0.00,-9.00,0.00,\"\",0.00,386.00,342.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"523\",\"JFK\",\"LAX\",-2.00,-24.00,0.00,\"\",0.00,373.00,347.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"523\",\"JFK\",\"LAX\",10.00,-21.00,0.00,\"\",0.00,364.00,324.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"523\",\"JFK\",\"LAX\",-4.00,-45.00,0.00,\"\",0.00,354.00,326.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"523\",\"JFK\",\"LAX\",-9.00,-24.00,0.00,\"\",0.00,380.00,341.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"523\",\"JFK\",\"LAX\",-4.00,-13.00,0.00,\"\",0.00,386.00,347.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"523\",\"JFK\",\"LAX\",2.00,-31.00,0.00,\"\",0.00,362.00,325.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"523\",\"JFK\",\"LAX\",-5.00,-28.00,0.00,\"\",0.00,372.00,339.00,2475.00,,,,,,\n2015,5,19,\"B6\",\"523\",\"JFK\",\"LAX\",1.00,-13.00,0.00,\"\",0.00,381.00,345.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"523\",\"JFK\",\"LAX\",10.00,-15.00,0.00,\"\",0.00,370.00,342.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"523\",\"JFK\",\"LAX\",4.00,-6.00,0.00,\"\",0.00,385.00,357.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"523\",\"JFK\",\"LAX\",0.00,-27.00,0.00,\"\",0.00,368.00,342.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"523\",\"JFK\",\"LAX\",-2.00,-21.00,0.00,\"\",0.00,376.00,346.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"523\",\"JFK\",\"LAX\",-3.00,-49.00,0.00,\"\",0.00,349.00,320.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"523\",\"JFK\",\"LAX\",-3.00,-48.00,0.00,\"\",0.00,350.00,322.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"523\",\"JFK\",\"LAX\",-6.00,-42.00,0.00,\"\",0.00,359.00,324.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"523\",\"JFK\",\"LAX\",3.00,32.00,0.00,\"\",0.00,424.00,347.00,2475.00,3.00,0.00,29.00,0.00,0.00,\n2015,5,28,\"B6\",\"523\",\"JFK\",\"LAX\",23.00,10.00,0.00,\"\",0.00,382.00,335.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"523\",\"JFK\",\"LAX\",-6.00,-59.00,0.00,\"\",0.00,342.00,320.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"523\",\"JFK\",\"LAX\",-2.00,-51.00,0.00,\"\",0.00,346.00,312.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"523\",\"JFK\",\"LAX\",0.00,-23.00,0.00,\"\",0.00,372.00,326.00,2475.00,,,,,,\n2015,5,1,\"B6\",\"524\",\"LAX\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,319.00,297.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"524\",\"LAX\",\"JFK\",14.00,17.00,0.00,\"\",0.00,332.00,307.00,2475.00,14.00,0.00,3.00,0.00,0.00,\n2015,5,4,\"B6\",\"524\",\"LAX\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,317.00,293.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"524\",\"LAX\",\"JFK\",-10.00,-11.00,0.00,\"\",0.00,328.00,300.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"524\",\"LAX\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,319.00,307.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"524\",\"LAX\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,322.00,301.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"524\",\"LAX\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,315.00,298.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"524\",\"LAX\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,311.00,298.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"524\",\"LAX\",\"JFK\",76.00,62.00,0.00,\"\",0.00,315.00,283.00,2475.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,12,\"B6\",\"524\",\"LAX\",\"JFK\",10.00,-31.00,0.00,\"\",0.00,288.00,272.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"524\",\"LAX\",\"JFK\",0.00,-38.00,0.00,\"\",0.00,291.00,277.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"524\",\"LAX\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,314.00,295.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"524\",\"LAX\",\"JFK\",1.00,-22.00,0.00,\"\",0.00,306.00,291.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"524\",\"LAX\",\"JFK\",35.00,6.00,0.00,\"\",0.00,300.00,286.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"524\",\"LAX\",\"JFK\",51.00,101.00,0.00,\"\",0.00,379.00,358.00,2475.00,0.00,0.00,101.00,0.00,0.00,\n2015,5,19,\"B6\",\"524\",\"LAX\",\"JFK\",22.00,-19.00,0.00,\"\",0.00,288.00,268.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"524\",\"LAX\",\"JFK\",6.00,-35.00,0.00,\"\",0.00,288.00,274.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"524\",\"LAX\",\"JFK\",17.00,-16.00,0.00,\"\",0.00,296.00,280.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"524\",\"LAX\",\"JFK\",4.00,-36.00,0.00,\"\",0.00,289.00,277.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"524\",\"LAX\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,318.00,297.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"524\",\"LAX\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,314.00,293.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"524\",\"LAX\",\"JFK\",5.00,-4.00,0.00,\"\",0.00,320.00,297.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"524\",\"LAX\",\"JFK\",1.00,-1.00,0.00,\"\",0.00,327.00,301.00,2475.00,,,,,,\n2015,5,28,\"B6\",\"524\",\"LAX\",\"JFK\",7.00,3.00,0.00,\"\",0.00,325.00,308.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"524\",\"LAX\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,315.00,295.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"524\",\"LAX\",\"JFK\",62.00,97.00,0.00,\"\",0.00,364.00,337.00,2475.00,0.00,0.00,97.00,0.00,0.00,\n2015,5,1,\"B6\",\"525\",\"JFK\",\"TPA\",-6.00,-7.00,0.00,\"\",0.00,168.00,143.00,1005.00,,,,,,\n2015,5,2,\"B6\",\"525\",\"JFK\",\"TPA\",-8.00,-9.00,0.00,\"\",0.00,168.00,133.00,1005.00,,,,,,\n2015,5,3,\"B6\",\"525\",\"JFK\",\"TPA\",-11.00,-15.00,0.00,\"\",0.00,165.00,138.00,1005.00,,,,,,\n2015,5,4,\"B6\",\"525\",\"JFK\",\"TPA\",-6.00,-14.00,0.00,\"\",0.00,161.00,136.00,1005.00,,,,,,\n2015,5,5,\"B6\",\"525\",\"JFK\",\"TPA\",-3.00,-3.00,0.00,\"\",0.00,169.00,137.00,1005.00,,,,,,\n2015,5,6,\"B6\",\"525\",\"JFK\",\"TPA\",-8.00,-4.00,0.00,\"\",0.00,173.00,143.00,1005.00,,,,,,\n2015,5,7,\"B6\",\"525\",\"JFK\",\"TPA\",0.00,-3.00,0.00,\"\",0.00,166.00,138.00,1005.00,,,,,,\n2015,5,8,\"B6\",\"525\",\"JFK\",\"TPA\",48.00,45.00,0.00,\"\",0.00,166.00,133.00,1005.00,0.00,0.00,0.00,0.00,45.00,\n2015,5,9,\"B6\",\"525\",\"JFK\",\"TPA\",-5.00,-18.00,0.00,\"\",0.00,156.00,127.00,1005.00,,,,,,\n2015,5,10,\"B6\",\"525\",\"JFK\",\"TPA\",-6.00,-21.00,0.00,\"\",0.00,154.00,135.00,1005.00,,,,,,\n2015,5,11,\"B6\",\"525\",\"JFK\",\"TPA\",-4.00,-21.00,0.00,\"\",0.00,152.00,135.00,1005.00,,,,,,\n2015,5,12,\"B6\",\"525\",\"JFK\",\"TPA\",-8.00,-22.00,0.00,\"\",0.00,155.00,137.00,1005.00,,,,,,\n2015,5,13,\"B6\",\"525\",\"JFK\",\"TPA\",-5.00,-18.00,0.00,\"\",0.00,156.00,143.00,1005.00,,,,,,\n2015,5,14,\"B6\",\"525\",\"JFK\",\"TPA\",-6.00,-23.00,0.00,\"\",0.00,152.00,135.00,1005.00,,,,,,\n2015,5,15,\"B6\",\"525\",\"JFK\",\"TPA\",-1.00,-12.00,0.00,\"\",0.00,158.00,139.00,1005.00,,,,,,\n2015,5,16,\"B6\",\"525\",\"JFK\",\"TPA\",6.00,2.00,0.00,\"\",0.00,165.00,135.00,1005.00,,,,,,\n2015,5,17,\"B6\",\"525\",\"JFK\",\"TPA\",7.00,-10.00,0.00,\"\",0.00,152.00,134.00,1005.00,,,,,,\n2015,5,18,\"B6\",\"525\",\"JFK\",\"TPA\",5.00,-15.00,0.00,\"\",0.00,149.00,128.00,1005.00,,,,,,\n2015,5,19,\"B6\",\"525\",\"JFK\",\"TPA\",0.00,-6.00,0.00,\"\",0.00,163.00,137.00,1005.00,,,,,,\n2015,5,20,\"B6\",\"525\",\"JFK\",\"TPA\",-7.00,-8.00,0.00,\"\",0.00,168.00,139.00,1005.00,,,,,,\n2015,5,21,\"B6\",\"525\",\"JFK\",\"TPA\",-5.00,0.00,0.00,\"\",0.00,174.00,148.00,1005.00,,,,,,\n2015,5,22,\"B6\",\"525\",\"JFK\",\"TPA\",-4.00,4.00,0.00,\"\",0.00,177.00,149.00,1005.00,,,,,,\n2015,5,23,\"B6\",\"525\",\"JFK\",\"TPA\",-3.00,-7.00,0.00,\"\",0.00,165.00,142.00,1005.00,,,,,,\n2015,5,24,\"B6\",\"525\",\"JFK\",\"TPA\",-10.00,-17.00,0.00,\"\",0.00,162.00,136.00,1005.00,,,,,,\n2015,5,25,\"B6\",\"525\",\"JFK\",\"TPA\",-7.00,-14.00,0.00,\"\",0.00,162.00,138.00,1005.00,,,,,,\n2015,5,26,\"B6\",\"525\",\"JFK\",\"TPA\",111.00,112.00,0.00,\"\",0.00,170.00,135.00,1005.00,111.00,0.00,1.00,0.00,0.00,\n2015,5,27,\"B6\",\"525\",\"JFK\",\"TPA\",-6.00,-16.00,0.00,\"\",0.00,159.00,139.00,1005.00,,,,,,\n2015,5,28,\"B6\",\"525\",\"JFK\",\"TPA\",-2.00,-22.00,0.00,\"\",0.00,149.00,134.00,1005.00,,,,,,\n2015,5,29,\"B6\",\"525\",\"JFK\",\"TPA\",-5.00,-13.00,0.00,\"\",0.00,161.00,132.00,1005.00,,,,,,\n2015,5,30,\"B6\",\"525\",\"JFK\",\"TPA\",-4.00,-18.00,0.00,\"\",0.00,155.00,133.00,1005.00,,,,,,\n2015,5,31,\"B6\",\"525\",\"JFK\",\"TPA\",-5.00,-15.00,0.00,\"\",0.00,159.00,134.00,1005.00,,,,,,\n2015,5,1,\"B6\",\"526\",\"TPA\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,142.00,124.00,1005.00,,,,,,\n2015,5,2,\"B6\",\"526\",\"TPA\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,149.00,131.00,1005.00,,,,,,\n2015,5,3,\"B6\",\"526\",\"TPA\",\"JFK\",-9.00,-10.00,0.00,\"\",0.00,163.00,146.00,1005.00,,,,,,\n2015,5,4,\"B6\",\"526\",\"TPA\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,155.00,136.00,1005.00,,,,,,\n2015,5,5,\"B6\",\"526\",\"TPA\",\"JFK\",13.00,-1.00,0.00,\"\",0.00,150.00,131.00,1005.00,,,,,,\n2015,5,6,\"B6\",\"526\",\"TPA\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,143.00,126.00,1005.00,,,,,,\n2015,5,7,\"B6\",\"526\",\"TPA\",\"JFK\",5.00,-5.00,0.00,\"\",0.00,154.00,136.00,1005.00,,,,,,\n2015,5,8,\"B6\",\"526\",\"TPA\",\"JFK\",50.00,39.00,0.00,\"\",0.00,153.00,134.00,1005.00,5.00,0.00,0.00,0.00,34.00,\n2015,5,9,\"B6\",\"526\",\"TPA\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,149.00,137.00,1005.00,,,,,,\n2015,5,10,\"B6\",\"526\",\"TPA\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,151.00,135.00,1005.00,,,,,,\n2015,5,11,\"B6\",\"526\",\"TPA\",\"JFK\",-3.00,-6.00,0.00,\"\",0.00,161.00,143.00,1005.00,,,,,,\n2015,5,12,\"B6\",\"526\",\"TPA\",\"JFK\",-1.00,1.00,0.00,\"\",0.00,166.00,145.00,1005.00,,,,,,\n2015,5,13,\"B6\",\"526\",\"TPA\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,150.00,128.00,1005.00,,,,,,\n2015,5,14,\"B6\",\"526\",\"TPA\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,151.00,135.00,1005.00,,,,,,\n2015,5,15,\"B6\",\"526\",\"TPA\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,147.00,130.00,1005.00,,,,,,\n2015,5,16,\"B6\",\"526\",\"TPA\",\"JFK\",13.00,5.00,0.00,\"\",0.00,156.00,139.00,1005.00,,,,,,\n2015,5,17,\"B6\",\"526\",\"TPA\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,157.00,140.00,1005.00,,,,,,\n2015,5,18,\"B6\",\"526\",\"TPA\",\"JFK\",0.00,12.00,0.00,\"\",0.00,176.00,162.00,1005.00,,,,,,\n2015,5,19,\"B6\",\"526\",\"TPA\",\"JFK\",5.00,-7.00,0.00,\"\",0.00,152.00,135.00,1005.00,,,,,,\n2015,5,20,\"B6\",\"526\",\"TPA\",\"JFK\",-2.00,,0.00,\"\",1.00,,,1005.00,,,,,,\n2015,5,21,\"B6\",\"526\",\"TPA\",\"JFK\",2.00,-12.00,0.00,\"\",0.00,150.00,129.00,1005.00,,,,,,\n2015,5,22,\"B6\",\"526\",\"TPA\",\"JFK\",4.00,-18.00,0.00,\"\",0.00,142.00,124.00,1005.00,,,,,,\n2015,5,23,\"B6\",\"526\",\"TPA\",\"JFK\",4.00,-15.00,0.00,\"\",0.00,145.00,131.00,1005.00,,,,,,\n2015,5,24,\"B6\",\"526\",\"TPA\",\"JFK\",5.00,2.00,0.00,\"\",0.00,161.00,138.00,1005.00,,,,,,\n2015,5,25,\"B6\",\"526\",\"TPA\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,145.00,133.00,1005.00,,,,,,\n2015,5,26,\"B6\",\"526\",\"TPA\",\"JFK\",123.00,102.00,0.00,\"\",0.00,143.00,130.00,1005.00,10.00,0.00,0.00,0.00,92.00,\n2015,5,27,\"B6\",\"526\",\"TPA\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,147.00,132.00,1005.00,,,,,,\n2015,5,28,\"B6\",\"526\",\"TPA\",\"JFK\",127.00,112.00,0.00,\"\",0.00,149.00,136.00,1005.00,112.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"B6\",\"526\",\"TPA\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,156.00,138.00,1005.00,,,,,,\n2015,5,30,\"B6\",\"526\",\"TPA\",\"JFK\",2.00,-16.00,0.00,\"\",0.00,146.00,134.00,1005.00,,,,,,\n2015,5,31,\"B6\",\"526\",\"TPA\",\"JFK\",4.00,-11.00,0.00,\"\",0.00,149.00,134.00,1005.00,,,,,,\n2015,5,1,\"B6\",\"535\",\"SWF\",\"FLL\",-11.00,-23.00,0.00,\"\",0.00,177.00,161.00,1118.00,,,,,,\n2015,5,2,\"B6\",\"535\",\"SWF\",\"FLL\",-9.00,-29.00,0.00,\"\",0.00,169.00,156.00,1118.00,,,,,,\n2015,5,3,\"B6\",\"535\",\"SWF\",\"FLL\",-6.00,-16.00,0.00,\"\",0.00,179.00,163.00,1118.00,,,,,,\n2015,5,4,\"B6\",\"535\",\"SWF\",\"FLL\",64.00,62.00,0.00,\"\",0.00,187.00,171.00,1118.00,62.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"B6\",\"535\",\"SWF\",\"FLL\",-13.00,-18.00,0.00,\"\",0.00,184.00,165.00,1118.00,,,,,,\n2015,5,6,\"B6\",\"535\",\"SWF\",\"FLL\",0.00,-4.00,0.00,\"\",0.00,185.00,165.00,1118.00,,,,,,\n2015,5,7,\"B6\",\"535\",\"SWF\",\"FLL\",-11.00,-19.00,0.00,\"\",0.00,181.00,163.00,1118.00,,,,,,\n2015,5,8,\"B6\",\"535\",\"SWF\",\"FLL\",-9.00,-1.00,0.00,\"\",0.00,197.00,166.00,1118.00,,,,,,\n2015,5,9,\"B6\",\"535\",\"SWF\",\"FLL\",-8.00,-14.00,0.00,\"\",0.00,183.00,160.00,1118.00,,,,,,\n2015,5,10,\"B6\",\"535\",\"SWF\",\"FLL\",-13.00,-23.00,0.00,\"\",0.00,179.00,162.00,1118.00,,,,,,\n2015,5,11,\"B6\",\"535\",\"SWF\",\"FLL\",-9.00,-11.00,0.00,\"\",0.00,187.00,164.00,1118.00,,,,,,\n2015,5,12,\"B6\",\"535\",\"SWF\",\"FLL\",-6.00,-16.00,0.00,\"\",0.00,179.00,159.00,1118.00,,,,,,\n2015,5,13,\"B6\",\"535\",\"SWF\",\"FLL\",-10.00,2.00,0.00,\"\",0.00,201.00,159.00,1118.00,,,,,,\n2015,5,14,\"B6\",\"535\",\"SWF\",\"FLL\",-3.00,9.00,0.00,\"\",0.00,201.00,154.00,1118.00,,,,,,\n2015,5,15,\"B6\",\"535\",\"SWF\",\"FLL\",-6.00,-20.00,0.00,\"\",0.00,175.00,161.00,1118.00,,,,,,\n2015,5,16,\"B6\",\"535\",\"SWF\",\"FLL\",-2.00,-26.00,0.00,\"\",0.00,165.00,148.00,1118.00,,,,,,\n2015,5,17,\"B6\",\"535\",\"SWF\",\"FLL\",-7.00,-32.00,0.00,\"\",0.00,164.00,150.00,1118.00,,,,,,\n2015,5,18,\"B6\",\"535\",\"SWF\",\"FLL\",-14.00,-30.00,0.00,\"\",0.00,173.00,149.00,1118.00,,,,,,\n2015,5,19,\"B6\",\"535\",\"SWF\",\"FLL\",-7.00,-26.00,0.00,\"\",0.00,170.00,153.00,1118.00,,,,,,\n2015,5,20,\"B6\",\"535\",\"SWF\",\"FLL\",-11.00,-18.00,0.00,\"\",0.00,182.00,158.00,1118.00,,,,,,\n2015,5,21,\"B6\",\"535\",\"SWF\",\"FLL\",-9.00,-3.00,0.00,\"\",0.00,195.00,166.00,1118.00,,,,,,\n2015,5,22,\"B6\",\"535\",\"SWF\",\"FLL\",-6.00,-17.00,0.00,\"\",0.00,178.00,158.00,1118.00,,,,,,\n2015,5,23,\"B6\",\"535\",\"SWF\",\"FLL\",-12.00,-13.00,0.00,\"\",0.00,188.00,154.00,1118.00,,,,,,\n2015,5,24,\"B6\",\"535\",\"SWF\",\"FLL\",72.00,47.00,0.00,\"\",0.00,164.00,146.00,1118.00,47.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"B6\",\"535\",\"SWF\",\"FLL\",-8.00,-21.00,0.00,\"\",0.00,176.00,152.00,1118.00,,,,,,\n2015,5,26,\"B6\",\"535\",\"SWF\",\"FLL\",-7.00,-1.00,0.00,\"\",0.00,195.00,161.00,1118.00,,,,,,\n2015,5,27,\"B6\",\"535\",\"SWF\",\"FLL\",-7.00,-26.00,0.00,\"\",0.00,170.00,155.00,1118.00,,,,,,\n2015,5,28,\"B6\",\"535\",\"SWF\",\"FLL\",-5.00,-14.00,0.00,\"\",0.00,180.00,160.00,1118.00,,,,,,\n2015,5,29,\"B6\",\"535\",\"SWF\",\"FLL\",-12.00,-33.00,0.00,\"\",0.00,168.00,151.00,1118.00,,,,,,\n2015,5,30,\"B6\",\"535\",\"SWF\",\"FLL\",49.00,27.00,0.00,\"\",0.00,167.00,153.00,1118.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"B6\",\"535\",\"SWF\",\"FLL\",-7.00,-21.00,0.00,\"\",0.00,175.00,158.00,1118.00,,,,,,\n2015,5,1,\"B6\",\"536\",\"FLL\",\"SWF\",30.00,17.00,0.00,\"\",0.00,171.00,153.00,1118.00,6.00,0.00,0.00,0.00,11.00,\n2015,5,2,\"B6\",\"536\",\"FLL\",\"SWF\",-1.00,-13.00,0.00,\"\",0.00,172.00,154.00,1118.00,,,,,,\n2015,5,3,\"B6\",\"536\",\"FLL\",\"SWF\",-2.00,-19.00,0.00,\"\",0.00,167.00,149.00,1118.00,,,,,,\n2015,5,4,\"B6\",\"536\",\"FLL\",\"SWF\",-1.00,-8.00,0.00,\"\",0.00,177.00,150.00,1118.00,,,,,,\n2015,5,5,\"B6\",\"536\",\"FLL\",\"SWF\",-5.00,-23.00,0.00,\"\",0.00,166.00,146.00,1118.00,,,,,,\n2015,5,6,\"B6\",\"536\",\"FLL\",\"SWF\",-3.00,-23.00,0.00,\"\",0.00,164.00,149.00,1118.00,,,,,,\n2015,5,7,\"B6\",\"536\",\"FLL\",\"SWF\",-2.00,-11.00,0.00,\"\",0.00,175.00,159.00,1118.00,,,,,,\n2015,5,8,\"B6\",\"536\",\"FLL\",\"SWF\",-3.00,-13.00,0.00,\"\",0.00,174.00,156.00,1118.00,,,,,,\n2015,5,9,\"B6\",\"536\",\"FLL\",\"SWF\",-5.00,3.00,0.00,\"\",0.00,192.00,165.00,1118.00,,,,,,\n2015,5,10,\"B6\",\"536\",\"FLL\",\"SWF\",-1.00,-3.00,0.00,\"\",0.00,182.00,162.00,1118.00,,,,,,\n2015,5,11,\"B6\",\"536\",\"FLL\",\"SWF\",243.00,225.00,0.00,\"\",0.00,166.00,150.00,1118.00,225.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"B6\",\"536\",\"FLL\",\"SWF\",-14.00,-26.00,0.00,\"\",0.00,172.00,149.00,1118.00,,,,,,\n2015,5,13,\"B6\",\"536\",\"FLL\",\"SWF\",1.00,-6.00,0.00,\"\",0.00,177.00,164.00,1118.00,,,,,,\n2015,5,14,\"B6\",\"536\",\"FLL\",\"SWF\",-9.00,-19.00,0.00,\"\",0.00,174.00,154.00,1118.00,,,,,,\n2015,5,15,\"B6\",\"536\",\"FLL\",\"SWF\",-3.00,-20.00,0.00,\"\",0.00,167.00,150.00,1118.00,,,,,,\n2015,5,16,\"B6\",\"536\",\"FLL\",\"SWF\",42.00,59.00,0.00,\"\",0.00,201.00,173.00,1118.00,30.00,0.00,17.00,0.00,12.00,\n2015,5,17,\"B6\",\"536\",\"FLL\",\"SWF\",69.00,53.00,0.00,\"\",0.00,168.00,153.00,1118.00,12.00,0.00,0.00,0.00,41.00,\n2015,5,18,\"B6\",\"536\",\"FLL\",\"SWF\",57.00,51.00,0.00,\"\",0.00,178.00,160.00,1118.00,8.00,0.00,0.00,0.00,43.00,\n2015,5,19,\"B6\",\"536\",\"FLL\",\"SWF\",-2.00,-13.00,0.00,\"\",0.00,173.00,152.00,1118.00,,,,,,\n2015,5,20,\"B6\",\"536\",\"FLL\",\"SWF\",-2.00,-14.00,0.00,\"\",0.00,172.00,152.00,1118.00,,,,,,\n2015,5,21,\"B6\",\"536\",\"FLL\",\"SWF\",23.00,30.00,0.00,\"\",0.00,191.00,155.00,1118.00,23.00,0.00,7.00,0.00,0.00,\n2015,5,22,\"B6\",\"536\",\"FLL\",\"SWF\",0.00,-3.00,0.00,\"\",0.00,181.00,158.00,1118.00,,,,,,\n2015,5,23,\"B6\",\"536\",\"FLL\",\"SWF\",-6.00,-8.00,0.00,\"\",0.00,182.00,163.00,1118.00,,,,,,\n2015,5,24,\"B6\",\"536\",\"FLL\",\"SWF\",7.00,1.00,0.00,\"\",0.00,178.00,156.00,1118.00,,,,,,\n2015,5,25,\"B6\",\"536\",\"FLL\",\"SWF\",-6.00,-19.00,0.00,\"\",0.00,171.00,152.00,1118.00,,,,,,\n2015,5,26,\"B6\",\"536\",\"FLL\",\"SWF\",-11.00,-33.00,0.00,\"\",0.00,162.00,146.00,1118.00,,,,,,\n2015,5,27,\"B6\",\"536\",\"FLL\",\"SWF\",-5.00,-15.00,0.00,\"\",0.00,174.00,156.00,1118.00,,,,,,\n2015,5,28,\"B6\",\"536\",\"FLL\",\"SWF\",8.00,-9.00,0.00,\"\",0.00,167.00,151.00,1118.00,,,,,,\n2015,5,29,\"B6\",\"536\",\"FLL\",\"SWF\",-3.00,-15.00,0.00,\"\",0.00,172.00,157.00,1118.00,,,,,,\n2015,5,30,\"B6\",\"536\",\"FLL\",\"SWF\",0.00,-3.00,0.00,\"\",0.00,181.00,160.00,1118.00,,,,,,\n2015,5,31,\"B6\",\"536\",\"FLL\",\"SWF\",5.00,2.00,0.00,\"\",0.00,181.00,163.00,1118.00,,,,,,\n2015,5,1,\"B6\",\"548\",\"TPA\",\"HPN\",-5.00,-28.00,0.00,\"\",0.00,148.00,133.00,1032.00,,,,,,\n2015,5,2,\"B6\",\"548\",\"TPA\",\"HPN\",-2.00,-14.00,0.00,\"\",0.00,159.00,141.00,1032.00,,,,,,\n2015,5,3,\"B6\",\"548\",\"TPA\",\"HPN\",-2.00,-16.00,0.00,\"\",0.00,157.00,144.00,1032.00,,,,,,\n2015,5,4,\"B6\",\"548\",\"TPA\",\"HPN\",-7.00,-20.00,0.00,\"\",0.00,158.00,145.00,1032.00,,,,,,\n2015,5,5,\"B6\",\"548\",\"TPA\",\"HPN\",-5.00,-15.00,0.00,\"\",0.00,161.00,142.00,1032.00,,,,,,\n2015,5,6,\"B6\",\"548\",\"TPA\",\"HPN\",-3.00,-18.00,0.00,\"\",0.00,156.00,140.00,1032.00,,,,,,\n2015,5,7,\"B6\",\"548\",\"TPA\",\"HPN\",-2.00,-14.00,0.00,\"\",0.00,159.00,146.00,1032.00,,,,,,\n2015,5,8,\"B6\",\"548\",\"TPA\",\"HPN\",4.00,-6.00,0.00,\"\",0.00,161.00,148.00,1032.00,,,,,,\n2015,5,9,\"B6\",\"548\",\"TPA\",\"HPN\",-8.00,-8.00,0.00,\"\",0.00,171.00,151.00,1032.00,,,,,,\n2015,5,10,\"B6\",\"548\",\"TPA\",\"HPN\",-10.00,-11.00,0.00,\"\",0.00,170.00,151.00,1032.00,,,,,,\n2015,5,11,\"B6\",\"548\",\"TPA\",\"HPN\",-8.00,-3.00,0.00,\"\",0.00,176.00,149.00,1032.00,,,,,,\n2015,5,12,\"B6\",\"548\",\"TPA\",\"HPN\",-5.00,-15.00,0.00,\"\",0.00,161.00,143.00,1032.00,,,,,,\n2015,5,13,\"B6\",\"548\",\"TPA\",\"HPN\",-5.00,-22.00,0.00,\"\",0.00,154.00,139.00,1032.00,,,,,,\n2015,5,14,\"B6\",\"548\",\"TPA\",\"HPN\",-5.00,-13.00,0.00,\"\",0.00,163.00,150.00,1032.00,,,,,,\n2015,5,15,\"B6\",\"548\",\"TPA\",\"HPN\",-3.00,-3.00,0.00,\"\",0.00,171.00,149.00,1032.00,,,,,,\n2015,5,16,\"B6\",\"548\",\"TPA\",\"HPN\",-4.00,-13.00,0.00,\"\",0.00,162.00,147.00,1032.00,,,,,,\n2015,5,17,\"B6\",\"548\",\"TPA\",\"HPN\",-14.00,-27.00,0.00,\"\",0.00,158.00,144.00,1032.00,,,,,,\n2015,5,18,\"B6\",\"548\",\"TPA\",\"HPN\",-3.00,-8.00,0.00,\"\",0.00,166.00,151.00,1032.00,,,,,,\n2015,5,19,\"B6\",\"548\",\"TPA\",\"HPN\",4.00,-4.00,0.00,\"\",0.00,163.00,150.00,1032.00,,,,,,\n2015,5,20,\"B6\",\"548\",\"TPA\",\"HPN\",0.00,25.00,0.00,\"\",0.00,196.00,174.00,1032.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,21,\"B6\",\"548\",\"TPA\",\"HPN\",-4.00,-22.00,0.00,\"\",0.00,153.00,138.00,1032.00,,,,,,\n2015,5,22,\"B6\",\"548\",\"TPA\",\"HPN\",-1.00,7.00,0.00,\"\",0.00,179.00,135.00,1032.00,,,,,,\n2015,5,23,\"B6\",\"548\",\"TPA\",\"HPN\",-5.00,-9.00,0.00,\"\",0.00,167.00,147.00,1032.00,,,,,,\n2015,5,24,\"B6\",\"548\",\"TPA\",\"HPN\",-9.00,-20.00,0.00,\"\",0.00,160.00,147.00,1032.00,,,,,,\n2015,5,25,\"B6\",\"548\",\"TPA\",\"HPN\",2.00,-11.00,0.00,\"\",0.00,158.00,143.00,1032.00,,,,,,\n2015,5,26,\"B6\",\"548\",\"TPA\",\"HPN\",27.00,11.00,0.00,\"\",0.00,155.00,141.00,1032.00,,,,,,\n2015,5,27,\"B6\",\"548\",\"TPA\",\"HPN\",-8.00,-17.00,0.00,\"\",0.00,162.00,145.00,1032.00,,,,,,\n2015,5,28,\"B6\",\"548\",\"TPA\",\"HPN\",103.00,95.00,0.00,\"\",0.00,163.00,150.00,1032.00,95.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"B6\",\"548\",\"TPA\",\"HPN\",-4.00,-4.00,0.00,\"\",0.00,171.00,149.00,1032.00,,,,,,\n2015,5,30,\"B6\",\"548\",\"TPA\",\"HPN\",1.00,-3.00,0.00,\"\",0.00,167.00,145.00,1032.00,,,,,,\n2015,5,31,\"B6\",\"548\",\"TPA\",\"HPN\",-8.00,98.00,0.00,\"\",0.00,277.00,146.00,1032.00,0.00,0.00,98.00,0.00,0.00,\n2015,5,1,\"B6\",\"553\",\"JFK\",\"PBI\",-4.00,-2.00,0.00,\"\",0.00,179.00,149.00,1028.00,,,,,,\n2015,5,2,\"B6\",\"553\",\"JFK\",\"PBI\",3.00,-10.00,0.00,\"\",0.00,164.00,138.00,1028.00,,,,,,\n2015,5,3,\"B6\",\"553\",\"JFK\",\"PBI\",2.00,-12.00,0.00,\"\",0.00,163.00,138.00,1028.00,,,,,,\n2015,5,4,\"B6\",\"553\",\"JFK\",\"PBI\",-4.00,-10.00,0.00,\"\",0.00,171.00,147.00,1028.00,,,,,,\n2015,5,5,\"B6\",\"553\",\"JFK\",\"PBI\",-1.00,-10.00,0.00,\"\",0.00,168.00,146.00,1028.00,,,,,,\n2015,5,6,\"B6\",\"553\",\"JFK\",\"PBI\",-2.00,-1.00,0.00,\"\",0.00,178.00,151.00,1028.00,,,,,,\n2015,5,7,\"B6\",\"553\",\"JFK\",\"PBI\",0.00,-15.00,0.00,\"\",0.00,162.00,143.00,1028.00,,,,,,\n2015,5,8,\"B6\",\"553\",\"JFK\",\"PBI\",20.00,8.00,0.00,\"\",0.00,165.00,145.00,1028.00,,,,,,\n2015,5,9,\"B6\",\"553\",\"JFK\",\"PBI\",-2.00,-7.00,0.00,\"\",0.00,172.00,136.00,1028.00,,,,,,\n2015,5,10,\"B6\",\"553\",\"JFK\",\"PBI\",32.00,29.00,0.00,\"\",0.00,174.00,152.00,1028.00,11.00,0.00,0.00,0.00,18.00,\n2015,5,11,\"B6\",\"553\",\"JFK\",\"PBI\",-1.00,0.00,0.00,\"\",0.00,178.00,151.00,1028.00,,,,,,\n2015,5,12,\"B6\",\"553\",\"JFK\",\"PBI\",47.00,25.00,0.00,\"\",0.00,155.00,137.00,1028.00,16.00,0.00,0.00,0.00,9.00,\n2015,5,13,\"B6\",\"553\",\"JFK\",\"PBI\",-3.00,-16.00,0.00,\"\",0.00,164.00,141.00,1028.00,,,,,,\n2015,5,14,\"B6\",\"553\",\"JFK\",\"PBI\",-4.00,-15.00,0.00,\"\",0.00,166.00,133.00,1028.00,,,,,,\n2015,5,15,\"B6\",\"553\",\"JFK\",\"PBI\",2.00,-8.00,0.00,\"\",0.00,167.00,137.00,1028.00,,,,,,\n2015,5,16,\"B6\",\"553\",\"JFK\",\"PBI\",2.00,-20.00,0.00,\"\",0.00,155.00,133.00,1028.00,,,,,,\n2015,5,17,\"B6\",\"553\",\"JFK\",\"PBI\",-2.00,-17.00,0.00,\"\",0.00,162.00,136.00,1028.00,,,,,,\n2015,5,18,\"B6\",\"553\",\"JFK\",\"PBI\",22.00,30.00,0.00,\"\",0.00,185.00,147.00,1028.00,22.00,0.00,8.00,0.00,0.00,\n2015,5,19,\"B6\",\"553\",\"JFK\",\"PBI\",7.00,16.00,0.00,\"\",0.00,186.00,148.00,1028.00,7.00,0.00,9.00,0.00,0.00,\n2015,5,20,\"B6\",\"553\",\"JFK\",\"PBI\",2.00,-18.00,0.00,\"\",0.00,157.00,137.00,1028.00,,,,,,\n2015,5,21,\"B6\",\"553\",\"JFK\",\"PBI\",4.00,33.00,0.00,\"\",0.00,206.00,150.00,1028.00,4.00,0.00,29.00,0.00,0.00,\n2015,5,22,\"B6\",\"553\",\"JFK\",\"PBI\",0.00,-3.00,0.00,\"\",0.00,174.00,146.00,1028.00,,,,,,\n2015,5,23,\"B6\",\"553\",\"JFK\",\"PBI\",4.00,-7.00,0.00,\"\",0.00,166.00,136.00,1028.00,,,,,,\n2015,5,24,\"B6\",\"553\",\"JFK\",\"PBI\",9.00,-17.00,0.00,\"\",0.00,151.00,129.00,1028.00,,,,,,\n2015,5,25,\"B6\",\"553\",\"JFK\",\"PBI\",-1.00,-10.00,0.00,\"\",0.00,168.00,136.00,1028.00,,,,,,\n2015,5,26,\"B6\",\"553\",\"JFK\",\"PBI\",-7.00,-22.00,0.00,\"\",0.00,162.00,136.00,1028.00,,,,,,\n2015,5,27,\"B6\",\"553\",\"JFK\",\"PBI\",-4.00,-17.00,0.00,\"\",0.00,164.00,138.00,1028.00,,,,,,\n2015,5,28,\"B6\",\"553\",\"JFK\",\"PBI\",92.00,78.00,0.00,\"\",0.00,163.00,134.00,1028.00,9.00,0.00,0.00,0.00,69.00,\n2015,5,29,\"B6\",\"553\",\"JFK\",\"PBI\",-5.00,-28.00,0.00,\"\",0.00,154.00,130.00,1028.00,,,,,,\n2015,5,30,\"B6\",\"553\",\"JFK\",\"PBI\",-5.00,-16.00,0.00,\"\",0.00,166.00,134.00,1028.00,,,,,,\n2015,5,31,\"B6\",\"553\",\"JFK\",\"PBI\",-3.00,-15.00,0.00,\"\",0.00,165.00,134.00,1028.00,,,,,,\n2015,5,22,\"B6\",\"563\",\"JFK\",\"SEA\",-1.00,3.00,0.00,\"\",0.00,368.00,338.00,2422.00,,,,,,\n2015,5,1,\"B6\",\"575\",\"JFK\",\"MSY\",-4.00,-29.00,0.00,\"\",0.00,185.00,157.00,1182.00,,,,,,\n2015,5,2,\"B6\",\"575\",\"JFK\",\"MSY\",-4.00,-22.00,0.00,\"\",0.00,187.00,159.00,1182.00,,,,,,\n2015,5,3,\"B6\",\"575\",\"JFK\",\"MSY\",-3.00,-20.00,0.00,\"\",0.00,191.00,155.00,1182.00,,,,,,\n2015,5,4,\"B6\",\"575\",\"JFK\",\"MSY\",-5.00,-28.00,0.00,\"\",0.00,185.00,156.00,1182.00,,,,,,\n2015,5,5,\"B6\",\"575\",\"JFK\",\"MSY\",-4.00,-27.00,0.00,\"\",0.00,185.00,153.00,1182.00,,,,,,\n2015,5,6,\"B6\",\"575\",\"JFK\",\"MSY\",-1.00,-17.00,0.00,\"\",0.00,189.00,149.00,1182.00,,,,,,\n2015,5,7,\"B6\",\"575\",\"JFK\",\"MSY\",27.00,5.00,0.00,\"\",0.00,188.00,150.00,1182.00,,,,,,\n2015,5,8,\"B6\",\"575\",\"JFK\",\"MSY\",2.00,-6.00,0.00,\"\",0.00,200.00,150.00,1182.00,,,,,,\n2015,5,9,\"B6\",\"575\",\"JFK\",\"MSY\",-4.00,-21.00,0.00,\"\",0.00,188.00,151.00,1182.00,,,,,,\n2015,5,10,\"B6\",\"575\",\"JFK\",\"MSY\",-5.00,-20.00,0.00,\"\",0.00,193.00,156.00,1182.00,,,,,,\n2015,5,11,\"B6\",\"575\",\"JFK\",\"MSY\",-8.00,13.00,0.00,\"\",0.00,229.00,166.00,1182.00,,,,,,\n2015,5,12,\"B6\",\"575\",\"JFK\",\"MSY\",1.00,-9.00,0.00,\"\",0.00,198.00,171.00,1182.00,,,,,,\n2015,5,13,\"B6\",\"575\",\"JFK\",\"MSY\",-7.00,-22.00,0.00,\"\",0.00,193.00,163.00,1182.00,,,,,,\n2015,5,14,\"B6\",\"575\",\"JFK\",\"MSY\",4.00,-18.00,0.00,\"\",0.00,186.00,156.00,1182.00,,,,,,\n2015,5,15,\"B6\",\"575\",\"JFK\",\"MSY\",0.00,-9.00,0.00,\"\",0.00,199.00,165.00,1182.00,,,,,,\n2015,5,16,\"B6\",\"575\",\"JFK\",\"MSY\",76.00,58.00,0.00,\"\",0.00,187.00,164.00,1182.00,58.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"575\",\"JFK\",\"MSY\",11.00,-4.00,0.00,\"\",0.00,193.00,158.00,1182.00,,,,,,\n2015,5,18,\"B6\",\"575\",\"JFK\",\"MSY\",149.00,139.00,0.00,\"\",0.00,198.00,170.00,1182.00,139.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"B6\",\"575\",\"JFK\",\"MSY\",0.00,-12.00,0.00,\"\",0.00,196.00,157.00,1182.00,,,,,,\n2015,5,20,\"B6\",\"575\",\"JFK\",\"MSY\",-7.00,-34.00,0.00,\"\",0.00,181.00,153.00,1182.00,,,,,,\n2015,5,21,\"B6\",\"575\",\"JFK\",\"MSY\",0.00,,0.00,\"\",1.00,,,1182.00,,,,,,\n2015,5,22,\"B6\",\"575\",\"JFK\",\"MSY\",43.00,18.00,0.00,\"\",0.00,183.00,170.00,1182.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"575\",\"JFK\",\"MSY\",-5.00,-6.00,0.00,\"\",0.00,204.00,158.00,1182.00,,,,,,\n2015,5,24,\"B6\",\"575\",\"JFK\",\"MSY\",85.00,64.00,0.00,\"\",0.00,187.00,161.00,1182.00,64.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"B6\",\"575\",\"JFK\",\"MSY\",-6.00,29.00,0.00,\"\",0.00,243.00,196.00,1182.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,26,\"B6\",\"575\",\"JFK\",\"MSY\",-6.00,-13.00,0.00,\"\",0.00,201.00,168.00,1182.00,,,,,,\n2015,5,27,\"B6\",\"575\",\"JFK\",\"MSY\",49.00,45.00,0.00,\"\",0.00,204.00,170.00,1182.00,42.00,0.00,0.00,0.00,3.00,\n2015,5,28,\"B6\",\"575\",\"JFK\",\"MSY\",-4.00,-16.00,0.00,\"\",0.00,196.00,166.00,1182.00,,,,,,\n2015,5,29,\"B6\",\"575\",\"JFK\",\"MSY\",6.00,-22.00,0.00,\"\",0.00,180.00,152.00,1182.00,,,,,,\n2015,5,30,\"B6\",\"575\",\"JFK\",\"MSY\",-4.00,-18.00,0.00,\"\",0.00,191.00,156.00,1182.00,,,,,,\n2015,5,31,\"B6\",\"575\",\"JFK\",\"MSY\",74.00,57.00,0.00,\"\",0.00,191.00,158.00,1182.00,57.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"B6\",\"576\",\"MSY\",\"JFK\",-13.00,-16.00,0.00,\"\",0.00,191.00,173.00,1182.00,,,,,,\n2015,5,2,\"B6\",\"576\",\"MSY\",\"JFK\",-7.00,-38.00,0.00,\"\",0.00,163.00,152.00,1182.00,,,,,,\n2015,5,3,\"B6\",\"576\",\"MSY\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,182.00,162.00,1182.00,,,,,,\n2015,5,4,\"B6\",\"576\",\"MSY\",\"JFK\",-12.00,-8.00,0.00,\"\",0.00,198.00,181.00,1182.00,,,,,,\n2015,5,5,\"B6\",\"576\",\"MSY\",\"JFK\",-11.00,-28.00,0.00,\"\",0.00,177.00,148.00,1182.00,,,,,,\n2015,5,6,\"B6\",\"576\",\"MSY\",\"JFK\",-8.00,-37.00,0.00,\"\",0.00,165.00,153.00,1182.00,,,,,,\n2015,5,7,\"B6\",\"576\",\"MSY\",\"JFK\",9.00,-9.00,0.00,\"\",0.00,174.00,155.00,1182.00,,,,,,\n2015,5,8,\"B6\",\"576\",\"MSY\",\"JFK\",80.00,74.00,0.00,\"\",0.00,188.00,162.00,1182.00,0.00,0.00,74.00,0.00,0.00,\n2015,5,9,\"B6\",\"576\",\"MSY\",\"JFK\",65.00,55.00,0.00,\"\",0.00,184.00,155.00,1182.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,10,\"B6\",\"576\",\"MSY\",\"JFK\",-9.00,-29.00,0.00,\"\",0.00,174.00,155.00,1182.00,,,,,,\n2015,5,11,\"B6\",\"576\",\"MSY\",\"JFK\",88.00,67.00,0.00,\"\",0.00,173.00,158.00,1182.00,0.00,0.00,66.00,0.00,1.00,\n2015,5,12,\"B6\",\"576\",\"MSY\",\"JFK\",22.00,16.00,0.00,\"\",0.00,188.00,149.00,1182.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,13,\"B6\",\"576\",\"MSY\",\"JFK\",9.00,-15.00,0.00,\"\",0.00,170.00,154.00,1182.00,,,,,,\n2015,5,14,\"B6\",\"576\",\"MSY\",\"JFK\",-14.00,-40.00,0.00,\"\",0.00,168.00,158.00,1182.00,,,,,,\n2015,5,15,\"B6\",\"576\",\"MSY\",\"JFK\",50.00,48.00,0.00,\"\",0.00,192.00,159.00,1182.00,48.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"B6\",\"576\",\"MSY\",\"JFK\",61.00,51.00,0.00,\"\",0.00,184.00,168.00,1182.00,8.00,0.00,0.00,0.00,43.00,\n2015,5,17,\"B6\",\"576\",\"MSY\",\"JFK\",4.00,-16.00,0.00,\"\",0.00,174.00,161.00,1182.00,,,,,,\n2015,5,18,\"B6\",\"576\",\"MSY\",\"JFK\",141.00,172.00,0.00,\"\",0.00,225.00,202.00,1182.00,0.00,0.00,172.00,0.00,0.00,\n2015,5,19,\"B6\",\"576\",\"MSY\",\"JFK\",2.00,-13.00,0.00,\"\",0.00,179.00,156.00,1182.00,,,,,,\n2015,5,20,\"B6\",\"576\",\"MSY\",\"JFK\",15.00,-4.00,0.00,\"\",0.00,175.00,158.00,1182.00,,,,,,\n2015,5,21,\"B6\",\"576\",\"MSY\",\"JFK\",167.00,127.00,0.00,\"\",0.00,154.00,139.00,1182.00,9.00,0.00,0.00,0.00,118.00,\n2015,5,22,\"B6\",\"576\",\"MSY\",\"JFK\",48.00,28.00,0.00,\"\",0.00,174.00,148.00,1182.00,0.00,0.00,25.00,0.00,3.00,\n2015,5,23,\"B6\",\"576\",\"MSY\",\"JFK\",2.00,-15.00,0.00,\"\",0.00,177.00,159.00,1182.00,,,,,,\n2015,5,24,\"B6\",\"576\",\"MSY\",\"JFK\",60.00,36.00,0.00,\"\",0.00,170.00,155.00,1182.00,5.00,0.00,0.00,0.00,31.00,\n2015,5,25,\"B6\",\"576\",\"MSY\",\"JFK\",30.00,14.00,0.00,\"\",0.00,178.00,160.00,1182.00,,,,,,\n2015,5,26,\"B6\",\"576\",\"MSY\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,167.00,151.00,1182.00,,,,,,\n2015,5,27,\"B6\",\"576\",\"MSY\",\"JFK\",,,1.00,\"C\",0.00,,,1182.00,,,,,,\n2015,5,28,\"B6\",\"576\",\"MSY\",\"JFK\",-10.00,-5.00,0.00,\"\",0.00,199.00,184.00,1182.00,,,,,,\n2015,5,29,\"B6\",\"576\",\"MSY\",\"JFK\",-9.00,-27.00,0.00,\"\",0.00,176.00,159.00,1182.00,,,,,,\n2015,5,30,\"B6\",\"576\",\"MSY\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,185.00,170.00,1182.00,,,,,,\n2015,5,31,\"B6\",\"576\",\"MSY\",\"JFK\",127.00,143.00,0.00,\"\",0.00,210.00,178.00,1182.00,0.00,0.00,143.00,0.00,0.00,\n2015,5,28,\"B6\",\"653\",\"JFK\",\"PBI\",-3.00,-15.00,0.00,\"\",0.00,160.00,137.00,1028.00,,,,,,\n2015,5,29,\"B6\",\"653\",\"JFK\",\"PBI\",-10.00,-13.00,0.00,\"\",0.00,169.00,134.00,1028.00,,,,,,\n2015,5,30,\"B6\",\"653\",\"JFK\",\"PBI\",-8.00,-30.00,0.00,\"\",0.00,150.00,131.00,1028.00,,,,,,\n2015,5,31,\"B6\",\"653\",\"JFK\",\"PBI\",3.00,-18.00,0.00,\"\",0.00,151.00,133.00,1028.00,,,,,,\n2015,5,1,\"B6\",\"654\",\"PBI\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,156.00,126.00,1028.00,,,,,,\n2015,5,2,\"B6\",\"654\",\"PBI\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,151.00,130.00,1028.00,,,,,,\n2015,5,3,\"B6\",\"654\",\"PBI\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,153.00,133.00,1028.00,,,,,,\n2015,5,4,\"B6\",\"654\",\"PBI\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,145.00,130.00,1028.00,,,,,,\n2015,5,5,\"B6\",\"654\",\"PBI\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,149.00,134.00,1028.00,,,,,,\n2015,5,6,\"B6\",\"654\",\"PBI\",\"JFK\",2.00,-23.00,0.00,\"\",0.00,146.00,133.00,1028.00,,,,,,\n2015,5,7,\"B6\",\"654\",\"PBI\",\"JFK\",11.00,-10.00,0.00,\"\",0.00,150.00,139.00,1028.00,,,,,,\n2015,5,8,\"B6\",\"654\",\"PBI\",\"JFK\",1.00,-9.00,0.00,\"\",0.00,161.00,145.00,1028.00,,,,,,\n2015,5,9,\"B6\",\"654\",\"PBI\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,169.00,149.00,1028.00,,,,,,\n2015,5,10,\"B6\",\"654\",\"PBI\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,157.00,142.00,1028.00,,,,,,\n2015,5,11,\"B6\",\"654\",\"PBI\",\"JFK\",0.00,4.00,0.00,\"\",0.00,175.00,157.00,1028.00,,,,,,\n2015,5,12,\"B6\",\"654\",\"PBI\",\"JFK\",104.00,98.00,0.00,\"\",0.00,165.00,134.00,1028.00,0.00,0.00,98.00,0.00,0.00,\n2015,5,13,\"B6\",\"654\",\"PBI\",\"JFK\",-10.00,-28.00,0.00,\"\",0.00,153.00,133.00,1028.00,,,,,,\n2015,5,14,\"B6\",\"654\",\"PBI\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,160.00,141.00,1028.00,,,,,,\n2015,5,15,\"B6\",\"654\",\"PBI\",\"JFK\",21.00,0.00,0.00,\"\",0.00,150.00,134.00,1028.00,,,,,,\n2015,5,16,\"B6\",\"654\",\"PBI\",\"JFK\",14.00,-6.00,0.00,\"\",0.00,151.00,135.00,1028.00,,,,,,\n2015,5,17,\"B6\",\"654\",\"PBI\",\"JFK\",-7.00,-10.00,0.00,\"\",0.00,168.00,139.00,1028.00,,,,,,\n2015,5,18,\"B6\",\"654\",\"PBI\",\"JFK\",44.00,48.00,0.00,\"\",0.00,175.00,143.00,1028.00,44.00,0.00,4.00,0.00,0.00,\n2015,5,19,\"B6\",\"654\",\"PBI\",\"JFK\",-17.00,-34.00,0.00,\"\",0.00,154.00,134.00,1028.00,,,,,,\n2015,5,20,\"B6\",\"654\",\"PBI\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,156.00,143.00,1028.00,,,,,,\n2015,5,21,\"B6\",\"654\",\"PBI\",\"JFK\",8.00,-17.00,0.00,\"\",0.00,146.00,133.00,1028.00,,,,,,\n2015,5,22,\"B6\",\"654\",\"PBI\",\"JFK\",7.00,-12.00,0.00,\"\",0.00,152.00,132.00,1028.00,,,,,,\n2015,5,23,\"B6\",\"654\",\"PBI\",\"JFK\",-7.00,-30.00,0.00,\"\",0.00,148.00,132.00,1028.00,,,,,,\n2015,5,24,\"B6\",\"654\",\"PBI\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,155.00,139.00,1028.00,,,,,,\n2015,5,25,\"B6\",\"654\",\"PBI\",\"JFK\",-12.00,-36.00,0.00,\"\",0.00,147.00,133.00,1028.00,,,,,,\n2015,5,26,\"B6\",\"654\",\"PBI\",\"JFK\",-9.00,-33.00,0.00,\"\",0.00,147.00,126.00,1028.00,,,,,,\n2015,5,27,\"B6\",\"654\",\"PBI\",\"JFK\",13.00,-10.00,0.00,\"\",0.00,148.00,133.00,1028.00,,,,,,\n2015,5,28,\"B6\",\"654\",\"PBI\",\"JFK\",19.00,-3.00,0.00,\"\",0.00,149.00,131.00,1028.00,,,,,,\n2015,5,29,\"B6\",\"654\",\"PBI\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,165.00,142.00,1028.00,,,,,,\n2015,5,30,\"B6\",\"654\",\"PBI\",\"JFK\",-9.00,-35.00,0.00,\"\",0.00,145.00,131.00,1028.00,,,,,,\n2015,5,31,\"B6\",\"654\",\"PBI\",\"JFK\",-10.00,-19.00,0.00,\"\",0.00,162.00,136.00,1028.00,,,,,,\n2015,5,1,\"B6\",\"655\",\"SYR\",\"MCO\",-5.00,-12.00,0.00,\"\",0.00,158.00,143.00,1053.00,,,,,,\n2015,5,2,\"B6\",\"655\",\"SYR\",\"MCO\",-7.00,-16.00,0.00,\"\",0.00,156.00,142.00,1053.00,,,,,,\n2015,5,3,\"B6\",\"655\",\"SYR\",\"MCO\",-8.00,-15.00,0.00,\"\",0.00,158.00,143.00,1053.00,,,,,,\n2015,5,4,\"B6\",\"655\",\"SYR\",\"MCO\",-11.00,-22.00,0.00,\"\",0.00,154.00,139.00,1053.00,,,,,,\n2015,5,5,\"B6\",\"655\",\"SYR\",\"MCO\",-12.00,-17.00,0.00,\"\",0.00,160.00,146.00,1053.00,,,,,,\n2015,5,6,\"B6\",\"655\",\"SYR\",\"MCO\",-4.00,0.00,0.00,\"\",0.00,169.00,146.00,1053.00,,,,,,\n2015,5,7,\"B6\",\"655\",\"SYR\",\"MCO\",-12.00,-14.00,0.00,\"\",0.00,163.00,147.00,1053.00,,,,,,\n2015,5,8,\"B6\",\"655\",\"SYR\",\"MCO\",-1.00,-6.00,0.00,\"\",0.00,160.00,138.00,1053.00,,,,,,\n2015,5,9,\"B6\",\"655\",\"SYR\",\"MCO\",-5.00,-18.00,0.00,\"\",0.00,152.00,131.00,1053.00,,,,,,\n2015,5,10,\"B6\",\"655\",\"SYR\",\"MCO\",0.00,-1.00,0.00,\"\",0.00,164.00,136.00,1053.00,,,,,,\n2015,5,11,\"B6\",\"655\",\"SYR\",\"MCO\",-6.00,-11.00,0.00,\"\",0.00,160.00,143.00,1053.00,,,,,,\n2015,5,12,\"B6\",\"655\",\"SYR\",\"MCO\",-13.00,-6.00,0.00,\"\",0.00,172.00,143.00,1053.00,,,,,,\n2015,5,13,\"B6\",\"655\",\"SYR\",\"MCO\",-10.00,-20.00,0.00,\"\",0.00,155.00,143.00,1053.00,,,,,,\n2015,5,14,\"B6\",\"655\",\"SYR\",\"MCO\",-11.00,-27.00,0.00,\"\",0.00,149.00,136.00,1053.00,,,,,,\n2015,5,15,\"B6\",\"655\",\"SYR\",\"MCO\",-5.00,-7.00,0.00,\"\",0.00,163.00,146.00,1053.00,,,,,,\n2015,5,16,\"B6\",\"655\",\"SYR\",\"MCO\",-9.00,-13.00,0.00,\"\",0.00,161.00,141.00,1053.00,,,,,,\n2015,5,17,\"B6\",\"655\",\"SYR\",\"MCO\",-1.00,-12.00,0.00,\"\",0.00,154.00,138.00,1053.00,,,,,,\n2015,5,18,\"B6\",\"655\",\"SYR\",\"MCO\",-10.00,-20.00,0.00,\"\",0.00,155.00,137.00,1053.00,,,,,,\n2015,5,19,\"B6\",\"655\",\"SYR\",\"MCO\",53.00,45.00,0.00,\"\",0.00,157.00,135.00,1053.00,45.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"B6\",\"655\",\"SYR\",\"MCO\",-7.00,-21.00,0.00,\"\",0.00,151.00,137.00,1053.00,,,,,,\n2015,5,21,\"B6\",\"655\",\"SYR\",\"MCO\",-9.00,-11.00,0.00,\"\",0.00,163.00,151.00,1053.00,,,,,,\n2015,5,22,\"B6\",\"655\",\"SYR\",\"MCO\",-11.00,-20.00,0.00,\"\",0.00,156.00,144.00,1053.00,,,,,,\n2015,5,23,\"B6\",\"655\",\"SYR\",\"MCO\",-8.00,-22.00,0.00,\"\",0.00,151.00,138.00,1053.00,,,,,,\n2015,5,24,\"B6\",\"655\",\"SYR\",\"MCO\",-7.00,-16.00,0.00,\"\",0.00,156.00,137.00,1053.00,,,,,,\n2015,5,25,\"B6\",\"655\",\"SYR\",\"MCO\",-8.00,-21.00,0.00,\"\",0.00,152.00,135.00,1053.00,,,,,,\n2015,5,26,\"B6\",\"655\",\"SYR\",\"MCO\",-6.00,-15.00,0.00,\"\",0.00,156.00,140.00,1053.00,,,,,,\n2015,5,27,\"B6\",\"655\",\"SYR\",\"MCO\",-10.00,-18.00,0.00,\"\",0.00,157.00,145.00,1053.00,,,,,,\n2015,5,28,\"B6\",\"655\",\"SYR\",\"MCO\",-10.00,-16.00,0.00,\"\",0.00,159.00,147.00,1053.00,,,,,,\n2015,5,29,\"B6\",\"655\",\"SYR\",\"MCO\",-4.00,-15.00,0.00,\"\",0.00,154.00,138.00,1053.00,,,,,,\n2015,5,30,\"B6\",\"655\",\"SYR\",\"MCO\",-9.00,-10.00,0.00,\"\",0.00,164.00,140.00,1053.00,,,,,,\n2015,5,31,\"B6\",\"655\",\"SYR\",\"MCO\",-9.00,-21.00,0.00,\"\",0.00,153.00,138.00,1053.00,,,,,,\n2015,5,1,\"B6\",\"656\",\"MCO\",\"SYR\",1.00,-4.00,0.00,\"\",0.00,156.00,139.00,1053.00,,,,,,\n2015,5,2,\"B6\",\"656\",\"MCO\",\"SYR\",151.00,154.00,0.00,\"\",0.00,164.00,143.00,1053.00,111.00,0.00,3.00,0.00,40.00,\n2015,5,3,\"B6\",\"656\",\"MCO\",\"SYR\",-5.00,-8.00,0.00,\"\",0.00,158.00,143.00,1053.00,,,,,,\n2015,5,4,\"B6\",\"656\",\"MCO\",\"SYR\",-6.00,-9.00,0.00,\"\",0.00,158.00,138.00,1053.00,,,,,,\n2015,5,5,\"B6\",\"656\",\"MCO\",\"SYR\",45.00,32.00,0.00,\"\",0.00,148.00,131.00,1053.00,23.00,0.00,0.00,0.00,9.00,\n2015,5,6,\"B6\",\"656\",\"MCO\",\"SYR\",-4.00,-15.00,0.00,\"\",0.00,150.00,131.00,1053.00,,,,,,\n2015,5,7,\"B6\",\"656\",\"MCO\",\"SYR\",119.00,109.00,0.00,\"\",0.00,151.00,134.00,1053.00,109.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"B6\",\"656\",\"MCO\",\"SYR\",77.00,74.00,0.00,\"\",0.00,158.00,136.00,1053.00,74.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"B6\",\"656\",\"MCO\",\"SYR\",-10.00,-14.00,0.00,\"\",0.00,157.00,142.00,1053.00,,,,,,\n2015,5,10,\"B6\",\"656\",\"MCO\",\"SYR\",-7.00,-4.00,0.00,\"\",0.00,164.00,140.00,1053.00,,,,,,\n2015,5,11,\"B6\",\"656\",\"MCO\",\"SYR\",-4.00,-6.00,0.00,\"\",0.00,159.00,144.00,1053.00,,,,,,\n2015,5,12,\"B6\",\"656\",\"MCO\",\"SYR\",-6.00,-10.00,0.00,\"\",0.00,157.00,140.00,1053.00,,,,,,\n2015,5,13,\"B6\",\"656\",\"MCO\",\"SYR\",-3.00,10.00,0.00,\"\",0.00,174.00,159.00,1053.00,,,,,,\n2015,5,14,\"B6\",\"656\",\"MCO\",\"SYR\",-4.00,-14.00,0.00,\"\",0.00,151.00,136.00,1053.00,,,,,,\n2015,5,15,\"B6\",\"656\",\"MCO\",\"SYR\",-3.00,-9.00,0.00,\"\",0.00,155.00,139.00,1053.00,,,,,,\n2015,5,16,\"B6\",\"656\",\"MCO\",\"SYR\",-5.00,-4.00,0.00,\"\",0.00,162.00,139.00,1053.00,,,,,,\n2015,5,17,\"B6\",\"656\",\"MCO\",\"SYR\",-7.00,-12.00,0.00,\"\",0.00,156.00,140.00,1053.00,,,,,,\n2015,5,18,\"B6\",\"656\",\"MCO\",\"SYR\",-3.00,-1.00,0.00,\"\",0.00,163.00,145.00,1053.00,,,,,,\n2015,5,19,\"B6\",\"656\",\"MCO\",\"SYR\",-9.00,10.00,0.00,\"\",0.00,180.00,153.00,1053.00,,,,,,\n2015,5,20,\"B6\",\"656\",\"MCO\",\"SYR\",7.00,1.00,0.00,\"\",0.00,155.00,132.00,1053.00,,,,,,\n2015,5,21,\"B6\",\"656\",\"MCO\",\"SYR\",57.00,41.00,0.00,\"\",0.00,145.00,130.00,1053.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"B6\",\"656\",\"MCO\",\"SYR\",91.00,89.00,0.00,\"\",0.00,159.00,141.00,1053.00,89.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"656\",\"MCO\",\"SYR\",-9.00,-6.00,0.00,\"\",0.00,164.00,145.00,1053.00,,,,,,\n2015,5,24,\"B6\",\"656\",\"MCO\",\"SYR\",-2.00,-8.00,0.00,\"\",0.00,155.00,138.00,1053.00,,,,,,\n2015,5,25,\"B6\",\"656\",\"MCO\",\"SYR\",-5.00,-20.00,0.00,\"\",0.00,146.00,130.00,1053.00,,,,,,\n2015,5,26,\"B6\",\"656\",\"MCO\",\"SYR\",-10.00,-32.00,0.00,\"\",0.00,139.00,128.00,1053.00,,,,,,\n2015,5,27,\"B6\",\"656\",\"MCO\",\"SYR\",-4.00,-17.00,0.00,\"\",0.00,148.00,130.00,1053.00,,,,,,\n2015,5,28,\"B6\",\"656\",\"MCO\",\"SYR\",-9.00,-6.00,0.00,\"\",0.00,164.00,148.00,1053.00,,,,,,\n2015,5,29,\"B6\",\"656\",\"MCO\",\"SYR\",-7.00,-15.00,0.00,\"\",0.00,153.00,135.00,1053.00,,,,,,\n2015,5,30,\"B6\",\"656\",\"MCO\",\"SYR\",-10.00,-12.00,0.00,\"\",0.00,159.00,145.00,1053.00,,,,,,\n2015,5,31,\"B6\",\"656\",\"MCO\",\"SYR\",-4.00,-12.00,0.00,\"\",0.00,153.00,137.00,1053.00,,,,,,\n2015,5,1,\"B6\",\"669\",\"JFK\",\"SJC\",19.00,-13.00,0.00,\"\",0.00,373.00,344.00,2569.00,,,,,,\n2015,5,2,\"B6\",\"669\",\"JFK\",\"SJC\",-2.00,-31.00,0.00,\"\",0.00,376.00,340.00,2569.00,,,,,,\n2015,5,3,\"B6\",\"669\",\"JFK\",\"SJC\",0.00,-39.00,0.00,\"\",0.00,366.00,335.00,2569.00,,,,,,\n2015,5,4,\"B6\",\"669\",\"JFK\",\"SJC\",-2.00,-20.00,0.00,\"\",0.00,387.00,358.00,2569.00,,,,,,\n2015,5,5,\"B6\",\"669\",\"JFK\",\"SJC\",-5.00,-47.00,0.00,\"\",0.00,363.00,333.00,2569.00,,,,,,\n2015,5,6,\"B6\",\"669\",\"JFK\",\"SJC\",1.00,-19.00,0.00,\"\",0.00,385.00,343.00,2569.00,,,,,,\n2015,5,7,\"B6\",\"669\",\"JFK\",\"SJC\",-1.00,-42.00,0.00,\"\",0.00,364.00,339.00,2569.00,,,,,,\n2015,5,8,\"B6\",\"669\",\"JFK\",\"SJC\",-2.00,-21.00,0.00,\"\",0.00,386.00,341.00,2569.00,,,,,,\n2015,5,9,\"B6\",\"669\",\"JFK\",\"SJC\",-2.00,-41.00,0.00,\"\",0.00,366.00,334.00,2569.00,,,,,,\n2015,5,10,\"B6\",\"669\",\"JFK\",\"SJC\",-6.00,-8.00,0.00,\"\",0.00,403.00,352.00,2569.00,,,,,,\n2015,5,11,\"B6\",\"669\",\"JFK\",\"SJC\",2.00,-19.00,0.00,\"\",0.00,384.00,361.00,2569.00,,,,,,\n2015,5,12,\"B6\",\"669\",\"JFK\",\"SJC\",-3.00,-6.00,0.00,\"\",0.00,402.00,379.00,2569.00,,,,,,\n2015,5,13,\"B6\",\"669\",\"JFK\",\"SJC\",-2.00,-18.00,0.00,\"\",0.00,389.00,366.00,2569.00,,,,,,\n2015,5,14,\"B6\",\"669\",\"JFK\",\"SJC\",28.00,-7.00,0.00,\"\",0.00,370.00,336.00,2569.00,,,,,,\n2015,5,15,\"B6\",\"669\",\"JFK\",\"SJC\",-1.00,-34.00,0.00,\"\",0.00,372.00,341.00,2569.00,,,,,,\n2015,5,16,\"B6\",\"669\",\"JFK\",\"SJC\",-1.00,-25.00,0.00,\"\",0.00,381.00,347.00,2569.00,,,,,,\n2015,5,17,\"B6\",\"669\",\"JFK\",\"SJC\",-4.00,-33.00,0.00,\"\",0.00,376.00,341.00,2569.00,,,,,,\n2015,5,18,\"B6\",\"669\",\"JFK\",\"SJC\",9.00,13.00,0.00,\"\",0.00,409.00,348.00,2569.00,,,,,,\n2015,5,19,\"B6\",\"669\",\"JFK\",\"SJC\",-7.00,-32.00,0.00,\"\",0.00,380.00,353.00,2569.00,,,,,,\n2015,5,20,\"B6\",\"669\",\"JFK\",\"SJC\",-3.00,-17.00,0.00,\"\",0.00,391.00,365.00,2569.00,,,,,,\n2015,5,21,\"B6\",\"669\",\"JFK\",\"SJC\",0.00,-31.00,0.00,\"\",0.00,374.00,351.00,2569.00,,,,,,\n2015,5,22,\"B6\",\"669\",\"JFK\",\"SJC\",-1.00,-13.00,0.00,\"\",0.00,393.00,368.00,2569.00,,,,,,\n2015,5,23,\"B6\",\"669\",\"JFK\",\"SJC\",42.00,26.00,0.00,\"\",0.00,389.00,352.00,2569.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"B6\",\"669\",\"JFK\",\"SJC\",1.00,-41.00,0.00,\"\",0.00,363.00,335.00,2569.00,,,,,,\n2015,5,25,\"B6\",\"669\",\"JFK\",\"SJC\",-5.00,-19.00,0.00,\"\",0.00,391.00,349.00,2569.00,,,,,,\n2015,5,26,\"B6\",\"669\",\"JFK\",\"SJC\",-7.00,-25.00,0.00,\"\",0.00,387.00,354.00,2569.00,,,,,,\n2015,5,27,\"B6\",\"669\",\"JFK\",\"SJC\",-1.00,56.00,0.00,\"\",0.00,462.00,356.00,2569.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,28,\"B6\",\"669\",\"JFK\",\"SJC\",-5.00,-32.00,0.00,\"\",0.00,378.00,348.00,2569.00,,,,,,\n2015,5,29,\"B6\",\"669\",\"JFK\",\"SJC\",-4.00,-45.00,0.00,\"\",0.00,364.00,336.00,2569.00,,,,,,\n2015,5,30,\"B6\",\"669\",\"JFK\",\"SJC\",-4.00,-38.00,0.00,\"\",0.00,371.00,326.00,2569.00,,,,,,\n2015,5,31,\"B6\",\"669\",\"JFK\",\"SJC\",354.00,,1.00,\"A\",0.00,,,2569.00,,,,,,\n2015,5,1,\"B6\",\"670\",\"SJC\",\"JFK\",-8.00,-15.00,0.00,\"\",0.00,326.00,311.00,2569.00,,,,,,\n2015,5,2,\"B6\",\"670\",\"SJC\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,325.00,304.00,2569.00,,,,,,\n2015,5,3,\"B6\",\"670\",\"SJC\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,328.00,314.00,2569.00,,,,,,\n2015,5,4,\"B6\",\"670\",\"SJC\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,318.00,304.00,2569.00,,,,,,\n2015,5,5,\"B6\",\"670\",\"SJC\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,330.00,308.00,2569.00,,,,,,\n2015,5,6,\"B6\",\"670\",\"SJC\",\"JFK\",53.00,62.00,0.00,\"\",0.00,342.00,321.00,2569.00,53.00,0.00,9.00,0.00,0.00,\n2015,5,7,\"B6\",\"670\",\"SJC\",\"JFK\",0.00,6.00,0.00,\"\",0.00,339.00,322.00,2569.00,,,,,,\n2015,5,8,\"B6\",\"670\",\"SJC\",\"JFK\",-14.00,36.00,0.00,\"\",0.00,383.00,364.00,2569.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,9,\"B6\",\"670\",\"SJC\",\"JFK\",-8.00,-4.00,0.00,\"\",0.00,337.00,318.00,2569.00,,,,,,\n2015,5,10,\"B6\",\"670\",\"SJC\",\"JFK\",-3.00,-3.00,0.00,\"\",0.00,333.00,318.00,2569.00,,,,,,\n2015,5,11,\"B6\",\"670\",\"SJC\",\"JFK\",-10.00,-45.00,0.00,\"\",0.00,298.00,283.00,2569.00,,,,,,\n2015,5,12,\"B6\",\"670\",\"SJC\",\"JFK\",14.00,-12.00,0.00,\"\",0.00,307.00,293.00,2569.00,,,,,,\n2015,5,13,\"B6\",\"670\",\"SJC\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,315.00,302.00,2569.00,,,,,,\n2015,5,14,\"B6\",\"670\",\"SJC\",\"JFK\",47.00,40.00,0.00,\"\",0.00,326.00,312.00,2569.00,40.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"B6\",\"670\",\"SJC\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,323.00,306.00,2569.00,,,,,,\n2015,5,16,\"B6\",\"670\",\"SJC\",\"JFK\",-9.00,-2.00,0.00,\"\",0.00,340.00,323.00,2569.00,,,,,,\n2015,5,17,\"B6\",\"670\",\"SJC\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,329.00,310.00,2569.00,,,,,,\n2015,5,18,\"B6\",\"670\",\"SJC\",\"JFK\",20.00,15.00,0.00,\"\",0.00,328.00,310.00,2569.00,6.00,0.00,0.00,0.00,9.00,\n2015,5,19,\"B6\",\"670\",\"SJC\",\"JFK\",-3.00,-42.00,0.00,\"\",0.00,294.00,280.00,2569.00,,,,,,\n2015,5,20,\"B6\",\"670\",\"SJC\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,313.00,294.00,2569.00,,,,,,\n2015,5,21,\"B6\",\"670\",\"SJC\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,331.00,313.00,2569.00,,,,,,\n2015,5,22,\"B6\",\"670\",\"SJC\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,319.00,299.00,2569.00,,,,,,\n2015,5,23,\"B6\",\"670\",\"SJC\",\"JFK\",23.00,5.00,0.00,\"\",0.00,315.00,299.00,2569.00,,,,,,\n2015,5,24,\"B6\",\"670\",\"SJC\",\"JFK\",17.00,10.00,0.00,\"\",0.00,326.00,311.00,2569.00,,,,,,\n2015,5,25,\"B6\",\"670\",\"SJC\",\"JFK\",-9.00,-17.00,0.00,\"\",0.00,325.00,307.00,2569.00,,,,,,\n2015,5,26,\"B6\",\"670\",\"SJC\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,332.00,315.00,2569.00,,,,,,\n2015,5,27,\"B6\",\"670\",\"SJC\",\"JFK\",65.00,52.00,0.00,\"\",0.00,321.00,304.00,2569.00,8.00,0.00,0.00,0.00,44.00,\n2015,5,28,\"B6\",\"670\",\"SJC\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,318.00,300.00,2569.00,,,,,,\n2015,5,29,\"B6\",\"670\",\"SJC\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,325.00,309.00,2569.00,,,,,,\n2015,5,30,\"B6\",\"670\",\"SJC\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,327.00,307.00,2569.00,,,,,,\n2015,5,31,\"B6\",\"670\",\"SJC\",\"JFK\",,,1.00,\"B\",0.00,,,2569.00,,,,,,\n2015,5,1,\"B6\",\"672\",\"FLL\",\"LGA\",-6.00,-26.00,0.00,\"\",0.00,167.00,138.00,1076.00,,,,,,\n2015,5,2,\"B6\",\"672\",\"FLL\",\"LGA\",38.00,13.00,0.00,\"\",0.00,162.00,138.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"672\",\"FLL\",\"LGA\",-1.00,-27.00,0.00,\"\",0.00,161.00,146.00,1076.00,,,,,,\n2015,5,4,\"B6\",\"672\",\"FLL\",\"LGA\",30.00,-7.00,0.00,\"\",0.00,150.00,133.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"672\",\"FLL\",\"LGA\",5.00,-24.00,0.00,\"\",0.00,158.00,137.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"672\",\"FLL\",\"LGA\",58.00,34.00,0.00,\"\",0.00,163.00,145.00,1076.00,31.00,0.00,0.00,0.00,3.00,\n2015,5,7,\"B6\",\"672\",\"FLL\",\"LGA\",4.00,-12.00,0.00,\"\",0.00,171.00,149.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"672\",\"FLL\",\"LGA\",11.00,0.00,0.00,\"\",0.00,176.00,148.00,1076.00,,,,,,\n2015,5,9,\"B6\",\"672\",\"FLL\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,183.00,163.00,1076.00,,,,,,\n2015,5,10,\"B6\",\"672\",\"FLL\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,179.00,159.00,1076.00,,,,,,\n2015,5,11,\"B6\",\"672\",\"FLL\",\"LGA\",133.00,127.00,0.00,\"\",0.00,181.00,156.00,1076.00,0.00,0.00,127.00,0.00,0.00,\n2015,5,12,\"B6\",\"672\",\"FLL\",\"LGA\",9.00,-15.00,0.00,\"\",0.00,163.00,143.00,1076.00,,,,,,\n2015,5,13,\"B6\",\"672\",\"FLL\",\"LGA\",21.00,8.00,0.00,\"\",0.00,174.00,147.00,1076.00,,,,,,\n2015,5,14,\"B6\",\"672\",\"FLL\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,170.00,148.00,1076.00,,,,,,\n2015,5,15,\"B6\",\"672\",\"FLL\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,167.00,144.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"672\",\"FLL\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,170.00,153.00,1076.00,,,,,,\n2015,5,17,\"B6\",\"672\",\"FLL\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,168.00,144.00,1076.00,,,,,,\n2015,5,18,\"B6\",\"672\",\"FLL\",\"LGA\",162.00,164.00,0.00,\"\",0.00,189.00,164.00,1076.00,162.00,0.00,2.00,0.00,0.00,\n2015,5,19,\"B6\",\"672\",\"FLL\",\"LGA\",110.00,106.00,0.00,\"\",0.00,183.00,151.00,1076.00,0.00,0.00,106.00,0.00,0.00,\n2015,5,20,\"B6\",\"672\",\"FLL\",\"LGA\",5.00,-23.00,0.00,\"\",0.00,159.00,137.00,1076.00,,,,,,\n2015,5,21,\"B6\",\"672\",\"FLL\",\"LGA\",1.00,-21.00,0.00,\"\",0.00,165.00,147.00,1076.00,,,,,,\n2015,5,22,\"B6\",\"672\",\"FLL\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,167.00,141.00,1076.00,,,,,,\n2015,5,23,\"B6\",\"672\",\"FLL\",\"LGA\",1.00,-10.00,0.00,\"\",0.00,176.00,146.00,1076.00,,,,,,\n2015,5,24,\"B6\",\"672\",\"FLL\",\"LGA\",-3.00,-26.00,0.00,\"\",0.00,164.00,148.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"672\",\"FLL\",\"LGA\",39.00,15.00,0.00,\"\",0.00,163.00,142.00,1076.00,5.00,0.00,0.00,0.00,10.00,\n2015,5,26,\"B6\",\"672\",\"FLL\",\"LGA\",30.00,0.00,0.00,\"\",0.00,157.00,140.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"672\",\"FLL\",\"LGA\",256.00,242.00,0.00,\"\",0.00,173.00,144.00,1076.00,0.00,0.00,242.00,0.00,0.00,\n2015,5,28,\"B6\",\"672\",\"FLL\",\"LGA\",1.00,-23.00,0.00,\"\",0.00,163.00,143.00,1076.00,,,,,,\n2015,5,29,\"B6\",\"672\",\"FLL\",\"LGA\",2.00,-20.00,0.00,\"\",0.00,165.00,147.00,1076.00,,,,,,\n2015,5,30,\"B6\",\"672\",\"FLL\",\"LGA\",-5.00,-29.00,0.00,\"\",0.00,163.00,145.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"672\",\"FLL\",\"LGA\",301.00,292.00,0.00,\"\",0.00,178.00,150.00,1076.00,0.00,0.00,292.00,0.00,0.00,\n2015,5,1,\"B6\",\"675\",\"JFK\",\"MSY\",-4.00,-22.00,0.00,\"\",0.00,179.00,154.00,1182.00,,,,,,\n2015,5,2,\"B6\",\"675\",\"JFK\",\"MSY\",-6.00,-28.00,0.00,\"\",0.00,175.00,151.00,1182.00,,,,,,\n2015,5,3,\"B6\",\"675\",\"JFK\",\"MSY\",-2.00,-21.00,0.00,\"\",0.00,178.00,156.00,1182.00,,,,,,\n2015,5,4,\"B6\",\"675\",\"JFK\",\"MSY\",-11.00,-29.00,0.00,\"\",0.00,179.00,154.00,1182.00,,,,,,\n2015,5,5,\"B6\",\"675\",\"JFK\",\"MSY\",-8.00,-29.00,0.00,\"\",0.00,176.00,153.00,1182.00,,,,,,\n2015,5,6,\"B6\",\"675\",\"JFK\",\"MSY\",-4.00,-30.00,0.00,\"\",0.00,171.00,152.00,1182.00,,,,,,\n2015,5,7,\"B6\",\"675\",\"JFK\",\"MSY\",-6.00,-24.00,0.00,\"\",0.00,179.00,150.00,1182.00,,,,,,\n2015,5,8,\"B6\",\"675\",\"JFK\",\"MSY\",160.00,141.00,0.00,\"\",0.00,178.00,152.00,1182.00,0.00,0.00,0.00,0.00,141.00,\n2015,5,9,\"B6\",\"675\",\"JFK\",\"MSY\",-4.00,-34.00,0.00,\"\",0.00,167.00,146.00,1182.00,,,,,,\n2015,5,10,\"B6\",\"675\",\"JFK\",\"MSY\",-6.00,-32.00,0.00,\"\",0.00,171.00,151.00,1182.00,,,,,,\n2015,5,11,\"B6\",\"675\",\"JFK\",\"MSY\",-4.00,-20.00,0.00,\"\",0.00,181.00,154.00,1182.00,,,,,,\n2015,5,12,\"B6\",\"675\",\"JFK\",\"MSY\",25.00,19.00,0.00,\"\",0.00,191.00,156.00,1182.00,0.00,0.00,0.00,3.00,16.00,\n2015,5,13,\"B6\",\"675\",\"JFK\",\"MSY\",-3.00,-13.00,0.00,\"\",0.00,187.00,163.00,1182.00,,,,,,\n2015,5,14,\"B6\",\"675\",\"JFK\",\"MSY\",8.00,1.00,0.00,\"\",0.00,190.00,156.00,1182.00,,,,,,\n2015,5,15,\"B6\",\"675\",\"JFK\",\"MSY\",-1.00,-10.00,0.00,\"\",0.00,188.00,154.00,1182.00,,,,,,\n2015,5,16,\"B6\",\"675\",\"JFK\",\"MSY\",-2.00,-2.00,0.00,\"\",0.00,197.00,162.00,1182.00,,,,,,\n2015,5,17,\"B6\",\"675\",\"JFK\",\"MSY\",-10.00,-24.00,0.00,\"\",0.00,183.00,158.00,1182.00,,,,,,\n2015,5,18,\"B6\",\"675\",\"JFK\",\"MSY\",-4.00,-21.00,0.00,\"\",0.00,180.00,151.00,1182.00,,,,,,\n2015,5,19,\"B6\",\"675\",\"JFK\",\"MSY\",75.00,72.00,0.00,\"\",0.00,194.00,148.00,1182.00,0.00,0.00,0.00,0.00,72.00,\n2015,5,20,\"B6\",\"675\",\"JFK\",\"MSY\",-11.00,-10.00,0.00,\"\",0.00,198.00,160.00,1182.00,,,,,,\n2015,5,21,\"B6\",\"675\",\"JFK\",\"MSY\",-5.00,-10.00,0.00,\"\",0.00,192.00,159.00,1182.00,,,,,,\n2015,5,22,\"B6\",\"675\",\"JFK\",\"MSY\",-6.00,-6.00,0.00,\"\",0.00,197.00,173.00,1182.00,,,,,,\n2015,5,23,\"B6\",\"675\",\"JFK\",\"MSY\",-10.00,-27.00,0.00,\"\",0.00,180.00,159.00,1182.00,,,,,,\n2015,5,24,\"B6\",\"675\",\"JFK\",\"MSY\",-2.00,-27.00,0.00,\"\",0.00,172.00,157.00,1182.00,,,,,,\n2015,5,25,\"B6\",\"675\",\"JFK\",\"MSY\",-3.00,-14.00,0.00,\"\",0.00,186.00,164.00,1182.00,,,,,,\n2015,5,26,\"B6\",\"675\",\"JFK\",\"MSY\",-7.00,-3.00,0.00,\"\",0.00,201.00,178.00,1182.00,,,,,,\n2015,5,27,\"B6\",\"675\",\"JFK\",\"MSY\",-6.00,-23.00,0.00,\"\",0.00,180.00,160.00,1182.00,,,,,,\n2015,5,28,\"B6\",\"675\",\"JFK\",\"MSY\",32.00,13.00,0.00,\"\",0.00,178.00,154.00,1182.00,,,,,,\n2015,5,29,\"B6\",\"675\",\"JFK\",\"MSY\",-4.00,-21.00,0.00,\"\",0.00,180.00,151.00,1182.00,,,,,,\n2015,5,30,\"B6\",\"675\",\"JFK\",\"MSY\",-1.00,-25.00,0.00,\"\",0.00,173.00,154.00,1182.00,,,,,,\n2015,5,31,\"B6\",\"675\",\"JFK\",\"MSY\",-1.00,-24.00,0.00,\"\",0.00,174.00,153.00,1182.00,,,,,,\n2015,5,1,\"B6\",\"677\",\"JFK\",\"JAX\",-3.00,4.00,0.00,\"\",0.00,160.00,118.00,828.00,,,,,,\n2015,5,2,\"B6\",\"677\",\"JFK\",\"JAX\",-4.00,-5.00,0.00,\"\",0.00,152.00,110.00,828.00,,,,,,\n2015,5,3,\"B6\",\"677\",\"JFK\",\"JAX\",-7.00,-2.00,0.00,\"\",0.00,158.00,112.00,828.00,,,,,,\n2015,5,4,\"B6\",\"677\",\"JFK\",\"JAX\",-1.00,-2.00,0.00,\"\",0.00,152.00,114.00,828.00,,,,,,\n2015,5,5,\"B6\",\"677\",\"JFK\",\"JAX\",-6.00,-14.00,0.00,\"\",0.00,145.00,112.00,828.00,,,,,,\n2015,5,6,\"B6\",\"677\",\"JFK\",\"JAX\",-2.00,-1.00,0.00,\"\",0.00,154.00,119.00,828.00,,,,,,\n2015,5,7,\"B6\",\"677\",\"JFK\",\"JAX\",-5.00,-12.00,0.00,\"\",0.00,146.00,107.00,828.00,,,,,,\n2015,5,8,\"B6\",\"677\",\"JFK\",\"JAX\",10.00,-1.00,0.00,\"\",0.00,142.00,105.00,828.00,,,,,,\n2015,5,9,\"B6\",\"677\",\"JFK\",\"JAX\",-4.00,-12.00,0.00,\"\",0.00,145.00,110.00,828.00,,,,,,\n2015,5,10,\"B6\",\"677\",\"JFK\",\"JAX\",-5.00,-22.00,0.00,\"\",0.00,136.00,114.00,828.00,,,,,,\n2015,5,11,\"B6\",\"677\",\"JFK\",\"JAX\",1.00,14.00,0.00,\"\",0.00,166.00,117.00,828.00,,,,,,\n2015,5,12,\"B6\",\"677\",\"JFK\",\"JAX\",-5.00,-4.00,0.00,\"\",0.00,154.00,113.00,828.00,,,,,,\n2015,5,13,\"B6\",\"677\",\"JFK\",\"JAX\",-8.00,15.00,0.00,\"\",0.00,176.00,125.00,828.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,14,\"B6\",\"677\",\"JFK\",\"JAX\",0.00,-2.00,0.00,\"\",0.00,151.00,114.00,828.00,,,,,,\n2015,5,15,\"B6\",\"677\",\"JFK\",\"JAX\",-1.00,5.00,0.00,\"\",0.00,159.00,121.00,828.00,,,,,,\n2015,5,16,\"B6\",\"677\",\"JFK\",\"JAX\",-3.00,-16.00,0.00,\"\",0.00,140.00,108.00,828.00,,,,,,\n2015,5,17,\"B6\",\"677\",\"JFK\",\"JAX\",48.00,48.00,0.00,\"\",0.00,153.00,114.00,828.00,48.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"677\",\"JFK\",\"JAX\",-4.00,6.00,0.00,\"\",0.00,163.00,108.00,828.00,,,,,,\n2015,5,19,\"B6\",\"677\",\"JFK\",\"JAX\",-1.00,8.00,0.00,\"\",0.00,162.00,114.00,828.00,,,,,,\n2015,5,20,\"B6\",\"677\",\"JFK\",\"JAX\",-4.00,0.00,0.00,\"\",0.00,157.00,112.00,828.00,,,,,,\n2015,5,21,\"B6\",\"677\",\"JFK\",\"JAX\",-6.00,-8.00,0.00,\"\",0.00,151.00,120.00,828.00,,,,,,\n2015,5,22,\"B6\",\"677\",\"JFK\",\"JAX\",30.00,32.00,0.00,\"\",0.00,155.00,121.00,828.00,30.00,0.00,2.00,0.00,0.00,\n2015,5,23,\"B6\",\"677\",\"JFK\",\"JAX\",-2.00,-3.00,0.00,\"\",0.00,152.00,118.00,828.00,,,,,,\n2015,5,24,\"B6\",\"677\",\"JFK\",\"JAX\",-8.00,-19.00,0.00,\"\",0.00,142.00,115.00,828.00,,,,,,\n2015,5,25,\"B6\",\"677\",\"JFK\",\"JAX\",-7.00,-16.00,0.00,\"\",0.00,144.00,115.00,828.00,,,,,,\n2015,5,26,\"B6\",\"677\",\"JFK\",\"JAX\",-3.00,-4.00,0.00,\"\",0.00,152.00,112.00,828.00,,,,,,\n2015,5,27,\"B6\",\"677\",\"JFK\",\"JAX\",-6.00,-13.00,0.00,\"\",0.00,146.00,115.00,828.00,,,,,,\n2015,5,28,\"B6\",\"677\",\"JFK\",\"JAX\",-4.00,-8.00,0.00,\"\",0.00,149.00,113.00,828.00,,,,,,\n2015,5,29,\"B6\",\"677\",\"JFK\",\"JAX\",-8.00,-4.00,0.00,\"\",0.00,157.00,108.00,828.00,,,,,,\n2015,5,30,\"B6\",\"677\",\"JFK\",\"JAX\",-2.00,-3.00,0.00,\"\",0.00,152.00,116.00,828.00,,,,,,\n2015,5,31,\"B6\",\"677\",\"JFK\",\"JAX\",-3.00,-4.00,0.00,\"\",0.00,152.00,108.00,828.00,,,,,,\n2015,5,1,\"B6\",\"678\",\"JAX\",\"JFK\",15.00,-3.00,0.00,\"\",0.00,124.00,103.00,828.00,,,,,,\n2015,5,2,\"B6\",\"678\",\"JAX\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,132.00,110.00,828.00,,,,,,\n2015,5,3,\"B6\",\"678\",\"JAX\",\"JFK\",32.00,30.00,0.00,\"\",0.00,140.00,116.00,828.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"678\",\"JAX\",\"JFK\",6.00,-8.00,0.00,\"\",0.00,128.00,108.00,828.00,,,,,,\n2015,5,5,\"B6\",\"678\",\"JAX\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,132.00,109.00,828.00,,,,,,\n2015,5,6,\"B6\",\"678\",\"JAX\",\"JFK\",2.00,-1.00,0.00,\"\",0.00,139.00,105.00,828.00,,,,,,\n2015,5,7,\"B6\",\"678\",\"JAX\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,126.00,115.00,828.00,,,,,,\n2015,5,8,\"B6\",\"678\",\"JAX\",\"JFK\",8.00,22.00,0.00,\"\",0.00,156.00,129.00,828.00,8.00,0.00,14.00,0.00,0.00,\n2015,5,9,\"B6\",\"678\",\"JAX\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,145.00,115.00,828.00,,,,,,\n2015,5,10,\"B6\",\"678\",\"JAX\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,131.00,108.00,828.00,,,,,,\n2015,5,11,\"B6\",\"678\",\"JAX\",\"JFK\",18.00,10.00,0.00,\"\",0.00,134.00,119.00,828.00,,,,,,\n2015,5,12,\"B6\",\"678\",\"JAX\",\"JFK\",70.00,60.00,0.00,\"\",0.00,132.00,105.00,828.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,13,\"B6\",\"678\",\"JAX\",\"JFK\",28.00,5.00,0.00,\"\",0.00,119.00,104.00,828.00,,,,,,\n2015,5,14,\"B6\",\"678\",\"JAX\",\"JFK\",2.00,-6.00,0.00,\"\",0.00,134.00,114.00,828.00,,,,,,\n2015,5,15,\"B6\",\"678\",\"JAX\",\"JFK\",8.00,-6.00,0.00,\"\",0.00,128.00,107.00,828.00,,,,,,\n2015,5,16,\"B6\",\"678\",\"JAX\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,133.00,114.00,828.00,,,,,,\n2015,5,17,\"B6\",\"678\",\"JAX\",\"JFK\",52.00,40.00,0.00,\"\",0.00,130.00,113.00,828.00,5.00,0.00,0.00,0.00,35.00,\n2015,5,18,\"B6\",\"678\",\"JAX\",\"JFK\",180.00,176.00,0.00,\"\",0.00,138.00,110.00,828.00,0.00,0.00,173.00,0.00,3.00,\n2015,5,19,\"B6\",\"678\",\"JAX\",\"JFK\",19.00,15.00,0.00,\"\",0.00,138.00,110.00,828.00,11.00,0.00,0.00,0.00,4.00,\n2015,5,20,\"B6\",\"678\",\"JAX\",\"JFK\",3.00,-11.00,0.00,\"\",0.00,128.00,111.00,828.00,,,,,,\n2015,5,21,\"B6\",\"678\",\"JAX\",\"JFK\",0.00,-23.00,0.00,\"\",0.00,119.00,103.00,828.00,,,,,,\n2015,5,22,\"B6\",\"678\",\"JAX\",\"JFK\",28.00,11.00,0.00,\"\",0.00,125.00,102.00,828.00,,,,,,\n2015,5,23,\"B6\",\"678\",\"JAX\",\"JFK\",2.00,-5.00,0.00,\"\",0.00,135.00,108.00,828.00,,,,,,\n2015,5,24,\"B6\",\"678\",\"JAX\",\"JFK\",-7.00,-10.00,0.00,\"\",0.00,139.00,113.00,828.00,,,,,,\n2015,5,25,\"B6\",\"678\",\"JAX\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,133.00,107.00,828.00,,,,,,\n2015,5,26,\"B6\",\"678\",\"JAX\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,125.00,110.00,828.00,,,,,,\n2015,5,27,\"B6\",\"678\",\"JAX\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,130.00,108.00,828.00,,,,,,\n2015,5,28,\"B6\",\"678\",\"JAX\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,128.00,105.00,828.00,,,,,,\n2015,5,29,\"B6\",\"678\",\"JAX\",\"JFK\",-1.00,,1.00,\"A\",0.00,,,828.00,,,,,,\n2015,5,30,\"B6\",\"678\",\"JAX\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,131.00,114.00,828.00,,,,,,\n2015,5,31,\"B6\",\"678\",\"JAX\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,129.00,112.00,828.00,,,,,,\n2015,5,1,\"B6\",\"683\",\"JFK\",\"MCO\",17.00,10.00,0.00,\"\",0.00,160.00,135.00,944.00,,,,,,\n2015,5,2,\"B6\",\"683\",\"JFK\",\"MCO\",-3.00,-3.00,0.00,\"\",0.00,167.00,130.00,944.00,,,,,,\n2015,5,3,\"B6\",\"683\",\"JFK\",\"MCO\",-2.00,-8.00,0.00,\"\",0.00,161.00,129.00,944.00,,,,,,\n2015,5,4,\"B6\",\"683\",\"JFK\",\"MCO\",-8.00,-8.00,0.00,\"\",0.00,167.00,133.00,944.00,,,,,,\n2015,5,5,\"B6\",\"683\",\"JFK\",\"MCO\",-8.00,-18.00,0.00,\"\",0.00,157.00,133.00,944.00,,,,,,\n2015,5,6,\"B6\",\"683\",\"JFK\",\"MCO\",-6.00,-8.00,0.00,\"\",0.00,165.00,142.00,944.00,,,,,,\n2015,5,7,\"B6\",\"683\",\"JFK\",\"MCO\",-9.00,-6.00,0.00,\"\",0.00,170.00,132.00,944.00,,,,,,\n2015,5,8,\"B6\",\"683\",\"JFK\",\"MCO\",-7.00,-12.00,0.00,\"\",0.00,162.00,123.00,944.00,,,,,,\n2015,5,9,\"B6\",\"683\",\"JFK\",\"MCO\",-2.00,-20.00,0.00,\"\",0.00,149.00,120.00,944.00,,,,,,\n2015,5,10,\"B6\",\"683\",\"JFK\",\"MCO\",-3.00,-25.00,0.00,\"\",0.00,145.00,124.00,944.00,,,,,,\n2015,5,11,\"B6\",\"683\",\"JFK\",\"MCO\",-3.00,-13.00,0.00,\"\",0.00,157.00,127.00,944.00,,,,,,\n2015,5,12,\"B6\",\"683\",\"JFK\",\"MCO\",3.00,4.00,0.00,\"\",0.00,168.00,128.00,944.00,,,,,,\n2015,5,13,\"B6\",\"683\",\"JFK\",\"MCO\",-3.00,-13.00,0.00,\"\",0.00,157.00,139.00,944.00,,,,,,\n2015,5,14,\"B6\",\"683\",\"JFK\",\"MCO\",-2.00,-24.00,0.00,\"\",0.00,145.00,124.00,944.00,,,,,,\n2015,5,15,\"B6\",\"683\",\"JFK\",\"MCO\",-3.00,7.00,0.00,\"\",0.00,177.00,140.00,944.00,,,,,,\n2015,5,16,\"B6\",\"683\",\"JFK\",\"MCO\",-5.00,-13.00,0.00,\"\",0.00,159.00,125.00,944.00,,,,,,\n2015,5,17,\"B6\",\"683\",\"JFK\",\"MCO\",-2.00,-3.00,0.00,\"\",0.00,166.00,124.00,944.00,,,,,,\n2015,5,18,\"B6\",\"683\",\"JFK\",\"MCO\",-6.00,-35.00,0.00,\"\",0.00,138.00,124.00,944.00,,,,,,\n2015,5,19,\"B6\",\"683\",\"JFK\",\"MCO\",-3.00,-4.00,0.00,\"\",0.00,166.00,126.00,944.00,,,,,,\n2015,5,20,\"B6\",\"683\",\"JFK\",\"MCO\",-2.00,-19.00,0.00,\"\",0.00,150.00,124.00,944.00,,,,,,\n2015,5,21,\"B6\",\"683\",\"JFK\",\"MCO\",-5.00,-15.00,0.00,\"\",0.00,157.00,137.00,944.00,,,,,,\n2015,5,22,\"B6\",\"683\",\"JFK\",\"MCO\",-10.00,-18.00,0.00,\"\",0.00,159.00,137.00,944.00,,,,,,\n2015,5,23,\"B6\",\"683\",\"JFK\",\"MCO\",0.00,-13.00,0.00,\"\",0.00,154.00,130.00,944.00,,,,,,\n2015,5,24,\"B6\",\"683\",\"JFK\",\"MCO\",37.00,20.00,0.00,\"\",0.00,150.00,122.00,944.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"B6\",\"683\",\"JFK\",\"MCO\",-5.00,-22.00,0.00,\"\",0.00,150.00,126.00,944.00,,,,,,\n2015,5,26,\"B6\",\"683\",\"JFK\",\"MCO\",-7.00,-23.00,0.00,\"\",0.00,151.00,128.00,944.00,,,,,,\n2015,5,27,\"B6\",\"683\",\"JFK\",\"MCO\",-7.00,-21.00,0.00,\"\",0.00,153.00,128.00,944.00,,,,,,\n2015,5,28,\"B6\",\"683\",\"JFK\",\"MCO\",-5.00,0.00,0.00,\"\",0.00,172.00,133.00,944.00,,,,,,\n2015,5,29,\"B6\",\"683\",\"JFK\",\"MCO\",-4.00,-11.00,0.00,\"\",0.00,160.00,126.00,944.00,,,,,,\n2015,5,30,\"B6\",\"683\",\"JFK\",\"MCO\",-4.00,-8.00,0.00,\"\",0.00,163.00,123.00,944.00,,,,,,\n2015,5,31,\"B6\",\"683\",\"JFK\",\"MCO\",4.00,-12.00,0.00,\"\",0.00,151.00,123.00,944.00,,,,,,\n2015,5,1,\"B6\",\"684\",\"MCO\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,146.00,118.00,944.00,,,,,,\n2015,5,2,\"B6\",\"684\",\"MCO\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,140.00,124.00,944.00,,,,,,\n2015,5,3,\"B6\",\"684\",\"MCO\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,143.00,125.00,944.00,,,,,,\n2015,5,4,\"B6\",\"684\",\"MCO\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,144.00,128.00,944.00,,,,,,\n2015,5,5,\"B6\",\"684\",\"MCO\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,141.00,125.00,944.00,,,,,,\n2015,5,6,\"B6\",\"684\",\"MCO\",\"JFK\",2.00,-20.00,0.00,\"\",0.00,137.00,117.00,944.00,,,,,,\n2015,5,7,\"B6\",\"684\",\"MCO\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,142.00,126.00,944.00,,,,,,\n2015,5,8,\"B6\",\"684\",\"MCO\",\"JFK\",10.00,18.00,0.00,\"\",0.00,167.00,127.00,944.00,10.00,0.00,8.00,0.00,0.00,\n2015,5,9,\"B6\",\"684\",\"MCO\",\"JFK\",-3.00,-1.00,0.00,\"\",0.00,161.00,145.00,944.00,,,,,,\n2015,5,10,\"B6\",\"684\",\"MCO\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,142.00,126.00,944.00,,,,,,\n2015,5,11,\"B6\",\"684\",\"MCO\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,149.00,124.00,944.00,,,,,,\n2015,5,12,\"B6\",\"684\",\"MCO\",\"JFK\",41.00,51.00,0.00,\"\",0.00,169.00,133.00,944.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,13,\"B6\",\"684\",\"MCO\",\"JFK\",5.00,-16.00,0.00,\"\",0.00,138.00,121.00,944.00,,,,,,\n2015,5,14,\"B6\",\"684\",\"MCO\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,146.00,126.00,944.00,,,,,,\n2015,5,15,\"B6\",\"684\",\"MCO\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,140.00,125.00,944.00,,,,,,\n2015,5,16,\"B6\",\"684\",\"MCO\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,140.00,125.00,944.00,,,,,,\n2015,5,17,\"B6\",\"684\",\"MCO\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,143.00,126.00,944.00,,,,,,\n2015,5,18,\"B6\",\"684\",\"MCO\",\"JFK\",-1.00,0.00,0.00,\"\",0.00,160.00,144.00,944.00,,,,,,\n2015,5,19,\"B6\",\"684\",\"MCO\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,141.00,122.00,944.00,,,,,,\n2015,5,20,\"B6\",\"684\",\"MCO\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,144.00,128.00,944.00,,,,,,\n2015,5,21,\"B6\",\"684\",\"MCO\",\"JFK\",-7.00,-32.00,0.00,\"\",0.00,134.00,120.00,944.00,,,,,,\n2015,5,22,\"B6\",\"684\",\"MCO\",\"JFK\",8.00,-22.00,0.00,\"\",0.00,129.00,113.00,944.00,,,,,,\n2015,5,23,\"B6\",\"684\",\"MCO\",\"JFK\",-5.00,-28.00,0.00,\"\",0.00,136.00,120.00,944.00,,,,,,\n2015,5,24,\"B6\",\"684\",\"MCO\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,142.00,127.00,944.00,,,,,,\n2015,5,25,\"B6\",\"684\",\"MCO\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,144.00,126.00,944.00,,,,,,\n2015,5,26,\"B6\",\"684\",\"MCO\",\"JFK\",3.00,-25.00,0.00,\"\",0.00,131.00,118.00,944.00,,,,,,\n2015,5,27,\"B6\",\"684\",\"MCO\",\"JFK\",12.00,-13.00,0.00,\"\",0.00,134.00,121.00,944.00,,,,,,\n2015,5,28,\"B6\",\"684\",\"MCO\",\"JFK\",2.00,-16.00,0.00,\"\",0.00,141.00,121.00,944.00,,,,,,\n2015,5,29,\"B6\",\"684\",\"MCO\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,149.00,129.00,944.00,,,,,,\n2015,5,30,\"B6\",\"684\",\"MCO\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,140.00,125.00,944.00,,,,,,\n2015,5,31,\"B6\",\"684\",\"MCO\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,143.00,128.00,944.00,,,,,,\n2015,5,1,\"B6\",\"686\",\"JFK\",\"ROC\",-8.00,-42.00,0.00,\"\",0.00,68.00,44.00,264.00,,,,,,\n2015,5,3,\"B6\",\"686\",\"JFK\",\"ROC\",13.00,-11.00,0.00,\"\",0.00,78.00,51.00,264.00,,,,,,\n2015,5,4,\"B6\",\"686\",\"JFK\",\"ROC\",-2.00,-27.00,0.00,\"\",0.00,77.00,48.00,264.00,,,,,,\n2015,5,5,\"B6\",\"686\",\"JFK\",\"ROC\",88.00,66.00,0.00,\"\",0.00,80.00,49.00,264.00,66.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"B6\",\"686\",\"JFK\",\"ROC\",-8.00,-34.00,0.00,\"\",0.00,76.00,50.00,264.00,,,,,,\n2015,5,7,\"B6\",\"686\",\"JFK\",\"ROC\",-6.00,-32.00,0.00,\"\",0.00,76.00,48.00,264.00,,,,,,\n2015,5,8,\"B6\",\"686\",\"JFK\",\"ROC\",-3.00,-22.00,0.00,\"\",0.00,83.00,49.00,264.00,,,,,,\n2015,5,10,\"B6\",\"686\",\"JFK\",\"ROC\",-1.00,-8.00,0.00,\"\",0.00,95.00,53.00,264.00,,,,,,\n2015,5,11,\"B6\",\"686\",\"JFK\",\"ROC\",-5.00,-19.00,0.00,\"\",0.00,88.00,51.00,264.00,,,,,,\n2015,5,12,\"B6\",\"686\",\"JFK\",\"ROC\",-4.00,-20.00,0.00,\"\",0.00,86.00,57.00,264.00,,,,,,\n2015,5,13,\"B6\",\"686\",\"JFK\",\"ROC\",-1.00,-14.00,0.00,\"\",0.00,89.00,55.00,264.00,,,,,,\n2015,5,14,\"B6\",\"686\",\"JFK\",\"ROC\",-7.00,-34.00,0.00,\"\",0.00,75.00,49.00,264.00,,,,,,\n2015,5,15,\"B6\",\"686\",\"JFK\",\"ROC\",-1.00,-22.00,0.00,\"\",0.00,81.00,50.00,264.00,,,,,,\n2015,5,17,\"B6\",\"686\",\"JFK\",\"ROC\",-5.00,-35.00,0.00,\"\",0.00,72.00,47.00,264.00,,,,,,\n2015,5,18,\"B6\",\"686\",\"JFK\",\"ROC\",160.00,209.00,0.00,\"\",0.00,151.00,58.00,264.00,0.00,0.00,49.00,0.00,160.00,\n2015,5,19,\"B6\",\"686\",\"JFK\",\"ROC\",-1.00,-13.00,0.00,\"\",0.00,90.00,52.00,264.00,,,,,,\n2015,5,20,\"B6\",\"686\",\"JFK\",\"ROC\",-5.00,-31.00,0.00,\"\",0.00,76.00,53.00,264.00,,,,,,\n2015,5,21,\"B6\",\"686\",\"JFK\",\"ROC\",-3.00,-23.00,0.00,\"\",0.00,82.00,52.00,264.00,,,,,,\n2015,5,22,\"B6\",\"686\",\"JFK\",\"ROC\",32.00,2.00,0.00,\"\",0.00,72.00,54.00,264.00,,,,,,\n2015,5,24,\"B6\",\"686\",\"JFK\",\"ROC\",0.00,-20.00,0.00,\"\",0.00,82.00,52.00,264.00,,,,,,\n2015,5,25,\"B6\",\"686\",\"JFK\",\"ROC\",-1.00,-17.00,0.00,\"\",0.00,86.00,50.00,264.00,,,,,,\n2015,5,26,\"B6\",\"686\",\"JFK\",\"ROC\",-10.00,-27.00,0.00,\"\",0.00,85.00,53.00,264.00,,,,,,\n2015,5,27,\"B6\",\"686\",\"JFK\",\"ROC\",,,1.00,\"C\",0.00,,,264.00,,,,,,\n2015,5,28,\"B6\",\"686\",\"JFK\",\"ROC\",-3.00,-26.00,0.00,\"\",0.00,79.00,50.00,264.00,,,,,,\n2015,5,29,\"B6\",\"686\",\"JFK\",\"ROC\",-8.00,-25.00,0.00,\"\",0.00,85.00,48.00,264.00,,,,,,\n2015,5,31,\"B6\",\"686\",\"JFK\",\"ROC\",,,1.00,\"C\",0.00,,,264.00,,,,,,\n2015,5,1,\"B6\",\"695\",\"HPN\",\"MCO\",,,1.00,\"A\",0.00,,,972.00,,,,,,\n2015,5,2,\"B6\",\"695\",\"HPN\",\"MCO\",-21.00,-24.00,0.00,\"\",0.00,150.00,132.00,972.00,,,,,,\n2015,5,3,\"B6\",\"695\",\"HPN\",\"MCO\",-10.00,-13.00,0.00,\"\",0.00,150.00,128.00,972.00,,,,,,\n2015,5,4,\"B6\",\"695\",\"HPN\",\"MCO\",-8.00,-11.00,0.00,\"\",0.00,150.00,137.00,972.00,,,,,,\n2015,5,5,\"B6\",\"695\",\"HPN\",\"MCO\",22.00,27.00,0.00,\"\",0.00,158.00,136.00,972.00,22.00,0.00,5.00,0.00,0.00,\n2015,5,6,\"B6\",\"695\",\"HPN\",\"MCO\",-12.00,-9.00,0.00,\"\",0.00,156.00,135.00,972.00,,,,,,\n2015,5,7,\"B6\",\"695\",\"HPN\",\"MCO\",0.00,2.00,0.00,\"\",0.00,155.00,130.00,972.00,,,,,,\n2015,5,8,\"B6\",\"695\",\"HPN\",\"MCO\",118.00,100.00,0.00,\"\",0.00,135.00,120.00,972.00,0.00,0.00,0.00,0.00,100.00,\n2015,5,9,\"B6\",\"695\",\"HPN\",\"MCO\",7.00,-9.00,0.00,\"\",0.00,137.00,122.00,972.00,,,,,,\n2015,5,10,\"B6\",\"695\",\"HPN\",\"MCO\",68.00,57.00,0.00,\"\",0.00,142.00,130.00,972.00,57.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"B6\",\"695\",\"HPN\",\"MCO\",34.00,27.00,0.00,\"\",0.00,146.00,127.00,972.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,12,\"B6\",\"695\",\"HPN\",\"MCO\",-6.00,-16.00,0.00,\"\",0.00,143.00,134.00,972.00,,,,,,\n2015,5,13,\"B6\",\"695\",\"HPN\",\"MCO\",-9.00,-22.00,0.00,\"\",0.00,140.00,124.00,972.00,,,,,,\n2015,5,14,\"B6\",\"695\",\"HPN\",\"MCO\",-18.00,-36.00,0.00,\"\",0.00,135.00,126.00,972.00,,,,,,\n2015,5,15,\"B6\",\"695\",\"HPN\",\"MCO\",3.00,-7.00,0.00,\"\",0.00,143.00,130.00,972.00,,,,,,\n2015,5,16,\"B6\",\"695\",\"HPN\",\"MCO\",-7.00,8.00,0.00,\"\",0.00,168.00,142.00,972.00,,,,,,\n2015,5,17,\"B6\",\"695\",\"HPN\",\"MCO\",-12.00,-23.00,0.00,\"\",0.00,142.00,122.00,972.00,,,,,,\n2015,5,18,\"B6\",\"695\",\"HPN\",\"MCO\",18.00,6.00,0.00,\"\",0.00,141.00,125.00,972.00,,,,,,\n2015,5,19,\"B6\",\"695\",\"HPN\",\"MCO\",17.00,16.00,0.00,\"\",0.00,152.00,127.00,972.00,1.00,0.00,0.00,0.00,15.00,\n2015,5,20,\"B6\",\"695\",\"HPN\",\"MCO\",52.00,43.00,0.00,\"\",0.00,144.00,129.00,972.00,5.00,0.00,0.00,0.00,38.00,\n2015,5,21,\"B6\",\"695\",\"HPN\",\"MCO\",2.00,12.00,0.00,\"\",0.00,163.00,144.00,972.00,,,,,,\n2015,5,22,\"B6\",\"695\",\"HPN\",\"MCO\",-5.00,-7.00,0.00,\"\",0.00,151.00,130.00,972.00,,,,,,\n2015,5,23,\"B6\",\"695\",\"HPN\",\"MCO\",-14.00,-28.00,0.00,\"\",0.00,139.00,125.00,972.00,,,,,,\n2015,5,24,\"B6\",\"695\",\"HPN\",\"MCO\",-7.00,-14.00,0.00,\"\",0.00,146.00,127.00,972.00,,,,,,\n2015,5,25,\"B6\",\"695\",\"HPN\",\"MCO\",-8.00,-14.00,0.00,\"\",0.00,147.00,129.00,972.00,,,,,,\n2015,5,26,\"B6\",\"695\",\"HPN\",\"MCO\",-14.00,-20.00,0.00,\"\",0.00,147.00,131.00,972.00,,,,,,\n2015,5,27,\"B6\",\"695\",\"HPN\",\"MCO\",-11.00,-20.00,0.00,\"\",0.00,144.00,130.00,972.00,,,,,,\n2015,5,28,\"B6\",\"695\",\"HPN\",\"MCO\",-7.00,-11.00,0.00,\"\",0.00,149.00,130.00,972.00,,,,,,\n2015,5,29,\"B6\",\"695\",\"HPN\",\"MCO\",-8.00,-22.00,0.00,\"\",0.00,139.00,124.00,972.00,,,,,,\n2015,5,30,\"B6\",\"695\",\"HPN\",\"MCO\",-17.00,-32.00,0.00,\"\",0.00,138.00,124.00,972.00,,,,,,\n2015,5,31,\"B6\",\"695\",\"HPN\",\"MCO\",7.00,-6.00,0.00,\"\",0.00,140.00,126.00,972.00,,,,,,\n2015,5,1,\"B6\",\"698\",\"MCO\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,149.00,126.00,950.00,,,,,,\n2015,5,2,\"B6\",\"698\",\"MCO\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,145.00,126.00,950.00,,,,,,\n2015,5,3,\"B6\",\"698\",\"MCO\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,151.00,127.00,950.00,,,,,,\n2015,5,4,\"B6\",\"698\",\"MCO\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,143.00,124.00,950.00,,,,,,\n2015,5,5,\"B6\",\"698\",\"MCO\",\"LGA\",41.00,23.00,0.00,\"\",0.00,145.00,120.00,950.00,2.00,0.00,0.00,0.00,21.00,\n2015,5,6,\"B6\",\"698\",\"MCO\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,152.00,126.00,950.00,,,,,,\n2015,5,7,\"B6\",\"698\",\"MCO\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,156.00,131.00,950.00,,,,,,\n2015,5,8,\"B6\",\"698\",\"MCO\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,146.00,127.00,950.00,,,,,,\n2015,5,9,\"B6\",\"698\",\"MCO\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,155.00,133.00,950.00,,,,,,\n2015,5,10,\"B6\",\"698\",\"MCO\",\"LGA\",7.00,2.00,0.00,\"\",0.00,158.00,133.00,950.00,,,,,,\n2015,5,11,\"B6\",\"698\",\"MCO\",\"LGA\",164.00,190.00,0.00,\"\",0.00,189.00,173.00,950.00,0.00,0.00,187.00,0.00,3.00,\n2015,5,12,\"B6\",\"698\",\"MCO\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,151.00,129.00,950.00,,,,,,\n2015,5,13,\"B6\",\"698\",\"MCO\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,153.00,137.00,950.00,,,,,,\n2015,5,14,\"B6\",\"698\",\"MCO\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,149.00,127.00,950.00,,,,,,\n2015,5,15,\"B6\",\"698\",\"MCO\",\"LGA\",7.00,-10.00,0.00,\"\",0.00,146.00,129.00,950.00,,,,,,\n2015,5,16,\"B6\",\"698\",\"MCO\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,150.00,127.00,950.00,,,,,,\n2015,5,17,\"B6\",\"698\",\"MCO\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,158.00,128.00,950.00,,,,,,\n2015,5,18,\"B6\",\"698\",\"MCO\",\"LGA\",39.00,32.00,0.00,\"\",0.00,156.00,134.00,950.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,19,\"B6\",\"698\",\"MCO\",\"LGA\",129.00,128.00,0.00,\"\",0.00,162.00,127.00,950.00,0.00,0.00,12.00,0.00,116.00,\n2015,5,20,\"B6\",\"698\",\"MCO\",\"LGA\",50.00,46.00,0.00,\"\",0.00,159.00,122.00,950.00,3.00,0.00,0.00,0.00,43.00,\n2015,5,21,\"B6\",\"698\",\"MCO\",\"LGA\",59.00,55.00,0.00,\"\",0.00,159.00,126.00,950.00,13.00,0.00,0.00,0.00,42.00,\n2015,5,22,\"B6\",\"698\",\"MCO\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,149.00,123.00,950.00,,,,,,\n2015,5,23,\"B6\",\"698\",\"MCO\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,150.00,130.00,950.00,,,,,,\n2015,5,24,\"B6\",\"698\",\"MCO\",\"LGA\",-8.00,-27.00,0.00,\"\",0.00,144.00,128.00,950.00,,,,,,\n2015,5,25,\"B6\",\"698\",\"MCO\",\"LGA\",67.00,51.00,0.00,\"\",0.00,147.00,126.00,950.00,5.00,0.00,0.00,0.00,46.00,\n2015,5,26,\"B6\",\"698\",\"MCO\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,153.00,132.00,950.00,,,,,,\n2015,5,27,\"B6\",\"698\",\"MCO\",\"LGA\",170.00,157.00,0.00,\"\",0.00,150.00,127.00,950.00,0.00,0.00,157.00,0.00,0.00,\n2015,5,28,\"B6\",\"698\",\"MCO\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,155.00,122.00,950.00,,,,,,\n2015,5,29,\"B6\",\"698\",\"MCO\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,151.00,130.00,950.00,,,,,,\n2015,5,30,\"B6\",\"698\",\"MCO\",\"LGA\",-8.00,-18.00,0.00,\"\",0.00,153.00,132.00,950.00,,,,,,\n2015,5,31,\"B6\",\"698\",\"MCO\",\"LGA\",205.00,204.00,0.00,\"\",0.00,162.00,145.00,950.00,0.00,0.00,194.00,0.00,10.00,\n2015,5,7,\"B6\",\"485\",\"ROC\",\"JFK\",-10.00,-25.00,0.00,\"\",0.00,76.00,59.00,264.00,,,,,,\n2015,5,8,\"B6\",\"485\",\"ROC\",\"JFK\",29.00,7.00,0.00,\"\",0.00,69.00,53.00,264.00,,,,,,\n2015,5,9,\"B6\",\"485\",\"ROC\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,76.00,57.00,264.00,,,,,,\n2015,5,10,\"B6\",\"485\",\"ROC\",\"JFK\",-4.00,-27.00,0.00,\"\",0.00,68.00,53.00,264.00,,,,,,\n2015,5,11,\"B6\",\"485\",\"ROC\",\"JFK\",-4.00,14.00,0.00,\"\",0.00,109.00,93.00,264.00,,,,,,\n2015,5,12,\"B6\",\"485\",\"ROC\",\"JFK\",,,1.00,\"C\",0.00,,,264.00,,,,,,\n2015,5,13,\"B6\",\"485\",\"ROC\",\"JFK\",18.00,-4.00,0.00,\"\",0.00,69.00,51.00,264.00,,,,,,\n2015,5,14,\"B6\",\"485\",\"ROC\",\"JFK\",22.00,3.00,0.00,\"\",0.00,72.00,55.00,264.00,,,,,,\n2015,5,15,\"B6\",\"485\",\"ROC\",\"JFK\",-5.00,-32.00,0.00,\"\",0.00,64.00,51.00,264.00,,,,,,\n2015,5,16,\"B6\",\"485\",\"ROC\",\"JFK\",31.00,11.00,0.00,\"\",0.00,71.00,53.00,264.00,,,,,,\n2015,5,17,\"B6\",\"485\",\"ROC\",\"JFK\",-8.00,-29.00,0.00,\"\",0.00,70.00,56.00,264.00,,,,,,\n2015,5,18,\"B6\",\"485\",\"ROC\",\"JFK\",248.00,221.00,0.00,\"\",0.00,64.00,51.00,264.00,0.00,0.00,173.00,0.00,48.00,\n2015,5,19,\"B6\",\"485\",\"ROC\",\"JFK\",9.00,-21.00,0.00,\"\",0.00,61.00,50.00,264.00,,,,,,\n2015,5,20,\"B6\",\"485\",\"ROC\",\"JFK\",-12.00,-24.00,0.00,\"\",0.00,79.00,63.00,264.00,,,,,,\n2015,5,21,\"B6\",\"485\",\"ROC\",\"JFK\",13.00,-10.00,0.00,\"\",0.00,69.00,53.00,264.00,,,,,,\n2015,5,22,\"B6\",\"485\",\"ROC\",\"JFK\",-11.00,-2.00,0.00,\"\",0.00,97.00,56.00,264.00,,,,,,\n2015,5,23,\"B6\",\"485\",\"ROC\",\"JFK\",1.00,-25.00,0.00,\"\",0.00,62.00,50.00,264.00,,,,,,\n2015,5,24,\"B6\",\"485\",\"ROC\",\"JFK\",-7.00,-29.00,0.00,\"\",0.00,66.00,51.00,264.00,,,,,,\n2015,5,25,\"B6\",\"485\",\"ROC\",\"JFK\",-16.00,-36.00,0.00,\"\",0.00,71.00,54.00,264.00,,,,,,\n2015,5,26,\"B6\",\"485\",\"ROC\",\"JFK\",46.00,16.00,0.00,\"\",0.00,61.00,48.00,264.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"B6\",\"485\",\"ROC\",\"JFK\",233.00,207.00,0.00,\"\",0.00,65.00,49.00,264.00,0.00,0.00,207.00,0.00,0.00,\n2015,5,28,\"B6\",\"485\",\"ROC\",\"JFK\",-10.00,-28.00,0.00,\"\",0.00,73.00,53.00,264.00,,,,,,\n2015,5,29,\"B6\",\"485\",\"ROC\",\"JFK\",-12.00,-38.00,0.00,\"\",0.00,65.00,50.00,264.00,,,,,,\n2015,5,30,\"B6\",\"485\",\"ROC\",\"JFK\",-10.00,-27.00,0.00,\"\",0.00,74.00,54.00,264.00,,,,,,\n2015,5,31,\"B6\",\"485\",\"ROC\",\"JFK\",,,1.00,\"C\",0.00,,,264.00,,,,,,\n2015,5,1,\"B6\",\"486\",\"JFK\",\"ROC\",-4.00,-9.00,0.00,\"\",0.00,76.00,50.00,264.00,,,,,,\n2015,5,2,\"B6\",\"486\",\"JFK\",\"ROC\",-9.00,-9.00,0.00,\"\",0.00,81.00,48.00,264.00,,,,,,\n2015,5,3,\"B6\",\"486\",\"JFK\",\"ROC\",-9.00,-7.00,0.00,\"\",0.00,83.00,50.00,264.00,,,,,,\n2015,5,4,\"B6\",\"486\",\"JFK\",\"ROC\",-11.00,2.00,0.00,\"\",0.00,94.00,46.00,264.00,,,,,,\n2015,5,5,\"B6\",\"486\",\"JFK\",\"ROC\",-7.00,-7.00,0.00,\"\",0.00,81.00,50.00,264.00,,,,,,\n2015,5,6,\"B6\",\"486\",\"JFK\",\"ROC\",9.00,3.00,0.00,\"\",0.00,75.00,48.00,264.00,,,,,,\n2015,5,7,\"B6\",\"486\",\"JFK\",\"ROC\",-6.00,-4.00,0.00,\"\",0.00,83.00,49.00,264.00,,,,,,\n2015,5,8,\"B6\",\"486\",\"JFK\",\"ROC\",108.00,94.00,0.00,\"\",0.00,67.00,44.00,264.00,5.00,0.00,0.00,0.00,89.00,\n2015,5,9,\"B6\",\"486\",\"JFK\",\"ROC\",-6.00,-17.00,0.00,\"\",0.00,70.00,46.00,264.00,,,,,,\n2015,5,10,\"B6\",\"486\",\"JFK\",\"ROC\",-2.00,3.00,0.00,\"\",0.00,86.00,46.00,264.00,,,,,,\n2015,5,11,\"B6\",\"486\",\"JFK\",\"ROC\",-4.00,36.00,0.00,\"\",0.00,121.00,94.00,264.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,12,\"B6\",\"486\",\"JFK\",\"ROC\",11.00,21.00,0.00,\"\",0.00,91.00,54.00,264.00,2.00,0.00,10.00,0.00,9.00,\n2015,5,13,\"B6\",\"486\",\"JFK\",\"ROC\",4.00,39.00,0.00,\"\",0.00,116.00,53.00,264.00,4.00,0.00,35.00,0.00,0.00,\n2015,5,14,\"B6\",\"486\",\"JFK\",\"ROC\",-12.00,-13.00,0.00,\"\",0.00,80.00,47.00,264.00,,,,,,\n2015,5,15,\"B6\",\"486\",\"JFK\",\"ROC\",-5.00,-6.00,0.00,\"\",0.00,80.00,51.00,264.00,,,,,,\n2015,5,16,\"B6\",\"486\",\"JFK\",\"ROC\",71.00,58.00,0.00,\"\",0.00,68.00,49.00,264.00,58.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"486\",\"JFK\",\"ROC\",6.00,-7.00,0.00,\"\",0.00,68.00,46.00,264.00,,,,,,\n2015,5,18,\"B6\",\"486\",\"JFK\",\"ROC\",162.00,154.00,0.00,\"\",0.00,73.00,48.00,264.00,0.00,0.00,0.00,0.00,154.00,\n2015,5,19,\"B6\",\"486\",\"JFK\",\"ROC\",-4.00,2.00,0.00,\"\",0.00,87.00,52.00,264.00,,,,,,\n2015,5,20,\"B6\",\"486\",\"JFK\",\"ROC\",-2.00,-8.00,0.00,\"\",0.00,75.00,51.00,264.00,,,,,,\n2015,5,21,\"B6\",\"486\",\"JFK\",\"ROC\",4.00,7.00,0.00,\"\",0.00,84.00,50.00,264.00,,,,,,\n2015,5,22,\"B6\",\"486\",\"JFK\",\"ROC\",74.00,61.00,0.00,\"\",0.00,68.00,50.00,264.00,15.00,0.00,0.00,0.00,46.00,\n2015,5,23,\"B6\",\"486\",\"JFK\",\"ROC\",-11.00,-16.00,0.00,\"\",0.00,76.00,50.00,264.00,,,,,,\n2015,5,24,\"B6\",\"486\",\"JFK\",\"ROC\",17.00,8.00,0.00,\"\",0.00,72.00,53.00,264.00,,,,,,\n2015,5,25,\"B6\",\"486\",\"JFK\",\"ROC\",-10.00,-13.00,0.00,\"\",0.00,78.00,48.00,264.00,,,,,,\n2015,5,26,\"B6\",\"486\",\"JFK\",\"ROC\",-7.00,-5.00,0.00,\"\",0.00,83.00,45.00,264.00,,,,,,\n2015,5,27,\"B6\",\"486\",\"JFK\",\"ROC\",54.00,53.00,0.00,\"\",0.00,80.00,48.00,264.00,8.00,0.00,0.00,0.00,45.00,\n2015,5,28,\"B6\",\"486\",\"JFK\",\"ROC\",-3.00,-7.00,0.00,\"\",0.00,77.00,45.00,264.00,,,,,,\n2015,5,29,\"B6\",\"486\",\"JFK\",\"ROC\",13.00,5.00,0.00,\"\",0.00,73.00,49.00,264.00,,,,,,\n2015,5,30,\"B6\",\"486\",\"JFK\",\"ROC\",-9.00,-9.00,0.00,\"\",0.00,81.00,54.00,264.00,,,,,,\n2015,5,31,\"B6\",\"486\",\"JFK\",\"ROC\",227.00,226.00,0.00,\"\",0.00,80.00,51.00,264.00,0.00,10.00,0.00,0.00,216.00,\n2015,5,1,\"B6\",\"495\",\"HPN\",\"MCO\",-2.00,-3.00,0.00,\"\",0.00,160.00,142.00,972.00,,,,,,\n2015,5,2,\"B6\",\"495\",\"HPN\",\"MCO\",30.00,20.00,0.00,\"\",0.00,151.00,128.00,972.00,7.00,0.00,0.00,0.00,13.00,\n2015,5,3,\"B6\",\"495\",\"HPN\",\"MCO\",9.00,-2.00,0.00,\"\",0.00,150.00,132.00,972.00,,,,,,\n2015,5,4,\"B6\",\"495\",\"HPN\",\"MCO\",14.00,4.00,0.00,\"\",0.00,151.00,133.00,972.00,,,,,,\n2015,5,5,\"B6\",\"495\",\"HPN\",\"MCO\",-14.00,-17.00,0.00,\"\",0.00,158.00,141.00,972.00,,,,,,\n2015,5,6,\"B6\",\"495\",\"HPN\",\"MCO\",-9.00,-9.00,0.00,\"\",0.00,161.00,139.00,972.00,,,,,,\n2015,5,7,\"B6\",\"495\",\"HPN\",\"MCO\",15.00,4.00,0.00,\"\",0.00,150.00,130.00,972.00,,,,,,\n2015,5,8,\"B6\",\"495\",\"HPN\",\"MCO\",0.00,-9.00,0.00,\"\",0.00,152.00,131.00,972.00,,,,,,\n2015,5,9,\"B6\",\"495\",\"HPN\",\"MCO\",22.00,5.00,0.00,\"\",0.00,144.00,125.00,972.00,,,,,,\n2015,5,10,\"B6\",\"495\",\"HPN\",\"MCO\",5.00,-4.00,0.00,\"\",0.00,152.00,130.00,972.00,,,,,,\n2015,5,11,\"B6\",\"495\",\"HPN\",\"MCO\",21.00,9.00,0.00,\"\",0.00,149.00,130.00,972.00,,,,,,\n2015,5,12,\"B6\",\"495\",\"HPN\",\"MCO\",-4.00,-20.00,0.00,\"\",0.00,145.00,127.00,972.00,,,,,,\n2015,5,13,\"B6\",\"495\",\"HPN\",\"MCO\",-4.00,-12.00,0.00,\"\",0.00,153.00,133.00,972.00,,,,,,\n2015,5,14,\"B6\",\"495\",\"HPN\",\"MCO\",2.00,6.00,0.00,\"\",0.00,165.00,131.00,972.00,,,,,,\n2015,5,15,\"B6\",\"495\",\"HPN\",\"MCO\",76.00,68.00,0.00,\"\",0.00,153.00,129.00,972.00,68.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"B6\",\"495\",\"HPN\",\"MCO\",-3.00,-20.00,0.00,\"\",0.00,144.00,126.00,972.00,,,,,,\n2015,5,17,\"B6\",\"495\",\"HPN\",\"MCO\",-4.00,-16.00,0.00,\"\",0.00,149.00,129.00,972.00,,,,,,\n2015,5,18,\"B6\",\"495\",\"HPN\",\"MCO\",-5.00,-23.00,0.00,\"\",0.00,143.00,123.00,972.00,,,,,,\n2015,5,19,\"B6\",\"495\",\"HPN\",\"MCO\",12.00,35.00,0.00,\"\",0.00,184.00,157.00,972.00,8.00,0.00,23.00,0.00,4.00,\n2015,5,20,\"B6\",\"495\",\"HPN\",\"MCO\",5.00,-3.00,0.00,\"\",0.00,153.00,130.00,972.00,,,,,,\n2015,5,21,\"B6\",\"495\",\"HPN\",\"MCO\",33.00,42.00,0.00,\"\",0.00,170.00,146.00,972.00,5.00,0.00,9.00,0.00,28.00,\n2015,5,22,\"B6\",\"495\",\"HPN\",\"MCO\",73.00,92.00,0.00,\"\",0.00,180.00,143.00,972.00,71.00,0.00,19.00,0.00,2.00,\n2015,5,23,\"B6\",\"495\",\"HPN\",\"MCO\",-8.00,-19.00,0.00,\"\",0.00,150.00,131.00,972.00,,,,,,\n2015,5,24,\"B6\",\"495\",\"HPN\",\"MCO\",-2.00,-18.00,0.00,\"\",0.00,145.00,123.00,972.00,,,,,,\n2015,5,25,\"B6\",\"495\",\"HPN\",\"MCO\",17.00,11.00,0.00,\"\",0.00,155.00,129.00,972.00,,,,,,\n2015,5,26,\"B6\",\"495\",\"HPN\",\"MCO\",-8.00,-1.00,0.00,\"\",0.00,168.00,129.00,972.00,,,,,,\n2015,5,27,\"B6\",\"495\",\"HPN\",\"MCO\",-3.00,-5.00,0.00,\"\",0.00,159.00,136.00,972.00,,,,,,\n2015,5,28,\"B6\",\"495\",\"HPN\",\"MCO\",-6.00,-12.00,0.00,\"\",0.00,155.00,133.00,972.00,,,,,,\n2015,5,29,\"B6\",\"495\",\"HPN\",\"MCO\",-5.00,-18.00,0.00,\"\",0.00,148.00,126.00,972.00,,,,,,\n2015,5,30,\"B6\",\"495\",\"HPN\",\"MCO\",67.00,60.00,0.00,\"\",0.00,154.00,130.00,972.00,12.00,0.00,0.00,0.00,48.00,\n2015,5,31,\"B6\",\"495\",\"HPN\",\"MCO\",22.00,6.00,0.00,\"\",0.00,145.00,128.00,972.00,,,,,,\n2015,5,1,\"B6\",\"499\",\"LGA\",\"MCO\",-4.00,-2.00,0.00,\"\",0.00,162.00,134.00,950.00,,,,,,\n2015,5,2,\"B6\",\"499\",\"LGA\",\"MCO\",-19.00,-29.00,0.00,\"\",0.00,150.00,129.00,950.00,,,,,,\n2015,5,3,\"B6\",\"499\",\"LGA\",\"MCO\",-11.00,-24.00,0.00,\"\",0.00,147.00,124.00,950.00,,,,,,\n2015,5,4,\"B6\",\"499\",\"LGA\",\"MCO\",-18.00,-22.00,0.00,\"\",0.00,156.00,140.00,950.00,,,,,,\n2015,5,5,\"B6\",\"499\",\"LGA\",\"MCO\",-15.00,-19.00,0.00,\"\",0.00,156.00,137.00,950.00,,,,,,\n2015,5,6,\"B6\",\"499\",\"LGA\",\"MCO\",-9.00,-12.00,0.00,\"\",0.00,157.00,134.00,950.00,,,,,,\n2015,5,7,\"B6\",\"499\",\"LGA\",\"MCO\",-10.00,-27.00,0.00,\"\",0.00,143.00,125.00,950.00,,,,,,\n2015,5,8,\"B6\",\"499\",\"LGA\",\"MCO\",51.00,28.00,0.00,\"\",0.00,137.00,117.00,950.00,7.00,0.00,0.00,0.00,21.00,\n2015,5,9,\"B6\",\"499\",\"LGA\",\"MCO\",-10.00,-26.00,0.00,\"\",0.00,144.00,127.00,950.00,,,,,,\n2015,5,10,\"B6\",\"499\",\"LGA\",\"MCO\",72.00,48.00,0.00,\"\",0.00,136.00,121.00,950.00,48.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"B6\",\"499\",\"LGA\",\"MCO\",106.00,82.00,0.00,\"\",0.00,136.00,122.00,950.00,0.00,0.00,0.00,0.00,82.00,\n2015,5,12,\"B6\",\"499\",\"LGA\",\"MCO\",-2.00,-9.00,0.00,\"\",0.00,153.00,131.00,950.00,,,,,,\n2015,5,13,\"B6\",\"499\",\"LGA\",\"MCO\",-17.00,-20.00,0.00,\"\",0.00,157.00,118.00,950.00,,,,,,\n2015,5,14,\"B6\",\"499\",\"LGA\",\"MCO\",-8.00,-21.00,0.00,\"\",0.00,147.00,124.00,950.00,,,,,,\n2015,5,15,\"B6\",\"499\",\"LGA\",\"MCO\",-6.00,-24.00,0.00,\"\",0.00,142.00,121.00,950.00,,,,,,\n2015,5,16,\"B6\",\"499\",\"LGA\",\"MCO\",5.00,41.00,0.00,\"\",0.00,196.00,133.00,950.00,5.00,0.00,36.00,0.00,0.00,\n2015,5,17,\"B6\",\"499\",\"LGA\",\"MCO\",-4.00,-21.00,0.00,\"\",0.00,143.00,121.00,950.00,,,,,,\n2015,5,18,\"B6\",\"499\",\"LGA\",\"MCO\",171.00,159.00,0.00,\"\",0.00,148.00,125.00,950.00,3.00,156.00,0.00,0.00,0.00,\n2015,5,19,\"B6\",\"499\",\"LGA\",\"MCO\",136.00,119.00,0.00,\"\",0.00,143.00,125.00,950.00,5.00,0.00,0.00,0.00,114.00,\n2015,5,20,\"B6\",\"499\",\"LGA\",\"MCO\",-10.00,28.00,0.00,\"\",0.00,198.00,134.00,950.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,21,\"B6\",\"499\",\"LGA\",\"MCO\",-9.00,-13.00,0.00,\"\",0.00,156.00,134.00,950.00,,,,,,\n2015,5,22,\"B6\",\"499\",\"LGA\",\"MCO\",-8.00,-18.00,0.00,\"\",0.00,150.00,133.00,950.00,,,,,,\n2015,5,23,\"B6\",\"499\",\"LGA\",\"MCO\",-19.00,-42.00,0.00,\"\",0.00,137.00,123.00,950.00,,,,,,\n2015,5,24,\"B6\",\"499\",\"LGA\",\"MCO\",-20.00,-42.00,0.00,\"\",0.00,138.00,121.00,950.00,,,,,,\n2015,5,25,\"B6\",\"499\",\"LGA\",\"MCO\",-6.00,-19.00,0.00,\"\",0.00,147.00,124.00,950.00,,,,,,\n2015,5,26,\"B6\",\"499\",\"LGA\",\"MCO\",-9.00,-26.00,0.00,\"\",0.00,143.00,126.00,950.00,,,,,,\n2015,5,27,\"B6\",\"499\",\"LGA\",\"MCO\",250.00,228.00,0.00,\"\",0.00,138.00,123.00,950.00,0.00,0.00,0.00,0.00,228.00,\n2015,5,28,\"B6\",\"499\",\"LGA\",\"MCO\",-3.00,18.00,0.00,\"\",0.00,181.00,127.00,950.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,29,\"B6\",\"499\",\"LGA\",\"MCO\",-1.00,-15.00,0.00,\"\",0.00,146.00,122.00,950.00,,,,,,\n2015,5,30,\"B6\",\"499\",\"LGA\",\"MCO\",-18.00,-41.00,0.00,\"\",0.00,137.00,121.00,950.00,,,,,,\n2015,5,31,\"B6\",\"499\",\"LGA\",\"MCO\",,,1.00,\"C\",0.00,,,950.00,,,,,,\n2015,5,16,\"B6\",\"718\",\"JFK\",\"BOS\",18.00,7.00,0.00,\"\",0.00,63.00,40.00,187.00,,,,,,\n2015,5,17,\"B6\",\"718\",\"JFK\",\"BOS\",12.00,2.00,0.00,\"\",0.00,64.00,37.00,187.00,,,,,,\n2015,5,18,\"B6\",\"718\",\"JFK\",\"BOS\",17.00,45.00,0.00,\"\",0.00,102.00,39.00,187.00,17.00,0.00,28.00,0.00,0.00,\n2015,5,19,\"B6\",\"718\",\"JFK\",\"BOS\",4.00,11.00,0.00,\"\",0.00,81.00,40.00,187.00,,,,,,\n2015,5,20,\"B6\",\"718\",\"JFK\",\"BOS\",-7.00,-2.00,0.00,\"\",0.00,79.00,43.00,187.00,,,,,,\n2015,5,21,\"B6\",\"718\",\"JFK\",\"BOS\",35.00,24.00,0.00,\"\",0.00,63.00,33.00,187.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"B6\",\"718\",\"JFK\",\"BOS\",-2.00,-3.00,0.00,\"\",0.00,73.00,38.00,187.00,,,,,,\n2015,5,23,\"B6\",\"718\",\"JFK\",\"BOS\",-1.00,-7.00,0.00,\"\",0.00,68.00,43.00,187.00,,,,,,\n2015,5,24,\"B6\",\"718\",\"JFK\",\"BOS\",-8.00,-19.00,0.00,\"\",0.00,63.00,41.00,187.00,,,,,,\n2015,5,25,\"B6\",\"718\",\"JFK\",\"BOS\",-7.00,-1.00,0.00,\"\",0.00,80.00,40.00,187.00,,,,,,\n2015,5,26,\"B6\",\"718\",\"JFK\",\"BOS\",62.00,43.00,0.00,\"\",0.00,55.00,37.00,187.00,43.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"B6\",\"718\",\"JFK\",\"BOS\",16.00,4.00,0.00,\"\",0.00,62.00,43.00,187.00,,,,,,\n2015,5,28,\"B6\",\"718\",\"JFK\",\"BOS\",4.00,5.00,0.00,\"\",0.00,75.00,34.00,187.00,,,,,,\n2015,5,29,\"B6\",\"718\",\"JFK\",\"BOS\",-1.00,2.00,0.00,\"\",0.00,77.00,46.00,187.00,,,,,,\n2015,5,30,\"B6\",\"718\",\"JFK\",\"BOS\",-1.00,-10.00,0.00,\"\",0.00,65.00,41.00,187.00,,,,,,\n2015,5,31,\"B6\",\"718\",\"JFK\",\"BOS\",,,1.00,\"C\",0.00,,,187.00,,,,,,\n2015,5,1,\"B6\",\"745\",\"JFK\",\"PSE\",-2.00,14.00,0.00,\"\",0.00,249.00,210.00,1617.00,,,,,,\n2015,5,2,\"B6\",\"745\",\"JFK\",\"PSE\",-6.00,-9.00,0.00,\"\",0.00,230.00,212.00,1617.00,,,,,,\n2015,5,3,\"B6\",\"745\",\"JFK\",\"PSE\",0.00,0.00,0.00,\"\",0.00,233.00,208.00,1617.00,,,,,,\n2015,5,4,\"B6\",\"745\",\"JFK\",\"PSE\",-2.00,13.00,0.00,\"\",0.00,248.00,207.00,1617.00,,,,,,\n2015,5,5,\"B6\",\"745\",\"JFK\",\"PSE\",-2.00,-10.00,0.00,\"\",0.00,225.00,204.00,1617.00,,,,,,\n2015,5,6,\"B6\",\"745\",\"JFK\",\"PSE\",0.00,-3.00,0.00,\"\",0.00,230.00,206.00,1617.00,,,,,,\n2015,5,7,\"B6\",\"745\",\"JFK\",\"PSE\",-9.00,-11.00,0.00,\"\",0.00,231.00,212.00,1617.00,,,,,,\n2015,5,8,\"B6\",\"745\",\"JFK\",\"PSE\",75.00,66.00,0.00,\"\",0.00,224.00,205.00,1617.00,66.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"B6\",\"745\",\"JFK\",\"PSE\",3.00,-4.00,0.00,\"\",0.00,226.00,207.00,1617.00,,,,,,\n2015,5,10,\"B6\",\"745\",\"JFK\",\"PSE\",-7.00,-7.00,0.00,\"\",0.00,233.00,209.00,1617.00,,,,,,\n2015,5,11,\"B6\",\"745\",\"JFK\",\"PSE\",60.00,58.00,0.00,\"\",0.00,231.00,217.00,1617.00,53.00,0.00,0.00,0.00,5.00,\n2015,5,12,\"B6\",\"745\",\"JFK\",\"PSE\",-13.00,-21.00,0.00,\"\",0.00,225.00,198.00,1617.00,,,,,,\n2015,5,13,\"B6\",\"745\",\"JFK\",\"PSE\",-4.00,-17.00,0.00,\"\",0.00,220.00,196.00,1617.00,,,,,,\n2015,5,14,\"B6\",\"745\",\"JFK\",\"PSE\",-4.00,-22.00,0.00,\"\",0.00,215.00,187.00,1617.00,,,,,,\n2015,5,15,\"B6\",\"745\",\"JFK\",\"PSE\",-1.00,-18.00,0.00,\"\",0.00,216.00,197.00,1617.00,,,,,,\n2015,5,16,\"B6\",\"745\",\"JFK\",\"PSE\",-1.00,-24.00,0.00,\"\",0.00,210.00,191.00,1617.00,,,,,,\n2015,5,17,\"B6\",\"745\",\"JFK\",\"PSE\",-9.00,-24.00,0.00,\"\",0.00,218.00,196.00,1617.00,,,,,,\n2015,5,18,\"B6\",\"745\",\"JFK\",\"PSE\",0.00,4.00,0.00,\"\",0.00,237.00,197.00,1617.00,,,,,,\n2015,5,19,\"B6\",\"745\",\"JFK\",\"PSE\",-4.00,-26.00,0.00,\"\",0.00,211.00,198.00,1617.00,,,,,,\n2015,5,20,\"B6\",\"745\",\"JFK\",\"PSE\",4.00,-13.00,0.00,\"\",0.00,216.00,199.00,1617.00,,,,,,\n2015,5,21,\"B6\",\"745\",\"JFK\",\"PSE\",-3.00,-19.00,0.00,\"\",0.00,217.00,198.00,1617.00,,,,,,\n2015,5,22,\"B6\",\"745\",\"JFK\",\"PSE\",-3.00,-19.00,0.00,\"\",0.00,217.00,197.00,1617.00,,,,,,\n2015,5,23,\"B6\",\"745\",\"JFK\",\"PSE\",-5.00,-25.00,0.00,\"\",0.00,213.00,194.00,1617.00,,,,,,\n2015,5,24,\"B6\",\"745\",\"JFK\",\"PSE\",-7.00,-28.00,0.00,\"\",0.00,212.00,189.00,1617.00,,,,,,\n2015,5,25,\"B6\",\"745\",\"JFK\",\"PSE\",9.00,-12.00,0.00,\"\",0.00,212.00,190.00,1617.00,,,,,,\n2015,5,26,\"B6\",\"745\",\"JFK\",\"PSE\",12.00,-15.00,0.00,\"\",0.00,206.00,187.00,1617.00,,,,,,\n2015,5,27,\"B6\",\"745\",\"JFK\",\"PSE\",0.00,-7.00,0.00,\"\",0.00,226.00,200.00,1617.00,,,,,,\n2015,5,28,\"B6\",\"745\",\"JFK\",\"PSE\",10.00,-8.00,0.00,\"\",0.00,215.00,198.00,1617.00,,,,,,\n2015,5,29,\"B6\",\"745\",\"JFK\",\"PSE\",-3.00,-18.00,0.00,\"\",0.00,218.00,198.00,1617.00,,,,,,\n2015,5,30,\"B6\",\"745\",\"JFK\",\"PSE\",-3.00,-14.00,0.00,\"\",0.00,222.00,202.00,1617.00,,,,,,\n2015,5,31,\"B6\",\"745\",\"JFK\",\"PSE\",122.00,135.00,0.00,\"\",0.00,246.00,212.00,1617.00,0.00,0.00,13.00,0.00,122.00,\n2015,5,1,\"B6\",\"746\",\"PSE\",\"JFK\",-12.00,-18.00,0.00,\"\",0.00,233.00,209.00,1617.00,,,,,,\n2015,5,2,\"B6\",\"746\",\"PSE\",\"JFK\",-1.00,-24.00,0.00,\"\",0.00,216.00,199.00,1617.00,,,,,,\n2015,5,3,\"B6\",\"746\",\"PSE\",\"JFK\",-5.00,-31.00,0.00,\"\",0.00,213.00,197.00,1617.00,,,,,,\n2015,5,4,\"B6\",\"746\",\"PSE\",\"JFK\",-10.00,-32.00,0.00,\"\",0.00,217.00,200.00,1617.00,,,,,,\n2015,5,5,\"B6\",\"746\",\"PSE\",\"JFK\",-7.00,-32.00,0.00,\"\",0.00,214.00,200.00,1617.00,,,,,,\n2015,5,6,\"B6\",\"746\",\"PSE\",\"JFK\",2.00,-16.00,0.00,\"\",0.00,221.00,204.00,1617.00,,,,,,\n2015,5,7,\"B6\",\"746\",\"PSE\",\"JFK\",-12.00,-28.00,0.00,\"\",0.00,223.00,212.00,1617.00,,,,,,\n2015,5,8,\"B6\",\"746\",\"PSE\",\"JFK\",-7.00,-7.00,0.00,\"\",0.00,239.00,213.00,1617.00,,,,,,\n2015,5,9,\"B6\",\"746\",\"PSE\",\"JFK\",36.00,20.00,0.00,\"\",0.00,223.00,205.00,1617.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,10,\"B6\",\"746\",\"PSE\",\"JFK\",5.00,-13.00,0.00,\"\",0.00,221.00,204.00,1617.00,,,,,,\n2015,5,11,\"B6\",\"746\",\"PSE\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,219.00,201.00,1617.00,,,,,,\n2015,5,12,\"B6\",\"746\",\"PSE\",\"JFK\",28.00,15.00,0.00,\"\",0.00,226.00,208.00,1617.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,13,\"B6\",\"746\",\"PSE\",\"JFK\",75.00,70.00,0.00,\"\",0.00,234.00,217.00,1617.00,70.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"B6\",\"746\",\"PSE\",\"JFK\",-6.00,-3.00,0.00,\"\",0.00,242.00,227.00,1617.00,,,,,,\n2015,5,15,\"B6\",\"746\",\"PSE\",\"JFK\",-11.00,-15.00,0.00,\"\",0.00,235.00,217.00,1617.00,,,,,,\n2015,5,16,\"B6\",\"746\",\"PSE\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,234.00,218.00,1617.00,,,,,,\n2015,5,17,\"B6\",\"746\",\"PSE\",\"JFK\",18.00,15.00,0.00,\"\",0.00,236.00,222.00,1617.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"746\",\"PSE\",\"JFK\",-11.00,-11.00,0.00,\"\",0.00,239.00,210.00,1617.00,,,,,,\n2015,5,19,\"B6\",\"746\",\"PSE\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,229.00,216.00,1617.00,,,,,,\n2015,5,20,\"B6\",\"746\",\"PSE\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,219.00,206.00,1617.00,,,,,,\n2015,5,21,\"B6\",\"746\",\"PSE\",\"JFK\",-13.00,-20.00,0.00,\"\",0.00,232.00,211.00,1617.00,,,,,,\n2015,5,22,\"B6\",\"746\",\"PSE\",\"JFK\",-10.00,-4.00,0.00,\"\",0.00,245.00,212.00,1617.00,,,,,,\n2015,5,23,\"B6\",\"746\",\"PSE\",\"JFK\",-18.00,-26.00,0.00,\"\",0.00,231.00,214.00,1617.00,,,,,,\n2015,5,24,\"B6\",\"746\",\"PSE\",\"JFK\",-7.00,-3.00,0.00,\"\",0.00,243.00,224.00,1617.00,,,,,,\n2015,5,25,\"B6\",\"746\",\"PSE\",\"JFK\",-10.00,-20.00,0.00,\"\",0.00,229.00,215.00,1617.00,,,,,,\n2015,5,26,\"B6\",\"746\",\"PSE\",\"JFK\",-7.00,-10.00,0.00,\"\",0.00,236.00,212.00,1617.00,,,,,,\n2015,5,27,\"B6\",\"746\",\"PSE\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,225.00,212.00,1617.00,,,,,,\n2015,5,28,\"B6\",\"746\",\"PSE\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,221.00,206.00,1617.00,,,,,,\n2015,5,29,\"B6\",\"746\",\"PSE\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,228.00,212.00,1617.00,,,,,,\n2015,5,30,\"B6\",\"746\",\"PSE\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,225.00,212.00,1617.00,,,,,,\n2015,5,31,\"B6\",\"746\",\"PSE\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,235.00,206.00,1617.00,,,,,,\n2015,5,1,\"B6\",\"748\",\"LAS\",\"JFK\",-1.00,6.00,0.00,\"\",0.00,325.00,282.00,2248.00,,,,,,\n2015,5,2,\"B6\",\"748\",\"LAS\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,293.00,273.00,2248.00,,,,,,\n2015,5,3,\"B6\",\"748\",\"LAS\",\"JFK\",2.00,-4.00,0.00,\"\",0.00,312.00,266.00,2248.00,,,,,,\n2015,5,4,\"B6\",\"748\",\"LAS\",\"JFK\",-4.00,3.00,0.00,\"\",0.00,325.00,276.00,2248.00,,,,,,\n2015,5,5,\"B6\",\"748\",\"LAS\",\"JFK\",-8.00,-34.00,0.00,\"\",0.00,292.00,279.00,2248.00,,,,,,\n2015,5,6,\"B6\",\"748\",\"LAS\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,301.00,283.00,2248.00,,,,,,\n2015,5,7,\"B6\",\"748\",\"LAS\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,302.00,268.00,2248.00,,,,,,\n2015,5,8,\"B6\",\"748\",\"LAS\",\"JFK\",18.00,-2.00,0.00,\"\",0.00,298.00,263.00,2248.00,,,,,,\n2015,5,9,\"B6\",\"748\",\"LAS\",\"JFK\",-5.00,-30.00,0.00,\"\",0.00,293.00,272.00,2248.00,,,,,,\n2015,5,10,\"B6\",\"748\",\"LAS\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,308.00,278.00,2248.00,,,,,,\n2015,5,11,\"B6\",\"748\",\"LAS\",\"JFK\",84.00,86.00,0.00,\"\",0.00,320.00,295.00,2248.00,0.00,84.00,2.00,0.00,0.00,\n2015,5,12,\"B6\",\"748\",\"LAS\",\"JFK\",11.00,-34.00,0.00,\"\",0.00,273.00,251.00,2248.00,,,,,,\n2015,5,13,\"B6\",\"748\",\"LAS\",\"JFK\",27.00,-11.00,0.00,\"\",0.00,280.00,260.00,2248.00,,,,,,\n2015,5,14,\"B6\",\"748\",\"LAS\",\"JFK\",8.00,-12.00,0.00,\"\",0.00,298.00,268.00,2248.00,,,,,,\n2015,5,15,\"B6\",\"748\",\"LAS\",\"JFK\",37.00,9.00,0.00,\"\",0.00,290.00,268.00,2248.00,,,,,,\n2015,5,16,\"B6\",\"748\",\"LAS\",\"JFK\",16.00,-15.00,0.00,\"\",0.00,287.00,268.00,2248.00,,,,,,\n2015,5,17,\"B6\",\"748\",\"LAS\",\"JFK\",-1.00,-37.00,0.00,\"\",0.00,282.00,261.00,2248.00,,,,,,\n2015,5,18,\"B6\",\"748\",\"LAS\",\"JFK\",27.00,0.00,0.00,\"\",0.00,291.00,262.00,2248.00,,,,,,\n2015,5,19,\"B6\",\"748\",\"LAS\",\"JFK\",20.00,-6.00,0.00,\"\",0.00,292.00,270.00,2248.00,,,,,,\n2015,5,20,\"B6\",\"748\",\"LAS\",\"JFK\",32.00,-25.00,0.00,\"\",0.00,261.00,244.00,2248.00,,,,,,\n2015,5,21,\"B6\",\"748\",\"LAS\",\"JFK\",14.00,-27.00,0.00,\"\",0.00,277.00,248.00,2248.00,,,,,,\n2015,5,22,\"B6\",\"748\",\"LAS\",\"JFK\",63.00,8.00,0.00,\"\",0.00,263.00,249.00,2248.00,,,,,,\n2015,5,23,\"B6\",\"748\",\"LAS\",\"JFK\",-3.00,-39.00,0.00,\"\",0.00,282.00,264.00,2248.00,,,,,,\n2015,5,24,\"B6\",\"748\",\"LAS\",\"JFK\",-6.00,-32.00,0.00,\"\",0.00,292.00,268.00,2248.00,,,,,,\n2015,5,25,\"B6\",\"748\",\"LAS\",\"JFK\",6.00,-24.00,0.00,\"\",0.00,288.00,269.00,2248.00,,,,,,\n2015,5,26,\"B6\",\"748\",\"LAS\",\"JFK\",-7.00,-38.00,0.00,\"\",0.00,287.00,268.00,2248.00,,,,,,\n2015,5,27,\"B6\",\"748\",\"LAS\",\"JFK\",,,1.00,\"C\",0.00,,,2248.00,,,,,,\n2015,5,28,\"B6\",\"748\",\"LAS\",\"JFK\",11.00,29.00,0.00,\"\",0.00,336.00,310.00,2248.00,7.00,0.00,18.00,0.00,4.00,\n2015,5,29,\"B6\",\"748\",\"LAS\",\"JFK\",3.00,-35.00,0.00,\"\",0.00,280.00,267.00,2248.00,,,,,,\n2015,5,30,\"B6\",\"748\",\"LAS\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,317.00,300.00,2248.00,,,,,,\n2015,5,31,\"B6\",\"748\",\"LAS\",\"JFK\",156.00,201.00,0.00,\"\",0.00,363.00,306.00,2248.00,0.00,0.00,201.00,0.00,0.00,\n2015,5,1,\"B6\",\"761\",\"LGA\",\"PBI\",0.00,-14.00,0.00,\"\",0.00,161.00,141.00,1035.00,,,,,,\n2015,5,2,\"B6\",\"761\",\"LGA\",\"PBI\",-10.00,-30.00,0.00,\"\",0.00,155.00,136.00,1035.00,,,,,,\n2015,5,3,\"B6\",\"761\",\"LGA\",\"PBI\",-4.00,-16.00,0.00,\"\",0.00,163.00,142.00,1035.00,,,,,,\n2015,5,4,\"B6\",\"761\",\"LGA\",\"PBI\",-7.00,-23.00,0.00,\"\",0.00,159.00,139.00,1035.00,,,,,,\n2015,5,5,\"B6\",\"761\",\"LGA\",\"PBI\",-11.00,-12.00,0.00,\"\",0.00,174.00,152.00,1035.00,,,,,,\n2015,5,6,\"B6\",\"761\",\"LGA\",\"PBI\",-9.00,11.00,0.00,\"\",0.00,195.00,143.00,1035.00,,,,,,\n2015,5,7,\"B6\",\"761\",\"LGA\",\"PBI\",7.00,-2.00,0.00,\"\",0.00,166.00,140.00,1035.00,,,,,,\n2015,5,8,\"B6\",\"761\",\"LGA\",\"PBI\",-5.00,-25.00,0.00,\"\",0.00,155.00,134.00,1035.00,,,,,,\n2015,5,9,\"B6\",\"761\",\"LGA\",\"PBI\",-8.00,-30.00,0.00,\"\",0.00,153.00,137.00,1035.00,,,,,,\n2015,5,10,\"B6\",\"761\",\"LGA\",\"PBI\",2.00,15.00,0.00,\"\",0.00,188.00,145.00,1035.00,2.00,0.00,13.00,0.00,0.00,\n2015,5,11,\"B6\",\"761\",\"LGA\",\"PBI\",114.00,100.00,0.00,\"\",0.00,161.00,140.00,1035.00,0.00,0.00,0.00,0.00,100.00,\n2015,5,12,\"B6\",\"761\",\"LGA\",\"PBI\",-3.00,-6.00,0.00,\"\",0.00,172.00,135.00,1035.00,,,,,,\n2015,5,13,\"B6\",\"761\",\"LGA\",\"PBI\",-16.00,-24.00,0.00,\"\",0.00,167.00,129.00,1035.00,,,,,,\n2015,5,14,\"B6\",\"761\",\"LGA\",\"PBI\",-4.00,-25.00,0.00,\"\",0.00,154.00,136.00,1035.00,,,,,,\n2015,5,15,\"B6\",\"761\",\"LGA\",\"PBI\",2.00,-21.00,0.00,\"\",0.00,152.00,136.00,1035.00,,,,,,\n2015,5,16,\"B6\",\"761\",\"LGA\",\"PBI\",-13.00,-45.00,0.00,\"\",0.00,143.00,131.00,1035.00,,,,,,\n2015,5,17,\"B6\",\"761\",\"LGA\",\"PBI\",26.00,15.00,0.00,\"\",0.00,164.00,129.00,1035.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,18,\"B6\",\"761\",\"LGA\",\"PBI\",123.00,115.00,0.00,\"\",0.00,167.00,131.00,1035.00,0.00,0.00,0.00,0.00,115.00,\n2015,5,19,\"B6\",\"761\",\"LGA\",\"PBI\",108.00,111.00,0.00,\"\",0.00,178.00,148.00,1035.00,0.00,0.00,3.00,0.00,108.00,\n2015,5,20,\"B6\",\"761\",\"LGA\",\"PBI\",-10.00,10.00,0.00,\"\",0.00,195.00,136.00,1035.00,,,,,,\n2015,5,21,\"B6\",\"761\",\"LGA\",\"PBI\",-5.00,3.00,0.00,\"\",0.00,183.00,151.00,1035.00,,,,,,\n2015,5,22,\"B6\",\"761\",\"LGA\",\"PBI\",-4.00,-22.00,0.00,\"\",0.00,157.00,136.00,1035.00,,,,,,\n2015,5,23,\"B6\",\"761\",\"LGA\",\"PBI\",-4.00,-34.00,0.00,\"\",0.00,145.00,132.00,1035.00,,,,,,\n2015,5,24,\"B6\",\"761\",\"LGA\",\"PBI\",-10.00,-34.00,0.00,\"\",0.00,151.00,134.00,1035.00,,,,,,\n2015,5,25,\"B6\",\"761\",\"LGA\",\"PBI\",-11.00,-20.00,0.00,\"\",0.00,166.00,142.00,1035.00,,,,,,\n2015,5,26,\"B6\",\"761\",\"LGA\",\"PBI\",-5.00,-24.00,0.00,\"\",0.00,156.00,139.00,1035.00,,,,,,\n2015,5,27,\"B6\",\"761\",\"LGA\",\"PBI\",277.00,261.00,0.00,\"\",0.00,159.00,133.00,1035.00,8.00,0.00,0.00,0.00,253.00,\n2015,5,28,\"B6\",\"761\",\"LGA\",\"PBI\",-1.00,-8.00,0.00,\"\",0.00,168.00,133.00,1035.00,,,,,,\n2015,5,29,\"B6\",\"761\",\"LGA\",\"PBI\",-5.00,-7.00,0.00,\"\",0.00,173.00,132.00,1035.00,,,,,,\n2015,5,30,\"B6\",\"761\",\"LGA\",\"PBI\",-10.00,-44.00,0.00,\"\",0.00,141.00,129.00,1035.00,,,,,,\n2015,5,31,\"B6\",\"761\",\"LGA\",\"PBI\",,,1.00,\"C\",0.00,,,1035.00,,,,,,\n2015,5,1,\"B6\",\"762\",\"PBI\",\"LGA\",-9.00,-24.00,0.00,\"\",0.00,151.00,129.00,1035.00,,,,,,\n2015,5,2,\"B6\",\"762\",\"PBI\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,154.00,131.00,1035.00,,,,,,\n2015,5,3,\"B6\",\"762\",\"PBI\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,166.00,145.00,1035.00,,,,,,\n2015,5,4,\"B6\",\"762\",\"PBI\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,150.00,135.00,1035.00,,,,,,\n2015,5,5,\"B6\",\"762\",\"PBI\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,154.00,135.00,1035.00,,,,,,\n2015,5,6,\"B6\",\"762\",\"PBI\",\"LGA\",1.00,-5.00,0.00,\"\",0.00,160.00,141.00,1035.00,,,,,,\n2015,5,7,\"B6\",\"762\",\"PBI\",\"LGA\",13.00,10.00,0.00,\"\",0.00,163.00,145.00,1035.00,,,,,,\n2015,5,8,\"B6\",\"762\",\"PBI\",\"LGA\",-9.00,35.00,0.00,\"\",0.00,210.00,156.00,1035.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,9,\"B6\",\"762\",\"PBI\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,171.00,156.00,1035.00,,,,,,\n2015,5,10,\"B6\",\"762\",\"PBI\",\"LGA\",-10.00,1.00,0.00,\"\",0.00,177.00,157.00,1035.00,,,,,,\n2015,5,11,\"B6\",\"762\",\"PBI\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,158.00,144.00,1035.00,,,,,,\n2015,5,12,\"B6\",\"762\",\"PBI\",\"LGA\",-11.00,-14.00,0.00,\"\",0.00,163.00,146.00,1035.00,,,,,,\n2015,5,13,\"B6\",\"762\",\"PBI\",\"LGA\",-12.00,-30.00,0.00,\"\",0.00,148.00,134.00,1035.00,,,,,,\n2015,5,14,\"B6\",\"762\",\"PBI\",\"LGA\",65.00,90.00,0.00,\"\",0.00,191.00,178.00,1035.00,65.00,0.00,25.00,0.00,0.00,\n2015,5,15,\"B6\",\"762\",\"PBI\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,151.00,135.00,1035.00,,,,,,\n2015,5,16,\"B6\",\"762\",\"PBI\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,157.00,144.00,1035.00,,,,,,\n2015,5,17,\"B6\",\"762\",\"PBI\",\"LGA\",-7.00,-10.00,0.00,\"\",0.00,163.00,144.00,1035.00,,,,,,\n2015,5,18,\"B6\",\"762\",\"PBI\",\"LGA\",-4.00,46.00,0.00,\"\",0.00,216.00,196.00,1035.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,19,\"B6\",\"762\",\"PBI\",\"LGA\",-9.00,-14.00,0.00,\"\",0.00,161.00,147.00,1035.00,,,,,,\n2015,5,20,\"B6\",\"762\",\"PBI\",\"LGA\",-8.00,-24.00,0.00,\"\",0.00,150.00,136.00,1035.00,,,,,,\n2015,5,21,\"B6\",\"762\",\"PBI\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,157.00,135.00,1035.00,,,,,,\n2015,5,22,\"B6\",\"762\",\"PBI\",\"LGA\",-11.00,-24.00,0.00,\"\",0.00,153.00,138.00,1035.00,,,,,,\n2015,5,23,\"B6\",\"762\",\"PBI\",\"LGA\",-10.00,-19.00,0.00,\"\",0.00,157.00,141.00,1035.00,,,,,,\n2015,5,24,\"B6\",\"762\",\"PBI\",\"LGA\",-10.00,-14.00,0.00,\"\",0.00,162.00,145.00,1035.00,,,,,,\n2015,5,25,\"B6\",\"762\",\"PBI\",\"LGA\",-12.00,-25.00,0.00,\"\",0.00,153.00,136.00,1035.00,,,,,,\n2015,5,26,\"B6\",\"762\",\"PBI\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,150.00,133.00,1035.00,,,,,,\n2015,5,27,\"B6\",\"762\",\"PBI\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,154.00,140.00,1035.00,,,,,,\n2015,5,28,\"B6\",\"762\",\"PBI\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,156.00,139.00,1035.00,,,,,,\n2015,5,29,\"B6\",\"762\",\"PBI\",\"LGA\",-7.00,-10.00,0.00,\"\",0.00,163.00,138.00,1035.00,,,,,,\n2015,5,30,\"B6\",\"762\",\"PBI\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,159.00,146.00,1035.00,,,,,,\n2015,5,31,\"B6\",\"762\",\"PBI\",\"LGA\",-7.00,-25.00,0.00,\"\",0.00,148.00,133.00,1035.00,,,,,,\n2015,5,1,\"B6\",\"775\",\"JFK\",\"MSY\",-9.00,-30.00,0.00,\"\",0.00,188.00,151.00,1182.00,,,,,,\n2015,5,2,\"B6\",\"775\",\"JFK\",\"MSY\",-3.00,-32.00,0.00,\"\",0.00,180.00,150.00,1182.00,,,,,,\n2015,5,3,\"B6\",\"775\",\"JFK\",\"MSY\",93.00,65.00,0.00,\"\",0.00,181.00,150.00,1182.00,18.00,0.00,0.00,0.00,47.00,\n2015,5,4,\"B6\",\"775\",\"JFK\",\"MSY\",-5.00,14.00,0.00,\"\",0.00,228.00,149.00,1182.00,,,,,,\n2015,5,5,\"B6\",\"775\",\"JFK\",\"MSY\",-4.00,-28.00,0.00,\"\",0.00,185.00,156.00,1182.00,,,,,,\n2015,5,6,\"B6\",\"775\",\"JFK\",\"MSY\",36.00,15.00,0.00,\"\",0.00,188.00,152.00,1182.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"B6\",\"775\",\"JFK\",\"MSY\",-9.00,-26.00,0.00,\"\",0.00,192.00,155.00,1182.00,,,,,,\n2015,5,8,\"B6\",\"775\",\"JFK\",\"MSY\",156.00,111.00,0.00,\"\",0.00,164.00,146.00,1182.00,4.00,0.00,0.00,0.00,107.00,\n2015,5,9,\"B6\",\"775\",\"JFK\",\"MSY\",2.00,-24.00,0.00,\"\",0.00,183.00,153.00,1182.00,,,,,,\n2015,5,10,\"B6\",\"775\",\"JFK\",\"MSY\",-1.00,-32.00,0.00,\"\",0.00,178.00,152.00,1182.00,,,,,,\n2015,5,11,\"B6\",\"775\",\"JFK\",\"MSY\",77.00,50.00,0.00,\"\",0.00,182.00,157.00,1182.00,4.00,0.00,0.00,0.00,46.00,\n2015,5,12,\"B6\",\"775\",\"JFK\",\"MSY\",-7.00,-11.00,0.00,\"\",0.00,205.00,180.00,1182.00,,,,,,\n2015,5,13,\"B6\",\"775\",\"JFK\",\"MSY\",-4.00,-19.00,0.00,\"\",0.00,194.00,160.00,1182.00,,,,,,\n2015,5,14,\"B6\",\"775\",\"JFK\",\"MSY\",-5.00,-20.00,0.00,\"\",0.00,194.00,162.00,1182.00,,,,,,\n2015,5,15,\"B6\",\"775\",\"JFK\",\"MSY\",-4.00,-18.00,0.00,\"\",0.00,195.00,164.00,1182.00,,,,,,\n2015,5,16,\"B6\",\"775\",\"JFK\",\"MSY\",-10.00,-10.00,0.00,\"\",0.00,209.00,169.00,1182.00,,,,,,\n2015,5,17,\"B6\",\"775\",\"JFK\",\"MSY\",-4.00,-26.00,0.00,\"\",0.00,187.00,152.00,1182.00,,,,,,\n2015,5,18,\"B6\",\"775\",\"JFK\",\"MSY\",,,1.00,\"A\",0.00,,,1182.00,,,,,,\n2015,5,19,\"B6\",\"775\",\"JFK\",\"MSY\",-8.00,-9.00,0.00,\"\",0.00,208.00,162.00,1182.00,,,,,,\n2015,5,20,\"B6\",\"775\",\"JFK\",\"MSY\",6.00,-10.00,0.00,\"\",0.00,193.00,165.00,1182.00,,,,,,\n2015,5,21,\"B6\",\"775\",\"JFK\",\"MSY\",-5.00,-11.00,0.00,\"\",0.00,203.00,177.00,1182.00,,,,,,\n2015,5,22,\"B6\",\"775\",\"JFK\",\"MSY\",55.00,43.00,0.00,\"\",0.00,197.00,166.00,1182.00,6.00,0.00,0.00,0.00,37.00,\n2015,5,24,\"B6\",\"775\",\"JFK\",\"MSY\",-9.00,-35.00,0.00,\"\",0.00,183.00,158.00,1182.00,,,,,,\n2015,5,25,\"B6\",\"775\",\"JFK\",\"MSY\",-11.00,-23.00,0.00,\"\",0.00,197.00,158.00,1182.00,,,,,,\n2015,5,26,\"B6\",\"775\",\"JFK\",\"MSY\",-9.00,-25.00,0.00,\"\",0.00,193.00,162.00,1182.00,,,,,,\n2015,5,27,\"B6\",\"775\",\"JFK\",\"MSY\",,,1.00,\"C\",0.00,,,1182.00,,,,,,\n2015,5,28,\"B6\",\"775\",\"JFK\",\"MSY\",-3.00,-24.00,0.00,\"\",0.00,188.00,156.00,1182.00,,,,,,\n2015,5,29,\"B6\",\"775\",\"JFK\",\"MSY\",-4.00,-40.00,0.00,\"\",0.00,173.00,152.00,1182.00,,,,,,\n2015,5,30,\"B6\",\"775\",\"JFK\",\"MSY\",10.00,-22.00,0.00,\"\",0.00,177.00,149.00,1182.00,,,,,,\n2015,5,31,\"B6\",\"775\",\"JFK\",\"MSY\",146.00,174.00,0.00,\"\",0.00,237.00,163.00,1182.00,146.00,0.00,28.00,0.00,0.00,\n2015,5,1,\"B6\",\"776\",\"MSY\",\"JFK\",-10.00,-36.00,0.00,\"\",0.00,157.00,144.00,1182.00,,,,,,\n2015,5,2,\"B6\",\"776\",\"MSY\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,169.00,154.00,1182.00,,,,,,\n2015,5,3,\"B6\",\"776\",\"MSY\",\"JFK\",-13.00,-26.00,0.00,\"\",0.00,170.00,153.00,1182.00,,,,,,\n2015,5,4,\"B6\",\"776\",\"MSY\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,169.00,154.00,1182.00,,,,,,\n2015,5,5,\"B6\",\"776\",\"MSY\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,171.00,154.00,1182.00,,,,,,\n2015,5,6,\"B6\",\"776\",\"MSY\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,177.00,151.00,1182.00,,,,,,\n2015,5,7,\"B6\",\"776\",\"MSY\",\"JFK\",-10.00,-10.00,0.00,\"\",0.00,183.00,159.00,1182.00,,,,,,\n2015,5,8,\"B6\",\"776\",\"MSY\",\"JFK\",-8.00,2.00,0.00,\"\",0.00,193.00,162.00,1182.00,,,,,,\n2015,5,9,\"B6\",\"776\",\"MSY\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,182.00,162.00,1182.00,,,,,,\n2015,5,10,\"B6\",\"776\",\"MSY\",\"JFK\",-13.00,-17.00,0.00,\"\",0.00,179.00,159.00,1182.00,,,,,,\n2015,5,11,\"B6\",\"776\",\"MSY\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,170.00,153.00,1182.00,,,,,,\n2015,5,12,\"B6\",\"776\",\"MSY\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,173.00,156.00,1182.00,,,,,,\n2015,5,13,\"B6\",\"776\",\"MSY\",\"JFK\",-11.00,-34.00,0.00,\"\",0.00,160.00,144.00,1182.00,,,,,,\n2015,5,14,\"B6\",\"776\",\"MSY\",\"JFK\",-7.00,-12.00,0.00,\"\",0.00,178.00,159.00,1182.00,,,,,,\n2015,5,15,\"B6\",\"776\",\"MSY\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,163.00,147.00,1182.00,,,,,,\n2015,5,16,\"B6\",\"776\",\"MSY\",\"JFK\",8.00,16.00,0.00,\"\",0.00,191.00,155.00,1182.00,8.00,0.00,8.00,0.00,0.00,\n2015,5,17,\"B6\",\"776\",\"MSY\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,174.00,158.00,1182.00,,,,,,\n2015,5,18,\"B6\",\"776\",\"MSY\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,175.00,159.00,1182.00,,,,,,\n2015,5,19,\"B6\",\"776\",\"MSY\",\"JFK\",,,1.00,\"A\",0.00,,,1182.00,,,,,,\n2015,5,20,\"B6\",\"776\",\"MSY\",\"JFK\",-10.00,-27.00,0.00,\"\",0.00,166.00,150.00,1182.00,,,,,,\n2015,5,21,\"B6\",\"776\",\"MSY\",\"JFK\",-11.00,-34.00,0.00,\"\",0.00,160.00,145.00,1182.00,,,,,,\n2015,5,22,\"B6\",\"776\",\"MSY\",\"JFK\",-7.00,-31.00,0.00,\"\",0.00,159.00,142.00,1182.00,,,,,,\n2015,5,23,\"B6\",\"776\",\"MSY\",\"JFK\",-5.00,-32.00,0.00,\"\",0.00,156.00,145.00,1182.00,,,,,,\n2015,5,25,\"B6\",\"776\",\"MSY\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,168.00,151.00,1182.00,,,,,,\n2015,5,26,\"B6\",\"776\",\"MSY\",\"JFK\",-8.00,-15.00,0.00,\"\",0.00,176.00,162.00,1182.00,,,,,,\n2015,5,27,\"B6\",\"776\",\"MSY\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,164.00,148.00,1182.00,,,,,,\n2015,5,28,\"B6\",\"776\",\"MSY\",\"JFK\",-13.00,-38.00,0.00,\"\",0.00,158.00,146.00,1182.00,,,,,,\n2015,5,29,\"B6\",\"776\",\"MSY\",\"JFK\",-10.00,-20.00,0.00,\"\",0.00,173.00,157.00,1182.00,,,,,,\n2015,5,30,\"B6\",\"776\",\"MSY\",\"JFK\",27.00,23.00,0.00,\"\",0.00,179.00,167.00,1182.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"B6\",\"776\",\"MSY\",\"JFK\",-8.00,-28.00,0.00,\"\",0.00,163.00,152.00,1182.00,,,,,,\n2015,5,1,\"B6\",\"794\",\"AUS\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,204.00,188.00,1521.00,,,,,,\n2015,5,2,\"B6\",\"794\",\"AUS\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,217.00,196.00,1521.00,,,,,,\n2015,5,3,\"B6\",\"794\",\"AUS\",\"JFK\",-1.00,5.00,0.00,\"\",0.00,227.00,207.00,1521.00,,,,,,\n2015,5,4,\"B6\",\"794\",\"AUS\",\"JFK\",-3.00,4.00,0.00,\"\",0.00,228.00,209.00,1521.00,,,,,,\n2015,5,5,\"B6\",\"794\",\"AUS\",\"JFK\",-9.00,-10.00,0.00,\"\",0.00,220.00,205.00,1521.00,,,,,,\n2015,5,6,\"B6\",\"794\",\"AUS\",\"JFK\",-13.00,-25.00,0.00,\"\",0.00,209.00,194.00,1521.00,,,,,,\n2015,5,7,\"B6\",\"794\",\"AUS\",\"JFK\",-5.00,-5.00,0.00,\"\",0.00,221.00,207.00,1521.00,,,,,,\n2015,5,8,\"B6\",\"794\",\"AUS\",\"JFK\",-8.00,-4.00,0.00,\"\",0.00,225.00,206.00,1521.00,,,,,,\n2015,5,9,\"B6\",\"794\",\"AUS\",\"JFK\",-10.00,-15.00,0.00,\"\",0.00,216.00,199.00,1521.00,,,,,,\n2015,5,10,\"B6\",\"794\",\"AUS\",\"JFK\",-3.00,1.00,0.00,\"\",0.00,225.00,199.00,1521.00,,,,,,\n2015,5,11,\"B6\",\"794\",\"AUS\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,218.00,200.00,1521.00,,,,,,\n2015,5,12,\"B6\",\"794\",\"AUS\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,211.00,191.00,1521.00,,,,,,\n2015,5,13,\"B6\",\"794\",\"AUS\",\"JFK\",107.00,92.00,0.00,\"\",0.00,206.00,192.00,1521.00,92.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"B6\",\"794\",\"AUS\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,206.00,188.00,1521.00,,,,,,\n2015,5,15,\"B6\",\"794\",\"AUS\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,208.00,191.00,1521.00,,,,,,\n2015,5,16,\"B6\",\"794\",\"AUS\",\"JFK\",5.00,-6.00,0.00,\"\",0.00,210.00,194.00,1521.00,,,,,,\n2015,5,17,\"B6\",\"794\",\"AUS\",\"JFK\",170.00,167.00,0.00,\"\",0.00,218.00,200.00,1521.00,0.00,167.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"794\",\"AUS\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,217.00,201.00,1521.00,,,,,,\n2015,5,19,\"B6\",\"794\",\"AUS\",\"JFK\",46.00,38.00,0.00,\"\",0.00,213.00,199.00,1521.00,38.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"B6\",\"794\",\"AUS\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,211.00,192.00,1521.00,,,,,,\n2015,5,21,\"B6\",\"794\",\"AUS\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,217.00,196.00,1521.00,,,,,,\n2015,5,22,\"B6\",\"794\",\"AUS\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,217.00,188.00,1521.00,,,,,,\n2015,5,23,\"B6\",\"794\",\"AUS\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,207.00,192.00,1521.00,,,,,,\n2015,5,24,\"B6\",\"794\",\"AUS\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,220.00,199.00,1521.00,,,,,,\n2015,5,25,\"B6\",\"794\",\"AUS\",\"JFK\",18.00,10.00,0.00,\"\",0.00,213.00,192.00,1521.00,,,,,,\n2015,5,26,\"B6\",\"794\",\"AUS\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,210.00,196.00,1521.00,,,,,,\n2015,5,27,\"B6\",\"794\",\"AUS\",\"JFK\",-11.00,1.00,0.00,\"\",0.00,233.00,189.00,1521.00,,,,,,\n2015,5,28,\"B6\",\"794\",\"AUS\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,211.00,195.00,1521.00,,,,,,\n2015,5,29,\"B6\",\"794\",\"AUS\",\"JFK\",-10.00,-9.00,0.00,\"\",0.00,222.00,202.00,1521.00,,,,,,\n2015,5,30,\"B6\",\"794\",\"AUS\",\"JFK\",3.00,-7.00,0.00,\"\",0.00,211.00,198.00,1521.00,,,,,,\n2015,5,31,\"B6\",\"794\",\"AUS\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,215.00,198.00,1521.00,,,,,,\n2015,5,1,\"B6\",\"795\",\"JFK\",\"AUS\",-6.00,-9.00,0.00,\"\",0.00,241.00,200.00,1521.00,,,,,,\n2015,5,2,\"B6\",\"795\",\"JFK\",\"AUS\",-10.00,-12.00,0.00,\"\",0.00,242.00,202.00,1521.00,,,,,,\n2015,5,3,\"B6\",\"795\",\"JFK\",\"AUS\",-4.00,-9.00,0.00,\"\",0.00,239.00,196.00,1521.00,,,,,,\n2015,5,4,\"B6\",\"795\",\"JFK\",\"AUS\",-2.00,-20.00,0.00,\"\",0.00,226.00,193.00,1521.00,,,,,,\n2015,5,5,\"B6\",\"795\",\"JFK\",\"AUS\",-11.00,-20.00,0.00,\"\",0.00,235.00,192.00,1521.00,,,,,,\n2015,5,6,\"B6\",\"795\",\"JFK\",\"AUS\",0.00,-16.00,0.00,\"\",0.00,228.00,196.00,1521.00,,,,,,\n2015,5,7,\"B6\",\"795\",\"JFK\",\"AUS\",-5.00,-19.00,0.00,\"\",0.00,230.00,199.00,1521.00,,,,,,\n2015,5,8,\"B6\",\"795\",\"JFK\",\"AUS\",24.00,13.00,0.00,\"\",0.00,233.00,201.00,1521.00,,,,,,\n2015,5,9,\"B6\",\"795\",\"JFK\",\"AUS\",-2.00,-6.00,0.00,\"\",0.00,240.00,206.00,1521.00,,,,,,\n2015,5,10,\"B6\",\"795\",\"JFK\",\"AUS\",17.00,-11.00,0.00,\"\",0.00,216.00,196.00,1521.00,,,,,,\n2015,5,11,\"B6\",\"795\",\"JFK\",\"AUS\",8.00,24.00,0.00,\"\",0.00,260.00,220.00,1521.00,8.00,0.00,16.00,0.00,0.00,\n2015,5,12,\"B6\",\"795\",\"JFK\",\"AUS\",-2.00,-3.00,0.00,\"\",0.00,243.00,213.00,1521.00,,,,,,\n2015,5,13,\"B6\",\"795\",\"JFK\",\"AUS\",-4.00,23.00,0.00,\"\",0.00,271.00,227.00,1521.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,14,\"B6\",\"795\",\"JFK\",\"AUS\",1.00,-1.00,0.00,\"\",0.00,242.00,207.00,1521.00,,,,,,\n2015,5,15,\"B6\",\"795\",\"JFK\",\"AUS\",-5.00,-4.00,0.00,\"\",0.00,245.00,209.00,1521.00,,,,,,\n2015,5,16,\"B6\",\"795\",\"JFK\",\"AUS\",-3.00,10.00,0.00,\"\",0.00,257.00,205.00,1521.00,,,,,,\n2015,5,17,\"B6\",\"795\",\"JFK\",\"AUS\",110.00,120.00,0.00,\"\",0.00,254.00,226.00,1521.00,110.00,0.00,10.00,0.00,0.00,\n2015,5,18,\"B6\",\"795\",\"JFK\",\"AUS\",-1.00,17.00,0.00,\"\",0.00,262.00,212.00,1521.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,19,\"B6\",\"795\",\"JFK\",\"AUS\",-3.00,16.00,0.00,\"\",0.00,263.00,230.00,1521.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,20,\"B6\",\"795\",\"JFK\",\"AUS\",-6.00,1.00,0.00,\"\",0.00,251.00,204.00,1521.00,,,,,,\n2015,5,21,\"B6\",\"795\",\"JFK\",\"AUS\",-6.00,7.00,0.00,\"\",0.00,257.00,225.00,1521.00,,,,,,\n2015,5,22,\"B6\",\"795\",\"JFK\",\"AUS\",-2.00,15.00,0.00,\"\",0.00,261.00,218.00,1521.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,23,\"B6\",\"795\",\"JFK\",\"AUS\",37.00,16.00,0.00,\"\",0.00,223.00,205.00,1521.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"B6\",\"795\",\"JFK\",\"AUS\",-4.00,-13.00,0.00,\"\",0.00,235.00,210.00,1521.00,,,,,,\n2015,5,25,\"B6\",\"795\",\"JFK\",\"AUS\",-10.00,-19.00,0.00,\"\",0.00,235.00,205.00,1521.00,,,,,,\n2015,5,26,\"B6\",\"795\",\"JFK\",\"AUS\",-8.00,-27.00,0.00,\"\",0.00,225.00,204.00,1521.00,,,,,,\n2015,5,27,\"B6\",\"795\",\"JFK\",\"AUS\",-5.00,-12.00,0.00,\"\",0.00,237.00,208.00,1521.00,,,,,,\n2015,5,28,\"B6\",\"795\",\"JFK\",\"AUS\",0.00,1.00,0.00,\"\",0.00,245.00,209.00,1521.00,,,,,,\n2015,5,29,\"B6\",\"795\",\"JFK\",\"AUS\",-6.00,-17.00,0.00,\"\",0.00,233.00,193.00,1521.00,,,,,,\n2015,5,30,\"B6\",\"795\",\"JFK\",\"AUS\",-3.00,-19.00,0.00,\"\",0.00,228.00,200.00,1521.00,,,,,,\n2015,5,31,\"B6\",\"795\",\"JFK\",\"AUS\",-5.00,-17.00,0.00,\"\",0.00,232.00,200.00,1521.00,,,,,,\n2015,5,1,\"B6\",\"1013\",\"JFK\",\"LGB\",-1.00,-18.00,0.00,\"\",0.00,372.00,318.00,2465.00,,,,,,\n2015,5,3,\"B6\",\"1013\",\"JFK\",\"LGB\",-2.00,-44.00,0.00,\"\",0.00,347.00,322.00,2465.00,,,,,,\n2015,5,4,\"B6\",\"1013\",\"JFK\",\"LGB\",-4.00,-53.00,0.00,\"\",0.00,340.00,313.00,2465.00,,,,,,\n2015,5,5,\"B6\",\"1013\",\"JFK\",\"LGB\",-4.00,-69.00,0.00,\"\",0.00,324.00,301.00,2465.00,,,,,,\n2015,5,6,\"B6\",\"1013\",\"JFK\",\"LGB\",-7.00,-53.00,0.00,\"\",0.00,343.00,320.00,2465.00,,,,,,\n2015,5,7,\"B6\",\"1013\",\"JFK\",\"LGB\",-5.00,-6.00,0.00,\"\",0.00,388.00,345.00,2465.00,,,,,,\n2015,5,8,\"B6\",\"1013\",\"JFK\",\"LGB\",-3.00,-19.00,0.00,\"\",0.00,373.00,334.00,2465.00,,,,,,\n2015,5,9,\"B6\",\"1013\",\"JFK\",\"LGB\",-4.00,-54.00,0.00,\"\",0.00,339.00,323.00,2465.00,,,,,,\n2015,5,10,\"B6\",\"1013\",\"JFK\",\"LGB\",67.00,50.00,0.00,\"\",0.00,372.00,334.00,2465.00,50.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"B6\",\"1013\",\"JFK\",\"LGB\",7.00,-11.00,0.00,\"\",0.00,371.00,341.00,2465.00,,,,,,\n2015,5,12,\"B6\",\"1013\",\"JFK\",\"LGB\",-3.00,-15.00,0.00,\"\",0.00,377.00,346.00,2465.00,,,,,,\n2015,5,13,\"B6\",\"1013\",\"JFK\",\"LGB\",-2.00,-31.00,0.00,\"\",0.00,360.00,333.00,2465.00,,,,,,\n2015,5,14,\"B6\",\"1013\",\"JFK\",\"LGB\",-3.00,-41.00,0.00,\"\",0.00,351.00,328.00,2465.00,,,,,,\n2015,5,15,\"B6\",\"1013\",\"JFK\",\"LGB\",-1.00,-34.00,0.00,\"\",0.00,356.00,331.00,2465.00,,,,,,\n2015,5,16,\"B6\",\"1013\",\"JFK\",\"LGB\",91.00,84.00,0.00,\"\",0.00,382.00,349.00,2465.00,0.00,0.00,0.00,0.00,84.00,\n2015,5,17,\"B6\",\"1013\",\"JFK\",\"LGB\",0.00,-35.00,0.00,\"\",0.00,354.00,329.00,2465.00,,,,,,\n2015,5,18,\"B6\",\"1013\",\"JFK\",\"LGB\",-3.00,0.00,0.00,\"\",0.00,392.00,349.00,2465.00,,,,,,\n2015,5,19,\"B6\",\"1013\",\"JFK\",\"LGB\",-1.00,-11.00,0.00,\"\",0.00,379.00,352.00,2465.00,,,,,,\n2015,5,20,\"B6\",\"1013\",\"JFK\",\"LGB\",-2.00,-22.00,0.00,\"\",0.00,369.00,347.00,2465.00,,,,,,\n2015,5,21,\"B6\",\"1013\",\"JFK\",\"LGB\",-1.00,-22.00,0.00,\"\",0.00,368.00,341.00,2465.00,,,,,,\n2015,5,22,\"B6\",\"1013\",\"JFK\",\"LGB\",20.00,-5.00,0.00,\"\",0.00,364.00,345.00,2465.00,,,,,,\n2015,5,23,\"B6\",\"1013\",\"JFK\",\"LGB\",8.00,1.00,0.00,\"\",0.00,382.00,348.00,2465.00,,,,,,\n2015,5,24,\"B6\",\"1013\",\"JFK\",\"LGB\",-4.00,-52.00,0.00,\"\",0.00,341.00,321.00,2465.00,,,,,,\n2015,5,25,\"B6\",\"1013\",\"JFK\",\"LGB\",-6.00,-46.00,0.00,\"\",0.00,349.00,323.00,2465.00,,,,,,\n2015,5,26,\"B6\",\"1013\",\"JFK\",\"LGB\",-4.00,-50.00,0.00,\"\",0.00,343.00,314.00,2465.00,,,,,,\n2015,5,27,\"B6\",\"1013\",\"JFK\",\"LGB\",,,1.00,\"C\",0.00,,,2465.00,,,,,,\n2015,5,28,\"B6\",\"1013\",\"JFK\",\"LGB\",1.00,-35.00,0.00,\"\",0.00,353.00,329.00,2465.00,,,,,,\n2015,5,29,\"B6\",\"1013\",\"JFK\",\"LGB\",-6.00,-35.00,0.00,\"\",0.00,360.00,327.00,2465.00,,,,,,\n2015,5,30,\"B6\",\"1013\",\"JFK\",\"LGB\",3.00,-39.00,0.00,\"\",0.00,347.00,316.00,2465.00,,,,,,\n2015,5,31,\"B6\",\"1013\",\"JFK\",\"LGB\",186.00,271.00,0.00,\"\",0.00,474.00,349.00,2465.00,0.00,0.00,166.00,0.00,105.00,\n2015,5,1,\"B6\",\"1023\",\"JFK\",\"LAX\",37.00,4.00,0.00,\"\",0.00,348.00,321.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"1023\",\"JFK\",\"LAX\",4.00,-8.00,0.00,\"\",0.00,369.00,320.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"1023\",\"JFK\",\"LAX\",2.00,8.00,0.00,\"\",0.00,387.00,320.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"1023\",\"JFK\",\"LAX\",-5.00,-33.00,0.00,\"\",0.00,353.00,330.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"1023\",\"JFK\",\"LAX\",-1.00,-35.00,0.00,\"\",0.00,347.00,319.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"1023\",\"JFK\",\"LAX\",-5.00,-13.00,0.00,\"\",0.00,373.00,334.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"1023\",\"JFK\",\"LAX\",-1.00,-21.00,0.00,\"\",0.00,361.00,317.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"1023\",\"JFK\",\"LAX\",-5.00,-20.00,0.00,\"\",0.00,366.00,333.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"1023\",\"JFK\",\"LAX\",-9.00,-3.00,0.00,\"\",0.00,387.00,346.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"1023\",\"JFK\",\"LAX\",-5.00,8.00,0.00,\"\",0.00,394.00,352.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"1023\",\"JFK\",\"LAX\",-1.00,-4.00,0.00,\"\",0.00,378.00,337.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"1023\",\"JFK\",\"LAX\",0.00,-31.00,0.00,\"\",0.00,350.00,322.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"1023\",\"JFK\",\"LAX\",-4.00,-11.00,0.00,\"\",0.00,374.00,340.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"1023\",\"JFK\",\"LAX\",19.00,15.00,0.00,\"\",0.00,377.00,328.00,2475.00,11.00,0.00,0.00,0.00,4.00,\n2015,5,18,\"B6\",\"1023\",\"JFK\",\"LAX\",183.00,178.00,0.00,\"\",0.00,376.00,345.00,2475.00,12.00,0.00,0.00,0.00,166.00,\n2015,5,19,\"B6\",\"1023\",\"JFK\",\"LAX\",19.00,25.00,0.00,\"\",0.00,387.00,349.00,2475.00,19.00,0.00,6.00,0.00,0.00,\n2015,5,20,\"B6\",\"1023\",\"JFK\",\"LAX\",26.00,19.00,0.00,\"\",0.00,374.00,349.00,2475.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"B6\",\"1023\",\"JFK\",\"LAX\",-1.00,-9.00,0.00,\"\",0.00,373.00,341.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"1023\",\"JFK\",\"LAX\",7.00,12.00,0.00,\"\",0.00,386.00,350.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"1023\",\"JFK\",\"LAX\",41.00,2.00,0.00,\"\",0.00,342.00,316.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"1023\",\"JFK\",\"LAX\",15.00,-9.00,0.00,\"\",0.00,357.00,328.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"1023\",\"JFK\",\"LAX\",9.00,16.00,0.00,\"\",0.00,388.00,328.00,2475.00,9.00,0.00,7.00,0.00,0.00,\n2015,5,27,\"B6\",\"1023\",\"JFK\",\"LAX\",152.00,134.00,0.00,\"\",0.00,363.00,340.00,2475.00,22.00,0.00,0.00,0.00,112.00,\n2015,5,28,\"B6\",\"1023\",\"JFK\",\"LAX\",6.00,-5.00,0.00,\"\",0.00,370.00,333.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"1023\",\"JFK\",\"LAX\",0.00,-15.00,0.00,\"\",0.00,366.00,321.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"1023\",\"JFK\",\"LAX\",235.00,214.00,0.00,\"\",0.00,360.00,324.00,2475.00,0.00,10.00,0.00,0.00,204.00,\n2015,5,1,\"B6\",\"1024\",\"LAX\",\"JFK\",1.00,-19.00,0.00,\"\",0.00,308.00,292.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"1024\",\"LAX\",\"JFK\",12.00,3.00,0.00,\"\",0.00,319.00,295.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"1024\",\"LAX\",\"JFK\",20.00,33.00,0.00,\"\",0.00,341.00,301.00,2475.00,20.00,0.00,13.00,0.00,0.00,\n2015,5,4,\"B6\",\"1024\",\"LAX\",\"JFK\",1.00,-4.00,0.00,\"\",0.00,323.00,301.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"1024\",\"LAX\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,331.00,302.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"1024\",\"LAX\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,322.00,303.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"1024\",\"LAX\",\"JFK\",70.00,108.00,0.00,\"\",0.00,366.00,340.00,2475.00,23.00,0.00,38.00,0.00,47.00,\n2015,5,8,\"B6\",\"1024\",\"LAX\",\"JFK\",2.00,26.00,0.00,\"\",0.00,352.00,334.00,2475.00,2.00,0.00,24.00,0.00,0.00,\n2015,5,9,\"B6\",\"1024\",\"LAX\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,308.00,292.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"1024\",\"LAX\",\"JFK\",7.00,1.00,0.00,\"\",0.00,322.00,302.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"1024\",\"LAX\",\"JFK\",4.00,12.00,0.00,\"\",0.00,336.00,319.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"1024\",\"LAX\",\"JFK\",10.00,-18.00,0.00,\"\",0.00,300.00,281.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"1024\",\"LAX\",\"JFK\",-3.00,-35.00,0.00,\"\",0.00,296.00,284.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"1024\",\"LAX\",\"JFK\",-7.00,-32.00,0.00,\"\",0.00,303.00,288.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"1024\",\"LAX\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,311.00,294.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"1024\",\"LAX\",\"JFK\",2.00,-7.00,0.00,\"\",0.00,319.00,299.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"1024\",\"LAX\",\"JFK\",2.00,-21.00,0.00,\"\",0.00,305.00,287.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"1024\",\"LAX\",\"JFK\",14.00,7.00,0.00,\"\",0.00,321.00,296.00,2475.00,,,,,,\n2015,5,19,\"B6\",\"1024\",\"LAX\",\"JFK\",24.00,-12.00,0.00,\"\",0.00,292.00,259.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"1024\",\"LAX\",\"JFK\",1.00,-33.00,0.00,\"\",0.00,294.00,274.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"1024\",\"LAX\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,309.00,289.00,2475.00,,,,,,\n2015,5,1,\"B6\",\"702\",\"JFK\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,83.00,53.00,301.00,,,,,,\n2015,5,2,\"B6\",\"702\",\"JFK\",\"BUF\",25.00,23.00,0.00,\"\",0.00,89.00,53.00,301.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"B6\",\"702\",\"JFK\",\"BUF\",2.00,-10.00,0.00,\"\",0.00,79.00,51.00,301.00,,,,,,\n2015,5,4,\"B6\",\"702\",\"JFK\",\"BUF\",-11.00,7.00,0.00,\"\",0.00,109.00,53.00,301.00,,,,,,\n2015,5,5,\"B6\",\"702\",\"JFK\",\"BUF\",-5.00,-13.00,0.00,\"\",0.00,83.00,53.00,301.00,,,,,,\n2015,5,6,\"B6\",\"702\",\"JFK\",\"BUF\",-5.00,-17.00,0.00,\"\",0.00,79.00,52.00,301.00,,,,,,\n2015,5,7,\"B6\",\"702\",\"JFK\",\"BUF\",-1.00,2.00,0.00,\"\",0.00,94.00,52.00,301.00,,,,,,\n2015,5,8,\"B6\",\"702\",\"JFK\",\"BUF\",140.00,116.00,0.00,\"\",0.00,67.00,48.00,301.00,18.00,0.00,0.00,0.00,98.00,\n2015,5,9,\"B6\",\"702\",\"JFK\",\"BUF\",13.00,-12.00,0.00,\"\",0.00,66.00,51.00,301.00,,,,,,\n2015,5,10,\"B6\",\"702\",\"JFK\",\"BUF\",98.00,79.00,0.00,\"\",0.00,72.00,49.00,301.00,2.00,0.00,0.00,0.00,77.00,\n2015,5,11,\"B6\",\"702\",\"JFK\",\"BUF\",21.00,27.00,0.00,\"\",0.00,97.00,70.00,301.00,0.00,0.00,6.00,0.00,21.00,\n2015,5,12,\"B6\",\"702\",\"JFK\",\"BUF\",,,1.00,\"C\",0.00,,,301.00,,,,,,\n2015,5,13,\"B6\",\"702\",\"JFK\",\"BUF\",51.00,49.00,0.00,\"\",0.00,89.00,55.00,301.00,8.00,0.00,0.00,0.00,41.00,\n2015,5,14,\"B6\",\"702\",\"JFK\",\"BUF\",-2.00,-1.00,0.00,\"\",0.00,92.00,54.00,301.00,,,,,,\n2015,5,15,\"B6\",\"702\",\"JFK\",\"BUF\",-6.00,-16.00,0.00,\"\",0.00,81.00,52.00,301.00,,,,,,\n2015,5,16,\"B6\",\"702\",\"JFK\",\"BUF\",-4.00,-20.00,0.00,\"\",0.00,75.00,56.00,301.00,,,,,,\n2015,5,17,\"B6\",\"702\",\"JFK\",\"BUF\",-8.00,-20.00,0.00,\"\",0.00,79.00,48.00,301.00,,,,,,\n2015,5,18,\"B6\",\"702\",\"JFK\",\"BUF\",125.00,126.00,0.00,\"\",0.00,92.00,53.00,301.00,10.00,0.00,1.00,0.00,115.00,\n2015,5,19,\"B6\",\"702\",\"JFK\",\"BUF\",11.00,7.00,0.00,\"\",0.00,87.00,55.00,301.00,,,,,,\n2015,5,20,\"B6\",\"702\",\"JFK\",\"BUF\",38.00,30.00,0.00,\"\",0.00,83.00,56.00,301.00,0.00,0.00,0.00,0.00,30.00,\n2015,5,21,\"B6\",\"702\",\"JFK\",\"BUF\",-1.00,0.00,0.00,\"\",0.00,92.00,57.00,301.00,,,,,,\n2015,5,22,\"B6\",\"702\",\"JFK\",\"BUF\",92.00,78.00,0.00,\"\",0.00,77.00,58.00,301.00,10.00,0.00,0.00,0.00,68.00,\n2015,5,23,\"B6\",\"702\",\"JFK\",\"BUF\",-7.00,-18.00,0.00,\"\",0.00,80.00,58.00,301.00,,,,,,\n2015,5,24,\"B6\",\"702\",\"JFK\",\"BUF\",6.00,-4.00,0.00,\"\",0.00,81.00,56.00,301.00,,,,,,\n2015,5,25,\"B6\",\"702\",\"JFK\",\"BUF\",-7.00,-11.00,0.00,\"\",0.00,87.00,53.00,301.00,,,,,,\n2015,5,26,\"B6\",\"702\",\"JFK\",\"BUF\",-4.00,3.00,0.00,\"\",0.00,98.00,55.00,301.00,,,,,,\n2015,5,27,\"B6\",\"702\",\"JFK\",\"BUF\",,,1.00,\"C\",0.00,,,301.00,,,,,,\n2015,5,28,\"B6\",\"702\",\"JFK\",\"BUF\",-6.00,-21.00,0.00,\"\",0.00,76.00,53.00,301.00,,,,,,\n2015,5,29,\"B6\",\"702\",\"JFK\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,83.00,52.00,301.00,,,,,,\n2015,5,30,\"B6\",\"702\",\"JFK\",\"BUF\",-5.00,-19.00,0.00,\"\",0.00,77.00,52.00,301.00,,,,,,\n2015,5,31,\"B6\",\"702\",\"JFK\",\"BUF\",232.00,221.00,0.00,\"\",0.00,80.00,52.00,301.00,0.00,13.00,0.00,0.00,208.00,\n2015,5,1,\"B6\",\"703\",\"JFK\",\"SJU\",-3.00,-13.00,0.00,\"\",0.00,231.00,203.00,1598.00,,,,,,\n2015,5,2,\"B6\",\"703\",\"JFK\",\"SJU\",-4.00,-11.00,0.00,\"\",0.00,234.00,206.00,1598.00,,,,,,\n2015,5,3,\"B6\",\"703\",\"JFK\",\"SJU\",-3.00,-6.00,0.00,\"\",0.00,238.00,206.00,1598.00,,,,,,\n2015,5,4,\"B6\",\"703\",\"JFK\",\"SJU\",-5.00,-14.00,0.00,\"\",0.00,232.00,207.00,1598.00,,,,,,\n2015,5,5,\"B6\",\"703\",\"JFK\",\"SJU\",-3.00,-13.00,0.00,\"\",0.00,231.00,203.00,1598.00,,,,,,\n2015,5,6,\"B6\",\"703\",\"JFK\",\"SJU\",64.00,76.00,0.00,\"\",0.00,253.00,201.00,1598.00,64.00,0.00,12.00,0.00,0.00,\n2015,5,7,\"B6\",\"703\",\"JFK\",\"SJU\",29.00,11.00,0.00,\"\",0.00,223.00,198.00,1598.00,,,,,,\n2015,5,8,\"B6\",\"703\",\"JFK\",\"SJU\",23.00,16.00,0.00,\"\",0.00,234.00,203.00,1598.00,8.00,0.00,0.00,0.00,8.00,\n2015,5,9,\"B6\",\"703\",\"JFK\",\"SJU\",4.00,2.00,0.00,\"\",0.00,239.00,201.00,1598.00,,,,,,\n2015,5,10,\"B6\",\"703\",\"JFK\",\"SJU\",-1.00,-2.00,0.00,\"\",0.00,240.00,201.00,1598.00,,,,,,\n2015,5,11,\"B6\",\"703\",\"JFK\",\"SJU\",-4.00,-6.00,0.00,\"\",0.00,239.00,202.00,1598.00,,,,,,\n2015,5,12,\"B6\",\"703\",\"JFK\",\"SJU\",,,1.00,\"C\",0.00,,,1598.00,,,,,,\n2015,5,13,\"B6\",\"703\",\"JFK\",\"SJU\",-5.00,-25.00,0.00,\"\",0.00,221.00,199.00,1598.00,,,,,,\n2015,5,14,\"B6\",\"703\",\"JFK\",\"SJU\",-7.00,-42.00,0.00,\"\",0.00,206.00,181.00,1598.00,,,,,,\n2015,5,15,\"B6\",\"703\",\"JFK\",\"SJU\",-8.00,-27.00,0.00,\"\",0.00,222.00,192.00,1598.00,,,,,,\n2015,5,16,\"B6\",\"703\",\"JFK\",\"SJU\",-1.00,-40.00,0.00,\"\",0.00,202.00,181.00,1598.00,,,,,,\n2015,5,17,\"B6\",\"703\",\"JFK\",\"SJU\",-4.00,-35.00,0.00,\"\",0.00,210.00,185.00,1598.00,,,,,,\n2015,5,18,\"B6\",\"703\",\"JFK\",\"SJU\",14.00,-8.00,0.00,\"\",0.00,219.00,191.00,1598.00,,,,,,\n2015,5,19,\"B6\",\"703\",\"JFK\",\"SJU\",-1.00,-20.00,0.00,\"\",0.00,222.00,194.00,1598.00,,,,,,\n2015,5,20,\"B6\",\"703\",\"JFK\",\"SJU\",-1.00,-24.00,0.00,\"\",0.00,218.00,196.00,1598.00,,,,,,\n2015,5,21,\"B6\",\"703\",\"JFK\",\"SJU\",3.00,-18.00,0.00,\"\",0.00,220.00,195.00,1598.00,,,,,,\n2015,5,22,\"B6\",\"703\",\"JFK\",\"SJU\",4.00,-10.00,0.00,\"\",0.00,227.00,196.00,1598.00,,,,,,\n2015,5,23,\"B6\",\"703\",\"JFK\",\"SJU\",-3.00,-20.00,0.00,\"\",0.00,224.00,191.00,1598.00,,,,,,\n2015,5,24,\"B6\",\"703\",\"JFK\",\"SJU\",-1.00,-30.00,0.00,\"\",0.00,212.00,185.00,1598.00,,,,,,\n2015,5,25,\"B6\",\"703\",\"JFK\",\"SJU\",-2.00,-35.00,0.00,\"\",0.00,208.00,186.00,1598.00,,,,,,\n2015,5,26,\"B6\",\"703\",\"JFK\",\"SJU\",-5.00,-31.00,0.00,\"\",0.00,215.00,189.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"703\",\"JFK\",\"SJU\",-6.00,-32.00,0.00,\"\",0.00,215.00,192.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"703\",\"JFK\",\"SJU\",9.00,-2.00,0.00,\"\",0.00,230.00,198.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"703\",\"JFK\",\"SJU\",-3.00,-23.00,0.00,\"\",0.00,221.00,196.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"703\",\"JFK\",\"SJU\",-13.00,-23.00,0.00,\"\",0.00,231.00,200.00,1598.00,,,,,,\n2015,5,31,\"B6\",\"703\",\"JFK\",\"SJU\",-2.00,-2.00,0.00,\"\",0.00,241.00,204.00,1598.00,,,,,,\n2015,5,1,\"B6\",\"704\",\"SJU\",\"JFK\",34.00,12.00,0.00,\"\",0.00,221.00,198.00,1598.00,,,,,,\n2015,5,2,\"B6\",\"704\",\"SJU\",\"JFK\",6.00,-28.00,0.00,\"\",0.00,207.00,191.00,1598.00,,,,,,\n2015,5,3,\"B6\",\"704\",\"SJU\",\"JFK\",-4.00,-36.00,0.00,\"\",0.00,209.00,197.00,1598.00,,,,,,\n2015,5,4,\"B6\",\"704\",\"SJU\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,238.00,223.00,1598.00,,,,,,\n2015,5,5,\"B6\",\"704\",\"SJU\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,219.00,201.00,1598.00,,,,,,\n2015,5,6,\"B6\",\"704\",\"SJU\",\"JFK\",16.00,0.00,0.00,\"\",0.00,225.00,203.00,1598.00,,,,,,\n2015,5,7,\"B6\",\"704\",\"SJU\",\"JFK\",-6.00,-33.00,0.00,\"\",0.00,214.00,198.00,1598.00,,,,,,\n2015,5,8,\"B6\",\"704\",\"SJU\",\"JFK\",1.00,-9.00,0.00,\"\",0.00,231.00,214.00,1598.00,,,,,,\n2015,5,9,\"B6\",\"704\",\"SJU\",\"JFK\",36.00,10.00,0.00,\"\",0.00,215.00,199.00,1598.00,,,,,,\n2015,5,10,\"B6\",\"704\",\"SJU\",\"JFK\",-3.00,-29.00,0.00,\"\",0.00,215.00,202.00,1598.00,,,,,,\n2015,5,11,\"B6\",\"704\",\"SJU\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,234.00,219.00,1598.00,,,,,,\n2015,5,12,\"B6\",\"704\",\"SJU\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,230.00,211.00,1598.00,,,,,,\n2015,5,13,\"B6\",\"704\",\"SJU\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,238.00,209.00,1598.00,,,,,,\n2015,5,14,\"B6\",\"704\",\"SJU\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,237.00,219.00,1598.00,,,,,,\n2015,5,15,\"B6\",\"704\",\"SJU\",\"JFK\",55.00,42.00,0.00,\"\",0.00,228.00,211.00,1598.00,2.00,0.00,0.00,0.00,40.00,\n2015,5,16,\"B6\",\"704\",\"SJU\",\"JFK\",4.00,5.00,0.00,\"\",0.00,242.00,225.00,1598.00,,,,,,\n2015,5,17,\"B6\",\"704\",\"SJU\",\"JFK\",16.00,3.00,0.00,\"\",0.00,228.00,209.00,1598.00,,,,,,\n2015,5,18,\"B6\",\"704\",\"SJU\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,228.00,209.00,1598.00,,,,,,\n2015,5,19,\"B6\",\"704\",\"SJU\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,231.00,212.00,1598.00,,,,,,\n2015,5,20,\"B6\",\"704\",\"SJU\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,223.00,207.00,1598.00,,,,,,\n2015,5,21,\"B6\",\"704\",\"SJU\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,231.00,210.00,1598.00,,,,,,\n2015,5,22,\"B6\",\"704\",\"SJU\",\"JFK\",-2.00,-3.00,0.00,\"\",0.00,240.00,214.00,1598.00,,,,,,\n2015,5,23,\"B6\",\"704\",\"SJU\",\"JFK\",-1.00,-9.00,0.00,\"\",0.00,233.00,211.00,1598.00,,,,,,\n2015,5,24,\"B6\",\"704\",\"SJU\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,233.00,215.00,1598.00,,,,,,\n2015,5,25,\"B6\",\"704\",\"SJU\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,236.00,219.00,1598.00,,,,,,\n2015,5,26,\"B6\",\"704\",\"SJU\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,227.00,206.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"704\",\"SJU\",\"JFK\",0.00,-23.00,0.00,\"\",0.00,218.00,206.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"704\",\"SJU\",\"JFK\",12.00,-11.00,0.00,\"\",0.00,218.00,200.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"704\",\"SJU\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,215.00,203.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"704\",\"SJU\",\"JFK\",4.00,-26.00,0.00,\"\",0.00,211.00,199.00,1598.00,,,,,,\n2015,5,31,\"B6\",\"704\",\"SJU\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,225.00,210.00,1598.00,,,,,,\n2015,5,1,\"B6\",\"711\",\"JFK\",\"LAS\",15.00,-15.00,0.00,\"\",0.00,328.00,293.00,2248.00,,,,,,\n2015,5,2,\"B6\",\"711\",\"JFK\",\"LAS\",-1.00,-38.00,0.00,\"\",0.00,321.00,290.00,2248.00,,,,,,\n2015,5,3,\"B6\",\"711\",\"JFK\",\"LAS\",-6.00,-34.00,0.00,\"\",0.00,330.00,291.00,2248.00,,,,,,\n2015,5,4,\"B6\",\"711\",\"JFK\",\"LAS\",-4.00,-29.00,0.00,\"\",0.00,333.00,289.00,2248.00,,,,,,\n2015,5,5,\"B6\",\"711\",\"JFK\",\"LAS\",-1.00,-39.00,0.00,\"\",0.00,320.00,283.00,2248.00,,,,,,\n2015,5,6,\"B6\",\"711\",\"JFK\",\"LAS\",-1.00,-33.00,0.00,\"\",0.00,326.00,292.00,2248.00,,,,,,\n2015,5,7,\"B6\",\"711\",\"JFK\",\"LAS\",-3.00,-7.00,0.00,\"\",0.00,354.00,315.00,2248.00,,,,,,\n2015,5,8,\"B6\",\"711\",\"JFK\",\"LAS\",0.00,-18.00,0.00,\"\",0.00,340.00,296.00,2248.00,,,,,,\n2015,5,9,\"B6\",\"711\",\"JFK\",\"LAS\",-1.00,-23.00,0.00,\"\",0.00,336.00,301.00,2248.00,,,,,,\n2015,5,10,\"B6\",\"711\",\"JFK\",\"LAS\",-5.00,-13.00,0.00,\"\",0.00,350.00,302.00,2248.00,,,,,,\n2015,5,11,\"B6\",\"711\",\"JFK\",\"LAS\",99.00,89.00,0.00,\"\",0.00,348.00,309.00,2248.00,89.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"B6\",\"711\",\"JFK\",\"LAS\",-4.00,-15.00,0.00,\"\",0.00,347.00,322.00,2248.00,,,,,,\n2015,5,13,\"B6\",\"711\",\"JFK\",\"LAS\",26.00,2.00,0.00,\"\",0.00,334.00,299.00,2248.00,,,,,,\n2015,5,14,\"B6\",\"711\",\"JFK\",\"LAS\",7.00,-16.00,0.00,\"\",0.00,335.00,300.00,2248.00,,,,,,\n2015,5,15,\"B6\",\"711\",\"JFK\",\"LAS\",-4.00,-7.00,0.00,\"\",0.00,355.00,308.00,2248.00,,,,,,\n2015,5,16,\"B6\",\"711\",\"JFK\",\"LAS\",4.00,-10.00,0.00,\"\",0.00,344.00,309.00,2248.00,,,,,,\n2015,5,17,\"B6\",\"711\",\"JFK\",\"LAS\",9.00,-10.00,0.00,\"\",0.00,339.00,301.00,2248.00,,,,,,\n2015,5,18,\"B6\",\"711\",\"JFK\",\"LAS\",-2.00,19.00,0.00,\"\",0.00,379.00,308.00,2248.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,19,\"B6\",\"711\",\"JFK\",\"LAS\",5.00,11.00,0.00,\"\",0.00,364.00,313.00,2248.00,,,,,,\n2015,5,20,\"B6\",\"711\",\"JFK\",\"LAS\",44.00,23.00,0.00,\"\",0.00,337.00,311.00,2248.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"B6\",\"711\",\"JFK\",\"LAS\",5.00,5.00,0.00,\"\",0.00,358.00,311.00,2248.00,,,,,,\n2015,5,22,\"B6\",\"711\",\"JFK\",\"LAS\",2.00,-16.00,0.00,\"\",0.00,340.00,316.00,2248.00,,,,,,\n2015,5,23,\"B6\",\"711\",\"JFK\",\"LAS\",1.00,-2.00,0.00,\"\",0.00,355.00,323.00,2248.00,,,,,,\n2015,5,24,\"B6\",\"711\",\"JFK\",\"LAS\",-6.00,-29.00,0.00,\"\",0.00,335.00,297.00,2248.00,,,,,,\n2015,5,25,\"B6\",\"711\",\"JFK\",\"LAS\",-4.00,-28.00,0.00,\"\",0.00,334.00,300.00,2248.00,,,,,,\n2015,5,26,\"B6\",\"711\",\"JFK\",\"LAS\",-2.00,-35.00,0.00,\"\",0.00,325.00,297.00,2248.00,,,,,,\n2015,5,27,\"B6\",\"711\",\"JFK\",\"LAS\",25.00,57.00,0.00,\"\",0.00,390.00,309.00,2248.00,25.00,0.00,32.00,0.00,0.00,\n2015,5,28,\"B6\",\"711\",\"JFK\",\"LAS\",8.00,-11.00,0.00,\"\",0.00,339.00,302.00,2248.00,,,,,,\n2015,5,29,\"B6\",\"711\",\"JFK\",\"LAS\",-3.00,-16.00,0.00,\"\",0.00,345.00,295.00,2248.00,,,,,,\n2015,5,30,\"B6\",\"711\",\"JFK\",\"LAS\",95.00,73.00,0.00,\"\",0.00,336.00,301.00,2248.00,73.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"B6\",\"711\",\"JFK\",\"LAS\",129.00,139.00,0.00,\"\",0.00,368.00,295.00,2248.00,0.00,129.00,10.00,0.00,0.00,\n2015,5,1,\"B6\",\"717\",\"BOS\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,68.00,52.00,187.00,,,,,,\n2015,5,2,\"B6\",\"717\",\"BOS\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,65.00,50.00,187.00,,,,,,\n2015,5,3,\"B6\",\"717\",\"BOS\",\"JFK\",-11.00,-24.00,0.00,\"\",0.00,58.00,43.00,187.00,,,,,,\n2015,5,4,\"B6\",\"717\",\"BOS\",\"JFK\",-8.00,-10.00,0.00,\"\",0.00,69.00,47.00,187.00,,,,,,\n2015,5,5,\"B6\",\"717\",\"BOS\",\"JFK\",-9.00,-14.00,0.00,\"\",0.00,66.00,44.00,187.00,,,,,,\n2015,5,6,\"B6\",\"717\",\"BOS\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,56.00,40.00,187.00,,,,,,\n2015,5,7,\"B6\",\"717\",\"BOS\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,62.00,49.00,187.00,,,,,,\n2015,5,8,\"B6\",\"717\",\"BOS\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,64.00,43.00,187.00,,,,,,\n2015,5,9,\"B6\",\"717\",\"BOS\",\"JFK\",-10.00,-13.00,0.00,\"\",0.00,68.00,55.00,187.00,,,,,,\n2015,5,10,\"B6\",\"717\",\"BOS\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,60.00,43.00,187.00,,,,,,\n2015,5,11,\"B6\",\"717\",\"BOS\",\"JFK\",-5.00,1.00,0.00,\"\",0.00,77.00,47.00,187.00,,,,,,\n2015,5,12,\"B6\",\"717\",\"BOS\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,59.00,43.00,187.00,,,,,,\n2015,5,13,\"B6\",\"717\",\"BOS\",\"JFK\",-11.00,-12.00,0.00,\"\",0.00,70.00,41.00,187.00,,,,,,\n2015,5,14,\"B6\",\"717\",\"BOS\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,55.00,41.00,187.00,,,,,,\n2015,5,15,\"B6\",\"717\",\"BOS\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,65.00,43.00,187.00,,,,,,\n2015,5,16,\"B6\",\"717\",\"BOS\",\"JFK\",56.00,44.00,0.00,\"\",0.00,59.00,38.00,187.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"717\",\"BOS\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,58.00,40.00,187.00,,,,,,\n2015,5,18,\"B6\",\"717\",\"BOS\",\"JFK\",-4.00,1.00,0.00,\"\",0.00,76.00,55.00,187.00,,,,,,\n2015,5,19,\"B6\",\"717\",\"BOS\",\"JFK\",10.00,15.00,0.00,\"\",0.00,76.00,55.00,187.00,9.00,0.00,5.00,0.00,1.00,\n2015,5,20,\"B6\",\"717\",\"BOS\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,66.00,49.00,187.00,,,,,,\n2015,5,21,\"B6\",\"717\",\"BOS\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,67.00,48.00,187.00,,,,,,\n2015,5,22,\"B6\",\"717\",\"BOS\",\"JFK\",-7.00,-6.00,0.00,\"\",0.00,72.00,49.00,187.00,,,,,,\n2015,5,23,\"B6\",\"717\",\"BOS\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,61.00,41.00,187.00,,,,,,\n2015,5,24,\"B6\",\"717\",\"BOS\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,68.00,41.00,187.00,,,,,,\n2015,5,25,\"B6\",\"717\",\"BOS\",\"JFK\",14.00,7.00,0.00,\"\",0.00,64.00,46.00,187.00,,,,,,\n2015,5,26,\"B6\",\"717\",\"BOS\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,61.00,49.00,187.00,,,,,,\n2015,5,27,\"B6\",\"717\",\"BOS\",\"JFK\",6.00,-1.00,0.00,\"\",0.00,64.00,52.00,187.00,,,,,,\n2015,5,28,\"B6\",\"717\",\"BOS\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,64.00,43.00,187.00,,,,,,\n2015,5,29,\"B6\",\"717\",\"BOS\",\"JFK\",-9.00,-13.00,0.00,\"\",0.00,67.00,53.00,187.00,,,,,,\n2015,5,30,\"B6\",\"717\",\"BOS\",\"JFK\",-1.00,-7.00,0.00,\"\",0.00,65.00,47.00,187.00,,,,,,\n2015,5,1,\"B6\",\"718\",\"JFK\",\"BOS\",-9.00,-17.00,0.00,\"\",0.00,66.00,41.00,187.00,,,,,,\n2015,5,2,\"B6\",\"718\",\"JFK\",\"BOS\",-6.00,-7.00,0.00,\"\",0.00,73.00,38.00,187.00,,,,,,\n2015,5,3,\"B6\",\"718\",\"JFK\",\"BOS\",7.00,-1.00,0.00,\"\",0.00,66.00,41.00,187.00,,,,,,\n2015,5,4,\"B6\",\"718\",\"JFK\",\"BOS\",-5.00,5.00,0.00,\"\",0.00,84.00,41.00,187.00,,,,,,\n2015,5,5,\"B6\",\"718\",\"JFK\",\"BOS\",-4.00,-5.00,0.00,\"\",0.00,73.00,42.00,187.00,,,,,,\n2015,5,6,\"B6\",\"718\",\"JFK\",\"BOS\",-1.00,-9.00,0.00,\"\",0.00,66.00,45.00,187.00,,,,,,\n2015,5,7,\"B6\",\"718\",\"JFK\",\"BOS\",-2.00,-12.00,0.00,\"\",0.00,64.00,42.00,187.00,,,,,,\n2015,5,8,\"B6\",\"718\",\"JFK\",\"BOS\",70.00,52.00,0.00,\"\",0.00,56.00,35.00,187.00,24.00,0.00,0.00,0.00,28.00,\n2015,5,9,\"B6\",\"718\",\"JFK\",\"BOS\",-3.00,-11.00,0.00,\"\",0.00,66.00,42.00,187.00,,,,,,\n2015,5,10,\"B6\",\"718\",\"JFK\",\"BOS\",0.00,1.00,0.00,\"\",0.00,75.00,40.00,187.00,,,,,,\n2015,5,11,\"B6\",\"718\",\"JFK\",\"BOS\",11.00,16.00,0.00,\"\",0.00,79.00,42.00,187.00,11.00,0.00,5.00,0.00,0.00,\n2015,5,12,\"B6\",\"718\",\"JFK\",\"BOS\",15.00,11.00,0.00,\"\",0.00,70.00,35.00,187.00,,,,,,\n2015,5,13,\"B6\",\"718\",\"JFK\",\"BOS\",43.00,26.00,0.00,\"\",0.00,57.00,37.00,187.00,11.00,0.00,0.00,0.00,15.00,\n2015,5,14,\"B6\",\"718\",\"JFK\",\"BOS\",14.00,3.00,0.00,\"\",0.00,63.00,41.00,187.00,,,,,,\n2015,5,15,\"B6\",\"718\",\"JFK\",\"BOS\",11.00,0.00,0.00,\"\",0.00,63.00,39.00,187.00,,,,,,\n2015,5,1,\"B6\",\"803\",\"JFK\",\"SJU\",1.00,-17.00,0.00,\"\",0.00,235.00,202.00,1598.00,,,,,,\n2015,5,2,\"B6\",\"803\",\"JFK\",\"SJU\",-1.00,-12.00,0.00,\"\",0.00,242.00,206.00,1598.00,,,,,,\n2015,5,3,\"B6\",\"803\",\"JFK\",\"SJU\",-2.00,-22.00,0.00,\"\",0.00,233.00,204.00,1598.00,,,,,,\n2015,5,4,\"B6\",\"803\",\"JFK\",\"SJU\",-6.00,0.00,0.00,\"\",0.00,259.00,212.00,1598.00,,,,,,\n2015,5,5,\"B6\",\"803\",\"JFK\",\"SJU\",-6.00,-18.00,0.00,\"\",0.00,241.00,204.00,1598.00,,,,,,\n2015,5,6,\"B6\",\"803\",\"JFK\",\"SJU\",-1.00,-25.00,0.00,\"\",0.00,229.00,196.00,1598.00,,,,,,\n2015,5,7,\"B6\",\"803\",\"JFK\",\"SJU\",-2.00,-16.00,0.00,\"\",0.00,239.00,203.00,1598.00,,,,,,\n2015,5,8,\"B6\",\"803\",\"JFK\",\"SJU\",-4.00,-12.00,0.00,\"\",0.00,245.00,201.00,1598.00,,,,,,\n2015,5,9,\"B6\",\"803\",\"JFK\",\"SJU\",0.00,-10.00,0.00,\"\",0.00,243.00,204.00,1598.00,,,,,,\n2015,5,10,\"B6\",\"803\",\"JFK\",\"SJU\",-4.00,-24.00,0.00,\"\",0.00,233.00,205.00,1598.00,,,,,,\n2015,5,11,\"B6\",\"803\",\"JFK\",\"SJU\",-6.00,-25.00,0.00,\"\",0.00,234.00,201.00,1598.00,,,,,,\n2015,5,12,\"B6\",\"803\",\"JFK\",\"SJU\",-5.00,-24.00,0.00,\"\",0.00,234.00,195.00,1598.00,,,,,,\n2015,5,13,\"B6\",\"803\",\"JFK\",\"SJU\",-4.00,-36.00,0.00,\"\",0.00,221.00,195.00,1598.00,,,,,,\n2015,5,14,\"B6\",\"803\",\"JFK\",\"SJU\",1.00,-43.00,0.00,\"\",0.00,209.00,178.00,1598.00,,,,,,\n2015,5,15,\"B6\",\"803\",\"JFK\",\"SJU\",-2.00,-28.00,0.00,\"\",0.00,227.00,190.00,1598.00,,,,,,\n2015,5,16,\"B6\",\"803\",\"JFK\",\"SJU\",-3.00,-35.00,0.00,\"\",0.00,221.00,186.00,1598.00,,,,,,\n2015,5,17,\"B6\",\"803\",\"JFK\",\"SJU\",3.00,-23.00,0.00,\"\",0.00,227.00,189.00,1598.00,,,,,,\n2015,5,18,\"B6\",\"803\",\"JFK\",\"SJU\",-1.00,-2.00,0.00,\"\",0.00,252.00,191.00,1598.00,,,,,,\n2015,5,19,\"B6\",\"803\",\"JFK\",\"SJU\",-3.00,9.00,0.00,\"\",0.00,265.00,196.00,1598.00,,,,,,\n2015,5,20,\"B6\",\"803\",\"JFK\",\"SJU\",3.00,-18.00,0.00,\"\",0.00,232.00,193.00,1598.00,,,,,,\n2015,5,21,\"B6\",\"803\",\"JFK\",\"SJU\",87.00,73.00,0.00,\"\",0.00,239.00,194.00,1598.00,17.00,0.00,0.00,0.00,56.00,\n2015,5,22,\"B6\",\"803\",\"JFK\",\"SJU\",9.00,-11.00,0.00,\"\",0.00,233.00,193.00,1598.00,,,,,,\n2015,5,23,\"B6\",\"803\",\"JFK\",\"SJU\",-2.00,,0.00,\"\",1.00,,,1598.00,,,,,,\n2015,5,24,\"B6\",\"803\",\"JFK\",\"SJU\",-7.00,-46.00,0.00,\"\",0.00,214.00,184.00,1598.00,,,,,,\n2015,5,25,\"B6\",\"803\",\"JFK\",\"SJU\",-7.00,-35.00,0.00,\"\",0.00,225.00,186.00,1598.00,,,,,,\n2015,5,26,\"B6\",\"803\",\"JFK\",\"SJU\",-7.00,-31.00,0.00,\"\",0.00,229.00,190.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"803\",\"JFK\",\"SJU\",-1.00,-2.00,0.00,\"\",0.00,252.00,194.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"803\",\"JFK\",\"SJU\",-5.00,-34.00,0.00,\"\",0.00,224.00,197.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"803\",\"JFK\",\"SJU\",-3.00,-25.00,0.00,\"\",0.00,231.00,193.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"803\",\"JFK\",\"SJU\",-1.00,-21.00,0.00,\"\",0.00,233.00,199.00,1598.00,,,,,,\n2015,5,31,\"B6\",\"803\",\"JFK\",\"SJU\",,,1.00,\"C\",0.00,,,1598.00,,,,,,\n2015,5,1,\"B6\",\"813\",\"HPN\",\"FLL\",15.00,4.00,0.00,\"\",0.00,169.00,156.00,1097.00,,,,,,\n2015,5,2,\"B6\",\"813\",\"HPN\",\"FLL\",2.00,-5.00,0.00,\"\",0.00,173.00,149.00,1097.00,,,,,,\n2015,5,3,\"B6\",\"813\",\"HPN\",\"FLL\",-10.00,-12.00,0.00,\"\",0.00,178.00,145.00,1097.00,,,,,,\n2015,5,4,\"B6\",\"813\",\"HPN\",\"FLL\",-9.00,1.00,0.00,\"\",0.00,190.00,168.00,1097.00,,,,,,\n2015,5,5,\"B6\",\"813\",\"HPN\",\"FLL\",-5.00,11.00,0.00,\"\",0.00,196.00,170.00,1097.00,,,,,,\n2015,5,6,\"B6\",\"813\",\"HPN\",\"FLL\",-3.00,10.00,0.00,\"\",0.00,193.00,158.00,1097.00,,,,,,\n2015,5,7,\"B6\",\"813\",\"HPN\",\"FLL\",1.00,-6.00,0.00,\"\",0.00,173.00,146.00,1097.00,,,,,,\n2015,5,8,\"B6\",\"813\",\"HPN\",\"FLL\",7.00,-13.00,0.00,\"\",0.00,160.00,142.00,1097.00,,,,,,\n2015,5,9,\"B6\",\"813\",\"HPN\",\"FLL\",-3.00,0.00,0.00,\"\",0.00,183.00,149.00,1097.00,,,,,,\n2015,5,10,\"B6\",\"813\",\"HPN\",\"FLL\",3.00,1.00,0.00,\"\",0.00,178.00,159.00,1097.00,,,,,,\n2015,5,11,\"B6\",\"813\",\"HPN\",\"FLL\",-5.00,45.00,0.00,\"\",0.00,230.00,192.00,1097.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,12,\"B6\",\"813\",\"HPN\",\"FLL\",-4.00,-19.00,0.00,\"\",0.00,165.00,150.00,1097.00,,,,,,\n2015,5,13,\"B6\",\"813\",\"HPN\",\"FLL\",-9.00,-28.00,0.00,\"\",0.00,161.00,146.00,1097.00,,,,,,\n2015,5,14,\"B6\",\"813\",\"HPN\",\"FLL\",-6.00,-16.00,0.00,\"\",0.00,170.00,140.00,1097.00,,,,,,\n2015,5,15,\"B6\",\"813\",\"HPN\",\"FLL\",0.00,-10.00,0.00,\"\",0.00,170.00,149.00,1097.00,,,,,,\n2015,5,16,\"B6\",\"813\",\"HPN\",\"FLL\",14.00,-1.00,0.00,\"\",0.00,165.00,144.00,1097.00,,,,,,\n2015,5,17,\"B6\",\"813\",\"HPN\",\"FLL\",-1.00,-16.00,0.00,\"\",0.00,165.00,143.00,1097.00,,,,,,\n2015,5,18,\"B6\",\"813\",\"HPN\",\"FLL\",9.00,21.00,0.00,\"\",0.00,192.00,162.00,1097.00,9.00,0.00,12.00,0.00,0.00,\n2015,5,19,\"B6\",\"813\",\"HPN\",\"FLL\",7.00,5.00,0.00,\"\",0.00,178.00,157.00,1097.00,,,,,,\n2015,5,20,\"B6\",\"813\",\"HPN\",\"FLL\",27.00,6.00,0.00,\"\",0.00,159.00,142.00,1097.00,,,,,,\n2015,5,21,\"B6\",\"813\",\"HPN\",\"FLL\",-2.00,5.00,0.00,\"\",0.00,187.00,164.00,1097.00,,,,,,\n2015,5,22,\"B6\",\"813\",\"HPN\",\"FLL\",9.00,12.00,0.00,\"\",0.00,183.00,148.00,1097.00,,,,,,\n2015,5,23,\"B6\",\"813\",\"HPN\",\"FLL\",9.00,-13.00,0.00,\"\",0.00,158.00,142.00,1097.00,,,,,,\n2015,5,24,\"B6\",\"813\",\"HPN\",\"FLL\",-6.00,-24.00,0.00,\"\",0.00,162.00,138.00,1097.00,,,,,,\n2015,5,25,\"B6\",\"813\",\"HPN\",\"FLL\",-4.00,-8.00,0.00,\"\",0.00,176.00,148.00,1097.00,,,,,,\n2015,5,26,\"B6\",\"813\",\"HPN\",\"FLL\",22.00,5.00,0.00,\"\",0.00,163.00,146.00,1097.00,,,,,,\n2015,5,27,\"B6\",\"813\",\"HPN\",\"FLL\",0.00,12.00,0.00,\"\",0.00,192.00,161.00,1097.00,,,,,,\n2015,5,28,\"B6\",\"813\",\"HPN\",\"FLL\",108.00,103.00,0.00,\"\",0.00,175.00,150.00,1097.00,13.00,0.00,0.00,0.00,90.00,\n2015,5,29,\"B6\",\"813\",\"HPN\",\"FLL\",-2.00,-21.00,0.00,\"\",0.00,161.00,140.00,1097.00,,,,,,\n2015,5,30,\"B6\",\"813\",\"HPN\",\"FLL\",-4.00,-27.00,0.00,\"\",0.00,157.00,140.00,1097.00,,,,,,\n2015,5,31,\"B6\",\"813\",\"HPN\",\"FLL\",115.00,111.00,0.00,\"\",0.00,176.00,145.00,1097.00,17.00,0.00,0.00,0.00,94.00,\n2015,5,1,\"B6\",\"814\",\"FLL\",\"HPN\",-2.00,-19.00,0.00,\"\",0.00,163.00,138.00,1097.00,,,,,,\n2015,5,2,\"B6\",\"814\",\"FLL\",\"HPN\",-11.00,-37.00,0.00,\"\",0.00,154.00,141.00,1097.00,,,,,,\n2015,5,3,\"B6\",\"814\",\"FLL\",\"HPN\",168.00,148.00,0.00,\"\",0.00,160.00,144.00,1097.00,148.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"814\",\"FLL\",\"HPN\",-8.00,-17.00,0.00,\"\",0.00,171.00,155.00,1097.00,,,,,,\n2015,5,5,\"B6\",\"814\",\"FLL\",\"HPN\",-11.00,-31.00,0.00,\"\",0.00,160.00,142.00,1097.00,,,,,,\n2015,5,6,\"B6\",\"814\",\"FLL\",\"HPN\",14.00,-1.00,0.00,\"\",0.00,165.00,142.00,1097.00,,,,,,\n2015,5,7,\"B6\",\"814\",\"FLL\",\"HPN\",78.00,64.00,0.00,\"\",0.00,166.00,151.00,1097.00,38.00,0.00,0.00,0.00,26.00,\n2015,5,8,\"B6\",\"814\",\"FLL\",\"HPN\",-3.00,-12.00,0.00,\"\",0.00,171.00,154.00,1097.00,,,,,,\n2015,5,9,\"B6\",\"814\",\"FLL\",\"HPN\",0.00,1.00,0.00,\"\",0.00,181.00,165.00,1097.00,,,,,,\n2015,5,10,\"B6\",\"814\",\"FLL\",\"HPN\",55.00,54.00,0.00,\"\",0.00,179.00,159.00,1097.00,54.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"B6\",\"814\",\"FLL\",\"HPN\",19.00,9.00,0.00,\"\",0.00,170.00,156.00,1097.00,,,,,,\n2015,5,12,\"B6\",\"814\",\"FLL\",\"HPN\",-5.00,-20.00,0.00,\"\",0.00,165.00,148.00,1097.00,,,,,,\n2015,5,13,\"B6\",\"814\",\"FLL\",\"HPN\",-1.00,-2.00,0.00,\"\",0.00,179.00,159.00,1097.00,,,,,,\n2015,5,14,\"B6\",\"814\",\"FLL\",\"HPN\",-4.00,-14.00,0.00,\"\",0.00,170.00,154.00,1097.00,,,,,,\n2015,5,15,\"B6\",\"814\",\"FLL\",\"HPN\",0.00,-16.00,0.00,\"\",0.00,164.00,150.00,1097.00,,,,,,\n2015,5,16,\"B6\",\"814\",\"FLL\",\"HPN\",-6.00,-15.00,0.00,\"\",0.00,171.00,154.00,1097.00,,,,,,\n2015,5,17,\"B6\",\"814\",\"FLL\",\"HPN\",35.00,21.00,0.00,\"\",0.00,166.00,151.00,1097.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"814\",\"FLL\",\"HPN\",-5.00,-3.00,0.00,\"\",0.00,182.00,162.00,1097.00,,,,,,\n2015,5,19,\"B6\",\"814\",\"FLL\",\"HPN\",0.00,-16.00,0.00,\"\",0.00,164.00,149.00,1097.00,,,,,,\n2015,5,20,\"B6\",\"814\",\"FLL\",\"HPN\",-1.00,-19.00,0.00,\"\",0.00,162.00,145.00,1097.00,,,,,,\n2015,5,21,\"B6\",\"814\",\"FLL\",\"HPN\",29.00,22.00,0.00,\"\",0.00,173.00,149.00,1097.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"B6\",\"814\",\"FLL\",\"HPN\",-5.00,-14.00,0.00,\"\",0.00,171.00,147.00,1097.00,,,,,,\n2015,5,23,\"B6\",\"814\",\"FLL\",\"HPN\",-10.00,-16.00,0.00,\"\",0.00,174.00,154.00,1097.00,,,,,,\n2015,5,24,\"B6\",\"814\",\"FLL\",\"HPN\",-10.00,-18.00,0.00,\"\",0.00,172.00,153.00,1097.00,,,,,,\n2015,5,25,\"B6\",\"814\",\"FLL\",\"HPN\",-3.00,-21.00,0.00,\"\",0.00,162.00,147.00,1097.00,,,,,,\n2015,5,26,\"B6\",\"814\",\"FLL\",\"HPN\",-6.00,-19.00,0.00,\"\",0.00,167.00,149.00,1097.00,,,,,,\n2015,5,27,\"B6\",\"814\",\"FLL\",\"HPN\",9.00,23.00,0.00,\"\",0.00,194.00,162.00,1097.00,2.00,0.00,14.00,0.00,7.00,\n2015,5,28,\"B6\",\"814\",\"FLL\",\"HPN\",-7.00,-13.00,0.00,\"\",0.00,174.00,150.00,1097.00,,,,,,\n2015,5,29,\"B6\",\"814\",\"FLL\",\"HPN\",-6.00,-16.00,0.00,\"\",0.00,170.00,151.00,1097.00,,,,,,\n2015,5,30,\"B6\",\"814\",\"FLL\",\"HPN\",0.00,-18.00,0.00,\"\",0.00,162.00,147.00,1097.00,,,,,,\n2015,5,31,\"B6\",\"814\",\"FLL\",\"HPN\",-5.00,-21.00,0.00,\"\",0.00,164.00,150.00,1097.00,,,,,,\n2015,5,1,\"B6\",\"816\",\"BUF\",\"BOS\",-5.00,-8.00,0.00,\"\",0.00,79.00,62.00,395.00,,,,,,\n2015,5,2,\"B6\",\"816\",\"BUF\",\"BOS\",-10.00,-15.00,0.00,\"\",0.00,77.00,66.00,395.00,,,,,,\n2015,5,3,\"B6\",\"816\",\"BUF\",\"BOS\",10.00,0.00,0.00,\"\",0.00,72.00,58.00,395.00,,,,,,\n2015,5,4,\"B6\",\"816\",\"BUF\",\"BOS\",-8.00,-21.00,0.00,\"\",0.00,69.00,54.00,395.00,,,,,,\n2015,5,5,\"B6\",\"816\",\"BUF\",\"BOS\",-6.00,-20.00,0.00,\"\",0.00,68.00,54.00,395.00,,,,,,\n2015,5,6,\"B6\",\"816\",\"BUF\",\"BOS\",-3.00,-15.00,0.00,\"\",0.00,70.00,57.00,395.00,,,,,,\n2015,5,7,\"B6\",\"816\",\"BUF\",\"BOS\",-10.00,-10.00,0.00,\"\",0.00,82.00,68.00,395.00,,,,,,\n2015,5,8,\"B6\",\"816\",\"BUF\",\"BOS\",-1.00,-7.00,0.00,\"\",0.00,76.00,60.00,395.00,,,,,,\n2015,5,9,\"B6\",\"816\",\"BUF\",\"BOS\",-10.00,-22.00,0.00,\"\",0.00,70.00,56.00,395.00,,,,,,\n2015,5,10,\"B6\",\"816\",\"BUF\",\"BOS\",-10.00,-22.00,0.00,\"\",0.00,70.00,58.00,395.00,,,,,,\n2015,5,11,\"B6\",\"816\",\"BUF\",\"BOS\",-8.00,-12.00,0.00,\"\",0.00,78.00,63.00,395.00,,,,,,\n2015,5,12,\"B6\",\"816\",\"BUF\",\"BOS\",-2.00,-8.00,0.00,\"\",0.00,76.00,58.00,395.00,,,,,,\n2015,5,13,\"B6\",\"816\",\"BUF\",\"BOS\",0.00,-13.00,0.00,\"\",0.00,69.00,56.00,395.00,,,,,,\n2015,5,14,\"B6\",\"816\",\"BUF\",\"BOS\",-13.00,-18.00,0.00,\"\",0.00,77.00,61.00,395.00,,,,,,\n2015,5,15,\"B6\",\"816\",\"BUF\",\"BOS\",-4.00,-13.00,0.00,\"\",0.00,73.00,58.00,395.00,,,,,,\n2015,5,16,\"B6\",\"816\",\"BUF\",\"BOS\",0.00,-7.00,0.00,\"\",0.00,75.00,57.00,395.00,,,,,,\n2015,5,17,\"B6\",\"816\",\"BUF\",\"BOS\",-4.00,-8.00,0.00,\"\",0.00,78.00,63.00,395.00,,,,,,\n2015,5,18,\"B6\",\"816\",\"BUF\",\"BOS\",-10.00,-11.00,0.00,\"\",0.00,81.00,62.00,395.00,,,,,,\n2015,5,19,\"B6\",\"816\",\"BUF\",\"BOS\",-7.00,-19.00,0.00,\"\",0.00,70.00,57.00,395.00,,,,,,\n2015,5,20,\"B6\",\"816\",\"BUF\",\"BOS\",-9.00,-13.00,0.00,\"\",0.00,78.00,58.00,395.00,,,,,,\n2015,5,21,\"B6\",\"816\",\"BUF\",\"BOS\",-13.00,-26.00,0.00,\"\",0.00,69.00,56.00,395.00,,,,,,\n2015,5,22,\"B6\",\"816\",\"BUF\",\"BOS\",-7.00,-21.00,0.00,\"\",0.00,68.00,54.00,395.00,,,,,,\n2015,5,23,\"B6\",\"816\",\"BUF\",\"BOS\",-9.00,-12.00,0.00,\"\",0.00,79.00,61.00,395.00,,,,,,\n2015,5,24,\"B6\",\"816\",\"BUF\",\"BOS\",-10.00,-30.00,0.00,\"\",0.00,62.00,51.00,395.00,,,,,,\n2015,5,25,\"B6\",\"816\",\"BUF\",\"BOS\",-9.00,-26.00,0.00,\"\",0.00,65.00,54.00,395.00,,,,,,\n2015,5,26,\"B6\",\"816\",\"BUF\",\"BOS\",-12.00,-26.00,0.00,\"\",0.00,68.00,55.00,395.00,,,,,,\n2015,5,27,\"B6\",\"816\",\"BUF\",\"BOS\",-10.00,-27.00,0.00,\"\",0.00,65.00,55.00,395.00,,,,,,\n2015,5,28,\"B6\",\"816\",\"BUF\",\"BOS\",-10.00,-15.00,0.00,\"\",0.00,77.00,57.00,395.00,,,,,,\n2015,5,29,\"B6\",\"816\",\"BUF\",\"BOS\",-9.00,-19.00,0.00,\"\",0.00,72.00,59.00,395.00,,,,,,\n2015,5,30,\"B6\",\"816\",\"BUF\",\"BOS\",-8.00,-19.00,0.00,\"\",0.00,71.00,57.00,395.00,,,,,,\n2015,5,31,\"B6\",\"816\",\"BUF\",\"BOS\",-10.00,-22.00,0.00,\"\",0.00,70.00,56.00,395.00,,,,,,\n2015,5,2,\"B6\",\"817\",\"BOS\",\"JFK\",-1.00,-7.00,0.00,\"\",0.00,70.00,46.00,187.00,,,,,,\n2015,5,8,\"B6\",\"817\",\"BOS\",\"JFK\",57.00,59.00,0.00,\"\",0.00,78.00,49.00,187.00,0.00,0.00,44.00,0.00,15.00,\n2015,5,9,\"B6\",\"817\",\"BOS\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,62.00,48.00,187.00,,,,,,\n2015,5,15,\"B6\",\"817\",\"BOS\",\"JFK\",16.00,-3.00,0.00,\"\",0.00,57.00,40.00,187.00,,,,,,\n2015,5,16,\"B6\",\"817\",\"BOS\",\"JFK\",2.00,-9.00,0.00,\"\",0.00,65.00,41.00,187.00,,,,,,\n2015,5,22,\"B6\",\"817\",\"BOS\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,69.00,40.00,187.00,,,,,,\n2015,5,23,\"B6\",\"817\",\"BOS\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,58.00,39.00,187.00,,,,,,\n2015,5,30,\"B6\",\"817\",\"BOS\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,72.00,52.00,187.00,,,,,,\n2015,5,1,\"B6\",\"838\",\"BQN\",\"JFK\",-9.00,-19.00,0.00,\"\",0.00,219.00,199.00,1576.00,,,,,,\n2015,5,2,\"B6\",\"838\",\"BQN\",\"JFK\",28.00,8.00,0.00,\"\",0.00,209.00,194.00,1576.00,,,,,,\n2015,5,3,\"B6\",\"838\",\"BQN\",\"JFK\",-5.00,-28.00,0.00,\"\",0.00,206.00,192.00,1576.00,,,,,,\n2015,5,4,\"B6\",\"838\",\"BQN\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,213.00,190.00,1576.00,,,,,,\n2015,5,5,\"B6\",\"838\",\"BQN\",\"JFK\",0.00,-22.00,0.00,\"\",0.00,207.00,190.00,1576.00,,,,,,\n2015,5,6,\"B6\",\"838\",\"BQN\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,218.00,198.00,1576.00,,,,,,\n2015,5,7,\"B6\",\"838\",\"BQN\",\"JFK\",-9.00,-6.00,0.00,\"\",0.00,232.00,201.00,1576.00,,,,,,\n2015,5,8,\"B6\",\"838\",\"BQN\",\"JFK\",56.00,44.00,0.00,\"\",0.00,217.00,194.00,1576.00,0.00,0.00,0.00,0.00,44.00,\n2015,5,9,\"B6\",\"838\",\"BQN\",\"JFK\",11.00,-4.00,0.00,\"\",0.00,214.00,198.00,1576.00,,,,,,\n2015,5,10,\"B6\",\"838\",\"BQN\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,217.00,195.00,1576.00,,,,,,\n2015,5,11,\"B6\",\"838\",\"BQN\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,217.00,195.00,1576.00,,,,,,\n2015,5,12,\"B6\",\"838\",\"BQN\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,225.00,207.00,1576.00,,,,,,\n2015,5,13,\"B6\",\"838\",\"BQN\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,219.00,205.00,1576.00,,,,,,\n2015,5,14,\"B6\",\"838\",\"BQN\",\"JFK\",-12.00,2.00,0.00,\"\",0.00,243.00,225.00,1576.00,,,,,,\n2015,5,15,\"B6\",\"838\",\"BQN\",\"JFK\",68.00,62.00,0.00,\"\",0.00,223.00,207.00,1576.00,0.00,0.00,0.00,0.00,62.00,\n2015,5,16,\"B6\",\"838\",\"BQN\",\"JFK\",-11.00,-3.00,0.00,\"\",0.00,237.00,211.00,1576.00,,,,,,\n2015,5,17,\"B6\",\"838\",\"BQN\",\"JFK\",-5.00,1.00,0.00,\"\",0.00,235.00,211.00,1576.00,,,,,,\n2015,5,18,\"B6\",\"838\",\"BQN\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,221.00,205.00,1576.00,,,,,,\n2015,5,19,\"B6\",\"838\",\"BQN\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,217.00,197.00,1576.00,,,,,,\n2015,5,20,\"B6\",\"838\",\"BQN\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,216.00,197.00,1576.00,,,,,,\n2015,5,21,\"B6\",\"838\",\"BQN\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,215.00,200.00,1576.00,,,,,,\n2015,5,22,\"B6\",\"838\",\"BQN\",\"JFK\",-10.00,-28.00,0.00,\"\",0.00,211.00,199.00,1576.00,,,,,,\n2015,5,23,\"B6\",\"838\",\"BQN\",\"JFK\",-2.00,-2.00,0.00,\"\",0.00,229.00,208.00,1576.00,,,,,,\n2015,5,24,\"B6\",\"838\",\"BQN\",\"JFK\",-4.00,-1.00,0.00,\"\",0.00,232.00,216.00,1576.00,,,,,,\n2015,5,25,\"B6\",\"838\",\"BQN\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,216.00,204.00,1576.00,,,,,,\n2015,5,26,\"B6\",\"838\",\"BQN\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,216.00,202.00,1576.00,,,,,,\n2015,5,27,\"B6\",\"838\",\"BQN\",\"JFK\",-11.00,-25.00,0.00,\"\",0.00,215.00,201.00,1576.00,,,,,,\n2015,5,28,\"B6\",\"838\",\"BQN\",\"JFK\",18.00,6.00,0.00,\"\",0.00,217.00,200.00,1576.00,,,,,,\n2015,5,29,\"B6\",\"838\",\"BQN\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,215.00,204.00,1576.00,,,,,,\n2015,5,30,\"B6\",\"838\",\"BQN\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,219.00,206.00,1576.00,,,,,,\n2015,5,31,\"B6\",\"838\",\"BQN\",\"JFK\",-11.00,-25.00,0.00,\"\",0.00,215.00,198.00,1576.00,,,,,,\n2015,5,1,\"B6\",\"839\",\"JFK\",\"BQN\",1.00,19.00,0.00,\"\",0.00,242.00,204.00,1576.00,1.00,0.00,18.00,0.00,0.00,\n2015,5,2,\"B6\",\"839\",\"JFK\",\"BQN\",-9.00,4.00,0.00,\"\",0.00,237.00,211.00,1576.00,,,,,,\n2015,5,3,\"B6\",\"839\",\"JFK\",\"BQN\",-3.00,1.00,0.00,\"\",0.00,228.00,202.00,1576.00,,,,,,\n2015,5,4,\"B6\",\"839\",\"JFK\",\"BQN\",2.00,12.00,0.00,\"\",0.00,234.00,201.00,1576.00,,,,,,\n2015,5,5,\"B6\",\"839\",\"JFK\",\"BQN\",-1.00,2.00,0.00,\"\",0.00,227.00,203.00,1576.00,,,,,,\n2015,5,6,\"B6\",\"839\",\"JFK\",\"BQN\",-10.00,-12.00,0.00,\"\",0.00,222.00,202.00,1576.00,,,,,,\n2015,5,7,\"B6\",\"839\",\"JFK\",\"BQN\",84.00,85.00,0.00,\"\",0.00,225.00,205.00,1576.00,0.00,84.00,1.00,0.00,0.00,\n2015,5,8,\"B6\",\"839\",\"JFK\",\"BQN\",13.00,11.00,0.00,\"\",0.00,222.00,196.00,1576.00,,,,,,\n2015,5,9,\"B6\",\"839\",\"JFK\",\"BQN\",-2.00,6.00,0.00,\"\",0.00,232.00,200.00,1576.00,,,,,,\n2015,5,10,\"B6\",\"839\",\"JFK\",\"BQN\",14.00,18.00,0.00,\"\",0.00,228.00,201.00,1576.00,14.00,0.00,4.00,0.00,0.00,\n2015,5,11,\"B6\",\"839\",\"JFK\",\"BQN\",18.00,6.00,0.00,\"\",0.00,212.00,195.00,1576.00,,,,,,\n2015,5,12,\"B6\",\"839\",\"JFK\",\"BQN\",-10.00,-15.00,0.00,\"\",0.00,219.00,191.00,1576.00,,,,,,\n2015,5,13,\"B6\",\"839\",\"JFK\",\"BQN\",-3.00,-16.00,0.00,\"\",0.00,211.00,189.00,1576.00,,,,,,\n2015,5,14,\"B6\",\"839\",\"JFK\",\"BQN\",118.00,99.00,0.00,\"\",0.00,205.00,181.00,1576.00,0.00,99.00,0.00,0.00,0.00,\n2015,5,15,\"B6\",\"839\",\"JFK\",\"BQN\",5.00,-5.00,0.00,\"\",0.00,214.00,187.00,1576.00,,,,,,\n2015,5,16,\"B6\",\"839\",\"JFK\",\"BQN\",30.00,14.00,0.00,\"\",0.00,208.00,187.00,1576.00,,,,,,\n2015,5,17,\"B6\",\"839\",\"JFK\",\"BQN\",5.00,-9.00,0.00,\"\",0.00,210.00,187.00,1576.00,,,,,,\n2015,5,18,\"B6\",\"839\",\"JFK\",\"BQN\",-1.00,7.00,0.00,\"\",0.00,232.00,188.00,1576.00,,,,,,\n2015,5,19,\"B6\",\"839\",\"JFK\",\"BQN\",-7.00,-15.00,0.00,\"\",0.00,216.00,196.00,1576.00,,,,,,\n2015,5,20,\"B6\",\"839\",\"JFK\",\"BQN\",-7.00,-21.00,0.00,\"\",0.00,210.00,193.00,1576.00,,,,,,\n2015,5,21,\"B6\",\"839\",\"JFK\",\"BQN\",-4.00,-16.00,0.00,\"\",0.00,212.00,196.00,1576.00,,,,,,\n2015,5,22,\"B6\",\"839\",\"JFK\",\"BQN\",44.00,31.00,0.00,\"\",0.00,211.00,191.00,1576.00,5.00,0.00,0.00,0.00,26.00,\n2015,5,23,\"B6\",\"839\",\"JFK\",\"BQN\",-3.00,-22.00,0.00,\"\",0.00,205.00,184.00,1576.00,,,,,,\n2015,5,24,\"B6\",\"839\",\"JFK\",\"BQN\",-4.00,-26.00,0.00,\"\",0.00,202.00,182.00,1576.00,,,,,,\n2015,5,25,\"B6\",\"839\",\"JFK\",\"BQN\",-5.00,-24.00,0.00,\"\",0.00,205.00,183.00,1576.00,,,,,,\n2015,5,26,\"B6\",\"839\",\"JFK\",\"BQN\",0.00,-19.00,0.00,\"\",0.00,205.00,185.00,1576.00,,,,,,\n2015,5,27,\"B6\",\"839\",\"JFK\",\"BQN\",12.00,5.00,0.00,\"\",0.00,217.00,186.00,1576.00,,,,,,\n2015,5,28,\"B6\",\"839\",\"JFK\",\"BQN\",0.00,-26.00,0.00,\"\",0.00,198.00,185.00,1576.00,,,,,,\n2015,5,29,\"B6\",\"839\",\"JFK\",\"BQN\",-2.00,-13.00,0.00,\"\",0.00,213.00,192.00,1576.00,,,,,,\n2015,5,30,\"B6\",\"839\",\"JFK\",\"BQN\",-3.00,-8.00,0.00,\"\",0.00,219.00,193.00,1576.00,,,,,,\n2015,5,31,\"B6\",\"839\",\"JFK\",\"BQN\",168.00,161.00,0.00,\"\",0.00,217.00,189.00,1576.00,2.00,0.00,0.00,0.00,159.00,\n2015,5,1,\"B6\",\"841\",\"JFK\",\"SAV\",-3.00,-11.00,0.00,\"\",0.00,131.00,104.00,718.00,,,,,,\n2015,5,2,\"B6\",\"841\",\"JFK\",\"SAV\",-7.00,-19.00,0.00,\"\",0.00,127.00,96.00,718.00,,,,,,\n2015,5,3,\"B6\",\"841\",\"JFK\",\"SAV\",-4.00,-19.00,0.00,\"\",0.00,124.00,97.00,718.00,,,,,,\n2015,5,4,\"B6\",\"841\",\"JFK\",\"SAV\",-3.00,-16.00,0.00,\"\",0.00,126.00,99.00,718.00,,,,,,\n2015,5,5,\"B6\",\"841\",\"JFK\",\"SAV\",-2.00,-12.00,0.00,\"\",0.00,129.00,99.00,718.00,,,,,,\n2015,5,6,\"B6\",\"841\",\"JFK\",\"SAV\",-7.00,-28.00,0.00,\"\",0.00,118.00,101.00,718.00,,,,,,\n2015,5,7,\"B6\",\"841\",\"JFK\",\"SAV\",-4.00,-23.00,0.00,\"\",0.00,118.00,92.00,718.00,,,,,,\n2015,5,8,\"B6\",\"841\",\"JFK\",\"SAV\",82.00,69.00,0.00,\"\",0.00,124.00,94.00,718.00,0.00,10.00,0.00,0.00,59.00,\n2015,5,9,\"B6\",\"841\",\"JFK\",\"SAV\",6.00,-13.00,0.00,\"\",0.00,118.00,97.00,718.00,,,,,,\n2015,5,10,\"B6\",\"841\",\"JFK\",\"SAV\",-4.00,-19.00,0.00,\"\",0.00,122.00,96.00,718.00,,,,,,\n2015,5,11,\"B6\",\"841\",\"JFK\",\"SAV\",16.00,6.00,0.00,\"\",0.00,127.00,102.00,718.00,,,,,,\n2015,5,12,\"B6\",\"841\",\"JFK\",\"SAV\",-6.00,-4.00,0.00,\"\",0.00,139.00,99.00,718.00,,,,,,\n2015,5,13,\"B6\",\"841\",\"JFK\",\"SAV\",-3.00,-5.00,0.00,\"\",0.00,135.00,105.00,718.00,,,,,,\n2015,5,14,\"B6\",\"841\",\"JFK\",\"SAV\",-3.00,-14.00,0.00,\"\",0.00,126.00,104.00,718.00,,,,,,\n2015,5,15,\"B6\",\"841\",\"JFK\",\"SAV\",8.00,8.00,0.00,\"\",0.00,137.00,104.00,718.00,,,,,,\n2015,5,16,\"B6\",\"841\",\"JFK\",\"SAV\",17.00,7.00,0.00,\"\",0.00,127.00,99.00,718.00,,,,,,\n2015,5,17,\"B6\",\"841\",\"JFK\",\"SAV\",-4.00,-13.00,0.00,\"\",0.00,128.00,95.00,718.00,,,,,,\n2015,5,18,\"B6\",\"841\",\"JFK\",\"SAV\",-9.00,-34.00,0.00,\"\",0.00,112.00,93.00,718.00,,,,,,\n2015,5,19,\"B6\",\"841\",\"JFK\",\"SAV\",-7.00,-14.00,0.00,\"\",0.00,130.00,99.00,718.00,,,,,,\n2015,5,20,\"B6\",\"841\",\"JFK\",\"SAV\",-9.00,-24.00,0.00,\"\",0.00,122.00,100.00,718.00,,,,,,\n2015,5,21,\"B6\",\"841\",\"JFK\",\"SAV\",-4.00,-15.00,0.00,\"\",0.00,126.00,104.00,718.00,,,,,,\n2015,5,22,\"B6\",\"841\",\"JFK\",\"SAV\",-5.00,-15.00,0.00,\"\",0.00,127.00,108.00,718.00,,,,,,\n2015,5,23,\"B6\",\"841\",\"JFK\",\"SAV\",43.00,41.00,0.00,\"\",0.00,135.00,105.00,718.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"B6\",\"841\",\"JFK\",\"SAV\",-5.00,-27.00,0.00,\"\",0.00,115.00,96.00,718.00,,,,,,\n2015,5,25,\"B6\",\"841\",\"JFK\",\"SAV\",-8.00,-12.00,0.00,\"\",0.00,133.00,102.00,718.00,,,,,,\n2015,5,26,\"B6\",\"841\",\"JFK\",\"SAV\",-9.00,-11.00,0.00,\"\",0.00,135.00,101.00,718.00,,,,,,\n2015,5,27,\"B6\",\"841\",\"JFK\",\"SAV\",2.00,-10.00,0.00,\"\",0.00,125.00,101.00,718.00,,,,,,\n2015,5,28,\"B6\",\"841\",\"JFK\",\"SAV\",-7.00,-12.00,0.00,\"\",0.00,132.00,102.00,718.00,,,,,,\n2015,5,29,\"B6\",\"841\",\"JFK\",\"SAV\",-7.00,-10.00,0.00,\"\",0.00,134.00,95.00,718.00,,,,,,\n2015,5,30,\"B6\",\"841\",\"JFK\",\"SAV\",-7.00,-21.00,0.00,\"\",0.00,123.00,100.00,718.00,,,,,,\n2015,5,31,\"B6\",\"841\",\"JFK\",\"SAV\",-2.00,-21.00,0.00,\"\",0.00,118.00,98.00,718.00,,,,,,\n2015,5,1,\"B6\",\"842\",\"SAV\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,119.00,92.00,718.00,,,,,,\n2015,5,2,\"B6\",\"842\",\"SAV\",\"JFK\",1.00,-11.00,0.00,\"\",0.00,120.00,96.00,718.00,,,,,,\n2015,5,3,\"B6\",\"842\",\"SAV\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,115.00,102.00,718.00,,,,,,\n2015,5,4,\"B6\",\"842\",\"SAV\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,113.00,98.00,718.00,,,,,,\n2015,5,5,\"B6\",\"842\",\"SAV\",\"JFK\",2.00,-10.00,0.00,\"\",0.00,120.00,98.00,718.00,,,,,,\n2015,5,6,\"B6\",\"842\",\"SAV\",\"JFK\",-8.00,-29.00,0.00,\"\",0.00,111.00,89.00,718.00,,,,,,\n2015,5,7,\"B6\",\"842\",\"SAV\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,117.00,100.00,718.00,,,,,,\n2015,5,8,\"B6\",\"842\",\"SAV\",\"JFK\",63.00,66.00,0.00,\"\",0.00,134.00,102.00,718.00,0.00,0.00,3.00,0.00,63.00,\n2015,5,9,\"B6\",\"842\",\"SAV\",\"JFK\",9.00,-5.00,0.00,\"\",0.00,117.00,100.00,718.00,,,,,,\n2015,5,10,\"B6\",\"842\",\"SAV\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,124.00,98.00,718.00,,,,,,\n2015,5,11,\"B6\",\"842\",\"SAV\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,123.00,95.00,718.00,,,,,,\n2015,5,12,\"B6\",\"842\",\"SAV\",\"JFK\",-5.00,11.00,0.00,\"\",0.00,147.00,102.00,718.00,,,,,,\n2015,5,13,\"B6\",\"842\",\"SAV\",\"JFK\",264.00,249.00,0.00,\"\",0.00,116.00,95.00,718.00,249.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"B6\",\"842\",\"SAV\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,124.00,98.00,718.00,,,,,,\n2015,5,15,\"B6\",\"842\",\"SAV\",\"JFK\",6.00,-13.00,0.00,\"\",0.00,112.00,98.00,718.00,,,,,,\n2015,5,16,\"B6\",\"842\",\"SAV\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,115.00,99.00,718.00,,,,,,\n2015,5,17,\"B6\",\"842\",\"SAV\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,125.00,99.00,718.00,,,,,,\n2015,5,18,\"B6\",\"842\",\"SAV\",\"JFK\",-1.00,16.00,0.00,\"\",0.00,148.00,125.00,718.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,19,\"B6\",\"842\",\"SAV\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,119.00,98.00,718.00,,,,,,\n2015,5,20,\"B6\",\"842\",\"SAV\",\"JFK\",9.00,1.00,0.00,\"\",0.00,123.00,103.00,718.00,,,,,,\n2015,5,21,\"B6\",\"842\",\"SAV\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,120.00,92.00,718.00,,,,,,\n2015,5,22,\"B6\",\"842\",\"SAV\",\"JFK\",-8.00,38.00,0.00,\"\",0.00,177.00,89.00,718.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,23,\"B6\",\"842\",\"SAV\",\"JFK\",45.00,22.00,0.00,\"\",0.00,108.00,92.00,718.00,4.00,0.00,0.00,0.00,18.00,\n2015,5,24,\"B6\",\"842\",\"SAV\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,113.00,101.00,718.00,,,,,,\n2015,5,25,\"B6\",\"842\",\"SAV\",\"JFK\",-10.00,-15.00,0.00,\"\",0.00,126.00,105.00,718.00,,,,,,\n2015,5,26,\"B6\",\"842\",\"SAV\",\"JFK\",-10.00,-28.00,0.00,\"\",0.00,113.00,95.00,718.00,,,,,,\n2015,5,27,\"B6\",\"842\",\"SAV\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,109.00,95.00,718.00,,,,,,\n2015,5,28,\"B6\",\"842\",\"SAV\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,120.00,100.00,718.00,,,,,,\n2015,5,29,\"B6\",\"842\",\"SAV\",\"JFK\",13.00,7.00,0.00,\"\",0.00,125.00,102.00,718.00,,,,,,\n2015,5,30,\"B6\",\"842\",\"SAV\",\"JFK\",4.00,-7.00,0.00,\"\",0.00,120.00,100.00,718.00,,,,,,\n2015,5,31,\"B6\",\"842\",\"SAV\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,120.00,98.00,718.00,,,,,,\n2015,5,1,\"B6\",\"846\",\"MCO\",\"SWF\",13.00,-2.00,0.00,\"\",0.00,154.00,130.00,989.00,,,,,,\n2015,5,2,\"B6\",\"846\",\"MCO\",\"SWF\",101.00,88.00,0.00,\"\",0.00,156.00,137.00,989.00,88.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"B6\",\"846\",\"MCO\",\"SWF\",-6.00,-9.00,0.00,\"\",0.00,166.00,142.00,989.00,,,,,,\n2015,5,4,\"B6\",\"846\",\"MCO\",\"SWF\",-9.00,-19.00,0.00,\"\",0.00,159.00,139.00,989.00,,,,,,\n2015,5,5,\"B6\",\"846\",\"MCO\",\"SWF\",5.00,-6.00,0.00,\"\",0.00,158.00,138.00,989.00,,,,,,\n2015,5,6,\"B6\",\"846\",\"MCO\",\"SWF\",1.00,-16.00,0.00,\"\",0.00,152.00,133.00,989.00,,,,,,\n2015,5,7,\"B6\",\"846\",\"MCO\",\"SWF\",-5.00,-14.00,0.00,\"\",0.00,160.00,140.00,989.00,,,,,,\n2015,5,8,\"B6\",\"846\",\"MCO\",\"SWF\",-7.00,-5.00,0.00,\"\",0.00,171.00,138.00,989.00,,,,,,\n2015,5,9,\"B6\",\"846\",\"MCO\",\"SWF\",-1.00,2.00,0.00,\"\",0.00,172.00,152.00,989.00,,,,,,\n2015,5,10,\"B6\",\"846\",\"MCO\",\"SWF\",-8.00,-13.00,0.00,\"\",0.00,164.00,141.00,989.00,,,,,,\n2015,5,11,\"B6\",\"846\",\"MCO\",\"SWF\",-2.00,-4.00,0.00,\"\",0.00,167.00,138.00,989.00,,,,,,\n2015,5,12,\"B6\",\"846\",\"MCO\",\"SWF\",62.00,43.00,0.00,\"\",0.00,150.00,136.00,989.00,43.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"B6\",\"846\",\"MCO\",\"SWF\",0.00,-14.00,0.00,\"\",0.00,155.00,140.00,989.00,,,,,,\n2015,5,14,\"B6\",\"846\",\"MCO\",\"SWF\",157.00,149.00,0.00,\"\",0.00,161.00,142.00,989.00,149.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"B6\",\"846\",\"MCO\",\"SWF\",-7.00,-11.00,0.00,\"\",0.00,165.00,141.00,989.00,,,,,,\n2015,5,16,\"B6\",\"846\",\"MCO\",\"SWF\",-3.00,-18.00,0.00,\"\",0.00,154.00,137.00,989.00,,,,,,\n2015,5,17,\"B6\",\"846\",\"MCO\",\"SWF\",-8.00,-21.00,0.00,\"\",0.00,156.00,141.00,989.00,,,,,,\n2015,5,18,\"B6\",\"846\",\"MCO\",\"SWF\",-2.00,-8.00,0.00,\"\",0.00,163.00,149.00,989.00,,,,,,\n2015,5,19,\"B6\",\"846\",\"MCO\",\"SWF\",-10.00,-27.00,0.00,\"\",0.00,152.00,135.00,989.00,,,,,,\n2015,5,20,\"B6\",\"846\",\"MCO\",\"SWF\",-4.00,0.00,0.00,\"\",0.00,173.00,142.00,989.00,,,,,,\n2015,5,21,\"B6\",\"846\",\"MCO\",\"SWF\",25.00,8.00,0.00,\"\",0.00,152.00,135.00,989.00,,,,,,\n2015,5,22,\"B6\",\"846\",\"MCO\",\"SWF\",-6.00,-26.00,0.00,\"\",0.00,149.00,132.00,989.00,,,,,,\n2015,5,23,\"B6\",\"846\",\"MCO\",\"SWF\",-10.00,-24.00,0.00,\"\",0.00,155.00,138.00,989.00,,,,,,\n2015,5,24,\"B6\",\"846\",\"MCO\",\"SWF\",-5.00,-16.00,0.00,\"\",0.00,158.00,143.00,989.00,,,,,,\n2015,5,25,\"B6\",\"846\",\"MCO\",\"SWF\",-5.00,-17.00,0.00,\"\",0.00,157.00,142.00,989.00,,,,,,\n2015,5,26,\"B6\",\"846\",\"MCO\",\"SWF\",24.00,12.00,0.00,\"\",0.00,157.00,138.00,989.00,,,,,,\n2015,5,27,\"B6\",\"846\",\"MCO\",\"SWF\",-5.00,-17.00,0.00,\"\",0.00,157.00,138.00,989.00,,,,,,\n2015,5,28,\"B6\",\"846\",\"MCO\",\"SWF\",-3.00,-17.00,0.00,\"\",0.00,155.00,139.00,989.00,,,,,,\n2015,5,29,\"B6\",\"846\",\"MCO\",\"SWF\",10.00,-1.00,0.00,\"\",0.00,158.00,140.00,989.00,,,,,,\n2015,5,30,\"B6\",\"846\",\"MCO\",\"SWF\",-4.00,-7.00,0.00,\"\",0.00,166.00,147.00,989.00,,,,,,\n2015,5,31,\"B6\",\"846\",\"MCO\",\"SWF\",-12.00,1.00,0.00,\"\",0.00,182.00,152.00,989.00,,,,,,\n2015,5,1,\"B6\",\"883\",\"JFK\",\"MCO\",-8.00,-38.00,0.00,\"\",0.00,158.00,127.00,944.00,,,,,,\n2015,5,2,\"B6\",\"883\",\"JFK\",\"MCO\",-6.00,-34.00,0.00,\"\",0.00,160.00,128.00,944.00,,,,,,\n2015,5,3,\"B6\",\"883\",\"JFK\",\"MCO\",-6.00,-34.00,0.00,\"\",0.00,159.00,128.00,944.00,,,,,,\n2015,5,4,\"B6\",\"883\",\"JFK\",\"MCO\",0.00,-23.00,0.00,\"\",0.00,164.00,132.00,944.00,,,,,,\n2015,5,5,\"B6\",\"883\",\"JFK\",\"MCO\",-4.00,-21.00,0.00,\"\",0.00,170.00,140.00,944.00,,,,,,\n2015,5,6,\"B6\",\"883\",\"JFK\",\"MCO\",-3.00,-33.00,0.00,\"\",0.00,158.00,129.00,944.00,,,,,,\n2015,5,7,\"B6\",\"883\",\"JFK\",\"MCO\",-8.00,-50.00,0.00,\"\",0.00,146.00,122.00,944.00,,,,,,\n2015,5,8,\"B6\",\"883\",\"JFK\",\"MCO\",-7.00,-30.00,0.00,\"\",0.00,164.00,120.00,944.00,,,,,,\n2015,5,9,\"B6\",\"883\",\"JFK\",\"MCO\",-6.00,-45.00,0.00,\"\",0.00,149.00,123.00,944.00,,,,,,\n2015,5,10,\"B6\",\"883\",\"JFK\",\"MCO\",-5.00,-30.00,0.00,\"\",0.00,162.00,126.00,944.00,,,,,,\n2015,5,11,\"B6\",\"883\",\"JFK\",\"MCO\",-5.00,-27.00,0.00,\"\",0.00,165.00,139.00,944.00,,,,,,\n2015,5,12,\"B6\",\"883\",\"JFK\",\"MCO\",-3.00,-35.00,0.00,\"\",0.00,155.00,134.00,944.00,,,,,,\n2015,5,13,\"B6\",\"883\",\"JFK\",\"MCO\",13.00,-31.00,0.00,\"\",0.00,144.00,120.00,944.00,,,,,,\n2015,5,14,\"B6\",\"883\",\"JFK\",\"MCO\",-6.00,-40.00,0.00,\"\",0.00,154.00,127.00,944.00,,,,,,\n2015,5,15,\"B6\",\"883\",\"JFK\",\"MCO\",-4.00,-35.00,0.00,\"\",0.00,156.00,118.00,944.00,,,,,,\n2015,5,16,\"B6\",\"883\",\"JFK\",\"MCO\",-5.00,-38.00,0.00,\"\",0.00,155.00,129.00,944.00,,,,,,\n2015,5,17,\"B6\",\"883\",\"JFK\",\"MCO\",-6.00,-35.00,0.00,\"\",0.00,158.00,119.00,944.00,,,,,,\n2015,5,18,\"B6\",\"883\",\"JFK\",\"MCO\",,,1.00,\"C\",0.00,,,944.00,,,,,,\n2015,5,19,\"B6\",\"883\",\"JFK\",\"MCO\",-3.00,7.00,0.00,\"\",0.00,197.00,143.00,944.00,,,,,,\n2015,5,20,\"B6\",\"883\",\"JFK\",\"MCO\",-5.00,-43.00,0.00,\"\",0.00,150.00,127.00,944.00,,,,,,\n2015,5,21,\"B6\",\"883\",\"JFK\",\"MCO\",7.00,2.00,0.00,\"\",0.00,182.00,139.00,944.00,,,,,,\n2015,5,22,\"B6\",\"883\",\"JFK\",\"MCO\",4.00,-18.00,0.00,\"\",0.00,165.00,131.00,944.00,,,,,,\n2015,5,23,\"B6\",\"883\",\"JFK\",\"MCO\",0.00,-32.00,0.00,\"\",0.00,156.00,126.00,944.00,,,,,,\n2015,5,24,\"B6\",\"883\",\"JFK\",\"MCO\",40.00,0.00,0.00,\"\",0.00,147.00,118.00,944.00,,,,,,\n2015,5,25,\"B6\",\"883\",\"JFK\",\"MCO\",1.00,-22.00,0.00,\"\",0.00,164.00,126.00,944.00,,,,,,\n2015,5,26,\"B6\",\"883\",\"JFK\",\"MCO\",-3.00,-40.00,0.00,\"\",0.00,150.00,121.00,944.00,,,,,,\n2015,5,27,\"B6\",\"883\",\"JFK\",\"MCO\",63.00,50.00,0.00,\"\",0.00,175.00,126.00,944.00,9.00,0.00,0.00,0.00,41.00,\n2015,5,28,\"B6\",\"883\",\"JFK\",\"MCO\",10.00,-20.00,0.00,\"\",0.00,158.00,126.00,944.00,,,,,,\n2015,5,29,\"B6\",\"883\",\"JFK\",\"MCO\",-5.00,-35.00,0.00,\"\",0.00,158.00,123.00,944.00,,,,,,\n2015,5,30,\"B6\",\"883\",\"JFK\",\"MCO\",-9.00,-37.00,0.00,\"\",0.00,160.00,121.00,944.00,,,,,,\n2015,5,31,\"B6\",\"883\",\"JFK\",\"MCO\",85.00,71.00,0.00,\"\",0.00,174.00,121.00,944.00,0.00,71.00,0.00,0.00,0.00,\n2015,5,1,\"B6\",\"885\",\"JFK\",\"RDU\",-5.00,-4.00,0.00,\"\",0.00,104.00,71.00,427.00,,,,,,\n2015,5,2,\"B6\",\"885\",\"JFK\",\"RDU\",-7.00,-13.00,0.00,\"\",0.00,97.00,70.00,427.00,,,,,,\n2015,5,3,\"B6\",\"885\",\"JFK\",\"RDU\",-6.00,-17.00,0.00,\"\",0.00,92.00,70.00,427.00,,,,,,\n2015,5,4,\"B6\",\"885\",\"JFK\",\"RDU\",0.00,-11.00,0.00,\"\",0.00,92.00,63.00,427.00,,,,,,\n2015,5,5,\"B6\",\"885\",\"JFK\",\"RDU\",-2.00,-8.00,0.00,\"\",0.00,97.00,64.00,427.00,,,,,,\n2015,5,6,\"B6\",\"885\",\"JFK\",\"RDU\",-10.00,-20.00,0.00,\"\",0.00,93.00,66.00,427.00,,,,,,\n2015,5,7,\"B6\",\"885\",\"JFK\",\"RDU\",-5.00,-15.00,0.00,\"\",0.00,93.00,66.00,427.00,,,,,,\n2015,5,8,\"B6\",\"885\",\"JFK\",\"RDU\",109.00,102.00,0.00,\"\",0.00,96.00,70.00,427.00,0.00,11.00,0.00,0.00,91.00,\n2015,5,9,\"B6\",\"885\",\"JFK\",\"RDU\",0.00,1.00,0.00,\"\",0.00,104.00,71.00,427.00,,,,,,\n2015,5,10,\"B6\",\"885\",\"JFK\",\"RDU\",-5.00,-19.00,0.00,\"\",0.00,89.00,70.00,427.00,,,,,,\n2015,5,11,\"B6\",\"885\",\"JFK\",\"RDU\",9.00,16.00,0.00,\"\",0.00,110.00,70.00,427.00,0.00,0.00,7.00,0.00,9.00,\n2015,5,12,\"B6\",\"885\",\"JFK\",\"RDU\",-4.00,-7.00,0.00,\"\",0.00,100.00,68.00,427.00,,,,,,\n2015,5,13,\"B6\",\"885\",\"JFK\",\"RDU\",-10.00,-18.00,0.00,\"\",0.00,95.00,75.00,427.00,,,,,,\n2015,5,14,\"B6\",\"885\",\"JFK\",\"RDU\",22.00,21.00,0.00,\"\",0.00,102.00,68.00,427.00,3.00,0.00,0.00,0.00,18.00,\n2015,5,15,\"B6\",\"885\",\"JFK\",\"RDU\",-5.00,14.00,0.00,\"\",0.00,122.00,73.00,427.00,,,,,,\n2015,5,16,\"B6\",\"885\",\"JFK\",\"RDU\",7.00,-10.00,0.00,\"\",0.00,86.00,65.00,427.00,,,,,,\n2015,5,17,\"B6\",\"885\",\"JFK\",\"RDU\",-3.00,-4.00,0.00,\"\",0.00,102.00,64.00,427.00,,,,,,\n2015,5,18,\"B6\",\"885\",\"JFK\",\"RDU\",3.00,-11.00,0.00,\"\",0.00,89.00,63.00,427.00,,,,,,\n2015,5,19,\"B6\",\"885\",\"JFK\",\"RDU\",-6.00,-10.00,0.00,\"\",0.00,99.00,64.00,427.00,,,,,,\n2015,5,20,\"B6\",\"885\",\"JFK\",\"RDU\",-5.00,-14.00,0.00,\"\",0.00,94.00,69.00,427.00,,,,,,\n2015,5,21,\"B6\",\"885\",\"JFK\",\"RDU\",-3.00,-15.00,0.00,\"\",0.00,91.00,77.00,427.00,,,,,,\n2015,5,22,\"B6\",\"885\",\"JFK\",\"RDU\",-7.00,-10.00,0.00,\"\",0.00,100.00,79.00,427.00,,,,,,\n2015,5,23,\"B6\",\"885\",\"JFK\",\"RDU\",-4.00,-18.00,0.00,\"\",0.00,93.00,73.00,427.00,,,,,,\n2015,5,24,\"B6\",\"885\",\"JFK\",\"RDU\",-5.00,-17.00,0.00,\"\",0.00,91.00,65.00,427.00,,,,,,\n2015,5,25,\"B6\",\"885\",\"JFK\",\"RDU\",-4.00,-25.00,0.00,\"\",0.00,82.00,64.00,427.00,,,,,,\n2015,5,26,\"B6\",\"885\",\"JFK\",\"RDU\",-3.00,-15.00,0.00,\"\",0.00,91.00,65.00,427.00,,,,,,\n2015,5,27,\"B6\",\"885\",\"JFK\",\"RDU\",-3.00,-16.00,0.00,\"\",0.00,90.00,65.00,427.00,,,,,,\n2015,5,28,\"B6\",\"885\",\"JFK\",\"RDU\",-4.00,-12.00,0.00,\"\",0.00,95.00,67.00,427.00,,,,,,\n2015,5,29,\"B6\",\"885\",\"JFK\",\"RDU\",-8.00,-15.00,0.00,\"\",0.00,96.00,61.00,427.00,,,,,,\n2015,5,30,\"B6\",\"885\",\"JFK\",\"RDU\",-8.00,-27.00,0.00,\"\",0.00,84.00,64.00,427.00,,,,,,\n2015,5,31,\"B6\",\"885\",\"JFK\",\"RDU\",-3.00,-5.00,0.00,\"\",0.00,101.00,62.00,427.00,,,,,,\n2015,5,1,\"B6\",\"886\",\"RDU\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,86.00,68.00,427.00,,,,,,\n2015,5,2,\"B6\",\"886\",\"RDU\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,85.00,67.00,427.00,,,,,,\n2015,5,3,\"B6\",\"886\",\"RDU\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,83.00,66.00,427.00,,,,,,\n2015,5,4,\"B6\",\"886\",\"RDU\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,91.00,68.00,427.00,,,,,,\n2015,5,5,\"B6\",\"886\",\"RDU\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,83.00,65.00,427.00,,,,,,\n2015,5,6,\"B6\",\"886\",\"RDU\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,83.00,63.00,427.00,,,,,,\n2015,5,7,\"B6\",\"886\",\"RDU\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,85.00,69.00,427.00,,,,,,\n2015,5,8,\"B6\",\"886\",\"RDU\",\"JFK\",105.00,149.00,0.00,\"\",0.00,136.00,81.00,427.00,10.00,0.00,44.00,0.00,95.00,\n2015,5,9,\"B6\",\"886\",\"RDU\",\"JFK\",-1.00,-2.00,0.00,\"\",0.00,91.00,72.00,427.00,,,,,,\n2015,5,10,\"B6\",\"886\",\"RDU\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,83.00,64.00,427.00,,,,,,\n2015,5,11,\"B6\",\"886\",\"RDU\",\"JFK\",6.00,2.00,0.00,\"\",0.00,88.00,69.00,427.00,,,,,,\n2015,5,12,\"B6\",\"886\",\"RDU\",\"JFK\",4.00,1.00,0.00,\"\",0.00,89.00,68.00,427.00,,,,,,\n2015,5,13,\"B6\",\"886\",\"RDU\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,81.00,65.00,427.00,,,,,,\n2015,5,14,\"B6\",\"886\",\"RDU\",\"JFK\",24.00,23.00,0.00,\"\",0.00,91.00,69.00,427.00,10.00,0.00,0.00,0.00,13.00,\n2015,5,15,\"B6\",\"886\",\"RDU\",\"JFK\",19.00,24.00,0.00,\"\",0.00,97.00,66.00,427.00,12.00,0.00,5.00,0.00,7.00,\n2015,5,16,\"B6\",\"886\",\"RDU\",\"JFK\",3.00,-5.00,0.00,\"\",0.00,84.00,68.00,427.00,,,,,,\n2015,5,17,\"B6\",\"886\",\"RDU\",\"JFK\",-9.00,-15.00,0.00,\"\",0.00,86.00,67.00,427.00,,,,,,\n2015,5,18,\"B6\",\"886\",\"RDU\",\"JFK\",-3.00,8.00,0.00,\"\",0.00,103.00,84.00,427.00,,,,,,\n2015,5,19,\"B6\",\"886\",\"RDU\",\"JFK\",2.00,-4.00,0.00,\"\",0.00,86.00,71.00,427.00,,,,,,\n2015,5,20,\"B6\",\"886\",\"RDU\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,83.00,62.00,427.00,,,,,,\n2015,5,21,\"B6\",\"886\",\"RDU\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,83.00,66.00,427.00,,,,,,\n2015,5,22,\"B6\",\"886\",\"RDU\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,84.00,64.00,427.00,,,,,,\n2015,5,23,\"B6\",\"886\",\"RDU\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,78.00,63.00,427.00,,,,,,\n2015,5,24,\"B6\",\"886\",\"RDU\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,86.00,69.00,427.00,,,,,,\n2015,5,25,\"B6\",\"886\",\"RDU\",\"JFK\",-12.00,-18.00,0.00,\"\",0.00,86.00,69.00,427.00,,,,,,\n2015,5,26,\"B6\",\"886\",\"RDU\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,83.00,66.00,427.00,,,,,,\n2015,5,27,\"B6\",\"886\",\"RDU\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,82.00,67.00,427.00,,,,,,\n2015,5,28,\"B6\",\"886\",\"RDU\",\"JFK\",9.00,-2.00,0.00,\"\",0.00,81.00,64.00,427.00,,,,,,\n2015,5,29,\"B6\",\"886\",\"RDU\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,86.00,69.00,427.00,,,,,,\n2015,5,30,\"B6\",\"886\",\"RDU\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,89.00,67.00,427.00,,,,,,\n2015,5,31,\"B6\",\"886\",\"RDU\",\"JFK\",4.00,-3.00,0.00,\"\",0.00,85.00,66.00,427.00,,,,,,\n2015,5,1,\"B6\",\"901\",\"JFK\",\"FLL\",122.00,117.00,0.00,\"\",0.00,185.00,151.00,1069.00,117.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"B6\",\"901\",\"JFK\",\"FLL\",-8.00,-18.00,0.00,\"\",0.00,181.00,150.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"901\",\"JFK\",\"FLL\",-4.00,-14.00,0.00,\"\",0.00,180.00,143.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"901\",\"JFK\",\"FLL\",-3.00,-4.00,0.00,\"\",0.00,189.00,157.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"901\",\"JFK\",\"FLL\",-3.00,-9.00,0.00,\"\",0.00,184.00,155.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"901\",\"JFK\",\"FLL\",-9.00,-11.00,0.00,\"\",0.00,188.00,161.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"901\",\"JFK\",\"FLL\",-4.00,-10.00,0.00,\"\",0.00,184.00,152.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"901\",\"JFK\",\"FLL\",-1.00,8.00,0.00,\"\",0.00,199.00,153.00,1069.00,,,,,,\n2015,5,9,\"B6\",\"901\",\"JFK\",\"FLL\",2.00,-18.00,0.00,\"\",0.00,171.00,142.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"901\",\"JFK\",\"FLL\",-7.00,-25.00,0.00,\"\",0.00,172.00,147.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"901\",\"JFK\",\"FLL\",0.00,10.00,0.00,\"\",0.00,200.00,155.00,1069.00,,,,,,\n2015,5,12,\"B6\",\"901\",\"JFK\",\"FLL\",-3.00,-8.00,0.00,\"\",0.00,185.00,142.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"901\",\"JFK\",\"FLL\",-2.00,-10.00,0.00,\"\",0.00,182.00,150.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"901\",\"JFK\",\"FLL\",10.00,9.00,0.00,\"\",0.00,189.00,148.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"901\",\"JFK\",\"FLL\",3.00,-6.00,0.00,\"\",0.00,181.00,151.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"901\",\"JFK\",\"FLL\",14.00,-9.00,0.00,\"\",0.00,168.00,137.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"901\",\"JFK\",\"FLL\",-6.00,-12.00,0.00,\"\",0.00,184.00,143.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"901\",\"JFK\",\"FLL\",-6.00,-23.00,0.00,\"\",0.00,173.00,139.00,1069.00,,,,,,\n2015,5,19,\"B6\",\"901\",\"JFK\",\"FLL\",35.00,34.00,0.00,\"\",0.00,189.00,142.00,1069.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,20,\"B6\",\"901\",\"JFK\",\"FLL\",-4.00,-24.00,0.00,\"\",0.00,170.00,143.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"901\",\"JFK\",\"FLL\",-3.00,-13.00,0.00,\"\",0.00,180.00,153.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"901\",\"JFK\",\"FLL\",-2.00,-5.00,0.00,\"\",0.00,187.00,149.00,1069.00,,,,,,\n2015,5,23,\"B6\",\"901\",\"JFK\",\"FLL\",-1.00,-21.00,0.00,\"\",0.00,171.00,147.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"901\",\"JFK\",\"FLL\",-8.00,-43.00,0.00,\"\",0.00,155.00,134.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"901\",\"JFK\",\"FLL\",-5.00,-5.00,0.00,\"\",0.00,190.00,142.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"901\",\"JFK\",\"FLL\",-9.00,-17.00,0.00,\"\",0.00,182.00,146.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"901\",\"JFK\",\"FLL\",-4.00,-8.00,0.00,\"\",0.00,186.00,146.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"901\",\"JFK\",\"FLL\",-6.00,-15.00,0.00,\"\",0.00,181.00,145.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"901\",\"JFK\",\"FLL\",15.00,3.00,0.00,\"\",0.00,178.00,137.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"901\",\"JFK\",\"FLL\",-1.00,-15.00,0.00,\"\",0.00,177.00,139.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"901\",\"JFK\",\"FLL\",-6.00,-25.00,0.00,\"\",0.00,171.00,139.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"904\",\"SJU\",\"JFK\",-2.00,-22.00,0.00,\"\",0.00,219.00,204.00,1598.00,,,,,,\n2015,5,22,\"B6\",\"904\",\"SJU\",\"JFK\",7.00,-9.00,0.00,\"\",0.00,223.00,210.00,1598.00,,,,,,\n2015,5,23,\"B6\",\"904\",\"SJU\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,230.00,211.00,1598.00,,,,,,\n2015,5,24,\"B6\",\"904\",\"SJU\",\"JFK\",239.00,239.00,0.00,\"\",0.00,239.00,216.00,1598.00,239.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"B6\",\"904\",\"SJU\",\"JFK\",42.00,26.00,0.00,\"\",0.00,223.00,209.00,1598.00,2.00,0.00,0.00,0.00,24.00,\n2015,5,26,\"B6\",\"904\",\"SJU\",\"JFK\",16.00,-12.00,0.00,\"\",0.00,211.00,200.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"904\",\"SJU\",\"JFK\",30.00,12.00,0.00,\"\",0.00,221.00,205.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"904\",\"SJU\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,224.00,208.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"904\",\"SJU\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,234.00,218.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"904\",\"SJU\",\"JFK\",-2.00,-22.00,0.00,\"\",0.00,219.00,200.00,1598.00,,,,,,\n2015,5,31,\"B6\",\"904\",\"SJU\",\"JFK\",105.00,136.00,0.00,\"\",0.00,270.00,220.00,1598.00,105.00,0.00,31.00,0.00,0.00,\n2015,5,1,\"B6\",\"905\",\"JFK\",\"ORD\",0.00,2.00,0.00,\"\",0.00,152.00,108.00,740.00,,,,,,\n2015,5,2,\"B6\",\"905\",\"JFK\",\"ORD\",0.00,-6.00,0.00,\"\",0.00,144.00,108.00,740.00,,,,,,\n2015,5,3,\"B6\",\"905\",\"JFK\",\"ORD\",-8.00,-22.00,0.00,\"\",0.00,136.00,116.00,740.00,,,,,,\n2015,5,4,\"B6\",\"905\",\"JFK\",\"ORD\",-8.00,-1.00,0.00,\"\",0.00,157.00,112.00,740.00,,,,,,\n2015,5,5,\"B6\",\"905\",\"JFK\",\"ORD\",-4.00,10.00,0.00,\"\",0.00,164.00,126.00,740.00,,,,,,\n2015,5,6,\"B6\",\"905\",\"JFK\",\"ORD\",-5.00,4.00,0.00,\"\",0.00,159.00,124.00,740.00,,,,,,\n2015,5,7,\"B6\",\"905\",\"JFK\",\"ORD\",-4.00,5.00,0.00,\"\",0.00,159.00,114.00,740.00,,,,,,\n2015,5,8,\"B6\",\"905\",\"JFK\",\"ORD\",-5.00,-1.00,0.00,\"\",0.00,154.00,111.00,740.00,,,,,,\n2015,5,9,\"B6\",\"905\",\"JFK\",\"ORD\",-7.00,13.00,0.00,\"\",0.00,170.00,122.00,740.00,,,,,,\n2015,5,10,\"B6\",\"905\",\"JFK\",\"ORD\",-5.00,3.00,0.00,\"\",0.00,158.00,121.00,740.00,,,,,,\n2015,5,11,\"B6\",\"905\",\"JFK\",\"ORD\",-6.00,-12.00,0.00,\"\",0.00,144.00,117.00,740.00,,,,,,\n2015,5,12,\"B6\",\"905\",\"JFK\",\"ORD\",-9.00,44.00,0.00,\"\",0.00,203.00,134.00,740.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,13,\"B6\",\"905\",\"JFK\",\"ORD\",-4.00,14.00,0.00,\"\",0.00,168.00,135.00,740.00,,,,,,\n2015,5,14,\"B6\",\"905\",\"JFK\",\"ORD\",-3.00,10.00,0.00,\"\",0.00,163.00,128.00,740.00,,,,,,\n2015,5,15,\"B6\",\"905\",\"JFK\",\"ORD\",-4.00,-2.00,0.00,\"\",0.00,152.00,121.00,740.00,,,,,,\n2015,5,16,\"B6\",\"905\",\"JFK\",\"ORD\",-4.00,9.00,0.00,\"\",0.00,163.00,120.00,740.00,,,,,,\n2015,5,17,\"B6\",\"905\",\"JFK\",\"ORD\",-6.00,3.00,0.00,\"\",0.00,159.00,115.00,740.00,,,,,,\n2015,5,18,\"B6\",\"905\",\"JFK\",\"ORD\",-4.00,-1.00,0.00,\"\",0.00,153.00,120.00,740.00,,,,,,\n2015,5,19,\"B6\",\"905\",\"JFK\",\"ORD\",-4.00,6.00,0.00,\"\",0.00,160.00,119.00,740.00,,,,,,\n2015,5,20,\"B6\",\"905\",\"JFK\",\"ORD\",-7.00,5.00,0.00,\"\",0.00,162.00,138.00,740.00,,,,,,\n2015,5,21,\"B6\",\"905\",\"JFK\",\"ORD\",-6.00,0.00,0.00,\"\",0.00,156.00,127.00,740.00,,,,,,\n2015,5,22,\"B6\",\"905\",\"JFK\",\"ORD\",0.00,13.00,0.00,\"\",0.00,163.00,126.00,740.00,,,,,,\n2015,5,23,\"B6\",\"905\",\"JFK\",\"ORD\",-7.00,-9.00,0.00,\"\",0.00,148.00,122.00,740.00,,,,,,\n2015,5,24,\"B6\",\"905\",\"JFK\",\"ORD\",-4.00,0.00,0.00,\"\",0.00,154.00,127.00,740.00,,,,,,\n2015,5,25,\"B6\",\"905\",\"JFK\",\"ORD\",-4.00,-4.00,0.00,\"\",0.00,150.00,123.00,740.00,,,,,,\n2015,5,26,\"B6\",\"905\",\"JFK\",\"ORD\",-8.00,14.00,0.00,\"\",0.00,172.00,122.00,740.00,,,,,,\n2015,5,27,\"B6\",\"905\",\"JFK\",\"ORD\",-7.00,-4.00,0.00,\"\",0.00,153.00,118.00,740.00,,,,,,\n2015,5,28,\"B6\",\"905\",\"JFK\",\"ORD\",-7.00,-13.00,0.00,\"\",0.00,144.00,121.00,740.00,,,,,,\n2015,5,29,\"B6\",\"905\",\"JFK\",\"ORD\",-12.00,-10.00,0.00,\"\",0.00,152.00,116.00,740.00,,,,,,\n2015,5,30,\"B6\",\"905\",\"JFK\",\"ORD\",-4.00,-4.00,0.00,\"\",0.00,150.00,115.00,740.00,,,,,,\n2015,5,31,\"B6\",\"905\",\"JFK\",\"ORD\",-2.00,30.00,0.00,\"\",0.00,182.00,147.00,740.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,7,\"B6\",\"906\",\"ORD\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,125.00,104.00,740.00,,,,,,\n2015,5,8,\"B6\",\"906\",\"ORD\",\"JFK\",-5.00,-7.00,0.00,\"\",0.00,132.00,102.00,740.00,,,,,,\n2015,5,9,\"B6\",\"906\",\"ORD\",\"JFK\",4.00,-3.00,0.00,\"\",0.00,127.00,102.00,740.00,,,,,,\n2015,5,10,\"B6\",\"906\",\"ORD\",\"JFK\",46.00,35.00,0.00,\"\",0.00,123.00,101.00,740.00,7.00,0.00,0.00,0.00,28.00,\n2015,5,11,\"B6\",\"906\",\"ORD\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,121.00,103.00,740.00,,,,,,\n2015,5,12,\"B6\",\"906\",\"ORD\",\"JFK\",22.00,32.00,0.00,\"\",0.00,144.00,100.00,740.00,0.00,0.00,13.00,0.00,19.00,\n2015,5,13,\"B6\",\"906\",\"ORD\",\"JFK\",15.00,-2.00,0.00,\"\",0.00,117.00,97.00,740.00,,,,,,\n2015,5,14,\"B6\",\"906\",\"ORD\",\"JFK\",11.00,-10.00,0.00,\"\",0.00,113.00,96.00,740.00,,,,,,\n2015,5,15,\"B6\",\"906\",\"ORD\",\"JFK\",2.00,-15.00,0.00,\"\",0.00,117.00,99.00,740.00,,,,,,\n2015,5,16,\"B6\",\"906\",\"ORD\",\"JFK\",2.00,-9.00,0.00,\"\",0.00,123.00,103.00,740.00,,,,,,\n2015,5,17,\"B6\",\"906\",\"ORD\",\"JFK\",14.00,-1.00,0.00,\"\",0.00,119.00,102.00,740.00,,,,,,\n2015,5,18,\"B6\",\"906\",\"ORD\",\"JFK\",13.00,15.00,0.00,\"\",0.00,136.00,111.00,740.00,0.00,0.00,11.00,0.00,4.00,\n2015,5,19,\"B6\",\"906\",\"ORD\",\"JFK\",18.00,9.00,0.00,\"\",0.00,125.00,97.00,740.00,,,,,,\n2015,5,20,\"B6\",\"906\",\"ORD\",\"JFK\",15.00,-11.00,0.00,\"\",0.00,108.00,90.00,740.00,,,,,,\n2015,5,21,\"B6\",\"906\",\"ORD\",\"JFK\",25.00,3.00,0.00,\"\",0.00,112.00,94.00,740.00,,,,,,\n2015,5,22,\"B6\",\"906\",\"ORD\",\"JFK\",24.00,0.00,0.00,\"\",0.00,110.00,92.00,740.00,,,,,,\n2015,5,23,\"B6\",\"906\",\"ORD\",\"JFK\",5.00,-19.00,0.00,\"\",0.00,110.00,95.00,740.00,,,,,,\n2015,5,24,\"B6\",\"906\",\"ORD\",\"JFK\",17.00,-5.00,0.00,\"\",0.00,112.00,94.00,740.00,,,,,,\n2015,5,25,\"B6\",\"906\",\"ORD\",\"JFK\",5.00,-13.00,0.00,\"\",0.00,116.00,100.00,740.00,,,,,,\n2015,5,26,\"B6\",\"906\",\"ORD\",\"JFK\",10.00,-7.00,0.00,\"\",0.00,117.00,101.00,740.00,,,,,,\n2015,5,27,\"B6\",\"906\",\"ORD\",\"JFK\",7.00,-11.00,0.00,\"\",0.00,116.00,103.00,740.00,,,,,,\n2015,5,28,\"B6\",\"906\",\"ORD\",\"JFK\",-9.00,-28.00,0.00,\"\",0.00,115.00,95.00,740.00,,,,,,\n2015,5,29,\"B6\",\"906\",\"ORD\",\"JFK\",-6.00,24.00,0.00,\"\",0.00,164.00,114.00,740.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,30,\"B6\",\"906\",\"ORD\",\"JFK\",10.00,10.00,0.00,\"\",0.00,134.00,103.00,740.00,,,,,,\n2015,5,31,\"B6\",\"906\",\"ORD\",\"JFK\",95.00,109.00,0.00,\"\",0.00,148.00,128.00,740.00,0.00,0.00,109.00,0.00,0.00,\n2015,5,1,\"B6\",\"1094\",\"AUS\",\"JFK\",3.00,-24.00,0.00,\"\",0.00,211.00,193.00,1521.00,,,,,,\n2015,5,2,\"B6\",\"1094\",\"AUS\",\"JFK\",-3.00,-29.00,0.00,\"\",0.00,212.00,197.00,1521.00,,,,,,\n2015,5,3,\"B6\",\"1094\",\"AUS\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,214.00,197.00,1521.00,,,,,,\n2015,5,4,\"B6\",\"1094\",\"AUS\",\"JFK\",-3.00,-27.00,0.00,\"\",0.00,214.00,202.00,1521.00,,,,,,\n2015,5,5,\"B6\",\"1094\",\"AUS\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,226.00,206.00,1521.00,,,,,,\n2015,5,6,\"B6\",\"1094\",\"AUS\",\"JFK\",-11.00,-25.00,0.00,\"\",0.00,224.00,208.00,1521.00,,,,,,\n2015,5,7,\"B6\",\"1094\",\"AUS\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,229.00,194.00,1521.00,,,,,,\n2015,5,8,\"B6\",\"1094\",\"AUS\",\"JFK\",12.00,-7.00,0.00,\"\",0.00,219.00,201.00,1521.00,,,,,,\n2015,5,9,\"B6\",\"1094\",\"AUS\",\"JFK\",4.00,-19.00,0.00,\"\",0.00,215.00,195.00,1521.00,,,,,,\n2015,5,10,\"B6\",\"1094\",\"AUS\",\"JFK\",17.00,-1.00,0.00,\"\",0.00,220.00,203.00,1521.00,,,,,,\n2015,5,11,\"B6\",\"1094\",\"AUS\",\"JFK\",35.00,14.00,0.00,\"\",0.00,217.00,191.00,1521.00,,,,,,\n2015,5,12,\"B6\",\"1094\",\"AUS\",\"JFK\",25.00,-8.00,0.00,\"\",0.00,205.00,181.00,1521.00,,,,,,\n2015,5,13,\"B6\",\"1094\",\"AUS\",\"JFK\",30.00,14.00,0.00,\"\",0.00,222.00,197.00,1521.00,,,,,,\n2015,5,14,\"B6\",\"1094\",\"AUS\",\"JFK\",9.00,-14.00,0.00,\"\",0.00,215.00,195.00,1521.00,,,,,,\n2015,5,15,\"B6\",\"1094\",\"AUS\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,218.00,198.00,1521.00,,,,,,\n2015,5,16,\"B6\",\"1094\",\"AUS\",\"JFK\",13.00,0.00,0.00,\"\",0.00,225.00,193.00,1521.00,,,,,,\n2015,5,17,\"B6\",\"1094\",\"AUS\",\"JFK\",137.00,143.00,0.00,\"\",0.00,244.00,212.00,1521.00,18.00,0.00,6.00,0.00,119.00,\n2015,5,18,\"B6\",\"1094\",\"AUS\",\"JFK\",26.00,58.00,0.00,\"\",0.00,270.00,221.00,1521.00,0.00,0.00,42.00,0.00,16.00,\n2015,5,19,\"B6\",\"1094\",\"AUS\",\"JFK\",19.00,-9.00,0.00,\"\",0.00,210.00,194.00,1521.00,,,,,,\n2015,5,20,\"B6\",\"1094\",\"AUS\",\"JFK\",14.00,-2.00,0.00,\"\",0.00,222.00,192.00,1521.00,,,,,,\n2015,5,21,\"B6\",\"1094\",\"AUS\",\"JFK\",13.00,-6.00,0.00,\"\",0.00,219.00,190.00,1521.00,,,,,,\n2015,5,22,\"B6\",\"1094\",\"AUS\",\"JFK\",40.00,21.00,0.00,\"\",0.00,219.00,197.00,1521.00,14.00,0.00,0.00,0.00,7.00,\n2015,5,23,\"B6\",\"1094\",\"AUS\",\"JFK\",23.00,-4.00,0.00,\"\",0.00,211.00,195.00,1521.00,,,,,,\n2015,5,24,\"B6\",\"1094\",\"AUS\",\"JFK\",62.00,32.00,0.00,\"\",0.00,208.00,192.00,1521.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"B6\",\"1094\",\"AUS\",\"JFK\",-3.00,-34.00,0.00,\"\",0.00,207.00,186.00,1521.00,,,,,,\n2015,5,26,\"B6\",\"1094\",\"AUS\",\"JFK\",-3.00,-35.00,0.00,\"\",0.00,206.00,191.00,1521.00,,,,,,\n2015,5,27,\"B6\",\"1094\",\"AUS\",\"JFK\",56.00,60.00,0.00,\"\",0.00,242.00,204.00,1521.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,28,\"B6\",\"1094\",\"AUS\",\"JFK\",7.00,-15.00,0.00,\"\",0.00,216.00,202.00,1521.00,,,,,,\n2015,5,29,\"B6\",\"1094\",\"AUS\",\"JFK\",0.00,-23.00,0.00,\"\",0.00,215.00,200.00,1521.00,,,,,,\n2015,5,30,\"B6\",\"1094\",\"AUS\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,222.00,203.00,1521.00,,,,,,\n2015,5,31,\"B6\",\"1094\",\"AUS\",\"JFK\",39.00,54.00,0.00,\"\",0.00,253.00,215.00,1521.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,1,\"B6\",\"1099\",\"LGA\",\"MCO\",-4.00,9.00,0.00,\"\",0.00,168.00,142.00,950.00,,,,,,\n2015,5,2,\"B6\",\"1099\",\"LGA\",\"MCO\",-6.00,-7.00,0.00,\"\",0.00,154.00,126.00,950.00,,,,,,\n2015,5,3,\"B6\",\"1099\",\"LGA\",\"MCO\",-5.00,-12.00,0.00,\"\",0.00,148.00,127.00,950.00,,,,,,\n2015,5,4,\"B6\",\"1099\",\"LGA\",\"MCO\",-8.00,-17.00,0.00,\"\",0.00,146.00,127.00,950.00,,,,,,\n2015,5,5,\"B6\",\"1099\",\"LGA\",\"MCO\",-10.00,-22.00,0.00,\"\",0.00,143.00,130.00,950.00,,,,,,\n2015,5,6,\"B6\",\"1099\",\"LGA\",\"MCO\",-9.00,-2.00,0.00,\"\",0.00,162.00,136.00,950.00,,,,,,\n2015,5,7,\"B6\",\"1099\",\"LGA\",\"MCO\",1.00,1.00,0.00,\"\",0.00,155.00,130.00,950.00,,,,,,\n2015,5,8,\"B6\",\"1099\",\"LGA\",\"MCO\",-7.00,-15.00,0.00,\"\",0.00,147.00,125.00,950.00,,,,,,\n2015,5,9,\"B6\",\"1099\",\"LGA\",\"MCO\",-5.00,-14.00,0.00,\"\",0.00,146.00,121.00,950.00,,,,,,\n2015,5,10,\"B6\",\"1099\",\"LGA\",\"MCO\",0.00,-7.00,0.00,\"\",0.00,148.00,128.00,950.00,,,,,,\n2015,5,11,\"B6\",\"1099\",\"LGA\",\"MCO\",-6.00,-10.00,0.00,\"\",0.00,151.00,127.00,950.00,,,,,,\n2015,5,12,\"B6\",\"1099\",\"LGA\",\"MCO\",-10.00,-10.00,0.00,\"\",0.00,155.00,126.00,950.00,,,,,,\n2015,5,13,\"B6\",\"1099\",\"LGA\",\"MCO\",-6.00,-6.00,0.00,\"\",0.00,155.00,135.00,950.00,,,,,,\n2015,5,14,\"B6\",\"1099\",\"LGA\",\"MCO\",3.00,-11.00,0.00,\"\",0.00,141.00,121.00,950.00,,,,,,\n2015,5,15,\"B6\",\"1099\",\"LGA\",\"MCO\",-9.00,-4.00,0.00,\"\",0.00,160.00,142.00,950.00,,,,,,\n2015,5,16,\"B6\",\"1099\",\"LGA\",\"MCO\",-6.00,-16.00,0.00,\"\",0.00,145.00,121.00,950.00,,,,,,\n2015,5,17,\"B6\",\"1099\",\"LGA\",\"MCO\",-9.00,-15.00,0.00,\"\",0.00,149.00,125.00,950.00,,,,,,\n2015,5,18,\"B6\",\"1099\",\"LGA\",\"MCO\",12.00,9.00,0.00,\"\",0.00,152.00,123.00,950.00,,,,,,\n2015,5,19,\"B6\",\"1099\",\"LGA\",\"MCO\",-18.00,-21.00,0.00,\"\",0.00,152.00,123.00,950.00,,,,,,\n2015,5,20,\"B6\",\"1099\",\"LGA\",\"MCO\",-8.00,-12.00,0.00,\"\",0.00,151.00,120.00,950.00,,,,,,\n2015,5,21,\"B6\",\"1099\",\"LGA\",\"MCO\",-6.00,-11.00,0.00,\"\",0.00,150.00,133.00,950.00,,,,,,\n2015,5,22,\"B6\",\"1099\",\"LGA\",\"MCO\",-6.00,-1.00,0.00,\"\",0.00,160.00,136.00,950.00,,,,,,\n2015,5,23,\"B6\",\"1099\",\"LGA\",\"MCO\",-12.00,-4.00,0.00,\"\",0.00,163.00,127.00,950.00,,,,,,\n2015,5,24,\"B6\",\"1099\",\"LGA\",\"MCO\",-12.00,-16.00,0.00,\"\",0.00,151.00,124.00,950.00,,,,,,\n2015,5,25,\"B6\",\"1099\",\"LGA\",\"MCO\",-5.00,-13.00,0.00,\"\",0.00,147.00,125.00,950.00,,,,,,\n2015,5,26,\"B6\",\"1099\",\"LGA\",\"MCO\",-9.00,-17.00,0.00,\"\",0.00,147.00,126.00,950.00,,,,,,\n2015,5,27,\"B6\",\"1099\",\"LGA\",\"MCO\",-8.00,-7.00,0.00,\"\",0.00,156.00,131.00,950.00,,,,,,\n2015,5,28,\"B6\",\"1099\",\"LGA\",\"MCO\",-6.00,1.00,0.00,\"\",0.00,162.00,131.00,950.00,,,,,,\n2015,5,29,\"B6\",\"1099\",\"LGA\",\"MCO\",-9.00,-13.00,0.00,\"\",0.00,151.00,124.00,950.00,,,,,,\n2015,5,30,\"B6\",\"1099\",\"LGA\",\"MCO\",5.00,16.00,0.00,\"\",0.00,166.00,125.00,950.00,5.00,0.00,11.00,0.00,0.00,\n2015,5,31,\"B6\",\"1099\",\"LGA\",\"MCO\",-10.00,-15.00,0.00,\"\",0.00,150.00,126.00,950.00,,,,,,\n2015,5,7,\"B6\",\"1105\",\"JFK\",\"ORD\",-7.00,-17.00,0.00,\"\",0.00,156.00,108.00,740.00,,,,,,\n2015,5,8,\"B6\",\"1105\",\"JFK\",\"ORD\",21.00,2.00,0.00,\"\",0.00,147.00,110.00,740.00,,,,,,\n2015,5,9,\"B6\",\"1105\",\"JFK\",\"ORD\",-8.00,-3.00,0.00,\"\",0.00,171.00,112.00,740.00,,,,,,\n2015,5,10,\"B6\",\"1105\",\"JFK\",\"ORD\",-4.00,30.00,0.00,\"\",0.00,200.00,117.00,740.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,11,\"B6\",\"1105\",\"JFK\",\"ORD\",-9.00,-7.00,0.00,\"\",0.00,168.00,111.00,740.00,,,,,,\n2015,5,12,\"B6\",\"1105\",\"JFK\",\"ORD\",-6.00,12.00,0.00,\"\",0.00,184.00,123.00,740.00,,,,,,\n2015,5,13,\"B6\",\"1105\",\"JFK\",\"ORD\",-7.00,20.00,0.00,\"\",0.00,193.00,127.00,740.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,14,\"B6\",\"1105\",\"JFK\",\"ORD\",1.00,1.00,0.00,\"\",0.00,166.00,123.00,740.00,,,,,,\n2015,5,15,\"B6\",\"1105\",\"JFK\",\"ORD\",-6.00,-7.00,0.00,\"\",0.00,165.00,117.00,740.00,,,,,,\n2015,5,16,\"B6\",\"1105\",\"JFK\",\"ORD\",-3.00,19.00,0.00,\"\",0.00,188.00,110.00,740.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,17,\"B6\",\"1105\",\"JFK\",\"ORD\",-5.00,0.00,0.00,\"\",0.00,171.00,116.00,740.00,,,,,,\n2015,5,18,\"B6\",\"1105\",\"JFK\",\"ORD\",-10.00,4.00,0.00,\"\",0.00,180.00,109.00,740.00,,,,,,\n2015,5,19,\"B6\",\"1105\",\"JFK\",\"ORD\",47.00,36.00,0.00,\"\",0.00,155.00,120.00,740.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"B6\",\"1105\",\"JFK\",\"ORD\",9.00,35.00,0.00,\"\",0.00,192.00,125.00,740.00,9.00,0.00,26.00,0.00,0.00,\n2015,5,21,\"B6\",\"1105\",\"JFK\",\"ORD\",-3.00,1.00,0.00,\"\",0.00,170.00,125.00,740.00,,,,,,\n2015,5,22,\"B6\",\"1105\",\"JFK\",\"ORD\",-6.00,3.00,0.00,\"\",0.00,175.00,124.00,740.00,,,,,,\n2015,5,23,\"B6\",\"1105\",\"JFK\",\"ORD\",16.00,-4.00,0.00,\"\",0.00,146.00,120.00,740.00,,,,,,\n2015,5,24,\"B6\",\"1105\",\"JFK\",\"ORD\",-5.00,-1.00,0.00,\"\",0.00,170.00,122.00,740.00,,,,,,\n2015,5,25,\"B6\",\"1105\",\"JFK\",\"ORD\",-10.00,-17.00,0.00,\"\",0.00,159.00,116.00,740.00,,,,,,\n2015,5,26,\"B6\",\"1105\",\"JFK\",\"ORD\",-4.00,-10.00,0.00,\"\",0.00,160.00,112.00,740.00,,,,,,\n2015,5,27,\"B6\",\"1105\",\"JFK\",\"ORD\",-4.00,-4.00,0.00,\"\",0.00,166.00,114.00,740.00,,,,,,\n2015,5,28,\"B6\",\"1105\",\"JFK\",\"ORD\",-4.00,-11.00,0.00,\"\",0.00,156.00,111.00,740.00,,,,,,\n2015,5,29,\"B6\",\"1105\",\"JFK\",\"ORD\",-6.00,-24.00,0.00,\"\",0.00,145.00,109.00,740.00,,,,,,\n2015,5,30,\"B6\",\"1105\",\"JFK\",\"ORD\",3.00,-2.00,0.00,\"\",0.00,158.00,115.00,740.00,,,,,,\n2015,5,31,\"B6\",\"1105\",\"JFK\",\"ORD\",0.00,1.00,0.00,\"\",0.00,164.00,119.00,740.00,,,,,,\n2015,5,1,\"B6\",\"1106\",\"ORD\",\"JFK\",1.00,7.00,0.00,\"\",0.00,141.00,105.00,740.00,,,,,,\n2015,5,2,\"B6\",\"1106\",\"ORD\",\"JFK\",167.00,144.00,0.00,\"\",0.00,112.00,99.00,740.00,12.00,0.00,0.00,0.00,132.00,\n2015,5,3,\"B6\",\"1106\",\"ORD\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,129.00,103.00,740.00,,,,,,\n2015,5,4,\"B6\",\"1106\",\"ORD\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,122.00,98.00,740.00,,,,,,\n2015,5,5,\"B6\",\"1106\",\"ORD\",\"JFK\",-7.00,-28.00,0.00,\"\",0.00,114.00,94.00,740.00,,,,,,\n2015,5,6,\"B6\",\"1106\",\"ORD\",\"JFK\",22.00,9.00,0.00,\"\",0.00,122.00,101.00,740.00,,,,,,\n2015,5,7,\"B6\",\"1106\",\"ORD\",\"JFK\",5.00,6.00,0.00,\"\",0.00,136.00,109.00,740.00,,,,,,\n2015,5,8,\"B6\",\"1106\",\"ORD\",\"JFK\",37.00,44.00,0.00,\"\",0.00,142.00,109.00,740.00,0.00,0.00,21.00,0.00,23.00,\n2015,5,9,\"B6\",\"1106\",\"ORD\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,124.00,100.00,740.00,,,,,,\n2015,5,10,\"B6\",\"1106\",\"ORD\",\"JFK\",0.00,11.00,0.00,\"\",0.00,146.00,109.00,740.00,,,,,,\n2015,5,11,\"B6\",\"1106\",\"ORD\",\"JFK\",-3.00,5.00,0.00,\"\",0.00,143.00,110.00,740.00,,,,,,\n2015,5,12,\"B6\",\"1106\",\"ORD\",\"JFK\",56.00,38.00,0.00,\"\",0.00,117.00,93.00,740.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,13,\"B6\",\"1106\",\"ORD\",\"JFK\",-12.00,-34.00,0.00,\"\",0.00,113.00,92.00,740.00,,,,,,\n2015,5,14,\"B6\",\"1106\",\"ORD\",\"JFK\",21.00,14.00,0.00,\"\",0.00,128.00,96.00,740.00,,,,,,\n2015,5,15,\"B6\",\"1106\",\"ORD\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,122.00,94.00,740.00,,,,,,\n2015,5,16,\"B6\",\"1106\",\"ORD\",\"JFK\",3.00,-11.00,0.00,\"\",0.00,121.00,98.00,740.00,,,,,,\n2015,5,17,\"B6\",\"1106\",\"ORD\",\"JFK\",-4.00,-6.00,0.00,\"\",0.00,133.00,105.00,740.00,,,,,,\n2015,5,18,\"B6\",\"1106\",\"ORD\",\"JFK\",18.00,30.00,0.00,\"\",0.00,147.00,125.00,740.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,19,\"B6\",\"1106\",\"ORD\",\"JFK\",5.00,-10.00,0.00,\"\",0.00,120.00,90.00,740.00,,,,,,\n2015,5,20,\"B6\",\"1106\",\"ORD\",\"JFK\",100.00,76.00,0.00,\"\",0.00,111.00,88.00,740.00,5.00,0.00,0.00,0.00,71.00,\n2015,5,21,\"B6\",\"1106\",\"ORD\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,121.00,97.00,740.00,,,,,,\n2015,5,22,\"B6\",\"1106\",\"ORD\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,122.00,95.00,740.00,,,,,,\n2015,5,23,\"B6\",\"1106\",\"ORD\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,111.00,91.00,740.00,,,,,,\n2015,5,24,\"B6\",\"1106\",\"ORD\",\"JFK\",155.00,133.00,0.00,\"\",0.00,113.00,90.00,740.00,5.00,0.00,0.00,0.00,128.00,\n2015,5,25,\"B6\",\"1106\",\"ORD\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,116.00,96.00,740.00,,,,,,\n2015,5,26,\"B6\",\"1106\",\"ORD\",\"JFK\",13.00,1.00,0.00,\"\",0.00,123.00,101.00,740.00,,,,,,\n2015,5,27,\"B6\",\"1106\",\"ORD\",\"JFK\",37.00,27.00,0.00,\"\",0.00,125.00,101.00,740.00,0.00,0.00,13.00,0.00,14.00,\n2015,5,28,\"B6\",\"1106\",\"ORD\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,125.00,100.00,740.00,,,,,,\n2015,5,29,\"B6\",\"1106\",\"ORD\",\"JFK\",5.00,21.00,0.00,\"\",0.00,151.00,103.00,740.00,5.00,0.00,16.00,0.00,0.00,\n2015,5,30,\"B6\",\"1106\",\"ORD\",\"JFK\",55.00,42.00,0.00,\"\",0.00,122.00,101.00,740.00,15.00,0.00,0.00,0.00,27.00,\n2015,5,31,\"B6\",\"1106\",\"ORD\",\"JFK\",114.00,130.00,0.00,\"\",0.00,151.00,129.00,740.00,0.00,0.00,113.00,0.00,17.00,\n2015,5,1,\"B6\",\"1116\",\"TPA\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,154.00,129.00,1010.00,,,,,,\n2015,5,2,\"B6\",\"1116\",\"TPA\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,150.00,134.00,1010.00,,,,,,\n2015,5,3,\"B6\",\"1116\",\"TPA\",\"LGA\",8.00,10.00,0.00,\"\",0.00,171.00,134.00,1010.00,,,,,,\n2015,5,4,\"B6\",\"1116\",\"TPA\",\"LGA\",-6.00,-29.00,0.00,\"\",0.00,146.00,129.00,1010.00,,,,,,\n2015,5,5,\"B6\",\"1116\",\"TPA\",\"LGA\",-10.00,-37.00,0.00,\"\",0.00,142.00,124.00,1010.00,,,,,,\n2015,5,6,\"B6\",\"1116\",\"TPA\",\"LGA\",-10.00,-28.00,0.00,\"\",0.00,151.00,129.00,1010.00,,,,,,\n2015,5,7,\"B6\",\"1116\",\"TPA\",\"LGA\",-9.00,-20.00,0.00,\"\",0.00,158.00,139.00,1010.00,,,,,,\n2015,5,8,\"B6\",\"1116\",\"TPA\",\"LGA\",67.00,55.00,0.00,\"\",0.00,157.00,138.00,1010.00,0.00,0.00,13.00,0.00,42.00,\n2015,5,9,\"B6\",\"1116\",\"TPA\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,167.00,145.00,1010.00,,,,,,\n2015,5,10,\"B6\",\"1116\",\"TPA\",\"LGA\",14.00,0.00,0.00,\"\",0.00,155.00,137.00,1010.00,,,,,,\n2015,5,11,\"B6\",\"1116\",\"TPA\",\"LGA\",123.00,135.00,0.00,\"\",0.00,181.00,166.00,1010.00,0.00,0.00,115.00,0.00,20.00,\n2015,5,12,\"B6\",\"1116\",\"TPA\",\"LGA\",2.00,-4.00,0.00,\"\",0.00,163.00,131.00,1010.00,,,,,,\n2015,5,13,\"B6\",\"1116\",\"TPA\",\"LGA\",-1.00,5.00,0.00,\"\",0.00,175.00,142.00,1010.00,,,,,,\n2015,5,14,\"B6\",\"1116\",\"TPA\",\"LGA\",4.00,46.00,0.00,\"\",0.00,211.00,132.00,1010.00,4.00,0.00,42.00,0.00,0.00,\n2015,5,15,\"B6\",\"1116\",\"TPA\",\"LGA\",24.00,7.00,0.00,\"\",0.00,152.00,135.00,1010.00,,,,,,\n2015,5,16,\"B6\",\"1116\",\"TPA\",\"LGA\",2.00,0.00,0.00,\"\",0.00,167.00,138.00,1010.00,,,,,,\n2015,5,17,\"B6\",\"1116\",\"TPA\",\"LGA\",55.00,45.00,0.00,\"\",0.00,159.00,137.00,1010.00,0.00,24.00,0.00,0.00,21.00,\n2015,5,18,\"B6\",\"1116\",\"TPA\",\"LGA\",77.00,98.00,0.00,\"\",0.00,190.00,160.00,1010.00,0.00,0.00,98.00,0.00,0.00,\n2015,5,19,\"B6\",\"1116\",\"TPA\",\"LGA\",112.00,124.00,0.00,\"\",0.00,181.00,135.00,1010.00,0.00,0.00,124.00,0.00,0.00,\n2015,5,20,\"B6\",\"1116\",\"TPA\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,155.00,128.00,1010.00,,,,,,\n2015,5,21,\"B6\",\"1116\",\"TPA\",\"LGA\",10.00,-7.00,0.00,\"\",0.00,152.00,131.00,1010.00,,,,,,\n2015,5,22,\"B6\",\"1116\",\"TPA\",\"LGA\",-7.00,-29.00,0.00,\"\",0.00,147.00,126.00,1010.00,,,,,,\n2015,5,23,\"B6\",\"1116\",\"TPA\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,153.00,138.00,1010.00,,,,,,\n2015,5,24,\"B6\",\"1116\",\"TPA\",\"LGA\",17.00,6.00,0.00,\"\",0.00,158.00,137.00,1010.00,,,,,,\n2015,5,25,\"B6\",\"1116\",\"TPA\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,158.00,136.00,1010.00,,,,,,\n2015,5,26,\"B6\",\"1116\",\"TPA\",\"LGA\",91.00,104.00,0.00,\"\",0.00,182.00,140.00,1010.00,0.00,91.00,13.00,0.00,0.00,\n2015,5,27,\"B6\",\"1116\",\"TPA\",\"LGA\",,,1.00,\"C\",0.00,,,1010.00,,,,,,\n2015,5,28,\"B6\",\"1116\",\"TPA\",\"LGA\",-7.00,-29.00,0.00,\"\",0.00,147.00,130.00,1010.00,,,,,,\n2015,5,29,\"B6\",\"1116\",\"TPA\",\"LGA\",-15.00,-21.00,0.00,\"\",0.00,163.00,131.00,1010.00,,,,,,\n2015,5,30,\"B6\",\"1116\",\"TPA\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,157.00,141.00,1010.00,,,,,,\n2015,5,31,\"B6\",\"1116\",\"TPA\",\"LGA\",,,1.00,\"C\",0.00,,,1010.00,,,,,,\n2015,5,1,\"B6\",\"1117\",\"LGA\",\"TPA\",-8.00,-17.00,0.00,\"\",0.00,172.00,141.00,1010.00,,,,,,\n2015,5,2,\"B6\",\"1117\",\"LGA\",\"TPA\",0.00,-16.00,0.00,\"\",0.00,165.00,139.00,1010.00,,,,,,\n2015,5,3,\"B6\",\"1117\",\"LGA\",\"TPA\",-6.00,-6.00,0.00,\"\",0.00,181.00,139.00,1010.00,,,,,,\n2015,5,4,\"B6\",\"1117\",\"LGA\",\"TPA\",16.00,8.00,0.00,\"\",0.00,173.00,142.00,1010.00,,,,,,\n2015,5,5,\"B6\",\"1117\",\"LGA\",\"TPA\",12.00,2.00,0.00,\"\",0.00,171.00,145.00,1010.00,,,,,,\n2015,5,6,\"B6\",\"1117\",\"LGA\",\"TPA\",-1.00,23.00,0.00,\"\",0.00,205.00,151.00,1010.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,7,\"B6\",\"1117\",\"LGA\",\"TPA\",12.00,-2.00,0.00,\"\",0.00,167.00,138.00,1010.00,,,,,,\n2015,5,8,\"B6\",\"1117\",\"LGA\",\"TPA\",-1.00,-19.00,0.00,\"\",0.00,163.00,140.00,1010.00,,,,,,\n2015,5,9,\"B6\",\"1117\",\"LGA\",\"TPA\",33.00,10.00,0.00,\"\",0.00,158.00,135.00,1010.00,,,,,,\n2015,5,10,\"B6\",\"1117\",\"LGA\",\"TPA\",0.00,2.00,0.00,\"\",0.00,183.00,135.00,1010.00,,,,,,\n2015,5,11,\"B6\",\"1117\",\"LGA\",\"TPA\",28.00,47.00,0.00,\"\",0.00,200.00,140.00,1010.00,3.00,0.00,19.00,0.00,25.00,\n2015,5,12,\"B6\",\"1117\",\"LGA\",\"TPA\",78.00,100.00,0.00,\"\",0.00,203.00,164.00,1010.00,6.00,0.00,22.00,0.00,72.00,\n2015,5,13,\"B6\",\"1117\",\"LGA\",\"TPA\",-2.00,18.00,0.00,\"\",0.00,201.00,149.00,1010.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,14,\"B6\",\"1117\",\"LGA\",\"TPA\",-5.00,-1.00,0.00,\"\",0.00,185.00,137.00,1010.00,,,,,,\n2015,5,15,\"B6\",\"1117\",\"LGA\",\"TPA\",-7.00,11.00,0.00,\"\",0.00,199.00,136.00,1010.00,,,,,,\n2015,5,16,\"B6\",\"1117\",\"LGA\",\"TPA\",-4.00,-7.00,0.00,\"\",0.00,178.00,140.00,1010.00,,,,,,\n2015,5,17,\"B6\",\"1117\",\"LGA\",\"TPA\",-3.00,26.00,0.00,\"\",0.00,210.00,174.00,1010.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,18,\"B6\",\"1117\",\"LGA\",\"TPA\",,,1.00,\"C\",0.00,,,1010.00,,,,,,\n2015,5,19,\"B6\",\"1117\",\"LGA\",\"TPA\",130.00,152.00,0.00,\"\",0.00,203.00,162.00,1010.00,16.00,0.00,22.00,0.00,114.00,\n2015,5,20,\"B6\",\"1117\",\"LGA\",\"TPA\",-1.00,16.00,0.00,\"\",0.00,198.00,141.00,1010.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,21,\"B6\",\"1117\",\"LGA\",\"TPA\",0.00,51.00,0.00,\"\",0.00,232.00,148.00,1010.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,22,\"B6\",\"1117\",\"LGA\",\"TPA\",-4.00,-6.00,0.00,\"\",0.00,179.00,147.00,1010.00,,,,,,\n2015,5,23,\"B6\",\"1117\",\"LGA\",\"TPA\",-3.00,-3.00,0.00,\"\",0.00,181.00,160.00,1010.00,,,,,,\n2015,5,24,\"B6\",\"1117\",\"LGA\",\"TPA\",-9.00,4.00,0.00,\"\",0.00,194.00,148.00,1010.00,,,,,,\n2015,5,25,\"B6\",\"1117\",\"LGA\",\"TPA\",6.00,-4.00,0.00,\"\",0.00,171.00,139.00,1010.00,,,,,,\n2015,5,26,\"B6\",\"1117\",\"LGA\",\"TPA\",-7.00,36.00,0.00,\"\",0.00,224.00,177.00,1010.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,27,\"B6\",\"1117\",\"LGA\",\"TPA\",,,1.00,\"C\",0.00,,,1010.00,,,,,,\n2015,5,28,\"B6\",\"1117\",\"LGA\",\"TPA\",-2.00,-11.00,0.00,\"\",0.00,172.00,142.00,1010.00,,,,,,\n2015,5,29,\"B6\",\"1117\",\"LGA\",\"TPA\",5.00,14.00,0.00,\"\",0.00,190.00,137.00,1010.00,,,,,,\n2015,5,30,\"B6\",\"1117\",\"LGA\",\"TPA\",-11.00,-18.00,0.00,\"\",0.00,174.00,146.00,1010.00,,,,,,\n2015,5,31,\"B6\",\"1117\",\"LGA\",\"TPA\",-9.00,117.00,0.00,\"\",0.00,307.00,145.00,1010.00,0.00,0.00,117.00,0.00,0.00,\n2015,5,1,\"B6\",\"1118\",\"CLT\",\"JFK\",-16.00,-38.00,0.00,\"\",0.00,97.00,82.00,541.00,,,,,,\n2015,5,2,\"B6\",\"1118\",\"CLT\",\"JFK\",-10.00,-32.00,0.00,\"\",0.00,97.00,79.00,541.00,,,,,,\n2015,5,3,\"B6\",\"1118\",\"CLT\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,102.00,80.00,541.00,,,,,,\n2015,5,4,\"B6\",\"1118\",\"CLT\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,107.00,86.00,541.00,,,,,,\n2015,5,5,\"B6\",\"1118\",\"CLT\",\"JFK\",-9.00,-34.00,0.00,\"\",0.00,94.00,77.00,541.00,,,,,,\n2015,5,6,\"B6\",\"1118\",\"CLT\",\"JFK\",-15.00,-29.00,0.00,\"\",0.00,105.00,85.00,541.00,,,,,,\n2015,5,7,\"B6\",\"1118\",\"CLT\",\"JFK\",-12.00,-28.00,0.00,\"\",0.00,103.00,82.00,541.00,,,,,,\n2015,5,8,\"B6\",\"1118\",\"CLT\",\"JFK\",14.00,32.00,0.00,\"\",0.00,137.00,96.00,541.00,0.00,14.00,18.00,0.00,0.00,\n2015,5,9,\"B6\",\"1118\",\"CLT\",\"JFK\",23.00,14.00,0.00,\"\",0.00,110.00,83.00,541.00,,,,,,\n2015,5,10,\"B6\",\"1118\",\"CLT\",\"JFK\",67.00,54.00,0.00,\"\",0.00,106.00,83.00,541.00,16.00,0.00,38.00,0.00,0.00,\n2015,5,11,\"B6\",\"1118\",\"CLT\",\"JFK\",40.00,59.00,0.00,\"\",0.00,138.00,105.00,541.00,0.00,0.00,59.00,0.00,0.00,\n2015,5,12,\"B6\",\"1118\",\"CLT\",\"JFK\",-4.00,-27.00,0.00,\"\",0.00,96.00,76.00,541.00,,,,,,\n2015,5,13,\"B6\",\"1118\",\"CLT\",\"JFK\",41.00,48.00,0.00,\"\",0.00,126.00,98.00,541.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,14,\"B6\",\"1118\",\"CLT\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,108.00,87.00,541.00,,,,,,\n2015,5,15,\"B6\",\"1118\",\"CLT\",\"JFK\",-12.00,-40.00,0.00,\"\",0.00,91.00,78.00,541.00,,,,,,\n2015,5,16,\"B6\",\"1118\",\"CLT\",\"JFK\",1.00,-14.00,0.00,\"\",0.00,104.00,81.00,541.00,,,,,,\n2015,5,17,\"B6\",\"1118\",\"CLT\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,107.00,87.00,541.00,,,,,,\n2015,5,18,\"B6\",\"1118\",\"CLT\",\"JFK\",,,1.00,\"C\",0.00,,,541.00,,,,,,\n2015,5,19,\"B6\",\"1118\",\"CLT\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,115.00,86.00,541.00,,,,,,\n2015,5,20,\"B6\",\"1118\",\"CLT\",\"JFK\",-11.00,-15.00,0.00,\"\",0.00,115.00,80.00,541.00,,,,,,\n2015,5,21,\"B6\",\"1118\",\"CLT\",\"JFK\",-11.00,-33.00,0.00,\"\",0.00,97.00,75.00,541.00,,,,,,\n2015,5,22,\"B6\",\"1118\",\"CLT\",\"JFK\",43.00,41.00,0.00,\"\",0.00,117.00,82.00,541.00,0.00,31.00,0.00,0.00,10.00,\n2015,5,23,\"B6\",\"1118\",\"CLT\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,104.00,85.00,541.00,,,,,,\n2015,5,24,\"B6\",\"1118\",\"CLT\",\"JFK\",-11.00,-30.00,0.00,\"\",0.00,100.00,81.00,541.00,,,,,,\n2015,5,25,\"B6\",\"1118\",\"CLT\",\"JFK\",1.00,-24.00,0.00,\"\",0.00,94.00,78.00,541.00,,,,,,\n2015,5,26,\"B6\",\"1118\",\"CLT\",\"JFK\",-8.00,-34.00,0.00,\"\",0.00,93.00,76.00,541.00,,,,,,\n2015,5,27,\"B6\",\"1118\",\"CLT\",\"JFK\",,,1.00,\"C\",0.00,,,541.00,,,,,,\n2015,5,28,\"B6\",\"1118\",\"CLT\",\"JFK\",-11.00,-25.00,0.00,\"\",0.00,105.00,79.00,541.00,,,,,,\n2015,5,29,\"B6\",\"1118\",\"CLT\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,101.00,82.00,541.00,,,,,,\n2015,5,30,\"B6\",\"1118\",\"CLT\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,97.00,82.00,541.00,,,,,,\n2015,5,31,\"B6\",\"1118\",\"CLT\",\"JFK\",163.00,184.00,0.00,\"\",0.00,140.00,104.00,541.00,0.00,145.00,21.00,0.00,18.00,\n2015,5,1,\"B6\",\"1119\",\"JFK\",\"CLT\",-6.00,-40.00,0.00,\"\",0.00,108.00,77.00,541.00,,,,,,\n2015,5,2,\"B6\",\"1119\",\"JFK\",\"CLT\",-4.00,-32.00,0.00,\"\",0.00,114.00,82.00,541.00,,,,,,\n2015,5,3,\"B6\",\"1119\",\"JFK\",\"CLT\",-5.00,-20.00,0.00,\"\",0.00,127.00,81.00,541.00,,,,,,\n2015,5,4,\"B6\",\"1119\",\"JFK\",\"CLT\",-6.00,-45.00,0.00,\"\",0.00,103.00,77.00,541.00,,,,,,\n2015,5,5,\"B6\",\"1119\",\"JFK\",\"CLT\",11.00,-24.00,0.00,\"\",0.00,107.00,79.00,541.00,,,,,,\n2015,5,6,\"B6\",\"1119\",\"JFK\",\"CLT\",-4.00,-40.00,0.00,\"\",0.00,106.00,77.00,541.00,,,,,,\n2015,5,7,\"B6\",\"1119\",\"JFK\",\"CLT\",-4.00,-37.00,0.00,\"\",0.00,109.00,78.00,541.00,,,,,,\n2015,5,8,\"B6\",\"1119\",\"JFK\",\"CLT\",-7.00,-28.00,0.00,\"\",0.00,121.00,81.00,541.00,,,,,,\n2015,5,9,\"B6\",\"1119\",\"JFK\",\"CLT\",-4.00,-34.00,0.00,\"\",0.00,112.00,84.00,541.00,,,,,,\n2015,5,10,\"B6\",\"1119\",\"JFK\",\"CLT\",30.00,17.00,0.00,\"\",0.00,129.00,86.00,541.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"B6\",\"1119\",\"JFK\",\"CLT\",34.00,1.00,0.00,\"\",0.00,109.00,78.00,541.00,,,,,,\n2015,5,12,\"B6\",\"1119\",\"JFK\",\"CLT\",6.00,-16.00,0.00,\"\",0.00,120.00,88.00,541.00,,,,,,\n2015,5,13,\"B6\",\"1119\",\"JFK\",\"CLT\",12.00,-4.00,0.00,\"\",0.00,126.00,88.00,541.00,,,,,,\n2015,5,14,\"B6\",\"1119\",\"JFK\",\"CLT\",0.00,-38.00,0.00,\"\",0.00,104.00,76.00,541.00,,,,,,\n2015,5,15,\"B6\",\"1119\",\"JFK\",\"CLT\",-1.00,-39.00,0.00,\"\",0.00,104.00,76.00,541.00,,,,,,\n2015,5,16,\"B6\",\"1119\",\"JFK\",\"CLT\",5.00,-3.00,0.00,\"\",0.00,134.00,97.00,541.00,,,,,,\n2015,5,17,\"B6\",\"1119\",\"JFK\",\"CLT\",-2.00,-36.00,0.00,\"\",0.00,108.00,79.00,541.00,,,,,,\n2015,5,18,\"B6\",\"1119\",\"JFK\",\"CLT\",,,1.00,\"C\",0.00,,,541.00,,,,,,\n2015,5,19,\"B6\",\"1119\",\"JFK\",\"CLT\",2.00,-4.00,0.00,\"\",0.00,136.00,90.00,541.00,,,,,,\n2015,5,20,\"B6\",\"1119\",\"JFK\",\"CLT\",-5.00,-48.00,0.00,\"\",0.00,99.00,80.00,541.00,,,,,,\n2015,5,21,\"B6\",\"1119\",\"JFK\",\"CLT\",-1.00,-30.00,0.00,\"\",0.00,113.00,87.00,541.00,,,,,,\n2015,5,22,\"B6\",\"1119\",\"JFK\",\"CLT\",49.00,17.00,0.00,\"\",0.00,110.00,83.00,541.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"1119\",\"JFK\",\"CLT\",-2.00,-22.00,0.00,\"\",0.00,122.00,81.00,541.00,,,,,,\n2015,5,24,\"B6\",\"1119\",\"JFK\",\"CLT\",-5.00,-38.00,0.00,\"\",0.00,109.00,76.00,541.00,,,,,,\n2015,5,25,\"B6\",\"1119\",\"JFK\",\"CLT\",-3.00,-30.00,0.00,\"\",0.00,115.00,80.00,541.00,,,,,,\n2015,5,26,\"B6\",\"1119\",\"JFK\",\"CLT\",-4.00,-21.00,0.00,\"\",0.00,125.00,78.00,541.00,,,,,,\n2015,5,27,\"B6\",\"1119\",\"JFK\",\"CLT\",,,1.00,\"C\",0.00,,,541.00,,,,,,\n2015,5,28,\"B6\",\"1119\",\"JFK\",\"CLT\",-2.00,-39.00,0.00,\"\",0.00,105.00,80.00,541.00,,,,,,\n2015,5,29,\"B6\",\"1119\",\"JFK\",\"CLT\",-4.00,-27.00,0.00,\"\",0.00,119.00,90.00,541.00,,,,,,\n2015,5,30,\"B6\",\"1119\",\"JFK\",\"CLT\",-6.00,-10.00,0.00,\"\",0.00,138.00,95.00,541.00,,,,,,\n2015,5,31,\"B6\",\"1119\",\"JFK\",\"CLT\",14.00,24.00,0.00,\"\",0.00,152.00,95.00,541.00,10.00,0.00,10.00,0.00,4.00,\n2015,5,1,\"B6\",\"653\",\"JFK\",\"PBI\",-11.00,-6.00,0.00,\"\",0.00,177.00,149.00,1028.00,,,,,,\n2015,5,2,\"B6\",\"653\",\"JFK\",\"PBI\",0.00,-14.00,0.00,\"\",0.00,158.00,138.00,1028.00,,,,,,\n2015,5,3,\"B6\",\"653\",\"JFK\",\"PBI\",-10.00,-21.00,0.00,\"\",0.00,161.00,141.00,1028.00,,,,,,\n2015,5,4,\"B6\",\"653\",\"JFK\",\"PBI\",-10.00,-9.00,0.00,\"\",0.00,173.00,145.00,1028.00,,,,,,\n2015,5,5,\"B6\",\"653\",\"JFK\",\"PBI\",-6.00,-16.00,0.00,\"\",0.00,162.00,144.00,1028.00,,,,,,\n2015,5,6,\"B6\",\"653\",\"JFK\",\"PBI\",-5.00,-13.00,0.00,\"\",0.00,164.00,143.00,1028.00,,,,,,\n2015,5,7,\"B6\",\"653\",\"JFK\",\"PBI\",-6.00,-15.00,0.00,\"\",0.00,163.00,139.00,1028.00,,,,,,\n2015,5,8,\"B6\",\"653\",\"JFK\",\"PBI\",-8.00,-4.00,0.00,\"\",0.00,176.00,138.00,1028.00,,,,,,\n2015,5,9,\"B6\",\"653\",\"JFK\",\"PBI\",-6.00,-20.00,0.00,\"\",0.00,158.00,134.00,1028.00,,,,,,\n2015,5,10,\"B6\",\"653\",\"JFK\",\"PBI\",-9.00,-28.00,0.00,\"\",0.00,153.00,140.00,1028.00,,,,,,\n2015,5,11,\"B6\",\"653\",\"JFK\",\"PBI\",-1.00,-6.00,0.00,\"\",0.00,167.00,142.00,1028.00,,,,,,\n2015,5,12,\"B6\",\"653\",\"JFK\",\"PBI\",-7.00,-2.00,0.00,\"\",0.00,177.00,133.00,1028.00,,,,,,\n2015,5,13,\"B6\",\"653\",\"JFK\",\"PBI\",-10.00,-21.00,0.00,\"\",0.00,161.00,143.00,1028.00,,,,,,\n2015,5,14,\"B6\",\"653\",\"JFK\",\"PBI\",-9.00,-30.00,0.00,\"\",0.00,151.00,131.00,1028.00,,,,,,\n2015,5,15,\"B6\",\"653\",\"JFK\",\"PBI\",-5.00,6.00,0.00,\"\",0.00,183.00,143.00,1028.00,,,,,,\n2015,5,16,\"B6\",\"653\",\"JFK\",\"PBI\",15.00,3.00,0.00,\"\",0.00,160.00,132.00,1028.00,,,,,,\n2015,5,17,\"B6\",\"653\",\"JFK\",\"PBI\",-9.00,-26.00,0.00,\"\",0.00,155.00,133.00,1028.00,,,,,,\n2015,5,18,\"B6\",\"653\",\"JFK\",\"PBI\",23.00,31.00,0.00,\"\",0.00,180.00,139.00,1028.00,23.00,0.00,8.00,0.00,0.00,\n2015,5,19,\"B6\",\"653\",\"JFK\",\"PBI\",-6.00,-16.00,0.00,\"\",0.00,162.00,137.00,1028.00,,,,,,\n2015,5,20,\"B6\",\"653\",\"JFK\",\"PBI\",-6.00,-24.00,0.00,\"\",0.00,154.00,130.00,1028.00,,,,,,\n2015,5,21,\"B6\",\"653\",\"JFK\",\"PBI\",-4.00,-11.00,0.00,\"\",0.00,165.00,142.00,1028.00,,,,,,\n2015,5,22,\"B6\",\"653\",\"JFK\",\"PBI\",-5.00,-11.00,0.00,\"\",0.00,166.00,148.00,1028.00,,,,,,\n2015,5,23,\"B6\",\"653\",\"JFK\",\"PBI\",-4.00,-24.00,0.00,\"\",0.00,152.00,137.00,1028.00,,,,,,\n2015,5,24,\"B6\",\"653\",\"JFK\",\"PBI\",-12.00,-39.00,0.00,\"\",0.00,145.00,130.00,1028.00,,,,,,\n2015,5,25,\"B6\",\"653\",\"JFK\",\"PBI\",-9.00,-27.00,0.00,\"\",0.00,154.00,136.00,1028.00,,,,,,\n2015,5,26,\"B6\",\"653\",\"JFK\",\"PBI\",-4.00,-19.00,0.00,\"\",0.00,157.00,133.00,1028.00,,,,,,\n2015,5,27,\"B6\",\"653\",\"JFK\",\"PBI\",8.00,13.00,0.00,\"\",0.00,177.00,126.00,1028.00,,,,,,\n2015,5,1,\"B6\",\"913\",\"HPN\",\"FLL\",2.00,1.00,0.00,\"\",0.00,174.00,152.00,1097.00,,,,,,\n2015,5,2,\"B6\",\"913\",\"HPN\",\"FLL\",-5.00,1.00,0.00,\"\",0.00,181.00,150.00,1097.00,,,,,,\n2015,5,3,\"B6\",\"913\",\"HPN\",\"FLL\",-8.00,-16.00,0.00,\"\",0.00,167.00,145.00,1097.00,,,,,,\n2015,5,4,\"B6\",\"913\",\"HPN\",\"FLL\",-10.00,-20.00,0.00,\"\",0.00,165.00,153.00,1097.00,,,,,,\n2015,5,5,\"B6\",\"913\",\"HPN\",\"FLL\",-7.00,-8.00,0.00,\"\",0.00,174.00,154.00,1097.00,,,,,,\n2015,5,6,\"B6\",\"913\",\"HPN\",\"FLL\",-1.00,4.00,0.00,\"\",0.00,180.00,167.00,1097.00,,,,,,\n2015,5,7,\"B6\",\"913\",\"HPN\",\"FLL\",-3.00,-9.00,0.00,\"\",0.00,169.00,148.00,1097.00,,,,,,\n2015,5,8,\"B6\",\"913\",\"HPN\",\"FLL\",-1.00,-1.00,0.00,\"\",0.00,175.00,151.00,1097.00,,,,,,\n2015,5,9,\"B6\",\"913\",\"HPN\",\"FLL\",-8.00,-24.00,0.00,\"\",0.00,159.00,144.00,1097.00,,,,,,\n2015,5,10,\"B6\",\"913\",\"JFK\",\"FLL\",106.00,108.00,0.00,\"\",0.00,177.00,148.00,1069.00,106.00,0.00,2.00,0.00,0.00,\n2015,5,11,\"B6\",\"913\",\"HPN\",\"FLL\",11.00,14.00,0.00,\"\",0.00,178.00,158.00,1097.00,,,,,,\n2015,5,12,\"B6\",\"913\",\"HPN\",\"FLL\",-9.00,-28.00,0.00,\"\",0.00,156.00,140.00,1097.00,,,,,,\n2015,5,13,\"B6\",\"913\",\"HPN\",\"FLL\",-7.00,-14.00,0.00,\"\",0.00,168.00,153.00,1097.00,,,,,,\n2015,5,14,\"B6\",\"913\",\"HPN\",\"FLL\",-6.00,-30.00,0.00,\"\",0.00,151.00,137.00,1097.00,,,,,,\n2015,5,15,\"B6\",\"913\",\"HPN\",\"FLL\",-6.00,-11.00,0.00,\"\",0.00,170.00,153.00,1097.00,,,,,,\n2015,5,16,\"B6\",\"913\",\"HPN\",\"FLL\",-9.00,-29.00,0.00,\"\",0.00,155.00,139.00,1097.00,,,,,,\n2015,5,17,\"B6\",\"913\",\"HPN\",\"FLL\",-7.00,-27.00,0.00,\"\",0.00,155.00,141.00,1097.00,,,,,,\n2015,5,18,\"B6\",\"913\",\"HPN\",\"FLL\",-8.00,-18.00,0.00,\"\",0.00,165.00,142.00,1097.00,,,,,,\n2015,5,19,\"B6\",\"913\",\"HPN\",\"FLL\",-1.00,-8.00,0.00,\"\",0.00,168.00,145.00,1097.00,,,,,,\n2015,5,20,\"B6\",\"913\",\"HPN\",\"FLL\",-7.00,-22.00,0.00,\"\",0.00,160.00,145.00,1097.00,,,,,,\n2015,5,21,\"B6\",\"913\",\"HPN\",\"FLL\",-14.00,-8.00,0.00,\"\",0.00,181.00,159.00,1097.00,,,,,,\n2015,5,22,\"B6\",\"913\",\"HPN\",\"FLL\",-3.00,-9.00,0.00,\"\",0.00,169.00,150.00,1097.00,,,,,,\n2015,5,23,\"B6\",\"913\",\"HPN\",\"FLL\",-8.00,-12.00,0.00,\"\",0.00,171.00,145.00,1097.00,,,,,,\n2015,5,24,\"B6\",\"913\",\"HPN\",\"FLL\",-11.00,-8.00,0.00,\"\",0.00,178.00,139.00,1097.00,,,,,,\n2015,5,25,\"B6\",\"913\",\"HPN\",\"FLL\",-9.00,-20.00,0.00,\"\",0.00,164.00,145.00,1097.00,,,,,,\n2015,5,26,\"B6\",\"913\",\"HPN\",\"FLL\",-10.00,-17.00,0.00,\"\",0.00,168.00,153.00,1097.00,,,,,,\n2015,5,27,\"B6\",\"913\",\"HPN\",\"FLL\",-10.00,-2.00,0.00,\"\",0.00,183.00,151.00,1097.00,,,,,,\n2015,5,28,\"B6\",\"913\",\"HPN\",\"FLL\",-9.00,-24.00,0.00,\"\",0.00,160.00,146.00,1097.00,,,,,,\n2015,5,29,\"B6\",\"913\",\"HPN\",\"FLL\",0.00,-19.00,0.00,\"\",0.00,156.00,141.00,1097.00,,,,,,\n2015,5,30,\"B6\",\"913\",\"HPN\",\"FLL\",-7.00,-11.00,0.00,\"\",0.00,171.00,148.00,1097.00,,,,,,\n2015,5,31,\"B6\",\"913\",\"HPN\",\"FLL\",-5.00,-11.00,0.00,\"\",0.00,169.00,149.00,1097.00,,,,,,\n2015,5,1,\"B6\",\"914\",\"FLL\",\"HPN\",-13.00,-29.00,0.00,\"\",0.00,161.00,142.00,1097.00,,,,,,\n2015,5,2,\"B6\",\"914\",\"FLL\",\"HPN\",-10.00,-37.00,0.00,\"\",0.00,150.00,139.00,1097.00,,,,,,\n2015,5,3,\"B6\",\"914\",\"FLL\",\"HPN\",-7.00,-13.00,0.00,\"\",0.00,171.00,153.00,1097.00,,,,,,\n2015,5,4,\"B6\",\"914\",\"FLL\",\"HPN\",-3.00,-16.00,0.00,\"\",0.00,164.00,152.00,1097.00,,,,,,\n2015,5,5,\"B6\",\"914\",\"FLL\",\"HPN\",0.00,3.00,0.00,\"\",0.00,180.00,155.00,1097.00,,,,,,\n2015,5,6,\"B6\",\"914\",\"FLL\",\"HPN\",17.00,14.00,0.00,\"\",0.00,174.00,149.00,1097.00,,,,,,\n2015,5,7,\"B6\",\"914\",\"FLL\",\"HPN\",-7.00,-8.00,0.00,\"\",0.00,176.00,159.00,1097.00,,,,,,\n2015,5,8,\"B6\",\"914\",\"FLL\",\"HPN\",-3.00,-1.00,0.00,\"\",0.00,179.00,160.00,1097.00,,,,,,\n2015,5,9,\"B6\",\"914\",\"FLL\",\"HPN\",-4.00,7.00,0.00,\"\",0.00,188.00,167.00,1097.00,,,,,,\n2015,5,10,\"B6\",\"914\",\"FLL\",\"HPN\",-8.00,-4.00,0.00,\"\",0.00,181.00,160.00,1097.00,,,,,,\n2015,5,11,\"B6\",\"914\",\"FLL\",\"HPN\",-5.00,-11.00,0.00,\"\",0.00,171.00,156.00,1097.00,,,,,,\n2015,5,12,\"B6\",\"914\",\"FLL\",\"HPN\",64.00,60.00,0.00,\"\",0.00,173.00,153.00,1097.00,60.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"B6\",\"914\",\"FLL\",\"HPN\",-8.00,-26.00,0.00,\"\",0.00,159.00,143.00,1097.00,,,,,,\n2015,5,14,\"B6\",\"914\",\"FLL\",\"HPN\",-3.00,-1.00,0.00,\"\",0.00,179.00,162.00,1097.00,,,,,,\n2015,5,15,\"B6\",\"914\",\"FLL\",\"HPN\",-10.00,-24.00,0.00,\"\",0.00,163.00,145.00,1097.00,,,,,,\n2015,5,16,\"B6\",\"914\",\"FLL\",\"HPN\",-12.00,-10.00,0.00,\"\",0.00,179.00,157.00,1097.00,,,,,,\n2015,5,17,\"B6\",\"914\",\"FLL\",\"HPN\",-8.00,-15.00,0.00,\"\",0.00,170.00,154.00,1097.00,,,,,,\n2015,5,18,\"B6\",\"914\",\"FLL\",\"HPN\",-3.00,-5.00,0.00,\"\",0.00,175.00,156.00,1097.00,,,,,,\n2015,5,19,\"B6\",\"914\",\"FLL\",\"HPN\",-8.00,-4.00,0.00,\"\",0.00,181.00,162.00,1097.00,,,,,,\n2015,5,20,\"B6\",\"914\",\"FLL\",\"HPN\",-4.00,-20.00,0.00,\"\",0.00,161.00,145.00,1097.00,,,,,,\n2015,5,21,\"B6\",\"914\",\"FLL\",\"HPN\",-1.00,-9.00,0.00,\"\",0.00,169.00,148.00,1097.00,,,,,,\n2015,5,22,\"B6\",\"914\",\"FLL\",\"HPN\",-8.00,-24.00,0.00,\"\",0.00,161.00,148.00,1097.00,,,,,,\n2015,5,23,\"B6\",\"914\",\"FLL\",\"HPN\",-2.00,-14.00,0.00,\"\",0.00,165.00,152.00,1097.00,,,,,,\n2015,5,24,\"B6\",\"914\",\"FLL\",\"HPN\",-7.00,-11.00,0.00,\"\",0.00,173.00,157.00,1097.00,,,,,,\n2015,5,25,\"B6\",\"914\",\"FLL\",\"HPN\",-6.00,-16.00,0.00,\"\",0.00,167.00,147.00,1097.00,,,,,,\n2015,5,26,\"B6\",\"914\",\"FLL\",\"HPN\",-5.00,-16.00,0.00,\"\",0.00,166.00,148.00,1097.00,,,,,,\n2015,5,27,\"B6\",\"914\",\"FLL\",\"HPN\",-5.00,-15.00,0.00,\"\",0.00,167.00,148.00,1097.00,,,,,,\n2015,5,28,\"B6\",\"914\",\"FLL\",\"HPN\",0.00,-13.00,0.00,\"\",0.00,164.00,150.00,1097.00,,,,,,\n2015,5,29,\"B6\",\"914\",\"FLL\",\"HPN\",56.00,53.00,0.00,\"\",0.00,174.00,157.00,1097.00,53.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"B6\",\"914\",\"FLL\",\"HPN\",-6.00,-13.00,0.00,\"\",0.00,170.00,151.00,1097.00,,,,,,\n2015,5,31,\"B6\",\"914\",\"FLL\",\"HPN\",-6.00,-20.00,0.00,\"\",0.00,163.00,151.00,1097.00,,,,,,\n2015,5,1,\"B6\",\"915\",\"JFK\",\"SFO\",4.00,-41.00,0.00,\"\",0.00,362.00,336.00,2586.00,,,,,,\n2015,5,2,\"B6\",\"915\",\"JFK\",\"SFO\",-2.00,-34.00,0.00,\"\",0.00,375.00,337.00,2586.00,,,,,,\n2015,5,3,\"B6\",\"915\",\"JFK\",\"SFO\",3.00,-37.00,0.00,\"\",0.00,367.00,332.00,2586.00,,,,,,\n2015,5,4,\"B6\",\"915\",\"JFK\",\"SFO\",35.00,42.00,0.00,\"\",0.00,414.00,384.00,2586.00,35.00,0.00,7.00,0.00,0.00,\n2015,5,5,\"B6\",\"915\",\"JFK\",\"SFO\",-5.00,-3.00,0.00,\"\",0.00,409.00,379.00,2586.00,,,,,,\n2015,5,6,\"B6\",\"915\",\"JFK\",\"SFO\",-3.00,-20.00,0.00,\"\",0.00,390.00,341.00,2586.00,,,,,,\n2015,5,7,\"B6\",\"915\",\"JFK\",\"SFO\",-5.00,-36.00,0.00,\"\",0.00,376.00,343.00,2586.00,,,,,,\n2015,5,8,\"B6\",\"915\",\"JFK\",\"SFO\",-2.00,-5.00,0.00,\"\",0.00,404.00,354.00,2586.00,,,,,,\n2015,5,9,\"B6\",\"915\",\"JFK\",\"SFO\",-3.00,-48.00,0.00,\"\",0.00,362.00,338.00,2586.00,,,,,,\n2015,5,10,\"B6\",\"915\",\"JFK\",\"SFO\",-3.00,13.00,0.00,\"\",0.00,423.00,387.00,2586.00,,,,,,\n2015,5,11,\"B6\",\"915\",\"JFK\",\"SFO\",-7.00,6.00,0.00,\"\",0.00,420.00,372.00,2586.00,,,,,,\n2015,5,12,\"B6\",\"915\",\"JFK\",\"SFO\",-4.00,-5.00,0.00,\"\",0.00,406.00,374.00,2586.00,,,,,,\n2015,5,13,\"B6\",\"915\",\"JFK\",\"SFO\",-5.00,-23.00,0.00,\"\",0.00,389.00,344.00,2586.00,,,,,,\n2015,5,14,\"B6\",\"915\",\"JFK\",\"SFO\",4.00,-29.00,0.00,\"\",0.00,374.00,346.00,2586.00,,,,,,\n2015,5,15,\"B6\",\"915\",\"JFK\",\"SFO\",-1.00,-14.00,0.00,\"\",0.00,394.00,362.00,2586.00,,,,,,\n2015,5,16,\"B6\",\"915\",\"JFK\",\"SFO\",-6.00,-12.00,0.00,\"\",0.00,401.00,364.00,2586.00,,,,,,\n2015,5,17,\"B6\",\"915\",\"JFK\",\"SFO\",-5.00,-20.00,0.00,\"\",0.00,392.00,362.00,2586.00,,,,,,\n2015,5,18,\"B6\",\"915\",\"JFK\",\"SFO\",76.00,66.00,0.00,\"\",0.00,397.00,361.00,2586.00,0.00,66.00,0.00,0.00,0.00,\n2015,5,19,\"B6\",\"915\",\"JFK\",\"SFO\",-5.00,-7.00,0.00,\"\",0.00,405.00,357.00,2586.00,,,,,,\n2015,5,20,\"B6\",\"915\",\"JFK\",\"SFO\",21.00,11.00,0.00,\"\",0.00,397.00,365.00,2586.00,,,,,,\n2015,5,21,\"B6\",\"915\",\"JFK\",\"SFO\",90.00,66.00,0.00,\"\",0.00,383.00,345.00,2586.00,0.00,0.00,66.00,0.00,0.00,\n2015,5,22,\"B6\",\"915\",\"JFK\",\"SFO\",3.00,-15.00,0.00,\"\",0.00,389.00,355.00,2586.00,,,,,,\n2015,5,23,\"B6\",\"915\",\"JFK\",\"SFO\",-3.00,-12.00,0.00,\"\",0.00,398.00,368.00,2586.00,,,,,,\n2015,5,24,\"B6\",\"915\",\"JFK\",\"SFO\",-4.00,-50.00,0.00,\"\",0.00,361.00,330.00,2586.00,,,,,,\n2015,5,25,\"B6\",\"915\",\"JFK\",\"SFO\",5.00,-25.00,0.00,\"\",0.00,377.00,348.00,2586.00,,,,,,\n2015,5,26,\"B6\",\"915\",\"JFK\",\"SFO\",-1.00,-7.00,0.00,\"\",0.00,401.00,371.00,2586.00,,,,,,\n2015,5,27,\"B6\",\"915\",\"JFK\",\"SFO\",-4.00,84.00,0.00,\"\",0.00,495.00,386.00,2586.00,0.00,0.00,84.00,0.00,0.00,\n2015,5,28,\"B6\",\"915\",\"JFK\",\"SFO\",-4.00,-11.00,0.00,\"\",0.00,400.00,368.00,2586.00,,,,,,\n2015,5,29,\"B6\",\"915\",\"JFK\",\"SFO\",-3.00,-3.00,0.00,\"\",0.00,407.00,361.00,2586.00,,,,,,\n2015,5,30,\"B6\",\"915\",\"JFK\",\"SFO\",-3.00,14.00,0.00,\"\",0.00,424.00,382.00,2586.00,,,,,,\n2015,5,31,\"B6\",\"915\",\"JFK\",\"SFO\",-6.00,-35.00,0.00,\"\",0.00,378.00,337.00,2586.00,,,,,,\n2015,5,1,\"B6\",\"916\",\"SFO\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,322.00,302.00,2586.00,,,,,,\n2015,5,2,\"B6\",\"916\",\"SFO\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,324.00,304.00,2586.00,,,,,,\n2015,5,3,\"B6\",\"916\",\"SFO\",\"JFK\",-9.00,-2.00,0.00,\"\",0.00,345.00,311.00,2586.00,,,,,,\n2015,5,4,\"B6\",\"916\",\"SFO\",\"JFK\",43.00,29.00,0.00,\"\",0.00,324.00,301.00,2586.00,7.00,0.00,0.00,0.00,22.00,\n2015,5,5,\"B6\",\"916\",\"SFO\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,323.00,308.00,2586.00,,,,,,\n2015,5,6,\"B6\",\"916\",\"SFO\",\"JFK\",-3.00,-2.00,0.00,\"\",0.00,339.00,310.00,2586.00,,,,,,\n2015,5,7,\"B6\",\"916\",\"SFO\",\"JFK\",-8.00,34.00,0.00,\"\",0.00,380.00,357.00,2586.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,8,\"B6\",\"916\",\"SFO\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,345.00,327.00,2586.00,,,,,,\n2015,5,9,\"B6\",\"916\",\"SFO\",\"JFK\",-4.00,-2.00,0.00,\"\",0.00,340.00,316.00,2586.00,,,,,,\n2015,5,10,\"B6\",\"916\",\"SFO\",\"JFK\",6.00,-4.00,0.00,\"\",0.00,328.00,310.00,2586.00,,,,,,\n2015,5,11,\"B6\",\"916\",\"SFO\",\"JFK\",0.00,-32.00,0.00,\"\",0.00,306.00,288.00,2586.00,,,,,,\n2015,5,12,\"B6\",\"916\",\"SFO\",\"JFK\",-1.00,-26.00,0.00,\"\",0.00,313.00,289.00,2586.00,,,,,,\n2015,5,13,\"B6\",\"916\",\"SFO\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,313.00,296.00,2586.00,,,,,,\n2015,5,14,\"B6\",\"916\",\"SFO\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,325.00,299.00,2586.00,,,,,,\n2015,5,15,\"B6\",\"916\",\"SFO\",\"JFK\",2.00,-5.00,0.00,\"\",0.00,331.00,311.00,2586.00,,,,,,\n2015,5,16,\"B6\",\"916\",\"SFO\",\"JFK\",0.00,3.00,0.00,\"\",0.00,341.00,321.00,2586.00,,,,,,\n2015,5,17,\"B6\",\"916\",\"SFO\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,326.00,307.00,2586.00,,,,,,\n2015,5,18,\"B6\",\"916\",\"SFO\",\"JFK\",114.00,132.00,0.00,\"\",0.00,356.00,325.00,2586.00,58.00,0.00,18.00,0.00,56.00,\n2015,5,19,\"B6\",\"916\",\"SFO\",\"JFK\",-4.00,-29.00,0.00,\"\",0.00,313.00,292.00,2586.00,,,,,,\n2015,5,20,\"B6\",\"916\",\"SFO\",\"JFK\",-1.00,-33.00,0.00,\"\",0.00,306.00,283.00,2586.00,,,,,,\n2015,5,21,\"B6\",\"916\",\"SFO\",\"JFK\",90.00,77.00,0.00,\"\",0.00,325.00,304.00,2586.00,29.00,0.00,0.00,0.00,48.00,\n2015,5,22,\"B6\",\"916\",\"SFO\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,320.00,301.00,2586.00,,,,,,\n2015,5,23,\"B6\",\"916\",\"SFO\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,321.00,295.00,2586.00,,,,,,\n2015,5,24,\"B6\",\"916\",\"SFO\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,317.00,305.00,2586.00,,,,,,\n2015,5,25,\"B6\",\"916\",\"SFO\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,320.00,303.00,2586.00,,,,,,\n2015,5,26,\"B6\",\"916\",\"SFO\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,326.00,307.00,2586.00,,,,,,\n2015,5,27,\"B6\",\"916\",\"SFO\",\"JFK\",80.00,86.00,0.00,\"\",0.00,344.00,315.00,2586.00,6.00,0.00,6.00,0.00,74.00,\n2015,5,28,\"B6\",\"916\",\"SFO\",\"JFK\",3.00,13.00,0.00,\"\",0.00,348.00,310.00,2586.00,,,,,,\n2015,5,29,\"B6\",\"916\",\"SFO\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,323.00,301.00,2586.00,,,,,,\n2015,5,30,\"B6\",\"916\",\"SFO\",\"JFK\",49.00,39.00,0.00,\"\",0.00,328.00,304.00,2586.00,36.00,0.00,0.00,0.00,3.00,\n2015,5,31,\"B6\",\"916\",\"SFO\",\"JFK\",-9.00,-30.00,0.00,\"\",0.00,317.00,297.00,2586.00,,,,,,\n2015,5,1,\"B6\",\"917\",\"BOS\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,65.00,48.00,187.00,,,,,,\n2015,5,2,\"B6\",\"917\",\"BOS\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,65.00,42.00,187.00,,,,,,\n2015,5,3,\"B6\",\"917\",\"BOS\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,56.00,41.00,187.00,,,,,,\n2015,5,4,\"B6\",\"917\",\"BOS\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,66.00,38.00,187.00,,,,,,\n2015,5,5,\"B6\",\"917\",\"BOS\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,66.00,41.00,187.00,,,,,,\n2015,5,6,\"B6\",\"917\",\"BOS\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,54.00,35.00,187.00,,,,,,\n2015,5,7,\"B6\",\"917\",\"BOS\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,62.00,47.00,187.00,,,,,,\n2015,5,8,\"B6\",\"917\",\"BOS\",\"JFK\",-5.00,76.00,0.00,\"\",0.00,154.00,74.00,187.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,9,\"B6\",\"917\",\"BOS\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,72.00,52.00,187.00,,,,,,\n2015,5,10,\"B6\",\"917\",\"BOS\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,57.00,40.00,187.00,,,,,,\n2015,5,11,\"B6\",\"917\",\"BOS\",\"JFK\",40.00,29.00,0.00,\"\",0.00,62.00,39.00,187.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"B6\",\"917\",\"BOS\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,57.00,39.00,187.00,,,,,,\n2015,5,13,\"B6\",\"917\",\"BOS\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,60.00,42.00,187.00,,,,,,\n2015,5,14,\"B6\",\"917\",\"BOS\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,62.00,39.00,187.00,,,,,,\n2015,5,15,\"B6\",\"917\",\"BOS\",\"JFK\",4.00,7.00,0.00,\"\",0.00,76.00,45.00,187.00,,,,,,\n2015,5,16,\"B6\",\"917\",\"BOS\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,65.00,45.00,187.00,,,,,,\n2015,5,17,\"B6\",\"917\",\"BOS\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,57.00,39.00,187.00,,,,,,\n2015,5,18,\"B6\",\"917\",\"BOS\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,54.00,34.00,187.00,,,,,,\n2015,5,19,\"B6\",\"917\",\"BOS\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,65.00,49.00,187.00,,,,,,\n2015,5,20,\"B6\",\"917\",\"BOS\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,61.00,41.00,187.00,,,,,,\n2015,5,21,\"B6\",\"917\",\"BOS\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,53.00,39.00,187.00,,,,,,\n2015,5,23,\"B6\",\"917\",\"BOS\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,61.00,37.00,187.00,,,,,,\n2015,5,24,\"B6\",\"917\",\"BOS\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,57.00,39.00,187.00,,,,,,\n2015,5,25,\"B6\",\"917\",\"BOS\",\"JFK\",-8.00,-15.00,0.00,\"\",0.00,66.00,40.00,187.00,,,,,,\n2015,5,26,\"B6\",\"917\",\"BOS\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,56.00,39.00,187.00,,,,,,\n2015,5,27,\"B6\",\"917\",\"BOS\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,58.00,40.00,187.00,,,,,,\n2015,5,28,\"B6\",\"917\",\"BOS\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,60.00,43.00,187.00,,,,,,\n2015,5,29,\"B6\",\"917\",\"BOS\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,59.00,37.00,187.00,,,,,,\n2015,5,30,\"B6\",\"917\",\"BOS\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,64.00,46.00,187.00,,,,,,\n2015,5,31,\"B6\",\"917\",\"BOS\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,59.00,43.00,187.00,,,,,,\n2015,5,1,\"B6\",\"918\",\"JFK\",\"BOS\",-4.00,-30.00,0.00,\"\",0.00,70.00,37.00,187.00,,,,,,\n2015,5,2,\"B6\",\"918\",\"JFK\",\"BOS\",-3.00,-36.00,0.00,\"\",0.00,64.00,37.00,187.00,,,,,,\n2015,5,3,\"B6\",\"918\",\"JFK\",\"BOS\",-4.00,-23.00,0.00,\"\",0.00,77.00,48.00,187.00,,,,,,\n2015,5,4,\"B6\",\"918\",\"JFK\",\"BOS\",-2.00,-18.00,0.00,\"\",0.00,80.00,42.00,187.00,,,,,,\n2015,5,5,\"B6\",\"918\",\"JFK\",\"BOS\",-3.00,-31.00,0.00,\"\",0.00,68.00,36.00,187.00,,,,,,\n2015,5,6,\"B6\",\"918\",\"JFK\",\"BOS\",1.00,-10.00,0.00,\"\",0.00,85.00,54.00,187.00,,,,,,\n2015,5,7,\"B6\",\"918\",\"JFK\",\"BOS\",-1.00,-31.00,0.00,\"\",0.00,66.00,41.00,187.00,,,,,,\n2015,5,8,\"B6\",\"918\",\"JFK\",\"BOS\",0.00,-11.00,0.00,\"\",0.00,85.00,38.00,187.00,,,,,,\n2015,5,9,\"B6\",\"918\",\"JFK\",\"BOS\",-10.00,-35.00,0.00,\"\",0.00,72.00,40.00,187.00,,,,,,\n2015,5,10,\"B6\",\"918\",\"JFK\",\"BOS\",-5.00,-18.00,0.00,\"\",0.00,83.00,41.00,187.00,,,,,,\n2015,5,11,\"B6\",\"918\",\"JFK\",\"BOS\",,,1.00,\"C\",0.00,,,187.00,,,,,,\n2015,5,12,\"B6\",\"918\",\"JFK\",\"BOS\",2.00,-9.00,0.00,\"\",0.00,85.00,46.00,187.00,,,,,,\n2015,5,13,\"B6\",\"918\",\"JFK\",\"BOS\",-6.00,-22.00,0.00,\"\",0.00,80.00,45.00,187.00,,,,,,\n2015,5,14,\"B6\",\"918\",\"JFK\",\"BOS\",-8.00,-35.00,0.00,\"\",0.00,69.00,39.00,187.00,,,,,,\n2015,5,15,\"B6\",\"918\",\"JFK\",\"BOS\",-2.00,-31.00,0.00,\"\",0.00,67.00,34.00,187.00,,,,,,\n2015,5,16,\"B6\",\"918\",\"JFK\",\"BOS\",-8.00,-36.00,0.00,\"\",0.00,69.00,39.00,187.00,,,,,,\n2015,5,17,\"B6\",\"918\",\"JFK\",\"BOS\",17.00,-13.00,0.00,\"\",0.00,66.00,38.00,187.00,,,,,,\n2015,5,18,\"B6\",\"918\",\"JFK\",\"BOS\",80.00,76.00,0.00,\"\",0.00,92.00,34.00,187.00,3.00,0.00,0.00,0.00,73.00,\n2015,5,19,\"B6\",\"918\",\"JFK\",\"BOS\",4.00,-2.00,0.00,\"\",0.00,90.00,46.00,187.00,,,,,,\n2015,5,20,\"B6\",\"918\",\"JFK\",\"BOS\",-4.00,-36.00,0.00,\"\",0.00,64.00,39.00,187.00,,,,,,\n2015,5,21,\"B6\",\"918\",\"JFK\",\"BOS\",-4.00,-21.00,0.00,\"\",0.00,79.00,43.00,187.00,,,,,,\n2015,5,22,\"B6\",\"918\",\"JFK\",\"BOS\",232.00,202.00,0.00,\"\",0.00,66.00,39.00,187.00,4.00,0.00,0.00,0.00,198.00,\n2015,5,23,\"B6\",\"918\",\"JFK\",\"BOS\",-7.00,-30.00,0.00,\"\",0.00,74.00,40.00,187.00,,,,,,\n2015,5,24,\"B6\",\"918\",\"JFK\",\"BOS\",10.00,-11.00,0.00,\"\",0.00,75.00,45.00,187.00,,,,,,\n2015,5,25,\"B6\",\"918\",\"JFK\",\"BOS\",-8.00,-28.00,0.00,\"\",0.00,76.00,46.00,187.00,,,,,,\n2015,5,26,\"B6\",\"918\",\"JFK\",\"BOS\",-3.00,-28.00,0.00,\"\",0.00,71.00,44.00,187.00,,,,,,\n2015,5,27,\"B6\",\"918\",\"JFK\",\"BOS\",240.00,212.00,0.00,\"\",0.00,68.00,37.00,187.00,0.00,10.00,0.00,0.00,202.00,\n2015,5,28,\"B6\",\"918\",\"JFK\",\"BOS\",-5.00,1.00,0.00,\"\",0.00,102.00,52.00,187.00,,,,,,\n2015,5,29,\"B6\",\"918\",\"JFK\",\"BOS\",134.00,120.00,0.00,\"\",0.00,82.00,34.00,187.00,0.00,0.00,120.00,0.00,0.00,\n2015,5,30,\"B6\",\"918\",\"JFK\",\"BOS\",-8.00,-14.00,0.00,\"\",0.00,91.00,51.00,187.00,,,,,,\n2015,5,31,\"B6\",\"918\",\"JFK\",\"BOS\",,,1.00,\"C\",0.00,,,187.00,,,,,,\n2015,5,1,\"B6\",\"925\",\"JFK\",\"TPA\",-10.00,-17.00,0.00,\"\",0.00,165.00,142.00,1005.00,,,,,,\n2015,5,2,\"B6\",\"925\",\"JFK\",\"TPA\",21.00,17.00,0.00,\"\",0.00,168.00,134.00,1005.00,9.00,0.00,0.00,0.00,8.00,\n2015,5,3,\"B6\",\"925\",\"JFK\",\"TPA\",-3.00,-14.00,0.00,\"\",0.00,161.00,139.00,1005.00,,,,,,\n2015,5,4,\"B6\",\"925\",\"JFK\",\"TPA\",-9.00,-25.00,0.00,\"\",0.00,156.00,134.00,1005.00,,,,,,\n2015,5,5,\"B6\",\"925\",\"JFK\",\"TPA\",-4.00,-19.00,0.00,\"\",0.00,157.00,138.00,1005.00,,,,,,\n2015,5,6,\"B6\",\"925\",\"JFK\",\"TPA\",-3.00,-6.00,0.00,\"\",0.00,169.00,144.00,1005.00,,,,,,\n2015,5,7,\"B6\",\"925\",\"JFK\",\"TPA\",-10.00,-17.00,0.00,\"\",0.00,165.00,137.00,1005.00,,,,,,\n2015,5,8,\"B6\",\"925\",\"JFK\",\"TPA\",12.00,1.00,0.00,\"\",0.00,161.00,136.00,1005.00,,,,,,\n2015,5,9,\"B6\",\"925\",\"JFK\",\"TPA\",-5.00,-20.00,0.00,\"\",0.00,157.00,128.00,1005.00,,,,,,\n2015,5,10,\"B6\",\"925\",\"JFK\",\"TPA\",-3.00,-19.00,0.00,\"\",0.00,156.00,133.00,1005.00,,,,,,\n2015,5,11,\"B6\",\"925\",\"JFK\",\"TPA\",-7.00,-31.00,0.00,\"\",0.00,148.00,131.00,1005.00,,,,,,\n2015,5,12,\"B6\",\"925\",\"JFK\",\"TPA\",-3.00,-18.00,0.00,\"\",0.00,157.00,141.00,1005.00,,,,,,\n2015,5,13,\"B6\",\"925\",\"JFK\",\"TPA\",-6.00,-11.00,0.00,\"\",0.00,167.00,141.00,1005.00,,,,,,\n2015,5,14,\"B6\",\"925\",\"JFK\",\"TPA\",5.00,-14.00,0.00,\"\",0.00,153.00,135.00,1005.00,,,,,,\n2015,5,15,\"B6\",\"925\",\"JFK\",\"TPA\",-5.00,-18.00,0.00,\"\",0.00,159.00,135.00,1005.00,,,,,,\n2015,5,16,\"B6\",\"925\",\"JFK\",\"TPA\",31.00,20.00,0.00,\"\",0.00,161.00,138.00,1005.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,17,\"B6\",\"925\",\"JFK\",\"TPA\",-2.00,-12.00,0.00,\"\",0.00,162.00,134.00,1005.00,,,,,,\n2015,5,18,\"B6\",\"925\",\"JFK\",\"TPA\",-7.00,-11.00,0.00,\"\",0.00,168.00,131.00,1005.00,,,,,,\n2015,5,19,\"B6\",\"925\",\"JFK\",\"TPA\",3.00,-9.00,0.00,\"\",0.00,160.00,143.00,1005.00,,,,,,\n2015,5,20,\"B6\",\"925\",\"JFK\",\"TPA\",-6.00,-14.00,0.00,\"\",0.00,164.00,140.00,1005.00,,,,,,\n2015,5,21,\"B6\",\"925\",\"JFK\",\"TPA\",-5.00,-17.00,0.00,\"\",0.00,160.00,143.00,1005.00,,,,,,\n2015,5,22,\"B6\",\"925\",\"JFK\",\"TPA\",9.00,38.00,0.00,\"\",0.00,201.00,148.00,1005.00,9.00,0.00,29.00,0.00,0.00,\n2015,5,23,\"B6\",\"925\",\"JFK\",\"TPA\",-2.00,-18.00,0.00,\"\",0.00,156.00,139.00,1005.00,,,,,,\n2015,5,24,\"B6\",\"925\",\"JFK\",\"TPA\",-3.00,-11.00,0.00,\"\",0.00,164.00,134.00,1005.00,,,,,,\n2015,5,25,\"B6\",\"925\",\"JFK\",\"TPA\",-9.00,-20.00,0.00,\"\",0.00,161.00,135.00,1005.00,,,,,,\n2015,5,26,\"B6\",\"925\",\"JFK\",\"TPA\",-5.00,-16.00,0.00,\"\",0.00,161.00,138.00,1005.00,,,,,,\n2015,5,27,\"B6\",\"925\",\"JFK\",\"TPA\",-8.00,-11.00,0.00,\"\",0.00,169.00,142.00,1005.00,,,,,,\n2015,5,28,\"B6\",\"925\",\"JFK\",\"TPA\",1.00,-9.00,0.00,\"\",0.00,162.00,140.00,1005.00,,,,,,\n2015,5,29,\"B6\",\"925\",\"JFK\",\"TPA\",2.00,-12.00,0.00,\"\",0.00,158.00,138.00,1005.00,,,,,,\n2015,5,30,\"B6\",\"925\",\"JFK\",\"TPA\",-9.00,-22.00,0.00,\"\",0.00,159.00,136.00,1005.00,,,,,,\n2015,5,31,\"B6\",\"925\",\"JFK\",\"TPA\",5.00,-16.00,0.00,\"\",0.00,151.00,131.00,1005.00,,,,,,\n2015,5,1,\"B6\",\"929\",\"JFK\",\"RSW\",-9.00,-17.00,0.00,\"\",0.00,173.00,154.00,1074.00,,,,,,\n2015,5,2,\"B6\",\"929\",\"JFK\",\"RSW\",11.00,4.00,0.00,\"\",0.00,174.00,148.00,1074.00,,,,,,\n2015,5,3,\"B6\",\"929\",\"JFK\",\"RSW\",7.00,2.00,0.00,\"\",0.00,176.00,151.00,1074.00,,,,,,\n2015,5,4,\"B6\",\"929\",\"JFK\",\"RSW\",-5.00,-16.00,0.00,\"\",0.00,170.00,150.00,1074.00,,,,,,\n2015,5,5,\"B6\",\"929\",\"JFK\",\"RSW\",-11.00,-18.00,0.00,\"\",0.00,174.00,154.00,1074.00,,,,,,\n2015,5,6,\"B6\",\"929\",\"JFK\",\"RSW\",-10.00,-20.00,0.00,\"\",0.00,171.00,157.00,1074.00,,,,,,\n2015,5,7,\"B6\",\"929\",\"JFK\",\"RSW\",0.00,-4.00,0.00,\"\",0.00,177.00,152.00,1074.00,,,,,,\n2015,5,8,\"B6\",\"929\",\"JFK\",\"RSW\",8.00,12.00,0.00,\"\",0.00,185.00,152.00,1074.00,,,,,,\n2015,5,9,\"B6\",\"929\",\"JFK\",\"RSW\",-2.00,-2.00,0.00,\"\",0.00,181.00,154.00,1074.00,,,,,,\n2015,5,10,\"B6\",\"929\",\"JFK\",\"RSW\",-7.00,-14.00,0.00,\"\",0.00,174.00,149.00,1074.00,,,,,,\n2015,5,11,\"B6\",\"929\",\"JFK\",\"RSW\",-5.00,-17.00,0.00,\"\",0.00,169.00,150.00,1074.00,,,,,,\n2015,5,12,\"B6\",\"929\",\"JFK\",\"RSW\",-7.00,-17.00,0.00,\"\",0.00,171.00,156.00,1074.00,,,,,,\n2015,5,13,\"B6\",\"929\",\"JFK\",\"RSW\",-8.00,-13.00,0.00,\"\",0.00,176.00,160.00,1074.00,,,,,,\n2015,5,14,\"B6\",\"929\",\"JFK\",\"RSW\",-10.00,-23.00,0.00,\"\",0.00,168.00,151.00,1074.00,,,,,,\n2015,5,15,\"B6\",\"929\",\"JFK\",\"RSW\",-8.00,-22.00,0.00,\"\",0.00,167.00,151.00,1074.00,,,,,,\n2015,5,16,\"B6\",\"929\",\"JFK\",\"RSW\",-2.00,-6.00,0.00,\"\",0.00,177.00,151.00,1074.00,,,,,,\n2015,5,17,\"B6\",\"929\",\"JFK\",\"RSW\",-5.00,-14.00,0.00,\"\",0.00,172.00,149.00,1074.00,,,,,,\n2015,5,18,\"B6\",\"929\",\"JFK\",\"RSW\",-13.00,-25.00,0.00,\"\",0.00,169.00,149.00,1074.00,,,,,,\n2015,5,19,\"B6\",\"929\",\"JFK\",\"RSW\",0.00,14.00,0.00,\"\",0.00,195.00,154.00,1074.00,,,,,,\n2015,5,20,\"B6\",\"929\",\"JFK\",\"RSW\",-3.00,-19.00,0.00,\"\",0.00,165.00,147.00,1074.00,,,,,,\n2015,5,21,\"B6\",\"929\",\"JFK\",\"RSW\",0.00,0.00,0.00,\"\",0.00,181.00,158.00,1074.00,,,,,,\n2015,5,22,\"B6\",\"929\",\"JFK\",\"RSW\",-4.00,0.00,0.00,\"\",0.00,185.00,163.00,1074.00,,,,,,\n2015,5,23,\"B6\",\"929\",\"JFK\",\"RSW\",-3.00,-13.00,0.00,\"\",0.00,171.00,157.00,1074.00,,,,,,\n2015,5,24,\"B6\",\"929\",\"JFK\",\"RSW\",-3.00,-16.00,0.00,\"\",0.00,168.00,150.00,1074.00,,,,,,\n2015,5,25,\"B6\",\"929\",\"JFK\",\"RSW\",-7.00,-11.00,0.00,\"\",0.00,177.00,153.00,1074.00,,,,,,\n2015,5,26,\"B6\",\"929\",\"JFK\",\"RSW\",-5.00,3.00,0.00,\"\",0.00,189.00,158.00,1074.00,,,,,,\n2015,5,27,\"B6\",\"929\",\"JFK\",\"RSW\",-5.00,-8.00,0.00,\"\",0.00,178.00,157.00,1074.00,,,,,,\n2015,5,28,\"B6\",\"929\",\"JFK\",\"RSW\",-2.00,-13.00,0.00,\"\",0.00,170.00,152.00,1074.00,,,,,,\n2015,5,29,\"B6\",\"929\",\"JFK\",\"RSW\",-3.00,-18.00,0.00,\"\",0.00,166.00,148.00,1074.00,,,,,,\n2015,5,30,\"B6\",\"929\",\"JFK\",\"RSW\",-2.00,0.00,0.00,\"\",0.00,183.00,151.00,1074.00,,,,,,\n2015,5,31,\"B6\",\"929\",\"JFK\",\"RSW\",-9.00,-8.00,0.00,\"\",0.00,182.00,153.00,1074.00,,,,,,\n2015,5,1,\"B6\",\"930\",\"RSW\",\"JFK\",5.00,-7.00,0.00,\"\",0.00,153.00,134.00,1074.00,,,,,,\n2015,5,2,\"B6\",\"930\",\"RSW\",\"JFK\",5.00,-5.00,0.00,\"\",0.00,155.00,138.00,1074.00,,,,,,\n2015,5,3,\"B6\",\"930\",\"RSW\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,156.00,141.00,1074.00,,,,,,\n2015,5,4,\"B6\",\"930\",\"RSW\",\"JFK\",-12.00,-22.00,0.00,\"\",0.00,155.00,141.00,1074.00,,,,,,\n2015,5,5,\"B6\",\"930\",\"RSW\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,158.00,138.00,1074.00,,,,,,\n2015,5,6,\"B6\",\"930\",\"RSW\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,144.00,133.00,1074.00,,,,,,\n2015,5,7,\"B6\",\"930\",\"RSW\",\"JFK\",-4.00,2.00,0.00,\"\",0.00,171.00,144.00,1074.00,,,,,,\n2015,5,8,\"B6\",\"930\",\"RSW\",\"JFK\",24.00,21.00,0.00,\"\",0.00,162.00,148.00,1074.00,18.00,0.00,0.00,0.00,3.00,\n2015,5,9,\"B6\",\"930\",\"RSW\",\"JFK\",11.00,16.00,0.00,\"\",0.00,170.00,152.00,1074.00,11.00,0.00,5.00,0.00,0.00,\n2015,5,10,\"B6\",\"930\",\"RSW\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,152.00,138.00,1074.00,,,,,,\n2015,5,11,\"B6\",\"930\",\"RSW\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,155.00,142.00,1074.00,,,,,,\n2015,5,12,\"B6\",\"930\",\"RSW\",\"JFK\",-4.00,15.00,0.00,\"\",0.00,184.00,156.00,1074.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,13,\"B6\",\"930\",\"RSW\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,155.00,136.00,1074.00,,,,,,\n2015,5,14,\"B6\",\"930\",\"RSW\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,161.00,141.00,1074.00,,,,,,\n2015,5,15,\"B6\",\"930\",\"RSW\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,149.00,139.00,1074.00,,,,,,\n2015,5,16,\"B6\",\"930\",\"RSW\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,161.00,146.00,1074.00,,,,,,\n2015,5,17,\"B6\",\"930\",\"RSW\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,159.00,145.00,1074.00,,,,,,\n2015,5,18,\"B6\",\"930\",\"RSW\",\"JFK\",-5.00,20.00,0.00,\"\",0.00,190.00,173.00,1074.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,19,\"B6\",\"930\",\"RSW\",\"JFK\",21.00,15.00,0.00,\"\",0.00,159.00,139.00,1074.00,11.00,0.00,0.00,0.00,4.00,\n2015,5,20,\"B6\",\"930\",\"RSW\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,149.00,137.00,1074.00,,,,,,\n2015,5,21,\"B6\",\"930\",\"RSW\",\"JFK\",3.00,-11.00,0.00,\"\",0.00,151.00,135.00,1074.00,,,,,,\n2015,5,22,\"B6\",\"930\",\"RSW\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,152.00,133.00,1074.00,,,,,,\n2015,5,23,\"B6\",\"930\",\"RSW\",\"JFK\",-8.00,-12.00,0.00,\"\",0.00,161.00,141.00,1074.00,,,,,,\n2015,5,24,\"B6\",\"930\",\"RSW\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,161.00,148.00,1074.00,,,,,,\n2015,5,25,\"B6\",\"930\",\"RSW\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,161.00,145.00,1074.00,,,,,,\n2015,5,26,\"B6\",\"930\",\"RSW\",\"JFK\",7.00,-9.00,0.00,\"\",0.00,149.00,137.00,1074.00,,,,,,\n2015,5,27,\"B6\",\"930\",\"RSW\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,165.00,146.00,1074.00,,,,,,\n2015,5,28,\"B6\",\"930\",\"RSW\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,151.00,138.00,1074.00,,,,,,\n2015,5,29,\"B6\",\"930\",\"RSW\",\"JFK\",-14.00,-24.00,0.00,\"\",0.00,155.00,142.00,1074.00,,,,,,\n2015,5,30,\"B6\",\"930\",\"RSW\",\"JFK\",-3.00,-1.00,0.00,\"\",0.00,167.00,144.00,1074.00,,,,,,\n2015,5,31,\"B6\",\"930\",\"RSW\",\"JFK\",-10.00,-24.00,0.00,\"\",0.00,151.00,139.00,1074.00,,,,,,\n2015,5,1,\"B6\",\"948\",\"LAS\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,286.00,266.00,2248.00,,,,,,\n2015,5,2,\"B6\",\"948\",\"LAS\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,285.00,267.00,2248.00,,,,,,\n2015,5,3,\"B6\",\"948\",\"LAS\",\"JFK\",5.00,11.00,0.00,\"\",0.00,303.00,279.00,2248.00,,,,,,\n2015,5,4,\"B6\",\"948\",\"LAS\",\"JFK\",12.00,1.00,0.00,\"\",0.00,286.00,269.00,2248.00,,,,,,\n2015,5,5,\"B6\",\"948\",\"LAS\",\"JFK\",9.00,0.00,0.00,\"\",0.00,288.00,271.00,2248.00,,,,,,\n2015,5,6,\"B6\",\"948\",\"LAS\",\"JFK\",3.00,5.00,0.00,\"\",0.00,299.00,272.00,2248.00,,,,,,\n2015,5,7,\"B6\",\"948\",\"LAS\",\"JFK\",3.00,40.00,0.00,\"\",0.00,334.00,315.00,2248.00,3.00,0.00,37.00,0.00,0.00,\n2015,5,8,\"B6\",\"948\",\"LAS\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,291.00,273.00,2248.00,,,,,,\n2015,5,9,\"B6\",\"948\",\"LAS\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,288.00,267.00,2248.00,,,,,,\n2015,5,10,\"B6\",\"948\",\"LAS\",\"JFK\",-7.00,-4.00,0.00,\"\",0.00,300.00,274.00,2248.00,,,,,,\n2015,5,11,\"B6\",\"948\",\"LAS\",\"JFK\",93.00,109.00,0.00,\"\",0.00,313.00,292.00,2248.00,14.00,0.00,16.00,0.00,79.00,\n2015,5,12,\"B6\",\"948\",\"LAS\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,277.00,254.00,2248.00,,,,,,\n2015,5,13,\"B6\",\"948\",\"LAS\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,279.00,260.00,2248.00,,,,,,\n2015,5,14,\"B6\",\"948\",\"LAS\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,287.00,267.00,2248.00,,,,,,\n2015,5,15,\"B6\",\"948\",\"LAS\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,293.00,263.00,2248.00,,,,,,\n2015,5,16,\"B6\",\"948\",\"LAS\",\"JFK\",5.00,2.00,0.00,\"\",0.00,294.00,272.00,2248.00,,,,,,\n2015,5,17,\"B6\",\"948\",\"LAS\",\"JFK\",20.00,16.00,0.00,\"\",0.00,293.00,268.00,2248.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,18,\"B6\",\"948\",\"LAS\",\"JFK\",13.00,13.00,0.00,\"\",0.00,295.00,275.00,2248.00,,,,,,\n2015,5,19,\"B6\",\"948\",\"LAS\",\"JFK\",9.00,-22.00,0.00,\"\",0.00,264.00,243.00,2248.00,,,,,,\n2015,5,20,\"B6\",\"948\",\"LAS\",\"JFK\",12.00,-25.00,0.00,\"\",0.00,258.00,240.00,2248.00,,,,,,\n2015,5,21,\"B6\",\"948\",\"LAS\",\"JFK\",8.00,-17.00,0.00,\"\",0.00,272.00,255.00,2248.00,,,,,,\n2015,5,22,\"B6\",\"948\",\"LAS\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,281.00,249.00,2248.00,,,,,,\n2015,5,23,\"B6\",\"948\",\"LAS\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,277.00,264.00,2248.00,,,,,,\n2015,5,24,\"B6\",\"948\",\"LAS\",\"JFK\",8.00,6.00,0.00,\"\",0.00,295.00,279.00,2248.00,,,,,,\n2015,5,25,\"B6\",\"948\",\"LAS\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,292.00,266.00,2248.00,,,,,,\n2015,5,26,\"B6\",\"948\",\"LAS\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,284.00,266.00,2248.00,,,,,,\n2015,5,27,\"B6\",\"948\",\"LAS\",\"JFK\",77.00,85.00,0.00,\"\",0.00,305.00,267.00,2248.00,30.00,0.00,8.00,0.00,47.00,\n2015,5,28,\"B6\",\"948\",\"LAS\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,300.00,274.00,2248.00,,,,,,\n2015,5,29,\"B6\",\"948\",\"LAS\",\"JFK\",-9.00,-11.00,0.00,\"\",0.00,295.00,272.00,2248.00,,,,,,\n2015,5,30,\"B6\",\"948\",\"LAS\",\"JFK\",76.00,86.00,0.00,\"\",0.00,307.00,275.00,2248.00,13.00,0.00,10.00,0.00,63.00,\n2015,5,31,\"B6\",\"948\",\"LAS\",\"JFK\",129.00,120.00,0.00,\"\",0.00,288.00,269.00,2248.00,0.00,0.00,0.00,0.00,120.00,\n2015,5,1,\"B6\",\"971\",\"LGA\",\"FLL\",-3.00,-10.00,0.00,\"\",0.00,182.00,150.00,1076.00,,,,,,\n2015,5,2,\"B6\",\"971\",\"LGA\",\"FLL\",-9.00,-23.00,0.00,\"\",0.00,175.00,146.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"971\",\"LGA\",\"FLL\",-8.00,-22.00,0.00,\"\",0.00,175.00,143.00,1076.00,,,,,,\n2015,5,4,\"B6\",\"971\",\"LGA\",\"FLL\",-2.00,-2.00,0.00,\"\",0.00,189.00,142.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"971\",\"LGA\",\"FLL\",-11.00,-7.00,0.00,\"\",0.00,193.00,151.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"971\",\"LGA\",\"FLL\",-14.00,6.00,0.00,\"\",0.00,209.00,164.00,1076.00,,,,,,\n2015,5,7,\"B6\",\"971\",\"LGA\",\"FLL\",-2.00,-24.00,0.00,\"\",0.00,167.00,152.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"971\",\"LGA\",\"FLL\",,,1.00,\"A\",0.00,,,1076.00,,,,,,\n2015,5,9,\"B6\",\"971\",\"LGA\",\"FLL\",5.00,6.00,0.00,\"\",0.00,190.00,143.00,1076.00,,,,,,\n2015,5,10,\"B6\",\"971\",\"LGA\",\"FLL\",-7.00,-9.00,0.00,\"\",0.00,187.00,149.00,1076.00,,,,,,\n2015,5,11,\"B6\",\"971\",\"LGA\",\"FLL\",-1.00,-3.00,0.00,\"\",0.00,187.00,164.00,1076.00,,,,,,\n2015,5,12,\"B6\",\"971\",\"LGA\",\"FLL\",-13.00,-43.00,0.00,\"\",0.00,159.00,144.00,1076.00,,,,,,\n2015,5,13,\"B6\",\"971\",\"LGA\",\"FLL\",-11.00,-6.00,0.00,\"\",0.00,194.00,147.00,1076.00,,,,,,\n2015,5,14,\"B6\",\"971\",\"LGA\",\"FLL\",15.00,20.00,0.00,\"\",0.00,194.00,139.00,1076.00,8.00,0.00,5.00,0.00,7.00,\n2015,5,15,\"B6\",\"971\",\"LGA\",\"FLL\",-6.00,-39.00,0.00,\"\",0.00,156.00,144.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"971\",\"LGA\",\"FLL\",-5.00,-5.00,0.00,\"\",0.00,189.00,140.00,1076.00,,,,,,\n2015,5,17,\"B6\",\"971\",\"LGA\",\"FLL\",-5.00,-34.00,0.00,\"\",0.00,160.00,141.00,1076.00,,,,,,\n2015,5,18,\"B6\",\"971\",\"LGA\",\"FLL\",155.00,122.00,0.00,\"\",0.00,156.00,139.00,1076.00,122.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"B6\",\"971\",\"LGA\",\"FLL\",77.00,53.00,0.00,\"\",0.00,165.00,138.00,1076.00,0.00,0.00,0.00,0.00,53.00,\n2015,5,20,\"B6\",\"971\",\"LGA\",\"FLL\",-3.00,-9.00,0.00,\"\",0.00,183.00,146.00,1076.00,,,,,,\n2015,5,21,\"B6\",\"971\",\"LGA\",\"FLL\",-4.00,-30.00,0.00,\"\",0.00,163.00,146.00,1076.00,,,,,,\n2015,5,22,\"B6\",\"971\",\"LGA\",\"FLL\",-7.00,-6.00,0.00,\"\",0.00,190.00,147.00,1076.00,,,,,,\n2015,5,23,\"B6\",\"971\",\"LGA\",\"FLL\",-1.00,0.00,0.00,\"\",0.00,190.00,150.00,1076.00,,,,,,\n2015,5,24,\"B6\",\"971\",\"LGA\",\"FLL\",4.00,-23.00,0.00,\"\",0.00,162.00,137.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"971\",\"LGA\",\"FLL\",-1.00,-10.00,0.00,\"\",0.00,180.00,143.00,1076.00,,,,,,\n2015,5,26,\"B6\",\"971\",\"LGA\",\"FLL\",-4.00,-11.00,0.00,\"\",0.00,182.00,146.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"971\",\"LGA\",\"FLL\",-2.00,-19.00,0.00,\"\",0.00,172.00,142.00,1076.00,,,,,,\n2015,5,28,\"B6\",\"971\",\"LGA\",\"FLL\",14.00,1.00,0.00,\"\",0.00,176.00,145.00,1076.00,,,,,,\n2015,5,29,\"B6\",\"971\",\"LGA\",\"FLL\",-3.00,-13.00,0.00,\"\",0.00,179.00,145.00,1076.00,,,,,,\n2015,5,30,\"B6\",\"971\",\"LGA\",\"FLL\",15.00,2.00,0.00,\"\",0.00,176.00,135.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"971\",\"LGA\",\"FLL\",-10.00,-14.00,0.00,\"\",0.00,185.00,142.00,1076.00,,,,,,\n2015,5,1,\"B6\",\"972\",\"FLL\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,156.00,137.00,1076.00,,,,,,\n2015,5,2,\"B6\",\"972\",\"FLL\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,154.00,136.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"972\",\"FLL\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,162.00,143.00,1076.00,,,,,,\n2015,5,4,\"B6\",\"972\",\"FLL\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,169.00,142.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"972\",\"FLL\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,167.00,143.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"972\",\"FLL\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,163.00,142.00,1076.00,,,,,,\n2015,5,7,\"B6\",\"972\",\"FLL\",\"LGA\",-10.00,-12.00,0.00,\"\",0.00,171.00,155.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"972\",\"FLL\",\"LGA\",-5.00,3.00,0.00,\"\",0.00,181.00,154.00,1076.00,,,,,,\n2015,5,9,\"B6\",\"972\",\"FLL\",\"LGA\",-7.00,1.00,0.00,\"\",0.00,181.00,159.00,1076.00,,,,,,\n2015,5,10,\"B6\",\"972\",\"FLL\",\"LGA\",-11.00,-13.00,0.00,\"\",0.00,171.00,157.00,1076.00,,,,,,\n2015,5,11,\"B6\",\"972\",\"FLL\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,166.00,148.00,1076.00,,,,,,\n2015,5,12,\"B6\",\"972\",\"FLL\",\"LGA\",-7.00,-24.00,0.00,\"\",0.00,156.00,142.00,1076.00,,,,,,\n2015,5,13,\"B6\",\"972\",\"FLL\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,163.00,146.00,1076.00,,,,,,\n2015,5,14,\"B6\",\"972\",\"FLL\",\"LGA\",-2.00,8.00,0.00,\"\",0.00,183.00,171.00,1076.00,,,,,,\n2015,5,15,\"B6\",\"972\",\"FLL\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,158.00,141.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"972\",\"FLL\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,174.00,158.00,1076.00,,,,,,\n2015,5,17,\"B6\",\"972\",\"FLL\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,172.00,148.00,1076.00,,,,,,\n2015,5,18,\"B6\",\"972\",\"FLL\",\"LGA\",145.00,147.00,0.00,\"\",0.00,175.00,160.00,1076.00,0.00,0.00,147.00,0.00,0.00,\n2015,5,19,\"B6\",\"972\",\"FLL\",\"LGA\",71.00,78.00,0.00,\"\",0.00,180.00,148.00,1076.00,0.00,0.00,78.00,0.00,0.00,\n2015,5,20,\"B6\",\"972\",\"FLL\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,172.00,153.00,1076.00,,,,,,\n2015,5,21,\"B6\",\"972\",\"FLL\",\"LGA\",-9.00,-17.00,0.00,\"\",0.00,165.00,145.00,1076.00,,,,,,\n2015,5,22,\"B6\",\"972\",\"FLL\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,160.00,140.00,1076.00,,,,,,\n2015,5,23,\"B6\",\"972\",\"FLL\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,169.00,139.00,1076.00,,,,,,\n2015,5,24,\"B6\",\"972\",\"FLL\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,172.00,149.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"972\",\"FLL\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,164.00,144.00,1076.00,,,,,,\n2015,5,26,\"B6\",\"972\",\"FLL\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,165.00,141.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"972\",\"FLL\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,173.00,144.00,1076.00,,,,,,\n2015,5,28,\"B6\",\"972\",\"FLL\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,164.00,143.00,1076.00,,,,,,\n2015,5,29,\"B6\",\"972\",\"FLL\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,178.00,154.00,1076.00,,,,,,\n2015,5,30,\"B6\",\"972\",\"FLL\",\"LGA\",-3.00,5.00,0.00,\"\",0.00,181.00,153.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"972\",\"FLL\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,169.00,150.00,1076.00,,,,,,\n2015,5,1,\"B6\",\"985\",\"JFK\",\"RDU\",-8.00,-12.00,0.00,\"\",0.00,101.00,65.00,427.00,,,,,,\n2015,5,2,\"B6\",\"985\",\"JFK\",\"RDU\",-7.00,-17.00,0.00,\"\",0.00,95.00,64.00,427.00,,,,,,\n2015,5,3,\"B6\",\"985\",\"JFK\",\"RDU\",14.00,-2.00,0.00,\"\",0.00,89.00,63.00,427.00,,,,,,\n2015,5,4,\"B6\",\"985\",\"JFK\",\"RDU\",-1.00,8.00,0.00,\"\",0.00,114.00,62.00,427.00,,,,,,\n2015,5,5,\"B6\",\"985\",\"JFK\",\"RDU\",15.00,-2.00,0.00,\"\",0.00,88.00,62.00,427.00,,,,,,\n2015,5,6,\"B6\",\"985\",\"JFK\",\"RDU\",5.00,-5.00,0.00,\"\",0.00,95.00,66.00,427.00,,,,,,\n2015,5,7,\"B6\",\"985\",\"JFK\",\"RDU\",-2.00,-7.00,0.00,\"\",0.00,100.00,66.00,427.00,,,,,,\n2015,5,8,\"B6\",\"985\",\"JFK\",\"RDU\",-2.00,10.00,0.00,\"\",0.00,117.00,68.00,427.00,,,,,,\n2015,5,9,\"B6\",\"985\",\"JFK\",\"RDU\",-4.00,-20.00,0.00,\"\",0.00,89.00,68.00,427.00,,,,,,\n2015,5,10,\"B6\",\"985\",\"JFK\",\"RDU\",77.00,78.00,0.00,\"\",0.00,106.00,72.00,427.00,4.00,0.00,1.00,0.00,73.00,\n2015,5,11,\"B6\",\"985\",\"JFK\",\"RDU\",53.00,38.00,0.00,\"\",0.00,90.00,63.00,427.00,6.00,0.00,0.00,0.00,32.00,\n2015,5,12,\"B6\",\"985\",\"JFK\",\"RDU\",37.00,38.00,0.00,\"\",0.00,106.00,71.00,427.00,22.00,0.00,1.00,0.00,15.00,\n2015,5,13,\"B6\",\"985\",\"JFK\",\"RDU\",15.00,14.00,0.00,\"\",0.00,104.00,67.00,427.00,,,,,,\n2015,5,14,\"B6\",\"985\",\"JFK\",\"RDU\",17.00,6.00,0.00,\"\",0.00,94.00,65.00,427.00,,,,,,\n2015,5,15,\"B6\",\"985\",\"JFK\",\"RDU\",-5.00,-12.00,0.00,\"\",0.00,98.00,64.00,427.00,,,,,,\n2015,5,16,\"B6\",\"985\",\"JFK\",\"RDU\",-4.00,-10.00,0.00,\"\",0.00,99.00,65.00,427.00,,,,,,\n2015,5,17,\"B6\",\"985\",\"JFK\",\"RDU\",-2.00,-14.00,0.00,\"\",0.00,93.00,63.00,427.00,,,,,,\n2015,5,18,\"B6\",\"985\",\"JFK\",\"RDU\",243.00,220.00,0.00,\"\",0.00,82.00,63.00,427.00,64.00,0.00,0.00,0.00,156.00,\n2015,5,19,\"B6\",\"985\",\"JFK\",\"RDU\",6.00,9.00,0.00,\"\",0.00,108.00,67.00,427.00,,,,,,\n2015,5,20,\"B6\",\"985\",\"JFK\",\"RDU\",103.00,91.00,0.00,\"\",0.00,93.00,73.00,427.00,5.00,0.00,0.00,0.00,86.00,\n2015,5,21,\"B6\",\"985\",\"JFK\",\"RDU\",0.00,10.00,0.00,\"\",0.00,115.00,75.00,427.00,,,,,,\n2015,5,22,\"B6\",\"985\",\"JFK\",\"RDU\",-2.00,0.00,0.00,\"\",0.00,107.00,70.00,427.00,,,,,,\n2015,5,23,\"B6\",\"985\",\"JFK\",\"RDU\",-6.00,-11.00,0.00,\"\",0.00,100.00,70.00,427.00,,,,,,\n2015,5,24,\"B6\",\"985\",\"JFK\",\"RDU\",-9.00,-23.00,0.00,\"\",0.00,91.00,64.00,427.00,,,,,,\n2015,5,25,\"B6\",\"985\",\"JFK\",\"RDU\",-7.00,-8.00,0.00,\"\",0.00,104.00,67.00,427.00,,,,,,\n2015,5,26,\"B6\",\"985\",\"JFK\",\"RDU\",-5.00,6.00,0.00,\"\",0.00,116.00,64.00,427.00,,,,,,\n2015,5,27,\"B6\",\"985\",\"JFK\",\"RDU\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,28,\"B6\",\"985\",\"JFK\",\"RDU\",0.00,-8.00,0.00,\"\",0.00,97.00,63.00,427.00,,,,,,\n2015,5,29,\"B6\",\"985\",\"JFK\",\"RDU\",0.00,-17.00,0.00,\"\",0.00,88.00,61.00,427.00,,,,,,\n2015,5,30,\"B6\",\"985\",\"JFK\",\"RDU\",-12.00,-20.00,0.00,\"\",0.00,97.00,62.00,427.00,,,,,,\n2015,5,31,\"B6\",\"985\",\"JFK\",\"RDU\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,1,\"B6\",\"986\",\"RDU\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,84.00,67.00,427.00,,,,,,\n2015,5,2,\"B6\",\"986\",\"RDU\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,87.00,72.00,427.00,,,,,,\n2015,5,3,\"B6\",\"986\",\"RDU\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,84.00,68.00,427.00,,,,,,\n2015,5,4,\"B6\",\"986\",\"RDU\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,84.00,69.00,427.00,,,,,,\n2015,5,5,\"B6\",\"986\",\"RDU\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,90.00,69.00,427.00,,,,,,\n2015,5,6,\"B6\",\"986\",\"RDU\",\"JFK\",12.00,-4.00,0.00,\"\",0.00,81.00,66.00,427.00,,,,,,\n2015,5,7,\"B6\",\"986\",\"RDU\",\"JFK\",-8.00,-15.00,0.00,\"\",0.00,90.00,68.00,427.00,,,,,,\n2015,5,8,\"B6\",\"986\",\"RDU\",\"JFK\",-1.00,40.00,0.00,\"\",0.00,138.00,82.00,427.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,9,\"B6\",\"986\",\"RDU\",\"JFK\",1.00,46.00,0.00,\"\",0.00,142.00,121.00,427.00,1.00,0.00,45.00,0.00,0.00,\n2015,5,10,\"B6\",\"986\",\"RDU\",\"JFK\",-1.00,-10.00,0.00,\"\",0.00,88.00,69.00,427.00,,,,,,\n2015,5,11,\"B6\",\"986\",\"RDU\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,85.00,69.00,427.00,,,,,,\n2015,5,12,\"B6\",\"986\",\"RDU\",\"JFK\",0.00,30.00,0.00,\"\",0.00,127.00,101.00,427.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,13,\"B6\",\"986\",\"RDU\",\"JFK\",3.00,-9.00,0.00,\"\",0.00,85.00,66.00,427.00,,,,,,\n2015,5,14,\"B6\",\"986\",\"RDU\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,79.00,68.00,427.00,,,,,,\n2015,5,15,\"B6\",\"986\",\"RDU\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,79.00,65.00,427.00,,,,,,\n2015,5,16,\"B6\",\"986\",\"RDU\",\"JFK\",6.00,1.00,0.00,\"\",0.00,92.00,72.00,427.00,,,,,,\n2015,5,17,\"B6\",\"986\",\"RDU\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,93.00,74.00,427.00,,,,,,\n2015,5,18,\"B6\",\"986\",\"RDU\",\"JFK\",-8.00,-10.00,0.00,\"\",0.00,95.00,71.00,427.00,,,,,,\n2015,5,19,\"B6\",\"986\",\"RDU\",\"JFK\",6.00,6.00,0.00,\"\",0.00,97.00,79.00,427.00,,,,,,\n2015,5,20,\"B6\",\"986\",\"RDU\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,82.00,65.00,427.00,,,,,,\n2015,5,21,\"B6\",\"986\",\"RDU\",\"JFK\",-10.00,-28.00,0.00,\"\",0.00,79.00,61.00,427.00,,,,,,\n2015,5,22,\"B6\",\"986\",\"RDU\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,86.00,61.00,427.00,,,,,,\n2015,5,23,\"B6\",\"986\",\"RDU\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,96.00,64.00,427.00,,,,,,\n2015,5,24,\"B6\",\"986\",\"RDU\",\"JFK\",-8.00,-24.00,0.00,\"\",0.00,81.00,68.00,427.00,,,,,,\n2015,5,25,\"B6\",\"986\",\"RDU\",\"JFK\",-11.00,-21.00,0.00,\"\",0.00,87.00,68.00,427.00,,,,,,\n2015,5,26,\"B6\",\"986\",\"RDU\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,79.00,66.00,427.00,,,,,,\n2015,5,27,\"B6\",\"986\",\"RDU\",\"JFK\",8.00,1.00,0.00,\"\",0.00,90.00,66.00,427.00,,,,,,\n2015,5,28,\"B6\",\"986\",\"RDU\",\"JFK\",-4.00,-3.00,0.00,\"\",0.00,98.00,75.00,427.00,,,,,,\n2015,5,29,\"B6\",\"986\",\"RDU\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,94.00,67.00,427.00,,,,,,\n2015,5,30,\"B6\",\"986\",\"RDU\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,92.00,69.00,427.00,,,,,,\n2015,5,31,\"B6\",\"986\",\"RDU\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,84.00,66.00,427.00,,,,,,\n2015,5,1,\"B6\",\"1001\",\"BUF\",\"JFK\",-21.00,-32.00,0.00,\"\",0.00,79.00,64.00,301.00,,,,,,\n2015,5,2,\"B6\",\"1001\",\"BUF\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,74.00,62.00,301.00,,,,,,\n2015,5,3,\"B6\",\"1001\",\"BUF\",\"JFK\",-9.00,-26.00,0.00,\"\",0.00,73.00,60.00,301.00,,,,,,\n2015,5,4,\"B6\",\"1001\",\"BUF\",\"JFK\",-9.00,-25.00,0.00,\"\",0.00,74.00,58.00,301.00,,,,,,\n2015,5,5,\"B6\",\"1001\",\"BUF\",\"JFK\",-10.00,-18.00,0.00,\"\",0.00,82.00,58.00,301.00,,,,,,\n2015,5,6,\"B6\",\"1001\",\"BUF\",\"JFK\",107.00,83.00,0.00,\"\",0.00,66.00,55.00,301.00,1.00,0.00,0.00,0.00,82.00,\n2015,5,7,\"B6\",\"1001\",\"BUF\",\"JFK\",50.00,39.00,0.00,\"\",0.00,79.00,60.00,301.00,3.00,0.00,0.00,0.00,36.00,\n2015,5,8,\"B6\",\"1001\",\"BUF\",\"JFK\",79.00,108.00,0.00,\"\",0.00,119.00,69.00,301.00,0.00,0.00,94.00,0.00,14.00,\n2015,5,9,\"B6\",\"1001\",\"BUF\",\"JFK\",48.00,51.00,0.00,\"\",0.00,93.00,60.00,301.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,10,\"B6\",\"1001\",\"BUF\",\"JFK\",63.00,48.00,0.00,\"\",0.00,75.00,61.00,301.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,11,\"B6\",\"1001\",\"BUF\",\"JFK\",-2.00,8.00,0.00,\"\",0.00,100.00,79.00,301.00,,,,,,\n2015,5,12,\"B6\",\"1001\",\"BUF\",\"JFK\",31.00,15.00,0.00,\"\",0.00,74.00,62.00,301.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,13,\"B6\",\"1001\",\"BUF\",\"JFK\",10.00,2.00,0.00,\"\",0.00,82.00,60.00,301.00,,,,,,\n2015,5,14,\"B6\",\"1001\",\"BUF\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,73.00,61.00,301.00,,,,,,\n2015,5,15,\"B6\",\"1001\",\"BUF\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,86.00,64.00,301.00,,,,,,\n2015,5,16,\"B6\",\"1001\",\"BUF\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,75.00,62.00,301.00,,,,,,\n2015,5,17,\"B6\",\"1001\",\"BUF\",\"JFK\",6.00,-7.00,0.00,\"\",0.00,77.00,65.00,301.00,,,,,,\n2015,5,18,\"B6\",\"1001\",\"BUF\",\"JFK\",61.00,40.00,0.00,\"\",0.00,69.00,55.00,301.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,19,\"B6\",\"1001\",\"BUF\",\"JFK\",94.00,79.00,0.00,\"\",0.00,75.00,59.00,301.00,0.00,0.00,0.00,0.00,79.00,\n2015,5,20,\"B6\",\"1001\",\"BUF\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,87.00,62.00,301.00,,,,,,\n2015,5,21,\"B6\",\"1001\",\"BUF\",\"JFK\",26.00,12.00,0.00,\"\",0.00,76.00,63.00,301.00,,,,,,\n2015,5,22,\"B6\",\"1001\",\"BUF\",\"JFK\",62.00,62.00,0.00,\"\",0.00,90.00,57.00,301.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,23,\"B6\",\"1001\",\"BUF\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,79.00,61.00,301.00,,,,,,\n2015,5,24,\"B6\",\"1001\",\"BUF\",\"JFK\",41.00,21.00,0.00,\"\",0.00,70.00,55.00,301.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"B6\",\"1001\",\"BUF\",\"JFK\",-8.00,-29.00,0.00,\"\",0.00,69.00,55.00,301.00,,,,,,\n2015,5,26,\"B6\",\"1001\",\"BUF\",\"JFK\",-11.00,-36.00,0.00,\"\",0.00,65.00,52.00,301.00,,,,,,\n2015,5,27,\"B6\",\"1001\",\"BUF\",\"JFK\",60.00,52.00,0.00,\"\",0.00,82.00,67.00,301.00,0.00,0.00,52.00,0.00,0.00,\n2015,5,28,\"B6\",\"1001\",\"BUF\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,74.00,59.00,301.00,,,,,,\n2015,5,29,\"B6\",\"1001\",\"BUF\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,77.00,56.00,301.00,,,,,,\n2015,5,30,\"B6\",\"1001\",\"BUF\",\"JFK\",-3.00,3.00,0.00,\"\",0.00,96.00,62.00,301.00,,,,,,\n2015,5,31,\"B6\",\"1001\",\"BUF\",\"JFK\",206.00,223.00,0.00,\"\",0.00,107.00,84.00,301.00,0.00,0.00,213.00,0.00,10.00,\n2015,5,8,\"B6\",\"1183\",\"JFK\",\"MCO\",22.00,22.00,0.00,\"\",0.00,171.00,125.00,944.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"B6\",\"1183\",\"JFK\",\"MCO\",-3.00,-36.00,0.00,\"\",0.00,138.00,122.00,944.00,,,,,,\n2015,5,10,\"B6\",\"1183\",\"JFK\",\"MCO\",13.00,-1.00,0.00,\"\",0.00,157.00,128.00,944.00,,,,,,\n2015,5,11,\"B6\",\"1183\",\"JFK\",\"MCO\",11.00,-6.00,0.00,\"\",0.00,154.00,123.00,944.00,,,,,,\n2015,5,12,\"B6\",\"1183\",\"JFK\",\"MCO\",-6.00,-2.00,0.00,\"\",0.00,175.00,132.00,944.00,,,,,,\n2015,5,13,\"B6\",\"1183\",\"JFK\",\"MCO\",-4.00,-12.00,0.00,\"\",0.00,163.00,118.00,944.00,,,,,,\n2015,5,14,\"B6\",\"1183\",\"JFK\",\"MCO\",-3.00,-13.00,0.00,\"\",0.00,161.00,129.00,944.00,,,,,,\n2015,5,15,\"B6\",\"1183\",\"JFK\",\"MCO\",-1.00,-26.00,0.00,\"\",0.00,146.00,124.00,944.00,,,,,,\n2015,5,16,\"B6\",\"1183\",\"JFK\",\"MCO\",113.00,92.00,0.00,\"\",0.00,150.00,125.00,944.00,4.00,0.00,0.00,0.00,88.00,\n2015,5,17,\"B6\",\"1183\",\"JFK\",\"MCO\",1.00,-18.00,0.00,\"\",0.00,152.00,123.00,944.00,,,,,,\n2015,5,18,\"B6\",\"1183\",\"JFK\",\"MCO\",86.00,71.00,0.00,\"\",0.00,156.00,119.00,944.00,36.00,0.00,0.00,0.00,35.00,\n2015,5,19,\"B6\",\"1183\",\"JFK\",\"MCO\",13.00,6.00,0.00,\"\",0.00,164.00,127.00,944.00,,,,,,\n2015,5,20,\"B6\",\"1183\",\"JFK\",\"MCO\",-1.00,-16.00,0.00,\"\",0.00,156.00,129.00,944.00,,,,,,\n2015,5,21,\"B6\",\"1183\",\"JFK\",\"MCO\",76.00,57.00,0.00,\"\",0.00,152.00,133.00,944.00,24.00,0.00,0.00,0.00,33.00,\n2015,5,22,\"B6\",\"1183\",\"JFK\",\"MCO\",9.00,8.00,0.00,\"\",0.00,170.00,130.00,944.00,,,,,,\n2015,5,23,\"B6\",\"1183\",\"JFK\",\"MCO\",-2.00,-24.00,0.00,\"\",0.00,149.00,124.00,944.00,,,,,,\n2015,5,24,\"B6\",\"1183\",\"JFK\",\"MCO\",-7.00,-31.00,0.00,\"\",0.00,147.00,122.00,944.00,,,,,,\n2015,5,25,\"B6\",\"1183\",\"JFK\",\"MCO\",8.00,-4.00,0.00,\"\",0.00,159.00,125.00,944.00,,,,,,\n2015,5,26,\"B6\",\"1183\",\"JFK\",\"MCO\",-3.00,-10.00,0.00,\"\",0.00,164.00,125.00,944.00,,,,,,\n2015,5,27,\"B6\",\"1183\",\"JFK\",\"MCO\",27.00,23.00,0.00,\"\",0.00,167.00,123.00,944.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"B6\",\"1183\",\"JFK\",\"MCO\",32.00,13.00,0.00,\"\",0.00,152.00,122.00,944.00,,,,,,\n2015,5,29,\"B6\",\"1183\",\"JFK\",\"MCO\",-5.00,-28.00,0.00,\"\",0.00,148.00,120.00,944.00,,,,,,\n2015,5,30,\"B6\",\"1183\",\"JFK\",\"MCO\",-6.00,-25.00,0.00,\"\",0.00,152.00,121.00,944.00,,,,,,\n2015,5,31,\"B6\",\"1183\",\"JFK\",\"MCO\",183.00,157.00,0.00,\"\",0.00,145.00,117.00,944.00,0.00,124.00,0.00,0.00,33.00,\n2015,5,1,\"B6\",\"1184\",\"MCO\",\"JFK\",14.00,1.00,0.00,\"\",0.00,140.00,116.00,944.00,,,,,,\n2015,5,2,\"B6\",\"1184\",\"MCO\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,138.00,124.00,944.00,,,,,,\n2015,5,3,\"B6\",\"1184\",\"MCO\",\"JFK\",0.00,0.00,0.00,\"\",0.00,153.00,126.00,944.00,,,,,,\n2015,5,4,\"B6\",\"1184\",\"MCO\",\"JFK\",1.00,-11.00,0.00,\"\",0.00,141.00,125.00,944.00,,,,,,\n2015,5,5,\"B6\",\"1184\",\"MCO\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,142.00,121.00,944.00,,,,,,\n2015,5,6,\"B6\",\"1184\",\"MCO\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,150.00,117.00,944.00,,,,,,\n2015,5,7,\"B6\",\"1184\",\"MCO\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,140.00,124.00,944.00,,,,,,\n2015,5,8,\"B6\",\"1184\",\"MCO\",\"JFK\",3.00,43.00,0.00,\"\",0.00,193.00,152.00,944.00,3.00,0.00,40.00,0.00,0.00,\n2015,5,9,\"B6\",\"1184\",\"MCO\",\"JFK\",-4.00,7.00,0.00,\"\",0.00,164.00,148.00,944.00,,,,,,\n2015,5,10,\"B6\",\"1184\",\"MCO\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,142.00,124.00,944.00,,,,,,\n2015,5,11,\"B6\",\"1184\",\"MCO\",\"JFK\",-1.00,1.00,0.00,\"\",0.00,155.00,126.00,944.00,,,,,,\n2015,5,12,\"B6\",\"1184\",\"MCO\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,156.00,138.00,944.00,,,,,,\n2015,5,13,\"B6\",\"1184\",\"MCO\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,137.00,119.00,944.00,,,,,,\n2015,5,14,\"B6\",\"1184\",\"MCO\",\"JFK\",-6.00,-2.00,0.00,\"\",0.00,157.00,137.00,944.00,,,,,,\n2015,5,15,\"B6\",\"1184\",\"MCO\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,151.00,122.00,944.00,,,,,,\n2015,5,16,\"B6\",\"1184\",\"MCO\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,146.00,128.00,944.00,,,,,,\n2015,5,17,\"B6\",\"1184\",\"MCO\",\"JFK\",-4.00,12.00,0.00,\"\",0.00,169.00,129.00,944.00,,,,,,\n2015,5,18,\"B6\",\"1184\",\"MCO\",\"JFK\",1.00,-6.00,0.00,\"\",0.00,146.00,127.00,944.00,,,,,,\n2015,5,19,\"B6\",\"1184\",\"MCO\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,150.00,133.00,944.00,,,,,,\n2015,5,20,\"B6\",\"1184\",\"MCO\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,142.00,127.00,944.00,,,,,,\n2015,5,21,\"B6\",\"1184\",\"MCO\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,142.00,125.00,944.00,,,,,,\n2015,5,22,\"B6\",\"1184\",\"MCO\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,136.00,116.00,944.00,,,,,,\n2015,5,23,\"B6\",\"1184\",\"MCO\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,146.00,123.00,944.00,,,,,,\n2015,5,24,\"B6\",\"1184\",\"MCO\",\"JFK\",2.00,-3.00,0.00,\"\",0.00,148.00,126.00,944.00,,,,,,\n2015,5,25,\"B6\",\"1184\",\"MCO\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,136.00,122.00,944.00,,,,,,\n2015,5,26,\"B6\",\"1184\",\"MCO\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,138.00,120.00,944.00,,,,,,\n2015,5,27,\"B6\",\"1184\",\"MCO\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,148.00,119.00,944.00,,,,,,\n2015,5,28,\"B6\",\"1184\",\"MCO\",\"JFK\",-2.00,-3.00,0.00,\"\",0.00,152.00,124.00,944.00,,,,,,\n2015,5,29,\"B6\",\"1184\",\"MCO\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,142.00,126.00,944.00,,,,,,\n2015,5,30,\"B6\",\"1184\",\"MCO\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,150.00,134.00,944.00,,,,,,\n2015,5,31,\"B6\",\"1184\",\"MCO\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,148.00,125.00,944.00,,,,,,\n2015,5,1,\"B6\",\"1185\",\"JFK\",\"RDU\",-2.00,-24.00,0.00,\"\",0.00,100.00,69.00,427.00,,,,,,\n2015,5,2,\"B6\",\"1185\",\"JFK\",\"RDU\",-5.00,-31.00,0.00,\"\",0.00,96.00,68.00,427.00,,,,,,\n2015,5,3,\"B6\",\"1185\",\"JFK\",\"RDU\",-5.00,-35.00,0.00,\"\",0.00,92.00,63.00,427.00,,,,,,\n2015,5,4,\"B6\",\"1185\",\"JFK\",\"RDU\",0.00,-31.00,0.00,\"\",0.00,91.00,64.00,427.00,,,,,,\n2015,5,5,\"B6\",\"1185\",\"JFK\",\"RDU\",26.00,-4.00,0.00,\"\",0.00,92.00,64.00,427.00,,,,,,\n2015,5,6,\"B6\",\"1185\",\"JFK\",\"RDU\",-2.00,-19.00,0.00,\"\",0.00,105.00,67.00,427.00,,,,,,\n2015,5,7,\"B6\",\"1185\",\"JFK\",\"RDU\",-2.00,-31.00,0.00,\"\",0.00,93.00,65.00,427.00,,,,,,\n2015,5,8,\"B6\",\"1185\",\"JFK\",\"RDU\",7.00,-9.00,0.00,\"\",0.00,106.00,69.00,427.00,,,,,,\n2015,5,9,\"B6\",\"1185\",\"JFK\",\"RDU\",-6.00,-33.00,0.00,\"\",0.00,95.00,68.00,427.00,,,,,,\n2015,5,10,\"B6\",\"1185\",\"JFK\",\"RDU\",-3.00,-25.00,0.00,\"\",0.00,100.00,72.00,427.00,,,,,,\n2015,5,11,\"B6\",\"1185\",\"JFK\",\"RDU\",-2.00,-18.00,0.00,\"\",0.00,106.00,65.00,427.00,,,,,,\n2015,5,12,\"B6\",\"1185\",\"JFK\",\"RDU\",30.00,13.00,0.00,\"\",0.00,105.00,70.00,427.00,,,,,,\n2015,5,13,\"B6\",\"1185\",\"JFK\",\"RDU\",-1.00,-7.00,0.00,\"\",0.00,116.00,72.00,427.00,,,,,,\n2015,5,14,\"B6\",\"1185\",\"JFK\",\"RDU\",-1.00,-33.00,0.00,\"\",0.00,90.00,66.00,427.00,,,,,,\n2015,5,15,\"B6\",\"1185\",\"JFK\",\"RDU\",-4.00,-35.00,0.00,\"\",0.00,91.00,64.00,427.00,,,,,,\n2015,5,16,\"B6\",\"1185\",\"JFK\",\"RDU\",-1.00,-27.00,0.00,\"\",0.00,96.00,64.00,427.00,,,,,,\n2015,5,17,\"B6\",\"1185\",\"JFK\",\"RDU\",-6.00,-39.00,0.00,\"\",0.00,89.00,61.00,427.00,,,,,,\n2015,5,18,\"B6\",\"1185\",\"JFK\",\"RDU\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,19,\"B6\",\"1185\",\"JFK\",\"RDU\",-5.00,-14.00,0.00,\"\",0.00,113.00,75.00,427.00,,,,,,\n2015,5,20,\"B6\",\"1185\",\"JFK\",\"RDU\",4.00,-18.00,0.00,\"\",0.00,100.00,72.00,427.00,,,,,,\n2015,5,21,\"B6\",\"1185\",\"JFK\",\"RDU\",1.00,-15.00,0.00,\"\",0.00,106.00,76.00,427.00,,,,,,\n2015,5,22,\"B6\",\"1185\",\"JFK\",\"RDU\",10.00,-19.00,0.00,\"\",0.00,93.00,73.00,427.00,,,,,,\n2015,5,23,\"B6\",\"1185\",\"JFK\",\"RDU\",38.00,20.00,0.00,\"\",0.00,104.00,70.00,427.00,4.00,0.00,0.00,0.00,16.00,\n2015,5,24,\"B6\",\"1185\",\"JFK\",\"RDU\",-4.00,-35.00,0.00,\"\",0.00,91.00,64.00,427.00,,,,,,\n2015,5,25,\"B6\",\"1185\",\"JFK\",\"RDU\",-7.00,-32.00,0.00,\"\",0.00,97.00,66.00,427.00,,,,,,\n2015,5,26,\"B6\",\"1185\",\"JFK\",\"RDU\",15.00,-13.00,0.00,\"\",0.00,94.00,66.00,427.00,,,,,,\n2015,5,27,\"B6\",\"1185\",\"JFK\",\"RDU\",63.00,40.00,0.00,\"\",0.00,99.00,69.00,427.00,10.00,0.00,0.00,0.00,30.00,\n2015,5,28,\"B6\",\"1185\",\"JFK\",\"RDU\",2.00,-31.00,0.00,\"\",0.00,89.00,66.00,427.00,,,,,,\n2015,5,29,\"B6\",\"1185\",\"JFK\",\"RDU\",18.00,-2.00,0.00,\"\",0.00,102.00,64.00,427.00,,,,,,\n2015,5,30,\"B6\",\"1185\",\"JFK\",\"RDU\",-13.00,-23.00,0.00,\"\",0.00,112.00,62.00,427.00,,,,,,\n2015,5,31,\"B6\",\"1185\",\"JFK\",\"RDU\",-1.00,-22.00,0.00,\"\",0.00,101.00,65.00,427.00,,,,,,\n2015,5,1,\"B6\",\"1186\",\"RDU\",\"JFK\",-11.00,-23.00,0.00,\"\",0.00,97.00,70.00,427.00,,,,,,\n2015,5,2,\"B6\",\"1186\",\"RDU\",\"JFK\",-6.00,-33.00,0.00,\"\",0.00,82.00,68.00,427.00,,,,,,\n2015,5,3,\"B6\",\"1186\",\"RDU\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,88.00,70.00,427.00,,,,,,\n2015,5,4,\"B6\",\"1186\",\"RDU\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,89.00,68.00,427.00,,,,,,\n2015,5,5,\"B6\",\"1186\",\"RDU\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,88.00,66.00,427.00,,,,,,\n2015,5,6,\"B6\",\"1186\",\"RDU\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,93.00,70.00,427.00,,,,,,\n2015,5,7,\"B6\",\"1186\",\"RDU\",\"JFK\",-5.00,-4.00,0.00,\"\",0.00,110.00,72.00,427.00,,,,,,\n2015,5,8,\"B6\",\"1186\",\"RDU\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,87.00,64.00,427.00,,,,,,\n2015,5,9,\"B6\",\"1186\",\"RDU\",\"JFK\",7.00,23.00,0.00,\"\",0.00,125.00,67.00,427.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,10,\"B6\",\"1186\",\"RDU\",\"JFK\",101.00,80.00,0.00,\"\",0.00,88.00,65.00,427.00,0.00,0.00,80.00,0.00,0.00,\n2015,5,11,\"B6\",\"1186\",\"RDU\",\"JFK\",57.00,70.00,0.00,\"\",0.00,122.00,97.00,427.00,0.00,0.00,70.00,0.00,0.00,\n2015,5,12,\"B6\",\"1186\",\"RDU\",\"JFK\",67.00,61.00,0.00,\"\",0.00,103.00,66.00,427.00,0.00,0.00,56.00,0.00,5.00,\n2015,5,13,\"B6\",\"1186\",\"RDU\",\"JFK\",67.00,49.00,0.00,\"\",0.00,91.00,71.00,427.00,0.00,0.00,49.00,0.00,0.00,\n2015,5,14,\"B6\",\"1186\",\"RDU\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,100.00,70.00,427.00,,,,,,\n2015,5,15,\"B6\",\"1186\",\"RDU\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,85.00,68.00,427.00,,,,,,\n2015,5,16,\"B6\",\"1186\",\"RDU\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,85.00,66.00,427.00,,,,,,\n2015,5,17,\"B6\",\"1186\",\"RDU\",\"JFK\",-5.00,-5.00,0.00,\"\",0.00,109.00,75.00,427.00,,,,,,\n2015,5,18,\"B6\",\"1186\",\"RDU\",\"JFK\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,19,\"B6\",\"1186\",\"RDU\",\"JFK\",-5.00,-5.00,0.00,\"\",0.00,109.00,81.00,427.00,,,,,,\n2015,5,20,\"B6\",\"1186\",\"RDU\",\"JFK\",18.00,12.00,0.00,\"\",0.00,103.00,63.00,427.00,,,,,,\n2015,5,21,\"B6\",\"1186\",\"RDU\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,93.00,67.00,427.00,,,,,,\n2015,5,22,\"B6\",\"1186\",\"RDU\",\"JFK\",19.00,18.00,0.00,\"\",0.00,108.00,61.00,427.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,23,\"B6\",\"1186\",\"RDU\",\"JFK\",22.00,-6.00,0.00,\"\",0.00,81.00,66.00,427.00,,,,,,\n2015,5,24,\"B6\",\"1186\",\"RDU\",\"JFK\",-9.00,-25.00,0.00,\"\",0.00,93.00,70.00,427.00,,,,,,\n2015,5,25,\"B6\",\"1186\",\"RDU\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,100.00,69.00,427.00,,,,,,\n2015,5,26,\"B6\",\"1186\",\"RDU\",\"JFK\",17.00,-17.00,0.00,\"\",0.00,75.00,69.00,427.00,,,,,,\n2015,5,27,\"B6\",\"1186\",\"RDU\",\"JFK\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,28,\"B6\",\"1186\",\"RDU\",\"JFK\",0.00,0.00,0.00,\"\",0.00,105.00,71.00,427.00,,,,,,\n2015,5,29,\"B6\",\"1186\",\"RDU\",\"JFK\",-8.00,-15.00,0.00,\"\",0.00,102.00,70.00,427.00,,,,,,\n2015,5,30,\"B6\",\"1186\",\"RDU\",\"JFK\",-13.00,-30.00,0.00,\"\",0.00,92.00,69.00,427.00,,,,,,\n2015,5,31,\"B6\",\"1186\",\"RDU\",\"JFK\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,7,\"B6\",\"1191\",\"JFK\",\"ACK\",-5.00,-14.00,0.00,\"\",0.00,65.00,38.00,199.00,,,,,,\n2015,5,8,\"B6\",\"1191\",\"JFK\",\"ACK\",-5.00,-22.00,0.00,\"\",0.00,57.00,42.00,199.00,,,,,,\n2015,5,9,\"B6\",\"1191\",\"JFK\",\"ACK\",88.00,86.00,0.00,\"\",0.00,72.00,43.00,199.00,26.00,0.00,0.00,0.00,60.00,\n2015,5,10,\"B6\",\"1191\",\"JFK\",\"ACK\",-7.00,1.00,0.00,\"\",0.00,82.00,56.00,199.00,,,,,,\n2015,5,11,\"B6\",\"1191\",\"JFK\",\"ACK\",-9.00,-16.00,0.00,\"\",0.00,67.00,42.00,199.00,,,,,,\n2015,5,12,\"B6\",\"1191\",\"JFK\",\"ACK\",29.00,14.00,0.00,\"\",0.00,59.00,42.00,199.00,,,,,,\n2015,5,13,\"B6\",\"1191\",\"JFK\",\"ACK\",1.00,-14.00,0.00,\"\",0.00,59.00,40.00,199.00,,,,,,\n2015,5,14,\"B6\",\"1191\",\"JFK\",\"ACK\",-5.00,-9.00,0.00,\"\",0.00,70.00,43.00,199.00,,,,,,\n2015,5,15,\"B6\",\"1191\",\"JFK\",\"ACK\",3.00,-7.00,0.00,\"\",0.00,64.00,42.00,199.00,,,,,,\n2015,5,16,\"B6\",\"1191\",\"JFK\",\"ACK\",41.00,25.00,0.00,\"\",0.00,58.00,36.00,199.00,10.00,0.00,0.00,0.00,15.00,\n2015,5,17,\"B6\",\"1191\",\"JFK\",\"ACK\",-4.00,5.00,0.00,\"\",0.00,83.00,37.00,199.00,,,,,,\n2015,5,18,\"B6\",\"1191\",\"JFK\",\"ACK\",411.00,432.00,0.00,\"\",0.00,95.00,40.00,199.00,411.00,0.00,21.00,0.00,0.00,\n2015,5,19,\"B6\",\"1191\",\"JFK\",\"ACK\",-10.00,-25.00,0.00,\"\",0.00,59.00,40.00,199.00,,,,,,\n2015,5,20,\"B6\",\"1191\",\"JFK\",\"ACK\",-2.00,-11.00,0.00,\"\",0.00,65.00,36.00,199.00,,,,,,\n2015,5,21,\"B6\",\"1191\",\"JFK\",\"ACK\",-10.00,-10.00,0.00,\"\",0.00,74.00,39.00,199.00,,,,,,\n2015,5,22,\"B6\",\"1191\",\"JFK\",\"ACK\",-5.00,-19.00,0.00,\"\",0.00,60.00,41.00,199.00,,,,,,\n2015,5,23,\"B6\",\"1191\",\"JFK\",\"ACK\",-3.00,-14.00,0.00,\"\",0.00,63.00,40.00,199.00,,,,,,\n2015,5,24,\"B6\",\"1191\",\"JFK\",\"ACK\",-9.00,-16.00,0.00,\"\",0.00,67.00,39.00,199.00,,,,,,\n2015,5,25,\"B6\",\"1191\",\"JFK\",\"ACK\",-5.00,-8.00,0.00,\"\",0.00,71.00,46.00,199.00,,,,,,\n2015,5,26,\"B6\",\"1191\",\"JFK\",\"ACK\",-7.00,-24.00,0.00,\"\",0.00,57.00,39.00,199.00,,,,,,\n2015,5,27,\"B6\",\"1191\",\"JFK\",\"ACK\",19.00,14.00,0.00,\"\",0.00,69.00,41.00,199.00,,,,,,\n2015,5,28,\"B6\",\"1191\",\"JFK\",\"ACK\",32.00,20.00,0.00,\"\",0.00,62.00,41.00,199.00,9.00,0.00,0.00,0.00,11.00,\n2015,5,29,\"B6\",\"1191\",\"JFK\",\"ACK\",27.00,18.00,0.00,\"\",0.00,65.00,39.00,199.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"B6\",\"1191\",\"JFK\",\"ACK\",12.00,-5.00,0.00,\"\",0.00,57.00,41.00,199.00,,,,,,\n2015,5,31,\"B6\",\"1191\",\"JFK\",\"ACK\",0.00,0.00,0.00,\"\",0.00,74.00,43.00,199.00,,,,,,\n2015,5,7,\"B6\",\"1192\",\"ACK\",\"JFK\",0.00,-29.00,0.00,\"\",0.00,51.00,36.00,199.00,,,,,,\n2015,5,8,\"B6\",\"1192\",\"ACK\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,60.00,34.00,199.00,,,,,,\n2015,5,9,\"B6\",\"1192\",\"ACK\",\"JFK\",77.00,57.00,0.00,\"\",0.00,60.00,37.00,199.00,0.00,0.00,0.00,0.00,57.00,\n2015,5,10,\"B6\",\"1192\",\"ACK\",\"JFK\",-4.00,-6.00,0.00,\"\",0.00,78.00,43.00,199.00,,,,,,\n2015,5,11,\"B6\",\"1192\",\"ACK\",\"JFK\",23.00,34.00,0.00,\"\",0.00,91.00,44.00,199.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,12,\"B6\",\"1192\",\"ACK\",\"JFK\",99.00,82.00,0.00,\"\",0.00,63.00,44.00,199.00,0.00,0.00,75.00,0.00,7.00,\n2015,5,13,\"B6\",\"1192\",\"ACK\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,77.00,42.00,199.00,,,,,,\n2015,5,14,\"B6\",\"1192\",\"ACK\",\"JFK\",-1.00,-24.00,0.00,\"\",0.00,57.00,39.00,199.00,,,,,,\n2015,5,15,\"B6\",\"1192\",\"ACK\",\"JFK\",0.00,1.00,0.00,\"\",0.00,81.00,39.00,199.00,,,,,,\n2015,5,16,\"B6\",\"1192\",\"ACK\",\"JFK\",23.00,6.00,0.00,\"\",0.00,63.00,45.00,199.00,,,,,,\n2015,5,17,\"B6\",\"1192\",\"ACK\",\"JFK\",11.00,-2.00,0.00,\"\",0.00,67.00,43.00,199.00,,,,,,\n2015,5,18,\"B6\",\"1192\",\"ACK\",\"JFK\",429.00,414.00,0.00,\"\",0.00,65.00,48.00,199.00,241.00,0.00,0.00,0.00,173.00,\n2015,5,19,\"B6\",\"1192\",\"ACK\",\"JFK\",-9.00,-35.00,0.00,\"\",0.00,54.00,37.00,199.00,,,,,,\n2015,5,20,\"B6\",\"1192\",\"ACK\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,72.00,46.00,199.00,,,,,,\n2015,5,21,\"B6\",\"1192\",\"ACK\",\"JFK\",-12.00,-31.00,0.00,\"\",0.00,61.00,40.00,199.00,,,,,,\n2015,5,22,\"B6\",\"1192\",\"ACK\",\"JFK\",65.00,52.00,0.00,\"\",0.00,67.00,42.00,199.00,0.00,0.00,52.00,0.00,0.00,\n2015,5,23,\"B6\",\"1192\",\"ACK\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,74.00,52.00,199.00,,,,,,\n2015,5,24,\"B6\",\"1192\",\"ACK\",\"JFK\",1.00,-12.00,0.00,\"\",0.00,67.00,49.00,199.00,,,,,,\n2015,5,25,\"B6\",\"1192\",\"ACK\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,69.00,42.00,199.00,,,,,,\n2015,5,26,\"B6\",\"1192\",\"ACK\",\"JFK\",-8.00,-32.00,0.00,\"\",0.00,56.00,38.00,199.00,,,,,,\n2015,5,27,\"B6\",\"1192\",\"ACK\",\"JFK\",299.00,301.00,0.00,\"\",0.00,82.00,49.00,199.00,291.00,0.00,2.00,0.00,8.00,\n2015,5,28,\"B6\",\"1192\",\"ACK\",\"JFK\",42.00,24.00,0.00,\"\",0.00,62.00,38.00,199.00,16.00,0.00,0.00,0.00,8.00,\n2015,5,29,\"B6\",\"1192\",\"ACK\",\"JFK\",13.00,-8.00,0.00,\"\",0.00,59.00,38.00,199.00,,,,,,\n2015,5,30,\"B6\",\"1192\",\"ACK\",\"JFK\",0.00,-26.00,0.00,\"\",0.00,54.00,38.00,199.00,,,,,,\n2015,5,31,\"B6\",\"1192\",\"ACK\",\"JFK\",41.00,72.00,0.00,\"\",0.00,111.00,47.00,199.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,1,\"B6\",\"1198\",\"MCO\",\"LGA\",8.00,-5.00,0.00,\"\",0.00,149.00,124.00,950.00,,,,,,\n2015,5,2,\"B6\",\"1198\",\"MCO\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,149.00,127.00,950.00,,,,,,\n2015,5,3,\"B6\",\"1198\",\"MCO\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,148.00,128.00,950.00,,,,,,\n2015,5,4,\"B6\",\"1198\",\"MCO\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,153.00,128.00,950.00,,,,,,\n2015,5,5,\"B6\",\"1198\",\"MCO\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,145.00,123.00,950.00,,,,,,\n2015,5,6,\"B6\",\"1198\",\"MCO\",\"LGA\",-7.00,-31.00,0.00,\"\",0.00,138.00,121.00,950.00,,,,,,\n2015,5,7,\"B6\",\"1198\",\"MCO\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,150.00,129.00,950.00,,,,,,\n2015,5,8,\"B6\",\"1198\",\"MCO\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,144.00,129.00,950.00,,,,,,\n2015,5,9,\"B6\",\"1198\",\"MCO\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,154.00,138.00,950.00,,,,,,\n2015,5,10,\"B6\",\"1198\",\"MCO\",\"LGA\",-5.00,3.00,0.00,\"\",0.00,170.00,137.00,950.00,,,,,,\n2015,5,11,\"B6\",\"1198\",\"MCO\",\"LGA\",135.00,120.00,0.00,\"\",0.00,147.00,131.00,950.00,0.00,0.00,120.00,0.00,0.00,\n2015,5,12,\"B6\",\"1198\",\"MCO\",\"LGA\",6.00,-2.00,0.00,\"\",0.00,154.00,127.00,950.00,,,,,,\n2015,5,13,\"B6\",\"1198\",\"MCO\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,150.00,128.00,950.00,,,,,,\n2015,5,14,\"B6\",\"1198\",\"MCO\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,147.00,126.00,950.00,,,,,,\n2015,5,15,\"B6\",\"1198\",\"MCO\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,158.00,129.00,950.00,,,,,,\n2015,5,16,\"B6\",\"1198\",\"MCO\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,155.00,133.00,950.00,,,,,,\n2015,5,17,\"B6\",\"1198\",\"MCO\",\"LGA\",40.00,28.00,0.00,\"\",0.00,150.00,128.00,950.00,16.00,0.00,0.00,0.00,12.00,\n2015,5,18,\"B6\",\"1198\",\"MCO\",\"LGA\",121.00,129.00,0.00,\"\",0.00,170.00,153.00,950.00,0.00,0.00,119.00,0.00,10.00,\n2015,5,19,\"B6\",\"1198\",\"MCO\",\"LGA\",108.00,110.00,0.00,\"\",0.00,164.00,140.00,950.00,0.00,0.00,102.00,0.00,8.00,\n2015,5,20,\"B6\",\"1198\",\"MCO\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,144.00,125.00,950.00,,,,,,\n2015,5,21,\"B6\",\"1198\",\"MCO\",\"LGA\",2.00,-11.00,0.00,\"\",0.00,149.00,130.00,950.00,,,,,,\n2015,5,22,\"B6\",\"1198\",\"MCO\",\"LGA\",-2.00,-24.00,0.00,\"\",0.00,140.00,120.00,950.00,,,,,,\n2015,5,23,\"B6\",\"1198\",\"MCO\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,152.00,132.00,950.00,,,,,,\n2015,5,24,\"B6\",\"1198\",\"MCO\",\"LGA\",-8.00,-25.00,0.00,\"\",0.00,145.00,130.00,950.00,,,,,,\n2015,5,25,\"B6\",\"1198\",\"MCO\",\"LGA\",-7.00,-25.00,0.00,\"\",0.00,144.00,126.00,950.00,,,,,,\n2015,5,26,\"B6\",\"1198\",\"MCO\",\"LGA\",-6.00,-25.00,0.00,\"\",0.00,143.00,125.00,950.00,,,,,,\n2015,5,27,\"B6\",\"1198\",\"MCO\",\"LGA\",279.00,269.00,0.00,\"\",0.00,152.00,128.00,950.00,0.00,0.00,269.00,0.00,0.00,\n2015,5,28,\"B6\",\"1198\",\"MCO\",\"LGA\",12.00,-6.00,0.00,\"\",0.00,144.00,125.00,950.00,,,,,,\n2015,5,29,\"B6\",\"1198\",\"MCO\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,145.00,129.00,950.00,,,,,,\n2015,5,30,\"B6\",\"1198\",\"MCO\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,147.00,128.00,950.00,,,,,,\n2015,5,31,\"B6\",\"1198\",\"MCO\",\"LGA\",304.00,328.00,0.00,\"\",0.00,186.00,138.00,950.00,0.00,0.00,328.00,0.00,0.00,\n2015,5,1,\"B6\",\"1199\",\"LGA\",\"MCO\",151.00,150.00,0.00,\"\",0.00,173.00,142.00,950.00,3.00,0.00,0.00,0.00,147.00,\n2015,5,2,\"B6\",\"1199\",\"LGA\",\"MCO\",-1.00,-11.00,0.00,\"\",0.00,164.00,131.00,950.00,,,,,,\n2015,5,3,\"B6\",\"1199\",\"LGA\",\"MCO\",0.00,-24.00,0.00,\"\",0.00,150.00,127.00,950.00,,,,,,\n2015,5,4,\"B6\",\"1199\",\"LGA\",\"MCO\",-4.00,-20.00,0.00,\"\",0.00,158.00,129.00,950.00,,,,,,\n2015,5,5,\"B6\",\"1199\",\"LGA\",\"MCO\",-3.00,-17.00,0.00,\"\",0.00,160.00,134.00,950.00,,,,,,\n2015,5,6,\"B6\",\"1199\",\"LGA\",\"MCO\",-2.00,14.00,0.00,\"\",0.00,190.00,138.00,950.00,,,,,,\n2015,5,7,\"B6\",\"1199\",\"LGA\",\"MCO\",1.00,-9.00,0.00,\"\",0.00,164.00,128.00,950.00,,,,,,\n2015,5,8,\"B6\",\"1199\",\"LGA\",\"MCO\",47.00,38.00,0.00,\"\",0.00,165.00,129.00,950.00,8.00,0.00,0.00,0.00,30.00,\n2015,5,9,\"B6\",\"1199\",\"LGA\",\"MCO\",7.00,-11.00,0.00,\"\",0.00,156.00,125.00,950.00,,,,,,\n2015,5,10,\"B6\",\"1199\",\"LGA\",\"MCO\",8.00,-12.00,0.00,\"\",0.00,154.00,128.00,950.00,,,,,,\n2015,5,11,\"B6\",\"1199\",\"LGA\",\"MCO\",21.00,19.00,0.00,\"\",0.00,172.00,129.00,950.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"B6\",\"1199\",\"LGA\",\"MCO\",-10.00,-31.00,0.00,\"\",0.00,153.00,128.00,950.00,,,,,,\n2015,5,13,\"B6\",\"1199\",\"LGA\",\"MCO\",-10.00,-4.00,0.00,\"\",0.00,180.00,133.00,950.00,,,,,,\n2015,5,14,\"B6\",\"1199\",\"LGA\",\"MCO\",-8.00,-24.00,0.00,\"\",0.00,158.00,124.00,950.00,,,,,,\n2015,5,15,\"B6\",\"1199\",\"LGA\",\"MCO\",1.00,-11.00,0.00,\"\",0.00,162.00,129.00,950.00,,,,,,\n2015,5,16,\"B6\",\"1199\",\"LGA\",\"MCO\",-7.00,-30.00,0.00,\"\",0.00,151.00,128.00,950.00,,,,,,\n2015,5,17,\"B6\",\"1199\",\"LGA\",\"MCO\",-7.00,-18.00,0.00,\"\",0.00,163.00,127.00,950.00,,,,,,\n2015,5,18,\"B6\",\"1199\",\"LGA\",\"MCO\",,,1.00,\"C\",0.00,,,950.00,,,,,,\n2015,5,19,\"B6\",\"1199\",\"LGA\",\"MCO\",189.00,226.00,0.00,\"\",0.00,211.00,159.00,950.00,0.00,0.00,37.00,0.00,189.00,\n2015,5,20,\"B6\",\"1199\",\"LGA\",\"MCO\",2.00,7.00,0.00,\"\",0.00,179.00,138.00,950.00,,,,,,\n2015,5,21,\"B6\",\"1199\",\"LGA\",\"MCO\",125.00,163.00,0.00,\"\",0.00,212.00,145.00,950.00,43.00,0.00,38.00,0.00,82.00,\n2015,5,22,\"B6\",\"1199\",\"LGA\",\"MCO\",-12.00,1.00,0.00,\"\",0.00,187.00,140.00,950.00,,,,,,\n2015,5,23,\"B6\",\"1199\",\"LGA\",\"MCO\",-8.00,-26.00,0.00,\"\",0.00,156.00,130.00,950.00,,,,,,\n2015,5,24,\"B6\",\"1199\",\"LGA\",\"MCO\",6.00,-32.00,0.00,\"\",0.00,136.00,120.00,950.00,,,,,,\n2015,5,25,\"B6\",\"1199\",\"LGA\",\"MCO\",180.00,169.00,0.00,\"\",0.00,163.00,126.00,950.00,8.00,0.00,0.00,0.00,161.00,\n2015,5,26,\"B6\",\"1199\",\"LGA\",\"MCO\",17.00,-2.00,0.00,\"\",0.00,155.00,131.00,950.00,,,,,,\n2015,5,27,\"B6\",\"1199\",\"LGA\",\"MCO\",-8.00,-2.00,0.00,\"\",0.00,180.00,133.00,950.00,,,,,,\n2015,5,28,\"B6\",\"1199\",\"LGA\",\"MCO\",-2.00,-8.00,0.00,\"\",0.00,168.00,132.00,950.00,,,,,,\n2015,5,29,\"B6\",\"1199\",\"LGA\",\"MCO\",-1.00,-16.00,0.00,\"\",0.00,159.00,124.00,950.00,,,,,,\n2015,5,30,\"B6\",\"1199\",\"LGA\",\"MCO\",2.00,-15.00,0.00,\"\",0.00,157.00,127.00,950.00,,,,,,\n2015,5,31,\"B6\",\"1199\",\"LGA\",\"MCO\",-2.00,-9.00,0.00,\"\",0.00,167.00,127.00,950.00,,,,,,\n2015,5,1,\"B6\",\"1201\",\"JFK\",\"FLL\",-4.00,-27.00,0.00,\"\",0.00,174.00,150.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"1201\",\"JFK\",\"FLL\",-5.00,-32.00,0.00,\"\",0.00,170.00,144.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"1201\",\"JFK\",\"FLL\",13.00,-5.00,0.00,\"\",0.00,179.00,144.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"1201\",\"JFK\",\"FLL\",-11.00,9.00,0.00,\"\",0.00,217.00,145.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"1201\",\"JFK\",\"FLL\",-4.00,-13.00,0.00,\"\",0.00,188.00,158.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"1201\",\"JFK\",\"FLL\",,,1.00,\"A\",0.00,,,1069.00,,,,,,\n2015,5,7,\"B6\",\"1201\",\"JFK\",\"FLL\",0.00,-28.00,0.00,\"\",0.00,169.00,138.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"1201\",\"JFK\",\"FLL\",41.00,41.00,0.00,\"\",0.00,197.00,139.00,1069.00,10.00,0.00,0.00,0.00,31.00,\n2015,5,9,\"B6\",\"1201\",\"JFK\",\"FLL\",-2.00,-20.00,0.00,\"\",0.00,179.00,139.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"1201\",\"JFK\",\"FLL\",9.00,-15.00,0.00,\"\",0.00,173.00,144.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"1201\",\"JFK\",\"FLL\",195.00,157.00,0.00,\"\",0.00,159.00,139.00,1069.00,22.00,0.00,0.00,0.00,135.00,\n2015,5,12,\"B6\",\"1201\",\"JFK\",\"FLL\",0.00,-27.00,0.00,\"\",0.00,170.00,144.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"1201\",\"JFK\",\"FLL\",31.00,9.00,0.00,\"\",0.00,175.00,133.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"1201\",\"JFK\",\"FLL\",5.00,-18.00,0.00,\"\",0.00,174.00,143.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"1201\",\"JFK\",\"FLL\",5.00,-24.00,0.00,\"\",0.00,168.00,137.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"1201\",\"JFK\",\"FLL\",-2.00,-33.00,0.00,\"\",0.00,166.00,136.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"1201\",\"JFK\",\"FLL\",-1.00,-19.00,0.00,\"\",0.00,179.00,135.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"1201\",\"JFK\",\"FLL\",0.00,20.00,0.00,\"\",0.00,217.00,136.00,1069.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,19,\"B6\",\"1201\",\"JFK\",\"FLL\",2.00,-4.00,0.00,\"\",0.00,191.00,147.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"1201\",\"JFK\",\"FLL\",5.00,-25.00,0.00,\"\",0.00,167.00,141.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"1201\",\"JFK\",\"FLL\",7.00,-12.00,0.00,\"\",0.00,178.00,144.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"1201\",\"JFK\",\"FLL\",76.00,56.00,0.00,\"\",0.00,177.00,141.00,1069.00,0.00,0.00,0.00,0.00,56.00,\n2015,5,23,\"B6\",\"1201\",\"JFK\",\"FLL\",-4.00,-31.00,0.00,\"\",0.00,170.00,137.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"1201\",\"JFK\",\"FLL\",3.00,-21.00,0.00,\"\",0.00,173.00,138.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"1201\",\"JFK\",\"FLL\",0.00,-17.00,0.00,\"\",0.00,180.00,143.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"1201\",\"JFK\",\"FLL\",0.00,-17.00,0.00,\"\",0.00,180.00,142.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"1201\",\"JFK\",\"FLL\",27.00,-1.00,0.00,\"\",0.00,169.00,144.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"1201\",\"JFK\",\"FLL\",58.00,25.00,0.00,\"\",0.00,164.00,136.00,1069.00,9.00,0.00,0.00,0.00,16.00,\n2015,5,29,\"B6\",\"1201\",\"JFK\",\"FLL\",-3.00,-34.00,0.00,\"\",0.00,166.00,133.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"1201\",\"JFK\",\"FLL\",1.00,-7.00,0.00,\"\",0.00,189.00,137.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"1201\",\"JFK\",\"FLL\",60.00,125.00,0.00,\"\",0.00,262.00,139.00,1069.00,22.00,0.00,65.00,0.00,38.00,\n2015,5,1,\"B6\",\"1202\",\"FLL\",\"JFK\",4.00,-26.00,0.00,\"\",0.00,158.00,135.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"1202\",\"FLL\",\"JFK\",4.00,-25.00,0.00,\"\",0.00,159.00,142.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"1202\",\"FLL\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,166.00,142.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"1202\",\"FLL\",\"JFK\",-1.00,-42.00,0.00,\"\",0.00,147.00,130.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"1202\",\"FLL\",\"JFK\",55.00,14.00,0.00,\"\",0.00,147.00,132.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"1202\",\"FLL\",\"JFK\",16.00,-13.00,0.00,\"\",0.00,159.00,142.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"1202\",\"FLL\",\"JFK\",-3.00,-34.00,0.00,\"\",0.00,157.00,139.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"1202\",\"FLL\",\"JFK\",51.00,43.00,0.00,\"\",0.00,180.00,140.00,1069.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,9,\"B6\",\"1202\",\"FLL\",\"JFK\",38.00,29.00,0.00,\"\",0.00,179.00,138.00,1069.00,21.00,0.00,8.00,0.00,0.00,\n2015,5,10,\"B6\",\"1202\",\"FLL\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,172.00,153.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"1202\",\"FLL\",\"JFK\",120.00,89.00,0.00,\"\",0.00,157.00,134.00,1069.00,0.00,0.00,89.00,0.00,0.00,\n2015,5,12,\"B6\",\"1202\",\"FLL\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,175.00,143.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"1202\",\"FLL\",\"JFK\",51.00,36.00,0.00,\"\",0.00,173.00,142.00,1069.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,14,\"B6\",\"1202\",\"FLL\",\"JFK\",3.00,-16.00,0.00,\"\",0.00,169.00,144.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"1202\",\"FLL\",\"JFK\",0.00,-34.00,0.00,\"\",0.00,154.00,138.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"1202\",\"FLL\",\"JFK\",82.00,73.00,0.00,\"\",0.00,179.00,148.00,1069.00,73.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"1202\",\"FLL\",\"JFK\",146.00,133.00,0.00,\"\",0.00,175.00,147.00,1069.00,133.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"1202\",\"FLL\",\"JFK\",168.00,169.00,0.00,\"\",0.00,189.00,158.00,1069.00,0.00,0.00,169.00,0.00,0.00,\n2015,5,19,\"B6\",\"1202\",\"FLL\",\"JFK\",91.00,85.00,0.00,\"\",0.00,182.00,154.00,1069.00,85.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"B6\",\"1202\",\"FLL\",\"JFK\",2.00,-11.00,0.00,\"\",0.00,175.00,139.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"1202\",\"FLL\",\"JFK\",-3.00,-31.00,0.00,\"\",0.00,160.00,146.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"1202\",\"FLL\",\"JFK\",53.00,25.00,0.00,\"\",0.00,160.00,136.00,1069.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,23,\"B6\",\"1202\",\"FLL\",\"JFK\",-8.00,-35.00,0.00,\"\",0.00,161.00,146.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"1202\",\"FLL\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,170.00,146.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"1202\",\"FLL\",\"JFK\",-7.00,-41.00,0.00,\"\",0.00,154.00,137.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"1202\",\"FLL\",\"JFK\",-4.00,-34.00,0.00,\"\",0.00,158.00,135.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"1202\",\"FLL\",\"JFK\",219.00,204.00,0.00,\"\",0.00,173.00,145.00,1069.00,0.00,0.00,204.00,0.00,0.00,\n2015,5,28,\"B6\",\"1202\",\"FLL\",\"JFK\",-1.00,-32.00,0.00,\"\",0.00,157.00,143.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"1202\",\"FLL\",\"JFK\",-2.00,-35.00,0.00,\"\",0.00,155.00,141.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"1202\",\"FLL\",\"JFK\",-7.00,-28.00,0.00,\"\",0.00,167.00,145.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"1202\",\"FLL\",\"JFK\",,,1.00,\"C\",0.00,,,1069.00,,,,,,\n2015,5,1,\"B6\",\"1205\",\"JFK\",\"PDX\",-4.00,-16.00,0.00,\"\",0.00,369.00,323.00,2454.00,,,,,,\n2015,5,2,\"B6\",\"1205\",\"JFK\",\"PDX\",-10.00,-22.00,0.00,\"\",0.00,369.00,333.00,2454.00,,,,,,\n2015,5,3,\"B6\",\"1205\",\"JFK\",\"PDX\",-6.00,-18.00,0.00,\"\",0.00,369.00,334.00,2454.00,,,,,,\n2015,5,4,\"B6\",\"1205\",\"JFK\",\"PDX\",-9.00,-19.00,0.00,\"\",0.00,371.00,334.00,2454.00,,,,,,\n2015,5,5,\"B6\",\"1205\",\"JFK\",\"PDX\",5.00,-17.00,0.00,\"\",0.00,359.00,331.00,2454.00,,,,,,\n2015,5,6,\"B6\",\"1205\",\"JFK\",\"PDX\",-1.00,-45.00,0.00,\"\",0.00,337.00,311.00,2454.00,,,,,,\n2015,5,7,\"B6\",\"1205\",\"JFK\",\"PDX\",24.00,-3.00,0.00,\"\",0.00,354.00,316.00,2454.00,,,,,,\n2015,5,8,\"B6\",\"1205\",\"JFK\",\"PDX\",124.00,105.00,0.00,\"\",0.00,362.00,321.00,2454.00,14.00,0.00,0.00,0.00,91.00,\n2015,5,9,\"B6\",\"1205\",\"JFK\",\"PDX\",0.00,-38.00,0.00,\"\",0.00,343.00,315.00,2454.00,,,,,,\n2015,5,10,\"B6\",\"1205\",\"JFK\",\"PDX\",-8.00,-37.00,0.00,\"\",0.00,352.00,316.00,2454.00,,,,,,\n2015,5,11,\"B6\",\"1205\",\"JFK\",\"PDX\",168.00,134.00,0.00,\"\",0.00,347.00,324.00,2454.00,3.00,0.00,0.00,0.00,131.00,\n2015,5,12,\"B6\",\"1205\",\"JFK\",\"PDX\",58.00,70.00,0.00,\"\",0.00,393.00,340.00,2454.00,58.00,0.00,12.00,0.00,0.00,\n2015,5,13,\"B6\",\"1205\",\"JFK\",\"PDX\",113.00,106.00,0.00,\"\",0.00,374.00,328.00,2454.00,0.00,0.00,0.00,16.00,90.00,\n2015,5,14,\"B6\",\"1205\",\"JFK\",\"PDX\",0.00,-12.00,0.00,\"\",0.00,369.00,317.00,2454.00,,,,,,\n2015,5,15,\"B6\",\"1205\",\"JFK\",\"PDX\",21.00,3.00,0.00,\"\",0.00,363.00,330.00,2454.00,,,,,,\n2015,5,16,\"B6\",\"1205\",\"JFK\",\"PDX\",-3.00,-43.00,0.00,\"\",0.00,341.00,317.00,2454.00,,,,,,\n2015,5,17,\"B6\",\"1205\",\"JFK\",\"PDX\",-2.00,-27.00,0.00,\"\",0.00,356.00,309.00,2454.00,,,,,,\n2015,5,18,\"B6\",\"1205\",\"JFK\",\"PDX\",12.00,85.00,0.00,\"\",0.00,454.00,329.00,2454.00,12.00,0.00,73.00,0.00,0.00,\n2015,5,19,\"B6\",\"1205\",\"JFK\",\"PDX\",81.00,75.00,0.00,\"\",0.00,375.00,336.00,2454.00,0.00,0.00,0.00,0.00,75.00,\n2015,5,20,\"B6\",\"1205\",\"JFK\",\"PDX\",129.00,115.00,0.00,\"\",0.00,367.00,321.00,2454.00,9.00,0.00,0.00,0.00,106.00,\n2015,5,21,\"B6\",\"1205\",\"JFK\",\"PDX\",0.00,-27.00,0.00,\"\",0.00,354.00,322.00,2454.00,,,,,,\n2015,5,22,\"B6\",\"1205\",\"JFK\",\"PDX\",73.00,50.00,0.00,\"\",0.00,358.00,325.00,2454.00,50.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"1205\",\"JFK\",\"PDX\",-3.00,-25.00,0.00,\"\",0.00,359.00,336.00,2454.00,,,,,,\n2015,5,24,\"B6\",\"1205\",\"JFK\",\"PDX\",-5.00,-25.00,0.00,\"\",0.00,361.00,318.00,2454.00,,,,,,\n2015,5,25,\"B6\",\"1205\",\"JFK\",\"PDX\",-8.00,-26.00,0.00,\"\",0.00,363.00,334.00,2454.00,,,,,,\n2015,5,26,\"B6\",\"1205\",\"JFK\",\"PDX\",1.00,-22.00,0.00,\"\",0.00,358.00,326.00,2454.00,,,,,,\n2015,5,27,\"B6\",\"1205\",\"JFK\",\"PDX\",-3.00,-16.00,0.00,\"\",0.00,368.00,317.00,2454.00,,,,,,\n2015,5,28,\"B6\",\"1205\",\"JFK\",\"PDX\",-7.00,-22.00,0.00,\"\",0.00,366.00,323.00,2454.00,,,,,,\n2015,5,29,\"B6\",\"1205\",\"JFK\",\"PDX\",-4.00,-17.00,0.00,\"\",0.00,368.00,339.00,2454.00,,,,,,\n2015,5,30,\"B6\",\"1205\",\"JFK\",\"PDX\",-2.00,-17.00,0.00,\"\",0.00,366.00,333.00,2454.00,,,,,,\n2015,5,31,\"B6\",\"1205\",\"JFK\",\"PDX\",293.00,286.00,0.00,\"\",0.00,374.00,339.00,2454.00,0.00,18.00,0.00,0.00,268.00,\n2015,5,1,\"B6\",\"1206\",\"PDX\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,314.00,290.00,2454.00,,,,,,\n2015,5,2,\"B6\",\"1206\",\"PDX\",\"JFK\",0.00,-23.00,0.00,\"\",0.00,295.00,275.00,2454.00,,,,,,\n2015,5,3,\"B6\",\"1206\",\"PDX\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,300.00,278.00,2454.00,,,,,,\n2015,5,4,\"B6\",\"1206\",\"PDX\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,306.00,285.00,2454.00,,,,,,\n2015,5,5,\"B6\",\"1206\",\"PDX\",\"JFK\",-10.00,-32.00,0.00,\"\",0.00,296.00,282.00,2454.00,,,,,,\n2015,5,6,\"B6\",\"1206\",\"PDX\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,325.00,303.00,2454.00,,,,,,\n2015,5,7,\"B6\",\"1206\",\"PDX\",\"JFK\",2.00,0.00,0.00,\"\",0.00,316.00,294.00,2454.00,,,,,,\n2015,5,8,\"B6\",\"1206\",\"PDX\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,321.00,289.00,2454.00,,,,,,\n2015,5,9,\"B6\",\"1206\",\"PDX\",\"JFK\",-3.00,2.00,0.00,\"\",0.00,323.00,300.00,2454.00,,,,,,\n2015,5,10,\"B6\",\"1206\",\"PDX\",\"JFK\",0.00,0.00,0.00,\"\",0.00,318.00,295.00,2454.00,,,,,,\n2015,5,11,\"B6\",\"1206\",\"PDX\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,304.00,275.00,2454.00,,,,,,\n2015,5,12,\"B6\",\"1206\",\"PDX\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,305.00,279.00,2454.00,,,,,,\n2015,5,13,\"B6\",\"1206\",\"PDX\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,307.00,282.00,2454.00,,,,,,\n2015,5,14,\"B6\",\"1206\",\"PDX\",\"JFK\",13.00,5.00,0.00,\"\",0.00,310.00,293.00,2454.00,,,,,,\n2015,5,15,\"B6\",\"1206\",\"PDX\",\"JFK\",3.00,11.00,0.00,\"\",0.00,326.00,299.00,2454.00,,,,,,\n2015,5,16,\"B6\",\"1206\",\"PDX\",\"JFK\",89.00,101.00,0.00,\"\",0.00,330.00,309.00,2454.00,0.00,0.00,12.00,0.00,89.00,\n2015,5,17,\"B6\",\"1206\",\"PDX\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,306.00,285.00,2454.00,,,,,,\n2015,5,18,\"B6\",\"1206\",\"PDX\",\"JFK\",50.00,46.00,0.00,\"\",0.00,314.00,296.00,2454.00,0.00,0.00,0.00,0.00,46.00,\n2015,5,19,\"B6\",\"1206\",\"PDX\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,299.00,277.00,2454.00,,,,,,\n2015,5,20,\"B6\",\"1206\",\"PDX\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,304.00,279.00,2454.00,,,,,,\n2015,5,21,\"B6\",\"1206\",\"PDX\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,301.00,284.00,2454.00,,,,,,\n2015,5,22,\"B6\",\"1206\",\"PDX\",\"JFK\",-6.00,5.00,0.00,\"\",0.00,329.00,289.00,2454.00,,,,,,\n2015,5,23,\"B6\",\"1206\",\"PDX\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,303.00,277.00,2454.00,,,,,,\n2015,5,24,\"B6\",\"1206\",\"PDX\",\"JFK\",-9.00,-24.00,0.00,\"\",0.00,303.00,290.00,2454.00,,,,,,\n2015,5,25,\"B6\",\"1206\",\"PDX\",\"JFK\",3.00,-16.00,0.00,\"\",0.00,299.00,285.00,2454.00,,,,,,\n2015,5,26,\"B6\",\"1206\",\"PDX\",\"JFK\",43.00,43.00,0.00,\"\",0.00,318.00,303.00,2454.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,27,\"B6\",\"1206\",\"PDX\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,310.00,288.00,2454.00,,,,,,\n2015,5,28,\"B6\",\"1206\",\"PDX\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,310.00,293.00,2454.00,,,,,,\n2015,5,29,\"B6\",\"1206\",\"PDX\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,312.00,290.00,2454.00,,,,,,\n2015,5,30,\"B6\",\"1206\",\"PDX\",\"JFK\",7.00,-11.00,0.00,\"\",0.00,300.00,278.00,2454.00,,,,,,\n2015,5,31,\"B6\",\"1206\",\"PDX\",\"JFK\",55.00,43.00,0.00,\"\",0.00,306.00,288.00,2454.00,43.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"B6\",\"1208\",\"IAD\",\"JFK\",-8.00,-24.00,0.00,\"\",0.00,66.00,50.00,228.00,,,,,,\n2015,5,2,\"B6\",\"1208\",\"IAD\",\"JFK\",-10.00,-16.00,0.00,\"\",0.00,75.00,55.00,228.00,,,,,,\n2015,5,3,\"B6\",\"1208\",\"IAD\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,62.00,46.00,228.00,,,,,,\n2015,5,4,\"B6\",\"1208\",\"IAD\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,67.00,49.00,228.00,,,,,,\n2015,5,5,\"B6\",\"1208\",\"IAD\",\"JFK\",-7.00,-28.00,0.00,\"\",0.00,61.00,45.00,228.00,,,,,,\n2015,5,6,\"B6\",\"1208\",\"IAD\",\"JFK\",-10.00,-24.00,0.00,\"\",0.00,68.00,45.00,228.00,,,,,,\n2015,5,7,\"B6\",\"1208\",\"IAD\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,64.00,46.00,228.00,,,,,,\n2015,5,8,\"B6\",\"1208\",\"IAD\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,79.00,60.00,228.00,,,,,,\n2015,5,9,\"B6\",\"1208\",\"IAD\",\"JFK\",-6.00,9.00,0.00,\"\",0.00,96.00,80.00,228.00,,,,,,\n2015,5,10,\"B6\",\"1208\",\"IAD\",\"JFK\",-5.00,3.00,0.00,\"\",0.00,90.00,49.00,228.00,,,,,,\n2015,5,11,\"B6\",\"1208\",\"IAD\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,67.00,45.00,228.00,,,,,,\n2015,5,12,\"B6\",\"1208\",\"IAD\",\"JFK\",-6.00,26.00,0.00,\"\",0.00,114.00,52.00,228.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,13,\"B6\",\"1208\",\"IAD\",\"JFK\",-9.00,-31.00,0.00,\"\",0.00,60.00,42.00,228.00,,,,,,\n2015,5,14,\"B6\",\"1208\",\"IAD\",\"JFK\",-5.00,17.00,0.00,\"\",0.00,104.00,46.00,228.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,15,\"B6\",\"1208\",\"IAD\",\"JFK\",-10.00,-26.00,0.00,\"\",0.00,66.00,46.00,228.00,,,,,,\n2015,5,16,\"B6\",\"1208\",\"IAD\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,74.00,47.00,228.00,,,,,,\n2015,5,17,\"B6\",\"1208\",\"IAD\",\"JFK\",-6.00,-11.00,0.00,\"\",0.00,77.00,49.00,228.00,,,,,,\n2015,5,18,\"B6\",\"1208\",\"IAD\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,67.00,46.00,228.00,,,,,,\n2015,5,19,\"B6\",\"1208\",\"IAD\",\"JFK\",-8.00,-7.00,0.00,\"\",0.00,83.00,51.00,228.00,,,,,,\n2015,5,20,\"B6\",\"1208\",\"IAD\",\"JFK\",30.00,7.00,0.00,\"\",0.00,59.00,43.00,228.00,,,,,,\n2015,5,21,\"B6\",\"1208\",\"IAD\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,65.00,44.00,228.00,,,,,,\n2015,5,22,\"B6\",\"1208\",\"IAD\",\"JFK\",35.00,12.00,0.00,\"\",0.00,59.00,42.00,228.00,,,,,,\n2015,5,23,\"B6\",\"1208\",\"IAD\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,69.00,45.00,228.00,,,,,,\n2015,5,24,\"B6\",\"1208\",\"IAD\",\"JFK\",-10.00,-27.00,0.00,\"\",0.00,65.00,45.00,228.00,,,,,,\n2015,5,25,\"B6\",\"1208\",\"IAD\",\"JFK\",-8.00,-27.00,0.00,\"\",0.00,63.00,46.00,228.00,,,,,,\n2015,5,26,\"B6\",\"1208\",\"IAD\",\"JFK\",-5.00,-30.00,0.00,\"\",0.00,57.00,44.00,228.00,,,,,,\n2015,5,27,\"B6\",\"1208\",\"IAD\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,66.00,48.00,228.00,,,,,,\n2015,5,28,\"B6\",\"1208\",\"IAD\",\"JFK\",-15.00,-25.00,0.00,\"\",0.00,72.00,48.00,228.00,,,,,,\n2015,5,29,\"B6\",\"1208\",\"IAD\",\"JFK\",-7.00,-11.00,0.00,\"\",0.00,77.00,52.00,228.00,,,,,,\n2015,5,30,\"B6\",\"1208\",\"IAD\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,66.00,47.00,228.00,,,,,,\n2015,5,31,\"B6\",\"1208\",\"IAD\",\"JFK\",-13.00,-31.00,0.00,\"\",0.00,63.00,44.00,228.00,,,,,,\n2015,5,22,\"B6\",\"1024\",\"LAX\",\"JFK\",-5.00,-36.00,0.00,\"\",0.00,297.00,280.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"1024\",\"LAX\",\"JFK\",10.00,6.00,0.00,\"\",0.00,324.00,291.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"1024\",\"LAX\",\"JFK\",4.00,7.00,0.00,\"\",0.00,331.00,312.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"1024\",\"LAX\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,323.00,299.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"1024\",\"LAX\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,316.00,294.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"1024\",\"LAX\",\"JFK\",5.00,-2.00,0.00,\"\",0.00,321.00,296.00,2475.00,,,,,,\n2015,5,28,\"B6\",\"1024\",\"LAX\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,310.00,285.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"1024\",\"LAX\",\"JFK\",-10.00,-12.00,0.00,\"\",0.00,326.00,302.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"1024\",\"LAX\",\"JFK\",9.00,-9.00,0.00,\"\",0.00,310.00,298.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"1024\",\"LAX\",\"JFK\",265.00,253.00,0.00,\"\",0.00,316.00,294.00,2475.00,5.00,0.00,0.00,0.00,248.00,\n2015,5,1,\"B6\",\"1041\",\"JFK\",\"SAV\",-6.00,-25.00,0.00,\"\",0.00,132.00,103.00,718.00,,,,,,\n2015,5,2,\"B6\",\"1041\",\"JFK\",\"SAV\",-5.00,-32.00,0.00,\"\",0.00,124.00,98.00,718.00,,,,,,\n2015,5,3,\"B6\",\"1041\",\"JFK\",\"SAV\",-4.00,-17.00,0.00,\"\",0.00,138.00,99.00,718.00,,,,,,\n2015,5,4,\"B6\",\"1041\",\"JFK\",\"SAV\",-5.00,-29.00,0.00,\"\",0.00,127.00,98.00,718.00,,,,,,\n2015,5,5,\"B6\",\"1041\",\"JFK\",\"SAV\",0.00,-20.00,0.00,\"\",0.00,131.00,104.00,718.00,,,,,,\n2015,5,6,\"B6\",\"1041\",\"JFK\",\"SAV\",-5.00,-14.00,0.00,\"\",0.00,142.00,103.00,718.00,,,,,,\n2015,5,7,\"B6\",\"1041\",\"JFK\",\"SAV\",-4.00,-32.00,0.00,\"\",0.00,123.00,102.00,718.00,,,,,,\n2015,5,8,\"B6\",\"1041\",\"JFK\",\"SAV\",9.00,1.00,0.00,\"\",0.00,143.00,95.00,718.00,,,,,,\n2015,5,9,\"B6\",\"1041\",\"JFK\",\"SAV\",-1.00,-26.00,0.00,\"\",0.00,126.00,92.00,718.00,,,,,,\n2015,5,10,\"B6\",\"1041\",\"JFK\",\"SAV\",-3.00,-9.00,0.00,\"\",0.00,145.00,99.00,718.00,,,,,,\n2015,5,11,\"B6\",\"1041\",\"JFK\",\"SAV\",-10.00,-1.00,0.00,\"\",0.00,160.00,101.00,718.00,,,,,,\n2015,5,12,\"B6\",\"1041\",\"JFK\",\"SAV\",-1.00,-28.00,0.00,\"\",0.00,124.00,104.00,718.00,,,,,,\n2015,5,13,\"B6\",\"1041\",\"JFK\",\"SAV\",0.00,-19.00,0.00,\"\",0.00,132.00,102.00,718.00,,,,,,\n2015,5,14,\"B6\",\"1041\",\"JFK\",\"SAV\",-5.00,-12.00,0.00,\"\",0.00,144.00,101.00,718.00,,,,,,\n2015,5,15,\"B6\",\"1041\",\"JFK\",\"SAV\",20.00,-10.00,0.00,\"\",0.00,121.00,93.00,718.00,,,,,,\n2015,5,16,\"B6\",\"1041\",\"JFK\",\"SAV\",-3.00,-27.00,0.00,\"\",0.00,127.00,97.00,718.00,,,,,,\n2015,5,17,\"B6\",\"1041\",\"JFK\",\"SAV\",-5.00,-23.00,0.00,\"\",0.00,133.00,100.00,718.00,,,,,,\n2015,5,18,\"B6\",\"1041\",\"JFK\",\"SAV\",-5.00,-31.00,0.00,\"\",0.00,125.00,97.00,718.00,,,,,,\n2015,5,19,\"B6\",\"1041\",\"JFK\",\"SAV\",25.00,22.00,0.00,\"\",0.00,148.00,106.00,718.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"B6\",\"1041\",\"JFK\",\"SAV\",39.00,22.00,0.00,\"\",0.00,134.00,100.00,718.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"B6\",\"1041\",\"JFK\",\"SAV\",-3.00,-2.00,0.00,\"\",0.00,152.00,105.00,718.00,,,,,,\n2015,5,22,\"B6\",\"1041\",\"JFK\",\"SAV\",-5.00,-26.00,0.00,\"\",0.00,130.00,111.00,718.00,,,,,,\n2015,5,23,\"B6\",\"1041\",\"JFK\",\"SAV\",-13.00,-23.00,0.00,\"\",0.00,141.00,103.00,718.00,,,,,,\n2015,5,24,\"B6\",\"1041\",\"JFK\",\"SAV\",25.00,-7.00,0.00,\"\",0.00,119.00,98.00,718.00,,,,,,\n2015,5,25,\"B6\",\"1041\",\"JFK\",\"SAV\",-9.00,-27.00,0.00,\"\",0.00,133.00,99.00,718.00,,,,,,\n2015,5,26,\"B6\",\"1041\",\"JFK\",\"SAV\",-8.00,-24.00,0.00,\"\",0.00,135.00,98.00,718.00,,,,,,\n2015,5,27,\"B6\",\"1041\",\"JFK\",\"SAV\",-3.00,-22.00,0.00,\"\",0.00,132.00,104.00,718.00,,,,,,\n2015,5,28,\"B6\",\"1041\",\"JFK\",\"SAV\",-10.00,-28.00,0.00,\"\",0.00,133.00,99.00,718.00,,,,,,\n2015,5,29,\"B6\",\"1041\",\"JFK\",\"SAV\",15.00,-17.00,0.00,\"\",0.00,119.00,96.00,718.00,,,,,,\n2015,5,30,\"B6\",\"1041\",\"JFK\",\"SAV\",10.00,1.00,0.00,\"\",0.00,142.00,98.00,718.00,,,,,,\n2015,5,31,\"B6\",\"1041\",\"JFK\",\"SAV\",117.00,128.00,0.00,\"\",0.00,162.00,98.00,718.00,16.00,0.00,11.00,0.00,101.00,\n2015,5,1,\"B6\",\"1042\",\"SAV\",\"JFK\",-14.00,-32.00,0.00,\"\",0.00,121.00,100.00,718.00,,,,,,\n2015,5,2,\"B6\",\"1042\",\"SAV\",\"JFK\",-15.00,-37.00,0.00,\"\",0.00,117.00,100.00,718.00,,,,,,\n2015,5,3,\"B6\",\"1042\",\"SAV\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,113.00,97.00,718.00,,,,,,\n2015,5,4,\"B6\",\"1042\",\"SAV\",\"JFK\",-2.00,-30.00,0.00,\"\",0.00,111.00,95.00,718.00,,,,,,\n2015,5,5,\"B6\",\"1042\",\"SAV\",\"JFK\",-4.00,-36.00,0.00,\"\",0.00,107.00,93.00,718.00,,,,,,\n2015,5,6,\"B6\",\"1042\",\"SAV\",\"JFK\",-9.00,-30.00,0.00,\"\",0.00,118.00,99.00,718.00,,,,,,\n2015,5,7,\"B6\",\"1042\",\"SAV\",\"JFK\",-8.00,-17.00,0.00,\"\",0.00,130.00,109.00,718.00,,,,,,\n2015,5,8,\"B6\",\"1042\",\"SAV\",\"JFK\",115.00,94.00,0.00,\"\",0.00,118.00,101.00,718.00,0.00,0.00,94.00,0.00,0.00,\n2015,5,9,\"B6\",\"1042\",\"SAV\",\"JFK\",14.00,6.00,0.00,\"\",0.00,131.00,99.00,718.00,,,,,,\n2015,5,10,\"B6\",\"1042\",\"SAV\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,116.00,98.00,718.00,,,,,,\n2015,5,11,\"B6\",\"1042\",\"SAV\",\"JFK\",43.00,49.00,0.00,\"\",0.00,145.00,118.00,718.00,0.00,0.00,49.00,0.00,0.00,\n2015,5,12,\"B6\",\"1042\",\"SAV\",\"JFK\",68.00,41.00,0.00,\"\",0.00,112.00,95.00,718.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,13,\"B6\",\"1042\",\"SAV\",\"JFK\",3.00,1.00,0.00,\"\",0.00,137.00,105.00,718.00,,,,,,\n2015,5,14,\"B6\",\"1042\",\"SAV\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,123.00,101.00,718.00,,,,,,\n2015,5,15,\"B6\",\"1042\",\"SAV\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,114.00,102.00,718.00,,,,,,\n2015,5,16,\"B6\",\"1042\",\"SAV\",\"JFK\",-14.00,-32.00,0.00,\"\",0.00,121.00,101.00,718.00,,,,,,\n2015,5,17,\"B6\",\"1042\",\"SAV\",\"JFK\",9.00,-13.00,0.00,\"\",0.00,117.00,104.00,718.00,,,,,,\n2015,5,18,\"B6\",\"1042\",\"SAV\",\"JFK\",-7.00,-6.00,0.00,\"\",0.00,140.00,105.00,718.00,,,,,,\n2015,5,19,\"B6\",\"1042\",\"SAV\",\"JFK\",30.00,23.00,0.00,\"\",0.00,132.00,108.00,718.00,8.00,0.00,0.00,0.00,15.00,\n2015,5,20,\"B6\",\"1042\",\"SAV\",\"JFK\",59.00,51.00,0.00,\"\",0.00,131.00,97.00,718.00,0.00,0.00,34.00,0.00,17.00,\n2015,5,21,\"B6\",\"1042\",\"SAV\",\"JFK\",-1.00,-33.00,0.00,\"\",0.00,107.00,93.00,718.00,,,,,,\n2015,5,22,\"B6\",\"1042\",\"SAV\",\"JFK\",68.00,50.00,0.00,\"\",0.00,121.00,90.00,718.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,23,\"B6\",\"1042\",\"SAV\",\"JFK\",-18.00,-42.00,0.00,\"\",0.00,115.00,100.00,718.00,,,,,,\n2015,5,24,\"B6\",\"1042\",\"SAV\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,119.00,98.00,718.00,,,,,,\n2015,5,25,\"B6\",\"1042\",\"SAV\",\"JFK\",101.00,69.00,0.00,\"\",0.00,107.00,92.00,718.00,69.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"B6\",\"1042\",\"SAV\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,115.00,95.00,718.00,,,,,,\n2015,5,27,\"B6\",\"1042\",\"SAV\",\"JFK\",152.00,122.00,0.00,\"\",0.00,109.00,95.00,718.00,0.00,0.00,122.00,0.00,0.00,\n2015,5,28,\"B6\",\"1042\",\"SAV\",\"JFK\",4.00,-23.00,0.00,\"\",0.00,112.00,97.00,718.00,,,,,,\n2015,5,29,\"B6\",\"1042\",\"SAV\",\"JFK\",-10.00,-24.00,0.00,\"\",0.00,125.00,103.00,718.00,,,,,,\n2015,5,30,\"B6\",\"1042\",\"SAV\",\"JFK\",88.00,86.00,0.00,\"\",0.00,137.00,111.00,718.00,86.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"B6\",\"1042\",\"SAV\",\"JFK\",242.00,265.00,0.00,\"\",0.00,162.00,131.00,718.00,0.00,0.00,139.00,0.00,126.00,\n2015,5,1,\"B6\",\"1083\",\"JFK\",\"MCO\",9.00,1.00,0.00,\"\",0.00,169.00,130.00,944.00,,,,,,\n2015,5,2,\"B6\",\"1083\",\"JFK\",\"MCO\",-11.00,-42.00,0.00,\"\",0.00,146.00,127.00,944.00,,,,,,\n2015,5,3,\"B6\",\"1083\",\"JFK\",\"MCO\",-2.00,-22.00,0.00,\"\",0.00,157.00,130.00,944.00,,,,,,\n2015,5,4,\"B6\",\"1083\",\"JFK\",\"MCO\",-17.00,-25.00,0.00,\"\",0.00,169.00,135.00,944.00,,,,,,\n2015,5,5,\"B6\",\"1083\",\"JFK\",\"MCO\",-7.00,-21.00,0.00,\"\",0.00,163.00,138.00,944.00,,,,,,\n2015,5,6,\"B6\",\"1083\",\"JFK\",\"MCO\",-4.00,-23.00,0.00,\"\",0.00,158.00,133.00,944.00,,,,,,\n2015,5,7,\"B6\",\"1083\",\"JFK\",\"MCO\",-3.00,-23.00,0.00,\"\",0.00,157.00,124.00,944.00,,,,,,\n2015,5,8,\"B6\",\"1083\",\"JFK\",\"MCO\",177.00,157.00,0.00,\"\",0.00,157.00,121.00,944.00,11.00,0.00,0.00,0.00,146.00,\n2015,5,9,\"B6\",\"1083\",\"JFK\",\"MCO\",-4.00,-32.00,0.00,\"\",0.00,149.00,122.00,944.00,,,,,,\n2015,5,10,\"B6\",\"1083\",\"JFK\",\"MCO\",-7.00,-17.00,0.00,\"\",0.00,167.00,128.00,944.00,,,,,,\n2015,5,11,\"B6\",\"1083\",\"JFK\",\"MCO\",35.00,22.00,0.00,\"\",0.00,164.00,122.00,944.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,12,\"B6\",\"1083\",\"JFK\",\"MCO\",31.00,18.00,0.00,\"\",0.00,164.00,132.00,944.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,13,\"B6\",\"1083\",\"JFK\",\"MCO\",89.00,71.00,0.00,\"\",0.00,159.00,118.00,944.00,2.00,0.00,0.00,0.00,69.00,\n2015,5,14,\"B6\",\"1083\",\"JFK\",\"MCO\",-2.00,-24.00,0.00,\"\",0.00,155.00,124.00,944.00,,,,,,\n2015,5,15,\"B6\",\"1083\",\"JFK\",\"MCO\",0.00,-24.00,0.00,\"\",0.00,153.00,128.00,944.00,,,,,,\n2015,5,16,\"B6\",\"1083\",\"JFK\",\"MCO\",-12.00,-35.00,0.00,\"\",0.00,154.00,132.00,944.00,,,,,,\n2015,5,17,\"B6\",\"1083\",\"JFK\",\"MCO\",36.00,14.00,0.00,\"\",0.00,155.00,119.00,944.00,,,,,,\n2015,5,18,\"B6\",\"1083\",\"JFK\",\"MCO\",168.00,169.00,0.00,\"\",0.00,178.00,120.00,944.00,21.00,0.00,1.00,0.00,147.00,\n2015,5,19,\"B6\",\"1083\",\"JFK\",\"MCO\",21.00,24.00,0.00,\"\",0.00,180.00,133.00,944.00,21.00,0.00,3.00,0.00,0.00,\n2015,5,20,\"B6\",\"1083\",\"JFK\",\"MCO\",3.00,-13.00,0.00,\"\",0.00,161.00,124.00,944.00,,,,,,\n2015,5,21,\"B6\",\"1083\",\"JFK\",\"MCO\",27.00,8.00,0.00,\"\",0.00,158.00,132.00,944.00,,,,,,\n2015,5,22,\"B6\",\"1083\",\"JFK\",\"MCO\",2.00,-10.00,0.00,\"\",0.00,165.00,132.00,944.00,,,,,,\n2015,5,23,\"B6\",\"1083\",\"JFK\",\"MCO\",-9.00,-39.00,0.00,\"\",0.00,147.00,126.00,944.00,,,,,,\n2015,5,24,\"B6\",\"1083\",\"JFK\",\"MCO\",-2.00,-29.00,0.00,\"\",0.00,150.00,122.00,944.00,,,,,,\n2015,5,25,\"B6\",\"1083\",\"JFK\",\"MCO\",6.00,-10.00,0.00,\"\",0.00,161.00,127.00,944.00,,,,,,\n2015,5,26,\"B6\",\"1083\",\"JFK\",\"MCO\",0.00,-27.00,0.00,\"\",0.00,150.00,125.00,944.00,,,,,,\n2015,5,27,\"B6\",\"1083\",\"JFK\",\"MCO\",,,1.00,\"C\",0.00,,,944.00,,,,,,\n2015,5,28,\"B6\",\"1083\",\"JFK\",\"MCO\",9.00,-13.00,0.00,\"\",0.00,155.00,123.00,944.00,,,,,,\n2015,5,29,\"B6\",\"1083\",\"JFK\",\"MCO\",-7.00,-38.00,0.00,\"\",0.00,146.00,121.00,944.00,,,,,,\n2015,5,30,\"B6\",\"1083\",\"JFK\",\"MCO\",-11.00,-33.00,0.00,\"\",0.00,155.00,123.00,944.00,,,,,,\n2015,5,31,\"B6\",\"1083\",\"JFK\",\"MCO\",37.00,84.00,0.00,\"\",0.00,224.00,124.00,944.00,0.00,37.00,47.00,0.00,0.00,\n2015,5,19,\"B6\",\"1251\",\"HPN\",\"RSW\",-5.00,1.00,0.00,\"\",0.00,187.00,158.00,1102.00,,,,,,\n2015,5,20,\"B6\",\"1251\",\"HPN\",\"RSW\",-2.00,-6.00,0.00,\"\",0.00,177.00,157.00,1102.00,,,,,,\n2015,5,21,\"B6\",\"1251\",\"HPN\",\"RSW\",21.00,17.00,0.00,\"\",0.00,177.00,161.00,1102.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"B6\",\"1251\",\"HPN\",\"RSW\",-7.00,-3.00,0.00,\"\",0.00,185.00,166.00,1102.00,,,,,,\n2015,5,23,\"B6\",\"1251\",\"HPN\",\"RSW\",-6.00,-8.00,0.00,\"\",0.00,179.00,160.00,1102.00,,,,,,\n2015,5,24,\"B6\",\"1251\",\"HPN\",\"RSW\",-4.00,-17.00,0.00,\"\",0.00,168.00,152.00,1102.00,,,,,,\n2015,5,25,\"B6\",\"1251\",\"HPN\",\"RSW\",-7.00,-17.00,0.00,\"\",0.00,171.00,157.00,1102.00,,,,,,\n2015,5,26,\"B6\",\"1251\",\"HPN\",\"RSW\",-8.00,-9.00,0.00,\"\",0.00,180.00,158.00,1102.00,,,,,,\n2015,5,27,\"B6\",\"1251\",\"HPN\",\"RSW\",-3.00,-8.00,0.00,\"\",0.00,176.00,161.00,1102.00,,,,,,\n2015,5,28,\"B6\",\"1251\",\"HPN\",\"RSW\",-11.00,-8.00,0.00,\"\",0.00,184.00,157.00,1102.00,,,,,,\n2015,5,29,\"B6\",\"1251\",\"HPN\",\"RSW\",-3.00,-21.00,0.00,\"\",0.00,163.00,150.00,1102.00,,,,,,\n2015,5,30,\"B6\",\"1251\",\"HPN\",\"RSW\",-4.00,-16.00,0.00,\"\",0.00,169.00,151.00,1102.00,,,,,,\n2015,5,31,\"B6\",\"1251\",\"HPN\",\"RSW\",-10.00,-15.00,0.00,\"\",0.00,176.00,154.00,1102.00,,,,,,\n2015,5,1,\"B6\",\"1252\",\"RSW\",\"HPN\",-1.00,-23.00,0.00,\"\",0.00,151.00,139.00,1102.00,,,,,,\n2015,5,2,\"B6\",\"1252\",\"RSW\",\"HPN\",8.00,-5.00,0.00,\"\",0.00,160.00,149.00,1102.00,,,,,,\n2015,5,3,\"B6\",\"1252\",\"RSW\",\"HPN\",-6.00,-15.00,0.00,\"\",0.00,164.00,150.00,1102.00,,,,,,\n2015,5,4,\"B6\",\"1252\",\"RSW\",\"HPN\",-1.00,-13.00,0.00,\"\",0.00,161.00,147.00,1102.00,,,,,,\n2015,5,5,\"B6\",\"1252\",\"RSW\",\"HPN\",17.00,7.00,0.00,\"\",0.00,163.00,148.00,1102.00,,,,,,\n2015,5,6,\"B6\",\"1252\",\"RSW\",\"HPN\",20.00,5.00,0.00,\"\",0.00,158.00,144.00,1102.00,,,,,,\n2015,5,7,\"B6\",\"1252\",\"RSW\",\"HPN\",7.00,2.00,0.00,\"\",0.00,168.00,153.00,1102.00,,,,,,\n2015,5,8,\"B6\",\"1252\",\"RSW\",\"HPN\",33.00,37.00,0.00,\"\",0.00,177.00,162.00,1102.00,27.00,0.00,4.00,0.00,6.00,\n2015,5,9,\"B6\",\"1252\",\"RSW\",\"HPN\",4.00,0.00,0.00,\"\",0.00,169.00,157.00,1102.00,,,,,,\n2015,5,10,\"B6\",\"1252\",\"RSW\",\"HPN\",-9.00,-2.00,0.00,\"\",0.00,180.00,160.00,1102.00,,,,,,\n2015,5,11,\"B6\",\"1252\",\"RSW\",\"HPN\",-3.00,-14.00,0.00,\"\",0.00,162.00,151.00,1102.00,,,,,,\n2015,5,12,\"B6\",\"1252\",\"RSW\",\"HPN\",10.00,7.00,0.00,\"\",0.00,170.00,152.00,1102.00,,,,,,\n2015,5,13,\"B6\",\"1252\",\"RSW\",\"HPN\",4.00,-3.00,0.00,\"\",0.00,166.00,149.00,1102.00,,,,,,\n2015,5,14,\"B6\",\"1252\",\"RSW\",\"HPN\",18.00,15.00,0.00,\"\",0.00,170.00,158.00,1102.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"B6\",\"1252\",\"RSW\",\"HPN\",7.00,-4.00,0.00,\"\",0.00,162.00,148.00,1102.00,,,,,,\n2015,5,16,\"B6\",\"1252\",\"RSW\",\"HPN\",23.00,22.00,0.00,\"\",0.00,172.00,157.00,1102.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"1252\",\"RSW\",\"HPN\",-4.00,-12.00,0.00,\"\",0.00,165.00,153.00,1102.00,,,,,,\n2015,5,18,\"B6\",\"1252\",\"RSW\",\"HPN\",-9.00,-13.00,0.00,\"\",0.00,169.00,155.00,1102.00,,,,,,\n2015,5,19,\"B6\",\"1252\",\"RSW\",\"HPN\",10.00,15.00,0.00,\"\",0.00,178.00,157.00,1102.00,10.00,0.00,5.00,0.00,0.00,\n2015,5,20,\"B6\",\"1252\",\"RSW\",\"HPN\",11.00,0.00,0.00,\"\",0.00,162.00,149.00,1102.00,,,,,,\n2015,5,21,\"B6\",\"1252\",\"RSW\",\"HPN\",27.00,22.00,0.00,\"\",0.00,168.00,152.00,1102.00,10.00,0.00,0.00,0.00,12.00,\n2015,5,22,\"B6\",\"1252\",\"RSW\",\"HPN\",15.00,2.00,0.00,\"\",0.00,160.00,146.00,1102.00,,,,,,\n2015,5,23,\"B6\",\"1252\",\"RSW\",\"HPN\",1.00,-10.00,0.00,\"\",0.00,162.00,148.00,1102.00,,,,,,\n2015,5,24,\"B6\",\"1252\",\"RSW\",\"HPN\",-1.00,-8.00,0.00,\"\",0.00,166.00,156.00,1102.00,,,,,,\n2015,5,25,\"B6\",\"1252\",\"RSW\",\"HPN\",0.00,-14.00,0.00,\"\",0.00,159.00,148.00,1102.00,,,,,,\n2015,5,26,\"B6\",\"1252\",\"RSW\",\"HPN\",-2.00,-4.00,0.00,\"\",0.00,171.00,148.00,1102.00,,,,,,\n2015,5,27,\"B6\",\"1252\",\"RSW\",\"HPN\",10.00,-1.00,0.00,\"\",0.00,162.00,150.00,1102.00,,,,,,\n2015,5,28,\"B6\",\"1252\",\"RSW\",\"HPN\",-3.00,-1.00,0.00,\"\",0.00,175.00,155.00,1102.00,,,,,,\n2015,5,29,\"B6\",\"1252\",\"RSW\",\"HPN\",-6.00,-13.00,0.00,\"\",0.00,166.00,153.00,1102.00,,,,,,\n2015,5,30,\"B6\",\"1252\",\"RSW\",\"HPN\",-6.00,-9.00,0.00,\"\",0.00,170.00,152.00,1102.00,,,,,,\n2015,5,31,\"B6\",\"1252\",\"RSW\",\"HPN\",-3.00,-13.00,0.00,\"\",0.00,163.00,148.00,1102.00,,,,,,\n2015,5,1,\"B6\",\"1262\",\"PBI\",\"LGA\",-7.00,-25.00,0.00,\"\",0.00,152.00,134.00,1035.00,,,,,,\n2015,5,2,\"B6\",\"1262\",\"PBI\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,158.00,137.00,1035.00,,,,,,\n2015,5,3,\"B6\",\"1262\",\"PBI\",\"LGA\",3.00,-13.00,0.00,\"\",0.00,154.00,140.00,1035.00,,,,,,\n2015,5,4,\"B6\",\"1262\",\"PBI\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,158.00,141.00,1035.00,,,,,,\n2015,5,5,\"B6\",\"1262\",\"PBI\",\"LGA\",-9.00,-23.00,0.00,\"\",0.00,156.00,130.00,1035.00,,,,,,\n2015,5,6,\"B6\",\"1262\",\"PBI\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,156.00,141.00,1035.00,,,,,,\n2015,5,7,\"B6\",\"1262\",\"PBI\",\"LGA\",2.00,-9.00,0.00,\"\",0.00,159.00,142.00,1035.00,,,,,,\n2015,5,8,\"B6\",\"1262\",\"PBI\",\"LGA\",31.00,16.00,0.00,\"\",0.00,155.00,140.00,1035.00,2.00,0.00,0.00,0.00,14.00,\n2015,5,9,\"B6\",\"1262\",\"PBI\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,162.00,147.00,1035.00,,,,,,\n2015,5,10,\"B6\",\"1262\",\"PBI\",\"LGA\",12.00,10.00,0.00,\"\",0.00,168.00,150.00,1035.00,,,,,,\n2015,5,11,\"B6\",\"1262\",\"PBI\",\"LGA\",116.00,134.00,0.00,\"\",0.00,188.00,169.00,1035.00,0.00,0.00,134.00,0.00,0.00,\n2015,5,12,\"B6\",\"1262\",\"PBI\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,158.00,141.00,1035.00,,,,,,\n2015,5,13,\"B6\",\"1262\",\"PBI\",\"LGA\",-4.00,9.00,0.00,\"\",0.00,183.00,147.00,1035.00,,,,,,\n2015,5,14,\"B6\",\"1262\",\"PBI\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,161.00,141.00,1035.00,,,,,,\n2015,5,15,\"B6\",\"1262\",\"PBI\",\"LGA\",5.00,-5.00,0.00,\"\",0.00,160.00,142.00,1035.00,,,,,,\n2015,5,16,\"B6\",\"1262\",\"PBI\",\"LGA\",-7.00,-7.00,0.00,\"\",0.00,170.00,153.00,1035.00,,,,,,\n2015,5,17,\"B6\",\"1262\",\"PBI\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,170.00,137.00,1035.00,,,,,,\n2015,5,18,\"B6\",\"1262\",\"PBI\",\"LGA\",45.00,72.00,0.00,\"\",0.00,197.00,158.00,1035.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,19,\"B6\",\"1262\",\"PBI\",\"LGA\",87.00,76.00,0.00,\"\",0.00,159.00,141.00,1035.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,20,\"B6\",\"1262\",\"PBI\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,158.00,130.00,1035.00,,,,,,\n2015,5,21,\"B6\",\"1262\",\"PBI\",\"LGA\",9.00,1.00,0.00,\"\",0.00,162.00,140.00,1035.00,,,,,,\n2015,5,22,\"B6\",\"1262\",\"PBI\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,160.00,133.00,1035.00,,,,,,\n2015,5,23,\"B6\",\"1262\",\"PBI\",\"LGA\",-10.00,-9.00,0.00,\"\",0.00,171.00,142.00,1035.00,,,,,,\n2015,5,24,\"B6\",\"1262\",\"PBI\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,166.00,143.00,1035.00,,,,,,\n2015,5,25,\"B6\",\"1262\",\"PBI\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,157.00,133.00,1035.00,,,,,,\n2015,5,26,\"B6\",\"1262\",\"PBI\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,162.00,133.00,1035.00,,,,,,\n2015,5,27,\"B6\",\"1262\",\"PBI\",\"LGA\",154.00,144.00,0.00,\"\",0.00,160.00,139.00,1035.00,0.00,0.00,144.00,0.00,0.00,\n2015,5,28,\"B6\",\"1262\",\"PBI\",\"LGA\",-9.00,-5.00,0.00,\"\",0.00,174.00,131.00,1035.00,,,,,,\n2015,5,29,\"B6\",\"1262\",\"PBI\",\"LGA\",-10.00,-14.00,0.00,\"\",0.00,166.00,142.00,1035.00,,,,,,\n2015,5,30,\"B6\",\"1262\",\"PBI\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,161.00,140.00,1035.00,,,,,,\n2015,5,31,\"B6\",\"1262\",\"PBI\",\"LGA\",,,1.00,\"C\",0.00,,,1035.00,,,,,,\n2015,5,1,\"B6\",\"1271\",\"LGA\",\"FLL\",6.00,11.00,0.00,\"\",0.00,189.00,151.00,1076.00,,,,,,\n2015,5,2,\"B6\",\"1271\",\"LGA\",\"FLL\",-10.00,-33.00,0.00,\"\",0.00,161.00,143.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"1271\",\"LGA\",\"FLL\",-10.00,-28.00,0.00,\"\",0.00,166.00,145.00,1076.00,,,,,,\n2015,5,4,\"B6\",\"1271\",\"LGA\",\"FLL\",-14.00,-38.00,0.00,\"\",0.00,160.00,143.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"1271\",\"LGA\",\"FLL\",-10.00,-22.00,0.00,\"\",0.00,172.00,154.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"1271\",\"LGA\",\"FLL\",-8.00,-1.00,0.00,\"\",0.00,191.00,143.00,1076.00,,,,,,\n2015,5,7,\"B6\",\"1271\",\"LGA\",\"FLL\",7.00,-8.00,0.00,\"\",0.00,169.00,138.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"1271\",\"LGA\",\"FLL\",-3.00,-27.00,0.00,\"\",0.00,160.00,139.00,1076.00,,,,,,\n2015,5,9,\"B6\",\"1271\",\"LGA\",\"FLL\",-5.00,-13.00,0.00,\"\",0.00,176.00,153.00,1076.00,,,,,,\n2015,5,10,\"B6\",\"1271\",\"LGA\",\"FLL\",-6.00,-1.00,0.00,\"\",0.00,189.00,153.00,1076.00,,,,,,\n2015,5,11,\"B6\",\"1271\",\"LGA\",\"FLL\",101.00,78.00,0.00,\"\",0.00,161.00,141.00,1076.00,10.00,0.00,0.00,0.00,68.00,\n2015,5,12,\"B6\",\"1271\",\"LGA\",\"FLL\",-7.00,-23.00,0.00,\"\",0.00,168.00,148.00,1076.00,,,,,,\n2015,5,13,\"B6\",\"1271\",\"LGA\",\"FLL\",-10.00,-21.00,0.00,\"\",0.00,173.00,138.00,1076.00,,,,,,\n2015,5,14,\"B6\",\"1271\",\"LGA\",\"FLL\",32.00,16.00,0.00,\"\",0.00,168.00,136.00,1076.00,5.00,0.00,0.00,0.00,11.00,\n2015,5,15,\"B6\",\"1271\",\"LGA\",\"FLL\",5.00,-12.00,0.00,\"\",0.00,167.00,138.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"1271\",\"LGA\",\"FLL\",-17.00,-42.00,0.00,\"\",0.00,159.00,142.00,1076.00,,,,,,\n2015,5,17,\"B6\",\"1271\",\"LGA\",\"FLL\",4.00,5.00,0.00,\"\",0.00,185.00,141.00,1076.00,,,,,,\n2015,5,18,\"B6\",\"1271\",\"LGA\",\"FLL\",164.00,165.00,0.00,\"\",0.00,185.00,140.00,1076.00,11.00,0.00,1.00,0.00,153.00,\n2015,5,19,\"B6\",\"1271\",\"LGA\",\"FLL\",127.00,126.00,0.00,\"\",0.00,183.00,156.00,1076.00,14.00,0.00,0.00,0.00,112.00,\n2015,5,20,\"B6\",\"1271\",\"LGA\",\"FLL\",-5.00,12.00,0.00,\"\",0.00,201.00,145.00,1076.00,,,,,,\n2015,5,21,\"B6\",\"1271\",\"LGA\",\"FLL\",-9.00,-29.00,0.00,\"\",0.00,164.00,138.00,1076.00,,,,,,\n2015,5,22,\"B6\",\"1271\",\"LGA\",\"FLL\",-6.00,-26.00,0.00,\"\",0.00,164.00,141.00,1076.00,,,,,,\n2015,5,23,\"B6\",\"1271\",\"LGA\",\"FLL\",-10.00,-42.00,0.00,\"\",0.00,152.00,137.00,1076.00,,,,,,\n2015,5,24,\"B6\",\"1271\",\"LGA\",\"FLL\",-5.00,-32.00,0.00,\"\",0.00,157.00,137.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"1271\",\"LGA\",\"FLL\",-2.00,-16.00,0.00,\"\",0.00,170.00,148.00,1076.00,,,,,,\n2015,5,26,\"B6\",\"1271\",\"LGA\",\"FLL\",10.00,-5.00,0.00,\"\",0.00,169.00,145.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"1271\",\"LGA\",\"FLL\",175.00,145.00,0.00,\"\",0.00,154.00,139.00,1076.00,12.00,0.00,0.00,0.00,133.00,\n2015,5,28,\"B6\",\"1271\",\"LGA\",\"FLL\",35.00,34.00,0.00,\"\",0.00,183.00,131.00,1076.00,15.00,0.00,0.00,0.00,19.00,\n2015,5,29,\"B6\",\"1271\",\"LGA\",\"FLL\",27.00,31.00,0.00,\"\",0.00,188.00,138.00,1076.00,27.00,0.00,4.00,0.00,0.00,\n2015,5,30,\"B6\",\"1271\",\"LGA\",\"FLL\",-15.00,-40.00,0.00,\"\",0.00,159.00,134.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"1271\",\"LGA\",\"FLL\",,,1.00,\"C\",0.00,,,1076.00,,,,,,\n2015,5,1,\"B6\",\"1272\",\"FLL\",\"LGA\",0.00,-22.00,0.00,\"\",0.00,154.00,139.00,1076.00,,,,,,\n2015,5,2,\"B6\",\"1272\",\"FLL\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,161.00,141.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"1272\",\"FLL\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,162.00,144.00,1076.00,,,,,,\n2015,5,4,\"B6\",\"1272\",\"FLL\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,167.00,142.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"1272\",\"FLL\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,159.00,145.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"1272\",\"FLL\",\"LGA\",-4.00,-24.00,0.00,\"\",0.00,156.00,141.00,1076.00,,,,,,\n2015,5,7,\"B6\",\"1272\",\"FLL\",\"LGA\",13.00,0.00,0.00,\"\",0.00,163.00,147.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"1272\",\"FLL\",\"LGA\",,,1.00,\"A\",0.00,,,1076.00,,,,,,\n2015,5,9,\"B6\",\"1272\",\"FLL\",\"LGA\",0.00,25.00,0.00,\"\",0.00,201.00,181.00,1076.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,10,\"B6\",\"1272\",\"FLL\",\"LGA\",45.00,54.00,0.00,\"\",0.00,185.00,159.00,1076.00,45.00,0.00,9.00,0.00,0.00,\n2015,5,11,\"B6\",\"1272\",\"FLL\",\"LGA\",0.00,31.00,0.00,\"\",0.00,207.00,184.00,1076.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,12,\"B6\",\"1272\",\"FLL\",\"LGA\",-2.00,4.00,0.00,\"\",0.00,182.00,144.00,1076.00,,,,,,\n2015,5,13,\"B6\",\"1272\",\"FLL\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,159.00,145.00,1076.00,,,,,,\n2015,5,14,\"B6\",\"1272\",\"FLL\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,169.00,151.00,1076.00,,,,,,\n2015,5,15,\"B6\",\"1272\",\"FLL\",\"LGA\",25.00,9.00,0.00,\"\",0.00,160.00,143.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"1272\",\"FLL\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,167.00,148.00,1076.00,,,,,,\n2015,5,17,\"B6\",\"1272\",\"FLL\",\"LGA\",116.00,104.00,0.00,\"\",0.00,164.00,139.00,1076.00,104.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"1272\",\"FLL\",\"LGA\",109.00,109.00,0.00,\"\",0.00,176.00,159.00,1076.00,0.00,0.00,109.00,0.00,0.00,\n2015,5,19,\"B6\",\"1272\",\"FLL\",\"LGA\",129.00,127.00,0.00,\"\",0.00,174.00,150.00,1076.00,0.00,0.00,127.00,0.00,0.00,\n2015,5,20,\"B6\",\"1272\",\"FLL\",\"LGA\",23.00,4.00,0.00,\"\",0.00,157.00,143.00,1076.00,,,,,,\n2015,5,21,\"B6\",\"1272\",\"FLL\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,165.00,143.00,1076.00,,,,,,\n2015,5,22,\"B6\",\"1272\",\"FLL\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,159.00,137.00,1076.00,,,,,,\n2015,5,23,\"B6\",\"1272\",\"FLL\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,164.00,147.00,1076.00,,,,,,\n2015,5,24,\"B6\",\"1272\",\"FLL\",\"LGA\",-10.00,-19.00,0.00,\"\",0.00,167.00,154.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"1272\",\"FLL\",\"LGA\",42.00,37.00,0.00,\"\",0.00,171.00,139.00,1076.00,0.00,0.00,0.00,0.00,37.00,\n2015,5,26,\"B6\",\"1272\",\"FLL\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,161.00,142.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"1272\",\"FLL\",\"LGA\",-4.00,57.00,0.00,\"\",0.00,237.00,142.00,1076.00,0.00,0.00,57.00,0.00,0.00,\n2015,5,28,\"B6\",\"1272\",\"FLL\",\"LGA\",1.00,-19.00,0.00,\"\",0.00,156.00,140.00,1076.00,,,,,,\n2015,5,29,\"B6\",\"1272\",\"FLL\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,171.00,148.00,1076.00,,,,,,\n2015,5,30,\"B6\",\"1272\",\"FLL\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,171.00,148.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"1272\",\"FLL\",\"LGA\",25.00,26.00,0.00,\"\",0.00,177.00,140.00,1076.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,1,\"B6\",\"1273\",\"JFK\",\"CHS\",-2.00,8.00,0.00,\"\",0.00,135.00,99.00,636.00,,,,,,\n2015,5,2,\"B6\",\"1273\",\"JFK\",\"CHS\",-6.00,-14.00,0.00,\"\",0.00,117.00,89.00,636.00,,,,,,\n2015,5,3,\"B6\",\"1273\",\"JFK\",\"CHS\",-11.00,-20.00,0.00,\"\",0.00,116.00,88.00,636.00,,,,,,\n2015,5,4,\"B6\",\"1273\",\"JFK\",\"CHS\",-4.00,-11.00,0.00,\"\",0.00,118.00,88.00,636.00,,,,,,\n2015,5,5,\"B6\",\"1273\",\"JFK\",\"CHS\",-6.00,-10.00,0.00,\"\",0.00,121.00,88.00,636.00,,,,,,\n2015,5,6,\"B6\",\"1273\",\"JFK\",\"CHS\",-6.00,-3.00,0.00,\"\",0.00,128.00,93.00,636.00,,,,,,\n2015,5,7,\"B6\",\"1273\",\"JFK\",\"CHS\",-10.00,-17.00,0.00,\"\",0.00,118.00,87.00,636.00,,,,,,\n2015,5,8,\"B6\",\"1273\",\"JFK\",\"CHS\",-4.00,2.00,0.00,\"\",0.00,131.00,89.00,636.00,,,,,,\n2015,5,9,\"B6\",\"1273\",\"JFK\",\"CHS\",-6.00,-6.00,0.00,\"\",0.00,125.00,87.00,636.00,,,,,,\n2015,5,10,\"B6\",\"1273\",\"JFK\",\"CHS\",-8.00,-1.00,0.00,\"\",0.00,132.00,99.00,636.00,,,,,,\n2015,5,11,\"B6\",\"1273\",\"JFK\",\"CHS\",3.00,1.00,0.00,\"\",0.00,123.00,94.00,636.00,,,,,,\n2015,5,12,\"B6\",\"1273\",\"JFK\",\"CHS\",-5.00,25.00,0.00,\"\",0.00,155.00,91.00,636.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,13,\"B6\",\"1273\",\"JFK\",\"CHS\",-8.00,-11.00,0.00,\"\",0.00,122.00,93.00,636.00,,,,,,\n2015,5,14,\"B6\",\"1273\",\"JFK\",\"CHS\",1.00,0.00,0.00,\"\",0.00,124.00,90.00,636.00,,,,,,\n2015,5,15,\"B6\",\"1273\",\"JFK\",\"CHS\",5.00,14.00,0.00,\"\",0.00,134.00,99.00,636.00,,,,,,\n2015,5,16,\"B6\",\"1273\",\"JFK\",\"CHS\",-3.00,-4.00,0.00,\"\",0.00,124.00,85.00,636.00,,,,,,\n2015,5,17,\"B6\",\"1273\",\"JFK\",\"CHS\",7.00,-10.00,0.00,\"\",0.00,108.00,85.00,636.00,,,,,,\n2015,5,18,\"B6\",\"1273\",\"JFK\",\"CHS\",0.00,-5.00,0.00,\"\",0.00,120.00,88.00,636.00,,,,,,\n2015,5,19,\"B6\",\"1273\",\"JFK\",\"CHS\",30.00,30.00,0.00,\"\",0.00,125.00,90.00,636.00,0.00,0.00,0.00,4.00,26.00,\n2015,5,20,\"B6\",\"1273\",\"JFK\",\"CHS\",0.00,-2.00,0.00,\"\",0.00,123.00,88.00,636.00,,,,,,\n2015,5,21,\"B6\",\"1273\",\"JFK\",\"CHS\",-9.00,-7.00,0.00,\"\",0.00,127.00,95.00,636.00,,,,,,\n2015,5,22,\"B6\",\"1273\",\"JFK\",\"CHS\",-3.00,1.00,0.00,\"\",0.00,129.00,98.00,636.00,,,,,,\n2015,5,23,\"B6\",\"1273\",\"JFK\",\"CHS\",1.00,-8.00,0.00,\"\",0.00,116.00,91.00,636.00,,,,,,\n2015,5,24,\"B6\",\"1273\",\"JFK\",\"CHS\",-5.00,-20.00,0.00,\"\",0.00,110.00,89.00,636.00,,,,,,\n2015,5,25,\"B6\",\"1273\",\"JFK\",\"CHS\",-7.00,-18.00,0.00,\"\",0.00,114.00,88.00,636.00,,,,,,\n2015,5,26,\"B6\",\"1273\",\"JFK\",\"CHS\",11.00,-8.00,0.00,\"\",0.00,106.00,85.00,636.00,,,,,,\n2015,5,27,\"B6\",\"1273\",\"JFK\",\"CHS\",-2.00,-8.00,0.00,\"\",0.00,119.00,89.00,636.00,,,,,,\n2015,5,28,\"B6\",\"1273\",\"JFK\",\"CHS\",-3.00,-12.00,0.00,\"\",0.00,116.00,89.00,636.00,,,,,,\n2015,5,29,\"B6\",\"1273\",\"JFK\",\"CHS\",-1.00,-5.00,0.00,\"\",0.00,121.00,83.00,636.00,,,,,,\n2015,5,30,\"B6\",\"1273\",\"JFK\",\"CHS\",-3.00,-3.00,0.00,\"\",0.00,125.00,86.00,636.00,,,,,,\n2015,5,31,\"B6\",\"1273\",\"JFK\",\"CHS\",-5.00,-17.00,0.00,\"\",0.00,113.00,87.00,636.00,,,,,,\n2015,5,1,\"B6\",\"1274\",\"CHS\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,100.00,83.00,636.00,,,,,,\n2015,5,2,\"B6\",\"1274\",\"CHS\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,104.00,88.00,636.00,,,,,,\n2015,5,3,\"B6\",\"1274\",\"CHS\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,102.00,90.00,636.00,,,,,,\n2015,5,4,\"B6\",\"1274\",\"CHS\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,112.00,90.00,636.00,,,,,,\n2015,5,5,\"B6\",\"1274\",\"CHS\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,103.00,86.00,636.00,,,,,,\n2015,5,6,\"B6\",\"1274\",\"CHS\",\"JFK\",4.00,-21.00,0.00,\"\",0.00,91.00,79.00,636.00,,,,,,\n2015,5,7,\"B6\",\"1274\",\"CHS\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,103.00,90.00,636.00,,,,,,\n2015,5,8,\"B6\",\"1274\",\"CHS\",\"JFK\",7.00,-4.00,0.00,\"\",0.00,105.00,89.00,636.00,,,,,,\n2015,5,9,\"B6\",\"1274\",\"CHS\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,105.00,93.00,636.00,,,,,,\n2015,5,10,\"B6\",\"1274\",\"CHS\",\"JFK\",-8.00,-8.00,0.00,\"\",0.00,116.00,88.00,636.00,,,,,,\n2015,5,11,\"B6\",\"1274\",\"CHS\",\"JFK\",1.00,1.00,0.00,\"\",0.00,116.00,92.00,636.00,,,,,,\n2015,5,12,\"B6\",\"1274\",\"CHS\",\"JFK\",17.00,14.00,0.00,\"\",0.00,113.00,92.00,636.00,,,,,,\n2015,5,13,\"B6\",\"1274\",\"CHS\",\"JFK\",-7.00,-33.00,0.00,\"\",0.00,90.00,79.00,636.00,,,,,,\n2015,5,14,\"B6\",\"1274\",\"CHS\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,105.00,91.00,636.00,,,,,,\n2015,5,15,\"B6\",\"1274\",\"CHS\",\"JFK\",12.00,7.00,0.00,\"\",0.00,111.00,83.00,636.00,,,,,,\n2015,5,16,\"B6\",\"1274\",\"CHS\",\"JFK\",21.00,17.00,0.00,\"\",0.00,112.00,90.00,636.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"1274\",\"CHS\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,98.00,84.00,636.00,,,,,,\n2015,5,18,\"B6\",\"1274\",\"CHS\",\"JFK\",0.00,5.00,0.00,\"\",0.00,121.00,103.00,636.00,,,,,,\n2015,5,19,\"B6\",\"1274\",\"CHS\",\"JFK\",23.00,28.00,0.00,\"\",0.00,121.00,87.00,636.00,0.00,0.00,5.00,0.00,23.00,\n2015,5,20,\"B6\",\"1274\",\"CHS\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,101.00,83.00,636.00,,,,,,\n2015,5,21,\"B6\",\"1274\",\"CHS\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,113.00,88.00,636.00,,,,,,\n2015,5,22,\"B6\",\"1274\",\"CHS\",\"JFK\",6.00,-15.00,0.00,\"\",0.00,95.00,82.00,636.00,,,,,,\n2015,5,23,\"B6\",\"1274\",\"CHS\",\"JFK\",1.00,-16.00,0.00,\"\",0.00,99.00,82.00,636.00,,,,,,\n2015,5,24,\"B6\",\"1274\",\"CHS\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,106.00,88.00,636.00,,,,,,\n2015,5,25,\"B6\",\"1274\",\"CHS\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,108.00,86.00,636.00,,,,,,\n2015,5,26,\"B6\",\"1274\",\"CHS\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,103.00,80.00,636.00,,,,,,\n2015,5,27,\"B6\",\"1274\",\"CHS\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,108.00,83.00,636.00,,,,,,\n2015,5,28,\"B6\",\"1274\",\"CHS\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,106.00,86.00,636.00,,,,,,\n2015,5,29,\"B6\",\"1274\",\"CHS\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,106.00,92.00,636.00,,,,,,\n2015,5,30,\"B6\",\"1274\",\"CHS\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,102.00,88.00,636.00,,,,,,\n2015,5,31,\"B6\",\"1274\",\"CHS\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,98.00,84.00,636.00,,,,,,\n2015,5,1,\"B6\",\"1294\",\"MCO\",\"HPN\",4.00,-8.00,0.00,\"\",0.00,150.00,131.00,972.00,,,,,,\n2015,5,2,\"B6\",\"1294\",\"MCO\",\"HPN\",-6.00,-17.00,0.00,\"\",0.00,151.00,133.00,972.00,,,,,,\n2015,5,3,\"B6\",\"1294\",\"MCO\",\"HPN\",-7.00,-12.00,0.00,\"\",0.00,157.00,137.00,972.00,,,,,,\n2015,5,4,\"B6\",\"1294\",\"MCO\",\"HPN\",1.00,-10.00,0.00,\"\",0.00,151.00,135.00,972.00,,,,,,\n2015,5,5,\"B6\",\"1294\",\"MCO\",\"HPN\",-8.00,-20.00,0.00,\"\",0.00,150.00,131.00,972.00,,,,,,\n2015,5,6,\"B6\",\"1294\",\"MCO\",\"HPN\",-11.00,-27.00,0.00,\"\",0.00,146.00,131.00,972.00,,,,,,\n2015,5,7,\"B6\",\"1294\",\"MCO\",\"HPN\",-7.00,-10.00,0.00,\"\",0.00,159.00,137.00,972.00,,,,,,\n2015,5,8,\"B6\",\"1294\",\"MCO\",\"HPN\",-4.00,-16.00,0.00,\"\",0.00,150.00,136.00,972.00,,,,,,\n2015,5,9,\"B6\",\"1294\",\"MCO\",\"HPN\",9.00,16.00,0.00,\"\",0.00,169.00,143.00,972.00,9.00,0.00,7.00,0.00,0.00,\n2015,5,10,\"B6\",\"1294\",\"MCO\",\"HPN\",-5.00,6.00,0.00,\"\",0.00,173.00,149.00,972.00,,,,,,\n2015,5,11,\"B6\",\"1294\",\"MCO\",\"HPN\",20.00,22.00,0.00,\"\",0.00,164.00,140.00,972.00,7.00,0.00,2.00,0.00,13.00,\n2015,5,12,\"B6\",\"1294\",\"MCO\",\"HPN\",-7.00,-20.00,0.00,\"\",0.00,149.00,132.00,972.00,,,,,,\n2015,5,13,\"B6\",\"1294\",\"MCO\",\"HPN\",84.00,78.00,0.00,\"\",0.00,156.00,138.00,972.00,78.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"B6\",\"1294\",\"MCO\",\"HPN\",-5.00,-4.00,0.00,\"\",0.00,163.00,137.00,972.00,,,,,,\n2015,5,15,\"B6\",\"1294\",\"MCO\",\"HPN\",56.00,46.00,0.00,\"\",0.00,152.00,134.00,972.00,46.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"B6\",\"1294\",\"MCO\",\"HPN\",-11.00,-20.00,0.00,\"\",0.00,153.00,136.00,972.00,,,,,,\n2015,5,17,\"B6\",\"1294\",\"MCO\",\"HPN\",-6.00,-6.00,0.00,\"\",0.00,162.00,142.00,972.00,,,,,,\n2015,5,18,\"B6\",\"1294\",\"MCO\",\"HPN\",-1.00,-2.00,0.00,\"\",0.00,161.00,143.00,972.00,,,,,,\n2015,5,19,\"B6\",\"1294\",\"MCO\",\"HPN\",72.00,77.00,0.00,\"\",0.00,167.00,144.00,972.00,72.00,0.00,5.00,0.00,0.00,\n2015,5,20,\"B6\",\"1294\",\"MCO\",\"HPN\",47.00,46.00,0.00,\"\",0.00,161.00,136.00,972.00,9.00,0.00,0.00,0.00,37.00,\n2015,5,21,\"B6\",\"1294\",\"MCO\",\"HPN\",19.00,12.00,0.00,\"\",0.00,155.00,133.00,972.00,,,,,,\n2015,5,22,\"B6\",\"1294\",\"MCO\",\"HPN\",-5.00,-19.00,0.00,\"\",0.00,148.00,131.00,972.00,,,,,,\n2015,5,23,\"B6\",\"1294\",\"MCO\",\"HPN\",30.00,26.00,0.00,\"\",0.00,158.00,142.00,972.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"B6\",\"1294\",\"MCO\",\"HPN\",-12.00,-19.00,0.00,\"\",0.00,155.00,135.00,972.00,,,,,,\n2015,5,25,\"B6\",\"1294\",\"MCO\",\"HPN\",-4.00,-18.00,0.00,\"\",0.00,148.00,130.00,972.00,,,,,,\n2015,5,26,\"B6\",\"1294\",\"MCO\",\"HPN\",-7.00,-19.00,0.00,\"\",0.00,150.00,134.00,972.00,,,,,,\n2015,5,27,\"B6\",\"1294\",\"MCO\",\"HPN\",-8.00,3.00,0.00,\"\",0.00,173.00,139.00,972.00,,,,,,\n2015,5,28,\"B6\",\"1294\",\"MCO\",\"HPN\",-10.00,-21.00,0.00,\"\",0.00,151.00,133.00,972.00,,,,,,\n2015,5,29,\"B6\",\"1294\",\"MCO\",\"HPN\",-10.00,-20.00,0.00,\"\",0.00,152.00,137.00,972.00,,,,,,\n2015,5,30,\"B6\",\"1294\",\"MCO\",\"HPN\",-3.00,-4.00,0.00,\"\",0.00,161.00,143.00,972.00,,,,,,\n2015,5,31,\"B6\",\"1294\",\"MCO\",\"HPN\",0.00,-4.00,0.00,\"\",0.00,158.00,140.00,972.00,,,,,,\n2015,5,1,\"B6\",\"1295\",\"JFK\",\"AUS\",-8.00,-37.00,0.00,\"\",0.00,229.00,197.00,1521.00,,,,,,\n2015,5,2,\"B6\",\"1295\",\"JFK\",\"AUS\",0.00,-27.00,0.00,\"\",0.00,231.00,201.00,1521.00,,,,,,\n2015,5,3,\"B6\",\"1295\",\"JFK\",\"AUS\",-7.00,-40.00,0.00,\"\",0.00,225.00,189.00,1521.00,,,,,,\n2015,5,4,\"B6\",\"1295\",\"JFK\",\"AUS\",30.00,16.00,0.00,\"\",0.00,244.00,191.00,1521.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"B6\",\"1295\",\"JFK\",\"AUS\",-5.00,2.00,0.00,\"\",0.00,265.00,235.00,1521.00,,,,,,\n2015,5,6,\"B6\",\"1295\",\"JFK\",\"AUS\",-9.00,-27.00,0.00,\"\",0.00,240.00,205.00,1521.00,,,,,,\n2015,5,7,\"B6\",\"1295\",\"JFK\",\"AUS\",2.00,-24.00,0.00,\"\",0.00,232.00,201.00,1521.00,,,,,,\n2015,5,8,\"B6\",\"1295\",\"JFK\",\"AUS\",43.00,38.00,0.00,\"\",0.00,253.00,198.00,1521.00,19.00,0.00,0.00,0.00,19.00,\n2015,5,9,\"B6\",\"1295\",\"JFK\",\"AUS\",3.00,-30.00,0.00,\"\",0.00,225.00,201.00,1521.00,,,,,,\n2015,5,10,\"B6\",\"1295\",\"JFK\",\"AUS\",5.00,-17.00,0.00,\"\",0.00,238.00,201.00,1521.00,,,,,,\n2015,5,11,\"B6\",\"1295\",\"JFK\",\"AUS\",6.00,-5.00,0.00,\"\",0.00,247.00,207.00,1521.00,,,,,,\n2015,5,12,\"B6\",\"1295\",\"JFK\",\"AUS\",-10.00,-30.00,0.00,\"\",0.00,240.00,219.00,1521.00,,,,,,\n2015,5,13,\"B6\",\"1295\",\"JFK\",\"AUS\",-5.00,-24.00,0.00,\"\",0.00,241.00,206.00,1521.00,,,,,,\n2015,5,14,\"B6\",\"1295\",\"JFK\",\"AUS\",-4.00,-26.00,0.00,\"\",0.00,236.00,204.00,1521.00,,,,,,\n2015,5,15,\"B6\",\"1295\",\"JFK\",\"AUS\",-4.00,-36.00,0.00,\"\",0.00,228.00,203.00,1521.00,,,,,,\n2015,5,16,\"B6\",\"1295\",\"JFK\",\"AUS\",109.00,86.00,0.00,\"\",0.00,237.00,202.00,1521.00,83.00,0.00,0.00,0.00,3.00,\n2015,5,17,\"B6\",\"1295\",\"JFK\",\"AUS\",44.00,10.00,0.00,\"\",0.00,226.00,193.00,1521.00,,,,,,\n2015,5,18,\"B6\",\"1295\",\"JFK\",\"AUS\",-3.00,37.00,0.00,\"\",0.00,298.00,202.00,1521.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,19,\"B6\",\"1295\",\"JFK\",\"AUS\",-3.00,-6.00,0.00,\"\",0.00,257.00,201.00,1521.00,,,,,,\n2015,5,20,\"B6\",\"1295\",\"JFK\",\"AUS\",35.00,11.00,0.00,\"\",0.00,236.00,211.00,1521.00,,,,,,\n2015,5,21,\"B6\",\"1295\",\"JFK\",\"AUS\",30.00,18.00,0.00,\"\",0.00,246.00,211.00,1521.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"B6\",\"1295\",\"JFK\",\"AUS\",-5.00,-20.00,0.00,\"\",0.00,245.00,207.00,1521.00,,,,,,\n2015,5,23,\"B6\",\"1295\",\"JFK\",\"AUS\",23.00,0.00,0.00,\"\",0.00,237.00,212.00,1521.00,,,,,,\n2015,5,24,\"B6\",\"1295\",\"JFK\",\"AUS\",1.00,-30.00,0.00,\"\",0.00,229.00,200.00,1521.00,,,,,,\n2015,5,25,\"B6\",\"1295\",\"JFK\",\"AUS\",17.00,-7.00,0.00,\"\",0.00,236.00,203.00,1521.00,,,,,,\n2015,5,26,\"B6\",\"1295\",\"JFK\",\"AUS\",-4.00,-18.00,0.00,\"\",0.00,246.00,204.00,1521.00,,,,,,\n2015,5,27,\"B6\",\"1295\",\"JFK\",\"AUS\",-3.00,-17.00,0.00,\"\",0.00,246.00,206.00,1521.00,,,,,,\n2015,5,28,\"B6\",\"1295\",\"JFK\",\"AUS\",49.00,15.00,0.00,\"\",0.00,224.00,193.00,1521.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"B6\",\"1295\",\"JFK\",\"AUS\",84.00,38.00,0.00,\"\",0.00,212.00,188.00,1521.00,38.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"B6\",\"1295\",\"JFK\",\"AUS\",-8.00,-35.00,0.00,\"\",0.00,231.00,201.00,1521.00,,,,,,\n2015,5,31,\"B6\",\"1295\",\"JFK\",\"AUS\",,,1.00,\"C\",0.00,,,1521.00,,,,,,\n2015,5,1,\"B6\",\"1304\",\"SJU\",\"JFK\",22.00,-14.00,0.00,\"\",0.00,211.00,200.00,1598.00,,,,,,\n2015,5,2,\"B6\",\"1304\",\"SJU\",\"JFK\",-5.00,-34.00,0.00,\"\",0.00,218.00,196.00,1598.00,,,,,,\n2015,5,3,\"B6\",\"1304\",\"SJU\",\"JFK\",-5.00,-38.00,0.00,\"\",0.00,214.00,201.00,1598.00,,,,,,\n2015,5,4,\"B6\",\"1304\",\"SJU\",\"JFK\",-5.00,-40.00,0.00,\"\",0.00,212.00,195.00,1598.00,,,,,,\n2015,5,5,\"B6\",\"1304\",\"SJU\",\"JFK\",-1.00,-26.00,0.00,\"\",0.00,222.00,204.00,1598.00,,,,,,\n2015,5,6,\"B6\",\"1304\",\"SJU\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,231.00,211.00,1598.00,,,,,,\n2015,5,7,\"B6\",\"1304\",\"SJU\",\"JFK\",-3.00,-31.00,0.00,\"\",0.00,219.00,203.00,1598.00,,,,,,\n2015,5,8,\"B6\",\"1304\",\"SJU\",\"JFK\",0.00,-35.00,0.00,\"\",0.00,212.00,196.00,1598.00,,,,,,\n2015,5,9,\"B6\",\"1304\",\"SJU\",\"JFK\",0.00,-38.00,0.00,\"\",0.00,209.00,195.00,1598.00,,,,,,\n2015,5,10,\"B6\",\"1304\",\"SJU\",\"JFK\",-5.00,-41.00,0.00,\"\",0.00,211.00,199.00,1598.00,,,,,,\n2015,5,11,\"B6\",\"1304\",\"SJU\",\"JFK\",-4.00,-32.00,0.00,\"\",0.00,219.00,195.00,1598.00,,,,,,\n2015,5,12,\"B6\",\"1304\",\"SJU\",\"JFK\",,,1.00,\"C\",0.00,,,1598.00,,,,,,\n2015,5,13,\"B6\",\"1304\",\"SJU\",\"JFK\",8.00,-6.00,0.00,\"\",0.00,233.00,219.00,1598.00,,,,,,\n2015,5,14,\"B6\",\"1304\",\"SJU\",\"JFK\",43.00,34.00,0.00,\"\",0.00,238.00,223.00,1598.00,5.00,0.00,0.00,0.00,29.00,\n2015,5,15,\"B6\",\"1304\",\"SJU\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,225.00,208.00,1598.00,,,,,,\n2015,5,16,\"B6\",\"1304\",\"SJU\",\"JFK\",18.00,-1.00,0.00,\"\",0.00,228.00,216.00,1598.00,,,,,,\n2015,5,17,\"B6\",\"1304\",\"SJU\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,238.00,217.00,1598.00,,,,,,\n2015,5,18,\"B6\",\"1304\",\"SJU\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,229.00,210.00,1598.00,,,,,,\n2015,5,19,\"B6\",\"1304\",\"SJU\",\"JFK\",-4.00,-27.00,0.00,\"\",0.00,224.00,208.00,1598.00,,,,,,\n2015,5,20,\"B6\",\"1304\",\"SJU\",\"JFK\",9.00,-7.00,0.00,\"\",0.00,231.00,212.00,1598.00,,,,,,\n2015,5,21,\"B6\",\"1304\",\"SJU\",\"JFK\",7.00,-13.00,0.00,\"\",0.00,227.00,206.00,1598.00,,,,,,\n2015,5,22,\"B6\",\"1304\",\"SJU\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,224.00,209.00,1598.00,,,,,,\n2015,5,23,\"B6\",\"1304\",\"SJU\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,229.00,213.00,1598.00,,,,,,\n2015,5,24,\"B6\",\"1304\",\"SJU\",\"JFK\",-11.00,-21.00,0.00,\"\",0.00,237.00,221.00,1598.00,,,,,,\n2015,5,25,\"B6\",\"1304\",\"SJU\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,223.00,210.00,1598.00,,,,,,\n2015,5,26,\"B6\",\"1304\",\"SJU\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,230.00,211.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"1304\",\"SJU\",\"JFK\",-7.00,-37.00,0.00,\"\",0.00,217.00,203.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"1304\",\"SJU\",\"JFK\",8.00,-30.00,0.00,\"\",0.00,209.00,198.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"1304\",\"SJU\",\"JFK\",-8.00,-29.00,0.00,\"\",0.00,227.00,207.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"1304\",\"SJU\",\"JFK\",139.00,115.00,0.00,\"\",0.00,223.00,208.00,1598.00,11.00,0.00,0.00,0.00,104.00,\n2015,5,31,\"B6\",\"1304\",\"SJU\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,232.00,210.00,1598.00,,,,,,\n2015,5,1,\"B6\",\"1307\",\"JFK\",\"IAD\",-1.00,-12.00,0.00,\"\",0.00,69.00,46.00,228.00,,,,,,\n2015,5,2,\"B6\",\"1307\",\"JFK\",\"IAD\",-6.00,-17.00,0.00,\"\",0.00,69.00,44.00,228.00,,,,,,\n2015,5,3,\"B6\",\"1307\",\"JFK\",\"IAD\",60.00,58.00,0.00,\"\",0.00,78.00,48.00,228.00,58.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"1307\",\"JFK\",\"IAD\",-2.00,11.00,0.00,\"\",0.00,93.00,44.00,228.00,,,,,,\n2015,5,5,\"B6\",\"1307\",\"JFK\",\"IAD\",44.00,35.00,0.00,\"\",0.00,71.00,44.00,228.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"B6\",\"1307\",\"JFK\",\"IAD\",-2.00,-16.00,0.00,\"\",0.00,66.00,49.00,228.00,,,,,,\n2015,5,7,\"B6\",\"1307\",\"JFK\",\"IAD\",-3.00,-16.00,0.00,\"\",0.00,67.00,46.00,228.00,,,,,,\n2015,5,8,\"B6\",\"1307\",\"JFK\",\"IAD\",51.00,30.00,0.00,\"\",0.00,59.00,41.00,228.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"B6\",\"1307\",\"JFK\",\"IAD\",6.00,-17.00,0.00,\"\",0.00,57.00,41.00,228.00,,,,,,\n2015,5,10,\"B6\",\"1307\",\"JFK\",\"IAD\",-5.00,-20.00,0.00,\"\",0.00,65.00,43.00,228.00,,,,,,\n2015,5,11,\"B6\",\"1307\",\"JFK\",\"IAD\",2.00,-13.00,0.00,\"\",0.00,65.00,42.00,228.00,,,,,,\n2015,5,12,\"B6\",\"1307\",\"JFK\",\"IAD\",12.00,-3.00,0.00,\"\",0.00,65.00,47.00,228.00,,,,,,\n2015,5,13,\"B6\",\"1307\",\"JFK\",\"IAD\",-3.00,-21.00,0.00,\"\",0.00,62.00,47.00,228.00,,,,,,\n2015,5,14,\"B6\",\"1307\",\"JFK\",\"IAD\",33.00,20.00,0.00,\"\",0.00,67.00,47.00,228.00,10.00,0.00,0.00,0.00,10.00,\n2015,5,15,\"B6\",\"1307\",\"JFK\",\"IAD\",40.00,31.00,0.00,\"\",0.00,71.00,43.00,228.00,17.00,0.00,0.00,0.00,14.00,\n2015,5,16,\"B6\",\"1307\",\"JFK\",\"IAD\",-2.00,-14.00,0.00,\"\",0.00,68.00,42.00,228.00,,,,,,\n2015,5,17,\"B6\",\"1307\",\"JFK\",\"IAD\",-5.00,-19.00,0.00,\"\",0.00,66.00,44.00,228.00,,,,,,\n2015,5,18,\"B6\",\"1307\",\"JFK\",\"IAD\",11.00,35.00,0.00,\"\",0.00,104.00,45.00,228.00,11.00,0.00,24.00,0.00,0.00,\n2015,5,19,\"B6\",\"1307\",\"JFK\",\"IAD\",-3.00,0.00,0.00,\"\",0.00,83.00,52.00,228.00,,,,,,\n2015,5,20,\"B6\",\"1307\",\"JFK\",\"IAD\",-9.00,-7.00,0.00,\"\",0.00,82.00,49.00,228.00,,,,,,\n2015,5,21,\"B6\",\"1307\",\"JFK\",\"IAD\",-2.00,-17.00,0.00,\"\",0.00,65.00,46.00,228.00,,,,,,\n2015,5,22,\"B6\",\"1307\",\"JFK\",\"IAD\",21.00,12.00,0.00,\"\",0.00,73.00,50.00,228.00,,,,,,\n2015,5,23,\"B6\",\"1307\",\"JFK\",\"IAD\",-3.00,-21.00,0.00,\"\",0.00,64.00,46.00,228.00,,,,,,\n2015,5,24,\"B6\",\"1307\",\"JFK\",\"IAD\",-4.00,-14.00,0.00,\"\",0.00,72.00,45.00,228.00,,,,,,\n2015,5,25,\"B6\",\"1307\",\"JFK\",\"IAD\",-5.00,-19.00,0.00,\"\",0.00,66.00,43.00,228.00,,,,,,\n2015,5,26,\"B6\",\"1307\",\"JFK\",\"IAD\",-4.00,-14.00,0.00,\"\",0.00,70.00,45.00,228.00,,,,,,\n2015,5,27,\"B6\",\"1307\",\"JFK\",\"IAD\",-6.00,-17.00,0.00,\"\",0.00,69.00,43.00,228.00,,,,,,\n2015,5,28,\"B6\",\"1307\",\"JFK\",\"IAD\",10.00,-4.00,0.00,\"\",0.00,66.00,46.00,228.00,,,,,,\n2015,5,29,\"B6\",\"1307\",\"JFK\",\"IAD\",-1.00,-17.00,0.00,\"\",0.00,64.00,42.00,228.00,,,,,,\n2015,5,30,\"B6\",\"1307\",\"JFK\",\"IAD\",-1.00,-15.00,0.00,\"\",0.00,66.00,42.00,228.00,,,,,,\n2015,5,31,\"B6\",\"1307\",\"JFK\",\"IAD\",13.00,-3.00,0.00,\"\",0.00,64.00,41.00,228.00,,,,,,\n2015,5,1,\"B6\",\"1308\",\"IAD\",\"JFK\",-1.00,-34.00,0.00,\"\",0.00,67.00,49.00,228.00,,,,,,\n2015,5,2,\"B6\",\"1308\",\"IAD\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,85.00,53.00,228.00,,,,,,\n2015,5,3,\"B6\",\"1308\",\"IAD\",\"JFK\",63.00,27.00,0.00,\"\",0.00,64.00,45.00,228.00,5.00,0.00,0.00,0.00,22.00,\n2015,5,4,\"B6\",\"1308\",\"IAD\",\"JFK\",7.00,-6.00,0.00,\"\",0.00,87.00,47.00,228.00,,,,,,\n2015,5,5,\"B6\",\"1308\",\"IAD\",\"JFK\",37.00,6.00,0.00,\"\",0.00,69.00,48.00,228.00,,,,,,\n2015,5,6,\"B6\",\"1308\",\"IAD\",\"JFK\",-8.00,-4.00,0.00,\"\",0.00,104.00,46.00,228.00,,,,,,\n2015,5,7,\"B6\",\"1308\",\"IAD\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,92.00,47.00,228.00,,,,,,\n2015,5,8,\"B6\",\"1308\",\"IAD\",\"JFK\",45.00,23.00,0.00,\"\",0.00,78.00,49.00,228.00,11.00,0.00,0.00,0.00,12.00,\n2015,5,9,\"B6\",\"1308\",\"IAD\",\"JFK\",0.00,9.00,0.00,\"\",0.00,109.00,48.00,228.00,,,,,,\n2015,5,10,\"B6\",\"1308\",\"IAD\",\"JFK\",-6.00,-46.00,0.00,\"\",0.00,60.00,46.00,228.00,,,,,,\n2015,5,11,\"B6\",\"1308\",\"IAD\",\"JFK\",-6.00,-36.00,0.00,\"\",0.00,70.00,47.00,228.00,,,,,,\n2015,5,12,\"B6\",\"1308\",\"IAD\",\"JFK\",,,1.00,\"C\",0.00,,,228.00,,,,,,\n2015,5,13,\"B6\",\"1308\",\"IAD\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,84.00,47.00,228.00,,,,,,\n2015,5,14,\"B6\",\"1308\",\"IAD\",\"JFK\",20.00,-20.00,0.00,\"\",0.00,60.00,45.00,228.00,,,,,,\n2015,5,15,\"B6\",\"1308\",\"IAD\",\"JFK\",35.00,-6.00,0.00,\"\",0.00,59.00,45.00,228.00,,,,,,\n2015,5,16,\"B6\",\"1308\",\"IAD\",\"JFK\",2.00,-29.00,0.00,\"\",0.00,69.00,48.00,228.00,,,,,,\n2015,5,17,\"B6\",\"1308\",\"IAD\",\"JFK\",-7.00,-35.00,0.00,\"\",0.00,72.00,48.00,228.00,,,,,,\n2015,5,18,\"B6\",\"1308\",\"IAD\",\"JFK\",71.00,40.00,0.00,\"\",0.00,69.00,47.00,228.00,0.00,0.00,24.00,0.00,16.00,\n2015,5,19,\"B6\",\"1308\",\"IAD\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,89.00,45.00,228.00,,,,,,\n2015,5,20,\"B6\",\"1308\",\"IAD\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,93.00,46.00,228.00,,,,,,\n2015,5,21,\"B6\",\"1308\",\"IAD\",\"JFK\",-3.00,-39.00,0.00,\"\",0.00,64.00,47.00,228.00,,,,,,\n2015,5,22,\"B6\",\"1308\",\"IAD\",\"JFK\",38.00,22.00,0.00,\"\",0.00,87.00,44.00,228.00,0.00,0.00,20.00,0.00,2.00,\n2015,5,23,\"B6\",\"1308\",\"IAD\",\"JFK\",-10.00,-46.00,0.00,\"\",0.00,67.00,49.00,228.00,,,,,,\n2015,5,24,\"B6\",\"1308\",\"IAD\",\"JFK\",-5.00,-40.00,0.00,\"\",0.00,68.00,50.00,228.00,,,,,,\n2015,5,25,\"B6\",\"1308\",\"IAD\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,86.00,48.00,228.00,,,,,,\n2015,5,26,\"B6\",\"1308\",\"IAD\",\"JFK\",-3.00,-41.00,0.00,\"\",0.00,62.00,47.00,228.00,,,,,,\n2015,5,27,\"B6\",\"1308\",\"IAD\",\"JFK\",99.00,73.00,0.00,\"\",0.00,74.00,46.00,228.00,0.00,0.00,73.00,0.00,0.00,\n2015,5,28,\"B6\",\"1308\",\"IAD\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,90.00,47.00,228.00,,,,,,\n2015,5,29,\"B6\",\"1308\",\"IAD\",\"JFK\",-8.00,-27.00,0.00,\"\",0.00,81.00,47.00,228.00,,,,,,\n2015,5,30,\"B6\",\"1308\",\"IAD\",\"JFK\",-7.00,-42.00,0.00,\"\",0.00,65.00,48.00,228.00,,,,,,\n2015,5,31,\"B6\",\"1308\",\"IAD\",\"JFK\",39.00,10.00,0.00,\"\",0.00,71.00,48.00,228.00,,,,,,\n2015,5,1,\"B6\",\"1317\",\"BOS\",\"JFK\",-1.00,-31.00,0.00,\"\",0.00,64.00,39.00,187.00,,,,,,\n2015,5,2,\"B6\",\"1317\",\"BOS\",\"JFK\",-3.00,-34.00,0.00,\"\",0.00,65.00,39.00,187.00,,,,,,\n2015,5,3,\"B6\",\"1317\",\"BOS\",\"JFK\",-9.00,-14.00,0.00,\"\",0.00,89.00,40.00,187.00,,,,,,\n2015,5,4,\"B6\",\"1317\",\"BOS\",\"JFK\",-4.00,-33.00,0.00,\"\",0.00,65.00,42.00,187.00,,,,,,\n2015,5,5,\"B6\",\"1317\",\"BOS\",\"JFK\",-4.00,-31.00,0.00,\"\",0.00,67.00,42.00,187.00,,,,,,\n2015,5,6,\"B6\",\"1317\",\"BOS\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,88.00,54.00,187.00,,,,,,\n2015,5,7,\"B6\",\"1317\",\"BOS\",\"JFK\",11.00,1.00,0.00,\"\",0.00,84.00,52.00,187.00,,,,,,\n2015,5,8,\"B6\",\"1317\",\"BOS\",\"JFK\",107.00,81.00,0.00,\"\",0.00,68.00,39.00,187.00,0.00,0.00,79.00,0.00,2.00,\n2015,5,9,\"B6\",\"1317\",\"BOS\",\"JFK\",89.00,68.00,0.00,\"\",0.00,75.00,42.00,187.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,10,\"B6\",\"1317\",\"BOS\",\"JFK\",132.00,113.00,0.00,\"\",0.00,75.00,40.00,187.00,0.00,0.00,113.00,0.00,0.00,\n2015,5,11,\"B6\",\"1317\",\"BOS\",\"JFK\",78.00,51.00,0.00,\"\",0.00,67.00,51.00,187.00,0.00,0.00,9.00,0.00,42.00,\n2015,5,12,\"B6\",\"1317\",\"BOS\",\"JFK\",,,1.00,\"C\",0.00,,,187.00,,,,,,\n2015,5,13,\"B6\",\"1317\",\"BOS\",\"JFK\",11.00,7.00,0.00,\"\",0.00,90.00,45.00,187.00,,,,,,\n2015,5,14,\"B6\",\"1317\",\"BOS\",\"JFK\",17.00,23.00,0.00,\"\",0.00,100.00,66.00,187.00,5.00,0.00,6.00,0.00,12.00,\n2015,5,15,\"B6\",\"1317\",\"BOS\",\"JFK\",4.00,-8.00,0.00,\"\",0.00,82.00,52.00,187.00,,,,,,\n2015,5,16,\"B6\",\"1317\",\"BOS\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,85.00,53.00,187.00,,,,,,\n2015,5,17,\"B6\",\"1317\",\"BOS\",\"JFK\",-3.00,-32.00,0.00,\"\",0.00,65.00,48.00,187.00,,,,,,\n2015,5,18,\"B6\",\"1317\",\"BOS\",\"JFK\",90.00,77.00,0.00,\"\",0.00,81.00,51.00,187.00,0.00,0.00,77.00,0.00,0.00,\n2015,5,19,\"B6\",\"1317\",\"BOS\",\"JFK\",23.00,18.00,0.00,\"\",0.00,89.00,43.00,187.00,13.00,0.00,0.00,0.00,5.00,\n2015,5,20,\"B6\",\"1317\",\"BOS\",\"JFK\",14.00,-2.00,0.00,\"\",0.00,78.00,47.00,187.00,,,,,,\n2015,5,21,\"B6\",\"1317\",\"BOS\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,83.00,47.00,187.00,,,,,,\n2015,5,22,\"B6\",\"1317\",\"BOS\",\"JFK\",25.00,15.00,0.00,\"\",0.00,84.00,49.00,187.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,23,\"B6\",\"1317\",\"BOS\",\"JFK\",-5.00,-30.00,0.00,\"\",0.00,71.00,52.00,187.00,,,,,,\n2015,5,24,\"B6\",\"1317\",\"BOS\",\"JFK\",17.00,-3.00,0.00,\"\",0.00,74.00,42.00,187.00,,,,,,\n2015,5,25,\"B6\",\"1317\",\"BOS\",\"JFK\",8.00,-13.00,0.00,\"\",0.00,73.00,47.00,187.00,,,,,,\n2015,5,26,\"B6\",\"1317\",\"BOS\",\"JFK\",4.00,-29.00,0.00,\"\",0.00,61.00,40.00,187.00,,,,,,\n2015,5,27,\"B6\",\"1317\",\"BOS\",\"JFK\",,,1.00,\"C\",0.00,,,187.00,,,,,,\n2015,5,28,\"B6\",\"1317\",\"BOS\",\"JFK\",10.00,1.00,0.00,\"\",0.00,85.00,55.00,187.00,,,,,,\n2015,5,29,\"B6\",\"1317\",\"BOS\",\"JFK\",0.00,-33.00,0.00,\"\",0.00,61.00,39.00,187.00,,,,,,\n2015,5,30,\"B6\",\"1317\",\"BOS\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,87.00,52.00,187.00,,,,,,\n2015,5,31,\"B6\",\"1317\",\"BOS\",\"JFK\",339.00,319.00,0.00,\"\",0.00,74.00,52.00,187.00,0.00,0.00,285.00,0.00,34.00,\n2015,5,1,\"B6\",\"1318\",\"JFK\",\"BOS\",-6.00,-17.00,0.00,\"\",0.00,59.00,39.00,187.00,,,,,,\n2015,5,2,\"B6\",\"1318\",\"JFK\",\"BOS\",-9.00,-19.00,0.00,\"\",0.00,60.00,36.00,187.00,,,,,,\n2015,5,3,\"B6\",\"1318\",\"JFK\",\"BOS\",13.00,3.00,0.00,\"\",0.00,60.00,34.00,187.00,,,,,,\n2015,5,4,\"B6\",\"1318\",\"JFK\",\"BOS\",-8.00,4.00,0.00,\"\",0.00,82.00,38.00,187.00,,,,,,\n2015,5,5,\"B6\",\"1318\",\"JFK\",\"BOS\",-7.00,-17.00,0.00,\"\",0.00,60.00,43.00,187.00,,,,,,\n2015,5,6,\"B6\",\"1318\",\"JFK\",\"BOS\",-5.00,-14.00,0.00,\"\",0.00,61.00,41.00,187.00,,,,,,\n2015,5,7,\"B6\",\"1318\",\"JFK\",\"BOS\",-9.00,-23.00,0.00,\"\",0.00,56.00,34.00,187.00,,,,,,\n2015,5,8,\"B6\",\"1318\",\"JFK\",\"BOS\",-3.00,-20.00,0.00,\"\",0.00,53.00,36.00,187.00,,,,,,\n2015,5,9,\"B6\",\"1318\",\"JFK\",\"BOS\",-1.00,-17.00,0.00,\"\",0.00,54.00,40.00,187.00,,,,,,\n2015,5,10,\"B6\",\"1318\",\"JFK\",\"BOS\",-5.00,-3.00,0.00,\"\",0.00,72.00,44.00,187.00,,,,,,\n2015,5,11,\"B6\",\"1318\",\"JFK\",\"BOS\",-5.00,-15.00,0.00,\"\",0.00,60.00,33.00,187.00,,,,,,\n2015,5,12,\"B6\",\"1318\",\"JFK\",\"BOS\",14.00,-3.00,0.00,\"\",0.00,53.00,36.00,187.00,,,,,,\n2015,5,13,\"B6\",\"1318\",\"JFK\",\"BOS\",-4.00,-25.00,0.00,\"\",0.00,49.00,35.00,187.00,,,,,,\n2015,5,14,\"B6\",\"1318\",\"JFK\",\"BOS\",-7.00,-19.00,0.00,\"\",0.00,58.00,39.00,187.00,,,,,,\n2015,5,15,\"B6\",\"1318\",\"JFK\",\"BOS\",-3.00,-14.00,0.00,\"\",0.00,59.00,35.00,187.00,,,,,,\n2015,5,16,\"B6\",\"1318\",\"JFK\",\"BOS\",50.00,42.00,0.00,\"\",0.00,62.00,39.00,187.00,3.00,0.00,0.00,0.00,39.00,\n2015,5,17,\"B6\",\"1318\",\"JFK\",\"BOS\",-1.00,-9.00,0.00,\"\",0.00,62.00,35.00,187.00,,,,,,\n2015,5,18,\"B6\",\"1318\",\"JFK\",\"BOS\",78.00,71.00,0.00,\"\",0.00,63.00,40.00,187.00,68.00,0.00,0.00,0.00,3.00,\n2015,5,19,\"B6\",\"1318\",\"JFK\",\"BOS\",17.00,40.00,0.00,\"\",0.00,93.00,49.00,187.00,8.00,0.00,23.00,0.00,9.00,\n2015,5,20,\"B6\",\"1318\",\"JFK\",\"BOS\",-4.00,-4.00,0.00,\"\",0.00,70.00,36.00,187.00,,,,,,\n2015,5,21,\"B6\",\"1318\",\"JFK\",\"BOS\",-6.00,-9.00,0.00,\"\",0.00,67.00,39.00,187.00,,,,,,\n2015,5,22,\"B6\",\"1318\",\"JFK\",\"BOS\",-6.00,-27.00,0.00,\"\",0.00,49.00,34.00,187.00,,,,,,\n2015,5,23,\"B6\",\"1318\",\"JFK\",\"BOS\",-7.00,-23.00,0.00,\"\",0.00,54.00,33.00,187.00,,,,,,\n2015,5,24,\"B6\",\"1318\",\"JFK\",\"BOS\",-4.00,-7.00,0.00,\"\",0.00,67.00,43.00,187.00,,,,,,\n2015,5,25,\"B6\",\"1318\",\"JFK\",\"BOS\",-8.00,-16.00,0.00,\"\",0.00,62.00,39.00,187.00,,,,,,\n2015,5,26,\"B6\",\"1318\",\"JFK\",\"BOS\",-5.00,-17.00,0.00,\"\",0.00,58.00,38.00,187.00,,,,,,\n2015,5,27,\"B6\",\"1318\",\"JFK\",\"BOS\",-2.00,-8.00,0.00,\"\",0.00,64.00,39.00,187.00,,,,,,\n2015,5,28,\"B6\",\"1318\",\"JFK\",\"BOS\",30.00,28.00,0.00,\"\",0.00,68.00,45.00,187.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"B6\",\"1318\",\"JFK\",\"BOS\",2.00,-4.00,0.00,\"\",0.00,64.00,37.00,187.00,,,,,,\n2015,5,30,\"B6\",\"1318\",\"JFK\",\"BOS\",-4.00,-11.00,0.00,\"\",0.00,63.00,41.00,187.00,,,,,,\n2015,5,31,\"B6\",\"1318\",\"JFK\",\"BOS\",4.00,2.00,0.00,\"\",0.00,68.00,45.00,187.00,,,,,,\n2015,5,14,\"B6\",\"1338\",\"JFK\",\"MVY\",-1.00,-20.00,0.00,\"\",0.00,54.00,37.00,173.00,,,,,,\n2015,5,15,\"B6\",\"1338\",\"JFK\",\"MVY\",-4.00,-17.00,0.00,\"\",0.00,60.00,37.00,173.00,,,,,,\n2015,5,16,\"B6\",\"1338\",\"JFK\",\"MVY\",-4.00,-20.00,0.00,\"\",0.00,57.00,37.00,173.00,,,,,,\n2015,5,17,\"B6\",\"1338\",\"JFK\",\"MVY\",3.00,-16.00,0.00,\"\",0.00,54.00,33.00,173.00,,,,,,\n2015,5,18,\"B6\",\"1338\",\"JFK\",\"MVY\",68.00,47.00,0.00,\"\",0.00,52.00,34.00,173.00,6.00,0.00,0.00,0.00,41.00,\n2015,5,19,\"B6\",\"1338\",\"JFK\",\"MVY\",10.00,-1.00,0.00,\"\",0.00,62.00,41.00,173.00,,,,,,\n2015,5,20,\"B6\",\"1338\",\"JFK\",\"MVY\",-2.00,-24.00,0.00,\"\",0.00,51.00,37.00,173.00,,,,,,\n2015,5,21,\"B6\",\"1338\",\"JFK\",\"MVY\",-3.00,-7.00,0.00,\"\",0.00,69.00,34.00,173.00,,,,,,\n2015,5,22,\"B6\",\"1338\",\"JFK\",\"MVY\",19.00,15.00,0.00,\"\",0.00,69.00,34.00,173.00,8.00,0.00,0.00,0.00,7.00,\n2015,5,23,\"B6\",\"1338\",\"JFK\",\"MVY\",-3.00,-20.00,0.00,\"\",0.00,56.00,37.00,173.00,,,,,,\n2015,5,24,\"B6\",\"1338\",\"JFK\",\"MVY\",-7.00,-19.00,0.00,\"\",0.00,61.00,36.00,173.00,,,,,,\n2015,5,25,\"B6\",\"1338\",\"JFK\",\"MVY\",44.00,30.00,0.00,\"\",0.00,59.00,35.00,173.00,12.00,0.00,0.00,0.00,18.00,\n2015,5,26,\"B6\",\"1338\",\"JFK\",\"MVY\",-9.00,-30.00,0.00,\"\",0.00,52.00,34.00,173.00,,,,,,\n2015,5,29,\"B6\",\"1338\",\"JFK\",\"MVY\",-5.00,-15.00,0.00,\"\",0.00,63.00,36.00,173.00,,,,,,\n2015,5,30,\"B6\",\"1338\",\"JFK\",\"MVY\",168.00,170.00,0.00,\"\",0.00,75.00,35.00,173.00,0.00,0.00,170.00,0.00,0.00,\n2015,5,31,\"B6\",\"1338\",\"JFK\",\"MVY\",-10.00,-24.00,0.00,\"\",0.00,59.00,36.00,173.00,,,,,,\n2015,5,14,\"B6\",\"1339\",\"MVY\",\"JFK\",0.00,-24.00,0.00,\"\",0.00,44.00,32.00,173.00,,,,,,\n2015,5,15,\"B6\",\"1339\",\"MVY\",\"JFK\",-6.00,8.00,0.00,\"\",0.00,82.00,37.00,173.00,,,,,,\n2015,5,16,\"B6\",\"1339\",\"MVY\",\"JFK\",3.00,-10.00,0.00,\"\",0.00,55.00,43.00,173.00,,,,,,\n2015,5,17,\"B6\",\"1339\",\"MVY\",\"JFK\",5.00,-13.00,0.00,\"\",0.00,50.00,41.00,173.00,,,,,,\n2015,5,18,\"B6\",\"1339\",\"MVY\",\"JFK\",188.00,172.00,0.00,\"\",0.00,52.00,44.00,173.00,0.00,0.00,134.00,0.00,38.00,\n2015,5,19,\"B6\",\"1339\",\"MVY\",\"JFK\",20.00,1.00,0.00,\"\",0.00,49.00,36.00,173.00,,,,,,\n2015,5,20,\"B6\",\"1339\",\"MVY\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,49.00,39.00,173.00,,,,,,\n2015,5,21,\"B6\",\"1339\",\"MVY\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,54.00,45.00,173.00,,,,,,\n2015,5,22,\"B6\",\"1339\",\"MVY\",\"JFK\",44.00,26.00,0.00,\"\",0.00,50.00,36.00,173.00,0.00,0.00,21.00,0.00,5.00,\n2015,5,23,\"B6\",\"1339\",\"MVY\",\"JFK\",3.00,-10.00,0.00,\"\",0.00,55.00,43.00,173.00,,,,,,\n2015,5,24,\"B6\",\"1339\",\"MVY\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,66.00,45.00,173.00,,,,,,\n2015,5,25,\"B6\",\"1339\",\"MVY\",\"JFK\",30.00,8.00,0.00,\"\",0.00,46.00,35.00,173.00,,,,,,\n2015,5,26,\"B6\",\"1339\",\"MVY\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,45.00,34.00,173.00,,,,,,\n2015,5,29,\"B6\",\"1339\",\"MVY\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,50.00,34.00,173.00,,,,,,\n2015,5,30,\"B6\",\"1339\",\"MVY\",\"JFK\",170.00,146.00,0.00,\"\",0.00,44.00,34.00,173.00,5.00,0.00,0.00,0.00,141.00,\n2015,5,31,\"B6\",\"1339\",\"MVY\",\"JFK\",48.00,68.00,0.00,\"\",0.00,88.00,50.00,173.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,1,\"B6\",\"1161\",\"LGA\",\"PBI\",0.00,8.00,0.00,\"\",0.00,189.00,146.00,1035.00,,,,,,\n2015,5,2,\"B6\",\"1161\",\"LGA\",\"PBI\",-12.00,-34.00,0.00,\"\",0.00,159.00,139.00,1035.00,,,,,,\n2015,5,3,\"B6\",\"1161\",\"LGA\",\"PBI\",-3.00,-22.00,0.00,\"\",0.00,162.00,138.00,1035.00,,,,,,\n2015,5,4,\"B6\",\"1161\",\"LGA\",\"PBI\",24.00,15.00,0.00,\"\",0.00,172.00,137.00,1035.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,5,\"B6\",\"1161\",\"LGA\",\"PBI\",-1.00,8.00,0.00,\"\",0.00,190.00,149.00,1035.00,,,,,,\n2015,5,6,\"B6\",\"1161\",\"LGA\",\"PBI\",-8.00,-14.00,0.00,\"\",0.00,175.00,142.00,1035.00,,,,,,\n2015,5,7,\"B6\",\"1161\",\"LGA\",\"PBI\",23.00,0.00,0.00,\"\",0.00,158.00,134.00,1035.00,,,,,,\n2015,5,8,\"B6\",\"1161\",\"LGA\",\"PBI\",0.00,-21.00,0.00,\"\",0.00,160.00,132.00,1035.00,,,,,,\n2015,5,9,\"B6\",\"1161\",\"LGA\",\"PBI\",23.00,-7.00,0.00,\"\",0.00,151.00,134.00,1035.00,,,,,,\n2015,5,10,\"B6\",\"1161\",\"LGA\",\"PBI\",73.00,68.00,0.00,\"\",0.00,176.00,152.00,1035.00,19.00,0.00,0.00,0.00,49.00,\n2015,5,11,\"B6\",\"1161\",\"LGA\",\"PBI\",37.00,18.00,0.00,\"\",0.00,162.00,139.00,1035.00,3.00,0.00,0.00,0.00,15.00,\n2015,5,12,\"B6\",\"1161\",\"LGA\",\"PBI\",20.00,3.00,0.00,\"\",0.00,164.00,138.00,1035.00,,,,,,\n2015,5,13,\"B6\",\"1161\",\"LGA\",\"PBI\",-5.00,-14.00,0.00,\"\",0.00,172.00,131.00,1035.00,,,,,,\n2015,5,14,\"B6\",\"1161\",\"LGA\",\"PBI\",-2.00,-28.00,0.00,\"\",0.00,155.00,133.00,1035.00,,,,,,\n2015,5,15,\"B6\",\"1161\",\"LGA\",\"PBI\",28.00,9.00,0.00,\"\",0.00,162.00,138.00,1035.00,,,,,,\n2015,5,16,\"B6\",\"1161\",\"LGA\",\"PBI\",0.00,-18.00,0.00,\"\",0.00,163.00,134.00,1035.00,,,,,,\n2015,5,17,\"B6\",\"1161\",\"LGA\",\"PBI\",120.00,131.00,0.00,\"\",0.00,192.00,139.00,1035.00,17.00,0.00,11.00,0.00,103.00,\n2015,5,18,\"B6\",\"1161\",\"LGA\",\"PBI\",,,1.00,\"C\",0.00,,,1035.00,,,,,,\n2015,5,19,\"B6\",\"1161\",\"LGA\",\"PBI\",139.00,152.00,0.00,\"\",0.00,194.00,154.00,1035.00,13.00,0.00,13.00,0.00,126.00,\n2015,5,20,\"B6\",\"1161\",\"LGA\",\"PBI\",14.00,35.00,0.00,\"\",0.00,202.00,134.00,1035.00,11.00,0.00,21.00,0.00,3.00,\n2015,5,21,\"B6\",\"1161\",\"LGA\",\"PBI\",18.00,31.00,0.00,\"\",0.00,194.00,144.00,1035.00,18.00,0.00,13.00,0.00,0.00,\n2015,5,22,\"B6\",\"1161\",\"LGA\",\"PBI\",-1.00,-15.00,0.00,\"\",0.00,167.00,147.00,1035.00,,,,,,\n2015,5,23,\"B6\",\"1161\",\"LGA\",\"PBI\",-5.00,-39.00,0.00,\"\",0.00,147.00,133.00,1035.00,,,,,,\n2015,5,24,\"B6\",\"1161\",\"LGA\",\"PBI\",-5.00,-19.00,0.00,\"\",0.00,167.00,134.00,1035.00,,,,,,\n2015,5,25,\"B6\",\"1161\",\"LGA\",\"PBI\",43.00,33.00,0.00,\"\",0.00,171.00,138.00,1035.00,5.00,0.00,0.00,0.00,28.00,\n2015,5,26,\"B6\",\"1161\",\"LGA\",\"PBI\",7.00,-19.00,0.00,\"\",0.00,155.00,135.00,1035.00,,,,,,\n2015,5,27,\"B6\",\"1161\",\"LGA\",\"PBI\",63.00,69.00,0.00,\"\",0.00,187.00,147.00,1035.00,7.00,0.00,6.00,0.00,56.00,\n2015,5,28,\"B6\",\"1161\",\"LGA\",\"PBI\",-5.00,-24.00,0.00,\"\",0.00,162.00,139.00,1035.00,,,,,,\n2015,5,29,\"B6\",\"1161\",\"LGA\",\"PBI\",0.00,5.00,0.00,\"\",0.00,186.00,132.00,1035.00,,,,,,\n2015,5,30,\"B6\",\"1161\",\"LGA\",\"PBI\",0.00,14.00,0.00,\"\",0.00,195.00,134.00,1035.00,,,,,,\n2015,5,31,\"B6\",\"1161\",\"LGA\",\"PBI\",35.00,85.00,0.00,\"\",0.00,231.00,135.00,1035.00,10.00,0.00,50.00,0.00,25.00,\n2015,5,1,\"B6\",\"1168\",\"PBI\",\"HPN\",-1.00,-3.00,0.00,\"\",0.00,164.00,135.00,1056.00,,,,,,\n2015,5,2,\"B6\",\"1168\",\"PBI\",\"HPN\",-11.00,-26.00,0.00,\"\",0.00,151.00,136.00,1056.00,,,,,,\n2015,5,3,\"B6\",\"1168\",\"PBI\",\"HPN\",-7.00,-20.00,0.00,\"\",0.00,153.00,141.00,1056.00,,,,,,\n2015,5,4,\"B6\",\"1168\",\"PBI\",\"HPN\",-2.00,-15.00,0.00,\"\",0.00,153.00,139.00,1056.00,,,,,,\n2015,5,5,\"B6\",\"1168\",\"PBI\",\"HPN\",-12.00,-16.00,0.00,\"\",0.00,162.00,139.00,1056.00,,,,,,\n2015,5,6,\"B6\",\"1168\",\"PBI\",\"HPN\",-11.00,-13.00,0.00,\"\",0.00,164.00,145.00,1056.00,,,,,,\n2015,5,7,\"B6\",\"1168\",\"PBI\",\"HPN\",-14.00,-17.00,0.00,\"\",0.00,163.00,147.00,1056.00,,,,,,\n2015,5,8,\"B6\",\"1168\",\"PBI\",\"HPN\",-8.00,1.00,0.00,\"\",0.00,175.00,162.00,1056.00,,,,,,\n2015,5,9,\"B6\",\"1168\",\"PBI\",\"HPN\",-14.00,1.00,0.00,\"\",0.00,181.00,161.00,1056.00,,,,,,\n2015,5,10,\"B6\",\"1168\",\"PBI\",\"HPN\",-5.00,-6.00,0.00,\"\",0.00,165.00,154.00,1056.00,,,,,,\n2015,5,11,\"B6\",\"1168\",\"PBI\",\"HPN\",-10.00,-13.00,0.00,\"\",0.00,163.00,151.00,1056.00,,,,,,\n2015,5,12,\"B6\",\"1168\",\"PBI\",\"HPN\",-10.00,-16.00,0.00,\"\",0.00,160.00,145.00,1056.00,,,,,,\n2015,5,13,\"B6\",\"1168\",\"PBI\",\"HPN\",-8.00,-22.00,0.00,\"\",0.00,152.00,139.00,1056.00,,,,,,\n2015,5,14,\"B6\",\"1168\",\"PBI\",\"HPN\",-10.00,-9.00,0.00,\"\",0.00,167.00,153.00,1056.00,,,,,,\n2015,5,15,\"B6\",\"1168\",\"PBI\",\"HPN\",-7.00,-19.00,0.00,\"\",0.00,154.00,140.00,1056.00,,,,,,\n2015,5,16,\"B6\",\"1168\",\"PBI\",\"HPN\",-9.00,-11.00,0.00,\"\",0.00,164.00,150.00,1056.00,,,,,,\n2015,5,17,\"B6\",\"1168\",\"PBI\",\"HPN\",-10.00,-15.00,0.00,\"\",0.00,161.00,149.00,1056.00,,,,,,\n2015,5,18,\"B6\",\"1168\",\"PBI\",\"HPN\",-8.00,-5.00,0.00,\"\",0.00,169.00,154.00,1056.00,,,,,,\n2015,5,19,\"B6\",\"1168\",\"PBI\",\"HPN\",-10.00,-14.00,0.00,\"\",0.00,162.00,147.00,1056.00,,,,,,\n2015,5,20,\"B6\",\"1168\",\"PBI\",\"HPN\",-1.00,-3.00,0.00,\"\",0.00,164.00,148.00,1056.00,,,,,,\n2015,5,21,\"B6\",\"1168\",\"PBI\",\"HPN\",-4.00,-5.00,0.00,\"\",0.00,165.00,148.00,1056.00,,,,,,\n2015,5,22,\"B6\",\"1168\",\"PBI\",\"HPN\",-9.00,-13.00,0.00,\"\",0.00,162.00,139.00,1056.00,,,,,,\n2015,5,23,\"B6\",\"1168\",\"PBI\",\"HPN\",-14.00,-25.00,0.00,\"\",0.00,155.00,144.00,1056.00,,,,,,\n2015,5,24,\"B6\",\"1168\",\"PBI\",\"HPN\",-9.00,-11.00,0.00,\"\",0.00,164.00,150.00,1056.00,,,,,,\n2015,5,25,\"B6\",\"1168\",\"PBI\",\"HPN\",-10.00,-19.00,0.00,\"\",0.00,157.00,145.00,1056.00,,,,,,\n2015,5,26,\"B6\",\"1168\",\"PBI\",\"HPN\",-10.00,-19.00,0.00,\"\",0.00,157.00,144.00,1056.00,,,,,,\n2015,5,27,\"B6\",\"1168\",\"PBI\",\"HPN\",-9.00,-22.00,0.00,\"\",0.00,153.00,139.00,1056.00,,,,,,\n2015,5,28,\"B6\",\"1168\",\"PBI\",\"HPN\",-5.00,-21.00,0.00,\"\",0.00,150.00,139.00,1056.00,,,,,,\n2015,5,29,\"B6\",\"1168\",\"PBI\",\"HPN\",-10.00,-15.00,0.00,\"\",0.00,161.00,148.00,1056.00,,,,,,\n2015,5,30,\"B6\",\"1168\",\"PBI\",\"HPN\",-10.00,-17.00,0.00,\"\",0.00,159.00,146.00,1056.00,,,,,,\n2015,5,31,\"B6\",\"1168\",\"PBI\",\"HPN\",-7.00,-11.00,0.00,\"\",0.00,162.00,146.00,1056.00,,,,,,\n2015,5,1,\"B6\",\"1171\",\"LGA\",\"FLL\",-7.00,-22.00,0.00,\"\",0.00,172.00,149.00,1076.00,,,,,,\n2015,5,2,\"B6\",\"1171\",\"LGA\",\"FLL\",0.00,-19.00,0.00,\"\",0.00,168.00,147.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"1171\",\"LGA\",\"FLL\",-1.00,-17.00,0.00,\"\",0.00,171.00,147.00,1076.00,,,,,,\n2015,5,4,\"B6\",\"1171\",\"LGA\",\"FLL\",-3.00,9.00,0.00,\"\",0.00,199.00,159.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"1171\",\"LGA\",\"FLL\",-3.00,5.00,0.00,\"\",0.00,195.00,156.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"1171\",\"LGA\",\"FLL\",-6.00,-9.00,0.00,\"\",0.00,184.00,160.00,1076.00,,,,,,\n2015,5,7,\"B6\",\"1171\",\"LGA\",\"FLL\",-3.00,-20.00,0.00,\"\",0.00,170.00,148.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"1171\",\"LGA\",\"FLL\",5.00,-1.00,0.00,\"\",0.00,181.00,145.00,1076.00,,,,,,\n2015,5,9,\"B6\",\"1171\",\"LGA\",\"FLL\",23.00,4.00,0.00,\"\",0.00,168.00,147.00,1076.00,,,,,,\n2015,5,10,\"B6\",\"1171\",\"LGA\",\"FLL\",-1.00,-8.00,0.00,\"\",0.00,180.00,155.00,1076.00,,,,,,\n2015,5,11,\"B6\",\"1171\",\"LGA\",\"FLL\",-3.00,48.00,0.00,\"\",0.00,238.00,181.00,1076.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,12,\"B6\",\"1171\",\"LGA\",\"FLL\",-11.00,-9.00,0.00,\"\",0.00,189.00,143.00,1076.00,,,,,,\n2015,5,13,\"B6\",\"1171\",\"LGA\",\"FLL\",8.00,16.00,0.00,\"\",0.00,195.00,144.00,1076.00,6.00,0.00,8.00,0.00,2.00,\n2015,5,14,\"B6\",\"1171\",\"LGA\",\"FLL\",2.00,-20.00,0.00,\"\",0.00,165.00,142.00,1076.00,,,,,,\n2015,5,15,\"B6\",\"1171\",\"LGA\",\"FLL\",22.00,2.00,0.00,\"\",0.00,167.00,142.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"1171\",\"LGA\",\"FLL\",-5.00,-33.00,0.00,\"\",0.00,159.00,140.00,1076.00,,,,,,\n2015,5,17,\"B6\",\"1171\",\"LGA\",\"FLL\",-5.00,-27.00,0.00,\"\",0.00,165.00,141.00,1076.00,,,,,,\n2015,5,18,\"B6\",\"1171\",\"LGA\",\"FLL\",204.00,182.00,0.00,\"\",0.00,165.00,139.00,1076.00,85.00,0.00,0.00,0.00,97.00,\n2015,5,19,\"B6\",\"1171\",\"LGA\",\"FLL\",29.00,32.00,0.00,\"\",0.00,190.00,157.00,1076.00,4.00,0.00,3.00,0.00,25.00,\n2015,5,20,\"B6\",\"1171\",\"LGA\",\"FLL\",0.00,-8.00,0.00,\"\",0.00,179.00,142.00,1076.00,,,,,,\n2015,5,21,\"B6\",\"1171\",\"LGA\",\"FLL\",-11.00,-11.00,0.00,\"\",0.00,187.00,162.00,1076.00,,,,,,\n2015,5,22,\"B6\",\"1171\",\"LGA\",\"FLL\",-4.00,-5.00,0.00,\"\",0.00,186.00,156.00,1076.00,,,,,,\n2015,5,23,\"B6\",\"1171\",\"LGA\",\"FLL\",-3.00,-17.00,0.00,\"\",0.00,173.00,147.00,1076.00,,,,,,\n2015,5,24,\"B6\",\"1171\",\"LGA\",\"FLL\",0.00,-20.00,0.00,\"\",0.00,167.00,138.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"1171\",\"LGA\",\"FLL\",-2.00,-13.00,0.00,\"\",0.00,176.00,148.00,1076.00,,,,,,\n2015,5,26,\"B6\",\"1171\",\"LGA\",\"FLL\",-11.00,-7.00,0.00,\"\",0.00,191.00,149.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"1171\",\"LGA\",\"FLL\",-3.00,-1.00,0.00,\"\",0.00,189.00,148.00,1076.00,,,,,,\n2015,5,28,\"B6\",\"1171\",\"LGA\",\"FLL\",3.00,-5.00,0.00,\"\",0.00,179.00,144.00,1076.00,,,,,,\n2015,5,29,\"B6\",\"1171\",\"LGA\",\"FLL\",-3.00,-23.00,0.00,\"\",0.00,167.00,139.00,1076.00,,,,,,\n2015,5,30,\"B6\",\"1171\",\"LGA\",\"FLL\",2.00,0.00,0.00,\"\",0.00,185.00,142.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"1171\",\"LGA\",\"FLL\",0.00,-14.00,0.00,\"\",0.00,173.00,143.00,1076.00,,,,,,\n2015,5,1,\"B6\",\"1183\",\"JFK\",\"MCO\",2.00,-6.00,0.00,\"\",0.00,163.00,131.00,944.00,,,,,,\n2015,5,2,\"B6\",\"1183\",\"JFK\",\"MCO\",54.00,43.00,0.00,\"\",0.00,160.00,129.00,944.00,43.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"B6\",\"1183\",\"JFK\",\"MCO\",-2.00,-15.00,0.00,\"\",0.00,158.00,127.00,944.00,,,,,,\n2015,5,4,\"B6\",\"1183\",\"JFK\",\"MCO\",-9.00,18.00,0.00,\"\",0.00,198.00,134.00,944.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,5,\"B6\",\"1183\",\"JFK\",\"MCO\",-4.00,-5.00,0.00,\"\",0.00,170.00,140.00,944.00,,,,,,\n2015,5,6,\"B6\",\"1183\",\"JFK\",\"MCO\",-8.00,-1.00,0.00,\"\",0.00,178.00,132.00,944.00,,,,,,\n2015,5,7,\"B6\",\"1183\",\"JFK\",\"MCO\",-4.00,-20.00,0.00,\"\",0.00,155.00,125.00,944.00,,,,,,\n2015,5,5,\"B6\",\"1373\",\"JFK\",\"CHS\",-7.00,-31.00,0.00,\"\",0.00,111.00,88.00,636.00,,,,,,\n2015,5,6,\"B6\",\"1373\",\"JFK\",\"CHS\",-8.00,-23.00,0.00,\"\",0.00,120.00,94.00,636.00,,,,,,\n2015,5,7,\"B6\",\"1373\",\"JFK\",\"CHS\",-12.00,-32.00,0.00,\"\",0.00,115.00,95.00,636.00,,,,,,\n2015,5,8,\"B6\",\"1373\",\"JFK\",\"CHS\",8.00,-16.00,0.00,\"\",0.00,111.00,84.00,636.00,,,,,,\n2015,5,9,\"B6\",\"1373\",\"JFK\",\"CHS\",16.00,5.00,0.00,\"\",0.00,120.00,86.00,636.00,,,,,,\n2015,5,10,\"B6\",\"1373\",\"JFK\",\"CHS\",-2.00,-20.00,0.00,\"\",0.00,117.00,93.00,636.00,,,,,,\n2015,5,11,\"B6\",\"1373\",\"JFK\",\"CHS\",-2.00,22.00,0.00,\"\",0.00,159.00,96.00,636.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,12,\"B6\",\"1373\",\"JFK\",\"CHS\",-4.00,-8.00,0.00,\"\",0.00,131.00,98.00,636.00,,,,,,\n2015,5,13,\"B6\",\"1373\",\"JFK\",\"CHS\",-5.00,-10.00,0.00,\"\",0.00,130.00,94.00,636.00,,,,,,\n2015,5,14,\"B6\",\"1373\",\"JFK\",\"CHS\",-4.00,-20.00,0.00,\"\",0.00,119.00,88.00,636.00,,,,,,\n2015,5,15,\"B6\",\"1373\",\"JFK\",\"CHS\",0.00,-17.00,0.00,\"\",0.00,118.00,89.00,636.00,,,,,,\n2015,5,16,\"B6\",\"1373\",\"JFK\",\"CHS\",4.00,-12.00,0.00,\"\",0.00,115.00,86.00,636.00,,,,,,\n2015,5,17,\"B6\",\"1373\",\"JFK\",\"CHS\",-8.00,-34.00,0.00,\"\",0.00,109.00,85.00,636.00,,,,,,\n2015,5,18,\"B6\",\"1373\",\"JFK\",\"CHS\",-6.00,-29.00,0.00,\"\",0.00,112.00,91.00,636.00,,,,,,\n2015,5,19,\"B6\",\"1373\",\"JFK\",\"CHS\",-4.00,9.00,0.00,\"\",0.00,148.00,99.00,636.00,,,,,,\n2015,5,20,\"B6\",\"1373\",\"JFK\",\"CHS\",1.00,-15.00,0.00,\"\",0.00,119.00,94.00,636.00,,,,,,\n2015,5,21,\"B6\",\"1373\",\"JFK\",\"CHS\",8.00,8.00,0.00,\"\",0.00,135.00,100.00,636.00,,,,,,\n2015,5,22,\"B6\",\"1373\",\"JFK\",\"CHS\",2.00,-4.00,0.00,\"\",0.00,129.00,99.00,636.00,,,,,,\n2015,5,23,\"B6\",\"1373\",\"JFK\",\"CHS\",-5.00,-4.00,0.00,\"\",0.00,132.00,95.00,636.00,,,,,,\n2015,5,24,\"B6\",\"1373\",\"JFK\",\"CHS\",-3.00,-27.00,0.00,\"\",0.00,111.00,84.00,636.00,,,,,,\n2015,5,25,\"B6\",\"1373\",\"JFK\",\"CHS\",-6.00,-16.00,0.00,\"\",0.00,125.00,90.00,636.00,,,,,,\n2015,5,26,\"B6\",\"1373\",\"JFK\",\"CHS\",-3.00,-22.00,0.00,\"\",0.00,116.00,88.00,636.00,,,,,,\n2015,5,27,\"B6\",\"1373\",\"JFK\",\"CHS\",-5.00,-29.00,0.00,\"\",0.00,111.00,88.00,636.00,,,,,,\n2015,5,28,\"B6\",\"1373\",\"JFK\",\"CHS\",-5.00,-22.00,0.00,\"\",0.00,118.00,89.00,636.00,,,,,,\n2015,5,29,\"B6\",\"1373\",\"JFK\",\"CHS\",-1.00,-25.00,0.00,\"\",0.00,111.00,81.00,636.00,,,,,,\n2015,5,30,\"B6\",\"1373\",\"JFK\",\"CHS\",-1.00,-12.00,0.00,\"\",0.00,120.00,88.00,636.00,,,,,,\n2015,5,31,\"B6\",\"1373\",\"JFK\",\"CHS\",-1.00,-19.00,0.00,\"\",0.00,117.00,85.00,636.00,,,,,,\n2015,5,1,\"B6\",\"1374\",\"CHS\",\"JFK\",1.00,-33.00,0.00,\"\",0.00,94.00,82.00,636.00,,,,,,\n2015,5,2,\"B6\",\"1374\",\"CHS\",\"JFK\",-3.00,-32.00,0.00,\"\",0.00,101.00,88.00,636.00,,,,,,\n2015,5,3,\"B6\",\"1374\",\"CHS\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,109.00,88.00,636.00,,,,,,\n2015,5,4,\"B6\",\"1374\",\"CHS\",\"JFK\",-9.00,-29.00,0.00,\"\",0.00,108.00,88.00,636.00,,,,,,\n2015,5,5,\"B6\",\"1374\",\"CHS\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,106.00,87.00,636.00,,,,,,\n2015,5,6,\"B6\",\"1374\",\"CHS\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,117.00,90.00,636.00,,,,,,\n2015,5,7,\"B6\",\"1374\",\"CHS\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,109.00,90.00,636.00,,,,,,\n2015,5,8,\"B6\",\"1374\",\"CHS\",\"JFK\",125.00,171.00,0.00,\"\",0.00,174.00,104.00,636.00,0.00,0.00,171.00,0.00,0.00,\n2015,5,9,\"B6\",\"1374\",\"CHS\",\"JFK\",29.00,30.00,0.00,\"\",0.00,131.00,88.00,636.00,0.00,0.00,26.00,0.00,4.00,\n2015,5,10,\"B6\",\"1374\",\"CHS\",\"JFK\",-6.00,-32.00,0.00,\"\",0.00,102.00,89.00,636.00,,,,,,\n2015,5,11,\"B6\",\"1374\",\"CHS\",\"JFK\",54.00,41.00,0.00,\"\",0.00,115.00,88.00,636.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,12,\"B6\",\"1374\",\"CHS\",\"JFK\",33.00,37.00,0.00,\"\",0.00,132.00,92.00,636.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,13,\"B6\",\"1374\",\"CHS\",\"JFK\",74.00,92.00,0.00,\"\",0.00,146.00,92.00,636.00,0.00,0.00,92.00,0.00,0.00,\n2015,5,14,\"B6\",\"1374\",\"CHS\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,115.00,88.00,636.00,,,,,,\n2015,5,15,\"B6\",\"1374\",\"CHS\",\"JFK\",4.00,-13.00,0.00,\"\",0.00,111.00,92.00,636.00,,,,,,\n2015,5,16,\"B6\",\"1374\",\"CHS\",\"JFK\",2.00,-23.00,0.00,\"\",0.00,105.00,88.00,636.00,,,,,,\n2015,5,17,\"B6\",\"1374\",\"CHS\",\"JFK\",-11.00,-32.00,0.00,\"\",0.00,107.00,95.00,636.00,,,,,,\n2015,5,18,\"B6\",\"1374\",\"CHS\",\"JFK\",124.00,108.00,0.00,\"\",0.00,112.00,87.00,636.00,0.00,0.00,108.00,0.00,0.00,\n2015,5,19,\"B6\",\"1374\",\"CHS\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,123.00,97.00,636.00,,,,,,\n2015,5,20,\"B6\",\"1374\",\"CHS\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,116.00,86.00,636.00,,,,,,\n2015,5,21,\"B6\",\"1374\",\"CHS\",\"JFK\",-7.00,-33.00,0.00,\"\",0.00,102.00,83.00,636.00,,,,,,\n2015,5,22,\"B6\",\"1374\",\"CHS\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,110.00,85.00,636.00,,,,,,\n2015,5,23,\"B6\",\"1374\",\"CHS\",\"JFK\",10.00,7.00,0.00,\"\",0.00,127.00,91.00,636.00,,,,,,\n2015,5,24,\"B6\",\"1374\",\"CHS\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,115.00,90.00,636.00,,,,,,\n2015,5,25,\"B6\",\"1374\",\"CHS\",\"JFK\",-21.00,-41.00,0.00,\"\",0.00,108.00,84.00,636.00,,,,,,\n2015,5,26,\"B6\",\"1374\",\"CHS\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,117.00,86.00,636.00,,,,,,\n2015,5,27,\"B6\",\"1374\",\"CHS\",\"JFK\",218.00,202.00,0.00,\"\",0.00,112.00,86.00,636.00,0.00,0.00,202.00,0.00,0.00,\n2015,5,28,\"B6\",\"1374\",\"CHS\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,108.00,90.00,636.00,,,,,,\n2015,5,29,\"B6\",\"1374\",\"CHS\",\"JFK\",-9.00,-38.00,0.00,\"\",0.00,99.00,89.00,636.00,,,,,,\n2015,5,30,\"B6\",\"1374\",\"CHS\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,108.00,88.00,636.00,,,,,,\n2015,5,31,\"B6\",\"1374\",\"CHS\",\"JFK\",272.00,260.00,0.00,\"\",0.00,116.00,102.00,636.00,0.00,0.00,260.00,0.00,0.00,\n2015,5,2,\"B6\",\"1401\",\"JFK\",\"FLL\",0.00,-22.00,0.00,\"\",0.00,170.00,148.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"1401\",\"JFK\",\"FLL\",-3.00,-21.00,0.00,\"\",0.00,174.00,143.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"1401\",\"JFK\",\"FLL\",-4.00,-16.00,0.00,\"\",0.00,180.00,157.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"1401\",\"JFK\",\"FLL\",-7.00,-7.00,0.00,\"\",0.00,192.00,168.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"1401\",\"JFK\",\"FLL\",4.00,-2.00,0.00,\"\",0.00,186.00,165.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"1401\",\"JFK\",\"FLL\",-5.00,-17.00,0.00,\"\",0.00,180.00,151.00,1069.00,,,,,,\n2015,5,9,\"B6\",\"1401\",\"JFK\",\"FLL\",-5.00,-24.00,0.00,\"\",0.00,173.00,144.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"1401\",\"JFK\",\"FLL\",-4.00,-18.00,0.00,\"\",0.00,178.00,151.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"1401\",\"JFK\",\"FLL\",0.00,14.00,0.00,\"\",0.00,206.00,154.00,1069.00,,,,,,\n2015,5,12,\"B6\",\"1401\",\"JFK\",\"FLL\",-2.00,-31.00,0.00,\"\",0.00,163.00,144.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"1401\",\"JFK\",\"FLL\",-8.00,-22.00,0.00,\"\",0.00,178.00,148.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"1401\",\"JFK\",\"FLL\",0.00,-25.00,0.00,\"\",0.00,167.00,148.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"1401\",\"JFK\",\"FLL\",-1.00,-36.00,0.00,\"\",0.00,157.00,139.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"1401\",\"JFK\",\"FLL\",3.00,-22.00,0.00,\"\",0.00,167.00,139.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"1401\",\"JFK\",\"FLL\",1.00,-21.00,0.00,\"\",0.00,170.00,140.00,1069.00,,,,,,\n2015,5,19,\"B6\",\"1401\",\"JFK\",\"FLL\",-2.00,-26.00,0.00,\"\",0.00,168.00,144.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"1401\",\"JFK\",\"FLL\",15.00,-11.00,0.00,\"\",0.00,166.00,145.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"1401\",\"JFK\",\"FLL\",-2.00,-11.00,0.00,\"\",0.00,180.00,144.00,1069.00,,,,,,\n2015,5,23,\"B6\",\"1401\",\"JFK\",\"FLL\",-4.00,-24.00,0.00,\"\",0.00,169.00,143.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"1401\",\"JFK\",\"FLL\",-6.00,-32.00,0.00,\"\",0.00,163.00,132.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"1401\",\"JFK\",\"FLL\",-4.00,-21.00,0.00,\"\",0.00,172.00,147.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"1401\",\"JFK\",\"FLL\",-2.00,-5.00,0.00,\"\",0.00,186.00,146.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"1401\",\"JFK\",\"FLL\",-3.00,-21.00,0.00,\"\",0.00,171.00,143.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"1401\",\"JFK\",\"FLL\",-2.00,-22.00,0.00,\"\",0.00,169.00,143.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"1401\",\"JFK\",\"FLL\",-3.00,-10.00,0.00,\"\",0.00,182.00,143.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"1401\",\"JFK\",\"FLL\",-9.00,-17.00,0.00,\"\",0.00,181.00,137.00,1069.00,,,,,,\n2015,5,1,\"B6\",\"1403\",\"JFK\",\"SJU\",-1.00,3.00,0.00,\"\",0.00,229.00,200.00,1598.00,,,,,,\n2015,5,2,\"B6\",\"1403\",\"JFK\",\"SJU\",-4.00,4.00,0.00,\"\",0.00,233.00,206.00,1598.00,,,,,,\n2015,5,3,\"B6\",\"1403\",\"JFK\",\"SJU\",2.00,35.00,0.00,\"\",0.00,258.00,236.00,1598.00,2.00,0.00,33.00,0.00,0.00,\n2015,5,4,\"B6\",\"1403\",\"JFK\",\"SJU\",-7.00,5.00,0.00,\"\",0.00,237.00,206.00,1598.00,,,,,,\n2015,5,5,\"B6\",\"1403\",\"JFK\",\"SJU\",-3.00,0.00,0.00,\"\",0.00,228.00,205.00,1598.00,,,,,,\n2015,5,6,\"B6\",\"1403\",\"JFK\",\"SJU\",-5.00,2.00,0.00,\"\",0.00,232.00,206.00,1598.00,,,,,,\n2015,5,7,\"B6\",\"1403\",\"JFK\",\"SJU\",-5.00,3.00,0.00,\"\",0.00,233.00,200.00,1598.00,,,,,,\n2015,5,8,\"B6\",\"1403\",\"JFK\",\"SJU\",-2.00,13.00,0.00,\"\",0.00,240.00,209.00,1598.00,,,,,,\n2015,5,9,\"B6\",\"1403\",\"JFK\",\"SJU\",0.00,4.00,0.00,\"\",0.00,229.00,200.00,1598.00,,,,,,\n2015,5,10,\"B6\",\"1403\",\"JFK\",\"SJU\",-1.00,-4.00,0.00,\"\",0.00,222.00,203.00,1598.00,,,,,,\n2015,5,11,\"B6\",\"1403\",\"JFK\",\"SJU\",-10.00,0.00,0.00,\"\",0.00,235.00,207.00,1598.00,,,,,,\n2015,5,12,\"B6\",\"1403\",\"JFK\",\"SJU\",-9.00,-13.00,0.00,\"\",0.00,221.00,205.00,1598.00,,,,,,\n2015,5,13,\"B6\",\"1403\",\"JFK\",\"SJU\",-6.00,-12.00,0.00,\"\",0.00,219.00,196.00,1598.00,,,,,,\n2015,5,14,\"B6\",\"1403\",\"JFK\",\"SJU\",-2.00,-29.00,0.00,\"\",0.00,198.00,181.00,1598.00,,,,,,\n2015,5,15,\"B6\",\"1403\",\"JFK\",\"SJU\",-2.00,-28.00,0.00,\"\",0.00,199.00,181.00,1598.00,,,,,,\n2015,5,16,\"B6\",\"1403\",\"JFK\",\"SJU\",5.00,-10.00,0.00,\"\",0.00,210.00,187.00,1598.00,,,,,,\n2015,5,17,\"B6\",\"1403\",\"JFK\",\"SJU\",86.00,80.00,0.00,\"\",0.00,219.00,190.00,1598.00,0.00,0.00,80.00,0.00,0.00,\n2015,5,18,\"B6\",\"1403\",\"JFK\",\"SJU\",-3.00,-9.00,0.00,\"\",0.00,219.00,194.00,1598.00,,,,,,\n2015,5,19,\"B6\",\"1403\",\"JFK\",\"SJU\",19.00,15.00,0.00,\"\",0.00,221.00,192.00,1598.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"B6\",\"1403\",\"JFK\",\"SJU\",-2.00,-9.00,0.00,\"\",0.00,218.00,202.00,1598.00,,,,,,\n2015,5,21,\"B6\",\"1403\",\"JFK\",\"SJU\",9.00,-2.00,0.00,\"\",0.00,214.00,193.00,1598.00,,,,,,\n2015,5,22,\"B6\",\"1403\",\"JFK\",\"SJU\",5.00,3.00,0.00,\"\",0.00,223.00,203.00,1598.00,,,,,,\n2015,5,23,\"B6\",\"1403\",\"JFK\",\"SJU\",-6.00,-20.00,0.00,\"\",0.00,211.00,192.00,1598.00,,,,,,\n2015,5,24,\"B6\",\"1403\",\"JFK\",\"SJU\",1.00,-24.00,0.00,\"\",0.00,200.00,184.00,1598.00,,,,,,\n2015,5,25,\"B6\",\"1403\",\"JFK\",\"SJU\",0.00,-17.00,0.00,\"\",0.00,208.00,185.00,1598.00,,,,,,\n2015,5,26,\"B6\",\"1403\",\"JFK\",\"SJU\",-3.00,-22.00,0.00,\"\",0.00,206.00,187.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"1403\",\"JFK\",\"SJU\",-6.00,-20.00,0.00,\"\",0.00,211.00,189.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"1403\",\"JFK\",\"SJU\",-3.00,-15.00,0.00,\"\",0.00,213.00,194.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"1403\",\"JFK\",\"SJU\",-3.00,-12.00,0.00,\"\",0.00,216.00,195.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"1403\",\"JFK\",\"SJU\",-4.00,-9.00,0.00,\"\",0.00,220.00,196.00,1598.00,,,,,,\n2015,5,31,\"B6\",\"1403\",\"JFK\",\"SJU\",-7.00,-14.00,0.00,\"\",0.00,218.00,203.00,1598.00,,,,,,\n2015,5,1,\"B6\",\"1404\",\"SJU\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,232.00,210.00,1598.00,,,,,,\n2015,5,2,\"B6\",\"1404\",\"SJU\",\"JFK\",5.00,-27.00,0.00,\"\",0.00,209.00,195.00,1598.00,,,,,,\n2015,5,3,\"B6\",\"1404\",\"SJU\",\"JFK\",40.00,39.00,0.00,\"\",0.00,240.00,225.00,1598.00,13.00,0.00,0.00,0.00,26.00,\n2015,5,4,\"B6\",\"1404\",\"SJU\",\"JFK\",193.00,155.00,0.00,\"\",0.00,203.00,191.00,1598.00,155.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"B6\",\"1404\",\"SJU\",\"JFK\",3.00,-14.00,0.00,\"\",0.00,224.00,199.00,1598.00,,,,,,\n2015,5,6,\"B6\",\"1404\",\"SJU\",\"JFK\",-4.00,-28.00,0.00,\"\",0.00,217.00,200.00,1598.00,,,,,,\n2015,5,7,\"B6\",\"1404\",\"SJU\",\"JFK\",1.00,-26.00,0.00,\"\",0.00,214.00,201.00,1598.00,,,,,,\n2015,5,8,\"B6\",\"1404\",\"SJU\",\"JFK\",6.00,-21.00,0.00,\"\",0.00,214.00,197.00,1598.00,,,,,,\n2015,5,9,\"B6\",\"1404\",\"SJU\",\"JFK\",22.00,-2.00,0.00,\"\",0.00,217.00,201.00,1598.00,,,,,,\n2015,5,10,\"B6\",\"1404\",\"SJU\",\"JFK\",1.00,-19.00,0.00,\"\",0.00,221.00,196.00,1598.00,,,,,,\n2015,5,11,\"B6\",\"1404\",\"SJU\",\"JFK\",-5.00,-34.00,0.00,\"\",0.00,212.00,195.00,1598.00,,,,,,\n2015,5,12,\"B6\",\"1404\",\"SJU\",\"JFK\",-6.00,1.00,0.00,\"\",0.00,248.00,222.00,1598.00,,,,,,\n2015,5,13,\"B6\",\"1404\",\"SJU\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,238.00,212.00,1598.00,,,,,,\n2015,5,14,\"B6\",\"1404\",\"SJU\",\"JFK\",-6.00,15.00,0.00,\"\",0.00,262.00,232.00,1598.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,15,\"B6\",\"1404\",\"SJU\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,235.00,213.00,1598.00,,,,,,\n2015,5,16,\"B6\",\"1404\",\"SJU\",\"JFK\",0.00,5.00,0.00,\"\",0.00,246.00,218.00,1598.00,,,,,,\n2015,5,17,\"B6\",\"1404\",\"SJU\",\"JFK\",118.00,101.00,0.00,\"\",0.00,224.00,209.00,1598.00,39.00,0.00,0.00,0.00,62.00,\n2015,5,18,\"B6\",\"1404\",\"SJU\",\"JFK\",4.00,1.00,0.00,\"\",0.00,238.00,225.00,1598.00,,,,,,\n2015,5,19,\"B6\",\"1404\",\"SJU\",\"JFK\",17.00,-8.00,0.00,\"\",0.00,216.00,205.00,1598.00,,,,,,\n2015,5,20,\"B6\",\"1404\",\"SJU\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,230.00,208.00,1598.00,,,,,,\n2015,5,21,\"B6\",\"1404\",\"SJU\",\"JFK\",2.00,-19.00,0.00,\"\",0.00,220.00,206.00,1598.00,,,,,,\n2015,5,22,\"B6\",\"1404\",\"SJU\",\"JFK\",-1.00,-10.00,0.00,\"\",0.00,232.00,215.00,1598.00,,,,,,\n2015,5,23,\"B6\",\"1404\",\"SJU\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,240.00,211.00,1598.00,,,,,,\n2015,5,24,\"B6\",\"1404\",\"SJU\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,235.00,220.00,1598.00,,,,,,\n2015,5,25,\"B6\",\"1404\",\"SJU\",\"JFK\",6.00,-7.00,0.00,\"\",0.00,228.00,216.00,1598.00,,,,,,\n2015,5,26,\"B6\",\"1404\",\"SJU\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,217.00,205.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"1404\",\"SJU\",\"JFK\",-7.00,-33.00,0.00,\"\",0.00,215.00,203.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"1404\",\"SJU\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,220.00,205.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"1404\",\"SJU\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,217.00,201.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"1404\",\"SJU\",\"JFK\",1.00,-26.00,0.00,\"\",0.00,214.00,201.00,1598.00,,,,,,\n2015,5,31,\"B6\",\"1404\",\"SJU\",\"JFK\",-3.00,-29.00,0.00,\"\",0.00,215.00,202.00,1598.00,,,,,,\n2015,5,1,\"B6\",\"1407\",\"JFK\",\"IAD\",-6.00,-37.00,0.00,\"\",0.00,74.00,39.00,228.00,,,,,,\n2015,5,3,\"B6\",\"1407\",\"JFK\",\"IAD\",50.00,23.00,0.00,\"\",0.00,78.00,44.00,228.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"1407\",\"JFK\",\"IAD\",-8.00,-42.00,0.00,\"\",0.00,71.00,44.00,228.00,,,,,,\n2015,5,5,\"B6\",\"1407\",\"JFK\",\"IAD\",-4.00,-41.00,0.00,\"\",0.00,68.00,44.00,228.00,,,,,,\n2015,5,6,\"B6\",\"1407\",\"JFK\",\"IAD\",-5.00,0.00,0.00,\"\",0.00,110.00,70.00,228.00,,,,,,\n2015,5,7,\"B6\",\"1407\",\"JFK\",\"IAD\",-6.00,-38.00,0.00,\"\",0.00,73.00,44.00,228.00,,,,,,\n2015,5,8,\"B6\",\"1407\",\"JFK\",\"IAD\",-1.00,-17.00,0.00,\"\",0.00,89.00,42.00,228.00,,,,,,\n2015,5,10,\"B6\",\"1407\",\"JFK\",\"IAD\",-1.00,-20.00,0.00,\"\",0.00,86.00,44.00,228.00,,,,,,\n2015,5,11,\"B6\",\"1407\",\"JFK\",\"IAD\",58.00,23.00,0.00,\"\",0.00,70.00,44.00,228.00,5.00,0.00,0.00,0.00,18.00,\n2015,5,12,\"B6\",\"1407\",\"JFK\",\"IAD\",,,1.00,\"C\",0.00,,,228.00,,,,,,\n2015,5,13,\"B6\",\"1407\",\"JFK\",\"IAD\",-2.00,-21.00,0.00,\"\",0.00,86.00,47.00,228.00,,,,,,\n2015,5,14,\"B6\",\"1407\",\"JFK\",\"IAD\",-8.00,-29.00,0.00,\"\",0.00,84.00,46.00,228.00,,,,,,\n2015,5,15,\"B6\",\"1407\",\"JFK\",\"IAD\",-5.00,-38.00,0.00,\"\",0.00,72.00,44.00,228.00,,,,,,\n2015,5,17,\"B6\",\"1407\",\"JFK\",\"IAD\",-4.00,-27.00,0.00,\"\",0.00,82.00,55.00,228.00,,,,,,\n2015,5,18,\"B6\",\"1407\",\"JFK\",\"IAD\",446.00,452.00,0.00,\"\",0.00,111.00,46.00,228.00,0.00,0.00,302.00,0.00,150.00,\n2015,5,19,\"B6\",\"1407\",\"JFK\",\"IAD\",-5.00,-16.00,0.00,\"\",0.00,94.00,47.00,228.00,,,,,,\n2015,5,20,\"B6\",\"1407\",\"JFK\",\"IAD\",158.00,132.00,0.00,\"\",0.00,79.00,48.00,228.00,132.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"B6\",\"1407\",\"JFK\",\"IAD\",-7.00,-21.00,0.00,\"\",0.00,86.00,63.00,228.00,,,,,,\n2015,5,22,\"B6\",\"1407\",\"JFK\",\"IAD\",75.00,47.00,0.00,\"\",0.00,77.00,47.00,228.00,21.00,0.00,0.00,0.00,26.00,\n2015,5,24,\"B6\",\"1407\",\"JFK\",\"IAD\",-8.00,-43.00,0.00,\"\",0.00,70.00,44.00,228.00,,,,,,\n2015,5,25,\"B6\",\"1407\",\"JFK\",\"IAD\",-3.00,-36.00,0.00,\"\",0.00,72.00,43.00,228.00,,,,,,\n2015,5,26,\"B6\",\"1407\",\"JFK\",\"IAD\",-4.00,-35.00,0.00,\"\",0.00,74.00,44.00,228.00,,,,,,\n2015,5,27,\"B6\",\"1407\",\"JFK\",\"IAD\",,,1.00,\"C\",0.00,,,228.00,,,,,,\n2015,5,28,\"B6\",\"1407\",\"JFK\",\"IAD\",-6.00,-32.00,0.00,\"\",0.00,79.00,48.00,228.00,,,,,,\n2015,5,29,\"B6\",\"1407\",\"JFK\",\"IAD\",-4.00,-29.00,0.00,\"\",0.00,80.00,43.00,228.00,,,,,,\n2015,5,31,\"B6\",\"1407\",\"JFK\",\"IAD\",,,1.00,\"C\",0.00,,,228.00,,,,,,\n2015,5,1,\"B6\",\"1415\",\"BOS\",\"BUF\",-5.00,-18.00,0.00,\"\",0.00,74.00,61.00,395.00,,,,,,\n2015,5,2,\"B6\",\"1415\",\"BOS\",\"BUF\",-16.00,-27.00,0.00,\"\",0.00,76.00,62.00,395.00,,,,,,\n2015,5,3,\"B6\",\"1415\",\"BOS\",\"BUF\",-2.00,-1.00,0.00,\"\",0.00,88.00,64.00,395.00,,,,,,\n2015,5,4,\"B6\",\"1415\",\"BOS\",\"BUF\",-18.00,-10.00,0.00,\"\",0.00,95.00,67.00,395.00,,,,,,\n2015,5,5,\"B6\",\"1415\",\"BOS\",\"BUF\",-1.00,-5.00,0.00,\"\",0.00,83.00,66.00,395.00,,,,,,\n2015,5,6,\"B6\",\"1415\",\"BOS\",\"BUF\",-5.00,-3.00,0.00,\"\",0.00,89.00,69.00,395.00,,,,,,\n2015,5,7,\"B6\",\"1415\",\"BOS\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,78.00,64.00,395.00,,,,,,\n2015,5,8,\"B6\",\"1415\",\"BOS\",\"BUF\",45.00,34.00,0.00,\"\",0.00,76.00,59.00,395.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,9,\"B6\",\"1415\",\"BOS\",\"BUF\",-8.00,-14.00,0.00,\"\",0.00,81.00,62.00,395.00,,,,,,\n2015,5,10,\"B6\",\"1415\",\"BOS\",\"BUF\",-7.00,-1.00,0.00,\"\",0.00,93.00,67.00,395.00,,,,,,\n2015,5,11,\"B6\",\"1415\",\"BOS\",\"BUF\",43.00,50.00,0.00,\"\",0.00,94.00,78.00,395.00,12.00,0.00,7.00,0.00,31.00,\n2015,5,12,\"B6\",\"1415\",\"BOS\",\"BUF\",-7.00,-5.00,0.00,\"\",0.00,89.00,69.00,395.00,,,,,,\n2015,5,13,\"B6\",\"1415\",\"BOS\",\"BUF\",-10.00,-8.00,0.00,\"\",0.00,89.00,61.00,395.00,,,,,,\n2015,5,14,\"B6\",\"1415\",\"BOS\",\"BUF\",-4.00,-2.00,0.00,\"\",0.00,89.00,69.00,395.00,,,,,,\n2015,5,15,\"B6\",\"1415\",\"BOS\",\"BUF\",5.00,6.00,0.00,\"\",0.00,88.00,66.00,395.00,,,,,,\n2015,5,16,\"B6\",\"1415\",\"BOS\",\"BUF\",-12.00,-18.00,0.00,\"\",0.00,81.00,65.00,395.00,,,,,,\n2015,5,17,\"B6\",\"1415\",\"BOS\",\"BUF\",-4.00,-8.00,0.00,\"\",0.00,83.00,65.00,395.00,,,,,,\n2015,5,18,\"B6\",\"1415\",\"BOS\",\"BUF\",0.00,-2.00,0.00,\"\",0.00,85.00,63.00,395.00,,,,,,\n2015,5,19,\"B6\",\"1415\",\"BOS\",\"BUF\",-1.00,1.00,0.00,\"\",0.00,89.00,67.00,395.00,,,,,,\n2015,5,20,\"B6\",\"1415\",\"BOS\",\"BUF\",2.00,-1.00,0.00,\"\",0.00,84.00,66.00,395.00,,,,,,\n2015,5,21,\"B6\",\"1415\",\"BOS\",\"BUF\",26.00,22.00,0.00,\"\",0.00,83.00,68.00,395.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"B6\",\"1415\",\"BOS\",\"BUF\",-5.00,-7.00,0.00,\"\",0.00,85.00,69.00,395.00,,,,,,\n2015,5,23,\"B6\",\"1415\",\"BOS\",\"BUF\",-1.00,-6.00,0.00,\"\",0.00,82.00,65.00,395.00,,,,,,\n2015,5,24,\"B6\",\"1415\",\"BOS\",\"BUF\",-1.00,-8.00,0.00,\"\",0.00,80.00,68.00,395.00,,,,,,\n2015,5,25,\"B6\",\"1415\",\"BOS\",\"BUF\",-3.00,0.00,0.00,\"\",0.00,90.00,68.00,395.00,,,,,,\n2015,5,26,\"B6\",\"1415\",\"BOS\",\"BUF\",-10.00,-14.00,0.00,\"\",0.00,83.00,62.00,395.00,,,,,,\n2015,5,27,\"B6\",\"1415\",\"BOS\",\"BUF\",17.00,16.00,0.00,\"\",0.00,86.00,66.00,395.00,7.00,0.00,0.00,0.00,9.00,\n2015,5,28,\"B6\",\"1415\",\"BOS\",\"BUF\",31.00,42.00,0.00,\"\",0.00,98.00,60.00,395.00,0.00,0.00,11.00,0.00,31.00,\n2015,5,29,\"B6\",\"1415\",\"BOS\",\"BUF\",28.00,24.00,0.00,\"\",0.00,83.00,61.00,395.00,3.00,0.00,0.00,0.00,21.00,\n2015,5,30,\"B6\",\"1415\",\"BOS\",\"BUF\",-2.00,-7.00,0.00,\"\",0.00,82.00,67.00,395.00,,,,,,\n2015,5,31,\"B6\",\"1415\",\"BOS\",\"BUF\",122.00,124.00,0.00,\"\",0.00,89.00,71.00,395.00,0.00,11.00,2.00,0.00,111.00,\n2015,5,10,\"B6\",\"1418\",\"JFK\",\"BOS\",-8.00,-16.00,0.00,\"\",0.00,65.00,43.00,187.00,,,,,,\n2015,5,21,\"B6\",\"1418\",\"JFK\",\"BOS\",-7.00,-12.00,0.00,\"\",0.00,68.00,42.00,187.00,,,,,,\n2015,5,1,\"B6\",\"1447\",\"HPN\",\"TPA\",-9.00,-7.00,0.00,\"\",0.00,166.00,145.00,1032.00,,,,,,\n2015,5,2,\"B6\",\"1447\",\"HPN\",\"TPA\",-13.00,-24.00,0.00,\"\",0.00,153.00,140.00,1032.00,,,,,,\n2015,5,3,\"B6\",\"1447\",\"HPN\",\"TPA\",-5.00,-17.00,0.00,\"\",0.00,152.00,139.00,1032.00,,,,,,\n2015,5,4,\"B6\",\"1447\",\"HPN\",\"TPA\",-3.00,-11.00,0.00,\"\",0.00,156.00,141.00,1032.00,,,,,,\n2015,5,5,\"B6\",\"1447\",\"HPN\",\"TPA\",-10.00,-14.00,0.00,\"\",0.00,160.00,145.00,1032.00,,,,,,\n2015,5,6,\"B6\",\"1447\",\"HPN\",\"TPA\",-10.00,-14.00,0.00,\"\",0.00,160.00,143.00,1032.00,,,,,,\n2015,5,7,\"B6\",\"1447\",\"HPN\",\"TPA\",0.00,-8.00,0.00,\"\",0.00,156.00,144.00,1032.00,,,,,,\n2015,5,8,\"B6\",\"1447\",\"HPN\",\"TPA\",-11.00,-15.00,0.00,\"\",0.00,160.00,141.00,1032.00,,,,,,\n2015,5,9,\"B6\",\"1447\",\"HPN\",\"TPA\",-6.00,-20.00,0.00,\"\",0.00,150.00,134.00,1032.00,,,,,,\n2015,5,10,\"B6\",\"1447\",\"HPN\",\"TPA\",-11.00,-23.00,0.00,\"\",0.00,152.00,133.00,1032.00,,,,,,\n2015,5,11,\"B6\",\"1447\",\"HPN\",\"TPA\",-10.00,-19.00,0.00,\"\",0.00,155.00,141.00,1032.00,,,,,,\n2015,5,12,\"B6\",\"1447\",\"HPN\",\"TPA\",-9.00,-11.00,0.00,\"\",0.00,162.00,139.00,1032.00,,,,,,\n2015,5,13,\"B6\",\"1447\",\"HPN\",\"TPA\",-10.00,-16.00,0.00,\"\",0.00,158.00,145.00,1032.00,,,,,,\n2015,5,14,\"B6\",\"1447\",\"HPN\",\"TPA\",-3.00,-15.00,0.00,\"\",0.00,152.00,136.00,1032.00,,,,,,\n2015,5,15,\"B6\",\"1447\",\"HPN\",\"TPA\",-6.00,-14.00,0.00,\"\",0.00,156.00,140.00,1032.00,,,,,,\n2015,5,16,\"B6\",\"1447\",\"HPN\",\"TPA\",-10.00,-20.00,0.00,\"\",0.00,154.00,133.00,1032.00,,,,,,\n2015,5,17,\"B6\",\"1447\",\"HPN\",\"TPA\",-6.00,-20.00,0.00,\"\",0.00,150.00,137.00,1032.00,,,,,,\n2015,5,18,\"B6\",\"1447\",\"HPN\",\"TPA\",-7.00,-17.00,0.00,\"\",0.00,154.00,134.00,1032.00,,,,,,\n2015,5,19,\"B6\",\"1447\",\"HPN\",\"TPA\",-9.00,-10.00,0.00,\"\",0.00,163.00,133.00,1032.00,,,,,,\n2015,5,20,\"B6\",\"1447\",\"HPN\",\"TPA\",-9.00,-7.00,0.00,\"\",0.00,166.00,140.00,1032.00,,,,,,\n2015,5,21,\"B6\",\"1447\",\"HPN\",\"TPA\",-10.00,-5.00,0.00,\"\",0.00,169.00,152.00,1032.00,,,,,,\n2015,5,22,\"B6\",\"1447\",\"HPN\",\"TPA\",-5.00,-2.00,0.00,\"\",0.00,167.00,151.00,1032.00,,,,,,\n2015,5,23,\"B6\",\"1447\",\"HPN\",\"TPA\",-11.00,-18.00,0.00,\"\",0.00,157.00,142.00,1032.00,,,,,,\n2015,5,24,\"B6\",\"1447\",\"HPN\",\"TPA\",-13.00,-27.00,0.00,\"\",0.00,150.00,137.00,1032.00,,,,,,\n2015,5,25,\"B6\",\"1447\",\"HPN\",\"TPA\",-10.00,-21.00,0.00,\"\",0.00,153.00,138.00,1032.00,,,,,,\n2015,5,26,\"B6\",\"1447\",\"HPN\",\"TPA\",28.00,22.00,0.00,\"\",0.00,158.00,139.00,1032.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"B6\",\"1447\",\"HPN\",\"TPA\",-9.00,-18.00,0.00,\"\",0.00,155.00,141.00,1032.00,,,,,,\n2015,5,28,\"B6\",\"1447\",\"HPN\",\"TPA\",-4.00,-10.00,0.00,\"\",0.00,158.00,144.00,1032.00,,,,,,\n2015,5,29,\"B6\",\"1447\",\"HPN\",\"TPA\",-5.00,-16.00,0.00,\"\",0.00,153.00,135.00,1032.00,,,,,,\n2015,5,30,\"B6\",\"1447\",\"HPN\",\"TPA\",-9.00,-23.00,0.00,\"\",0.00,150.00,135.00,1032.00,,,,,,\n2015,5,31,\"B6\",\"1447\",\"HPN\",\"TPA\",-5.00,-21.00,0.00,\"\",0.00,148.00,133.00,1032.00,,,,,,\n2015,5,1,\"B6\",\"1472\",\"FLL\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,165.00,136.00,1076.00,,,,,,\n2015,5,2,\"B6\",\"1472\",\"FLL\",\"LGA\",-11.00,-17.00,0.00,\"\",0.00,167.00,141.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"1472\",\"FLL\",\"LGA\",17.00,17.00,0.00,\"\",0.00,173.00,140.00,1076.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"1472\",\"FLL\",\"LGA\",-7.00,-1.00,0.00,\"\",0.00,179.00,141.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"1472\",\"FLL\",\"LGA\",-6.00,-30.00,0.00,\"\",0.00,149.00,134.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"1472\",\"FLL\",\"LGA\",37.00,25.00,0.00,\"\",0.00,161.00,145.00,1076.00,16.00,0.00,0.00,0.00,9.00,\n2015,5,7,\"B6\",\"1472\",\"FLL\",\"LGA\",-9.00,0.00,0.00,\"\",0.00,182.00,164.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"1472\",\"FLL\",\"LGA\",46.00,46.00,0.00,\"\",0.00,173.00,157.00,1076.00,26.00,20.00,0.00,0.00,0.00,\n2015,5,9,\"B6\",\"1472\",\"FLL\",\"LGA\",-7.00,11.00,0.00,\"\",0.00,191.00,157.00,1076.00,,,,,,\n2015,5,10,\"B6\",\"1472\",\"FLL\",\"LGA\",20.00,31.00,0.00,\"\",0.00,184.00,160.00,1076.00,10.00,0.00,11.00,0.00,10.00,\n2015,5,11,\"B6\",\"1472\",\"FLL\",\"LGA\",53.00,81.00,0.00,\"\",0.00,201.00,181.00,1076.00,0.00,0.00,81.00,0.00,0.00,\n2015,5,12,\"B6\",\"1472\",\"FLL\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,165.00,139.00,1076.00,,,,,,\n2015,5,13,\"B6\",\"1472\",\"FLL\",\"LGA\",12.00,22.00,0.00,\"\",0.00,183.00,152.00,1076.00,12.00,0.00,10.00,0.00,0.00,\n2015,5,14,\"B6\",\"1472\",\"FLL\",\"LGA\",-4.00,1.00,0.00,\"\",0.00,178.00,144.00,1076.00,,,,,,\n2015,5,15,\"B6\",\"1472\",\"FLL\",\"LGA\",-8.00,-3.00,0.00,\"\",0.00,178.00,141.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"1472\",\"FLL\",\"LGA\",3.00,5.00,0.00,\"\",0.00,175.00,149.00,1076.00,,,,,,\n2015,5,17,\"B6\",\"1472\",\"FLL\",\"LGA\",40.00,31.00,0.00,\"\",0.00,164.00,145.00,1076.00,6.00,0.00,0.00,0.00,25.00,\n2015,5,18,\"B6\",\"1472\",\"FLL\",\"LGA\",61.00,76.00,0.00,\"\",0.00,188.00,167.00,1076.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,19,\"B6\",\"1472\",\"FLL\",\"LGA\",3.00,29.00,0.00,\"\",0.00,199.00,146.00,1076.00,3.00,0.00,26.00,0.00,0.00,\n2015,5,20,\"B6\",\"1472\",\"FLL\",\"LGA\",-8.00,-10.00,0.00,\"\",0.00,171.00,142.00,1076.00,,,,,,\n2015,5,21,\"B6\",\"1472\",\"FLL\",\"LGA\",30.00,16.00,0.00,\"\",0.00,159.00,142.00,1076.00,12.00,0.00,0.00,0.00,4.00,\n2015,5,22,\"B6\",\"1472\",\"FLL\",\"LGA\",0.00,8.00,0.00,\"\",0.00,181.00,140.00,1076.00,,,,,,\n2015,5,23,\"B6\",\"1472\",\"FLL\",\"LGA\",-8.00,9.00,0.00,\"\",0.00,190.00,150.00,1076.00,,,,,,\n2015,5,24,\"B6\",\"1472\",\"FLL\",\"LGA\",-5.00,3.00,0.00,\"\",0.00,181.00,148.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"1472\",\"FLL\",\"LGA\",33.00,21.00,0.00,\"\",0.00,161.00,145.00,1076.00,6.00,0.00,0.00,0.00,15.00,\n2015,5,26,\"B6\",\"1472\",\"FLL\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,162.00,139.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"1472\",\"FLL\",\"LGA\",117.00,142.00,0.00,\"\",0.00,198.00,138.00,1076.00,0.00,0.00,142.00,0.00,0.00,\n2015,5,28,\"B6\",\"1472\",\"FLL\",\"LGA\",4.00,-2.00,0.00,\"\",0.00,167.00,138.00,1076.00,,,,,,\n2015,5,29,\"B6\",\"1472\",\"FLL\",\"LGA\",-10.00,-17.00,0.00,\"\",0.00,166.00,148.00,1076.00,,,,,,\n2015,5,30,\"B6\",\"1472\",\"FLL\",\"LGA\",-10.00,-21.00,0.00,\"\",0.00,162.00,145.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"1472\",\"FLL\",\"LGA\",,,1.00,\"C\",0.00,,,1076.00,,,,,,\n2015,5,1,\"B6\",\"1473\",\"JFK\",\"CHS\",-3.00,-19.00,0.00,\"\",0.00,111.00,88.00,636.00,,,,,,\n2015,5,3,\"B6\",\"1473\",\"JFK\",\"CHS\",-7.00,-13.00,0.00,\"\",0.00,121.00,88.00,636.00,,,,,,\n2015,5,8,\"B6\",\"1473\",\"JFK\",\"CHS\",150.00,132.00,0.00,\"\",0.00,109.00,87.00,636.00,0.00,17.00,0.00,0.00,115.00,\n2015,5,10,\"B6\",\"1473\",\"JFK\",\"CHS\",38.00,26.00,0.00,\"\",0.00,115.00,89.00,636.00,0.00,0.00,18.00,0.00,8.00,\n2015,5,15,\"B6\",\"1473\",\"JFK\",\"CHS\",-1.00,,0.00,\"\",1.00,,,636.00,,,,,,\n2015,5,17,\"B6\",\"1473\",\"JFK\",\"CHS\",3.00,-5.00,0.00,\"\",0.00,119.00,88.00,636.00,,,,,,\n2015,5,22,\"B6\",\"1473\",\"JFK\",\"CHS\",108.00,92.00,0.00,\"\",0.00,111.00,91.00,636.00,92.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"B6\",\"1473\",\"JFK\",\"CHS\",-10.00,-26.00,0.00,\"\",0.00,111.00,85.00,636.00,,,,,,\n2015,5,29,\"B6\",\"1473\",\"JFK\",\"CHS\",-3.00,-19.00,0.00,\"\",0.00,111.00,84.00,636.00,,,,,,\n2015,5,31,\"B6\",\"1473\",\"JFK\",\"CHS\",,,1.00,\"C\",0.00,,,636.00,,,,,,\n2015,5,1,\"B6\",\"1474\",\"CHS\",\"JFK\",-15.00,-14.00,0.00,\"\",0.00,127.00,94.00,636.00,,,,,,\n2015,5,3,\"B6\",\"1474\",\"CHS\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,122.00,92.00,636.00,,,,,,\n2015,5,8,\"B6\",\"1474\",\"CHS\",\"JFK\",96.00,91.00,0.00,\"\",0.00,121.00,99.00,636.00,0.00,0.00,51.00,0.00,40.00,\n2015,5,10,\"B6\",\"1474\",\"CHS\",\"JFK\",65.00,44.00,0.00,\"\",0.00,105.00,87.00,636.00,0.00,0.00,39.00,0.00,5.00,\n2015,5,15,\"B6\",\"1474\",\"CHS\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,120.00,91.00,636.00,,,,,,\n2015,5,17,\"B6\",\"1474\",\"CHS\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,104.00,89.00,636.00,,,,,,\n2015,5,22,\"B6\",\"1474\",\"CHS\",\"JFK\",66.00,48.00,0.00,\"\",0.00,108.00,90.00,636.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,24,\"B6\",\"1474\",\"CHS\",\"JFK\",-10.00,-21.00,0.00,\"\",0.00,115.00,91.00,636.00,,,,,,\n2015,5,29,\"B6\",\"1474\",\"CHS\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,122.00,91.00,636.00,,,,,,\n2015,5,31,\"B6\",\"1474\",\"CHS\",\"JFK\",,,1.00,\"C\",0.00,,,636.00,,,,,,\n2015,5,27,\"B6\",\"213\",\"JFK\",\"LGB\",0.00,23.00,0.00,\"\",0.00,388.00,327.00,2465.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,28,\"B6\",\"213\",\"JFK\",\"LGB\",7.00,-3.00,0.00,\"\",0.00,355.00,334.00,2465.00,,,,,,\n2015,5,29,\"B6\",\"213\",\"JFK\",\"LGB\",-5.00,-23.00,0.00,\"\",0.00,347.00,324.00,2465.00,,,,,,\n2015,5,30,\"B6\",\"213\",\"JFK\",\"LGB\",2.00,-36.00,0.00,\"\",0.00,327.00,305.00,2465.00,,,,,,\n2015,5,31,\"B6\",\"213\",\"JFK\",\"LGB\",-1.00,-33.00,0.00,\"\",0.00,333.00,306.00,2465.00,,,,,,\n2015,5,1,\"B6\",\"218\",\"CLT\",\"JFK\",-8.00,-28.00,0.00,\"\",0.00,92.00,76.00,541.00,,,,,,\n2015,5,2,\"B6\",\"218\",\"CLT\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,104.00,83.00,541.00,,,,,,\n2015,5,3,\"B6\",\"218\",\"CLT\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,98.00,83.00,541.00,,,,,,\n2015,5,4,\"B6\",\"218\",\"CLT\",\"JFK\",-8.00,-6.00,0.00,\"\",0.00,114.00,94.00,541.00,,,,,,\n2015,5,5,\"B6\",\"218\",\"CLT\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,97.00,82.00,541.00,,,,,,\n2015,5,6,\"B6\",\"218\",\"CLT\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,96.00,79.00,541.00,,,,,,\n2015,5,7,\"B6\",\"218\",\"CLT\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,96.00,83.00,541.00,,,,,,\n2015,5,8,\"B6\",\"218\",\"CLT\",\"JFK\",44.00,43.00,0.00,\"\",0.00,111.00,82.00,541.00,19.00,0.00,0.00,0.00,24.00,\n2015,5,9,\"B6\",\"218\",\"CLT\",\"JFK\",68.00,67.00,0.00,\"\",0.00,111.00,90.00,541.00,30.00,0.00,0.00,0.00,37.00,\n2015,5,10,\"B6\",\"218\",\"CLT\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,99.00,80.00,541.00,,,,,,\n2015,5,11,\"B6\",\"218\",\"CLT\",\"JFK\",-8.00,-13.00,0.00,\"\",0.00,107.00,86.00,541.00,,,,,,\n2015,5,12,\"B6\",\"218\",\"CLT\",\"JFK\",-10.00,22.00,0.00,\"\",0.00,144.00,90.00,541.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,13,\"B6\",\"218\",\"CLT\",\"JFK\",10.00,-7.00,0.00,\"\",0.00,95.00,74.00,541.00,,,,,,\n2015,5,14,\"B6\",\"218\",\"CLT\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,100.00,82.00,541.00,,,,,,\n2015,5,15,\"B6\",\"218\",\"CLT\",\"JFK\",2.00,-14.00,0.00,\"\",0.00,96.00,81.00,541.00,,,,,,\n2015,5,16,\"B6\",\"218\",\"CLT\",\"JFK\",36.00,30.00,0.00,\"\",0.00,106.00,83.00,541.00,2.00,0.00,0.00,0.00,28.00,\n2015,5,17,\"B6\",\"218\",\"CLT\",\"JFK\",13.00,1.00,0.00,\"\",0.00,100.00,79.00,541.00,,,,,,\n2015,5,18,\"B6\",\"218\",\"CLT\",\"JFK\",3.00,0.00,0.00,\"\",0.00,109.00,87.00,541.00,,,,,,\n2015,5,19,\"B6\",\"218\",\"CLT\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,101.00,81.00,541.00,,,,,,\n2015,5,20,\"B6\",\"218\",\"CLT\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,96.00,75.00,541.00,,,,,,\n2015,5,21,\"B6\",\"218\",\"CLT\",\"JFK\",-12.00,-18.00,0.00,\"\",0.00,106.00,78.00,541.00,,,,,,\n2015,5,22,\"B6\",\"218\",\"CLT\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,99.00,77.00,541.00,,,,,,\n2015,5,23,\"B6\",\"218\",\"CLT\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,103.00,78.00,541.00,,,,,,\n2015,5,24,\"B6\",\"218\",\"CLT\",\"JFK\",-13.00,-25.00,0.00,\"\",0.00,100.00,83.00,541.00,,,,,,\n2015,5,25,\"B6\",\"218\",\"CLT\",\"JFK\",-13.00,-30.00,0.00,\"\",0.00,95.00,79.00,541.00,,,,,,\n2015,5,26,\"B6\",\"218\",\"CLT\",\"JFK\",-15.00,-23.00,0.00,\"\",0.00,104.00,82.00,541.00,,,,,,\n2015,5,27,\"B6\",\"218\",\"CLT\",\"JFK\",49.00,55.00,0.00,\"\",0.00,118.00,83.00,541.00,29.00,0.00,6.00,0.00,20.00,\n2015,5,28,\"B6\",\"218\",\"CLT\",\"JFK\",10.00,-7.00,0.00,\"\",0.00,95.00,82.00,541.00,,,,,,\n2015,5,29,\"B6\",\"218\",\"CLT\",\"JFK\",39.00,26.00,0.00,\"\",0.00,99.00,84.00,541.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,30,\"B6\",\"218\",\"CLT\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,98.00,85.00,541.00,,,,,,\n2015,5,31,\"B6\",\"218\",\"CLT\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,95.00,84.00,541.00,,,,,,\n2015,5,1,\"B6\",\"219\",\"JFK\",\"CLT\",-6.00,-16.00,0.00,\"\",0.00,114.00,88.00,541.00,,,,,,\n2015,5,2,\"B6\",\"219\",\"JFK\",\"CLT\",-1.00,-11.00,0.00,\"\",0.00,114.00,78.00,541.00,,,,,,\n2015,5,3,\"B6\",\"219\",\"JFK\",\"CLT\",-10.00,-13.00,0.00,\"\",0.00,121.00,77.00,541.00,,,,,,\n2015,5,4,\"B6\",\"219\",\"JFK\",\"CLT\",-9.00,-20.00,0.00,\"\",0.00,113.00,77.00,541.00,,,,,,\n2015,5,5,\"B6\",\"219\",\"JFK\",\"CLT\",-4.00,-24.00,0.00,\"\",0.00,104.00,75.00,541.00,,,,,,\n2015,5,6,\"B6\",\"219\",\"JFK\",\"CLT\",-5.00,-26.00,0.00,\"\",0.00,103.00,77.00,541.00,,,,,,\n2015,5,7,\"B6\",\"219\",\"JFK\",\"CLT\",-5.00,-12.00,0.00,\"\",0.00,117.00,81.00,541.00,,,,,,\n2015,5,8,\"B6\",\"219\",\"JFK\",\"CLT\",51.00,31.00,0.00,\"\",0.00,104.00,83.00,541.00,0.00,4.00,0.00,0.00,27.00,\n2015,5,9,\"B6\",\"219\",\"JFK\",\"CLT\",19.00,44.00,0.00,\"\",0.00,149.00,77.00,541.00,16.00,0.00,25.00,0.00,3.00,\n2015,5,10,\"B6\",\"219\",\"JFK\",\"CLT\",-8.00,-29.00,0.00,\"\",0.00,103.00,78.00,541.00,,,,,,\n2015,5,11,\"B6\",\"219\",\"JFK\",\"CLT\",-7.00,-28.00,0.00,\"\",0.00,103.00,76.00,541.00,,,,,,\n2015,5,12,\"B6\",\"219\",\"JFK\",\"CLT\",-8.00,-20.00,0.00,\"\",0.00,112.00,82.00,541.00,,,,,,\n2015,5,13,\"B6\",\"219\",\"JFK\",\"CLT\",-3.00,-1.00,0.00,\"\",0.00,126.00,89.00,541.00,,,,,,\n2015,5,14,\"B6\",\"219\",\"JFK\",\"CLT\",-11.00,-29.00,0.00,\"\",0.00,106.00,83.00,541.00,,,,,,\n2015,5,15,\"B6\",\"219\",\"JFK\",\"CLT\",-8.00,-7.00,0.00,\"\",0.00,125.00,82.00,541.00,,,,,,\n2015,5,16,\"B6\",\"219\",\"JFK\",\"CLT\",16.00,40.00,0.00,\"\",0.00,148.00,76.00,541.00,15.00,0.00,24.00,0.00,1.00,\n2015,5,17,\"B6\",\"219\",\"JFK\",\"CLT\",-1.00,3.00,0.00,\"\",0.00,128.00,77.00,541.00,,,,,,\n2015,5,18,\"B6\",\"219\",\"JFK\",\"CLT\",-6.00,2.00,0.00,\"\",0.00,132.00,76.00,541.00,,,,,,\n2015,5,19,\"B6\",\"219\",\"JFK\",\"CLT\",-6.00,-4.00,0.00,\"\",0.00,126.00,90.00,541.00,,,,,,\n2015,5,20,\"B6\",\"219\",\"JFK\",\"CLT\",-5.00,-16.00,0.00,\"\",0.00,113.00,82.00,541.00,,,,,,\n2015,5,21,\"B6\",\"219\",\"JFK\",\"CLT\",-10.00,-14.00,0.00,\"\",0.00,120.00,92.00,541.00,,,,,,\n2015,5,22,\"B6\",\"219\",\"JFK\",\"CLT\",-5.00,-10.00,0.00,\"\",0.00,119.00,89.00,541.00,,,,,,\n2015,5,23,\"B6\",\"219\",\"JFK\",\"CLT\",-9.00,-19.00,0.00,\"\",0.00,114.00,84.00,541.00,,,,,,\n2015,5,24,\"B6\",\"219\",\"JFK\",\"CLT\",-2.00,-30.00,0.00,\"\",0.00,96.00,76.00,541.00,,,,,,\n2015,5,25,\"B6\",\"219\",\"JFK\",\"CLT\",-12.00,-26.00,0.00,\"\",0.00,110.00,78.00,541.00,,,,,,\n2015,5,26,\"B6\",\"219\",\"JFK\",\"CLT\",-5.00,-21.00,0.00,\"\",0.00,108.00,78.00,541.00,,,,,,\n2015,5,27,\"B6\",\"219\",\"JFK\",\"CLT\",23.00,26.00,0.00,\"\",0.00,127.00,91.00,541.00,23.00,0.00,3.00,0.00,0.00,\n2015,5,28,\"B6\",\"219\",\"JFK\",\"CLT\",19.00,8.00,0.00,\"\",0.00,113.00,78.00,541.00,,,,,,\n2015,5,29,\"B6\",\"219\",\"JFK\",\"CLT\",-6.00,-13.00,0.00,\"\",0.00,117.00,74.00,541.00,,,,,,\n2015,5,30,\"B6\",\"219\",\"JFK\",\"CLT\",-6.00,-31.00,0.00,\"\",0.00,99.00,73.00,541.00,,,,,,\n2015,5,31,\"B6\",\"219\",\"JFK\",\"CLT\",-4.00,-19.00,0.00,\"\",0.00,109.00,75.00,541.00,,,,,,\n2015,5,1,\"B6\",\"223\",\"JFK\",\"LAX\",0.00,-23.00,0.00,\"\",0.00,349.00,311.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"223\",\"JFK\",\"LAX\",-8.00,-36.00,0.00,\"\",0.00,344.00,316.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"223\",\"JFK\",\"LAX\",-4.00,-17.00,0.00,\"\",0.00,359.00,318.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"223\",\"JFK\",\"LAX\",-7.00,-38.00,0.00,\"\",0.00,341.00,307.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"223\",\"JFK\",\"LAX\",-1.00,-43.00,0.00,\"\",0.00,330.00,308.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"223\",\"JFK\",\"LAX\",-5.00,-15.00,0.00,\"\",0.00,362.00,324.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"223\",\"JFK\",\"LAX\",-1.00,-25.00,0.00,\"\",0.00,348.00,323.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"223\",\"JFK\",\"LAX\",29.00,14.00,0.00,\"\",0.00,357.00,329.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"223\",\"JFK\",\"LAX\",-3.00,-7.00,0.00,\"\",0.00,368.00,327.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"223\",\"JFK\",\"LAX\",-6.00,-40.00,0.00,\"\",0.00,338.00,311.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"223\",\"JFK\",\"LAX\",-3.00,-5.00,0.00,\"\",0.00,370.00,335.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"223\",\"JFK\",\"LAX\",-3.00,-1.00,0.00,\"\",0.00,374.00,340.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"223\",\"JFK\",\"LAX\",-1.00,4.00,0.00,\"\",0.00,377.00,336.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"223\",\"JFK\",\"LAX\",-3.00,7.00,0.00,\"\",0.00,382.00,328.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"223\",\"JFK\",\"LAX\",3.00,19.00,0.00,\"\",0.00,388.00,333.00,2475.00,3.00,0.00,16.00,0.00,0.00,\n2015,5,16,\"B6\",\"223\",\"JFK\",\"LAX\",-12.00,14.00,0.00,\"\",0.00,398.00,326.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"223\",\"JFK\",\"LAX\",35.00,26.00,0.00,\"\",0.00,363.00,326.00,2475.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"223\",\"JFK\",\"LAX\",0.00,10.00,0.00,\"\",0.00,382.00,323.00,2475.00,,,,,,\n2015,5,19,\"B6\",\"223\",\"JFK\",\"LAX\",39.00,39.00,0.00,\"\",0.00,372.00,341.00,2475.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"B6\",\"223\",\"JFK\",\"LAX\",-1.00,3.00,0.00,\"\",0.00,376.00,340.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"223\",\"JFK\",\"LAX\",-2.00,9.00,0.00,\"\",0.00,383.00,353.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"223\",\"JFK\",\"LAX\",-6.00,27.00,0.00,\"\",0.00,405.00,350.00,2475.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,23,\"B6\",\"223\",\"JFK\",\"LAX\",-10.00,-30.00,0.00,\"\",0.00,352.00,328.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"223\",\"JFK\",\"LAX\",-2.00,-27.00,0.00,\"\",0.00,347.00,327.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"223\",\"JFK\",\"LAX\",-5.00,-8.00,0.00,\"\",0.00,369.00,322.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"223\",\"JFK\",\"LAX\",-6.00,-23.00,0.00,\"\",0.00,355.00,317.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"223\",\"JFK\",\"LAX\",-2.00,-21.00,0.00,\"\",0.00,353.00,322.00,2475.00,,,,,,\n2015,5,28,\"B6\",\"223\",\"JFK\",\"LAX\",2.00,5.00,0.00,\"\",0.00,375.00,332.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"223\",\"JFK\",\"LAX\",-6.00,-25.00,0.00,\"\",0.00,353.00,324.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"223\",\"JFK\",\"LAX\",-7.00,-43.00,0.00,\"\",0.00,336.00,308.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"223\",\"JFK\",\"LAX\",-2.00,-10.00,0.00,\"\",0.00,364.00,310.00,2475.00,,,,,,\n2015,5,1,\"B6\",\"224\",\"LAX\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,319.00,305.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"224\",\"LAX\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,317.00,304.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"224\",\"LAX\",\"JFK\",2.00,-12.00,0.00,\"\",0.00,324.00,306.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"224\",\"LAX\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,321.00,298.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"224\",\"LAX\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,322.00,299.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"224\",\"LAX\",\"JFK\",3.00,-17.00,0.00,\"\",0.00,318.00,305.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"224\",\"LAX\",\"JFK\",-4.00,-31.00,0.00,\"\",0.00,311.00,301.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"224\",\"LAX\",\"JFK\",-4.00,-32.00,0.00,\"\",0.00,310.00,293.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"224\",\"LAX\",\"JFK\",7.00,-9.00,0.00,\"\",0.00,322.00,308.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"224\",\"LAX\",\"JFK\",-8.00,-17.00,0.00,\"\",0.00,329.00,307.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"224\",\"LAX\",\"JFK\",0.00,-27.00,0.00,\"\",0.00,311.00,298.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"224\",\"LAX\",\"JFK\",55.00,26.00,0.00,\"\",0.00,309.00,276.00,2475.00,0.00,0.00,3.00,0.00,23.00,\n2015,5,13,\"B6\",\"224\",\"LAX\",\"JFK\",-3.00,-45.00,0.00,\"\",0.00,296.00,282.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"224\",\"LAX\",\"JFK\",-3.00,-32.00,0.00,\"\",0.00,309.00,296.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"224\",\"LAX\",\"JFK\",5.00,-27.00,0.00,\"\",0.00,306.00,292.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"224\",\"LAX\",\"JFK\",21.00,-6.00,0.00,\"\",0.00,311.00,293.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"224\",\"LAX\",\"JFK\",-4.00,-37.00,0.00,\"\",0.00,305.00,290.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"224\",\"LAX\",\"JFK\",203.00,180.00,0.00,\"\",0.00,315.00,295.00,2475.00,0.00,0.00,180.00,0.00,0.00,\n2015,5,19,\"B6\",\"224\",\"LAX\",\"JFK\",-2.00,-44.00,0.00,\"\",0.00,296.00,282.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"224\",\"LAX\",\"JFK\",-5.00,-52.00,0.00,\"\",0.00,291.00,269.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"224\",\"LAX\",\"JFK\",8.00,-27.00,0.00,\"\",0.00,303.00,284.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"224\",\"LAX\",\"JFK\",-1.00,-40.00,0.00,\"\",0.00,299.00,281.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"224\",\"LAX\",\"JFK\",-5.00,-32.00,0.00,\"\",0.00,311.00,296.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"224\",\"LAX\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,315.00,299.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"224\",\"LAX\",\"JFK\",8.00,-19.00,0.00,\"\",0.00,311.00,297.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"224\",\"LAX\",\"JFK\",2.00,27.00,0.00,\"\",0.00,363.00,337.00,2475.00,2.00,0.00,25.00,0.00,0.00,\n2015,5,27,\"B6\",\"224\",\"LAX\",\"JFK\",207.00,206.00,0.00,\"\",0.00,337.00,303.00,2475.00,0.00,0.00,206.00,0.00,0.00,\n2015,5,28,\"B6\",\"224\",\"LAX\",\"JFK\",-10.00,-34.00,0.00,\"\",0.00,314.00,301.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"224\",\"LAX\",\"JFK\",-7.00,-36.00,0.00,\"\",0.00,309.00,298.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"224\",\"LAX\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,316.00,302.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"224\",\"LAX\",\"JFK\",111.00,118.00,0.00,\"\",0.00,345.00,309.00,2475.00,0.00,0.00,118.00,0.00,0.00,\n2015,5,1,\"B6\",\"225\",\"JFK\",\"TPA\",8.00,-10.00,0.00,\"\",0.00,178.00,143.00,1005.00,,,,,,\n2015,5,2,\"B6\",\"225\",\"JFK\",\"TPA\",0.00,-19.00,0.00,\"\",0.00,177.00,138.00,1005.00,,,,,,\n2015,5,3,\"B6\",\"225\",\"JFK\",\"TPA\",-2.00,-33.00,0.00,\"\",0.00,165.00,137.00,1005.00,,,,,,\n2015,5,4,\"B6\",\"225\",\"JFK\",\"TPA\",-4.00,-30.00,0.00,\"\",0.00,170.00,136.00,1005.00,,,,,,\n2015,5,5,\"B6\",\"225\",\"JFK\",\"TPA\",-2.00,-24.00,0.00,\"\",0.00,174.00,147.00,1005.00,,,,,,\n2015,5,6,\"B6\",\"225\",\"JFK\",\"TPA\",-4.00,-23.00,0.00,\"\",0.00,177.00,142.00,1005.00,,,,,,\n2015,5,7,\"B6\",\"225\",\"JFK\",\"TPA\",-1.00,-24.00,0.00,\"\",0.00,173.00,137.00,1005.00,,,,,,\n2015,5,8,\"B6\",\"225\",\"JFK\",\"TPA\",17.00,-8.00,0.00,\"\",0.00,171.00,131.00,1005.00,,,,,,\n2015,5,9,\"B6\",\"225\",\"JFK\",\"TPA\",-2.00,-38.00,0.00,\"\",0.00,160.00,132.00,1005.00,,,,,,\n2015,5,10,\"B6\",\"225\",\"JFK\",\"TPA\",-3.00,-20.00,0.00,\"\",0.00,179.00,145.00,1005.00,,,,,,\n2015,5,11,\"B6\",\"225\",\"JFK\",\"TPA\",-5.00,-23.00,0.00,\"\",0.00,178.00,135.00,1005.00,,,,,,\n2015,5,12,\"B6\",\"225\",\"JFK\",\"TPA\",,,1.00,\"B\",0.00,,,1005.00,,,,,,\n2015,5,13,\"B6\",\"225\",\"JFK\",\"TPA\",2.00,-25.00,0.00,\"\",0.00,169.00,135.00,1005.00,,,,,,\n2015,5,14,\"B6\",\"225\",\"JFK\",\"TPA\",38.00,8.00,0.00,\"\",0.00,166.00,137.00,1005.00,,,,,,\n2015,5,15,\"B6\",\"225\",\"JFK\",\"TPA\",-6.00,-32.00,0.00,\"\",0.00,170.00,138.00,1005.00,,,,,,\n2015,5,16,\"B6\",\"225\",\"JFK\",\"TPA\",-3.00,-27.00,0.00,\"\",0.00,172.00,135.00,1005.00,,,,,,\n2015,5,17,\"B6\",\"225\",\"JFK\",\"TPA\",3.00,-26.00,0.00,\"\",0.00,167.00,130.00,1005.00,,,,,,\n2015,5,18,\"B6\",\"225\",\"JFK\",\"TPA\",40.00,89.00,0.00,\"\",0.00,245.00,140.00,1005.00,4.00,0.00,49.00,0.00,36.00,\n2015,5,19,\"B6\",\"225\",\"JFK\",\"TPA\",7.00,5.00,0.00,\"\",0.00,194.00,143.00,1005.00,,,,,,\n2015,5,20,\"B6\",\"225\",\"JFK\",\"TPA\",25.00,3.00,0.00,\"\",0.00,174.00,140.00,1005.00,,,,,,\n2015,5,21,\"B6\",\"225\",\"JFK\",\"TPA\",-3.00,1.00,0.00,\"\",0.00,200.00,149.00,1005.00,,,,,,\n2015,5,22,\"B6\",\"225\",\"JFK\",\"TPA\",-4.00,-20.00,0.00,\"\",0.00,180.00,140.00,1005.00,,,,,,\n2015,5,23,\"B6\",\"225\",\"JFK\",\"TPA\",0.00,-32.00,0.00,\"\",0.00,164.00,135.00,1005.00,,,,,,\n2015,5,24,\"B6\",\"225\",\"JFK\",\"TPA\",-4.00,-25.00,0.00,\"\",0.00,175.00,137.00,1005.00,,,,,,\n2015,5,25,\"B6\",\"225\",\"JFK\",\"TPA\",-5.00,-28.00,0.00,\"\",0.00,173.00,137.00,1005.00,,,,,,\n2015,5,26,\"B6\",\"225\",\"JFK\",\"TPA\",-7.00,-6.00,0.00,\"\",0.00,197.00,152.00,1005.00,,,,,,\n2015,5,27,\"B6\",\"225\",\"JFK\",\"TPA\",-7.00,26.00,0.00,\"\",0.00,229.00,142.00,1005.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,28,\"B6\",\"225\",\"JFK\",\"TPA\",20.00,1.00,0.00,\"\",0.00,177.00,139.00,1005.00,,,,,,\n2015,5,29,\"B6\",\"225\",\"JFK\",\"TPA\",-5.00,-1.00,0.00,\"\",0.00,199.00,139.00,1005.00,,,,,,\n2015,5,30,\"B6\",\"225\",\"JFK\",\"TPA\",-3.00,-18.00,0.00,\"\",0.00,181.00,138.00,1005.00,,,,,,\n2015,5,31,\"B6\",\"225\",\"JFK\",\"TPA\",103.00,142.00,0.00,\"\",0.00,234.00,127.00,1005.00,0.00,103.00,39.00,0.00,0.00,\n2015,5,1,\"B6\",\"233\",\"BTV\",\"JFK\",-10.00,-29.00,0.00,\"\",0.00,64.00,49.00,266.00,,,,,,\n2015,5,2,\"B6\",\"233\",\"BTV\",\"JFK\",-10.00,-15.00,0.00,\"\",0.00,78.00,59.00,266.00,,,,,,\n2015,5,3,\"B6\",\"233\",\"BTV\",\"JFK\",-17.00,-23.00,0.00,\"\",0.00,77.00,53.00,266.00,,,,,,\n2015,5,4,\"B6\",\"233\",\"BTV\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,71.00,56.00,266.00,,,,,,\n2015,5,5,\"B6\",\"233\",\"BTV\",\"JFK\",-10.00,-27.00,0.00,\"\",0.00,66.00,53.00,266.00,,,,,,\n2015,5,6,\"B6\",\"233\",\"BTV\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,64.00,51.00,266.00,,,,,,\n2015,5,7,\"B6\",\"233\",\"BTV\",\"JFK\",-8.00,-13.00,0.00,\"\",0.00,78.00,55.00,266.00,,,,,,\n2015,5,8,\"B6\",\"233\",\"BTV\",\"JFK\",55.00,58.00,0.00,\"\",0.00,86.00,65.00,266.00,0.00,0.00,58.00,0.00,0.00,\n2015,5,9,\"B6\",\"233\",\"BTV\",\"JFK\",-11.00,-19.00,0.00,\"\",0.00,75.00,62.00,266.00,,,,,,\n2015,5,10,\"B6\",\"233\",\"BTV\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,73.00,57.00,266.00,,,,,,\n2015,5,11,\"B6\",\"233\",\"BTV\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,67.00,52.00,266.00,,,,,,\n2015,5,12,\"B6\",\"233\",\"BTV\",\"JFK\",-10.00,-19.00,0.00,\"\",0.00,74.00,55.00,266.00,,,,,,\n2015,5,13,\"B6\",\"233\",\"BTV\",\"JFK\",-7.00,-12.00,0.00,\"\",0.00,78.00,64.00,266.00,,,,,,\n2015,5,14,\"B6\",\"233\",\"BTV\",\"JFK\",-10.00,-26.00,0.00,\"\",0.00,67.00,49.00,266.00,,,,,,\n2015,5,15,\"B6\",\"233\",\"BTV\",\"JFK\",-9.00,-17.00,0.00,\"\",0.00,75.00,62.00,266.00,,,,,,\n2015,5,16,\"B6\",\"233\",\"BTV\",\"JFK\",-10.00,18.00,0.00,\"\",0.00,111.00,65.00,266.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,17,\"B6\",\"233\",\"BTV\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,74.00,59.00,266.00,,,,,,\n2015,5,18,\"B6\",\"233\",\"BTV\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,80.00,60.00,266.00,,,,,,\n2015,5,19,\"B6\",\"233\",\"BTV\",\"JFK\",-10.00,-22.00,0.00,\"\",0.00,71.00,57.00,266.00,,,,,,\n2015,5,20,\"B6\",\"233\",\"BTV\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,72.00,59.00,266.00,,,,,,\n2015,5,21,\"B6\",\"233\",\"BTV\",\"JFK\",-9.00,-14.00,0.00,\"\",0.00,78.00,64.00,266.00,,,,,,\n2015,5,22,\"B6\",\"233\",\"BTV\",\"JFK\",-8.00,-12.00,0.00,\"\",0.00,79.00,62.00,266.00,,,,,,\n2015,5,23,\"B6\",\"233\",\"BTV\",\"JFK\",-12.00,-23.00,0.00,\"\",0.00,72.00,53.00,266.00,,,,,,\n2015,5,24,\"B6\",\"233\",\"BTV\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,63.00,48.00,266.00,,,,,,\n2015,5,25,\"B6\",\"233\",\"BTV\",\"JFK\",-9.00,-25.00,0.00,\"\",0.00,67.00,52.00,266.00,,,,,,\n2015,5,26,\"B6\",\"233\",\"BTV\",\"JFK\",-12.00,-24.00,0.00,\"\",0.00,71.00,55.00,266.00,,,,,,\n2015,5,27,\"B6\",\"233\",\"BTV\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,73.00,58.00,266.00,,,,,,\n2015,5,28,\"B6\",\"233\",\"BTV\",\"JFK\",-6.00,21.00,0.00,\"\",0.00,110.00,93.00,266.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,29,\"B6\",\"233\",\"BTV\",\"JFK\",-10.00,-13.00,0.00,\"\",0.00,80.00,63.00,266.00,,,,,,\n2015,5,30,\"B6\",\"233\",\"BTV\",\"JFK\",-12.00,-13.00,0.00,\"\",0.00,82.00,51.00,266.00,,,,,,\n2015,5,31,\"B6\",\"233\",\"BTV\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,75.00,61.00,266.00,,,,,,\n2015,5,1,\"B6\",\"234\",\"JFK\",\"BTV\",-9.00,-13.00,0.00,\"\",0.00,75.00,44.00,266.00,,,,,,\n2015,5,2,\"B6\",\"234\",\"JFK\",\"BTV\",13.00,8.00,0.00,\"\",0.00,74.00,44.00,266.00,,,,,,\n2015,5,3,\"B6\",\"234\",\"JFK\",\"BTV\",-9.00,-11.00,0.00,\"\",0.00,77.00,48.00,266.00,,,,,,\n2015,5,4,\"B6\",\"234\",\"JFK\",\"BTV\",4.00,9.00,0.00,\"\",0.00,84.00,44.00,266.00,,,,,,\n2015,5,5,\"B6\",\"234\",\"JFK\",\"BTV\",-5.00,-10.00,0.00,\"\",0.00,74.00,43.00,266.00,,,,,,\n2015,5,6,\"B6\",\"234\",\"JFK\",\"BTV\",-1.00,-15.00,0.00,\"\",0.00,65.00,46.00,266.00,,,,,,\n2015,5,7,\"B6\",\"234\",\"JFK\",\"BTV\",-4.00,-7.00,0.00,\"\",0.00,76.00,45.00,266.00,,,,,,\n2015,5,8,\"B6\",\"234\",\"JFK\",\"BTV\",95.00,79.00,0.00,\"\",0.00,63.00,46.00,266.00,0.00,12.00,0.00,0.00,67.00,\n2015,5,9,\"B6\",\"234\",\"JFK\",\"BTV\",43.00,30.00,0.00,\"\",0.00,66.00,46.00,266.00,1.00,0.00,0.00,0.00,29.00,\n2015,5,10,\"B6\",\"234\",\"JFK\",\"BTV\",42.00,32.00,0.00,\"\",0.00,69.00,41.00,266.00,6.00,0.00,0.00,0.00,26.00,\n2015,5,11,\"B6\",\"234\",\"JFK\",\"BTV\",28.00,32.00,0.00,\"\",0.00,83.00,56.00,266.00,28.00,0.00,4.00,0.00,0.00,\n2015,5,12,\"B6\",\"234\",\"JFK\",\"BTV\",-2.00,3.00,0.00,\"\",0.00,84.00,44.00,266.00,,,,,,\n2015,5,13,\"B6\",\"234\",\"JFK\",\"BTV\",0.00,3.00,0.00,\"\",0.00,82.00,47.00,266.00,,,,,,\n2015,5,14,\"B6\",\"234\",\"JFK\",\"BTV\",-7.00,-5.00,0.00,\"\",0.00,81.00,47.00,266.00,,,,,,\n2015,5,15,\"B6\",\"234\",\"JFK\",\"BTV\",-3.00,-13.00,0.00,\"\",0.00,69.00,43.00,266.00,,,,,,\n2015,5,16,\"B6\",\"234\",\"JFK\",\"BTV\",-1.00,1.00,0.00,\"\",0.00,81.00,44.00,266.00,,,,,,\n2015,5,17,\"B6\",\"234\",\"JFK\",\"BTV\",87.00,82.00,0.00,\"\",0.00,74.00,50.00,266.00,8.00,0.00,0.00,0.00,74.00,\n2015,5,18,\"B6\",\"234\",\"JFK\",\"BTV\",41.00,72.00,0.00,\"\",0.00,110.00,46.00,266.00,11.00,0.00,31.00,0.00,30.00,\n2015,5,19,\"B6\",\"234\",\"JFK\",\"BTV\",-4.00,-2.00,0.00,\"\",0.00,81.00,44.00,266.00,,,,,,\n2015,5,20,\"B6\",\"234\",\"JFK\",\"BTV\",0.00,-8.00,0.00,\"\",0.00,71.00,46.00,266.00,,,,,,\n2015,5,21,\"B6\",\"234\",\"JFK\",\"BTV\",-3.00,-11.00,0.00,\"\",0.00,71.00,40.00,266.00,,,,,,\n2015,5,22,\"B6\",\"234\",\"JFK\",\"BTV\",50.00,39.00,0.00,\"\",0.00,68.00,48.00,266.00,9.00,0.00,0.00,0.00,30.00,\n2015,5,23,\"B6\",\"234\",\"JFK\",\"BTV\",-1.00,-8.00,0.00,\"\",0.00,72.00,46.00,266.00,,,,,,\n2015,5,24,\"B6\",\"234\",\"JFK\",\"BTV\",-10.00,-23.00,0.00,\"\",0.00,66.00,44.00,266.00,,,,,,\n2015,5,25,\"B6\",\"234\",\"JFK\",\"BTV\",-10.00,-25.00,0.00,\"\",0.00,64.00,43.00,266.00,,,,,,\n2015,5,26,\"B6\",\"234\",\"JFK\",\"BTV\",-7.00,-6.00,0.00,\"\",0.00,80.00,41.00,266.00,,,,,,\n2015,5,27,\"B6\",\"234\",\"JFK\",\"BTV\",-8.00,-26.00,0.00,\"\",0.00,61.00,41.00,266.00,,,,,,\n2015,5,28,\"B6\",\"234\",\"JFK\",\"BTV\",-4.00,-7.00,0.00,\"\",0.00,76.00,49.00,266.00,,,,,,\n2015,5,29,\"B6\",\"234\",\"JFK\",\"BTV\",-2.00,-14.00,0.00,\"\",0.00,67.00,45.00,266.00,,,,,,\n2015,5,30,\"B6\",\"234\",\"JFK\",\"BTV\",-4.00,-12.00,0.00,\"\",0.00,71.00,48.00,266.00,,,,,,\n2015,5,31,\"B6\",\"234\",\"JFK\",\"BTV\",,,1.00,\"C\",0.00,,,266.00,,,,,,\n2015,5,10,\"B6\",\"1491\",\"JFK\",\"ACK\",161.00,153.00,0.00,\"\",0.00,65.00,43.00,199.00,0.00,153.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"1491\",\"JFK\",\"ACK\",5.00,10.00,0.00,\"\",0.00,78.00,44.00,199.00,,,,,,\n2015,5,22,\"B6\",\"1491\",\"JFK\",\"ACK\",28.00,18.00,0.00,\"\",0.00,63.00,36.00,199.00,12.00,0.00,0.00,0.00,6.00,\n2015,5,23,\"B6\",\"1491\",\"JFK\",\"ACK\",0.00,-13.00,0.00,\"\",0.00,60.00,37.00,199.00,,,,,,\n2015,5,24,\"B6\",\"1491\",\"JFK\",\"ACK\",-10.00,-29.00,0.00,\"\",0.00,54.00,36.00,199.00,,,,,,\n2015,5,25,\"B6\",\"1491\",\"JFK\",\"ACK\",-9.00,-16.00,0.00,\"\",0.00,66.00,39.00,199.00,,,,,,\n2015,5,26,\"B6\",\"1491\",\"JFK\",\"ACK\",-1.00,-9.00,0.00,\"\",0.00,65.00,36.00,199.00,,,,,,\n2015,5,31,\"B6\",\"1491\",\"JFK\",\"ACK\",-10.00,-4.00,0.00,\"\",0.00,79.00,43.00,199.00,,,,,,\n2015,5,10,\"B6\",\"1492\",\"ACK\",\"JFK\",138.00,121.00,0.00,\"\",0.00,56.00,41.00,199.00,0.00,0.00,0.00,0.00,121.00,\n2015,5,17,\"B6\",\"1492\",\"ACK\",\"JFK\",17.00,-6.00,0.00,\"\",0.00,50.00,36.00,199.00,,,,,,\n2015,5,22,\"B6\",\"1492\",\"ACK\",\"JFK\",18.00,3.00,0.00,\"\",0.00,58.00,37.00,199.00,,,,,,\n2015,5,23,\"B6\",\"1492\",\"ACK\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,58.00,39.00,199.00,,,,,,\n2015,5,24,\"B6\",\"1492\",\"ACK\",\"JFK\",-24.00,-40.00,0.00,\"\",0.00,57.00,40.00,199.00,,,,,,\n2015,5,25,\"B6\",\"1492\",\"ACK\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,61.00,46.00,199.00,,,,,,\n2015,5,26,\"B6\",\"1492\",\"ACK\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,62.00,46.00,199.00,,,,,,\n2015,5,31,\"B6\",\"1492\",\"ACK\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,56.00,37.00,199.00,,,,,,\n2015,5,1,\"B6\",\"1494\",\"MCO\",\"HPN\",-5.00,-10.00,0.00,\"\",0.00,156.00,126.00,972.00,,,,,,\n2015,5,2,\"B6\",\"1494\",\"MCO\",\"HPN\",-8.00,-14.00,0.00,\"\",0.00,155.00,136.00,972.00,,,,,,\n2015,5,3,\"B6\",\"1494\",\"MCO\",\"HPN\",-7.00,-14.00,0.00,\"\",0.00,154.00,138.00,972.00,,,,,,\n2015,5,4,\"B6\",\"1494\",\"MCO\",\"HPN\",5.00,1.00,0.00,\"\",0.00,157.00,138.00,972.00,,,,,,\n2015,5,5,\"B6\",\"1494\",\"MCO\",\"HPN\",-5.00,-17.00,0.00,\"\",0.00,149.00,135.00,972.00,,,,,,\n2015,5,6,\"B6\",\"1494\",\"MCO\",\"HPN\",6.00,8.00,0.00,\"\",0.00,163.00,134.00,972.00,,,,,,\n2015,5,7,\"B6\",\"1494\",\"MCO\",\"HPN\",9.00,2.00,0.00,\"\",0.00,154.00,139.00,972.00,,,,,,\n2015,5,8,\"B6\",\"1494\",\"MCO\",\"HPN\",215.00,214.00,0.00,\"\",0.00,160.00,143.00,972.00,210.00,0.00,0.00,0.00,4.00,\n2015,5,9,\"B6\",\"1494\",\"MCO\",\"HPN\",-2.00,-1.00,0.00,\"\",0.00,162.00,144.00,972.00,,,,,,\n2015,5,10,\"B6\",\"1494\",\"MCO\",\"HPN\",84.00,80.00,0.00,\"\",0.00,157.00,141.00,972.00,80.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"B6\",\"1494\",\"MCO\",\"HPN\",155.00,142.00,0.00,\"\",0.00,148.00,136.00,972.00,142.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"B6\",\"1494\",\"MCO\",\"HPN\",66.00,53.00,0.00,\"\",0.00,148.00,132.00,972.00,53.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"B6\",\"1494\",\"MCO\",\"HPN\",-12.00,-15.00,0.00,\"\",0.00,158.00,137.00,972.00,,,,,,\n2015,5,14,\"B6\",\"1494\",\"MCO\",\"HPN\",-6.00,7.00,0.00,\"\",0.00,174.00,145.00,972.00,,,,,,\n2015,5,15,\"B6\",\"1494\",\"MCO\",\"HPN\",197.00,188.00,0.00,\"\",0.00,152.00,137.00,972.00,188.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"B6\",\"1494\",\"MCO\",\"HPN\",-3.00,14.00,0.00,\"\",0.00,178.00,154.00,972.00,,,,,,\n2015,5,17,\"B6\",\"1494\",\"MCO\",\"HPN\",-8.00,-12.00,0.00,\"\",0.00,157.00,139.00,972.00,,,,,,\n2015,5,18,\"B6\",\"1494\",\"MCO\",\"HPN\",0.00,,0.00,\"\",1.00,,,972.00,,,,,,\n2015,5,19,\"B6\",\"1494\",\"MCO\",\"HPN\",-1.00,-4.00,0.00,\"\",0.00,158.00,136.00,972.00,,,,,,\n2015,5,20,\"B6\",\"1494\",\"MCO\",\"HPN\",133.00,130.00,0.00,\"\",0.00,158.00,137.00,972.00,130.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"B6\",\"1494\",\"MCO\",\"HPN\",-7.00,-18.00,0.00,\"\",0.00,150.00,131.00,972.00,,,,,,\n2015,5,22,\"B6\",\"1494\",\"MCO\",\"HPN\",-5.00,-17.00,0.00,\"\",0.00,149.00,132.00,972.00,,,,,,\n2015,5,23,\"B6\",\"1494\",\"MCO\",\"HPN\",-6.00,-18.00,0.00,\"\",0.00,149.00,136.00,972.00,,,,,,\n2015,5,24,\"B6\",\"1494\",\"MCO\",\"HPN\",-5.00,-3.00,0.00,\"\",0.00,163.00,142.00,972.00,,,,,,\n2015,5,25,\"B6\",\"1494\",\"MCO\",\"HPN\",-8.00,-15.00,0.00,\"\",0.00,154.00,137.00,972.00,,,,,,\n2015,5,26,\"B6\",\"1494\",\"MCO\",\"HPN\",-9.00,-16.00,0.00,\"\",0.00,154.00,137.00,972.00,,,,,,\n2015,5,27,\"B6\",\"1494\",\"MCO\",\"HPN\",-7.00,-5.00,0.00,\"\",0.00,163.00,151.00,972.00,,,,,,\n2015,5,28,\"B6\",\"1494\",\"MCO\",\"HPN\",-9.00,-5.00,0.00,\"\",0.00,165.00,135.00,972.00,,,,,,\n2015,5,29,\"B6\",\"1494\",\"MCO\",\"HPN\",-6.00,-5.00,0.00,\"\",0.00,162.00,143.00,972.00,,,,,,\n2015,5,30,\"B6\",\"1494\",\"MCO\",\"HPN\",-6.00,-17.00,0.00,\"\",0.00,150.00,135.00,972.00,,,,,,\n2015,5,31,\"B6\",\"1494\",\"MCO\",\"HPN\",-9.00,5.00,0.00,\"\",0.00,175.00,153.00,972.00,,,,,,\n2015,5,1,\"B6\",\"1502\",\"FLL\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,158.00,134.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"1502\",\"FLL\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,159.00,132.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"1502\",\"FLL\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,153.00,135.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"1502\",\"FLL\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,166.00,136.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"1502\",\"FLL\",\"JFK\",-4.00,-3.00,0.00,\"\",0.00,170.00,136.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"1502\",\"FLL\",\"JFK\",,,1.00,\"A\",0.00,,,1069.00,,,,,,\n2015,5,7,\"B6\",\"1502\",\"FLL\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,162.00,143.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"1502\",\"FLL\",\"JFK\",12.00,32.00,0.00,\"\",0.00,189.00,170.00,1069.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,9,\"B6\",\"1502\",\"FLL\",\"JFK\",-4.00,-1.00,0.00,\"\",0.00,172.00,150.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"1502\",\"FLL\",\"JFK\",1.00,7.00,0.00,\"\",0.00,175.00,150.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"1502\",\"FLL\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,167.00,145.00,1069.00,,,,,,\n2015,5,12,\"B6\",\"1502\",\"FLL\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,163.00,142.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"1502\",\"FLL\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,156.00,135.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"1502\",\"FLL\",\"JFK\",-7.00,-1.00,0.00,\"\",0.00,175.00,149.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"1502\",\"FLL\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,152.00,136.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"1502\",\"FLL\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,159.00,143.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"1502\",\"FLL\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,166.00,143.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"1502\",\"FLL\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,163.00,140.00,1069.00,,,,,,\n2015,5,19,\"B6\",\"1502\",\"FLL\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,152.00,139.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"1502\",\"FLL\",\"JFK\",-8.00,-17.00,0.00,\"\",0.00,160.00,140.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"1502\",\"FLL\",\"JFK\",-7.00,-12.00,0.00,\"\",0.00,164.00,135.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"1502\",\"FLL\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,160.00,134.00,1069.00,,,,,,\n2015,5,23,\"B6\",\"1502\",\"FLL\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,165.00,141.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"1502\",\"FLL\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,165.00,146.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"1502\",\"FLL\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,157.00,139.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"1502\",\"FLL\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,157.00,134.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"1502\",\"FLL\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,152.00,136.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"1502\",\"FLL\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,164.00,136.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"1502\",\"FLL\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,162.00,143.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"1502\",\"FLL\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,166.00,144.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"1502\",\"FLL\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,154.00,136.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"1503\",\"JFK\",\"SJU\",1.00,-5.00,0.00,\"\",0.00,222.00,197.00,1598.00,,,,,,\n2015,5,22,\"B6\",\"1503\",\"JFK\",\"SJU\",38.00,18.00,0.00,\"\",0.00,208.00,191.00,1598.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"1503\",\"JFK\",\"SJU\",17.00,-4.00,0.00,\"\",0.00,207.00,191.00,1598.00,,,,,,\n2015,5,24,\"B6\",\"1503\",\"JFK\",\"SJU\",-8.00,-35.00,0.00,\"\",0.00,201.00,185.00,1598.00,,,,,,\n2015,5,25,\"B6\",\"1503\",\"JFK\",\"SJU\",1.00,-14.00,0.00,\"\",0.00,213.00,188.00,1598.00,,,,,,\n2015,5,26,\"B6\",\"1503\",\"JFK\",\"SJU\",-4.00,-28.00,0.00,\"\",0.00,204.00,187.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"1503\",\"JFK\",\"SJU\",-10.00,-19.00,0.00,\"\",0.00,219.00,193.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"1503\",\"JFK\",\"SJU\",0.00,-7.00,0.00,\"\",0.00,221.00,196.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"1503\",\"JFK\",\"SJU\",-4.00,-23.00,0.00,\"\",0.00,209.00,193.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"1503\",\"JFK\",\"SJU\",-20.00,-14.00,0.00,\"\",0.00,234.00,199.00,1598.00,,,,,,\n2015,5,31,\"B6\",\"1503\",\"JFK\",\"SJU\",84.00,72.00,0.00,\"\",0.00,216.00,189.00,1598.00,0.00,3.00,0.00,0.00,69.00,\n2015,5,1,\"B6\",\"1504\",\"SJU\",\"JFK\",-1.00,6.00,0.00,\"\",0.00,246.00,209.00,1598.00,,,,,,\n2015,5,2,\"B6\",\"1504\",\"SJU\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,218.00,199.00,1598.00,,,,,,\n2015,5,3,\"B6\",\"1504\",\"SJU\",\"JFK\",-5.00,-31.00,0.00,\"\",0.00,213.00,195.00,1598.00,,,,,,\n2015,5,4,\"B6\",\"1504\",\"SJU\",\"JFK\",0.00,-26.00,0.00,\"\",0.00,213.00,196.00,1598.00,,,,,,\n2015,5,5,\"B6\",\"1504\",\"SJU\",\"JFK\",4.00,-18.00,0.00,\"\",0.00,217.00,197.00,1598.00,,,,,,\n2015,5,6,\"B6\",\"1504\",\"SJU\",\"JFK\",-11.00,-30.00,0.00,\"\",0.00,220.00,203.00,1598.00,,,,,,\n2015,5,7,\"B6\",\"1504\",\"SJU\",\"JFK\",,,1.00,\"A\",0.00,,,1598.00,,,,,,\n2015,5,8,\"B6\",\"1504\",\"SJU\",\"JFK\",-4.00,0.00,0.00,\"\",0.00,243.00,212.00,1598.00,,,,,,\n2015,5,9,\"B6\",\"1504\",\"SJU\",\"JFK\",,,1.00,\"A\",0.00,,,1598.00,,,,,,\n2015,5,10,\"B6\",\"1504\",\"SJU\",\"JFK\",61.00,38.00,0.00,\"\",0.00,216.00,200.00,1598.00,38.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"B6\",\"1504\",\"SJU\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,219.00,197.00,1598.00,,,,,,\n2015,5,12,\"B6\",\"1504\",\"SJU\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,227.00,208.00,1598.00,,,,,,\n2015,5,13,\"B6\",\"1504\",\"SJU\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,224.00,212.00,1598.00,,,,,,\n2015,5,14,\"B6\",\"1504\",\"SJU\",\"JFK\",-8.00,-11.00,0.00,\"\",0.00,236.00,219.00,1598.00,,,,,,\n2015,5,15,\"B6\",\"1504\",\"SJU\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,233.00,216.00,1598.00,,,,,,\n2015,5,16,\"B6\",\"1504\",\"SJU\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,234.00,218.00,1598.00,,,,,,\n2015,5,17,\"B6\",\"1504\",\"SJU\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,242.00,218.00,1598.00,,,,,,\n2015,5,18,\"B6\",\"1504\",\"SJU\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,234.00,214.00,1598.00,,,,,,\n2015,5,19,\"B6\",\"1504\",\"SJU\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,229.00,210.00,1598.00,,,,,,\n2015,5,20,\"B6\",\"1504\",\"SJU\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,227.00,206.00,1598.00,,,,,,\n2015,5,21,\"B6\",\"1504\",\"SJU\",\"JFK\",121.00,126.00,0.00,\"\",0.00,244.00,229.00,1598.00,0.00,0.00,5.00,0.00,121.00,\n2015,5,22,\"B6\",\"1504\",\"SJU\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,223.00,208.00,1598.00,,,,,,\n2015,5,23,\"B6\",\"1504\",\"SJU\",\"JFK\",5.00,6.00,0.00,\"\",0.00,240.00,216.00,1598.00,,,,,,\n2015,5,24,\"B6\",\"1504\",\"SJU\",\"JFK\",-7.00,-9.00,0.00,\"\",0.00,237.00,216.00,1598.00,,,,,,\n2015,5,25,\"B6\",\"1504\",\"SJU\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,231.00,216.00,1598.00,,,,,,\n2015,5,26,\"B6\",\"1504\",\"SJU\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,224.00,209.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"1504\",\"SJU\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,223.00,208.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"1504\",\"SJU\",\"JFK\",5.00,0.00,0.00,\"\",0.00,234.00,205.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"1504\",\"SJU\",\"JFK\",0.00,-24.00,0.00,\"\",0.00,215.00,205.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"1504\",\"SJU\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,223.00,210.00,1598.00,,,,,,\n2015,5,31,\"B6\",\"1504\",\"SJU\",\"JFK\",-6.00,-30.00,0.00,\"\",0.00,215.00,199.00,1598.00,,,,,,\n2015,5,1,\"B6\",\"1507\",\"JFK\",\"IAD\",-5.00,-5.00,0.00,\"\",0.00,81.00,41.00,228.00,,,,,,\n2015,5,2,\"B6\",\"1507\",\"JFK\",\"IAD\",-8.00,-23.00,0.00,\"\",0.00,66.00,43.00,228.00,,,,,,\n2015,5,3,\"B6\",\"1507\",\"JFK\",\"IAD\",-3.00,-9.00,0.00,\"\",0.00,75.00,43.00,228.00,,,,,,\n2015,5,4,\"B6\",\"1507\",\"JFK\",\"IAD\",-3.00,18.00,0.00,\"\",0.00,102.00,44.00,228.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,5,\"B6\",\"1507\",\"JFK\",\"IAD\",-17.00,-24.00,0.00,\"\",0.00,74.00,43.00,228.00,,,,,,\n2015,5,6,\"B6\",\"1507\",\"JFK\",\"IAD\",2.00,2.00,0.00,\"\",0.00,81.00,45.00,228.00,,,,,,\n2015,5,7,\"B6\",\"1507\",\"JFK\",\"IAD\",1.00,2.00,0.00,\"\",0.00,82.00,41.00,228.00,,,,,,\n2015,5,8,\"B6\",\"1507\",\"JFK\",\"IAD\",171.00,144.00,0.00,\"\",0.00,54.00,38.00,228.00,9.00,0.00,0.00,0.00,135.00,\n2015,5,9,\"B6\",\"1507\",\"JFK\",\"IAD\",-6.00,-23.00,0.00,\"\",0.00,64.00,43.00,228.00,,,,,,\n2015,5,10,\"B6\",\"1507\",\"JFK\",\"IAD\",96.00,79.00,0.00,\"\",0.00,64.00,42.00,228.00,0.00,0.00,27.00,0.00,52.00,\n2015,5,11,\"B6\",\"1507\",\"JFK\",\"IAD\",86.00,75.00,0.00,\"\",0.00,70.00,42.00,228.00,19.00,0.00,0.00,0.00,56.00,\n2015,5,12,\"B6\",\"1507\",\"JFK\",\"IAD\",0.00,6.00,0.00,\"\",0.00,87.00,48.00,228.00,,,,,,\n2015,5,13,\"B6\",\"1507\",\"JFK\",\"IAD\",47.00,42.00,0.00,\"\",0.00,76.00,44.00,228.00,37.00,0.00,0.00,0.00,5.00,\n2015,5,14,\"B6\",\"1507\",\"JFK\",\"IAD\",-5.00,-2.00,0.00,\"\",0.00,84.00,43.00,228.00,,,,,,\n2015,5,15,\"B6\",\"1507\",\"JFK\",\"IAD\",-1.00,-10.00,0.00,\"\",0.00,72.00,42.00,228.00,,,,,,\n2015,5,16,\"B6\",\"1507\",\"JFK\",\"IAD\",29.00,27.00,0.00,\"\",0.00,79.00,41.00,228.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"1507\",\"JFK\",\"IAD\",0.00,-12.00,0.00,\"\",0.00,69.00,40.00,228.00,,,,,,\n2015,5,18,\"B6\",\"1507\",\"JFK\",\"IAD\",204.00,190.00,0.00,\"\",0.00,67.00,44.00,228.00,88.00,0.00,0.00,0.00,102.00,\n2015,5,19,\"B6\",\"1507\",\"JFK\",\"IAD\",-4.00,1.00,0.00,\"\",0.00,86.00,46.00,228.00,,,,,,\n2015,5,20,\"B6\",\"1507\",\"JFK\",\"IAD\",11.00,2.00,0.00,\"\",0.00,72.00,46.00,228.00,,,,,,\n2015,5,21,\"B6\",\"1507\",\"JFK\",\"IAD\",-4.00,-2.00,0.00,\"\",0.00,83.00,45.00,228.00,,,,,,\n2015,5,22,\"B6\",\"1507\",\"JFK\",\"IAD\",32.00,30.00,0.00,\"\",0.00,79.00,45.00,228.00,2.00,0.00,0.00,0.00,28.00,\n2015,5,23,\"B6\",\"1507\",\"JFK\",\"IAD\",-3.00,-9.00,0.00,\"\",0.00,75.00,44.00,228.00,,,,,,\n2015,5,24,\"B6\",\"1507\",\"JFK\",\"IAD\",-4.00,-13.00,0.00,\"\",0.00,72.00,44.00,228.00,,,,,,\n2015,5,25,\"B6\",\"1507\",\"JFK\",\"IAD\",-4.00,-4.00,0.00,\"\",0.00,81.00,43.00,228.00,,,,,,\n2015,5,26,\"B6\",\"1507\",\"JFK\",\"IAD\",-3.00,10.00,0.00,\"\",0.00,94.00,42.00,228.00,,,,,,\n2015,5,27,\"B6\",\"1507\",\"JFK\",\"IAD\",-3.00,-19.00,0.00,\"\",0.00,65.00,44.00,228.00,,,,,,\n2015,5,28,\"B6\",\"1507\",\"JFK\",\"IAD\",-4.00,-13.00,0.00,\"\",0.00,72.00,43.00,228.00,,,,,,\n2015,5,29,\"B6\",\"1507\",\"JFK\",\"IAD\",-10.00,-27.00,0.00,\"\",0.00,64.00,40.00,228.00,,,,,,\n2015,5,30,\"B6\",\"1507\",\"JFK\",\"IAD\",0.00,-14.00,0.00,\"\",0.00,67.00,41.00,228.00,,,,,,\n2015,5,31,\"B6\",\"1507\",\"JFK\",\"IAD\",200.00,218.00,0.00,\"\",0.00,99.00,55.00,228.00,0.00,13.00,18.00,0.00,187.00,\n2015,5,1,\"B6\",\"1515\",\"JFK\",\"SFO\",7.00,-33.00,0.00,\"\",0.00,365.00,337.00,2586.00,,,,,,\n2015,5,3,\"B6\",\"1515\",\"JFK\",\"SFO\",-4.00,-46.00,0.00,\"\",0.00,363.00,334.00,2586.00,,,,,,\n2015,5,4,\"B6\",\"1515\",\"JFK\",\"SFO\",-1.00,9.00,0.00,\"\",0.00,415.00,360.00,2586.00,,,,,,\n2015,5,5,\"B6\",\"1515\",\"JFK\",\"SFO\",1.00,-41.00,0.00,\"\",0.00,363.00,337.00,2586.00,,,,,,\n2015,5,6,\"B6\",\"1515\",\"JFK\",\"SFO\",-5.00,-35.00,0.00,\"\",0.00,375.00,348.00,2586.00,,,,,,\n2015,5,7,\"B6\",\"1515\",\"JFK\",\"SFO\",32.00,-1.00,0.00,\"\",0.00,372.00,334.00,2586.00,,,,,,\n2015,5,8,\"B6\",\"1515\",\"JFK\",\"SFO\",1.00,-10.00,0.00,\"\",0.00,394.00,357.00,2586.00,,,,,,\n2015,5,10,\"B6\",\"1515\",\"JFK\",\"SFO\",0.00,-4.00,0.00,\"\",0.00,401.00,355.00,2586.00,,,,,,\n2015,5,11,\"B6\",\"1515\",\"JFK\",\"SFO\",5.00,7.00,0.00,\"\",0.00,407.00,375.00,2586.00,,,,,,\n2015,5,12,\"B6\",\"1515\",\"JFK\",\"SFO\",35.00,41.00,0.00,\"\",0.00,411.00,372.00,2586.00,21.00,0.00,6.00,0.00,14.00,\n2015,5,13,\"B6\",\"1515\",\"JFK\",\"SFO\",2.00,-28.00,0.00,\"\",0.00,375.00,340.00,2586.00,,,,,,\n2015,5,14,\"B6\",\"1515\",\"JFK\",\"SFO\",-2.00,-36.00,0.00,\"\",0.00,371.00,336.00,2586.00,,,,,,\n2015,5,15,\"B6\",\"1515\",\"JFK\",\"SFO\",-1.00,-12.00,0.00,\"\",0.00,394.00,358.00,2586.00,,,,,,\n2015,5,17,\"B6\",\"1515\",\"JFK\",\"SFO\",-1.00,-26.00,0.00,\"\",0.00,380.00,342.00,2586.00,,,,,,\n2015,5,18,\"B6\",\"1515\",\"JFK\",\"SFO\",182.00,191.00,0.00,\"\",0.00,414.00,347.00,2586.00,14.00,0.00,9.00,0.00,168.00,\n2015,5,19,\"B6\",\"1515\",\"JFK\",\"SFO\",9.00,6.00,0.00,\"\",0.00,402.00,360.00,2586.00,,,,,,\n2015,5,20,\"B6\",\"1515\",\"JFK\",\"SFO\",0.00,-3.00,0.00,\"\",0.00,402.00,363.00,2586.00,,,,,,\n2015,5,21,\"B6\",\"1515\",\"JFK\",\"SFO\",19.00,-2.00,0.00,\"\",0.00,384.00,354.00,2586.00,,,,,,\n2015,5,22,\"B6\",\"1515\",\"JFK\",\"SFO\",-1.00,-17.00,0.00,\"\",0.00,389.00,350.00,2586.00,,,,,,\n2015,5,24,\"B6\",\"1515\",\"JFK\",\"SFO\",-5.00,-24.00,0.00,\"\",0.00,386.00,351.00,2586.00,,,,,,\n2015,5,25,\"B6\",\"1515\",\"JFK\",\"SFO\",11.00,-2.00,0.00,\"\",0.00,392.00,351.00,2586.00,,,,,,\n2015,5,26,\"B6\",\"1515\",\"JFK\",\"SFO\",46.00,19.00,0.00,\"\",0.00,378.00,345.00,2586.00,17.00,0.00,0.00,0.00,2.00,\n2015,5,27,\"B6\",\"1515\",\"JFK\",\"SFO\",200.00,161.00,0.00,\"\",0.00,366.00,341.00,2586.00,5.00,0.00,0.00,0.00,156.00,\n2015,5,28,\"B6\",\"1515\",\"JFK\",\"SFO\",-4.00,-24.00,0.00,\"\",0.00,385.00,343.00,2586.00,,,,,,\n2015,5,29,\"B6\",\"1515\",\"JFK\",\"SFO\",-7.00,-41.00,0.00,\"\",0.00,371.00,341.00,2586.00,,,,,,\n2015,5,31,\"B6\",\"1515\",\"JFK\",\"SFO\",133.00,204.00,0.00,\"\",0.00,476.00,374.00,2586.00,0.00,27.00,71.00,0.00,106.00,\n2015,5,1,\"B6\",\"1516\",\"JFK\",\"SYR\",-5.00,-29.00,0.00,\"\",0.00,71.00,43.00,209.00,,,,,,\n2015,5,2,\"B6\",\"1516\",\"JFK\",\"SYR\",-4.00,-32.00,0.00,\"\",0.00,67.00,42.00,209.00,,,,,,\n2015,5,3,\"B6\",\"1516\",\"JFK\",\"SYR\",8.00,-18.00,0.00,\"\",0.00,69.00,43.00,209.00,,,,,,\n2015,5,4,\"B6\",\"1516\",\"JFK\",\"SYR\",-9.00,-32.00,0.00,\"\",0.00,72.00,42.00,209.00,,,,,,\n2015,5,5,\"B6\",\"1516\",\"JFK\",\"SYR\",0.00,-23.00,0.00,\"\",0.00,72.00,46.00,209.00,,,,,,\n2015,5,6,\"B6\",\"1516\",\"JFK\",\"SYR\",143.00,117.00,0.00,\"\",0.00,69.00,41.00,209.00,117.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"B6\",\"1516\",\"JFK\",\"SYR\",-8.00,-34.00,0.00,\"\",0.00,69.00,43.00,209.00,,,,,,\n2015,5,8,\"B6\",\"1516\",\"JFK\",\"SYR\",27.00,9.00,0.00,\"\",0.00,77.00,41.00,209.00,,,,,,\n2015,5,9,\"B6\",\"1516\",\"JFK\",\"SYR\",0.00,-19.00,0.00,\"\",0.00,76.00,47.00,209.00,,,,,,\n2015,5,10,\"B6\",\"1516\",\"JFK\",\"SYR\",-3.00,-11.00,0.00,\"\",0.00,87.00,44.00,209.00,,,,,,\n2015,5,11,\"B6\",\"1516\",\"JFK\",\"SYR\",27.00,4.00,0.00,\"\",0.00,72.00,42.00,209.00,,,,,,\n2015,5,12,\"B6\",\"1516\",\"JFK\",\"SYR\",,,1.00,\"C\",0.00,,,209.00,,,,,,\n2015,5,13,\"B6\",\"1516\",\"JFK\",\"SYR\",-2.00,-21.00,0.00,\"\",0.00,76.00,46.00,209.00,,,,,,\n2015,5,14,\"B6\",\"1516\",\"JFK\",\"SYR\",4.00,-20.00,0.00,\"\",0.00,71.00,46.00,209.00,,,,,,\n2015,5,15,\"B6\",\"1516\",\"JFK\",\"SYR\",-1.00,-29.00,0.00,\"\",0.00,67.00,42.00,209.00,,,,,,\n2015,5,16,\"B6\",\"1516\",\"JFK\",\"SYR\",135.00,112.00,0.00,\"\",0.00,72.00,42.00,209.00,112.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"B6\",\"1516\",\"JFK\",\"SYR\",-6.00,-25.00,0.00,\"\",0.00,76.00,43.00,209.00,,,,,,\n2015,5,18,\"B6\",\"1516\",\"JFK\",\"SYR\",161.00,213.00,0.00,\"\",0.00,147.00,63.00,209.00,161.00,0.00,52.00,0.00,0.00,\n2015,5,19,\"B6\",\"1516\",\"JFK\",\"SYR\",-4.00,-27.00,0.00,\"\",0.00,72.00,43.00,209.00,,,,,,\n2015,5,20,\"B6\",\"1516\",\"JFK\",\"SYR\",-9.00,-38.00,0.00,\"\",0.00,66.00,48.00,209.00,,,,,,\n2015,5,21,\"B6\",\"1516\",\"JFK\",\"SYR\",-5.00,-28.00,0.00,\"\",0.00,72.00,45.00,209.00,,,,,,\n2015,5,22,\"B6\",\"1516\",\"JFK\",\"SYR\",48.00,18.00,0.00,\"\",0.00,65.00,45.00,209.00,1.00,0.00,0.00,0.00,17.00,\n2015,5,23,\"B6\",\"1516\",\"JFK\",\"SYR\",-7.00,-21.00,0.00,\"\",0.00,81.00,44.00,209.00,,,,,,\n2015,5,24,\"B6\",\"1516\",\"JFK\",\"SYR\",-2.00,-31.00,0.00,\"\",0.00,66.00,45.00,209.00,,,,,,\n2015,5,25,\"B6\",\"1516\",\"JFK\",\"SYR\",-3.00,-24.00,0.00,\"\",0.00,74.00,42.00,209.00,,,,,,\n2015,5,26,\"B6\",\"1516\",\"JFK\",\"SYR\",-4.00,-42.00,0.00,\"\",0.00,57.00,41.00,209.00,,,,,,\n2015,5,27,\"B6\",\"1516\",\"JFK\",\"SYR\",,,1.00,\"C\",0.00,,,209.00,,,,,,\n2015,5,28,\"B6\",\"1516\",\"JFK\",\"SYR\",23.00,0.00,0.00,\"\",0.00,72.00,43.00,209.00,,,,,,\n2015,5,29,\"B6\",\"1516\",\"JFK\",\"SYR\",-3.00,-23.00,0.00,\"\",0.00,75.00,44.00,209.00,,,,,,\n2015,5,30,\"B6\",\"1516\",\"JFK\",\"SYR\",-5.00,-17.00,0.00,\"\",0.00,83.00,40.00,209.00,,,,,,\n2015,5,31,\"B6\",\"1516\",\"JFK\",\"SYR\",,,1.00,\"C\",0.00,,,209.00,,,,,,\n2015,5,1,\"B6\",\"1567\",\"HPN\",\"PBI\",1.00,7.00,0.00,\"\",0.00,172.00,146.00,1056.00,,,,,,\n2015,5,2,\"B6\",\"1567\",\"HPN\",\"PBI\",9.00,-1.00,0.00,\"\",0.00,156.00,142.00,1056.00,,,,,,\n2015,5,3,\"B6\",\"1567\",\"HPN\",\"PBI\",-5.00,-14.00,0.00,\"\",0.00,157.00,142.00,1056.00,,,,,,\n2015,5,4,\"B6\",\"1567\",\"HPN\",\"PBI\",-5.00,1.00,0.00,\"\",0.00,172.00,150.00,1056.00,,,,,,\n2015,5,5,\"B6\",\"1567\",\"HPN\",\"PBI\",-10.00,-9.00,0.00,\"\",0.00,167.00,146.00,1056.00,,,,,,\n2015,5,6,\"B6\",\"1567\",\"HPN\",\"PBI\",-5.00,0.00,0.00,\"\",0.00,171.00,155.00,1056.00,,,,,,\n2015,5,7,\"B6\",\"1567\",\"HPN\",\"PBI\",-4.00,-6.00,0.00,\"\",0.00,164.00,149.00,1056.00,,,,,,\n2015,5,8,\"B6\",\"1567\",\"HPN\",\"PBI\",0.00,-4.00,0.00,\"\",0.00,162.00,144.00,1056.00,,,,,,\n2015,5,9,\"B6\",\"1567\",\"HPN\",\"PBI\",-2.00,-15.00,0.00,\"\",0.00,153.00,136.00,1056.00,,,,,,\n2015,5,10,\"B6\",\"1567\",\"HPN\",\"PBI\",-2.00,4.00,0.00,\"\",0.00,172.00,151.00,1056.00,,,,,,\n2015,5,11,\"B6\",\"1567\",\"HPN\",\"PBI\",-10.00,-13.00,0.00,\"\",0.00,163.00,151.00,1056.00,,,,,,\n2015,5,12,\"B6\",\"1567\",\"HPN\",\"PBI\",11.00,-3.00,0.00,\"\",0.00,152.00,139.00,1056.00,,,,,,\n2015,5,13,\"B6\",\"1567\",\"HPN\",\"PBI\",0.00,-7.00,0.00,\"\",0.00,159.00,146.00,1056.00,,,,,,\n2015,5,14,\"B6\",\"1567\",\"HPN\",\"PBI\",-3.00,-14.00,0.00,\"\",0.00,155.00,140.00,1056.00,,,,,,\n2015,5,15,\"B6\",\"1567\",\"HPN\",\"PBI\",-12.00,-19.00,0.00,\"\",0.00,159.00,143.00,1056.00,,,,,,\n2015,5,16,\"B6\",\"1567\",\"HPN\",\"PBI\",-4.00,-23.00,0.00,\"\",0.00,147.00,136.00,1056.00,,,,,,\n2015,5,17,\"B6\",\"1567\",\"HPN\",\"PBI\",-14.00,-34.00,0.00,\"\",0.00,146.00,135.00,1056.00,,,,,,\n2015,5,18,\"B6\",\"1567\",\"HPN\",\"PBI\",-2.00,-16.00,0.00,\"\",0.00,152.00,137.00,1056.00,,,,,,\n2015,5,19,\"B6\",\"1567\",\"HPN\",\"PBI\",-7.00,-14.00,0.00,\"\",0.00,159.00,141.00,1056.00,,,,,,\n2015,5,20,\"B6\",\"1567\",\"HPN\",\"PBI\",0.00,-15.00,0.00,\"\",0.00,151.00,138.00,1056.00,,,,,,\n2015,5,21,\"B6\",\"1567\",\"HPN\",\"PBI\",1.00,7.00,0.00,\"\",0.00,172.00,146.00,1056.00,,,,,,\n2015,5,22,\"B6\",\"1567\",\"HPN\",\"PBI\",-9.00,0.00,0.00,\"\",0.00,175.00,156.00,1056.00,,,,,,\n2015,5,23,\"B6\",\"1567\",\"HPN\",\"PBI\",-17.00,-29.00,0.00,\"\",0.00,154.00,140.00,1056.00,,,,,,\n2015,5,24,\"B6\",\"1567\",\"HPN\",\"PBI\",-5.00,-19.00,0.00,\"\",0.00,152.00,139.00,1056.00,,,,,,\n2015,5,25,\"B6\",\"1567\",\"HPN\",\"PBI\",-10.00,-11.00,0.00,\"\",0.00,165.00,149.00,1056.00,,,,,,\n2015,5,26,\"B6\",\"1567\",\"HPN\",\"PBI\",-8.00,-12.00,0.00,\"\",0.00,162.00,148.00,1056.00,,,,,,\n2015,5,27,\"B6\",\"1567\",\"HPN\",\"PBI\",-8.00,-12.00,0.00,\"\",0.00,162.00,146.00,1056.00,,,,,,\n2015,5,28,\"B6\",\"1567\",\"HPN\",\"PBI\",-15.00,-29.00,0.00,\"\",0.00,152.00,141.00,1056.00,,,,,,\n2015,5,29,\"B6\",\"1567\",\"HPN\",\"PBI\",-10.00,-9.00,0.00,\"\",0.00,167.00,140.00,1056.00,,,,,,\n2015,5,30,\"B6\",\"1567\",\"HPN\",\"PBI\",-6.00,-12.00,0.00,\"\",0.00,160.00,145.00,1056.00,,,,,,\n2015,5,31,\"B6\",\"1567\",\"HPN\",\"PBI\",-8.00,-26.00,0.00,\"\",0.00,148.00,137.00,1056.00,,,,,,\n2015,5,1,\"B6\",\"1572\",\"FLL\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,160.00,139.00,1076.00,,,,,,\n2015,5,2,\"B6\",\"1572\",\"FLL\",\"LGA\",5.00,-8.00,0.00,\"\",0.00,160.00,137.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"1572\",\"FLL\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,163.00,143.00,1076.00,,,,,,\n2015,5,4,\"B6\",\"1572\",\"FLL\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,154.00,139.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"1572\",\"FLL\",\"LGA\",4.00,-8.00,0.00,\"\",0.00,161.00,138.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"1572\",\"FLL\",\"LGA\",17.00,2.00,0.00,\"\",0.00,158.00,139.00,1076.00,,,,,,\n2015,5,7,\"B6\",\"1572\",\"FLL\",\"LGA\",2.00,4.00,0.00,\"\",0.00,175.00,153.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"1572\",\"FLL\",\"LGA\",34.00,55.00,0.00,\"\",0.00,194.00,150.00,1076.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,9,\"B6\",\"1572\",\"FLL\",\"LGA\",-11.00,-10.00,0.00,\"\",0.00,174.00,156.00,1076.00,,,,,,\n2015,5,10,\"B6\",\"1572\",\"FLL\",\"LGA\",66.00,64.00,0.00,\"\",0.00,171.00,150.00,1076.00,16.00,0.00,0.00,0.00,48.00,\n2015,5,11,\"B6\",\"1572\",\"FLL\",\"LGA\",-6.00,-2.00,0.00,\"\",0.00,177.00,154.00,1076.00,,,,,,\n2015,5,12,\"B6\",\"1572\",\"FLL\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,169.00,147.00,1076.00,,,,,,\n2015,5,13,\"B6\",\"1572\",\"FLL\",\"LGA\",16.00,-4.00,0.00,\"\",0.00,153.00,137.00,1076.00,,,,,,\n2015,5,14,\"B6\",\"1572\",\"FLL\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,167.00,150.00,1076.00,,,,,,\n2015,5,15,\"B6\",\"1572\",\"FLL\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,166.00,141.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"1572\",\"FLL\",\"LGA\",56.00,58.00,0.00,\"\",0.00,175.00,150.00,1076.00,56.00,0.00,2.00,0.00,0.00,\n2015,5,17,\"B6\",\"1572\",\"FLL\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,168.00,142.00,1076.00,,,,,,\n2015,5,18,\"B6\",\"1572\",\"FLL\",\"LGA\",239.00,230.00,0.00,\"\",0.00,164.00,141.00,1076.00,0.00,0.00,230.00,0.00,0.00,\n2015,5,19,\"B6\",\"1572\",\"FLL\",\"LGA\",110.00,94.00,0.00,\"\",0.00,157.00,139.00,1076.00,0.00,0.00,94.00,0.00,0.00,\n2015,5,20,\"B6\",\"1572\",\"FLL\",\"LGA\",-11.00,-30.00,0.00,\"\",0.00,154.00,139.00,1076.00,,,,,,\n2015,5,21,\"B6\",\"1572\",\"FLL\",\"LGA\",-9.00,-23.00,0.00,\"\",0.00,159.00,141.00,1076.00,,,,,,\n2015,5,22,\"B6\",\"1572\",\"FLL\",\"LGA\",-7.00,-28.00,0.00,\"\",0.00,152.00,136.00,1076.00,,,,,,\n2015,5,23,\"B6\",\"1572\",\"FLL\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,165.00,142.00,1076.00,,,,,,\n2015,5,24,\"B6\",\"1572\",\"FLL\",\"LGA\",-13.00,-21.00,0.00,\"\",0.00,165.00,148.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"1572\",\"FLL\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,162.00,141.00,1076.00,,,,,,\n2015,5,26,\"B6\",\"1572\",\"FLL\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,156.00,140.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"1572\",\"FLL\",\"LGA\",-9.00,-31.00,0.00,\"\",0.00,151.00,137.00,1076.00,,,,,,\n2015,5,28,\"B6\",\"1572\",\"FLL\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,165.00,144.00,1076.00,,,,,,\n2015,5,29,\"B6\",\"1572\",\"FLL\",\"LGA\",1.00,-12.00,0.00,\"\",0.00,160.00,141.00,1076.00,,,,,,\n2015,5,30,\"B6\",\"1572\",\"FLL\",\"LGA\",-9.00,-18.00,0.00,\"\",0.00,164.00,147.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"1572\",\"FLL\",\"LGA\",-14.00,-31.00,0.00,\"\",0.00,156.00,142.00,1076.00,,,,,,\n2015,5,1,\"B6\",\"1586\",\"MCO\",\"BUF\",-8.00,-15.00,0.00,\"\",0.00,151.00,128.00,1011.00,,,,,,\n2015,5,2,\"B6\",\"1586\",\"MCO\",\"BUF\",4.00,-4.00,0.00,\"\",0.00,150.00,134.00,1011.00,,,,,,\n2015,5,3,\"B6\",\"1586\",\"MCO\",\"BUF\",-8.00,-16.00,0.00,\"\",0.00,150.00,136.00,1011.00,,,,,,\n2015,5,4,\"B6\",\"1586\",\"MCO\",\"BUF\",-4.00,-17.00,0.00,\"\",0.00,145.00,131.00,1011.00,,,,,,\n2015,5,5,\"B6\",\"1586\",\"MCO\",\"BUF\",9.00,-9.00,0.00,\"\",0.00,140.00,125.00,1011.00,,,,,,\n2015,5,6,\"B6\",\"1586\",\"MCO\",\"BUF\",128.00,112.00,0.00,\"\",0.00,142.00,127.00,1011.00,112.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"B6\",\"1586\",\"MCO\",\"BUF\",65.00,52.00,0.00,\"\",0.00,145.00,131.00,1011.00,52.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"B6\",\"1586\",\"MCO\",\"BUF\",16.00,20.00,0.00,\"\",0.00,162.00,141.00,1011.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,9,\"B6\",\"1586\",\"MCO\",\"BUF\",-1.00,-5.00,0.00,\"\",0.00,154.00,137.00,1011.00,,,,,,\n2015,5,10,\"B6\",\"1586\",\"MCO\",\"BUF\",-3.00,-16.00,0.00,\"\",0.00,145.00,131.00,1011.00,,,,,,\n2015,5,11,\"B6\",\"1586\",\"MCO\",\"BUF\",-4.00,-6.00,0.00,\"\",0.00,156.00,140.00,1011.00,,,,,,\n2015,5,12,\"B6\",\"1586\",\"MCO\",\"BUF\",3.00,-3.00,0.00,\"\",0.00,152.00,133.00,1011.00,,,,,,\n2015,5,13,\"B6\",\"1586\",\"MCO\",\"BUF\",-4.00,5.00,0.00,\"\",0.00,167.00,147.00,1011.00,,,,,,\n2015,5,14,\"B6\",\"1586\",\"MCO\",\"BUF\",6.00,-4.00,0.00,\"\",0.00,148.00,128.00,1011.00,,,,,,\n2015,5,15,\"B6\",\"1586\",\"MCO\",\"BUF\",13.00,8.00,0.00,\"\",0.00,153.00,132.00,1011.00,,,,,,\n2015,5,16,\"B6\",\"1586\",\"MCO\",\"BUF\",-9.00,-16.00,0.00,\"\",0.00,151.00,129.00,1011.00,,,,,,\n2015,5,17,\"B6\",\"1586\",\"MCO\",\"BUF\",19.00,7.00,0.00,\"\",0.00,146.00,130.00,1011.00,,,,,,\n2015,5,18,\"B6\",\"1586\",\"MCO\",\"BUF\",1.00,-12.00,0.00,\"\",0.00,145.00,132.00,1011.00,,,,,,\n2015,5,19,\"B6\",\"1586\",\"MCO\",\"BUF\",34.00,102.00,0.00,\"\",0.00,226.00,150.00,1011.00,5.00,0.00,68.00,0.00,29.00,\n2015,5,20,\"B6\",\"1586\",\"MCO\",\"BUF\",12.00,0.00,0.00,\"\",0.00,146.00,133.00,1011.00,,,,,,\n2015,5,21,\"B6\",\"1586\",\"MCO\",\"BUF\",34.00,27.00,0.00,\"\",0.00,151.00,129.00,1011.00,8.00,0.00,0.00,0.00,19.00,\n2015,5,22,\"B6\",\"1586\",\"MCO\",\"BUF\",14.00,6.00,0.00,\"\",0.00,150.00,133.00,1011.00,,,,,,\n2015,5,23,\"B6\",\"1586\",\"MCO\",\"BUF\",-5.00,-7.00,0.00,\"\",0.00,156.00,138.00,1011.00,,,,,,\n2015,5,24,\"B6\",\"1586\",\"MCO\",\"BUF\",-10.00,-18.00,0.00,\"\",0.00,150.00,133.00,1011.00,,,,,,\n2015,5,25,\"B6\",\"1586\",\"MCO\",\"BUF\",7.00,-11.00,0.00,\"\",0.00,140.00,126.00,1011.00,,,,,,\n2015,5,26,\"B6\",\"1586\",\"MCO\",\"BUF\",-5.00,-24.00,0.00,\"\",0.00,139.00,125.00,1011.00,,,,,,\n2015,5,27,\"B6\",\"1586\",\"MCO\",\"BUF\",2.00,-10.00,0.00,\"\",0.00,146.00,130.00,1011.00,,,,,,\n2015,5,28,\"B6\",\"1586\",\"MCO\",\"BUF\",0.00,4.00,0.00,\"\",0.00,162.00,140.00,1011.00,,,,,,\n2015,5,29,\"B6\",\"1586\",\"MCO\",\"BUF\",-5.00,-3.00,0.00,\"\",0.00,160.00,136.00,1011.00,,,,,,\n2015,5,30,\"B6\",\"1586\",\"MCO\",\"BUF\",1.00,2.00,0.00,\"\",0.00,159.00,138.00,1011.00,,,,,,\n2015,5,31,\"B6\",\"1586\",\"MCO\",\"BUF\",0.00,16.00,0.00,\"\",0.00,174.00,138.00,1011.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,1,\"B6\",\"1615\",\"BOS\",\"BUF\",-6.00,-8.00,0.00,\"\",0.00,81.00,64.00,395.00,,,,,,\n2015,5,2,\"B6\",\"1615\",\"BOS\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,73.00,60.00,395.00,,,,,,\n2015,5,3,\"B6\",\"1615\",\"BOS\",\"BUF\",-7.00,-13.00,0.00,\"\",0.00,77.00,63.00,395.00,,,,,,\n2015,5,4,\"B6\",\"1615\",\"BOS\",\"BUF\",-8.00,-8.00,0.00,\"\",0.00,83.00,67.00,395.00,,,,,,\n2015,5,5,\"B6\",\"1615\",\"BOS\",\"BUF\",-3.00,-1.00,0.00,\"\",0.00,85.00,65.00,395.00,,,,,,\n2015,5,6,\"B6\",\"1615\",\"BOS\",\"BUF\",-6.00,-2.00,0.00,\"\",0.00,87.00,70.00,395.00,,,,,,\n2015,5,7,\"B6\",\"1615\",\"BOS\",\"BUF\",10.00,7.00,0.00,\"\",0.00,80.00,63.00,395.00,,,,,,\n2015,5,8,\"B6\",\"1615\",\"BOS\",\"BUF\",0.00,-2.00,0.00,\"\",0.00,81.00,61.00,395.00,,,,,,\n2015,5,9,\"B6\",\"1615\",\"BOS\",\"BUF\",-1.00,-9.00,0.00,\"\",0.00,75.00,62.00,395.00,,,,,,\n2015,5,10,\"B6\",\"1615\",\"BOS\",\"BUF\",2.00,2.00,0.00,\"\",0.00,83.00,66.00,395.00,,,,,,\n2015,5,11,\"B6\",\"1615\",\"BOS\",\"BUF\",-10.00,-13.00,0.00,\"\",0.00,80.00,63.00,395.00,,,,,,\n2015,5,12,\"B6\",\"1615\",\"BOS\",\"BUF\",-8.00,-1.00,0.00,\"\",0.00,90.00,70.00,395.00,,,,,,\n2015,5,13,\"B6\",\"1615\",\"BOS\",\"BUF\",-9.00,-9.00,0.00,\"\",0.00,83.00,65.00,395.00,,,,,,\n2015,5,14,\"B6\",\"1615\",\"BOS\",\"BUF\",-11.00,-18.00,0.00,\"\",0.00,76.00,62.00,395.00,,,,,,\n2015,5,15,\"B6\",\"1615\",\"BOS\",\"BUF\",-2.00,-11.00,0.00,\"\",0.00,74.00,61.00,395.00,,,,,,\n2015,5,16,\"B6\",\"1615\",\"BOS\",\"BUF\",8.00,5.00,0.00,\"\",0.00,80.00,66.00,395.00,,,,,,\n2015,5,17,\"B6\",\"1615\",\"BOS\",\"BUF\",-10.00,-12.00,0.00,\"\",0.00,81.00,63.00,395.00,,,,,,\n2015,5,18,\"B6\",\"1615\",\"BOS\",\"BUF\",25.00,24.00,0.00,\"\",0.00,82.00,62.00,395.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"B6\",\"1615\",\"BOS\",\"BUF\",14.00,25.00,0.00,\"\",0.00,94.00,69.00,395.00,0.00,0.00,11.00,0.00,14.00,\n2015,5,20,\"B6\",\"1615\",\"BOS\",\"BUF\",0.00,4.00,0.00,\"\",0.00,87.00,68.00,395.00,,,,,,\n2015,5,21,\"B6\",\"1615\",\"BOS\",\"BUF\",-10.00,-10.00,0.00,\"\",0.00,83.00,71.00,395.00,,,,,,\n2015,5,22,\"B6\",\"1615\",\"BOS\",\"BUF\",-8.00,-11.00,0.00,\"\",0.00,80.00,66.00,395.00,,,,,,\n2015,5,23,\"B6\",\"1615\",\"BOS\",\"BUF\",-7.00,-7.00,0.00,\"\",0.00,83.00,66.00,395.00,,,,,,\n2015,5,24,\"B6\",\"1615\",\"BOS\",\"BUF\",-10.00,-4.00,0.00,\"\",0.00,89.00,74.00,395.00,,,,,,\n2015,5,25,\"B6\",\"1615\",\"BOS\",\"BUF\",-4.00,-3.00,0.00,\"\",0.00,84.00,68.00,395.00,,,,,,\n2015,5,26,\"B6\",\"1615\",\"BOS\",\"BUF\",-7.00,-11.00,0.00,\"\",0.00,79.00,64.00,395.00,,,,,,\n2015,5,27,\"B6\",\"1615\",\"BOS\",\"BUF\",-1.00,-1.00,0.00,\"\",0.00,83.00,66.00,395.00,,,,,,\n2015,5,28,\"B6\",\"1615\",\"BOS\",\"BUF\",-7.00,-3.00,0.00,\"\",0.00,87.00,67.00,395.00,,,,,,\n2015,5,29,\"B6\",\"1615\",\"BOS\",\"BUF\",0.00,-4.00,0.00,\"\",0.00,79.00,62.00,395.00,,,,,,\n2015,5,30,\"B6\",\"1615\",\"BOS\",\"BUF\",-7.00,-11.00,0.00,\"\",0.00,79.00,63.00,395.00,,,,,,\n2015,5,31,\"B6\",\"1615\",\"BOS\",\"BUF\",38.00,48.00,0.00,\"\",0.00,93.00,71.00,395.00,16.00,0.00,10.00,0.00,22.00,\n2015,5,1,\"B6\",\"1616\",\"BUF\",\"BOS\",-4.00,-15.00,0.00,\"\",0.00,75.00,63.00,395.00,,,,,,\n2015,5,2,\"B6\",\"1616\",\"BUF\",\"BOS\",-7.00,-19.00,0.00,\"\",0.00,74.00,60.00,395.00,,,,,,\n2015,5,3,\"B6\",\"1616\",\"BUF\",\"BOS\",-6.00,-19.00,0.00,\"\",0.00,73.00,60.00,395.00,,,,,,\n2015,5,4,\"B6\",\"1616\",\"BUF\",\"BOS\",-8.00,-24.00,0.00,\"\",0.00,70.00,57.00,395.00,,,,,,\n2015,5,5,\"B6\",\"1616\",\"BUF\",\"BOS\",0.00,-11.00,0.00,\"\",0.00,75.00,56.00,395.00,,,,,,\n2015,5,6,\"B6\",\"1616\",\"BUF\",\"BOS\",-9.00,-25.00,0.00,\"\",0.00,70.00,57.00,395.00,,,,,,\n2015,5,7,\"B6\",\"1616\",\"BUF\",\"BOS\",40.00,30.00,0.00,\"\",0.00,76.00,58.00,395.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"B6\",\"1616\",\"BUF\",\"BOS\",-3.00,-17.00,0.00,\"\",0.00,72.00,57.00,395.00,,,,,,\n2015,5,9,\"B6\",\"1616\",\"BUF\",\"BOS\",-9.00,-25.00,0.00,\"\",0.00,70.00,54.00,395.00,,,,,,\n2015,5,10,\"B6\",\"1616\",\"BUF\",\"BOS\",-4.00,-20.00,0.00,\"\",0.00,70.00,54.00,395.00,,,,,,\n2015,5,11,\"B6\",\"1616\",\"BUF\",\"BOS\",54.00,51.00,0.00,\"\",0.00,83.00,67.00,395.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,12,\"B6\",\"1616\",\"BUF\",\"BOS\",-7.00,-20.00,0.00,\"\",0.00,73.00,57.00,395.00,,,,,,\n2015,5,13,\"B6\",\"1616\",\"BUF\",\"BOS\",-11.00,-25.00,0.00,\"\",0.00,72.00,56.00,395.00,,,,,,\n2015,5,14,\"B6\",\"1616\",\"BUF\",\"BOS\",-12.00,-27.00,0.00,\"\",0.00,71.00,57.00,395.00,,,,,,\n2015,5,15,\"B6\",\"1616\",\"BUF\",\"BOS\",-2.00,-10.00,0.00,\"\",0.00,78.00,62.00,395.00,,,,,,\n2015,5,16,\"B6\",\"1616\",\"BUF\",\"BOS\",5.00,-12.00,0.00,\"\",0.00,69.00,54.00,395.00,,,,,,\n2015,5,17,\"B6\",\"1616\",\"BUF\",\"BOS\",-5.00,-10.00,0.00,\"\",0.00,81.00,61.00,395.00,,,,,,\n2015,5,18,\"B6\",\"1616\",\"BUF\",\"BOS\",21.00,10.00,0.00,\"\",0.00,75.00,63.00,395.00,,,,,,\n2015,5,19,\"B6\",\"1616\",\"BUF\",\"BOS\",26.00,21.00,0.00,\"\",0.00,81.00,62.00,395.00,0.00,0.00,7.00,0.00,14.00,\n2015,5,20,\"B6\",\"1616\",\"BUF\",\"BOS\",-1.00,-18.00,0.00,\"\",0.00,69.00,56.00,395.00,,,,,,\n2015,5,21,\"B6\",\"1616\",\"BUF\",\"BOS\",-16.00,-34.00,0.00,\"\",0.00,68.00,51.00,395.00,,,,,,\n2015,5,22,\"B6\",\"1616\",\"BUF\",\"BOS\",-2.00,-22.00,0.00,\"\",0.00,66.00,55.00,395.00,,,,,,\n2015,5,23,\"B6\",\"1616\",\"BUF\",\"BOS\",-6.00,-24.00,0.00,\"\",0.00,68.00,53.00,395.00,,,,,,\n2015,5,24,\"B6\",\"1616\",\"BUF\",\"BOS\",-9.00,-26.00,0.00,\"\",0.00,69.00,53.00,395.00,,,,,,\n2015,5,25,\"B6\",\"1616\",\"BUF\",\"BOS\",-9.00,-31.00,0.00,\"\",0.00,64.00,53.00,395.00,,,,,,\n2015,5,26,\"B6\",\"1616\",\"BUF\",\"BOS\",-10.00,-27.00,0.00,\"\",0.00,69.00,57.00,395.00,,,,,,\n2015,5,27,\"B6\",\"1616\",\"BUF\",\"BOS\",28.00,12.00,0.00,\"\",0.00,70.00,58.00,395.00,,,,,,\n2015,5,28,\"B6\",\"1616\",\"BUF\",\"BOS\",-3.00,-23.00,0.00,\"\",0.00,66.00,54.00,395.00,,,,,,\n2015,5,29,\"B6\",\"1616\",\"BUF\",\"BOS\",-14.00,-26.00,0.00,\"\",0.00,74.00,61.00,395.00,,,,,,\n2015,5,30,\"B6\",\"1616\",\"BUF\",\"BOS\",-10.00,-21.00,0.00,\"\",0.00,75.00,61.00,395.00,,,,,,\n2015,5,31,\"B6\",\"1616\",\"BUF\",\"BOS\",217.00,222.00,0.00,\"\",0.00,91.00,61.00,395.00,0.00,0.00,182.00,0.00,40.00,\n2015,5,1,\"B6\",\"1633\",\"BTV\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,72.00,54.00,266.00,,,,,,\n2015,5,2,\"B6\",\"1633\",\"BTV\",\"JFK\",-9.00,-32.00,0.00,\"\",0.00,64.00,50.00,266.00,,,,,,\n2015,5,3,\"B6\",\"1633\",\"BTV\",\"JFK\",-12.00,-28.00,0.00,\"\",0.00,68.00,56.00,266.00,,,,,,\n2015,5,4,\"B6\",\"1633\",\"BTV\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,72.00,55.00,266.00,,,,,,\n2015,5,5,\"B6\",\"1633\",\"BTV\",\"JFK\",-10.00,-20.00,0.00,\"\",0.00,74.00,54.00,266.00,,,,,,\n2015,5,6,\"B6\",\"1633\",\"BTV\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,71.00,52.00,266.00,,,,,,\n2015,5,7,\"B6\",\"1633\",\"BTV\",\"JFK\",39.00,27.00,0.00,\"\",0.00,72.00,60.00,266.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"B6\",\"1633\",\"BTV\",\"JFK\",60.00,48.00,0.00,\"\",0.00,72.00,53.00,266.00,0.00,0.00,0.00,0.00,48.00,\n2015,5,9,\"B6\",\"1633\",\"BTV\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,80.00,60.00,266.00,,,,,,\n2015,5,10,\"B6\",\"1633\",\"BTV\",\"JFK\",-15.00,-28.00,0.00,\"\",0.00,71.00,55.00,266.00,,,,,,\n2015,5,11,\"B6\",\"1633\",\"BTV\",\"JFK\",-8.00,-29.00,0.00,\"\",0.00,63.00,53.00,266.00,,,,,,\n2015,5,12,\"B6\",\"1633\",\"BTV\",\"JFK\",9.00,6.00,0.00,\"\",0.00,81.00,62.00,266.00,,,,,,\n2015,5,13,\"B6\",\"1633\",\"BTV\",\"JFK\",-3.00,1.00,0.00,\"\",0.00,88.00,61.00,266.00,,,,,,\n2015,5,14,\"B6\",\"1633\",\"BTV\",\"JFK\",2.00,-19.00,0.00,\"\",0.00,63.00,47.00,266.00,,,,,,\n2015,5,15,\"B6\",\"1633\",\"BTV\",\"JFK\",5.00,-15.00,0.00,\"\",0.00,64.00,50.00,266.00,,,,,,\n2015,5,16,\"B6\",\"1633\",\"BTV\",\"JFK\",17.00,-5.00,0.00,\"\",0.00,62.00,49.00,266.00,,,,,,\n2015,5,17,\"B6\",\"1633\",\"BTV\",\"JFK\",-9.00,-29.00,0.00,\"\",0.00,64.00,48.00,266.00,,,,,,\n2015,5,18,\"B6\",\"1633\",\"BTV\",\"JFK\",56.00,66.00,0.00,\"\",0.00,94.00,63.00,266.00,0.00,0.00,64.00,0.00,2.00,\n2015,5,19,\"B6\",\"1633\",\"BTV\",\"JFK\",1.00,4.00,0.00,\"\",0.00,87.00,55.00,266.00,,,,,,\n2015,5,20,\"B6\",\"1633\",\"BTV\",\"JFK\",-16.00,-35.00,0.00,\"\",0.00,65.00,52.00,266.00,,,,,,\n2015,5,21,\"B6\",\"1633\",\"BTV\",\"JFK\",-10.00,-25.00,0.00,\"\",0.00,69.00,55.00,266.00,,,,,,\n2015,5,22,\"B6\",\"1633\",\"BTV\",\"JFK\",24.00,15.00,0.00,\"\",0.00,75.00,57.00,266.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,23,\"B6\",\"1633\",\"BTV\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,69.00,53.00,266.00,,,,,,\n2015,5,24,\"B6\",\"1633\",\"BTV\",\"JFK\",-10.00,-26.00,0.00,\"\",0.00,68.00,54.00,266.00,,,,,,\n2015,5,25,\"B6\",\"1633\",\"BTV\",\"JFK\",40.00,33.00,0.00,\"\",0.00,77.00,52.00,266.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,26,\"B6\",\"1633\",\"BTV\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,63.00,49.00,266.00,,,,,,\n2015,5,27,\"B6\",\"1633\",\"BTV\",\"JFK\",-13.00,-21.00,0.00,\"\",0.00,76.00,54.00,266.00,,,,,,\n2015,5,28,\"B6\",\"1633\",\"BTV\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,80.00,58.00,266.00,,,,,,\n2015,5,29,\"B6\",\"1633\",\"BTV\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,64.00,52.00,266.00,,,,,,\n2015,5,30,\"B6\",\"1633\",\"BTV\",\"JFK\",-14.00,-29.00,0.00,\"\",0.00,69.00,52.00,266.00,,,,,,\n2015,5,31,\"B6\",\"1633\",\"BTV\",\"JFK\",-10.00,-14.00,0.00,\"\",0.00,80.00,50.00,266.00,,,,,,\n2015,5,1,\"B6\",\"1634\",\"JFK\",\"BTV\",-4.00,-1.00,0.00,\"\",0.00,80.00,49.00,266.00,,,,,,\n2015,5,2,\"B6\",\"1634\",\"JFK\",\"BTV\",-8.00,-13.00,0.00,\"\",0.00,72.00,45.00,266.00,,,,,,\n2015,5,3,\"B6\",\"1634\",\"JFK\",\"BTV\",-10.00,-13.00,0.00,\"\",0.00,74.00,45.00,266.00,,,,,,\n2015,5,4,\"B6\",\"1634\",\"JFK\",\"BTV\",-6.00,-9.00,0.00,\"\",0.00,74.00,44.00,266.00,,,,,,\n2015,5,5,\"B6\",\"1634\",\"JFK\",\"BTV\",-4.00,-15.00,0.00,\"\",0.00,66.00,44.00,266.00,,,,,,\n2015,5,6,\"B6\",\"1634\",\"JFK\",\"BTV\",-10.00,-9.00,0.00,\"\",0.00,78.00,47.00,266.00,,,,,,\n2015,5,7,\"B6\",\"1634\",\"JFK\",\"BTV\",-6.00,-4.00,0.00,\"\",0.00,79.00,45.00,266.00,,,,,,\n2015,5,8,\"B6\",\"1634\",\"JFK\",\"BTV\",77.00,69.00,0.00,\"\",0.00,69.00,47.00,266.00,4.00,0.00,0.00,0.00,65.00,\n2015,5,9,\"B6\",\"1634\",\"JFK\",\"BTV\",-1.00,10.00,0.00,\"\",0.00,88.00,44.00,266.00,,,,,,\n2015,5,10,\"B6\",\"1634\",\"JFK\",\"BTV\",-8.00,-21.00,0.00,\"\",0.00,64.00,43.00,266.00,,,,,,\n2015,5,11,\"B6\",\"1634\",\"JFK\",\"BTV\",-13.00,-11.00,0.00,\"\",0.00,79.00,44.00,266.00,,,,,,\n2015,5,12,\"B6\",\"1634\",\"JFK\",\"BTV\",3.00,-14.00,0.00,\"\",0.00,60.00,44.00,266.00,,,,,,\n2015,5,13,\"B6\",\"1634\",\"JFK\",\"BTV\",-10.00,4.00,0.00,\"\",0.00,91.00,48.00,266.00,,,,,,\n2015,5,14,\"B6\",\"1634\",\"JFK\",\"BTV\",-1.00,2.00,0.00,\"\",0.00,80.00,49.00,266.00,,,,,,\n2015,5,15,\"B6\",\"1634\",\"JFK\",\"BTV\",-1.00,1.00,0.00,\"\",0.00,79.00,42.00,266.00,,,,,,\n2015,5,16,\"B6\",\"1634\",\"JFK\",\"BTV\",-6.00,23.00,0.00,\"\",0.00,106.00,45.00,266.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,17,\"B6\",\"1634\",\"JFK\",\"BTV\",-2.00,-9.00,0.00,\"\",0.00,70.00,45.00,266.00,,,,,,\n2015,5,18,\"B6\",\"1634\",\"JFK\",\"BTV\",-9.00,8.00,0.00,\"\",0.00,94.00,44.00,266.00,,,,,,\n2015,5,19,\"B6\",\"1634\",\"JFK\",\"BTV\",1.00,8.00,0.00,\"\",0.00,84.00,52.00,266.00,,,,,,\n2015,5,20,\"B6\",\"1634\",\"JFK\",\"BTV\",-20.00,-18.00,0.00,\"\",0.00,79.00,41.00,266.00,,,,,,\n2015,5,21,\"B6\",\"1634\",\"JFK\",\"BTV\",2.00,-9.00,0.00,\"\",0.00,66.00,47.00,266.00,,,,,,\n2015,5,22,\"B6\",\"1634\",\"JFK\",\"BTV\",-5.00,34.00,0.00,\"\",0.00,116.00,46.00,266.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,23,\"B6\",\"1634\",\"JFK\",\"BTV\",-3.00,-14.00,0.00,\"\",0.00,66.00,49.00,266.00,,,,,,\n2015,5,24,\"B6\",\"1634\",\"JFK\",\"BTV\",-10.00,-20.00,0.00,\"\",0.00,67.00,49.00,266.00,,,,,,\n2015,5,25,\"B6\",\"1634\",\"JFK\",\"BTV\",-4.00,-11.00,0.00,\"\",0.00,70.00,43.00,266.00,,,,,,\n2015,5,26,\"B6\",\"1634\",\"JFK\",\"BTV\",-7.00,-17.00,0.00,\"\",0.00,67.00,42.00,266.00,,,,,,\n2015,5,27,\"B6\",\"1634\",\"JFK\",\"BTV\",-5.00,-11.00,0.00,\"\",0.00,71.00,41.00,266.00,,,,,,\n2015,5,28,\"B6\",\"1634\",\"JFK\",\"BTV\",11.00,0.00,0.00,\"\",0.00,66.00,42.00,266.00,,,,,,\n2015,5,29,\"B6\",\"1634\",\"JFK\",\"BTV\",-5.00,-4.00,0.00,\"\",0.00,78.00,43.00,266.00,,,,,,\n2015,5,30,\"B6\",\"1634\",\"JFK\",\"BTV\",-6.00,-18.00,0.00,\"\",0.00,65.00,42.00,266.00,,,,,,\n2015,5,31,\"B6\",\"1634\",\"JFK\",\"BTV\",-9.00,-18.00,0.00,\"\",0.00,68.00,43.00,266.00,,,,,,\n2015,5,1,\"B6\",\"2301\",\"BUF\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,71.00,59.00,301.00,,,,,,\n2015,5,2,\"B6\",\"2301\",\"BUF\",\"JFK\",-10.00,-16.00,0.00,\"\",0.00,72.00,58.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2301\",\"BUF\",\"JFK\",12.00,11.00,0.00,\"\",0.00,77.00,59.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2301\",\"BUF\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,72.00,55.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2301\",\"BUF\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,68.00,52.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2301\",\"BUF\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,64.00,52.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2301\",\"BUF\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,70.00,59.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2301\",\"BUF\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,69.00,53.00,301.00,,,,,,\n2015,5,9,\"B6\",\"2301\",\"BUF\",\"JFK\",25.00,13.00,0.00,\"\",0.00,66.00,53.00,301.00,,,,,,\n2015,5,10,\"B6\",\"2301\",\"BUF\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,70.00,55.00,301.00,,,,,,\n2015,5,11,\"B6\",\"2301\",\"BUF\",\"JFK\",-5.00,-5.00,0.00,\"\",0.00,78.00,61.00,301.00,,,,,,\n2015,5,12,\"B6\",\"2301\",\"BUF\",\"JFK\",24.00,21.00,0.00,\"\",0.00,75.00,57.00,301.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,13,\"B6\",\"2301\",\"BUF\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,67.00,54.00,301.00,,,,,,\n2015,5,14,\"B6\",\"2301\",\"BUF\",\"JFK\",-13.00,-23.00,0.00,\"\",0.00,68.00,56.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2301\",\"BUF\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,72.00,53.00,301.00,,,,,,\n2015,5,16,\"B6\",\"2301\",\"BUF\",\"JFK\",72.00,62.00,0.00,\"\",0.00,68.00,54.00,301.00,1.00,0.00,0.00,0.00,61.00,\n2015,5,17,\"B6\",\"2301\",\"BUF\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,74.00,55.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2301\",\"BUF\",\"JFK\",9.00,9.00,0.00,\"\",0.00,78.00,63.00,301.00,,,,,,\n2015,5,19,\"B6\",\"2301\",\"BUF\",\"JFK\",27.00,15.00,0.00,\"\",0.00,66.00,50.00,301.00,1.00,0.00,0.00,0.00,14.00,\n2015,5,20,\"B6\",\"2301\",\"BUF\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,67.00,54.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2301\",\"BUF\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,74.00,59.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2301\",\"BUF\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,74.00,54.00,301.00,,,,,,\n2015,5,23,\"B6\",\"2301\",\"BUF\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,62.00,49.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2301\",\"BUF\",\"JFK\",-8.00,-24.00,0.00,\"\",0.00,62.00,51.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2301\",\"BUF\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,67.00,53.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2301\",\"BUF\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,64.00,53.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2301\",\"BUF\",\"JFK\",-10.00,-15.00,0.00,\"\",0.00,73.00,60.00,301.00,,,,,,\n2015,5,28,\"B6\",\"2301\",\"BUF\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,66.00,51.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2301\",\"BUF\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,73.00,61.00,301.00,,,,,,\n2015,5,30,\"B6\",\"2301\",\"BUF\",\"JFK\",-3.00,-6.00,0.00,\"\",0.00,75.00,58.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2301\",\"BUF\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,68.00,56.00,301.00,,,,,,\n2015,5,1,\"B6\",\"2302\",\"JFK\",\"BUF\",-6.00,-39.00,0.00,\"\",0.00,78.00,52.00,301.00,,,,,,\n2015,5,2,\"B6\",\"2302\",\"JFK\",\"BUF\",-2.00,-31.00,0.00,\"\",0.00,82.00,50.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2302\",\"JFK\",\"BUF\",-2.00,-35.00,0.00,\"\",0.00,78.00,50.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2302\",\"JFK\",\"BUF\",0.00,-30.00,0.00,\"\",0.00,81.00,52.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2302\",\"JFK\",\"BUF\",-1.00,-32.00,0.00,\"\",0.00,80.00,57.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2302\",\"JFK\",\"BUF\",-7.00,-32.00,0.00,\"\",0.00,86.00,49.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2302\",\"JFK\",\"BUF\",-3.00,-30.00,0.00,\"\",0.00,84.00,52.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2302\",\"JFK\",\"BUF\",44.00,23.00,0.00,\"\",0.00,90.00,51.00,301.00,9.00,0.00,0.00,0.00,14.00,\n2015,5,9,\"B6\",\"2302\",\"JFK\",\"BUF\",4.00,-25.00,0.00,\"\",0.00,82.00,52.00,301.00,,,,,,\n2015,5,10,\"B6\",\"2302\",\"JFK\",\"BUF\",-2.00,-24.00,0.00,\"\",0.00,89.00,54.00,301.00,,,,,,\n2015,5,11,\"B6\",\"2302\",\"JFK\",\"BUF\",14.00,-20.00,0.00,\"\",0.00,77.00,53.00,301.00,,,,,,\n2015,5,12,\"B6\",\"2302\",\"JFK\",\"BUF\",2.00,-28.00,0.00,\"\",0.00,81.00,60.00,301.00,,,,,,\n2015,5,13,\"B6\",\"2302\",\"JFK\",\"BUF\",-7.00,-40.00,0.00,\"\",0.00,78.00,58.00,301.00,,,,,,\n2015,5,14,\"B6\",\"2302\",\"JFK\",\"BUF\",-8.00,-41.00,0.00,\"\",0.00,78.00,53.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2302\",\"JFK\",\"BUF\",-6.00,-38.00,0.00,\"\",0.00,79.00,54.00,301.00,,,,,,\n2015,5,16,\"B6\",\"2302\",\"JFK\",\"BUF\",-4.00,-29.00,0.00,\"\",0.00,86.00,55.00,301.00,,,,,,\n2015,5,1,\"B6\",\"1371\",\"LGA\",\"FLL\",42.00,53.00,0.00,\"\",0.00,179.00,150.00,1076.00,42.00,0.00,11.00,0.00,0.00,\n2015,5,2,\"B6\",\"1371\",\"LGA\",\"FLL\",-7.00,-10.00,0.00,\"\",0.00,165.00,145.00,1076.00,,,,,,\n2015,5,3,\"B6\",\"1371\",\"LGA\",\"FLL\",1.00,-6.00,0.00,\"\",0.00,161.00,143.00,1076.00,,,,,,\n2015,5,4,\"B6\",\"1371\",\"LGA\",\"FLL\",-11.00,-9.00,0.00,\"\",0.00,170.00,151.00,1076.00,,,,,,\n2015,5,5,\"B6\",\"1371\",\"LGA\",\"FLL\",-12.00,-1.00,0.00,\"\",0.00,179.00,159.00,1076.00,,,,,,\n2015,5,6,\"B6\",\"1371\",\"LGA\",\"FLL\",42.00,36.00,0.00,\"\",0.00,162.00,144.00,1076.00,16.00,0.00,0.00,0.00,20.00,\n2015,5,7,\"B6\",\"1371\",\"LGA\",\"FLL\",-9.00,-11.00,0.00,\"\",0.00,166.00,141.00,1076.00,,,,,,\n2015,5,8,\"B6\",\"1371\",\"LGA\",\"FLL\",3.00,2.00,0.00,\"\",0.00,167.00,145.00,1076.00,,,,,,\n2015,5,9,\"B6\",\"1371\",\"LGA\",\"FLL\",-11.00,-7.00,0.00,\"\",0.00,172.00,151.00,1076.00,,,,,,\n2015,5,10,\"B6\",\"1371\",\"LGA\",\"FLL\",-10.00,14.00,0.00,\"\",0.00,192.00,148.00,1076.00,,,,,,\n2015,5,11,\"B6\",\"1371\",\"LGA\",\"FLL\",110.00,108.00,0.00,\"\",0.00,166.00,143.00,1076.00,0.00,0.00,0.00,0.00,108.00,\n2015,5,12,\"B6\",\"1371\",\"LGA\",\"FLL\",-10.00,-19.00,0.00,\"\",0.00,159.00,144.00,1076.00,,,,,,\n2015,5,13,\"B6\",\"1371\",\"LGA\",\"FLL\",-3.00,1.00,0.00,\"\",0.00,172.00,137.00,1076.00,,,,,,\n2015,5,14,\"B6\",\"1371\",\"LGA\",\"FLL\",-10.00,-17.00,0.00,\"\",0.00,161.00,140.00,1076.00,,,,,,\n2015,5,15,\"B6\",\"1371\",\"LGA\",\"FLL\",-6.00,-8.00,0.00,\"\",0.00,166.00,141.00,1076.00,,,,,,\n2015,5,16,\"B6\",\"1371\",\"LGA\",\"FLL\",-10.00,20.00,0.00,\"\",0.00,198.00,147.00,1076.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,17,\"B6\",\"1371\",\"LGA\",\"FLL\",-5.00,-16.00,0.00,\"\",0.00,157.00,137.00,1076.00,,,,,,\n2015,5,18,\"B6\",\"1371\",\"LGA\",\"FLL\",148.00,156.00,0.00,\"\",0.00,176.00,148.00,1076.00,0.00,0.00,8.00,0.00,148.00,\n2015,5,19,\"B6\",\"1371\",\"LGA\",\"FLL\",84.00,74.00,0.00,\"\",0.00,158.00,142.00,1076.00,0.00,0.00,0.00,0.00,74.00,\n2015,5,20,\"B6\",\"1371\",\"LGA\",\"FLL\",-10.00,20.00,0.00,\"\",0.00,198.00,143.00,1076.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,21,\"B6\",\"1371\",\"LGA\",\"FLL\",-3.00,6.00,0.00,\"\",0.00,177.00,159.00,1076.00,,,,,,\n2015,5,22,\"B6\",\"1371\",\"LGA\",\"FLL\",-10.00,-16.00,0.00,\"\",0.00,162.00,143.00,1076.00,,,,,,\n2015,5,23,\"B6\",\"1371\",\"LGA\",\"FLL\",1.00,20.00,0.00,\"\",0.00,187.00,140.00,1076.00,1.00,0.00,19.00,0.00,0.00,\n2015,5,24,\"B6\",\"1371\",\"LGA\",\"FLL\",-3.00,-15.00,0.00,\"\",0.00,156.00,138.00,1076.00,,,,,,\n2015,5,25,\"B6\",\"1371\",\"LGA\",\"FLL\",1.00,2.00,0.00,\"\",0.00,169.00,145.00,1076.00,,,,,,\n2015,5,26,\"B6\",\"1371\",\"LGA\",\"FLL\",-8.00,-12.00,0.00,\"\",0.00,164.00,142.00,1076.00,,,,,,\n2015,5,27,\"B6\",\"1371\",\"LGA\",\"FLL\",231.00,215.00,0.00,\"\",0.00,152.00,138.00,1076.00,0.00,0.00,0.00,0.00,215.00,\n2015,5,28,\"B6\",\"1371\",\"LGA\",\"FLL\",-1.00,26.00,0.00,\"\",0.00,195.00,136.00,1076.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,29,\"B6\",\"1371\",\"LGA\",\"FLL\",-14.00,-21.00,0.00,\"\",0.00,161.00,138.00,1076.00,,,,,,\n2015,5,30,\"B6\",\"1371\",\"LGA\",\"FLL\",-8.00,-18.00,0.00,\"\",0.00,158.00,141.00,1076.00,,,,,,\n2015,5,31,\"B6\",\"1371\",\"LGA\",\"FLL\",281.00,276.00,0.00,\"\",0.00,163.00,140.00,1076.00,0.00,0.00,0.00,0.00,276.00,\n2015,5,1,\"B6\",\"1373\",\"JFK\",\"CHS\",17.00,3.00,0.00,\"\",0.00,121.00,91.00,636.00,,,,,,\n2015,5,2,\"B6\",\"1373\",\"JFK\",\"CHS\",-7.00,-17.00,0.00,\"\",0.00,121.00,90.00,636.00,,,,,,\n2015,5,3,\"B6\",\"1373\",\"JFK\",\"CHS\",-3.00,-21.00,0.00,\"\",0.00,117.00,89.00,636.00,,,,,,\n2015,5,4,\"B6\",\"1373\",\"JFK\",\"CHS\",-9.00,-27.00,0.00,\"\",0.00,117.00,87.00,636.00,,,,,,\n2015,5,1,\"B6\",\"1639\",\"LGA\",\"RSW\",-5.00,5.00,0.00,\"\",0.00,196.00,162.00,1080.00,,,,,,\n2015,5,2,\"B6\",\"1639\",\"LGA\",\"RSW\",-12.00,-27.00,0.00,\"\",0.00,171.00,150.00,1080.00,,,,,,\n2015,5,3,\"B6\",\"1639\",\"LGA\",\"RSW\",-5.00,9.00,0.00,\"\",0.00,200.00,160.00,1080.00,,,,,,\n2015,5,4,\"B6\",\"1639\",\"LGA\",\"RSW\",-8.00,-6.00,0.00,\"\",0.00,188.00,152.00,1080.00,,,,,,\n2015,5,5,\"B6\",\"1639\",\"LGA\",\"RSW\",-13.00,-10.00,0.00,\"\",0.00,189.00,159.00,1080.00,,,,,,\n2015,5,6,\"B6\",\"1639\",\"LGA\",\"RSW\",-6.00,14.00,0.00,\"\",0.00,206.00,161.00,1080.00,,,,,,\n2015,5,7,\"B6\",\"1639\",\"LGA\",\"RSW\",-2.00,-17.00,0.00,\"\",0.00,171.00,150.00,1080.00,,,,,,\n2015,5,8,\"B6\",\"1639\",\"LGA\",\"RSW\",0.00,18.00,0.00,\"\",0.00,204.00,154.00,1080.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,9,\"B6\",\"1639\",\"LGA\",\"RSW\",30.00,39.00,0.00,\"\",0.00,195.00,140.00,1080.00,30.00,0.00,9.00,0.00,0.00,\n2015,5,10,\"B6\",\"1639\",\"LGA\",\"RSW\",-11.00,-22.00,0.00,\"\",0.00,175.00,151.00,1080.00,,,,,,\n2015,5,11,\"B6\",\"1639\",\"LGA\",\"RSW\",-5.00,-1.00,0.00,\"\",0.00,190.00,154.00,1080.00,,,,,,\n2015,5,12,\"B6\",\"1639\",\"LGA\",\"RSW\",-10.00,-21.00,0.00,\"\",0.00,175.00,158.00,1080.00,,,,,,\n2015,5,13,\"B6\",\"1639\",\"LGA\",\"RSW\",-6.00,24.00,0.00,\"\",0.00,216.00,162.00,1080.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,14,\"B6\",\"1639\",\"LGA\",\"RSW\",20.00,37.00,0.00,\"\",0.00,203.00,151.00,1080.00,20.00,0.00,17.00,0.00,0.00,\n2015,5,15,\"B6\",\"1639\",\"LGA\",\"RSW\",-5.00,-10.00,0.00,\"\",0.00,181.00,156.00,1080.00,,,,,,\n2015,5,16,\"B6\",\"1639\",\"LGA\",\"RSW\",9.00,4.00,0.00,\"\",0.00,181.00,146.00,1080.00,,,,,,\n2015,5,17,\"B6\",\"1639\",\"LGA\",\"RSW\",-6.00,0.00,0.00,\"\",0.00,192.00,149.00,1080.00,,,,,,\n2015,5,18,\"B6\",\"1639\",\"LGA\",\"RSW\",34.00,17.00,0.00,\"\",0.00,169.00,150.00,1080.00,5.00,0.00,0.00,0.00,12.00,\n2015,5,19,\"B6\",\"1639\",\"LGA\",\"RSW\",-9.00,-22.00,0.00,\"\",0.00,173.00,147.00,1080.00,,,,,,\n2015,5,20,\"B6\",\"1639\",\"LGA\",\"RSW\",-5.00,14.00,0.00,\"\",0.00,205.00,150.00,1080.00,,,,,,\n2015,5,21,\"B6\",\"1639\",\"LGA\",\"RSW\",24.00,11.00,0.00,\"\",0.00,173.00,151.00,1080.00,,,,,,\n2015,5,22,\"B6\",\"1639\",\"LGA\",\"RSW\",-8.00,5.00,0.00,\"\",0.00,199.00,158.00,1080.00,,,,,,\n2015,5,23,\"B6\",\"1639\",\"LGA\",\"RSW\",-7.00,-21.00,0.00,\"\",0.00,172.00,152.00,1080.00,,,,,,\n2015,5,24,\"B6\",\"1639\",\"LGA\",\"RSW\",-8.00,-26.00,0.00,\"\",0.00,168.00,148.00,1080.00,,,,,,\n2015,5,25,\"B6\",\"1639\",\"LGA\",\"RSW\",-10.00,-28.00,0.00,\"\",0.00,168.00,149.00,1080.00,,,,,,\n2015,5,26,\"B6\",\"1639\",\"LGA\",\"RSW\",-6.00,-8.00,0.00,\"\",0.00,184.00,154.00,1080.00,,,,,,\n2015,5,27,\"B6\",\"1639\",\"LGA\",\"RSW\",7.00,14.00,0.00,\"\",0.00,193.00,160.00,1080.00,,,,,,\n2015,5,28,\"B6\",\"1639\",\"LGA\",\"RSW\",-7.00,-2.00,0.00,\"\",0.00,191.00,153.00,1080.00,,,,,,\n2015,5,29,\"B6\",\"1639\",\"LGA\",\"RSW\",-13.00,-8.00,0.00,\"\",0.00,191.00,149.00,1080.00,,,,,,\n2015,5,30,\"B6\",\"1639\",\"LGA\",\"RSW\",-2.00,-20.00,0.00,\"\",0.00,168.00,147.00,1080.00,,,,,,\n2015,5,31,\"B6\",\"1639\",\"LGA\",\"RSW\",-1.00,-3.00,0.00,\"\",0.00,184.00,155.00,1080.00,,,,,,\n2015,5,1,\"B6\",\"1640\",\"RSW\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,157.00,139.00,1080.00,,,,,,\n2015,5,2,\"B6\",\"1640\",\"RSW\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,162.00,146.00,1080.00,,,,,,\n2015,5,3,\"B6\",\"1640\",\"RSW\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,166.00,146.00,1080.00,,,,,,\n2015,5,4,\"B6\",\"1640\",\"RSW\",\"LGA\",2.00,-18.00,0.00,\"\",0.00,154.00,138.00,1080.00,,,,,,\n2015,5,5,\"B6\",\"1640\",\"RSW\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,154.00,139.00,1080.00,,,,,,\n2015,5,6,\"B6\",\"1640\",\"RSW\",\"LGA\",17.00,-9.00,0.00,\"\",0.00,148.00,133.00,1080.00,,,,,,\n2015,5,7,\"B6\",\"1640\",\"RSW\",\"LGA\",6.00,-5.00,0.00,\"\",0.00,163.00,147.00,1080.00,,,,,,\n2015,5,8,\"B6\",\"1640\",\"RSW\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,158.00,142.00,1080.00,,,,,,\n2015,5,9,\"B6\",\"1640\",\"RSW\",\"LGA\",1.00,2.00,0.00,\"\",0.00,175.00,153.00,1080.00,,,,,,\n2015,5,10,\"B6\",\"1640\",\"RSW\",\"LGA\",-10.00,-20.00,0.00,\"\",0.00,164.00,147.00,1080.00,,,,,,\n2015,5,11,\"B6\",\"1640\",\"RSW\",\"LGA\",28.00,104.00,0.00,\"\",0.00,250.00,148.00,1080.00,0.00,0.00,82.00,0.00,22.00,\n2015,5,12,\"B6\",\"1640\",\"RSW\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,163.00,138.00,1080.00,,,,,,\n2015,5,13,\"B6\",\"1640\",\"RSW\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,165.00,148.00,1080.00,,,,,,\n2015,5,14,\"B6\",\"1640\",\"RSW\",\"LGA\",55.00,38.00,0.00,\"\",0.00,157.00,142.00,1080.00,7.00,0.00,0.00,0.00,31.00,\n2015,5,15,\"B6\",\"1640\",\"RSW\",\"LGA\",15.00,8.00,0.00,\"\",0.00,167.00,146.00,1080.00,,,,,,\n2015,5,16,\"B6\",\"1640\",\"RSW\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,162.00,142.00,1080.00,,,,,,\n2015,5,17,\"B6\",\"1640\",\"RSW\",\"LGA\",-12.00,-27.00,0.00,\"\",0.00,159.00,142.00,1080.00,,,,,,\n2015,5,18,\"B6\",\"1640\",\"RSW\",\"LGA\",157.00,169.00,0.00,\"\",0.00,186.00,172.00,1080.00,0.00,0.00,169.00,0.00,0.00,\n2015,5,19,\"B6\",\"1640\",\"RSW\",\"LGA\",124.00,129.00,0.00,\"\",0.00,179.00,155.00,1080.00,0.00,0.00,108.00,0.00,21.00,\n2015,5,20,\"B6\",\"1640\",\"RSW\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,167.00,147.00,1080.00,,,,,,\n2015,5,21,\"B6\",\"1640\",\"RSW\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,173.00,155.00,1080.00,,,,,,\n2015,5,22,\"B6\",\"1640\",\"RSW\",\"LGA\",-10.00,-29.00,0.00,\"\",0.00,155.00,136.00,1080.00,,,,,,\n2015,5,23,\"B6\",\"1640\",\"RSW\",\"LGA\",-10.00,-28.00,0.00,\"\",0.00,156.00,142.00,1080.00,,,,,,\n2015,5,24,\"B6\",\"1640\",\"RSW\",\"LGA\",-8.00,-27.00,0.00,\"\",0.00,155.00,142.00,1080.00,,,,,,\n2015,5,25,\"B6\",\"1640\",\"RSW\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,156.00,137.00,1080.00,,,,,,\n2015,5,26,\"B6\",\"1640\",\"RSW\",\"LGA\",-8.00,-28.00,0.00,\"\",0.00,154.00,138.00,1080.00,,,,,,\n2015,5,27,\"B6\",\"1640\",\"RSW\",\"LGA\",123.00,177.00,0.00,\"\",0.00,228.00,195.00,1080.00,0.00,0.00,177.00,0.00,0.00,\n2015,5,28,\"B6\",\"1640\",\"RSW\",\"LGA\",53.00,36.00,0.00,\"\",0.00,157.00,140.00,1080.00,15.00,0.00,0.00,0.00,21.00,\n2015,5,29,\"B6\",\"1640\",\"RSW\",\"LGA\",2.00,-7.00,0.00,\"\",0.00,165.00,148.00,1080.00,,,,,,\n2015,5,30,\"B6\",\"1640\",\"RSW\",\"LGA\",1.00,-17.00,0.00,\"\",0.00,156.00,144.00,1080.00,,,,,,\n2015,5,31,\"B6\",\"1640\",\"RSW\",\"LGA\",,,1.00,\"C\",0.00,,,1080.00,,,,,,\n2015,5,1,\"B6\",\"1677\",\"JFK\",\"JAX\",0.00,-38.00,0.00,\"\",0.00,134.00,112.00,828.00,,,,,,\n2015,5,2,\"B6\",\"1677\",\"JFK\",\"JAX\",-10.00,-41.00,0.00,\"\",0.00,141.00,114.00,828.00,,,,,,\n2015,5,3,\"B6\",\"1677\",\"JFK\",\"JAX\",-8.00,-40.00,0.00,\"\",0.00,140.00,113.00,828.00,,,,,,\n2015,5,4,\"B6\",\"1677\",\"JFK\",\"JAX\",2.00,-31.00,0.00,\"\",0.00,139.00,114.00,828.00,,,,,,\n2015,5,5,\"B6\",\"1677\",\"JFK\",\"JAX\",2.00,-29.00,0.00,\"\",0.00,141.00,121.00,828.00,,,,,,\n2015,5,6,\"B6\",\"1677\",\"JFK\",\"JAX\",-8.00,-31.00,0.00,\"\",0.00,149.00,114.00,828.00,,,,,,\n2015,5,7,\"B6\",\"1677\",\"JFK\",\"JAX\",-3.00,-30.00,0.00,\"\",0.00,145.00,110.00,828.00,,,,,,\n2015,5,8,\"B6\",\"1677\",\"JFK\",\"JAX\",104.00,85.00,0.00,\"\",0.00,153.00,107.00,828.00,51.00,0.00,0.00,0.00,34.00,\n2015,5,9,\"B6\",\"1677\",\"JFK\",\"JAX\",19.00,-3.00,0.00,\"\",0.00,150.00,113.00,828.00,,,,,,\n2015,5,10,\"B6\",\"1677\",\"JFK\",\"JAX\",-4.00,-31.00,0.00,\"\",0.00,145.00,116.00,828.00,,,,,,\n2015,5,11,\"B6\",\"1677\",\"JFK\",\"JAX\",1.00,-30.00,0.00,\"\",0.00,141.00,111.00,828.00,,,,,,\n2015,5,12,\"B6\",\"1677\",\"JFK\",\"JAX\",-5.00,-26.00,0.00,\"\",0.00,151.00,119.00,828.00,,,,,,\n2015,5,13,\"B6\",\"1677\",\"JFK\",\"JAX\",30.00,7.00,0.00,\"\",0.00,149.00,109.00,828.00,,,,,,\n2015,5,14,\"B6\",\"1677\",\"JFK\",\"JAX\",-7.00,-37.00,0.00,\"\",0.00,142.00,115.00,828.00,,,,,,\n2015,5,15,\"B6\",\"1677\",\"JFK\",\"JAX\",-4.00,-35.00,0.00,\"\",0.00,141.00,114.00,828.00,,,,,,\n2015,5,16,\"B6\",\"1677\",\"JFK\",\"JAX\",64.00,29.00,0.00,\"\",0.00,137.00,112.00,828.00,0.00,0.00,0.00,0.00,29.00,\n2015,5,17,\"B6\",\"1677\",\"JFK\",\"JAX\",130.00,91.00,0.00,\"\",0.00,133.00,111.00,828.00,2.00,0.00,0.00,0.00,89.00,\n2015,5,18,\"B6\",\"1677\",\"JFK\",\"JAX\",191.00,174.00,0.00,\"\",0.00,155.00,106.00,828.00,165.00,0.00,0.00,0.00,9.00,\n2015,5,19,\"B6\",\"1677\",\"JFK\",\"JAX\",-4.00,-5.00,0.00,\"\",0.00,171.00,117.00,828.00,,,,,,\n2015,5,20,\"B6\",\"1677\",\"JFK\",\"JAX\",-4.00,-35.00,0.00,\"\",0.00,141.00,117.00,828.00,,,,,,\n2015,5,21,\"B6\",\"1677\",\"JFK\",\"JAX\",-4.00,-26.00,0.00,\"\",0.00,150.00,117.00,828.00,,,,,,\n2015,5,22,\"B6\",\"1677\",\"JFK\",\"JAX\",30.00,22.00,0.00,\"\",0.00,164.00,121.00,828.00,8.00,0.00,0.00,0.00,14.00,\n2015,5,23,\"B6\",\"1677\",\"JFK\",\"JAX\",-10.00,-46.00,0.00,\"\",0.00,136.00,107.00,828.00,,,,,,\n2015,5,24,\"B6\",\"1677\",\"JFK\",\"JAX\",-4.00,-30.00,0.00,\"\",0.00,146.00,113.00,828.00,,,,,,\n2015,5,25,\"B6\",\"1677\",\"JFK\",\"JAX\",7.00,-21.00,0.00,\"\",0.00,144.00,111.00,828.00,,,,,,\n2015,5,26,\"B6\",\"1677\",\"JFK\",\"JAX\",-5.00,-33.00,0.00,\"\",0.00,144.00,115.00,828.00,,,,,,\n2015,5,27,\"B6\",\"1677\",\"JFK\",\"JAX\",,,1.00,\"C\",0.00,,,828.00,,,,,,\n2015,5,28,\"B6\",\"1677\",\"JFK\",\"JAX\",20.00,-11.00,0.00,\"\",0.00,141.00,105.00,828.00,,,,,,\n2015,5,29,\"B6\",\"1677\",\"JFK\",\"JAX\",-4.00,-37.00,0.00,\"\",0.00,139.00,110.00,828.00,,,,,,\n2015,5,30,\"B6\",\"1677\",\"JFK\",\"JAX\",-10.00,-37.00,0.00,\"\",0.00,145.00,112.00,828.00,,,,,,\n2015,5,31,\"B6\",\"1677\",\"JFK\",\"JAX\",44.00,66.00,0.00,\"\",0.00,194.00,109.00,828.00,0.00,0.00,66.00,0.00,0.00,\n2015,5,1,\"B6\",\"1678\",\"JAX\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,123.00,103.00,828.00,,,,,,\n2015,5,2,\"B6\",\"1678\",\"JAX\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,128.00,112.00,828.00,,,,,,\n2015,5,3,\"B6\",\"1678\",\"JAX\",\"JFK\",30.00,16.00,0.00,\"\",0.00,125.00,109.00,828.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"1678\",\"JAX\",\"JFK\",3.00,-7.00,0.00,\"\",0.00,129.00,112.00,828.00,,,,,,\n2015,5,5,\"B6\",\"1678\",\"JAX\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,126.00,108.00,828.00,,,,,,\n2015,5,6,\"B6\",\"1678\",\"JAX\",\"JFK\",-8.00,-28.00,0.00,\"\",0.00,119.00,102.00,828.00,,,,,,\n2015,5,7,\"B6\",\"1678\",\"JAX\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,127.00,109.00,828.00,,,,,,\n2015,5,8,\"B6\",\"1678\",\"JAX\",\"JFK\",-4.00,28.00,0.00,\"\",0.00,171.00,133.00,828.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,9,\"B6\",\"1678\",\"JAX\",\"JFK\",-9.00,-9.00,0.00,\"\",0.00,139.00,120.00,828.00,,,,,,\n2015,5,10,\"B6\",\"1678\",\"JAX\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,132.00,110.00,828.00,,,,,,\n2015,5,11,\"B6\",\"1678\",\"JAX\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,125.00,106.00,828.00,,,,,,\n2015,5,12,\"B6\",\"1678\",\"JAX\",\"JFK\",-5.00,-7.00,0.00,\"\",0.00,137.00,115.00,828.00,,,,,,\n2015,5,13,\"B6\",\"1678\",\"JAX\",\"JFK\",-10.00,-30.00,0.00,\"\",0.00,119.00,100.00,828.00,,,,,,\n2015,5,14,\"B6\",\"1678\",\"JAX\",\"JFK\",-4.00,-3.00,0.00,\"\",0.00,140.00,111.00,828.00,,,,,,\n2015,5,15,\"B6\",\"1678\",\"JAX\",\"JFK\",-8.00,-28.00,0.00,\"\",0.00,119.00,103.00,828.00,,,,,,\n2015,5,16,\"B6\",\"1678\",\"JAX\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,128.00,112.00,828.00,,,,,,\n2015,5,17,\"B6\",\"1678\",\"JAX\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,143.00,114.00,828.00,,,,,,\n2015,5,18,\"B6\",\"1678\",\"JAX\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,132.00,111.00,828.00,,,,,,\n2015,5,19,\"B6\",\"1678\",\"JAX\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,130.00,112.00,828.00,,,,,,\n2015,5,20,\"B6\",\"1678\",\"JAX\",\"JFK\",-10.00,-25.00,0.00,\"\",0.00,124.00,107.00,828.00,,,,,,\n2015,5,21,\"B6\",\"1678\",\"JAX\",\"JFK\",-10.00,-29.00,0.00,\"\",0.00,120.00,102.00,828.00,,,,,,\n2015,5,22,\"B6\",\"1678\",\"JAX\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,126.00,102.00,828.00,,,,,,\n2015,5,23,\"B6\",\"1678\",\"JAX\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,126.00,106.00,828.00,,,,,,\n2015,5,24,\"B6\",\"1678\",\"JAX\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,130.00,114.00,828.00,,,,,,\n2015,5,25,\"B6\",\"1678\",\"JAX\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,126.00,108.00,828.00,,,,,,\n2015,5,26,\"B6\",\"1678\",\"JAX\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,127.00,106.00,828.00,,,,,,\n2015,5,27,\"B6\",\"1678\",\"JAX\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,125.00,107.00,828.00,,,,,,\n2015,5,28,\"B6\",\"1678\",\"JAX\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,123.00,106.00,828.00,,,,,,\n2015,5,29,\"B6\",\"1678\",\"JAX\",\"JFK\",-5.00,2.00,0.00,\"\",0.00,146.00,125.00,828.00,,,,,,\n2015,5,30,\"B6\",\"1678\",\"JAX\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,127.00,112.00,828.00,,,,,,\n2015,5,31,\"B6\",\"1678\",\"JAX\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,126.00,110.00,828.00,,,,,,\n2015,5,1,\"B6\",\"1684\",\"MCO\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,138.00,116.00,944.00,,,,,,\n2015,5,2,\"B6\",\"1684\",\"MCO\",\"JFK\",-1.00,22.00,0.00,\"\",0.00,180.00,124.00,944.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,3,\"B6\",\"1684\",\"MCO\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,150.00,124.00,944.00,,,,,,\n2015,5,4,\"B6\",\"1684\",\"MCO\",\"JFK\",9.00,-3.00,0.00,\"\",0.00,145.00,123.00,944.00,,,,,,\n2015,5,5,\"B6\",\"1684\",\"MCO\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,144.00,121.00,944.00,,,,,,\n2015,5,6,\"B6\",\"1684\",\"MCO\",\"JFK\",-8.00,-31.00,0.00,\"\",0.00,134.00,117.00,944.00,,,,,,\n2015,5,7,\"B6\",\"1684\",\"MCO\",\"JFK\",-8.00,-7.00,0.00,\"\",0.00,158.00,129.00,944.00,,,,,,\n2015,5,8,\"B6\",\"1684\",\"MCO\",\"JFK\",0.00,6.00,0.00,\"\",0.00,163.00,139.00,944.00,,,,,,\n2015,5,9,\"B6\",\"1684\",\"MCO\",\"JFK\",-6.00,-6.00,0.00,\"\",0.00,157.00,136.00,944.00,,,,,,\n2015,5,10,\"B6\",\"1684\",\"MCO\",\"JFK\",-4.00,2.00,0.00,\"\",0.00,163.00,142.00,944.00,,,,,,\n2015,5,11,\"B6\",\"1684\",\"MCO\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,146.00,126.00,944.00,,,,,,\n2015,5,12,\"B6\",\"1684\",\"MCO\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,152.00,128.00,944.00,,,,,,\n2015,5,13,\"B6\",\"1684\",\"MCO\",\"JFK\",-9.00,-24.00,0.00,\"\",0.00,142.00,120.00,944.00,,,,,,\n2015,5,14,\"B6\",\"1684\",\"MCO\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,147.00,133.00,944.00,,,,,,\n2015,5,15,\"B6\",\"1684\",\"MCO\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,142.00,121.00,944.00,,,,,,\n2015,5,16,\"B6\",\"1684\",\"MCO\",\"JFK\",22.00,44.00,0.00,\"\",0.00,179.00,126.00,944.00,16.00,0.00,22.00,0.00,6.00,\n2015,5,17,\"B6\",\"1684\",\"MCO\",\"JFK\",-4.00,3.00,0.00,\"\",0.00,164.00,129.00,944.00,,,,,,\n2015,5,18,\"B6\",\"1684\",\"MCO\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,149.00,132.00,944.00,,,,,,\n2015,5,19,\"B6\",\"1684\",\"MCO\",\"JFK\",19.00,7.00,0.00,\"\",0.00,145.00,128.00,944.00,,,,,,\n2015,5,20,\"B6\",\"1684\",\"MCO\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,141.00,126.00,944.00,,,,,,\n2015,5,21,\"B6\",\"1684\",\"MCO\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,138.00,121.00,944.00,,,,,,\n2015,5,22,\"B6\",\"1684\",\"MCO\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,134.00,116.00,944.00,,,,,,\n2015,5,23,\"B6\",\"1684\",\"MCO\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,141.00,123.00,944.00,,,,,,\n2015,5,24,\"B6\",\"1684\",\"MCO\",\"JFK\",5.00,-11.00,0.00,\"\",0.00,141.00,125.00,944.00,,,,,,\n2015,5,25,\"B6\",\"1684\",\"MCO\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,136.00,121.00,944.00,,,,,,\n2015,5,26,\"B6\",\"1684\",\"MCO\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,140.00,124.00,944.00,,,,,,\n2015,5,27,\"B6\",\"1684\",\"MCO\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,147.00,126.00,944.00,,,,,,\n2015,5,28,\"B6\",\"1684\",\"MCO\",\"JFK\",-3.00,14.00,0.00,\"\",0.00,174.00,121.00,944.00,,,,,,\n2015,5,29,\"B6\",\"1684\",\"MCO\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,148.00,127.00,944.00,,,,,,\n2015,5,30,\"B6\",\"1684\",\"MCO\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,150.00,131.00,944.00,,,,,,\n2015,5,31,\"B6\",\"1684\",\"MCO\",\"JFK\",21.00,5.00,0.00,\"\",0.00,141.00,127.00,944.00,,,,,,\n2015,5,1,\"B6\",\"1716\",\"TPA\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,147.00,126.00,1010.00,,,,,,\n2015,5,2,\"B6\",\"1716\",\"TPA\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,156.00,132.00,1010.00,,,,,,\n2015,5,3,\"B6\",\"1716\",\"TPA\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,158.00,135.00,1010.00,,,,,,\n2015,5,4,\"B6\",\"1716\",\"TPA\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,157.00,144.00,1010.00,,,,,,\n2015,5,5,\"B6\",\"1716\",\"TPA\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,148.00,134.00,1010.00,,,,,,\n2015,5,6,\"B6\",\"1716\",\"TPA\",\"LGA\",1.00,-20.00,0.00,\"\",0.00,145.00,128.00,1010.00,,,,,,\n2015,5,7,\"B6\",\"1716\",\"TPA\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,158.00,138.00,1010.00,,,,,,\n2015,5,8,\"B6\",\"1716\",\"TPA\",\"LGA\",7.00,-3.00,0.00,\"\",0.00,156.00,138.00,1010.00,,,,,,\n2015,5,9,\"B6\",\"1716\",\"TPA\",\"LGA\",-2.00,17.00,0.00,\"\",0.00,185.00,169.00,1010.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,10,\"B6\",\"1716\",\"TPA\",\"LGA\",12.00,-2.00,0.00,\"\",0.00,152.00,135.00,1010.00,,,,,,\n2015,5,11,\"B6\",\"1716\",\"TPA\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,155.00,137.00,1010.00,,,,,,\n2015,5,12,\"B6\",\"1716\",\"TPA\",\"LGA\",-11.00,-28.00,0.00,\"\",0.00,149.00,132.00,1010.00,,,,,,\n2015,5,13,\"B6\",\"1716\",\"TPA\",\"LGA\",12.00,5.00,0.00,\"\",0.00,159.00,128.00,1010.00,,,,,,\n2015,5,14,\"B6\",\"1716\",\"TPA\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,160.00,139.00,1010.00,,,,,,\n2015,5,15,\"B6\",\"1716\",\"TPA\",\"LGA\",32.00,16.00,0.00,\"\",0.00,150.00,134.00,1010.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"B6\",\"1716\",\"TPA\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,151.00,138.00,1010.00,,,,,,\n2015,5,17,\"B6\",\"1716\",\"TPA\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,150.00,130.00,1010.00,,,,,,\n2015,5,18,\"B6\",\"1716\",\"TPA\",\"LGA\",,,1.00,\"C\",0.00,,,1010.00,,,,,,\n2015,5,19,\"B6\",\"1716\",\"TPA\",\"LGA\",48.00,28.00,0.00,\"\",0.00,146.00,127.00,1010.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,20,\"B6\",\"1716\",\"TPA\",\"LGA\",-3.00,-28.00,0.00,\"\",0.00,141.00,130.00,1010.00,,,,,,\n2015,5,21,\"B6\",\"1716\",\"TPA\",\"LGA\",1.00,-28.00,0.00,\"\",0.00,137.00,125.00,1010.00,,,,,,\n2015,5,22,\"B6\",\"1716\",\"TPA\",\"LGA\",-3.00,-26.00,0.00,\"\",0.00,143.00,127.00,1010.00,,,,,,\n2015,5,23,\"B6\",\"1716\",\"TPA\",\"LGA\",8.00,-11.00,0.00,\"\",0.00,147.00,129.00,1010.00,,,,,,\n2015,5,24,\"B6\",\"1716\",\"TPA\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,154.00,137.00,1010.00,,,,,,\n2015,5,25,\"B6\",\"1716\",\"TPA\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,156.00,138.00,1010.00,,,,,,\n2015,5,26,\"B6\",\"1716\",\"TPA\",\"LGA\",-10.00,-37.00,0.00,\"\",0.00,139.00,126.00,1010.00,,,,,,\n2015,5,27,\"B6\",\"1716\",\"TPA\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,153.00,137.00,1010.00,,,,,,\n2015,5,28,\"B6\",\"1716\",\"TPA\",\"LGA\",10.00,-6.00,0.00,\"\",0.00,150.00,132.00,1010.00,,,,,,\n2015,5,29,\"B6\",\"1716\",\"TPA\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,155.00,134.00,1010.00,,,,,,\n2015,5,30,\"B6\",\"1716\",\"TPA\",\"LGA\",21.00,2.00,0.00,\"\",0.00,147.00,135.00,1010.00,,,,,,\n2015,5,31,\"B6\",\"1716\",\"TPA\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,167.00,138.00,1010.00,,,,,,\n2015,5,1,\"B6\",\"1717\",\"LGA\",\"TPA\",1.00,6.00,0.00,\"\",0.00,172.00,146.00,1010.00,,,,,,\n2015,5,2,\"B6\",\"1717\",\"LGA\",\"TPA\",-8.00,-15.00,0.00,\"\",0.00,160.00,133.00,1010.00,,,,,,\n2015,5,3,\"B6\",\"1717\",\"LGA\",\"TPA\",-7.00,-9.00,0.00,\"\",0.00,165.00,139.00,1010.00,,,,,,\n2015,5,4,\"B6\",\"1717\",\"LGA\",\"TPA\",-10.00,-23.00,0.00,\"\",0.00,154.00,136.00,1010.00,,,,,,\n2015,5,5,\"B6\",\"1717\",\"LGA\",\"TPA\",-13.00,-14.00,0.00,\"\",0.00,166.00,140.00,1010.00,,,,,,\n2015,5,6,\"B6\",\"1717\",\"LGA\",\"TPA\",-2.00,-2.00,0.00,\"\",0.00,167.00,146.00,1010.00,,,,,,\n2015,5,7,\"B6\",\"1717\",\"LGA\",\"TPA\",-5.00,-7.00,0.00,\"\",0.00,165.00,145.00,1010.00,,,,,,\n2015,5,8,\"B6\",\"1717\",\"LGA\",\"TPA\",-8.00,0.00,0.00,\"\",0.00,175.00,139.00,1010.00,,,,,,\n2015,5,9,\"B6\",\"1717\",\"LGA\",\"TPA\",-14.00,-30.00,0.00,\"\",0.00,151.00,131.00,1010.00,,,,,,\n2015,5,10,\"B6\",\"1717\",\"LGA\",\"TPA\",14.00,-4.00,0.00,\"\",0.00,149.00,129.00,1010.00,,,,,,\n2015,5,11,\"B6\",\"1717\",\"LGA\",\"TPA\",-1.00,-21.00,0.00,\"\",0.00,147.00,132.00,1010.00,,,,,,\n2015,5,12,\"B6\",\"1717\",\"LGA\",\"TPA\",-9.00,-24.00,0.00,\"\",0.00,152.00,137.00,1010.00,,,,,,\n2015,5,13,\"B6\",\"1717\",\"LGA\",\"TPA\",-4.00,-8.00,0.00,\"\",0.00,163.00,145.00,1010.00,,,,,,\n2015,5,14,\"B6\",\"1717\",\"LGA\",\"TPA\",0.00,-9.00,0.00,\"\",0.00,158.00,138.00,1010.00,,,,,,\n2015,5,15,\"B6\",\"1717\",\"LGA\",\"TPA\",-4.00,-21.00,0.00,\"\",0.00,150.00,138.00,1010.00,,,,,,\n2015,5,16,\"B6\",\"1717\",\"LGA\",\"TPA\",-8.00,-13.00,0.00,\"\",0.00,162.00,139.00,1010.00,,,,,,\n2015,5,17,\"B6\",\"1717\",\"LGA\",\"TPA\",-7.00,-24.00,0.00,\"\",0.00,150.00,135.00,1010.00,,,,,,\n2015,5,18,\"B6\",\"1717\",\"LGA\",\"TPA\",-10.00,2.00,0.00,\"\",0.00,179.00,132.00,1010.00,,,,,,\n2015,5,19,\"B6\",\"1717\",\"LGA\",\"TPA\",-12.00,-18.00,0.00,\"\",0.00,161.00,138.00,1010.00,,,,,,\n2015,5,20,\"B6\",\"1717\",\"LGA\",\"TPA\",-6.00,-19.00,0.00,\"\",0.00,154.00,139.00,1010.00,,,,,,\n2015,5,21,\"B6\",\"1717\",\"LGA\",\"TPA\",-7.00,-14.00,0.00,\"\",0.00,160.00,144.00,1010.00,,,,,,\n2015,5,22,\"B6\",\"1717\",\"LGA\",\"TPA\",-4.00,3.00,0.00,\"\",0.00,174.00,151.00,1010.00,,,,,,\n2015,5,23,\"B6\",\"1717\",\"LGA\",\"TPA\",-2.00,-5.00,0.00,\"\",0.00,164.00,146.00,1010.00,,,,,,\n2015,5,24,\"B6\",\"1717\",\"LGA\",\"TPA\",-3.00,-8.00,0.00,\"\",0.00,162.00,141.00,1010.00,,,,,,\n2015,5,25,\"B6\",\"1717\",\"LGA\",\"TPA\",-8.00,-20.00,0.00,\"\",0.00,155.00,138.00,1010.00,,,,,,\n2015,5,26,\"B6\",\"1717\",\"LGA\",\"TPA\",6.00,-4.00,0.00,\"\",0.00,157.00,139.00,1010.00,,,,,,\n2015,5,27,\"B6\",\"1717\",\"LGA\",\"TPA\",-2.00,-7.00,0.00,\"\",0.00,162.00,144.00,1010.00,,,,,,\n2015,5,28,\"B6\",\"1717\",\"LGA\",\"TPA\",-9.00,8.00,0.00,\"\",0.00,184.00,139.00,1010.00,,,,,,\n2015,5,29,\"B6\",\"1717\",\"LGA\",\"TPA\",-7.00,-16.00,0.00,\"\",0.00,158.00,134.00,1010.00,,,,,,\n2015,5,30,\"B6\",\"1717\",\"LGA\",\"TPA\",-10.00,-19.00,0.00,\"\",0.00,158.00,139.00,1010.00,,,,,,\n2015,5,31,\"B6\",\"1717\",\"LGA\",\"TPA\",-16.00,-21.00,0.00,\"\",0.00,162.00,135.00,1010.00,,,,,,\n2015,5,1,\"B6\",\"1729\",\"JFK\",\"RSW\",-2.00,-34.00,0.00,\"\",0.00,174.00,148.00,1074.00,,,,,,\n2015,5,2,\"B6\",\"1729\",\"JFK\",\"RSW\",-10.00,-37.00,0.00,\"\",0.00,178.00,153.00,1074.00,,,,,,\n2015,5,3,\"B6\",\"1729\",\"JFK\",\"RSW\",0.00,-18.00,0.00,\"\",0.00,188.00,154.00,1074.00,,,,,,\n2015,5,4,\"B6\",\"1729\",\"JFK\",\"RSW\",-1.00,-20.00,0.00,\"\",0.00,187.00,157.00,1074.00,,,,,,\n2015,5,5,\"B6\",\"1729\",\"JFK\",\"RSW\",-6.00,-26.00,0.00,\"\",0.00,186.00,159.00,1074.00,,,,,,\n2015,5,6,\"B6\",\"1729\",\"JFK\",\"RSW\",-2.00,-20.00,0.00,\"\",0.00,188.00,154.00,1074.00,,,,,,\n2015,5,7,\"B6\",\"1729\",\"JFK\",\"RSW\",-6.00,-20.00,0.00,\"\",0.00,192.00,148.00,1074.00,,,,,,\n2015,5,8,\"B6\",\"1729\",\"JFK\",\"RSW\",-9.00,-41.00,0.00,\"\",0.00,174.00,145.00,1074.00,,,,,,\n2015,5,9,\"B6\",\"1729\",\"JFK\",\"RSW\",-5.00,-36.00,0.00,\"\",0.00,174.00,140.00,1074.00,,,,,,\n2015,5,10,\"B6\",\"1729\",\"JFK\",\"RSW\",-3.00,-17.00,0.00,\"\",0.00,192.00,154.00,1074.00,,,,,,\n2015,5,11,\"B6\",\"1729\",\"JFK\",\"RSW\",5.00,3.00,0.00,\"\",0.00,204.00,149.00,1074.00,,,,,,\n2015,5,12,\"B6\",\"1729\",\"JFK\",\"RSW\",,,1.00,\"C\",0.00,,,1074.00,,,,,,\n2015,5,13,\"B6\",\"1729\",\"JFK\",\"RSW\",-2.00,-25.00,0.00,\"\",0.00,183.00,156.00,1074.00,,,,,,\n2015,5,14,\"B6\",\"1729\",\"JFK\",\"RSW\",-5.00,-24.00,0.00,\"\",0.00,187.00,155.00,1074.00,,,,,,\n2015,5,15,\"B6\",\"1729\",\"JFK\",\"RSW\",-7.00,-26.00,0.00,\"\",0.00,187.00,157.00,1074.00,,,,,,\n2015,5,16,\"B6\",\"1729\",\"JFK\",\"RSW\",-2.00,-37.00,0.00,\"\",0.00,170.00,145.00,1074.00,,,,,,\n2015,5,17,\"B6\",\"1729\",\"JFK\",\"RSW\",25.00,7.00,0.00,\"\",0.00,188.00,157.00,1074.00,,,,,,\n2015,5,18,\"B6\",\"1729\",\"JFK\",\"RSW\",48.00,31.00,0.00,\"\",0.00,189.00,154.00,1074.00,12.00,0.00,0.00,0.00,19.00,\n2015,5,19,\"B6\",\"1729\",\"JFK\",\"RSW\",-2.00,-14.00,0.00,\"\",0.00,194.00,165.00,1074.00,,,,,,\n2015,5,20,\"B6\",\"1729\",\"JFK\",\"RSW\",-1.00,-10.00,0.00,\"\",0.00,197.00,155.00,1074.00,,,,,,\n2015,5,21,\"B6\",\"1729\",\"JFK\",\"RSW\",8.00,24.00,0.00,\"\",0.00,222.00,161.00,1074.00,8.00,0.00,16.00,0.00,0.00,\n2015,5,22,\"B6\",\"1729\",\"JFK\",\"RSW\",-1.00,-21.00,0.00,\"\",0.00,186.00,160.00,1074.00,,,,,,\n2015,5,23,\"B6\",\"1729\",\"JFK\",\"RSW\",-10.00,-22.00,0.00,\"\",0.00,193.00,154.00,1074.00,,,,,,\n2015,5,24,\"B6\",\"1729\",\"JFK\",\"RSW\",-6.00,-22.00,0.00,\"\",0.00,190.00,150.00,1074.00,,,,,,\n2015,5,25,\"B6\",\"1729\",\"JFK\",\"RSW\",-3.00,-23.00,0.00,\"\",0.00,186.00,151.00,1074.00,,,,,,\n2015,5,26,\"B6\",\"1729\",\"JFK\",\"RSW\",-6.00,-27.00,0.00,\"\",0.00,185.00,151.00,1074.00,,,,,,\n2015,5,27,\"B6\",\"1729\",\"JFK\",\"RSW\",-3.00,-17.00,0.00,\"\",0.00,192.00,156.00,1074.00,,,,,,\n2015,5,28,\"B6\",\"1729\",\"JFK\",\"RSW\",-4.00,-23.00,0.00,\"\",0.00,187.00,151.00,1074.00,,,,,,\n2015,5,29,\"B6\",\"1729\",\"JFK\",\"RSW\",-3.00,-15.00,0.00,\"\",0.00,194.00,153.00,1074.00,,,,,,\n2015,5,30,\"B6\",\"1729\",\"JFK\",\"RSW\",-10.00,-33.00,0.00,\"\",0.00,182.00,143.00,1074.00,,,,,,\n2015,5,31,\"B6\",\"1729\",\"JFK\",\"RSW\",2.00,-22.00,0.00,\"\",0.00,182.00,142.00,1074.00,,,,,,\n2015,5,1,\"B6\",\"1730\",\"RSW\",\"JFK\",-6.00,-36.00,0.00,\"\",0.00,149.00,136.00,1074.00,,,,,,\n2015,5,2,\"B6\",\"1730\",\"RSW\",\"JFK\",-15.00,-40.00,0.00,\"\",0.00,153.00,137.00,1074.00,,,,,,\n2015,5,3,\"B6\",\"1730\",\"RSW\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,154.00,138.00,1074.00,,,,,,\n2015,5,4,\"B6\",\"1730\",\"RSW\",\"JFK\",-4.00,-30.00,0.00,\"\",0.00,153.00,137.00,1074.00,,,,,,\n2015,5,5,\"B6\",\"1730\",\"RSW\",\"JFK\",-6.00,-37.00,0.00,\"\",0.00,148.00,132.00,1074.00,,,,,,\n2015,5,6,\"B6\",\"1730\",\"RSW\",\"JFK\",3.00,-25.00,0.00,\"\",0.00,151.00,137.00,1074.00,,,,,,\n2015,5,7,\"B6\",\"1730\",\"RSW\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,166.00,144.00,1074.00,,,,,,\n2015,5,8,\"B6\",\"1730\",\"RSW\",\"JFK\",106.00,97.00,0.00,\"\",0.00,170.00,145.00,1074.00,0.00,0.00,97.00,0.00,0.00,\n2015,5,9,\"B6\",\"1730\",\"RSW\",\"JFK\",9.00,18.00,0.00,\"\",0.00,187.00,147.00,1074.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,10,\"B6\",\"1730\",\"RSW\",\"JFK\",79.00,57.00,0.00,\"\",0.00,157.00,143.00,1074.00,0.00,0.00,57.00,0.00,0.00,\n2015,5,11,\"B6\",\"1730\",\"RSW\",\"JFK\",28.00,39.00,0.00,\"\",0.00,190.00,166.00,1074.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,12,\"B6\",\"1730\",\"RSW\",\"JFK\",,,1.00,\"C\",0.00,,,1074.00,,,,,,\n2015,5,13,\"B6\",\"1730\",\"RSW\",\"JFK\",30.00,41.00,0.00,\"\",0.00,190.00,159.00,1074.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,14,\"B6\",\"1730\",\"RSW\",\"JFK\",-10.00,-32.00,0.00,\"\",0.00,157.00,139.00,1074.00,,,,,,\n2015,5,15,\"B6\",\"1730\",\"RSW\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,162.00,148.00,1074.00,,,,,,\n2015,5,16,\"B6\",\"1730\",\"RSW\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,174.00,155.00,1074.00,,,,,,\n2015,5,17,\"B6\",\"1730\",\"RSW\",\"JFK\",4.00,-12.00,0.00,\"\",0.00,163.00,146.00,1074.00,,,,,,\n2015,5,18,\"B6\",\"1730\",\"RSW\",\"JFK\",98.00,100.00,0.00,\"\",0.00,181.00,160.00,1074.00,0.00,0.00,74.00,0.00,26.00,\n2015,5,19,\"B6\",\"1730\",\"RSW\",\"JFK\",3.00,11.00,0.00,\"\",0.00,187.00,165.00,1074.00,,,,,,\n2015,5,20,\"B6\",\"1730\",\"RSW\",\"JFK\",-9.00,-11.00,0.00,\"\",0.00,177.00,147.00,1074.00,,,,,,\n2015,5,21,\"B6\",\"1730\",\"RSW\",\"JFK\",79.00,49.00,0.00,\"\",0.00,149.00,137.00,1074.00,37.00,0.00,0.00,0.00,12.00,\n2015,5,22,\"B6\",\"1730\",\"RSW\",\"JFK\",21.00,16.00,0.00,\"\",0.00,174.00,141.00,1074.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,23,\"B6\",\"1730\",\"RSW\",\"JFK\",-15.00,-31.00,0.00,\"\",0.00,162.00,147.00,1074.00,,,,,,\n2015,5,24,\"B6\",\"1730\",\"RSW\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,157.00,139.00,1074.00,,,,,,\n2015,5,25,\"B6\",\"1730\",\"RSW\",\"JFK\",-7.00,-32.00,0.00,\"\",0.00,154.00,138.00,1074.00,,,,,,\n2015,5,26,\"B6\",\"1730\",\"RSW\",\"JFK\",-6.00,-32.00,0.00,\"\",0.00,153.00,136.00,1074.00,,,,,,\n2015,5,27,\"B6\",\"1730\",\"RSW\",\"JFK\",17.00,10.00,0.00,\"\",0.00,172.00,149.00,1074.00,,,,,,\n2015,5,28,\"B6\",\"1730\",\"RSW\",\"JFK\",5.00,-9.00,0.00,\"\",0.00,165.00,147.00,1074.00,,,,,,\n2015,5,29,\"B6\",\"1730\",\"RSW\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,156.00,144.00,1074.00,,,,,,\n2015,5,30,\"B6\",\"1730\",\"RSW\",\"JFK\",-20.00,-34.00,0.00,\"\",0.00,164.00,144.00,1074.00,,,,,,\n2015,5,31,\"B6\",\"1730\",\"RSW\",\"JFK\",202.00,200.00,0.00,\"\",0.00,177.00,164.00,1074.00,0.00,0.00,200.00,0.00,0.00,\n2015,5,1,\"B6\",\"1733\",\"BTV\",\"JFK\",-5.00,-28.00,0.00,\"\",0.00,70.00,57.00,266.00,,,,,,\n2015,5,2,\"B6\",\"1733\",\"BTV\",\"JFK\",-15.00,-43.00,0.00,\"\",0.00,65.00,51.00,266.00,,,,,,\n2015,5,3,\"B6\",\"1733\",\"BTV\",\"JFK\",33.00,10.00,0.00,\"\",0.00,70.00,49.00,266.00,,,,,,\n2015,5,4,\"B6\",\"1733\",\"BTV\",\"JFK\",-9.00,-35.00,0.00,\"\",0.00,67.00,53.00,266.00,,,,,,\n2015,5,5,\"B6\",\"1733\",\"BTV\",\"JFK\",-10.00,-35.00,0.00,\"\",0.00,68.00,56.00,266.00,,,,,,\n2015,5,6,\"B6\",\"1733\",\"BTV\",\"JFK\",-15.00,-38.00,0.00,\"\",0.00,70.00,56.00,266.00,,,,,,\n2015,5,7,\"B6\",\"1733\",\"BTV\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,85.00,67.00,266.00,,,,,,\n2015,5,8,\"B6\",\"1733\",\"BTV\",\"JFK\",128.00,130.00,0.00,\"\",0.00,95.00,55.00,266.00,0.00,0.00,130.00,0.00,0.00,\n2015,5,9,\"B6\",\"1733\",\"BTV\",\"JFK\",46.00,19.00,0.00,\"\",0.00,66.00,49.00,266.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,10,\"B6\",\"1733\",\"BTV\",\"JFK\",128.00,108.00,0.00,\"\",0.00,73.00,60.00,266.00,0.00,0.00,108.00,0.00,0.00,\n2015,5,11,\"B6\",\"1733\",\"BTV\",\"JFK\",47.00,34.00,0.00,\"\",0.00,80.00,65.00,266.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,12,\"B6\",\"1733\",\"BTV\",\"JFK\",50.00,32.00,0.00,\"\",0.00,75.00,59.00,266.00,0.00,0.00,23.00,0.00,9.00,\n2015,5,13,\"B6\",\"1733\",\"BTV\",\"JFK\",45.00,18.00,0.00,\"\",0.00,66.00,52.00,266.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,14,\"B6\",\"1733\",\"BTV\",\"JFK\",-10.00,-29.00,0.00,\"\",0.00,74.00,55.00,266.00,,,,,,\n2015,5,15,\"B6\",\"1733\",\"BTV\",\"JFK\",-15.00,-26.00,0.00,\"\",0.00,82.00,63.00,266.00,,,,,,\n2015,5,16,\"B6\",\"1733\",\"BTV\",\"JFK\",-4.00,-31.00,0.00,\"\",0.00,66.00,50.00,266.00,,,,,,\n2015,5,17,\"B6\",\"1733\",\"BTV\",\"JFK\",-11.00,-8.00,0.00,\"\",0.00,96.00,68.00,266.00,,,,,,\n2015,5,18,\"B6\",\"1733\",\"BTV\",\"JFK\",131.00,127.00,0.00,\"\",0.00,89.00,68.00,266.00,0.00,0.00,127.00,0.00,0.00,\n2015,5,19,\"B6\",\"1733\",\"BTV\",\"JFK\",-10.00,-18.00,0.00,\"\",0.00,85.00,66.00,266.00,,,,,,\n2015,5,20,\"B6\",\"1733\",\"BTV\",\"JFK\",81.00,59.00,0.00,\"\",0.00,71.00,54.00,266.00,0.00,0.00,59.00,0.00,0.00,\n2015,5,21,\"B6\",\"1733\",\"BTV\",\"JFK\",-16.00,-21.00,0.00,\"\",0.00,87.00,63.00,266.00,,,,,,\n2015,5,22,\"B6\",\"1733\",\"BTV\",\"JFK\",103.00,92.00,0.00,\"\",0.00,82.00,59.00,266.00,0.00,0.00,92.00,0.00,0.00,\n2015,5,23,\"B6\",\"1733\",\"BTV\",\"JFK\",-12.00,-35.00,0.00,\"\",0.00,70.00,53.00,266.00,,,,,,\n2015,5,24,\"B6\",\"1733\",\"BTV\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,82.00,51.00,266.00,,,,,,\n2015,5,25,\"B6\",\"1733\",\"BTV\",\"JFK\",-16.00,-29.00,0.00,\"\",0.00,80.00,56.00,266.00,,,,,,\n2015,5,26,\"B6\",\"1733\",\"BTV\",\"JFK\",-10.00,-19.00,0.00,\"\",0.00,84.00,64.00,266.00,,,,,,\n2015,5,27,\"B6\",\"1733\",\"BTV\",\"JFK\",,,1.00,\"C\",0.00,,,266.00,,,,,,\n2015,5,28,\"B6\",\"1733\",\"BTV\",\"JFK\",14.00,-15.00,0.00,\"\",0.00,64.00,49.00,266.00,,,,,,\n2015,5,29,\"B6\",\"1733\",\"BTV\",\"JFK\",-13.00,-34.00,0.00,\"\",0.00,72.00,54.00,266.00,,,,,,\n2015,5,30,\"B6\",\"1733\",\"BTV\",\"JFK\",18.00,-11.00,0.00,\"\",0.00,64.00,48.00,266.00,,,,,,\n2015,5,31,\"B6\",\"1733\",\"BTV\",\"JFK\",,,1.00,\"C\",0.00,,,266.00,,,,,,\n2015,5,1,\"B6\",\"1734\",\"JFK\",\"BTV\",-2.00,-32.00,0.00,\"\",0.00,68.00,43.00,266.00,,,,,,\n2015,5,2,\"B6\",\"1734\",\"JFK\",\"BTV\",-9.00,-45.00,0.00,\"\",0.00,62.00,43.00,266.00,,,,,,\n2015,5,3,\"B6\",\"1734\",\"JFK\",\"BTV\",70.00,44.00,0.00,\"\",0.00,72.00,47.00,266.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"1734\",\"JFK\",\"BTV\",-7.00,-37.00,0.00,\"\",0.00,68.00,42.00,266.00,,,,,,\n2015,5,5,\"B6\",\"1734\",\"JFK\",\"BTV\",-3.00,-28.00,0.00,\"\",0.00,73.00,43.00,266.00,,,,,,\n2015,5,6,\"B6\",\"1734\",\"JFK\",\"BTV\",-2.00,-24.00,0.00,\"\",0.00,76.00,44.00,266.00,,,,,,\n2015,5,7,\"B6\",\"1734\",\"JFK\",\"BTV\",-2.00,-29.00,0.00,\"\",0.00,71.00,45.00,266.00,,,,,,\n2015,5,8,\"B6\",\"1734\",\"JFK\",\"BTV\",0.00,-13.00,0.00,\"\",0.00,85.00,46.00,266.00,,,,,,\n2015,5,9,\"B6\",\"1734\",\"JFK\",\"BTV\",-7.00,-35.00,0.00,\"\",0.00,70.00,46.00,266.00,,,,,,\n2015,5,10,\"B6\",\"1734\",\"JFK\",\"BTV\",-6.00,-13.00,0.00,\"\",0.00,91.00,47.00,266.00,,,,,,\n2015,5,11,\"B6\",\"1734\",\"JFK\",\"BTV\",-5.00,-27.00,0.00,\"\",0.00,76.00,42.00,266.00,,,,,,\n2015,5,12,\"B6\",\"1734\",\"JFK\",\"BTV\",56.00,20.00,0.00,\"\",0.00,62.00,42.00,266.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"B6\",\"1734\",\"JFK\",\"BTV\",-3.00,-22.00,0.00,\"\",0.00,79.00,45.00,266.00,,,,,,\n2015,5,14,\"B6\",\"1734\",\"JFK\",\"BTV\",-4.00,-24.00,0.00,\"\",0.00,78.00,51.00,266.00,,,,,,\n2015,5,15,\"B6\",\"1734\",\"JFK\",\"BTV\",-6.00,-34.00,0.00,\"\",0.00,70.00,44.00,266.00,,,,,,\n2015,5,16,\"B6\",\"1734\",\"JFK\",\"BTV\",-4.00,-30.00,0.00,\"\",0.00,72.00,49.00,266.00,,,,,,\n2015,5,17,\"B6\",\"1734\",\"JFK\",\"BTV\",15.00,-7.00,0.00,\"\",0.00,76.00,43.00,266.00,,,,,,\n2015,5,18,\"B6\",\"1734\",\"JFK\",\"BTV\",103.00,114.00,0.00,\"\",0.00,109.00,47.00,266.00,39.00,0.00,11.00,0.00,64.00,\n2015,5,19,\"B6\",\"1734\",\"JFK\",\"BTV\",-3.00,-26.00,0.00,\"\",0.00,75.00,42.00,266.00,,,,,,\n2015,5,20,\"B6\",\"1734\",\"JFK\",\"BTV\",0.00,-29.00,0.00,\"\",0.00,69.00,44.00,266.00,,,,,,\n2015,5,21,\"B6\",\"1734\",\"JFK\",\"BTV\",-7.00,-28.00,0.00,\"\",0.00,79.00,43.00,266.00,,,,,,\n2015,5,22,\"B6\",\"1734\",\"JFK\",\"BTV\",16.00,-16.00,0.00,\"\",0.00,66.00,45.00,266.00,,,,,,\n2015,5,23,\"B6\",\"1734\",\"JFK\",\"BTV\",-7.00,-29.00,0.00,\"\",0.00,76.00,46.00,266.00,,,,,,\n2015,5,24,\"B6\",\"1734\",\"JFK\",\"BTV\",-10.00,-33.00,0.00,\"\",0.00,75.00,49.00,266.00,,,,,,\n2015,5,25,\"B6\",\"1734\",\"JFK\",\"BTV\",-9.00,-33.00,0.00,\"\",0.00,74.00,42.00,266.00,,,,,,\n2015,5,26,\"B6\",\"1734\",\"JFK\",\"BTV\",-4.00,-27.00,0.00,\"\",0.00,75.00,41.00,266.00,,,,,,\n2015,5,27,\"B6\",\"1734\",\"JFK\",\"BTV\",,,1.00,\"C\",0.00,,,266.00,,,,,,\n2015,5,28,\"B6\",\"1734\",\"JFK\",\"BTV\",-2.00,23.00,0.00,\"\",0.00,123.00,45.00,266.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,29,\"B6\",\"1734\",\"JFK\",\"BTV\",-8.00,-32.00,0.00,\"\",0.00,74.00,43.00,266.00,,,,,,\n2015,5,30,\"B6\",\"1734\",\"JFK\",\"BTV\",61.00,29.00,0.00,\"\",0.00,66.00,43.00,266.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"B6\",\"1734\",\"JFK\",\"BTV\",-3.00,2.00,0.00,\"\",0.00,103.00,43.00,266.00,,,,,,\n2015,5,1,\"B6\",\"1801\",\"JFK\",\"FLL\",-4.00,-33.00,0.00,\"\",0.00,175.00,151.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"1801\",\"JFK\",\"FLL\",-5.00,-45.00,0.00,\"\",0.00,164.00,145.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"1801\",\"JFK\",\"FLL\",-5.00,-12.00,0.00,\"\",0.00,197.00,149.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"1801\",\"JFK\",\"FLL\",-2.00,-12.00,0.00,\"\",0.00,194.00,146.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"1801\",\"JFK\",\"FLL\",-3.00,-4.00,0.00,\"\",0.00,203.00,159.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"1801\",\"JFK\",\"FLL\",-4.00,-19.00,0.00,\"\",0.00,189.00,159.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"1801\",\"JFK\",\"FLL\",-4.00,-26.00,0.00,\"\",0.00,182.00,147.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"1801\",\"JFK\",\"FLL\",0.00,-15.00,0.00,\"\",0.00,189.00,143.00,1069.00,,,,,,\n2015,5,9,\"B6\",\"1801\",\"JFK\",\"FLL\",-1.00,-25.00,0.00,\"\",0.00,180.00,144.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"1801\",\"JFK\",\"FLL\",19.00,21.00,0.00,\"\",0.00,206.00,162.00,1069.00,19.00,0.00,2.00,0.00,0.00,\n2015,5,11,\"B6\",\"1801\",\"JFK\",\"FLL\",-6.00,38.00,0.00,\"\",0.00,248.00,147.00,1069.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,12,\"B6\",\"1801\",\"JFK\",\"FLL\",,,1.00,\"A\",0.00,,,1069.00,,,,,,\n2015,5,13,\"B6\",\"1801\",\"JFK\",\"FLL\",-8.00,-37.00,0.00,\"\",0.00,175.00,142.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"1801\",\"JFK\",\"FLL\",-4.00,-14.00,0.00,\"\",0.00,194.00,151.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"1801\",\"JFK\",\"FLL\",0.00,-28.00,0.00,\"\",0.00,176.00,141.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"1801\",\"JFK\",\"FLL\",-5.00,-37.00,0.00,\"\",0.00,172.00,139.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"1801\",\"JFK\",\"FLL\",4.00,-24.00,0.00,\"\",0.00,176.00,147.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"1801\",\"JFK\",\"FLL\",0.00,-20.00,0.00,\"\",0.00,184.00,157.00,1069.00,,,,,,\n2015,5,19,\"B6\",\"1801\",\"JFK\",\"FLL\",-7.00,-7.00,0.00,\"\",0.00,204.00,155.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"1801\",\"JFK\",\"FLL\",-5.00,-39.00,0.00,\"\",0.00,170.00,143.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"1801\",\"JFK\",\"FLL\",-4.00,-10.00,0.00,\"\",0.00,198.00,159.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"1801\",\"JFK\",\"FLL\",147.00,114.00,0.00,\"\",0.00,171.00,143.00,1069.00,114.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"1801\",\"JFK\",\"FLL\",16.00,-19.00,0.00,\"\",0.00,169.00,141.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"1801\",\"JFK\",\"FLL\",-1.00,-7.00,0.00,\"\",0.00,198.00,133.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"1801\",\"JFK\",\"FLL\",-4.00,-30.00,0.00,\"\",0.00,178.00,144.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"1801\",\"JFK\",\"FLL\",-6.00,-37.00,0.00,\"\",0.00,173.00,144.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"1801\",\"JFK\",\"FLL\",-9.00,-34.00,0.00,\"\",0.00,179.00,146.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"1801\",\"JFK\",\"FLL\",3.00,-22.00,0.00,\"\",0.00,179.00,147.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"1801\",\"JFK\",\"FLL\",-6.00,-41.00,0.00,\"\",0.00,169.00,138.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"1801\",\"JFK\",\"FLL\",-2.00,-22.00,0.00,\"\",0.00,184.00,144.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"1801\",\"JFK\",\"FLL\",-1.00,-38.00,0.00,\"\",0.00,167.00,142.00,1069.00,,,,,,\n2015,5,1,\"B6\",\"1802\",\"FLL\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,145.00,131.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"1802\",\"FLL\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,157.00,132.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"1802\",\"FLL\",\"JFK\",-1.00,-10.00,0.00,\"\",0.00,158.00,136.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"1802\",\"FLL\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,151.00,128.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"1802\",\"FLL\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,148.00,128.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"1802\",\"FLL\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,152.00,135.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"1802\",\"FLL\",\"JFK\",-7.00,,0.00,\"\",1.00,,,1069.00,,,,,,\n2015,5,8,\"B6\",\"1802\",\"FLL\",\"JFK\",7.00,8.00,0.00,\"\",0.00,168.00,142.00,1069.00,,,,,,\n2015,5,9,\"B6\",\"1802\",\"FLL\",\"JFK\",-11.00,-27.00,0.00,\"\",0.00,151.00,136.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"1802\",\"FLL\",\"JFK\",7.00,-2.00,0.00,\"\",0.00,158.00,139.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"1802\",\"FLL\",\"JFK\",34.00,33.00,0.00,\"\",0.00,166.00,141.00,1069.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,12,\"B6\",\"1802\",\"FLL\",\"JFK\",4.00,-2.00,0.00,\"\",0.00,161.00,137.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"1802\",\"FLL\",\"JFK\",-5.00,2.00,0.00,\"\",0.00,174.00,150.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"1802\",\"FLL\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,162.00,138.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"1802\",\"FLL\",\"JFK\",4.00,-5.00,0.00,\"\",0.00,158.00,139.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"1802\",\"FLL\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,162.00,140.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"1802\",\"FLL\",\"JFK\",13.00,3.00,0.00,\"\",0.00,157.00,138.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"1802\",\"FLL\",\"JFK\",-3.00,43.00,0.00,\"\",0.00,213.00,190.00,1069.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,19,\"B6\",\"1802\",\"FLL\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,157.00,140.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"1802\",\"FLL\",\"JFK\",29.00,32.00,0.00,\"\",0.00,170.00,134.00,1069.00,6.00,0.00,3.00,0.00,23.00,\n2015,5,21,\"B6\",\"1802\",\"FLL\",\"JFK\",-7.00,1.00,0.00,\"\",0.00,175.00,143.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"1802\",\"FLL\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,153.00,135.00,1069.00,,,,,,\n2015,5,23,\"B6\",\"1802\",\"FLL\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,164.00,145.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"1802\",\"FLL\",\"JFK\",109.00,103.00,0.00,\"\",0.00,161.00,142.00,1069.00,1.00,0.00,0.00,0.00,102.00,\n2015,5,25,\"B6\",\"1802\",\"FLL\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,154.00,135.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"1802\",\"FLL\",\"JFK\",5.00,4.00,0.00,\"\",0.00,166.00,140.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"1802\",\"FLL\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,164.00,135.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"1802\",\"FLL\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,156.00,136.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"1802\",\"FLL\",\"JFK\",1.00,0.00,0.00,\"\",0.00,166.00,141.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"1802\",\"FLL\",\"JFK\",-10.00,-21.00,0.00,\"\",0.00,156.00,140.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"1802\",\"FLL\",\"JFK\",5.00,13.00,0.00,\"\",0.00,175.00,153.00,1069.00,,,,,,\n2015,5,1,\"B6\",\"1808\",\"IAD\",\"JFK\",-13.00,-7.00,0.00,\"\",0.00,97.00,55.00,228.00,,,,,,\n2015,5,3,\"B6\",\"1808\",\"IAD\",\"JFK\",17.00,-3.00,0.00,\"\",0.00,71.00,49.00,228.00,,,,,,\n2015,5,4,\"B6\",\"1808\",\"IAD\",\"JFK\",-9.00,-37.00,0.00,\"\",0.00,63.00,45.00,228.00,,,,,,\n2015,5,5,\"B6\",\"1808\",\"IAD\",\"JFK\",-9.00,16.00,0.00,\"\",0.00,116.00,52.00,228.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,6,\"B6\",\"1808\",\"IAD\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,73.00,50.00,228.00,,,,,,\n2015,5,7,\"B6\",\"1808\",\"IAD\",\"JFK\",-5.00,6.00,0.00,\"\",0.00,102.00,49.00,228.00,,,,,,\n2015,5,8,\"B6\",\"1808\",\"IAD\",\"JFK\",124.00,170.00,0.00,\"\",0.00,137.00,48.00,228.00,0.00,0.00,170.00,0.00,0.00,\n2015,5,10,\"B6\",\"1808\",\"IAD\",\"JFK\",104.00,83.00,0.00,\"\",0.00,70.00,47.00,228.00,0.00,0.00,83.00,0.00,0.00,\n2015,5,11,\"B6\",\"1808\",\"IAD\",\"JFK\",39.00,55.00,0.00,\"\",0.00,107.00,84.00,228.00,0.00,0.00,38.00,0.00,17.00,\n2015,5,12,\"B6\",\"1808\",\"IAD\",\"JFK\",54.00,25.00,0.00,\"\",0.00,62.00,47.00,228.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,13,\"B6\",\"1808\",\"IAD\",\"JFK\",44.00,29.00,0.00,\"\",0.00,76.00,46.00,228.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,14,\"B6\",\"1808\",\"IAD\",\"JFK\",-10.00,-17.00,0.00,\"\",0.00,84.00,50.00,228.00,,,,,,\n2015,5,15,\"B6\",\"1808\",\"IAD\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,73.00,49.00,228.00,,,,,,\n2015,5,17,\"B6\",\"1808\",\"IAD\",\"JFK\",-8.00,-12.00,0.00,\"\",0.00,87.00,50.00,228.00,,,,,,\n2015,5,18,\"B6\",\"1808\",\"IAD\",\"JFK\",440.00,410.00,0.00,\"\",0.00,61.00,46.00,228.00,36.00,0.00,197.00,0.00,177.00,\n2015,5,19,\"B6\",\"1808\",\"IAD\",\"JFK\",-2.00,3.00,0.00,\"\",0.00,96.00,69.00,228.00,,,,,,\n2015,5,20,\"B6\",\"1808\",\"IAD\",\"JFK\",130.00,104.00,0.00,\"\",0.00,65.00,45.00,228.00,3.00,0.00,0.00,0.00,101.00,\n2015,5,21,\"B6\",\"1808\",\"IAD\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,67.00,45.00,228.00,,,,,,\n2015,5,22,\"B6\",\"1808\",\"IAD\",\"JFK\",66.00,40.00,0.00,\"\",0.00,65.00,45.00,228.00,0.00,0.00,15.00,0.00,25.00,\n2015,5,24,\"B6\",\"1808\",\"IAD\",\"JFK\",-9.00,-28.00,0.00,\"\",0.00,72.00,47.00,228.00,,,,,,\n2015,5,25,\"B6\",\"1808\",\"IAD\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,70.00,49.00,228.00,,,,,,\n2015,5,26,\"B6\",\"1808\",\"IAD\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,81.00,47.00,228.00,,,,,,\n2015,5,27,\"B6\",\"1808\",\"IAD\",\"JFK\",,,1.00,\"C\",0.00,,,228.00,,,,,,\n2015,5,28,\"B6\",\"1808\",\"IAD\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,71.00,49.00,228.00,,,,,,\n2015,5,29,\"B6\",\"1808\",\"IAD\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,79.00,49.00,228.00,,,,,,\n2015,5,31,\"B6\",\"1808\",\"IAD\",\"JFK\",,,1.00,\"C\",0.00,,,228.00,,,,,,\n2015,5,1,\"B6\",\"1815\",\"SYR\",\"JFK\",-10.00,-32.00,0.00,\"\",0.00,69.00,50.00,209.00,,,,,,\n2015,5,2,\"B6\",\"1815\",\"SYR\",\"JFK\",-11.00,-45.00,0.00,\"\",0.00,57.00,43.00,209.00,,,,,,\n2015,5,3,\"B6\",\"1815\",\"SYR\",\"JFK\",-7.00,-31.00,0.00,\"\",0.00,67.00,54.00,209.00,,,,,,\n2015,5,4,\"B6\",\"1815\",\"SYR\",\"JFK\",-14.00,-44.00,0.00,\"\",0.00,61.00,47.00,209.00,,,,,,\n2015,5,5,\"B6\",\"1815\",\"SYR\",\"JFK\",-8.00,-30.00,0.00,\"\",0.00,69.00,45.00,209.00,,,,,,\n2015,5,6,\"B6\",\"1815\",\"SYR\",\"JFK\",110.00,92.00,0.00,\"\",0.00,73.00,52.00,209.00,92.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"B6\",\"1815\",\"SYR\",\"JFK\",-15.00,-30.00,0.00,\"\",0.00,76.00,57.00,209.00,,,,,,\n2015,5,8,\"B6\",\"1815\",\"SYR\",\"JFK\",174.00,157.00,0.00,\"\",0.00,74.00,50.00,209.00,0.00,0.00,154.00,0.00,3.00,\n2015,5,9,\"B6\",\"1815\",\"SYR\",\"JFK\",89.00,75.00,0.00,\"\",0.00,77.00,46.00,209.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,10,\"B6\",\"1815\",\"SYR\",\"JFK\",14.00,-7.00,0.00,\"\",0.00,70.00,56.00,209.00,,,,,,\n2015,5,11,\"B6\",\"1815\",\"SYR\",\"JFK\",99.00,77.00,0.00,\"\",0.00,69.00,52.00,209.00,0.00,0.00,77.00,0.00,0.00,\n2015,5,12,\"B6\",\"1815\",\"SYR\",\"JFK\",,,1.00,\"C\",0.00,,,209.00,,,,,,\n2015,5,13,\"B6\",\"1815\",\"SYR\",\"JFK\",-9.00,-37.00,0.00,\"\",0.00,63.00,38.00,209.00,,,,,,\n2015,5,14,\"B6\",\"1815\",\"SYR\",\"JFK\",-10.00,-36.00,0.00,\"\",0.00,65.00,50.00,209.00,,,,,,\n2015,5,15,\"B6\",\"1815\",\"SYR\",\"JFK\",-10.00,-39.00,0.00,\"\",0.00,62.00,50.00,209.00,,,,,,\n2015,5,16,\"B6\",\"1815\",\"SYR\",\"JFK\",103.00,71.00,0.00,\"\",0.00,59.00,44.00,209.00,0.00,0.00,0.00,0.00,71.00,\n2015,5,17,\"B6\",\"1815\",\"SYR\",\"JFK\",-11.00,-30.00,0.00,\"\",0.00,72.00,51.00,209.00,,,,,,\n2015,5,18,\"B6\",\"1815\",\"SYR\",\"JFK\",214.00,232.00,0.00,\"\",0.00,109.00,62.00,209.00,0.00,0.00,25.00,0.00,207.00,\n2015,5,19,\"B6\",\"1815\",\"SYR\",\"JFK\",-15.00,-34.00,0.00,\"\",0.00,72.00,52.00,209.00,,,,,,\n2015,5,20,\"B6\",\"1815\",\"SYR\",\"JFK\",29.00,14.00,0.00,\"\",0.00,76.00,49.00,209.00,,,,,,\n2015,5,21,\"B6\",\"1815\",\"SYR\",\"JFK\",-15.00,-40.00,0.00,\"\",0.00,66.00,50.00,209.00,,,,,,\n2015,5,22,\"B6\",\"1815\",\"SYR\",\"JFK\",58.00,53.00,0.00,\"\",0.00,86.00,44.00,209.00,0.00,0.00,42.00,0.00,11.00,\n2015,5,23,\"B6\",\"1815\",\"SYR\",\"JFK\",-15.00,-47.00,0.00,\"\",0.00,59.00,42.00,209.00,,,,,,\n2015,5,24,\"B6\",\"1815\",\"SYR\",\"JFK\",-10.00,-47.00,0.00,\"\",0.00,54.00,42.00,209.00,,,,,,\n2015,5,25,\"B6\",\"1815\",\"SYR\",\"JFK\",-6.00,-39.00,0.00,\"\",0.00,58.00,41.00,209.00,,,,,,\n2015,5,26,\"B6\",\"1815\",\"SYR\",\"JFK\",-10.00,-44.00,0.00,\"\",0.00,57.00,45.00,209.00,,,,,,\n2015,5,27,\"B6\",\"1815\",\"SYR\",\"JFK\",,,1.00,\"C\",0.00,,,209.00,,,,,,\n2015,5,28,\"B6\",\"1815\",\"SYR\",\"JFK\",-4.00,-31.00,0.00,\"\",0.00,64.00,49.00,209.00,,,,,,\n2015,5,29,\"B6\",\"1815\",\"SYR\",\"JFK\",-14.00,-44.00,0.00,\"\",0.00,61.00,47.00,209.00,,,,,,\n2015,5,30,\"B6\",\"1815\",\"SYR\",\"JFK\",-19.00,-52.00,0.00,\"\",0.00,58.00,46.00,209.00,,,,,,\n2015,5,31,\"B6\",\"1815\",\"SYR\",\"JFK\",,,1.00,\"C\",0.00,,,209.00,,,,,,\n2015,5,1,\"B6\",\"1816\",\"JFK\",\"SYR\",27.00,9.00,0.00,\"\",0.00,58.00,38.00,209.00,,,,,,\n2015,5,2,\"B6\",\"1816\",\"JFK\",\"SYR\",-7.00,-15.00,0.00,\"\",0.00,68.00,40.00,209.00,,,,,,\n2015,5,3,\"B6\",\"1816\",\"JFK\",\"SYR\",-5.00,-10.00,0.00,\"\",0.00,71.00,40.00,209.00,,,,,,\n2015,5,4,\"B6\",\"1816\",\"JFK\",\"SYR\",5.00,6.00,0.00,\"\",0.00,77.00,39.00,209.00,,,,,,\n2015,5,5,\"B6\",\"1816\",\"JFK\",\"SYR\",-4.00,-12.00,0.00,\"\",0.00,68.00,39.00,209.00,,,,,,\n2015,5,6,\"B6\",\"1816\",\"JFK\",\"SYR\",20.00,1.00,0.00,\"\",0.00,57.00,39.00,209.00,,,,,,\n2015,5,7,\"B6\",\"1816\",\"JFK\",\"SYR\",-7.00,-9.00,0.00,\"\",0.00,74.00,41.00,209.00,,,,,,\n2015,5,8,\"B6\",\"1816\",\"JFK\",\"SYR\",104.00,90.00,0.00,\"\",0.00,62.00,38.00,209.00,9.00,0.00,0.00,0.00,81.00,\n2015,5,9,\"B6\",\"1816\",\"JFK\",\"SYR\",-4.00,-4.00,0.00,\"\",0.00,76.00,42.00,209.00,,,,,,\n2015,5,10,\"B6\",\"1816\",\"JFK\",\"SYR\",19.00,8.00,0.00,\"\",0.00,65.00,40.00,209.00,,,,,,\n2015,5,11,\"B6\",\"1816\",\"JFK\",\"SYR\",84.00,63.00,0.00,\"\",0.00,55.00,38.00,209.00,1.00,0.00,0.00,0.00,62.00,\n2015,5,12,\"B6\",\"1816\",\"JFK\",\"SYR\",-6.00,-1.00,0.00,\"\",0.00,81.00,44.00,209.00,,,,,,\n2015,5,13,\"B6\",\"1816\",\"JFK\",\"SYR\",46.00,29.00,0.00,\"\",0.00,59.00,43.00,209.00,2.00,0.00,0.00,0.00,27.00,\n2015,5,14,\"B6\",\"1816\",\"JFK\",\"SYR\",20.00,7.00,0.00,\"\",0.00,63.00,41.00,209.00,,,,,,\n2015,5,15,\"B6\",\"1816\",\"JFK\",\"SYR\",27.00,19.00,0.00,\"\",0.00,68.00,41.00,209.00,8.00,0.00,0.00,0.00,11.00,\n2015,5,16,\"B6\",\"1816\",\"JFK\",\"SYR\",-2.00,-5.00,0.00,\"\",0.00,73.00,39.00,209.00,,,,,,\n2015,5,17,\"B6\",\"1816\",\"JFK\",\"SYR\",25.00,12.00,0.00,\"\",0.00,63.00,39.00,209.00,,,,,,\n2015,5,18,\"B6\",\"1816\",\"JFK\",\"SYR\",192.00,178.00,0.00,\"\",0.00,62.00,43.00,209.00,43.00,0.00,0.00,0.00,135.00,\n2015,5,19,\"B6\",\"1816\",\"JFK\",\"SYR\",35.00,35.00,0.00,\"\",0.00,76.00,43.00,209.00,28.00,0.00,0.00,0.00,7.00,\n2015,5,20,\"B6\",\"1816\",\"JFK\",\"SYR\",56.00,42.00,0.00,\"\",0.00,62.00,40.00,209.00,1.00,0.00,0.00,0.00,41.00,\n2015,5,21,\"B6\",\"1816\",\"JFK\",\"SYR\",-8.00,-13.00,0.00,\"\",0.00,71.00,39.00,209.00,,,,,,\n2015,5,22,\"B6\",\"1816\",\"JFK\",\"SYR\",40.00,33.00,0.00,\"\",0.00,69.00,44.00,209.00,12.00,0.00,0.00,0.00,21.00,\n2015,5,23,\"B6\",\"1816\",\"JFK\",\"SYR\",-5.00,-11.00,0.00,\"\",0.00,70.00,42.00,209.00,,,,,,\n2015,5,24,\"B6\",\"1816\",\"JFK\",\"SYR\",-7.00,-13.00,0.00,\"\",0.00,70.00,43.00,209.00,,,,,,\n2015,5,25,\"B6\",\"1816\",\"JFK\",\"SYR\",-2.00,-22.00,0.00,\"\",0.00,56.00,39.00,209.00,,,,,,\n2015,5,26,\"B6\",\"1816\",\"JFK\",\"SYR\",-7.00,-4.00,0.00,\"\",0.00,79.00,37.00,209.00,,,,,,\n2015,5,27,\"B6\",\"1816\",\"JFK\",\"SYR\",52.00,36.00,0.00,\"\",0.00,60.00,38.00,209.00,3.00,0.00,0.00,0.00,33.00,\n2015,5,28,\"B6\",\"1816\",\"JFK\",\"SYR\",-9.00,-16.00,0.00,\"\",0.00,69.00,42.00,209.00,,,,,,\n2015,5,29,\"B6\",\"1816\",\"JFK\",\"SYR\",-1.00,-16.00,0.00,\"\",0.00,61.00,40.00,209.00,,,,,,\n2015,5,30,\"B6\",\"1816\",\"JFK\",\"SYR\",-2.00,-18.00,0.00,\"\",0.00,60.00,38.00,209.00,,,,,,\n2015,5,31,\"B6\",\"1816\",\"JFK\",\"SYR\",191.00,194.00,0.00,\"\",0.00,79.00,41.00,209.00,0.00,5.00,3.00,0.00,186.00,\n2015,5,1,\"DL\",\"208\",\"JFK\",\"MCO\",-4.00,-14.00,0.00,\"\",0.00,177.00,129.00,944.00,,,,,,\n2015,5,1,\"DL\",\"221\",\"LGA\",\"ATL\",-6.00,-23.00,0.00,\"\",0.00,148.00,103.00,762.00,,,,,,\n2015,5,1,\"DL\",\"234\",\"PIT\",\"JFK\",,,1.00,\"A\",0.00,,,340.00,,,,,,\n2015,5,1,\"DL\",\"326\",\"SJU\",\"JFK\",-7.00,-29.00,0.00,\"\",0.00,218.00,199.00,1598.00,,,,,,\n2015,5,1,\"DL\",\"332\",\"SJU\",\"JFK\",-12.00,-21.00,0.00,\"\",0.00,237.00,205.00,1598.00,,,,,,\n2015,5,1,\"DL\",\"333\",\"MSP\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,153.00,133.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"342\",\"SFO\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,332.00,309.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"347\",\"LGA\",\"ATL\",-2.00,-21.00,0.00,\"\",0.00,139.00,104.00,762.00,,,,,,\n2015,5,1,\"DL\",\"348\",\"SJU\",\"JFK\",-14.00,-35.00,0.00,\"\",0.00,221.00,198.00,1598.00,,,,,,\n2015,5,1,\"DL\",\"350\",\"LGA\",\"ATL\",-1.00,-26.00,0.00,\"\",0.00,128.00,103.00,762.00,,,,,,\n2015,5,1,\"DL\",\"400\",\"PDX\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,312.00,293.00,2454.00,,,,,,\n2015,5,1,\"DL\",\"401\",\"AUS\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,232.00,209.00,1521.00,,,,,,\n2015,5,1,\"DL\",\"403\",\"PDX\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,315.00,289.00,2454.00,,,,,,\n2015,5,1,\"DL\",\"404\",\"JFK\",\"ATL\",0.00,-32.00,0.00,\"\",0.00,137.00,102.00,760.00,,,,,,\n2015,5,1,\"DL\",\"407\",\"MCO\",\"JFK\",21.00,-2.00,0.00,\"\",0.00,146.00,124.00,944.00,,,,,,\n2015,5,1,\"DL\",\"409\",\"JFK\",\"SJU\",-6.00,-11.00,0.00,\"\",0.00,242.00,203.00,1598.00,,,,,,\n2015,5,1,\"DL\",\"412\",\"LAX\",\"JFK\",4.00,-5.00,0.00,\"\",0.00,330.00,299.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"414\",\"SFO\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,332.00,304.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"415\",\"JFK\",\"SFO\",4.00,-26.00,0.00,\"\",0.00,378.00,353.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"417\",\"JFK\",\"SEA\",28.00,3.00,0.00,\"\",0.00,357.00,321.00,2422.00,,,,,,\n2015,5,1,\"DL\",\"418\",\"SEA\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,313.00,287.00,2422.00,,,,,,\n2015,5,1,\"DL\",\"419\",\"JFK\",\"SEA\",17.00,-1.00,0.00,\"\",0.00,361.00,326.00,2422.00,,,,,,\n2015,5,1,\"DL\",\"420\",\"JFK\",\"LAX\",66.00,9.00,0.00,\"\",0.00,341.00,318.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"421\",\"JFK\",\"ATL\",-7.00,-35.00,0.00,\"\",0.00,139.00,105.00,760.00,,,,,,\n2015,5,1,\"DL\",\"422\",\"JFK\",\"LAX\",-1.00,5.00,0.00,\"\",0.00,386.00,317.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"423\",\"JFK\",\"LAX\",-3.00,-33.00,0.00,\"\",0.00,343.00,315.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"424\",\"JFK\",\"LAX\",-2.00,-18.00,0.00,\"\",0.00,354.00,313.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"426\",\"JFK\",\"MCO\",-1.00,1.00,0.00,\"\",0.00,174.00,138.00,944.00,,,,,,\n2015,5,1,\"DL\",\"427\",\"JFK\",\"LAX\",9.00,-16.00,0.00,\"\",0.00,363.00,317.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"428\",\"JFK\",\"PDX\",25.00,21.00,0.00,\"\",0.00,366.00,312.00,2454.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"DL\",\"430\",\"JFK\",\"SFO\",-8.00,-31.00,0.00,\"\",0.00,361.00,335.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"431\",\"JFK\",\"SFO\",-1.00,-36.00,0.00,\"\",0.00,374.00,343.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"433\",\"JFK\",\"SEA\",-2.00,-18.00,0.00,\"\",0.00,346.00,320.00,2422.00,,,,,,\n2015,5,1,\"DL\",\"434\",\"JFK\",\"SFO\",-7.00,-24.00,0.00,\"\",0.00,387.00,337.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"435\",\"JFK\",\"SFO\",48.00,14.00,0.00,\"\",0.00,370.00,340.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"436\",\"JFK\",\"LAS\",-5.00,-40.00,0.00,\"\",0.00,315.00,293.00,2248.00,,,,,,\n2015,5,1,\"DL\",\"437\",\"JFK\",\"BOS\",-4.00,-18.00,0.00,\"\",0.00,63.00,37.00,187.00,,,,,,\n2015,5,1,\"DL\",\"438\",\"JFK\",\"MCO\",-4.00,-9.00,0.00,\"\",0.00,163.00,139.00,944.00,,,,,,\n2015,5,1,\"DL\",\"439\",\"JFK\",\"MSP\",-5.00,-25.00,0.00,\"\",0.00,172.00,148.00,1029.00,,,,,,\n2015,5,1,\"DL\",\"440\",\"JFK\",\"PDX\",14.00,-16.00,0.00,\"\",0.00,348.00,323.00,2454.00,,,,,,\n2015,5,1,\"DL\",\"441\",\"JFK\",\"MIA\",1.00,1.00,0.00,\"\",0.00,181.00,154.00,1089.00,,,,,,\n2015,5,1,\"DL\",\"442\",\"JFK\",\"SJU\",-5.00,-13.00,0.00,\"\",0.00,226.00,197.00,1598.00,,,,,,\n2015,5,1,\"DL\",\"443\",\"JFK\",\"LAS\",-2.00,-33.00,0.00,\"\",0.00,323.00,297.00,2248.00,,,,,,\n2015,5,1,\"DL\",\"444\",\"SLC\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,266.00,236.00,1990.00,,,,,,\n2015,5,1,\"DL\",\"445\",\"JFK\",\"BUF\",-4.00,-19.00,0.00,\"\",0.00,76.00,50.00,301.00,,,,,,\n2015,5,1,\"DL\",\"447\",\"JFK\",\"LAX\",20.00,-9.00,0.00,\"\",0.00,361.00,321.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"448\",\"JFK\",\"SEA\",-3.00,-13.00,0.00,\"\",0.00,350.00,321.00,2422.00,,,,,,\n2015,5,1,\"DL\",\"453\",\"JFK\",\"LAS\",-1.00,-32.00,0.00,\"\",0.00,325.00,294.00,2248.00,,,,,,\n2015,5,1,\"DL\",\"454\",\"JFK\",\"STT\",-10.00,-24.00,0.00,\"\",0.00,232.00,195.00,1623.00,,,,,,\n2015,5,1,\"DL\",\"455\",\"JFK\",\"SAN\",26.00,5.00,0.00,\"\",0.00,357.00,317.00,2446.00,,,,,,\n2015,5,1,\"DL\",\"456\",\"JFK\",\"TPA\",0.00,-3.00,0.00,\"\",0.00,168.00,145.00,1005.00,,,,,,\n2015,5,1,\"DL\",\"458\",\"JFK\",\"LAS\",-4.00,-15.00,0.00,\"\",0.00,342.00,304.00,2248.00,,,,,,\n2015,5,1,\"DL\",\"459\",\"JFK\",\"CHS\",21.00,13.00,0.00,\"\",0.00,128.00,102.00,636.00,,,,,,\n2015,5,1,\"DL\",\"460\",\"JFK\",\"SLC\",-1.00,-14.00,0.00,\"\",0.00,312.00,280.00,1990.00,,,,,,\n2015,5,1,\"DL\",\"462\",\"JFK\",\"SLC\",-2.00,-32.00,0.00,\"\",0.00,299.00,269.00,1990.00,,,,,,\n2015,5,1,\"DL\",\"463\",\"JFK\",\"PIT\",1.00,-21.00,0.00,\"\",0.00,83.00,57.00,340.00,,,,,,\n2015,5,1,\"DL\",\"465\",\"JFK\",\"ATL\",3.00,-20.00,0.00,\"\",0.00,128.00,102.00,760.00,,,,,,\n2015,5,1,\"DL\",\"466\",\"SLC\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,259.00,236.00,1990.00,,,,,,\n2015,5,1,\"DL\",\"468\",\"SFO\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,336.00,313.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"469\",\"JFK\",\"SFO\",-3.00,-15.00,0.00,\"\",0.00,378.00,350.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"472\",\"JFK\",\"LAX\",0.00,-29.00,0.00,\"\",0.00,353.00,314.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"476\",\"LAX\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,327.00,301.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"477\",\"JFK\",\"LAX\",28.00,-10.00,0.00,\"\",0.00,357.00,316.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"478\",\"ATL\",\"JFK\",3.00,-16.00,0.00,\"\",0.00,133.00,104.00,760.00,,,,,,\n2015,5,1,\"DL\",\"480\",\"JFK\",\"SJU\",25.00,18.00,0.00,\"\",0.00,231.00,198.00,1598.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"DL\",\"482\",\"JFK\",\"AUS\",11.00,-41.00,0.00,\"\",0.00,212.00,187.00,1521.00,,,,,,\n2015,5,1,\"DL\",\"486\",\"JFK\",\"LAS\",-4.00,-21.00,0.00,\"\",0.00,315.00,295.00,2248.00,,,,,,\n2015,5,1,\"DL\",\"488\",\"JFK\",\"SJU\",1.00,-1.00,0.00,\"\",0.00,225.00,196.00,1598.00,,,,,,\n2015,5,1,\"DL\",\"491\",\"JFK\",\"FLL\",-4.00,-1.00,0.00,\"\",0.00,187.00,156.00,1069.00,,,,,,\n2015,5,1,\"DL\",\"492\",\"JFK\",\"SJU\",0.00,8.00,0.00,\"\",0.00,250.00,204.00,1598.00,,,,,,\n2015,5,1,\"DL\",\"494\",\"JFK\",\"SLC\",-2.00,-10.00,0.00,\"\",0.00,297.00,269.00,1990.00,,,,,,\n2015,5,1,\"DL\",\"496\",\"JFK\",\"BOS\",-5.00,-23.00,0.00,\"\",0.00,65.00,37.00,187.00,,,,,,\n2015,5,1,\"DL\",\"497\",\"JFK\",\"ATL\",0.00,-22.00,0.00,\"\",0.00,131.00,102.00,760.00,,,,,,\n2015,5,1,\"DL\",\"498\",\"JFK\",\"SFO\",8.00,-25.00,0.00,\"\",0.00,375.00,347.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"499\",\"JFK\",\"SLC\",-3.00,-13.00,0.00,\"\",0.00,300.00,266.00,1990.00,,,,,,\n2015,5,1,\"DL\",\"511\",\"SJU\",\"JFK\",-10.00,-19.00,0.00,\"\",0.00,240.00,199.00,1598.00,,,,,,\n2015,5,1,\"DL\",\"527\",\"RSW\",\"JFK\",36.00,25.00,0.00,\"\",0.00,153.00,125.00,1074.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"DL\",\"528\",\"LGA\",\"MSP\",-5.00,-7.00,0.00,\"\",0.00,183.00,141.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"541\",\"LAS\",\"JFK\",-9.00,-13.00,0.00,\"\",0.00,295.00,264.00,2248.00,,,,,,\n2015,5,1,\"DL\",\"544\",\"ALB\",\"ATL\",-4.00,-26.00,0.00,\"\",0.00,133.00,119.00,853.00,,,,,,\n2015,5,1,\"DL\",\"582\",\"DTW\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,103.00,83.00,502.00,,,,,,\n2015,5,1,\"DL\",\"583\",\"LGA\",\"DTW\",-3.00,-16.00,0.00,\"\",0.00,101.00,72.00,502.00,,,,,,\n2015,5,1,\"DL\",\"662\",\"BUF\",\"MSP\",-3.00,-19.00,0.00,\"\",0.00,128.00,101.00,735.00,,,,,,\n2015,5,1,\"DL\",\"664\",\"TPA\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,147.00,131.00,1010.00,,,,,,\n2015,5,1,\"DL\",\"676\",\"STT\",\"JFK\",-14.00,-27.00,0.00,\"\",0.00,239.00,206.00,1623.00,,,,,,\n2015,5,1,\"DL\",\"707\",\"DTW\",\"ALB\",-6.00,-5.00,0.00,\"\",0.00,98.00,72.00,489.00,,,,,,\n2015,5,1,\"DL\",\"707\",\"ALB\",\"DTW\",-6.00,-16.00,0.00,\"\",0.00,100.00,77.00,489.00,,,,,,\n2015,5,1,\"DL\",\"714\",\"DTW\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,99.00,76.00,502.00,,,,,,\n2015,5,1,\"DL\",\"723\",\"ATL\",\"BUF\",-5.00,-19.00,0.00,\"\",0.00,113.00,99.00,712.00,,,,,,\n2015,5,1,\"DL\",\"723\",\"BUF\",\"ATL\",-4.00,-27.00,0.00,\"\",0.00,108.00,94.00,712.00,,,,,,\n2015,5,1,\"DL\",\"725\",\"ATL\",\"LGA\",-3.00,9.00,0.00,\"\",0.00,146.00,99.00,762.00,,,,,,\n2015,5,1,\"DL\",\"729\",\"LAS\",\"JFK\",5.00,-3.00,0.00,\"\",0.00,297.00,273.00,2248.00,,,,,,\n2015,5,1,\"DL\",\"731\",\"LGA\",\"DTW\",0.00,-9.00,0.00,\"\",0.00,104.00,81.00,502.00,,,,,,\n2015,5,1,\"DL\",\"739\",\"BOS\",\"JFK\",1.00,10.00,0.00,\"\",0.00,89.00,50.00,187.00,,,,,,\n2015,5,1,\"DL\",\"750\",\"BOS\",\"JFK\",-1.00,-9.00,0.00,\"\",0.00,72.00,40.00,187.00,,,,,,\n2015,5,1,\"DL\",\"763\",\"BOS\",\"JFK\",2.00,-20.00,0.00,\"\",0.00,56.00,40.00,187.00,,,,,,\n2015,5,1,\"DL\",\"772\",\"PBI\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,150.00,129.00,1035.00,,,,,,\n2015,5,1,\"DL\",\"782\",\"MIA\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,167.00,140.00,1089.00,,,,,,\n2015,5,1,\"DL\",\"787\",\"MCO\",\"JFK\",2.00,-22.00,0.00,\"\",0.00,142.00,116.00,944.00,,,,,,\n2015,5,1,\"DL\",\"789\",\"MIA\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,172.00,139.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"791\",\"LAX\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,316.00,296.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"792\",\"PBI\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,156.00,127.00,1028.00,,,,,,\n2015,5,1,\"DL\",\"793\",\"BOS\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,90.00,41.00,187.00,,,,,,\n2015,5,1,\"DL\",\"802\",\"ATL\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,128.00,104.00,762.00,,,,,,\n2015,5,1,\"DL\",\"804\",\"LGA\",\"MSP\",-5.00,-39.00,0.00,\"\",0.00,160.00,138.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"856\",\"SAN\",\"JFK\",-3.00,-6.00,0.00,\"\",0.00,334.00,305.00,2446.00,,,,,,\n2015,5,1,\"DL\",\"862\",\"SDF\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,132.00,93.00,659.00,,,,,,\n2015,5,1,\"DL\",\"871\",\"MSP\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,163.00,136.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"874\",\"LGA\",\"MIA\",-5.00,-8.00,0.00,\"\",0.00,202.00,156.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"878\",\"RSW\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,162.00,139.00,1080.00,,,,,,\n2015,5,1,\"DL\",\"884\",\"LGA\",\"DEN\",-1.00,-24.00,0.00,\"\",0.00,251.00,220.00,1620.00,,,,,,\n2015,5,1,\"DL\",\"889\",\"MSP\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,158.00,140.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"904\",\"LGA\",\"ATL\",-2.00,-11.00,0.00,\"\",0.00,140.00,106.00,762.00,,,,,,\n2015,5,1,\"DL\",\"906\",\"ATL\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,136.00,107.00,762.00,,,,,,\n2015,5,1,\"DL\",\"909\",\"LGA\",\"MIA\",-2.00,-7.00,0.00,\"\",0.00,189.00,162.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"910\",\"MCO\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,144.00,122.00,950.00,,,,,,\n2015,5,1,\"DL\",\"917\",\"BUF\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,81.00,62.00,301.00,,,,,,\n2015,5,1,\"DL\",\"928\",\"DEN\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,218.00,198.00,1620.00,,,,,,\n2015,5,1,\"DL\",\"939\",\"MCO\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,154.00,125.00,950.00,,,,,,\n2015,5,1,\"DL\",\"959\",\"DTW\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,105.00,84.00,509.00,,,,,,\n2015,5,1,\"DL\",\"964\",\"LGA\",\"ATL\",-7.00,-32.00,0.00,\"\",0.00,121.00,99.00,762.00,,,,,,\n2015,5,1,\"DL\",\"965\",\"MCO\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,151.00,123.00,950.00,,,,,,\n2015,5,1,\"DL\",\"971\",\"LGA\",\"DEN\",-4.00,-15.00,0.00,\"\",0.00,256.00,223.00,1620.00,,,,,,\n2015,5,1,\"DL\",\"986\",\"ATL\",\"LGA\",0.00,-6.00,0.00,\"\",0.00,128.00,99.00,762.00,,,,,,\n2015,5,1,\"DL\",\"997\",\"DTW\",\"LGA\",-2.00,10.00,0.00,\"\",0.00,116.00,81.00,502.00,,,,,,\n2015,5,1,\"AA\",\"350\",\"ORD\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,127.00,109.00,733.00,,,,,,\n2015,5,2,\"AA\",\"350\",\"ORD\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,119.00,102.00,733.00,,,,,,\n2015,5,3,\"AA\",\"350\",\"ORD\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,130.00,100.00,733.00,,,,,,\n2015,5,4,\"AA\",\"350\",\"ORD\",\"LGA\",8.00,-9.00,0.00,\"\",0.00,116.00,97.00,733.00,,,,,,\n2015,5,5,\"AA\",\"350\",\"ORD\",\"LGA\",35.00,21.00,0.00,\"\",0.00,119.00,101.00,733.00,2.00,0.00,0.00,0.00,19.00,\n2015,5,6,\"AA\",\"350\",\"ORD\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,123.00,104.00,733.00,,,,,,\n2015,5,7,\"AA\",\"350\",\"ORD\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,123.00,101.00,733.00,,,,,,\n2015,5,8,\"AA\",\"350\",\"ORD\",\"LGA\",113.00,116.00,0.00,\"\",0.00,136.00,111.00,733.00,0.00,12.00,3.00,0.00,101.00,\n2015,5,9,\"AA\",\"350\",\"ORD\",\"LGA\",8.00,2.00,0.00,\"\",0.00,127.00,106.00,733.00,,,,,,\n2015,5,10,\"AA\",\"350\",\"ORD\",\"LGA\",16.00,18.00,0.00,\"\",0.00,135.00,100.00,733.00,0.00,0.00,2.00,0.00,16.00,\n2015,5,11,\"AA\",\"350\",\"ORD\",\"LGA\",6.00,7.00,0.00,\"\",0.00,134.00,105.00,733.00,,,,,,\n2015,5,12,\"AA\",\"350\",\"ORD\",\"LGA\",13.00,-9.00,0.00,\"\",0.00,111.00,91.00,733.00,,,,,,\n2015,5,13,\"AA\",\"350\",\"ORD\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,120.00,89.00,733.00,,,,,,\n2015,5,14,\"AA\",\"350\",\"ORD\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,132.00,95.00,733.00,,,,,,\n2015,5,15,\"AA\",\"350\",\"ORD\",\"LGA\",20.00,9.00,0.00,\"\",0.00,122.00,96.00,733.00,,,,,,\n2015,5,16,\"AA\",\"350\",\"ORD\",\"LGA\",-3.00,11.00,0.00,\"\",0.00,147.00,122.00,733.00,,,,,,\n2015,5,17,\"AA\",\"350\",\"ORD\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,119.00,96.00,733.00,,,,,,\n2015,5,18,\"AA\",\"350\",\"ORD\",\"LGA\",14.00,46.00,0.00,\"\",0.00,165.00,122.00,733.00,0.00,0.00,35.00,0.00,11.00,\n2015,5,19,\"AA\",\"350\",\"ORD\",\"LGA\",0.00,-6.00,0.00,\"\",0.00,127.00,102.00,733.00,,,,,,\n2015,5,20,\"AA\",\"350\",\"ORD\",\"LGA\",9.00,21.00,0.00,\"\",0.00,145.00,91.00,733.00,7.00,0.00,12.00,0.00,2.00,\n2015,5,21,\"AA\",\"350\",\"ORD\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,112.00,93.00,733.00,,,,,,\n2015,5,22,\"AA\",\"350\",\"ORD\",\"LGA\",24.00,7.00,0.00,\"\",0.00,116.00,89.00,733.00,,,,,,\n2015,5,23,\"AA\",\"350\",\"ORD\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,125.00,94.00,733.00,,,,,,\n2015,5,24,\"AA\",\"350\",\"ORD\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,127.00,92.00,733.00,,,,,,\n2015,5,25,\"AA\",\"350\",\"ORD\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,129.00,105.00,733.00,,,,,,\n2015,5,26,\"AA\",\"350\",\"ORD\",\"LGA\",-2.00,10.00,0.00,\"\",0.00,145.00,100.00,733.00,,,,,,\n2015,5,27,\"AA\",\"350\",\"ORD\",\"LGA\",76.00,68.00,0.00,\"\",0.00,125.00,100.00,733.00,35.00,0.00,21.00,0.00,12.00,\n2015,5,28,\"AA\",\"350\",\"ORD\",\"LGA\",-8.00,-12.00,0.00,\"\",0.00,129.00,95.00,733.00,,,,,,\n2015,5,29,\"AA\",\"350\",\"ORD\",\"LGA\",6.00,-5.00,0.00,\"\",0.00,122.00,100.00,733.00,,,,,,\n2015,5,30,\"AA\",\"350\",\"ORD\",\"LGA\",0.00,0.00,0.00,\"\",0.00,133.00,102.00,733.00,,,,,,\n2015,5,31,\"AA\",\"350\",\"ORD\",\"LGA\",65.00,82.00,0.00,\"\",0.00,150.00,123.00,733.00,0.00,0.00,77.00,0.00,5.00,\n2015,5,1,\"AA\",\"352\",\"ORD\",\"LGA\",36.00,31.00,0.00,\"\",0.00,139.00,107.00,733.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"AA\",\"352\",\"ORD\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,131.00,105.00,733.00,,,,,,\n2015,5,4,\"AA\",\"352\",\"ORD\",\"LGA\",-9.00,-26.00,0.00,\"\",0.00,127.00,101.00,733.00,,,,,,\n2015,5,5,\"AA\",\"352\",\"ORD\",\"LGA\",-6.00,-25.00,0.00,\"\",0.00,125.00,100.00,733.00,,,,,,\n2015,5,6,\"AA\",\"352\",\"ORD\",\"LGA\",-8.00,-29.00,0.00,\"\",0.00,123.00,102.00,733.00,,,,,,\n2015,5,7,\"AA\",\"352\",\"ORD\",\"LGA\",24.00,22.00,0.00,\"\",0.00,140.00,105.00,733.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"AA\",\"352\",\"ORD\",\"LGA\",99.00,119.00,0.00,\"\",0.00,162.00,109.00,733.00,45.00,54.00,20.00,0.00,0.00,\n2015,5,10,\"AA\",\"352\",\"ORD\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,129.00,105.00,733.00,,,,,,\n2015,5,11,\"AA\",\"352\",\"ORD\",\"LGA\",5.00,0.00,0.00,\"\",0.00,137.00,103.00,733.00,,,,,,\n2015,5,12,\"AA\",\"352\",\"ORD\",\"LGA\",-9.00,-30.00,0.00,\"\",0.00,121.00,91.00,733.00,,,,,,\n2015,5,13,\"AA\",\"352\",\"ORD\",\"LGA\",-3.00,-25.00,0.00,\"\",0.00,120.00,93.00,733.00,,,,,,\n2015,5,14,\"AA\",\"352\",\"ORD\",\"LGA\",-4.00,-34.00,0.00,\"\",0.00,112.00,94.00,733.00,,,,,,\n2015,5,15,\"AA\",\"352\",\"ORD\",\"LGA\",-3.00,-29.00,0.00,\"\",0.00,116.00,100.00,733.00,,,,,,\n2015,5,17,\"AA\",\"352\",\"ORD\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,117.00,102.00,733.00,,,,,,\n2015,5,18,\"AA\",\"352\",\"ORD\",\"LGA\",14.00,63.00,0.00,\"\",0.00,191.00,99.00,733.00,0.00,0.00,49.00,0.00,14.00,\n2015,5,19,\"AA\",\"352\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,20,\"AA\",\"352\",\"ORD\",\"LGA\",49.00,67.00,0.00,\"\",0.00,160.00,95.00,733.00,0.00,0.00,18.00,0.00,49.00,\n2015,5,21,\"AA\",\"352\",\"ORD\",\"LGA\",0.00,-29.00,0.00,\"\",0.00,113.00,97.00,733.00,,,,,,\n2015,5,22,\"AA\",\"352\",\"ORD\",\"LGA\",-2.00,-33.00,0.00,\"\",0.00,111.00,93.00,733.00,,,,,,\n2015,5,24,\"AA\",\"352\",\"ORD\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,117.00,99.00,733.00,,,,,,\n2015,5,25,\"AA\",\"352\",\"ORD\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,127.00,99.00,733.00,,,,,,\n2015,5,26,\"AA\",\"352\",\"ORD\",\"LGA\",-4.00,5.00,0.00,\"\",0.00,151.00,99.00,733.00,,,,,,\n2015,5,27,\"AA\",\"352\",\"ORD\",\"LGA\",118.00,160.00,0.00,\"\",0.00,184.00,125.00,733.00,0.00,0.00,160.00,0.00,0.00,\n2015,5,28,\"AA\",\"352\",\"ORD\",\"LGA\",-4.00,-24.00,0.00,\"\",0.00,122.00,98.00,733.00,,,,,,\n2015,5,29,\"AA\",\"352\",\"ORD\",\"LGA\",88.00,111.00,0.00,\"\",0.00,165.00,103.00,733.00,6.00,0.00,23.00,0.00,82.00,\n2015,5,31,\"AA\",\"352\",\"ORD\",\"LGA\",82.00,88.00,0.00,\"\",0.00,137.00,118.00,733.00,0.00,0.00,86.00,0.00,2.00,\n2015,5,1,\"AA\",\"355\",\"LGA\",\"ORD\",13.00,-23.00,0.00,\"\",0.00,132.00,104.00,733.00,,,,,,\n2015,5,3,\"AA\",\"355\",\"LGA\",\"ORD\",28.00,8.00,0.00,\"\",0.00,148.00,114.00,733.00,,,,,,\n2015,5,4,\"AA\",\"355\",\"LGA\",\"ORD\",-8.00,-36.00,0.00,\"\",0.00,140.00,116.00,733.00,,,,,,\n2015,5,5,\"AA\",\"355\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,6,\"AA\",\"355\",\"LGA\",\"ORD\",-2.00,-17.00,0.00,\"\",0.00,153.00,118.00,733.00,,,,,,\n2015,5,7,\"AA\",\"355\",\"LGA\",\"ORD\",89.00,67.00,0.00,\"\",0.00,146.00,106.00,733.00,0.00,0.00,0.00,0.00,67.00,\n2015,5,8,\"AA\",\"355\",\"LGA\",\"ORD\",18.00,87.00,0.00,\"\",0.00,237.00,108.00,733.00,18.00,0.00,69.00,0.00,0.00,\n2015,5,10,\"AA\",\"355\",\"LGA\",\"ORD\",-3.00,-5.00,0.00,\"\",0.00,166.00,114.00,733.00,,,,,,\n2015,5,11,\"AA\",\"355\",\"LGA\",\"ORD\",88.00,55.00,0.00,\"\",0.00,135.00,118.00,733.00,0.00,0.00,0.00,0.00,55.00,\n2015,5,12,\"AA\",\"355\",\"LGA\",\"ORD\",-7.00,-20.00,0.00,\"\",0.00,155.00,120.00,733.00,,,,,,\n2015,5,13,\"AA\",\"355\",\"LGA\",\"ORD\",8.00,5.00,0.00,\"\",0.00,165.00,125.00,733.00,,,,,,\n2015,5,14,\"AA\",\"355\",\"LGA\",\"ORD\",-1.00,-6.00,0.00,\"\",0.00,163.00,118.00,733.00,,,,,,\n2015,5,15,\"AA\",\"355\",\"LGA\",\"ORD\",45.00,16.00,0.00,\"\",0.00,139.00,111.00,733.00,6.00,0.00,0.00,0.00,10.00,\n2015,5,17,\"AA\",\"355\",\"LGA\",\"ORD\",-2.00,-17.00,0.00,\"\",0.00,153.00,106.00,733.00,,,,,,\n2015,5,18,\"AA\",\"355\",\"LGA\",\"ORD\",218.00,268.00,0.00,\"\",0.00,218.00,132.00,733.00,4.00,0.00,50.00,0.00,214.00,\n2015,5,19,\"AA\",\"355\",\"LGA\",\"ORD\",38.00,36.00,0.00,\"\",0.00,166.00,121.00,733.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,20,\"AA\",\"355\",\"LGA\",\"ORD\",19.00,43.00,0.00,\"\",0.00,192.00,129.00,733.00,19.00,0.00,24.00,0.00,0.00,\n2015,5,21,\"AA\",\"355\",\"LGA\",\"ORD\",-2.00,-10.00,0.00,\"\",0.00,160.00,116.00,733.00,,,,,,\n2015,5,22,\"AA\",\"355\",\"LGA\",\"ORD\",3.00,6.00,0.00,\"\",0.00,171.00,120.00,733.00,,,,,,\n2015,5,24,\"AA\",\"355\",\"LGA\",\"ORD\",-12.00,-19.00,0.00,\"\",0.00,161.00,128.00,733.00,,,,,,\n2015,5,25,\"AA\",\"355\",\"LGA\",\"ORD\",-6.00,-35.00,0.00,\"\",0.00,139.00,111.00,733.00,,,,,,\n2015,5,26,\"AA\",\"355\",\"LGA\",\"ORD\",-7.00,-38.00,0.00,\"\",0.00,137.00,112.00,733.00,,,,,,\n2015,5,27,\"AA\",\"355\",\"LGA\",\"ORD\",27.00,67.00,0.00,\"\",0.00,208.00,114.00,733.00,0.00,0.00,40.00,0.00,27.00,\n2015,5,28,\"AA\",\"355\",\"LGA\",\"ORD\",-2.00,-10.00,0.00,\"\",0.00,160.00,115.00,733.00,,,,,,\n2015,5,29,\"AA\",\"355\",\"LGA\",\"ORD\",-5.00,6.00,0.00,\"\",0.00,179.00,131.00,733.00,,,,,,\n2015,5,31,\"AA\",\"355\",\"LGA\",\"ORD\",217.00,195.00,0.00,\"\",0.00,146.00,116.00,733.00,0.00,195.00,0.00,0.00,0.00,\n2015,5,7,\"AA\",\"356\",\"DFW\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,207.00,186.00,1391.00,,,,,,\n2015,5,8,\"AA\",\"356\",\"DFW\",\"JFK\",57.00,88.00,0.00,\"\",0.00,259.00,198.00,1391.00,0.00,0.00,76.00,0.00,12.00,\n2015,5,9,\"AA\",\"356\",\"DFW\",\"JFK\",22.00,5.00,0.00,\"\",0.00,211.00,193.00,1391.00,,,,,,\n2015,5,10,\"AA\",\"356\",\"DFW\",\"JFK\",,,1.00,\"B\",0.00,,,1391.00,,,,,,\n2015,5,11,\"AA\",\"356\",\"DFW\",\"JFK\",16.00,20.00,0.00,\"\",0.00,232.00,199.00,1391.00,0.00,0.00,14.00,0.00,6.00,\n2015,5,12,\"AA\",\"356\",\"DFW\",\"JFK\",-4.00,-38.00,0.00,\"\",0.00,194.00,169.00,1391.00,,,,,,\n2015,5,13,\"AA\",\"356\",\"DFW\",\"JFK\",1.00,-26.00,0.00,\"\",0.00,201.00,180.00,1391.00,,,,,,\n2015,5,14,\"AA\",\"356\",\"DFW\",\"JFK\",18.00,-10.00,0.00,\"\",0.00,200.00,181.00,1391.00,,,,,,\n2015,5,15,\"AA\",\"356\",\"DFW\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,216.00,189.00,1391.00,,,,,,\n2015,5,16,\"AA\",\"356\",\"DFW\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,207.00,177.00,1391.00,,,,,,\n2015,5,17,\"AA\",\"356\",\"DFW\",\"JFK\",2.00,-27.00,0.00,\"\",0.00,199.00,179.00,1391.00,,,,,,\n2015,5,18,\"AA\",\"356\",\"DFW\",\"JFK\",20.00,4.00,0.00,\"\",0.00,212.00,191.00,1391.00,,,,,,\n2015,5,19,\"AA\",\"356\",\"DFW\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,224.00,194.00,1391.00,,,,,,\n2015,5,20,\"AA\",\"356\",\"DFW\",\"JFK\",19.00,-10.00,0.00,\"\",0.00,199.00,167.00,1391.00,,,,,,\n2015,5,21,\"AA\",\"356\",\"DFW\",\"JFK\",31.00,4.00,0.00,\"\",0.00,201.00,171.00,1391.00,,,,,,\n2015,5,22,\"AA\",\"356\",\"DFW\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,203.00,181.00,1391.00,,,,,,\n2015,5,23,\"AA\",\"356\",\"DFW\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,206.00,179.00,1391.00,,,,,,\n2015,5,24,\"AA\",\"356\",\"DFW\",\"JFK\",-5.00,-31.00,0.00,\"\",0.00,202.00,176.00,1391.00,,,,,,\n2015,5,25,\"AA\",\"356\",\"DFW\",\"JFK\",38.00,17.00,0.00,\"\",0.00,207.00,185.00,1391.00,0.00,10.00,0.00,0.00,7.00,\n2015,5,26,\"AA\",\"356\",\"DFW\",\"JFK\",11.00,2.00,0.00,\"\",0.00,219.00,182.00,1391.00,,,,,,\n2015,5,27,\"AA\",\"356\",\"DFW\",\"JFK\",44.00,35.00,0.00,\"\",0.00,219.00,179.00,1391.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,28,\"AA\",\"356\",\"DFW\",\"JFK\",45.00,28.00,0.00,\"\",0.00,211.00,189.00,1391.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,29,\"AA\",\"356\",\"DFW\",\"JFK\",-1.00,14.00,0.00,\"\",0.00,243.00,191.00,1391.00,,,,,,\n2015,5,30,\"AA\",\"356\",\"DFW\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,214.00,189.00,1391.00,,,,,,\n2015,5,31,\"AA\",\"356\",\"DFW\",\"JFK\",100.00,134.00,0.00,\"\",0.00,262.00,232.00,1391.00,0.00,0.00,95.00,0.00,39.00,\n2015,5,1,\"AA\",\"359\",\"LGA\",\"ORD\",5.00,-20.00,0.00,\"\",0.00,137.00,107.00,733.00,,,,,,\n2015,5,2,\"AA\",\"359\",\"LGA\",\"ORD\",-9.00,-45.00,0.00,\"\",0.00,126.00,107.00,733.00,,,,,,\n2015,5,3,\"AA\",\"359\",\"LGA\",\"ORD\",12.00,-6.00,0.00,\"\",0.00,144.00,118.00,733.00,,,,,,\n2015,5,4,\"AA\",\"359\",\"LGA\",\"ORD\",-7.00,-19.00,0.00,\"\",0.00,150.00,124.00,733.00,,,,,,\n2015,5,5,\"AA\",\"359\",\"LGA\",\"ORD\",22.00,60.00,0.00,\"\",0.00,200.00,120.00,733.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,6,\"AA\",\"359\",\"LGA\",\"ORD\",-2.00,20.00,0.00,\"\",0.00,184.00,116.00,733.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,7,\"AA\",\"359\",\"LGA\",\"ORD\",-3.00,-28.00,0.00,\"\",0.00,137.00,108.00,733.00,,,,,,\n2015,5,8,\"AA\",\"359\",\"LGA\",\"ORD\",88.00,63.00,0.00,\"\",0.00,137.00,109.00,733.00,63.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"AA\",\"359\",\"LGA\",\"ORD\",65.00,30.00,0.00,\"\",0.00,127.00,111.00,733.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"AA\",\"359\",\"LGA\",\"ORD\",-4.00,5.00,0.00,\"\",0.00,171.00,114.00,733.00,,,,,,\n2015,5,11,\"AA\",\"359\",\"LGA\",\"ORD\",33.00,31.00,0.00,\"\",0.00,160.00,114.00,733.00,0.00,0.00,0.00,0.00,31.00,\n2015,5,12,\"AA\",\"359\",\"LGA\",\"ORD\",-5.00,-20.00,0.00,\"\",0.00,147.00,123.00,733.00,,,,,,\n2015,5,13,\"AA\",\"359\",\"LGA\",\"ORD\",33.00,44.00,0.00,\"\",0.00,173.00,124.00,733.00,0.00,0.00,11.00,0.00,33.00,\n2015,5,14,\"AA\",\"359\",\"LGA\",\"ORD\",-2.00,-9.00,0.00,\"\",0.00,155.00,121.00,733.00,,,,,,\n2015,5,15,\"AA\",\"359\",\"LGA\",\"ORD\",-6.00,-29.00,0.00,\"\",0.00,139.00,119.00,733.00,,,,,,\n2015,5,16,\"AA\",\"359\",\"LGA\",\"ORD\",-7.00,-32.00,0.00,\"\",0.00,137.00,117.00,733.00,,,,,,\n2015,5,17,\"AA\",\"359\",\"LGA\",\"ORD\",-4.00,-23.00,0.00,\"\",0.00,143.00,109.00,733.00,,,,,,\n2015,5,18,\"AA\",\"359\",\"LGA\",\"ORD\",249.00,242.00,0.00,\"\",0.00,155.00,118.00,733.00,0.00,0.00,0.00,0.00,242.00,\n2015,5,19,\"AA\",\"359\",\"LGA\",\"ORD\",35.00,23.00,0.00,\"\",0.00,150.00,120.00,733.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,20,\"AA\",\"359\",\"LGA\",\"ORD\",63.00,107.00,0.00,\"\",0.00,206.00,119.00,733.00,0.00,0.00,44.00,0.00,63.00,\n2015,5,21,\"AA\",\"359\",\"LGA\",\"ORD\",-2.00,-20.00,0.00,\"\",0.00,144.00,112.00,733.00,,,,,,\n2015,5,22,\"AA\",\"359\",\"LGA\",\"ORD\",54.00,40.00,0.00,\"\",0.00,148.00,117.00,733.00,0.00,0.00,0.00,0.00,40.00,\n2015,5,23,\"AA\",\"359\",\"LGA\",\"ORD\",-13.00,-43.00,0.00,\"\",0.00,132.00,114.00,733.00,,,,,,\n2015,5,24,\"AA\",\"359\",\"LGA\",\"ORD\",-8.00,-29.00,0.00,\"\",0.00,141.00,122.00,733.00,,,,,,\n2015,5,25,\"AA\",\"359\",\"LGA\",\"ORD\",-4.00,-27.00,0.00,\"\",0.00,139.00,111.00,733.00,,,,,,\n2015,5,26,\"AA\",\"359\",\"LGA\",\"ORD\",-7.00,-28.00,0.00,\"\",0.00,141.00,113.00,733.00,,,,,,\n2015,5,27,\"AA\",\"359\",\"LGA\",\"ORD\",103.00,71.00,0.00,\"\",0.00,130.00,110.00,733.00,0.00,0.00,0.00,0.00,71.00,\n2015,5,28,\"AA\",\"359\",\"LGA\",\"ORD\",-4.00,-19.00,0.00,\"\",0.00,147.00,115.00,733.00,,,,,,\n2015,5,29,\"AA\",\"359\",\"LGA\",\"ORD\",30.00,22.00,0.00,\"\",0.00,154.00,122.00,733.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,30,\"AA\",\"359\",\"LGA\",\"ORD\",-9.00,-22.00,0.00,\"\",0.00,149.00,116.00,733.00,,,,,,\n2015,5,31,\"AA\",\"359\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,1,\"AA\",\"363\",\"LGA\",\"ORD\",-7.00,-18.00,0.00,\"\",0.00,146.00,106.00,733.00,,,,,,\n2015,5,3,\"AA\",\"363\",\"LGA\",\"ORD\",-1.00,-29.00,0.00,\"\",0.00,134.00,116.00,733.00,,,,,,\n2015,5,4,\"AA\",\"363\",\"LGA\",\"ORD\",-11.00,-36.00,0.00,\"\",0.00,132.00,112.00,733.00,,,,,,\n2015,5,5,\"AA\",\"363\",\"LGA\",\"ORD\",18.00,22.00,0.00,\"\",0.00,161.00,122.00,733.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,6,\"AA\",\"363\",\"LGA\",\"ORD\",-6.00,-7.00,0.00,\"\",0.00,156.00,110.00,733.00,,,,,,\n2015,5,7,\"AA\",\"363\",\"LGA\",\"ORD\",-8.00,-22.00,0.00,\"\",0.00,143.00,105.00,733.00,,,,,,\n2015,5,8,\"AA\",\"363\",\"LGA\",\"ORD\",,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,10,\"AA\",\"363\",\"LGA\",\"ORD\",-8.00,-15.00,0.00,\"\",0.00,155.00,117.00,733.00,,,,,,\n2015,5,11,\"AA\",\"363\",\"LGA\",\"ORD\",-2.00,6.00,0.00,\"\",0.00,165.00,121.00,733.00,,,,,,\n2015,5,12,\"AA\",\"363\",\"LGA\",\"ORD\",-7.00,-17.00,0.00,\"\",0.00,147.00,120.00,733.00,,,,,,\n2015,5,13,\"AA\",\"363\",\"LGA\",\"ORD\",-9.00,11.00,0.00,\"\",0.00,177.00,122.00,733.00,,,,,,\n2015,5,14,\"AA\",\"363\",\"LGA\",\"ORD\",28.00,15.00,0.00,\"\",0.00,144.00,120.00,733.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,15,\"AA\",\"363\",\"LGA\",\"ORD\",-8.00,-28.00,0.00,\"\",0.00,137.00,115.00,733.00,,,,,,\n2015,5,17,\"AA\",\"363\",\"LGA\",\"ORD\",-9.00,-26.00,0.00,\"\",0.00,145.00,106.00,733.00,,,,,,\n2015,5,18,\"AA\",\"363\",\"LGA\",\"ORD\",118.00,165.00,0.00,\"\",0.00,204.00,133.00,733.00,0.00,0.00,47.00,0.00,118.00,\n2015,5,19,\"AA\",\"363\",\"LGA\",\"ORD\",-4.00,-7.00,0.00,\"\",0.00,154.00,120.00,733.00,,,,,,\n2015,5,20,\"AA\",\"363\",\"LGA\",\"ORD\",3.00,38.00,0.00,\"\",0.00,192.00,119.00,733.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,21,\"AA\",\"363\",\"LGA\",\"ORD\",44.00,39.00,0.00,\"\",0.00,152.00,113.00,733.00,0.00,0.00,0.00,0.00,39.00,\n2015,5,22,\"AA\",\"363\",\"LGA\",\"ORD\",-2.00,4.00,0.00,\"\",0.00,163.00,122.00,733.00,,,,,,\n2015,5,24,\"AA\",\"363\",\"LGA\",\"ORD\",-11.00,-32.00,0.00,\"\",0.00,141.00,118.00,733.00,,,,,,\n2015,5,25,\"AA\",\"363\",\"LGA\",\"ORD\",-6.00,-5.00,0.00,\"\",0.00,158.00,112.00,733.00,,,,,,\n2015,5,26,\"AA\",\"363\",\"LGA\",\"ORD\",-5.00,-25.00,0.00,\"\",0.00,137.00,110.00,733.00,,,,,,\n2015,5,27,\"AA\",\"363\",\"LGA\",\"ORD\",,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,28,\"AA\",\"363\",\"LGA\",\"ORD\",-5.00,-3.00,0.00,\"\",0.00,159.00,113.00,733.00,,,,,,\n2015,5,29,\"AA\",\"363\",\"LGA\",\"ORD\",-5.00,11.00,0.00,\"\",0.00,173.00,123.00,733.00,,,,,,\n2015,5,31,\"AA\",\"363\",\"LGA\",\"ORD\",194.00,196.00,0.00,\"\",0.00,164.00,119.00,733.00,0.00,6.00,2.00,0.00,188.00,\n2015,5,1,\"AA\",\"364\",\"ORD\",\"LGA\",27.00,22.00,0.00,\"\",0.00,124.00,102.00,733.00,1.00,0.00,0.00,0.00,21.00,\n2015,5,2,\"AA\",\"364\",\"ORD\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,119.00,104.00,733.00,,,,,,\n2015,5,3,\"AA\",\"364\",\"ORD\",\"LGA\",47.00,30.00,0.00,\"\",0.00,112.00,99.00,733.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"AA\",\"364\",\"ORD\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,119.00,102.00,733.00,,,,,,\n2015,5,5,\"AA\",\"364\",\"ORD\",\"LGA\",3.00,-6.00,0.00,\"\",0.00,120.00,92.00,733.00,,,,,,\n2015,5,6,\"AA\",\"364\",\"ORD\",\"LGA\",1.00,-1.00,0.00,\"\",0.00,127.00,100.00,733.00,,,,,,\n2015,5,7,\"AA\",\"364\",\"ORD\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,116.00,99.00,733.00,,,,,,\n2015,5,8,\"AA\",\"364\",\"ORD\",\"LGA\",-2.00,85.00,0.00,\"\",0.00,218.00,102.00,733.00,0.00,0.00,85.00,0.00,0.00,\n2015,5,9,\"AA\",\"364\",\"ORD\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,122.00,105.00,733.00,,,,,,\n2015,5,10,\"AA\",\"364\",\"ORD\",\"LGA\",9.00,12.00,0.00,\"\",0.00,132.00,103.00,733.00,,,,,,\n2015,5,11,\"AA\",\"364\",\"ORD\",\"LGA\",16.00,53.00,0.00,\"\",0.00,168.00,104.00,733.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,12,\"AA\",\"364\",\"ORD\",\"LGA\",1.00,-8.00,0.00,\"\",0.00,122.00,95.00,733.00,,,,,,\n2015,5,13,\"AA\",\"364\",\"ORD\",\"LGA\",69.00,48.00,0.00,\"\",0.00,110.00,92.00,733.00,31.00,0.00,0.00,0.00,17.00,\n2015,5,14,\"AA\",\"364\",\"ORD\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,112.00,97.00,733.00,,,,,,\n2015,5,15,\"AA\",\"364\",\"ORD\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,113.00,97.00,733.00,,,,,,\n2015,5,16,\"AA\",\"364\",\"ORD\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,119.00,104.00,733.00,,,,,,\n2015,5,17,\"AA\",\"364\",\"ORD\",\"LGA\",4.00,-4.00,0.00,\"\",0.00,121.00,103.00,733.00,,,,,,\n2015,5,18,\"AA\",\"364\",\"ORD\",\"LGA\",235.00,273.00,0.00,\"\",0.00,169.00,132.00,733.00,0.00,0.00,162.00,0.00,111.00,\n2015,5,19,\"AA\",\"364\",\"ORD\",\"LGA\",56.00,52.00,0.00,\"\",0.00,127.00,96.00,733.00,52.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"AA\",\"364\",\"ORD\",\"LGA\",92.00,80.00,0.00,\"\",0.00,119.00,90.00,733.00,77.00,0.00,0.00,0.00,3.00,\n2015,5,21,\"AA\",\"364\",\"ORD\",\"LGA\",2.00,-19.00,0.00,\"\",0.00,110.00,94.00,733.00,,,,,,\n2015,5,22,\"AA\",\"364\",\"ORD\",\"LGA\",84.00,65.00,0.00,\"\",0.00,112.00,90.00,733.00,65.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"AA\",\"364\",\"ORD\",\"LGA\",0.00,-21.00,0.00,\"\",0.00,110.00,95.00,733.00,,,,,,\n2015,5,24,\"AA\",\"364\",\"ORD\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,113.00,93.00,733.00,,,,,,\n2015,5,25,\"AA\",\"364\",\"ORD\",\"LGA\",27.00,15.00,0.00,\"\",0.00,119.00,100.00,733.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"AA\",\"364\",\"ORD\",\"LGA\",9.00,-8.00,0.00,\"\",0.00,114.00,99.00,733.00,,,,,,\n2015,5,27,\"AA\",\"364\",\"ORD\",\"LGA\",-4.00,118.00,0.00,\"\",0.00,253.00,183.00,733.00,0.00,0.00,118.00,0.00,0.00,\n2015,5,28,\"AA\",\"364\",\"ORD\",\"LGA\",26.00,9.00,0.00,\"\",0.00,114.00,95.00,733.00,,,,,,\n2015,5,29,\"AA\",\"364\",\"ORD\",\"LGA\",61.00,47.00,0.00,\"\",0.00,117.00,100.00,733.00,15.00,0.00,0.00,0.00,32.00,\n2015,5,30,\"AA\",\"364\",\"ORD\",\"LGA\",1.00,-8.00,0.00,\"\",0.00,122.00,104.00,733.00,,,,,,\n2015,5,31,\"AA\",\"364\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,1,\"AA\",\"365\",\"ORD\",\"LGA\",0.00,6.00,0.00,\"\",0.00,137.00,104.00,733.00,,,,,,\n2015,5,2,\"AA\",\"365\",\"ORD\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,124.00,100.00,733.00,,,,,,\n2015,5,3,\"AA\",\"365\",\"ORD\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,117.00,99.00,733.00,,,,,,\n2015,5,4,\"AA\",\"365\",\"ORD\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,111.00,97.00,733.00,,,,,,\n2015,5,5,\"AA\",\"365\",\"ORD\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,124.00,100.00,733.00,,,,,,\n2015,5,6,\"AA\",\"365\",\"ORD\",\"LGA\",-11.00,-22.00,0.00,\"\",0.00,120.00,98.00,733.00,,,,,,\n2015,5,7,\"AA\",\"365\",\"ORD\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,112.00,100.00,733.00,,,,,,\n2015,5,8,\"AA\",\"365\",\"ORD\",\"LGA\",-2.00,72.00,0.00,\"\",0.00,205.00,102.00,733.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,9,\"AA\",\"365\",\"ORD\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,123.00,104.00,733.00,,,,,,\n2015,5,10,\"AA\",\"365\",\"ORD\",\"LGA\",5.00,0.00,0.00,\"\",0.00,126.00,99.00,733.00,,,,,,\n2015,5,11,\"AA\",\"365\",\"ORD\",\"LGA\",14.00,47.00,0.00,\"\",0.00,164.00,105.00,733.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,12,\"AA\",\"365\",\"ORD\",\"LGA\",-8.00,-30.00,0.00,\"\",0.00,109.00,88.00,733.00,,,,,,\n2015,5,13,\"AA\",\"365\",\"ORD\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,111.00,91.00,733.00,,,,,,\n2015,5,14,\"AA\",\"365\",\"ORD\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,117.00,97.00,733.00,,,,,,\n2015,5,15,\"AA\",\"365\",\"ORD\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,118.00,96.00,733.00,,,,,,\n2015,5,16,\"AA\",\"365\",\"ORD\",\"LGA\",0.00,-21.00,0.00,\"\",0.00,110.00,98.00,733.00,,,,,,\n2015,5,17,\"AA\",\"365\",\"ORD\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,117.00,100.00,733.00,,,,,,\n2015,5,18,\"AA\",\"365\",\"ORD\",\"LGA\",82.00,108.00,0.00,\"\",0.00,157.00,105.00,733.00,0.00,0.00,108.00,0.00,0.00,\n2015,5,19,\"AA\",\"365\",\"ORD\",\"LGA\",-2.00,5.00,0.00,\"\",0.00,138.00,103.00,733.00,,,,,,\n2015,5,20,\"AA\",\"365\",\"ORD\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,115.00,87.00,733.00,,,,,,\n2015,5,21,\"AA\",\"365\",\"ORD\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,124.00,93.00,733.00,,,,,,\n2015,5,22,\"AA\",\"365\",\"ORD\",\"LGA\",-8.00,-15.00,0.00,\"\",0.00,124.00,95.00,733.00,,,,,,\n2015,5,23,\"AA\",\"365\",\"ORD\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,116.00,98.00,733.00,,,,,,\n2015,5,24,\"AA\",\"365\",\"ORD\",\"LGA\",8.00,-14.00,0.00,\"\",0.00,109.00,95.00,733.00,,,,,,\n2015,5,25,\"AA\",\"365\",\"ORD\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,124.00,100.00,733.00,,,,,,\n2015,5,26,\"AA\",\"365\",\"ORD\",\"LGA\",-4.00,5.00,0.00,\"\",0.00,140.00,102.00,733.00,,,,,,\n2015,5,27,\"AA\",\"365\",\"ORD\",\"LGA\",181.00,190.00,0.00,\"\",0.00,140.00,99.00,733.00,60.00,0.00,130.00,0.00,0.00,\n2015,5,28,\"AA\",\"365\",\"ORD\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,122.00,95.00,733.00,,,,,,\n2015,5,29,\"AA\",\"365\",\"ORD\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,122.00,97.00,733.00,,,,,,\n2015,5,30,\"AA\",\"365\",\"ORD\",\"LGA\",0.00,2.00,0.00,\"\",0.00,133.00,103.00,733.00,,,,,,\n2015,5,31,\"AA\",\"365\",\"ORD\",\"LGA\",194.00,222.00,0.00,\"\",0.00,159.00,112.00,733.00,76.00,0.00,146.00,0.00,0.00,\n2015,5,1,\"AA\",\"366\",\"ORD\",\"LGA\",16.00,23.00,0.00,\"\",0.00,141.00,107.00,733.00,16.00,0.00,7.00,0.00,0.00,\n2015,5,3,\"AA\",\"366\",\"ORD\",\"LGA\",48.00,31.00,0.00,\"\",0.00,117.00,100.00,733.00,30.00,0.00,0.00,0.00,1.00,\n2015,5,4,\"AA\",\"366\",\"ORD\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,119.00,102.00,733.00,,,,,,\n2015,5,5,\"AA\",\"366\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,6,\"AA\",\"366\",\"ORD\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,117.00,96.00,733.00,,,,,,\n2015,5,7,\"AA\",\"366\",\"ORD\",\"LGA\",106.00,92.00,0.00,\"\",0.00,120.00,104.00,733.00,14.00,0.00,0.00,0.00,78.00,\n2015,5,8,\"AA\",\"366\",\"ORD\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,124.00,98.00,733.00,,,,,,\n2015,5,10,\"AA\",\"366\",\"ORD\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,130.00,102.00,733.00,,,,,,\n2015,5,11,\"AA\",\"366\",\"ORD\",\"LGA\",0.00,90.00,0.00,\"\",0.00,224.00,103.00,733.00,0.00,0.00,90.00,0.00,0.00,\n2015,5,12,\"AA\",\"366\",\"ORD\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,119.00,90.00,733.00,,,,,,\n2015,5,13,\"AA\",\"366\",\"ORD\",\"LGA\",24.00,9.00,0.00,\"\",0.00,119.00,94.00,733.00,,,,,,\n2015,5,14,\"AA\",\"366\",\"ORD\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,130.00,96.00,733.00,,,,,,\n2015,5,15,\"AA\",\"366\",\"ORD\",\"LGA\",-5.00,28.00,0.00,\"\",0.00,167.00,100.00,733.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,17,\"AA\",\"366\",\"ORD\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,121.00,99.00,733.00,,,,,,\n2015,5,18,\"AA\",\"366\",\"ORD\",\"LGA\",131.00,214.00,0.00,\"\",0.00,217.00,129.00,733.00,0.00,0.00,192.00,0.00,22.00,\n2015,5,19,\"AA\",\"366\",\"ORD\",\"LGA\",31.00,50.00,0.00,\"\",0.00,153.00,104.00,733.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,20,\"AA\",\"366\",\"ORD\",\"LGA\",9.00,-4.00,0.00,\"\",0.00,121.00,91.00,733.00,,,,,,\n2015,5,21,\"AA\",\"366\",\"ORD\",\"LGA\",1.00,-14.00,0.00,\"\",0.00,119.00,93.00,733.00,,,,,,\n2015,5,22,\"AA\",\"366\",\"ORD\",\"LGA\",25.00,13.00,0.00,\"\",0.00,122.00,92.00,733.00,,,,,,\n2015,5,24,\"AA\",\"366\",\"ORD\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,116.00,97.00,733.00,,,,,,\n2015,5,25,\"AA\",\"366\",\"ORD\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,119.00,97.00,733.00,,,,,,\n2015,5,26,\"AA\",\"366\",\"ORD\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,120.00,100.00,733.00,,,,,,\n2015,5,27,\"AA\",\"366\",\"ORD\",\"LGA\",13.00,33.00,0.00,\"\",0.00,154.00,122.00,733.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,28,\"AA\",\"366\",\"ORD\",\"LGA\",-8.00,-18.00,0.00,\"\",0.00,124.00,100.00,733.00,,,,,,\n2015,5,29,\"AA\",\"366\",\"ORD\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,130.00,103.00,733.00,,,,,,\n2015,5,31,\"AA\",\"366\",\"ORD\",\"LGA\",47.00,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,1,\"AA\",\"367\",\"ORD\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,117.00,103.00,733.00,,,,,,\n2015,5,2,\"AA\",\"367\",\"ORD\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,118.00,105.00,733.00,,,,,,\n2015,5,3,\"AA\",\"367\",\"ORD\",\"LGA\",5.00,-7.00,0.00,\"\",0.00,115.00,100.00,733.00,,,,,,\n2015,5,4,\"AA\",\"367\",\"ORD\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,122.00,97.00,733.00,,,,,,\n2015,5,5,\"AA\",\"367\",\"ORD\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,119.00,98.00,733.00,,,,,,\n2015,5,6,\"AA\",\"367\",\"ORD\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,121.00,97.00,733.00,,,,,,\n2015,5,7,\"AA\",\"367\",\"ORD\",\"LGA\",1.00,-7.00,0.00,\"\",0.00,119.00,100.00,733.00,,,,,,\n2015,5,8,\"AA\",\"367\",\"ORD\",\"LGA\",0.00,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,9,\"AA\",\"367\",\"ORD\",\"LGA\",-5.00,10.00,0.00,\"\",0.00,142.00,103.00,733.00,,,,,,\n2015,5,10,\"AA\",\"367\",\"ORD\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,120.00,96.00,733.00,,,,,,\n2015,5,11,\"AA\",\"367\",\"ORD\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,129.00,103.00,733.00,,,,,,\n2015,5,12,\"AA\",\"367\",\"ORD\",\"LGA\",5.00,-21.00,0.00,\"\",0.00,101.00,87.00,733.00,,,,,,\n2015,5,13,\"AA\",\"367\",\"ORD\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,109.00,91.00,733.00,,,,,,\n2015,5,14,\"AA\",\"367\",\"ORD\",\"LGA\",9.00,-2.00,0.00,\"\",0.00,116.00,97.00,733.00,,,,,,\n2015,5,15,\"AA\",\"367\",\"ORD\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,114.00,97.00,733.00,,,,,,\n2015,5,16,\"AA\",\"367\",\"ORD\",\"LGA\",-8.00,-14.00,0.00,\"\",0.00,121.00,100.00,733.00,,,,,,\n2015,5,17,\"AA\",\"367\",\"ORD\",\"LGA\",16.00,4.00,0.00,\"\",0.00,115.00,98.00,733.00,,,,,,\n2015,5,18,\"AA\",\"367\",\"ORD\",\"LGA\",55.00,137.00,0.00,\"\",0.00,209.00,128.00,733.00,0.00,0.00,134.00,0.00,3.00,\n2015,5,19,\"AA\",\"367\",\"ORD\",\"LGA\",-1.00,11.00,0.00,\"\",0.00,139.00,103.00,733.00,,,,,,\n2015,5,20,\"AA\",\"367\",\"ORD\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,124.00,91.00,733.00,,,,,,\n2015,5,21,\"AA\",\"367\",\"ORD\",\"LGA\",62.00,58.00,0.00,\"\",0.00,123.00,94.00,733.00,0.00,0.00,0.00,0.00,58.00,\n2015,5,22,\"AA\",\"367\",\"ORD\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,133.00,91.00,733.00,,,,,,\n2015,5,23,\"AA\",\"367\",\"ORD\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,114.00,93.00,733.00,,,,,,\n2015,5,24,\"AA\",\"367\",\"ORD\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,115.00,95.00,733.00,,,,,,\n2015,5,25,\"AA\",\"367\",\"ORD\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,127.00,106.00,733.00,,,,,,\n2015,5,26,\"AA\",\"367\",\"ORD\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,110.00,97.00,733.00,,,,,,\n2015,5,27,\"AA\",\"367\",\"ORD\",\"LGA\",-7.00,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,28,\"AA\",\"367\",\"ORD\",\"LGA\",-10.00,-12.00,0.00,\"\",0.00,125.00,95.00,733.00,,,,,,\n2015,5,29,\"AA\",\"367\",\"ORD\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,127.00,106.00,733.00,,,,,,\n2015,5,30,\"AA\",\"367\",\"ORD\",\"LGA\",-4.00,8.00,0.00,\"\",0.00,139.00,110.00,733.00,,,,,,\n2015,5,31,\"AA\",\"367\",\"ORD\",\"LGA\",142.00,195.00,0.00,\"\",0.00,180.00,127.00,733.00,0.00,0.00,195.00,0.00,0.00,\n2015,5,1,\"AA\",\"368\",\"ORD\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,128.00,104.00,733.00,,,,,,\n2015,5,2,\"AA\",\"368\",\"ORD\",\"LGA\",13.00,6.00,0.00,\"\",0.00,119.00,102.00,733.00,,,,,,\n2015,5,3,\"AA\",\"368\",\"ORD\",\"LGA\",17.00,14.00,0.00,\"\",0.00,123.00,102.00,733.00,,,,,,\n2015,5,4,\"AA\",\"368\",\"ORD\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,116.00,99.00,733.00,,,,,,\n2015,5,5,\"AA\",\"368\",\"ORD\",\"LGA\",42.00,36.00,0.00,\"\",0.00,120.00,93.00,733.00,1.00,0.00,0.00,0.00,35.00,\n2015,5,6,\"AA\",\"368\",\"ORD\",\"LGA\",2.00,-8.00,0.00,\"\",0.00,116.00,94.00,733.00,,,,,,\n2015,5,7,\"AA\",\"368\",\"ORD\",\"LGA\",100.00,94.00,0.00,\"\",0.00,120.00,103.00,733.00,86.00,0.00,0.00,0.00,8.00,\n2015,5,8,\"AA\",\"368\",\"ORD\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,125.00,101.00,733.00,,,,,,\n2015,5,9,\"AA\",\"368\",\"ORD\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,121.00,101.00,733.00,,,,,,\n2015,5,10,\"AA\",\"368\",\"ORD\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,125.00,101.00,733.00,,,,,,\n2015,5,11,\"AA\",\"368\",\"ORD\",\"LGA\",-7.00,,0.00,\"\",1.00,,,733.00,,,,,,\n2015,5,12,\"AA\",\"368\",\"ORD\",\"LGA\",25.00,6.00,0.00,\"\",0.00,107.00,94.00,733.00,,,,,,\n2015,5,13,\"AA\",\"368\",\"ORD\",\"LGA\",-9.00,1.00,0.00,\"\",0.00,136.00,93.00,733.00,,,,,,\n2015,5,14,\"AA\",\"368\",\"ORD\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,116.00,98.00,733.00,,,,,,\n2015,5,15,\"AA\",\"368\",\"ORD\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,131.00,101.00,733.00,,,,,,\n2015,5,16,\"AA\",\"368\",\"ORD\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,120.00,99.00,733.00,,,,,,\n2015,5,17,\"AA\",\"368\",\"ORD\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,118.00,100.00,733.00,,,,,,\n2015,5,18,\"AA\",\"368\",\"ORD\",\"LGA\",128.00,268.00,0.00,\"\",0.00,266.00,128.00,733.00,0.00,0.00,268.00,0.00,0.00,\n2015,5,19,\"AA\",\"368\",\"ORD\",\"LGA\",-3.00,3.00,0.00,\"\",0.00,132.00,100.00,733.00,,,,,,\n2015,5,20,\"AA\",\"368\",\"ORD\",\"LGA\",-6.00,-28.00,0.00,\"\",0.00,104.00,89.00,733.00,,,,,,\n2015,5,21,\"AA\",\"368\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,22,\"AA\",\"368\",\"ORD\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,118.00,98.00,733.00,,,,,,\n2015,5,23,\"AA\",\"368\",\"ORD\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,109.00,93.00,733.00,,,,,,\n2015,5,24,\"AA\",\"368\",\"ORD\",\"LGA\",13.00,3.00,0.00,\"\",0.00,116.00,95.00,733.00,,,,,,\n2015,5,25,\"AA\",\"368\",\"ORD\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,115.00,96.00,733.00,,,,,,\n2015,5,26,\"AA\",\"368\",\"ORD\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,113.00,98.00,733.00,,,,,,\n2015,5,27,\"AA\",\"368\",\"ORD\",\"LGA\",-1.00,24.00,0.00,\"\",0.00,151.00,123.00,733.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,28,\"AA\",\"368\",\"ORD\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,115.00,99.00,733.00,,,,,,\n2015,5,29,\"AA\",\"368\",\"ORD\",\"LGA\",-7.00,26.00,0.00,\"\",0.00,159.00,113.00,733.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,30,\"AA\",\"368\",\"ORD\",\"LGA\",-6.00,0.00,0.00,\"\",0.00,132.00,107.00,733.00,,,,,,\n2015,5,31,\"AA\",\"368\",\"ORD\",\"LGA\",123.00,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,1,\"AA\",\"371\",\"LGA\",\"ORD\",-7.00,-44.00,0.00,\"\",0.00,128.00,105.00,733.00,,,,,,\n2015,5,3,\"AA\",\"371\",\"LGA\",\"ORD\",-6.00,-35.00,0.00,\"\",0.00,136.00,106.00,733.00,,,,,,\n2015,5,4,\"AA\",\"371\",\"LGA\",\"ORD\",-8.00,-37.00,0.00,\"\",0.00,136.00,118.00,733.00,,,,,,\n2015,5,5,\"AA\",\"371\",\"LGA\",\"ORD\",-6.00,-27.00,0.00,\"\",0.00,144.00,121.00,733.00,,,,,,\n2015,5,6,\"AA\",\"371\",\"LGA\",\"ORD\",-12.00,-42.00,0.00,\"\",0.00,135.00,107.00,733.00,,,,,,\n2015,5,7,\"AA\",\"371\",\"LGA\",\"ORD\",-7.00,-39.00,0.00,\"\",0.00,133.00,105.00,733.00,,,,,,\n2015,5,8,\"AA\",\"371\",\"LGA\",\"ORD\",15.00,-4.00,0.00,\"\",0.00,146.00,111.00,733.00,,,,,,\n2015,5,10,\"AA\",\"371\",\"LGA\",\"ORD\",53.00,17.00,0.00,\"\",0.00,129.00,110.00,733.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"AA\",\"371\",\"LGA\",\"ORD\",178.00,152.00,0.00,\"\",0.00,139.00,117.00,733.00,0.00,0.00,0.00,0.00,152.00,\n2015,5,12,\"AA\",\"371\",\"LGA\",\"ORD\",-7.00,-26.00,0.00,\"\",0.00,146.00,121.00,733.00,,,,,,\n2015,5,13,\"AA\",\"371\",\"LGA\",\"ORD\",8.00,10.00,0.00,\"\",0.00,167.00,126.00,733.00,,,,,,\n2015,5,14,\"AA\",\"371\",\"LGA\",\"ORD\",12.00,-15.00,0.00,\"\",0.00,138.00,116.00,733.00,,,,,,\n2015,5,15,\"AA\",\"371\",\"LGA\",\"ORD\",6.00,-27.00,0.00,\"\",0.00,132.00,110.00,733.00,,,,,,\n2015,5,17,\"AA\",\"371\",\"LGA\",\"ORD\",-2.00,-34.00,0.00,\"\",0.00,133.00,112.00,733.00,,,,,,\n2015,5,18,\"AA\",\"371\",\"LGA\",\"ORD\",57.00,115.00,0.00,\"\",0.00,223.00,128.00,733.00,5.00,0.00,58.00,0.00,52.00,\n2015,5,19,\"AA\",\"371\",\"LGA\",\"ORD\",16.00,1.00,0.00,\"\",0.00,150.00,124.00,733.00,,,,,,\n2015,5,20,\"AA\",\"371\",\"LGA\",\"ORD\",13.00,34.00,0.00,\"\",0.00,186.00,121.00,733.00,0.00,0.00,21.00,0.00,13.00,\n2015,5,21,\"AA\",\"371\",\"LGA\",\"ORD\",-1.00,-19.00,0.00,\"\",0.00,147.00,114.00,733.00,,,,,,\n2015,5,22,\"AA\",\"371\",\"LGA\",\"ORD\",4.00,-21.00,0.00,\"\",0.00,140.00,122.00,733.00,,,,,,\n2015,5,24,\"AA\",\"371\",\"LGA\",\"ORD\",-3.00,-23.00,0.00,\"\",0.00,145.00,123.00,733.00,,,,,,\n2015,5,25,\"AA\",\"371\",\"LGA\",\"ORD\",0.00,-27.00,0.00,\"\",0.00,138.00,108.00,733.00,,,,,,\n2015,5,26,\"AA\",\"371\",\"LGA\",\"ORD\",-5.00,-37.00,0.00,\"\",0.00,133.00,113.00,733.00,,,,,,\n2015,5,27,\"AA\",\"371\",\"LGA\",\"ORD\",164.00,128.00,0.00,\"\",0.00,129.00,109.00,733.00,0.00,0.00,0.00,0.00,128.00,\n2015,5,28,\"AA\",\"371\",\"LGA\",\"ORD\",16.00,7.00,0.00,\"\",0.00,156.00,113.00,733.00,,,,,,\n2015,5,29,\"AA\",\"371\",\"LGA\",\"ORD\",-7.00,-48.00,0.00,\"\",0.00,124.00,106.00,733.00,,,,,,\n2015,5,31,\"AA\",\"371\",\"LGA\",\"ORD\",195.00,178.00,0.00,\"\",0.00,148.00,118.00,733.00,0.00,0.00,0.00,0.00,178.00,\n2015,5,1,\"AA\",\"374\",\"ORD\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,126.00,104.00,733.00,,,,,,\n2015,5,3,\"AA\",\"374\",\"ORD\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,126.00,101.00,733.00,,,,,,\n2015,5,4,\"AA\",\"374\",\"ORD\",\"LGA\",-5.00,-31.00,0.00,\"\",0.00,113.00,98.00,733.00,,,,,,\n2015,5,5,\"AA\",\"374\",\"ORD\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,121.00,96.00,733.00,,,,,,\n2015,5,6,\"AA\",\"374\",\"ORD\",\"LGA\",6.00,-13.00,0.00,\"\",0.00,120.00,94.00,733.00,,,,,,\n2015,5,7,\"AA\",\"374\",\"ORD\",\"LGA\",2.00,-8.00,0.00,\"\",0.00,129.00,100.00,733.00,,,,,,\n2015,5,8,\"AA\",\"374\",\"ORD\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,122.00,102.00,733.00,,,,,,\n2015,5,10,\"AA\",\"374\",\"ORD\",\"LGA\",10.00,-3.00,0.00,\"\",0.00,126.00,101.00,733.00,,,,,,\n2015,5,11,\"AA\",\"374\",\"ORD\",\"LGA\",-1.00,,0.00,\"\",1.00,,,733.00,,,,,,\n2015,5,12,\"AA\",\"374\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,13,\"AA\",\"374\",\"ORD\",\"LGA\",34.00,13.00,0.00,\"\",0.00,118.00,91.00,733.00,,,,,,\n2015,5,14,\"AA\",\"374\",\"ORD\",\"LGA\",3.00,-17.00,0.00,\"\",0.00,119.00,96.00,733.00,,,,,,\n2015,5,15,\"AA\",\"374\",\"ORD\",\"LGA\",-3.00,-22.00,0.00,\"\",0.00,120.00,103.00,733.00,,,,,,\n2015,5,17,\"AA\",\"374\",\"ORD\",\"LGA\",0.00,-27.00,0.00,\"\",0.00,112.00,96.00,733.00,,,,,,\n2015,5,18,\"AA\",\"374\",\"ORD\",\"LGA\",258.00,328.00,0.00,\"\",0.00,209.00,126.00,733.00,0.00,0.00,328.00,0.00,0.00,\n2015,5,19,\"AA\",\"374\",\"ORD\",\"LGA\",28.00,16.00,0.00,\"\",0.00,127.00,92.00,733.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,20,\"AA\",\"374\",\"ORD\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,125.00,95.00,733.00,,,,,,\n2015,5,21,\"AA\",\"374\",\"ORD\",\"LGA\",47.00,19.00,0.00,\"\",0.00,111.00,93.00,733.00,15.00,0.00,0.00,0.00,4.00,\n2015,5,22,\"AA\",\"374\",\"ORD\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,126.00,96.00,733.00,,,,,,\n2015,5,24,\"AA\",\"374\",\"ORD\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,120.00,99.00,733.00,,,,,,\n2015,5,25,\"AA\",\"374\",\"ORD\",\"LGA\",-10.00,-34.00,0.00,\"\",0.00,115.00,100.00,733.00,,,,,,\n2015,5,26,\"AA\",\"374\",\"ORD\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,127.00,103.00,733.00,,,,,,\n2015,5,27,\"AA\",\"374\",\"ORD\",\"LGA\",11.00,38.00,0.00,\"\",0.00,166.00,129.00,733.00,0.00,0.00,27.00,8.00,3.00,\n2015,5,28,\"AA\",\"374\",\"ORD\",\"LGA\",2.00,-16.00,0.00,\"\",0.00,121.00,99.00,733.00,,,,,,\n2015,5,29,\"AA\",\"374\",\"ORD\",\"LGA\",-8.00,1.00,0.00,\"\",0.00,148.00,103.00,733.00,,,,,,\n2015,5,31,\"AA\",\"374\",\"ORD\",\"LGA\",59.00,195.00,0.00,\"\",0.00,275.00,120.00,733.00,0.00,0.00,195.00,0.00,0.00,\n2015,5,1,\"AA\",\"380\",\"ORD\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,118.00,104.00,733.00,,,,,,\n2015,5,3,\"AA\",\"380\",\"ORD\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,130.00,105.00,733.00,,,,,,\n2015,5,4,\"AA\",\"380\",\"ORD\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,112.00,99.00,733.00,,,,,,\n2015,5,5,\"AA\",\"380\",\"ORD\",\"LGA\",-4.00,-24.00,0.00,\"\",0.00,111.00,93.00,733.00,,,,,,\n2015,5,6,\"AA\",\"380\",\"ORD\",\"LGA\",43.00,35.00,0.00,\"\",0.00,123.00,99.00,733.00,18.00,0.00,0.00,0.00,17.00,\n2015,5,7,\"AA\",\"380\",\"ORD\",\"LGA\",-1.00,0.00,0.00,\"\",0.00,132.00,104.00,733.00,,,,,,\n2015,5,8,\"AA\",\"380\",\"ORD\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,126.00,97.00,733.00,,,,,,\n2015,5,10,\"AA\",\"380\",\"ORD\",\"LGA\",6.00,4.00,0.00,\"\",0.00,129.00,98.00,733.00,,,,,,\n2015,5,11,\"AA\",\"380\",\"ORD\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,120.00,98.00,733.00,,,,,,\n2015,5,12,\"AA\",\"380\",\"ORD\",\"LGA\",-4.00,-31.00,0.00,\"\",0.00,104.00,89.00,733.00,,,,,,\n2015,5,13,\"AA\",\"380\",\"ORD\",\"LGA\",-2.00,-25.00,0.00,\"\",0.00,108.00,90.00,733.00,,,,,,\n2015,5,14,\"AA\",\"380\",\"ORD\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,122.00,97.00,733.00,,,,,,\n2015,5,15,\"AA\",\"380\",\"ORD\",\"LGA\",-6.00,-27.00,0.00,\"\",0.00,110.00,94.00,733.00,,,,,,\n2015,5,17,\"AA\",\"380\",\"ORD\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,114.00,96.00,733.00,,,,,,\n2015,5,18,\"AA\",\"380\",\"ORD\",\"LGA\",129.00,136.00,0.00,\"\",0.00,138.00,98.00,733.00,0.00,0.00,136.00,0.00,0.00,\n2015,5,19,\"AA\",\"380\",\"ORD\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,129.00,95.00,733.00,,,,,,\n2015,5,20,\"AA\",\"380\",\"ORD\",\"LGA\",4.00,-11.00,0.00,\"\",0.00,116.00,88.00,733.00,,,,,,\n2015,5,21,\"AA\",\"380\",\"ORD\",\"LGA\",1.00,-21.00,0.00,\"\",0.00,109.00,94.00,733.00,,,,,,\n2015,5,22,\"AA\",\"380\",\"ORD\",\"LGA\",-1.00,-26.00,0.00,\"\",0.00,106.00,86.00,733.00,,,,,,\n2015,5,24,\"AA\",\"380\",\"ORD\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,113.00,96.00,733.00,,,,,,\n2015,5,25,\"AA\",\"380\",\"ORD\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,114.00,99.00,733.00,,,,,,\n2015,5,26,\"AA\",\"380\",\"ORD\",\"LGA\",18.00,4.00,0.00,\"\",0.00,117.00,100.00,733.00,,,,,,\n2015,5,27,\"AA\",\"380\",\"ORD\",\"LGA\",0.00,1.00,0.00,\"\",0.00,132.00,107.00,733.00,,,,,,\n2015,5,28,\"AA\",\"380\",\"ORD\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,115.00,100.00,733.00,,,,,,\n2015,5,29,\"AA\",\"380\",\"ORD\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,128.00,96.00,733.00,,,,,,\n2015,5,31,\"AA\",\"380\",\"ORD\",\"LGA\",1.00,-9.00,0.00,\"\",0.00,121.00,97.00,733.00,,,,,,\n2015,5,1,\"DL\",\"1447\",\"LGA\",\"ATL\",-2.00,-7.00,0.00,\"\",0.00,139.00,105.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1473\",\"SEA\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,326.00,284.00,2422.00,,,,,,\n2015,5,1,\"DL\",\"1486\",\"ATL\",\"LGA\",3.00,-16.00,0.00,\"\",0.00,120.00,100.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1487\",\"ATL\",\"JFK\",1.00,-5.00,0.00,\"\",0.00,138.00,103.00,760.00,,,,,,\n2015,5,1,\"DL\",\"1496\",\"MSP\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,166.00,139.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"1498\",\"FLL\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,172.00,137.00,1076.00,,,,,,\n2015,5,1,\"DL\",\"1514\",\"LGA\",\"FLL\",-2.00,-6.00,0.00,\"\",0.00,185.00,161.00,1076.00,,,,,,\n2015,5,1,\"DL\",\"1515\",\"ATL\",\"ALB\",-5.00,-2.00,0.00,\"\",0.00,150.00,120.00,853.00,,,,,,\n2015,5,1,\"DL\",\"1526\",\"MCO\",\"LGA\",32.00,16.00,0.00,\"\",0.00,143.00,118.00,950.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"DL\",\"1542\",\"SEA\",\"JFK\",-5.00,-31.00,0.00,\"\",0.00,298.00,278.00,2422.00,,,,,,\n2015,5,1,\"DL\",\"1543\",\"ATL\",\"ALB\",-1.00,-12.00,0.00,\"\",0.00,133.00,115.00,853.00,,,,,,\n2015,5,1,\"DL\",\"1543\",\"ALB\",\"ATL\",-2.00,-18.00,0.00,\"\",0.00,146.00,117.00,853.00,,,,,,\n2015,5,1,\"DL\",\"1548\",\"LGA\",\"DTW\",110.00,114.00,0.00,\"\",0.00,124.00,78.00,502.00,98.00,0.00,4.00,0.00,12.00,\n2015,5,1,\"DL\",\"1560\",\"MSY\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,181.00,144.00,1183.00,,,,,,\n2015,5,1,\"DL\",\"1562\",\"BOS\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,69.00,51.00,187.00,,,,,,\n2015,5,1,\"DL\",\"1566\",\"LGA\",\"PBI\",0.00,0.00,0.00,\"\",0.00,183.00,148.00,1035.00,,,,,,\n2015,5,1,\"DL\",\"1580\",\"LGA\",\"DTW\",-4.00,-5.00,0.00,\"\",0.00,124.00,80.00,502.00,,,,,,\n2015,5,1,\"DL\",\"1583\",\"SFO\",\"JFK\",4.00,-25.00,0.00,\"\",0.00,320.00,299.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"1584\",\"ATL\",\"ROC\",-3.00,-12.00,0.00,\"\",0.00,124.00,105.00,749.00,,,,,,\n2015,5,1,\"DL\",\"1584\",\"ROC\",\"ATL\",-7.00,-22.00,0.00,\"\",0.00,120.00,95.00,749.00,,,,,,\n2015,5,1,\"DL\",\"1586\",\"ATL\",\"LGA\",4.00,-3.00,0.00,\"\",0.00,137.00,101.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1596\",\"MSP\",\"LGA\",6.00,-7.00,0.00,\"\",0.00,152.00,131.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"1644\",\"FLL\",\"JFK\",104.00,75.00,0.00,\"\",0.00,158.00,131.00,1069.00,0.00,0.00,0.00,0.00,75.00,\n2015,5,1,\"DL\",\"1647\",\"LGA\",\"ATL\",-1.00,-19.00,0.00,\"\",0.00,134.00,100.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1671\",\"MIA\",\"JFK\",-2.00,-36.00,0.00,\"\",0.00,153.00,131.00,1089.00,,,,,,\n2015,5,1,\"DL\",\"1672\",\"ATL\",\"BUF\",0.00,7.00,0.00,\"\",0.00,126.00,99.00,712.00,,,,,,\n2015,5,1,\"DL\",\"1672\",\"BUF\",\"ATL\",2.00,-14.00,0.00,\"\",0.00,112.00,95.00,712.00,,,,,,\n2015,5,1,\"DL\",\"1685\",\"LGA\",\"MCO\",3.00,15.00,0.00,\"\",0.00,187.00,138.00,950.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,1,\"DL\",\"1697\",\"LGA\",\"ATL\",1.00,-28.00,0.00,\"\",0.00,129.00,102.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1728\",\"LAS\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,290.00,270.00,2248.00,,,,,,\n2015,5,1,\"DL\",\"1750\",\"ATL\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,148.00,109.00,760.00,,,,,,\n2015,5,1,\"DL\",\"1762\",\"LAX\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,328.00,299.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"1779\",\"LGA\",\"MSY\",0.00,-20.00,0.00,\"\",0.00,179.00,160.00,1183.00,,,,,,\n2015,5,1,\"DL\",\"1786\",\"ATL\",\"LGA\",-2.00,-23.00,0.00,\"\",0.00,121.00,102.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1796\",\"LGA\",\"MSP\",-3.00,-14.00,0.00,\"\",0.00,183.00,144.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"1830\",\"SLC\",\"JFK\",17.00,-8.00,0.00,\"\",0.00,251.00,231.00,1990.00,,,,,,\n2015,5,1,\"DL\",\"1841\",\"SJU\",\"JFK\",7.00,-12.00,0.00,\"\",0.00,228.00,203.00,1598.00,,,,,,\n2015,5,1,\"DL\",\"1848\",\"DTW\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,106.00,77.00,502.00,,,,,,\n2015,5,1,\"DL\",\"1849\",\"LGA\",\"ATL\",-5.00,-36.00,0.00,\"\",0.00,127.00,100.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1851\",\"CHS\",\"JFK\",22.00,11.00,0.00,\"\",0.00,113.00,83.00,636.00,,,,,,\n2015,5,1,\"DL\",\"1875\",\"LGA\",\"TPA\",-4.00,-13.00,0.00,\"\",0.00,171.00,141.00,1010.00,,,,,,\n2015,5,1,\"DL\",\"1879\",\"LGA\",\"FLL\",-2.00,-2.00,0.00,\"\",0.00,187.00,153.00,1076.00,,,,,,\n2015,5,1,\"DL\",\"1885\",\"LGA\",\"MCO\",-3.00,-5.00,0.00,\"\",0.00,178.00,140.00,950.00,,,,,,\n2015,5,1,\"DL\",\"1886\",\"ATL\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,136.00,108.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1897\",\"LGA\",\"MCO\",1.00,-12.00,0.00,\"\",0.00,161.00,133.00,950.00,,,,,,\n2015,5,1,\"DL\",\"1902\",\"LGA\",\"PBI\",-2.00,-10.00,0.00,\"\",0.00,176.00,150.00,1035.00,,,,,,\n2015,5,1,\"DL\",\"1917\",\"MIA\",\"LGA\",-6.00,-27.00,0.00,\"\",0.00,163.00,136.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"1919\",\"LGA\",\"MSP\",-7.00,-18.00,0.00,\"\",0.00,171.00,141.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"1930\",\"LGA\",\"MIA\",-2.00,-21.00,0.00,\"\",0.00,179.00,151.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"1935\",\"LGA\",\"TPA\",-3.00,-20.00,0.00,\"\",0.00,165.00,141.00,1010.00,,,,,,\n2015,5,1,\"DL\",\"1947\",\"FLL\",\"JFK\",-8.00,-39.00,0.00,\"\",0.00,152.00,133.00,1069.00,,,,,,\n2015,5,1,\"DL\",\"1948\",\"DTW\",\"LGA\",-3.00,14.00,0.00,\"\",0.00,124.00,79.00,502.00,,,,,,\n2015,5,1,\"DL\",\"1949\",\"TPA\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,151.00,131.00,1010.00,,,,,,\n2015,5,17,\"B6\",\"2302\",\"JFK\",\"BUF\",-2.00,-30.00,0.00,\"\",0.00,83.00,51.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2302\",\"JFK\",\"BUF\",-4.00,2.00,0.00,\"\",0.00,117.00,70.00,301.00,,,,,,\n2015,5,19,\"B6\",\"2302\",\"JFK\",\"BUF\",-5.00,-26.00,0.00,\"\",0.00,90.00,58.00,301.00,,,,,,\n2015,5,20,\"B6\",\"2302\",\"JFK\",\"BUF\",-4.00,-40.00,0.00,\"\",0.00,75.00,57.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2302\",\"JFK\",\"BUF\",-4.00,-35.00,0.00,\"\",0.00,80.00,54.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2302\",\"JFK\",\"BUF\",83.00,44.00,0.00,\"\",0.00,72.00,54.00,301.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"2302\",\"JFK\",\"BUF\",-5.00,-38.00,0.00,\"\",0.00,78.00,56.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2302\",\"JFK\",\"BUF\",1.00,-25.00,0.00,\"\",0.00,85.00,55.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2302\",\"JFK\",\"BUF\",-5.00,-36.00,0.00,\"\",0.00,80.00,47.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2302\",\"JFK\",\"BUF\",-1.00,-27.00,0.00,\"\",0.00,85.00,48.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2302\",\"JFK\",\"BUF\",-4.00,100.00,0.00,\"\",0.00,215.00,67.00,301.00,0.00,0.00,100.00,0.00,0.00,\n2015,5,28,\"B6\",\"2302\",\"JFK\",\"BUF\",-4.00,-36.00,0.00,\"\",0.00,79.00,61.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2302\",\"JFK\",\"BUF\",-7.00,-23.00,0.00,\"\",0.00,95.00,53.00,301.00,,,,,,\n2015,5,30,\"B6\",\"2302\",\"JFK\",\"BUF\",-3.00,-14.00,0.00,\"\",0.00,100.00,54.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2302\",\"JFK\",\"BUF\",,,1.00,\"C\",0.00,,,301.00,,,,,,\n2015,5,4,\"B6\",\"2317\",\"BOS\",\"JFK\",0.00,6.00,0.00,\"\",0.00,90.00,65.00,187.00,,,,,,\n2015,5,11,\"B6\",\"2317\",\"BOS\",\"JFK\",52.00,30.00,0.00,\"\",0.00,62.00,44.00,187.00,21.00,0.00,0.00,0.00,9.00,\n2015,5,17,\"B6\",\"2317\",\"BOS\",\"JFK\",15.00,12.00,0.00,\"\",0.00,81.00,52.00,187.00,,,,,,\n2015,5,20,\"B6\",\"2317\",\"BOS\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,68.00,47.00,187.00,,,,,,\n2015,5,26,\"B6\",\"2317\",\"BOS\",\"JFK\",-3.00,-33.00,0.00,\"\",0.00,54.00,37.00,187.00,,,,,,\n2015,5,28,\"B6\",\"2317\",\"BOS\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,69.00,41.00,187.00,,,,,,\n2015,5,1,\"B6\",\"2401\",\"BUF\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,76.00,64.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2401\",\"BUF\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,76.00,63.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2401\",\"BUF\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,69.00,56.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2401\",\"BUF\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,71.00,56.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2401\",\"BUF\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,68.00,53.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2401\",\"BUF\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,79.00,53.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2401\",\"BUF\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,67.00,54.00,301.00,,,,,,\n2015,5,10,\"B6\",\"2401\",\"BUF\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,77.00,60.00,301.00,,,,,,\n2015,5,11,\"B6\",\"2401\",\"BUF\",\"JFK\",-10.00,-5.00,0.00,\"\",0.00,85.00,66.00,301.00,,,,,,\n2015,5,12,\"B6\",\"2401\",\"BUF\",\"JFK\",-5.00,9.00,0.00,\"\",0.00,94.00,64.00,301.00,,,,,,\n2015,5,13,\"B6\",\"2401\",\"BUF\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,68.00,52.00,301.00,,,,,,\n2015,5,14,\"B6\",\"2401\",\"BUF\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,74.00,56.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2401\",\"BUF\",\"JFK\",-10.00,-20.00,0.00,\"\",0.00,70.00,56.00,301.00,,,,,,\n2015,5,17,\"B6\",\"2401\",\"BUF\",\"JFK\",-11.00,-19.00,0.00,\"\",0.00,72.00,58.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2401\",\"BUF\",\"JFK\",4.00,25.00,0.00,\"\",0.00,101.00,64.00,301.00,4.00,0.00,21.00,0.00,0.00,\n2015,5,19,\"B6\",\"2401\",\"BUF\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,77.00,58.00,301.00,,,,,,\n2015,5,20,\"B6\",\"2401\",\"BUF\",\"JFK\",-3.00,-3.00,0.00,\"\",0.00,80.00,58.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2401\",\"BUF\",\"JFK\",4.00,-5.00,0.00,\"\",0.00,71.00,59.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2401\",\"BUF\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,74.00,56.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2401\",\"BUF\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,68.00,53.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2401\",\"BUF\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,76.00,62.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2401\",\"BUF\",\"JFK\",-8.00,-13.00,0.00,\"\",0.00,75.00,57.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2401\",\"BUF\",\"JFK\",0.00,3.00,0.00,\"\",0.00,83.00,58.00,301.00,,,,,,\n2015,5,28,\"B6\",\"2401\",\"BUF\",\"JFK\",-10.00,-17.00,0.00,\"\",0.00,73.00,56.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2401\",\"BUF\",\"JFK\",-10.00,-20.00,0.00,\"\",0.00,70.00,56.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2401\",\"BUF\",\"JFK\",11.00,2.00,0.00,\"\",0.00,71.00,59.00,301.00,,,,,,\n2015,5,1,\"B6\",\"2402\",\"JFK\",\"BUF\",-5.00,-13.00,0.00,\"\",0.00,79.00,56.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2402\",\"JFK\",\"BUF\",4.00,-3.00,0.00,\"\",0.00,80.00,53.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2402\",\"JFK\",\"BUF\",-10.00,-20.00,0.00,\"\",0.00,77.00,51.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2402\",\"JFK\",\"BUF\",-4.00,-9.00,0.00,\"\",0.00,82.00,54.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2402\",\"JFK\",\"BUF\",-3.00,-12.00,0.00,\"\",0.00,78.00,54.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2402\",\"JFK\",\"BUF\",-3.00,-15.00,0.00,\"\",0.00,75.00,51.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2402\",\"JFK\",\"BUF\",-2.00,-22.00,0.00,\"\",0.00,67.00,51.00,301.00,,,,,,\n2015,5,10,\"B6\",\"2402\",\"JFK\",\"BUF\",-3.00,-15.00,0.00,\"\",0.00,75.00,54.00,301.00,,,,,,\n2015,5,11,\"B6\",\"2402\",\"JFK\",\"BUF\",-5.00,-14.00,0.00,\"\",0.00,78.00,54.00,301.00,,,,,,\n2015,5,12,\"B6\",\"2402\",\"JFK\",\"BUF\",-5.00,-14.00,0.00,\"\",0.00,78.00,60.00,301.00,,,,,,\n2015,5,13,\"B6\",\"2402\",\"JFK\",\"BUF\",8.00,18.00,0.00,\"\",0.00,97.00,57.00,301.00,8.00,0.00,10.00,0.00,0.00,\n2015,5,14,\"B6\",\"2402\",\"JFK\",\"BUF\",-7.00,-19.00,0.00,\"\",0.00,75.00,57.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2402\",\"JFK\",\"BUF\",-1.00,-16.00,0.00,\"\",0.00,72.00,56.00,301.00,,,,,,\n2015,5,17,\"B6\",\"2402\",\"JFK\",\"BUF\",-2.00,-8.00,0.00,\"\",0.00,81.00,51.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2402\",\"JFK\",\"BUF\",42.00,28.00,0.00,\"\",0.00,73.00,54.00,301.00,6.00,0.00,0.00,0.00,22.00,\n2015,5,19,\"B6\",\"2402\",\"JFK\",\"BUF\",-2.00,-13.00,0.00,\"\",0.00,76.00,54.00,301.00,,,,,,\n2015,5,20,\"B6\",\"2402\",\"JFK\",\"BUF\",-4.00,-14.00,0.00,\"\",0.00,77.00,60.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2402\",\"JFK\",\"BUF\",-2.00,-6.00,0.00,\"\",0.00,83.00,59.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2402\",\"JFK\",\"BUF\",-16.00,-23.00,0.00,\"\",0.00,80.00,62.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2402\",\"JFK\",\"BUF\",-5.00,-17.00,0.00,\"\",0.00,75.00,55.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2402\",\"JFK\",\"BUF\",4.00,-2.00,0.00,\"\",0.00,81.00,54.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2402\",\"JFK\",\"BUF\",-8.00,-24.00,0.00,\"\",0.00,71.00,51.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2402\",\"JFK\",\"BUF\",20.00,22.00,0.00,\"\",0.00,89.00,64.00,301.00,15.00,0.00,2.00,0.00,5.00,\n2015,5,28,\"B6\",\"2402\",\"JFK\",\"BUF\",-6.00,-15.00,0.00,\"\",0.00,78.00,53.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2402\",\"JFK\",\"BUF\",-4.00,-16.00,0.00,\"\",0.00,75.00,52.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2402\",\"JFK\",\"BUF\",-6.00,-16.00,0.00,\"\",0.00,77.00,54.00,301.00,,,,,,\n2015,5,1,\"B6\",\"2601\",\"BUF\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,79.00,66.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2601\",\"BUF\",\"JFK\",7.00,-12.00,0.00,\"\",0.00,77.00,63.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2601\",\"BUF\",\"JFK\",-13.00,-32.00,0.00,\"\",0.00,77.00,57.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2601\",\"BUF\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,74.00,59.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2601\",\"BUF\",\"JFK\",-10.00,-34.00,0.00,\"\",0.00,72.00,55.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2601\",\"BUF\",\"JFK\",-6.00,-31.00,0.00,\"\",0.00,71.00,59.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2601\",\"BUF\",\"JFK\",-9.00,-17.00,0.00,\"\",0.00,88.00,61.00,301.00,,,,,,\n2015,5,10,\"B6\",\"2601\",\"BUF\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,80.00,63.00,301.00,,,,,,\n2015,5,11,\"B6\",\"2601\",\"BUF\",\"JFK\",0.00,53.00,0.00,\"\",0.00,149.00,58.00,301.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,12,\"B6\",\"2601\",\"BUF\",\"JFK\",,,1.00,\"C\",0.00,,,301.00,,,,,,\n2015,5,13,\"B6\",\"2601\",\"BUF\",\"JFK\",13.00,-6.00,0.00,\"\",0.00,77.00,59.00,301.00,,,,,,\n2015,5,14,\"B6\",\"2601\",\"BUF\",\"JFK\",-9.00,-35.00,0.00,\"\",0.00,70.00,56.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2601\",\"BUF\",\"JFK\",-2.00,-28.00,0.00,\"\",0.00,70.00,59.00,301.00,,,,,,\n2015,5,17,\"B6\",\"2601\",\"BUF\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,74.00,58.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2601\",\"BUF\",\"JFK\",182.00,158.00,0.00,\"\",0.00,72.00,59.00,301.00,0.00,0.00,139.00,0.00,19.00,\n2015,5,19,\"B6\",\"2601\",\"BUF\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,80.00,58.00,301.00,,,,,,\n2015,5,20,\"B6\",\"2601\",\"BUF\",\"JFK\",-2.00,-22.00,0.00,\"\",0.00,76.00,57.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2601\",\"BUF\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,84.00,68.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2601\",\"BUF\",\"JFK\",36.00,50.00,0.00,\"\",0.00,110.00,75.00,301.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,24,\"B6\",\"2601\",\"BUF\",\"JFK\",-3.00,-35.00,0.00,\"\",0.00,64.00,54.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2601\",\"BUF\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,75.00,60.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2601\",\"BUF\",\"JFK\",-10.00,-33.00,0.00,\"\",0.00,73.00,57.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2601\",\"BUF\",\"JFK\",219.00,193.00,0.00,\"\",0.00,70.00,57.00,301.00,0.00,0.00,179.00,0.00,14.00,\n2015,5,28,\"B6\",\"2601\",\"BUF\",\"JFK\",-4.00,-31.00,0.00,\"\",0.00,69.00,54.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2601\",\"BUF\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,77.00,59.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2601\",\"BUF\",\"JFK\",321.00,467.00,0.00,\"\",0.00,242.00,88.00,301.00,0.00,0.00,467.00,0.00,0.00,\n2015,5,1,\"B6\",\"2602\",\"JFK\",\"BUF\",-3.00,-13.00,0.00,\"\",0.00,74.00,49.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2602\",\"JFK\",\"BUF\",0.00,-8.00,0.00,\"\",0.00,76.00,53.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2602\",\"JFK\",\"BUF\",22.00,38.00,0.00,\"\",0.00,100.00,58.00,301.00,22.00,0.00,16.00,0.00,0.00,\n2015,5,5,\"B6\",\"2602\",\"JFK\",\"BUF\",39.00,26.00,0.00,\"\",0.00,71.00,57.00,301.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"B6\",\"2602\",\"JFK\",\"BUF\",57.00,55.00,0.00,\"\",0.00,82.00,54.00,301.00,55.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"B6\",\"2602\",\"JFK\",\"BUF\",0.00,-14.00,0.00,\"\",0.00,70.00,50.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2602\",\"JFK\",\"BUF\",-3.00,-20.00,0.00,\"\",0.00,67.00,53.00,301.00,,,,,,\n2015,5,10,\"B6\",\"2602\",\"JFK\",\"BUF\",112.00,106.00,0.00,\"\",0.00,78.00,53.00,301.00,0.00,0.00,0.00,0.00,106.00,\n2015,5,11,\"B6\",\"2602\",\"JFK\",\"BUF\",-6.00,-23.00,0.00,\"\",0.00,67.00,54.00,301.00,,,,,,\n2015,5,12,\"B6\",\"2602\",\"JFK\",\"BUF\",-3.00,-9.00,0.00,\"\",0.00,78.00,57.00,301.00,,,,,,\n2015,5,13,\"B6\",\"2602\",\"JFK\",\"BUF\",-7.00,-16.00,0.00,\"\",0.00,75.00,53.00,301.00,,,,,,\n2015,5,14,\"B6\",\"2602\",\"JFK\",\"BUF\",-6.00,-13.00,0.00,\"\",0.00,77.00,58.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2602\",\"JFK\",\"BUF\",-1.00,-9.00,0.00,\"\",0.00,76.00,55.00,301.00,,,,,,\n2015,5,17,\"B6\",\"2602\",\"JFK\",\"BUF\",0.00,-10.00,0.00,\"\",0.00,74.00,56.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2602\",\"JFK\",\"BUF\",-3.00,28.00,0.00,\"\",0.00,115.00,52.00,301.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,19,\"B6\",\"2602\",\"JFK\",\"BUF\",15.00,13.00,0.00,\"\",0.00,82.00,53.00,301.00,,,,,,\n2015,5,20,\"B6\",\"2602\",\"JFK\",\"BUF\",-8.00,-16.00,0.00,\"\",0.00,76.00,57.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2602\",\"JFK\",\"BUF\",-6.00,-11.00,0.00,\"\",0.00,79.00,57.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2602\",\"JFK\",\"BUF\",-4.00,-4.00,0.00,\"\",0.00,84.00,58.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2602\",\"JFK\",\"BUF\",-10.00,-22.00,0.00,\"\",0.00,72.00,56.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2602\",\"JFK\",\"BUF\",-6.00,-12.00,0.00,\"\",0.00,78.00,59.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2602\",\"JFK\",\"BUF\",-5.00,-18.00,0.00,\"\",0.00,71.00,54.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2602\",\"JFK\",\"BUF\",32.00,16.00,0.00,\"\",0.00,68.00,54.00,301.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"B6\",\"2602\",\"JFK\",\"BUF\",0.00,-11.00,0.00,\"\",0.00,73.00,54.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2602\",\"JFK\",\"BUF\",-2.00,-10.00,0.00,\"\",0.00,76.00,53.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2602\",\"JFK\",\"BUF\",-3.00,-12.00,0.00,\"\",0.00,75.00,55.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2684\",\"MCO\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,141.00,118.00,944.00,,,,,,\n2015,5,12,\"B6\",\"2684\",\"MCO\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,146.00,128.00,944.00,,,,,,\n2015,5,18,\"B6\",\"2684\",\"MCO\",\"JFK\",10.00,44.00,0.00,\"\",0.00,187.00,170.00,944.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,19,\"B6\",\"2684\",\"MCO\",\"JFK\",155.00,139.00,0.00,\"\",0.00,137.00,123.00,944.00,4.00,0.00,0.00,0.00,135.00,\n2015,5,26,\"B6\",\"2684\",\"MCO\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,152.00,131.00,944.00,,,,,,\n2015,5,1,\"B6\",\"2701\",\"BUF\",\"JFK\",-9.00,-30.00,0.00,\"\",0.00,76.00,60.00,301.00,,,,,,\n2015,5,2,\"B6\",\"2701\",\"BUF\",\"JFK\",-10.00,-38.00,0.00,\"\",0.00,69.00,58.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2701\",\"BUF\",\"JFK\",-10.00,-29.00,0.00,\"\",0.00,78.00,64.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2701\",\"BUF\",\"JFK\",-8.00,-37.00,0.00,\"\",0.00,68.00,54.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2701\",\"BUF\",\"JFK\",-10.00,-36.00,0.00,\"\",0.00,71.00,52.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2701\",\"BUF\",\"JFK\",-7.00,-31.00,0.00,\"\",0.00,73.00,58.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2701\",\"BUF\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,84.00,67.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2701\",\"BUF\",\"JFK\",111.00,112.00,0.00,\"\",0.00,98.00,78.00,301.00,0.00,0.00,90.00,0.00,22.00,\n2015,5,9,\"B6\",\"2701\",\"BUF\",\"JFK\",59.00,35.00,0.00,\"\",0.00,73.00,57.00,301.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,10,\"B6\",\"2701\",\"BUF\",\"JFK\",19.00,-2.00,0.00,\"\",0.00,76.00,61.00,301.00,,,,,,\n2015,5,11,\"B6\",\"2701\",\"BUF\",\"JFK\",54.00,59.00,0.00,\"\",0.00,102.00,82.00,301.00,0.00,0.00,59.00,0.00,0.00,\n2015,5,12,\"B6\",\"2701\",\"BUF\",\"JFK\",31.00,6.00,0.00,\"\",0.00,72.00,57.00,301.00,,,,,,\n2015,5,13,\"B6\",\"2701\",\"BUF\",\"JFK\",52.00,30.00,0.00,\"\",0.00,75.00,62.00,301.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,14,\"B6\",\"2701\",\"BUF\",\"JFK\",-3.00,-37.00,0.00,\"\",0.00,63.00,54.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2701\",\"BUF\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,80.00,67.00,301.00,,,,,,\n2015,5,16,\"B6\",\"2701\",\"BUF\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,82.00,63.00,301.00,,,,,,\n2015,5,17,\"B6\",\"2701\",\"BUF\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,86.00,73.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2701\",\"BUF\",\"JFK\",89.00,69.00,0.00,\"\",0.00,77.00,63.00,301.00,0.00,0.00,68.00,0.00,1.00,\n2015,5,19,\"B6\",\"2701\",\"BUF\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,84.00,64.00,301.00,,,,,,\n2015,5,20,\"B6\",\"2701\",\"BUF\",\"JFK\",26.00,18.00,0.00,\"\",0.00,89.00,56.00,301.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,21,\"B6\",\"2701\",\"BUF\",\"JFK\",-13.00,-29.00,0.00,\"\",0.00,81.00,55.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2701\",\"BUF\",\"JFK\",94.00,64.00,0.00,\"\",0.00,67.00,50.00,301.00,0.00,0.00,35.00,0.00,29.00,\n2015,5,23,\"B6\",\"2701\",\"BUF\",\"JFK\",-10.00,-37.00,0.00,\"\",0.00,70.00,56.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2701\",\"BUF\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,76.00,60.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2701\",\"BUF\",\"JFK\",-6.00,-35.00,0.00,\"\",0.00,68.00,54.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2701\",\"BUF\",\"JFK\",-7.00,-29.00,0.00,\"\",0.00,75.00,63.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2701\",\"BUF\",\"JFK\",99.00,79.00,0.00,\"\",0.00,77.00,58.00,301.00,0.00,0.00,0.00,0.00,79.00,\n2015,5,28,\"B6\",\"2701\",\"BUF\",\"JFK\",-8.00,-32.00,0.00,\"\",0.00,73.00,59.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2701\",\"BUF\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,82.00,66.00,301.00,,,,,,\n2015,5,30,\"B6\",\"2701\",\"BUF\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,75.00,63.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2701\",\"BUF\",\"JFK\",,,1.00,\"C\",0.00,,,301.00,,,,,,\n2015,5,1,\"B6\",\"2702\",\"JFK\",\"BUF\",-5.00,-10.00,0.00,\"\",0.00,85.00,52.00,301.00,,,,,,\n2015,5,2,\"B6\",\"2702\",\"JFK\",\"BUF\",-3.00,-19.00,0.00,\"\",0.00,74.00,52.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2702\",\"JFK\",\"BUF\",18.00,18.00,0.00,\"\",0.00,90.00,57.00,301.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"2702\",\"JFK\",\"BUF\",-8.00,-16.00,0.00,\"\",0.00,82.00,53.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2702\",\"JFK\",\"BUF\",-2.00,-8.00,0.00,\"\",0.00,84.00,57.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2702\",\"JFK\",\"BUF\",-8.00,-9.00,0.00,\"\",0.00,89.00,57.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2702\",\"JFK\",\"BUF\",-5.00,-7.00,0.00,\"\",0.00,88.00,54.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2702\",\"JFK\",\"BUF\",27.00,7.00,0.00,\"\",0.00,70.00,51.00,301.00,,,,,,\n2015,5,9,\"B6\",\"2702\",\"JFK\",\"BUF\",38.00,34.00,0.00,\"\",0.00,86.00,50.00,301.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,10,\"B6\",\"2702\",\"JFK\",\"BUF\",-1.00,-17.00,0.00,\"\",0.00,74.00,56.00,301.00,,,,,,\n2015,5,11,\"B6\",\"2702\",\"JFK\",\"BUF\",-1.00,-3.00,0.00,\"\",0.00,88.00,52.00,301.00,,,,,,\n2015,5,12,\"B6\",\"2702\",\"JFK\",\"BUF\",25.00,40.00,0.00,\"\",0.00,105.00,60.00,301.00,25.00,0.00,15.00,0.00,0.00,\n2015,5,13,\"B6\",\"2702\",\"JFK\",\"BUF\",-4.00,-2.00,0.00,\"\",0.00,92.00,61.00,301.00,,,,,,\n2015,5,14,\"B6\",\"2702\",\"JFK\",\"BUF\",-6.00,-16.00,0.00,\"\",0.00,80.00,57.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2702\",\"JFK\",\"BUF\",-1.00,5.00,0.00,\"\",0.00,96.00,55.00,301.00,,,,,,\n2015,5,16,\"B6\",\"2702\",\"JFK\",\"BUF\",68.00,77.00,0.00,\"\",0.00,99.00,55.00,301.00,65.00,0.00,9.00,0.00,3.00,\n2015,5,17,\"B6\",\"2702\",\"JFK\",\"BUF\",-6.00,-4.00,0.00,\"\",0.00,92.00,55.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2702\",\"JFK\",\"BUF\",-4.00,17.00,0.00,\"\",0.00,111.00,52.00,301.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,19,\"B6\",\"2702\",\"JFK\",\"BUF\",21.00,31.00,0.00,\"\",0.00,100.00,54.00,301.00,21.00,0.00,10.00,0.00,0.00,\n2015,5,20,\"B6\",\"2702\",\"JFK\",\"BUF\",-5.00,0.00,0.00,\"\",0.00,95.00,60.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2702\",\"JFK\",\"BUF\",-8.00,-9.00,0.00,\"\",0.00,89.00,58.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2702\",\"JFK\",\"BUF\",-10.00,-18.00,0.00,\"\",0.00,82.00,57.00,301.00,,,,,,\n2015,5,23,\"B6\",\"2702\",\"JFK\",\"BUF\",-1.00,-7.00,0.00,\"\",0.00,84.00,60.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2702\",\"JFK\",\"BUF\",-6.00,-16.00,0.00,\"\",0.00,80.00,59.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2702\",\"JFK\",\"BUF\",-5.00,-12.00,0.00,\"\",0.00,83.00,54.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2702\",\"JFK\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,81.00,51.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2702\",\"JFK\",\"BUF\",-3.00,-10.00,0.00,\"\",0.00,83.00,52.00,301.00,,,,,,\n2015,5,28,\"B6\",\"2702\",\"JFK\",\"BUF\",-5.00,-1.00,0.00,\"\",0.00,94.00,56.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2702\",\"JFK\",\"BUF\",-6.00,-8.00,0.00,\"\",0.00,88.00,54.00,301.00,,,,,,\n2015,5,30,\"B6\",\"2702\",\"JFK\",\"BUF\",-1.00,-14.00,0.00,\"\",0.00,77.00,53.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2702\",\"JFK\",\"BUF\",-3.00,-6.00,0.00,\"\",0.00,87.00,56.00,301.00,,,,,,\n2015,5,1,\"B6\",\"2802\",\"JFK\",\"BUF\",-8.00,-15.00,0.00,\"\",0.00,80.00,51.00,301.00,,,,,,\n2015,5,2,\"B6\",\"2802\",\"JFK\",\"BUF\",10.00,-9.00,0.00,\"\",0.00,68.00,50.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2802\",\"JFK\",\"BUF\",9.00,2.00,0.00,\"\",0.00,80.00,57.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2802\",\"JFK\",\"BUF\",-7.00,-16.00,0.00,\"\",0.00,78.00,51.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2802\",\"JFK\",\"BUF\",-8.00,-10.00,0.00,\"\",0.00,85.00,57.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2802\",\"JFK\",\"BUF\",-10.00,-8.00,0.00,\"\",0.00,89.00,56.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2802\",\"JFK\",\"BUF\",-9.00,-12.00,0.00,\"\",0.00,84.00,56.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2802\",\"JFK\",\"BUF\",-5.00,2.00,0.00,\"\",0.00,94.00,53.00,301.00,,,,,,\n2015,5,9,\"B6\",\"2802\",\"JFK\",\"BUF\",-6.00,-13.00,0.00,\"\",0.00,80.00,51.00,301.00,,,,,,\n2015,5,10,\"B6\",\"2802\",\"JFK\",\"BUF\",-10.00,-19.00,0.00,\"\",0.00,78.00,53.00,301.00,,,,,,\n2015,5,11,\"B6\",\"2802\",\"JFK\",\"BUF\",-4.00,-20.00,0.00,\"\",0.00,71.00,53.00,301.00,,,,,,\n2015,5,12,\"B6\",\"2802\",\"JFK\",\"BUF\",-10.00,4.00,0.00,\"\",0.00,101.00,60.00,301.00,,,,,,\n2015,5,13,\"B6\",\"2802\",\"JFK\",\"BUF\",-10.00,-3.00,0.00,\"\",0.00,94.00,64.00,301.00,,,,,,\n2015,5,14,\"B6\",\"2802\",\"JFK\",\"BUF\",-9.00,-21.00,0.00,\"\",0.00,75.00,55.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2802\",\"JFK\",\"BUF\",-5.00,0.00,0.00,\"\",0.00,92.00,54.00,301.00,,,,,,\n2015,5,16,\"B6\",\"2802\",\"JFK\",\"BUF\",-4.00,10.00,0.00,\"\",0.00,101.00,58.00,301.00,,,,,,\n2015,5,17,\"B6\",\"2802\",\"JFK\",\"BUF\",-5.00,-12.00,0.00,\"\",0.00,80.00,54.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2802\",\"JFK\",\"BUF\",-6.00,-12.00,0.00,\"\",0.00,81.00,53.00,301.00,,,,,,\n2015,5,19,\"B6\",\"2802\",\"JFK\",\"BUF\",0.00,-8.00,0.00,\"\",0.00,79.00,51.00,301.00,,,,,,\n2015,5,20,\"B6\",\"2802\",\"JFK\",\"BUF\",-7.00,-6.00,0.00,\"\",0.00,88.00,57.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2802\",\"JFK\",\"BUF\",-8.00,-14.00,0.00,\"\",0.00,81.00,59.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2802\",\"JFK\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,79.00,57.00,301.00,,,,,,\n2015,5,23,\"B6\",\"2802\",\"JFK\",\"BUF\",-4.00,-15.00,0.00,\"\",0.00,76.00,60.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2802\",\"JFK\",\"BUF\",-13.00,-21.00,0.00,\"\",0.00,79.00,58.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2802\",\"JFK\",\"BUF\",-3.00,-17.00,0.00,\"\",0.00,73.00,54.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2802\",\"JFK\",\"BUF\",-8.00,-13.00,0.00,\"\",0.00,82.00,57.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2802\",\"JFK\",\"BUF\",-7.00,-15.00,0.00,\"\",0.00,79.00,53.00,301.00,,,,,,\n2015,5,28,\"B6\",\"2802\",\"JFK\",\"BUF\",-14.00,-26.00,0.00,\"\",0.00,75.00,57.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2802\",\"JFK\",\"BUF\",-12.00,-21.00,0.00,\"\",0.00,78.00,53.00,301.00,,,,,,\n2015,5,30,\"B6\",\"2802\",\"JFK\",\"BUF\",-2.00,-14.00,0.00,\"\",0.00,75.00,52.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2802\",\"JFK\",\"BUF\",-4.00,-10.00,0.00,\"\",0.00,81.00,57.00,301.00,,,,,,\n2015,5,1,\"B6\",\"2807\",\"PWM\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,65.00,48.00,273.00,,,,,,\n2015,5,2,\"B6\",\"2807\",\"PWM\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,67.00,54.00,273.00,,,,,,\n2015,5,3,\"B6\",\"2807\",\"PWM\",\"JFK\",89.00,70.00,0.00,\"\",0.00,58.00,46.00,273.00,70.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"B6\",\"2807\",\"PWM\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,67.00,51.00,273.00,,,,,,\n2015,5,5,\"B6\",\"2807\",\"PWM\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,70.00,47.00,273.00,,,,,,\n2015,5,6,\"B6\",\"2807\",\"PWM\",\"JFK\",-13.00,-31.00,0.00,\"\",0.00,59.00,47.00,273.00,,,,,,\n2015,5,7,\"B6\",\"2807\",\"PWM\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,62.00,47.00,273.00,,,,,,\n2015,5,8,\"B6\",\"2807\",\"PWM\",\"JFK\",67.00,101.00,0.00,\"\",0.00,111.00,100.00,273.00,0.00,67.00,34.00,0.00,0.00,\n2015,5,9,\"B6\",\"2807\",\"PWM\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,74.00,59.00,273.00,,,,,,\n2015,5,10,\"B6\",\"2807\",\"PWM\",\"JFK\",-9.00,-10.00,0.00,\"\",0.00,76.00,49.00,273.00,,,,,,\n2015,5,11,\"B6\",\"2807\",\"PWM\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,69.00,51.00,273.00,,,,,,\n2015,5,12,\"B6\",\"2807\",\"PWM\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,64.00,48.00,273.00,,,,,,\n2015,5,13,\"B6\",\"2807\",\"PWM\",\"JFK\",3.00,-7.00,0.00,\"\",0.00,67.00,54.00,273.00,,,,,,\n2015,5,14,\"B6\",\"2807\",\"PWM\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,74.00,45.00,273.00,,,,,,\n2015,5,15,\"B6\",\"2807\",\"PWM\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,64.00,47.00,273.00,,,,,,\n2015,5,16,\"B6\",\"2807\",\"PWM\",\"JFK\",-10.00,-19.00,0.00,\"\",0.00,68.00,52.00,273.00,,,,,,\n2015,5,17,\"B6\",\"2807\",\"PWM\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,62.00,45.00,273.00,,,,,,\n2015,5,18,\"B6\",\"2807\",\"PWM\",\"JFK\",84.00,67.00,0.00,\"\",0.00,60.00,47.00,273.00,67.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"B6\",\"2807\",\"PWM\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,73.00,58.00,273.00,,,,,,\n2015,5,20,\"B6\",\"2807\",\"PWM\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,64.00,50.00,273.00,,,,,,\n2015,5,21,\"B6\",\"2807\",\"PWM\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,69.00,51.00,273.00,,,,,,\n2015,5,22,\"B6\",\"2807\",\"PWM\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,70.00,56.00,273.00,,,,,,\n2015,5,23,\"B6\",\"2807\",\"PWM\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,66.00,49.00,273.00,,,,,,\n2015,5,24,\"B6\",\"2807\",\"PWM\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,63.00,49.00,273.00,,,,,,\n2015,5,25,\"B6\",\"2807\",\"PWM\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,63.00,46.00,273.00,,,,,,\n2015,5,26,\"B6\",\"2807\",\"PWM\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,72.00,53.00,273.00,,,,,,\n2015,5,27,\"B6\",\"2807\",\"PWM\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,65.00,49.00,273.00,,,,,,\n2015,5,28,\"B6\",\"2807\",\"PWM\",\"JFK\",-10.00,-20.00,0.00,\"\",0.00,67.00,51.00,273.00,,,,,,\n2015,5,29,\"B6\",\"2807\",\"PWM\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,61.00,45.00,273.00,,,,,,\n2015,5,30,\"B6\",\"2807\",\"PWM\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,62.00,47.00,273.00,,,,,,\n2015,5,31,\"B6\",\"2807\",\"PWM\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,66.00,46.00,273.00,,,,,,\n2015,5,13,\"B6\",\"2818\",\"JFK\",\"BOS\",10.00,-11.00,0.00,\"\",0.00,73.00,38.00,187.00,,,,,,\n2015,5,18,\"B6\",\"2818\",\"JFK\",\"BOS\",2.00,21.00,0.00,\"\",0.00,113.00,32.00,187.00,2.00,0.00,19.00,0.00,0.00,\n2015,5,8,\"B6\",\"2914\",\"LGB\",\"JFK\",41.00,63.00,0.00,\"\",0.00,338.00,320.00,2465.00,0.00,0.00,22.00,0.00,41.00,\n2015,5,20,\"B6\",\"2983\",\"JFK\",\"MCO\",-5.00,-11.00,0.00,\"\",0.00,170.00,124.00,944.00,,,,,,\n2015,5,1,\"DL\",\"42\",\"MIA\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,167.00,140.00,1089.00,,,,,,\n2015,5,1,\"DL\",\"2262\",\"LAX\",\"JFK\",6.00,15.00,0.00,\"\",0.00,343.00,304.00,2475.00,1.00,0.00,9.00,0.00,5.00,\n2015,5,1,\"DL\",\"2263\",\"JFK\",\"MIA\",0.00,-25.00,0.00,\"\",0.00,185.00,158.00,1089.00,,,,,,\n2015,5,1,\"DL\",\"2270\",\"LGA\",\"RSW\",-1.00,1.00,0.00,\"\",0.00,198.00,162.00,1080.00,,,,,,\n2015,5,1,\"DL\",\"2276\",\"MCO\",\"JFK\",63.00,37.00,0.00,\"\",0.00,141.00,120.00,944.00,3.00,0.00,0.00,0.00,34.00,\n2015,5,1,\"DL\",\"2277\",\"JFK\",\"TPA\",1.00,-23.00,0.00,\"\",0.00,169.00,136.00,1005.00,,,,,,\n2015,5,1,\"DL\",\"2280\",\"LGA\",\"TPA\",-4.00,9.00,0.00,\"\",0.00,187.00,143.00,1010.00,,,,,,\n2015,5,1,\"DL\",\"2282\",\"LGA\",\"MCO\",49.00,30.00,0.00,\"\",0.00,157.00,132.00,950.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"DL\",\"2285\",\"LGA\",\"MCO\",-4.00,8.00,0.00,\"\",0.00,175.00,139.00,950.00,,,,,,\n2015,5,1,\"DL\",\"2292\",\"JFK\",\"PBI\",9.00,6.00,0.00,\"\",0.00,184.00,144.00,1028.00,,,,,,\n2015,5,1,\"DL\",\"2296\",\"MSP\",\"LGA\",13.00,15.00,0.00,\"\",0.00,170.00,144.00,1020.00,13.00,0.00,2.00,0.00,0.00,\n2015,5,1,\"DL\",\"2301\",\"JFK\",\"SAT\",7.00,-38.00,0.00,\"\",0.00,224.00,199.00,1587.00,,,,,,\n2015,5,1,\"DL\",\"2311\",\"JFK\",\"MIA\",15.00,-11.00,0.00,\"\",0.00,180.00,154.00,1089.00,,,,,,\n2015,5,1,\"DL\",\"2312\",\"JFK\",\"DTW\",-6.00,-41.00,0.00,\"\",0.00,105.00,83.00,509.00,,,,,,\n2015,5,1,\"DL\",\"2317\",\"PBI\",\"LGA\",12.00,0.00,0.00,\"\",0.00,161.00,133.00,1035.00,,,,,,\n2015,5,1,\"DL\",\"2319\",\"LGA\",\"MSP\",-2.00,-5.00,0.00,\"\",0.00,191.00,144.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"2331\",\"LGA\",\"DTW\",61.00,35.00,0.00,\"\",0.00,98.00,75.00,502.00,0.00,0.00,0.00,0.00,35.00,\n2015,5,1,\"DL\",\"2340\",\"JFK\",\"MCO\",88.00,58.00,0.00,\"\",0.00,160.00,132.00,944.00,9.00,0.00,0.00,0.00,49.00,\n2015,5,1,\"DL\",\"2349\",\"DTW\",\"LGA\",84.00,72.00,0.00,\"\",0.00,94.00,73.00,502.00,0.00,0.00,0.00,0.00,72.00,\n2015,5,1,\"DL\",\"2350\",\"ATL\",\"JFK\",6.00,-9.00,0.00,\"\",0.00,120.00,99.00,760.00,,,,,,\n2015,5,1,\"DL\",\"2352\",\"LAS\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,298.00,273.00,2248.00,,,,,,\n2015,5,1,\"DL\",\"2354\",\"SLC\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,257.00,240.00,1990.00,,,,,,\n2015,5,1,\"DL\",\"2362\",\"LAX\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,316.00,296.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"2382\",\"JFK\",\"FLL\",-3.00,-31.00,0.00,\"\",0.00,173.00,152.00,1069.00,,,,,,\n2015,5,1,\"DL\",\"2386\",\"ATL\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,123.00,105.00,762.00,,,,,,\n2015,5,1,\"DL\",\"2395\",\"LGA\",\"PBI\",-6.00,7.00,0.00,\"\",0.00,193.00,147.00,1035.00,,,,,,\n2015,5,1,\"DL\",\"2404\",\"SAN\",\"JFK\",0.00,1.00,0.00,\"\",0.00,335.00,304.00,2446.00,,,,,,\n2015,5,1,\"DL\",\"2405\",\"PHX\",\"JFK\",-2.00,-2.00,0.00,\"\",0.00,295.00,267.00,2153.00,,,,,,\n2015,5,1,\"DL\",\"2406\",\"TPA\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,146.00,129.00,1010.00,,,,,,\n2015,5,1,\"DL\",\"2413\",\"MIA\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,169.00,139.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"2424\",\"JFK\",\"ATL\",-4.00,-43.00,0.00,\"\",0.00,133.00,103.00,760.00,,,,,,\n2015,5,1,\"DL\",\"2432\",\"DTW\",\"SYR\",-6.00,-7.00,0.00,\"\",0.00,78.00,55.00,374.00,,,,,,\n2015,5,1,\"DL\",\"2435\",\"JFK\",\"FLL\",142.00,110.00,0.00,\"\",0.00,171.00,150.00,1069.00,110.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"DL\",\"2447\",\"DEN\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,228.00,206.00,1626.00,,,,,,\n2015,5,1,\"DL\",\"2450\",\"MCO\",\"LGA\",7.00,-3.00,0.00,\"\",0.00,146.00,124.00,950.00,,,,,,\n2015,5,1,\"DL\",\"2464\",\"TPA\",\"JFK\",-2.00,-22.00,0.00,\"\",0.00,144.00,125.00,1005.00,,,,,,\n2015,5,1,\"DL\",\"2466\",\"ATL\",\"SYR\",0.00,-11.00,0.00,\"\",0.00,126.00,113.00,794.00,,,,,,\n2015,5,1,\"DL\",\"2466\",\"SYR\",\"ATL\",-6.00,-35.00,0.00,\"\",0.00,121.00,104.00,794.00,,,,,,\n2015,5,1,\"DL\",\"2473\",\"ATL\",\"BUF\",-2.00,0.00,0.00,\"\",0.00,130.00,107.00,712.00,,,,,,\n2015,5,1,\"DL\",\"2474\",\"JFK\",\"DEN\",22.00,-6.00,0.00,\"\",0.00,256.00,226.00,1626.00,,,,,,\n2015,5,1,\"DL\",\"2495\",\"MIA\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,173.00,141.00,1089.00,,,,,,\n2015,5,1,\"DL\",\"2496\",\"ATL\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,128.00,103.00,762.00,,,,,,\n2015,5,1,\"DL\",\"2498\",\"FLL\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,165.00,147.00,1076.00,,,,,,\n2015,5,1,\"DL\",\"2502\",\"FLL\",\"LGA\",9.00,-13.00,0.00,\"\",0.00,159.00,142.00,1076.00,,,,,,\n2015,5,1,\"DL\",\"2521\",\"SFO\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,326.00,303.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"2542\",\"FLL\",\"JFK\",-4.00,-29.00,0.00,\"\",0.00,161.00,135.00,1069.00,,,,,,\n2015,5,1,\"DL\",\"2550\",\"JFK\",\"BOS\",-5.00,-36.00,0.00,\"\",0.00,62.00,36.00,187.00,,,,,,\n2015,5,1,\"DL\",\"2554\",\"DEN\",\"JFK\",8.00,-7.00,0.00,\"\",0.00,226.00,205.00,1626.00,,,,,,\n2015,5,1,\"DL\",\"2565\",\"JFK\",\"MSP\",-3.00,-33.00,0.00,\"\",0.00,179.00,145.00,1029.00,,,,,,\n2015,5,1,\"DL\",\"2567\",\"DTW\",\"ALB\",3.00,6.00,0.00,\"\",0.00,91.00,69.00,489.00,,,,,,\n2015,5,1,\"DL\",\"2569\",\"JFK\",\"PHX\",6.00,-39.00,0.00,\"\",0.00,298.00,273.00,2153.00,,,,,,\n2015,5,1,\"DL\",\"2571\",\"JFK\",\"SLC\",-4.00,-33.00,0.00,\"\",0.00,296.00,273.00,1990.00,,,,,,\n2015,5,1,\"DL\",\"2577\",\"JFK\",\"FLL\",1.00,-20.00,0.00,\"\",0.00,184.00,153.00,1069.00,,,,,,\n2015,5,1,\"DL\",\"2593\",\"SAT\",\"JFK\",-4.00,-2.00,0.00,\"\",0.00,240.00,223.00,1587.00,,,,,,\n2015,5,1,\"DL\",\"2594\",\"DEN\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,230.00,194.00,1620.00,,,,,,\n2015,5,1,\"DL\",\"2595\",\"FLL\",\"LGA\",-1.00,-24.00,0.00,\"\",0.00,161.00,137.00,1076.00,,,,,,\n2015,5,1,\"DL\",\"2596\",\"PBI\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,156.00,133.00,1035.00,,,,,,\n2015,5,1,\"DL\",\"2622\",\"ROC\",\"DTW\",-1.00,-20.00,0.00,\"\",0.00,65.00,47.00,296.00,,,,,,\n2015,5,1,\"DL\",\"2632\",\"JFK\",\"MCO\",6.00,1.00,0.00,\"\",0.00,178.00,135.00,944.00,,,,,,\n2015,5,1,\"DL\",\"2634\",\"JFK\",\"BUF\",-7.00,-35.00,0.00,\"\",0.00,75.00,51.00,301.00,,,,,,\n2015,5,1,\"DL\",\"2645\",\"JFK\",\"RSW\",-9.00,-30.00,0.00,\"\",0.00,180.00,155.00,1074.00,,,,,,\n2015,5,1,\"DL\",\"2649\",\"JFK\",\"TPA\",12.00,-17.00,0.00,\"\",0.00,159.00,141.00,1005.00,,,,,,\n2015,5,1,\"DL\",\"2650\",\"TPA\",\"JFK\",6.00,-13.00,0.00,\"\",0.00,149.00,127.00,1005.00,,,,,,\n2015,5,1,\"DL\",\"2652\",\"TPA\",\"JFK\",1.00,-26.00,0.00,\"\",0.00,147.00,130.00,1005.00,,,,,,\n2015,5,1,\"DL\",\"2653\",\"MCO\",\"JFK\",11.00,-3.00,0.00,\"\",0.00,152.00,119.00,944.00,,,,,,\n2015,5,1,\"DL\",\"2658\",\"JFK\",\"PHX\",5.00,-18.00,0.00,\"\",0.00,313.00,286.00,2153.00,,,,,,\n2015,5,1,\"DL\",\"2665\",\"BOS\",\"LGA\",-6.00,11.00,0.00,\"\",0.00,92.00,50.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2666\",\"LGA\",\"BOS\",-3.00,-15.00,0.00,\"\",0.00,54.00,35.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2667\",\"BOS\",\"LGA\",-3.00,3.00,0.00,\"\",0.00,85.00,47.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2668\",\"LGA\",\"BOS\",-2.00,-6.00,0.00,\"\",0.00,67.00,38.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2669\",\"BOS\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,74.00,49.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2670\",\"LGA\",\"BOS\",-3.00,4.00,0.00,\"\",0.00,74.00,34.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2671\",\"BOS\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,79.00,50.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2672\",\"LGA\",\"BOS\",-2.00,-1.00,0.00,\"\",0.00,83.00,35.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2673\",\"BOS\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,68.00,47.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2674\",\"LGA\",\"BOS\",-3.00,-2.00,0.00,\"\",0.00,84.00,37.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2675\",\"BOS\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,57.00,38.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2676\",\"LGA\",\"BOS\",7.00,12.00,0.00,\"\",0.00,81.00,42.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2677\",\"BOS\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,74.00,40.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2678\",\"LGA\",\"BOS\",-7.00,-11.00,0.00,\"\",0.00,79.00,38.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2679\",\"BOS\",\"LGA\",1.00,-14.00,0.00,\"\",0.00,62.00,40.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2680\",\"LGA\",\"BOS\",-1.00,-8.00,0.00,\"\",0.00,72.00,43.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2681\",\"BOS\",\"LGA\",-2.00,6.00,0.00,\"\",0.00,85.00,39.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2682\",\"LGA\",\"BOS\",-2.00,-5.00,0.00,\"\",0.00,69.00,36.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2683\",\"BOS\",\"LGA\",-5.00,-1.00,0.00,\"\",0.00,78.00,39.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2684\",\"LGA\",\"BOS\",-2.00,-11.00,0.00,\"\",0.00,66.00,39.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2685\",\"BOS\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,63.00,40.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2686\",\"LGA\",\"BOS\",10.00,1.00,0.00,\"\",0.00,73.00,37.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2687\",\"BOS\",\"LGA\",-2.00,7.00,0.00,\"\",0.00,85.00,39.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2688\",\"LGA\",\"BOS\",-6.00,-7.00,0.00,\"\",0.00,82.00,36.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2689\",\"BOS\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,80.00,44.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2690\",\"LGA\",\"BOS\",3.00,-10.00,0.00,\"\",0.00,72.00,38.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2691\",\"BOS\",\"LGA\",-8.00,-14.00,0.00,\"\",0.00,71.00,41.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2692\",\"LGA\",\"BOS\",-2.00,-18.00,0.00,\"\",0.00,63.00,34.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2693\",\"BOS\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,60.00,40.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2694\",\"LGA\",\"BOS\",-2.00,-11.00,0.00,\"\",0.00,69.00,34.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2696\",\"LGA\",\"BOS\",0.00,-9.00,0.00,\"\",0.00,59.00,39.00,184.00,,,,,,\n2015,5,1,\"DL\",\"2699\",\"BOS\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,73.00,45.00,184.00,,,,,,\n2015,5,2,\"DL\",\"42\",\"MIA\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,166.00,140.00,1089.00,,,,,,\n2015,5,2,\"DL\",\"208\",\"JFK\",\"MCO\",11.00,-17.00,0.00,\"\",0.00,156.00,127.00,944.00,,,,,,\n2015,5,2,\"DL\",\"221\",\"LGA\",\"ATL\",-3.00,-38.00,0.00,\"\",0.00,127.00,99.00,762.00,,,,,,\n2015,5,2,\"DL\",\"326\",\"SJU\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,217.00,197.00,1598.00,,,,,,\n2015,5,2,\"DL\",\"332\",\"SJU\",\"JFK\",-13.00,-35.00,0.00,\"\",0.00,224.00,194.00,1598.00,,,,,,\n2015,5,2,\"DL\",\"333\",\"MSP\",\"LGA\",0.00,-6.00,0.00,\"\",0.00,154.00,133.00,1020.00,,,,,,\n2015,5,2,\"DL\",\"342\",\"SFO\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,334.00,313.00,2586.00,,,,,,\n2015,5,2,\"DL\",\"347\",\"LGA\",\"ATL\",-2.00,-32.00,0.00,\"\",0.00,125.00,104.00,762.00,,,,,,\n2015,5,2,\"DL\",\"348\",\"SJU\",\"JFK\",-1.00,-26.00,0.00,\"\",0.00,216.00,193.00,1598.00,,,,,,\n2015,5,2,\"DL\",\"350\",\"LGA\",\"ATL\",-2.00,-30.00,0.00,\"\",0.00,122.00,101.00,762.00,,,,,,\n2015,5,2,\"DL\",\"400\",\"PDX\",\"JFK\",-4.00,-37.00,0.00,\"\",0.00,297.00,278.00,2454.00,,,,,,\n2015,5,2,\"DL\",\"407\",\"MCO\",\"JFK\",33.00,28.00,0.00,\"\",0.00,161.00,128.00,944.00,8.00,0.00,0.00,0.00,20.00,\n2015,5,2,\"DL\",\"409\",\"JFK\",\"SJU\",22.00,2.00,0.00,\"\",0.00,225.00,204.00,1598.00,,,,,,\n2015,5,2,\"DL\",\"412\",\"LAX\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,339.00,305.00,2475.00,,,,,,\n2015,5,2,\"DL\",\"414\",\"SFO\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,326.00,308.00,2586.00,,,,,,\n2015,5,2,\"DL\",\"415\",\"JFK\",\"SFO\",-2.00,-24.00,0.00,\"\",0.00,382.00,354.00,2586.00,,,,,,\n2015,5,2,\"DL\",\"418\",\"SEA\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,308.00,286.00,2422.00,,,,,,\n2015,5,2,\"DL\",\"419\",\"JFK\",\"SEA\",1.00,-17.00,0.00,\"\",0.00,360.00,332.00,2422.00,,,,,,\n2015,5,2,\"DL\",\"420\",\"JFK\",\"LAX\",-1.00,-51.00,0.00,\"\",0.00,342.00,315.00,2475.00,,,,,,\n2015,5,2,\"DL\",\"421\",\"JFK\",\"LAS\",-4.00,-16.00,0.00,\"\",0.00,318.00,292.00,2248.00,,,,,,\n2015,5,2,\"DL\",\"423\",\"JFK\",\"LAX\",-4.00,-44.00,0.00,\"\",0.00,332.00,309.00,2475.00,,,,,,\n2015,5,2,\"DL\",\"424\",\"JFK\",\"SEA\",3.00,0.00,0.00,\"\",0.00,375.00,333.00,2422.00,,,,,,\n2015,5,2,\"DL\",\"425\",\"JFK\",\"SAN\",-2.00,-31.00,0.00,\"\",0.00,342.00,316.00,2446.00,,,,,,\n2015,5,2,\"DL\",\"426\",\"JFK\",\"MCO\",-3.00,-17.00,0.00,\"\",0.00,156.00,129.00,944.00,,,,,,\n2015,5,2,\"DL\",\"427\",\"JFK\",\"SLC\",12.00,-17.00,0.00,\"\",0.00,296.00,261.00,1990.00,,,,,,\n2015,5,2,\"DL\",\"428\",\"JFK\",\"LAS\",-4.00,-36.00,0.00,\"\",0.00,320.00,285.00,2248.00,,,,,,\n2015,5,2,\"DL\",\"430\",\"JFK\",\"SFO\",0.00,-16.00,0.00,\"\",0.00,370.00,344.00,2586.00,,,,,,\n2015,5,2,\"DL\",\"431\",\"JFK\",\"SEA\",-5.00,-12.00,0.00,\"\",0.00,352.00,327.00,2422.00,,,,,,\n2015,5,2,\"DL\",\"433\",\"JFK\",\"PDX\",-1.00,-29.00,0.00,\"\",0.00,345.00,330.00,2454.00,,,,,,\n2015,5,2,\"DL\",\"434\",\"JFK\",\"SLC\",-2.00,-9.00,0.00,\"\",0.00,297.00,265.00,1990.00,,,,,,\n2015,5,2,\"DL\",\"435\",\"JFK\",\"SFO\",-2.00,-22.00,0.00,\"\",0.00,387.00,349.00,2586.00,,,,,,\n2015,5,2,\"DL\",\"437\",\"JFK\",\"LAS\",-6.00,-25.00,0.00,\"\",0.00,331.00,302.00,2248.00,,,,,,\n2015,5,2,\"DL\",\"439\",\"JFK\",\"SJU\",-1.00,2.00,0.00,\"\",0.00,227.00,201.00,1598.00,,,,,,\n2015,5,2,\"DL\",\"440\",\"JFK\",\"MSP\",6.00,-23.00,0.00,\"\",0.00,161.00,143.00,1029.00,,,,,,\n2015,5,2,\"DL\",\"441\",\"JFK\",\"MIA\",-1.00,-12.00,0.00,\"\",0.00,171.00,148.00,1089.00,,,,,,\n2015,5,2,\"DL\",\"442\",\"JFK\",\"ATL\",-7.00,-18.00,0.00,\"\",0.00,141.00,104.00,760.00,,,,,,\n2015,5,2,\"DL\",\"443\",\"JFK\",\"LAS\",282.00,258.00,0.00,\"\",0.00,327.00,290.00,2248.00,258.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"DL\",\"444\",\"SLC\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,257.00,235.00,1990.00,,,,,,\n2015,5,2,\"DL\",\"445\",\"JFK\",\"TPA\",-1.00,-4.00,0.00,\"\",0.00,167.00,136.00,1005.00,,,,,,\n2015,5,2,\"DL\",\"447\",\"JFK\",\"LAX\",101.00,61.00,0.00,\"\",0.00,350.00,312.00,2475.00,61.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"DL\",\"448\",\"JFK\",\"SEA\",-3.00,14.00,0.00,\"\",0.00,377.00,335.00,2422.00,,,,,,\n2015,5,2,\"DL\",\"453\",\"JFK\",\"CHS\",-5.00,-27.00,0.00,\"\",0.00,117.00,86.00,636.00,,,,,,\n2015,5,2,\"DL\",\"454\",\"JFK\",\"STT\",-9.00,-17.00,0.00,\"\",0.00,235.00,204.00,1623.00,,,,,,\n2015,5,2,\"DL\",\"455\",\"JFK\",\"FLL\",-5.00,-19.00,0.00,\"\",0.00,167.00,149.00,1069.00,,,,,,\n2015,5,2,\"DL\",\"458\",\"JFK\",\"ATL\",-1.00,-31.00,0.00,\"\",0.00,137.00,104.00,760.00,,,,,,\n2015,5,2,\"DL\",\"459\",\"JFK\",\"SAN\",-4.00,-31.00,0.00,\"\",0.00,347.00,314.00,2446.00,,,,,,\n2015,5,2,\"DL\",\"462\",\"JFK\",\"SJU\",1.00,-1.00,0.00,\"\",0.00,229.00,203.00,1598.00,,,,,,\n2015,5,2,\"DL\",\"463\",\"JFK\",\"BOS\",-11.00,-21.00,0.00,\"\",0.00,61.00,36.00,187.00,,,,,,\n2015,5,2,\"DL\",\"465\",\"JFK\",\"ATL\",-4.00,-18.00,0.00,\"\",0.00,137.00,102.00,760.00,,,,,,\n2015,5,2,\"DL\",\"466\",\"SLC\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,273.00,246.00,1990.00,,,,,,\n2015,5,2,\"DL\",\"468\",\"SFO\",\"JFK\",262.00,238.00,0.00,\"\",0.00,320.00,300.00,2586.00,0.00,0.00,0.00,0.00,238.00,\n2015,5,2,\"DL\",\"469\",\"JFK\",\"SFO\",293.00,266.00,0.00,\"\",0.00,374.00,335.00,2586.00,266.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"DL\",\"472\",\"JFK\",\"LAX\",-1.00,14.00,0.00,\"\",0.00,400.00,323.00,2475.00,,,,,,\n2015,5,2,\"DL\",\"476\",\"LAX\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,317.00,288.00,2475.00,,,,,,\n2015,5,2,\"DL\",\"477\",\"JFK\",\"LAX\",4.00,-21.00,0.00,\"\",0.00,366.00,316.00,2475.00,,,,,,\n2015,5,2,\"DL\",\"478\",\"ATL\",\"JFK\",2.00,-14.00,0.00,\"\",0.00,133.00,111.00,760.00,,,,,,\n2015,5,2,\"DL\",\"480\",\"JFK\",\"BOS\",-7.00,-16.00,0.00,\"\",0.00,72.00,40.00,187.00,,,,,,\n2015,5,2,\"DL\",\"492\",\"JFK\",\"SJU\",-3.00,-23.00,0.00,\"\",0.00,219.00,203.00,1598.00,,,,,,\n2015,5,2,\"DL\",\"496\",\"JFK\",\"MCO\",-1.00,-2.00,0.00,\"\",0.00,163.00,130.00,944.00,,,,,,\n2015,5,2,\"DL\",\"499\",\"JFK\",\"SLC\",3.00,-8.00,0.00,\"\",0.00,299.00,269.00,1990.00,,,,,,\n2015,5,2,\"DL\",\"511\",\"SJU\",\"JFK\",-9.00,-29.00,0.00,\"\",0.00,226.00,194.00,1598.00,,,,,,\n2015,5,2,\"DL\",\"527\",\"RSW\",\"JFK\",-11.00,-9.00,0.00,\"\",0.00,166.00,144.00,1074.00,,,,,,\n2015,5,2,\"DL\",\"528\",\"LGA\",\"MSP\",-4.00,-18.00,0.00,\"\",0.00,168.00,140.00,1020.00,,,,,,\n2015,5,2,\"DL\",\"541\",\"LAS\",\"JFK\",-5.00,-7.00,0.00,\"\",0.00,294.00,266.00,2248.00,,,,,,\n2015,5,2,\"DL\",\"544\",\"ALB\",\"ATL\",-5.00,-19.00,0.00,\"\",0.00,136.00,119.00,853.00,,,,,,\n2015,5,2,\"DL\",\"662\",\"BUF\",\"MSP\",-5.00,-18.00,0.00,\"\",0.00,131.00,103.00,735.00,,,,,,\n2015,5,2,\"DL\",\"664\",\"TPA\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,152.00,135.00,1010.00,,,,,,\n2015,5,2,\"DL\",\"676\",\"STT\",\"JFK\",-11.00,-25.00,0.00,\"\",0.00,236.00,204.00,1623.00,,,,,,\n2015,5,2,\"DL\",\"723\",\"ATL\",\"BUF\",-1.00,-10.00,0.00,\"\",0.00,116.00,101.00,712.00,,,,,,\n2015,5,2,\"DL\",\"723\",\"BUF\",\"ATL\",-4.00,-28.00,0.00,\"\",0.00,105.00,91.00,712.00,,,,,,\n2015,5,2,\"DL\",\"731\",\"LGA\",\"DTW\",-3.00,-27.00,0.00,\"\",0.00,88.00,73.00,502.00,,,,,,\n2015,5,2,\"DL\",\"750\",\"BOS\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,77.00,39.00,187.00,,,,,,\n2015,5,2,\"DL\",\"772\",\"PBI\",\"LGA\",-6.00,-25.00,0.00,\"\",0.00,151.00,130.00,1035.00,,,,,,\n2015,5,2,\"DL\",\"775\",\"MSP\",\"JFK\",-9.00,-14.00,0.00,\"\",0.00,162.00,136.00,1029.00,,,,,,\n2015,5,2,\"DL\",\"781\",\"LGA\",\"ATL\",-5.00,-30.00,0.00,\"\",0.00,135.00,107.00,762.00,,,,,,\n2015,5,2,\"DL\",\"782\",\"MIA\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,159.00,136.00,1089.00,,,,,,\n2015,5,2,\"DL\",\"787\",\"MCO\",\"JFK\",-9.00,-25.00,0.00,\"\",0.00,149.00,131.00,944.00,,,,,,\n2015,5,2,\"DL\",\"791\",\"LAX\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,320.00,299.00,2475.00,,,,,,\n2015,5,2,\"DL\",\"792\",\"PBI\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,160.00,139.00,1028.00,,,,,,\n2015,5,2,\"DL\",\"793\",\"BOS\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,72.00,38.00,187.00,,,,,,\n2015,5,2,\"DL\",\"802\",\"ATL\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,135.00,109.00,762.00,,,,,,\n2015,5,2,\"DL\",\"819\",\"MIA\",\"LGA\",-2.00,-22.00,0.00,\"\",0.00,167.00,144.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"1086\",\"LGA\",\"ATL\",-6.00,-22.00,0.00,\"\",0.00,146.00,104.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1088\",\"FLL\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,164.00,134.00,1076.00,,,,,,\n2015,5,1,\"DL\",\"1109\",\"SEA\",\"JFK\",11.00,-18.00,0.00,\"\",0.00,306.00,286.00,2422.00,,,,,,\n2015,5,1,\"DL\",\"1111\",\"ATL\",\"ROC\",-1.00,-11.00,0.00,\"\",0.00,119.00,102.00,749.00,,,,,,\n2015,5,1,\"DL\",\"1121\",\"PBI\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,161.00,136.00,1035.00,,,,,,\n2015,5,1,\"DL\",\"1131\",\"LGA\",\"FLL\",21.00,22.00,0.00,\"\",0.00,193.00,151.00,1076.00,21.00,0.00,1.00,0.00,0.00,\n2015,5,1,\"DL\",\"1145\",\"LGA\",\"DTW\",-6.00,-17.00,0.00,\"\",0.00,113.00,84.00,502.00,,,,,,\n2015,5,1,\"DL\",\"1155\",\"DTW\",\"ROC\",-6.00,-13.00,0.00,\"\",0.00,64.00,44.00,296.00,,,,,,\n2015,5,1,\"DL\",\"1159\",\"ATL\",\"BUF\",-2.00,-9.00,0.00,\"\",0.00,115.00,101.00,712.00,,,,,,\n2015,5,1,\"DL\",\"1159\",\"BUF\",\"ATL\",-2.00,-21.00,0.00,\"\",0.00,110.00,92.00,712.00,,,,,,\n2015,5,1,\"DL\",\"1162\",\"LAX\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,315.00,292.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"1174\",\"LGA\",\"PBI\",-2.00,-14.00,0.00,\"\",0.00,168.00,147.00,1035.00,,,,,,\n2015,5,1,\"DL\",\"1176\",\"ATL\",\"BUF\",-1.00,-6.00,0.00,\"\",0.00,125.00,101.00,712.00,,,,,,\n2015,5,1,\"DL\",\"1176\",\"BUF\",\"ATL\",-4.00,-25.00,0.00,\"\",0.00,113.00,88.00,712.00,,,,,,\n2015,5,1,\"DL\",\"1186\",\"ATL\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,137.00,102.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1214\",\"LGA\",\"ATL\",-4.00,-34.00,0.00,\"\",0.00,134.00,101.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1227\",\"PHX\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,283.00,268.00,2153.00,,,,,,\n2015,5,1,\"DL\",\"1242\",\"LGA\",\"PBI\",-6.00,6.00,0.00,\"\",0.00,196.00,149.00,1035.00,,,,,,\n2015,5,1,\"DL\",\"1262\",\"LAX\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,317.00,288.00,2475.00,,,,,,\n2015,5,1,\"DL\",\"1264\",\"SLC\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,268.00,242.00,1990.00,,,,,,\n2015,5,1,\"DL\",\"1266\",\"BUF\",\"ATL\",-3.00,-15.00,0.00,\"\",0.00,109.00,93.00,712.00,,,,,,\n2015,5,1,\"DL\",\"1269\",\"LGA\",\"MIA\",7.00,-4.00,0.00,\"\",0.00,186.00,153.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"1278\",\"MSP\",\"BUF\",-5.00,-14.00,0.00,\"\",0.00,110.00,94.00,735.00,,,,,,\n2015,5,1,\"DL\",\"1286\",\"ATL\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,120.00,98.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1288\",\"LGA\",\"FLL\",19.00,14.00,0.00,\"\",0.00,190.00,152.00,1076.00,,,,,,\n2015,5,1,\"DL\",\"1289\",\"LGA\",\"ATL\",0.00,-28.00,0.00,\"\",0.00,135.00,99.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1298\",\"LGA\",\"ATL\",-2.00,-28.00,0.00,\"\",0.00,135.00,103.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1312\",\"TPA\",\"JFK\",3.00,-25.00,0.00,\"\",0.00,146.00,129.00,1005.00,,,,,,\n2015,5,1,\"DL\",\"1335\",\"MIA\",\"LGA\",0.00,-21.00,0.00,\"\",0.00,162.00,138.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"1356\",\"BUF\",\"DTW\",-3.00,-18.00,0.00,\"\",0.00,56.00,38.00,241.00,,,,,,\n2015,5,1,\"DL\",\"1359\",\"MCO\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,147.00,123.00,950.00,,,,,,\n2015,5,1,\"DL\",\"1372\",\"DTW\",\"BUF\",64.00,59.00,0.00,\"\",0.00,61.00,40.00,241.00,59.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"DL\",\"1380\",\"LGA\",\"OMA\",1.00,-24.00,0.00,\"\",0.00,173.00,154.00,1148.00,,,,,,\n2015,5,1,\"DL\",\"1383\",\"LGA\",\"ATL\",-4.00,-23.00,0.00,\"\",0.00,149.00,106.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1386\",\"ATL\",\"LGA\",11.00,-4.00,0.00,\"\",0.00,119.00,103.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1394\",\"ATL\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,132.00,104.00,760.00,,,,,,\n2015,5,1,\"DL\",\"1419\",\"ATL\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,143.00,116.00,760.00,,,,,,\n2015,5,1,\"DL\",\"1428\",\"LGA\",\"ATL\",0.00,-19.00,0.00,\"\",0.00,140.00,100.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1109\",\"SEA\",\"JFK\",10.00,-19.00,0.00,\"\",0.00,306.00,280.00,2422.00,,,,,,\n2015,5,2,\"DL\",\"1111\",\"ATL\",\"ROC\",-4.00,-14.00,0.00,\"\",0.00,118.00,100.00,749.00,,,,,,\n2015,5,2,\"DL\",\"1114\",\"MCO\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,150.00,127.00,944.00,,,,,,\n2015,5,2,\"DL\",\"1131\",\"LGA\",\"FLL\",0.00,-14.00,0.00,\"\",0.00,175.00,146.00,1076.00,,,,,,\n2015,5,2,\"DL\",\"1145\",\"LGA\",\"DTW\",-1.00,-18.00,0.00,\"\",0.00,104.00,74.00,502.00,,,,,,\n2015,5,2,\"DL\",\"1159\",\"ATL\",\"BUF\",-2.00,-5.00,0.00,\"\",0.00,117.00,101.00,712.00,,,,,,\n2015,5,2,\"DL\",\"1159\",\"BUF\",\"ATL\",-3.00,-20.00,0.00,\"\",0.00,110.00,94.00,712.00,,,,,,\n2015,5,2,\"DL\",\"1162\",\"LAX\",\"JFK\",38.00,25.00,0.00,\"\",0.00,312.00,289.00,2475.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"DL\",\"1174\",\"LGA\",\"PBI\",-1.00,-15.00,0.00,\"\",0.00,164.00,143.00,1035.00,,,,,,\n2015,5,2,\"DL\",\"1176\",\"ATL\",\"BUF\",-1.00,-12.00,0.00,\"\",0.00,119.00,98.00,712.00,,,,,,\n2015,5,2,\"DL\",\"1176\",\"BUF\",\"ATL\",176.00,150.00,0.00,\"\",0.00,101.00,87.00,712.00,150.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"DL\",\"1186\",\"ATL\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,129.00,102.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1242\",\"LGA\",\"PBI\",-5.00,-13.00,0.00,\"\",0.00,172.00,141.00,1035.00,,,,,,\n2015,5,2,\"DL\",\"1262\",\"LAX\",\"JFK\",20.00,3.00,0.00,\"\",0.00,313.00,292.00,2475.00,,,,,,\n2015,5,2,\"DL\",\"1264\",\"SLC\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,271.00,233.00,1990.00,,,,,,\n2015,5,2,\"DL\",\"1266\",\"BUF\",\"ATL\",-6.00,-15.00,0.00,\"\",0.00,111.00,95.00,712.00,,,,,,\n2015,5,2,\"DL\",\"1269\",\"LGA\",\"MIA\",-3.00,-22.00,0.00,\"\",0.00,177.00,152.00,1096.00,,,,,,\n2015,5,2,\"DL\",\"1286\",\"ATL\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,122.00,104.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1288\",\"LGA\",\"FLL\",-5.00,-22.00,0.00,\"\",0.00,175.00,149.00,1076.00,,,,,,\n2015,5,2,\"DL\",\"1289\",\"LGA\",\"ATL\",-1.00,-43.00,0.00,\"\",0.00,118.00,99.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1298\",\"LGA\",\"ATL\",4.00,-26.00,0.00,\"\",0.00,127.00,103.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1312\",\"TPA\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,155.00,134.00,1005.00,,,,,,\n2015,5,2,\"DL\",\"1335\",\"MIA\",\"LGA\",-8.00,-22.00,0.00,\"\",0.00,169.00,146.00,1096.00,,,,,,\n2015,5,2,\"DL\",\"1338\",\"FLL\",\"JFK\",-11.00,-34.00,0.00,\"\",0.00,161.00,137.00,1069.00,,,,,,\n2015,5,2,\"DL\",\"1339\",\"MIA\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,177.00,147.00,1096.00,,,,,,\n2015,5,2,\"DL\",\"1356\",\"BUF\",\"DTW\",-1.00,-21.00,0.00,\"\",0.00,57.00,40.00,241.00,,,,,,\n2015,5,2,\"DL\",\"1359\",\"MCO\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,157.00,132.00,950.00,,,,,,\n2015,5,2,\"DL\",\"1372\",\"DTW\",\"BUF\",-2.00,-3.00,0.00,\"\",0.00,65.00,42.00,241.00,,,,,,\n2015,5,2,\"DL\",\"1383\",\"LGA\",\"ATL\",-1.00,-33.00,0.00,\"\",0.00,130.00,106.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1386\",\"ATL\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,125.00,105.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1394\",\"ATL\",\"JFK\",2.00,-15.00,0.00,\"\",0.00,134.00,109.00,760.00,,,,,,\n2015,5,2,\"DL\",\"1409\",\"FLL\",\"LGA\",-9.00,-25.00,0.00,\"\",0.00,163.00,143.00,1076.00,,,,,,\n2015,5,2,\"DL\",\"1419\",\"ATL\",\"JFK\",20.00,-10.00,0.00,\"\",0.00,125.00,106.00,760.00,,,,,,\n2015,5,2,\"DL\",\"1428\",\"LGA\",\"ATL\",-6.00,-33.00,0.00,\"\",0.00,128.00,102.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1429\",\"MSY\",\"LGA\",1.00,-5.00,0.00,\"\",0.00,169.00,148.00,1183.00,,,,,,\n2015,5,2,\"DL\",\"1463\",\"DEN\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,229.00,208.00,1620.00,,,,,,\n2015,5,2,\"DL\",\"1473\",\"SEA\",\"JFK\",0.00,-27.00,0.00,\"\",0.00,303.00,275.00,2422.00,,,,,,\n2015,5,2,\"DL\",\"1479\",\"TPA\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,153.00,133.00,1010.00,,,,,,\n2015,5,2,\"DL\",\"1486\",\"ATL\",\"LGA\",-2.00,0.00,0.00,\"\",0.00,139.00,110.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1487\",\"ATL\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,130.00,109.00,760.00,,,,,,\n2015,5,2,\"DL\",\"1496\",\"MSP\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,158.00,134.00,1020.00,,,,,,\n2015,5,2,\"DL\",\"1498\",\"FLL\",\"LGA\",-7.00,-28.00,0.00,\"\",0.00,158.00,137.00,1076.00,,,,,,\n2015,5,2,\"DL\",\"1505\",\"MCO\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,156.00,133.00,950.00,,,,,,\n2015,5,2,\"DL\",\"1510\",\"FLL\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,163.00,143.00,1076.00,,,,,,\n2015,5,2,\"DL\",\"1514\",\"LGA\",\"FLL\",-12.00,-28.00,0.00,\"\",0.00,171.00,149.00,1076.00,,,,,,\n2015,5,2,\"DL\",\"1515\",\"ATL\",\"ALB\",0.00,-2.00,0.00,\"\",0.00,143.00,119.00,853.00,,,,,,\n2015,5,2,\"DL\",\"1526\",\"MCO\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,156.00,134.00,950.00,,,,,,\n2015,5,2,\"DL\",\"1531\",\"LGA\",\"TPA\",-1.00,-15.00,0.00,\"\",0.00,163.00,136.00,1010.00,,,,,,\n2015,5,2,\"DL\",\"1542\",\"SEA\",\"JFK\",15.00,-21.00,0.00,\"\",0.00,286.00,268.00,2422.00,,,,,,\n2015,5,2,\"DL\",\"1562\",\"BOS\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,67.00,46.00,187.00,,,,,,\n2015,5,2,\"DL\",\"1584\",\"ATL\",\"ROC\",12.00,-5.00,0.00,\"\",0.00,115.00,98.00,749.00,,,,,,\n2015,5,2,\"DL\",\"1584\",\"ROC\",\"ATL\",-2.00,-18.00,0.00,\"\",0.00,118.00,99.00,749.00,,,,,,\n2015,5,2,\"DL\",\"1586\",\"ATL\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,134.00,110.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1596\",\"MSP\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,151.00,130.00,1020.00,,,,,,\n2015,5,2,\"DL\",\"1642\",\"LGA\",\"MSY\",-1.00,-23.00,0.00,\"\",0.00,187.00,154.00,1183.00,,,,,,\n2015,5,2,\"DL\",\"1644\",\"FLL\",\"JFK\",-1.00,-20.00,0.00,\"\",0.00,167.00,144.00,1069.00,,,,,,\n2015,5,2,\"DL\",\"1647\",\"LGA\",\"ATL\",0.00,-11.00,0.00,\"\",0.00,139.00,101.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1671\",\"MIA\",\"JFK\",0.00,-28.00,0.00,\"\",0.00,158.00,138.00,1089.00,,,,,,\n2015,5,2,\"DL\",\"1672\",\"ATL\",\"BUF\",-1.00,2.00,0.00,\"\",0.00,119.00,99.00,712.00,,,,,,\n2015,5,2,\"DL\",\"1672\",\"BUF\",\"ATL\",-2.00,-23.00,0.00,\"\",0.00,106.00,94.00,712.00,,,,,,\n2015,5,2,\"DL\",\"1685\",\"LGA\",\"MCO\",37.00,24.00,0.00,\"\",0.00,160.00,127.00,950.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"DL\",\"1697\",\"LGA\",\"ATL\",-5.00,-31.00,0.00,\"\",0.00,127.00,103.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1702\",\"LGA\",\"FLL\",-18.00,-32.00,0.00,\"\",0.00,175.00,152.00,1076.00,,,,,,\n2015,5,2,\"DL\",\"1728\",\"LAS\",\"JFK\",-8.00,-7.00,0.00,\"\",0.00,298.00,268.00,2248.00,,,,,,\n2015,5,2,\"DL\",\"1750\",\"ATL\",\"JFK\",8.00,0.00,0.00,\"\",0.00,139.00,108.00,760.00,,,,,,\n2015,5,2,\"DL\",\"1786\",\"ATL\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,125.00,105.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1787\",\"LGA\",\"MSP\",-6.00,-37.00,0.00,\"\",0.00,159.00,143.00,1020.00,,,,,,\n2015,5,2,\"DL\",\"1800\",\"LGA\",\"DEN\",-4.00,-46.00,0.00,\"\",0.00,232.00,212.00,1620.00,,,,,,\n2015,5,2,\"DL\",\"1806\",\"DTW\",\"JFK\",34.00,31.00,0.00,\"\",0.00,111.00,86.00,509.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"DL\",\"1841\",\"SJU\",\"JFK\",-9.00,-30.00,0.00,\"\",0.00,226.00,193.00,1598.00,,,,,,\n2015,5,2,\"DL\",\"1851\",\"CHS\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,115.00,89.00,636.00,,,,,,\n2015,5,2,\"DL\",\"1875\",\"LGA\",\"TPA\",-7.00,-14.00,0.00,\"\",0.00,172.00,138.00,1010.00,,,,,,\n2015,5,2,\"DL\",\"1879\",\"LGA\",\"FLL\",-3.00,-18.00,0.00,\"\",0.00,169.00,146.00,1076.00,,,,,,\n2015,5,2,\"DL\",\"1885\",\"LGA\",\"MCO\",-6.00,-17.00,0.00,\"\",0.00,167.00,130.00,950.00,,,,,,\n2015,5,2,\"DL\",\"1897\",\"LGA\",\"MCO\",-2.00,-28.00,0.00,\"\",0.00,145.00,123.00,950.00,,,,,,\n2015,5,2,\"DL\",\"1902\",\"LGA\",\"PBI\",-3.00,-18.00,0.00,\"\",0.00,170.00,141.00,1035.00,,,,,,\n2015,5,2,\"DL\",\"1919\",\"LGA\",\"MSP\",-3.00,-12.00,0.00,\"\",0.00,170.00,143.00,1020.00,,,,,,\n2015,5,2,\"DL\",\"1947\",\"FLL\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,179.00,135.00,1069.00,,,,,,\n2015,5,2,\"DL\",\"1948\",\"DTW\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,91.00,73.00,502.00,,,,,,\n2015,5,2,\"DL\",\"1958\",\"PBI\",\"LGA\",2.00,-10.00,0.00,\"\",0.00,163.00,142.00,1035.00,,,,,,\n2015,5,2,\"DL\",\"1969\",\"BUF\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,74.00,60.00,301.00,,,,,,\n2015,5,2,\"DL\",\"1972\",\"AUS\",\"JFK\",-1.00,-1.00,0.00,\"\",0.00,222.00,195.00,1521.00,,,,,,\n2015,5,2,\"DL\",\"1982\",\"LGA\",\"MIA\",-3.00,-31.00,0.00,\"\",0.00,168.00,149.00,1096.00,,,,,,\n2015,5,2,\"DL\",\"1985\",\"ALB\",\"DTW\",-2.00,-20.00,0.00,\"\",0.00,83.00,68.00,489.00,,,,,,\n2015,5,2,\"DL\",\"1986\",\"ATL\",\"LGA\",3.00,-10.00,0.00,\"\",0.00,133.00,107.00,762.00,,,,,,\n2015,5,2,\"DL\",\"1994\",\"PHX\",\"JFK\",6.00,5.00,0.00,\"\",0.00,289.00,261.00,2153.00,,,,,,\n2015,5,2,\"DL\",\"1996\",\"MSP\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,156.00,136.00,1020.00,,,,,,\n2015,5,2,\"DL\",\"2003\",\"LGA\",\"MIA\",-3.00,-12.00,0.00,\"\",0.00,175.00,157.00,1096.00,,,,,,\n2015,5,2,\"DL\",\"2013\",\"ATL\",\"SYR\",0.00,0.00,0.00,\"\",0.00,133.00,114.00,794.00,,,,,,\n2015,5,2,\"DL\",\"2014\",\"SYR\",\"ATL\",-4.00,-17.00,0.00,\"\",0.00,124.00,104.00,794.00,,,,,,\n2015,5,2,\"DL\",\"2016\",\"LGA\",\"ATL\",-1.00,-23.00,0.00,\"\",0.00,128.00,103.00,762.00,,,,,,\n2015,5,2,\"DL\",\"2025\",\"JFK\",\"FLL\",0.00,-27.00,0.00,\"\",0.00,173.00,153.00,1069.00,,,,,,\n2015,5,2,\"DL\",\"2028\",\"JFK\",\"ATL\",-3.00,-32.00,0.00,\"\",0.00,134.00,102.00,760.00,,,,,,\n2015,5,2,\"DL\",\"2032\",\"MSP\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,153.00,134.00,1029.00,,,,,,\n2015,5,2,\"DL\",\"2053\",\"JFK\",\"FLL\",12.00,-3.00,0.00,\"\",0.00,185.00,147.00,1069.00,,,,,,\n2015,5,2,\"DL\",\"2058\",\"MCO\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,143.00,127.00,944.00,,,,,,\n2015,5,2,\"DL\",\"2073\",\"JFK\",\"DEN\",-1.00,-38.00,0.00,\"\",0.00,241.00,215.00,1626.00,,,,,,\n2015,5,2,\"DL\",\"2074\",\"LGA\",\"ATL\",47.00,19.00,0.00,\"\",0.00,125.00,101.00,762.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"DL\",\"2077\",\"LGA\",\"MCO\",-9.00,-20.00,0.00,\"\",0.00,162.00,128.00,950.00,,,,,,\n2015,5,2,\"DL\",\"2093\",\"JFK\",\"TPA\",-2.00,-33.00,0.00,\"\",0.00,153.00,131.00,1005.00,,,,,,\n2015,5,2,\"DL\",\"2096\",\"LGA\",\"MSP\",-4.00,-19.00,0.00,\"\",0.00,174.00,149.00,1020.00,,,,,,\n2015,5,2,\"DL\",\"2107\",\"JFK\",\"MIA\",-9.00,-33.00,0.00,\"\",0.00,182.00,153.00,1089.00,,,,,,\n2015,5,2,\"DL\",\"2119\",\"LGA\",\"MSP\",-1.00,-15.00,0.00,\"\",0.00,168.00,142.00,1020.00,,,,,,\n2015,5,2,\"DL\",\"2129\",\"ROC\",\"ATL\",-2.00,-15.00,0.00,\"\",0.00,116.00,98.00,749.00,,,,,,\n2015,5,2,\"DL\",\"2146\",\"ATL\",\"ROC\",5.00,-1.00,0.00,\"\",0.00,117.00,104.00,749.00,,,,,,\n2015,5,2,\"DL\",\"2146\",\"ROC\",\"ATL\",0.00,-23.00,0.00,\"\",0.00,110.00,97.00,749.00,,,,,,\n2015,5,3,\"DL\",\"1875\",\"LGA\",\"TPA\",-3.00,-4.00,0.00,\"\",0.00,179.00,141.00,1010.00,,,,,,\n2015,5,3,\"DL\",\"1879\",\"LGA\",\"FLL\",-6.00,-11.00,0.00,\"\",0.00,181.00,151.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"1885\",\"LGA\",\"MCO\",-5.00,-19.00,0.00,\"\",0.00,166.00,131.00,950.00,,,,,,\n2015,5,3,\"DL\",\"1886\",\"ATL\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,136.00,107.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1897\",\"LGA\",\"MCO\",-1.00,-18.00,0.00,\"\",0.00,157.00,127.00,950.00,,,,,,\n2015,5,3,\"DL\",\"1902\",\"LGA\",\"PBI\",-3.00,-18.00,0.00,\"\",0.00,169.00,147.00,1035.00,,,,,,\n2015,5,3,\"DL\",\"1917\",\"MIA\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,172.00,147.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"1930\",\"LGA\",\"MIA\",-2.00,-25.00,0.00,\"\",0.00,175.00,153.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"1935\",\"LGA\",\"TPA\",-3.00,-19.00,0.00,\"\",0.00,166.00,144.00,1010.00,,,,,,\n2015,5,3,\"DL\",\"1947\",\"FLL\",\"JFK\",14.00,14.00,0.00,\"\",0.00,184.00,145.00,1069.00,,,,,,\n2015,5,3,\"DL\",\"1948\",\"DTW\",\"LGA\",5.00,3.00,0.00,\"\",0.00,105.00,74.00,502.00,,,,,,\n2015,5,3,\"DL\",\"1949\",\"TPA\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,152.00,135.00,1010.00,,,,,,\n2015,5,3,\"DL\",\"1953\",\"LGA\",\"FLL\",-7.00,-13.00,0.00,\"\",0.00,188.00,155.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"1958\",\"PBI\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,160.00,140.00,1035.00,,,,,,\n2015,5,3,\"DL\",\"1972\",\"AUS\",\"JFK\",5.00,10.00,0.00,\"\",0.00,234.00,213.00,1521.00,,,,,,\n2015,5,3,\"DL\",\"1974\",\"MIA\",\"LGA\",-8.00,-4.00,0.00,\"\",0.00,187.00,150.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"1982\",\"LGA\",\"MIA\",13.00,-8.00,0.00,\"\",0.00,175.00,149.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"1986\",\"ATL\",\"LGA\",-4.00,-29.00,0.00,\"\",0.00,125.00,104.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1994\",\"PHX\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,288.00,264.00,2153.00,,,,,,\n2015,5,3,\"DL\",\"2003\",\"LGA\",\"MIA\",-3.00,-19.00,0.00,\"\",0.00,171.00,149.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"2013\",\"ATL\",\"SYR\",-1.00,-6.00,0.00,\"\",0.00,130.00,106.00,794.00,,,,,,\n2015,5,3,\"DL\",\"2014\",\"SYR\",\"ATL\",-5.00,-23.00,0.00,\"\",0.00,121.00,104.00,794.00,,,,,,\n2015,5,3,\"DL\",\"2016\",\"LGA\",\"ATL\",-3.00,-25.00,0.00,\"\",0.00,131.00,99.00,762.00,,,,,,\n2015,5,3,\"DL\",\"2022\",\"LGA\",\"FLL\",-6.00,-20.00,0.00,\"\",0.00,178.00,151.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"2028\",\"FLL\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,168.00,146.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"2032\",\"MSP\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,149.00,131.00,1029.00,,,,,,\n2015,5,3,\"DL\",\"2037\",\"MCO\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,145.00,130.00,950.00,,,,,,\n2015,5,3,\"DL\",\"2040\",\"SFO\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,330.00,300.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"2043\",\"JFK\",\"PHX\",0.00,-24.00,0.00,\"\",0.00,317.00,279.00,2153.00,,,,,,\n2015,5,3,\"DL\",\"2044\",\"JFK\",\"BOS\",4.00,-12.00,0.00,\"\",0.00,85.00,35.00,187.00,,,,,,\n2015,5,1,\"DL\",\"1953\",\"LGA\",\"FLL\",0.00,-22.00,0.00,\"\",0.00,172.00,151.00,1076.00,,,,,,\n2015,5,1,\"DL\",\"1958\",\"PBI\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,172.00,139.00,1035.00,,,,,,\n2015,5,1,\"DL\",\"1969\",\"BUF\",\"JFK\",0.00,0.00,0.00,\"\",0.00,90.00,64.00,301.00,,,,,,\n2015,5,1,\"DL\",\"1972\",\"AUS\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,224.00,202.00,1521.00,,,,,,\n2015,5,1,\"DL\",\"1974\",\"MIA\",\"LGA\",5.00,-16.00,0.00,\"\",0.00,162.00,141.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"1982\",\"LGA\",\"MIA\",-5.00,-8.00,0.00,\"\",0.00,193.00,159.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"1986\",\"ATL\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,140.00,112.00,762.00,,,,,,\n2015,5,1,\"DL\",\"1994\",\"PHX\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,289.00,264.00,2153.00,,,,,,\n2015,5,1,\"DL\",\"1996\",\"MSP\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,150.00,136.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"2003\",\"LGA\",\"MIA\",-6.00,6.00,0.00,\"\",0.00,199.00,160.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"2013\",\"ATL\",\"SYR\",-2.00,-8.00,0.00,\"\",0.00,129.00,112.00,794.00,,,,,,\n2015,5,1,\"DL\",\"2014\",\"SYR\",\"ATL\",-3.00,-21.00,0.00,\"\",0.00,121.00,105.00,794.00,,,,,,\n2015,5,1,\"DL\",\"2016\",\"LGA\",\"ATL\",12.00,4.00,0.00,\"\",0.00,145.00,100.00,762.00,,,,,,\n2015,5,1,\"DL\",\"2022\",\"LGA\",\"FLL\",3.00,3.00,0.00,\"\",0.00,192.00,156.00,1076.00,,,,,,\n2015,5,1,\"DL\",\"2028\",\"FLL\",\"LGA\",28.00,3.00,0.00,\"\",0.00,156.00,133.00,1076.00,,,,,,\n2015,5,1,\"DL\",\"2032\",\"MSP\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,166.00,143.00,1029.00,,,,,,\n2015,5,1,\"DL\",\"2037\",\"MCO\",\"LGA\",5.00,-12.00,0.00,\"\",0.00,140.00,121.00,950.00,,,,,,\n2015,5,1,\"DL\",\"2040\",\"SFO\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,325.00,298.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"2043\",\"JFK\",\"PHX\",14.00,-21.00,0.00,\"\",0.00,306.00,282.00,2153.00,,,,,,\n2015,5,1,\"DL\",\"2044\",\"JFK\",\"BOS\",-5.00,-42.00,0.00,\"\",0.00,64.00,36.00,187.00,,,,,,\n2015,5,1,\"DL\",\"2058\",\"MCO\",\"JFK\",-1.00,-20.00,0.00,\"\",0.00,134.00,115.00,944.00,,,,,,\n2015,5,1,\"DL\",\"2059\",\"JFK\",\"ATL\",7.00,-31.00,0.00,\"\",0.00,131.00,95.00,760.00,,,,,,\n2015,5,1,\"DL\",\"2070\",\"JFK\",\"SAN\",-4.00,-39.00,0.00,\"\",0.00,340.00,306.00,2446.00,,,,,,\n2015,5,1,\"DL\",\"2074\",\"LGA\",\"ATL\",-2.00,-17.00,0.00,\"\",0.00,143.00,100.00,762.00,,,,,,\n2015,5,1,\"DL\",\"2077\",\"LGA\",\"MCO\",-6.00,-5.00,0.00,\"\",0.00,177.00,143.00,950.00,,,,,,\n2015,5,1,\"DL\",\"2086\",\"ATL\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,124.00,105.00,762.00,,,,,,\n2015,5,1,\"DL\",\"2096\",\"LGA\",\"MSP\",-2.00,-31.00,0.00,\"\",0.00,153.00,137.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"2119\",\"LGA\",\"MSP\",0.00,-23.00,0.00,\"\",0.00,162.00,136.00,1020.00,,,,,,\n2015,5,1,\"DL\",\"2122\",\"JFK\",\"AUS\",5.00,-12.00,0.00,\"\",0.00,247.00,201.00,1521.00,,,,,,\n2015,5,1,\"DL\",\"2129\",\"ROC\",\"ATL\",-6.00,-19.00,0.00,\"\",0.00,116.00,100.00,749.00,,,,,,\n2015,5,1,\"DL\",\"2135\",\"TPA\",\"LGA\",5.00,-16.00,0.00,\"\",0.00,143.00,123.00,1010.00,,,,,,\n2015,5,1,\"DL\",\"2146\",\"ATL\",\"ROC\",-2.00,-8.00,0.00,\"\",0.00,119.00,102.00,749.00,,,,,,\n2015,5,1,\"DL\",\"2146\",\"ROC\",\"ATL\",-2.00,-25.00,0.00,\"\",0.00,111.00,94.00,749.00,,,,,,\n2015,5,1,\"DL\",\"2148\",\"LGA\",\"DTW\",-10.00,-18.00,0.00,\"\",0.00,120.00,73.00,502.00,,,,,,\n2015,5,1,\"DL\",\"2150\",\"LGA\",\"DTW\",-2.00,-18.00,0.00,\"\",0.00,110.00,70.00,502.00,,,,,,\n2015,5,1,\"DL\",\"2151\",\"MIA\",\"LGA\",-5.00,-37.00,0.00,\"\",0.00,154.00,137.00,1096.00,,,,,,\n2015,5,1,\"DL\",\"2155\",\"LAS\",\"JFK\",-1.00,6.00,0.00,\"\",0.00,306.00,279.00,2248.00,,,,,,\n2015,5,1,\"DL\",\"2156\",\"ATL\",\"SYR\",0.00,-5.00,0.00,\"\",0.00,125.00,107.00,794.00,,,,,,\n2015,5,1,\"DL\",\"2156\",\"SYR\",\"ATL\",-1.00,-26.00,0.00,\"\",0.00,118.00,103.00,794.00,,,,,,\n2015,5,1,\"DL\",\"2166\",\"JFK\",\"DEN\",-5.00,-31.00,0.00,\"\",0.00,256.00,212.00,1626.00,,,,,,\n2015,5,1,\"DL\",\"2174\",\"DTW\",\"JFK\",11.00,21.00,0.00,\"\",0.00,131.00,85.00,509.00,11.00,0.00,10.00,0.00,0.00,\n2015,5,1,\"DL\",\"2178\",\"LGA\",\"TPA\",-3.00,-27.00,0.00,\"\",0.00,157.00,140.00,1010.00,,,,,,\n2015,5,1,\"DL\",\"2181\",\"LGA\",\"MCO\",-1.00,-12.00,0.00,\"\",0.00,159.00,136.00,950.00,,,,,,\n2015,5,1,\"DL\",\"2185\",\"FLL\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,156.00,134.00,1069.00,,,,,,\n2015,5,1,\"DL\",\"2186\",\"ATL\",\"LGA\",37.00,17.00,0.00,\"\",0.00,125.00,99.00,762.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"DL\",\"2189\",\"JFK\",\"CHS\",17.00,18.00,0.00,\"\",0.00,140.00,98.00,636.00,2.00,0.00,16.00,0.00,0.00,\n2015,5,1,\"DL\",\"2190\",\"JFK\",\"MIA\",-2.00,-17.00,0.00,\"\",0.00,187.00,159.00,1089.00,,,,,,\n2015,5,1,\"DL\",\"2214\",\"ATL\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,125.00,99.00,762.00,,,,,,\n2015,5,1,\"DL\",\"2217\",\"JFK\",\"BOS\",-1.00,-18.00,0.00,\"\",0.00,75.00,39.00,187.00,,,,,,\n2015,5,1,\"DL\",\"2230\",\"CHS\",\"JFK\",10.00,-9.00,0.00,\"\",0.00,110.00,93.00,636.00,,,,,,\n2015,5,1,\"DL\",\"2231\",\"DTW\",\"LGA\",-9.00,-1.00,0.00,\"\",0.00,116.00,81.00,502.00,,,,,,\n2015,5,1,\"DL\",\"2234\",\"JFK\",\"DTW\",-1.00,-20.00,0.00,\"\",0.00,122.00,75.00,509.00,,,,,,\n2015,5,1,\"DL\",\"2240\",\"SFO\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,332.00,302.00,2586.00,,,,,,\n2015,5,1,\"DL\",\"2248\",\"DTW\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,101.00,79.00,502.00,,,,,,\n2015,5,3,\"DL\",\"1086\",\"LGA\",\"ATL\",-5.00,-11.00,0.00,\"\",0.00,156.00,109.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1088\",\"FLL\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,168.00,150.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"1109\",\"SEA\",\"JFK\",-4.00,-39.00,0.00,\"\",0.00,300.00,279.00,2422.00,,,,,,\n2015,5,3,\"DL\",\"1111\",\"ATL\",\"ROC\",6.00,3.00,0.00,\"\",0.00,127.00,102.00,749.00,,,,,,\n2015,5,3,\"DL\",\"1121\",\"PBI\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,163.00,138.00,1035.00,,,,,,\n2015,5,3,\"DL\",\"1131\",\"LGA\",\"FLL\",-4.00,-22.00,0.00,\"\",0.00,174.00,148.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"1145\",\"LGA\",\"DTW\",-3.00,-19.00,0.00,\"\",0.00,108.00,77.00,502.00,,,,,,\n2015,5,3,\"DL\",\"1155\",\"DTW\",\"ROC\",52.00,44.00,0.00,\"\",0.00,63.00,45.00,296.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"DL\",\"1159\",\"ATL\",\"BUF\",1.00,-6.00,0.00,\"\",0.00,115.00,99.00,712.00,,,,,,\n2015,5,3,\"DL\",\"1159\",\"BUF\",\"ATL\",-1.00,-19.00,0.00,\"\",0.00,111.00,95.00,712.00,,,,,,\n2015,5,3,\"DL\",\"1162\",\"LAX\",\"JFK\",6.00,14.00,0.00,\"\",0.00,333.00,311.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"1174\",\"LGA\",\"PBI\",-1.00,-21.00,0.00,\"\",0.00,160.00,139.00,1035.00,,,,,,\n2015,5,3,\"DL\",\"1176\",\"ATL\",\"BUF\",-7.00,-11.00,0.00,\"\",0.00,126.00,102.00,712.00,,,,,,\n2015,5,3,\"DL\",\"1176\",\"BUF\",\"ATL\",-2.00,-25.00,0.00,\"\",0.00,112.00,94.00,712.00,,,,,,\n2015,5,3,\"DL\",\"1186\",\"ATL\",\"LGA\",81.00,75.00,0.00,\"\",0.00,135.00,109.00,762.00,75.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"DL\",\"1214\",\"LGA\",\"ATL\",9.00,-22.00,0.00,\"\",0.00,133.00,110.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1227\",\"PHX\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,278.00,259.00,2153.00,,,,,,\n2015,5,3,\"DL\",\"1242\",\"LGA\",\"PBI\",-6.00,-12.00,0.00,\"\",0.00,178.00,143.00,1035.00,,,,,,\n2015,5,3,\"DL\",\"1262\",\"LAX\",\"JFK\",-3.00,-3.00,0.00,\"\",0.00,333.00,304.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"1264\",\"SLC\",\"JFK\",0.00,0.00,0.00,\"\",0.00,273.00,248.00,1990.00,,,,,,\n2015,5,3,\"DL\",\"1266\",\"BUF\",\"ATL\",-5.00,-15.00,0.00,\"\",0.00,112.00,92.00,712.00,,,,,,\n2015,5,3,\"DL\",\"1269\",\"LGA\",\"MIA\",-3.00,-14.00,0.00,\"\",0.00,186.00,145.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"1278\",\"MSP\",\"BUF\",18.00,47.00,0.00,\"\",0.00,148.00,100.00,735.00,6.00,0.00,29.00,0.00,12.00,\n2015,5,3,\"DL\",\"1286\",\"ATL\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,138.00,108.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1288\",\"LGA\",\"FLL\",-5.00,-33.00,0.00,\"\",0.00,167.00,145.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"1289\",\"LGA\",\"ATL\",6.00,-22.00,0.00,\"\",0.00,134.00,101.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1298\",\"LGA\",\"ATL\",-2.00,-35.00,0.00,\"\",0.00,128.00,107.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1306\",\"DTW\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,107.00,78.00,502.00,,,,,,\n2015,5,3,\"DL\",\"1312\",\"TPA\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,157.00,134.00,1005.00,,,,,,\n2015,5,3,\"DL\",\"1335\",\"MIA\",\"LGA\",8.00,1.00,0.00,\"\",0.00,176.00,150.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"1356\",\"DEN\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,224.00,205.00,1620.00,,,,,,\n2015,5,3,\"DL\",\"1359\",\"MCO\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,156.00,129.00,950.00,,,,,,\n2015,5,3,\"DL\",\"1372\",\"DTW\",\"BUF\",4.00,12.00,0.00,\"\",0.00,74.00,40.00,241.00,,,,,,\n2015,5,3,\"DL\",\"1383\",\"LGA\",\"ATL\",1.00,-30.00,0.00,\"\",0.00,137.00,107.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1386\",\"ATL\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,132.00,105.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1394\",\"ATL\",\"JFK\",2.00,-17.00,0.00,\"\",0.00,134.00,111.00,760.00,,,,,,\n2015,5,3,\"DL\",\"1419\",\"ATL\",\"JFK\",3.00,-9.00,0.00,\"\",0.00,143.00,112.00,760.00,,,,,,\n2015,5,3,\"DL\",\"1428\",\"LGA\",\"ATL\",0.00,-29.00,0.00,\"\",0.00,130.00,103.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1473\",\"SEA\",\"JFK\",7.00,-14.00,0.00,\"\",0.00,309.00,279.00,2422.00,,,,,,\n2015,5,3,\"DL\",\"1486\",\"ATL\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,141.00,114.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1487\",\"ATL\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,136.00,111.00,760.00,,,,,,\n2015,5,3,\"DL\",\"1496\",\"MSP\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,153.00,132.00,1020.00,,,,,,\n2015,5,3,\"DL\",\"1498\",\"FLL\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,168.00,151.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"1514\",\"LGA\",\"FLL\",0.00,-17.00,0.00,\"\",0.00,171.00,152.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"1515\",\"ATL\",\"ALB\",-6.00,-6.00,0.00,\"\",0.00,147.00,117.00,853.00,,,,,,\n2015,5,3,\"DL\",\"1526\",\"MCO\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,157.00,134.00,950.00,,,,,,\n2015,5,3,\"DL\",\"1542\",\"SEA\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,299.00,275.00,2422.00,,,,,,\n2015,5,3,\"DL\",\"1543\",\"ATL\",\"ALB\",-4.00,-12.00,0.00,\"\",0.00,136.00,117.00,853.00,,,,,,\n2015,5,3,\"DL\",\"1543\",\"ALB\",\"ATL\",-1.00,-6.00,0.00,\"\",0.00,157.00,121.00,853.00,,,,,,\n2015,5,3,\"DL\",\"1545\",\"OMA\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,170.00,149.00,1148.00,,,,,,\n2015,5,3,\"DL\",\"1548\",\"LGA\",\"DTW\",-1.00,-16.00,0.00,\"\",0.00,105.00,76.00,502.00,,,,,,\n2015,5,3,\"DL\",\"1560\",\"MSY\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,179.00,155.00,1183.00,,,,,,\n2015,5,3,\"DL\",\"1562\",\"BOS\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,65.00,42.00,187.00,,,,,,\n2015,5,3,\"DL\",\"1566\",\"LGA\",\"PBI\",-7.00,-25.00,0.00,\"\",0.00,165.00,137.00,1035.00,,,,,,\n2015,5,3,\"DL\",\"1580\",\"LGA\",\"DTW\",-8.00,-28.00,0.00,\"\",0.00,105.00,78.00,502.00,,,,,,\n2015,5,3,\"DL\",\"1583\",\"SFO\",\"JFK\",4.00,-15.00,0.00,\"\",0.00,330.00,305.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"1584\",\"ATL\",\"ROC\",-1.00,-2.00,0.00,\"\",0.00,132.00,101.00,749.00,,,,,,\n2015,5,3,\"DL\",\"1584\",\"ROC\",\"ATL\",4.00,-13.00,0.00,\"\",0.00,118.00,100.00,749.00,,,,,,\n2015,5,3,\"DL\",\"1586\",\"ATL\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,134.00,109.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1596\",\"MSP\",\"LGA\",7.00,30.00,0.00,\"\",0.00,188.00,150.00,1020.00,0.00,0.00,23.00,0.00,7.00,\n2015,5,3,\"DL\",\"1644\",\"FLL\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,173.00,146.00,1069.00,,,,,,\n2015,5,3,\"DL\",\"1647\",\"LGA\",\"ATL\",-6.00,-24.00,0.00,\"\",0.00,132.00,102.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1671\",\"MIA\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,177.00,146.00,1089.00,,,,,,\n2015,5,3,\"DL\",\"1672\",\"ATL\",\"BUF\",-1.00,0.00,0.00,\"\",0.00,120.00,96.00,712.00,,,,,,\n2015,5,3,\"DL\",\"1672\",\"BUF\",\"ATL\",-5.00,-16.00,0.00,\"\",0.00,117.00,97.00,712.00,,,,,,\n2015,5,3,\"DL\",\"1685\",\"LGA\",\"MCO\",-4.00,-6.00,0.00,\"\",0.00,173.00,124.00,950.00,,,,,,\n2015,5,3,\"DL\",\"1697\",\"LGA\",\"ATL\",-3.00,-32.00,0.00,\"\",0.00,129.00,103.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1728\",\"LAS\",\"JFK\",7.00,53.00,0.00,\"\",0.00,347.00,278.00,2248.00,7.00,0.00,46.00,0.00,0.00,\n2015,5,3,\"DL\",\"1750\",\"ATL\",\"JFK\",15.00,25.00,0.00,\"\",0.00,159.00,106.00,760.00,15.00,0.00,10.00,0.00,0.00,\n2015,5,3,\"DL\",\"1762\",\"LAX\",\"JFK\",5.00,-6.00,0.00,\"\",0.00,324.00,299.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"1779\",\"LGA\",\"MSY\",-4.00,-12.00,0.00,\"\",0.00,191.00,157.00,1183.00,,,,,,\n2015,5,3,\"DL\",\"1786\",\"ATL\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,135.00,106.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1796\",\"LGA\",\"MSP\",-5.00,-4.00,0.00,\"\",0.00,199.00,163.00,1020.00,,,,,,\n2015,5,3,\"DL\",\"1830\",\"SLC\",\"JFK\",18.00,7.00,0.00,\"\",0.00,265.00,239.00,1990.00,,,,,,\n2015,5,3,\"DL\",\"1841\",\"SJU\",\"JFK\",-6.00,-35.00,0.00,\"\",0.00,218.00,194.00,1598.00,,,,,,\n2015,5,3,\"DL\",\"1849\",\"LGA\",\"ATL\",-1.00,-27.00,0.00,\"\",0.00,132.00,100.00,762.00,,,,,,\n2015,5,3,\"DL\",\"1851\",\"CHS\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,114.00,92.00,636.00,,,,,,\n2015,5,4,\"DL\",\"326\",\"SJU\",\"JFK\",-7.00,-28.00,0.00,\"\",0.00,219.00,193.00,1598.00,,,,,,\n2015,5,4,\"DL\",\"332\",\"SJU\",\"JFK\",-8.00,-36.00,0.00,\"\",0.00,218.00,192.00,1598.00,,,,,,\n2015,5,4,\"DL\",\"333\",\"MSP\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,149.00,133.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"342\",\"SFO\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,326.00,306.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"347\",\"LGA\",\"ATL\",-4.00,-28.00,0.00,\"\",0.00,134.00,106.00,762.00,,,,,,\n2015,5,4,\"DL\",\"348\",\"SJU\",\"JFK\",-9.00,-32.00,0.00,\"\",0.00,219.00,198.00,1598.00,,,,,,\n2015,5,4,\"DL\",\"350\",\"LGA\",\"ATL\",6.00,-8.00,0.00,\"\",0.00,139.00,112.00,762.00,,,,,,\n2015,5,4,\"DL\",\"400\",\"PDX\",\"JFK\",-2.00,-29.00,0.00,\"\",0.00,302.00,283.00,2454.00,,,,,,\n2015,5,4,\"DL\",\"401\",\"AUS\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,224.00,201.00,1521.00,,,,,,\n2015,5,4,\"DL\",\"403\",\"PDX\",\"JFK\",6.00,-6.00,0.00,\"\",0.00,322.00,285.00,2454.00,,,,,,\n2015,5,4,\"DL\",\"404\",\"JFK\",\"ATL\",-2.00,-25.00,0.00,\"\",0.00,146.00,104.00,760.00,,,,,,\n2015,5,4,\"DL\",\"405\",\"JFK\",\"TPA\",-4.00,-4.00,0.00,\"\",0.00,171.00,137.00,1005.00,,,,,,\n2015,5,4,\"DL\",\"407\",\"MCO\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,151.00,125.00,944.00,,,,,,\n2015,5,4,\"DL\",\"409\",\"JFK\",\"SJU\",-2.00,-20.00,0.00,\"\",0.00,229.00,205.00,1598.00,,,,,,\n2015,5,4,\"DL\",\"410\",\"MSP\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,155.00,131.00,1029.00,,,,,,\n2015,5,4,\"DL\",\"412\",\"LAX\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,329.00,295.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"413\",\"JFK\",\"PHX\",7.00,4.00,0.00,\"\",0.00,340.00,306.00,2153.00,,,,,,\n2015,5,4,\"DL\",\"414\",\"SFO\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,338.00,303.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"415\",\"JFK\",\"SFO\",3.00,-1.00,0.00,\"\",0.00,404.00,372.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"417\",\"JFK\",\"SEA\",0.00,8.00,0.00,\"\",0.00,390.00,349.00,2422.00,,,,,,\n2015,5,4,\"DL\",\"418\",\"SEA\",\"JFK\",1.00,-25.00,0.00,\"\",0.00,302.00,280.00,2422.00,,,,,,\n2015,5,4,\"DL\",\"419\",\"JFK\",\"SEA\",17.00,7.00,0.00,\"\",0.00,369.00,336.00,2422.00,,,,,,\n2015,5,4,\"DL\",\"420\",\"JFK\",\"LAX\",56.00,25.00,0.00,\"\",0.00,367.00,322.00,2475.00,15.00,0.00,0.00,0.00,10.00,\n2015,5,4,\"DL\",\"421\",\"JFK\",\"SLC\",27.00,48.00,0.00,\"\",0.00,350.00,309.00,1990.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,4,\"DL\",\"422\",\"JFK\",\"LAX\",-1.00,6.00,0.00,\"\",0.00,387.00,312.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"423\",\"JFK\",\"LAX\",0.00,-7.00,0.00,\"\",0.00,366.00,310.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"424\",\"JFK\",\"LAX\",-4.00,-16.00,0.00,\"\",0.00,358.00,310.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"425\",\"JFK\",\"SJU\",-6.00,0.00,0.00,\"\",0.00,244.00,206.00,1598.00,,,,,,\n2015,5,4,\"DL\",\"426\",\"JFK\",\"MCO\",10.00,-7.00,0.00,\"\",0.00,155.00,128.00,944.00,,,,,,\n2015,5,4,\"DL\",\"427\",\"JFK\",\"LAX\",19.00,25.00,0.00,\"\",0.00,394.00,320.00,2475.00,18.00,0.00,6.00,0.00,1.00,\n2015,5,4,\"DL\",\"428\",\"JFK\",\"PDX\",7.00,-15.00,0.00,\"\",0.00,348.00,324.00,2454.00,,,,,,\n2015,5,4,\"DL\",\"430\",\"JFK\",\"SFO\",3.00,-1.00,0.00,\"\",0.00,380.00,324.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"431\",\"JFK\",\"SFO\",-2.00,12.00,0.00,\"\",0.00,423.00,374.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"434\",\"JFK\",\"SFO\",-2.00,-24.00,0.00,\"\",0.00,382.00,354.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"435\",\"JFK\",\"SFO\",-1.00,21.00,0.00,\"\",0.00,426.00,385.00,2586.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,4,\"DL\",\"436\",\"JFK\",\"LAS\",-6.00,-36.00,0.00,\"\",0.00,320.00,289.00,2248.00,,,,,,\n2015,5,4,\"DL\",\"437\",\"JFK\",\"BOS\",-11.00,-19.00,0.00,\"\",0.00,69.00,39.00,187.00,,,,,,\n2015,5,4,\"DL\",\"438\",\"JFK\",\"MCO\",-3.00,-24.00,0.00,\"\",0.00,147.00,130.00,944.00,,,,,,\n2015,5,4,\"DL\",\"439\",\"JFK\",\"MSP\",11.00,-14.00,0.00,\"\",0.00,167.00,146.00,1029.00,,,,,,\n2015,5,4,\"DL\",\"441\",\"JFK\",\"MIA\",-7.00,31.00,0.00,\"\",0.00,219.00,157.00,1089.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,4,\"DL\",\"442\",\"JFK\",\"SJU\",-4.00,17.00,0.00,\"\",0.00,255.00,200.00,1598.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,4,\"DL\",\"443\",\"JFK\",\"LAS\",3.00,-37.00,0.00,\"\",0.00,314.00,287.00,2248.00,,,,,,\n2015,5,4,\"DL\",\"444\",\"SLC\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,261.00,237.00,1990.00,,,,,,\n2015,5,4,\"DL\",\"445\",\"JFK\",\"SAN\",-5.00,-45.00,0.00,\"\",0.00,335.00,312.00,2446.00,,,,,,\n2015,5,4,\"DL\",\"447\",\"JFK\",\"LAX\",3.00,-22.00,0.00,\"\",0.00,365.00,324.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"448\",\"JFK\",\"SEA\",0.00,-8.00,0.00,\"\",0.00,352.00,328.00,2422.00,,,,,,\n2015,5,4,\"DL\",\"450\",\"JFK\",\"TPA\",-7.00,-19.00,0.00,\"\",0.00,174.00,136.00,1005.00,,,,,,\n2015,5,4,\"DL\",\"453\",\"JFK\",\"CHS\",-2.00,-6.00,0.00,\"\",0.00,135.00,91.00,636.00,,,,,,\n2015,5,4,\"DL\",\"454\",\"JFK\",\"STT\",-3.00,4.00,0.00,\"\",0.00,253.00,201.00,1623.00,,,,,,\n2015,5,4,\"DL\",\"455\",\"JFK\",\"SAN\",-2.00,4.00,0.00,\"\",0.00,384.00,341.00,2446.00,,,,,,\n2015,5,4,\"DL\",\"456\",\"JFK\",\"SEA\",-2.00,-5.00,0.00,\"\",0.00,360.00,326.00,2422.00,,,,,,\n2015,5,4,\"DL\",\"459\",\"JFK\",\"CHS\",-5.00,-26.00,0.00,\"\",0.00,115.00,88.00,636.00,,,,,,\n2015,5,4,\"DL\",\"460\",\"JFK\",\"SLC\",0.00,-11.00,0.00,\"\",0.00,314.00,281.00,1990.00,,,,,,\n2015,5,4,\"DL\",\"462\",\"JFK\",\"PDX\",-1.00,3.00,0.00,\"\",0.00,382.00,350.00,2454.00,,,,,,\n2015,5,4,\"DL\",\"463\",\"JFK\",\"LAS\",-2.00,-19.00,0.00,\"\",0.00,339.00,304.00,2248.00,,,,,,\n2015,5,4,\"DL\",\"465\",\"JFK\",\"ATL\",-5.00,-25.00,0.00,\"\",0.00,132.00,102.00,760.00,,,,,,\n2015,5,4,\"DL\",\"466\",\"SLC\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,257.00,235.00,1990.00,,,,,,\n2015,5,4,\"DL\",\"468\",\"SFO\",\"JFK\",-3.00,5.00,0.00,\"\",0.00,357.00,334.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"469\",\"JFK\",\"SFO\",-2.00,3.00,0.00,\"\",0.00,395.00,360.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"472\",\"JFK\",\"LAX\",3.00,-21.00,0.00,\"\",0.00,361.00,318.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"476\",\"LAX\",\"JFK\",1.00,-5.00,0.00,\"\",0.00,329.00,301.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"477\",\"JFK\",\"LAX\",-2.00,-27.00,0.00,\"\",0.00,370.00,323.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"478\",\"ATL\",\"JFK\",8.00,-7.00,0.00,\"\",0.00,137.00,106.00,760.00,,,,,,\n2015,5,4,\"DL\",\"482\",\"JFK\",\"AUS\",-6.00,-29.00,0.00,\"\",0.00,241.00,199.00,1521.00,,,,,,\n2015,5,4,\"DL\",\"483\",\"JFK\",\"LAS\",-6.00,-20.00,0.00,\"\",0.00,339.00,309.00,2248.00,,,,,,\n2015,5,4,\"DL\",\"486\",\"JFK\",\"LAS\",-6.00,-29.00,0.00,\"\",0.00,309.00,281.00,2248.00,,,,,,\n2015,5,4,\"DL\",\"488\",\"JFK\",\"SJU\",-4.00,-8.00,0.00,\"\",0.00,223.00,199.00,1598.00,,,,,,\n2015,5,4,\"DL\",\"491\",\"JFK\",\"FLL\",-5.00,-23.00,0.00,\"\",0.00,166.00,148.00,1069.00,,,,,,\n2015,5,4,\"DL\",\"492\",\"JFK\",\"SJU\",-6.00,-21.00,0.00,\"\",0.00,227.00,203.00,1598.00,,,,,,\n2015,5,4,\"DL\",\"494\",\"JFK\",\"SLC\",-5.00,-17.00,0.00,\"\",0.00,293.00,260.00,1990.00,,,,,,\n2015,5,4,\"DL\",\"496\",\"JFK\",\"BOS\",-6.00,-12.00,0.00,\"\",0.00,77.00,41.00,187.00,,,,,,\n2015,5,4,\"DL\",\"497\",\"JFK\",\"ATL\",8.00,-7.00,0.00,\"\",0.00,138.00,105.00,760.00,,,,,,\n2015,5,4,\"DL\",\"498\",\"JFK\",\"SFO\",6.00,13.00,0.00,\"\",0.00,415.00,371.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"499\",\"JFK\",\"SLC\",-1.00,-14.00,0.00,\"\",0.00,297.00,266.00,1990.00,,,,,,\n2015,5,4,\"DL\",\"511\",\"SJU\",\"JFK\",4.00,-24.00,0.00,\"\",0.00,221.00,190.00,1598.00,,,,,,\n2015,5,4,\"DL\",\"527\",\"RSW\",\"JFK\",-5.00,-4.00,0.00,\"\",0.00,165.00,142.00,1074.00,,,,,,\n2015,5,4,\"DL\",\"528\",\"LGA\",\"MSP\",0.00,-12.00,0.00,\"\",0.00,173.00,144.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"541\",\"LAS\",\"JFK\",-2.00,-3.00,0.00,\"\",0.00,298.00,278.00,2248.00,,,,,,\n2015,5,4,\"DL\",\"544\",\"ALB\",\"ATL\",0.00,-16.00,0.00,\"\",0.00,139.00,116.00,853.00,,,,,,\n2015,5,4,\"DL\",\"582\",\"DTW\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,105.00,76.00,502.00,,,,,,\n2015,5,4,\"DL\",\"583\",\"LGA\",\"DTW\",-5.00,-13.00,0.00,\"\",0.00,106.00,75.00,502.00,,,,,,\n2015,5,4,\"DL\",\"662\",\"BUF\",\"MSP\",-2.00,-20.00,0.00,\"\",0.00,126.00,110.00,735.00,,,,,,\n2015,5,4,\"DL\",\"664\",\"TPA\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,160.00,138.00,1010.00,,,,,,\n2015,5,4,\"DL\",\"665\",\"ATL\",\"ALB\",-1.00,-10.00,0.00,\"\",0.00,131.00,114.00,853.00,,,,,,\n2015,5,4,\"DL\",\"665\",\"ALB\",\"ATL\",-7.00,-31.00,0.00,\"\",0.00,128.00,113.00,853.00,,,,,,\n2015,5,4,\"DL\",\"676\",\"STT\",\"JFK\",7.00,-15.00,0.00,\"\",0.00,230.00,206.00,1623.00,,,,,,\n2015,5,4,\"DL\",\"707\",\"DTW\",\"ALB\",-2.00,-8.00,0.00,\"\",0.00,91.00,66.00,489.00,,,,,,\n2015,5,4,\"DL\",\"707\",\"ALB\",\"DTW\",-6.00,-24.00,0.00,\"\",0.00,92.00,74.00,489.00,,,,,,\n2015,5,4,\"DL\",\"714\",\"DTW\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,92.00,73.00,502.00,,,,,,\n2015,5,4,\"DL\",\"723\",\"ATL\",\"BUF\",31.00,17.00,0.00,\"\",0.00,113.00,99.00,712.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,4,\"DL\",\"723\",\"BUF\",\"ATL\",28.00,9.00,0.00,\"\",0.00,112.00,96.00,712.00,,,,,,\n2015,5,4,\"DL\",\"725\",\"ATL\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,131.00,103.00,762.00,,,,,,\n2015,5,4,\"DL\",\"729\",\"LAS\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,290.00,266.00,2248.00,,,,,,\n2015,5,4,\"DL\",\"731\",\"LGA\",\"DTW\",-4.00,-13.00,0.00,\"\",0.00,105.00,78.00,502.00,,,,,,\n2015,5,4,\"DL\",\"739\",\"BOS\",\"JFK\",-7.00,-8.00,0.00,\"\",0.00,79.00,40.00,187.00,,,,,,\n2015,5,4,\"DL\",\"750\",\"BOS\",\"JFK\",-8.00,-9.00,0.00,\"\",0.00,79.00,41.00,187.00,,,,,,\n2015,5,4,\"DL\",\"763\",\"BOS\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,65.00,44.00,187.00,,,,,,\n2015,5,4,\"DL\",\"772\",\"PBI\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,162.00,136.00,1035.00,,,,,,\n2015,5,4,\"DL\",\"781\",\"LGA\",\"ATL\",-6.00,-23.00,0.00,\"\",0.00,145.00,102.00,762.00,,,,,,\n2015,5,4,\"DL\",\"782\",\"MIA\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,167.00,139.00,1089.00,,,,,,\n2015,5,4,\"DL\",\"787\",\"MCO\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,144.00,125.00,944.00,,,,,,\n2015,5,4,\"DL\",\"789\",\"MIA\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,171.00,146.00,1096.00,,,,,,\n2015,5,4,\"DL\",\"791\",\"LAX\",\"JFK\",1.00,-6.00,0.00,\"\",0.00,323.00,296.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"792\",\"PBI\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,158.00,134.00,1028.00,,,,,,\n2015,5,4,\"DL\",\"793\",\"BOS\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,76.00,43.00,187.00,,,,,,\n2015,5,2,\"DL\",\"856\",\"SAN\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,316.00,297.00,2446.00,,,,,,\n2015,5,2,\"DL\",\"871\",\"MSP\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,153.00,128.00,1020.00,,,,,,\n2015,5,2,\"DL\",\"874\",\"LGA\",\"MIA\",-3.00,-21.00,0.00,\"\",0.00,180.00,144.00,1096.00,,,,,,\n2015,5,2,\"DL\",\"878\",\"RSW\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,164.00,145.00,1080.00,,,,,,\n2015,5,2,\"DL\",\"884\",\"LGA\",\"DEN\",0.00,-31.00,0.00,\"\",0.00,241.00,220.00,1620.00,,,,,,\n2015,5,2,\"DL\",\"904\",\"LGA\",\"ATL\",-3.00,-16.00,0.00,\"\",0.00,129.00,102.00,762.00,,,,,,\n2015,5,2,\"DL\",\"906\",\"ATL\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,135.00,106.00,762.00,,,,,,\n2015,5,2,\"DL\",\"909\",\"LGA\",\"MIA\",-5.00,-18.00,0.00,\"\",0.00,181.00,152.00,1096.00,,,,,,\n2015,5,2,\"DL\",\"910\",\"MCO\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,141.00,128.00,950.00,,,,,,\n2015,5,2,\"DL\",\"965\",\"MCO\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,145.00,127.00,950.00,,,,,,\n2015,5,2,\"DL\",\"986\",\"ATL\",\"LGA\",0.00,-21.00,0.00,\"\",0.00,114.00,98.00,762.00,,,,,,\n2015,5,2,\"DL\",\"997\",\"DTW\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,97.00,75.00,502.00,,,,,,\n2015,5,2,\"DL\",\"1088\",\"FLL\",\"LGA\",-9.00,-11.00,0.00,\"\",0.00,174.00,145.00,1076.00,,,,,,\n2015,5,2,\"DL\",\"2150\",\"LGA\",\"DTW\",-2.00,-33.00,0.00,\"\",0.00,97.00,73.00,502.00,,,,,,\n2015,5,2,\"DL\",\"2151\",\"MIA\",\"LGA\",45.00,22.00,0.00,\"\",0.00,161.00,145.00,1096.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"DL\",\"2155\",\"LAS\",\"JFK\",93.00,84.00,0.00,\"\",0.00,290.00,273.00,2248.00,84.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"DL\",\"2156\",\"ATL\",\"SYR\",13.00,8.00,0.00,\"\",0.00,123.00,107.00,794.00,,,,,,\n2015,5,2,\"DL\",\"2156\",\"SYR\",\"ATL\",17.00,-5.00,0.00,\"\",0.00,118.00,103.00,794.00,,,,,,\n2015,5,2,\"DL\",\"2166\",\"SYR\",\"DTW\",-2.00,-23.00,0.00,\"\",0.00,72.00,55.00,374.00,,,,,,\n2015,5,2,\"DL\",\"2174\",\"DTW\",\"JFK\",1.00,-16.00,0.00,\"\",0.00,104.00,79.00,509.00,,,,,,\n2015,5,2,\"DL\",\"2181\",\"LGA\",\"MCO\",-4.00,-11.00,0.00,\"\",0.00,161.00,131.00,950.00,,,,,,\n2015,5,2,\"DL\",\"2185\",\"FLL\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,157.00,137.00,1069.00,,,,,,\n2015,5,2,\"DL\",\"2186\",\"ATL\",\"LGA\",7.00,1.00,0.00,\"\",0.00,135.00,106.00,762.00,,,,,,\n2015,5,2,\"DL\",\"2190\",\"JFK\",\"MIA\",-3.00,-22.00,0.00,\"\",0.00,177.00,146.00,1089.00,,,,,,\n2015,5,2,\"DL\",\"2201\",\"JFK\",\"ATL\",-8.00,-36.00,0.00,\"\",0.00,141.00,105.00,760.00,,,,,,\n2015,5,2,\"DL\",\"2214\",\"ATL\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,124.00,106.00,762.00,,,,,,\n2015,5,2,\"DL\",\"2223\",\"JFK\",\"BOS\",-9.00,-42.00,0.00,\"\",0.00,65.00,35.00,187.00,,,,,,\n2015,5,2,\"DL\",\"2231\",\"LGA\",\"DTW\",-2.00,-23.00,0.00,\"\",0.00,104.00,76.00,502.00,,,,,,\n2015,5,2,\"DL\",\"2240\",\"SFO\",\"JFK\",-1.00,-2.00,0.00,\"\",0.00,329.00,301.00,2586.00,,,,,,\n2015,5,2,\"DL\",\"2248\",\"DTW\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,100.00,76.00,502.00,,,,,,\n2015,5,2,\"DL\",\"2270\",\"LGA\",\"RSW\",-3.00,-20.00,0.00,\"\",0.00,176.00,151.00,1080.00,,,,,,\n2015,5,2,\"DL\",\"2277\",\"JFK\",\"TPA\",-3.00,-24.00,0.00,\"\",0.00,169.00,136.00,1005.00,,,,,,\n2015,5,2,\"DL\",\"2280\",\"LGA\",\"TPA\",-12.00,-25.00,0.00,\"\",0.00,159.00,137.00,1010.00,,,,,,\n2015,5,2,\"DL\",\"2285\",\"LGA\",\"MCO\",-2.00,-17.00,0.00,\"\",0.00,148.00,127.00,950.00,,,,,,\n2015,5,2,\"DL\",\"2288\",\"JFK\",\"MCO\",-1.00,-30.00,0.00,\"\",0.00,158.00,130.00,944.00,,,,,,\n2015,5,2,\"DL\",\"2311\",\"JFK\",\"MIA\",-7.00,-30.00,0.00,\"\",0.00,179.00,146.00,1089.00,,,,,,\n2015,5,2,\"DL\",\"2312\",\"JFK\",\"DTW\",-6.00,-44.00,0.00,\"\",0.00,100.00,80.00,509.00,,,,,,\n2015,5,2,\"DL\",\"2317\",\"PBI\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,168.00,148.00,1035.00,,,,,,\n2015,5,2,\"DL\",\"2349\",\"DTW\",\"LGA\",14.00,4.00,0.00,\"\",0.00,96.00,74.00,502.00,,,,,,\n2015,5,2,\"DL\",\"2350\",\"ATL\",\"JFK\",5.00,0.00,0.00,\"\",0.00,130.00,102.00,760.00,,,,,,\n2015,5,2,\"DL\",\"2352\",\"LAS\",\"JFK\",-8.00,-13.00,0.00,\"\",0.00,305.00,278.00,2248.00,,,,,,\n2015,5,2,\"DL\",\"2354\",\"SLC\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,254.00,234.00,1990.00,,,,,,\n2015,5,2,\"DL\",\"2391\",\"JFK\",\"ATL\",0.00,-32.00,0.00,\"\",0.00,133.00,98.00,760.00,,,,,,\n2015,5,2,\"DL\",\"2393\",\"JFK\",\"BOS\",-3.00,-18.00,0.00,\"\",0.00,75.00,41.00,187.00,,,,,,\n2015,5,2,\"DL\",\"2395\",\"LGA\",\"PBI\",-7.00,-22.00,0.00,\"\",0.00,163.00,142.00,1035.00,,,,,,\n2015,5,2,\"DL\",\"2404\",\"SAN\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,324.00,297.00,2446.00,,,,,,\n2015,5,2,\"DL\",\"2405\",\"PHX\",\"JFK\",87.00,128.00,0.00,\"\",0.00,333.00,266.00,2153.00,0.00,0.00,41.00,0.00,87.00,\n2015,5,2,\"DL\",\"2406\",\"TPA\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,157.00,140.00,1010.00,,,,,,\n2015,5,2,\"DL\",\"2413\",\"MIA\",\"LGA\",-4.00,-24.00,0.00,\"\",0.00,161.00,144.00,1096.00,,,,,,\n2015,5,2,\"DL\",\"2450\",\"MCO\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,148.00,129.00,950.00,,,,,,\n2015,5,2,\"DL\",\"2464\",\"TPA\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,158.00,137.00,1005.00,,,,,,\n2015,5,2,\"DL\",\"2473\",\"ATL\",\"BUF\",-1.00,-6.00,0.00,\"\",0.00,121.00,100.00,712.00,,,,,,\n2015,5,2,\"DL\",\"2474\",\"JFK\",\"SJU\",-3.00,-4.00,0.00,\"\",0.00,238.00,200.00,1598.00,,,,,,\n2015,5,2,\"DL\",\"2487\",\"JFK\",\"SLC\",-2.00,-18.00,0.00,\"\",0.00,305.00,275.00,1990.00,,,,,,\n2015,5,2,\"DL\",\"2495\",\"MIA\",\"JFK\",-7.00,-2.00,0.00,\"\",0.00,191.00,142.00,1089.00,,,,,,\n2015,5,2,\"DL\",\"2496\",\"ATL\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,140.00,119.00,762.00,,,,,,\n2015,5,2,\"DL\",\"2554\",\"DEN\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,223.00,198.00,1626.00,,,,,,\n2015,5,2,\"DL\",\"2567\",\"DTW\",\"ALB\",-2.00,6.00,0.00,\"\",0.00,96.00,68.00,489.00,,,,,,\n2015,5,2,\"DL\",\"2569\",\"JFK\",\"PHX\",-8.00,-48.00,0.00,\"\",0.00,300.00,279.00,2153.00,,,,,,\n2015,5,2,\"DL\",\"2577\",\"JFK\",\"FLL\",-8.00,-30.00,0.00,\"\",0.00,179.00,142.00,1069.00,,,,,,\n2015,5,2,\"DL\",\"2593\",\"SAT\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,228.00,211.00,1587.00,,,,,,\n2015,5,2,\"DL\",\"2594\",\"DEN\",\"LGA\",42.00,25.00,0.00,\"\",0.00,215.00,193.00,1620.00,0.00,0.00,0.00,0.00,25.00,\n2015,5,2,\"DL\",\"2595\",\"FLL\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,166.00,141.00,1076.00,,,,,,\n2015,5,2,\"DL\",\"2596\",\"PBI\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,169.00,136.00,1035.00,,,,,,\n2015,5,2,\"DL\",\"2618\",\"JFK\",\"AUS\",-5.00,-37.00,0.00,\"\",0.00,229.00,196.00,1521.00,,,,,,\n2015,5,2,\"DL\",\"2622\",\"ROC\",\"DTW\",-10.00,-26.00,0.00,\"\",0.00,66.00,45.00,296.00,,,,,,\n2015,5,2,\"DL\",\"2626\",\"JFK\",\"PBI\",-7.00,-24.00,0.00,\"\",0.00,169.00,143.00,1028.00,,,,,,\n2015,5,2,\"DL\",\"2632\",\"JFK\",\"MCO\",-11.00,-34.00,0.00,\"\",0.00,156.00,127.00,944.00,,,,,,\n2015,5,2,\"DL\",\"2645\",\"JFK\",\"RSW\",-3.00,-15.00,0.00,\"\",0.00,189.00,151.00,1074.00,,,,,,\n2015,5,2,\"DL\",\"2649\",\"JFK\",\"TPA\",-5.00,-19.00,0.00,\"\",0.00,171.00,136.00,1005.00,,,,,,\n2015,5,2,\"DL\",\"2650\",\"TPA\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,160.00,141.00,1005.00,,,,,,\n2015,5,2,\"DL\",\"2652\",\"TPA\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,152.00,133.00,1005.00,,,,,,\n2015,5,2,\"DL\",\"2653\",\"MCO\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,158.00,127.00,944.00,,,,,,\n2015,5,2,\"DL\",\"2657\",\"JFK\",\"PHX\",128.00,93.00,0.00,\"\",0.00,294.00,274.00,2153.00,93.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"DL\",\"2667\",\"BOS\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,64.00,38.00,184.00,,,,,,\n2015,5,2,\"DL\",\"2671\",\"BOS\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,71.00,46.00,184.00,,,,,,\n2015,5,2,\"DL\",\"2672\",\"LGA\",\"BOS\",-5.00,-28.00,0.00,\"\",0.00,57.00,34.00,184.00,,,,,,\n2015,5,2,\"DL\",\"2675\",\"BOS\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,59.00,46.00,184.00,,,,,,\n2015,5,2,\"DL\",\"2686\",\"LGA\",\"BOS\",1.00,-11.00,0.00,\"\",0.00,66.00,38.00,184.00,,,,,,\n2015,5,3,\"DL\",\"42\",\"MIA\",\"JFK\",-4.00,5.00,0.00,\"\",0.00,198.00,144.00,1089.00,,,,,,\n2015,5,3,\"DL\",\"208\",\"JFK\",\"MCO\",-5.00,-25.00,0.00,\"\",0.00,167.00,128.00,944.00,,,,,,\n2015,5,3,\"DL\",\"221\",\"LGA\",\"ATL\",0.00,-32.00,0.00,\"\",0.00,133.00,105.00,762.00,,,,,,\n2015,5,3,\"DL\",\"326\",\"SJU\",\"JFK\",-11.00,-23.00,0.00,\"\",0.00,228.00,198.00,1598.00,,,,,,\n2015,5,3,\"DL\",\"332\",\"SJU\",\"JFK\",-10.00,-34.00,0.00,\"\",0.00,222.00,203.00,1598.00,,,,,,\n2015,5,3,\"DL\",\"333\",\"MSP\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,156.00,134.00,1020.00,,,,,,\n2015,5,3,\"DL\",\"342\",\"SFO\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,335.00,313.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"347\",\"LGA\",\"ATL\",-3.00,-27.00,0.00,\"\",0.00,134.00,108.00,762.00,,,,,,\n2015,5,3,\"DL\",\"348\",\"SJU\",\"JFK\",6.00,-16.00,0.00,\"\",0.00,220.00,195.00,1598.00,,,,,,\n2015,5,3,\"DL\",\"350\",\"LGA\",\"ATL\",3.00,-20.00,0.00,\"\",0.00,130.00,107.00,762.00,,,,,,\n2015,5,3,\"DL\",\"400\",\"PDX\",\"JFK\",-1.00,-29.00,0.00,\"\",0.00,301.00,281.00,2454.00,,,,,,\n2015,5,3,\"DL\",\"401\",\"AUS\",\"JFK\",5.00,-6.00,0.00,\"\",0.00,228.00,205.00,1521.00,,,,,,\n2015,5,3,\"DL\",\"403\",\"PDX\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,309.00,288.00,2454.00,,,,,,\n2015,5,3,\"DL\",\"404\",\"JFK\",\"ATL\",34.00,2.00,0.00,\"\",0.00,137.00,107.00,760.00,,,,,,\n2015,5,3,\"DL\",\"405\",\"JFK\",\"TPA\",0.00,-8.00,0.00,\"\",0.00,163.00,142.00,1005.00,,,,,,\n2015,5,3,\"DL\",\"407\",\"MCO\",\"JFK\",-1.00,-9.00,0.00,\"\",0.00,161.00,132.00,944.00,,,,,,\n2015,5,3,\"DL\",\"409\",\"JFK\",\"SJU\",13.00,12.00,0.00,\"\",0.00,246.00,205.00,1598.00,,,,,,\n2015,5,3,\"DL\",\"410\",\"MSP\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,159.00,135.00,1029.00,,,,,,\n2015,5,3,\"DL\",\"412\",\"LAX\",\"JFK\",19.00,12.00,0.00,\"\",0.00,332.00,308.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"413\",\"JFK\",\"PHX\",-5.00,-39.00,0.00,\"\",0.00,309.00,281.00,2153.00,,,,,,\n2015,5,3,\"DL\",\"414\",\"SFO\",\"JFK\",3.00,-9.00,0.00,\"\",0.00,333.00,311.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"415\",\"JFK\",\"SFO\",-2.00,-54.00,0.00,\"\",0.00,356.00,330.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"417\",\"JFK\",\"SEA\",16.00,11.00,0.00,\"\",0.00,377.00,340.00,2422.00,,,,,,\n2015,5,3,\"DL\",\"418\",\"SEA\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,304.00,281.00,2422.00,,,,,,\n2015,5,3,\"DL\",\"419\",\"JFK\",\"SEA\",29.00,15.00,0.00,\"\",0.00,365.00,334.00,2422.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"DL\",\"420\",\"JFK\",\"LAX\",7.00,-36.00,0.00,\"\",0.00,355.00,319.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"422\",\"JFK\",\"LAX\",-4.00,-23.00,0.00,\"\",0.00,361.00,315.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"423\",\"JFK\",\"LAX\",-1.00,-7.00,0.00,\"\",0.00,367.00,320.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"424\",\"JFK\",\"LAX\",10.00,-10.00,0.00,\"\",0.00,350.00,317.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"425\",\"JFK\",\"MSP\",-5.00,-36.00,0.00,\"\",0.00,161.00,146.00,1029.00,,,,,,\n2015,5,3,\"DL\",\"426\",\"JFK\",\"MCO\",-7.00,-26.00,0.00,\"\",0.00,153.00,128.00,944.00,,,,,,\n2015,5,3,\"DL\",\"427\",\"JFK\",\"LAX\",49.00,18.00,0.00,\"\",0.00,357.00,311.00,2475.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"DL\",\"430\",\"JFK\",\"SFO\",-3.00,-24.00,0.00,\"\",0.00,363.00,341.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"431\",\"JFK\",\"SFO\",-1.00,-31.00,0.00,\"\",0.00,379.00,326.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"433\",\"JFK\",\"CHS\",-6.00,-25.00,0.00,\"\",0.00,117.00,89.00,636.00,,,,,,\n2015,5,3,\"DL\",\"434\",\"JFK\",\"SFO\",7.00,-21.00,0.00,\"\",0.00,376.00,346.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"435\",\"JFK\",\"SFO\",20.00,-17.00,0.00,\"\",0.00,367.00,327.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"436\",\"JFK\",\"LAS\",-5.00,-21.00,0.00,\"\",0.00,334.00,288.00,2248.00,,,,,,\n2015,5,3,\"DL\",\"437\",\"JFK\",\"BOS\",-2.00,-19.00,0.00,\"\",0.00,60.00,35.00,187.00,,,,,,\n2015,5,3,\"DL\",\"438\",\"JFK\",\"MCO\",-3.00,-23.00,0.00,\"\",0.00,148.00,128.00,944.00,,,,,,\n2015,5,3,\"DL\",\"440\",\"JFK\",\"PDX\",-2.00,-15.00,0.00,\"\",0.00,365.00,333.00,2454.00,,,,,,\n2015,5,3,\"DL\",\"441\",\"JFK\",\"MIA\",-2.00,-12.00,0.00,\"\",0.00,175.00,148.00,1089.00,,,,,,\n2015,5,3,\"DL\",\"442\",\"JFK\",\"SJU\",-1.00,3.00,0.00,\"\",0.00,238.00,206.00,1598.00,,,,,,\n2015,5,3,\"DL\",\"443\",\"JFK\",\"LAS\",6.00,-14.00,0.00,\"\",0.00,334.00,290.00,2248.00,,,,,,\n2015,5,3,\"DL\",\"444\",\"SLC\",\"JFK\",3.00,-13.00,0.00,\"\",0.00,264.00,245.00,1990.00,,,,,,\n2015,5,3,\"DL\",\"445\",\"JFK\",\"SAN\",-2.00,-24.00,0.00,\"\",0.00,353.00,316.00,2446.00,,,,,,\n2015,5,3,\"DL\",\"447\",\"JFK\",\"LAX\",-2.00,-24.00,0.00,\"\",0.00,368.00,324.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"448\",\"JFK\",\"SEA\",-1.00,12.00,0.00,\"\",0.00,373.00,332.00,2422.00,,,,,,\n2015,5,3,\"DL\",\"450\",\"JFK\",\"TPA\",-10.00,-27.00,0.00,\"\",0.00,169.00,137.00,1005.00,,,,,,\n2015,5,3,\"DL\",\"453\",\"JFK\",\"CHS\",-2.00,-9.00,0.00,\"\",0.00,132.00,93.00,636.00,,,,,,\n2015,5,3,\"DL\",\"454\",\"JFK\",\"STT\",-6.00,4.00,0.00,\"\",0.00,256.00,209.00,1623.00,,,,,,\n2015,5,3,\"DL\",\"455\",\"JFK\",\"SAN\",9.00,-11.00,0.00,\"\",0.00,358.00,323.00,2446.00,,,,,,\n2015,5,3,\"DL\",\"456\",\"JFK\",\"SEA\",-1.00,7.00,0.00,\"\",0.00,371.00,333.00,2422.00,,,,,,\n2015,5,3,\"DL\",\"458\",\"JFK\",\"LAS\",-6.00,-24.00,0.00,\"\",0.00,335.00,299.00,2248.00,,,,,,\n2015,5,3,\"DL\",\"459\",\"JFK\",\"LAS\",36.00,-6.00,0.00,\"\",0.00,316.00,282.00,2248.00,,,,,,\n2015,5,3,\"DL\",\"460\",\"JFK\",\"SLC\",4.00,-22.00,0.00,\"\",0.00,299.00,263.00,1990.00,,,,,,\n2015,5,3,\"DL\",\"465\",\"JFK\",\"ATL\",-5.00,-26.00,0.00,\"\",0.00,131.00,104.00,760.00,,,,,,\n2015,5,3,\"DL\",\"466\",\"SLC\",\"JFK\",1.00,-4.00,0.00,\"\",0.00,272.00,249.00,1990.00,,,,,,\n2015,5,3,\"DL\",\"468\",\"SFO\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,327.00,308.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"469\",\"JFK\",\"SFO\",0.00,-5.00,0.00,\"\",0.00,385.00,346.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"472\",\"JFK\",\"LAX\",-7.00,-32.00,0.00,\"\",0.00,360.00,310.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"476\",\"LAX\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,317.00,294.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"477\",\"JFK\",\"LAX\",4.00,-17.00,0.00,\"\",0.00,374.00,322.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"478\",\"ATL\",\"JFK\",-1.00,-23.00,0.00,\"\",0.00,130.00,110.00,760.00,,,,,,\n2015,5,3,\"DL\",\"480\",\"JFK\",\"SJU\",-4.00,5.00,0.00,\"\",0.00,247.00,205.00,1598.00,,,,,,\n2015,5,3,\"DL\",\"482\",\"JFK\",\"AUS\",5.00,-7.00,0.00,\"\",0.00,252.00,197.00,1521.00,,,,,,\n2015,5,3,\"DL\",\"486\",\"JFK\",\"LAS\",69.00,50.00,0.00,\"\",0.00,313.00,286.00,2248.00,0.00,0.00,0.00,0.00,50.00,\n2015,5,3,\"DL\",\"488\",\"JFK\",\"SJU\",-5.00,4.00,0.00,\"\",0.00,236.00,202.00,1598.00,,,,,,\n2015,5,3,\"DL\",\"491\",\"JFK\",\"FLL\",-5.00,-19.00,0.00,\"\",0.00,170.00,149.00,1069.00,,,,,,\n2015,5,3,\"DL\",\"492\",\"JFK\",\"SJU\",-6.00,-17.00,0.00,\"\",0.00,231.00,206.00,1598.00,,,,,,\n2015,5,3,\"DL\",\"494\",\"JFK\",\"SLC\",4.00,-17.00,0.00,\"\",0.00,284.00,262.00,1990.00,,,,,,\n2015,5,3,\"DL\",\"496\",\"JFK\",\"BOS\",-5.00,-19.00,0.00,\"\",0.00,69.00,42.00,187.00,,,,,,\n2015,5,3,\"DL\",\"497\",\"JFK\",\"ATL\",-4.00,-30.00,0.00,\"\",0.00,127.00,105.00,760.00,,,,,,\n2015,5,3,\"DL\",\"498\",\"JFK\",\"SFO\",1.00,-22.00,0.00,\"\",0.00,385.00,344.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"499\",\"JFK\",\"SLC\",7.00,5.00,0.00,\"\",0.00,308.00,269.00,1990.00,,,,,,\n2015,5,3,\"DL\",\"511\",\"SJU\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,229.00,194.00,1598.00,,,,,,\n2015,5,3,\"DL\",\"527\",\"RSW\",\"JFK\",7.00,-2.00,0.00,\"\",0.00,155.00,139.00,1074.00,,,,,,\n2015,5,3,\"DL\",\"528\",\"LGA\",\"MSP\",-2.00,-6.00,0.00,\"\",0.00,185.00,142.00,1020.00,,,,,,\n2015,5,3,\"DL\",\"541\",\"LAS\",\"JFK\",-3.00,9.00,0.00,\"\",0.00,311.00,289.00,2248.00,,,,,,\n2015,5,3,\"DL\",\"544\",\"ALB\",\"ATL\",-6.00,-16.00,0.00,\"\",0.00,145.00,123.00,853.00,,,,,,\n2015,5,3,\"DL\",\"582\",\"DTW\",\"LGA\",1.00,-3.00,0.00,\"\",0.00,103.00,78.00,502.00,,,,,,\n2015,5,3,\"DL\",\"583\",\"LGA\",\"DTW\",-1.00,-15.00,0.00,\"\",0.00,100.00,76.00,502.00,,,,,,\n2015,5,3,\"DL\",\"664\",\"TPA\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,158.00,136.00,1010.00,,,,,,\n2015,5,3,\"DL\",\"665\",\"ATL\",\"ALB\",0.00,1.00,0.00,\"\",0.00,141.00,115.00,853.00,,,,,,\n2015,5,3,\"DL\",\"665\",\"ALB\",\"ATL\",-1.00,-18.00,0.00,\"\",0.00,135.00,117.00,853.00,,,,,,\n2015,5,3,\"DL\",\"676\",\"STT\",\"JFK\",0.00,-29.00,0.00,\"\",0.00,223.00,201.00,1623.00,,,,,,\n2015,5,3,\"DL\",\"707\",\"ALB\",\"DTW\",-4.00,-19.00,0.00,\"\",0.00,95.00,76.00,489.00,,,,,,\n2015,5,3,\"DL\",\"714\",\"DTW\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,98.00,75.00,502.00,,,,,,\n2015,5,3,\"DL\",\"723\",\"ATL\",\"BUF\",-1.00,-15.00,0.00,\"\",0.00,113.00,99.00,712.00,,,,,,\n2015,5,3,\"DL\",\"723\",\"BUF\",\"ATL\",-4.00,-23.00,0.00,\"\",0.00,112.00,94.00,712.00,,,,,,\n2015,5,3,\"DL\",\"729\",\"LAS\",\"JFK\",53.00,75.00,0.00,\"\",0.00,327.00,278.00,2248.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,3,\"DL\",\"731\",\"DTW\",\"ALB\",-5.00,-25.00,0.00,\"\",0.00,81.00,66.00,489.00,,,,,,\n2015,5,3,\"DL\",\"750\",\"BOS\",\"JFK\",-6.00,-5.00,0.00,\"\",0.00,81.00,40.00,187.00,,,,,,\n2015,5,3,\"DL\",\"763\",\"BOS\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,58.00,40.00,187.00,,,,,,\n2015,5,3,\"DL\",\"772\",\"PBI\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,165.00,139.00,1035.00,,,,,,\n2015,5,3,\"DL\",\"782\",\"MIA\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,167.00,141.00,1089.00,,,,,,\n2015,5,3,\"DL\",\"787\",\"MCO\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,154.00,129.00,944.00,,,,,,\n2015,5,3,\"DL\",\"789\",\"MIA\",\"LGA\",1.00,-3.00,0.00,\"\",0.00,184.00,153.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"791\",\"LAX\",\"JFK\",15.00,6.00,0.00,\"\",0.00,328.00,299.00,2475.00,,,,,,\n2015,5,3,\"DL\",\"792\",\"PBI\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,161.00,137.00,1028.00,,,,,,\n2015,5,3,\"DL\",\"793\",\"BOS\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,76.00,41.00,187.00,,,,,,\n2015,5,3,\"DL\",\"802\",\"ATL\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,125.00,104.00,762.00,,,,,,\n2015,5,3,\"DL\",\"804\",\"LGA\",\"MSP\",-1.00,-18.00,0.00,\"\",0.00,177.00,152.00,1020.00,,,,,,\n2015,5,3,\"DL\",\"856\",\"SAN\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,324.00,298.00,2446.00,,,,,,\n2015,5,3,\"DL\",\"871\",\"MSP\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,149.00,133.00,1020.00,,,,,,\n2015,5,3,\"DL\",\"874\",\"LGA\",\"MIA\",-2.00,-29.00,0.00,\"\",0.00,178.00,147.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"878\",\"RSW\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,166.00,147.00,1080.00,,,,,,\n2015,5,3,\"DL\",\"884\",\"LGA\",\"DEN\",-3.00,-32.00,0.00,\"\",0.00,245.00,216.00,1620.00,,,,,,\n2015,5,3,\"DL\",\"889\",\"MSP\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,151.00,134.00,1020.00,,,,,,\n2015,5,3,\"DL\",\"904\",\"LGA\",\"ATL\",-4.00,-18.00,0.00,\"\",0.00,130.00,107.00,762.00,,,,,,\n2015,5,3,\"DL\",\"906\",\"ATL\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,141.00,107.00,762.00,,,,,,\n2015,5,3,\"DL\",\"909\",\"LGA\",\"MIA\",-2.00,-21.00,0.00,\"\",0.00,175.00,153.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"910\",\"MCO\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,150.00,130.00,950.00,,,,,,\n2015,5,3,\"DL\",\"928\",\"DEN\",\"LGA\",-6.00,-29.00,0.00,\"\",0.00,213.00,195.00,1620.00,,,,,,\n2015,5,3,\"DL\",\"939\",\"MCO\",\"LGA\",2.00,-5.00,0.00,\"\",0.00,156.00,131.00,950.00,,,,,,\n2015,5,3,\"DL\",\"964\",\"LGA\",\"ATL\",-1.00,-28.00,0.00,\"\",0.00,119.00,100.00,762.00,,,,,,\n2015,5,3,\"DL\",\"965\",\"MCO\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,152.00,133.00,950.00,,,,,,\n2015,5,3,\"DL\",\"971\",\"LGA\",\"DEN\",-3.00,-15.00,0.00,\"\",0.00,255.00,224.00,1620.00,,,,,,\n2015,5,3,\"DL\",\"986\",\"ATL\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,126.00,111.00,762.00,,,,,,\n2015,5,3,\"DL\",\"997\",\"DTW\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,98.00,76.00,502.00,,,,,,\n2015,5,4,\"DL\",\"1473\",\"SEA\",\"JFK\",-1.00,-24.00,0.00,\"\",0.00,307.00,279.00,2422.00,,,,,,\n2015,5,4,\"DL\",\"1486\",\"ATL\",\"LGA\",14.00,18.00,0.00,\"\",0.00,143.00,105.00,762.00,0.00,0.00,4.00,0.00,14.00,\n2015,5,4,\"DL\",\"1487\",\"ATL\",\"JFK\",11.00,2.00,0.00,\"\",0.00,135.00,117.00,760.00,,,,,,\n2015,5,4,\"DL\",\"1496\",\"MSP\",\"LGA\",-5.00,-26.00,0.00,\"\",0.00,145.00,130.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"1498\",\"FLL\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,162.00,141.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"1514\",\"LGA\",\"FLL\",-3.00,10.00,0.00,\"\",0.00,202.00,157.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"1515\",\"ATL\",\"ALB\",-2.00,-10.00,0.00,\"\",0.00,139.00,114.00,853.00,,,,,,\n2015,5,4,\"DL\",\"1526\",\"MCO\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,150.00,130.00,950.00,,,,,,\n2015,5,4,\"DL\",\"1542\",\"SEA\",\"JFK\",0.00,-32.00,0.00,\"\",0.00,292.00,272.00,2422.00,,,,,,\n2015,5,4,\"DL\",\"1543\",\"ATL\",\"ALB\",-3.00,-18.00,0.00,\"\",0.00,129.00,114.00,853.00,,,,,,\n2015,5,4,\"DL\",\"1543\",\"ALB\",\"ATL\",1.00,-22.00,0.00,\"\",0.00,139.00,118.00,853.00,,,,,,\n2015,5,4,\"DL\",\"1548\",\"LGA\",\"DTW\",18.00,-4.00,0.00,\"\",0.00,98.00,76.00,502.00,,,,,,\n2015,5,4,\"DL\",\"1560\",\"MSY\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,170.00,151.00,1183.00,,,,,,\n2015,5,4,\"DL\",\"1562\",\"BOS\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,76.00,46.00,187.00,,,,,,\n2015,5,4,\"DL\",\"1566\",\"LGA\",\"PBI\",-4.00,-25.00,0.00,\"\",0.00,162.00,144.00,1035.00,,,,,,\n2015,5,4,\"DL\",\"1580\",\"LGA\",\"DTW\",-3.00,-17.00,0.00,\"\",0.00,111.00,80.00,502.00,,,,,,\n2015,5,4,\"DL\",\"1583\",\"SFO\",\"JFK\",10.00,2.00,0.00,\"\",0.00,341.00,304.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"1584\",\"ATL\",\"ROC\",-1.00,-16.00,0.00,\"\",0.00,118.00,104.00,749.00,,,,,,\n2015,5,4,\"DL\",\"1584\",\"ROC\",\"ATL\",-7.00,-21.00,0.00,\"\",0.00,121.00,102.00,749.00,,,,,,\n2015,5,4,\"DL\",\"1586\",\"ATL\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,125.00,102.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1596\",\"MSP\",\"LGA\",2.00,-20.00,0.00,\"\",0.00,143.00,129.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"1644\",\"FLL\",\"JFK\",18.00,-6.00,0.00,\"\",0.00,163.00,136.00,1069.00,,,,,,\n2015,5,4,\"DL\",\"1647\",\"LGA\",\"ATL\",-3.00,-10.00,0.00,\"\",0.00,145.00,103.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1671\",\"MIA\",\"JFK\",-7.00,-31.00,0.00,\"\",0.00,163.00,142.00,1089.00,,,,,,\n2015,5,4,\"DL\",\"1672\",\"ATL\",\"BUF\",-2.00,-2.00,0.00,\"\",0.00,119.00,95.00,712.00,,,,,,\n2015,5,4,\"DL\",\"1672\",\"BUF\",\"ATL\",-2.00,-8.00,0.00,\"\",0.00,122.00,97.00,712.00,,,,,,\n2015,5,4,\"DL\",\"1685\",\"LGA\",\"MCO\",0.00,-5.00,0.00,\"\",0.00,170.00,134.00,950.00,,,,,,\n2015,5,4,\"DL\",\"1697\",\"LGA\",\"ATL\",-6.00,-29.00,0.00,\"\",0.00,135.00,104.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1728\",\"LAS\",\"JFK\",12.00,7.00,0.00,\"\",0.00,296.00,262.00,2248.00,,,,,,\n2015,5,4,\"DL\",\"1750\",\"ATL\",\"JFK\",-4.00,-6.00,0.00,\"\",0.00,147.00,116.00,760.00,,,,,,\n2015,5,4,\"DL\",\"1762\",\"LAX\",\"JFK\",-5.00,-7.00,0.00,\"\",0.00,333.00,307.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"1779\",\"LGA\",\"MSY\",17.00,-2.00,0.00,\"\",0.00,180.00,157.00,1183.00,,,,,,\n2015,5,4,\"DL\",\"1786\",\"ATL\",\"LGA\",-1.00,-23.00,0.00,\"\",0.00,119.00,103.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1796\",\"LGA\",\"MSP\",-3.00,-22.00,0.00,\"\",0.00,179.00,148.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"1830\",\"SLC\",\"JFK\",44.00,36.00,0.00,\"\",0.00,268.00,233.00,1990.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"DL\",\"802\",\"ATL\",\"LGA\",-7.00,-25.00,0.00,\"\",0.00,127.00,104.00,762.00,,,,,,\n2015,5,4,\"DL\",\"804\",\"LGA\",\"MSP\",5.00,-12.00,0.00,\"\",0.00,177.00,155.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"856\",\"SAN\",\"JFK\",3.00,-12.00,0.00,\"\",0.00,322.00,293.00,2446.00,,,,,,\n2015,5,4,\"DL\",\"871\",\"MSP\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,150.00,134.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"874\",\"LGA\",\"MIA\",0.00,-8.00,0.00,\"\",0.00,197.00,161.00,1096.00,,,,,,\n2015,5,4,\"DL\",\"878\",\"RSW\",\"LGA\",-7.00,-7.00,0.00,\"\",0.00,172.00,149.00,1080.00,,,,,,\n2015,5,4,\"DL\",\"884\",\"LGA\",\"DEN\",-3.00,-13.00,0.00,\"\",0.00,264.00,241.00,1620.00,,,,,,\n2015,5,4,\"DL\",\"889\",\"MSP\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,146.00,131.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"904\",\"LGA\",\"ATL\",-4.00,-24.00,0.00,\"\",0.00,129.00,103.00,762.00,,,,,,\n2015,5,4,\"DL\",\"906\",\"ATL\",\"LGA\",2.00,-10.00,0.00,\"\",0.00,133.00,103.00,762.00,,,,,,\n2015,5,4,\"DL\",\"909\",\"LGA\",\"MIA\",-4.00,-21.00,0.00,\"\",0.00,177.00,158.00,1096.00,,,,,,\n2015,5,4,\"DL\",\"910\",\"MCO\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,153.00,129.00,950.00,,,,,,\n2015,5,4,\"DL\",\"928\",\"DEN\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,223.00,201.00,1620.00,,,,,,\n2015,5,4,\"DL\",\"939\",\"MCO\",\"LGA\",48.00,34.00,0.00,\"\",0.00,149.00,128.00,950.00,11.00,0.00,0.00,0.00,23.00,\n2015,5,4,\"DL\",\"964\",\"LGA\",\"ATL\",-6.00,-25.00,0.00,\"\",0.00,127.00,105.00,762.00,,,,,,\n2015,5,4,\"DL\",\"965\",\"MCO\",\"LGA\",-4.00,9.00,0.00,\"\",0.00,174.00,129.00,950.00,,,,,,\n2015,5,4,\"DL\",\"971\",\"LGA\",\"DEN\",-3.00,-7.00,0.00,\"\",0.00,263.00,228.00,1620.00,,,,,,\n2015,5,4,\"DL\",\"986\",\"ATL\",\"LGA\",2.00,-10.00,0.00,\"\",0.00,121.00,106.00,762.00,,,,,,\n2015,5,4,\"DL\",\"997\",\"DTW\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,104.00,79.00,502.00,,,,,,\n2015,5,4,\"DL\",\"1088\",\"FLL\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,163.00,143.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"1109\",\"SEA\",\"JFK\",2.00,-17.00,0.00,\"\",0.00,316.00,294.00,2422.00,,,,,,\n2015,5,4,\"DL\",\"1111\",\"ATL\",\"ROC\",-5.00,-4.00,0.00,\"\",0.00,131.00,101.00,749.00,,,,,,\n2015,5,4,\"DL\",\"1121\",\"PBI\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,158.00,138.00,1035.00,,,,,,\n2015,5,4,\"DL\",\"1131\",\"LGA\",\"FLL\",5.00,-1.00,0.00,\"\",0.00,186.00,161.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"1145\",\"LGA\",\"DTW\",-6.00,-33.00,0.00,\"\",0.00,97.00,77.00,502.00,,,,,,\n2015,5,4,\"DL\",\"1155\",\"DTW\",\"ROC\",107.00,124.00,0.00,\"\",0.00,88.00,45.00,296.00,107.00,0.00,17.00,0.00,0.00,\n2015,5,4,\"DL\",\"1159\",\"ATL\",\"BUF\",-4.00,-9.00,0.00,\"\",0.00,117.00,100.00,712.00,,,,,,\n2015,5,4,\"DL\",\"1159\",\"BUF\",\"ATL\",-4.00,-19.00,0.00,\"\",0.00,114.00,96.00,712.00,,,,,,\n2015,5,4,\"DL\",\"1162\",\"LAX\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,314.00,290.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"1174\",\"LGA\",\"PBI\",0.00,-16.00,0.00,\"\",0.00,164.00,142.00,1035.00,,,,,,\n2015,5,4,\"DL\",\"1176\",\"ATL\",\"BUF\",0.00,-17.00,0.00,\"\",0.00,113.00,99.00,712.00,,,,,,\n2015,5,4,\"DL\",\"1176\",\"BUF\",\"ATL\",-10.00,-32.00,0.00,\"\",0.00,112.00,97.00,712.00,,,,,,\n2015,5,4,\"DL\",\"1186\",\"ATL\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,128.00,105.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1214\",\"LGA\",\"ATL\",3.00,-24.00,0.00,\"\",0.00,137.00,112.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1227\",\"PHX\",\"JFK\",-11.00,-14.00,0.00,\"\",0.00,287.00,258.00,2153.00,,,,,,\n2015,5,4,\"DL\",\"1242\",\"LGA\",\"PBI\",-2.00,-5.00,0.00,\"\",0.00,181.00,154.00,1035.00,,,,,,\n2015,5,4,\"DL\",\"1262\",\"LAX\",\"JFK\",-6.00,-11.00,0.00,\"\",0.00,328.00,304.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"1264\",\"SLC\",\"JFK\",-9.00,-19.00,0.00,\"\",0.00,263.00,237.00,1990.00,,,,,,\n2015,5,4,\"DL\",\"1266\",\"BUF\",\"ATL\",-2.00,-9.00,0.00,\"\",0.00,115.00,98.00,712.00,,,,,,\n2015,5,4,\"DL\",\"1269\",\"LGA\",\"MIA\",-4.00,-18.00,0.00,\"\",0.00,183.00,153.00,1096.00,,,,,,\n2015,5,4,\"DL\",\"1278\",\"MSP\",\"BUF\",-1.00,-11.00,0.00,\"\",0.00,109.00,93.00,735.00,,,,,,\n2015,5,4,\"DL\",\"1286\",\"ATL\",\"LGA\",14.00,7.00,0.00,\"\",0.00,128.00,105.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1288\",\"LGA\",\"FLL\",0.00,-5.00,0.00,\"\",0.00,190.00,157.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"1289\",\"LGA\",\"ATL\",-4.00,-34.00,0.00,\"\",0.00,132.00,105.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1298\",\"LGA\",\"ATL\",11.00,-17.00,0.00,\"\",0.00,133.00,105.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1306\",\"DTW\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,96.00,75.00,502.00,,,,,,\n2015,5,4,\"DL\",\"1312\",\"TPA\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,153.00,132.00,1005.00,,,,,,\n2015,5,4,\"DL\",\"1335\",\"MIA\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,167.00,144.00,1096.00,,,,,,\n2015,5,4,\"DL\",\"1356\",\"BUF\",\"DTW\",-2.00,-9.00,0.00,\"\",0.00,64.00,41.00,241.00,,,,,,\n2015,5,4,\"DL\",\"1359\",\"MCO\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,145.00,129.00,950.00,,,,,,\n2015,5,4,\"DL\",\"1372\",\"DTW\",\"BUF\",-3.00,4.00,0.00,\"\",0.00,73.00,40.00,241.00,,,,,,\n2015,5,4,\"DL\",\"1383\",\"LGA\",\"ATL\",8.00,-18.00,0.00,\"\",0.00,142.00,107.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1386\",\"ATL\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,127.00,109.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1394\",\"ATL\",\"JFK\",0.00,-31.00,0.00,\"\",0.00,122.00,100.00,760.00,,,,,,\n2015,5,4,\"DL\",\"1419\",\"ATL\",\"JFK\",11.00,-9.00,0.00,\"\",0.00,135.00,109.00,760.00,,,,,,\n2015,5,4,\"DL\",\"1428\",\"LGA\",\"ATL\",-4.00,-26.00,0.00,\"\",0.00,136.00,102.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1447\",\"LGA\",\"ATL\",-3.00,-13.00,0.00,\"\",0.00,134.00,103.00,762.00,,,,,,\n2015,5,4,\"DL\",\"2292\",\"JFK\",\"PBI\",0.00,0.00,0.00,\"\",0.00,187.00,149.00,1028.00,,,,,,\n2015,5,4,\"DL\",\"2296\",\"MSP\",\"LGA\",8.00,-14.00,0.00,\"\",0.00,147.00,132.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"2299\",\"JFK\",\"PHX\",-2.00,-33.00,0.00,\"\",0.00,305.00,272.00,2153.00,,,,,,\n2015,5,4,\"DL\",\"2301\",\"JFK\",\"SAT\",-5.00,-31.00,0.00,\"\",0.00,243.00,213.00,1587.00,,,,,,\n2015,5,4,\"DL\",\"2311\",\"JFK\",\"MIA\",-7.00,-31.00,0.00,\"\",0.00,182.00,151.00,1089.00,,,,,,\n2015,5,4,\"DL\",\"2312\",\"JFK\",\"DTW\",-4.00,-32.00,0.00,\"\",0.00,112.00,84.00,509.00,,,,,,\n2015,5,4,\"DL\",\"2317\",\"PBI\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,162.00,141.00,1035.00,,,,,,\n2015,5,4,\"DL\",\"2319\",\"LGA\",\"MSP\",-4.00,-21.00,0.00,\"\",0.00,178.00,147.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"2331\",\"LGA\",\"DTW\",-2.00,-19.00,0.00,\"\",0.00,107.00,77.00,502.00,,,,,,\n2015,5,4,\"DL\",\"2340\",\"JFK\",\"MCO\",29.00,3.00,0.00,\"\",0.00,164.00,129.00,944.00,,,,,,\n2015,5,4,\"DL\",\"2349\",\"DTW\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,99.00,77.00,502.00,,,,,,\n2015,5,4,\"DL\",\"2350\",\"ATL\",\"JFK\",2.00,-9.00,0.00,\"\",0.00,124.00,102.00,760.00,,,,,,\n2015,5,4,\"DL\",\"2352\",\"LAS\",\"JFK\",-5.00,17.00,0.00,\"\",0.00,335.00,271.00,2248.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,4,\"DL\",\"2354\",\"SLC\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,264.00,241.00,1990.00,,,,,,\n2015,5,4,\"DL\",\"2362\",\"LAX\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,321.00,291.00,2475.00,,,,,,\n2015,5,4,\"DL\",\"2382\",\"JFK\",\"FLL\",-5.00,-19.00,0.00,\"\",0.00,187.00,159.00,1069.00,,,,,,\n2015,5,4,\"DL\",\"2386\",\"ATL\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,128.00,105.00,762.00,,,,,,\n2015,5,4,\"DL\",\"2390\",\"JFK\",\"ATL\",9.00,-27.00,0.00,\"\",0.00,136.00,107.00,760.00,,,,,,\n2015,5,4,\"DL\",\"2395\",\"LGA\",\"PBI\",1.00,-5.00,0.00,\"\",0.00,174.00,154.00,1035.00,,,,,,\n2015,5,4,\"DL\",\"2400\",\"JFK\",\"PIT\",-7.00,-45.00,0.00,\"\",0.00,83.00,60.00,340.00,,,,,,\n2015,5,4,\"DL\",\"2404\",\"SAN\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,327.00,298.00,2446.00,,,,,,\n2015,5,4,\"DL\",\"2405\",\"PHX\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,287.00,260.00,2153.00,,,,,,\n2015,5,4,\"DL\",\"2406\",\"TPA\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,161.00,141.00,1010.00,,,,,,\n2015,5,4,\"DL\",\"2413\",\"MIA\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,171.00,152.00,1096.00,,,,,,\n2015,5,4,\"DL\",\"2432\",\"DTW\",\"SYR\",1.00,-6.00,0.00,\"\",0.00,72.00,50.00,374.00,,,,,,\n2015,5,4,\"DL\",\"2435\",\"JFK\",\"FLL\",-6.00,-13.00,0.00,\"\",0.00,196.00,158.00,1069.00,,,,,,\n2015,5,4,\"DL\",\"2447\",\"DEN\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,224.00,206.00,1626.00,,,,,,\n2015,5,4,\"DL\",\"2450\",\"MCO\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,151.00,128.00,950.00,,,,,,\n2015,5,4,\"DL\",\"2464\",\"TPA\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,151.00,133.00,1005.00,,,,,,\n2015,5,4,\"DL\",\"2466\",\"ATL\",\"SYR\",-3.00,-22.00,0.00,\"\",0.00,118.00,103.00,794.00,,,,,,\n2015,5,4,\"DL\",\"2466\",\"SYR\",\"ATL\",-6.00,-24.00,0.00,\"\",0.00,132.00,110.00,794.00,,,,,,\n2015,5,4,\"DL\",\"2473\",\"ATL\",\"BUF\",-2.00,-13.00,0.00,\"\",0.00,117.00,97.00,712.00,,,,,,\n2015,5,4,\"DL\",\"2495\",\"MIA\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,185.00,157.00,1089.00,,,,,,\n2015,5,4,\"DL\",\"2496\",\"ATL\",\"LGA\",1.00,-9.00,0.00,\"\",0.00,129.00,107.00,762.00,,,,,,\n2015,5,4,\"DL\",\"2498\",\"FLL\",\"LGA\",3.00,-16.00,0.00,\"\",0.00,164.00,140.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"2502\",\"FLL\",\"LGA\",-3.00,-22.00,0.00,\"\",0.00,162.00,146.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"2511\",\"JFK\",\"ATL\",-6.00,-36.00,0.00,\"\",0.00,139.00,103.00,760.00,,,,,,\n2015,5,4,\"DL\",\"2521\",\"SFO\",\"JFK\",14.00,-9.00,0.00,\"\",0.00,318.00,297.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"2542\",\"FLL\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,167.00,134.00,1069.00,,,,,,\n2015,5,4,\"DL\",\"2550\",\"JFK\",\"BOS\",-9.00,-24.00,0.00,\"\",0.00,78.00,45.00,187.00,,,,,,\n2015,5,4,\"DL\",\"2554\",\"DEN\",\"JFK\",29.00,22.00,0.00,\"\",0.00,234.00,203.00,1626.00,9.00,0.00,0.00,0.00,13.00,\n2015,5,4,\"DL\",\"2565\",\"JFK\",\"MSP\",-3.00,-27.00,0.00,\"\",0.00,185.00,149.00,1029.00,,,,,,\n2015,5,4,\"DL\",\"2567\",\"DTW\",\"ALB\",-3.00,6.00,0.00,\"\",0.00,97.00,63.00,489.00,,,,,,\n2015,5,4,\"DL\",\"2569\",\"JFK\",\"DEN\",-6.00,-28.00,0.00,\"\",0.00,260.00,216.00,1626.00,,,,,,\n2015,5,4,\"DL\",\"2571\",\"JFK\",\"SLC\",-3.00,26.00,0.00,\"\",0.00,354.00,320.00,1990.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,4,\"DL\",\"2577\",\"JFK\",\"FLL\",-4.00,-24.00,0.00,\"\",0.00,185.00,150.00,1069.00,,,,,,\n2015,5,4,\"DL\",\"2593\",\"SAT\",\"JFK\",32.00,12.00,0.00,\"\",0.00,218.00,202.00,1587.00,,,,,,\n2015,5,4,\"DL\",\"2594\",\"DEN\",\"LGA\",12.00,26.00,0.00,\"\",0.00,250.00,198.00,1620.00,12.00,0.00,14.00,0.00,0.00,\n2015,5,4,\"DL\",\"2595\",\"FLL\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,165.00,147.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"2596\",\"PBI\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,160.00,139.00,1035.00,,,,,,\n2015,5,4,\"DL\",\"2622\",\"ROC\",\"DTW\",-6.00,-24.00,0.00,\"\",0.00,64.00,49.00,296.00,,,,,,\n2015,5,4,\"DL\",\"2627\",\"JFK\",\"DEN\",-5.00,-19.00,0.00,\"\",0.00,270.00,228.00,1626.00,,,,,,\n2015,5,4,\"DL\",\"2632\",\"JFK\",\"MCO\",-7.00,-11.00,0.00,\"\",0.00,179.00,133.00,944.00,,,,,,\n2015,5,4,\"DL\",\"2634\",\"JFK\",\"BUF\",-3.00,33.00,0.00,\"\",0.00,139.00,55.00,301.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,4,\"DL\",\"2645\",\"JFK\",\"RSW\",-8.00,-17.00,0.00,\"\",0.00,192.00,151.00,1074.00,,,,,,\n2015,5,4,\"DL\",\"2649\",\"JFK\",\"TPA\",-11.00,-33.00,0.00,\"\",0.00,166.00,137.00,1005.00,,,,,,\n2015,5,4,\"DL\",\"2650\",\"TPA\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,148.00,132.00,1005.00,,,,,,\n2015,5,4,\"DL\",\"2652\",\"TPA\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,177.00,137.00,1005.00,,,,,,\n2015,5,4,\"DL\",\"2653\",\"MCO\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,156.00,121.00,944.00,,,,,,\n2015,5,4,\"DL\",\"2665\",\"BOS\",\"LGA\",-1.00,4.00,0.00,\"\",0.00,80.00,47.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2666\",\"LGA\",\"BOS\",2.00,-1.00,0.00,\"\",0.00,63.00,41.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2667\",\"BOS\",\"LGA\",-3.00,3.00,0.00,\"\",0.00,85.00,44.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2668\",\"LGA\",\"BOS\",-3.00,-15.00,0.00,\"\",0.00,59.00,41.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2669\",\"BOS\",\"LGA\",-3.00,3.00,0.00,\"\",0.00,81.00,42.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2670\",\"LGA\",\"BOS\",-1.00,-9.00,0.00,\"\",0.00,59.00,41.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2671\",\"BOS\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,79.00,43.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2672\",\"LGA\",\"BOS\",0.00,-10.00,0.00,\"\",0.00,72.00,38.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2673\",\"BOS\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,68.00,43.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2674\",\"LGA\",\"BOS\",-1.00,-10.00,0.00,\"\",0.00,74.00,38.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2675\",\"BOS\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,73.00,43.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2676\",\"LGA\",\"BOS\",-1.00,-4.00,0.00,\"\",0.00,73.00,44.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2677\",\"BOS\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,79.00,41.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2678\",\"LGA\",\"BOS\",-4.00,-13.00,0.00,\"\",0.00,74.00,40.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2679\",\"BOS\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,73.00,44.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2680\",\"LGA\",\"BOS\",4.00,-8.00,0.00,\"\",0.00,67.00,40.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2681\",\"BOS\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,75.00,45.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2682\",\"LGA\",\"BOS\",-1.00,-10.00,0.00,\"\",0.00,63.00,39.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2683\",\"BOS\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,76.00,45.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2684\",\"LGA\",\"BOS\",1.00,-6.00,0.00,\"\",0.00,68.00,41.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2685\",\"BOS\",\"LGA\",-3.00,5.00,0.00,\"\",0.00,80.00,41.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2686\",\"LGA\",\"BOS\",-3.00,-13.00,0.00,\"\",0.00,72.00,39.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2687\",\"BOS\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,68.00,43.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2688\",\"LGA\",\"BOS\",4.00,-12.00,0.00,\"\",0.00,67.00,44.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2689\",\"BOS\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,75.00,43.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2690\",\"LGA\",\"BOS\",-2.00,-13.00,0.00,\"\",0.00,74.00,44.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2691\",\"BOS\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,76.00,45.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2692\",\"LGA\",\"BOS\",-3.00,-11.00,0.00,\"\",0.00,71.00,41.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2693\",\"BOS\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,73.00,42.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2694\",\"LGA\",\"BOS\",-1.00,-7.00,0.00,\"\",0.00,72.00,38.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2696\",\"LGA\",\"BOS\",-4.00,-10.00,0.00,\"\",0.00,62.00,41.00,184.00,,,,,,\n2015,5,4,\"DL\",\"2699\",\"BOS\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,60.00,37.00,184.00,,,,,,\n2015,5,5,\"DL\",\"42\",\"MIA\",\"JFK\",-6.00,-32.00,0.00,\"\",0.00,163.00,135.00,1089.00,,,,,,\n2015,5,5,\"DL\",\"208\",\"JFK\",\"MCO\",-5.00,-19.00,0.00,\"\",0.00,173.00,142.00,944.00,,,,,,\n2015,5,5,\"DL\",\"221\",\"LGA\",\"ATL\",2.00,-22.00,0.00,\"\",0.00,141.00,109.00,762.00,,,,,,\n2015,5,5,\"DL\",\"234\",\"PIT\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,92.00,59.00,340.00,,,,,,\n2015,5,5,\"DL\",\"245\",\"JFK\",\"SLC\",-3.00,-14.00,0.00,\"\",0.00,318.00,273.00,1990.00,,,,,,\n2015,5,5,\"DL\",\"326\",\"SJU\",\"JFK\",-7.00,-28.00,0.00,\"\",0.00,219.00,201.00,1598.00,,,,,,\n2015,5,5,\"DL\",\"332\",\"SJU\",\"JFK\",,,1.00,\"A\",0.00,,,1598.00,,,,,,\n2015,5,5,\"DL\",\"333\",\"MSP\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,155.00,129.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"342\",\"SFO\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,318.00,296.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"347\",\"LGA\",\"ATL\",-6.00,-20.00,0.00,\"\",0.00,144.00,108.00,762.00,,,,,,\n2015,5,5,\"DL\",\"348\",\"SJU\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,223.00,199.00,1598.00,,,,,,\n2015,5,5,\"DL\",\"350\",\"LGA\",\"ATL\",0.00,-26.00,0.00,\"\",0.00,127.00,105.00,762.00,,,,,,\n2015,5,5,\"DL\",\"400\",\"PDX\",\"JFK\",2.00,-22.00,0.00,\"\",0.00,305.00,290.00,2454.00,,,,,,\n2015,5,5,\"DL\",\"401\",\"AUS\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,231.00,211.00,1521.00,,,,,,\n2015,5,5,\"DL\",\"403\",\"PDX\",\"JFK\",-6.00,-33.00,0.00,\"\",0.00,307.00,287.00,2454.00,,,,,,\n2015,5,5,\"DL\",\"404\",\"JFK\",\"ATL\",-1.00,-28.00,0.00,\"\",0.00,142.00,108.00,760.00,,,,,,\n2015,5,5,\"DL\",\"405\",\"JFK\",\"TPA\",-10.00,-17.00,0.00,\"\",0.00,164.00,138.00,1005.00,,,,,,\n2015,5,5,\"DL\",\"407\",\"MCO\",\"JFK\",28.00,12.00,0.00,\"\",0.00,153.00,123.00,944.00,,,,,,\n2015,5,5,\"DL\",\"409\",\"JFK\",\"SJU\",8.00,-3.00,0.00,\"\",0.00,236.00,203.00,1598.00,,,,,,\n2015,5,5,\"DL\",\"410\",\"MSP\",\"JFK\",20.00,3.00,0.00,\"\",0.00,150.00,132.00,1029.00,,,,,,\n2015,5,5,\"DL\",\"412\",\"LAX\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,324.00,302.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"414\",\"SFO\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,322.00,298.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"415\",\"JFK\",\"SFO\",1.00,-1.00,0.00,\"\",0.00,406.00,378.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"417\",\"JFK\",\"SEA\",0.00,-12.00,0.00,\"\",0.00,370.00,341.00,2422.00,,,,,,\n2015,5,5,\"DL\",\"418\",\"SEA\",\"JFK\",-1.00,-23.00,0.00,\"\",0.00,306.00,277.00,2422.00,,,,,,\n2015,5,5,\"DL\",\"419\",\"JFK\",\"SEA\",0.00,-8.00,0.00,\"\",0.00,371.00,344.00,2422.00,,,,,,\n2015,5,5,\"DL\",\"420\",\"JFK\",\"LAX\",-2.00,-55.00,0.00,\"\",0.00,345.00,315.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"422\",\"JFK\",\"LAX\",-4.00,-29.00,0.00,\"\",0.00,355.00,306.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"423\",\"JFK\",\"LAX\",-6.00,-42.00,0.00,\"\",0.00,337.00,316.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"424\",\"JFK\",\"LAX\",-1.00,-18.00,0.00,\"\",0.00,353.00,316.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"426\",\"JFK\",\"MCO\",-4.00,9.00,0.00,\"\",0.00,185.00,157.00,944.00,,,,,,\n2015,5,5,\"DL\",\"427\",\"JFK\",\"LAX\",-4.00,-36.00,0.00,\"\",0.00,356.00,314.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"428\",\"JFK\",\"PDX\",-4.00,-10.00,0.00,\"\",0.00,364.00,334.00,2454.00,,,,,,\n2015,5,5,\"DL\",\"430\",\"JFK\",\"SFO\",6.00,-39.00,0.00,\"\",0.00,339.00,317.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"431\",\"JFK\",\"DEN\",-3.00,-25.00,0.00,\"\",0.00,262.00,217.00,1626.00,,,,,,\n2015,5,5,\"DL\",\"433\",\"JFK\",\"CHS\",2.00,-11.00,0.00,\"\",0.00,123.00,91.00,636.00,,,,,,\n2015,5,5,\"DL\",\"434\",\"JFK\",\"SFO\",-8.00,-49.00,0.00,\"\",0.00,363.00,327.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"435\",\"JFK\",\"SFO\",-5.00,-62.00,0.00,\"\",0.00,354.00,315.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"436\",\"JFK\",\"LAS\",-10.00,-36.00,0.00,\"\",0.00,324.00,289.00,2248.00,,,,,,\n2015,5,5,\"DL\",\"437\",\"JFK\",\"BOS\",-11.00,-32.00,0.00,\"\",0.00,56.00,35.00,187.00,,,,,,\n2015,5,5,\"DL\",\"438\",\"JFK\",\"MCO\",-6.00,-3.00,0.00,\"\",0.00,171.00,138.00,944.00,,,,,,\n2015,5,5,\"DL\",\"439\",\"JFK\",\"MSP\",6.00,-7.00,0.00,\"\",0.00,179.00,150.00,1029.00,,,,,,\n2015,5,5,\"DL\",\"440\",\"JFK\",\"BOS\",-4.00,-36.00,0.00,\"\",0.00,69.00,33.00,187.00,,,,,,\n2015,5,5,\"DL\",\"441\",\"JFK\",\"MIA\",-3.00,-17.00,0.00,\"\",0.00,167.00,152.00,1089.00,,,,,,\n2015,5,5,\"DL\",\"442\",\"JFK\",\"SJU\",-7.00,,1.00,\"A\",0.00,,,1598.00,,,,,,\n2015,5,5,\"DL\",\"443\",\"JFK\",\"LAS\",-3.00,-50.00,0.00,\"\",0.00,307.00,276.00,2248.00,,,,,,\n2015,5,5,\"DL\",\"444\",\"SLC\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,263.00,237.00,1990.00,,,,,,\n2015,5,5,\"DL\",\"445\",\"JFK\",\"BOS\",-4.00,-33.00,0.00,\"\",0.00,64.00,35.00,187.00,,,,,,\n2015,5,5,\"DL\",\"447\",\"JFK\",\"LAX\",8.00,-33.00,0.00,\"\",0.00,349.00,318.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"448\",\"JFK\",\"SEA\",-1.00,-17.00,0.00,\"\",0.00,344.00,316.00,2422.00,,,,,,\n2015,5,5,\"DL\",\"449\",\"JFK\",\"PHX\",15.00,-16.00,0.00,\"\",0.00,310.00,269.00,2153.00,,,,,,\n2015,5,5,\"DL\",\"453\",\"JFK\",\"CHS\",-9.00,-20.00,0.00,\"\",0.00,128.00,90.00,636.00,,,,,,\n2015,5,5,\"DL\",\"454\",\"JFK\",\"STT\",-10.00,-14.00,0.00,\"\",0.00,242.00,202.00,1623.00,,,,,,\n2015,5,5,\"DL\",\"455\",\"JFK\",\"SAN\",33.00,-19.00,0.00,\"\",0.00,326.00,304.00,2446.00,,,,,,\n2015,5,5,\"DL\",\"456\",\"JFK\",\"SEA\",-1.00,-15.00,0.00,\"\",0.00,349.00,320.00,2422.00,,,,,,\n2015,5,5,\"DL\",\"459\",\"JFK\",\"SAN\",-5.00,-49.00,0.00,\"\",0.00,331.00,302.00,2446.00,,,,,,\n2015,5,5,\"DL\",\"460\",\"JFK\",\"SLC\",88.00,67.00,0.00,\"\",0.00,304.00,271.00,1990.00,67.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"DL\",\"462\",\"JFK\",\"PDX\",-1.00,-13.00,0.00,\"\",0.00,366.00,350.00,2454.00,,,,,,\n2015,5,5,\"DL\",\"463\",\"JFK\",\"LAS\",8.00,-29.00,0.00,\"\",0.00,319.00,288.00,2248.00,,,,,,\n2015,5,5,\"DL\",\"465\",\"JFK\",\"ATL\",-9.00,-17.00,0.00,\"\",0.00,144.00,104.00,760.00,,,,,,\n2015,5,5,\"DL\",\"466\",\"SLC\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,256.00,231.00,1990.00,,,,,,\n2015,5,5,\"DL\",\"468\",\"SFO\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,342.00,306.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"469\",\"JFK\",\"SFO\",-2.00,-27.00,0.00,\"\",0.00,365.00,335.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"472\",\"JFK\",\"LAX\",-3.00,-11.00,0.00,\"\",0.00,377.00,312.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"476\",\"LAX\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,327.00,294.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"477\",\"JFK\",\"LAX\",25.00,-13.00,0.00,\"\",0.00,357.00,318.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"478\",\"ATL\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,140.00,106.00,760.00,,,,,,\n2015,5,5,\"DL\",\"480\",\"JFK\",\"SJU\",-7.00,-11.00,0.00,\"\",0.00,234.00,204.00,1598.00,,,,,,\n2015,5,5,\"DL\",\"483\",\"JFK\",\"LAS\",-6.00,-22.00,0.00,\"\",0.00,337.00,297.00,2248.00,,,,,,\n2015,5,5,\"DL\",\"486\",\"JFK\",\"LAS\",-1.00,-34.00,0.00,\"\",0.00,299.00,281.00,2248.00,,,,,,\n2015,5,5,\"DL\",\"488\",\"JFK\",\"SJU\",-6.00,-3.00,0.00,\"\",0.00,230.00,200.00,1598.00,,,,,,\n2015,5,5,\"DL\",\"491\",\"JFK\",\"FLL\",-7.00,-12.00,0.00,\"\",0.00,179.00,152.00,1069.00,,,,,,\n2015,5,5,\"DL\",\"492\",\"JFK\",\"SJU\",6.00,-5.00,0.00,\"\",0.00,231.00,200.00,1598.00,,,,,,\n2015,5,5,\"DL\",\"494\",\"JFK\",\"SLC\",-3.00,-47.00,0.00,\"\",0.00,261.00,243.00,1990.00,,,,,,\n2015,5,5,\"DL\",\"496\",\"JFK\",\"BOS\",-7.00,-20.00,0.00,\"\",0.00,70.00,42.00,187.00,,,,,,\n2015,5,5,\"DL\",\"497\",\"JFK\",\"ATL\",12.00,-5.00,0.00,\"\",0.00,136.00,106.00,760.00,,,,,,\n2015,5,5,\"DL\",\"498\",\"JFK\",\"SFO\",-4.00,-49.00,0.00,\"\",0.00,363.00,330.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"499\",\"JFK\",\"SLC\",-5.00,-15.00,0.00,\"\",0.00,300.00,272.00,1990.00,,,,,,\n2015,5,5,\"DL\",\"511\",\"SJU\",\"JFK\",-4.00,-40.00,0.00,\"\",0.00,213.00,193.00,1598.00,,,,,,\n2015,5,5,\"DL\",\"527\",\"RSW\",\"JFK\",-9.00,-2.00,0.00,\"\",0.00,171.00,152.00,1074.00,,,,,,\n2015,5,5,\"DL\",\"528\",\"LGA\",\"MSP\",-4.00,-20.00,0.00,\"\",0.00,169.00,145.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"541\",\"LAS\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,289.00,268.00,2248.00,,,,,,\n2015,5,5,\"DL\",\"544\",\"ALB\",\"ATL\",-4.00,-27.00,0.00,\"\",0.00,132.00,118.00,853.00,,,,,,\n2015,5,5,\"DL\",\"582\",\"DTW\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,99.00,74.00,502.00,,,,,,\n2015,5,5,\"DL\",\"583\",\"LGA\",\"DTW\",-1.00,-3.00,0.00,\"\",0.00,112.00,87.00,502.00,,,,,,\n2015,5,5,\"DL\",\"662\",\"BUF\",\"MSP\",-2.00,-20.00,0.00,\"\",0.00,126.00,110.00,735.00,,,,,,\n2015,5,5,\"DL\",\"664\",\"TPA\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,150.00,132.00,1010.00,,,,,,\n2015,5,5,\"DL\",\"665\",\"ATL\",\"ALB\",-2.00,-7.00,0.00,\"\",0.00,135.00,114.00,853.00,,,,,,\n2015,5,5,\"DL\",\"665\",\"ALB\",\"ATL\",-2.00,-10.00,0.00,\"\",0.00,144.00,125.00,853.00,,,,,,\n2015,5,5,\"DL\",\"676\",\"STT\",\"JFK\",0.00,-26.00,0.00,\"\",0.00,223.00,202.00,1623.00,,,,,,\n2015,5,5,\"DL\",\"714\",\"DTW\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,94.00,75.00,502.00,,,,,,\n2015,5,5,\"DL\",\"723\",\"ATL\",\"BUF\",0.00,-13.00,0.00,\"\",0.00,114.00,100.00,712.00,,,,,,\n2015,5,5,\"DL\",\"723\",\"BUF\",\"ATL\",-3.00,-18.00,0.00,\"\",0.00,116.00,97.00,712.00,,,,,,\n2015,5,5,\"DL\",\"725\",\"ATL\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,121.00,102.00,762.00,,,,,,\n2015,5,5,\"DL\",\"729\",\"LAS\",\"JFK\",3.00,-22.00,0.00,\"\",0.00,280.00,265.00,2248.00,,,,,,\n2015,5,5,\"DL\",\"731\",\"LGA\",\"DTW\",-5.00,-11.00,0.00,\"\",0.00,108.00,87.00,502.00,,,,,,\n2015,5,5,\"DL\",\"739\",\"BOS\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,72.00,48.00,187.00,,,,,,\n2015,5,5,\"DL\",\"750\",\"BOS\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,71.00,42.00,187.00,,,,,,\n2015,5,5,\"DL\",\"763\",\"BOS\",\"JFK\",-6.00,30.00,0.00,\"\",0.00,114.00,44.00,187.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,5,\"DL\",\"772\",\"PBI\",\"LGA\",-4.00,1.00,0.00,\"\",0.00,175.00,145.00,1035.00,,,,,,\n2015,5,5,\"DL\",\"782\",\"MIA\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,163.00,135.00,1089.00,,,,,,\n2015,5,5,\"DL\",\"787\",\"MCO\",\"JFK\",-7.00,-32.00,0.00,\"\",0.00,141.00,121.00,944.00,,,,,,\n2015,5,5,\"DL\",\"789\",\"MIA\",\"LGA\",-7.00,-26.00,0.00,\"\",0.00,169.00,145.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"791\",\"LAX\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,317.00,291.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"792\",\"PBI\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,160.00,132.00,1028.00,,,,,,\n2015,5,5,\"DL\",\"793\",\"BOS\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,72.00,44.00,187.00,,,,,,\n2015,5,5,\"DL\",\"802\",\"ATL\",\"LGA\",-2.00,-24.00,0.00,\"\",0.00,123.00,102.00,762.00,,,,,,\n2015,5,5,\"DL\",\"804\",\"LGA\",\"MSP\",0.00,-11.00,0.00,\"\",0.00,183.00,153.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"856\",\"SAN\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,315.00,290.00,2446.00,,,,,,\n2015,5,5,\"DL\",\"871\",\"MSP\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,156.00,132.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"874\",\"LGA\",\"MIA\",0.00,-9.00,0.00,\"\",0.00,196.00,159.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"878\",\"RSW\",\"LGA\",0.00,-22.00,0.00,\"\",0.00,150.00,140.00,1080.00,,,,,,\n2015,5,5,\"DL\",\"884\",\"LGA\",\"DEN\",-10.00,-33.00,0.00,\"\",0.00,251.00,221.00,1620.00,,,,,,\n2015,5,3,\"DL\",\"2056\",\"JFK\",\"ATL\",38.00,-4.00,0.00,\"\",0.00,125.00,103.00,760.00,,,,,,\n2015,5,3,\"DL\",\"2058\",\"MCO\",\"JFK\",-9.00,-15.00,0.00,\"\",0.00,149.00,129.00,944.00,,,,,,\n2015,5,3,\"DL\",\"2059\",\"JFK\",\"ATL\",1.00,-13.00,0.00,\"\",0.00,155.00,99.00,760.00,,,,,,\n2015,5,3,\"DL\",\"2077\",\"LGA\",\"MCO\",-1.00,-19.00,0.00,\"\",0.00,158.00,127.00,950.00,,,,,,\n2015,5,3,\"DL\",\"2079\",\"BUF\",\"DTW\",-2.00,-11.00,0.00,\"\",0.00,59.00,41.00,241.00,,,,,,\n2015,5,3,\"DL\",\"2086\",\"ATL\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,124.00,106.00,762.00,,,,,,\n2015,5,3,\"DL\",\"2096\",\"LGA\",\"MSP\",-5.00,-25.00,0.00,\"\",0.00,162.00,143.00,1020.00,,,,,,\n2015,5,3,\"DL\",\"2119\",\"LGA\",\"MSP\",0.00,-10.00,0.00,\"\",0.00,175.00,148.00,1020.00,,,,,,\n2015,5,3,\"DL\",\"2122\",\"JFK\",\"AUS\",-9.00,-38.00,0.00,\"\",0.00,235.00,202.00,1521.00,,,,,,\n2015,5,3,\"DL\",\"2129\",\"ROC\",\"ATL\",-2.00,-20.00,0.00,\"\",0.00,111.00,98.00,749.00,,,,,,\n2015,5,3,\"DL\",\"2131\",\"LGA\",\"DTW\",-2.00,-9.00,0.00,\"\",0.00,112.00,77.00,502.00,,,,,,\n2015,5,3,\"DL\",\"2135\",\"TPA\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,159.00,140.00,1010.00,,,,,,\n2015,5,3,\"DL\",\"2146\",\"ATL\",\"ROC\",-3.00,-8.00,0.00,\"\",0.00,120.00,101.00,749.00,,,,,,\n2015,5,3,\"DL\",\"2146\",\"ROC\",\"ATL\",20.00,1.00,0.00,\"\",0.00,115.00,96.00,749.00,,,,,,\n2015,5,3,\"DL\",\"2148\",\"LGA\",\"DTW\",-2.00,-23.00,0.00,\"\",0.00,107.00,79.00,502.00,,,,,,\n2015,5,3,\"DL\",\"2150\",\"LGA\",\"DTW\",-7.00,-29.00,0.00,\"\",0.00,104.00,78.00,502.00,,,,,,\n2015,5,3,\"DL\",\"2151\",\"MIA\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,185.00,153.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"2155\",\"LAS\",\"JFK\",1.00,-8.00,0.00,\"\",0.00,294.00,275.00,2248.00,,,,,,\n2015,5,3,\"DL\",\"2156\",\"ATL\",\"SYR\",-3.00,-11.00,0.00,\"\",0.00,122.00,108.00,794.00,,,,,,\n2015,5,3,\"DL\",\"2156\",\"SYR\",\"ATL\",-3.00,-30.00,0.00,\"\",0.00,116.00,104.00,794.00,,,,,,\n2015,5,3,\"DL\",\"2174\",\"DTW\",\"JFK\",0.00,19.00,0.00,\"\",0.00,140.00,83.00,509.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,3,\"DL\",\"2178\",\"LGA\",\"TPA\",-3.00,-24.00,0.00,\"\",0.00,160.00,142.00,1010.00,,,,,,\n2015,5,3,\"DL\",\"2181\",\"LGA\",\"MCO\",-4.00,-18.00,0.00,\"\",0.00,156.00,126.00,950.00,,,,,,\n2015,5,3,\"DL\",\"2185\",\"FLL\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,163.00,143.00,1069.00,,,,,,\n2015,5,3,\"DL\",\"2186\",\"ATL\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,151.00,114.00,762.00,,,,,,\n2015,5,3,\"DL\",\"2190\",\"JFK\",\"MIA\",-4.00,-25.00,0.00,\"\",0.00,181.00,145.00,1089.00,,,,,,\n2015,5,3,\"DL\",\"2214\",\"BOS\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,68.00,38.00,187.00,,,,,,\n2015,5,3,\"DL\",\"2217\",\"JFK\",\"BOS\",-6.00,-17.00,0.00,\"\",0.00,81.00,41.00,187.00,,,,,,\n2015,5,3,\"DL\",\"2230\",\"CHS\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,128.00,87.00,636.00,,,,,,\n2015,5,3,\"DL\",\"2231\",\"DTW\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,107.00,78.00,502.00,,,,,,\n2015,5,3,\"DL\",\"2240\",\"SFO\",\"JFK\",0.00,8.00,0.00,\"\",0.00,346.00,321.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"2248\",\"DTW\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,98.00,79.00,502.00,,,,,,\n2015,5,3,\"DL\",\"2262\",\"LAX\",\"JFK\",45.00,24.00,0.00,\"\",0.00,313.00,295.00,2475.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"DL\",\"2263\",\"JFK\",\"MIA\",6.00,-20.00,0.00,\"\",0.00,184.00,149.00,1089.00,,,,,,\n2015,5,3,\"DL\",\"2270\",\"LGA\",\"RSW\",-3.00,-26.00,0.00,\"\",0.00,173.00,155.00,1080.00,,,,,,\n2015,5,3,\"DL\",\"2276\",\"MCO\",\"JFK\",-1.00,8.00,0.00,\"\",0.00,176.00,137.00,944.00,,,,,,\n2015,5,3,\"DL\",\"2277\",\"JFK\",\"TPA\",0.00,-22.00,0.00,\"\",0.00,171.00,140.00,1005.00,,,,,,\n2015,5,3,\"DL\",\"2280\",\"LGA\",\"TPA\",-3.00,-21.00,0.00,\"\",0.00,156.00,141.00,1010.00,,,,,,\n2015,5,3,\"DL\",\"2282\",\"LGA\",\"MCO\",-3.00,-23.00,0.00,\"\",0.00,156.00,128.00,950.00,,,,,,\n2015,5,3,\"DL\",\"2285\",\"LGA\",\"MCO\",-2.00,-13.00,0.00,\"\",0.00,152.00,127.00,950.00,,,,,,\n2015,5,3,\"DL\",\"2292\",\"JFK\",\"PBI\",-9.00,-30.00,0.00,\"\",0.00,166.00,137.00,1028.00,,,,,,\n2015,5,3,\"DL\",\"2296\",\"MSP\",\"LGA\",-2.00,36.00,0.00,\"\",0.00,207.00,161.00,1020.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,3,\"DL\",\"2299\",\"JFK\",\"PHX\",-8.00,-37.00,0.00,\"\",0.00,307.00,277.00,2153.00,,,,,,\n2015,5,3,\"DL\",\"2301\",\"JFK\",\"SAT\",-4.00,-45.00,0.00,\"\",0.00,228.00,206.00,1587.00,,,,,,\n2015,5,3,\"DL\",\"2311\",\"JFK\",\"MIA\",-2.00,-30.00,0.00,\"\",0.00,178.00,148.00,1089.00,,,,,,\n2015,5,3,\"DL\",\"2312\",\"JFK\",\"DTW\",-3.00,-33.00,0.00,\"\",0.00,110.00,83.00,509.00,,,,,,\n2015,5,3,\"DL\",\"2317\",\"PBI\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,164.00,143.00,1035.00,,,,,,\n2015,5,3,\"DL\",\"2319\",\"LGA\",\"MSP\",-4.00,-32.00,0.00,\"\",0.00,167.00,146.00,1020.00,,,,,,\n2015,5,3,\"DL\",\"2331\",\"LGA\",\"DTW\",1.00,-13.00,0.00,\"\",0.00,107.00,81.00,502.00,,,,,,\n2015,5,3,\"DL\",\"2340\",\"JFK\",\"MCO\",4.00,-21.00,0.00,\"\",0.00,165.00,126.00,944.00,,,,,,\n2015,5,3,\"DL\",\"2349\",\"DTW\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,104.00,78.00,502.00,,,,,,\n2015,5,3,\"DL\",\"2350\",\"ATL\",\"JFK\",14.00,3.00,0.00,\"\",0.00,124.00,104.00,760.00,,,,,,\n2015,5,3,\"DL\",\"2352\",\"LAS\",\"JFK\",2.00,11.00,0.00,\"\",0.00,322.00,264.00,2248.00,,,,,,\n2015,5,3,\"DL\",\"2354\",\"SLC\",\"JFK\",256.00,237.00,0.00,\"\",0.00,253.00,234.00,1990.00,237.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"DL\",\"2362\",\"LAX\",\"JFK\",8.00,22.00,0.00,\"\",0.00,344.00,294.00,2475.00,8.00,0.00,14.00,0.00,0.00,\n2015,5,3,\"DL\",\"2382\",\"JFK\",\"FLL\",9.00,6.00,0.00,\"\",0.00,198.00,149.00,1069.00,,,,,,\n2015,5,3,\"DL\",\"2386\",\"ATL\",\"LGA\",1.00,-6.00,0.00,\"\",0.00,131.00,108.00,762.00,,,,,,\n2015,5,3,\"DL\",\"2395\",\"LGA\",\"PBI\",-5.00,-20.00,0.00,\"\",0.00,165.00,139.00,1035.00,,,,,,\n2015,5,3,\"DL\",\"2400\",\"JFK\",\"PIT\",2.00,-18.00,0.00,\"\",0.00,101.00,61.00,340.00,,,,,,\n2015,5,3,\"DL\",\"2404\",\"SAN\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,321.00,299.00,2446.00,,,,,,\n2015,5,3,\"DL\",\"2405\",\"PHX\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,286.00,260.00,2153.00,,,,,,\n2015,5,3,\"DL\",\"2406\",\"TPA\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,157.00,137.00,1010.00,,,,,,\n2015,5,3,\"DL\",\"2413\",\"MIA\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,173.00,149.00,1096.00,,,,,,\n2015,5,3,\"DL\",\"2424\",\"JFK\",\"ATL\",53.00,12.00,0.00,\"\",0.00,131.00,103.00,760.00,,,,,,\n2015,5,3,\"DL\",\"2432\",\"DTW\",\"SYR\",-2.00,1.00,0.00,\"\",0.00,82.00,54.00,374.00,,,,,,\n2015,5,3,\"DL\",\"2435\",\"JFK\",\"FLL\",-7.00,-34.00,0.00,\"\",0.00,176.00,148.00,1069.00,,,,,,\n2015,5,3,\"DL\",\"2450\",\"MCO\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,152.00,129.00,950.00,,,,,,\n2015,5,3,\"DL\",\"2464\",\"TPA\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,151.00,134.00,1005.00,,,,,,\n2015,5,3,\"DL\",\"2466\",\"ATL\",\"SYR\",-4.00,-21.00,0.00,\"\",0.00,120.00,104.00,794.00,,,,,,\n2015,5,3,\"DL\",\"2466\",\"SYR\",\"ATL\",-4.00,-34.00,0.00,\"\",0.00,120.00,105.00,794.00,,,,,,\n2015,5,3,\"DL\",\"2473\",\"ATL\",\"BUF\",-5.00,-10.00,0.00,\"\",0.00,123.00,101.00,712.00,,,,,,\n2015,5,3,\"DL\",\"2495\",\"MIA\",\"JFK\",-3.00,-27.00,0.00,\"\",0.00,164.00,140.00,1089.00,,,,,,\n2015,5,3,\"DL\",\"2496\",\"ATL\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,132.00,111.00,762.00,,,,,,\n2015,5,3,\"DL\",\"2498\",\"FLL\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,165.00,144.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"2502\",\"FLL\",\"LGA\",9.00,-8.00,0.00,\"\",0.00,164.00,144.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"2521\",\"SFO\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,339.00,317.00,2586.00,,,,,,\n2015,5,3,\"DL\",\"2542\",\"FLL\",\"JFK\",1.00,-19.00,0.00,\"\",0.00,166.00,140.00,1069.00,,,,,,\n2015,5,3,\"DL\",\"2554\",\"DEN\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,226.00,201.00,1626.00,,,,,,\n2015,5,3,\"DL\",\"2565\",\"JFK\",\"MSP\",0.00,-22.00,0.00,\"\",0.00,187.00,147.00,1029.00,,,,,,\n2015,5,3,\"DL\",\"2567\",\"DTW\",\"ALB\",5.00,12.00,0.00,\"\",0.00,95.00,66.00,489.00,,,,,,\n2015,5,3,\"DL\",\"2570\",\"JFK\",\"DEN\",-3.00,-30.00,0.00,\"\",0.00,257.00,218.00,1626.00,,,,,,\n2015,5,3,\"DL\",\"2571\",\"JFK\",\"SLC\",3.00,-27.00,0.00,\"\",0.00,295.00,262.00,1990.00,,,,,,\n2015,5,3,\"DL\",\"2577\",\"JFK\",\"FLL\",0.00,-19.00,0.00,\"\",0.00,186.00,157.00,1069.00,,,,,,\n2015,5,3,\"DL\",\"2593\",\"JFK\",\"MSP\",-4.00,-36.00,0.00,\"\",0.00,169.00,156.00,1029.00,,,,,,\n2015,5,3,\"DL\",\"2594\",\"ALB\",\"DTW\",-7.00,-23.00,0.00,\"\",0.00,85.00,71.00,489.00,,,,,,\n2015,5,3,\"DL\",\"2595\",\"FLL\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,172.00,146.00,1076.00,,,,,,\n2015,5,3,\"DL\",\"2596\",\"PBI\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,166.00,144.00,1035.00,,,,,,\n2015,5,3,\"DL\",\"2622\",\"JFK\",\"SLC\",-4.00,-41.00,0.00,\"\",0.00,292.00,260.00,1990.00,,,,,,\n2015,5,3,\"DL\",\"2627\",\"JFK\",\"PDX\",-5.00,-8.00,0.00,\"\",0.00,367.00,333.00,2454.00,,,,,,\n2015,5,3,\"DL\",\"2632\",\"JFK\",\"MCO\",-5.00,-21.00,0.00,\"\",0.00,167.00,128.00,944.00,,,,,,\n2015,5,3,\"DL\",\"2634\",\"JFK\",\"BUF\",-9.00,-40.00,0.00,\"\",0.00,72.00,52.00,301.00,,,,,,\n2015,5,3,\"DL\",\"2645\",\"JFK\",\"RSW\",-1.00,3.00,0.00,\"\",0.00,205.00,152.00,1074.00,,,,,,\n2015,5,3,\"DL\",\"2649\",\"JFK\",\"TPA\",-5.00,-8.00,0.00,\"\",0.00,185.00,145.00,1005.00,,,,,,\n2015,5,3,\"DL\",\"2650\",\"TPA\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,160.00,136.00,1005.00,,,,,,\n2015,5,3,\"DL\",\"2652\",\"TPA\",\"JFK\",7.00,-5.00,0.00,\"\",0.00,162.00,131.00,1005.00,,,,,,\n2015,5,3,\"DL\",\"2653\",\"MCO\",\"JFK\",-7.00,1.00,0.00,\"\",0.00,174.00,127.00,944.00,,,,,,\n2015,5,3,\"DL\",\"2669\",\"BOS\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,65.00,40.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2672\",\"LGA\",\"BOS\",-1.00,-24.00,0.00,\"\",0.00,59.00,40.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2675\",\"BOS\",\"LGA\",-9.00,-5.00,0.00,\"\",0.00,79.00,44.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2680\",\"LGA\",\"BOS\",-7.00,-23.00,0.00,\"\",0.00,63.00,35.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2681\",\"BOS\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,61.00,41.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2682\",\"LGA\",\"BOS\",-2.00,-15.00,0.00,\"\",0.00,59.00,34.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2685\",\"BOS\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,59.00,41.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2686\",\"LGA\",\"BOS\",-1.00,-16.00,0.00,\"\",0.00,67.00,37.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2687\",\"BOS\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,66.00,41.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2689\",\"BOS\",\"LGA\",-5.00,6.00,0.00,\"\",0.00,91.00,41.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2690\",\"LGA\",\"BOS\",-4.00,-19.00,0.00,\"\",0.00,70.00,41.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2692\",\"LGA\",\"BOS\",2.00,-11.00,0.00,\"\",0.00,66.00,42.00,184.00,,,,,,\n2015,5,3,\"DL\",\"2694\",\"LGA\",\"BOS\",-1.00,-7.00,0.00,\"\",0.00,72.00,41.00,184.00,,,,,,\n2015,5,4,\"DL\",\"42\",\"MIA\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,167.00,139.00,1089.00,,,,,,\n2015,5,4,\"DL\",\"208\",\"JFK\",\"MCO\",-6.00,-22.00,0.00,\"\",0.00,171.00,131.00,944.00,,,,,,\n2015,5,4,\"DL\",\"221\",\"LGA\",\"ATL\",-2.00,-33.00,0.00,\"\",0.00,134.00,105.00,762.00,,,,,,\n2015,5,4,\"DL\",\"234\",\"PIT\",\"JFK\",-8.00,-13.00,0.00,\"\",0.00,95.00,64.00,340.00,,,,,,\n2015,5,5,\"DL\",\"986\",\"ATL\",\"LGA\",21.00,12.00,0.00,\"\",0.00,124.00,106.00,762.00,,,,,,\n2015,5,5,\"DL\",\"997\",\"DTW\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,98.00,75.00,502.00,,,,,,\n2015,5,5,\"DL\",\"1086\",\"LGA\",\"ATL\",-2.00,-24.00,0.00,\"\",0.00,140.00,104.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1088\",\"FLL\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,166.00,140.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"1109\",\"SEA\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,316.00,280.00,2422.00,,,,,,\n2015,5,5,\"DL\",\"1111\",\"ATL\",\"ROC\",0.00,-12.00,0.00,\"\",0.00,118.00,97.00,749.00,,,,,,\n2015,5,5,\"DL\",\"1121\",\"PBI\",\"LGA\",-6.00,-27.00,0.00,\"\",0.00,152.00,133.00,1035.00,,,,,,\n2015,5,5,\"DL\",\"1131\",\"LGA\",\"FLL\",10.00,-12.00,0.00,\"\",0.00,170.00,153.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"1145\",\"LGA\",\"DTW\",-2.00,-7.00,0.00,\"\",0.00,119.00,96.00,502.00,,,,,,\n2015,5,5,\"DL\",\"1155\",\"DTW\",\"ROC\",1.00,-2.00,0.00,\"\",0.00,68.00,42.00,296.00,,,,,,\n2015,5,5,\"DL\",\"1159\",\"ATL\",\"BUF\",0.00,-6.00,0.00,\"\",0.00,116.00,96.00,712.00,,,,,,\n2015,5,5,\"DL\",\"1159\",\"BUF\",\"ATL\",-3.00,-15.00,0.00,\"\",0.00,117.00,101.00,712.00,,,,,,\n2015,5,5,\"DL\",\"1162\",\"LAX\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,319.00,296.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"1174\",\"LGA\",\"PBI\",-3.00,-20.00,0.00,\"\",0.00,163.00,146.00,1035.00,,,,,,\n2015,5,5,\"DL\",\"1176\",\"ATL\",\"BUF\",-5.00,-18.00,0.00,\"\",0.00,117.00,96.00,712.00,,,,,,\n2015,5,5,\"DL\",\"1176\",\"BUF\",\"ATL\",-6.00,-12.00,0.00,\"\",0.00,129.00,97.00,712.00,,,,,,\n2015,5,5,\"DL\",\"1186\",\"ATL\",\"LGA\",1.00,-11.00,0.00,\"\",0.00,129.00,107.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1214\",\"LGA\",\"ATL\",-6.00,-26.00,0.00,\"\",0.00,144.00,111.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1227\",\"PHX\",\"JFK\",-9.00,-19.00,0.00,\"\",0.00,280.00,259.00,2153.00,,,,,,\n2015,5,5,\"DL\",\"1242\",\"LGA\",\"PBI\",-6.00,-25.00,0.00,\"\",0.00,165.00,146.00,1035.00,,,,,,\n2015,5,5,\"DL\",\"1262\",\"LAX\",\"JFK\",14.00,2.00,0.00,\"\",0.00,321.00,298.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"1264\",\"SLC\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,258.00,236.00,1990.00,,,,,,\n2015,5,5,\"DL\",\"1266\",\"BUF\",\"ATL\",-1.00,-6.00,0.00,\"\",0.00,117.00,97.00,712.00,,,,,,\n2015,5,5,\"DL\",\"1269\",\"LGA\",\"MIA\",-5.00,-28.00,0.00,\"\",0.00,174.00,159.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"1278\",\"MSP\",\"BUF\",-1.00,-10.00,0.00,\"\",0.00,110.00,96.00,735.00,,,,,,\n2015,5,5,\"DL\",\"1286\",\"ATL\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,122.00,104.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1288\",\"LGA\",\"FLL\",-7.00,-22.00,0.00,\"\",0.00,180.00,153.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"1289\",\"LGA\",\"ATL\",-6.00,-16.00,0.00,\"\",0.00,152.00,105.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1298\",\"LGA\",\"ATL\",-4.00,-17.00,0.00,\"\",0.00,148.00,109.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1306\",\"DTW\",\"LGA\",4.00,0.00,0.00,\"\",0.00,103.00,74.00,502.00,,,,,,\n2015,5,5,\"DL\",\"1312\",\"TPA\",\"JFK\",-11.00,-30.00,0.00,\"\",0.00,155.00,130.00,1005.00,,,,,,\n2015,5,5,\"DL\",\"1335\",\"MIA\",\"LGA\",5.00,-17.00,0.00,\"\",0.00,161.00,137.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"1356\",\"BUF\",\"DTW\",-3.00,-9.00,0.00,\"\",0.00,65.00,47.00,241.00,,,,,,\n2015,5,5,\"DL\",\"1359\",\"MCO\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,145.00,128.00,950.00,,,,,,\n2015,5,5,\"DL\",\"1372\",\"DTW\",\"BUF\",-6.00,4.00,0.00,\"\",0.00,76.00,38.00,241.00,,,,,,\n2015,5,5,\"DL\",\"1383\",\"LGA\",\"ATL\",-4.00,-36.00,0.00,\"\",0.00,136.00,110.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1386\",\"ATL\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,123.00,108.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1394\",\"ATL\",\"JFK\",4.00,-16.00,0.00,\"\",0.00,133.00,114.00,760.00,,,,,,\n2015,5,5,\"DL\",\"1419\",\"ATL\",\"JFK\",-1.00,-33.00,0.00,\"\",0.00,123.00,103.00,760.00,,,,,,\n2015,5,5,\"DL\",\"1428\",\"LGA\",\"ATL\",4.00,-27.00,0.00,\"\",0.00,127.00,103.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1447\",\"LGA\",\"ATL\",0.00,-17.00,0.00,\"\",0.00,127.00,105.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1473\",\"SEA\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,321.00,285.00,2422.00,,,,,,\n2015,5,5,\"DL\",\"1486\",\"ATL\",\"LGA\",2.00,-3.00,0.00,\"\",0.00,134.00,108.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1487\",\"ATL\",\"JFK\",20.00,3.00,0.00,\"\",0.00,127.00,105.00,760.00,,,,,,\n2015,5,5,\"DL\",\"1496\",\"MSP\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,145.00,128.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"1498\",\"FLL\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,166.00,146.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"1514\",\"LGA\",\"FLL\",15.00,4.00,0.00,\"\",0.00,178.00,150.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"1515\",\"ATL\",\"ALB\",-3.00,-17.00,0.00,\"\",0.00,133.00,112.00,853.00,,,,,,\n2015,5,5,\"DL\",\"1526\",\"MCO\",\"LGA\",16.00,10.00,0.00,\"\",0.00,153.00,128.00,950.00,,,,,,\n2015,5,5,\"DL\",\"1542\",\"SEA\",\"JFK\",0.00,-29.00,0.00,\"\",0.00,295.00,273.00,2422.00,,,,,,\n2015,5,5,\"DL\",\"1543\",\"ATL\",\"ALB\",18.00,2.00,0.00,\"\",0.00,128.00,111.00,853.00,,,,,,\n2015,5,5,\"DL\",\"1543\",\"ALB\",\"ATL\",0.00,-19.00,0.00,\"\",0.00,143.00,120.00,853.00,,,,,,\n2015,5,5,\"DL\",\"1548\",\"LGA\",\"DTW\",-2.00,8.00,0.00,\"\",0.00,130.00,94.00,502.00,,,,,,\n2015,5,5,\"DL\",\"1560\",\"MSY\",\"LGA\",3.00,-7.00,0.00,\"\",0.00,176.00,150.00,1183.00,,,,,,\n2015,5,5,\"DL\",\"1562\",\"BOS\",\"JFK\",-3.00,7.00,0.00,\"\",0.00,89.00,51.00,187.00,,,,,,\n2015,5,5,\"DL\",\"1566\",\"LGA\",\"PBI\",-4.00,-17.00,0.00,\"\",0.00,170.00,145.00,1035.00,,,,,,\n2015,5,5,\"DL\",\"1580\",\"LGA\",\"DTW\",-6.00,-11.00,0.00,\"\",0.00,120.00,93.00,502.00,,,,,,\n2015,5,5,\"DL\",\"1583\",\"SFO\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,326.00,297.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"1584\",\"ATL\",\"ROC\",-1.00,-25.00,0.00,\"\",0.00,109.00,94.00,749.00,,,,,,\n2015,5,5,\"DL\",\"1584\",\"ROC\",\"ATL\",-9.00,-7.00,0.00,\"\",0.00,137.00,107.00,749.00,,,,,,\n2015,5,5,\"DL\",\"1586\",\"ATL\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,136.00,106.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1596\",\"MSP\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,153.00,133.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"1644\",\"FLL\",\"JFK\",-7.00,-30.00,0.00,\"\",0.00,164.00,135.00,1069.00,,,,,,\n2015,5,5,\"DL\",\"1647\",\"LGA\",\"ATL\",-5.00,-24.00,0.00,\"\",0.00,133.00,104.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1671\",\"MIA\",\"JFK\",0.00,-20.00,0.00,\"\",0.00,167.00,137.00,1089.00,,,,,,\n2015,5,5,\"DL\",\"1672\",\"ATL\",\"BUF\",-3.00,-2.00,0.00,\"\",0.00,120.00,98.00,712.00,,,,,,\n2015,5,5,\"DL\",\"1672\",\"BUF\",\"ATL\",0.00,-7.00,0.00,\"\",0.00,121.00,96.00,712.00,,,,,,\n2015,5,5,\"DL\",\"1685\",\"LGA\",\"MCO\",-1.00,-14.00,0.00,\"\",0.00,162.00,137.00,950.00,,,,,,\n2015,5,5,\"DL\",\"1697\",\"LGA\",\"ATL\",-3.00,-17.00,0.00,\"\",0.00,144.00,106.00,762.00,,,,,,\n2015,5,1,\"B6\",\"1894\",\"MCO\",\"HPN\",,,1.00,\"A\",0.00,,,972.00,,,,,,\n2015,5,2,\"B6\",\"1894\",\"MCO\",\"HPN\",-11.00,-16.00,0.00,\"\",0.00,158.00,136.00,972.00,,,,,,\n2015,5,3,\"B6\",\"1894\",\"MCO\",\"HPN\",-8.00,-17.00,0.00,\"\",0.00,154.00,138.00,972.00,,,,,,\n2015,5,4,\"B6\",\"1894\",\"MCO\",\"HPN\",-2.00,-15.00,0.00,\"\",0.00,150.00,135.00,972.00,,,,,,\n2015,5,5,\"B6\",\"1894\",\"MCO\",\"HPN\",12.00,-1.00,0.00,\"\",0.00,150.00,131.00,972.00,,,,,,\n2015,5,6,\"B6\",\"1894\",\"MCO\",\"HPN\",-1.00,-11.00,0.00,\"\",0.00,153.00,132.00,972.00,,,,,,\n2015,5,7,\"B6\",\"1894\",\"MCO\",\"HPN\",9.00,5.00,0.00,\"\",0.00,159.00,141.00,972.00,,,,,,\n2015,5,8,\"B6\",\"1894\",\"MCO\",\"HPN\",137.00,129.00,0.00,\"\",0.00,155.00,138.00,972.00,16.00,0.00,0.00,0.00,113.00,\n2015,5,9,\"B6\",\"1894\",\"MCO\",\"HPN\",-3.00,-5.00,0.00,\"\",0.00,161.00,145.00,972.00,,,,,,\n2015,5,10,\"B6\",\"1894\",\"MCO\",\"HPN\",-3.00,-11.00,0.00,\"\",0.00,155.00,141.00,972.00,,,,,,\n2015,5,11,\"B6\",\"1894\",\"MCO\",\"HPN\",35.00,37.00,0.00,\"\",0.00,165.00,136.00,972.00,35.00,0.00,2.00,0.00,0.00,\n2015,5,12,\"B6\",\"1894\",\"MCO\",\"HPN\",12.00,2.00,0.00,\"\",0.00,153.00,135.00,972.00,,,,,,\n2015,5,13,\"B6\",\"1894\",\"MCO\",\"HPN\",-2.00,-7.00,0.00,\"\",0.00,158.00,138.00,972.00,,,,,,\n2015,5,14,\"B6\",\"1894\",\"MCO\",\"HPN\",-9.00,-20.00,0.00,\"\",0.00,152.00,136.00,972.00,,,,,,\n2015,5,15,\"B6\",\"1894\",\"MCO\",\"HPN\",9.00,-2.00,0.00,\"\",0.00,152.00,136.00,972.00,,,,,,\n2015,5,16,\"B6\",\"1894\",\"MCO\",\"HPN\",-7.00,6.00,0.00,\"\",0.00,176.00,160.00,972.00,,,,,,\n2015,5,17,\"B6\",\"1894\",\"MCO\",\"HPN\",-14.00,-18.00,0.00,\"\",0.00,159.00,142.00,972.00,,,,,,\n2015,5,18,\"B6\",\"1894\",\"MCO\",\"HPN\",11.00,19.00,0.00,\"\",0.00,171.00,148.00,972.00,8.00,0.00,8.00,0.00,3.00,\n2015,5,19,\"B6\",\"1894\",\"MCO\",\"HPN\",19.00,23.00,0.00,\"\",0.00,167.00,143.00,972.00,17.00,0.00,4.00,0.00,2.00,\n2015,5,20,\"B6\",\"1894\",\"MCO\",\"HPN\",53.00,53.00,0.00,\"\",0.00,163.00,135.00,972.00,0.00,53.00,0.00,0.00,0.00,\n2015,5,21,\"B6\",\"1894\",\"MCO\",\"HPN\",21.00,9.00,0.00,\"\",0.00,151.00,132.00,972.00,,,,,,\n2015,5,22,\"B6\",\"1894\",\"MCO\",\"HPN\",0.00,-16.00,0.00,\"\",0.00,147.00,128.00,972.00,,,,,,\n2015,5,23,\"B6\",\"1894\",\"MCO\",\"HPN\",-10.00,-22.00,0.00,\"\",0.00,151.00,130.00,972.00,,,,,,\n2015,5,24,\"B6\",\"1894\",\"MCO\",\"HPN\",-5.00,-14.00,0.00,\"\",0.00,154.00,138.00,972.00,,,,,,\n2015,5,25,\"B6\",\"1894\",\"MCO\",\"HPN\",-6.00,-2.00,0.00,\"\",0.00,167.00,147.00,972.00,,,,,,\n2015,5,26,\"B6\",\"1894\",\"MCO\",\"HPN\",-5.00,-19.00,0.00,\"\",0.00,149.00,136.00,972.00,,,,,,\n2015,5,27,\"B6\",\"1894\",\"MCO\",\"HPN\",0.00,-7.00,0.00,\"\",0.00,156.00,133.00,972.00,,,,,,\n2015,5,28,\"B6\",\"1894\",\"MCO\",\"HPN\",-5.00,1.00,0.00,\"\",0.00,169.00,146.00,972.00,,,,,,\n2015,5,29,\"B6\",\"1894\",\"MCO\",\"HPN\",-10.00,-17.00,0.00,\"\",0.00,156.00,136.00,972.00,,,,,,\n2015,5,30,\"B6\",\"1894\",\"MCO\",\"HPN\",-3.00,-9.00,0.00,\"\",0.00,157.00,140.00,972.00,,,,,,\n2015,5,31,\"B6\",\"1894\",\"MCO\",\"HPN\",-5.00,13.00,0.00,\"\",0.00,181.00,156.00,972.00,,,,,,\n2015,5,1,\"B6\",\"1895\",\"HPN\",\"MCO\",-3.00,-2.00,0.00,\"\",0.00,160.00,142.00,972.00,,,,,,\n2015,5,2,\"B6\",\"1895\",\"HPN\",\"MCO\",-8.00,-15.00,0.00,\"\",0.00,152.00,127.00,972.00,,,,,,\n2015,5,3,\"B6\",\"1895\",\"HPN\",\"MCO\",-10.00,-9.00,0.00,\"\",0.00,160.00,133.00,972.00,,,,,,\n2015,5,4,\"B6\",\"1895\",\"HPN\",\"MCO\",-5.00,-12.00,0.00,\"\",0.00,152.00,134.00,972.00,,,,,,\n2015,5,5,\"B6\",\"1895\",\"HPN\",\"MCO\",-8.00,-14.00,0.00,\"\",0.00,153.00,135.00,972.00,,,,,,\n2015,5,6,\"B6\",\"1895\",\"HPN\",\"MCO\",-9.00,4.00,0.00,\"\",0.00,172.00,142.00,972.00,,,,,,\n2015,5,7,\"B6\",\"1895\",\"HPN\",\"MCO\",-9.00,-11.00,0.00,\"\",0.00,157.00,136.00,972.00,,,,,,\n2015,5,8,\"B6\",\"1895\",\"HPN\",\"MCO\",5.00,-1.00,0.00,\"\",0.00,153.00,128.00,972.00,,,,,,\n2015,5,9,\"B6\",\"1895\",\"HPN\",\"MCO\",25.00,8.00,0.00,\"\",0.00,142.00,121.00,972.00,,,,,,\n2015,5,10,\"B6\",\"1895\",\"HPN\",\"MCO\",-2.00,-13.00,0.00,\"\",0.00,148.00,123.00,972.00,,,,,,\n2015,5,11,\"B6\",\"1895\",\"HPN\",\"MCO\",-12.00,-16.00,0.00,\"\",0.00,155.00,129.00,972.00,,,,,,\n2015,5,12,\"B6\",\"1895\",\"HPN\",\"MCO\",-9.00,-13.00,0.00,\"\",0.00,155.00,127.00,972.00,,,,,,\n2015,5,13,\"B6\",\"1895\",\"HPN\",\"MCO\",-10.00,-13.00,0.00,\"\",0.00,156.00,137.00,972.00,,,,,,\n2015,5,14,\"B6\",\"1895\",\"HPN\",\"MCO\",-10.00,-28.00,0.00,\"\",0.00,141.00,126.00,972.00,,,,,,\n2015,5,15,\"B6\",\"1895\",\"HPN\",\"MCO\",-10.00,-14.00,0.00,\"\",0.00,155.00,139.00,972.00,,,,,,\n2015,5,16,\"B6\",\"1895\",\"HPN\",\"MCO\",-10.00,-2.00,0.00,\"\",0.00,167.00,130.00,972.00,,,,,,\n2015,5,17,\"B6\",\"1895\",\"HPN\",\"MCO\",-7.00,-18.00,0.00,\"\",0.00,148.00,126.00,972.00,,,,,,\n2015,5,18,\"B6\",\"1895\",\"HPN\",\"MCO\",-3.00,-3.00,0.00,\"\",0.00,159.00,130.00,972.00,,,,,,\n2015,5,19,\"B6\",\"1895\",\"HPN\",\"MCO\",3.00,3.00,0.00,\"\",0.00,159.00,126.00,972.00,,,,,,\n2015,5,20,\"B6\",\"1895\",\"HPN\",\"MCO\",-4.00,-21.00,0.00,\"\",0.00,142.00,127.00,972.00,,,,,,\n2015,5,21,\"B6\",\"1895\",\"HPN\",\"MCO\",2.00,1.00,0.00,\"\",0.00,158.00,138.00,972.00,,,,,,\n2015,5,22,\"B6\",\"1895\",\"HPN\",\"MCO\",-6.00,0.00,0.00,\"\",0.00,165.00,140.00,972.00,,,,,,\n2015,5,23,\"B6\",\"1895\",\"HPN\",\"MCO\",27.00,22.00,0.00,\"\",0.00,154.00,131.00,972.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"B6\",\"1895\",\"HPN\",\"MCO\",-8.00,-21.00,0.00,\"\",0.00,146.00,124.00,972.00,,,,,,\n2015,5,25,\"B6\",\"1895\",\"HPN\",\"MCO\",-3.00,-19.00,0.00,\"\",0.00,143.00,127.00,972.00,,,,,,\n2015,5,26,\"B6\",\"1895\",\"HPN\",\"MCO\",-8.00,-20.00,0.00,\"\",0.00,147.00,132.00,972.00,,,,,,\n2015,5,27,\"B6\",\"1895\",\"HPN\",\"MCO\",-1.00,-11.00,0.00,\"\",0.00,149.00,133.00,972.00,,,,,,\n2015,5,28,\"B6\",\"1895\",\"HPN\",\"MCO\",-13.00,-22.00,0.00,\"\",0.00,150.00,136.00,972.00,,,,,,\n2015,5,29,\"B6\",\"1895\",\"HPN\",\"MCO\",-13.00,-22.00,0.00,\"\",0.00,150.00,128.00,972.00,,,,,,\n2015,5,30,\"B6\",\"1895\",\"HPN\",\"MCO\",-4.00,-13.00,0.00,\"\",0.00,150.00,127.00,972.00,,,,,,\n2015,5,31,\"B6\",\"1895\",\"HPN\",\"MCO\",,,1.00,\"A\",0.00,,,972.00,,,,,,\n2015,5,1,\"B6\",\"1915\",\"BOS\",\"BUF\",-8.00,-19.00,0.00,\"\",0.00,82.00,61.00,395.00,,,,,,\n2015,5,2,\"B6\",\"1915\",\"BOS\",\"BUF\",-14.00,-27.00,0.00,\"\",0.00,80.00,63.00,395.00,,,,,,\n2015,5,3,\"B6\",\"1915\",\"BOS\",\"BUF\",36.00,21.00,0.00,\"\",0.00,78.00,63.00,395.00,5.00,0.00,0.00,0.00,16.00,\n2015,5,4,\"B6\",\"1915\",\"BOS\",\"BUF\",-4.00,-10.00,0.00,\"\",0.00,87.00,65.00,395.00,,,,,,\n2015,5,5,\"B6\",\"1915\",\"BOS\",\"BUF\",-7.00,-10.00,0.00,\"\",0.00,90.00,67.00,395.00,,,,,,\n2015,5,6,\"B6\",\"1915\",\"BOS\",\"BUF\",-8.00,-7.00,0.00,\"\",0.00,94.00,66.00,395.00,,,,,,\n2015,5,7,\"B6\",\"1915\",\"BOS\",\"BUF\",2.00,-6.00,0.00,\"\",0.00,85.00,62.00,395.00,,,,,,\n2015,5,8,\"B6\",\"1915\",\"BOS\",\"BUF\",-6.00,-12.00,0.00,\"\",0.00,87.00,60.00,395.00,,,,,,\n2015,5,9,\"B6\",\"1915\",\"BOS\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,84.00,65.00,395.00,,,,,,\n2015,5,10,\"B6\",\"1915\",\"BOS\",\"BUF\",-4.00,-5.00,0.00,\"\",0.00,92.00,67.00,395.00,,,,,,\n2015,5,11,\"B6\",\"1915\",\"BOS\",\"BUF\",-7.00,-14.00,0.00,\"\",0.00,86.00,64.00,395.00,,,,,,\n2015,5,12,\"B6\",\"1915\",\"BOS\",\"BUF\",-5.00,13.00,0.00,\"\",0.00,111.00,70.00,395.00,,,,,,\n2015,5,13,\"B6\",\"1915\",\"BOS\",\"BUF\",-8.00,-9.00,0.00,\"\",0.00,92.00,62.00,395.00,,,,,,\n2015,5,14,\"B6\",\"1915\",\"BOS\",\"BUF\",-7.00,-10.00,0.00,\"\",0.00,90.00,65.00,395.00,,,,,,\n2015,5,15,\"B6\",\"1915\",\"BOS\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,85.00,64.00,395.00,,,,,,\n2015,5,16,\"B6\",\"1915\",\"BOS\",\"BUF\",-16.00,-17.00,0.00,\"\",0.00,92.00,68.00,395.00,,,,,,\n2015,5,17,\"B6\",\"1915\",\"BOS\",\"BUF\",-6.00,-25.00,0.00,\"\",0.00,74.00,58.00,395.00,,,,,,\n2015,5,18,\"B6\",\"1915\",\"BOS\",\"BUF\",90.00,71.00,0.00,\"\",0.00,74.00,62.00,395.00,70.00,0.00,0.00,1.00,0.00,\n2015,5,19,\"B6\",\"1915\",\"BOS\",\"BUF\",-6.00,-2.00,0.00,\"\",0.00,97.00,65.00,395.00,,,,,,\n2015,5,20,\"B6\",\"1915\",\"BOS\",\"BUF\",-5.00,-5.00,0.00,\"\",0.00,93.00,68.00,395.00,,,,,,\n2015,5,21,\"B6\",\"1915\",\"BOS\",\"BUF\",-2.00,-4.00,0.00,\"\",0.00,91.00,69.00,395.00,,,,,,\n2015,5,22,\"B6\",\"1915\",\"BOS\",\"BUF\",-13.00,-15.00,0.00,\"\",0.00,91.00,66.00,395.00,,,,,,\n2015,5,23,\"B6\",\"1915\",\"BOS\",\"BUF\",-9.00,-21.00,0.00,\"\",0.00,81.00,63.00,395.00,,,,,,\n2015,5,24,\"B6\",\"1915\",\"BOS\",\"BUF\",-5.00,-12.00,0.00,\"\",0.00,86.00,67.00,395.00,,,,,,\n2015,5,25,\"B6\",\"1915\",\"BOS\",\"BUF\",-5.00,-11.00,0.00,\"\",0.00,87.00,65.00,395.00,,,,,,\n2015,5,26,\"B6\",\"1915\",\"BOS\",\"BUF\",-6.00,-18.00,0.00,\"\",0.00,81.00,62.00,395.00,,,,,,\n2015,5,27,\"B6\",\"1915\",\"BOS\",\"BUF\",11.00,3.00,0.00,\"\",0.00,85.00,68.00,395.00,,,,,,\n2015,5,28,\"B6\",\"1915\",\"BOS\",\"BUF\",-8.00,-5.00,0.00,\"\",0.00,96.00,68.00,395.00,,,,,,\n2015,5,29,\"B6\",\"1915\",\"BOS\",\"BUF\",-7.00,-20.00,0.00,\"\",0.00,80.00,63.00,395.00,,,,,,\n2015,5,30,\"B6\",\"1915\",\"BOS\",\"BUF\",0.00,-7.00,0.00,\"\",0.00,86.00,66.00,395.00,,,,,,\n2015,5,31,\"B6\",\"1915\",\"BOS\",\"BUF\",4.00,4.00,0.00,\"\",0.00,93.00,71.00,395.00,,,,,,\n2015,5,1,\"B6\",\"1916\",\"BUF\",\"BOS\",-17.00,-19.00,0.00,\"\",0.00,80.00,62.00,395.00,,,,,,\n2015,5,2,\"B6\",\"1916\",\"BUF\",\"BOS\",-10.00,-16.00,0.00,\"\",0.00,76.00,62.00,395.00,,,,,,\n2015,5,3,\"B6\",\"1916\",\"BUF\",\"BOS\",12.00,4.00,0.00,\"\",0.00,74.00,62.00,395.00,,,,,,\n2015,5,4,\"B6\",\"1916\",\"BUF\",\"BOS\",-16.00,-34.00,0.00,\"\",0.00,64.00,54.00,395.00,,,,,,\n2015,5,5,\"B6\",\"1916\",\"BUF\",\"BOS\",-16.00,-25.00,0.00,\"\",0.00,73.00,56.00,395.00,,,,,,\n2015,5,6,\"B6\",\"1916\",\"BUF\",\"BOS\",-11.00,-27.00,0.00,\"\",0.00,66.00,55.00,395.00,,,,,,\n2015,5,7,\"B6\",\"1916\",\"BUF\",\"BOS\",-11.00,-15.00,0.00,\"\",0.00,78.00,63.00,395.00,,,,,,\n2015,5,8,\"B6\",\"1916\",\"BUF\",\"BOS\",1.00,-3.00,0.00,\"\",0.00,78.00,58.00,395.00,,,,,,\n2015,5,9,\"B6\",\"1916\",\"BUF\",\"BOS\",-3.00,-14.00,0.00,\"\",0.00,71.00,55.00,395.00,,,,,,\n2015,5,10,\"B6\",\"1916\",\"BUF\",\"BOS\",-8.00,-7.00,0.00,\"\",0.00,83.00,58.00,395.00,,,,,,\n2015,5,11,\"B6\",\"1916\",\"BUF\",\"BOS\",2.00,0.00,0.00,\"\",0.00,80.00,65.00,395.00,,,,,,\n2015,5,12,\"B6\",\"1916\",\"BUF\",\"BOS\",-3.00,-17.00,0.00,\"\",0.00,68.00,55.00,395.00,,,,,,\n2015,5,13,\"B6\",\"1916\",\"BUF\",\"BOS\",-9.00,-19.00,0.00,\"\",0.00,72.00,55.00,395.00,,,,,,\n2015,5,14,\"B6\",\"1916\",\"BUF\",\"BOS\",-6.00,-17.00,0.00,\"\",0.00,71.00,56.00,395.00,,,,,,\n2015,5,15,\"B6\",\"1916\",\"BUF\",\"BOS\",-8.00,-22.00,0.00,\"\",0.00,68.00,54.00,395.00,,,,,,\n2015,5,16,\"B6\",\"1916\",\"BUF\",\"BOS\",-8.00,-25.00,0.00,\"\",0.00,65.00,53.00,395.00,,,,,,\n2015,5,17,\"B6\",\"1916\",\"BUF\",\"BOS\",-8.00,-19.00,0.00,\"\",0.00,71.00,57.00,395.00,,,,,,\n2015,5,18,\"B6\",\"1916\",\"BUF\",\"BOS\",67.00,58.00,0.00,\"\",0.00,73.00,58.00,395.00,3.00,0.00,0.00,0.00,55.00,\n2015,5,19,\"B6\",\"1916\",\"BUF\",\"BOS\",-9.00,-22.00,0.00,\"\",0.00,69.00,55.00,395.00,,,,,,\n2015,5,20,\"B6\",\"1916\",\"BUF\",\"BOS\",-7.00,-23.00,0.00,\"\",0.00,66.00,54.00,395.00,,,,,,\n2015,5,21,\"B6\",\"1916\",\"BUF\",\"BOS\",-8.00,-20.00,0.00,\"\",0.00,70.00,54.00,395.00,,,,,,\n2015,5,22,\"B6\",\"1916\",\"BUF\",\"BOS\",-17.00,-35.00,0.00,\"\",0.00,64.00,52.00,395.00,,,,,,\n2015,5,23,\"B6\",\"1916\",\"BUF\",\"BOS\",-12.00,-25.00,0.00,\"\",0.00,69.00,56.00,395.00,,,,,,\n2015,5,24,\"B6\",\"1916\",\"BUF\",\"BOS\",-13.00,-32.00,0.00,\"\",0.00,63.00,51.00,395.00,,,,,,\n2015,5,25,\"B6\",\"1916\",\"BUF\",\"BOS\",-12.00,-31.00,0.00,\"\",0.00,63.00,54.00,395.00,,,,,,\n2015,5,26,\"B6\",\"1916\",\"BUF\",\"BOS\",-10.00,-16.00,0.00,\"\",0.00,76.00,57.00,395.00,,,,,,\n2015,5,27,\"B6\",\"1916\",\"BUF\",\"BOS\",-6.00,-15.00,0.00,\"\",0.00,73.00,63.00,395.00,,,,,,\n2015,5,28,\"B6\",\"1916\",\"BUF\",\"BOS\",-11.00,-20.00,0.00,\"\",0.00,73.00,57.00,395.00,,,,,,\n2015,5,29,\"B6\",\"1916\",\"BUF\",\"BOS\",55.00,68.00,0.00,\"\",0.00,95.00,60.00,395.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,30,\"B6\",\"1916\",\"BUF\",\"BOS\",-12.00,-20.00,0.00,\"\",0.00,74.00,60.00,395.00,,,,,,\n2015,5,31,\"B6\",\"1916\",\"BUF\",\"BOS\",89.00,99.00,0.00,\"\",0.00,92.00,72.00,395.00,0.00,0.00,99.00,0.00,0.00,\n2015,5,1,\"B6\",\"1967\",\"HPN\",\"PBI\",-3.00,1.00,0.00,\"\",0.00,174.00,156.00,1056.00,,,,,,\n2015,5,2,\"B6\",\"1967\",\"HPN\",\"PBI\",-1.00,-3.00,0.00,\"\",0.00,168.00,142.00,1056.00,,,,,,\n2015,5,3,\"B6\",\"1967\",\"HPN\",\"PBI\",-5.00,-12.00,0.00,\"\",0.00,163.00,148.00,1056.00,,,,,,\n2015,5,4,\"B6\",\"1967\",\"HPN\",\"PBI\",1.00,8.00,0.00,\"\",0.00,177.00,157.00,1056.00,,,,,,\n2015,5,5,\"B6\",\"1967\",\"HPN\",\"PBI\",-1.00,1.00,0.00,\"\",0.00,172.00,150.00,1056.00,,,,,,\n2015,5,6,\"B6\",\"1967\",\"HPN\",\"PBI\",10.00,9.00,0.00,\"\",0.00,169.00,157.00,1056.00,,,,,,\n2015,5,7,\"B6\",\"1967\",\"HPN\",\"PBI\",8.00,1.00,0.00,\"\",0.00,163.00,147.00,1056.00,,,,,,\n2015,5,8,\"B6\",\"1967\",\"HPN\",\"PBI\",66.00,57.00,0.00,\"\",0.00,161.00,141.00,1056.00,35.00,0.00,0.00,0.00,22.00,\n2015,5,9,\"B6\",\"1967\",\"HPN\",\"PBI\",-3.00,-5.00,0.00,\"\",0.00,168.00,141.00,1056.00,,,,,,\n2015,5,10,\"B6\",\"1967\",\"HPN\",\"PBI\",11.00,18.00,0.00,\"\",0.00,177.00,159.00,1056.00,11.00,0.00,7.00,0.00,0.00,\n2015,5,11,\"B6\",\"1967\",\"HPN\",\"PBI\",-2.00,10.00,0.00,\"\",0.00,182.00,155.00,1056.00,,,,,,\n2015,5,12,\"B6\",\"1967\",\"HPN\",\"PBI\",8.00,-12.00,0.00,\"\",0.00,150.00,139.00,1056.00,,,,,,\n2015,5,13,\"B6\",\"1967\",\"HPN\",\"PBI\",-7.00,-20.00,0.00,\"\",0.00,157.00,140.00,1056.00,,,,,,\n2015,5,14,\"B6\",\"1967\",\"HPN\",\"PBI\",33.00,28.00,0.00,\"\",0.00,165.00,146.00,1056.00,25.00,0.00,0.00,0.00,3.00,\n2015,5,15,\"B6\",\"1967\",\"HPN\",\"PBI\",0.00,-14.00,0.00,\"\",0.00,156.00,139.00,1056.00,,,,,,\n2015,5,16,\"B6\",\"1967\",\"HPN\",\"PBI\",23.00,0.00,0.00,\"\",0.00,147.00,135.00,1056.00,,,,,,\n2015,5,17,\"B6\",\"1967\",\"HPN\",\"PBI\",34.00,20.00,0.00,\"\",0.00,156.00,139.00,1056.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"B6\",\"1967\",\"HPN\",\"PBI\",10.00,-11.00,0.00,\"\",0.00,149.00,135.00,1056.00,,,,,,\n2015,5,19,\"B6\",\"1967\",\"HPN\",\"PBI\",15.00,10.00,0.00,\"\",0.00,165.00,152.00,1056.00,,,,,,\n2015,5,20,\"B6\",\"1967\",\"HPN\",\"PBI\",26.00,6.00,0.00,\"\",0.00,150.00,136.00,1056.00,,,,,,\n2015,5,21,\"B6\",\"1967\",\"HPN\",\"PBI\",23.00,36.00,0.00,\"\",0.00,183.00,153.00,1056.00,12.00,0.00,13.00,0.00,11.00,\n2015,5,22,\"B6\",\"1967\",\"HPN\",\"PBI\",4.00,3.00,0.00,\"\",0.00,169.00,145.00,1056.00,,,,,,\n2015,5,23,\"B6\",\"1967\",\"HPN\",\"PBI\",-4.00,-23.00,0.00,\"\",0.00,151.00,137.00,1056.00,,,,,,\n2015,5,24,\"B6\",\"1967\",\"HPN\",\"PBI\",-9.00,-31.00,0.00,\"\",0.00,148.00,131.00,1056.00,,,,,,\n2015,5,25,\"B6\",\"1967\",\"HPN\",\"PBI\",-9.00,-16.00,0.00,\"\",0.00,163.00,141.00,1056.00,,,,,,\n2015,5,26,\"B6\",\"1967\",\"HPN\",\"PBI\",-1.00,-17.00,0.00,\"\",0.00,154.00,140.00,1056.00,,,,,,\n2015,5,27,\"B6\",\"1967\",\"HPN\",\"PBI\",2.00,1.00,0.00,\"\",0.00,169.00,147.00,1056.00,,,,,,\n2015,5,28,\"B6\",\"1967\",\"HPN\",\"PBI\",-1.00,-6.00,0.00,\"\",0.00,165.00,142.00,1056.00,,,,,,\n2015,5,29,\"B6\",\"1967\",\"HPN\",\"PBI\",-10.00,-24.00,0.00,\"\",0.00,156.00,136.00,1056.00,,,,,,\n2015,5,30,\"B6\",\"1967\",\"HPN\",\"PBI\",-3.00,-21.00,0.00,\"\",0.00,152.00,140.00,1056.00,,,,,,\n2015,5,31,\"B6\",\"1967\",\"HPN\",\"PBI\",105.00,125.00,0.00,\"\",0.00,190.00,145.00,1056.00,0.00,105.00,20.00,0.00,0.00,\n2015,5,1,\"B6\",\"1968\",\"PBI\",\"HPN\",13.00,5.00,0.00,\"\",0.00,162.00,146.00,1056.00,,,,,,\n2015,5,2,\"B6\",\"1968\",\"PBI\",\"HPN\",11.00,-4.00,0.00,\"\",0.00,155.00,142.00,1056.00,,,,,,\n2015,5,3,\"B6\",\"1968\",\"PBI\",\"HPN\",-1.00,-12.00,0.00,\"\",0.00,159.00,144.00,1056.00,,,,,,\n2015,5,4,\"B6\",\"1968\",\"PBI\",\"HPN\",-3.00,-16.00,0.00,\"\",0.00,157.00,140.00,1056.00,,,,,,\n2015,5,5,\"B6\",\"1968\",\"PBI\",\"HPN\",7.00,-9.00,0.00,\"\",0.00,154.00,137.00,1056.00,,,,,,\n2015,5,6,\"B6\",\"1968\",\"PBI\",\"HPN\",21.00,8.00,0.00,\"\",0.00,157.00,143.00,1056.00,,,,,,\n2015,5,7,\"B6\",\"1968\",\"PBI\",\"HPN\",-1.00,-7.00,0.00,\"\",0.00,164.00,147.00,1056.00,,,,,,\n2015,5,8,\"B6\",\"1968\",\"PBI\",\"HPN\",27.00,18.00,0.00,\"\",0.00,161.00,146.00,1056.00,14.00,0.00,0.00,0.00,4.00,\n2015,5,9,\"B6\",\"1968\",\"PBI\",\"HPN\",8.00,15.00,0.00,\"\",0.00,177.00,160.00,1056.00,8.00,0.00,7.00,0.00,0.00,\n2015,5,10,\"B6\",\"1968\",\"PBI\",\"HPN\",33.00,37.00,0.00,\"\",0.00,174.00,157.00,1056.00,6.00,0.00,4.00,0.00,27.00,\n2015,5,11,\"B6\",\"1968\",\"PBI\",\"HPN\",3.00,-5.00,0.00,\"\",0.00,162.00,146.00,1056.00,,,,,,\n2015,5,12,\"B6\",\"1968\",\"PBI\",\"HPN\",42.00,29.00,0.00,\"\",0.00,157.00,143.00,1056.00,13.00,0.00,0.00,0.00,16.00,\n2015,5,13,\"B6\",\"1968\",\"PBI\",\"HPN\",6.00,-2.00,0.00,\"\",0.00,162.00,148.00,1056.00,,,,,,\n2015,5,14,\"B6\",\"1968\",\"PBI\",\"HPN\",0.00,-7.00,0.00,\"\",0.00,163.00,148.00,1056.00,,,,,,\n2015,5,15,\"B6\",\"1968\",\"PBI\",\"HPN\",9.00,2.00,0.00,\"\",0.00,163.00,144.00,1056.00,,,,,,\n2015,5,16,\"B6\",\"1968\",\"PBI\",\"HPN\",126.00,131.00,0.00,\"\",0.00,175.00,159.00,1056.00,126.00,0.00,5.00,0.00,0.00,\n2015,5,17,\"B6\",\"1968\",\"PBI\",\"HPN\",-3.00,-14.00,0.00,\"\",0.00,159.00,144.00,1056.00,,,,,,\n2015,5,18,\"B6\",\"1968\",\"PBI\",\"HPN\",46.00,49.00,0.00,\"\",0.00,173.00,159.00,1056.00,18.00,0.00,3.00,0.00,28.00,\n2015,5,19,\"B6\",\"1968\",\"PBI\",\"HPN\",25.00,32.00,0.00,\"\",0.00,177.00,152.00,1056.00,11.00,0.00,7.00,0.00,14.00,\n2015,5,20,\"B6\",\"1968\",\"PBI\",\"HPN\",-2.00,-14.00,0.00,\"\",0.00,158.00,145.00,1056.00,,,,,,\n2015,5,21,\"B6\",\"1968\",\"PBI\",\"HPN\",51.00,36.00,0.00,\"\",0.00,155.00,141.00,1056.00,14.00,0.00,0.00,0.00,22.00,\n2015,5,22,\"B6\",\"1968\",\"PBI\",\"HPN\",13.00,3.00,0.00,\"\",0.00,160.00,146.00,1056.00,,,,,,\n2015,5,23,\"B6\",\"1968\",\"PBI\",\"HPN\",8.00,-4.00,0.00,\"\",0.00,158.00,146.00,1056.00,,,,,,\n2015,5,24,\"B6\",\"1968\",\"PBI\",\"HPN\",-3.00,-12.00,0.00,\"\",0.00,161.00,149.00,1056.00,,,,,,\n2015,5,25,\"B6\",\"1968\",\"PBI\",\"HPN\",140.00,131.00,0.00,\"\",0.00,161.00,140.00,1056.00,131.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"B6\",\"1968\",\"PBI\",\"HPN\",-8.00,-23.00,0.00,\"\",0.00,155.00,140.00,1056.00,,,,,,\n2015,5,27,\"B6\",\"1968\",\"PBI\",\"HPN\",3.00,-3.00,0.00,\"\",0.00,164.00,145.00,1056.00,,,,,,\n2015,5,28,\"B6\",\"1968\",\"PBI\",\"HPN\",82.00,72.00,0.00,\"\",0.00,160.00,146.00,1056.00,5.00,0.00,0.00,0.00,67.00,\n2015,5,29,\"B6\",\"1968\",\"PBI\",\"HPN\",-10.00,-18.00,0.00,\"\",0.00,162.00,150.00,1056.00,,,,,,\n2015,5,30,\"B6\",\"1968\",\"PBI\",\"HPN\",-8.00,-12.00,0.00,\"\",0.00,166.00,148.00,1056.00,,,,,,\n2015,5,31,\"B6\",\"1968\",\"PBI\",\"HPN\",-9.00,12.00,0.00,\"\",0.00,191.00,165.00,1056.00,,,,,,\n2015,5,1,\"B6\",\"2001\",\"BUF\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,72.00,54.00,301.00,,,,,,\n2015,5,2,\"B6\",\"2001\",\"BUF\",\"JFK\",-10.00,-26.00,0.00,\"\",0.00,68.00,53.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2001\",\"BUF\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,73.00,55.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2001\",\"BUF\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,78.00,62.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2001\",\"BUF\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,73.00,60.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2001\",\"BUF\",\"JFK\",-7.00,-6.00,0.00,\"\",0.00,85.00,58.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2001\",\"BUF\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,74.00,60.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2001\",\"BUF\",\"JFK\",82.00,103.00,0.00,\"\",0.00,105.00,86.00,301.00,0.00,0.00,103.00,0.00,0.00,\n2015,5,9,\"B6\",\"2001\",\"BUF\",\"JFK\",-1.00,2.00,0.00,\"\",0.00,87.00,74.00,301.00,,,,,,\n2015,5,10,\"B6\",\"2001\",\"BUF\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,78.00,63.00,301.00,,,,,,\n2015,5,11,\"B6\",\"2001\",\"BUF\",\"JFK\",-3.00,17.00,0.00,\"\",0.00,104.00,89.00,301.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,12,\"B6\",\"2001\",\"BUF\",\"JFK\",-8.00,28.00,0.00,\"\",0.00,120.00,102.00,301.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,13,\"B6\",\"2001\",\"BUF\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,71.00,56.00,301.00,,,,,,\n2015,5,14,\"B6\",\"2001\",\"BUF\",\"JFK\",42.00,25.00,0.00,\"\",0.00,67.00,55.00,301.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"B6\",\"2001\",\"BUF\",\"JFK\",-8.00,-9.00,0.00,\"\",0.00,83.00,59.00,301.00,,,,,,\n2015,5,16,\"B6\",\"2001\",\"BUF\",\"JFK\",0.00,1.00,0.00,\"\",0.00,85.00,72.00,301.00,,,,,,\n2015,5,17,\"B6\",\"2001\",\"BUF\",\"JFK\",-2.00,14.00,0.00,\"\",0.00,100.00,68.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2001\",\"BUF\",\"JFK\",-5.00,-4.00,0.00,\"\",0.00,85.00,68.00,301.00,,,,,,\n2015,5,19,\"B6\",\"2001\",\"BUF\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,75.00,63.00,301.00,,,,,,\n2015,5,20,\"B6\",\"2001\",\"BUF\",\"JFK\",-8.00,4.00,0.00,\"\",0.00,96.00,56.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2001\",\"BUF\",\"JFK\",-7.00,3.00,0.00,\"\",0.00,94.00,79.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2001\",\"BUF\",\"JFK\",-10.00,-15.00,0.00,\"\",0.00,79.00,65.00,301.00,,,,,,\n2015,5,23,\"B6\",\"2001\",\"BUF\",\"JFK\",-3.00,-1.00,0.00,\"\",0.00,86.00,70.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2001\",\"BUF\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,67.00,52.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2001\",\"BUF\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,76.00,62.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2001\",\"BUF\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,80.00,65.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2001\",\"BUF\",\"JFK\",-3.00,3.00,0.00,\"\",0.00,90.00,78.00,301.00,,,,,,\n2015,5,28,\"B6\",\"2001\",\"BUF\",\"JFK\",,,1.00,\"C\",0.00,,,301.00,,,,,,\n2015,5,29,\"B6\",\"2001\",\"BUF\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,77.00,62.00,301.00,,,,,,\n2015,5,30,\"B6\",\"2001\",\"BUF\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,77.00,60.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2001\",\"BUF\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,75.00,59.00,301.00,,,,,,\n2015,5,1,\"B6\",\"2002\",\"JFK\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,76.00,51.00,301.00,,,,,,\n2015,5,2,\"B6\",\"2002\",\"JFK\",\"BUF\",-4.00,-8.00,0.00,\"\",0.00,82.00,53.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2002\",\"JFK\",\"BUF\",-9.00,-14.00,0.00,\"\",0.00,81.00,54.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2002\",\"JFK\",\"BUF\",-1.00,-1.00,0.00,\"\",0.00,86.00,52.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2002\",\"JFK\",\"BUF\",-10.00,-26.00,0.00,\"\",0.00,70.00,51.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2002\",\"JFK\",\"BUF\",-6.00,-18.00,0.00,\"\",0.00,74.00,52.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2002\",\"JFK\",\"BUF\",-8.00,-16.00,0.00,\"\",0.00,78.00,55.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2002\",\"JFK\",\"BUF\",30.00,21.00,0.00,\"\",0.00,77.00,54.00,301.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"B6\",\"2002\",\"JFK\",\"BUF\",-3.00,-14.00,0.00,\"\",0.00,75.00,53.00,301.00,,,,,,\n2015,5,10,\"B6\",\"2002\",\"JFK\",\"BUF\",47.00,36.00,0.00,\"\",0.00,75.00,45.00,301.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,11,\"B6\",\"2002\",\"JFK\",\"BUF\",39.00,31.00,0.00,\"\",0.00,78.00,58.00,301.00,8.00,0.00,0.00,0.00,23.00,\n2015,5,12,\"B6\",\"2002\",\"JFK\",\"BUF\",-5.00,1.00,0.00,\"\",0.00,92.00,55.00,301.00,,,,,,\n2015,5,13,\"B6\",\"2002\",\"JFK\",\"BUF\",-5.00,-5.00,0.00,\"\",0.00,86.00,53.00,301.00,,,,,,\n2015,5,14,\"B6\",\"2002\",\"JFK\",\"BUF\",-5.00,-13.00,0.00,\"\",0.00,78.00,50.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2002\",\"JFK\",\"BUF\",-5.00,-17.00,0.00,\"\",0.00,74.00,51.00,301.00,,,,,,\n2015,5,16,\"B6\",\"2002\",\"JFK\",\"BUF\",20.00,9.00,0.00,\"\",0.00,75.00,53.00,301.00,,,,,,\n2015,5,17,\"B6\",\"2002\",\"JFK\",\"BUF\",-7.00,-23.00,0.00,\"\",0.00,70.00,47.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2002\",\"JFK\",\"BUF\",125.00,111.00,0.00,\"\",0.00,72.00,51.00,301.00,0.00,0.00,0.00,0.00,111.00,\n2015,5,19,\"B6\",\"2002\",\"JFK\",\"BUF\",-4.00,3.00,0.00,\"\",0.00,93.00,51.00,301.00,,,,,,\n2015,5,20,\"B6\",\"2002\",\"JFK\",\"BUF\",-4.00,-6.00,0.00,\"\",0.00,84.00,55.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2002\",\"JFK\",\"BUF\",5.00,-7.00,0.00,\"\",0.00,74.00,56.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2002\",\"JFK\",\"BUF\",67.00,58.00,0.00,\"\",0.00,77.00,54.00,301.00,3.00,0.00,0.00,0.00,55.00,\n2015,5,23,\"B6\",\"2002\",\"JFK\",\"BUF\",-12.00,-19.00,0.00,\"\",0.00,79.00,55.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2002\",\"JFK\",\"BUF\",-7.00,-11.00,0.00,\"\",0.00,82.00,53.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2002\",\"JFK\",\"BUF\",-9.00,-23.00,0.00,\"\",0.00,72.00,51.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2002\",\"JFK\",\"BUF\",-9.00,-13.00,0.00,\"\",0.00,82.00,50.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2002\",\"JFK\",\"BUF\",88.00,78.00,0.00,\"\",0.00,76.00,53.00,301.00,78.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"B6\",\"2002\",\"JFK\",\"BUF\",-4.00,-17.00,0.00,\"\",0.00,73.00,49.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2002\",\"JFK\",\"BUF\",-1.00,-9.00,0.00,\"\",0.00,78.00,52.00,301.00,,,,,,\n2015,5,30,\"B6\",\"2002\",\"JFK\",\"BUF\",0.00,-2.00,0.00,\"\",0.00,84.00,53.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2002\",\"JFK\",\"BUF\",,,1.00,\"C\",0.00,,,301.00,,,,,,\n2015,5,1,\"B6\",\"2067\",\"HPN\",\"PBI\",-4.00,-5.00,0.00,\"\",0.00,167.00,152.00,1056.00,,,,,,\n2015,5,2,\"B6\",\"2067\",\"HPN\",\"PBI\",-10.00,-21.00,0.00,\"\",0.00,157.00,144.00,1056.00,,,,,,\n2015,5,3,\"B6\",\"2067\",\"HPN\",\"PBI\",-3.00,-9.00,0.00,\"\",0.00,162.00,144.00,1056.00,,,,,,\n2015,5,4,\"B6\",\"2067\",\"HPN\",\"PBI\",1.00,-2.00,0.00,\"\",0.00,165.00,152.00,1056.00,,,,,,\n2015,5,5,\"B6\",\"2067\",\"HPN\",\"PBI\",-6.00,-17.00,0.00,\"\",0.00,157.00,139.00,1056.00,,,,,,\n2015,5,6,\"B6\",\"2067\",\"HPN\",\"PBI\",-1.00,-11.00,0.00,\"\",0.00,158.00,145.00,1056.00,,,,,,\n2015,5,7,\"B6\",\"2067\",\"HPN\",\"PBI\",38.00,23.00,0.00,\"\",0.00,153.00,136.00,1056.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"B6\",\"2067\",\"HPN\",\"PBI\",208.00,191.00,0.00,\"\",0.00,151.00,140.00,1056.00,191.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"B6\",\"2067\",\"HPN\",\"PBI\",5.00,-8.00,0.00,\"\",0.00,155.00,141.00,1056.00,,,,,,\n2015,5,10,\"B6\",\"2067\",\"HPN\",\"PBI\",353.00,339.00,0.00,\"\",0.00,154.00,141.00,1056.00,324.00,0.00,0.00,0.00,15.00,\n2015,5,11,\"B6\",\"2067\",\"HPN\",\"PBI\",133.00,116.00,0.00,\"\",0.00,151.00,139.00,1056.00,0.00,0.00,0.00,0.00,116.00,\n2015,5,12,\"B6\",\"2067\",\"HPN\",\"PBI\",47.00,36.00,0.00,\"\",0.00,157.00,144.00,1056.00,2.00,0.00,0.00,0.00,34.00,\n2015,5,13,\"B6\",\"2067\",\"HPN\",\"PBI\",-7.00,-30.00,0.00,\"\",0.00,145.00,134.00,1056.00,,,,,,\n2015,5,14,\"B6\",\"2067\",\"HPN\",\"PBI\",5.00,-7.00,0.00,\"\",0.00,156.00,136.00,1056.00,,,,,,\n2015,5,15,\"B6\",\"2067\",\"HPN\",\"PBI\",185.00,167.00,0.00,\"\",0.00,150.00,138.00,1056.00,167.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"B6\",\"2067\",\"HPN\",\"PBI\",8.00,-11.00,0.00,\"\",0.00,149.00,137.00,1056.00,,,,,,\n2015,5,17,\"B6\",\"2067\",\"HPN\",\"PBI\",-8.00,-20.00,0.00,\"\",0.00,156.00,136.00,1056.00,,,,,,\n2015,5,18,\"B6\",\"2067\",\"HPN\",\"PBI\",89.00,71.00,0.00,\"\",0.00,150.00,138.00,1056.00,71.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"B6\",\"2067\",\"HPN\",\"PBI\",-3.00,5.00,0.00,\"\",0.00,176.00,154.00,1056.00,,,,,,\n2015,5,20,\"B6\",\"2067\",\"HPN\",\"PBI\",150.00,130.00,0.00,\"\",0.00,148.00,137.00,1056.00,25.00,0.00,0.00,0.00,105.00,\n2015,5,21,\"B6\",\"2067\",\"HPN\",\"PBI\",-9.00,-2.00,0.00,\"\",0.00,175.00,156.00,1056.00,,,,,,\n2015,5,22,\"B6\",\"2067\",\"HPN\",\"PBI\",-7.00,-11.00,0.00,\"\",0.00,164.00,149.00,1056.00,,,,,,\n2015,5,23,\"B6\",\"2067\",\"HPN\",\"PBI\",-6.00,-27.00,0.00,\"\",0.00,147.00,136.00,1056.00,,,,,,\n2015,5,24,\"B6\",\"2067\",\"HPN\",\"PBI\",-10.00,-24.00,0.00,\"\",0.00,154.00,138.00,1056.00,,,,,,\n2015,5,25,\"B6\",\"2067\",\"HPN\",\"PBI\",-7.00,-1.00,0.00,\"\",0.00,174.00,145.00,1056.00,,,,,,\n2015,5,26,\"B6\",\"2067\",\"HPN\",\"PBI\",-3.00,-13.00,0.00,\"\",0.00,158.00,144.00,1056.00,,,,,,\n2015,5,27,\"B6\",\"2067\",\"HPN\",\"PBI\",-7.00,-6.00,0.00,\"\",0.00,169.00,156.00,1056.00,,,,,,\n2015,5,28,\"B6\",\"2067\",\"HPN\",\"PBI\",-3.00,-17.00,0.00,\"\",0.00,154.00,140.00,1056.00,,,,,,\n2015,5,29,\"B6\",\"2067\",\"HPN\",\"PBI\",-4.00,-31.00,0.00,\"\",0.00,141.00,132.00,1056.00,,,,,,\n2015,5,30,\"B6\",\"2067\",\"HPN\",\"PBI\",-12.00,-31.00,0.00,\"\",0.00,149.00,136.00,1056.00,,,,,,\n2015,5,31,\"B6\",\"2067\",\"HPN\",\"PBI\",4.00,2.00,0.00,\"\",0.00,166.00,143.00,1056.00,,,,,,\n2015,5,1,\"B6\",\"2084\",\"MCO\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,142.00,116.00,944.00,,,,,,\n2015,5,2,\"B6\",\"2084\",\"MCO\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,145.00,122.00,944.00,,,,,,\n2015,5,3,\"B6\",\"2084\",\"MCO\",\"JFK\",-9.00,-25.00,0.00,\"\",0.00,142.00,124.00,944.00,,,,,,\n2015,5,4,\"B6\",\"2084\",\"MCO\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,146.00,125.00,944.00,,,,,,\n2015,5,6,\"B6\",\"2084\",\"MCO\",\"JFK\",-7.00,-29.00,0.00,\"\",0.00,136.00,118.00,944.00,,,,,,\n2015,5,7,\"B6\",\"2084\",\"MCO\",\"JFK\",-6.00,-11.00,0.00,\"\",0.00,153.00,128.00,944.00,,,,,,\n2015,5,8,\"B6\",\"2084\",\"MCO\",\"JFK\",3.00,-1.00,0.00,\"\",0.00,154.00,131.00,944.00,,,,,,\n2015,5,9,\"B6\",\"2084\",\"MCO\",\"JFK\",-8.00,2.00,0.00,\"\",0.00,168.00,141.00,944.00,,,,,,\n2015,5,10,\"B6\",\"2084\",\"MCO\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,146.00,129.00,944.00,,,,,,\n2015,5,11,\"B6\",\"2084\",\"MCO\",\"JFK\",-10.00,-25.00,0.00,\"\",0.00,143.00,123.00,944.00,,,,,,\n2015,5,13,\"B6\",\"2084\",\"MCO\",\"JFK\",-6.00,-30.00,0.00,\"\",0.00,134.00,120.00,944.00,,,,,,\n2015,5,14,\"B6\",\"2084\",\"MCO\",\"JFK\",-8.00,-13.00,0.00,\"\",0.00,153.00,131.00,944.00,,,,,,\n2015,5,15,\"B6\",\"2084\",\"MCO\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,152.00,120.00,944.00,,,,,,\n2015,5,16,\"B6\",\"2084\",\"MCO\",\"JFK\",-7.00,-6.00,0.00,\"\",0.00,159.00,129.00,944.00,,,,,,\n2015,5,17,\"B6\",\"2084\",\"MCO\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,155.00,129.00,944.00,,,,,,\n2015,5,18,\"B6\",\"2084\",\"MCO\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,144.00,130.00,944.00,,,,,,\n2015,5,20,\"B6\",\"2084\",\"MCO\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,151.00,128.00,944.00,,,,,,\n2015,5,21,\"B6\",\"2084\",\"MCO\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,145.00,124.00,944.00,,,,,,\n2015,5,22,\"B6\",\"2084\",\"MCO\",\"JFK\",1.00,-11.00,0.00,\"\",0.00,145.00,117.00,944.00,,,,,,\n2015,5,23,\"B6\",\"2084\",\"MCO\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,146.00,123.00,944.00,,,,,,\n2015,5,24,\"B6\",\"2084\",\"MCO\",\"JFK\",-8.00,-18.00,0.00,\"\",0.00,147.00,125.00,944.00,,,,,,\n2015,5,25,\"B6\",\"2084\",\"MCO\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,138.00,125.00,944.00,,,,,,\n2015,5,27,\"B6\",\"2084\",\"MCO\",\"JFK\",-9.00,-25.00,0.00,\"\",0.00,142.00,123.00,944.00,,,,,,\n2015,5,28,\"B6\",\"2084\",\"MCO\",\"JFK\",70.00,50.00,0.00,\"\",0.00,138.00,117.00,944.00,0.00,0.00,0.00,0.00,50.00,\n2015,5,29,\"B6\",\"2084\",\"MCO\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,151.00,131.00,944.00,,,,,,\n2015,5,30,\"B6\",\"2084\",\"MCO\",\"JFK\",-8.00,-6.00,0.00,\"\",0.00,160.00,136.00,944.00,,,,,,\n2015,5,31,\"B6\",\"2084\",\"MCO\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,144.00,127.00,944.00,,,,,,\n2015,5,2,\"B6\",\"2101\",\"BUF\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,75.00,60.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2101\",\"BUF\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,69.00,51.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2101\",\"BUF\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,73.00,54.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2101\",\"BUF\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,74.00,57.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2101\",\"BUF\",\"JFK\",-10.00,-26.00,0.00,\"\",0.00,70.00,51.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2101\",\"BUF\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,69.00,57.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2101\",\"BUF\",\"JFK\",17.00,43.00,0.00,\"\",0.00,112.00,86.00,301.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,9,\"B6\",\"2101\",\"BUF\",\"JFK\",-6.00,30.00,0.00,\"\",0.00,122.00,64.00,301.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,10,\"B6\",\"2101\",\"BUF\",\"JFK\",92.00,75.00,0.00,\"\",0.00,69.00,55.00,301.00,75.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"B6\",\"2101\",\"BUF\",\"JFK\",19.00,13.00,0.00,\"\",0.00,80.00,58.00,301.00,,,,,,\n2015,5,12,\"B6\",\"2101\",\"BUF\",\"JFK\",-6.00,12.00,0.00,\"\",0.00,104.00,86.00,301.00,,,,,,\n2015,5,13,\"B6\",\"2101\",\"BUF\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,71.00,53.00,301.00,,,,,,\n2015,5,14,\"B6\",\"2101\",\"BUF\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,67.00,52.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2101\",\"BUF\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,67.00,50.00,301.00,,,,,,\n2015,5,16,\"B6\",\"2101\",\"BUF\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,68.00,54.00,301.00,,,,,,\n2015,5,17,\"B6\",\"2101\",\"BUF\",\"JFK\",1.00,-3.00,0.00,\"\",0.00,82.00,55.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2101\",\"BUF\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,75.00,55.00,301.00,,,,,,\n2015,5,19,\"B6\",\"2101\",\"BUF\",\"JFK\",-2.00,21.00,0.00,\"\",0.00,109.00,60.00,301.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,20,\"B6\",\"2101\",\"BUF\",\"JFK\",-9.00,-13.00,0.00,\"\",0.00,82.00,55.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2101\",\"BUF\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,68.00,54.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2101\",\"BUF\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,77.00,56.00,301.00,,,,,,\n2015,5,23,\"B6\",\"2101\",\"BUF\",\"JFK\",12.00,0.00,0.00,\"\",0.00,74.00,56.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2101\",\"BUF\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,69.00,49.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2101\",\"BUF\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,69.00,56.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2101\",\"BUF\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,70.00,56.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2101\",\"BUF\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,75.00,61.00,301.00,,,,,,\n2015,5,28,\"B6\",\"2101\",\"BUF\",\"JFK\",-5.00,-3.00,0.00,\"\",0.00,88.00,72.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2101\",\"BUF\",\"JFK\",-11.00,-11.00,0.00,\"\",0.00,86.00,68.00,301.00,,,,,,\n2015,5,30,\"B6\",\"2101\",\"BUF\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,71.00,55.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2101\",\"BUF\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,71.00,58.00,301.00,,,,,,\n2015,5,1,\"B6\",\"2168\",\"PBI\",\"HPN\",-1.00,-14.00,0.00,\"\",0.00,155.00,140.00,1056.00,,,,,,\n2015,5,2,\"B6\",\"2168\",\"PBI\",\"HPN\",-5.00,-10.00,0.00,\"\",0.00,163.00,148.00,1056.00,,,,,,\n2015,5,3,\"B6\",\"2168\",\"PBI\",\"HPN\",20.00,13.00,0.00,\"\",0.00,161.00,143.00,1056.00,,,,,,\n2015,5,4,\"B6\",\"2168\",\"PBI\",\"HPN\",8.00,-6.00,0.00,\"\",0.00,154.00,141.00,1056.00,,,,,,\n2015,5,5,\"B6\",\"2168\",\"PBI\",\"HPN\",2.00,-11.00,0.00,\"\",0.00,155.00,141.00,1056.00,,,,,,\n2015,5,6,\"B6\",\"2168\",\"PBI\",\"HPN\",-6.00,-17.00,0.00,\"\",0.00,157.00,141.00,1056.00,,,,,,\n2015,5,7,\"B6\",\"2168\",\"PBI\",\"HPN\",11.00,5.00,0.00,\"\",0.00,162.00,148.00,1056.00,,,,,,\n2015,5,8,\"B6\",\"2168\",\"PBI\",\"HPN\",4.00,10.00,0.00,\"\",0.00,174.00,159.00,1056.00,,,,,,\n2015,5,9,\"B6\",\"2168\",\"PBI\",\"HPN\",23.00,,0.00,\"\",1.00,,,1056.00,,,,,,\n2015,5,10,\"B6\",\"2168\",\"PBI\",\"HPN\",27.00,13.00,0.00,\"\",0.00,154.00,140.00,1056.00,,,,,,\n2015,5,11,\"B6\",\"2168\",\"PBI\",\"HPN\",-5.00,-14.00,0.00,\"\",0.00,159.00,145.00,1056.00,,,,,,\n2015,5,12,\"B6\",\"2168\",\"PBI\",\"HPN\",-7.00,-21.00,0.00,\"\",0.00,154.00,141.00,1056.00,,,,,,\n2015,5,13,\"B6\",\"2168\",\"PBI\",\"HPN\",-17.00,-23.00,0.00,\"\",0.00,162.00,149.00,1056.00,,,,,,\n2015,5,14,\"B6\",\"2168\",\"PBI\",\"HPN\",4.00,3.00,0.00,\"\",0.00,167.00,150.00,1056.00,,,,,,\n2015,5,15,\"B6\",\"2168\",\"PBI\",\"HPN\",11.00,26.00,0.00,\"\",0.00,183.00,151.00,1056.00,2.00,0.00,15.00,0.00,9.00,\n2015,5,16,\"B6\",\"2168\",\"PBI\",\"HPN\",-2.00,-3.00,0.00,\"\",0.00,167.00,151.00,1056.00,,,,,,\n2015,5,17,\"B6\",\"2168\",\"PBI\",\"HPN\",15.00,7.00,0.00,\"\",0.00,160.00,144.00,1056.00,,,,,,\n2015,5,18,\"B6\",\"2168\",\"PBI\",\"HPN\",7.00,8.00,0.00,\"\",0.00,169.00,154.00,1056.00,,,,,,\n2015,5,19,\"B6\",\"2168\",\"PBI\",\"HPN\",79.00,71.00,0.00,\"\",0.00,160.00,147.00,1056.00,31.00,0.00,0.00,0.00,40.00,\n2015,5,20,\"B6\",\"2168\",\"PBI\",\"HPN\",-3.00,-13.00,0.00,\"\",0.00,158.00,144.00,1056.00,,,,,,\n2015,5,21,\"B6\",\"2168\",\"PBI\",\"HPN\",21.00,9.00,0.00,\"\",0.00,156.00,138.00,1056.00,,,,,,\n2015,5,22,\"B6\",\"2168\",\"PBI\",\"HPN\",3.00,-10.00,0.00,\"\",0.00,155.00,140.00,1056.00,,,,,,\n2015,5,23,\"B6\",\"2168\",\"PBI\",\"HPN\",-10.00,-6.00,0.00,\"\",0.00,172.00,156.00,1056.00,,,,,,\n2015,5,24,\"B6\",\"2168\",\"PBI\",\"HPN\",-9.00,-16.00,0.00,\"\",0.00,161.00,148.00,1056.00,,,,,,\n2015,5,25,\"B6\",\"2168\",\"PBI\",\"HPN\",-7.00,-18.00,0.00,\"\",0.00,157.00,143.00,1056.00,,,,,,\n2015,5,26,\"B6\",\"2168\",\"PBI\",\"HPN\",-14.00,-24.00,0.00,\"\",0.00,158.00,143.00,1056.00,,,,,,\n2015,5,27,\"B6\",\"2168\",\"PBI\",\"HPN\",21.00,15.00,0.00,\"\",0.00,162.00,144.00,1056.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"B6\",\"2168\",\"PBI\",\"HPN\",-10.00,-19.00,0.00,\"\",0.00,159.00,145.00,1056.00,,,,,,\n2015,5,29,\"B6\",\"2168\",\"PBI\",\"HPN\",-10.00,-16.00,0.00,\"\",0.00,162.00,147.00,1056.00,,,,,,\n2015,5,30,\"B6\",\"2168\",\"PBI\",\"HPN\",39.00,25.00,0.00,\"\",0.00,154.00,141.00,1056.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"B6\",\"2168\",\"PBI\",\"HPN\",57.00,53.00,0.00,\"\",0.00,164.00,148.00,1056.00,16.00,0.00,0.00,0.00,37.00,\n2015,5,1,\"B6\",\"2201\",\"BUF\",\"JFK\",-14.00,-22.00,0.00,\"\",0.00,74.00,61.00,301.00,,,,,,\n2015,5,2,\"B6\",\"2201\",\"BUF\",\"JFK\",-10.00,-18.00,0.00,\"\",0.00,74.00,60.00,301.00,,,,,,\n2015,5,3,\"B6\",\"2201\",\"BUF\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,73.00,56.00,301.00,,,,,,\n2015,5,4,\"B6\",\"2201\",\"BUF\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,70.00,57.00,301.00,,,,,,\n2015,5,5,\"B6\",\"2201\",\"BUF\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,72.00,55.00,301.00,,,,,,\n2015,5,6,\"B6\",\"2201\",\"BUF\",\"JFK\",-12.00,-26.00,0.00,\"\",0.00,68.00,53.00,301.00,,,,,,\n2015,5,7,\"B6\",\"2201\",\"BUF\",\"JFK\",-9.00,-15.00,0.00,\"\",0.00,76.00,61.00,301.00,,,,,,\n2015,5,8,\"B6\",\"2201\",\"BUF\",\"JFK\",84.00,80.00,0.00,\"\",0.00,78.00,65.00,301.00,0.00,0.00,80.00,0.00,0.00,\n2015,5,9,\"B6\",\"2201\",\"BUF\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,80.00,63.00,301.00,,,,,,\n2015,5,10,\"B6\",\"2201\",\"BUF\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,66.00,53.00,301.00,,,,,,\n2015,5,11,\"B6\",\"2201\",\"BUF\",\"JFK\",-8.00,-17.00,0.00,\"\",0.00,73.00,57.00,301.00,,,,,,\n2015,5,12,\"B6\",\"2201\",\"BUF\",\"JFK\",22.00,12.00,0.00,\"\",0.00,72.00,57.00,301.00,,,,,,\n2015,5,13,\"B6\",\"2201\",\"BUF\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,74.00,55.00,301.00,,,,,,\n2015,5,14,\"B6\",\"2201\",\"BUF\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,68.00,54.00,301.00,,,,,,\n2015,5,15,\"B6\",\"2201\",\"BUF\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,70.00,54.00,301.00,,,,,,\n2015,5,16,\"B6\",\"2201\",\"BUF\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,71.00,55.00,301.00,,,,,,\n2015,5,17,\"B6\",\"2201\",\"BUF\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,78.00,61.00,301.00,,,,,,\n2015,5,18,\"B6\",\"2201\",\"BUF\",\"JFK\",-6.00,-11.00,0.00,\"\",0.00,77.00,62.00,301.00,,,,,,\n2015,5,19,\"B6\",\"2201\",\"BUF\",\"JFK\",-4.00,3.00,0.00,\"\",0.00,89.00,73.00,301.00,,,,,,\n2015,5,20,\"B6\",\"2201\",\"BUF\",\"JFK\",-15.00,-28.00,0.00,\"\",0.00,69.00,52.00,301.00,,,,,,\n2015,5,21,\"B6\",\"2201\",\"BUF\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,70.00,56.00,301.00,,,,,,\n2015,5,22,\"B6\",\"2201\",\"BUF\",\"JFK\",-13.00,-32.00,0.00,\"\",0.00,63.00,52.00,301.00,,,,,,\n2015,5,23,\"B6\",\"2201\",\"BUF\",\"JFK\",6.00,-3.00,0.00,\"\",0.00,73.00,58.00,301.00,,,,,,\n2015,5,24,\"B6\",\"2201\",\"BUF\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,64.00,53.00,301.00,,,,,,\n2015,5,25,\"B6\",\"2201\",\"BUF\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,67.00,53.00,301.00,,,,,,\n2015,5,26,\"B6\",\"2201\",\"BUF\",\"JFK\",-9.00,-19.00,0.00,\"\",0.00,72.00,60.00,301.00,,,,,,\n2015,5,27,\"B6\",\"2201\",\"BUF\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,76.00,63.00,301.00,,,,,,\n2015,5,28,\"B6\",\"2201\",\"BUF\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,73.00,59.00,301.00,,,,,,\n2015,5,29,\"B6\",\"2201\",\"BUF\",\"JFK\",2.00,-7.00,0.00,\"\",0.00,73.00,57.00,301.00,,,,,,\n2015,5,30,\"B6\",\"2201\",\"BUF\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,70.00,59.00,301.00,,,,,,\n2015,5,31,\"B6\",\"2201\",\"BUF\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,74.00,56.00,301.00,,,,,,\n2015,5,6,\"DL\",\"208\",\"JFK\",\"MCO\",-6.00,-24.00,0.00,\"\",0.00,169.00,132.00,944.00,,,,,,\n2015,5,6,\"DL\",\"221\",\"LGA\",\"ATL\",0.00,14.00,0.00,\"\",0.00,179.00,121.00,762.00,,,,,,\n2015,5,6,\"DL\",\"326\",\"SJU\",\"JFK\",-8.00,-26.00,0.00,\"\",0.00,222.00,202.00,1598.00,,,,,,\n2015,5,6,\"DL\",\"332\",\"SJU\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,227.00,205.00,1598.00,,,,,,\n2015,5,6,\"DL\",\"333\",\"MSP\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,147.00,129.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"342\",\"SFO\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,334.00,304.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"347\",\"LGA\",\"ATL\",0.00,4.00,0.00,\"\",0.00,162.00,109.00,762.00,,,,,,\n2015,5,6,\"DL\",\"348\",\"SJU\",\"JFK\",-12.00,-21.00,0.00,\"\",0.00,233.00,210.00,1598.00,,,,,,\n2015,5,6,\"DL\",\"350\",\"LGA\",\"ATL\",-1.00,-6.00,0.00,\"\",0.00,148.00,111.00,762.00,,,,,,\n2015,5,6,\"DL\",\"400\",\"PDX\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,316.00,292.00,2454.00,,,,,,\n2015,5,6,\"DL\",\"401\",\"AUS\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,223.00,204.00,1521.00,,,,,,\n2015,5,6,\"DL\",\"403\",\"PDX\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,324.00,304.00,2454.00,,,,,,\n2015,5,6,\"DL\",\"404\",\"JFK\",\"ATL\",0.00,-22.00,0.00,\"\",0.00,147.00,110.00,760.00,,,,,,\n2015,5,6,\"DL\",\"405\",\"JFK\",\"TPA\",-6.00,-20.00,0.00,\"\",0.00,157.00,144.00,1005.00,,,,,,\n2015,5,6,\"DL\",\"407\",\"MCO\",\"JFK\",8.00,-7.00,0.00,\"\",0.00,154.00,125.00,944.00,,,,,,\n2015,5,6,\"DL\",\"409\",\"JFK\",\"SJU\",-5.00,-22.00,0.00,\"\",0.00,230.00,200.00,1598.00,,,,,,\n2015,5,6,\"DL\",\"410\",\"MSP\",\"JFK\",19.00,19.00,0.00,\"\",0.00,167.00,132.00,1029.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"DL\",\"412\",\"LAX\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,324.00,299.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"414\",\"SFO\",\"JFK\",-7.00,-4.00,0.00,\"\",0.00,348.00,322.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"415\",\"JFK\",\"SFO\",0.00,-17.00,0.00,\"\",0.00,391.00,345.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"417\",\"JFK\",\"SEA\",5.00,-26.00,0.00,\"\",0.00,351.00,310.00,2422.00,,,,,,\n2015,5,6,\"DL\",\"418\",\"SEA\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,324.00,295.00,2422.00,,,,,,\n2015,5,6,\"DL\",\"419\",\"JFK\",\"SEA\",-3.00,-22.00,0.00,\"\",0.00,360.00,308.00,2422.00,,,,,,\n2015,5,6,\"DL\",\"420\",\"JFK\",\"LAX\",0.00,-13.00,0.00,\"\",0.00,385.00,325.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"422\",\"JFK\",\"LAX\",-1.00,-7.00,0.00,\"\",0.00,374.00,317.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"423\",\"JFK\",\"LAX\",-1.00,-28.00,0.00,\"\",0.00,346.00,323.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"424\",\"JFK\",\"LAX\",0.00,-5.00,0.00,\"\",0.00,365.00,312.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"426\",\"JFK\",\"MCO\",-5.00,-9.00,0.00,\"\",0.00,168.00,145.00,944.00,,,,,,\n2015,5,6,\"DL\",\"427\",\"JFK\",\"LAX\",55.00,-3.00,0.00,\"\",0.00,330.00,299.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"430\",\"JFK\",\"SFO\",-3.00,-51.00,0.00,\"\",0.00,336.00,315.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"431\",\"JFK\",\"SFO\",-3.00,-32.00,0.00,\"\",0.00,380.00,337.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"433\",\"JFK\",\"CHS\",-2.00,-8.00,0.00,\"\",0.00,130.00,89.00,636.00,,,,,,\n2015,5,6,\"DL\",\"434\",\"JFK\",\"SFO\",0.00,-25.00,0.00,\"\",0.00,379.00,327.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"435\",\"JFK\",\"SFO\",-1.00,-27.00,0.00,\"\",0.00,378.00,346.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"436\",\"JFK\",\"LAS\",-6.00,-12.00,0.00,\"\",0.00,344.00,290.00,2248.00,,,,,,\n2015,5,6,\"DL\",\"437\",\"JFK\",\"BOS\",-3.00,-25.00,0.00,\"\",0.00,55.00,34.00,187.00,,,,,,\n2015,5,6,\"DL\",\"438\",\"JFK\",\"MCO\",-8.00,-15.00,0.00,\"\",0.00,161.00,139.00,944.00,,,,,,\n2015,5,6,\"DL\",\"439\",\"JFK\",\"MSP\",-8.00,-23.00,0.00,\"\",0.00,177.00,154.00,1029.00,,,,,,\n2015,5,6,\"DL\",\"440\",\"JFK\",\"SJU\",-11.00,-13.00,0.00,\"\",0.00,232.00,205.00,1598.00,,,,,,\n2015,5,6,\"DL\",\"441\",\"JFK\",\"MIA\",-5.00,0.00,0.00,\"\",0.00,186.00,160.00,1089.00,,,,,,\n2015,5,6,\"DL\",\"442\",\"JFK\",\"PIT\",-5.00,-29.00,0.00,\"\",0.00,93.00,66.00,340.00,,,,,,\n2015,5,6,\"DL\",\"443\",\"JFK\",\"LAS\",-5.00,-15.00,0.00,\"\",0.00,344.00,305.00,2248.00,,,,,,\n2015,5,6,\"DL\",\"444\",\"SLC\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,275.00,246.00,1990.00,,,,,,\n2015,5,6,\"DL\",\"445\",\"JFK\",\"BOS\",-4.00,-23.00,0.00,\"\",0.00,74.00,41.00,187.00,,,,,,\n2015,5,6,\"DL\",\"447\",\"JFK\",\"LAX\",5.00,-27.00,0.00,\"\",0.00,358.00,321.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"448\",\"JFK\",\"SEA\",-5.00,-15.00,0.00,\"\",0.00,350.00,315.00,2422.00,,,,,,\n2015,5,6,\"DL\",\"449\",\"JFK\",\"AUS\",-7.00,-28.00,0.00,\"\",0.00,243.00,201.00,1521.00,,,,,,\n2015,5,6,\"DL\",\"453\",\"JFK\",\"CHS\",-7.00,5.00,0.00,\"\",0.00,151.00,92.00,636.00,,,,,,\n2015,5,6,\"DL\",\"454\",\"JFK\",\"STT\",-9.00,-9.00,0.00,\"\",0.00,246.00,203.00,1623.00,,,,,,\n2015,5,6,\"DL\",\"455\",\"JFK\",\"SAN\",-2.00,-27.00,0.00,\"\",0.00,353.00,314.00,2446.00,,,,,,\n2015,5,6,\"DL\",\"456\",\"JFK\",\"SEA\",-5.00,-21.00,0.00,\"\",0.00,347.00,316.00,2422.00,,,,,,\n2015,5,6,\"DL\",\"458\",\"JFK\",\"LAS\",-5.00,-28.00,0.00,\"\",0.00,330.00,290.00,2248.00,,,,,,\n2015,5,6,\"DL\",\"459\",\"JFK\",\"SAN\",-8.00,-26.00,0.00,\"\",0.00,357.00,315.00,2446.00,,,,,,\n2015,5,6,\"DL\",\"460\",\"JFK\",\"SLC\",-11.00,-29.00,0.00,\"\",0.00,307.00,259.00,1990.00,,,,,,\n2015,5,6,\"DL\",\"462\",\"JFK\",\"PDX\",1.00,-33.00,0.00,\"\",0.00,344.00,303.00,2454.00,,,,,,\n2015,5,6,\"DL\",\"463\",\"JFK\",\"LAS\",-6.00,-53.00,0.00,\"\",0.00,309.00,276.00,2248.00,,,,,,\n2015,5,6,\"DL\",\"465\",\"JFK\",\"ATL\",-2.00,-27.00,0.00,\"\",0.00,127.00,103.00,760.00,,,,,,\n2015,5,6,\"DL\",\"466\",\"SLC\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,260.00,239.00,1990.00,,,,,,\n2015,5,6,\"DL\",\"468\",\"SFO\",\"JFK\",-5.00,-4.00,0.00,\"\",0.00,350.00,314.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"469\",\"JFK\",\"SFO\",-8.00,-46.00,0.00,\"\",0.00,352.00,325.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"472\",\"JFK\",\"LAX\",-2.00,-27.00,0.00,\"\",0.00,360.00,316.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"476\",\"LAX\",\"JFK\",-1.00,0.00,0.00,\"\",0.00,336.00,303.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"477\",\"JFK\",\"LAX\",13.00,-23.00,0.00,\"\",0.00,359.00,318.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"478\",\"ATL\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,135.00,99.00,760.00,,,,,,\n2015,5,6,\"DL\",\"480\",\"JFK\",\"SJU\",-6.00,-1.00,0.00,\"\",0.00,243.00,203.00,1598.00,,,,,,\n2015,5,6,\"DL\",\"482\",\"JFK\",\"AUS\",-4.00,-33.00,0.00,\"\",0.00,235.00,202.00,1521.00,,,,,,\n2015,5,6,\"DL\",\"486\",\"JFK\",\"LAS\",-2.00,-25.00,0.00,\"\",0.00,309.00,290.00,2248.00,,,,,,\n2015,5,6,\"DL\",\"488\",\"JFK\",\"SJU\",-6.00,-7.00,0.00,\"\",0.00,226.00,201.00,1598.00,,,,,,\n2015,5,6,\"DL\",\"491\",\"JFK\",\"FLL\",-15.00,-11.00,0.00,\"\",0.00,188.00,164.00,1069.00,,,,,,\n2015,5,6,\"DL\",\"492\",\"JFK\",\"SJU\",-3.00,-30.00,0.00,\"\",0.00,215.00,199.00,1598.00,,,,,,\n2015,5,6,\"DL\",\"494\",\"JFK\",\"SLC\",-1.00,-29.00,0.00,\"\",0.00,277.00,256.00,1990.00,,,,,,\n2015,5,6,\"DL\",\"495\",\"JFK\",\"ATL\",-4.00,-9.00,0.00,\"\",0.00,164.00,108.00,760.00,,,,,,\n2015,5,6,\"DL\",\"496\",\"JFK\",\"BOS\",-6.00,-8.00,0.00,\"\",0.00,81.00,36.00,187.00,,,,,,\n2015,5,6,\"DL\",\"497\",\"JFK\",\"ATL\",0.00,-18.00,0.00,\"\",0.00,135.00,107.00,760.00,,,,,,\n2015,5,6,\"DL\",\"498\",\"JFK\",\"SFO\",-2.00,-42.00,0.00,\"\",0.00,368.00,332.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"499\",\"JFK\",\"SLC\",-4.00,-46.00,0.00,\"\",0.00,268.00,252.00,1990.00,,,,,,\n2015,5,6,\"DL\",\"511\",\"SJU\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,236.00,195.00,1598.00,,,,,,\n2015,5,6,\"DL\",\"527\",\"RSW\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,156.00,133.00,1074.00,,,,,,\n2015,5,6,\"DL\",\"528\",\"LGA\",\"MSP\",-4.00,12.00,0.00,\"\",0.00,201.00,153.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"541\",\"LAS\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,289.00,270.00,2248.00,,,,,,\n2015,5,6,\"DL\",\"544\",\"ALB\",\"ATL\",10.00,-5.00,0.00,\"\",0.00,140.00,123.00,853.00,,,,,,\n2015,5,6,\"DL\",\"582\",\"DTW\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,96.00,75.00,502.00,,,,,,\n2015,5,6,\"DL\",\"583\",\"LGA\",\"DTW\",-2.00,3.00,0.00,\"\",0.00,119.00,88.00,502.00,,,,,,\n2015,5,6,\"DL\",\"662\",\"BUF\",\"MSP\",-3.00,-17.00,0.00,\"\",0.00,130.00,115.00,735.00,,,,,,\n2015,5,6,\"DL\",\"664\",\"TPA\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,159.00,134.00,1010.00,,,,,,\n2015,5,6,\"DL\",\"665\",\"ATL\",\"ALB\",-2.00,-6.00,0.00,\"\",0.00,136.00,118.00,853.00,,,,,,\n2015,5,6,\"DL\",\"665\",\"ALB\",\"ATL\",11.00,-11.00,0.00,\"\",0.00,130.00,116.00,853.00,,,,,,\n2015,5,6,\"DL\",\"676\",\"STT\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,232.00,204.00,1623.00,,,,,,\n2015,5,6,\"DL\",\"714\",\"DTW\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,94.00,72.00,502.00,,,,,,\n2015,5,6,\"DL\",\"723\",\"ATL\",\"BUF\",-5.00,-21.00,0.00,\"\",0.00,111.00,97.00,712.00,,,,,,\n2015,5,6,\"DL\",\"723\",\"BUF\",\"ATL\",-6.00,-14.00,0.00,\"\",0.00,123.00,99.00,712.00,,,,,,\n2015,5,6,\"DL\",\"725\",\"ATL\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,127.00,105.00,762.00,,,,,,\n2015,5,6,\"DL\",\"729\",\"LAS\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,295.00,275.00,2248.00,,,,,,\n2015,5,6,\"DL\",\"731\",\"LGA\",\"DTW\",-1.00,4.00,0.00,\"\",0.00,119.00,90.00,502.00,,,,,,\n2015,5,6,\"DL\",\"739\",\"BOS\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,73.00,38.00,187.00,,,,,,\n2015,5,6,\"DL\",\"750\",\"BOS\",\"JFK\",-8.00,-17.00,0.00,\"\",0.00,71.00,41.00,187.00,,,,,,\n2015,5,6,\"DL\",\"763\",\"BOS\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,81.00,42.00,187.00,,,,,,\n2015,5,6,\"DL\",\"772\",\"PBI\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,158.00,140.00,1035.00,,,,,,\n2015,5,6,\"DL\",\"781\",\"LGA\",\"ATL\",-6.00,-4.00,0.00,\"\",0.00,164.00,109.00,762.00,,,,,,\n2015,5,6,\"DL\",\"782\",\"MIA\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,172.00,142.00,1089.00,,,,,,\n2015,5,6,\"DL\",\"787\",\"MCO\",\"JFK\",90.00,71.00,0.00,\"\",0.00,147.00,113.00,944.00,2.00,0.00,0.00,0.00,69.00,\n2015,5,6,\"DL\",\"789\",\"MIA\",\"LGA\",51.00,40.00,0.00,\"\",0.00,177.00,148.00,1096.00,0.00,0.00,0.00,0.00,40.00,\n2015,5,6,\"DL\",\"791\",\"LAX\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,322.00,293.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"792\",\"PBI\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,156.00,139.00,1028.00,,,,,,\n2015,5,6,\"DL\",\"793\",\"BOS\",\"JFK\",-12.00,-16.00,0.00,\"\",0.00,90.00,55.00,187.00,,,,,,\n2015,5,6,\"DL\",\"802\",\"ATL\",\"LGA\",7.00,-15.00,0.00,\"\",0.00,123.00,103.00,762.00,,,,,,\n2015,5,6,\"DL\",\"804\",\"LGA\",\"MSP\",-5.00,-11.00,0.00,\"\",0.00,188.00,148.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"856\",\"SAN\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,323.00,300.00,2446.00,,,,,,\n2015,5,6,\"DL\",\"871\",\"MSP\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,150.00,131.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"874\",\"LGA\",\"MIA\",-4.00,0.00,0.00,\"\",0.00,209.00,154.00,1096.00,,,,,,\n2015,5,6,\"DL\",\"878\",\"RSW\",\"LGA\",60.00,43.00,0.00,\"\",0.00,155.00,133.00,1080.00,43.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"DL\",\"884\",\"LGA\",\"DEN\",-6.00,31.00,0.00,\"\",0.00,311.00,243.00,1620.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,6,\"DL\",\"889\",\"MSP\",\"LGA\",-7.00,-7.00,0.00,\"\",0.00,161.00,132.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"904\",\"LGA\",\"ATL\",-5.00,3.00,0.00,\"\",0.00,157.00,112.00,762.00,,,,,,\n2015,5,6,\"DL\",\"906\",\"ATL\",\"LGA\",-3.00,-25.00,0.00,\"\",0.00,123.00,105.00,762.00,,,,,,\n2015,5,6,\"DL\",\"909\",\"LGA\",\"MIA\",46.00,55.00,0.00,\"\",0.00,203.00,150.00,1096.00,14.00,0.00,9.00,0.00,32.00,\n2015,5,6,\"DL\",\"910\",\"MCO\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,155.00,126.00,950.00,,,,,,\n2015,5,6,\"DL\",\"928\",\"DEN\",\"LGA\",-6.00,-32.00,0.00,\"\",0.00,210.00,195.00,1620.00,,,,,,\n2015,5,6,\"DL\",\"939\",\"MCO\",\"LGA\",-10.00,-26.00,0.00,\"\",0.00,147.00,124.00,950.00,,,,,,\n2015,5,6,\"DL\",\"964\",\"LGA\",\"ATL\",-7.00,-16.00,0.00,\"\",0.00,137.00,104.00,762.00,,,,,,\n2015,5,6,\"DL\",\"965\",\"MCO\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,143.00,125.00,950.00,,,,,,\n2015,5,6,\"DL\",\"971\",\"LGA\",\"DEN\",-2.00,-16.00,0.00,\"\",0.00,253.00,210.00,1620.00,,,,,,\n2015,5,6,\"DL\",\"986\",\"ATL\",\"LGA\",-2.00,6.00,0.00,\"\",0.00,141.00,115.00,762.00,,,,,,\n2015,5,6,\"DL\",\"997\",\"DTW\",\"LGA\",-8.00,-2.00,0.00,\"\",0.00,110.00,78.00,502.00,,,,,,\n2015,5,6,\"DL\",\"1088\",\"FLL\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,166.00,148.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"1109\",\"SEA\",\"JFK\",-5.00,-7.00,0.00,\"\",0.00,333.00,305.00,2422.00,,,,,,\n2015,5,6,\"DL\",\"1111\",\"ATL\",\"ROC\",10.00,1.00,0.00,\"\",0.00,121.00,96.00,749.00,,,,,,\n2015,5,6,\"DL\",\"1121\",\"PBI\",\"LGA\",3.00,-10.00,0.00,\"\",0.00,160.00,138.00,1035.00,,,,,,\n2015,5,6,\"DL\",\"1131\",\"LGA\",\"FLL\",-1.00,-15.00,0.00,\"\",0.00,178.00,154.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"1145\",\"LGA\",\"DTW\",-1.00,0.00,0.00,\"\",0.00,125.00,84.00,502.00,,,,,,\n2015,5,4,\"DL\",\"1841\",\"SJU\",\"JFK\",1.00,-32.00,0.00,\"\",0.00,214.00,197.00,1598.00,,,,,,\n2015,5,4,\"DL\",\"1848\",\"DTW\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,101.00,77.00,502.00,,,,,,\n2015,5,4,\"DL\",\"1849\",\"LGA\",\"ATL\",-7.00,-27.00,0.00,\"\",0.00,138.00,105.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1851\",\"CHS\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,116.00,94.00,636.00,,,,,,\n2015,5,4,\"DL\",\"1875\",\"LGA\",\"TPA\",-3.00,-22.00,0.00,\"\",0.00,161.00,139.00,1010.00,,,,,,\n2015,5,4,\"DL\",\"1879\",\"LGA\",\"FLL\",-2.00,-13.00,0.00,\"\",0.00,176.00,156.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"1885\",\"LGA\",\"MCO\",-4.00,-14.00,0.00,\"\",0.00,170.00,131.00,950.00,,,,,,\n2015,5,4,\"DL\",\"1886\",\"ATL\",\"LGA\",-2.00,-23.00,0.00,\"\",0.00,129.00,103.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1897\",\"LGA\",\"MCO\",-7.00,-21.00,0.00,\"\",0.00,160.00,132.00,950.00,,,,,,\n2015,5,4,\"DL\",\"1902\",\"LGA\",\"PBI\",-4.00,-21.00,0.00,\"\",0.00,167.00,149.00,1035.00,,,,,,\n2015,5,4,\"DL\",\"1917\",\"MIA\",\"LGA\",25.00,9.00,0.00,\"\",0.00,168.00,141.00,1096.00,,,,,,\n2015,5,4,\"DL\",\"1919\",\"LGA\",\"MSP\",1.00,-14.00,0.00,\"\",0.00,167.00,146.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"1930\",\"LGA\",\"MIA\",-3.00,-25.00,0.00,\"\",0.00,176.00,148.00,1096.00,,,,,,\n2015,5,4,\"DL\",\"1935\",\"LGA\",\"TPA\",-3.00,-15.00,0.00,\"\",0.00,170.00,139.00,1010.00,,,,,,\n2015,5,4,\"DL\",\"1947\",\"FLL\",\"JFK\",-8.00,1.00,0.00,\"\",0.00,193.00,166.00,1069.00,,,,,,\n2015,5,4,\"DL\",\"1948\",\"DTW\",\"LGA\",-1.00,7.00,0.00,\"\",0.00,115.00,82.00,502.00,,,,,,\n2015,5,4,\"DL\",\"1949\",\"TPA\",\"LGA\",17.00,5.00,0.00,\"\",0.00,151.00,132.00,1010.00,,,,,,\n2015,5,4,\"DL\",\"1953\",\"LGA\",\"FLL\",-4.00,-36.00,0.00,\"\",0.00,162.00,147.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"1958\",\"PBI\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,161.00,138.00,1035.00,,,,,,\n2015,5,4,\"DL\",\"1969\",\"BUF\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,77.00,48.00,301.00,,,,,,\n2015,5,4,\"DL\",\"1972\",\"AUS\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,218.00,203.00,1521.00,,,,,,\n2015,5,4,\"DL\",\"1974\",\"MIA\",\"LGA\",32.00,17.00,0.00,\"\",0.00,168.00,142.00,1096.00,1.00,0.00,0.00,0.00,16.00,\n2015,5,4,\"DL\",\"1982\",\"LGA\",\"MIA\",-6.00,-8.00,0.00,\"\",0.00,194.00,160.00,1096.00,,,,,,\n2015,5,4,\"DL\",\"1985\",\"ALB\",\"DTW\",-4.00,-18.00,0.00,\"\",0.00,87.00,71.00,489.00,,,,,,\n2015,5,4,\"DL\",\"1986\",\"ATL\",\"LGA\",-3.00,-29.00,0.00,\"\",0.00,124.00,106.00,762.00,,,,,,\n2015,5,4,\"DL\",\"1994\",\"PHX\",\"JFK\",-4.00,-2.00,0.00,\"\",0.00,294.00,271.00,2153.00,,,,,,\n2015,5,4,\"DL\",\"1996\",\"MSP\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,156.00,133.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"2003\",\"LGA\",\"MIA\",-3.00,3.00,0.00,\"\",0.00,193.00,151.00,1096.00,,,,,,\n2015,5,4,\"DL\",\"2013\",\"ATL\",\"SYR\",-2.00,-3.00,0.00,\"\",0.00,134.00,108.00,794.00,,,,,,\n2015,5,4,\"DL\",\"2014\",\"SYR\",\"ATL\",0.00,-10.00,0.00,\"\",0.00,129.00,112.00,794.00,,,,,,\n2015,5,4,\"DL\",\"2016\",\"LGA\",\"ATL\",-6.00,-7.00,0.00,\"\",0.00,152.00,102.00,762.00,,,,,,\n2015,5,4,\"DL\",\"2022\",\"LGA\",\"FLL\",40.00,13.00,0.00,\"\",0.00,165.00,150.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"2028\",\"FLL\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,168.00,142.00,1076.00,,,,,,\n2015,5,4,\"DL\",\"2032\",\"MSP\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,155.00,134.00,1029.00,,,,,,\n2015,5,4,\"DL\",\"2037\",\"MCO\",\"LGA\",125.00,127.00,0.00,\"\",0.00,159.00,128.00,950.00,125.00,0.00,2.00,0.00,0.00,\n2015,5,4,\"DL\",\"2040\",\"SFO\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,319.00,298.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"2043\",\"JFK\",\"PHX\",-8.00,3.00,0.00,\"\",0.00,352.00,319.00,2153.00,,,,,,\n2015,5,4,\"DL\",\"2044\",\"JFK\",\"BOS\",0.00,-28.00,0.00,\"\",0.00,73.00,41.00,187.00,,,,,,\n2015,5,4,\"DL\",\"2056\",\"JFK\",\"ATL\",-3.00,-38.00,0.00,\"\",0.00,132.00,101.00,760.00,,,,,,\n2015,5,4,\"DL\",\"2058\",\"MCO\",\"JFK\",1.00,-7.00,0.00,\"\",0.00,147.00,122.00,944.00,,,,,,\n2015,5,4,\"DL\",\"2074\",\"LGA\",\"ATL\",-5.00,-17.00,0.00,\"\",0.00,146.00,105.00,762.00,,,,,,\n2015,5,4,\"DL\",\"2077\",\"LGA\",\"MCO\",42.00,33.00,0.00,\"\",0.00,167.00,134.00,950.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"DL\",\"2086\",\"ATL\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,128.00,107.00,762.00,,,,,,\n2015,5,4,\"DL\",\"2096\",\"LGA\",\"MSP\",0.00,-13.00,0.00,\"\",0.00,169.00,150.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"2119\",\"LGA\",\"MSP\",5.00,-18.00,0.00,\"\",0.00,162.00,146.00,1020.00,,,,,,\n2015,5,4,\"DL\",\"2122\",\"JFK\",\"AUS\",-10.00,-38.00,0.00,\"\",0.00,236.00,198.00,1521.00,,,,,,\n2015,5,4,\"DL\",\"2129\",\"ROC\",\"ATL\",-4.00,-11.00,0.00,\"\",0.00,122.00,103.00,749.00,,,,,,\n2015,5,4,\"DL\",\"2131\",\"LGA\",\"DTW\",-3.00,-14.00,0.00,\"\",0.00,108.00,80.00,502.00,,,,,,\n2015,5,4,\"DL\",\"2135\",\"TPA\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,160.00,139.00,1010.00,,,,,,\n2015,5,4,\"DL\",\"2146\",\"ATL\",\"ROC\",-2.00,-8.00,0.00,\"\",0.00,119.00,100.00,749.00,,,,,,\n2015,5,4,\"DL\",\"2146\",\"ROC\",\"ATL\",-1.00,-16.00,0.00,\"\",0.00,119.00,100.00,749.00,,,,,,\n2015,5,4,\"DL\",\"2148\",\"LGA\",\"DTW\",-4.00,-30.00,0.00,\"\",0.00,102.00,77.00,502.00,,,,,,\n2015,5,4,\"DL\",\"2150\",\"LGA\",\"DTW\",12.00,2.00,0.00,\"\",0.00,116.00,81.00,502.00,,,,,,\n2015,5,4,\"DL\",\"2151\",\"MIA\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,176.00,147.00,1096.00,,,,,,\n2015,5,4,\"DL\",\"2155\",\"LAS\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,288.00,269.00,2248.00,,,,,,\n2015,5,4,\"DL\",\"2156\",\"ATL\",\"SYR\",-2.00,-2.00,0.00,\"\",0.00,130.00,113.00,794.00,,,,,,\n2015,5,4,\"DL\",\"2156\",\"SYR\",\"ATL\",0.00,-20.00,0.00,\"\",0.00,123.00,107.00,794.00,,,,,,\n2015,5,4,\"DL\",\"2166\",\"SYR\",\"DTW\",-4.00,-13.00,0.00,\"\",0.00,84.00,59.00,374.00,,,,,,\n2015,5,4,\"DL\",\"2174\",\"DTW\",\"JFK\",-3.00,6.00,0.00,\"\",0.00,130.00,81.00,509.00,,,,,,\n2015,5,4,\"DL\",\"2178\",\"LGA\",\"TPA\",-4.00,-28.00,0.00,\"\",0.00,157.00,140.00,1010.00,,,,,,\n2015,5,4,\"DL\",\"2181\",\"LGA\",\"MCO\",1.00,-15.00,0.00,\"\",0.00,154.00,129.00,950.00,,,,,,\n2015,5,4,\"DL\",\"2185\",\"FLL\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,161.00,139.00,1069.00,,,,,,\n2015,5,4,\"DL\",\"2186\",\"ATL\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,132.00,108.00,762.00,,,,,,\n2015,5,4,\"DL\",\"2190\",\"JFK\",\"MIA\",-12.00,-19.00,0.00,\"\",0.00,195.00,161.00,1089.00,,,,,,\n2015,5,4,\"DL\",\"2214\",\"ATL\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,132.00,104.00,762.00,,,,,,\n2015,5,4,\"DL\",\"2217\",\"JFK\",\"BOS\",-3.00,37.00,0.00,\"\",0.00,132.00,42.00,187.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,4,\"DL\",\"2230\",\"CHS\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,124.00,88.00,636.00,,,,,,\n2015,5,4,\"DL\",\"2231\",\"DTW\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,111.00,77.00,502.00,,,,,,\n2015,5,4,\"DL\",\"2240\",\"SFO\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,320.00,296.00,2586.00,,,,,,\n2015,5,4,\"DL\",\"2248\",\"DTW\",\"LGA\",17.00,10.00,0.00,\"\",0.00,101.00,78.00,502.00,,,,,,\n2015,5,4,\"DL\",\"2262\",\"LAX\",\"JFK\",11.00,17.00,0.00,\"\",0.00,340.00,311.00,2475.00,5.00,0.00,6.00,0.00,6.00,\n2015,5,4,\"DL\",\"2263\",\"JFK\",\"MIA\",-7.00,-21.00,0.00,\"\",0.00,196.00,162.00,1089.00,,,,,,\n2015,5,4,\"DL\",\"2270\",\"LGA\",\"RSW\",-3.00,-7.00,0.00,\"\",0.00,192.00,159.00,1080.00,,,,,,\n2015,5,4,\"DL\",\"2276\",\"MCO\",\"JFK\",13.00,18.00,0.00,\"\",0.00,172.00,144.00,944.00,5.00,0.00,10.00,0.00,3.00,\n2015,5,4,\"DL\",\"2277\",\"JFK\",\"TPA\",-8.00,-16.00,0.00,\"\",0.00,185.00,141.00,1005.00,,,,,,\n2015,5,4,\"DL\",\"2280\",\"LGA\",\"TPA\",-1.00,-6.00,0.00,\"\",0.00,169.00,136.00,1010.00,,,,,,\n2015,5,4,\"DL\",\"2282\",\"LGA\",\"MCO\",-6.00,-22.00,0.00,\"\",0.00,160.00,130.00,950.00,,,,,,\n2015,5,4,\"DL\",\"2285\",\"LGA\",\"MCO\",-3.00,-9.00,0.00,\"\",0.00,157.00,128.00,950.00,,,,,,\n2015,5,5,\"DL\",\"1875\",\"LGA\",\"TPA\",-5.00,-29.00,0.00,\"\",0.00,156.00,139.00,1010.00,,,,,,\n2015,5,5,\"DL\",\"1879\",\"LGA\",\"FLL\",10.00,-9.00,0.00,\"\",0.00,168.00,152.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"1885\",\"LGA\",\"MCO\",-5.00,-23.00,0.00,\"\",0.00,162.00,137.00,950.00,,,,,,\n2015,5,5,\"DL\",\"1886\",\"ATL\",\"LGA\",-5.00,-32.00,0.00,\"\",0.00,123.00,105.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1897\",\"LGA\",\"MCO\",-4.00,-19.00,0.00,\"\",0.00,159.00,133.00,950.00,,,,,,\n2015,5,5,\"DL\",\"1902\",\"LGA\",\"PBI\",-3.00,-11.00,0.00,\"\",0.00,176.00,147.00,1035.00,,,,,,\n2015,5,5,\"DL\",\"1917\",\"MIA\",\"LGA\",-13.00,-36.00,0.00,\"\",0.00,161.00,139.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"1919\",\"LGA\",\"MSP\",-6.00,-16.00,0.00,\"\",0.00,172.00,153.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"1930\",\"LGA\",\"MIA\",-5.00,-18.00,0.00,\"\",0.00,185.00,157.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"1935\",\"LGA\",\"TPA\",-7.00,-7.00,0.00,\"\",0.00,182.00,148.00,1010.00,,,,,,\n2015,5,5,\"DL\",\"1947\",\"FLL\",\"JFK\",0.00,-24.00,0.00,\"\",0.00,160.00,137.00,1069.00,,,,,,\n2015,5,5,\"DL\",\"1948\",\"DTW\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,105.00,81.00,502.00,,,,,,\n2015,5,5,\"DL\",\"1949\",\"TPA\",\"LGA\",-7.00,-26.00,0.00,\"\",0.00,144.00,128.00,1010.00,,,,,,\n2015,5,5,\"DL\",\"1953\",\"LGA\",\"FLL\",-4.00,-20.00,0.00,\"\",0.00,178.00,157.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"1958\",\"PBI\",\"LGA\",5.00,-10.00,0.00,\"\",0.00,161.00,135.00,1035.00,,,,,,\n2015,5,5,\"DL\",\"1969\",\"BUF\",\"JFK\",3.00,-9.00,0.00,\"\",0.00,78.00,57.00,301.00,,,,,,\n2015,5,5,\"DL\",\"1972\",\"AUS\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,219.00,201.00,1521.00,,,,,,\n2015,5,5,\"DL\",\"1974\",\"MIA\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,167.00,139.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"1982\",\"LGA\",\"MIA\",-6.00,-10.00,0.00,\"\",0.00,192.00,165.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"1985\",\"ALB\",\"DTW\",0.00,6.00,0.00,\"\",0.00,107.00,83.00,489.00,,,,,,\n2015,5,5,\"DL\",\"1986\",\"ATL\",\"LGA\",4.00,-23.00,0.00,\"\",0.00,123.00,105.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1994\",\"PHX\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,284.00,260.00,2153.00,,,,,,\n2015,5,5,\"DL\",\"1996\",\"MSP\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,146.00,125.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"2003\",\"LGA\",\"MIA\",0.00,-3.00,0.00,\"\",0.00,184.00,165.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"2013\",\"ATL\",\"SYR\",-1.00,-11.00,0.00,\"\",0.00,125.00,110.00,794.00,,,,,,\n2015,5,5,\"DL\",\"2014\",\"SYR\",\"ATL\",-7.00,-21.00,0.00,\"\",0.00,125.00,109.00,794.00,,,,,,\n2015,5,5,\"DL\",\"2016\",\"LGA\",\"ATL\",-1.00,-15.00,0.00,\"\",0.00,139.00,106.00,762.00,,,,,,\n2015,5,5,\"DL\",\"2022\",\"LGA\",\"FLL\",-3.00,-10.00,0.00,\"\",0.00,185.00,152.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"2028\",\"FLL\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,160.00,138.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"2032\",\"MSP\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,150.00,129.00,1029.00,,,,,,\n2015,5,5,\"DL\",\"2037\",\"MCO\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,152.00,132.00,950.00,,,,,,\n2015,5,5,\"DL\",\"2040\",\"SFO\",\"JFK\",3.00,2.00,0.00,\"\",0.00,340.00,304.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"2056\",\"JFK\",\"ATL\",-1.00,-14.00,0.00,\"\",0.00,154.00,102.00,760.00,,,,,,\n2015,5,5,\"DL\",\"2058\",\"MCO\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,145.00,123.00,944.00,,,,,,\n2015,5,5,\"DL\",\"2074\",\"LGA\",\"ATL\",-6.00,-38.00,0.00,\"\",0.00,126.00,104.00,762.00,,,,,,\n2015,5,5,\"DL\",\"2077\",\"LGA\",\"MCO\",-3.00,-10.00,0.00,\"\",0.00,169.00,138.00,950.00,,,,,,\n2015,5,5,\"DL\",\"2086\",\"ATL\",\"LGA\",-1.00,-29.00,0.00,\"\",0.00,116.00,99.00,762.00,,,,,,\n2015,5,5,\"DL\",\"2096\",\"LGA\",\"MSP\",-3.00,-3.00,0.00,\"\",0.00,182.00,152.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"2119\",\"LGA\",\"MSP\",0.00,-9.00,0.00,\"\",0.00,176.00,146.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"2129\",\"ROC\",\"ATL\",-7.00,-15.00,0.00,\"\",0.00,121.00,103.00,749.00,,,,,,\n2015,5,5,\"DL\",\"2131\",\"LGA\",\"DTW\",-5.00,-4.00,0.00,\"\",0.00,120.00,85.00,502.00,,,,,,\n2015,5,5,\"DL\",\"2135\",\"TPA\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,154.00,137.00,1010.00,,,,,,\n2015,5,5,\"DL\",\"2146\",\"ATL\",\"ROC\",-4.00,-17.00,0.00,\"\",0.00,112.00,96.00,749.00,,,,,,\n2015,5,5,\"DL\",\"2146\",\"ROC\",\"ATL\",-4.00,-5.00,0.00,\"\",0.00,133.00,102.00,749.00,,,,,,\n2015,5,5,\"DL\",\"2148\",\"LGA\",\"DTW\",-7.00,-28.00,0.00,\"\",0.00,107.00,85.00,502.00,,,,,,\n2015,5,5,\"DL\",\"2150\",\"LGA\",\"DTW\",0.00,-13.00,0.00,\"\",0.00,113.00,87.00,502.00,,,,,,\n2015,5,5,\"DL\",\"2151\",\"MIA\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,174.00,143.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"2155\",\"LAS\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,298.00,272.00,2248.00,,,,,,\n2015,5,5,\"DL\",\"2156\",\"ATL\",\"SYR\",-3.00,-13.00,0.00,\"\",0.00,120.00,107.00,794.00,,,,,,\n2015,5,5,\"DL\",\"2156\",\"SYR\",\"ATL\",-4.00,-25.00,0.00,\"\",0.00,122.00,108.00,794.00,,,,,,\n2015,5,5,\"DL\",\"2166\",\"SYR\",\"DTW\",-5.00,-15.00,0.00,\"\",0.00,83.00,66.00,374.00,,,,,,\n2015,5,5,\"DL\",\"2174\",\"DTW\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,108.00,74.00,509.00,,,,,,\n2015,5,5,\"DL\",\"2178\",\"LGA\",\"TPA\",-2.00,-12.00,0.00,\"\",0.00,171.00,147.00,1010.00,,,,,,\n2015,5,5,\"DL\",\"2181\",\"LGA\",\"MCO\",-2.00,6.00,0.00,\"\",0.00,178.00,139.00,950.00,,,,,,\n2015,5,5,\"DL\",\"2185\",\"FLL\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,159.00,138.00,1069.00,,,,,,\n2015,5,5,\"DL\",\"2186\",\"ATL\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,134.00,105.00,762.00,,,,,,\n2015,5,5,\"DL\",\"2190\",\"JFK\",\"MIA\",-9.00,-20.00,0.00,\"\",0.00,191.00,156.00,1089.00,,,,,,\n2015,5,5,\"DL\",\"2214\",\"ATL\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,131.00,104.00,762.00,,,,,,\n2015,5,5,\"DL\",\"2217\",\"JFK\",\"BOS\",-6.00,-37.00,0.00,\"\",0.00,61.00,33.00,187.00,,,,,,\n2015,5,5,\"DL\",\"2230\",\"CHS\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,115.00,87.00,636.00,,,,,,\n2015,5,5,\"DL\",\"2231\",\"DTW\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,96.00,70.00,502.00,,,,,,\n2015,5,5,\"DL\",\"2240\",\"SFO\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,325.00,300.00,2586.00,,,,,,\n2015,5,5,\"DL\",\"2248\",\"DTW\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,99.00,79.00,502.00,,,,,,\n2015,5,5,\"DL\",\"2262\",\"LAX\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,314.00,295.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"2270\",\"LGA\",\"RSW\",-3.00,-16.00,0.00,\"\",0.00,183.00,158.00,1080.00,,,,,,\n2015,5,5,\"DL\",\"2276\",\"MCO\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,147.00,121.00,944.00,,,,,,\n2015,5,5,\"DL\",\"2277\",\"JFK\",\"TPA\",-10.00,-26.00,0.00,\"\",0.00,177.00,144.00,1005.00,,,,,,\n2015,5,5,\"DL\",\"2280\",\"LGA\",\"TPA\",-3.00,-3.00,0.00,\"\",0.00,174.00,141.00,1010.00,,,,,,\n2015,5,5,\"DL\",\"2282\",\"LGA\",\"MCO\",-10.00,-18.00,0.00,\"\",0.00,168.00,141.00,950.00,,,,,,\n2015,5,5,\"DL\",\"2285\",\"LGA\",\"MCO\",17.00,11.00,0.00,\"\",0.00,157.00,132.00,950.00,,,,,,\n2015,5,5,\"DL\",\"2292\",\"JFK\",\"PBI\",-12.00,-17.00,0.00,\"\",0.00,182.00,148.00,1028.00,,,,,,\n2015,5,5,\"DL\",\"2296\",\"MSP\",\"LGA\",-3.00,-26.00,0.00,\"\",0.00,146.00,131.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"2299\",\"JFK\",\"PHX\",18.00,-18.00,0.00,\"\",0.00,300.00,272.00,2153.00,,,,,,\n2015,5,5,\"DL\",\"2301\",\"JFK\",\"SAT\",-4.00,-31.00,0.00,\"\",0.00,242.00,217.00,1587.00,,,,,,\n2015,5,5,\"DL\",\"2311\",\"JFK\",\"MIA\",-3.00,-24.00,0.00,\"\",0.00,185.00,152.00,1089.00,,,,,,\n2015,5,5,\"DL\",\"2312\",\"JFK\",\"DTW\",-4.00,-27.00,0.00,\"\",0.00,117.00,93.00,509.00,,,,,,\n2015,5,5,\"DL\",\"2317\",\"PBI\",\"LGA\",-2.00,-26.00,0.00,\"\",0.00,149.00,131.00,1035.00,,,,,,\n2015,5,5,\"DL\",\"2319\",\"LGA\",\"MSP\",-8.00,-34.00,0.00,\"\",0.00,169.00,152.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"2331\",\"LGA\",\"DTW\",-11.00,-23.00,0.00,\"\",0.00,112.00,83.00,502.00,,,,,,\n2015,5,5,\"DL\",\"2340\",\"JFK\",\"MCO\",-3.00,-19.00,0.00,\"\",0.00,174.00,137.00,944.00,,,,,,\n2015,5,5,\"DL\",\"2349\",\"DTW\",\"LGA\",3.00,-4.00,0.00,\"\",0.00,99.00,76.00,502.00,,,,,,\n2015,5,5,\"DL\",\"2350\",\"ATL\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,128.00,107.00,760.00,,,,,,\n2015,5,5,\"DL\",\"2352\",\"LAS\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,306.00,265.00,2248.00,,,,,,\n2015,5,5,\"DL\",\"2354\",\"SLC\",\"JFK\",13.00,0.00,0.00,\"\",0.00,259.00,233.00,1990.00,,,,,,\n2015,5,5,\"DL\",\"2355\",\"JFK\",\"ATL\",0.00,-28.00,0.00,\"\",0.00,141.00,104.00,760.00,,,,,,\n2015,5,5,\"DL\",\"2362\",\"LAX\",\"JFK\",-8.00,-8.00,0.00,\"\",0.00,330.00,301.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"2382\",\"JFK\",\"FLL\",-4.00,-21.00,0.00,\"\",0.00,184.00,160.00,1069.00,,,,,,\n2015,5,5,\"DL\",\"2386\",\"ATL\",\"LGA\",1.00,-19.00,0.00,\"\",0.00,118.00,98.00,762.00,,,,,,\n2015,5,5,\"DL\",\"2395\",\"LGA\",\"PBI\",-6.00,-18.00,0.00,\"\",0.00,168.00,146.00,1035.00,,,,,,\n2015,5,5,\"DL\",\"2404\",\"SAN\",\"JFK\",-8.00,-7.00,0.00,\"\",0.00,335.00,293.00,2446.00,,,,,,\n2015,5,5,\"DL\",\"2406\",\"TPA\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,150.00,134.00,1010.00,,,,,,\n2015,5,5,\"DL\",\"2413\",\"MIA\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,171.00,143.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"2424\",\"JFK\",\"ATL\",-1.00,-29.00,0.00,\"\",0.00,144.00,108.00,760.00,,,,,,\n2015,5,5,\"DL\",\"2432\",\"DTW\",\"SYR\",27.00,31.00,0.00,\"\",0.00,83.00,53.00,374.00,0.00,0.00,4.00,0.00,27.00,\n2015,5,5,\"DL\",\"2435\",\"JFK\",\"FLL\",-22.00,-50.00,0.00,\"\",0.00,175.00,147.00,1069.00,,,,,,\n2015,5,5,\"DL\",\"2450\",\"MCO\",\"LGA\",4.00,1.00,0.00,\"\",0.00,153.00,128.00,950.00,,,,,,\n2015,5,5,\"DL\",\"2464\",\"TPA\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,148.00,134.00,1005.00,,,,,,\n2015,5,5,\"DL\",\"2466\",\"ATL\",\"SYR\",-1.00,-21.00,0.00,\"\",0.00,117.00,103.00,794.00,,,,,,\n2015,5,5,\"DL\",\"2466\",\"SYR\",\"ATL\",-8.00,-25.00,0.00,\"\",0.00,133.00,110.00,794.00,,,,,,\n2015,5,5,\"DL\",\"2473\",\"ATL\",\"BUF\",-4.00,-19.00,0.00,\"\",0.00,113.00,98.00,712.00,,,,,,\n2015,5,5,\"DL\",\"2480\",\"JFK\",\"TPA\",-6.00,-22.00,0.00,\"\",0.00,170.00,140.00,1005.00,,,,,,\n2015,5,5,\"DL\",\"2496\",\"ATL\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,123.00,103.00,762.00,,,,,,\n2015,5,5,\"DL\",\"2498\",\"FLL\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,166.00,141.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"2502\",\"FLL\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,175.00,156.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"2542\",\"FLL\",\"JFK\",-2.00,-38.00,0.00,\"\",0.00,150.00,132.00,1069.00,,,,,,\n2015,5,5,\"DL\",\"2554\",\"DEN\",\"JFK\",10.00,-18.00,0.00,\"\",0.00,213.00,194.00,1626.00,,,,,,\n2015,5,5,\"DL\",\"2565\",\"JFK\",\"MSP\",-6.00,-34.00,0.00,\"\",0.00,181.00,157.00,1029.00,,,,,,\n2015,5,5,\"DL\",\"2567\",\"DTW\",\"ALB\",-4.00,3.00,0.00,\"\",0.00,95.00,62.00,489.00,,,,,,\n2015,5,5,\"DL\",\"2569\",\"JFK\",\"AUS\",-5.00,-18.00,0.00,\"\",0.00,251.00,216.00,1521.00,,,,,,\n2015,5,5,\"DL\",\"2577\",\"JFK\",\"FLL\",0.00,-25.00,0.00,\"\",0.00,180.00,154.00,1069.00,,,,,,\n2015,5,5,\"DL\",\"2591\",\"JFK\",\"AUS\",-7.00,-38.00,0.00,\"\",0.00,233.00,199.00,1521.00,,,,,,\n2015,5,5,\"DL\",\"2593\",\"SAT\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,235.00,214.00,1587.00,,,,,,\n2015,5,5,\"DL\",\"2594\",\"DEN\",\"LGA\",-10.00,-33.00,0.00,\"\",0.00,213.00,191.00,1620.00,,,,,,\n2015,5,5,\"DL\",\"2595\",\"FLL\",\"LGA\",-3.00,-22.00,0.00,\"\",0.00,165.00,140.00,1076.00,,,,,,\n2015,5,5,\"DL\",\"2596\",\"PBI\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,158.00,133.00,1035.00,,,,,,\n2015,5,5,\"DL\",\"2622\",\"ROC\",\"DTW\",-7.00,-21.00,0.00,\"\",0.00,68.00,53.00,296.00,,,,,,\n2015,5,5,\"DL\",\"2632\",\"JFK\",\"MCO\",-9.00,-21.00,0.00,\"\",0.00,171.00,131.00,944.00,,,,,,\n2015,5,5,\"DL\",\"2634\",\"JFK\",\"BUF\",-6.00,-27.00,0.00,\"\",0.00,82.00,55.00,301.00,,,,,,\n2015,5,5,\"DL\",\"2645\",\"JFK\",\"RSW\",-2.00,-24.00,0.00,\"\",0.00,179.00,152.00,1074.00,,,,,,\n2015,5,5,\"DL\",\"2649\",\"JFK\",\"TPA\",-7.00,-27.00,0.00,\"\",0.00,168.00,139.00,1005.00,,,,,,\n2015,5,5,\"DL\",\"2650\",\"TPA\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,155.00,130.00,1005.00,,,,,,\n2015,5,5,\"DL\",\"2652\",\"TPA\",\"JFK\",-8.00,-4.00,0.00,\"\",0.00,178.00,127.00,1005.00,,,,,,\n2015,5,5,\"DL\",\"2653\",\"MCO\",\"JFK\",7.00,9.00,0.00,\"\",0.00,168.00,136.00,944.00,,,,,,\n2015,5,5,\"DL\",\"2665\",\"BOS\",\"LGA\",-3.00,-1.00,0.00,\"\",0.00,77.00,43.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2666\",\"LGA\",\"BOS\",-3.00,-12.00,0.00,\"\",0.00,57.00,37.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2667\",\"BOS\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,83.00,46.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2668\",\"LGA\",\"BOS\",-2.00,-15.00,0.00,\"\",0.00,58.00,40.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2669\",\"BOS\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,68.00,42.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2670\",\"LGA\",\"BOS\",-6.00,6.00,0.00,\"\",0.00,79.00,37.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2671\",\"BOS\",\"LGA\",-3.00,3.00,0.00,\"\",0.00,85.00,37.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2672\",\"LGA\",\"BOS\",0.00,-17.00,0.00,\"\",0.00,65.00,37.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2673\",\"BOS\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,72.00,40.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2674\",\"LGA\",\"BOS\",-4.00,-26.00,0.00,\"\",0.00,61.00,43.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2675\",\"BOS\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,66.00,37.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2676\",\"LGA\",\"BOS\",-3.00,-15.00,0.00,\"\",0.00,64.00,36.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2677\",\"BOS\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,65.00,36.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2678\",\"LGA\",\"BOS\",-5.00,-27.00,0.00,\"\",0.00,61.00,38.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2679\",\"BOS\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,70.00,36.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2680\",\"LGA\",\"BOS\",-1.00,-12.00,0.00,\"\",0.00,68.00,38.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2681\",\"BOS\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,66.00,50.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2682\",\"LGA\",\"BOS\",-3.00,-20.00,0.00,\"\",0.00,55.00,34.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2683\",\"BOS\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,67.00,42.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2684\",\"LGA\",\"BOS\",-6.00,-8.00,0.00,\"\",0.00,73.00,32.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2685\",\"BOS\",\"LGA\",-9.00,-12.00,0.00,\"\",0.00,69.00,42.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2686\",\"LGA\",\"BOS\",-4.00,-23.00,0.00,\"\",0.00,63.00,31.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2687\",\"BOS\",\"LGA\",-1.00,29.00,0.00,\"\",0.00,106.00,42.00,184.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,5,\"DL\",\"2688\",\"LGA\",\"BOS\",-1.00,-12.00,0.00,\"\",0.00,72.00,34.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2689\",\"BOS\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,71.00,46.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2690\",\"LGA\",\"BOS\",-7.00,-28.00,0.00,\"\",0.00,64.00,35.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2691\",\"BOS\",\"LGA\",-1.00,5.00,0.00,\"\",0.00,83.00,38.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2692\",\"LGA\",\"BOS\",21.00,0.00,0.00,\"\",0.00,58.00,34.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2693\",\"BOS\",\"LGA\",-9.00,-8.00,0.00,\"\",0.00,79.00,43.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2694\",\"LGA\",\"BOS\",-8.00,-19.00,0.00,\"\",0.00,67.00,37.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2696\",\"LGA\",\"BOS\",-9.00,-10.00,0.00,\"\",0.00,67.00,40.00,184.00,,,,,,\n2015,5,5,\"DL\",\"2699\",\"BOS\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,68.00,44.00,184.00,,,,,,\n2015,5,6,\"DL\",\"42\",\"MIA\",\"JFK\",22.00,0.00,0.00,\"\",0.00,167.00,143.00,1089.00,,,,,,\n2015,5,6,\"DL\",\"2270\",\"LGA\",\"RSW\",-3.00,7.00,0.00,\"\",0.00,206.00,159.00,1080.00,,,,,,\n2015,5,6,\"DL\",\"2276\",\"MCO\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,149.00,131.00,944.00,,,,,,\n2015,5,6,\"DL\",\"2277\",\"JFK\",\"TPA\",-5.00,-29.00,0.00,\"\",0.00,169.00,137.00,1005.00,,,,,,\n2015,5,6,\"DL\",\"2280\",\"LGA\",\"TPA\",11.00,28.00,0.00,\"\",0.00,191.00,141.00,1010.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,6,\"DL\",\"2282\",\"LGA\",\"MCO\",-7.00,-14.00,0.00,\"\",0.00,169.00,125.00,950.00,,,,,,\n2015,5,6,\"DL\",\"2285\",\"LGA\",\"MCO\",-4.00,-1.00,0.00,\"\",0.00,166.00,135.00,950.00,,,,,,\n2015,5,6,\"DL\",\"2292\",\"JFK\",\"PBI\",-4.00,-11.00,0.00,\"\",0.00,180.00,155.00,1028.00,,,,,,\n2015,5,6,\"DL\",\"2296\",\"MSP\",\"LGA\",5.00,19.00,0.00,\"\",0.00,183.00,130.00,1020.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,6,\"DL\",\"2299\",\"JFK\",\"PHX\",-3.00,-40.00,0.00,\"\",0.00,299.00,269.00,2153.00,,,,,,\n2015,5,6,\"DL\",\"2301\",\"JFK\",\"SAT\",2.00,-32.00,0.00,\"\",0.00,235.00,208.00,1587.00,,,,,,\n2015,5,6,\"DL\",\"2311\",\"JFK\",\"MIA\",-3.00,-36.00,0.00,\"\",0.00,173.00,143.00,1089.00,,,,,,\n2015,5,6,\"DL\",\"2312\",\"JFK\",\"DTW\",3.00,16.00,0.00,\"\",0.00,153.00,86.00,509.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,6,\"DL\",\"2317\",\"PBI\",\"LGA\",19.00,9.00,0.00,\"\",0.00,163.00,140.00,1035.00,,,,,,\n2015,5,6,\"DL\",\"2319\",\"LGA\",\"MSP\",-7.00,6.00,0.00,\"\",0.00,208.00,152.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"2331\",\"LGA\",\"DTW\",-9.00,-10.00,0.00,\"\",0.00,123.00,78.00,502.00,,,,,,\n2015,5,6,\"DL\",\"2340\",\"JFK\",\"MCO\",-7.00,-20.00,0.00,\"\",0.00,177.00,133.00,944.00,,,,,,\n2015,5,6,\"DL\",\"2349\",\"DTW\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,96.00,71.00,502.00,,,,,,\n2015,5,6,\"DL\",\"2350\",\"ATL\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,123.00,97.00,760.00,,,,,,\n2015,5,6,\"DL\",\"2352\",\"LAS\",\"JFK\",371.00,365.00,0.00,\"\",0.00,307.00,278.00,2248.00,1.00,0.00,0.00,0.00,364.00,\n2015,5,5,\"DL\",\"1728\",\"LAS\",\"JFK\",6.00,0.00,0.00,\"\",0.00,295.00,269.00,2248.00,,,,,,\n2015,5,5,\"DL\",\"1750\",\"ATL\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,129.00,105.00,760.00,,,,,,\n2015,5,5,\"DL\",\"1762\",\"LAX\",\"JFK\",0.00,5.00,0.00,\"\",0.00,340.00,294.00,2475.00,,,,,,\n2015,5,5,\"DL\",\"1779\",\"LGA\",\"MSY\",-2.00,-26.00,0.00,\"\",0.00,175.00,162.00,1183.00,,,,,,\n2015,5,5,\"DL\",\"1786\",\"ATL\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,130.00,103.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1796\",\"LGA\",\"MSP\",-3.00,-22.00,0.00,\"\",0.00,179.00,158.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"1830\",\"SLC\",\"JFK\",15.00,-6.00,0.00,\"\",0.00,255.00,236.00,1990.00,,,,,,\n2015,5,5,\"DL\",\"1841\",\"SJU\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,225.00,198.00,1598.00,,,,,,\n2015,5,5,\"DL\",\"1848\",\"DTW\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,100.00,71.00,502.00,,,,,,\n2015,5,5,\"DL\",\"1849\",\"LGA\",\"ATL\",-6.00,-32.00,0.00,\"\",0.00,132.00,109.00,762.00,,,,,,\n2015,5,5,\"DL\",\"1851\",\"CHS\",\"JFK\",-5.00,7.00,0.00,\"\",0.00,136.00,88.00,636.00,,,,,,\n2015,5,6,\"DL\",\"1447\",\"LGA\",\"ATL\",-3.00,-11.00,0.00,\"\",0.00,136.00,107.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1473\",\"SEA\",\"JFK\",-3.00,15.00,0.00,\"\",0.00,348.00,298.00,2422.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,6,\"DL\",\"1486\",\"ATL\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,122.00,98.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1487\",\"ATL\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,125.00,100.00,760.00,,,,,,\n2015,5,6,\"DL\",\"1496\",\"MSP\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,146.00,127.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"1498\",\"FLL\",\"LGA\",-3.00,-26.00,0.00,\"\",0.00,157.00,136.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"1514\",\"LGA\",\"FLL\",-2.00,-16.00,0.00,\"\",0.00,175.00,149.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"1515\",\"ATL\",\"ALB\",-5.00,-17.00,0.00,\"\",0.00,135.00,116.00,853.00,,,,,,\n2015,5,6,\"DL\",\"1526\",\"MCO\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,148.00,134.00,950.00,,,,,,\n2015,5,6,\"DL\",\"1542\",\"SEA\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,317.00,290.00,2422.00,,,,,,\n2015,5,6,\"DL\",\"1543\",\"ATL\",\"ALB\",-2.00,-6.00,0.00,\"\",0.00,140.00,117.00,853.00,,,,,,\n2015,5,6,\"DL\",\"1543\",\"ALB\",\"ATL\",-2.00,-21.00,0.00,\"\",0.00,143.00,124.00,853.00,,,,,,\n2015,5,6,\"DL\",\"1548\",\"LGA\",\"DTW\",-3.00,-14.00,0.00,\"\",0.00,109.00,79.00,502.00,,,,,,\n2015,5,6,\"DL\",\"1560\",\"MSY\",\"LGA\",-2.00,-25.00,0.00,\"\",0.00,163.00,148.00,1183.00,,,,,,\n2015,5,6,\"DL\",\"1562\",\"BOS\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,66.00,40.00,187.00,,,,,,\n2015,5,6,\"DL\",\"1566\",\"LGA\",\"PBI\",-2.00,-12.00,0.00,\"\",0.00,173.00,130.00,1035.00,,,,,,\n2015,5,6,\"DL\",\"1580\",\"LGA\",\"DTW\",2.00,-3.00,0.00,\"\",0.00,120.00,83.00,502.00,,,,,,\n2015,5,6,\"DL\",\"1583\",\"SFO\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,333.00,311.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"1584\",\"ATL\",\"ROC\",0.00,-21.00,0.00,\"\",0.00,112.00,97.00,749.00,,,,,,\n2015,5,6,\"DL\",\"1584\",\"ROC\",\"ATL\",-12.00,-18.00,0.00,\"\",0.00,129.00,103.00,749.00,,,,,,\n2015,5,6,\"DL\",\"1586\",\"ATL\",\"LGA\",-3.00,-27.00,0.00,\"\",0.00,120.00,97.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1596\",\"MSP\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,153.00,138.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"1644\",\"FLL\",\"JFK\",-9.00,-44.00,0.00,\"\",0.00,152.00,136.00,1069.00,,,,,,\n2015,5,6,\"DL\",\"1647\",\"LGA\",\"ATL\",-8.00,-12.00,0.00,\"\",0.00,148.00,107.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1671\",\"MIA\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,177.00,142.00,1089.00,,,,,,\n2015,5,6,\"DL\",\"1672\",\"ATL\",\"BUF\",0.00,-5.00,0.00,\"\",0.00,114.00,95.00,712.00,,,,,,\n2015,5,6,\"DL\",\"1672\",\"BUF\",\"ATL\",-1.00,-10.00,0.00,\"\",0.00,119.00,100.00,712.00,,,,,,\n2015,5,6,\"DL\",\"1685\",\"LGA\",\"MCO\",-5.00,17.00,0.00,\"\",0.00,197.00,143.00,950.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,6,\"DL\",\"1697\",\"LGA\",\"ATL\",0.00,4.00,0.00,\"\",0.00,162.00,107.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1728\",\"LAS\",\"JFK\",13.00,24.00,0.00,\"\",0.00,312.00,279.00,2248.00,13.00,0.00,11.00,0.00,0.00,\n2015,5,6,\"DL\",\"1750\",\"ATL\",\"JFK\",30.00,3.00,0.00,\"\",0.00,122.00,102.00,760.00,,,,,,\n2015,5,6,\"DL\",\"1762\",\"LAX\",\"JFK\",24.00,19.00,0.00,\"\",0.00,330.00,302.00,2475.00,6.00,0.00,13.00,0.00,0.00,\n2015,5,6,\"DL\",\"1779\",\"LGA\",\"MSY\",0.00,-19.00,0.00,\"\",0.00,180.00,156.00,1183.00,,,,,,\n2015,5,6,\"DL\",\"1786\",\"ATL\",\"LGA\",-1.00,-32.00,0.00,\"\",0.00,110.00,94.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1796\",\"LGA\",\"MSP\",40.00,47.00,0.00,\"\",0.00,205.00,149.00,1020.00,0.00,0.00,7.00,0.00,40.00,\n2015,5,6,\"DL\",\"1830\",\"SLC\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,268.00,242.00,1990.00,,,,,,\n2015,5,6,\"DL\",\"1841\",\"SJU\",\"JFK\",10.00,-4.00,0.00,\"\",0.00,233.00,203.00,1598.00,,,,,,\n2015,5,6,\"DL\",\"1848\",\"DTW\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,103.00,71.00,502.00,,,,,,\n2015,5,6,\"DL\",\"1849\",\"LGA\",\"ATL\",-5.00,-6.00,0.00,\"\",0.00,157.00,109.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1851\",\"CHS\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,105.00,82.00,636.00,,,,,,\n2015,5,6,\"DL\",\"1875\",\"LGA\",\"TPA\",-7.00,11.00,0.00,\"\",0.00,198.00,148.00,1010.00,,,,,,\n2015,5,6,\"DL\",\"1879\",\"LGA\",\"FLL\",-9.00,-5.00,0.00,\"\",0.00,191.00,160.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"1885\",\"LGA\",\"MCO\",-1.00,3.00,0.00,\"\",0.00,184.00,138.00,950.00,,,,,,\n2015,5,6,\"DL\",\"1886\",\"ATL\",\"LGA\",-2.00,-25.00,0.00,\"\",0.00,127.00,97.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1897\",\"LGA\",\"MCO\",17.00,26.00,0.00,\"\",0.00,183.00,131.00,950.00,8.00,0.00,9.00,0.00,9.00,\n2015,5,6,\"DL\",\"1902\",\"LGA\",\"PBI\",17.00,16.00,0.00,\"\",0.00,183.00,139.00,1035.00,12.00,0.00,0.00,0.00,4.00,\n2015,5,6,\"DL\",\"1917\",\"MIA\",\"LGA\",-12.00,-25.00,0.00,\"\",0.00,171.00,146.00,1096.00,,,,,,\n2015,5,6,\"DL\",\"1919\",\"LGA\",\"MSP\",0.00,4.00,0.00,\"\",0.00,186.00,165.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"1930\",\"LGA\",\"MIA\",-3.00,-6.00,0.00,\"\",0.00,195.00,150.00,1096.00,,,,,,\n2015,5,6,\"DL\",\"1935\",\"LGA\",\"TPA\",-7.00,-23.00,0.00,\"\",0.00,166.00,135.00,1010.00,,,,,,\n2015,5,6,\"DL\",\"1947\",\"FLL\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,167.00,145.00,1069.00,,,,,,\n2015,5,6,\"DL\",\"1948\",\"DTW\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,100.00,71.00,502.00,,,,,,\n2015,5,6,\"DL\",\"1949\",\"TPA\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,147.00,130.00,1010.00,,,,,,\n2015,5,6,\"DL\",\"1953\",\"LGA\",\"FLL\",0.00,-3.00,0.00,\"\",0.00,191.00,145.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"1958\",\"PBI\",\"LGA\",14.00,-5.00,0.00,\"\",0.00,157.00,135.00,1035.00,,,,,,\n2015,5,6,\"DL\",\"1969\",\"BUF\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,83.00,51.00,301.00,,,,,,\n2015,5,6,\"DL\",\"1972\",\"AUS\",\"JFK\",17.00,4.00,0.00,\"\",0.00,216.00,197.00,1521.00,,,,,,\n2015,5,6,\"DL\",\"1974\",\"MIA\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,172.00,147.00,1096.00,,,,,,\n2015,5,6,\"DL\",\"1982\",\"LGA\",\"MIA\",29.00,21.00,0.00,\"\",0.00,188.00,146.00,1096.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"DL\",\"1985\",\"ALB\",\"DTW\",-6.00,-7.00,0.00,\"\",0.00,100.00,87.00,489.00,,,,,,\n2015,5,6,\"DL\",\"1986\",\"ATL\",\"LGA\",0.00,-40.00,0.00,\"\",0.00,110.00,94.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1994\",\"PHX\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,273.00,251.00,2153.00,,,,,,\n2015,5,6,\"DL\",\"1996\",\"MSP\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,157.00,124.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"2003\",\"LGA\",\"MIA\",1.00,7.00,0.00,\"\",0.00,193.00,164.00,1096.00,,,,,,\n2015,5,6,\"DL\",\"2013\",\"ATL\",\"SYR\",-6.00,-8.00,0.00,\"\",0.00,133.00,108.00,794.00,,,,,,\n2015,5,6,\"DL\",\"2014\",\"SYR\",\"ATL\",-5.00,-18.00,0.00,\"\",0.00,126.00,108.00,794.00,,,,,,\n2015,5,6,\"DL\",\"2016\",\"LGA\",\"ATL\",-6.00,-1.00,0.00,\"\",0.00,158.00,104.00,762.00,,,,,,\n2015,5,6,\"DL\",\"2022\",\"LGA\",\"FLL\",-3.00,10.00,0.00,\"\",0.00,205.00,149.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"2028\",\"FLL\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,175.00,148.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"2032\",\"MSP\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,148.00,129.00,1029.00,,,,,,\n2015,5,6,\"DL\",\"2037\",\"MCO\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,150.00,120.00,950.00,,,,,,\n2015,5,6,\"DL\",\"2040\",\"SFO\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,329.00,305.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"2043\",\"JFK\",\"PHX\",-11.00,-34.00,0.00,\"\",0.00,318.00,276.00,2153.00,,,,,,\n2015,5,6,\"DL\",\"2044\",\"JFK\",\"BOS\",9.00,-24.00,0.00,\"\",0.00,68.00,34.00,187.00,,,,,,\n2015,5,6,\"DL\",\"2056\",\"JFK\",\"ATL\",-2.00,-15.00,0.00,\"\",0.00,154.00,106.00,760.00,,,,,,\n2015,5,6,\"DL\",\"2058\",\"MCO\",\"JFK\",-10.00,-21.00,0.00,\"\",0.00,144.00,117.00,944.00,,,,,,\n2015,5,6,\"DL\",\"2074\",\"LGA\",\"ATL\",-5.00,7.00,0.00,\"\",0.00,170.00,106.00,762.00,,,,,,\n2015,5,6,\"DL\",\"2077\",\"LGA\",\"MCO\",-5.00,-12.00,0.00,\"\",0.00,169.00,134.00,950.00,,,,,,\n2015,5,6,\"DL\",\"2086\",\"ATL\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,123.00,101.00,762.00,,,,,,\n2015,5,6,\"DL\",\"2096\",\"LGA\",\"MSP\",-2.00,-2.00,0.00,\"\",0.00,182.00,154.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"2119\",\"LGA\",\"MSP\",-2.00,-10.00,0.00,\"\",0.00,177.00,149.00,1020.00,,,,,,\n2015,5,6,\"DL\",\"2129\",\"ROC\",\"ATL\",-4.00,-16.00,0.00,\"\",0.00,117.00,99.00,749.00,,,,,,\n2015,5,6,\"DL\",\"2131\",\"LGA\",\"DTW\",-3.00,8.00,0.00,\"\",0.00,130.00,81.00,502.00,,,,,,\n2015,5,6,\"DL\",\"2135\",\"TPA\",\"LGA\",-4.00,3.00,0.00,\"\",0.00,171.00,139.00,1010.00,,,,,,\n2015,5,6,\"DL\",\"2148\",\"LGA\",\"DTW\",-10.00,6.00,0.00,\"\",0.00,144.00,81.00,502.00,,,,,,\n2015,5,6,\"DL\",\"2150\",\"LGA\",\"DTW\",0.00,6.00,0.00,\"\",0.00,132.00,82.00,502.00,,,,,,\n2015,5,6,\"DL\",\"2151\",\"MIA\",\"LGA\",13.00,-6.00,0.00,\"\",0.00,167.00,144.00,1096.00,,,,,,\n2015,5,6,\"DL\",\"2155\",\"LAS\",\"JFK\",4.00,-11.00,0.00,\"\",0.00,288.00,269.00,2248.00,,,,,,\n2015,5,6,\"DL\",\"2156\",\"ATL\",\"SYR\",0.00,-11.00,0.00,\"\",0.00,119.00,104.00,794.00,,,,,,\n2015,5,6,\"DL\",\"2156\",\"SYR\",\"ATL\",-7.00,-19.00,0.00,\"\",0.00,131.00,107.00,794.00,,,,,,\n2015,5,6,\"DL\",\"2166\",\"SYR\",\"DTW\",-4.00,-1.00,0.00,\"\",0.00,96.00,70.00,374.00,,,,,,\n2015,5,6,\"DL\",\"2174\",\"DTW\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,111.00,79.00,509.00,,,,,,\n2015,5,6,\"DL\",\"2178\",\"LGA\",\"TPA\",-5.00,4.00,0.00,\"\",0.00,190.00,138.00,1010.00,,,,,,\n2015,5,6,\"DL\",\"2181\",\"LGA\",\"MCO\",-5.00,-13.00,0.00,\"\",0.00,162.00,135.00,950.00,,,,,,\n2015,5,6,\"DL\",\"2185\",\"FLL\",\"JFK\",-10.00,-18.00,0.00,\"\",0.00,165.00,138.00,1069.00,,,,,,\n2015,5,6,\"DL\",\"2186\",\"ATL\",\"LGA\",-2.00,-22.00,0.00,\"\",0.00,126.00,104.00,762.00,,,,,,\n2015,5,6,\"DL\",\"2190\",\"JFK\",\"MIA\",-5.00,2.00,0.00,\"\",0.00,209.00,161.00,1089.00,,,,,,\n2015,5,6,\"DL\",\"2214\",\"ATL\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,129.00,105.00,762.00,,,,,,\n2015,5,6,\"DL\",\"2217\",\"JFK\",\"BOS\",-6.00,-18.00,0.00,\"\",0.00,80.00,42.00,187.00,,,,,,\n2015,5,6,\"DL\",\"2230\",\"CHS\",\"JFK\",-3.00,-2.00,0.00,\"\",0.00,130.00,86.00,636.00,,,,,,\n2015,5,6,\"DL\",\"2231\",\"DTW\",\"LGA\",7.00,8.00,0.00,\"\",0.00,109.00,73.00,502.00,,,,,,\n2015,5,6,\"DL\",\"2240\",\"SFO\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,334.00,309.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"2248\",\"DTW\",\"LGA\",-4.00,-27.00,0.00,\"\",0.00,85.00,67.00,502.00,,,,,,\n2015,5,6,\"DL\",\"2262\",\"LAX\",\"JFK\",17.00,2.00,0.00,\"\",0.00,319.00,298.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"2263\",\"JFK\",\"MIA\",-5.00,-13.00,0.00,\"\",0.00,202.00,160.00,1089.00,,,,,,\n2015,5,7,\"DL\",\"1830\",\"SLC\",\"JFK\",178.00,161.00,0.00,\"\",0.00,259.00,231.00,1990.00,161.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"DL\",\"1841\",\"SJU\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,230.00,205.00,1598.00,,,,,,\n2015,5,7,\"DL\",\"1848\",\"DTW\",\"LGA\",-8.00,-5.00,0.00,\"\",0.00,111.00,71.00,502.00,,,,,,\n2015,5,7,\"DL\",\"1849\",\"LGA\",\"ATL\",-5.00,-8.00,0.00,\"\",0.00,155.00,102.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1851\",\"CHS\",\"JFK\",6.00,-10.00,0.00,\"\",0.00,108.00,91.00,636.00,,,,,,\n2015,5,7,\"DL\",\"1875\",\"LGA\",\"TPA\",-3.00,-15.00,0.00,\"\",0.00,168.00,136.00,1010.00,,,,,,\n2015,5,7,\"DL\",\"1879\",\"LGA\",\"FLL\",-4.00,-2.00,0.00,\"\",0.00,189.00,157.00,1076.00,,,,,,\n2015,5,7,\"DL\",\"1885\",\"LGA\",\"MCO\",-6.00,-28.00,0.00,\"\",0.00,158.00,130.00,950.00,,,,,,\n2015,5,7,\"DL\",\"1886\",\"ATL\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,131.00,104.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1897\",\"LGA\",\"MCO\",-5.00,-28.00,0.00,\"\",0.00,151.00,123.00,950.00,,,,,,\n2015,5,7,\"DL\",\"1902\",\"LGA\",\"PBI\",-3.00,-27.00,0.00,\"\",0.00,160.00,135.00,1035.00,,,,,,\n2015,5,7,\"DL\",\"1917\",\"MIA\",\"LGA\",0.00,5.00,0.00,\"\",0.00,189.00,161.00,1096.00,,,,,,\n2015,5,7,\"DL\",\"1919\",\"LGA\",\"MSP\",-2.00,-9.00,0.00,\"\",0.00,175.00,150.00,1020.00,,,,,,\n2015,5,7,\"DL\",\"1930\",\"LGA\",\"MIA\",28.00,10.00,0.00,\"\",0.00,180.00,143.00,1096.00,,,,,,\n2015,5,7,\"DL\",\"1935\",\"LGA\",\"TPA\",-7.00,-3.00,0.00,\"\",0.00,186.00,144.00,1010.00,,,,,,\n2015,5,7,\"DL\",\"1947\",\"FLL\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,170.00,147.00,1069.00,,,,,,\n2015,5,7,\"DL\",\"1948\",\"DTW\",\"LGA\",-6.00,10.00,0.00,\"\",0.00,123.00,80.00,502.00,,,,,,\n2015,5,7,\"DL\",\"1949\",\"TPA\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,155.00,130.00,1010.00,,,,,,\n2015,5,7,\"DL\",\"1953\",\"LGA\",\"FLL\",13.00,-9.00,0.00,\"\",0.00,172.00,143.00,1076.00,,,,,,\n2015,5,7,\"DL\",\"1958\",\"PBI\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,175.00,145.00,1035.00,,,,,,\n2015,5,7,\"DL\",\"1969\",\"BUF\",\"JFK\",0.00,16.00,0.00,\"\",0.00,106.00,63.00,301.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,7,\"DL\",\"1972\",\"AUS\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,220.00,201.00,1521.00,,,,,,\n2015,5,7,\"DL\",\"1974\",\"MIA\",\"LGA\",-7.00,16.00,0.00,\"\",0.00,206.00,150.00,1096.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,7,\"DL\",\"1982\",\"LGA\",\"MIA\",-2.00,14.00,0.00,\"\",0.00,212.00,191.00,1096.00,,,,,,\n2015,5,7,\"DL\",\"1985\",\"ALB\",\"DTW\",0.00,10.00,0.00,\"\",0.00,111.00,82.00,489.00,,,,,,\n2015,5,7,\"DL\",\"1986\",\"ATL\",\"LGA\",-4.00,-29.00,0.00,\"\",0.00,125.00,104.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1994\",\"PHX\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,283.00,259.00,2153.00,,,,,,\n2015,5,7,\"DL\",\"1996\",\"MSP\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,158.00,134.00,1020.00,,,,,,\n2015,5,7,\"DL\",\"2003\",\"LGA\",\"MIA\",-2.00,-16.00,0.00,\"\",0.00,173.00,152.00,1096.00,,,,,,\n2015,5,7,\"DL\",\"2013\",\"ATL\",\"SYR\",0.00,-16.00,0.00,\"\",0.00,119.00,104.00,794.00,,,,,,\n2015,5,7,\"DL\",\"2014\",\"SYR\",\"ATL\",0.00,-1.00,0.00,\"\",0.00,138.00,112.00,794.00,,,,,,\n2015,5,7,\"DL\",\"2016\",\"LGA\",\"ATL\",-3.00,-14.00,0.00,\"\",0.00,142.00,104.00,762.00,,,,,,\n2015,5,7,\"DL\",\"2022\",\"LGA\",\"FLL\",-6.00,-20.00,0.00,\"\",0.00,178.00,149.00,1076.00,,,,,,\n2015,5,7,\"DL\",\"2028\",\"FLL\",\"LGA\",-4.00,,0.00,\"\",1.00,,,1076.00,,,,,,\n2015,5,7,\"DL\",\"2032\",\"MSP\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,161.00,138.00,1029.00,,,,,,\n2015,5,7,\"DL\",\"2037\",\"MCO\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,148.00,126.00,950.00,,,,,,\n2015,5,7,\"DL\",\"2040\",\"SFO\",\"JFK\",14.00,29.00,0.00,\"\",0.00,356.00,332.00,2586.00,14.00,0.00,15.00,0.00,0.00,\n2015,5,7,\"DL\",\"2043\",\"JFK\",\"PHX\",-3.00,7.00,0.00,\"\",0.00,351.00,305.00,2153.00,,,,,,\n2015,5,7,\"DL\",\"2044\",\"JFK\",\"BOS\",-6.00,-33.00,0.00,\"\",0.00,74.00,33.00,187.00,,,,,,\n2015,5,7,\"DL\",\"2056\",\"JFK\",\"ATL\",-6.00,-37.00,0.00,\"\",0.00,136.00,101.00,760.00,,,,,,\n2015,5,7,\"DL\",\"2058\",\"MCO\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,149.00,129.00,944.00,,,,,,\n2015,5,7,\"DL\",\"2059\",\"JFK\",\"LAS\",-3.00,-16.00,0.00,\"\",0.00,340.00,307.00,2248.00,,,,,,\n2015,5,7,\"DL\",\"2074\",\"LGA\",\"ATL\",-1.00,-16.00,0.00,\"\",0.00,143.00,107.00,762.00,,,,,,\n2015,5,7,\"DL\",\"2077\",\"LGA\",\"MCO\",-7.00,-23.00,0.00,\"\",0.00,160.00,129.00,950.00,,,,,,\n2015,5,7,\"DL\",\"2086\",\"ATL\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,129.00,106.00,762.00,,,,,,\n2015,5,7,\"DL\",\"2096\",\"LGA\",\"MSP\",0.00,-20.00,0.00,\"\",0.00,162.00,139.00,1020.00,,,,,,\n2015,5,7,\"DL\",\"2119\",\"LGA\",\"MSP\",15.00,7.00,0.00,\"\",0.00,177.00,144.00,1020.00,,,,,,\n2015,5,7,\"DL\",\"2122\",\"JFK\",\"AUS\",1.00,-34.00,0.00,\"\",0.00,229.00,202.00,1521.00,,,,,,\n2015,5,7,\"DL\",\"2129\",\"ROC\",\"ATL\",-5.00,-12.00,0.00,\"\",0.00,122.00,103.00,749.00,,,,,,\n2015,5,7,\"DL\",\"2131\",\"LGA\",\"DTW\",19.00,2.00,0.00,\"\",0.00,102.00,78.00,502.00,,,,,,\n2015,5,7,\"DL\",\"2135\",\"TPA\",\"LGA\",-4.00,9.00,0.00,\"\",0.00,177.00,138.00,1010.00,,,,,,\n2015,5,7,\"DL\",\"2148\",\"LGA\",\"DTW\",-4.00,-20.00,0.00,\"\",0.00,112.00,75.00,502.00,,,,,,\n2015,5,7,\"DL\",\"2150\",\"LGA\",\"DTW\",3.00,-29.00,0.00,\"\",0.00,94.00,73.00,502.00,,,,,,\n2015,5,7,\"DL\",\"2151\",\"MIA\",\"LGA\",-8.00,-5.00,0.00,\"\",0.00,189.00,157.00,1096.00,,,,,,\n2015,5,7,\"DL\",\"2155\",\"LAS\",\"JFK\",44.00,33.00,0.00,\"\",0.00,292.00,270.00,2248.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"DL\",\"2156\",\"ATL\",\"SYR\",-1.00,-13.00,0.00,\"\",0.00,118.00,103.00,794.00,,,,,,\n2015,5,7,\"DL\",\"2156\",\"SYR\",\"ATL\",-6.00,-18.00,0.00,\"\",0.00,131.00,113.00,794.00,,,,,,\n2015,5,7,\"DL\",\"2166\",\"SYR\",\"DTW\",-5.00,-10.00,0.00,\"\",0.00,88.00,67.00,374.00,,,,,,\n2015,5,7,\"DL\",\"2174\",\"DTW\",\"JFK\",-8.00,-26.00,0.00,\"\",0.00,103.00,79.00,509.00,,,,,,\n2015,5,7,\"DL\",\"2178\",\"LGA\",\"TPA\",5.00,-13.00,0.00,\"\",0.00,163.00,140.00,1010.00,,,,,,\n2015,5,7,\"DL\",\"2181\",\"LGA\",\"MCO\",-1.00,-18.00,0.00,\"\",0.00,153.00,131.00,950.00,,,,,,\n2015,5,7,\"DL\",\"2185\",\"FLL\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,171.00,151.00,1069.00,,,,,,\n2015,5,7,\"DL\",\"2186\",\"ATL\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,136.00,107.00,762.00,,,,,,\n2015,5,7,\"DL\",\"2190\",\"JFK\",\"MIA\",-4.00,-20.00,0.00,\"\",0.00,186.00,146.00,1089.00,,,,,,\n2015,5,6,\"DL\",\"1155\",\"DTW\",\"ROC\",-1.00,-11.00,0.00,\"\",0.00,61.00,43.00,296.00,,,,,,\n2015,5,6,\"DL\",\"1159\",\"ATL\",\"BUF\",-4.00,-15.00,0.00,\"\",0.00,111.00,95.00,712.00,,,,,,\n2015,5,6,\"DL\",\"1159\",\"BUF\",\"ATL\",-5.00,-12.00,0.00,\"\",0.00,122.00,101.00,712.00,,,,,,\n2015,5,6,\"DL\",\"1162\",\"LAX\",\"JFK\",1.00,-15.00,0.00,\"\",0.00,309.00,290.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"1174\",\"LGA\",\"PBI\",-2.00,5.00,0.00,\"\",0.00,187.00,150.00,1035.00,,,,,,\n2015,5,6,\"DL\",\"1176\",\"ATL\",\"BUF\",-1.00,-10.00,0.00,\"\",0.00,121.00,98.00,712.00,,,,,,\n2015,5,6,\"DL\",\"1176\",\"BUF\",\"ATL\",-1.00,-9.00,0.00,\"\",0.00,126.00,103.00,712.00,,,,,,\n2015,5,6,\"DL\",\"1186\",\"ATL\",\"LGA\",0.00,1.00,0.00,\"\",0.00,142.00,100.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1214\",\"LGA\",\"ATL\",20.00,52.00,0.00,\"\",0.00,196.00,127.00,762.00,0.00,0.00,52.00,0.00,0.00,\n2015,5,6,\"DL\",\"1227\",\"PHX\",\"JFK\",-7.00,-11.00,0.00,\"\",0.00,286.00,258.00,2153.00,,,,,,\n2015,5,6,\"DL\",\"1242\",\"LGA\",\"PBI\",-5.00,12.00,0.00,\"\",0.00,201.00,148.00,1035.00,,,,,,\n2015,5,6,\"DL\",\"1262\",\"LAX\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,320.00,297.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"1264\",\"SLC\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,276.00,245.00,1990.00,,,,,,\n2015,5,6,\"DL\",\"1266\",\"BUF\",\"ATL\",-2.00,2.00,0.00,\"\",0.00,126.00,97.00,712.00,,,,,,\n2015,5,6,\"DL\",\"1269\",\"LGA\",\"MIA\",-6.00,12.00,0.00,\"\",0.00,215.00,157.00,1096.00,,,,,,\n2015,5,6,\"DL\",\"1278\",\"MSP\",\"BUF\",-2.00,-9.00,0.00,\"\",0.00,112.00,96.00,735.00,,,,,,\n2015,5,6,\"DL\",\"1286\",\"ATL\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,121.00,104.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1288\",\"LGA\",\"FLL\",3.00,7.00,0.00,\"\",0.00,199.00,147.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"1289\",\"LGA\",\"ATL\",-3.00,3.00,0.00,\"\",0.00,168.00,117.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1298\",\"LGA\",\"ATL\",-7.00,-19.00,0.00,\"\",0.00,149.00,110.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1306\",\"DTW\",\"LGA\",-4.00,5.00,0.00,\"\",0.00,116.00,77.00,502.00,,,,,,\n2015,5,6,\"DL\",\"1312\",\"TPA\",\"JFK\",9.00,-16.00,0.00,\"\",0.00,149.00,131.00,1005.00,,,,,,\n2015,5,6,\"DL\",\"1335\",\"MIA\",\"LGA\",-4.00,-27.00,0.00,\"\",0.00,160.00,142.00,1096.00,,,,,,\n2015,5,6,\"DL\",\"1356\",\"BUF\",\"DTW\",-5.00,1.00,0.00,\"\",0.00,77.00,55.00,241.00,,,,,,\n2015,5,6,\"DL\",\"1359\",\"MCO\",\"LGA\",6.00,-7.00,0.00,\"\",0.00,150.00,120.00,950.00,,,,,,\n2015,5,6,\"DL\",\"1370\",\"ATL\",\"ROC\",-8.00,-12.00,0.00,\"\",0.00,121.00,104.00,749.00,,,,,,\n2015,5,6,\"DL\",\"1370\",\"ROC\",\"ATL\",-10.00,-16.00,0.00,\"\",0.00,128.00,104.00,749.00,,,,,,\n2015,5,6,\"DL\",\"1372\",\"DTW\",\"BUF\",-3.00,-12.00,0.00,\"\",0.00,57.00,37.00,241.00,,,,,,\n2015,5,6,\"DL\",\"1383\",\"LGA\",\"ATL\",-1.00,-4.00,0.00,\"\",0.00,165.00,112.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1386\",\"ATL\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,121.00,99.00,762.00,,,,,,\n2015,5,6,\"DL\",\"1394\",\"ATL\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,150.00,102.00,760.00,,,,,,\n2015,5,6,\"DL\",\"1419\",\"ATL\",\"JFK\",5.00,-23.00,0.00,\"\",0.00,127.00,105.00,760.00,,,,,,\n2015,5,6,\"DL\",\"1428\",\"LGA\",\"ATL\",-4.00,0.00,0.00,\"\",0.00,162.00,105.00,762.00,,,,,,\n2015,5,7,\"DL\",\"964\",\"LGA\",\"ATL\",-6.00,-23.00,0.00,\"\",0.00,129.00,99.00,762.00,,,,,,\n2015,5,7,\"DL\",\"965\",\"MCO\",\"LGA\",11.00,2.00,0.00,\"\",0.00,152.00,129.00,950.00,,,,,,\n2015,5,7,\"DL\",\"971\",\"LGA\",\"DEN\",-14.00,-23.00,0.00,\"\",0.00,258.00,227.00,1620.00,,,,,,\n2015,5,7,\"DL\",\"986\",\"ATL\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,135.00,103.00,762.00,,,,,,\n2015,5,7,\"DL\",\"997\",\"DTW\",\"LGA\",-5.00,5.00,0.00,\"\",0.00,114.00,77.00,502.00,,,,,,\n2015,5,7,\"DL\",\"1086\",\"LGA\",\"ATL\",-6.00,-11.00,0.00,\"\",0.00,157.00,121.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1088\",\"FLL\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,179.00,150.00,1076.00,,,,,,\n2015,5,7,\"DL\",\"1109\",\"SEA\",\"JFK\",16.00,4.00,0.00,\"\",0.00,323.00,299.00,2422.00,,,,,,\n2015,5,7,\"DL\",\"1111\",\"ATL\",\"ROC\",0.00,-13.00,0.00,\"\",0.00,117.00,95.00,749.00,,,,,,\n2015,5,7,\"DL\",\"1121\",\"PBI\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,172.00,144.00,1035.00,,,,,,\n2015,5,7,\"DL\",\"1131\",\"LGA\",\"FLL\",-6.00,-9.00,0.00,\"\",0.00,189.00,151.00,1076.00,,,,,,\n2015,5,7,\"DL\",\"1145\",\"LGA\",\"DTW\",-1.00,-26.00,0.00,\"\",0.00,99.00,77.00,502.00,,,,,,\n2015,5,7,\"DL\",\"1155\",\"DTW\",\"ROC\",-3.00,-5.00,0.00,\"\",0.00,69.00,44.00,296.00,,,,,,\n2015,5,7,\"DL\",\"1159\",\"ATL\",\"BUF\",-4.00,-20.00,0.00,\"\",0.00,106.00,93.00,712.00,,,,,,\n2015,5,7,\"DL\",\"1159\",\"BUF\",\"ATL\",-6.00,-16.00,0.00,\"\",0.00,119.00,99.00,712.00,,,,,,\n2015,5,7,\"DL\",\"1162\",\"LAX\",\"JFK\",34.00,71.00,0.00,\"\",0.00,362.00,341.00,2475.00,34.00,0.00,37.00,0.00,0.00,\n2015,5,7,\"DL\",\"1174\",\"LGA\",\"PBI\",-2.00,-28.00,0.00,\"\",0.00,154.00,136.00,1035.00,,,,,,\n2015,5,7,\"DL\",\"1176\",\"ATL\",\"BUF\",2.00,-5.00,0.00,\"\",0.00,123.00,96.00,712.00,,,,,,\n2015,5,7,\"DL\",\"1176\",\"BUF\",\"ATL\",-1.00,-16.00,0.00,\"\",0.00,119.00,96.00,712.00,,,,,,\n2015,5,7,\"DL\",\"1186\",\"ATL\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,133.00,105.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1214\",\"LGA\",\"ATL\",11.00,-18.00,0.00,\"\",0.00,135.00,112.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1227\",\"PHX\",\"JFK\",-2.00,,0.00,\"\",1.00,,,2153.00,,,,,,\n2015,5,7,\"DL\",\"1242\",\"LGA\",\"PBI\",-1.00,-18.00,0.00,\"\",0.00,167.00,144.00,1035.00,,,,,,\n2015,5,7,\"DL\",\"1262\",\"LAX\",\"JFK\",133.00,136.00,0.00,\"\",0.00,336.00,308.00,2475.00,0.00,0.00,4.00,0.00,132.00,\n2015,5,7,\"DL\",\"1264\",\"SLC\",\"JFK\",2.00,35.00,0.00,\"\",0.00,306.00,275.00,1990.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,7,\"DL\",\"1266\",\"BUF\",\"ATL\",-3.00,-3.00,0.00,\"\",0.00,122.00,104.00,712.00,,,,,,\n2015,5,7,\"DL\",\"1269\",\"LGA\",\"MIA\",4.00,-9.00,0.00,\"\",0.00,184.00,152.00,1096.00,,,,,,\n2015,5,7,\"DL\",\"1278\",\"MSP\",\"BUF\",1.00,-4.00,0.00,\"\",0.00,114.00,98.00,735.00,,,,,,\n2015,5,7,\"DL\",\"1286\",\"ATL\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,124.00,105.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1288\",\"LGA\",\"FLL\",-2.00,-18.00,0.00,\"\",0.00,179.00,152.00,1076.00,,,,,,\n2015,5,7,\"DL\",\"1289\",\"LGA\",\"ATL\",17.00,-12.00,0.00,\"\",0.00,133.00,106.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1298\",\"LGA\",\"ATL\",0.00,-21.00,0.00,\"\",0.00,140.00,106.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1306\",\"DTW\",\"LGA\",0.00,21.00,0.00,\"\",0.00,128.00,91.00,502.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,7,\"DL\",\"1312\",\"TPA\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,155.00,136.00,1005.00,,,,,,\n2015,5,7,\"DL\",\"1335\",\"MIA\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,171.00,150.00,1096.00,,,,,,\n2015,5,7,\"DL\",\"1356\",\"BUF\",\"DTW\",-2.00,-7.00,0.00,\"\",0.00,66.00,48.00,241.00,,,,,,\n2015,5,7,\"DL\",\"1359\",\"MCO\",\"LGA\",2.00,-8.00,0.00,\"\",0.00,153.00,128.00,950.00,,,,,,\n2015,5,7,\"DL\",\"1370\",\"ATL\",\"ROC\",0.00,-9.00,0.00,\"\",0.00,116.00,102.00,749.00,,,,,,\n2015,5,7,\"DL\",\"1370\",\"ROC\",\"ATL\",-7.00,-16.00,0.00,\"\",0.00,125.00,101.00,749.00,,,,,,\n2015,5,7,\"DL\",\"1372\",\"DTW\",\"BUF\",-3.00,-9.00,0.00,\"\",0.00,57.00,38.00,241.00,,,,,,\n2015,5,7,\"DL\",\"1383\",\"LGA\",\"ATL\",-2.00,-32.00,0.00,\"\",0.00,138.00,107.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1386\",\"ATL\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,122.00,105.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1394\",\"ATL\",\"JFK\",4.00,-23.00,0.00,\"\",0.00,126.00,107.00,760.00,,,,,,\n2015,5,7,\"DL\",\"1419\",\"ATL\",\"JFK\",3.00,-23.00,0.00,\"\",0.00,129.00,107.00,760.00,,,,,,\n2015,5,7,\"DL\",\"1428\",\"LGA\",\"ATL\",1.00,-21.00,0.00,\"\",0.00,136.00,106.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1447\",\"LGA\",\"ATL\",-1.00,-9.00,0.00,\"\",0.00,136.00,105.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1473\",\"SEA\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,315.00,295.00,2422.00,,,,,,\n2015,5,7,\"DL\",\"1486\",\"ATL\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,128.00,103.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1487\",\"ATL\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,126.00,107.00,760.00,,,,,,\n2015,5,7,\"DL\",\"1496\",\"MSP\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,159.00,137.00,1020.00,,,,,,\n2015,5,7,\"DL\",\"1498\",\"FLL\",\"LGA\",-10.00,-18.00,0.00,\"\",0.00,172.00,149.00,1076.00,,,,,,\n2015,5,7,\"DL\",\"1514\",\"LGA\",\"FLL\",-3.00,-15.00,0.00,\"\",0.00,177.00,148.00,1076.00,,,,,,\n2015,5,7,\"DL\",\"1515\",\"ATL\",\"ALB\",-7.00,-26.00,0.00,\"\",0.00,128.00,110.00,853.00,,,,,,\n2015,5,7,\"DL\",\"1526\",\"MCO\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,154.00,127.00,950.00,,,,,,\n2015,5,7,\"DL\",\"1542\",\"SEA\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,305.00,283.00,2422.00,,,,,,\n2015,5,7,\"DL\",\"1543\",\"ATL\",\"ALB\",-10.00,-6.00,0.00,\"\",0.00,148.00,117.00,853.00,,,,,,\n2015,5,7,\"DL\",\"1543\",\"ALB\",\"ATL\",4.00,-17.00,0.00,\"\",0.00,141.00,122.00,853.00,,,,,,\n2015,5,7,\"DL\",\"1548\",\"LGA\",\"DTW\",20.00,0.00,0.00,\"\",0.00,100.00,77.00,502.00,,,,,,\n2015,5,7,\"DL\",\"1560\",\"MSY\",\"LGA\",2.00,-12.00,0.00,\"\",0.00,172.00,154.00,1183.00,,,,,,\n2015,5,7,\"DL\",\"1562\",\"BOS\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,68.00,46.00,187.00,,,,,,\n2015,5,7,\"DL\",\"1566\",\"LGA\",\"PBI\",241.00,208.00,0.00,\"\",0.00,150.00,129.00,1035.00,208.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"DL\",\"1580\",\"LGA\",\"DTW\",-2.00,-9.00,0.00,\"\",0.00,118.00,83.00,502.00,,,,,,\n2015,5,7,\"DL\",\"1583\",\"SFO\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,338.00,311.00,2586.00,,,,,,\n2015,5,7,\"DL\",\"1584\",\"ATL\",\"ROC\",-2.00,-28.00,0.00,\"\",0.00,107.00,93.00,749.00,,,,,,\n2015,5,7,\"DL\",\"1584\",\"ROC\",\"ATL\",5.00,-2.00,0.00,\"\",0.00,128.00,107.00,749.00,,,,,,\n2015,5,7,\"DL\",\"1586\",\"ATL\",\"LGA\",1.00,-4.00,0.00,\"\",0.00,139.00,99.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1596\",\"MSP\",\"LGA\",0.00,27.00,0.00,\"\",0.00,192.00,162.00,1020.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,7,\"DL\",\"1644\",\"FLL\",\"JFK\",-7.00,-32.00,0.00,\"\",0.00,162.00,142.00,1069.00,,,,,,\n2015,5,7,\"DL\",\"1647\",\"LGA\",\"ATL\",-1.00,-21.00,0.00,\"\",0.00,132.00,108.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1671\",\"MIA\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,168.00,142.00,1089.00,,,,,,\n2015,5,7,\"DL\",\"1672\",\"ATL\",\"BUF\",-3.00,2.00,0.00,\"\",0.00,124.00,97.00,712.00,,,,,,\n2015,5,7,\"DL\",\"1672\",\"BUF\",\"ATL\",1.00,-9.00,0.00,\"\",0.00,118.00,94.00,712.00,,,,,,\n2015,5,7,\"DL\",\"1685\",\"LGA\",\"MCO\",-2.00,-12.00,0.00,\"\",0.00,165.00,132.00,950.00,,,,,,\n2015,5,7,\"DL\",\"1697\",\"LGA\",\"ATL\",-5.00,-15.00,0.00,\"\",0.00,148.00,104.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1728\",\"LAS\",\"JFK\",13.00,33.00,0.00,\"\",0.00,321.00,293.00,2248.00,13.00,0.00,20.00,0.00,0.00,\n2015,5,7,\"DL\",\"1750\",\"ATL\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,137.00,111.00,760.00,,,,,,\n2015,5,7,\"DL\",\"1762\",\"LAX\",\"JFK\",6.00,22.00,0.00,\"\",0.00,351.00,298.00,2475.00,6.00,0.00,16.00,0.00,0.00,\n2015,5,7,\"DL\",\"1779\",\"LGA\",\"MSY\",-1.00,-32.00,0.00,\"\",0.00,168.00,154.00,1183.00,,,,,,\n2015,5,7,\"DL\",\"1786\",\"ATL\",\"LGA\",0.00,-23.00,0.00,\"\",0.00,118.00,100.00,762.00,,,,,,\n2015,5,7,\"DL\",\"1796\",\"LGA\",\"MSP\",1.00,-27.00,0.00,\"\",0.00,170.00,149.00,1020.00,,,,,,\n2015,5,8,\"DL\",\"1370\",\"ATL\",\"ROC\",-1.00,-4.00,0.00,\"\",0.00,122.00,102.00,749.00,,,,,,\n2015,5,8,\"DL\",\"1370\",\"ROC\",\"ATL\",0.00,-19.00,0.00,\"\",0.00,115.00,98.00,749.00,,,,,,\n2015,5,8,\"DL\",\"1372\",\"DTW\",\"BUF\",0.00,4.00,0.00,\"\",0.00,70.00,42.00,241.00,,,,,,\n2015,5,8,\"DL\",\"1383\",\"LGA\",\"ATL\",-2.00,-33.00,0.00,\"\",0.00,137.00,106.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1386\",\"ATL\",\"LGA\",17.00,25.00,0.00,\"\",0.00,142.00,108.00,762.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,8,\"DL\",\"1394\",\"ATL\",\"JFK\",12.00,12.00,0.00,\"\",0.00,153.00,104.00,760.00,,,,,,\n2015,5,8,\"DL\",\"1419\",\"ATL\",\"JFK\",81.00,63.00,0.00,\"\",0.00,137.00,110.00,760.00,0.00,0.00,62.00,0.00,1.00,\n2015,5,8,\"DL\",\"1428\",\"LGA\",\"ATL\",3.00,-33.00,0.00,\"\",0.00,122.00,99.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1447\",\"LGA\",\"ATL\",-3.00,-19.00,0.00,\"\",0.00,128.00,101.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1473\",\"SEA\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,312.00,281.00,2422.00,,,,,,\n2015,5,8,\"DL\",\"1486\",\"ATL\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,128.00,107.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1487\",\"ATL\",\"JFK\",5.00,18.00,0.00,\"\",0.00,157.00,123.00,760.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,8,\"DL\",\"1496\",\"MSP\",\"LGA\",31.00,23.00,0.00,\"\",0.00,158.00,132.00,1020.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,8,\"DL\",\"1498\",\"FLL\",\"LGA\",-6.00,7.00,0.00,\"\",0.00,193.00,169.00,1076.00,,,,,,\n2015,5,8,\"DL\",\"1514\",\"LGA\",\"FLL\",0.00,-11.00,0.00,\"\",0.00,178.00,146.00,1076.00,,,,,,\n2015,5,8,\"DL\",\"1515\",\"ATL\",\"ALB\",-5.00,-16.00,0.00,\"\",0.00,136.00,117.00,853.00,,,,,,\n2015,5,8,\"DL\",\"1526\",\"MCO\",\"LGA\",-3.00,7.00,0.00,\"\",0.00,169.00,150.00,950.00,,,,,,\n2015,5,8,\"DL\",\"1542\",\"SEA\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,306.00,280.00,2422.00,,,,,,\n2015,5,8,\"DL\",\"1543\",\"ATL\",\"ALB\",-2.00,-17.00,0.00,\"\",0.00,129.00,114.00,853.00,,,,,,\n2015,5,8,\"DL\",\"1543\",\"ALB\",\"ATL\",-5.00,-28.00,0.00,\"\",0.00,139.00,114.00,853.00,,,,,,\n2015,5,8,\"DL\",\"1548\",\"LGA\",\"DTW\",-2.00,-11.00,0.00,\"\",0.00,111.00,76.00,502.00,,,,,,\n2015,5,8,\"DL\",\"1560\",\"MSY\",\"LGA\",2.00,-13.00,0.00,\"\",0.00,171.00,152.00,1183.00,,,,,,\n2015,5,8,\"DL\",\"1562\",\"BOS\",\"JFK\",70.00,66.00,0.00,\"\",0.00,75.00,50.00,187.00,0.00,0.00,50.00,0.00,16.00,\n2015,5,8,\"DL\",\"1566\",\"LGA\",\"PBI\",5.00,-2.00,0.00,\"\",0.00,176.00,139.00,1035.00,,,,,,\n2015,5,8,\"DL\",\"1580\",\"LGA\",\"DTW\",-2.00,-16.00,0.00,\"\",0.00,111.00,80.00,502.00,,,,,,\n2015,5,8,\"DL\",\"1583\",\"SFO\",\"JFK\",3.00,-7.00,0.00,\"\",0.00,339.00,296.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"1584\",\"ATL\",\"ROC\",42.00,29.00,0.00,\"\",0.00,120.00,96.00,749.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"1584\",\"ROC\",\"ATL\",29.00,8.00,0.00,\"\",0.00,114.00,93.00,749.00,,,,,,\n2015,5,8,\"DL\",\"1586\",\"ATL\",\"LGA\",39.00,23.00,0.00,\"\",0.00,128.00,106.00,762.00,12.00,0.00,0.00,0.00,11.00,\n2015,5,8,\"DL\",\"1596\",\"MSP\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,148.00,136.00,1020.00,,,,,,\n2015,5,1,\"AA\",\"1472\",\"LGA\",\"ORD\",-8.00,-34.00,0.00,\"\",0.00,137.00,105.00,733.00,,,,,,\n2015,5,3,\"AA\",\"1472\",\"LGA\",\"ORD\",-2.00,-10.00,0.00,\"\",0.00,155.00,111.00,733.00,,,,,,\n2015,5,4,\"AA\",\"1472\",\"LGA\",\"ORD\",-4.00,-29.00,0.00,\"\",0.00,138.00,113.00,733.00,,,,,,\n2015,5,5,\"AA\",\"1472\",\"LGA\",\"ORD\",-10.00,-17.00,0.00,\"\",0.00,156.00,120.00,733.00,,,,,,\n2015,5,6,\"AA\",\"1472\",\"LGA\",\"ORD\",-4.00,-9.00,0.00,\"\",0.00,158.00,118.00,733.00,,,,,,\n2015,5,7,\"AA\",\"1472\",\"LGA\",\"ORD\",0.00,-32.00,0.00,\"\",0.00,131.00,109.00,733.00,,,,,,\n2015,5,8,\"AA\",\"1472\",\"LGA\",\"ORD\",0.00,-7.00,0.00,\"\",0.00,156.00,109.00,733.00,,,,,,\n2015,5,10,\"AA\",\"1472\",\"LGA\",\"ORD\",-7.00,-8.00,0.00,\"\",0.00,162.00,115.00,733.00,,,,,,\n2015,5,11,\"AA\",\"1472\",\"LGA\",\"ORD\",-5.00,-19.00,0.00,\"\",0.00,149.00,112.00,733.00,,,,,,\n2015,5,12,\"AA\",\"1472\",\"LGA\",\"ORD\",-10.00,5.00,0.00,\"\",0.00,178.00,133.00,733.00,,,,,,\n2015,5,13,\"AA\",\"1472\",\"LGA\",\"ORD\",1.00,-10.00,0.00,\"\",0.00,152.00,121.00,733.00,,,,,,\n2015,5,14,\"AA\",\"1472\",\"LGA\",\"ORD\",-5.00,0.00,0.00,\"\",0.00,168.00,117.00,733.00,,,,,,\n2015,5,15,\"AA\",\"1472\",\"LGA\",\"ORD\",-12.00,-33.00,0.00,\"\",0.00,142.00,114.00,733.00,,,,,,\n2015,5,17,\"AA\",\"1472\",\"LGA\",\"ORD\",-5.00,-29.00,0.00,\"\",0.00,139.00,112.00,733.00,,,,,,\n2015,5,18,\"AA\",\"1472\",\"LGA\",\"ORD\",179.00,198.00,0.00,\"\",0.00,182.00,130.00,733.00,0.00,0.00,19.00,0.00,179.00,\n2015,5,19,\"AA\",\"1472\",\"LGA\",\"ORD\",-2.00,25.00,0.00,\"\",0.00,190.00,121.00,733.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,20,\"AA\",\"1472\",\"LGA\",\"ORD\",-2.00,-6.00,0.00,\"\",0.00,159.00,125.00,733.00,,,,,,\n2015,5,21,\"AA\",\"1472\",\"LGA\",\"ORD\",-7.00,-22.00,0.00,\"\",0.00,148.00,122.00,733.00,,,,,,\n2015,5,22,\"AA\",\"1472\",\"LGA\",\"ORD\",60.00,43.00,0.00,\"\",0.00,146.00,115.00,733.00,43.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"AA\",\"1472\",\"LGA\",\"ORD\",-4.00,-9.00,0.00,\"\",0.00,158.00,123.00,733.00,,,,,,\n2015,5,25,\"AA\",\"1472\",\"LGA\",\"ORD\",-9.00,-19.00,0.00,\"\",0.00,153.00,114.00,733.00,,,,,,\n2015,5,26,\"AA\",\"1472\",\"LGA\",\"ORD\",-4.00,-26.00,0.00,\"\",0.00,141.00,113.00,733.00,,,,,,\n2015,5,27,\"AA\",\"1472\",\"LGA\",\"ORD\",-9.00,20.00,0.00,\"\",0.00,192.00,128.00,733.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,28,\"AA\",\"1472\",\"LGA\",\"ORD\",-7.00,-22.00,0.00,\"\",0.00,148.00,116.00,733.00,,,,,,\n2015,5,29,\"AA\",\"1472\",\"LGA\",\"ORD\",-2.00,12.00,0.00,\"\",0.00,177.00,114.00,733.00,,,,,,\n2015,5,31,\"AA\",\"1472\",\"LGA\",\"ORD\",-3.00,2.00,0.00,\"\",0.00,168.00,122.00,733.00,,,,,,\n2015,5,7,\"DL\",\"2653\",\"MCO\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,158.00,127.00,944.00,,,,,,\n2015,5,7,\"DL\",\"2665\",\"BOS\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,73.00,45.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2666\",\"LGA\",\"BOS\",-1.00,8.00,0.00,\"\",0.00,75.00,42.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2667\",\"BOS\",\"LGA\",-4.00,-3.00,0.00,\"\",0.00,80.00,40.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2668\",\"LGA\",\"BOS\",-1.00,-9.00,0.00,\"\",0.00,63.00,41.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2669\",\"BOS\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,72.00,42.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2670\",\"LGA\",\"BOS\",-4.00,-12.00,0.00,\"\",0.00,59.00,40.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2671\",\"BOS\",\"LGA\",16.00,22.00,0.00,\"\",0.00,85.00,42.00,184.00,0.00,0.00,6.00,0.00,16.00,\n2015,5,7,\"DL\",\"2672\",\"LGA\",\"BOS\",-3.00,-17.00,0.00,\"\",0.00,68.00,41.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2673\",\"BOS\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,63.00,42.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2674\",\"LGA\",\"BOS\",-4.00,-12.00,0.00,\"\",0.00,75.00,39.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2675\",\"BOS\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,69.00,42.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2676\",\"LGA\",\"BOS\",13.00,17.00,0.00,\"\",0.00,80.00,43.00,184.00,0.00,0.00,4.00,0.00,13.00,\n2015,5,7,\"DL\",\"2677\",\"BOS\",\"LGA\",-6.00,10.00,0.00,\"\",0.00,91.00,38.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2678\",\"LGA\",\"BOS\",-2.00,-21.00,0.00,\"\",0.00,64.00,35.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2679\",\"BOS\",\"LGA\",7.00,-2.00,0.00,\"\",0.00,68.00,41.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2680\",\"LGA\",\"BOS\",-4.00,-21.00,0.00,\"\",0.00,62.00,34.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2681\",\"BOS\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,63.00,41.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2682\",\"LGA\",\"BOS\",-1.00,-8.00,0.00,\"\",0.00,65.00,35.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2683\",\"BOS\",\"LGA\",83.00,100.00,0.00,\"\",0.00,91.00,41.00,184.00,83.00,0.00,17.00,0.00,0.00,\n2015,5,7,\"DL\",\"2684\",\"LGA\",\"BOS\",-2.00,-5.00,0.00,\"\",0.00,72.00,34.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2685\",\"BOS\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,62.00,40.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2686\",\"LGA\",\"BOS\",-2.00,-28.00,0.00,\"\",0.00,56.00,33.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2687\",\"BOS\",\"LGA\",-2.00,10.00,0.00,\"\",0.00,88.00,42.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2688\",\"LGA\",\"BOS\",103.00,80.00,0.00,\"\",0.00,60.00,40.00,184.00,7.00,0.00,0.00,0.00,73.00,\n2015,5,7,\"DL\",\"2689\",\"BOS\",\"LGA\",40.00,42.00,0.00,\"\",0.00,82.00,42.00,184.00,40.00,0.00,2.00,0.00,0.00,\n2015,5,7,\"DL\",\"2690\",\"LGA\",\"BOS\",17.00,-6.00,0.00,\"\",0.00,62.00,39.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2691\",\"BOS\",\"LGA\",91.00,92.00,0.00,\"\",0.00,78.00,40.00,184.00,18.00,0.00,1.00,0.00,73.00,\n2015,5,7,\"DL\",\"2692\",\"LGA\",\"BOS\",6.00,18.00,0.00,\"\",0.00,91.00,52.00,184.00,0.00,0.00,12.00,0.00,6.00,\n2015,5,7,\"DL\",\"2693\",\"BOS\",\"LGA\",-3.00,5.00,0.00,\"\",0.00,86.00,41.00,184.00,,,,,,\n2015,5,7,\"DL\",\"2694\",\"LGA\",\"BOS\",24.00,36.00,0.00,\"\",0.00,90.00,40.00,184.00,6.00,0.00,12.00,0.00,18.00,\n2015,5,7,\"DL\",\"2696\",\"LGA\",\"BOS\",8.00,26.00,0.00,\"\",0.00,86.00,40.00,184.00,8.00,0.00,18.00,0.00,0.00,\n2015,5,7,\"DL\",\"2699\",\"BOS\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,73.00,40.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2\",\"JFK\",\"PDX\",16.00,6.00,0.00,\"\",0.00,368.00,327.00,2454.00,,,,,,\n2015,5,8,\"DL\",\"42\",\"MIA\",\"JFK\",57.00,62.00,0.00,\"\",0.00,194.00,170.00,1089.00,57.00,0.00,5.00,0.00,0.00,\n2015,5,8,\"DL\",\"208\",\"JFK\",\"MCO\",19.00,-11.00,0.00,\"\",0.00,157.00,119.00,944.00,,,,,,\n2015,5,8,\"DL\",\"221\",\"LGA\",\"ATL\",21.00,-2.00,0.00,\"\",0.00,142.00,104.00,762.00,,,,,,\n2015,5,8,\"DL\",\"234\",\"PIT\",\"JFK\",30.00,18.00,0.00,\"\",0.00,88.00,59.00,340.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,8,\"DL\",\"326\",\"SJU\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,226.00,201.00,1598.00,,,,,,\n2015,5,8,\"DL\",\"332\",\"SJU\",\"JFK\",-16.00,-40.00,0.00,\"\",0.00,222.00,200.00,1598.00,,,,,,\n2015,5,8,\"DL\",\"333\",\"MSP\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,149.00,134.00,1020.00,,,,,,\n2015,5,8,\"DL\",\"342\",\"SFO\",\"JFK\",1.00,-8.00,0.00,\"\",0.00,330.00,302.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"347\",\"LGA\",\"ATL\",4.00,-16.00,0.00,\"\",0.00,136.00,105.00,762.00,,,,,,\n2015,5,8,\"DL\",\"348\",\"SJU\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,227.00,204.00,1598.00,,,,,,\n2015,5,8,\"DL\",\"350\",\"LGA\",\"ATL\",14.00,-2.00,0.00,\"\",0.00,137.00,102.00,762.00,,,,,,\n2015,5,8,\"DL\",\"400\",\"PDX\",\"JFK\",-1.00,-24.00,0.00,\"\",0.00,306.00,289.00,2454.00,,,,,,\n2015,5,8,\"DL\",\"401\",\"AUS\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,225.00,206.00,1521.00,,,,,,\n2015,5,8,\"DL\",\"403\",\"PDX\",\"JFK\",2.00,-5.00,0.00,\"\",0.00,327.00,297.00,2454.00,,,,,,\n2015,5,8,\"DL\",\"404\",\"JFK\",\"ATL\",5.00,-8.00,0.00,\"\",0.00,156.00,103.00,760.00,,,,,,\n2015,5,8,\"DL\",\"405\",\"JFK\",\"TPA\",-1.00,-12.00,0.00,\"\",0.00,160.00,135.00,1005.00,,,,,,\n2015,5,8,\"DL\",\"407\",\"MCO\",\"JFK\",-7.00,-28.00,0.00,\"\",0.00,148.00,126.00,944.00,,,,,,\n2015,5,8,\"DL\",\"409\",\"JFK\",\"SJU\",3.00,15.00,0.00,\"\",0.00,259.00,204.00,1598.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,8,\"DL\",\"410\",\"MSP\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,150.00,128.00,1029.00,,,,,,\n2015,5,8,\"DL\",\"412\",\"LAX\",\"JFK\",1.00,-24.00,0.00,\"\",0.00,314.00,290.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"414\",\"SFO\",\"JFK\",-8.00,-15.00,0.00,\"\",0.00,338.00,303.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"415\",\"JFK\",\"SFO\",-1.00,21.00,0.00,\"\",0.00,430.00,362.00,2586.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,8,\"DL\",\"417\",\"JFK\",\"SEA\",45.00,35.00,0.00,\"\",0.00,372.00,310.00,2422.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"418\",\"SEA\",\"JFK\",3.00,-10.00,0.00,\"\",0.00,315.00,292.00,2422.00,,,,,,\n2015,5,8,\"DL\",\"419\",\"JFK\",\"SEA\",26.00,28.00,0.00,\"\",0.00,381.00,325.00,2422.00,26.00,0.00,2.00,0.00,0.00,\n2015,5,8,\"DL\",\"420\",\"JFK\",\"LAX\",-8.00,-20.00,0.00,\"\",0.00,386.00,331.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"421\",\"JFK\",\"ATL\",15.00,-22.00,0.00,\"\",0.00,130.00,102.00,760.00,,,,,,\n2015,5,8,\"DL\",\"422\",\"JFK\",\"LAX\",80.00,48.00,0.00,\"\",0.00,348.00,310.00,2475.00,0.00,0.00,0.00,0.00,48.00,\n2015,5,8,\"DL\",\"423\",\"JFK\",\"LAX\",1.00,-14.00,0.00,\"\",0.00,358.00,325.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"424\",\"JFK\",\"LAX\",48.00,35.00,0.00,\"\",0.00,357.00,324.00,2475.00,0.00,0.00,0.00,0.00,35.00,\n2015,5,8,\"DL\",\"426\",\"JFK\",\"MCO\",-3.00,-21.00,0.00,\"\",0.00,154.00,126.00,944.00,,,,,,\n2015,5,8,\"DL\",\"427\",\"JFK\",\"LAX\",2.00,-28.00,0.00,\"\",0.00,358.00,311.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"430\",\"JFK\",\"SFO\",-1.00,-30.00,0.00,\"\",0.00,355.00,323.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"431\",\"JFK\",\"SFO\",-2.00,-8.00,0.00,\"\",0.00,403.00,352.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"433\",\"JFK\",\"SLC\",9.00,-20.00,0.00,\"\",0.00,300.00,257.00,1990.00,,,,,,\n2015,5,8,\"DL\",\"434\",\"JFK\",\"SFO\",43.00,-9.00,0.00,\"\",0.00,352.00,327.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"435\",\"JFK\",\"SFO\",15.00,-8.00,0.00,\"\",0.00,381.00,344.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"436\",\"JFK\",\"LAS\",130.00,98.00,0.00,\"\",0.00,318.00,288.00,2248.00,0.00,0.00,0.00,0.00,98.00,\n2015,5,8,\"DL\",\"437\",\"JFK\",\"BOS\",8.00,-6.00,0.00,\"\",0.00,63.00,33.00,187.00,,,,,,\n2015,5,8,\"DL\",\"438\",\"JFK\",\"MCO\",-7.00,-13.00,0.00,\"\",0.00,162.00,128.00,944.00,,,,,,\n2015,5,8,\"DL\",\"439\",\"JFK\",\"MSP\",60.00,37.00,0.00,\"\",0.00,169.00,148.00,1029.00,0.00,0.00,0.00,0.00,37.00,\n2015,5,8,\"DL\",\"440\",\"JFK\",\"PIT\",7.00,-3.00,0.00,\"\",0.00,111.00,61.00,340.00,,,,,,\n2015,5,8,\"DL\",\"441\",\"JFK\",\"MIA\",-4.00,-17.00,0.00,\"\",0.00,168.00,145.00,1089.00,,,,,,\n2015,5,8,\"DL\",\"442\",\"JFK\",\"SJU\",7.00,-1.00,0.00,\"\",0.00,226.00,206.00,1598.00,,,,,,\n2015,5,8,\"DL\",\"443\",\"JFK\",\"LAS\",13.00,24.00,0.00,\"\",0.00,365.00,298.00,2248.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,8,\"DL\",\"444\",\"SLC\",\"JFK\",9.00,-13.00,0.00,\"\",0.00,258.00,234.00,1990.00,,,,,,\n2015,5,8,\"DL\",\"445\",\"JFK\",\"SAN\",2.00,-31.00,0.00,\"\",0.00,342.00,322.00,2446.00,,,,,,\n2015,5,8,\"DL\",\"447\",\"JFK\",\"LAX\",32.00,30.00,0.00,\"\",0.00,388.00,340.00,2475.00,29.00,0.00,0.00,0.00,1.00,\n2015,5,8,\"DL\",\"448\",\"JFK\",\"SEA\",-3.00,-9.00,0.00,\"\",0.00,354.00,319.00,2422.00,,,,,,\n2015,5,8,\"DL\",\"453\",\"JFK\",\"CHS\",57.00,30.00,0.00,\"\",0.00,112.00,83.00,636.00,0.00,0.00,0.00,0.00,30.00,\n2015,5,8,\"DL\",\"454\",\"JFK\",\"STT\",-6.00,-18.00,0.00,\"\",0.00,234.00,200.00,1623.00,,,,,,\n2015,5,8,\"DL\",\"455\",\"JFK\",\"SAN\",9.00,-3.00,0.00,\"\",0.00,366.00,327.00,2446.00,,,,,,\n2015,5,8,\"DL\",\"456\",\"JFK\",\"SEA\",-7.00,-14.00,0.00,\"\",0.00,356.00,319.00,2422.00,,,,,,\n2015,5,8,\"DL\",\"458\",\"JFK\",\"LAS\",1.00,5.00,0.00,\"\",0.00,357.00,304.00,2248.00,,,,,,\n2015,5,8,\"DL\",\"459\",\"JFK\",\"CHS\",3.00,-12.00,0.00,\"\",0.00,121.00,99.00,636.00,,,,,,\n2015,5,8,\"DL\",\"460\",\"JFK\",\"SLC\",22.00,20.00,0.00,\"\",0.00,323.00,272.00,1990.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"463\",\"JFK\",\"LAS\",3.00,-18.00,0.00,\"\",0.00,335.00,293.00,2248.00,,,,,,\n2015,5,8,\"DL\",\"465\",\"JFK\",\"ATL\",-5.00,-5.00,0.00,\"\",0.00,152.00,101.00,760.00,,,,,,\n2015,5,8,\"DL\",\"466\",\"SLC\",\"JFK\",12.00,-6.00,0.00,\"\",0.00,259.00,234.00,1990.00,,,,,,\n2015,5,8,\"DL\",\"468\",\"SFO\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,346.00,313.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"469\",\"JFK\",\"SFO\",20.00,0.00,0.00,\"\",0.00,370.00,334.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"472\",\"JFK\",\"LAX\",-2.00,-23.00,0.00,\"\",0.00,361.00,325.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"476\",\"LAX\",\"JFK\",2.00,-5.00,0.00,\"\",0.00,328.00,292.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"477\",\"JFK\",\"LAX\",4.00,-23.00,0.00,\"\",0.00,368.00,325.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"478\",\"ATL\",\"JFK\",18.00,-3.00,0.00,\"\",0.00,131.00,105.00,760.00,,,,,,\n2015,5,8,\"DL\",\"480\",\"JFK\",\"SJU\",16.00,0.00,0.00,\"\",0.00,222.00,198.00,1598.00,,,,,,\n2015,5,8,\"DL\",\"482\",\"JFK\",\"AUS\",5.00,-14.00,0.00,\"\",0.00,245.00,200.00,1521.00,,,,,,\n2015,5,8,\"DL\",\"486\",\"JFK\",\"LAS\",-6.00,-9.00,0.00,\"\",0.00,329.00,298.00,2248.00,,,,,,\n2015,5,8,\"DL\",\"488\",\"JFK\",\"SJU\",-1.00,14.00,0.00,\"\",0.00,242.00,203.00,1598.00,,,,,,\n2015,5,8,\"DL\",\"491\",\"JFK\",\"FLL\",37.00,19.00,0.00,\"\",0.00,166.00,143.00,1069.00,4.00,0.00,0.00,0.00,15.00,\n2015,5,8,\"DL\",\"492\",\"JFK\",\"SJU\",-3.00,-18.00,0.00,\"\",0.00,227.00,200.00,1598.00,,,,,,\n2015,5,8,\"DL\",\"494\",\"JFK\",\"SLC\",14.00,2.00,0.00,\"\",0.00,293.00,273.00,1990.00,,,,,,\n2015,5,8,\"DL\",\"496\",\"JFK\",\"BOS\",-2.00,-4.00,0.00,\"\",0.00,81.00,44.00,187.00,,,,,,\n2015,5,8,\"DL\",\"497\",\"JFK\",\"ATL\",32.00,2.00,0.00,\"\",0.00,123.00,99.00,760.00,,,,,,\n2015,5,8,\"DL\",\"498\",\"JFK\",\"SFO\",-7.00,-12.00,0.00,\"\",0.00,403.00,350.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"499\",\"JFK\",\"SLC\",137.00,132.00,0.00,\"\",0.00,305.00,260.00,1990.00,132.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"511\",\"SJU\",\"JFK\",-6.00,-34.00,0.00,\"\",0.00,221.00,202.00,1598.00,,,,,,\n2015,5,8,\"DL\",\"527\",\"RSW\",\"JFK\",-9.00,-3.00,0.00,\"\",0.00,170.00,149.00,1074.00,,,,,,\n2015,5,8,\"DL\",\"528\",\"LGA\",\"MSP\",14.00,-8.00,0.00,\"\",0.00,163.00,148.00,1020.00,,,,,,\n2015,5,8,\"DL\",\"541\",\"LAS\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,302.00,285.00,2248.00,,,,,,\n2015,5,8,\"DL\",\"544\",\"ALB\",\"ATL\",-1.00,-28.00,0.00,\"\",0.00,128.00,113.00,853.00,,,,,,\n2015,5,8,\"DL\",\"582\",\"DTW\",\"LGA\",9.00,5.00,0.00,\"\",0.00,103.00,84.00,502.00,,,,,,\n2015,5,8,\"DL\",\"583\",\"LGA\",\"DTW\",-1.00,-1.00,0.00,\"\",0.00,114.00,80.00,502.00,,,,,,\n2015,5,8,\"DL\",\"662\",\"BUF\",\"MSP\",-4.00,-25.00,0.00,\"\",0.00,123.00,108.00,735.00,,,,,,\n2015,5,8,\"DL\",\"664\",\"TPA\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,159.00,135.00,1010.00,,,,,,\n2015,5,8,\"DL\",\"665\",\"ATL\",\"ALB\",1.00,-7.00,0.00,\"\",0.00,132.00,114.00,853.00,,,,,,\n2015,5,8,\"DL\",\"665\",\"ALB\",\"ATL\",-2.00,-26.00,0.00,\"\",0.00,128.00,114.00,853.00,,,,,,\n2015,5,8,\"DL\",\"676\",\"STT\",\"JFK\",-8.00,-37.00,0.00,\"\",0.00,223.00,202.00,1623.00,,,,,,\n2015,5,8,\"DL\",\"714\",\"DTW\",\"LGA\",48.00,41.00,0.00,\"\",0.00,99.00,78.00,502.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,8,\"DL\",\"723\",\"ATL\",\"BUF\",-5.00,-15.00,0.00,\"\",0.00,117.00,97.00,712.00,,,,,,\n2015,5,8,\"DL\",\"723\",\"BUF\",\"ATL\",-3.00,-23.00,0.00,\"\",0.00,111.00,94.00,712.00,,,,,,\n2015,5,8,\"DL\",\"725\",\"ATL\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,133.00,115.00,762.00,,,,,,\n2015,5,8,\"DL\",\"729\",\"LAS\",\"JFK\",114.00,148.00,0.00,\"\",0.00,339.00,298.00,2248.00,0.00,0.00,35.00,0.00,113.00,\n2015,5,8,\"DL\",\"731\",\"LGA\",\"DTW\",10.00,8.00,0.00,\"\",0.00,112.00,79.00,502.00,,,,,,\n2015,5,8,\"DL\",\"739\",\"BOS\",\"JFK\",-3.00,1.00,0.00,\"\",0.00,84.00,43.00,187.00,,,,,,\n2015,5,8,\"DL\",\"750\",\"BOS\",\"JFK\",65.00,87.00,0.00,\"\",0.00,102.00,76.00,187.00,0.00,0.00,87.00,0.00,0.00,\n2015,5,8,\"DL\",\"763\",\"BOS\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,69.00,41.00,187.00,,,,,,\n2015,5,8,\"DL\",\"772\",\"PBI\",\"LGA\",-4.00,25.00,0.00,\"\",0.00,199.00,179.00,1035.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,8,\"DL\",\"782\",\"MIA\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,173.00,154.00,1089.00,,,,,,\n2015,5,8,\"DL\",\"787\",\"MCO\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,154.00,129.00,944.00,,,,,,\n2015,5,8,\"DL\",\"789\",\"MIA\",\"LGA\",26.00,16.00,0.00,\"\",0.00,178.00,150.00,1096.00,3.00,0.00,0.00,0.00,13.00,\n2015,5,8,\"DL\",\"791\",\"LAX\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,319.00,286.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"792\",\"PBI\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,164.00,142.00,1028.00,,,,,,\n2015,5,8,\"DL\",\"793\",\"BOS\",\"JFK\",95.00,84.00,0.00,\"\",0.00,83.00,39.00,187.00,0.00,0.00,65.00,0.00,19.00,\n2015,5,8,\"DL\",\"802\",\"ATL\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,131.00,107.00,762.00,,,,,,\n2015,5,8,\"DL\",\"804\",\"LGA\",\"MSP\",1.00,-18.00,0.00,\"\",0.00,175.00,150.00,1020.00,,,,,,\n2015,5,8,\"DL\",\"856\",\"SAN\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,321.00,282.00,2446.00,,,,,,\n2015,5,8,\"DL\",\"871\",\"MSP\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,162.00,135.00,1020.00,,,,,,\n2015,5,8,\"DL\",\"874\",\"LGA\",\"MIA\",0.00,-1.00,0.00,\"\",0.00,204.00,145.00,1096.00,,,,,,\n2015,5,8,\"DL\",\"878\",\"RSW\",\"LGA\",19.00,18.00,0.00,\"\",0.00,171.00,146.00,1080.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,8,\"DL\",\"884\",\"LGA\",\"DEN\",4.00,-23.00,0.00,\"\",0.00,247.00,227.00,1620.00,,,,,,\n2015,5,8,\"DL\",\"889\",\"MSP\",\"LGA\",37.00,39.00,0.00,\"\",0.00,163.00,137.00,1020.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,8,\"DL\",\"904\",\"LGA\",\"ATL\",-2.00,-7.00,0.00,\"\",0.00,144.00,103.00,762.00,,,,,,\n2015,5,8,\"DL\",\"906\",\"ATL\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,144.00,113.00,762.00,,,,,,\n2015,5,8,\"DL\",\"909\",\"LGA\",\"MIA\",34.00,21.00,0.00,\"\",0.00,181.00,150.00,1096.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,8,\"DL\",\"910\",\"MCO\",\"LGA\",-4.00,,0.00,\"\",1.00,,,950.00,,,,,,\n2015,5,8,\"DL\",\"928\",\"DEN\",\"LGA\",53.00,46.00,0.00,\"\",0.00,229.00,199.00,1620.00,0.00,46.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"939\",\"MCO\",\"LGA\",1.00,-4.00,0.00,\"\",0.00,158.00,131.00,950.00,,,,,,\n2015,5,8,\"DL\",\"964\",\"LGA\",\"ATL\",0.00,-17.00,0.00,\"\",0.00,129.00,99.00,762.00,,,,,,\n2015,5,8,\"DL\",\"965\",\"MCO\",\"LGA\",37.00,33.00,0.00,\"\",0.00,157.00,130.00,950.00,0.00,0.00,0.00,0.00,33.00,\n2015,5,8,\"DL\",\"971\",\"LGA\",\"DEN\",-2.00,3.00,0.00,\"\",0.00,272.00,224.00,1620.00,,,,,,\n2015,5,8,\"DL\",\"986\",\"ATL\",\"LGA\",3.00,1.00,0.00,\"\",0.00,131.00,108.00,762.00,,,,,,\n2015,5,8,\"DL\",\"997\",\"DTW\",\"LGA\",67.00,75.00,0.00,\"\",0.00,112.00,81.00,502.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,8,\"DL\",\"1086\",\"LGA\",\"ATL\",27.00,-6.00,0.00,\"\",0.00,129.00,102.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1088\",\"FLL\",\"LGA\",41.00,50.00,0.00,\"\",0.00,186.00,152.00,1076.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,8,\"DL\",\"1109\",\"SEA\",\"JFK\",41.00,24.00,0.00,\"\",0.00,318.00,293.00,2422.00,0.00,0.00,0.00,0.00,24.00,\n2015,5,8,\"DL\",\"1111\",\"ATL\",\"ROC\",69.00,52.00,0.00,\"\",0.00,112.00,95.00,749.00,52.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"1121\",\"PBI\",\"LGA\",-2.00,3.00,0.00,\"\",0.00,178.00,140.00,1035.00,,,,,,\n2015,5,8,\"DL\",\"1131\",\"LGA\",\"FLL\",23.00,7.00,0.00,\"\",0.00,176.00,157.00,1076.00,,,,,,\n2015,5,8,\"DL\",\"1145\",\"LGA\",\"DTW\",38.00,17.00,0.00,\"\",0.00,103.00,75.00,502.00,3.00,0.00,0.00,0.00,14.00,\n2015,5,8,\"DL\",\"1155\",\"DTW\",\"ROC\",5.00,-3.00,0.00,\"\",0.00,63.00,42.00,296.00,,,,,,\n2015,5,8,\"DL\",\"1159\",\"ATL\",\"BUF\",-5.00,-7.00,0.00,\"\",0.00,120.00,101.00,712.00,,,,,,\n2015,5,8,\"DL\",\"1159\",\"BUF\",\"ATL\",9.00,-11.00,0.00,\"\",0.00,109.00,94.00,712.00,,,,,,\n2015,5,8,\"DL\",\"1162\",\"LAX\",\"JFK\",-3.00,-1.00,0.00,\"\",0.00,327.00,307.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"1174\",\"LGA\",\"PBI\",48.00,53.00,0.00,\"\",0.00,185.00,139.00,1035.00,0.00,0.00,5.00,0.00,48.00,\n2015,5,8,\"DL\",\"1176\",\"ATL\",\"BUF\",80.00,72.00,0.00,\"\",0.00,122.00,93.00,712.00,72.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"1176\",\"BUF\",\"ATL\",69.00,39.00,0.00,\"\",0.00,104.00,87.00,712.00,0.00,0.00,0.00,0.00,39.00,\n2015,5,8,\"DL\",\"1186\",\"ATL\",\"LGA\",16.00,15.00,0.00,\"\",0.00,140.00,110.00,762.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,8,\"DL\",\"1214\",\"LGA\",\"ATL\",8.00,-22.00,0.00,\"\",0.00,134.00,102.00,762.00,,,,,,\n2015,5,7,\"DL\",\"2214\",\"ATL\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,129.00,103.00,762.00,,,,,,\n2015,5,7,\"DL\",\"2217\",\"JFK\",\"BOS\",-3.00,-17.00,0.00,\"\",0.00,78.00,42.00,187.00,,,,,,\n2015,5,7,\"DL\",\"2230\",\"CHS\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,114.00,89.00,636.00,,,,,,\n2015,5,7,\"DL\",\"2231\",\"DTW\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,101.00,76.00,502.00,,,,,,\n2015,5,7,\"DL\",\"2240\",\"SFO\",\"JFK\",-2.00,,0.00,\"\",1.00,,,2586.00,,,,,,\n2015,5,7,\"DL\",\"2248\",\"DTW\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,110.00,82.00,502.00,,,,,,\n2015,5,7,\"DL\",\"2262\",\"LAX\",\"JFK\",19.00,-1.00,0.00,\"\",0.00,314.00,291.00,2475.00,,,,,,\n2015,5,7,\"DL\",\"2263\",\"JFK\",\"MIA\",-2.00,-6.00,0.00,\"\",0.00,206.00,184.00,1089.00,,,,,,\n2015,5,7,\"DL\",\"2270\",\"LGA\",\"RSW\",-1.00,-10.00,0.00,\"\",0.00,187.00,156.00,1080.00,,,,,,\n2015,5,7,\"DL\",\"2276\",\"MCO\",\"JFK\",5.00,7.00,0.00,\"\",0.00,169.00,135.00,944.00,,,,,,\n2015,5,7,\"DL\",\"2277\",\"JFK\",\"TPA\",7.00,-28.00,0.00,\"\",0.00,158.00,137.00,1005.00,,,,,,\n2015,5,7,\"DL\",\"2280\",\"LGA\",\"TPA\",-1.00,-9.00,0.00,\"\",0.00,166.00,139.00,1010.00,,,,,,\n2015,5,7,\"DL\",\"2282\",\"LGA\",\"MCO\",-6.00,-13.00,0.00,\"\",0.00,169.00,126.00,950.00,,,,,,\n2015,5,7,\"DL\",\"2285\",\"LGA\",\"MCO\",-7.00,-10.00,0.00,\"\",0.00,160.00,130.00,950.00,,,,,,\n2015,5,7,\"DL\",\"2292\",\"JFK\",\"PBI\",-5.00,-7.00,0.00,\"\",0.00,185.00,142.00,1028.00,,,,,,\n2015,5,7,\"DL\",\"2296\",\"MSP\",\"LGA\",46.00,41.00,0.00,\"\",0.00,164.00,143.00,1020.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"DL\",\"2299\",\"JFK\",\"SAN\",-5.00,-28.00,0.00,\"\",0.00,352.00,314.00,2446.00,,,,,,\n2015,5,7,\"DL\",\"2301\",\"JFK\",\"SAT\",7.00,-10.00,0.00,\"\",0.00,255.00,213.00,1587.00,,,,,,\n2015,5,7,\"DL\",\"2311\",\"JFK\",\"MIA\",-7.00,-37.00,0.00,\"\",0.00,176.00,144.00,1089.00,,,,,,\n2015,5,7,\"DL\",\"2312\",\"JFK\",\"DTW\",-5.00,-42.00,0.00,\"\",0.00,103.00,81.00,509.00,,,,,,\n2015,5,7,\"DL\",\"2317\",\"PBI\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,164.00,142.00,1035.00,,,,,,\n2015,5,7,\"DL\",\"2319\",\"LGA\",\"MSP\",6.00,-27.00,0.00,\"\",0.00,162.00,142.00,1020.00,,,,,,\n2015,5,7,\"DL\",\"2331\",\"LGA\",\"DTW\",36.00,14.00,0.00,\"\",0.00,102.00,74.00,502.00,,,,,,\n2015,5,7,\"DL\",\"2340\",\"JFK\",\"MCO\",-1.00,-23.00,0.00,\"\",0.00,168.00,128.00,944.00,,,,,,\n2015,5,7,\"DL\",\"2349\",\"DTW\",\"LGA\",27.00,22.00,0.00,\"\",0.00,101.00,75.00,502.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"DL\",\"2350\",\"ATL\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,139.00,103.00,760.00,,,,,,\n2015,5,7,\"DL\",\"2352\",\"LAS\",\"JFK\",8.00,-3.00,0.00,\"\",0.00,302.00,270.00,2248.00,,,,,,\n2015,5,7,\"DL\",\"2362\",\"LAX\",\"JFK\",17.00,26.00,0.00,\"\",0.00,339.00,319.00,2475.00,17.00,0.00,9.00,0.00,0.00,\n2015,5,7,\"DL\",\"2382\",\"JFK\",\"FLL\",17.00,-4.00,0.00,\"\",0.00,180.00,145.00,1069.00,,,,,,\n2015,5,7,\"DL\",\"2386\",\"ATL\",\"LGA\",41.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,7,\"DL\",\"2390\",\"JFK\",\"ATL\",17.00,-14.00,0.00,\"\",0.00,141.00,105.00,760.00,,,,,,\n2015,5,7,\"DL\",\"2395\",\"LGA\",\"PBI\",-4.00,-19.00,0.00,\"\",0.00,165.00,143.00,1035.00,,,,,,\n2015,5,7,\"DL\",\"2400\",\"JFK\",\"SAN\",25.00,23.00,0.00,\"\",0.00,371.00,334.00,2446.00,20.00,0.00,3.00,0.00,0.00,\n2015,5,7,\"DL\",\"2404\",\"SAN\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,328.00,288.00,2446.00,,,,,,\n2015,5,7,\"DL\",\"2405\",\"PHX\",\"JFK\",-7.00,-1.00,0.00,\"\",0.00,303.00,274.00,2153.00,,,,,,\n2015,5,7,\"DL\",\"2406\",\"TPA\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,155.00,137.00,1010.00,,,,,,\n2015,5,7,\"DL\",\"2413\",\"MIA\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,181.00,157.00,1096.00,,,,,,\n2015,5,7,\"DL\",\"2432\",\"DTW\",\"SYR\",1.00,30.00,0.00,\"\",0.00,108.00,52.00,374.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,7,\"DL\",\"2435\",\"JFK\",\"FLL\",-7.00,-23.00,0.00,\"\",0.00,187.00,153.00,1069.00,,,,,,\n2015,5,7,\"DL\",\"2447\",\"DEN\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,230.00,210.00,1626.00,,,,,,\n2015,5,7,\"DL\",\"2450\",\"MCO\",\"LGA\",5.00,1.00,0.00,\"\",0.00,152.00,130.00,950.00,,,,,,\n2015,5,7,\"DL\",\"2464\",\"TPA\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,152.00,135.00,1005.00,,,,,,\n2015,5,7,\"DL\",\"2466\",\"ATL\",\"SYR\",3.00,-6.00,0.00,\"\",0.00,128.00,103.00,794.00,,,,,,\n2015,5,7,\"DL\",\"2466\",\"SYR\",\"ATL\",27.00,29.00,0.00,\"\",0.00,152.00,105.00,794.00,27.00,0.00,2.00,0.00,0.00,\n2015,5,7,\"DL\",\"2473\",\"ATL\",\"BUF\",4.00,-1.00,0.00,\"\",0.00,123.00,97.00,712.00,,,,,,\n2015,5,7,\"DL\",\"2474\",\"JFK\",\"DEN\",9.00,5.00,0.00,\"\",0.00,280.00,242.00,1626.00,,,,,,\n2015,5,7,\"DL\",\"2480\",\"JFK\",\"TPA\",4.00,-2.00,0.00,\"\",0.00,180.00,131.00,1005.00,,,,,,\n2015,5,7,\"DL\",\"2495\",\"MIA\",\"JFK\",23.00,27.00,0.00,\"\",0.00,192.00,147.00,1089.00,9.00,0.00,4.00,0.00,14.00,\n2015,5,7,\"DL\",\"2496\",\"ATL\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,137.00,103.00,762.00,,,,,,\n2015,5,7,\"DL\",\"2498\",\"FLL\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,174.00,151.00,1076.00,,,,,,\n2015,5,7,\"DL\",\"2502\",\"FLL\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,175.00,153.00,1076.00,,,,,,\n2015,5,7,\"DL\",\"2521\",\"SFO\",\"JFK\",0.00,16.00,0.00,\"\",0.00,357.00,318.00,2586.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,7,\"DL\",\"2542\",\"FLL\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,164.00,141.00,1069.00,,,,,,\n2015,5,7,\"DL\",\"2554\",\"DEN\",\"JFK\",5.00,-18.00,0.00,\"\",0.00,218.00,198.00,1626.00,,,,,,\n2015,5,7,\"DL\",\"2565\",\"JFK\",\"MSP\",-4.00,-25.00,0.00,\"\",0.00,188.00,148.00,1029.00,,,,,,\n2015,5,7,\"DL\",\"2567\",\"DTW\",\"ALB\",-7.00,-12.00,0.00,\"\",0.00,83.00,65.00,489.00,,,,,,\n2015,5,7,\"DL\",\"2569\",\"JFK\",\"PHX\",-3.00,-39.00,0.00,\"\",0.00,307.00,285.00,2153.00,,,,,,\n2015,5,7,\"DL\",\"2571\",\"JFK\",\"SLC\",0.00,-28.00,0.00,\"\",0.00,297.00,266.00,1990.00,,,,,,\n2015,5,7,\"DL\",\"2577\",\"JFK\",\"FLL\",15.00,-16.00,0.00,\"\",0.00,174.00,138.00,1069.00,,,,,,\n2015,5,7,\"DL\",\"2593\",\"SAT\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,231.00,216.00,1587.00,,,,,,\n2015,5,7,\"DL\",\"2594\",\"DEN\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,232.00,209.00,1620.00,,,,,,\n2015,5,7,\"DL\",\"2595\",\"FLL\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,178.00,154.00,1076.00,,,,,,\n2015,5,7,\"DL\",\"2596\",\"PBI\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,167.00,146.00,1035.00,,,,,,\n2015,5,7,\"DL\",\"2622\",\"ROC\",\"DTW\",-7.00,-20.00,0.00,\"\",0.00,69.00,48.00,296.00,,,,,,\n2015,5,7,\"DL\",\"2627\",\"JFK\",\"PDX\",-3.00,-38.00,0.00,\"\",0.00,335.00,305.00,2454.00,,,,,,\n2015,5,7,\"DL\",\"2632\",\"JFK\",\"MCO\",-3.00,-9.00,0.00,\"\",0.00,177.00,128.00,944.00,,,,,,\n2015,5,7,\"DL\",\"2634\",\"JFK\",\"BUF\",-1.00,-5.00,0.00,\"\",0.00,99.00,54.00,301.00,,,,,,\n2015,5,7,\"DL\",\"2645\",\"JFK\",\"RSW\",-4.00,-23.00,0.00,\"\",0.00,182.00,153.00,1074.00,,,,,,\n2015,5,7,\"DL\",\"2649\",\"JFK\",\"TPA\",-3.00,-29.00,0.00,\"\",0.00,162.00,135.00,1005.00,,,,,,\n2015,5,7,\"DL\",\"2650\",\"TPA\",\"JFK\",3.00,-7.00,0.00,\"\",0.00,158.00,133.00,1005.00,,,,,,\n2015,5,7,\"DL\",\"2652\",\"TPA\",\"JFK\",-12.00,-8.00,0.00,\"\",0.00,178.00,138.00,1005.00,,,,,,\n2015,5,8,\"DL\",\"2181\",\"LGA\",\"MCO\",46.00,41.00,0.00,\"\",0.00,165.00,126.00,950.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"2185\",\"FLL\",\"JFK\",-9.00,-13.00,0.00,\"\",0.00,169.00,149.00,1069.00,,,,,,\n2015,5,8,\"DL\",\"2186\",\"ATL\",\"LGA\",2.00,0.00,0.00,\"\",0.00,144.00,110.00,762.00,,,,,,\n2015,5,8,\"DL\",\"2190\",\"JFK\",\"MIA\",-4.00,-30.00,0.00,\"\",0.00,176.00,151.00,1089.00,,,,,,\n2015,5,8,\"DL\",\"2214\",\"ATL\",\"LGA\",0.00,47.00,0.00,\"\",0.00,180.00,155.00,762.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,8,\"DL\",\"2217\",\"JFK\",\"BOS\",59.00,39.00,0.00,\"\",0.00,72.00,41.00,187.00,17.00,0.00,0.00,0.00,22.00,\n2015,5,8,\"DL\",\"2230\",\"CHS\",\"JFK\",48.00,41.00,0.00,\"\",0.00,122.00,96.00,636.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"2231\",\"DTW\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,100.00,76.00,502.00,,,,,,\n2015,5,8,\"DL\",\"2240\",\"SFO\",\"JFK\",26.00,10.00,0.00,\"\",0.00,322.00,300.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"2248\",\"DTW\",\"LGA\",7.00,-2.00,0.00,\"\",0.00,99.00,78.00,502.00,,,,,,\n2015,5,8,\"DL\",\"2262\",\"LAX\",\"JFK\",62.00,44.00,0.00,\"\",0.00,316.00,296.00,2475.00,10.00,0.00,0.00,0.00,34.00,\n2015,5,8,\"DL\",\"2263\",\"JFK\",\"MIA\",12.00,8.00,0.00,\"\",0.00,206.00,141.00,1089.00,,,,,,\n2015,5,8,\"DL\",\"2270\",\"LGA\",\"RSW\",-3.00,9.00,0.00,\"\",0.00,208.00,155.00,1080.00,,,,,,\n2015,5,8,\"DL\",\"2276\",\"MCO\",\"JFK\",69.00,59.00,0.00,\"\",0.00,157.00,132.00,944.00,0.00,0.00,59.00,0.00,0.00,\n2015,5,8,\"DL\",\"2277\",\"JFK\",\"TPA\",-3.00,-21.00,0.00,\"\",0.00,175.00,137.00,1005.00,,,,,,\n2015,5,8,\"DL\",\"2280\",\"LGA\",\"TPA\",11.00,28.00,0.00,\"\",0.00,191.00,137.00,1010.00,11.00,0.00,17.00,0.00,0.00,\n2015,5,8,\"DL\",\"2282\",\"LGA\",\"MCO\",49.00,17.00,0.00,\"\",0.00,144.00,123.00,950.00,0.00,0.00,1.00,0.00,16.00,\n2015,5,8,\"DL\",\"2285\",\"LGA\",\"MCO\",-2.00,6.00,0.00,\"\",0.00,171.00,129.00,950.00,,,,,,\n2015,5,8,\"DL\",\"2292\",\"JFK\",\"PBI\",-7.00,-32.00,0.00,\"\",0.00,162.00,141.00,1028.00,,,,,,\n2015,5,8,\"DL\",\"2296\",\"MSP\",\"LGA\",-5.00,-30.00,0.00,\"\",0.00,144.00,131.00,1020.00,,,,,,\n2015,5,8,\"DL\",\"2299\",\"JFK\",\"PHX\",89.00,68.00,0.00,\"\",0.00,315.00,295.00,2153.00,10.00,0.00,0.00,0.00,58.00,\n2015,5,8,\"DL\",\"2301\",\"JFK\",\"SAT\",0.00,-10.00,0.00,\"\",0.00,259.00,217.00,1587.00,,,,,,\n2015,5,8,\"DL\",\"2306\",\"JFK\",\"TPA\",80.00,49.00,0.00,\"\",0.00,155.00,132.00,1005.00,0.00,0.00,0.00,0.00,49.00,\n2015,5,8,\"DL\",\"2311\",\"JFK\",\"MIA\",-8.00,-26.00,0.00,\"\",0.00,188.00,138.00,1089.00,,,,,,\n2015,5,8,\"DL\",\"2312\",\"JFK\",\"DTW\",-6.00,-22.00,0.00,\"\",0.00,124.00,82.00,509.00,,,,,,\n2015,5,8,\"DL\",\"2317\",\"PBI\",\"LGA\",26.00,24.00,0.00,\"\",0.00,171.00,143.00,1035.00,9.00,0.00,0.00,0.00,15.00,\n2015,5,8,\"DL\",\"2319\",\"LGA\",\"MSP\",78.00,45.00,0.00,\"\",0.00,162.00,143.00,1020.00,0.00,0.00,0.00,0.00,45.00,\n2015,5,8,\"DL\",\"2331\",\"LGA\",\"DTW\",-4.00,-10.00,0.00,\"\",0.00,118.00,78.00,502.00,,,,,,\n2015,5,8,\"DL\",\"2340\",\"JFK\",\"MCO\",-4.00,-8.00,0.00,\"\",0.00,186.00,125.00,944.00,,,,,,\n2015,5,8,\"DL\",\"2349\",\"DTW\",\"LGA\",2.00,0.00,0.00,\"\",0.00,104.00,80.00,502.00,,,,,,\n2015,5,8,\"DL\",\"2350\",\"ATL\",\"JFK\",-1.00,9.00,0.00,\"\",0.00,145.00,112.00,760.00,,,,,,\n2015,5,8,\"DL\",\"2352\",\"LAS\",\"JFK\",-3.00,-36.00,0.00,\"\",0.00,280.00,260.00,2248.00,,,,,,\n2015,5,8,\"DL\",\"2354\",\"SLC\",\"JFK\",-6.00,25.00,0.00,\"\",0.00,303.00,283.00,1990.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,8,\"DL\",\"2362\",\"LAX\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,320.00,289.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"2382\",\"JFK\",\"FLL\",6.00,-12.00,0.00,\"\",0.00,183.00,143.00,1069.00,,,,,,\n2015,5,8,\"DL\",\"2386\",\"ATL\",\"LGA\",-11.00,-11.00,0.00,\"\",0.00,138.00,114.00,762.00,,,,,,\n2015,5,8,\"DL\",\"2390\",\"JFK\",\"DEN\",-5.00,-48.00,0.00,\"\",0.00,239.00,217.00,1626.00,,,,,,\n2015,5,8,\"DL\",\"2395\",\"LGA\",\"PBI\",-3.00,4.00,0.00,\"\",0.00,187.00,140.00,1035.00,,,,,,\n2015,5,8,\"DL\",\"2404\",\"SAN\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,310.00,283.00,2446.00,,,,,,\n2015,5,8,\"DL\",\"2405\",\"PHX\",\"JFK\",72.00,50.00,0.00,\"\",0.00,273.00,248.00,2153.00,6.00,0.00,0.00,0.00,44.00,\n2015,5,8,\"DL\",\"2406\",\"TPA\",\"LGA\",46.00,46.00,0.00,\"\",0.00,158.00,135.00,1010.00,0.00,0.00,2.00,0.00,44.00,\n2015,5,8,\"DL\",\"2413\",\"MIA\",\"LGA\",30.00,26.00,0.00,\"\",0.00,180.00,149.00,1096.00,0.00,16.00,0.00,0.00,10.00,\n2015,5,8,\"DL\",\"2424\",\"JFK\",\"ATL\",-3.00,-33.00,0.00,\"\",0.00,142.00,99.00,760.00,,,,,,\n2015,5,8,\"DL\",\"2432\",\"DTW\",\"SYR\",20.00,13.00,0.00,\"\",0.00,72.00,49.00,374.00,,,,,,\n2015,5,8,\"DL\",\"2435\",\"JFK\",\"FLL\",-6.00,-36.00,0.00,\"\",0.00,173.00,148.00,1069.00,,,,,,\n2015,5,8,\"DL\",\"2447\",\"DEN\",\"JFK\",-2.00,,0.00,\"\",1.00,,,1626.00,,,,,,\n2015,5,8,\"DL\",\"2450\",\"MCO\",\"LGA\",21.00,15.00,0.00,\"\",0.00,150.00,131.00,950.00,0.00,0.00,12.00,0.00,3.00,\n2015,5,8,\"DL\",\"2464\",\"TPA\",\"JFK\",-2.00,0.00,0.00,\"\",0.00,166.00,144.00,1005.00,,,,,,\n2015,5,8,\"DL\",\"2466\",\"ATL\",\"SYR\",1.00,-16.00,0.00,\"\",0.00,120.00,107.00,794.00,,,,,,\n2015,5,8,\"DL\",\"2466\",\"SYR\",\"ATL\",5.00,-23.00,0.00,\"\",0.00,122.00,100.00,794.00,,,,,,\n2015,5,8,\"DL\",\"2473\",\"ATL\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,118.00,98.00,712.00,,,,,,\n2015,5,8,\"DL\",\"2474\",\"JFK\",\"DEN\",7.00,1.00,0.00,\"\",0.00,278.00,227.00,1626.00,,,,,,\n2015,5,8,\"DL\",\"2495\",\"MIA\",\"JFK\",60.00,69.00,0.00,\"\",0.00,197.00,148.00,1089.00,0.00,0.00,69.00,0.00,0.00,\n2015,5,8,\"DL\",\"2496\",\"ATL\",\"LGA\",43.00,40.00,0.00,\"\",0.00,136.00,111.00,762.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,8,\"DL\",\"2498\",\"FLL\",\"LGA\",-10.00,-13.00,0.00,\"\",0.00,180.00,150.00,1076.00,,,,,,\n2015,5,8,\"DL\",\"2502\",\"FLL\",\"LGA\",170.00,179.00,0.00,\"\",0.00,190.00,150.00,1076.00,0.00,0.00,9.00,0.00,170.00,\n2015,5,8,\"DL\",\"2521\",\"SFO\",\"JFK\",-1.00,39.00,0.00,\"\",0.00,381.00,353.00,2586.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,8,\"DL\",\"2542\",\"FLL\",\"JFK\",25.00,-2.00,0.00,\"\",0.00,159.00,142.00,1069.00,,,,,,\n2015,5,8,\"DL\",\"2550\",\"JFK\",\"BOS\",-2.00,-11.00,0.00,\"\",0.00,84.00,35.00,187.00,,,,,,\n2015,5,8,\"DL\",\"2554\",\"DEN\",\"JFK\",16.00,10.00,0.00,\"\",0.00,235.00,196.00,1626.00,,,,,,\n2015,5,8,\"DL\",\"2565\",\"JFK\",\"MSP\",-7.00,-11.00,0.00,\"\",0.00,205.00,147.00,1029.00,,,,,,\n2015,5,8,\"DL\",\"2567\",\"DTW\",\"ALB\",-4.00,-2.00,0.00,\"\",0.00,90.00,67.00,489.00,,,,,,\n2015,5,8,\"DL\",\"2569\",\"JFK\",\"PHX\",-5.00,1.00,0.00,\"\",0.00,349.00,301.00,2153.00,,,,,,\n2015,5,8,\"DL\",\"2571\",\"JFK\",\"SLC\",-1.00,-6.00,0.00,\"\",0.00,320.00,277.00,1990.00,,,,,,\n2015,5,8,\"DL\",\"2577\",\"JFK\",\"FLL\",44.00,23.00,0.00,\"\",0.00,184.00,143.00,1069.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,8,\"DL\",\"2593\",\"SAT\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,231.00,213.00,1587.00,,,,,,\n2015,5,8,\"DL\",\"2594\",\"DEN\",\"LGA\",4.00,-19.00,0.00,\"\",0.00,213.00,197.00,1620.00,,,,,,\n2015,5,8,\"DL\",\"2595\",\"FLL\",\"LGA\",19.00,2.00,0.00,\"\",0.00,167.00,151.00,1076.00,,,,,,\n2015,5,8,\"DL\",\"2596\",\"PBI\",\"LGA\",0.00,3.00,0.00,\"\",0.00,176.00,155.00,1035.00,,,,,,\n2015,5,8,\"DL\",\"2622\",\"ROC\",\"DTW\",-1.00,-22.00,0.00,\"\",0.00,61.00,45.00,296.00,,,,,,\n2015,5,8,\"DL\",\"2627\",\"JFK\",\"PDX\",-4.00,-34.00,0.00,\"\",0.00,340.00,315.00,2454.00,,,,,,\n2015,5,8,\"DL\",\"2632\",\"JFK\",\"MCO\",-1.00,-27.00,0.00,\"\",0.00,157.00,125.00,944.00,,,,,,\n2015,5,8,\"DL\",\"2634\",\"JFK\",\"BUF\",2.00,-24.00,0.00,\"\",0.00,77.00,52.00,301.00,,,,,,\n2015,5,8,\"DL\",\"2645\",\"JFK\",\"RSW\",-9.00,-28.00,0.00,\"\",0.00,182.00,151.00,1074.00,,,,,,\n2015,5,8,\"DL\",\"2649\",\"JFK\",\"TPA\",-9.00,-16.00,0.00,\"\",0.00,181.00,131.00,1005.00,,,,,,\n2015,5,8,\"DL\",\"2650\",\"TPA\",\"JFK\",31.00,39.00,0.00,\"\",0.00,176.00,144.00,1005.00,4.00,0.00,8.00,0.00,27.00,\n2015,5,8,\"DL\",\"2652\",\"TPA\",\"JFK\",53.00,62.00,0.00,\"\",0.00,183.00,151.00,1005.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,8,\"DL\",\"2653\",\"MCO\",\"JFK\",17.00,32.00,0.00,\"\",0.00,181.00,126.00,944.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,8,\"DL\",\"2665\",\"BOS\",\"LGA\",-6.00,-2.00,0.00,\"\",0.00,79.00,45.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2666\",\"LGA\",\"BOS\",-2.00,-5.00,0.00,\"\",0.00,63.00,41.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2667\",\"BOS\",\"LGA\",0.00,45.00,0.00,\"\",0.00,124.00,51.00,184.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,8,\"DL\",\"2668\",\"LGA\",\"BOS\",-2.00,17.00,0.00,\"\",0.00,90.00,45.00,184.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,8,\"DL\",\"2669\",\"BOS\",\"LGA\",18.00,90.00,0.00,\"\",0.00,147.00,42.00,184.00,0.00,0.00,90.00,0.00,0.00,\n2015,5,8,\"DL\",\"2670\",\"LGA\",\"BOS\",-2.00,1.00,0.00,\"\",0.00,70.00,42.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2671\",\"BOS\",\"LGA\",6.00,28.00,0.00,\"\",0.00,101.00,43.00,184.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,8,\"DL\",\"2672\",\"LGA\",\"BOS\",50.00,46.00,0.00,\"\",0.00,78.00,34.00,184.00,14.00,0.00,0.00,0.00,32.00,\n2015,5,8,\"DL\",\"2673\",\"BOS\",\"LGA\",14.00,23.00,0.00,\"\",0.00,82.00,40.00,184.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,8,\"DL\",\"2674\",\"LGA\",\"BOS\",85.00,62.00,0.00,\"\",0.00,60.00,34.00,184.00,0.00,0.00,0.00,0.00,62.00,\n2015,5,8,\"DL\",\"2675\",\"BOS\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,65.00,42.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2676\",\"LGA\",\"BOS\",35.00,25.00,0.00,\"\",0.00,66.00,35.00,184.00,5.00,0.00,0.00,0.00,20.00,\n2015,5,8,\"DL\",\"2677\",\"BOS\",\"LGA\",54.00,60.00,0.00,\"\",0.00,81.00,45.00,184.00,0.00,0.00,6.00,0.00,54.00,\n2015,5,8,\"DL\",\"2678\",\"LGA\",\"BOS\",12.00,-14.00,0.00,\"\",0.00,57.00,34.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2679\",\"BOS\",\"LGA\",13.00,3.00,0.00,\"\",0.00,67.00,43.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2680\",\"LGA\",\"BOS\",20.00,2.00,0.00,\"\",0.00,61.00,33.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2681\",\"BOS\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,65.00,41.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2682\",\"LGA\",\"BOS\",5.00,7.00,0.00,\"\",0.00,74.00,34.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2683\",\"BOS\",\"LGA\",346.00,341.00,0.00,\"\",0.00,69.00,37.00,184.00,0.00,0.00,0.00,0.00,341.00,\n2015,5,8,\"DL\",\"2684\",\"LGA\",\"BOS\",0.00,13.00,0.00,\"\",0.00,88.00,41.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2685\",\"BOS\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,69.00,41.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2686\",\"LGA\",\"BOS\",0.00,-7.00,0.00,\"\",0.00,75.00,33.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2687\",\"BOS\",\"LGA\",8.00,-4.00,0.00,\"\",0.00,64.00,44.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2688\",\"LGA\",\"BOS\",92.00,77.00,0.00,\"\",0.00,68.00,38.00,184.00,77.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"2689\",\"BOS\",\"LGA\",9.00,0.00,0.00,\"\",0.00,71.00,40.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2690\",\"LGA\",\"BOS\",-1.00,-18.00,0.00,\"\",0.00,68.00,34.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2691\",\"BOS\",\"LGA\",69.00,71.00,0.00,\"\",0.00,79.00,43.00,184.00,0.00,0.00,2.00,0.00,69.00,\n2015,5,8,\"DL\",\"2692\",\"LGA\",\"BOS\",-1.00,-3.00,0.00,\"\",0.00,77.00,34.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2693\",\"BOS\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,70.00,39.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2694\",\"LGA\",\"BOS\",-1.00,-5.00,0.00,\"\",0.00,74.00,35.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2696\",\"LGA\",\"BOS\",-3.00,-8.00,0.00,\"\",0.00,63.00,37.00,184.00,,,,,,\n2015,5,8,\"DL\",\"2699\",\"BOS\",\"LGA\",322.00,328.00,0.00,\"\",0.00,82.00,42.00,184.00,0.00,0.00,328.00,0.00,0.00,\n2015,5,9,\"DL\",\"2\",\"JFK\",\"PDX\",0.00,-30.00,0.00,\"\",0.00,343.00,323.00,2454.00,,,,,,\n2015,5,9,\"DL\",\"42\",\"MIA\",\"JFK\",2.00,-7.00,0.00,\"\",0.00,178.00,151.00,1089.00,,,,,,\n2015,5,9,\"DL\",\"208\",\"JFK\",\"MCO\",-3.00,-42.00,0.00,\"\",0.00,145.00,120.00,944.00,,,,,,\n2015,5,9,\"DL\",\"221\",\"LGA\",\"ATL\",16.00,-6.00,0.00,\"\",0.00,140.00,105.00,762.00,,,,,,\n2015,5,9,\"DL\",\"234\",\"PIT\",\"JFK\",5.00,2.00,0.00,\"\",0.00,97.00,57.00,340.00,,,,,,\n2015,5,9,\"DL\",\"326\",\"SJU\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,225.00,201.00,1598.00,,,,,,\n2015,5,9,\"DL\",\"332\",\"SJU\",\"JFK\",-8.00,-37.00,0.00,\"\",0.00,217.00,197.00,1598.00,,,,,,\n2015,5,9,\"DL\",\"342\",\"SFO\",\"JFK\",-1.00,1.00,0.00,\"\",0.00,340.00,319.00,2586.00,,,,,,\n2015,5,9,\"DL\",\"347\",\"LGA\",\"ATL\",-3.00,-3.00,0.00,\"\",0.00,155.00,104.00,762.00,,,,,,\n2015,5,9,\"DL\",\"348\",\"SJU\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,239.00,215.00,1598.00,,,,,,\n2015,5,9,\"DL\",\"350\",\"LGA\",\"ATL\",-3.00,-27.00,0.00,\"\",0.00,126.00,103.00,762.00,,,,,,\n2015,5,9,\"DL\",\"400\",\"PDX\",\"JFK\",-5.00,-5.00,0.00,\"\",0.00,330.00,303.00,2454.00,,,,,,\n2015,5,9,\"DL\",\"407\",\"MCO\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,161.00,129.00,944.00,,,,,,\n2015,5,9,\"DL\",\"409\",\"JFK\",\"SJU\",19.00,1.00,0.00,\"\",0.00,227.00,199.00,1598.00,,,,,,\n2015,5,9,\"DL\",\"410\",\"MSP\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,147.00,133.00,1029.00,,,,,,\n2015,5,9,\"DL\",\"412\",\"LAX\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,318.00,276.00,2475.00,,,,,,\n2015,5,9,\"DL\",\"414\",\"SFO\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,333.00,305.00,2586.00,,,,,,\n2015,5,9,\"DL\",\"415\",\"JFK\",\"SFO\",5.00,-20.00,0.00,\"\",0.00,379.00,351.00,2586.00,,,,,,\n2015,5,9,\"DL\",\"418\",\"SEA\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,309.00,286.00,2422.00,,,,,,\n2015,5,9,\"DL\",\"419\",\"JFK\",\"SEA\",0.00,-15.00,0.00,\"\",0.00,363.00,316.00,2422.00,,,,,,\n2015,5,9,\"DL\",\"420\",\"JFK\",\"LAX\",4.00,-13.00,0.00,\"\",0.00,375.00,335.00,2475.00,,,,,,\n2015,5,9,\"DL\",\"421\",\"JFK\",\"LAS\",-4.00,-18.00,0.00,\"\",0.00,316.00,292.00,2248.00,,,,,,\n2015,5,9,\"DL\",\"422\",\"JFK\",\"ATL\",-1.00,-26.00,0.00,\"\",0.00,127.00,99.00,760.00,,,,,,\n2015,5,9,\"DL\",\"423\",\"JFK\",\"LAX\",-3.00,-26.00,0.00,\"\",0.00,349.00,313.00,2475.00,,,,,,\n2015,5,9,\"DL\",\"424\",\"JFK\",\"BOS\",2.00,-10.00,0.00,\"\",0.00,61.00,39.00,187.00,,,,,,\n2015,5,9,\"DL\",\"426\",\"JFK\",\"MCO\",2.00,-19.00,0.00,\"\",0.00,149.00,119.00,944.00,,,,,,\n2015,5,9,\"DL\",\"427\",\"JFK\",\"SEA\",-3.00,-26.00,0.00,\"\",0.00,337.00,308.00,2422.00,,,,,,\n2015,5,9,\"DL\",\"430\",\"JFK\",\"SFO\",-2.00,-16.00,0.00,\"\",0.00,372.00,348.00,2586.00,,,,,,\n2015,5,9,\"DL\",\"431\",\"JFK\",\"SAN\",30.00,14.00,0.00,\"\",0.00,358.00,320.00,2446.00,,,,,,\n2015,5,9,\"DL\",\"433\",\"JFK\",\"SEA\",1.00,-14.00,0.00,\"\",0.00,363.00,311.00,2422.00,,,,,,\n2015,5,9,\"DL\",\"434\",\"JFK\",\"SLC\",-4.00,-25.00,0.00,\"\",0.00,283.00,256.00,1990.00,,,,,,\n2015,5,9,\"DL\",\"435\",\"JFK\",\"SFO\",-5.00,-49.00,0.00,\"\",0.00,363.00,342.00,2586.00,,,,,,\n2015,5,9,\"DL\",\"437\",\"JFK\",\"LAS\",-3.00,-12.00,0.00,\"\",0.00,341.00,299.00,2248.00,,,,,,\n2015,5,9,\"DL\",\"439\",\"JFK\",\"SJU\",0.00,17.00,0.00,\"\",0.00,241.00,200.00,1598.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,9,\"DL\",\"440\",\"JFK\",\"BOS\",13.00,-17.00,0.00,\"\",0.00,68.00,33.00,187.00,,,,,,\n2015,5,9,\"DL\",\"441\",\"JFK\",\"MIA\",127.00,115.00,0.00,\"\",0.00,170.00,143.00,1089.00,115.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"DL\",\"442\",\"JFK\",\"ATL\",1.00,-27.00,0.00,\"\",0.00,141.00,108.00,760.00,,,,,,\n2015,5,9,\"DL\",\"443\",\"JFK\",\"LAS\",4.00,-5.00,0.00,\"\",0.00,342.00,295.00,2248.00,,,,,,\n2015,5,9,\"DL\",\"444\",\"SLC\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,264.00,244.00,1990.00,,,,,,\n2015,5,9,\"DL\",\"445\",\"JFK\",\"TPA\",0.00,-17.00,0.00,\"\",0.00,153.00,126.00,1005.00,,,,,,\n2015,5,9,\"DL\",\"447\",\"JFK\",\"LAX\",5.00,-5.00,0.00,\"\",0.00,380.00,337.00,2475.00,,,,,,\n2015,5,9,\"DL\",\"448\",\"JFK\",\"SEA\",-4.00,-22.00,0.00,\"\",0.00,342.00,310.00,2422.00,,,,,,\n2015,5,9,\"DL\",\"453\",\"JFK\",\"CHS\",-1.00,-19.00,0.00,\"\",0.00,121.00,87.00,636.00,,,,,,\n2015,5,9,\"DL\",\"454\",\"JFK\",\"STT\",5.00,11.00,0.00,\"\",0.00,249.00,203.00,1623.00,,,,,,\n2015,5,9,\"DL\",\"455\",\"JFK\",\"SLC\",-5.00,-26.00,0.00,\"\",0.00,303.00,267.00,1990.00,,,,,,\n2015,5,9,\"DL\",\"458\",\"JFK\",\"ATL\",24.00,-11.00,0.00,\"\",0.00,132.00,100.00,760.00,,,,,,\n2015,5,9,\"DL\",\"459\",\"JFK\",\"LAS\",-3.00,-37.00,0.00,\"\",0.00,322.00,286.00,2248.00,,,,,,\n2015,5,9,\"DL\",\"462\",\"JFK\",\"SJU\",0.00,-11.00,0.00,\"\",0.00,220.00,197.00,1598.00,,,,,,\n2015,5,9,\"DL\",\"463\",\"JFK\",\"MSP\",-7.00,-27.00,0.00,\"\",0.00,171.00,139.00,1029.00,,,,,,\n2015,5,9,\"DL\",\"465\",\"JFK\",\"ATL\",12.00,-13.00,0.00,\"\",0.00,126.00,100.00,760.00,,,,,,\n2015,5,9,\"DL\",\"466\",\"SLC\",\"JFK\",22.00,10.00,0.00,\"\",0.00,262.00,239.00,1990.00,,,,,,\n2015,5,9,\"DL\",\"468\",\"SFO\",\"JFK\",-4.00,5.00,0.00,\"\",0.00,353.00,311.00,2586.00,,,,,,\n2015,5,9,\"DL\",\"469\",\"JFK\",\"SFO\",1.00,-29.00,0.00,\"\",0.00,371.00,347.00,2586.00,,,,,,\n2015,5,9,\"DL\",\"472\",\"JFK\",\"LAX\",14.00,-13.00,0.00,\"\",0.00,358.00,320.00,2475.00,,,,,,\n2015,5,9,\"DL\",\"476\",\"LAX\",\"JFK\",-12.00,-35.00,0.00,\"\",0.00,312.00,280.00,2475.00,,,,,,\n2015,5,9,\"DL\",\"477\",\"JFK\",\"LAX\",158.00,110.00,0.00,\"\",0.00,343.00,313.00,2475.00,110.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"DL\",\"478\",\"ATL\",\"JFK\",29.00,5.00,0.00,\"\",0.00,125.00,107.00,760.00,,,,,,\n2015,5,9,\"DL\",\"480\",\"JFK\",\"BOS\",-8.00,-24.00,0.00,\"\",0.00,65.00,35.00,187.00,,,,,,\n2015,5,9,\"DL\",\"492\",\"JFK\",\"SJU\",0.00,-9.00,0.00,\"\",0.00,230.00,206.00,1598.00,,,,,,\n2015,5,9,\"DL\",\"496\",\"JFK\",\"MCO\",-1.00,-12.00,0.00,\"\",0.00,153.00,122.00,944.00,,,,,,\n2015,5,9,\"DL\",\"499\",\"JFK\",\"SLC\",-7.00,-35.00,0.00,\"\",0.00,282.00,256.00,1990.00,,,,,,\n2015,5,9,\"DL\",\"511\",\"SJU\",\"JFK\",12.00,5.00,0.00,\"\",0.00,239.00,208.00,1598.00,,,,,,\n2015,5,9,\"DL\",\"527\",\"RSW\",\"JFK\",-3.00,1.00,0.00,\"\",0.00,171.00,147.00,1074.00,,,,,,\n2015,5,9,\"DL\",\"541\",\"LAS\",\"JFK\",-16.00,-16.00,0.00,\"\",0.00,296.00,265.00,2248.00,,,,,,\n2015,5,9,\"DL\",\"544\",\"ALB\",\"ATL\",0.00,-16.00,0.00,\"\",0.00,134.00,116.00,853.00,,,,,,\n2015,5,9,\"DL\",\"662\",\"BUF\",\"MSP\",6.00,-20.00,0.00,\"\",0.00,118.00,106.00,735.00,,,,,,\n2015,5,9,\"DL\",\"664\",\"TPA\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,163.00,147.00,1010.00,,,,,,\n2015,5,9,\"DL\",\"676\",\"STT\",\"JFK\",1.00,-21.00,0.00,\"\",0.00,228.00,203.00,1623.00,,,,,,\n2015,5,9,\"DL\",\"723\",\"ATL\",\"BUF\",-2.00,-14.00,0.00,\"\",0.00,113.00,96.00,712.00,,,,,,\n2015,5,9,\"DL\",\"723\",\"BUF\",\"ATL\",4.00,-6.00,0.00,\"\",0.00,119.00,100.00,712.00,,,,,,\n2015,5,9,\"DL\",\"731\",\"LGA\",\"DTW\",-5.00,-17.00,0.00,\"\",0.00,100.00,76.00,502.00,,,,,,\n2015,5,9,\"DL\",\"750\",\"BOS\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,76.00,51.00,187.00,,,,,,\n2015,5,9,\"DL\",\"772\",\"PBI\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,166.00,148.00,1035.00,,,,,,\n2015,5,9,\"DL\",\"781\",\"LGA\",\"ATL\",9.00,12.00,0.00,\"\",0.00,163.00,106.00,762.00,,,,,,\n2015,5,9,\"DL\",\"782\",\"MIA\",\"JFK\",163.00,169.00,0.00,\"\",0.00,186.00,152.00,1089.00,163.00,0.00,6.00,0.00,0.00,\n2015,5,9,\"DL\",\"787\",\"MCO\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,154.00,135.00,944.00,,,,,,\n2015,5,9,\"DL\",\"791\",\"LAX\",\"JFK\",15.00,4.00,0.00,\"\",0.00,323.00,289.00,2475.00,,,,,,\n2015,5,9,\"DL\",\"792\",\"PBI\",\"JFK\",-3.00,14.00,0.00,\"\",0.00,186.00,150.00,1028.00,,,,,,\n2015,5,9,\"DL\",\"793\",\"BOS\",\"JFK\",33.00,20.00,0.00,\"\",0.00,79.00,47.00,187.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,9,\"DL\",\"802\",\"ATL\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,128.00,114.00,762.00,,,,,,\n2015,5,9,\"DL\",\"819\",\"MIA\",\"LGA\",148.00,139.00,0.00,\"\",0.00,178.00,159.00,1096.00,9.00,0.00,0.00,0.00,130.00,\n2015,5,9,\"DL\",\"871\",\"MSP\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,164.00,138.00,1020.00,,,,,,\n2015,5,9,\"DL\",\"874\",\"LGA\",\"MIA\",-6.00,-1.00,0.00,\"\",0.00,203.00,146.00,1096.00,,,,,,\n2015,5,9,\"DL\",\"878\",\"RSW\",\"LGA\",-6.00,26.00,0.00,\"\",0.00,202.00,182.00,1080.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,9,\"DL\",\"884\",\"LGA\",\"DEN\",52.00,32.00,0.00,\"\",0.00,252.00,222.00,1620.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,9,\"DL\",\"904\",\"LGA\",\"ATL\",0.00,-9.00,0.00,\"\",0.00,131.00,100.00,762.00,,,,,,\n2015,5,9,\"DL\",\"906\",\"ATL\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,128.00,111.00,762.00,,,,,,\n2015,5,9,\"DL\",\"909\",\"LGA\",\"MIA\",176.00,144.00,0.00,\"\",0.00,162.00,146.00,1096.00,144.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"DL\",\"910\",\"MCO\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,153.00,137.00,950.00,,,,,,\n2015,5,9,\"DL\",\"965\",\"MCO\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,149.00,135.00,950.00,,,,,,\n2015,5,9,\"DL\",\"986\",\"ATL\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,123.00,109.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1121\",\"PBI\",\"LGA\",14.00,49.00,0.00,\"\",0.00,208.00,180.00,1035.00,1.00,0.00,35.00,0.00,13.00,\n2015,5,10,\"DL\",\"1131\",\"LGA\",\"FLL\",12.00,45.00,0.00,\"\",0.00,225.00,156.00,1076.00,12.00,0.00,33.00,0.00,0.00,\n2015,5,10,\"DL\",\"1145\",\"LGA\",\"DTW\",3.00,-14.00,0.00,\"\",0.00,107.00,83.00,502.00,,,,,,\n2015,5,10,\"DL\",\"1155\",\"DTW\",\"ROC\",4.00,-7.00,0.00,\"\",0.00,60.00,42.00,296.00,,,,,,\n2015,5,10,\"DL\",\"1159\",\"ATL\",\"BUF\",-5.00,-17.00,0.00,\"\",0.00,110.00,94.00,712.00,,,,,,\n2015,5,10,\"DL\",\"1159\",\"BUF\",\"ATL\",-3.00,-23.00,0.00,\"\",0.00,109.00,96.00,712.00,,,,,,\n2015,5,10,\"DL\",\"1162\",\"LAX\",\"JFK\",-5.00,1.00,0.00,\"\",0.00,331.00,300.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"1174\",\"LGA\",\"PBI\",7.00,22.00,0.00,\"\",0.00,195.00,164.00,1035.00,7.00,0.00,15.00,0.00,0.00,\n2015,5,10,\"DL\",\"1176\",\"ATL\",\"BUF\",-3.00,-20.00,0.00,\"\",0.00,113.00,94.00,712.00,,,,,,\n2015,5,10,\"DL\",\"1176\",\"BUF\",\"ATL\",5.00,-10.00,0.00,\"\",0.00,119.00,95.00,712.00,,,,,,\n2015,5,10,\"DL\",\"1186\",\"ATL\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,138.00,104.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1644\",\"FLL\",\"JFK\",-10.00,-19.00,0.00,\"\",0.00,178.00,152.00,1069.00,,,,,,\n2015,5,8,\"DL\",\"1647\",\"LGA\",\"ATL\",-6.00,-14.00,0.00,\"\",0.00,144.00,101.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1671\",\"MIA\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,175.00,148.00,1089.00,,,,,,\n2015,5,8,\"DL\",\"1672\",\"ATL\",\"BUF\",-6.00,2.00,0.00,\"\",0.00,127.00,96.00,712.00,,,,,,\n2015,5,8,\"DL\",\"1672\",\"BUF\",\"ATL\",-3.00,-23.00,0.00,\"\",0.00,108.00,94.00,712.00,,,,,,\n2015,5,8,\"DL\",\"1685\",\"LGA\",\"MCO\",0.00,-12.00,0.00,\"\",0.00,163.00,129.00,950.00,,,,,,\n2015,5,8,\"DL\",\"1697\",\"LGA\",\"ATL\",20.00,3.00,0.00,\"\",0.00,141.00,99.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1728\",\"LAS\",\"JFK\",6.00,-4.00,0.00,\"\",0.00,291.00,264.00,2248.00,,,,,,\n2015,5,8,\"DL\",\"1750\",\"ATL\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,156.00,112.00,760.00,,,,,,\n2015,5,8,\"DL\",\"1762\",\"LAX\",\"JFK\",34.00,5.00,0.00,\"\",0.00,306.00,279.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"1779\",\"LGA\",\"MSY\",32.00,13.00,0.00,\"\",0.00,180.00,149.00,1183.00,,,,,,\n2015,5,8,\"DL\",\"1786\",\"ATL\",\"LGA\",1.00,-4.00,0.00,\"\",0.00,136.00,107.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1796\",\"LGA\",\"MSP\",22.00,20.00,0.00,\"\",0.00,192.00,144.00,1020.00,4.00,0.00,0.00,0.00,16.00,\n2015,5,8,\"DL\",\"1830\",\"SLC\",\"JFK\",17.00,19.00,0.00,\"\",0.00,278.00,241.00,1990.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,8,\"DL\",\"1841\",\"SJU\",\"JFK\",-3.00,-36.00,0.00,\"\",0.00,214.00,193.00,1598.00,,,,,,\n2015,5,8,\"DL\",\"1848\",\"DTW\",\"LGA\",85.00,84.00,0.00,\"\",0.00,107.00,75.00,502.00,0.00,0.00,84.00,0.00,0.00,\n2015,5,8,\"DL\",\"1849\",\"LGA\",\"ATL\",93.00,72.00,0.00,\"\",0.00,137.00,102.00,762.00,70.00,0.00,0.00,0.00,2.00,\n2015,5,8,\"DL\",\"1851\",\"CHS\",\"JFK\",20.00,1.00,0.00,\"\",0.00,105.00,86.00,636.00,,,,,,\n2015,5,8,\"DL\",\"1875\",\"LGA\",\"TPA\",-4.00,-29.00,0.00,\"\",0.00,155.00,134.00,1010.00,,,,,,\n2015,5,8,\"DL\",\"1879\",\"LGA\",\"FLL\",1.00,8.00,0.00,\"\",0.00,194.00,161.00,1076.00,,,,,,\n2015,5,8,\"DL\",\"1885\",\"LGA\",\"MCO\",199.00,166.00,0.00,\"\",0.00,147.00,127.00,950.00,0.00,0.00,0.00,0.00,166.00,\n2015,5,8,\"DL\",\"1886\",\"ATL\",\"LGA\",-5.00,2.00,0.00,\"\",0.00,157.00,110.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1897\",\"LGA\",\"MCO\",29.00,7.00,0.00,\"\",0.00,152.00,123.00,950.00,,,,,,\n2015,5,8,\"DL\",\"1902\",\"LGA\",\"PBI\",17.00,0.00,0.00,\"\",0.00,167.00,135.00,1035.00,,,,,,\n2015,5,8,\"DL\",\"1917\",\"MIA\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,175.00,158.00,1096.00,,,,,,\n2015,5,8,\"DL\",\"1919\",\"LGA\",\"MSP\",-4.00,-18.00,0.00,\"\",0.00,168.00,144.00,1020.00,,,,,,\n2015,5,8,\"DL\",\"1930\",\"LGA\",\"MIA\",-4.00,-27.00,0.00,\"\",0.00,175.00,148.00,1096.00,,,,,,\n2015,5,8,\"DL\",\"1935\",\"LGA\",\"TPA\",40.00,17.00,0.00,\"\",0.00,159.00,140.00,1010.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,8,\"DL\",\"1947\",\"FLL\",\"JFK\",46.00,65.00,0.00,\"\",0.00,202.00,145.00,1069.00,0.00,0.00,65.00,0.00,0.00,\n2015,5,8,\"DL\",\"1948\",\"DTW\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,106.00,82.00,502.00,,,,,,\n2015,5,8,\"DL\",\"1949\",\"TPA\",\"LGA\",18.00,6.00,0.00,\"\",0.00,151.00,136.00,1010.00,,,,,,\n2015,5,8,\"DL\",\"1953\",\"LGA\",\"FLL\",16.00,-2.00,0.00,\"\",0.00,176.00,143.00,1076.00,,,,,,\n2015,5,8,\"DL\",\"1958\",\"PBI\",\"LGA\",59.00,48.00,0.00,\"\",0.00,165.00,140.00,1035.00,5.00,0.00,0.00,0.00,43.00,\n2015,5,8,\"DL\",\"1969\",\"BUF\",\"JFK\",71.00,68.00,0.00,\"\",0.00,87.00,65.00,301.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,8,\"DL\",\"1972\",\"AUS\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,222.00,205.00,1521.00,,,,,,\n2015,5,8,\"DL\",\"1974\",\"MIA\",\"LGA\",-2.00,8.00,0.00,\"\",0.00,193.00,153.00,1096.00,,,,,,\n2015,5,8,\"DL\",\"1982\",\"LGA\",\"MIA\",7.00,-9.00,0.00,\"\",0.00,180.00,155.00,1096.00,,,,,,\n2015,5,8,\"DL\",\"1985\",\"ALB\",\"DTW\",-4.00,-17.00,0.00,\"\",0.00,88.00,72.00,489.00,,,,,,\n2015,5,8,\"DL\",\"1986\",\"ATL\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,137.00,106.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1994\",\"PHX\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,278.00,250.00,2153.00,,,,,,\n2015,5,8,\"DL\",\"1996\",\"MSP\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,144.00,133.00,1020.00,,,,,,\n2015,5,8,\"DL\",\"2003\",\"LGA\",\"MIA\",5.00,14.00,0.00,\"\",0.00,196.00,152.00,1096.00,,,,,,\n2015,5,8,\"DL\",\"2013\",\"ATL\",\"SYR\",44.00,31.00,0.00,\"\",0.00,122.00,103.00,794.00,23.00,0.00,0.00,0.00,8.00,\n2015,5,8,\"DL\",\"2014\",\"SYR\",\"ATL\",-8.00,-22.00,0.00,\"\",0.00,125.00,108.00,794.00,,,,,,\n2015,5,8,\"DL\",\"2016\",\"LGA\",\"ATL\",-2.00,5.00,0.00,\"\",0.00,160.00,100.00,762.00,,,,,,\n2015,5,8,\"DL\",\"2022\",\"LGA\",\"FLL\",157.00,142.00,0.00,\"\",0.00,177.00,149.00,1076.00,0.00,0.00,0.00,0.00,142.00,\n2015,5,8,\"DL\",\"2028\",\"FLL\",\"LGA\",11.00,5.00,0.00,\"\",0.00,175.00,154.00,1076.00,,,,,,\n2015,5,8,\"DL\",\"2032\",\"MSP\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,159.00,142.00,1029.00,,,,,,\n2015,5,8,\"DL\",\"2037\",\"MCO\",\"LGA\",6.00,5.00,0.00,\"\",0.00,156.00,130.00,950.00,,,,,,\n2015,5,8,\"DL\",\"2040\",\"SFO\",\"JFK\",5.00,5.00,0.00,\"\",0.00,341.00,308.00,2586.00,,,,,,\n2015,5,8,\"DL\",\"2043\",\"JFK\",\"PHX\",14.00,-7.00,0.00,\"\",0.00,320.00,286.00,2153.00,,,,,,\n2015,5,8,\"DL\",\"2044\",\"JFK\",\"BOS\",39.00,25.00,0.00,\"\",0.00,87.00,35.00,187.00,1.00,0.00,0.00,0.00,24.00,\n2015,5,8,\"DL\",\"2058\",\"MCO\",\"JFK\",112.00,99.00,0.00,\"\",0.00,142.00,127.00,944.00,99.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"2059\",\"JFK\",\"ATL\",5.00,-28.00,0.00,\"\",0.00,136.00,96.00,760.00,,,,,,\n2015,5,8,\"DL\",\"2074\",\"LGA\",\"ATL\",57.00,20.00,0.00,\"\",0.00,121.00,100.00,762.00,9.00,0.00,0.00,0.00,11.00,\n2015,5,8,\"DL\",\"2077\",\"LGA\",\"MCO\",5.00,-11.00,0.00,\"\",0.00,160.00,129.00,950.00,,,,,,\n2015,5,8,\"DL\",\"2086\",\"ATL\",\"LGA\",22.00,18.00,0.00,\"\",0.00,140.00,114.00,762.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"DL\",\"2096\",\"LGA\",\"MSP\",39.00,36.00,0.00,\"\",0.00,179.00,146.00,1020.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,8,\"DL\",\"2119\",\"LGA\",\"MSP\",0.00,11.00,0.00,\"\",0.00,196.00,146.00,1020.00,,,,,,\n2015,5,8,\"DL\",\"2122\",\"JFK\",\"AUS\",-1.00,-16.00,0.00,\"\",0.00,249.00,213.00,1521.00,,,,,,\n2015,5,8,\"DL\",\"2129\",\"ROC\",\"ATL\",-1.00,-15.00,0.00,\"\",0.00,115.00,101.00,749.00,,,,,,\n2015,5,8,\"DL\",\"2131\",\"LGA\",\"DTW\",-6.00,-11.00,0.00,\"\",0.00,114.00,77.00,502.00,,,,,,\n2015,5,8,\"DL\",\"2135\",\"TPA\",\"LGA\",-2.00,7.00,0.00,\"\",0.00,173.00,137.00,1010.00,,,,,,\n2015,5,8,\"DL\",\"2148\",\"LGA\",\"DTW\",14.00,-16.00,0.00,\"\",0.00,98.00,77.00,502.00,,,,,,\n2015,5,8,\"DL\",\"2150\",\"LGA\",\"DTW\",21.00,11.00,0.00,\"\",0.00,116.00,73.00,502.00,,,,,,\n2015,5,8,\"DL\",\"2151\",\"MIA\",\"LGA\",0.00,29.00,0.00,\"\",0.00,215.00,189.00,1096.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,8,\"DL\",\"2155\",\"LAS\",\"JFK\",11.00,1.00,0.00,\"\",0.00,293.00,262.00,2248.00,,,,,,\n2015,5,8,\"DL\",\"2156\",\"ATL\",\"SYR\",1.00,-12.00,0.00,\"\",0.00,117.00,103.00,794.00,,,,,,\n2015,5,8,\"DL\",\"2156\",\"SYR\",\"ATL\",3.00,-14.00,0.00,\"\",0.00,126.00,104.00,794.00,,,,,,\n2015,5,8,\"DL\",\"2166\",\"SYR\",\"DTW\",-4.00,-14.00,0.00,\"\",0.00,83.00,59.00,374.00,,,,,,\n2015,5,8,\"DL\",\"2174\",\"DTW\",\"JFK\",40.00,53.00,0.00,\"\",0.00,134.00,90.00,509.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,8,\"DL\",\"2178\",\"LGA\",\"TPA\",10.00,-9.00,0.00,\"\",0.00,162.00,137.00,1010.00,,,,,,\n2015,5,9,\"DL\",\"2150\",\"LGA\",\"DTW\",-2.00,-16.00,0.00,\"\",0.00,114.00,77.00,502.00,,,,,,\n2015,5,9,\"DL\",\"2151\",\"MIA\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,175.00,155.00,1096.00,,,,,,\n2015,5,9,\"DL\",\"2155\",\"LAS\",\"JFK\",-2.00,3.00,0.00,\"\",0.00,304.00,280.00,2248.00,,,,,,\n2015,5,9,\"DL\",\"2156\",\"ATL\",\"SYR\",-3.00,-13.00,0.00,\"\",0.00,118.00,104.00,794.00,,,,,,\n2015,5,9,\"DL\",\"2156\",\"SYR\",\"ATL\",-3.00,-15.00,0.00,\"\",0.00,128.00,103.00,794.00,,,,,,\n2015,5,9,\"DL\",\"2166\",\"SYR\",\"DTW\",-5.00,-3.00,0.00,\"\",0.00,95.00,61.00,374.00,,,,,,\n2015,5,9,\"DL\",\"2174\",\"DTW\",\"JFK\",34.00,27.00,0.00,\"\",0.00,114.00,74.00,509.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,9,\"DL\",\"2181\",\"LGA\",\"MCO\",-7.00,-21.00,0.00,\"\",0.00,153.00,128.00,950.00,,,,,,\n2015,5,9,\"DL\",\"2186\",\"ATL\",\"LGA\",27.00,19.00,0.00,\"\",0.00,133.00,106.00,762.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"DL\",\"2190\",\"JFK\",\"MIA\",-3.00,-6.00,0.00,\"\",0.00,193.00,149.00,1089.00,,,,,,\n2015,5,9,\"DL\",\"2214\",\"ATL\",\"LGA\",3.00,1.00,0.00,\"\",0.00,130.00,116.00,762.00,,,,,,\n2015,5,9,\"DL\",\"2231\",\"LGA\",\"DTW\",21.00,3.00,0.00,\"\",0.00,106.00,77.00,502.00,,,,,,\n2015,5,9,\"DL\",\"2240\",\"SFO\",\"JFK\",-4.00,-1.00,0.00,\"\",0.00,333.00,314.00,2586.00,,,,,,\n2015,5,9,\"DL\",\"2248\",\"DTW\",\"LGA\",-3.00,11.00,0.00,\"\",0.00,119.00,81.00,502.00,,,,,,\n2015,5,9,\"DL\",\"2270\",\"LGA\",\"RSW\",-3.00,-22.00,0.00,\"\",0.00,174.00,148.00,1080.00,,,,,,\n2015,5,9,\"DL\",\"2277\",\"JFK\",\"TPA\",-4.00,-31.00,0.00,\"\",0.00,163.00,130.00,1005.00,,,,,,\n2015,5,9,\"DL\",\"2280\",\"LGA\",\"TPA\",-6.00,-14.00,0.00,\"\",0.00,164.00,131.00,1010.00,,,,,,\n2015,5,9,\"DL\",\"2285\",\"LGA\",\"MCO\",-5.00,-18.00,0.00,\"\",0.00,149.00,120.00,950.00,,,,,,\n2015,5,9,\"DL\",\"2311\",\"JFK\",\"MIA\",-10.00,-29.00,0.00,\"\",0.00,183.00,147.00,1089.00,,,,,,\n2015,5,9,\"DL\",\"2312\",\"JFK\",\"DTW\",-6.00,-41.00,0.00,\"\",0.00,103.00,80.00,509.00,,,,,,\n2015,5,9,\"DL\",\"2317\",\"PBI\",\"LGA\",12.00,24.00,0.00,\"\",0.00,185.00,164.00,1035.00,7.00,0.00,12.00,0.00,5.00,\n2015,5,9,\"DL\",\"2319\",\"LGA\",\"MSP\",-4.00,1.00,0.00,\"\",0.00,196.00,137.00,1020.00,,,,,,\n2015,5,9,\"DL\",\"2341\",\"JFK\",\"MSP\",-6.00,-39.00,0.00,\"\",0.00,176.00,140.00,1029.00,,,,,,\n2015,5,9,\"DL\",\"2349\",\"DTW\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,105.00,76.00,502.00,,,,,,\n2015,5,9,\"DL\",\"2350\",\"ATL\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,125.00,107.00,760.00,,,,,,\n2015,5,9,\"DL\",\"2352\",\"LAS\",\"JFK\",-6.00,-2.00,0.00,\"\",0.00,307.00,281.00,2248.00,,,,,,\n2015,5,9,\"DL\",\"2354\",\"SLC\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,259.00,238.00,1990.00,,,,,,\n2015,5,9,\"DL\",\"2391\",\"JFK\",\"ATL\",33.00,5.00,0.00,\"\",0.00,137.00,98.00,760.00,,,,,,\n2015,5,9,\"DL\",\"2393\",\"JFK\",\"BOS\",-6.00,-35.00,0.00,\"\",0.00,61.00,42.00,187.00,,,,,,\n2015,5,9,\"DL\",\"2395\",\"LGA\",\"PBI\",-3.00,-30.00,0.00,\"\",0.00,151.00,136.00,1035.00,,,,,,\n2015,5,9,\"DL\",\"2404\",\"SAN\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,313.00,288.00,2446.00,,,,,,\n2015,5,9,\"DL\",\"2406\",\"TPA\",\"LGA\",11.00,33.00,0.00,\"\",0.00,185.00,170.00,1010.00,11.00,0.00,22.00,0.00,0.00,\n2015,5,9,\"DL\",\"2450\",\"MCO\",\"LGA\",-9.00,-5.00,0.00,\"\",0.00,159.00,140.00,950.00,,,,,,\n2015,5,9,\"DL\",\"2456\",\"FLL\",\"JFK\",0.00,4.00,0.00,\"\",0.00,188.00,154.00,1069.00,,,,,,\n2015,5,9,\"DL\",\"2464\",\"TPA\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,157.00,141.00,1005.00,,,,,,\n2015,5,9,\"DL\",\"2473\",\"ATL\",\"BUF\",-2.00,-14.00,0.00,\"\",0.00,114.00,98.00,712.00,,,,,,\n2015,5,9,\"DL\",\"2474\",\"JFK\",\"SJU\",-3.00,6.00,0.00,\"\",0.00,248.00,199.00,1598.00,,,,,,\n2015,5,9,\"DL\",\"2487\",\"JFK\",\"SLC\",39.00,-2.00,0.00,\"\",0.00,280.00,260.00,1990.00,,,,,,\n2015,5,9,\"DL\",\"2496\",\"ATL\",\"LGA\",2.00,12.00,0.00,\"\",0.00,148.00,129.00,762.00,,,,,,\n2015,5,9,\"DL\",\"2554\",\"DEN\",\"JFK\",73.00,83.00,0.00,\"\",0.00,249.00,204.00,1626.00,3.00,0.00,10.00,0.00,70.00,\n2015,5,9,\"DL\",\"2567\",\"DTW\",\"ALB\",-4.00,3.00,0.00,\"\",0.00,95.00,66.00,489.00,,,,,,\n2015,5,9,\"DL\",\"2569\",\"JFK\",\"PHX\",-8.00,-14.00,0.00,\"\",0.00,334.00,300.00,2153.00,,,,,,\n2015,5,9,\"DL\",\"2577\",\"JFK\",\"FLL\",-4.00,-28.00,0.00,\"\",0.00,177.00,151.00,1069.00,,,,,,\n2015,5,9,\"DL\",\"2593\",\"SAT\",\"JFK\",26.00,15.00,0.00,\"\",0.00,225.00,206.00,1587.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,9,\"DL\",\"2594\",\"DEN\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,224.00,206.00,1620.00,,,,,,\n2015,5,9,\"DL\",\"2595\",\"FLL\",\"LGA\",-18.00,-15.00,0.00,\"\",0.00,185.00,161.00,1076.00,,,,,,\n2015,5,9,\"DL\",\"2596\",\"PBI\",\"LGA\",-2.00,,0.00,\"\",1.00,,,1035.00,,,,,,\n2015,5,9,\"DL\",\"2622\",\"ROC\",\"DTW\",-7.00,-24.00,0.00,\"\",0.00,65.00,48.00,296.00,,,,,,\n2015,5,9,\"DL\",\"2626\",\"JFK\",\"PBI\",-11.00,-34.00,0.00,\"\",0.00,163.00,138.00,1028.00,,,,,,\n2015,5,9,\"DL\",\"2632\",\"JFK\",\"MCO\",-6.00,-15.00,0.00,\"\",0.00,170.00,122.00,944.00,,,,,,\n2015,5,9,\"DL\",\"2645\",\"JFK\",\"RSW\",-2.00,-14.00,0.00,\"\",0.00,189.00,148.00,1074.00,,,,,,\n2015,5,9,\"DL\",\"2650\",\"TPA\",\"JFK\",10.00,6.00,0.00,\"\",0.00,163.00,140.00,1005.00,,,,,,\n2015,5,9,\"DL\",\"2653\",\"MCO\",\"JFK\",-1.00,16.00,0.00,\"\",0.00,181.00,132.00,944.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,9,\"DL\",\"2667\",\"BOS\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,75.00,46.00,184.00,,,,,,\n2015,5,9,\"DL\",\"2671\",\"BOS\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,66.00,46.00,184.00,,,,,,\n2015,5,9,\"DL\",\"2672\",\"LGA\",\"BOS\",-6.00,2.00,0.00,\"\",0.00,88.00,37.00,184.00,,,,,,\n2015,5,9,\"DL\",\"2675\",\"BOS\",\"LGA\",70.00,60.00,0.00,\"\",0.00,60.00,46.00,184.00,60.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"DL\",\"2678\",\"LGA\",\"BOS\",-11.00,9.00,0.00,\"\",0.00,101.00,41.00,184.00,,,,,,\n2015,5,9,\"DL\",\"2681\",\"BOS\",\"LGA\",8.00,-2.00,0.00,\"\",0.00,65.00,50.00,184.00,,,,,,\n2015,5,9,\"DL\",\"2686\",\"LGA\",\"BOS\",1.00,-22.00,0.00,\"\",0.00,55.00,31.00,184.00,,,,,,\n2015,5,9,\"DL\",\"2692\",\"LGA\",\"BOS\",-5.00,-19.00,0.00,\"\",0.00,64.00,39.00,184.00,,,,,,\n2015,5,10,\"DL\",\"42\",\"MIA\",\"JFK\",19.00,12.00,0.00,\"\",0.00,182.00,155.00,1089.00,,,,,,\n2015,5,10,\"DL\",\"208\",\"JFK\",\"MCO\",13.00,0.00,0.00,\"\",0.00,174.00,127.00,944.00,,,,,,\n2015,5,10,\"DL\",\"221\",\"LGA\",\"ATL\",6.00,-29.00,0.00,\"\",0.00,130.00,106.00,762.00,,,,,,\n2015,5,10,\"DL\",\"326\",\"SJU\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,225.00,197.00,1598.00,,,,,,\n2015,5,10,\"DL\",\"332\",\"SJU\",\"JFK\",-5.00,-33.00,0.00,\"\",0.00,218.00,196.00,1598.00,,,,,,\n2015,5,10,\"DL\",\"333\",\"MSP\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,154.00,134.00,1020.00,,,,,,\n2015,5,10,\"DL\",\"342\",\"SFO\",\"JFK\",-1.00,15.00,0.00,\"\",0.00,355.00,304.00,2586.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,10,\"DL\",\"347\",\"LGA\",\"ATL\",0.00,-31.00,0.00,\"\",0.00,127.00,103.00,762.00,,,,,,\n2015,5,10,\"DL\",\"348\",\"SJU\",\"JFK\",-9.00,-34.00,0.00,\"\",0.00,217.00,197.00,1598.00,,,,,,\n2015,5,10,\"DL\",\"350\",\"LGA\",\"ATL\",-4.00,-23.00,0.00,\"\",0.00,134.00,106.00,762.00,,,,,,\n2015,5,10,\"DL\",\"400\",\"PDX\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,321.00,300.00,2454.00,,,,,,\n2015,5,10,\"DL\",\"403\",\"PDX\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,330.00,308.00,2454.00,,,,,,\n2015,5,10,\"DL\",\"404\",\"JFK\",\"ATL\",2.00,1.00,0.00,\"\",0.00,168.00,102.00,760.00,,,,,,\n2015,5,10,\"DL\",\"405\",\"JFK\",\"TPA\",-6.00,1.00,0.00,\"\",0.00,178.00,137.00,1005.00,,,,,,\n2015,5,10,\"DL\",\"407\",\"MCO\",\"JFK\",1.00,-11.00,0.00,\"\",0.00,157.00,130.00,944.00,,,,,,\n2015,5,10,\"DL\",\"409\",\"JFK\",\"SJU\",-3.00,-23.00,0.00,\"\",0.00,227.00,204.00,1598.00,,,,,,\n2015,5,10,\"DL\",\"410\",\"MSP\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,150.00,130.00,1029.00,,,,,,\n2015,5,10,\"DL\",\"412\",\"LAX\",\"JFK\",1.00,-12.00,0.00,\"\",0.00,326.00,303.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"413\",\"JFK\",\"PHX\",0.00,-16.00,0.00,\"\",0.00,327.00,297.00,2153.00,,,,,,\n2015,5,10,\"DL\",\"414\",\"SFO\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,332.00,309.00,2586.00,,,,,,\n2015,5,10,\"DL\",\"415\",\"JFK\",\"SFO\",-2.00,11.00,0.00,\"\",0.00,421.00,387.00,2586.00,,,,,,\n2015,5,10,\"DL\",\"417\",\"JFK\",\"SEA\",12.00,12.00,0.00,\"\",0.00,382.00,348.00,2422.00,,,,,,\n2015,5,10,\"DL\",\"418\",\"SEA\",\"JFK\",1.00,16.00,0.00,\"\",0.00,343.00,288.00,2422.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,10,\"DL\",\"419\",\"JFK\",\"SEA\",2.00,0.00,0.00,\"\",0.00,377.00,345.00,2422.00,,,,,,\n2015,5,10,\"DL\",\"420\",\"JFK\",\"LAX\",12.00,-10.00,0.00,\"\",0.00,376.00,318.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"421\",\"JFK\",\"SLC\",-4.00,8.00,0.00,\"\",0.00,341.00,300.00,1990.00,,,,,,\n2015,5,10,\"DL\",\"422\",\"JFK\",\"LAX\",35.00,-2.00,0.00,\"\",0.00,343.00,319.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"423\",\"JFK\",\"LAX\",-3.00,-43.00,0.00,\"\",0.00,333.00,314.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"424\",\"JFK\",\"LAX\",-2.00,-30.00,0.00,\"\",0.00,342.00,318.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"425\",\"JFK\",\"MSP\",-4.00,-20.00,0.00,\"\",0.00,176.00,150.00,1029.00,,,,,,\n2015,5,10,\"DL\",\"426\",\"JFK\",\"LAS\",16.00,8.00,0.00,\"\",0.00,347.00,304.00,2248.00,,,,,,\n2015,5,10,\"DL\",\"427\",\"JFK\",\"LAX\",51.00,13.00,0.00,\"\",0.00,350.00,318.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"430\",\"JFK\",\"SFO\",-3.00,-28.00,0.00,\"\",0.00,359.00,339.00,2586.00,,,,,,\n2015,5,10,\"DL\",\"431\",\"JFK\",\"SFO\",-7.00,-5.00,0.00,\"\",0.00,411.00,370.00,2586.00,,,,,,\n2015,5,10,\"DL\",\"433\",\"JFK\",\"CHS\",-3.00,-28.00,0.00,\"\",0.00,111.00,89.00,636.00,,,,,,\n2015,5,10,\"DL\",\"434\",\"JFK\",\"SFO\",-6.00,-26.00,0.00,\"\",0.00,384.00,347.00,2586.00,,,,,,\n2015,5,10,\"DL\",\"435\",\"JFK\",\"SFO\",-4.00,-12.00,0.00,\"\",0.00,396.00,347.00,2586.00,,,,,,\n2015,5,10,\"DL\",\"436\",\"JFK\",\"LAS\",-6.00,-34.00,0.00,\"\",0.00,322.00,296.00,2248.00,,,,,,\n2015,5,10,\"DL\",\"437\",\"JFK\",\"BOS\",-2.00,-16.00,0.00,\"\",0.00,63.00,44.00,187.00,,,,,,\n2015,5,10,\"DL\",\"438\",\"JFK\",\"MCO\",-6.00,-7.00,0.00,\"\",0.00,167.00,128.00,944.00,,,,,,\n2015,5,10,\"DL\",\"441\",\"JFK\",\"MIA\",-3.00,-11.00,0.00,\"\",0.00,177.00,156.00,1089.00,,,,,,\n2015,5,10,\"DL\",\"442\",\"JFK\",\"SJU\",-6.00,-11.00,0.00,\"\",0.00,229.00,202.00,1598.00,,,,,,\n2015,5,10,\"DL\",\"444\",\"SLC\",\"JFK\",-3.00,6.00,0.00,\"\",0.00,289.00,245.00,1990.00,,,,,,\n2015,5,10,\"DL\",\"447\",\"JFK\",\"LAX\",-2.00,2.00,0.00,\"\",0.00,394.00,329.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"448\",\"JFK\",\"SEA\",5.00,-22.00,0.00,\"\",0.00,333.00,306.00,2422.00,,,,,,\n2015,5,10,\"DL\",\"454\",\"JFK\",\"STT\",7.00,-1.00,0.00,\"\",0.00,238.00,208.00,1623.00,,,,,,\n2015,5,10,\"DL\",\"455\",\"JFK\",\"SAN\",16.00,3.00,0.00,\"\",0.00,365.00,333.00,2446.00,,,,,,\n2015,5,10,\"DL\",\"456\",\"JFK\",\"SEA\",-1.00,-33.00,0.00,\"\",0.00,331.00,306.00,2422.00,,,,,,\n2015,5,10,\"DL\",\"459\",\"JFK\",\"SAN\",-4.00,,0.00,\"\",1.00,,,2446.00,,,,,,\n2015,5,10,\"DL\",\"460\",\"JFK\",\"SLC\",1.00,38.00,0.00,\"\",0.00,362.00,310.00,1990.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,10,\"DL\",\"462\",\"JFK\",\"PDX\",-2.00,-1.00,0.00,\"\",0.00,379.00,357.00,2454.00,,,,,,\n2015,5,10,\"DL\",\"463\",\"JFK\",\"LAS\",33.00,4.00,0.00,\"\",0.00,327.00,296.00,2248.00,,,,,,\n2015,5,10,\"DL\",\"465\",\"JFK\",\"ATL\",-5.00,-25.00,0.00,\"\",0.00,132.00,102.00,760.00,,,,,,\n2015,5,10,\"DL\",\"466\",\"SLC\",\"JFK\",-6.00,4.00,0.00,\"\",0.00,287.00,235.00,1990.00,,,,,,\n2015,5,10,\"DL\",\"468\",\"SFO\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,340.00,309.00,2586.00,,,,,,\n2015,5,10,\"DL\",\"469\",\"JFK\",\"SFO\",77.00,41.00,0.00,\"\",0.00,354.00,334.00,2586.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"DL\",\"472\",\"JFK\",\"LAX\",-3.00,-24.00,0.00,\"\",0.00,364.00,330.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"476\",\"LAX\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,314.00,296.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"477\",\"JFK\",\"LAX\",18.00,-4.00,0.00,\"\",0.00,373.00,329.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"478\",\"ATL\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,135.00,106.00,760.00,,,,,,\n2015,5,10,\"DL\",\"486\",\"JFK\",\"LAS\",-5.00,-31.00,0.00,\"\",0.00,306.00,283.00,2248.00,,,,,,\n2015,5,10,\"DL\",\"488\",\"JFK\",\"SJU\",-2.00,-9.00,0.00,\"\",0.00,220.00,200.00,1598.00,,,,,,\n2015,5,10,\"DL\",\"492\",\"JFK\",\"SJU\",-1.00,-9.00,0.00,\"\",0.00,234.00,203.00,1598.00,,,,,,\n2015,5,10,\"DL\",\"494\",\"JFK\",\"SLC\",77.00,67.00,0.00,\"\",0.00,295.00,263.00,1990.00,0.00,0.00,0.00,0.00,67.00,\n2015,5,10,\"DL\",\"497\",\"JFK\",\"ATL\",-4.00,-33.00,0.00,\"\",0.00,124.00,100.00,760.00,,,,,,\n2015,5,10,\"DL\",\"498\",\"JFK\",\"SFO\",6.00,12.00,0.00,\"\",0.00,414.00,382.00,2586.00,,,,,,\n2015,5,10,\"DL\",\"499\",\"JFK\",\"SLC\",-6.00,-39.00,0.00,\"\",0.00,277.00,261.00,1990.00,,,,,,\n2015,5,10,\"DL\",\"511\",\"SJU\",\"JFK\",-5.00,-30.00,0.00,\"\",0.00,224.00,198.00,1598.00,,,,,,\n2015,5,10,\"DL\",\"528\",\"LGA\",\"MSP\",-1.00,-17.00,0.00,\"\",0.00,173.00,142.00,1020.00,,,,,,\n2015,5,10,\"DL\",\"541\",\"LAS\",\"JFK\",-3.00,6.00,0.00,\"\",0.00,308.00,286.00,2248.00,,,,,,\n2015,5,10,\"DL\",\"544\",\"ALB\",\"ATL\",-3.00,-18.00,0.00,\"\",0.00,140.00,122.00,853.00,,,,,,\n2015,5,10,\"DL\",\"582\",\"DTW\",\"LGA\",4.00,1.00,0.00,\"\",0.00,104.00,75.00,502.00,,,,,,\n2015,5,10,\"DL\",\"583\",\"LGA\",\"DTW\",-5.00,-12.00,0.00,\"\",0.00,107.00,83.00,502.00,,,,,,\n2015,5,10,\"DL\",\"664\",\"TPA\",\"LGA\",-11.00,-15.00,0.00,\"\",0.00,159.00,135.00,1010.00,,,,,,\n2015,5,10,\"DL\",\"665\",\"ATL\",\"ALB\",1.00,7.00,0.00,\"\",0.00,146.00,120.00,853.00,,,,,,\n2015,5,10,\"DL\",\"665\",\"ALB\",\"ATL\",8.00,-16.00,0.00,\"\",0.00,128.00,114.00,853.00,,,,,,\n2015,5,10,\"DL\",\"676\",\"STT\",\"JFK\",5.00,-24.00,0.00,\"\",0.00,223.00,205.00,1623.00,,,,,,\n2015,5,10,\"DL\",\"707\",\"DTW\",\"ALB\",3.00,-10.00,0.00,\"\",0.00,84.00,65.00,489.00,,,,,,\n2015,5,10,\"DL\",\"707\",\"ALB\",\"DTW\",-5.00,-22.00,0.00,\"\",0.00,93.00,75.00,489.00,,,,,,\n2015,5,10,\"DL\",\"714\",\"DTW\",\"LGA\",-5.00,15.00,0.00,\"\",0.00,125.00,76.00,502.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,10,\"DL\",\"723\",\"ATL\",\"BUF\",8.00,-7.00,0.00,\"\",0.00,112.00,96.00,712.00,,,,,,\n2015,5,10,\"DL\",\"723\",\"BUF\",\"ATL\",1.00,-9.00,0.00,\"\",0.00,121.00,98.00,712.00,,,,,,\n2015,5,10,\"DL\",\"729\",\"LAS\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,292.00,269.00,2248.00,,,,,,\n2015,5,10,\"DL\",\"763\",\"BOS\",\"JFK\",1.00,0.00,0.00,\"\",0.00,77.00,44.00,187.00,,,,,,\n2015,5,10,\"DL\",\"782\",\"MIA\",\"JFK\",-8.00,-13.00,0.00,\"\",0.00,177.00,151.00,1089.00,,,,,,\n2015,5,10,\"DL\",\"787\",\"MCO\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,159.00,128.00,944.00,,,,,,\n2015,5,10,\"DL\",\"789\",\"MIA\",\"LGA\",7.00,-2.00,0.00,\"\",0.00,179.00,159.00,1096.00,,,,,,\n2015,5,10,\"DL\",\"791\",\"LAX\",\"JFK\",-2.00,-34.00,0.00,\"\",0.00,305.00,285.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"792\",\"PBI\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,167.00,143.00,1028.00,,,,,,\n2015,5,10,\"DL\",\"793\",\"BOS\",\"JFK\",75.00,65.00,0.00,\"\",0.00,84.00,55.00,187.00,0.00,0.00,65.00,0.00,0.00,\n2015,5,10,\"DL\",\"802\",\"ATL\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,128.00,105.00,762.00,,,,,,\n2015,5,10,\"DL\",\"804\",\"LGA\",\"MSP\",2.00,-6.00,0.00,\"\",0.00,186.00,145.00,1020.00,,,,,,\n2015,5,10,\"DL\",\"856\",\"SAN\",\"JFK\",108.00,110.00,0.00,\"\",0.00,339.00,317.00,2446.00,8.00,0.00,2.00,0.00,100.00,\n2015,5,10,\"DL\",\"871\",\"MSP\",\"LGA\",0.00,1.00,0.00,\"\",0.00,165.00,141.00,1020.00,,,,,,\n2015,5,10,\"DL\",\"874\",\"LGA\",\"MIA\",-1.00,-33.00,0.00,\"\",0.00,173.00,153.00,1096.00,,,,,,\n2015,5,10,\"DL\",\"884\",\"LGA\",\"DEN\",-2.00,-3.00,0.00,\"\",0.00,273.00,217.00,1620.00,,,,,,\n2015,5,10,\"DL\",\"889\",\"MSP\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,162.00,135.00,1020.00,,,,,,\n2015,5,10,\"DL\",\"904\",\"LGA\",\"ATL\",-5.00,-3.00,0.00,\"\",0.00,146.00,106.00,762.00,,,,,,\n2015,5,10,\"DL\",\"906\",\"ATL\",\"LGA\",54.00,43.00,0.00,\"\",0.00,134.00,107.00,762.00,43.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"DL\",\"909\",\"LGA\",\"MIA\",-5.00,3.00,0.00,\"\",0.00,202.00,174.00,1096.00,,,,,,\n2015,5,10,\"DL\",\"939\",\"MCO\",\"LGA\",-7.00,28.00,0.00,\"\",0.00,198.00,162.00,950.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,10,\"DL\",\"964\",\"LGA\",\"ATL\",1.00,-5.00,0.00,\"\",0.00,140.00,97.00,762.00,,,,,,\n2015,5,10,\"DL\",\"965\",\"MCO\",\"LGA\",-4.00,35.00,0.00,\"\",0.00,200.00,173.00,950.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,10,\"DL\",\"986\",\"ATL\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,132.00,111.00,762.00,,,,,,\n2015,5,10,\"DL\",\"997\",\"DTW\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,103.00,78.00,502.00,,,,,,\n2015,5,8,\"DL\",\"1227\",\"PHX\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,280.00,257.00,2153.00,,,,,,\n2015,5,8,\"DL\",\"1242\",\"LGA\",\"PBI\",30.00,16.00,0.00,\"\",0.00,170.00,140.00,1035.00,3.00,0.00,0.00,0.00,13.00,\n2015,5,8,\"DL\",\"1262\",\"LAX\",\"JFK\",-3.00,0.00,0.00,\"\",0.00,336.00,313.00,2475.00,,,,,,\n2015,5,8,\"DL\",\"1264\",\"SLC\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,268.00,239.00,1990.00,,,,,,\n2015,5,8,\"DL\",\"1266\",\"BUF\",\"ATL\",-4.00,-21.00,0.00,\"\",0.00,105.00,94.00,712.00,,,,,,\n2015,5,8,\"DL\",\"1269\",\"LGA\",\"MIA\",72.00,44.00,0.00,\"\",0.00,169.00,149.00,1096.00,0.00,0.00,0.00,0.00,44.00,\n2015,5,8,\"DL\",\"1278\",\"MSP\",\"BUF\",21.00,10.00,0.00,\"\",0.00,108.00,93.00,735.00,,,,,,\n2015,5,8,\"DL\",\"1286\",\"ATL\",\"LGA\",44.00,34.00,0.00,\"\",0.00,125.00,107.00,762.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,8,\"DL\",\"1288\",\"LGA\",\"FLL\",199.00,184.00,0.00,\"\",0.00,180.00,151.00,1076.00,0.00,0.00,0.00,0.00,184.00,\n2015,5,8,\"DL\",\"1289\",\"LGA\",\"ATL\",0.00,-38.00,0.00,\"\",0.00,124.00,99.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1298\",\"LGA\",\"ATL\",19.00,-4.00,0.00,\"\",0.00,138.00,100.00,762.00,,,,,,\n2015,5,8,\"DL\",\"1306\",\"DTW\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,105.00,85.00,502.00,,,,,,\n2015,5,8,\"DL\",\"1312\",\"TPA\",\"JFK\",-11.00,-17.00,0.00,\"\",0.00,168.00,141.00,1005.00,,,,,,\n2015,5,8,\"DL\",\"1335\",\"MIA\",\"LGA\",12.00,2.00,0.00,\"\",0.00,173.00,153.00,1096.00,,,,,,\n2015,5,8,\"DL\",\"1356\",\"BUF\",\"DTW\",-1.00,-12.00,0.00,\"\",0.00,60.00,43.00,241.00,,,,,,\n2015,5,8,\"DL\",\"1359\",\"MCO\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,154.00,130.00,950.00,,,,,,\n2015,5,9,\"DL\",\"997\",\"DTW\",\"LGA\",-1.00,16.00,0.00,\"\",0.00,117.00,91.00,502.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,9,\"DL\",\"1088\",\"FLL\",\"LGA\",-2.00,13.00,0.00,\"\",0.00,191.00,161.00,1076.00,,,,,,\n2015,5,9,\"DL\",\"1109\",\"SEA\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,330.00,289.00,2422.00,,,,,,\n2015,5,9,\"DL\",\"1111\",\"ATL\",\"ROC\",-2.00,-2.00,0.00,\"\",0.00,128.00,99.00,749.00,,,,,,\n2015,5,9,\"DL\",\"1145\",\"LGA\",\"DTW\",52.00,25.00,0.00,\"\",0.00,93.00,74.00,502.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"DL\",\"1162\",\"LAX\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,312.00,287.00,2475.00,,,,,,\n2015,5,9,\"DL\",\"1174\",\"LGA\",\"PBI\",-2.00,6.00,0.00,\"\",0.00,186.00,138.00,1035.00,,,,,,\n2015,5,9,\"DL\",\"1176\",\"ATL\",\"BUF\",-4.00,-26.00,0.00,\"\",0.00,108.00,93.00,712.00,,,,,,\n2015,5,9,\"DL\",\"1176\",\"BUF\",\"ATL\",-2.00,-14.00,0.00,\"\",0.00,116.00,100.00,712.00,,,,,,\n2015,5,9,\"DL\",\"1186\",\"ATL\",\"LGA\",7.00,9.00,0.00,\"\",0.00,142.00,107.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1242\",\"LGA\",\"PBI\",-2.00,5.00,0.00,\"\",0.00,187.00,134.00,1035.00,,,,,,\n2015,5,9,\"DL\",\"1262\",\"LAX\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,323.00,294.00,2475.00,,,,,,\n2015,5,9,\"DL\",\"1264\",\"SLC\",\"JFK\",-11.00,-13.00,0.00,\"\",0.00,268.00,240.00,1990.00,,,,,,\n2015,5,9,\"DL\",\"1266\",\"BUF\",\"ATL\",-4.00,-12.00,0.00,\"\",0.00,112.00,97.00,712.00,,,,,,\n2015,5,9,\"DL\",\"1269\",\"LGA\",\"MIA\",2.00,-4.00,0.00,\"\",0.00,190.00,146.00,1096.00,,,,,,\n2015,5,9,\"DL\",\"1286\",\"ATL\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,127.00,110.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1288\",\"LGA\",\"FLL\",-8.00,-13.00,0.00,\"\",0.00,187.00,148.00,1076.00,,,,,,\n2015,5,9,\"DL\",\"1289\",\"LGA\",\"ATL\",0.00,-31.00,0.00,\"\",0.00,130.00,103.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1298\",\"LGA\",\"ATL\",22.00,-12.00,0.00,\"\",0.00,123.00,101.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1312\",\"TPA\",\"JFK\",-10.00,-12.00,0.00,\"\",0.00,170.00,140.00,1005.00,,,,,,\n2015,5,9,\"DL\",\"1335\",\"MIA\",\"LGA\",3.00,10.00,0.00,\"\",0.00,190.00,166.00,1096.00,,,,,,\n2015,5,9,\"DL\",\"1339\",\"MIA\",\"LGA\",114.00,118.00,0.00,\"\",0.00,188.00,163.00,1096.00,2.00,0.00,4.00,0.00,112.00,\n2015,5,9,\"DL\",\"1356\",\"BUF\",\"DTW\",-2.00,-25.00,0.00,\"\",0.00,54.00,40.00,241.00,,,,,,\n2015,5,9,\"DL\",\"1359\",\"MCO\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,159.00,144.00,950.00,,,,,,\n2015,5,9,\"DL\",\"1370\",\"ATL\",\"ROC\",-2.00,-21.00,0.00,\"\",0.00,112.00,97.00,749.00,,,,,,\n2015,5,9,\"DL\",\"1372\",\"DTW\",\"BUF\",6.00,0.00,0.00,\"\",0.00,60.00,39.00,241.00,,,,,,\n2015,5,9,\"DL\",\"1383\",\"LGA\",\"ATL\",16.00,-18.00,0.00,\"\",0.00,128.00,102.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1386\",\"ATL\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,129.00,110.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1394\",\"ATL\",\"JFK\",32.00,25.00,0.00,\"\",0.00,144.00,110.00,760.00,12.00,0.00,13.00,0.00,0.00,\n2015,5,9,\"DL\",\"1409\",\"FLL\",\"LGA\",-9.00,12.00,0.00,\"\",0.00,200.00,174.00,1076.00,,,,,,\n2015,5,9,\"DL\",\"1419\",\"ATL\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,153.00,110.00,760.00,,,,,,\n2015,5,9,\"DL\",\"1428\",\"LGA\",\"ATL\",-3.00,-7.00,0.00,\"\",0.00,152.00,102.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1429\",\"MSY\",\"LGA\",0.00,20.00,0.00,\"\",0.00,195.00,177.00,1183.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,9,\"DL\",\"1463\",\"DEN\",\"LGA\",50.00,61.00,0.00,\"\",0.00,245.00,210.00,1620.00,50.00,0.00,11.00,0.00,0.00,\n2015,5,9,\"DL\",\"1469\",\"LGA\",\"MSP\",-5.00,14.00,0.00,\"\",0.00,200.00,148.00,1020.00,,,,,,\n2015,5,9,\"DL\",\"1473\",\"SEA\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,311.00,291.00,2422.00,,,,,,\n2015,5,9,\"DL\",\"1479\",\"TPA\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,151.00,135.00,1010.00,,,,,,\n2015,5,9,\"DL\",\"1486\",\"ATL\",\"LGA\",-1.00,9.00,0.00,\"\",0.00,147.00,132.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1487\",\"ATL\",\"JFK\",116.00,106.00,0.00,\"\",0.00,133.00,110.00,760.00,106.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"DL\",\"1496\",\"MSP\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,155.00,137.00,1020.00,,,,,,\n2015,5,9,\"DL\",\"1510\",\"FLL\",\"LGA\",-4.00,8.00,0.00,\"\",0.00,188.00,161.00,1076.00,,,,,,\n2015,5,9,\"DL\",\"1514\",\"LGA\",\"FLL\",-7.00,-27.00,0.00,\"\",0.00,167.00,146.00,1076.00,,,,,,\n2015,5,9,\"DL\",\"1515\",\"ATL\",\"ALB\",-7.00,-12.00,0.00,\"\",0.00,140.00,115.00,853.00,,,,,,\n2015,5,9,\"DL\",\"1526\",\"MCO\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,157.00,137.00,950.00,,,,,,\n2015,5,9,\"DL\",\"1531\",\"LGA\",\"TPA\",-6.00,-23.00,0.00,\"\",0.00,160.00,131.00,1010.00,,,,,,\n2015,5,9,\"DL\",\"1542\",\"SEA\",\"JFK\",-6.00,-11.00,0.00,\"\",0.00,317.00,286.00,2422.00,,,,,,\n2015,5,9,\"DL\",\"1562\",\"BOS\",\"JFK\",1.00,-4.00,0.00,\"\",0.00,73.00,49.00,187.00,,,,,,\n2015,5,9,\"DL\",\"1584\",\"ROC\",\"ATL\",-3.00,-21.00,0.00,\"\",0.00,119.00,102.00,749.00,,,,,,\n2015,5,9,\"DL\",\"1586\",\"ATL\",\"LGA\",34.00,26.00,0.00,\"\",0.00,136.00,109.00,762.00,1.00,0.00,0.00,0.00,25.00,\n2015,5,9,\"DL\",\"1596\",\"MSP\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,147.00,135.00,1020.00,,,,,,\n2015,5,9,\"DL\",\"1642\",\"LGA\",\"MSY\",-3.00,-16.00,0.00,\"\",0.00,196.00,157.00,1183.00,,,,,,\n2015,5,9,\"DL\",\"1644\",\"FLL\",\"JFK\",-14.00,-21.00,0.00,\"\",0.00,179.00,153.00,1069.00,,,,,,\n2015,5,9,\"DL\",\"1647\",\"LGA\",\"ATL\",-2.00,-19.00,0.00,\"\",0.00,133.00,103.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1671\",\"MIA\",\"JFK\",1.00,-5.00,0.00,\"\",0.00,180.00,150.00,1089.00,,,,,,\n2015,5,9,\"DL\",\"1672\",\"ATL\",\"BUF\",-1.00,3.00,0.00,\"\",0.00,120.00,96.00,712.00,,,,,,\n2015,5,9,\"DL\",\"1672\",\"BUF\",\"ATL\",-4.00,-12.00,0.00,\"\",0.00,119.00,98.00,712.00,,,,,,\n2015,5,9,\"DL\",\"1697\",\"LGA\",\"ATL\",-2.00,-26.00,0.00,\"\",0.00,129.00,105.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1728\",\"LAS\",\"JFK\",0.00,14.00,0.00,\"\",0.00,311.00,269.00,2248.00,,,,,,\n2015,5,9,\"DL\",\"1750\",\"ATL\",\"JFK\",-1.00,6.00,0.00,\"\",0.00,153.00,105.00,760.00,,,,,,\n2015,5,9,\"DL\",\"1786\",\"ATL\",\"LGA\",5.00,9.00,0.00,\"\",0.00,142.00,124.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1789\",\"MSP\",\"LGA\",-3.00,41.00,0.00,\"\",0.00,205.00,192.00,1020.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,9,\"DL\",\"1796\",\"LGA\",\"MSP\",4.00,-27.00,0.00,\"\",0.00,158.00,135.00,1020.00,,,,,,\n2015,5,9,\"DL\",\"1800\",\"LGA\",\"DEN\",40.00,52.00,0.00,\"\",0.00,286.00,248.00,1620.00,0.00,0.00,52.00,0.00,0.00,\n2015,5,9,\"DL\",\"1806\",\"DTW\",\"JFK\",12.00,20.00,0.00,\"\",0.00,122.00,84.00,509.00,12.00,0.00,8.00,0.00,0.00,\n2015,5,9,\"DL\",\"1841\",\"SJU\",\"JFK\",-3.00,-34.00,0.00,\"\",0.00,216.00,199.00,1598.00,,,,,,\n2015,5,9,\"DL\",\"1851\",\"CHS\",\"JFK\",-3.00,25.00,0.00,\"\",0.00,152.00,100.00,636.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,9,\"DL\",\"1875\",\"LGA\",\"TPA\",-2.00,-13.00,0.00,\"\",0.00,168.00,132.00,1010.00,,,,,,\n2015,5,9,\"DL\",\"1879\",\"LGA\",\"FLL\",-2.00,-25.00,0.00,\"\",0.00,161.00,146.00,1076.00,,,,,,\n2015,5,9,\"DL\",\"1885\",\"LGA\",\"MCO\",-2.00,-24.00,0.00,\"\",0.00,156.00,123.00,950.00,,,,,,\n2015,5,9,\"DL\",\"1897\",\"LGA\",\"MCO\",-1.00,-20.00,0.00,\"\",0.00,152.00,124.00,950.00,,,,,,\n2015,5,9,\"DL\",\"1902\",\"LGA\",\"PBI\",24.00,-3.00,0.00,\"\",0.00,158.00,133.00,1035.00,,,,,,\n2015,5,9,\"DL\",\"1919\",\"LGA\",\"MSP\",-4.00,-13.00,0.00,\"\",0.00,170.00,147.00,1020.00,,,,,,\n2015,5,9,\"DL\",\"1947\",\"FLL\",\"JFK\",10.00,9.00,0.00,\"\",0.00,182.00,156.00,1069.00,,,,,,\n2015,5,9,\"DL\",\"1948\",\"DTW\",\"LGA\",6.00,-4.00,0.00,\"\",0.00,96.00,79.00,502.00,,,,,,\n2015,5,9,\"DL\",\"1958\",\"PBI\",\"LGA\",8.00,7.00,0.00,\"\",0.00,174.00,159.00,1035.00,,,,,,\n2015,5,9,\"DL\",\"1969\",\"BUF\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,83.00,64.00,301.00,,,,,,\n2015,5,9,\"DL\",\"1972\",\"AUS\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,217.00,199.00,1521.00,,,,,,\n2015,5,9,\"DL\",\"1982\",\"LGA\",\"MIA\",10.00,-8.00,0.00,\"\",0.00,178.00,146.00,1096.00,,,,,,\n2015,5,9,\"DL\",\"1985\",\"ALB\",\"DTW\",3.00,-12.00,0.00,\"\",0.00,86.00,72.00,489.00,,,,,,\n2015,5,9,\"DL\",\"1986\",\"ATL\",\"LGA\",20.00,-5.00,0.00,\"\",0.00,122.00,103.00,762.00,,,,,,\n2015,5,9,\"DL\",\"1994\",\"PHX\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,269.00,251.00,2153.00,,,,,,\n2015,5,9,\"DL\",\"1996\",\"MSP\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,157.00,143.00,1020.00,,,,,,\n2015,5,9,\"DL\",\"2013\",\"ATL\",\"SYR\",-3.00,-22.00,0.00,\"\",0.00,114.00,101.00,794.00,,,,,,\n2015,5,9,\"DL\",\"2014\",\"SYR\",\"ATL\",0.00,-13.00,0.00,\"\",0.00,124.00,109.00,794.00,,,,,,\n2015,5,9,\"DL\",\"2016\",\"LGA\",\"ATL\",-3.00,-25.00,0.00,\"\",0.00,128.00,103.00,762.00,,,,,,\n2015,5,9,\"DL\",\"2022\",\"LGA\",\"FLL\",8.00,-7.00,0.00,\"\",0.00,174.00,147.00,1076.00,,,,,,\n2015,5,9,\"DL\",\"2025\",\"JFK\",\"FLL\",9.00,-9.00,0.00,\"\",0.00,182.00,149.00,1069.00,,,,,,\n2015,5,9,\"DL\",\"2028\",\"JFK\",\"ATL\",-2.00,-22.00,0.00,\"\",0.00,143.00,102.00,760.00,,,,,,\n2015,5,9,\"DL\",\"2032\",\"MSP\",\"JFK\",-5.00,0.00,0.00,\"\",0.00,170.00,155.00,1029.00,,,,,,\n2015,5,9,\"DL\",\"2053\",\"JFK\",\"FLL\",-1.00,-28.00,0.00,\"\",0.00,173.00,146.00,1069.00,,,,,,\n2015,5,9,\"DL\",\"2058\",\"MCO\",\"JFK\",-10.00,-4.00,0.00,\"\",0.00,160.00,139.00,944.00,,,,,,\n2015,5,9,\"DL\",\"2073\",\"JFK\",\"DEN\",1.00,-20.00,0.00,\"\",0.00,257.00,224.00,1626.00,,,,,,\n2015,5,9,\"DL\",\"2074\",\"LGA\",\"ATL\",-2.00,4.00,0.00,\"\",0.00,159.00,100.00,762.00,,,,,,\n2015,5,9,\"DL\",\"2077\",\"LGA\",\"MCO\",123.00,100.00,0.00,\"\",0.00,150.00,124.00,950.00,6.00,0.00,0.00,0.00,94.00,\n2015,5,9,\"DL\",\"2093\",\"JFK\",\"TPA\",1.00,-34.00,0.00,\"\",0.00,149.00,129.00,1005.00,,,,,,\n2015,5,9,\"DL\",\"2110\",\"JFK\",\"AUS\",6.00,-37.00,0.00,\"\",0.00,218.00,194.00,1521.00,,,,,,\n2015,5,9,\"DL\",\"2119\",\"LGA\",\"MSP\",-2.00,-19.00,0.00,\"\",0.00,165.00,138.00,1020.00,,,,,,\n2015,5,9,\"DL\",\"2129\",\"ROC\",\"ATL\",-6.00,-14.00,0.00,\"\",0.00,121.00,104.00,749.00,,,,,,\n2015,5,10,\"DL\",\"1986\",\"ATL\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,135.00,113.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1994\",\"PHX\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,285.00,253.00,2153.00,,,,,,\n2015,5,10,\"DL\",\"2013\",\"ATL\",\"SYR\",49.00,36.00,0.00,\"\",0.00,122.00,101.00,794.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"DL\",\"2014\",\"SYR\",\"ATL\",-6.00,-23.00,0.00,\"\",0.00,122.00,107.00,794.00,,,,,,\n2015,5,10,\"DL\",\"2016\",\"LGA\",\"ATL\",-2.00,-23.00,0.00,\"\",0.00,132.00,103.00,762.00,,,,,,\n2015,5,10,\"DL\",\"2022\",\"LGA\",\"FLL\",236.00,252.00,0.00,\"\",0.00,208.00,152.00,1076.00,0.00,0.00,16.00,0.00,236.00,\n2015,5,10,\"DL\",\"2028\",\"FLL\",\"LGA\",49.00,40.00,0.00,\"\",0.00,172.00,156.00,1076.00,3.00,0.00,0.00,0.00,37.00,\n2015,5,10,\"DL\",\"2032\",\"MSP\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,156.00,136.00,1029.00,,,,,,\n2015,5,10,\"DL\",\"2037\",\"MCO\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,153.00,131.00,950.00,,,,,,\n2015,5,10,\"DL\",\"2040\",\"SFO\",\"JFK\",2.00,-14.00,0.00,\"\",0.00,325.00,301.00,2586.00,,,,,,\n2015,5,10,\"DL\",\"2043\",\"JFK\",\"PHX\",-4.00,-11.00,0.00,\"\",0.00,334.00,296.00,2153.00,,,,,,\n2015,5,10,\"DL\",\"2044\",\"JFK\",\"BOS\",-5.00,-36.00,0.00,\"\",0.00,70.00,41.00,187.00,,,,,,\n2015,5,10,\"DL\",\"2056\",\"JFK\",\"ATL\",-2.00,-32.00,0.00,\"\",0.00,137.00,103.00,760.00,,,,,,\n2015,5,10,\"DL\",\"2058\",\"MCO\",\"JFK\",-2.00,4.00,0.00,\"\",0.00,161.00,130.00,944.00,,,,,,\n2015,5,10,\"DL\",\"2059\",\"JFK\",\"ATL\",0.00,-16.00,0.00,\"\",0.00,153.00,99.00,760.00,,,,,,\n2015,5,10,\"DL\",\"2077\",\"LGA\",\"MCO\",2.00,-17.00,0.00,\"\",0.00,157.00,129.00,950.00,,,,,,\n2015,5,10,\"DL\",\"2079\",\"BUF\",\"DTW\",-4.00,-19.00,0.00,\"\",0.00,53.00,39.00,241.00,,,,,,\n2015,5,10,\"DL\",\"2086\",\"ATL\",\"LGA\",0.00,4.00,0.00,\"\",0.00,148.00,116.00,762.00,,,,,,\n2015,5,10,\"DL\",\"2096\",\"LGA\",\"MSP\",-8.00,-38.00,0.00,\"\",0.00,152.00,139.00,1020.00,,,,,,\n2015,5,10,\"DL\",\"2099\",\"JFK\",\"DEN\",-2.00,-26.00,0.00,\"\",0.00,260.00,226.00,1626.00,,,,,,\n2015,5,10,\"DL\",\"2119\",\"LGA\",\"MSP\",-5.00,-30.00,0.00,\"\",0.00,160.00,144.00,1020.00,,,,,,\n2015,5,10,\"DL\",\"2129\",\"ROC\",\"ATL\",0.00,-16.00,0.00,\"\",0.00,113.00,97.00,749.00,,,,,,\n2015,5,10,\"DL\",\"2131\",\"LGA\",\"DTW\",-2.00,-3.00,0.00,\"\",0.00,118.00,74.00,502.00,,,,,,\n2015,5,10,\"DL\",\"2148\",\"LGA\",\"DTW\",-2.00,-24.00,0.00,\"\",0.00,106.00,74.00,502.00,,,,,,\n2015,5,10,\"DL\",\"2150\",\"LGA\",\"DTW\",-6.00,-39.00,0.00,\"\",0.00,96.00,72.00,502.00,,,,,,\n2015,5,10,\"DL\",\"2155\",\"LAS\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,281.00,263.00,2248.00,,,,,,\n2015,5,10,\"DL\",\"2156\",\"ATL\",\"SYR\",-2.00,-15.00,0.00,\"\",0.00,117.00,104.00,794.00,,,,,,\n2015,5,10,\"DL\",\"2156\",\"SYR\",\"ATL\",-7.00,-22.00,0.00,\"\",0.00,128.00,108.00,794.00,,,,,,\n2015,5,10,\"DL\",\"2174\",\"DTW\",\"JFK\",99.00,96.00,0.00,\"\",0.00,118.00,75.00,509.00,0.00,0.00,96.00,0.00,0.00,\n2015,5,10,\"DL\",\"2178\",\"LGA\",\"TPA\",139.00,129.00,0.00,\"\",0.00,171.00,139.00,1010.00,0.00,0.00,129.00,0.00,0.00,\n2015,5,10,\"DL\",\"2181\",\"LGA\",\"MCO\",-2.00,-13.00,0.00,\"\",0.00,159.00,129.00,950.00,,,,,,\n2015,5,10,\"DL\",\"2186\",\"ATL\",\"LGA\",18.00,0.00,0.00,\"\",0.00,128.00,106.00,762.00,,,,,,\n2015,5,10,\"DL\",\"2189\",\"JFK\",\"CHS\",-8.00,-32.00,0.00,\"\",0.00,115.00,91.00,636.00,,,,,,\n2015,5,10,\"DL\",\"2214\",\"BOS\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,69.00,39.00,187.00,,,,,,\n2015,5,10,\"DL\",\"2217\",\"JFK\",\"BOS\",11.00,-16.00,0.00,\"\",0.00,65.00,39.00,187.00,,,,,,\n2015,5,10,\"DL\",\"2230\",\"CHS\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,116.00,93.00,636.00,,,,,,\n2015,5,10,\"DL\",\"2231\",\"DTW\",\"LGA\",-10.00,3.00,0.00,\"\",0.00,121.00,85.00,502.00,,,,,,\n2015,5,10,\"DL\",\"2240\",\"SFO\",\"JFK\",10.00,5.00,0.00,\"\",0.00,333.00,307.00,2586.00,,,,,,\n2015,5,10,\"DL\",\"2248\",\"DTW\",\"LGA\",-2.00,3.00,0.00,\"\",0.00,113.00,84.00,502.00,,,,,,\n2015,5,10,\"DL\",\"2262\",\"LAX\",\"JFK\",9.00,4.00,0.00,\"\",0.00,329.00,300.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"2263\",\"JFK\",\"MIA\",-2.00,-21.00,0.00,\"\",0.00,191.00,152.00,1089.00,,,,,,\n2015,5,10,\"DL\",\"2270\",\"JFK\",\"AUS\",-3.00,-35.00,0.00,\"\",0.00,232.00,204.00,1521.00,,,,,,\n2015,5,10,\"DL\",\"2276\",\"MCO\",\"JFK\",13.00,37.00,0.00,\"\",0.00,191.00,141.00,944.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,10,\"DL\",\"2277\",\"JFK\",\"TPA\",-5.00,-13.00,0.00,\"\",0.00,185.00,152.00,1005.00,,,,,,\n2015,5,10,\"DL\",\"2282\",\"LGA\",\"MCO\",27.00,18.00,0.00,\"\",0.00,167.00,130.00,950.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,10,\"DL\",\"2292\",\"JFK\",\"PBI\",-3.00,-15.00,0.00,\"\",0.00,175.00,147.00,1028.00,,,,,,\n2015,5,10,\"DL\",\"2296\",\"MSP\",\"LGA\",52.00,41.00,0.00,\"\",0.00,158.00,134.00,1020.00,0.00,0.00,0.00,0.00,41.00,\n2015,5,10,\"DL\",\"2301\",\"JFK\",\"SAT\",1.00,-8.00,0.00,\"\",0.00,260.00,213.00,1587.00,,,,,,\n2015,5,10,\"DL\",\"2311\",\"JFK\",\"MIA\",-5.00,-21.00,0.00,\"\",0.00,190.00,152.00,1089.00,,,,,,\n2015,5,10,\"DL\",\"2312\",\"JFK\",\"DTW\",3.00,-11.00,0.00,\"\",0.00,126.00,91.00,509.00,,,,,,\n2015,5,10,\"DL\",\"2317\",\"PBI\",\"LGA\",-1.00,6.00,0.00,\"\",0.00,180.00,155.00,1035.00,,,,,,\n2015,5,10,\"DL\",\"2319\",\"LGA\",\"MSP\",-2.00,-45.00,0.00,\"\",0.00,152.00,140.00,1020.00,,,,,,\n2015,5,10,\"DL\",\"2331\",\"LGA\",\"DTW\",52.00,62.00,0.00,\"\",0.00,131.00,76.00,502.00,4.00,0.00,10.00,0.00,48.00,\n2015,5,10,\"DL\",\"2340\",\"JFK\",\"MCO\",0.00,-12.00,0.00,\"\",0.00,178.00,131.00,944.00,,,,,,\n2015,5,10,\"DL\",\"2349\",\"DTW\",\"LGA\",59.00,48.00,0.00,\"\",0.00,93.00,73.00,502.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,10,\"DL\",\"2350\",\"ATL\",\"JFK\",90.00,87.00,0.00,\"\",0.00,132.00,104.00,760.00,87.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"DL\",\"2352\",\"LAS\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,306.00,278.00,2248.00,,,,,,\n2015,5,10,\"DL\",\"2354\",\"SLC\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,258.00,241.00,1990.00,,,,,,\n2015,5,10,\"DL\",\"2362\",\"LAX\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,312.00,296.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"2382\",\"JFK\",\"FLL\",-9.00,1.00,0.00,\"\",0.00,211.00,158.00,1069.00,,,,,,\n2015,5,10,\"DL\",\"2386\",\"ATL\",\"LGA\",110.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,10,\"DL\",\"1214\",\"LGA\",\"ATL\",21.00,-4.00,0.00,\"\",0.00,139.00,107.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1227\",\"PHX\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,282.00,263.00,2153.00,,,,,,\n2015,5,10,\"DL\",\"1242\",\"LGA\",\"PBI\",-1.00,-8.00,0.00,\"\",0.00,177.00,144.00,1035.00,,,,,,\n2015,5,10,\"DL\",\"1262\",\"LAX\",\"JFK\",0.00,4.00,0.00,\"\",0.00,337.00,310.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"1264\",\"SLC\",\"JFK\",5.00,-1.00,0.00,\"\",0.00,267.00,247.00,1990.00,,,,,,\n2015,5,10,\"DL\",\"1266\",\"BUF\",\"ATL\",-4.00,-24.00,0.00,\"\",0.00,117.00,98.00,712.00,,,,,,\n2015,5,10,\"DL\",\"1269\",\"LGA\",\"MIA\",0.00,1.00,0.00,\"\",0.00,198.00,156.00,1096.00,,,,,,\n2015,5,10,\"DL\",\"1278\",\"MSP\",\"BUF\",9.00,8.00,0.00,\"\",0.00,118.00,98.00,735.00,,,,,,\n2015,5,10,\"DL\",\"1286\",\"ATL\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,131.00,105.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1288\",\"LGA\",\"FLL\",-7.00,-22.00,0.00,\"\",0.00,180.00,149.00,1076.00,,,,,,\n2015,5,10,\"DL\",\"1289\",\"LGA\",\"ATL\",-1.00,-11.00,0.00,\"\",0.00,152.00,102.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1298\",\"LGA\",\"ATL\",0.00,-26.00,0.00,\"\",0.00,135.00,103.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1306\",\"DTW\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,105.00,78.00,502.00,,,,,,\n2015,5,10,\"DL\",\"1312\",\"TPA\",\"JFK\",12.00,-7.00,0.00,\"\",0.00,155.00,136.00,1005.00,,,,,,\n2015,5,10,\"DL\",\"1335\",\"MIA\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,178.00,155.00,1096.00,,,,,,\n2015,5,10,\"DL\",\"1356\",\"DEN\",\"LGA\",-3.00,-34.00,0.00,\"\",0.00,209.00,189.00,1620.00,,,,,,\n2015,5,10,\"DL\",\"1359\",\"MCO\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,158.00,135.00,950.00,,,,,,\n2015,5,10,\"DL\",\"1370\",\"ATL\",\"ROC\",-4.00,-18.00,0.00,\"\",0.00,111.00,93.00,749.00,,,,,,\n2015,5,10,\"DL\",\"1370\",\"ROC\",\"ATL\",-7.00,-18.00,0.00,\"\",0.00,123.00,103.00,749.00,,,,,,\n2015,5,10,\"DL\",\"1372\",\"DTW\",\"BUF\",-7.00,7.00,0.00,\"\",0.00,80.00,42.00,241.00,,,,,,\n2015,5,10,\"DL\",\"1383\",\"LGA\",\"ATL\",222.00,183.00,0.00,\"\",0.00,129.00,98.00,762.00,9.00,0.00,0.00,0.00,174.00,\n2015,5,10,\"DL\",\"1386\",\"ATL\",\"LGA\",14.00,17.00,0.00,\"\",0.00,137.00,102.00,762.00,14.00,0.00,3.00,0.00,0.00,\n2015,5,10,\"DL\",\"1394\",\"ATL\",\"JFK\",1.00,-19.00,0.00,\"\",0.00,133.00,111.00,760.00,,,,,,\n2015,5,10,\"DL\",\"1419\",\"ATL\",\"JFK\",-7.00,-31.00,0.00,\"\",0.00,131.00,105.00,760.00,,,,,,\n2015,5,10,\"DL\",\"1428\",\"LGA\",\"ATL\",-3.00,-31.00,0.00,\"\",0.00,131.00,109.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1473\",\"SEA\",\"JFK\",-1.00,1.00,0.00,\"\",0.00,332.00,306.00,2422.00,,,,,,\n2015,5,10,\"DL\",\"1486\",\"ATL\",\"LGA\",1.00,4.00,0.00,\"\",0.00,141.00,106.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1487\",\"ATL\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,129.00,103.00,760.00,,,,,,\n2015,5,10,\"DL\",\"1496\",\"MSP\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,153.00,134.00,1020.00,,,,,,\n2015,5,10,\"DL\",\"1514\",\"LGA\",\"FLL\",1.00,8.00,0.00,\"\",0.00,196.00,156.00,1076.00,,,,,,\n2015,5,10,\"DL\",\"1515\",\"ATL\",\"ALB\",0.00,-6.00,0.00,\"\",0.00,141.00,110.00,853.00,,,,,,\n2015,5,10,\"DL\",\"1526\",\"MCO\",\"LGA\",3.00,-6.00,0.00,\"\",0.00,150.00,132.00,950.00,,,,,,\n2015,5,10,\"DL\",\"1542\",\"SEA\",\"JFK\",0.00,3.00,0.00,\"\",0.00,327.00,304.00,2422.00,,,,,,\n2015,5,10,\"DL\",\"1543\",\"ATL\",\"ALB\",-5.00,-8.00,0.00,\"\",0.00,141.00,116.00,853.00,,,,,,\n2015,5,10,\"DL\",\"1543\",\"ALB\",\"ATL\",-4.00,-23.00,0.00,\"\",0.00,143.00,123.00,853.00,,,,,,\n2015,5,10,\"DL\",\"1548\",\"LGA\",\"DTW\",-4.00,-25.00,0.00,\"\",0.00,99.00,79.00,502.00,,,,,,\n2015,5,10,\"DL\",\"1560\",\"MSY\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,190.00,156.00,1183.00,,,,,,\n2015,5,10,\"DL\",\"1562\",\"BOS\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,68.00,41.00,187.00,,,,,,\n2015,5,10,\"DL\",\"1566\",\"LGA\",\"PBI\",43.00,58.00,0.00,\"\",0.00,198.00,154.00,1035.00,3.00,0.00,15.00,0.00,40.00,\n2015,5,10,\"DL\",\"1580\",\"LGA\",\"DTW\",5.00,3.00,0.00,\"\",0.00,123.00,82.00,502.00,,,,,,\n2015,5,10,\"DL\",\"1583\",\"SFO\",\"JFK\",41.00,29.00,0.00,\"\",0.00,337.00,314.00,2586.00,0.00,0.00,0.00,0.00,29.00,\n2015,5,10,\"DL\",\"1584\",\"ATL\",\"ROC\",90.00,73.00,0.00,\"\",0.00,116.00,97.00,749.00,73.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"DL\",\"1584\",\"ROC\",\"ATL\",65.00,54.00,0.00,\"\",0.00,124.00,98.00,749.00,0.00,0.00,0.00,0.00,54.00,\n2015,5,10,\"DL\",\"1586\",\"ATL\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,132.00,108.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1596\",\"MSP\",\"LGA\",72.00,69.00,0.00,\"\",0.00,162.00,130.00,1020.00,69.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"DL\",\"1644\",\"FLL\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,175.00,147.00,1069.00,,,,,,\n2015,5,10,\"DL\",\"1647\",\"LGA\",\"ATL\",-5.00,-19.00,0.00,\"\",0.00,136.00,105.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1685\",\"LGA\",\"MCO\",0.00,2.00,0.00,\"\",0.00,177.00,132.00,950.00,,,,,,\n2015,5,10,\"DL\",\"1697\",\"LGA\",\"ATL\",-4.00,-21.00,0.00,\"\",0.00,141.00,100.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1750\",\"ATL\",\"JFK\",63.00,44.00,0.00,\"\",0.00,130.00,105.00,760.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,10,\"DL\",\"1762\",\"LAX\",\"JFK\",7.00,5.00,0.00,\"\",0.00,333.00,295.00,2475.00,,,,,,\n2015,5,10,\"DL\",\"1779\",\"LGA\",\"MSY\",-2.00,-30.00,0.00,\"\",0.00,171.00,154.00,1183.00,,,,,,\n2015,5,10,\"DL\",\"1786\",\"ATL\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,134.00,108.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1796\",\"LGA\",\"MSP\",-4.00,-25.00,0.00,\"\",0.00,171.00,148.00,1020.00,,,,,,\n2015,5,10,\"DL\",\"1830\",\"SLC\",\"JFK\",-2.00,14.00,0.00,\"\",0.00,292.00,267.00,1990.00,,,,,,\n2015,5,10,\"DL\",\"1841\",\"SJU\",\"JFK\",-3.00,-29.00,0.00,\"\",0.00,221.00,202.00,1598.00,,,,,,\n2015,5,10,\"DL\",\"1849\",\"LGA\",\"ATL\",47.00,15.00,0.00,\"\",0.00,126.00,99.00,762.00,1.00,0.00,0.00,0.00,14.00,\n2015,5,10,\"DL\",\"1851\",\"CHS\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,114.00,88.00,636.00,,,,,,\n2015,5,10,\"DL\",\"1875\",\"LGA\",\"TPA\",-5.00,4.00,0.00,\"\",0.00,189.00,140.00,1010.00,,,,,,\n2015,5,10,\"DL\",\"1885\",\"LGA\",\"MCO\",62.00,39.00,0.00,\"\",0.00,157.00,130.00,950.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"DL\",\"1886\",\"ATL\",\"LGA\",46.00,44.00,0.00,\"\",0.00,148.00,107.00,762.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"DL\",\"1897\",\"LGA\",\"MCO\",6.00,5.00,0.00,\"\",0.00,173.00,132.00,950.00,,,,,,\n2015,5,10,\"DL\",\"1902\",\"LGA\",\"PBI\",10.00,13.00,0.00,\"\",0.00,187.00,153.00,1035.00,,,,,,\n2015,5,10,\"DL\",\"1917\",\"MIA\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,180.00,156.00,1096.00,,,,,,\n2015,5,10,\"DL\",\"1930\",\"LGA\",\"MIA\",-4.00,28.00,0.00,\"\",0.00,230.00,161.00,1096.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,10,\"DL\",\"1935\",\"LGA\",\"TPA\",-1.00,-10.00,0.00,\"\",0.00,173.00,135.00,1010.00,,,,,,\n2015,5,10,\"DL\",\"1947\",\"FLL\",\"JFK\",35.00,43.00,0.00,\"\",0.00,192.00,158.00,1069.00,5.00,0.00,37.00,0.00,1.00,\n2015,5,10,\"DL\",\"1948\",\"DTW\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,100.00,75.00,502.00,,,,,,\n2015,5,10,\"DL\",\"1949\",\"TPA\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,159.00,139.00,1010.00,,,,,,\n2015,5,10,\"DL\",\"1953\",\"LGA\",\"FLL\",0.00,-7.00,0.00,\"\",0.00,187.00,152.00,1076.00,,,,,,\n2015,5,10,\"DL\",\"1958\",\"PBI\",\"LGA\",33.00,28.00,0.00,\"\",0.00,171.00,146.00,1035.00,9.00,0.00,0.00,0.00,19.00,\n2015,5,10,\"DL\",\"1972\",\"AUS\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,219.00,197.00,1521.00,,,,,,\n2015,5,10,\"DL\",\"1974\",\"MIA\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,188.00,160.00,1096.00,,,,,,\n2015,5,10,\"DL\",\"1982\",\"LGA\",\"MIA\",1.00,22.00,0.00,\"\",0.00,217.00,178.00,1096.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,11,\"DL\",\"1644\",\"FLL\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,168.00,145.00,1069.00,,,,,,\n2015,5,11,\"DL\",\"1647\",\"LGA\",\"ATL\",74.00,72.00,0.00,\"\",0.00,150.00,101.00,762.00,0.00,0.00,0.00,0.00,72.00,\n2015,5,11,\"DL\",\"1671\",\"MIA\",\"JFK\",8.00,4.00,0.00,\"\",0.00,183.00,147.00,1089.00,,,,,,\n2015,5,11,\"DL\",\"1672\",\"ATL\",\"BUF\",-3.00,-4.00,0.00,\"\",0.00,118.00,93.00,712.00,,,,,,\n2015,5,11,\"DL\",\"1672\",\"BUF\",\"ATL\",-3.00,-20.00,0.00,\"\",0.00,111.00,97.00,712.00,,,,,,\n2015,5,11,\"DL\",\"1685\",\"LGA\",\"MCO\",-1.00,-16.00,0.00,\"\",0.00,160.00,132.00,950.00,,,,,,\n2015,5,11,\"DL\",\"1697\",\"LGA\",\"ATL\",42.00,22.00,0.00,\"\",0.00,138.00,103.00,762.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,11,\"DL\",\"1728\",\"LAS\",\"JFK\",20.00,0.00,0.00,\"\",0.00,281.00,251.00,2248.00,,,,,,\n2015,5,11,\"DL\",\"1750\",\"ATL\",\"JFK\",25.00,43.00,0.00,\"\",0.00,167.00,118.00,760.00,25.00,0.00,18.00,0.00,0.00,\n2015,5,11,\"DL\",\"1762\",\"LAX\",\"JFK\",4.00,-17.00,0.00,\"\",0.00,314.00,289.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"1779\",\"LGA\",\"MSY\",0.00,-5.00,0.00,\"\",0.00,194.00,159.00,1183.00,,,,,,\n2015,5,11,\"DL\",\"1786\",\"ATL\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,124.00,104.00,762.00,,,,,,\n2015,5,11,\"DL\",\"1787\",\"FLL\",\"JFK\",-1.00,-20.00,0.00,\"\",0.00,167.00,138.00,1069.00,,,,,,\n2015,5,11,\"DL\",\"1796\",\"LGA\",\"MSP\",164.00,136.00,0.00,\"\",0.00,170.00,135.00,1020.00,10.00,0.00,0.00,0.00,126.00,\n2015,5,11,\"DL\",\"1830\",\"SLC\",\"JFK\",31.00,18.00,0.00,\"\",0.00,263.00,229.00,1990.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,11,\"DL\",\"1841\",\"SJU\",\"JFK\",2.00,-26.00,0.00,\"\",0.00,219.00,200.00,1598.00,,,,,,\n2015,5,11,\"DL\",\"1848\",\"DTW\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,99.00,78.00,502.00,,,,,,\n2015,5,11,\"DL\",\"1849\",\"LGA\",\"ATL\",86.00,57.00,0.00,\"\",0.00,129.00,105.00,762.00,0.00,0.00,0.00,0.00,57.00,\n2015,5,11,\"DL\",\"1851\",\"CHS\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,113.00,88.00,636.00,,,,,,\n2015,5,11,\"DL\",\"1875\",\"LGA\",\"TPA\",-3.00,-20.00,0.00,\"\",0.00,163.00,137.00,1010.00,,,,,,\n2015,5,11,\"DL\",\"1879\",\"LGA\",\"FLL\",-2.00,-11.00,0.00,\"\",0.00,178.00,153.00,1076.00,,,,,,\n2015,5,11,\"DL\",\"1885\",\"LGA\",\"MCO\",-6.00,-23.00,0.00,\"\",0.00,163.00,132.00,950.00,,,,,,\n2015,5,11,\"DL\",\"1886\",\"ATL\",\"LGA\",104.00,96.00,0.00,\"\",0.00,142.00,106.00,762.00,0.00,0.00,96.00,0.00,0.00,\n2015,5,11,\"DL\",\"1897\",\"LGA\",\"MCO\",-4.00,5.00,0.00,\"\",0.00,183.00,143.00,950.00,,,,,,\n2015,5,11,\"DL\",\"1902\",\"LGA\",\"PBI\",11.00,34.00,0.00,\"\",0.00,207.00,150.00,1035.00,5.00,0.00,23.00,0.00,6.00,\n2015,5,11,\"DL\",\"1917\",\"MIA\",\"LGA\",51.00,72.00,0.00,\"\",0.00,205.00,178.00,1096.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,11,\"DL\",\"1919\",\"LGA\",\"MSP\",-5.00,-19.00,0.00,\"\",0.00,168.00,143.00,1020.00,,,,,,\n2015,5,11,\"DL\",\"1930\",\"LGA\",\"MIA\",9.00,-13.00,0.00,\"\",0.00,176.00,145.00,1096.00,,,,,,\n2015,5,11,\"DL\",\"1935\",\"LGA\",\"TPA\",-2.00,42.00,0.00,\"\",0.00,226.00,145.00,1010.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,11,\"DL\",\"1947\",\"FLL\",\"JFK\",254.00,234.00,0.00,\"\",0.00,164.00,144.00,1069.00,0.00,0.00,0.00,0.00,234.00,\n2015,5,11,\"DL\",\"1948\",\"DTW\",\"LGA\",6.00,14.00,0.00,\"\",0.00,115.00,82.00,502.00,,,,,,\n2015,5,11,\"DL\",\"1949\",\"TPA\",\"LGA\",145.00,136.00,0.00,\"\",0.00,154.00,135.00,1010.00,136.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"1953\",\"LGA\",\"FLL\",203.00,188.00,0.00,\"\",0.00,179.00,141.00,1076.00,167.00,0.00,0.00,0.00,21.00,\n2015,5,11,\"DL\",\"1958\",\"PBI\",\"LGA\",88.00,78.00,0.00,\"\",0.00,166.00,142.00,1035.00,1.00,0.00,77.00,0.00,0.00,\n2015,5,11,\"DL\",\"1969\",\"BUF\",\"JFK\",-1.00,-9.00,0.00,\"\",0.00,82.00,51.00,301.00,,,,,,\n2015,5,11,\"DL\",\"1972\",\"AUS\",\"JFK\",2.00,-12.00,0.00,\"\",0.00,215.00,192.00,1521.00,,,,,,\n2015,5,11,\"DL\",\"1974\",\"MIA\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,179.00,156.00,1096.00,,,,,,\n2015,5,11,\"DL\",\"1982\",\"LGA\",\"MIA\",4.00,-20.00,0.00,\"\",0.00,172.00,149.00,1096.00,,,,,,\n2015,5,11,\"DL\",\"1985\",\"ALB\",\"DTW\",-3.00,-10.00,0.00,\"\",0.00,94.00,75.00,489.00,,,,,,\n2015,5,11,\"DL\",\"1986\",\"ATL\",\"LGA\",83.00,84.00,0.00,\"\",0.00,151.00,107.00,762.00,0.00,0.00,84.00,0.00,0.00,\n2015,5,11,\"DL\",\"1994\",\"PHX\",\"JFK\",1.00,-12.00,0.00,\"\",0.00,279.00,254.00,2153.00,,,,,,\n2015,5,11,\"DL\",\"1996\",\"MSP\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,161.00,137.00,1020.00,,,,,,\n2015,5,11,\"DL\",\"2003\",\"LGA\",\"MIA\",-2.00,-12.00,0.00,\"\",0.00,177.00,158.00,1096.00,,,,,,\n2015,5,11,\"DL\",\"2013\",\"ATL\",\"SYR\",-3.00,-16.00,0.00,\"\",0.00,122.00,101.00,794.00,,,,,,\n2015,5,11,\"DL\",\"2014\",\"SYR\",\"ATL\",3.00,-18.00,0.00,\"\",0.00,118.00,106.00,794.00,,,,,,\n2015,5,11,\"DL\",\"2016\",\"LGA\",\"ATL\",15.00,1.00,0.00,\"\",0.00,139.00,103.00,762.00,,,,,,\n2015,5,11,\"DL\",\"2019\",\"JFK\",\"AUS\",-2.00,-17.00,0.00,\"\",0.00,249.00,209.00,1521.00,,,,,,\n2015,5,11,\"DL\",\"2022\",\"LGA\",\"FLL\",150.00,139.00,0.00,\"\",0.00,181.00,143.00,1076.00,139.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"2028\",\"FLL\",\"LGA\",7.00,3.00,0.00,\"\",0.00,177.00,154.00,1076.00,,,,,,\n2015,5,11,\"DL\",\"2032\",\"MSP\",\"JFK\",-5.00,0.00,0.00,\"\",0.00,172.00,138.00,1029.00,,,,,,\n2015,5,11,\"DL\",\"2037\",\"MCO\",\"LGA\",4.00,11.00,0.00,\"\",0.00,164.00,136.00,950.00,,,,,,\n2015,5,11,\"DL\",\"2040\",\"SFO\",\"JFK\",1.00,0.00,0.00,\"\",0.00,340.00,294.00,2586.00,,,,,,\n2015,5,11,\"DL\",\"2043\",\"JFK\",\"PHX\",1.00,10.00,0.00,\"\",0.00,350.00,315.00,2153.00,,,,,,\n2015,5,11,\"DL\",\"2044\",\"JFK\",\"BOS\",76.00,46.00,0.00,\"\",0.00,71.00,33.00,187.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,11,\"DL\",\"2056\",\"JFK\",\"ATL\",-11.00,-38.00,0.00,\"\",0.00,140.00,102.00,760.00,,,,,,\n2015,5,11,\"DL\",\"2058\",\"MCO\",\"JFK\",2.00,-1.00,0.00,\"\",0.00,152.00,125.00,944.00,,,,,,\n2015,5,11,\"DL\",\"2074\",\"LGA\",\"ATL\",-1.00,-29.00,0.00,\"\",0.00,130.00,100.00,762.00,,,,,,\n2015,5,11,\"DL\",\"2077\",\"LGA\",\"MCO\",25.00,13.00,0.00,\"\",0.00,164.00,128.00,950.00,,,,,,\n2015,5,11,\"DL\",\"2086\",\"ATL\",\"LGA\",44.00,64.00,0.00,\"\",0.00,164.00,117.00,762.00,0.00,0.00,64.00,0.00,0.00,\n2015,5,11,\"DL\",\"2096\",\"LGA\",\"MSP\",-1.00,-6.00,0.00,\"\",0.00,177.00,137.00,1020.00,,,,,,\n2015,5,11,\"DL\",\"2119\",\"LGA\",\"MSP\",10.00,-13.00,0.00,\"\",0.00,162.00,139.00,1020.00,,,,,,\n2015,5,11,\"DL\",\"2129\",\"ROC\",\"ATL\",-5.00,-16.00,0.00,\"\",0.00,118.00,101.00,749.00,,,,,,\n2015,5,11,\"DL\",\"2131\",\"LGA\",\"DTW\",88.00,108.00,0.00,\"\",0.00,139.00,86.00,502.00,0.00,0.00,20.00,0.00,88.00,\n2015,5,11,\"DL\",\"2135\",\"TPA\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,165.00,136.00,1010.00,,,,,,\n2015,5,11,\"DL\",\"2148\",\"LGA\",\"DTW\",-3.00,-31.00,0.00,\"\",0.00,100.00,75.00,502.00,,,,,,\n2015,5,11,\"DL\",\"2150\",\"LGA\",\"DTW\",-1.00,-10.00,0.00,\"\",0.00,117.00,81.00,502.00,,,,,,\n2015,5,11,\"DL\",\"2151\",\"MIA\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,171.00,152.00,1096.00,,,,,,\n2015,5,11,\"DL\",\"2155\",\"LAS\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,295.00,279.00,2248.00,,,,,,\n2015,5,11,\"DL\",\"2156\",\"ATL\",\"SYR\",-5.00,2.00,0.00,\"\",0.00,137.00,104.00,794.00,,,,,,\n2015,5,11,\"DL\",\"2156\",\"SYR\",\"ATL\",11.00,-4.00,0.00,\"\",0.00,128.00,107.00,794.00,,,,,,\n2015,5,11,\"DL\",\"2166\",\"SYR\",\"DTW\",-3.00,-2.00,0.00,\"\",0.00,94.00,67.00,374.00,,,,,,\n2015,5,11,\"DL\",\"2174\",\"DTW\",\"JFK\",5.00,26.00,0.00,\"\",0.00,142.00,94.00,509.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,11,\"DL\",\"2178\",\"LGA\",\"TPA\",46.00,37.00,0.00,\"\",0.00,172.00,143.00,1010.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"2181\",\"LGA\",\"MCO\",14.00,5.00,0.00,\"\",0.00,161.00,137.00,950.00,,,,,,\n2015,5,11,\"DL\",\"2182\",\"JFK\",\"PHX\",2.00,22.00,0.00,\"\",0.00,356.00,298.00,2153.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,11,\"DL\",\"2185\",\"FLL\",\"JFK\",-6.00,-2.00,0.00,\"\",0.00,177.00,149.00,1069.00,,,,,,\n2015,5,11,\"DL\",\"2186\",\"ATL\",\"LGA\",45.00,69.00,0.00,\"\",0.00,170.00,135.00,762.00,0.00,0.00,69.00,0.00,0.00,\n2015,5,11,\"DL\",\"2190\",\"JFK\",\"MIA\",-3.00,13.00,0.00,\"\",0.00,218.00,158.00,1089.00,,,,,,\n2015,5,11,\"DL\",\"2208\",\"JFK\",\"ATL\",-5.00,-27.00,0.00,\"\",0.00,147.00,101.00,760.00,,,,,,\n2015,5,10,\"DL\",\"1086\",\"LGA\",\"ATL\",-3.00,-35.00,0.00,\"\",0.00,130.00,102.00,762.00,,,,,,\n2015,5,10,\"DL\",\"1088\",\"FLL\",\"LGA\",396.00,409.00,0.00,\"\",0.00,190.00,158.00,1076.00,396.00,0.00,13.00,0.00,0.00,\n2015,5,10,\"DL\",\"1109\",\"SEA\",\"JFK\",0.00,3.00,0.00,\"\",0.00,338.00,303.00,2422.00,,,,,,\n2015,5,10,\"DL\",\"1111\",\"ATL\",\"ROC\",105.00,95.00,0.00,\"\",0.00,120.00,100.00,749.00,0.00,0.00,0.00,0.00,95.00,\n2015,5,11,\"DL\",\"707\",\"DTW\",\"ALB\",-2.00,-18.00,0.00,\"\",0.00,81.00,64.00,489.00,,,,,,\n2015,5,11,\"DL\",\"707\",\"ALB\",\"DTW\",-4.00,-27.00,0.00,\"\",0.00,87.00,73.00,489.00,,,,,,\n2015,5,11,\"DL\",\"714\",\"DTW\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,110.00,80.00,502.00,,,,,,\n2015,5,11,\"DL\",\"723\",\"ATL\",\"BUF\",-1.00,-17.00,0.00,\"\",0.00,111.00,94.00,712.00,,,,,,\n2015,5,11,\"DL\",\"723\",\"BUF\",\"ATL\",-6.00,-19.00,0.00,\"\",0.00,118.00,99.00,712.00,,,,,,\n2015,5,11,\"DL\",\"725\",\"ATL\",\"LGA\",12.00,10.00,0.00,\"\",0.00,132.00,104.00,762.00,,,,,,\n2015,5,11,\"DL\",\"729\",\"LAS\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,286.00,262.00,2248.00,,,,,,\n2015,5,11,\"DL\",\"731\",\"LGA\",\"DTW\",-3.00,-6.00,0.00,\"\",0.00,111.00,88.00,502.00,,,,,,\n2015,5,11,\"DL\",\"750\",\"BOS\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,72.00,40.00,187.00,,,,,,\n2015,5,11,\"DL\",\"763\",\"BOS\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,76.00,44.00,187.00,,,,,,\n2015,5,11,\"DL\",\"772\",\"PBI\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,165.00,142.00,1035.00,,,,,,\n2015,5,11,\"DL\",\"781\",\"LGA\",\"ATL\",-6.00,-24.00,0.00,\"\",0.00,144.00,104.00,762.00,,,,,,\n2015,5,11,\"DL\",\"782\",\"MIA\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,175.00,149.00,1089.00,,,,,,\n2015,5,11,\"DL\",\"787\",\"MCO\",\"JFK\",1.00,-15.00,0.00,\"\",0.00,150.00,130.00,944.00,,,,,,\n2015,5,11,\"DL\",\"789\",\"MIA\",\"LGA\",175.00,192.00,0.00,\"\",0.00,205.00,168.00,1096.00,5.00,0.00,30.00,0.00,157.00,\n2015,5,11,\"DL\",\"791\",\"LAX\",\"JFK\",0.00,2.00,0.00,\"\",0.00,332.00,312.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"792\",\"PBI\",\"JFK\",-6.00,-1.00,0.00,\"\",0.00,172.00,140.00,1028.00,,,,,,\n2015,5,11,\"DL\",\"793\",\"BOS\",\"JFK\",57.00,44.00,0.00,\"\",0.00,81.00,42.00,187.00,0.00,0.00,12.00,0.00,32.00,\n2015,5,11,\"DL\",\"802\",\"ATL\",\"LGA\",8.00,43.00,0.00,\"\",0.00,180.00,104.00,762.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,11,\"DL\",\"804\",\"LGA\",\"MSP\",94.00,114.00,0.00,\"\",0.00,214.00,176.00,1020.00,1.00,0.00,20.00,0.00,93.00,\n2015,5,11,\"DL\",\"856\",\"SAN\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,321.00,290.00,2446.00,,,,,,\n2015,5,11,\"DL\",\"871\",\"MSP\",\"LGA\",85.00,82.00,0.00,\"\",0.00,161.00,140.00,1020.00,0.00,0.00,82.00,0.00,0.00,\n2015,5,11,\"DL\",\"874\",\"LGA\",\"MIA\",17.00,0.00,0.00,\"\",0.00,188.00,155.00,1096.00,,,,,,\n2015,5,11,\"DL\",\"878\",\"RSW\",\"LGA\",-2.00,,0.00,\"\",1.00,,,1080.00,,,,,,\n2015,5,11,\"DL\",\"884\",\"LGA\",\"DEN\",100.00,103.00,0.00,\"\",0.00,277.00,227.00,1620.00,0.00,0.00,3.00,0.00,100.00,\n2015,5,11,\"DL\",\"889\",\"MSP\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,166.00,142.00,1020.00,,,,,,\n2015,5,11,\"DL\",\"904\",\"LGA\",\"ATL\",-4.00,-20.00,0.00,\"\",0.00,133.00,104.00,762.00,,,,,,\n2015,5,11,\"DL\",\"906\",\"ATL\",\"LGA\",14.00,42.00,0.00,\"\",0.00,173.00,135.00,762.00,4.00,0.00,28.00,0.00,10.00,\n2015,5,11,\"DL\",\"909\",\"LGA\",\"MIA\",96.00,157.00,0.00,\"\",0.00,255.00,187.00,1096.00,96.00,0.00,61.00,0.00,0.00,\n2015,5,11,\"DL\",\"910\",\"MCO\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,146.00,127.00,950.00,,,,,,\n2015,5,11,\"DL\",\"928\",\"DEN\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,218.00,199.00,1620.00,,,,,,\n2015,5,11,\"DL\",\"939\",\"MCO\",\"LGA\",67.00,75.00,0.00,\"\",0.00,171.00,147.00,950.00,5.00,0.00,57.00,0.00,13.00,\n2015,5,11,\"DL\",\"964\",\"LGA\",\"ATL\",73.00,45.00,0.00,\"\",0.00,118.00,100.00,762.00,0.00,0.00,0.00,0.00,45.00,\n2015,5,11,\"DL\",\"965\",\"MCO\",\"LGA\",85.00,94.00,0.00,\"\",0.00,170.00,136.00,950.00,5.00,0.00,84.00,0.00,5.00,\n2015,5,11,\"DL\",\"971\",\"LGA\",\"DEN\",-2.00,-6.00,0.00,\"\",0.00,263.00,219.00,1620.00,,,,,,\n2015,5,11,\"DL\",\"986\",\"ATL\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,136.00,106.00,762.00,,,,,,\n2015,5,11,\"DL\",\"997\",\"DTW\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,102.00,78.00,502.00,,,,,,\n2015,5,11,\"DL\",\"1088\",\"FLL\",\"LGA\",-7.00,-3.00,0.00,\"\",0.00,181.00,155.00,1076.00,,,,,,\n2015,5,11,\"DL\",\"1109\",\"SEA\",\"JFK\",108.00,83.00,0.00,\"\",0.00,310.00,288.00,2422.00,0.00,0.00,83.00,0.00,0.00,\n2015,5,11,\"DL\",\"1111\",\"ATL\",\"ROC\",-7.00,-1.00,0.00,\"\",0.00,136.00,102.00,749.00,,,,,,\n2015,5,11,\"DL\",\"1121\",\"PBI\",\"LGA\",61.00,106.00,0.00,\"\",0.00,218.00,162.00,1035.00,5.00,0.00,67.00,0.00,34.00,\n2015,5,11,\"DL\",\"1131\",\"LGA\",\"FLL\",-6.00,-10.00,0.00,\"\",0.00,188.00,154.00,1076.00,,,,,,\n2015,5,11,\"DL\",\"1145\",\"LGA\",\"DTW\",0.00,-28.00,0.00,\"\",0.00,96.00,76.00,502.00,,,,,,\n2015,5,11,\"DL\",\"1155\",\"DTW\",\"ROC\",238.00,237.00,0.00,\"\",0.00,70.00,45.00,296.00,14.00,0.00,0.00,0.00,223.00,\n2015,5,11,\"DL\",\"1159\",\"ATL\",\"BUF\",12.00,8.00,0.00,\"\",0.00,118.00,93.00,712.00,,,,,,\n2015,5,11,\"DL\",\"1159\",\"BUF\",\"ATL\",7.00,7.00,0.00,\"\",0.00,129.00,94.00,712.00,,,,,,\n2015,5,11,\"DL\",\"1162\",\"LAX\",\"JFK\",3.00,-20.00,0.00,\"\",0.00,302.00,284.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"1174\",\"LGA\",\"PBI\",4.00,-4.00,0.00,\"\",0.00,172.00,149.00,1035.00,,,,,,\n2015,5,11,\"DL\",\"1176\",\"ATL\",\"BUF\",-3.00,-23.00,0.00,\"\",0.00,110.00,92.00,712.00,,,,,,\n2015,5,11,\"DL\",\"1176\",\"BUF\",\"ATL\",-3.00,-2.00,0.00,\"\",0.00,135.00,101.00,712.00,,,,,,\n2015,5,11,\"DL\",\"1186\",\"ATL\",\"LGA\",0.00,3.00,0.00,\"\",0.00,144.00,107.00,762.00,,,,,,\n2015,5,11,\"DL\",\"1214\",\"LGA\",\"ATL\",27.00,17.00,0.00,\"\",0.00,154.00,111.00,762.00,11.00,0.00,0.00,0.00,6.00,\n2015,5,11,\"DL\",\"1227\",\"PHX\",\"JFK\",6.00,-15.00,0.00,\"\",0.00,269.00,242.00,2153.00,,,,,,\n2015,5,11,\"DL\",\"1242\",\"LGA\",\"PBI\",-5.00,-24.00,0.00,\"\",0.00,165.00,145.00,1035.00,,,,,,\n2015,5,11,\"DL\",\"1262\",\"LAX\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,321.00,284.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"1264\",\"SLC\",\"JFK\",-5.00,-32.00,0.00,\"\",0.00,246.00,225.00,1990.00,,,,,,\n2015,5,11,\"DL\",\"1266\",\"BUF\",\"ATL\",-2.00,-8.00,0.00,\"\",0.00,116.00,99.00,712.00,,,,,,\n2015,5,11,\"DL\",\"1269\",\"LGA\",\"MIA\",20.00,4.00,0.00,\"\",0.00,181.00,155.00,1096.00,,,,,,\n2015,5,11,\"DL\",\"1278\",\"MSP\",\"BUF\",-6.00,18.00,0.00,\"\",0.00,143.00,112.00,735.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,11,\"DL\",\"1286\",\"ATL\",\"LGA\",1.00,-1.00,0.00,\"\",0.00,133.00,108.00,762.00,,,,,,\n2015,5,11,\"DL\",\"1288\",\"LGA\",\"FLL\",-3.00,-11.00,0.00,\"\",0.00,187.00,156.00,1076.00,,,,,,\n2015,5,11,\"DL\",\"1289\",\"LGA\",\"ATL\",-5.00,-34.00,0.00,\"\",0.00,133.00,104.00,762.00,,,,,,\n2015,5,11,\"DL\",\"1298\",\"LGA\",\"ATL\",8.00,30.00,0.00,\"\",0.00,183.00,110.00,762.00,8.00,0.00,22.00,0.00,0.00,\n2015,5,11,\"DL\",\"1306\",\"DTW\",\"LGA\",7.00,14.00,0.00,\"\",0.00,114.00,80.00,502.00,,,,,,\n2015,5,11,\"DL\",\"1312\",\"TPA\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,154.00,134.00,1005.00,,,,,,\n2015,5,11,\"DL\",\"1335\",\"MIA\",\"LGA\",5.00,11.00,0.00,\"\",0.00,189.00,153.00,1096.00,,,,,,\n2015,5,11,\"DL\",\"1356\",\"BUF\",\"DTW\",-2.00,-13.00,0.00,\"\",0.00,60.00,42.00,241.00,,,,,,\n2015,5,11,\"DL\",\"1359\",\"MCO\",\"LGA\",96.00,90.00,0.00,\"\",0.00,157.00,136.00,950.00,0.00,0.00,90.00,0.00,0.00,\n2015,5,11,\"DL\",\"1370\",\"ATL\",\"ROC\",-2.00,-8.00,0.00,\"\",0.00,119.00,96.00,749.00,,,,,,\n2015,5,11,\"DL\",\"1370\",\"ROC\",\"ATL\",-5.00,-22.00,0.00,\"\",0.00,117.00,102.00,749.00,,,,,,\n2015,5,11,\"DL\",\"1372\",\"DTW\",\"BUF\",14.00,6.00,0.00,\"\",0.00,58.00,37.00,241.00,,,,,,\n2015,5,11,\"DL\",\"1383\",\"LGA\",\"ATL\",125.00,92.00,0.00,\"\",0.00,135.00,105.00,762.00,5.00,0.00,0.00,0.00,87.00,\n2015,5,11,\"DL\",\"1386\",\"ATL\",\"LGA\",1.00,12.00,0.00,\"\",0.00,145.00,108.00,762.00,,,,,,\n2015,5,11,\"DL\",\"1394\",\"ATL\",\"JFK\",91.00,75.00,0.00,\"\",0.00,137.00,103.00,760.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,11,\"DL\",\"1419\",\"ATL\",\"JFK\",60.00,49.00,0.00,\"\",0.00,144.00,107.00,760.00,0.00,0.00,48.00,0.00,1.00,\n2015,5,11,\"DL\",\"1428\",\"LGA\",\"ATL\",-2.00,-32.00,0.00,\"\",0.00,128.00,103.00,762.00,,,,,,\n2015,5,11,\"DL\",\"1447\",\"LGA\",\"ATL\",-4.00,-7.00,0.00,\"\",0.00,141.00,105.00,762.00,,,,,,\n2015,5,11,\"DL\",\"1473\",\"SEA\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,316.00,285.00,2422.00,,,,,,\n2015,5,11,\"DL\",\"1486\",\"ATL\",\"LGA\",0.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,11,\"DL\",\"1487\",\"ATL\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,144.00,111.00,760.00,,,,,,\n2015,5,11,\"DL\",\"1496\",\"MSP\",\"LGA\",88.00,111.00,0.00,\"\",0.00,189.00,141.00,1020.00,0.00,0.00,39.00,0.00,72.00,\n2015,5,11,\"DL\",\"1498\",\"FLL\",\"LGA\",4.00,-9.00,0.00,\"\",0.00,167.00,147.00,1076.00,,,,,,\n2015,5,11,\"DL\",\"1514\",\"LGA\",\"FLL\",0.00,-11.00,0.00,\"\",0.00,178.00,144.00,1076.00,,,,,,\n2015,5,11,\"DL\",\"1515\",\"ATL\",\"ALB\",31.00,22.00,0.00,\"\",0.00,138.00,111.00,853.00,18.00,0.00,0.00,0.00,4.00,\n2015,5,11,\"DL\",\"1526\",\"MCO\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,156.00,130.00,950.00,,,,,,\n2015,5,11,\"DL\",\"1542\",\"SEA\",\"JFK\",0.00,-34.00,0.00,\"\",0.00,290.00,271.00,2422.00,,,,,,\n2015,5,11,\"DL\",\"1543\",\"ATL\",\"ALB\",0.00,-10.00,0.00,\"\",0.00,134.00,111.00,853.00,,,,,,\n2015,5,11,\"DL\",\"1543\",\"ALB\",\"ATL\",-1.00,-20.00,0.00,\"\",0.00,143.00,125.00,853.00,,,,,,\n2015,5,11,\"DL\",\"1548\",\"LGA\",\"DTW\",12.00,25.00,0.00,\"\",0.00,133.00,102.00,502.00,0.00,0.00,13.00,0.00,12.00,\n2015,5,11,\"DL\",\"1560\",\"MSY\",\"LGA\",99.00,90.00,0.00,\"\",0.00,177.00,160.00,1183.00,0.00,0.00,90.00,0.00,0.00,\n2015,5,11,\"DL\",\"1562\",\"BOS\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,63.00,42.00,187.00,,,,,,\n2015,5,11,\"DL\",\"1566\",\"LGA\",\"PBI\",0.00,-15.00,0.00,\"\",0.00,168.00,142.00,1035.00,,,,,,\n2015,5,11,\"DL\",\"1580\",\"LGA\",\"DTW\",134.00,140.00,0.00,\"\",0.00,131.00,73.00,502.00,9.00,0.00,6.00,0.00,125.00,\n2015,5,11,\"DL\",\"1583\",\"SFO\",\"JFK\",-5.00,3.00,0.00,\"\",0.00,357.00,300.00,2586.00,,,,,,\n2015,5,11,\"DL\",\"1584\",\"ATL\",\"ROC\",125.00,119.00,0.00,\"\",0.00,127.00,96.00,749.00,119.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"1584\",\"ROC\",\"ATL\",116.00,99.00,0.00,\"\",0.00,118.00,101.00,749.00,0.00,0.00,0.00,0.00,99.00,\n2015,5,11,\"DL\",\"1586\",\"ATL\",\"LGA\",29.00,26.00,0.00,\"\",0.00,141.00,109.00,762.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"1596\",\"MSP\",\"LGA\",43.00,42.00,0.00,\"\",0.00,164.00,141.00,1020.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,12,\"DL\",\"1174\",\"LGA\",\"PBI\",-3.00,-33.00,0.00,\"\",0.00,150.00,136.00,1035.00,,,,,,\n2015,5,12,\"DL\",\"1176\",\"ATL\",\"BUF\",-5.00,-26.00,0.00,\"\",0.00,109.00,91.00,712.00,,,,,,\n2015,5,12,\"DL\",\"1176\",\"BUF\",\"ATL\",-12.00,-2.00,0.00,\"\",0.00,145.00,106.00,712.00,,,,,,\n2015,5,12,\"DL\",\"1186\",\"ATL\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,133.00,100.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1214\",\"LGA\",\"ATL\",-10.00,-3.00,0.00,\"\",0.00,171.00,114.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1227\",\"PHX\",\"JFK\",-9.00,-34.00,0.00,\"\",0.00,265.00,246.00,2153.00,,,,,,\n2015,5,12,\"DL\",\"1242\",\"LGA\",\"PBI\",-4.00,-16.00,0.00,\"\",0.00,172.00,144.00,1035.00,,,,,,\n2015,5,12,\"DL\",\"1262\",\"LAX\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,320.00,282.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"1264\",\"SLC\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,257.00,222.00,1990.00,,,,,,\n2015,5,12,\"DL\",\"1266\",\"BUF\",\"ATL\",300.00,294.00,0.00,\"\",0.00,116.00,103.00,712.00,294.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"1269\",\"LGA\",\"MIA\",5.00,-23.00,0.00,\"\",0.00,169.00,145.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"1278\",\"MSP\",\"BUF\",-4.00,-20.00,0.00,\"\",0.00,103.00,92.00,735.00,,,,,,\n2015,5,12,\"DL\",\"1286\",\"ATL\",\"LGA\",2.00,-1.00,0.00,\"\",0.00,132.00,102.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1288\",\"LGA\",\"FLL\",-5.00,-26.00,0.00,\"\",0.00,174.00,155.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"1289\",\"LGA\",\"ATL\",-4.00,-17.00,0.00,\"\",0.00,149.00,114.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1298\",\"LGA\",\"ATL\",-4.00,-18.00,0.00,\"\",0.00,147.00,110.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1306\",\"DTW\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,92.00,63.00,502.00,,,,,,\n2015,5,12,\"DL\",\"1312\",\"TPA\",\"JFK\",-7.00,-32.00,0.00,\"\",0.00,149.00,126.00,1005.00,,,,,,\n2015,5,12,\"DL\",\"1335\",\"MIA\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,178.00,148.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"1356\",\"BUF\",\"DTW\",-2.00,-12.00,0.00,\"\",0.00,61.00,45.00,241.00,,,,,,\n2015,5,12,\"DL\",\"1359\",\"MCO\",\"LGA\",-6.00,-2.00,0.00,\"\",0.00,167.00,130.00,950.00,,,,,,\n2015,5,12,\"DL\",\"1370\",\"ATL\",\"ROC\",-3.00,-16.00,0.00,\"\",0.00,112.00,89.00,749.00,,,,,,\n2015,5,12,\"DL\",\"1370\",\"ROC\",\"ATL\",-2.00,-2.00,0.00,\"\",0.00,134.00,109.00,749.00,,,,,,\n2015,5,12,\"DL\",\"1372\",\"DTW\",\"BUF\",-2.00,-6.00,0.00,\"\",0.00,62.00,37.00,241.00,,,,,,\n2015,5,12,\"DL\",\"1383\",\"LGA\",\"ATL\",-5.00,-31.00,0.00,\"\",0.00,142.00,115.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1386\",\"ATL\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,124.00,101.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1394\",\"ATL\",\"JFK\",35.00,16.00,0.00,\"\",0.00,134.00,105.00,760.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,12,\"DL\",\"1419\",\"ATL\",\"JFK\",25.00,-9.00,0.00,\"\",0.00,121.00,102.00,760.00,,,,,,\n2015,5,12,\"DL\",\"1428\",\"LGA\",\"ATL\",0.00,-26.00,0.00,\"\",0.00,132.00,112.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1447\",\"LGA\",\"ATL\",-1.00,3.00,0.00,\"\",0.00,148.00,110.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1473\",\"SEA\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,309.00,262.00,2422.00,,,,,,\n2015,5,12,\"DL\",\"1486\",\"ATL\",\"LGA\",3.00,-2.00,0.00,\"\",0.00,134.00,102.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1487\",\"ATL\",\"JFK\",32.00,42.00,0.00,\"\",0.00,154.00,115.00,760.00,32.00,0.00,10.00,0.00,0.00,\n2015,5,12,\"DL\",\"1496\",\"MSP\",\"LGA\",-5.00,-32.00,0.00,\"\",0.00,139.00,119.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"1498\",\"FLL\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,177.00,152.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"1514\",\"LGA\",\"FLL\",-8.00,-14.00,0.00,\"\",0.00,183.00,141.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"1515\",\"ATL\",\"ALB\",-5.00,-26.00,0.00,\"\",0.00,126.00,104.00,853.00,,,,,,\n2015,5,12,\"DL\",\"1526\",\"MCO\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,153.00,127.00,950.00,,,,,,\n2015,5,12,\"DL\",\"1542\",\"SEA\",\"JFK\",13.00,-21.00,0.00,\"\",0.00,290.00,272.00,2422.00,,,,,,\n2015,5,12,\"DL\",\"1543\",\"ATL\",\"ALB\",-1.00,-23.00,0.00,\"\",0.00,122.00,104.00,853.00,,,,,,\n2015,5,12,\"DL\",\"1543\",\"ALB\",\"ATL\",-8.00,-24.00,0.00,\"\",0.00,146.00,129.00,853.00,,,,,,\n2015,5,12,\"DL\",\"1548\",\"LGA\",\"DTW\",-8.00,-25.00,0.00,\"\",0.00,103.00,82.00,502.00,,,,,,\n2015,5,12,\"DL\",\"1560\",\"MSY\",\"LGA\",-4.00,-26.00,0.00,\"\",0.00,164.00,144.00,1183.00,,,,,,\n2015,5,12,\"DL\",\"1562\",\"BOS\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,65.00,44.00,187.00,,,,,,\n2015,5,12,\"DL\",\"1566\",\"LGA\",\"PBI\",7.00,-20.00,0.00,\"\",0.00,156.00,137.00,1035.00,,,,,,\n2015,5,12,\"DL\",\"1580\",\"LGA\",\"DTW\",-5.00,-2.00,0.00,\"\",0.00,128.00,93.00,502.00,,,,,,\n2015,5,12,\"DL\",\"1583\",\"SFO\",\"JFK\",22.00,-7.00,0.00,\"\",0.00,320.00,287.00,2586.00,,,,,,\n2015,5,12,\"DL\",\"1584\",\"ATL\",\"ROC\",-2.00,-22.00,0.00,\"\",0.00,113.00,94.00,749.00,,,,,,\n2015,5,12,\"DL\",\"1584\",\"ROC\",\"ATL\",-8.00,-12.00,0.00,\"\",0.00,131.00,111.00,749.00,,,,,,\n2015,5,12,\"DL\",\"1586\",\"ATL\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,125.00,99.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1596\",\"MSP\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,148.00,128.00,1020.00,,,,,,\n2015,5,10,\"DL\",\"2400\",\"JFK\",\"PIT\",-1.00,-30.00,0.00,\"\",0.00,92.00,60.00,340.00,,,,,,\n2015,5,10,\"DL\",\"2404\",\"SAN\",\"JFK\",-10.00,-15.00,0.00,\"\",0.00,329.00,291.00,2446.00,,,,,,\n2015,5,10,\"DL\",\"2406\",\"TPA\",\"LGA\",0.00,2.00,0.00,\"\",0.00,160.00,138.00,1010.00,,,,,,\n2015,5,10,\"DL\",\"2413\",\"MIA\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,180.00,154.00,1096.00,,,,,,\n2015,5,10,\"DL\",\"2424\",\"JFK\",\"ATL\",1.00,-12.00,0.00,\"\",0.00,159.00,103.00,760.00,,,,,,\n2015,5,10,\"DL\",\"2432\",\"DTW\",\"SYR\",-1.00,-11.00,0.00,\"\",0.00,72.00,52.00,374.00,,,,,,\n2015,5,10,\"DL\",\"2435\",\"JFK\",\"FLL\",-10.00,-47.00,0.00,\"\",0.00,166.00,150.00,1069.00,,,,,,\n2015,5,10,\"DL\",\"2450\",\"MCO\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,153.00,134.00,950.00,,,,,,\n2015,5,10,\"DL\",\"2456\",\"FLL\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,185.00,159.00,1069.00,,,,,,\n2015,5,10,\"DL\",\"2464\",\"TPA\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,152.00,132.00,1005.00,,,,,,\n2015,5,10,\"DL\",\"2466\",\"ATL\",\"SYR\",-1.00,-8.00,0.00,\"\",0.00,130.00,102.00,794.00,,,,,,\n2015,5,10,\"DL\",\"2466\",\"SYR\",\"ATL\",-2.00,-22.00,0.00,\"\",0.00,130.00,109.00,794.00,,,,,,\n2015,5,10,\"DL\",\"2473\",\"ATL\",\"BUF\",-4.00,-18.00,0.00,\"\",0.00,114.00,94.00,712.00,,,,,,\n2015,5,10,\"DL\",\"2474\",\"JFK\",\"SJU\",-5.00,-7.00,0.00,\"\",0.00,236.00,205.00,1598.00,,,,,,\n2015,5,10,\"DL\",\"2495\",\"MIA\",\"JFK\",22.00,33.00,0.00,\"\",0.00,199.00,164.00,1089.00,0.00,0.00,11.00,0.00,22.00,\n2015,5,10,\"DL\",\"2496\",\"ATL\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,141.00,103.00,762.00,,,,,,\n2015,5,10,\"DL\",\"2498\",\"FLL\",\"LGA\",12.00,16.00,0.00,\"\",0.00,187.00,157.00,1076.00,7.00,0.00,4.00,0.00,5.00,\n2015,5,10,\"DL\",\"2502\",\"FLL\",\"LGA\",,,1.00,\"A\",0.00,,,1076.00,,,,,,\n2015,5,10,\"DL\",\"2521\",\"SFO\",\"JFK\",2.00,6.00,0.00,\"\",0.00,345.00,311.00,2586.00,,,,,,\n2015,5,10,\"DL\",\"2554\",\"DEN\",\"JFK\",10.00,3.00,0.00,\"\",0.00,234.00,199.00,1626.00,,,,,,\n2015,5,10,\"DL\",\"2565\",\"JFK\",\"MSP\",-3.00,-42.00,0.00,\"\",0.00,170.00,148.00,1029.00,,,,,,\n2015,5,10,\"DL\",\"2567\",\"DTW\",\"ALB\",-2.00,-1.00,0.00,\"\",0.00,89.00,66.00,489.00,,,,,,\n2015,5,10,\"DL\",\"2571\",\"JFK\",\"SLC\",-7.00,25.00,0.00,\"\",0.00,357.00,311.00,1990.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,10,\"DL\",\"2577\",\"JFK\",\"FLL\",0.00,11.00,0.00,\"\",0.00,216.00,164.00,1069.00,,,,,,\n2015,5,10,\"DL\",\"2593\",\"JFK\",\"MSP\",-8.00,-32.00,0.00,\"\",0.00,177.00,152.00,1029.00,,,,,,\n2015,5,10,\"DL\",\"2594\",\"ALB\",\"DTW\",-10.00,-2.00,0.00,\"\",0.00,109.00,79.00,489.00,,,,,,\n2015,5,10,\"DL\",\"2595\",\"FLL\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,170.00,150.00,1076.00,,,,,,\n2015,5,10,\"DL\",\"2596\",\"PBI\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,166.00,145.00,1035.00,,,,,,\n2015,5,10,\"DL\",\"2627\",\"JFK\",\"PDX\",-4.00,-25.00,0.00,\"\",0.00,349.00,308.00,2454.00,,,,,,\n2015,5,10,\"DL\",\"2632\",\"JFK\",\"MCO\",-13.00,-26.00,0.00,\"\",0.00,170.00,126.00,944.00,,,,,,\n2015,5,10,\"DL\",\"2634\",\"JFK\",\"BUF\",21.00,5.00,0.00,\"\",0.00,87.00,54.00,301.00,,,,,,\n2015,5,10,\"DL\",\"2649\",\"JFK\",\"TPA\",-3.00,-33.00,0.00,\"\",0.00,158.00,135.00,1005.00,,,,,,\n2015,5,10,\"DL\",\"2652\",\"TPA\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,160.00,136.00,1005.00,,,,,,\n2015,5,10,\"DL\",\"2669\",\"BOS\",\"LGA\",-3.00,3.00,0.00,\"\",0.00,81.00,56.00,184.00,,,,,,\n2015,5,10,\"DL\",\"2671\",\"BOS\",\"LGA\",33.00,25.00,0.00,\"\",0.00,71.00,42.00,184.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"DL\",\"2672\",\"LGA\",\"BOS\",-4.00,-18.00,0.00,\"\",0.00,68.00,40.00,184.00,,,,,,\n2015,5,10,\"DL\",\"2675\",\"BOS\",\"LGA\",-1.00,11.00,0.00,\"\",0.00,87.00,42.00,184.00,,,,,,\n2015,5,10,\"DL\",\"2676\",\"LGA\",\"BOS\",0.00,-14.00,0.00,\"\",0.00,62.00,42.00,184.00,,,,,,\n2015,5,10,\"DL\",\"2679\",\"BOS\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,70.00,41.00,184.00,,,,,,\n2015,5,10,\"DL\",\"2680\",\"LGA\",\"BOS\",1.00,-15.00,0.00,\"\",0.00,63.00,41.00,184.00,,,,,,\n2015,5,10,\"DL\",\"2681\",\"BOS\",\"LGA\",36.00,55.00,0.00,\"\",0.00,96.00,41.00,184.00,0.00,0.00,19.00,0.00,36.00,\n2015,5,10,\"DL\",\"2682\",\"LGA\",\"BOS\",-5.00,-13.00,0.00,\"\",0.00,64.00,37.00,184.00,,,,,,\n2015,5,10,\"DL\",\"2685\",\"BOS\",\"LGA\",-2.00,11.00,0.00,\"\",0.00,85.00,43.00,184.00,,,,,,\n2015,5,10,\"DL\",\"2686\",\"LGA\",\"BOS\",58.00,46.00,0.00,\"\",0.00,70.00,39.00,184.00,5.00,0.00,0.00,0.00,41.00,\n2015,5,10,\"DL\",\"2687\",\"BOS\",\"LGA\",117.00,108.00,0.00,\"\",0.00,67.00,42.00,184.00,108.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"DL\",\"2689\",\"BOS\",\"LGA\",49.00,39.00,0.00,\"\",0.00,70.00,44.00,184.00,0.00,0.00,9.00,0.00,30.00,\n2015,5,10,\"DL\",\"2690\",\"LGA\",\"BOS\",5.00,10.00,0.00,\"\",0.00,90.00,38.00,184.00,,,,,,\n2015,5,10,\"DL\",\"2692\",\"LGA\",\"BOS\",115.00,109.00,0.00,\"\",0.00,73.00,42.00,184.00,0.00,0.00,13.00,0.00,96.00,\n2015,5,10,\"DL\",\"2694\",\"LGA\",\"BOS\",36.00,29.00,0.00,\"\",0.00,71.00,40.00,184.00,0.00,0.00,0.00,0.00,29.00,\n2015,5,11,\"DL\",\"42\",\"MIA\",\"JFK\",13.00,2.00,0.00,\"\",0.00,178.00,157.00,1089.00,,,,,,\n2015,5,11,\"DL\",\"208\",\"JFK\",\"MCO\",-7.00,-19.00,0.00,\"\",0.00,175.00,125.00,944.00,,,,,,\n2015,5,11,\"DL\",\"221\",\"LGA\",\"ATL\",36.00,9.00,0.00,\"\",0.00,138.00,103.00,762.00,,,,,,\n2015,5,11,\"DL\",\"234\",\"PIT\",\"JFK\",107.00,94.00,0.00,\"\",0.00,87.00,59.00,340.00,0.00,0.00,94.00,0.00,0.00,\n2015,5,11,\"DL\",\"245\",\"JFK\",\"SLC\",-5.00,-21.00,0.00,\"\",0.00,313.00,280.00,1990.00,,,,,,\n2015,5,11,\"DL\",\"326\",\"SJU\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,224.00,201.00,1598.00,,,,,,\n2015,5,11,\"DL\",\"332\",\"SJU\",\"JFK\",-11.00,-11.00,0.00,\"\",0.00,246.00,195.00,1598.00,,,,,,\n2015,5,11,\"DL\",\"333\",\"MSP\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,153.00,138.00,1020.00,,,,,,\n2015,5,11,\"DL\",\"342\",\"SFO\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,335.00,296.00,2586.00,,,,,,\n2015,5,11,\"DL\",\"347\",\"LGA\",\"ATL\",-7.00,-31.00,0.00,\"\",0.00,134.00,110.00,762.00,,,,,,\n2015,5,11,\"DL\",\"348\",\"SJU\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,228.00,202.00,1598.00,,,,,,\n2015,5,11,\"DL\",\"350\",\"LGA\",\"ATL\",-2.00,-22.00,0.00,\"\",0.00,133.00,106.00,762.00,,,,,,\n2015,5,11,\"DL\",\"400\",\"PDX\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,327.00,306.00,2454.00,,,,,,\n2015,5,11,\"DL\",\"401\",\"AUS\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,225.00,197.00,1521.00,,,,,,\n2015,5,11,\"DL\",\"403\",\"PDX\",\"JFK\",125.00,115.00,0.00,\"\",0.00,324.00,293.00,2454.00,0.00,0.00,115.00,0.00,0.00,\n2015,5,11,\"DL\",\"404\",\"JFK\",\"ATL\",0.00,-5.00,0.00,\"\",0.00,164.00,103.00,760.00,,,,,,\n2015,5,11,\"DL\",\"405\",\"JFK\",\"TPA\",5.00,-21.00,0.00,\"\",0.00,145.00,134.00,1005.00,,,,,,\n2015,5,11,\"DL\",\"407\",\"MCO\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,157.00,131.00,944.00,,,,,,\n2015,5,11,\"DL\",\"409\",\"JFK\",\"SJU\",-3.00,7.00,0.00,\"\",0.00,257.00,205.00,1598.00,,,,,,\n2015,5,11,\"DL\",\"410\",\"MSP\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,159.00,138.00,1029.00,,,,,,\n2015,5,11,\"DL\",\"412\",\"LAX\",\"JFK\",-3.00,-2.00,0.00,\"\",0.00,340.00,289.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"413\",\"JFK\",\"PHX\",-5.00,-17.00,0.00,\"\",0.00,331.00,295.00,2153.00,,,,,,\n2015,5,11,\"DL\",\"414\",\"SFO\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,330.00,305.00,2586.00,,,,,,\n2015,5,11,\"DL\",\"415\",\"JFK\",\"SFO\",7.00,10.00,0.00,\"\",0.00,411.00,369.00,2586.00,,,,,,\n2015,5,11,\"DL\",\"417\",\"JFK\",\"SEA\",16.00,15.00,0.00,\"\",0.00,381.00,321.00,2422.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"418\",\"SEA\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,318.00,290.00,2422.00,,,,,,\n2015,5,11,\"DL\",\"419\",\"JFK\",\"SEA\",33.00,-5.00,0.00,\"\",0.00,341.00,307.00,2422.00,,,,,,\n2015,5,11,\"DL\",\"420\",\"JFK\",\"LAX\",0.00,-23.00,0.00,\"\",0.00,375.00,320.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"421\",\"JFK\",\"DEN\",-4.00,12.00,0.00,\"\",0.00,300.00,241.00,1626.00,,,,,,\n2015,5,11,\"DL\",\"422\",\"JFK\",\"LAX\",-2.00,-23.00,0.00,\"\",0.00,359.00,331.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"423\",\"JFK\",\"LAX\",-3.00,-22.00,0.00,\"\",0.00,354.00,340.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"424\",\"JFK\",\"LAX\",20.00,6.00,0.00,\"\",0.00,356.00,319.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"425\",\"JFK\",\"SJU\",-6.00,-1.00,0.00,\"\",0.00,243.00,208.00,1598.00,,,,,,\n2015,5,11,\"DL\",\"426\",\"JFK\",\"MCO\",-5.00,-22.00,0.00,\"\",0.00,155.00,129.00,944.00,,,,,,\n2015,5,11,\"DL\",\"427\",\"JFK\",\"LAX\",33.00,38.00,0.00,\"\",0.00,393.00,350.00,2475.00,31.00,0.00,5.00,0.00,2.00,\n2015,5,11,\"DL\",\"428\",\"JFK\",\"FLL\",-5.00,-14.00,0.00,\"\",0.00,175.00,158.00,1069.00,,,,,,\n2015,5,11,\"DL\",\"430\",\"JFK\",\"SFO\",-5.00,-24.00,0.00,\"\",0.00,365.00,348.00,2586.00,,,,,,\n2015,5,11,\"DL\",\"431\",\"JFK\",\"SFO\",-1.00,20.00,0.00,\"\",0.00,430.00,366.00,2586.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,11,\"DL\",\"433\",\"JFK\",\"PDX\",-9.00,-26.00,0.00,\"\",0.00,353.00,317.00,2454.00,,,,,,\n2015,5,11,\"DL\",\"434\",\"JFK\",\"SFO\",-4.00,-18.00,0.00,\"\",0.00,390.00,347.00,2586.00,,,,,,\n2015,5,11,\"DL\",\"435\",\"JFK\",\"SFO\",116.00,114.00,0.00,\"\",0.00,402.00,364.00,2586.00,32.00,0.00,0.00,0.00,82.00,\n2015,5,11,\"DL\",\"436\",\"JFK\",\"LAS\",-7.00,-25.00,0.00,\"\",0.00,332.00,301.00,2248.00,,,,,,\n2015,5,11,\"DL\",\"437\",\"JFK\",\"BOS\",-6.00,-22.00,0.00,\"\",0.00,61.00,36.00,187.00,,,,,,\n2015,5,11,\"DL\",\"438\",\"JFK\",\"MCO\",-4.00,-23.00,0.00,\"\",0.00,149.00,128.00,944.00,,,,,,\n2015,5,11,\"DL\",\"439\",\"JFK\",\"MSP\",-6.00,-39.00,0.00,\"\",0.00,159.00,142.00,1029.00,,,,,,\n2015,5,11,\"DL\",\"440\",\"JFK\",\"SLC\",8.00,-13.00,0.00,\"\",0.00,284.00,261.00,1990.00,,,,,,\n2015,5,11,\"DL\",\"441\",\"JFK\",\"MIA\",2.00,-10.00,0.00,\"\",0.00,169.00,153.00,1089.00,,,,,,\n2015,5,11,\"DL\",\"443\",\"JFK\",\"LAS\",-5.00,-5.00,0.00,\"\",0.00,354.00,302.00,2248.00,,,,,,\n2015,5,11,\"DL\",\"444\",\"SLC\",\"JFK\",9.00,-10.00,0.00,\"\",0.00,261.00,238.00,1990.00,,,,,,\n2015,5,11,\"DL\",\"445\",\"JFK\",\"TPA\",-10.00,-27.00,0.00,\"\",0.00,169.00,135.00,1005.00,,,,,,\n2015,5,11,\"DL\",\"447\",\"JFK\",\"LAX\",-1.00,-4.00,0.00,\"\",0.00,387.00,336.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"448\",\"JFK\",\"SEA\",0.00,-32.00,0.00,\"\",0.00,328.00,310.00,2422.00,,,,,,\n2015,5,11,\"DL\",\"453\",\"JFK\",\"CHS\",-7.00,-26.00,0.00,\"\",0.00,120.00,90.00,636.00,,,,,,\n2015,5,11,\"DL\",\"454\",\"JFK\",\"STT\",-1.00,25.00,0.00,\"\",0.00,272.00,204.00,1623.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,11,\"DL\",\"455\",\"JFK\",\"SAN\",98.00,97.00,0.00,\"\",0.00,377.00,333.00,2446.00,97.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"456\",\"JFK\",\"SEA\",0.00,-33.00,0.00,\"\",0.00,330.00,308.00,2422.00,,,,,,\n2015,5,11,\"DL\",\"459\",\"JFK\",\"SAN\",-3.00,-10.00,0.00,\"\",0.00,368.00,323.00,2446.00,,,,,,\n2015,5,11,\"DL\",\"460\",\"JFK\",\"SLC\",16.00,11.00,0.00,\"\",0.00,320.00,279.00,1990.00,,,,,,\n2015,5,11,\"DL\",\"462\",\"JFK\",\"PDX\",-3.00,-20.00,0.00,\"\",0.00,361.00,324.00,2454.00,,,,,,\n2015,5,11,\"DL\",\"463\",\"JFK\",\"LAS\",64.00,56.00,0.00,\"\",0.00,348.00,305.00,2248.00,56.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"465\",\"JFK\",\"ATL\",47.00,27.00,0.00,\"\",0.00,132.00,97.00,760.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"466\",\"SLC\",\"JFK\",10.00,1.00,0.00,\"\",0.00,268.00,237.00,1990.00,,,,,,\n2015,5,11,\"DL\",\"468\",\"SFO\",\"JFK\",74.00,46.00,0.00,\"\",0.00,321.00,287.00,2586.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,11,\"DL\",\"469\",\"JFK\",\"SFO\",-5.00,-21.00,0.00,\"\",0.00,374.00,349.00,2586.00,,,,,,\n2015,5,11,\"DL\",\"472\",\"JFK\",\"LAX\",50.00,67.00,0.00,\"\",0.00,402.00,349.00,2475.00,50.00,0.00,17.00,0.00,0.00,\n2015,5,11,\"DL\",\"476\",\"LAX\",\"JFK\",-2.00,-4.00,0.00,\"\",0.00,333.00,305.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"477\",\"JFK\",\"LAX\",6.00,-10.00,0.00,\"\",0.00,379.00,333.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"478\",\"ATL\",\"JFK\",135.00,127.00,0.00,\"\",0.00,144.00,106.00,760.00,127.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"480\",\"JFK\",\"SJU\",-10.00,-22.00,0.00,\"\",0.00,222.00,205.00,1598.00,,,,,,\n2015,5,11,\"DL\",\"483\",\"JFK\",\"LAS\",-4.00,-1.00,0.00,\"\",0.00,356.00,305.00,2248.00,,,,,,\n2015,5,11,\"DL\",\"486\",\"JFK\",\"LAS\",-6.00,-23.00,0.00,\"\",0.00,315.00,296.00,2248.00,,,,,,\n2015,5,11,\"DL\",\"488\",\"JFK\",\"SJU\",10.00,15.00,0.00,\"\",0.00,232.00,208.00,1598.00,10.00,0.00,5.00,0.00,0.00,\n2015,5,11,\"DL\",\"492\",\"JFK\",\"SJU\",0.00,-11.00,0.00,\"\",0.00,231.00,203.00,1598.00,,,,,,\n2015,5,11,\"DL\",\"496\",\"JFK\",\"BOS\",-2.00,-12.00,0.00,\"\",0.00,73.00,43.00,187.00,,,,,,\n2015,5,11,\"DL\",\"497\",\"JFK\",\"ATL\",-2.00,-7.00,0.00,\"\",0.00,148.00,108.00,760.00,,,,,,\n2015,5,11,\"DL\",\"498\",\"JFK\",\"SFO\",12.00,28.00,0.00,\"\",0.00,424.00,365.00,2586.00,10.00,0.00,16.00,0.00,2.00,\n2015,5,11,\"DL\",\"499\",\"JFK\",\"SLC\",-1.00,-1.00,0.00,\"\",0.00,310.00,271.00,1990.00,,,,,,\n2015,5,11,\"DL\",\"511\",\"SJU\",\"JFK\",4.00,-29.00,0.00,\"\",0.00,216.00,196.00,1598.00,,,,,,\n2015,5,11,\"DL\",\"527\",\"RSW\",\"JFK\",-3.00,-1.00,0.00,\"\",0.00,166.00,138.00,1074.00,,,,,,\n2015,5,11,\"DL\",\"528\",\"LGA\",\"MSP\",-1.00,-18.00,0.00,\"\",0.00,168.00,141.00,1020.00,,,,,,\n2015,5,11,\"DL\",\"541\",\"LAS\",\"JFK\",-4.00,-33.00,0.00,\"\",0.00,270.00,249.00,2248.00,,,,,,\n2015,5,11,\"DL\",\"544\",\"ALB\",\"ATL\",-4.00,-27.00,0.00,\"\",0.00,132.00,114.00,853.00,,,,,,\n2015,5,11,\"DL\",\"582\",\"DTW\",\"LGA\",82.00,95.00,0.00,\"\",0.00,120.00,86.00,502.00,0.00,0.00,95.00,0.00,0.00,\n2015,5,11,\"DL\",\"583\",\"LGA\",\"DTW\",-2.00,-12.00,0.00,\"\",0.00,104.00,77.00,502.00,,,,,,\n2015,5,11,\"DL\",\"662\",\"BUF\",\"MSP\",-5.00,-19.00,0.00,\"\",0.00,130.00,109.00,735.00,,,,,,\n2015,5,11,\"DL\",\"664\",\"TPA\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,155.00,135.00,1010.00,,,,,,\n2015,5,11,\"DL\",\"665\",\"ATL\",\"ALB\",-2.00,-3.00,0.00,\"\",0.00,139.00,113.00,853.00,,,,,,\n2015,5,11,\"DL\",\"665\",\"ALB\",\"ATL\",-1.00,-12.00,0.00,\"\",0.00,141.00,119.00,853.00,,,,,,\n2015,5,11,\"DL\",\"676\",\"STT\",\"JFK\",26.00,-6.00,0.00,\"\",0.00,220.00,199.00,1623.00,,,,,,\n2015,5,11,\"DL\",\"2432\",\"DTW\",\"SYR\",19.00,16.00,0.00,\"\",0.00,76.00,56.00,374.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,11,\"DL\",\"2435\",\"JFK\",\"FLL\",-10.00,-19.00,0.00,\"\",0.00,194.00,155.00,1069.00,,,,,,\n2015,5,11,\"DL\",\"2447\",\"DEN\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,234.00,203.00,1626.00,,,,,,\n2015,5,11,\"DL\",\"2450\",\"MCO\",\"LGA\",-1.00,4.00,0.00,\"\",0.00,161.00,131.00,950.00,,,,,,\n2015,5,11,\"DL\",\"2464\",\"TPA\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,154.00,134.00,1005.00,,,,,,\n2015,5,11,\"DL\",\"2466\",\"ATL\",\"SYR\",14.00,-4.00,0.00,\"\",0.00,119.00,100.00,794.00,,,,,,\n2015,5,11,\"DL\",\"2466\",\"SYR\",\"ATL\",3.00,-17.00,0.00,\"\",0.00,130.00,109.00,794.00,,,,,,\n2015,5,11,\"DL\",\"2473\",\"ATL\",\"BUF\",-1.00,-5.00,0.00,\"\",0.00,124.00,106.00,712.00,,,,,,\n2015,5,11,\"DL\",\"2474\",\"JFK\",\"AUS\",-1.00,8.00,0.00,\"\",0.00,273.00,245.00,1521.00,,,,,,\n2015,5,11,\"DL\",\"2495\",\"MIA\",\"JFK\",27.00,30.00,0.00,\"\",0.00,191.00,154.00,1089.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,11,\"DL\",\"2496\",\"ATL\",\"LGA\",-2.00,5.00,0.00,\"\",0.00,146.00,108.00,762.00,,,,,,\n2015,5,11,\"DL\",\"2498\",\"FLL\",\"LGA\",29.00,23.00,0.00,\"\",0.00,177.00,150.00,1076.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,11,\"DL\",\"2502\",\"FLL\",\"LGA\",-3.00,15.00,0.00,\"\",0.00,199.00,180.00,1076.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,11,\"DL\",\"2521\",\"SFO\",\"JFK\",24.00,38.00,0.00,\"\",0.00,355.00,323.00,2586.00,5.00,0.00,14.00,0.00,19.00,\n2015,5,11,\"DL\",\"2554\",\"DEN\",\"JFK\",4.00,-15.00,0.00,\"\",0.00,222.00,197.00,1626.00,,,,,,\n2015,5,11,\"DL\",\"2565\",\"JFK\",\"MSP\",0.00,-16.00,0.00,\"\",0.00,193.00,139.00,1029.00,,,,,,\n2015,5,11,\"DL\",\"2567\",\"DTW\",\"ALB\",84.00,76.00,0.00,\"\",0.00,80.00,63.00,489.00,0.00,0.00,0.00,0.00,76.00,\n2015,5,11,\"DL\",\"2569\",\"JFK\",\"DEN\",-6.00,-23.00,0.00,\"\",0.00,265.00,227.00,1626.00,,,,,,\n2015,5,11,\"DL\",\"2571\",\"JFK\",\"SLC\",-4.00,-11.00,0.00,\"\",0.00,318.00,280.00,1990.00,,,,,,\n2015,5,11,\"DL\",\"2577\",\"JFK\",\"FLL\",73.00,80.00,0.00,\"\",0.00,212.00,141.00,1069.00,73.00,0.00,7.00,0.00,0.00,\n2015,5,11,\"DL\",\"2593\",\"SAT\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,220.00,205.00,1587.00,,,,,,\n2015,5,11,\"DL\",\"2594\",\"DEN\",\"LGA\",80.00,83.00,0.00,\"\",0.00,239.00,210.00,1620.00,0.00,0.00,83.00,0.00,0.00,\n2015,5,11,\"DL\",\"2595\",\"FLL\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,185.00,151.00,1076.00,,,,,,\n2015,5,11,\"DL\",\"2596\",\"PBI\",\"LGA\",-4.00,1.00,0.00,\"\",0.00,178.00,151.00,1035.00,,,,,,\n2015,5,11,\"DL\",\"2622\",\"ROC\",\"DTW\",-3.00,-11.00,0.00,\"\",0.00,74.00,53.00,296.00,,,,,,\n2015,5,11,\"DL\",\"2632\",\"JFK\",\"MCO\",-5.00,-5.00,0.00,\"\",0.00,183.00,132.00,944.00,,,,,,\n2015,5,11,\"DL\",\"2634\",\"JFK\",\"BUF\",31.00,26.00,0.00,\"\",0.00,98.00,70.00,301.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"2645\",\"JFK\",\"RSW\",-6.00,-18.00,0.00,\"\",0.00,189.00,156.00,1074.00,,,,,,\n2015,5,11,\"DL\",\"2649\",\"JFK\",\"TPA\",-6.00,12.00,0.00,\"\",0.00,206.00,143.00,1005.00,,,,,,\n2015,5,11,\"DL\",\"2650\",\"TPA\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,156.00,138.00,1005.00,,,,,,\n2015,5,11,\"DL\",\"2652\",\"TPA\",\"JFK\",11.00,24.00,0.00,\"\",0.00,187.00,133.00,1005.00,0.00,0.00,13.00,0.00,11.00,\n2015,5,11,\"DL\",\"2653\",\"MCO\",\"JFK\",53.00,43.00,0.00,\"\",0.00,156.00,124.00,944.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,11,\"DL\",\"2665\",\"BOS\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,71.00,44.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2666\",\"LGA\",\"BOS\",-2.00,-4.00,0.00,\"\",0.00,64.00,40.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2667\",\"BOS\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,82.00,44.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2668\",\"LGA\",\"BOS\",-4.00,-8.00,0.00,\"\",0.00,67.00,46.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2669\",\"BOS\",\"LGA\",-6.00,2.00,0.00,\"\",0.00,83.00,44.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2670\",\"LGA\",\"BOS\",-6.00,-6.00,0.00,\"\",0.00,67.00,40.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2671\",\"BOS\",\"LGA\",-3.00,14.00,0.00,\"\",0.00,96.00,40.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2672\",\"LGA\",\"BOS\",-3.00,-9.00,0.00,\"\",0.00,76.00,40.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2673\",\"BOS\",\"LGA\",-5.00,11.00,0.00,\"\",0.00,89.00,42.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2674\",\"LGA\",\"BOS\",-2.00,-19.00,0.00,\"\",0.00,66.00,33.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2675\",\"BOS\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,61.00,44.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2676\",\"LGA\",\"BOS\",12.00,-2.00,0.00,\"\",0.00,62.00,39.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2677\",\"BOS\",\"LGA\",-3.00,10.00,0.00,\"\",0.00,88.00,44.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2678\",\"LGA\",\"BOS\",-8.00,-27.00,0.00,\"\",0.00,64.00,32.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2679\",\"BOS\",\"LGA\",-4.00,18.00,0.00,\"\",0.00,99.00,41.00,184.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,11,\"DL\",\"2680\",\"LGA\",\"BOS\",-4.00,22.00,0.00,\"\",0.00,105.00,51.00,184.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,11,\"DL\",\"2681\",\"BOS\",\"LGA\",-2.00,19.00,0.00,\"\",0.00,98.00,39.00,184.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,11,\"DL\",\"2682\",\"LGA\",\"BOS\",33.00,51.00,0.00,\"\",0.00,90.00,36.00,184.00,5.00,0.00,46.00,0.00,0.00,\n2015,5,11,\"DL\",\"2683\",\"BOS\",\"LGA\",92.00,93.00,0.00,\"\",0.00,75.00,40.00,184.00,0.00,0.00,83.00,0.00,10.00,\n2015,5,11,\"DL\",\"2684\",\"LGA\",\"BOS\",10.00,21.00,0.00,\"\",0.00,86.00,33.00,184.00,0.00,0.00,11.00,0.00,10.00,\n2015,5,11,\"DL\",\"2685\",\"BOS\",\"LGA\",102.00,128.00,0.00,\"\",0.00,98.00,45.00,184.00,0.00,0.00,96.00,0.00,32.00,\n2015,5,11,\"DL\",\"2686\",\"LGA\",\"BOS\",46.00,30.00,0.00,\"\",0.00,66.00,36.00,184.00,0.00,0.00,26.00,0.00,4.00,\n2015,5,11,\"DL\",\"2687\",\"BOS\",\"LGA\",11.00,17.00,0.00,\"\",0.00,82.00,43.00,184.00,0.00,0.00,12.00,0.00,5.00,\n2015,5,11,\"DL\",\"2688\",\"LGA\",\"BOS\",118.00,95.00,0.00,\"\",0.00,60.00,32.00,184.00,95.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"2689\",\"BOS\",\"LGA\",74.00,68.00,0.00,\"\",0.00,74.00,44.00,184.00,0.00,0.00,48.00,0.00,20.00,\n2015,5,11,\"DL\",\"2690\",\"LGA\",\"BOS\",121.00,96.00,0.00,\"\",0.00,60.00,32.00,184.00,0.00,0.00,0.00,0.00,96.00,\n2015,5,11,\"DL\",\"2691\",\"BOS\",\"LGA\",113.00,105.00,0.00,\"\",0.00,69.00,49.00,184.00,0.00,0.00,23.00,0.00,82.00,\n2015,5,11,\"DL\",\"2692\",\"LGA\",\"BOS\",21.00,0.00,0.00,\"\",0.00,58.00,33.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2693\",\"BOS\",\"LGA\",92.00,88.00,0.00,\"\",0.00,74.00,46.00,184.00,2.00,0.00,0.00,0.00,86.00,\n2015,5,11,\"DL\",\"2694\",\"LGA\",\"BOS\",62.00,59.00,0.00,\"\",0.00,75.00,37.00,184.00,0.00,0.00,0.00,0.00,59.00,\n2015,5,11,\"DL\",\"2696\",\"LGA\",\"BOS\",86.00,73.00,0.00,\"\",0.00,55.00,36.00,184.00,0.00,0.00,0.00,0.00,73.00,\n2015,5,11,\"DL\",\"2699\",\"BOS\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,64.00,40.00,184.00,,,,,,\n2015,5,11,\"DL\",\"2785\",\"JFK\",\"CHS\",-6.00,3.00,0.00,\"\",0.00,145.00,108.00,636.00,,,,,,\n2015,5,12,\"DL\",\"42\",\"MIA\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,181.00,143.00,1089.00,,,,,,\n2015,5,12,\"DL\",\"208\",\"JFK\",\"MCO\",-11.00,-41.00,0.00,\"\",0.00,157.00,133.00,944.00,,,,,,\n2015,5,12,\"DL\",\"221\",\"LGA\",\"ATL\",-3.00,-12.00,0.00,\"\",0.00,156.00,114.00,762.00,,,,,,\n2015,5,12,\"DL\",\"234\",\"PIT\",\"JFK\",8.00,8.00,0.00,\"\",0.00,98.00,61.00,340.00,,,,,,\n2015,5,12,\"DL\",\"245\",\"JFK\",\"SLC\",-2.00,15.00,0.00,\"\",0.00,346.00,297.00,1990.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,12,\"DL\",\"326\",\"SJU\",\"JFK\",-5.00,-1.00,0.00,\"\",0.00,244.00,220.00,1598.00,,,,,,\n2015,5,12,\"DL\",\"332\",\"SJU\",\"JFK\",-15.00,-29.00,0.00,\"\",0.00,232.00,206.00,1598.00,,,,,,\n2015,5,12,\"DL\",\"333\",\"MSP\",\"LGA\",-4.00,-28.00,0.00,\"\",0.00,139.00,119.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"342\",\"SFO\",\"JFK\",45.00,31.00,0.00,\"\",0.00,325.00,293.00,2586.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"347\",\"LGA\",\"ATL\",-4.00,2.00,0.00,\"\",0.00,164.00,119.00,762.00,,,,,,\n2015,5,12,\"DL\",\"348\",\"SJU\",\"JFK\",29.00,20.00,0.00,\"\",0.00,233.00,214.00,1598.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"350\",\"LGA\",\"ATL\",0.00,-21.00,0.00,\"\",0.00,132.00,108.00,762.00,,,,,,\n2015,5,12,\"DL\",\"400\",\"PDX\",\"JFK\",0.00,-25.00,0.00,\"\",0.00,304.00,276.00,2454.00,,,,,,\n2015,5,12,\"DL\",\"401\",\"AUS\",\"JFK\",67.00,46.00,0.00,\"\",0.00,217.00,180.00,1521.00,3.00,0.00,41.00,0.00,2.00,\n2015,5,12,\"DL\",\"403\",\"PDX\",\"JFK\",48.00,17.00,0.00,\"\",0.00,303.00,274.00,2454.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,12,\"DL\",\"405\",\"JFK\",\"TPA\",-7.00,-22.00,0.00,\"\",0.00,156.00,138.00,1005.00,,,,,,\n2015,5,12,\"DL\",\"407\",\"MCO\",\"JFK\",-10.00,0.00,0.00,\"\",0.00,179.00,127.00,944.00,,,,,,\n2015,5,12,\"DL\",\"408\",\"JFK\",\"SLC\",-5.00,4.00,0.00,\"\",0.00,314.00,295.00,1990.00,,,,,,\n2015,5,12,\"DL\",\"409\",\"JFK\",\"SJU\",-3.00,-37.00,0.00,\"\",0.00,213.00,196.00,1598.00,,,,,,\n2015,5,12,\"DL\",\"410\",\"MSP\",\"JFK\",-1.00,14.00,0.00,\"\",0.00,182.00,146.00,1029.00,,,,,,\n2015,5,12,\"DL\",\"412\",\"LAX\",\"JFK\",71.00,45.00,0.00,\"\",0.00,313.00,273.00,2475.00,3.00,0.00,0.00,0.00,42.00,\n2015,5,12,\"DL\",\"414\",\"SFO\",\"JFK\",-5.00,-37.00,0.00,\"\",0.00,313.00,281.00,2586.00,,,,,,\n2015,5,12,\"DL\",\"415\",\"JFK\",\"SFO\",-2.00,-3.00,0.00,\"\",0.00,407.00,372.00,2586.00,,,,,,\n2015,5,12,\"DL\",\"417\",\"JFK\",\"SEA\",3.00,-21.00,0.00,\"\",0.00,358.00,338.00,2422.00,,,,,,\n2015,5,12,\"DL\",\"418\",\"SEA\",\"JFK\",-6.00,-5.00,0.00,\"\",0.00,329.00,306.00,2422.00,,,,,,\n2015,5,12,\"DL\",\"419\",\"JFK\",\"SEA\",33.00,7.00,0.00,\"\",0.00,353.00,324.00,2422.00,,,,,,\n2015,5,12,\"DL\",\"420\",\"JFK\",\"LAX\",29.00,4.00,0.00,\"\",0.00,373.00,347.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"422\",\"JFK\",\"LAX\",-3.00,1.00,0.00,\"\",0.00,384.00,355.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"423\",\"JFK\",\"LAX\",-1.00,13.00,0.00,\"\",0.00,387.00,363.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"424\",\"JFK\",\"LAX\",57.00,77.00,0.00,\"\",0.00,390.00,344.00,2475.00,57.00,0.00,20.00,0.00,0.00,\n2015,5,12,\"DL\",\"426\",\"JFK\",\"MCO\",-3.00,-27.00,0.00,\"\",0.00,148.00,130.00,944.00,,,,,,\n2015,5,12,\"DL\",\"427\",\"JFK\",\"LAX\",0.00,-12.00,0.00,\"\",0.00,376.00,335.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"428\",\"JFK\",\"FLL\",-7.00,-31.00,0.00,\"\",0.00,160.00,145.00,1069.00,,,,,,\n2015,5,12,\"DL\",\"430\",\"JFK\",\"SFO\",-8.00,-6.00,0.00,\"\",0.00,386.00,362.00,2586.00,,,,,,\n2015,5,12,\"DL\",\"431\",\"JFK\",\"DEN\",-4.00,-21.00,0.00,\"\",0.00,267.00,246.00,1626.00,,,,,,\n2015,5,12,\"DL\",\"433\",\"JFK\",\"PDX\",-2.00,-13.00,0.00,\"\",0.00,359.00,334.00,2454.00,,,,,,\n2015,5,12,\"DL\",\"434\",\"JFK\",\"SFO\",9.00,11.00,0.00,\"\",0.00,406.00,367.00,2586.00,,,,,,\n2015,5,12,\"DL\",\"435\",\"JFK\",\"SFO\",1.00,-38.00,0.00,\"\",0.00,372.00,344.00,2586.00,,,,,,\n2015,5,12,\"DL\",\"436\",\"JFK\",\"LAS\",-3.00,16.00,0.00,\"\",0.00,369.00,322.00,2248.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,12,\"DL\",\"437\",\"JFK\",\"BOS\",-12.00,-27.00,0.00,\"\",0.00,62.00,40.00,187.00,,,,,,\n2015,5,12,\"DL\",\"438\",\"JFK\",\"MCO\",-10.00,-22.00,0.00,\"\",0.00,156.00,133.00,944.00,,,,,,\n2015,5,12,\"DL\",\"439\",\"JFK\",\"MSP\",0.00,-14.00,0.00,\"\",0.00,178.00,154.00,1029.00,,,,,,\n2015,5,12,\"DL\",\"440\",\"JFK\",\"BOS\",2.00,-35.00,0.00,\"\",0.00,64.00,32.00,187.00,,,,,,\n2015,5,12,\"DL\",\"441\",\"JFK\",\"MIA\",28.00,18.00,0.00,\"\",0.00,171.00,147.00,1089.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,12,\"DL\",\"443\",\"JFK\",\"LAS\",-1.00,-17.00,0.00,\"\",0.00,338.00,317.00,2248.00,,,,,,\n2015,5,12,\"DL\",\"444\",\"SLC\",\"JFK\",41.00,-4.00,0.00,\"\",0.00,235.00,217.00,1990.00,,,,,,\n2015,5,12,\"DL\",\"447\",\"JFK\",\"LAX\",1.00,2.00,0.00,\"\",0.00,391.00,348.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"448\",\"JFK\",\"SEA\",3.00,-16.00,0.00,\"\",0.00,341.00,327.00,2422.00,,,,,,\n2015,5,12,\"DL\",\"449\",\"JFK\",\"PHX\",-3.00,-10.00,0.00,\"\",0.00,334.00,300.00,2153.00,,,,,,\n2015,5,12,\"DL\",\"453\",\"JFK\",\"CHS\",24.00,25.00,0.00,\"\",0.00,140.00,88.00,636.00,0.00,0.00,1.00,0.00,24.00,\n2015,5,12,\"DL\",\"454\",\"JFK\",\"STT\",-2.00,-17.00,0.00,\"\",0.00,231.00,203.00,1623.00,,,,,,\n2015,5,12,\"DL\",\"455\",\"JFK\",\"SAN\",23.00,29.00,0.00,\"\",0.00,384.00,342.00,2446.00,23.00,0.00,6.00,0.00,0.00,\n2015,5,12,\"DL\",\"456\",\"JFK\",\"SEA\",-7.00,4.00,0.00,\"\",0.00,374.00,329.00,2422.00,,,,,,\n2015,5,12,\"DL\",\"459\",\"JFK\",\"SAN\",-3.00,13.00,0.00,\"\",0.00,391.00,350.00,2446.00,,,,,,\n2015,5,12,\"DL\",\"460\",\"JFK\",\"SLC\",26.00,15.00,0.00,\"\",0.00,314.00,288.00,1990.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,12,\"DL\",\"462\",\"JFK\",\"PDX\",13.00,4.00,0.00,\"\",0.00,369.00,337.00,2454.00,,,,,,\n2015,5,12,\"DL\",\"463\",\"JFK\",\"LAS\",-2.00,-9.00,0.00,\"\",0.00,349.00,313.00,2248.00,,,,,,\n2015,5,12,\"DL\",\"465\",\"JFK\",\"ATL\",-7.00,-24.00,0.00,\"\",0.00,135.00,108.00,760.00,,,,,,\n2015,5,12,\"DL\",\"466\",\"SLC\",\"JFK\",61.00,30.00,0.00,\"\",0.00,246.00,230.00,1990.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"468\",\"SFO\",\"JFK\",58.00,28.00,0.00,\"\",0.00,319.00,285.00,2586.00,0.00,0.00,23.00,0.00,5.00,\n2015,5,12,\"DL\",\"469\",\"JFK\",\"SFO\",-4.00,19.00,0.00,\"\",0.00,413.00,356.00,2586.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,12,\"DL\",\"472\",\"JFK\",\"LAX\",-1.00,2.00,0.00,\"\",0.00,388.00,340.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"476\",\"LAX\",\"JFK\",10.00,-4.00,0.00,\"\",0.00,321.00,277.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"477\",\"JFK\",\"LAX\",4.00,3.00,0.00,\"\",0.00,394.00,346.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"478\",\"ATL\",\"JFK\",123.00,111.00,0.00,\"\",0.00,140.00,105.00,760.00,0.00,0.00,111.00,0.00,0.00,\n2015,5,12,\"DL\",\"480\",\"JFK\",\"SJU\",-5.00,-27.00,0.00,\"\",0.00,212.00,197.00,1598.00,,,,,,\n2015,5,12,\"DL\",\"483\",\"JFK\",\"LAS\",13.00,28.00,0.00,\"\",0.00,368.00,331.00,2248.00,1.00,0.00,15.00,0.00,12.00,\n2015,5,12,\"DL\",\"486\",\"JFK\",\"LAS\",-5.00,-23.00,0.00,\"\",0.00,314.00,298.00,2248.00,,,,,,\n2015,5,12,\"DL\",\"488\",\"JFK\",\"SJU\",-17.00,38.00,0.00,\"\",0.00,282.00,211.00,1598.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,12,\"DL\",\"491\",\"JFK\",\"SJU\",-5.00,-10.00,0.00,\"\",0.00,233.00,202.00,1598.00,,,,,,\n2015,5,12,\"DL\",\"495\",\"JFK\",\"ATL\",10.00,-22.00,0.00,\"\",0.00,137.00,109.00,760.00,,,,,,\n2015,5,12,\"DL\",\"496\",\"JFK\",\"BOS\",-7.00,4.00,0.00,\"\",0.00,94.00,39.00,187.00,,,,,,\n2015,5,12,\"DL\",\"497\",\"JFK\",\"ATL\",42.00,22.00,0.00,\"\",0.00,133.00,112.00,760.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,12,\"DL\",\"498\",\"JFK\",\"SFO\",-3.00,-16.00,0.00,\"\",0.00,395.00,372.00,2586.00,,,,,,\n2015,5,12,\"DL\",\"499\",\"JFK\",\"SLC\",-4.00,44.00,0.00,\"\",0.00,358.00,290.00,1990.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,12,\"DL\",\"511\",\"SJU\",\"JFK\",18.00,4.00,0.00,\"\",0.00,235.00,198.00,1598.00,,,,,,\n2015,5,12,\"DL\",\"527\",\"RSW\",\"JFK\",99.00,98.00,0.00,\"\",0.00,163.00,143.00,1074.00,0.00,0.00,98.00,0.00,0.00,\n2015,5,12,\"DL\",\"528\",\"LGA\",\"MSP\",1.00,-22.00,0.00,\"\",0.00,162.00,146.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"541\",\"LAS\",\"JFK\",2.00,-26.00,0.00,\"\",0.00,271.00,252.00,2248.00,,,,,,\n2015,5,12,\"DL\",\"544\",\"ALB\",\"ATL\",3.00,-7.00,0.00,\"\",0.00,145.00,122.00,853.00,,,,,,\n2015,5,12,\"DL\",\"582\",\"DTW\",\"LGA\",0.00,6.00,0.00,\"\",0.00,113.00,74.00,502.00,,,,,,\n2015,5,12,\"DL\",\"583\",\"LGA\",\"DTW\",-4.00,-8.00,0.00,\"\",0.00,110.00,83.00,502.00,,,,,,\n2015,5,12,\"DL\",\"662\",\"BUF\",\"MSP\",-2.00,-21.00,0.00,\"\",0.00,125.00,111.00,735.00,,,,,,\n2015,5,12,\"DL\",\"664\",\"TPA\",\"LGA\",-9.00,2.00,0.00,\"\",0.00,174.00,142.00,1010.00,,,,,,\n2015,5,12,\"DL\",\"665\",\"ATL\",\"ALB\",-2.00,-18.00,0.00,\"\",0.00,124.00,103.00,853.00,,,,,,\n2015,5,12,\"DL\",\"665\",\"ALB\",\"ATL\",-13.00,-17.00,0.00,\"\",0.00,148.00,131.00,853.00,,,,,,\n2015,5,12,\"DL\",\"676\",\"STT\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,236.00,215.00,1623.00,,,,,,\n2015,5,12,\"DL\",\"714\",\"DTW\",\"LGA\",86.00,65.00,0.00,\"\",0.00,85.00,68.00,502.00,65.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"723\",\"ATL\",\"BUF\",0.00,-17.00,0.00,\"\",0.00,110.00,92.00,712.00,,,,,,\n2015,5,12,\"DL\",\"723\",\"BUF\",\"ATL\",-3.00,-15.00,0.00,\"\",0.00,119.00,105.00,712.00,,,,,,\n2015,5,12,\"DL\",\"725\",\"ATL\",\"LGA\",-2.00,3.00,0.00,\"\",0.00,139.00,102.00,762.00,,,,,,\n2015,5,12,\"DL\",\"729\",\"LAS\",\"JFK\",44.00,41.00,0.00,\"\",0.00,302.00,246.00,2248.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,12,\"DL\",\"731\",\"LGA\",\"DTW\",-2.00,-8.00,0.00,\"\",0.00,108.00,87.00,502.00,,,,,,\n2015,5,12,\"DL\",\"750\",\"BOS\",\"JFK\",66.00,107.00,0.00,\"\",0.00,121.00,46.00,187.00,66.00,0.00,41.00,0.00,0.00,\n2015,5,12,\"DL\",\"763\",\"BOS\",\"JFK\",-7.00,9.00,0.00,\"\",0.00,94.00,56.00,187.00,,,,,,\n2015,5,12,\"DL\",\"772\",\"PBI\",\"LGA\",-2.00,3.00,0.00,\"\",0.00,175.00,132.00,1035.00,,,,,,\n2015,5,12,\"DL\",\"782\",\"MIA\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,178.00,147.00,1089.00,,,,,,\n2015,5,12,\"DL\",\"787\",\"MCO\",\"JFK\",100.00,78.00,0.00,\"\",0.00,144.00,127.00,944.00,0.00,0.00,78.00,0.00,0.00,\n2015,5,12,\"DL\",\"789\",\"MIA\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,192.00,147.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"791\",\"LAX\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,333.00,299.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"792\",\"PBI\",\"JFK\",13.00,1.00,0.00,\"\",0.00,155.00,132.00,1028.00,,,,,,\n2015,5,12,\"DL\",\"793\",\"BOS\",\"JFK\",-2.00,11.00,0.00,\"\",0.00,107.00,43.00,187.00,,,,,,\n2015,5,12,\"DL\",\"802\",\"ATL\",\"LGA\",61.00,49.00,0.00,\"\",0.00,133.00,103.00,762.00,49.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"804\",\"LGA\",\"MSP\",0.00,-23.00,0.00,\"\",0.00,171.00,151.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"856\",\"SAN\",\"JFK\",16.00,-23.00,0.00,\"\",0.00,298.00,273.00,2446.00,,,,,,\n2015,5,12,\"DL\",\"871\",\"MSP\",\"LGA\",-4.00,-26.00,0.00,\"\",0.00,142.00,119.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"874\",\"LGA\",\"MIA\",-2.00,-26.00,0.00,\"\",0.00,181.00,148.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"878\",\"RSW\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,162.00,144.00,1080.00,,,,,,\n2015,5,12,\"DL\",\"884\",\"LGA\",\"DEN\",-1.00,-22.00,0.00,\"\",0.00,253.00,233.00,1620.00,,,,,,\n2015,5,12,\"DL\",\"889\",\"MSP\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,159.00,126.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"904\",\"LGA\",\"ATL\",-2.00,-5.00,0.00,\"\",0.00,146.00,113.00,762.00,,,,,,\n2015,5,12,\"DL\",\"906\",\"ATL\",\"LGA\",-4.00,-31.00,0.00,\"\",0.00,118.00,95.00,762.00,,,,,,\n2015,5,12,\"DL\",\"909\",\"LGA\",\"MIA\",-2.00,1.00,0.00,\"\",0.00,197.00,168.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"910\",\"MCO\",\"LGA\",-1.00,15.00,0.00,\"\",0.00,176.00,129.00,950.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,12,\"DL\",\"928\",\"DEN\",\"LGA\",-7.00,-50.00,0.00,\"\",0.00,193.00,174.00,1620.00,,,,,,\n2015,5,12,\"DL\",\"939\",\"MCO\",\"LGA\",79.00,52.00,0.00,\"\",0.00,136.00,118.00,950.00,0.00,0.00,0.00,0.00,52.00,\n2015,5,12,\"DL\",\"964\",\"LGA\",\"ATL\",16.00,-5.00,0.00,\"\",0.00,125.00,107.00,762.00,,,,,,\n2015,5,12,\"DL\",\"965\",\"MCO\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,152.00,128.00,950.00,,,,,,\n2015,5,12,\"DL\",\"971\",\"LGA\",\"DEN\",-2.00,-6.00,0.00,\"\",0.00,263.00,243.00,1620.00,,,,,,\n2015,5,12,\"DL\",\"986\",\"ATL\",\"LGA\",1.00,-11.00,0.00,\"\",0.00,121.00,101.00,762.00,,,,,,\n2015,5,12,\"DL\",\"997\",\"DTW\",\"LGA\",-7.00,-6.00,0.00,\"\",0.00,105.00,72.00,502.00,,,,,,\n2015,5,12,\"DL\",\"1086\",\"LGA\",\"ATL\",-5.00,-33.00,0.00,\"\",0.00,134.00,110.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1088\",\"FLL\",\"LGA\",-9.00,-22.00,0.00,\"\",0.00,164.00,146.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"1109\",\"SEA\",\"JFK\",33.00,6.00,0.00,\"\",0.00,308.00,268.00,2422.00,,,,,,\n2015,5,12,\"DL\",\"1111\",\"ATL\",\"ROC\",2.00,6.00,0.00,\"\",0.00,134.00,94.00,749.00,,,,,,\n2015,5,12,\"DL\",\"1121\",\"PBI\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,168.00,139.00,1035.00,,,,,,\n2015,5,12,\"DL\",\"1131\",\"LGA\",\"FLL\",4.00,-24.00,0.00,\"\",0.00,164.00,143.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"1145\",\"LGA\",\"DTW\",58.00,33.00,0.00,\"\",0.00,99.00,79.00,502.00,0.00,0.00,1.00,0.00,32.00,\n2015,5,12,\"DL\",\"1155\",\"DTW\",\"ROC\",-5.00,-10.00,0.00,\"\",0.00,66.00,43.00,296.00,,,,,,\n2015,5,12,\"DL\",\"1159\",\"ATL\",\"BUF\",7.00,-11.00,0.00,\"\",0.00,104.00,88.00,712.00,,,,,,\n2015,5,12,\"DL\",\"1159\",\"BUF\",\"ATL\",-3.00,-1.00,0.00,\"\",0.00,131.00,106.00,712.00,,,,,,\n2015,5,12,\"DL\",\"1162\",\"LAX\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,304.00,279.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"527\",\"RSW\",\"JFK\",135.00,133.00,0.00,\"\",0.00,162.00,139.00,1074.00,0.00,0.00,0.00,0.00,133.00,\n2015,5,13,\"DL\",\"528\",\"LGA\",\"MSP\",-4.00,20.00,0.00,\"\",0.00,209.00,158.00,1020.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,13,\"DL\",\"541\",\"LAS\",\"JFK\",-8.00,-11.00,0.00,\"\",0.00,296.00,265.00,2248.00,,,,,,\n2015,5,13,\"DL\",\"544\",\"ALB\",\"ATL\",-2.00,-8.00,0.00,\"\",0.00,149.00,130.00,853.00,,,,,,\n2015,5,13,\"DL\",\"582\",\"DTW\",\"LGA\",39.00,36.00,0.00,\"\",0.00,104.00,74.00,502.00,2.00,0.00,0.00,0.00,34.00,\n2015,5,13,\"DL\",\"583\",\"LGA\",\"DTW\",-2.00,5.00,0.00,\"\",0.00,121.00,90.00,502.00,,,,,,\n2015,5,13,\"DL\",\"662\",\"BUF\",\"MSP\",-3.00,-12.00,0.00,\"\",0.00,135.00,116.00,735.00,,,,,,\n2015,5,13,\"DL\",\"664\",\"TPA\",\"LGA\",-11.00,-9.00,0.00,\"\",0.00,165.00,137.00,1010.00,,,,,,\n2015,5,13,\"DL\",\"665\",\"ATL\",\"ALB\",-4.00,-6.00,0.00,\"\",0.00,138.00,124.00,853.00,,,,,,\n2015,5,13,\"DL\",\"665\",\"ALB\",\"ATL\",-9.00,-24.00,0.00,\"\",0.00,137.00,117.00,853.00,,,,,,\n2015,5,13,\"DL\",\"676\",\"STT\",\"JFK\",-6.00,-11.00,0.00,\"\",0.00,247.00,225.00,1623.00,,,,,,\n2015,5,13,\"DL\",\"714\",\"DTW\",\"LGA\",82.00,64.00,0.00,\"\",0.00,88.00,70.00,502.00,0.00,0.00,0.00,0.00,64.00,\n2015,5,13,\"DL\",\"723\",\"ATL\",\"BUF\",-1.00,-11.00,0.00,\"\",0.00,117.00,102.00,712.00,,,,,,\n2015,5,13,\"DL\",\"723\",\"BUF\",\"ATL\",-3.00,-25.00,0.00,\"\",0.00,109.00,94.00,712.00,,,,,,\n2015,5,13,\"DL\",\"725\",\"ATL\",\"LGA\",5.00,-8.00,0.00,\"\",0.00,121.00,97.00,762.00,,,,,,\n2015,5,13,\"DL\",\"729\",\"LAS\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,289.00,257.00,2248.00,,,,,,\n2015,5,13,\"DL\",\"731\",\"LGA\",\"DTW\",158.00,184.00,0.00,\"\",0.00,140.00,87.00,502.00,158.00,0.00,26.00,0.00,0.00,\n2015,5,6,\"DL\",\"2362\",\"LAX\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,316.00,298.00,2475.00,,,,,,\n2015,5,6,\"DL\",\"2382\",\"JFK\",\"FLL\",-4.00,-21.00,0.00,\"\",0.00,184.00,150.00,1069.00,,,,,,\n2015,5,6,\"DL\",\"2386\",\"ATL\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,127.00,104.00,762.00,,,,,,\n2015,5,6,\"DL\",\"2390\",\"JFK\",\"ATL\",3.00,21.00,0.00,\"\",0.00,190.00,119.00,760.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,6,\"DL\",\"2395\",\"LGA\",\"PBI\",-1.00,12.00,0.00,\"\",0.00,193.00,153.00,1035.00,,,,,,\n2015,5,6,\"DL\",\"2404\",\"SAN\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,323.00,291.00,2446.00,,,,,,\n2015,5,6,\"DL\",\"2405\",\"PHX\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,282.00,262.00,2153.00,,,,,,\n2015,5,6,\"DL\",\"2406\",\"TPA\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,149.00,126.00,1010.00,,,,,,\n2015,5,6,\"DL\",\"2413\",\"MIA\",\"LGA\",6.00,4.00,0.00,\"\",0.00,178.00,140.00,1096.00,,,,,,\n2015,5,6,\"DL\",\"2432\",\"DTW\",\"SYR\",-4.00,-11.00,0.00,\"\",0.00,72.00,56.00,374.00,,,,,,\n2015,5,6,\"DL\",\"2435\",\"JFK\",\"FLL\",-7.00,-29.00,0.00,\"\",0.00,181.00,157.00,1069.00,,,,,,\n2015,5,6,\"DL\",\"2450\",\"MCO\",\"LGA\",44.00,32.00,0.00,\"\",0.00,144.00,121.00,950.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"DL\",\"2464\",\"TPA\",\"JFK\",2.00,-17.00,0.00,\"\",0.00,145.00,127.00,1005.00,,,,,,\n2015,5,6,\"DL\",\"2466\",\"ATL\",\"SYR\",-5.00,-20.00,0.00,\"\",0.00,122.00,103.00,794.00,,,,,,\n2015,5,6,\"DL\",\"2466\",\"SYR\",\"ATL\",53.00,32.00,0.00,\"\",0.00,129.00,110.00,794.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"DL\",\"2473\",\"ATL\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,120.00,95.00,712.00,,,,,,\n2015,5,6,\"DL\",\"2474\",\"JFK\",\"DEN\",-1.00,15.00,0.00,\"\",0.00,300.00,235.00,1626.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,6,\"DL\",\"2480\",\"JFK\",\"TPA\",-9.00,-26.00,0.00,\"\",0.00,169.00,142.00,1005.00,,,,,,\n2015,5,6,\"DL\",\"2495\",\"MIA\",\"JFK\",15.00,0.00,0.00,\"\",0.00,173.00,148.00,1089.00,,,,,,\n2015,5,6,\"DL\",\"2496\",\"ATL\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,129.00,109.00,762.00,,,,,,\n2015,5,6,\"DL\",\"2498\",\"FLL\",\"LGA\",-12.00,-19.00,0.00,\"\",0.00,176.00,147.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"2502\",\"FLL\",\"LGA\",-11.00,-32.00,0.00,\"\",0.00,160.00,140.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"2521\",\"SFO\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,328.00,306.00,2586.00,,,,,,\n2015,5,6,\"DL\",\"2542\",\"FLL\",\"JFK\",-7.00,-32.00,0.00,\"\",0.00,161.00,138.00,1069.00,,,,,,\n2015,5,6,\"DL\",\"2554\",\"DEN\",\"JFK\",-4.00,-2.00,0.00,\"\",0.00,243.00,203.00,1626.00,,,,,,\n2015,5,6,\"DL\",\"2564\",\"JFK\",\"SLC\",-9.00,-33.00,0.00,\"\",0.00,305.00,268.00,1990.00,,,,,,\n2015,5,6,\"DL\",\"2565\",\"JFK\",\"MSP\",8.00,-13.00,0.00,\"\",0.00,188.00,151.00,1029.00,,,,,,\n2015,5,6,\"DL\",\"2567\",\"DTW\",\"ALB\",-5.00,-4.00,0.00,\"\",0.00,89.00,67.00,489.00,,,,,,\n2015,5,6,\"DL\",\"2569\",\"JFK\",\"PHX\",-1.00,-7.00,0.00,\"\",0.00,337.00,293.00,2153.00,,,,,,\n2015,5,6,\"DL\",\"2577\",\"JFK\",\"FLL\",18.00,-10.00,0.00,\"\",0.00,177.00,143.00,1069.00,,,,,,\n2015,5,6,\"DL\",\"2593\",\"SAT\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,224.00,209.00,1587.00,,,,,,\n2015,5,6,\"DL\",\"2594\",\"DEN\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,224.00,206.00,1620.00,,,,,,\n2015,5,6,\"DL\",\"2595\",\"FLL\",\"LGA\",-10.00,-24.00,0.00,\"\",0.00,170.00,139.00,1076.00,,,,,,\n2015,5,6,\"DL\",\"2596\",\"PBI\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,160.00,137.00,1035.00,,,,,,\n2015,5,6,\"DL\",\"2609\",\"JFK\",\"PDX\",-8.00,-25.00,0.00,\"\",0.00,353.00,309.00,2454.00,,,,,,\n2015,5,6,\"DL\",\"2622\",\"ROC\",\"DTW\",-6.00,-10.00,0.00,\"\",0.00,78.00,59.00,296.00,,,,,,\n2015,5,6,\"DL\",\"2632\",\"JFK\",\"MCO\",98.00,87.00,0.00,\"\",0.00,172.00,140.00,944.00,87.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"DL\",\"2634\",\"JFK\",\"BUF\",-10.00,-32.00,0.00,\"\",0.00,81.00,53.00,301.00,,,,,,\n2015,5,6,\"DL\",\"2645\",\"JFK\",\"RSW\",-11.00,-9.00,0.00,\"\",0.00,203.00,158.00,1074.00,,,,,,\n2015,5,6,\"DL\",\"2649\",\"JFK\",\"TPA\",-2.00,-24.00,0.00,\"\",0.00,166.00,137.00,1005.00,,,,,,\n2015,5,6,\"DL\",\"2650\",\"TPA\",\"JFK\",31.00,13.00,0.00,\"\",0.00,150.00,130.00,1005.00,,,,,,\n2015,5,6,\"DL\",\"2652\",\"TPA\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,154.00,133.00,1005.00,,,,,,\n2015,5,6,\"DL\",\"2653\",\"MCO\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,161.00,124.00,944.00,,,,,,\n2015,5,6,\"DL\",\"2665\",\"BOS\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,76.00,45.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2666\",\"LGA\",\"BOS\",-2.00,-7.00,0.00,\"\",0.00,61.00,34.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2667\",\"BOS\",\"LGA\",227.00,215.00,0.00,\"\",0.00,67.00,49.00,184.00,215.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"DL\",\"2668\",\"LGA\",\"BOS\",-1.00,-7.00,0.00,\"\",0.00,65.00,35.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2669\",\"BOS\",\"LGA\",-3.00,4.00,0.00,\"\",0.00,82.00,52.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2670\",\"LGA\",\"BOS\",-4.00,-4.00,0.00,\"\",0.00,67.00,33.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2671\",\"BOS\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,78.00,49.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2672\",\"LGA\",\"BOS\",0.00,6.00,0.00,\"\",0.00,88.00,33.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2673\",\"BOS\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,70.00,48.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2674\",\"LGA\",\"BOS\",-2.00,2.00,0.00,\"\",0.00,87.00,32.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2675\",\"BOS\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,70.00,48.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2676\",\"LGA\",\"BOS\",-3.00,10.00,0.00,\"\",0.00,89.00,35.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2677\",\"BOS\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,69.00,48.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2678\",\"LGA\",\"BOS\",-3.00,-4.00,0.00,\"\",0.00,82.00,35.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2679\",\"BOS\",\"LGA\",10.00,2.00,0.00,\"\",0.00,69.00,48.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2680\",\"LGA\",\"BOS\",-4.00,-7.00,0.00,\"\",0.00,76.00,33.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2681\",\"BOS\",\"LGA\",-6.00,5.00,0.00,\"\",0.00,88.00,48.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2682\",\"LGA\",\"BOS\",1.00,2.00,0.00,\"\",0.00,73.00,34.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2683\",\"BOS\",\"LGA\",-2.00,20.00,0.00,\"\",0.00,96.00,52.00,184.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,6,\"DL\",\"2684\",\"LGA\",\"BOS\",1.00,-7.00,0.00,\"\",0.00,67.00,35.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2685\",\"BOS\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,73.00,54.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2686\",\"LGA\",\"BOS\",0.00,-6.00,0.00,\"\",0.00,76.00,33.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2687\",\"BOS\",\"LGA\",-2.00,4.00,0.00,\"\",0.00,82.00,44.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2688\",\"LGA\",\"BOS\",11.00,67.00,0.00,\"\",0.00,139.00,39.00,184.00,0.00,0.00,56.00,0.00,11.00,\n2015,5,6,\"DL\",\"2689\",\"BOS\",\"LGA\",2.00,-1.00,0.00,\"\",0.00,77.00,48.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2690\",\"LGA\",\"BOS\",12.00,21.00,0.00,\"\",0.00,94.00,47.00,184.00,12.00,0.00,9.00,0.00,0.00,\n2015,5,6,\"DL\",\"2691\",\"BOS\",\"LGA\",59.00,55.00,0.00,\"\",0.00,73.00,41.00,184.00,0.00,0.00,0.00,0.00,55.00,\n2015,5,6,\"DL\",\"2692\",\"LGA\",\"BOS\",-3.00,12.00,0.00,\"\",0.00,94.00,43.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2693\",\"BOS\",\"LGA\",38.00,23.00,0.00,\"\",0.00,63.00,41.00,184.00,14.00,0.00,0.00,0.00,9.00,\n2015,5,6,\"DL\",\"2694\",\"LGA\",\"BOS\",-6.00,2.00,0.00,\"\",0.00,86.00,45.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2696\",\"LGA\",\"BOS\",13.00,9.00,0.00,\"\",0.00,64.00,38.00,184.00,,,,,,\n2015,5,6,\"DL\",\"2699\",\"BOS\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,71.00,48.00,184.00,,,,,,\n2015,5,7,\"DL\",\"42\",\"MIA\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,171.00,148.00,1089.00,,,,,,\n2015,5,7,\"DL\",\"208\",\"JFK\",\"MCO\",-5.00,-22.00,0.00,\"\",0.00,170.00,120.00,944.00,,,,,,\n2015,5,7,\"DL\",\"221\",\"LGA\",\"ATL\",-1.00,-26.00,0.00,\"\",0.00,140.00,110.00,762.00,,,,,,\n2015,5,7,\"DL\",\"234\",\"PIT\",\"JFK\",2.00,46.00,0.00,\"\",0.00,144.00,61.00,340.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,7,\"DL\",\"326\",\"SJU\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,217.00,199.00,1598.00,,,,,,\n2015,5,7,\"DL\",\"332\",\"SJU\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,228.00,207.00,1598.00,,,,,,\n2015,5,7,\"DL\",\"333\",\"MSP\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,155.00,137.00,1020.00,,,,,,\n2015,5,7,\"DL\",\"342\",\"SFO\",\"JFK\",-5.00,0.00,0.00,\"\",0.00,344.00,310.00,2586.00,,,,,,\n2015,5,7,\"DL\",\"347\",\"LGA\",\"ATL\",-3.00,-9.00,0.00,\"\",0.00,152.00,110.00,762.00,,,,,,\n2015,5,7,\"DL\",\"348\",\"SJU\",\"JFK\",-13.00,-20.00,0.00,\"\",0.00,235.00,212.00,1598.00,,,,,,\n2015,5,7,\"DL\",\"350\",\"LGA\",\"ATL\",-4.00,-22.00,0.00,\"\",0.00,135.00,104.00,762.00,,,,,,\n2015,5,7,\"DL\",\"400\",\"PDX\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,322.00,297.00,2454.00,,,,,,\n2015,5,7,\"DL\",\"401\",\"AUS\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,219.00,202.00,1521.00,,,,,,\n2015,5,7,\"DL\",\"403\",\"PDX\",\"JFK\",-4.00,4.00,0.00,\"\",0.00,342.00,303.00,2454.00,,,,,,\n2015,5,7,\"DL\",\"404\",\"JFK\",\"ATL\",29.00,-3.00,0.00,\"\",0.00,137.00,103.00,760.00,,,,,,\n2015,5,7,\"DL\",\"405\",\"JFK\",\"TPA\",-10.00,-24.00,0.00,\"\",0.00,157.00,136.00,1005.00,,,,,,\n2015,5,7,\"DL\",\"407\",\"MCO\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,146.00,128.00,944.00,,,,,,\n2015,5,7,\"DL\",\"409\",\"JFK\",\"SJU\",12.00,-7.00,0.00,\"\",0.00,228.00,199.00,1598.00,,,,,,\n2015,5,7,\"DL\",\"410\",\"MSP\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,151.00,133.00,1029.00,,,,,,\n2015,5,7,\"DL\",\"412\",\"LAX\",\"JFK\",9.00,2.00,0.00,\"\",0.00,332.00,305.00,2475.00,,,,,,\n2015,5,7,\"DL\",\"414\",\"SFO\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,340.00,308.00,2586.00,,,,,,\n2015,5,7,\"DL\",\"415\",\"JFK\",\"SFO\",11.00,-24.00,0.00,\"\",0.00,373.00,346.00,2586.00,,,,,,\n2015,5,7,\"DL\",\"417\",\"JFK\",\"SEA\",25.00,-13.00,0.00,\"\",0.00,344.00,310.00,2422.00,,,,,,\n2015,5,7,\"DL\",\"418\",\"SEA\",\"JFK\",-11.00,-5.00,0.00,\"\",0.00,334.00,298.00,2422.00,,,,,,\n2015,5,7,\"DL\",\"419\",\"JFK\",\"SEA\",1.00,-35.00,0.00,\"\",0.00,343.00,314.00,2422.00,,,,,,\n2015,5,7,\"DL\",\"420\",\"JFK\",\"LAX\",4.00,-27.00,0.00,\"\",0.00,367.00,333.00,2475.00,,,,,,\n2015,5,7,\"DL\",\"421\",\"JFK\",\"SLC\",-6.00,-19.00,0.00,\"\",0.00,316.00,276.00,1990.00,,,,,,\n2015,5,7,\"DL\",\"422\",\"JFK\",\"LAX\",-4.00,-36.00,0.00,\"\",0.00,348.00,318.00,2475.00,,,,,,\n2015,5,7,\"DL\",\"423\",\"JFK\",\"LAX\",0.00,-7.00,0.00,\"\",0.00,366.00,335.00,2475.00,,,,,,\n2015,5,7,\"DL\",\"424\",\"JFK\",\"LAX\",-5.00,-17.00,0.00,\"\",0.00,358.00,320.00,2475.00,,,,,,\n2015,5,7,\"DL\",\"426\",\"JFK\",\"MCO\",-3.00,-24.00,0.00,\"\",0.00,151.00,124.00,944.00,,,,,,\n2015,5,7,\"DL\",\"427\",\"JFK\",\"LAX\",56.00,38.00,0.00,\"\",0.00,370.00,339.00,2475.00,38.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"DL\",\"430\",\"JFK\",\"SFO\",3.00,-21.00,0.00,\"\",0.00,360.00,329.00,2586.00,,,,,,\n2015,5,7,\"DL\",\"431\",\"JFK\",\"SFO\",11.00,-27.00,0.00,\"\",0.00,371.00,341.00,2586.00,,,,,,\n2015,5,7,\"DL\",\"433\",\"JFK\",\"CHS\",-1.00,-15.00,0.00,\"\",0.00,122.00,90.00,636.00,,,,,,\n2015,5,7,\"DL\",\"434\",\"JFK\",\"SFO\",-3.00,-43.00,0.00,\"\",0.00,364.00,331.00,2586.00,,,,,,\n2015,5,7,\"DL\",\"435\",\"JFK\",\"SFO\",80.00,41.00,0.00,\"\",0.00,365.00,332.00,2586.00,23.00,0.00,0.00,0.00,18.00,\n2015,5,7,\"DL\",\"436\",\"JFK\",\"LAS\",-6.00,-26.00,0.00,\"\",0.00,330.00,288.00,2248.00,,,,,,\n2015,5,7,\"DL\",\"437\",\"JFK\",\"BOS\",-6.00,-19.00,0.00,\"\",0.00,64.00,42.00,187.00,,,,,,\n2015,5,7,\"DL\",\"438\",\"JFK\",\"MCO\",-5.00,-20.00,0.00,\"\",0.00,153.00,129.00,944.00,,,,,,\n2015,5,7,\"DL\",\"439\",\"JFK\",\"MSP\",-6.00,-18.00,0.00,\"\",0.00,180.00,151.00,1029.00,,,,,,\n2015,5,7,\"DL\",\"440\",\"JFK\",\"PIT\",23.00,-2.00,0.00,\"\",0.00,96.00,63.00,340.00,,,,,,\n2015,5,7,\"DL\",\"441\",\"JFK\",\"MIA\",-1.00,-10.00,0.00,\"\",0.00,172.00,145.00,1089.00,,,,,,\n2015,5,7,\"DL\",\"442\",\"JFK\",\"SJU\",-4.00,-20.00,0.00,\"\",0.00,218.00,198.00,1598.00,,,,,,\n2015,5,7,\"DL\",\"443\",\"JFK\",\"LAS\",0.00,-14.00,0.00,\"\",0.00,340.00,310.00,2248.00,,,,,,\n2015,5,7,\"DL\",\"444\",\"SLC\",\"JFK\",0.00,9.00,0.00,\"\",0.00,289.00,248.00,1990.00,,,,,,\n2015,5,7,\"DL\",\"445\",\"JFK\",\"BOS\",6.00,-2.00,0.00,\"\",0.00,85.00,42.00,187.00,,,,,,\n2015,5,7,\"DL\",\"447\",\"JFK\",\"LAX\",18.00,20.00,0.00,\"\",0.00,392.00,343.00,2475.00,18.00,0.00,2.00,0.00,0.00,\n2015,5,7,\"DL\",\"448\",\"JFK\",\"SEA\",2.00,-11.00,0.00,\"\",0.00,347.00,318.00,2422.00,,,,,,\n2015,5,7,\"DL\",\"449\",\"JFK\",\"PHX\",-4.00,-18.00,0.00,\"\",0.00,319.00,281.00,2153.00,,,,,,\n2015,5,7,\"DL\",\"453\",\"JFK\",\"CHS\",18.00,5.00,0.00,\"\",0.00,126.00,88.00,636.00,,,,,,\n2015,5,7,\"DL\",\"454\",\"JFK\",\"STT\",-10.00,-22.00,0.00,\"\",0.00,234.00,199.00,1623.00,,,,,,\n2015,5,7,\"DL\",\"455\",\"JFK\",\"DEN\",-3.00,191.00,0.00,\"\",0.00,476.00,447.00,1626.00,0.00,0.00,191.00,0.00,0.00,\n2015,5,7,\"DL\",\"456\",\"JFK\",\"SEA\",0.00,-17.00,0.00,\"\",0.00,346.00,309.00,2422.00,,,,,,\n2015,5,7,\"DL\",\"460\",\"JFK\",\"SLC\",17.00,-15.00,0.00,\"\",0.00,293.00,267.00,1990.00,,,,,,\n2015,5,7,\"DL\",\"462\",\"JFK\",\"PDX\",-6.00,-47.00,0.00,\"\",0.00,337.00,310.00,2454.00,,,,,,\n2015,5,7,\"DL\",\"463\",\"JFK\",\"LAS\",-1.00,4.00,0.00,\"\",0.00,361.00,310.00,2248.00,,,,,,\n2015,5,7,\"DL\",\"465\",\"JFK\",\"ATL\",0.00,3.00,0.00,\"\",0.00,155.00,100.00,760.00,,,,,,\n2015,5,7,\"DL\",\"466\",\"SLC\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,270.00,243.00,1990.00,,,,,,\n2015,5,7,\"DL\",\"468\",\"SFO\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,332.00,309.00,2586.00,,,,,,\n2015,5,7,\"DL\",\"469\",\"JFK\",\"SFO\",-8.00,-26.00,0.00,\"\",0.00,372.00,338.00,2586.00,,,,,,\n2015,5,7,\"DL\",\"472\",\"JFK\",\"LAX\",-6.00,-41.00,0.00,\"\",0.00,350.00,314.00,2475.00,,,,,,\n2015,5,7,\"DL\",\"476\",\"LAX\",\"JFK\",35.00,23.00,0.00,\"\",0.00,323.00,294.00,2475.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"DL\",\"477\",\"JFK\",\"LAX\",137.00,132.00,0.00,\"\",0.00,390.00,339.00,2475.00,3.00,0.00,0.00,0.00,129.00,\n2015,5,7,\"DL\",\"478\",\"ATL\",\"JFK\",10.00,-16.00,0.00,\"\",0.00,126.00,108.00,760.00,,,,,,\n2015,5,7,\"DL\",\"480\",\"JFK\",\"SJU\",-8.00,-13.00,0.00,\"\",0.00,233.00,199.00,1598.00,,,,,,\n2015,5,7,\"DL\",\"482\",\"JFK\",\"AUS\",0.00,-27.00,0.00,\"\",0.00,237.00,203.00,1521.00,,,,,,\n2015,5,7,\"DL\",\"486\",\"JFK\",\"LAS\",-1.00,-16.00,0.00,\"\",0.00,317.00,288.00,2248.00,,,,,,\n2015,5,7,\"DL\",\"488\",\"JFK\",\"SJU\",-5.00,0.00,0.00,\"\",0.00,232.00,196.00,1598.00,,,,,,\n2015,5,7,\"DL\",\"491\",\"JFK\",\"FLL\",-10.00,-28.00,0.00,\"\",0.00,166.00,145.00,1069.00,,,,,,\n2015,5,7,\"DL\",\"492\",\"JFK\",\"SJU\",-2.00,-8.00,0.00,\"\",0.00,236.00,204.00,1598.00,,,,,,\n2015,5,7,\"DL\",\"494\",\"JFK\",\"SLC\",6.00,-7.00,0.00,\"\",0.00,292.00,262.00,1990.00,,,,,,\n2015,5,7,\"DL\",\"495\",\"JFK\",\"ATL\",43.00,13.00,0.00,\"\",0.00,139.00,98.00,760.00,,,,,,\n2015,5,7,\"DL\",\"496\",\"JFK\",\"BOS\",-6.00,21.00,0.00,\"\",0.00,110.00,42.00,187.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,7,\"DL\",\"497\",\"JFK\",\"ATL\",-1.00,-15.00,0.00,\"\",0.00,139.00,106.00,760.00,,,,,,\n2015,5,7,\"DL\",\"498\",\"JFK\",\"SFO\",11.00,-41.00,0.00,\"\",0.00,356.00,329.00,2586.00,,,,,,\n2015,5,7,\"DL\",\"499\",\"JFK\",\"SLC\",-6.00,-9.00,0.00,\"\",0.00,307.00,260.00,1990.00,,,,,,\n2015,5,7,\"DL\",\"511\",\"SJU\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,225.00,197.00,1598.00,,,,,,\n2015,5,7,\"DL\",\"527\",\"RSW\",\"JFK\",-7.00,-2.00,0.00,\"\",0.00,169.00,143.00,1074.00,,,,,,\n2015,5,7,\"DL\",\"528\",\"LGA\",\"MSP\",-1.00,-16.00,0.00,\"\",0.00,170.00,144.00,1020.00,,,,,,\n2015,5,7,\"DL\",\"541\",\"LAS\",\"JFK\",-2.00,,0.00,\"\",1.00,,,2248.00,,,,,,\n2015,5,7,\"DL\",\"544\",\"ALB\",\"ATL\",-1.00,-19.00,0.00,\"\",0.00,137.00,119.00,853.00,,,,,,\n2015,5,7,\"DL\",\"582\",\"DTW\",\"LGA\",-1.00,6.00,0.00,\"\",0.00,114.00,83.00,502.00,,,,,,\n2015,5,7,\"DL\",\"583\",\"LGA\",\"DTW\",-3.00,-1.00,0.00,\"\",0.00,116.00,88.00,502.00,,,,,,\n2015,5,7,\"DL\",\"662\",\"BUF\",\"MSP\",-2.00,-22.00,0.00,\"\",0.00,124.00,111.00,735.00,,,,,,\n2015,5,7,\"DL\",\"664\",\"TPA\",\"LGA\",-10.00,-19.00,0.00,\"\",0.00,154.00,134.00,1010.00,,,,,,\n2015,5,7,\"DL\",\"665\",\"ATL\",\"ALB\",-7.00,-9.00,0.00,\"\",0.00,138.00,111.00,853.00,,,,,,\n2015,5,7,\"DL\",\"665\",\"ALB\",\"ATL\",-7.00,-4.00,0.00,\"\",0.00,155.00,126.00,853.00,,,,,,\n2015,5,7,\"DL\",\"676\",\"STT\",\"JFK\",-5.00,-35.00,0.00,\"\",0.00,222.00,204.00,1623.00,,,,,,\n2015,5,7,\"DL\",\"707\",\"DTW\",\"ALB\",-6.00,-17.00,0.00,\"\",0.00,86.00,66.00,489.00,,,,,,\n2015,5,7,\"DL\",\"707\",\"ALB\",\"DTW\",-5.00,-26.00,0.00,\"\",0.00,89.00,71.00,489.00,,,,,,\n2015,5,7,\"DL\",\"714\",\"DTW\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,104.00,74.00,502.00,,,,,,\n2015,5,7,\"DL\",\"723\",\"ATL\",\"BUF\",-3.00,-23.00,0.00,\"\",0.00,107.00,95.00,712.00,,,,,,\n2015,5,7,\"DL\",\"723\",\"BUF\",\"ATL\",-1.00,-12.00,0.00,\"\",0.00,120.00,94.00,712.00,,,,,,\n2015,5,7,\"DL\",\"725\",\"ATL\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,133.00,106.00,762.00,,,,,,\n2015,5,7,\"DL\",\"729\",\"LAS\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,287.00,266.00,2248.00,,,,,,\n2015,5,7,\"DL\",\"731\",\"LGA\",\"DTW\",-4.00,-5.00,0.00,\"\",0.00,113.00,88.00,502.00,,,,,,\n2015,5,7,\"DL\",\"739\",\"BOS\",\"JFK\",197.00,224.00,0.00,\"\",0.00,107.00,40.00,187.00,22.00,0.00,27.00,0.00,175.00,\n2015,5,7,\"DL\",\"750\",\"BOS\",\"JFK\",0.00,5.00,0.00,\"\",0.00,85.00,39.00,187.00,,,,,,\n2015,5,7,\"DL\",\"763\",\"BOS\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,63.00,42.00,187.00,,,,,,\n2015,5,7,\"DL\",\"772\",\"PBI\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,175.00,149.00,1035.00,,,,,,\n2015,5,7,\"DL\",\"782\",\"MIA\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,179.00,153.00,1089.00,,,,,,\n2015,5,7,\"DL\",\"787\",\"MCO\",\"JFK\",62.00,47.00,0.00,\"\",0.00,151.00,127.00,944.00,47.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"DL\",\"789\",\"MIA\",\"LGA\",26.00,17.00,0.00,\"\",0.00,179.00,149.00,1096.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"DL\",\"791\",\"LAX\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,313.00,286.00,2475.00,,,,,,\n2015,5,7,\"DL\",\"792\",\"PBI\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,162.00,138.00,1028.00,,,,,,\n2015,5,7,\"DL\",\"793\",\"BOS\",\"JFK\",2.00,-18.00,0.00,\"\",0.00,74.00,39.00,187.00,,,,,,\n2015,5,7,\"DL\",\"802\",\"ATL\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,124.00,102.00,762.00,,,,,,\n2015,5,7,\"DL\",\"804\",\"LGA\",\"MSP\",57.00,44.00,0.00,\"\",0.00,181.00,154.00,1020.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"DL\",\"856\",\"SAN\",\"JFK\",-3.00,9.00,0.00,\"\",0.00,349.00,306.00,2446.00,,,,,,\n2015,5,7,\"DL\",\"871\",\"MSP\",\"LGA\",1.00,-1.00,0.00,\"\",0.00,162.00,135.00,1020.00,,,,,,\n2015,5,7,\"DL\",\"874\",\"LGA\",\"MIA\",-1.00,-32.00,0.00,\"\",0.00,174.00,150.00,1096.00,,,,,,\n2015,5,7,\"DL\",\"878\",\"RSW\",\"LGA\",0.00,0.00,0.00,\"\",0.00,172.00,146.00,1080.00,,,,,,\n2015,5,7,\"DL\",\"884\",\"LGA\",\"DEN\",12.00,0.00,0.00,\"\",0.00,262.00,221.00,1620.00,,,,,,\n2015,5,7,\"DL\",\"889\",\"MSP\",\"LGA\",7.00,1.00,0.00,\"\",0.00,155.00,137.00,1020.00,,,,,,\n2015,5,7,\"DL\",\"904\",\"LGA\",\"ATL\",-2.00,-21.00,0.00,\"\",0.00,130.00,102.00,762.00,,,,,,\n2015,5,7,\"DL\",\"906\",\"ATL\",\"LGA\",0.00,10.00,0.00,\"\",0.00,155.00,121.00,762.00,,,,,,\n2015,5,7,\"DL\",\"909\",\"LGA\",\"MIA\",1.00,-22.00,0.00,\"\",0.00,171.00,148.00,1096.00,,,,,,\n2015,5,7,\"DL\",\"910\",\"MCO\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,145.00,125.00,950.00,,,,,,\n2015,5,7,\"DL\",\"928\",\"DEN\",\"LGA\",-2.00,-22.00,0.00,\"\",0.00,216.00,198.00,1620.00,,,,,,\n2015,5,7,\"DL\",\"939\",\"MCO\",\"LGA\",-9.00,-14.00,0.00,\"\",0.00,158.00,129.00,950.00,,,,,,\n2015,5,12,\"DL\",\"1996\",\"MSP\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,144.00,120.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"2003\",\"LGA\",\"MIA\",-2.00,1.00,0.00,\"\",0.00,190.00,151.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"2013\",\"ATL\",\"SYR\",-3.00,-13.00,0.00,\"\",0.00,125.00,99.00,794.00,,,,,,\n2015,5,12,\"DL\",\"2014\",\"SYR\",\"ATL\",-3.00,-11.00,0.00,\"\",0.00,131.00,117.00,794.00,,,,,,\n2015,5,12,\"DL\",\"2016\",\"LGA\",\"ATL\",-1.00,-7.00,0.00,\"\",0.00,147.00,117.00,762.00,,,,,,\n2015,5,12,\"DL\",\"2022\",\"LGA\",\"FLL\",-1.00,-14.00,0.00,\"\",0.00,179.00,151.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"2028\",\"FLL\",\"LGA\",-9.00,13.00,0.00,\"\",0.00,203.00,151.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"2032\",\"MSP\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,151.00,131.00,1029.00,,,,,,\n2015,5,12,\"DL\",\"2037\",\"MCO\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,151.00,130.00,950.00,,,,,,\n2015,5,12,\"DL\",\"2040\",\"SFO\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,321.00,278.00,2586.00,,,,,,\n2015,5,12,\"DL\",\"2056\",\"JFK\",\"ATL\",-5.00,-10.00,0.00,\"\",0.00,162.00,111.00,760.00,,,,,,\n2015,5,12,\"DL\",\"2058\",\"MCO\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,147.00,131.00,944.00,,,,,,\n2015,5,12,\"DL\",\"2074\",\"LGA\",\"ATL\",-3.00,-32.00,0.00,\"\",0.00,129.00,111.00,762.00,,,,,,\n2015,5,12,\"DL\",\"2077\",\"LGA\",\"MCO\",85.00,92.00,0.00,\"\",0.00,183.00,133.00,950.00,85.00,0.00,7.00,0.00,0.00,\n2015,5,12,\"DL\",\"2086\",\"ATL\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,126.00,107.00,762.00,,,,,,\n2015,5,12,\"DL\",\"2096\",\"LGA\",\"MSP\",-5.00,-16.00,0.00,\"\",0.00,171.00,154.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"2103\",\"JFK\",\"SJU\",-3.00,-31.00,0.00,\"\",0.00,214.00,191.00,1598.00,,,,,,\n2015,5,12,\"DL\",\"2119\",\"LGA\",\"MSP\",-6.00,-16.00,0.00,\"\",0.00,175.00,146.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"2129\",\"ROC\",\"ATL\",87.00,82.00,0.00,\"\",0.00,124.00,108.00,749.00,82.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"2131\",\"LGA\",\"DTW\",-2.00,-6.00,0.00,\"\",0.00,115.00,88.00,502.00,,,,,,\n2015,5,12,\"DL\",\"2135\",\"TPA\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,152.00,135.00,1010.00,,,,,,\n2015,5,12,\"DL\",\"2148\",\"LGA\",\"DTW\",-4.00,-13.00,0.00,\"\",0.00,119.00,85.00,502.00,,,,,,\n2015,5,12,\"DL\",\"2150\",\"LGA\",\"DTW\",69.00,44.00,0.00,\"\",0.00,101.00,81.00,502.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"2151\",\"MIA\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,178.00,148.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"2155\",\"LAS\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,299.00,275.00,2248.00,,,,,,\n2015,5,12,\"DL\",\"2156\",\"ATL\",\"SYR\",-7.00,-23.00,0.00,\"\",0.00,114.00,97.00,794.00,,,,,,\n2015,5,12,\"DL\",\"2156\",\"SYR\",\"ATL\",-8.00,-10.00,0.00,\"\",0.00,141.00,112.00,794.00,,,,,,\n2015,5,12,\"DL\",\"2166\",\"SYR\",\"DTW\",-5.00,-9.00,0.00,\"\",0.00,89.00,65.00,374.00,,,,,,\n2015,5,12,\"DL\",\"2174\",\"DTW\",\"JFK\",16.00,-8.00,0.00,\"\",0.00,97.00,70.00,509.00,,,,,,\n2015,5,12,\"DL\",\"2175\",\"JFK\",\"AUS\",-5.00,2.00,0.00,\"\",0.00,271.00,213.00,1521.00,,,,,,\n2015,5,12,\"DL\",\"2178\",\"LGA\",\"TPA\",-1.00,-15.00,0.00,\"\",0.00,167.00,152.00,1010.00,,,,,,\n2015,5,12,\"DL\",\"2181\",\"LGA\",\"MCO\",-2.00,-17.00,0.00,\"\",0.00,155.00,128.00,950.00,,,,,,\n2015,5,12,\"DL\",\"2182\",\"JFK\",\"PHX\",8.00,30.00,0.00,\"\",0.00,358.00,317.00,2153.00,8.00,0.00,22.00,0.00,0.00,\n2015,5,12,\"DL\",\"2185\",\"FLL\",\"JFK\",39.00,28.00,0.00,\"\",0.00,162.00,139.00,1069.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"2186\",\"ATL\",\"LGA\",-2.00,-28.00,0.00,\"\",0.00,120.00,100.00,762.00,,,,,,\n2015,5,12,\"DL\",\"2190\",\"JFK\",\"MIA\",3.00,5.00,0.00,\"\",0.00,204.00,152.00,1089.00,,,,,,\n2015,5,12,\"DL\",\"2214\",\"ATL\",\"LGA\",-6.00,0.00,0.00,\"\",0.00,139.00,104.00,762.00,,,,,,\n2015,5,12,\"DL\",\"2217\",\"JFK\",\"BOS\",-5.00,-35.00,0.00,\"\",0.00,62.00,36.00,187.00,,,,,,\n2015,5,12,\"DL\",\"2230\",\"CHS\",\"JFK\",16.00,0.00,0.00,\"\",0.00,113.00,86.00,636.00,,,,,,\n2015,5,12,\"DL\",\"2231\",\"DTW\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,105.00,74.00,502.00,,,,,,\n2015,5,12,\"DL\",\"2240\",\"SFO\",\"JFK\",-6.00,-31.00,0.00,\"\",0.00,313.00,288.00,2586.00,,,,,,\n2015,5,12,\"DL\",\"2248\",\"DTW\",\"LGA\",1.00,-17.00,0.00,\"\",0.00,90.00,70.00,502.00,,,,,,\n2015,5,12,\"DL\",\"2262\",\"LAX\",\"JFK\",5.00,-25.00,0.00,\"\",0.00,304.00,275.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"2268\",\"JFK\",\"AUS\",-4.00,-22.00,0.00,\"\",0.00,246.00,225.00,1521.00,,,,,,\n2015,5,12,\"DL\",\"2270\",\"LGA\",\"RSW\",12.00,-1.00,0.00,\"\",0.00,183.00,155.00,1080.00,,,,,,\n2015,5,12,\"DL\",\"2276\",\"MCO\",\"JFK\",15.00,22.00,0.00,\"\",0.00,174.00,129.00,944.00,0.00,0.00,7.00,0.00,15.00,\n2015,5,12,\"DL\",\"2277\",\"JFK\",\"TPA\",-8.00,-25.00,0.00,\"\",0.00,176.00,155.00,1005.00,,,,,,\n2015,5,12,\"DL\",\"2280\",\"LGA\",\"TPA\",-1.00,-6.00,0.00,\"\",0.00,169.00,137.00,1010.00,,,,,,\n2015,5,12,\"DL\",\"2282\",\"LGA\",\"MCO\",-6.00,-13.00,0.00,\"\",0.00,169.00,132.00,950.00,,,,,,\n2015,5,12,\"DL\",\"2285\",\"LGA\",\"MCO\",-5.00,-15.00,0.00,\"\",0.00,153.00,127.00,950.00,,,,,,\n2015,5,12,\"DL\",\"2292\",\"JFK\",\"PBI\",-10.00,-27.00,0.00,\"\",0.00,170.00,134.00,1028.00,,,,,,\n2015,5,12,\"DL\",\"2296\",\"MSP\",\"LGA\",-3.00,-31.00,0.00,\"\",0.00,141.00,125.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"2301\",\"JFK\",\"SAT\",-3.00,-10.00,0.00,\"\",0.00,262.00,228.00,1587.00,,,,,,\n2015,5,12,\"DL\",\"2311\",\"JFK\",\"MIA\",-2.00,-29.00,0.00,\"\",0.00,179.00,148.00,1089.00,,,,,,\n2015,5,12,\"DL\",\"2312\",\"JFK\",\"DTW\",58.00,57.00,0.00,\"\",0.00,139.00,93.00,509.00,0.00,0.00,0.00,0.00,57.00,\n2015,5,12,\"DL\",\"2317\",\"PBI\",\"LGA\",3.00,-11.00,0.00,\"\",0.00,159.00,142.00,1035.00,,,,,,\n2015,5,12,\"DL\",\"2319\",\"LGA\",\"MSP\",6.00,-25.00,0.00,\"\",0.00,164.00,146.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"2331\",\"LGA\",\"DTW\",-5.00,-13.00,0.00,\"\",0.00,116.00,86.00,502.00,,,,,,\n2015,5,12,\"DL\",\"2340\",\"JFK\",\"MCO\",45.00,26.00,0.00,\"\",0.00,171.00,137.00,944.00,1.00,0.00,0.00,0.00,25.00,\n2015,5,12,\"DL\",\"2349\",\"DTW\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,104.00,72.00,502.00,,,,,,\n2015,5,12,\"DL\",\"2350\",\"ATL\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,126.00,107.00,760.00,,,,,,\n2015,5,12,\"DL\",\"2352\",\"LAS\",\"JFK\",87.00,63.00,0.00,\"\",0.00,289.00,243.00,2248.00,0.00,0.00,63.00,0.00,0.00,\n2015,5,12,\"DL\",\"2354\",\"SLC\",\"JFK\",-5.00,-37.00,0.00,\"\",0.00,240.00,221.00,1990.00,,,,,,\n2015,5,12,\"DL\",\"2355\",\"JFK\",\"ATL\",-4.00,-32.00,0.00,\"\",0.00,141.00,109.00,760.00,,,,,,\n2015,5,12,\"DL\",\"2362\",\"LAX\",\"JFK\",13.00,-23.00,0.00,\"\",0.00,294.00,275.00,2475.00,,,,,,\n2015,5,12,\"DL\",\"2382\",\"JFK\",\"FLL\",7.00,-32.00,0.00,\"\",0.00,162.00,142.00,1069.00,,,,,,\n2015,5,12,\"DL\",\"2386\",\"ATL\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,124.00,95.00,762.00,,,,,,\n2015,5,12,\"DL\",\"2395\",\"LGA\",\"PBI\",-5.00,-19.00,0.00,\"\",0.00,166.00,140.00,1035.00,,,,,,\n2015,5,12,\"DL\",\"2404\",\"SAN\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,321.00,297.00,2446.00,,,,,,\n2015,5,12,\"DL\",\"2406\",\"TPA\",\"LGA\",68.00,84.00,0.00,\"\",0.00,174.00,140.00,1010.00,5.00,0.00,16.00,0.00,63.00,\n2015,5,12,\"DL\",\"2413\",\"MIA\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,187.00,151.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"2424\",\"JFK\",\"ATL\",0.00,-17.00,0.00,\"\",0.00,155.00,112.00,760.00,,,,,,\n2015,5,12,\"DL\",\"2432\",\"DTW\",\"SYR\",-1.00,-8.00,0.00,\"\",0.00,72.00,52.00,374.00,,,,,,\n2015,5,12,\"DL\",\"2435\",\"JFK\",\"FLL\",-11.00,-33.00,0.00,\"\",0.00,181.00,144.00,1069.00,,,,,,\n2015,5,12,\"DL\",\"2450\",\"MCO\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,145.00,128.00,950.00,,,,,,\n2015,5,12,\"DL\",\"2464\",\"TPA\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,157.00,138.00,1005.00,,,,,,\n2015,5,12,\"DL\",\"2466\",\"ATL\",\"SYR\",19.00,4.00,0.00,\"\",0.00,122.00,99.00,794.00,,,,,,\n2015,5,12,\"DL\",\"2466\",\"SYR\",\"ATL\",5.00,-14.00,0.00,\"\",0.00,131.00,115.00,794.00,,,,,,\n2015,5,12,\"DL\",\"2473\",\"ATL\",\"BUF\",-5.00,-17.00,0.00,\"\",0.00,116.00,91.00,712.00,,,,,,\n2015,5,12,\"DL\",\"2480\",\"JFK\",\"TPA\",91.00,63.00,0.00,\"\",0.00,158.00,138.00,1005.00,0.00,0.00,0.00,0.00,63.00,\n2015,5,12,\"DL\",\"2496\",\"ATL\",\"LGA\",12.00,1.00,0.00,\"\",0.00,123.00,100.00,762.00,,,,,,\n2015,5,12,\"DL\",\"2498\",\"FLL\",\"LGA\",-9.00,-17.00,0.00,\"\",0.00,175.00,141.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"2502\",\"FLL\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,173.00,145.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"2554\",\"DEN\",\"JFK\",52.00,15.00,0.00,\"\",0.00,204.00,179.00,1626.00,0.00,0.00,11.00,0.00,4.00,\n2015,5,12,\"DL\",\"2565\",\"JFK\",\"MSP\",-2.00,-4.00,0.00,\"\",0.00,207.00,159.00,1029.00,,,,,,\n2015,5,12,\"DL\",\"2567\",\"DTW\",\"ALB\",-7.00,-10.00,0.00,\"\",0.00,85.00,62.00,489.00,,,,,,\n2015,5,12,\"DL\",\"2577\",\"JFK\",\"FLL\",-6.00,-44.00,0.00,\"\",0.00,167.00,150.00,1069.00,,,,,,\n2015,5,12,\"DL\",\"2593\",\"SAT\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,221.00,200.00,1587.00,,,,,,\n2015,5,12,\"DL\",\"2594\",\"DEN\",\"LGA\",763.00,741.00,0.00,\"\",0.00,214.00,185.00,1620.00,741.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"2595\",\"FLL\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,170.00,145.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"2596\",\"PBI\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,160.00,138.00,1035.00,,,,,,\n2015,5,12,\"DL\",\"2622\",\"ROC\",\"DTW\",-10.00,-21.00,0.00,\"\",0.00,71.00,51.00,296.00,,,,,,\n2015,5,13,\"DL\",\"750\",\"BOS\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,63.00,42.00,187.00,,,,,,\n2015,5,13,\"DL\",\"763\",\"BOS\",\"JFK\",27.00,19.00,0.00,\"\",0.00,70.00,40.00,187.00,3.00,0.00,0.00,0.00,16.00,\n2015,5,13,\"DL\",\"772\",\"PBI\",\"LGA\",-5.00,-26.00,0.00,\"\",0.00,149.00,131.00,1035.00,,,,,,\n2015,5,13,\"DL\",\"781\",\"LGA\",\"ATL\",-3.00,-13.00,0.00,\"\",0.00,152.00,108.00,762.00,,,,,,\n2015,5,13,\"DL\",\"782\",\"MIA\",\"JFK\",-9.00,-24.00,0.00,\"\",0.00,167.00,141.00,1089.00,,,,,,\n2015,5,13,\"DL\",\"787\",\"MCO\",\"JFK\",7.00,-21.00,0.00,\"\",0.00,138.00,123.00,944.00,,,,,,\n2015,5,13,\"DL\",\"789\",\"MIA\",\"LGA\",8.00,-1.00,0.00,\"\",0.00,179.00,159.00,1096.00,,,,,,\n2015,5,13,\"DL\",\"791\",\"LAX\",\"JFK\",19.00,-16.00,0.00,\"\",0.00,295.00,265.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"792\",\"PBI\",\"JFK\",11.00,0.00,0.00,\"\",0.00,156.00,134.00,1028.00,,,,,,\n2015,5,13,\"DL\",\"793\",\"BOS\",\"JFK\",31.00,31.00,0.00,\"\",0.00,94.00,46.00,187.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,13,\"DL\",\"802\",\"ATL\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,133.00,102.00,762.00,,,,,,\n2015,5,13,\"DL\",\"804\",\"LGA\",\"MSP\",-3.00,-5.00,0.00,\"\",0.00,192.00,164.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"856\",\"SAN\",\"JFK\",10.00,-21.00,0.00,\"\",0.00,306.00,274.00,2446.00,,,,,,\n2015,5,13,\"DL\",\"871\",\"MSP\",\"LGA\",-7.00,-26.00,0.00,\"\",0.00,145.00,124.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"874\",\"LGA\",\"MIA\",0.00,3.00,0.00,\"\",0.00,208.00,150.00,1096.00,,,,,,\n2015,5,13,\"DL\",\"878\",\"RSW\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,163.00,140.00,1080.00,,,,,,\n2015,5,13,\"DL\",\"884\",\"LGA\",\"DEN\",-4.00,-21.00,0.00,\"\",0.00,257.00,226.00,1620.00,,,,,,\n2015,5,13,\"DL\",\"889\",\"MSP\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,156.00,125.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"904\",\"LGA\",\"ATL\",-4.00,-4.00,0.00,\"\",0.00,149.00,112.00,762.00,,,,,,\n2015,5,13,\"DL\",\"906\",\"ATL\",\"LGA\",-5.00,16.00,0.00,\"\",0.00,166.00,106.00,762.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,13,\"DL\",\"909\",\"LGA\",\"MIA\",-5.00,7.00,0.00,\"\",0.00,206.00,156.00,1096.00,,,,,,\n2015,5,13,\"DL\",\"910\",\"MCO\",\"LGA\",-11.00,-20.00,0.00,\"\",0.00,151.00,121.00,950.00,,,,,,\n2015,5,13,\"DL\",\"928\",\"DEN\",\"LGA\",-6.00,-44.00,0.00,\"\",0.00,198.00,182.00,1620.00,,,,,,\n2015,5,13,\"DL\",\"939\",\"MCO\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,159.00,136.00,950.00,,,,,,\n2015,5,13,\"DL\",\"964\",\"LGA\",\"ATL\",2.00,-2.00,0.00,\"\",0.00,142.00,103.00,762.00,,,,,,\n2015,5,13,\"DL\",\"965\",\"MCO\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,150.00,133.00,950.00,,,,,,\n2015,5,13,\"DL\",\"971\",\"LGA\",\"DEN\",-4.00,3.00,0.00,\"\",0.00,274.00,229.00,1620.00,,,,,,\n2015,5,13,\"DL\",\"986\",\"ATL\",\"LGA\",-3.00,5.00,0.00,\"\",0.00,141.00,97.00,762.00,,,,,,\n2015,5,13,\"DL\",\"997\",\"DTW\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,107.00,81.00,502.00,,,,,,\n2015,5,13,\"DL\",\"1088\",\"FLL\",\"LGA\",-9.00,-15.00,0.00,\"\",0.00,171.00,140.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"1109\",\"SEA\",\"JFK\",-6.00,-30.00,0.00,\"\",0.00,311.00,277.00,2422.00,,,,,,\n2015,5,13,\"DL\",\"1111\",\"ATL\",\"ROC\",-4.00,-9.00,0.00,\"\",0.00,125.00,100.00,749.00,,,,,,\n2015,5,13,\"DL\",\"1121\",\"PBI\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,173.00,144.00,1035.00,,,,,,\n2015,5,13,\"DL\",\"1131\",\"LGA\",\"FLL\",-7.00,6.00,0.00,\"\",0.00,205.00,151.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"1145\",\"LGA\",\"DTW\",-2.00,2.00,0.00,\"\",0.00,128.00,92.00,502.00,,,,,,\n2015,5,13,\"DL\",\"1155\",\"DTW\",\"ROC\",1.00,8.00,0.00,\"\",0.00,78.00,49.00,296.00,,,,,,\n2015,5,13,\"DL\",\"1159\",\"ATL\",\"BUF\",-2.00,-7.00,0.00,\"\",0.00,117.00,101.00,712.00,,,,,,\n2015,5,13,\"DL\",\"1159\",\"BUF\",\"ATL\",0.00,-26.00,0.00,\"\",0.00,103.00,90.00,712.00,,,,,,\n2015,5,13,\"DL\",\"1162\",\"LAX\",\"JFK\",18.00,13.00,0.00,\"\",0.00,320.00,293.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"1174\",\"LGA\",\"PBI\",-2.00,1.00,0.00,\"\",0.00,183.00,145.00,1035.00,,,,,,\n2015,5,13,\"DL\",\"1176\",\"ATL\",\"BUF\",3.00,-6.00,0.00,\"\",0.00,121.00,99.00,712.00,,,,,,\n2015,5,13,\"DL\",\"1176\",\"BUF\",\"ATL\",-1.00,-24.00,0.00,\"\",0.00,111.00,92.00,712.00,,,,,,\n2015,5,13,\"DL\",\"1186\",\"ATL\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,128.00,100.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1214\",\"LGA\",\"ATL\",-3.00,-12.00,0.00,\"\",0.00,155.00,107.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1227\",\"PHX\",\"JFK\",-3.00,-30.00,0.00,\"\",0.00,263.00,247.00,2153.00,,,,,,\n2015,5,13,\"DL\",\"1242\",\"LGA\",\"PBI\",-3.00,6.00,0.00,\"\",0.00,193.00,141.00,1035.00,,,,,,\n2015,5,13,\"DL\",\"1262\",\"LAX\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,311.00,286.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"1264\",\"SLC\",\"JFK\",-4.00,-32.00,0.00,\"\",0.00,244.00,226.00,1990.00,,,,,,\n2015,5,13,\"DL\",\"1266\",\"BUF\",\"ATL\",-3.00,-9.00,0.00,\"\",0.00,116.00,97.00,712.00,,,,,,\n2015,5,13,\"DL\",\"1269\",\"LGA\",\"MIA\",-3.00,4.00,0.00,\"\",0.00,204.00,153.00,1096.00,,,,,,\n2015,5,13,\"DL\",\"1278\",\"MSP\",\"BUF\",2.00,-17.00,0.00,\"\",0.00,100.00,85.00,735.00,,,,,,\n2015,5,13,\"DL\",\"1286\",\"ATL\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,119.00,99.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1288\",\"LGA\",\"FLL\",-4.00,4.00,0.00,\"\",0.00,203.00,152.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"1289\",\"LGA\",\"ATL\",41.00,17.00,0.00,\"\",0.00,138.00,102.00,762.00,2.00,0.00,0.00,0.00,15.00,\n2015,5,13,\"DL\",\"1298\",\"LGA\",\"ATL\",-1.00,-12.00,0.00,\"\",0.00,150.00,106.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1306\",\"DTW\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,102.00,71.00,502.00,,,,,,\n2015,5,13,\"DL\",\"1312\",\"TPA\",\"JFK\",14.00,2.00,0.00,\"\",0.00,162.00,140.00,1005.00,,,,,,\n2015,5,13,\"DL\",\"1335\",\"MIA\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,176.00,145.00,1096.00,,,,,,\n2015,5,13,\"DL\",\"1356\",\"BUF\",\"DTW\",-2.00,0.00,0.00,\"\",0.00,73.00,50.00,241.00,,,,,,\n2015,5,13,\"DL\",\"1359\",\"MCO\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,151.00,131.00,950.00,,,,,,\n2015,5,13,\"DL\",\"1370\",\"ATL\",\"ROC\",-2.00,0.00,0.00,\"\",0.00,127.00,105.00,749.00,,,,,,\n2015,5,13,\"DL\",\"1370\",\"ROC\",\"ATL\",-4.00,-14.00,0.00,\"\",0.00,124.00,100.00,749.00,,,,,,\n2015,5,13,\"DL\",\"1372\",\"DTW\",\"BUF\",-7.00,-1.00,0.00,\"\",0.00,72.00,42.00,241.00,,,,,,\n2015,5,13,\"DL\",\"1383\",\"LGA\",\"ATL\",-3.00,-25.00,0.00,\"\",0.00,146.00,106.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1386\",\"ATL\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,119.00,101.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1394\",\"ATL\",\"JFK\",-1.00,-20.00,0.00,\"\",0.00,134.00,104.00,760.00,,,,,,\n2015,5,13,\"DL\",\"1419\",\"ATL\",\"JFK\",62.00,50.00,0.00,\"\",0.00,143.00,109.00,760.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,13,\"DL\",\"1428\",\"LGA\",\"ATL\",-3.00,0.00,0.00,\"\",0.00,161.00,106.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1447\",\"LGA\",\"ATL\",-4.00,-14.00,0.00,\"\",0.00,134.00,110.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1473\",\"SEA\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,317.00,291.00,2422.00,,,,,,\n2015,5,13,\"DL\",\"1486\",\"ATL\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,133.00,103.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1487\",\"ATL\",\"JFK\",5.00,-7.00,0.00,\"\",0.00,132.00,102.00,760.00,,,,,,\n2015,5,13,\"DL\",\"1496\",\"MSP\",\"LGA\",-4.00,-28.00,0.00,\"\",0.00,142.00,123.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"1498\",\"FLL\",\"LGA\",-10.00,-13.00,0.00,\"\",0.00,177.00,144.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"1514\",\"LGA\",\"FLL\",-5.00,-8.00,0.00,\"\",0.00,186.00,147.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"1515\",\"ATL\",\"ALB\",0.00,-6.00,0.00,\"\",0.00,141.00,117.00,853.00,,,,,,\n2015,5,13,\"DL\",\"1526\",\"MCO\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,148.00,125.00,950.00,,,,,,\n2015,5,13,\"DL\",\"1542\",\"SEA\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,309.00,281.00,2422.00,,,,,,\n2015,5,13,\"DL\",\"1543\",\"ATL\",\"ALB\",-3.00,-17.00,0.00,\"\",0.00,130.00,111.00,853.00,,,,,,\n2015,5,13,\"DL\",\"1543\",\"ALB\",\"ATL\",-7.00,-21.00,0.00,\"\",0.00,148.00,125.00,853.00,,,,,,\n2015,5,13,\"DL\",\"1548\",\"LGA\",\"DTW\",-2.00,-9.00,0.00,\"\",0.00,113.00,86.00,502.00,,,,,,\n2015,5,13,\"DL\",\"1560\",\"MSY\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,170.00,151.00,1183.00,,,,,,\n2015,5,13,\"DL\",\"1562\",\"BOS\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,65.00,44.00,187.00,,,,,,\n2015,5,13,\"DL\",\"1566\",\"LGA\",\"PBI\",17.00,5.00,0.00,\"\",0.00,171.00,132.00,1035.00,,,,,,\n2015,5,14,\"DL\",\"1947\",\"FLL\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,176.00,147.00,1069.00,,,,,,\n2015,5,14,\"DL\",\"1948\",\"DTW\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,108.00,75.00,502.00,,,,,,\n2015,5,14,\"DL\",\"1949\",\"TPA\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,162.00,127.00,1010.00,,,,,,\n2015,5,14,\"DL\",\"1953\",\"LGA\",\"FLL\",-1.00,-27.00,0.00,\"\",0.00,168.00,147.00,1076.00,,,,,,\n2015,5,14,\"DL\",\"1958\",\"PBI\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,176.00,143.00,1035.00,,,,,,\n2015,5,14,\"DL\",\"1969\",\"BUF\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,97.00,62.00,301.00,,,,,,\n2015,5,14,\"DL\",\"1972\",\"AUS\",\"JFK\",0.00,-30.00,0.00,\"\",0.00,199.00,184.00,1521.00,,,,,,\n2015,5,14,\"DL\",\"1974\",\"MIA\",\"LGA\",-6.00,1.00,0.00,\"\",0.00,190.00,152.00,1096.00,,,,,,\n2015,5,14,\"DL\",\"1982\",\"LGA\",\"MIA\",15.00,16.00,0.00,\"\",0.00,197.00,156.00,1096.00,15.00,0.00,1.00,0.00,0.00,\n2015,5,14,\"DL\",\"1985\",\"ALB\",\"DTW\",-6.00,-9.00,0.00,\"\",0.00,98.00,74.00,489.00,,,,,,\n2015,5,14,\"DL\",\"1986\",\"ATL\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,141.00,103.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1994\",\"PHX\",\"JFK\",25.00,19.00,0.00,\"\",0.00,286.00,252.00,2153.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"DL\",\"1996\",\"MSP\",\"LGA\",-7.00,11.00,0.00,\"\",0.00,180.00,126.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"2003\",\"LGA\",\"MIA\",-7.00,12.00,0.00,\"\",0.00,206.00,154.00,1096.00,,,,,,\n2015,5,14,\"DL\",\"2013\",\"ATL\",\"SYR\",-1.00,-20.00,0.00,\"\",0.00,116.00,99.00,794.00,,,,,,\n2015,5,14,\"DL\",\"2014\",\"SYR\",\"ATL\",-5.00,-14.00,0.00,\"\",0.00,130.00,108.00,794.00,,,,,,\n2015,5,14,\"DL\",\"2016\",\"LGA\",\"ATL\",17.00,25.00,0.00,\"\",0.00,161.00,105.00,762.00,0.00,0.00,8.00,0.00,17.00,\n2015,5,14,\"DL\",\"2022\",\"LGA\",\"FLL\",11.00,-10.00,0.00,\"\",0.00,171.00,146.00,1076.00,,,,,,\n2015,5,14,\"DL\",\"2028\",\"FLL\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,169.00,146.00,1076.00,,,,,,\n2015,5,14,\"DL\",\"2032\",\"MSP\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,149.00,126.00,1029.00,,,,,,\n2015,5,14,\"DL\",\"2037\",\"MCO\",\"LGA\",3.00,-1.00,0.00,\"\",0.00,153.00,135.00,950.00,,,,,,\n2015,5,14,\"DL\",\"2040\",\"SFO\",\"JFK\",17.00,-5.00,0.00,\"\",0.00,319.00,300.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"2043\",\"JFK\",\"PHX\",-3.00,-21.00,0.00,\"\",0.00,323.00,287.00,2153.00,,,,,,\n2015,5,14,\"DL\",\"2044\",\"JFK\",\"BOS\",75.00,43.00,0.00,\"\",0.00,69.00,35.00,187.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,14,\"DL\",\"2056\",\"JFK\",\"ATL\",-1.00,-10.00,0.00,\"\",0.00,158.00,104.00,760.00,,,,,,\n2015,5,14,\"DL\",\"2058\",\"MCO\",\"JFK\",-5.00,-1.00,0.00,\"\",0.00,159.00,134.00,944.00,,,,,,\n2015,5,14,\"DL\",\"2074\",\"LGA\",\"ATL\",-1.00,7.00,0.00,\"\",0.00,166.00,106.00,762.00,,,,,,\n2015,5,14,\"DL\",\"2077\",\"LGA\",\"MCO\",-1.00,-14.00,0.00,\"\",0.00,163.00,130.00,950.00,,,,,,\n2015,5,14,\"DL\",\"2086\",\"ATL\",\"LGA\",0.00,17.00,0.00,\"\",0.00,161.00,102.00,762.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,14,\"DL\",\"2096\",\"LGA\",\"MSP\",-1.00,-17.00,0.00,\"\",0.00,166.00,147.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"2104\",\"JFK\",\"SLC\",-4.00,-37.00,0.00,\"\",0.00,296.00,270.00,1990.00,,,,,,\n2015,5,14,\"DL\",\"2119\",\"LGA\",\"MSP\",25.00,42.00,0.00,\"\",0.00,202.00,161.00,1020.00,25.00,0.00,17.00,0.00,0.00,\n2015,5,14,\"DL\",\"2129\",\"ROC\",\"ATL\",2.00,-9.00,0.00,\"\",0.00,118.00,102.00,749.00,,,,,,\n2015,5,14,\"DL\",\"2131\",\"LGA\",\"DTW\",-1.00,-1.00,0.00,\"\",0.00,119.00,83.00,502.00,,,,,,\n2015,5,14,\"DL\",\"2135\",\"TPA\",\"LGA\",-4.00,7.00,0.00,\"\",0.00,175.00,160.00,1010.00,,,,,,\n2015,5,14,\"DL\",\"2148\",\"LGA\",\"DTW\",-3.00,7.00,0.00,\"\",0.00,138.00,86.00,502.00,,,,,,\n2015,5,14,\"DL\",\"2150\",\"LGA\",\"DTW\",-4.00,-3.00,0.00,\"\",0.00,127.00,85.00,502.00,,,,,,\n2015,5,14,\"DL\",\"2151\",\"MIA\",\"LGA\",-6.00,13.00,0.00,\"\",0.00,205.00,177.00,1096.00,,,,,,\n2015,5,14,\"DL\",\"2155\",\"LAS\",\"JFK\",4.00,-18.00,0.00,\"\",0.00,281.00,259.00,2248.00,,,,,,\n2015,5,14,\"DL\",\"2156\",\"ATL\",\"SYR\",-3.00,-13.00,0.00,\"\",0.00,120.00,106.00,794.00,,,,,,\n2015,5,14,\"DL\",\"2156\",\"SYR\",\"ATL\",-3.00,-16.00,0.00,\"\",0.00,130.00,111.00,794.00,,,,,,\n2015,5,14,\"DL\",\"2166\",\"SYR\",\"DTW\",-7.00,-22.00,0.00,\"\",0.00,78.00,57.00,374.00,,,,,,\n2015,5,14,\"DL\",\"2174\",\"DTW\",\"JFK\",5.00,-16.00,0.00,\"\",0.00,100.00,78.00,509.00,,,,,,\n2015,5,14,\"DL\",\"2175\",\"JFK\",\"PHX\",5.00,10.00,0.00,\"\",0.00,338.00,280.00,2153.00,,,,,,\n2015,5,14,\"DL\",\"2178\",\"LGA\",\"TPA\",-1.00,-20.00,0.00,\"\",0.00,162.00,138.00,1010.00,,,,,,\n2015,5,14,\"DL\",\"2181\",\"LGA\",\"MCO\",-5.00,-27.00,0.00,\"\",0.00,148.00,126.00,950.00,,,,,,\n2015,5,14,\"DL\",\"2185\",\"FLL\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,170.00,148.00,1069.00,,,,,,\n2015,5,14,\"DL\",\"2186\",\"ATL\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,125.00,102.00,762.00,,,,,,\n2015,5,14,\"DL\",\"2190\",\"JFK\",\"MIA\",-7.00,-23.00,0.00,\"\",0.00,186.00,150.00,1089.00,,,,,,\n2015,5,14,\"DL\",\"2214\",\"ATL\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,125.00,103.00,762.00,,,,,,\n2015,5,14,\"DL\",\"2217\",\"JFK\",\"BOS\",-6.00,-29.00,0.00,\"\",0.00,69.00,41.00,187.00,,,,,,\n2015,5,14,\"DL\",\"2230\",\"CHS\",\"JFK\",-2.00,0.00,0.00,\"\",0.00,131.00,92.00,636.00,,,,,,\n2015,5,14,\"DL\",\"2231\",\"DTW\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,99.00,76.00,502.00,,,,,,\n2015,5,14,\"DL\",\"2240\",\"SFO\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,330.00,302.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"2248\",\"DTW\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,99.00,79.00,502.00,,,,,,\n2015,5,14,\"DL\",\"2262\",\"LAX\",\"JFK\",11.00,2.00,0.00,\"\",0.00,325.00,286.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"2263\",\"JFK\",\"MIA\",-6.00,-21.00,0.00,\"\",0.00,195.00,142.00,1089.00,,,,,,\n2015,5,14,\"DL\",\"2270\",\"LGA\",\"RSW\",-5.00,-9.00,0.00,\"\",0.00,192.00,152.00,1080.00,,,,,,\n2015,5,14,\"DL\",\"2276\",\"MCO\",\"JFK\",4.00,-11.00,0.00,\"\",0.00,152.00,132.00,944.00,,,,,,\n2015,5,14,\"DL\",\"2277\",\"JFK\",\"TPA\",-4.00,-40.00,0.00,\"\",0.00,157.00,134.00,1005.00,,,,,,\n2015,5,14,\"DL\",\"2280\",\"LGA\",\"TPA\",-6.00,7.00,0.00,\"\",0.00,187.00,138.00,1010.00,,,,,,\n2015,5,14,\"DL\",\"2282\",\"LGA\",\"MCO\",0.00,-13.00,0.00,\"\",0.00,163.00,127.00,950.00,,,,,,\n2015,5,14,\"DL\",\"2285\",\"LGA\",\"MCO\",-2.00,-1.00,0.00,\"\",0.00,164.00,127.00,950.00,,,,,,\n2015,5,14,\"DL\",\"2292\",\"JFK\",\"PBI\",-4.00,-39.00,0.00,\"\",0.00,152.00,128.00,1028.00,,,,,,\n2015,5,14,\"DL\",\"2296\",\"MSP\",\"LGA\",4.00,-6.00,0.00,\"\",0.00,159.00,133.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"2301\",\"JFK\",\"SAT\",23.00,1.00,0.00,\"\",0.00,250.00,221.00,1587.00,,,,,,\n2015,5,14,\"DL\",\"2311\",\"JFK\",\"MIA\",-7.00,-25.00,0.00,\"\",0.00,188.00,140.00,1089.00,,,,,,\n2015,5,14,\"DL\",\"2312\",\"JFK\",\"DTW\",-4.00,-30.00,0.00,\"\",0.00,114.00,88.00,509.00,,,,,,\n2015,5,14,\"DL\",\"2317\",\"PBI\",\"LGA\",296.00,281.00,0.00,\"\",0.00,158.00,141.00,1035.00,281.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"DL\",\"2319\",\"LGA\",\"MSP\",-5.00,3.00,0.00,\"\",0.00,203.00,152.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"2331\",\"LGA\",\"DTW\",-2.00,-24.00,0.00,\"\",0.00,102.00,75.00,502.00,,,,,,\n2015,5,14,\"DL\",\"2340\",\"JFK\",\"MCO\",-6.00,-23.00,0.00,\"\",0.00,173.00,130.00,944.00,,,,,,\n2015,5,14,\"DL\",\"2349\",\"DTW\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,104.00,77.00,502.00,,,,,,\n2015,5,14,\"DL\",\"2350\",\"ATL\",\"JFK\",0.00,2.00,0.00,\"\",0.00,137.00,104.00,760.00,,,,,,\n2015,5,14,\"DL\",\"2352\",\"LAS\",\"JFK\",8.00,-16.00,0.00,\"\",0.00,289.00,269.00,2248.00,,,,,,\n2015,5,14,\"DL\",\"2362\",\"LAX\",\"JFK\",2.00,-16.00,0.00,\"\",0.00,312.00,281.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"2382\",\"JFK\",\"FLL\",8.00,-14.00,0.00,\"\",0.00,179.00,141.00,1069.00,,,,,,\n2015,5,14,\"DL\",\"2386\",\"ATL\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,130.00,100.00,762.00,,,,,,\n2015,5,14,\"DL\",\"2390\",\"JFK\",\"ATL\",-1.00,-29.00,0.00,\"\",0.00,144.00,111.00,760.00,,,,,,\n2015,5,14,\"DL\",\"2395\",\"LGA\",\"PBI\",-1.00,-10.00,0.00,\"\",0.00,171.00,134.00,1035.00,,,,,,\n2015,5,14,\"DL\",\"2400\",\"JFK\",\"SAN\",6.00,-11.00,0.00,\"\",0.00,356.00,325.00,2446.00,,,,,,\n2015,5,14,\"DL\",\"2404\",\"SAN\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,311.00,279.00,2446.00,,,,,,\n2015,5,14,\"DL\",\"2405\",\"PHX\",\"JFK\",18.00,3.00,0.00,\"\",0.00,282.00,255.00,2153.00,,,,,,\n2015,5,14,\"DL\",\"2406\",\"TPA\",\"LGA\",-6.00,2.00,0.00,\"\",0.00,166.00,142.00,1010.00,,,,,,\n2015,5,14,\"DL\",\"2413\",\"MIA\",\"LGA\",19.00,10.00,0.00,\"\",0.00,175.00,150.00,1096.00,,,,,,\n2015,5,14,\"DL\",\"2432\",\"DTW\",\"SYR\",-3.00,-5.00,0.00,\"\",0.00,77.00,56.00,374.00,,,,,,\n2015,5,14,\"DL\",\"2435\",\"JFK\",\"FLL\",-7.00,-50.00,0.00,\"\",0.00,160.00,141.00,1069.00,,,,,,\n2015,5,14,\"DL\",\"2447\",\"DEN\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,226.00,206.00,1626.00,,,,,,\n2015,5,14,\"DL\",\"2450\",\"MCO\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,151.00,129.00,950.00,,,,,,\n2015,5,14,\"DL\",\"2464\",\"TPA\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,159.00,137.00,1005.00,,,,,,\n2015,5,14,\"DL\",\"2466\",\"ATL\",\"SYR\",8.00,-8.00,0.00,\"\",0.00,121.00,103.00,794.00,,,,,,\n2015,5,14,\"DL\",\"2466\",\"SYR\",\"ATL\",1.00,-21.00,0.00,\"\",0.00,128.00,111.00,794.00,,,,,,\n2015,5,14,\"DL\",\"2473\",\"ATL\",\"BUF\",20.00,8.00,0.00,\"\",0.00,116.00,88.00,712.00,,,,,,\n2015,5,14,\"DL\",\"2474\",\"JFK\",\"DEN\",24.00,30.00,0.00,\"\",0.00,290.00,251.00,1626.00,10.00,0.00,6.00,0.00,14.00,\n2015,5,14,\"DL\",\"2480\",\"JFK\",\"TPA\",-8.00,-12.00,0.00,\"\",0.00,182.00,133.00,1005.00,,,,,,\n2015,5,14,\"DL\",\"2495\",\"MIA\",\"JFK\",12.00,5.00,0.00,\"\",0.00,181.00,142.00,1089.00,,,,,,\n2015,5,14,\"DL\",\"2496\",\"ATL\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,135.00,108.00,762.00,,,,,,\n2015,5,14,\"DL\",\"2498\",\"FLL\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,169.00,140.00,1076.00,,,,,,\n2015,5,14,\"DL\",\"2502\",\"FLL\",\"LGA\",4.00,-4.00,0.00,\"\",0.00,173.00,148.00,1076.00,,,,,,\n2015,5,14,\"DL\",\"2521\",\"SFO\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,325.00,302.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"2542\",\"JFK\",\"AUS\",-7.00,-9.00,0.00,\"\",0.00,260.00,207.00,1521.00,,,,,,\n2015,5,1,\"B6\",\"1\",\"JFK\",\"FLL\",-1.00,-4.00,0.00,\"\",0.00,186.00,149.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"1\",\"JFK\",\"FLL\",25.00,4.00,0.00,\"\",0.00,168.00,142.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"1\",\"JFK\",\"FLL\",-2.00,-10.00,0.00,\"\",0.00,181.00,144.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"1\",\"JFK\",\"FLL\",30.00,15.00,0.00,\"\",0.00,174.00,151.00,1069.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"B6\",\"1\",\"JFK\",\"FLL\",-5.00,-14.00,0.00,\"\",0.00,180.00,155.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"1\",\"JFK\",\"FLL\",0.00,4.00,0.00,\"\",0.00,193.00,161.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"1\",\"JFK\",\"FLL\",13.00,-1.00,0.00,\"\",0.00,175.00,142.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"1\",\"JFK\",\"FLL\",23.00,3.00,0.00,\"\",0.00,169.00,136.00,1069.00,,,,,,\n2015,5,9,\"B6\",\"1\",\"JFK\",\"FLL\",16.00,14.00,0.00,\"\",0.00,187.00,146.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"1\",\"JFK\",\"FLL\",-3.00,-13.00,0.00,\"\",0.00,179.00,153.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"1\",\"JFK\",\"FLL\",-4.00,-10.00,0.00,\"\",0.00,183.00,155.00,1069.00,,,,,,\n2015,5,12,\"B6\",\"1\",\"JFK\",\"FLL\",-4.00,-7.00,0.00,\"\",0.00,186.00,139.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"1\",\"JFK\",\"FLL\",-5.00,-6.00,0.00,\"\",0.00,188.00,150.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"1\",\"JFK\",\"FLL\",19.00,0.00,0.00,\"\",0.00,170.00,139.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"1\",\"JFK\",\"FLL\",35.00,22.00,0.00,\"\",0.00,176.00,142.00,1069.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"B6\",\"1\",\"JFK\",\"FLL\",8.00,7.00,0.00,\"\",0.00,188.00,138.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"1\",\"JFK\",\"FLL\",7.00,-16.00,0.00,\"\",0.00,166.00,140.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"1\",\"JFK\",\"FLL\",-8.00,-16.00,0.00,\"\",0.00,181.00,137.00,1069.00,,,,,,\n2015,5,19,\"B6\",\"1\",\"JFK\",\"FLL\",11.00,-2.00,0.00,\"\",0.00,176.00,141.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"1\",\"JFK\",\"FLL\",-3.00,-18.00,0.00,\"\",0.00,174.00,142.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"1\",\"JFK\",\"FLL\",2.00,-7.00,0.00,\"\",0.00,180.00,156.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"1\",\"JFK\",\"FLL\",-6.00,-15.00,0.00,\"\",0.00,180.00,145.00,1069.00,,,,,,\n2015,5,23,\"B6\",\"1\",\"JFK\",\"FLL\",26.00,4.00,0.00,\"\",0.00,167.00,141.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"1\",\"JFK\",\"FLL\",13.00,-17.00,0.00,\"\",0.00,159.00,141.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"1\",\"JFK\",\"FLL\",-1.00,-24.00,0.00,\"\",0.00,166.00,144.00,1069.00,,,,,,\n2015,5,26,\"B6\",\"1\",\"JFK\",\"FLL\",-5.00,-31.00,0.00,\"\",0.00,163.00,140.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"1\",\"JFK\",\"FLL\",-4.00,-18.00,0.00,\"\",0.00,175.00,141.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"1\",\"JFK\",\"FLL\",0.00,-7.00,0.00,\"\",0.00,182.00,142.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"1\",\"JFK\",\"FLL\",-5.00,-17.00,0.00,\"\",0.00,177.00,137.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"1\",\"JFK\",\"FLL\",1.00,-20.00,0.00,\"\",0.00,168.00,138.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"1\",\"JFK\",\"FLL\",5.00,-20.00,0.00,\"\",0.00,164.00,138.00,1069.00,,,,,,\n2015,5,1,\"B6\",\"2\",\"FLL\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,151.00,134.00,1069.00,,,,,,\n2015,5,2,\"B6\",\"2\",\"FLL\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,154.00,130.00,1069.00,,,,,,\n2015,5,3,\"B6\",\"2\",\"FLL\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,158.00,139.00,1069.00,,,,,,\n2015,5,4,\"B6\",\"2\",\"FLL\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,154.00,133.00,1069.00,,,,,,\n2015,5,5,\"B6\",\"2\",\"FLL\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,158.00,143.00,1069.00,,,,,,\n2015,5,6,\"B6\",\"2\",\"FLL\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,161.00,134.00,1069.00,,,,,,\n2015,5,7,\"B6\",\"2\",\"FLL\",\"JFK\",18.00,1.00,0.00,\"\",0.00,154.00,139.00,1069.00,,,,,,\n2015,5,8,\"B6\",\"2\",\"FLL\",\"JFK\",-6.00,-2.00,0.00,\"\",0.00,175.00,154.00,1069.00,,,,,,\n2015,5,9,\"B6\",\"2\",\"FLL\",\"JFK\",-4.00,-6.00,0.00,\"\",0.00,169.00,151.00,1069.00,,,,,,\n2015,5,10,\"B6\",\"2\",\"FLL\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,165.00,150.00,1069.00,,,,,,\n2015,5,11,\"B6\",\"2\",\"FLL\",\"JFK\",-8.00,-13.00,0.00,\"\",0.00,166.00,143.00,1069.00,,,,,,\n2015,5,12,\"B6\",\"2\",\"FLL\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,167.00,144.00,1069.00,,,,,,\n2015,5,13,\"B6\",\"2\",\"FLL\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,163.00,138.00,1069.00,,,,,,\n2015,5,14,\"B6\",\"2\",\"FLL\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,164.00,148.00,1069.00,,,,,,\n2015,5,15,\"B6\",\"2\",\"FLL\",\"JFK\",2.00,-16.00,0.00,\"\",0.00,153.00,136.00,1069.00,,,,,,\n2015,5,16,\"B6\",\"2\",\"FLL\",\"JFK\",4.00,14.00,0.00,\"\",0.00,181.00,144.00,1069.00,,,,,,\n2015,5,17,\"B6\",\"2\",\"FLL\",\"JFK\",-4.00,-1.00,0.00,\"\",0.00,174.00,146.00,1069.00,,,,,,\n2015,5,18,\"B6\",\"2\",\"FLL\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,165.00,147.00,1069.00,,,,,,\n2015,5,19,\"B6\",\"2\",\"FLL\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,162.00,141.00,1069.00,,,,,,\n2015,5,20,\"B6\",\"2\",\"FLL\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,162.00,141.00,1069.00,,,,,,\n2015,5,21,\"B6\",\"2\",\"FLL\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,154.00,134.00,1069.00,,,,,,\n2015,5,22,\"B6\",\"2\",\"FLL\",\"JFK\",5.00,-10.00,0.00,\"\",0.00,156.00,135.00,1069.00,,,,,,\n2015,5,23,\"B6\",\"2\",\"FLL\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,157.00,139.00,1069.00,,,,,,\n2015,5,24,\"B6\",\"2\",\"FLL\",\"JFK\",-1.00,-9.00,0.00,\"\",0.00,163.00,144.00,1069.00,,,,,,\n2015,5,25,\"B6\",\"2\",\"FLL\",\"JFK\",71.00,58.00,0.00,\"\",0.00,158.00,134.00,1069.00,58.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"B6\",\"2\",\"FLL\",\"JFK\",15.00,-4.00,0.00,\"\",0.00,152.00,133.00,1069.00,,,,,,\n2015,5,27,\"B6\",\"2\",\"FLL\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,154.00,136.00,1069.00,,,,,,\n2015,5,28,\"B6\",\"2\",\"FLL\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,155.00,134.00,1069.00,,,,,,\n2015,5,29,\"B6\",\"2\",\"FLL\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,161.00,142.00,1069.00,,,,,,\n2015,5,30,\"B6\",\"2\",\"FLL\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,158.00,142.00,1069.00,,,,,,\n2015,5,31,\"B6\",\"2\",\"FLL\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,159.00,142.00,1069.00,,,,,,\n2015,5,1,\"B6\",\"3\",\"JFK\",\"SJU\",-3.00,-13.00,0.00,\"\",0.00,222.00,197.00,1598.00,,,,,,\n2015,5,2,\"B6\",\"3\",\"JFK\",\"SJU\",-3.00,-1.00,0.00,\"\",0.00,234.00,207.00,1598.00,,,,,,\n2015,5,3,\"B6\",\"3\",\"JFK\",\"SJU\",-6.00,4.00,0.00,\"\",0.00,242.00,207.00,1598.00,,,,,,\n2015,5,4,\"B6\",\"3\",\"JFK\",\"SJU\",-2.00,-5.00,0.00,\"\",0.00,229.00,203.00,1598.00,,,,,,\n2015,5,5,\"B6\",\"3\",\"JFK\",\"SJU\",7.00,17.00,0.00,\"\",0.00,242.00,209.00,1598.00,7.00,0.00,10.00,0.00,0.00,\n2015,5,6,\"B6\",\"3\",\"JFK\",\"SJU\",-5.00,-1.00,0.00,\"\",0.00,236.00,203.00,1598.00,,,,,,\n2015,5,7,\"B6\",\"3\",\"JFK\",\"SJU\",-9.00,3.00,0.00,\"\",0.00,244.00,200.00,1598.00,,,,,,\n2015,5,8,\"B6\",\"3\",\"JFK\",\"SJU\",-4.00,2.00,0.00,\"\",0.00,238.00,204.00,1598.00,,,,,,\n2015,5,9,\"B6\",\"3\",\"JFK\",\"SJU\",-5.00,-11.00,0.00,\"\",0.00,226.00,199.00,1598.00,,,,,,\n2015,5,10,\"B6\",\"3\",\"JFK\",\"SJU\",-5.00,-13.00,0.00,\"\",0.00,224.00,201.00,1598.00,,,,,,\n2015,5,11,\"B6\",\"3\",\"JFK\",\"SJU\",0.00,1.00,0.00,\"\",0.00,233.00,204.00,1598.00,,,,,,\n2015,5,12,\"B6\",\"3\",\"JFK\",\"SJU\",-6.00,20.00,0.00,\"\",0.00,258.00,204.00,1598.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,13,\"B6\",\"3\",\"JFK\",\"SJU\",-7.00,-22.00,0.00,\"\",0.00,217.00,196.00,1598.00,,,,,,\n2015,5,14,\"B6\",\"3\",\"JFK\",\"SJU\",-5.00,-34.00,0.00,\"\",0.00,203.00,178.00,1598.00,,,,,,\n2015,5,15,\"B6\",\"3\",\"JFK\",\"SJU\",-7.00,-23.00,0.00,\"\",0.00,216.00,187.00,1598.00,,,,,,\n2015,5,16,\"B6\",\"3\",\"JFK\",\"SJU\",11.00,12.00,0.00,\"\",0.00,233.00,191.00,1598.00,,,,,,\n2015,5,17,\"B6\",\"3\",\"JFK\",\"SJU\",-3.00,-24.00,0.00,\"\",0.00,211.00,187.00,1598.00,,,,,,\n2015,5,18,\"B6\",\"3\",\"JFK\",\"SJU\",-7.00,-19.00,0.00,\"\",0.00,220.00,189.00,1598.00,,,,,,\n2015,5,19,\"B6\",\"3\",\"JFK\",\"SJU\",-7.00,-16.00,0.00,\"\",0.00,223.00,193.00,1598.00,,,,,,\n2015,5,20,\"B6\",\"3\",\"JFK\",\"SJU\",-3.00,-13.00,0.00,\"\",0.00,222.00,193.00,1598.00,,,,,,\n2015,5,21,\"B6\",\"3\",\"JFK\",\"SJU\",9.00,7.00,0.00,\"\",0.00,230.00,197.00,1598.00,,,,,,\n2015,5,22,\"B6\",\"3\",\"JFK\",\"SJU\",51.00,35.00,0.00,\"\",0.00,216.00,196.00,1598.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"B6\",\"3\",\"JFK\",\"SJU\",-6.00,-19.00,0.00,\"\",0.00,219.00,196.00,1598.00,,,,,,\n2015,5,24,\"B6\",\"3\",\"JFK\",\"SJU\",-8.00,-34.00,0.00,\"\",0.00,206.00,186.00,1598.00,,,,,,\n2015,5,25,\"B6\",\"3\",\"JFK\",\"SJU\",-11.00,-36.00,0.00,\"\",0.00,207.00,185.00,1598.00,,,,,,\n2015,5,26,\"B6\",\"3\",\"JFK\",\"SJU\",-10.00,-20.00,0.00,\"\",0.00,222.00,187.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"3\",\"JFK\",\"SJU\",-3.00,-19.00,0.00,\"\",0.00,216.00,188.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"3\",\"JFK\",\"SJU\",-7.00,-19.00,0.00,\"\",0.00,220.00,197.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"3\",\"JFK\",\"SJU\",-3.00,-14.00,0.00,\"\",0.00,221.00,195.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"3\",\"JFK\",\"SJU\",0.00,-13.00,0.00,\"\",0.00,219.00,193.00,1598.00,,,,,,\n2015,5,31,\"B6\",\"3\",\"JFK\",\"SJU\",-6.00,-4.00,0.00,\"\",0.00,234.00,204.00,1598.00,,,,,,\n2015,5,1,\"B6\",\"4\",\"SJU\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,216.00,202.00,1598.00,,,,,,\n2015,5,2,\"B6\",\"4\",\"SJU\",\"JFK\",-1.00,-30.00,0.00,\"\",0.00,213.00,197.00,1598.00,,,,,,\n2015,5,3,\"B6\",\"4\",\"SJU\",\"JFK\",0.00,-28.00,0.00,\"\",0.00,214.00,199.00,1598.00,,,,,,\n2015,5,4,\"B6\",\"4\",\"SJU\",\"JFK\",24.00,-6.00,0.00,\"\",0.00,212.00,195.00,1598.00,,,,,,\n2015,5,5,\"B6\",\"4\",\"SJU\",\"JFK\",37.00,15.00,0.00,\"\",0.00,223.00,203.00,1598.00,7.00,0.00,0.00,0.00,8.00,\n2015,5,6,\"B6\",\"4\",\"SJU\",\"JFK\",-8.00,-39.00,0.00,\"\",0.00,214.00,196.00,1598.00,,,,,,\n2015,5,7,\"B6\",\"4\",\"SJU\",\"JFK\",1.00,-8.00,0.00,\"\",0.00,233.00,206.00,1598.00,,,,,,\n2015,5,8,\"B6\",\"4\",\"SJU\",\"JFK\",38.00,0.00,0.00,\"\",0.00,204.00,191.00,1598.00,,,,,,\n2015,5,9,\"B6\",\"4\",\"SJU\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,222.00,199.00,1598.00,,,,,,\n2015,5,10,\"B6\",\"4\",\"SJU\",\"JFK\",-9.00,-36.00,0.00,\"\",0.00,215.00,201.00,1598.00,,,,,,\n2015,5,11,\"B6\",\"4\",\"SJU\",\"JFK\",-6.00,-32.00,0.00,\"\",0.00,216.00,203.00,1598.00,,,,,,\n2015,5,12,\"B6\",\"4\",\"SJU\",\"JFK\",10.00,-3.00,0.00,\"\",0.00,232.00,215.00,1598.00,,,,,,\n2015,5,13,\"B6\",\"4\",\"SJU\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,223.00,212.00,1598.00,,,,,,\n2015,5,14,\"B6\",\"4\",\"SJU\",\"JFK\",98.00,97.00,0.00,\"\",0.00,241.00,226.00,1598.00,2.00,0.00,0.00,0.00,95.00,\n2015,5,15,\"B6\",\"4\",\"SJU\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,221.00,209.00,1598.00,,,,,,\n2015,5,16,\"B6\",\"4\",\"SJU\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,236.00,223.00,1598.00,,,,,,\n2015,5,17,\"B6\",\"4\",\"SJU\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,231.00,216.00,1598.00,,,,,,\n2015,5,18,\"B6\",\"4\",\"SJU\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,231.00,216.00,1598.00,,,,,,\n2015,5,19,\"B6\",\"4\",\"SJU\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,232.00,212.00,1598.00,,,,,,\n2015,5,20,\"B6\",\"4\",\"SJU\",\"JFK\",-5.00,-28.00,0.00,\"\",0.00,222.00,206.00,1598.00,,,,,,\n2015,5,21,\"B6\",\"4\",\"SJU\",\"JFK\",-6.00,-32.00,0.00,\"\",0.00,216.00,203.00,1598.00,,,,,,\n2015,5,22,\"B6\",\"4\",\"SJU\",\"JFK\",9.00,-11.00,0.00,\"\",0.00,222.00,207.00,1598.00,,,,,,\n2015,5,23,\"B6\",\"4\",\"SJU\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,225.00,210.00,1598.00,,,,,,\n2015,5,24,\"B6\",\"4\",\"SJU\",\"JFK\",-2.00,-4.00,0.00,\"\",0.00,240.00,221.00,1598.00,,,,,,\n2015,5,25,\"B6\",\"4\",\"SJU\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,227.00,213.00,1598.00,,,,,,\n2015,5,26,\"B6\",\"4\",\"SJU\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,225.00,209.00,1598.00,,,,,,\n2015,5,27,\"B6\",\"4\",\"SJU\",\"JFK\",-2.00,-31.00,0.00,\"\",0.00,216.00,204.00,1598.00,,,,,,\n2015,5,28,\"B6\",\"4\",\"SJU\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,223.00,205.00,1598.00,,,,,,\n2015,5,29,\"B6\",\"4\",\"SJU\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,223.00,210.00,1598.00,,,,,,\n2015,5,30,\"B6\",\"4\",\"SJU\",\"JFK\",-7.00,-35.00,0.00,\"\",0.00,214.00,198.00,1598.00,,,,,,\n2015,5,31,\"B6\",\"4\",\"SJU\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,223.00,203.00,1598.00,,,,,,\n2015,5,1,\"B6\",\"14\",\"LGB\",\"JFK\",-6.00,2.00,0.00,\"\",0.00,327.00,307.00,2465.00,,,,,,\n2015,5,3,\"B6\",\"14\",\"LGB\",\"JFK\",70.00,76.00,0.00,\"\",0.00,325.00,304.00,2465.00,7.00,0.00,6.00,0.00,63.00,\n2015,5,4,\"B6\",\"14\",\"LGB\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,308.00,293.00,2465.00,,,,,,\n2015,5,5,\"B6\",\"14\",\"LGB\",\"JFK\",-7.00,-9.00,0.00,\"\",0.00,317.00,299.00,2465.00,,,,,,\n2015,5,6,\"B6\",\"14\",\"LGB\",\"JFK\",-5.00,-1.00,0.00,\"\",0.00,323.00,302.00,2465.00,,,,,,\n2015,5,7,\"B6\",\"14\",\"LGB\",\"JFK\",15.00,,0.00,\"\",1.00,,,2465.00,,,,,,\n2015,5,8,\"B6\",\"14\",\"LGB\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,310.00,293.00,2465.00,,,,,,\n2015,5,10,\"B6\",\"14\",\"LGB\",\"JFK\",-7.00,4.00,0.00,\"\",0.00,330.00,308.00,2465.00,,,,,,\n2015,5,11,\"B6\",\"14\",\"LGB\",\"JFK\",7.00,-13.00,0.00,\"\",0.00,299.00,277.00,2465.00,,,,,,\n2015,5,12,\"B6\",\"14\",\"LGB\",\"JFK\",-10.00,-32.00,0.00,\"\",0.00,297.00,274.00,2465.00,,,,,,\n2015,5,13,\"B6\",\"14\",\"LGB\",\"JFK\",3.00,-12.00,0.00,\"\",0.00,304.00,288.00,2465.00,,,,,,\n2015,5,14,\"B6\",\"14\",\"LGB\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,301.00,280.00,2465.00,,,,,,\n2015,5,15,\"B6\",\"14\",\"LGB\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,308.00,294.00,2465.00,,,,,,\n2015,5,16,\"B6\",\"14\",\"LGB\",\"JFK\",2.00,-5.00,0.00,\"\",0.00,312.00,296.00,2465.00,,,,,,\n2015,5,17,\"B6\",\"14\",\"LGB\",\"JFK\",20.00,6.00,0.00,\"\",0.00,305.00,286.00,2465.00,,,,,,\n2015,5,18,\"B6\",\"14\",\"LGB\",\"JFK\",74.00,66.00,0.00,\"\",0.00,311.00,298.00,2465.00,66.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"B6\",\"14\",\"LGB\",\"JFK\",79.00,46.00,0.00,\"\",0.00,286.00,272.00,2465.00,0.00,0.00,0.00,0.00,46.00,\n2015,5,20,\"B6\",\"14\",\"LGB\",\"JFK\",-4.00,-38.00,0.00,\"\",0.00,285.00,268.00,2465.00,,,,,,\n2015,5,21,\"B6\",\"14\",\"LGB\",\"JFK\",24.00,16.00,0.00,\"\",0.00,311.00,294.00,2465.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,22,\"B6\",\"14\",\"LGB\",\"JFK\",4.00,-17.00,0.00,\"\",0.00,298.00,278.00,2465.00,,,,,,\n2015,5,23,\"B6\",\"14\",\"LGB\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,295.00,282.00,2465.00,,,,,,\n2015,5,24,\"B6\",\"14\",\"LGB\",\"JFK\",35.00,36.00,0.00,\"\",0.00,320.00,302.00,2465.00,35.00,0.00,1.00,0.00,0.00,\n2015,5,25,\"B6\",\"14\",\"LGB\",\"JFK\",2.00,-10.00,0.00,\"\",0.00,307.00,297.00,2465.00,,,,,,\n2015,5,26,\"B6\",\"14\",\"LGB\",\"JFK\",4.00,8.00,0.00,\"\",0.00,323.00,301.00,2465.00,,,,,,\n2015,5,27,\"B6\",\"14\",\"LGB\",\"JFK\",1.00,3.00,0.00,\"\",0.00,321.00,295.00,2465.00,,,,,,\n2015,5,28,\"B6\",\"14\",\"LGB\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,310.00,295.00,2465.00,,,,,,\n2015,5,29,\"B6\",\"14\",\"LGB\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,312.00,296.00,2465.00,,,,,,\n2015,5,30,\"B6\",\"14\",\"LGB\",\"JFK\",-4.00,0.00,0.00,\"\",0.00,323.00,305.00,2465.00,,,,,,\n2015,5,31,\"B6\",\"14\",\"LGB\",\"JFK\",-7.00,14.00,0.00,\"\",0.00,340.00,310.00,2465.00,,,,,,\n2015,5,1,\"B6\",\"15\",\"JFK\",\"SFO\",-3.00,-21.00,0.00,\"\",0.00,366.00,333.00,2586.00,,,,,,\n2015,5,2,\"B6\",\"15\",\"JFK\",\"SFO\",-2.00,-6.00,0.00,\"\",0.00,380.00,347.00,2586.00,,,,,,\n2015,5,3,\"B6\",\"15\",\"JFK\",\"SFO\",-8.00,-25.00,0.00,\"\",0.00,367.00,343.00,2586.00,,,,,,\n2015,5,4,\"B6\",\"15\",\"JFK\",\"SFO\",-1.00,-13.00,0.00,\"\",0.00,372.00,345.00,2586.00,,,,,,\n2015,5,5,\"B6\",\"15\",\"JFK\",\"SFO\",-6.00,-26.00,0.00,\"\",0.00,364.00,328.00,2586.00,,,,,,\n2015,5,6,\"B6\",\"15\",\"JFK\",\"SFO\",-5.00,-33.00,0.00,\"\",0.00,356.00,333.00,2586.00,,,,,,\n2015,5,7,\"B6\",\"15\",\"JFK\",\"SFO\",-1.00,-30.00,0.00,\"\",0.00,355.00,326.00,2586.00,,,,,,\n2015,5,8,\"B6\",\"15\",\"JFK\",\"SFO\",-8.00,22.00,0.00,\"\",0.00,414.00,369.00,2586.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,9,\"B6\",\"15\",\"JFK\",\"SFO\",-3.00,-14.00,0.00,\"\",0.00,373.00,347.00,2586.00,,,,,,\n2015,5,10,\"B6\",\"15\",\"JFK\",\"SFO\",-5.00,-23.00,0.00,\"\",0.00,366.00,344.00,2586.00,,,,,,\n2015,5,11,\"B6\",\"15\",\"JFK\",\"SFO\",-4.00,0.00,0.00,\"\",0.00,388.00,365.00,2586.00,,,,,,\n2015,5,12,\"B6\",\"15\",\"JFK\",\"SFO\",-4.00,4.00,0.00,\"\",0.00,392.00,366.00,2586.00,,,,,,\n2015,5,13,\"B6\",\"15\",\"JFK\",\"SFO\",-5.00,-3.00,0.00,\"\",0.00,386.00,359.00,2586.00,,,,,,\n2015,5,14,\"B6\",\"15\",\"JFK\",\"SFO\",-3.00,-28.00,0.00,\"\",0.00,359.00,339.00,2586.00,,,,,,\n2015,5,15,\"B6\",\"15\",\"JFK\",\"SFO\",26.00,24.00,0.00,\"\",0.00,382.00,347.00,2586.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"B6\",\"15\",\"JFK\",\"SFO\",-6.00,-17.00,0.00,\"\",0.00,373.00,344.00,2586.00,,,,,,\n2015,5,17,\"B6\",\"15\",\"JFK\",\"SFO\",-3.00,-17.00,0.00,\"\",0.00,370.00,350.00,2586.00,,,,,,\n2015,5,18,\"B6\",\"15\",\"JFK\",\"SFO\",-6.00,-7.00,0.00,\"\",0.00,383.00,354.00,2586.00,,,,,,\n2015,5,19,\"B6\",\"15\",\"JFK\",\"SFO\",-6.00,-12.00,0.00,\"\",0.00,378.00,340.00,2586.00,,,,,,\n2015,5,20,\"B6\",\"15\",\"JFK\",\"SFO\",-1.00,5.00,0.00,\"\",0.00,390.00,371.00,2586.00,,,,,,\n2015,5,21,\"B6\",\"15\",\"JFK\",\"SFO\",5.00,16.00,0.00,\"\",0.00,395.00,364.00,2586.00,5.00,0.00,11.00,0.00,0.00,\n2015,5,22,\"B6\",\"15\",\"JFK\",\"SFO\",-2.00,-17.00,0.00,\"\",0.00,369.00,349.00,2586.00,,,,,,\n2015,5,23,\"B6\",\"15\",\"JFK\",\"SFO\",-8.00,20.00,0.00,\"\",0.00,412.00,387.00,2586.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,24,\"B6\",\"15\",\"JFK\",\"SFO\",-5.00,-30.00,0.00,\"\",0.00,359.00,332.00,2586.00,,,,,,\n2015,5,25,\"B6\",\"15\",\"JFK\",\"SFO\",-5.00,-29.00,0.00,\"\",0.00,360.00,333.00,2586.00,,,,,,\n2015,5,26,\"B6\",\"15\",\"JFK\",\"SFO\",-6.00,-21.00,0.00,\"\",0.00,369.00,333.00,2586.00,,,,,,\n2015,5,27,\"B6\",\"15\",\"JFK\",\"SFO\",-2.00,-17.00,0.00,\"\",0.00,369.00,338.00,2586.00,,,,,,\n2015,5,28,\"B6\",\"15\",\"JFK\",\"SFO\",-5.00,-7.00,0.00,\"\",0.00,382.00,353.00,2586.00,,,,,,\n2015,5,29,\"B6\",\"15\",\"JFK\",\"SFO\",-6.00,-16.00,0.00,\"\",0.00,374.00,343.00,2586.00,,,,,,\n2015,5,30,\"B6\",\"15\",\"JFK\",\"SFO\",-8.00,-34.00,0.00,\"\",0.00,358.00,328.00,2586.00,,,,,,\n2015,5,31,\"B6\",\"15\",\"JFK\",\"SFO\",-5.00,-33.00,0.00,\"\",0.00,356.00,330.00,2586.00,,,,,,\n2015,5,1,\"B6\",\"16\",\"SFO\",\"JFK\",-4.00,-28.00,0.00,\"\",0.00,324.00,306.00,2586.00,,,,,,\n2015,5,2,\"B6\",\"16\",\"SFO\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,330.00,318.00,2586.00,,,,,,\n2015,5,3,\"B6\",\"16\",\"SFO\",\"JFK\",1.00,-21.00,0.00,\"\",0.00,326.00,309.00,2586.00,,,,,,\n2015,5,4,\"B6\",\"16\",\"SFO\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,321.00,306.00,2586.00,,,,,,\n2015,5,5,\"B6\",\"16\",\"SFO\",\"JFK\",0.00,-34.00,0.00,\"\",0.00,314.00,301.00,2586.00,,,,,,\n2015,5,6,\"B6\",\"16\",\"SFO\",\"JFK\",-10.00,-24.00,0.00,\"\",0.00,334.00,305.00,2586.00,,,,,,\n2015,5,7,\"B6\",\"16\",\"SFO\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,340.00,316.00,2586.00,,,,,,\n2015,5,8,\"B6\",\"16\",\"SFO\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,332.00,316.00,2586.00,,,,,,\n2015,5,9,\"B6\",\"16\",\"SFO\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,341.00,319.00,2586.00,,,,,,\n2015,5,10,\"B6\",\"16\",\"SFO\",\"JFK\",2.00,-24.00,0.00,\"\",0.00,322.00,307.00,2586.00,,,,,,\n2015,5,11,\"B6\",\"16\",\"SFO\",\"JFK\",0.00,-25.00,0.00,\"\",0.00,323.00,297.00,2586.00,,,,,,\n2015,5,12,\"B6\",\"16\",\"SFO\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,332.00,304.00,2586.00,,,,,,\n2015,5,13,\"B6\",\"16\",\"SFO\",\"JFK\",-4.00,-42.00,0.00,\"\",0.00,310.00,292.00,2586.00,,,,,,\n2015,5,14,\"B6\",\"16\",\"SFO\",\"JFK\",4.00,-20.00,0.00,\"\",0.00,324.00,304.00,2586.00,,,,,,\n2015,5,15,\"B6\",\"16\",\"SFO\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,327.00,311.00,2586.00,,,,,,\n2015,5,16,\"B6\",\"16\",\"SFO\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,328.00,309.00,2586.00,,,,,,\n2015,5,17,\"B6\",\"16\",\"SFO\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,328.00,305.00,2586.00,,,,,,\n2015,5,18,\"B6\",\"16\",\"SFO\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,327.00,306.00,2586.00,,,,,,\n2015,5,19,\"B6\",\"16\",\"SFO\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,338.00,303.00,2586.00,,,,,,\n2015,5,20,\"B6\",\"16\",\"SFO\",\"JFK\",-7.00,-50.00,0.00,\"\",0.00,305.00,281.00,2586.00,,,,,,\n2015,5,21,\"B6\",\"16\",\"SFO\",\"JFK\",-4.00,-40.00,0.00,\"\",0.00,312.00,293.00,2586.00,,,,,,\n2015,5,22,\"B6\",\"16\",\"SFO\",\"JFK\",-2.00,-33.00,0.00,\"\",0.00,317.00,302.00,2586.00,,,,,,\n2015,5,23,\"B6\",\"16\",\"SFO\",\"JFK\",-1.00,-36.00,0.00,\"\",0.00,313.00,298.00,2586.00,,,,,,\n2015,5,24,\"B6\",\"16\",\"SFO\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,330.00,307.00,2586.00,,,,,,\n2015,5,25,\"B6\",\"16\",\"SFO\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,328.00,307.00,2586.00,,,,,,\n2015,5,26,\"B6\",\"16\",\"SFO\",\"JFK\",-1.00,-26.00,0.00,\"\",0.00,323.00,309.00,2586.00,,,,,,\n2015,5,27,\"B6\",\"16\",\"SFO\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,331.00,312.00,2586.00,,,,,,\n2015,5,28,\"B6\",\"16\",\"SFO\",\"JFK\",1.00,-31.00,0.00,\"\",0.00,316.00,298.00,2586.00,,,,,,\n2015,5,29,\"B6\",\"16\",\"SFO\",\"JFK\",-9.00,-33.00,0.00,\"\",0.00,324.00,304.00,2586.00,,,,,,\n2015,5,30,\"B6\",\"16\",\"SFO\",\"JFK\",-1.00,-26.00,0.00,\"\",0.00,323.00,309.00,2586.00,,,,,,\n2015,5,31,\"B6\",\"16\",\"SFO\",\"JFK\",-1.00,-1.00,0.00,\"\",0.00,348.00,328.00,2586.00,,,,,,\n2015,5,1,\"B6\",\"23\",\"JFK\",\"LAX\",-6.00,-29.00,0.00,\"\",0.00,346.00,314.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"23\",\"JFK\",\"LAX\",-2.00,-21.00,0.00,\"\",0.00,350.00,320.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"23\",\"JFK\",\"LAX\",-4.00,-35.00,0.00,\"\",0.00,338.00,316.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"23\",\"JFK\",\"LAX\",0.00,-19.00,0.00,\"\",0.00,350.00,313.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"23\",\"JFK\",\"LAX\",-3.00,-23.00,0.00,\"\",0.00,349.00,315.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"23\",\"JFK\",\"LAX\",-7.00,-23.00,0.00,\"\",0.00,353.00,315.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"23\",\"JFK\",\"LAX\",3.00,-14.00,0.00,\"\",0.00,352.00,323.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"23\",\"JFK\",\"LAX\",-3.00,-7.00,0.00,\"\",0.00,365.00,327.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"23\",\"JFK\",\"LAX\",-4.00,14.00,0.00,\"\",0.00,387.00,359.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"23\",\"JFK\",\"LAX\",-3.00,-31.00,0.00,\"\",0.00,341.00,314.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"23\",\"JFK\",\"LAX\",-2.00,-9.00,0.00,\"\",0.00,362.00,334.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"23\",\"JFK\",\"LAX\",13.00,59.00,0.00,\"\",0.00,415.00,350.00,2475.00,13.00,0.00,46.00,0.00,0.00,\n2015,5,13,\"B6\",\"23\",\"JFK\",\"LAX\",-9.00,-4.00,0.00,\"\",0.00,374.00,347.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"23\",\"JFK\",\"LAX\",-3.00,-19.00,0.00,\"\",0.00,353.00,326.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"23\",\"JFK\",\"LAX\",4.00,5.00,0.00,\"\",0.00,370.00,343.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"23\",\"JFK\",\"LAX\",-1.00,11.00,0.00,\"\",0.00,381.00,352.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"23\",\"JFK\",\"LAX\",-4.00,-22.00,0.00,\"\",0.00,351.00,333.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"23\",\"JFK\",\"LAX\",-3.00,-14.00,0.00,\"\",0.00,358.00,325.00,2475.00,,,,,,\n2015,5,19,\"B6\",\"23\",\"JFK\",\"LAX\",-1.00,4.00,0.00,\"\",0.00,374.00,338.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"23\",\"JFK\",\"LAX\",-2.00,-5.00,0.00,\"\",0.00,366.00,341.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"23\",\"JFK\",\"LAX\",-1.00,5.00,0.00,\"\",0.00,375.00,347.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"23\",\"JFK\",\"LAX\",-7.00,8.00,0.00,\"\",0.00,384.00,352.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"23\",\"JFK\",\"LAX\",-6.00,6.00,0.00,\"\",0.00,381.00,342.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"23\",\"JFK\",\"LAX\",-3.00,-30.00,0.00,\"\",0.00,342.00,321.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"23\",\"JFK\",\"LAX\",0.00,-19.00,0.00,\"\",0.00,350.00,324.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"23\",\"JFK\",\"LAX\",-4.00,-21.00,0.00,\"\",0.00,352.00,319.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"23\",\"JFK\",\"LAX\",-1.00,-18.00,0.00,\"\",0.00,352.00,323.00,2475.00,,,,,,\n2015,5,28,\"B6\",\"23\",\"JFK\",\"LAX\",-8.00,-32.00,0.00,\"\",0.00,345.00,324.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"23\",\"JFK\",\"LAX\",-4.00,-38.00,0.00,\"\",0.00,335.00,314.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"23\",\"JFK\",\"LAX\",4.00,-30.00,0.00,\"\",0.00,335.00,311.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"23\",\"JFK\",\"LAX\",-5.00,-37.00,0.00,\"\",0.00,337.00,310.00,2475.00,,,,,,\n2015,5,1,\"B6\",\"24\",\"LAX\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,320.00,304.00,2475.00,,,,,,\n2015,5,2,\"B6\",\"24\",\"LAX\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,312.00,298.00,2475.00,,,,,,\n2015,5,3,\"B6\",\"24\",\"LAX\",\"JFK\",-2.00,-4.00,0.00,\"\",0.00,327.00,308.00,2475.00,,,,,,\n2015,5,4,\"B6\",\"24\",\"LAX\",\"JFK\",1.00,-3.00,0.00,\"\",0.00,325.00,308.00,2475.00,,,,,,\n2015,5,5,\"B6\",\"24\",\"LAX\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,318.00,298.00,2475.00,,,,,,\n2015,5,6,\"B6\",\"24\",\"LAX\",\"JFK\",5.00,-1.00,0.00,\"\",0.00,323.00,303.00,2475.00,,,,,,\n2015,5,7,\"B6\",\"24\",\"LAX\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,313.00,297.00,2475.00,,,,,,\n2015,5,8,\"B6\",\"24\",\"LAX\",\"JFK\",-2.00,-30.00,0.00,\"\",0.00,301.00,285.00,2475.00,,,,,,\n2015,5,9,\"B6\",\"24\",\"LAX\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,326.00,306.00,2475.00,,,,,,\n2015,5,10,\"B6\",\"24\",\"LAX\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,316.00,300.00,2475.00,,,,,,\n2015,5,11,\"B6\",\"24\",\"LAX\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,316.00,297.00,2475.00,,,,,,\n2015,5,12,\"B6\",\"24\",\"LAX\",\"JFK\",-2.00,-2.00,0.00,\"\",0.00,329.00,311.00,2475.00,,,,,,\n2015,5,13,\"B6\",\"24\",\"LAX\",\"JFK\",-4.00,-31.00,0.00,\"\",0.00,302.00,275.00,2475.00,,,,,,\n2015,5,14,\"B6\",\"24\",\"LAX\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,305.00,290.00,2475.00,,,,,,\n2015,5,15,\"B6\",\"24\",\"LAX\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,315.00,298.00,2475.00,,,,,,\n2015,5,16,\"B6\",\"24\",\"LAX\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,310.00,294.00,2475.00,,,,,,\n2015,5,17,\"B6\",\"24\",\"LAX\",\"JFK\",8.00,-11.00,0.00,\"\",0.00,310.00,292.00,2475.00,,,,,,\n2015,5,18,\"B6\",\"24\",\"LAX\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,311.00,297.00,2475.00,,,,,,\n2015,5,19,\"B6\",\"24\",\"LAX\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,317.00,289.00,2475.00,,,,,,\n2015,5,20,\"B6\",\"24\",\"LAX\",\"JFK\",-4.00,-35.00,0.00,\"\",0.00,298.00,274.00,2475.00,,,,,,\n2015,5,21,\"B6\",\"24\",\"LAX\",\"JFK\",-1.00,-41.00,0.00,\"\",0.00,289.00,273.00,2475.00,,,,,,\n2015,5,22,\"B6\",\"24\",\"LAX\",\"JFK\",-5.00,-42.00,0.00,\"\",0.00,292.00,279.00,2475.00,,,,,,\n2015,5,23,\"B6\",\"24\",\"LAX\",\"JFK\",-4.00,-30.00,0.00,\"\",0.00,303.00,286.00,2475.00,,,,,,\n2015,5,24,\"B6\",\"24\",\"LAX\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,307.00,291.00,2475.00,,,,,,\n2015,5,25,\"B6\",\"24\",\"LAX\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,321.00,304.00,2475.00,,,,,,\n2015,5,26,\"B6\",\"24\",\"LAX\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,318.00,303.00,2475.00,,,,,,\n2015,5,27,\"B6\",\"24\",\"LAX\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,312.00,297.00,2475.00,,,,,,\n2015,5,28,\"B6\",\"24\",\"LAX\",\"JFK\",3.00,-5.00,0.00,\"\",0.00,321.00,297.00,2475.00,,,,,,\n2015,5,29,\"B6\",\"24\",\"LAX\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,308.00,293.00,2475.00,,,,,,\n2015,5,30,\"B6\",\"24\",\"LAX\",\"JFK\",1.00,-10.00,0.00,\"\",0.00,318.00,301.00,2475.00,,,,,,\n2015,5,31,\"B6\",\"24\",\"LAX\",\"JFK\",0.00,13.00,0.00,\"\",0.00,342.00,317.00,2475.00,,,,,,\n2015,5,1,\"B6\",\"26\",\"TPA\",\"JFK\",-1.00,-34.00,0.00,\"\",0.00,138.00,123.00,1005.00,,,,,,\n2015,5,2,\"B6\",\"26\",\"TPA\",\"JFK\",20.00,8.00,0.00,\"\",0.00,159.00,133.00,1005.00,,,,,,\n2015,5,3,\"B6\",\"26\",\"TPA\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,150.00,135.00,1005.00,,,,,,\n2015,5,4,\"B6\",\"26\",\"TPA\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,144.00,131.00,1005.00,,,,,,\n2015,5,5,\"B6\",\"26\",\"TPA\",\"JFK\",3.00,-27.00,0.00,\"\",0.00,141.00,126.00,1005.00,,,,,,\n2015,5,6,\"B6\",\"26\",\"TPA\",\"JFK\",12.00,-12.00,0.00,\"\",0.00,147.00,134.00,1005.00,,,,,,\n2015,5,7,\"B6\",\"26\",\"TPA\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,147.00,134.00,1005.00,,,,,,\n2015,5,8,\"B6\",\"26\",\"TPA\",\"JFK\",20.00,2.00,0.00,\"\",0.00,153.00,139.00,1005.00,,,,,,\n2015,5,9,\"B6\",\"26\",\"TPA\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,157.00,140.00,1005.00,,,,,,\n2015,5,10,\"B6\",\"26\",\"TPA\",\"JFK\",13.00,-4.00,0.00,\"\",0.00,154.00,137.00,1005.00,,,,,,\n2015,5,11,\"B6\",\"26\",\"TPA\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,157.00,139.00,1005.00,,,,,,\n2015,5,12,\"B6\",\"26\",\"TPA\",\"JFK\",,,1.00,\"C\",0.00,,,1005.00,,,,,,\n2015,5,13,\"B6\",\"26\",\"TPA\",\"JFK\",17.00,2.00,0.00,\"\",0.00,156.00,139.00,1005.00,,,,,,\n2015,5,14,\"B6\",\"26\",\"TPA\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,152.00,134.00,1005.00,,,,,,\n2015,5,15,\"B6\",\"26\",\"TPA\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,154.00,135.00,1005.00,,,,,,\n2015,5,16,\"B6\",\"26\",\"TPA\",\"JFK\",26.00,4.00,0.00,\"\",0.00,149.00,134.00,1005.00,,,,,,\n2015,5,17,\"B6\",\"26\",\"TPA\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,155.00,139.00,1005.00,,,,,,\n2015,5,18,\"B6\",\"26\",\"TPA\",\"JFK\",197.00,178.00,0.00,\"\",0.00,152.00,135.00,1005.00,0.00,0.00,178.00,0.00,0.00,\n2015,5,19,\"B6\",\"26\",\"TPA\",\"JFK\",9.00,-15.00,0.00,\"\",0.00,147.00,131.00,1005.00,,,,,,\n2015,5,20,\"B6\",\"26\",\"TPA\",\"JFK\",20.00,-4.00,0.00,\"\",0.00,147.00,133.00,1005.00,,,,,,\n2015,5,21,\"B6\",\"26\",\"TPA\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,152.00,139.00,1005.00,,,,,,\n2015,5,22,\"B6\",\"26\",\"TPA\",\"JFK\",58.00,31.00,0.00,\"\",0.00,144.00,125.00,1005.00,0.00,0.00,15.00,0.00,16.00,\n2015,5,23,\"B6\",\"26\",\"TPA\",\"JFK\",-3.00,-27.00,0.00,\"\",0.00,147.00,132.00,1005.00,,,,,,\n2015,5,24,\"B6\",\"26\",\"TPA\",\"JFK\",-5.00,-31.00,0.00,\"\",0.00,145.00,134.00,1005.00,,,,,,\n2015,5,25,\"B6\",\"26\",\"TPA\",\"JFK\",8.00,-14.00,0.00,\"\",0.00,149.00,131.00,1005.00,,,,,,\n2015,5,26,\"B6\",\"26\",\"TPA\",\"JFK\",-11.00,-37.00,0.00,\"\",0.00,145.00,132.00,1005.00,,,,,,\n2015,5,27,\"B6\",\"26\",\"TPA\",\"JFK\",299.00,301.00,0.00,\"\",0.00,173.00,153.00,1005.00,0.00,0.00,301.00,0.00,0.00,\n2015,5,28,\"B6\",\"26\",\"TPA\",\"JFK\",9.00,-4.00,0.00,\"\",0.00,158.00,143.00,1005.00,,,,,,\n2015,5,29,\"B6\",\"26\",\"TPA\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,151.00,134.00,1005.00,,,,,,\n2015,5,30,\"B6\",\"26\",\"TPA\",\"JFK\",-7.00,-30.00,0.00,\"\",0.00,148.00,135.00,1005.00,,,,,,\n2015,5,31,\"B6\",\"26\",\"TPA\",\"JFK\",122.00,115.00,0.00,\"\",0.00,164.00,144.00,1005.00,0.00,0.00,115.00,0.00,0.00,\n2015,5,15,\"DL\",\"348\",\"SJU\",\"JFK\",-21.00,-29.00,0.00,\"\",0.00,234.00,213.00,1598.00,,,,,,\n2015,5,15,\"DL\",\"350\",\"LGA\",\"ATL\",55.00,40.00,0.00,\"\",0.00,138.00,110.00,762.00,39.00,0.00,0.00,0.00,1.00,\n2015,5,15,\"DL\",\"400\",\"PDX\",\"JFK\",3.00,-7.00,0.00,\"\",0.00,319.00,293.00,2454.00,,,,,,\n2015,5,15,\"DL\",\"401\",\"AUS\",\"JFK\",56.00,41.00,0.00,\"\",0.00,224.00,194.00,1521.00,9.00,0.00,0.00,0.00,32.00,\n2015,5,15,\"DL\",\"403\",\"PDX\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,332.00,299.00,2454.00,,,,,,\n2015,5,15,\"DL\",\"404\",\"JFK\",\"ATL\",9.00,-15.00,0.00,\"\",0.00,145.00,108.00,760.00,,,,,,\n2015,5,15,\"DL\",\"405\",\"JFK\",\"TPA\",-3.00,-21.00,0.00,\"\",0.00,153.00,133.00,1005.00,,,,,,\n2015,5,15,\"DL\",\"407\",\"MCO\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,159.00,129.00,944.00,,,,,,\n2015,5,15,\"DL\",\"408\",\"JFK\",\"SLC\",-1.00,1.00,0.00,\"\",0.00,307.00,286.00,1990.00,,,,,,\n2015,5,15,\"DL\",\"409\",\"JFK\",\"SJU\",-1.00,-26.00,0.00,\"\",0.00,222.00,191.00,1598.00,,,,,,\n2015,5,15,\"DL\",\"410\",\"MSP\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,156.00,135.00,1029.00,,,,,,\n2015,5,15,\"DL\",\"412\",\"LAX\",\"JFK\",9.00,-18.00,0.00,\"\",0.00,312.00,284.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"414\",\"SFO\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,326.00,302.00,2586.00,,,,,,\n2015,5,15,\"DL\",\"415\",\"JFK\",\"SFO\",1.00,10.00,0.00,\"\",0.00,417.00,383.00,2586.00,,,,,,\n2015,5,15,\"DL\",\"417\",\"JFK\",\"SEA\",6.00,-4.00,0.00,\"\",0.00,372.00,319.00,2422.00,,,,,,\n2015,5,15,\"DL\",\"418\",\"SEA\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,311.00,290.00,2422.00,,,,,,\n2015,5,15,\"DL\",\"419\",\"JFK\",\"SEA\",-2.00,-22.00,0.00,\"\",0.00,359.00,322.00,2422.00,,,,,,\n2015,5,15,\"DL\",\"420\",\"JFK\",\"LAX\",-3.00,-23.00,0.00,\"\",0.00,378.00,328.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"421\",\"JFK\",\"ATL\",-1.00,-19.00,0.00,\"\",0.00,149.00,116.00,760.00,,,,,,\n2015,5,15,\"DL\",\"422\",\"JFK\",\"LAX\",-2.00,-7.00,0.00,\"\",0.00,375.00,325.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"423\",\"JFK\",\"LAX\",-3.00,-14.00,0.00,\"\",0.00,362.00,325.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"424\",\"JFK\",\"LAX\",-1.00,-11.00,0.00,\"\",0.00,360.00,321.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"426\",\"JFK\",\"MCO\",35.00,19.00,0.00,\"\",0.00,156.00,129.00,944.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"DL\",\"427\",\"JFK\",\"LAX\",27.00,-4.00,0.00,\"\",0.00,357.00,330.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"428\",\"JFK\",\"FLL\",-2.00,-16.00,0.00,\"\",0.00,170.00,145.00,1069.00,,,,,,\n2015,5,15,\"DL\",\"430\",\"JFK\",\"SFO\",27.00,52.00,0.00,\"\",0.00,409.00,342.00,2586.00,0.00,0.00,52.00,0.00,0.00,\n2015,5,15,\"DL\",\"431\",\"JFK\",\"SFO\",22.00,46.00,0.00,\"\",0.00,433.00,382.00,2586.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,15,\"DL\",\"433\",\"JFK\",\"SLC\",0.00,-1.00,0.00,\"\",0.00,328.00,282.00,1990.00,,,,,,\n2015,5,15,\"DL\",\"434\",\"JFK\",\"SFO\",42.00,12.00,0.00,\"\",0.00,374.00,333.00,2586.00,,,,,,\n2015,5,15,\"DL\",\"435\",\"JFK\",\"SFO\",10.00,31.00,0.00,\"\",0.00,425.00,361.00,2586.00,4.00,0.00,21.00,0.00,6.00,\n2015,5,15,\"DL\",\"436\",\"JFK\",\"LAS\",13.00,19.00,0.00,\"\",0.00,356.00,300.00,2248.00,13.00,0.00,6.00,0.00,0.00,\n2015,5,15,\"DL\",\"437\",\"JFK\",\"BOS\",-3.00,-17.00,0.00,\"\",0.00,63.00,38.00,187.00,,,,,,\n2015,5,15,\"DL\",\"438\",\"JFK\",\"MCO\",11.00,9.00,0.00,\"\",0.00,166.00,133.00,944.00,,,,,,\n2015,5,15,\"DL\",\"439\",\"JFK\",\"MSP\",-2.00,-21.00,0.00,\"\",0.00,173.00,150.00,1029.00,,,,,,\n2015,5,15,\"DL\",\"440\",\"JFK\",\"SAN\",19.00,18.00,0.00,\"\",0.00,374.00,328.00,2446.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"DL\",\"442\",\"JFK\",\"AUS\",18.00,-18.00,0.00,\"\",0.00,228.00,200.00,1521.00,,,,,,\n2015,5,15,\"DL\",\"443\",\"JFK\",\"LAS\",-3.00,-5.00,0.00,\"\",0.00,352.00,310.00,2248.00,,,,,,\n2015,5,15,\"DL\",\"444\",\"SLC\",\"JFK\",3.00,-3.00,0.00,\"\",0.00,274.00,245.00,1990.00,,,,,,\n2015,5,15,\"DL\",\"447\",\"JFK\",\"LAX\",3.00,-13.00,0.00,\"\",0.00,374.00,336.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"448\",\"JFK\",\"SEA\",4.00,-10.00,0.00,\"\",0.00,346.00,317.00,2422.00,,,,,,\n2015,5,15,\"DL\",\"451\",\"JFK\",\"SJU\",-7.00,-42.00,0.00,\"\",0.00,207.00,188.00,1598.00,,,,,,\n2015,5,15,\"DL\",\"453\",\"JFK\",\"CHS\",-3.00,-2.00,0.00,\"\",0.00,140.00,94.00,636.00,,,,,,\n2015,5,15,\"DL\",\"454\",\"JFK\",\"ATL\",-1.00,-12.00,0.00,\"\",0.00,141.00,111.00,760.00,,,,,,\n2015,5,15,\"DL\",\"455\",\"JFK\",\"SAN\",29.00,24.00,0.00,\"\",0.00,373.00,332.00,2446.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,15,\"DL\",\"456\",\"JFK\",\"SEA\",-6.00,-10.00,0.00,\"\",0.00,359.00,317.00,2422.00,,,,,,\n2015,5,15,\"DL\",\"459\",\"JFK\",\"CHS\",-4.00,-29.00,0.00,\"\",0.00,111.00,89.00,636.00,,,,,,\n2015,5,15,\"DL\",\"460\",\"JFK\",\"SLC\",-1.00,-2.00,0.00,\"\",0.00,324.00,291.00,1990.00,,,,,,\n2015,5,15,\"DL\",\"463\",\"JFK\",\"LAS\",-2.00,-24.00,0.00,\"\",0.00,334.00,295.00,2248.00,,,,,,\n2015,5,15,\"DL\",\"464\",\"JFK\",\"MIA\",-2.00,-2.00,0.00,\"\",0.00,181.00,150.00,1089.00,,,,,,\n2015,5,15,\"DL\",\"465\",\"JFK\",\"STT\",-4.00,11.00,0.00,\"\",0.00,261.00,187.00,1623.00,,,,,,\n2015,5,15,\"DL\",\"466\",\"SLC\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,263.00,243.00,1990.00,,,,,,\n2015,5,15,\"DL\",\"468\",\"SFO\",\"JFK\",15.00,-6.00,0.00,\"\",0.00,328.00,302.00,2586.00,,,,,,\n2015,5,15,\"DL\",\"469\",\"JFK\",\"SFO\",-4.00,-12.00,0.00,\"\",0.00,382.00,349.00,2586.00,,,,,,\n2015,5,15,\"DL\",\"472\",\"JFK\",\"LAX\",15.00,39.00,0.00,\"\",0.00,406.00,319.00,2475.00,15.00,0.00,24.00,0.00,0.00,\n2015,5,15,\"DL\",\"476\",\"LAX\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,334.00,286.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"477\",\"JFK\",\"LAX\",23.00,11.00,0.00,\"\",0.00,383.00,341.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"478\",\"ATL\",\"JFK\",11.00,-14.00,0.00,\"\",0.00,127.00,105.00,760.00,,,,,,\n2015,5,15,\"DL\",\"480\",\"JFK\",\"SJU\",-2.00,-21.00,0.00,\"\",0.00,215.00,185.00,1598.00,,,,,,\n2015,5,15,\"DL\",\"482\",\"JFK\",\"LAS\",1.00,-15.00,0.00,\"\",0.00,337.00,303.00,2248.00,,,,,,\n2015,5,15,\"DL\",\"486\",\"JFK\",\"LAS\",0.00,-7.00,0.00,\"\",0.00,325.00,296.00,2248.00,,,,,,\n2015,5,15,\"DL\",\"488\",\"JFK\",\"SJU\",6.00,-1.00,0.00,\"\",0.00,220.00,182.00,1598.00,,,,,,\n2015,5,15,\"DL\",\"491\",\"JFK\",\"SJU\",0.00,1.00,0.00,\"\",0.00,239.00,188.00,1598.00,,,,,,\n2015,5,15,\"DL\",\"496\",\"JFK\",\"BOS\",-5.00,5.00,0.00,\"\",0.00,93.00,39.00,187.00,,,,,,\n2015,5,15,\"DL\",\"497\",\"JFK\",\"ATL\",0.00,-11.00,0.00,\"\",0.00,142.00,116.00,760.00,,,,,,\n2015,5,15,\"DL\",\"498\",\"JFK\",\"SFO\",-5.00,9.00,0.00,\"\",0.00,422.00,368.00,2586.00,,,,,,\n2015,5,15,\"DL\",\"499\",\"JFK\",\"SLC\",-4.00,0.00,0.00,\"\",0.00,314.00,269.00,1990.00,,,,,,\n2015,5,15,\"DL\",\"511\",\"SJU\",\"JFK\",-6.00,-31.00,0.00,\"\",0.00,224.00,208.00,1598.00,,,,,,\n2015,5,15,\"DL\",\"527\",\"RSW\",\"JFK\",17.00,17.00,0.00,\"\",0.00,164.00,142.00,1074.00,7.00,0.00,0.00,0.00,10.00,\n2015,5,15,\"DL\",\"528\",\"LGA\",\"MSP\",11.00,-3.00,0.00,\"\",0.00,171.00,143.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"541\",\"LAS\",\"JFK\",-2.00,4.00,0.00,\"\",0.00,305.00,277.00,2248.00,,,,,,\n2015,5,15,\"DL\",\"544\",\"ALB\",\"ATL\",-3.00,-2.00,0.00,\"\",0.00,156.00,135.00,853.00,,,,,,\n2015,5,15,\"DL\",\"582\",\"DTW\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,102.00,72.00,502.00,,,,,,\n2015,5,15,\"DL\",\"583\",\"LGA\",\"DTW\",-4.00,-14.00,0.00,\"\",0.00,104.00,83.00,502.00,,,,,,\n2015,5,15,\"DL\",\"662\",\"BUF\",\"MSP\",-1.00,-17.00,0.00,\"\",0.00,128.00,106.00,735.00,,,,,,\n2015,5,15,\"DL\",\"664\",\"TPA\",\"LGA\",-9.00,-8.00,0.00,\"\",0.00,164.00,139.00,1010.00,,,,,,\n2015,5,15,\"DL\",\"665\",\"ATL\",\"ALB\",9.00,4.00,0.00,\"\",0.00,135.00,113.00,853.00,,,,,,\n2015,5,15,\"DL\",\"665\",\"ALB\",\"ATL\",15.00,20.00,0.00,\"\",0.00,157.00,124.00,853.00,11.00,0.00,5.00,0.00,4.00,\n2015,5,15,\"DL\",\"676\",\"STT\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,238.00,215.00,1623.00,,,,,,\n2015,5,15,\"DL\",\"714\",\"DTW\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,107.00,77.00,502.00,,,,,,\n2015,5,15,\"DL\",\"723\",\"ATL\",\"BUF\",2.00,-9.00,0.00,\"\",0.00,116.00,100.00,712.00,,,,,,\n2015,5,15,\"DL\",\"723\",\"BUF\",\"ATL\",-2.00,-9.00,0.00,\"\",0.00,124.00,107.00,712.00,,,,,,\n2015,5,15,\"DL\",\"725\",\"ATL\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,135.00,99.00,762.00,,,,,,\n2015,5,15,\"DL\",\"729\",\"LAS\",\"JFK\",1.00,-19.00,0.00,\"\",0.00,285.00,267.00,2248.00,,,,,,\n2015,5,15,\"DL\",\"731\",\"LGA\",\"DTW\",0.00,5.00,0.00,\"\",0.00,119.00,87.00,502.00,,,,,,\n2015,5,15,\"DL\",\"750\",\"BOS\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,78.00,42.00,187.00,,,,,,\n2015,5,15,\"DL\",\"763\",\"BOS\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,60.00,43.00,187.00,,,,,,\n2015,5,15,\"DL\",\"772\",\"PBI\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,157.00,135.00,1035.00,,,,,,\n2015,5,15,\"DL\",\"782\",\"MIA\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,172.00,139.00,1089.00,,,,,,\n2015,5,15,\"DL\",\"787\",\"MCO\",\"JFK\",11.00,2.00,0.00,\"\",0.00,157.00,124.00,944.00,,,,,,\n2015,5,15,\"DL\",\"789\",\"MIA\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,186.00,150.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"791\",\"LAX\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,326.00,289.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"792\",\"PBI\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,153.00,134.00,1028.00,,,,,,\n2015,5,15,\"DL\",\"793\",\"BOS\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,90.00,54.00,187.00,,,,,,\n2015,5,15,\"DL\",\"802\",\"ATL\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,130.00,101.00,762.00,,,,,,\n2015,5,15,\"DL\",\"804\",\"LGA\",\"MSP\",-6.00,-21.00,0.00,\"\",0.00,179.00,153.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"856\",\"SAN\",\"JFK\",28.00,3.00,0.00,\"\",0.00,312.00,282.00,2446.00,,,,,,\n2015,5,15,\"DL\",\"871\",\"MSP\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,149.00,132.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"874\",\"LGA\",\"MIA\",-5.00,-26.00,0.00,\"\",0.00,184.00,152.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"878\",\"RSW\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,168.00,147.00,1080.00,,,,,,\n2015,5,15,\"DL\",\"884\",\"LGA\",\"DEN\",-1.00,-15.00,0.00,\"\",0.00,260.00,226.00,1620.00,,,,,,\n2015,5,15,\"DL\",\"889\",\"MSP\",\"LGA\",16.00,13.00,0.00,\"\",0.00,158.00,130.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"904\",\"LGA\",\"ATL\",-1.00,-12.00,0.00,\"\",0.00,138.00,111.00,762.00,,,,,,\n2015,5,15,\"DL\",\"906\",\"ATL\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,126.00,99.00,762.00,,,,,,\n2015,5,15,\"DL\",\"909\",\"LGA\",\"MIA\",14.00,-11.00,0.00,\"\",0.00,169.00,146.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"910\",\"MCO\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,141.00,124.00,950.00,,,,,,\n2015,5,15,\"DL\",\"928\",\"DEN\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,217.00,195.00,1620.00,,,,,,\n2015,5,15,\"DL\",\"939\",\"MCO\",\"LGA\",-1.00,6.00,0.00,\"\",0.00,170.00,131.00,950.00,,,,,,\n2015,5,15,\"DL\",\"964\",\"LGA\",\"ATL\",11.00,-11.00,0.00,\"\",0.00,124.00,102.00,762.00,,,,,,\n2015,5,15,\"DL\",\"965\",\"MCO\",\"LGA\",3.00,2.00,0.00,\"\",0.00,160.00,132.00,950.00,,,,,,\n2015,5,15,\"DL\",\"971\",\"LGA\",\"DEN\",-6.00,-22.00,0.00,\"\",0.00,251.00,229.00,1620.00,,,,,,\n2015,5,15,\"DL\",\"986\",\"ATL\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,122.00,100.00,762.00,,,,,,\n2015,5,15,\"DL\",\"997\",\"DTW\",\"LGA\",-3.00,3.00,0.00,\"\",0.00,110.00,81.00,502.00,,,,,,\n2015,5,15,\"DL\",\"1086\",\"LGA\",\"ATL\",36.00,11.00,0.00,\"\",0.00,137.00,110.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1088\",\"FLL\",\"LGA\",-8.00,-1.00,0.00,\"\",0.00,184.00,152.00,1076.00,,,,,,\n2015,5,15,\"DL\",\"1109\",\"SEA\",\"JFK\",-3.00,-6.00,0.00,\"\",0.00,332.00,300.00,2422.00,,,,,,\n2015,5,15,\"DL\",\"1111\",\"ATL\",\"ROC\",21.00,10.00,0.00,\"\",0.00,118.00,98.00,749.00,,,,,,\n2015,5,15,\"DL\",\"1121\",\"PBI\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,171.00,141.00,1035.00,,,,,,\n2015,5,15,\"DL\",\"1131\",\"LGA\",\"FLL\",130.00,113.00,0.00,\"\",0.00,175.00,142.00,1076.00,113.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"DL\",\"1145\",\"LGA\",\"DTW\",0.00,-13.00,0.00,\"\",0.00,111.00,88.00,502.00,,,,,,\n2015,5,15,\"DL\",\"1155\",\"DTW\",\"ROC\",-4.00,-3.00,0.00,\"\",0.00,72.00,48.00,296.00,,,,,,\n2015,5,15,\"DL\",\"1159\",\"ATL\",\"BUF\",-4.00,-19.00,0.00,\"\",0.00,107.00,95.00,712.00,,,,,,\n2015,5,15,\"DL\",\"1159\",\"BUF\",\"ATL\",-6.00,-8.00,0.00,\"\",0.00,127.00,99.00,712.00,,,,,,\n2015,5,15,\"DL\",\"1162\",\"LAX\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,322.00,298.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"1174\",\"LGA\",\"PBI\",-6.00,-18.00,0.00,\"\",0.00,168.00,139.00,1035.00,,,,,,\n2015,5,15,\"DL\",\"1176\",\"ATL\",\"BUF\",0.00,-12.00,0.00,\"\",0.00,118.00,96.00,712.00,,,,,,\n2015,5,15,\"DL\",\"1176\",\"BUF\",\"ATL\",-4.00,-12.00,0.00,\"\",0.00,126.00,106.00,712.00,,,,,,\n2015,5,15,\"DL\",\"1186\",\"ATL\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,128.00,105.00,762.00,,,,,,\n2015,5,12,\"DL\",\"2632\",\"JFK\",\"MCO\",0.00,-9.00,0.00,\"\",0.00,174.00,133.00,944.00,,,,,,\n2015,5,12,\"DL\",\"2634\",\"JFK\",\"BUF\",11.00,0.00,0.00,\"\",0.00,92.00,59.00,301.00,,,,,,\n2015,5,12,\"DL\",\"2645\",\"JFK\",\"RSW\",-2.00,-19.00,0.00,\"\",0.00,184.00,155.00,1074.00,,,,,,\n2015,5,12,\"DL\",\"2649\",\"JFK\",\"TPA\",-5.00,,0.00,\"\",1.00,,,1005.00,,,,,,\n2015,5,12,\"DL\",\"2650\",\"TPA\",\"JFK\",17.00,1.00,0.00,\"\",0.00,152.00,134.00,1005.00,,,,,,\n2015,5,12,\"DL\",\"2652\",\"TPA\",\"JFK\",186.00,184.00,0.00,\"\",0.00,172.00,127.00,1005.00,4.00,0.00,0.00,0.00,180.00,\n2015,5,12,\"DL\",\"2653\",\"MCO\",\"JFK\",39.00,46.00,0.00,\"\",0.00,173.00,134.00,944.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,12,\"DL\",\"2665\",\"BOS\",\"LGA\",76.00,95.00,0.00,\"\",0.00,94.00,43.00,184.00,76.00,0.00,19.00,0.00,0.00,\n2015,5,12,\"DL\",\"2666\",\"LGA\",\"BOS\",-3.00,-3.00,0.00,\"\",0.00,66.00,33.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2667\",\"BOS\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,75.00,43.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2668\",\"LGA\",\"BOS\",-2.00,-9.00,0.00,\"\",0.00,64.00,32.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2669\",\"BOS\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,70.00,44.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2670\",\"LGA\",\"BOS\",82.00,71.00,0.00,\"\",0.00,56.00,32.00,184.00,0.00,0.00,0.00,0.00,71.00,\n2015,5,12,\"DL\",\"2671\",\"BOS\",\"LGA\",-5.00,2.00,0.00,\"\",0.00,86.00,45.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2672\",\"LGA\",\"BOS\",-4.00,-32.00,0.00,\"\",0.00,54.00,32.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2673\",\"BOS\",\"LGA\",43.00,39.00,0.00,\"\",0.00,69.00,42.00,184.00,0.00,0.00,0.00,0.00,39.00,\n2015,5,12,\"DL\",\"2674\",\"LGA\",\"BOS\",-7.00,-23.00,0.00,\"\",0.00,67.00,45.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2675\",\"BOS\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,67.00,45.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2676\",\"LGA\",\"BOS\",0.00,-10.00,0.00,\"\",0.00,66.00,40.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2677\",\"BOS\",\"LGA\",-9.00,2.00,0.00,\"\",0.00,86.00,45.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2678\",\"LGA\",\"BOS\",22.00,-6.00,0.00,\"\",0.00,55.00,35.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2679\",\"BOS\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,70.00,42.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2680\",\"LGA\",\"BOS\",-2.00,-22.00,0.00,\"\",0.00,59.00,40.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2681\",\"BOS\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,81.00,42.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2682\",\"LGA\",\"BOS\",-2.00,-12.00,0.00,\"\",0.00,62.00,39.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2683\",\"BOS\",\"LGA\",-7.00,14.00,0.00,\"\",0.00,95.00,44.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2684\",\"LGA\",\"BOS\",-4.00,-12.00,0.00,\"\",0.00,67.00,33.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2685\",\"BOS\",\"LGA\",-1.00,38.00,0.00,\"\",0.00,111.00,42.00,184.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,12,\"DL\",\"2686\",\"LGA\",\"BOS\",2.00,-10.00,0.00,\"\",0.00,70.00,37.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2687\",\"BOS\",\"LGA\",-3.00,11.00,0.00,\"\",0.00,90.00,38.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2688\",\"LGA\",\"BOS\",7.00,-8.00,0.00,\"\",0.00,68.00,40.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2689\",\"BOS\",\"LGA\",-2.00,15.00,0.00,\"\",0.00,97.00,38.00,184.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,12,\"DL\",\"2690\",\"LGA\",\"BOS\",34.00,60.00,0.00,\"\",0.00,111.00,38.00,184.00,3.00,0.00,26.00,0.00,31.00,\n2015,5,12,\"DL\",\"2691\",\"BOS\",\"LGA\",-1.00,25.00,0.00,\"\",0.00,103.00,44.00,184.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,12,\"DL\",\"2692\",\"LGA\",\"BOS\",9.00,31.00,0.00,\"\",0.00,101.00,36.00,184.00,2.00,0.00,22.00,0.00,7.00,\n2015,5,12,\"DL\",\"2693\",\"BOS\",\"LGA\",53.00,43.00,0.00,\"\",0.00,68.00,46.00,184.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,12,\"DL\",\"2694\",\"LGA\",\"BOS\",12.00,14.00,0.00,\"\",0.00,80.00,37.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2696\",\"LGA\",\"BOS\",34.00,25.00,0.00,\"\",0.00,59.00,40.00,184.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"2699\",\"BOS\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,67.00,41.00,184.00,,,,,,\n2015,5,12,\"DL\",\"2785\",\"JFK\",\"CHS\",10.00,-17.00,0.00,\"\",0.00,109.00,91.00,636.00,,,,,,\n2015,5,13,\"DL\",\"42\",\"MIA\",\"JFK\",12.00,-4.00,0.00,\"\",0.00,173.00,142.00,1089.00,,,,,,\n2015,5,13,\"DL\",\"208\",\"JFK\",\"MCO\",193.00,165.00,0.00,\"\",0.00,159.00,119.00,944.00,165.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"DL\",\"221\",\"LGA\",\"ATL\",0.00,-9.00,0.00,\"\",0.00,156.00,104.00,762.00,,,,,,\n2015,5,13,\"DL\",\"245\",\"JFK\",\"SLC\",-6.00,-41.00,0.00,\"\",0.00,293.00,269.00,1990.00,,,,,,\n2015,5,13,\"DL\",\"326\",\"SJU\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,224.00,208.00,1598.00,,,,,,\n2015,5,13,\"DL\",\"332\",\"SJU\",\"JFK\",-11.00,-9.00,0.00,\"\",0.00,248.00,211.00,1598.00,,,,,,\n2015,5,13,\"DL\",\"333\",\"MSP\",\"LGA\",4.00,-18.00,0.00,\"\",0.00,141.00,119.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"342\",\"SFO\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,329.00,289.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"347\",\"LGA\",\"ATL\",-4.00,-6.00,0.00,\"\",0.00,156.00,110.00,762.00,,,,,,\n2015,5,13,\"DL\",\"348\",\"SJU\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,231.00,209.00,1598.00,,,,,,\n2015,5,13,\"DL\",\"350\",\"LGA\",\"ATL\",-3.00,-22.00,0.00,\"\",0.00,134.00,108.00,762.00,,,,,,\n2015,5,13,\"DL\",\"400\",\"PDX\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,306.00,283.00,2454.00,,,,,,\n2015,5,13,\"DL\",\"401\",\"AUS\",\"JFK\",215.00,194.00,0.00,\"\",0.00,218.00,194.00,1521.00,3.00,0.00,8.00,0.00,183.00,\n2015,5,13,\"DL\",\"403\",\"PDX\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,326.00,283.00,2454.00,,,,,,\n2015,5,13,\"DL\",\"404\",\"JFK\",\"ATL\",1.00,-39.00,0.00,\"\",0.00,129.00,105.00,760.00,,,,,,\n2015,5,13,\"DL\",\"405\",\"JFK\",\"TPA\",-3.00,-24.00,0.00,\"\",0.00,150.00,137.00,1005.00,,,,,,\n2015,5,13,\"DL\",\"407\",\"MCO\",\"JFK\",3.00,-3.00,0.00,\"\",0.00,163.00,130.00,944.00,,,,,,\n2015,5,13,\"DL\",\"408\",\"JFK\",\"SLC\",-1.00,-3.00,0.00,\"\",0.00,303.00,275.00,1990.00,,,,,,\n2015,5,13,\"DL\",\"409\",\"JFK\",\"SJU\",-3.00,-27.00,0.00,\"\",0.00,223.00,197.00,1598.00,,,,,,\n2015,5,13,\"DL\",\"410\",\"MSP\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,153.00,122.00,1029.00,,,,,,\n2015,5,13,\"DL\",\"412\",\"LAX\",\"JFK\",12.00,-17.00,0.00,\"\",0.00,310.00,278.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"414\",\"SFO\",\"JFK\",-4.00,-36.00,0.00,\"\",0.00,313.00,281.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"415\",\"JFK\",\"SFO\",-2.00,-10.00,0.00,\"\",0.00,400.00,366.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"417\",\"JFK\",\"SEA\",28.00,8.00,0.00,\"\",0.00,362.00,327.00,2422.00,,,,,,\n2015,5,13,\"DL\",\"418\",\"SEA\",\"JFK\",-5.00,-30.00,0.00,\"\",0.00,303.00,280.00,2422.00,,,,,,\n2015,5,13,\"DL\",\"419\",\"JFK\",\"SEA\",-4.00,-6.00,0.00,\"\",0.00,377.00,342.00,2422.00,,,,,,\n2015,5,13,\"DL\",\"420\",\"JFK\",\"LAX\",-1.00,-43.00,0.00,\"\",0.00,356.00,315.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"422\",\"JFK\",\"LAX\",-2.00,8.00,0.00,\"\",0.00,390.00,339.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"423\",\"JFK\",\"LAX\",0.00,-12.00,0.00,\"\",0.00,361.00,341.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"424\",\"JFK\",\"LAX\",9.00,10.00,0.00,\"\",0.00,371.00,333.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"426\",\"JFK\",\"MCO\",-7.00,-14.00,0.00,\"\",0.00,165.00,133.00,944.00,,,,,,\n2015,5,13,\"DL\",\"427\",\"JFK\",\"LAX\",4.00,15.00,0.00,\"\",0.00,399.00,341.00,2475.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,13,\"DL\",\"428\",\"JFK\",\"FLL\",215.00,214.00,0.00,\"\",0.00,183.00,148.00,1069.00,214.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"DL\",\"430\",\"JFK\",\"SFO\",1.00,-17.00,0.00,\"\",0.00,366.00,346.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"431\",\"JFK\",\"SFO\",-7.00,-25.00,0.00,\"\",0.00,391.00,366.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"434\",\"JFK\",\"SFO\",-7.00,-10.00,0.00,\"\",0.00,401.00,342.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"435\",\"JFK\",\"SFO\",-3.00,-8.00,0.00,\"\",0.00,399.00,354.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"436\",\"JFK\",\"LAS\",-9.00,7.00,0.00,\"\",0.00,366.00,315.00,2248.00,,,,,,\n2015,5,13,\"DL\",\"437\",\"JFK\",\"BOS\",52.00,32.00,0.00,\"\",0.00,57.00,37.00,187.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,13,\"DL\",\"438\",\"JFK\",\"MCO\",-6.00,-17.00,0.00,\"\",0.00,157.00,135.00,944.00,,,,,,\n2015,5,13,\"DL\",\"439\",\"JFK\",\"MSP\",-5.00,-17.00,0.00,\"\",0.00,180.00,161.00,1029.00,,,,,,\n2015,5,13,\"DL\",\"440\",\"JFK\",\"PIT\",-4.00,-23.00,0.00,\"\",0.00,102.00,66.00,340.00,,,,,,\n2015,5,13,\"DL\",\"441\",\"JFK\",\"MIA\",4.00,6.00,0.00,\"\",0.00,183.00,153.00,1089.00,,,,,,\n2015,5,13,\"DL\",\"442\",\"JFK\",\"AUS\",-7.00,-17.00,0.00,\"\",0.00,254.00,212.00,1521.00,,,,,,\n2015,5,13,\"DL\",\"443\",\"JFK\",\"LAS\",0.00,-23.00,0.00,\"\",0.00,331.00,298.00,2248.00,,,,,,\n2015,5,13,\"DL\",\"444\",\"SLC\",\"JFK\",17.00,-6.00,0.00,\"\",0.00,257.00,221.00,1990.00,,,,,,\n2015,5,13,\"DL\",\"447\",\"JFK\",\"LAX\",-6.00,-15.00,0.00,\"\",0.00,381.00,334.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"448\",\"JFK\",\"SEA\",-1.00,5.00,0.00,\"\",0.00,366.00,336.00,2422.00,,,,,,\n2015,5,13,\"DL\",\"453\",\"JFK\",\"CHS\",-7.00,-21.00,0.00,\"\",0.00,125.00,94.00,636.00,,,,,,\n2015,5,13,\"DL\",\"454\",\"JFK\",\"STT\",-3.00,-2.00,0.00,\"\",0.00,247.00,194.00,1623.00,,,,,,\n2015,5,13,\"DL\",\"455\",\"JFK\",\"SAN\",68.00,54.00,0.00,\"\",0.00,364.00,328.00,2446.00,12.00,0.00,0.00,0.00,42.00,\n2015,5,13,\"DL\",\"456\",\"JFK\",\"SEA\",-4.00,0.00,0.00,\"\",0.00,367.00,340.00,2422.00,,,,,,\n2015,5,13,\"DL\",\"458\",\"JFK\",\"AUS\",-4.00,,0.00,\"\",1.00,,,1521.00,,,,,,\n2015,5,13,\"DL\",\"459\",\"JFK\",\"SAN\",-7.00,13.00,0.00,\"\",0.00,395.00,342.00,2446.00,,,,,,\n2015,5,13,\"DL\",\"460\",\"JFK\",\"SLC\",-4.00,-23.00,0.00,\"\",0.00,306.00,274.00,1990.00,,,,,,\n2015,5,13,\"DL\",\"462\",\"JFK\",\"PDX\",-5.00,-8.00,0.00,\"\",0.00,375.00,334.00,2454.00,,,,,,\n2015,5,13,\"DL\",\"463\",\"JFK\",\"LAS\",6.00,-2.00,0.00,\"\",0.00,348.00,293.00,2248.00,,,,,,\n2015,5,13,\"DL\",\"465\",\"JFK\",\"ATL\",-4.00,4.00,0.00,\"\",0.00,160.00,114.00,760.00,,,,,,\n2015,5,13,\"DL\",\"466\",\"SLC\",\"JFK\",-1.00,-31.00,0.00,\"\",0.00,247.00,223.00,1990.00,,,,,,\n2015,5,13,\"DL\",\"468\",\"SFO\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,339.00,294.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"469\",\"JFK\",\"SFO\",-7.00,15.00,0.00,\"\",0.00,412.00,378.00,2586.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,13,\"DL\",\"472\",\"JFK\",\"LAX\",0.00,43.00,0.00,\"\",0.00,428.00,332.00,2475.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,13,\"DL\",\"476\",\"LAX\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,318.00,276.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"477\",\"JFK\",\"LAX\",-4.00,1.00,0.00,\"\",0.00,400.00,328.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"478\",\"ATL\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,127.00,105.00,760.00,,,,,,\n2015,5,13,\"DL\",\"480\",\"JFK\",\"SJU\",-6.00,-17.00,0.00,\"\",0.00,223.00,196.00,1598.00,,,,,,\n2015,5,13,\"DL\",\"482\",\"JFK\",\"LAS\",0.00,-18.00,0.00,\"\",0.00,335.00,296.00,2248.00,,,,,,\n2015,5,13,\"DL\",\"486\",\"JFK\",\"LAS\",71.00,55.00,0.00,\"\",0.00,316.00,296.00,2248.00,0.00,0.00,0.00,0.00,55.00,\n2015,5,13,\"DL\",\"488\",\"JFK\",\"SJU\",-6.00,-15.00,0.00,\"\",0.00,218.00,194.00,1598.00,,,,,,\n2015,5,13,\"DL\",\"491\",\"JFK\",\"SJU\",-3.00,-5.00,0.00,\"\",0.00,236.00,193.00,1598.00,,,,,,\n2015,5,13,\"DL\",\"492\",\"JFK\",\"SJU\",-2.00,-19.00,0.00,\"\",0.00,225.00,197.00,1598.00,,,,,,\n2015,5,13,\"DL\",\"496\",\"JFK\",\"BOS\",-4.00,-14.00,0.00,\"\",0.00,73.00,40.00,187.00,,,,,,\n2015,5,13,\"DL\",\"497\",\"JFK\",\"ATL\",-2.00,-33.00,0.00,\"\",0.00,122.00,106.00,760.00,,,,,,\n2015,5,13,\"DL\",\"498\",\"JFK\",\"SFO\",10.00,-18.00,0.00,\"\",0.00,380.00,354.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"499\",\"JFK\",\"SLC\",18.00,12.00,0.00,\"\",0.00,304.00,271.00,1990.00,,,,,,\n2015,5,13,\"DL\",\"511\",\"SJU\",\"JFK\",-10.00,-36.00,0.00,\"\",0.00,223.00,203.00,1598.00,,,,,,\n2015,5,14,\"DL\",\"1145\",\"LGA\",\"DTW\",-3.00,-6.00,0.00,\"\",0.00,121.00,89.00,502.00,,,,,,\n2015,5,14,\"DL\",\"1155\",\"DTW\",\"ROC\",-10.00,-18.00,0.00,\"\",0.00,63.00,42.00,296.00,,,,,,\n2015,5,14,\"DL\",\"1159\",\"ATL\",\"BUF\",-3.00,-5.00,0.00,\"\",0.00,120.00,95.00,712.00,,,,,,\n2015,5,14,\"DL\",\"1159\",\"BUF\",\"ATL\",3.00,-6.00,0.00,\"\",0.00,120.00,100.00,712.00,,,,,,\n2015,5,14,\"DL\",\"1162\",\"LAX\",\"JFK\",18.00,2.00,0.00,\"\",0.00,309.00,279.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"1174\",\"LGA\",\"PBI\",-4.00,-18.00,0.00,\"\",0.00,166.00,133.00,1035.00,,,,,,\n2015,5,14,\"DL\",\"1176\",\"ATL\",\"BUF\",-1.00,-15.00,0.00,\"\",0.00,116.00,96.00,712.00,,,,,,\n2015,5,14,\"DL\",\"1176\",\"BUF\",\"ATL\",-6.00,-7.00,0.00,\"\",0.00,133.00,106.00,712.00,,,,,,\n2015,5,14,\"DL\",\"1186\",\"ATL\",\"LGA\",3.00,-12.00,0.00,\"\",0.00,126.00,105.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1214\",\"LGA\",\"ATL\",4.00,-17.00,0.00,\"\",0.00,143.00,114.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1227\",\"PHX\",\"JFK\",-2.00,3.00,0.00,\"\",0.00,295.00,253.00,2153.00,,,,,,\n2015,5,14,\"DL\",\"1242\",\"LGA\",\"PBI\",-5.00,-10.00,0.00,\"\",0.00,179.00,130.00,1035.00,,,,,,\n2015,5,14,\"DL\",\"1262\",\"LAX\",\"JFK\",21.00,-2.00,0.00,\"\",0.00,310.00,280.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"1264\",\"SLC\",\"JFK\",29.00,10.00,0.00,\"\",0.00,254.00,236.00,1990.00,,,,,,\n2015,5,14,\"DL\",\"1266\",\"BUF\",\"ATL\",-1.00,-9.00,0.00,\"\",0.00,114.00,97.00,712.00,,,,,,\n2015,5,14,\"DL\",\"1269\",\"LGA\",\"MIA\",27.00,30.00,0.00,\"\",0.00,200.00,150.00,1096.00,27.00,0.00,3.00,0.00,0.00,\n2015,5,14,\"DL\",\"1278\",\"MSP\",\"BUF\",6.00,0.00,0.00,\"\",0.00,113.00,96.00,735.00,,,,,,\n2015,5,14,\"DL\",\"1286\",\"ATL\",\"LGA\",2.00,-13.00,0.00,\"\",0.00,120.00,101.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1288\",\"LGA\",\"FLL\",0.00,-10.00,0.00,\"\",0.00,185.00,139.00,1076.00,,,,,,\n2015,5,14,\"DL\",\"1289\",\"LGA\",\"ATL\",1.00,-20.00,0.00,\"\",0.00,141.00,109.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1298\",\"LGA\",\"ATL\",-2.00,-22.00,0.00,\"\",0.00,141.00,108.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1306\",\"DTW\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,94.00,70.00,502.00,,,,,,\n2015,5,14,\"DL\",\"1312\",\"TPA\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,164.00,132.00,1005.00,,,,,,\n2015,5,14,\"DL\",\"1335\",\"MIA\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,181.00,152.00,1096.00,,,,,,\n2015,5,14,\"DL\",\"1356\",\"BUF\",\"DTW\",-2.00,-15.00,0.00,\"\",0.00,58.00,39.00,241.00,,,,,,\n2015,5,14,\"DL\",\"1359\",\"MCO\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,151.00,131.00,950.00,,,,,,\n2015,5,14,\"DL\",\"1370\",\"ATL\",\"ROC\",-2.00,-12.00,0.00,\"\",0.00,115.00,100.00,749.00,,,,,,\n2015,5,14,\"DL\",\"1370\",\"ROC\",\"ATL\",-8.00,-12.00,0.00,\"\",0.00,130.00,103.00,749.00,,,,,,\n2015,5,14,\"DL\",\"1372\",\"DTW\",\"BUF\",24.00,20.00,0.00,\"\",0.00,62.00,38.00,241.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"DL\",\"1383\",\"LGA\",\"ATL\",-2.00,-31.00,0.00,\"\",0.00,139.00,109.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1386\",\"ATL\",\"LGA\",38.00,25.00,0.00,\"\",0.00,121.00,104.00,762.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"DL\",\"1394\",\"ATL\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,140.00,104.00,760.00,,,,,,\n2015,5,14,\"DL\",\"1419\",\"ATL\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,135.00,112.00,760.00,,,,,,\n2015,5,14,\"DL\",\"1428\",\"LGA\",\"ATL\",-2.00,-3.00,0.00,\"\",0.00,157.00,106.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1447\",\"LGA\",\"ATL\",-2.00,-15.00,0.00,\"\",0.00,131.00,109.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1473\",\"SEA\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,333.00,292.00,2422.00,,,,,,\n2015,5,14,\"DL\",\"1486\",\"ATL\",\"LGA\",6.00,-2.00,0.00,\"\",0.00,131.00,109.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1487\",\"ATL\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,130.00,104.00,760.00,,,,,,\n2015,5,14,\"DL\",\"1496\",\"MSP\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,154.00,135.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"1498\",\"FLL\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,177.00,161.00,1076.00,,,,,,\n2015,5,14,\"DL\",\"1514\",\"LGA\",\"FLL\",0.00,-17.00,0.00,\"\",0.00,172.00,148.00,1076.00,,,,,,\n2015,5,14,\"DL\",\"1515\",\"ATL\",\"ALB\",-1.00,-19.00,0.00,\"\",0.00,129.00,110.00,853.00,,,,,,\n2015,5,14,\"DL\",\"1526\",\"MCO\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,164.00,144.00,950.00,,,,,,\n2015,5,14,\"DL\",\"1542\",\"SEA\",\"JFK\",5.00,-14.00,0.00,\"\",0.00,305.00,283.00,2422.00,,,,,,\n2015,5,14,\"DL\",\"1543\",\"ATL\",\"ALB\",-1.00,-10.00,0.00,\"\",0.00,135.00,114.00,853.00,,,,,,\n2015,5,14,\"DL\",\"1543\",\"ALB\",\"ATL\",-2.00,-20.00,0.00,\"\",0.00,144.00,121.00,853.00,,,,,,\n2015,5,14,\"DL\",\"1548\",\"LGA\",\"DTW\",0.00,-6.00,0.00,\"\",0.00,114.00,84.00,502.00,,,,,,\n2015,5,14,\"DL\",\"1560\",\"MSY\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,177.00,149.00,1183.00,,,,,,\n2015,5,14,\"DL\",\"1562\",\"BOS\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,67.00,38.00,187.00,,,,,,\n2015,5,14,\"DL\",\"1566\",\"LGA\",\"PBI\",-5.00,-17.00,0.00,\"\",0.00,171.00,136.00,1035.00,,,,,,\n2015,5,14,\"DL\",\"1580\",\"LGA\",\"DTW\",-3.00,2.00,0.00,\"\",0.00,130.00,85.00,502.00,,,,,,\n2015,5,14,\"DL\",\"1583\",\"SFO\",\"JFK\",2.00,-24.00,0.00,\"\",0.00,323.00,299.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"1584\",\"ATL\",\"ROC\",-4.00,-30.00,0.00,\"\",0.00,107.00,95.00,749.00,,,,,,\n2015,5,14,\"DL\",\"1584\",\"ROC\",\"ATL\",-7.00,-5.00,0.00,\"\",0.00,137.00,109.00,749.00,,,,,,\n2015,5,14,\"DL\",\"1586\",\"ATL\",\"LGA\",10.00,12.00,0.00,\"\",0.00,146.00,108.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1596\",\"MSP\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,145.00,125.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"1644\",\"FLL\",\"JFK\",-8.00,-7.00,0.00,\"\",0.00,188.00,150.00,1069.00,,,,,,\n2015,5,14,\"DL\",\"1647\",\"LGA\",\"ATL\",-1.00,-16.00,0.00,\"\",0.00,137.00,104.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1671\",\"MIA\",\"JFK\",-7.00,-10.00,0.00,\"\",0.00,184.00,149.00,1089.00,,,,,,\n2015,5,14,\"DL\",\"1672\",\"ATL\",\"BUF\",0.00,2.00,0.00,\"\",0.00,121.00,93.00,712.00,,,,,,\n2015,5,14,\"DL\",\"1672\",\"BUF\",\"ATL\",-2.00,-15.00,0.00,\"\",0.00,115.00,97.00,712.00,,,,,,\n2015,5,14,\"DL\",\"1685\",\"LGA\",\"MCO\",-3.00,-6.00,0.00,\"\",0.00,172.00,128.00,950.00,,,,,,\n2015,5,14,\"DL\",\"1697\",\"LGA\",\"ATL\",1.00,-18.00,0.00,\"\",0.00,139.00,109.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1728\",\"LAS\",\"JFK\",45.00,33.00,0.00,\"\",0.00,289.00,259.00,2248.00,12.00,0.00,0.00,0.00,21.00,\n2015,5,14,\"DL\",\"1750\",\"ATL\",\"JFK\",21.00,7.00,0.00,\"\",0.00,135.00,105.00,760.00,,,,,,\n2015,5,14,\"DL\",\"1762\",\"LAX\",\"JFK\",21.00,11.00,0.00,\"\",0.00,325.00,289.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"1779\",\"LGA\",\"MSY\",4.00,-16.00,0.00,\"\",0.00,179.00,158.00,1183.00,,,,,,\n2015,5,14,\"DL\",\"1786\",\"ATL\",\"LGA\",2.00,-20.00,0.00,\"\",0.00,119.00,103.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1787\",\"FLL\",\"JFK\",-9.00,-19.00,0.00,\"\",0.00,176.00,146.00,1069.00,,,,,,\n2015,5,14,\"DL\",\"1796\",\"LGA\",\"MSP\",25.00,13.00,0.00,\"\",0.00,186.00,158.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"1830\",\"SLC\",\"JFK\",2.00,-18.00,0.00,\"\",0.00,256.00,232.00,1990.00,,,,,,\n2015,5,14,\"DL\",\"1841\",\"SJU\",\"JFK\",-6.00,14.00,0.00,\"\",0.00,267.00,220.00,1598.00,,,,,,\n2015,5,14,\"DL\",\"1848\",\"DTW\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,98.00,74.00,502.00,,,,,,\n2015,5,14,\"DL\",\"1849\",\"LGA\",\"ATL\",-3.00,-17.00,0.00,\"\",0.00,144.00,111.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1851\",\"CHS\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,109.00,89.00,636.00,,,,,,\n2015,5,14,\"DL\",\"1875\",\"LGA\",\"TPA\",-3.00,-10.00,0.00,\"\",0.00,173.00,137.00,1010.00,,,,,,\n2015,5,14,\"DL\",\"1879\",\"LGA\",\"FLL\",-4.00,-23.00,0.00,\"\",0.00,168.00,136.00,1076.00,,,,,,\n2015,5,14,\"DL\",\"1885\",\"LGA\",\"MCO\",-1.00,-10.00,0.00,\"\",0.00,171.00,124.00,950.00,,,,,,\n2015,5,14,\"DL\",\"1886\",\"ATL\",\"LGA\",-2.00,-29.00,0.00,\"\",0.00,123.00,101.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1897\",\"LGA\",\"MCO\",225.00,214.00,0.00,\"\",0.00,163.00,130.00,950.00,214.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"DL\",\"1902\",\"LGA\",\"PBI\",22.00,-3.00,0.00,\"\",0.00,159.00,138.00,1035.00,,,,,,\n2015,5,14,\"DL\",\"1917\",\"MIA\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,172.00,146.00,1096.00,,,,,,\n2015,5,14,\"DL\",\"1919\",\"LGA\",\"MSP\",-5.00,-7.00,0.00,\"\",0.00,180.00,152.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"1930\",\"LGA\",\"MIA\",-6.00,-30.00,0.00,\"\",0.00,174.00,147.00,1096.00,,,,,,\n2015,5,14,\"DL\",\"1935\",\"LGA\",\"TPA\",0.00,-10.00,0.00,\"\",0.00,172.00,140.00,1010.00,,,,,,\n2015,5,15,\"DL\",\"1486\",\"ATL\",\"LGA\",10.00,15.00,0.00,\"\",0.00,144.00,104.00,762.00,10.00,0.00,5.00,0.00,0.00,\n2015,5,15,\"DL\",\"1487\",\"ATL\",\"JFK\",5.00,-13.00,0.00,\"\",0.00,126.00,101.00,760.00,,,,,,\n2015,5,15,\"DL\",\"1496\",\"MSP\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,152.00,126.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"1498\",\"FLL\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,173.00,146.00,1076.00,,,,,,\n2015,5,15,\"DL\",\"1514\",\"LGA\",\"FLL\",1.00,-14.00,0.00,\"\",0.00,174.00,145.00,1076.00,,,,,,\n2015,5,15,\"DL\",\"1515\",\"ATL\",\"ALB\",-2.00,-17.00,0.00,\"\",0.00,132.00,114.00,853.00,,,,,,\n2015,5,15,\"DL\",\"1526\",\"MCO\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,160.00,127.00,950.00,,,,,,\n2015,5,15,\"DL\",\"1542\",\"SEA\",\"JFK\",7.00,-7.00,0.00,\"\",0.00,310.00,288.00,2422.00,,,,,,\n2015,5,15,\"DL\",\"1543\",\"ATL\",\"ALB\",1.00,-7.00,0.00,\"\",0.00,136.00,112.00,853.00,,,,,,\n2015,5,15,\"DL\",\"1543\",\"ALB\",\"ATL\",-4.00,-12.00,0.00,\"\",0.00,154.00,130.00,853.00,,,,,,\n2015,5,15,\"DL\",\"1548\",\"LGA\",\"DTW\",37.00,21.00,0.00,\"\",0.00,104.00,86.00,502.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,15,\"DL\",\"1560\",\"MSY\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,173.00,151.00,1183.00,,,,,,\n2015,5,15,\"DL\",\"1562\",\"BOS\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,68.00,39.00,187.00,,,,,,\n2015,5,15,\"DL\",\"1566\",\"LGA\",\"PBI\",78.00,73.00,0.00,\"\",0.00,178.00,141.00,1035.00,73.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"DL\",\"1580\",\"LGA\",\"DTW\",0.00,-11.00,0.00,\"\",0.00,114.00,87.00,502.00,,,,,,\n2015,5,15,\"DL\",\"1583\",\"SFO\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,337.00,310.00,2586.00,,,,,,\n2015,5,15,\"DL\",\"1584\",\"ATL\",\"ROC\",4.00,-14.00,0.00,\"\",0.00,115.00,100.00,749.00,,,,,,\n2015,5,15,\"DL\",\"1584\",\"ROC\",\"ATL\",-3.00,-20.00,0.00,\"\",0.00,118.00,102.00,749.00,,,,,,\n2015,5,15,\"DL\",\"1586\",\"ATL\",\"LGA\",20.00,11.00,0.00,\"\",0.00,135.00,101.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1596\",\"MSP\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,153.00,122.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"1644\",\"FLL\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,162.00,143.00,1069.00,,,,,,\n2015,5,15,\"DL\",\"1647\",\"LGA\",\"ATL\",-1.00,-12.00,0.00,\"\",0.00,141.00,115.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1671\",\"MIA\",\"JFK\",8.00,-5.00,0.00,\"\",0.00,174.00,142.00,1089.00,,,,,,\n2015,5,15,\"DL\",\"1672\",\"ATL\",\"BUF\",-2.00,-2.00,0.00,\"\",0.00,119.00,98.00,712.00,,,,,,\n2015,5,15,\"DL\",\"1672\",\"BUF\",\"ATL\",7.00,2.00,0.00,\"\",0.00,123.00,105.00,712.00,,,,,,\n2015,5,15,\"DL\",\"1685\",\"LGA\",\"MCO\",-3.00,-16.00,0.00,\"\",0.00,162.00,135.00,950.00,,,,,,\n2015,5,15,\"DL\",\"1697\",\"LGA\",\"ATL\",3.00,-19.00,0.00,\"\",0.00,136.00,107.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1728\",\"LAS\",\"JFK\",31.00,9.00,0.00,\"\",0.00,279.00,258.00,2248.00,,,,,,\n2015,5,15,\"DL\",\"1750\",\"ATL\",\"JFK\",5.00,-14.00,0.00,\"\",0.00,130.00,112.00,760.00,,,,,,\n2015,5,15,\"DL\",\"1762\",\"LAX\",\"JFK\",-2.00,-30.00,0.00,\"\",0.00,307.00,280.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"2404\",\"SAN\",\"JFK\",-6.00,-11.00,0.00,\"\",0.00,329.00,286.00,2446.00,,,,,,\n2015,5,13,\"DL\",\"2405\",\"PHX\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,278.00,255.00,2153.00,,,,,,\n2015,5,13,\"DL\",\"2406\",\"TPA\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,160.00,134.00,1010.00,,,,,,\n2015,5,13,\"DL\",\"2413\",\"MIA\",\"LGA\",11.00,11.00,0.00,\"\",0.00,180.00,147.00,1096.00,,,,,,\n2015,5,13,\"DL\",\"2432\",\"DTW\",\"SYR\",13.00,14.00,0.00,\"\",0.00,80.00,56.00,374.00,,,,,,\n2015,5,13,\"DL\",\"2435\",\"JFK\",\"FLL\",-6.00,-19.00,0.00,\"\",0.00,190.00,152.00,1069.00,,,,,,\n2015,5,13,\"DL\",\"2450\",\"MCO\",\"LGA\",-11.00,-20.00,0.00,\"\",0.00,147.00,127.00,950.00,,,,,,\n2015,5,13,\"DL\",\"2464\",\"TPA\",\"JFK\",46.00,46.00,0.00,\"\",0.00,164.00,129.00,1005.00,46.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"DL\",\"2466\",\"ATL\",\"SYR\",0.00,-1.00,0.00,\"\",0.00,136.00,108.00,794.00,,,,,,\n2015,5,13,\"DL\",\"2466\",\"SYR\",\"ATL\",7.00,-22.00,0.00,\"\",0.00,121.00,105.00,794.00,,,,,,\n2015,5,13,\"DL\",\"2473\",\"ATL\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,120.00,103.00,712.00,,,,,,\n2015,5,13,\"DL\",\"2474\",\"JFK\",\"DEN\",14.00,-1.00,0.00,\"\",0.00,269.00,228.00,1626.00,,,,,,\n2015,5,13,\"DL\",\"2480\",\"JFK\",\"TPA\",-6.00,-22.00,0.00,\"\",0.00,170.00,139.00,1005.00,,,,,,\n2015,5,13,\"DL\",\"2495\",\"MIA\",\"JFK\",22.00,24.00,0.00,\"\",0.00,190.00,153.00,1089.00,8.00,0.00,2.00,0.00,14.00,\n2015,5,13,\"DL\",\"2496\",\"ATL\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,124.00,96.00,762.00,,,,,,\n2015,5,13,\"DL\",\"2498\",\"FLL\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,180.00,155.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"2502\",\"FLL\",\"LGA\",-4.00,-26.00,0.00,\"\",0.00,159.00,141.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"2521\",\"SFO\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,336.00,295.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"2554\",\"DEN\",\"JFK\",25.00,-13.00,0.00,\"\",0.00,203.00,183.00,1626.00,,,,,,\n2015,5,13,\"DL\",\"2565\",\"JFK\",\"MSP\",-5.00,-25.00,0.00,\"\",0.00,189.00,165.00,1029.00,,,,,,\n2015,5,13,\"DL\",\"2567\",\"DTW\",\"ALB\",0.00,-2.00,0.00,\"\",0.00,86.00,65.00,489.00,,,,,,\n2015,5,13,\"DL\",\"2569\",\"JFK\",\"PHX\",52.00,42.00,0.00,\"\",0.00,333.00,290.00,2153.00,42.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"DL\",\"2577\",\"JFK\",\"FLL\",166.00,140.00,0.00,\"\",0.00,179.00,137.00,1069.00,0.00,0.00,0.00,0.00,140.00,\n2015,5,13,\"DL\",\"2593\",\"SAT\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,220.00,202.00,1587.00,,,,,,\n2015,5,13,\"DL\",\"2594\",\"DEN\",\"LGA\",78.00,44.00,0.00,\"\",0.00,202.00,184.00,1620.00,1.00,0.00,0.00,0.00,43.00,\n2015,5,13,\"DL\",\"2595\",\"FLL\",\"LGA\",-2.00,-23.00,0.00,\"\",0.00,163.00,142.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"2596\",\"PBI\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,159.00,141.00,1035.00,,,,,,\n2015,5,13,\"DL\",\"2622\",\"ROC\",\"DTW\",-7.00,-20.00,0.00,\"\",0.00,69.00,55.00,296.00,,,,,,\n2015,5,13,\"DL\",\"2632\",\"JFK\",\"MCO\",1.00,7.00,0.00,\"\",0.00,189.00,137.00,944.00,,,,,,\n2015,5,13,\"DL\",\"2634\",\"JFK\",\"BUF\",-8.00,-10.00,0.00,\"\",0.00,101.00,58.00,301.00,,,,,,\n2015,5,13,\"DL\",\"2645\",\"JFK\",\"RSW\",162.00,135.00,0.00,\"\",0.00,174.00,154.00,1074.00,135.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"DL\",\"2649\",\"JFK\",\"TPA\",-6.00,-15.00,0.00,\"\",0.00,179.00,150.00,1005.00,,,,,,\n2015,5,13,\"DL\",\"2650\",\"TPA\",\"JFK\",28.00,6.00,0.00,\"\",0.00,146.00,131.00,1005.00,,,,,,\n2015,5,13,\"DL\",\"2652\",\"TPA\",\"JFK\",10.00,13.00,0.00,\"\",0.00,177.00,142.00,1005.00,,,,,,\n2015,5,13,\"DL\",\"2653\",\"MCO\",\"JFK\",85.00,91.00,0.00,\"\",0.00,172.00,137.00,944.00,0.00,0.00,91.00,0.00,0.00,\n2015,5,13,\"DL\",\"2665\",\"BOS\",\"LGA\",-3.00,7.00,0.00,\"\",0.00,85.00,43.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2666\",\"LGA\",\"BOS\",-5.00,-15.00,0.00,\"\",0.00,56.00,32.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2667\",\"BOS\",\"LGA\",16.00,22.00,0.00,\"\",0.00,85.00,50.00,184.00,0.00,0.00,6.00,0.00,16.00,\n2015,5,13,\"DL\",\"2668\",\"LGA\",\"BOS\",0.00,-4.00,0.00,\"\",0.00,67.00,37.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2669\",\"BOS\",\"LGA\",132.00,129.00,0.00,\"\",0.00,72.00,49.00,184.00,0.00,0.00,0.00,0.00,129.00,\n2015,5,13,\"DL\",\"2670\",\"LGA\",\"BOS\",-1.00,9.00,0.00,\"\",0.00,77.00,36.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2671\",\"BOS\",\"LGA\",-4.00,2.00,0.00,\"\",0.00,85.00,49.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2672\",\"LGA\",\"BOS\",19.00,18.00,0.00,\"\",0.00,81.00,40.00,184.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,13,\"DL\",\"2673\",\"BOS\",\"LGA\",-2.00,6.00,0.00,\"\",0.00,81.00,49.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2674\",\"LGA\",\"BOS\",113.00,105.00,0.00,\"\",0.00,75.00,31.00,184.00,0.00,0.00,0.00,0.00,105.00,\n2015,5,13,\"DL\",\"2675\",\"BOS\",\"LGA\",4.00,9.00,0.00,\"\",0.00,80.00,44.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2676\",\"LGA\",\"BOS\",-1.00,15.00,0.00,\"\",0.00,92.00,35.00,184.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,13,\"DL\",\"2677\",\"BOS\",\"LGA\",106.00,101.00,0.00,\"\",0.00,70.00,44.00,184.00,8.00,0.00,0.00,0.00,93.00,\n2015,5,13,\"DL\",\"2678\",\"LGA\",\"BOS\",-3.00,-1.00,0.00,\"\",0.00,85.00,35.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2679\",\"BOS\",\"LGA\",11.00,-7.00,0.00,\"\",0.00,59.00,37.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2680\",\"LGA\",\"BOS\",-4.00,-10.00,0.00,\"\",0.00,73.00,36.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2681\",\"BOS\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,69.00,45.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2682\",\"LGA\",\"BOS\",-5.00,-11.00,0.00,\"\",0.00,66.00,37.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2683\",\"BOS\",\"LGA\",-2.00,3.00,0.00,\"\",0.00,79.00,49.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2684\",\"LGA\",\"BOS\",-3.00,0.00,0.00,\"\",0.00,78.00,38.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2685\",\"BOS\",\"LGA\",-5.00,10.00,0.00,\"\",0.00,87.00,48.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2686\",\"LGA\",\"BOS\",-1.00,-10.00,0.00,\"\",0.00,73.00,38.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2687\",\"BOS\",\"LGA\",1.00,3.00,0.00,\"\",0.00,78.00,44.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2688\",\"LGA\",\"BOS\",-3.00,14.00,0.00,\"\",0.00,100.00,45.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2689\",\"BOS\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,83.00,51.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2690\",\"LGA\",\"BOS\",-2.00,-16.00,0.00,\"\",0.00,71.00,38.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2691\",\"BOS\",\"LGA\",9.00,7.00,0.00,\"\",0.00,75.00,43.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2692\",\"LGA\",\"BOS\",-2.00,1.00,0.00,\"\",0.00,82.00,39.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2693\",\"BOS\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,79.00,42.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2694\",\"LGA\",\"BOS\",-4.00,6.00,0.00,\"\",0.00,88.00,38.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2696\",\"LGA\",\"BOS\",-6.00,-11.00,0.00,\"\",0.00,63.00,38.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2699\",\"BOS\",\"LGA\",12.00,2.00,0.00,\"\",0.00,66.00,47.00,184.00,,,,,,\n2015,5,13,\"DL\",\"2785\",\"JFK\",\"CHS\",-7.00,-19.00,0.00,\"\",0.00,124.00,94.00,636.00,,,,,,\n2015,5,14,\"DL\",\"42\",\"MIA\",\"JFK\",31.00,20.00,0.00,\"\",0.00,178.00,154.00,1089.00,1.00,0.00,0.00,0.00,19.00,\n2015,5,14,\"DL\",\"208\",\"JFK\",\"MCO\",-2.00,-32.00,0.00,\"\",0.00,157.00,128.00,944.00,,,,,,\n2015,5,14,\"DL\",\"221\",\"LGA\",\"ATL\",15.00,-5.00,0.00,\"\",0.00,145.00,111.00,762.00,,,,,,\n2015,5,14,\"DL\",\"234\",\"PIT\",\"JFK\",27.00,9.00,0.00,\"\",0.00,82.00,64.00,340.00,,,,,,\n2015,5,14,\"DL\",\"326\",\"SJU\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,247.00,221.00,1598.00,,,,,,\n2015,5,14,\"DL\",\"332\",\"SJU\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,239.00,218.00,1598.00,,,,,,\n2015,5,14,\"DL\",\"333\",\"MSP\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,157.00,130.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"342\",\"SFO\",\"JFK\",1.00,-17.00,0.00,\"\",0.00,321.00,295.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"347\",\"LGA\",\"ATL\",-3.00,-10.00,0.00,\"\",0.00,151.00,110.00,762.00,,,,,,\n2015,5,14,\"DL\",\"348\",\"SJU\",\"JFK\",-12.00,-12.00,0.00,\"\",0.00,242.00,223.00,1598.00,,,,,,\n2015,5,14,\"DL\",\"350\",\"LGA\",\"ATL\",-6.00,-15.00,0.00,\"\",0.00,144.00,110.00,762.00,,,,,,\n2015,5,14,\"DL\",\"400\",\"PDX\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,314.00,292.00,2454.00,,,,,,\n2015,5,14,\"DL\",\"401\",\"AUS\",\"JFK\",2.00,-25.00,0.00,\"\",0.00,210.00,190.00,1521.00,,,,,,\n2015,5,14,\"DL\",\"403\",\"PDX\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,321.00,291.00,2454.00,,,,,,\n2015,5,14,\"DL\",\"404\",\"JFK\",\"ATL\",0.00,-14.00,0.00,\"\",0.00,155.00,106.00,760.00,,,,,,\n2015,5,14,\"DL\",\"405\",\"JFK\",\"TPA\",-6.00,-20.00,0.00,\"\",0.00,157.00,139.00,1005.00,,,,,,\n2015,5,14,\"DL\",\"407\",\"MCO\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,153.00,130.00,944.00,,,,,,\n2015,5,14,\"DL\",\"408\",\"JFK\",\"SLC\",13.00,-4.00,0.00,\"\",0.00,288.00,266.00,1990.00,,,,,,\n2015,5,14,\"DL\",\"409\",\"JFK\",\"SJU\",13.00,-31.00,0.00,\"\",0.00,203.00,175.00,1598.00,,,,,,\n2015,5,14,\"DL\",\"410\",\"MSP\",\"JFK\",-1.00,-23.00,0.00,\"\",0.00,145.00,130.00,1029.00,,,,,,\n2015,5,14,\"DL\",\"412\",\"LAX\",\"JFK\",59.00,55.00,0.00,\"\",0.00,335.00,300.00,2475.00,15.00,0.00,0.00,0.00,40.00,\n2015,5,14,\"DL\",\"414\",\"SFO\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,325.00,302.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"415\",\"JFK\",\"SFO\",0.00,-28.00,0.00,\"\",0.00,380.00,347.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"417\",\"JFK\",\"SEA\",4.00,-22.00,0.00,\"\",0.00,356.00,316.00,2422.00,,,,,,\n2015,5,14,\"DL\",\"418\",\"SEA\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,316.00,285.00,2422.00,,,,,,\n2015,5,14,\"DL\",\"419\",\"JFK\",\"SEA\",18.00,-7.00,0.00,\"\",0.00,354.00,319.00,2422.00,,,,,,\n2015,5,14,\"DL\",\"420\",\"JFK\",\"LAX\",0.00,-15.00,0.00,\"\",0.00,383.00,328.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"422\",\"JFK\",\"LAX\",-3.00,-11.00,0.00,\"\",0.00,372.00,321.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"423\",\"JFK\",\"LAX\",2.00,-8.00,0.00,\"\",0.00,363.00,330.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"424\",\"JFK\",\"LAX\",11.00,8.00,0.00,\"\",0.00,367.00,331.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"426\",\"JFK\",\"MCO\",28.00,15.00,0.00,\"\",0.00,159.00,127.00,944.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"DL\",\"427\",\"JFK\",\"LAX\",-1.00,-27.00,0.00,\"\",0.00,362.00,325.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"428\",\"JFK\",\"FLL\",-3.00,-27.00,0.00,\"\",0.00,160.00,143.00,1069.00,,,,,,\n2015,5,14,\"DL\",\"430\",\"JFK\",\"SFO\",-4.00,-23.00,0.00,\"\",0.00,365.00,339.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"431\",\"JFK\",\"SFO\",-4.00,-39.00,0.00,\"\",0.00,374.00,337.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"434\",\"JFK\",\"SFO\",31.00,-3.00,0.00,\"\",0.00,370.00,334.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"435\",\"JFK\",\"SFO\",5.00,-18.00,0.00,\"\",0.00,381.00,333.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"436\",\"JFK\",\"LAS\",-2.00,-5.00,0.00,\"\",0.00,347.00,311.00,2248.00,,,,,,\n2015,5,14,\"DL\",\"437\",\"JFK\",\"BOS\",1.00,-6.00,0.00,\"\",0.00,70.00,38.00,187.00,,,,,,\n2015,5,14,\"DL\",\"438\",\"JFK\",\"MCO\",-3.00,-24.00,0.00,\"\",0.00,147.00,127.00,944.00,,,,,,\n2015,5,14,\"DL\",\"439\",\"JFK\",\"MSP\",-6.00,-23.00,0.00,\"\",0.00,175.00,158.00,1029.00,,,,,,\n2015,5,14,\"DL\",\"440\",\"JFK\",\"PIT\",-6.00,-18.00,0.00,\"\",0.00,109.00,66.00,340.00,,,,,,\n2015,5,14,\"DL\",\"441\",\"JFK\",\"MIA\",0.00,-21.00,0.00,\"\",0.00,160.00,144.00,1089.00,,,,,,\n2015,5,14,\"DL\",\"442\",\"JFK\",\"AUS\",79.00,54.00,0.00,\"\",0.00,239.00,204.00,1521.00,25.00,0.00,0.00,0.00,29.00,\n2015,5,14,\"DL\",\"443\",\"JFK\",\"LAS\",-1.00,-30.00,0.00,\"\",0.00,325.00,294.00,2248.00,,,,,,\n2015,5,14,\"DL\",\"444\",\"SLC\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,256.00,238.00,1990.00,,,,,,\n2015,5,14,\"DL\",\"447\",\"JFK\",\"LAX\",11.00,2.00,0.00,\"\",0.00,381.00,319.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"448\",\"JFK\",\"SEA\",-2.00,-24.00,0.00,\"\",0.00,338.00,312.00,2422.00,,,,,,\n2015,5,14,\"DL\",\"453\",\"JFK\",\"CHS\",-1.00,-16.00,0.00,\"\",0.00,124.00,88.00,636.00,,,,,,\n2015,5,14,\"DL\",\"454\",\"JFK\",\"STT\",8.00,-5.00,0.00,\"\",0.00,233.00,183.00,1623.00,,,,,,\n2015,5,14,\"DL\",\"455\",\"JFK\",\"DEN\",-5.00,-9.00,0.00,\"\",0.00,278.00,226.00,1626.00,,,,,,\n2015,5,14,\"DL\",\"456\",\"JFK\",\"SEA\",-9.00,-29.00,0.00,\"\",0.00,343.00,325.00,2422.00,,,,,,\n2015,5,14,\"DL\",\"459\",\"JFK\",\"SAN\",4.00,4.00,0.00,\"\",0.00,375.00,335.00,2446.00,,,,,,\n2015,5,14,\"DL\",\"460\",\"JFK\",\"SLC\",3.00,-17.00,0.00,\"\",0.00,305.00,264.00,1990.00,,,,,,\n2015,5,14,\"DL\",\"462\",\"JFK\",\"PDX\",14.00,,0.00,\"\",1.00,,,2454.00,,,,,,\n2015,5,14,\"DL\",\"463\",\"JFK\",\"LAS\",15.00,-3.00,0.00,\"\",0.00,338.00,292.00,2248.00,,,,,,\n2015,5,14,\"DL\",\"465\",\"JFK\",\"ATL\",-6.00,-22.00,0.00,\"\",0.00,136.00,107.00,760.00,,,,,,\n2015,5,14,\"DL\",\"466\",\"SLC\",\"JFK\",18.00,5.00,0.00,\"\",0.00,264.00,233.00,1990.00,,,,,,\n2015,5,14,\"DL\",\"468\",\"SFO\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,334.00,309.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"469\",\"JFK\",\"SFO\",-4.00,-20.00,0.00,\"\",0.00,374.00,336.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"472\",\"JFK\",\"LAX\",-6.00,0.00,0.00,\"\",0.00,391.00,329.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"476\",\"LAX\",\"JFK\",33.00,7.00,0.00,\"\",0.00,309.00,279.00,2475.00,,,,,,\n2015,5,14,\"DL\",\"477\",\"JFK\",\"LAX\",16.00,20.00,0.00,\"\",0.00,399.00,343.00,2475.00,16.00,0.00,4.00,0.00,0.00,\n2015,5,14,\"DL\",\"478\",\"ATL\",\"JFK\",21.00,-6.00,0.00,\"\",0.00,125.00,104.00,760.00,,,,,,\n2015,5,14,\"DL\",\"480\",\"JFK\",\"SJU\",5.00,-34.00,0.00,\"\",0.00,195.00,177.00,1598.00,,,,,,\n2015,5,14,\"DL\",\"482\",\"JFK\",\"LAS\",0.00,-37.00,0.00,\"\",0.00,316.00,295.00,2248.00,,,,,,\n2015,5,14,\"DL\",\"486\",\"JFK\",\"LAS\",-3.00,-8.00,0.00,\"\",0.00,327.00,303.00,2248.00,,,,,,\n2015,5,14,\"DL\",\"488\",\"JFK\",\"SJU\",-1.00,-11.00,0.00,\"\",0.00,217.00,184.00,1598.00,,,,,,\n2015,5,14,\"DL\",\"491\",\"JFK\",\"SJU\",-9.00,-22.00,0.00,\"\",0.00,225.00,179.00,1598.00,,,,,,\n2015,5,14,\"DL\",\"492\",\"JFK\",\"SJU\",15.00,-15.00,0.00,\"\",0.00,212.00,184.00,1598.00,,,,,,\n2015,5,14,\"DL\",\"495\",\"JFK\",\"ATL\",0.00,-30.00,0.00,\"\",0.00,139.00,108.00,760.00,,,,,,\n2015,5,14,\"DL\",\"496\",\"JFK\",\"BOS\",-5.00,-18.00,0.00,\"\",0.00,70.00,40.00,187.00,,,,,,\n2015,5,14,\"DL\",\"497\",\"JFK\",\"ATL\",-6.00,-24.00,0.00,\"\",0.00,135.00,111.00,760.00,,,,,,\n2015,5,14,\"DL\",\"498\",\"JFK\",\"SFO\",-2.00,-25.00,0.00,\"\",0.00,385.00,344.00,2586.00,,,,,,\n2015,5,14,\"DL\",\"499\",\"JFK\",\"SLC\",-6.00,-24.00,0.00,\"\",0.00,292.00,263.00,1990.00,,,,,,\n2015,5,14,\"DL\",\"511\",\"SJU\",\"JFK\",-8.00,-8.00,0.00,\"\",0.00,249.00,217.00,1598.00,,,,,,\n2015,5,14,\"DL\",\"527\",\"RSW\",\"JFK\",-1.00,0.00,0.00,\"\",0.00,165.00,144.00,1074.00,,,,,,\n2015,5,14,\"DL\",\"528\",\"LGA\",\"MSP\",23.00,30.00,0.00,\"\",0.00,192.00,151.00,1020.00,12.00,0.00,7.00,0.00,11.00,\n2015,5,14,\"DL\",\"541\",\"LAS\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,279.00,261.00,2248.00,,,,,,\n2015,5,14,\"DL\",\"544\",\"ALB\",\"ATL\",-6.00,-2.00,0.00,\"\",0.00,159.00,124.00,853.00,,,,,,\n2015,5,14,\"DL\",\"582\",\"DTW\",\"LGA\",22.00,22.00,0.00,\"\",0.00,107.00,79.00,502.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"DL\",\"583\",\"LGA\",\"DTW\",-1.00,10.00,0.00,\"\",0.00,125.00,84.00,502.00,,,,,,\n2015,5,14,\"DL\",\"662\",\"BUF\",\"MSP\",-6.00,-16.00,0.00,\"\",0.00,134.00,112.00,735.00,,,,,,\n2015,5,14,\"DL\",\"664\",\"TPA\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,149.00,134.00,1010.00,,,,,,\n2015,5,14,\"DL\",\"665\",\"ATL\",\"ALB\",-1.00,-8.00,0.00,\"\",0.00,133.00,111.00,853.00,,,,,,\n2015,5,14,\"DL\",\"665\",\"ALB\",\"ATL\",-5.00,-14.00,0.00,\"\",0.00,143.00,126.00,853.00,,,,,,\n2015,5,14,\"DL\",\"676\",\"STT\",\"JFK\",-1.00,3.00,0.00,\"\",0.00,256.00,231.00,1623.00,,,,,,\n2015,5,14,\"DL\",\"707\",\"DTW\",\"ALB\",1.00,-17.00,0.00,\"\",0.00,79.00,64.00,489.00,,,,,,\n2015,5,14,\"DL\",\"707\",\"ALB\",\"DTW\",-7.00,-25.00,0.00,\"\",0.00,92.00,74.00,489.00,,,,,,\n2015,5,14,\"DL\",\"714\",\"DTW\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,101.00,70.00,502.00,,,,,,\n2015,5,14,\"DL\",\"723\",\"ATL\",\"BUF\",-3.00,-15.00,0.00,\"\",0.00,115.00,97.00,712.00,,,,,,\n2015,5,14,\"DL\",\"723\",\"BUF\",\"ATL\",-2.00,-17.00,0.00,\"\",0.00,116.00,99.00,712.00,,,,,,\n2015,5,14,\"DL\",\"725\",\"ATL\",\"LGA\",26.00,19.00,0.00,\"\",0.00,127.00,102.00,762.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"DL\",\"729\",\"LAS\",\"JFK\",46.00,24.00,0.00,\"\",0.00,283.00,268.00,2248.00,5.00,0.00,0.00,0.00,19.00,\n2015,5,14,\"DL\",\"731\",\"LGA\",\"DTW\",-1.00,-2.00,0.00,\"\",0.00,113.00,91.00,502.00,,,,,,\n2015,5,14,\"DL\",\"750\",\"BOS\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,62.00,38.00,187.00,,,,,,\n2015,5,14,\"DL\",\"763\",\"BOS\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,77.00,41.00,187.00,,,,,,\n2015,5,14,\"DL\",\"772\",\"PBI\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,161.00,142.00,1035.00,,,,,,\n2015,5,14,\"DL\",\"782\",\"MIA\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,176.00,151.00,1089.00,,,,,,\n2015,5,14,\"DL\",\"787\",\"MCO\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,149.00,130.00,944.00,,,,,,\n2015,5,14,\"DL\",\"789\",\"MIA\",\"LGA\",25.00,25.00,0.00,\"\",0.00,188.00,146.00,1096.00,5.00,0.00,0.00,0.00,20.00,\n2015,5,14,\"DL\",\"791\",\"LAX\",\"JFK\",108.00,84.00,0.00,\"\",0.00,306.00,285.00,2475.00,84.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"DL\",\"792\",\"PBI\",\"JFK\",-1.00,3.00,0.00,\"\",0.00,171.00,140.00,1028.00,,,,,,\n2015,5,14,\"DL\",\"793\",\"BOS\",\"JFK\",45.00,27.00,0.00,\"\",0.00,76.00,46.00,187.00,0.00,0.00,4.00,0.00,23.00,\n2015,5,14,\"DL\",\"802\",\"ATL\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,129.00,104.00,762.00,,,,,,\n2015,5,14,\"DL\",\"804\",\"LGA\",\"MSP\",-7.00,-24.00,0.00,\"\",0.00,177.00,145.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"856\",\"SAN\",\"JFK\",5.00,16.00,0.00,\"\",0.00,348.00,283.00,2446.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,14,\"DL\",\"871\",\"MSP\",\"LGA\",0.00,-6.00,0.00,\"\",0.00,158.00,133.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"874\",\"LGA\",\"MIA\",0.00,-13.00,0.00,\"\",0.00,192.00,145.00,1096.00,,,,,,\n2015,5,14,\"DL\",\"878\",\"RSW\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,172.00,146.00,1080.00,,,,,,\n2015,5,14,\"DL\",\"884\",\"LGA\",\"DEN\",2.00,-15.00,0.00,\"\",0.00,257.00,221.00,1620.00,,,,,,\n2015,5,14,\"DL\",\"889\",\"MSP\",\"LGA\",30.00,11.00,0.00,\"\",0.00,142.00,124.00,1020.00,,,,,,\n2015,5,14,\"DL\",\"904\",\"LGA\",\"ATL\",-5.00,-7.00,0.00,\"\",0.00,147.00,108.00,762.00,,,,,,\n2015,5,14,\"DL\",\"906\",\"ATL\",\"LGA\",10.00,-10.00,0.00,\"\",0.00,125.00,99.00,762.00,,,,,,\n2015,5,14,\"DL\",\"909\",\"LGA\",\"MIA\",18.00,20.00,0.00,\"\",0.00,196.00,156.00,1096.00,7.00,0.00,2.00,0.00,11.00,\n2015,5,14,\"DL\",\"910\",\"MCO\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,151.00,134.00,950.00,,,,,,\n2015,5,14,\"DL\",\"928\",\"DEN\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,227.00,194.00,1620.00,,,,,,\n2015,5,14,\"DL\",\"939\",\"MCO\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,154.00,129.00,950.00,,,,,,\n2015,5,14,\"DL\",\"964\",\"LGA\",\"ATL\",-2.00,-12.00,0.00,\"\",0.00,136.00,103.00,762.00,,,,,,\n2015,5,14,\"DL\",\"965\",\"MCO\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,151.00,126.00,950.00,,,,,,\n2015,5,14,\"DL\",\"971\",\"LGA\",\"DEN\",0.00,-9.00,0.00,\"\",0.00,258.00,215.00,1620.00,,,,,,\n2015,5,14,\"DL\",\"986\",\"ATL\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,126.00,107.00,762.00,,,,,,\n2015,5,14,\"DL\",\"997\",\"DTW\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,98.00,73.00,502.00,,,,,,\n2015,5,14,\"DL\",\"1086\",\"LGA\",\"ATL\",-2.00,-6.00,0.00,\"\",0.00,158.00,112.00,762.00,,,,,,\n2015,5,14,\"DL\",\"1088\",\"FLL\",\"LGA\",-9.00,-8.00,0.00,\"\",0.00,178.00,152.00,1076.00,,,,,,\n2015,5,14,\"DL\",\"1109\",\"SEA\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,317.00,289.00,2422.00,,,,,,\n2015,5,14,\"DL\",\"1111\",\"ATL\",\"ROC\",0.00,-21.00,0.00,\"\",0.00,109.00,92.00,749.00,,,,,,\n2015,5,14,\"DL\",\"1121\",\"PBI\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,176.00,145.00,1035.00,,,,,,\n2015,5,14,\"DL\",\"1131\",\"LGA\",\"FLL\",-2.00,2.00,0.00,\"\",0.00,196.00,141.00,1076.00,,,,,,\n2015,5,16,\"DL\",\"2181\",\"LGA\",\"MCO\",-2.00,-19.00,0.00,\"\",0.00,150.00,126.00,950.00,,,,,,\n2015,5,16,\"DL\",\"2184\",\"JFK\",\"SAN\",35.00,61.00,0.00,\"\",0.00,397.00,329.00,2446.00,35.00,0.00,26.00,0.00,0.00,\n2015,5,16,\"DL\",\"2185\",\"FLL\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,165.00,143.00,1069.00,,,,,,\n2015,5,16,\"DL\",\"2186\",\"ATL\",\"LGA\",4.00,4.00,0.00,\"\",0.00,141.00,106.00,762.00,,,,,,\n2015,5,16,\"DL\",\"2190\",\"JFK\",\"MIA\",16.00,3.00,0.00,\"\",0.00,183.00,148.00,1089.00,,,,,,\n2015,5,16,\"DL\",\"2201\",\"JFK\",\"BOS\",19.00,-12.00,0.00,\"\",0.00,67.00,42.00,187.00,,,,,,\n2015,5,16,\"DL\",\"2214\",\"ATL\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,128.00,107.00,762.00,,,,,,\n2015,5,16,\"DL\",\"2223\",\"JFK\",\"SJU\",-1.00,-37.00,0.00,\"\",0.00,203.00,185.00,1598.00,,,,,,\n2015,5,16,\"DL\",\"2231\",\"LGA\",\"DTW\",-2.00,18.00,0.00,\"\",0.00,144.00,105.00,502.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,16,\"DL\",\"2240\",\"SFO\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,325.00,298.00,2586.00,,,,,,\n2015,5,16,\"DL\",\"2248\",\"DTW\",\"LGA\",5.00,17.00,0.00,\"\",0.00,117.00,82.00,502.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,16,\"DL\",\"2255\",\"JFK\",\"AUS\",-3.00,-19.00,0.00,\"\",0.00,245.00,205.00,1521.00,,,,,,\n2015,5,16,\"DL\",\"2270\",\"LGA\",\"RSW\",-2.00,-3.00,0.00,\"\",0.00,192.00,152.00,1080.00,,,,,,\n2015,5,16,\"DL\",\"2276\",\"MCO\",\"JFK\",-10.00,-13.00,0.00,\"\",0.00,163.00,137.00,944.00,,,,,,\n2015,5,16,\"DL\",\"2277\",\"JFK\",\"TPA\",0.00,-29.00,0.00,\"\",0.00,161.00,135.00,1005.00,,,,,,\n2015,5,16,\"DL\",\"2280\",\"LGA\",\"TPA\",0.00,-15.00,0.00,\"\",0.00,157.00,133.00,1010.00,,,,,,\n2015,5,14,\"DL\",\"2554\",\"DEN\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,221.00,193.00,1626.00,,,,,,\n2015,5,14,\"DL\",\"2565\",\"JFK\",\"MSP\",-3.00,-32.00,0.00,\"\",0.00,180.00,152.00,1029.00,,,,,,\n2015,5,14,\"DL\",\"2567\",\"DTW\",\"ALB\",-6.00,-12.00,0.00,\"\",0.00,82.00,64.00,489.00,,,,,,\n2015,5,14,\"DL\",\"2569\",\"JFK\",\"PHX\",-2.00,-29.00,0.00,\"\",0.00,316.00,288.00,2153.00,,,,,,\n2015,5,14,\"DL\",\"2571\",\"JFK\",\"SLC\",8.00,-15.00,0.00,\"\",0.00,302.00,270.00,1990.00,,,,,,\n2015,5,14,\"DL\",\"2577\",\"JFK\",\"FLL\",14.00,-21.00,0.00,\"\",0.00,170.00,141.00,1069.00,,,,,,\n2015,5,14,\"DL\",\"2593\",\"SAT\",\"JFK\",-5.00,-31.00,0.00,\"\",0.00,212.00,196.00,1587.00,,,,,,\n2015,5,14,\"DL\",\"2594\",\"DEN\",\"LGA\",32.00,-4.00,0.00,\"\",0.00,200.00,183.00,1620.00,,,,,,\n2015,5,14,\"DL\",\"2595\",\"FLL\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,183.00,154.00,1076.00,,,,,,\n2015,5,14,\"DL\",\"2596\",\"PBI\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,174.00,145.00,1035.00,,,,,,\n2015,5,14,\"DL\",\"2622\",\"ROC\",\"DTW\",-3.00,-23.00,0.00,\"\",0.00,62.00,46.00,296.00,,,,,,\n2015,5,14,\"DL\",\"2627\",\"JFK\",\"PDX\",-8.00,-29.00,0.00,\"\",0.00,349.00,331.00,2454.00,,,,,,\n2015,5,14,\"DL\",\"2632\",\"JFK\",\"MCO\",-2.00,-14.00,0.00,\"\",0.00,171.00,127.00,944.00,,,,,,\n2015,5,14,\"DL\",\"2634\",\"JFK\",\"BUF\",22.00,4.00,0.00,\"\",0.00,85.00,53.00,301.00,,,,,,\n2015,5,14,\"DL\",\"2645\",\"JFK\",\"RSW\",-5.00,-10.00,0.00,\"\",0.00,196.00,148.00,1074.00,,,,,,\n2015,5,14,\"DL\",\"2649\",\"JFK\",\"TPA\",-7.00,-20.00,0.00,\"\",0.00,175.00,141.00,1005.00,,,,,,\n2015,5,14,\"DL\",\"2650\",\"TPA\",\"JFK\",73.00,77.00,0.00,\"\",0.00,172.00,138.00,1005.00,67.00,0.00,4.00,0.00,6.00,\n2015,5,14,\"DL\",\"2652\",\"TPA\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,168.00,133.00,1005.00,,,,,,\n2015,5,14,\"DL\",\"2653\",\"MCO\",\"JFK\",27.00,47.00,0.00,\"\",0.00,186.00,125.00,944.00,12.00,0.00,20.00,0.00,15.00,\n2015,5,14,\"DL\",\"2665\",\"BOS\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,77.00,47.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2666\",\"LGA\",\"BOS\",-1.00,-11.00,0.00,\"\",0.00,56.00,34.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2667\",\"BOS\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,77.00,45.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2668\",\"LGA\",\"BOS\",-2.00,-6.00,0.00,\"\",0.00,67.00,38.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2669\",\"BOS\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,67.00,41.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2670\",\"LGA\",\"BOS\",-2.00,-9.00,0.00,\"\",0.00,60.00,37.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2671\",\"BOS\",\"LGA\",-1.00,11.00,0.00,\"\",0.00,91.00,44.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2672\",\"LGA\",\"BOS\",0.00,-6.00,0.00,\"\",0.00,76.00,34.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2673\",\"BOS\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,74.00,50.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2674\",\"LGA\",\"BOS\",-7.00,1.00,0.00,\"\",0.00,91.00,33.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2675\",\"BOS\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,64.00,40.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2676\",\"LGA\",\"BOS\",4.00,17.00,0.00,\"\",0.00,89.00,36.00,184.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,14,\"DL\",\"2677\",\"BOS\",\"LGA\",2.00,-9.00,0.00,\"\",0.00,64.00,40.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2678\",\"LGA\",\"BOS\",0.00,-5.00,0.00,\"\",0.00,78.00,35.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2679\",\"BOS\",\"LGA\",5.00,-8.00,0.00,\"\",0.00,64.00,37.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2680\",\"LGA\",\"BOS\",-2.00,-10.00,0.00,\"\",0.00,71.00,43.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2681\",\"BOS\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,75.00,38.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2682\",\"LGA\",\"BOS\",-2.00,-7.00,0.00,\"\",0.00,67.00,35.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2683\",\"BOS\",\"LGA\",-4.00,3.00,0.00,\"\",0.00,81.00,42.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2684\",\"LGA\",\"BOS\",-1.00,-11.00,0.00,\"\",0.00,65.00,36.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2685\",\"BOS\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,65.00,43.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2686\",\"LGA\",\"BOS\",-3.00,-20.00,0.00,\"\",0.00,65.00,35.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2687\",\"BOS\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,62.00,41.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2688\",\"LGA\",\"BOS\",0.00,-6.00,0.00,\"\",0.00,77.00,37.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2689\",\"BOS\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,83.00,44.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2690\",\"LGA\",\"BOS\",2.00,-17.00,0.00,\"\",0.00,66.00,35.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2691\",\"BOS\",\"LGA\",0.00,2.00,0.00,\"\",0.00,79.00,41.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2692\",\"LGA\",\"BOS\",-2.00,-11.00,0.00,\"\",0.00,70.00,37.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2693\",\"BOS\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,64.00,42.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2694\",\"LGA\",\"BOS\",5.00,-5.00,0.00,\"\",0.00,68.00,41.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2696\",\"LGA\",\"BOS\",-6.00,3.00,0.00,\"\",0.00,77.00,45.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2699\",\"BOS\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,66.00,44.00,184.00,,,,,,\n2015,5,14,\"DL\",\"2785\",\"JFK\",\"CHS\",1.00,-24.00,0.00,\"\",0.00,111.00,89.00,636.00,,,,,,\n2015,5,15,\"DL\",\"2\",\"JFK\",\"PDX\",-4.00,-20.00,0.00,\"\",0.00,362.00,331.00,2454.00,,,,,,\n2015,5,15,\"DL\",\"42\",\"MIA\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,179.00,148.00,1089.00,,,,,,\n2015,5,15,\"DL\",\"208\",\"JFK\",\"MCO\",-8.00,-24.00,0.00,\"\",0.00,171.00,127.00,944.00,,,,,,\n2015,5,15,\"DL\",\"221\",\"LGA\",\"ATL\",9.00,-17.00,0.00,\"\",0.00,139.00,108.00,762.00,,,,,,\n2015,5,15,\"DL\",\"234\",\"PIT\",\"JFK\",3.00,4.00,0.00,\"\",0.00,101.00,66.00,340.00,,,,,,\n2015,5,15,\"DL\",\"326\",\"SJU\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,228.00,210.00,1598.00,,,,,,\n2015,5,15,\"DL\",\"332\",\"SJU\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,236.00,208.00,1598.00,,,,,,\n2015,5,15,\"DL\",\"333\",\"MSP\",\"LGA\",3.00,-10.00,0.00,\"\",0.00,150.00,125.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"342\",\"SFO\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,334.00,307.00,2586.00,,,,,,\n2015,5,15,\"DL\",\"347\",\"LGA\",\"ATL\",-5.00,-21.00,0.00,\"\",0.00,142.00,116.00,762.00,,,,,,\n2015,5,15,\"DL\",\"2292\",\"JFK\",\"PBI\",-8.00,-8.00,0.00,\"\",0.00,187.00,143.00,1028.00,,,,,,\n2015,5,15,\"DL\",\"2296\",\"MSP\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,149.00,131.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"2301\",\"JFK\",\"SAT\",-8.00,-30.00,0.00,\"\",0.00,247.00,220.00,1587.00,,,,,,\n2015,5,15,\"DL\",\"2306\",\"JFK\",\"TPA\",-6.00,-8.00,0.00,\"\",0.00,184.00,134.00,1005.00,,,,,,\n2015,5,15,\"DL\",\"2311\",\"JFK\",\"MIA\",-1.00,-40.00,0.00,\"\",0.00,167.00,141.00,1089.00,,,,,,\n2015,5,15,\"DL\",\"2312\",\"JFK\",\"DTW\",-5.00,-37.00,0.00,\"\",0.00,108.00,86.00,509.00,,,,,,\n2015,5,15,\"DL\",\"2317\",\"PBI\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,160.00,140.00,1035.00,,,,,,\n2015,5,15,\"DL\",\"2319\",\"LGA\",\"MSP\",-5.00,-38.00,0.00,\"\",0.00,162.00,141.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"2331\",\"LGA\",\"DTW\",202.00,176.00,0.00,\"\",0.00,98.00,78.00,502.00,176.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"DL\",\"2340\",\"JFK\",\"MCO\",-7.00,-28.00,0.00,\"\",0.00,169.00,126.00,944.00,,,,,,\n2015,5,15,\"DL\",\"2349\",\"DTW\",\"LGA\",156.00,170.00,0.00,\"\",0.00,120.00,70.00,502.00,0.00,0.00,14.00,0.00,156.00,\n2015,5,15,\"DL\",\"2350\",\"ATL\",\"JFK\",6.00,-2.00,0.00,\"\",0.00,127.00,100.00,760.00,,,,,,\n2015,5,15,\"DL\",\"2352\",\"LAS\",\"JFK\",0.00,-29.00,0.00,\"\",0.00,284.00,262.00,2248.00,,,,,,\n2015,5,15,\"DL\",\"2354\",\"SLC\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,253.00,231.00,1990.00,,,,,,\n2015,5,15,\"DL\",\"2362\",\"LAX\",\"JFK\",0.00,-25.00,0.00,\"\",0.00,305.00,283.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"2382\",\"JFK\",\"FLL\",-3.00,-34.00,0.00,\"\",0.00,170.00,144.00,1069.00,,,,,,\n2015,5,15,\"DL\",\"2386\",\"ATL\",\"LGA\",8.00,-5.00,0.00,\"\",0.00,125.00,95.00,762.00,,,,,,\n2015,5,15,\"DL\",\"2390\",\"JFK\",\"DEN\",142.00,,0.00,\"\",1.00,,,1626.00,,,,,,\n2015,5,15,\"DL\",\"2395\",\"LGA\",\"PBI\",10.00,1.00,0.00,\"\",0.00,171.00,138.00,1035.00,,,,,,\n2015,5,15,\"DL\",\"2400\",\"JFK\",\"PIT\",1.00,-16.00,0.00,\"\",0.00,104.00,64.00,340.00,,,,,,\n2015,5,15,\"DL\",\"2404\",\"SAN\",\"JFK\",0.00,-25.00,0.00,\"\",0.00,309.00,279.00,2446.00,,,,,,\n2015,5,15,\"DL\",\"2405\",\"PHX\",\"JFK\",-5.00,5.00,0.00,\"\",0.00,305.00,253.00,2153.00,,,,,,\n2015,5,15,\"DL\",\"2406\",\"TPA\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,155.00,135.00,1010.00,,,,,,\n2015,5,15,\"DL\",\"2413\",\"MIA\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,174.00,146.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"2424\",\"JFK\",\"ATL\",-3.00,-33.00,0.00,\"\",0.00,142.00,108.00,760.00,,,,,,\n2015,5,15,\"DL\",\"2432\",\"DTW\",\"SYR\",-7.00,-9.00,0.00,\"\",0.00,77.00,55.00,374.00,,,,,,\n2015,5,15,\"DL\",\"2435\",\"JFK\",\"FLL\",-4.00,-15.00,0.00,\"\",0.00,192.00,148.00,1069.00,,,,,,\n2015,5,15,\"DL\",\"2447\",\"DEN\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,218.00,194.00,1626.00,,,,,,\n2015,5,15,\"DL\",\"2450\",\"MCO\",\"LGA\",9.00,4.00,0.00,\"\",0.00,151.00,127.00,950.00,,,,,,\n2015,5,15,\"DL\",\"2464\",\"TPA\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,160.00,134.00,1005.00,,,,,,\n2015,5,15,\"DL\",\"2466\",\"ATL\",\"SYR\",0.00,-7.00,0.00,\"\",0.00,130.00,101.00,794.00,,,,,,\n2015,5,15,\"DL\",\"2466\",\"SYR\",\"ATL\",1.00,-19.00,0.00,\"\",0.00,130.00,110.00,794.00,,,,,,\n2015,5,15,\"DL\",\"2473\",\"ATL\",\"BUF\",0.00,-6.00,0.00,\"\",0.00,122.00,103.00,712.00,,,,,,\n2015,5,15,\"DL\",\"2474\",\"JFK\",\"DEN\",4.00,-2.00,0.00,\"\",0.00,278.00,242.00,1626.00,,,,,,\n2015,5,15,\"DL\",\"2495\",\"MIA\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,178.00,150.00,1089.00,,,,,,\n2015,5,15,\"DL\",\"2496\",\"ATL\",\"LGA\",32.00,17.00,0.00,\"\",0.00,124.00,101.00,762.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"DL\",\"2498\",\"FLL\",\"LGA\",3.00,-3.00,0.00,\"\",0.00,177.00,145.00,1076.00,,,,,,\n2015,5,15,\"DL\",\"2502\",\"FLL\",\"LGA\",69.00,57.00,0.00,\"\",0.00,169.00,147.00,1076.00,8.00,0.00,0.00,0.00,49.00,\n2015,5,15,\"DL\",\"2521\",\"SFO\",\"JFK\",50.00,29.00,0.00,\"\",0.00,320.00,297.00,2586.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"DL\",\"2542\",\"JFK\",\"AUS\",80.00,44.00,0.00,\"\",0.00,228.00,201.00,1521.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"DL\",\"2554\",\"DEN\",\"JFK\",20.00,-3.00,0.00,\"\",0.00,218.00,195.00,1626.00,,,,,,\n2015,5,15,\"DL\",\"2565\",\"JFK\",\"MSP\",-3.00,-34.00,0.00,\"\",0.00,178.00,149.00,1029.00,,,,,,\n2015,5,15,\"DL\",\"2567\",\"DTW\",\"ALB\",-5.00,-9.00,0.00,\"\",0.00,84.00,63.00,489.00,,,,,,\n2015,5,15,\"DL\",\"2569\",\"JFK\",\"PHX\",47.00,44.00,0.00,\"\",0.00,340.00,307.00,2153.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"DL\",\"2571\",\"JFK\",\"SLC\",-6.00,-7.00,0.00,\"\",0.00,324.00,292.00,1990.00,,,,,,\n2015,5,15,\"DL\",\"2577\",\"JFK\",\"FLL\",0.00,-32.00,0.00,\"\",0.00,173.00,137.00,1069.00,,,,,,\n2015,5,15,\"DL\",\"2593\",\"SAT\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,237.00,215.00,1587.00,,,,,,\n2015,5,15,\"DL\",\"2594\",\"DEN\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,220.00,189.00,1620.00,,,,,,\n2015,5,15,\"DL\",\"2595\",\"FLL\",\"LGA\",-8.00,-28.00,0.00,\"\",0.00,164.00,139.00,1076.00,,,,,,\n2015,5,15,\"DL\",\"2596\",\"PBI\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,168.00,139.00,1035.00,,,,,,\n2015,5,15,\"DL\",\"2622\",\"ROC\",\"DTW\",7.00,-10.00,0.00,\"\",0.00,65.00,49.00,296.00,,,,,,\n2015,5,15,\"DL\",\"2627\",\"JFK\",\"PDX\",-6.00,2.00,0.00,\"\",0.00,378.00,319.00,2454.00,,,,,,\n2015,5,15,\"DL\",\"2632\",\"JFK\",\"MCO\",12.00,9.00,0.00,\"\",0.00,180.00,136.00,944.00,,,,,,\n2015,5,15,\"DL\",\"2634\",\"JFK\",\"BUF\",-5.00,-30.00,0.00,\"\",0.00,78.00,54.00,301.00,,,,,,\n2015,5,15,\"DL\",\"2645\",\"JFK\",\"RSW\",-5.00,10.00,0.00,\"\",0.00,216.00,156.00,1074.00,,,,,,\n2015,5,15,\"DL\",\"2649\",\"JFK\",\"TPA\",-7.00,-33.00,0.00,\"\",0.00,162.00,135.00,1005.00,,,,,,\n2015,5,15,\"DL\",\"2650\",\"TPA\",\"JFK\",5.00,-5.00,0.00,\"\",0.00,158.00,135.00,1005.00,,,,,,\n2015,5,15,\"DL\",\"2652\",\"TPA\",\"JFK\",13.00,15.00,0.00,\"\",0.00,176.00,138.00,1005.00,0.00,13.00,2.00,0.00,0.00,\n2015,5,15,\"DL\",\"2653\",\"MCO\",\"JFK\",32.00,9.00,0.00,\"\",0.00,143.00,125.00,944.00,,,,,,\n2015,5,15,\"DL\",\"2665\",\"BOS\",\"LGA\",-1.00,8.00,0.00,\"\",0.00,84.00,39.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2666\",\"LGA\",\"BOS\",46.00,32.00,0.00,\"\",0.00,52.00,36.00,184.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"DL\",\"2667\",\"BOS\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,67.00,42.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2668\",\"LGA\",\"BOS\",-1.00,-10.00,0.00,\"\",0.00,62.00,35.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2669\",\"BOS\",\"LGA\",28.00,12.00,0.00,\"\",0.00,59.00,38.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2670\",\"LGA\",\"BOS\",-2.00,-7.00,0.00,\"\",0.00,62.00,36.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2671\",\"BOS\",\"LGA\",3.00,16.00,0.00,\"\",0.00,92.00,37.00,184.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,15,\"DL\",\"2672\",\"LGA\",\"BOS\",-3.00,-22.00,0.00,\"\",0.00,63.00,38.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2673\",\"BOS\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,65.00,37.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2674\",\"LGA\",\"BOS\",6.00,-10.00,0.00,\"\",0.00,67.00,40.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2675\",\"BOS\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,68.00,37.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2676\",\"LGA\",\"BOS\",18.00,11.00,0.00,\"\",0.00,69.00,42.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2677\",\"BOS\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,66.00,41.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2678\",\"LGA\",\"BOS\",-4.00,-25.00,0.00,\"\",0.00,62.00,34.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2679\",\"BOS\",\"LGA\",3.00,3.00,0.00,\"\",0.00,77.00,38.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2680\",\"LGA\",\"BOS\",-3.00,-24.00,0.00,\"\",0.00,58.00,36.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2681\",\"BOS\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,78.00,43.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2682\",\"LGA\",\"BOS\",0.00,-7.00,0.00,\"\",0.00,65.00,33.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2683\",\"BOS\",\"LGA\",-2.00,8.00,0.00,\"\",0.00,84.00,42.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2684\",\"LGA\",\"BOS\",8.00,-8.00,0.00,\"\",0.00,59.00,34.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2685\",\"BOS\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,68.00,40.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2686\",\"LGA\",\"BOS\",2.00,-19.00,0.00,\"\",0.00,61.00,33.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2687\",\"BOS\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,72.00,44.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2688\",\"LGA\",\"BOS\",3.00,-17.00,0.00,\"\",0.00,63.00,34.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2689\",\"BOS\",\"LGA\",1.00,-11.00,0.00,\"\",0.00,68.00,41.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2690\",\"LGA\",\"BOS\",-4.00,-30.00,0.00,\"\",0.00,59.00,34.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2691\",\"BOS\",\"LGA\",-1.00,15.00,0.00,\"\",0.00,93.00,44.00,184.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,15,\"DL\",\"2692\",\"LGA\",\"BOS\",-1.00,-16.00,0.00,\"\",0.00,64.00,33.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2693\",\"BOS\",\"LGA\",-10.00,-4.00,0.00,\"\",0.00,84.00,41.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2694\",\"LGA\",\"BOS\",-1.00,-16.00,0.00,\"\",0.00,63.00,44.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2696\",\"LGA\",\"BOS\",0.00,-6.00,0.00,\"\",0.00,62.00,42.00,184.00,,,,,,\n2015,5,15,\"DL\",\"2699\",\"BOS\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,75.00,41.00,184.00,,,,,,\n2015,5,16,\"DL\",\"2\",\"JFK\",\"PDX\",-9.00,-15.00,0.00,\"\",0.00,367.00,316.00,2454.00,,,,,,\n2015,5,16,\"DL\",\"42\",\"MIA\",\"JFK\",1.00,-16.00,0.00,\"\",0.00,170.00,142.00,1089.00,,,,,,\n2015,5,16,\"DL\",\"208\",\"JFK\",\"MCO\",0.00,-37.00,0.00,\"\",0.00,147.00,123.00,944.00,,,,,,\n2015,5,16,\"DL\",\"221\",\"LGA\",\"ATL\",-2.00,0.00,0.00,\"\",0.00,164.00,121.00,762.00,,,,,,\n2015,5,16,\"DL\",\"234\",\"PIT\",\"JFK\",26.00,15.00,0.00,\"\",0.00,87.00,64.00,340.00,0.00,15.00,0.00,0.00,0.00,\n2015,5,16,\"DL\",\"326\",\"SJU\",\"JFK\",113.00,109.00,0.00,\"\",0.00,234.00,214.00,1598.00,109.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"DL\",\"332\",\"SJU\",\"JFK\",-9.00,-1.00,0.00,\"\",0.00,254.00,215.00,1598.00,,,,,,\n2015,5,16,\"DL\",\"333\",\"MSP\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,154.00,129.00,1020.00,,,,,,\n2015,5,16,\"DL\",\"342\",\"SFO\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,334.00,309.00,2586.00,,,,,,\n2015,5,16,\"DL\",\"347\",\"LGA\",\"ATL\",0.00,-19.00,0.00,\"\",0.00,136.00,109.00,762.00,,,,,,\n2015,5,16,\"DL\",\"348\",\"SJU\",\"JFK\",-16.00,-20.00,0.00,\"\",0.00,237.00,212.00,1598.00,,,,,,\n2015,5,16,\"DL\",\"350\",\"LGA\",\"ATL\",-3.00,-16.00,0.00,\"\",0.00,137.00,107.00,762.00,,,,,,\n2015,5,16,\"DL\",\"400\",\"PDX\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,329.00,305.00,2454.00,,,,,,\n2015,5,16,\"DL\",\"407\",\"MCO\",\"JFK\",-6.00,-6.00,0.00,\"\",0.00,166.00,126.00,944.00,,,,,,\n2015,5,16,\"DL\",\"409\",\"JFK\",\"SJU\",2.00,-35.00,0.00,\"\",0.00,208.00,183.00,1598.00,,,,,,\n2015,5,16,\"DL\",\"410\",\"MSP\",\"JFK\",16.00,5.00,0.00,\"\",0.00,155.00,131.00,1029.00,,,,,,\n2015,5,16,\"DL\",\"412\",\"LAX\",\"JFK\",44.00,22.00,0.00,\"\",0.00,314.00,287.00,2475.00,3.00,0.00,0.00,0.00,19.00,\n2015,5,16,\"DL\",\"414\",\"SFO\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,328.00,305.00,2586.00,,,,,,\n2015,5,16,\"DL\",\"415\",\"JFK\",\"SFO\",-1.00,-17.00,0.00,\"\",0.00,388.00,354.00,2586.00,,,,,,\n2015,5,16,\"DL\",\"418\",\"SEA\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,317.00,294.00,2422.00,,,,,,\n2015,5,16,\"DL\",\"419\",\"JFK\",\"SEA\",24.00,7.00,0.00,\"\",0.00,361.00,317.00,2422.00,,,,,,\n2015,5,16,\"DL\",\"420\",\"JFK\",\"LAX\",4.00,-33.00,0.00,\"\",0.00,355.00,331.00,2475.00,,,,,,\n2015,5,16,\"DL\",\"421\",\"JFK\",\"BOS\",-1.00,7.00,0.00,\"\",0.00,79.00,45.00,187.00,,,,,,\n2015,5,16,\"DL\",\"422\",\"JFK\",\"ATL\",-2.00,-10.00,0.00,\"\",0.00,161.00,117.00,760.00,,,,,,\n2015,5,16,\"DL\",\"423\",\"JFK\",\"LAX\",-3.00,-16.00,0.00,\"\",0.00,359.00,327.00,2475.00,,,,,,\n2015,5,16,\"DL\",\"424\",\"JFK\",\"SEA\",0.00,-22.00,0.00,\"\",0.00,356.00,321.00,2422.00,,,,,,\n2015,5,16,\"DL\",\"425\",\"JFK\",\"LAS\",-5.00,-13.00,0.00,\"\",0.00,321.00,293.00,2248.00,,,,,,\n2015,5,16,\"DL\",\"426\",\"JFK\",\"MCO\",-3.00,-25.00,0.00,\"\",0.00,148.00,127.00,944.00,,,,,,\n2015,5,16,\"DL\",\"427\",\"JFK\",\"SEA\",0.00,-11.00,0.00,\"\",0.00,349.00,309.00,2422.00,,,,,,\n2015,5,16,\"DL\",\"428\",\"JFK\",\"LAS\",13.00,-21.00,0.00,\"\",0.00,318.00,290.00,2248.00,,,,,,\n2015,5,16,\"DL\",\"430\",\"JFK\",\"SFO\",-1.00,-13.00,0.00,\"\",0.00,374.00,347.00,2586.00,,,,,,\n2015,5,16,\"DL\",\"431\",\"JFK\",\"SAN\",17.00,9.00,0.00,\"\",0.00,366.00,329.00,2446.00,,,,,,\n2015,5,16,\"DL\",\"434\",\"JFK\",\"SLC\",12.00,-2.00,0.00,\"\",0.00,290.00,264.00,1990.00,,,,,,\n2015,5,16,\"DL\",\"435\",\"JFK\",\"SFO\",4.00,3.00,0.00,\"\",0.00,406.00,358.00,2586.00,,,,,,\n2015,5,16,\"DL\",\"437\",\"JFK\",\"LAS\",0.00,-18.00,0.00,\"\",0.00,332.00,299.00,2248.00,,,,,,\n2015,5,16,\"DL\",\"439\",\"JFK\",\"SJU\",-7.00,-12.00,0.00,\"\",0.00,219.00,184.00,1598.00,,,,,,\n2015,5,16,\"DL\",\"442\",\"JFK\",\"MSP\",-4.00,-4.00,0.00,\"\",0.00,190.00,152.00,1029.00,,,,,,\n2015,5,16,\"DL\",\"443\",\"JFK\",\"LAS\",-1.00,-32.00,0.00,\"\",0.00,320.00,294.00,2248.00,,,,,,\n2015,5,16,\"DL\",\"444\",\"SLC\",\"JFK\",-5.00,2.00,0.00,\"\",0.00,287.00,252.00,1990.00,,,,,,\n2015,5,16,\"DL\",\"445\",\"JFK\",\"TPA\",-5.00,0.00,0.00,\"\",0.00,175.00,136.00,1005.00,,,,,,\n2015,5,16,\"DL\",\"447\",\"JFK\",\"LAX\",12.00,-7.00,0.00,\"\",0.00,371.00,334.00,2475.00,,,,,,\n2015,5,16,\"DL\",\"448\",\"JFK\",\"SEA\",12.00,-15.00,0.00,\"\",0.00,333.00,301.00,2422.00,,,,,,\n2015,5,16,\"DL\",\"453\",\"JFK\",\"CHS\",-3.00,-17.00,0.00,\"\",0.00,125.00,85.00,636.00,,,,,,\n2015,5,16,\"DL\",\"454\",\"JFK\",\"ATL\",-6.00,-13.00,0.00,\"\",0.00,144.00,103.00,760.00,,,,,,\n2015,5,16,\"DL\",\"455\",\"JFK\",\"FLL\",-7.00,-32.00,0.00,\"\",0.00,156.00,138.00,1069.00,,,,,,\n2015,5,16,\"DL\",\"458\",\"JFK\",\"ATL\",-4.00,-34.00,0.00,\"\",0.00,137.00,105.00,760.00,,,,,,\n2015,5,16,\"DL\",\"459\",\"JFK\",\"SJU\",-7.00,-27.00,0.00,\"\",0.00,219.00,186.00,1598.00,,,,,,\n2015,5,16,\"DL\",\"462\",\"JFK\",\"SJU\",-5.00,-22.00,0.00,\"\",0.00,214.00,183.00,1598.00,,,,,,\n2015,5,16,\"DL\",\"463\",\"JFK\",\"ATL\",1.00,-15.00,0.00,\"\",0.00,136.00,107.00,760.00,,,,,,\n2015,5,16,\"DL\",\"464\",\"JFK\",\"MIA\",-4.00,6.00,0.00,\"\",0.00,192.00,142.00,1089.00,,,,,,\n2015,5,16,\"DL\",\"465\",\"JFK\",\"STT\",-6.00,-14.00,0.00,\"\",0.00,235.00,197.00,1623.00,,,,,,\n2015,5,16,\"DL\",\"466\",\"SLC\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,261.00,238.00,1990.00,,,,,,\n2015,5,16,\"DL\",\"468\",\"SFO\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,340.00,313.00,2586.00,,,,,,\n2015,5,16,\"DL\",\"469\",\"JFK\",\"SFO\",5.00,-14.00,0.00,\"\",0.00,382.00,343.00,2586.00,,,,,,\n2015,5,16,\"DL\",\"472\",\"JFK\",\"LAX\",-5.00,2.00,0.00,\"\",0.00,392.00,331.00,2475.00,,,,,,\n2015,5,16,\"DL\",\"476\",\"LAX\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,319.00,285.00,2475.00,,,,,,\n2015,5,16,\"DL\",\"477\",\"JFK\",\"LAX\",12.00,-5.00,0.00,\"\",0.00,374.00,329.00,2475.00,,,,,,\n2015,5,16,\"DL\",\"478\",\"ATL\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,139.00,110.00,760.00,,,,,,\n2015,5,16,\"DL\",\"480\",\"JFK\",\"BOS\",-6.00,-8.00,0.00,\"\",0.00,79.00,38.00,187.00,,,,,,\n2015,5,16,\"DL\",\"496\",\"JFK\",\"MCO\",-2.00,-11.00,0.00,\"\",0.00,155.00,124.00,944.00,,,,,,\n2015,5,16,\"DL\",\"499\",\"JFK\",\"SLC\",-2.00,-2.00,0.00,\"\",0.00,310.00,262.00,1990.00,,,,,,\n2015,5,16,\"DL\",\"511\",\"SJU\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,233.00,213.00,1598.00,,,,,,\n2015,5,16,\"DL\",\"527\",\"RSW\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,161.00,143.00,1074.00,,,,,,\n2015,5,16,\"DL\",\"528\",\"LGA\",\"MSP\",0.00,5.00,0.00,\"\",0.00,187.00,148.00,1020.00,,,,,,\n2015,5,16,\"DL\",\"541\",\"LAS\",\"JFK\",-1.00,3.00,0.00,\"\",0.00,300.00,283.00,2248.00,,,,,,\n2015,5,16,\"DL\",\"544\",\"ALB\",\"ATL\",-9.00,-8.00,0.00,\"\",0.00,151.00,120.00,853.00,,,,,,\n2015,5,16,\"DL\",\"662\",\"BUF\",\"MSP\",-3.00,-14.00,0.00,\"\",0.00,133.00,109.00,735.00,,,,,,\n2015,5,16,\"DL\",\"664\",\"TPA\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,146.00,131.00,1010.00,,,,,,\n2015,5,16,\"DL\",\"676\",\"STT\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,247.00,227.00,1623.00,,,,,,\n2015,5,16,\"DL\",\"723\",\"ATL\",\"BUF\",-3.00,-18.00,0.00,\"\",0.00,110.00,94.00,712.00,,,,,,\n2015,5,16,\"DL\",\"723\",\"BUF\",\"ATL\",-2.00,-11.00,0.00,\"\",0.00,120.00,99.00,712.00,,,,,,\n2015,5,16,\"DL\",\"731\",\"LGA\",\"DTW\",-4.00,-16.00,0.00,\"\",0.00,100.00,80.00,502.00,,,,,,\n2015,5,16,\"DL\",\"750\",\"BOS\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,79.00,50.00,187.00,,,,,,\n2015,5,16,\"DL\",\"772\",\"PBI\",\"LGA\",-3.00,0.00,0.00,\"\",0.00,173.00,146.00,1035.00,,,,,,\n2015,5,16,\"DL\",\"781\",\"LGA\",\"ATL\",-3.00,-12.00,0.00,\"\",0.00,151.00,107.00,762.00,,,,,,\n2015,5,16,\"DL\",\"782\",\"MIA\",\"JFK\",-1.00,-1.00,0.00,\"\",0.00,180.00,149.00,1089.00,,,,,,\n2015,5,16,\"DL\",\"787\",\"MCO\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,153.00,132.00,944.00,,,,,,\n2015,5,16,\"DL\",\"791\",\"LAX\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,316.00,288.00,2475.00,,,,,,\n2015,5,16,\"DL\",\"792\",\"PBI\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,161.00,141.00,1028.00,,,,,,\n2015,5,16,\"DL\",\"793\",\"BOS\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,82.00,40.00,187.00,,,,,,\n2015,5,16,\"DL\",\"802\",\"ATL\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,141.00,105.00,762.00,,,,,,\n2015,5,16,\"DL\",\"819\",\"MIA\",\"LGA\",-7.00,8.00,0.00,\"\",0.00,202.00,157.00,1096.00,,,,,,\n2015,5,16,\"DL\",\"856\",\"SAN\",\"JFK\",46.00,28.00,0.00,\"\",0.00,313.00,281.00,2446.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,16,\"DL\",\"871\",\"MSP\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,151.00,130.00,1020.00,,,,,,\n2015,5,16,\"DL\",\"874\",\"LGA\",\"MIA\",-2.00,15.00,0.00,\"\",0.00,215.00,153.00,1096.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,16,\"DL\",\"878\",\"RSW\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,163.00,146.00,1080.00,,,,,,\n2015,5,16,\"DL\",\"884\",\"LGA\",\"DEN\",41.00,34.00,0.00,\"\",0.00,265.00,226.00,1620.00,34.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"DL\",\"904\",\"LGA\",\"ATL\",0.00,-18.00,0.00,\"\",0.00,124.00,101.00,762.00,,,,,,\n2015,5,16,\"DL\",\"906\",\"ATL\",\"LGA\",9.00,-5.00,0.00,\"\",0.00,122.00,95.00,762.00,,,,,,\n2015,5,16,\"DL\",\"909\",\"LGA\",\"MIA\",-6.00,-11.00,0.00,\"\",0.00,189.00,153.00,1096.00,,,,,,\n2015,5,16,\"DL\",\"910\",\"MCO\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,148.00,130.00,950.00,,,,,,\n2015,5,16,\"DL\",\"965\",\"MCO\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,151.00,129.00,950.00,,,,,,\n2015,5,16,\"DL\",\"986\",\"ATL\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,131.00,107.00,762.00,,,,,,\n2015,5,16,\"DL\",\"997\",\"DTW\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,96.00,77.00,502.00,,,,,,\n2015,5,16,\"DL\",\"1088\",\"FLL\",\"LGA\",2.00,-7.00,0.00,\"\",0.00,167.00,145.00,1076.00,,,,,,\n2015,5,16,\"DL\",\"1109\",\"SEA\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,333.00,302.00,2422.00,,,,,,\n2015,5,16,\"DL\",\"1111\",\"ATL\",\"ROC\",-4.00,9.00,0.00,\"\",0.00,141.00,96.00,749.00,,,,,,\n2015,5,16,\"DL\",\"1131\",\"LGA\",\"FLL\",0.00,-19.00,0.00,\"\",0.00,170.00,139.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"1086\",\"LGA\",\"ATL\",-6.00,-12.00,0.00,\"\",0.00,156.00,111.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1088\",\"FLL\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,166.00,142.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"1109\",\"SEA\",\"JFK\",12.00,3.00,0.00,\"\",0.00,326.00,298.00,2422.00,,,,,,\n2015,5,17,\"DL\",\"1111\",\"ATL\",\"ROC\",-3.00,-17.00,0.00,\"\",0.00,116.00,95.00,749.00,,,,,,\n2015,5,17,\"DL\",\"1121\",\"PBI\",\"LGA\",4.00,-3.00,0.00,\"\",0.00,166.00,138.00,1035.00,,,,,,\n2015,5,17,\"DL\",\"1131\",\"LGA\",\"FLL\",-4.00,-23.00,0.00,\"\",0.00,173.00,144.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"1145\",\"LGA\",\"DTW\",0.00,-14.00,0.00,\"\",0.00,111.00,81.00,502.00,,,,,,\n2015,5,17,\"DL\",\"1155\",\"DTW\",\"ROC\",-1.00,-7.00,0.00,\"\",0.00,65.00,42.00,296.00,,,,,,\n2015,5,17,\"DL\",\"1159\",\"ATL\",\"BUF\",-3.00,-15.00,0.00,\"\",0.00,110.00,95.00,712.00,,,,,,\n2015,5,17,\"DL\",\"1159\",\"BUF\",\"ATL\",-5.00,-18.00,0.00,\"\",0.00,116.00,96.00,712.00,,,,,,\n2015,5,17,\"DL\",\"1162\",\"LAX\",\"JFK\",21.00,16.00,0.00,\"\",0.00,320.00,295.00,2475.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"1174\",\"LGA\",\"PBI\",0.00,-9.00,0.00,\"\",0.00,171.00,136.00,1035.00,,,,,,\n2015,5,17,\"DL\",\"1176\",\"ATL\",\"BUF\",36.00,18.00,0.00,\"\",0.00,112.00,95.00,712.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,17,\"DL\",\"1176\",\"BUF\",\"ATL\",26.00,3.00,0.00,\"\",0.00,111.00,95.00,712.00,,,,,,\n2015,5,17,\"DL\",\"1186\",\"ATL\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,121.00,98.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1214\",\"LGA\",\"ATL\",-4.00,-8.00,0.00,\"\",0.00,160.00,112.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1227\",\"PHX\",\"JFK\",-10.00,-11.00,0.00,\"\",0.00,289.00,261.00,2153.00,,,,,,\n2015,5,17,\"DL\",\"1242\",\"LGA\",\"PBI\",-6.00,-27.00,0.00,\"\",0.00,163.00,138.00,1035.00,,,,,,\n2015,5,17,\"DL\",\"1262\",\"LAX\",\"JFK\",2.00,-17.00,0.00,\"\",0.00,314.00,291.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"1264\",\"SLC\",\"JFK\",1.00,-11.00,0.00,\"\",0.00,261.00,235.00,1990.00,,,,,,\n2015,5,17,\"DL\",\"1266\",\"BUF\",\"ATL\",0.00,-1.00,0.00,\"\",0.00,121.00,100.00,712.00,,,,,,\n2015,5,17,\"DL\",\"1269\",\"LGA\",\"MIA\",-2.00,-1.00,0.00,\"\",0.00,198.00,148.00,1096.00,,,,,,\n2015,5,17,\"DL\",\"1278\",\"MSP\",\"BUF\",66.00,53.00,0.00,\"\",0.00,106.00,88.00,735.00,53.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"1286\",\"ATL\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,119.00,102.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1288\",\"LGA\",\"FLL\",-5.00,-20.00,0.00,\"\",0.00,180.00,150.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"1289\",\"LGA\",\"ATL\",-2.00,-15.00,0.00,\"\",0.00,149.00,106.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1298\",\"LGA\",\"ATL\",4.00,-22.00,0.00,\"\",0.00,135.00,109.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1306\",\"DTW\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,94.00,75.00,502.00,,,,,,\n2015,5,17,\"DL\",\"1312\",\"TPA\",\"JFK\",1.00,-21.00,0.00,\"\",0.00,152.00,133.00,1005.00,,,,,,\n2015,5,17,\"DL\",\"1335\",\"MIA\",\"LGA\",1.00,-14.00,0.00,\"\",0.00,168.00,141.00,1096.00,,,,,,\n2015,5,17,\"DL\",\"1356\",\"DEN\",\"LGA\",5.00,-19.00,0.00,\"\",0.00,216.00,193.00,1620.00,,,,,,\n2015,5,17,\"DL\",\"1359\",\"MCO\",\"LGA\",-7.00,-10.00,0.00,\"\",0.00,160.00,133.00,950.00,,,,,,\n2015,5,16,\"DL\",\"2285\",\"LGA\",\"MCO\",-7.00,-20.00,0.00,\"\",0.00,149.00,122.00,950.00,,,,,,\n2015,5,16,\"DL\",\"2311\",\"JFK\",\"MIA\",-1.00,-20.00,0.00,\"\",0.00,183.00,141.00,1089.00,,,,,,\n2015,5,16,\"DL\",\"2312\",\"JFK\",\"DTW\",-6.00,-28.00,0.00,\"\",0.00,116.00,94.00,509.00,,,,,,\n2015,5,16,\"DL\",\"2317\",\"PBI\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,168.00,141.00,1035.00,,,,,,\n2015,5,16,\"DL\",\"2328\",\"JFK\",\"SLC\",9.00,-8.00,0.00,\"\",0.00,308.00,276.00,1990.00,,,,,,\n2015,5,16,\"DL\",\"2341\",\"JFK\",\"MSP\",-3.00,-26.00,0.00,\"\",0.00,186.00,159.00,1029.00,,,,,,\n2015,5,16,\"DL\",\"2347\",\"MCO\",\"LGA\",-9.00,-11.00,0.00,\"\",0.00,154.00,131.00,950.00,,,,,,\n2015,5,16,\"DL\",\"2349\",\"DTW\",\"LGA\",67.00,56.00,0.00,\"\",0.00,95.00,74.00,502.00,56.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"DL\",\"2350\",\"ATL\",\"JFK\",2.00,4.00,0.00,\"\",0.00,137.00,106.00,760.00,,,,,,\n2015,5,16,\"DL\",\"2352\",\"LAS\",\"JFK\",4.00,-23.00,0.00,\"\",0.00,283.00,264.00,2248.00,,,,,,\n2015,5,16,\"DL\",\"2354\",\"SLC\",\"JFK\",-3.00,-3.00,0.00,\"\",0.00,269.00,238.00,1990.00,,,,,,\n2015,5,16,\"DL\",\"2393\",\"JFK\",\"BOS\",0.00,-11.00,0.00,\"\",0.00,79.00,44.00,187.00,,,,,,\n2015,5,16,\"DL\",\"2395\",\"LGA\",\"PBI\",-4.00,-22.00,0.00,\"\",0.00,160.00,133.00,1035.00,,,,,,\n2015,5,16,\"DL\",\"2404\",\"SAN\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,307.00,281.00,2446.00,,,,,,\n2015,5,16,\"DL\",\"2405\",\"PHX\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,280.00,258.00,2153.00,,,,,,\n2015,5,16,\"DL\",\"2406\",\"TPA\",\"LGA\",-7.00,-10.00,0.00,\"\",0.00,160.00,142.00,1010.00,,,,,,\n2015,5,16,\"DL\",\"2413\",\"MIA\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,180.00,151.00,1096.00,,,,,,\n2015,5,16,\"DL\",\"2450\",\"MCO\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,152.00,129.00,950.00,,,,,,\n2015,5,16,\"DL\",\"2464\",\"TPA\",\"JFK\",-3.00,5.00,0.00,\"\",0.00,171.00,136.00,1005.00,,,,,,\n2015,5,16,\"DL\",\"2473\",\"ATL\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,118.00,95.00,712.00,,,,,,\n2015,5,16,\"DL\",\"2487\",\"JFK\",\"SLC\",12.00,8.00,0.00,\"\",0.00,317.00,281.00,1990.00,,,,,,\n2015,5,16,\"DL\",\"2495\",\"MIA\",\"JFK\",-1.00,0.00,0.00,\"\",0.00,187.00,160.00,1089.00,,,,,,\n2015,5,16,\"DL\",\"2496\",\"ATL\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,135.00,112.00,762.00,,,,,,\n2015,5,16,\"DL\",\"2554\",\"DEN\",\"JFK\",16.00,16.00,0.00,\"\",0.00,239.00,218.00,1626.00,8.00,0.00,0.00,0.00,8.00,\n2015,5,16,\"DL\",\"2565\",\"FLL\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,163.00,144.00,1069.00,,,,,,\n2015,5,16,\"DL\",\"2567\",\"JFK\",\"MIA\",-5.00,-17.00,0.00,\"\",0.00,194.00,143.00,1089.00,,,,,,\n2015,5,16,\"DL\",\"2569\",\"JFK\",\"PHX\",-7.00,-23.00,0.00,\"\",0.00,324.00,288.00,2153.00,,,,,,\n2015,5,16,\"DL\",\"2577\",\"JFK\",\"FLL\",-5.00,-44.00,0.00,\"\",0.00,162.00,135.00,1069.00,,,,,,\n2015,5,16,\"DL\",\"2593\",\"SAT\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,221.00,204.00,1587.00,,,,,,\n2015,5,16,\"DL\",\"2594\",\"DEN\",\"LGA\",-3.00,22.00,0.00,\"\",0.00,257.00,219.00,1620.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,16,\"DL\",\"2595\",\"FLL\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,171.00,150.00,1076.00,,,,,,\n2015,5,16,\"DL\",\"2596\",\"PBI\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,170.00,146.00,1035.00,,,,,,\n2015,5,16,\"DL\",\"2622\",\"ROC\",\"DTW\",-2.00,-18.00,0.00,\"\",0.00,66.00,48.00,296.00,,,,,,\n2015,5,16,\"DL\",\"2626\",\"JFK\",\"PBI\",-5.00,-30.00,0.00,\"\",0.00,161.00,133.00,1028.00,,,,,,\n2015,5,16,\"DL\",\"2632\",\"JFK\",\"MCO\",-4.00,-16.00,0.00,\"\",0.00,167.00,123.00,944.00,,,,,,\n2015,5,16,\"DL\",\"2645\",\"JFK\",\"RSW\",-4.00,-24.00,0.00,\"\",0.00,181.00,153.00,1074.00,,,,,,\n2015,5,16,\"DL\",\"2649\",\"JFK\",\"TPA\",-5.00,-21.00,0.00,\"\",0.00,169.00,135.00,1005.00,,,,,,\n2015,5,16,\"DL\",\"2650\",\"TPA\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,159.00,135.00,1005.00,,,,,,\n2015,5,16,\"DL\",\"2652\",\"TPA\",\"JFK\",-11.00,-29.00,0.00,\"\",0.00,155.00,129.00,1005.00,,,,,,\n2015,5,16,\"DL\",\"2653\",\"MCO\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,154.00,125.00,944.00,,,,,,\n2015,5,16,\"DL\",\"2667\",\"BOS\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,79.00,50.00,184.00,,,,,,\n2015,5,16,\"DL\",\"2671\",\"BOS\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,78.00,40.00,184.00,,,,,,\n2015,5,16,\"DL\",\"2672\",\"LGA\",\"BOS\",-3.00,-17.00,0.00,\"\",0.00,66.00,45.00,184.00,,,,,,\n2015,5,16,\"DL\",\"2675\",\"BOS\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,63.00,42.00,184.00,,,,,,\n2015,5,16,\"DL\",\"2678\",\"LGA\",\"BOS\",-3.00,-3.00,0.00,\"\",0.00,81.00,45.00,184.00,,,,,,\n2015,5,16,\"DL\",\"2681\",\"BOS\",\"LGA\",2.00,-5.00,0.00,\"\",0.00,68.00,46.00,184.00,,,,,,\n2015,5,16,\"DL\",\"2686\",\"LGA\",\"BOS\",-3.00,-15.00,0.00,\"\",0.00,66.00,40.00,184.00,,,,,,\n2015,5,16,\"DL\",\"2692\",\"LGA\",\"BOS\",-9.00,-22.00,0.00,\"\",0.00,65.00,40.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2\",\"JFK\",\"PDX\",-6.00,-42.00,0.00,\"\",0.00,342.00,312.00,2454.00,,,,,,\n2015,5,17,\"DL\",\"42\",\"MIA\",\"JFK\",11.00,-8.00,0.00,\"\",0.00,170.00,146.00,1089.00,,,,,,\n2015,5,17,\"DL\",\"208\",\"JFK\",\"MCO\",-5.00,-35.00,0.00,\"\",0.00,157.00,123.00,944.00,,,,,,\n2015,5,17,\"DL\",\"221\",\"LGA\",\"ATL\",-6.00,-15.00,0.00,\"\",0.00,156.00,103.00,762.00,,,,,,\n2015,5,17,\"DL\",\"326\",\"SJU\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,233.00,210.00,1598.00,,,,,,\n2015,5,17,\"DL\",\"332\",\"SJU\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,233.00,215.00,1598.00,,,,,,\n2015,5,17,\"DL\",\"333\",\"MSP\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,145.00,127.00,1020.00,,,,,,\n2015,5,17,\"DL\",\"342\",\"SFO\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,332.00,313.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"347\",\"LGA\",\"ATL\",-1.00,-19.00,0.00,\"\",0.00,140.00,107.00,762.00,,,,,,\n2015,5,17,\"DL\",\"348\",\"SJU\",\"JFK\",5.00,-12.00,0.00,\"\",0.00,225.00,207.00,1598.00,,,,,,\n2015,5,17,\"DL\",\"350\",\"LGA\",\"ATL\",-3.00,-18.00,0.00,\"\",0.00,138.00,106.00,762.00,,,,,,\n2015,5,17,\"DL\",\"400\",\"PDX\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,323.00,301.00,2454.00,,,,,,\n2015,5,17,\"DL\",\"401\",\"AUS\",\"JFK\",144.00,123.00,0.00,\"\",0.00,218.00,197.00,1521.00,123.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"403\",\"PDX\",\"JFK\",1.00,4.00,0.00,\"\",0.00,337.00,305.00,2454.00,,,,,,\n2015,5,17,\"DL\",\"404\",\"JFK\",\"ATL\",10.00,-23.00,0.00,\"\",0.00,136.00,103.00,760.00,,,,,,\n2015,5,17,\"DL\",\"405\",\"JFK\",\"TPA\",-5.00,-18.00,0.00,\"\",0.00,158.00,134.00,1005.00,,,,,,\n2015,5,17,\"DL\",\"407\",\"MCO\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,155.00,131.00,944.00,,,,,,\n2015,5,17,\"DL\",\"408\",\"JFK\",\"SLC\",-6.00,-12.00,0.00,\"\",0.00,299.00,275.00,1990.00,,,,,,\n2015,5,17,\"DL\",\"409\",\"JFK\",\"SJU\",42.00,11.00,0.00,\"\",0.00,216.00,186.00,1598.00,,,,,,\n2015,5,17,\"DL\",\"410\",\"MSP\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,163.00,143.00,1029.00,,,,,,\n2015,5,17,\"DL\",\"412\",\"LAX\",\"JFK\",16.00,15.00,0.00,\"\",0.00,338.00,295.00,2475.00,13.00,0.00,2.00,0.00,0.00,\n2015,5,17,\"DL\",\"413\",\"JFK\",\"PHX\",-2.00,-32.00,0.00,\"\",0.00,313.00,292.00,2153.00,,,,,,\n2015,5,17,\"DL\",\"414\",\"SFO\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,321.00,301.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"415\",\"JFK\",\"SFO\",0.00,-5.00,0.00,\"\",0.00,403.00,370.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"417\",\"JFK\",\"SEA\",43.00,21.00,0.00,\"\",0.00,360.00,315.00,2422.00,17.00,0.00,0.00,0.00,4.00,\n2015,5,17,\"DL\",\"418\",\"SEA\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,314.00,292.00,2422.00,,,,,,\n2015,5,17,\"DL\",\"419\",\"JFK\",\"SEA\",0.00,-33.00,0.00,\"\",0.00,346.00,312.00,2422.00,,,,,,\n2015,5,17,\"DL\",\"420\",\"JFK\",\"LAX\",3.00,-14.00,0.00,\"\",0.00,381.00,332.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"422\",\"JFK\",\"LAX\",-1.00,-11.00,0.00,\"\",0.00,370.00,335.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"423\",\"JFK\",\"LAX\",-3.00,-15.00,0.00,\"\",0.00,361.00,333.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"424\",\"JFK\",\"LAX\",8.00,14.00,0.00,\"\",0.00,376.00,327.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"425\",\"JFK\",\"MSP\",-9.00,-28.00,0.00,\"\",0.00,173.00,144.00,1029.00,,,,,,\n2015,5,17,\"DL\",\"426\",\"JFK\",\"MCO\",-5.00,-25.00,0.00,\"\",0.00,152.00,124.00,944.00,,,,,,\n2015,5,17,\"DL\",\"427\",\"JFK\",\"LAX\",115.00,83.00,0.00,\"\",0.00,356.00,327.00,2475.00,83.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"428\",\"JFK\",\"FLL\",-8.00,-23.00,0.00,\"\",0.00,169.00,141.00,1069.00,,,,,,\n2015,5,17,\"DL\",\"430\",\"JFK\",\"SFO\",-6.00,-28.00,0.00,\"\",0.00,362.00,338.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"431\",\"JFK\",\"SFO\",113.00,111.00,0.00,\"\",0.00,407.00,353.00,2586.00,111.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"433\",\"JFK\",\"LAS\",-1.00,-25.00,0.00,\"\",0.00,332.00,296.00,2248.00,,,,,,\n2015,5,17,\"DL\",\"434\",\"JFK\",\"SFO\",-5.00,-31.00,0.00,\"\",0.00,378.00,341.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"435\",\"JFK\",\"SFO\",5.00,-2.00,0.00,\"\",0.00,397.00,361.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"436\",\"JFK\",\"LAS\",0.00,-10.00,0.00,\"\",0.00,340.00,296.00,2248.00,,,,,,\n2015,5,17,\"DL\",\"437\",\"JFK\",\"BOS\",-2.00,-24.00,0.00,\"\",0.00,55.00,36.00,187.00,,,,,,\n2015,5,17,\"DL\",\"438\",\"JFK\",\"MCO\",-4.00,-27.00,0.00,\"\",0.00,145.00,128.00,944.00,,,,,,\n2015,5,17,\"DL\",\"442\",\"JFK\",\"AUS\",24.00,7.00,0.00,\"\",0.00,247.00,196.00,1521.00,,,,,,\n2015,5,17,\"DL\",\"443\",\"JFK\",\"LAS\",4.00,-15.00,0.00,\"\",0.00,335.00,305.00,2248.00,,,,,,\n2015,5,17,\"DL\",\"444\",\"SLC\",\"JFK\",6.00,8.00,0.00,\"\",0.00,282.00,260.00,1990.00,,,,,,\n2015,5,17,\"DL\",\"445\",\"JFK\",\"TPA\",-7.00,-26.00,0.00,\"\",0.00,167.00,135.00,1005.00,,,,,,\n2015,5,17,\"DL\",\"447\",\"JFK\",\"LAX\",-2.00,-12.00,0.00,\"\",0.00,380.00,341.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"448\",\"JFK\",\"SEA\",-11.00,-42.00,0.00,\"\",0.00,329.00,306.00,2422.00,,,,,,\n2015,5,17,\"DL\",\"451\",\"JFK\",\"SJU\",6.00,-5.00,0.00,\"\",0.00,231.00,190.00,1598.00,,,,,,\n2015,5,17,\"DL\",\"453\",\"JFK\",\"CHS\",-6.00,-18.00,0.00,\"\",0.00,127.00,89.00,636.00,,,,,,\n2015,5,17,\"DL\",\"454\",\"JFK\",\"ATL\",-2.00,-7.00,0.00,\"\",0.00,147.00,106.00,760.00,,,,,,\n2015,5,17,\"DL\",\"455\",\"JFK\",\"SAN\",-3.00,-15.00,0.00,\"\",0.00,366.00,320.00,2446.00,,,,,,\n2015,5,17,\"DL\",\"456\",\"JFK\",\"SEA\",0.00,-41.00,0.00,\"\",0.00,322.00,297.00,2422.00,,,,,,\n2015,5,17,\"DL\",\"459\",\"JFK\",\"SAN\",-4.00,-4.00,0.00,\"\",0.00,375.00,331.00,2446.00,,,,,,\n2015,5,17,\"DL\",\"460\",\"JFK\",\"SLC\",-1.00,-8.00,0.00,\"\",0.00,318.00,279.00,1990.00,,,,,,\n2015,5,17,\"DL\",\"464\",\"JFK\",\"MIA\",-3.00,-14.00,0.00,\"\",0.00,174.00,146.00,1089.00,,,,,,\n2015,5,17,\"DL\",\"465\",\"JFK\",\"STT\",19.00,4.00,0.00,\"\",0.00,231.00,187.00,1623.00,,,,,,\n2015,5,17,\"DL\",\"466\",\"SLC\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,265.00,245.00,1990.00,,,,,,\n2015,5,17,\"DL\",\"468\",\"SFO\",\"JFK\",-1.00,2.00,0.00,\"\",0.00,352.00,322.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"469\",\"JFK\",\"SFO\",-3.00,-27.00,0.00,\"\",0.00,366.00,332.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"472\",\"JFK\",\"LAX\",-2.00,7.00,0.00,\"\",0.00,394.00,326.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"476\",\"LAX\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,325.00,291.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"477\",\"JFK\",\"LAX\",10.00,0.00,0.00,\"\",0.00,385.00,330.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"478\",\"ATL\",\"JFK\",29.00,5.00,0.00,\"\",0.00,128.00,106.00,760.00,,,,,,\n2015,5,17,\"DL\",\"480\",\"JFK\",\"SJU\",-4.00,-35.00,0.00,\"\",0.00,203.00,188.00,1598.00,,,,,,\n2015,5,17,\"DL\",\"482\",\"JFK\",\"LAS\",11.00,14.00,0.00,\"\",0.00,356.00,305.00,2248.00,,,,,,\n2015,5,17,\"DL\",\"486\",\"JFK\",\"LAS\",8.00,1.00,0.00,\"\",0.00,325.00,303.00,2248.00,,,,,,\n2015,5,17,\"DL\",\"488\",\"JFK\",\"SJU\",-8.00,-13.00,0.00,\"\",0.00,222.00,191.00,1598.00,,,,,,\n2015,5,17,\"DL\",\"491\",\"JFK\",\"SJU\",1.00,-12.00,0.00,\"\",0.00,225.00,189.00,1598.00,,,,,,\n2015,5,17,\"DL\",\"496\",\"JFK\",\"BOS\",-6.00,-13.00,0.00,\"\",0.00,76.00,43.00,187.00,,,,,,\n2015,5,17,\"DL\",\"497\",\"JFK\",\"ATL\",-1.00,-22.00,0.00,\"\",0.00,132.00,104.00,760.00,,,,,,\n2015,5,17,\"DL\",\"498\",\"JFK\",\"SFO\",0.00,-22.00,0.00,\"\",0.00,386.00,358.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"499\",\"JFK\",\"SLC\",13.00,3.00,0.00,\"\",0.00,300.00,264.00,1990.00,,,,,,\n2015,5,17,\"DL\",\"511\",\"SJU\",\"JFK\",3.00,-18.00,0.00,\"\",0.00,228.00,205.00,1598.00,,,,,,\n2015,5,17,\"DL\",\"527\",\"RSW\",\"JFK\",-2.00,10.00,0.00,\"\",0.00,176.00,142.00,1074.00,,,,,,\n2015,5,17,\"DL\",\"528\",\"LGA\",\"MSP\",0.00,-2.00,0.00,\"\",0.00,187.00,137.00,1020.00,,,,,,\n2015,5,17,\"DL\",\"541\",\"LAS\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,282.00,264.00,2248.00,,,,,,\n2015,5,17,\"DL\",\"544\",\"ALB\",\"ATL\",-7.00,-6.00,0.00,\"\",0.00,156.00,122.00,853.00,,,,,,\n2015,5,17,\"DL\",\"582\",\"DTW\",\"LGA\",16.00,13.00,0.00,\"\",0.00,104.00,78.00,502.00,,,,,,\n2015,5,17,\"DL\",\"583\",\"LGA\",\"DTW\",-1.00,-15.00,0.00,\"\",0.00,100.00,76.00,502.00,,,,,,\n2015,5,17,\"DL\",\"664\",\"TPA\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,159.00,139.00,1010.00,,,,,,\n2015,5,17,\"DL\",\"665\",\"ATL\",\"ALB\",-2.00,-1.00,0.00,\"\",0.00,141.00,112.00,853.00,,,,,,\n2015,5,17,\"DL\",\"665\",\"ALB\",\"ATL\",-2.00,-13.00,0.00,\"\",0.00,141.00,124.00,853.00,,,,,,\n2015,5,17,\"DL\",\"676\",\"STT\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,251.00,212.00,1623.00,,,,,,\n2015,5,17,\"DL\",\"707\",\"ALB\",\"DTW\",0.00,-22.00,0.00,\"\",0.00,88.00,73.00,489.00,,,,,,\n2015,5,17,\"DL\",\"714\",\"DTW\",\"LGA\",-12.00,-16.00,0.00,\"\",0.00,101.00,72.00,502.00,,,,,,\n2015,5,17,\"DL\",\"723\",\"ATL\",\"BUF\",0.00,-17.00,0.00,\"\",0.00,110.00,95.00,712.00,,,,,,\n2015,5,17,\"DL\",\"723\",\"BUF\",\"ATL\",-4.00,-15.00,0.00,\"\",0.00,120.00,96.00,712.00,,,,,,\n2015,5,17,\"DL\",\"729\",\"LAS\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,298.00,261.00,2248.00,,,,,,\n2015,5,17,\"DL\",\"731\",\"DTW\",\"ALB\",-4.00,-10.00,0.00,\"\",0.00,95.00,64.00,489.00,,,,,,\n2015,5,17,\"DL\",\"750\",\"BOS\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,61.00,40.00,187.00,,,,,,\n2015,5,17,\"DL\",\"763\",\"BOS\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,64.00,41.00,187.00,,,,,,\n2015,5,17,\"DL\",\"765\",\"DTW\",\"BUF\",-3.00,-4.00,0.00,\"\",0.00,64.00,44.00,241.00,,,,,,\n2015,5,17,\"DL\",\"765\",\"BUF\",\"DTW\",-3.00,-20.00,0.00,\"\",0.00,58.00,44.00,241.00,,,,,,\n2015,5,17,\"DL\",\"772\",\"PBI\",\"LGA\",-3.00,-22.00,0.00,\"\",0.00,151.00,132.00,1035.00,,,,,,\n2015,5,17,\"DL\",\"782\",\"MIA\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,173.00,148.00,1089.00,,,,,,\n2015,5,17,\"DL\",\"787\",\"MCO\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,151.00,127.00,944.00,,,,,,\n2015,5,17,\"DL\",\"789\",\"MIA\",\"LGA\",7.00,1.00,0.00,\"\",0.00,182.00,148.00,1096.00,,,,,,\n2015,5,17,\"DL\",\"791\",\"LAX\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,319.00,290.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"792\",\"PBI\",\"JFK\",24.00,14.00,0.00,\"\",0.00,157.00,139.00,1028.00,,,,,,\n2015,5,17,\"DL\",\"793\",\"BOS\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,78.00,47.00,187.00,,,,,,\n2015,5,17,\"DL\",\"802\",\"ATL\",\"LGA\",2.00,10.00,0.00,\"\",0.00,153.00,101.00,762.00,,,,,,\n2015,5,17,\"DL\",\"804\",\"LGA\",\"MSP\",0.00,-1.00,0.00,\"\",0.00,193.00,150.00,1020.00,,,,,,\n2015,5,17,\"DL\",\"806\",\"MSP\",\"ROC\",-5.00,-24.00,0.00,\"\",0.00,118.00,99.00,783.00,,,,,,\n2015,5,17,\"DL\",\"856\",\"SAN\",\"JFK\",2.00,-11.00,0.00,\"\",0.00,324.00,294.00,2446.00,,,,,,\n2015,5,17,\"DL\",\"871\",\"MSP\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,162.00,138.00,1020.00,,,,,,\n2015,5,17,\"DL\",\"874\",\"LGA\",\"MIA\",-5.00,-31.00,0.00,\"\",0.00,179.00,149.00,1096.00,,,,,,\n2015,5,17,\"DL\",\"878\",\"RSW\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,157.00,138.00,1080.00,,,,,,\n2015,5,17,\"DL\",\"884\",\"LGA\",\"DEN\",-5.00,-28.00,0.00,\"\",0.00,251.00,223.00,1620.00,,,,,,\n2015,5,17,\"DL\",\"889\",\"MSP\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,160.00,137.00,1020.00,,,,,,\n2015,5,17,\"DL\",\"904\",\"LGA\",\"ATL\",-1.00,-9.00,0.00,\"\",0.00,136.00,106.00,762.00,,,,,,\n2015,5,17,\"DL\",\"906\",\"ATL\",\"LGA\",20.00,24.00,0.00,\"\",0.00,149.00,109.00,762.00,1.00,0.00,4.00,0.00,19.00,\n2015,5,17,\"DL\",\"909\",\"LGA\",\"MIA\",-2.00,-13.00,0.00,\"\",0.00,183.00,148.00,1096.00,,,,,,\n2015,5,17,\"DL\",\"910\",\"MCO\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,148.00,124.00,950.00,,,,,,\n2015,5,17,\"DL\",\"928\",\"DEN\",\"LGA\",-3.00,-27.00,0.00,\"\",0.00,212.00,189.00,1620.00,,,,,,\n2015,5,17,\"DL\",\"939\",\"MCO\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,153.00,130.00,950.00,,,,,,\n2015,5,17,\"DL\",\"964\",\"LGA\",\"ATL\",97.00,66.00,0.00,\"\",0.00,115.00,97.00,762.00,66.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"965\",\"MCO\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,144.00,127.00,950.00,,,,,,\n2015,5,17,\"DL\",\"971\",\"LGA\",\"DEN\",-3.00,-24.00,0.00,\"\",0.00,246.00,220.00,1620.00,,,,,,\n2015,5,17,\"DL\",\"986\",\"ATL\",\"LGA\",3.00,-14.00,0.00,\"\",0.00,117.00,100.00,762.00,,,,,,\n2015,5,17,\"DL\",\"997\",\"DTW\",\"LGA\",-3.00,-1.00,0.00,\"\",0.00,106.00,76.00,502.00,,,,,,\n2015,5,18,\"DL\",\"326\",\"SJU\",\"JFK\",-7.00,-9.00,0.00,\"\",0.00,238.00,219.00,1598.00,,,,,,\n2015,5,18,\"DL\",\"332\",\"SJU\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,225.00,201.00,1598.00,,,,,,\n2015,5,18,\"DL\",\"333\",\"MSP\",\"LGA\",84.00,68.00,0.00,\"\",0.00,147.00,129.00,1020.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,18,\"DL\",\"342\",\"SFO\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,323.00,297.00,2586.00,,,,,,\n2015,5,18,\"DL\",\"347\",\"LGA\",\"ATL\",556.00,548.00,0.00,\"\",0.00,150.00,109.00,762.00,113.00,0.00,0.00,0.00,435.00,\n2015,5,18,\"DL\",\"348\",\"SJU\",\"JFK\",-8.00,13.00,0.00,\"\",0.00,263.00,239.00,1598.00,,,,,,\n2015,5,18,\"DL\",\"350\",\"LGA\",\"ATL\",91.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,18,\"DL\",\"400\",\"PDX\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,321.00,299.00,2454.00,,,,,,\n2015,5,18,\"DL\",\"401\",\"AUS\",\"JFK\",123.00,114.00,0.00,\"\",0.00,230.00,206.00,1521.00,0.00,0.00,114.00,0.00,0.00,\n2015,5,18,\"DL\",\"403\",\"PDX\",\"JFK\",126.00,160.00,0.00,\"\",0.00,368.00,341.00,2454.00,0.00,0.00,160.00,0.00,0.00,\n2015,5,18,\"DL\",\"404\",\"JFK\",\"ATL\",200.00,220.00,0.00,\"\",0.00,189.00,118.00,760.00,0.00,0.00,20.00,0.00,200.00,\n2015,5,18,\"DL\",\"405\",\"JFK\",\"TPA\",0.00,22.00,0.00,\"\",0.00,193.00,131.00,1005.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,18,\"DL\",\"407\",\"MCO\",\"JFK\",153.00,166.00,0.00,\"\",0.00,182.00,132.00,944.00,0.00,0.00,37.00,0.00,129.00,\n2015,5,18,\"DL\",\"409\",\"JFK\",\"SJU\",0.00,-27.00,0.00,\"\",0.00,220.00,193.00,1598.00,,,,,,\n2015,5,18,\"DL\",\"410\",\"MSP\",\"JFK\",175.00,189.00,0.00,\"\",0.00,181.00,141.00,1029.00,0.00,0.00,189.00,0.00,0.00,\n2015,5,18,\"DL\",\"412\",\"LAX\",\"JFK\",25.00,15.00,0.00,\"\",0.00,329.00,289.00,2475.00,11.00,0.00,0.00,0.00,4.00,\n2015,5,18,\"DL\",\"413\",\"JFK\",\"PHX\",-3.00,-26.00,0.00,\"\",0.00,320.00,296.00,2153.00,,,,,,\n2015,5,18,\"DL\",\"414\",\"SFO\",\"JFK\",40.00,37.00,0.00,\"\",0.00,342.00,305.00,2586.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,18,\"DL\",\"415\",\"JFK\",\"SFO\",95.00,127.00,0.00,\"\",0.00,440.00,356.00,2586.00,0.00,0.00,127.00,0.00,0.00,\n2015,5,18,\"DL\",\"417\",\"JFK\",\"SEA\",234.00,279.00,0.00,\"\",0.00,427.00,330.00,2422.00,0.00,0.00,113.00,0.00,166.00,\n2015,5,18,\"DL\",\"418\",\"SEA\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,318.00,291.00,2422.00,,,,,,\n2015,5,18,\"DL\",\"419\",\"JFK\",\"SEA\",-1.00,-23.00,0.00,\"\",0.00,357.00,325.00,2422.00,,,,,,\n2015,5,18,\"DL\",\"420\",\"JFK\",\"LAX\",-1.00,-11.00,0.00,\"\",0.00,388.00,328.00,2475.00,,,,,,\n2015,5,18,\"DL\",\"421\",\"JFK\",\"DEN\",-2.00,31.00,0.00,\"\",0.00,317.00,232.00,1626.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,18,\"DL\",\"422\",\"JFK\",\"LAX\",-1.00,13.00,0.00,\"\",0.00,394.00,331.00,2475.00,,,,,,\n2015,5,18,\"DL\",\"423\",\"JFK\",\"LAX\",-5.00,57.00,0.00,\"\",0.00,435.00,333.00,2475.00,0.00,0.00,57.00,0.00,0.00,\n2015,5,18,\"DL\",\"424\",\"JFK\",\"LAX\",-1.00,5.00,0.00,\"\",0.00,376.00,323.00,2475.00,,,,,,\n2015,5,18,\"DL\",\"426\",\"JFK\",\"MCO\",4.00,-16.00,0.00,\"\",0.00,152.00,124.00,944.00,,,,,,\n2015,5,18,\"DL\",\"427\",\"JFK\",\"LAX\",134.00,130.00,0.00,\"\",0.00,384.00,335.00,2475.00,0.00,0.00,33.00,0.00,97.00,\n2015,5,18,\"DL\",\"428\",\"JFK\",\"FLL\",-10.00,-23.00,0.00,\"\",0.00,171.00,143.00,1069.00,,,,,,\n2015,5,18,\"DL\",\"430\",\"JFK\",\"SFO\",22.00,29.00,0.00,\"\",0.00,391.00,335.00,2586.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,18,\"DL\",\"431\",\"JFK\",\"SFO\",18.00,56.00,0.00,\"\",0.00,447.00,357.00,2586.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,18,\"DL\",\"433\",\"JFK\",\"ATL\",-7.00,-35.00,0.00,\"\",0.00,127.00,98.00,760.00,,,,,,\n2015,5,18,\"DL\",\"434\",\"JFK\",\"SFO\",28.00,20.00,0.00,\"\",0.00,396.00,338.00,2586.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,18,\"DL\",\"435\",\"JFK\",\"SFO\",114.00,174.00,0.00,\"\",0.00,464.00,354.00,2586.00,0.00,0.00,69.00,0.00,105.00,\n2015,5,18,\"DL\",\"436\",\"JFK\",\"LAS\",114.00,114.00,0.00,\"\",0.00,350.00,303.00,2248.00,114.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"DL\",\"437\",\"JFK\",\"BOS\",-5.00,-12.00,0.00,\"\",0.00,70.00,38.00,187.00,,,,,,\n2015,5,18,\"DL\",\"438\",\"JFK\",\"MCO\",0.00,-23.00,0.00,\"\",0.00,145.00,122.00,944.00,,,,,,\n2015,5,18,\"DL\",\"439\",\"JFK\",\"MSP\",20.00,-12.00,0.00,\"\",0.00,160.00,141.00,1029.00,,,,,,\n2015,5,18,\"DL\",\"440\",\"JFK\",\"SLC\",51.00,59.00,0.00,\"\",0.00,313.00,263.00,1990.00,0.00,0.00,8.00,0.00,51.00,\n2015,5,18,\"DL\",\"442\",\"JFK\",\"AUS\",48.00,83.00,0.00,\"\",0.00,299.00,205.00,1521.00,48.00,0.00,35.00,0.00,0.00,\n2015,5,18,\"DL\",\"443\",\"JFK\",\"LAS\",-1.00,-9.00,0.00,\"\",0.00,346.00,298.00,2248.00,,,,,,\n2015,5,18,\"DL\",\"444\",\"SLC\",\"JFK\",110.00,166.00,0.00,\"\",0.00,336.00,262.00,1990.00,0.00,0.00,166.00,0.00,0.00,\n2015,5,18,\"DL\",\"445\",\"JFK\",\"PDX\",0.00,-17.00,0.00,\"\",0.00,361.00,326.00,2454.00,,,,,,\n2015,5,18,\"DL\",\"447\",\"JFK\",\"LAX\",48.00,76.00,0.00,\"\",0.00,418.00,343.00,2475.00,48.00,0.00,28.00,0.00,0.00,\n2015,5,18,\"DL\",\"448\",\"JFK\",\"SEA\",-7.00,-18.00,0.00,\"\",0.00,349.00,312.00,2422.00,,,,,,\n2015,5,18,\"DL\",\"451\",\"JFK\",\"SJU\",-3.00,18.00,0.00,\"\",0.00,263.00,188.00,1598.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,18,\"DL\",\"453\",\"JFK\",\"CHS\",-4.00,27.00,0.00,\"\",0.00,170.00,86.00,636.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,18,\"DL\",\"454\",\"JFK\",\"ATL\",-4.00,-5.00,0.00,\"\",0.00,151.00,95.00,760.00,,,,,,\n2015,5,18,\"DL\",\"455\",\"JFK\",\"SAN\",25.00,82.00,0.00,\"\",0.00,435.00,343.00,2446.00,9.00,0.00,57.00,0.00,16.00,\n2015,5,18,\"DL\",\"456\",\"JFK\",\"SEA\",-3.00,-14.00,0.00,\"\",0.00,352.00,312.00,2422.00,,,,,,\n2015,5,18,\"DL\",\"458\",\"JFK\",\"AUS\",-2.00,-3.00,0.00,\"\",0.00,263.00,203.00,1521.00,,,,,,\n2015,5,18,\"DL\",\"459\",\"JFK\",\"SAN\",-6.00,-11.00,0.00,\"\",0.00,370.00,321.00,2446.00,,,,,,\n2015,5,18,\"DL\",\"460\",\"JFK\",\"SLC\",-4.00,-38.00,0.00,\"\",0.00,291.00,273.00,1990.00,,,,,,\n2015,5,18,\"DL\",\"464\",\"JFK\",\"MIA\",-5.00,76.00,0.00,\"\",0.00,262.00,152.00,1089.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,18,\"DL\",\"465\",\"JFK\",\"STT\",-2.00,14.00,0.00,\"\",0.00,262.00,187.00,1623.00,,,,,,\n2015,5,18,\"DL\",\"466\",\"SLC\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,265.00,233.00,1990.00,,,,,,\n2015,5,18,\"DL\",\"468\",\"SFO\",\"JFK\",75.00,123.00,0.00,\"\",0.00,397.00,355.00,2586.00,0.00,0.00,104.00,0.00,19.00,\n2015,5,18,\"DL\",\"469\",\"JFK\",\"SFO\",-5.00,-16.00,0.00,\"\",0.00,379.00,347.00,2586.00,,,,,,\n2015,5,18,\"DL\",\"472\",\"JFK\",\"LAX\",-2.00,-11.00,0.00,\"\",0.00,376.00,334.00,2475.00,,,,,,\n2015,5,18,\"DL\",\"476\",\"LAX\",\"JFK\",87.00,73.00,0.00,\"\",0.00,321.00,285.00,2475.00,0.00,0.00,73.00,0.00,0.00,\n2015,5,18,\"DL\",\"477\",\"JFK\",\"LAX\",10.00,57.00,0.00,\"\",0.00,442.00,343.00,2475.00,10.00,0.00,47.00,0.00,0.00,\n2015,5,18,\"DL\",\"478\",\"ATL\",\"JFK\",159.00,220.00,0.00,\"\",0.00,213.00,128.00,760.00,0.00,0.00,208.00,0.00,12.00,\n2015,5,18,\"DL\",\"480\",\"JFK\",\"SJU\",-5.00,39.00,0.00,\"\",0.00,278.00,192.00,1598.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,18,\"DL\",\"483\",\"JFK\",\"LAS\",109.00,192.00,0.00,\"\",0.00,436.00,308.00,2248.00,18.00,0.00,83.00,0.00,91.00,\n2015,5,18,\"DL\",\"486\",\"JFK\",\"LAS\",-4.00,0.00,0.00,\"\",0.00,336.00,303.00,2248.00,,,,,,\n2015,5,18,\"DL\",\"488\",\"JFK\",\"SJU\",-4.00,-26.00,0.00,\"\",0.00,205.00,190.00,1598.00,,,,,,\n2015,5,18,\"DL\",\"494\",\"JFK\",\"LAS\",38.00,122.00,0.00,\"\",0.00,440.00,318.00,2248.00,11.00,0.00,84.00,0.00,27.00,\n2015,5,18,\"DL\",\"496\",\"JFK\",\"BOS\",-5.00,36.00,0.00,\"\",0.00,124.00,44.00,187.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,18,\"DL\",\"497\",\"JFK\",\"ATL\",102.00,100.00,0.00,\"\",0.00,151.00,109.00,760.00,98.00,0.00,0.00,0.00,2.00,\n2015,5,18,\"DL\",\"498\",\"JFK\",\"SFO\",25.00,13.00,0.00,\"\",0.00,396.00,357.00,2586.00,,,,,,\n2015,5,18,\"DL\",\"499\",\"JFK\",\"SLC\",1.00,-14.00,0.00,\"\",0.00,295.00,260.00,1990.00,,,,,,\n2015,5,18,\"DL\",\"511\",\"SJU\",\"JFK\",1.00,-22.00,0.00,\"\",0.00,226.00,207.00,1598.00,,,,,,\n2015,5,18,\"DL\",\"527\",\"RSW\",\"JFK\",170.00,182.00,0.00,\"\",0.00,176.00,157.00,1074.00,0.00,0.00,182.00,0.00,0.00,\n2015,5,18,\"DL\",\"528\",\"LGA\",\"MSP\",94.00,79.00,0.00,\"\",0.00,170.00,139.00,1020.00,10.00,0.00,0.00,0.00,69.00,\n2015,5,18,\"DL\",\"541\",\"LAS\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,288.00,267.00,2248.00,,,,,,\n2015,5,18,\"DL\",\"544\",\"ALB\",\"ATL\",2.00,-24.00,0.00,\"\",0.00,129.00,114.00,853.00,,,,,,\n2015,5,18,\"DL\",\"582\",\"DTW\",\"LGA\",17.00,20.00,0.00,\"\",0.00,110.00,76.00,502.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,18,\"DL\",\"583\",\"LGA\",\"DTW\",-2.00,-4.00,0.00,\"\",0.00,112.00,79.00,502.00,,,,,,\n2015,5,18,\"DL\",\"662\",\"BUF\",\"MSP\",1.00,-21.00,0.00,\"\",0.00,122.00,110.00,735.00,,,,,,\n2015,5,18,\"DL\",\"664\",\"TPA\",\"LGA\",321.00,325.00,0.00,\"\",0.00,167.00,144.00,1010.00,197.00,0.00,4.00,0.00,124.00,\n2015,5,18,\"DL\",\"665\",\"ATL\",\"ALB\",7.00,-7.00,0.00,\"\",0.00,126.00,106.00,853.00,,,,,,\n2015,5,18,\"DL\",\"665\",\"ALB\",\"ATL\",24.00,19.00,0.00,\"\",0.00,147.00,128.00,853.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,18,\"DL\",\"676\",\"STT\",\"JFK\",13.00,-7.00,0.00,\"\",0.00,232.00,214.00,1623.00,,,,,,\n2015,5,18,\"DL\",\"707\",\"DTW\",\"ALB\",-6.00,-14.00,0.00,\"\",0.00,89.00,63.00,489.00,,,,,,\n2015,5,18,\"DL\",\"707\",\"ALB\",\"DTW\",-7.00,-18.00,0.00,\"\",0.00,99.00,75.00,489.00,,,,,,\n2015,5,18,\"DL\",\"714\",\"DTW\",\"LGA\",168.00,185.00,0.00,\"\",0.00,123.00,76.00,502.00,0.00,0.00,185.00,0.00,0.00,\n2015,5,18,\"DL\",\"723\",\"ATL\",\"BUF\",-4.00,-23.00,0.00,\"\",0.00,108.00,93.00,712.00,,,,,,\n2015,5,18,\"DL\",\"723\",\"BUF\",\"ATL\",-2.00,-2.00,0.00,\"\",0.00,131.00,118.00,712.00,,,,,,\n2015,5,18,\"DL\",\"725\",\"ATL\",\"LGA\",0.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,18,\"DL\",\"729\",\"LAS\",\"JFK\",210.00,292.00,0.00,\"\",0.00,387.00,335.00,2248.00,0.00,0.00,292.00,0.00,0.00,\n2015,5,18,\"DL\",\"731\",\"LGA\",\"DTW\",0.00,-1.00,0.00,\"\",0.00,113.00,86.00,502.00,,,,,,\n2015,5,18,\"DL\",\"750\",\"BOS\",\"JFK\",-9.00,-11.00,0.00,\"\",0.00,78.00,38.00,187.00,,,,,,\n2015,5,18,\"DL\",\"763\",\"BOS\",\"JFK\",148.00,143.00,0.00,\"\",0.00,73.00,49.00,187.00,0.00,0.00,143.00,0.00,0.00,\n2015,5,18,\"DL\",\"765\",\"DTW\",\"BUF\",-5.00,-10.00,0.00,\"\",0.00,60.00,41.00,241.00,,,,,,\n2015,5,18,\"DL\",\"765\",\"BUF\",\"DTW\",-2.00,-15.00,0.00,\"\",0.00,62.00,45.00,241.00,,,,,,\n2015,5,18,\"DL\",\"772\",\"PBI\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,162.00,144.00,1035.00,,,,,,\n2015,5,18,\"DL\",\"781\",\"LGA\",\"ATL\",237.00,261.00,0.00,\"\",0.00,186.00,142.00,762.00,8.00,0.00,24.00,0.00,229.00,\n2015,5,18,\"DL\",\"782\",\"MIA\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,177.00,148.00,1089.00,,,,,,\n2015,5,18,\"DL\",\"787\",\"MCO\",\"JFK\",175.00,203.00,0.00,\"\",0.00,194.00,154.00,944.00,3.00,0.00,193.00,0.00,7.00,\n2015,5,18,\"DL\",\"789\",\"MIA\",\"LGA\",183.00,217.00,0.00,\"\",0.00,222.00,157.00,1096.00,5.00,0.00,35.00,0.00,177.00,\n2015,5,18,\"DL\",\"791\",\"LAX\",\"JFK\",1.00,-14.00,0.00,\"\",0.00,315.00,297.00,2475.00,,,,,,\n2015,5,18,\"DL\",\"792\",\"PBI\",\"JFK\",165.00,177.00,0.00,\"\",0.00,179.00,145.00,1028.00,0.00,0.00,177.00,0.00,0.00,\n2015,5,18,\"DL\",\"793\",\"BOS\",\"JFK\",271.00,280.00,0.00,\"\",0.00,103.00,76.00,187.00,60.00,0.00,9.00,0.00,211.00,\n2015,5,18,\"DL\",\"802\",\"ATL\",\"LGA\",30.00,148.00,0.00,\"\",0.00,263.00,110.00,762.00,0.00,0.00,129.00,0.00,19.00,\n2015,5,18,\"DL\",\"804\",\"LGA\",\"MSP\",338.00,320.00,0.00,\"\",0.00,176.00,143.00,1020.00,0.00,0.00,0.00,0.00,320.00,\n2015,5,18,\"DL\",\"856\",\"SAN\",\"JFK\",62.00,50.00,0.00,\"\",0.00,325.00,286.00,2446.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,18,\"DL\",\"871\",\"MSP\",\"LGA\",75.00,76.00,0.00,\"\",0.00,165.00,143.00,1020.00,75.00,0.00,1.00,0.00,0.00,\n2015,5,18,\"DL\",\"874\",\"LGA\",\"MIA\",-3.00,-38.00,0.00,\"\",0.00,170.00,146.00,1096.00,,,,,,\n2015,5,18,\"DL\",\"878\",\"RSW\",\"LGA\",36.00,35.00,0.00,\"\",0.00,171.00,139.00,1080.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,18,\"DL\",\"884\",\"LGA\",\"DEN\",72.00,66.00,0.00,\"\",0.00,268.00,235.00,1620.00,5.00,0.00,0.00,0.00,61.00,\n2015,5,18,\"DL\",\"889\",\"MSP\",\"LGA\",177.00,192.00,0.00,\"\",0.00,176.00,139.00,1020.00,0.00,0.00,192.00,0.00,0.00,\n2015,5,18,\"DL\",\"904\",\"LGA\",\"ATL\",-1.00,-19.00,0.00,\"\",0.00,131.00,102.00,762.00,,,,,,\n2015,5,18,\"DL\",\"906\",\"ATL\",\"LGA\",16.00,44.00,0.00,\"\",0.00,173.00,124.00,762.00,7.00,0.00,28.00,0.00,9.00,\n2015,5,18,\"DL\",\"909\",\"LGA\",\"MIA\",189.00,177.00,0.00,\"\",0.00,182.00,152.00,1096.00,0.00,0.00,0.00,0.00,177.00,\n2015,5,18,\"DL\",\"910\",\"MCO\",\"LGA\",-3.00,,0.00,\"\",1.00,,,950.00,,,,,,\n2015,5,18,\"DL\",\"919\",\"ROC\",\"MSP\",83.00,70.00,0.00,\"\",0.00,138.00,114.00,783.00,70.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"DL\",\"928\",\"DEN\",\"LGA\",103.00,91.00,0.00,\"\",0.00,224.00,193.00,1620.00,0.00,0.00,91.00,0.00,0.00,\n2015,5,18,\"DL\",\"939\",\"MCO\",\"LGA\",15.00,38.00,0.00,\"\",0.00,186.00,139.00,950.00,1.00,0.00,37.00,0.00,0.00,\n2015,5,18,\"DL\",\"964\",\"LGA\",\"ATL\",199.00,174.00,0.00,\"\",0.00,121.00,100.00,762.00,3.00,0.00,0.00,0.00,171.00,\n2015,5,18,\"DL\",\"965\",\"MCO\",\"LGA\",118.00,145.00,0.00,\"\",0.00,188.00,153.00,950.00,5.00,0.00,42.00,0.00,98.00,\n2015,5,18,\"DL\",\"971\",\"LGA\",\"DEN\",-1.00,-4.00,0.00,\"\",0.00,264.00,241.00,1620.00,,,,,,\n2015,5,18,\"DL\",\"986\",\"ATL\",\"LGA\",299.00,316.00,0.00,\"\",0.00,150.00,105.00,762.00,0.00,0.00,316.00,0.00,0.00,\n2015,5,18,\"DL\",\"997\",\"DTW\",\"LGA\",46.00,91.00,0.00,\"\",0.00,149.00,116.00,502.00,0.00,0.00,91.00,0.00,0.00,\n2015,5,18,\"DL\",\"1088\",\"FLL\",\"LGA\",28.00,51.00,0.00,\"\",0.00,200.00,145.00,1076.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,18,\"DL\",\"1109\",\"SEA\",\"JFK\",37.00,64.00,0.00,\"\",0.00,362.00,329.00,2422.00,0.00,0.00,64.00,0.00,0.00,\n2015,5,18,\"DL\",\"1111\",\"ATL\",\"ROC\",71.00,57.00,0.00,\"\",0.00,116.00,94.00,749.00,2.00,0.00,0.00,0.00,55.00,\n2015,5,18,\"DL\",\"1121\",\"PBI\",\"LGA\",116.00,128.00,0.00,\"\",0.00,185.00,152.00,1035.00,4.00,0.00,13.00,0.00,111.00,\n2015,5,18,\"DL\",\"1131\",\"LGA\",\"FLL\",58.00,28.00,0.00,\"\",0.00,162.00,135.00,1076.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"DL\",\"1145\",\"LGA\",\"DTW\",180.00,179.00,0.00,\"\",0.00,123.00,77.00,502.00,4.00,0.00,0.00,0.00,175.00,\n2015,5,18,\"DL\",\"1155\",\"DTW\",\"ROC\",16.00,8.00,0.00,\"\",0.00,63.00,46.00,296.00,,,,,,\n2015,5,18,\"DL\",\"1159\",\"ATL\",\"BUF\",24.00,22.00,0.00,\"\",0.00,120.00,93.00,712.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,18,\"DL\",\"1159\",\"BUF\",\"ATL\",31.00,45.00,0.00,\"\",0.00,143.00,125.00,712.00,9.00,0.00,14.00,0.00,22.00,\n2015,5,18,\"DL\",\"1162\",\"LAX\",\"JFK\",7.00,-9.00,0.00,\"\",0.00,309.00,279.00,2475.00,,,,,,\n2015,5,18,\"DL\",\"1174\",\"LGA\",\"PBI\",51.00,44.00,0.00,\"\",0.00,173.00,132.00,1035.00,0.00,0.00,0.00,0.00,44.00,\n2015,5,18,\"DL\",\"1176\",\"ATL\",\"BUF\",35.00,116.00,0.00,\"\",0.00,211.00,96.00,712.00,0.00,0.00,81.00,0.00,35.00,\n2015,5,18,\"DL\",\"1176\",\"BUF\",\"ATL\",115.00,104.00,0.00,\"\",0.00,123.00,97.00,712.00,0.00,0.00,0.00,0.00,104.00,\n2015,5,18,\"DL\",\"1186\",\"ATL\",\"LGA\",213.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,18,\"DL\",\"1214\",\"LGA\",\"ATL\",116.00,108.00,0.00,\"\",0.00,156.00,119.00,762.00,0.00,0.00,33.00,0.00,75.00,\n2015,5,18,\"DL\",\"1227\",\"PHX\",\"JFK\",-4.00,-27.00,0.00,\"\",0.00,267.00,248.00,2153.00,,,,,,\n2015,5,15,\"DL\",\"1214\",\"LGA\",\"ATL\",18.00,-10.00,0.00,\"\",0.00,136.00,108.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1227\",\"PHX\",\"JFK\",2.00,1.00,0.00,\"\",0.00,289.00,263.00,2153.00,,,,,,\n2015,5,15,\"DL\",\"1242\",\"LGA\",\"PBI\",-2.00,-28.00,0.00,\"\",0.00,158.00,145.00,1035.00,,,,,,\n2015,5,15,\"DL\",\"1262\",\"LAX\",\"JFK\",2.00,-12.00,0.00,\"\",0.00,316.00,288.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"1264\",\"SLC\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,268.00,243.00,1990.00,,,,,,\n2015,5,15,\"DL\",\"1266\",\"BUF\",\"ATL\",-5.00,-4.00,0.00,\"\",0.00,123.00,107.00,712.00,,,,,,\n2015,5,15,\"DL\",\"1269\",\"LGA\",\"MIA\",3.00,-9.00,0.00,\"\",0.00,185.00,146.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"1278\",\"MSP\",\"BUF\",1.00,-10.00,0.00,\"\",0.00,108.00,95.00,735.00,,,,,,\n2015,5,15,\"DL\",\"1286\",\"ATL\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,117.00,100.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1288\",\"LGA\",\"FLL\",86.00,64.00,0.00,\"\",0.00,173.00,151.00,1076.00,64.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"DL\",\"1289\",\"LGA\",\"ATL\",8.00,-16.00,0.00,\"\",0.00,138.00,109.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1298\",\"LGA\",\"ATL\",-6.00,-17.00,0.00,\"\",0.00,150.00,108.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1306\",\"DTW\",\"LGA\",-8.00,0.00,0.00,\"\",0.00,115.00,70.00,502.00,,,,,,\n2015,5,15,\"DL\",\"1312\",\"TPA\",\"JFK\",-6.00,-29.00,0.00,\"\",0.00,151.00,136.00,1005.00,,,,,,\n2015,5,15,\"DL\",\"1335\",\"MIA\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,170.00,150.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"1356\",\"BUF\",\"DTW\",27.00,43.00,0.00,\"\",0.00,87.00,47.00,241.00,27.00,0.00,16.00,0.00,0.00,\n2015,5,15,\"DL\",\"1359\",\"MCO\",\"LGA\",-4.00,7.00,0.00,\"\",0.00,174.00,131.00,950.00,,,,,,\n2015,5,15,\"DL\",\"1370\",\"ATL\",\"ROC\",16.00,4.00,0.00,\"\",0.00,113.00,98.00,749.00,,,,,,\n2015,5,15,\"DL\",\"1370\",\"ROC\",\"ATL\",5.00,1.00,0.00,\"\",0.00,130.00,109.00,749.00,,,,,,\n2015,5,15,\"DL\",\"1372\",\"DTW\",\"BUF\",0.00,2.00,0.00,\"\",0.00,68.00,42.00,241.00,,,,,,\n2015,5,15,\"DL\",\"1383\",\"LGA\",\"ATL\",9.00,-19.00,0.00,\"\",0.00,140.00,108.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1386\",\"ATL\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,123.00,103.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1394\",\"ATL\",\"JFK\",11.00,-13.00,0.00,\"\",0.00,129.00,105.00,760.00,,,,,,\n2015,5,15,\"DL\",\"1419\",\"ATL\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,145.00,106.00,760.00,,,,,,\n2015,5,15,\"DL\",\"1428\",\"LGA\",\"ATL\",3.00,-18.00,0.00,\"\",0.00,137.00,114.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1447\",\"LGA\",\"ATL\",-1.00,-9.00,0.00,\"\",0.00,136.00,114.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1473\",\"SEA\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,318.00,292.00,2422.00,,,,,,\n2015,5,16,\"DL\",\"1145\",\"LGA\",\"DTW\",56.00,34.00,0.00,\"\",0.00,98.00,74.00,502.00,34.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"DL\",\"1159\",\"ATL\",\"BUF\",-6.00,-11.00,0.00,\"\",0.00,115.00,97.00,712.00,,,,,,\n2015,5,16,\"DL\",\"1159\",\"BUF\",\"ATL\",-2.00,-10.00,0.00,\"\",0.00,119.00,102.00,712.00,,,,,,\n2015,5,16,\"DL\",\"1162\",\"LAX\",\"JFK\",-1.00,7.00,0.00,\"\",0.00,333.00,311.00,2475.00,,,,,,\n2015,5,16,\"DL\",\"1174\",\"LGA\",\"PBI\",-8.00,-3.00,0.00,\"\",0.00,183.00,138.00,1035.00,,,,,,\n2015,5,16,\"DL\",\"1176\",\"ATL\",\"BUF\",-4.00,-22.00,0.00,\"\",0.00,112.00,95.00,712.00,,,,,,\n2015,5,16,\"DL\",\"1176\",\"BUF\",\"ATL\",0.00,-9.00,0.00,\"\",0.00,118.00,98.00,712.00,,,,,,\n2015,5,16,\"DL\",\"1186\",\"ATL\",\"LGA\",8.00,-4.00,0.00,\"\",0.00,128.00,101.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1242\",\"LGA\",\"PBI\",-5.00,-9.00,0.00,\"\",0.00,176.00,131.00,1035.00,,,,,,\n2015,5,16,\"DL\",\"1262\",\"LAX\",\"JFK\",1.00,5.00,0.00,\"\",0.00,334.00,314.00,2475.00,,,,,,\n2015,5,16,\"DL\",\"1264\",\"SLC\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,274.00,252.00,1990.00,,,,,,\n2015,5,16,\"DL\",\"1266\",\"BUF\",\"ATL\",-1.00,-3.00,0.00,\"\",0.00,118.00,100.00,712.00,,,,,,\n2015,5,16,\"DL\",\"1269\",\"LGA\",\"MIA\",5.00,-2.00,0.00,\"\",0.00,189.00,143.00,1096.00,,,,,,\n2015,5,16,\"DL\",\"1286\",\"ATL\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,124.00,107.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1288\",\"LGA\",\"FLL\",3.00,-23.00,0.00,\"\",0.00,166.00,145.00,1076.00,,,,,,\n2015,5,16,\"DL\",\"1289\",\"LGA\",\"ATL\",-6.00,-11.00,0.00,\"\",0.00,156.00,117.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1298\",\"LGA\",\"ATL\",0.00,-26.00,0.00,\"\",0.00,131.00,109.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1312\",\"TPA\",\"JFK\",10.00,-8.00,0.00,\"\",0.00,154.00,131.00,1005.00,,,,,,\n2015,5,16,\"DL\",\"1335\",\"MIA\",\"LGA\",22.00,23.00,0.00,\"\",0.00,184.00,152.00,1096.00,7.00,0.00,1.00,0.00,15.00,\n2015,5,16,\"DL\",\"1339\",\"MIA\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,180.00,148.00,1096.00,,,,,,\n2015,5,16,\"DL\",\"1356\",\"BUF\",\"DTW\",0.00,-13.00,0.00,\"\",0.00,65.00,43.00,241.00,,,,,,\n2015,5,16,\"DL\",\"1359\",\"MCO\",\"LGA\",-10.00,-16.00,0.00,\"\",0.00,154.00,130.00,950.00,,,,,,\n2015,5,16,\"DL\",\"1370\",\"ATL\",\"ROC\",-5.00,-4.00,0.00,\"\",0.00,124.00,101.00,749.00,,,,,,\n2015,5,16,\"DL\",\"1370\",\"ROC\",\"ATL\",-6.00,-10.00,0.00,\"\",0.00,129.00,102.00,749.00,,,,,,\n2015,5,16,\"DL\",\"1372\",\"DTW\",\"BUF\",-2.00,4.00,0.00,\"\",0.00,72.00,44.00,241.00,,,,,,\n2015,5,16,\"DL\",\"1383\",\"LGA\",\"ATL\",-3.00,-21.00,0.00,\"\",0.00,144.00,112.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1386\",\"ATL\",\"LGA\",2.00,-19.00,0.00,\"\",0.00,113.00,100.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1394\",\"ATL\",\"JFK\",-4.00,-30.00,0.00,\"\",0.00,125.00,101.00,760.00,,,,,,\n2015,5,16,\"DL\",\"1409\",\"FLL\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,170.00,151.00,1076.00,,,,,,\n2015,5,16,\"DL\",\"1419\",\"ATL\",\"JFK\",-2.00,-30.00,0.00,\"\",0.00,127.00,106.00,760.00,,,,,,\n2015,5,16,\"DL\",\"1428\",\"LGA\",\"ATL\",-2.00,5.00,0.00,\"\",0.00,163.00,119.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1429\",\"MSY\",\"LGA\",2.00,3.00,0.00,\"\",0.00,176.00,152.00,1183.00,,,,,,\n2015,5,16,\"DL\",\"1463\",\"DEN\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,233.00,209.00,1620.00,,,,,,\n2015,5,16,\"DL\",\"1473\",\"SEA\",\"JFK\",1.00,26.00,0.00,\"\",0.00,355.00,310.00,2422.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,16,\"DL\",\"1479\",\"TPA\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,152.00,135.00,1010.00,,,,,,\n2015,5,16,\"DL\",\"1486\",\"ATL\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,125.00,108.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1487\",\"ATL\",\"JFK\",3.00,-13.00,0.00,\"\",0.00,127.00,106.00,760.00,,,,,,\n2015,5,16,\"DL\",\"1496\",\"MSP\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,155.00,131.00,1020.00,,,,,,\n2015,5,16,\"DL\",\"1498\",\"FLL\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,166.00,149.00,1076.00,,,,,,\n2015,5,16,\"DL\",\"1510\",\"FLL\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,173.00,153.00,1076.00,,,,,,\n2015,5,16,\"DL\",\"1514\",\"LGA\",\"FLL\",-2.00,-30.00,0.00,\"\",0.00,159.00,141.00,1076.00,,,,,,\n2015,5,16,\"DL\",\"1515\",\"ATL\",\"ALB\",-1.00,-14.00,0.00,\"\",0.00,132.00,111.00,853.00,,,,,,\n2015,5,16,\"DL\",\"1526\",\"MCO\",\"LGA\",-11.00,-5.00,0.00,\"\",0.00,163.00,132.00,950.00,,,,,,\n2015,5,16,\"DL\",\"1531\",\"LGA\",\"TPA\",-2.00,-18.00,0.00,\"\",0.00,161.00,140.00,1010.00,,,,,,\n2015,5,16,\"DL\",\"1542\",\"SEA\",\"JFK\",-4.00,,0.00,\"\",1.00,,,2422.00,,,,,,\n2015,5,16,\"DL\",\"1562\",\"BOS\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,75.00,40.00,187.00,,,,,,\n2015,5,16,\"DL\",\"1584\",\"ATL\",\"ROC\",-1.00,-20.00,0.00,\"\",0.00,113.00,99.00,749.00,,,,,,\n2015,5,16,\"DL\",\"1584\",\"ROC\",\"ATL\",-9.00,-18.00,0.00,\"\",0.00,125.00,108.00,749.00,,,,,,\n2015,5,16,\"DL\",\"1586\",\"ATL\",\"LGA\",-1.00,-27.00,0.00,\"\",0.00,117.00,102.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1596\",\"MSP\",\"LGA\",1.00,-16.00,0.00,\"\",0.00,145.00,130.00,1020.00,,,,,,\n2015,5,16,\"DL\",\"1642\",\"LGA\",\"MSY\",9.00,16.00,0.00,\"\",0.00,216.00,156.00,1183.00,0.00,9.00,7.00,0.00,0.00,\n2015,5,16,\"DL\",\"1644\",\"FLL\",\"JFK\",13.00,-10.00,0.00,\"\",0.00,163.00,148.00,1069.00,,,,,,\n2015,5,16,\"DL\",\"1647\",\"LGA\",\"ATL\",-1.00,-3.00,0.00,\"\",0.00,148.00,111.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1671\",\"MIA\",\"JFK\",12.00,15.00,0.00,\"\",0.00,189.00,148.00,1089.00,9.00,0.00,3.00,0.00,3.00,\n2015,5,16,\"DL\",\"1672\",\"ATL\",\"BUF\",-1.00,-1.00,0.00,\"\",0.00,116.00,97.00,712.00,,,,,,\n2015,5,16,\"DL\",\"1672\",\"BUF\",\"ATL\",1.00,-4.00,0.00,\"\",0.00,122.00,101.00,712.00,,,,,,\n2015,5,16,\"DL\",\"1685\",\"LGA\",\"MCO\",-1.00,-20.00,0.00,\"\",0.00,154.00,125.00,950.00,,,,,,\n2015,5,16,\"DL\",\"1697\",\"LGA\",\"ATL\",0.00,-16.00,0.00,\"\",0.00,137.00,116.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1702\",\"LGA\",\"FLL\",-7.00,-22.00,0.00,\"\",0.00,174.00,142.00,1076.00,,,,,,\n2015,5,16,\"DL\",\"1728\",\"LAS\",\"JFK\",9.00,6.00,0.00,\"\",0.00,293.00,265.00,2248.00,,,,,,\n2015,5,16,\"DL\",\"1750\",\"ATL\",\"JFK\",14.00,6.00,0.00,\"\",0.00,139.00,111.00,760.00,,,,,,\n2015,5,16,\"DL\",\"1786\",\"ATL\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,121.00,101.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1800\",\"LGA\",\"DEN\",28.00,61.00,0.00,\"\",0.00,307.00,214.00,1620.00,0.00,28.00,33.00,0.00,0.00,\n2015,5,16,\"DL\",\"1806\",\"DTW\",\"JFK\",9.00,-7.00,0.00,\"\",0.00,98.00,74.00,509.00,,,,,,\n2015,5,16,\"DL\",\"1830\",\"LGA\",\"MSP\",-2.00,-8.00,0.00,\"\",0.00,184.00,161.00,1020.00,,,,,,\n2015,5,16,\"DL\",\"1841\",\"SJU\",\"JFK\",-6.00,-5.00,0.00,\"\",0.00,248.00,216.00,1598.00,,,,,,\n2015,5,16,\"DL\",\"1851\",\"CHS\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,107.00,88.00,636.00,,,,,,\n2015,5,16,\"DL\",\"1875\",\"LGA\",\"TPA\",-4.00,-14.00,0.00,\"\",0.00,169.00,139.00,1010.00,,,,,,\n2015,5,16,\"DL\",\"1879\",\"LGA\",\"FLL\",30.00,0.00,0.00,\"\",0.00,154.00,136.00,1076.00,,,,,,\n2015,5,16,\"DL\",\"1885\",\"LGA\",\"MCO\",12.00,5.00,0.00,\"\",0.00,171.00,125.00,950.00,,,,,,\n2015,5,16,\"DL\",\"1897\",\"LGA\",\"MCO\",-6.00,-34.00,0.00,\"\",0.00,143.00,124.00,950.00,,,,,,\n2015,5,16,\"DL\",\"1902\",\"LGA\",\"PBI\",-5.00,-18.00,0.00,\"\",0.00,172.00,136.00,1035.00,,,,,,\n2015,5,16,\"DL\",\"1919\",\"LGA\",\"MSP\",-2.00,-14.00,0.00,\"\",0.00,166.00,146.00,1020.00,,,,,,\n2015,5,16,\"DL\",\"1947\",\"FLL\",\"JFK\",-11.00,-18.00,0.00,\"\",0.00,176.00,148.00,1069.00,,,,,,\n2015,5,16,\"DL\",\"1948\",\"DTW\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,95.00,71.00,502.00,,,,,,\n2015,5,16,\"DL\",\"1958\",\"PBI\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,173.00,146.00,1035.00,,,,,,\n2015,5,16,\"DL\",\"1969\",\"BUF\",\"JFK\",-2.00,10.00,0.00,\"\",0.00,102.00,72.00,301.00,,,,,,\n2015,5,16,\"DL\",\"1972\",\"AUS\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,209.00,191.00,1521.00,,,,,,\n2015,5,16,\"DL\",\"1982\",\"LGA\",\"MIA\",-5.00,-29.00,0.00,\"\",0.00,172.00,146.00,1096.00,,,,,,\n2015,5,16,\"DL\",\"1985\",\"ALB\",\"DTW\",-5.00,-21.00,0.00,\"\",0.00,85.00,72.00,489.00,,,,,,\n2015,5,16,\"DL\",\"1986\",\"ATL\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,126.00,102.00,762.00,,,,,,\n2015,5,16,\"DL\",\"1994\",\"PHX\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,277.00,251.00,2153.00,,,,,,\n2015,5,16,\"DL\",\"1996\",\"MSP\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,157.00,133.00,1020.00,,,,,,\n2015,5,16,\"DL\",\"2003\",\"LGA\",\"MIA\",-5.00,-14.00,0.00,\"\",0.00,176.00,146.00,1096.00,,,,,,\n2015,5,16,\"DL\",\"2013\",\"ATL\",\"SYR\",-3.00,-13.00,0.00,\"\",0.00,123.00,103.00,794.00,,,,,,\n2015,5,16,\"DL\",\"2014\",\"SYR\",\"ATL\",-1.00,-9.00,0.00,\"\",0.00,129.00,110.00,794.00,,,,,,\n2015,5,16,\"DL\",\"2016\",\"LGA\",\"ATL\",-4.00,-10.00,0.00,\"\",0.00,144.00,108.00,762.00,,,,,,\n2015,5,16,\"DL\",\"2017\",\"JFK\",\"PHX\",-2.00,-4.00,0.00,\"\",0.00,327.00,292.00,2153.00,,,,,,\n2015,5,16,\"DL\",\"2025\",\"JFK\",\"FLL\",-3.00,-29.00,0.00,\"\",0.00,174.00,140.00,1069.00,,,,,,\n2015,5,16,\"DL\",\"2028\",\"JFK\",\"ATL\",-3.00,15.00,0.00,\"\",0.00,181.00,105.00,760.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,16,\"DL\",\"2032\",\"MSP\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,154.00,130.00,1029.00,,,,,,\n2015,5,16,\"DL\",\"2045\",\"JFK\",\"ATL\",10.00,-6.00,0.00,\"\",0.00,149.00,108.00,760.00,,,,,,\n2015,5,16,\"DL\",\"2053\",\"JFK\",\"FLL\",0.00,7.00,0.00,\"\",0.00,207.00,146.00,1069.00,,,,,,\n2015,5,16,\"DL\",\"2058\",\"MCO\",\"JFK\",-7.00,-3.00,0.00,\"\",0.00,158.00,127.00,944.00,,,,,,\n2015,5,16,\"DL\",\"2073\",\"JFK\",\"DEN\",-1.00,-8.00,0.00,\"\",0.00,271.00,227.00,1626.00,,,,,,\n2015,5,16,\"DL\",\"2074\",\"LGA\",\"ATL\",-6.00,17.00,0.00,\"\",0.00,176.00,106.00,762.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,16,\"DL\",\"2077\",\"LGA\",\"MCO\",-3.00,-19.00,0.00,\"\",0.00,157.00,127.00,950.00,,,,,,\n2015,5,16,\"DL\",\"2093\",\"JFK\",\"TPA\",-2.00,-29.00,0.00,\"\",0.00,157.00,136.00,1005.00,,,,,,\n2015,5,16,\"DL\",\"2096\",\"LGA\",\"MSP\",-3.00,-7.00,0.00,\"\",0.00,185.00,152.00,1020.00,,,,,,\n2015,5,16,\"DL\",\"2107\",\"JFK\",\"MCO\",-4.00,-33.00,0.00,\"\",0.00,158.00,128.00,944.00,,,,,,\n2015,5,16,\"DL\",\"2119\",\"LGA\",\"MSP\",-5.00,-14.00,0.00,\"\",0.00,173.00,148.00,1020.00,,,,,,\n2015,5,16,\"DL\",\"2129\",\"ROC\",\"ATL\",-5.00,-8.00,0.00,\"\",0.00,126.00,105.00,749.00,,,,,,\n2015,5,16,\"DL\",\"2150\",\"LGA\",\"DTW\",-1.00,-28.00,0.00,\"\",0.00,101.00,78.00,502.00,,,,,,\n2015,5,16,\"DL\",\"2151\",\"MIA\",\"LGA\",-4.00,-3.00,0.00,\"\",0.00,185.00,156.00,1096.00,,,,,,\n2015,5,16,\"DL\",\"2155\",\"LAS\",\"JFK\",5.00,-10.00,0.00,\"\",0.00,284.00,266.00,2248.00,,,,,,\n2015,5,16,\"DL\",\"2156\",\"ATL\",\"SYR\",-2.00,-16.00,0.00,\"\",0.00,114.00,102.00,794.00,,,,,,\n2015,5,16,\"DL\",\"2156\",\"SYR\",\"ATL\",-6.00,-22.00,0.00,\"\",0.00,124.00,111.00,794.00,,,,,,\n2015,5,16,\"DL\",\"2166\",\"SYR\",\"DTW\",-1.00,-23.00,0.00,\"\",0.00,71.00,57.00,374.00,,,,,,\n2015,5,16,\"DL\",\"2174\",\"DTW\",\"JFK\",3.00,5.00,0.00,\"\",0.00,123.00,78.00,509.00,,,,,,\n2015,5,18,\"DL\",\"1473\",\"SEA\",\"JFK\",145.00,179.00,0.00,\"\",0.00,364.00,306.00,2422.00,0.00,0.00,179.00,0.00,0.00,\n2015,5,18,\"DL\",\"1486\",\"ATL\",\"LGA\",64.00,75.00,0.00,\"\",0.00,150.00,105.00,762.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,18,\"DL\",\"1487\",\"ATL\",\"JFK\",4.00,2.00,0.00,\"\",0.00,142.00,107.00,760.00,,,,,,\n2015,5,18,\"DL\",\"1496\",\"MSP\",\"LGA\",64.00,75.00,0.00,\"\",0.00,177.00,149.00,1020.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,18,\"DL\",\"1498\",\"FLL\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,169.00,149.00,1076.00,,,,,,\n2015,5,18,\"DL\",\"1514\",\"LGA\",\"FLL\",56.00,56.00,0.00,\"\",0.00,189.00,143.00,1076.00,56.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"DL\",\"1515\",\"ATL\",\"ALB\",225.00,219.00,0.00,\"\",0.00,141.00,109.00,853.00,219.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"DL\",\"1526\",\"MCO\",\"LGA\",141.00,144.00,0.00,\"\",0.00,162.00,135.00,950.00,0.00,0.00,144.00,0.00,0.00,\n2015,5,18,\"DL\",\"1542\",\"SEA\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,313.00,295.00,2422.00,,,,,,\n2015,5,18,\"DL\",\"1543\",\"ATL\",\"ALB\",-2.00,-9.00,0.00,\"\",0.00,137.00,113.00,853.00,,,,,,\n2015,5,18,\"DL\",\"1543\",\"ALB\",\"ATL\",-1.00,-13.00,0.00,\"\",0.00,150.00,135.00,853.00,,,,,,\n2015,5,18,\"DL\",\"1548\",\"LGA\",\"DTW\",63.00,75.00,0.00,\"\",0.00,132.00,76.00,502.00,19.00,0.00,12.00,0.00,44.00,\n2015,5,18,\"DL\",\"1560\",\"MSY\",\"LGA\",136.00,141.00,0.00,\"\",0.00,191.00,167.00,1183.00,0.00,0.00,23.00,0.00,118.00,\n2015,5,18,\"DL\",\"1562\",\"BOS\",\"JFK\",26.00,16.00,0.00,\"\",0.00,69.00,48.00,187.00,11.00,0.00,0.00,0.00,5.00,\n2015,5,18,\"DL\",\"1566\",\"LGA\",\"PBI\",178.00,150.00,0.00,\"\",0.00,155.00,128.00,1035.00,135.00,0.00,0.00,0.00,15.00,\n2015,5,18,\"DL\",\"1580\",\"LGA\",\"DTW\",810.00,798.00,0.00,\"\",0.00,113.00,86.00,502.00,798.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"DL\",\"1583\",\"SFO\",\"JFK\",125.00,119.00,0.00,\"\",0.00,343.00,326.00,2586.00,0.00,0.00,119.00,0.00,0.00,\n2015,5,18,\"DL\",\"1584\",\"ATL\",\"ROC\",60.00,62.00,0.00,\"\",0.00,135.00,94.00,749.00,0.00,2.00,2.00,0.00,58.00,\n2015,5,18,\"DL\",\"1584\",\"ROC\",\"ATL\",71.00,54.00,0.00,\"\",0.00,118.00,104.00,749.00,0.00,0.00,9.00,0.00,45.00,\n2015,5,18,\"DL\",\"1586\",\"ATL\",\"LGA\",79.00,136.00,0.00,\"\",0.00,201.00,109.00,762.00,0.00,0.00,136.00,0.00,0.00,\n2015,5,18,\"DL\",\"1596\",\"MSP\",\"LGA\",23.00,13.00,0.00,\"\",0.00,155.00,132.00,1020.00,,,,,,\n2015,5,18,\"DL\",\"1644\",\"FLL\",\"JFK\",142.00,123.00,0.00,\"\",0.00,168.00,140.00,1069.00,0.00,0.00,123.00,0.00,0.00,\n2015,5,18,\"DL\",\"1647\",\"LGA\",\"ATL\",1.00,-27.00,0.00,\"\",0.00,124.00,98.00,762.00,,,,,,\n2015,5,18,\"DL\",\"1671\",\"MIA\",\"JFK\",184.00,204.00,0.00,\"\",0.00,207.00,142.00,1089.00,0.00,0.00,176.00,0.00,28.00,\n2015,5,18,\"DL\",\"1672\",\"ATL\",\"BUF\",11.00,9.00,0.00,\"\",0.00,117.00,93.00,712.00,,,,,,\n2015,5,18,\"DL\",\"1672\",\"BUF\",\"ATL\",6.00,-3.00,0.00,\"\",0.00,119.00,96.00,712.00,,,,,,\n2015,5,15,\"DL\",\"1779\",\"LGA\",\"MSY\",-3.00,-19.00,0.00,\"\",0.00,183.00,163.00,1183.00,,,,,,\n2015,5,15,\"DL\",\"1786\",\"ATL\",\"LGA\",15.00,11.00,0.00,\"\",0.00,137.00,103.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1787\",\"FLL\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,166.00,143.00,1069.00,,,,,,\n2015,5,15,\"DL\",\"1796\",\"LGA\",\"MSP\",1.00,-18.00,0.00,\"\",0.00,175.00,150.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"1830\",\"SLC\",\"JFK\",5.00,-8.00,0.00,\"\",0.00,263.00,244.00,1990.00,,,,,,\n2015,5,15,\"DL\",\"1841\",\"SJU\",\"JFK\",5.00,-10.00,0.00,\"\",0.00,232.00,211.00,1598.00,,,,,,\n2015,5,15,\"DL\",\"1848\",\"DTW\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,100.00,77.00,502.00,,,,,,\n2015,5,15,\"DL\",\"1849\",\"LGA\",\"ATL\",-3.00,-35.00,0.00,\"\",0.00,126.00,103.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1851\",\"CHS\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,106.00,88.00,636.00,,,,,,\n2015,5,15,\"DL\",\"1875\",\"LGA\",\"TPA\",-6.00,-23.00,0.00,\"\",0.00,163.00,139.00,1010.00,,,,,,\n2015,5,15,\"DL\",\"1879\",\"LGA\",\"FLL\",-8.00,-23.00,0.00,\"\",0.00,172.00,144.00,1076.00,,,,,,\n2015,5,15,\"DL\",\"1885\",\"LGA\",\"MCO\",-2.00,-22.00,0.00,\"\",0.00,160.00,143.00,950.00,,,,,,\n2015,5,15,\"DL\",\"1886\",\"ATL\",\"LGA\",5.00,-23.00,0.00,\"\",0.00,122.00,104.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1897\",\"LGA\",\"MCO\",-8.00,-16.00,0.00,\"\",0.00,166.00,131.00,950.00,,,,,,\n2015,5,15,\"DL\",\"1902\",\"LGA\",\"PBI\",-1.00,-11.00,0.00,\"\",0.00,174.00,139.00,1035.00,,,,,,\n2015,5,15,\"DL\",\"1917\",\"MIA\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,178.00,148.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"1919\",\"LGA\",\"MSP\",0.00,-10.00,0.00,\"\",0.00,172.00,148.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"1930\",\"LGA\",\"MIA\",-4.00,-21.00,0.00,\"\",0.00,181.00,146.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"1935\",\"LGA\",\"TPA\",0.00,-21.00,0.00,\"\",0.00,161.00,138.00,1010.00,,,,,,\n2015,5,15,\"DL\",\"1947\",\"FLL\",\"JFK\",-10.00,-37.00,0.00,\"\",0.00,156.00,140.00,1069.00,,,,,,\n2015,5,15,\"DL\",\"1948\",\"DTW\",\"LGA\",35.00,40.00,0.00,\"\",0.00,112.00,69.00,502.00,28.00,0.00,5.00,0.00,7.00,\n2015,5,15,\"DL\",\"1949\",\"TPA\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,159.00,133.00,1010.00,,,,,,\n2015,5,15,\"DL\",\"1953\",\"LGA\",\"FLL\",64.00,31.00,0.00,\"\",0.00,161.00,140.00,1076.00,2.00,0.00,0.00,0.00,29.00,\n2015,5,15,\"DL\",\"1958\",\"PBI\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,167.00,142.00,1035.00,,,,,,\n2015,5,15,\"DL\",\"1969\",\"BUF\",\"JFK\",1.00,0.00,0.00,\"\",0.00,89.00,56.00,301.00,,,,,,\n2015,5,15,\"DL\",\"1972\",\"AUS\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,217.00,199.00,1521.00,,,,,,\n2015,5,15,\"DL\",\"1974\",\"MIA\",\"LGA\",3.00,-10.00,0.00,\"\",0.00,170.00,148.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"1982\",\"LGA\",\"MIA\",9.00,12.00,0.00,\"\",0.00,199.00,156.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"1985\",\"ALB\",\"DTW\",-5.00,-20.00,0.00,\"\",0.00,86.00,73.00,489.00,,,,,,\n2015,5,15,\"DL\",\"1986\",\"ATL\",\"LGA\",3.00,-12.00,0.00,\"\",0.00,135.00,98.00,762.00,,,,,,\n2015,5,15,\"DL\",\"1994\",\"PHX\",\"JFK\",1.00,-21.00,0.00,\"\",0.00,270.00,250.00,2153.00,,,,,,\n2015,5,15,\"DL\",\"1996\",\"MSP\",\"LGA\",-4.00,4.00,0.00,\"\",0.00,170.00,130.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"2003\",\"LGA\",\"MIA\",-3.00,-13.00,0.00,\"\",0.00,177.00,155.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"2013\",\"ATL\",\"SYR\",10.00,-6.00,0.00,\"\",0.00,119.00,103.00,794.00,,,,,,\n2015,5,15,\"DL\",\"2014\",\"SYR\",\"ATL\",-2.00,-1.00,0.00,\"\",0.00,140.00,121.00,794.00,,,,,,\n2015,5,15,\"DL\",\"2016\",\"LGA\",\"ATL\",6.00,3.00,0.00,\"\",0.00,150.00,118.00,762.00,,,,,,\n2015,5,15,\"DL\",\"2022\",\"LGA\",\"FLL\",101.00,74.00,0.00,\"\",0.00,165.00,140.00,1076.00,39.00,0.00,0.00,0.00,35.00,\n2015,5,15,\"DL\",\"2028\",\"FLL\",\"LGA\",115.00,103.00,0.00,\"\",0.00,169.00,145.00,1076.00,2.00,0.00,0.00,0.00,101.00,\n2015,5,15,\"DL\",\"2032\",\"MSP\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,149.00,125.00,1029.00,,,,,,\n2015,5,15,\"DL\",\"2037\",\"MCO\",\"LGA\",-8.00,-6.00,0.00,\"\",0.00,159.00,129.00,950.00,,,,,,\n2015,5,15,\"DL\",\"2040\",\"SFO\",\"JFK\",57.00,63.00,0.00,\"\",0.00,347.00,309.00,2586.00,0.00,0.00,12.00,0.00,51.00,\n2015,5,15,\"DL\",\"2043\",\"JFK\",\"PHX\",-1.00,-7.00,0.00,\"\",0.00,335.00,298.00,2153.00,,,,,,\n2015,5,15,\"DL\",\"2044\",\"JFK\",\"BOS\",9.00,-17.00,0.00,\"\",0.00,75.00,34.00,187.00,,,,,,\n2015,5,15,\"DL\",\"2058\",\"MCO\",\"JFK\",4.00,-4.00,0.00,\"\",0.00,147.00,120.00,944.00,,,,,,\n2015,5,15,\"DL\",\"2059\",\"JFK\",\"ATL\",1.00,-24.00,0.00,\"\",0.00,144.00,108.00,760.00,,,,,,\n2015,5,15,\"DL\",\"2074\",\"LGA\",\"ATL\",-3.00,-26.00,0.00,\"\",0.00,135.00,103.00,762.00,,,,,,\n2015,5,15,\"DL\",\"2077\",\"LGA\",\"MCO\",8.00,1.00,0.00,\"\",0.00,169.00,129.00,950.00,,,,,,\n2015,5,15,\"DL\",\"2086\",\"ATL\",\"LGA\",-2.00,-29.00,0.00,\"\",0.00,117.00,102.00,762.00,,,,,,\n2015,5,15,\"DL\",\"2096\",\"LGA\",\"MSP\",-2.00,-20.00,0.00,\"\",0.00,164.00,143.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"2119\",\"LGA\",\"MSP\",-2.00,-28.00,0.00,\"\",0.00,159.00,141.00,1020.00,,,,,,\n2015,5,15,\"DL\",\"2129\",\"ROC\",\"ATL\",-2.00,-4.00,0.00,\"\",0.00,127.00,113.00,749.00,,,,,,\n2015,5,15,\"DL\",\"2131\",\"LGA\",\"DTW\",1.00,-9.00,0.00,\"\",0.00,109.00,80.00,502.00,,,,,,\n2015,5,15,\"DL\",\"2135\",\"TPA\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,163.00,131.00,1010.00,,,,,,\n2015,5,15,\"DL\",\"2148\",\"LGA\",\"DTW\",-5.00,-23.00,0.00,\"\",0.00,110.00,77.00,502.00,,,,,,\n2015,5,15,\"DL\",\"2150\",\"LGA\",\"DTW\",0.00,-14.00,0.00,\"\",0.00,112.00,80.00,502.00,,,,,,\n2015,5,15,\"DL\",\"2151\",\"MIA\",\"LGA\",-6.00,-22.00,0.00,\"\",0.00,170.00,143.00,1096.00,,,,,,\n2015,5,15,\"DL\",\"2155\",\"LAS\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,288.00,264.00,2248.00,,,,,,\n2015,5,15,\"DL\",\"2156\",\"ATL\",\"SYR\",-3.00,-22.00,0.00,\"\",0.00,111.00,100.00,794.00,,,,,,\n2015,5,15,\"DL\",\"2156\",\"SYR\",\"ATL\",-5.00,-16.00,0.00,\"\",0.00,132.00,116.00,794.00,,,,,,\n2015,5,15,\"DL\",\"2166\",\"SYR\",\"DTW\",-1.00,2.00,0.00,\"\",0.00,96.00,69.00,374.00,,,,,,\n2015,5,15,\"DL\",\"2174\",\"DTW\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,109.00,76.00,509.00,,,,,,\n2015,5,15,\"DL\",\"2178\",\"LGA\",\"TPA\",-4.00,-19.00,0.00,\"\",0.00,166.00,139.00,1010.00,,,,,,\n2015,5,15,\"DL\",\"2181\",\"LGA\",\"MCO\",11.00,0.00,0.00,\"\",0.00,159.00,133.00,950.00,,,,,,\n2015,5,15,\"DL\",\"2182\",\"JFK\",\"PHX\",-8.00,-5.00,0.00,\"\",0.00,339.00,294.00,2153.00,,,,,,\n2015,5,15,\"DL\",\"2185\",\"FLL\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,159.00,136.00,1069.00,,,,,,\n2015,5,15,\"DL\",\"2186\",\"ATL\",\"LGA\",3.00,-11.00,0.00,\"\",0.00,132.00,103.00,762.00,,,,,,\n2015,5,15,\"DL\",\"2190\",\"JFK\",\"MIA\",-2.00,14.00,0.00,\"\",0.00,218.00,151.00,1089.00,,,,,,\n2015,5,15,\"DL\",\"2214\",\"ATL\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,135.00,101.00,762.00,,,,,,\n2015,5,15,\"DL\",\"2217\",\"JFK\",\"BOS\",-6.00,-30.00,0.00,\"\",0.00,68.00,42.00,187.00,,,,,,\n2015,5,15,\"DL\",\"2230\",\"CHS\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,126.00,89.00,636.00,,,,,,\n2015,5,15,\"DL\",\"2231\",\"DTW\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,98.00,72.00,502.00,,,,,,\n2015,5,15,\"DL\",\"2240\",\"SFO\",\"JFK\",4.00,-2.00,0.00,\"\",0.00,332.00,305.00,2586.00,,,,,,\n2015,5,15,\"DL\",\"2248\",\"DTW\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,103.00,80.00,502.00,,,,,,\n2015,5,15,\"DL\",\"2262\",\"LAX\",\"JFK\",3.00,-22.00,0.00,\"\",0.00,309.00,284.00,2475.00,,,,,,\n2015,5,15,\"DL\",\"2263\",\"JFK\",\"MIA\",-2.00,-29.00,0.00,\"\",0.00,183.00,151.00,1089.00,,,,,,\n2015,5,15,\"DL\",\"2270\",\"LGA\",\"RSW\",0.00,13.00,0.00,\"\",0.00,209.00,159.00,1080.00,,,,,,\n2015,5,15,\"DL\",\"2276\",\"MCO\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,155.00,130.00,944.00,,,,,,\n2015,5,15,\"DL\",\"2277\",\"JFK\",\"TPA\",10.00,-16.00,0.00,\"\",0.00,167.00,139.00,1005.00,,,,,,\n2015,5,15,\"DL\",\"2280\",\"LGA\",\"TPA\",1.00,-13.00,0.00,\"\",0.00,160.00,139.00,1010.00,,,,,,\n2015,5,15,\"DL\",\"2282\",\"LGA\",\"MCO\",-7.00,-39.00,0.00,\"\",0.00,144.00,124.00,950.00,,,,,,\n2015,5,15,\"DL\",\"2285\",\"LGA\",\"MCO\",-9.00,15.00,0.00,\"\",0.00,187.00,143.00,950.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,17,\"DL\",\"1885\",\"LGA\",\"MCO\",-2.00,-25.00,0.00,\"\",0.00,157.00,125.00,950.00,,,,,,\n2015,5,17,\"DL\",\"1886\",\"ATL\",\"LGA\",-2.00,4.00,0.00,\"\",0.00,156.00,104.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1897\",\"LGA\",\"MCO\",5.00,22.00,0.00,\"\",0.00,191.00,128.00,950.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,17,\"DL\",\"1902\",\"LGA\",\"PBI\",3.00,-24.00,0.00,\"\",0.00,157.00,136.00,1035.00,,,,,,\n2015,5,17,\"DL\",\"1917\",\"MIA\",\"LGA\",13.00,14.00,0.00,\"\",0.00,185.00,145.00,1096.00,,,,,,\n2015,5,17,\"DL\",\"1930\",\"LGA\",\"MIA\",-3.00,-21.00,0.00,\"\",0.00,180.00,144.00,1096.00,,,,,,\n2015,5,17,\"DL\",\"1935\",\"LGA\",\"TPA\",-1.00,47.00,0.00,\"\",0.00,230.00,195.00,1010.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,17,\"DL\",\"1947\",\"FLL\",\"JFK\",11.00,3.00,0.00,\"\",0.00,176.00,142.00,1069.00,,,,,,\n2015,5,17,\"DL\",\"1948\",\"DTW\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,110.00,75.00,502.00,,,,,,\n2015,5,17,\"DL\",\"1949\",\"TPA\",\"LGA\",7.00,16.00,0.00,\"\",0.00,172.00,135.00,1010.00,0.00,7.00,9.00,0.00,0.00,\n2015,5,17,\"DL\",\"1953\",\"LGA\",\"FLL\",-5.00,-26.00,0.00,\"\",0.00,173.00,140.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"1958\",\"PBI\",\"LGA\",3.00,-7.00,0.00,\"\",0.00,166.00,142.00,1035.00,,,,,,\n2015,5,17,\"DL\",\"1972\",\"AUS\",\"JFK\",125.00,122.00,0.00,\"\",0.00,226.00,204.00,1521.00,0.00,5.00,117.00,0.00,0.00,\n2015,5,17,\"DL\",\"1974\",\"MIA\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,183.00,147.00,1096.00,,,,,,\n2015,5,17,\"DL\",\"1982\",\"LGA\",\"MIA\",-1.00,2.00,0.00,\"\",0.00,199.00,154.00,1096.00,,,,,,\n2015,5,17,\"DL\",\"1986\",\"ATL\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,136.00,106.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1994\",\"PHX\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,280.00,256.00,2153.00,,,,,,\n2015,5,17,\"DL\",\"2003\",\"LGA\",\"MIA\",42.00,22.00,0.00,\"\",0.00,167.00,145.00,1096.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"2013\",\"ATL\",\"SYR\",7.00,-9.00,0.00,\"\",0.00,119.00,102.00,794.00,,,,,,\n2015,5,17,\"DL\",\"2014\",\"SYR\",\"ATL\",-7.00,-18.00,0.00,\"\",0.00,128.00,110.00,794.00,,,,,,\n2015,5,17,\"DL\",\"2016\",\"LGA\",\"ATL\",29.00,19.00,0.00,\"\",0.00,143.00,105.00,762.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"2022\",\"LGA\",\"FLL\",-5.00,-18.00,0.00,\"\",0.00,179.00,140.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"2028\",\"FLL\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,170.00,151.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"2032\",\"MSP\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,152.00,134.00,1029.00,,,,,,\n2015,5,17,\"DL\",\"2037\",\"MCO\",\"LGA\",-6.00,2.00,0.00,\"\",0.00,165.00,127.00,950.00,,,,,,\n2015,5,17,\"DL\",\"2040\",\"SFO\",\"JFK\",-5.00,-31.00,0.00,\"\",0.00,315.00,296.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"2043\",\"JFK\",\"PHX\",9.00,-14.00,0.00,\"\",0.00,318.00,279.00,2153.00,,,,,,\n2015,5,17,\"DL\",\"2044\",\"JFK\",\"BOS\",-6.00,-36.00,0.00,\"\",0.00,71.00,34.00,187.00,,,,,,\n2015,5,17,\"DL\",\"2056\",\"JFK\",\"ATL\",-6.00,-30.00,0.00,\"\",0.00,143.00,106.00,760.00,,,,,,\n2015,5,17,\"DL\",\"2058\",\"MCO\",\"JFK\",-6.00,-11.00,0.00,\"\",0.00,150.00,128.00,944.00,,,,,,\n2015,5,17,\"DL\",\"2059\",\"JFK\",\"ATL\",-3.00,-38.00,0.00,\"\",0.00,134.00,96.00,760.00,,,,,,\n2015,5,17,\"DL\",\"2077\",\"LGA\",\"MCO\",0.00,-6.00,0.00,\"\",0.00,170.00,126.00,950.00,,,,,,\n2015,5,17,\"DL\",\"2079\",\"BUF\",\"DTW\",10.00,-1.00,0.00,\"\",0.00,57.00,41.00,241.00,,,,,,\n2015,5,17,\"DL\",\"2086\",\"ATL\",\"LGA\",4.00,-11.00,0.00,\"\",0.00,129.00,108.00,762.00,,,,,,\n2015,5,17,\"DL\",\"2096\",\"LGA\",\"MSP\",3.00,23.00,0.00,\"\",0.00,202.00,147.00,1020.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,17,\"DL\",\"2099\",\"JFK\",\"DEN\",1.00,-13.00,0.00,\"\",0.00,270.00,227.00,1626.00,,,,,,\n2015,5,17,\"DL\",\"2119\",\"LGA\",\"MSP\",-2.00,-8.00,0.00,\"\",0.00,179.00,134.00,1020.00,,,,,,\n2015,5,17,\"DL\",\"2129\",\"ROC\",\"ATL\",-4.00,-10.00,0.00,\"\",0.00,123.00,105.00,749.00,,,,,,\n2015,5,17,\"DL\",\"2131\",\"LGA\",\"DTW\",-5.00,-10.00,0.00,\"\",0.00,114.00,75.00,502.00,,,,,,\n2015,5,17,\"DL\",\"2135\",\"TPA\",\"LGA\",231.00,214.00,0.00,\"\",0.00,147.00,129.00,1010.00,214.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"2148\",\"LGA\",\"DTW\",-4.00,-33.00,0.00,\"\",0.00,99.00,73.00,502.00,,,,,,\n2015,5,17,\"DL\",\"2150\",\"LGA\",\"DTW\",2.00,-18.00,0.00,\"\",0.00,106.00,76.00,502.00,,,,,,\n2015,5,17,\"DL\",\"2151\",\"MIA\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,174.00,151.00,1096.00,,,,,,\n2015,5,17,\"DL\",\"2155\",\"LAS\",\"JFK\",-2.00,-22.00,0.00,\"\",0.00,283.00,262.00,2248.00,,,,,,\n2015,5,17,\"DL\",\"2156\",\"ATL\",\"SYR\",-2.00,-15.00,0.00,\"\",0.00,117.00,104.00,794.00,,,,,,\n2015,5,17,\"DL\",\"2156\",\"SYR\",\"ATL\",-4.00,-24.00,0.00,\"\",0.00,123.00,109.00,794.00,,,,,,\n2015,5,17,\"DL\",\"2174\",\"DTW\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,116.00,83.00,509.00,,,,,,\n2015,5,17,\"DL\",\"2178\",\"LGA\",\"TPA\",-6.00,-24.00,0.00,\"\",0.00,163.00,135.00,1010.00,,,,,,\n2015,5,17,\"DL\",\"2181\",\"LGA\",\"MCO\",-3.00,-14.00,0.00,\"\",0.00,159.00,125.00,950.00,,,,,,\n2015,5,17,\"DL\",\"2182\",\"JFK\",\"PHX\",-1.00,-7.00,0.00,\"\",0.00,330.00,293.00,2153.00,,,,,,\n2015,5,17,\"DL\",\"2185\",\"FLL\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,163.00,138.00,1069.00,,,,,,\n2015,5,17,\"DL\",\"2186\",\"ATL\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,141.00,108.00,762.00,,,,,,\n2015,5,17,\"DL\",\"2190\",\"JFK\",\"MIA\",-1.00,16.00,0.00,\"\",0.00,219.00,148.00,1089.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,17,\"DL\",\"2214\",\"BOS\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,75.00,38.00,187.00,,,,,,\n2015,5,17,\"DL\",\"2217\",\"JFK\",\"BOS\",109.00,80.00,0.00,\"\",0.00,63.00,35.00,187.00,80.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"2224\",\"JFK\",\"AUS\",20.00,-2.00,0.00,\"\",0.00,242.00,207.00,1521.00,,,,,,\n2015,5,17,\"DL\",\"2230\",\"CHS\",\"JFK\",7.00,9.00,0.00,\"\",0.00,131.00,90.00,636.00,,,,,,\n2015,5,17,\"DL\",\"2231\",\"DTW\",\"LGA\",-7.00,4.00,0.00,\"\",0.00,119.00,115.00,502.00,,,,,,\n2015,5,17,\"DL\",\"2240\",\"SFO\",\"JFK\",7.00,7.00,0.00,\"\",0.00,338.00,306.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"2248\",\"DTW\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,104.00,80.00,502.00,,,,,,\n2015,5,17,\"DL\",\"2262\",\"LAX\",\"JFK\",5.00,-3.00,0.00,\"\",0.00,326.00,300.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"2263\",\"JFK\",\"MIA\",10.00,-24.00,0.00,\"\",0.00,176.00,146.00,1089.00,,,,,,\n2015,5,17,\"DL\",\"2270\",\"LGA\",\"RSW\",0.00,-23.00,0.00,\"\",0.00,173.00,151.00,1080.00,,,,,,\n2015,5,17,\"DL\",\"2276\",\"MCO\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,155.00,135.00,944.00,,,,,,\n2015,5,17,\"DL\",\"2277\",\"JFK\",\"TPA\",1.00,-34.00,0.00,\"\",0.00,158.00,132.00,1005.00,,,,,,\n2015,5,17,\"DL\",\"2280\",\"LGA\",\"TPA\",-1.00,-13.00,0.00,\"\",0.00,162.00,137.00,1010.00,,,,,,\n2015,5,17,\"DL\",\"2282\",\"LGA\",\"MCO\",-3.00,-26.00,0.00,\"\",0.00,153.00,124.00,950.00,,,,,,\n2015,5,17,\"DL\",\"2285\",\"LGA\",\"MCO\",-2.00,-17.00,0.00,\"\",0.00,148.00,127.00,950.00,,,,,,\n2015,5,17,\"DL\",\"2292\",\"JFK\",\"PBI\",18.00,33.00,0.00,\"\",0.00,202.00,147.00,1028.00,18.00,0.00,15.00,0.00,0.00,\n2015,5,17,\"DL\",\"2296\",\"MSP\",\"LGA\",4.00,3.00,0.00,\"\",0.00,168.00,142.00,1020.00,,,,,,\n2015,5,17,\"DL\",\"2301\",\"JFK\",\"SAT\",7.00,-31.00,0.00,\"\",0.00,231.00,211.00,1587.00,,,,,,\n2015,5,17,\"DL\",\"2311\",\"JFK\",\"MIA\",-6.00,-22.00,0.00,\"\",0.00,190.00,148.00,1089.00,,,,,,\n2015,5,17,\"DL\",\"2312\",\"JFK\",\"DTW\",-1.00,-36.00,0.00,\"\",0.00,105.00,83.00,509.00,,,,,,\n2015,5,17,\"DL\",\"2317\",\"PBI\",\"LGA\",5.00,1.00,0.00,\"\",0.00,169.00,140.00,1035.00,,,,,,\n2015,5,17,\"DL\",\"2319\",\"LGA\",\"MSP\",-3.00,-31.00,0.00,\"\",0.00,166.00,141.00,1020.00,,,,,,\n2015,5,17,\"DL\",\"2331\",\"LGA\",\"DTW\",148.00,124.00,0.00,\"\",0.00,97.00,72.00,502.00,124.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"2340\",\"JFK\",\"MCO\",-3.00,-39.00,0.00,\"\",0.00,154.00,127.00,944.00,,,,,,\n2015,5,17,\"DL\",\"2349\",\"DTW\",\"LGA\",136.00,146.00,0.00,\"\",0.00,114.00,77.00,502.00,0.00,0.00,10.00,0.00,136.00,\n2015,5,17,\"DL\",\"2350\",\"ATL\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,119.00,98.00,760.00,,,,,,\n2015,5,17,\"DL\",\"2352\",\"LAS\",\"JFK\",25.00,-2.00,0.00,\"\",0.00,286.00,259.00,2248.00,,,,,,\n2015,5,17,\"DL\",\"2354\",\"SLC\",\"JFK\",6.00,-9.00,0.00,\"\",0.00,257.00,240.00,1990.00,,,,,,\n2015,5,17,\"DL\",\"2362\",\"LAX\",\"JFK\",-3.00,-26.00,0.00,\"\",0.00,307.00,283.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"2382\",\"JFK\",\"FLL\",27.00,8.00,0.00,\"\",0.00,182.00,151.00,1069.00,,,,,,\n2015,5,17,\"DL\",\"2386\",\"ATL\",\"LGA\",19.00,4.00,0.00,\"\",0.00,123.00,103.00,762.00,,,,,,\n2015,5,17,\"DL\",\"2395\",\"LGA\",\"PBI\",0.00,-24.00,0.00,\"\",0.00,156.00,137.00,1035.00,,,,,,\n2015,5,17,\"DL\",\"2400\",\"JFK\",\"PIT\",-2.00,-26.00,0.00,\"\",0.00,97.00,61.00,340.00,,,,,,\n2015,5,17,\"DL\",\"2404\",\"SAN\",\"JFK\",0.00,-28.00,0.00,\"\",0.00,306.00,283.00,2446.00,,,,,,\n2015,5,17,\"DL\",\"2405\",\"PHX\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,277.00,256.00,2153.00,,,,,,\n2015,5,17,\"DL\",\"2406\",\"TPA\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,149.00,127.00,1010.00,,,,,,\n2015,5,17,\"DL\",\"2413\",\"MIA\",\"LGA\",16.00,9.00,0.00,\"\",0.00,177.00,144.00,1096.00,,,,,,\n2015,5,17,\"DL\",\"2424\",\"JFK\",\"ATL\",-9.00,-46.00,0.00,\"\",0.00,135.00,106.00,760.00,,,,,,\n2015,5,17,\"DL\",\"2432\",\"DTW\",\"SYR\",18.00,14.00,0.00,\"\",0.00,75.00,54.00,374.00,,,,,,\n2015,5,17,\"DL\",\"2435\",\"JFK\",\"FLL\",-4.00,-21.00,0.00,\"\",0.00,186.00,148.00,1069.00,,,,,,\n2015,5,17,\"DL\",\"2450\",\"MCO\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,146.00,126.00,950.00,,,,,,\n2015,5,17,\"DL\",\"2464\",\"TPA\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,153.00,137.00,1005.00,,,,,,\n2015,5,17,\"DL\",\"2466\",\"ATL\",\"SYR\",16.00,18.00,0.00,\"\",0.00,139.00,106.00,794.00,16.00,0.00,2.00,0.00,0.00,\n2015,5,17,\"DL\",\"2466\",\"SYR\",\"ATL\",14.00,-1.00,0.00,\"\",0.00,135.00,110.00,794.00,,,,,,\n2015,5,17,\"DL\",\"2473\",\"ATL\",\"BUF\",1.00,-9.00,0.00,\"\",0.00,118.00,94.00,712.00,,,,,,\n2015,5,17,\"DL\",\"2495\",\"MIA\",\"JFK\",4.00,-10.00,0.00,\"\",0.00,174.00,143.00,1089.00,,,,,,\n2015,5,17,\"DL\",\"2496\",\"ATL\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,123.00,100.00,762.00,,,,,,\n2015,5,17,\"DL\",\"2498\",\"FLL\",\"LGA\",7.00,-9.00,0.00,\"\",0.00,167.00,142.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"2502\",\"FLL\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,166.00,144.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"2511\",\"JFK\",\"SLC\",6.00,-23.00,0.00,\"\",0.00,300.00,262.00,1990.00,,,,,,\n2015,5,17,\"DL\",\"2521\",\"SFO\",\"JFK\",11.00,-1.00,0.00,\"\",0.00,329.00,302.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"2554\",\"DEN\",\"JFK\",5.00,-18.00,0.00,\"\",0.00,218.00,191.00,1626.00,,,,,,\n2015,5,17,\"DL\",\"2565\",\"JFK\",\"MSP\",-4.00,-39.00,0.00,\"\",0.00,174.00,142.00,1029.00,,,,,,\n2015,5,17,\"DL\",\"2567\",\"DTW\",\"ALB\",-3.00,-4.00,0.00,\"\",0.00,87.00,65.00,489.00,,,,,,\n2015,5,17,\"DL\",\"2571\",\"JFK\",\"SLC\",0.00,-17.00,0.00,\"\",0.00,308.00,281.00,1990.00,,,,,,\n2015,5,17,\"DL\",\"2577\",\"JFK\",\"FLL\",-4.00,-27.00,0.00,\"\",0.00,182.00,138.00,1069.00,,,,,,\n2015,5,17,\"DL\",\"2593\",\"JFK\",\"MSP\",-3.00,-29.00,0.00,\"\",0.00,175.00,145.00,1029.00,,,,,,\n2015,5,17,\"DL\",\"2595\",\"FLL\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,169.00,141.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"2596\",\"PBI\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,176.00,139.00,1035.00,,,,,,\n2015,5,17,\"DL\",\"2627\",\"JFK\",\"PDX\",-5.00,-39.00,0.00,\"\",0.00,336.00,301.00,2454.00,,,,,,\n2015,5,17,\"DL\",\"2632\",\"JFK\",\"MCO\",-14.00,-28.00,0.00,\"\",0.00,169.00,124.00,944.00,,,,,,\n2015,5,17,\"DL\",\"2634\",\"JFK\",\"BUF\",-9.00,-24.00,0.00,\"\",0.00,88.00,50.00,301.00,,,,,,\n2015,5,17,\"DL\",\"2645\",\"JFK\",\"RSW\",-6.00,0.00,0.00,\"\",0.00,207.00,152.00,1074.00,,,,,,\n2015,5,17,\"DL\",\"2649\",\"JFK\",\"TPA\",2.00,19.00,0.00,\"\",0.00,205.00,180.00,1005.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,17,\"DL\",\"2650\",\"TPA\",\"JFK\",-1.00,-10.00,0.00,\"\",0.00,159.00,135.00,1005.00,,,,,,\n2015,5,17,\"DL\",\"2652\",\"TPA\",\"JFK\",34.00,25.00,0.00,\"\",0.00,165.00,146.00,1005.00,0.00,11.00,0.00,0.00,14.00,\n2015,5,17,\"DL\",\"2653\",\"MCO\",\"JFK\",-11.00,-23.00,0.00,\"\",0.00,154.00,133.00,944.00,,,,,,\n2015,5,17,\"DL\",\"2660\",\"LGA\",\"DCA\",49.00,28.00,0.00,\"\",0.00,69.00,44.00,214.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"2660\",\"DCA\",\"LGA\",54.00,35.00,0.00,\"\",0.00,71.00,41.00,214.00,0.00,0.00,17.00,0.00,18.00,\n2015,5,17,\"DL\",\"2661\",\"LGA\",\"DCA\",43.00,17.00,0.00,\"\",0.00,60.00,43.00,214.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,17,\"DL\",\"2661\",\"DCA\",\"LGA\",24.00,13.00,0.00,\"\",0.00,80.00,53.00,214.00,,,,,,\n2015,5,17,\"DL\",\"2669\",\"BOS\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,69.00,47.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2671\",\"BOS\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,78.00,50.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2672\",\"LGA\",\"BOS\",-2.00,-23.00,0.00,\"\",0.00,61.00,36.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2675\",\"BOS\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,74.00,51.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2676\",\"LGA\",\"BOS\",0.00,-14.00,0.00,\"\",0.00,62.00,34.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2679\",\"BOS\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,77.00,47.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2680\",\"LGA\",\"BOS\",0.00,-9.00,0.00,\"\",0.00,70.00,36.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2681\",\"BOS\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,68.00,45.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2682\",\"LGA\",\"BOS\",40.00,26.00,0.00,\"\",0.00,58.00,33.00,184.00,7.00,0.00,0.00,0.00,19.00,\n2015,5,17,\"DL\",\"2685\",\"BOS\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,61.00,42.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2686\",\"LGA\",\"BOS\",225.00,212.00,0.00,\"\",0.00,69.00,35.00,184.00,212.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"2687\",\"BOS\",\"LGA\",-2.00,3.00,0.00,\"\",0.00,81.00,40.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2689\",\"BOS\",\"LGA\",213.00,201.00,0.00,\"\",0.00,68.00,38.00,184.00,201.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"DL\",\"2690\",\"LGA\",\"BOS\",0.00,-9.00,0.00,\"\",0.00,76.00,37.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2692\",\"LGA\",\"BOS\",7.00,-4.00,0.00,\"\",0.00,68.00,35.00,184.00,,,,,,\n2015,5,17,\"DL\",\"2694\",\"LGA\",\"BOS\",191.00,173.00,0.00,\"\",0.00,60.00,35.00,184.00,0.00,0.00,0.00,0.00,173.00,\n2015,5,17,\"DL\",\"2785\",\"JFK\",\"CHS\",-4.00,-32.00,0.00,\"\",0.00,108.00,87.00,636.00,,,,,,\n2015,5,18,\"DL\",\"42\",\"MIA\",\"JFK\",191.00,192.00,0.00,\"\",0.00,190.00,149.00,1089.00,2.00,0.00,112.00,0.00,78.00,\n2015,5,18,\"DL\",\"208\",\"JFK\",\"MCO\",189.00,167.00,0.00,\"\",0.00,165.00,119.00,944.00,0.00,0.00,36.00,0.00,131.00,\n2015,5,18,\"DL\",\"221\",\"LGA\",\"ATL\",265.00,235.00,0.00,\"\",0.00,135.00,108.00,762.00,93.00,0.00,22.00,0.00,120.00,\n2015,5,18,\"DL\",\"234\",\"PIT\",\"JFK\",133.00,116.00,0.00,\"\",0.00,83.00,61.00,340.00,0.00,116.00,0.00,0.00,0.00,\n2015,5,18,\"DL\",\"245\",\"JFK\",\"SLC\",170.00,244.00,0.00,\"\",0.00,403.00,290.00,1990.00,92.00,0.00,152.00,0.00,0.00,\n2015,5,12,\"DL\",\"1644\",\"FLL\",\"JFK\",99.00,82.00,0.00,\"\",0.00,170.00,143.00,1069.00,0.00,0.00,82.00,0.00,0.00,\n2015,5,12,\"DL\",\"1647\",\"LGA\",\"ATL\",-4.00,-12.00,0.00,\"\",0.00,144.00,108.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1671\",\"MIA\",\"JFK\",90.00,85.00,0.00,\"\",0.00,182.00,142.00,1089.00,0.00,0.00,85.00,0.00,0.00,\n2015,5,12,\"DL\",\"1672\",\"ATL\",\"BUF\",-4.00,-1.00,0.00,\"\",0.00,122.00,92.00,712.00,,,,,,\n2015,5,12,\"DL\",\"1672\",\"BUF\",\"ATL\",2.00,-7.00,0.00,\"\",0.00,119.00,105.00,712.00,,,,,,\n2015,5,12,\"DL\",\"1685\",\"LGA\",\"MCO\",1.00,-29.00,0.00,\"\",0.00,145.00,130.00,950.00,,,,,,\n2015,5,12,\"DL\",\"1697\",\"LGA\",\"ATL\",971.00,971.00,0.00,\"\",0.00,158.00,107.00,762.00,971.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"DL\",\"1728\",\"LAS\",\"JFK\",19.00,-20.00,0.00,\"\",0.00,262.00,242.00,2248.00,,,,,,\n2015,5,12,\"DL\",\"1750\",\"ATL\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,135.00,105.00,760.00,,,,,,\n2015,5,12,\"DL\",\"1762\",\"LAX\",\"JFK\",76.00,38.00,0.00,\"\",0.00,297.00,272.00,2475.00,0.00,0.00,0.00,0.00,38.00,\n2015,5,12,\"DL\",\"1779\",\"LGA\",\"MSY\",-5.00,-16.00,0.00,\"\",0.00,188.00,166.00,1183.00,,,,,,\n2015,5,12,\"DL\",\"1786\",\"ATL\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,123.00,103.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1787\",\"FLL\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,179.00,139.00,1069.00,,,,,,\n2015,5,12,\"DL\",\"1796\",\"LGA\",\"MSP\",19.00,-2.00,0.00,\"\",0.00,177.00,155.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"1830\",\"SLC\",\"JFK\",10.00,-17.00,0.00,\"\",0.00,249.00,222.00,1990.00,,,,,,\n2015,5,12,\"DL\",\"1841\",\"SJU\",\"JFK\",-10.00,-28.00,0.00,\"\",0.00,229.00,202.00,1598.00,,,,,,\n2015,5,12,\"DL\",\"1848\",\"DTW\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,106.00,73.00,502.00,,,,,,\n2015,5,12,\"DL\",\"1849\",\"LGA\",\"ATL\",0.00,-13.00,0.00,\"\",0.00,145.00,113.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1851\",\"CHS\",\"JFK\",21.00,18.00,0.00,\"\",0.00,121.00,89.00,636.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,12,\"DL\",\"1875\",\"LGA\",\"TPA\",-5.00,-29.00,0.00,\"\",0.00,156.00,138.00,1010.00,,,,,,\n2015,5,12,\"DL\",\"1879\",\"LGA\",\"FLL\",-5.00,-17.00,0.00,\"\",0.00,175.00,140.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"1885\",\"LGA\",\"MCO\",14.00,-12.00,0.00,\"\",0.00,154.00,132.00,950.00,,,,,,\n2015,5,12,\"DL\",\"1886\",\"ATL\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,146.00,105.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1897\",\"LGA\",\"MCO\",-1.00,-16.00,0.00,\"\",0.00,159.00,132.00,950.00,,,,,,\n2015,5,12,\"DL\",\"1902\",\"LGA\",\"PBI\",-5.00,-23.00,0.00,\"\",0.00,166.00,136.00,1035.00,,,,,,\n2015,5,12,\"DL\",\"1917\",\"MIA\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,166.00,143.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"1919\",\"LGA\",\"MSP\",-3.00,-18.00,0.00,\"\",0.00,167.00,150.00,1020.00,,,,,,\n2015,5,12,\"DL\",\"1930\",\"LGA\",\"MIA\",-1.00,-21.00,0.00,\"\",0.00,178.00,152.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"1935\",\"LGA\",\"TPA\",-3.00,,0.00,\"\",1.00,,,1010.00,,,,,,\n2015,5,12,\"DL\",\"1947\",\"FLL\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,176.00,141.00,1069.00,,,,,,\n2015,5,12,\"DL\",\"1948\",\"DTW\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,90.00,72.00,502.00,,,,,,\n2015,5,12,\"DL\",\"1949\",\"TPA\",\"LGA\",106.00,88.00,0.00,\"\",0.00,145.00,118.00,1010.00,0.00,0.00,0.00,0.00,88.00,\n2015,5,12,\"DL\",\"1953\",\"LGA\",\"FLL\",-4.00,-29.00,0.00,\"\",0.00,169.00,149.00,1076.00,,,,,,\n2015,5,12,\"DL\",\"1958\",\"PBI\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,167.00,143.00,1035.00,,,,,,\n2015,5,12,\"DL\",\"1969\",\"BUF\",\"JFK\",-1.00,31.00,0.00,\"\",0.00,122.00,103.00,301.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,12,\"DL\",\"1972\",\"AUS\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,208.00,188.00,1521.00,,,,,,\n2015,5,12,\"DL\",\"1974\",\"MIA\",\"LGA\",13.00,11.00,0.00,\"\",0.00,181.00,150.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"1982\",\"LGA\",\"MIA\",-1.00,-9.00,0.00,\"\",0.00,188.00,155.00,1096.00,,,,,,\n2015,5,12,\"DL\",\"1985\",\"ALB\",\"DTW\",-4.00,-11.00,0.00,\"\",0.00,94.00,79.00,489.00,,,,,,\n2015,5,12,\"DL\",\"1986\",\"ATL\",\"LGA\",4.00,-18.00,0.00,\"\",0.00,128.00,102.00,762.00,,,,,,\n2015,5,12,\"DL\",\"1994\",\"PHX\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,280.00,257.00,2153.00,,,,,,\n2015,5,13,\"DL\",\"1580\",\"LGA\",\"DTW\",26.00,43.00,0.00,\"\",0.00,142.00,93.00,502.00,4.00,0.00,17.00,0.00,22.00,\n2015,5,13,\"DL\",\"1583\",\"SFO\",\"JFK\",10.00,-20.00,0.00,\"\",0.00,319.00,288.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"1584\",\"ATL\",\"ROC\",2.00,-12.00,0.00,\"\",0.00,119.00,99.00,749.00,,,,,,\n2015,5,13,\"DL\",\"1584\",\"ROC\",\"ATL\",-2.00,-20.00,0.00,\"\",0.00,117.00,98.00,749.00,,,,,,\n2015,5,13,\"DL\",\"1586\",\"ATL\",\"LGA\",3.00,-19.00,0.00,\"\",0.00,122.00,100.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1596\",\"MSP\",\"LGA\",-3.00,-37.00,0.00,\"\",0.00,131.00,113.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"1644\",\"FLL\",\"JFK\",-5.00,-32.00,0.00,\"\",0.00,160.00,139.00,1069.00,,,,,,\n2015,5,13,\"DL\",\"1647\",\"LGA\",\"ATL\",-4.00,-6.00,0.00,\"\",0.00,150.00,109.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1671\",\"MIA\",\"JFK\",25.00,-3.00,0.00,\"\",0.00,159.00,141.00,1089.00,,,,,,\n2015,5,13,\"DL\",\"1672\",\"ATL\",\"BUF\",-2.00,3.00,0.00,\"\",0.00,124.00,101.00,712.00,,,,,,\n2015,5,13,\"DL\",\"1672\",\"BUF\",\"ATL\",-1.00,-17.00,0.00,\"\",0.00,112.00,96.00,712.00,,,,,,\n2015,5,13,\"DL\",\"1685\",\"LGA\",\"MCO\",-2.00,-2.00,0.00,\"\",0.00,175.00,127.00,950.00,,,,,,\n2015,5,13,\"DL\",\"1697\",\"LGA\",\"ATL\",-1.00,4.00,0.00,\"\",0.00,163.00,101.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1728\",\"LAS\",\"JFK\",15.00,-4.00,0.00,\"\",0.00,282.00,255.00,2248.00,,,,,,\n2015,5,13,\"DL\",\"1750\",\"ATL\",\"JFK\",-1.00,1.00,0.00,\"\",0.00,151.00,127.00,760.00,,,,,,\n2015,5,13,\"DL\",\"1762\",\"LAX\",\"JFK\",7.00,-12.00,0.00,\"\",0.00,316.00,278.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"1779\",\"LGA\",\"MSY\",-7.00,-26.00,0.00,\"\",0.00,180.00,159.00,1183.00,,,,,,\n2015,5,13,\"DL\",\"1786\",\"ATL\",\"LGA\",46.00,37.00,0.00,\"\",0.00,132.00,110.00,762.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"DL\",\"1787\",\"FLL\",\"JFK\",207.00,195.00,0.00,\"\",0.00,174.00,146.00,1069.00,0.00,0.00,0.00,0.00,195.00,\n2015,5,13,\"DL\",\"1796\",\"LGA\",\"MSP\",-7.00,10.00,0.00,\"\",0.00,215.00,168.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"1830\",\"SLC\",\"JFK\",33.00,6.00,0.00,\"\",0.00,249.00,227.00,1990.00,,,,,,\n2015,5,13,\"DL\",\"1841\",\"SJU\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,240.00,216.00,1598.00,,,,,,\n2015,5,13,\"DL\",\"1848\",\"DTW\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,91.00,67.00,502.00,,,,,,\n2015,5,13,\"DL\",\"1849\",\"LGA\",\"ATL\",-4.00,-18.00,0.00,\"\",0.00,144.00,99.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1851\",\"CHS\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,108.00,86.00,636.00,,,,,,\n2015,5,13,\"DL\",\"1875\",\"LGA\",\"TPA\",-3.00,10.00,0.00,\"\",0.00,193.00,143.00,1010.00,,,,,,\n2015,5,13,\"DL\",\"1879\",\"LGA\",\"FLL\",-2.00,-7.00,0.00,\"\",0.00,182.00,151.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"1885\",\"LGA\",\"MCO\",-6.00,2.00,0.00,\"\",0.00,188.00,130.00,950.00,,,,,,\n2015,5,13,\"DL\",\"1886\",\"ATL\",\"LGA\",1.00,-17.00,0.00,\"\",0.00,132.00,103.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1897\",\"LGA\",\"MCO\",8.00,-11.00,0.00,\"\",0.00,155.00,123.00,950.00,,,,,,\n2015,5,13,\"DL\",\"1902\",\"LGA\",\"PBI\",2.00,-3.00,0.00,\"\",0.00,179.00,139.00,1035.00,,,,,,\n2015,5,13,\"DL\",\"1917\",\"MIA\",\"LGA\",-7.00,19.00,0.00,\"\",0.00,210.00,157.00,1096.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,13,\"DL\",\"1919\",\"LGA\",\"MSP\",-3.00,-4.00,0.00,\"\",0.00,181.00,159.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"1930\",\"LGA\",\"MIA\",44.00,22.00,0.00,\"\",0.00,176.00,136.00,1096.00,1.00,0.00,0.00,0.00,21.00,\n2015,5,13,\"DL\",\"1935\",\"LGA\",\"TPA\",-7.00,1.00,0.00,\"\",0.00,190.00,148.00,1010.00,,,,,,\n2015,5,13,\"DL\",\"1947\",\"FLL\",\"JFK\",-10.00,-16.00,0.00,\"\",0.00,178.00,151.00,1069.00,,,,,,\n2015,5,13,\"DL\",\"1948\",\"DTW\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,103.00,70.00,502.00,,,,,,\n2015,5,13,\"DL\",\"1949\",\"TPA\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,151.00,136.00,1010.00,,,,,,\n2015,5,13,\"DL\",\"1953\",\"LGA\",\"FLL\",-6.00,-15.00,0.00,\"\",0.00,185.00,142.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"1958\",\"PBI\",\"LGA\",6.00,-2.00,0.00,\"\",0.00,168.00,141.00,1035.00,,,,,,\n2015,5,13,\"DL\",\"1969\",\"BUF\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,94.00,66.00,301.00,,,,,,\n2015,5,13,\"DL\",\"1972\",\"AUS\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,207.00,190.00,1521.00,,,,,,\n2015,5,13,\"DL\",\"1974\",\"MIA\",\"LGA\",9.00,57.00,0.00,\"\",0.00,231.00,152.00,1096.00,3.00,0.00,48.00,0.00,6.00,\n2015,5,13,\"DL\",\"1982\",\"LGA\",\"MIA\",-9.00,14.00,0.00,\"\",0.00,219.00,167.00,1096.00,,,,,,\n2015,5,13,\"DL\",\"1985\",\"ALB\",\"DTW\",-4.00,1.00,0.00,\"\",0.00,106.00,84.00,489.00,,,,,,\n2015,5,13,\"DL\",\"1986\",\"ATL\",\"LGA\",26.00,1.00,0.00,\"\",0.00,125.00,105.00,762.00,,,,,,\n2015,5,13,\"DL\",\"1994\",\"PHX\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,276.00,244.00,2153.00,,,,,,\n2015,5,13,\"DL\",\"1996\",\"MSP\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,155.00,119.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"2003\",\"LGA\",\"MIA\",0.00,13.00,0.00,\"\",0.00,200.00,162.00,1096.00,,,,,,\n2015,5,13,\"DL\",\"2013\",\"ATL\",\"SYR\",-4.00,-9.00,0.00,\"\",0.00,130.00,112.00,794.00,,,,,,\n2015,5,13,\"DL\",\"2014\",\"SYR\",\"ATL\",0.00,-11.00,0.00,\"\",0.00,128.00,114.00,794.00,,,,,,\n2015,5,13,\"DL\",\"2016\",\"LGA\",\"ATL\",-6.00,15.00,0.00,\"\",0.00,174.00,106.00,762.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,13,\"DL\",\"2022\",\"LGA\",\"FLL\",-8.00,-22.00,0.00,\"\",0.00,178.00,143.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"2028\",\"FLL\",\"LGA\",0.00,1.00,0.00,\"\",0.00,182.00,152.00,1076.00,,,,,,\n2015,5,13,\"DL\",\"2032\",\"MSP\",\"JFK\",7.00,-12.00,0.00,\"\",0.00,148.00,128.00,1029.00,,,,,,\n2015,5,13,\"DL\",\"2037\",\"MCO\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,154.00,128.00,950.00,,,,,,\n2015,5,13,\"DL\",\"2040\",\"SFO\",\"JFK\",-9.00,-32.00,0.00,\"\",0.00,318.00,287.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"2043\",\"JFK\",\"PHX\",-1.00,-14.00,0.00,\"\",0.00,328.00,290.00,2153.00,,,,,,\n2015,5,13,\"DL\",\"2044\",\"JFK\",\"BOS\",22.00,2.00,0.00,\"\",0.00,81.00,41.00,187.00,,,,,,\n2015,5,13,\"DL\",\"2056\",\"JFK\",\"ATL\",-4.00,-20.00,0.00,\"\",0.00,151.00,108.00,760.00,,,,,,\n2015,5,13,\"DL\",\"2058\",\"MCO\",\"JFK\",-5.00,-7.00,0.00,\"\",0.00,153.00,125.00,944.00,,,,,,\n2015,5,13,\"DL\",\"2074\",\"LGA\",\"ATL\",9.00,2.00,0.00,\"\",0.00,151.00,104.00,762.00,,,,,,\n2015,5,13,\"DL\",\"2077\",\"LGA\",\"MCO\",-6.00,-2.00,0.00,\"\",0.00,180.00,132.00,950.00,,,,,,\n2015,5,13,\"DL\",\"2086\",\"ATL\",\"LGA\",1.00,-18.00,0.00,\"\",0.00,125.00,107.00,762.00,,,,,,\n2015,5,13,\"DL\",\"2096\",\"LGA\",\"MSP\",-6.00,-6.00,0.00,\"\",0.00,182.00,157.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"2104\",\"JFK\",\"ATL\",5.00,-19.00,0.00,\"\",0.00,145.00,101.00,760.00,,,,,,\n2015,5,13,\"DL\",\"2119\",\"LGA\",\"MSP\",-3.00,-3.00,0.00,\"\",0.00,185.00,154.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"2129\",\"ROC\",\"ATL\",-2.00,-10.00,0.00,\"\",0.00,121.00,102.00,749.00,,,,,,\n2015,5,13,\"DL\",\"2131\",\"LGA\",\"DTW\",1.00,8.00,0.00,\"\",0.00,126.00,81.00,502.00,,,,,,\n2015,5,13,\"DL\",\"2135\",\"TPA\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,151.00,128.00,1010.00,,,,,,\n2015,5,13,\"DL\",\"2148\",\"LGA\",\"DTW\",-3.00,13.00,0.00,\"\",0.00,144.00,89.00,502.00,,,,,,\n2015,5,13,\"DL\",\"2150\",\"LGA\",\"DTW\",-3.00,7.00,0.00,\"\",0.00,136.00,93.00,502.00,,,,,,\n2015,5,13,\"DL\",\"2151\",\"MIA\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,180.00,141.00,1096.00,,,,,,\n2015,5,13,\"DL\",\"2155\",\"LAS\",\"JFK\",-4.00,-28.00,0.00,\"\",0.00,279.00,253.00,2248.00,,,,,,\n2015,5,13,\"DL\",\"2156\",\"ATL\",\"SYR\",-3.00,-10.00,0.00,\"\",0.00,123.00,107.00,794.00,,,,,,\n2015,5,13,\"DL\",\"2156\",\"SYR\",\"ATL\",-4.00,-26.00,0.00,\"\",0.00,121.00,108.00,794.00,,,,,,\n2015,5,13,\"DL\",\"2166\",\"SYR\",\"DTW\",-5.00,-11.00,0.00,\"\",0.00,87.00,70.00,374.00,,,,,,\n2015,5,13,\"DL\",\"2174\",\"DTW\",\"JFK\",4.00,-15.00,0.00,\"\",0.00,102.00,71.00,509.00,,,,,,\n2015,5,13,\"DL\",\"2178\",\"LGA\",\"TPA\",-3.00,-17.00,0.00,\"\",0.00,167.00,135.00,1010.00,,,,,,\n2015,5,13,\"DL\",\"2181\",\"LGA\",\"MCO\",-5.00,-14.00,0.00,\"\",0.00,161.00,131.00,950.00,,,,,,\n2015,5,13,\"DL\",\"2182\",\"JFK\",\"PHX\",3.00,-14.00,0.00,\"\",0.00,319.00,287.00,2153.00,,,,,,\n2015,5,13,\"DL\",\"2185\",\"FLL\",\"JFK\",5.00,-11.00,0.00,\"\",0.00,157.00,138.00,1069.00,,,,,,\n2015,5,13,\"DL\",\"2186\",\"ATL\",\"LGA\",4.00,-7.00,0.00,\"\",0.00,135.00,106.00,762.00,,,,,,\n2015,5,13,\"DL\",\"2190\",\"JFK\",\"MIA\",39.00,33.00,0.00,\"\",0.00,196.00,150.00,1089.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"DL\",\"2214\",\"ATL\",\"LGA\",0.00,1.00,0.00,\"\",0.00,134.00,97.00,762.00,,,,,,\n2015,5,13,\"DL\",\"2217\",\"JFK\",\"BOS\",-5.00,-15.00,0.00,\"\",0.00,82.00,39.00,187.00,,,,,,\n2015,5,13,\"DL\",\"2230\",\"CHS\",\"JFK\",68.00,65.00,0.00,\"\",0.00,126.00,87.00,636.00,0.00,0.00,65.00,0.00,0.00,\n2015,5,13,\"DL\",\"2231\",\"DTW\",\"LGA\",42.00,30.00,0.00,\"\",0.00,96.00,72.00,502.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"DL\",\"2240\",\"SFO\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,313.00,292.00,2586.00,,,,,,\n2015,5,13,\"DL\",\"2248\",\"DTW\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,99.00,71.00,502.00,,,,,,\n2015,5,13,\"DL\",\"2262\",\"LAX\",\"JFK\",19.00,14.00,0.00,\"\",0.00,329.00,278.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"2263\",\"JFK\",\"MIA\",-5.00,-30.00,0.00,\"\",0.00,185.00,150.00,1089.00,,,,,,\n2015,5,13,\"DL\",\"2270\",\"LGA\",\"RSW\",-5.00,24.00,0.00,\"\",0.00,225.00,164.00,1080.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,13,\"DL\",\"2276\",\"MCO\",\"JFK\",140.00,146.00,0.00,\"\",0.00,173.00,135.00,944.00,0.00,0.00,6.00,0.00,140.00,\n2015,5,13,\"DL\",\"2277\",\"JFK\",\"TPA\",-1.00,-17.00,0.00,\"\",0.00,177.00,136.00,1005.00,,,,,,\n2015,5,13,\"DL\",\"2280\",\"LGA\",\"TPA\",-2.00,12.00,0.00,\"\",0.00,188.00,138.00,1010.00,,,,,,\n2015,5,13,\"DL\",\"2282\",\"LGA\",\"MCO\",-4.00,-9.00,0.00,\"\",0.00,171.00,122.00,950.00,,,,,,\n2015,5,13,\"DL\",\"2285\",\"LGA\",\"MCO\",-6.00,-1.00,0.00,\"\",0.00,168.00,130.00,950.00,,,,,,\n2015,5,13,\"DL\",\"2292\",\"JFK\",\"PBI\",7.00,18.00,0.00,\"\",0.00,198.00,147.00,1028.00,7.00,0.00,11.00,0.00,0.00,\n2015,5,13,\"DL\",\"2296\",\"MSP\",\"LGA\",-4.00,-34.00,0.00,\"\",0.00,139.00,120.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"2301\",\"JFK\",\"SAT\",8.00,-6.00,0.00,\"\",0.00,255.00,215.00,1587.00,,,,,,\n2015,5,13,\"DL\",\"2311\",\"JFK\",\"MIA\",0.00,-22.00,0.00,\"\",0.00,184.00,141.00,1089.00,,,,,,\n2015,5,13,\"DL\",\"2312\",\"JFK\",\"DTW\",-4.00,-16.00,0.00,\"\",0.00,128.00,97.00,509.00,,,,,,\n2015,5,13,\"DL\",\"2317\",\"PBI\",\"LGA\",9.00,9.00,0.00,\"\",0.00,173.00,135.00,1035.00,,,,,,\n2015,5,13,\"DL\",\"2319\",\"LGA\",\"MSP\",-9.00,4.00,0.00,\"\",0.00,208.00,154.00,1020.00,,,,,,\n2015,5,13,\"DL\",\"2331\",\"LGA\",\"DTW\",-14.00,-16.00,0.00,\"\",0.00,122.00,77.00,502.00,,,,,,\n2015,5,13,\"DL\",\"2340\",\"JFK\",\"MCO\",192.00,155.00,0.00,\"\",0.00,153.00,126.00,944.00,155.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"DL\",\"2347\",\"JFK\",\"PDX\",-2.00,0.00,0.00,\"\",0.00,372.00,337.00,2454.00,,,,,,\n2015,5,13,\"DL\",\"2349\",\"DTW\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,92.00,70.00,502.00,,,,,,\n2015,5,13,\"DL\",\"2350\",\"ATL\",\"JFK\",5.00,3.00,0.00,\"\",0.00,133.00,101.00,760.00,,,,,,\n2015,5,13,\"DL\",\"2352\",\"LAS\",\"JFK\",-9.00,-39.00,0.00,\"\",0.00,283.00,251.00,2248.00,,,,,,\n2015,5,13,\"DL\",\"2362\",\"LAX\",\"JFK\",-4.00,-30.00,0.00,\"\",0.00,304.00,281.00,2475.00,,,,,,\n2015,5,13,\"DL\",\"2382\",\"JFK\",\"FLL\",37.00,-12.00,0.00,\"\",0.00,152.00,119.00,1069.00,,,,,,\n2015,5,13,\"DL\",\"2386\",\"ATL\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,135.00,105.00,762.00,,,,,,\n2015,5,13,\"DL\",\"2390\",\"JFK\",\"ATL\",1.00,-16.00,0.00,\"\",0.00,155.00,105.00,760.00,,,,,,\n2015,5,13,\"DL\",\"2395\",\"LGA\",\"PBI\",-1.00,9.00,0.00,\"\",0.00,190.00,144.00,1035.00,,,,,,\n2015,5,19,\"DL\",\"1830\",\"SLC\",\"JFK\",12.00,-17.00,0.00,\"\",0.00,247.00,222.00,1990.00,,,,,,\n2015,5,19,\"DL\",\"1841\",\"SJU\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,223.00,204.00,1598.00,,,,,,\n2015,5,19,\"DL\",\"1848\",\"DTW\",\"LGA\",15.00,11.00,0.00,\"\",0.00,104.00,76.00,502.00,,,,,,\n2015,5,19,\"DL\",\"1849\",\"LGA\",\"ATL\",63.00,47.00,0.00,\"\",0.00,142.00,106.00,762.00,0.00,0.00,0.00,0.00,47.00,\n2015,5,19,\"DL\",\"1851\",\"CHS\",\"JFK\",19.00,9.00,0.00,\"\",0.00,114.00,87.00,636.00,,,,,,\n2015,5,19,\"DL\",\"1875\",\"LGA\",\"TPA\",46.00,32.00,0.00,\"\",0.00,166.00,143.00,1010.00,3.00,0.00,0.00,0.00,29.00,\n2015,5,19,\"DL\",\"1879\",\"LGA\",\"FLL\",243.00,228.00,0.00,\"\",0.00,172.00,145.00,1076.00,228.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"DL\",\"1885\",\"LGA\",\"MCO\",-7.00,-17.00,0.00,\"\",0.00,170.00,127.00,950.00,,,,,,\n2015,5,19,\"DL\",\"1886\",\"ATL\",\"LGA\",93.00,73.00,0.00,\"\",0.00,130.00,103.00,762.00,0.00,0.00,40.00,0.00,33.00,\n2015,5,19,\"DL\",\"1897\",\"LGA\",\"MCO\",78.00,96.00,0.00,\"\",0.00,192.00,145.00,950.00,0.00,0.00,18.00,0.00,78.00,\n2015,5,19,\"DL\",\"1902\",\"LGA\",\"PBI\",55.00,62.00,0.00,\"\",0.00,191.00,150.00,1035.00,0.00,0.00,7.00,0.00,55.00,\n2015,5,19,\"DL\",\"1917\",\"MIA\",\"LGA\",104.00,105.00,0.00,\"\",0.00,185.00,147.00,1096.00,0.00,0.00,1.00,0.00,104.00,\n2015,5,19,\"DL\",\"1919\",\"LGA\",\"MSP\",-5.00,-11.00,0.00,\"\",0.00,176.00,150.00,1020.00,,,,,,\n2015,5,19,\"DL\",\"1930\",\"LGA\",\"MIA\",17.00,-4.00,0.00,\"\",0.00,177.00,154.00,1096.00,,,,,,\n2015,5,19,\"DL\",\"1935\",\"LGA\",\"TPA\",55.00,123.00,0.00,\"\",0.00,250.00,158.00,1010.00,0.00,0.00,68.00,0.00,55.00,\n2015,5,19,\"DL\",\"1947\",\"FLL\",\"JFK\",-7.00,-9.00,0.00,\"\",0.00,182.00,157.00,1069.00,,,,,,\n2015,5,19,\"DL\",\"1948\",\"DTW\",\"LGA\",33.00,9.00,0.00,\"\",0.00,83.00,66.00,502.00,,,,,,\n2015,5,19,\"DL\",\"1949\",\"TPA\",\"LGA\",70.00,83.00,0.00,\"\",0.00,176.00,135.00,1010.00,1.00,0.00,13.00,0.00,69.00,\n2015,5,19,\"DL\",\"1953\",\"LGA\",\"FLL\",45.00,43.00,0.00,\"\",0.00,192.00,159.00,1076.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,19,\"DL\",\"1958\",\"PBI\",\"LGA\",93.00,96.00,0.00,\"\",0.00,179.00,145.00,1035.00,4.00,0.00,3.00,0.00,89.00,\n2015,5,19,\"DL\",\"1969\",\"BUF\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,85.00,63.00,301.00,,,,,,\n2015,5,19,\"DL\",\"1972\",\"AUS\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,217.00,196.00,1521.00,,,,,,\n2015,5,17,\"DL\",\"1370\",\"ATL\",\"ROC\",-1.00,-9.00,0.00,\"\",0.00,117.00,97.00,749.00,,,,,,\n2015,5,17,\"DL\",\"1370\",\"ROC\",\"ATL\",-5.00,-20.00,0.00,\"\",0.00,119.00,104.00,749.00,,,,,,\n2015,5,17,\"DL\",\"1372\",\"DTW\",\"BUF\",-1.00,-7.00,0.00,\"\",0.00,60.00,36.00,241.00,,,,,,\n2015,5,17,\"DL\",\"1383\",\"LGA\",\"ATL\",3.00,-18.00,0.00,\"\",0.00,147.00,108.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1386\",\"ATL\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,124.00,98.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1394\",\"ATL\",\"JFK\",4.00,-5.00,0.00,\"\",0.00,144.00,107.00,760.00,,,,,,\n2015,5,17,\"DL\",\"1419\",\"ATL\",\"JFK\",8.00,-5.00,0.00,\"\",0.00,142.00,112.00,760.00,,,,,,\n2015,5,17,\"DL\",\"1428\",\"LGA\",\"ATL\",-5.00,-26.00,0.00,\"\",0.00,138.00,104.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1473\",\"SEA\",\"JFK\",-6.00,12.00,0.00,\"\",0.00,348.00,323.00,2422.00,,,,,,\n2015,5,17,\"DL\",\"1486\",\"ATL\",\"LGA\",26.00,8.00,0.00,\"\",0.00,121.00,100.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1487\",\"ATL\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,138.00,105.00,760.00,,,,,,\n2015,5,17,\"DL\",\"1496\",\"MSP\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,160.00,136.00,1020.00,,,,,,\n2015,5,17,\"DL\",\"1498\",\"FLL\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,165.00,143.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"1514\",\"LGA\",\"FLL\",-5.00,-20.00,0.00,\"\",0.00,174.00,146.00,1076.00,,,,,,\n2015,5,17,\"DL\",\"1515\",\"ATL\",\"ALB\",-2.00,-11.00,0.00,\"\",0.00,138.00,116.00,853.00,,,,,,\n2015,5,17,\"DL\",\"1526\",\"MCO\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,150.00,130.00,950.00,,,,,,\n2015,5,17,\"DL\",\"1542\",\"SEA\",\"JFK\",4.00,-10.00,0.00,\"\",0.00,310.00,288.00,2422.00,,,,,,\n2015,5,17,\"DL\",\"1543\",\"ATL\",\"ALB\",-2.00,-5.00,0.00,\"\",0.00,141.00,111.00,853.00,,,,,,\n2015,5,17,\"DL\",\"1543\",\"ALB\",\"ATL\",4.00,-18.00,0.00,\"\",0.00,140.00,121.00,853.00,,,,,,\n2015,5,17,\"DL\",\"1548\",\"LGA\",\"DTW\",4.00,-21.00,0.00,\"\",0.00,95.00,76.00,502.00,,,,,,\n2015,5,17,\"DL\",\"1560\",\"MSY\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,171.00,150.00,1183.00,,,,,,\n2015,5,17,\"DL\",\"1562\",\"BOS\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,62.00,39.00,187.00,,,,,,\n2015,5,17,\"DL\",\"1566\",\"LGA\",\"PBI\",-2.00,-7.00,0.00,\"\",0.00,178.00,138.00,1035.00,,,,,,\n2015,5,17,\"DL\",\"1580\",\"LGA\",\"DTW\",0.00,-18.00,0.00,\"\",0.00,107.00,81.00,502.00,,,,,,\n2015,5,17,\"DL\",\"1583\",\"SFO\",\"JFK\",-5.00,2.00,0.00,\"\",0.00,356.00,322.00,2586.00,,,,,,\n2015,5,17,\"DL\",\"1584\",\"ATL\",\"ROC\",-2.00,-21.00,0.00,\"\",0.00,114.00,97.00,749.00,,,,,,\n2015,5,17,\"DL\",\"1584\",\"ROC\",\"ATL\",-10.00,-15.00,0.00,\"\",0.00,130.00,101.00,749.00,,,,,,\n2015,5,17,\"DL\",\"1586\",\"ATL\",\"LGA\",2.00,-10.00,0.00,\"\",0.00,132.00,107.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1596\",\"MSP\",\"LGA\",5.00,-7.00,0.00,\"\",0.00,153.00,132.00,1020.00,,,,,,\n2015,5,17,\"DL\",\"1644\",\"FLL\",\"JFK\",-6.00,-35.00,0.00,\"\",0.00,158.00,141.00,1069.00,,,,,,\n2015,5,17,\"DL\",\"1647\",\"LGA\",\"ATL\",-3.00,-17.00,0.00,\"\",0.00,136.00,105.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1671\",\"MIA\",\"JFK\",11.00,-5.00,0.00,\"\",0.00,171.00,144.00,1089.00,,,,,,\n2015,5,17,\"DL\",\"1672\",\"ATL\",\"BUF\",-4.00,-7.00,0.00,\"\",0.00,116.00,92.00,712.00,,,,,,\n2015,5,17,\"DL\",\"1672\",\"BUF\",\"ATL\",-3.00,-23.00,0.00,\"\",0.00,108.00,92.00,712.00,,,,,,\n2015,5,17,\"DL\",\"1685\",\"LGA\",\"MCO\",-2.00,1.00,0.00,\"\",0.00,178.00,128.00,950.00,,,,,,\n2015,5,17,\"DL\",\"1697\",\"LGA\",\"ATL\",7.00,-11.00,0.00,\"\",0.00,140.00,99.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1728\",\"LAS\",\"JFK\",1.00,-16.00,0.00,\"\",0.00,284.00,258.00,2248.00,,,,,,\n2015,5,17,\"DL\",\"1750\",\"ATL\",\"JFK\",40.00,27.00,0.00,\"\",0.00,136.00,107.00,760.00,7.00,0.00,0.00,0.00,20.00,\n2015,5,17,\"DL\",\"1762\",\"LAX\",\"JFK\",11.00,2.00,0.00,\"\",0.00,326.00,290.00,2475.00,,,,,,\n2015,5,17,\"DL\",\"1779\",\"LGA\",\"MSY\",-4.00,-20.00,0.00,\"\",0.00,183.00,155.00,1183.00,,,,,,\n2015,5,17,\"DL\",\"1786\",\"ATL\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,121.00,104.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1787\",\"FLL\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,170.00,140.00,1069.00,,,,,,\n2015,5,17,\"DL\",\"1796\",\"LGA\",\"MSP\",-6.00,11.00,0.00,\"\",0.00,215.00,151.00,1020.00,,,,,,\n2015,5,17,\"DL\",\"1830\",\"SLC\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,250.00,231.00,1990.00,,,,,,\n2015,5,17,\"DL\",\"1841\",\"SJU\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,226.00,206.00,1598.00,,,,,,\n2015,5,17,\"DL\",\"1849\",\"LGA\",\"ATL\",13.00,-7.00,0.00,\"\",0.00,138.00,99.00,762.00,,,,,,\n2015,5,17,\"DL\",\"1851\",\"CHS\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,120.00,90.00,636.00,,,,,,\n2015,5,17,\"DL\",\"1875\",\"LGA\",\"TPA\",-6.00,-2.00,0.00,\"\",0.00,184.00,135.00,1010.00,,,,,,\n2015,5,17,\"DL\",\"1879\",\"LGA\",\"FLL\",-9.00,-28.00,0.00,\"\",0.00,168.00,146.00,1076.00,,,,,,\n2015,5,18,\"DL\",\"2263\",\"JFK\",\"MIA\",217.00,245.00,0.00,\"\",0.00,238.00,142.00,1089.00,0.00,0.00,28.00,0.00,217.00,\n2015,5,18,\"DL\",\"2270\",\"LGA\",\"RSW\",-4.00,-22.00,0.00,\"\",0.00,178.00,151.00,1080.00,,,,,,\n2015,5,18,\"DL\",\"2276\",\"MCO\",\"JFK\",96.00,118.00,0.00,\"\",0.00,189.00,158.00,944.00,0.00,0.00,22.00,0.00,96.00,\n2015,5,18,\"DL\",\"2277\",\"JFK\",\"TPA\",130.00,154.00,0.00,\"\",0.00,217.00,134.00,1005.00,0.00,0.00,24.00,0.00,130.00,\n2015,5,18,\"DL\",\"2280\",\"LGA\",\"TPA\",117.00,95.00,0.00,\"\",0.00,152.00,133.00,1010.00,8.00,0.00,0.00,0.00,87.00,\n2015,5,18,\"DL\",\"2282\",\"LGA\",\"MCO\",178.00,193.00,0.00,\"\",0.00,191.00,128.00,950.00,0.00,0.00,15.00,0.00,178.00,\n2015,5,18,\"DL\",\"2285\",\"LGA\",\"MCO\",-4.00,-12.00,0.00,\"\",0.00,155.00,121.00,950.00,,,,,,\n2015,5,18,\"DL\",\"2292\",\"JFK\",\"PBI\",-13.00,-17.00,0.00,\"\",0.00,183.00,138.00,1028.00,,,,,,\n2015,5,18,\"DL\",\"2296\",\"MSP\",\"LGA\",85.00,98.00,0.00,\"\",0.00,182.00,143.00,1020.00,0.00,0.00,98.00,0.00,0.00,\n2015,5,18,\"DL\",\"2301\",\"JFK\",\"SAT\",1.00,-5.00,0.00,\"\",0.00,263.00,223.00,1587.00,,,,,,\n2015,5,18,\"DL\",\"2311\",\"JFK\",\"MIA\",193.00,184.00,0.00,\"\",0.00,197.00,140.00,1089.00,0.00,0.00,27.00,0.00,157.00,\n2015,5,18,\"DL\",\"2312\",\"JFK\",\"DTW\",190.00,260.00,0.00,\"\",0.00,210.00,82.00,509.00,2.00,0.00,70.00,0.00,188.00,\n2015,5,18,\"DL\",\"2317\",\"PBI\",\"LGA\",77.00,65.00,0.00,\"\",0.00,161.00,136.00,1035.00,0.00,0.00,65.00,0.00,0.00,\n2015,5,18,\"DL\",\"2319\",\"LGA\",\"MSP\",161.00,129.00,0.00,\"\",0.00,163.00,141.00,1020.00,18.00,0.00,0.00,0.00,111.00,\n2015,5,18,\"DL\",\"2331\",\"LGA\",\"DTW\",122.00,178.00,0.00,\"\",0.00,180.00,92.00,502.00,7.00,0.00,56.00,0.00,115.00,\n2015,5,18,\"DL\",\"2340\",\"JFK\",\"MCO\",124.00,100.00,0.00,\"\",0.00,166.00,119.00,944.00,1.00,0.00,0.00,0.00,99.00,\n2015,5,18,\"DL\",\"2349\",\"DTW\",\"LGA\",125.00,119.00,0.00,\"\",0.00,100.00,76.00,502.00,0.00,0.00,119.00,0.00,0.00,\n2015,5,18,\"DL\",\"2350\",\"ATL\",\"JFK\",40.00,48.00,0.00,\"\",0.00,142.00,115.00,760.00,26.00,0.00,8.00,0.00,14.00,\n2015,5,18,\"DL\",\"2352\",\"LAS\",\"JFK\",144.00,179.00,0.00,\"\",0.00,348.00,301.00,2248.00,0.00,0.00,175.00,0.00,4.00,\n2015,5,18,\"DL\",\"2354\",\"SLC\",\"JFK\",-6.00,-30.00,0.00,\"\",0.00,248.00,229.00,1990.00,,,,,,\n2015,5,18,\"DL\",\"2362\",\"LAX\",\"JFK\",52.00,97.00,0.00,\"\",0.00,375.00,318.00,2475.00,2.00,0.00,45.00,0.00,50.00,\n2015,5,18,\"DL\",\"2382\",\"JFK\",\"FLL\",184.00,178.00,0.00,\"\",0.00,195.00,138.00,1069.00,0.00,0.00,7.00,0.00,171.00,\n2015,5,18,\"DL\",\"2386\",\"ATL\",\"LGA\",32.00,60.00,0.00,\"\",0.00,166.00,117.00,762.00,0.00,32.00,28.00,0.00,0.00,\n2015,5,18,\"DL\",\"2390\",\"JFK\",\"ATL\",86.00,111.00,0.00,\"\",0.00,197.00,115.00,760.00,86.00,0.00,25.00,0.00,0.00,\n2015,5,18,\"DL\",\"2395\",\"LGA\",\"PBI\",0.00,-8.00,0.00,\"\",0.00,172.00,139.00,1035.00,,,,,,\n2015,5,18,\"DL\",\"2400\",\"JFK\",\"PIT\",5.00,-21.00,0.00,\"\",0.00,95.00,61.00,340.00,,,,,,\n2015,5,18,\"DL\",\"2404\",\"SAN\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,319.00,286.00,2446.00,,,,,,\n2015,5,18,\"DL\",\"2405\",\"PHX\",\"JFK\",106.00,112.00,0.00,\"\",0.00,301.00,274.00,2153.00,0.00,0.00,102.00,0.00,10.00,\n2015,5,18,\"DL\",\"2406\",\"TPA\",\"LGA\",123.00,125.00,0.00,\"\",0.00,160.00,135.00,1010.00,13.00,0.00,17.00,0.00,95.00,\n2015,5,18,\"DL\",\"2413\",\"MIA\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,176.00,144.00,1096.00,,,,,,\n2015,5,18,\"DL\",\"2432\",\"DTW\",\"SYR\",33.00,69.00,0.00,\"\",0.00,115.00,76.00,374.00,33.00,0.00,36.00,0.00,0.00,\n2015,5,18,\"DL\",\"2435\",\"JFK\",\"FLL\",-9.00,-40.00,0.00,\"\",0.00,172.00,140.00,1069.00,,,,,,\n2015,5,18,\"DL\",\"2447\",\"DEN\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,223.00,200.00,1626.00,,,,,,\n2015,5,18,\"DL\",\"2450\",\"MCO\",\"LGA\",78.00,93.00,0.00,\"\",0.00,171.00,129.00,950.00,0.00,0.00,93.00,0.00,0.00,\n2015,5,18,\"DL\",\"2456\",\"JFK\",\"ATL\",46.00,66.00,0.00,\"\",0.00,189.00,106.00,760.00,41.00,0.00,20.00,0.00,5.00,\n2015,5,18,\"DL\",\"2464\",\"TPA\",\"JFK\",-8.00,-7.00,0.00,\"\",0.00,165.00,140.00,1005.00,,,,,,\n2015,5,18,\"DL\",\"2466\",\"ATL\",\"SYR\",29.00,17.00,0.00,\"\",0.00,125.00,97.00,794.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,18,\"DL\",\"2466\",\"SYR\",\"ATL\",33.00,15.00,0.00,\"\",0.00,132.00,109.00,794.00,2.00,0.00,5.00,0.00,8.00,\n2015,5,18,\"DL\",\"2473\",\"ATL\",\"BUF\",150.00,134.00,0.00,\"\",0.00,112.00,91.00,712.00,0.00,12.00,0.00,0.00,122.00,\n2015,5,18,\"DL\",\"2495\",\"MIA\",\"JFK\",43.00,87.00,0.00,\"\",0.00,232.00,160.00,1089.00,1.00,0.00,44.00,0.00,42.00,\n2015,5,18,\"DL\",\"2496\",\"ATL\",\"LGA\",236.00,240.00,0.00,\"\",0.00,143.00,107.00,762.00,0.00,0.00,240.00,0.00,0.00,\n2015,5,18,\"DL\",\"2498\",\"FLL\",\"LGA\",69.00,96.00,0.00,\"\",0.00,210.00,158.00,1076.00,0.00,0.00,43.00,0.00,53.00,\n2015,5,18,\"DL\",\"2502\",\"FLL\",\"LGA\",89.00,103.00,0.00,\"\",0.00,195.00,175.00,1076.00,0.00,0.00,15.00,0.00,88.00,\n2015,5,18,\"DL\",\"2511\",\"JFK\",\"SJU\",-3.00,7.00,0.00,\"\",0.00,248.00,194.00,1598.00,,,,,,\n2015,5,18,\"DL\",\"2521\",\"SFO\",\"JFK\",2.00,1.00,0.00,\"\",0.00,340.00,295.00,2586.00,,,,,,\n2015,5,18,\"DL\",\"2554\",\"DEN\",\"JFK\",88.00,89.00,0.00,\"\",0.00,242.00,206.00,1626.00,0.00,0.00,89.00,0.00,0.00,\n2015,5,18,\"DL\",\"2565\",\"JFK\",\"MSP\",59.00,52.00,0.00,\"\",0.00,202.00,161.00,1029.00,11.00,0.00,0.00,0.00,41.00,\n2015,5,18,\"DL\",\"2567\",\"DTW\",\"ALB\",-5.00,2.00,0.00,\"\",0.00,95.00,66.00,489.00,,,,,,\n2015,5,18,\"DL\",\"2569\",\"JFK\",\"DEN\",3.00,0.00,0.00,\"\",0.00,279.00,223.00,1626.00,,,,,,\n2015,5,18,\"DL\",\"2571\",\"JFK\",\"SLC\",63.00,111.00,0.00,\"\",0.00,373.00,290.00,1990.00,0.00,0.00,111.00,0.00,0.00,\n2015,5,18,\"DL\",\"2577\",\"JFK\",\"FLL\",179.00,199.00,0.00,\"\",0.00,225.00,138.00,1069.00,0.00,0.00,23.00,0.00,176.00,\n2015,5,18,\"DL\",\"2593\",\"SAT\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,229.00,211.00,1587.00,,,,,,\n2015,5,18,\"DL\",\"2594\",\"DEN\",\"LGA\",25.00,39.00,0.00,\"\",0.00,250.00,219.00,1620.00,5.00,5.00,14.00,0.00,15.00,\n2015,5,18,\"DL\",\"2595\",\"FLL\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,167.00,142.00,1076.00,,,,,,\n2015,5,18,\"DL\",\"2596\",\"PBI\",\"LGA\",79.00,74.00,0.00,\"\",0.00,168.00,136.00,1035.00,0.00,0.00,74.00,0.00,0.00,\n2015,5,18,\"DL\",\"2622\",\"ROC\",\"DTW\",-8.00,-27.00,0.00,\"\",0.00,63.00,47.00,296.00,,,,,,\n2015,5,18,\"DL\",\"2627\",\"JFK\",\"PDX\",-2.00,-32.00,0.00,\"\",0.00,340.00,312.00,2454.00,,,,,,\n2015,5,18,\"DL\",\"2632\",\"JFK\",\"MCO\",-8.00,7.00,0.00,\"\",0.00,198.00,122.00,944.00,,,,,,\n2015,5,18,\"DL\",\"2634\",\"JFK\",\"BUF\",245.00,226.00,0.00,\"\",0.00,84.00,51.00,301.00,19.00,0.00,0.00,0.00,207.00,\n2015,5,18,\"DL\",\"2645\",\"JFK\",\"RSW\",-6.00,-4.00,0.00,\"\",0.00,203.00,147.00,1074.00,,,,,,\n2015,5,18,\"DL\",\"2649\",\"JFK\",\"TPA\",223.00,221.00,0.00,\"\",0.00,186.00,127.00,1005.00,34.00,0.00,0.00,0.00,187.00,\n2015,5,18,\"DL\",\"2650\",\"TPA\",\"JFK\",162.00,183.00,0.00,\"\",0.00,189.00,147.00,1005.00,0.00,0.00,183.00,0.00,0.00,\n2015,5,18,\"DL\",\"2652\",\"TPA\",\"JFK\",215.00,228.00,0.00,\"\",0.00,187.00,169.00,1005.00,0.00,0.00,13.00,0.00,215.00,\n2015,5,18,\"DL\",\"2653\",\"MCO\",\"JFK\",99.00,105.00,0.00,\"\",0.00,172.00,139.00,944.00,0.00,0.00,105.00,0.00,0.00,\n2015,5,18,\"DL\",\"2660\",\"LGA\",\"DCA\",27.00,26.00,0.00,\"\",0.00,82.00,50.00,214.00,0.00,26.00,0.00,0.00,0.00,\n2015,5,18,\"DL\",\"2660\",\"DCA\",\"LGA\",91.00,144.00,0.00,\"\",0.00,143.00,39.00,214.00,0.00,0.00,125.00,0.00,19.00,\n2015,5,18,\"DL\",\"2665\",\"BOS\",\"LGA\",-4.00,,1.00,\"B\",0.00,,,184.00,,,,,,\n2015,5,18,\"DL\",\"2666\",\"LGA\",\"BOS\",2.00,0.00,0.00,\"\",0.00,64.00,33.00,184.00,,,,,,\n2015,5,18,\"DL\",\"2667\",\"BOS\",\"LGA\",359.00,349.00,0.00,\"\",0.00,69.00,52.00,184.00,0.00,0.00,349.00,0.00,0.00,\n2015,5,18,\"DL\",\"2668\",\"LGA\",\"BOS\",0.00,8.00,0.00,\"\",0.00,79.00,43.00,184.00,,,,,,\n2015,5,18,\"DL\",\"2669\",\"BOS\",\"LGA\",108.00,110.00,0.00,\"\",0.00,77.00,59.00,184.00,0.00,0.00,110.00,0.00,0.00,\n2015,5,18,\"DL\",\"2670\",\"LGA\",\"BOS\",,,1.00,\"B\",0.00,,,184.00,,,,,,\n2015,5,18,\"DL\",\"2671\",\"BOS\",\"LGA\",226.00,214.00,0.00,\"\",0.00,67.00,46.00,184.00,0.00,0.00,187.00,0.00,27.00,\n2015,5,18,\"DL\",\"2672\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,18,\"DL\",\"2673\",\"BOS\",\"LGA\",202.00,217.00,0.00,\"\",0.00,88.00,48.00,184.00,0.00,0.00,217.00,0.00,0.00,\n2015,5,18,\"DL\",\"2674\",\"LGA\",\"BOS\",121.00,111.00,0.00,\"\",0.00,73.00,48.00,184.00,24.00,0.00,0.00,0.00,87.00,\n2015,5,18,\"DL\",\"2675\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,18,\"DL\",\"2676\",\"LGA\",\"BOS\",213.00,208.00,0.00,\"\",0.00,71.00,33.00,184.00,0.00,0.00,0.00,0.00,208.00,\n2015,5,18,\"DL\",\"2677\",\"BOS\",\"LGA\",122.00,118.00,0.00,\"\",0.00,71.00,46.00,184.00,0.00,0.00,17.00,0.00,101.00,\n2015,5,18,\"DL\",\"2678\",\"LGA\",\"BOS\",212.00,205.00,0.00,\"\",0.00,76.00,35.00,184.00,2.00,0.00,0.00,0.00,203.00,\n2015,5,18,\"DL\",\"2679\",\"BOS\",\"LGA\",207.00,196.00,0.00,\"\",0.00,66.00,45.00,184.00,13.00,0.00,0.00,0.00,183.00,\n2015,5,18,\"DL\",\"2680\",\"LGA\",\"BOS\",122.00,104.00,0.00,\"\",0.00,61.00,34.00,184.00,0.00,57.00,0.00,0.00,47.00,\n2015,5,18,\"DL\",\"2681\",\"BOS\",\"LGA\",217.00,206.00,0.00,\"\",0.00,66.00,40.00,184.00,18.00,0.00,0.00,0.00,188.00,\n2015,5,18,\"DL\",\"2682\",\"LGA\",\"BOS\",113.00,121.00,0.00,\"\",0.00,80.00,34.00,184.00,0.00,0.00,8.00,0.00,113.00,\n2015,5,18,\"DL\",\"2683\",\"BOS\",\"LGA\",107.00,106.00,0.00,\"\",0.00,73.00,51.00,184.00,0.00,0.00,15.00,0.00,91.00,\n2015,5,18,\"DL\",\"2684\",\"LGA\",\"BOS\",196.00,190.00,0.00,\"\",0.00,69.00,40.00,184.00,2.00,0.00,0.00,0.00,188.00,\n2015,5,18,\"DL\",\"2685\",\"BOS\",\"LGA\",101.00,100.00,0.00,\"\",0.00,71.00,39.00,184.00,0.00,0.00,0.00,0.00,100.00,\n2015,5,18,\"DL\",\"2686\",\"LGA\",\"BOS\",197.00,185.00,0.00,\"\",0.00,70.00,36.00,184.00,0.00,0.00,0.00,0.00,185.00,\n2015,5,18,\"DL\",\"2687\",\"BOS\",\"LGA\",202.00,192.00,0.00,\"\",0.00,66.00,43.00,184.00,0.00,0.00,27.00,0.00,165.00,\n2015,5,18,\"DL\",\"2688\",\"LGA\",\"BOS\",104.00,91.00,0.00,\"\",0.00,70.00,42.00,184.00,12.00,0.00,0.00,0.00,79.00,\n2015,5,18,\"DL\",\"2689\",\"BOS\",\"LGA\",190.00,189.00,0.00,\"\",0.00,79.00,42.00,184.00,0.00,0.00,13.00,0.00,176.00,\n2015,5,18,\"DL\",\"2690\",\"LGA\",\"BOS\",91.00,81.00,0.00,\"\",0.00,75.00,34.00,184.00,0.00,0.00,0.00,0.00,81.00,\n2015,5,18,\"DL\",\"2691\",\"BOS\",\"LGA\",118.00,105.00,0.00,\"\",0.00,64.00,42.00,184.00,0.00,0.00,30.00,0.00,75.00,\n2015,5,18,\"DL\",\"2692\",\"LGA\",\"BOS\",186.00,168.00,0.00,\"\",0.00,61.00,37.00,184.00,0.00,0.00,0.00,0.00,168.00,\n2015,5,18,\"DL\",\"2693\",\"BOS\",\"LGA\",66.00,58.00,0.00,\"\",0.00,70.00,38.00,184.00,0.00,0.00,0.00,0.00,58.00,\n2015,5,18,\"DL\",\"2694\",\"LGA\",\"BOS\",205.00,202.00,0.00,\"\",0.00,75.00,38.00,184.00,16.00,0.00,0.00,0.00,186.00,\n2015,5,18,\"DL\",\"2696\",\"LGA\",\"BOS\",116.00,125.00,0.00,\"\",0.00,77.00,39.00,184.00,59.00,0.00,9.00,0.00,57.00,\n2015,5,18,\"DL\",\"2699\",\"BOS\",\"LGA\",43.00,121.00,0.00,\"\",0.00,154.00,44.00,184.00,0.00,0.00,121.00,0.00,0.00,\n2015,5,18,\"DL\",\"2785\",\"JFK\",\"CHS\",53.00,41.00,0.00,\"\",0.00,124.00,93.00,636.00,8.00,0.00,0.00,0.00,33.00,\n2015,5,19,\"DL\",\"42\",\"MIA\",\"JFK\",85.00,93.00,0.00,\"\",0.00,197.00,161.00,1089.00,0.00,0.00,8.00,0.00,85.00,\n2015,5,19,\"DL\",\"208\",\"JFK\",\"MCO\",90.00,82.00,0.00,\"\",0.00,179.00,132.00,944.00,0.00,0.00,0.00,0.00,82.00,\n2015,5,19,\"DL\",\"221\",\"LGA\",\"ATL\",76.00,69.00,0.00,\"\",0.00,158.00,112.00,762.00,6.00,0.00,0.00,0.00,63.00,\n2015,5,19,\"DL\",\"234\",\"PIT\",\"JFK\",0.00,6.00,0.00,\"\",0.00,104.00,70.00,340.00,,,,,,\n2015,5,19,\"DL\",\"245\",\"JFK\",\"SLC\",-2.00,42.00,0.00,\"\",0.00,373.00,283.00,1990.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,19,\"DL\",\"326\",\"SJU\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,230.00,212.00,1598.00,,,,,,\n2015,5,19,\"DL\",\"332\",\"SJU\",\"JFK\",-6.00,-2.00,0.00,\"\",0.00,250.00,221.00,1598.00,,,,,,\n2015,5,19,\"DL\",\"333\",\"MSP\",\"LGA\",44.00,20.00,0.00,\"\",0.00,139.00,119.00,1020.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,19,\"DL\",\"342\",\"SFO\",\"JFK\",7.00,-3.00,0.00,\"\",0.00,329.00,295.00,2586.00,,,,,,\n2015,5,19,\"DL\",\"347\",\"LGA\",\"ATL\",101.00,84.00,0.00,\"\",0.00,141.00,117.00,762.00,16.00,0.00,0.00,0.00,68.00,\n2015,5,19,\"DL\",\"348\",\"SJU\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,230.00,201.00,1598.00,,,,,,\n2015,5,19,\"DL\",\"350\",\"LGA\",\"ATL\",51.00,36.00,0.00,\"\",0.00,138.00,110.00,762.00,12.00,0.00,0.00,0.00,24.00,\n2015,5,19,\"DL\",\"400\",\"PDX\",\"JFK\",11.00,-18.00,0.00,\"\",0.00,300.00,278.00,2454.00,,,,,,\n2015,5,19,\"DL\",\"401\",\"AUS\",\"JFK\",9.00,-8.00,0.00,\"\",0.00,222.00,200.00,1521.00,,,,,,\n2015,5,19,\"DL\",\"403\",\"PDX\",\"JFK\",-6.00,-1.00,0.00,\"\",0.00,339.00,306.00,2454.00,,,,,,\n2015,5,19,\"DL\",\"405\",\"JFK\",\"TPA\",-6.00,-15.00,0.00,\"\",0.00,162.00,140.00,1005.00,,,,,,\n2015,5,19,\"DL\",\"407\",\"MCO\",\"JFK\",60.00,114.00,0.00,\"\",0.00,223.00,153.00,944.00,0.00,0.00,54.00,0.00,60.00,\n2015,5,19,\"DL\",\"408\",\"JFK\",\"SLC\",9.00,-6.00,0.00,\"\",0.00,290.00,266.00,1990.00,,,,,,\n2015,5,19,\"DL\",\"409\",\"JFK\",\"SJU\",-2.00,-30.00,0.00,\"\",0.00,219.00,190.00,1598.00,,,,,,\n2015,5,19,\"DL\",\"410\",\"MSP\",\"JFK\",37.00,21.00,0.00,\"\",0.00,151.00,128.00,1029.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,19,\"DL\",\"412\",\"LAX\",\"JFK\",3.00,-34.00,0.00,\"\",0.00,302.00,278.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"414\",\"SFO\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,335.00,305.00,2586.00,,,,,,\n2015,5,19,\"DL\",\"415\",\"JFK\",\"SFO\",-1.00,-4.00,0.00,\"\",0.00,405.00,370.00,2586.00,,,,,,\n2015,5,19,\"DL\",\"417\",\"JFK\",\"SEA\",12.00,21.00,0.00,\"\",0.00,391.00,328.00,2422.00,12.00,0.00,9.00,0.00,0.00,\n2015,5,19,\"DL\",\"418\",\"SEA\",\"JFK\",-7.00,-7.00,0.00,\"\",0.00,328.00,291.00,2422.00,,,,,,\n2015,5,19,\"DL\",\"419\",\"JFK\",\"SEA\",2.00,-2.00,0.00,\"\",0.00,375.00,326.00,2422.00,,,,,,\n2015,5,19,\"DL\",\"420\",\"JFK\",\"LAX\",-5.00,8.00,0.00,\"\",0.00,411.00,349.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"421\",\"JFK\",\"ATL\",-1.00,-4.00,0.00,\"\",0.00,164.00,109.00,760.00,,,,,,\n2015,5,19,\"DL\",\"422\",\"JFK\",\"LAX\",-6.00,-9.00,0.00,\"\",0.00,377.00,333.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"423\",\"JFK\",\"LAX\",7.00,-12.00,0.00,\"\",0.00,354.00,327.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"424\",\"JFK\",\"LAX\",-5.00,4.00,0.00,\"\",0.00,379.00,327.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"426\",\"JFK\",\"MCO\",-2.00,-22.00,0.00,\"\",0.00,152.00,131.00,944.00,,,,,,\n2015,5,19,\"DL\",\"427\",\"JFK\",\"LAX\",-2.00,25.00,0.00,\"\",0.00,415.00,352.00,2475.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,19,\"DL\",\"428\",\"JFK\",\"FLL\",-10.00,-20.00,0.00,\"\",0.00,174.00,146.00,1069.00,,,,,,\n2015,5,19,\"DL\",\"430\",\"JFK\",\"SFO\",-4.00,-14.00,0.00,\"\",0.00,374.00,345.00,2586.00,,,,,,\n2015,5,19,\"DL\",\"431\",\"JFK\",\"DEN\",-2.00,8.00,0.00,\"\",0.00,294.00,244.00,1626.00,,,,,,\n2015,5,19,\"DL\",\"433\",\"JFK\",\"DTW\",39.00,30.00,0.00,\"\",0.00,131.00,88.00,509.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"DL\",\"434\",\"JFK\",\"SFO\",-2.00,-9.00,0.00,\"\",0.00,397.00,357.00,2586.00,,,,,,\n2015,5,19,\"DL\",\"435\",\"JFK\",\"SFO\",9.00,24.00,0.00,\"\",0.00,426.00,369.00,2586.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,19,\"DL\",\"436\",\"JFK\",\"LAS\",-3.00,-20.00,0.00,\"\",0.00,333.00,304.00,2248.00,,,,,,\n2015,5,19,\"DL\",\"437\",\"JFK\",\"BOS\",116.00,138.00,0.00,\"\",0.00,99.00,48.00,187.00,9.00,0.00,22.00,0.00,107.00,\n2015,5,19,\"DL\",\"438\",\"JFK\",\"MCO\",-11.00,-31.00,0.00,\"\",0.00,148.00,125.00,944.00,,,,,,\n2015,5,19,\"DL\",\"439\",\"JFK\",\"MSP\",-6.00,-23.00,0.00,\"\",0.00,175.00,153.00,1029.00,,,,,,\n2015,5,19,\"DL\",\"440\",\"JFK\",\"BOS\",20.00,11.00,0.00,\"\",0.00,92.00,42.00,187.00,,,,,,\n2015,5,19,\"DL\",\"443\",\"JFK\",\"LAS\",0.00,-23.00,0.00,\"\",0.00,331.00,292.00,2248.00,,,,,,\n2015,5,19,\"DL\",\"444\",\"SLC\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,261.00,229.00,1990.00,,,,,,\n2015,5,19,\"DL\",\"445\",\"JFK\",\"PDX\",-7.00,-16.00,0.00,\"\",0.00,369.00,334.00,2454.00,,,,,,\n2015,5,19,\"DL\",\"447\",\"JFK\",\"LAX\",7.00,-5.00,0.00,\"\",0.00,378.00,341.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"448\",\"JFK\",\"SEA\",-4.00,-4.00,0.00,\"\",0.00,360.00,336.00,2422.00,,,,,,\n2015,5,19,\"DL\",\"449\",\"JFK\",\"PHX\",27.00,54.00,0.00,\"\",0.00,368.00,304.00,2153.00,27.00,0.00,27.00,0.00,0.00,\n2015,5,19,\"DL\",\"453\",\"JFK\",\"CHS\",2.00,20.00,0.00,\"\",0.00,157.00,88.00,636.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,19,\"DL\",\"454\",\"JFK\",\"ATL\",-1.00,-1.00,0.00,\"\",0.00,152.00,103.00,760.00,,,,,,\n2015,5,19,\"DL\",\"455\",\"JFK\",\"SAN\",1.00,33.00,0.00,\"\",0.00,410.00,340.00,2446.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,19,\"DL\",\"456\",\"JFK\",\"SEA\",-1.00,1.00,0.00,\"\",0.00,365.00,328.00,2422.00,,,,,,\n2015,5,19,\"DL\",\"459\",\"JFK\",\"SAN\",-7.00,-8.00,0.00,\"\",0.00,374.00,331.00,2446.00,,,,,,\n2015,5,19,\"DL\",\"460\",\"JFK\",\"SLC\",12.00,-7.00,0.00,\"\",0.00,306.00,266.00,1990.00,,,,,,\n2015,5,19,\"DL\",\"464\",\"JFK\",\"MIA\",1.00,0.00,0.00,\"\",0.00,180.00,154.00,1089.00,,,,,,\n2015,5,19,\"DL\",\"465\",\"JFK\",\"STT\",-4.00,-14.00,0.00,\"\",0.00,236.00,193.00,1623.00,,,,,,\n2015,5,19,\"DL\",\"466\",\"SLC\",\"JFK\",-3.00,7.00,0.00,\"\",0.00,287.00,265.00,1990.00,,,,,,\n2015,5,19,\"DL\",\"468\",\"SFO\",\"JFK\",-3.00,-31.00,0.00,\"\",0.00,321.00,294.00,2586.00,,,,,,\n2015,5,19,\"DL\",\"469\",\"JFK\",\"SFO\",-3.00,-13.00,0.00,\"\",0.00,380.00,350.00,2586.00,,,,,,\n2015,5,19,\"DL\",\"472\",\"JFK\",\"LAX\",-11.00,25.00,0.00,\"\",0.00,421.00,347.00,2475.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,19,\"DL\",\"476\",\"LAX\",\"JFK\",0.00,-34.00,0.00,\"\",0.00,301.00,279.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"477\",\"JFK\",\"LAX\",36.00,26.00,0.00,\"\",0.00,385.00,338.00,2475.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"DL\",\"478\",\"ATL\",\"JFK\",6.00,-14.00,0.00,\"\",0.00,132.00,107.00,760.00,,,,,,\n2015,5,19,\"DL\",\"480\",\"JFK\",\"SJU\",-2.00,-23.00,0.00,\"\",0.00,213.00,193.00,1598.00,,,,,,\n2015,5,19,\"DL\",\"483\",\"JFK\",\"LAS\",1.00,1.00,0.00,\"\",0.00,353.00,311.00,2248.00,,,,,,\n2015,5,19,\"DL\",\"486\",\"JFK\",\"LAS\",-9.00,-7.00,0.00,\"\",0.00,334.00,312.00,2248.00,,,,,,\n2015,5,19,\"DL\",\"488\",\"JFK\",\"SJU\",-4.00,-17.00,0.00,\"\",0.00,214.00,187.00,1598.00,,,,,,\n2015,5,19,\"DL\",\"491\",\"JFK\",\"SJU\",-3.00,-12.00,0.00,\"\",0.00,229.00,192.00,1598.00,,,,,,\n2015,5,19,\"DL\",\"494\",\"JFK\",\"LAS\",0.00,7.00,0.00,\"\",0.00,363.00,309.00,2248.00,,,,,,\n2015,5,19,\"DL\",\"495\",\"JFK\",\"ATL\",-1.00,-19.00,0.00,\"\",0.00,151.00,103.00,760.00,,,,,,\n2015,5,19,\"DL\",\"496\",\"JFK\",\"BOS\",67.00,100.00,0.00,\"\",0.00,116.00,42.00,187.00,67.00,0.00,33.00,0.00,0.00,\n2015,5,19,\"DL\",\"497\",\"JFK\",\"ATL\",34.00,20.00,0.00,\"\",0.00,139.00,105.00,760.00,11.00,0.00,0.00,0.00,9.00,\n2015,5,19,\"DL\",\"498\",\"JFK\",\"SFO\",0.00,-2.00,0.00,\"\",0.00,406.00,359.00,2586.00,,,,,,\n2015,5,19,\"DL\",\"499\",\"JFK\",\"SLC\",3.00,-3.00,0.00,\"\",0.00,304.00,272.00,1990.00,,,,,,\n2015,5,19,\"DL\",\"511\",\"SJU\",\"JFK\",-8.00,-37.00,0.00,\"\",0.00,220.00,203.00,1598.00,,,,,,\n2015,5,19,\"DL\",\"527\",\"RSW\",\"JFK\",0.00,15.00,0.00,\"\",0.00,179.00,140.00,1074.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,19,\"DL\",\"528\",\"LGA\",\"MSP\",71.00,62.00,0.00,\"\",0.00,176.00,154.00,1020.00,13.00,0.00,0.00,0.00,49.00,\n2015,5,19,\"DL\",\"541\",\"LAS\",\"JFK\",-1.00,-44.00,0.00,\"\",0.00,256.00,242.00,2248.00,,,,,,\n2015,5,19,\"DL\",\"544\",\"ALB\",\"ATL\",-3.00,-14.00,0.00,\"\",0.00,144.00,124.00,853.00,,,,,,\n2015,5,19,\"DL\",\"582\",\"DTW\",\"LGA\",90.00,78.00,0.00,\"\",0.00,95.00,72.00,502.00,0.00,0.00,0.00,0.00,78.00,\n2015,5,19,\"DL\",\"583\",\"LGA\",\"DTW\",-3.00,19.00,0.00,\"\",0.00,136.00,84.00,502.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,19,\"DL\",\"662\",\"BUF\",\"MSP\",20.00,-2.00,0.00,\"\",0.00,122.00,106.00,735.00,,,,,,\n2015,5,19,\"DL\",\"664\",\"TPA\",\"LGA\",24.00,17.00,0.00,\"\",0.00,156.00,135.00,1010.00,0.00,0.00,1.00,0.00,16.00,\n2015,5,19,\"DL\",\"676\",\"STT\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,243.00,214.00,1623.00,,,,,,\n2015,5,19,\"DL\",\"707\",\"DTW\",\"ALB\",-6.00,-21.00,0.00,\"\",0.00,82.00,63.00,489.00,,,,,,\n2015,5,19,\"DL\",\"707\",\"ALB\",\"DTW\",-12.00,-23.00,0.00,\"\",0.00,99.00,78.00,489.00,,,,,,\n2015,5,19,\"DL\",\"714\",\"DTW\",\"LGA\",68.00,58.00,0.00,\"\",0.00,96.00,70.00,502.00,0.00,0.00,58.00,0.00,0.00,\n2015,5,19,\"DL\",\"723\",\"ATL\",\"BUF\",-4.00,-26.00,0.00,\"\",0.00,105.00,92.00,712.00,,,,,,\n2015,5,19,\"DL\",\"723\",\"BUF\",\"ATL\",-6.00,-19.00,0.00,\"\",0.00,118.00,98.00,712.00,,,,,,\n2015,5,19,\"DL\",\"725\",\"ATL\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,138.00,110.00,762.00,,,,,,\n2015,5,19,\"DL\",\"729\",\"LAS\",\"JFK\",2.00,-17.00,0.00,\"\",0.00,286.00,250.00,2248.00,,,,,,\n2015,5,19,\"DL\",\"731\",\"LGA\",\"DTW\",1.00,-9.00,0.00,\"\",0.00,104.00,81.00,502.00,,,,,,\n2015,5,19,\"DL\",\"750\",\"BOS\",\"JFK\",8.00,11.00,0.00,\"\",0.00,83.00,57.00,187.00,,,,,,\n2015,5,19,\"DL\",\"763\",\"BOS\",\"JFK\",134.00,146.00,0.00,\"\",0.00,90.00,44.00,187.00,5.00,0.00,12.00,0.00,129.00,\n2015,5,19,\"DL\",\"772\",\"PBI\",\"LGA\",54.00,41.00,0.00,\"\",0.00,157.00,139.00,1035.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,19,\"DL\",\"782\",\"MIA\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,165.00,141.00,1089.00,,,,,,\n2015,5,19,\"DL\",\"787\",\"MCO\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,152.00,125.00,944.00,,,,,,\n2015,5,19,\"DL\",\"789\",\"MIA\",\"LGA\",61.00,65.00,0.00,\"\",0.00,192.00,163.00,1096.00,5.00,0.00,8.00,0.00,52.00,\n2015,5,19,\"DL\",\"791\",\"LAX\",\"JFK\",11.00,-19.00,0.00,\"\",0.00,306.00,279.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"792\",\"PBI\",\"JFK\",0.00,2.00,0.00,\"\",0.00,169.00,135.00,1028.00,,,,,,\n2015,5,19,\"DL\",\"793\",\"BOS\",\"JFK\",13.00,12.00,0.00,\"\",0.00,93.00,45.00,187.00,,,,,,\n2015,5,19,\"DL\",\"802\",\"ATL\",\"LGA\",91.00,75.00,0.00,\"\",0.00,129.00,103.00,762.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,19,\"DL\",\"804\",\"LGA\",\"MSP\",60.00,67.00,0.00,\"\",0.00,201.00,157.00,1020.00,4.00,0.00,7.00,0.00,56.00,\n2015,5,19,\"DL\",\"856\",\"SAN\",\"JFK\",-4.00,-38.00,0.00,\"\",0.00,303.00,270.00,2446.00,,,,,,\n2015,5,19,\"DL\",\"871\",\"MSP\",\"LGA\",69.00,55.00,0.00,\"\",0.00,150.00,126.00,1020.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,19,\"DL\",\"874\",\"LGA\",\"MIA\",-2.00,-19.00,0.00,\"\",0.00,188.00,150.00,1096.00,,,,,,\n2015,5,19,\"DL\",\"878\",\"RSW\",\"LGA\",64.00,60.00,0.00,\"\",0.00,168.00,138.00,1080.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,19,\"DL\",\"884\",\"LGA\",\"DEN\",25.00,36.00,0.00,\"\",0.00,285.00,237.00,1620.00,1.00,0.00,11.00,0.00,24.00,\n2015,5,19,\"DL\",\"889\",\"MSP\",\"LGA\",55.00,35.00,0.00,\"\",0.00,141.00,120.00,1020.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,19,\"DL\",\"904\",\"LGA\",\"ATL\",0.00,4.00,0.00,\"\",0.00,153.00,104.00,762.00,,,,,,\n2015,5,19,\"DL\",\"906\",\"ATL\",\"LGA\",16.00,-1.00,0.00,\"\",0.00,128.00,102.00,762.00,,,,,,\n2015,5,19,\"DL\",\"907\",\"ROC\",\"MSP\",17.00,-4.00,0.00,\"\",0.00,130.00,114.00,783.00,,,,,,\n2015,5,19,\"DL\",\"909\",\"LGA\",\"MIA\",39.00,52.00,0.00,\"\",0.00,207.00,169.00,1096.00,4.00,0.00,13.00,0.00,35.00,\n2015,5,19,\"DL\",\"910\",\"MCO\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,155.00,137.00,950.00,,,,,,\n2015,5,19,\"DL\",\"928\",\"DEN\",\"LGA\",51.00,62.00,0.00,\"\",0.00,247.00,181.00,1620.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,19,\"DL\",\"2667\",\"BOS\",\"LGA\",222.00,217.00,0.00,\"\",0.00,74.00,53.00,184.00,217.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"DL\",\"2668\",\"LGA\",\"BOS\",-1.00,11.00,0.00,\"\",0.00,83.00,48.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2669\",\"BOS\",\"LGA\",-2.00,17.00,0.00,\"\",0.00,94.00,47.00,184.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,19,\"DL\",\"2670\",\"LGA\",\"BOS\",10.00,19.00,0.00,\"\",0.00,76.00,41.00,184.00,0.00,0.00,9.00,0.00,10.00,\n2015,5,19,\"DL\",\"2671\",\"BOS\",\"LGA\",-1.00,12.00,0.00,\"\",0.00,92.00,45.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2672\",\"LGA\",\"BOS\",205.00,232.00,0.00,\"\",0.00,109.00,51.00,184.00,0.00,0.00,27.00,0.00,205.00,\n2015,5,19,\"DL\",\"2673\",\"BOS\",\"LGA\",5.00,15.00,0.00,\"\",0.00,83.00,46.00,184.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,19,\"DL\",\"1974\",\"MIA\",\"LGA\",16.00,29.00,0.00,\"\",0.00,196.00,148.00,1096.00,5.00,0.00,24.00,0.00,0.00,\n2015,5,19,\"DL\",\"1982\",\"LGA\",\"MIA\",79.00,124.00,0.00,\"\",0.00,241.00,195.00,1096.00,33.00,0.00,45.00,0.00,46.00,\n2015,5,19,\"DL\",\"1985\",\"ALB\",\"DTW\",-5.00,-12.00,0.00,\"\",0.00,94.00,74.00,489.00,,,,,,\n2015,5,19,\"DL\",\"1986\",\"ATL\",\"LGA\",40.00,20.00,0.00,\"\",0.00,130.00,103.00,762.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,19,\"DL\",\"1994\",\"PHX\",\"JFK\",-1.00,-30.00,0.00,\"\",0.00,263.00,238.00,2153.00,,,,,,\n2015,5,19,\"DL\",\"1996\",\"MSP\",\"LGA\",76.00,56.00,0.00,\"\",0.00,142.00,127.00,1020.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,19,\"DL\",\"2003\",\"LGA\",\"MIA\",-5.00,-10.00,0.00,\"\",0.00,182.00,148.00,1096.00,,,,,,\n2015,5,19,\"DL\",\"2013\",\"ATL\",\"SYR\",39.00,29.00,0.00,\"\",0.00,125.00,102.00,794.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"DL\",\"2014\",\"SYR\",\"ATL\",5.00,-11.00,0.00,\"\",0.00,123.00,109.00,794.00,,,,,,\n2015,5,19,\"DL\",\"2016\",\"LGA\",\"ATL\",17.00,8.00,0.00,\"\",0.00,144.00,109.00,762.00,,,,,,\n2015,5,19,\"DL\",\"2022\",\"LGA\",\"FLL\",23.00,27.00,0.00,\"\",0.00,196.00,163.00,1076.00,0.00,0.00,4.00,0.00,23.00,\n2015,5,19,\"DL\",\"2028\",\"FLL\",\"LGA\",30.00,28.00,0.00,\"\",0.00,179.00,151.00,1076.00,2.00,0.00,14.00,0.00,12.00,\n2015,5,19,\"DL\",\"2032\",\"MSP\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,155.00,130.00,1029.00,,,,,,\n2015,5,19,\"DL\",\"2037\",\"MCO\",\"LGA\",76.00,80.00,0.00,\"\",0.00,161.00,124.00,950.00,5.00,0.00,72.00,0.00,3.00,\n2015,5,19,\"DL\",\"2040\",\"SFO\",\"JFK\",-4.00,-35.00,0.00,\"\",0.00,310.00,283.00,2586.00,,,,,,\n2015,5,19,\"DL\",\"2056\",\"MSP\",\"ROC\",-5.00,-34.00,0.00,\"\",0.00,108.00,89.00,783.00,,,,,,\n2015,5,19,\"DL\",\"2058\",\"MCO\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,151.00,129.00,944.00,,,,,,\n2015,5,19,\"DL\",\"2074\",\"LGA\",\"ATL\",33.00,4.00,0.00,\"\",0.00,129.00,107.00,762.00,,,,,,\n2015,5,19,\"DL\",\"2077\",\"LGA\",\"MCO\",68.00,119.00,0.00,\"\",0.00,227.00,147.00,950.00,0.00,0.00,51.00,0.00,68.00,\n2015,5,19,\"DL\",\"2086\",\"ATL\",\"LGA\",92.00,72.00,0.00,\"\",0.00,124.00,105.00,762.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,19,\"DL\",\"2096\",\"LGA\",\"MSP\",68.00,57.00,0.00,\"\",0.00,171.00,151.00,1020.00,8.00,0.00,0.00,0.00,49.00,\n2015,5,19,\"DL\",\"2103\",\"JFK\",\"SJU\",5.00,-2.00,0.00,\"\",0.00,235.00,194.00,1598.00,,,,,,\n2015,5,19,\"DL\",\"2119\",\"LGA\",\"MSP\",3.00,-7.00,0.00,\"\",0.00,175.00,146.00,1020.00,,,,,,\n2015,5,19,\"DL\",\"2129\",\"ROC\",\"ATL\",0.00,-7.00,0.00,\"\",0.00,122.00,104.00,749.00,,,,,,\n2015,5,19,\"DL\",\"2131\",\"LGA\",\"DTW\",20.00,22.00,0.00,\"\",0.00,121.00,82.00,502.00,7.00,0.00,2.00,0.00,13.00,\n2015,5,19,\"DL\",\"2135\",\"TPA\",\"LGA\",71.00,68.00,0.00,\"\",0.00,161.00,138.00,1010.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,19,\"DL\",\"2148\",\"LGA\",\"DTW\",46.00,32.00,0.00,\"\",0.00,114.00,82.00,502.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,19,\"DL\",\"2150\",\"LGA\",\"DTW\",3.00,-9.00,0.00,\"\",0.00,114.00,85.00,502.00,,,,,,\n2015,5,19,\"DL\",\"2151\",\"MIA\",\"LGA\",59.00,48.00,0.00,\"\",0.00,175.00,151.00,1096.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,19,\"DL\",\"2155\",\"LAS\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,283.00,257.00,2248.00,,,,,,\n2015,5,19,\"DL\",\"2156\",\"ATL\",\"SYR\",-2.00,-14.00,0.00,\"\",0.00,118.00,102.00,794.00,,,,,,\n2015,5,19,\"DL\",\"2156\",\"SYR\",\"ATL\",-2.00,-12.00,0.00,\"\",0.00,133.00,113.00,794.00,,,,,,\n2015,5,19,\"DL\",\"2166\",\"SYR\",\"DTW\",-6.00,-19.00,0.00,\"\",0.00,80.00,58.00,374.00,,,,,,\n2015,5,19,\"DL\",\"2174\",\"DTW\",\"JFK\",47.00,39.00,0.00,\"\",0.00,113.00,85.00,509.00,2.00,0.00,0.00,0.00,37.00,\n2015,5,19,\"DL\",\"2175\",\"JFK\",\"TPA\",,,1.00,\"A\",0.00,,,1005.00,,,,,,\n2015,5,19,\"DL\",\"2178\",\"LGA\",\"TPA\",9.00,7.00,0.00,\"\",0.00,179.00,145.00,1010.00,,,,,,\n2015,5,19,\"DL\",\"2181\",\"LGA\",\"MCO\",40.00,55.00,0.00,\"\",0.00,185.00,154.00,950.00,21.00,0.00,15.00,0.00,19.00,\n2015,5,19,\"DL\",\"2182\",\"JFK\",\"PHX\",-4.00,-2.00,0.00,\"\",0.00,338.00,303.00,2153.00,,,,,,\n2015,5,19,\"DL\",\"2185\",\"FLL\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,162.00,145.00,1069.00,,,,,,\n2015,5,19,\"DL\",\"2186\",\"ATL\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,132.00,105.00,762.00,,,,,,\n2015,5,19,\"DL\",\"2190\",\"JFK\",\"MIA\",4.00,-14.00,0.00,\"\",0.00,184.00,146.00,1089.00,,,,,,\n2015,5,19,\"DL\",\"2214\",\"ATL\",\"LGA\",1.00,42.00,0.00,\"\",0.00,174.00,106.00,762.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,19,\"DL\",\"2217\",\"JFK\",\"BOS\",125.00,112.00,0.00,\"\",0.00,79.00,38.00,187.00,112.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"DL\",\"2230\",\"CHS\",\"JFK\",49.00,59.00,0.00,\"\",0.00,139.00,102.00,636.00,1.00,0.00,10.00,0.00,48.00,\n2015,5,19,\"DL\",\"2231\",\"DTW\",\"LGA\",80.00,86.00,0.00,\"\",0.00,114.00,72.00,502.00,0.00,0.00,75.00,0.00,11.00,\n2015,5,19,\"DL\",\"2240\",\"SFO\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,313.00,287.00,2586.00,,,,,,\n2015,5,19,\"DL\",\"2248\",\"DTW\",\"LGA\",74.00,61.00,0.00,\"\",0.00,95.00,71.00,502.00,0.00,0.00,61.00,0.00,0.00,\n2015,5,19,\"DL\",\"2262\",\"LAX\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,324.00,288.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"2270\",\"LGA\",\"RSW\",2.00,-7.00,0.00,\"\",0.00,187.00,151.00,1080.00,,,,,,\n2015,5,19,\"DL\",\"2276\",\"MCO\",\"JFK\",196.00,188.00,0.00,\"\",0.00,159.00,122.00,944.00,97.00,0.00,0.00,0.00,91.00,\n2015,5,19,\"DL\",\"2277\",\"JFK\",\"TPA\",-4.00,-3.00,0.00,\"\",0.00,194.00,165.00,1005.00,,,,,,\n2015,5,19,\"DL\",\"2280\",\"LGA\",\"TPA\",-1.00,-10.00,0.00,\"\",0.00,165.00,138.00,1010.00,,,,,,\n2015,5,19,\"DL\",\"2282\",\"LGA\",\"MCO\",87.00,77.00,0.00,\"\",0.00,166.00,134.00,950.00,0.00,0.00,0.00,0.00,77.00,\n2015,5,19,\"DL\",\"2285\",\"LGA\",\"MCO\",-4.00,-1.00,0.00,\"\",0.00,166.00,127.00,950.00,,,,,,\n2015,5,19,\"DL\",\"2292\",\"JFK\",\"PBI\",-8.00,-35.00,0.00,\"\",0.00,160.00,135.00,1028.00,,,,,,\n2015,5,19,\"DL\",\"2296\",\"MSP\",\"LGA\",77.00,53.00,0.00,\"\",0.00,145.00,125.00,1020.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,19,\"DL\",\"2301\",\"JFK\",\"SAT\",-5.00,-10.00,0.00,\"\",0.00,264.00,222.00,1587.00,,,,,,\n2015,5,19,\"DL\",\"2311\",\"JFK\",\"MIA\",113.00,94.00,0.00,\"\",0.00,187.00,141.00,1089.00,0.00,0.00,0.00,0.00,94.00,\n2015,5,19,\"DL\",\"2317\",\"PBI\",\"LGA\",84.00,84.00,0.00,\"\",0.00,173.00,148.00,1035.00,33.00,0.00,35.00,0.00,16.00,\n2015,5,19,\"DL\",\"2319\",\"LGA\",\"MSP\",12.00,-16.00,0.00,\"\",0.00,167.00,151.00,1020.00,,,,,,\n2015,5,19,\"DL\",\"2322\",\"JFK\",\"AUS\",0.00,-1.00,0.00,\"\",0.00,263.00,204.00,1521.00,,,,,,\n2015,5,19,\"DL\",\"2331\",\"LGA\",\"DTW\",75.00,64.00,0.00,\"\",0.00,113.00,83.00,502.00,0.00,0.00,0.00,0.00,64.00,\n2015,5,19,\"DL\",\"2340\",\"JFK\",\"MCO\",2.00,15.00,0.00,\"\",0.00,203.00,151.00,944.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,19,\"DL\",\"2349\",\"DTW\",\"LGA\",89.00,85.00,0.00,\"\",0.00,102.00,75.00,502.00,0.00,0.00,85.00,0.00,0.00,\n2015,5,19,\"DL\",\"2350\",\"ATL\",\"JFK\",-1.00,3.00,0.00,\"\",0.00,139.00,108.00,760.00,,,,,,\n2015,5,19,\"DL\",\"2352\",\"LAS\",\"JFK\",7.00,5.00,0.00,\"\",0.00,311.00,254.00,2248.00,,,,,,\n2015,5,19,\"DL\",\"2354\",\"SLC\",\"JFK\",16.00,5.00,0.00,\"\",0.00,261.00,236.00,1990.00,,,,,,\n2015,5,19,\"DL\",\"2355\",\"JFK\",\"ATL\",48.00,52.00,0.00,\"\",0.00,173.00,104.00,760.00,48.00,0.00,4.00,0.00,0.00,\n2015,5,19,\"DL\",\"2362\",\"LAX\",\"JFK\",3.00,-33.00,0.00,\"\",0.00,294.00,272.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"2382\",\"JFK\",\"FLL\",-1.00,-5.00,0.00,\"\",0.00,197.00,156.00,1069.00,,,,,,\n2015,5,19,\"DL\",\"2386\",\"ATL\",\"LGA\",21.00,11.00,0.00,\"\",0.00,128.00,99.00,762.00,,,,,,\n2015,5,19,\"DL\",\"2395\",\"LGA\",\"PBI\",-6.00,-4.00,0.00,\"\",0.00,182.00,143.00,1035.00,,,,,,\n2015,5,19,\"DL\",\"2404\",\"SAN\",\"JFK\",-5.00,-40.00,0.00,\"\",0.00,299.00,272.00,2446.00,,,,,,\n2015,5,19,\"DL\",\"2406\",\"TPA\",\"LGA\",55.00,62.00,0.00,\"\",0.00,165.00,126.00,1010.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,19,\"DL\",\"2413\",\"MIA\",\"LGA\",73.00,69.00,0.00,\"\",0.00,180.00,145.00,1096.00,0.00,0.00,69.00,0.00,0.00,\n2015,5,19,\"DL\",\"2424\",\"JFK\",\"ATL\",-6.00,-17.00,0.00,\"\",0.00,161.00,109.00,760.00,,,,,,\n2015,5,19,\"DL\",\"2432\",\"DTW\",\"SYR\",7.00,4.00,0.00,\"\",0.00,76.00,54.00,374.00,,,,,,\n2015,5,19,\"DL\",\"2435\",\"JFK\",\"FLL\",-6.00,-30.00,0.00,\"\",0.00,179.00,147.00,1069.00,,,,,,\n2015,5,19,\"DL\",\"2450\",\"MCO\",\"LGA\",42.00,37.00,0.00,\"\",0.00,151.00,120.00,950.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,19,\"DL\",\"2464\",\"TPA\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,155.00,137.00,1005.00,,,,,,\n2015,5,19,\"DL\",\"2466\",\"ATL\",\"SYR\",-1.00,-20.00,0.00,\"\",0.00,118.00,98.00,794.00,,,,,,\n2015,5,19,\"DL\",\"2466\",\"SYR\",\"ATL\",-7.00,-27.00,0.00,\"\",0.00,130.00,110.00,794.00,,,,,,\n2015,5,19,\"DL\",\"2473\",\"ATL\",\"BUF\",-4.00,-10.00,0.00,\"\",0.00,122.00,96.00,712.00,,,,,,\n2015,5,19,\"DL\",\"2496\",\"ATL\",\"LGA\",87.00,73.00,0.00,\"\",0.00,120.00,100.00,762.00,0.00,0.00,73.00,0.00,0.00,\n2015,5,19,\"DL\",\"2498\",\"FLL\",\"LGA\",43.00,36.00,0.00,\"\",0.00,176.00,147.00,1076.00,0.00,0.00,25.00,0.00,11.00,\n2015,5,19,\"DL\",\"2502\",\"FLL\",\"LGA\",39.00,36.00,0.00,\"\",0.00,178.00,146.00,1076.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,19,\"DL\",\"2542\",\"JFK\",\"AUS\",-1.00,-1.00,0.00,\"\",0.00,264.00,222.00,1521.00,,,,,,\n2015,5,19,\"DL\",\"2554\",\"DEN\",\"JFK\",24.00,-16.00,0.00,\"\",0.00,201.00,183.00,1626.00,,,,,,\n2015,5,19,\"DL\",\"2565\",\"JFK\",\"MSP\",13.00,2.00,0.00,\"\",0.00,198.00,155.00,1029.00,,,,,,\n2015,5,19,\"DL\",\"2567\",\"DTW\",\"ALB\",20.00,8.00,0.00,\"\",0.00,76.00,61.00,489.00,,,,,,\n2015,5,19,\"DL\",\"2577\",\"JFK\",\"FLL\",57.00,60.00,0.00,\"\",0.00,208.00,149.00,1069.00,57.00,0.00,3.00,0.00,0.00,\n2015,5,19,\"DL\",\"2593\",\"SAT\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,236.00,208.00,1587.00,,,,,,\n2015,5,19,\"DL\",\"2594\",\"DEN\",\"LGA\",50.00,15.00,0.00,\"\",0.00,201.00,179.00,1620.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,19,\"DL\",\"2595\",\"FLL\",\"LGA\",233.00,238.00,0.00,\"\",0.00,189.00,148.00,1076.00,2.00,0.00,8.00,0.00,228.00,\n2015,5,19,\"DL\",\"2596\",\"PBI\",\"LGA\",56.00,47.00,0.00,\"\",0.00,164.00,134.00,1035.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,19,\"DL\",\"2622\",\"ROC\",\"DTW\",-3.00,-25.00,0.00,\"\",0.00,60.00,46.00,296.00,,,,,,\n2015,5,19,\"DL\",\"2627\",\"JFK\",\"PDX\",-3.00,-10.00,0.00,\"\",0.00,363.00,330.00,2454.00,,,,,,\n2015,5,19,\"DL\",\"2632\",\"JFK\",\"MCO\",-5.00,-22.00,0.00,\"\",0.00,166.00,126.00,944.00,,,,,,\n2015,5,19,\"DL\",\"2634\",\"JFK\",\"BUF\",22.00,33.00,0.00,\"\",0.00,114.00,55.00,301.00,22.00,0.00,11.00,0.00,0.00,\n2015,5,19,\"DL\",\"2645\",\"JFK\",\"RSW\",-1.00,-22.00,0.00,\"\",0.00,180.00,159.00,1074.00,,,,,,\n2015,5,19,\"DL\",\"2649\",\"JFK\",\"TPA\",114.00,135.00,0.00,\"\",0.00,209.00,157.00,1005.00,13.00,0.00,21.00,0.00,101.00,\n2015,5,19,\"DL\",\"2650\",\"TPA\",\"JFK\",,,1.00,\"A\",0.00,,,1005.00,,,,,,\n2015,5,19,\"DL\",\"2652\",\"TPA\",\"JFK\",130.00,135.00,0.00,\"\",0.00,179.00,144.00,1005.00,0.00,0.00,5.00,0.00,130.00,\n2015,5,19,\"DL\",\"2653\",\"MCO\",\"JFK\",9.00,50.00,0.00,\"\",0.00,207.00,147.00,944.00,9.00,0.00,41.00,0.00,0.00,\n2015,5,19,\"DL\",\"2660\",\"LGA\",\"DCA\",-1.00,-1.00,0.00,\"\",0.00,83.00,45.00,214.00,,,,,,\n2015,5,19,\"DL\",\"2660\",\"DCA\",\"LGA\",30.00,6.00,0.00,\"\",0.00,66.00,45.00,214.00,,,,,,\n2015,5,19,\"DL\",\"2661\",\"LGA\",\"DCA\",133.00,142.00,0.00,\"\",0.00,95.00,55.00,214.00,92.00,0.00,9.00,0.00,41.00,\n2015,5,19,\"DL\",\"2661\",\"DCA\",\"LGA\",141.00,129.00,0.00,\"\",0.00,79.00,39.00,214.00,3.00,0.00,0.00,0.00,126.00,\n2015,5,19,\"DL\",\"2665\",\"BOS\",\"LGA\",-1.00,19.00,0.00,\"\",0.00,95.00,50.00,184.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,19,\"DL\",\"2666\",\"LGA\",\"BOS\",-2.00,-2.00,0.00,\"\",0.00,66.00,40.00,184.00,,,,,,\n2015,5,21,\"DL\",\"856\",\"SAN\",\"JFK\",-1.00,-30.00,0.00,\"\",0.00,308.00,272.00,2446.00,,,,,,\n2015,5,21,\"DL\",\"871\",\"MSP\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,148.00,128.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"874\",\"LGA\",\"MIA\",-2.00,-19.00,0.00,\"\",0.00,188.00,156.00,1096.00,,,,,,\n2015,5,21,\"DL\",\"878\",\"RSW\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,165.00,144.00,1080.00,,,,,,\n2015,5,21,\"DL\",\"884\",\"LGA\",\"DEN\",10.00,14.00,0.00,\"\",0.00,278.00,236.00,1620.00,,,,,,\n2015,5,21,\"DL\",\"889\",\"MSP\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,153.00,133.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"895\",\"DTW\",\"SYR\",-5.00,-8.00,0.00,\"\",0.00,75.00,53.00,374.00,,,,,,\n2015,5,21,\"DL\",\"895\",\"SYR\",\"DTW\",-11.00,-31.00,0.00,\"\",0.00,76.00,62.00,374.00,,,,,,\n2015,5,21,\"DL\",\"904\",\"LGA\",\"ATL\",-1.00,5.00,0.00,\"\",0.00,155.00,113.00,762.00,,,,,,\n2015,5,21,\"DL\",\"906\",\"ATL\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,128.00,102.00,762.00,,,,,,\n2015,5,21,\"DL\",\"907\",\"ROC\",\"MSP\",-4.00,-18.00,0.00,\"\",0.00,137.00,124.00,783.00,,,,,,\n2015,5,21,\"DL\",\"909\",\"LGA\",\"MIA\",-2.00,-23.00,0.00,\"\",0.00,173.00,155.00,1096.00,,,,,,\n2015,5,21,\"DL\",\"910\",\"MCO\",\"LGA\",-5.00,7.00,0.00,\"\",0.00,172.00,124.00,950.00,,,,,,\n2015,5,21,\"DL\",\"928\",\"DEN\",\"LGA\",-5.00,-44.00,0.00,\"\",0.00,197.00,176.00,1620.00,,,,,,\n2015,5,21,\"DL\",\"939\",\"MCO\",\"LGA\",42.00,23.00,0.00,\"\",0.00,144.00,125.00,950.00,1.00,0.00,0.00,0.00,22.00,\n2015,5,21,\"DL\",\"964\",\"LGA\",\"ATL\",0.00,-13.00,0.00,\"\",0.00,133.00,108.00,762.00,,,,,,\n2015,5,21,\"DL\",\"965\",\"MCO\",\"LGA\",6.00,-6.00,0.00,\"\",0.00,149.00,128.00,950.00,,,,,,\n2015,5,21,\"DL\",\"971\",\"LGA\",\"DEN\",20.00,19.00,0.00,\"\",0.00,266.00,239.00,1620.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"DL\",\"986\",\"ATL\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,122.00,101.00,762.00,,,,,,\n2015,5,21,\"DL\",\"997\",\"DTW\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,100.00,74.00,502.00,,,,,,\n2015,5,21,\"DL\",\"1086\",\"LGA\",\"ATL\",0.00,-23.00,0.00,\"\",0.00,139.00,113.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1088\",\"FLL\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,167.00,147.00,1076.00,,,,,,\n2015,5,21,\"DL\",\"1109\",\"SEA\",\"JFK\",11.00,-18.00,0.00,\"\",0.00,306.00,285.00,2422.00,,,,,,\n2015,5,21,\"DL\",\"1111\",\"ATL\",\"ROC\",-1.00,-11.00,0.00,\"\",0.00,120.00,94.00,749.00,,,,,,\n2015,5,21,\"DL\",\"1121\",\"PBI\",\"LGA\",46.00,39.00,0.00,\"\",0.00,166.00,143.00,1035.00,8.00,0.00,0.00,0.00,31.00,\n2015,5,21,\"DL\",\"1131\",\"LGA\",\"FLL\",-8.00,-23.00,0.00,\"\",0.00,177.00,151.00,1076.00,,,,,,\n2015,5,21,\"DL\",\"1145\",\"LGA\",\"DTW\",-4.00,-10.00,0.00,\"\",0.00,118.00,93.00,502.00,,,,,,\n2015,5,21,\"DL\",\"1155\",\"DTW\",\"ROC\",-4.00,-4.00,0.00,\"\",0.00,71.00,51.00,296.00,,,,,,\n2015,5,21,\"DL\",\"1159\",\"ATL\",\"BUF\",-2.00,-18.00,0.00,\"\",0.00,106.00,91.00,712.00,,,,,,\n2015,5,21,\"DL\",\"1159\",\"BUF\",\"ATL\",-3.00,-8.00,0.00,\"\",0.00,124.00,104.00,712.00,,,,,,\n2015,5,21,\"DL\",\"1162\",\"LAX\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,300.00,274.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"1174\",\"LGA\",\"PBI\",13.00,-1.00,0.00,\"\",0.00,166.00,139.00,1035.00,,,,,,\n2015,5,21,\"DL\",\"1176\",\"ATL\",\"BUF\",-1.00,-23.00,0.00,\"\",0.00,108.00,92.00,712.00,,,,,,\n2015,5,21,\"DL\",\"1176\",\"BUF\",\"ATL\",-3.00,0.00,0.00,\"\",0.00,137.00,105.00,712.00,,,,,,\n2015,5,21,\"DL\",\"1186\",\"ATL\",\"LGA\",15.00,2.00,0.00,\"\",0.00,128.00,99.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1214\",\"LGA\",\"ATL\",0.00,2.00,0.00,\"\",0.00,166.00,118.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1227\",\"PHX\",\"JFK\",-3.00,-31.00,0.00,\"\",0.00,262.00,245.00,2153.00,,,,,,\n2015,5,21,\"DL\",\"1242\",\"LGA\",\"PBI\",9.00,-8.00,0.00,\"\",0.00,167.00,147.00,1035.00,,,,,,\n2015,5,21,\"DL\",\"1262\",\"LAX\",\"JFK\",19.00,0.00,0.00,\"\",0.00,314.00,285.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"1264\",\"SLC\",\"JFK\",6.00,-10.00,0.00,\"\",0.00,256.00,229.00,1990.00,,,,,,\n2015,5,21,\"DL\",\"1266\",\"BUF\",\"ATL\",-4.00,-8.00,0.00,\"\",0.00,118.00,101.00,712.00,,,,,,\n2015,5,21,\"DL\",\"1269\",\"LGA\",\"MIA\",9.00,-12.00,0.00,\"\",0.00,176.00,153.00,1096.00,,,,,,\n2015,5,21,\"DL\",\"1278\",\"MSP\",\"BUF\",-3.00,-15.00,0.00,\"\",0.00,107.00,93.00,735.00,,,,,,\n2015,5,21,\"DL\",\"1286\",\"ATL\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,133.00,96.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1288\",\"LGA\",\"FLL\",-4.00,-26.00,0.00,\"\",0.00,173.00,148.00,1076.00,,,,,,\n2015,5,21,\"DL\",\"1289\",\"LGA\",\"ATL\",-1.00,-8.00,0.00,\"\",0.00,155.00,119.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1298\",\"LGA\",\"ATL\",-4.00,3.00,0.00,\"\",0.00,168.00,114.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1306\",\"DTW\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,100.00,76.00,502.00,,,,,,\n2015,5,21,\"DL\",\"1312\",\"TPA\",\"JFK\",-5.00,-34.00,0.00,\"\",0.00,145.00,127.00,1005.00,,,,,,\n2015,5,21,\"DL\",\"1335\",\"MIA\",\"LGA\",1.00,-16.00,0.00,\"\",0.00,166.00,142.00,1096.00,,,,,,\n2015,5,21,\"DL\",\"1356\",\"BUF\",\"DTW\",-1.00,-11.00,0.00,\"\",0.00,61.00,41.00,241.00,,,,,,\n2015,5,21,\"DL\",\"1359\",\"MCO\",\"LGA\",-7.00,0.00,0.00,\"\",0.00,170.00,143.00,950.00,,,,,,\n2015,5,21,\"DL\",\"1370\",\"ATL\",\"ROC\",-4.00,-11.00,0.00,\"\",0.00,119.00,97.00,749.00,,,,,,\n2015,5,21,\"DL\",\"1370\",\"ROC\",\"ATL\",-5.00,-19.00,0.00,\"\",0.00,122.00,106.00,749.00,,,,,,\n2015,5,21,\"DL\",\"1372\",\"DTW\",\"BUF\",12.00,5.00,0.00,\"\",0.00,59.00,42.00,241.00,,,,,,\n2015,5,21,\"DL\",\"1383\",\"LGA\",\"ATL\",-3.00,8.00,0.00,\"\",0.00,179.00,117.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1386\",\"ATL\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,118.00,98.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1394\",\"ATL\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,133.00,105.00,760.00,,,,,,\n2015,5,21,\"DL\",\"1419\",\"ATL\",\"JFK\",0.00,-26.00,0.00,\"\",0.00,129.00,102.00,760.00,,,,,,\n2015,5,21,\"DL\",\"1428\",\"LGA\",\"ATL\",-6.00,-22.00,0.00,\"\",0.00,142.00,110.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1447\",\"LGA\",\"ATL\",-1.00,-7.00,0.00,\"\",0.00,138.00,113.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1473\",\"SEA\",\"JFK\",2.00,-20.00,0.00,\"\",0.00,308.00,284.00,2422.00,,,,,,\n2015,5,21,\"DL\",\"1486\",\"ATL\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,122.00,102.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1487\",\"ATL\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,132.00,102.00,760.00,,,,,,\n2015,5,21,\"DL\",\"1496\",\"MSP\",\"LGA\",-2.00,12.00,0.00,\"\",0.00,180.00,126.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"1498\",\"FLL\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,165.00,140.00,1076.00,,,,,,\n2015,5,21,\"DL\",\"1514\",\"LGA\",\"FLL\",-2.00,23.00,0.00,\"\",0.00,214.00,193.00,1076.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,21,\"DL\",\"1515\",\"ATL\",\"ALB\",-2.00,-25.00,0.00,\"\",0.00,124.00,103.00,853.00,,,,,,\n2015,5,21,\"DL\",\"1526\",\"MCO\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,147.00,127.00,950.00,,,,,,\n2015,5,21,\"DL\",\"1542\",\"SEA\",\"JFK\",-1.00,-29.00,0.00,\"\",0.00,296.00,276.00,2422.00,,,,,,\n2015,5,21,\"DL\",\"1543\",\"ATL\",\"ALB\",-7.00,-13.00,0.00,\"\",0.00,138.00,106.00,853.00,,,,,,\n2015,5,21,\"DL\",\"1543\",\"ALB\",\"ATL\",-8.00,-6.00,0.00,\"\",0.00,164.00,131.00,853.00,,,,,,\n2015,5,21,\"DL\",\"1548\",\"LGA\",\"DTW\",-6.00,-18.00,0.00,\"\",0.00,108.00,81.00,502.00,,,,,,\n2015,5,21,\"DL\",\"1560\",\"MSY\",\"LGA\",69.00,44.00,0.00,\"\",0.00,161.00,138.00,1183.00,0.00,44.00,0.00,0.00,0.00,\n2015,5,21,\"DL\",\"1562\",\"BOS\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,65.00,42.00,187.00,,,,,,\n2015,5,21,\"DL\",\"1566\",\"LGA\",\"PBI\",3.00,8.00,0.00,\"\",0.00,188.00,146.00,1035.00,,,,,,\n2015,5,21,\"DL\",\"1580\",\"LGA\",\"DTW\",1.00,-3.00,0.00,\"\",0.00,121.00,84.00,502.00,,,,,,\n2015,5,21,\"DL\",\"1583\",\"SFO\",\"JFK\",4.00,-23.00,0.00,\"\",0.00,322.00,289.00,2586.00,,,,,,\n2015,5,21,\"DL\",\"1584\",\"ATL\",\"ROC\",5.00,-19.00,0.00,\"\",0.00,109.00,92.00,749.00,,,,,,\n2015,5,21,\"DL\",\"1584\",\"ROC\",\"ATL\",-5.00,-6.00,0.00,\"\",0.00,134.00,108.00,749.00,,,,,,\n2015,5,21,\"DL\",\"1586\",\"ATL\",\"LGA\",17.00,18.00,0.00,\"\",0.00,145.00,99.00,762.00,3.00,0.00,1.00,0.00,14.00,\n2015,5,19,\"DL\",\"939\",\"MCO\",\"LGA\",36.00,44.00,0.00,\"\",0.00,171.00,128.00,950.00,21.00,0.00,8.00,0.00,15.00,\n2015,5,19,\"DL\",\"964\",\"LGA\",\"ATL\",47.00,31.00,0.00,\"\",0.00,130.00,104.00,762.00,18.00,0.00,0.00,0.00,13.00,\n2015,5,19,\"DL\",\"965\",\"MCO\",\"LGA\",61.00,90.00,0.00,\"\",0.00,190.00,126.00,950.00,5.00,0.00,30.00,0.00,55.00,\n2015,5,19,\"DL\",\"971\",\"LGA\",\"DEN\",-1.00,23.00,0.00,\"\",0.00,291.00,238.00,1620.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,19,\"DL\",\"986\",\"ATL\",\"LGA\",55.00,49.00,0.00,\"\",0.00,127.00,108.00,762.00,0.00,0.00,49.00,0.00,0.00,\n2015,5,19,\"DL\",\"997\",\"DTW\",\"LGA\",123.00,107.00,0.00,\"\",0.00,88.00,69.00,502.00,0.00,0.00,107.00,0.00,0.00,\n2015,5,19,\"DL\",\"1086\",\"LGA\",\"ATL\",73.00,54.00,0.00,\"\",0.00,143.00,110.00,762.00,12.00,0.00,0.00,0.00,42.00,\n2015,5,19,\"DL\",\"1088\",\"FLL\",\"LGA\",72.00,68.00,0.00,\"\",0.00,173.00,139.00,1076.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,19,\"DL\",\"1109\",\"SEA\",\"JFK\",-4.00,-31.00,0.00,\"\",0.00,308.00,281.00,2422.00,,,,,,\n2015,5,19,\"DL\",\"1111\",\"ATL\",\"ROC\",-1.00,-13.00,0.00,\"\",0.00,118.00,102.00,749.00,,,,,,\n2015,5,19,\"DL\",\"1121\",\"PBI\",\"LGA\",64.00,59.00,0.00,\"\",0.00,168.00,143.00,1035.00,0.00,0.00,3.00,0.00,56.00,\n2015,5,19,\"DL\",\"1131\",\"LGA\",\"FLL\",26.00,13.00,0.00,\"\",0.00,179.00,144.00,1076.00,,,,,,\n2015,5,19,\"DL\",\"1145\",\"LGA\",\"DTW\",55.00,34.00,0.00,\"\",0.00,103.00,80.00,502.00,4.00,0.00,0.00,0.00,30.00,\n2015,5,19,\"DL\",\"1155\",\"DTW\",\"ROC\",12.00,14.00,0.00,\"\",0.00,73.00,46.00,296.00,,,,,,\n2015,5,19,\"DL\",\"1159\",\"ATL\",\"BUF\",-3.00,-10.00,0.00,\"\",0.00,115.00,96.00,712.00,,,,,,\n2015,5,19,\"DL\",\"1159\",\"BUF\",\"ATL\",-3.00,-12.00,0.00,\"\",0.00,120.00,100.00,712.00,,,,,,\n2015,5,19,\"DL\",\"1162\",\"LAX\",\"JFK\",10.00,-14.00,0.00,\"\",0.00,301.00,264.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"1174\",\"LGA\",\"PBI\",93.00,89.00,0.00,\"\",0.00,176.00,147.00,1035.00,24.00,0.00,0.00,0.00,65.00,\n2015,5,19,\"DL\",\"1176\",\"ATL\",\"BUF\",-1.00,0.00,0.00,\"\",0.00,131.00,99.00,712.00,,,,,,\n2015,5,19,\"DL\",\"1176\",\"BUF\",\"ATL\",1.00,-7.00,0.00,\"\",0.00,127.00,97.00,712.00,,,,,,\n2015,5,19,\"DL\",\"1186\",\"ATL\",\"LGA\",91.00,90.00,0.00,\"\",0.00,140.00,100.00,762.00,0.00,0.00,90.00,0.00,0.00,\n2015,5,19,\"DL\",\"1214\",\"LGA\",\"ATL\",95.00,80.00,0.00,\"\",0.00,149.00,111.00,762.00,16.00,0.00,0.00,0.00,64.00,\n2015,5,19,\"DL\",\"1227\",\"PHX\",\"JFK\",-5.00,-44.00,0.00,\"\",0.00,251.00,232.00,2153.00,,,,,,\n2015,5,19,\"DL\",\"1242\",\"LGA\",\"PBI\",38.00,16.00,0.00,\"\",0.00,162.00,135.00,1035.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,19,\"DL\",\"1262\",\"LAX\",\"JFK\",0.00,-41.00,0.00,\"\",0.00,292.00,270.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"1264\",\"SLC\",\"JFK\",-3.00,0.00,0.00,\"\",0.00,276.00,215.00,1990.00,,,,,,\n2015,5,19,\"DL\",\"1266\",\"BUF\",\"ATL\",-2.00,-5.00,0.00,\"\",0.00,119.00,100.00,712.00,,,,,,\n2015,5,19,\"DL\",\"1269\",\"LGA\",\"MIA\",96.00,88.00,0.00,\"\",0.00,189.00,158.00,1096.00,0.00,0.00,0.00,0.00,88.00,\n2015,5,19,\"DL\",\"1278\",\"MSP\",\"BUF\",-2.00,-24.00,0.00,\"\",0.00,97.00,85.00,735.00,,,,,,\n2015,5,19,\"DL\",\"1286\",\"ATL\",\"LGA\",54.00,45.00,0.00,\"\",0.00,126.00,100.00,762.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,19,\"DL\",\"1288\",\"LGA\",\"FLL\",-3.00,-23.00,0.00,\"\",0.00,175.00,144.00,1076.00,,,,,,\n2015,5,19,\"DL\",\"1289\",\"LGA\",\"ATL\",112.00,104.00,0.00,\"\",0.00,154.00,108.00,762.00,21.00,0.00,0.00,0.00,83.00,\n2015,5,19,\"DL\",\"1298\",\"LGA\",\"ATL\",57.00,52.00,0.00,\"\",0.00,156.00,110.00,762.00,0.00,0.00,0.00,0.00,52.00,\n2015,5,19,\"DL\",\"1306\",\"DTW\",\"LGA\",2.00,-7.00,0.00,\"\",0.00,98.00,70.00,502.00,,,,,,\n2015,5,19,\"DL\",\"1312\",\"TPA\",\"JFK\",2.00,-19.00,0.00,\"\",0.00,153.00,132.00,1005.00,,,,,,\n2015,5,19,\"DL\",\"1335\",\"MIA\",\"LGA\",77.00,78.00,0.00,\"\",0.00,184.00,151.00,1096.00,0.00,0.00,78.00,0.00,0.00,\n2015,5,19,\"DL\",\"1356\",\"BUF\",\"DTW\",-1.00,-19.00,0.00,\"\",0.00,53.00,40.00,241.00,,,,,,\n2015,5,19,\"DL\",\"1359\",\"MCO\",\"LGA\",43.00,71.00,0.00,\"\",0.00,191.00,130.00,950.00,0.00,0.00,71.00,0.00,0.00,\n2015,5,19,\"DL\",\"1370\",\"ATL\",\"ROC\",-2.00,-8.00,0.00,\"\",0.00,119.00,97.00,749.00,,,,,,\n2015,5,19,\"DL\",\"1370\",\"ROC\",\"ATL\",0.00,-8.00,0.00,\"\",0.00,126.00,106.00,749.00,,,,,,\n2015,5,19,\"DL\",\"1372\",\"DTW\",\"BUF\",18.00,11.00,0.00,\"\",0.00,59.00,38.00,241.00,,,,,,\n2015,5,19,\"DL\",\"1383\",\"LGA\",\"ATL\",115.00,108.00,0.00,\"\",0.00,161.00,113.00,762.00,0.00,64.00,0.00,0.00,44.00,\n2015,5,19,\"DL\",\"1386\",\"ATL\",\"LGA\",78.00,60.00,0.00,\"\",0.00,116.00,97.00,762.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,19,\"DL\",\"1394\",\"ATL\",\"JFK\",17.00,-12.00,0.00,\"\",0.00,124.00,101.00,760.00,,,,,,\n2015,5,19,\"DL\",\"1419\",\"ATL\",\"JFK\",8.00,12.00,0.00,\"\",0.00,159.00,112.00,760.00,,,,,,\n2015,5,19,\"DL\",\"1428\",\"LGA\",\"ATL\",44.00,34.00,0.00,\"\",0.00,148.00,110.00,762.00,9.00,0.00,0.00,0.00,25.00,\n2015,5,19,\"DL\",\"1447\",\"LGA\",\"ATL\",-2.00,-11.00,0.00,\"\",0.00,135.00,106.00,762.00,,,,,,\n2015,5,19,\"DL\",\"1473\",\"SEA\",\"JFK\",0.00,7.00,0.00,\"\",0.00,337.00,297.00,2422.00,,,,,,\n2015,5,19,\"DL\",\"1486\",\"ATL\",\"LGA\",68.00,58.00,0.00,\"\",0.00,129.00,97.00,762.00,0.00,0.00,58.00,0.00,0.00,\n2015,5,19,\"DL\",\"1487\",\"ATL\",\"JFK\",23.00,16.00,0.00,\"\",0.00,137.00,106.00,760.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"DL\",\"1496\",\"MSP\",\"LGA\",56.00,33.00,0.00,\"\",0.00,143.00,126.00,1020.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,19,\"DL\",\"1498\",\"FLL\",\"LGA\",61.00,50.00,0.00,\"\",0.00,169.00,151.00,1076.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,19,\"DL\",\"1514\",\"LGA\",\"FLL\",2.00,26.00,0.00,\"\",0.00,213.00,177.00,1076.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,19,\"DL\",\"1515\",\"ATL\",\"ALB\",12.00,2.00,0.00,\"\",0.00,137.00,115.00,853.00,,,,,,\n2015,5,19,\"DL\",\"1526\",\"MCO\",\"LGA\",84.00,77.00,0.00,\"\",0.00,152.00,129.00,950.00,0.00,0.00,77.00,0.00,0.00,\n2015,5,19,\"DL\",\"1542\",\"SEA\",\"JFK\",-3.00,-43.00,0.00,\"\",0.00,284.00,264.00,2422.00,,,,,,\n2015,5,19,\"DL\",\"1543\",\"ATL\",\"ALB\",-3.00,-23.00,0.00,\"\",0.00,124.00,106.00,853.00,,,,,,\n2015,5,19,\"DL\",\"1543\",\"ALB\",\"ATL\",4.00,-4.00,0.00,\"\",0.00,154.00,123.00,853.00,,,,,,\n2015,5,19,\"DL\",\"1548\",\"LGA\",\"DTW\",22.00,2.00,0.00,\"\",0.00,100.00,84.00,502.00,,,,,,\n2015,5,19,\"DL\",\"1560\",\"MSY\",\"LGA\",70.00,75.00,0.00,\"\",0.00,191.00,166.00,1183.00,0.00,0.00,55.00,0.00,20.00,\n2015,5,19,\"DL\",\"1562\",\"BOS\",\"JFK\",106.00,107.00,0.00,\"\",0.00,80.00,54.00,187.00,6.00,0.00,1.00,0.00,100.00,\n2015,5,19,\"DL\",\"1566\",\"LGA\",\"PBI\",42.00,47.00,0.00,\"\",0.00,188.00,151.00,1035.00,0.00,0.00,5.00,0.00,42.00,\n2015,5,19,\"DL\",\"1580\",\"LGA\",\"DTW\",86.00,101.00,0.00,\"\",0.00,140.00,82.00,502.00,8.00,0.00,15.00,0.00,78.00,\n2015,5,19,\"DL\",\"1583\",\"SFO\",\"JFK\",-1.00,-10.00,0.00,\"\",0.00,340.00,298.00,2586.00,,,,,,\n2015,5,19,\"DL\",\"1584\",\"ATL\",\"ROC\",10.00,-3.00,0.00,\"\",0.00,120.00,97.00,749.00,,,,,,\n2015,5,19,\"DL\",\"1584\",\"ROC\",\"ATL\",0.00,-17.00,0.00,\"\",0.00,118.00,101.00,749.00,,,,,,\n2015,5,19,\"DL\",\"1586\",\"ATL\",\"LGA\",80.00,70.00,0.00,\"\",0.00,134.00,106.00,762.00,0.00,0.00,70.00,0.00,0.00,\n2015,5,19,\"DL\",\"1596\",\"MSP\",\"LGA\",50.00,18.00,0.00,\"\",0.00,133.00,119.00,1020.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"DL\",\"1644\",\"FLL\",\"JFK\",-2.00,-30.00,0.00,\"\",0.00,159.00,141.00,1069.00,,,,,,\n2015,5,19,\"DL\",\"1647\",\"LGA\",\"ATL\",69.00,54.00,0.00,\"\",0.00,137.00,106.00,762.00,54.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"DL\",\"1671\",\"MIA\",\"JFK\",27.00,9.00,0.00,\"\",0.00,169.00,141.00,1089.00,,,,,,\n2015,5,19,\"DL\",\"1672\",\"ATL\",\"BUF\",9.00,6.00,0.00,\"\",0.00,116.00,89.00,712.00,,,,,,\n2015,5,19,\"DL\",\"1672\",\"BUF\",\"ATL\",11.00,-3.00,0.00,\"\",0.00,114.00,99.00,712.00,,,,,,\n2015,5,19,\"DL\",\"1685\",\"LGA\",\"MCO\",82.00,64.00,0.00,\"\",0.00,157.00,132.00,950.00,4.00,0.00,0.00,0.00,60.00,\n2015,5,19,\"DL\",\"1697\",\"LGA\",\"ATL\",86.00,67.00,0.00,\"\",0.00,139.00,107.00,762.00,5.00,0.00,4.00,0.00,58.00,\n2015,5,19,\"DL\",\"1728\",\"LAS\",\"JFK\",65.00,26.00,0.00,\"\",0.00,262.00,243.00,2248.00,4.00,0.00,0.00,0.00,22.00,\n2015,5,19,\"DL\",\"1750\",\"ATL\",\"JFK\",-1.00,15.00,0.00,\"\",0.00,165.00,141.00,760.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,19,\"DL\",\"1762\",\"LAX\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,312.00,287.00,2475.00,,,,,,\n2015,5,19,\"DL\",\"1779\",\"LGA\",\"MSY\",41.00,26.00,0.00,\"\",0.00,184.00,154.00,1183.00,1.00,0.00,0.00,0.00,25.00,\n2015,5,19,\"DL\",\"1786\",\"ATL\",\"LGA\",115.00,102.00,0.00,\"\",0.00,128.00,103.00,762.00,27.00,0.00,75.00,0.00,0.00,\n2015,5,19,\"DL\",\"1787\",\"FLL\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,166.00,142.00,1069.00,,,,,,\n2015,5,19,\"DL\",\"1796\",\"LGA\",\"MSP\",75.00,79.00,0.00,\"\",0.00,202.00,158.00,1020.00,15.00,0.00,4.00,0.00,60.00,\n2015,5,20,\"DL\",\"2190\",\"JFK\",\"MIA\",-4.00,-19.00,0.00,\"\",0.00,187.00,143.00,1089.00,,,,,,\n2015,5,20,\"DL\",\"2214\",\"ATL\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,119.00,101.00,762.00,,,,,,\n2015,5,20,\"DL\",\"2217\",\"JFK\",\"BOS\",-5.00,-43.00,0.00,\"\",0.00,54.00,38.00,187.00,,,,,,\n2015,5,20,\"DL\",\"2230\",\"CHS\",\"JFK\",46.00,42.00,0.00,\"\",0.00,125.00,86.00,636.00,42.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"DL\",\"2231\",\"DTW\",\"LGA\",5.00,14.00,0.00,\"\",0.00,117.00,82.00,502.00,,,,,,\n2015,5,20,\"DL\",\"2240\",\"SFO\",\"JFK\",39.00,9.00,0.00,\"\",0.00,308.00,277.00,2586.00,,,,,,\n2015,5,20,\"DL\",\"2248\",\"DTW\",\"LGA\",1.00,-14.00,0.00,\"\",0.00,93.00,70.00,502.00,,,,,,\n2015,5,20,\"DL\",\"2262\",\"LAX\",\"JFK\",19.00,-35.00,0.00,\"\",0.00,280.00,261.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"2263\",\"JFK\",\"MIA\",-2.00,-20.00,0.00,\"\",0.00,192.00,150.00,1089.00,,,,,,\n2015,5,20,\"DL\",\"2270\",\"LGA\",\"RSW\",-6.00,8.00,0.00,\"\",0.00,210.00,158.00,1080.00,,,,,,\n2015,5,20,\"DL\",\"2276\",\"MCO\",\"JFK\",30.00,31.00,0.00,\"\",0.00,168.00,126.00,944.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,20,\"DL\",\"2277\",\"JFK\",\"TPA\",52.00,23.00,0.00,\"\",0.00,164.00,140.00,1005.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"DL\",\"2280\",\"LGA\",\"TPA\",-2.00,10.00,0.00,\"\",0.00,186.00,142.00,1010.00,,,,,,\n2015,5,20,\"DL\",\"2282\",\"LGA\",\"MCO\",-5.00,29.00,0.00,\"\",0.00,210.00,128.00,950.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,20,\"DL\",\"2285\",\"LGA\",\"MCO\",4.00,-3.00,0.00,\"\",0.00,156.00,125.00,950.00,,,,,,\n2015,5,20,\"DL\",\"2292\",\"JFK\",\"PBI\",-11.00,-10.00,0.00,\"\",0.00,188.00,138.00,1028.00,,,,,,\n2015,5,20,\"DL\",\"2296\",\"MSP\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,152.00,121.00,1020.00,,,,,,\n2015,5,20,\"DL\",\"2301\",\"JFK\",\"SAT\",-3.00,-14.00,0.00,\"\",0.00,258.00,224.00,1587.00,,,,,,\n2015,5,20,\"DL\",\"2311\",\"JFK\",\"MIA\",61.00,30.00,0.00,\"\",0.00,175.00,143.00,1089.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"DL\",\"2312\",\"JFK\",\"DTW\",-1.00,-14.00,0.00,\"\",0.00,127.00,94.00,509.00,,,,,,\n2015,5,20,\"DL\",\"2317\",\"PBI\",\"LGA\",-7.00,-24.00,0.00,\"\",0.00,156.00,136.00,1035.00,,,,,,\n2015,5,20,\"DL\",\"2319\",\"LGA\",\"MSP\",-5.00,2.00,0.00,\"\",0.00,202.00,156.00,1020.00,,,,,,\n2015,5,20,\"DL\",\"2331\",\"LGA\",\"DTW\",-4.00,30.00,0.00,\"\",0.00,158.00,79.00,502.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,20,\"DL\",\"2340\",\"JFK\",\"MCO\",-6.00,-4.00,0.00,\"\",0.00,192.00,153.00,944.00,,,,,,\n2015,5,20,\"DL\",\"2349\",\"DTW\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,90.00,70.00,502.00,,,,,,\n2015,5,20,\"DL\",\"2350\",\"ATL\",\"JFK\",-2.00,-3.00,0.00,\"\",0.00,134.00,107.00,760.00,,,,,,\n2015,5,20,\"DL\",\"2352\",\"LAS\",\"JFK\",-2.00,-37.00,0.00,\"\",0.00,278.00,243.00,2248.00,,,,,,\n2015,5,20,\"DL\",\"2354\",\"JFK\",\"ATL\",-3.00,-17.00,0.00,\"\",0.00,153.00,103.00,760.00,,,,,,\n2015,5,20,\"DL\",\"2362\",\"LAX\",\"JFK\",11.00,-24.00,0.00,\"\",0.00,295.00,266.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"2382\",\"JFK\",\"FLL\",-1.00,-29.00,0.00,\"\",0.00,173.00,145.00,1069.00,,,,,,\n2015,5,20,\"DL\",\"2386\",\"ATL\",\"LGA\",4.00,-7.00,0.00,\"\",0.00,127.00,97.00,762.00,,,,,,\n2015,5,20,\"DL\",\"2390\",\"JFK\",\"ATL\",-2.00,-19.00,0.00,\"\",0.00,155.00,110.00,760.00,,,,,,\n2015,5,20,\"DL\",\"2395\",\"LGA\",\"PBI\",-2.00,-17.00,0.00,\"\",0.00,165.00,135.00,1035.00,,,,,,\n2015,5,20,\"DL\",\"2404\",\"SAN\",\"JFK\",-2.00,-45.00,0.00,\"\",0.00,291.00,264.00,2446.00,,,,,,\n2015,5,20,\"DL\",\"2405\",\"PHX\",\"JFK\",48.00,27.00,0.00,\"\",0.00,274.00,236.00,2153.00,0.00,0.00,0.00,26.00,1.00,\n2015,5,20,\"DL\",\"2406\",\"TPA\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,144.00,128.00,1010.00,,,,,,\n2015,5,20,\"DL\",\"2413\",\"MIA\",\"LGA\",-9.00,-22.00,0.00,\"\",0.00,167.00,141.00,1096.00,,,,,,\n2015,5,20,\"DL\",\"2432\",\"DTW\",\"SYR\",14.00,5.00,0.00,\"\",0.00,70.00,49.00,374.00,,,,,,\n2015,5,20,\"DL\",\"2435\",\"JFK\",\"FLL\",-12.00,-48.00,0.00,\"\",0.00,167.00,142.00,1069.00,,,,,,\n2015,5,20,\"DL\",\"2441\",\"JFK\",\"ATL\",56.00,22.00,0.00,\"\",0.00,135.00,107.00,760.00,10.00,0.00,0.00,0.00,12.00,\n2015,5,20,\"DL\",\"2450\",\"MCO\",\"LGA\",-2.00,-24.00,0.00,\"\",0.00,134.00,121.00,950.00,,,,,,\n2015,5,20,\"DL\",\"2464\",\"TPA\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,148.00,132.00,1005.00,,,,,,\n2015,5,20,\"DL\",\"2466\",\"ATL\",\"SYR\",-5.00,-21.00,0.00,\"\",0.00,121.00,101.00,794.00,,,,,,\n2015,5,20,\"DL\",\"2466\",\"SYR\",\"ATL\",-8.00,-26.00,0.00,\"\",0.00,132.00,113.00,794.00,,,,,,\n2015,5,20,\"DL\",\"2473\",\"ATL\",\"BUF\",-1.00,-8.00,0.00,\"\",0.00,121.00,94.00,712.00,,,,,,\n2015,5,20,\"DL\",\"2474\",\"JFK\",\"DEN\",30.00,6.00,0.00,\"\",0.00,260.00,243.00,1626.00,,,,,,\n2015,5,20,\"DL\",\"2495\",\"MIA\",\"JFK\",241.00,219.00,0.00,\"\",0.00,166.00,138.00,1089.00,219.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"DL\",\"2496\",\"ATL\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,127.00,102.00,762.00,,,,,,\n2015,5,20,\"DL\",\"2498\",\"FLL\",\"LGA\",-7.00,-26.00,0.00,\"\",0.00,164.00,141.00,1076.00,,,,,,\n2015,5,20,\"DL\",\"2502\",\"FLL\",\"LGA\",7.00,-2.00,0.00,\"\",0.00,172.00,146.00,1076.00,,,,,,\n2015,5,20,\"DL\",\"2521\",\"SFO\",\"JFK\",82.00,37.00,0.00,\"\",0.00,296.00,270.00,2586.00,5.00,0.00,0.00,0.00,32.00,\n2015,5,20,\"DL\",\"2542\",\"JFK\",\"AUS\",-2.00,-10.00,0.00,\"\",0.00,256.00,207.00,1521.00,,,,,,\n2015,5,20,\"DL\",\"2554\",\"DEN\",\"JFK\",60.00,22.00,0.00,\"\",0.00,203.00,171.00,1626.00,4.00,0.00,0.00,0.00,18.00,\n2015,5,20,\"DL\",\"2565\",\"JFK\",\"MSP\",-4.00,-42.00,0.00,\"\",0.00,171.00,150.00,1029.00,,,,,,\n2015,5,20,\"DL\",\"2567\",\"DTW\",\"ALB\",-4.00,-6.00,0.00,\"\",0.00,86.00,62.00,489.00,,,,,,\n2015,5,20,\"DL\",\"2569\",\"JFK\",\"PHX\",-6.00,-29.00,0.00,\"\",0.00,320.00,298.00,2153.00,,,,,,\n2015,5,20,\"DL\",\"2577\",\"JFK\",\"FLL\",60.00,23.00,0.00,\"\",0.00,168.00,143.00,1069.00,11.00,0.00,0.00,0.00,12.00,\n2015,5,20,\"DL\",\"2593\",\"SAT\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,224.00,205.00,1587.00,,,,,,\n2015,5,20,\"DL\",\"2594\",\"DEN\",\"LGA\",13.00,-28.00,0.00,\"\",0.00,195.00,177.00,1620.00,,,,,,\n2015,5,20,\"DL\",\"2595\",\"FLL\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,166.00,142.00,1076.00,,,,,,\n2015,5,20,\"DL\",\"2596\",\"PBI\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,157.00,136.00,1035.00,,,,,,\n2015,5,20,\"DL\",\"2622\",\"ROC\",\"DTW\",-1.00,-11.00,0.00,\"\",0.00,72.00,55.00,296.00,,,,,,\n2015,5,20,\"DL\",\"2632\",\"JFK\",\"MCO\",-2.00,4.00,0.00,\"\",0.00,189.00,130.00,944.00,,,,,,\n2015,5,20,\"DL\",\"2634\",\"JFK\",\"BUF\",-1.00,-18.00,0.00,\"\",0.00,86.00,57.00,301.00,,,,,,\n2015,5,20,\"DL\",\"2645\",\"JFK\",\"RSW\",-12.00,-22.00,0.00,\"\",0.00,191.00,156.00,1074.00,,,,,,\n2015,5,20,\"DL\",\"2649\",\"JFK\",\"TPA\",-2.00,-20.00,0.00,\"\",0.00,170.00,144.00,1005.00,,,,,,\n2015,5,20,\"DL\",\"2650\",\"TPA\",\"JFK\",10.00,11.00,0.00,\"\",0.00,169.00,149.00,1005.00,,,,,,\n2015,5,20,\"DL\",\"2652\",\"TPA\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,164.00,130.00,1005.00,,,,,,\n2015,5,20,\"DL\",\"2653\",\"MCO\",\"JFK\",14.00,57.00,0.00,\"\",0.00,209.00,124.00,944.00,0.00,0.00,57.00,0.00,0.00,\n2015,5,20,\"DL\",\"2665\",\"BOS\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,76.00,48.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2666\",\"LGA\",\"BOS\",-2.00,-16.00,0.00,\"\",0.00,52.00,32.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2667\",\"BOS\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,77.00,43.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2668\",\"LGA\",\"BOS\",-2.00,-10.00,0.00,\"\",0.00,63.00,34.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2669\",\"BOS\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,67.00,45.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2670\",\"LGA\",\"BOS\",0.00,1.00,0.00,\"\",0.00,68.00,35.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2671\",\"BOS\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,70.00,45.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2672\",\"LGA\",\"BOS\",1.00,15.00,0.00,\"\",0.00,96.00,37.00,184.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,20,\"DL\",\"2673\",\"BOS\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,73.00,49.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2674\",\"LGA\",\"BOS\",-2.00,6.00,0.00,\"\",0.00,91.00,38.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2675\",\"BOS\",\"LGA\",15.00,9.00,0.00,\"\",0.00,69.00,46.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2676\",\"LGA\",\"BOS\",-1.00,4.00,0.00,\"\",0.00,81.00,40.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2677\",\"BOS\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,71.00,46.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2678\",\"LGA\",\"BOS\",-3.00,-8.00,0.00,\"\",0.00,78.00,38.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2679\",\"BOS\",\"LGA\",13.00,3.00,0.00,\"\",0.00,67.00,42.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2680\",\"LGA\",\"BOS\",5.00,-7.00,0.00,\"\",0.00,67.00,36.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2681\",\"BOS\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,72.00,47.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2682\",\"LGA\",\"BOS\",-2.00,-8.00,0.00,\"\",0.00,66.00,36.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2683\",\"BOS\",\"LGA\",-4.00,13.00,0.00,\"\",0.00,91.00,52.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2684\",\"LGA\",\"BOS\",0.00,-1.00,0.00,\"\",0.00,74.00,38.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2685\",\"BOS\",\"LGA\",-7.00,-7.00,0.00,\"\",0.00,72.00,47.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2686\",\"LGA\",\"BOS\",-1.00,-1.00,0.00,\"\",0.00,82.00,38.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2687\",\"BOS\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,75.00,46.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2688\",\"LGA\",\"BOS\",8.00,24.00,0.00,\"\",0.00,99.00,42.00,184.00,1.00,0.00,16.00,0.00,7.00,\n2015,5,20,\"DL\",\"2689\",\"BOS\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,78.00,48.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2690\",\"LGA\",\"BOS\",-1.00,16.00,0.00,\"\",0.00,102.00,37.00,184.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,20,\"DL\",\"2691\",\"BOS\",\"LGA\",25.00,27.00,0.00,\"\",0.00,79.00,42.00,184.00,3.00,0.00,2.00,0.00,22.00,\n2015,5,20,\"DL\",\"2692\",\"LGA\",\"BOS\",0.00,23.00,0.00,\"\",0.00,102.00,40.00,184.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,20,\"DL\",\"2693\",\"BOS\",\"LGA\",14.00,0.00,0.00,\"\",0.00,64.00,40.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2694\",\"LGA\",\"BOS\",-2.00,15.00,0.00,\"\",0.00,95.00,36.00,184.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,20,\"DL\",\"2696\",\"LGA\",\"BOS\",-1.00,8.00,0.00,\"\",0.00,77.00,34.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2699\",\"BOS\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,81.00,47.00,184.00,,,,,,\n2015,5,20,\"DL\",\"2785\",\"JFK\",\"CHS\",-6.00,-2.00,0.00,\"\",0.00,140.00,121.00,636.00,,,,,,\n2015,5,21,\"DL\",\"42\",\"MIA\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,186.00,152.00,1089.00,,,,,,\n2015,5,19,\"DL\",\"2674\",\"LGA\",\"BOS\",10.00,-8.00,0.00,\"\",0.00,65.00,39.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2675\",\"BOS\",\"LGA\",245.00,236.00,0.00,\"\",0.00,66.00,42.00,184.00,0.00,0.00,21.00,0.00,215.00,\n2015,5,19,\"DL\",\"2676\",\"LGA\",\"BOS\",8.00,9.00,0.00,\"\",0.00,77.00,49.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2677\",\"BOS\",\"LGA\",0.00,5.00,0.00,\"\",0.00,80.00,52.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2678\",\"LGA\",\"BOS\",28.00,13.00,0.00,\"\",0.00,68.00,41.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2679\",\"BOS\",\"LGA\",4.00,11.00,0.00,\"\",0.00,84.00,49.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2680\",\"LGA\",\"BOS\",42.00,50.00,0.00,\"\",0.00,87.00,43.00,184.00,42.00,0.00,8.00,0.00,0.00,\n2015,5,19,\"DL\",\"2681\",\"BOS\",\"LGA\",60.00,57.00,0.00,\"\",0.00,74.00,42.00,184.00,0.00,0.00,51.00,0.00,6.00,\n2015,5,19,\"DL\",\"2682\",\"LGA\",\"BOS\",-1.00,0.00,0.00,\"\",0.00,73.00,39.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2683\",\"BOS\",\"LGA\",39.00,39.00,0.00,\"\",0.00,74.00,43.00,184.00,0.00,0.00,1.00,0.00,38.00,\n2015,5,19,\"DL\",\"2684\",\"LGA\",\"BOS\",42.00,35.00,0.00,\"\",0.00,68.00,42.00,184.00,9.00,0.00,26.00,0.00,0.00,\n2015,5,19,\"DL\",\"2685\",\"BOS\",\"LGA\",-6.00,10.00,0.00,\"\",0.00,88.00,43.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2686\",\"LGA\",\"BOS\",56.00,72.00,0.00,\"\",0.00,98.00,46.00,184.00,2.00,0.00,16.00,0.00,54.00,\n2015,5,19,\"DL\",\"2687\",\"BOS\",\"LGA\",29.00,16.00,0.00,\"\",0.00,63.00,41.00,184.00,3.00,0.00,0.00,0.00,13.00,\n2015,5,19,\"DL\",\"2688\",\"LGA\",\"BOS\",55.00,63.00,0.00,\"\",0.00,91.00,43.00,184.00,22.00,0.00,8.00,0.00,33.00,\n2015,5,19,\"DL\",\"2689\",\"BOS\",\"LGA\",218.00,240.00,0.00,\"\",0.00,102.00,59.00,184.00,154.00,0.00,22.00,0.00,64.00,\n2015,5,19,\"DL\",\"2690\",\"LGA\",\"BOS\",5.00,12.00,0.00,\"\",0.00,92.00,39.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2691\",\"BOS\",\"LGA\",61.00,60.00,0.00,\"\",0.00,76.00,40.00,184.00,5.00,0.00,0.00,0.00,55.00,\n2015,5,19,\"DL\",\"2692\",\"LGA\",\"BOS\",15.00,10.00,0.00,\"\",0.00,74.00,41.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2693\",\"BOS\",\"LGA\",11.00,8.00,0.00,\"\",0.00,75.00,46.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2694\",\"LGA\",\"BOS\",224.00,199.00,0.00,\"\",0.00,53.00,39.00,184.00,199.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"DL\",\"2696\",\"LGA\",\"BOS\",0.00,26.00,0.00,\"\",0.00,94.00,44.00,184.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,19,\"DL\",\"2699\",\"BOS\",\"LGA\",7.00,-3.00,0.00,\"\",0.00,66.00,43.00,184.00,,,,,,\n2015,5,19,\"DL\",\"2785\",\"JFK\",\"CHS\",-1.00,10.00,0.00,\"\",0.00,147.00,99.00,636.00,,,,,,\n2015,5,20,\"DL\",\"42\",\"MIA\",\"JFK\",2.00,47.00,0.00,\"\",0.00,234.00,142.00,1089.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,20,\"DL\",\"208\",\"JFK\",\"MCO\",36.00,17.00,0.00,\"\",0.00,168.00,131.00,944.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"DL\",\"221\",\"LGA\",\"ATL\",-1.00,11.00,0.00,\"\",0.00,177.00,113.00,762.00,,,,,,\n2015,5,20,\"DL\",\"245\",\"JFK\",\"SLC\",-5.00,-13.00,0.00,\"\",0.00,321.00,289.00,1990.00,,,,,,\n2015,5,20,\"DL\",\"326\",\"SJU\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,231.00,209.00,1598.00,,,,,,\n2015,5,20,\"DL\",\"332\",\"SJU\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,232.00,211.00,1598.00,,,,,,\n2015,5,20,\"DL\",\"333\",\"MSP\",\"LGA\",-2.00,-34.00,0.00,\"\",0.00,131.00,117.00,1020.00,,,,,,\n2015,5,20,\"DL\",\"342\",\"SFO\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,318.00,275.00,2586.00,,,,,,\n2015,5,20,\"DL\",\"347\",\"LGA\",\"ATL\",-5.00,-18.00,0.00,\"\",0.00,145.00,111.00,762.00,,,,,,\n2015,5,20,\"DL\",\"348\",\"SJU\",\"JFK\",-8.00,-26.00,0.00,\"\",0.00,224.00,206.00,1598.00,,,,,,\n2015,5,20,\"DL\",\"350\",\"LGA\",\"ATL\",-4.00,-24.00,0.00,\"\",0.00,133.00,110.00,762.00,,,,,,\n2015,5,20,\"DL\",\"400\",\"PDX\",\"JFK\",0.00,-22.00,0.00,\"\",0.00,307.00,284.00,2454.00,,,,,,\n2015,5,20,\"DL\",\"401\",\"AUS\",\"JFK\",0.00,-40.00,0.00,\"\",0.00,199.00,185.00,1521.00,,,,,,\n2015,5,20,\"DL\",\"403\",\"PDX\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,319.00,294.00,2454.00,,,,,,\n2015,5,20,\"DL\",\"404\",\"JFK\",\"ATL\",10.00,-12.00,0.00,\"\",0.00,147.00,108.00,760.00,,,,,,\n2015,5,20,\"DL\",\"405\",\"JFK\",\"TPA\",-11.00,-3.00,0.00,\"\",0.00,179.00,137.00,1005.00,,,,,,\n2015,5,20,\"DL\",\"407\",\"MCO\",\"JFK\",3.00,-15.00,0.00,\"\",0.00,151.00,126.00,944.00,,,,,,\n2015,5,20,\"DL\",\"408\",\"JFK\",\"SLC\",-1.00,18.00,0.00,\"\",0.00,324.00,303.00,1990.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,20,\"DL\",\"409\",\"JFK\",\"SJU\",-3.00,-33.00,0.00,\"\",0.00,217.00,191.00,1598.00,,,,,,\n2015,5,20,\"DL\",\"410\",\"MSP\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,157.00,122.00,1029.00,,,,,,\n2015,5,20,\"DL\",\"412\",\"LAX\",\"JFK\",91.00,50.00,0.00,\"\",0.00,298.00,266.00,2475.00,36.00,0.00,0.00,0.00,14.00,\n2015,5,20,\"DL\",\"413\",\"JFK\",\"PDX\",-4.00,13.00,0.00,\"\",0.00,387.00,343.00,2454.00,,,,,,\n2015,5,20,\"DL\",\"414\",\"SFO\",\"JFK\",-2.00,-50.00,0.00,\"\",0.00,297.00,276.00,2586.00,,,,,,\n2015,5,20,\"DL\",\"415\",\"JFK\",\"SFO\",49.00,39.00,0.00,\"\",0.00,398.00,368.00,2586.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,20,\"DL\",\"417\",\"JFK\",\"SEA\",-5.00,-35.00,0.00,\"\",0.00,352.00,319.00,2422.00,,,,,,\n2015,5,20,\"DL\",\"418\",\"SEA\",\"JFK\",150.00,136.00,0.00,\"\",0.00,314.00,272.00,2422.00,136.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"DL\",\"419\",\"JFK\",\"SEA\",15.00,-13.00,0.00,\"\",0.00,351.00,323.00,2422.00,,,,,,\n2015,5,20,\"DL\",\"420\",\"JFK\",\"LAX\",15.00,-10.00,0.00,\"\",0.00,373.00,340.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"422\",\"JFK\",\"LAX\",-2.00,-3.00,0.00,\"\",0.00,379.00,331.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"423\",\"JFK\",\"LAX\",4.00,4.00,0.00,\"\",0.00,373.00,347.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"424\",\"JFK\",\"LAX\",-4.00,3.00,0.00,\"\",0.00,377.00,329.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"426\",\"JFK\",\"MCO\",-4.00,-1.00,0.00,\"\",0.00,175.00,143.00,944.00,,,,,,\n2015,5,20,\"DL\",\"427\",\"JFK\",\"LAX\",5.00,-24.00,0.00,\"\",0.00,359.00,329.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"428\",\"JFK\",\"FLL\",-4.00,-25.00,0.00,\"\",0.00,163.00,143.00,1069.00,,,,,,\n2015,5,20,\"DL\",\"430\",\"JFK\",\"SFO\",-8.00,24.00,0.00,\"\",0.00,416.00,369.00,2586.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,20,\"DL\",\"431\",\"JFK\",\"SFO\",49.00,72.00,0.00,\"\",0.00,432.00,356.00,2586.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,20,\"DL\",\"434\",\"JFK\",\"SFO\",-4.00,6.00,0.00,\"\",0.00,414.00,371.00,2586.00,,,,,,\n2015,5,20,\"DL\",\"435\",\"JFK\",\"SFO\",14.00,7.00,0.00,\"\",0.00,397.00,357.00,2586.00,,,,,,\n2015,5,20,\"DL\",\"436\",\"JFK\",\"LAS\",-3.00,30.00,0.00,\"\",0.00,383.00,315.00,2248.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,20,\"DL\",\"437\",\"JFK\",\"BOS\",-5.00,-22.00,0.00,\"\",0.00,60.00,40.00,187.00,,,,,,\n2015,5,20,\"DL\",\"438\",\"JFK\",\"MCO\",-3.00,-19.00,0.00,\"\",0.00,152.00,132.00,944.00,,,,,,\n2015,5,20,\"DL\",\"439\",\"JFK\",\"MSP\",-7.00,-18.00,0.00,\"\",0.00,181.00,158.00,1029.00,,,,,,\n2015,5,20,\"DL\",\"442\",\"JFK\",\"AUS\",35.00,23.00,0.00,\"\",0.00,252.00,213.00,1521.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"DL\",\"443\",\"JFK\",\"LAS\",-1.00,-7.00,0.00,\"\",0.00,348.00,322.00,2248.00,,,,,,\n2015,5,20,\"DL\",\"444\",\"SLC\",\"JFK\",16.00,-16.00,0.00,\"\",0.00,248.00,217.00,1990.00,,,,,,\n2015,5,20,\"DL\",\"445\",\"JFK\",\"PDX\",-1.00,-35.00,0.00,\"\",0.00,344.00,322.00,2454.00,,,,,,\n2015,5,20,\"DL\",\"447\",\"JFK\",\"LAX\",26.00,14.00,0.00,\"\",0.00,378.00,336.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"448\",\"JFK\",\"SEA\",7.00,1.00,0.00,\"\",0.00,354.00,327.00,2422.00,,,,,,\n2015,5,20,\"DL\",\"451\",\"JFK\",\"SJU\",0.00,-37.00,0.00,\"\",0.00,205.00,188.00,1598.00,,,,,,\n2015,5,20,\"DL\",\"453\",\"JFK\",\"CHS\",-6.00,-24.00,0.00,\"\",0.00,121.00,89.00,636.00,,,,,,\n2015,5,20,\"DL\",\"454\",\"JFK\",\"ATL\",-4.00,-33.00,0.00,\"\",0.00,123.00,102.00,760.00,,,,,,\n2015,5,20,\"DL\",\"455\",\"JFK\",\"SAN\",6.00,15.00,0.00,\"\",0.00,387.00,332.00,2446.00,6.00,0.00,9.00,0.00,0.00,\n2015,5,20,\"DL\",\"456\",\"JFK\",\"SEA\",-1.00,2.00,0.00,\"\",0.00,366.00,331.00,2422.00,,,,,,\n2015,5,20,\"DL\",\"459\",\"JFK\",\"SAN\",-2.00,33.00,0.00,\"\",0.00,410.00,350.00,2446.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,20,\"DL\",\"460\",\"JFK\",\"SLC\",0.00,-13.00,0.00,\"\",0.00,312.00,281.00,1990.00,,,,,,\n2015,5,20,\"DL\",\"463\",\"JFK\",\"PIT\",-2.00,-35.00,0.00,\"\",0.00,88.00,68.00,340.00,,,,,,\n2015,5,20,\"DL\",\"464\",\"JFK\",\"MIA\",4.00,23.00,0.00,\"\",0.00,200.00,147.00,1089.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,20,\"DL\",\"465\",\"JFK\",\"STT\",-7.00,-5.00,0.00,\"\",0.00,248.00,198.00,1623.00,,,,,,\n2015,5,20,\"DL\",\"466\",\"SLC\",\"JFK\",-1.00,-38.00,0.00,\"\",0.00,240.00,217.00,1990.00,,,,,,\n2015,5,20,\"DL\",\"468\",\"SFO\",\"JFK\",29.00,-19.00,0.00,\"\",0.00,301.00,281.00,2586.00,,,,,,\n2015,5,20,\"DL\",\"469\",\"JFK\",\"SFO\",-4.00,13.00,0.00,\"\",0.00,407.00,370.00,2586.00,,,,,,\n2015,5,20,\"DL\",\"472\",\"JFK\",\"LAX\",2.00,16.00,0.00,\"\",0.00,399.00,331.00,2475.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,20,\"DL\",\"476\",\"LAX\",\"JFK\",3.00,-37.00,0.00,\"\",0.00,295.00,266.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"477\",\"JFK\",\"LAX\",17.00,-6.00,0.00,\"\",0.00,372.00,337.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"478\",\"ATL\",\"JFK\",16.00,-12.00,0.00,\"\",0.00,124.00,103.00,760.00,,,,,,\n2015,5,20,\"DL\",\"480\",\"JFK\",\"SJU\",-4.00,-14.00,0.00,\"\",0.00,224.00,199.00,1598.00,,,,,,\n2015,5,20,\"DL\",\"482\",\"JFK\",\"LAS\",-8.00,-10.00,0.00,\"\",0.00,351.00,315.00,2248.00,,,,,,\n2015,5,20,\"DL\",\"486\",\"JFK\",\"LAS\",-6.00,11.00,0.00,\"\",0.00,349.00,326.00,2248.00,,,,,,\n2015,5,20,\"DL\",\"488\",\"JFK\",\"SJU\",-5.00,-13.00,0.00,\"\",0.00,219.00,192.00,1598.00,,,,,,\n2015,5,20,\"DL\",\"491\",\"JFK\",\"SJU\",-2.00,3.00,0.00,\"\",0.00,243.00,202.00,1598.00,,,,,,\n2015,5,20,\"DL\",\"494\",\"JFK\",\"LAS\",-1.00,-12.00,0.00,\"\",0.00,345.00,302.00,2248.00,,,,,,\n2015,5,20,\"DL\",\"496\",\"JFK\",\"BOS\",-10.00,-33.00,0.00,\"\",0.00,60.00,34.00,187.00,,,,,,\n2015,5,20,\"DL\",\"497\",\"JFK\",\"ATL\",3.00,-18.00,0.00,\"\",0.00,132.00,107.00,760.00,,,,,,\n2015,5,20,\"DL\",\"498\",\"JFK\",\"SFO\",25.00,26.00,0.00,\"\",0.00,409.00,369.00,2586.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,20,\"DL\",\"499\",\"JFK\",\"SLC\",0.00,10.00,0.00,\"\",0.00,320.00,273.00,1990.00,,,,,,\n2015,5,20,\"DL\",\"511\",\"SJU\",\"JFK\",-7.00,-28.00,0.00,\"\",0.00,228.00,203.00,1598.00,,,,,,\n2015,5,20,\"DL\",\"527\",\"RSW\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,157.00,140.00,1074.00,,,,,,\n2015,5,20,\"DL\",\"528\",\"LGA\",\"MSP\",-2.00,9.00,0.00,\"\",0.00,196.00,157.00,1020.00,,,,,,\n2015,5,20,\"DL\",\"541\",\"LAS\",\"JFK\",0.00,-45.00,0.00,\"\",0.00,254.00,236.00,2248.00,,,,,,\n2015,5,20,\"DL\",\"544\",\"ALB\",\"ATL\",-1.00,-21.00,0.00,\"\",0.00,135.00,123.00,853.00,,,,,,\n2015,5,20,\"DL\",\"582\",\"DTW\",\"LGA\",20.00,24.00,0.00,\"\",0.00,111.00,76.00,502.00,0.00,0.00,4.00,0.00,20.00,\n2015,5,20,\"DL\",\"583\",\"LGA\",\"DTW\",4.00,13.00,0.00,\"\",0.00,123.00,96.00,502.00,,,,,,\n2015,5,20,\"DL\",\"662\",\"BUF\",\"MSP\",-3.00,-20.00,0.00,\"\",0.00,127.00,112.00,735.00,,,,,,\n2015,5,20,\"DL\",\"664\",\"TPA\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,149.00,128.00,1010.00,,,,,,\n2015,5,20,\"DL\",\"665\",\"ATL\",\"ALB\",-1.00,-8.00,0.00,\"\",0.00,133.00,109.00,853.00,,,,,,\n2015,5,20,\"DL\",\"665\",\"ALB\",\"ATL\",-7.00,-19.00,0.00,\"\",0.00,140.00,123.00,853.00,,,,,,\n2015,5,20,\"DL\",\"676\",\"STT\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,231.00,211.00,1623.00,,,,,,\n2015,5,20,\"DL\",\"714\",\"DTW\",\"LGA\",-5.00,-26.00,0.00,\"\",0.00,85.00,66.00,502.00,,,,,,\n2015,5,20,\"DL\",\"723\",\"ATL\",\"BUF\",11.00,-3.00,0.00,\"\",0.00,113.00,92.00,712.00,,,,,,\n2015,5,20,\"DL\",\"723\",\"BUF\",\"ATL\",9.00,1.00,0.00,\"\",0.00,123.00,99.00,712.00,,,,,,\n2015,5,20,\"DL\",\"725\",\"ATL\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,123.00,100.00,762.00,,,,,,\n2015,5,20,\"DL\",\"729\",\"LAS\",\"JFK\",18.00,-12.00,0.00,\"\",0.00,275.00,244.00,2248.00,,,,,,\n2015,5,20,\"DL\",\"731\",\"LGA\",\"DTW\",0.00,7.00,0.00,\"\",0.00,121.00,92.00,502.00,,,,,,\n2015,5,20,\"DL\",\"750\",\"BOS\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,70.00,43.00,187.00,,,,,,\n2015,5,20,\"DL\",\"763\",\"BOS\",\"JFK\",-2.00,6.00,0.00,\"\",0.00,86.00,56.00,187.00,,,,,,\n2015,5,20,\"DL\",\"772\",\"PBI\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,157.00,137.00,1035.00,,,,,,\n2015,5,20,\"DL\",\"781\",\"LGA\",\"ATL\",0.00,-9.00,0.00,\"\",0.00,153.00,105.00,762.00,,,,,,\n2015,5,20,\"DL\",\"782\",\"MIA\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,177.00,141.00,1089.00,,,,,,\n2015,5,20,\"DL\",\"787\",\"MCO\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,160.00,123.00,944.00,,,,,,\n2015,5,20,\"DL\",\"789\",\"MIA\",\"LGA\",150.00,132.00,0.00,\"\",0.00,170.00,141.00,1096.00,132.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"DL\",\"791\",\"LAX\",\"JFK\",0.00,-28.00,0.00,\"\",0.00,302.00,280.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"792\",\"PBI\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,160.00,134.00,1028.00,,,,,,\n2015,5,20,\"DL\",\"793\",\"BOS\",\"JFK\",40.00,34.00,0.00,\"\",0.00,88.00,47.00,187.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,20,\"DL\",\"802\",\"ATL\",\"LGA\",24.00,23.00,0.00,\"\",0.00,144.00,100.00,762.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"DL\",\"804\",\"LGA\",\"MSP\",9.00,25.00,0.00,\"\",0.00,210.00,149.00,1020.00,9.00,0.00,16.00,0.00,0.00,\n2015,5,20,\"DL\",\"856\",\"SAN\",\"JFK\",25.00,-14.00,0.00,\"\",0.00,298.00,267.00,2446.00,,,,,,\n2015,5,20,\"DL\",\"871\",\"MSP\",\"LGA\",-2.00,-27.00,0.00,\"\",0.00,139.00,126.00,1020.00,,,,,,\n2015,5,20,\"DL\",\"874\",\"LGA\",\"MIA\",-3.00,-12.00,0.00,\"\",0.00,196.00,144.00,1096.00,,,,,,\n2015,5,20,\"DL\",\"878\",\"RSW\",\"LGA\",-10.00,-16.00,0.00,\"\",0.00,166.00,144.00,1080.00,,,,,,\n2015,5,20,\"DL\",\"884\",\"LGA\",\"DEN\",-1.00,30.00,0.00,\"\",0.00,305.00,242.00,1620.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,20,\"DL\",\"889\",\"MSP\",\"LGA\",-9.00,-30.00,0.00,\"\",0.00,140.00,119.00,1020.00,,,,,,\n2015,5,20,\"DL\",\"904\",\"LGA\",\"ATL\",-1.00,-17.00,0.00,\"\",0.00,133.00,108.00,762.00,,,,,,\n2015,5,20,\"DL\",\"906\",\"ATL\",\"LGA\",3.00,-17.00,0.00,\"\",0.00,125.00,101.00,762.00,,,,,,\n2015,5,20,\"DL\",\"907\",\"ROC\",\"MSP\",-4.00,-20.00,0.00,\"\",0.00,135.00,118.00,783.00,,,,,,\n2015,5,20,\"DL\",\"909\",\"LGA\",\"MIA\",-5.00,13.00,0.00,\"\",0.00,212.00,172.00,1096.00,,,,,,\n2015,5,20,\"DL\",\"910\",\"MCO\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,150.00,127.00,950.00,,,,,,\n2015,5,20,\"DL\",\"913\",\"DTW\",\"ROC\",0.00,-8.00,0.00,\"\",0.00,67.00,46.00,296.00,,,,,,\n2015,5,20,\"DL\",\"913\",\"ROC\",\"DTW\",5.00,-1.00,0.00,\"\",0.00,75.00,50.00,296.00,,,,,,\n2015,5,20,\"DL\",\"928\",\"DEN\",\"LGA\",0.00,-48.00,0.00,\"\",0.00,188.00,170.00,1620.00,,,,,,\n2015,5,20,\"DL\",\"939\",\"MCO\",\"LGA\",26.00,10.00,0.00,\"\",0.00,147.00,125.00,950.00,,,,,,\n2015,5,20,\"DL\",\"964\",\"LGA\",\"ATL\",13.00,29.00,0.00,\"\",0.00,162.00,103.00,762.00,1.00,0.00,16.00,0.00,12.00,\n2015,5,20,\"DL\",\"965\",\"MCO\",\"LGA\",68.00,46.00,0.00,\"\",0.00,139.00,121.00,950.00,3.00,5.00,0.00,0.00,38.00,\n2015,5,20,\"DL\",\"971\",\"LGA\",\"DEN\",-2.00,30.00,0.00,\"\",0.00,299.00,249.00,1620.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,20,\"DL\",\"986\",\"ATL\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,129.00,111.00,762.00,,,,,,\n2015,5,20,\"DL\",\"997\",\"DTW\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,93.00,64.00,502.00,,,,,,\n2015,5,20,\"DL\",\"1088\",\"FLL\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,158.00,142.00,1076.00,,,,,,\n2015,5,20,\"DL\",\"1109\",\"SEA\",\"JFK\",11.00,-26.00,0.00,\"\",0.00,298.00,272.00,2422.00,,,,,,\n2015,5,20,\"DL\",\"1111\",\"ATL\",\"ROC\",-3.00,-5.00,0.00,\"\",0.00,128.00,93.00,749.00,,,,,,\n2015,5,20,\"DL\",\"1121\",\"PBI\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,173.00,132.00,1035.00,,,,,,\n2015,5,20,\"DL\",\"1131\",\"LGA\",\"FLL\",-5.00,2.00,0.00,\"\",0.00,199.00,142.00,1076.00,,,,,,\n2015,5,20,\"DL\",\"1145\",\"LGA\",\"DTW\",-3.00,-10.00,0.00,\"\",0.00,117.00,82.00,502.00,,,,,,\n2015,5,20,\"DL\",\"1155\",\"DTW\",\"ROC\",-3.00,-5.00,0.00,\"\",0.00,69.00,44.00,296.00,,,,,,\n2015,5,20,\"DL\",\"1159\",\"ATL\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,114.00,92.00,712.00,,,,,,\n2015,5,20,\"DL\",\"1159\",\"BUF\",\"ATL\",-5.00,-11.00,0.00,\"\",0.00,123.00,101.00,712.00,,,,,,\n2015,5,20,\"DL\",\"1162\",\"LAX\",\"JFK\",7.00,-30.00,0.00,\"\",0.00,288.00,258.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"1174\",\"LGA\",\"PBI\",-3.00,-15.00,0.00,\"\",0.00,168.00,139.00,1035.00,,,,,,\n2015,5,20,\"DL\",\"1176\",\"ATL\",\"BUF\",-1.00,-10.00,0.00,\"\",0.00,121.00,95.00,712.00,,,,,,\n2015,5,20,\"DL\",\"1176\",\"BUF\",\"ATL\",-4.00,-18.00,0.00,\"\",0.00,120.00,100.00,712.00,,,,,,\n2015,5,20,\"DL\",\"1186\",\"ATL\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,132.00,100.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1214\",\"LGA\",\"ATL\",-2.00,7.00,0.00,\"\",0.00,173.00,108.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1227\",\"PHX\",\"JFK\",-6.00,-41.00,0.00,\"\",0.00,255.00,231.00,2153.00,,,,,,\n2015,5,20,\"DL\",\"1242\",\"LGA\",\"PBI\",-5.00,-8.00,0.00,\"\",0.00,181.00,137.00,1035.00,,,,,,\n2015,5,20,\"DL\",\"1262\",\"LAX\",\"JFK\",6.00,-23.00,0.00,\"\",0.00,304.00,273.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"1264\",\"SLC\",\"JFK\",-4.00,-29.00,0.00,\"\",0.00,248.00,221.00,1990.00,,,,,,\n2015,5,20,\"DL\",\"1266\",\"BUF\",\"ATL\",-1.00,-12.00,0.00,\"\",0.00,111.00,96.00,712.00,,,,,,\n2015,5,20,\"DL\",\"1269\",\"LGA\",\"MIA\",-5.00,4.00,0.00,\"\",0.00,206.00,151.00,1096.00,,,,,,\n2015,5,20,\"DL\",\"1278\",\"MSP\",\"BUF\",-1.00,-14.00,0.00,\"\",0.00,106.00,94.00,735.00,,,,,,\n2015,5,20,\"DL\",\"1286\",\"ATL\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,124.00,99.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1288\",\"LGA\",\"FLL\",36.00,33.00,0.00,\"\",0.00,192.00,140.00,1076.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"DL\",\"1289\",\"LGA\",\"ATL\",-8.00,0.00,0.00,\"\",0.00,170.00,110.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1298\",\"LGA\",\"ATL\",-3.00,-14.00,0.00,\"\",0.00,150.00,107.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1306\",\"DTW\",\"LGA\",1.00,-7.00,0.00,\"\",0.00,99.00,68.00,502.00,,,,,,\n2015,5,20,\"DL\",\"1312\",\"TPA\",\"JFK\",13.00,5.00,0.00,\"\",0.00,166.00,130.00,1005.00,,,,,,\n2015,5,20,\"DL\",\"1335\",\"MIA\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,171.00,144.00,1096.00,,,,,,\n2015,5,20,\"DL\",\"1356\",\"BUF\",\"DTW\",-3.00,-7.00,0.00,\"\",0.00,67.00,48.00,241.00,,,,,,\n2015,5,20,\"DL\",\"1359\",\"MCO\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,149.00,129.00,950.00,,,,,,\n2015,5,21,\"DL\",\"1728\",\"LAS\",\"JFK\",9.00,-18.00,0.00,\"\",0.00,274.00,253.00,2248.00,,,,,,\n2015,5,21,\"DL\",\"1750\",\"ATL\",\"JFK\",0.00,11.00,0.00,\"\",0.00,160.00,104.00,760.00,,,,,,\n2015,5,21,\"DL\",\"1762\",\"LAX\",\"JFK\",15.00,-11.00,0.00,\"\",0.00,309.00,275.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"1779\",\"LGA\",\"MSY\",10.00,-5.00,0.00,\"\",0.00,184.00,162.00,1183.00,,,,,,\n2015,5,21,\"DL\",\"1786\",\"ATL\",\"LGA\",-2.00,-24.00,0.00,\"\",0.00,119.00,102.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1787\",\"FLL\",\"JFK\",-9.00,-9.00,0.00,\"\",0.00,186.00,154.00,1069.00,,,,,,\n2015,5,21,\"DL\",\"1796\",\"LGA\",\"MSP\",-1.00,-6.00,0.00,\"\",0.00,193.00,148.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"1830\",\"SLC\",\"JFK\",4.00,-26.00,0.00,\"\",0.00,246.00,224.00,1990.00,,,,,,\n2015,5,21,\"DL\",\"1841\",\"SJU\",\"JFK\",9.00,-6.00,0.00,\"\",0.00,232.00,206.00,1598.00,,,,,,\n2015,5,21,\"DL\",\"1848\",\"DTW\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,111.00,73.00,502.00,,,,,,\n2015,5,21,\"DL\",\"1849\",\"LGA\",\"ATL\",22.00,9.00,0.00,\"\",0.00,145.00,112.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1851\",\"CHS\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,108.00,81.00,636.00,,,,,,\n2015,5,21,\"DL\",\"1875\",\"LGA\",\"TPA\",-8.00,-15.00,0.00,\"\",0.00,173.00,147.00,1010.00,,,,,,\n2015,5,21,\"DL\",\"1879\",\"LGA\",\"FLL\",-3.00,-9.00,0.00,\"\",0.00,181.00,151.00,1076.00,,,,,,\n2015,5,21,\"DL\",\"1885\",\"LGA\",\"MCO\",2.00,-17.00,0.00,\"\",0.00,161.00,134.00,950.00,,,,,,\n2015,5,21,\"DL\",\"1886\",\"ATL\",\"LGA\",-3.00,24.00,0.00,\"\",0.00,177.00,97.00,762.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,21,\"DL\",\"1897\",\"LGA\",\"MCO\",4.00,8.00,0.00,\"\",0.00,178.00,135.00,950.00,,,,,,\n2015,5,21,\"DL\",\"1902\",\"LGA\",\"PBI\",-6.00,36.00,0.00,\"\",0.00,226.00,186.00,1035.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,21,\"DL\",\"1917\",\"MIA\",\"LGA\",30.00,11.00,0.00,\"\",0.00,165.00,146.00,1096.00,,,,,,\n2015,5,21,\"DL\",\"1919\",\"LGA\",\"MSP\",-4.00,-7.00,0.00,\"\",0.00,179.00,155.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"1930\",\"LGA\",\"MIA\",0.00,0.00,0.00,\"\",0.00,198.00,149.00,1096.00,,,,,,\n2015,5,21,\"DL\",\"1935\",\"LGA\",\"TPA\",-5.00,11.00,0.00,\"\",0.00,198.00,151.00,1010.00,,,,,,\n2015,5,21,\"DL\",\"1947\",\"FLL\",\"JFK\",16.00,2.00,0.00,\"\",0.00,170.00,141.00,1069.00,,,,,,\n2015,5,21,\"DL\",\"1948\",\"DTW\",\"LGA\",3.00,-7.00,0.00,\"\",0.00,97.00,73.00,502.00,,,,,,\n2015,5,21,\"DL\",\"1949\",\"TPA\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,144.00,126.00,1010.00,,,,,,\n2015,5,21,\"DL\",\"1953\",\"LGA\",\"FLL\",-1.00,-7.00,0.00,\"\",0.00,188.00,148.00,1076.00,,,,,,\n2015,5,21,\"DL\",\"1958\",\"PBI\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,171.00,150.00,1035.00,,,,,,\n2015,5,21,\"DL\",\"1969\",\"BUF\",\"JFK\",-2.00,18.00,0.00,\"\",0.00,110.00,69.00,301.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,21,\"DL\",\"1972\",\"AUS\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,211.00,194.00,1521.00,,,,,,\n2015,5,21,\"DL\",\"1974\",\"MIA\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,187.00,150.00,1096.00,,,,,,\n2015,5,21,\"DL\",\"1982\",\"LGA\",\"MIA\",-4.00,35.00,0.00,\"\",0.00,235.00,167.00,1096.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,21,\"DL\",\"1985\",\"ALB\",\"DTW\",-6.00,-10.00,0.00,\"\",0.00,97.00,81.00,489.00,,,,,,\n2015,5,21,\"DL\",\"1986\",\"ATL\",\"LGA\",13.00,-7.00,0.00,\"\",0.00,130.00,100.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1994\",\"PHX\",\"JFK\",-5.00,-33.00,0.00,\"\",0.00,264.00,233.00,2153.00,,,,,,\n2015,5,21,\"DL\",\"1996\",\"MSP\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,147.00,128.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"2003\",\"LGA\",\"MIA\",-4.00,-6.00,0.00,\"\",0.00,185.00,153.00,1096.00,,,,,,\n2015,5,21,\"DL\",\"2013\",\"ATL\",\"SYR\",-1.00,-6.00,0.00,\"\",0.00,130.00,96.00,794.00,,,,,,\n2015,5,21,\"DL\",\"2014\",\"SYR\",\"ATL\",-6.00,-9.00,0.00,\"\",0.00,136.00,113.00,794.00,,,,,,\n2015,5,21,\"DL\",\"2016\",\"LGA\",\"ATL\",0.00,-9.00,0.00,\"\",0.00,144.00,111.00,762.00,,,,,,\n2015,5,21,\"DL\",\"2022\",\"LGA\",\"FLL\",4.00,17.00,0.00,\"\",0.00,205.00,154.00,1076.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,21,\"DL\",\"2028\",\"FLL\",\"LGA\",-9.00,6.00,0.00,\"\",0.00,196.00,169.00,1076.00,,,,,,\n2015,5,21,\"DL\",\"2032\",\"MSP\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,152.00,132.00,1029.00,,,,,,\n2015,5,21,\"DL\",\"2037\",\"MCO\",\"LGA\",1.00,-5.00,0.00,\"\",0.00,151.00,125.00,950.00,,,,,,\n2015,5,21,\"DL\",\"2040\",\"SFO\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,320.00,290.00,2586.00,,,,,,\n2015,5,21,\"DL\",\"2043\",\"JFK\",\"PHX\",40.00,36.00,0.00,\"\",0.00,337.00,304.00,2153.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"DL\",\"2044\",\"JFK\",\"BOS\",-6.00,-7.00,0.00,\"\",0.00,100.00,38.00,187.00,,,,,,\n2015,5,21,\"DL\",\"2056\",\"MSP\",\"ROC\",-2.00,-19.00,0.00,\"\",0.00,120.00,98.00,783.00,,,,,,\n2015,5,21,\"DL\",\"2058\",\"MCO\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,142.00,121.00,944.00,,,,,,\n2015,5,21,\"DL\",\"2074\",\"LGA\",\"ATL\",-1.00,-24.00,0.00,\"\",0.00,135.00,112.00,762.00,,,,,,\n2015,5,21,\"DL\",\"2077\",\"LGA\",\"MCO\",0.00,41.00,0.00,\"\",0.00,217.00,148.00,950.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,21,\"DL\",\"2086\",\"ATL\",\"LGA\",-2.00,-27.00,0.00,\"\",0.00,119.00,99.00,762.00,,,,,,\n2015,5,21,\"DL\",\"2096\",\"LGA\",\"MSP\",-2.00,-18.00,0.00,\"\",0.00,166.00,147.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"2119\",\"LGA\",\"MSP\",-5.00,-15.00,0.00,\"\",0.00,175.00,152.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"2129\",\"ROC\",\"ATL\",-3.00,-12.00,0.00,\"\",0.00,120.00,106.00,749.00,,,,,,\n2015,5,21,\"DL\",\"2131\",\"LGA\",\"DTW\",0.00,17.00,0.00,\"\",0.00,136.00,87.00,502.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,21,\"DL\",\"2135\",\"TPA\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,163.00,128.00,1010.00,,,,,,\n2015,5,21,\"DL\",\"2148\",\"LGA\",\"DTW\",-3.00,-16.00,0.00,\"\",0.00,115.00,88.00,502.00,,,,,,\n2015,5,21,\"DL\",\"2150\",\"LGA\",\"DTW\",-4.00,-16.00,0.00,\"\",0.00,114.00,84.00,502.00,,,,,,\n2015,5,21,\"DL\",\"2151\",\"MIA\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,173.00,147.00,1096.00,,,,,,\n2015,5,21,\"DL\",\"2155\",\"LAS\",\"JFK\",-4.00,-42.00,0.00,\"\",0.00,265.00,249.00,2248.00,,,,,,\n2015,5,21,\"DL\",\"2156\",\"ATL\",\"SYR\",0.00,-14.00,0.00,\"\",0.00,116.00,98.00,794.00,,,,,,\n2015,5,21,\"DL\",\"2156\",\"SYR\",\"ATL\",-9.00,-17.00,0.00,\"\",0.00,135.00,115.00,794.00,,,,,,\n2015,5,21,\"DL\",\"2166\",\"SYR\",\"DTW\",-5.00,-7.00,0.00,\"\",0.00,91.00,62.00,374.00,,,,,,\n2015,5,21,\"DL\",\"2174\",\"DTW\",\"JFK\",6.00,9.00,0.00,\"\",0.00,124.00,77.00,509.00,,,,,,\n2015,5,21,\"DL\",\"2175\",\"JFK\",\"TPA\",-4.00,-7.00,0.00,\"\",0.00,183.00,151.00,1005.00,,,,,,\n2015,5,21,\"DL\",\"2178\",\"LGA\",\"TPA\",8.00,11.00,0.00,\"\",0.00,184.00,149.00,1010.00,,,,,,\n2015,5,21,\"DL\",\"2181\",\"LGA\",\"MCO\",0.00,6.00,0.00,\"\",0.00,176.00,145.00,950.00,,,,,,\n2015,5,21,\"DL\",\"2185\",\"FLL\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,161.00,144.00,1069.00,,,,,,\n2015,5,21,\"DL\",\"2186\",\"ATL\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,124.00,97.00,762.00,,,,,,\n2015,5,21,\"DL\",\"2189\",\"JFK\",\"PHX\",-4.00,6.00,0.00,\"\",0.00,343.00,304.00,2153.00,,,,,,\n2015,5,21,\"DL\",\"2190\",\"JFK\",\"MIA\",-3.00,-25.00,0.00,\"\",0.00,180.00,149.00,1089.00,,,,,,\n2015,5,21,\"DL\",\"2208\",\"JFK\",\"LAS\",-6.00,7.00,0.00,\"\",0.00,368.00,319.00,2248.00,,,,,,\n2015,5,21,\"DL\",\"2214\",\"ATL\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,134.00,104.00,762.00,,,,,,\n2015,5,21,\"DL\",\"2217\",\"JFK\",\"BOS\",-6.00,-32.00,0.00,\"\",0.00,66.00,39.00,187.00,,,,,,\n2015,5,21,\"DL\",\"2230\",\"CHS\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,126.00,85.00,636.00,,,,,,\n2015,5,21,\"DL\",\"2231\",\"DTW\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,106.00,72.00,502.00,,,,,,\n2015,5,18,\"DL\",\"1685\",\"LGA\",\"MCO\",135.00,129.00,0.00,\"\",0.00,169.00,125.00,950.00,0.00,0.00,0.00,0.00,129.00,\n2015,5,18,\"DL\",\"1697\",\"LGA\",\"ATL\",160.00,170.00,0.00,\"\",0.00,168.00,116.00,762.00,12.00,0.00,10.00,0.00,148.00,\n2015,5,18,\"DL\",\"1728\",\"LAS\",\"JFK\",95.00,84.00,0.00,\"\",0.00,290.00,264.00,2248.00,13.00,0.00,0.00,0.00,71.00,\n2015,5,18,\"DL\",\"1750\",\"ATL\",\"JFK\",153.00,174.00,0.00,\"\",0.00,170.00,135.00,760.00,0.00,9.00,21.00,0.00,144.00,\n2015,5,18,\"DL\",\"1762\",\"LAX\",\"JFK\",45.00,67.00,0.00,\"\",0.00,357.00,315.00,2475.00,40.00,0.00,22.00,0.00,5.00,\n2015,5,18,\"DL\",\"1779\",\"LGA\",\"MSY\",115.00,124.00,0.00,\"\",0.00,208.00,160.00,1183.00,11.00,0.00,9.00,0.00,104.00,\n2015,5,18,\"DL\",\"1786\",\"ATL\",\"LGA\",279.00,307.00,0.00,\"\",0.00,169.00,107.00,762.00,0.00,0.00,307.00,0.00,0.00,\n2015,5,18,\"DL\",\"1787\",\"FLL\",\"JFK\",159.00,152.00,0.00,\"\",0.00,179.00,147.00,1069.00,0.00,0.00,152.00,0.00,0.00,\n2015,5,18,\"DL\",\"1796\",\"LGA\",\"MSP\",46.00,27.00,0.00,\"\",0.00,179.00,161.00,1020.00,6.00,0.00,0.00,0.00,21.00,\n2015,5,18,\"DL\",\"1830\",\"SLC\",\"JFK\",0.00,39.00,0.00,\"\",0.00,315.00,289.00,1990.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,18,\"DL\",\"1841\",\"SJU\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,241.00,213.00,1598.00,,,,,,\n2015,5,18,\"DL\",\"1848\",\"DTW\",\"LGA\",100.00,138.00,0.00,\"\",0.00,146.00,121.00,502.00,0.00,0.00,138.00,0.00,0.00,\n2015,5,18,\"DL\",\"1849\",\"LGA\",\"ATL\",127.00,146.00,0.00,\"\",0.00,177.00,110.00,762.00,7.00,0.00,19.00,0.00,120.00,\n2015,5,18,\"DL\",\"1851\",\"CHS\",\"JFK\",28.00,54.00,0.00,\"\",0.00,150.00,127.00,636.00,0.00,0.00,28.00,0.00,26.00,\n2015,5,18,\"DL\",\"1875\",\"LGA\",\"TPA\",151.00,134.00,0.00,\"\",0.00,163.00,134.00,1010.00,6.00,0.00,0.00,0.00,128.00,\n2015,5,18,\"DL\",\"1879\",\"LGA\",\"FLL\",-1.00,-6.00,0.00,\"\",0.00,182.00,144.00,1076.00,,,,,,\n2015,5,18,\"DL\",\"1885\",\"LGA\",\"MCO\",149.00,117.00,0.00,\"\",0.00,148.00,118.00,950.00,0.00,0.00,0.00,0.00,117.00,\n2015,5,18,\"DL\",\"1886\",\"ATL\",\"LGA\",103.00,120.00,0.00,\"\",0.00,167.00,116.00,762.00,0.00,0.00,120.00,0.00,0.00,\n2015,5,18,\"DL\",\"1897\",\"LGA\",\"MCO\",187.00,174.00,0.00,\"\",0.00,161.00,128.00,950.00,174.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"DL\",\"1902\",\"LGA\",\"PBI\",132.00,111.00,0.00,\"\",0.00,163.00,133.00,1035.00,2.00,0.00,0.00,0.00,109.00,\n2015,5,18,\"DL\",\"1917\",\"MIA\",\"LGA\",236.00,,0.00,\"\",1.00,,,1096.00,,,,,,\n2015,5,18,\"DL\",\"1919\",\"LGA\",\"MSP\",-5.00,-21.00,0.00,\"\",0.00,166.00,142.00,1020.00,,,,,,\n2015,5,18,\"DL\",\"1930\",\"LGA\",\"MIA\",101.00,72.00,0.00,\"\",0.00,169.00,136.00,1096.00,0.00,0.00,0.00,0.00,72.00,\n2015,5,18,\"DL\",\"1935\",\"LGA\",\"TPA\",12.00,4.00,0.00,\"\",0.00,174.00,137.00,1010.00,,,,,,\n2015,5,18,\"DL\",\"1947\",\"FLL\",\"JFK\",182.00,184.00,0.00,\"\",0.00,186.00,158.00,1069.00,4.00,0.00,2.00,0.00,178.00,\n2015,5,18,\"DL\",\"1948\",\"DTW\",\"LGA\",47.00,51.00,0.00,\"\",0.00,111.00,76.00,502.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,18,\"DL\",\"1949\",\"TPA\",\"LGA\",52.00,66.00,0.00,\"\",0.00,177.00,142.00,1010.00,52.00,0.00,14.00,0.00,0.00,\n2015,5,18,\"DL\",\"1953\",\"LGA\",\"FLL\",69.00,48.00,0.00,\"\",0.00,173.00,140.00,1076.00,0.00,0.00,0.00,0.00,48.00,\n2015,5,18,\"DL\",\"1958\",\"PBI\",\"LGA\",194.00,181.00,0.00,\"\",0.00,163.00,146.00,1035.00,5.00,0.00,135.00,0.00,41.00,\n2015,5,18,\"DL\",\"1969\",\"BUF\",\"JFK\",-3.00,1.00,0.00,\"\",0.00,94.00,57.00,301.00,,,,,,\n2015,5,18,\"DL\",\"1972\",\"AUS\",\"JFK\",-3.00,5.00,0.00,\"\",0.00,237.00,214.00,1521.00,,,,,,\n2015,5,18,\"DL\",\"1974\",\"MIA\",\"LGA\",127.00,120.00,0.00,\"\",0.00,176.00,145.00,1096.00,5.00,0.00,43.00,0.00,72.00,\n2015,5,18,\"DL\",\"1982\",\"LGA\",\"MIA\",72.00,42.00,0.00,\"\",0.00,166.00,144.00,1096.00,0.00,0.00,0.00,0.00,42.00,\n2015,5,18,\"DL\",\"1985\",\"ALB\",\"DTW\",-4.00,-19.00,0.00,\"\",0.00,86.00,71.00,489.00,,,,,,\n2015,5,18,\"DL\",\"1986\",\"ATL\",\"LGA\",167.00,196.00,0.00,\"\",0.00,179.00,119.00,762.00,3.00,0.00,29.00,0.00,164.00,\n2015,5,18,\"DL\",\"1994\",\"PHX\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,282.00,254.00,2153.00,,,,,,\n2015,5,18,\"DL\",\"1996\",\"MSP\",\"LGA\",60.00,87.00,0.00,\"\",0.00,189.00,173.00,1020.00,0.00,0.00,87.00,0.00,0.00,\n2015,5,18,\"DL\",\"2003\",\"LGA\",\"MIA\",-3.00,12.00,0.00,\"\",0.00,202.00,150.00,1096.00,,,,,,\n2015,5,18,\"DL\",\"2013\",\"ATL\",\"SYR\",119.00,114.00,0.00,\"\",0.00,130.00,100.00,794.00,48.00,0.00,0.00,0.00,66.00,\n2015,5,18,\"DL\",\"2014\",\"SYR\",\"ATL\",-4.00,-27.00,0.00,\"\",0.00,116.00,102.00,794.00,,,,,,\n2015,5,18,\"DL\",\"2016\",\"LGA\",\"ATL\",239.00,237.00,0.00,\"\",0.00,151.00,119.00,762.00,42.00,0.00,0.00,0.00,195.00,\n2015,5,18,\"DL\",\"2022\",\"LGA\",\"FLL\",92.00,69.00,0.00,\"\",0.00,169.00,137.00,1076.00,0.00,0.00,0.00,0.00,69.00,\n2015,5,18,\"DL\",\"2028\",\"FLL\",\"LGA\",47.00,47.00,0.00,\"\",0.00,181.00,148.00,1076.00,2.00,0.00,17.00,0.00,28.00,\n2015,5,18,\"DL\",\"2032\",\"MSP\",\"JFK\",1.00,-9.00,0.00,\"\",0.00,157.00,140.00,1029.00,,,,,,\n2015,5,18,\"DL\",\"2037\",\"MCO\",\"LGA\",23.00,21.00,0.00,\"\",0.00,155.00,128.00,950.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,18,\"DL\",\"2040\",\"SFO\",\"JFK\",30.00,48.00,0.00,\"\",0.00,359.00,334.00,2586.00,0.00,0.00,20.00,0.00,28.00,\n2015,5,18,\"DL\",\"2043\",\"JFK\",\"PHX\",1.00,76.00,0.00,\"\",0.00,416.00,309.00,2153.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,18,\"DL\",\"2044\",\"JFK\",\"BOS\",191.00,215.00,0.00,\"\",0.00,125.00,36.00,187.00,0.00,0.00,39.00,0.00,176.00,\n2015,5,18,\"DL\",\"2056\",\"MSP\",\"ROC\",-1.00,-5.00,0.00,\"\",0.00,133.00,99.00,783.00,,,,,,\n2015,5,18,\"DL\",\"2058\",\"MCO\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,151.00,131.00,944.00,,,,,,\n2015,5,18,\"DL\",\"2074\",\"LGA\",\"ATL\",212.00,192.00,0.00,\"\",0.00,138.00,106.00,762.00,3.00,0.00,0.00,0.00,189.00,\n2015,5,18,\"DL\",\"2077\",\"LGA\",\"MCO\",17.00,-4.00,0.00,\"\",0.00,155.00,123.00,950.00,,,,,,\n2015,5,18,\"DL\",\"2086\",\"ATL\",\"LGA\",19.00,36.00,0.00,\"\",0.00,161.00,114.00,762.00,0.00,19.00,17.00,0.00,0.00,\n2015,5,18,\"DL\",\"2096\",\"LGA\",\"MSP\",93.00,105.00,0.00,\"\",0.00,194.00,143.00,1020.00,5.00,0.00,12.00,0.00,88.00,\n2015,5,18,\"DL\",\"2119\",\"LGA\",\"MSP\",0.00,-28.00,0.00,\"\",0.00,157.00,138.00,1020.00,,,,,,\n2015,5,18,\"DL\",\"2129\",\"ROC\",\"ATL\",-1.00,-16.00,0.00,\"\",0.00,114.00,95.00,749.00,,,,,,\n2015,5,18,\"DL\",\"2131\",\"LGA\",\"DTW\",88.00,90.00,0.00,\"\",0.00,121.00,93.00,502.00,10.00,0.00,2.00,0.00,78.00,\n2015,5,18,\"DL\",\"2135\",\"TPA\",\"LGA\",189.00,180.00,0.00,\"\",0.00,155.00,133.00,1010.00,0.00,0.00,180.00,0.00,0.00,\n2015,5,18,\"DL\",\"2148\",\"LGA\",\"DTW\",-4.00,-23.00,0.00,\"\",0.00,109.00,77.00,502.00,,,,,,\n2015,5,18,\"DL\",\"2150\",\"LGA\",\"DTW\",0.00,-28.00,0.00,\"\",0.00,98.00,76.00,502.00,,,,,,\n2015,5,18,\"DL\",\"2151\",\"MIA\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,174.00,154.00,1096.00,,,,,,\n2015,5,18,\"DL\",\"2155\",\"LAS\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,290.00,273.00,2248.00,,,,,,\n2015,5,18,\"DL\",\"2156\",\"ATL\",\"SYR\",-1.00,-16.00,0.00,\"\",0.00,115.00,102.00,794.00,,,,,,\n2015,5,18,\"DL\",\"2156\",\"SYR\",\"ATL\",-9.00,-23.00,0.00,\"\",0.00,129.00,106.00,794.00,,,,,,\n2015,5,18,\"DL\",\"2166\",\"SYR\",\"DTW\",-10.00,-23.00,0.00,\"\",0.00,80.00,55.00,374.00,,,,,,\n2015,5,18,\"DL\",\"2174\",\"DTW\",\"JFK\",70.00,58.00,0.00,\"\",0.00,109.00,80.00,509.00,0.00,0.00,58.00,0.00,0.00,\n2015,5,18,\"DL\",\"2175\",\"JFK\",\"TPA\",-8.00,-42.00,0.00,\"\",0.00,152.00,128.00,1005.00,,,,,,\n2015,5,18,\"DL\",\"2178\",\"LGA\",\"TPA\",59.00,52.00,0.00,\"\",0.00,174.00,132.00,1010.00,52.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"DL\",\"2181\",\"LGA\",\"MCO\",68.00,98.00,0.00,\"\",0.00,200.00,126.00,950.00,1.00,0.00,30.00,0.00,67.00,\n2015,5,18,\"DL\",\"2182\",\"JFK\",\"PHX\",-6.00,14.00,0.00,\"\",0.00,356.00,287.00,2153.00,,,,,,\n2015,5,18,\"DL\",\"2185\",\"FLL\",\"JFK\",-7.00,-12.00,0.00,\"\",0.00,168.00,146.00,1069.00,,,,,,\n2015,5,18,\"DL\",\"2186\",\"ATL\",\"LGA\",55.00,49.00,0.00,\"\",0.00,140.00,113.00,762.00,20.00,0.00,0.00,0.00,29.00,\n2015,5,18,\"DL\",\"2190\",\"JFK\",\"MIA\",-4.00,33.00,0.00,\"\",0.00,239.00,146.00,1089.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,18,\"DL\",\"2214\",\"ATL\",\"LGA\",212.00,226.00,0.00,\"\",0.00,147.00,119.00,762.00,0.00,0.00,226.00,0.00,0.00,\n2015,5,18,\"DL\",\"2217\",\"JFK\",\"BOS\",40.00,31.00,0.00,\"\",0.00,83.00,35.00,187.00,0.00,0.00,5.00,0.00,26.00,\n2015,5,18,\"DL\",\"2230\",\"CHS\",\"JFK\",94.00,123.00,0.00,\"\",0.00,158.00,91.00,636.00,0.00,0.00,88.00,0.00,35.00,\n2015,5,18,\"DL\",\"2231\",\"DTW\",\"LGA\",340.00,331.00,0.00,\"\",0.00,99.00,78.00,502.00,0.00,0.00,331.00,0.00,0.00,\n2015,5,18,\"DL\",\"2240\",\"SFO\",\"JFK\",-3.00,-6.00,0.00,\"\",0.00,335.00,304.00,2586.00,,,,,,\n2015,5,18,\"DL\",\"2248\",\"DTW\",\"LGA\",354.00,343.00,0.00,\"\",0.00,97.00,77.00,502.00,0.00,0.00,177.00,0.00,166.00,\n2015,5,18,\"DL\",\"2262\",\"LAX\",\"JFK\",47.00,36.00,0.00,\"\",0.00,323.00,293.00,2475.00,0.00,0.00,26.00,0.00,10.00,\n2015,5,20,\"DL\",\"1370\",\"ATL\",\"ROC\",0.00,-15.00,0.00,\"\",0.00,110.00,92.00,749.00,,,,,,\n2015,5,20,\"DL\",\"1370\",\"ROC\",\"ATL\",-4.00,-15.00,0.00,\"\",0.00,123.00,104.00,749.00,,,,,,\n2015,5,20,\"DL\",\"1372\",\"DTW\",\"BUF\",-3.00,-3.00,0.00,\"\",0.00,66.00,42.00,241.00,,,,,,\n2015,5,20,\"DL\",\"1383\",\"LGA\",\"ATL\",-2.00,-19.00,0.00,\"\",0.00,151.00,107.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1386\",\"ATL\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,126.00,100.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1394\",\"ATL\",\"JFK\",45.00,43.00,0.00,\"\",0.00,151.00,107.00,760.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,20,\"DL\",\"1419\",\"ATL\",\"JFK\",46.00,35.00,0.00,\"\",0.00,144.00,106.00,760.00,0.00,0.00,31.00,0.00,4.00,\n2015,5,20,\"DL\",\"1428\",\"LGA\",\"ATL\",-3.00,-5.00,0.00,\"\",0.00,156.00,109.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1447\",\"LGA\",\"ATL\",-2.00,-19.00,0.00,\"\",0.00,127.00,104.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1473\",\"SEA\",\"JFK\",13.00,-12.00,0.00,\"\",0.00,305.00,276.00,2422.00,,,,,,\n2015,5,20,\"DL\",\"1486\",\"ATL\",\"LGA\",6.00,-5.00,0.00,\"\",0.00,128.00,106.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1487\",\"ATL\",\"JFK\",4.00,-4.00,0.00,\"\",0.00,136.00,104.00,760.00,,,,,,\n2015,5,20,\"DL\",\"1496\",\"MSP\",\"LGA\",-3.00,-27.00,0.00,\"\",0.00,142.00,123.00,1020.00,,,,,,\n2015,5,20,\"DL\",\"1498\",\"FLL\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,167.00,148.00,1076.00,,,,,,\n2015,5,20,\"DL\",\"1514\",\"LGA\",\"FLL\",-1.00,-9.00,0.00,\"\",0.00,181.00,144.00,1076.00,,,,,,\n2015,5,20,\"DL\",\"1515\",\"ATL\",\"ALB\",-4.00,-14.00,0.00,\"\",0.00,137.00,108.00,853.00,,,,,,\n2015,5,20,\"DL\",\"1526\",\"MCO\",\"LGA\",-6.00,1.00,0.00,\"\",0.00,166.00,150.00,950.00,,,,,,\n2015,5,20,\"DL\",\"1542\",\"SEA\",\"JFK\",36.00,4.00,0.00,\"\",0.00,292.00,273.00,2422.00,,,,,,\n2015,5,20,\"DL\",\"1543\",\"ATL\",\"ALB\",1.00,-12.00,0.00,\"\",0.00,131.00,108.00,853.00,,,,,,\n2015,5,20,\"DL\",\"1543\",\"ALB\",\"ATL\",-2.00,-16.00,0.00,\"\",0.00,148.00,127.00,853.00,,,,,,\n2015,5,20,\"DL\",\"1548\",\"LGA\",\"DTW\",-2.00,-17.00,0.00,\"\",0.00,105.00,84.00,502.00,,,,,,\n2015,5,20,\"DL\",\"1560\",\"MSY\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,187.00,147.00,1183.00,,,,,,\n2015,5,20,\"DL\",\"1562\",\"BOS\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,67.00,42.00,187.00,,,,,,\n2015,5,20,\"DL\",\"1566\",\"LGA\",\"PBI\",-3.00,23.00,0.00,\"\",0.00,209.00,135.00,1035.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,20,\"DL\",\"1580\",\"LGA\",\"DTW\",-7.00,26.00,0.00,\"\",0.00,158.00,84.00,502.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,20,\"DL\",\"1583\",\"SFO\",\"JFK\",10.00,-17.00,0.00,\"\",0.00,322.00,288.00,2586.00,,,,,,\n2015,5,20,\"DL\",\"1584\",\"ATL\",\"ROC\",-4.00,-23.00,0.00,\"\",0.00,114.00,94.00,749.00,,,,,,\n2015,5,20,\"DL\",\"1584\",\"ROC\",\"ATL\",-5.00,-14.00,0.00,\"\",0.00,126.00,106.00,749.00,,,,,,\n2015,5,20,\"DL\",\"1586\",\"ATL\",\"LGA\",2.00,-12.00,0.00,\"\",0.00,130.00,101.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1596\",\"MSP\",\"LGA\",-1.00,-29.00,0.00,\"\",0.00,137.00,124.00,1020.00,,,,,,\n2015,5,20,\"DL\",\"1644\",\"FLL\",\"JFK\",-5.00,-31.00,0.00,\"\",0.00,161.00,142.00,1069.00,,,,,,\n2015,5,20,\"DL\",\"1647\",\"LGA\",\"ATL\",3.00,-5.00,0.00,\"\",0.00,144.00,104.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1671\",\"MIA\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,173.00,142.00,1089.00,,,,,,\n2015,5,20,\"DL\",\"1672\",\"ATL\",\"BUF\",0.00,-4.00,0.00,\"\",0.00,115.00,94.00,712.00,,,,,,\n2015,5,20,\"DL\",\"1672\",\"BUF\",\"ATL\",-3.00,-15.00,0.00,\"\",0.00,116.00,99.00,712.00,,,,,,\n2015,5,20,\"DL\",\"1685\",\"LGA\",\"MCO\",-4.00,4.00,0.00,\"\",0.00,183.00,134.00,950.00,,,,,,\n2015,5,20,\"DL\",\"1697\",\"LGA\",\"ATL\",36.00,50.00,0.00,\"\",0.00,172.00,108.00,762.00,13.00,0.00,14.00,0.00,23.00,\n2015,5,20,\"DL\",\"1728\",\"LAS\",\"JFK\",31.00,-5.00,0.00,\"\",0.00,265.00,239.00,2248.00,,,,,,\n2015,5,20,\"DL\",\"1750\",\"ATL\",\"JFK\",34.00,13.00,0.00,\"\",0.00,128.00,100.00,760.00,,,,,,\n2015,5,20,\"DL\",\"1762\",\"LAX\",\"JFK\",1.00,-35.00,0.00,\"\",0.00,299.00,271.00,2475.00,,,,,,\n2015,5,20,\"DL\",\"1779\",\"LGA\",\"MSY\",-2.00,-20.00,0.00,\"\",0.00,181.00,160.00,1183.00,,,,,,\n2015,5,20,\"DL\",\"1786\",\"ATL\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,125.00,99.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1787\",\"FLL\",\"JFK\",18.00,-1.00,0.00,\"\",0.00,167.00,136.00,1069.00,,,,,,\n2015,5,20,\"DL\",\"1796\",\"LGA\",\"MSP\",152.00,173.00,0.00,\"\",0.00,219.00,146.00,1020.00,138.00,0.00,21.00,0.00,14.00,\n2015,5,20,\"DL\",\"1830\",\"SLC\",\"JFK\",1.00,-23.00,0.00,\"\",0.00,252.00,215.00,1990.00,,,,,,\n2015,5,20,\"DL\",\"1841\",\"SJU\",\"JFK\",13.00,3.00,0.00,\"\",0.00,237.00,211.00,1598.00,,,,,,\n2015,5,20,\"DL\",\"1848\",\"DTW\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,92.00,65.00,502.00,,,,,,\n2015,5,20,\"DL\",\"1849\",\"LGA\",\"ATL\",-1.00,24.00,0.00,\"\",0.00,183.00,104.00,762.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,20,\"DL\",\"1851\",\"CHS\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,117.00,92.00,636.00,,,,,,\n2015,5,20,\"DL\",\"1875\",\"LGA\",\"TPA\",3.00,6.00,0.00,\"\",0.00,183.00,144.00,1010.00,,,,,,\n2015,5,20,\"DL\",\"1879\",\"LGA\",\"FLL\",1.00,-15.00,0.00,\"\",0.00,171.00,142.00,1076.00,,,,,,\n2015,5,20,\"DL\",\"1885\",\"LGA\",\"MCO\",-5.00,2.00,0.00,\"\",0.00,187.00,131.00,950.00,,,,,,\n2015,5,20,\"DL\",\"1886\",\"ATL\",\"LGA\",-5.00,-29.00,0.00,\"\",0.00,126.00,99.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1897\",\"LGA\",\"MCO\",-8.00,8.00,0.00,\"\",0.00,190.00,130.00,950.00,,,,,,\n2015,5,20,\"DL\",\"1902\",\"LGA\",\"PBI\",-7.00,-18.00,0.00,\"\",0.00,173.00,139.00,1035.00,,,,,,\n2015,5,20,\"DL\",\"1917\",\"MIA\",\"LGA\",25.00,3.00,0.00,\"\",0.00,162.00,140.00,1096.00,,,,,,\n2015,5,20,\"DL\",\"1919\",\"LGA\",\"MSP\",0.00,-2.00,0.00,\"\",0.00,180.00,154.00,1020.00,,,,,,\n2015,5,20,\"DL\",\"1930\",\"LGA\",\"MIA\",-2.00,4.00,0.00,\"\",0.00,204.00,144.00,1096.00,,,,,,\n2015,5,20,\"DL\",\"1935\",\"LGA\",\"TPA\",-5.00,-3.00,0.00,\"\",0.00,184.00,145.00,1010.00,,,,,,\n2015,5,20,\"DL\",\"1947\",\"FLL\",\"JFK\",12.00,-6.00,0.00,\"\",0.00,166.00,141.00,1069.00,,,,,,\n2015,5,20,\"DL\",\"1948\",\"DTW\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,98.00,68.00,502.00,,,,,,\n2015,5,20,\"DL\",\"1949\",\"TPA\",\"LGA\",-6.00,-26.00,0.00,\"\",0.00,143.00,127.00,1010.00,,,,,,\n2015,5,20,\"DL\",\"1953\",\"LGA\",\"FLL\",165.00,149.00,0.00,\"\",0.00,178.00,146.00,1076.00,149.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"DL\",\"1958\",\"PBI\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,165.00,137.00,1035.00,,,,,,\n2015,5,20,\"DL\",\"1969\",\"BUF\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,85.00,52.00,301.00,,,,,,\n2015,5,20,\"DL\",\"1972\",\"AUS\",\"JFK\",0.00,-27.00,0.00,\"\",0.00,202.00,185.00,1521.00,,,,,,\n2015,5,20,\"DL\",\"1974\",\"MIA\",\"LGA\",21.00,8.00,0.00,\"\",0.00,170.00,145.00,1096.00,,,,,,\n2015,5,20,\"DL\",\"1982\",\"LGA\",\"MIA\",0.00,11.00,0.00,\"\",0.00,207.00,155.00,1096.00,,,,,,\n2015,5,20,\"DL\",\"1985\",\"ALB\",\"DTW\",-2.00,7.00,0.00,\"\",0.00,110.00,86.00,489.00,,,,,,\n2015,5,20,\"DL\",\"1986\",\"ATL\",\"LGA\",-5.00,12.00,0.00,\"\",0.00,167.00,98.00,762.00,,,,,,\n2015,5,20,\"DL\",\"1994\",\"PHX\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,270.00,235.00,2153.00,,,,,,\n2015,5,20,\"DL\",\"1996\",\"MSP\",\"LGA\",-5.00,-34.00,0.00,\"\",0.00,133.00,117.00,1020.00,,,,,,\n2015,5,20,\"DL\",\"2003\",\"LGA\",\"MIA\",-6.00,-8.00,0.00,\"\",0.00,185.00,149.00,1096.00,,,,,,\n2015,5,20,\"DL\",\"2013\",\"ATL\",\"SYR\",-6.00,-16.00,0.00,\"\",0.00,125.00,98.00,794.00,,,,,,\n2015,5,20,\"DL\",\"2014\",\"SYR\",\"ATL\",-4.00,-18.00,0.00,\"\",0.00,125.00,109.00,794.00,,,,,,\n2015,5,20,\"DL\",\"2016\",\"LGA\",\"ATL\",-5.00,1.00,0.00,\"\",0.00,159.00,107.00,762.00,,,,,,\n2015,5,20,\"DL\",\"2022\",\"LGA\",\"FLL\",24.00,32.00,0.00,\"\",0.00,200.00,142.00,1076.00,24.00,0.00,8.00,0.00,0.00,\n2015,5,20,\"DL\",\"2028\",\"FLL\",\"LGA\",2.00,-9.00,0.00,\"\",0.00,170.00,146.00,1076.00,,,,,,\n2015,5,20,\"DL\",\"2032\",\"MSP\",\"JFK\",-4.00,-27.00,0.00,\"\",0.00,144.00,122.00,1029.00,,,,,,\n2015,5,20,\"DL\",\"2037\",\"MCO\",\"LGA\",9.00,-1.00,0.00,\"\",0.00,147.00,130.00,950.00,,,,,,\n2015,5,20,\"DL\",\"2040\",\"SFO\",\"JFK\",23.00,-26.00,0.00,\"\",0.00,292.00,273.00,2586.00,,,,,,\n2015,5,20,\"DL\",\"2043\",\"JFK\",\"PHX\",-2.00,-11.00,0.00,\"\",0.00,332.00,295.00,2153.00,,,,,,\n2015,5,20,\"DL\",\"2044\",\"JFK\",\"BOS\",-3.00,-38.00,0.00,\"\",0.00,66.00,37.00,187.00,,,,,,\n2015,5,20,\"DL\",\"2056\",\"MSP\",\"ROC\",-6.00,-25.00,0.00,\"\",0.00,118.00,96.00,783.00,,,,,,\n2015,5,20,\"DL\",\"2058\",\"MCO\",\"JFK\",-5.00,1.00,0.00,\"\",0.00,161.00,129.00,944.00,,,,,,\n2015,5,20,\"DL\",\"2074\",\"LGA\",\"ATL\",-4.00,0.00,0.00,\"\",0.00,162.00,107.00,762.00,,,,,,\n2015,5,20,\"DL\",\"2077\",\"LGA\",\"MCO\",-4.00,24.00,0.00,\"\",0.00,204.00,154.00,950.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,20,\"DL\",\"2086\",\"ATL\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,126.00,103.00,762.00,,,,,,\n2015,5,20,\"DL\",\"2096\",\"LGA\",\"MSP\",4.00,1.00,0.00,\"\",0.00,179.00,154.00,1020.00,,,,,,\n2015,5,20,\"DL\",\"2119\",\"LGA\",\"MSP\",10.00,15.00,0.00,\"\",0.00,190.00,157.00,1020.00,10.00,0.00,5.00,0.00,0.00,\n2015,5,1,\"B6\",\"1215\",\"BOS\",\"BUF\",-9.00,-17.00,0.00,\"\",0.00,82.00,62.00,395.00,,,,,,\n2015,5,3,\"B6\",\"1215\",\"BOS\",\"BUF\",-5.00,-15.00,0.00,\"\",0.00,80.00,63.00,395.00,,,,,,\n2015,5,4,\"B6\",\"1215\",\"BOS\",\"BUF\",-5.00,-11.00,0.00,\"\",0.00,84.00,65.00,395.00,,,,,,\n2015,5,5,\"B6\",\"1215\",\"BOS\",\"BUF\",4.00,11.00,0.00,\"\",0.00,97.00,65.00,395.00,,,,,,\n2015,5,6,\"B6\",\"1215\",\"BOS\",\"BUF\",-14.00,-2.00,0.00,\"\",0.00,102.00,70.00,395.00,,,,,,\n2015,5,7,\"B6\",\"1215\",\"BOS\",\"BUF\",5.00,-3.00,0.00,\"\",0.00,82.00,64.00,395.00,,,,,,\n2015,5,8,\"B6\",\"1215\",\"BOS\",\"BUF\",7.00,-2.00,0.00,\"\",0.00,81.00,63.00,395.00,,,,,,\n2015,5,10,\"B6\",\"1215\",\"BOS\",\"BUF\",11.00,4.00,0.00,\"\",0.00,83.00,63.00,395.00,,,,,,\n2015,5,11,\"B6\",\"1215\",\"BOS\",\"BUF\",4.00,-9.00,0.00,\"\",0.00,77.00,64.00,395.00,,,,,,\n2015,5,12,\"B6\",\"1215\",\"BOS\",\"BUF\",-6.00,-3.00,0.00,\"\",0.00,93.00,66.00,395.00,,,,,,\n2015,5,13,\"B6\",\"1215\",\"BOS\",\"BUF\",-4.00,-10.00,0.00,\"\",0.00,84.00,66.00,395.00,,,,,,\n2015,5,14,\"B6\",\"1215\",\"BOS\",\"BUF\",-4.00,-9.00,0.00,\"\",0.00,85.00,64.00,395.00,,,,,,\n2015,5,15,\"B6\",\"1215\",\"BOS\",\"BUF\",-6.00,-13.00,0.00,\"\",0.00,83.00,61.00,395.00,,,,,,\n2015,5,17,\"B6\",\"1215\",\"BOS\",\"BUF\",-5.00,-15.00,0.00,\"\",0.00,80.00,63.00,395.00,,,,,,\n2015,5,18,\"B6\",\"1215\",\"BOS\",\"BUF\",-1.00,-14.00,0.00,\"\",0.00,77.00,60.00,395.00,,,,,,\n2015,5,19,\"B6\",\"1215\",\"BOS\",\"BUF\",0.00,3.00,0.00,\"\",0.00,93.00,68.00,395.00,,,,,,\n2015,5,20,\"B6\",\"1215\",\"BOS\",\"BUF\",-4.00,-8.00,0.00,\"\",0.00,86.00,67.00,395.00,,,,,,\n2015,5,21,\"B6\",\"1215\",\"BOS\",\"BUF\",2.00,5.00,0.00,\"\",0.00,93.00,74.00,395.00,,,,,,\n2015,5,22,\"B6\",\"1215\",\"BOS\",\"BUF\",-4.00,-2.00,0.00,\"\",0.00,92.00,69.00,395.00,,,,,,\n2015,5,24,\"B6\",\"1215\",\"BOS\",\"BUF\",-2.00,-7.00,0.00,\"\",0.00,85.00,68.00,395.00,,,,,,\n2015,5,25,\"B6\",\"1215\",\"BOS\",\"BUF\",-2.00,-8.00,0.00,\"\",0.00,84.00,68.00,395.00,,,,,,\n2015,5,26,\"B6\",\"1215\",\"BOS\",\"BUF\",-3.00,-3.00,0.00,\"\",0.00,90.00,67.00,395.00,,,,,,\n2015,5,27,\"B6\",\"1215\",\"BOS\",\"BUF\",-4.00,5.00,0.00,\"\",0.00,99.00,65.00,395.00,,,,,,\n2015,5,28,\"B6\",\"1215\",\"BOS\",\"BUF\",-8.00,-11.00,0.00,\"\",0.00,87.00,65.00,395.00,,,,,,\n2015,5,29,\"B6\",\"1215\",\"BOS\",\"BUF\",-5.00,-9.00,0.00,\"\",0.00,86.00,61.00,395.00,,,,,,\n2015,5,31,\"B6\",\"1215\",\"BOS\",\"BUF\",14.00,12.00,0.00,\"\",0.00,88.00,70.00,395.00,,,,,,\n2015,5,1,\"B6\",\"1216\",\"BUF\",\"BOS\",-10.00,-19.00,0.00,\"\",0.00,73.00,61.00,395.00,,,,,,\n2015,5,3,\"B6\",\"1216\",\"BUF\",\"BOS\",-1.00,6.00,0.00,\"\",0.00,89.00,64.00,395.00,,,,,,\n2015,5,4,\"B6\",\"1216\",\"BUF\",\"BOS\",32.00,21.00,0.00,\"\",0.00,71.00,56.00,395.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,5,\"B6\",\"1216\",\"BUF\",\"BOS\",18.00,3.00,0.00,\"\",0.00,67.00,51.00,395.00,,,,,,\n2015,5,6,\"B6\",\"1216\",\"BUF\",\"BOS\",55.00,43.00,0.00,\"\",0.00,70.00,57.00,395.00,5.00,0.00,0.00,0.00,38.00,\n2015,5,7,\"B6\",\"1216\",\"BUF\",\"BOS\",-10.00,-22.00,0.00,\"\",0.00,70.00,58.00,395.00,,,,,,\n2015,5,8,\"B6\",\"1216\",\"BUF\",\"BOS\",-7.00,-15.00,0.00,\"\",0.00,74.00,59.00,395.00,,,,,,\n2015,5,10,\"B6\",\"1216\",\"BUF\",\"BOS\",102.00,96.00,0.00,\"\",0.00,76.00,59.00,395.00,2.00,0.00,0.00,0.00,94.00,\n2015,5,11,\"B6\",\"1216\",\"BUF\",\"BOS\",-15.00,-9.00,0.00,\"\",0.00,88.00,74.00,395.00,,,,,,\n2015,5,12,\"B6\",\"1216\",\"BUF\",\"BOS\",-9.00,-24.00,0.00,\"\",0.00,67.00,56.00,395.00,,,,,,\n2015,5,13,\"B6\",\"1216\",\"BUF\",\"BOS\",-13.00,-26.00,0.00,\"\",0.00,69.00,56.00,395.00,,,,,,\n2015,5,14,\"B6\",\"1216\",\"BUF\",\"BOS\",-13.00,-20.00,0.00,\"\",0.00,75.00,59.00,395.00,,,,,,\n2015,5,15,\"B6\",\"1216\",\"BUF\",\"BOS\",-7.00,-15.00,0.00,\"\",0.00,74.00,58.00,395.00,,,,,,\n2015,5,17,\"B6\",\"1216\",\"BUF\",\"BOS\",-5.00,-10.00,0.00,\"\",0.00,77.00,62.00,395.00,,,,,,\n2015,5,18,\"B6\",\"1216\",\"BUF\",\"BOS\",34.00,28.00,0.00,\"\",0.00,76.00,61.00,395.00,10.00,0.00,0.00,0.00,18.00,\n2015,5,19,\"B6\",\"1216\",\"BUF\",\"BOS\",47.00,66.00,0.00,\"\",0.00,101.00,59.00,395.00,0.00,0.00,59.00,0.00,7.00,\n2015,5,20,\"B6\",\"1216\",\"BUF\",\"BOS\",-7.00,-17.00,0.00,\"\",0.00,72.00,57.00,395.00,,,,,,\n2015,5,21,\"B6\",\"1216\",\"BUF\",\"BOS\",-7.00,-14.00,0.00,\"\",0.00,75.00,55.00,395.00,,,,,,\n2015,5,22,\"B6\",\"1216\",\"BUF\",\"BOS\",-4.00,-12.00,0.00,\"\",0.00,74.00,56.00,395.00,,,,,,\n2015,5,24,\"B6\",\"1216\",\"BUF\",\"BOS\",-16.00,-31.00,0.00,\"\",0.00,67.00,53.00,395.00,,,,,,\n2015,5,25,\"B6\",\"1216\",\"BUF\",\"BOS\",-4.00,-16.00,0.00,\"\",0.00,70.00,55.00,395.00,,,,,,\n2015,5,26,\"B6\",\"1216\",\"BUF\",\"BOS\",-13.00,-24.00,0.00,\"\",0.00,71.00,55.00,395.00,,,,,,\n2015,5,27,\"B6\",\"1216\",\"BUF\",\"BOS\",29.00,14.00,0.00,\"\",0.00,67.00,54.00,395.00,,,,,,\n2015,5,28,\"B6\",\"1216\",\"BUF\",\"BOS\",-1.00,-11.00,0.00,\"\",0.00,72.00,55.00,395.00,,,,,,\n2015,5,29,\"B6\",\"1216\",\"BUF\",\"BOS\",-14.00,-27.00,0.00,\"\",0.00,69.00,57.00,395.00,,,,,,\n2015,5,31,\"B6\",\"1216\",\"BUF\",\"BOS\",12.00,44.00,0.00,\"\",0.00,114.00,98.00,395.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,1,\"B6\",\"1248\",\"LAS\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,288.00,268.00,2248.00,,,,,,\n2015,5,3,\"B6\",\"1248\",\"LAS\",\"JFK\",-2.00,6.00,0.00,\"\",0.00,303.00,282.00,2248.00,,,,,,\n2015,5,4,\"B6\",\"1248\",\"LAS\",\"JFK\",8.00,-5.00,0.00,\"\",0.00,282.00,263.00,2248.00,,,,,,\n2015,5,5,\"B6\",\"1248\",\"LAS\",\"JFK\",-6.00,16.00,0.00,\"\",0.00,317.00,273.00,2248.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,6,\"B6\",\"1248\",\"LAS\",\"JFK\",2.00,-7.00,0.00,\"\",0.00,286.00,271.00,2248.00,,,,,,\n2015,5,7,\"B6\",\"1248\",\"LAS\",\"JFK\",-1.00,18.00,0.00,\"\",0.00,314.00,294.00,2248.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,8,\"B6\",\"1248\",\"LAS\",\"JFK\",-9.00,23.00,0.00,\"\",0.00,327.00,305.00,2248.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,10,\"B6\",\"1248\",\"LAS\",\"JFK\",-3.00,1.00,0.00,\"\",0.00,299.00,276.00,2248.00,,,,,,\n2015,5,11,\"B6\",\"1248\",\"LAS\",\"JFK\",7.00,22.00,0.00,\"\",0.00,310.00,289.00,2248.00,0.00,0.00,15.00,0.00,7.00,\n2015,5,12,\"B6\",\"1248\",\"LAS\",\"JFK\",80.00,47.00,0.00,\"\",0.00,262.00,248.00,2248.00,0.00,0.00,0.00,0.00,47.00,\n2015,5,13,\"B6\",\"1248\",\"LAS\",\"JFK\",121.00,109.00,0.00,\"\",0.00,283.00,259.00,2248.00,39.00,0.00,0.00,0.00,70.00,\n2015,5,14,\"B6\",\"1248\",\"LAS\",\"JFK\",3.00,-2.00,0.00,\"\",0.00,290.00,270.00,2248.00,,,,,,\n2015,5,15,\"B6\",\"1248\",\"LAS\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,284.00,262.00,2248.00,,,,,,\n2015,5,16,\"B6\",\"1248\",\"LAS\",\"JFK\",-4.00,4.00,0.00,\"\",0.00,303.00,282.00,2248.00,,,,,,\n2015,5,17,\"B6\",\"1248\",\"LAS\",\"JFK\",1.00,11.00,0.00,\"\",0.00,305.00,258.00,2248.00,,,,,,\n2015,5,18,\"B6\",\"1248\",\"LAS\",\"JFK\",120.00,94.00,0.00,\"\",0.00,269.00,253.00,2248.00,46.00,0.00,0.00,0.00,48.00,\n2015,5,19,\"B6\",\"1248\",\"LAS\",\"JFK\",19.00,-14.00,0.00,\"\",0.00,262.00,245.00,2248.00,,,,,,\n2015,5,20,\"B6\",\"1248\",\"LAS\",\"JFK\",0.00,-33.00,0.00,\"\",0.00,262.00,248.00,2248.00,,,,,,\n2015,5,21,\"B6\",\"1248\",\"LAS\",\"JFK\",13.00,-2.00,0.00,\"\",0.00,280.00,263.00,2248.00,,,,,,\n2015,5,22,\"B6\",\"1248\",\"LAS\",\"JFK\",9.00,-17.00,0.00,\"\",0.00,269.00,249.00,2248.00,,,,,,\n2015,5,23,\"B6\",\"1248\",\"LAS\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,279.00,259.00,2248.00,,,,,,\n2015,5,24,\"B6\",\"1248\",\"LAS\",\"JFK\",-3.00,14.00,0.00,\"\",0.00,312.00,284.00,2248.00,,,,,,\n2015,5,25,\"B6\",\"1248\",\"LAS\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,288.00,267.00,2248.00,,,,,,\n2015,5,26,\"B6\",\"1248\",\"LAS\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,276.00,264.00,2248.00,,,,,,\n2015,5,27,\"B6\",\"1248\",\"LAS\",\"JFK\",64.00,47.00,0.00,\"\",0.00,278.00,261.00,2248.00,12.00,0.00,0.00,0.00,35.00,\n2015,5,28,\"B6\",\"1248\",\"LAS\",\"JFK\",-5.00,1.00,0.00,\"\",0.00,301.00,278.00,2248.00,,,,,,\n2015,5,29,\"B6\",\"1248\",\"LAS\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,298.00,276.00,2248.00,,,,,,\n2015,5,30,\"B6\",\"1248\",\"LAS\",\"JFK\",-5.00,11.00,0.00,\"\",0.00,311.00,277.00,2248.00,,,,,,\n2015,5,31,\"B6\",\"1248\",\"LAS\",\"JFK\",185.00,186.00,0.00,\"\",0.00,296.00,270.00,2248.00,0.00,0.00,1.00,0.00,185.00,\n2015,5,1,\"B6\",\"1251\",\"HPN\",\"RSW\",-15.00,-13.00,0.00,\"\",0.00,183.00,158.00,1102.00,,,,,,\n2015,5,2,\"B6\",\"1251\",\"HPN\",\"RSW\",7.00,-8.00,0.00,\"\",0.00,166.00,151.00,1102.00,,,,,,\n2015,5,3,\"B6\",\"1251\",\"HPN\",\"RSW\",-7.00,-13.00,0.00,\"\",0.00,175.00,155.00,1102.00,,,,,,\n2015,5,4,\"B6\",\"1251\",\"HPN\",\"RSW\",-10.00,-17.00,0.00,\"\",0.00,174.00,157.00,1102.00,,,,,,\n2015,5,5,\"B6\",\"1251\",\"HPN\",\"RSW\",-9.00,-9.00,0.00,\"\",0.00,181.00,159.00,1102.00,,,,,,\n2015,5,6,\"B6\",\"1251\",\"HPN\",\"RSW\",-9.00,-6.00,0.00,\"\",0.00,184.00,161.00,1102.00,,,,,,\n2015,5,7,\"B6\",\"1251\",\"HPN\",\"RSW\",-9.00,-12.00,0.00,\"\",0.00,178.00,156.00,1102.00,,,,,,\n2015,5,8,\"B6\",\"1251\",\"HPN\",\"RSW\",-14.00,8.00,0.00,\"\",0.00,203.00,155.00,1102.00,,,,,,\n2015,5,9,\"B6\",\"1251\",\"HPN\",\"RSW\",-10.00,-2.00,0.00,\"\",0.00,189.00,147.00,1102.00,,,,,,\n2015,5,10,\"B6\",\"1251\",\"HPN\",\"RSW\",-10.00,-11.00,0.00,\"\",0.00,180.00,151.00,1102.00,,,,,,\n2015,5,11,\"B6\",\"1251\",\"HPN\",\"RSW\",-10.00,-15.00,0.00,\"\",0.00,176.00,156.00,1102.00,,,,,,\n2015,5,12,\"B6\",\"1251\",\"HPN\",\"RSW\",-10.00,-8.00,0.00,\"\",0.00,183.00,158.00,1102.00,,,,,,\n2015,5,13,\"B6\",\"1251\",\"HPN\",\"RSW\",-7.00,-10.00,0.00,\"\",0.00,178.00,163.00,1102.00,,,,,,\n2015,5,14,\"B6\",\"1251\",\"HPN\",\"RSW\",-8.00,-14.00,0.00,\"\",0.00,175.00,154.00,1102.00,,,,,,\n2015,5,15,\"B6\",\"1251\",\"HPN\",\"RSW\",-4.00,-2.00,0.00,\"\",0.00,183.00,161.00,1102.00,,,,,,\n2015,5,16,\"B6\",\"1251\",\"HPN\",\"RSW\",-7.00,-14.00,0.00,\"\",0.00,174.00,151.00,1102.00,,,,,,\n2015,5,17,\"B6\",\"1251\",\"HPN\",\"RSW\",-5.00,-14.00,0.00,\"\",0.00,172.00,155.00,1102.00,,,,,,\n2015,5,18,\"B6\",\"1251\",\"HPN\",\"RSW\",-6.00,-18.00,0.00,\"\",0.00,169.00,150.00,1102.00,,,,,,\n2015,5,21,\"DL\",\"2542\",\"JFK\",\"AUS\",-3.00,-13.00,0.00,\"\",0.00,254.00,223.00,1521.00,,,,,,\n2015,5,21,\"DL\",\"2554\",\"DEN\",\"JFK\",16.00,-24.00,0.00,\"\",0.00,201.00,177.00,1626.00,,,,,,\n2015,5,21,\"DL\",\"2565\",\"JFK\",\"MSP\",-5.00,-9.00,0.00,\"\",0.00,205.00,148.00,1029.00,,,,,,\n2015,5,21,\"DL\",\"2567\",\"DTW\",\"ALB\",-3.00,-8.00,0.00,\"\",0.00,83.00,62.00,489.00,,,,,,\n2015,5,21,\"DL\",\"2569\",\"JFK\",\"PHX\",9.00,-5.00,0.00,\"\",0.00,329.00,298.00,2153.00,,,,,,\n2015,5,21,\"DL\",\"2571\",\"JFK\",\"SLC\",8.00,-2.00,0.00,\"\",0.00,315.00,283.00,1990.00,,,,,,\n2015,5,21,\"DL\",\"2577\",\"JFK\",\"FLL\",-6.00,-13.00,0.00,\"\",0.00,198.00,144.00,1069.00,,,,,,\n2015,5,21,\"DL\",\"2593\",\"SAT\",\"JFK\",0.00,-23.00,0.00,\"\",0.00,215.00,201.00,1587.00,,,,,,\n2015,5,21,\"DL\",\"2594\",\"DEN\",\"LGA\",-3.00,-36.00,0.00,\"\",0.00,203.00,184.00,1620.00,,,,,,\n2015,5,21,\"DL\",\"2595\",\"FLL\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,165.00,143.00,1076.00,,,,,,\n2015,5,21,\"DL\",\"2596\",\"PBI\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,163.00,139.00,1035.00,,,,,,\n2015,5,21,\"DL\",\"2622\",\"ROC\",\"DTW\",-4.00,-19.00,0.00,\"\",0.00,67.00,51.00,296.00,,,,,,\n2015,5,21,\"DL\",\"2627\",\"JFK\",\"PDX\",-2.00,-7.00,0.00,\"\",0.00,365.00,328.00,2454.00,,,,,,\n2015,5,21,\"DL\",\"2632\",\"JFK\",\"MCO\",1.00,-9.00,0.00,\"\",0.00,173.00,136.00,944.00,,,,,,\n2015,5,21,\"DL\",\"2634\",\"JFK\",\"BUF\",-2.00,-15.00,0.00,\"\",0.00,90.00,54.00,301.00,,,,,,\n2015,5,21,\"DL\",\"2645\",\"JFK\",\"RSW\",2.00,-2.00,0.00,\"\",0.00,197.00,162.00,1074.00,,,,,,\n2015,5,21,\"DL\",\"2649\",\"JFK\",\"TPA\",-3.00,15.00,0.00,\"\",0.00,206.00,141.00,1005.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,21,\"DL\",\"2650\",\"TPA\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,151.00,129.00,1005.00,,,,,,\n2015,5,21,\"DL\",\"2652\",\"TPA\",\"JFK\",17.00,16.00,0.00,\"\",0.00,173.00,137.00,1005.00,2.00,0.00,0.00,0.00,14.00,\n2015,5,21,\"DL\",\"2653\",\"MCO\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,155.00,128.00,944.00,,,,,,\n2015,5,21,\"DL\",\"2665\",\"BOS\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,73.00,42.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2666\",\"LGA\",\"BOS\",-1.00,-2.00,0.00,\"\",0.00,65.00,40.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2667\",\"BOS\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,78.00,45.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2668\",\"LGA\",\"BOS\",0.00,0.00,0.00,\"\",0.00,71.00,40.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2669\",\"BOS\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,75.00,45.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2670\",\"LGA\",\"BOS\",-1.00,1.00,0.00,\"\",0.00,69.00,38.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2671\",\"BOS\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,74.00,46.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2672\",\"LGA\",\"BOS\",-2.00,-4.00,0.00,\"\",0.00,80.00,41.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2673\",\"BOS\",\"LGA\",-3.00,9.00,0.00,\"\",0.00,85.00,44.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2674\",\"LGA\",\"BOS\",-5.00,-22.00,0.00,\"\",0.00,66.00,39.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2675\",\"BOS\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,74.00,45.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2676\",\"LGA\",\"BOS\",-2.00,-16.00,0.00,\"\",0.00,62.00,39.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2677\",\"BOS\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,75.00,43.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2678\",\"LGA\",\"BOS\",-1.00,-25.00,0.00,\"\",0.00,59.00,36.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2679\",\"BOS\",\"LGA\",-3.00,0.00,0.00,\"\",0.00,80.00,47.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2680\",\"LGA\",\"BOS\",-3.00,-19.00,0.00,\"\",0.00,63.00,38.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2681\",\"BOS\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,75.00,44.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2682\",\"LGA\",\"BOS\",-1.00,17.00,0.00,\"\",0.00,90.00,43.00,184.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,21,\"DL\",\"2683\",\"BOS\",\"LGA\",-2.00,4.00,0.00,\"\",0.00,80.00,44.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2684\",\"LGA\",\"BOS\",0.00,-14.00,0.00,\"\",0.00,61.00,38.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2685\",\"BOS\",\"LGA\",9.00,1.00,0.00,\"\",0.00,64.00,43.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2686\",\"LGA\",\"BOS\",1.00,1.00,0.00,\"\",0.00,82.00,38.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2687\",\"BOS\",\"LGA\",5.00,25.00,0.00,\"\",0.00,96.00,49.00,184.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,21,\"DL\",\"2688\",\"LGA\",\"BOS\",-1.00,13.00,0.00,\"\",0.00,97.00,40.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2689\",\"BOS\",\"LGA\",11.00,6.00,0.00,\"\",0.00,75.00,43.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2690\",\"LGA\",\"BOS\",1.00,-5.00,0.00,\"\",0.00,79.00,40.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2691\",\"BOS\",\"LGA\",6.00,3.00,0.00,\"\",0.00,74.00,41.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2692\",\"LGA\",\"BOS\",24.00,15.00,0.00,\"\",0.00,70.00,40.00,184.00,2.00,0.00,0.00,0.00,13.00,\n2015,5,21,\"DL\",\"2693\",\"BOS\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,76.00,44.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2694\",\"LGA\",\"BOS\",-3.00,-2.00,0.00,\"\",0.00,79.00,36.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2696\",\"LGA\",\"BOS\",33.00,25.00,0.00,\"\",0.00,60.00,38.00,184.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"DL\",\"2699\",\"BOS\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,70.00,45.00,184.00,,,,,,\n2015,5,21,\"DL\",\"2785\",\"JFK\",\"CHS\",-7.00,27.00,0.00,\"\",0.00,170.00,100.00,636.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,22,\"DL\",\"42\",\"MIA\",\"JFK\",23.00,8.00,0.00,\"\",0.00,174.00,140.00,1089.00,,,,,,\n2015,5,22,\"DL\",\"208\",\"JFK\",\"MCO\",4.00,-2.00,0.00,\"\",0.00,181.00,136.00,944.00,,,,,,\n2015,5,22,\"DL\",\"221\",\"LGA\",\"ATL\",0.00,-34.00,0.00,\"\",0.00,131.00,109.00,762.00,,,,,,\n2015,5,22,\"DL\",\"234\",\"PIT\",\"JFK\",36.00,25.00,0.00,\"\",0.00,89.00,53.00,340.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,22,\"DL\",\"245\",\"JFK\",\"SLC\",-5.00,6.00,0.00,\"\",0.00,339.00,292.00,1990.00,,,,,,\n2015,5,22,\"DL\",\"326\",\"SJU\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,225.00,208.00,1598.00,,,,,,\n2015,5,22,\"DL\",\"332\",\"SJU\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,229.00,207.00,1598.00,,,,,,\n2015,5,22,\"DL\",\"333\",\"MSP\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,147.00,118.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"342\",\"SFO\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,321.00,300.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"347\",\"LGA\",\"ATL\",-3.00,-1.00,0.00,\"\",0.00,160.00,116.00,762.00,,,,,,\n2015,5,22,\"DL\",\"348\",\"SJU\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,229.00,205.00,1598.00,,,,,,\n2015,5,22,\"DL\",\"350\",\"LGA\",\"ATL\",18.00,9.00,0.00,\"\",0.00,144.00,119.00,762.00,,,,,,\n2015,5,22,\"DL\",\"400\",\"PDX\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,319.00,290.00,2454.00,,,,,,\n2015,5,22,\"DL\",\"401\",\"AUS\",\"JFK\",11.00,14.00,0.00,\"\",0.00,242.00,196.00,1521.00,,,,,,\n2015,5,22,\"DL\",\"403\",\"PDX\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,314.00,288.00,2454.00,,,,,,\n2015,5,22,\"DL\",\"404\",\"JFK\",\"ATL\",-1.00,-30.00,0.00,\"\",0.00,140.00,116.00,760.00,,,,,,\n2015,5,22,\"DL\",\"405\",\"JFK\",\"TPA\",-1.00,2.00,0.00,\"\",0.00,174.00,144.00,1005.00,,,,,,\n2015,5,22,\"DL\",\"407\",\"MCO\",\"JFK\",5.00,-4.00,0.00,\"\",0.00,160.00,120.00,944.00,,,,,,\n2015,5,22,\"DL\",\"408\",\"JFK\",\"SLC\",9.00,20.00,0.00,\"\",0.00,316.00,280.00,1990.00,9.00,0.00,11.00,0.00,0.00,\n2015,5,22,\"DL\",\"409\",\"JFK\",\"SJU\",6.00,-27.00,0.00,\"\",0.00,214.00,191.00,1598.00,,,,,,\n2015,5,22,\"DL\",\"410\",\"MSP\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,153.00,127.00,1029.00,,,,,,\n2015,5,22,\"DL\",\"412\",\"LAX\",\"JFK\",7.00,-16.00,0.00,\"\",0.00,316.00,282.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"414\",\"SFO\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,324.00,303.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"415\",\"JFK\",\"SFO\",27.00,53.00,0.00,\"\",0.00,434.00,373.00,2586.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,22,\"DL\",\"417\",\"JFK\",\"SEA\",25.00,15.00,0.00,\"\",0.00,372.00,329.00,2422.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"DL\",\"418\",\"SEA\",\"JFK\",-5.00,-33.00,0.00,\"\",0.00,300.00,276.00,2422.00,,,,,,\n2015,5,22,\"DL\",\"419\",\"JFK\",\"SEA\",-5.00,-23.00,0.00,\"\",0.00,361.00,331.00,2422.00,,,,,,\n2015,5,22,\"DL\",\"420\",\"JFK\",\"LAX\",-2.00,-9.00,0.00,\"\",0.00,391.00,355.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"421\",\"JFK\",\"ATL\",4.00,-3.00,0.00,\"\",0.00,160.00,112.00,760.00,,,,,,\n2015,5,22,\"DL\",\"422\",\"JFK\",\"LAX\",0.00,3.00,0.00,\"\",0.00,383.00,336.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"423\",\"JFK\",\"LAX\",20.00,6.00,0.00,\"\",0.00,359.00,339.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"424\",\"JFK\",\"LAX\",-1.00,-7.00,0.00,\"\",0.00,364.00,330.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"426\",\"JFK\",\"MCO\",-2.00,-17.00,0.00,\"\",0.00,157.00,138.00,944.00,,,,,,\n2015,5,22,\"DL\",\"427\",\"JFK\",\"LAX\",13.00,21.00,0.00,\"\",0.00,396.00,346.00,2475.00,13.00,0.00,8.00,0.00,0.00,\n2015,5,22,\"DL\",\"428\",\"JFK\",\"FLL\",-5.00,-5.00,0.00,\"\",0.00,184.00,149.00,1069.00,,,,,,\n2015,5,22,\"DL\",\"430\",\"JFK\",\"SFO\",-2.00,-23.00,0.00,\"\",0.00,363.00,340.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"431\",\"JFK\",\"SFO\",8.00,5.00,0.00,\"\",0.00,406.00,357.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"434\",\"JFK\",\"SFO\",0.00,-8.00,0.00,\"\",0.00,396.00,347.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"435\",\"JFK\",\"SFO\",32.00,6.00,0.00,\"\",0.00,378.00,354.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"436\",\"JFK\",\"LAS\",6.00,8.00,0.00,\"\",0.00,352.00,312.00,2248.00,,,,,,\n2015,5,22,\"DL\",\"437\",\"JFK\",\"BOS\",-3.00,18.00,0.00,\"\",0.00,98.00,35.00,187.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,22,\"DL\",\"438\",\"JFK\",\"MCO\",23.00,23.00,0.00,\"\",0.00,168.00,136.00,944.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"DL\",\"439\",\"JFK\",\"MSP\",-3.00,20.00,0.00,\"\",0.00,215.00,158.00,1029.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,22,\"DL\",\"440\",\"JFK\",\"SAN\",12.00,40.00,0.00,\"\",0.00,403.00,358.00,2446.00,12.00,0.00,28.00,0.00,0.00,\n2015,5,22,\"DL\",\"442\",\"JFK\",\"AUS\",1.00,1.00,0.00,\"\",0.00,264.00,212.00,1521.00,,,,,,\n2015,5,22,\"DL\",\"443\",\"JFK\",\"LAS\",0.00,3.00,0.00,\"\",0.00,357.00,327.00,2248.00,,,,,,\n2015,5,22,\"DL\",\"444\",\"SLC\",\"JFK\",2.00,-13.00,0.00,\"\",0.00,265.00,240.00,1990.00,,,,,,\n2015,5,22,\"DL\",\"445\",\"JFK\",\"PDX\",30.00,-3.00,0.00,\"\",0.00,345.00,326.00,2454.00,,,,,,\n2015,5,22,\"DL\",\"447\",\"JFK\",\"LAX\",10.00,-3.00,0.00,\"\",0.00,377.00,360.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"448\",\"JFK\",\"SEA\",0.00,28.00,0.00,\"\",0.00,388.00,323.00,2422.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,22,\"DL\",\"451\",\"JFK\",\"SJU\",10.00,11.00,0.00,\"\",0.00,243.00,190.00,1598.00,,,,,,\n2015,5,22,\"DL\",\"453\",\"JFK\",\"CHS\",-4.00,-4.00,0.00,\"\",0.00,139.00,95.00,636.00,,,,,,\n2015,5,22,\"DL\",\"454\",\"JFK\",\"ATL\",-4.00,0.00,0.00,\"\",0.00,156.00,113.00,760.00,,,,,,\n2015,5,22,\"DL\",\"455\",\"JFK\",\"SAN\",46.00,49.00,0.00,\"\",0.00,381.00,336.00,2446.00,6.00,0.00,3.00,0.00,40.00,\n2015,5,22,\"DL\",\"456\",\"JFK\",\"SEA\",-2.00,-23.00,0.00,\"\",0.00,342.00,321.00,2422.00,,,,,,\n2015,5,22,\"DL\",\"459\",\"JFK\",\"CHS\",-5.00,-25.00,0.00,\"\",0.00,116.00,95.00,636.00,,,,,,\n2015,5,22,\"DL\",\"460\",\"JFK\",\"SLC\",2.00,-5.00,0.00,\"\",0.00,318.00,284.00,1990.00,,,,,,\n2015,5,22,\"DL\",\"463\",\"JFK\",\"PIT\",-1.00,-30.00,0.00,\"\",0.00,92.00,68.00,340.00,,,,,,\n2015,5,22,\"DL\",\"464\",\"JFK\",\"MIA\",7.00,8.00,0.00,\"\",0.00,182.00,163.00,1089.00,,,,,,\n2015,5,22,\"DL\",\"465\",\"JFK\",\"STT\",-5.00,-15.00,0.00,\"\",0.00,236.00,198.00,1623.00,,,,,,\n2015,5,22,\"DL\",\"466\",\"SLC\",\"JFK\",-1.00,-24.00,0.00,\"\",0.00,254.00,235.00,1990.00,,,,,,\n2015,5,22,\"DL\",\"468\",\"SFO\",\"JFK\",13.00,-13.00,0.00,\"\",0.00,323.00,287.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"469\",\"JFK\",\"SFO\",0.00,-8.00,0.00,\"\",0.00,382.00,357.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"472\",\"JFK\",\"LAX\",-1.00,-12.00,0.00,\"\",0.00,371.00,331.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"476\",\"LAX\",\"JFK\",1.00,-26.00,0.00,\"\",0.00,308.00,282.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"477\",\"JFK\",\"LAX\",0.00,16.00,0.00,\"\",0.00,411.00,351.00,2475.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,22,\"DL\",\"478\",\"ATL\",\"JFK\",28.00,-11.00,0.00,\"\",0.00,113.00,96.00,760.00,,,,,,\n2015,5,22,\"DL\",\"480\",\"JFK\",\"SJU\",-5.00,-29.00,0.00,\"\",0.00,210.00,192.00,1598.00,,,,,,\n2015,5,22,\"DL\",\"486\",\"JFK\",\"LAS\",3.00,49.00,0.00,\"\",0.00,378.00,320.00,2248.00,0.00,0.00,49.00,0.00,0.00,\n2015,5,22,\"DL\",\"488\",\"JFK\",\"SJU\",-8.00,-13.00,0.00,\"\",0.00,222.00,191.00,1598.00,,,,,,\n2015,5,22,\"DL\",\"491\",\"JFK\",\"SJU\",-6.00,-12.00,0.00,\"\",0.00,232.00,192.00,1598.00,,,,,,\n2015,5,22,\"DL\",\"494\",\"JFK\",\"LAS\",-1.00,1.00,0.00,\"\",0.00,358.00,313.00,2248.00,,,,,,\n2015,5,22,\"DL\",\"496\",\"JFK\",\"BOS\",-9.00,-19.00,0.00,\"\",0.00,73.00,48.00,187.00,,,,,,\n2015,5,22,\"DL\",\"497\",\"JFK\",\"ATL\",0.00,-12.00,0.00,\"\",0.00,141.00,121.00,760.00,,,,,,\n2015,5,22,\"DL\",\"498\",\"JFK\",\"SFO\",6.00,-22.00,0.00,\"\",0.00,380.00,336.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"499\",\"JFK\",\"SLC\",-6.00,-5.00,0.00,\"\",0.00,311.00,280.00,1990.00,,,,,,\n2015,5,22,\"DL\",\"511\",\"SJU\",\"JFK\",-4.00,-30.00,0.00,\"\",0.00,223.00,206.00,1598.00,,,,,,\n2015,5,22,\"DL\",\"527\",\"RSW\",\"JFK\",1.00,-6.00,0.00,\"\",0.00,157.00,136.00,1074.00,,,,,,\n2015,5,22,\"DL\",\"528\",\"LGA\",\"MSP\",-4.00,4.00,0.00,\"\",0.00,193.00,149.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"541\",\"LAS\",\"JFK\",-4.00,-36.00,0.00,\"\",0.00,266.00,248.00,2248.00,,,,,,\n2015,5,22,\"DL\",\"544\",\"ALB\",\"ATL\",-5.00,-6.00,0.00,\"\",0.00,154.00,130.00,853.00,,,,,,\n2015,5,22,\"DL\",\"582\",\"DTW\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,94.00,69.00,502.00,,,,,,\n2015,5,22,\"DL\",\"583\",\"LGA\",\"DTW\",19.00,22.00,0.00,\"\",0.00,117.00,90.00,502.00,19.00,0.00,3.00,0.00,0.00,\n2015,5,22,\"DL\",\"662\",\"BUF\",\"MSP\",-2.00,-18.00,0.00,\"\",0.00,128.00,106.00,735.00,,,,,,\n2015,5,22,\"DL\",\"664\",\"TPA\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,149.00,128.00,1010.00,,,,,,\n2015,5,22,\"DL\",\"665\",\"ATL\",\"ALB\",-3.00,-10.00,0.00,\"\",0.00,133.00,111.00,853.00,,,,,,\n2015,5,22,\"DL\",\"665\",\"ALB\",\"ATL\",-9.00,-5.00,0.00,\"\",0.00,156.00,131.00,853.00,,,,,,\n2015,5,22,\"DL\",\"676\",\"STT\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,243.00,220.00,1623.00,,,,,,\n2015,5,22,\"DL\",\"714\",\"DTW\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,95.00,68.00,502.00,,,,,,\n2015,5,22,\"DL\",\"723\",\"ATL\",\"BUF\",-1.00,-19.00,0.00,\"\",0.00,109.00,95.00,712.00,,,,,,\n2015,5,22,\"DL\",\"723\",\"BUF\",\"ATL\",12.00,1.00,0.00,\"\",0.00,120.00,100.00,712.00,,,,,,\n2015,5,22,\"DL\",\"725\",\"ATL\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,120.00,96.00,762.00,,,,,,\n2015,5,22,\"DL\",\"729\",\"LAS\",\"JFK\",-2.00,-4.00,0.00,\"\",0.00,303.00,247.00,2248.00,,,,,,\n2015,5,22,\"DL\",\"731\",\"LGA\",\"DTW\",-3.00,-9.00,0.00,\"\",0.00,108.00,87.00,502.00,,,,,,\n2015,5,22,\"DL\",\"742\",\"DTW\",\"ROC\",-6.00,-27.00,0.00,\"\",0.00,56.00,42.00,296.00,,,,,,\n2015,5,22,\"DL\",\"742\",\"ROC\",\"DTW\",-8.00,2.00,0.00,\"\",0.00,91.00,61.00,296.00,,,,,,\n2015,5,22,\"DL\",\"750\",\"BOS\",\"JFK\",-6.00,-3.00,0.00,\"\",0.00,83.00,45.00,187.00,,,,,,\n2015,5,22,\"DL\",\"763\",\"BOS\",\"JFK\",22.00,19.00,0.00,\"\",0.00,75.00,45.00,187.00,11.00,0.00,0.00,0.00,8.00,\n2015,5,22,\"DL\",\"765\",\"DTW\",\"BUF\",-3.00,-10.00,0.00,\"\",0.00,58.00,42.00,241.00,,,,,,\n2015,5,22,\"DL\",\"765\",\"BUF\",\"DTW\",-3.00,-2.00,0.00,\"\",0.00,76.00,46.00,241.00,,,,,,\n2015,5,22,\"DL\",\"772\",\"PBI\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,151.00,130.00,1035.00,,,,,,\n2015,5,22,\"DL\",\"782\",\"MIA\",\"JFK\",14.00,-7.00,0.00,\"\",0.00,161.00,140.00,1089.00,,,,,,\n2015,5,22,\"DL\",\"787\",\"MCO\",\"JFK\",4.00,-24.00,0.00,\"\",0.00,138.00,117.00,944.00,,,,,,\n2015,5,22,\"DL\",\"789\",\"MIA\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,182.00,145.00,1096.00,,,,,,\n2015,5,22,\"DL\",\"791\",\"LAX\",\"JFK\",-4.00,-36.00,0.00,\"\",0.00,298.00,275.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"792\",\"PBI\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,157.00,128.00,1028.00,,,,,,\n2015,5,22,\"DL\",\"793\",\"BOS\",\"JFK\",21.00,7.00,0.00,\"\",0.00,80.00,46.00,187.00,,,,,,\n2015,5,22,\"DL\",\"802\",\"ATL\",\"LGA\",-1.00,-31.00,0.00,\"\",0.00,115.00,95.00,762.00,,,,,,\n2015,5,22,\"DL\",\"804\",\"LGA\",\"MSP\",-5.00,-18.00,0.00,\"\",0.00,181.00,154.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"856\",\"SAN\",\"JFK\",41.00,-3.00,0.00,\"\",0.00,293.00,265.00,2446.00,,,,,,\n2015,5,22,\"DL\",\"871\",\"MSP\",\"LGA\",51.00,37.00,0.00,\"\",0.00,150.00,120.00,1020.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"DL\",\"874\",\"LGA\",\"MIA\",-3.00,-3.00,0.00,\"\",0.00,205.00,147.00,1096.00,,,,,,\n2015,5,22,\"DL\",\"878\",\"RSW\",\"LGA\",-9.00,-18.00,0.00,\"\",0.00,163.00,135.00,1080.00,,,,,,\n2015,5,22,\"DL\",\"884\",\"LGA\",\"DEN\",-1.00,-7.00,0.00,\"\",0.00,268.00,238.00,1620.00,,,,,,\n2015,5,22,\"DL\",\"889\",\"MSP\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,147.00,122.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"904\",\"LGA\",\"ATL\",-2.00,-3.00,0.00,\"\",0.00,148.00,113.00,762.00,,,,,,\n2015,5,22,\"DL\",\"906\",\"ATL\",\"LGA\",-2.00,-29.00,0.00,\"\",0.00,118.00,98.00,762.00,,,,,,\n2015,5,22,\"DL\",\"907\",\"ROC\",\"MSP\",-5.00,-29.00,0.00,\"\",0.00,127.00,113.00,783.00,,,,,,\n2015,5,22,\"DL\",\"909\",\"LGA\",\"MIA\",-2.00,-7.00,0.00,\"\",0.00,189.00,151.00,1096.00,,,,,,\n2015,5,22,\"DL\",\"910\",\"MCO\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,142.00,120.00,950.00,,,,,,\n2015,5,22,\"DL\",\"928\",\"DEN\",\"LGA\",-6.00,-43.00,0.00,\"\",0.00,199.00,183.00,1620.00,,,,,,\n2015,5,22,\"DL\",\"939\",\"MCO\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,143.00,123.00,950.00,,,,,,\n2015,5,22,\"DL\",\"964\",\"LGA\",\"ATL\",-9.00,-30.00,0.00,\"\",0.00,125.00,106.00,762.00,,,,,,\n2015,5,22,\"DL\",\"965\",\"MCO\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,142.00,124.00,950.00,,,,,,\n2015,5,22,\"DL\",\"971\",\"LGA\",\"DEN\",-3.00,0.00,0.00,\"\",0.00,270.00,239.00,1620.00,,,,,,\n2015,5,22,\"DL\",\"986\",\"ATL\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,120.00,98.00,762.00,,,,,,\n2015,5,22,\"DL\",\"997\",\"DTW\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,99.00,68.00,502.00,,,,,,\n2015,5,22,\"DL\",\"1086\",\"LGA\",\"ATL\",-2.00,6.00,0.00,\"\",0.00,170.00,119.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1088\",\"FLL\",\"LGA\",-5.00,-28.00,0.00,\"\",0.00,154.00,140.00,1076.00,,,,,,\n2015,5,22,\"DL\",\"1109\",\"SEA\",\"JFK\",2.00,-33.00,0.00,\"\",0.00,300.00,275.00,2422.00,,,,,,\n2015,5,22,\"DL\",\"1111\",\"ATL\",\"ROC\",1.00,-22.00,0.00,\"\",0.00,106.00,97.00,749.00,,,,,,\n2015,5,22,\"DL\",\"1121\",\"PBI\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,155.00,137.00,1035.00,,,,,,\n2015,5,22,\"DL\",\"1131\",\"LGA\",\"FLL\",-2.00,-7.00,0.00,\"\",0.00,187.00,151.00,1076.00,,,,,,\n2015,5,22,\"DL\",\"1145\",\"LGA\",\"DTW\",-6.00,14.00,0.00,\"\",0.00,144.00,94.00,502.00,,,,,,\n2015,5,22,\"DL\",\"1155\",\"DTW\",\"ROC\",-5.00,-4.00,0.00,\"\",0.00,72.00,43.00,296.00,,,,,,\n2015,5,22,\"DL\",\"1159\",\"ATL\",\"BUF\",-4.00,-15.00,0.00,\"\",0.00,111.00,96.00,712.00,,,,,,\n2015,5,22,\"DL\",\"1159\",\"BUF\",\"ATL\",-2.00,-13.00,0.00,\"\",0.00,118.00,100.00,712.00,,,,,,\n2015,5,22,\"DL\",\"1162\",\"LAX\",\"JFK\",2.00,-29.00,0.00,\"\",0.00,294.00,272.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"1174\",\"LGA\",\"PBI\",31.00,32.00,0.00,\"\",0.00,181.00,140.00,1035.00,31.00,0.00,1.00,0.00,0.00,\n2015,5,22,\"DL\",\"1176\",\"ATL\",\"BUF\",12.00,1.00,0.00,\"\",0.00,119.00,91.00,712.00,,,,,,\n2015,5,22,\"DL\",\"1176\",\"BUF\",\"ATL\",3.00,-11.00,0.00,\"\",0.00,120.00,102.00,712.00,,,,,,\n2015,5,22,\"DL\",\"1186\",\"ATL\",\"LGA\",7.00,-4.00,0.00,\"\",0.00,130.00,89.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1214\",\"LGA\",\"ATL\",2.00,-19.00,0.00,\"\",0.00,143.00,115.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1227\",\"PHX\",\"JFK\",-6.00,-46.00,0.00,\"\",0.00,250.00,231.00,2153.00,,,,,,\n2015,5,22,\"DL\",\"2037\",\"MCO\",\"LGA\",9.00,-5.00,0.00,\"\",0.00,143.00,120.00,950.00,,,,,,\n2015,5,22,\"DL\",\"2040\",\"SFO\",\"JFK\",-3.00,-33.00,0.00,\"\",0.00,311.00,290.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"2043\",\"JFK\",\"PHX\",-15.00,6.00,0.00,\"\",0.00,362.00,306.00,2153.00,,,,,,\n2015,5,22,\"DL\",\"2044\",\"JFK\",\"BOS\",15.00,-25.00,0.00,\"\",0.00,61.00,43.00,187.00,,,,,,\n2015,5,22,\"DL\",\"2058\",\"MCO\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,141.00,118.00,944.00,,,,,,\n2015,5,22,\"DL\",\"2059\",\"JFK\",\"ATL\",-6.00,-27.00,0.00,\"\",0.00,148.00,107.00,760.00,,,,,,\n2015,5,22,\"DL\",\"2074\",\"LGA\",\"ATL\",-3.00,0.00,0.00,\"\",0.00,161.00,118.00,762.00,,,,,,\n2015,5,22,\"DL\",\"2077\",\"LGA\",\"MCO\",-1.00,-12.00,0.00,\"\",0.00,165.00,135.00,950.00,,,,,,\n2015,5,22,\"DL\",\"2086\",\"ATL\",\"LGA\",10.00,-6.00,0.00,\"\",0.00,128.00,95.00,762.00,,,,,,\n2015,5,22,\"DL\",\"2096\",\"LGA\",\"MSP\",-3.00,-18.00,0.00,\"\",0.00,167.00,151.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"2106\",\"MSP\",\"SYR\",1.00,-7.00,0.00,\"\",0.00,120.00,102.00,860.00,,,,,,\n2015,5,22,\"DL\",\"2119\",\"LGA\",\"MSP\",-1.00,-4.00,0.00,\"\",0.00,182.00,147.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"2129\",\"ROC\",\"ATL\",-6.00,-13.00,0.00,\"\",0.00,122.00,102.00,749.00,,,,,,\n2015,5,22,\"DL\",\"2131\",\"LGA\",\"DTW\",-5.00,-6.00,0.00,\"\",0.00,118.00,86.00,502.00,,,,,,\n2015,5,22,\"DL\",\"2135\",\"TPA\",\"LGA\",-6.00,-25.00,0.00,\"\",0.00,145.00,127.00,1010.00,,,,,,\n2015,5,22,\"DL\",\"2148\",\"LGA\",\"DTW\",-6.00,-5.00,0.00,\"\",0.00,129.00,84.00,502.00,,,,,,\n2015,5,22,\"DL\",\"2150\",\"LGA\",\"DTW\",-1.00,6.00,0.00,\"\",0.00,133.00,91.00,502.00,,,,,,\n2015,5,22,\"DL\",\"2151\",\"MIA\",\"LGA\",-6.00,-28.00,0.00,\"\",0.00,164.00,144.00,1096.00,,,,,,\n2015,5,22,\"DL\",\"2155\",\"LAS\",\"JFK\",60.00,26.00,0.00,\"\",0.00,265.00,251.00,2248.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"DL\",\"2156\",\"ATL\",\"SYR\",11.00,-2.00,0.00,\"\",0.00,117.00,99.00,794.00,,,,,,\n2015,5,22,\"DL\",\"2156\",\"SYR\",\"ATL\",-1.00,-9.00,0.00,\"\",0.00,135.00,116.00,794.00,,,,,,\n2015,5,22,\"DL\",\"2166\",\"SYR\",\"DTW\",-5.00,-15.00,0.00,\"\",0.00,83.00,64.00,374.00,,,,,,\n2015,5,22,\"DL\",\"2174\",\"DTW\",\"JFK\",21.00,8.00,0.00,\"\",0.00,108.00,68.00,509.00,,,,,,\n2015,5,22,\"DL\",\"2175\",\"JFK\",\"TPA\",-11.00,-13.00,0.00,\"\",0.00,184.00,143.00,1005.00,,,,,,\n2015,5,22,\"DL\",\"2178\",\"LGA\",\"TPA\",-5.00,-28.00,0.00,\"\",0.00,158.00,143.00,1010.00,,,,,,\n2015,5,5,\"DL\",\"889\",\"MSP\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,150.00,132.00,1020.00,,,,,,\n2015,5,5,\"DL\",\"904\",\"LGA\",\"ATL\",-4.00,-23.00,0.00,\"\",0.00,130.00,105.00,762.00,,,,,,\n2015,5,5,\"DL\",\"906\",\"ATL\",\"LGA\",-3.00,-27.00,0.00,\"\",0.00,121.00,101.00,762.00,,,,,,\n2015,5,5,\"DL\",\"909\",\"LGA\",\"MIA\",-4.00,-25.00,0.00,\"\",0.00,173.00,156.00,1096.00,,,,,,\n2015,5,5,\"DL\",\"910\",\"MCO\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,154.00,132.00,950.00,,,,,,\n2015,5,5,\"DL\",\"928\",\"DEN\",\"LGA\",-7.00,-32.00,0.00,\"\",0.00,211.00,192.00,1620.00,,,,,,\n2015,5,5,\"DL\",\"939\",\"MCO\",\"LGA\",11.00,-7.00,0.00,\"\",0.00,145.00,125.00,950.00,,,,,,\n2015,5,5,\"DL\",\"964\",\"LGA\",\"ATL\",-11.00,-25.00,0.00,\"\",0.00,132.00,109.00,762.00,,,,,,\n2015,5,5,\"DL\",\"965\",\"MCO\",\"LGA\",2.00,-12.00,0.00,\"\",0.00,147.00,124.00,950.00,,,,,,\n2015,5,5,\"DL\",\"971\",\"LGA\",\"DEN\",-5.00,-30.00,0.00,\"\",0.00,242.00,224.00,1620.00,,,,,,\n2015,5,22,\"DL\",\"1242\",\"LGA\",\"PBI\",-5.00,-6.00,0.00,\"\",0.00,183.00,144.00,1035.00,,,,,,\n2015,5,22,\"DL\",\"1262\",\"LAX\",\"JFK\",-4.00,-35.00,0.00,\"\",0.00,302.00,275.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"1264\",\"SLC\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,247.00,224.00,1990.00,,,,,,\n2015,5,22,\"DL\",\"1266\",\"BUF\",\"ATL\",1.00,-9.00,0.00,\"\",0.00,112.00,97.00,712.00,,,,,,\n2015,5,22,\"DL\",\"1269\",\"LGA\",\"MIA\",-2.00,4.00,0.00,\"\",0.00,203.00,164.00,1096.00,,,,,,\n2015,5,22,\"DL\",\"1278\",\"MSP\",\"BUF\",-7.00,-17.00,0.00,\"\",0.00,109.00,86.00,735.00,,,,,,\n2015,5,22,\"DL\",\"1286\",\"ATL\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,114.00,94.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1288\",\"LGA\",\"FLL\",-3.00,-2.00,0.00,\"\",0.00,196.00,153.00,1076.00,,,,,,\n2015,5,22,\"DL\",\"1289\",\"LGA\",\"ATL\",0.00,-20.00,0.00,\"\",0.00,142.00,113.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1298\",\"LGA\",\"ATL\",1.00,-8.00,0.00,\"\",0.00,152.00,118.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1306\",\"DTW\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,90.00,66.00,502.00,,,,,,\n2015,5,22,\"DL\",\"1312\",\"TPA\",\"JFK\",16.00,12.00,0.00,\"\",0.00,170.00,133.00,1005.00,,,,,,\n2015,5,22,\"DL\",\"1335\",\"MIA\",\"LGA\",1.00,-21.00,0.00,\"\",0.00,161.00,138.00,1096.00,,,,,,\n2015,5,22,\"DL\",\"1356\",\"BUF\",\"DTW\",0.00,0.00,0.00,\"\",0.00,71.00,50.00,241.00,,,,,,\n2015,5,22,\"DL\",\"1359\",\"MCO\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,149.00,122.00,950.00,,,,,,\n2015,5,22,\"DL\",\"1370\",\"ATL\",\"ROC\",-6.00,-13.00,0.00,\"\",0.00,118.00,96.00,749.00,,,,,,\n2015,5,22,\"DL\",\"1370\",\"ROC\",\"ATL\",-5.00,-11.00,0.00,\"\",0.00,128.00,107.00,749.00,,,,,,\n2015,5,22,\"DL\",\"1372\",\"DTW\",\"BUF\",-9.00,-17.00,0.00,\"\",0.00,58.00,36.00,241.00,,,,,,\n2015,5,22,\"DL\",\"1383\",\"LGA\",\"ATL\",-4.00,-26.00,0.00,\"\",0.00,146.00,115.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1386\",\"ATL\",\"LGA\",18.00,0.00,0.00,\"\",0.00,116.00,98.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1394\",\"ATL\",\"JFK\",16.00,-4.00,0.00,\"\",0.00,133.00,93.00,760.00,,,,,,\n2015,5,22,\"DL\",\"1419\",\"ATL\",\"JFK\",18.00,1.00,0.00,\"\",0.00,138.00,100.00,760.00,,,,,,\n2015,5,22,\"DL\",\"1428\",\"LGA\",\"ATL\",-4.00,1.00,0.00,\"\",0.00,163.00,119.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1447\",\"LGA\",\"ATL\",-2.00,-7.00,0.00,\"\",0.00,139.00,115.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1473\",\"SEA\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,311.00,282.00,2422.00,,,,,,\n2015,5,22,\"DL\",\"1486\",\"ATL\",\"LGA\",21.00,10.00,0.00,\"\",0.00,128.00,100.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1487\",\"ATL\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,133.00,97.00,760.00,,,,,,\n2015,5,22,\"DL\",\"1496\",\"MSP\",\"LGA\",22.00,4.00,0.00,\"\",0.00,148.00,126.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"1498\",\"FLL\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,165.00,140.00,1076.00,,,,,,\n2015,5,22,\"DL\",\"1514\",\"LGA\",\"FLL\",-3.00,-7.00,0.00,\"\",0.00,185.00,155.00,1076.00,,,,,,\n2015,5,22,\"DL\",\"1515\",\"ATL\",\"ALB\",-4.00,-12.00,0.00,\"\",0.00,139.00,112.00,853.00,,,,,,\n2015,5,22,\"DL\",\"1526\",\"MCO\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,140.00,119.00,950.00,,,,,,\n2015,5,22,\"DL\",\"1542\",\"SEA\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,299.00,275.00,2422.00,,,,,,\n2015,5,22,\"DL\",\"1543\",\"ATL\",\"ALB\",-5.00,-8.00,0.00,\"\",0.00,141.00,109.00,853.00,,,,,,\n2015,5,22,\"DL\",\"1543\",\"ALB\",\"ATL\",-5.00,0.00,0.00,\"\",0.00,167.00,143.00,853.00,,,,,,\n2015,5,22,\"DL\",\"1548\",\"LGA\",\"DTW\",6.00,-2.00,0.00,\"\",0.00,112.00,87.00,502.00,,,,,,\n2015,5,22,\"DL\",\"1560\",\"MSY\",\"LGA\",-4.00,-25.00,0.00,\"\",0.00,165.00,142.00,1183.00,,,,,,\n2015,5,22,\"DL\",\"1562\",\"BOS\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,72.00,42.00,187.00,,,,,,\n2015,5,22,\"DL\",\"1566\",\"LGA\",\"PBI\",-2.00,-26.00,0.00,\"\",0.00,159.00,140.00,1035.00,,,,,,\n2015,5,22,\"DL\",\"1580\",\"LGA\",\"DTW\",-3.00,-19.00,0.00,\"\",0.00,109.00,86.00,502.00,,,,,,\n2015,5,22,\"DL\",\"1583\",\"SFO\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,342.00,288.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"1584\",\"ATL\",\"ROC\",-3.00,-21.00,0.00,\"\",0.00,115.00,102.00,749.00,,,,,,\n2015,5,22,\"DL\",\"1584\",\"ROC\",\"ATL\",-6.00,-6.00,0.00,\"\",0.00,135.00,110.00,749.00,,,,,,\n2015,5,22,\"DL\",\"1586\",\"ATL\",\"LGA\",0.00,-26.00,0.00,\"\",0.00,118.00,99.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1596\",\"MSP\",\"LGA\",-1.00,-30.00,0.00,\"\",0.00,136.00,119.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"1644\",\"FLL\",\"JFK\",-1.00,-26.00,0.00,\"\",0.00,162.00,139.00,1069.00,,,,,,\n2015,5,22,\"DL\",\"1647\",\"LGA\",\"ATL\",-4.00,-2.00,0.00,\"\",0.00,154.00,117.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1671\",\"MIA\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,182.00,139.00,1089.00,,,,,,\n2015,5,22,\"DL\",\"1672\",\"ATL\",\"BUF\",22.00,8.00,0.00,\"\",0.00,105.00,90.00,712.00,,,,,,\n2015,5,22,\"DL\",\"1672\",\"BUF\",\"ATL\",5.00,-8.00,0.00,\"\",0.00,115.00,99.00,712.00,,,,,,\n2015,5,22,\"DL\",\"1685\",\"LGA\",\"MCO\",0.00,3.00,0.00,\"\",0.00,178.00,136.00,950.00,,,,,,\n2015,5,22,\"DL\",\"1697\",\"LGA\",\"ATL\",2.00,-17.00,0.00,\"\",0.00,139.00,109.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1728\",\"LAS\",\"JFK\",0.00,-36.00,0.00,\"\",0.00,265.00,247.00,2248.00,,,,,,\n2015,5,22,\"DL\",\"1750\",\"ATL\",\"JFK\",19.00,11.00,0.00,\"\",0.00,141.00,103.00,760.00,,,,,,\n2015,5,22,\"DL\",\"1762\",\"LAX\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,310.00,274.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"1779\",\"LGA\",\"MSY\",-1.00,-8.00,0.00,\"\",0.00,192.00,167.00,1183.00,,,,,,\n2015,5,22,\"DL\",\"1786\",\"ATL\",\"LGA\",1.00,-17.00,0.00,\"\",0.00,123.00,98.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1787\",\"FLL\",\"JFK\",15.00,-4.00,0.00,\"\",0.00,167.00,139.00,1069.00,,,,,,\n2015,5,22,\"DL\",\"1796\",\"LGA\",\"MSP\",0.00,-11.00,0.00,\"\",0.00,183.00,150.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"1830\",\"SLC\",\"JFK\",-1.00,-36.00,0.00,\"\",0.00,241.00,219.00,1990.00,,,,,,\n2015,5,22,\"DL\",\"1841\",\"SJU\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,229.00,207.00,1598.00,,,,,,\n2015,5,22,\"DL\",\"1848\",\"DTW\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,90.00,69.00,502.00,,,,,,\n2015,5,22,\"DL\",\"1849\",\"LGA\",\"ATL\",-5.00,-14.00,0.00,\"\",0.00,149.00,110.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1851\",\"CHS\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,104.00,83.00,636.00,,,,,,\n2015,5,22,\"DL\",\"1875\",\"LGA\",\"TPA\",-5.00,-1.00,0.00,\"\",0.00,184.00,147.00,1010.00,,,,,,\n2015,5,22,\"DL\",\"1879\",\"LGA\",\"FLL\",-3.00,-16.00,0.00,\"\",0.00,174.00,149.00,1076.00,,,,,,\n2015,5,22,\"DL\",\"1885\",\"LGA\",\"MCO\",-2.00,5.00,0.00,\"\",0.00,187.00,134.00,950.00,,,,,,\n2015,5,22,\"DL\",\"1886\",\"ATL\",\"LGA\",-5.00,-30.00,0.00,\"\",0.00,125.00,96.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1897\",\"LGA\",\"MCO\",-4.00,-23.00,0.00,\"\",0.00,155.00,132.00,950.00,,,,,,\n2015,5,22,\"DL\",\"1902\",\"LGA\",\"PBI\",0.00,-12.00,0.00,\"\",0.00,172.00,139.00,1035.00,,,,,,\n2015,5,22,\"DL\",\"1917\",\"MIA\",\"LGA\",-3.00,-26.00,0.00,\"\",0.00,161.00,142.00,1096.00,,,,,,\n2015,5,22,\"DL\",\"1919\",\"LGA\",\"MSP\",-3.00,-24.00,0.00,\"\",0.00,161.00,146.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"1930\",\"LGA\",\"MIA\",16.00,-18.00,0.00,\"\",0.00,164.00,145.00,1096.00,,,,,,\n2015,5,22,\"DL\",\"1935\",\"LGA\",\"TPA\",-3.00,-16.00,0.00,\"\",0.00,169.00,148.00,1010.00,,,,,,\n2015,5,22,\"DL\",\"1947\",\"FLL\",\"JFK\",38.00,26.00,0.00,\"\",0.00,171.00,141.00,1069.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,22,\"DL\",\"1948\",\"DTW\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,96.00,72.00,502.00,,,,,,\n2015,5,22,\"DL\",\"1949\",\"TPA\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,158.00,131.00,1010.00,,,,,,\n2015,5,22,\"DL\",\"1953\",\"LGA\",\"FLL\",66.00,39.00,0.00,\"\",0.00,167.00,142.00,1076.00,17.00,0.00,0.00,0.00,22.00,\n2015,5,22,\"DL\",\"1958\",\"PBI\",\"LGA\",31.00,21.00,0.00,\"\",0.00,166.00,136.00,1035.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,22,\"DL\",\"1969\",\"BUF\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,87.00,68.00,301.00,,,,,,\n2015,5,22,\"DL\",\"1972\",\"AUS\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,205.00,181.00,1521.00,,,,,,\n2015,5,22,\"DL\",\"1974\",\"MIA\",\"LGA\",38.00,32.00,0.00,\"\",0.00,177.00,140.00,1096.00,25.00,0.00,0.00,0.00,7.00,\n2015,5,22,\"DL\",\"1982\",\"LGA\",\"MIA\",-1.00,-8.00,0.00,\"\",0.00,189.00,156.00,1096.00,,,,,,\n2015,5,22,\"DL\",\"1985\",\"ALB\",\"DTW\",-3.00,11.00,0.00,\"\",0.00,115.00,86.00,489.00,,,,,,\n2015,5,22,\"DL\",\"1986\",\"ATL\",\"LGA\",-4.00,-37.00,0.00,\"\",0.00,117.00,97.00,762.00,,,,,,\n2015,5,22,\"DL\",\"1994\",\"PHX\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,270.00,237.00,2153.00,,,,,,\n2015,5,22,\"DL\",\"1996\",\"MSP\",\"LGA\",1.00,-23.00,0.00,\"\",0.00,138.00,125.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"2003\",\"LGA\",\"MIA\",-4.00,6.00,0.00,\"\",0.00,197.00,150.00,1096.00,,,,,,\n2015,5,22,\"DL\",\"2013\",\"ATL\",\"SYR\",-3.00,-9.00,0.00,\"\",0.00,129.00,110.00,794.00,,,,,,\n2015,5,22,\"DL\",\"2014\",\"SYR\",\"ATL\",-7.00,-12.00,0.00,\"\",0.00,134.00,114.00,794.00,,,,,,\n2015,5,22,\"DL\",\"2016\",\"LGA\",\"ATL\",-6.00,2.00,0.00,\"\",0.00,161.00,119.00,762.00,,,,,,\n2015,5,22,\"DL\",\"2022\",\"LGA\",\"FLL\",-4.00,-22.00,0.00,\"\",0.00,174.00,147.00,1076.00,,,,,,\n2015,5,22,\"DL\",\"2028\",\"FLL\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,182.00,144.00,1076.00,,,,,,\n2015,5,22,\"DL\",\"2032\",\"MSP\",\"JFK\",-2.00,-29.00,0.00,\"\",0.00,140.00,124.00,1029.00,,,,,,\n2015,5,23,\"DL\",\"723\",\"ATL\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,117.00,103.00,712.00,,,,,,\n2015,5,23,\"DL\",\"723\",\"BUF\",\"ATL\",-4.00,-15.00,0.00,\"\",0.00,118.00,98.00,712.00,,,,,,\n2015,5,23,\"DL\",\"731\",\"LGA\",\"DTW\",-2.00,-16.00,0.00,\"\",0.00,98.00,79.00,502.00,,,,,,\n2015,5,23,\"DL\",\"750\",\"BOS\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,71.00,44.00,187.00,,,,,,\n2015,5,23,\"DL\",\"772\",\"PBI\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,163.00,138.00,1035.00,,,,,,\n2015,5,23,\"DL\",\"781\",\"LGA\",\"ATL\",-3.00,-24.00,0.00,\"\",0.00,139.00,111.00,762.00,,,,,,\n2015,5,23,\"DL\",\"782\",\"MIA\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,166.00,144.00,1089.00,,,,,,\n2015,5,23,\"DL\",\"787\",\"MCO\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,153.00,123.00,944.00,,,,,,\n2015,5,23,\"DL\",\"791\",\"LAX\",\"JFK\",0.00,-22.00,0.00,\"\",0.00,312.00,286.00,2475.00,,,,,,\n2015,5,23,\"DL\",\"792\",\"PBI\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,151.00,134.00,1028.00,,,,,,\n2015,5,23,\"DL\",\"793\",\"BOS\",\"JFK\",-7.00,-4.00,0.00,\"\",0.00,95.00,41.00,187.00,,,,,,\n2015,5,23,\"DL\",\"802\",\"ATL\",\"LGA\",37.00,9.00,0.00,\"\",0.00,117.00,100.00,762.00,,,,,,\n2015,5,23,\"DL\",\"819\",\"MIA\",\"LGA\",-14.00,-2.00,0.00,\"\",0.00,199.00,153.00,1096.00,,,,,,\n2015,5,23,\"DL\",\"871\",\"MSP\",\"LGA\",14.00,-5.00,0.00,\"\",0.00,143.00,123.00,1020.00,,,,,,\n2015,5,23,\"DL\",\"874\",\"LGA\",\"MIA\",-1.00,-11.00,0.00,\"\",0.00,188.00,146.00,1096.00,,,,,,\n2015,5,23,\"DL\",\"878\",\"RSW\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,165.00,147.00,1080.00,,,,,,\n2015,5,23,\"DL\",\"879\",\"BUF\",\"DTW\",-2.00,-26.00,0.00,\"\",0.00,54.00,40.00,241.00,,,,,,\n2015,5,23,\"DL\",\"899\",\"SYR\",\"MSP\",-5.00,-5.00,0.00,\"\",0.00,146.00,127.00,860.00,,,,,,\n2015,5,23,\"DL\",\"904\",\"LGA\",\"ATL\",-1.00,-5.00,0.00,\"\",0.00,138.00,111.00,762.00,,,,,,\n2015,5,23,\"DL\",\"906\",\"ATL\",\"LGA\",14.00,3.00,0.00,\"\",0.00,127.00,102.00,762.00,,,,,,\n2015,5,23,\"DL\",\"909\",\"LGA\",\"MIA\",-2.00,-26.00,0.00,\"\",0.00,170.00,146.00,1096.00,,,,,,\n2015,5,23,\"DL\",\"910\",\"MCO\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,150.00,126.00,950.00,,,,,,\n2015,5,23,\"DL\",\"928\",\"DEN\",\"LGA\",4.00,-13.00,0.00,\"\",0.00,218.00,200.00,1620.00,,,,,,\n2015,5,23,\"DL\",\"965\",\"MCO\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,150.00,130.00,950.00,,,,,,\n2015,5,23,\"DL\",\"966\",\"DTW\",\"BUF\",-5.00,-15.00,0.00,\"\",0.00,60.00,40.00,241.00,,,,,,\n2015,5,23,\"DL\",\"971\",\"LGA\",\"DEN\",-3.00,-20.00,0.00,\"\",0.00,255.00,228.00,1620.00,,,,,,\n2015,5,23,\"DL\",\"986\",\"ATL\",\"LGA\",0.00,-25.00,0.00,\"\",0.00,110.00,96.00,762.00,,,,,,\n2015,5,23,\"DL\",\"997\",\"DTW\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,92.00,69.00,502.00,,,,,,\n2015,5,23,\"DL\",\"1083\",\"FLL\",\"JFK\",-4.00,3.00,0.00,\"\",0.00,191.00,151.00,1069.00,,,,,,\n2015,5,23,\"DL\",\"1088\",\"FLL\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,160.00,140.00,1076.00,,,,,,\n2015,5,23,\"DL\",\"1102\",\"MCO\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,147.00,130.00,950.00,,,,,,\n2015,5,23,\"DL\",\"1109\",\"SEA\",\"JFK\",-4.00,-35.00,0.00,\"\",0.00,304.00,278.00,2422.00,,,,,,\n2015,5,23,\"DL\",\"1111\",\"ATL\",\"ROC\",-2.00,-12.00,0.00,\"\",0.00,118.00,100.00,749.00,,,,,,\n2015,5,23,\"DL\",\"1131\",\"LGA\",\"FLL\",-5.00,-29.00,0.00,\"\",0.00,165.00,145.00,1076.00,,,,,,\n2015,5,23,\"DL\",\"1145\",\"LGA\",\"DTW\",0.00,-17.00,0.00,\"\",0.00,103.00,83.00,502.00,,,,,,\n2015,5,23,\"DL\",\"1162\",\"LAX\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,306.00,286.00,2475.00,,,,,,\n2015,5,23,\"DL\",\"1174\",\"LGA\",\"PBI\",-1.00,-11.00,0.00,\"\",0.00,168.00,140.00,1035.00,,,,,,\n2015,5,23,\"DL\",\"1176\",\"ATL\",\"BUF\",-3.00,-10.00,0.00,\"\",0.00,123.00,101.00,712.00,,,,,,\n2015,5,23,\"DL\",\"1176\",\"BUF\",\"ATL\",-5.00,-19.00,0.00,\"\",0.00,114.00,94.00,712.00,,,,,,\n2015,5,23,\"DL\",\"1186\",\"ATL\",\"LGA\",-1.00,-23.00,0.00,\"\",0.00,118.00,98.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1242\",\"LGA\",\"PBI\",-5.00,-12.00,0.00,\"\",0.00,173.00,137.00,1035.00,,,,,,\n2015,5,23,\"DL\",\"1262\",\"LAX\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,308.00,285.00,2475.00,,,,,,\n2015,5,23,\"DL\",\"1266\",\"BUF\",\"ATL\",-3.00,1.00,0.00,\"\",0.00,124.00,98.00,712.00,,,,,,\n2015,5,23,\"DL\",\"1269\",\"LGA\",\"MIA\",-1.00,-23.00,0.00,\"\",0.00,174.00,142.00,1096.00,,,,,,\n2015,5,23,\"DL\",\"1286\",\"ATL\",\"LGA\",-5.00,-26.00,0.00,\"\",0.00,114.00,96.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1288\",\"LGA\",\"FLL\",-3.00,-21.00,0.00,\"\",0.00,174.00,150.00,1076.00,,,,,,\n2015,5,23,\"DL\",\"1289\",\"LGA\",\"ATL\",-1.00,-5.00,0.00,\"\",0.00,157.00,106.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1298\",\"LGA\",\"ATL\",-6.00,-27.00,0.00,\"\",0.00,138.00,113.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1312\",\"ALB\",\"DTW\",-6.00,-20.00,0.00,\"\",0.00,87.00,75.00,489.00,,,,,,\n2015,5,23,\"DL\",\"1335\",\"MIA\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,173.00,149.00,1096.00,,,,,,\n2015,5,23,\"DL\",\"1356\",\"BUF\",\"DTW\",-1.00,-14.00,0.00,\"\",0.00,65.00,43.00,241.00,,,,,,\n2015,5,23,\"DL\",\"1359\",\"MCO\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,155.00,129.00,950.00,,,,,,\n2015,5,22,\"DL\",\"2181\",\"LGA\",\"MCO\",2.00,-3.00,0.00,\"\",0.00,165.00,138.00,950.00,,,,,,\n2015,5,22,\"DL\",\"2185\",\"FLL\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,167.00,143.00,1069.00,,,,,,\n2015,5,22,\"DL\",\"2186\",\"ATL\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,150.00,119.00,762.00,,,,,,\n2015,5,22,\"DL\",\"2190\",\"JFK\",\"MIA\",-5.00,-19.00,0.00,\"\",0.00,188.00,152.00,1089.00,,,,,,\n2015,5,22,\"DL\",\"2208\",\"JFK\",\"LAS\",12.00,-4.00,0.00,\"\",0.00,339.00,310.00,2248.00,,,,,,\n2015,5,22,\"DL\",\"2214\",\"ATL\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,131.00,97.00,762.00,,,,,,\n2015,5,22,\"DL\",\"2217\",\"JFK\",\"BOS\",-5.00,-21.00,0.00,\"\",0.00,76.00,40.00,187.00,,,,,,\n2015,5,22,\"DL\",\"2230\",\"CHS\",\"JFK\",35.00,13.00,0.00,\"\",0.00,107.00,81.00,636.00,,,,,,\n2015,5,22,\"DL\",\"2231\",\"DTW\",\"LGA\",-10.00,-10.00,0.00,\"\",0.00,108.00,74.00,502.00,,,,,,\n2015,5,22,\"DL\",\"2240\",\"SFO\",\"JFK\",-2.00,-30.00,0.00,\"\",0.00,310.00,291.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"2248\",\"DTW\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,99.00,72.00,502.00,,,,,,\n2015,5,22,\"DL\",\"2262\",\"LAX\",\"JFK\",11.00,-19.00,0.00,\"\",0.00,304.00,269.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"2263\",\"JFK\",\"MIA\",-1.00,-17.00,0.00,\"\",0.00,194.00,171.00,1089.00,,,,,,\n2015,5,22,\"DL\",\"2270\",\"LGA\",\"RSW\",4.00,4.00,0.00,\"\",0.00,196.00,163.00,1080.00,,,,,,\n2015,5,22,\"DL\",\"2276\",\"MCO\",\"JFK\",29.00,9.00,0.00,\"\",0.00,147.00,119.00,944.00,,,,,,\n2015,5,22,\"DL\",\"2277\",\"JFK\",\"TPA\",11.00,0.00,0.00,\"\",0.00,182.00,147.00,1005.00,,,,,,\n2015,5,22,\"DL\",\"2280\",\"LGA\",\"TPA\",0.00,10.00,0.00,\"\",0.00,184.00,144.00,1010.00,,,,,,\n2015,5,22,\"DL\",\"2282\",\"LGA\",\"MCO\",17.00,-7.00,0.00,\"\",0.00,152.00,132.00,950.00,,,,,,\n2015,5,22,\"DL\",\"2285\",\"LGA\",\"MCO\",-5.00,3.00,0.00,\"\",0.00,171.00,141.00,950.00,,,,,,\n2015,5,22,\"DL\",\"2292\",\"JFK\",\"PBI\",-6.00,-17.00,0.00,\"\",0.00,176.00,144.00,1028.00,,,,,,\n2015,5,22,\"DL\",\"2296\",\"MSP\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,151.00,129.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"2301\",\"JFK\",\"SAT\",-5.00,-31.00,0.00,\"\",0.00,243.00,216.00,1587.00,,,,,,\n2015,5,22,\"DL\",\"2306\",\"JFK\",\"PHX\",-6.00,-2.00,0.00,\"\",0.00,337.00,315.00,2153.00,,,,,,\n2015,5,22,\"DL\",\"2311\",\"JFK\",\"MIA\",4.00,-20.00,0.00,\"\",0.00,182.00,146.00,1089.00,,,,,,\n2015,5,22,\"DL\",\"2312\",\"JFK\",\"DTW\",-2.00,-18.00,0.00,\"\",0.00,124.00,96.00,509.00,,,,,,\n2015,5,22,\"DL\",\"2317\",\"PBI\",\"LGA\",3.00,-9.00,0.00,\"\",0.00,161.00,136.00,1035.00,,,,,,\n2015,5,22,\"DL\",\"2319\",\"LGA\",\"MSP\",-4.00,-10.00,0.00,\"\",0.00,189.00,146.00,1020.00,,,,,,\n2015,5,22,\"DL\",\"2331\",\"LGA\",\"DTW\",-6.00,-20.00,0.00,\"\",0.00,110.00,86.00,502.00,,,,,,\n2015,5,22,\"DL\",\"2340\",\"JFK\",\"MCO\",-3.00,-29.00,0.00,\"\",0.00,164.00,135.00,944.00,,,,,,\n2015,5,22,\"DL\",\"2349\",\"DTW\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,96.00,70.00,502.00,,,,,,\n2015,5,22,\"DL\",\"2350\",\"ATL\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,133.00,101.00,760.00,,,,,,\n2015,5,22,\"DL\",\"2352\",\"LAS\",\"JFK\",-2.00,-33.00,0.00,\"\",0.00,282.00,257.00,2248.00,,,,,,\n2015,5,22,\"DL\",\"2354\",\"SLC\",\"JFK\",-3.00,-31.00,0.00,\"\",0.00,244.00,224.00,1990.00,,,,,,\n2015,5,22,\"DL\",\"2362\",\"LAX\",\"JFK\",2.00,-28.00,0.00,\"\",0.00,300.00,280.00,2475.00,,,,,,\n2015,5,22,\"DL\",\"2382\",\"JFK\",\"FLL\",13.00,-8.00,0.00,\"\",0.00,180.00,153.00,1069.00,,,,,,\n2015,5,22,\"DL\",\"2386\",\"ATL\",\"LGA\",-3.00,-25.00,0.00,\"\",0.00,116.00,94.00,762.00,,,,,,\n2015,5,22,\"DL\",\"2390\",\"JFK\",\"DEN\",-6.00,-8.00,0.00,\"\",0.00,280.00,230.00,1626.00,,,,,,\n2015,5,22,\"DL\",\"2395\",\"LGA\",\"PBI\",-3.00,-16.00,0.00,\"\",0.00,167.00,138.00,1035.00,,,,,,\n2015,5,22,\"DL\",\"2404\",\"SAN\",\"JFK\",-3.00,-42.00,0.00,\"\",0.00,295.00,269.00,2446.00,,,,,,\n2015,5,22,\"DL\",\"2405\",\"PHX\",\"JFK\",-4.00,-35.00,0.00,\"\",0.00,264.00,236.00,2153.00,,,,,,\n2015,5,22,\"DL\",\"2406\",\"TPA\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,149.00,127.00,1010.00,,,,,,\n2015,5,22,\"DL\",\"2413\",\"MIA\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,173.00,145.00,1096.00,,,,,,\n2015,5,22,\"DL\",\"2424\",\"JFK\",\"ATL\",-1.00,-30.00,0.00,\"\",0.00,143.00,117.00,760.00,,,,,,\n2015,5,22,\"DL\",\"2432\",\"DTW\",\"SYR\",-2.00,-7.00,0.00,\"\",0.00,74.00,55.00,374.00,,,,,,\n2015,5,22,\"DL\",\"2435\",\"JFK\",\"FLL\",20.00,4.00,0.00,\"\",0.00,187.00,150.00,1069.00,,,,,,\n2015,5,22,\"DL\",\"2441\",\"SAN\",\"JFK\",-7.00,-45.00,0.00,\"\",0.00,289.00,265.00,2446.00,,,,,,\n2015,5,22,\"DL\",\"2444\",\"JFK\",\"SAN\",0.00,-9.00,0.00,\"\",0.00,364.00,338.00,2446.00,,,,,,\n2015,5,22,\"DL\",\"2447\",\"DEN\",\"JFK\",0.00,-25.00,0.00,\"\",0.00,211.00,184.00,1626.00,,,,,,\n2015,5,22,\"DL\",\"2450\",\"MCO\",\"LGA\",0.00,0.00,0.00,\"\",0.00,156.00,117.00,950.00,,,,,,\n2015,5,22,\"DL\",\"2464\",\"TPA\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,150.00,126.00,1005.00,,,,,,\n2015,5,22,\"DL\",\"2466\",\"ATL\",\"SYR\",-2.00,-15.00,0.00,\"\",0.00,124.00,105.00,794.00,,,,,,\n2015,5,22,\"DL\",\"2466\",\"SYR\",\"ATL\",-6.00,-23.00,0.00,\"\",0.00,133.00,115.00,794.00,,,,,,\n2015,5,22,\"DL\",\"2473\",\"ATL\",\"BUF\",-3.00,-19.00,0.00,\"\",0.00,112.00,98.00,712.00,,,,,,\n2015,5,22,\"DL\",\"2474\",\"JFK\",\"DEN\",8.00,7.00,0.00,\"\",0.00,283.00,246.00,1626.00,,,,,,\n2015,5,22,\"DL\",\"2495\",\"MIA\",\"JFK\",29.00,24.00,0.00,\"\",0.00,183.00,141.00,1089.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,22,\"DL\",\"2496\",\"ATL\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,127.00,98.00,762.00,,,,,,\n2015,5,22,\"DL\",\"2498\",\"FLL\",\"LGA\",5.00,14.00,0.00,\"\",0.00,192.00,164.00,1076.00,,,,,,\n2015,5,22,\"DL\",\"2502\",\"FLL\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,173.00,139.00,1076.00,,,,,,\n2015,5,22,\"DL\",\"2521\",\"SFO\",\"JFK\",16.00,-16.00,0.00,\"\",0.00,309.00,285.00,2586.00,,,,,,\n2015,5,22,\"DL\",\"2542\",\"JFK\",\"AUS\",-5.00,-1.00,0.00,\"\",0.00,268.00,223.00,1521.00,,,,,,\n2015,5,22,\"DL\",\"2554\",\"DEN\",\"JFK\",11.00,-15.00,0.00,\"\",0.00,215.00,194.00,1626.00,,,,,,\n2015,5,22,\"DL\",\"2565\",\"JFK\",\"MSP\",-2.00,-25.00,0.00,\"\",0.00,186.00,159.00,1029.00,,,,,,\n2015,5,22,\"DL\",\"2567\",\"DTW\",\"ALB\",1.00,-7.00,0.00,\"\",0.00,80.00,60.00,489.00,,,,,,\n2015,5,22,\"DL\",\"2569\",\"JFK\",\"PHX\",-7.00,-13.00,0.00,\"\",0.00,337.00,317.00,2153.00,,,,,,\n2015,5,22,\"DL\",\"2571\",\"JFK\",\"SLC\",-5.00,-13.00,0.00,\"\",0.00,317.00,291.00,1990.00,,,,,,\n2015,5,22,\"DL\",\"2577\",\"JFK\",\"FLL\",0.00,-14.00,0.00,\"\",0.00,191.00,146.00,1069.00,,,,,,\n2015,5,22,\"DL\",\"2593\",\"SAT\",\"JFK\",-3.00,-32.00,0.00,\"\",0.00,209.00,191.00,1587.00,,,,,,\n2015,5,22,\"DL\",\"2594\",\"DEN\",\"LGA\",-3.00,-33.00,0.00,\"\",0.00,206.00,182.00,1620.00,,,,,,\n2015,5,22,\"DL\",\"2595\",\"FLL\",\"LGA\",15.00,-5.00,0.00,\"\",0.00,164.00,138.00,1076.00,,,,,,\n2015,5,22,\"DL\",\"2596\",\"PBI\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,166.00,135.00,1035.00,,,,,,\n2015,5,22,\"DL\",\"2622\",\"ROC\",\"DTW\",-5.00,-15.00,0.00,\"\",0.00,72.00,56.00,296.00,,,,,,\n2015,5,22,\"DL\",\"2627\",\"JFK\",\"PDX\",-1.00,2.00,0.00,\"\",0.00,373.00,323.00,2454.00,,,,,,\n2015,5,22,\"DL\",\"2632\",\"JFK\",\"MCO\",-7.00,2.00,0.00,\"\",0.00,192.00,138.00,944.00,,,,,,\n2015,5,22,\"DL\",\"2634\",\"JFK\",\"BUF\",-1.00,-6.00,0.00,\"\",0.00,98.00,56.00,301.00,,,,,,\n2015,5,22,\"DL\",\"2645\",\"JFK\",\"RSW\",-4.00,1.00,0.00,\"\",0.00,206.00,157.00,1074.00,,,,,,\n2015,5,22,\"DL\",\"2649\",\"JFK\",\"TPA\",-7.00,-22.00,0.00,\"\",0.00,173.00,150.00,1005.00,,,,,,\n2015,5,22,\"DL\",\"2650\",\"TPA\",\"JFK\",13.00,-3.00,0.00,\"\",0.00,152.00,129.00,1005.00,,,,,,\n2015,5,22,\"DL\",\"2652\",\"TPA\",\"JFK\",52.00,47.00,0.00,\"\",0.00,169.00,133.00,1005.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,22,\"DL\",\"2653\",\"MCO\",\"JFK\",36.00,16.00,0.00,\"\",0.00,146.00,117.00,944.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,22,\"DL\",\"2665\",\"BOS\",\"LGA\",-2.00,10.00,0.00,\"\",0.00,87.00,49.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2666\",\"LGA\",\"BOS\",-3.00,-7.00,0.00,\"\",0.00,62.00,39.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2667\",\"BOS\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,75.00,50.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2668\",\"LGA\",\"BOS\",-4.00,-7.00,0.00,\"\",0.00,68.00,42.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2669\",\"BOS\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,78.00,58.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2670\",\"LGA\",\"BOS\",0.00,1.00,0.00,\"\",0.00,68.00,39.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2671\",\"BOS\",\"LGA\",-7.00,7.00,0.00,\"\",0.00,93.00,51.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2672\",\"LGA\",\"BOS\",-2.00,-1.00,0.00,\"\",0.00,83.00,39.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2673\",\"BOS\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,77.00,51.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2674\",\"LGA\",\"BOS\",-4.00,-6.00,0.00,\"\",0.00,81.00,40.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2675\",\"BOS\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,73.00,48.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2676\",\"LGA\",\"BOS\",7.00,15.00,0.00,\"\",0.00,84.00,38.00,184.00,0.00,0.00,8.00,0.00,7.00,\n2015,5,22,\"DL\",\"2677\",\"BOS\",\"LGA\",-6.00,-3.00,0.00,\"\",0.00,78.00,49.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2678\",\"LGA\",\"BOS\",-3.00,3.00,0.00,\"\",0.00,89.00,42.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2679\",\"BOS\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,77.00,41.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2680\",\"LGA\",\"BOS\",-3.00,-7.00,0.00,\"\",0.00,75.00,38.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2681\",\"BOS\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,80.00,40.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2682\",\"LGA\",\"BOS\",-7.00,-5.00,0.00,\"\",0.00,74.00,37.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2683\",\"BOS\",\"LGA\",-6.00,19.00,0.00,\"\",0.00,99.00,38.00,184.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,22,\"DL\",\"2684\",\"LGA\",\"BOS\",-2.00,-1.00,0.00,\"\",0.00,76.00,45.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2685\",\"BOS\",\"LGA\",-7.00,5.00,0.00,\"\",0.00,84.00,39.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2686\",\"LGA\",\"BOS\",-6.00,-19.00,0.00,\"\",0.00,69.00,39.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2687\",\"BOS\",\"LGA\",0.00,0.00,0.00,\"\",0.00,76.00,39.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2688\",\"LGA\",\"BOS\",6.00,-6.00,0.00,\"\",0.00,71.00,41.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2689\",\"BOS\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,68.00,38.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2690\",\"LGA\",\"BOS\",-4.00,-19.00,0.00,\"\",0.00,70.00,38.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2691\",\"BOS\",\"LGA\",-2.00,13.00,0.00,\"\",0.00,92.00,40.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2692\",\"LGA\",\"BOS\",1.00,-14.00,0.00,\"\",0.00,64.00,40.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2693\",\"BOS\",\"LGA\",-8.00,-10.00,0.00,\"\",0.00,76.00,39.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2694\",\"LGA\",\"BOS\",-2.00,-7.00,0.00,\"\",0.00,73.00,39.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2696\",\"LGA\",\"BOS\",-3.00,-10.00,0.00,\"\",0.00,61.00,35.00,184.00,,,,,,\n2015,5,22,\"DL\",\"2699\",\"BOS\",\"LGA\",-3.00,0.00,0.00,\"\",0.00,79.00,54.00,184.00,,,,,,\n2015,5,23,\"DL\",\"2\",\"JFK\",\"PDX\",-1.00,-6.00,0.00,\"\",0.00,373.00,345.00,2454.00,,,,,,\n2015,5,23,\"DL\",\"42\",\"MIA\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,169.00,143.00,1089.00,,,,,,\n2015,5,23,\"DL\",\"208\",\"JFK\",\"MCO\",-1.00,-15.00,0.00,\"\",0.00,170.00,124.00,944.00,,,,,,\n2015,5,23,\"DL\",\"221\",\"LGA\",\"ATL\",39.00,3.00,0.00,\"\",0.00,126.00,103.00,762.00,,,,,,\n2015,5,23,\"DL\",\"234\",\"PIT\",\"JFK\",11.00,26.00,0.00,\"\",0.00,115.00,68.00,340.00,11.00,0.00,15.00,0.00,0.00,\n2015,5,23,\"DL\",\"245\",\"JFK\",\"SLC\",2.00,-14.00,0.00,\"\",0.00,308.00,277.00,1990.00,,,,,,\n2015,5,23,\"DL\",\"326\",\"SJU\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,229.00,213.00,1598.00,,,,,,\n2015,5,23,\"DL\",\"332\",\"SJU\",\"JFK\",-17.00,-14.00,0.00,\"\",0.00,249.00,211.00,1598.00,,,,,,\n2015,5,23,\"DL\",\"333\",\"MSP\",\"LGA\",1.00,-18.00,0.00,\"\",0.00,141.00,121.00,1020.00,,,,,,\n2015,5,23,\"DL\",\"342\",\"SFO\",\"JFK\",-1.00,-34.00,0.00,\"\",0.00,305.00,287.00,2586.00,,,,,,\n2015,5,23,\"DL\",\"347\",\"LGA\",\"ATL\",-2.00,-19.00,0.00,\"\",0.00,138.00,113.00,762.00,,,,,,\n2015,5,23,\"DL\",\"348\",\"SJU\",\"JFK\",-11.00,-11.00,0.00,\"\",0.00,241.00,212.00,1598.00,,,,,,\n2015,5,23,\"DL\",\"350\",\"LGA\",\"ATL\",-6.00,-9.00,0.00,\"\",0.00,147.00,113.00,762.00,,,,,,\n2015,5,23,\"DL\",\"400\",\"PDX\",\"JFK\",-5.00,-37.00,0.00,\"\",0.00,298.00,282.00,2454.00,,,,,,\n2015,5,23,\"DL\",\"407\",\"MCO\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,155.00,125.00,944.00,,,,,,\n2015,5,23,\"DL\",\"410\",\"MSP\",\"JFK\",-7.00,-28.00,0.00,\"\",0.00,145.00,124.00,1029.00,,,,,,\n2015,5,23,\"DL\",\"412\",\"LAX\",\"JFK\",4.00,-14.00,0.00,\"\",0.00,318.00,290.00,2475.00,,,,,,\n2015,5,23,\"DL\",\"414\",\"SFO\",\"JFK\",20.00,-2.00,0.00,\"\",0.00,321.00,294.00,2586.00,,,,,,\n2015,5,23,\"DL\",\"415\",\"JFK\",\"SFO\",-2.00,-22.00,0.00,\"\",0.00,384.00,355.00,2586.00,,,,,,\n2015,5,23,\"DL\",\"418\",\"SEA\",\"JFK\",0.00,-22.00,0.00,\"\",0.00,304.00,270.00,2422.00,,,,,,\n2015,5,23,\"DL\",\"419\",\"JFK\",\"SEA\",14.00,45.00,0.00,\"\",0.00,409.00,331.00,2422.00,14.00,0.00,31.00,0.00,0.00,\n2015,5,23,\"DL\",\"420\",\"JFK\",\"LAX\",0.00,-33.00,0.00,\"\",0.00,359.00,329.00,2475.00,,,,,,\n2015,5,23,\"DL\",\"421\",\"JFK\",\"SAN\",10.00,2.00,0.00,\"\",0.00,367.00,338.00,2446.00,,,,,,\n2015,5,23,\"DL\",\"422\",\"JFK\",\"BOS\",-3.00,-22.00,0.00,\"\",0.00,58.00,38.00,187.00,,,,,,\n2015,5,23,\"DL\",\"423\",\"JFK\",\"LAX\",-1.00,-11.00,0.00,\"\",0.00,362.00,333.00,2475.00,,,,,,\n2015,5,23,\"DL\",\"426\",\"JFK\",\"MCO\",1.00,-13.00,0.00,\"\",0.00,156.00,130.00,944.00,,,,,,\n2015,5,23,\"DL\",\"427\",\"JFK\",\"SEA\",14.00,5.00,0.00,\"\",0.00,351.00,324.00,2422.00,,,,,,\n2015,5,23,\"DL\",\"428\",\"JFK\",\"MCO\",-3.00,-16.00,0.00,\"\",0.00,151.00,133.00,944.00,,,,,,\n2015,5,23,\"DL\",\"430\",\"JFK\",\"SFO\",1.00,-12.00,0.00,\"\",0.00,373.00,353.00,2586.00,,,,,,\n2015,5,23,\"DL\",\"431\",\"JFK\",\"SEA\",-4.00,-26.00,0.00,\"\",0.00,356.00,327.00,2422.00,,,,,,\n2015,5,23,\"DL\",\"433\",\"JFK\",\"SJU\",-7.00,-13.00,0.00,\"\",0.00,218.00,192.00,1598.00,,,,,,\n2015,5,23,\"DL\",\"434\",\"JFK\",\"SLC\",4.00,-4.00,0.00,\"\",0.00,296.00,274.00,1990.00,,,,,,\n2015,5,23,\"DL\",\"435\",\"JFK\",\"SFO\",-1.00,10.00,0.00,\"\",0.00,418.00,362.00,2586.00,,,,,,\n2015,5,23,\"DL\",\"437\",\"JFK\",\"LAS\",-5.00,-10.00,0.00,\"\",0.00,345.00,307.00,2248.00,,,,,,\n2015,5,23,\"DL\",\"439\",\"JFK\",\"LAS\",10.00,1.00,0.00,\"\",0.00,343.00,310.00,2248.00,,,,,,\n2015,5,23,\"DL\",\"440\",\"JFK\",\"BOS\",6.00,-19.00,0.00,\"\",0.00,73.00,39.00,187.00,,,,,,\n2015,5,23,\"DL\",\"442\",\"JFK\",\"MSP\",-9.00,-12.00,0.00,\"\",0.00,187.00,153.00,1029.00,,,,,,\n2015,5,23,\"DL\",\"443\",\"JFK\",\"LAS\",-3.00,-7.00,0.00,\"\",0.00,347.00,317.00,2248.00,,,,,,\n2015,5,23,\"DL\",\"444\",\"SLC\",\"JFK\",-5.00,-31.00,0.00,\"\",0.00,254.00,233.00,1990.00,,,,,,\n2015,5,23,\"DL\",\"445\",\"JFK\",\"LAS\",-2.00,15.00,0.00,\"\",0.00,346.00,318.00,2248.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,23,\"DL\",\"447\",\"JFK\",\"LAX\",-1.00,-18.00,0.00,\"\",0.00,373.00,339.00,2475.00,,,,,,\n2015,5,23,\"DL\",\"448\",\"JFK\",\"SEA\",0.00,-10.00,0.00,\"\",0.00,350.00,322.00,2422.00,,,,,,\n2015,5,23,\"DL\",\"453\",\"JFK\",\"CHS\",0.00,-16.00,0.00,\"\",0.00,123.00,92.00,636.00,,,,,,\n2015,5,23,\"DL\",\"454\",\"JFK\",\"ATL\",-5.00,-12.00,0.00,\"\",0.00,144.00,114.00,760.00,,,,,,\n2015,5,23,\"DL\",\"455\",\"JFK\",\"FLL\",-2.00,-13.00,0.00,\"\",0.00,170.00,147.00,1069.00,,,,,,\n2015,5,23,\"DL\",\"458\",\"JFK\",\"ATL\",-1.00,-24.00,0.00,\"\",0.00,144.00,108.00,760.00,,,,,,\n2015,5,23,\"DL\",\"459\",\"JFK\",\"ATL\",-5.00,-22.00,0.00,\"\",0.00,135.00,113.00,760.00,,,,,,\n2015,5,23,\"DL\",\"460\",\"JFK\",\"AUS\",-2.00,12.00,0.00,\"\",0.00,275.00,235.00,1521.00,,,,,,\n2015,5,23,\"DL\",\"462\",\"JFK\",\"SJU\",-3.00,-18.00,0.00,\"\",0.00,216.00,189.00,1598.00,,,,,,\n2015,5,23,\"DL\",\"464\",\"JFK\",\"MIA\",-4.00,-19.00,0.00,\"\",0.00,167.00,148.00,1089.00,,,,,,\n2015,5,23,\"DL\",\"465\",\"JFK\",\"STT\",4.00,-6.00,0.00,\"\",0.00,233.00,195.00,1623.00,,,,,,\n2015,5,23,\"DL\",\"466\",\"SLC\",\"JFK\",0.00,-38.00,0.00,\"\",0.00,236.00,221.00,1990.00,,,,,,\n2015,5,23,\"DL\",\"468\",\"SFO\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,325.00,291.00,2586.00,,,,,,\n2015,5,23,\"DL\",\"469\",\"JFK\",\"SFO\",0.00,-18.00,0.00,\"\",0.00,383.00,356.00,2586.00,,,,,,\n2015,5,23,\"DL\",\"472\",\"JFK\",\"LAX\",-5.00,-15.00,0.00,\"\",0.00,372.00,314.00,2475.00,,,,,,\n2015,5,23,\"DL\",\"476\",\"LAX\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,342.00,283.00,2475.00,,,,,,\n2015,5,23,\"DL\",\"477\",\"JFK\",\"LAX\",-3.00,6.00,0.00,\"\",0.00,400.00,346.00,2475.00,,,,,,\n2015,5,23,\"DL\",\"478\",\"ATL\",\"JFK\",-1.00,-24.00,0.00,\"\",0.00,126.00,106.00,760.00,,,,,,\n2015,5,23,\"DL\",\"480\",\"JFK\",\"BOS\",-2.00,-19.00,0.00,\"\",0.00,64.00,37.00,187.00,,,,,,\n2015,5,23,\"DL\",\"499\",\"JFK\",\"SLC\",9.00,5.00,0.00,\"\",0.00,306.00,278.00,1990.00,,,,,,\n2015,5,23,\"DL\",\"511\",\"SJU\",\"JFK\",-11.00,-12.00,0.00,\"\",0.00,245.00,219.00,1598.00,,,,,,\n2015,5,23,\"DL\",\"527\",\"RSW\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,159.00,135.00,1074.00,,,,,,\n2015,5,23,\"DL\",\"528\",\"LGA\",\"MSP\",-6.00,-17.00,0.00,\"\",0.00,171.00,147.00,1020.00,,,,,,\n2015,5,23,\"DL\",\"541\",\"LAS\",\"JFK\",-7.00,-31.00,0.00,\"\",0.00,272.00,252.00,2248.00,,,,,,\n2015,5,23,\"DL\",\"544\",\"ALB\",\"ATL\",-5.00,-7.00,0.00,\"\",0.00,148.00,128.00,853.00,,,,,,\n2015,5,23,\"DL\",\"662\",\"BUF\",\"MSP\",-1.00,-10.00,0.00,\"\",0.00,135.00,110.00,735.00,,,,,,\n2015,5,23,\"DL\",\"676\",\"STT\",\"JFK\",65.00,60.00,0.00,\"\",0.00,245.00,213.00,1623.00,60.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"DL\",\"2056\",\"MSP\",\"ROC\",-1.00,-20.00,0.00,\"\",0.00,110.00,93.00,783.00,,,,,,\n2015,5,24,\"DL\",\"2074\",\"LGA\",\"ATL\",-1.00,-23.00,0.00,\"\",0.00,131.00,105.00,762.00,,,,,,\n2015,5,24,\"DL\",\"2076\",\"JFK\",\"PDX\",0.00,-31.00,0.00,\"\",0.00,347.00,321.00,2454.00,,,,,,\n2015,5,24,\"DL\",\"2077\",\"LGA\",\"MCO\",-4.00,-25.00,0.00,\"\",0.00,152.00,125.00,950.00,,,,,,\n2015,5,24,\"DL\",\"2086\",\"ATL\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,123.00,107.00,762.00,,,,,,\n2015,5,24,\"DL\",\"2103\",\"JFK\",\"BOS\",-1.00,-23.00,0.00,\"\",0.00,72.00,41.00,187.00,,,,,,\n2015,5,24,\"DL\",\"2119\",\"LGA\",\"MSP\",0.00,-19.00,0.00,\"\",0.00,167.00,147.00,1020.00,,,,,,\n2015,5,24,\"DL\",\"2129\",\"ROC\",\"ATL\",-5.00,-13.00,0.00,\"\",0.00,121.00,105.00,749.00,,,,,,\n2015,5,24,\"DL\",\"2134\",\"JFK\",\"ATL\",24.00,-10.00,0.00,\"\",0.00,131.00,100.00,760.00,,,,,,\n2015,5,24,\"DL\",\"2143\",\"JFK\",\"FLL\",-6.00,-38.00,0.00,\"\",0.00,168.00,138.00,1069.00,,,,,,\n2015,5,24,\"DL\",\"2150\",\"LGA\",\"DTW\",-4.00,-25.00,0.00,\"\",0.00,104.00,82.00,502.00,,,,,,\n2015,5,24,\"DL\",\"2151\",\"MIA\",\"LGA\",-6.00,7.00,0.00,\"\",0.00,197.00,152.00,1096.00,,,,,,\n2015,5,24,\"DL\",\"2155\",\"LAS\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,277.00,260.00,2248.00,,,,,,\n2015,5,24,\"DL\",\"2156\",\"ATL\",\"SYR\",-3.00,-11.00,0.00,\"\",0.00,120.00,104.00,794.00,,,,,,\n2015,5,24,\"DL\",\"2156\",\"SYR\",\"ATL\",-5.00,-14.00,0.00,\"\",0.00,131.00,107.00,794.00,,,,,,\n2015,5,24,\"DL\",\"2174\",\"DTW\",\"JFK\",4.00,-8.00,0.00,\"\",0.00,109.00,73.00,509.00,,,,,,\n2015,5,24,\"DL\",\"2181\",\"LGA\",\"MCO\",4.00,-17.00,0.00,\"\",0.00,147.00,122.00,950.00,,,,,,\n2015,5,24,\"DL\",\"2186\",\"ATL\",\"LGA\",-2.00,-23.00,0.00,\"\",0.00,122.00,104.00,762.00,,,,,,\n2015,5,24,\"DL\",\"2189\",\"JFK\",\"CHS\",0.00,-25.00,0.00,\"\",0.00,114.00,85.00,636.00,,,,,,\n2015,5,24,\"DL\",\"2205\",\"JFK\",\"MSP\",2.00,-26.00,0.00,\"\",0.00,181.00,157.00,1029.00,,,,,,\n2015,5,24,\"DL\",\"2214\",\"BOS\",\"JFK\",-5.00,-30.00,0.00,\"\",0.00,62.00,41.00,187.00,,,,,,\n2015,5,24,\"DL\",\"2230\",\"CHS\",\"JFK\",-6.00,-1.00,0.00,\"\",0.00,134.00,91.00,636.00,,,,,,\n2015,5,24,\"DL\",\"2231\",\"LGA\",\"DTW\",-4.00,-3.00,0.00,\"\",0.00,125.00,91.00,502.00,,,,,,\n2015,5,24,\"DL\",\"2240\",\"SFO\",\"JFK\",12.00,8.00,0.00,\"\",0.00,333.00,309.00,2586.00,,,,,,\n2015,5,24,\"DL\",\"2244\",\"JFK\",\"SAT\",-2.00,-22.00,0.00,\"\",0.00,245.00,215.00,1587.00,,,,,,\n2015,5,24,\"DL\",\"2248\",\"DTW\",\"LGA\",3.00,-10.00,0.00,\"\",0.00,94.00,70.00,502.00,,,,,,\n2015,5,24,\"DL\",\"2272\",\"LGA\",\"TPA\",-3.00,-13.00,0.00,\"\",0.00,169.00,148.00,1010.00,,,,,,\n2015,5,24,\"DL\",\"2277\",\"JFK\",\"TPA\",13.00,-6.00,0.00,\"\",0.00,171.00,134.00,1005.00,,,,,,\n2015,5,24,\"DL\",\"2285\",\"LGA\",\"MCO\",-2.00,-4.00,0.00,\"\",0.00,160.00,125.00,950.00,,,,,,\n2015,5,24,\"DL\",\"2311\",\"JFK\",\"MIA\",-9.00,-36.00,0.00,\"\",0.00,175.00,140.00,1089.00,,,,,,\n2015,5,24,\"DL\",\"2312\",\"JFK\",\"DTW\",-1.00,-20.00,0.00,\"\",0.00,119.00,86.00,509.00,,,,,,\n2015,5,24,\"DL\",\"2317\",\"PBI\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,172.00,145.00,1035.00,,,,,,\n2015,5,24,\"DL\",\"2319\",\"LGA\",\"MSP\",-6.00,-4.00,0.00,\"\",0.00,194.00,155.00,1020.00,,,,,,\n2015,5,24,\"DL\",\"2334\",\"JFK\",\"BOS\",-3.00,-29.00,0.00,\"\",0.00,64.00,37.00,187.00,,,,,,\n2015,5,24,\"DL\",\"2349\",\"DTW\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,95.00,72.00,502.00,,,,,,\n2015,5,24,\"DL\",\"2350\",\"ATL\",\"JFK\",1.00,-16.00,0.00,\"\",0.00,118.00,103.00,760.00,,,,,,\n2015,5,24,\"DL\",\"2352\",\"LAS\",\"JFK\",-7.00,-34.00,0.00,\"\",0.00,283.00,259.00,2248.00,,,,,,\n2015,5,24,\"DL\",\"2354\",\"SLC\",\"JFK\",-2.00,-29.00,0.00,\"\",0.00,242.00,221.00,1990.00,,,,,,\n2015,5,24,\"DL\",\"2383\",\"JFK\",\"LAS\",0.00,-22.00,0.00,\"\",0.00,329.00,299.00,2248.00,,,,,,\n2015,5,24,\"DL\",\"2395\",\"LGA\",\"PBI\",-1.00,-34.00,0.00,\"\",0.00,145.00,128.00,1035.00,,,,,,\n2015,5,24,\"DL\",\"2404\",\"SAN\",\"JFK\",-5.00,-37.00,0.00,\"\",0.00,302.00,279.00,2446.00,,,,,,\n2015,5,24,\"DL\",\"2405\",\"PHX\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,288.00,254.00,2153.00,,,,,,\n2015,5,24,\"DL\",\"2406\",\"TPA\",\"LGA\",-13.00,-21.00,0.00,\"\",0.00,151.00,135.00,1010.00,,,,,,\n2015,5,24,\"DL\",\"2413\",\"MIA\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,177.00,153.00,1096.00,,,,,,\n2015,5,24,\"DL\",\"2432\",\"DTW\",\"SYR\",-5.00,-15.00,0.00,\"\",0.00,69.00,53.00,374.00,,,,,,\n2015,5,24,\"DL\",\"2441\",\"SAN\",\"JFK\",-16.00,-27.00,0.00,\"\",0.00,314.00,292.00,2446.00,,,,,,\n2015,5,24,\"DL\",\"2450\",\"MCO\",\"LGA\",-7.00,-5.00,0.00,\"\",0.00,157.00,127.00,950.00,,,,,,\n2015,5,24,\"DL\",\"2464\",\"TPA\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,150.00,133.00,1005.00,,,,,,\n2015,5,24,\"DL\",\"2473\",\"ATL\",\"BUF\",-4.00,-18.00,0.00,\"\",0.00,112.00,94.00,712.00,,,,,,\n2015,5,24,\"DL\",\"2483\",\"JFK\",\"MCO\",-7.00,-31.00,0.00,\"\",0.00,163.00,124.00,944.00,,,,,,\n2015,5,24,\"DL\",\"2496\",\"ATL\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,126.00,105.00,762.00,,,,,,\n2015,5,24,\"DL\",\"2517\",\"DTW\",\"ROC\",-5.00,-6.00,0.00,\"\",0.00,71.00,46.00,296.00,,,,,,\n2015,5,24,\"DL\",\"2554\",\"DEN\",\"JFK\",-6.00,-30.00,0.00,\"\",0.00,215.00,190.00,1626.00,,,,,,\n2015,5,24,\"DL\",\"2567\",\"DTW\",\"ALB\",-7.00,-10.00,0.00,\"\",0.00,85.00,62.00,489.00,,,,,,\n2015,5,24,\"DL\",\"2577\",\"JFK\",\"FLL\",-10.00,-46.00,0.00,\"\",0.00,165.00,134.00,1069.00,,,,,,\n2015,5,24,\"DL\",\"2594\",\"ALB\",\"DTW\",-6.00,-15.00,0.00,\"\",0.00,92.00,78.00,489.00,,,,,,\n2015,5,24,\"DL\",\"2595\",\"MSP\",\"BUF\",-3.00,-13.00,0.00,\"\",0.00,107.00,91.00,735.00,,,,,,\n2015,5,24,\"DL\",\"2596\",\"PBI\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,160.00,142.00,1035.00,,,,,,\n2015,5,24,\"DL\",\"2634\",\"JFK\",\"BUF\",0.00,-24.00,0.00,\"\",0.00,79.00,52.00,301.00,,,,,,\n2015,5,24,\"DL\",\"2645\",\"JFK\",\"RSW\",-4.00,-25.00,0.00,\"\",0.00,178.00,142.00,1074.00,,,,,,\n2015,5,24,\"DL\",\"2653\",\"MCO\",\"JFK\",-7.00,-3.00,0.00,\"\",0.00,168.00,128.00,944.00,,,,,,\n2015,5,24,\"DL\",\"2655\",\"JFK\",\"MSP\",-5.00,-26.00,0.00,\"\",0.00,175.00,160.00,1029.00,,,,,,\n2015,5,24,\"DL\",\"2667\",\"BOS\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,65.00,42.00,184.00,,,,,,\n2015,5,24,\"DL\",\"2671\",\"BOS\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,62.00,44.00,184.00,,,,,,\n2015,5,24,\"DL\",\"2672\",\"LGA\",\"BOS\",-6.00,-26.00,0.00,\"\",0.00,60.00,38.00,184.00,,,,,,\n2015,5,24,\"DL\",\"2675\",\"BOS\",\"LGA\",24.00,14.00,0.00,\"\",0.00,64.00,43.00,184.00,,,,,,\n2015,5,24,\"DL\",\"2678\",\"LGA\",\"BOS\",0.00,-19.00,0.00,\"\",0.00,62.00,41.00,184.00,,,,,,\n2015,5,24,\"DL\",\"2681\",\"BOS\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,74.00,42.00,184.00,,,,,,\n2015,5,24,\"DL\",\"2686\",\"LGA\",\"BOS\",-3.00,-13.00,0.00,\"\",0.00,68.00,47.00,184.00,,,,,,\n2015,5,24,\"DL\",\"2692\",\"LGA\",\"BOS\",-6.00,-23.00,0.00,\"\",0.00,61.00,40.00,184.00,,,,,,\n2015,5,24,\"DL\",\"2785\",\"JFK\",\"CHS\",-7.00,-35.00,0.00,\"\",0.00,108.00,87.00,636.00,,,,,,\n2015,5,25,\"DL\",\"42\",\"MIA\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,169.00,150.00,1089.00,,,,,,\n2015,5,25,\"DL\",\"208\",\"JFK\",\"MCO\",-6.00,-25.00,0.00,\"\",0.00,168.00,125.00,944.00,,,,,,\n2015,5,25,\"DL\",\"221\",\"LGA\",\"ATL\",-2.00,12.00,0.00,\"\",0.00,179.00,143.00,762.00,,,,,,\n2015,5,25,\"DL\",\"234\",\"PIT\",\"JFK\",18.00,-2.00,0.00,\"\",0.00,80.00,61.00,340.00,,,,,,\n2015,5,25,\"DL\",\"245\",\"JFK\",\"SLC\",0.00,-21.00,0.00,\"\",0.00,307.00,267.00,1990.00,,,,,,\n2015,5,25,\"DL\",\"326\",\"SJU\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,227.00,211.00,1598.00,,,,,,\n2015,5,25,\"DL\",\"332\",\"SJU\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,229.00,212.00,1598.00,,,,,,\n2015,5,25,\"DL\",\"333\",\"MSP\",\"LGA\",18.00,18.00,0.00,\"\",0.00,163.00,136.00,1020.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"342\",\"SFO\",\"JFK\",17.00,25.00,0.00,\"\",0.00,347.00,300.00,2586.00,17.00,0.00,8.00,0.00,0.00,\n2015,5,25,\"DL\",\"347\",\"LGA\",\"ATL\",-5.00,2.00,0.00,\"\",0.00,163.00,113.00,762.00,,,,,,\n2015,5,25,\"DL\",\"348\",\"SJU\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,225.00,205.00,1598.00,,,,,,\n2015,5,25,\"DL\",\"350\",\"LGA\",\"ATL\",3.00,10.00,0.00,\"\",0.00,160.00,117.00,762.00,,,,,,\n2015,5,25,\"DL\",\"400\",\"PDX\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,315.00,295.00,2454.00,,,,,,\n2015,5,25,\"DL\",\"401\",\"AUS\",\"JFK\",-3.00,-30.00,0.00,\"\",0.00,209.00,191.00,1521.00,,,,,,\n2015,5,25,\"DL\",\"403\",\"PDX\",\"JFK\",7.00,-8.00,0.00,\"\",0.00,319.00,293.00,2454.00,,,,,,\n2015,5,25,\"DL\",\"407\",\"MCO\",\"JFK\",-8.00,-29.00,0.00,\"\",0.00,148.00,131.00,944.00,,,,,,\n2015,5,25,\"DL\",\"409\",\"JFK\",\"SJU\",-4.00,-44.00,0.00,\"\",0.00,207.00,184.00,1598.00,,,,,,\n2015,5,25,\"DL\",\"410\",\"MSP\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,155.00,132.00,1029.00,,,,,,\n2015,5,25,\"DL\",\"412\",\"LAX\",\"JFK\",5.00,-17.00,0.00,\"\",0.00,317.00,290.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"414\",\"SFO\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,324.00,304.00,2586.00,,,,,,\n2015,5,25,\"DL\",\"415\",\"JFK\",\"SFO\",2.00,-26.00,0.00,\"\",0.00,380.00,349.00,2586.00,,,,,,\n2015,5,25,\"DL\",\"418\",\"SEA\",\"JFK\",-5.00,2.00,0.00,\"\",0.00,335.00,297.00,2422.00,,,,,,\n2015,5,25,\"DL\",\"419\",\"JFK\",\"SEA\",-8.00,-34.00,0.00,\"\",0.00,353.00,314.00,2422.00,,,,,,\n2015,5,25,\"DL\",\"420\",\"JFK\",\"LAX\",-4.00,-39.00,0.00,\"\",0.00,363.00,324.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"421\",\"JFK\",\"ATL\",-5.00,-15.00,0.00,\"\",0.00,157.00,109.00,760.00,,,,,,\n2015,5,25,\"DL\",\"422\",\"JFK\",\"LAX\",-10.00,-33.00,0.00,\"\",0.00,357.00,325.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"423\",\"JFK\",\"LAX\",-5.00,-10.00,0.00,\"\",0.00,368.00,324.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"424\",\"JFK\",\"LAX\",-8.00,-32.00,0.00,\"\",0.00,346.00,312.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"426\",\"JFK\",\"DTW\",125.00,86.00,0.00,\"\",0.00,100.00,81.00,509.00,86.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"427\",\"JFK\",\"LAX\",-4.00,-1.00,0.00,\"\",0.00,391.00,338.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"428\",\"JFK\",\"ATL\",20.00,2.00,0.00,\"\",0.00,151.00,116.00,760.00,,,,,,\n2015,5,25,\"DL\",\"430\",\"JFK\",\"SFO\",29.00,-4.00,0.00,\"\",0.00,351.00,329.00,2586.00,,,,,,\n2015,5,25,\"DL\",\"431\",\"JFK\",\"SFO\",0.00,-12.00,0.00,\"\",0.00,397.00,345.00,2586.00,,,,,,\n2015,5,25,\"DL\",\"433\",\"JFK\",\"LAS\",-4.00,-37.00,0.00,\"\",0.00,317.00,289.00,2248.00,,,,,,\n2015,5,25,\"DL\",\"434\",\"JFK\",\"ATL\",-7.00,-13.00,0.00,\"\",0.00,145.00,113.00,760.00,,,,,,\n2015,5,25,\"DL\",\"435\",\"JFK\",\"SFO\",1.00,-4.00,0.00,\"\",0.00,399.00,348.00,2586.00,,,,,,\n2015,5,25,\"DL\",\"436\",\"JFK\",\"FLL\",-12.00,-29.00,0.00,\"\",0.00,167.00,145.00,1069.00,,,,,,\n2015,5,25,\"DL\",\"437\",\"JFK\",\"BOS\",8.00,4.00,0.00,\"\",0.00,73.00,40.00,187.00,,,,,,\n2015,5,25,\"DL\",\"438\",\"JFK\",\"MCO\",-9.00,-24.00,0.00,\"\",0.00,153.00,128.00,944.00,,,,,,\n2015,5,25,\"DL\",\"439\",\"JFK\",\"MSP\",6.00,-13.00,0.00,\"\",0.00,173.00,140.00,1029.00,,,,,,\n2015,5,25,\"DL\",\"440\",\"JFK\",\"SFO\",19.00,-23.00,0.00,\"\",0.00,366.00,337.00,2586.00,,,,,,\n2015,5,25,\"DL\",\"443\",\"JFK\",\"LAS\",-1.00,-23.00,0.00,\"\",0.00,334.00,297.00,2248.00,,,,,,\n2015,5,25,\"DL\",\"444\",\"SLC\",\"JFK\",4.00,-13.00,0.00,\"\",0.00,263.00,245.00,1990.00,,,,,,\n2015,5,25,\"DL\",\"445\",\"JFK\",\"TPA\",-5.00,-21.00,0.00,\"\",0.00,155.00,137.00,1005.00,,,,,,\n2015,5,25,\"DL\",\"447\",\"JFK\",\"LAX\",28.00,-7.00,0.00,\"\",0.00,355.00,324.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"448\",\"JFK\",\"SEA\",-8.00,-5.00,0.00,\"\",0.00,363.00,298.00,2422.00,,,,,,\n2015,5,25,\"DL\",\"451\",\"JFK\",\"SJU\",-1.00,-27.00,0.00,\"\",0.00,216.00,174.00,1598.00,,,,,,\n2015,5,25,\"DL\",\"453\",\"JFK\",\"SJU\",-12.00,-37.00,0.00,\"\",0.00,209.00,187.00,1598.00,,,,,,\n2015,5,25,\"DL\",\"454\",\"JFK\",\"ATL\",-6.00,-21.00,0.00,\"\",0.00,137.00,108.00,760.00,,,,,,\n2015,5,25,\"DL\",\"455\",\"JFK\",\"PDX\",-1.00,-45.00,0.00,\"\",0.00,341.00,319.00,2454.00,,,,,,\n2015,5,25,\"DL\",\"456\",\"JFK\",\"SAN\",8.00,-1.00,0.00,\"\",0.00,369.00,331.00,2446.00,,,,,,\n2015,5,25,\"DL\",\"458\",\"JFK\",\"SEA\",-3.00,-24.00,0.00,\"\",0.00,342.00,318.00,2422.00,,,,,,\n2015,5,25,\"DL\",\"459\",\"JFK\",\"SAN\",-7.00,-42.00,0.00,\"\",0.00,340.00,311.00,2446.00,,,,,,\n2015,5,25,\"DL\",\"460\",\"JFK\",\"SLC\",0.00,-41.00,0.00,\"\",0.00,284.00,257.00,1990.00,,,,,,\n2015,5,25,\"DL\",\"464\",\"JFK\",\"MIA\",-1.00,-21.00,0.00,\"\",0.00,165.00,144.00,1089.00,,,,,,\n2015,5,25,\"DL\",\"465\",\"JFK\",\"STT\",-7.00,-28.00,0.00,\"\",0.00,225.00,188.00,1623.00,,,,,,\n2015,5,25,\"DL\",\"468\",\"SFO\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,337.00,310.00,2586.00,,,,,,\n2015,5,25,\"DL\",\"469\",\"JFK\",\"SFO\",-6.00,-46.00,0.00,\"\",0.00,350.00,322.00,2586.00,,,,,,\n2015,5,25,\"DL\",\"472\",\"JFK\",\"LAX\",-1.00,-20.00,0.00,\"\",0.00,366.00,318.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"476\",\"LAX\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,335.00,293.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"477\",\"JFK\",\"LAX\",12.00,-6.00,0.00,\"\",0.00,377.00,331.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"478\",\"ATL\",\"JFK\",0.00,-22.00,0.00,\"\",0.00,130.00,105.00,760.00,,,,,,\n2015,5,25,\"DL\",\"486\",\"JFK\",\"LAS\",-8.00,-17.00,0.00,\"\",0.00,323.00,295.00,2248.00,,,,,,\n2015,5,25,\"DL\",\"488\",\"JFK\",\"SJU\",-3.00,-21.00,0.00,\"\",0.00,209.00,184.00,1598.00,,,,,,\n2015,5,25,\"DL\",\"491\",\"JFK\",\"SLC\",8.00,-3.00,0.00,\"\",0.00,294.00,270.00,1990.00,,,,,,\n2015,5,25,\"DL\",\"494\",\"JFK\",\"LAS\",3.00,-18.00,0.00,\"\",0.00,335.00,295.00,2248.00,,,,,,\n2015,5,25,\"DL\",\"498\",\"JFK\",\"SEA\",7.00,-18.00,0.00,\"\",0.00,357.00,309.00,2422.00,,,,,,\n2015,5,25,\"DL\",\"499\",\"JFK\",\"SLC\",-6.00,-36.00,0.00,\"\",0.00,280.00,255.00,1990.00,,,,,,\n2015,5,25,\"DL\",\"511\",\"SJU\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,232.00,209.00,1598.00,,,,,,\n2015,5,25,\"DL\",\"527\",\"RSW\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,159.00,135.00,1074.00,,,,,,\n2015,5,25,\"DL\",\"528\",\"LGA\",\"MSP\",-6.00,-29.00,0.00,\"\",0.00,162.00,141.00,1020.00,,,,,,\n2015,5,25,\"DL\",\"541\",\"LAS\",\"JFK\",15.00,6.00,0.00,\"\",0.00,289.00,265.00,2248.00,,,,,,\n2015,5,25,\"DL\",\"544\",\"ALB\",\"ATL\",-6.00,-14.00,0.00,\"\",0.00,147.00,122.00,853.00,,,,,,\n2015,5,25,\"DL\",\"582\",\"DTW\",\"LGA\",-1.00,4.00,0.00,\"\",0.00,112.00,80.00,502.00,,,,,,\n2015,5,25,\"DL\",\"662\",\"BUF\",\"MSP\",-2.00,-20.00,0.00,\"\",0.00,126.00,106.00,735.00,,,,,,\n2015,5,25,\"DL\",\"664\",\"TPA\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,155.00,135.00,1010.00,,,,,,\n2015,5,25,\"DL\",\"665\",\"ATL\",\"ALB\",100.00,85.00,0.00,\"\",0.00,125.00,107.00,853.00,85.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"665\",\"ALB\",\"ATL\",83.00,80.00,0.00,\"\",0.00,149.00,128.00,853.00,80.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"676\",\"STT\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,241.00,219.00,1623.00,,,,,,\n2015,5,25,\"DL\",\"707\",\"DTW\",\"ALB\",-3.00,-18.00,0.00,\"\",0.00,82.00,65.00,489.00,,,,,,\n2015,5,25,\"DL\",\"707\",\"ALB\",\"DTW\",-2.00,-13.00,0.00,\"\",0.00,99.00,78.00,489.00,,,,,,\n2015,5,25,\"DL\",\"714\",\"DTW\",\"LGA\",-6.00,-2.00,0.00,\"\",0.00,110.00,75.00,502.00,,,,,,\n2015,5,25,\"DL\",\"723\",\"ATL\",\"BUF\",-3.00,-19.00,0.00,\"\",0.00,111.00,91.00,712.00,,,,,,\n2015,5,25,\"DL\",\"723\",\"BUF\",\"ATL\",-5.00,-10.00,0.00,\"\",0.00,126.00,107.00,712.00,,,,,,\n2015,5,25,\"DL\",\"729\",\"LAS\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,299.00,263.00,2248.00,,,,,,\n2015,5,25,\"DL\",\"731\",\"LGA\",\"DTW\",-4.00,-20.00,0.00,\"\",0.00,97.00,77.00,502.00,,,,,,\n2015,5,25,\"DL\",\"750\",\"BOS\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,61.00,40.00,187.00,,,,,,\n2015,5,20,\"DL\",\"2129\",\"ROC\",\"ATL\",0.00,-12.00,0.00,\"\",0.00,117.00,101.00,749.00,,,,,,\n2015,5,20,\"DL\",\"2131\",\"LGA\",\"DTW\",-4.00,24.00,0.00,\"\",0.00,147.00,83.00,502.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,20,\"DL\",\"2135\",\"TPA\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,153.00,136.00,1010.00,,,,,,\n2015,5,20,\"DL\",\"2148\",\"LGA\",\"DTW\",-3.00,1.00,0.00,\"\",0.00,132.00,90.00,502.00,,,,,,\n2015,5,20,\"DL\",\"2150\",\"LGA\",\"DTW\",3.00,11.00,0.00,\"\",0.00,134.00,85.00,502.00,,,,,,\n2015,5,20,\"DL\",\"2151\",\"MIA\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,169.00,149.00,1096.00,,,,,,\n2015,5,20,\"DL\",\"2155\",\"LAS\",\"JFK\",0.00,-34.00,0.00,\"\",0.00,269.00,247.00,2248.00,,,,,,\n2015,5,20,\"DL\",\"2156\",\"ATL\",\"SYR\",-3.00,-15.00,0.00,\"\",0.00,118.00,103.00,794.00,,,,,,\n2015,5,20,\"DL\",\"2156\",\"SYR\",\"ATL\",-1.00,-14.00,0.00,\"\",0.00,130.00,111.00,794.00,,,,,,\n2015,5,20,\"DL\",\"2166\",\"SYR\",\"DTW\",-10.00,-11.00,0.00,\"\",0.00,92.00,69.00,374.00,,,,,,\n2015,5,20,\"DL\",\"2174\",\"DTW\",\"JFK\",38.00,24.00,0.00,\"\",0.00,107.00,72.00,509.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,20,\"DL\",\"2175\",\"JFK\",\"TPA\",-5.00,-17.00,0.00,\"\",0.00,174.00,138.00,1005.00,,,,,,\n2015,5,20,\"DL\",\"2178\",\"LGA\",\"TPA\",159.00,182.00,0.00,\"\",0.00,204.00,146.00,1010.00,159.00,0.00,23.00,0.00,0.00,\n2015,5,20,\"DL\",\"2181\",\"LGA\",\"MCO\",7.00,55.00,0.00,\"\",0.00,218.00,150.00,950.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,20,\"DL\",\"2182\",\"JFK\",\"PHX\",-4.00,6.00,0.00,\"\",0.00,346.00,302.00,2153.00,,,,,,\n2015,5,20,\"DL\",\"2185\",\"FLL\",\"JFK\",-11.00,-17.00,0.00,\"\",0.00,167.00,144.00,1069.00,,,,,,\n2015,5,20,\"DL\",\"2186\",\"ATL\",\"LGA\",-5.00,5.00,0.00,\"\",0.00,156.00,101.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1875\",\"LGA\",\"TPA\",-3.00,-20.00,0.00,\"\",0.00,162.00,141.00,1010.00,,,,,,\n2015,5,23,\"DL\",\"1879\",\"LGA\",\"FLL\",-3.00,-19.00,0.00,\"\",0.00,168.00,149.00,1076.00,,,,,,\n2015,5,23,\"DL\",\"1885\",\"LGA\",\"MCO\",-3.00,-20.00,0.00,\"\",0.00,161.00,132.00,950.00,,,,,,\n2015,5,23,\"DL\",\"1897\",\"LGA\",\"MCO\",-5.00,-19.00,0.00,\"\",0.00,157.00,128.00,950.00,,,,,,\n2015,5,23,\"DL\",\"1902\",\"LGA\",\"PBI\",-1.00,-21.00,0.00,\"\",0.00,165.00,137.00,1035.00,,,,,,\n2015,5,23,\"DL\",\"1919\",\"LGA\",\"MSP\",-5.00,-8.00,0.00,\"\",0.00,175.00,153.00,1020.00,,,,,,\n2015,5,23,\"DL\",\"1947\",\"FLL\",\"JFK\",-9.00,-4.00,0.00,\"\",0.00,188.00,153.00,1069.00,,,,,,\n2015,5,23,\"DL\",\"1948\",\"DTW\",\"LGA\",2.00,-18.00,0.00,\"\",0.00,86.00,67.00,502.00,,,,,,\n2015,5,23,\"DL\",\"1958\",\"PBI\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,167.00,144.00,1035.00,,,,,,\n2015,5,23,\"DL\",\"1969\",\"BUF\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,83.00,51.00,301.00,,,,,,\n2015,5,23,\"DL\",\"1972\",\"AUS\",\"JFK\",7.00,-8.00,0.00,\"\",0.00,207.00,189.00,1521.00,,,,,,\n2015,5,23,\"DL\",\"1982\",\"LGA\",\"MIA\",17.00,-7.00,0.00,\"\",0.00,172.00,139.00,1096.00,,,,,,\n2015,5,23,\"DL\",\"1986\",\"ATL\",\"LGA\",1.00,-23.00,0.00,\"\",0.00,123.00,101.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1994\",\"PHX\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,279.00,241.00,2153.00,,,,,,\n2015,5,23,\"DL\",\"1996\",\"MSP\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,147.00,130.00,1020.00,,,,,,\n2015,5,23,\"DL\",\"2003\",\"LGA\",\"MIA\",-1.00,-18.00,0.00,\"\",0.00,168.00,146.00,1096.00,,,,,,\n2015,5,23,\"DL\",\"2013\",\"ATL\",\"SYR\",53.00,41.00,0.00,\"\",0.00,121.00,106.00,794.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"DL\",\"2014\",\"SYR\",\"ATL\",-1.00,-3.00,0.00,\"\",0.00,135.00,112.00,794.00,,,,,,\n2015,5,23,\"DL\",\"2015\",\"JFK\",\"SJU\",-3.00,-36.00,0.00,\"\",0.00,206.00,184.00,1598.00,,,,,,\n2015,5,23,\"DL\",\"2016\",\"LGA\",\"ATL\",-1.00,-13.00,0.00,\"\",0.00,138.00,113.00,762.00,,,,,,\n2015,5,23,\"DL\",\"2020\",\"JFK\",\"PBI\",-5.00,-17.00,0.00,\"\",0.00,174.00,140.00,1028.00,,,,,,\n2015,5,23,\"DL\",\"2022\",\"JFK\",\"ATL\",-1.00,-1.00,0.00,\"\",0.00,169.00,103.00,760.00,,,,,,\n2015,5,23,\"DL\",\"2025\",\"JFK\",\"FLL\",-2.00,-33.00,0.00,\"\",0.00,169.00,141.00,1069.00,,,,,,\n2015,5,23,\"DL\",\"2028\",\"JFK\",\"ATL\",-1.00,-10.00,0.00,\"\",0.00,154.00,112.00,760.00,,,,,,\n2015,5,23,\"DL\",\"2032\",\"MSP\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,147.00,129.00,1029.00,,,,,,\n2015,5,23,\"DL\",\"2038\",\"JFK\",\"TPA\",-3.00,-7.00,0.00,\"\",0.00,180.00,142.00,1005.00,,,,,,\n2015,5,23,\"DL\",\"2045\",\"JFK\",\"ATL\",5.00,-16.00,0.00,\"\",0.00,144.00,102.00,760.00,,,,,,\n2015,5,23,\"DL\",\"2053\",\"JFK\",\"FLL\",-4.00,-34.00,0.00,\"\",0.00,170.00,149.00,1069.00,,,,,,\n2015,5,23,\"DL\",\"2057\",\"JFK\",\"BOS\",32.00,9.00,0.00,\"\",0.00,71.00,39.00,187.00,,,,,,\n2015,5,23,\"DL\",\"2058\",\"MCO\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,152.00,128.00,944.00,,,,,,\n2015,5,23,\"DL\",\"2073\",\"JFK\",\"DEN\",18.00,18.00,0.00,\"\",0.00,278.00,248.00,1626.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,23,\"DL\",\"2074\",\"LGA\",\"ATL\",-4.00,9.00,0.00,\"\",0.00,166.00,108.00,762.00,,,,,,\n2015,5,23,\"DL\",\"2077\",\"LGA\",\"MCO\",-5.00,-19.00,0.00,\"\",0.00,159.00,126.00,950.00,,,,,,\n2015,5,23,\"DL\",\"2096\",\"LGA\",\"MSP\",-2.00,-13.00,0.00,\"\",0.00,178.00,156.00,1020.00,,,,,,\n2015,5,23,\"DL\",\"2106\",\"MSP\",\"SYR\",-1.00,-8.00,0.00,\"\",0.00,118.00,100.00,860.00,,,,,,\n2015,5,23,\"DL\",\"2119\",\"LGA\",\"MSP\",-2.00,-7.00,0.00,\"\",0.00,177.00,151.00,1020.00,,,,,,\n2015,5,23,\"DL\",\"2129\",\"ROC\",\"ATL\",-12.00,8.00,0.00,\"\",0.00,149.00,102.00,749.00,,,,,,\n2015,5,23,\"DL\",\"2150\",\"LGA\",\"DTW\",-5.00,-28.00,0.00,\"\",0.00,105.00,82.00,502.00,,,,,,\n2015,5,23,\"DL\",\"2151\",\"MIA\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,169.00,140.00,1096.00,,,,,,\n2015,5,23,\"DL\",\"2155\",\"LAS\",\"JFK\",0.00,-31.00,0.00,\"\",0.00,268.00,249.00,2248.00,,,,,,\n2015,5,23,\"DL\",\"2156\",\"ATL\",\"SYR\",0.00,-3.00,0.00,\"\",0.00,125.00,107.00,794.00,,,,,,\n2015,5,23,\"DL\",\"2156\",\"SYR\",\"ATL\",-1.00,-21.00,0.00,\"\",0.00,120.00,107.00,794.00,,,,,,\n2015,5,23,\"DL\",\"2166\",\"SYR\",\"DTW\",-4.00,-23.00,0.00,\"\",0.00,74.00,58.00,374.00,,,,,,\n2015,5,23,\"DL\",\"2174\",\"DTW\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,101.00,72.00,509.00,,,,,,\n2015,5,23,\"DL\",\"2175\",\"JFK\",\"PHX\",-3.00,0.00,0.00,\"\",0.00,332.00,308.00,2153.00,,,,,,\n2015,5,23,\"DL\",\"2179\",\"JFK\",\"SLC\",-2.00,-18.00,0.00,\"\",0.00,305.00,273.00,1990.00,,,,,,\n2015,5,23,\"DL\",\"2181\",\"LGA\",\"MCO\",-5.00,-20.00,0.00,\"\",0.00,152.00,130.00,950.00,,,,,,\n2015,5,23,\"DL\",\"2185\",\"FLL\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,157.00,136.00,1069.00,,,,,,\n2015,5,23,\"DL\",\"2186\",\"ATL\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,130.00,105.00,762.00,,,,,,\n2015,5,23,\"DL\",\"2190\",\"JFK\",\"MIA\",4.00,-19.00,0.00,\"\",0.00,173.00,143.00,1089.00,,,,,,\n2015,5,23,\"DL\",\"2214\",\"ATL\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,120.00,100.00,762.00,,,,,,\n2015,5,23,\"DL\",\"2231\",\"LGA\",\"DTW\",-2.00,-20.00,0.00,\"\",0.00,106.00,82.00,502.00,,,,,,\n2015,5,23,\"DL\",\"2232\",\"JFK\",\"SJU\",3.00,-24.00,0.00,\"\",0.00,218.00,185.00,1598.00,,,,,,\n2015,5,23,\"DL\",\"2240\",\"SFO\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,320.00,294.00,2586.00,,,,,,\n2015,5,23,\"DL\",\"2248\",\"DTW\",\"LGA\",1.00,-4.00,0.00,\"\",0.00,100.00,75.00,502.00,,,,,,\n2015,5,23,\"DL\",\"2270\",\"LGA\",\"RSW\",-2.00,-13.00,0.00,\"\",0.00,182.00,157.00,1080.00,,,,,,\n2015,5,23,\"DL\",\"2277\",\"JFK\",\"TPA\",-6.00,-38.00,0.00,\"\",0.00,158.00,139.00,1005.00,,,,,,\n2015,5,23,\"DL\",\"2280\",\"LGA\",\"TPA\",-2.00,-7.00,0.00,\"\",0.00,167.00,145.00,1010.00,,,,,,\n2015,5,23,\"DL\",\"2285\",\"LGA\",\"MCO\",-5.00,-10.00,0.00,\"\",0.00,157.00,128.00,950.00,,,,,,\n2015,5,23,\"DL\",\"2311\",\"JFK\",\"MIA\",-7.00,-27.00,0.00,\"\",0.00,182.00,138.00,1089.00,,,,,,\n2015,5,23,\"DL\",\"2312\",\"JFK\",\"DTW\",-6.00,-36.00,0.00,\"\",0.00,108.00,86.00,509.00,,,,,,\n2015,5,23,\"DL\",\"2317\",\"PBI\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,162.00,142.00,1035.00,,,,,,\n2015,5,23,\"DL\",\"2334\",\"LGA\",\"RSW\",2.00,-19.00,0.00,\"\",0.00,179.00,158.00,1080.00,,,,,,\n2015,5,23,\"DL\",\"2341\",\"JFK\",\"MSP\",0.00,-31.00,0.00,\"\",0.00,178.00,156.00,1029.00,,,,,,\n2015,5,23,\"DL\",\"2349\",\"DTW\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,87.00,69.00,502.00,,,,,,\n2015,5,23,\"DL\",\"2350\",\"ATL\",\"JFK\",15.00,-3.00,0.00,\"\",0.00,117.00,98.00,760.00,,,,,,\n2015,5,23,\"DL\",\"2352\",\"LAS\",\"JFK\",0.00,-40.00,0.00,\"\",0.00,270.00,250.00,2248.00,,,,,,\n2015,5,23,\"DL\",\"2354\",\"SLC\",\"JFK\",3.00,-25.00,0.00,\"\",0.00,241.00,222.00,1990.00,,,,,,\n2015,5,23,\"DL\",\"2395\",\"LGA\",\"PBI\",-6.00,-24.00,0.00,\"\",0.00,160.00,139.00,1035.00,,,,,,\n2015,5,23,\"DL\",\"2404\",\"SAN\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,316.00,285.00,2446.00,,,,,,\n2015,5,23,\"DL\",\"2405\",\"PHX\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,288.00,256.00,2153.00,,,,,,\n2015,5,23,\"DL\",\"2406\",\"TPA\",\"LGA\",-10.00,-2.00,0.00,\"\",0.00,171.00,133.00,1010.00,,,,,,\n2015,5,23,\"DL\",\"2413\",\"MIA\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,168.00,144.00,1096.00,,,,,,\n2015,5,23,\"DL\",\"2450\",\"MCO\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,139.00,122.00,950.00,,,,,,\n2015,5,23,\"DL\",\"2464\",\"TPA\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,150.00,131.00,1005.00,,,,,,\n2015,5,23,\"DL\",\"2473\",\"ATL\",\"BUF\",19.00,10.00,0.00,\"\",0.00,117.00,97.00,712.00,,,,,,\n2015,5,23,\"DL\",\"2474\",\"JFK\",\"SJU\",0.00,-27.00,0.00,\"\",0.00,212.00,187.00,1598.00,,,,,,\n2015,5,23,\"DL\",\"2496\",\"ATL\",\"LGA\",-5.00,-27.00,0.00,\"\",0.00,116.00,99.00,762.00,,,,,,\n2015,5,23,\"DL\",\"2554\",\"DEN\",\"JFK\",12.00,-28.00,0.00,\"\",0.00,199.00,179.00,1626.00,,,,,,\n2015,5,23,\"DL\",\"2567\",\"DTW\",\"ALB\",-8.00,10.00,0.00,\"\",0.00,106.00,62.00,489.00,,,,,,\n2015,5,23,\"DL\",\"2569\",\"JFK\",\"PHX\",19.00,44.00,0.00,\"\",0.00,365.00,319.00,2153.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,23,\"DL\",\"2577\",\"JFK\",\"FLL\",22.00,-13.00,0.00,\"\",0.00,166.00,138.00,1069.00,,,,,,\n2015,5,23,\"DL\",\"2593\",\"SAT\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,215.00,199.00,1587.00,,,,,,\n2015,5,23,\"DL\",\"2595\",\"FLL\",\"LGA\",-6.00,-30.00,0.00,\"\",0.00,158.00,139.00,1076.00,,,,,,\n2015,5,23,\"DL\",\"2596\",\"PBI\",\"LGA\",-3.00,,0.00,\"\",1.00,,,1035.00,,,,,,\n2015,5,23,\"DL\",\"2622\",\"ROC\",\"DTW\",-5.00,-7.00,0.00,\"\",0.00,80.00,50.00,296.00,,,,,,\n2015,5,23,\"DL\",\"2632\",\"JFK\",\"MCO\",-7.00,-18.00,0.00,\"\",0.00,168.00,130.00,944.00,,,,,,\n2015,5,23,\"DL\",\"2645\",\"JFK\",\"RSW\",-6.00,-22.00,0.00,\"\",0.00,185.00,158.00,1074.00,,,,,,\n2015,5,23,\"DL\",\"2649\",\"JFK\",\"TPA\",-5.00,-14.00,0.00,\"\",0.00,176.00,138.00,1005.00,,,,,,\n2015,5,23,\"DL\",\"2650\",\"TPA\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,158.00,132.00,1005.00,,,,,,\n2015,5,23,\"DL\",\"2652\",\"TPA\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,162.00,138.00,1005.00,,,,,,\n2015,5,23,\"DL\",\"2653\",\"MCO\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,162.00,123.00,944.00,,,,,,\n2015,5,23,\"DL\",\"2667\",\"BOS\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,75.00,43.00,184.00,,,,,,\n2015,5,23,\"DL\",\"2671\",\"BOS\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,76.00,43.00,184.00,,,,,,\n2015,5,23,\"DL\",\"2672\",\"LGA\",\"BOS\",-1.00,-24.00,0.00,\"\",0.00,57.00,39.00,184.00,,,,,,\n2015,5,23,\"DL\",\"2675\",\"BOS\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,67.00,42.00,184.00,,,,,,\n2015,5,23,\"DL\",\"2678\",\"LGA\",\"BOS\",-2.00,-21.00,0.00,\"\",0.00,62.00,37.00,184.00,,,,,,\n2015,5,23,\"DL\",\"2681\",\"BOS\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,57.00,37.00,184.00,,,,,,\n2015,5,23,\"DL\",\"2686\",\"LGA\",\"BOS\",0.00,-14.00,0.00,\"\",0.00,64.00,40.00,184.00,,,,,,\n2015,5,23,\"DL\",\"2692\",\"LGA\",\"BOS\",-2.00,-14.00,0.00,\"\",0.00,66.00,40.00,184.00,,,,,,\n2015,5,24,\"DL\",\"42\",\"MIA\",\"JFK\",4.00,-7.00,0.00,\"\",0.00,176.00,145.00,1089.00,,,,,,\n2015,5,24,\"DL\",\"221\",\"LGA\",\"ATL\",11.00,-23.00,0.00,\"\",0.00,128.00,109.00,762.00,,,,,,\n2015,5,24,\"DL\",\"245\",\"JFK\",\"SLC\",-1.00,-31.00,0.00,\"\",0.00,295.00,266.00,1990.00,,,,,,\n2015,5,24,\"DL\",\"326\",\"SJU\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,230.00,210.00,1598.00,,,,,,\n2015,5,24,\"DL\",\"332\",\"SJU\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,236.00,214.00,1598.00,,,,,,\n2015,5,24,\"DL\",\"342\",\"SFO\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,321.00,297.00,2586.00,,,,,,\n2015,5,24,\"DL\",\"347\",\"LGA\",\"ATL\",-5.00,-31.00,0.00,\"\",0.00,129.00,107.00,762.00,,,,,,\n2015,5,24,\"DL\",\"348\",\"SJU\",\"JFK\",-10.00,-10.00,0.00,\"\",0.00,241.00,217.00,1598.00,,,,,,\n2015,5,24,\"DL\",\"350\",\"LGA\",\"ATL\",10.00,-7.00,0.00,\"\",0.00,133.00,102.00,762.00,,,,,,\n2015,5,24,\"DL\",\"400\",\"PDX\",\"JFK\",-8.00,-35.00,0.00,\"\",0.00,303.00,286.00,2454.00,,,,,,\n2015,5,24,\"DL\",\"407\",\"MCO\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,153.00,130.00,944.00,,,,,,\n2015,5,24,\"DL\",\"410\",\"MSP\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,165.00,125.00,1029.00,,,,,,\n2015,5,24,\"DL\",\"412\",\"LAX\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,314.00,293.00,2475.00,,,,,,\n2015,5,24,\"DL\",\"414\",\"SFO\",\"JFK\",-3.00,-27.00,0.00,\"\",0.00,319.00,300.00,2586.00,,,,,,\n2015,5,24,\"DL\",\"415\",\"JFK\",\"SFO\",5.00,10.00,0.00,\"\",0.00,409.00,367.00,2586.00,,,,,,\n2015,5,24,\"DL\",\"419\",\"JFK\",\"SEA\",-1.00,-41.00,0.00,\"\",0.00,338.00,318.00,2422.00,,,,,,\n2015,5,24,\"DL\",\"420\",\"JFK\",\"LAX\",-1.00,-38.00,0.00,\"\",0.00,357.00,324.00,2475.00,,,,,,\n2015,5,24,\"DL\",\"421\",\"JFK\",\"ATL\",-4.00,-22.00,0.00,\"\",0.00,144.00,107.00,760.00,,,,,,\n2015,5,24,\"DL\",\"422\",\"JFK\",\"DEN\",0.00,2.00,0.00,\"\",0.00,280.00,241.00,1626.00,,,,,,\n2015,5,24,\"DL\",\"423\",\"JFK\",\"LAX\",-5.00,1.00,0.00,\"\",0.00,376.00,318.00,2475.00,,,,,,\n2015,5,24,\"DL\",\"424\",\"JFK\",\"SJU\",-10.00,-48.00,0.00,\"\",0.00,201.00,182.00,1598.00,,,,,,\n2015,5,24,\"DL\",\"425\",\"JFK\",\"PHX\",-3.00,-23.00,0.00,\"\",0.00,311.00,283.00,2153.00,,,,,,\n2015,5,24,\"DL\",\"426\",\"JFK\",\"MCO\",-7.00,-32.00,0.00,\"\",0.00,145.00,119.00,944.00,,,,,,\n2015,5,24,\"DL\",\"427\",\"JFK\",\"SAN\",18.00,1.00,0.00,\"\",0.00,353.00,321.00,2446.00,,,,,,\n2015,5,24,\"DL\",\"428\",\"JFK\",\"MCO\",5.00,-8.00,0.00,\"\",0.00,151.00,127.00,944.00,,,,,,\n2015,5,24,\"DL\",\"430\",\"JFK\",\"SFO\",-3.00,-21.00,0.00,\"\",0.00,368.00,334.00,2586.00,,,,,,\n2015,5,24,\"DL\",\"431\",\"JFK\",\"LAS\",-4.00,-14.00,0.00,\"\",0.00,336.00,298.00,2248.00,,,,,,\n2015,5,24,\"DL\",\"433\",\"JFK\",\"SJU\",9.00,-18.00,0.00,\"\",0.00,197.00,180.00,1598.00,,,,,,\n2015,5,24,\"DL\",\"434\",\"JFK\",\"SEA\",-3.00,-39.00,0.00,\"\",0.00,342.00,309.00,2422.00,,,,,,\n2015,5,24,\"DL\",\"435\",\"JFK\",\"SFO\",-7.00,22.00,0.00,\"\",0.00,436.00,366.00,2586.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,24,\"DL\",\"436\",\"JFK\",\"SJU\",-5.00,-10.00,0.00,\"\",0.00,226.00,200.00,1598.00,,,,,,\n2015,5,24,\"DL\",\"437\",\"JFK\",\"BOS\",-2.00,-9.00,0.00,\"\",0.00,68.00,40.00,187.00,,,,,,\n2015,5,24,\"DL\",\"438\",\"JFK\",\"SLC\",-2.00,-28.00,0.00,\"\",0.00,279.00,258.00,1990.00,,,,,,\n2015,5,24,\"DL\",\"439\",\"JFK\",\"ATL\",8.00,-16.00,0.00,\"\",0.00,143.00,107.00,760.00,,,,,,\n2015,5,24,\"DL\",\"440\",\"JFK\",\"SAN\",5.00,-21.00,0.00,\"\",0.00,350.00,307.00,2446.00,,,,,,\n2015,5,24,\"DL\",\"442\",\"JFK\",\"PHX\",-3.00,-31.00,0.00,\"\",0.00,312.00,275.00,2153.00,,,,,,\n2015,5,24,\"DL\",\"443\",\"JFK\",\"LAS\",-3.00,-32.00,0.00,\"\",0.00,323.00,292.00,2248.00,,,,,,\n2015,5,24,\"DL\",\"444\",\"SLC\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,253.00,231.00,1990.00,,,,,,\n2015,5,24,\"DL\",\"445\",\"JFK\",\"LAS\",-6.00,-22.00,0.00,\"\",0.00,314.00,288.00,2248.00,,,,,,\n2015,5,24,\"DL\",\"447\",\"JFK\",\"LAX\",0.00,-32.00,0.00,\"\",0.00,358.00,321.00,2475.00,,,,,,\n2015,5,24,\"DL\",\"448\",\"JFK\",\"SEA\",-9.00,-11.00,0.00,\"\",0.00,358.00,317.00,2422.00,,,,,,\n2015,5,24,\"DL\",\"451\",\"JFK\",\"BOS\",-4.00,-21.00,0.00,\"\",0.00,64.00,41.00,187.00,,,,,,\n2015,5,24,\"DL\",\"453\",\"JFK\",\"ATL\",-7.00,-24.00,0.00,\"\",0.00,135.00,109.00,760.00,,,,,,\n2015,5,24,\"DL\",\"454\",\"JFK\",\"ATL\",-7.00,0.00,0.00,\"\",0.00,158.00,114.00,760.00,,,,,,\n2015,5,24,\"DL\",\"455\",\"JFK\",\"FLL\",-6.00,-24.00,0.00,\"\",0.00,163.00,142.00,1069.00,,,,,,\n2015,5,24,\"DL\",\"456\",\"JFK\",\"DEN\",-3.00,-38.00,0.00,\"\",0.00,241.00,223.00,1626.00,,,,,,\n2015,5,24,\"DL\",\"459\",\"JFK\",\"AUS\",14.00,-8.00,0.00,\"\",0.00,239.00,203.00,1521.00,,,,,,\n2015,5,24,\"DL\",\"460\",\"JFK\",\"SLC\",14.00,-10.00,0.00,\"\",0.00,298.00,263.00,1990.00,,,,,,\n2015,5,24,\"DL\",\"462\",\"JFK\",\"MSP\",-1.00,-6.00,0.00,\"\",0.00,186.00,161.00,1029.00,,,,,,\n2015,5,24,\"DL\",\"463\",\"JFK\",\"PIT\",-1.00,-24.00,0.00,\"\",0.00,98.00,62.00,340.00,,,,,,\n2015,5,24,\"DL\",\"464\",\"JFK\",\"MIA\",-4.00,-13.00,0.00,\"\",0.00,173.00,143.00,1089.00,,,,,,\n2015,5,24,\"DL\",\"465\",\"JFK\",\"STT\",-3.00,-26.00,0.00,\"\",0.00,220.00,190.00,1623.00,,,,,,\n2015,5,24,\"DL\",\"466\",\"SLC\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,257.00,235.00,1990.00,,,,,,\n2015,5,24,\"DL\",\"468\",\"SFO\",\"JFK\",-9.00,-32.00,0.00,\"\",0.00,321.00,301.00,2586.00,,,,,,\n2015,5,24,\"DL\",\"469\",\"JFK\",\"SFO\",-5.00,-31.00,0.00,\"\",0.00,375.00,348.00,2586.00,,,,,,\n2015,5,24,\"DL\",\"472\",\"JFK\",\"LAX\",-1.00,-14.00,0.00,\"\",0.00,372.00,326.00,2475.00,,,,,,\n2015,5,24,\"DL\",\"476\",\"LAX\",\"JFK\",4.00,-22.00,0.00,\"\",0.00,311.00,291.00,2475.00,,,,,,\n2015,5,24,\"DL\",\"477\",\"JFK\",\"LAX\",-3.00,-23.00,0.00,\"\",0.00,371.00,328.00,2475.00,,,,,,\n2015,5,24,\"DL\",\"478\",\"ATL\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,130.00,108.00,760.00,,,,,,\n2015,5,24,\"DL\",\"485\",\"JFK\",\"LAS\",15.00,-14.00,0.00,\"\",0.00,323.00,294.00,2248.00,,,,,,\n2015,5,24,\"DL\",\"499\",\"JFK\",\"SLC\",-3.00,-23.00,0.00,\"\",0.00,290.00,267.00,1990.00,,,,,,\n2015,5,24,\"DL\",\"511\",\"SJU\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,237.00,219.00,1598.00,,,,,,\n2015,5,24,\"DL\",\"527\",\"RSW\",\"JFK\",-4.00,15.00,0.00,\"\",0.00,183.00,143.00,1074.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,24,\"DL\",\"541\",\"LAS\",\"JFK\",-6.00,-11.00,0.00,\"\",0.00,291.00,267.00,2248.00,,,,,,\n2015,5,24,\"DL\",\"544\",\"ALB\",\"ATL\",-5.00,-8.00,0.00,\"\",0.00,147.00,127.00,853.00,,,,,,\n2015,5,24,\"DL\",\"653\",\"DTW\",\"ALB\",-5.00,-12.00,0.00,\"\",0.00,85.00,65.00,489.00,,,,,,\n2015,5,24,\"DL\",\"653\",\"ALB\",\"DTW\",-4.00,-12.00,0.00,\"\",0.00,95.00,77.00,489.00,,,,,,\n2015,5,24,\"DL\",\"676\",\"STT\",\"JFK\",-12.00,-16.00,0.00,\"\",0.00,246.00,229.00,1623.00,,,,,,\n2015,5,24,\"DL\",\"723\",\"ATL\",\"BUF\",5.00,-7.00,0.00,\"\",0.00,113.00,99.00,712.00,,,,,,\n2015,5,24,\"DL\",\"723\",\"BUF\",\"ATL\",1.00,-8.00,0.00,\"\",0.00,120.00,98.00,712.00,,,,,,\n2015,5,24,\"DL\",\"729\",\"LAS\",\"JFK\",4.00,-15.00,0.00,\"\",0.00,284.00,265.00,2248.00,,,,,,\n2015,5,24,\"DL\",\"731\",\"LGA\",\"DTW\",0.00,-18.00,0.00,\"\",0.00,94.00,77.00,502.00,,,,,,\n2015,5,24,\"DL\",\"750\",\"BOS\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,61.00,40.00,187.00,,,,,,\n2015,5,24,\"DL\",\"763\",\"BOS\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,64.00,41.00,187.00,,,,,,\n2015,5,24,\"DL\",\"772\",\"PBI\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,170.00,141.00,1035.00,,,,,,\n2015,5,24,\"DL\",\"787\",\"MCO\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,148.00,127.00,944.00,,,,,,\n2015,5,24,\"DL\",\"789\",\"MIA\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,170.00,146.00,1096.00,,,,,,\n2015,5,24,\"DL\",\"791\",\"LAX\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,309.00,288.00,2475.00,,,,,,\n2015,5,24,\"DL\",\"792\",\"PBI\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,162.00,139.00,1028.00,,,,,,\n2015,5,24,\"DL\",\"793\",\"BOS\",\"JFK\",-4.00,16.00,0.00,\"\",0.00,112.00,50.00,187.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,24,\"DL\",\"802\",\"ATL\",\"LGA\",-2.00,-27.00,0.00,\"\",0.00,120.00,105.00,762.00,,,,,,\n2015,5,25,\"DL\",\"939\",\"MCO\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,154.00,128.00,950.00,,,,,,\n2015,5,25,\"DL\",\"964\",\"LGA\",\"ATL\",-1.00,-1.00,0.00,\"\",0.00,146.00,106.00,762.00,,,,,,\n2015,5,25,\"DL\",\"965\",\"MCO\",\"LGA\",13.00,7.00,0.00,\"\",0.00,155.00,128.00,950.00,,,,,,\n2015,5,25,\"DL\",\"971\",\"LGA\",\"DEN\",-4.00,-22.00,0.00,\"\",0.00,249.00,219.00,1620.00,,,,,,\n2015,5,25,\"DL\",\"986\",\"ATL\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,122.00,101.00,762.00,,,,,,\n2015,5,25,\"DL\",\"997\",\"DTW\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,102.00,77.00,502.00,,,,,,\n2015,5,25,\"DL\",\"1109\",\"SEA\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,318.00,284.00,2422.00,,,,,,\n2015,5,25,\"DL\",\"1111\",\"ATL\",\"ROC\",40.00,38.00,0.00,\"\",0.00,128.00,98.00,749.00,0.00,36.00,0.00,0.00,2.00,\n2015,5,25,\"DL\",\"1121\",\"PBI\",\"LGA\",-5.00,-1.00,0.00,\"\",0.00,177.00,140.00,1035.00,,,,,,\n2015,5,25,\"DL\",\"1131\",\"LGA\",\"FLL\",-1.00,-25.00,0.00,\"\",0.00,168.00,145.00,1076.00,,,,,,\n2015,5,25,\"DL\",\"1145\",\"LGA\",\"DTW\",9.00,13.00,0.00,\"\",0.00,128.00,86.00,502.00,,,,,,\n2015,5,25,\"DL\",\"1155\",\"DTW\",\"ROC\",-5.00,-3.00,0.00,\"\",0.00,73.00,45.00,296.00,,,,,,\n2015,5,25,\"DL\",\"1159\",\"ATL\",\"BUF\",-3.00,-12.00,0.00,\"\",0.00,113.00,92.00,712.00,,,,,,\n2015,5,25,\"DL\",\"1159\",\"BUF\",\"ATL\",0.00,0.00,0.00,\"\",0.00,129.00,109.00,712.00,,,,,,\n2015,5,25,\"DL\",\"1162\",\"LAX\",\"JFK\",-8.00,-15.00,0.00,\"\",0.00,318.00,297.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"1174\",\"LGA\",\"PBI\",16.00,33.00,0.00,\"\",0.00,197.00,142.00,1035.00,16.00,0.00,17.00,0.00,0.00,\n2015,5,25,\"DL\",\"1176\",\"ATL\",\"BUF\",-1.00,-15.00,0.00,\"\",0.00,116.00,90.00,712.00,,,,,,\n2015,5,25,\"DL\",\"1176\",\"BUF\",\"ATL\",-6.00,12.00,0.00,\"\",0.00,152.00,130.00,712.00,,,,,,\n2015,5,25,\"DL\",\"1182\",\"MCO\",\"LGA\",12.00,16.00,0.00,\"\",0.00,161.00,127.00,950.00,0.00,0.00,4.00,0.00,12.00,\n2015,5,25,\"DL\",\"1186\",\"ATL\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,134.00,105.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1214\",\"LGA\",\"ATL\",-3.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,25,\"DL\",\"1227\",\"PHX\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,273.00,254.00,2153.00,,,,,,\n2015,5,25,\"DL\",\"1242\",\"LGA\",\"PBI\",-6.00,-25.00,0.00,\"\",0.00,165.00,139.00,1035.00,,,,,,\n2015,5,25,\"DL\",\"1262\",\"LAX\",\"JFK\",4.00,-7.00,0.00,\"\",0.00,322.00,292.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"1264\",\"SLC\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,254.00,227.00,1990.00,,,,,,\n2015,5,25,\"DL\",\"1266\",\"BUF\",\"ATL\",-1.00,-4.00,0.00,\"\",0.00,119.00,101.00,712.00,,,,,,\n2015,5,25,\"DL\",\"1269\",\"LGA\",\"MIA\",-3.00,-26.00,0.00,\"\",0.00,174.00,147.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"1278\",\"MSP\",\"BUF\",137.00,122.00,0.00,\"\",0.00,104.00,88.00,735.00,0.00,0.00,0.00,0.00,122.00,\n2015,5,25,\"DL\",\"1286\",\"ATL\",\"LGA\",10.00,-1.00,0.00,\"\",0.00,124.00,102.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1288\",\"LGA\",\"FLL\",-5.00,-36.00,0.00,\"\",0.00,164.00,145.00,1076.00,,,,,,\n2015,5,25,\"DL\",\"1289\",\"LGA\",\"ATL\",0.00,10.00,0.00,\"\",0.00,173.00,124.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1298\",\"LGA\",\"ATL\",-3.00,1.00,0.00,\"\",0.00,165.00,115.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1306\",\"DTW\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,93.00,72.00,502.00,,,,,,\n2015,5,25,\"DL\",\"1312\",\"TPA\",\"JFK\",-4.00,-25.00,0.00,\"\",0.00,153.00,135.00,1005.00,,,,,,\n2015,5,25,\"DL\",\"1335\",\"MIA\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,163.00,141.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"1356\",\"BUF\",\"DTW\",-3.00,-14.00,0.00,\"\",0.00,60.00,44.00,241.00,,,,,,\n2015,5,25,\"DL\",\"1359\",\"MCO\",\"LGA\",-8.00,-19.00,0.00,\"\",0.00,152.00,129.00,950.00,,,,,,\n2015,5,25,\"DL\",\"1370\",\"ATL\",\"ROC\",-2.00,-15.00,0.00,\"\",0.00,112.00,97.00,749.00,,,,,,\n2015,5,25,\"DL\",\"1370\",\"ROC\",\"ATL\",-9.00,-8.00,0.00,\"\",0.00,135.00,110.00,749.00,,,,,,\n2015,5,25,\"DL\",\"1372\",\"DTW\",\"BUF\",-1.00,-5.00,0.00,\"\",0.00,62.00,43.00,241.00,,,,,,\n2015,5,25,\"DL\",\"1383\",\"LGA\",\"ATL\",10.00,1.00,0.00,\"\",0.00,159.00,117.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1386\",\"ATL\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,133.00,105.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1394\",\"ATL\",\"JFK\",1.00,-30.00,0.00,\"\",0.00,122.00,103.00,760.00,,,,,,\n2015,5,25,\"DL\",\"1419\",\"ATL\",\"JFK\",3.00,-1.00,0.00,\"\",0.00,151.00,104.00,760.00,,,,,,\n2015,5,25,\"DL\",\"1428\",\"LGA\",\"ATL\",0.00,-22.00,0.00,\"\",0.00,136.00,111.00,762.00,,,,,,\n2015,5,25,\"DL\",\"763\",\"BOS\",\"JFK\",0.00,41.00,0.00,\"\",0.00,119.00,59.00,187.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,25,\"DL\",\"765\",\"DTW\",\"BUF\",-10.00,-16.00,0.00,\"\",0.00,59.00,41.00,241.00,,,,,,\n2015,5,25,\"DL\",\"765\",\"BUF\",\"DTW\",-3.00,-16.00,0.00,\"\",0.00,62.00,40.00,241.00,,,,,,\n2015,5,25,\"DL\",\"772\",\"PBI\",\"LGA\",123.00,115.00,0.00,\"\",0.00,162.00,134.00,1035.00,115.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"781\",\"LGA\",\"ATL\",-2.00,-23.00,0.00,\"\",0.00,141.00,120.00,762.00,,,,,,\n2015,5,25,\"DL\",\"782\",\"MIA\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,170.00,143.00,1089.00,,,,,,\n2015,5,25,\"DL\",\"787\",\"MCO\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,150.00,128.00,944.00,,,,,,\n2015,5,25,\"DL\",\"789\",\"MIA\",\"LGA\",12.00,-5.00,0.00,\"\",0.00,171.00,146.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"791\",\"LAX\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,324.00,293.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"792\",\"PBI\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,158.00,134.00,1028.00,,,,,,\n2015,5,25,\"DL\",\"793\",\"BOS\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,86.00,40.00,187.00,,,,,,\n2015,5,25,\"DL\",\"802\",\"ATL\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,124.00,102.00,762.00,,,,,,\n2015,5,25,\"DL\",\"804\",\"LGA\",\"MSP\",2.00,-17.00,0.00,\"\",0.00,176.00,144.00,1020.00,,,,,,\n2015,5,25,\"DL\",\"856\",\"SAN\",\"JFK\",9.00,4.00,0.00,\"\",0.00,332.00,297.00,2446.00,,,,,,\n2015,5,25,\"DL\",\"871\",\"MSP\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,153.00,134.00,1020.00,,,,,,\n2015,5,25,\"DL\",\"874\",\"LGA\",\"MIA\",-2.00,-43.00,0.00,\"\",0.00,164.00,146.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"878\",\"RSW\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,169.00,147.00,1080.00,,,,,,\n2015,5,25,\"DL\",\"884\",\"LGA\",\"DEN\",-3.00,4.00,0.00,\"\",0.00,281.00,229.00,1620.00,,,,,,\n2015,5,25,\"DL\",\"889\",\"MSP\",\"LGA\",-7.00,5.00,0.00,\"\",0.00,173.00,153.00,1020.00,,,,,,\n2015,5,25,\"DL\",\"904\",\"LGA\",\"ATL\",3.00,4.00,0.00,\"\",0.00,145.00,111.00,762.00,,,,,,\n2015,5,25,\"DL\",\"906\",\"ATL\",\"LGA\",31.00,19.00,0.00,\"\",0.00,133.00,103.00,762.00,0.00,19.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"907\",\"ROC\",\"MSP\",-7.00,-29.00,0.00,\"\",0.00,129.00,114.00,783.00,,,,,,\n2015,5,25,\"DL\",\"909\",\"LGA\",\"MIA\",5.00,-1.00,0.00,\"\",0.00,188.00,142.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"928\",\"DEN\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,224.00,202.00,1620.00,,,,,,\n2015,5,25,\"DL\",\"1875\",\"LGA\",\"TPA\",-5.00,-23.00,0.00,\"\",0.00,162.00,141.00,1010.00,,,,,,\n2015,5,25,\"DL\",\"1885\",\"LGA\",\"MCO\",-5.00,-36.00,0.00,\"\",0.00,149.00,124.00,950.00,,,,,,\n2015,5,25,\"DL\",\"1886\",\"ATL\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,142.00,115.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1897\",\"LGA\",\"MCO\",-3.00,-25.00,0.00,\"\",0.00,152.00,128.00,950.00,,,,,,\n2015,5,25,\"DL\",\"1902\",\"LGA\",\"PBI\",-2.00,-18.00,0.00,\"\",0.00,168.00,138.00,1035.00,,,,,,\n2015,5,25,\"DL\",\"1917\",\"MIA\",\"LGA\",3.00,-15.00,0.00,\"\",0.00,166.00,143.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"1930\",\"LGA\",\"MIA\",-5.00,-38.00,0.00,\"\",0.00,165.00,144.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"1932\",\"TPA\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,152.00,132.00,1010.00,,,,,,\n2015,5,25,\"DL\",\"1935\",\"LGA\",\"TPA\",-1.00,-3.00,0.00,\"\",0.00,180.00,137.00,1010.00,,,,,,\n2015,5,25,\"DL\",\"1947\",\"FLL\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,167.00,144.00,1069.00,,,,,,\n2015,5,25,\"DL\",\"1948\",\"DTW\",\"LGA\",1.00,6.00,0.00,\"\",0.00,112.00,77.00,502.00,,,,,,\n2015,5,25,\"DL\",\"1949\",\"TPA\",\"LGA\",4.00,17.00,0.00,\"\",0.00,179.00,137.00,1010.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,25,\"DL\",\"1953\",\"LGA\",\"FLL\",-1.00,-20.00,0.00,\"\",0.00,175.00,150.00,1076.00,,,,,,\n2015,5,25,\"DL\",\"1958\",\"PBI\",\"LGA\",36.00,36.00,0.00,\"\",0.00,176.00,140.00,1035.00,3.00,0.00,0.00,0.00,33.00,\n2015,5,25,\"DL\",\"1972\",\"AUS\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,215.00,192.00,1521.00,,,,,,\n2015,5,25,\"DL\",\"1982\",\"LGA\",\"MIA\",-3.00,-12.00,0.00,\"\",0.00,187.00,150.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"1985\",\"ALB\",\"DTW\",95.00,84.00,0.00,\"\",0.00,90.00,74.00,489.00,84.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"1986\",\"ATL\",\"LGA\",-5.00,-30.00,0.00,\"\",0.00,125.00,103.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1994\",\"PHX\",\"JFK\",14.00,-7.00,0.00,\"\",0.00,271.00,249.00,2153.00,,,,,,\n2015,5,25,\"DL\",\"2003\",\"LGA\",\"MIA\",-5.00,-27.00,0.00,\"\",0.00,165.00,147.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"2013\",\"ATL\",\"SYR\",66.00,58.00,0.00,\"\",0.00,127.00,100.00,794.00,0.00,58.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"2014\",\"SYR\",\"ATL\",-2.00,-9.00,0.00,\"\",0.00,132.00,115.00,794.00,,,,,,\n2015,5,25,\"DL\",\"2016\",\"LGA\",\"ATL\",-4.00,-18.00,0.00,\"\",0.00,137.00,112.00,762.00,,,,,,\n2015,5,25,\"DL\",\"2022\",\"LGA\",\"FLL\",0.00,-14.00,0.00,\"\",0.00,178.00,151.00,1076.00,,,,,,\n2015,5,25,\"DL\",\"2028\",\"FLL\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,173.00,146.00,1076.00,,,,,,\n2015,5,25,\"DL\",\"2032\",\"MSP\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,157.00,138.00,1029.00,,,,,,\n2015,5,25,\"DL\",\"2037\",\"JFK\",\"FLL\",-7.00,-30.00,0.00,\"\",0.00,178.00,143.00,1069.00,,,,,,\n2015,5,25,\"DL\",\"2040\",\"SFO\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,326.00,302.00,2586.00,,,,,,\n2015,5,25,\"DL\",\"2043\",\"JFK\",\"BOS\",-7.00,-38.00,0.00,\"\",0.00,70.00,40.00,187.00,,,,,,\n2015,5,25,\"DL\",\"2056\",\"MSP\",\"ROC\",60.00,32.00,0.00,\"\",0.00,109.00,94.00,783.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"2058\",\"MCO\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,141.00,122.00,944.00,,,,,,\n2015,5,25,\"DL\",\"2059\",\"JFK\",\"SAT\",0.00,11.00,0.00,\"\",0.00,280.00,251.00,1587.00,,,,,,\n2015,5,25,\"DL\",\"2074\",\"LGA\",\"ATL\",-7.00,-30.00,0.00,\"\",0.00,135.00,109.00,762.00,,,,,,\n2015,5,25,\"DL\",\"2077\",\"LGA\",\"MCO\",-1.00,-15.00,0.00,\"\",0.00,162.00,125.00,950.00,,,,,,\n2015,5,25,\"DL\",\"2082\",\"JFK\",\"SJU\",-10.00,-32.00,0.00,\"\",0.00,216.00,185.00,1598.00,,,,,,\n2015,5,25,\"DL\",\"2085\",\"JFK\",\"DEN\",-1.00,-6.00,0.00,\"\",0.00,279.00,222.00,1626.00,,,,,,\n2015,5,25,\"DL\",\"2086\",\"ATL\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,126.00,105.00,762.00,,,,,,\n2015,5,25,\"DL\",\"2096\",\"LGA\",\"MSP\",2.00,-6.00,0.00,\"\",0.00,174.00,144.00,1020.00,,,,,,\n2015,5,25,\"DL\",\"2119\",\"LGA\",\"MSP\",-6.00,-27.00,0.00,\"\",0.00,164.00,144.00,1020.00,,,,,,\n2015,5,25,\"DL\",\"2122\",\"JFK\",\"MCO\",-4.00,-26.00,0.00,\"\",0.00,168.00,128.00,944.00,,,,,,\n2015,5,25,\"DL\",\"2129\",\"ROC\",\"ATL\",-9.00,-17.00,0.00,\"\",0.00,121.00,105.00,749.00,,,,,,\n2015,5,25,\"DL\",\"2131\",\"LGA\",\"DTW\",-5.00,-14.00,0.00,\"\",0.00,110.00,80.00,502.00,,,,,,\n2015,5,25,\"DL\",\"2148\",\"LGA\",\"DTW\",-1.00,-27.00,0.00,\"\",0.00,102.00,79.00,502.00,,,,,,\n2015,5,25,\"DL\",\"2150\",\"LGA\",\"DTW\",0.00,-28.00,0.00,\"\",0.00,98.00,80.00,502.00,,,,,,\n2015,5,25,\"DL\",\"2151\",\"MIA\",\"LGA\",-2.00,-22.00,0.00,\"\",0.00,166.00,147.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"2155\",\"LAS\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,290.00,272.00,2248.00,,,,,,\n2015,5,25,\"DL\",\"2156\",\"ATL\",\"SYR\",-1.00,-18.00,0.00,\"\",0.00,113.00,97.00,794.00,,,,,,\n2015,5,25,\"DL\",\"2156\",\"SYR\",\"ATL\",-2.00,-3.00,0.00,\"\",0.00,142.00,123.00,794.00,,,,,,\n2015,5,25,\"DL\",\"2166\",\"SYR\",\"DTW\",-2.00,-17.00,0.00,\"\",0.00,78.00,62.00,374.00,,,,,,\n2015,5,25,\"DL\",\"2174\",\"DTW\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,118.00,78.00,509.00,,,,,,\n2015,5,25,\"DL\",\"2175\",\"FLL\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,180.00,140.00,1069.00,,,,,,\n2015,5,25,\"DL\",\"2178\",\"LGA\",\"TPA\",4.00,-20.00,0.00,\"\",0.00,157.00,140.00,1010.00,,,,,,\n2015,5,25,\"DL\",\"2181\",\"LGA\",\"MCO\",23.00,13.00,0.00,\"\",0.00,160.00,126.00,950.00,,,,,,\n2015,5,25,\"DL\",\"2186\",\"ATL\",\"LGA\",2.00,34.00,0.00,\"\",0.00,178.00,106.00,762.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,25,\"DL\",\"2189\",\"JFK\",\"CHS\",-2.00,-31.00,0.00,\"\",0.00,110.00,89.00,636.00,,,,,,\n2015,5,25,\"DL\",\"2190\",\"JFK\",\"MIA\",-1.00,-17.00,0.00,\"\",0.00,186.00,160.00,1089.00,,,,,,\n2015,5,25,\"DL\",\"2205\",\"JFK\",\"MSP\",-4.00,-40.00,0.00,\"\",0.00,175.00,147.00,1029.00,,,,,,\n2015,5,25,\"DL\",\"2208\",\"JFK\",\"LAS\",15.00,5.00,0.00,\"\",0.00,345.00,291.00,2248.00,,,,,,\n2015,5,25,\"DL\",\"2214\",\"ATL\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,125.00,103.00,762.00,,,,,,\n2015,5,25,\"DL\",\"2217\",\"JFK\",\"PHX\",39.00,4.00,0.00,\"\",0.00,306.00,283.00,2153.00,,,,,,\n2015,5,25,\"DL\",\"2230\",\"CHS\",\"JFK\",-1.00,2.00,0.00,\"\",0.00,132.00,89.00,636.00,,,,,,\n2015,5,25,\"DL\",\"2231\",\"DTW\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,97.00,73.00,502.00,,,,,,\n2015,5,25,\"DL\",\"2240\",\"SFO\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,318.00,294.00,2586.00,,,,,,\n2015,5,25,\"DL\",\"2248\",\"DTW\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,103.00,76.00,502.00,,,,,,\n2015,5,25,\"DL\",\"2262\",\"LAX\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,327.00,304.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"2270\",\"LGA\",\"RSW\",-12.00,-32.00,0.00,\"\",0.00,176.00,156.00,1080.00,,,,,,\n2015,5,25,\"DL\",\"2276\",\"MCO\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,151.00,129.00,944.00,,,,,,\n2015,5,25,\"DL\",\"2277\",\"JFK\",\"TPA\",0.00,-28.00,0.00,\"\",0.00,165.00,136.00,1005.00,,,,,,\n2015,5,25,\"DL\",\"2282\",\"LGA\",\"MCO\",41.00,17.00,0.00,\"\",0.00,152.00,123.00,950.00,2.00,0.00,0.00,0.00,15.00,\n2015,5,25,\"DL\",\"2292\",\"JFK\",\"BOS\",-3.00,-11.00,0.00,\"\",0.00,84.00,39.00,187.00,,,,,,\n2015,5,25,\"DL\",\"2296\",\"MSP\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,161.00,130.00,1020.00,,,,,,\n2015,5,25,\"DL\",\"2311\",\"JFK\",\"MIA\",-3.00,-8.00,0.00,\"\",0.00,201.00,146.00,1089.00,,,,,,\n2015,5,25,\"DL\",\"2312\",\"JFK\",\"DTW\",44.00,28.00,0.00,\"\",0.00,124.00,88.00,509.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"2317\",\"PBI\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,162.00,137.00,1035.00,,,,,,\n2015,5,25,\"DL\",\"2319\",\"LGA\",\"MSP\",-6.00,-40.00,0.00,\"\",0.00,161.00,142.00,1020.00,,,,,,\n2015,5,25,\"DL\",\"2331\",\"LGA\",\"DTW\",-2.00,-11.00,0.00,\"\",0.00,115.00,78.00,502.00,,,,,,\n2015,5,25,\"DL\",\"2350\",\"ATL\",\"JFK\",30.00,11.00,0.00,\"\",0.00,116.00,101.00,760.00,,,,,,\n2015,5,25,\"DL\",\"2352\",\"LAS\",\"JFK\",-4.00,-33.00,0.00,\"\",0.00,284.00,267.00,2248.00,,,,,,\n2015,5,25,\"DL\",\"2354\",\"SLC\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,260.00,239.00,1990.00,,,,,,\n2015,5,25,\"DL\",\"2362\",\"LAX\",\"JFK\",4.00,-9.00,0.00,\"\",0.00,317.00,291.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"2382\",\"JFK\",\"AUS\",-3.00,-27.00,0.00,\"\",0.00,240.00,202.00,1521.00,,,,,,\n2015,5,25,\"DL\",\"2386\",\"ATL\",\"LGA\",2.00,-2.00,0.00,\"\",0.00,134.00,100.00,762.00,,,,,,\n2015,5,25,\"DL\",\"2390\",\"JFK\",\"ATL\",6.00,40.00,0.00,\"\",0.00,206.00,164.00,760.00,6.00,0.00,34.00,0.00,0.00,\n2015,5,25,\"DL\",\"2395\",\"LGA\",\"PBI\",-5.00,-22.00,0.00,\"\",0.00,163.00,141.00,1035.00,,,,,,\n2015,5,25,\"DL\",\"2400\",\"JFK\",\"PIT\",-6.00,-28.00,0.00,\"\",0.00,99.00,65.00,340.00,,,,,,\n2015,5,25,\"DL\",\"2404\",\"SAN\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,315.00,289.00,2446.00,,,,,,\n2015,5,25,\"DL\",\"2406\",\"TPA\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,158.00,136.00,1010.00,,,,,,\n2015,5,25,\"DL\",\"2413\",\"MIA\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,172.00,149.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"2432\",\"DTW\",\"SYR\",1.00,-8.00,0.00,\"\",0.00,70.00,53.00,374.00,,,,,,\n2015,5,25,\"DL\",\"2435\",\"JFK\",\"ATL\",1.00,29.00,0.00,\"\",0.00,197.00,117.00,760.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,25,\"DL\",\"2441\",\"SAN\",\"JFK\",-1.00,-23.00,0.00,\"\",0.00,305.00,283.00,2446.00,,,,,,\n2015,5,25,\"DL\",\"2444\",\"JFK\",\"SAN\",-9.00,-12.00,0.00,\"\",0.00,370.00,336.00,2446.00,,,,,,\n2015,5,25,\"DL\",\"2447\",\"DEN\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,225.00,205.00,1626.00,,,,,,\n2015,5,25,\"DL\",\"2450\",\"MCO\",\"LGA\",-8.00,7.00,0.00,\"\",0.00,171.00,131.00,950.00,,,,,,\n2015,5,25,\"DL\",\"2466\",\"ATL\",\"SYR\",9.00,-12.00,0.00,\"\",0.00,116.00,100.00,794.00,,,,,,\n2015,5,25,\"DL\",\"2466\",\"SYR\",\"ATL\",-10.00,13.00,0.00,\"\",0.00,173.00,148.00,794.00,,,,,,\n2015,5,25,\"DL\",\"2473\",\"ATL\",\"BUF\",166.00,144.00,0.00,\"\",0.00,106.00,91.00,712.00,0.00,42.00,0.00,0.00,102.00,\n2015,5,25,\"DL\",\"2496\",\"ATL\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,119.00,99.00,762.00,,,,,,\n2015,5,25,\"DL\",\"2498\",\"FLL\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,173.00,142.00,1076.00,,,,,,\n2015,5,25,\"DL\",\"2502\",\"JFK\",\"AUS\",2.00,9.00,0.00,\"\",0.00,271.00,233.00,1521.00,,,,,,\n2015,5,25,\"DL\",\"2521\",\"SFO\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,336.00,307.00,2586.00,,,,,,\n2015,5,25,\"DL\",\"2554\",\"DEN\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,225.00,202.00,1626.00,,,,,,\n2015,5,25,\"DL\",\"2567\",\"DTW\",\"ALB\",-6.00,-12.00,0.00,\"\",0.00,82.00,63.00,489.00,,,,,,\n2015,5,25,\"DL\",\"2569\",\"JFK\",\"PHX\",-3.00,-20.00,0.00,\"\",0.00,326.00,295.00,2153.00,,,,,,\n2015,5,25,\"DL\",\"2571\",\"JFK\",\"PBI\",-3.00,-22.00,0.00,\"\",0.00,168.00,138.00,1028.00,,,,,,\n2015,5,25,\"DL\",\"2577\",\"JFK\",\"FLL\",-3.00,-31.00,0.00,\"\",0.00,177.00,150.00,1069.00,,,,,,\n2015,5,25,\"DL\",\"2593\",\"SAT\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,230.00,207.00,1587.00,,,,,,\n2015,5,25,\"DL\",\"2594\",\"DEN\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,227.00,200.00,1620.00,,,,,,\n2015,5,25,\"DL\",\"2595\",\"FLL\",\"LGA\",-8.00,-22.00,0.00,\"\",0.00,170.00,146.00,1076.00,,,,,,\n2015,5,25,\"DL\",\"2596\",\"PBI\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,163.00,142.00,1035.00,,,,,,\n2015,5,25,\"DL\",\"2622\",\"ROC\",\"DTW\",0.00,-16.00,0.00,\"\",0.00,66.00,48.00,296.00,,,,,,\n2015,5,25,\"DL\",\"2627\",\"JFK\",\"PDX\",-11.00,-41.00,0.00,\"\",0.00,340.00,311.00,2454.00,,,,,,\n2015,5,25,\"DL\",\"2632\",\"JFK\",\"MCO\",-4.00,-33.00,0.00,\"\",0.00,154.00,124.00,944.00,,,,,,\n2015,5,25,\"DL\",\"2634\",\"JFK\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,93.00,59.00,301.00,,,,,,\n2015,5,25,\"DL\",\"2645\",\"JFK\",\"RSW\",-3.00,-24.00,0.00,\"\",0.00,180.00,153.00,1074.00,,,,,,\n2015,5,25,\"DL\",\"2650\",\"TPA\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,154.00,133.00,1005.00,,,,,,\n2015,5,25,\"DL\",\"2667\",\"BOS\",\"LGA\",-3.00,-22.00,0.00,\"\",0.00,60.00,44.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2668\",\"LGA\",\"BOS\",-3.00,-18.00,0.00,\"\",0.00,58.00,41.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2669\",\"BOS\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,73.00,40.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2671\",\"BOS\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,63.00,44.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2673\",\"BOS\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,65.00,42.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2674\",\"LGA\",\"BOS\",-2.00,-27.00,0.00,\"\",0.00,58.00,41.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2677\",\"BOS\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,74.00,52.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2678\",\"LGA\",\"BOS\",-5.00,-19.00,0.00,\"\",0.00,69.00,44.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2680\",\"LGA\",\"BOS\",11.00,18.00,0.00,\"\",0.00,86.00,39.00,184.00,11.00,0.00,7.00,0.00,0.00,\n2015,5,25,\"DL\",\"2681\",\"BOS\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,76.00,43.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2684\",\"LGA\",\"BOS\",-14.00,-9.00,0.00,\"\",0.00,80.00,44.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2685\",\"BOS\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,74.00,45.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2686\",\"LGA\",\"BOS\",-5.00,-3.00,0.00,\"\",0.00,84.00,41.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2688\",\"LGA\",\"BOS\",10.00,8.00,0.00,\"\",0.00,81.00,46.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2689\",\"BOS\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,85.00,52.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2691\",\"BOS\",\"LGA\",5.00,5.00,0.00,\"\",0.00,77.00,43.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2692\",\"LGA\",\"BOS\",-5.00,-16.00,0.00,\"\",0.00,68.00,43.00,184.00,,,,,,\n2015,5,25,\"DL\",\"2696\",\"LGA\",\"BOS\",39.00,29.00,0.00,\"\",0.00,58.00,39.00,184.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"2785\",\"JFK\",\"CHS\",-2.00,-27.00,0.00,\"\",0.00,111.00,88.00,636.00,,,,,,\n2015,5,26,\"DL\",\"42\",\"MIA\",\"JFK\",-5.00,-35.00,0.00,\"\",0.00,159.00,137.00,1089.00,,,,,,\n2015,5,26,\"DL\",\"208\",\"JFK\",\"MCO\",-5.00,-32.00,0.00,\"\",0.00,160.00,130.00,944.00,,,,,,\n2015,5,26,\"DL\",\"221\",\"LGA\",\"ATL\",166.00,178.00,0.00,\"\",0.00,177.00,105.00,762.00,0.00,0.00,178.00,0.00,0.00,\n2015,5,26,\"DL\",\"234\",\"PIT\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,76.00,54.00,340.00,,,,,,\n2015,5,26,\"DL\",\"245\",\"JFK\",\"SLC\",0.00,-3.00,0.00,\"\",0.00,326.00,283.00,1990.00,,,,,,\n2015,5,26,\"DL\",\"326\",\"SJU\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,228.00,209.00,1598.00,,,,,,\n2015,5,26,\"DL\",\"2285\",\"LGA\",\"MCO\",-6.00,-14.00,0.00,\"\",0.00,155.00,130.00,950.00,,,,,,\n2015,5,26,\"DL\",\"2292\",\"JFK\",\"BOS\",-5.00,-29.00,0.00,\"\",0.00,68.00,39.00,187.00,,,,,,\n2015,5,26,\"DL\",\"2296\",\"MSP\",\"LGA\",164.00,149.00,0.00,\"\",0.00,154.00,134.00,1020.00,149.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"2311\",\"JFK\",\"MIA\",-4.00,-39.00,0.00,\"\",0.00,171.00,147.00,1089.00,,,,,,\n2015,5,26,\"DL\",\"2312\",\"JFK\",\"LAS\",-3.00,-45.00,0.00,\"\",0.00,313.00,283.00,2248.00,,,,,,\n2015,5,26,\"DL\",\"2317\",\"PBI\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,162.00,140.00,1035.00,,,,,,\n2015,5,26,\"DL\",\"2319\",\"LGA\",\"MSP\",-1.00,-20.00,0.00,\"\",0.00,176.00,139.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"2331\",\"LGA\",\"DTW\",-7.00,-11.00,0.00,\"\",0.00,120.00,80.00,502.00,,,,,,\n2015,5,26,\"DL\",\"2349\",\"DTW\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,98.00,74.00,502.00,,,,,,\n2015,5,26,\"DL\",\"2350\",\"ATL\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,122.00,103.00,760.00,,,,,,\n2015,5,26,\"DL\",\"2352\",\"LAS\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,289.00,270.00,2248.00,,,,,,\n2015,5,26,\"DL\",\"2354\",\"SLC\",\"JFK\",52.00,61.00,0.00,\"\",0.00,281.00,238.00,1990.00,52.00,0.00,9.00,0.00,0.00,\n2015,5,26,\"DL\",\"2355\",\"JFK\",\"ATL\",62.00,90.00,0.00,\"\",0.00,197.00,107.00,760.00,0.00,0.00,90.00,0.00,0.00,\n2015,5,26,\"DL\",\"2362\",\"LAX\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,319.00,301.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"2382\",\"JFK\",\"AUS\",-2.00,-23.00,0.00,\"\",0.00,241.00,201.00,1521.00,,,,,,\n2015,5,26,\"DL\",\"2386\",\"ATL\",\"LGA\",192.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,26,\"DL\",\"2395\",\"LGA\",\"PBI\",-1.00,-22.00,0.00,\"\",0.00,159.00,139.00,1035.00,,,,,,\n2015,5,26,\"DL\",\"2400\",\"JFK\",\"ATL\",160.00,204.00,0.00,\"\",0.00,216.00,106.00,760.00,0.00,0.00,204.00,0.00,0.00,\n2015,5,26,\"DL\",\"2404\",\"SAN\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,327.00,295.00,2446.00,,,,,,\n2015,5,26,\"DL\",\"2406\",\"TPA\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,149.00,132.00,1010.00,,,,,,\n2015,5,26,\"DL\",\"2413\",\"MIA\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,173.00,145.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"2432\",\"DTW\",\"SYR\",94.00,88.00,0.00,\"\",0.00,73.00,53.00,374.00,0.00,0.00,0.00,0.00,88.00,\n2015,5,26,\"DL\",\"2441\",\"SAN\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,318.00,298.00,2446.00,,,,,,\n2015,5,26,\"DL\",\"2444\",\"JFK\",\"DTW\",-4.00,-31.00,0.00,\"\",0.00,113.00,84.00,509.00,,,,,,\n2015,5,26,\"DL\",\"2450\",\"MCO\",\"LGA\",4.00,3.00,0.00,\"\",0.00,155.00,127.00,950.00,,,,,,\n2015,5,26,\"DL\",\"2464\",\"TPA\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,148.00,131.00,1005.00,,,,,,\n2015,5,26,\"DL\",\"2466\",\"ATL\",\"SYR\",-6.00,-4.00,0.00,\"\",0.00,139.00,97.00,794.00,,,,,,\n2015,5,26,\"DL\",\"2466\",\"SYR\",\"ATL\",144.00,144.00,0.00,\"\",0.00,150.00,106.00,794.00,0.00,0.00,144.00,0.00,0.00,\n2015,5,26,\"DL\",\"2473\",\"ATL\",\"BUF\",-1.00,-19.00,0.00,\"\",0.00,110.00,93.00,712.00,,,,,,\n2015,5,26,\"DL\",\"2474\",\"JFK\",\"PHX\",-1.00,-24.00,0.00,\"\",0.00,313.00,280.00,2153.00,,,,,,\n2015,5,26,\"DL\",\"2496\",\"ATL\",\"LGA\",10.00,-5.00,0.00,\"\",0.00,119.00,103.00,762.00,,,,,,\n2015,5,26,\"DL\",\"2498\",\"FLL\",\"LGA\",0.00,-22.00,0.00,\"\",0.00,161.00,139.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"2542\",\"JFK\",\"MSP\",-7.00,-40.00,0.00,\"\",0.00,178.00,148.00,1029.00,,,,,,\n2015,5,26,\"DL\",\"2551\",\"JFK\",\"TPA\",-6.00,-5.00,0.00,\"\",0.00,187.00,140.00,1005.00,,,,,,\n2015,5,26,\"DL\",\"2554\",\"DEN\",\"JFK\",-1.00,-20.00,0.00,\"\",0.00,222.00,197.00,1626.00,,,,,,\n2015,5,26,\"DL\",\"2565\",\"JFK\",\"AUS\",-2.00,-17.00,0.00,\"\",0.00,249.00,212.00,1521.00,,,,,,\n2015,5,26,\"DL\",\"2567\",\"DTW\",\"ALB\",138.00,131.00,0.00,\"\",0.00,81.00,62.00,489.00,0.00,0.00,0.00,0.00,131.00,\n2015,5,26,\"DL\",\"2571\",\"JFK\",\"PBI\",-3.00,-25.00,0.00,\"\",0.00,165.00,138.00,1028.00,,,,,,\n2015,5,26,\"DL\",\"2577\",\"JFK\",\"FLL\",-5.00,-31.00,0.00,\"\",0.00,179.00,143.00,1069.00,,,,,,\n2015,5,26,\"DL\",\"2593\",\"SAT\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,217.00,202.00,1587.00,,,,,,\n2015,5,26,\"DL\",\"2594\",\"DEN\",\"LGA\",6.00,-4.00,0.00,\"\",0.00,226.00,197.00,1620.00,,,,,,\n2015,5,26,\"DL\",\"2595\",\"FLL\",\"LGA\",-5.00,-28.00,0.00,\"\",0.00,161.00,140.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"2596\",\"PBI\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,160.00,137.00,1035.00,,,,,,\n2015,5,26,\"DL\",\"2622\",\"ROC\",\"DTW\",-5.00,-25.00,0.00,\"\",0.00,62.00,46.00,296.00,,,,,,\n2015,5,26,\"DL\",\"2627\",\"JFK\",\"PDX\",-3.00,-25.00,0.00,\"\",0.00,348.00,315.00,2454.00,,,,,,\n2015,5,26,\"DL\",\"2632\",\"JFK\",\"MCO\",0.00,6.00,0.00,\"\",0.00,189.00,131.00,944.00,,,,,,\n2015,5,26,\"DL\",\"2634\",\"JFK\",\"BUF\",-3.00,-34.00,0.00,\"\",0.00,72.00,52.00,301.00,,,,,,\n2015,5,26,\"DL\",\"2645\",\"JFK\",\"RSW\",-9.00,-21.00,0.00,\"\",0.00,189.00,157.00,1074.00,,,,,,\n2015,5,26,\"DL\",\"2649\",\"JFK\",\"TPA\",-2.00,-29.00,0.00,\"\",0.00,161.00,137.00,1005.00,,,,,,\n2015,5,26,\"DL\",\"2650\",\"TPA\",\"JFK\",9.00,-6.00,0.00,\"\",0.00,153.00,131.00,1005.00,,,,,,\n2015,5,26,\"DL\",\"2652\",\"TPA\",\"JFK\",68.00,57.00,0.00,\"\",0.00,163.00,136.00,1005.00,0.00,57.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"2653\",\"MCO\",\"JFK\",-2.00,-3.00,0.00,\"\",0.00,165.00,123.00,944.00,,,,,,\n2015,5,26,\"DL\",\"2665\",\"BOS\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,79.00,46.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2666\",\"LGA\",\"BOS\",-6.00,-6.00,0.00,\"\",0.00,66.00,40.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2667\",\"BOS\",\"LGA\",-5.00,26.00,0.00,\"\",0.00,110.00,44.00,184.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,26,\"DL\",\"2668\",\"LGA\",\"BOS\",8.00,10.00,0.00,\"\",0.00,73.00,46.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2669\",\"BOS\",\"LGA\",-9.00,14.00,0.00,\"\",0.00,98.00,44.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2670\",\"LGA\",\"BOS\",0.00,15.00,0.00,\"\",0.00,82.00,40.00,184.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,26,\"DL\",\"2671\",\"BOS\",\"LGA\",12.00,8.00,0.00,\"\",0.00,75.00,42.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2672\",\"LGA\",\"BOS\",18.00,11.00,0.00,\"\",0.00,75.00,42.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2673\",\"BOS\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,69.00,42.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2674\",\"LGA\",\"BOS\",2.00,0.00,0.00,\"\",0.00,81.00,40.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2675\",\"BOS\",\"LGA\",13.00,-1.00,0.00,\"\",0.00,61.00,40.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2676\",\"LGA\",\"BOS\",1.00,-5.00,0.00,\"\",0.00,70.00,46.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2677\",\"BOS\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,71.00,45.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2678\",\"LGA\",\"BOS\",-2.00,-10.00,0.00,\"\",0.00,75.00,39.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2679\",\"BOS\",\"LGA\",-3.00,8.00,0.00,\"\",0.00,88.00,45.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2680\",\"LGA\",\"BOS\",-2.00,-15.00,0.00,\"\",0.00,66.00,41.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2681\",\"BOS\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,76.00,43.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2682\",\"LGA\",\"BOS\",-1.00,-16.00,0.00,\"\",0.00,57.00,38.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2683\",\"BOS\",\"LGA\",-3.00,5.00,0.00,\"\",0.00,82.00,45.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2684\",\"LGA\",\"BOS\",-1.00,1.00,0.00,\"\",0.00,77.00,44.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2685\",\"BOS\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,73.00,41.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2686\",\"LGA\",\"BOS\",-4.00,-13.00,0.00,\"\",0.00,73.00,42.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2687\",\"BOS\",\"LGA\",-5.00,5.00,0.00,\"\",0.00,86.00,40.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2688\",\"LGA\",\"BOS\",2.00,-12.00,0.00,\"\",0.00,69.00,45.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2689\",\"BOS\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,81.00,45.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2690\",\"LGA\",\"BOS\",-2.00,-12.00,0.00,\"\",0.00,75.00,53.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2691\",\"BOS\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,72.00,41.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2692\",\"LGA\",\"BOS\",-7.00,-5.00,0.00,\"\",0.00,81.00,40.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2693\",\"BOS\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,75.00,41.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2694\",\"LGA\",\"BOS\",-4.00,-6.00,0.00,\"\",0.00,76.00,41.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2696\",\"LGA\",\"BOS\",-1.00,-4.00,0.00,\"\",0.00,65.00,41.00,184.00,,,,,,\n2015,5,26,\"DL\",\"2699\",\"BOS\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,72.00,41.00,184.00,,,,,,\n2015,5,23,\"DL\",\"1370\",\"ATL\",\"ROC\",-4.00,-5.00,0.00,\"\",0.00,122.00,100.00,749.00,,,,,,\n2015,5,23,\"DL\",\"1370\",\"ROC\",\"ATL\",-6.00,-18.00,0.00,\"\",0.00,121.00,103.00,749.00,,,,,,\n2015,5,23,\"DL\",\"1372\",\"DTW\",\"BUF\",-7.00,-12.00,0.00,\"\",0.00,61.00,39.00,241.00,,,,,,\n2015,5,23,\"DL\",\"1383\",\"LGA\",\"ATL\",104.00,100.00,0.00,\"\",0.00,158.00,106.00,762.00,100.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"DL\",\"1386\",\"ATL\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,114.00,95.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1394\",\"ATL\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,137.00,106.00,760.00,,,,,,\n2015,5,23,\"DL\",\"1409\",\"FLL\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,170.00,146.00,1076.00,,,,,,\n2015,5,23,\"DL\",\"1419\",\"ATL\",\"JFK\",-4.00,-30.00,0.00,\"\",0.00,129.00,104.00,760.00,,,,,,\n2015,5,23,\"DL\",\"1428\",\"LGA\",\"ATL\",-2.00,-19.00,0.00,\"\",0.00,139.00,107.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1429\",\"MSY\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,160.00,144.00,1183.00,,,,,,\n2015,5,23,\"DL\",\"1437\",\"MSP\",\"BUF\",-3.00,-22.00,0.00,\"\",0.00,102.00,89.00,735.00,,,,,,\n2015,5,23,\"DL\",\"1473\",\"SEA\",\"JFK\",4.00,-10.00,0.00,\"\",0.00,316.00,277.00,2422.00,,,,,,\n2015,5,23,\"DL\",\"1479\",\"TPA\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,145.00,128.00,1010.00,,,,,,\n2015,5,23,\"DL\",\"1486\",\"ATL\",\"LGA\",18.00,7.00,0.00,\"\",0.00,126.00,108.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1487\",\"ATL\",\"JFK\",5.00,-13.00,0.00,\"\",0.00,125.00,101.00,760.00,,,,,,\n2015,5,23,\"DL\",\"1496\",\"MSP\",\"LGA\",-3.00,-30.00,0.00,\"\",0.00,137.00,120.00,1020.00,,,,,,\n2015,5,23,\"DL\",\"1498\",\"FLL\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,171.00,148.00,1076.00,,,,,,\n2015,5,23,\"DL\",\"1514\",\"LGA\",\"FLL\",-7.00,-31.00,0.00,\"\",0.00,163.00,144.00,1076.00,,,,,,\n2015,5,23,\"DL\",\"1515\",\"ATL\",\"ALB\",-7.00,-9.00,0.00,\"\",0.00,143.00,112.00,853.00,,,,,,\n2015,5,23,\"DL\",\"1526\",\"MCO\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,152.00,127.00,950.00,,,,,,\n2015,5,23,\"DL\",\"1531\",\"LGA\",\"TPA\",-6.00,-18.00,0.00,\"\",0.00,165.00,141.00,1010.00,,,,,,\n2015,5,23,\"DL\",\"1542\",\"SEA\",\"JFK\",-5.00,-30.00,0.00,\"\",0.00,297.00,268.00,2422.00,,,,,,\n2015,5,23,\"DL\",\"1562\",\"BOS\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,69.00,41.00,187.00,,,,,,\n2015,5,23,\"DL\",\"1584\",\"ATL\",\"ROC\",-2.00,-15.00,0.00,\"\",0.00,119.00,101.00,749.00,,,,,,\n2015,5,23,\"DL\",\"1584\",\"ROC\",\"ATL\",-3.00,-17.00,0.00,\"\",0.00,120.00,100.00,749.00,,,,,,\n2015,5,23,\"DL\",\"1586\",\"ATL\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,128.00,100.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1596\",\"MSP\",\"LGA\",-3.00,-25.00,0.00,\"\",0.00,140.00,122.00,1020.00,,,,,,\n2015,5,23,\"DL\",\"1642\",\"LGA\",\"MSY\",-3.00,-22.00,0.00,\"\",0.00,190.00,155.00,1183.00,,,,,,\n2015,5,23,\"DL\",\"1644\",\"FLL\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,162.00,142.00,1069.00,,,,,,\n2015,5,23,\"DL\",\"1647\",\"LGA\",\"ATL\",-1.00,-5.00,0.00,\"\",0.00,146.00,111.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1671\",\"MIA\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,182.00,146.00,1089.00,,,,,,\n2015,5,23,\"DL\",\"1672\",\"ATL\",\"BUF\",-3.00,-5.00,0.00,\"\",0.00,114.00,96.00,712.00,,,,,,\n2015,5,23,\"DL\",\"1672\",\"BUF\",\"ATL\",-3.00,-9.00,0.00,\"\",0.00,121.00,99.00,712.00,,,,,,\n2015,5,23,\"DL\",\"1685\",\"LGA\",\"MCO\",-2.00,-23.00,0.00,\"\",0.00,152.00,132.00,950.00,,,,,,\n2015,5,23,\"DL\",\"1697\",\"LGA\",\"ATL\",1.00,-27.00,0.00,\"\",0.00,125.00,106.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1699\",\"MIA\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,173.00,151.00,1096.00,,,,,,\n2015,5,23,\"DL\",\"1728\",\"LAS\",\"JFK\",-6.00,1.00,0.00,\"\",0.00,303.00,258.00,2248.00,,,,,,\n2015,5,23,\"DL\",\"1750\",\"ATL\",\"JFK\",3.00,-20.00,0.00,\"\",0.00,124.00,105.00,760.00,,,,,,\n2015,5,23,\"DL\",\"1786\",\"ATL\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,123.00,101.00,762.00,,,,,,\n2015,5,23,\"DL\",\"1796\",\"LGA\",\"MSP\",2.00,-12.00,0.00,\"\",0.00,175.00,153.00,1020.00,,,,,,\n2015,5,23,\"DL\",\"1806\",\"DTW\",\"JFK\",19.00,10.00,0.00,\"\",0.00,105.00,72.00,509.00,,,,,,\n2015,5,23,\"DL\",\"1830\",\"SLC\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,257.00,224.00,1990.00,,,,,,\n2015,5,23,\"DL\",\"1841\",\"SJU\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,244.00,215.00,1598.00,,,,,,\n2015,5,23,\"DL\",\"1851\",\"CHS\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,102.00,86.00,636.00,,,,,,\n2015,5,26,\"DL\",\"332\",\"SJU\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,245.00,205.00,1598.00,,,,,,\n2015,5,26,\"DL\",\"333\",\"MSP\",\"LGA\",1.00,-4.00,0.00,\"\",0.00,158.00,135.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"342\",\"SFO\",\"JFK\",83.00,72.00,0.00,\"\",0.00,328.00,307.00,2586.00,72.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"347\",\"LGA\",\"ATL\",-6.00,-25.00,0.00,\"\",0.00,139.00,113.00,762.00,,,,,,\n2015,5,26,\"DL\",\"348\",\"SJU\",\"JFK\",-10.00,-28.00,0.00,\"\",0.00,224.00,204.00,1598.00,,,,,,\n2015,5,26,\"DL\",\"350\",\"LGA\",\"ATL\",-1.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,26,\"DL\",\"400\",\"PDX\",\"JFK\",-3.00,-5.00,0.00,\"\",0.00,327.00,300.00,2454.00,,,,,,\n2015,5,26,\"DL\",\"401\",\"AUS\",\"JFK\",5.00,-16.00,0.00,\"\",0.00,217.00,190.00,1521.00,,,,,,\n2015,5,26,\"DL\",\"403\",\"PDX\",\"JFK\",14.00,2.00,0.00,\"\",0.00,322.00,299.00,2454.00,,,,,,\n2015,5,26,\"DL\",\"407\",\"MCO\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,147.00,126.00,944.00,,,,,,\n2015,5,26,\"DL\",\"410\",\"MSP\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,150.00,135.00,1029.00,,,,,,\n2015,5,26,\"DL\",\"412\",\"LAX\",\"JFK\",-2.00,-22.00,0.00,\"\",0.00,319.00,295.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"414\",\"SFO\",\"JFK\",304.00,299.00,0.00,\"\",0.00,340.00,306.00,2586.00,299.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"415\",\"JFK\",\"SFO\",5.00,-14.00,0.00,\"\",0.00,389.00,360.00,2586.00,,,,,,\n2015,5,26,\"DL\",\"418\",\"SEA\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,321.00,299.00,2422.00,,,,,,\n2015,5,26,\"DL\",\"419\",\"JFK\",\"SEA\",-2.00,-22.00,0.00,\"\",0.00,359.00,323.00,2422.00,,,,,,\n2015,5,26,\"DL\",\"420\",\"JFK\",\"LAX\",6.00,-45.00,0.00,\"\",0.00,347.00,318.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"421\",\"JFK\",\"ATL\",-8.00,-12.00,0.00,\"\",0.00,163.00,112.00,760.00,,,,,,\n2015,5,26,\"DL\",\"422\",\"JFK\",\"LAX\",-3.00,-39.00,0.00,\"\",0.00,344.00,322.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"423\",\"JFK\",\"LAX\",-5.00,-27.00,0.00,\"\",0.00,351.00,320.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"424\",\"JFK\",\"LAX\",-5.00,-16.00,0.00,\"\",0.00,359.00,319.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"425\",\"JFK\",\"CHS\",-5.00,-27.00,0.00,\"\",0.00,117.00,90.00,636.00,,,,,,\n2015,5,26,\"DL\",\"426\",\"JFK\",\"MCO\",-4.00,-27.00,0.00,\"\",0.00,149.00,127.00,944.00,,,,,,\n2015,5,26,\"DL\",\"427\",\"JFK\",\"LAX\",13.00,-10.00,0.00,\"\",0.00,365.00,330.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"428\",\"JFK\",\"DEN\",-2.00,-35.00,0.00,\"\",0.00,251.00,217.00,1626.00,,,,,,\n2015,5,26,\"DL\",\"430\",\"JFK\",\"SFO\",-4.00,-28.00,0.00,\"\",0.00,360.00,339.00,2586.00,,,,,,\n2015,5,26,\"DL\",\"434\",\"JFK\",\"SFO\",-2.00,-29.00,0.00,\"\",0.00,377.00,343.00,2586.00,,,,,,\n2015,5,26,\"DL\",\"435\",\"JFK\",\"SFO\",1.00,-26.00,0.00,\"\",0.00,384.00,357.00,2586.00,,,,,,\n2015,5,26,\"DL\",\"436\",\"JFK\",\"FLL\",-6.00,-28.00,0.00,\"\",0.00,162.00,144.00,1069.00,,,,,,\n2015,5,26,\"DL\",\"437\",\"JFK\",\"BOS\",-2.00,-17.00,0.00,\"\",0.00,62.00,41.00,187.00,,,,,,\n2015,5,26,\"DL\",\"438\",\"JFK\",\"MCO\",-6.00,-30.00,0.00,\"\",0.00,144.00,127.00,944.00,,,,,,\n2015,5,26,\"DL\",\"439\",\"JFK\",\"MSP\",27.00,-5.00,0.00,\"\",0.00,160.00,140.00,1029.00,,,,,,\n2015,5,26,\"DL\",\"440\",\"JFK\",\"BOS\",10.00,-5.00,0.00,\"\",0.00,86.00,43.00,187.00,,,,,,\n2015,5,26,\"DL\",\"442\",\"JFK\",\"LAS\",-1.00,-27.00,0.00,\"\",0.00,324.00,282.00,2248.00,,,,,,\n2015,5,26,\"DL\",\"443\",\"JFK\",\"LAS\",2.00,-3.00,0.00,\"\",0.00,349.00,301.00,2248.00,,,,,,\n2015,5,26,\"DL\",\"444\",\"SLC\",\"JFK\",2.00,2.00,0.00,\"\",0.00,277.00,245.00,1990.00,,,,,,\n2015,5,26,\"DL\",\"445\",\"JFK\",\"TPA\",2.00,-15.00,0.00,\"\",0.00,154.00,137.00,1005.00,,,,,,\n2015,5,26,\"DL\",\"447\",\"JFK\",\"LAX\",0.00,-20.00,0.00,\"\",0.00,370.00,326.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"448\",\"JFK\",\"SEA\",-2.00,-22.00,0.00,\"\",0.00,340.00,305.00,2422.00,,,,,,\n2015,5,26,\"DL\",\"449\",\"JFK\",\"PHX\",5.00,-29.00,0.00,\"\",0.00,307.00,282.00,2153.00,,,,,,\n2015,5,26,\"DL\",\"451\",\"JFK\",\"SJU\",20.00,-5.00,0.00,\"\",0.00,217.00,186.00,1598.00,,,,,,\n2015,5,26,\"DL\",\"453\",\"JFK\",\"SJU\",-5.00,-29.00,0.00,\"\",0.00,210.00,186.00,1598.00,,,,,,\n2015,5,26,\"DL\",\"454\",\"JFK\",\"ATL\",82.00,71.00,0.00,\"\",0.00,141.00,109.00,760.00,71.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"456\",\"JFK\",\"SAN\",0.00,-18.00,0.00,\"\",0.00,360.00,317.00,2446.00,,,,,,\n2015,5,26,\"DL\",\"458\",\"JFK\",\"SEA\",-8.00,-33.00,0.00,\"\",0.00,338.00,308.00,2422.00,,,,,,\n2015,5,26,\"DL\",\"459\",\"JFK\",\"SAN\",-8.00,-22.00,0.00,\"\",0.00,361.00,318.00,2446.00,,,,,,\n2015,5,26,\"DL\",\"460\",\"JFK\",\"SLC\",-7.00,-3.00,0.00,\"\",0.00,329.00,280.00,1990.00,,,,,,\n2015,5,26,\"DL\",\"462\",\"JFK\",\"SAN\",-4.00,-37.00,0.00,\"\",0.00,340.00,314.00,2446.00,,,,,,\n2015,5,26,\"DL\",\"464\",\"JFK\",\"MIA\",-7.00,-19.00,0.00,\"\",0.00,166.00,149.00,1089.00,,,,,,\n2015,5,26,\"DL\",\"465\",\"JFK\",\"STT\",-6.00,-30.00,0.00,\"\",0.00,222.00,183.00,1623.00,,,,,,\n2015,5,26,\"DL\",\"466\",\"SLC\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,270.00,248.00,1990.00,,,,,,\n2015,5,26,\"DL\",\"468\",\"SFO\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,327.00,304.00,2586.00,,,,,,\n2015,5,26,\"DL\",\"469\",\"JFK\",\"SFO\",-6.00,-28.00,0.00,\"\",0.00,368.00,332.00,2586.00,,,,,,\n2015,5,26,\"DL\",\"472\",\"JFK\",\"LAX\",0.00,-26.00,0.00,\"\",0.00,359.00,317.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"476\",\"LAX\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,315.00,291.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"477\",\"JFK\",\"LAX\",2.00,-30.00,0.00,\"\",0.00,363.00,322.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"478\",\"ATL\",\"JFK\",24.00,3.00,0.00,\"\",0.00,131.00,105.00,760.00,,,,,,\n2015,5,26,\"DL\",\"480\",\"JFK\",\"ATL\",-2.00,0.00,0.00,\"\",0.00,155.00,110.00,760.00,,,,,,\n2015,5,26,\"DL\",\"482\",\"JFK\",\"SJU\",-6.00,-27.00,0.00,\"\",0.00,217.00,189.00,1598.00,,,,,,\n2015,5,26,\"DL\",\"483\",\"JFK\",\"SFO\",-1.00,-26.00,0.00,\"\",0.00,383.00,361.00,2586.00,,,,,,\n2015,5,26,\"DL\",\"486\",\"JFK\",\"LAS\",-7.00,-26.00,0.00,\"\",0.00,313.00,285.00,2248.00,,,,,,\n2015,5,26,\"DL\",\"488\",\"JFK\",\"SJU\",-5.00,-18.00,0.00,\"\",0.00,214.00,185.00,1598.00,,,,,,\n2015,5,26,\"DL\",\"491\",\"JFK\",\"SLC\",-5.00,-32.00,0.00,\"\",0.00,278.00,259.00,1990.00,,,,,,\n2015,5,26,\"DL\",\"494\",\"JFK\",\"LAS\",3.00,-39.00,0.00,\"\",0.00,314.00,287.00,2248.00,,,,,,\n2015,5,26,\"DL\",\"495\",\"JFK\",\"ATL\",104.00,163.00,0.00,\"\",0.00,228.00,108.00,760.00,0.00,0.00,163.00,0.00,0.00,\n2015,5,26,\"DL\",\"496\",\"JFK\",\"BOS\",-4.00,13.00,0.00,\"\",0.00,100.00,43.00,187.00,,,,,,\n2015,5,26,\"DL\",\"497\",\"JFK\",\"PDX\",73.00,31.00,0.00,\"\",0.00,336.00,318.00,2454.00,0.00,0.00,0.00,31.00,0.00,\n2015,5,26,\"DL\",\"498\",\"JFK\",\"SEA\",6.00,-6.00,0.00,\"\",0.00,370.00,328.00,2422.00,,,,,,\n2015,5,26,\"DL\",\"499\",\"JFK\",\"SLC\",0.00,-15.00,0.00,\"\",0.00,293.00,260.00,1990.00,,,,,,\n2015,5,26,\"DL\",\"511\",\"SJU\",\"JFK\",-8.00,-27.00,0.00,\"\",0.00,230.00,210.00,1598.00,,,,,,\n2015,5,26,\"DL\",\"527\",\"RSW\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,160.00,137.00,1074.00,,,,,,\n2015,5,26,\"DL\",\"528\",\"LGA\",\"MSP\",-3.00,-15.00,0.00,\"\",0.00,173.00,143.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"541\",\"LAS\",\"JFK\",-3.00,3.00,0.00,\"\",0.00,304.00,285.00,2248.00,,,,,,\n2015,5,26,\"DL\",\"544\",\"ALB\",\"ATL\",-6.00,-14.00,0.00,\"\",0.00,147.00,128.00,853.00,,,,,,\n2015,5,26,\"DL\",\"582\",\"DTW\",\"LGA\",103.00,90.00,0.00,\"\",0.00,94.00,73.00,502.00,90.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"583\",\"LGA\",\"DTW\",1.00,-10.00,0.00,\"\",0.00,103.00,79.00,502.00,,,,,,\n2015,5,26,\"DL\",\"662\",\"BUF\",\"MSP\",19.00,6.00,0.00,\"\",0.00,131.00,112.00,735.00,,,,,,\n2015,5,26,\"DL\",\"664\",\"TPA\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,148.00,128.00,1010.00,,,,,,\n2015,5,26,\"DL\",\"676\",\"STT\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,234.00,218.00,1623.00,,,,,,\n2015,5,26,\"DL\",\"684\",\"DTW\",\"ALB\",-2.00,-13.00,0.00,\"\",0.00,85.00,64.00,489.00,,,,,,\n2015,5,26,\"DL\",\"684\",\"ALB\",\"DTW\",-4.00,-17.00,0.00,\"\",0.00,94.00,80.00,489.00,,,,,,\n2015,5,26,\"DL\",\"707\",\"DTW\",\"ALB\",-5.00,-23.00,0.00,\"\",0.00,79.00,63.00,489.00,,,,,,\n2015,5,26,\"DL\",\"707\",\"ALB\",\"DTW\",-10.00,-9.00,0.00,\"\",0.00,111.00,78.00,489.00,,,,,,\n2015,5,26,\"DL\",\"714\",\"DTW\",\"LGA\",-1.00,5.00,0.00,\"\",0.00,112.00,74.00,502.00,,,,,,\n2015,5,26,\"DL\",\"723\",\"ATL\",\"BUF\",-2.00,-24.00,0.00,\"\",0.00,105.00,93.00,712.00,,,,,,\n2015,5,26,\"DL\",\"723\",\"BUF\",\"ATL\",-3.00,-12.00,0.00,\"\",0.00,122.00,102.00,712.00,,,,,,\n2015,5,26,\"DL\",\"725\",\"ATL\",\"LGA\",25.00,29.00,0.00,\"\",0.00,138.00,101.00,762.00,25.00,0.00,4.00,0.00,0.00,\n2015,5,26,\"DL\",\"729\",\"LAS\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,293.00,275.00,2248.00,,,,,,\n2015,5,26,\"DL\",\"731\",\"LGA\",\"DTW\",-3.00,-13.00,0.00,\"\",0.00,104.00,81.00,502.00,,,,,,\n2015,5,26,\"DL\",\"742\",\"DTW\",\"ROC\",-2.00,-15.00,0.00,\"\",0.00,64.00,46.00,296.00,,,,,,\n2015,5,26,\"DL\",\"742\",\"ROC\",\"DTW\",-12.00,-16.00,0.00,\"\",0.00,77.00,55.00,296.00,,,,,,\n2015,5,26,\"DL\",\"750\",\"BOS\",\"JFK\",-4.00,2.00,0.00,\"\",0.00,86.00,41.00,187.00,,,,,,\n2015,5,26,\"DL\",\"763\",\"BOS\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,67.00,43.00,187.00,,,,,,\n2015,5,26,\"DL\",\"772\",\"PBI\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,165.00,133.00,1035.00,,,,,,\n2015,5,26,\"DL\",\"782\",\"MIA\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,163.00,139.00,1089.00,,,,,,\n2015,5,26,\"DL\",\"787\",\"MCO\",\"JFK\",8.00,-12.00,0.00,\"\",0.00,146.00,122.00,944.00,,,,,,\n2015,5,26,\"DL\",\"789\",\"MIA\",\"LGA\",4.00,-11.00,0.00,\"\",0.00,173.00,144.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"791\",\"LAX\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,324.00,296.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"792\",\"PBI\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,156.00,135.00,1028.00,,,,,,\n2015,5,26,\"DL\",\"793\",\"BOS\",\"JFK\",-9.00,1.00,0.00,\"\",0.00,104.00,50.00,187.00,,,,,,\n2015,5,26,\"DL\",\"802\",\"ATL\",\"LGA\",108.00,131.00,0.00,\"\",0.00,168.00,110.00,762.00,0.00,108.00,23.00,0.00,0.00,\n2015,5,26,\"DL\",\"804\",\"LGA\",\"MSP\",-1.00,-34.00,0.00,\"\",0.00,161.00,136.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"856\",\"SAN\",\"JFK\",0.00,-20.00,0.00,\"\",0.00,317.00,291.00,2446.00,,,,,,\n2015,5,26,\"DL\",\"871\",\"MSP\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,155.00,142.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"874\",\"LGA\",\"MIA\",-4.00,-17.00,0.00,\"\",0.00,192.00,145.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"878\",\"RSW\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,160.00,141.00,1080.00,,,,,,\n2015,5,26,\"DL\",\"884\",\"LGA\",\"DEN\",-2.00,-37.00,0.00,\"\",0.00,239.00,216.00,1620.00,,,,,,\n2015,5,26,\"DL\",\"889\",\"MSP\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,154.00,136.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"904\",\"LGA\",\"ATL\",-3.00,-3.00,0.00,\"\",0.00,149.00,115.00,762.00,,,,,,\n2015,5,26,\"DL\",\"906\",\"ATL\",\"LGA\",82.00,67.00,0.00,\"\",0.00,130.00,102.00,762.00,0.00,67.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"907\",\"ROC\",\"MSP\",-4.00,-31.00,0.00,\"\",0.00,124.00,110.00,783.00,,,,,,\n2015,5,26,\"DL\",\"909\",\"LGA\",\"MIA\",-6.00,-27.00,0.00,\"\",0.00,173.00,151.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"910\",\"MCO\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,158.00,125.00,950.00,,,,,,\n2015,5,26,\"DL\",\"928\",\"DEN\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,228.00,196.00,1620.00,,,,,,\n2015,5,26,\"DL\",\"939\",\"MCO\",\"LGA\",13.00,4.00,0.00,\"\",0.00,154.00,129.00,950.00,,,,,,\n2015,5,26,\"DL\",\"964\",\"LGA\",\"ATL\",,,1.00,\"B\",0.00,,,762.00,,,,,,\n2015,5,26,\"DL\",\"965\",\"MCO\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,149.00,130.00,950.00,,,,,,\n2015,5,26,\"DL\",\"971\",\"LGA\",\"DEN\",-4.00,-35.00,0.00,\"\",0.00,236.00,213.00,1620.00,,,,,,\n2015,5,26,\"DL\",\"986\",\"ATL\",\"LGA\",-2.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,26,\"DL\",\"997\",\"DTW\",\"LGA\",2.00,7.00,0.00,\"\",0.00,109.00,78.00,502.00,,,,,,\n2015,5,26,\"DL\",\"1086\",\"LGA\",\"ATL\",-7.00,-19.00,0.00,\"\",0.00,150.00,109.00,762.00,,,,,,\n2015,5,26,\"DL\",\"1088\",\"FLL\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,160.00,137.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"1109\",\"SEA\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,319.00,294.00,2422.00,,,,,,\n2015,5,26,\"DL\",\"1111\",\"ATL\",\"ROC\",148.00,129.00,0.00,\"\",0.00,111.00,92.00,749.00,0.00,13.00,0.00,0.00,116.00,\n2015,5,26,\"DL\",\"1121\",\"PBI\",\"LGA\",37.00,27.00,0.00,\"\",0.00,163.00,135.00,1035.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"1131\",\"LGA\",\"FLL\",-5.00,-16.00,0.00,\"\",0.00,181.00,149.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"1145\",\"LGA\",\"DTW\",-1.00,-19.00,0.00,\"\",0.00,106.00,81.00,502.00,,,,,,\n2015,5,26,\"DL\",\"1155\",\"DTW\",\"ROC\",268.00,262.00,0.00,\"\",0.00,65.00,45.00,296.00,7.00,0.00,0.00,0.00,255.00,\n2015,5,26,\"DL\",\"1159\",\"ATL\",\"BUF\",-4.00,-22.00,0.00,\"\",0.00,104.00,92.00,712.00,,,,,,\n2015,5,26,\"DL\",\"1159\",\"BUF\",\"ATL\",109.00,97.00,0.00,\"\",0.00,117.00,100.00,712.00,0.00,0.00,97.00,0.00,0.00,\n2015,5,26,\"DL\",\"1162\",\"LAX\",\"JFK\",-4.00,-6.00,0.00,\"\",0.00,323.00,299.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"1174\",\"LGA\",\"PBI\",-5.00,-25.00,0.00,\"\",0.00,160.00,140.00,1035.00,,,,,,\n2015,5,26,\"DL\",\"1176\",\"ATL\",\"BUF\",160.00,144.00,0.00,\"\",0.00,114.00,88.00,712.00,144.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"1176\",\"BUF\",\"ATL\",136.00,157.00,0.00,\"\",0.00,155.00,96.00,712.00,0.00,0.00,21.00,0.00,136.00,\n2015,5,26,\"DL\",\"1182\",\"MCO\",\"LGA\",2.00,,1.00,\"A\",0.00,,,950.00,,,,,,\n2015,5,26,\"DL\",\"1186\",\"ATL\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,129.00,103.00,762.00,,,,,,\n2015,5,26,\"DL\",\"1214\",\"LGA\",\"ATL\",178.00,167.00,0.00,\"\",0.00,153.00,112.00,762.00,0.00,0.00,167.00,0.00,0.00,\n2015,5,26,\"DL\",\"1227\",\"PHX\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,271.00,253.00,2153.00,,,,,,\n2015,5,26,\"DL\",\"1242\",\"LGA\",\"PBI\",-4.00,-15.00,0.00,\"\",0.00,173.00,136.00,1035.00,,,,,,\n2015,5,26,\"DL\",\"1262\",\"LAX\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,321.00,300.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"1264\",\"SLC\",\"JFK\",2.00,-13.00,0.00,\"\",0.00,258.00,239.00,1990.00,,,,,,\n2015,5,26,\"DL\",\"1266\",\"BUF\",\"ATL\",-3.00,-1.00,0.00,\"\",0.00,124.00,107.00,712.00,,,,,,\n2015,5,26,\"DL\",\"1269\",\"LGA\",\"MIA\",3.00,-10.00,0.00,\"\",0.00,184.00,149.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"1278\",\"MSP\",\"BUF\",-4.00,1.00,0.00,\"\",0.00,124.00,100.00,735.00,,,,,,\n2015,5,26,\"DL\",\"1286\",\"ATL\",\"LGA\",6.00,-10.00,0.00,\"\",0.00,119.00,99.00,762.00,,,,,,\n2015,5,26,\"DL\",\"1288\",\"LGA\",\"FLL\",12.00,4.00,0.00,\"\",0.00,187.00,146.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"1289\",\"LGA\",\"ATL\",238.00,214.00,0.00,\"\",0.00,138.00,104.00,762.00,38.00,0.00,176.00,0.00,0.00,\n2015,5,26,\"DL\",\"1298\",\"LGA\",\"ATL\",229.00,233.00,0.00,\"\",0.00,165.00,111.00,762.00,0.00,0.00,233.00,0.00,0.00,\n2015,5,26,\"DL\",\"1306\",\"DTW\",\"LGA\",38.00,27.00,0.00,\"\",0.00,96.00,71.00,502.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"1312\",\"TPA\",\"JFK\",-5.00,-32.00,0.00,\"\",0.00,147.00,131.00,1005.00,,,,,,\n2015,5,26,\"DL\",\"1335\",\"MIA\",\"LGA\",-6.00,-31.00,0.00,\"\",0.00,158.00,138.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"1356\",\"BUF\",\"DTW\",-3.00,-8.00,0.00,\"\",0.00,66.00,46.00,241.00,,,,,,\n2015,5,26,\"DL\",\"1359\",\"MCO\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,151.00,126.00,950.00,,,,,,\n2015,5,26,\"DL\",\"1370\",\"ATL\",\"ROC\",-2.00,-18.00,0.00,\"\",0.00,109.00,95.00,749.00,,,,,,\n2015,5,26,\"DL\",\"1370\",\"ROC\",\"ATL\",-7.00,-7.00,0.00,\"\",0.00,134.00,109.00,749.00,,,,,,\n2015,5,26,\"DL\",\"1372\",\"DTW\",\"BUF\",86.00,87.00,0.00,\"\",0.00,67.00,44.00,241.00,86.00,0.00,1.00,0.00,0.00,\n2015,5,26,\"DL\",\"1383\",\"LGA\",\"ATL\",304.00,318.00,0.00,\"\",0.00,182.00,108.00,762.00,2.00,0.00,14.00,0.00,302.00,\n2015,5,26,\"DL\",\"1386\",\"ATL\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,115.00,101.00,762.00,,,,,,\n2015,5,26,\"DL\",\"1394\",\"ATL\",\"JFK\",96.00,104.00,0.00,\"\",0.00,161.00,104.00,760.00,0.00,96.00,8.00,0.00,0.00,\n2015,5,26,\"DL\",\"1419\",\"ATL\",\"JFK\",261.00,246.00,0.00,\"\",0.00,140.00,110.00,760.00,0.00,85.00,0.00,0.00,161.00,\n2015,5,26,\"DL\",\"1428\",\"LGA\",\"ATL\",32.00,20.00,0.00,\"\",0.00,146.00,110.00,762.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,26,\"DL\",\"1447\",\"LGA\",\"ATL\",0.00,-7.00,0.00,\"\",0.00,137.00,110.00,762.00,,,,,,\n2015,5,27,\"DL\",\"964\",\"LGA\",\"ATL\",181.00,157.00,0.00,\"\",0.00,122.00,103.00,762.00,0.00,0.00,1.00,0.00,156.00,\n2015,5,27,\"DL\",\"965\",\"MCO\",\"LGA\",786.00,772.00,0.00,\"\",0.00,147.00,125.00,950.00,648.00,0.00,124.00,0.00,0.00,\n2015,5,27,\"DL\",\"971\",\"LGA\",\"DEN\",-1.00,-14.00,0.00,\"\",0.00,254.00,222.00,1620.00,,,,,,\n2015,5,27,\"DL\",\"986\",\"ATL\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,133.00,102.00,762.00,,,,,,\n2015,5,27,\"DL\",\"997\",\"DTW\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,103.00,74.00,502.00,,,,,,\n2015,5,27,\"DL\",\"1088\",\"FLL\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,171.00,143.00,1076.00,,,,,,\n2015,5,27,\"DL\",\"1109\",\"SEA\",\"JFK\",16.00,5.00,0.00,\"\",0.00,324.00,292.00,2422.00,,,,,,\n2015,5,27,\"DL\",\"1111\",\"ATL\",\"ROC\",1.00,-9.00,0.00,\"\",0.00,120.00,93.00,749.00,,,,,,\n2015,5,27,\"DL\",\"1121\",\"PBI\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,174.00,146.00,1035.00,,,,,,\n2015,5,27,\"DL\",\"1131\",\"LGA\",\"FLL\",,,1.00,\"A\",0.00,,,1076.00,,,,,,\n2015,5,27,\"DL\",\"1145\",\"LGA\",\"DTW\",-3.00,-21.00,0.00,\"\",0.00,106.00,88.00,502.00,,,,,,\n2015,5,27,\"DL\",\"1155\",\"DTW\",\"ROC\",48.00,40.00,0.00,\"\",0.00,63.00,42.00,296.00,0.00,0.00,0.00,0.00,40.00,\n2015,5,27,\"DL\",\"1159\",\"ATL\",\"BUF\",-5.00,-14.00,0.00,\"\",0.00,113.00,91.00,712.00,,,,,,\n2015,5,27,\"DL\",\"1159\",\"BUF\",\"ATL\",-6.00,-11.00,0.00,\"\",0.00,123.00,101.00,712.00,,,,,,\n2015,5,27,\"DL\",\"1162\",\"LAX\",\"JFK\",74.00,52.00,0.00,\"\",0.00,303.00,281.00,2475.00,6.00,0.00,0.00,0.00,46.00,\n2015,5,25,\"DL\",\"1473\",\"SEA\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,317.00,291.00,2422.00,,,,,,\n2015,5,25,\"DL\",\"1486\",\"ATL\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,134.00,106.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1487\",\"ATL\",\"JFK\",4.00,3.00,0.00,\"\",0.00,142.00,105.00,760.00,,,,,,\n2015,5,25,\"DL\",\"1496\",\"MSP\",\"LGA\",-8.00,-19.00,0.00,\"\",0.00,155.00,134.00,1020.00,,,,,,\n2015,5,25,\"DL\",\"1498\",\"FLL\",\"LGA\",-1.00,-24.00,0.00,\"\",0.00,157.00,143.00,1076.00,,,,,,\n2015,5,25,\"DL\",\"1503\",\"FLL\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,167.00,145.00,1076.00,,,,,,\n2015,5,25,\"DL\",\"1514\",\"LGA\",\"FLL\",-4.00,-12.00,0.00,\"\",0.00,181.00,143.00,1076.00,,,,,,\n2015,5,25,\"DL\",\"1515\",\"ATL\",\"ALB\",2.00,-13.00,0.00,\"\",0.00,132.00,113.00,853.00,,,,,,\n2015,5,25,\"DL\",\"1522\",\"IND\",\"LGA\",79.00,70.00,0.00,\"\",0.00,115.00,89.00,660.00,1.00,0.00,0.00,0.00,69.00,\n2015,5,25,\"DL\",\"1526\",\"MCO\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,149.00,128.00,950.00,,,,,,\n2015,5,25,\"DL\",\"1542\",\"SEA\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,306.00,282.00,2422.00,,,,,,\n2015,5,25,\"DL\",\"1543\",\"ATL\",\"ALB\",-4.00,-18.00,0.00,\"\",0.00,130.00,111.00,853.00,,,,,,\n2015,5,25,\"DL\",\"1543\",\"ALB\",\"ATL\",0.00,-7.00,0.00,\"\",0.00,155.00,131.00,853.00,,,,,,\n2015,5,25,\"DL\",\"1560\",\"MSY\",\"LGA\",65.00,54.00,0.00,\"\",0.00,175.00,148.00,1183.00,0.00,35.00,0.00,0.00,19.00,\n2015,5,25,\"DL\",\"1562\",\"BUF\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,73.00,54.00,301.00,,,,,,\n2015,5,25,\"DL\",\"1566\",\"LGA\",\"PBI\",15.00,-1.00,0.00,\"\",0.00,167.00,145.00,1035.00,,,,,,\n2015,5,25,\"DL\",\"1584\",\"ATL\",\"ROC\",12.00,-12.00,0.00,\"\",0.00,109.00,91.00,749.00,,,,,,\n2015,5,25,\"DL\",\"1584\",\"ROC\",\"ATL\",-5.00,,0.00,\"\",1.00,,,749.00,,,,,,\n2015,5,25,\"DL\",\"1586\",\"ATL\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,128.00,99.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1596\",\"MSP\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,151.00,129.00,1020.00,,,,,,\n2015,5,25,\"DL\",\"1628\",\"LGA\",\"DTW\",-7.00,-1.00,0.00,\"\",0.00,131.00,92.00,502.00,,,,,,\n2015,5,25,\"DL\",\"1644\",\"FLL\",\"JFK\",-6.00,-30.00,0.00,\"\",0.00,163.00,140.00,1069.00,,,,,,\n2015,5,25,\"DL\",\"1647\",\"LGA\",\"ATL\",-4.00,-18.00,0.00,\"\",0.00,136.00,106.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1660\",\"MIA\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,182.00,150.00,1096.00,,,,,,\n2015,5,25,\"DL\",\"1671\",\"MIA\",\"JFK\",-4.00,-29.00,0.00,\"\",0.00,162.00,141.00,1089.00,,,,,,\n2015,5,25,\"DL\",\"1672\",\"ATL\",\"BUF\",-3.00,-14.00,0.00,\"\",0.00,108.00,92.00,712.00,,,,,,\n2015,5,25,\"DL\",\"1672\",\"BUF\",\"ATL\",-2.00,-5.00,0.00,\"\",0.00,125.00,105.00,712.00,,,,,,\n2015,5,25,\"DL\",\"1685\",\"LGA\",\"MCO\",-4.00,-26.00,0.00,\"\",0.00,153.00,128.00,950.00,,,,,,\n2015,5,25,\"DL\",\"1690\",\"LGA\",\"IND\",107.00,78.00,0.00,\"\",0.00,122.00,91.00,660.00,78.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"DL\",\"1697\",\"LGA\",\"ATL\",1.00,-13.00,0.00,\"\",0.00,144.00,112.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1728\",\"LAS\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,301.00,264.00,2248.00,,,,,,\n2015,5,25,\"DL\",\"1750\",\"ATL\",\"JFK\",44.00,18.00,0.00,\"\",0.00,123.00,99.00,760.00,0.00,11.00,0.00,0.00,7.00,\n2015,5,25,\"DL\",\"1762\",\"LAX\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,332.00,289.00,2475.00,,,,,,\n2015,5,25,\"DL\",\"1779\",\"LGA\",\"MSY\",-4.00,29.00,0.00,\"\",0.00,232.00,158.00,1183.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,25,\"DL\",\"1786\",\"ATL\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,122.00,102.00,762.00,,,,,,\n2015,5,25,\"DL\",\"1796\",\"LGA\",\"MSP\",-2.00,-22.00,0.00,\"\",0.00,178.00,144.00,1020.00,,,,,,\n2015,5,25,\"DL\",\"1830\",\"SLC\",\"JFK\",3.00,-6.00,0.00,\"\",0.00,267.00,233.00,1990.00,,,,,,\n2015,5,25,\"DL\",\"1841\",\"SJU\",\"JFK\",29.00,14.00,0.00,\"\",0.00,232.00,209.00,1598.00,,,,,,\n2015,5,25,\"DL\",\"1849\",\"LGA\",\"ATL\",-8.00,20.00,0.00,\"\",0.00,186.00,120.00,762.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,25,\"DL\",\"1851\",\"CHS\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,109.00,87.00,636.00,,,,,,\n2015,5,26,\"DL\",\"1473\",\"SEA\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,319.00,297.00,2422.00,,,,,,\n2015,5,26,\"DL\",\"1486\",\"ATL\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,137.00,107.00,762.00,,,,,,\n2015,5,26,\"DL\",\"1487\",\"ATL\",\"JFK\",13.00,2.00,0.00,\"\",0.00,133.00,105.00,760.00,,,,,,\n2015,5,26,\"DL\",\"1496\",\"MSP\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,160.00,141.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"1498\",\"FLL\",\"LGA\",-8.00,-7.00,0.00,\"\",0.00,181.00,143.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"1503\",\"FLL\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,169.00,144.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"1514\",\"LGA\",\"FLL\",-3.00,-13.00,0.00,\"\",0.00,179.00,148.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"1515\",\"ATL\",\"ALB\",141.00,125.00,0.00,\"\",0.00,131.00,105.00,853.00,125.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"1526\",\"MCO\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,150.00,127.00,950.00,,,,,,\n2015,5,26,\"DL\",\"1542\",\"SEA\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,311.00,292.00,2422.00,,,,,,\n2015,5,26,\"DL\",\"1543\",\"ATL\",\"ALB\",-4.00,-24.00,0.00,\"\",0.00,124.00,107.00,853.00,,,,,,\n2015,5,26,\"DL\",\"1543\",\"ALB\",\"ATL\",-5.00,-22.00,0.00,\"\",0.00,145.00,127.00,853.00,,,,,,\n2015,5,26,\"DL\",\"1548\",\"LGA\",\"DTW\",-2.00,-21.00,0.00,\"\",0.00,101.00,81.00,502.00,,,,,,\n2015,5,26,\"DL\",\"1560\",\"MSY\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,176.00,157.00,1183.00,,,,,,\n2015,5,26,\"DL\",\"1562\",\"BOS\",\"JFK\",31.00,26.00,0.00,\"\",0.00,74.00,51.00,187.00,18.00,0.00,0.00,0.00,8.00,\n2015,5,26,\"DL\",\"1566\",\"LGA\",\"PBI\",-2.00,-19.00,0.00,\"\",0.00,166.00,143.00,1035.00,,,,,,\n2015,5,26,\"DL\",\"1583\",\"SFO\",\"JFK\",-2.00,-29.00,0.00,\"\",0.00,322.00,306.00,2586.00,,,,,,\n2015,5,26,\"DL\",\"1584\",\"ATL\",\"ROC\",-2.00,-21.00,0.00,\"\",0.00,114.00,96.00,749.00,,,,,,\n2015,5,26,\"DL\",\"1584\",\"ROC\",\"ATL\",79.00,165.00,0.00,\"\",0.00,222.00,106.00,749.00,0.00,0.00,165.00,0.00,0.00,\n2015,5,26,\"DL\",\"1586\",\"ATL\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,127.00,102.00,762.00,,,,,,\n2015,5,26,\"DL\",\"1596\",\"MSP\",\"LGA\",14.00,7.00,0.00,\"\",0.00,158.00,142.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"1628\",\"LGA\",\"DTW\",-3.00,-11.00,0.00,\"\",0.00,117.00,85.00,502.00,,,,,,\n2015,5,26,\"DL\",\"1644\",\"FLL\",\"JFK\",-5.00,-38.00,0.00,\"\",0.00,154.00,136.00,1069.00,,,,,,\n2015,5,26,\"DL\",\"1647\",\"LGA\",\"ATL\",54.00,64.00,0.00,\"\",0.00,162.00,111.00,762.00,54.00,0.00,10.00,0.00,0.00,\n2015,5,26,\"DL\",\"1660\",\"MIA\",\"LGA\",-3.00,-26.00,0.00,\"\",0.00,163.00,142.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"1671\",\"MIA\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,180.00,135.00,1089.00,,,,,,\n2015,5,26,\"DL\",\"1672\",\"ATL\",\"BUF\",-2.00,-14.00,0.00,\"\",0.00,107.00,90.00,712.00,,,,,,\n2015,5,26,\"DL\",\"1672\",\"BUF\",\"ATL\",16.00,10.00,0.00,\"\",0.00,122.00,105.00,712.00,,,,,,\n2015,5,26,\"DL\",\"1685\",\"LGA\",\"MCO\",10.00,-4.00,0.00,\"\",0.00,161.00,129.00,950.00,,,,,,\n2015,5,26,\"DL\",\"1697\",\"LGA\",\"ATL\",122.00,119.00,0.00,\"\",0.00,155.00,105.00,762.00,0.00,0.00,0.00,0.00,119.00,\n2015,5,26,\"DL\",\"1728\",\"LAS\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,292.00,272.00,2248.00,,,,,,\n2015,5,26,\"DL\",\"1750\",\"ATL\",\"JFK\",272.00,246.00,0.00,\"\",0.00,123.00,103.00,760.00,0.00,99.00,0.00,0.00,147.00,\n2015,5,26,\"DL\",\"1762\",\"LAX\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,326.00,301.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"1779\",\"LGA\",\"MSY\",-5.00,-21.00,0.00,\"\",0.00,183.00,157.00,1183.00,,,,,,\n2015,5,26,\"DL\",\"1786\",\"ATL\",\"LGA\",3.00,-16.00,0.00,\"\",0.00,122.00,100.00,762.00,,,,,,\n2015,5,26,\"DL\",\"1796\",\"LGA\",\"MSP\",-1.00,-20.00,0.00,\"\",0.00,179.00,153.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"1830\",\"SLC\",\"JFK\",-1.00,0.00,0.00,\"\",0.00,277.00,252.00,1990.00,,,,,,\n2015,5,26,\"DL\",\"1841\",\"SJU\",\"JFK\",1.00,-19.00,0.00,\"\",0.00,227.00,206.00,1598.00,,,,,,\n2015,5,26,\"DL\",\"1848\",\"DTW\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,102.00,75.00,502.00,,,,,,\n2015,5,26,\"DL\",\"1849\",\"LGA\",\"ATL\",,,1.00,\"B\",0.00,,,762.00,,,,,,\n2015,5,26,\"DL\",\"1851\",\"CHS\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,117.00,86.00,636.00,,,,,,\n2015,5,26,\"DL\",\"1875\",\"LGA\",\"TPA\",-3.00,-12.00,0.00,\"\",0.00,171.00,137.00,1010.00,,,,,,\n2015,5,26,\"DL\",\"1879\",\"LGA\",\"FLL\",1.00,-13.00,0.00,\"\",0.00,173.00,153.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"1885\",\"LGA\",\"MCO\",7.00,-7.00,0.00,\"\",0.00,166.00,130.00,950.00,,,,,,\n2015,5,26,\"DL\",\"1886\",\"ATL\",\"LGA\",,,1.00,\"B\",0.00,,,762.00,,,,,,\n2015,5,26,\"DL\",\"1897\",\"LGA\",\"MCO\",0.00,-5.00,0.00,\"\",0.00,169.00,125.00,950.00,,,,,,\n2015,5,26,\"DL\",\"1902\",\"LGA\",\"PBI\",-5.00,-25.00,0.00,\"\",0.00,164.00,141.00,1035.00,,,,,,\n2015,5,26,\"DL\",\"1917\",\"MIA\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,164.00,140.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"1919\",\"LGA\",\"MSP\",-2.00,-17.00,0.00,\"\",0.00,167.00,146.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"1930\",\"LGA\",\"MIA\",-2.00,-31.00,0.00,\"\",0.00,169.00,148.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"1935\",\"LGA\",\"TPA\",-5.00,-21.00,0.00,\"\",0.00,166.00,138.00,1010.00,,,,,,\n2015,5,26,\"DL\",\"1947\",\"FLL\",\"JFK\",3.00,-25.00,0.00,\"\",0.00,155.00,134.00,1069.00,,,,,,\n2015,5,26,\"DL\",\"1948\",\"DTW\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,96.00,74.00,502.00,,,,,,\n2015,5,26,\"DL\",\"1949\",\"TPA\",\"LGA\",219.00,,0.00,\"\",1.00,,,1010.00,,,,,,\n2015,5,26,\"DL\",\"1953\",\"LGA\",\"FLL\",-5.00,-35.00,0.00,\"\",0.00,164.00,145.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"1958\",\"PBI\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,166.00,134.00,1035.00,,,,,,\n2015,5,26,\"DL\",\"1969\",\"BUF\",\"JFK\",15.00,-3.00,0.00,\"\",0.00,72.00,55.00,301.00,,,,,,\n2015,5,26,\"DL\",\"1972\",\"AUS\",\"JFK\",57.00,40.00,0.00,\"\",0.00,212.00,198.00,1521.00,40.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"DL\",\"1982\",\"LGA\",\"MIA\",-2.00,-24.00,0.00,\"\",0.00,174.00,146.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"1985\",\"ALB\",\"DTW\",-3.00,-5.00,0.00,\"\",0.00,99.00,75.00,489.00,,,,,,\n2015,5,26,\"DL\",\"1986\",\"ATL\",\"LGA\",,,1.00,\"B\",0.00,,,762.00,,,,,,\n2015,5,26,\"DL\",\"1994\",\"PHX\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,282.00,259.00,2153.00,,,,,,\n2015,5,26,\"DL\",\"1996\",\"MSP\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,151.00,133.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"2003\",\"LGA\",\"MIA\",-4.00,-1.00,0.00,\"\",0.00,190.00,148.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"2013\",\"ATL\",\"SYR\",88.00,73.00,0.00,\"\",0.00,120.00,95.00,794.00,0.00,0.00,0.00,0.00,73.00,\n2015,5,26,\"DL\",\"2014\",\"SYR\",\"ATL\",-5.00,-12.00,0.00,\"\",0.00,132.00,116.00,794.00,,,,,,\n2015,5,26,\"DL\",\"2016\",\"LGA\",\"ATL\",28.00,22.00,0.00,\"\",0.00,147.00,111.00,762.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,26,\"DL\",\"2022\",\"LGA\",\"FLL\",-5.00,-33.00,0.00,\"\",0.00,164.00,144.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"2027\",\"JFK\",\"SJU\",8.00,-35.00,0.00,\"\",0.00,204.00,183.00,1598.00,,,,,,\n2015,5,26,\"DL\",\"2028\",\"FLL\",\"LGA\",-4.00,-27.00,0.00,\"\",0.00,158.00,141.00,1076.00,,,,,,\n2015,5,26,\"DL\",\"2032\",\"MSP\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,164.00,137.00,1029.00,,,,,,\n2015,5,26,\"DL\",\"2037\",\"JFK\",\"FLL\",-3.00,-33.00,0.00,\"\",0.00,171.00,145.00,1069.00,,,,,,\n2015,5,26,\"DL\",\"2040\",\"SFO\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,320.00,302.00,2586.00,,,,,,\n2015,5,26,\"DL\",\"2056\",\"MSP\",\"ROC\",-1.00,-10.00,0.00,\"\",0.00,128.00,103.00,783.00,,,,,,\n2015,5,26,\"DL\",\"2058\",\"MCO\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,146.00,123.00,944.00,,,,,,\n2015,5,26,\"DL\",\"2059\",\"JFK\",\"SAT\",-5.00,-33.00,0.00,\"\",0.00,241.00,221.00,1587.00,,,,,,\n2015,5,26,\"DL\",\"2074\",\"LGA\",\"ATL\",18.00,15.00,0.00,\"\",0.00,155.00,116.00,762.00,3.00,0.00,1.00,0.00,11.00,\n2015,5,26,\"DL\",\"2077\",\"LGA\",\"MCO\",-5.00,-15.00,0.00,\"\",0.00,166.00,134.00,950.00,,,,,,\n2015,5,26,\"DL\",\"2086\",\"ATL\",\"LGA\",31.00,27.00,0.00,\"\",0.00,140.00,102.00,762.00,0.00,24.00,0.00,0.00,3.00,\n2015,5,26,\"DL\",\"2096\",\"LGA\",\"MSP\",0.00,-22.00,0.00,\"\",0.00,160.00,139.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"2119\",\"LGA\",\"MSP\",20.00,-3.00,0.00,\"\",0.00,162.00,142.00,1020.00,,,,,,\n2015,5,26,\"DL\",\"2122\",\"JFK\",\"MCO\",-7.00,-45.00,0.00,\"\",0.00,152.00,126.00,944.00,,,,,,\n2015,5,26,\"DL\",\"2129\",\"ROC\",\"ATL\",-4.00,-7.00,0.00,\"\",0.00,126.00,107.00,749.00,,,,,,\n2015,5,26,\"DL\",\"2131\",\"LGA\",\"DTW\",30.00,39.00,0.00,\"\",0.00,128.00,87.00,502.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,26,\"DL\",\"2135\",\"TPA\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,150.00,131.00,1010.00,,,,,,\n2015,5,26,\"DL\",\"2148\",\"LGA\",\"DTW\",1.00,-16.00,0.00,\"\",0.00,111.00,77.00,502.00,,,,,,\n2015,5,26,\"DL\",\"2150\",\"LGA\",\"DTW\",-10.00,-18.00,0.00,\"\",0.00,118.00,86.00,502.00,,,,,,\n2015,5,26,\"DL\",\"2151\",\"MIA\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,175.00,141.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"2155\",\"LAS\",\"JFK\",2.00,7.00,0.00,\"\",0.00,304.00,271.00,2248.00,,,,,,\n2015,5,26,\"DL\",\"2156\",\"ATL\",\"SYR\",0.00,-17.00,0.00,\"\",0.00,113.00,99.00,794.00,,,,,,\n2015,5,26,\"DL\",\"2156\",\"SYR\",\"ATL\",-5.00,-14.00,0.00,\"\",0.00,134.00,112.00,794.00,,,,,,\n2015,5,26,\"DL\",\"2166\",\"SYR\",\"DTW\",-6.00,-20.00,0.00,\"\",0.00,79.00,58.00,374.00,,,,,,\n2015,5,26,\"DL\",\"2174\",\"DTW\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,113.00,72.00,509.00,,,,,,\n2015,5,26,\"DL\",\"2175\",\"FLL\",\"JFK\",-6.00,-38.00,0.00,\"\",0.00,154.00,137.00,1069.00,,,,,,\n2015,5,26,\"DL\",\"2178\",\"LGA\",\"TPA\",-6.00,-8.00,0.00,\"\",0.00,179.00,156.00,1010.00,,,,,,\n2015,5,26,\"DL\",\"2181\",\"LGA\",\"MCO\",-7.00,-8.00,0.00,\"\",0.00,169.00,132.00,950.00,,,,,,\n2015,5,26,\"DL\",\"2185\",\"FLL\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,165.00,138.00,1069.00,,,,,,\n2015,5,26,\"DL\",\"2186\",\"ATL\",\"LGA\",282.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,26,\"DL\",\"2189\",\"JFK\",\"FLL\",-7.00,-41.00,0.00,\"\",0.00,169.00,149.00,1069.00,,,,,,\n2015,5,26,\"DL\",\"2190\",\"JFK\",\"MIA\",-7.00,-30.00,0.00,\"\",0.00,179.00,150.00,1089.00,,,,,,\n2015,5,26,\"DL\",\"2214\",\"ATL\",\"LGA\",-3.00,31.00,0.00,\"\",0.00,167.00,99.00,762.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,26,\"DL\",\"2230\",\"CHS\",\"JFK\",2.00,-15.00,0.00,\"\",0.00,112.00,92.00,636.00,,,,,,\n2015,5,26,\"DL\",\"2231\",\"DTW\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,99.00,73.00,502.00,,,,,,\n2015,5,26,\"DL\",\"2240\",\"SFO\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,325.00,302.00,2586.00,,,,,,\n2015,5,26,\"DL\",\"2248\",\"DTW\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,97.00,78.00,502.00,,,,,,\n2015,5,26,\"DL\",\"2262\",\"LAX\",\"JFK\",1.00,-7.00,0.00,\"\",0.00,326.00,295.00,2475.00,,,,,,\n2015,5,26,\"DL\",\"2270\",\"LGA\",\"RSW\",-4.00,14.00,0.00,\"\",0.00,214.00,162.00,1080.00,,,,,,\n2015,5,26,\"DL\",\"2276\",\"MCO\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,150.00,132.00,944.00,,,,,,\n2015,5,26,\"DL\",\"2277\",\"JFK\",\"TPA\",-5.00,-40.00,0.00,\"\",0.00,158.00,136.00,1005.00,,,,,,\n2015,5,26,\"DL\",\"2280\",\"LGA\",\"TPA\",-4.00,3.00,0.00,\"\",0.00,181.00,139.00,1010.00,,,,,,\n2015,5,26,\"DL\",\"2282\",\"LGA\",\"MCO\",-3.00,-19.00,0.00,\"\",0.00,160.00,127.00,950.00,,,,,,\n2015,5,27,\"DL\",\"1830\",\"SLC\",\"JFK\",6.00,13.00,0.00,\"\",0.00,283.00,234.00,1990.00,,,,,,\n2015,5,27,\"DL\",\"1841\",\"SJU\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,244.00,210.00,1598.00,,,,,,\n2015,5,27,\"DL\",\"1848\",\"DTW\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,107.00,78.00,502.00,,,,,,\n2015,5,27,\"DL\",\"1849\",\"LGA\",\"ATL\",224.00,201.00,0.00,\"\",0.00,135.00,105.00,762.00,0.00,0.00,0.00,0.00,201.00,\n2015,5,27,\"DL\",\"1851\",\"CHS\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,115.00,92.00,636.00,,,,,,\n2015,5,27,\"DL\",\"1875\",\"LGA\",\"TPA\",-1.00,-13.00,0.00,\"\",0.00,168.00,145.00,1010.00,,,,,,\n2015,5,27,\"DL\",\"1879\",\"LGA\",\"FLL\",0.00,-14.00,0.00,\"\",0.00,173.00,148.00,1076.00,,,,,,\n2015,5,27,\"DL\",\"1885\",\"LGA\",\"MCO\",-3.00,-28.00,0.00,\"\",0.00,155.00,131.00,950.00,,,,,,\n2015,5,27,\"DL\",\"1886\",\"ATL\",\"LGA\",248.00,229.00,0.00,\"\",0.00,131.00,102.00,762.00,0.00,0.00,229.00,0.00,0.00,\n2015,5,27,\"DL\",\"1897\",\"LGA\",\"MCO\",33.00,90.00,0.00,\"\",0.00,231.00,135.00,950.00,5.00,0.00,57.00,0.00,28.00,\n2015,5,27,\"DL\",\"1902\",\"LGA\",\"PBI\",-3.00,-19.00,0.00,\"\",0.00,168.00,143.00,1035.00,,,,,,\n2015,5,27,\"DL\",\"1917\",\"MIA\",\"LGA\",101.00,97.00,0.00,\"\",0.00,180.00,151.00,1096.00,0.00,0.00,97.00,0.00,0.00,\n2015,5,27,\"DL\",\"1919\",\"LGA\",\"MSP\",-2.00,-24.00,0.00,\"\",0.00,160.00,139.00,1020.00,,,,,,\n2015,5,27,\"DL\",\"1930\",\"LGA\",\"MIA\",,,1.00,\"A\",0.00,,,1096.00,,,,,,\n2015,5,27,\"DL\",\"1935\",\"LGA\",\"TPA\",-5.00,-20.00,0.00,\"\",0.00,167.00,141.00,1010.00,,,,,,\n2015,5,27,\"DL\",\"1947\",\"FLL\",\"JFK\",39.00,50.00,0.00,\"\",0.00,194.00,136.00,1069.00,5.00,0.00,28.00,0.00,17.00,\n2015,5,27,\"DL\",\"1948\",\"DTW\",\"LGA\",10.00,5.00,0.00,\"\",0.00,102.00,81.00,502.00,,,,,,\n2015,5,27,\"DL\",\"1949\",\"TPA\",\"LGA\",102.00,106.00,0.00,\"\",0.00,167.00,139.00,1010.00,0.00,0.00,106.00,0.00,0.00,\n2015,5,27,\"DL\",\"1953\",\"LGA\",\"FLL\",197.00,173.00,0.00,\"\",0.00,170.00,146.00,1076.00,0.00,0.00,0.00,0.00,173.00,\n2015,5,27,\"DL\",\"1958\",\"PBI\",\"LGA\",56.00,95.00,0.00,\"\",0.00,215.00,189.00,1035.00,0.00,0.00,95.00,0.00,0.00,\n2015,5,27,\"DL\",\"1969\",\"BUF\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,83.00,69.00,301.00,,,,,,\n2015,5,27,\"DL\",\"1972\",\"AUS\",\"JFK\",34.00,15.00,0.00,\"\",0.00,210.00,188.00,1521.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"1982\",\"LGA\",\"MIA\",12.00,-4.00,0.00,\"\",0.00,180.00,149.00,1096.00,,,,,,\n2015,5,27,\"DL\",\"1174\",\"LGA\",\"PBI\",-7.00,-26.00,0.00,\"\",0.00,161.00,142.00,1035.00,,,,,,\n2015,5,27,\"DL\",\"1176\",\"ATL\",\"BUF\",-3.00,-19.00,0.00,\"\",0.00,114.00,92.00,712.00,,,,,,\n2015,5,27,\"DL\",\"1176\",\"BUF\",\"ATL\",-4.00,-11.00,0.00,\"\",0.00,127.00,101.00,712.00,,,,,,\n2015,5,27,\"DL\",\"1182\",\"MCO\",\"LGA\",7.00,5.00,0.00,\"\",0.00,155.00,127.00,950.00,,,,,,\n2015,5,27,\"DL\",\"1186\",\"ATL\",\"LGA\",15.00,-4.00,0.00,\"\",0.00,122.00,98.00,762.00,,,,,,\n2015,5,27,\"DL\",\"1214\",\"LGA\",\"ATL\",22.00,8.00,0.00,\"\",0.00,150.00,123.00,762.00,,,,,,\n2015,5,27,\"DL\",\"1227\",\"PHX\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,278.00,260.00,2153.00,,,,,,\n2015,5,27,\"DL\",\"1242\",\"LGA\",\"PBI\",-4.00,-24.00,0.00,\"\",0.00,164.00,142.00,1035.00,,,,,,\n2015,5,27,\"DL\",\"1262\",\"LAX\",\"JFK\",25.00,23.00,0.00,\"\",0.00,331.00,297.00,2475.00,13.00,0.00,0.00,0.00,10.00,\n2015,5,27,\"DL\",\"1264\",\"SLC\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,259.00,236.00,1990.00,,,,,,\n2015,5,27,\"DL\",\"1266\",\"BUF\",\"ATL\",-3.00,0.00,0.00,\"\",0.00,124.00,104.00,712.00,,,,,,\n2015,5,27,\"DL\",\"1269\",\"LGA\",\"MIA\",-1.00,-16.00,0.00,\"\",0.00,182.00,147.00,1096.00,,,,,,\n2015,5,27,\"DL\",\"1278\",\"MSP\",\"BUF\",-1.00,-3.00,0.00,\"\",0.00,117.00,98.00,735.00,,,,,,\n2015,5,27,\"DL\",\"1286\",\"ATL\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,119.00,100.00,762.00,,,,,,\n2015,5,27,\"DL\",\"1288\",\"LGA\",\"FLL\",-13.00,-22.00,0.00,\"\",0.00,186.00,144.00,1076.00,,,,,,\n2015,5,27,\"DL\",\"1289\",\"LGA\",\"ATL\",28.00,89.00,0.00,\"\",0.00,223.00,119.00,762.00,7.00,0.00,61.00,0.00,21.00,\n2015,5,27,\"DL\",\"1298\",\"LGA\",\"ATL\",-6.00,-15.00,0.00,\"\",0.00,152.00,124.00,762.00,,,,,,\n2015,5,27,\"DL\",\"1306\",\"DTW\",\"LGA\",62.00,49.00,0.00,\"\",0.00,94.00,73.00,502.00,45.00,0.00,0.00,0.00,4.00,\n2015,5,27,\"DL\",\"1312\",\"TPA\",\"JFK\",262.00,235.00,0.00,\"\",0.00,147.00,129.00,1005.00,0.00,0.00,235.00,0.00,0.00,\n2015,5,27,\"DL\",\"1335\",\"MIA\",\"LGA\",22.00,17.00,0.00,\"\",0.00,178.00,141.00,1096.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,27,\"DL\",\"1356\",\"BUF\",\"DTW\",-2.00,-11.00,0.00,\"\",0.00,62.00,42.00,241.00,,,,,,\n2015,5,27,\"DL\",\"1359\",\"MCO\",\"LGA\",43.00,37.00,0.00,\"\",0.00,157.00,128.00,950.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,27,\"DL\",\"1370\",\"ATL\",\"ROC\",2.00,9.00,0.00,\"\",0.00,132.00,90.00,749.00,,,,,,\n2015,5,27,\"DL\",\"1370\",\"ROC\",\"ATL\",7.00,13.00,0.00,\"\",0.00,140.00,115.00,749.00,,,,,,\n2015,5,27,\"DL\",\"1372\",\"DTW\",\"BUF\",78.00,78.00,0.00,\"\",0.00,66.00,41.00,241.00,78.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"1383\",\"LGA\",\"ATL\",14.00,-6.00,0.00,\"\",0.00,148.00,111.00,762.00,,,,,,\n2015,5,27,\"DL\",\"1386\",\"ATL\",\"LGA\",2.00,-8.00,0.00,\"\",0.00,124.00,102.00,762.00,,,,,,\n2015,5,27,\"DL\",\"1394\",\"ATL\",\"JFK\",114.00,127.00,0.00,\"\",0.00,166.00,100.00,760.00,0.00,0.00,116.00,0.00,11.00,\n2015,5,27,\"DL\",\"1419\",\"ATL\",\"JFK\",81.00,78.00,0.00,\"\",0.00,152.00,103.00,760.00,0.00,0.00,78.00,0.00,0.00,\n2015,5,27,\"DL\",\"1428\",\"LGA\",\"ATL\",-6.00,-3.00,0.00,\"\",0.00,161.00,112.00,762.00,,,,,,\n2015,5,27,\"DL\",\"1447\",\"LGA\",\"ATL\",-7.00,-13.00,0.00,\"\",0.00,138.00,110.00,762.00,,,,,,\n2015,5,27,\"DL\",\"1473\",\"SEA\",\"JFK\",39.00,34.00,0.00,\"\",0.00,325.00,294.00,2422.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,27,\"DL\",\"1486\",\"ATL\",\"LGA\",10.00,5.00,0.00,\"\",0.00,134.00,103.00,762.00,,,,,,\n2015,5,27,\"DL\",\"1487\",\"ATL\",\"JFK\",9.00,-3.00,0.00,\"\",0.00,132.00,103.00,760.00,,,,,,\n2015,5,27,\"DL\",\"1496\",\"MSP\",\"LGA\",63.00,54.00,0.00,\"\",0.00,157.00,129.00,1020.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,27,\"DL\",\"1498\",\"FLL\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,169.00,143.00,1076.00,,,,,,\n2015,5,27,\"DL\",\"1503\",\"FLL\",\"LGA\",-3.00,17.00,0.00,\"\",0.00,201.00,136.00,1076.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,27,\"DL\",\"1514\",\"LGA\",\"FLL\",-10.00,-14.00,0.00,\"\",0.00,185.00,148.00,1076.00,,,,,,\n2015,5,27,\"DL\",\"1515\",\"ATL\",\"ALB\",-1.00,-26.00,0.00,\"\",0.00,122.00,106.00,853.00,,,,,,\n2015,5,27,\"DL\",\"1526\",\"MCO\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,147.00,128.00,950.00,,,,,,\n2015,5,27,\"DL\",\"1542\",\"SEA\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,299.00,282.00,2422.00,,,,,,\n2015,5,27,\"DL\",\"1543\",\"ATL\",\"ALB\",-2.00,-24.00,0.00,\"\",0.00,122.00,105.00,853.00,,,,,,\n2015,5,27,\"DL\",\"1543\",\"ALB\",\"ATL\",-5.00,6.00,0.00,\"\",0.00,173.00,129.00,853.00,,,,,,\n2015,5,27,\"DL\",\"1548\",\"LGA\",\"DTW\",104.00,181.00,0.00,\"\",0.00,197.00,105.00,502.00,0.00,0.00,181.00,0.00,0.00,\n2015,5,27,\"DL\",\"1560\",\"MSY\",\"LGA\",31.00,29.00,0.00,\"\",0.00,184.00,158.00,1183.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,27,\"DL\",\"1562\",\"BOS\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,78.00,50.00,187.00,,,,,,\n2015,5,27,\"DL\",\"1566\",\"LGA\",\"PBI\",91.00,66.00,0.00,\"\",0.00,158.00,137.00,1035.00,66.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"1583\",\"SFO\",\"JFK\",100.00,82.00,0.00,\"\",0.00,331.00,305.00,2586.00,0.00,0.00,82.00,0.00,0.00,\n2015,5,27,\"DL\",\"1584\",\"ATL\",\"ROC\",-5.00,-27.00,0.00,\"\",0.00,111.00,94.00,749.00,,,,,,\n2015,5,27,\"DL\",\"1584\",\"ROC\",\"ATL\",-2.00,-9.00,0.00,\"\",0.00,128.00,106.00,749.00,,,,,,\n2015,5,27,\"DL\",\"1586\",\"ATL\",\"LGA\",42.00,16.00,0.00,\"\",0.00,118.00,97.00,762.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,27,\"DL\",\"1596\",\"MSP\",\"LGA\",97.00,75.00,0.00,\"\",0.00,143.00,129.00,1020.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,27,\"DL\",\"1628\",\"LGA\",\"DTW\",50.00,77.00,0.00,\"\",0.00,152.00,108.00,502.00,0.00,0.00,27.00,0.00,50.00,\n2015,5,27,\"DL\",\"1644\",\"FLL\",\"JFK\",-6.00,-40.00,0.00,\"\",0.00,153.00,135.00,1069.00,,,,,,\n2015,5,27,\"DL\",\"1647\",\"LGA\",\"ATL\",169.00,155.00,0.00,\"\",0.00,138.00,113.00,762.00,0.00,0.00,0.00,0.00,155.00,\n2015,5,27,\"DL\",\"1660\",\"MIA\",\"LGA\",23.00,123.00,0.00,\"\",0.00,286.00,226.00,1096.00,0.00,0.00,123.00,0.00,0.00,\n2015,5,27,\"DL\",\"1671\",\"MIA\",\"JFK\",-1.00,-1.00,0.00,\"\",0.00,187.00,140.00,1089.00,,,,,,\n2015,5,27,\"DL\",\"1672\",\"ATL\",\"BUF\",-3.00,1.00,0.00,\"\",0.00,123.00,90.00,712.00,,,,,,\n2015,5,27,\"DL\",\"1672\",\"BUF\",\"ATL\",-3.00,1.00,0.00,\"\",0.00,132.00,111.00,712.00,,,,,,\n2015,5,27,\"DL\",\"1685\",\"LGA\",\"MCO\",-6.00,-26.00,0.00,\"\",0.00,155.00,133.00,950.00,,,,,,\n2015,5,27,\"DL\",\"1697\",\"LGA\",\"ATL\",310.00,283.00,0.00,\"\",0.00,131.00,100.00,762.00,0.00,0.00,0.00,0.00,283.00,\n2015,5,27,\"DL\",\"1728\",\"LAS\",\"JFK\",36.00,20.00,0.00,\"\",0.00,285.00,267.00,2248.00,7.00,0.00,0.00,0.00,13.00,\n2015,5,27,\"DL\",\"1750\",\"ATL\",\"JFK\",25.00,22.00,0.00,\"\",0.00,146.00,100.00,760.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,27,\"DL\",\"1762\",\"LAX\",\"JFK\",83.00,103.00,0.00,\"\",0.00,355.00,298.00,2475.00,0.00,0.00,103.00,0.00,0.00,\n2015,5,27,\"DL\",\"1779\",\"LGA\",\"MSY\",-2.00,-10.00,0.00,\"\",0.00,191.00,167.00,1183.00,,,,,,\n2015,5,27,\"DL\",\"1786\",\"ATL\",\"LGA\",40.00,34.00,0.00,\"\",0.00,135.00,103.00,762.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,27,\"DL\",\"1796\",\"LGA\",\"MSP\",3.00,85.00,0.00,\"\",0.00,280.00,157.00,1020.00,0.00,0.00,85.00,0.00,0.00,\n2015,5,28,\"DL\",\"1356\",\"BUF\",\"DTW\",-6.00,-20.00,0.00,\"\",0.00,57.00,38.00,241.00,,,,,,\n2015,5,28,\"DL\",\"1359\",\"MCO\",\"LGA\",-6.00,-27.00,0.00,\"\",0.00,142.00,122.00,950.00,,,,,,\n2015,5,28,\"DL\",\"1370\",\"ATL\",\"ROC\",-6.00,-14.00,0.00,\"\",0.00,117.00,99.00,749.00,,,,,,\n2015,5,28,\"DL\",\"1370\",\"ROC\",\"ATL\",-9.00,-2.00,0.00,\"\",0.00,141.00,121.00,749.00,,,,,,\n2015,5,28,\"DL\",\"1372\",\"DTW\",\"BUF\",4.00,0.00,0.00,\"\",0.00,62.00,41.00,241.00,,,,,,\n2015,5,28,\"DL\",\"1383\",\"LGA\",\"ATL\",65.00,51.00,0.00,\"\",0.00,154.00,116.00,762.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,28,\"DL\",\"1386\",\"ATL\",\"LGA\",-2.00,7.00,0.00,\"\",0.00,143.00,102.00,762.00,,,,,,\n2015,5,28,\"DL\",\"1394\",\"ATL\",\"JFK\",30.00,42.00,0.00,\"\",0.00,165.00,129.00,760.00,0.00,30.00,12.00,0.00,0.00,\n2015,5,28,\"DL\",\"1419\",\"ATL\",\"JFK\",67.00,52.00,0.00,\"\",0.00,140.00,108.00,760.00,0.00,7.00,0.00,0.00,45.00,\n2015,5,28,\"DL\",\"1428\",\"LGA\",\"ATL\",-3.00,-8.00,0.00,\"\",0.00,153.00,114.00,762.00,,,,,,\n2015,5,28,\"DL\",\"1447\",\"LGA\",\"ATL\",-2.00,-17.00,0.00,\"\",0.00,129.00,110.00,762.00,,,,,,\n2015,5,28,\"DL\",\"1473\",\"SEA\",\"JFK\",-1.00,-2.00,0.00,\"\",0.00,329.00,290.00,2422.00,,,,,,\n2015,5,28,\"DL\",\"1486\",\"ATL\",\"LGA\",1.00,-12.00,0.00,\"\",0.00,126.00,106.00,762.00,,,,,,\n2015,5,28,\"DL\",\"1487\",\"ATL\",\"JFK\",18.00,-11.00,0.00,\"\",0.00,115.00,100.00,760.00,,,,,,\n2015,5,28,\"DL\",\"1496\",\"MSP\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,151.00,132.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"1498\",\"FLL\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,165.00,146.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"1503\",\"FLL\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,167.00,140.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"1514\",\"LGA\",\"FLL\",30.00,9.00,0.00,\"\",0.00,168.00,142.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"1515\",\"ATL\",\"ALB\",20.00,1.00,0.00,\"\",0.00,128.00,113.00,853.00,,,,,,\n2015,5,28,\"DL\",\"1526\",\"MCO\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,154.00,129.00,950.00,,,,,,\n2015,5,28,\"DL\",\"1542\",\"SEA\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,318.00,289.00,2422.00,,,,,,\n2015,5,28,\"DL\",\"1543\",\"ATL\",\"ALB\",-2.00,-16.00,0.00,\"\",0.00,130.00,106.00,853.00,,,,,,\n2015,5,28,\"DL\",\"1543\",\"ALB\",\"ATL\",-4.00,8.00,0.00,\"\",0.00,174.00,144.00,853.00,,,,,,\n2015,5,28,\"DL\",\"1548\",\"LGA\",\"DTW\",-7.00,-8.00,0.00,\"\",0.00,119.00,82.00,502.00,,,,,,\n2015,5,28,\"DL\",\"1560\",\"MSY\",\"LGA\",3.00,8.00,0.00,\"\",0.00,191.00,170.00,1183.00,,,,,,\n2015,5,28,\"DL\",\"1562\",\"BOS\",\"JFK\",71.00,59.00,0.00,\"\",0.00,67.00,41.00,187.00,33.00,0.00,0.00,0.00,26.00,\n2015,5,28,\"DL\",\"1566\",\"LGA\",\"PBI\",-7.00,-23.00,0.00,\"\",0.00,167.00,137.00,1035.00,,,,,,\n2015,5,28,\"DL\",\"1583\",\"SFO\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,328.00,303.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"1584\",\"ATL\",\"ROC\",0.00,-8.00,0.00,\"\",0.00,125.00,95.00,749.00,,,,,,\n2015,5,28,\"DL\",\"1584\",\"ROC\",\"ATL\",56.00,47.00,0.00,\"\",0.00,126.00,106.00,749.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,28,\"DL\",\"1586\",\"ATL\",\"LGA\",30.00,37.00,0.00,\"\",0.00,151.00,102.00,762.00,30.00,0.00,7.00,0.00,0.00,\n2015,5,28,\"DL\",\"1596\",\"MSP\",\"LGA\",0.00,-24.00,0.00,\"\",0.00,141.00,124.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"1628\",\"LGA\",\"DTW\",-2.00,-21.00,0.00,\"\",0.00,106.00,80.00,502.00,,,,,,\n2015,5,28,\"DL\",\"1644\",\"FLL\",\"JFK\",-5.00,-27.00,0.00,\"\",0.00,165.00,143.00,1069.00,,,,,,\n2015,5,28,\"DL\",\"1647\",\"LGA\",\"ATL\",-1.00,-19.00,0.00,\"\",0.00,134.00,107.00,762.00,,,,,,\n2015,5,28,\"DL\",\"1660\",\"MIA\",\"LGA\",19.00,11.00,0.00,\"\",0.00,178.00,148.00,1096.00,,,,,,\n2015,5,28,\"DL\",\"1671\",\"MIA\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,168.00,146.00,1089.00,,,,,,\n2015,5,28,\"DL\",\"1672\",\"ATL\",\"BUF\",-4.00,-6.00,0.00,\"\",0.00,117.00,91.00,712.00,,,,,,\n2015,5,28,\"DL\",\"1672\",\"BUF\",\"ATL\",-4.00,-9.00,0.00,\"\",0.00,123.00,106.00,712.00,,,,,,\n2015,5,28,\"DL\",\"1685\",\"LGA\",\"MCO\",-5.00,-9.00,0.00,\"\",0.00,171.00,133.00,950.00,,,,,,\n2015,5,28,\"DL\",\"1697\",\"LGA\",\"ATL\",107.00,109.00,0.00,\"\",0.00,160.00,103.00,762.00,5.00,0.00,2.00,0.00,102.00,\n2015,5,28,\"DL\",\"1728\",\"LAS\",\"JFK\",22.00,6.00,0.00,\"\",0.00,285.00,260.00,2248.00,,,,,,\n2015,5,28,\"DL\",\"1750\",\"ATL\",\"JFK\",68.00,46.00,0.00,\"\",0.00,127.00,106.00,760.00,0.00,46.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"1762\",\"LAX\",\"JFK\",-6.00,18.00,0.00,\"\",0.00,359.00,291.00,2475.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,28,\"DL\",\"1779\",\"LGA\",\"MSY\",0.00,-2.00,0.00,\"\",0.00,197.00,166.00,1183.00,,,,,,\n2015,5,28,\"DL\",\"1786\",\"ATL\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,146.00,106.00,762.00,,,,,,\n2015,5,28,\"DL\",\"1796\",\"LGA\",\"MSP\",-1.00,-22.00,0.00,\"\",0.00,177.00,151.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"1830\",\"SLC\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,259.00,240.00,1990.00,,,,,,\n2015,5,28,\"DL\",\"1841\",\"SJU\",\"JFK\",11.00,-14.00,0.00,\"\",0.00,222.00,202.00,1598.00,,,,,,\n2015,5,28,\"DL\",\"1848\",\"DTW\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,105.00,84.00,502.00,,,,,,\n2015,5,28,\"DL\",\"1849\",\"LGA\",\"ATL\",150.00,114.00,0.00,\"\",0.00,122.00,101.00,762.00,0.00,0.00,0.00,0.00,114.00,\n2015,5,28,\"DL\",\"1851\",\"CHS\",\"JFK\",50.00,43.00,0.00,\"\",0.00,117.00,88.00,636.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,28,\"DL\",\"1875\",\"LGA\",\"TPA\",44.00,43.00,0.00,\"\",0.00,179.00,137.00,1010.00,43.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"1879\",\"LGA\",\"FLL\",-4.00,-15.00,0.00,\"\",0.00,176.00,149.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"1885\",\"LGA\",\"MCO\",-1.00,-10.00,0.00,\"\",0.00,171.00,129.00,950.00,,,,,,\n2015,5,28,\"DL\",\"1886\",\"ATL\",\"LGA\",174.00,150.00,0.00,\"\",0.00,126.00,98.00,762.00,0.00,150.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"1897\",\"LGA\",\"MCO\",-5.00,-25.00,0.00,\"\",0.00,154.00,128.00,950.00,,,,,,\n2015,5,28,\"DL\",\"1902\",\"LGA\",\"PBI\",0.00,-12.00,0.00,\"\",0.00,172.00,145.00,1035.00,,,,,,\n2015,5,28,\"DL\",\"1917\",\"MIA\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,177.00,142.00,1096.00,,,,,,\n2015,5,28,\"DL\",\"1919\",\"LGA\",\"MSP\",-5.00,-16.00,0.00,\"\",0.00,171.00,149.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"1930\",\"LGA\",\"MIA\",-5.00,-6.00,0.00,\"\",0.00,197.00,149.00,1096.00,,,,,,\n2015,5,28,\"DL\",\"1935\",\"LGA\",\"TPA\",-7.00,-7.00,0.00,\"\",0.00,182.00,145.00,1010.00,,,,,,\n2015,5,28,\"DL\",\"1947\",\"FLL\",\"JFK\",-10.00,-19.00,0.00,\"\",0.00,174.00,143.00,1069.00,,,,,,\n2015,5,28,\"DL\",\"1948\",\"DTW\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,100.00,74.00,502.00,,,,,,\n2015,5,28,\"DL\",\"1949\",\"TPA\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,153.00,131.00,1010.00,,,,,,\n2015,5,28,\"DL\",\"1953\",\"LGA\",\"FLL\",-5.00,-14.00,0.00,\"\",0.00,185.00,145.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"1958\",\"PBI\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,168.00,142.00,1035.00,,,,,,\n2015,5,28,\"DL\",\"1969\",\"BUF\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,80.00,61.00,301.00,,,,,,\n2015,5,28,\"DL\",\"1972\",\"AUS\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,219.00,199.00,1521.00,,,,,,\n2015,5,28,\"DL\",\"1982\",\"LGA\",\"MIA\",-5.00,-14.00,0.00,\"\",0.00,187.00,144.00,1096.00,,,,,,\n2015,5,28,\"DL\",\"1985\",\"ALB\",\"DTW\",-2.00,-5.00,0.00,\"\",0.00,98.00,74.00,489.00,,,,,,\n2015,5,28,\"DL\",\"1986\",\"ATL\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,144.00,108.00,762.00,,,,,,\n2015,5,28,\"DL\",\"1994\",\"PHX\",\"JFK\",6.00,26.00,0.00,\"\",0.00,312.00,269.00,2153.00,6.00,0.00,20.00,0.00,0.00,\n2015,5,28,\"DL\",\"1996\",\"MSP\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,161.00,134.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"2003\",\"LGA\",\"MIA\",-1.00,-15.00,0.00,\"\",0.00,173.00,153.00,1096.00,,,,,,\n2015,5,26,\"DL\",\"2785\",\"JFK\",\"CHS\",10.00,-11.00,0.00,\"\",0.00,115.00,89.00,636.00,,,,,,\n2015,5,27,\"DL\",\"42\",\"MIA\",\"JFK\",73.00,92.00,0.00,\"\",0.00,208.00,146.00,1089.00,0.00,0.00,92.00,0.00,0.00,\n2015,5,27,\"DL\",\"208\",\"JFK\",\"MCO\",303.00,262.00,0.00,\"\",0.00,146.00,126.00,944.00,0.00,0.00,262.00,0.00,0.00,\n2015,5,27,\"DL\",\"221\",\"LGA\",\"ATL\",22.00,15.00,0.00,\"\",0.00,158.00,115.00,762.00,5.00,0.00,0.00,0.00,10.00,\n2015,5,27,\"DL\",\"245\",\"JFK\",\"SLC\",61.00,63.00,0.00,\"\",0.00,330.00,281.00,1990.00,61.00,0.00,2.00,0.00,0.00,\n2015,5,27,\"DL\",\"326\",\"SJU\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,223.00,208.00,1598.00,,,,,,\n2015,5,27,\"DL\",\"332\",\"SJU\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,233.00,203.00,1598.00,,,,,,\n2015,5,27,\"DL\",\"333\",\"MSP\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,148.00,126.00,1020.00,,,,,,\n2015,5,27,\"DL\",\"342\",\"SFO\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,329.00,304.00,2586.00,,,,,,\n2015,5,27,\"DL\",\"347\",\"LGA\",\"ATL\",13.00,-1.00,0.00,\"\",0.00,144.00,120.00,762.00,,,,,,\n2015,5,27,\"DL\",\"348\",\"SJU\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,233.00,210.00,1598.00,,,,,,\n2015,5,27,\"DL\",\"350\",\"LGA\",\"ATL\",-3.00,2.00,0.00,\"\",0.00,158.00,115.00,762.00,,,,,,\n2015,5,27,\"DL\",\"400\",\"PDX\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,310.00,293.00,2454.00,,,,,,\n2015,5,27,\"DL\",\"401\",\"AUS\",\"JFK\",107.00,135.00,0.00,\"\",0.00,267.00,187.00,1521.00,3.00,0.00,130.00,0.00,2.00,\n2015,5,27,\"DL\",\"403\",\"PDX\",\"JFK\",25.00,25.00,0.00,\"\",0.00,334.00,293.00,2454.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,27,\"DL\",\"407\",\"MCO\",\"JFK\",248.00,240.00,0.00,\"\",0.00,161.00,123.00,944.00,0.00,0.00,240.00,0.00,0.00,\n2015,5,27,\"DL\",\"410\",\"MSP\",\"JFK\",240.00,275.00,0.00,\"\",0.00,202.00,168.00,1029.00,0.00,0.00,204.00,0.00,71.00,\n2015,5,27,\"DL\",\"412\",\"LAX\",\"JFK\",28.00,38.00,0.00,\"\",0.00,349.00,307.00,2475.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,27,\"DL\",\"413\",\"JFK\",\"PDX\",-5.00,-21.00,0.00,\"\",0.00,354.00,311.00,2454.00,,,,,,\n2015,5,27,\"DL\",\"414\",\"SFO\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,334.00,312.00,2586.00,,,,,,\n2015,5,27,\"DL\",\"415\",\"JFK\",\"SFO\",-1.00,91.00,0.00,\"\",0.00,500.00,388.00,2586.00,0.00,0.00,91.00,0.00,0.00,\n2015,5,27,\"DL\",\"418\",\"SEA\",\"JFK\",-2.00,11.00,0.00,\"\",0.00,341.00,307.00,2422.00,,,,,,\n2015,5,27,\"DL\",\"419\",\"JFK\",\"SEA\",108.00,183.00,0.00,\"\",0.00,454.00,321.00,2422.00,108.00,0.00,75.00,0.00,0.00,\n2015,5,27,\"DL\",\"420\",\"JFK\",\"LAX\",10.00,88.00,0.00,\"\",0.00,476.00,352.00,2475.00,0.00,0.00,78.00,0.00,10.00,\n2015,5,27,\"DL\",\"422\",\"JFK\",\"LAX\",10.00,30.00,0.00,\"\",0.00,400.00,324.00,2475.00,10.00,0.00,20.00,0.00,0.00,\n2015,5,27,\"DL\",\"423\",\"JFK\",\"LAX\",-2.00,-24.00,0.00,\"\",0.00,351.00,324.00,2475.00,,,,,,\n2015,5,27,\"DL\",\"424\",\"JFK\",\"LAX\",-1.00,-11.00,0.00,\"\",0.00,360.00,321.00,2475.00,,,,,,\n2015,5,27,\"DL\",\"425\",\"JFK\",\"CHS\",-10.00,-29.00,0.00,\"\",0.00,120.00,92.00,636.00,,,,,,\n2015,5,27,\"DL\",\"426\",\"JFK\",\"MCO\",-5.00,-2.00,0.00,\"\",0.00,175.00,141.00,944.00,,,,,,\n2015,5,27,\"DL\",\"427\",\"JFK\",\"LAX\",104.00,79.00,0.00,\"\",0.00,363.00,329.00,2475.00,17.00,0.00,0.00,0.00,62.00,\n2015,5,27,\"DL\",\"428\",\"JFK\",\"ATL\",13.00,-2.00,0.00,\"\",0.00,154.00,114.00,760.00,,,,,,\n2015,5,27,\"DL\",\"430\",\"JFK\",\"SFO\",7.00,-4.00,0.00,\"\",0.00,373.00,350.00,2586.00,,,,,,\n2015,5,27,\"DL\",\"431\",\"JFK\",\"SFO\",14.00,40.00,0.00,\"\",0.00,435.00,356.00,2586.00,14.00,0.00,26.00,0.00,0.00,\n2015,5,27,\"DL\",\"433\",\"JFK\",\"AUS\",32.00,49.00,0.00,\"\",0.00,281.00,204.00,1521.00,32.00,0.00,17.00,0.00,0.00,\n2015,5,27,\"DL\",\"434\",\"JFK\",\"SFO\",-6.00,-17.00,0.00,\"\",0.00,393.00,340.00,2586.00,,,,,,\n2015,5,27,\"DL\",\"435\",\"JFK\",\"SFO\",16.00,36.00,0.00,\"\",0.00,424.00,357.00,2586.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,27,\"DL\",\"436\",\"JFK\",\"FLL\",262.00,249.00,0.00,\"\",0.00,171.00,143.00,1069.00,249.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"437\",\"JFK\",\"BOS\",-9.00,-28.00,0.00,\"\",0.00,58.00,36.00,187.00,,,,,,\n2015,5,27,\"DL\",\"438\",\"JFK\",\"MCO\",-5.00,-28.00,0.00,\"\",0.00,145.00,126.00,944.00,,,,,,\n2015,5,27,\"DL\",\"439\",\"JFK\",\"MSP\",-8.00,-35.00,0.00,\"\",0.00,165.00,140.00,1029.00,,,,,,\n2015,5,27,\"DL\",\"442\",\"JFK\",\"LAS\",-5.00,-20.00,0.00,\"\",0.00,335.00,292.00,2248.00,,,,,,\n2015,5,27,\"DL\",\"443\",\"JFK\",\"LAS\",10.00,77.00,0.00,\"\",0.00,421.00,317.00,2248.00,10.00,0.00,67.00,0.00,0.00,\n2015,5,27,\"DL\",\"444\",\"SLC\",\"JFK\",116.00,121.00,0.00,\"\",0.00,285.00,243.00,1990.00,0.00,0.00,121.00,0.00,0.00,\n2015,5,27,\"DL\",\"445\",\"JFK\",\"TPA\",-4.00,-12.00,0.00,\"\",0.00,163.00,143.00,1005.00,,,,,,\n2015,5,27,\"DL\",\"447\",\"JFK\",\"LAX\",28.00,66.00,0.00,\"\",0.00,428.00,347.00,2475.00,28.00,0.00,38.00,0.00,0.00,\n2015,5,27,\"DL\",\"448\",\"JFK\",\"SEA\",0.00,-25.00,0.00,\"\",0.00,335.00,302.00,2422.00,,,,,,\n2015,5,27,\"DL\",\"449\",\"JFK\",\"SJU\",-6.00,-19.00,0.00,\"\",0.00,221.00,189.00,1598.00,,,,,,\n2015,5,27,\"DL\",\"451\",\"JFK\",\"SJU\",-1.00,-11.00,0.00,\"\",0.00,232.00,193.00,1598.00,,,,,,\n2015,5,27,\"DL\",\"454\",\"JFK\",\"ATL\",-9.00,-17.00,0.00,\"\",0.00,144.00,112.00,760.00,,,,,,\n2015,5,27,\"DL\",\"456\",\"JFK\",\"SAN\",152.00,95.00,0.00,\"\",0.00,321.00,297.00,2446.00,95.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"458\",\"JFK\",\"SEA\",-6.00,-30.00,0.00,\"\",0.00,339.00,303.00,2422.00,,,,,,\n2015,5,27,\"DL\",\"459\",\"JFK\",\"SAN\",-3.00,-14.00,0.00,\"\",0.00,364.00,320.00,2446.00,,,,,,\n2015,5,27,\"DL\",\"460\",\"JFK\",\"SLC\",131.00,181.00,0.00,\"\",0.00,375.00,281.00,1990.00,131.00,0.00,50.00,0.00,0.00,\n2015,5,27,\"DL\",\"462\",\"JFK\",\"SAN\",37.00,114.00,0.00,\"\",0.00,450.00,341.00,2446.00,0.00,0.00,114.00,0.00,0.00,\n2015,5,27,\"DL\",\"463\",\"JFK\",\"PIT\",11.00,114.00,0.00,\"\",0.00,224.00,82.00,340.00,11.00,0.00,103.00,0.00,0.00,\n2015,5,27,\"DL\",\"464\",\"JFK\",\"MIA\",-8.00,-13.00,0.00,\"\",0.00,173.00,147.00,1089.00,,,,,,\n2015,5,27,\"DL\",\"465\",\"JFK\",\"STT\",-9.00,-30.00,0.00,\"\",0.00,225.00,185.00,1623.00,,,,,,\n2015,5,27,\"DL\",\"466\",\"SLC\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,281.00,247.00,1990.00,,,,,,\n2015,5,27,\"DL\",\"468\",\"SFO\",\"JFK\",-5.00,-3.00,0.00,\"\",0.00,351.00,304.00,2586.00,,,,,,\n2015,5,27,\"DL\",\"469\",\"JFK\",\"SFO\",-4.00,-32.00,0.00,\"\",0.00,362.00,333.00,2586.00,,,,,,\n2015,5,27,\"DL\",\"472\",\"JFK\",\"LAX\",5.00,14.00,0.00,\"\",0.00,394.00,327.00,2475.00,,,,,,\n2015,5,27,\"DL\",\"476\",\"LAX\",\"JFK\",0.00,4.00,0.00,\"\",0.00,342.00,307.00,2475.00,,,,,,\n2015,5,27,\"DL\",\"477\",\"JFK\",\"LAX\",2.00,11.00,0.00,\"\",0.00,404.00,325.00,2475.00,,,,,,\n2015,5,27,\"DL\",\"478\",\"ATL\",\"JFK\",231.00,251.00,0.00,\"\",0.00,172.00,111.00,760.00,0.00,0.00,239.00,0.00,12.00,\n2015,5,27,\"DL\",\"480\",\"JFK\",\"ATL\",4.00,1.00,0.00,\"\",0.00,150.00,114.00,760.00,,,,,,\n2015,5,27,\"DL\",\"482\",\"JFK\",\"SJU\",-6.00,-13.00,0.00,\"\",0.00,231.00,188.00,1598.00,,,,,,\n2015,5,27,\"DL\",\"483\",\"JFK\",\"SFO\",-1.00,62.00,0.00,\"\",0.00,471.00,374.00,2586.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,27,\"DL\",\"486\",\"JFK\",\"LAS\",-2.00,-10.00,0.00,\"\",0.00,324.00,293.00,2248.00,,,,,,\n2015,5,27,\"DL\",\"488\",\"JFK\",\"SJU\",-3.00,-14.00,0.00,\"\",0.00,216.00,185.00,1598.00,,,,,,\n2015,5,27,\"DL\",\"491\",\"JFK\",\"SLC\",-4.00,-14.00,0.00,\"\",0.00,295.00,268.00,1990.00,,,,,,\n2015,5,27,\"DL\",\"494\",\"JFK\",\"LAS\",29.00,18.00,0.00,\"\",0.00,345.00,300.00,2248.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"496\",\"JFK\",\"BOS\",-8.00,-16.00,0.00,\"\",0.00,75.00,48.00,187.00,,,,,,\n2015,5,27,\"DL\",\"497\",\"JFK\",\"PDX\",122.00,170.00,0.00,\"\",0.00,426.00,326.00,2454.00,110.00,0.00,48.00,0.00,12.00,\n2015,5,27,\"DL\",\"498\",\"JFK\",\"SEA\",155.00,119.00,0.00,\"\",0.00,346.00,313.00,2422.00,26.00,0.00,0.00,0.00,93.00,\n2015,5,27,\"DL\",\"499\",\"JFK\",\"SLC\",-4.00,-26.00,0.00,\"\",0.00,288.00,258.00,1990.00,,,,,,\n2015,5,27,\"DL\",\"511\",\"SJU\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,227.00,205.00,1598.00,,,,,,\n2015,5,27,\"DL\",\"527\",\"RSW\",\"JFK\",170.00,169.00,0.00,\"\",0.00,163.00,135.00,1074.00,0.00,0.00,169.00,0.00,0.00,\n2015,5,27,\"DL\",\"528\",\"LGA\",\"MSP\",-3.00,-21.00,0.00,\"\",0.00,167.00,141.00,1020.00,,,,,,\n2015,5,27,\"DL\",\"541\",\"LAS\",\"JFK\",11.00,-14.00,0.00,\"\",0.00,273.00,258.00,2248.00,,,,,,\n2015,5,27,\"DL\",\"544\",\"ALB\",\"ATL\",-7.00,-11.00,0.00,\"\",0.00,151.00,129.00,853.00,,,,,,\n2015,5,27,\"DL\",\"582\",\"DTW\",\"LGA\",173.00,167.00,0.00,\"\",0.00,101.00,81.00,502.00,0.00,0.00,99.00,0.00,68.00,\n2015,5,27,\"DL\",\"583\",\"LGA\",\"DTW\",-4.00,-10.00,0.00,\"\",0.00,108.00,82.00,502.00,,,,,,\n2015,5,27,\"DL\",\"662\",\"BUF\",\"MSP\",-4.00,-30.00,0.00,\"\",0.00,118.00,100.00,735.00,,,,,,\n2015,5,27,\"DL\",\"664\",\"TPA\",\"LGA\",76.00,132.00,0.00,\"\",0.00,219.00,197.00,1010.00,0.00,0.00,132.00,0.00,0.00,\n2015,5,27,\"DL\",\"665\",\"ATL\",\"ALB\",12.00,-3.00,0.00,\"\",0.00,125.00,106.00,853.00,,,,,,\n2015,5,27,\"DL\",\"665\",\"ALB\",\"ATL\",-1.00,-12.00,0.00,\"\",0.00,141.00,121.00,853.00,,,,,,\n2015,5,27,\"DL\",\"676\",\"STT\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,239.00,210.00,1623.00,,,,,,\n2015,5,27,\"DL\",\"714\",\"DTW\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,106.00,76.00,502.00,,,,,,\n2015,5,27,\"DL\",\"723\",\"ATL\",\"BUF\",-6.00,-33.00,0.00,\"\",0.00,100.00,86.00,712.00,,,,,,\n2015,5,27,\"DL\",\"723\",\"BUF\",\"ATL\",-3.00,-2.00,0.00,\"\",0.00,132.00,105.00,712.00,,,,,,\n2015,5,27,\"DL\",\"725\",\"ATL\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,123.00,103.00,762.00,,,,,,\n2015,5,27,\"DL\",\"729\",\"LAS\",\"JFK\",71.00,72.00,0.00,\"\",0.00,306.00,272.00,2248.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,27,\"DL\",\"731\",\"LGA\",\"DTW\",4.00,-6.00,0.00,\"\",0.00,104.00,81.00,502.00,,,,,,\n2015,5,27,\"DL\",\"742\",\"DTW\",\"ROC\",-6.00,-18.00,0.00,\"\",0.00,65.00,45.00,296.00,,,,,,\n2015,5,27,\"DL\",\"742\",\"ROC\",\"DTW\",-7.00,-19.00,0.00,\"\",0.00,69.00,55.00,296.00,,,,,,\n2015,5,27,\"DL\",\"750\",\"BOS\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,64.00,40.00,187.00,,,,,,\n2015,5,27,\"DL\",\"763\",\"BOS\",\"JFK\",-10.00,14.00,0.00,\"\",0.00,102.00,58.00,187.00,,,,,,\n2015,5,27,\"DL\",\"772\",\"PBI\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,170.00,137.00,1035.00,,,,,,\n2015,5,27,\"DL\",\"781\",\"LGA\",\"ATL\",-2.00,-16.00,0.00,\"\",0.00,148.00,119.00,762.00,,,,,,\n2015,5,27,\"DL\",\"782\",\"MIA\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,176.00,142.00,1089.00,,,,,,\n2015,5,27,\"DL\",\"787\",\"MCO\",\"JFK\",21.00,0.00,0.00,\"\",0.00,145.00,124.00,944.00,,,,,,\n2015,5,27,\"DL\",\"789\",\"MIA\",\"LGA\",25.00,32.00,0.00,\"\",0.00,195.00,160.00,1096.00,5.00,0.00,22.00,0.00,5.00,\n2015,5,27,\"DL\",\"791\",\"LAX\",\"JFK\",-3.00,5.00,0.00,\"\",0.00,338.00,296.00,2475.00,,,,,,\n2015,5,27,\"DL\",\"792\",\"PBI\",\"JFK\",47.00,33.00,0.00,\"\",0.00,153.00,130.00,1028.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,27,\"DL\",\"793\",\"BOS\",\"JFK\",141.00,137.00,0.00,\"\",0.00,90.00,43.00,187.00,0.00,0.00,137.00,0.00,0.00,\n2015,5,27,\"DL\",\"802\",\"ATL\",\"LGA\",318.00,320.00,0.00,\"\",0.00,147.00,103.00,762.00,0.00,0.00,320.00,0.00,0.00,\n2015,5,27,\"DL\",\"804\",\"LGA\",\"MSP\",288.00,257.00,0.00,\"\",0.00,163.00,141.00,1020.00,47.00,0.00,0.00,0.00,210.00,\n2015,5,27,\"DL\",\"856\",\"SAN\",\"JFK\",56.00,66.00,0.00,\"\",0.00,347.00,293.00,2446.00,56.00,0.00,10.00,0.00,0.00,\n2015,5,27,\"DL\",\"871\",\"MSP\",\"LGA\",211.00,202.00,0.00,\"\",0.00,155.00,136.00,1020.00,0.00,0.00,202.00,0.00,0.00,\n2015,5,27,\"DL\",\"874\",\"LGA\",\"MIA\",119.00,90.00,0.00,\"\",0.00,176.00,147.00,1096.00,0.00,0.00,0.00,0.00,90.00,\n2015,5,27,\"DL\",\"878\",\"RSW\",\"LGA\",-3.00,0.00,0.00,\"\",0.00,175.00,141.00,1080.00,,,,,,\n2015,5,27,\"DL\",\"884\",\"LGA\",\"DEN\",47.00,75.00,0.00,\"\",0.00,302.00,220.00,1620.00,2.00,0.00,28.00,0.00,45.00,\n2015,5,27,\"DL\",\"889\",\"MSP\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,149.00,132.00,1020.00,,,,,,\n2015,5,27,\"DL\",\"904\",\"LGA\",\"ATL\",-1.00,-5.00,0.00,\"\",0.00,145.00,112.00,762.00,,,,,,\n2015,5,27,\"DL\",\"906\",\"ATL\",\"LGA\",72.00,51.00,0.00,\"\",0.00,124.00,103.00,762.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,27,\"DL\",\"907\",\"ROC\",\"MSP\",-4.00,-31.00,0.00,\"\",0.00,124.00,109.00,783.00,,,,,,\n2015,5,27,\"DL\",\"909\",\"LGA\",\"MIA\",16.00,5.00,0.00,\"\",0.00,183.00,157.00,1096.00,,,,,,\n2015,5,27,\"DL\",\"910\",\"MCO\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,145.00,126.00,950.00,,,,,,\n2015,5,27,\"DL\",\"913\",\"DTW\",\"ROC\",257.00,250.00,0.00,\"\",0.00,68.00,50.00,296.00,22.00,0.00,0.00,0.00,228.00,\n2015,5,27,\"DL\",\"913\",\"ROC\",\"DTW\",247.00,233.00,0.00,\"\",0.00,67.00,50.00,296.00,0.00,0.00,0.00,0.00,233.00,\n2015,5,27,\"DL\",\"928\",\"DEN\",\"LGA\",-1.00,-27.00,0.00,\"\",0.00,210.00,190.00,1620.00,,,,,,\n2015,5,27,\"DL\",\"939\",\"MCO\",\"LGA\",122.00,114.00,0.00,\"\",0.00,155.00,127.00,950.00,5.00,0.00,81.00,0.00,28.00,\n2015,5,27,\"DL\",\"2665\",\"BOS\",\"LGA\",36.00,39.00,0.00,\"\",0.00,78.00,41.00,184.00,36.00,0.00,3.00,0.00,0.00,\n2015,5,27,\"DL\",\"2666\",\"LGA\",\"BOS\",-1.00,-4.00,0.00,\"\",0.00,63.00,41.00,184.00,,,,,,\n2015,5,27,\"DL\",\"2667\",\"BOS\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,75.00,46.00,184.00,,,,,,\n2015,5,27,\"DL\",\"2668\",\"LGA\",\"BOS\",-2.00,-2.00,0.00,\"\",0.00,71.00,49.00,184.00,,,,,,\n2015,5,27,\"DL\",\"2669\",\"BOS\",\"LGA\",-2.00,17.00,0.00,\"\",0.00,94.00,44.00,184.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,27,\"DL\",\"2670\",\"LGA\",\"BOS\",24.00,26.00,0.00,\"\",0.00,69.00,38.00,184.00,0.00,0.00,2.00,0.00,24.00,\n2015,5,27,\"DL\",\"2671\",\"BOS\",\"LGA\",-2.00,31.00,0.00,\"\",0.00,112.00,43.00,184.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,27,\"DL\",\"2672\",\"LGA\",\"BOS\",97.00,79.00,0.00,\"\",0.00,64.00,39.00,184.00,79.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"2673\",\"BOS\",\"LGA\",-4.00,20.00,0.00,\"\",0.00,97.00,44.00,184.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,27,\"DL\",\"2674\",\"LGA\",\"BOS\",39.00,14.00,0.00,\"\",0.00,58.00,37.00,184.00,,,,,,\n2015,5,27,\"DL\",\"2675\",\"BOS\",\"LGA\",75.00,62.00,0.00,\"\",0.00,62.00,43.00,184.00,0.00,0.00,0.00,0.00,62.00,\n2015,5,27,\"DL\",\"2676\",\"LGA\",\"BOS\",36.00,26.00,0.00,\"\",0.00,66.00,42.00,184.00,0.00,0.00,4.00,0.00,22.00,\n2015,5,27,\"DL\",\"2677\",\"BOS\",\"LGA\",19.00,6.00,0.00,\"\",0.00,62.00,42.00,184.00,,,,,,\n2015,5,27,\"DL\",\"2678\",\"LGA\",\"BOS\",15.00,-5.00,0.00,\"\",0.00,63.00,39.00,184.00,,,,,,\n2015,5,27,\"DL\",\"2679\",\"BOS\",\"LGA\",13.00,2.00,0.00,\"\",0.00,66.00,43.00,184.00,,,,,,\n2015,5,27,\"DL\",\"2680\",\"LGA\",\"BOS\",55.00,47.00,0.00,\"\",0.00,71.00,39.00,184.00,0.00,0.00,0.00,0.00,47.00,\n2015,5,27,\"DL\",\"2681\",\"BOS\",\"LGA\",20.00,21.00,0.00,\"\",0.00,78.00,42.00,184.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,27,\"DL\",\"2682\",\"LGA\",\"BOS\",-6.00,-2.00,0.00,\"\",0.00,76.00,39.00,184.00,,,,,,\n2015,5,27,\"DL\",\"2683\",\"BOS\",\"LGA\",60.00,59.00,0.00,\"\",0.00,73.00,44.00,184.00,0.00,0.00,25.00,0.00,34.00,\n2015,5,27,\"DL\",\"2684\",\"LGA\",\"BOS\",-2.00,-8.00,0.00,\"\",0.00,69.00,47.00,184.00,,,,,,\n2015,5,27,\"DL\",\"2685\",\"BOS\",\"LGA\",237.00,266.00,0.00,\"\",0.00,101.00,57.00,184.00,0.00,0.00,266.00,0.00,0.00,\n2015,5,27,\"DL\",\"2686\",\"LGA\",\"BOS\",39.00,67.00,0.00,\"\",0.00,110.00,41.00,184.00,21.00,0.00,28.00,0.00,18.00,\n2015,5,27,\"DL\",\"2687\",\"BOS\",\"LGA\",178.00,178.00,0.00,\"\",0.00,76.00,47.00,184.00,0.00,0.00,178.00,0.00,0.00,\n2015,5,27,\"DL\",\"2688\",\"LGA\",\"BOS\",6.00,52.00,0.00,\"\",0.00,129.00,42.00,184.00,6.00,0.00,46.00,0.00,0.00,\n2015,5,27,\"DL\",\"2689\",\"BOS\",\"LGA\",122.00,145.00,0.00,\"\",0.00,103.00,52.00,184.00,0.00,0.00,86.00,0.00,59.00,\n2015,5,27,\"DL\",\"2690\",\"LGA\",\"BOS\",267.00,256.00,0.00,\"\",0.00,74.00,41.00,184.00,8.00,0.00,0.00,0.00,248.00,\n2015,5,27,\"DL\",\"2691\",\"BOS\",\"LGA\",99.00,111.00,0.00,\"\",0.00,89.00,44.00,184.00,0.00,0.00,111.00,0.00,0.00,\n2015,5,27,\"DL\",\"2692\",\"LGA\",\"BOS\",178.00,163.00,0.00,\"\",0.00,64.00,38.00,184.00,4.00,0.00,0.00,0.00,159.00,\n2015,5,27,\"DL\",\"2693\",\"BOS\",\"LGA\",252.00,231.00,0.00,\"\",0.00,57.00,39.00,184.00,2.00,0.00,0.00,0.00,229.00,\n2015,5,27,\"DL\",\"2694\",\"LGA\",\"BOS\",153.00,141.00,0.00,\"\",0.00,66.00,42.00,184.00,7.00,0.00,0.00,0.00,134.00,\n2015,5,27,\"DL\",\"2696\",\"LGA\",\"BOS\",216.00,204.00,0.00,\"\",0.00,56.00,32.00,184.00,167.00,0.00,0.00,0.00,37.00,\n2015,5,27,\"DL\",\"2699\",\"BOS\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,67.00,43.00,184.00,,,,,,\n2015,5,27,\"DL\",\"2785\",\"JFK\",\"CHS\",8.00,-12.00,0.00,\"\",0.00,116.00,88.00,636.00,,,,,,\n2015,5,28,\"DL\",\"42\",\"MIA\",\"JFK\",25.00,33.00,0.00,\"\",0.00,197.00,174.00,1089.00,5.00,0.00,8.00,0.00,20.00,\n2015,5,28,\"DL\",\"208\",\"JFK\",\"MCO\",14.00,-9.00,0.00,\"\",0.00,164.00,124.00,944.00,,,,,,\n2015,5,28,\"DL\",\"221\",\"LGA\",\"ATL\",46.00,24.00,0.00,\"\",0.00,143.00,110.00,762.00,0.00,0.00,5.00,0.00,19.00,\n2015,5,28,\"DL\",\"234\",\"PIT\",\"JFK\",23.00,12.00,0.00,\"\",0.00,89.00,66.00,340.00,,,,,,\n2015,5,28,\"DL\",\"245\",\"JFK\",\"SLC\",13.00,25.00,0.00,\"\",0.00,340.00,273.00,1990.00,13.00,0.00,12.00,0.00,0.00,\n2015,5,28,\"DL\",\"326\",\"SJU\",\"JFK\",-3.00,-23.00,0.00,\"\",0.00,220.00,202.00,1598.00,,,,,,\n2015,5,28,\"DL\",\"332\",\"SJU\",\"JFK\",-7.00,-10.00,0.00,\"\",0.00,243.00,206.00,1598.00,,,,,,\n2015,5,28,\"DL\",\"333\",\"MSP\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,149.00,130.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"342\",\"SFO\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,313.00,291.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"347\",\"LGA\",\"ATL\",-5.00,2.00,0.00,\"\",0.00,165.00,121.00,762.00,,,,,,\n2015,5,28,\"DL\",\"348\",\"SJU\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,232.00,207.00,1598.00,,,,,,\n2015,5,28,\"DL\",\"350\",\"LGA\",\"ATL\",-1.00,2.00,0.00,\"\",0.00,156.00,113.00,762.00,,,,,,\n2015,5,28,\"DL\",\"400\",\"PDX\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,308.00,290.00,2454.00,,,,,,\n2015,5,28,\"DL\",\"401\",\"AUS\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,226.00,206.00,1521.00,,,,,,\n2015,5,28,\"DL\",\"403\",\"PDX\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,313.00,288.00,2454.00,,,,,,\n2015,5,28,\"DL\",\"407\",\"MCO\",\"JFK\",-4.00,-23.00,0.00,\"\",0.00,150.00,128.00,944.00,,,,,,\n2015,5,28,\"DL\",\"409\",\"JFK\",\"SJU\",-2.00,-19.00,0.00,\"\",0.00,230.00,196.00,1598.00,,,,,,\n2015,5,28,\"DL\",\"410\",\"MSP\",\"JFK\",-7.00,2.00,0.00,\"\",0.00,176.00,133.00,1029.00,,,,,,\n2015,5,28,\"DL\",\"412\",\"LAX\",\"JFK\",15.00,5.00,0.00,\"\",0.00,329.00,300.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"414\",\"SFO\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,336.00,293.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"415\",\"JFK\",\"SFO\",-2.00,-21.00,0.00,\"\",0.00,389.00,353.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"418\",\"SEA\",\"JFK\",-2.00,-4.00,0.00,\"\",0.00,326.00,282.00,2422.00,,,,,,\n2015,5,28,\"DL\",\"419\",\"JFK\",\"SEA\",21.00,4.00,0.00,\"\",0.00,362.00,331.00,2422.00,,,,,,\n2015,5,28,\"DL\",\"420\",\"JFK\",\"LAX\",-1.00,-47.00,0.00,\"\",0.00,352.00,314.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"422\",\"JFK\",\"LAX\",12.00,1.00,0.00,\"\",0.00,369.00,318.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"423\",\"JFK\",\"LAX\",-2.00,-32.00,0.00,\"\",0.00,343.00,319.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"424\",\"JFK\",\"LAX\",-5.00,-17.00,0.00,\"\",0.00,358.00,307.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"425\",\"JFK\",\"CHS\",75.00,58.00,0.00,\"\",0.00,122.00,86.00,636.00,58.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"426\",\"JFK\",\"MCO\",-2.00,-17.00,0.00,\"\",0.00,157.00,127.00,944.00,,,,,,\n2015,5,28,\"DL\",\"427\",\"JFK\",\"LAX\",0.00,-28.00,0.00,\"\",0.00,360.00,317.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"428\",\"JFK\",\"ATL\",51.00,34.00,0.00,\"\",0.00,152.00,113.00,760.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,28,\"DL\",\"430\",\"JFK\",\"SFO\",-5.00,-25.00,0.00,\"\",0.00,364.00,345.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"431\",\"JFK\",\"SFO\",-4.00,-20.00,0.00,\"\",0.00,393.00,353.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"433\",\"JFK\",\"AUS\",51.00,40.00,0.00,\"\",0.00,253.00,197.00,1521.00,40.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"434\",\"JFK\",\"SFO\",0.00,-21.00,0.00,\"\",0.00,383.00,356.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"435\",\"JFK\",\"SFO\",1.00,-1.00,0.00,\"\",0.00,402.00,337.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"436\",\"JFK\",\"FLL\",-8.00,-32.00,0.00,\"\",0.00,160.00,146.00,1069.00,,,,,,\n2015,5,28,\"DL\",\"437\",\"JFK\",\"BOS\",-4.00,-21.00,0.00,\"\",0.00,60.00,41.00,187.00,,,,,,\n2015,5,28,\"DL\",\"438\",\"JFK\",\"MCO\",-2.00,-18.00,0.00,\"\",0.00,152.00,132.00,944.00,,,,,,\n2015,5,28,\"DL\",\"439\",\"JFK\",\"MSP\",58.00,32.00,0.00,\"\",0.00,166.00,146.00,1029.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,28,\"DL\",\"440\",\"JFK\",\"SFO\",-4.00,-18.00,0.00,\"\",0.00,394.00,357.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"442\",\"JFK\",\"LAS\",98.00,72.00,0.00,\"\",0.00,324.00,287.00,2248.00,72.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"443\",\"JFK\",\"LAS\",-3.00,8.00,0.00,\"\",0.00,365.00,324.00,2248.00,,,,,,\n2015,5,28,\"DL\",\"444\",\"SLC\",\"JFK\",30.00,24.00,0.00,\"\",0.00,274.00,233.00,1990.00,0.00,24.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"445\",\"JFK\",\"TPA\",-3.00,-19.00,0.00,\"\",0.00,155.00,137.00,1005.00,,,,,,\n2015,5,28,\"DL\",\"447\",\"JFK\",\"LAX\",0.00,-12.00,0.00,\"\",0.00,378.00,325.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"448\",\"JFK\",\"SEA\",24.00,0.00,0.00,\"\",0.00,336.00,308.00,2422.00,,,,,,\n2015,5,28,\"DL\",\"451\",\"JFK\",\"SJU\",22.00,8.00,0.00,\"\",0.00,228.00,194.00,1598.00,,,,,,\n2015,5,28,\"DL\",\"453\",\"JFK\",\"SJU\",-6.00,-30.00,0.00,\"\",0.00,210.00,191.00,1598.00,,,,,,\n2015,5,28,\"DL\",\"454\",\"JFK\",\"ATL\",-2.00,-25.00,0.00,\"\",0.00,129.00,104.00,760.00,,,,,,\n2015,5,28,\"DL\",\"455\",\"JFK\",\"DEN\",-4.00,-21.00,0.00,\"\",0.00,265.00,219.00,1626.00,,,,,,\n2015,5,28,\"DL\",\"458\",\"JFK\",\"SEA\",-5.00,-30.00,0.00,\"\",0.00,338.00,309.00,2422.00,,,,,,\n2015,5,28,\"DL\",\"459\",\"JFK\",\"SAN\",-5.00,-25.00,0.00,\"\",0.00,355.00,316.00,2446.00,,,,,,\n2015,5,28,\"DL\",\"460\",\"JFK\",\"SLC\",7.00,-21.00,0.00,\"\",0.00,297.00,272.00,1990.00,,,,,,\n2015,5,28,\"DL\",\"462\",\"JFK\",\"SAN\",-2.00,-14.00,0.00,\"\",0.00,361.00,331.00,2446.00,,,,,,\n2015,5,28,\"DL\",\"463\",\"JFK\",\"PIT\",39.00,17.00,0.00,\"\",0.00,99.00,65.00,340.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"464\",\"JFK\",\"MIA\",13.00,22.00,0.00,\"\",0.00,187.00,166.00,1089.00,13.00,0.00,9.00,0.00,0.00,\n2015,5,28,\"DL\",\"465\",\"JFK\",\"STT\",17.00,0.00,0.00,\"\",0.00,229.00,191.00,1623.00,,,,,,\n2015,5,28,\"DL\",\"466\",\"SLC\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,253.00,237.00,1990.00,,,,,,\n2015,5,28,\"DL\",\"469\",\"JFK\",\"SFO\",0.00,-23.00,0.00,\"\",0.00,367.00,339.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"472\",\"JFK\",\"LAX\",5.00,-5.00,0.00,\"\",0.00,375.00,321.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"476\",\"LAX\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,327.00,292.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"477\",\"JFK\",\"LAX\",15.00,-9.00,0.00,\"\",0.00,371.00,331.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"478\",\"ATL\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,134.00,105.00,760.00,,,,,,\n2015,5,28,\"DL\",\"480\",\"JFK\",\"ATL\",-1.00,9.00,0.00,\"\",0.00,163.00,129.00,760.00,,,,,,\n2015,5,28,\"DL\",\"482\",\"JFK\",\"SJU\",9.00,10.00,0.00,\"\",0.00,239.00,199.00,1598.00,,,,,,\n2015,5,28,\"DL\",\"486\",\"JFK\",\"LAS\",-2.00,-25.00,0.00,\"\",0.00,309.00,287.00,2248.00,,,,,,\n2015,5,28,\"DL\",\"488\",\"JFK\",\"SJU\",-8.00,-21.00,0.00,\"\",0.00,214.00,195.00,1598.00,,,,,,\n2015,5,28,\"DL\",\"491\",\"JFK\",\"SLC\",9.00,-15.00,0.00,\"\",0.00,281.00,262.00,1990.00,,,,,,\n2015,5,28,\"DL\",\"494\",\"JFK\",\"LAS\",10.00,-8.00,0.00,\"\",0.00,338.00,292.00,2248.00,,,,,,\n2015,5,28,\"DL\",\"496\",\"JFK\",\"BOS\",43.00,31.00,0.00,\"\",0.00,71.00,41.00,187.00,0.00,0.00,0.00,0.00,31.00,\n2015,5,28,\"DL\",\"497\",\"JFK\",\"PDX\",-1.00,-28.00,0.00,\"\",0.00,351.00,329.00,2454.00,,,,,,\n2015,5,28,\"DL\",\"498\",\"JFK\",\"SEA\",32.00,21.00,0.00,\"\",0.00,371.00,324.00,2422.00,5.00,0.00,0.00,0.00,16.00,\n2015,5,28,\"DL\",\"499\",\"JFK\",\"SLC\",0.00,-10.00,0.00,\"\",0.00,300.00,275.00,1990.00,,,,,,\n2015,5,28,\"DL\",\"511\",\"SJU\",\"JFK\",-12.00,-20.00,0.00,\"\",0.00,241.00,206.00,1598.00,,,,,,\n2015,5,28,\"DL\",\"527\",\"RSW\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,151.00,138.00,1074.00,,,,,,\n2015,5,28,\"DL\",\"528\",\"LGA\",\"MSP\",-1.00,2.00,0.00,\"\",0.00,188.00,149.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"541\",\"LAS\",\"JFK\",1.00,15.00,0.00,\"\",0.00,312.00,270.00,2248.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,28,\"DL\",\"544\",\"ALB\",\"ATL\",-7.00,-21.00,0.00,\"\",0.00,141.00,125.00,853.00,,,,,,\n2015,5,28,\"DL\",\"582\",\"DTW\",\"LGA\",3.00,-2.00,0.00,\"\",0.00,102.00,70.00,502.00,,,,,,\n2015,5,28,\"DL\",\"583\",\"LGA\",\"DTW\",8.00,-6.00,0.00,\"\",0.00,100.00,83.00,502.00,,,,,,\n2015,5,28,\"DL\",\"662\",\"BUF\",\"MSP\",-4.00,-16.00,0.00,\"\",0.00,132.00,105.00,735.00,,,,,,\n2015,5,28,\"DL\",\"664\",\"TPA\",\"LGA\",36.00,28.00,0.00,\"\",0.00,155.00,129.00,1010.00,2.00,0.00,0.00,0.00,26.00,\n2015,5,28,\"DL\",\"665\",\"ATL\",\"ALB\",22.00,35.00,0.00,\"\",0.00,153.00,113.00,853.00,0.00,22.00,13.00,0.00,0.00,\n2015,5,28,\"DL\",\"665\",\"ALB\",\"ATL\",34.00,34.00,0.00,\"\",0.00,152.00,127.00,853.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,28,\"DL\",\"676\",\"STT\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,227.00,205.00,1623.00,,,,,,\n2015,5,28,\"DL\",\"707\",\"DTW\",\"ALB\",-5.00,-24.00,0.00,\"\",0.00,78.00,63.00,489.00,,,,,,\n2015,5,28,\"DL\",\"707\",\"ALB\",\"DTW\",-7.00,-23.00,0.00,\"\",0.00,94.00,79.00,489.00,,,,,,\n2015,5,28,\"DL\",\"714\",\"DTW\",\"LGA\",-2.00,14.00,0.00,\"\",0.00,122.00,73.00,502.00,,,,,,\n2015,5,28,\"DL\",\"715\",\"SFO\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,329.00,302.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"723\",\"ATL\",\"BUF\",20.00,-6.00,0.00,\"\",0.00,101.00,90.00,712.00,,,,,,\n2015,5,28,\"DL\",\"723\",\"BUF\",\"ATL\",-2.00,10.00,0.00,\"\",0.00,143.00,123.00,712.00,,,,,,\n2015,5,28,\"DL\",\"725\",\"ATL\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,121.00,102.00,762.00,,,,,,\n2015,5,28,\"DL\",\"729\",\"LAS\",\"JFK\",-3.00,0.00,0.00,\"\",0.00,308.00,269.00,2248.00,,,,,,\n2015,5,28,\"DL\",\"731\",\"LGA\",\"DTW\",0.00,-11.00,0.00,\"\",0.00,103.00,81.00,502.00,,,,,,\n2015,5,28,\"DL\",\"750\",\"BOS\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,84.00,44.00,187.00,,,,,,\n2015,5,28,\"DL\",\"763\",\"BOS\",\"JFK\",0.00,9.00,0.00,\"\",0.00,87.00,57.00,187.00,,,,,,\n2015,5,28,\"DL\",\"765\",\"DTW\",\"BUF\",-3.00,-7.00,0.00,\"\",0.00,61.00,43.00,241.00,,,,,,\n2015,5,28,\"DL\",\"765\",\"BUF\",\"DTW\",-4.00,-15.00,0.00,\"\",0.00,64.00,43.00,241.00,,,,,,\n2015,5,28,\"DL\",\"772\",\"PBI\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,164.00,137.00,1035.00,,,,,,\n2015,5,28,\"DL\",\"782\",\"MIA\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,176.00,147.00,1089.00,,,,,,\n2015,5,28,\"DL\",\"787\",\"MCO\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,149.00,126.00,944.00,,,,,,\n2015,5,28,\"DL\",\"789\",\"MIA\",\"LGA\",77.00,69.00,0.00,\"\",0.00,180.00,143.00,1096.00,69.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"791\",\"LAX\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,326.00,291.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"792\",\"PBI\",\"JFK\",-2.00,-2.00,0.00,\"\",0.00,167.00,136.00,1028.00,,,,,,\n2015,5,28,\"DL\",\"793\",\"BOS\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,84.00,54.00,187.00,,,,,,\n2015,5,28,\"DL\",\"802\",\"ATL\",\"LGA\",112.00,102.00,0.00,\"\",0.00,135.00,101.00,762.00,77.00,0.00,0.00,0.00,25.00,\n2015,5,28,\"DL\",\"804\",\"LGA\",\"MSP\",44.00,35.00,0.00,\"\",0.00,185.00,150.00,1020.00,17.00,0.00,0.00,0.00,18.00,\n2015,5,28,\"DL\",\"856\",\"SAN\",\"JFK\",-3.00,5.00,0.00,\"\",0.00,345.00,301.00,2446.00,,,,,,\n2015,5,28,\"DL\",\"871\",\"MSP\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,154.00,130.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"874\",\"LGA\",\"MIA\",-1.00,-18.00,0.00,\"\",0.00,188.00,149.00,1096.00,,,,,,\n2015,5,28,\"DL\",\"878\",\"RSW\",\"LGA\",-8.00,-15.00,0.00,\"\",0.00,165.00,140.00,1080.00,,,,,,\n2015,5,28,\"DL\",\"884\",\"LGA\",\"DEN\",-3.00,-21.00,0.00,\"\",0.00,256.00,231.00,1620.00,,,,,,\n2015,5,28,\"DL\",\"889\",\"MSP\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,151.00,131.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"904\",\"LGA\",\"ATL\",-2.00,-18.00,0.00,\"\",0.00,133.00,108.00,762.00,,,,,,\n2015,5,28,\"DL\",\"906\",\"ATL\",\"LGA\",53.00,30.00,0.00,\"\",0.00,122.00,101.00,762.00,0.00,0.00,0.00,0.00,30.00,\n2015,5,28,\"DL\",\"907\",\"ROC\",\"MSP\",58.00,51.00,0.00,\"\",0.00,144.00,111.00,783.00,51.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"909\",\"LGA\",\"MIA\",-2.00,-19.00,0.00,\"\",0.00,177.00,147.00,1096.00,,,,,,\n2015,5,28,\"DL\",\"910\",\"MCO\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,149.00,130.00,950.00,,,,,,\n2015,5,28,\"DL\",\"928\",\"DEN\",\"LGA\",33.00,8.00,0.00,\"\",0.00,211.00,186.00,1620.00,,,,,,\n2015,5,28,\"DL\",\"939\",\"MCO\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,152.00,129.00,950.00,,,,,,\n2015,5,28,\"DL\",\"964\",\"LGA\",\"ATL\",-1.00,11.00,0.00,\"\",0.00,158.00,104.00,762.00,,,,,,\n2015,5,28,\"DL\",\"965\",\"MCO\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,147.00,125.00,950.00,,,,,,\n2015,5,28,\"DL\",\"971\",\"LGA\",\"DEN\",16.00,17.00,0.00,\"\",0.00,268.00,221.00,1620.00,16.00,0.00,1.00,0.00,0.00,\n2015,5,28,\"DL\",\"986\",\"ATL\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,137.00,108.00,762.00,,,,,,\n2015,5,28,\"DL\",\"997\",\"DTW\",\"LGA\",-5.00,3.00,0.00,\"\",0.00,112.00,83.00,502.00,,,,,,\n2015,5,28,\"DL\",\"1086\",\"LGA\",\"ATL\",-4.00,-7.00,0.00,\"\",0.00,159.00,118.00,762.00,,,,,,\n2015,5,28,\"DL\",\"1088\",\"FLL\",\"LGA\",-9.00,-20.00,0.00,\"\",0.00,166.00,141.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"1109\",\"SEA\",\"JFK\",6.00,-12.00,0.00,\"\",0.00,317.00,295.00,2422.00,,,,,,\n2015,5,28,\"DL\",\"1111\",\"ATL\",\"ROC\",48.00,25.00,0.00,\"\",0.00,107.00,94.00,749.00,0.00,4.00,0.00,0.00,21.00,\n2015,5,28,\"DL\",\"1121\",\"PBI\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,167.00,134.00,1035.00,,,,,,\n2015,5,28,\"DL\",\"1131\",\"LGA\",\"FLL\",6.00,0.00,0.00,\"\",0.00,186.00,146.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"1145\",\"LGA\",\"DTW\",4.00,3.00,0.00,\"\",0.00,123.00,78.00,502.00,,,,,,\n2015,5,28,\"DL\",\"1155\",\"DTW\",\"ROC\",-3.00,-10.00,0.00,\"\",0.00,64.00,46.00,296.00,,,,,,\n2015,5,28,\"DL\",\"1159\",\"ATL\",\"BUF\",-2.00,-17.00,0.00,\"\",0.00,107.00,96.00,712.00,,,,,,\n2015,5,28,\"DL\",\"1159\",\"BUF\",\"ATL\",23.00,13.00,0.00,\"\",0.00,119.00,99.00,712.00,,,,,,\n2015,5,28,\"DL\",\"1162\",\"LAX\",\"JFK\",8.00,11.00,0.00,\"\",0.00,328.00,297.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"1174\",\"LGA\",\"PBI\",-3.00,-16.00,0.00,\"\",0.00,167.00,139.00,1035.00,,,,,,\n2015,5,28,\"DL\",\"1176\",\"ATL\",\"BUF\",117.00,106.00,0.00,\"\",0.00,119.00,90.00,712.00,0.00,5.00,0.00,0.00,101.00,\n2015,5,28,\"DL\",\"1176\",\"BUF\",\"ATL\",99.00,82.00,0.00,\"\",0.00,117.00,96.00,712.00,0.00,0.00,0.00,0.00,82.00,\n2015,5,28,\"DL\",\"1182\",\"MCO\",\"LGA\",2.00,-4.00,0.00,\"\",0.00,151.00,128.00,950.00,,,,,,\n2015,5,28,\"DL\",\"1186\",\"ATL\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,125.00,102.00,762.00,,,,,,\n2015,5,28,\"DL\",\"1214\",\"LGA\",\"ATL\",32.00,20.00,0.00,\"\",0.00,152.00,112.00,762.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,28,\"DL\",\"1227\",\"PHX\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,276.00,253.00,2153.00,,,,,,\n2015,5,28,\"DL\",\"1242\",\"LGA\",\"PBI\",-5.00,-11.00,0.00,\"\",0.00,178.00,140.00,1035.00,,,,,,\n2015,5,28,\"DL\",\"1262\",\"LAX\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,315.00,291.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"1264\",\"SLC\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,258.00,233.00,1990.00,,,,,,\n2015,5,28,\"DL\",\"1266\",\"BUF\",\"ATL\",-5.00,-3.00,0.00,\"\",0.00,124.00,106.00,712.00,,,,,,\n2015,5,28,\"DL\",\"1269\",\"LGA\",\"MIA\",16.00,20.00,0.00,\"\",0.00,201.00,146.00,1096.00,16.00,0.00,4.00,0.00,0.00,\n2015,5,28,\"DL\",\"1278\",\"MSP\",\"BUF\",3.00,-11.00,0.00,\"\",0.00,105.00,87.00,735.00,,,,,,\n2015,5,28,\"DL\",\"1286\",\"ATL\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,126.00,102.00,762.00,,,,,,\n2015,5,28,\"DL\",\"1288\",\"LGA\",\"FLL\",-3.00,0.00,0.00,\"\",0.00,198.00,150.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"1289\",\"LGA\",\"ATL\",42.00,36.00,0.00,\"\",0.00,156.00,111.00,762.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,28,\"DL\",\"1298\",\"LGA\",\"ATL\",16.00,8.00,0.00,\"\",0.00,153.00,119.00,762.00,,,,,,\n2015,5,28,\"DL\",\"1306\",\"DTW\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,100.00,74.00,502.00,,,,,,\n2015,5,28,\"DL\",\"1312\",\"TPA\",\"JFK\",-1.00,23.00,0.00,\"\",0.00,198.00,141.00,1005.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,28,\"DL\",\"1335\",\"MIA\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,169.00,144.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"782\",\"MIA\",\"JFK\",-15.00,-20.00,0.00,\"\",0.00,177.00,143.00,1089.00,,,,,,\n2015,5,29,\"DL\",\"787\",\"MCO\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,155.00,131.00,944.00,,,,,,\n2015,5,29,\"DL\",\"789\",\"MIA\",\"LGA\",1.00,-12.00,0.00,\"\",0.00,175.00,147.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"791\",\"LAX\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,318.00,296.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"792\",\"PBI\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,164.00,139.00,1028.00,,,,,,\n2015,5,29,\"DL\",\"793\",\"BOS\",\"JFK\",95.00,84.00,0.00,\"\",0.00,83.00,52.00,187.00,0.00,0.00,0.00,0.00,84.00,\n2015,5,29,\"DL\",\"802\",\"ATL\",\"LGA\",7.00,-8.00,0.00,\"\",0.00,130.00,105.00,762.00,,,,,,\n2015,5,29,\"DL\",\"804\",\"LGA\",\"MSP\",-6.00,-2.00,0.00,\"\",0.00,198.00,152.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"856\",\"SAN\",\"JFK\",-1.00,-23.00,0.00,\"\",0.00,315.00,294.00,2446.00,,,,,,\n2015,5,21,\"DL\",\"2240\",\"SFO\",\"JFK\",13.00,-14.00,0.00,\"\",0.00,311.00,295.00,2586.00,,,,,,\n2015,5,21,\"DL\",\"2248\",\"DTW\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,100.00,72.00,502.00,,,,,,\n2015,5,21,\"DL\",\"2262\",\"LAX\",\"JFK\",10.00,-18.00,0.00,\"\",0.00,306.00,276.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"2263\",\"JFK\",\"MIA\",-3.00,26.00,0.00,\"\",0.00,239.00,161.00,1089.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,21,\"DL\",\"2270\",\"LGA\",\"RSW\",5.00,-3.00,0.00,\"\",0.00,188.00,164.00,1080.00,,,,,,\n2015,5,21,\"DL\",\"2276\",\"MCO\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,149.00,124.00,944.00,,,,,,\n2015,5,21,\"DL\",\"2277\",\"JFK\",\"TPA\",-1.00,-14.00,0.00,\"\",0.00,180.00,142.00,1005.00,,,,,,\n2015,5,21,\"DL\",\"2280\",\"LGA\",\"TPA\",1.00,1.00,0.00,\"\",0.00,174.00,146.00,1010.00,,,,,,\n2015,5,21,\"DL\",\"2282\",\"LGA\",\"MCO\",-2.00,-11.00,0.00,\"\",0.00,167.00,135.00,950.00,,,,,,\n2015,5,21,\"DL\",\"2285\",\"LGA\",\"MCO\",-2.00,-1.00,0.00,\"\",0.00,164.00,135.00,950.00,,,,,,\n2015,5,21,\"DL\",\"2292\",\"JFK\",\"PBI\",-1.00,-22.00,0.00,\"\",0.00,166.00,137.00,1028.00,,,,,,\n2015,5,21,\"DL\",\"2296\",\"MSP\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,163.00,130.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"2301\",\"JFK\",\"SAT\",-4.00,-4.00,0.00,\"\",0.00,272.00,226.00,1587.00,,,,,,\n2015,5,21,\"DL\",\"2311\",\"JFK\",\"MIA\",-3.00,-9.00,0.00,\"\",0.00,200.00,148.00,1089.00,,,,,,\n2015,5,21,\"DL\",\"2312\",\"JFK\",\"DTW\",6.00,-21.00,0.00,\"\",0.00,113.00,83.00,509.00,,,,,,\n2015,5,21,\"DL\",\"2317\",\"PBI\",\"LGA\",-5.00,4.00,0.00,\"\",0.00,182.00,152.00,1035.00,,,,,,\n2015,5,21,\"DL\",\"2319\",\"LGA\",\"MSP\",-2.00,-32.00,0.00,\"\",0.00,165.00,149.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"2331\",\"LGA\",\"DTW\",-1.00,-9.00,0.00,\"\",0.00,116.00,79.00,502.00,,,,,,\n2015,5,21,\"DL\",\"2340\",\"JFK\",\"MCO\",1.00,-9.00,0.00,\"\",0.00,180.00,136.00,944.00,,,,,,\n2015,5,21,\"DL\",\"2349\",\"DTW\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,92.00,73.00,502.00,,,,,,\n2015,5,21,\"DL\",\"2350\",\"ATL\",\"JFK\",1.00,-1.00,0.00,\"\",0.00,133.00,103.00,760.00,,,,,,\n2015,5,21,\"DL\",\"2352\",\"LAS\",\"JFK\",0.00,-26.00,0.00,\"\",0.00,287.00,252.00,2248.00,,,,,,\n2015,5,21,\"DL\",\"2354\",\"JFK\",\"ATL\",-3.00,-24.00,0.00,\"\",0.00,146.00,113.00,760.00,,,,,,\n2015,5,21,\"DL\",\"2362\",\"LAX\",\"JFK\",12.00,-27.00,0.00,\"\",0.00,291.00,265.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"2382\",\"JFK\",\"FLL\",-4.00,11.00,0.00,\"\",0.00,216.00,157.00,1069.00,,,,,,\n2015,5,21,\"DL\",\"2386\",\"ATL\",\"LGA\",-1.00,-25.00,0.00,\"\",0.00,115.00,97.00,762.00,,,,,,\n2015,5,21,\"DL\",\"2390\",\"JFK\",\"ATL\",-4.00,-24.00,0.00,\"\",0.00,152.00,112.00,760.00,,,,,,\n2015,5,21,\"DL\",\"2395\",\"LGA\",\"PBI\",-4.00,-10.00,0.00,\"\",0.00,174.00,142.00,1035.00,,,,,,\n2015,5,21,\"DL\",\"2400\",\"JFK\",\"SAN\",1.00,24.00,0.00,\"\",0.00,396.00,354.00,2446.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,21,\"DL\",\"2404\",\"SAN\",\"JFK\",-1.00,-32.00,0.00,\"\",0.00,303.00,273.00,2446.00,,,,,,\n2015,5,21,\"DL\",\"2405\",\"PHX\",\"JFK\",18.00,-10.00,0.00,\"\",0.00,269.00,244.00,2153.00,,,,,,\n2015,5,21,\"DL\",\"2406\",\"TPA\",\"LGA\",-4.00,0.00,0.00,\"\",0.00,162.00,131.00,1010.00,,,,,,\n2015,5,21,\"DL\",\"2413\",\"MIA\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,168.00,141.00,1096.00,,,,,,\n2015,5,21,\"DL\",\"2432\",\"DTW\",\"SYR\",12.00,7.00,0.00,\"\",0.00,74.00,53.00,374.00,,,,,,\n2015,5,21,\"DL\",\"2435\",\"JFK\",\"FLL\",-7.00,-37.00,0.00,\"\",0.00,173.00,147.00,1069.00,,,,,,\n2015,5,21,\"DL\",\"2441\",\"SAN\",\"JFK\",65.00,36.00,0.00,\"\",0.00,298.00,277.00,2446.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"DL\",\"2447\",\"DEN\",\"JFK\",-6.00,-43.00,0.00,\"\",0.00,199.00,175.00,1626.00,,,,,,\n2015,5,21,\"DL\",\"2450\",\"MCO\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,146.00,127.00,950.00,,,,,,\n2015,5,21,\"DL\",\"2464\",\"TPA\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,153.00,124.00,1005.00,,,,,,\n2015,5,21,\"DL\",\"2466\",\"ATL\",\"SYR\",9.00,1.00,0.00,\"\",0.00,128.00,97.00,794.00,,,,,,\n2015,5,21,\"DL\",\"2466\",\"SYR\",\"ATL\",22.00,2.00,0.00,\"\",0.00,130.00,117.00,794.00,,,,,,\n2015,5,21,\"DL\",\"2473\",\"ATL\",\"BUF\",18.00,3.00,0.00,\"\",0.00,113.00,95.00,712.00,,,,,,\n2015,5,21,\"DL\",\"2474\",\"JFK\",\"DEN\",12.00,3.00,0.00,\"\",0.00,275.00,234.00,1626.00,,,,,,\n2015,5,21,\"DL\",\"2480\",\"DTW\",\"BUF\",0.00,-8.00,0.00,\"\",0.00,64.00,40.00,241.00,,,,,,\n2015,5,21,\"DL\",\"2480\",\"BUF\",\"DTW\",-1.00,-13.00,0.00,\"\",0.00,64.00,40.00,241.00,,,,,,\n2015,5,21,\"DL\",\"2495\",\"MIA\",\"JFK\",47.00,37.00,0.00,\"\",0.00,178.00,142.00,1089.00,9.00,0.00,0.00,0.00,28.00,\n2015,5,21,\"DL\",\"2496\",\"ATL\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,132.00,99.00,762.00,,,,,,\n2015,5,21,\"DL\",\"2498\",\"FLL\",\"LGA\",14.00,4.00,0.00,\"\",0.00,173.00,146.00,1076.00,,,,,,\n2015,5,21,\"DL\",\"2502\",\"FLL\",\"LGA\",-8.00,-23.00,0.00,\"\",0.00,166.00,138.00,1076.00,,,,,,\n2015,5,21,\"DL\",\"2521\",\"SFO\",\"JFK\",27.00,-1.00,0.00,\"\",0.00,313.00,289.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"2155\",\"LAS\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,286.00,264.00,2248.00,,,,,,\n2015,5,28,\"DL\",\"2156\",\"ATL\",\"SYR\",-3.00,-11.00,0.00,\"\",0.00,122.00,102.00,794.00,,,,,,\n2015,5,28,\"DL\",\"2156\",\"SYR\",\"ATL\",2.00,7.00,0.00,\"\",0.00,148.00,128.00,794.00,,,,,,\n2015,5,28,\"DL\",\"2166\",\"SYR\",\"DTW\",-6.00,1.00,0.00,\"\",0.00,100.00,59.00,374.00,,,,,,\n2015,5,28,\"DL\",\"2174\",\"DTW\",\"JFK\",-7.00,-17.00,0.00,\"\",0.00,111.00,77.00,509.00,,,,,,\n2015,5,28,\"DL\",\"2175\",\"FLL\",\"JFK\",-7.00,25.00,0.00,\"\",0.00,218.00,171.00,1069.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,28,\"DL\",\"2178\",\"LGA\",\"TPA\",26.00,10.00,0.00,\"\",0.00,165.00,139.00,1010.00,,,,,,\n2015,5,28,\"DL\",\"2181\",\"LGA\",\"MCO\",-9.00,-14.00,0.00,\"\",0.00,165.00,130.00,950.00,,,,,,\n2015,5,28,\"DL\",\"2185\",\"FLL\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,160.00,138.00,1069.00,,,,,,\n2015,5,28,\"DL\",\"2186\",\"ATL\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,138.00,103.00,762.00,,,,,,\n2015,5,28,\"DL\",\"2189\",\"JFK\",\"FLL\",-5.00,-23.00,0.00,\"\",0.00,185.00,146.00,1069.00,,,,,,\n2015,5,28,\"DL\",\"2190\",\"JFK\",\"MIA\",3.00,-11.00,0.00,\"\",0.00,188.00,147.00,1089.00,,,,,,\n2015,5,28,\"DL\",\"2208\",\"JFK\",\"LAS\",-1.00,-8.00,0.00,\"\",0.00,348.00,305.00,2248.00,,,,,,\n2015,5,28,\"DL\",\"2214\",\"ATL\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,123.00,100.00,762.00,,,,,,\n2015,5,28,\"DL\",\"2217\",\"JFK\",\"PHX\",19.00,33.00,0.00,\"\",0.00,355.00,304.00,2153.00,0.00,0.00,14.00,0.00,19.00,\n2015,5,28,\"DL\",\"2230\",\"CHS\",\"JFK\",-1.00,25.00,0.00,\"\",0.00,155.00,121.00,636.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,28,\"DL\",\"2231\",\"DTW\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,106.00,78.00,502.00,,,,,,\n2015,5,28,\"DL\",\"2240\",\"SFO\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,321.00,297.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"2248\",\"DTW\",\"LGA\",44.00,28.00,0.00,\"\",0.00,92.00,71.00,502.00,10.00,0.00,0.00,0.00,18.00,\n2015,5,28,\"DL\",\"2262\",\"LAX\",\"JFK\",-2.00,-5.00,0.00,\"\",0.00,331.00,304.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"2270\",\"LGA\",\"RSW\",-6.00,-2.00,0.00,\"\",0.00,200.00,160.00,1080.00,,,,,,\n2015,5,28,\"DL\",\"2276\",\"MCO\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,148.00,128.00,944.00,,,,,,\n2015,5,28,\"DL\",\"2277\",\"JFK\",\"TPA\",23.00,0.00,0.00,\"\",0.00,170.00,137.00,1005.00,,,,,,\n2015,5,28,\"DL\",\"2280\",\"LGA\",\"TPA\",55.00,56.00,0.00,\"\",0.00,175.00,141.00,1010.00,10.00,0.00,1.00,0.00,45.00,\n2015,5,28,\"DL\",\"2282\",\"LGA\",\"MCO\",-4.00,-4.00,0.00,\"\",0.00,176.00,130.00,950.00,,,,,,\n2015,5,28,\"DL\",\"2285\",\"LGA\",\"MCO\",-4.00,-9.00,0.00,\"\",0.00,158.00,130.00,950.00,,,,,,\n2015,5,28,\"DL\",\"2292\",\"JFK\",\"BOS\",10.00,4.00,0.00,\"\",0.00,86.00,42.00,187.00,,,,,,\n2015,5,28,\"DL\",\"2296\",\"MSP\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,164.00,130.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"2301\",\"JFK\",\"DEN\",0.00,-14.00,0.00,\"\",0.00,270.00,233.00,1626.00,,,,,,\n2015,5,28,\"DL\",\"2311\",\"JFK\",\"MIA\",-8.00,-49.00,0.00,\"\",0.00,165.00,144.00,1089.00,,,,,,\n2015,5,28,\"DL\",\"2312\",\"JFK\",\"DTW\",-1.00,-23.00,0.00,\"\",0.00,118.00,83.00,509.00,,,,,,\n2015,5,28,\"DL\",\"2317\",\"PBI\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,159.00,141.00,1035.00,,,,,,\n2015,5,28,\"DL\",\"2319\",\"LGA\",\"MSP\",1.00,-7.00,0.00,\"\",0.00,187.00,150.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"2331\",\"LGA\",\"DTW\",-10.00,-13.00,0.00,\"\",0.00,121.00,75.00,502.00,,,,,,\n2015,5,28,\"DL\",\"2349\",\"DTW\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,98.00,78.00,502.00,,,,,,\n2015,5,28,\"DL\",\"2350\",\"ATL\",\"JFK\",17.00,8.00,0.00,\"\",0.00,126.00,99.00,760.00,,,,,,\n2015,5,28,\"DL\",\"2352\",\"LAS\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,307.00,271.00,2248.00,,,,,,\n2015,5,28,\"DL\",\"2362\",\"LAX\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,315.00,295.00,2475.00,,,,,,\n2015,5,28,\"DL\",\"2382\",\"JFK\",\"AUS\",0.00,-11.00,0.00,\"\",0.00,253.00,204.00,1521.00,,,,,,\n2015,5,28,\"DL\",\"2386\",\"ATL\",\"LGA\",6.00,-6.00,0.00,\"\",0.00,127.00,100.00,762.00,,,,,,\n2015,5,28,\"DL\",\"2390\",\"JFK\",\"ATL\",31.00,16.00,0.00,\"\",0.00,157.00,108.00,760.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,28,\"DL\",\"2395\",\"LGA\",\"PBI\",-4.00,-25.00,0.00,\"\",0.00,159.00,140.00,1035.00,,,,,,\n2015,5,28,\"DL\",\"2400\",\"JFK\",\"SAN\",7.00,10.00,0.00,\"\",0.00,376.00,330.00,2446.00,,,,,,\n2015,5,28,\"DL\",\"2404\",\"SAN\",\"JFK\",1.00,-4.00,0.00,\"\",0.00,329.00,295.00,2446.00,,,,,,\n2015,5,28,\"DL\",\"2405\",\"PHX\",\"JFK\",5.00,36.00,0.00,\"\",0.00,328.00,271.00,2153.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,28,\"DL\",\"2406\",\"TPA\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,149.00,132.00,1010.00,,,,,,\n2015,5,28,\"DL\",\"2413\",\"MIA\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,170.00,143.00,1096.00,,,,,,\n2015,5,28,\"DL\",\"2432\",\"DTW\",\"SYR\",6.00,5.00,0.00,\"\",0.00,78.00,55.00,374.00,,,,,,\n2015,5,28,\"DL\",\"2435\",\"JFK\",\"PHX\",15.00,8.00,0.00,\"\",0.00,326.00,289.00,2153.00,,,,,,\n2015,5,28,\"DL\",\"2441\",\"SAN\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,309.00,287.00,2446.00,,,,,,\n2015,5,28,\"DL\",\"2447\",\"DEN\",\"JFK\",-4.00,-30.00,0.00,\"\",0.00,210.00,193.00,1626.00,,,,,,\n2015,5,28,\"DL\",\"2450\",\"MCO\",\"LGA\",-10.00,-18.00,0.00,\"\",0.00,148.00,124.00,950.00,,,,,,\n2015,5,28,\"DL\",\"2464\",\"TPA\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,153.00,133.00,1005.00,,,,,,\n2015,5,28,\"DL\",\"2466\",\"ATL\",\"SYR\",22.00,14.00,0.00,\"\",0.00,129.00,103.00,794.00,,,,,,\n2015,5,28,\"DL\",\"2466\",\"SYR\",\"ATL\",53.00,38.00,0.00,\"\",0.00,135.00,107.00,794.00,4.00,0.00,24.00,0.00,10.00,\n2015,5,28,\"DL\",\"2473\",\"ATL\",\"BUF\",65.00,47.00,0.00,\"\",0.00,110.00,96.00,712.00,33.00,0.00,0.00,0.00,14.00,\n2015,5,28,\"DL\",\"2480\",\"JFK\",\"ATL\",86.00,66.00,0.00,\"\",0.00,149.00,104.00,760.00,43.00,0.00,0.00,0.00,23.00,\n2015,5,28,\"DL\",\"2495\",\"MIA\",\"JFK\",-4.00,-27.00,0.00,\"\",0.00,165.00,142.00,1089.00,,,,,,\n2015,5,28,\"DL\",\"2496\",\"ATL\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,129.00,105.00,762.00,,,,,,\n2015,5,28,\"DL\",\"2498\",\"FLL\",\"LGA\",4.00,-10.00,0.00,\"\",0.00,169.00,138.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"2502\",\"JFK\",\"MIA\",-6.00,-13.00,0.00,\"\",0.00,203.00,148.00,1089.00,,,,,,\n2015,5,28,\"DL\",\"2521\",\"SFO\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,319.00,283.00,2586.00,,,,,,\n2015,5,28,\"DL\",\"2542\",\"JFK\",\"MSP\",49.00,7.00,0.00,\"\",0.00,169.00,145.00,1029.00,,,,,,\n2015,5,28,\"DL\",\"2550\",\"JFK\",\"SLC\",10.00,-5.00,0.00,\"\",0.00,310.00,282.00,1990.00,,,,,,\n2015,5,28,\"DL\",\"2551\",\"JFK\",\"TPA\",-5.00,-13.00,0.00,\"\",0.00,178.00,142.00,1005.00,,,,,,\n2015,5,28,\"DL\",\"2554\",\"DEN\",\"JFK\",24.00,36.00,0.00,\"\",0.00,253.00,200.00,1626.00,8.00,0.00,12.00,0.00,16.00,\n2015,5,28,\"DL\",\"2565\",\"JFK\",\"ATL\",-2.00,-14.00,0.00,\"\",0.00,155.00,109.00,760.00,,,,,,\n2015,5,28,\"DL\",\"2567\",\"DTW\",\"ALB\",3.00,5.00,0.00,\"\",0.00,90.00,63.00,489.00,,,,,,\n2015,5,28,\"DL\",\"2569\",\"JFK\",\"PHX\",32.00,29.00,0.00,\"\",0.00,340.00,289.00,2153.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"2571\",\"JFK\",\"PBI\",-6.00,-16.00,0.00,\"\",0.00,177.00,139.00,1028.00,,,,,,\n2015,5,28,\"DL\",\"2577\",\"JFK\",\"FLL\",26.00,8.00,0.00,\"\",0.00,187.00,145.00,1069.00,,,,,,\n2015,5,28,\"DL\",\"2593\",\"SAT\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,237.00,218.00,1587.00,,,,,,\n2015,5,28,\"DL\",\"2594\",\"DEN\",\"LGA\",5.00,-6.00,0.00,\"\",0.00,225.00,202.00,1620.00,,,,,,\n2015,5,28,\"DL\",\"2595\",\"FLL\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,170.00,144.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"2596\",\"PBI\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,164.00,139.00,1035.00,,,,,,\n2015,5,28,\"DL\",\"2622\",\"ROC\",\"DTW\",0.00,-17.00,0.00,\"\",0.00,65.00,48.00,296.00,,,,,,\n2015,5,28,\"DL\",\"2627\",\"JFK\",\"PDX\",-6.00,-29.00,0.00,\"\",0.00,347.00,314.00,2454.00,,,,,,\n2015,5,28,\"DL\",\"2632\",\"JFK\",\"MCO\",-3.00,-11.00,0.00,\"\",0.00,175.00,131.00,944.00,,,,,,\n2015,5,28,\"DL\",\"2634\",\"JFK\",\"BUF\",-2.00,-14.00,0.00,\"\",0.00,91.00,51.00,301.00,,,,,,\n2015,5,28,\"DL\",\"2645\",\"JFK\",\"RSW\",-7.00,-18.00,0.00,\"\",0.00,190.00,152.00,1074.00,,,,,,\n2015,5,28,\"DL\",\"2649\",\"JFK\",\"TPA\",-6.00,-16.00,0.00,\"\",0.00,178.00,145.00,1005.00,,,,,,\n2015,5,28,\"DL\",\"2650\",\"TPA\",\"JFK\",74.00,60.00,0.00,\"\",0.00,154.00,133.00,1005.00,15.00,0.00,0.00,0.00,45.00,\n2015,5,28,\"DL\",\"2652\",\"TPA\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,170.00,136.00,1005.00,,,,,,\n2015,5,28,\"DL\",\"2653\",\"MCO\",\"JFK\",-8.00,4.00,0.00,\"\",0.00,178.00,129.00,944.00,,,,,,\n2015,5,28,\"DL\",\"2665\",\"BOS\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,73.00,43.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2666\",\"LGA\",\"BOS\",-1.00,-6.00,0.00,\"\",0.00,61.00,42.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2667\",\"BOS\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,73.00,44.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2668\",\"LGA\",\"BOS\",-3.00,-12.00,0.00,\"\",0.00,62.00,43.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2669\",\"BOS\",\"LGA\",-4.00,2.00,0.00,\"\",0.00,81.00,40.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2670\",\"LGA\",\"BOS\",-4.00,-12.00,0.00,\"\",0.00,59.00,38.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2671\",\"BOS\",\"LGA\",-3.00,11.00,0.00,\"\",0.00,93.00,43.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2672\",\"LGA\",\"BOS\",22.00,23.00,0.00,\"\",0.00,83.00,46.00,184.00,22.00,0.00,1.00,0.00,0.00,\n2015,5,28,\"DL\",\"2673\",\"BOS\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,73.00,44.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2674\",\"LGA\",\"BOS\",-1.00,-4.00,0.00,\"\",0.00,80.00,42.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2675\",\"BOS\",\"LGA\",11.00,8.00,0.00,\"\",0.00,72.00,41.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2676\",\"LGA\",\"BOS\",6.00,4.00,0.00,\"\",0.00,74.00,39.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2677\",\"BOS\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,65.00,42.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2678\",\"LGA\",\"BOS\",-6.00,-13.00,0.00,\"\",0.00,76.00,39.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2679\",\"BOS\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,80.00,42.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2680\",\"LGA\",\"BOS\",1.00,8.00,0.00,\"\",0.00,86.00,38.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2681\",\"BOS\",\"LGA\",-6.00,22.00,0.00,\"\",0.00,105.00,47.00,184.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,28,\"DL\",\"2682\",\"LGA\",\"BOS\",-4.00,-11.00,0.00,\"\",0.00,65.00,41.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2683\",\"BOS\",\"LGA\",3.00,12.00,0.00,\"\",0.00,83.00,44.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2684\",\"LGA\",\"BOS\",-1.00,-8.00,0.00,\"\",0.00,68.00,37.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2685\",\"BOS\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,72.00,44.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2686\",\"LGA\",\"BOS\",15.00,-4.00,0.00,\"\",0.00,63.00,37.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2687\",\"BOS\",\"LGA\",-4.00,10.00,0.00,\"\",0.00,90.00,41.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2688\",\"LGA\",\"BOS\",0.00,11.00,0.00,\"\",0.00,94.00,52.00,184.00,,,,,,\n2015,5,28,\"DL\",\"2689\",\"BOS\",\"LGA\",-1.00,21.00,0.00,\"\",0.00,102.00,44.00,184.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,28,\"DL\",\"2690\",\"LGA\",\"BOS\",80.00,74.00,0.00,\"\",0.00,79.00,51.00,184.00,0.00,0.00,74.00,0.00,0.00,\n2015,5,28,\"DL\",\"2691\",\"BOS\",\"LGA\",20.00,28.00,0.00,\"\",0.00,85.00,45.00,184.00,11.00,0.00,8.00,0.00,9.00,\n2015,5,28,\"DL\",\"2692\",\"LGA\",\"BOS\",30.00,39.00,0.00,\"\",0.00,88.00,42.00,184.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,28,\"DL\",\"2693\",\"BOS\",\"LGA\",65.00,59.00,0.00,\"\",0.00,72.00,44.00,184.00,0.00,0.00,0.00,0.00,59.00,\n2015,5,28,\"DL\",\"2694\",\"LGA\",\"BOS\",7.00,16.00,0.00,\"\",0.00,87.00,37.00,184.00,0.00,0.00,9.00,0.00,7.00,\n2015,5,28,\"DL\",\"2696\",\"LGA\",\"BOS\",42.00,39.00,0.00,\"\",0.00,65.00,40.00,184.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"2699\",\"BOS\",\"LGA\",43.00,54.00,0.00,\"\",0.00,87.00,42.00,184.00,43.00,0.00,11.00,0.00,0.00,\n2015,5,28,\"DL\",\"2785\",\"JFK\",\"CHS\",44.00,31.00,0.00,\"\",0.00,123.00,87.00,636.00,0.00,0.00,0.00,0.00,31.00,\n2015,5,29,\"DL\",\"42\",\"MIA\",\"JFK\",5.00,26.00,0.00,\"\",0.00,210.00,150.00,1089.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,29,\"DL\",\"208\",\"JFK\",\"MCO\",5.00,-22.00,0.00,\"\",0.00,160.00,124.00,944.00,,,,,,\n2015,5,29,\"DL\",\"221\",\"LGA\",\"ATL\",39.00,26.00,0.00,\"\",0.00,152.00,112.00,762.00,0.00,26.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"234\",\"PIT\",\"JFK\",-1.00,9.00,0.00,\"\",0.00,110.00,59.00,340.00,,,,,,\n2015,5,29,\"DL\",\"245\",\"JFK\",\"SLC\",27.00,3.00,0.00,\"\",0.00,304.00,271.00,1990.00,,,,,,\n2015,5,29,\"DL\",\"326\",\"SJU\",\"JFK\",9.00,-9.00,0.00,\"\",0.00,222.00,204.00,1598.00,,,,,,\n2015,5,29,\"DL\",\"332\",\"SJU\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,240.00,211.00,1598.00,,,,,,\n2015,5,29,\"DL\",\"333\",\"MSP\",\"LGA\",-3.00,-26.00,0.00,\"\",0.00,140.00,124.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"342\",\"SFO\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,334.00,298.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"347\",\"LGA\",\"ATL\",1.00,-5.00,0.00,\"\",0.00,152.00,105.00,762.00,,,,,,\n2015,5,29,\"DL\",\"348\",\"SJU\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,232.00,208.00,1598.00,,,,,,\n2015,5,29,\"DL\",\"350\",\"LGA\",\"ATL\",-3.00,3.00,0.00,\"\",0.00,159.00,120.00,762.00,,,,,,\n2015,5,29,\"DL\",\"400\",\"PDX\",\"JFK\",-3.00,8.00,0.00,\"\",0.00,340.00,297.00,2454.00,,,,,,\n2015,5,29,\"DL\",\"401\",\"AUS\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,232.00,203.00,1521.00,,,,,,\n2015,5,29,\"DL\",\"403\",\"PDX\",\"JFK\",146.00,115.00,0.00,\"\",0.00,303.00,284.00,2454.00,24.00,0.00,0.00,0.00,91.00,\n2015,5,29,\"DL\",\"407\",\"MCO\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,161.00,129.00,944.00,,,,,,\n2015,5,29,\"DL\",\"409\",\"JFK\",\"SJU\",-6.00,-38.00,0.00,\"\",0.00,215.00,194.00,1598.00,,,,,,\n2015,5,29,\"DL\",\"410\",\"MSP\",\"JFK\",-8.00,-15.00,0.00,\"\",0.00,160.00,134.00,1029.00,,,,,,\n2015,5,29,\"DL\",\"412\",\"LAX\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,330.00,300.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"414\",\"SFO\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,337.00,301.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"415\",\"JFK\",\"SFO\",-3.00,-26.00,0.00,\"\",0.00,385.00,362.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"418\",\"SEA\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,313.00,289.00,2422.00,,,,,,\n2015,5,29,\"DL\",\"419\",\"JFK\",\"SEA\",20.00,-2.00,0.00,\"\",0.00,357.00,327.00,2422.00,,,,,,\n2015,5,29,\"DL\",\"420\",\"JFK\",\"LAX\",5.00,-21.00,0.00,\"\",0.00,372.00,321.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"421\",\"JFK\",\"ATL\",-2.00,-20.00,0.00,\"\",0.00,149.00,102.00,760.00,,,,,,\n2015,5,29,\"DL\",\"422\",\"JFK\",\"LAX\",0.00,-19.00,0.00,\"\",0.00,361.00,322.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"423\",\"JFK\",\"LAX\",-1.00,-23.00,0.00,\"\",0.00,351.00,319.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"424\",\"JFK\",\"LAX\",-3.00,-15.00,0.00,\"\",0.00,358.00,316.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"425\",\"JFK\",\"CHS\",-3.00,-23.00,0.00,\"\",0.00,119.00,85.00,636.00,,,,,,\n2015,5,29,\"DL\",\"426\",\"JFK\",\"MCO\",3.00,-19.00,0.00,\"\",0.00,150.00,123.00,944.00,,,,,,\n2015,5,29,\"DL\",\"427\",\"JFK\",\"LAX\",-4.00,-31.00,0.00,\"\",0.00,361.00,323.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"428\",\"JFK\",\"ATL\",2.00,-20.00,0.00,\"\",0.00,147.00,113.00,760.00,,,,,,\n2015,5,29,\"DL\",\"430\",\"JFK\",\"SFO\",-8.00,-24.00,0.00,\"\",0.00,368.00,331.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"431\",\"JFK\",\"SFO\",-2.00,-8.00,0.00,\"\",0.00,403.00,353.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"433\",\"JFK\",\"AUS\",61.00,33.00,0.00,\"\",0.00,236.00,202.00,1521.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"434\",\"JFK\",\"SFO\",-3.00,-24.00,0.00,\"\",0.00,383.00,338.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"435\",\"JFK\",\"SFO\",11.00,-5.00,0.00,\"\",0.00,388.00,345.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"436\",\"JFK\",\"FLL\",-6.00,-16.00,0.00,\"\",0.00,174.00,139.00,1069.00,,,,,,\n2015,5,29,\"DL\",\"437\",\"JFK\",\"BOS\",-3.00,-24.00,0.00,\"\",0.00,56.00,34.00,187.00,,,,,,\n2015,5,29,\"DL\",\"438\",\"JFK\",\"MCO\",-7.00,-26.00,0.00,\"\",0.00,149.00,122.00,944.00,,,,,,\n2015,5,29,\"DL\",\"439\",\"JFK\",\"MSP\",-6.00,-19.00,0.00,\"\",0.00,179.00,146.00,1029.00,,,,,,\n2015,5,29,\"DL\",\"442\",\"JFK\",\"LAS\",29.00,22.00,0.00,\"\",0.00,343.00,301.00,2248.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,29,\"DL\",\"444\",\"SLC\",\"JFK\",29.00,22.00,0.00,\"\",0.00,273.00,242.00,1990.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,29,\"DL\",\"445\",\"JFK\",\"TPA\",10.00,5.00,0.00,\"\",0.00,166.00,139.00,1005.00,,,,,,\n2015,5,29,\"DL\",\"447\",\"JFK\",\"LAX\",28.00,13.00,0.00,\"\",0.00,375.00,322.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"448\",\"JFK\",\"SEA\",0.00,-3.00,0.00,\"\",0.00,357.00,324.00,2422.00,,,,,,\n2015,5,29,\"DL\",\"451\",\"JFK\",\"SJU\",17.00,-3.00,0.00,\"\",0.00,222.00,195.00,1598.00,,,,,,\n2015,5,29,\"DL\",\"453\",\"JFK\",\"SJU\",-5.00,-13.00,0.00,\"\",0.00,226.00,193.00,1598.00,,,,,,\n2015,5,29,\"DL\",\"454\",\"JFK\",\"ATL\",174.00,165.00,0.00,\"\",0.00,143.00,100.00,760.00,165.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"455\",\"JFK\",\"SAN\",-2.00,11.00,0.00,\"\",0.00,388.00,329.00,2446.00,,,,,,\n2015,5,29,\"DL\",\"456\",\"JFK\",\"SAN\",-4.00,-20.00,0.00,\"\",0.00,362.00,324.00,2446.00,,,,,,\n2015,5,29,\"DL\",\"458\",\"JFK\",\"SEA\",-1.00,-1.00,0.00,\"\",0.00,363.00,313.00,2422.00,,,,,,\n2015,5,29,\"DL\",\"459\",\"JFK\",\"CHS\",-1.00,-15.00,0.00,\"\",0.00,122.00,86.00,636.00,,,,,,\n2015,5,29,\"DL\",\"460\",\"JFK\",\"SLC\",-3.00,-27.00,0.00,\"\",0.00,301.00,280.00,1990.00,,,,,,\n2015,5,29,\"DL\",\"463\",\"JFK\",\"PIT\",-4.00,-34.00,0.00,\"\",0.00,91.00,64.00,340.00,,,,,,\n2015,5,29,\"DL\",\"464\",\"JFK\",\"MIA\",-6.00,-12.00,0.00,\"\",0.00,172.00,140.00,1089.00,,,,,,\n2015,5,29,\"DL\",\"465\",\"JFK\",\"STT\",-6.00,-4.00,0.00,\"\",0.00,248.00,195.00,1623.00,,,,,,\n2015,5,29,\"DL\",\"466\",\"SLC\",\"JFK\",-2.00,8.00,0.00,\"\",0.00,287.00,251.00,1990.00,,,,,,\n2015,5,29,\"DL\",\"468\",\"SFO\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,337.00,296.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"469\",\"JFK\",\"SFO\",-2.00,-36.00,0.00,\"\",0.00,356.00,332.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"472\",\"JFK\",\"LAX\",4.00,-21.00,0.00,\"\",0.00,357.00,319.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"476\",\"LAX\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,325.00,293.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"477\",\"JFK\",\"LAX\",166.00,107.00,0.00,\"\",0.00,336.00,303.00,2475.00,107.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"478\",\"ATL\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,141.00,113.00,760.00,,,,,,\n2015,5,29,\"DL\",\"480\",\"JFK\",\"ATL\",6.00,-23.00,0.00,\"\",0.00,124.00,102.00,760.00,,,,,,\n2015,5,29,\"DL\",\"482\",\"JFK\",\"SJU\",-2.00,-14.00,0.00,\"\",0.00,226.00,194.00,1598.00,,,,,,\n2015,5,29,\"DL\",\"483\",\"JFK\",\"SFO\",0.00,-14.00,0.00,\"\",0.00,394.00,355.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"486\",\"JFK\",\"LAS\",-1.00,-18.00,0.00,\"\",0.00,315.00,295.00,2248.00,,,,,,\n2015,5,29,\"DL\",\"488\",\"JFK\",\"SJU\",6.00,-5.00,0.00,\"\",0.00,216.00,193.00,1598.00,,,,,,\n2015,5,29,\"DL\",\"491\",\"JFK\",\"SLC\",27.00,16.00,0.00,\"\",0.00,294.00,265.00,1990.00,15.00,0.00,0.00,0.00,1.00,\n2015,5,29,\"DL\",\"494\",\"JFK\",\"LAS\",10.00,-24.00,0.00,\"\",0.00,322.00,287.00,2248.00,,,,,,\n2015,5,29,\"DL\",\"496\",\"JFK\",\"BOS\",-4.00,-12.00,0.00,\"\",0.00,75.00,41.00,187.00,,,,,,\n2015,5,29,\"DL\",\"497\",\"JFK\",\"PDX\",1.00,-25.00,0.00,\"\",0.00,352.00,325.00,2454.00,,,,,,\n2015,5,29,\"DL\",\"498\",\"JFK\",\"SEA\",35.00,16.00,0.00,\"\",0.00,363.00,316.00,2422.00,6.00,0.00,0.00,0.00,10.00,\n2015,5,29,\"DL\",\"499\",\"JFK\",\"SLC\",12.00,34.00,0.00,\"\",0.00,332.00,263.00,1990.00,12.00,0.00,22.00,0.00,0.00,\n2015,5,29,\"DL\",\"511\",\"SJU\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,235.00,201.00,1598.00,,,,,,\n2015,5,29,\"DL\",\"527\",\"RSW\",\"JFK\",-6.00,-6.00,0.00,\"\",0.00,164.00,142.00,1074.00,,,,,,\n2015,5,29,\"DL\",\"528\",\"LGA\",\"MSP\",4.00,5.00,0.00,\"\",0.00,186.00,147.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"541\",\"LAS\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,287.00,269.00,2248.00,,,,,,\n2015,5,29,\"DL\",\"544\",\"ALB\",\"ATL\",-6.00,-24.00,0.00,\"\",0.00,137.00,119.00,853.00,,,,,,\n2015,5,29,\"DL\",\"582\",\"DTW\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,101.00,76.00,502.00,,,,,,\n2015,5,29,\"DL\",\"583\",\"LGA\",\"DTW\",-3.00,-14.00,0.00,\"\",0.00,103.00,77.00,502.00,,,,,,\n2015,5,29,\"DL\",\"662\",\"BUF\",\"MSP\",-2.00,-22.00,0.00,\"\",0.00,124.00,106.00,735.00,,,,,,\n2015,5,29,\"DL\",\"664\",\"TPA\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,165.00,136.00,1010.00,,,,,,\n2015,5,29,\"DL\",\"665\",\"ATL\",\"ALB\",0.00,-12.00,0.00,\"\",0.00,128.00,112.00,853.00,,,,,,\n2015,5,29,\"DL\",\"665\",\"ALB\",\"ATL\",-7.00,-4.00,0.00,\"\",0.00,155.00,138.00,853.00,,,,,,\n2015,5,29,\"DL\",\"676\",\"STT\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,236.00,215.00,1623.00,,,,,,\n2015,5,29,\"DL\",\"714\",\"DTW\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,89.00,71.00,502.00,,,,,,\n2015,5,29,\"DL\",\"723\",\"ATL\",\"BUF\",-2.00,-17.00,0.00,\"\",0.00,112.00,96.00,712.00,,,,,,\n2015,5,29,\"DL\",\"723\",\"BUF\",\"ATL\",-3.00,-15.00,0.00,\"\",0.00,119.00,99.00,712.00,,,,,,\n2015,5,29,\"DL\",\"725\",\"ATL\",\"LGA\",-2.00,-23.00,0.00,\"\",0.00,113.00,99.00,762.00,,,,,,\n2015,5,29,\"DL\",\"729\",\"LAS\",\"JFK\",8.00,-8.00,0.00,\"\",0.00,289.00,270.00,2248.00,,,,,,\n2015,5,29,\"DL\",\"731\",\"LGA\",\"DTW\",-2.00,-4.00,0.00,\"\",0.00,112.00,80.00,502.00,,,,,,\n2015,5,29,\"DL\",\"750\",\"BOS\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,73.00,41.00,187.00,,,,,,\n2015,5,29,\"DL\",\"763\",\"BOS\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,60.00,40.00,187.00,,,,,,\n2015,5,29,\"DL\",\"765\",\"DTW\",\"BUF\",-5.00,-11.00,0.00,\"\",0.00,59.00,42.00,241.00,,,,,,\n2015,5,29,\"DL\",\"765\",\"BUF\",\"DTW\",-2.00,-13.00,0.00,\"\",0.00,64.00,46.00,241.00,,,,,,\n2015,5,29,\"DL\",\"772\",\"PBI\",\"LGA\",-5.00,31.00,0.00,\"\",0.00,206.00,143.00,1035.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,29,\"DL\",\"2464\",\"TPA\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,153.00,139.00,1005.00,,,,,,\n2015,5,29,\"DL\",\"2466\",\"ATL\",\"SYR\",-1.00,-22.00,0.00,\"\",0.00,116.00,99.00,794.00,,,,,,\n2015,5,29,\"DL\",\"2466\",\"SYR\",\"ATL\",-5.00,-28.00,0.00,\"\",0.00,127.00,109.00,794.00,,,,,,\n2015,5,29,\"DL\",\"2473\",\"ATL\",\"BUF\",-3.00,7.00,0.00,\"\",0.00,138.00,101.00,712.00,,,,,,\n2015,5,29,\"DL\",\"2474\",\"JFK\",\"PHX\",-3.00,16.00,0.00,\"\",0.00,355.00,298.00,2153.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,29,\"DL\",\"2495\",\"MIA\",\"JFK\",26.00,33.00,0.00,\"\",0.00,195.00,149.00,1089.00,1.00,0.00,7.00,0.00,25.00,\n2015,5,29,\"DL\",\"2496\",\"ATL\",\"LGA\",-2.00,2.00,0.00,\"\",0.00,143.00,101.00,762.00,,,,,,\n2015,5,29,\"DL\",\"2498\",\"FLL\",\"LGA\",-9.00,-18.00,0.00,\"\",0.00,174.00,150.00,1076.00,,,,,,\n2015,5,29,\"DL\",\"2502\",\"JFK\",\"MIA\",-4.00,-37.00,0.00,\"\",0.00,177.00,142.00,1089.00,,,,,,\n2015,5,29,\"DL\",\"2521\",\"SFO\",\"JFK\",7.00,-4.00,0.00,\"\",0.00,330.00,305.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"2542\",\"JFK\",\"MSP\",-7.00,-33.00,0.00,\"\",0.00,185.00,152.00,1029.00,,,,,,\n2015,5,29,\"DL\",\"2550\",\"JFK\",\"SLC\",-3.00,-22.00,0.00,\"\",0.00,306.00,277.00,1990.00,,,,,,\n2015,5,29,\"DL\",\"2551\",\"JFK\",\"TPA\",-1.00,-2.00,0.00,\"\",0.00,185.00,135.00,1005.00,,,,,,\n2015,5,29,\"DL\",\"2554\",\"DEN\",\"JFK\",5.00,-26.00,0.00,\"\",0.00,210.00,188.00,1626.00,,,,,,\n2015,5,29,\"DL\",\"2567\",\"DTW\",\"ALB\",-2.00,-2.00,0.00,\"\",0.00,88.00,67.00,489.00,,,,,,\n2015,5,29,\"DL\",\"2569\",\"JFK\",\"PHX\",-8.00,-42.00,0.00,\"\",0.00,309.00,283.00,2153.00,,,,,,\n2015,5,29,\"DL\",\"2571\",\"JFK\",\"PBI\",-11.00,-26.00,0.00,\"\",0.00,172.00,134.00,1028.00,,,,,,\n2015,5,29,\"DL\",\"2577\",\"JFK\",\"FLL\",12.00,-9.00,0.00,\"\",0.00,184.00,138.00,1069.00,,,,,,\n2015,5,29,\"DL\",\"2593\",\"SAT\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,230.00,206.00,1587.00,,,,,,\n2015,5,29,\"DL\",\"2594\",\"DEN\",\"LGA\",-8.00,-22.00,0.00,\"\",0.00,222.00,199.00,1620.00,,,,,,\n2015,5,29,\"DL\",\"2595\",\"FLL\",\"LGA\",-10.00,-25.00,0.00,\"\",0.00,169.00,146.00,1076.00,,,,,,\n2015,5,29,\"DL\",\"2596\",\"PBI\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,173.00,145.00,1035.00,,,,,,\n2015,5,29,\"DL\",\"2622\",\"ROC\",\"DTW\",-7.00,-24.00,0.00,\"\",0.00,65.00,48.00,296.00,,,,,,\n2015,5,29,\"DL\",\"2627\",\"JFK\",\"PDX\",-9.00,-11.00,0.00,\"\",0.00,368.00,321.00,2454.00,,,,,,\n2015,5,29,\"DL\",\"2632\",\"JFK\",\"MCO\",-6.00,-18.00,0.00,\"\",0.00,171.00,127.00,944.00,,,,,,\n2015,5,29,\"DL\",\"2634\",\"JFK\",\"BUF\",16.00,-6.00,0.00,\"\",0.00,81.00,53.00,301.00,,,,,,\n2015,5,29,\"DL\",\"2645\",\"JFK\",\"RSW\",-6.00,-19.00,0.00,\"\",0.00,188.00,147.00,1074.00,,,,,,\n2015,5,29,\"DL\",\"2649\",\"JFK\",\"TPA\",-2.00,-19.00,0.00,\"\",0.00,171.00,141.00,1005.00,,,,,,\n2015,5,29,\"DL\",\"2650\",\"TPA\",\"JFK\",43.00,42.00,0.00,\"\",0.00,167.00,137.00,1005.00,7.00,0.00,0.00,0.00,35.00,\n2015,5,29,\"DL\",\"2652\",\"TPA\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,153.00,136.00,1005.00,,,,,,\n2015,5,29,\"DL\",\"2653\",\"MCO\",\"JFK\",2.00,12.00,0.00,\"\",0.00,176.00,127.00,944.00,,,,,,\n2015,5,29,\"DL\",\"2665\",\"BOS\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,76.00,51.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2666\",\"LGA\",\"BOS\",-5.00,-17.00,0.00,\"\",0.00,54.00,35.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2667\",\"BOS\",\"LGA\",4.00,11.00,0.00,\"\",0.00,86.00,48.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2668\",\"LGA\",\"BOS\",-3.00,-15.00,0.00,\"\",0.00,59.00,35.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2669\",\"BOS\",\"LGA\",33.00,37.00,0.00,\"\",0.00,79.00,48.00,184.00,0.00,0.00,4.00,0.00,33.00,\n2015,5,29,\"DL\",\"2670\",\"LGA\",\"BOS\",-5.00,-9.00,0.00,\"\",0.00,63.00,37.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2671\",\"BOS\",\"LGA\",-1.00,19.00,0.00,\"\",0.00,99.00,46.00,184.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,29,\"DL\",\"2672\",\"LGA\",\"BOS\",7.00,8.00,0.00,\"\",0.00,83.00,37.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2673\",\"BOS\",\"LGA\",-4.00,9.00,0.00,\"\",0.00,86.00,46.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2674\",\"LGA\",\"BOS\",29.00,19.00,0.00,\"\",0.00,73.00,34.00,184.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,29,\"DL\",\"2675\",\"BOS\",\"LGA\",7.00,0.00,0.00,\"\",0.00,68.00,48.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2676\",\"LGA\",\"BOS\",22.00,30.00,0.00,\"\",0.00,84.00,34.00,184.00,3.00,0.00,8.00,0.00,19.00,\n2015,5,29,\"DL\",\"2677\",\"BOS\",\"LGA\",20.00,8.00,0.00,\"\",0.00,63.00,45.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2678\",\"LGA\",\"BOS\",-2.00,-10.00,0.00,\"\",0.00,75.00,33.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2679\",\"BOS\",\"LGA\",15.00,32.00,0.00,\"\",0.00,94.00,40.00,184.00,0.00,0.00,17.00,0.00,15.00,\n2015,5,29,\"DL\",\"2680\",\"LGA\",\"BOS\",-2.00,-13.00,0.00,\"\",0.00,68.00,35.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2681\",\"BOS\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,71.00,40.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2682\",\"LGA\",\"BOS\",-2.00,-2.00,0.00,\"\",0.00,72.00,36.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2683\",\"BOS\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,72.00,41.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2684\",\"LGA\",\"BOS\",27.00,56.00,0.00,\"\",0.00,104.00,62.00,184.00,0.00,0.00,29.00,0.00,27.00,\n2015,5,29,\"DL\",\"2685\",\"BOS\",\"LGA\",-2.00,0.00,0.00,\"\",0.00,74.00,41.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2686\",\"LGA\",\"BOS\",-7.00,44.00,0.00,\"\",0.00,133.00,59.00,184.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,29,\"DL\",\"2687\",\"BOS\",\"LGA\",48.00,44.00,0.00,\"\",0.00,72.00,38.00,184.00,3.00,0.00,0.00,0.00,41.00,\n2015,5,29,\"DL\",\"2688\",\"LGA\",\"BOS\",88.00,78.00,0.00,\"\",0.00,73.00,36.00,184.00,0.00,0.00,78.00,0.00,0.00,\n2015,5,29,\"DL\",\"2689\",\"BOS\",\"LGA\",39.00,35.00,0.00,\"\",0.00,76.00,39.00,184.00,0.00,0.00,0.00,0.00,35.00,\n2015,5,29,\"DL\",\"2690\",\"LGA\",\"BOS\",59.00,28.00,0.00,\"\",0.00,54.00,34.00,184.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,29,\"DL\",\"2691\",\"BOS\",\"LGA\",84.00,66.00,0.00,\"\",0.00,59.00,39.00,184.00,6.00,0.00,0.00,0.00,60.00,\n2015,5,29,\"DL\",\"2692\",\"LGA\",\"BOS\",67.00,54.00,0.00,\"\",0.00,66.00,33.00,184.00,0.00,0.00,30.00,0.00,24.00,\n2015,5,29,\"DL\",\"2693\",\"BOS\",\"LGA\",30.00,22.00,0.00,\"\",0.00,70.00,40.00,184.00,2.00,0.00,0.00,0.00,20.00,\n2015,5,29,\"DL\",\"2694\",\"LGA\",\"BOS\",41.00,37.00,0.00,\"\",0.00,74.00,34.00,184.00,0.00,0.00,14.00,0.00,23.00,\n2015,5,29,\"DL\",\"2696\",\"LGA\",\"BOS\",-1.00,-3.00,0.00,\"\",0.00,66.00,44.00,184.00,,,,,,\n2015,5,29,\"DL\",\"2699\",\"BOS\",\"LGA\",52.00,53.00,0.00,\"\",0.00,77.00,43.00,184.00,52.00,0.00,1.00,0.00,0.00,\n2015,5,30,\"DL\",\"2\",\"JFK\",\"PDX\",46.00,84.00,0.00,\"\",0.00,411.00,371.00,2454.00,36.00,0.00,38.00,0.00,10.00,\n2015,5,27,\"DL\",\"1985\",\"ALB\",\"DTW\",-4.00,-7.00,0.00,\"\",0.00,98.00,73.00,489.00,,,,,,\n2015,5,27,\"DL\",\"1986\",\"ATL\",\"LGA\",186.00,180.00,0.00,\"\",0.00,144.00,100.00,762.00,0.00,0.00,170.00,0.00,10.00,\n2015,5,27,\"DL\",\"1994\",\"PHX\",\"JFK\",-2.00,-26.00,0.00,\"\",0.00,268.00,248.00,2153.00,,,,,,\n2015,5,27,\"DL\",\"1996\",\"MSP\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,153.00,133.00,1020.00,,,,,,\n2015,5,27,\"DL\",\"2003\",\"LGA\",\"MIA\",-9.00,-11.00,0.00,\"\",0.00,185.00,149.00,1096.00,,,,,,\n2015,5,27,\"DL\",\"2013\",\"ATL\",\"SYR\",-3.00,-11.00,0.00,\"\",0.00,127.00,102.00,794.00,,,,,,\n2015,5,27,\"DL\",\"2014\",\"SYR\",\"ATL\",-4.00,-12.00,0.00,\"\",0.00,131.00,115.00,794.00,,,,,,\n2015,5,27,\"DL\",\"2016\",\"LGA\",\"ATL\",77.00,58.00,0.00,\"\",0.00,134.00,111.00,762.00,58.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"2022\",\"LGA\",\"FLL\",8.00,16.00,0.00,\"\",0.00,200.00,148.00,1076.00,0.00,0.00,8.00,0.00,8.00,\n2015,5,27,\"DL\",\"2028\",\"FLL\",\"LGA\",,,1.00,\"A\",0.00,,,1076.00,,,,,,\n2015,5,27,\"DL\",\"2032\",\"MSP\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,160.00,137.00,1029.00,,,,,,\n2015,5,27,\"DL\",\"2037\",\"JFK\",\"FLL\",46.00,17.00,0.00,\"\",0.00,172.00,144.00,1069.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"2040\",\"SFO\",\"JFK\",2.00,-6.00,0.00,\"\",0.00,333.00,300.00,2586.00,,,,,,\n2015,5,27,\"DL\",\"2043\",\"JFK\",\"BOS\",-3.00,-38.00,0.00,\"\",0.00,66.00,43.00,187.00,,,,,,\n2015,5,27,\"DL\",\"2056\",\"MSP\",\"ROC\",192.00,183.00,0.00,\"\",0.00,128.00,99.00,783.00,1.00,0.00,0.00,0.00,182.00,\n2015,5,27,\"DL\",\"2058\",\"MCO\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,145.00,123.00,944.00,,,,,,\n2015,5,27,\"DL\",\"2059\",\"JFK\",\"SAT\",-6.00,17.00,0.00,\"\",0.00,292.00,221.00,1587.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,27,\"DL\",\"2064\",\"JFK\",\"SJU\",-6.00,-39.00,0.00,\"\",0.00,214.00,190.00,1598.00,,,,,,\n2015,5,27,\"DL\",\"2074\",\"LGA\",\"ATL\",2.00,-20.00,0.00,\"\",0.00,136.00,109.00,762.00,,,,,,\n2015,5,27,\"DL\",\"2077\",\"LGA\",\"MCO\",26.00,30.00,0.00,\"\",0.00,180.00,129.00,950.00,0.00,0.00,4.00,0.00,26.00,\n2015,5,27,\"DL\",\"2086\",\"ATL\",\"LGA\",163.00,150.00,0.00,\"\",0.00,131.00,104.00,762.00,0.00,0.00,150.00,0.00,0.00,\n2015,5,27,\"DL\",\"2096\",\"LGA\",\"MSP\",-2.00,9.00,0.00,\"\",0.00,193.00,159.00,1020.00,,,,,,\n2015,5,27,\"DL\",\"2119\",\"LGA\",\"MSP\",-2.00,-13.00,0.00,\"\",0.00,174.00,137.00,1020.00,,,,,,\n2015,5,27,\"DL\",\"2122\",\"JFK\",\"MCO\",146.00,145.00,0.00,\"\",0.00,189.00,133.00,944.00,145.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"2129\",\"ROC\",\"ATL\",-5.00,-3.00,0.00,\"\",0.00,131.00,113.00,749.00,,,,,,\n2015,5,27,\"DL\",\"2131\",\"LGA\",\"DTW\",36.00,85.00,0.00,\"\",0.00,168.00,84.00,502.00,0.00,0.00,49.00,0.00,36.00,\n2015,5,27,\"DL\",\"2135\",\"TPA\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,157.00,133.00,1010.00,,,,,,\n2015,5,27,\"DL\",\"2148\",\"LGA\",\"DTW\",-2.00,-27.00,0.00,\"\",0.00,103.00,79.00,502.00,,,,,,\n2015,5,27,\"DL\",\"2150\",\"LGA\",\"DTW\",-1.00,-18.00,0.00,\"\",0.00,109.00,81.00,502.00,,,,,,\n2015,5,27,\"DL\",\"2151\",\"MIA\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,189.00,147.00,1096.00,,,,,,\n2015,5,27,\"DL\",\"2155\",\"LAS\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,287.00,266.00,2248.00,,,,,,\n2015,5,27,\"DL\",\"2156\",\"ATL\",\"SYR\",-2.00,-10.00,0.00,\"\",0.00,122.00,99.00,794.00,,,,,,\n2015,5,27,\"DL\",\"2156\",\"SYR\",\"ATL\",0.00,-2.00,0.00,\"\",0.00,141.00,123.00,794.00,,,,,,\n2015,5,27,\"DL\",\"2166\",\"SYR\",\"DTW\",-7.00,-21.00,0.00,\"\",0.00,79.00,57.00,374.00,,,,,,\n2015,5,27,\"DL\",\"2174\",\"DTW\",\"JFK\",77.00,61.00,0.00,\"\",0.00,105.00,76.00,509.00,4.00,0.00,0.00,0.00,57.00,\n2015,5,27,\"DL\",\"2175\",\"FLL\",\"JFK\",287.00,279.00,0.00,\"\",0.00,178.00,139.00,1069.00,4.00,0.00,33.00,0.00,242.00,\n2015,5,27,\"DL\",\"2178\",\"LGA\",\"TPA\",132.00,113.00,0.00,\"\",0.00,162.00,141.00,1010.00,0.00,10.00,0.00,0.00,103.00,\n2015,5,27,\"DL\",\"2181\",\"LGA\",\"MCO\",0.00,-22.00,0.00,\"\",0.00,148.00,128.00,950.00,,,,,,\n2015,5,27,\"DL\",\"2185\",\"FLL\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,162.00,138.00,1069.00,,,,,,\n2015,5,27,\"DL\",\"2186\",\"ATL\",\"LGA\",123.00,112.00,0.00,\"\",0.00,135.00,101.00,762.00,0.00,0.00,112.00,0.00,0.00,\n2015,5,27,\"DL\",\"2189\",\"JFK\",\"FLL\",-5.00,-30.00,0.00,\"\",0.00,178.00,153.00,1069.00,,,,,,\n2015,5,27,\"DL\",\"2190\",\"JFK\",\"MIA\",-3.00,-26.00,0.00,\"\",0.00,179.00,146.00,1089.00,,,,,,\n2015,5,27,\"DL\",\"2208\",\"JFK\",\"LAS\",14.00,2.00,0.00,\"\",0.00,343.00,303.00,2248.00,,,,,,\n2015,5,27,\"DL\",\"2214\",\"ATL\",\"LGA\",-2.00,0.00,0.00,\"\",0.00,135.00,105.00,762.00,,,,,,\n2015,5,27,\"DL\",\"2217\",\"JFK\",\"PHX\",32.00,40.00,0.00,\"\",0.00,349.00,304.00,2153.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,27,\"DL\",\"2230\",\"CHS\",\"JFK\",149.00,129.00,0.00,\"\",0.00,109.00,85.00,636.00,0.00,0.00,126.00,0.00,3.00,\n2015,5,27,\"DL\",\"2231\",\"DTW\",\"LGA\",25.00,62.00,0.00,\"\",0.00,145.00,89.00,502.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,27,\"DL\",\"2240\",\"SFO\",\"JFK\",9.00,-14.00,0.00,\"\",0.00,315.00,297.00,2586.00,,,,,,\n2015,5,27,\"DL\",\"2246\",\"JFK\",\"AUS\",-4.00,2.00,0.00,\"\",0.00,270.00,206.00,1521.00,,,,,,\n2015,5,27,\"DL\",\"2248\",\"DTW\",\"LGA\",33.00,,0.00,\"\",1.00,,,502.00,,,,,,\n2015,5,27,\"DL\",\"2262\",\"LAX\",\"JFK\",36.00,51.00,0.00,\"\",0.00,349.00,293.00,2475.00,0.00,0.00,21.00,0.00,30.00,\n2015,5,27,\"DL\",\"2270\",\"LGA\",\"RSW\",-3.00,-12.00,0.00,\"\",0.00,187.00,158.00,1080.00,,,,,,\n2015,5,27,\"DL\",\"2276\",\"MCO\",\"JFK\",186.00,169.00,0.00,\"\",0.00,150.00,117.00,944.00,169.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"2277\",\"JFK\",\"TPA\",248.00,213.00,0.00,\"\",0.00,158.00,135.00,1005.00,16.00,0.00,0.00,0.00,197.00,\n2015,5,27,\"DL\",\"2280\",\"LGA\",\"TPA\",-5.00,-6.00,0.00,\"\",0.00,173.00,143.00,1010.00,,,,,,\n2015,5,27,\"DL\",\"2282\",\"LGA\",\"MCO\",88.00,68.00,0.00,\"\",0.00,156.00,136.00,950.00,0.00,0.00,0.00,0.00,68.00,\n2015,5,27,\"DL\",\"2285\",\"LGA\",\"MCO\",,,1.00,\"A\",0.00,,,950.00,,,,,,\n2015,5,27,\"DL\",\"2292\",\"JFK\",\"BOS\",112.00,93.00,0.00,\"\",0.00,73.00,42.00,187.00,26.00,0.00,0.00,0.00,67.00,\n2015,5,27,\"DL\",\"2296\",\"MSP\",\"LGA\",60.00,63.00,0.00,\"\",0.00,171.00,128.00,1020.00,0.00,0.00,63.00,0.00,0.00,\n2015,5,27,\"DL\",\"2311\",\"JFK\",\"MIA\",262.00,217.00,0.00,\"\",0.00,161.00,139.00,1089.00,19.00,0.00,0.00,0.00,198.00,\n2015,5,27,\"DL\",\"2312\",\"JFK\",\"DTW\",34.00,115.00,0.00,\"\",0.00,221.00,99.00,509.00,0.00,0.00,115.00,0.00,0.00,\n2015,5,27,\"DL\",\"2317\",\"PBI\",\"LGA\",30.00,28.00,0.00,\"\",0.00,171.00,137.00,1035.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,27,\"DL\",\"2319\",\"LGA\",\"MSP\",0.00,-39.00,0.00,\"\",0.00,156.00,140.00,1020.00,,,,,,\n2015,5,27,\"DL\",\"2331\",\"LGA\",\"DTW\",255.00,232.00,0.00,\"\",0.00,101.00,76.00,502.00,0.00,0.00,0.00,0.00,232.00,\n2015,5,27,\"DL\",\"2349\",\"DTW\",\"LGA\",266.00,265.00,0.00,\"\",0.00,105.00,77.00,502.00,0.00,0.00,111.00,0.00,154.00,\n2015,5,27,\"DL\",\"2350\",\"ATL\",\"JFK\",29.00,11.00,0.00,\"\",0.00,117.00,101.00,760.00,,,,,,\n2015,5,27,\"DL\",\"2352\",\"LAS\",\"JFK\",137.00,148.00,0.00,\"\",0.00,324.00,266.00,2248.00,0.00,0.00,115.00,0.00,33.00,\n2015,5,27,\"DL\",\"2362\",\"LAX\",\"JFK\",-3.00,-2.00,0.00,\"\",0.00,331.00,289.00,2475.00,,,,,,\n2015,5,27,\"DL\",\"2382\",\"JFK\",\"ATL\",159.00,120.00,0.00,\"\",0.00,130.00,106.00,760.00,33.00,0.00,0.00,0.00,87.00,\n2015,5,27,\"DL\",\"2386\",\"ATL\",\"LGA\",42.00,26.00,0.00,\"\",0.00,122.00,99.00,762.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,27,\"DL\",\"2390\",\"JFK\",\"ATL\",120.00,135.00,0.00,\"\",0.00,187.00,105.00,760.00,23.00,0.00,15.00,0.00,97.00,\n2015,5,27,\"DL\",\"2395\",\"LGA\",\"PBI\",36.00,24.00,0.00,\"\",0.00,168.00,141.00,1035.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"2404\",\"SAN\",\"JFK\",-8.00,-13.00,0.00,\"\",0.00,329.00,289.00,2446.00,,,,,,\n2015,5,27,\"DL\",\"2405\",\"PHX\",\"JFK\",121.00,130.00,0.00,\"\",0.00,304.00,259.00,2153.00,0.00,0.00,113.00,0.00,17.00,\n2015,5,27,\"DL\",\"2406\",\"TPA\",\"LGA\",4.00,-12.00,0.00,\"\",0.00,142.00,127.00,1010.00,,,,,,\n2015,5,27,\"DL\",\"2413\",\"MIA\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,171.00,147.00,1096.00,,,,,,\n2015,5,27,\"DL\",\"2432\",\"DTW\",\"SYR\",134.00,131.00,0.00,\"\",0.00,76.00,54.00,374.00,0.00,0.00,0.00,0.00,131.00,\n2015,5,27,\"DL\",\"2441\",\"SAN\",\"JFK\",53.00,64.00,0.00,\"\",0.00,338.00,305.00,2446.00,6.00,0.00,11.00,0.00,47.00,\n2015,5,27,\"DL\",\"2450\",\"MCO\",\"LGA\",-9.00,-13.00,0.00,\"\",0.00,152.00,129.00,950.00,,,,,,\n2015,5,27,\"DL\",\"2456\",\"JFK\",\"DEN\",2.00,50.00,0.00,\"\",0.00,332.00,243.00,1626.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,27,\"DL\",\"2464\",\"TPA\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,155.00,133.00,1005.00,,,,,,\n2015,5,27,\"DL\",\"2466\",\"ATL\",\"SYR\",-1.00,-8.00,0.00,\"\",0.00,130.00,99.00,794.00,,,,,,\n2015,5,27,\"DL\",\"2466\",\"SYR\",\"ATL\",-2.00,-18.00,0.00,\"\",0.00,134.00,110.00,794.00,,,,,,\n2015,5,27,\"DL\",\"2473\",\"ATL\",\"BUF\",1.00,-18.00,0.00,\"\",0.00,109.00,92.00,712.00,,,,,,\n2015,5,27,\"DL\",\"2474\",\"JFK\",\"PHX\",33.00,21.00,0.00,\"\",0.00,324.00,288.00,2153.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"2495\",\"MIA\",\"JFK\",61.00,76.00,0.00,\"\",0.00,203.00,142.00,1089.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,27,\"DL\",\"2496\",\"ATL\",\"LGA\",12.00,7.00,0.00,\"\",0.00,129.00,104.00,762.00,,,,,,\n2015,5,27,\"DL\",\"2498\",\"FLL\",\"LGA\",93.00,83.00,0.00,\"\",0.00,173.00,144.00,1076.00,0.00,0.00,83.00,0.00,0.00,\n2015,5,27,\"DL\",\"2502\",\"JFK\",\"MIA\",252.00,244.00,0.00,\"\",0.00,202.00,142.00,1089.00,1.00,0.00,0.00,0.00,243.00,\n2015,5,27,\"DL\",\"2521\",\"SFO\",\"JFK\",49.00,41.00,0.00,\"\",0.00,333.00,298.00,2586.00,0.00,0.00,8.00,0.00,33.00,\n2015,5,27,\"DL\",\"2542\",\"JFK\",\"MSP\",269.00,242.00,0.00,\"\",0.00,184.00,146.00,1029.00,18.00,0.00,0.00,0.00,224.00,\n2015,5,27,\"DL\",\"2551\",\"JFK\",\"TPA\",-3.00,4.00,0.00,\"\",0.00,193.00,137.00,1005.00,,,,,,\n2015,5,27,\"DL\",\"2554\",\"DEN\",\"JFK\",14.00,12.00,0.00,\"\",0.00,239.00,206.00,1626.00,,,,,,\n2015,5,27,\"DL\",\"2565\",\"JFK\",\"ATL\",-1.00,-9.00,0.00,\"\",0.00,159.00,116.00,760.00,,,,,,\n2015,5,27,\"DL\",\"2567\",\"DTW\",\"ALB\",39.00,27.00,0.00,\"\",0.00,76.00,63.00,489.00,0.00,0.00,11.00,0.00,16.00,\n2015,5,27,\"DL\",\"2569\",\"JFK\",\"PHX\",2.00,84.00,0.00,\"\",0.00,425.00,293.00,2153.00,0.00,0.00,84.00,0.00,0.00,\n2015,5,27,\"DL\",\"2571\",\"JFK\",\"PBI\",-6.00,-7.00,0.00,\"\",0.00,186.00,141.00,1028.00,,,,,,\n2015,5,27,\"DL\",\"2577\",\"JFK\",\"FLL\",183.00,146.00,0.00,\"\",0.00,168.00,143.00,1069.00,85.00,0.00,0.00,0.00,61.00,\n2015,5,27,\"DL\",\"2593\",\"SAT\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,232.00,200.00,1587.00,,,,,,\n2015,5,27,\"DL\",\"2594\",\"DEN\",\"LGA\",46.00,38.00,0.00,\"\",0.00,228.00,192.00,1620.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,27,\"DL\",\"2595\",\"FLL\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,168.00,144.00,1076.00,,,,,,\n2015,5,27,\"DL\",\"2596\",\"PBI\",\"LGA\",59.00,41.00,0.00,\"\",0.00,155.00,135.00,1035.00,0.00,0.00,40.00,0.00,1.00,\n2015,5,27,\"DL\",\"2622\",\"ROC\",\"DTW\",-7.00,-27.00,0.00,\"\",0.00,62.00,48.00,296.00,,,,,,\n2015,5,27,\"DL\",\"2632\",\"JFK\",\"MCO\",-5.00,-15.00,0.00,\"\",0.00,173.00,125.00,944.00,,,,,,\n2015,5,27,\"DL\",\"2634\",\"JFK\",\"BUF\",162.00,137.00,0.00,\"\",0.00,78.00,56.00,301.00,137.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"DL\",\"2645\",\"JFK\",\"RSW\",-7.00,-21.00,0.00,\"\",0.00,187.00,154.00,1074.00,,,,,,\n2015,5,27,\"DL\",\"2649\",\"JFK\",\"TPA\",-6.00,-15.00,0.00,\"\",0.00,179.00,138.00,1005.00,,,,,,\n2015,5,27,\"DL\",\"2650\",\"TPA\",\"JFK\",4.00,-12.00,0.00,\"\",0.00,152.00,130.00,1005.00,,,,,,\n2015,5,27,\"DL\",\"2652\",\"TPA\",\"JFK\",59.00,59.00,0.00,\"\",0.00,174.00,128.00,1005.00,0.00,0.00,59.00,0.00,0.00,\n2015,5,27,\"DL\",\"2653\",\"MCO\",\"JFK\",115.00,102.00,0.00,\"\",0.00,153.00,125.00,944.00,0.00,0.00,102.00,0.00,0.00,\n2015,5,30,\"DL\",\"1298\",\"LGA\",\"ATL\",41.00,37.00,0.00,\"\",0.00,153.00,118.00,762.00,0.00,0.00,0.00,0.00,37.00,\n2015,5,30,\"DL\",\"1312\",\"TPA\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,160.00,138.00,1005.00,,,,,,\n2015,5,30,\"DL\",\"1335\",\"MIA\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,171.00,149.00,1096.00,,,,,,\n2015,5,30,\"DL\",\"1356\",\"BUF\",\"DTW\",6.00,-14.00,0.00,\"\",0.00,58.00,42.00,241.00,,,,,,\n2015,5,30,\"DL\",\"1359\",\"MCO\",\"LGA\",24.00,30.00,0.00,\"\",0.00,166.00,127.00,950.00,24.00,0.00,6.00,0.00,0.00,\n2015,5,30,\"DL\",\"1370\",\"ATL\",\"ROC\",-2.00,-14.00,0.00,\"\",0.00,111.00,95.00,749.00,,,,,,\n2015,5,30,\"DL\",\"1370\",\"ROC\",\"ATL\",-7.00,-19.00,0.00,\"\",0.00,121.00,101.00,749.00,,,,,,\n2015,5,30,\"DL\",\"1372\",\"DTW\",\"BUF\",2.00,-5.00,0.00,\"\",0.00,59.00,34.00,241.00,,,,,,\n2015,5,30,\"DL\",\"1383\",\"LGA\",\"ATL\",-4.00,-8.00,0.00,\"\",0.00,158.00,115.00,762.00,,,,,,\n2015,5,30,\"DL\",\"1386\",\"ATL\",\"LGA\",-3.00,3.00,0.00,\"\",0.00,140.00,107.00,762.00,,,,,,\n2015,5,30,\"DL\",\"1394\",\"ATL\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,138.00,103.00,760.00,,,,,,\n2015,5,30,\"DL\",\"1409\",\"FLL\",\"LGA\",-8.00,-25.00,0.00,\"\",0.00,162.00,143.00,1076.00,,,,,,\n2015,5,30,\"DL\",\"1419\",\"ATL\",\"JFK\",1.00,-8.00,0.00,\"\",0.00,146.00,106.00,760.00,,,,,,\n2015,5,30,\"DL\",\"1428\",\"LGA\",\"ATL\",-2.00,-32.00,0.00,\"\",0.00,126.00,107.00,762.00,,,,,,\n2015,5,30,\"DL\",\"1429\",\"MSY\",\"LGA\",42.00,45.00,0.00,\"\",0.00,178.00,159.00,1183.00,12.00,0.00,3.00,0.00,30.00,\n2015,5,30,\"DL\",\"1463\",\"DEN\",\"LGA\",-3.00,-26.00,0.00,\"\",0.00,211.00,195.00,1620.00,,,,,,\n2015,5,30,\"DL\",\"1473\",\"SEA\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,314.00,289.00,2422.00,,,,,,\n2015,5,30,\"DL\",\"1479\",\"TPA\",\"LGA\",-13.00,-10.00,0.00,\"\",0.00,164.00,140.00,1010.00,,,,,,\n2015,5,30,\"DL\",\"1486\",\"ATL\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,127.00,107.00,762.00,,,,,,\n2015,5,30,\"DL\",\"1487\",\"ATL\",\"JFK\",-1.00,-16.00,0.00,\"\",0.00,128.00,107.00,760.00,,,,,,\n2015,5,30,\"DL\",\"1496\",\"MSP\",\"LGA\",-10.00,-8.00,0.00,\"\",0.00,162.00,139.00,1020.00,,,,,,\n2015,5,30,\"DL\",\"1498\",\"FLL\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,176.00,153.00,1076.00,,,,,,\n2015,5,30,\"DL\",\"1510\",\"FLL\",\"LGA\",-4.00,1.00,0.00,\"\",0.00,181.00,154.00,1076.00,,,,,,\n2015,5,30,\"DL\",\"1514\",\"LGA\",\"FLL\",-8.00,1.00,0.00,\"\",0.00,196.00,144.00,1076.00,,,,,,\n2015,5,30,\"DL\",\"1515\",\"ATL\",\"ALB\",-1.00,-16.00,0.00,\"\",0.00,130.00,109.00,853.00,,,,,,\n2015,5,30,\"DL\",\"1526\",\"MCO\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,159.00,140.00,950.00,,,,,,\n2015,5,30,\"DL\",\"1531\",\"LGA\",\"TPA\",-4.00,-21.00,0.00,\"\",0.00,160.00,141.00,1010.00,,,,,,\n2015,5,30,\"DL\",\"1542\",\"SEA\",\"JFK\",-4.00,-34.00,0.00,\"\",0.00,292.00,270.00,2422.00,,,,,,\n2015,5,30,\"DL\",\"1562\",\"BOS\",\"JFK\",-3.00,-3.00,0.00,\"\",0.00,78.00,56.00,187.00,,,,,,\n2015,5,30,\"DL\",\"1584\",\"ATL\",\"ROC\",-1.00,-11.00,0.00,\"\",0.00,122.00,99.00,749.00,,,,,,\n2015,5,30,\"DL\",\"1584\",\"ROC\",\"ATL\",-6.00,-18.00,0.00,\"\",0.00,122.00,106.00,749.00,,,,,,\n2015,5,30,\"DL\",\"1586\",\"ATL\",\"LGA\",1.00,-12.00,0.00,\"\",0.00,130.00,110.00,762.00,,,,,,\n2015,5,30,\"DL\",\"1596\",\"MSP\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,155.00,140.00,1020.00,,,,,,\n2015,5,30,\"DL\",\"1642\",\"LGA\",\"MSY\",5.00,-19.00,0.00,\"\",0.00,185.00,156.00,1183.00,,,,,,\n2015,5,30,\"DL\",\"1644\",\"FLL\",\"JFK\",-7.00,-12.00,0.00,\"\",0.00,181.00,143.00,1069.00,,,,,,\n2015,5,30,\"DL\",\"1647\",\"LGA\",\"ATL\",-1.00,-13.00,0.00,\"\",0.00,138.00,101.00,762.00,,,,,,\n2015,5,30,\"DL\",\"1671\",\"MIA\",\"JFK\",4.00,-6.00,0.00,\"\",0.00,176.00,142.00,1089.00,,,,,,\n2015,5,30,\"DL\",\"1672\",\"ATL\",\"BUF\",32.00,22.00,0.00,\"\",0.00,106.00,91.00,712.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"DL\",\"1672\",\"BUF\",\"ATL\",13.00,15.00,0.00,\"\",0.00,129.00,102.00,712.00,0.00,0.00,2.00,0.00,13.00,\n2015,5,30,\"DL\",\"1685\",\"LGA\",\"MCO\",-5.00,-23.00,0.00,\"\",0.00,155.00,127.00,950.00,,,,,,\n2015,5,30,\"DL\",\"1697\",\"LGA\",\"ATL\",-5.00,-25.00,0.00,\"\",0.00,133.00,104.00,762.00,,,,,,\n2015,5,30,\"DL\",\"1699\",\"MIA\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,164.00,147.00,1096.00,,,,,,\n2015,5,30,\"DL\",\"1702\",\"LGA\",\"FLL\",-4.00,16.00,0.00,\"\",0.00,209.00,147.00,1076.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,30,\"DL\",\"1728\",\"LAS\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,296.00,273.00,2248.00,,,,,,\n2015,5,30,\"DL\",\"1750\",\"ATL\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,136.00,105.00,760.00,,,,,,\n2015,5,30,\"DL\",\"1786\",\"ATL\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,119.00,107.00,762.00,,,,,,\n2015,5,30,\"DL\",\"1800\",\"LGA\",\"DEN\",1.00,-46.00,0.00,\"\",0.00,227.00,209.00,1620.00,,,,,,\n2015,5,30,\"DL\",\"1806\",\"DTW\",\"JFK\",7.00,-5.00,0.00,\"\",0.00,102.00,75.00,509.00,,,,,,\n2015,5,30,\"DL\",\"1841\",\"SJU\",\"JFK\",-5.00,-34.00,0.00,\"\",0.00,218.00,196.00,1598.00,,,,,,\n2015,5,30,\"DL\",\"1851\",\"CHS\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,115.00,87.00,636.00,,,,,,\n2015,5,30,\"DL\",\"1875\",\"LGA\",\"TPA\",-2.00,-10.00,0.00,\"\",0.00,171.00,137.00,1010.00,,,,,,\n2015,5,30,\"DL\",\"1879\",\"LGA\",\"FLL\",-3.00,-21.00,0.00,\"\",0.00,166.00,143.00,1076.00,,,,,,\n2015,5,30,\"DL\",\"1885\",\"LGA\",\"MCO\",-6.00,-28.00,0.00,\"\",0.00,156.00,132.00,950.00,,,,,,\n2015,5,30,\"DL\",\"1897\",\"LGA\",\"MCO\",-6.00,-23.00,0.00,\"\",0.00,154.00,124.00,950.00,,,,,,\n2015,5,30,\"DL\",\"1902\",\"LGA\",\"PBI\",-6.00,-20.00,0.00,\"\",0.00,171.00,140.00,1035.00,,,,,,\n2015,5,30,\"DL\",\"1919\",\"LGA\",\"MSP\",-2.00,-28.00,0.00,\"\",0.00,152.00,136.00,1020.00,,,,,,\n2015,5,30,\"DL\",\"1947\",\"FLL\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,177.00,153.00,1069.00,,,,,,\n2015,5,30,\"DL\",\"1948\",\"DTW\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,100.00,78.00,502.00,,,,,,\n2015,5,30,\"DL\",\"1958\",\"PBI\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,161.00,144.00,1035.00,,,,,,\n2015,5,30,\"DL\",\"1969\",\"BUF\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,71.00,53.00,301.00,,,,,,\n2015,5,30,\"DL\",\"1972\",\"AUS\",\"JFK\",1.00,1.00,0.00,\"\",0.00,222.00,200.00,1521.00,,,,,,\n2015,5,30,\"DL\",\"1982\",\"LGA\",\"MIA\",-5.00,-22.00,0.00,\"\",0.00,179.00,147.00,1096.00,,,,,,\n2015,5,30,\"DL\",\"1985\",\"ALB\",\"DTW\",-8.00,-25.00,0.00,\"\",0.00,84.00,71.00,489.00,,,,,,\n2015,5,30,\"DL\",\"1986\",\"ATL\",\"LGA\",1.00,-24.00,0.00,\"\",0.00,120.00,104.00,762.00,,,,,,\n2015,5,30,\"DL\",\"1994\",\"PHX\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,275.00,257.00,2153.00,,,,,,\n2015,5,30,\"DL\",\"1996\",\"MSP\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,162.00,146.00,1020.00,,,,,,\n2015,5,30,\"DL\",\"2003\",\"LGA\",\"MIA\",-2.00,-16.00,0.00,\"\",0.00,171.00,150.00,1096.00,,,,,,\n2015,5,30,\"DL\",\"2013\",\"ATL\",\"SYR\",-3.00,-21.00,0.00,\"\",0.00,115.00,98.00,794.00,,,,,,\n2015,5,30,\"DL\",\"2014\",\"SYR\",\"ATL\",-8.00,-11.00,0.00,\"\",0.00,134.00,108.00,794.00,,,,,,\n2015,5,30,\"DL\",\"2015\",\"JFK\",\"SJU\",-6.00,-27.00,0.00,\"\",0.00,218.00,198.00,1598.00,,,,,,\n2015,5,30,\"DL\",\"2016\",\"LGA\",\"ATL\",-13.00,-32.00,0.00,\"\",0.00,131.00,104.00,762.00,,,,,,\n2015,5,30,\"DL\",\"2020\",\"JFK\",\"PBI\",-8.00,-26.00,0.00,\"\",0.00,168.00,136.00,1028.00,,,,,,\n2015,5,30,\"DL\",\"2022\",\"JFK\",\"ATL\",-5.00,-17.00,0.00,\"\",0.00,157.00,116.00,760.00,,,,,,\n2015,5,30,\"DL\",\"2025\",\"JFK\",\"FLL\",-4.00,-26.00,0.00,\"\",0.00,178.00,142.00,1069.00,,,,,,\n2015,5,30,\"DL\",\"2028\",\"JFK\",\"ATL\",5.00,-18.00,0.00,\"\",0.00,140.00,101.00,760.00,,,,,,\n2015,5,30,\"DL\",\"2032\",\"MSP\",\"JFK\",-6.00,-6.00,0.00,\"\",0.00,165.00,143.00,1029.00,,,,,,\n2015,5,30,\"DL\",\"2038\",\"JFK\",\"TPA\",2.00,0.00,0.00,\"\",0.00,182.00,134.00,1005.00,,,,,,\n2015,5,30,\"DL\",\"2045\",\"JFK\",\"ATL\",12.00,-10.00,0.00,\"\",0.00,143.00,104.00,760.00,,,,,,\n2015,5,30,\"DL\",\"2053\",\"JFK\",\"FLL\",-9.00,-44.00,0.00,\"\",0.00,165.00,139.00,1069.00,,,,,,\n2015,5,30,\"DL\",\"2058\",\"MCO\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,147.00,129.00,944.00,,,,,,\n2015,5,30,\"DL\",\"2073\",\"JFK\",\"DEN\",22.00,11.00,0.00,\"\",0.00,267.00,210.00,1626.00,,,,,,\n2015,5,30,\"DL\",\"2074\",\"LGA\",\"ATL\",-4.00,-11.00,0.00,\"\",0.00,146.00,106.00,762.00,,,,,,\n2015,5,30,\"DL\",\"2077\",\"LGA\",\"MCO\",-4.00,19.00,0.00,\"\",0.00,196.00,123.00,950.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,30,\"DL\",\"2096\",\"LGA\",\"MSP\",2.00,-11.00,0.00,\"\",0.00,176.00,140.00,1020.00,,,,,,\n2015,5,30,\"DL\",\"2107\",\"JFK\",\"PHX\",-7.00,-25.00,0.00,\"\",0.00,311.00,273.00,2153.00,,,,,,\n2015,5,30,\"DL\",\"2119\",\"LGA\",\"MSP\",-2.00,-19.00,0.00,\"\",0.00,165.00,139.00,1020.00,,,,,,\n2015,5,30,\"DL\",\"2129\",\"ROC\",\"ATL\",-5.00,-15.00,0.00,\"\",0.00,119.00,103.00,749.00,,,,,,\n2015,5,30,\"DL\",\"2142\",\"JFK\",\"SAN\",-6.00,-39.00,0.00,\"\",0.00,338.00,300.00,2446.00,,,,,,\n2015,5,30,\"DL\",\"2150\",\"LGA\",\"DTW\",-2.00,-35.00,0.00,\"\",0.00,95.00,75.00,502.00,,,,,,\n2015,5,30,\"DL\",\"2151\",\"MIA\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,185.00,153.00,1096.00,,,,,,\n2015,5,30,\"DL\",\"2155\",\"LAS\",\"JFK\",3.00,-10.00,0.00,\"\",0.00,286.00,268.00,2248.00,,,,,,\n2015,5,30,\"DL\",\"2156\",\"ATL\",\"SYR\",-1.00,-14.00,0.00,\"\",0.00,115.00,100.00,794.00,,,,,,\n2015,5,30,\"DL\",\"2156\",\"SYR\",\"ATL\",-7.00,-23.00,0.00,\"\",0.00,124.00,108.00,794.00,,,,,,\n2015,5,30,\"DL\",\"2166\",\"SYR\",\"DTW\",-3.00,-27.00,0.00,\"\",0.00,69.00,56.00,374.00,,,,,,\n2015,5,28,\"DL\",\"2013\",\"ATL\",\"SYR\",27.00,13.00,0.00,\"\",0.00,121.00,100.00,794.00,,,,,,\n2015,5,28,\"DL\",\"2014\",\"SYR\",\"ATL\",-3.00,-6.00,0.00,\"\",0.00,136.00,119.00,794.00,,,,,,\n2015,5,28,\"DL\",\"2016\",\"LGA\",\"ATL\",0.00,-3.00,0.00,\"\",0.00,150.00,111.00,762.00,,,,,,\n2015,5,28,\"DL\",\"2022\",\"LGA\",\"FLL\",-4.00,-11.00,0.00,\"\",0.00,185.00,155.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"2028\",\"FLL\",\"LGA\",4.00,-11.00,0.00,\"\",0.00,166.00,142.00,1076.00,,,,,,\n2015,5,28,\"DL\",\"2032\",\"MSP\",\"JFK\",3.00,-5.00,0.00,\"\",0.00,159.00,129.00,1029.00,,,,,,\n2015,5,28,\"DL\",\"2037\",\"JFK\",\"FLL\",-1.00,-32.00,0.00,\"\",0.00,170.00,147.00,1069.00,,,,,,\n2015,5,28,\"DL\",\"2040\",\"SFO\",\"JFK\",48.00,28.00,0.00,\"\",0.00,321.00,298.00,2586.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"DL\",\"2043\",\"JFK\",\"BOS\",15.00,-10.00,0.00,\"\",0.00,76.00,40.00,187.00,,,,,,\n2015,5,28,\"DL\",\"2056\",\"MSP\",\"ROC\",0.00,-25.00,0.00,\"\",0.00,112.00,97.00,783.00,,,,,,\n2015,5,28,\"DL\",\"2058\",\"MCO\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,142.00,126.00,944.00,,,,,,\n2015,5,28,\"DL\",\"2059\",\"JFK\",\"SAT\",2.00,-21.00,0.00,\"\",0.00,249.00,205.00,1587.00,,,,,,\n2015,5,28,\"DL\",\"2074\",\"LGA\",\"ATL\",-2.00,-8.00,0.00,\"\",0.00,152.00,108.00,762.00,,,,,,\n2015,5,28,\"DL\",\"2077\",\"LGA\",\"MCO\",-3.00,-4.00,0.00,\"\",0.00,175.00,132.00,950.00,,,,,,\n2015,5,28,\"DL\",\"2086\",\"ATL\",\"LGA\",8.00,10.00,0.00,\"\",0.00,146.00,96.00,762.00,,,,,,\n2015,5,28,\"DL\",\"2096\",\"LGA\",\"MSP\",4.00,-10.00,0.00,\"\",0.00,168.00,146.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"2119\",\"LGA\",\"MSP\",-1.00,-12.00,0.00,\"\",0.00,174.00,142.00,1020.00,,,,,,\n2015,5,28,\"DL\",\"2122\",\"JFK\",\"MCO\",-2.00,-25.00,0.00,\"\",0.00,167.00,130.00,944.00,,,,,,\n2015,5,28,\"DL\",\"2129\",\"ROC\",\"ATL\",-4.00,-8.00,0.00,\"\",0.00,125.00,107.00,749.00,,,,,,\n2015,5,28,\"DL\",\"2131\",\"LGA\",\"DTW\",-4.00,-2.00,0.00,\"\",0.00,121.00,82.00,502.00,,,,,,\n2015,5,28,\"DL\",\"2135\",\"TPA\",\"LGA\",-7.00,2.00,0.00,\"\",0.00,173.00,138.00,1010.00,,,,,,\n2015,5,28,\"DL\",\"2148\",\"LGA\",\"DTW\",-2.00,-23.00,0.00,\"\",0.00,107.00,78.00,502.00,,,,,,\n2015,5,28,\"DL\",\"2150\",\"LGA\",\"DTW\",58.00,45.00,0.00,\"\",0.00,113.00,79.00,502.00,0.00,0.00,0.00,0.00,45.00,\n2015,5,28,\"DL\",\"2151\",\"MIA\",\"LGA\",,,1.00,\"A\",0.00,,,1096.00,,,,,,\n2015,5,29,\"DL\",\"1660\",\"MIA\",\"LGA\",-2.00,5.00,0.00,\"\",0.00,193.00,148.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"1671\",\"MIA\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,181.00,144.00,1089.00,,,,,,\n2015,5,29,\"DL\",\"1672\",\"ATL\",\"BUF\",-3.00,-5.00,0.00,\"\",0.00,117.00,94.00,712.00,,,,,,\n2015,5,29,\"DL\",\"1672\",\"BUF\",\"ATL\",-4.00,-11.00,0.00,\"\",0.00,121.00,103.00,712.00,,,,,,\n2015,5,29,\"DL\",\"1685\",\"LGA\",\"MCO\",-3.00,-1.00,0.00,\"\",0.00,177.00,128.00,950.00,,,,,,\n2015,5,29,\"DL\",\"1697\",\"LGA\",\"ATL\",-4.00,-8.00,0.00,\"\",0.00,154.00,113.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1728\",\"LAS\",\"JFK\",-1.00,14.00,0.00,\"\",0.00,316.00,271.00,2248.00,,,,,,\n2015,5,29,\"DL\",\"1750\",\"ATL\",\"JFK\",9.00,5.00,0.00,\"\",0.00,145.00,106.00,760.00,,,,,,\n2015,5,29,\"DL\",\"1762\",\"LAX\",\"JFK\",2.00,0.00,0.00,\"\",0.00,333.00,301.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"1779\",\"LGA\",\"MSY\",-6.00,-23.00,0.00,\"\",0.00,182.00,155.00,1183.00,,,,,,\n2015,5,29,\"DL\",\"1786\",\"ATL\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,127.00,106.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1796\",\"LGA\",\"MSP\",0.00,-5.00,0.00,\"\",0.00,189.00,148.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"1830\",\"SLC\",\"JFK\",3.00,-18.00,0.00,\"\",0.00,255.00,234.00,1990.00,,,,,,\n2015,5,29,\"DL\",\"1841\",\"SJU\",\"JFK\",-3.00,-1.00,0.00,\"\",0.00,249.00,205.00,1598.00,,,,,,\n2015,5,29,\"DL\",\"1848\",\"DTW\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,101.00,72.00,502.00,,,,,,\n2015,5,29,\"DL\",\"1849\",\"LGA\",\"ATL\",-3.00,-8.00,0.00,\"\",0.00,153.00,106.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1851\",\"CHS\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,115.00,95.00,636.00,,,,,,\n2015,5,29,\"DL\",\"1875\",\"LGA\",\"TPA\",-4.00,-2.00,0.00,\"\",0.00,182.00,141.00,1010.00,,,,,,\n2015,5,29,\"DL\",\"1879\",\"LGA\",\"FLL\",-3.00,-19.00,0.00,\"\",0.00,171.00,139.00,1076.00,,,,,,\n2015,5,29,\"DL\",\"1885\",\"LGA\",\"MCO\",-4.00,-17.00,0.00,\"\",0.00,167.00,128.00,950.00,,,,,,\n2015,5,29,\"DL\",\"1886\",\"ATL\",\"LGA\",-1.00,-23.00,0.00,\"\",0.00,128.00,106.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1897\",\"LGA\",\"MCO\",64.00,44.00,0.00,\"\",0.00,154.00,124.00,950.00,0.00,0.00,0.00,0.00,44.00,\n2015,5,29,\"DL\",\"1902\",\"LGA\",\"PBI\",-5.00,-32.00,0.00,\"\",0.00,157.00,132.00,1035.00,,,,,,\n2015,5,29,\"DL\",\"1917\",\"MIA\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,178.00,150.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"1919\",\"LGA\",\"MSP\",1.00,-2.00,0.00,\"\",0.00,179.00,153.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"1930\",\"LGA\",\"MIA\",-7.00,-9.00,0.00,\"\",0.00,196.00,161.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"1935\",\"LGA\",\"TPA\",26.00,17.00,0.00,\"\",0.00,173.00,135.00,1010.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"1947\",\"FLL\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,168.00,145.00,1069.00,,,,,,\n2015,5,29,\"DL\",\"1948\",\"DTW\",\"LGA\",19.00,15.00,0.00,\"\",0.00,103.00,73.00,502.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"1949\",\"TPA\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,162.00,142.00,1010.00,,,,,,\n2015,5,29,\"DL\",\"1953\",\"LGA\",\"FLL\",-2.00,-18.00,0.00,\"\",0.00,178.00,137.00,1076.00,,,,,,\n2015,5,29,\"DL\",\"1958\",\"PBI\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,165.00,146.00,1035.00,,,,,,\n2015,5,29,\"DL\",\"1969\",\"BUF\",\"JFK\",-4.00,-1.00,0.00,\"\",0.00,93.00,54.00,301.00,,,,,,\n2015,5,29,\"DL\",\"1972\",\"AUS\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,226.00,202.00,1521.00,,,,,,\n2015,5,29,\"DL\",\"1982\",\"LGA\",\"MIA\",-2.00,25.00,0.00,\"\",0.00,223.00,140.00,1096.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,29,\"DL\",\"1985\",\"ALB\",\"DTW\",-6.00,-20.00,0.00,\"\",0.00,87.00,72.00,489.00,,,,,,\n2015,5,29,\"DL\",\"1986\",\"ATL\",\"LGA\",7.00,-17.00,0.00,\"\",0.00,126.00,104.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1994\",\"PHX\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,281.00,255.00,2153.00,,,,,,\n2015,5,29,\"DL\",\"1996\",\"MSP\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,159.00,128.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"2003\",\"LGA\",\"MIA\",-2.00,-8.00,0.00,\"\",0.00,181.00,137.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"2013\",\"ATL\",\"SYR\",-7.00,-19.00,0.00,\"\",0.00,123.00,98.00,794.00,,,,,,\n2015,5,29,\"DL\",\"2014\",\"SYR\",\"ATL\",-4.00,4.00,0.00,\"\",0.00,147.00,115.00,794.00,,,,,,\n2015,5,29,\"DL\",\"2016\",\"LGA\",\"ATL\",1.00,-8.00,0.00,\"\",0.00,144.00,104.00,762.00,,,,,,\n2015,5,29,\"DL\",\"2022\",\"LGA\",\"FLL\",-1.00,-11.00,0.00,\"\",0.00,182.00,145.00,1076.00,,,,,,\n2015,5,29,\"DL\",\"2028\",\"FLL\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,169.00,147.00,1076.00,,,,,,\n2015,5,29,\"DL\",\"2032\",\"MSP\",\"JFK\",7.00,-2.00,0.00,\"\",0.00,158.00,129.00,1029.00,,,,,,\n2015,5,29,\"DL\",\"2037\",\"JFK\",\"FLL\",-7.00,-35.00,0.00,\"\",0.00,173.00,141.00,1069.00,,,,,,\n2015,5,29,\"DL\",\"2040\",\"SFO\",\"JFK\",5.00,-7.00,0.00,\"\",0.00,329.00,302.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"2043\",\"JFK\",\"BOS\",131.00,100.00,0.00,\"\",0.00,70.00,36.00,187.00,0.00,0.00,73.00,0.00,27.00,\n2015,5,29,\"DL\",\"2058\",\"MCO\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,152.00,129.00,944.00,,,,,,\n2015,5,29,\"DL\",\"2059\",\"JFK\",\"SAT\",-2.00,-31.00,0.00,\"\",0.00,240.00,206.00,1587.00,,,,,,\n2015,5,29,\"DL\",\"2074\",\"LGA\",\"ATL\",4.00,0.00,0.00,\"\",0.00,154.00,101.00,762.00,,,,,,\n2015,5,29,\"DL\",\"2077\",\"LGA\",\"MCO\",-13.00,-4.00,0.00,\"\",0.00,185.00,127.00,950.00,,,,,,\n2015,5,29,\"DL\",\"2086\",\"ATL\",\"LGA\",60.00,51.00,0.00,\"\",0.00,135.00,107.00,762.00,15.00,0.00,0.00,0.00,36.00,\n2015,5,29,\"DL\",\"2096\",\"LGA\",\"MSP\",-2.00,-18.00,0.00,\"\",0.00,166.00,146.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"2119\",\"LGA\",\"MSP\",-11.00,11.00,0.00,\"\",0.00,207.00,145.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"2122\",\"JFK\",\"MCO\",221.00,182.00,0.00,\"\",0.00,151.00,123.00,944.00,182.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"2129\",\"ROC\",\"ATL\",4.00,-1.00,0.00,\"\",0.00,124.00,110.00,749.00,,,,,,\n2015,5,29,\"DL\",\"2131\",\"LGA\",\"DTW\",-2.00,3.00,0.00,\"\",0.00,124.00,88.00,502.00,,,,,,\n2015,5,29,\"DL\",\"2135\",\"TPA\",\"LGA\",-10.00,-15.00,0.00,\"\",0.00,159.00,135.00,1010.00,,,,,,\n2015,5,29,\"DL\",\"2148\",\"LGA\",\"DTW\",0.00,-9.00,0.00,\"\",0.00,119.00,82.00,502.00,,,,,,\n2015,5,29,\"DL\",\"2150\",\"LGA\",\"DTW\",23.00,6.00,0.00,\"\",0.00,109.00,77.00,502.00,,,,,,\n2015,5,29,\"DL\",\"2151\",\"MIA\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,185.00,155.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"2155\",\"LAS\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,284.00,260.00,2248.00,,,,,,\n2015,5,29,\"DL\",\"2156\",\"ATL\",\"SYR\",2.00,9.00,0.00,\"\",0.00,137.00,100.00,794.00,,,,,,\n2015,5,29,\"DL\",\"2156\",\"SYR\",\"ATL\",6.00,-8.00,0.00,\"\",0.00,129.00,107.00,794.00,,,,,,\n2015,5,29,\"DL\",\"2166\",\"SYR\",\"DTW\",-5.00,-23.00,0.00,\"\",0.00,75.00,59.00,374.00,,,,,,\n2015,5,29,\"DL\",\"2174\",\"DTW\",\"JFK\",5.00,11.00,0.00,\"\",0.00,127.00,75.00,509.00,,,,,,\n2015,5,29,\"DL\",\"2175\",\"FLL\",\"JFK\",-6.00,-27.00,0.00,\"\",0.00,165.00,143.00,1069.00,,,,,,\n2015,5,29,\"DL\",\"2178\",\"LGA\",\"TPA\",1.00,-13.00,0.00,\"\",0.00,167.00,140.00,1010.00,,,,,,\n2015,5,29,\"DL\",\"2181\",\"LGA\",\"MCO\",1.00,-23.00,0.00,\"\",0.00,146.00,121.00,950.00,,,,,,\n2015,5,29,\"DL\",\"2185\",\"FLL\",\"JFK\",-9.00,-11.00,0.00,\"\",0.00,171.00,147.00,1069.00,,,,,,\n2015,5,29,\"DL\",\"2186\",\"ATL\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,129.00,105.00,762.00,,,,,,\n2015,5,29,\"DL\",\"2189\",\"JFK\",\"FLL\",-8.00,-25.00,0.00,\"\",0.00,186.00,139.00,1069.00,,,,,,\n2015,5,29,\"DL\",\"2190\",\"JFK\",\"MIA\",-3.00,-14.00,0.00,\"\",0.00,191.00,138.00,1089.00,,,,,,\n2015,5,29,\"DL\",\"2208\",\"JFK\",\"LAS\",0.00,-9.00,0.00,\"\",0.00,346.00,293.00,2248.00,,,,,,\n2015,5,29,\"DL\",\"2214\",\"ATL\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,120.00,103.00,762.00,,,,,,\n2015,5,29,\"DL\",\"2217\",\"JFK\",\"PHX\",4.00,-8.00,0.00,\"\",0.00,329.00,291.00,2153.00,,,,,,\n2015,5,29,\"DL\",\"2230\",\"CHS\",\"JFK\",-1.00,5.00,0.00,\"\",0.00,135.00,92.00,636.00,,,,,,\n2015,5,29,\"DL\",\"2231\",\"DTW\",\"LGA\",-3.00,4.00,0.00,\"\",0.00,115.00,76.00,502.00,,,,,,\n2015,5,29,\"DL\",\"2240\",\"SFO\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,330.00,307.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"2248\",\"DTW\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,106.00,81.00,502.00,,,,,,\n2015,5,29,\"DL\",\"2262\",\"LAX\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,320.00,289.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"2270\",\"LGA\",\"RSW\",32.00,27.00,0.00,\"\",0.00,191.00,155.00,1080.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"2276\",\"MCO\",\"JFK\",184.00,169.00,0.00,\"\",0.00,152.00,133.00,944.00,2.00,0.00,0.00,0.00,167.00,\n2015,5,29,\"DL\",\"2277\",\"JFK\",\"TPA\",19.00,4.00,0.00,\"\",0.00,178.00,139.00,1005.00,,,,,,\n2015,5,29,\"DL\",\"2280\",\"LGA\",\"TPA\",42.00,37.00,0.00,\"\",0.00,169.00,134.00,1010.00,0.00,0.00,0.00,0.00,37.00,\n2015,5,29,\"DL\",\"2282\",\"LGA\",\"MCO\",-2.00,-6.00,0.00,\"\",0.00,172.00,120.00,950.00,,,,,,\n2015,5,29,\"DL\",\"2285\",\"LGA\",\"MCO\",0.00,-3.00,0.00,\"\",0.00,160.00,124.00,950.00,,,,,,\n2015,5,29,\"DL\",\"2292\",\"JFK\",\"BOS\",34.00,9.00,0.00,\"\",0.00,67.00,40.00,187.00,,,,,,\n2015,5,29,\"DL\",\"2296\",\"MSP\",\"LGA\",3.00,-14.00,0.00,\"\",0.00,152.00,134.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"2299\",\"JFK\",\"ATL\",0.00,-14.00,0.00,\"\",0.00,155.00,113.00,760.00,,,,,,\n2015,5,29,\"DL\",\"2301\",\"JFK\",\"LAS\",134.00,121.00,0.00,\"\",0.00,341.00,294.00,2248.00,121.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"2311\",\"JFK\",\"MIA\",5.00,-29.00,0.00,\"\",0.00,172.00,140.00,1089.00,,,,,,\n2015,5,29,\"DL\",\"2312\",\"JFK\",\"DTW\",6.00,-23.00,0.00,\"\",0.00,111.00,85.00,509.00,,,,,,\n2015,5,29,\"DL\",\"2317\",\"PBI\",\"LGA\",80.00,73.00,0.00,\"\",0.00,166.00,144.00,1035.00,52.00,0.00,0.00,0.00,21.00,\n2015,5,29,\"DL\",\"2319\",\"LGA\",\"MSP\",-3.00,-18.00,0.00,\"\",0.00,180.00,145.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"2331\",\"LGA\",\"DTW\",-3.00,-24.00,0.00,\"\",0.00,103.00,85.00,502.00,,,,,,\n2015,5,29,\"DL\",\"2349\",\"DTW\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,99.00,76.00,502.00,,,,,,\n2015,5,29,\"DL\",\"2350\",\"ATL\",\"JFK\",7.00,1.00,0.00,\"\",0.00,129.00,108.00,760.00,,,,,,\n2015,5,29,\"DL\",\"2352\",\"LAS\",\"JFK\",-4.00,-29.00,0.00,\"\",0.00,288.00,260.00,2248.00,,,,,,\n2015,5,29,\"DL\",\"2354\",\"SLC\",\"JFK\",-8.00,-35.00,0.00,\"\",0.00,245.00,227.00,1990.00,,,,,,\n2015,5,29,\"DL\",\"2362\",\"LAX\",\"JFK\",11.00,-5.00,0.00,\"\",0.00,314.00,296.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"2382\",\"JFK\",\"AUS\",-7.00,-40.00,0.00,\"\",0.00,231.00,191.00,1521.00,,,,,,\n2015,5,29,\"DL\",\"2386\",\"ATL\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,124.00,106.00,762.00,,,,,,\n2015,5,29,\"DL\",\"2390\",\"JFK\",\"DEN\",-6.00,-24.00,0.00,\"\",0.00,264.00,223.00,1626.00,,,,,,\n2015,5,29,\"DL\",\"2395\",\"LGA\",\"PBI\",-7.00,-12.00,0.00,\"\",0.00,175.00,135.00,1035.00,,,,,,\n2015,5,29,\"DL\",\"2400\",\"JFK\",\"ATL\",2.00,-5.00,0.00,\"\",0.00,165.00,109.00,760.00,,,,,,\n2015,5,29,\"DL\",\"2404\",\"SAN\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,316.00,288.00,2446.00,,,,,,\n2015,5,29,\"DL\",\"2405\",\"PHX\",\"JFK\",21.00,30.00,0.00,\"\",0.00,304.00,253.00,2153.00,9.00,0.00,9.00,0.00,12.00,\n2015,5,29,\"DL\",\"2406\",\"TPA\",\"LGA\",7.00,3.00,0.00,\"\",0.00,154.00,135.00,1010.00,,,,,,\n2015,5,29,\"DL\",\"2413\",\"MIA\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,169.00,149.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"2432\",\"DTW\",\"SYR\",56.00,52.00,0.00,\"\",0.00,75.00,50.00,374.00,52.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"2441\",\"SAN\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,324.00,295.00,2446.00,,,,,,\n2015,5,29,\"DL\",\"2444\",\"JFK\",\"SAN\",-9.00,-34.00,0.00,\"\",0.00,348.00,320.00,2446.00,,,,,,\n2015,5,29,\"DL\",\"2447\",\"DEN\",\"JFK\",-7.00,-38.00,0.00,\"\",0.00,205.00,188.00,1626.00,,,,,,\n2015,5,29,\"DL\",\"2450\",\"MCO\",\"LGA\",-10.00,-18.00,0.00,\"\",0.00,148.00,125.00,950.00,,,,,,\n2015,5,29,\"DL\",\"2456\",\"JFK\",\"DEN\",26.00,-4.00,0.00,\"\",0.00,254.00,213.00,1626.00,,,,,,\n2015,5,30,\"DL\",\"2391\",\"LGA\",\"MSP\",-1.00,-23.00,0.00,\"\",0.00,168.00,148.00,1020.00,,,,,,\n2015,5,30,\"DL\",\"2395\",\"LGA\",\"PBI\",-2.00,-19.00,0.00,\"\",0.00,161.00,141.00,1035.00,,,,,,\n2015,5,30,\"DL\",\"2404\",\"SAN\",\"JFK\",-5.00,-5.00,0.00,\"\",0.00,334.00,298.00,2446.00,,,,,,\n2015,5,30,\"DL\",\"2405\",\"PHX\",\"JFK\",-6.00,1.00,0.00,\"\",0.00,299.00,272.00,2153.00,,,,,,\n2015,5,30,\"DL\",\"2406\",\"TPA\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,150.00,137.00,1010.00,,,,,,\n2015,5,30,\"DL\",\"2413\",\"MIA\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,169.00,152.00,1096.00,,,,,,\n2015,5,30,\"DL\",\"2450\",\"MCO\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,161.00,136.00,950.00,,,,,,\n2015,5,30,\"DL\",\"2464\",\"TPA\",\"JFK\",-1.00,1.00,0.00,\"\",0.00,165.00,143.00,1005.00,,,,,,\n2015,5,30,\"DL\",\"2473\",\"ATL\",\"BUF\",8.00,-7.00,0.00,\"\",0.00,111.00,88.00,712.00,,,,,,\n2015,5,30,\"DL\",\"2474\",\"JFK\",\"SJU\",-1.00,-10.00,0.00,\"\",0.00,230.00,193.00,1598.00,,,,,,\n2015,5,30,\"DL\",\"2495\",\"MIA\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,172.00,150.00,1089.00,,,,,,\n2015,5,30,\"DL\",\"2496\",\"ATL\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,135.00,113.00,762.00,,,,,,\n2015,5,30,\"DL\",\"2554\",\"DEN\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,220.00,198.00,1626.00,,,,,,\n2015,5,30,\"DL\",\"2567\",\"DTW\",\"ALB\",3.00,6.00,0.00,\"\",0.00,91.00,64.00,489.00,,,,,,\n2015,5,30,\"DL\",\"2569\",\"JFK\",\"PHX\",-5.00,-30.00,0.00,\"\",0.00,315.00,279.00,2153.00,,,,,,\n2015,5,30,\"DL\",\"2577\",\"JFK\",\"FLL\",28.00,-4.00,0.00,\"\",0.00,169.00,139.00,1069.00,,,,,,\n2015,5,30,\"DL\",\"2593\",\"SAT\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,235.00,211.00,1587.00,,,,,,\n2015,5,30,\"DL\",\"2594\",\"DEN\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,212.00,197.00,1620.00,,,,,,\n2015,5,30,\"DL\",\"2595\",\"FLL\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,168.00,152.00,1076.00,,,,,,\n2015,5,30,\"DL\",\"2596\",\"PBI\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,161.00,142.00,1035.00,,,,,,\n2015,5,30,\"DL\",\"2605\",\"JFK\",\"MCO\",-6.00,-21.00,0.00,\"\",0.00,172.00,123.00,944.00,,,,,,\n2015,5,30,\"DL\",\"2622\",\"ROC\",\"DTW\",-6.00,-22.00,0.00,\"\",0.00,66.00,47.00,296.00,,,,,,\n2015,5,30,\"DL\",\"2632\",\"JFK\",\"MCO\",46.00,29.00,0.00,\"\",0.00,162.00,121.00,944.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"DL\",\"2645\",\"JFK\",\"RSW\",-11.00,-18.00,0.00,\"\",0.00,194.00,154.00,1074.00,,,,,,\n2015,5,30,\"DL\",\"2649\",\"JFK\",\"TPA\",-3.00,-20.00,0.00,\"\",0.00,168.00,138.00,1005.00,,,,,,\n2015,5,30,\"DL\",\"2650\",\"TPA\",\"JFK\",5.00,2.00,0.00,\"\",0.00,164.00,138.00,1005.00,,,,,,\n2015,5,30,\"DL\",\"2652\",\"TPA\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,169.00,142.00,1005.00,,,,,,\n2015,5,30,\"DL\",\"2653\",\"MCO\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,154.00,132.00,944.00,,,,,,\n2015,5,30,\"DL\",\"2667\",\"BOS\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,65.00,42.00,184.00,,,,,,\n2015,5,30,\"DL\",\"2671\",\"BOS\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,76.00,46.00,184.00,,,,,,\n2015,5,30,\"DL\",\"2672\",\"LGA\",\"BOS\",-2.00,-16.00,0.00,\"\",0.00,66.00,42.00,184.00,,,,,,\n2015,5,30,\"DL\",\"2675\",\"BOS\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,64.00,45.00,184.00,,,,,,\n2015,5,30,\"DL\",\"2678\",\"LGA\",\"BOS\",0.00,-16.00,0.00,\"\",0.00,65.00,40.00,184.00,,,,,,\n2015,5,30,\"DL\",\"2681\",\"BOS\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,72.00,54.00,184.00,,,,,,\n2015,5,30,\"DL\",\"2686\",\"LGA\",\"BOS\",-2.00,-15.00,0.00,\"\",0.00,65.00,40.00,184.00,,,,,,\n2015,5,30,\"DL\",\"2692\",\"LGA\",\"BOS\",-3.00,-21.00,0.00,\"\",0.00,60.00,40.00,184.00,,,,,,\n2015,5,31,\"DL\",\"42\",\"MIA\",\"JFK\",2.00,102.00,0.00,\"\",0.00,289.00,166.00,1089.00,0.00,0.00,102.00,0.00,0.00,\n2015,5,31,\"DL\",\"208\",\"JFK\",\"MCO\",87.00,73.00,0.00,\"\",0.00,173.00,119.00,944.00,0.00,20.00,0.00,0.00,53.00,\n2015,5,31,\"DL\",\"221\",\"LGA\",\"ATL\",126.00,159.00,0.00,\"\",0.00,198.00,116.00,762.00,0.00,118.00,39.00,0.00,2.00,\n2015,5,31,\"DL\",\"245\",\"JFK\",\"SLC\",233.00,288.00,0.00,\"\",0.00,383.00,284.00,1990.00,60.00,60.00,55.00,0.00,113.00,\n2015,5,31,\"DL\",\"326\",\"SJU\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,229.00,203.00,1598.00,,,,,,\n2015,5,31,\"DL\",\"332\",\"SJU\",\"JFK\",-3.00,5.00,0.00,\"\",0.00,254.00,203.00,1598.00,,,,,,\n2015,5,31,\"DL\",\"333\",\"MSP\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,155.00,132.00,1020.00,,,,,,\n2015,5,31,\"DL\",\"342\",\"SFO\",\"JFK\",5.00,12.00,0.00,\"\",0.00,346.00,323.00,2586.00,,,,,,\n2015,5,31,\"DL\",\"347\",\"LGA\",\"ATL\",0.00,-4.00,0.00,\"\",0.00,154.00,125.00,762.00,,,,,,\n2015,5,31,\"DL\",\"348\",\"SJU\",\"JFK\",473.00,502.00,0.00,\"\",0.00,271.00,248.00,1598.00,473.00,0.00,29.00,0.00,0.00,\n2015,5,31,\"DL\",\"350\",\"LGA\",\"ATL\",31.00,23.00,0.00,\"\",0.00,145.00,108.00,762.00,2.00,0.00,1.00,0.00,20.00,\n2015,5,31,\"DL\",\"400\",\"PDX\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,303.00,282.00,2454.00,,,,,,\n2015,5,31,\"DL\",\"401\",\"AUS\",\"JFK\",-2.00,14.00,0.00,\"\",0.00,255.00,214.00,1521.00,,,,,,\n2015,5,31,\"DL\",\"403\",\"PDX\",\"JFK\",123.00,148.00,0.00,\"\",0.00,359.00,322.00,2454.00,0.00,0.00,148.00,0.00,0.00,\n2015,5,31,\"DL\",\"407\",\"MCO\",\"JFK\",70.00,141.00,0.00,\"\",0.00,240.00,140.00,944.00,0.00,0.00,111.00,0.00,30.00,\n2015,5,31,\"DL\",\"409\",\"JFK\",\"SJU\",6.00,-13.00,0.00,\"\",0.00,228.00,198.00,1598.00,,,,,,\n2015,5,31,\"DL\",\"410\",\"MSP\",\"JFK\",-8.00,28.00,0.00,\"\",0.00,203.00,152.00,1029.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,31,\"DL\",\"412\",\"LAX\",\"JFK\",29.00,99.00,0.00,\"\",0.00,409.00,332.00,2475.00,0.00,0.00,99.00,0.00,0.00,\n2015,5,31,\"DL\",\"414\",\"SFO\",\"JFK\",-5.00,6.00,0.00,\"\",0.00,356.00,329.00,2586.00,,,,,,\n2015,5,31,\"DL\",\"415\",\"JFK\",\"SFO\",4.00,-29.00,0.00,\"\",0.00,375.00,332.00,2586.00,,,,,,\n2015,5,31,\"DL\",\"418\",\"SEA\",\"JFK\",150.00,159.00,0.00,\"\",0.00,337.00,314.00,2422.00,150.00,0.00,9.00,0.00,0.00,\n2015,5,31,\"DL\",\"419\",\"JFK\",\"SEA\",1.00,-11.00,0.00,\"\",0.00,367.00,327.00,2422.00,,,,,,\n2015,5,31,\"DL\",\"420\",\"JFK\",\"LAX\",32.00,1.00,0.00,\"\",0.00,367.00,314.00,2475.00,,,,,,\n2015,5,31,\"DL\",\"421\",\"JFK\",\"MSP\",-6.00,-17.00,0.00,\"\",0.00,181.00,146.00,1029.00,,,,,,\n2015,5,31,\"DL\",\"422\",\"JFK\",\"LAX\",-5.00,-26.00,0.00,\"\",0.00,359.00,307.00,2475.00,,,,,,\n2015,5,31,\"DL\",\"423\",\"JFK\",\"LAX\",2.00,-27.00,0.00,\"\",0.00,344.00,312.00,2475.00,,,,,,\n2015,5,31,\"DL\",\"424\",\"JFK\",\"LAX\",-5.00,-32.00,0.00,\"\",0.00,343.00,309.00,2475.00,,,,,,\n2015,5,31,\"DL\",\"425\",\"JFK\",\"CHS\",-5.00,-19.00,0.00,\"\",0.00,125.00,88.00,636.00,,,,,,\n2015,5,31,\"DL\",\"426\",\"JFK\",\"MCO\",16.00,6.00,0.00,\"\",0.00,162.00,123.00,944.00,,,,,,\n2015,5,31,\"DL\",\"427\",\"JFK\",\"LAX\",118.00,164.00,0.00,\"\",0.00,434.00,326.00,2475.00,0.00,57.00,46.00,0.00,61.00,\n2015,5,31,\"DL\",\"428\",\"JFK\",\"ATL\",10.00,13.00,0.00,\"\",0.00,172.00,126.00,760.00,,,,,,\n2015,5,31,\"DL\",\"430\",\"JFK\",\"SFO\",-6.00,-26.00,0.00,\"\",0.00,364.00,328.00,2586.00,,,,,,\n2015,5,31,\"DL\",\"431\",\"JFK\",\"SFO\",155.00,190.00,0.00,\"\",0.00,444.00,357.00,2586.00,0.00,155.00,35.00,0.00,0.00,\n2015,5,31,\"DL\",\"433\",\"JFK\",\"AUS\",80.00,93.00,0.00,\"\",0.00,277.00,206.00,1521.00,0.00,80.00,13.00,0.00,0.00,\n2015,5,31,\"DL\",\"434\",\"JFK\",\"SFO\",-3.00,-54.00,0.00,\"\",0.00,353.00,324.00,2586.00,,,,,,\n2015,5,31,\"DL\",\"435\",\"JFK\",\"SFO\",190.00,248.00,0.00,\"\",0.00,462.00,357.00,2586.00,0.00,190.00,58.00,0.00,0.00,\n2015,5,31,\"DL\",\"436\",\"JFK\",\"FLL\",-6.00,-28.00,0.00,\"\",0.00,162.00,138.00,1069.00,,,,,,\n2015,5,31,\"DL\",\"437\",\"JFK\",\"BOS\",0.00,-16.00,0.00,\"\",0.00,61.00,41.00,187.00,,,,,,\n2015,5,31,\"DL\",\"438\",\"JFK\",\"MCO\",-6.00,-30.00,0.00,\"\",0.00,144.00,124.00,944.00,,,,,,\n2015,5,31,\"DL\",\"442\",\"JFK\",\"LAS\",-5.00,-34.00,0.00,\"\",0.00,321.00,284.00,2248.00,,,,,,\n2015,5,31,\"DL\",\"443\",\"JFK\",\"LAS\",181.00,221.00,0.00,\"\",0.00,397.00,301.00,2248.00,0.00,82.00,40.00,0.00,99.00,\n2015,5,31,\"DL\",\"444\",\"SLC\",\"JFK\",0.00,9.00,0.00,\"\",0.00,289.00,254.00,1990.00,,,,,,\n2015,5,31,\"DL\",\"445\",\"JFK\",\"TPA\",-5.00,-20.00,0.00,\"\",0.00,156.00,133.00,1005.00,,,,,,\n2015,5,31,\"DL\",\"447\",\"JFK\",\"LAX\",-1.00,-10.00,0.00,\"\",0.00,381.00,312.00,2475.00,,,,,,\n2015,5,31,\"DL\",\"448\",\"JFK\",\"SEA\",-2.00,1.00,0.00,\"\",0.00,363.00,321.00,2422.00,,,,,,\n2015,5,31,\"DL\",\"451\",\"JFK\",\"SJU\",59.00,135.00,0.00,\"\",0.00,318.00,194.00,1598.00,0.00,59.00,76.00,0.00,0.00,\n2015,5,31,\"DL\",\"453\",\"JFK\",\"SJU\",10.00,8.00,0.00,\"\",0.00,232.00,201.00,1598.00,,,,,,\n2015,5,31,\"DL\",\"454\",\"JFK\",\"ATL\",-7.00,-12.00,0.00,\"\",0.00,147.00,106.00,760.00,,,,,,\n2015,5,31,\"DL\",\"455\",\"JFK\",\"SAN\",-3.00,-39.00,0.00,\"\",0.00,339.00,306.00,2446.00,,,,,,\n2015,5,31,\"DL\",\"456\",\"JFK\",\"SAN\",84.00,89.00,0.00,\"\",0.00,383.00,324.00,2446.00,0.00,84.00,5.00,0.00,0.00,\n2015,5,31,\"DL\",\"458\",\"JFK\",\"SEA\",-6.00,5.00,0.00,\"\",0.00,374.00,334.00,2422.00,,,,,,\n2015,5,31,\"DL\",\"459\",\"JFK\",\"SEA\",72.00,39.00,0.00,\"\",0.00,349.00,319.00,2422.00,0.00,39.00,0.00,0.00,0.00,\n2015,5,31,\"DL\",\"460\",\"JFK\",\"SLC\",-1.00,-26.00,0.00,\"\",0.00,300.00,262.00,1990.00,,,,,,\n2015,5,31,\"DL\",\"462\",\"JFK\",\"SAN\",34.00,30.00,0.00,\"\",0.00,369.00,315.00,2446.00,4.00,0.00,0.00,0.00,26.00,\n2015,5,31,\"DL\",\"463\",\"JFK\",\"PIT\",-2.00,-30.00,0.00,\"\",0.00,93.00,57.00,340.00,,,,,,\n2015,5,31,\"DL\",\"464\",\"JFK\",\"MIA\",-1.00,-22.00,0.00,\"\",0.00,164.00,141.00,1089.00,,,,,,\n2015,5,31,\"DL\",\"465\",\"JFK\",\"STT\",-8.00,-13.00,0.00,\"\",0.00,241.00,198.00,1623.00,,,,,,\n2015,5,31,\"DL\",\"466\",\"SLC\",\"JFK\",-2.00,3.00,0.00,\"\",0.00,282.00,258.00,1990.00,,,,,,\n2015,5,31,\"DL\",\"468\",\"SFO\",\"JFK\",60.00,71.00,0.00,\"\",0.00,360.00,330.00,2586.00,0.00,0.00,71.00,0.00,0.00,\n2015,5,31,\"DL\",\"469\",\"JFK\",\"SFO\",-3.00,-19.00,0.00,\"\",0.00,374.00,344.00,2586.00,,,,,,\n2015,5,31,\"DL\",\"472\",\"JFK\",\"LAX\",6.00,-2.00,0.00,\"\",0.00,377.00,315.00,2475.00,,,,,,\n2015,5,31,\"DL\",\"476\",\"LAX\",\"JFK\",-4.00,27.00,0.00,\"\",0.00,369.00,330.00,2475.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,31,\"DL\",\"477\",\"JFK\",\"LAX\",116.00,62.00,0.00,\"\",0.00,341.00,310.00,2475.00,0.00,62.00,0.00,0.00,0.00,\n2015,5,31,\"DL\",\"478\",\"ATL\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,141.00,111.00,760.00,,,,,,\n2015,5,31,\"DL\",\"480\",\"JFK\",\"ATL\",-3.00,-16.00,0.00,\"\",0.00,140.00,119.00,760.00,,,,,,\n2015,5,31,\"DL\",\"482\",\"JFK\",\"SJU\",-6.00,-14.00,0.00,\"\",0.00,230.00,206.00,1598.00,,,,,,\n2015,5,31,\"DL\",\"483\",\"JFK\",\"SFO\",12.00,-18.00,0.00,\"\",0.00,378.00,336.00,2586.00,,,,,,\n2015,5,31,\"DL\",\"486\",\"JFK\",\"LAS\",-6.00,-28.00,0.00,\"\",0.00,310.00,290.00,2248.00,,,,,,\n2015,5,31,\"DL\",\"488\",\"JFK\",\"SJU\",0.00,1.00,0.00,\"\",0.00,228.00,198.00,1598.00,,,,,,\n2015,5,31,\"DL\",\"491\",\"JFK\",\"SLC\",0.00,-11.00,0.00,\"\",0.00,294.00,267.00,1990.00,,,,,,\n2015,5,31,\"DL\",\"494\",\"JFK\",\"PHX\",-5.00,-32.00,0.00,\"\",0.00,316.00,272.00,2153.00,,,,,,\n2015,5,31,\"DL\",\"496\",\"JFK\",\"BOS\",-5.00,-21.00,0.00,\"\",0.00,67.00,40.00,187.00,,,,,,\n2015,5,31,\"DL\",\"497\",\"JFK\",\"PDX\",0.00,-24.00,0.00,\"\",0.00,354.00,320.00,2454.00,,,,,,\n2015,5,31,\"DL\",\"499\",\"JFK\",\"SLC\",8.00,2.00,0.00,\"\",0.00,304.00,264.00,1990.00,,,,,,\n2015,5,31,\"DL\",\"511\",\"SJU\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,246.00,203.00,1598.00,,,,,,\n2015,5,31,\"DL\",\"527\",\"RSW\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,157.00,139.00,1074.00,,,,,,\n2015,5,30,\"DL\",\"42\",\"MIA\",\"JFK\",18.00,45.00,0.00,\"\",0.00,214.00,138.00,1089.00,8.00,0.00,27.00,0.00,10.00,\n2015,5,30,\"DL\",\"208\",\"JFK\",\"MCO\",-2.00,-13.00,0.00,\"\",0.00,173.00,122.00,944.00,,,,,,\n2015,5,30,\"DL\",\"221\",\"LGA\",\"ATL\",-1.00,10.00,0.00,\"\",0.00,173.00,112.00,762.00,,,,,,\n2015,5,30,\"DL\",\"234\",\"PIT\",\"JFK\",77.00,63.00,0.00,\"\",0.00,86.00,59.00,340.00,48.00,0.00,0.00,0.00,15.00,\n2015,5,30,\"DL\",\"245\",\"JFK\",\"SLC\",17.00,-9.00,0.00,\"\",0.00,298.00,260.00,1990.00,,,,,,\n2015,5,30,\"DL\",\"326\",\"SJU\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,238.00,220.00,1598.00,,,,,,\n2015,5,30,\"DL\",\"332\",\"SJU\",\"JFK\",196.00,170.00,0.00,\"\",0.00,220.00,199.00,1598.00,0.00,0.00,0.00,0.00,170.00,\n2015,5,30,\"DL\",\"333\",\"MSP\",\"LGA\",21.00,12.00,0.00,\"\",0.00,151.00,135.00,1020.00,,,,,,\n2015,5,30,\"DL\",\"342\",\"SFO\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,328.00,308.00,2586.00,,,,,,\n2015,5,30,\"DL\",\"347\",\"LGA\",\"ATL\",-3.00,-20.00,0.00,\"\",0.00,138.00,109.00,762.00,,,,,,\n2015,5,30,\"DL\",\"348\",\"SJU\",\"JFK\",-7.00,-23.00,0.00,\"\",0.00,225.00,202.00,1598.00,,,,,,\n2015,5,30,\"DL\",\"350\",\"LGA\",\"ATL\",-3.00,-16.00,0.00,\"\",0.00,137.00,112.00,762.00,,,,,,\n2015,5,30,\"DL\",\"400\",\"PDX\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,316.00,293.00,2454.00,,,,,,\n2015,5,30,\"DL\",\"407\",\"MCO\",\"JFK\",-5.00,-22.00,0.00,\"\",0.00,149.00,123.00,944.00,,,,,,\n2015,5,30,\"DL\",\"410\",\"MSP\",\"JFK\",-4.00,4.00,0.00,\"\",0.00,174.00,142.00,1029.00,,,,,,\n2015,5,30,\"DL\",\"412\",\"LAX\",\"JFK\",6.00,9.00,0.00,\"\",0.00,339.00,313.00,2475.00,,,,,,\n2015,5,30,\"DL\",\"414\",\"SFO\",\"JFK\",2.00,-19.00,0.00,\"\",0.00,322.00,301.00,2586.00,,,,,,\n2015,5,30,\"DL\",\"415\",\"JFK\",\"SFO\",54.00,111.00,0.00,\"\",0.00,461.00,412.00,2586.00,54.00,0.00,57.00,0.00,0.00,\n2015,5,30,\"DL\",\"418\",\"SEA\",\"JFK\",9.00,-1.00,0.00,\"\",0.00,316.00,292.00,2422.00,,,,,,\n2015,5,30,\"DL\",\"419\",\"JFK\",\"SEA\",24.00,27.00,0.00,\"\",0.00,381.00,339.00,2422.00,24.00,0.00,3.00,0.00,0.00,\n2015,5,30,\"DL\",\"420\",\"JFK\",\"LAX\",14.00,-24.00,0.00,\"\",0.00,354.00,313.00,2475.00,,,,,,\n2015,5,30,\"DL\",\"421\",\"JFK\",\"TPA\",-5.00,-17.00,0.00,\"\",0.00,158.00,135.00,1005.00,,,,,,\n2015,5,30,\"DL\",\"422\",\"JFK\",\"BOS\",-2.00,-5.00,0.00,\"\",0.00,68.00,40.00,187.00,,,,,,\n2015,5,30,\"DL\",\"423\",\"JFK\",\"LAX\",3.00,-27.00,0.00,\"\",0.00,342.00,308.00,2475.00,,,,,,\n2015,5,30,\"DL\",\"424\",\"JFK\",\"LAS\",-5.00,-22.00,0.00,\"\",0.00,312.00,290.00,2248.00,,,,,,\n2015,5,30,\"DL\",\"425\",\"JFK\",\"CHS\",-3.00,-15.00,0.00,\"\",0.00,127.00,87.00,636.00,,,,,,\n2015,5,30,\"DL\",\"426\",\"JFK\",\"MCO\",-1.00,-18.00,0.00,\"\",0.00,153.00,125.00,944.00,,,,,,\n2015,5,30,\"DL\",\"427\",\"JFK\",\"SEA\",-1.00,-32.00,0.00,\"\",0.00,329.00,307.00,2422.00,,,,,,\n2015,5,30,\"DL\",\"428\",\"JFK\",\"MCO\",-1.00,-6.00,0.00,\"\",0.00,159.00,128.00,944.00,,,,,,\n2015,5,30,\"DL\",\"430\",\"JFK\",\"SFO\",-5.00,-38.00,0.00,\"\",0.00,353.00,324.00,2586.00,,,,,,\n2015,5,30,\"DL\",\"431\",\"JFK\",\"SEA\",24.00,25.00,0.00,\"\",0.00,379.00,326.00,2422.00,24.00,0.00,1.00,0.00,0.00,\n2015,5,30,\"DL\",\"433\",\"JFK\",\"SJU\",66.00,69.00,0.00,\"\",0.00,227.00,194.00,1598.00,66.00,0.00,3.00,0.00,0.00,\n2015,5,30,\"DL\",\"434\",\"JFK\",\"SLC\",20.00,-4.00,0.00,\"\",0.00,280.00,253.00,1990.00,,,,,,\n2015,5,30,\"DL\",\"435\",\"JFK\",\"SFO\",1.00,-25.00,0.00,\"\",0.00,381.00,333.00,2586.00,,,,,,\n2015,5,30,\"DL\",\"437\",\"JFK\",\"LAS\",29.00,22.00,0.00,\"\",0.00,343.00,292.00,2248.00,14.00,0.00,0.00,0.00,8.00,\n2015,5,30,\"DL\",\"440\",\"JFK\",\"BOS\",25.00,14.00,0.00,\"\",0.00,87.00,42.00,187.00,,,,,,\n2015,5,30,\"DL\",\"442\",\"JFK\",\"MSP\",-1.00,-26.00,0.00,\"\",0.00,165.00,139.00,1029.00,,,,,,\n2015,5,30,\"DL\",\"443\",\"JFK\",\"LAS\",-3.00,-28.00,0.00,\"\",0.00,326.00,287.00,2248.00,,,,,,\n2015,5,30,\"DL\",\"444\",\"SLC\",\"JFK\",6.00,-1.00,0.00,\"\",0.00,273.00,247.00,1990.00,,,,,,\n2015,5,30,\"DL\",\"445\",\"JFK\",\"ATL\",-5.00,-21.00,0.00,\"\",0.00,151.00,109.00,760.00,,,,,,\n2015,5,30,\"DL\",\"447\",\"JFK\",\"LAX\",-9.00,-24.00,0.00,\"\",0.00,375.00,315.00,2475.00,,,,,,\n2015,5,30,\"DL\",\"448\",\"JFK\",\"SEA\",0.00,-9.00,0.00,\"\",0.00,351.00,314.00,2422.00,,,,,,\n2015,5,30,\"DL\",\"453\",\"JFK\",\"SAN\",28.00,-8.00,0.00,\"\",0.00,338.00,302.00,2446.00,,,,,,\n2015,5,30,\"DL\",\"454\",\"JFK\",\"ATL\",-3.00,-27.00,0.00,\"\",0.00,127.00,104.00,760.00,,,,,,\n2015,5,30,\"DL\",\"455\",\"JFK\",\"FLL\",-6.00,-32.00,0.00,\"\",0.00,155.00,136.00,1069.00,,,,,,\n2015,5,30,\"DL\",\"458\",\"JFK\",\"SJU\",1.00,-9.00,0.00,\"\",0.00,235.00,199.00,1598.00,,,,,,\n2015,5,30,\"DL\",\"459\",\"JFK\",\"ATL\",3.00,-9.00,0.00,\"\",0.00,140.00,104.00,760.00,,,,,,\n2015,5,30,\"DL\",\"460\",\"JFK\",\"AUS\",-5.00,-17.00,0.00,\"\",0.00,249.00,200.00,1521.00,,,,,,\n2015,5,30,\"DL\",\"462\",\"JFK\",\"SJU\",234.00,247.00,0.00,\"\",0.00,244.00,196.00,1598.00,234.00,0.00,13.00,0.00,0.00,\n2015,5,30,\"DL\",\"463\",\"JFK\",\"LAS\",-1.00,-37.00,0.00,\"\",0.00,316.00,277.00,2248.00,,,,,,\n2015,5,30,\"DL\",\"464\",\"JFK\",\"MIA\",14.00,-1.00,0.00,\"\",0.00,167.00,142.00,1089.00,,,,,,\n2015,5,30,\"DL\",\"465\",\"JFK\",\"STT\",-4.00,-18.00,0.00,\"\",0.00,229.00,194.00,1623.00,,,,,,\n2015,5,30,\"DL\",\"466\",\"SLC\",\"JFK\",0.00,1.00,0.00,\"\",0.00,275.00,255.00,1990.00,,,,,,\n2015,5,30,\"DL\",\"468\",\"SFO\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,337.00,305.00,2586.00,,,,,,\n2015,5,30,\"DL\",\"469\",\"JFK\",\"SFO\",-9.00,-39.00,0.00,\"\",0.00,371.00,329.00,2586.00,,,,,,\n2015,5,30,\"DL\",\"472\",\"JFK\",\"LAX\",22.00,-10.00,0.00,\"\",0.00,353.00,308.00,2475.00,,,,,,\n2015,5,30,\"DL\",\"476\",\"LAX\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,332.00,307.00,2475.00,,,,,,\n2015,5,30,\"DL\",\"477\",\"JFK\",\"LAX\",20.00,-16.00,0.00,\"\",0.00,355.00,305.00,2475.00,,,,,,\n2015,5,30,\"DL\",\"478\",\"ATL\",\"JFK\",9.00,-8.00,0.00,\"\",0.00,132.00,107.00,760.00,,,,,,\n2015,5,30,\"DL\",\"480\",\"JFK\",\"BOS\",-6.00,-20.00,0.00,\"\",0.00,67.00,41.00,187.00,,,,,,\n2015,5,30,\"DL\",\"499\",\"JFK\",\"SLC\",-3.00,-23.00,0.00,\"\",0.00,290.00,260.00,1990.00,,,,,,\n2015,5,30,\"DL\",\"511\",\"SJU\",\"JFK\",72.00,59.00,0.00,\"\",0.00,233.00,204.00,1598.00,12.00,0.00,0.00,0.00,47.00,\n2015,5,30,\"DL\",\"527\",\"RSW\",\"JFK\",-1.00,2.00,0.00,\"\",0.00,170.00,138.00,1074.00,,,,,,\n2015,5,30,\"DL\",\"528\",\"LGA\",\"MSP\",2.00,-24.00,0.00,\"\",0.00,156.00,137.00,1020.00,,,,,,\n2015,5,30,\"DL\",\"541\",\"LAS\",\"JFK\",-4.00,-7.00,0.00,\"\",0.00,293.00,272.00,2248.00,,,,,,\n2015,5,30,\"DL\",\"544\",\"ALB\",\"ATL\",-6.00,-14.00,0.00,\"\",0.00,142.00,117.00,853.00,,,,,,\n2015,5,30,\"DL\",\"651\",\"MSP\",\"SYR\",-5.00,-12.00,0.00,\"\",0.00,118.00,103.00,860.00,,,,,,\n2015,5,30,\"DL\",\"662\",\"BUF\",\"MSP\",51.00,19.00,0.00,\"\",0.00,112.00,98.00,735.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"DL\",\"664\",\"TPA\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,153.00,138.00,1010.00,,,,,,\n2015,5,30,\"DL\",\"676\",\"STT\",\"JFK\",-16.00,-23.00,0.00,\"\",0.00,243.00,213.00,1623.00,,,,,,\n2015,5,30,\"DL\",\"723\",\"ATL\",\"BUF\",-3.00,-21.00,0.00,\"\",0.00,107.00,92.00,712.00,,,,,,\n2015,5,30,\"DL\",\"723\",\"BUF\",\"ATL\",-5.00,-10.00,0.00,\"\",0.00,124.00,102.00,712.00,,,,,,\n2015,5,30,\"DL\",\"731\",\"LGA\",\"DTW\",-4.00,-22.00,0.00,\"\",0.00,94.00,74.00,502.00,,,,,,\n2015,5,30,\"DL\",\"750\",\"BOS\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,83.00,40.00,187.00,,,,,,\n2015,5,30,\"DL\",\"772\",\"PBI\",\"LGA\",-1.00,11.00,0.00,\"\",0.00,182.00,151.00,1035.00,,,,,,\n2015,5,30,\"DL\",\"781\",\"LGA\",\"ATL\",-7.00,-25.00,0.00,\"\",0.00,142.00,110.00,762.00,,,,,,\n2015,5,30,\"DL\",\"782\",\"MIA\",\"JFK\",2.00,4.00,0.00,\"\",0.00,182.00,150.00,1089.00,,,,,,\n2015,5,30,\"DL\",\"787\",\"MCO\",\"JFK\",54.00,32.00,0.00,\"\",0.00,143.00,126.00,944.00,15.00,0.00,0.00,0.00,17.00,\n2015,5,30,\"DL\",\"791\",\"LAX\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,321.00,297.00,2475.00,,,,,,\n2015,5,30,\"DL\",\"792\",\"PBI\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,155.00,136.00,1028.00,,,,,,\n2015,5,30,\"DL\",\"793\",\"BOS\",\"JFK\",37.00,38.00,0.00,\"\",0.00,93.00,40.00,187.00,30.00,0.00,1.00,0.00,7.00,\n2015,5,30,\"DL\",\"802\",\"ATL\",\"LGA\",2.00,-22.00,0.00,\"\",0.00,121.00,105.00,762.00,,,,,,\n2015,5,30,\"DL\",\"819\",\"MIA\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,178.00,152.00,1096.00,,,,,,\n2015,5,30,\"DL\",\"856\",\"SAN\",\"JFK\",-3.00,5.00,0.00,\"\",0.00,339.00,314.00,2446.00,,,,,,\n2015,5,30,\"DL\",\"871\",\"MSP\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,158.00,136.00,1020.00,,,,,,\n2015,5,30,\"DL\",\"874\",\"LGA\",\"MIA\",-2.00,-21.00,0.00,\"\",0.00,179.00,146.00,1096.00,,,,,,\n2015,5,30,\"DL\",\"878\",\"RSW\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,168.00,152.00,1080.00,,,,,,\n2015,5,30,\"DL\",\"884\",\"LGA\",\"DEN\",49.00,56.00,0.00,\"\",0.00,279.00,261.00,1620.00,49.00,0.00,7.00,0.00,0.00,\n2015,5,30,\"DL\",\"904\",\"LGA\",\"ATL\",59.00,48.00,0.00,\"\",0.00,131.00,104.00,762.00,48.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"DL\",\"906\",\"ATL\",\"LGA\",4.00,-12.00,0.00,\"\",0.00,120.00,100.00,762.00,,,,,,\n2015,5,30,\"DL\",\"909\",\"LGA\",\"MIA\",-5.00,-14.00,0.00,\"\",0.00,185.00,151.00,1096.00,,,,,,\n2015,5,30,\"DL\",\"910\",\"MCO\",\"LGA\",-7.00,1.00,0.00,\"\",0.00,166.00,139.00,950.00,,,,,,\n2015,5,30,\"DL\",\"928\",\"DTW\",\"BUF\",31.00,20.00,0.00,\"\",0.00,60.00,38.00,241.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"DL\",\"928\",\"BUF\",\"DTW\",15.00,42.00,0.00,\"\",0.00,101.00,46.00,241.00,0.00,0.00,27.00,0.00,15.00,\n2015,5,30,\"DL\",\"965\",\"MCO\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,145.00,133.00,950.00,,,,,,\n2015,5,30,\"DL\",\"986\",\"ATL\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,129.00,112.00,762.00,,,,,,\n2015,5,30,\"DL\",\"997\",\"DTW\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,100.00,81.00,502.00,,,,,,\n2015,5,30,\"DL\",\"1083\",\"FLL\",\"JFK\",-3.00,-25.00,0.00,\"\",0.00,162.00,140.00,1069.00,,,,,,\n2015,5,30,\"DL\",\"1088\",\"FLL\",\"LGA\",5.00,8.00,0.00,\"\",0.00,179.00,150.00,1076.00,,,,,,\n2015,5,30,\"DL\",\"1102\",\"MCO\",\"LGA\",-7.00,-2.00,0.00,\"\",0.00,161.00,136.00,950.00,,,,,,\n2015,5,30,\"DL\",\"1109\",\"SEA\",\"JFK\",-3.00,-31.00,0.00,\"\",0.00,307.00,280.00,2422.00,,,,,,\n2015,5,30,\"DL\",\"1111\",\"ATL\",\"ROC\",0.00,-11.00,0.00,\"\",0.00,117.00,97.00,749.00,,,,,,\n2015,5,30,\"DL\",\"1131\",\"LGA\",\"FLL\",-4.00,-27.00,0.00,\"\",0.00,166.00,143.00,1076.00,,,,,,\n2015,5,30,\"DL\",\"1145\",\"LGA\",\"DTW\",11.00,0.00,0.00,\"\",0.00,109.00,88.00,502.00,,,,,,\n2015,5,30,\"DL\",\"1159\",\"ATL\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,110.00,96.00,712.00,,,,,,\n2015,5,30,\"DL\",\"1159\",\"BUF\",\"ATL\",-2.00,-13.00,0.00,\"\",0.00,116.00,101.00,712.00,,,,,,\n2015,5,30,\"DL\",\"1162\",\"LAX\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,316.00,299.00,2475.00,,,,,,\n2015,5,30,\"DL\",\"1174\",\"LGA\",\"PBI\",-11.00,-23.00,0.00,\"\",0.00,166.00,142.00,1035.00,,,,,,\n2015,5,30,\"DL\",\"1176\",\"ATL\",\"BUF\",33.00,7.00,0.00,\"\",0.00,104.00,91.00,712.00,,,,,,\n2015,5,30,\"DL\",\"1176\",\"BUF\",\"ATL\",0.00,-6.00,0.00,\"\",0.00,121.00,101.00,712.00,,,,,,\n2015,5,30,\"DL\",\"1186\",\"ATL\",\"LGA\",1.00,7.00,0.00,\"\",0.00,146.00,111.00,762.00,,,,,,\n2015,5,30,\"DL\",\"1242\",\"LGA\",\"PBI\",28.00,1.00,0.00,\"\",0.00,153.00,131.00,1035.00,,,,,,\n2015,5,30,\"DL\",\"1262\",\"LAX\",\"JFK\",-1.00,2.00,0.00,\"\",0.00,333.00,308.00,2475.00,,,,,,\n2015,5,30,\"DL\",\"1264\",\"SLC\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,258.00,233.00,1990.00,,,,,,\n2015,5,30,\"DL\",\"1266\",\"BUF\",\"ATL\",-4.00,-4.00,0.00,\"\",0.00,120.00,101.00,712.00,,,,,,\n2015,5,30,\"DL\",\"1269\",\"LGA\",\"MIA\",26.00,10.00,0.00,\"\",0.00,180.00,146.00,1096.00,,,,,,\n2015,5,30,\"DL\",\"1286\",\"ATL\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,130.00,108.00,762.00,,,,,,\n2015,5,30,\"DL\",\"1288\",\"LGA\",\"FLL\",0.00,-27.00,0.00,\"\",0.00,165.00,142.00,1076.00,,,,,,\n2015,5,30,\"DL\",\"1289\",\"LGA\",\"ATL\",1.00,-25.00,0.00,\"\",0.00,135.00,108.00,762.00,,,,,,\n2015,5,31,\"DL\",\"1214\",\"LGA\",\"ATL\",108.00,136.00,0.00,\"\",0.00,192.00,123.00,762.00,0.00,108.00,28.00,0.00,0.00,\n2015,5,31,\"DL\",\"1227\",\"PHX\",\"JFK\",-5.00,8.00,0.00,\"\",0.00,303.00,267.00,2153.00,,,,,,\n2015,5,31,\"DL\",\"1242\",\"LGA\",\"PBI\",-2.00,-25.00,0.00,\"\",0.00,161.00,135.00,1035.00,,,,,,\n2015,5,31,\"DL\",\"1262\",\"LAX\",\"JFK\",72.00,68.00,0.00,\"\",0.00,329.00,291.00,2475.00,9.00,0.00,0.00,0.00,59.00,\n2015,5,31,\"DL\",\"1264\",\"SLC\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,260.00,239.00,1990.00,,,,,,\n2015,5,31,\"DL\",\"1266\",\"BUF\",\"ATL\",-2.00,-6.00,0.00,\"\",0.00,118.00,102.00,712.00,,,,,,\n2015,5,31,\"DL\",\"1269\",\"LGA\",\"MIA\",-4.00,-25.00,0.00,\"\",0.00,176.00,144.00,1096.00,,,,,,\n2015,5,31,\"DL\",\"1278\",\"MSP\",\"BUF\",5.00,4.00,0.00,\"\",0.00,118.00,93.00,735.00,,,,,,\n2015,5,31,\"DL\",\"1286\",\"ATL\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,126.00,106.00,762.00,,,,,,\n2015,5,31,\"DL\",\"1288\",\"LGA\",\"FLL\",-1.00,-29.00,0.00,\"\",0.00,167.00,142.00,1076.00,,,,,,\n2015,5,31,\"DL\",\"1289\",\"LGA\",\"ATL\",320.00,296.00,0.00,\"\",0.00,139.00,112.00,762.00,0.00,8.00,0.00,0.00,288.00,\n2015,5,31,\"DL\",\"1298\",\"LGA\",\"ATL\",260.00,314.00,0.00,\"\",0.00,215.00,111.00,762.00,0.00,0.00,314.00,0.00,0.00,\n2015,5,31,\"DL\",\"1306\",\"DTW\",\"LGA\",192.00,169.00,0.00,\"\",0.00,84.00,71.00,502.00,169.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"DL\",\"1312\",\"TPA\",\"JFK\",16.00,119.00,0.00,\"\",0.00,277.00,159.00,1005.00,0.00,0.00,119.00,0.00,0.00,\n2015,5,31,\"DL\",\"1335\",\"MIA\",\"LGA\",-3.00,-26.00,0.00,\"\",0.00,160.00,139.00,1096.00,,,,,,\n2015,5,31,\"DL\",\"1359\",\"MCO\",\"LGA\",-5.00,,0.00,\"\",1.00,,,950.00,,,,,,\n2015,5,31,\"DL\",\"1370\",\"ATL\",\"ROC\",-3.00,-20.00,0.00,\"\",0.00,108.00,93.00,749.00,,,,,,\n2015,5,31,\"DL\",\"1370\",\"ROC\",\"ATL\",-5.00,-12.00,0.00,\"\",0.00,127.00,104.00,749.00,,,,,,\n2015,5,31,\"DL\",\"1372\",\"DTW\",\"BUF\",-1.00,-9.00,0.00,\"\",0.00,58.00,39.00,241.00,,,,,,\n2015,5,31,\"DL\",\"1383\",\"LGA\",\"ATL\",9.00,12.00,0.00,\"\",0.00,171.00,132.00,762.00,,,,,,\n2015,5,31,\"DL\",\"1386\",\"ATL\",\"LGA\",61.00,57.00,0.00,\"\",0.00,130.00,107.00,762.00,57.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"DL\",\"1394\",\"ATL\",\"JFK\",272.00,321.00,0.00,\"\",0.00,202.00,114.00,760.00,0.00,0.00,321.00,0.00,0.00,\n2015,5,31,\"DL\",\"1419\",\"ATL\",\"JFK\",201.00,218.00,0.00,\"\",0.00,172.00,115.00,760.00,11.00,0.00,207.00,0.00,0.00,\n2015,5,31,\"DL\",\"1428\",\"LGA\",\"ATL\",-5.00,-31.00,0.00,\"\",0.00,133.00,102.00,762.00,,,,,,\n2015,5,31,\"DL\",\"1473\",\"SEA\",\"JFK\",16.00,99.00,0.00,\"\",0.00,413.00,307.00,2422.00,13.00,0.00,83.00,0.00,3.00,\n2015,5,31,\"DL\",\"1486\",\"ATL\",\"LGA\",5.00,16.00,0.00,\"\",0.00,150.00,112.00,762.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,31,\"DL\",\"1487\",\"ATL\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,130.00,107.00,760.00,,,,,,\n2015,5,31,\"DL\",\"1496\",\"MSP\",\"LGA\",408.00,445.00,0.00,\"\",0.00,203.00,171.00,1020.00,0.00,0.00,445.00,0.00,0.00,\n2015,5,31,\"DL\",\"1498\",\"FLL\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,162.00,141.00,1076.00,,,,,,\n2015,5,31,\"DL\",\"1503\",\"FLL\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,180.00,140.00,1076.00,,,,,,\n2015,5,31,\"DL\",\"1514\",\"LGA\",\"FLL\",26.00,16.00,0.00,\"\",0.00,179.00,142.00,1076.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"DL\",\"1515\",\"ATL\",\"ALB\",2.00,-15.00,0.00,\"\",0.00,130.00,107.00,853.00,,,,,,\n2015,5,31,\"DL\",\"1526\",\"MCO\",\"LGA\",175.00,181.00,0.00,\"\",0.00,165.00,126.00,950.00,175.00,0.00,6.00,0.00,0.00,\n2015,5,31,\"DL\",\"1542\",\"SEA\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,301.00,276.00,2422.00,,,,,,\n2015,5,31,\"DL\",\"1543\",\"ATL\",\"ALB\",-2.00,-8.00,0.00,\"\",0.00,138.00,113.00,853.00,,,,,,\n2015,5,31,\"DL\",\"1543\",\"ALB\",\"ATL\",3.00,-3.00,0.00,\"\",0.00,156.00,140.00,853.00,,,,,,\n2015,5,31,\"DL\",\"1548\",\"LGA\",\"DTW\",338.00,338.00,0.00,\"\",0.00,120.00,93.00,502.00,0.00,0.00,338.00,0.00,0.00,\n2015,5,31,\"DL\",\"1560\",\"MSY\",\"LGA\",216.00,219.00,0.00,\"\",0.00,189.00,163.00,1183.00,0.00,0.00,219.00,0.00,0.00,\n2015,5,31,\"DL\",\"1562\",\"BOS\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,72.00,47.00,187.00,,,,,,\n2015,5,31,\"DL\",\"1566\",\"LGA\",\"PBI\",343.00,312.00,0.00,\"\",0.00,152.00,129.00,1035.00,148.00,0.00,0.00,0.00,164.00,\n2015,5,31,\"DL\",\"1583\",\"SFO\",\"JFK\",-3.00,62.00,0.00,\"\",0.00,414.00,330.00,2586.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,31,\"DL\",\"1584\",\"ATL\",\"ROC\",-4.00,-22.00,0.00,\"\",0.00,115.00,93.00,749.00,,,,,,\n2015,5,31,\"DL\",\"1584\",\"ROC\",\"ATL\",39.00,71.00,0.00,\"\",0.00,167.00,135.00,749.00,0.00,0.00,71.00,0.00,0.00,\n2015,5,31,\"DL\",\"1586\",\"ATL\",\"LGA\",0.00,3.00,0.00,\"\",0.00,147.00,110.00,762.00,,,,,,\n2015,5,31,\"DL\",\"1596\",\"MSP\",\"LGA\",42.00,67.00,0.00,\"\",0.00,190.00,169.00,1020.00,0.00,0.00,67.00,0.00,0.00,\n2015,5,31,\"DL\",\"1628\",\"LGA\",\"DTW\",308.00,317.00,0.00,\"\",0.00,134.00,79.00,502.00,0.00,308.00,9.00,0.00,0.00,\n2015,5,31,\"DL\",\"1644\",\"FLL\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,187.00,142.00,1069.00,,,,,,\n2015,5,31,\"DL\",\"1647\",\"LGA\",\"ATL\",7.00,-13.00,0.00,\"\",0.00,130.00,104.00,762.00,,,,,,\n2015,5,31,\"DL\",\"1660\",\"MIA\",\"LGA\",178.00,180.00,0.00,\"\",0.00,188.00,152.00,1096.00,0.00,0.00,180.00,0.00,0.00,\n2015,5,31,\"DL\",\"1671\",\"MIA\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,173.00,142.00,1089.00,,,,,,\n2015,5,31,\"DL\",\"1672\",\"ATL\",\"BUF\",-3.00,-7.00,0.00,\"\",0.00,115.00,95.00,712.00,,,,,,\n2015,5,31,\"DL\",\"1672\",\"BUF\",\"ATL\",-5.00,-14.00,0.00,\"\",0.00,119.00,100.00,712.00,,,,,,\n2015,5,31,\"DL\",\"1685\",\"LGA\",\"MCO\",56.00,30.00,0.00,\"\",0.00,149.00,126.00,950.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"DL\",\"1697\",\"LGA\",\"ATL\",291.00,288.00,0.00,\"\",0.00,154.00,111.00,762.00,0.00,14.00,0.00,0.00,274.00,\n2015,5,31,\"DL\",\"1728\",\"LAS\",\"JFK\",-2.00,,0.00,\"\",1.00,,,2248.00,,,,,,\n2015,5,31,\"DL\",\"1750\",\"ATL\",\"JFK\",145.00,189.00,0.00,\"\",0.00,193.00,145.00,760.00,145.00,0.00,44.00,0.00,0.00,\n2015,5,31,\"DL\",\"1762\",\"LAX\",\"JFK\",0.00,75.00,0.00,\"\",0.00,410.00,319.00,2475.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,31,\"DL\",\"1779\",\"LGA\",\"MSY\",-4.00,4.00,0.00,\"\",0.00,207.00,166.00,1183.00,,,,,,\n2015,5,31,\"DL\",\"1786\",\"ATL\",\"LGA\",303.00,317.00,0.00,\"\",0.00,157.00,127.00,762.00,0.00,0.00,317.00,0.00,0.00,\n2015,5,31,\"DL\",\"1796\",\"LGA\",\"MSP\",-2.00,54.00,0.00,\"\",0.00,254.00,147.00,1020.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,31,\"DL\",\"1830\",\"SLC\",\"JFK\",30.00,77.00,0.00,\"\",0.00,323.00,294.00,1990.00,0.00,0.00,77.00,0.00,0.00,\n2015,5,31,\"DL\",\"1841\",\"SJU\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,236.00,210.00,1598.00,,,,,,\n2015,5,31,\"DL\",\"1849\",\"LGA\",\"ATL\",301.00,284.00,0.00,\"\",0.00,141.00,104.00,762.00,5.00,0.00,0.00,0.00,279.00,\n2015,5,31,\"DL\",\"1851\",\"CHS\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,117.00,92.00,636.00,,,,,,\n2015,5,31,\"DL\",\"1875\",\"LGA\",\"TPA\",-4.00,-27.00,0.00,\"\",0.00,157.00,133.00,1010.00,,,,,,\n2015,5,31,\"DL\",\"1879\",\"LGA\",\"FLL\",-2.00,-23.00,0.00,\"\",0.00,166.00,145.00,1076.00,,,,,,\n2015,5,31,\"DL\",\"1885\",\"LGA\",\"MCO\",-1.00,-33.00,0.00,\"\",0.00,148.00,127.00,950.00,,,,,,\n2015,5,31,\"DL\",\"1886\",\"ATL\",\"LGA\",287.00,296.00,0.00,\"\",0.00,159.00,121.00,762.00,287.00,0.00,9.00,0.00,0.00,\n2015,5,31,\"DL\",\"1897\",\"LGA\",\"MCO\",318.00,302.00,0.00,\"\",0.00,158.00,124.00,950.00,74.00,0.00,228.00,0.00,0.00,\n2015,5,31,\"DL\",\"1902\",\"LGA\",\"PBI\",46.00,42.00,0.00,\"\",0.00,180.00,133.00,1035.00,0.00,0.00,0.00,0.00,42.00,\n2015,5,31,\"DL\",\"1917\",\"MIA\",\"LGA\",18.00,15.00,0.00,\"\",0.00,181.00,150.00,1096.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,31,\"DL\",\"1930\",\"LGA\",\"MIA\",276.00,247.00,0.00,\"\",0.00,169.00,145.00,1096.00,0.00,247.00,0.00,0.00,0.00,\n2015,5,31,\"DL\",\"1935\",\"LGA\",\"TPA\",-6.00,-16.00,0.00,\"\",0.00,172.00,140.00,1010.00,,,,,,\n2015,5,29,\"DL\",\"871\",\"MSP\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,161.00,140.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"874\",\"LGA\",\"MIA\",0.00,-25.00,0.00,\"\",0.00,180.00,142.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"878\",\"RSW\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,166.00,150.00,1080.00,,,,,,\n2015,5,29,\"DL\",\"884\",\"LGA\",\"DEN\",-1.00,-14.00,0.00,\"\",0.00,261.00,223.00,1620.00,,,,,,\n2015,5,29,\"DL\",\"889\",\"MSP\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,155.00,129.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"904\",\"LGA\",\"ATL\",-1.00,-12.00,0.00,\"\",0.00,138.00,108.00,762.00,,,,,,\n2015,5,29,\"DL\",\"906\",\"ATL\",\"LGA\",42.00,27.00,0.00,\"\",0.00,130.00,105.00,762.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"907\",\"ROC\",\"MSP\",-4.00,-20.00,0.00,\"\",0.00,135.00,118.00,783.00,,,,,,\n2015,5,29,\"DL\",\"909\",\"LGA\",\"MIA\",-4.00,-25.00,0.00,\"\",0.00,173.00,142.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"910\",\"MCO\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,154.00,133.00,950.00,,,,,,\n2015,5,29,\"DL\",\"928\",\"DEN\",\"LGA\",-5.00,-33.00,0.00,\"\",0.00,208.00,189.00,1620.00,,,,,,\n2015,5,29,\"DL\",\"939\",\"MCO\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,153.00,131.00,950.00,,,,,,\n2015,5,29,\"DL\",\"964\",\"LGA\",\"ATL\",-17.00,-23.00,0.00,\"\",0.00,140.00,101.00,762.00,,,,,,\n2015,5,29,\"DL\",\"965\",\"MCO\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,149.00,129.00,950.00,,,,,,\n2015,5,29,\"DL\",\"971\",\"LGA\",\"DEN\",-2.00,4.00,0.00,\"\",0.00,273.00,222.00,1620.00,,,,,,\n2015,5,29,\"DL\",\"986\",\"ATL\",\"LGA\",-4.00,-3.00,0.00,\"\",0.00,134.00,104.00,762.00,,,,,,\n2015,5,29,\"DL\",\"997\",\"DTW\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,102.00,77.00,502.00,,,,,,\n2015,5,29,\"DL\",\"1086\",\"LGA\",\"ATL\",-3.00,-9.00,0.00,\"\",0.00,156.00,109.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1088\",\"FLL\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,166.00,144.00,1076.00,,,,,,\n2015,5,29,\"DL\",\"1109\",\"SEA\",\"JFK\",12.00,-14.00,0.00,\"\",0.00,309.00,283.00,2422.00,,,,,,\n2015,5,29,\"DL\",\"1111\",\"ATL\",\"ROC\",-4.00,-8.00,0.00,\"\",0.00,125.00,100.00,749.00,,,,,,\n2015,5,29,\"DL\",\"1121\",\"PBI\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,166.00,155.00,1035.00,,,,,,\n2015,5,29,\"DL\",\"1131\",\"LGA\",\"FLL\",-5.00,-10.00,0.00,\"\",0.00,187.00,139.00,1076.00,,,,,,\n2015,5,29,\"DL\",\"1145\",\"LGA\",\"DTW\",-1.00,-12.00,0.00,\"\",0.00,113.00,80.00,502.00,,,,,,\n2015,5,29,\"DL\",\"1155\",\"DTW\",\"ROC\",-5.00,-8.00,0.00,\"\",0.00,68.00,47.00,296.00,,,,,,\n2015,5,29,\"DL\",\"1159\",\"ATL\",\"BUF\",14.00,0.00,0.00,\"\",0.00,108.00,91.00,712.00,,,,,,\n2015,5,29,\"DL\",\"1159\",\"BUF\",\"ATL\",0.00,-14.00,0.00,\"\",0.00,115.00,99.00,712.00,,,,,,\n2015,5,29,\"DL\",\"1162\",\"LAX\",\"JFK\",3.00,9.00,0.00,\"\",0.00,331.00,298.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"1174\",\"LGA\",\"PBI\",-3.00,-19.00,0.00,\"\",0.00,164.00,134.00,1035.00,,,,,,\n2015,5,29,\"DL\",\"1176\",\"ATL\",\"BUF\",0.00,-7.00,0.00,\"\",0.00,123.00,94.00,712.00,,,,,,\n2015,5,29,\"DL\",\"1176\",\"BUF\",\"ATL\",-4.00,-16.00,0.00,\"\",0.00,122.00,100.00,712.00,,,,,,\n2015,5,29,\"DL\",\"1182\",\"MCO\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,157.00,129.00,950.00,,,,,,\n2015,5,29,\"DL\",\"1186\",\"ATL\",\"LGA\",17.00,3.00,0.00,\"\",0.00,127.00,100.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1214\",\"LGA\",\"ATL\",9.00,6.00,0.00,\"\",0.00,161.00,113.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1227\",\"PHX\",\"JFK\",-6.00,-6.00,0.00,\"\",0.00,290.00,260.00,2153.00,,,,,,\n2015,5,29,\"DL\",\"1242\",\"LGA\",\"PBI\",32.00,23.00,0.00,\"\",0.00,175.00,130.00,1035.00,1.00,0.00,0.00,0.00,22.00,\n2015,5,29,\"DL\",\"1262\",\"LAX\",\"JFK\",1.00,-2.00,0.00,\"\",0.00,327.00,302.00,2475.00,,,,,,\n2015,5,29,\"DL\",\"1264\",\"SLC\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,253.00,234.00,1990.00,,,,,,\n2015,5,29,\"DL\",\"1266\",\"BUF\",\"ATL\",-2.00,-1.00,0.00,\"\",0.00,123.00,106.00,712.00,,,,,,\n2015,5,29,\"DL\",\"1269\",\"LGA\",\"MIA\",-4.00,-11.00,0.00,\"\",0.00,190.00,144.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"1278\",\"MSP\",\"BUF\",11.00,9.00,0.00,\"\",0.00,117.00,96.00,735.00,,,,,,\n2015,5,29,\"DL\",\"1286\",\"ATL\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,118.00,102.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1288\",\"LGA\",\"FLL\",18.00,15.00,0.00,\"\",0.00,192.00,145.00,1076.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"1289\",\"LGA\",\"ATL\",-4.00,-14.00,0.00,\"\",0.00,152.00,115.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1298\",\"LGA\",\"ATL\",-8.00,8.00,0.00,\"\",0.00,177.00,115.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1306\",\"DTW\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,98.00,75.00,502.00,,,,,,\n2015,5,29,\"DL\",\"1312\",\"TPA\",\"JFK\",-1.00,5.00,0.00,\"\",0.00,180.00,136.00,1005.00,,,,,,\n2015,5,29,\"DL\",\"1335\",\"MIA\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,168.00,146.00,1096.00,,,,,,\n2015,5,29,\"DL\",\"1356\",\"BUF\",\"DTW\",54.00,43.00,0.00,\"\",0.00,60.00,36.00,241.00,43.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"DL\",\"1359\",\"MCO\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,151.00,130.00,950.00,,,,,,\n2015,5,29,\"DL\",\"1370\",\"ATL\",\"ROC\",16.00,15.00,0.00,\"\",0.00,124.00,97.00,749.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,29,\"DL\",\"1370\",\"ROC\",\"ATL\",13.00,1.00,0.00,\"\",0.00,122.00,99.00,749.00,,,,,,\n2015,5,29,\"DL\",\"1372\",\"DTW\",\"BUF\",83.00,81.00,0.00,\"\",0.00,64.00,41.00,241.00,24.00,0.00,0.00,0.00,57.00,\n2015,5,29,\"DL\",\"1383\",\"LGA\",\"ATL\",-2.00,-8.00,0.00,\"\",0.00,162.00,120.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1386\",\"ATL\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,122.00,103.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1394\",\"ATL\",\"JFK\",19.00,3.00,0.00,\"\",0.00,137.00,112.00,760.00,,,,,,\n2015,5,29,\"DL\",\"1419\",\"ATL\",\"JFK\",17.00,-4.00,0.00,\"\",0.00,134.00,110.00,760.00,,,,,,\n2015,5,29,\"DL\",\"1428\",\"LGA\",\"ATL\",-6.00,-12.00,0.00,\"\",0.00,152.00,106.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1447\",\"LGA\",\"ATL\",-1.00,26.00,0.00,\"\",0.00,171.00,112.00,762.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,29,\"DL\",\"1473\",\"SEA\",\"JFK\",14.00,-6.00,0.00,\"\",0.00,310.00,285.00,2422.00,,,,,,\n2015,5,29,\"DL\",\"1486\",\"ATL\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,129.00,107.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1487\",\"ATL\",\"JFK\",5.00,-9.00,0.00,\"\",0.00,130.00,110.00,760.00,,,,,,\n2015,5,29,\"DL\",\"1496\",\"MSP\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,167.00,137.00,1020.00,,,,,,\n2015,5,29,\"DL\",\"1498\",\"FLL\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,173.00,146.00,1076.00,,,,,,\n2015,5,29,\"DL\",\"1503\",\"FLL\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,173.00,150.00,1076.00,,,,,,\n2015,5,29,\"DL\",\"1514\",\"LGA\",\"FLL\",0.00,-10.00,0.00,\"\",0.00,179.00,140.00,1076.00,,,,,,\n2015,5,29,\"DL\",\"1515\",\"ATL\",\"ALB\",4.00,-13.00,0.00,\"\",0.00,130.00,110.00,853.00,,,,,,\n2015,5,29,\"DL\",\"1526\",\"MCO\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,157.00,133.00,950.00,,,,,,\n2015,5,29,\"DL\",\"1542\",\"SEA\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,306.00,278.00,2422.00,,,,,,\n2015,5,29,\"DL\",\"1543\",\"ATL\",\"ALB\",17.00,3.00,0.00,\"\",0.00,130.00,113.00,853.00,,,,,,\n2015,5,29,\"DL\",\"1543\",\"ALB\",\"ATL\",4.00,-18.00,0.00,\"\",0.00,140.00,121.00,853.00,,,,,,\n2015,5,29,\"DL\",\"1548\",\"LGA\",\"DTW\",16.00,12.00,0.00,\"\",0.00,116.00,81.00,502.00,,,,,,\n2015,5,29,\"DL\",\"1560\",\"MSY\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,168.00,150.00,1183.00,,,,,,\n2015,5,29,\"DL\",\"1562\",\"BOS\",\"JFK\",1.00,-6.00,0.00,\"\",0.00,72.00,38.00,187.00,,,,,,\n2015,5,29,\"DL\",\"1566\",\"LGA\",\"PBI\",0.00,-14.00,0.00,\"\",0.00,169.00,136.00,1035.00,,,,,,\n2015,5,29,\"DL\",\"1583\",\"SFO\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,335.00,300.00,2586.00,,,,,,\n2015,5,29,\"DL\",\"1584\",\"ATL\",\"ROC\",-1.00,-15.00,0.00,\"\",0.00,119.00,97.00,749.00,,,,,,\n2015,5,29,\"DL\",\"1584\",\"ROC\",\"ATL\",-4.00,-11.00,0.00,\"\",0.00,128.00,104.00,749.00,,,,,,\n2015,5,29,\"DL\",\"1586\",\"ATL\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,137.00,105.00,762.00,,,,,,\n2015,5,29,\"DL\",\"1596\",\"MSP\",\"LGA\",23.00,26.00,0.00,\"\",0.00,168.00,139.00,1020.00,23.00,0.00,3.00,0.00,0.00,\n2015,5,29,\"DL\",\"1628\",\"LGA\",\"DTW\",5.00,-1.00,0.00,\"\",0.00,119.00,83.00,502.00,,,,,,\n2015,5,29,\"DL\",\"1644\",\"FLL\",\"JFK\",17.00,-18.00,0.00,\"\",0.00,152.00,140.00,1069.00,,,,,,\n2015,5,29,\"DL\",\"1647\",\"LGA\",\"ATL\",-1.00,-5.00,0.00,\"\",0.00,148.00,104.00,762.00,,,,,,\n2015,5,31,\"DL\",\"2022\",\"LGA\",\"FLL\",118.00,134.00,0.00,\"\",0.00,208.00,151.00,1076.00,0.00,118.00,16.00,0.00,0.00,\n2015,5,31,\"DL\",\"2027\",\"DEN\",\"LGA\",195.00,169.00,0.00,\"\",0.00,214.00,191.00,1620.00,4.00,0.00,164.00,0.00,1.00,\n2015,5,31,\"DL\",\"2028\",\"FLL\",\"LGA\",-3.00,,0.00,\"\",1.00,,,1076.00,,,,,,\n2015,5,31,\"DL\",\"2032\",\"MSP\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,154.00,137.00,1029.00,,,,,,\n2015,5,31,\"DL\",\"2037\",\"JFK\",\"FLL\",43.00,9.00,0.00,\"\",0.00,167.00,139.00,1069.00,,,,,,\n2015,5,31,\"DL\",\"2040\",\"SFO\",\"JFK\",-1.00,43.00,0.00,\"\",0.00,385.00,333.00,2586.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,31,\"DL\",\"2043\",\"JFK\",\"BOS\",315.00,324.00,0.00,\"\",0.00,110.00,38.00,187.00,0.00,64.00,260.00,0.00,0.00,\n2015,5,31,\"DL\",\"2056\",\"MSP\",\"ROC\",10.00,-8.00,0.00,\"\",0.00,119.00,98.00,783.00,,,,,,\n2015,5,31,\"DL\",\"2058\",\"MCO\",\"JFK\",4.00,-5.00,0.00,\"\",0.00,146.00,129.00,944.00,,,,,,\n2015,5,31,\"DL\",\"2059\",\"JFK\",\"SAT\",-7.00,1.00,0.00,\"\",0.00,277.00,202.00,1587.00,,,,,,\n2015,5,31,\"DL\",\"2077\",\"LGA\",\"MCO\",5.00,18.00,0.00,\"\",0.00,189.00,125.00,950.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,31,\"DL\",\"2079\",\"BUF\",\"DTW\",-2.00,11.00,0.00,\"\",0.00,81.00,57.00,241.00,,,,,,\n2015,5,31,\"DL\",\"2086\",\"ATL\",\"LGA\",291.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,31,\"DL\",\"2096\",\"LGA\",\"MSP\",296.00,324.00,0.00,\"\",0.00,209.00,151.00,1020.00,0.00,0.00,324.00,0.00,0.00,\n2015,5,31,\"DL\",\"2099\",\"JFK\",\"MSP\",-4.00,-39.00,0.00,\"\",0.00,166.00,149.00,1029.00,,,,,,\n2015,5,31,\"DL\",\"2119\",\"LGA\",\"MSP\",0.00,-23.00,0.00,\"\",0.00,162.00,141.00,1020.00,,,,,,\n2015,5,31,\"DL\",\"2122\",\"JFK\",\"MCO\",2.00,-30.00,0.00,\"\",0.00,158.00,122.00,944.00,,,,,,\n2015,5,31,\"DL\",\"2129\",\"ROC\",\"ATL\",-3.00,-12.00,0.00,\"\",0.00,120.00,104.00,749.00,,,,,,\n2015,5,31,\"DL\",\"2131\",\"LGA\",\"DTW\",289.00,294.00,0.00,\"\",0.00,124.00,81.00,502.00,0.00,11.00,5.00,0.00,278.00,\n2015,5,31,\"DL\",\"2135\",\"TPA\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,158.00,139.00,1010.00,,,,,,\n2015,5,31,\"DL\",\"2148\",\"LGA\",\"DTW\",-3.00,-14.00,0.00,\"\",0.00,117.00,86.00,502.00,,,,,,\n2015,5,31,\"DL\",\"2150\",\"LGA\",\"DTW\",-6.00,-12.00,0.00,\"\",0.00,120.00,92.00,502.00,,,,,,\n2015,5,31,\"DL\",\"2151\",\"MIA\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,172.00,149.00,1096.00,,,,,,\n2015,5,31,\"DL\",\"2155\",\"LAS\",\"JFK\",23.00,3.00,0.00,\"\",0.00,279.00,266.00,2248.00,,,,,,\n2015,5,31,\"DL\",\"2156\",\"ATL\",\"SYR\",-4.00,-12.00,0.00,\"\",0.00,122.00,104.00,794.00,,,,,,\n2015,5,31,\"DL\",\"2156\",\"SYR\",\"ATL\",-9.00,-21.00,0.00,\"\",0.00,131.00,110.00,794.00,,,,,,\n2015,5,31,\"DL\",\"2174\",\"DTW\",\"JFK\",83.00,186.00,0.00,\"\",0.00,224.00,113.00,509.00,0.00,0.00,186.00,0.00,0.00,\n2015,5,31,\"DL\",\"2175\",\"FLL\",\"JFK\",4.00,67.00,0.00,\"\",0.00,249.00,167.00,1069.00,0.00,0.00,67.00,0.00,0.00,\n2015,5,31,\"DL\",\"2178\",\"LGA\",\"TPA\",201.00,190.00,0.00,\"\",0.00,170.00,129.00,1010.00,0.00,0.00,190.00,0.00,0.00,\n2015,5,31,\"DL\",\"2181\",\"LGA\",\"MCO\",-4.00,-14.00,0.00,\"\",0.00,160.00,122.00,950.00,,,,,,\n2015,5,31,\"DL\",\"2185\",\"FLL\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,162.00,141.00,1069.00,,,,,,\n2015,5,31,\"DL\",\"2186\",\"ATL\",\"LGA\",145.00,138.00,0.00,\"\",0.00,139.00,115.00,762.00,0.00,0.00,138.00,0.00,0.00,\n2015,5,31,\"DL\",\"2189\",\"JFK\",\"FLL\",-2.00,-25.00,0.00,\"\",0.00,180.00,140.00,1069.00,,,,,,\n2015,5,31,\"DL\",\"2190\",\"JFK\",\"MIA\",-10.00,-24.00,0.00,\"\",0.00,188.00,143.00,1089.00,,,,,,\n2015,5,31,\"DL\",\"2214\",\"BOS\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,71.00,39.00,187.00,,,,,,\n2015,5,31,\"DL\",\"2217\",\"JFK\",\"PHX\",132.00,220.00,0.00,\"\",0.00,429.00,277.00,2153.00,0.00,95.00,88.00,0.00,37.00,\n2015,5,31,\"DL\",\"2230\",\"CHS\",\"JFK\",350.00,376.00,0.00,\"\",0.00,155.00,122.00,636.00,190.00,0.00,186.00,0.00,0.00,\n2015,5,31,\"DL\",\"2231\",\"DTW\",\"LGA\",0.00,2.00,0.00,\"\",0.00,110.00,79.00,502.00,,,,,,\n2015,5,31,\"DL\",\"2240\",\"SFO\",\"JFK\",-3.00,1.00,0.00,\"\",0.00,342.00,305.00,2586.00,,,,,,\n2015,5,31,\"DL\",\"2248\",\"DTW\",\"LGA\",311.00,307.00,0.00,\"\",0.00,104.00,86.00,502.00,0.00,0.00,307.00,0.00,0.00,\n2015,5,31,\"DL\",\"2262\",\"LAX\",\"JFK\",88.00,108.00,0.00,\"\",0.00,354.00,320.00,2475.00,0.00,0.00,108.00,0.00,0.00,\n2015,5,31,\"DL\",\"2270\",\"LGA\",\"RSW\",-2.00,-27.00,0.00,\"\",0.00,171.00,152.00,1080.00,,,,,,\n2015,5,31,\"DL\",\"2276\",\"MCO\",\"JFK\",64.00,89.00,0.00,\"\",0.00,192.00,135.00,944.00,0.00,0.00,89.00,0.00,0.00,\n2015,5,31,\"DL\",\"2277\",\"JFK\",\"TPA\",336.00,334.00,0.00,\"\",0.00,191.00,133.00,1005.00,0.00,0.00,222.00,0.00,112.00,\n2015,5,31,\"DL\",\"2280\",\"LGA\",\"TPA\",-4.00,-29.00,0.00,\"\",0.00,149.00,134.00,1010.00,,,,,,\n2015,5,31,\"DL\",\"2282\",\"LGA\",\"MCO\",310.00,275.00,0.00,\"\",0.00,141.00,120.00,950.00,4.00,0.00,0.00,0.00,271.00,\n2015,5,31,\"DL\",\"2285\",\"LGA\",\"MCO\",-2.00,-18.00,0.00,\"\",0.00,147.00,127.00,950.00,,,,,,\n2015,5,31,\"DL\",\"2292\",\"JFK\",\"BOS\",339.00,315.00,0.00,\"\",0.00,68.00,32.00,187.00,0.00,40.00,0.00,0.00,275.00,\n2015,5,31,\"DL\",\"2296\",\"MSP\",\"LGA\",193.00,185.00,0.00,\"\",0.00,161.00,140.00,1020.00,3.00,0.00,182.00,0.00,0.00,\n2015,5,31,\"DL\",\"2299\",\"JFK\",\"ATL\",145.00,215.00,0.00,\"\",0.00,239.00,104.00,760.00,145.00,0.00,70.00,0.00,0.00,\n2015,5,31,\"DL\",\"2301\",\"JFK\",\"LAS\",-3.00,-41.00,0.00,\"\",0.00,316.00,288.00,2248.00,,,,,,\n2015,5,31,\"DL\",\"2311\",\"JFK\",\"MIA\",186.00,268.00,0.00,\"\",0.00,288.00,135.00,1089.00,0.00,0.00,153.00,0.00,115.00,\n2015,5,31,\"DL\",\"2312\",\"JFK\",\"DTW\",-4.00,-18.00,0.00,\"\",0.00,126.00,86.00,509.00,,,,,,\n2015,5,31,\"DL\",\"2317\",\"PBI\",\"LGA\",304.00,308.00,0.00,\"\",0.00,177.00,161.00,1035.00,304.00,0.00,4.00,0.00,0.00,\n2015,5,31,\"DL\",\"2319\",\"LGA\",\"MSP\",14.00,-22.00,0.00,\"\",0.00,159.00,141.00,1020.00,,,,,,\n2015,5,31,\"DL\",\"2331\",\"LGA\",\"DTW\",282.00,271.00,0.00,\"\",0.00,110.00,80.00,502.00,16.00,0.00,0.00,0.00,255.00,\n2015,5,31,\"DL\",\"2349\",\"DTW\",\"LGA\",194.00,265.00,0.00,\"\",0.00,175.00,87.00,502.00,0.00,0.00,265.00,0.00,0.00,\n2015,5,31,\"DL\",\"2350\",\"ATL\",\"JFK\",3.00,-4.00,0.00,\"\",0.00,128.00,107.00,760.00,,,,,,\n2015,5,31,\"DL\",\"2352\",\"LAS\",\"JFK\",-1.00,121.00,0.00,\"\",0.00,435.00,305.00,2248.00,0.00,0.00,121.00,0.00,0.00,\n2015,5,31,\"DL\",\"2354\",\"SLC\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,261.00,237.00,1990.00,,,,,,\n2015,5,31,\"DL\",\"2362\",\"LAX\",\"JFK\",-7.00,26.00,0.00,\"\",0.00,363.00,336.00,2475.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,31,\"DL\",\"2382\",\"JFK\",\"AUS\",-7.00,-37.00,0.00,\"\",0.00,234.00,207.00,1521.00,,,,,,\n2015,5,31,\"DL\",\"2386\",\"ATL\",\"LGA\",80.00,76.00,0.00,\"\",0.00,134.00,108.00,762.00,0.00,0.00,24.00,0.00,52.00,\n2015,5,31,\"DL\",\"2395\",\"LGA\",\"PBI\",-5.00,-33.00,0.00,\"\",0.00,152.00,137.00,1035.00,,,,,,\n2015,5,31,\"DL\",\"2400\",\"JFK\",\"ATL\",147.00,235.00,0.00,\"\",0.00,260.00,111.00,760.00,0.00,64.00,171.00,0.00,0.00,\n2015,5,31,\"DL\",\"2404\",\"SAN\",\"JFK\",4.00,0.00,0.00,\"\",0.00,330.00,311.00,2446.00,,,,,,\n2015,5,31,\"DL\",\"2405\",\"PHX\",\"JFK\",-4.00,69.00,0.00,\"\",0.00,368.00,280.00,2153.00,0.00,0.00,69.00,0.00,0.00,\n2015,5,31,\"DL\",\"2406\",\"TPA\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,163.00,137.00,1010.00,,,,,,\n2015,5,31,\"DL\",\"2413\",\"MIA\",\"LGA\",1.00,-5.00,0.00,\"\",0.00,178.00,145.00,1096.00,,,,,,\n2015,5,31,\"DL\",\"2432\",\"DTW\",\"SYR\",47.00,35.00,0.00,\"\",0.00,67.00,50.00,374.00,4.00,0.00,0.00,0.00,31.00,\n2015,5,31,\"DL\",\"2437\",\"JFK\",\"LAS\",111.00,101.00,0.00,\"\",0.00,345.00,285.00,2248.00,0.00,93.00,0.00,0.00,8.00,\n2015,5,31,\"DL\",\"2441\",\"SAN\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,321.00,295.00,2446.00,,,,,,\n2015,5,31,\"DL\",\"2450\",\"MCO\",\"LGA\",1.00,-5.00,0.00,\"\",0.00,150.00,130.00,950.00,,,,,,\n2015,5,31,\"DL\",\"2456\",\"JFK\",\"TPA\",-7.00,-21.00,0.00,\"\",0.00,172.00,133.00,1005.00,,,,,,\n2015,5,31,\"DL\",\"2464\",\"TPA\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,156.00,137.00,1005.00,,,,,,\n2015,5,31,\"DL\",\"2466\",\"ATL\",\"SYR\",21.00,45.00,0.00,\"\",0.00,161.00,98.00,794.00,0.00,21.00,24.00,0.00,0.00,\n2015,5,31,\"DL\",\"2466\",\"SYR\",\"ATL\",46.00,50.00,0.00,\"\",0.00,154.00,134.00,794.00,1.00,0.00,4.00,0.00,45.00,\n2015,5,31,\"DL\",\"2473\",\"ATL\",\"BUF\",39.00,25.00,0.00,\"\",0.00,114.00,90.00,712.00,0.00,0.00,0.00,0.00,25.00,\n2015,5,31,\"DL\",\"2474\",\"JFK\",\"PHX\",-11.00,-35.00,0.00,\"\",0.00,312.00,275.00,2153.00,,,,,,\n2015,5,31,\"DL\",\"2495\",\"MIA\",\"JFK\",66.00,129.00,0.00,\"\",0.00,251.00,143.00,1089.00,0.00,0.00,129.00,0.00,0.00,\n2015,5,31,\"DL\",\"2496\",\"ATL\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,131.00,102.00,762.00,,,,,,\n2015,5,31,\"DL\",\"2498\",\"FLL\",\"LGA\",180.00,198.00,0.00,\"\",0.00,201.00,157.00,1076.00,0.00,0.00,185.00,0.00,13.00,\n2015,5,31,\"DL\",\"2502\",\"JFK\",\"MIA\",-2.00,-43.00,0.00,\"\",0.00,169.00,141.00,1089.00,,,,,,\n2015,5,31,\"DL\",\"2521\",\"SFO\",\"JFK\",-11.00,-9.00,0.00,\"\",0.00,343.00,315.00,2586.00,,,,,,\n2015,5,31,\"DL\",\"2542\",\"JFK\",\"MSP\",41.00,35.00,0.00,\"\",0.00,205.00,148.00,1029.00,29.00,0.00,0.00,0.00,6.00,\n2015,5,31,\"DL\",\"2550\",\"JFK\",\"SLC\",2.00,12.00,0.00,\"\",0.00,335.00,260.00,1990.00,,,,,,\n2015,5,31,\"DL\",\"2554\",\"DEN\",\"JFK\",-4.00,9.00,0.00,\"\",0.00,254.00,222.00,1626.00,,,,,,\n2015,5,31,\"DL\",\"2565\",\"JFK\",\"ATL\",74.00,42.00,0.00,\"\",0.00,135.00,104.00,760.00,42.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"DL\",\"2567\",\"DTW\",\"ALB\",-5.00,-12.00,0.00,\"\",0.00,81.00,64.00,489.00,,,,,,\n2015,5,31,\"DL\",\"2570\",\"JFK\",\"DEN\",184.00,284.00,0.00,\"\",0.00,384.00,233.00,1626.00,0.00,184.00,100.00,0.00,0.00,\n2015,5,31,\"DL\",\"2571\",\"JFK\",\"PBI\",-11.00,-34.00,0.00,\"\",0.00,164.00,134.00,1028.00,,,,,,\n2015,5,31,\"DL\",\"2577\",\"JFK\",\"FLL\",136.00,176.00,0.00,\"\",0.00,245.00,142.00,1069.00,0.00,50.00,40.00,0.00,86.00,\n2015,5,31,\"DL\",\"2594\",\"ALB\",\"DTW\",-5.00,-1.00,0.00,\"\",0.00,105.00,90.00,489.00,,,,,,\n2015,5,31,\"DL\",\"2595\",\"FLL\",\"LGA\",-6.00,-25.00,0.00,\"\",0.00,165.00,144.00,1076.00,,,,,,\n2015,5,31,\"DL\",\"2596\",\"PBI\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,168.00,140.00,1035.00,,,,,,\n2015,5,31,\"DL\",\"2627\",\"JFK\",\"PDX\",43.00,23.00,0.00,\"\",0.00,350.00,321.00,2454.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"DL\",\"2632\",\"JFK\",\"MCO\",-3.00,-18.00,0.00,\"\",0.00,168.00,123.00,944.00,,,,,,\n2015,5,31,\"DL\",\"2634\",\"JFK\",\"BUF\",292.00,285.00,0.00,\"\",0.00,96.00,52.00,301.00,50.00,0.00,0.00,0.00,235.00,\n2015,5,30,\"DL\",\"2174\",\"DTW\",\"JFK\",5.00,-12.00,0.00,\"\",0.00,104.00,75.00,509.00,,,,,,\n2015,5,30,\"DL\",\"2181\",\"LGA\",\"MCO\",-7.00,-16.00,0.00,\"\",0.00,158.00,132.00,950.00,,,,,,\n2015,5,30,\"DL\",\"2185\",\"FLL\",\"JFK\",-3.00,16.00,0.00,\"\",0.00,191.00,173.00,1069.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,30,\"DL\",\"2186\",\"ATL\",\"LGA\",11.00,2.00,0.00,\"\",0.00,132.00,116.00,762.00,,,,,,\n2015,5,30,\"DL\",\"2190\",\"JFK\",\"MIA\",-7.00,-3.00,0.00,\"\",0.00,200.00,143.00,1089.00,,,,,,\n2015,5,30,\"DL\",\"2201\",\"JFK\",\"SLC\",59.00,58.00,0.00,\"\",0.00,320.00,260.00,1990.00,25.00,0.00,0.00,0.00,33.00,\n2015,5,30,\"DL\",\"2214\",\"ATL\",\"LGA\",6.00,2.00,0.00,\"\",0.00,128.00,107.00,762.00,,,,,,\n2015,5,30,\"DL\",\"2231\",\"LGA\",\"DTW\",-6.00,10.00,0.00,\"\",0.00,140.00,86.00,502.00,,,,,,\n2015,5,30,\"DL\",\"2240\",\"SFO\",\"JFK\",0.00,1.00,0.00,\"\",0.00,331.00,301.00,2586.00,,,,,,\n2015,5,30,\"DL\",\"2248\",\"DTW\",\"LGA\",21.00,15.00,0.00,\"\",0.00,99.00,78.00,502.00,1.00,0.00,0.00,0.00,14.00,\n2015,5,30,\"DL\",\"2259\",\"JFK\",\"MIA\",-6.00,-30.00,0.00,\"\",0.00,182.00,144.00,1089.00,,,,,,\n2015,5,30,\"DL\",\"2270\",\"LGA\",\"RSW\",7.00,-8.00,0.00,\"\",0.00,178.00,146.00,1080.00,,,,,,\n2015,5,30,\"DL\",\"2276\",\"MCO\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,157.00,133.00,944.00,,,,,,\n2015,5,30,\"DL\",\"2277\",\"JFK\",\"TPA\",1.00,-15.00,0.00,\"\",0.00,174.00,141.00,1005.00,,,,,,\n2015,5,30,\"DL\",\"2280\",\"LGA\",\"TPA\",-5.00,-14.00,0.00,\"\",0.00,163.00,138.00,1010.00,,,,,,\n2015,5,30,\"DL\",\"2285\",\"LGA\",\"MCO\",-2.00,-10.00,0.00,\"\",0.00,154.00,129.00,950.00,,,,,,\n2015,5,30,\"DL\",\"2311\",\"JFK\",\"MIA\",24.00,-4.00,0.00,\"\",0.00,174.00,142.00,1089.00,,,,,,\n2015,5,30,\"DL\",\"2312\",\"JFK\",\"DTW\",-1.00,-3.00,0.00,\"\",0.00,136.00,89.00,509.00,,,,,,\n2015,5,30,\"DL\",\"2317\",\"PBI\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,168.00,146.00,1035.00,,,,,,\n2015,5,30,\"DL\",\"2341\",\"JFK\",\"MSP\",15.00,-12.00,0.00,\"\",0.00,182.00,142.00,1029.00,,,,,,\n2015,5,30,\"DL\",\"2347\",\"JFK\",\"BOS\",-6.00,-29.00,0.00,\"\",0.00,67.00,41.00,187.00,,,,,,\n2015,5,30,\"DL\",\"2349\",\"DTW\",\"LGA\",52.00,47.00,0.00,\"\",0.00,101.00,79.00,502.00,28.00,0.00,0.00,0.00,19.00,\n2015,5,30,\"DL\",\"2350\",\"ATL\",\"JFK\",14.00,29.00,0.00,\"\",0.00,150.00,133.00,760.00,11.00,0.00,15.00,0.00,3.00,\n2015,5,30,\"DL\",\"2352\",\"LAS\",\"JFK\",-2.00,23.00,0.00,\"\",0.00,335.00,283.00,2248.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,30,\"DL\",\"2354\",\"SLC\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,257.00,236.00,1990.00,,,,,,\n2015,5,31,\"DL\",\"528\",\"LGA\",\"MSP\",-5.00,-25.00,0.00,\"\",0.00,169.00,138.00,1020.00,,,,,,\n2015,5,31,\"DL\",\"541\",\"LAS\",\"JFK\",119.00,,0.00,\"\",1.00,,,2248.00,,,,,,\n2015,5,31,\"DL\",\"544\",\"ALB\",\"ATL\",-3.00,-20.00,0.00,\"\",0.00,138.00,124.00,853.00,,,,,,\n2015,5,31,\"DL\",\"582\",\"DTW\",\"LGA\",124.00,167.00,0.00,\"\",0.00,150.00,87.00,502.00,0.00,0.00,163.00,0.00,4.00,\n2015,5,31,\"DL\",\"583\",\"LGA\",\"DTW\",-2.00,1.00,0.00,\"\",0.00,117.00,94.00,502.00,,,,,,\n2015,5,31,\"DL\",\"664\",\"TPA\",\"LGA\",-9.00,,0.00,\"\",1.00,,,1010.00,,,,,,\n2015,5,31,\"DL\",\"665\",\"ATL\",\"ALB\",-1.00,6.00,0.00,\"\",0.00,147.00,114.00,853.00,,,,,,\n2015,5,31,\"DL\",\"665\",\"ALB\",\"ATL\",0.00,29.00,0.00,\"\",0.00,181.00,145.00,853.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,31,\"DL\",\"676\",\"STT\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,239.00,205.00,1623.00,,,,,,\n2015,5,31,\"DL\",\"707\",\"ALB\",\"DTW\",-10.00,-7.00,0.00,\"\",0.00,113.00,81.00,489.00,,,,,,\n2015,5,31,\"DL\",\"714\",\"DTW\",\"LGA\",20.00,10.00,0.00,\"\",0.00,95.00,74.00,502.00,,,,,,\n2015,5,31,\"DL\",\"723\",\"ATL\",\"BUF\",-2.00,-25.00,0.00,\"\",0.00,104.00,92.00,712.00,,,,,,\n2015,5,31,\"DL\",\"723\",\"BUF\",\"ATL\",-5.00,4.00,0.00,\"\",0.00,140.00,122.00,712.00,,,,,,\n2015,5,31,\"DL\",\"729\",\"LAS\",\"JFK\",29.00,56.00,0.00,\"\",0.00,332.00,287.00,2248.00,14.00,0.00,42.00,0.00,0.00,\n2015,5,31,\"DL\",\"731\",\"DTW\",\"ALB\",-5.00,-6.00,0.00,\"\",0.00,100.00,72.00,489.00,,,,,,\n2015,5,31,\"DL\",\"750\",\"BOS\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,67.00,42.00,187.00,,,,,,\n2015,5,31,\"DL\",\"763\",\"BOS\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,64.00,43.00,187.00,,,,,,\n2015,5,31,\"DL\",\"765\",\"DTW\",\"BUF\",-4.00,-11.00,0.00,\"\",0.00,58.00,40.00,241.00,,,,,,\n2015,5,31,\"DL\",\"765\",\"BUF\",\"DTW\",-3.00,-6.00,0.00,\"\",0.00,72.00,51.00,241.00,,,,,,\n2015,5,31,\"DL\",\"772\",\"PBI\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,154.00,133.00,1035.00,,,,,,\n2015,5,31,\"DL\",\"782\",\"MIA\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,165.00,142.00,1089.00,,,,,,\n2015,5,31,\"DL\",\"787\",\"MCO\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,153.00,128.00,944.00,,,,,,\n2015,5,31,\"DL\",\"789\",\"MIA\",\"LGA\",317.00,298.00,0.00,\"\",0.00,169.00,151.00,1096.00,0.00,0.00,298.00,0.00,0.00,\n2015,5,31,\"DL\",\"791\",\"LAX\",\"JFK\",6.00,5.00,0.00,\"\",0.00,329.00,306.00,2475.00,,,,,,\n2015,5,31,\"DL\",\"792\",\"PBI\",\"JFK\",-8.00,-15.00,0.00,\"\",0.00,160.00,134.00,1028.00,,,,,,\n2015,5,31,\"DL\",\"793\",\"BOS\",\"JFK\",340.00,352.00,0.00,\"\",0.00,106.00,58.00,187.00,0.00,0.00,32.00,0.00,320.00,\n2015,5,31,\"DL\",\"802\",\"ATL\",\"LGA\",-2.00,,0.00,\"\",1.00,,,762.00,,,,,,\n2015,5,31,\"DL\",\"804\",\"LGA\",\"MSP\",300.00,301.00,0.00,\"\",0.00,195.00,165.00,1020.00,0.00,0.00,1.00,0.00,300.00,\n2015,5,31,\"DL\",\"856\",\"SAN\",\"JFK\",100.00,114.00,0.00,\"\",0.00,351.00,304.00,2446.00,0.00,0.00,114.00,0.00,0.00,\n2015,5,31,\"DL\",\"862\",\"SYR\",\"MSP\",-2.00,-12.00,0.00,\"\",0.00,137.00,122.00,860.00,,,,,,\n2015,5,31,\"DL\",\"871\",\"MSP\",\"LGA\",294.00,305.00,0.00,\"\",0.00,175.00,139.00,1020.00,0.00,0.00,305.00,0.00,0.00,\n2015,5,31,\"DL\",\"874\",\"LGA\",\"MIA\",-2.00,-33.00,0.00,\"\",0.00,174.00,148.00,1096.00,,,,,,\n2015,5,31,\"DL\",\"878\",\"RSW\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,166.00,140.00,1080.00,,,,,,\n2015,5,31,\"DL\",\"884\",\"LGA\",\"DEN\",719.00,676.00,0.00,\"\",0.00,231.00,210.00,1620.00,0.00,0.00,676.00,0.00,0.00,\n2015,5,31,\"DL\",\"889\",\"MSP\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,164.00,137.00,1020.00,,,,,,\n2015,5,31,\"DL\",\"904\",\"LGA\",\"ATL\",1.00,-11.00,0.00,\"\",0.00,132.00,110.00,762.00,,,,,,\n2015,5,31,\"DL\",\"906\",\"ATL\",\"LGA\",137.00,140.00,0.00,\"\",0.00,148.00,112.00,762.00,0.00,0.00,140.00,0.00,0.00,\n2015,5,31,\"DL\",\"909\",\"LGA\",\"MIA\",24.00,13.00,0.00,\"\",0.00,183.00,143.00,1096.00,,,,,,\n2015,5,31,\"DL\",\"910\",\"MCO\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,153.00,125.00,950.00,,,,,,\n2015,5,31,\"DL\",\"928\",\"DEN\",\"LGA\",-5.00,-26.00,0.00,\"\",0.00,215.00,194.00,1620.00,,,,,,\n2015,5,31,\"DL\",\"939\",\"MCO\",\"LGA\",125.00,129.00,0.00,\"\",0.00,167.00,140.00,950.00,5.00,0.00,106.00,0.00,18.00,\n2015,5,31,\"DL\",\"964\",\"LGA\",\"ATL\",239.00,237.00,0.00,\"\",0.00,144.00,102.00,762.00,21.00,0.00,0.00,0.00,216.00,\n2015,5,31,\"DL\",\"965\",\"MCO\",\"LGA\",249.00,249.00,0.00,\"\",0.00,161.00,141.00,950.00,0.00,0.00,249.00,0.00,0.00,\n2015,5,31,\"DL\",\"971\",\"LGA\",\"DEN\",-1.00,-26.00,0.00,\"\",0.00,242.00,213.00,1620.00,,,,,,\n2015,5,31,\"DL\",\"986\",\"ATL\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,130.00,108.00,762.00,,,,,,\n2015,5,31,\"DL\",\"997\",\"DTW\",\"LGA\",23.00,27.00,0.00,\"\",0.00,108.00,76.00,502.00,23.00,0.00,4.00,0.00,0.00,\n2015,5,31,\"DL\",\"1086\",\"LGA\",\"ATL\",-5.00,-38.00,0.00,\"\",0.00,129.00,104.00,762.00,,,,,,\n2015,5,31,\"DL\",\"1088\",\"FLL\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,168.00,142.00,1076.00,,,,,,\n2015,5,31,\"DL\",\"1109\",\"SEA\",\"JFK\",23.00,49.00,0.00,\"\",0.00,361.00,308.00,2422.00,0.00,0.00,49.00,0.00,0.00,\n2015,5,31,\"DL\",\"1111\",\"ATL\",\"ROC\",63.00,43.00,0.00,\"\",0.00,110.00,93.00,749.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,31,\"DL\",\"1121\",\"PBI\",\"LGA\",163.00,166.00,0.00,\"\",0.00,176.00,148.00,1035.00,4.00,0.00,120.00,0.00,42.00,\n2015,5,31,\"DL\",\"1131\",\"LGA\",\"FLL\",-6.00,-20.00,0.00,\"\",0.00,178.00,143.00,1076.00,,,,,,\n2015,5,31,\"DL\",\"1145\",\"LGA\",\"DTW\",-5.00,-7.00,0.00,\"\",0.00,122.00,88.00,502.00,,,,,,\n2015,5,31,\"DL\",\"1155\",\"DTW\",\"ROC\",30.00,25.00,0.00,\"\",0.00,66.00,44.00,296.00,0.00,0.00,0.00,0.00,25.00,\n2015,5,31,\"DL\",\"1159\",\"ATL\",\"BUF\",-5.00,-20.00,0.00,\"\",0.00,107.00,91.00,712.00,,,,,,\n2015,5,31,\"DL\",\"1159\",\"BUF\",\"ATL\",0.00,8.00,0.00,\"\",0.00,137.00,111.00,712.00,,,,,,\n2015,5,31,\"DL\",\"1162\",\"LAX\",\"JFK\",13.00,6.00,0.00,\"\",0.00,318.00,298.00,2475.00,,,,,,\n2015,5,31,\"DL\",\"1174\",\"LGA\",\"PBI\",45.00,22.00,0.00,\"\",0.00,157.00,134.00,1035.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"DL\",\"1176\",\"ATL\",\"BUF\",10.00,30.00,0.00,\"\",0.00,150.00,93.00,712.00,0.00,1.00,20.00,0.00,9.00,\n2015,5,31,\"DL\",\"1176\",\"BUF\",\"ATL\",44.00,27.00,0.00,\"\",0.00,117.00,98.00,712.00,9.00,0.00,0.00,0.00,18.00,\n2015,5,31,\"DL\",\"1182\",\"MCO\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,159.00,130.00,950.00,,,,,,\n2015,5,31,\"DL\",\"1186\",\"ATL\",\"LGA\",10.00,-1.00,0.00,\"\",0.00,130.00,105.00,762.00,,,,,,\n2015,5,28,\"EV\",\"3256\",\"ROC\",\"ORD\",-7.00,-28.00,0.00,\"\",0.00,100.00,84.00,528.00,,,,,,\n2015,5,1,\"EV\",\"3256\",\"ROC\",\"ORD\",-8.00,-16.00,0.00,\"\",0.00,106.00,76.00,528.00,,,,,,\n2015,5,31,\"DL\",\"2645\",\"JFK\",\"RSW\",-7.00,-15.00,0.00,\"\",0.00,193.00,150.00,1074.00,,,,,,\n2015,5,31,\"DL\",\"2649\",\"JFK\",\"TPA\",-3.00,-15.00,0.00,\"\",0.00,176.00,134.00,1005.00,,,,,,\n2015,5,31,\"DL\",\"2650\",\"TPA\",\"JFK\",-11.00,8.00,0.00,\"\",0.00,187.00,143.00,1005.00,,,,,,\n2015,5,31,\"DL\",\"2652\",\"TPA\",\"JFK\",134.00,156.00,0.00,\"\",0.00,196.00,150.00,1005.00,0.00,0.00,156.00,0.00,0.00,\n2015,5,31,\"DL\",\"2653\",\"MCO\",\"JFK\",249.00,262.00,0.00,\"\",0.00,179.00,131.00,944.00,5.00,0.00,251.00,0.00,6.00,\n2015,5,31,\"DL\",\"2669\",\"BOS\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,77.00,44.00,184.00,,,,,,\n2015,5,31,\"DL\",\"2671\",\"BOS\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,69.00,46.00,184.00,,,,,,\n2015,5,31,\"DL\",\"2672\",\"LGA\",\"BOS\",-1.00,-12.00,0.00,\"\",0.00,71.00,41.00,184.00,,,,,,\n2015,5,31,\"DL\",\"2675\",\"BOS\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,70.00,42.00,184.00,,,,,,\n2015,5,31,\"DL\",\"2676\",\"LGA\",\"BOS\",-2.00,-10.00,0.00,\"\",0.00,68.00,41.00,184.00,,,,,,\n2015,5,31,\"DL\",\"2679\",\"BOS\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,63.00,42.00,184.00,,,,,,\n2015,5,31,\"DL\",\"2680\",\"LGA\",\"BOS\",12.00,-1.00,0.00,\"\",0.00,66.00,39.00,184.00,,,,,,\n2015,5,31,\"DL\",\"2681\",\"BOS\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,74.00,40.00,184.00,,,,,,\n2015,5,31,\"DL\",\"2682\",\"LGA\",\"BOS\",25.00,58.00,0.00,\"\",0.00,105.00,76.00,184.00,0.00,0.00,58.00,0.00,0.00,\n2015,5,31,\"DL\",\"2685\",\"BOS\",\"LGA\",210.00,203.00,0.00,\"\",0.00,65.00,42.00,184.00,0.00,0.00,203.00,0.00,0.00,\n2015,5,31,\"DL\",\"2686\",\"LGA\",\"BOS\",187.00,177.00,0.00,\"\",0.00,72.00,44.00,184.00,0.00,149.00,28.00,0.00,0.00,\n2015,5,31,\"DL\",\"2687\",\"BOS\",\"LGA\",193.00,199.00,0.00,\"\",0.00,82.00,61.00,184.00,0.00,0.00,199.00,0.00,0.00,\n2015,5,31,\"DL\",\"2689\",\"BOS\",\"LGA\",174.00,196.00,0.00,\"\",0.00,102.00,47.00,184.00,0.00,0.00,27.00,0.00,169.00,\n2015,5,31,\"DL\",\"2690\",\"LGA\",\"BOS\",188.00,,1.00,\"A\",0.00,,,184.00,,,,,,\n2015,5,31,\"DL\",\"2692\",\"LGA\",\"BOS\",209.00,208.00,0.00,\"\",0.00,78.00,33.00,184.00,14.00,0.00,0.00,0.00,194.00,\n2015,5,31,\"DL\",\"2694\",\"LGA\",\"BOS\",267.00,250.00,0.00,\"\",0.00,61.00,32.00,184.00,76.00,0.00,0.00,0.00,174.00,\n2015,5,31,\"DL\",\"2785\",\"JFK\",\"CHS\",-6.00,-27.00,0.00,\"\",0.00,115.00,88.00,636.00,,,,,,\n2015,5,25,\"EV\",\"3817\",\"ORD\",\"SYR\",-5.00,-3.00,0.00,\"\",0.00,117.00,87.00,607.00,,,,,,\n2015,5,25,\"EV\",\"3938\",\"ORD\",\"HPN\",-11.00,-24.00,0.00,\"\",0.00,121.00,98.00,738.00,,,,,,\n2015,5,1,\"EV\",\"3938\",\"ORD\",\"HPN\",-4.00,-4.00,0.00,\"\",0.00,134.00,110.00,738.00,,,,,,\n2015,5,28,\"EV\",\"3938\",\"ORD\",\"HPN\",-5.00,-5.00,0.00,\"\",0.00,134.00,101.00,738.00,,,,,,\n2015,5,17,\"EV\",\"3938\",\"ORD\",\"HPN\",-5.00,-14.00,0.00,\"\",0.00,125.00,105.00,738.00,,,,,,\n2015,5,26,\"EV\",\"3938\",\"ORD\",\"HPN\",0.00,47.00,0.00,\"\",0.00,181.00,105.00,738.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,3,\"EV\",\"3938\",\"ORD\",\"HPN\",-2.00,-9.00,0.00,\"\",0.00,127.00,104.00,738.00,,,,,,\n2015,5,4,\"EV\",\"3938\",\"ORD\",\"HPN\",-2.00,-15.00,0.00,\"\",0.00,121.00,99.00,738.00,,,,,,\n2015,5,27,\"EV\",\"3938\",\"ORD\",\"HPN\",57.00,96.00,0.00,\"\",0.00,173.00,148.00,738.00,2.00,0.00,94.00,0.00,0.00,\n2015,5,29,\"EV\",\"3938\",\"ORD\",\"HPN\",-4.00,-3.00,0.00,\"\",0.00,135.00,102.00,738.00,,,,,,\n2015,5,5,\"EV\",\"3938\",\"ORD\",\"HPN\",-1.00,-10.00,0.00,\"\",0.00,125.00,101.00,738.00,,,,,,\n2015,5,31,\"EV\",\"3938\",\"ORD\",\"HPN\",-4.00,24.00,0.00,\"\",0.00,162.00,145.00,738.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,6,\"EV\",\"3938\",\"ORD\",\"HPN\",-5.00,-17.00,0.00,\"\",0.00,122.00,107.00,738.00,,,,,,\n2015,5,7,\"EV\",\"3938\",\"ORD\",\"HPN\",3.00,-5.00,0.00,\"\",0.00,126.00,110.00,738.00,,,,,,\n2015,5,18,\"EV\",\"3938\",\"ORD\",\"HPN\",57.00,41.00,0.00,\"\",0.00,118.00,99.00,738.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,19,\"EV\",\"3938\",\"ORD\",\"HPN\",20.00,7.00,0.00,\"\",0.00,121.00,99.00,738.00,,,,,,\n2015,5,8,\"EV\",\"3938\",\"ORD\",\"HPN\",-3.00,-11.00,0.00,\"\",0.00,126.00,112.00,738.00,,,,,,\n2015,5,21,\"EV\",\"3938\",\"ORD\",\"HPN\",-4.00,-22.00,0.00,\"\",0.00,116.00,98.00,738.00,,,,,,\n2015,5,20,\"EV\",\"3938\",\"ORD\",\"HPN\",122.00,111.00,0.00,\"\",0.00,123.00,98.00,738.00,101.00,0.00,0.00,0.00,10.00,\n2015,5,10,\"EV\",\"3938\",\"ORD\",\"HPN\",-3.00,1.00,0.00,\"\",0.00,138.00,106.00,738.00,,,,,,\n2015,5,22,\"EV\",\"3938\",\"ORD\",\"HPN\",0.00,-17.00,0.00,\"\",0.00,117.00,99.00,738.00,,,,,,\n2015,5,12,\"EV\",\"3938\",\"ORD\",\"HPN\",-4.00,-29.00,0.00,\"\",0.00,109.00,93.00,738.00,,,,,,\n2015,5,11,\"EV\",\"3938\",\"ORD\",\"HPN\",-3.00,-4.00,0.00,\"\",0.00,133.00,107.00,738.00,,,,,,\n2015,5,13,\"EV\",\"3938\",\"ORD\",\"HPN\",0.00,-1.00,0.00,\"\",0.00,133.00,107.00,738.00,,,,,,\n2015,5,14,\"EV\",\"3938\",\"ORD\",\"HPN\",109.00,88.00,0.00,\"\",0.00,113.00,96.00,738.00,88.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"EV\",\"3938\",\"ORD\",\"HPN\",2.00,-2.00,0.00,\"\",0.00,131.00,102.00,738.00,,,,,,\n2015,5,21,\"DL\",\"208\",\"JFK\",\"MCO\",-7.00,12.00,0.00,\"\",0.00,206.00,136.00,944.00,,,,,,\n2015,5,21,\"DL\",\"221\",\"LGA\",\"ATL\",19.00,17.00,0.00,\"\",0.00,163.00,117.00,762.00,2.00,0.00,0.00,0.00,15.00,\n2015,5,21,\"DL\",\"234\",\"PIT\",\"JFK\",14.00,1.00,0.00,\"\",0.00,87.00,58.00,340.00,,,,,,\n2015,5,21,\"DL\",\"245\",\"JFK\",\"SLC\",-3.00,-14.00,0.00,\"\",0.00,317.00,277.00,1990.00,,,,,,\n2015,5,21,\"DL\",\"326\",\"SJU\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,230.00,213.00,1598.00,,,,,,\n2015,5,21,\"DL\",\"332\",\"SJU\",\"JFK\",-14.00,-36.00,0.00,\"\",0.00,224.00,206.00,1598.00,,,,,,\n2015,5,21,\"DL\",\"333\",\"MSP\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,145.00,128.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"342\",\"SFO\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,313.00,290.00,2586.00,,,,,,\n2015,5,21,\"DL\",\"347\",\"LGA\",\"ATL\",1.00,-9.00,0.00,\"\",0.00,148.00,111.00,762.00,,,,,,\n2015,5,21,\"DL\",\"348\",\"SJU\",\"JFK\",-15.00,-9.00,0.00,\"\",0.00,248.00,207.00,1598.00,,,,,,\n2015,5,21,\"DL\",\"350\",\"LGA\",\"ATL\",-3.00,-26.00,0.00,\"\",0.00,130.00,112.00,762.00,,,,,,\n2015,5,21,\"DL\",\"400\",\"PDX\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,308.00,286.00,2454.00,,,,,,\n2015,5,21,\"DL\",\"401\",\"AUS\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,227.00,187.00,1521.00,,,,,,\n2015,5,21,\"DL\",\"403\",\"PDX\",\"JFK\",-9.00,-26.00,0.00,\"\",0.00,317.00,292.00,2454.00,,,,,,\n2015,5,21,\"DL\",\"404\",\"JFK\",\"ATL\",3.00,5.00,0.00,\"\",0.00,171.00,114.00,760.00,,,,,,\n2015,5,21,\"DL\",\"405\",\"JFK\",\"TPA\",-3.00,-8.00,0.00,\"\",0.00,166.00,142.00,1005.00,,,,,,\n2015,5,21,\"DL\",\"407\",\"MCO\",\"JFK\",-2.00,-27.00,0.00,\"\",0.00,144.00,122.00,944.00,,,,,,\n2015,5,21,\"DL\",\"408\",\"JFK\",\"SLC\",-4.00,12.00,0.00,\"\",0.00,321.00,286.00,1990.00,,,,,,\n2015,5,21,\"DL\",\"409\",\"JFK\",\"SJU\",0.00,-33.00,0.00,\"\",0.00,214.00,195.00,1598.00,,,,,,\n2015,5,21,\"DL\",\"410\",\"MSP\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,153.00,130.00,1029.00,,,,,,\n2015,5,21,\"DL\",\"412\",\"LAX\",\"JFK\",28.00,17.00,0.00,\"\",0.00,328.00,280.00,2475.00,7.00,0.00,0.00,0.00,10.00,\n2015,5,21,\"DL\",\"414\",\"SFO\",\"JFK\",20.00,-11.00,0.00,\"\",0.00,314.00,287.00,2586.00,,,,,,\n2015,5,21,\"DL\",\"415\",\"JFK\",\"SFO\",33.00,11.00,0.00,\"\",0.00,386.00,355.00,2586.00,,,,,,\n2015,5,21,\"DL\",\"417\",\"JFK\",\"SEA\",2.00,-23.00,0.00,\"\",0.00,357.00,312.00,2422.00,,,,,,\n2015,5,21,\"DL\",\"418\",\"SEA\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,314.00,284.00,2422.00,,,,,,\n2015,5,21,\"DL\",\"419\",\"JFK\",\"SEA\",3.00,-28.00,0.00,\"\",0.00,348.00,309.00,2422.00,,,,,,\n2015,5,21,\"DL\",\"420\",\"JFK\",\"LAX\",-2.00,-11.00,0.00,\"\",0.00,389.00,343.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"422\",\"JFK\",\"LAX\",-2.00,-18.00,0.00,\"\",0.00,364.00,336.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"423\",\"JFK\",\"LAX\",15.00,14.00,0.00,\"\",0.00,372.00,341.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"424\",\"JFK\",\"LAX\",-1.00,-6.00,0.00,\"\",0.00,365.00,328.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"426\",\"JFK\",\"MCO\",-4.00,-15.00,0.00,\"\",0.00,161.00,137.00,944.00,,,,,,\n2015,5,21,\"DL\",\"427\",\"JFK\",\"LAX\",21.00,14.00,0.00,\"\",0.00,381.00,345.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"428\",\"JFK\",\"FLL\",-3.00,-16.00,0.00,\"\",0.00,171.00,141.00,1069.00,,,,,,\n2015,5,21,\"DL\",\"430\",\"JFK\",\"SFO\",-4.00,-6.00,0.00,\"\",0.00,382.00,358.00,2586.00,,,,,,\n2015,5,21,\"DL\",\"431\",\"JFK\",\"SFO\",-1.00,20.00,0.00,\"\",0.00,430.00,356.00,2586.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,21,\"DL\",\"434\",\"JFK\",\"SFO\",1.00,-13.00,0.00,\"\",0.00,390.00,360.00,2586.00,,,,,,\n2015,5,21,\"DL\",\"435\",\"JFK\",\"SFO\",3.00,-4.00,0.00,\"\",0.00,397.00,342.00,2586.00,,,,,,\n2015,5,21,\"DL\",\"436\",\"JFK\",\"LAS\",-3.00,-7.00,0.00,\"\",0.00,346.00,308.00,2248.00,,,,,,\n2015,5,21,\"DL\",\"437\",\"JFK\",\"BOS\",-7.00,-29.00,0.00,\"\",0.00,55.00,40.00,187.00,,,,,,\n2015,5,21,\"DL\",\"438\",\"JFK\",\"MCO\",-6.00,-8.00,0.00,\"\",0.00,166.00,139.00,944.00,,,,,,\n2015,5,21,\"DL\",\"439\",\"JFK\",\"MSP\",-5.00,-24.00,0.00,\"\",0.00,173.00,152.00,1029.00,,,,,,\n2015,5,21,\"DL\",\"442\",\"JFK\",\"AUS\",-6.00,1.00,0.00,\"\",0.00,271.00,216.00,1521.00,,,,,,\n2015,5,21,\"DL\",\"443\",\"JFK\",\"LAS\",-1.00,27.00,0.00,\"\",0.00,382.00,313.00,2248.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,21,\"DL\",\"444\",\"SLC\",\"JFK\",-1.00,-32.00,0.00,\"\",0.00,249.00,223.00,1990.00,,,,,,\n2015,5,21,\"DL\",\"445\",\"JFK\",\"PDX\",-5.00,-35.00,0.00,\"\",0.00,348.00,318.00,2454.00,,,,,,\n2015,5,21,\"DL\",\"447\",\"JFK\",\"LAX\",5.00,9.00,0.00,\"\",0.00,394.00,350.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"448\",\"JFK\",\"SEA\",-2.00,7.00,0.00,\"\",0.00,369.00,330.00,2422.00,,,,,,\n2015,5,21,\"DL\",\"451\",\"JFK\",\"SJU\",3.00,-10.00,0.00,\"\",0.00,229.00,191.00,1598.00,,,,,,\n2015,5,21,\"DL\",\"453\",\"JFK\",\"CHS\",3.00,-2.00,0.00,\"\",0.00,134.00,90.00,636.00,,,,,,\n2015,5,21,\"DL\",\"454\",\"JFK\",\"ATL\",-5.00,-33.00,0.00,\"\",0.00,124.00,110.00,760.00,,,,,,\n2015,5,21,\"DL\",\"455\",\"JFK\",\"DEN\",39.00,28.00,0.00,\"\",0.00,271.00,239.00,1626.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"DL\",\"456\",\"JFK\",\"SEA\",2.00,-11.00,0.00,\"\",0.00,350.00,323.00,2422.00,,,,,,\n2015,5,21,\"DL\",\"459\",\"JFK\",\"SAN\",-1.00,3.00,0.00,\"\",0.00,379.00,341.00,2446.00,,,,,,\n2015,5,21,\"DL\",\"460\",\"JFK\",\"SLC\",4.00,23.00,0.00,\"\",0.00,344.00,300.00,1990.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,21,\"DL\",\"462\",\"JFK\",\"SAN\",-1.00,16.00,0.00,\"\",0.00,390.00,355.00,2446.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,21,\"DL\",\"463\",\"JFK\",\"PIT\",-7.00,-20.00,0.00,\"\",0.00,108.00,71.00,340.00,,,,,,\n2015,5,21,\"DL\",\"464\",\"JFK\",\"MIA\",-1.00,-9.00,0.00,\"\",0.00,173.00,149.00,1089.00,,,,,,\n2015,5,21,\"DL\",\"465\",\"JFK\",\"STT\",-7.00,-14.00,0.00,\"\",0.00,239.00,197.00,1623.00,,,,,,\n2015,5,21,\"DL\",\"466\",\"SLC\",\"JFK\",-6.00,-37.00,0.00,\"\",0.00,246.00,223.00,1990.00,,,,,,\n2015,5,21,\"DL\",\"468\",\"SFO\",\"JFK\",-2.00,-39.00,0.00,\"\",0.00,312.00,290.00,2586.00,,,,,,\n2015,5,21,\"DL\",\"469\",\"JFK\",\"SFO\",-4.00,-6.00,0.00,\"\",0.00,388.00,354.00,2586.00,,,,,,\n2015,5,21,\"DL\",\"472\",\"JFK\",\"LAX\",-1.00,2.00,0.00,\"\",0.00,388.00,340.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"476\",\"LAX\",\"JFK\",13.00,-6.00,0.00,\"\",0.00,316.00,276.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"477\",\"JFK\",\"LAX\",12.00,11.00,0.00,\"\",0.00,394.00,339.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"478\",\"ATL\",\"JFK\",6.00,-12.00,0.00,\"\",0.00,134.00,102.00,760.00,,,,,,\n2015,5,21,\"DL\",\"480\",\"JFK\",\"SJU\",-9.00,-24.00,0.00,\"\",0.00,219.00,192.00,1598.00,,,,,,\n2015,5,21,\"DL\",\"486\",\"JFK\",\"LAS\",-4.00,5.00,0.00,\"\",0.00,341.00,316.00,2248.00,,,,,,\n2015,5,21,\"DL\",\"488\",\"JFK\",\"SJU\",-3.00,-14.00,0.00,\"\",0.00,216.00,189.00,1598.00,,,,,,\n2015,5,21,\"DL\",\"491\",\"JFK\",\"SJU\",5.00,-15.00,0.00,\"\",0.00,218.00,194.00,1598.00,,,,,,\n2015,5,21,\"DL\",\"494\",\"JFK\",\"LAS\",83.00,55.00,0.00,\"\",0.00,328.00,305.00,2248.00,55.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"DL\",\"495\",\"JFK\",\"ATL\",0.00,6.00,0.00,\"\",0.00,175.00,113.00,760.00,,,,,,\n2015,5,21,\"DL\",\"496\",\"JFK\",\"BOS\",-4.00,-4.00,0.00,\"\",0.00,83.00,43.00,187.00,,,,,,\n2015,5,21,\"DL\",\"497\",\"JFK\",\"ATL\",1.00,-9.00,0.00,\"\",0.00,143.00,112.00,760.00,,,,,,\n2015,5,21,\"DL\",\"498\",\"JFK\",\"SFO\",128.00,102.00,0.00,\"\",0.00,382.00,344.00,2586.00,102.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"DL\",\"499\",\"JFK\",\"SLC\",-4.00,-15.00,0.00,\"\",0.00,299.00,278.00,1990.00,,,,,,\n2015,5,21,\"DL\",\"511\",\"SJU\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,236.00,203.00,1598.00,,,,,,\n2015,5,21,\"DL\",\"527\",\"RSW\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,158.00,135.00,1074.00,,,,,,\n2015,5,21,\"DL\",\"528\",\"LGA\",\"MSP\",-3.00,-21.00,0.00,\"\",0.00,167.00,146.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"541\",\"LAS\",\"JFK\",0.00,-25.00,0.00,\"\",0.00,273.00,256.00,2248.00,,,,,,\n2015,5,21,\"DL\",\"544\",\"ALB\",\"ATL\",-6.00,-4.00,0.00,\"\",0.00,157.00,134.00,853.00,,,,,,\n2015,5,21,\"DL\",\"582\",\"DTW\",\"LGA\",2.00,-8.00,0.00,\"\",0.00,97.00,73.00,502.00,,,,,,\n2015,5,21,\"DL\",\"583\",\"LGA\",\"DTW\",-1.00,-5.00,0.00,\"\",0.00,110.00,84.00,502.00,,,,,,\n2015,5,21,\"DL\",\"662\",\"BUF\",\"MSP\",-1.00,-9.00,0.00,\"\",0.00,136.00,107.00,735.00,,,,,,\n2015,5,21,\"DL\",\"664\",\"TPA\",\"LGA\",-8.00,11.00,0.00,\"\",0.00,182.00,161.00,1010.00,,,,,,\n2015,5,21,\"DL\",\"665\",\"ATL\",\"ALB\",-3.00,-9.00,0.00,\"\",0.00,134.00,107.00,853.00,,,,,,\n2015,5,21,\"DL\",\"665\",\"ALB\",\"ATL\",7.00,39.00,0.00,\"\",0.00,184.00,135.00,853.00,7.00,0.00,32.00,0.00,0.00,\n2015,5,21,\"DL\",\"676\",\"STT\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,239.00,213.00,1623.00,,,,,,\n2015,5,21,\"DL\",\"707\",\"DTW\",\"ALB\",-4.00,-19.00,0.00,\"\",0.00,82.00,61.00,489.00,,,,,,\n2015,5,21,\"DL\",\"707\",\"ALB\",\"DTW\",18.00,13.00,0.00,\"\",0.00,105.00,81.00,489.00,,,,,,\n2015,5,21,\"DL\",\"714\",\"DTW\",\"LGA\",16.00,7.00,0.00,\"\",0.00,97.00,72.00,502.00,,,,,,\n2015,5,21,\"DL\",\"723\",\"ATL\",\"BUF\",0.00,-22.00,0.00,\"\",0.00,105.00,88.00,712.00,,,,,,\n2015,5,21,\"DL\",\"723\",\"BUF\",\"ATL\",-2.00,-15.00,0.00,\"\",0.00,118.00,104.00,712.00,,,,,,\n2015,5,21,\"DL\",\"725\",\"ATL\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,124.00,104.00,762.00,,,,,,\n2015,5,21,\"DL\",\"729\",\"LAS\",\"JFK\",22.00,-6.00,0.00,\"\",0.00,277.00,253.00,2248.00,,,,,,\n2015,5,21,\"DL\",\"731\",\"LGA\",\"DTW\",-3.00,-4.00,0.00,\"\",0.00,113.00,88.00,502.00,,,,,,\n2015,5,21,\"DL\",\"750\",\"BOS\",\"JFK\",-1.00,-2.00,0.00,\"\",0.00,79.00,43.00,187.00,,,,,,\n2015,5,21,\"DL\",\"763\",\"BOS\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,68.00,42.00,187.00,,,,,,\n2015,5,21,\"DL\",\"765\",\"DTW\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,57.00,38.00,241.00,,,,,,\n2015,5,21,\"DL\",\"765\",\"BUF\",\"DTW\",-5.00,-23.00,0.00,\"\",0.00,57.00,43.00,241.00,,,,,,\n2015,5,21,\"DL\",\"772\",\"PBI\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,152.00,132.00,1035.00,,,,,,\n2015,5,21,\"DL\",\"782\",\"MIA\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,174.00,135.00,1089.00,,,,,,\n2015,5,21,\"DL\",\"787\",\"MCO\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,144.00,117.00,944.00,,,,,,\n2015,5,21,\"DL\",\"789\",\"MIA\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,177.00,147.00,1096.00,,,,,,\n2015,5,21,\"DL\",\"791\",\"LAX\",\"JFK\",-4.00,-37.00,0.00,\"\",0.00,297.00,268.00,2475.00,,,,,,\n2015,5,21,\"DL\",\"792\",\"PBI\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,154.00,130.00,1028.00,,,,,,\n2015,5,21,\"DL\",\"793\",\"BOS\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,87.00,42.00,187.00,,,,,,\n2015,5,21,\"DL\",\"802\",\"ATL\",\"LGA\",-5.00,10.00,0.00,\"\",0.00,160.00,125.00,762.00,,,,,,\n2015,5,21,\"DL\",\"804\",\"LGA\",\"MSP\",-2.00,-15.00,0.00,\"\",0.00,181.00,146.00,1020.00,,,,,,\n2015,5,25,\"EV\",\"4120\",\"LGA\",\"CLE\",-6.00,-30.00,0.00,\"\",0.00,90.00,69.00,419.00,,,,,,\n2015,5,28,\"EV\",\"4120\",\"LGA\",\"CLE\",-15.00,-26.00,0.00,\"\",0.00,103.00,70.00,419.00,,,,,,\n2015,5,1,\"EV\",\"4120\",\"LGA\",\"CLE\",-10.00,-21.00,0.00,\"\",0.00,102.00,68.00,419.00,,,,,,\n2015,5,4,\"EV\",\"4120\",\"LGA\",\"CLE\",-7.00,-27.00,0.00,\"\",0.00,93.00,64.00,419.00,,,,,,\n2015,5,26,\"EV\",\"4120\",\"LGA\",\"CLE\",-3.00,-29.00,0.00,\"\",0.00,88.00,67.00,419.00,,,,,,\n2015,5,27,\"EV\",\"4120\",\"LGA\",\"CLE\",-1.00,-12.00,0.00,\"\",0.00,103.00,72.00,419.00,,,,,,\n2015,5,5,\"EV\",\"4120\",\"LGA\",\"CLE\",-11.00,-18.00,0.00,\"\",0.00,106.00,70.00,419.00,,,,,,\n2015,5,29,\"EV\",\"4120\",\"LGA\",\"CLE\",-7.00,-33.00,0.00,\"\",0.00,88.00,63.00,419.00,,,,,,\n2015,5,18,\"EV\",\"4120\",\"LGA\",\"CLE\",142.00,114.00,0.00,\"\",0.00,86.00,63.00,419.00,0.00,0.00,0.00,0.00,114.00,\n2015,5,7,\"EV\",\"4120\",\"LGA\",\"CLE\",-8.00,-24.00,0.00,\"\",0.00,98.00,69.00,419.00,,,,,,\n2015,5,6,\"EV\",\"4120\",\"LGA\",\"CLE\",-13.00,-10.00,0.00,\"\",0.00,117.00,78.00,419.00,,,,,,\n2015,5,19,\"EV\",\"4120\",\"LGA\",\"CLE\",-10.00,-29.00,0.00,\"\",0.00,95.00,69.00,419.00,,,,,,\n2015,5,20,\"EV\",\"4120\",\"LGA\",\"CLE\",-16.00,-7.00,0.00,\"\",0.00,123.00,82.00,419.00,,,,,,\n2015,5,8,\"EV\",\"4120\",\"LGA\",\"CLE\",2.00,16.00,0.00,\"\",0.00,128.00,64.00,419.00,2.00,0.00,14.00,0.00,0.00,\n2015,5,11,\"EV\",\"4120\",\"LGA\",\"CLE\",-10.00,-29.00,0.00,\"\",0.00,95.00,65.00,419.00,,,,,,\n2015,5,21,\"EV\",\"4120\",\"LGA\",\"CLE\",-11.00,-28.00,0.00,\"\",0.00,97.00,72.00,419.00,,,,,,\n2015,5,22,\"EV\",\"4120\",\"LGA\",\"CLE\",-12.00,-14.00,0.00,\"\",0.00,112.00,84.00,419.00,,,,,,\n2015,5,12,\"EV\",\"4120\",\"LGA\",\"CLE\",-11.00,-34.00,0.00,\"\",0.00,91.00,69.00,419.00,,,,,,\n2015,5,13,\"EV\",\"4120\",\"LGA\",\"CLE\",-4.00,2.00,0.00,\"\",0.00,120.00,80.00,419.00,,,,,,\n2015,5,15,\"EV\",\"4120\",\"LGA\",\"CLE\",-10.00,-11.00,0.00,\"\",0.00,113.00,86.00,419.00,,,,,,\n2015,5,14,\"EV\",\"4120\",\"LGA\",\"CLE\",-11.00,-20.00,0.00,\"\",0.00,105.00,72.00,419.00,,,,,,\n2015,5,28,\"EV\",\"4179\",\"ORD\",\"ELM\",-5.00,0.00,0.00,\"\",0.00,105.00,74.00,566.00,,,,,,\n2015,5,25,\"EV\",\"4179\",\"ORD\",\"ELM\",-5.00,-4.00,0.00,\"\",0.00,101.00,74.00,566.00,,,,,,\n2015,5,17,\"EV\",\"4179\",\"ORD\",\"ELM\",10.00,16.00,0.00,\"\",0.00,106.00,77.00,566.00,2.00,0.00,6.00,0.00,8.00,\n2015,5,26,\"EV\",\"4179\",\"ORD\",\"ELM\",-2.00,24.00,0.00,\"\",0.00,126.00,79.00,566.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,6,\"EV\",\"4179\",\"ORD\",\"ELM\",-6.00,1.00,0.00,\"\",0.00,107.00,82.00,566.00,,,,,,\n2015,5,27,\"EV\",\"4179\",\"ORD\",\"ELM\",4.00,4.00,0.00,\"\",0.00,100.00,75.00,566.00,,,,,,\n2015,5,29,\"EV\",\"4179\",\"ORD\",\"ELM\",17.00,19.00,0.00,\"\",0.00,102.00,76.00,566.00,0.00,0.00,2.00,0.00,17.00,\n2015,5,31,\"EV\",\"4179\",\"ORD\",\"ELM\",34.00,27.00,0.00,\"\",0.00,93.00,80.00,566.00,0.00,0.00,24.00,0.00,3.00,\n2015,5,10,\"EV\",\"4179\",\"ORD\",\"ELM\",47.00,66.00,0.00,\"\",0.00,119.00,94.00,566.00,0.00,47.00,19.00,0.00,0.00,\n2015,5,7,\"EV\",\"4179\",\"ORD\",\"ELM\",6.00,6.00,0.00,\"\",0.00,100.00,77.00,566.00,,,,,,\n2015,5,18,\"EV\",\"4179\",\"ORD\",\"ELM\",-4.00,0.00,0.00,\"\",0.00,104.00,75.00,566.00,,,,,,\n2015,5,8,\"EV\",\"4179\",\"ORD\",\"ELM\",-6.00,-3.00,0.00,\"\",0.00,103.00,77.00,566.00,,,,,,\n2015,5,19,\"EV\",\"4179\",\"ORD\",\"ELM\",8.00,0.00,0.00,\"\",0.00,92.00,75.00,566.00,,,,,,\n2015,5,11,\"EV\",\"4179\",\"ORD\",\"ELM\",0.00,-1.00,0.00,\"\",0.00,99.00,76.00,566.00,,,,,,\n2015,5,20,\"EV\",\"4179\",\"ORD\",\"ELM\",94.00,94.00,0.00,\"\",0.00,100.00,70.00,566.00,94.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"EV\",\"4179\",\"ORD\",\"ELM\",-2.00,8.00,0.00,\"\",0.00,110.00,71.00,566.00,,,,,,\n2015,5,12,\"EV\",\"4179\",\"ORD\",\"ELM\",-7.00,-7.00,0.00,\"\",0.00,100.00,75.00,566.00,,,,,,\n2015,5,21,\"EV\",\"4179\",\"ORD\",\"ELM\",67.00,59.00,0.00,\"\",0.00,92.00,76.00,566.00,0.00,0.00,0.00,0.00,59.00,\n2015,5,24,\"EV\",\"4179\",\"ORD\",\"ELM\",-7.00,-21.00,0.00,\"\",0.00,86.00,72.00,566.00,,,,,,\n2015,5,14,\"EV\",\"4179\",\"ORD\",\"ELM\",-5.00,-10.00,0.00,\"\",0.00,95.00,77.00,566.00,,,,,,\n2015,5,15,\"EV\",\"4179\",\"ORD\",\"ELM\",84.00,82.00,0.00,\"\",0.00,98.00,80.00,566.00,80.00,0.00,0.00,0.00,2.00,\n2015,5,13,\"EV\",\"4179\",\"ORD\",\"ELM\",7.00,3.00,0.00,\"\",0.00,96.00,73.00,566.00,,,,,,\n2015,5,17,\"EV\",\"4245\",\"EWR\",\"ROC\",-3.00,-32.00,0.00,\"\",0.00,58.00,39.00,246.00,,,,,,\n2015,5,28,\"EV\",\"4245\",\"EWR\",\"ROC\",-3.00,-29.00,0.00,\"\",0.00,61.00,42.00,246.00,,,,,,\n2015,5,25,\"EV\",\"4245\",\"EWR\",\"ROC\",-11.00,-24.00,0.00,\"\",0.00,74.00,45.00,246.00,,,,,,\n2015,5,27,\"EV\",\"4245\",\"EWR\",\"ROC\",,,1.00,\"C\",0.00,,,246.00,,,,,,\n2015,5,29,\"EV\",\"4245\",\"EWR\",\"ROC\",-11.00,-10.00,0.00,\"\",0.00,88.00,41.00,246.00,,,,,,\n2015,5,26,\"EV\",\"4245\",\"EWR\",\"ROC\",18.00,-9.00,0.00,\"\",0.00,60.00,41.00,246.00,,,,,,\n2015,5,6,\"EV\",\"4245\",\"EWR\",\"ROC\",-4.00,-32.00,0.00,\"\",0.00,59.00,42.00,246.00,,,,,,\n2015,5,31,\"EV\",\"4245\",\"EWR\",\"ROC\",,,1.00,\"C\",0.00,,,246.00,,,,,,\n2015,5,7,\"EV\",\"4245\",\"EWR\",\"ROC\",-4.00,-28.00,0.00,\"\",0.00,63.00,41.00,246.00,,,,,,\n2015,5,18,\"EV\",\"4245\",\"EWR\",\"ROC\",130.00,98.00,0.00,\"\",0.00,55.00,40.00,246.00,0.00,0.00,98.00,0.00,0.00,\n2015,5,8,\"EV\",\"4245\",\"EWR\",\"ROC\",23.00,-6.00,0.00,\"\",0.00,58.00,34.00,246.00,,,,,,\n2015,5,21,\"EV\",\"4245\",\"EWR\",\"ROC\",-8.00,-24.00,0.00,\"\",0.00,71.00,49.00,246.00,,,,,,\n2015,5,10,\"EV\",\"4245\",\"EWR\",\"ROC\",-17.00,-35.00,0.00,\"\",0.00,69.00,49.00,246.00,,,,,,\n2015,5,19,\"EV\",\"4245\",\"EWR\",\"ROC\",6.00,-19.00,0.00,\"\",0.00,62.00,44.00,246.00,,,,,,\n2015,5,11,\"EV\",\"4245\",\"EWR\",\"ROC\",4.00,,0.00,\"\",1.00,,,246.00,,,,,,\n2015,5,22,\"EV\",\"4245\",\"EWR\",\"ROC\",-4.00,-23.00,0.00,\"\",0.00,68.00,49.00,246.00,,,,,,\n2015,5,12,\"EV\",\"4245\",\"EWR\",\"ROC\",-6.00,-17.00,0.00,\"\",0.00,76.00,47.00,246.00,,,,,,\n2015,5,14,\"EV\",\"4245\",\"EWR\",\"ROC\",0.00,-28.00,0.00,\"\",0.00,59.00,42.00,246.00,,,,,,\n2015,5,13,\"EV\",\"4245\",\"EWR\",\"ROC\",-2.00,-21.00,0.00,\"\",0.00,68.00,47.00,246.00,,,,,,\n2015,5,20,\"EV\",\"4245\",\"EWR\",\"ROC\",82.00,59.00,0.00,\"\",0.00,64.00,44.00,246.00,0.00,0.00,0.00,0.00,59.00,\n2015,5,15,\"EV\",\"4245\",\"EWR\",\"ROC\",16.00,-5.00,0.00,\"\",0.00,66.00,46.00,246.00,,,,,,\n2015,5,1,\"EV\",\"4261\",\"EWR\",\"ROC\",-4.00,-26.00,0.00,\"\",0.00,61.00,41.00,246.00,,,,,,\n2015,5,3,\"EV\",\"4261\",\"EWR\",\"ROC\",-10.00,-18.00,0.00,\"\",0.00,75.00,46.00,246.00,,,,,,\n2015,5,4,\"EV\",\"4261\",\"EWR\",\"ROC\",49.00,29.00,0.00,\"\",0.00,63.00,43.00,246.00,14.00,0.00,0.00,0.00,15.00,\n2015,5,5,\"EV\",\"4261\",\"EWR\",\"ROC\",11.00,-16.00,0.00,\"\",0.00,56.00,42.00,246.00,,,,,,\n2015,5,6,\"EV\",\"4129\",\"ORD\",\"ELM\",-7.00,-18.00,0.00,\"\",0.00,89.00,72.00,566.00,,,,,,\n2015,5,1,\"EV\",\"4130\",\"BUF\",\"EWR\",-8.00,-24.00,0.00,\"\",0.00,68.00,50.00,282.00,,,,,,\n2015,5,5,\"EV\",\"4130\",\"BUF\",\"EWR\",-17.00,-10.00,0.00,\"\",0.00,90.00,51.00,282.00,,,,,,\n2015,5,4,\"EV\",\"4130\",\"BUF\",\"EWR\",-14.00,-5.00,0.00,\"\",0.00,92.00,57.00,282.00,,,,,,\n2015,5,1,\"EV\",\"4133\",\"ROC\",\"EWR\",-1.00,-1.00,0.00,\"\",0.00,74.00,46.00,246.00,,,,,,\n2015,5,28,\"EV\",\"4133\",\"ROC\",\"EWR\",2.00,17.00,0.00,\"\",0.00,90.00,50.00,246.00,2.00,0.00,15.00,0.00,0.00,\n2015,5,29,\"EV\",\"4133\",\"ROC\",\"EWR\",-9.00,-1.00,0.00,\"\",0.00,83.00,49.00,246.00,,,,,,\n2015,5,26,\"EV\",\"4133\",\"ROC\",\"EWR\",-11.00,-9.00,0.00,\"\",0.00,77.00,51.00,246.00,,,,,,\n2015,5,4,\"EV\",\"4133\",\"ROC\",\"EWR\",-9.00,41.00,0.00,\"\",0.00,124.00,44.00,246.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,5,\"EV\",\"4133\",\"ROC\",\"EWR\",-6.00,-12.00,0.00,\"\",0.00,68.00,43.00,246.00,,,,,,\n2015,5,3,\"EV\",\"4133\",\"ROC\",\"EWR\",-10.00,-25.00,0.00,\"\",0.00,59.00,43.00,246.00,,,,,,\n2015,5,27,\"EV\",\"4133\",\"ROC\",\"EWR\",47.00,34.00,0.00,\"\",0.00,62.00,45.00,246.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,6,\"EV\",\"4133\",\"ROC\",\"EWR\",4.00,52.00,0.00,\"\",0.00,123.00,56.00,246.00,0.00,0.00,52.00,0.00,0.00,\n2015,5,18,\"EV\",\"4133\",\"ROC\",\"EWR\",42.00,39.00,0.00,\"\",0.00,72.00,55.00,246.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,7,\"EV\",\"4133\",\"ROC\",\"EWR\",-11.00,-14.00,0.00,\"\",0.00,72.00,50.00,246.00,,,,,,\n2015,5,8,\"EV\",\"4133\",\"ROC\",\"EWR\",-13.00,-29.00,0.00,\"\",0.00,59.00,44.00,246.00,,,,,,\n2015,5,20,\"EV\",\"4133\",\"ROC\",\"EWR\",,,1.00,\"C\",0.00,,,246.00,,,,,,\n2015,5,19,\"EV\",\"4133\",\"ROC\",\"EWR\",39.00,60.00,0.00,\"\",0.00,96.00,51.00,246.00,21.00,0.00,34.00,0.00,5.00,\n2015,5,22,\"EV\",\"4133\",\"ROC\",\"EWR\",-10.00,-7.00,0.00,\"\",0.00,78.00,45.00,246.00,,,,,,\n2015,5,11,\"EV\",\"4133\",\"ROC\",\"EWR\",-9.00,-11.00,0.00,\"\",0.00,73.00,50.00,246.00,,,,,,\n2015,5,12,\"EV\",\"4133\",\"ROC\",\"EWR\",0.00,40.00,0.00,\"\",0.00,115.00,48.00,246.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,14,\"EV\",\"4133\",\"ROC\",\"EWR\",-6.00,-7.00,0.00,\"\",0.00,74.00,56.00,246.00,,,,,,\n2015,5,15,\"EV\",\"4133\",\"ROC\",\"EWR\",-6.00,11.00,0.00,\"\",0.00,92.00,58.00,246.00,,,,,,\n2015,5,13,\"EV\",\"4133\",\"ROC\",\"EWR\",-6.00,-3.00,0.00,\"\",0.00,78.00,54.00,246.00,,,,,,\n2015,5,28,\"EV\",\"4143\",\"LGA\",\"CLE\",-2.00,-16.00,0.00,\"\",0.00,100.00,68.00,419.00,,,,,,\n2015,5,25,\"EV\",\"4143\",\"LGA\",\"CLE\",-11.00,-31.00,0.00,\"\",0.00,94.00,67.00,419.00,,,,,,\n2015,5,29,\"EV\",\"4143\",\"LGA\",\"CLE\",-6.00,-21.00,0.00,\"\",0.00,99.00,64.00,419.00,,,,,,\n2015,5,26,\"EV\",\"4143\",\"LGA\",\"CLE\",-6.00,-23.00,0.00,\"\",0.00,97.00,69.00,419.00,,,,,,\n2015,5,17,\"EV\",\"4143\",\"LGA\",\"CLE\",-8.00,-35.00,0.00,\"\",0.00,87.00,62.00,419.00,,,,,,\n2015,5,27,\"EV\",\"4143\",\"LGA\",\"CLE\",-15.00,-44.00,0.00,\"\",0.00,85.00,65.00,419.00,,,,,,\n2015,5,18,\"EV\",\"4143\",\"LGA\",\"CLE\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,6,\"EV\",\"4143\",\"LGA\",\"CLE\",84.00,89.00,0.00,\"\",0.00,119.00,72.00,419.00,0.00,0.00,5.00,0.00,84.00,\n2015,5,31,\"EV\",\"4143\",\"LGA\",\"CLE\",-9.00,-26.00,0.00,\"\",0.00,97.00,74.00,419.00,,,,,,\n2015,5,7,\"EV\",\"4143\",\"LGA\",\"CLE\",-12.00,-42.00,0.00,\"\",0.00,84.00,65.00,419.00,,,,,,\n2015,5,20,\"EV\",\"4143\",\"LGA\",\"CLE\",-11.00,-5.00,0.00,\"\",0.00,120.00,72.00,419.00,,,,,,\n2015,5,11,\"EV\",\"4143\",\"LGA\",\"CLE\",-13.00,-44.00,0.00,\"\",0.00,83.00,62.00,419.00,,,,,,\n2015,5,19,\"EV\",\"4143\",\"LGA\",\"CLE\",14.00,-1.00,0.00,\"\",0.00,99.00,68.00,419.00,,,,,,\n2015,5,10,\"EV\",\"4143\",\"LGA\",\"CLE\",-9.00,-33.00,0.00,\"\",0.00,90.00,64.00,419.00,,,,,,\n2015,5,8,\"EV\",\"4143\",\"LGA\",\"CLE\",21.00,-14.00,0.00,\"\",0.00,79.00,62.00,419.00,,,,,,\n2015,5,12,\"EV\",\"4143\",\"LGA\",\"CLE\",-12.00,-39.00,0.00,\"\",0.00,87.00,68.00,419.00,,,,,,\n2015,5,21,\"EV\",\"4143\",\"LGA\",\"CLE\",-11.00,-29.00,0.00,\"\",0.00,96.00,73.00,419.00,,,,,,\n2015,5,22,\"EV\",\"4143\",\"LGA\",\"CLE\",-10.00,-23.00,0.00,\"\",0.00,101.00,73.00,419.00,,,,,,\n2015,5,24,\"EV\",\"4143\",\"LGA\",\"CLE\",-9.00,-34.00,0.00,\"\",0.00,89.00,67.00,419.00,,,,,,\n2015,5,13,\"EV\",\"4143\",\"LGA\",\"CLE\",-14.00,2.00,0.00,\"\",0.00,130.00,73.00,419.00,,,,,,\n2015,5,14,\"EV\",\"4143\",\"LGA\",\"CLE\",-18.00,-21.00,0.00,\"\",0.00,111.00,68.00,419.00,,,,,,\n2015,5,15,\"EV\",\"4143\",\"LGA\",\"CLE\",-9.00,-36.00,0.00,\"\",0.00,87.00,66.00,419.00,,,,,,\n2015,5,25,\"EV\",\"4148\",\"EWR\",\"ROC\",-7.00,-28.00,0.00,\"\",0.00,66.00,44.00,246.00,,,,,,\n2015,5,17,\"EV\",\"4148\",\"EWR\",\"ROC\",3.00,-17.00,0.00,\"\",0.00,67.00,42.00,246.00,,,,,,\n2015,5,29,\"EV\",\"4148\",\"EWR\",\"ROC\",-4.00,-20.00,0.00,\"\",0.00,71.00,46.00,246.00,,,,,,\n2015,5,28,\"EV\",\"4148\",\"EWR\",\"ROC\",-1.00,-1.00,0.00,\"\",0.00,87.00,46.00,246.00,,,,,,\n2015,5,27,\"EV\",\"4148\",\"EWR\",\"ROC\",-5.00,-19.00,0.00,\"\",0.00,73.00,45.00,246.00,,,,,,\n2015,5,26,\"EV\",\"4148\",\"EWR\",\"ROC\",-9.00,-10.00,0.00,\"\",0.00,86.00,45.00,246.00,,,,,,\n2015,5,18,\"EV\",\"4148\",\"EWR\",\"ROC\",-4.00,-21.00,0.00,\"\",0.00,70.00,41.00,246.00,,,,,,\n2015,5,31,\"EV\",\"4148\",\"EWR\",\"ROC\",-10.00,-22.00,0.00,\"\",0.00,75.00,46.00,246.00,,,,,,\n2015,5,7,\"EV\",\"4148\",\"EWR\",\"ROC\",0.00,-16.00,0.00,\"\",0.00,71.00,42.00,246.00,,,,,,\n2015,5,6,\"EV\",\"4148\",\"EWR\",\"ROC\",-12.00,-19.00,0.00,\"\",0.00,80.00,42.00,246.00,,,,,,\n2015,5,19,\"EV\",\"4148\",\"EWR\",\"ROC\",-1.00,7.00,0.00,\"\",0.00,95.00,47.00,246.00,,,,,,\n2015,5,20,\"EV\",\"4148\",\"EWR\",\"ROC\",-3.00,-10.00,0.00,\"\",0.00,80.00,45.00,246.00,,,,,,\n2015,5,10,\"EV\",\"4148\",\"EWR\",\"ROC\",-4.00,-15.00,0.00,\"\",0.00,76.00,51.00,246.00,,,,,,\n2015,5,8,\"EV\",\"4148\",\"EWR\",\"ROC\",13.00,16.00,0.00,\"\",0.00,90.00,43.00,246.00,6.00,0.00,3.00,0.00,7.00,\n2015,5,21,\"EV\",\"4148\",\"EWR\",\"ROC\",-11.00,-26.00,0.00,\"\",0.00,72.00,44.00,246.00,,,,,,\n2015,5,11,\"EV\",\"4148\",\"EWR\",\"ROC\",2.00,-5.00,0.00,\"\",0.00,80.00,45.00,246.00,,,,,,\n2015,5,12,\"EV\",\"4148\",\"EWR\",\"ROC\",-4.00,-5.00,0.00,\"\",0.00,86.00,50.00,246.00,,,,,,\n2015,5,22,\"EV\",\"4148\",\"EWR\",\"ROC\",-9.00,-23.00,0.00,\"\",0.00,73.00,44.00,246.00,,,,,,\n2015,5,15,\"EV\",\"4148\",\"EWR\",\"ROC\",-3.00,-7.00,0.00,\"\",0.00,83.00,55.00,246.00,,,,,,\n2015,5,14,\"EV\",\"4148\",\"EWR\",\"ROC\",-8.00,-8.00,0.00,\"\",0.00,87.00,45.00,246.00,,,,,,\n2015,5,13,\"EV\",\"4148\",\"EWR\",\"ROC\",-6.00,-13.00,0.00,\"\",0.00,80.00,36.00,246.00,,,,,,\n2015,5,25,\"EV\",\"4150\",\"SYR\",\"EWR\",-7.00,-28.00,0.00,\"\",0.00,56.00,35.00,195.00,,,,,,\n2015,5,26,\"EV\",\"3843\",\"ORD\",\"ROC\",-4.00,-11.00,0.00,\"\",0.00,93.00,76.00,528.00,,,,,,\n2015,5,3,\"EV\",\"3843\",\"ORD\",\"ROC\",-8.00,-5.00,0.00,\"\",0.00,101.00,81.00,528.00,,,,,,\n2015,5,25,\"EV\",\"3843\",\"ORD\",\"ROC\",-5.00,-13.00,0.00,\"\",0.00,92.00,77.00,528.00,,,,,,\n2015,5,4,\"EV\",\"3843\",\"ORD\",\"ROC\",1.00,-3.00,0.00,\"\",0.00,94.00,76.00,528.00,,,,,,\n2015,5,1,\"EV\",\"3843\",\"ORD\",\"ROC\",-4.00,-5.00,0.00,\"\",0.00,97.00,79.00,528.00,,,,,,\n2015,5,2,\"EV\",\"3843\",\"ORD\",\"ROC\",-8.00,-8.00,0.00,\"\",0.00,98.00,74.00,528.00,,,,,,\n2015,5,28,\"EV\",\"3843\",\"ORD\",\"ROC\",-2.00,-8.00,0.00,\"\",0.00,94.00,74.00,528.00,,,,,,\n2015,5,9,\"EV\",\"3843\",\"ORD\",\"ROC\",34.00,30.00,0.00,\"\",0.00,96.00,75.00,528.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,5,\"EV\",\"3843\",\"ORD\",\"ROC\",-4.00,,0.00,\"\",1.00,,,528.00,,,,,,\n2015,5,29,\"EV\",\"3843\",\"ORD\",\"ROC\",2.00,2.00,0.00,\"\",0.00,100.00,81.00,528.00,,,,,,\n2015,5,7,\"EV\",\"3843\",\"ORD\",\"ROC\",-3.00,-7.00,0.00,\"\",0.00,96.00,77.00,528.00,,,,,,\n2015,5,27,\"EV\",\"3843\",\"ORD\",\"ROC\",16.00,22.00,0.00,\"\",0.00,106.00,75.00,528.00,9.00,0.00,6.00,0.00,7.00,\n2015,5,6,\"EV\",\"3843\",\"ORD\",\"ROC\",-4.00,-5.00,0.00,\"\",0.00,99.00,76.00,528.00,,,,,,\n2015,5,30,\"EV\",\"3843\",\"ORD\",\"ROC\",3.00,-5.00,0.00,\"\",0.00,92.00,75.00,528.00,,,,,,\n2015,5,18,\"EV\",\"3843\",\"ORD\",\"ROC\",-2.00,-16.00,0.00,\"\",0.00,86.00,71.00,528.00,,,,,,\n2015,5,19,\"EV\",\"3843\",\"ORD\",\"ROC\",-2.00,-11.00,0.00,\"\",0.00,91.00,71.00,528.00,,,,,,\n2015,5,8,\"EV\",\"3843\",\"ORD\",\"ROC\",-3.00,-5.00,0.00,\"\",0.00,98.00,73.00,528.00,,,,,,\n2015,5,20,\"EV\",\"3843\",\"ORD\",\"ROC\",23.00,18.00,0.00,\"\",0.00,95.00,73.00,528.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,11,\"EV\",\"3843\",\"ORD\",\"ROC\",-1.00,-8.00,0.00,\"\",0.00,93.00,74.00,528.00,,,,,,\n2015,5,22,\"EV\",\"3843\",\"ORD\",\"ROC\",-5.00,-18.00,0.00,\"\",0.00,87.00,70.00,528.00,,,,,,\n2015,5,13,\"EV\",\"3843\",\"ORD\",\"ROC\",-6.00,-18.00,0.00,\"\",0.00,88.00,68.00,528.00,,,,,,\n2015,5,21,\"EV\",\"3843\",\"ORD\",\"ROC\",7.00,-2.00,0.00,\"\",0.00,91.00,70.00,528.00,,,,,,\n2015,5,23,\"EV\",\"3843\",\"ORD\",\"ROC\",29.00,25.00,0.00,\"\",0.00,96.00,77.00,528.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"EV\",\"3843\",\"ORD\",\"ROC\",0.00,-8.00,0.00,\"\",0.00,92.00,70.00,528.00,,,,,,\n2015,5,15,\"EV\",\"3843\",\"ORD\",\"ROC\",-3.00,-14.00,0.00,\"\",0.00,89.00,71.00,528.00,,,,,,\n2015,5,14,\"EV\",\"3843\",\"ORD\",\"ROC\",-4.00,-9.00,0.00,\"\",0.00,95.00,72.00,528.00,,,,,,\n2015,5,16,\"EV\",\"3843\",\"ORD\",\"ROC\",39.00,26.00,0.00,\"\",0.00,87.00,73.00,528.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,31,\"EV\",\"3846\",\"ALB\",\"ORD\",30.00,26.00,0.00,\"\",0.00,146.00,125.00,723.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,10,\"EV\",\"3846\",\"ALB\",\"ORD\",-6.00,-17.00,0.00,\"\",0.00,139.00,116.00,723.00,,,,,,\n2015,5,2,\"EV\",\"3925\",\"ALB\",\"ORD\",-15.00,-38.00,0.00,\"\",0.00,121.00,98.00,723.00,,,,,,\n2015,5,3,\"EV\",\"3928\",\"EWR\",\"BUF\",-6.00,-21.00,0.00,\"\",0.00,65.00,48.00,282.00,,,,,,\n2015,5,2,\"EV\",\"4199\",\"CLE\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,93.00,67.00,419.00,,,,,,\n2015,5,1,\"EV\",\"4199\",\"CLE\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,94.00,71.00,419.00,,,,,,\n2015,5,29,\"EV\",\"4199\",\"CLE\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,86.00,68.00,419.00,,,,,,\n2015,5,17,\"EV\",\"4199\",\"CLE\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,81.00,65.00,419.00,,,,,,\n2015,5,3,\"EV\",\"4199\",\"CLE\",\"LGA\",-12.00,-6.00,0.00,\"\",0.00,107.00,76.00,419.00,,,,,,\n2015,5,28,\"EV\",\"4199\",\"CLE\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,86.00,68.00,419.00,,,,,,\n2015,5,25,\"EV\",\"4199\",\"CLE\",\"LGA\",-7.00,2.00,0.00,\"\",0.00,108.00,90.00,419.00,,,,,,\n2015,5,26,\"EV\",\"4199\",\"CLE\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,88.00,74.00,419.00,,,,,,\n2015,5,30,\"EV\",\"4199\",\"CLE\",\"LGA\",-10.00,-12.00,0.00,\"\",0.00,97.00,72.00,419.00,,,,,,\n2015,5,4,\"EV\",\"4199\",\"CLE\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,87.00,69.00,419.00,,,,,,\n2015,5,27,\"EV\",\"4199\",\"CLE\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,96.00,69.00,419.00,,,,,,\n2015,5,9,\"EV\",\"4199\",\"CLE\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,87.00,74.00,419.00,,,,,,\n2015,5,5,\"EV\",\"4199\",\"CLE\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,95.00,73.00,419.00,,,,,,\n2015,5,18,\"EV\",\"4199\",\"CLE\",\"LGA\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,6,\"EV\",\"4199\",\"CLE\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,89.00,64.00,419.00,,,,,,\n2015,5,8,\"EV\",\"4199\",\"CLE\",\"LGA\",12.00,10.00,0.00,\"\",0.00,97.00,72.00,419.00,,,,,,\n2015,5,7,\"EV\",\"4199\",\"CLE\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,89.00,68.00,419.00,,,,,,\n2015,5,31,\"EV\",\"4199\",\"CLE\",\"LGA\",-5.00,6.00,0.00,\"\",0.00,110.00,76.00,419.00,,,,,,\n2015,5,10,\"EV\",\"4199\",\"CLE\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,86.00,70.00,419.00,,,,,,\n2015,5,19,\"EV\",\"4199\",\"CLE\",\"LGA\",82.00,75.00,0.00,\"\",0.00,92.00,79.00,419.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,20,\"EV\",\"4199\",\"CLE\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,88.00,64.00,419.00,,,,,,\n2015,5,21,\"EV\",\"4199\",\"CLE\",\"LGA\",-10.00,-14.00,0.00,\"\",0.00,95.00,69.00,419.00,,,,,,\n2015,5,23,\"EV\",\"4199\",\"CLE\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,85.00,67.00,419.00,,,,,,\n2015,5,12,\"EV\",\"4199\",\"CLE\",\"LGA\",-8.00,-27.00,0.00,\"\",0.00,80.00,64.00,419.00,,,,,,\n2015,5,22,\"EV\",\"4199\",\"CLE\",\"LGA\",-9.00,-32.00,0.00,\"\",0.00,76.00,60.00,419.00,,,,,,\n2015,5,11,\"EV\",\"4199\",\"CLE\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,95.00,75.00,419.00,,,,,,\n2015,5,24,\"EV\",\"4199\",\"CLE\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,84.00,66.00,419.00,,,,,,\n2015,5,14,\"EV\",\"4199\",\"CLE\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,89.00,66.00,419.00,,,,,,\n2015,5,13,\"EV\",\"4199\",\"CLE\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,92.00,67.00,419.00,,,,,,\n2015,5,15,\"EV\",\"4199\",\"CLE\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,93.00,70.00,419.00,,,,,,\n2015,5,16,\"EV\",\"4199\",\"CLE\",\"LGA\",-8.00,-22.00,0.00,\"\",0.00,85.00,67.00,419.00,,,,,,\n2015,5,2,\"EV\",\"4201\",\"BUF\",\"EWR\",-16.00,-23.00,0.00,\"\",0.00,76.00,54.00,282.00,,,,,,\n2015,5,1,\"EV\",\"4213\",\"HPN\",\"ORD\",-10.00,-34.00,0.00,\"\",0.00,128.00,111.00,738.00,,,,,,\n2015,5,25,\"EV\",\"4213\",\"HPN\",\"ORD\",-6.00,-27.00,0.00,\"\",0.00,132.00,117.00,738.00,,,,,,\n2015,5,28,\"EV\",\"4213\",\"HPN\",\"ORD\",-8.00,-32.00,0.00,\"\",0.00,129.00,112.00,738.00,,,,,,\n2015,5,5,\"EV\",\"4213\",\"HPN\",\"ORD\",0.00,1.00,0.00,\"\",0.00,153.00,129.00,738.00,,,,,,\n2015,5,4,\"EV\",\"4213\",\"HPN\",\"ORD\",-8.00,-19.00,0.00,\"\",0.00,141.00,116.00,738.00,,,,,,\n2015,5,26,\"EV\",\"4213\",\"HPN\",\"ORD\",-12.00,-29.00,0.00,\"\",0.00,136.00,111.00,738.00,,,,,,\n2015,5,18,\"EV\",\"4213\",\"HPN\",\"ORD\",-8.00,-22.00,0.00,\"\",0.00,139.00,117.00,738.00,,,,,,\n2015,5,27,\"EV\",\"4213\",\"HPN\",\"ORD\",28.00,22.00,0.00,\"\",0.00,147.00,117.00,738.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,29,\"EV\",\"4213\",\"HPN\",\"ORD\",2.00,-7.00,0.00,\"\",0.00,144.00,111.00,738.00,,,,,,\n2015,5,6,\"EV\",\"4213\",\"HPN\",\"ORD\",-10.00,-36.00,0.00,\"\",0.00,127.00,113.00,738.00,,,,,,\n2015,5,7,\"EV\",\"4213\",\"HPN\",\"ORD\",-10.00,-32.00,0.00,\"\",0.00,131.00,109.00,738.00,,,,,,\n2015,5,20,\"EV\",\"4213\",\"HPN\",\"ORD\",-11.00,-7.00,0.00,\"\",0.00,157.00,129.00,738.00,,,,,,\n2015,5,19,\"EV\",\"4213\",\"HPN\",\"ORD\",-6.00,-11.00,0.00,\"\",0.00,148.00,121.00,738.00,,,,,,\n2015,5,8,\"EV\",\"4213\",\"HPN\",\"ORD\",-10.00,-18.00,0.00,\"\",0.00,145.00,115.00,738.00,,,,,,\n2015,5,12,\"EV\",\"4213\",\"HPN\",\"ORD\",-7.00,-20.00,0.00,\"\",0.00,140.00,124.00,738.00,,,,,,\n2015,5,11,\"EV\",\"4213\",\"HPN\",\"ORD\",-7.00,-26.00,0.00,\"\",0.00,134.00,114.00,738.00,,,,,,\n2015,5,21,\"EV\",\"4213\",\"HPN\",\"ORD\",-4.00,-8.00,0.00,\"\",0.00,149.00,124.00,738.00,,,,,,\n2015,5,22,\"EV\",\"4213\",\"HPN\",\"ORD\",-9.00,-10.00,0.00,\"\",0.00,152.00,124.00,738.00,,,,,,\n2015,5,13,\"EV\",\"4213\",\"HPN\",\"ORD\",-11.00,-2.00,0.00,\"\",0.00,162.00,139.00,738.00,,,,,,\n2015,5,14,\"EV\",\"4213\",\"HPN\",\"ORD\",-10.00,-9.00,0.00,\"\",0.00,154.00,125.00,738.00,,,,,,\n2015,5,15,\"EV\",\"4213\",\"HPN\",\"ORD\",-2.00,-10.00,0.00,\"\",0.00,145.00,126.00,738.00,,,,,,\n2015,5,1,\"EV\",\"4213\",\"ORD\",\"HPN\",-8.00,-9.00,0.00,\"\",0.00,128.00,109.00,738.00,,,,,,\n2015,5,28,\"EV\",\"4213\",\"ORD\",\"HPN\",-3.00,7.00,0.00,\"\",0.00,140.00,108.00,738.00,,,,,,\n2015,5,25,\"EV\",\"4213\",\"ORD\",\"HPN\",-10.00,-25.00,0.00,\"\",0.00,115.00,101.00,738.00,,,,,,\n2015,5,4,\"EV\",\"4213\",\"ORD\",\"HPN\",-6.00,-8.00,0.00,\"\",0.00,127.00,107.00,738.00,,,,,,\n2015,5,5,\"EV\",\"4213\",\"ORD\",\"HPN\",-6.00,-6.00,0.00,\"\",0.00,129.00,108.00,738.00,,,,,,\n2015,5,29,\"EV\",\"4213\",\"ORD\",\"HPN\",58.00,44.00,0.00,\"\",0.00,116.00,94.00,738.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"EV\",\"4213\",\"ORD\",\"HPN\",-7.00,-18.00,0.00,\"\",0.00,119.00,99.00,738.00,,,,,,\n2015,5,27,\"EV\",\"4213\",\"ORD\",\"HPN\",66.00,59.00,0.00,\"\",0.00,123.00,98.00,738.00,0.00,0.00,0.00,0.00,59.00,\n2015,5,18,\"EV\",\"4213\",\"ORD\",\"HPN\",-2.00,-3.00,0.00,\"\",0.00,129.00,105.00,738.00,,,,,,\n2015,5,6,\"EV\",\"4213\",\"ORD\",\"HPN\",-3.00,8.00,0.00,\"\",0.00,141.00,103.00,738.00,,,,,,\n2015,5,8,\"EV\",\"4213\",\"ORD\",\"HPN\",-1.00,-1.00,0.00,\"\",0.00,130.00,102.00,738.00,,,,,,\n2015,5,7,\"EV\",\"4213\",\"ORD\",\"HPN\",5.00,10.00,0.00,\"\",0.00,135.00,106.00,738.00,,,,,,\n2015,5,20,\"EV\",\"4213\",\"ORD\",\"HPN\",-2.00,-15.00,0.00,\"\",0.00,117.00,95.00,738.00,,,,,,\n2015,5,11,\"EV\",\"4213\",\"ORD\",\"HPN\",-3.00,1.00,0.00,\"\",0.00,134.00,102.00,738.00,,,,,,\n2015,5,21,\"EV\",\"4213\",\"ORD\",\"HPN\",-1.00,-13.00,0.00,\"\",0.00,118.00,94.00,738.00,,,,,,\n2015,5,22,\"EV\",\"4213\",\"ORD\",\"HPN\",0.00,-9.00,0.00,\"\",0.00,121.00,98.00,738.00,,,,,,\n2015,5,19,\"EV\",\"4213\",\"ORD\",\"HPN\",1.00,-9.00,0.00,\"\",0.00,120.00,98.00,738.00,,,,,,\n2015,5,13,\"EV\",\"4213\",\"ORD\",\"HPN\",-8.00,-9.00,0.00,\"\",0.00,129.00,103.00,738.00,,,,,,\n2015,5,12,\"EV\",\"4213\",\"ORD\",\"HPN\",12.00,1.00,0.00,\"\",0.00,119.00,94.00,738.00,,,,,,\n2015,5,15,\"EV\",\"4213\",\"ORD\",\"HPN\",-5.00,-13.00,0.00,\"\",0.00,122.00,108.00,738.00,,,,,,\n2015,5,14,\"EV\",\"4213\",\"ORD\",\"HPN\",-6.00,-17.00,0.00,\"\",0.00,119.00,98.00,738.00,,,,,,\n2015,5,1,\"EV\",\"4225\",\"CLE\",\"LGA\",-12.00,-10.00,0.00,\"\",0.00,100.00,68.00,419.00,,,,,,\n2015,5,28,\"EV\",\"4225\",\"CLE\",\"LGA\",-8.00,-19.00,0.00,\"\",0.00,88.00,63.00,419.00,,,,,,\n2015,5,4,\"EV\",\"4225\",\"CLE\",\"LGA\",-4.00,-3.00,0.00,\"\",0.00,99.00,71.00,419.00,,,,,,\n2015,5,29,\"EV\",\"4225\",\"CLE\",\"LGA\",-9.00,-13.00,0.00,\"\",0.00,95.00,65.00,419.00,,,,,,\n2015,5,5,\"EV\",\"4225\",\"CLE\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,91.00,69.00,419.00,,,,,,\n2015,5,26,\"EV\",\"4225\",\"CLE\",\"LGA\",11.00,0.00,0.00,\"\",0.00,88.00,68.00,419.00,,,,,,\n2015,5,18,\"EV\",\"4225\",\"CLE\",\"LGA\",-9.00,,0.00,\"\",1.00,,,419.00,,,,,,\n2015,5,6,\"EV\",\"4225\",\"CLE\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,88.00,67.00,419.00,,,,,,\n2015,5,8,\"EV\",\"4225\",\"CLE\",\"LGA\",-7.00,11.00,0.00,\"\",0.00,117.00,91.00,419.00,,,,,,\n2015,5,7,\"EV\",\"4225\",\"CLE\",\"LGA\",-10.00,-14.00,0.00,\"\",0.00,95.00,69.00,419.00,,,,,,\n2015,5,27,\"EV\",\"4225\",\"CLE\",\"LGA\",1.00,11.00,0.00,\"\",0.00,109.00,78.00,419.00,,,,,,\n2015,5,19,\"EV\",\"4225\",\"CLE\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,92.00,73.00,419.00,,,,,,\n2015,5,20,\"EV\",\"4225\",\"CLE\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,98.00,69.00,419.00,,,,,,\n2015,5,11,\"EV\",\"4225\",\"CLE\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,97.00,75.00,419.00,,,,,,\n2015,5,21,\"EV\",\"4225\",\"CLE\",\"LGA\",-12.00,-12.00,0.00,\"\",0.00,99.00,67.00,419.00,,,,,,\n2015,5,22,\"EV\",\"4225\",\"CLE\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,89.00,64.00,419.00,,,,,,\n2015,5,14,\"EV\",\"4225\",\"CLE\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,90.00,63.00,419.00,,,,,,\n2015,5,13,\"EV\",\"4225\",\"CLE\",\"LGA\",-7.00,-6.00,0.00,\"\",0.00,100.00,65.00,419.00,,,,,,\n2015,5,12,\"EV\",\"4225\",\"CLE\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,91.00,66.00,419.00,,,,,,\n2015,5,15,\"EV\",\"4225\",\"CLE\",\"LGA\",-11.00,-18.00,0.00,\"\",0.00,92.00,73.00,419.00,,,,,,\n2015,5,2,\"EV\",\"4274\",\"EWR\",\"ALB\",-2.00,7.00,0.00,\"\",0.00,77.00,36.00,143.00,,,,,,\n2015,5,1,\"EV\",\"4274\",\"EWR\",\"ALB\",-9.00,-8.00,0.00,\"\",0.00,69.00,36.00,143.00,,,,,,\n2015,5,4,\"EV\",\"4274\",\"EWR\",\"ALB\",-8.00,-23.00,0.00,\"\",0.00,53.00,32.00,143.00,,,,,,\n2015,5,5,\"EV\",\"4274\",\"EWR\",\"ALB\",-6.00,-4.00,0.00,\"\",0.00,70.00,41.00,143.00,,,,,,\n2015,5,31,\"EV\",\"4314\",\"CLE\",\"LGA\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,1,\"EV\",\"4314\",\"CLE\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,87.00,68.00,419.00,,,,,,\n2015,5,25,\"EV\",\"4314\",\"CLE\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,89.00,72.00,419.00,,,,,,\n2015,5,28,\"EV\",\"4314\",\"CLE\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,82.00,67.00,419.00,,,,,,\n2015,5,3,\"EV\",\"4314\",\"CLE\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,91.00,69.00,419.00,,,,,,\n2015,5,17,\"EV\",\"4314\",\"CLE\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,83.00,67.00,419.00,,,,,,\n2015,5,29,\"EV\",\"4314\",\"CLE\",\"LGA\",33.00,17.00,0.00,\"\",0.00,83.00,68.00,419.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,27,\"EV\",\"4314\",\"CLE\",\"LGA\",95.00,81.00,0.00,\"\",0.00,85.00,72.00,419.00,0.00,0.00,77.00,0.00,4.00,\n2015,5,4,\"EV\",\"4314\",\"CLE\",\"LGA\",56.00,48.00,0.00,\"\",0.00,90.00,73.00,419.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,5,\"EV\",\"4314\",\"CLE\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,93.00,74.00,419.00,,,,,,\n2015,5,9,\"EV\",\"4314\",\"CLE\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,97.00,73.00,419.00,,,,,,\n2015,5,30,\"EV\",\"4314\",\"CLE\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,98.00,73.00,419.00,,,,,,\n2015,5,26,\"EV\",\"4314\",\"CLE\",\"LGA\",157.00,140.00,0.00,\"\",0.00,82.00,69.00,419.00,24.00,0.00,0.00,0.00,116.00,\n2015,5,6,\"EV\",\"4314\",\"CLE\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,86.00,61.00,419.00,,,,,,\n2015,5,8,\"EV\",\"4314\",\"CLE\",\"LGA\",83.00,72.00,0.00,\"\",0.00,88.00,72.00,419.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,7,\"EV\",\"4314\",\"CLE\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,105.00,81.00,419.00,,,,,,\n2015,5,18,\"EV\",\"4314\",\"CLE\",\"LGA\",140.00,156.00,0.00,\"\",0.00,115.00,75.00,419.00,0.00,0.00,156.00,0.00,0.00,\n2015,5,10,\"EV\",\"4314\",\"CLE\",\"LGA\",60.00,63.00,0.00,\"\",0.00,102.00,80.00,419.00,0.00,0.00,63.00,0.00,0.00,\n2015,5,19,\"EV\",\"4314\",\"CLE\",\"LGA\",34.00,35.00,0.00,\"\",0.00,100.00,66.00,419.00,1.00,0.00,17.00,0.00,17.00,\n2015,5,20,\"EV\",\"4314\",\"CLE\",\"LGA\",100.00,87.00,0.00,\"\",0.00,86.00,62.00,419.00,0.00,0.00,0.00,0.00,87.00,\n2015,5,11,\"EV\",\"4314\",\"CLE\",\"LGA\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,21,\"EV\",\"4314\",\"CLE\",\"LGA\",1.00,-16.00,0.00,\"\",0.00,82.00,68.00,419.00,,,,,,\n2015,5,22,\"EV\",\"4314\",\"CLE\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,84.00,65.00,419.00,,,,,,\n2015,5,24,\"EV\",\"4314\",\"CLE\",\"LGA\",-10.00,-21.00,0.00,\"\",0.00,88.00,63.00,419.00,,,,,,\n2015,5,14,\"EV\",\"4314\",\"CLE\",\"LGA\",14.00,1.00,0.00,\"\",0.00,86.00,64.00,419.00,,,,,,\n2015,5,12,\"EV\",\"4314\",\"CLE\",\"LGA\",11.00,8.00,0.00,\"\",0.00,96.00,70.00,419.00,,,,,,\n2015,5,15,\"EV\",\"4314\",\"CLE\",\"LGA\",6.00,-9.00,0.00,\"\",0.00,84.00,64.00,419.00,,,,,,\n2015,5,13,\"EV\",\"4314\",\"CLE\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,95.00,60.00,419.00,,,,,,\n2015,5,28,\"EV\",\"4323\",\"SYR\",\"EWR\",-7.00,-2.00,0.00,\"\",0.00,85.00,53.00,195.00,,,,,,\n2015,5,1,\"EV\",\"4323\",\"SYR\",\"EWR\",-9.00,-10.00,0.00,\"\",0.00,78.00,42.00,195.00,,,,,,\n2015,5,26,\"EV\",\"4323\",\"SYR\",\"EWR\",-10.00,-26.00,0.00,\"\",0.00,64.00,35.00,195.00,,,,,,\n2015,5,29,\"EV\",\"4323\",\"SYR\",\"EWR\",-10.00,-24.00,0.00,\"\",0.00,66.00,43.00,195.00,,,,,,\n2015,5,4,\"EV\",\"4323\",\"SYR\",\"EWR\",0.00,-12.00,0.00,\"\",0.00,67.00,40.00,195.00,,,,,,\n2015,5,27,\"EV\",\"4323\",\"SYR\",\"EWR\",-7.00,15.00,0.00,\"\",0.00,102.00,47.00,195.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,5,\"EV\",\"4323\",\"SYR\",\"EWR\",-15.00,-30.00,0.00,\"\",0.00,64.00,48.00,195.00,,,,,,\n2015,5,6,\"EV\",\"4323\",\"SYR\",\"EWR\",-6.00,15.00,0.00,\"\",0.00,101.00,40.00,195.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,9,\"EV\",\"4323\",\"SYR\",\"EWR\",-10.00,-22.00,0.00,\"\",0.00,65.00,46.00,195.00,,,,,,\n2015,5,7,\"EV\",\"4323\",\"SYR\",\"EWR\",-8.00,-19.00,0.00,\"\",0.00,69.00,40.00,195.00,,,,,,\n2015,5,18,\"EV\",\"4323\",\"SYR\",\"EWR\",9.00,14.00,0.00,\"\",0.00,85.00,49.00,195.00,,,,,,\n2015,5,8,\"EV\",\"4323\",\"SYR\",\"EWR\",-5.00,-29.00,0.00,\"\",0.00,56.00,36.00,195.00,,,,,,\n2015,5,21,\"EV\",\"4323\",\"SYR\",\"EWR\",-4.00,2.00,0.00,\"\",0.00,86.00,40.00,195.00,,,,,,\n2015,5,19,\"EV\",\"4323\",\"SYR\",\"EWR\",3.00,-12.00,0.00,\"\",0.00,65.00,39.00,195.00,,,,,,\n2015,5,22,\"EV\",\"4323\",\"SYR\",\"EWR\",-8.00,44.00,0.00,\"\",0.00,132.00,71.00,195.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,11,\"EV\",\"4323\",\"SYR\",\"EWR\",-11.00,0.00,0.00,\"\",0.00,91.00,42.00,195.00,,,,,,\n2015,5,20,\"EV\",\"4323\",\"SYR\",\"EWR\",-8.00,19.00,0.00,\"\",0.00,107.00,49.00,195.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,12,\"EV\",\"4323\",\"SYR\",\"EWR\",-3.00,4.00,0.00,\"\",0.00,87.00,41.00,195.00,,,,,,\n2015,5,13,\"EV\",\"4323\",\"SYR\",\"EWR\",-15.00,-27.00,0.00,\"\",0.00,68.00,48.00,195.00,,,,,,\n2015,5,14,\"EV\",\"4323\",\"SYR\",\"EWR\",-3.00,-13.00,0.00,\"\",0.00,70.00,40.00,195.00,,,,,,\n2015,5,16,\"EV\",\"4323\",\"SYR\",\"EWR\",-2.00,-12.00,0.00,\"\",0.00,67.00,35.00,195.00,,,,,,\n2015,5,15,\"EV\",\"4323\",\"SYR\",\"EWR\",-7.00,-11.00,0.00,\"\",0.00,76.00,40.00,195.00,,,,,,\n2015,5,28,\"EV\",\"4335\",\"EWR\",\"ROC\",-6.00,-26.00,0.00,\"\",0.00,67.00,46.00,246.00,,,,,,\n2015,5,3,\"EV\",\"4335\",\"EWR\",\"ROC\",-5.00,-32.00,0.00,\"\",0.00,75.00,49.00,246.00,,,,,,\n2015,5,25,\"EV\",\"4335\",\"EWR\",\"ROC\",-10.00,-27.00,0.00,\"\",0.00,70.00,46.00,246.00,,,,,,\n2015,5,4,\"EV\",\"4335\",\"EWR\",\"ROC\",-4.00,-25.00,0.00,\"\",0.00,81.00,50.00,246.00,,,,,,\n2015,5,27,\"EV\",\"4335\",\"EWR\",\"ROC\",,,1.00,\"C\",0.00,,,246.00,,,,,,\n2015,5,5,\"EV\",\"4335\",\"EWR\",\"ROC\",-5.00,-30.00,0.00,\"\",0.00,77.00,48.00,246.00,,,,,,\n2015,5,26,\"EV\",\"4335\",\"EWR\",\"ROC\",58.00,40.00,0.00,\"\",0.00,69.00,41.00,246.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,29,\"EV\",\"4335\",\"EWR\",\"ROC\",10.00,6.00,0.00,\"\",0.00,83.00,42.00,246.00,,,,,,\n2015,5,6,\"EV\",\"4335\",\"EWR\",\"ROC\",4.00,-4.00,0.00,\"\",0.00,79.00,43.00,246.00,,,,,,\n2015,5,7,\"EV\",\"4335\",\"EWR\",\"ROC\",-5.00,-22.00,0.00,\"\",0.00,70.00,45.00,246.00,,,,,,\n2015,5,18,\"EV\",\"4335\",\"EWR\",\"ROC\",89.00,114.00,0.00,\"\",0.00,112.00,61.00,246.00,5.00,0.00,109.00,0.00,0.00,\n2015,5,8,\"EV\",\"4335\",\"EWR\",\"ROC\",1.00,-15.00,0.00,\"\",0.00,71.00,43.00,246.00,,,,,,\n2015,5,20,\"EV\",\"4335\",\"EWR\",\"ROC\",34.00,21.00,0.00,\"\",0.00,74.00,45.00,246.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"EV\",\"4335\",\"EWR\",\"ROC\",80.00,85.00,0.00,\"\",0.00,92.00,43.00,246.00,0.00,0.00,5.00,0.00,80.00,\n2015,5,12,\"EV\",\"4335\",\"EWR\",\"ROC\",7.00,-5.00,0.00,\"\",0.00,75.00,46.00,246.00,,,,,,\n2015,5,22,\"EV\",\"4335\",\"EWR\",\"ROC\",15.00,-7.00,0.00,\"\",0.00,65.00,48.00,246.00,,,,,,\n2015,5,21,\"EV\",\"4335\",\"EWR\",\"ROC\",55.00,36.00,0.00,\"\",0.00,68.00,41.00,246.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"EV\",\"4335\",\"EWR\",\"ROC\",52.00,46.00,0.00,\"\",0.00,81.00,43.00,246.00,0.00,0.00,0.00,0.00,46.00,\n2015,5,13,\"EV\",\"4335\",\"EWR\",\"ROC\",-8.00,-18.00,0.00,\"\",0.00,77.00,55.00,246.00,,,,,,\n2015,5,24,\"EV\",\"4335\",\"EWR\",\"ROC\",-3.00,-25.00,0.00,\"\",0.00,65.00,43.00,246.00,,,,,,\n2015,5,14,\"EV\",\"4335\",\"EWR\",\"ROC\",-4.00,-16.00,0.00,\"\",0.00,75.00,44.00,246.00,,,,,,\n2015,5,15,\"EV\",\"4335\",\"EWR\",\"ROC\",-1.00,-21.00,0.00,\"\",0.00,67.00,48.00,246.00,,,,,,\n2015,5,31,\"EV\",\"4400\",\"ROC\",\"EWR\",-10.00,-28.00,0.00,\"\",0.00,63.00,46.00,246.00,,,,,,\n2015,5,29,\"EV\",\"4400\",\"ROC\",\"EWR\",-13.00,-13.00,0.00,\"\",0.00,81.00,50.00,246.00,,,,,,\n2015,5,26,\"EV\",\"4400\",\"ROC\",\"EWR\",-10.00,14.00,0.00,\"\",0.00,105.00,46.00,246.00,,,,,,\n2015,5,25,\"EV\",\"4400\",\"ROC\",\"EWR\",23.00,3.00,0.00,\"\",0.00,61.00,44.00,246.00,,,,,,\n2015,5,28,\"EV\",\"4400\",\"ROC\",\"EWR\",-3.00,-1.00,0.00,\"\",0.00,83.00,49.00,246.00,,,,,,\n2015,5,17,\"EV\",\"4400\",\"ROC\",\"EWR\",-13.00,-6.00,0.00,\"\",0.00,88.00,46.00,246.00,,,,,,\n2015,5,7,\"EV\",\"4400\",\"ROC\",\"EWR\",-8.00,-20.00,0.00,\"\",0.00,69.00,45.00,246.00,,,,,,\n2015,5,27,\"EV\",\"4400\",\"ROC\",\"EWR\",-10.00,-16.00,0.00,\"\",0.00,75.00,50.00,246.00,,,,,,\n2015,5,6,\"EV\",\"4400\",\"ROC\",\"EWR\",-7.00,-14.00,0.00,\"\",0.00,74.00,53.00,246.00,,,,,,\n2015,5,18,\"EV\",\"4400\",\"ROC\",\"EWR\",-4.00,5.00,0.00,\"\",0.00,90.00,55.00,246.00,,,,,,\n2015,5,8,\"EV\",\"4400\",\"ROC\",\"EWR\",9.00,-8.00,0.00,\"\",0.00,64.00,45.00,246.00,,,,,,\n2015,5,10,\"EV\",\"4400\",\"ROC\",\"EWR\",10.00,-22.00,0.00,\"\",0.00,49.00,30.00,246.00,,,,,,\n2015,5,20,\"EV\",\"4400\",\"ROC\",\"EWR\",-11.00,31.00,0.00,\"\",0.00,123.00,57.00,246.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,19,\"EV\",\"4400\",\"ROC\",\"EWR\",2.00,33.00,0.00,\"\",0.00,112.00,51.00,246.00,2.00,0.00,31.00,0.00,0.00,\n2015,5,11,\"EV\",\"4400\",\"ROC\",\"EWR\",0.00,-12.00,0.00,\"\",0.00,69.00,47.00,246.00,,,,,,\n2015,5,12,\"EV\",\"4400\",\"ROC\",\"EWR\",0.00,32.00,0.00,\"\",0.00,113.00,47.00,246.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,21,\"EV\",\"4400\",\"ROC\",\"EWR\",-11.00,-34.00,0.00,\"\",0.00,58.00,45.00,246.00,,,,,,\n2015,5,22,\"EV\",\"4400\",\"ROC\",\"EWR\",-8.00,-21.00,0.00,\"\",0.00,68.00,45.00,246.00,,,,,,\n2015,5,23,\"EV\",\"4400\",\"ROC\",\"EWR\",-3.00,-10.00,0.00,\"\",0.00,74.00,55.00,246.00,,,,,,\n2015,5,15,\"EV\",\"4400\",\"ROC\",\"EWR\",0.00,-10.00,0.00,\"\",0.00,71.00,46.00,246.00,,,,,,\n2015,5,14,\"EV\",\"4400\",\"ROC\",\"EWR\",-6.00,-24.00,0.00,\"\",0.00,63.00,44.00,246.00,,,,,,\n2015,5,13,\"EV\",\"4400\",\"ROC\",\"EWR\",-7.00,-10.00,0.00,\"\",0.00,78.00,49.00,246.00,,,,,,\n2015,5,31,\"EV\",\"4411\",\"EWR\",\"ROC\",-5.00,-20.00,0.00,\"\",0.00,72.00,46.00,246.00,,,,,,\n2015,5,28,\"EV\",\"4411\",\"EWR\",\"ROC\",-1.00,-29.00,0.00,\"\",0.00,59.00,41.00,246.00,,,,,,\n2015,5,1,\"EV\",\"4411\",\"EWR\",\"ROC\",-6.00,-54.00,0.00,\"\",0.00,54.00,39.00,246.00,,,,,,\n2015,5,17,\"EV\",\"4411\",\"EWR\",\"ROC\",1.00,-24.00,0.00,\"\",0.00,62.00,45.00,246.00,,,,,,\n2015,5,4,\"EV\",\"4411\",\"EWR\",\"ROC\",-6.00,-45.00,0.00,\"\",0.00,63.00,45.00,246.00,,,,,,\n2015,5,5,\"EV\",\"4411\",\"EWR\",\"ROC\",-5.00,-42.00,0.00,\"\",0.00,65.00,43.00,246.00,,,,,,\n2015,5,26,\"EV\",\"4411\",\"EWR\",\"ROC\",-2.00,-22.00,0.00,\"\",0.00,67.00,47.00,246.00,,,,,,\n2015,5,29,\"EV\",\"4411\",\"EWR\",\"ROC\",-1.00,-22.00,0.00,\"\",0.00,66.00,42.00,246.00,,,,,,\n2015,5,6,\"EV\",\"4411\",\"EWR\",\"ROC\",-6.00,-33.00,0.00,\"\",0.00,60.00,42.00,246.00,,,,,,\n2015,5,27,\"EV\",\"4411\",\"EWR\",\"ROC\",-1.00,-22.00,0.00,\"\",0.00,66.00,41.00,246.00,,,,,,\n2015,5,19,\"EV\",\"4411\",\"EWR\",\"ROC\",-3.00,-25.00,0.00,\"\",0.00,65.00,42.00,246.00,,,,,,\n2015,5,18,\"EV\",\"4411\",\"EWR\",\"ROC\",13.00,-2.00,0.00,\"\",0.00,72.00,44.00,246.00,,,,,,\n2015,5,9,\"EV\",\"4411\",\"EWR\",\"ROC\",-4.00,6.00,0.00,\"\",0.00,97.00,48.00,246.00,,,,,,\n2015,5,8,\"EV\",\"4411\",\"EWR\",\"ROC\",-4.00,-25.00,0.00,\"\",0.00,66.00,46.00,246.00,,,,,,\n2015,5,7,\"EV\",\"4411\",\"EWR\",\"ROC\",-2.00,-24.00,0.00,\"\",0.00,65.00,43.00,246.00,,,,,,\n2015,5,30,\"EV\",\"4411\",\"EWR\",\"ROC\",-6.00,-32.00,0.00,\"\",0.00,61.00,41.00,246.00,,,,,,\n2015,5,21,\"EV\",\"4411\",\"EWR\",\"ROC\",-6.00,2.00,0.00,\"\",0.00,95.00,72.00,246.00,,,,,,\n2015,5,22,\"EV\",\"4411\",\"EWR\",\"ROC\",-5.00,-22.00,0.00,\"\",0.00,70.00,46.00,246.00,,,,,,\n2015,5,13,\"EV\",\"4411\",\"EWR\",\"ROC\",-8.00,-29.00,0.00,\"\",0.00,66.00,48.00,246.00,,,,,,\n2015,5,10,\"EV\",\"4411\",\"EWR\",\"ROC\",-5.00,-30.00,0.00,\"\",0.00,62.00,41.00,246.00,,,,,,\n2015,5,20,\"EV\",\"4411\",\"EWR\",\"ROC\",-10.00,-34.00,0.00,\"\",0.00,63.00,47.00,246.00,,,,,,\n2015,5,12,\"EV\",\"4411\",\"EWR\",\"ROC\",-6.00,,0.00,\"\",1.00,,,246.00,,,,,,\n2015,5,16,\"EV\",\"4411\",\"EWR\",\"ROC\",-9.00,-31.00,0.00,\"\",0.00,65.00,45.00,246.00,,,,,,\n2015,5,14,\"EV\",\"4411\",\"EWR\",\"ROC\",0.00,-25.00,0.00,\"\",0.00,62.00,42.00,246.00,,,,,,\n2015,5,11,\"EV\",\"4411\",\"EWR\",\"ROC\",26.00,30.00,0.00,\"\",0.00,91.00,57.00,246.00,0.00,0.00,4.00,0.00,26.00,\n2015,5,15,\"EV\",\"4411\",\"EWR\",\"ROC\",-3.00,-26.00,0.00,\"\",0.00,64.00,44.00,246.00,,,,,,\n2015,5,4,\"EV\",\"3256\",\"ROC\",\"ORD\",-3.00,-4.00,0.00,\"\",0.00,113.00,95.00,528.00,,,,,,\n2015,5,2,\"EV\",\"3256\",\"ROC\",\"ORD\",-9.00,-15.00,0.00,\"\",0.00,108.00,77.00,528.00,,,,,,\n2015,5,3,\"EV\",\"3256\",\"ROC\",\"ORD\",-8.00,-21.00,0.00,\"\",0.00,101.00,80.00,528.00,,,,,,\n2015,5,29,\"EV\",\"3256\",\"ROC\",\"ORD\",-6.00,-22.00,0.00,\"\",0.00,105.00,86.00,528.00,,,,,,\n2015,5,9,\"EV\",\"3256\",\"ROC\",\"ORD\",14.00,0.00,0.00,\"\",0.00,107.00,86.00,528.00,,,,,,\n2015,5,26,\"EV\",\"3256\",\"ROC\",\"ORD\",-14.00,-25.00,0.00,\"\",0.00,110.00,90.00,528.00,,,,,,\n2015,5,6,\"EV\",\"3256\",\"ROC\",\"ORD\",-13.00,-20.00,0.00,\"\",0.00,114.00,97.00,528.00,,,,,,\n2015,5,5,\"EV\",\"3256\",\"ROC\",\"ORD\",47.00,55.00,0.00,\"\",0.00,122.00,91.00,528.00,2.00,0.00,8.00,0.00,45.00,\n2015,5,18,\"EV\",\"3256\",\"ROC\",\"ORD\",-3.00,-22.00,0.00,\"\",0.00,102.00,83.00,528.00,,,,,,\n2015,5,27,\"EV\",\"3256\",\"ROC\",\"ORD\",17.00,5.00,0.00,\"\",0.00,109.00,83.00,528.00,,,,,,\n2015,5,30,\"EV\",\"3256\",\"ROC\",\"ORD\",253.00,245.00,0.00,\"\",0.00,113.00,89.00,528.00,0.00,0.00,245.00,0.00,0.00,\n2015,5,7,\"EV\",\"3256\",\"ROC\",\"ORD\",-6.00,-18.00,0.00,\"\",0.00,109.00,89.00,528.00,,,,,,\n2015,5,8,\"EV\",\"3256\",\"ROC\",\"ORD\",-6.00,-24.00,0.00,\"\",0.00,103.00,83.00,528.00,,,,,,\n2015,5,19,\"EV\",\"3256\",\"ROC\",\"ORD\",-10.00,-24.00,0.00,\"\",0.00,107.00,88.00,528.00,,,,,,\n2015,5,22,\"EV\",\"3256\",\"ROC\",\"ORD\",-7.00,-12.00,0.00,\"\",0.00,116.00,93.00,528.00,,,,,,\n2015,5,11,\"EV\",\"3256\",\"ROC\",\"ORD\",0.00,-15.00,0.00,\"\",0.00,106.00,86.00,528.00,,,,,,\n2015,5,21,\"EV\",\"3256\",\"ROC\",\"ORD\",-8.00,-23.00,0.00,\"\",0.00,106.00,85.00,528.00,,,,,,\n2015,5,12,\"EV\",\"3256\",\"ROC\",\"ORD\",0.00,-6.00,0.00,\"\",0.00,115.00,100.00,528.00,,,,,,\n2015,5,20,\"EV\",\"3256\",\"ROC\",\"ORD\",20.00,40.00,0.00,\"\",0.00,141.00,95.00,528.00,20.00,0.00,20.00,0.00,0.00,\n2015,5,23,\"EV\",\"3256\",\"ROC\",\"ORD\",13.00,-11.00,0.00,\"\",0.00,97.00,84.00,528.00,,,,,,\n2015,5,13,\"EV\",\"3256\",\"ROC\",\"ORD\",-1.00,-21.00,0.00,\"\",0.00,101.00,89.00,528.00,,,,,,\n2015,5,16,\"EV\",\"3256\",\"ROC\",\"ORD\",11.00,-8.00,0.00,\"\",0.00,102.00,83.00,528.00,,,,,,\n2015,5,15,\"EV\",\"3256\",\"ROC\",\"ORD\",-8.00,-24.00,0.00,\"\",0.00,105.00,86.00,528.00,,,,,,\n2015,5,14,\"EV\",\"3256\",\"ROC\",\"ORD\",-10.00,-18.00,0.00,\"\",0.00,113.00,86.00,528.00,,,,,,\n2015,5,9,\"EV\",\"3257\",\"ORD\",\"SYR\",-2.00,-15.00,0.00,\"\",0.00,95.00,77.00,607.00,,,,,,\n2015,5,30,\"EV\",\"3257\",\"ORD\",\"SYR\",-4.00,-12.00,0.00,\"\",0.00,100.00,82.00,607.00,,,,,,\n2015,5,23,\"EV\",\"3257\",\"ORD\",\"SYR\",-3.00,-9.00,0.00,\"\",0.00,102.00,80.00,607.00,,,,,,\n2015,5,16,\"EV\",\"3257\",\"ORD\",\"SYR\",29.00,12.00,0.00,\"\",0.00,91.00,78.00,607.00,,,,,,\n2015,5,1,\"EV\",\"3259\",\"HPN\",\"ORD\",-13.00,-31.00,0.00,\"\",0.00,132.00,104.00,738.00,,,,,,\n2015,5,9,\"EV\",\"3259\",\"HPN\",\"ORD\",13.00,11.00,0.00,\"\",0.00,150.00,124.00,738.00,,,,,,\n2015,5,17,\"EV\",\"3259\",\"HPN\",\"ORD\",-4.00,-11.00,0.00,\"\",0.00,145.00,117.00,738.00,,,,,,\n2015,5,28,\"EV\",\"3259\",\"HPN\",\"ORD\",-3.00,-25.00,0.00,\"\",0.00,130.00,112.00,738.00,,,,,,\n2015,5,2,\"EV\",\"3259\",\"HPN\",\"ORD\",-10.00,-32.00,0.00,\"\",0.00,128.00,108.00,738.00,,,,,,\n2015,5,4,\"EV\",\"3259\",\"HPN\",\"ORD\",-2.00,-10.00,0.00,\"\",0.00,142.00,120.00,738.00,,,,,,\n2015,5,3,\"EV\",\"3259\",\"HPN\",\"ORD\",-1.00,-18.00,0.00,\"\",0.00,133.00,111.00,738.00,,,,,,\n2015,5,25,\"EV\",\"3259\",\"HPN\",\"ORD\",-12.00,-22.00,0.00,\"\",0.00,142.00,119.00,738.00,,,,,,\n2015,5,27,\"EV\",\"3259\",\"HPN\",\"ORD\",-9.00,-23.00,0.00,\"\",0.00,138.00,114.00,738.00,,,,,,\n2015,5,30,\"EV\",\"3259\",\"HPN\",\"ORD\",-5.00,-28.00,0.00,\"\",0.00,129.00,111.00,738.00,,,,,,\n2015,5,29,\"EV\",\"3259\",\"HPN\",\"ORD\",-11.00,-22.00,0.00,\"\",0.00,141.00,114.00,738.00,,,,,,\n2015,5,26,\"EV\",\"3259\",\"HPN\",\"ORD\",12.00,21.00,0.00,\"\",0.00,161.00,121.00,738.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,5,\"EV\",\"3259\",\"HPN\",\"ORD\",18.00,23.00,0.00,\"\",0.00,155.00,125.00,738.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,6,\"EV\",\"3259\",\"HPN\",\"ORD\",-1.00,19.00,0.00,\"\",0.00,172.00,126.00,738.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,18,\"EV\",\"3259\",\"HPN\",\"ORD\",-6.00,-7.00,0.00,\"\",0.00,151.00,113.00,738.00,,,,,,\n2015,5,7,\"EV\",\"3259\",\"HPN\",\"ORD\",-1.00,-11.00,0.00,\"\",0.00,142.00,106.00,738.00,,,,,,\n2015,5,31,\"EV\",\"3259\",\"HPN\",\"ORD\",-11.00,-15.00,0.00,\"\",0.00,148.00,123.00,738.00,,,,,,\n2015,5,8,\"EV\",\"3259\",\"HPN\",\"ORD\",-8.00,-6.00,0.00,\"\",0.00,154.00,110.00,738.00,,,,,,\n2015,5,19,\"EV\",\"3259\",\"HPN\",\"ORD\",-6.00,-4.00,0.00,\"\",0.00,154.00,128.00,738.00,,,,,,\n2015,5,10,\"EV\",\"3259\",\"HPN\",\"ORD\",-10.00,-30.00,0.00,\"\",0.00,132.00,111.00,738.00,,,,,,\n2015,5,11,\"EV\",\"3259\",\"HPN\",\"ORD\",-10.00,-27.00,0.00,\"\",0.00,135.00,116.00,738.00,,,,,,\n2015,5,20,\"EV\",\"3259\",\"HPN\",\"ORD\",-5.00,-7.00,0.00,\"\",0.00,150.00,128.00,738.00,,,,,,\n2015,5,21,\"EV\",\"3259\",\"HPN\",\"ORD\",-9.00,2.00,0.00,\"\",0.00,163.00,126.00,738.00,,,,,,\n2015,5,22,\"EV\",\"3259\",\"HPN\",\"ORD\",-5.00,-13.00,0.00,\"\",0.00,144.00,119.00,738.00,,,,,,\n2015,5,24,\"EV\",\"3259\",\"HPN\",\"ORD\",-15.00,-28.00,0.00,\"\",0.00,139.00,121.00,738.00,,,,,,\n2015,5,13,\"EV\",\"3259\",\"HPN\",\"ORD\",-5.00,-3.00,0.00,\"\",0.00,154.00,128.00,738.00,,,,,,\n2015,5,23,\"EV\",\"3259\",\"HPN\",\"ORD\",0.00,-6.00,0.00,\"\",0.00,146.00,124.00,738.00,,,,,,\n2015,5,12,\"EV\",\"3259\",\"HPN\",\"ORD\",34.00,30.00,0.00,\"\",0.00,148.00,126.00,738.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,16,\"EV\",\"3259\",\"HPN\",\"ORD\",-7.00,-9.00,0.00,\"\",0.00,150.00,117.00,738.00,,,,,,\n2015,5,14,\"EV\",\"3259\",\"HPN\",\"ORD\",-6.00,-4.00,0.00,\"\",0.00,154.00,123.00,738.00,,,,,,\n2015,5,15,\"EV\",\"3259\",\"HPN\",\"ORD\",1.00,14.00,0.00,\"\",0.00,165.00,123.00,738.00,,,,,,\n2015,5,4,\"EV\",\"3806\",\"EWR\",\"BUF\",-10.00,-13.00,0.00,\"\",0.00,78.00,56.00,282.00,,,,,,\n2015,5,1,\"EV\",\"3806\",\"EWR\",\"BUF\",25.00,10.00,0.00,\"\",0.00,66.00,46.00,282.00,,,,,,\n2015,5,5,\"EV\",\"3806\",\"EWR\",\"BUF\",59.00,51.00,0.00,\"\",0.00,73.00,49.00,282.00,51.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"EV\",\"4529\",\"EWR\",\"BUF\",-3.00,-16.00,0.00,\"\",0.00,68.00,46.00,282.00,,,,,,\n2015,5,31,\"EV\",\"4533\",\"BUF\",\"EWR\",-9.00,-18.00,0.00,\"\",0.00,74.00,50.00,282.00,,,,,,\n2015,5,2,\"EV\",\"4533\",\"BUF\",\"EWR\",-13.00,-30.00,0.00,\"\",0.00,66.00,49.00,282.00,,,,,,\n2015,5,17,\"EV\",\"4533\",\"BUF\",\"EWR\",23.00,5.00,0.00,\"\",0.00,65.00,48.00,282.00,,,,,,\n2015,5,10,\"EV\",\"4533\",\"BUF\",\"EWR\",-11.00,-24.00,0.00,\"\",0.00,70.00,53.00,282.00,,,,,,\n2015,5,24,\"EV\",\"4533\",\"BUF\",\"EWR\",-6.00,-21.00,0.00,\"\",0.00,68.00,45.00,282.00,,,,,,\n2015,5,28,\"EV\",\"4302\",\"LGA\",\"CLE\",-11.00,-32.00,0.00,\"\",0.00,91.00,65.00,419.00,,,,,,\n2015,5,25,\"EV\",\"4302\",\"LGA\",\"CLE\",0.00,13.00,0.00,\"\",0.00,125.00,69.00,419.00,,,,,,\n2015,5,2,\"EV\",\"4302\",\"LGA\",\"CLE\",-16.00,-50.00,0.00,\"\",0.00,79.00,60.00,419.00,,,,,,\n2015,5,9,\"EV\",\"4302\",\"LGA\",\"CLE\",-11.00,-15.00,0.00,\"\",0.00,108.00,63.00,419.00,,,,,,\n2015,5,1,\"EV\",\"4302\",\"LGA\",\"CLE\",-12.00,-49.00,0.00,\"\",0.00,76.00,62.00,419.00,,,,,,\n2015,5,29,\"EV\",\"4302\",\"LGA\",\"CLE\",-9.00,-30.00,0.00,\"\",0.00,91.00,65.00,419.00,,,,,,\n2015,5,3,\"EV\",\"4302\",\"LGA\",\"CLE\",-10.00,-33.00,0.00,\"\",0.00,90.00,71.00,419.00,,,,,,\n2015,5,4,\"EV\",\"4302\",\"LGA\",\"CLE\",-5.00,-36.00,0.00,\"\",0.00,82.00,65.00,419.00,,,,,,\n2015,5,17,\"EV\",\"4302\",\"LGA\",\"CLE\",-8.00,-31.00,0.00,\"\",0.00,89.00,66.00,419.00,,,,,,\n2015,5,26,\"EV\",\"4302\",\"LGA\",\"CLE\",-12.00,-37.00,0.00,\"\",0.00,87.00,65.00,419.00,,,,,,\n2015,5,30,\"EV\",\"4302\",\"LGA\",\"CLE\",-8.00,-21.00,0.00,\"\",0.00,99.00,73.00,419.00,,,,,,\n2015,5,5,\"EV\",\"4302\",\"LGA\",\"CLE\",-9.00,-39.00,0.00,\"\",0.00,83.00,62.00,419.00,,,,,,\n2015,5,6,\"EV\",\"4302\",\"LGA\",\"CLE\",124.00,116.00,0.00,\"\",0.00,104.00,66.00,419.00,0.00,0.00,116.00,0.00,0.00,\n2015,5,27,\"EV\",\"4302\",\"LGA\",\"CLE\",38.00,26.00,0.00,\"\",0.00,100.00,85.00,419.00,0.00,26.00,0.00,0.00,0.00,\n2015,5,8,\"EV\",\"4302\",\"LGA\",\"CLE\",-1.00,-24.00,0.00,\"\",0.00,89.00,64.00,419.00,,,,,,\n2015,5,18,\"EV\",\"4302\",\"LGA\",\"CLE\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,31,\"EV\",\"4302\",\"LGA\",\"CLE\",1.00,-18.00,0.00,\"\",0.00,93.00,70.00,419.00,,,,,,\n2015,5,7,\"EV\",\"4302\",\"LGA\",\"CLE\",-7.00,-32.00,0.00,\"\",0.00,87.00,65.00,419.00,,,,,,\n2015,5,19,\"EV\",\"4302\",\"LGA\",\"CLE\",70.00,76.00,0.00,\"\",0.00,118.00,70.00,419.00,1.00,0.00,6.00,0.00,69.00,\n2015,5,11,\"EV\",\"4302\",\"LGA\",\"CLE\",-11.00,-38.00,0.00,\"\",0.00,85.00,68.00,419.00,,,,,,\n2015,5,20,\"EV\",\"4302\",\"LGA\",\"CLE\",-9.00,-24.00,0.00,\"\",0.00,97.00,73.00,419.00,,,,,,\n2015,5,10,\"EV\",\"4302\",\"LGA\",\"CLE\",-8.00,-33.00,0.00,\"\",0.00,87.00,63.00,419.00,,,,,,\n2015,5,21,\"EV\",\"4302\",\"LGA\",\"CLE\",-12.00,-38.00,0.00,\"\",0.00,86.00,73.00,419.00,,,,,,\n2015,5,22,\"EV\",\"4302\",\"LGA\",\"CLE\",-17.00,-21.00,0.00,\"\",0.00,108.00,76.00,419.00,,,,,,\n2015,5,24,\"EV\",\"4302\",\"LGA\",\"CLE\",-14.00,-40.00,0.00,\"\",0.00,86.00,68.00,419.00,,,,,,\n2015,5,13,\"EV\",\"4302\",\"LGA\",\"CLE\",-14.00,-20.00,0.00,\"\",0.00,106.00,72.00,419.00,,,,,,\n2015,5,15,\"EV\",\"4302\",\"LGA\",\"CLE\",-10.00,-33.00,0.00,\"\",0.00,89.00,70.00,419.00,,,,,,\n2015,5,14,\"EV\",\"4302\",\"LGA\",\"CLE\",0.00,-15.00,0.00,\"\",0.00,97.00,70.00,419.00,,,,,,\n2015,5,12,\"EV\",\"4302\",\"LGA\",\"CLE\",-12.00,-41.00,0.00,\"\",0.00,83.00,69.00,419.00,,,,,,\n2015,5,1,\"EV\",\"4310\",\"LGA\",\"CLE\",-10.00,-35.00,0.00,\"\",0.00,83.00,63.00,419.00,,,,,,\n2015,5,25,\"EV\",\"4310\",\"LGA\",\"CLE\",-13.00,-23.00,0.00,\"\",0.00,99.00,67.00,419.00,,,,,,\n2015,5,28,\"EV\",\"4310\",\"LGA\",\"CLE\",-12.00,2.00,0.00,\"\",0.00,123.00,68.00,419.00,,,,,,\n2015,5,17,\"EV\",\"4310\",\"LGA\",\"CLE\",-7.00,-24.00,0.00,\"\",0.00,92.00,64.00,419.00,,,,,,\n2015,5,27,\"EV\",\"4310\",\"LGA\",\"CLE\",74.00,52.00,0.00,\"\",0.00,87.00,68.00,419.00,0.00,0.00,0.00,0.00,52.00,\n2015,5,4,\"EV\",\"4310\",\"LGA\",\"CLE\",10.00,-13.00,0.00,\"\",0.00,85.00,66.00,419.00,,,,,,\n2015,5,26,\"EV\",\"4310\",\"LGA\",\"CLE\",133.00,110.00,0.00,\"\",0.00,86.00,68.00,419.00,0.00,0.00,0.00,0.00,110.00,\n2015,5,29,\"EV\",\"4310\",\"LGA\",\"CLE\",10.00,-17.00,0.00,\"\",0.00,82.00,64.00,419.00,,,,,,\n2015,5,3,\"EV\",\"4310\",\"LGA\",\"CLE\",-4.00,-25.00,0.00,\"\",0.00,84.00,65.00,419.00,,,,,,\n2015,5,5,\"EV\",\"4310\",\"LGA\",\"CLE\",-8.00,-31.00,0.00,\"\",0.00,85.00,69.00,419.00,,,,,,\n2015,5,6,\"EV\",\"4310\",\"LGA\",\"CLE\",-11.00,-9.00,0.00,\"\",0.00,111.00,63.00,419.00,,,,,,\n2015,5,18,\"EV\",\"4310\",\"LGA\",\"CLE\",155.00,146.00,0.00,\"\",0.00,100.00,65.00,419.00,0.00,0.00,0.00,0.00,146.00,\n2015,5,7,\"EV\",\"4310\",\"LGA\",\"CLE\",-7.00,-21.00,0.00,\"\",0.00,95.00,65.00,419.00,,,,,,\n2015,5,31,\"EV\",\"4310\",\"LGA\",\"CLE\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,19,\"EV\",\"4310\",\"LGA\",\"CLE\",26.00,9.00,0.00,\"\",0.00,92.00,73.00,419.00,,,,,,\n2015,5,20,\"EV\",\"4310\",\"LGA\",\"CLE\",78.00,89.00,0.00,\"\",0.00,120.00,71.00,419.00,2.00,0.00,11.00,0.00,76.00,\n2015,5,10,\"EV\",\"4310\",\"LGA\",\"CLE\",40.00,22.00,0.00,\"\",0.00,91.00,62.00,419.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,8,\"EV\",\"4310\",\"LGA\",\"CLE\",66.00,36.00,0.00,\"\",0.00,79.00,64.00,419.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,11,\"EV\",\"4310\",\"LGA\",\"CLE\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,21,\"EV\",\"4310\",\"LGA\",\"CLE\",-11.00,-29.00,0.00,\"\",0.00,91.00,69.00,419.00,,,,,,\n2015,5,12,\"EV\",\"4310\",\"LGA\",\"CLE\",0.00,-13.00,0.00,\"\",0.00,96.00,70.00,419.00,,,,,,\n2015,5,22,\"EV\",\"4310\",\"LGA\",\"CLE\",-11.00,-30.00,0.00,\"\",0.00,90.00,72.00,419.00,,,,,,\n2015,5,13,\"EV\",\"4310\",\"LGA\",\"CLE\",-11.00,2.00,0.00,\"\",0.00,122.00,69.00,419.00,,,,,,\n2015,5,15,\"EV\",\"4310\",\"LGA\",\"CLE\",-9.00,-25.00,0.00,\"\",0.00,93.00,72.00,419.00,,,,,,\n2015,5,14,\"EV\",\"4310\",\"LGA\",\"CLE\",-7.00,-18.00,0.00,\"\",0.00,98.00,67.00,419.00,,,,,,\n2015,5,25,\"EV\",\"4445\",\"ROC\",\"EWR\",-11.00,-10.00,0.00,\"\",0.00,77.00,43.00,246.00,,,,,,\n2015,5,28,\"EV\",\"4445\",\"ROC\",\"EWR\",-10.00,-20.00,0.00,\"\",0.00,66.00,50.00,246.00,,,,,,\n2015,5,3,\"EV\",\"4445\",\"ROC\",\"EWR\",-12.00,-29.00,0.00,\"\",0.00,65.00,43.00,246.00,,,,,,\n2015,5,29,\"EV\",\"4445\",\"ROC\",\"EWR\",-14.00,-25.00,0.00,\"\",0.00,65.00,44.00,246.00,,,,,,\n2015,5,26,\"EV\",\"4445\",\"ROC\",\"EWR\",13.00,1.00,0.00,\"\",0.00,64.00,45.00,246.00,,,,,,\n2015,5,5,\"EV\",\"4445\",\"ROC\",\"EWR\",-11.00,-30.00,0.00,\"\",0.00,63.00,42.00,246.00,,,,,,\n2015,5,4,\"EV\",\"4445\",\"ROC\",\"EWR\",-10.00,-32.00,0.00,\"\",0.00,60.00,41.00,246.00,,,,,,\n2015,5,27,\"EV\",\"4445\",\"ROC\",\"EWR\",,,1.00,\"C\",0.00,,,246.00,,,,,,\n2015,5,18,\"EV\",\"4445\",\"ROC\",\"EWR\",88.00,104.00,0.00,\"\",0.00,92.00,59.00,246.00,0.00,0.00,16.00,0.00,88.00,\n2015,5,6,\"EV\",\"4445\",\"ROC\",\"EWR\",-16.00,-22.00,0.00,\"\",0.00,70.00,50.00,246.00,,,,,,\n2015,5,7,\"EV\",\"4445\",\"ROC\",\"EWR\",-10.00,-20.00,0.00,\"\",0.00,66.00,43.00,246.00,,,,,,\n2015,5,8,\"EV\",\"4445\",\"ROC\",\"EWR\",-10.00,-12.00,0.00,\"\",0.00,74.00,46.00,246.00,,,,,,\n2015,5,20,\"EV\",\"4445\",\"ROC\",\"EWR\",0.00,8.00,0.00,\"\",0.00,84.00,50.00,246.00,,,,,,\n2015,5,19,\"EV\",\"4445\",\"ROC\",\"EWR\",34.00,36.00,0.00,\"\",0.00,78.00,41.00,246.00,0.00,0.00,2.00,0.00,34.00,\n2015,5,22,\"EV\",\"4445\",\"ROC\",\"EWR\",-18.00,-22.00,0.00,\"\",0.00,72.00,53.00,246.00,,,,,,\n2015,5,11,\"EV\",\"4445\",\"ROC\",\"EWR\",71.00,62.00,0.00,\"\",0.00,67.00,44.00,246.00,0.00,0.00,0.00,0.00,62.00,\n2015,5,15,\"EV\",\"4445\",\"ROC\",\"EWR\",-8.00,-18.00,0.00,\"\",0.00,66.00,48.00,246.00,,,,,,\n2015,5,12,\"EV\",\"4445\",\"ROC\",\"EWR\",5.00,-14.00,0.00,\"\",0.00,57.00,40.00,246.00,,,,,,\n2015,5,14,\"EV\",\"4445\",\"ROC\",\"EWR\",-10.00,-26.00,0.00,\"\",0.00,60.00,43.00,246.00,,,,,,\n2015,5,21,\"EV\",\"4445\",\"ROC\",\"EWR\",9.00,4.00,0.00,\"\",0.00,71.00,43.00,246.00,,,,,,\n2015,5,13,\"EV\",\"4445\",\"ROC\",\"EWR\",-12.00,-16.00,0.00,\"\",0.00,72.00,46.00,246.00,,,,,,\n2015,5,1,\"EV\",\"4462\",\"EWR\",\"BUF\",-5.00,-51.00,0.00,\"\",0.00,64.00,47.00,282.00,,,,,,\n2015,5,3,\"EV\",\"4462\",\"EWR\",\"BUF\",-6.00,-48.00,0.00,\"\",0.00,68.00,46.00,282.00,,,,,,\n2015,5,4,\"EV\",\"4462\",\"EWR\",\"BUF\",-7.00,-49.00,0.00,\"\",0.00,68.00,50.00,282.00,,,,,,\n2015,5,5,\"EV\",\"4463\",\"EWR\",\"BUF\",-13.00,-63.00,0.00,\"\",0.00,60.00,47.00,282.00,,,,,,\n2015,5,30,\"EV\",\"4420\",\"SYR\",\"EWR\",-10.00,-26.00,0.00,\"\",0.00,61.00,39.00,195.00,,,,,,\n2015,5,23,\"EV\",\"4420\",\"SYR\",\"EWR\",-4.00,-1.00,0.00,\"\",0.00,80.00,39.00,195.00,,,,,,\n2015,5,28,\"EV\",\"4429\",\"ALB\",\"ORD\",-15.00,-31.00,0.00,\"\",0.00,134.00,115.00,723.00,,,,,,\n2015,5,29,\"EV\",\"4429\",\"ALB\",\"ORD\",-4.00,-8.00,0.00,\"\",0.00,146.00,117.00,723.00,,,,,,\n2015,5,26,\"EV\",\"4429\",\"ALB\",\"ORD\",-9.00,-19.00,0.00,\"\",0.00,140.00,108.00,723.00,,,,,,\n2015,5,8,\"EV\",\"4429\",\"ALB\",\"ORD\",-13.00,-29.00,0.00,\"\",0.00,134.00,114.00,723.00,,,,,,\n2015,5,18,\"EV\",\"4429\",\"ALB\",\"ORD\",6.00,-13.00,0.00,\"\",0.00,131.00,112.00,723.00,,,,,,\n2015,5,27,\"EV\",\"4429\",\"ALB\",\"ORD\",1.00,-7.00,0.00,\"\",0.00,142.00,115.00,723.00,,,,,,\n2015,5,7,\"EV\",\"4429\",\"ALB\",\"ORD\",-8.00,-34.00,0.00,\"\",0.00,124.00,107.00,723.00,,,,,,\n2015,5,6,\"EV\",\"4429\",\"ALB\",\"ORD\",-7.00,-18.00,0.00,\"\",0.00,139.00,116.00,723.00,,,,,,\n2015,5,19,\"EV\",\"4429\",\"ALB\",\"ORD\",233.00,245.00,0.00,\"\",0.00,162.00,130.00,723.00,2.00,0.00,12.00,0.00,231.00,\n2015,5,20,\"EV\",\"4429\",\"ALB\",\"ORD\",-3.00,-2.00,0.00,\"\",0.00,151.00,128.00,723.00,,,,,,\n2015,5,21,\"EV\",\"4429\",\"ALB\",\"ORD\",-21.00,-33.00,0.00,\"\",0.00,138.00,120.00,723.00,,,,,,\n2015,5,22,\"EV\",\"4429\",\"ALB\",\"ORD\",-4.00,-4.00,0.00,\"\",0.00,150.00,124.00,723.00,,,,,,\n2015,5,11,\"EV\",\"4429\",\"ALB\",\"ORD\",-7.00,-18.00,0.00,\"\",0.00,139.00,114.00,723.00,,,,,,\n2015,5,12,\"EV\",\"4429\",\"ALB\",\"ORD\",-16.00,10.00,0.00,\"\",0.00,176.00,135.00,723.00,,,,,,\n2015,5,13,\"EV\",\"4429\",\"ALB\",\"ORD\",0.00,8.00,0.00,\"\",0.00,158.00,130.00,723.00,,,,,,\n2015,5,14,\"EV\",\"4429\",\"ALB\",\"ORD\",-11.00,-19.00,0.00,\"\",0.00,142.00,119.00,723.00,,,,,,\n2015,5,15,\"EV\",\"4429\",\"ALB\",\"ORD\",-18.00,-33.00,0.00,\"\",0.00,135.00,115.00,723.00,,,,,,\n2015,5,25,\"EV\",\"4498\",\"SYR\",\"EWR\",-6.00,-18.00,0.00,\"\",0.00,54.00,35.00,195.00,,,,,,\n2015,5,28,\"EV\",\"4501\",\"HPN\",\"ORD\",-7.00,-11.00,0.00,\"\",0.00,148.00,123.00,738.00,,,,,,\n2015,5,25,\"EV\",\"4501\",\"HPN\",\"ORD\",109.00,107.00,0.00,\"\",0.00,150.00,113.00,738.00,0.00,0.00,107.00,0.00,0.00,\n2015,5,1,\"EV\",\"4501\",\"HPN\",\"ORD\",-4.00,-7.00,0.00,\"\",0.00,151.00,105.00,738.00,,,,,,\n2015,5,31,\"EV\",\"4501\",\"HPN\",\"ORD\",37.00,26.00,0.00,\"\",0.00,141.00,116.00,738.00,0.00,0.00,2.00,0.00,24.00,\n2015,5,4,\"EV\",\"4501\",\"HPN\",\"ORD\",-11.00,-18.00,0.00,\"\",0.00,147.00,123.00,738.00,,,,,,\n2015,5,29,\"EV\",\"4501\",\"HPN\",\"ORD\",-8.00,-21.00,0.00,\"\",0.00,139.00,116.00,738.00,,,,,,\n2015,5,3,\"EV\",\"4501\",\"HPN\",\"ORD\",-9.00,-5.00,0.00,\"\",0.00,158.00,112.00,738.00,,,,,,\n2015,5,17,\"EV\",\"4501\",\"HPN\",\"ORD\",0.00,-18.00,0.00,\"\",0.00,134.00,106.00,738.00,,,,,,\n2015,5,26,\"EV\",\"4501\",\"HPN\",\"ORD\",61.00,59.00,0.00,\"\",0.00,150.00,115.00,738.00,12.00,0.00,0.00,0.00,47.00,\n2015,5,5,\"EV\",\"4501\",\"HPN\",\"ORD\",-13.00,-12.00,0.00,\"\",0.00,155.00,123.00,738.00,,,,,,\n2015,5,6,\"EV\",\"4501\",\"HPN\",\"ORD\",-15.00,-10.00,0.00,\"\",0.00,157.00,129.00,738.00,,,,,,\n2015,5,7,\"EV\",\"4501\",\"HPN\",\"ORD\",-4.00,-12.00,0.00,\"\",0.00,144.00,113.00,738.00,,,,,,\n2015,5,8,\"EV\",\"4501\",\"HPN\",\"ORD\",,,1.00,\"C\",0.00,,,738.00,,,,,,\n2015,5,27,\"EV\",\"4501\",\"HPN\",\"ORD\",87.00,96.00,0.00,\"\",0.00,161.00,117.00,738.00,0.00,0.00,9.00,0.00,87.00,\n2015,5,20,\"EV\",\"4501\",\"HPN\",\"ORD\",101.00,105.00,0.00,\"\",0.00,156.00,123.00,738.00,0.00,0.00,4.00,0.00,101.00,\n2015,5,18,\"EV\",\"4501\",\"HPN\",\"ORD\",38.00,74.00,0.00,\"\",0.00,188.00,135.00,738.00,33.00,0.00,36.00,0.00,5.00,\n2015,5,10,\"EV\",\"4501\",\"HPN\",\"ORD\",-1.00,10.00,0.00,\"\",0.00,163.00,120.00,738.00,,,,,,\n2015,5,19,\"EV\",\"4501\",\"HPN\",\"ORD\",4.00,14.00,0.00,\"\",0.00,162.00,123.00,738.00,,,,,,\n2015,5,21,\"EV\",\"4501\",\"HPN\",\"ORD\",-9.00,-11.00,0.00,\"\",0.00,150.00,114.00,738.00,,,,,,\n2015,5,22,\"EV\",\"4501\",\"HPN\",\"ORD\",-1.00,6.00,0.00,\"\",0.00,159.00,123.00,738.00,,,,,,\n2015,5,11,\"EV\",\"4501\",\"HPN\",\"ORD\",,,1.00,\"C\",0.00,,,738.00,,,,,,\n2015,5,15,\"EV\",\"4501\",\"HPN\",\"ORD\",-7.00,-16.00,0.00,\"\",0.00,143.00,119.00,738.00,,,,,,\n2015,5,13,\"EV\",\"4501\",\"HPN\",\"ORD\",-1.00,15.00,0.00,\"\",0.00,168.00,125.00,738.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,12,\"EV\",\"4501\",\"HPN\",\"ORD\",-16.00,-10.00,0.00,\"\",0.00,158.00,132.00,738.00,,,,,,\n2015,5,14,\"EV\",\"4501\",\"HPN\",\"ORD\",89.00,79.00,0.00,\"\",0.00,142.00,123.00,738.00,0.00,0.00,0.00,0.00,79.00,\n2015,5,28,\"EV\",\"4511\",\"EWR\",\"ROC\",0.00,-23.00,0.00,\"\",0.00,64.00,45.00,246.00,,,,,,\n2015,5,1,\"EV\",\"4511\",\"EWR\",\"ROC\",12.00,-1.00,0.00,\"\",0.00,73.00,48.00,246.00,,,,,,\n2015,5,3,\"EV\",\"4511\",\"EWR\",\"ROC\",-5.00,-19.00,0.00,\"\",0.00,72.00,45.00,246.00,,,,,,\n2015,5,27,\"EV\",\"4511\",\"EWR\",\"ROC\",-9.00,-35.00,0.00,\"\",0.00,61.00,43.00,246.00,,,,,,\n2015,5,4,\"EV\",\"4511\",\"EWR\",\"ROC\",-7.00,-24.00,0.00,\"\",0.00,69.00,44.00,246.00,,,,,,\n2015,5,26,\"EV\",\"4511\",\"EWR\",\"ROC\",-8.00,-29.00,0.00,\"\",0.00,66.00,44.00,246.00,,,,,,\n2015,5,5,\"EV\",\"4511\",\"EWR\",\"ROC\",-10.00,-23.00,0.00,\"\",0.00,73.00,43.00,246.00,,,,,,\n2015,5,29,\"EV\",\"4511\",\"EWR\",\"ROC\",-13.00,-6.00,0.00,\"\",0.00,94.00,57.00,246.00,,,,,,\n2015,5,18,\"EV\",\"4511\",\"EWR\",\"ROC\",-5.00,-14.00,0.00,\"\",0.00,78.00,44.00,246.00,,,,,,\n2015,5,6,\"EV\",\"4511\",\"EWR\",\"ROC\",-8.00,-35.00,0.00,\"\",0.00,60.00,44.00,246.00,,,,,,\n2015,5,7,\"EV\",\"4511\",\"EWR\",\"ROC\",-2.00,-28.00,0.00,\"\",0.00,61.00,40.00,246.00,,,,,,\n2015,5,8,\"EV\",\"4511\",\"EWR\",\"ROC\",-2.00,-17.00,0.00,\"\",0.00,72.00,43.00,246.00,,,,,,\n2015,5,19,\"EV\",\"4511\",\"EWR\",\"ROC\",37.00,26.00,0.00,\"\",0.00,76.00,41.00,246.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,20,\"EV\",\"4511\",\"EWR\",\"ROC\",94.00,76.00,0.00,\"\",0.00,69.00,45.00,246.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,11,\"EV\",\"4511\",\"EWR\",\"ROC\",-9.00,-27.00,0.00,\"\",0.00,69.00,46.00,246.00,,,,,,\n2015,5,13,\"EV\",\"4511\",\"EWR\",\"ROC\",-3.00,-30.00,0.00,\"\",0.00,60.00,44.00,246.00,,,,,,\n2015,5,23,\"EV\",\"4511\",\"EWR\",\"ROC\",-9.00,-15.00,0.00,\"\",0.00,81.00,64.00,246.00,,,,,,\n2015,5,22,\"EV\",\"4511\",\"EWR\",\"ROC\",-8.00,-24.00,0.00,\"\",0.00,71.00,47.00,246.00,,,,,,\n2015,5,12,\"EV\",\"4511\",\"EWR\",\"ROC\",-9.00,-21.00,0.00,\"\",0.00,75.00,56.00,246.00,,,,,,\n2015,5,14,\"EV\",\"4511\",\"EWR\",\"ROC\",-6.00,-15.00,0.00,\"\",0.00,78.00,54.00,246.00,,,,,,\n2015,5,15,\"EV\",\"4511\",\"EWR\",\"ROC\",-4.00,-18.00,0.00,\"\",0.00,73.00,47.00,246.00,,,,,,\n2015,5,28,\"EV\",\"4513\",\"ORD\",\"SYR\",-7.00,-1.00,0.00,\"\",0.00,113.00,89.00,607.00,,,,,,\n2015,5,25,\"EV\",\"4513\",\"ORD\",\"SYR\",-15.00,-8.00,0.00,\"\",0.00,114.00,75.00,607.00,,,,,,\n2015,5,1,\"EV\",\"4513\",\"ORD\",\"SYR\",-8.00,-9.00,0.00,\"\",0.00,104.00,86.00,607.00,,,,,,\n2015,5,26,\"EV\",\"4513\",\"ORD\",\"SYR\",7.00,7.00,0.00,\"\",0.00,107.00,79.00,607.00,,,,,,\n2015,5,29,\"EV\",\"4513\",\"ORD\",\"SYR\",4.00,1.00,0.00,\"\",0.00,104.00,77.00,607.00,,,,,,\n2015,5,4,\"EV\",\"4513\",\"ORD\",\"SYR\",-1.00,-3.00,0.00,\"\",0.00,103.00,81.00,607.00,,,,,,\n2015,5,6,\"EV\",\"4513\",\"ORD\",\"SYR\",0.00,7.00,0.00,\"\",0.00,114.00,83.00,607.00,,,,,,\n2015,5,5,\"EV\",\"4513\",\"ORD\",\"SYR\",-3.00,-8.00,0.00,\"\",0.00,100.00,82.00,607.00,,,,,,\n2015,5,27,\"EV\",\"4513\",\"ORD\",\"SYR\",-3.00,-1.00,0.00,\"\",0.00,109.00,84.00,607.00,,,,,,\n2015,5,7,\"EV\",\"4513\",\"ORD\",\"SYR\",-9.00,2.00,0.00,\"\",0.00,118.00,81.00,607.00,,,,,,\n2015,5,8,\"EV\",\"4513\",\"ORD\",\"SYR\",-3.00,-3.00,0.00,\"\",0.00,107.00,79.00,607.00,,,,,,\n2015,5,18,\"EV\",\"4513\",\"ORD\",\"SYR\",44.00,23.00,0.00,\"\",0.00,86.00,76.00,607.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"EV\",\"4513\",\"ORD\",\"SYR\",31.00,15.00,0.00,\"\",0.00,91.00,78.00,607.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"EV\",\"4513\",\"ORD\",\"SYR\",6.00,-8.00,0.00,\"\",0.00,93.00,74.00,607.00,,,,,,\n2015,5,11,\"EV\",\"4513\",\"ORD\",\"SYR\",-12.00,-8.00,0.00,\"\",0.00,111.00,76.00,607.00,,,,,,\n2015,5,22,\"EV\",\"4513\",\"ORD\",\"SYR\",-5.00,-6.00,0.00,\"\",0.00,106.00,75.00,607.00,,,,,,\n2015,5,13,\"EV\",\"4513\",\"ORD\",\"SYR\",-1.00,-3.00,0.00,\"\",0.00,105.00,80.00,607.00,,,,,,\n2015,5,14,\"EV\",\"4513\",\"ORD\",\"SYR\",-1.00,0.00,0.00,\"\",0.00,108.00,84.00,607.00,,,,,,\n2015,5,20,\"EV\",\"4513\",\"ORD\",\"SYR\",5.00,-7.00,0.00,\"\",0.00,95.00,75.00,607.00,,,,,,\n2015,5,12,\"EV\",\"4513\",\"ORD\",\"SYR\",-8.00,-2.00,0.00,\"\",0.00,113.00,75.00,607.00,,,,,,\n2015,5,15,\"EV\",\"4513\",\"ORD\",\"SYR\",-1.00,-6.00,0.00,\"\",0.00,102.00,79.00,607.00,,,,,,\n2015,5,28,\"EV\",\"4623\",\"CLE\",\"LGA\",-10.00,0.00,0.00,\"\",0.00,109.00,75.00,419.00,,,,,,\n2015,5,25,\"EV\",\"4623\",\"CLE\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,82.00,68.00,419.00,,,,,,\n2015,5,29,\"EV\",\"4623\",\"CLE\",\"LGA\",-8.00,-1.00,0.00,\"\",0.00,106.00,71.00,419.00,,,,,,\n2015,5,26,\"EV\",\"4623\",\"CLE\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,84.00,70.00,419.00,,,,,,\n2015,5,27,\"EV\",\"4623\",\"CLE\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,85.00,72.00,419.00,,,,,,\n2015,5,6,\"EV\",\"4623\",\"CLE\",\"LGA\",113.00,95.00,0.00,\"\",0.00,81.00,61.00,419.00,95.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"EV\",\"4623\",\"CLE\",\"LGA\",-10.00,-19.00,0.00,\"\",0.00,90.00,70.00,419.00,,,,,,\n2015,5,18,\"EV\",\"4623\",\"CLE\",\"LGA\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,21,\"EV\",\"4623\",\"CLE\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,92.00,65.00,419.00,,,,,,\n2015,5,20,\"EV\",\"4623\",\"CLE\",\"LGA\",14.00,4.00,0.00,\"\",0.00,89.00,58.00,419.00,,,,,,\n2015,5,8,\"EV\",\"4623\",\"CLE\",\"LGA\",33.00,35.00,0.00,\"\",0.00,101.00,67.00,419.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,19,\"EV\",\"4623\",\"CLE\",\"LGA\",15.00,26.00,0.00,\"\",0.00,110.00,75.00,419.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,11,\"EV\",\"4623\",\"CLE\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,93.00,73.00,419.00,,,,,,\n2015,5,22,\"EV\",\"4623\",\"CLE\",\"LGA\",-10.00,-21.00,0.00,\"\",0.00,88.00,61.00,419.00,,,,,,\n2015,5,13,\"EV\",\"4623\",\"CLE\",\"LGA\",-7.00,-29.00,0.00,\"\",0.00,77.00,63.00,419.00,,,,,,\n2015,5,12,\"EV\",\"4623\",\"CLE\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,92.00,68.00,419.00,,,,,,\n2015,5,14,\"EV\",\"4623\",\"CLE\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,91.00,70.00,419.00,,,,,,\n2015,5,15,\"EV\",\"4623\",\"CLE\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,98.00,70.00,419.00,,,,,,\n2015,5,28,\"EV\",\"4694\",\"ELM\",\"ORD\",-5.00,-11.00,0.00,\"\",0.00,116.00,92.00,566.00,,,,,,\n2015,5,4,\"EV\",\"4694\",\"ELM\",\"ORD\",0.00,8.00,0.00,\"\",0.00,129.00,100.00,566.00,,,,,,\n2015,5,1,\"EV\",\"4694\",\"ELM\",\"ORD\",4.00,-15.00,0.00,\"\",0.00,102.00,83.00,566.00,,,,,,\n2015,5,31,\"EV\",\"4694\",\"ELM\",\"ORD\",16.00,23.00,0.00,\"\",0.00,129.00,93.00,566.00,0.00,0.00,7.00,0.00,16.00,\n2015,5,25,\"EV\",\"4694\",\"ELM\",\"ORD\",-9.00,-14.00,0.00,\"\",0.00,117.00,89.00,566.00,,,,,,\n2015,5,6,\"EV\",\"4694\",\"ELM\",\"ORD\",-9.00,-16.00,0.00,\"\",0.00,115.00,93.00,566.00,,,,,,\n2015,5,3,\"EV\",\"4694\",\"ELM\",\"ORD\",3.00,-11.00,0.00,\"\",0.00,107.00,88.00,566.00,,,,,,\n2015,5,17,\"EV\",\"4694\",\"ELM\",\"ORD\",6.00,0.00,0.00,\"\",0.00,116.00,84.00,566.00,,,,,,\n2015,5,26,\"EV\",\"4694\",\"ELM\",\"ORD\",13.00,6.00,0.00,\"\",0.00,115.00,91.00,566.00,,,,,,\n2015,5,5,\"EV\",\"4694\",\"ELM\",\"ORD\",64.00,60.00,0.00,\"\",0.00,117.00,100.00,566.00,0.00,0.00,30.00,0.00,30.00,\n2015,5,27,\"EV\",\"4694\",\"ELM\",\"ORD\",-6.00,-15.00,0.00,\"\",0.00,113.00,95.00,566.00,,,,,,\n2015,5,29,\"EV\",\"4694\",\"ELM\",\"ORD\",3.00,-16.00,0.00,\"\",0.00,103.00,88.00,566.00,,,,,,\n2015,5,18,\"EV\",\"4694\",\"ELM\",\"ORD\",-9.00,-18.00,0.00,\"\",0.00,113.00,91.00,566.00,,,,,,\n2015,5,22,\"EV\",\"4694\",\"ELM\",\"ORD\",0.00,6.00,0.00,\"\",0.00,128.00,100.00,566.00,,,,,,\n2015,5,8,\"EV\",\"4694\",\"ELM\",\"ORD\",,,1.00,\"C\",0.00,,,566.00,,,,,,\n2015,5,7,\"EV\",\"4694\",\"ELM\",\"ORD\",1.00,-3.00,0.00,\"\",0.00,118.00,89.00,566.00,,,,,,\n2015,5,10,\"EV\",\"4694\",\"ELM\",\"ORD\",49.00,57.00,0.00,\"\",0.00,130.00,98.00,566.00,0.00,0.00,8.00,0.00,49.00,\n2015,5,19,\"EV\",\"4694\",\"ELM\",\"ORD\",-4.00,-7.00,0.00,\"\",0.00,119.00,98.00,566.00,,,,,,\n2015,5,20,\"EV\",\"4694\",\"ELM\",\"ORD\",84.00,95.00,0.00,\"\",0.00,133.00,104.00,566.00,1.00,0.00,11.00,0.00,83.00,\n2015,5,11,\"EV\",\"4694\",\"ELM\",\"ORD\",-9.00,-20.00,0.00,\"\",0.00,111.00,88.00,566.00,,,,,,\n2015,5,21,\"EV\",\"4694\",\"ELM\",\"ORD\",58.00,48.00,0.00,\"\",0.00,112.00,90.00,566.00,0.00,0.00,0.00,0.00,48.00,\n2015,5,24,\"EV\",\"4694\",\"ELM\",\"ORD\",-8.00,-1.00,0.00,\"\",0.00,129.00,105.00,566.00,,,,,,\n2015,5,15,\"EV\",\"4694\",\"ELM\",\"ORD\",73.00,59.00,0.00,\"\",0.00,108.00,89.00,566.00,0.00,0.00,0.00,0.00,59.00,\n2015,5,13,\"EV\",\"4694\",\"ELM\",\"ORD\",-3.00,-4.00,0.00,\"\",0.00,121.00,101.00,566.00,,,,,,\n2015,5,14,\"EV\",\"4694\",\"ELM\",\"ORD\",-11.00,-2.00,0.00,\"\",0.00,131.00,107.00,566.00,,,,,,\n2015,5,12,\"EV\",\"4694\",\"ELM\",\"ORD\",-10.00,-5.00,0.00,\"\",0.00,127.00,102.00,566.00,,,,,,\n2015,5,10,\"EV\",\"4876\",\"SAV\",\"LGA\",1.00,-3.00,0.00,\"\",0.00,126.00,96.00,722.00,,,,,,\n2015,5,11,\"EV\",\"4877\",\"BNA\",\"LGA\",115.00,125.00,0.00,\"\",0.00,146.00,109.00,764.00,1.00,0.00,124.00,0.00,0.00,\n2015,5,13,\"EV\",\"4877\",\"CLE\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,88.00,67.00,419.00,,,,,,\n2015,5,24,\"EV\",\"4878\",\"CLT\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,108.00,85.00,544.00,,,,,,\n2015,5,11,\"EV\",\"4881\",\"LGA\",\"BNA\",-3.00,1.00,0.00,\"\",0.00,157.00,112.00,764.00,,,,,,\n2015,5,13,\"EV\",\"4881\",\"LGA\",\"CLE\",-10.00,-8.00,0.00,\"\",0.00,114.00,77.00,419.00,,,,,,\n2015,5,25,\"EV\",\"4884\",\"CLT\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,106.00,79.00,544.00,,,,,,\n2015,5,17,\"EV\",\"4886\",\"CLE\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,90.00,67.00,419.00,,,,,,\n2015,5,3,\"EV\",\"4886\",\"CLE\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,103.00,71.00,419.00,,,,,,\n2015,5,2,\"EV\",\"4886\",\"CLE\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,98.00,78.00,419.00,,,,,,\n2015,5,30,\"EV\",\"4886\",\"CLE\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,89.00,75.00,419.00,,,,,,\n2015,5,31,\"EV\",\"4886\",\"CLE\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,96.00,64.00,419.00,,,,,,\n2015,5,9,\"EV\",\"4886\",\"CLE\",\"LGA\",-3.00,-1.00,0.00,\"\",0.00,97.00,83.00,419.00,,,,,,\n2015,5,23,\"EV\",\"4886\",\"CLE\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,80.00,62.00,419.00,,,,,,\n2015,5,24,\"EV\",\"4886\",\"CLE\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,78.00,64.00,419.00,,,,,,\n2015,5,16,\"EV\",\"4886\",\"CLE\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,95.00,73.00,419.00,,,,,,\n2015,5,25,\"EV\",\"4603\",\"ROC\",\"EWR\",-3.00,-7.00,0.00,\"\",0.00,71.00,45.00,246.00,,,,,,\n2015,5,28,\"EV\",\"4603\",\"ROC\",\"EWR\",-6.00,-14.00,0.00,\"\",0.00,67.00,44.00,246.00,,,,,,\n2015,5,26,\"EV\",\"4603\",\"ROC\",\"EWR\",-3.00,-17.00,0.00,\"\",0.00,61.00,45.00,246.00,,,,,,\n2015,5,29,\"EV\",\"4603\",\"ROC\",\"EWR\",-3.00,-2.00,0.00,\"\",0.00,76.00,55.00,246.00,,,,,,\n2015,5,27,\"EV\",\"4603\",\"ROC\",\"EWR\",-5.00,-17.00,0.00,\"\",0.00,63.00,43.00,246.00,,,,,,\n2015,5,30,\"EV\",\"4603\",\"ROC\",\"EWR\",-7.00,-20.00,0.00,\"\",0.00,62.00,43.00,246.00,,,,,,\n2015,5,18,\"EV\",\"4603\",\"ROC\",\"EWR\",-5.00,-7.00,0.00,\"\",0.00,73.00,52.00,246.00,,,,,,\n2015,5,9,\"EV\",\"4603\",\"ROC\",\"EWR\",-10.00,-13.00,0.00,\"\",0.00,72.00,51.00,246.00,,,,,,\n2015,5,7,\"EV\",\"4603\",\"ROC\",\"EWR\",70.00,61.00,0.00,\"\",0.00,66.00,46.00,246.00,0.00,0.00,61.00,0.00,0.00,\n2015,5,6,\"EV\",\"4603\",\"ROC\",\"EWR\",-2.00,-4.00,0.00,\"\",0.00,73.00,53.00,246.00,,,,,,\n2015,5,20,\"EV\",\"4603\",\"ROC\",\"EWR\",2.00,-6.00,0.00,\"\",0.00,67.00,46.00,246.00,,,,,,\n2015,5,8,\"EV\",\"4603\",\"ROC\",\"EWR\",-2.00,-10.00,0.00,\"\",0.00,67.00,50.00,246.00,,,,,,\n2015,5,11,\"EV\",\"4603\",\"ROC\",\"EWR\",-9.00,18.00,0.00,\"\",0.00,102.00,46.00,246.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,22,\"EV\",\"4603\",\"ROC\",\"EWR\",-8.00,-10.00,0.00,\"\",0.00,73.00,48.00,246.00,,,,,,\n2015,5,19,\"EV\",\"4603\",\"ROC\",\"EWR\",-9.00,-14.00,0.00,\"\",0.00,70.00,52.00,246.00,,,,,,\n2015,5,21,\"EV\",\"4603\",\"ROC\",\"EWR\",-1.00,-18.00,0.00,\"\",0.00,58.00,44.00,246.00,,,,,,\n2015,5,12,\"EV\",\"4603\",\"ROC\",\"EWR\",0.00,11.00,0.00,\"\",0.00,86.00,47.00,246.00,,,,,,\n2015,5,13,\"EV\",\"4603\",\"ROC\",\"EWR\",-2.00,-9.00,0.00,\"\",0.00,68.00,49.00,246.00,,,,,,\n2015,5,14,\"EV\",\"4603\",\"ROC\",\"EWR\",-7.00,-13.00,0.00,\"\",0.00,69.00,51.00,246.00,,,,,,\n2015,5,16,\"EV\",\"4603\",\"ROC\",\"EWR\",-4.00,-4.00,0.00,\"\",0.00,75.00,48.00,246.00,,,,,,\n2015,5,15,\"EV\",\"4603\",\"ROC\",\"EWR\",-8.00,-19.00,0.00,\"\",0.00,64.00,45.00,246.00,,,,,,\n2015,5,5,\"EV\",\"4605\",\"CLE\",\"LGA\",-6.00,-2.00,0.00,\"\",0.00,102.00,67.00,419.00,,,,,,\n2015,5,28,\"EV\",\"4611\",\"ORD\",\"ALB\",-6.00,-18.00,0.00,\"\",0.00,103.00,91.00,723.00,,,,,,\n2015,5,31,\"EV\",\"4611\",\"ORD\",\"ALB\",42.00,35.00,0.00,\"\",0.00,108.00,96.00,723.00,21.00,0.00,0.00,0.00,14.00,\n2015,5,29,\"EV\",\"4611\",\"ORD\",\"ALB\",10.00,0.00,0.00,\"\",0.00,105.00,92.00,723.00,,,,,,\n2015,5,26,\"EV\",\"4611\",\"ORD\",\"ALB\",-6.00,-15.00,0.00,\"\",0.00,106.00,92.00,723.00,,,,,,\n2015,5,7,\"EV\",\"4611\",\"ORD\",\"ALB\",-7.00,-11.00,0.00,\"\",0.00,111.00,94.00,723.00,,,,,,\n2015,5,6,\"EV\",\"4611\",\"ORD\",\"ALB\",7.00,-3.00,0.00,\"\",0.00,105.00,93.00,723.00,,,,,,\n2015,5,27,\"EV\",\"4611\",\"ORD\",\"ALB\",12.00,6.00,0.00,\"\",0.00,109.00,93.00,723.00,,,,,,\n2015,5,8,\"EV\",\"4611\",\"ORD\",\"ALB\",-8.00,-17.00,0.00,\"\",0.00,106.00,93.00,723.00,,,,,,\n2015,5,18,\"EV\",\"4611\",\"ORD\",\"ALB\",5.00,1.00,0.00,\"\",0.00,111.00,97.00,723.00,,,,,,\n2015,5,10,\"EV\",\"4611\",\"ORD\",\"ALB\",-3.00,-7.00,0.00,\"\",0.00,111.00,97.00,723.00,,,,,,\n2015,5,19,\"EV\",\"4611\",\"ORD\",\"ALB\",212.00,243.00,0.00,\"\",0.00,146.00,93.00,723.00,212.00,0.00,31.00,0.00,0.00,\n2015,5,22,\"EV\",\"4611\",\"ORD\",\"ALB\",-1.00,6.00,0.00,\"\",0.00,122.00,104.00,723.00,,,,,,\n2015,5,11,\"EV\",\"4611\",\"ORD\",\"ALB\",-1.00,-3.00,0.00,\"\",0.00,113.00,97.00,723.00,,,,,,\n2015,5,20,\"EV\",\"4611\",\"ORD\",\"ALB\",-1.00,1.00,0.00,\"\",0.00,117.00,93.00,723.00,,,,,,\n2015,5,21,\"EV\",\"4611\",\"ORD\",\"ALB\",-3.00,-19.00,0.00,\"\",0.00,99.00,84.00,723.00,,,,,,\n2015,5,12,\"EV\",\"4611\",\"ORD\",\"ALB\",-4.00,-18.00,0.00,\"\",0.00,101.00,87.00,723.00,,,,,,\n2015,5,14,\"EV\",\"4611\",\"ORD\",\"ALB\",-2.00,-16.00,0.00,\"\",0.00,101.00,90.00,723.00,,,,,,\n2015,5,15,\"EV\",\"4611\",\"ORD\",\"ALB\",-7.00,-18.00,0.00,\"\",0.00,104.00,92.00,723.00,,,,,,\n2015,5,13,\"EV\",\"4611\",\"ORD\",\"ALB\",4.00,2.00,0.00,\"\",0.00,113.00,93.00,723.00,,,,,,\n2015,5,28,\"EV\",\"4714\",\"EWR\",\"SYR\",-5.00,-19.00,0.00,\"\",0.00,65.00,38.00,195.00,,,,,,\n2015,5,25,\"EV\",\"4714\",\"EWR\",\"SYR\",-4.00,-27.00,0.00,\"\",0.00,56.00,38.00,195.00,,,,,,\n2015,5,26,\"EV\",\"4714\",\"EWR\",\"SYR\",-3.00,-27.00,0.00,\"\",0.00,55.00,35.00,195.00,,,,,,\n2015,5,29,\"EV\",\"4714\",\"EWR\",\"SYR\",-1.00,-19.00,0.00,\"\",0.00,61.00,37.00,195.00,,,,,,\n2015,5,27,\"EV\",\"4714\",\"EWR\",\"SYR\",35.00,39.00,0.00,\"\",0.00,83.00,50.00,195.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,6,\"EV\",\"4714\",\"EWR\",\"SYR\",-5.00,-12.00,0.00,\"\",0.00,72.00,36.00,195.00,,,,,,\n2015,5,30,\"EV\",\"4714\",\"EWR\",\"SYR\",-6.00,-26.00,0.00,\"\",0.00,59.00,37.00,195.00,,,,,,\n2015,5,9,\"EV\",\"4714\",\"EWR\",\"SYR\",-4.00,-27.00,0.00,\"\",0.00,56.00,34.00,195.00,,,,,,\n2015,5,7,\"EV\",\"4714\",\"EWR\",\"SYR\",-7.00,-24.00,0.00,\"\",0.00,62.00,38.00,195.00,,,,,,\n2015,5,18,\"EV\",\"4714\",\"EWR\",\"SYR\",-6.00,-20.00,0.00,\"\",0.00,65.00,41.00,195.00,,,,,,\n2015,5,19,\"EV\",\"4714\",\"EWR\",\"SYR\",-2.00,2.00,0.00,\"\",0.00,83.00,44.00,195.00,,,,,,\n2015,5,8,\"EV\",\"4714\",\"EWR\",\"SYR\",-1.00,-7.00,0.00,\"\",0.00,73.00,37.00,195.00,,,,,,\n2015,5,20,\"EV\",\"4714\",\"EWR\",\"SYR\",-9.00,-3.00,0.00,\"\",0.00,85.00,47.00,195.00,,,,,,\n2015,5,21,\"EV\",\"4714\",\"EWR\",\"SYR\",-5.00,-14.00,0.00,\"\",0.00,70.00,40.00,195.00,,,,,,\n2015,5,22,\"EV\",\"4714\",\"EWR\",\"SYR\",-2.00,-3.00,0.00,\"\",0.00,78.00,51.00,195.00,,,,,,\n2015,5,11,\"EV\",\"4714\",\"EWR\",\"SYR\",0.00,-7.00,0.00,\"\",0.00,72.00,39.00,195.00,,,,,,\n2015,5,12,\"EV\",\"4714\",\"EWR\",\"SYR\",-2.00,-9.00,0.00,\"\",0.00,72.00,40.00,195.00,,,,,,\n2015,5,23,\"EV\",\"4714\",\"EWR\",\"SYR\",-1.00,-13.00,0.00,\"\",0.00,67.00,41.00,195.00,,,,,,\n2015,5,13,\"EV\",\"4714\",\"EWR\",\"SYR\",-10.00,-4.00,0.00,\"\",0.00,85.00,46.00,195.00,,,,,,\n2015,5,15,\"EV\",\"4714\",\"EWR\",\"SYR\",0.00,-20.00,0.00,\"\",0.00,59.00,39.00,195.00,,,,,,\n2015,5,16,\"EV\",\"4714\",\"EWR\",\"SYR\",14.00,-2.00,0.00,\"\",0.00,63.00,41.00,195.00,,,,,,\n2015,5,14,\"EV\",\"4714\",\"EWR\",\"SYR\",-6.00,-6.00,0.00,\"\",0.00,79.00,39.00,195.00,,,,,,\n2015,5,1,\"EV\",\"4722\",\"BUF\",\"ORD\",-9.00,-17.00,0.00,\"\",0.00,104.00,81.00,473.00,,,,,,\n2015,5,31,\"EV\",\"4722\",\"BUF\",\"ORD\",-4.00,1.00,0.00,\"\",0.00,118.00,92.00,473.00,,,,,,\n2015,5,4,\"EV\",\"4722\",\"BUF\",\"ORD\",-4.00,-15.00,0.00,\"\",0.00,101.00,76.00,473.00,,,,,,\n2015,5,5,\"EV\",\"4722\",\"BUF\",\"ORD\",-3.00,51.00,0.00,\"\",0.00,166.00,90.00,473.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,25,\"EV\",\"4727\",\"SYR\",\"ORD\",-7.00,-17.00,0.00,\"\",0.00,121.00,96.00,607.00,,,,,,\n2015,5,28,\"EV\",\"4727\",\"SYR\",\"ORD\",3.00,6.00,0.00,\"\",0.00,134.00,99.00,607.00,,,,,,\n2015,5,26,\"EV\",\"4727\",\"SYR\",\"ORD\",0.00,10.00,0.00,\"\",0.00,141.00,116.00,607.00,,,,,,\n2015,5,6,\"EV\",\"4727\",\"SYR\",\"ORD\",-11.00,5.00,0.00,\"\",0.00,147.00,108.00,607.00,,,,,,\n2015,5,27,\"EV\",\"4727\",\"SYR\",\"ORD\",48.00,38.00,0.00,\"\",0.00,121.00,100.00,607.00,0.00,0.00,0.00,0.00,38.00,\n2015,5,7,\"EV\",\"4727\",\"SYR\",\"ORD\",-7.00,-22.00,0.00,\"\",0.00,116.00,92.00,607.00,,,,,,\n2015,5,18,\"EV\",\"4727\",\"SYR\",\"ORD\",10.00,12.00,0.00,\"\",0.00,133.00,109.00,607.00,,,,,,\n2015,5,19,\"EV\",\"4727\",\"SYR\",\"ORD\",-14.00,-6.00,0.00,\"\",0.00,139.00,100.00,607.00,,,,,,\n2015,5,20,\"EV\",\"4727\",\"SYR\",\"ORD\",-4.00,13.00,0.00,\"\",0.00,148.00,116.00,607.00,,,,,,\n2015,5,21,\"EV\",\"4727\",\"SYR\",\"ORD\",-4.00,-20.00,0.00,\"\",0.00,115.00,94.00,607.00,,,,,,\n2015,5,11,\"EV\",\"4727\",\"SYR\",\"ORD\",8.00,7.00,0.00,\"\",0.00,130.00,96.00,607.00,,,,,,\n2015,5,13,\"EV\",\"4727\",\"SYR\",\"ORD\",0.00,3.00,0.00,\"\",0.00,134.00,105.00,607.00,,,,,,\n2015,5,14,\"EV\",\"4727\",\"SYR\",\"ORD\",-17.00,-25.00,0.00,\"\",0.00,123.00,97.00,607.00,,,,,,\n2015,5,12,\"EV\",\"4727\",\"SYR\",\"ORD\",2.00,2.00,0.00,\"\",0.00,131.00,105.00,607.00,,,,,,\n2015,5,28,\"EV\",\"4740\",\"ORD\",\"BUF\",-15.00,-20.00,0.00,\"\",0.00,86.00,66.00,473.00,,,,,,\n2015,5,1,\"EV\",\"4740\",\"ORD\",\"BUF\",-4.00,-5.00,0.00,\"\",0.00,89.00,71.00,473.00,,,,,,\n2015,5,3,\"EV\",\"4740\",\"ORD\",\"BUF\",-3.00,-5.00,0.00,\"\",0.00,88.00,73.00,473.00,,,,,,\n2015,5,4,\"EV\",\"4740\",\"ORD\",\"BUF\",-2.00,4.00,0.00,\"\",0.00,96.00,71.00,473.00,,,,,,\n2015,5,26,\"EV\",\"4740\",\"ORD\",\"BUF\",-6.00,1.00,0.00,\"\",0.00,98.00,76.00,473.00,,,,,,\n2015,5,29,\"EV\",\"4740\",\"ORD\",\"BUF\",-5.00,-5.00,0.00,\"\",0.00,91.00,67.00,473.00,,,,,,\n2015,5,6,\"EV\",\"4740\",\"ORD\",\"BUF\",-6.00,-4.00,0.00,\"\",0.00,93.00,67.00,473.00,,,,,,\n2015,5,27,\"EV\",\"4740\",\"ORD\",\"BUF\",-1.00,0.00,0.00,\"\",0.00,92.00,70.00,473.00,,,,,,\n2015,5,30,\"EV\",\"4740\",\"ORD\",\"BUF\",41.00,35.00,0.00,\"\",0.00,85.00,65.00,473.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"EV\",\"4740\",\"ORD\",\"BUF\",-6.00,7.00,0.00,\"\",0.00,104.00,70.00,473.00,,,,,,\n2015,5,18,\"EV\",\"4740\",\"ORD\",\"BUF\",8.00,2.00,0.00,\"\",0.00,85.00,69.00,473.00,,,,,,\n2015,5,20,\"EV\",\"4740\",\"ORD\",\"BUF\",-5.00,-4.00,0.00,\"\",0.00,92.00,69.00,473.00,,,,,,\n2015,5,8,\"EV\",\"4740\",\"ORD\",\"BUF\",-6.00,-3.00,0.00,\"\",0.00,94.00,70.00,473.00,,,,,,\n2015,5,9,\"EV\",\"4740\",\"ORD\",\"BUF\",5.00,6.00,0.00,\"\",0.00,92.00,65.00,473.00,,,,,,\n2015,5,19,\"EV\",\"4740\",\"ORD\",\"BUF\",0.00,-8.00,0.00,\"\",0.00,83.00,69.00,473.00,,,,,,\n2015,5,23,\"EV\",\"4740\",\"ORD\",\"BUF\",-2.00,-11.00,0.00,\"\",0.00,82.00,68.00,473.00,,,,,,\n2015,5,22,\"EV\",\"4740\",\"ORD\",\"BUF\",-1.00,-6.00,0.00,\"\",0.00,86.00,66.00,473.00,,,,,,\n2015,5,12,\"EV\",\"4740\",\"ORD\",\"BUF\",-4.00,-7.00,0.00,\"\",0.00,88.00,65.00,473.00,,,,,,\n2015,5,11,\"EV\",\"4740\",\"ORD\",\"BUF\",5.00,2.00,0.00,\"\",0.00,88.00,64.00,473.00,,,,,,\n2015,5,21,\"EV\",\"4740\",\"ORD\",\"BUF\",-6.00,-10.00,0.00,\"\",0.00,87.00,63.00,473.00,,,,,,\n2015,5,14,\"EV\",\"4740\",\"ORD\",\"BUF\",28.00,17.00,0.00,\"\",0.00,80.00,67.00,473.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,16,\"EV\",\"4740\",\"ORD\",\"BUF\",8.00,8.00,0.00,\"\",0.00,91.00,73.00,473.00,,,,,,\n2015,5,15,\"EV\",\"4740\",\"ORD\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,83.00,68.00,473.00,,,,,,\n2015,5,13,\"EV\",\"4740\",\"ORD\",\"BUF\",-1.00,4.00,0.00,\"\",0.00,96.00,69.00,473.00,,,,,,\n2015,5,1,\"EV\",\"4649\",\"BUF\",\"EWR\",3.00,-4.00,0.00,\"\",0.00,76.00,50.00,282.00,,,,,,\n2015,5,4,\"EV\",\"4649\",\"BUF\",\"EWR\",-13.00,-31.00,0.00,\"\",0.00,65.00,49.00,282.00,,,,,,\n2015,5,5,\"EV\",\"4649\",\"BUF\",\"EWR\",42.00,57.00,0.00,\"\",0.00,98.00,47.00,282.00,6.00,0.00,15.00,0.00,36.00,\n2015,5,12,\"EV\",\"4871\",\"ALB\",\"DTW\",-8.00,16.00,0.00,\"\",0.00,130.00,86.00,489.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,12,\"EV\",\"4871\",\"DTW\",\"ALB\",2.00,-17.00,0.00,\"\",0.00,75.00,61.00,489.00,,,,,,\n2015,5,5,\"EV\",\"4871\",\"JAX\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,137.00,114.00,833.00,,,,,,\n2015,5,29,\"EV\",\"4872\",\"DTW\",\"ELM\",-6.00,-11.00,0.00,\"\",0.00,65.00,48.00,332.00,,,,,,\n2015,5,25,\"EV\",\"4872\",\"DTW\",\"ELM\",-7.00,-6.00,0.00,\"\",0.00,71.00,47.00,332.00,,,,,,\n2015,5,17,\"EV\",\"4872\",\"DTW\",\"ELM\",-5.00,-5.00,0.00,\"\",0.00,70.00,48.00,332.00,,,,,,\n2015,5,1,\"EV\",\"4872\",\"DTW\",\"ELM\",-8.00,-2.00,0.00,\"\",0.00,76.00,51.00,332.00,,,,,,\n2015,5,3,\"EV\",\"4872\",\"DTW\",\"ELM\",-6.00,-11.00,0.00,\"\",0.00,65.00,46.00,332.00,,,,,,\n2015,5,4,\"EV\",\"4872\",\"DTW\",\"ELM\",12.00,7.00,0.00,\"\",0.00,65.00,46.00,332.00,,,,,,\n2015,5,18,\"EV\",\"4872\",\"DTW\",\"ELM\",-1.00,-7.00,0.00,\"\",0.00,64.00,48.00,332.00,,,,,,\n2015,5,7,\"EV\",\"4872\",\"DTW\",\"ELM\",-2.00,8.00,0.00,\"\",0.00,80.00,50.00,332.00,,,,,,\n2015,5,28,\"EV\",\"4872\",\"DTW\",\"ELM\",5.00,5.00,0.00,\"\",0.00,70.00,45.00,332.00,,,,,,\n2015,5,8,\"EV\",\"4872\",\"DTW\",\"ELM\",-3.00,-8.00,0.00,\"\",0.00,65.00,48.00,332.00,,,,,,\n2015,5,31,\"EV\",\"4872\",\"DTW\",\"ELM\",-4.00,-3.00,0.00,\"\",0.00,71.00,54.00,332.00,,,,,,\n2015,5,10,\"EV\",\"4872\",\"DTW\",\"ELM\",-4.00,6.00,0.00,\"\",0.00,80.00,50.00,332.00,,,,,,\n2015,5,11,\"EV\",\"4872\",\"DTW\",\"ELM\",0.00,1.00,0.00,\"\",0.00,71.00,48.00,332.00,,,,,,\n2015,5,21,\"EV\",\"4872\",\"DTW\",\"ELM\",-9.00,-8.00,0.00,\"\",0.00,71.00,48.00,332.00,,,,,,\n2015,5,14,\"EV\",\"4872\",\"DTW\",\"ELM\",0.00,6.00,0.00,\"\",0.00,76.00,47.00,332.00,,,,,,\n2015,5,22,\"EV\",\"4872\",\"DTW\",\"ELM\",-2.00,24.00,0.00,\"\",0.00,96.00,47.00,332.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,15,\"EV\",\"4872\",\"DTW\",\"ELM\",-4.00,-4.00,0.00,\"\",0.00,70.00,50.00,332.00,,,,,,\n2015,5,1,\"EV\",\"4873\",\"ROC\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,79.00,50.00,254.00,,,,,,\n2015,5,17,\"EV\",\"4873\",\"ROC\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,74.00,49.00,254.00,,,,,,\n2015,5,25,\"EV\",\"4873\",\"ROC\",\"LGA\",-9.00,-18.00,0.00,\"\",0.00,68.00,53.00,254.00,,,,,,\n2015,5,29,\"EV\",\"4873\",\"ROC\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,65.00,46.00,254.00,,,,,,\n2015,5,3,\"EV\",\"4873\",\"ROC\",\"LGA\",-10.00,-9.00,0.00,\"\",0.00,78.00,46.00,254.00,,,,,,\n2015,5,4,\"EV\",\"4873\",\"ROC\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,70.00,46.00,254.00,,,,,,\n2015,5,5,\"EV\",\"4873\",\"ROC\",\"LGA\",103.00,89.00,0.00,\"\",0.00,63.00,44.00,254.00,0.00,0.00,0.00,0.00,89.00,\n2015,5,26,\"EV\",\"4873\",\"ROC\",\"LGA\",93.00,92.00,0.00,\"\",0.00,76.00,44.00,254.00,92.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"EV\",\"4873\",\"ROC\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,70.00,49.00,254.00,,,,,,\n2015,5,27,\"EV\",\"4873\",\"ROC\",\"LGA\",146.00,151.00,0.00,\"\",0.00,82.00,61.00,254.00,32.00,0.00,5.00,0.00,114.00,\n2015,5,7,\"EV\",\"4873\",\"ROC\",\"LGA\",-5.00,6.00,0.00,\"\",0.00,88.00,50.00,254.00,,,,,,\n2015,5,10,\"EV\",\"4873\",\"ROC\",\"LGA\",39.00,42.00,0.00,\"\",0.00,80.00,54.00,254.00,39.00,0.00,3.00,0.00,0.00,\n2015,5,19,\"EV\",\"4873\",\"ROC\",\"LGA\",47.00,36.00,0.00,\"\",0.00,66.00,43.00,254.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,8,\"EV\",\"4873\",\"ROC\",\"LGA\",-10.00,-4.00,0.00,\"\",0.00,83.00,47.00,254.00,,,,,,\n2015,5,21,\"EV\",\"4873\",\"ROC\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,70.00,47.00,254.00,,,,,,\n2015,5,20,\"EV\",\"4873\",\"ROC\",\"LGA\",16.00,9.00,0.00,\"\",0.00,70.00,53.00,254.00,,,,,,\n2015,5,12,\"EV\",\"4873\",\"ROC\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,61.00,46.00,254.00,,,,,,\n2015,5,11,\"EV\",\"4873\",\"ROC\",\"LGA\",110.00,103.00,0.00,\"\",0.00,70.00,47.00,254.00,0.00,0.00,98.00,0.00,5.00,\n2015,5,14,\"EV\",\"4873\",\"ROC\",\"LGA\",-10.00,-14.00,0.00,\"\",0.00,73.00,43.00,254.00,,,,,,\n2015,5,13,\"EV\",\"4873\",\"ROC\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,76.00,61.00,254.00,,,,,,\n2015,5,22,\"EV\",\"4873\",\"ROC\",\"LGA\",12.00,20.00,0.00,\"\",0.00,85.00,43.00,254.00,0.00,0.00,8.00,0.00,12.00,\n2015,5,6,\"EV\",\"4873\",\"ROC\",\"LGA\",55.00,43.00,0.00,\"\",0.00,65.00,43.00,254.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,18,\"EV\",\"4873\",\"ROC\",\"LGA\",,,1.00,\"B\",0.00,,,254.00,,,,,,\n2015,5,15,\"EV\",\"4873\",\"ROC\",\"LGA\",,,1.00,\"A\",0.00,,,254.00,,,,,,\n2015,5,31,\"EV\",\"4873\",\"ROC\",\"LGA\",,,1.00,\"A\",0.00,,,254.00,,,,,,\n2015,5,23,\"EV\",\"4874\",\"LGA\",\"CLT\",-4.00,-31.00,0.00,\"\",0.00,106.00,82.00,544.00,,,,,,\n2015,5,24,\"EV\",\"4874\",\"LGA\",\"CLT\",-4.00,-35.00,0.00,\"\",0.00,103.00,81.00,544.00,,,,,,\n2015,5,4,\"EV\",\"4942\",\"BUF\",\"LGA\",-7.00,-3.00,0.00,\"\",0.00,89.00,54.00,292.00,,,,,,\n2015,5,8,\"EV\",\"4942\",\"BUF\",\"LGA\",17.00,1.00,0.00,\"\",0.00,69.00,49.00,292.00,,,,,,\n2015,5,7,\"EV\",\"4942\",\"BUF\",\"LGA\",-6.00,-25.00,0.00,\"\",0.00,66.00,50.00,292.00,,,,,,\n2015,5,28,\"EV\",\"4942\",\"BUF\",\"LGA\",-8.00,-25.00,0.00,\"\",0.00,68.00,50.00,292.00,,,,,,\n2015,5,18,\"EV\",\"4942\",\"BUF\",\"LGA\",117.00,100.00,0.00,\"\",0.00,68.00,49.00,292.00,0.00,0.00,0.00,0.00,100.00,\n2015,5,11,\"EV\",\"4942\",\"BUF\",\"LGA\",68.00,51.00,0.00,\"\",0.00,68.00,53.00,292.00,51.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"EV\",\"4942\",\"BUF\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,72.00,46.00,292.00,,,,,,\n2015,5,21,\"EV\",\"4942\",\"BUF\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,73.00,52.00,292.00,,,,,,\n2015,5,14,\"EV\",\"4942\",\"BUF\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,68.00,49.00,292.00,,,,,,\n2015,5,15,\"EV\",\"4942\",\"BUF\",\"LGA\",-6.00,-28.00,0.00,\"\",0.00,63.00,47.00,292.00,,,,,,\n2015,5,17,\"EV\",\"4943\",\"LGA\",\"BHM\",5.00,-17.00,0.00,\"\",0.00,135.00,115.00,866.00,,,,,,\n2015,5,1,\"EV\",\"4943\",\"LGA\",\"BHM\",-4.00,-20.00,0.00,\"\",0.00,141.00,119.00,866.00,,,,,,\n2015,5,25,\"EV\",\"4943\",\"LGA\",\"BHM\",0.00,4.00,0.00,\"\",0.00,161.00,126.00,866.00,,,,,,\n2015,5,29,\"EV\",\"4943\",\"LGA\",\"BHM\",-1.00,-7.00,0.00,\"\",0.00,151.00,123.00,866.00,,,,,,\n2015,5,3,\"EV\",\"4943\",\"LGA\",\"BHM\",-5.00,-25.00,0.00,\"\",0.00,137.00,116.00,866.00,,,,,,\n2015,5,4,\"EV\",\"4943\",\"LGA\",\"BHM\",-11.00,-26.00,0.00,\"\",0.00,142.00,122.00,866.00,,,,,,\n2015,5,21,\"EV\",\"4943\",\"LGA\",\"BHM\",-2.00,-15.00,0.00,\"\",0.00,144.00,128.00,866.00,,,,,,\n2015,5,7,\"EV\",\"4943\",\"LGA\",\"BHM\",6.00,-11.00,0.00,\"\",0.00,140.00,111.00,866.00,,,,,,\n2015,5,11,\"EV\",\"4943\",\"LGA\",\"BHM\",-3.00,-12.00,0.00,\"\",0.00,148.00,116.00,866.00,,,,,,\n2015,5,31,\"EV\",\"4943\",\"LGA\",\"BHM\",-6.00,-15.00,0.00,\"\",0.00,148.00,121.00,866.00,,,,,,\n2015,5,28,\"EV\",\"4943\",\"LGA\",\"BHM\",6.00,5.00,0.00,\"\",0.00,156.00,125.00,866.00,,,,,,\n2015,5,10,\"EV\",\"4943\",\"LGA\",\"BHM\",-10.00,-23.00,0.00,\"\",0.00,144.00,119.00,866.00,,,,,,\n2015,5,18,\"EV\",\"4943\",\"LGA\",\"BHM\",86.00,72.00,0.00,\"\",0.00,143.00,115.00,866.00,72.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"EV\",\"4943\",\"LGA\",\"BHM\",-4.00,-15.00,0.00,\"\",0.00,146.00,110.00,866.00,,,,,,\n2015,5,24,\"EV\",\"4943\",\"LGA\",\"BHM\",-7.00,-18.00,0.00,\"\",0.00,146.00,126.00,866.00,,,,,,\n2015,5,22,\"EV\",\"4943\",\"LGA\",\"BHM\",-7.00,-10.00,0.00,\"\",0.00,154.00,129.00,866.00,,,,,,\n2015,5,14,\"EV\",\"4943\",\"LGA\",\"BHM\",-3.00,-16.00,0.00,\"\",0.00,144.00,120.00,866.00,,,,,,\n2015,5,15,\"EV\",\"4943\",\"LGA\",\"BHM\",-1.00,-16.00,0.00,\"\",0.00,142.00,115.00,866.00,,,,,,\n2015,5,26,\"EV\",\"4944\",\"JAX\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,143.00,118.00,833.00,,,,,,\n2015,5,6,\"EV\",\"4945\",\"LGA\",\"BUF\",22.00,24.00,0.00,\"\",0.00,99.00,48.00,292.00,22.00,0.00,2.00,0.00,0.00,\n2015,5,27,\"EV\",\"4945\",\"LGA\",\"BUF\",200.00,209.00,0.00,\"\",0.00,106.00,52.00,292.00,200.00,0.00,9.00,0.00,0.00,\n2015,5,20,\"EV\",\"4945\",\"LGA\",\"BUF\",-3.00,4.00,0.00,\"\",0.00,104.00,46.00,292.00,,,,,,\n2015,5,13,\"EV\",\"4945\",\"LGA\",\"BUF\",-3.00,-12.00,0.00,\"\",0.00,88.00,52.00,292.00,,,,,,\n2015,5,26,\"EV\",\"4950\",\"LGA\",\"RIC\",-8.00,-12.00,0.00,\"\",0.00,99.00,64.00,292.00,,,,,,\n2015,5,25,\"EV\",\"4950\",\"LGA\",\"RIC\",-7.00,-49.00,0.00,\"\",0.00,61.00,45.00,292.00,,,,,,\n2015,5,3,\"EV\",\"4950\",\"LGA\",\"RIC\",-6.00,-23.00,0.00,\"\",0.00,86.00,52.00,292.00,,,,,,\n2015,5,1,\"EV\",\"4950\",\"LGA\",\"RIC\",-12.00,-21.00,0.00,\"\",0.00,94.00,52.00,292.00,,,,,,\n2015,5,2,\"EV\",\"4950\",\"LGA\",\"RIC\",-9.00,-13.00,0.00,\"\",0.00,98.00,55.00,292.00,,,,,,\n2015,5,17,\"EV\",\"4950\",\"LGA\",\"RIC\",8.00,-25.00,0.00,\"\",0.00,70.00,46.00,292.00,,,,,,\n2015,5,4,\"EV\",\"4950\",\"LGA\",\"RIC\",-7.00,-29.00,0.00,\"\",0.00,81.00,58.00,292.00,,,,,,\n2015,5,27,\"EV\",\"4950\",\"LGA\",\"RIC\",-9.00,-8.00,0.00,\"\",0.00,104.00,62.00,292.00,,,,,,\n2015,5,29,\"EV\",\"4950\",\"LGA\",\"RIC\",25.00,19.00,0.00,\"\",0.00,97.00,52.00,292.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"EV\",\"4950\",\"LGA\",\"RIC\",-5.00,-34.00,0.00,\"\",0.00,74.00,55.00,292.00,,,,,,\n2015,5,30,\"EV\",\"4950\",\"LGA\",\"RIC\",-3.00,-18.00,0.00,\"\",0.00,87.00,58.00,292.00,,,,,,\n2015,5,6,\"EV\",\"4950\",\"LGA\",\"RIC\",-8.00,-10.00,0.00,\"\",0.00,101.00,50.00,292.00,,,,,,\n2015,5,7,\"EV\",\"4950\",\"LGA\",\"RIC\",-6.00,-36.00,0.00,\"\",0.00,73.00,48.00,292.00,,,,,,\n2015,5,28,\"EV\",\"4950\",\"LGA\",\"RIC\",-1.00,-6.00,0.00,\"\",0.00,98.00,58.00,292.00,,,,,,\n2015,5,18,\"EV\",\"4950\",\"LGA\",\"RIC\",4.00,-28.00,0.00,\"\",0.00,71.00,51.00,292.00,,,,,,\n2015,5,31,\"EV\",\"4950\",\"LGA\",\"RIC\",-4.00,-30.00,0.00,\"\",0.00,77.00,49.00,292.00,,,,,,\n2015,5,11,\"EV\",\"4950\",\"LGA\",\"RIC\",-3.00,-32.00,0.00,\"\",0.00,74.00,53.00,292.00,,,,,,\n2015,5,9,\"EV\",\"4950\",\"LGA\",\"RIC\",-4.00,-5.00,0.00,\"\",0.00,101.00,52.00,292.00,,,,,,\n2015,5,10,\"EV\",\"4950\",\"LGA\",\"RIC\",-5.00,-30.00,0.00,\"\",0.00,78.00,48.00,292.00,,,,,,\n2015,5,19,\"EV\",\"4950\",\"LGA\",\"RIC\",67.00,51.00,0.00,\"\",0.00,87.00,56.00,292.00,0.00,0.00,0.00,0.00,51.00,\n2015,5,8,\"EV\",\"4950\",\"LGA\",\"RIC\",-5.00,-21.00,0.00,\"\",0.00,87.00,58.00,292.00,,,,,,\n2015,5,22,\"EV\",\"4950\",\"LGA\",\"RIC\",-10.00,-15.00,0.00,\"\",0.00,98.00,53.00,292.00,,,,,,\n2015,5,20,\"EV\",\"4950\",\"LGA\",\"RIC\",0.00,-4.00,0.00,\"\",0.00,99.00,62.00,292.00,,,,,,\n2015,5,21,\"EV\",\"4950\",\"LGA\",\"RIC\",-7.00,-25.00,0.00,\"\",0.00,85.00,60.00,292.00,,,,,,\n2015,5,14,\"EV\",\"4950\",\"LGA\",\"RIC\",-4.00,0.00,0.00,\"\",0.00,107.00,53.00,292.00,,,,,,\n2015,5,23,\"EV\",\"4950\",\"LGA\",\"RIC\",8.00,-11.00,0.00,\"\",0.00,83.00,49.00,292.00,,,,,,\n2015,5,13,\"EV\",\"4950\",\"LGA\",\"RIC\",-4.00,-2.00,0.00,\"\",0.00,105.00,51.00,292.00,,,,,,\n2015,5,15,\"EV\",\"4950\",\"LGA\",\"RIC\",-3.00,-37.00,0.00,\"\",0.00,69.00,55.00,292.00,,,,,,\n2015,5,12,\"EV\",\"4950\",\"LGA\",\"RIC\",96.00,71.00,0.00,\"\",0.00,78.00,54.00,292.00,0.00,0.00,0.00,0.00,71.00,\n2015,5,16,\"EV\",\"4950\",\"LGA\",\"RIC\",66.00,59.00,0.00,\"\",0.00,95.00,52.00,292.00,0.00,0.00,0.00,0.00,59.00,\n2015,5,6,\"EV\",\"4951\",\"CLT\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,112.00,85.00,544.00,,,,,,\n2015,5,13,\"EV\",\"4951\",\"CLT\",\"LGA\",-5.00,5.00,0.00,\"\",0.00,129.00,73.00,544.00,,,,,,\n2015,5,6,\"EV\",\"4958\",\"MKE\",\"LGA\",-7.00,-25.00,0.00,\"\",0.00,117.00,104.00,738.00,,,,,,\n2015,5,6,\"EV\",\"4960\",\"LGA\",\"CLT\",-8.00,-14.00,0.00,\"\",0.00,114.00,82.00,544.00,,,,,,\n2015,5,13,\"EV\",\"4960\",\"LGA\",\"CLT\",-5.00,6.00,0.00,\"\",0.00,131.00,103.00,544.00,,,,,,\n2015,5,2,\"EV\",\"4965\",\"ATL\",\"HPN\",0.00,8.00,0.00,\"\",0.00,147.00,117.00,780.00,,,,,,\n2015,5,25,\"EV\",\"4965\",\"ATL\",\"HPN\",9.00,5.00,0.00,\"\",0.00,135.00,111.00,780.00,,,,,,\n2015,5,9,\"EV\",\"4965\",\"ATL\",\"HPN\",-2.00,5.00,0.00,\"\",0.00,146.00,118.00,780.00,,,,,,\n2015,5,17,\"EV\",\"4965\",\"ATL\",\"HPN\",-2.00,-12.00,0.00,\"\",0.00,129.00,110.00,780.00,,,,,,\n2015,5,1,\"EV\",\"4965\",\"ATL\",\"HPN\",-3.00,1.00,0.00,\"\",0.00,143.00,108.00,780.00,,,,,,\n2015,5,29,\"EV\",\"4965\",\"ATL\",\"HPN\",6.00,8.00,0.00,\"\",0.00,141.00,119.00,780.00,,,,,,\n2015,5,3,\"EV\",\"4965\",\"ATL\",\"HPN\",3.00,2.00,0.00,\"\",0.00,138.00,115.00,780.00,,,,,,\n2015,5,4,\"EV\",\"4965\",\"ATL\",\"HPN\",-3.00,-7.00,0.00,\"\",0.00,135.00,118.00,780.00,,,,,,\n2015,5,30,\"EV\",\"4965\",\"ATL\",\"HPN\",-2.00,-13.00,0.00,\"\",0.00,128.00,113.00,780.00,,,,,,\n2015,5,18,\"EV\",\"4965\",\"ATL\",\"HPN\",-3.00,0.00,0.00,\"\",0.00,142.00,116.00,780.00,,,,,,\n2015,5,26,\"EV\",\"4965\",\"ATL\",\"HPN\",90.00,81.00,0.00,\"\",0.00,130.00,106.00,780.00,81.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"EV\",\"4965\",\"ATL\",\"HPN\",8.00,-1.00,0.00,\"\",0.00,130.00,108.00,780.00,,,,,,\n2015,5,6,\"EV\",\"4965\",\"ATL\",\"HPN\",-2.00,-8.00,0.00,\"\",0.00,133.00,108.00,780.00,,,,,,\n2015,5,7,\"EV\",\"4965\",\"ATL\",\"HPN\",-4.00,-15.00,0.00,\"\",0.00,128.00,110.00,780.00,,,,,,\n2015,5,28,\"EV\",\"4965\",\"ATL\",\"HPN\",-5.00,-13.00,0.00,\"\",0.00,131.00,113.00,780.00,,,,,,\n2015,5,31,\"EV\",\"4965\",\"ATL\",\"HPN\",-4.00,-1.00,0.00,\"\",0.00,142.00,119.00,780.00,,,,,,\n2015,5,10,\"EV\",\"4965\",\"ATL\",\"HPN\",-3.00,-5.00,0.00,\"\",0.00,137.00,114.00,780.00,,,,,,\n2015,5,11,\"EV\",\"4965\",\"ATL\",\"HPN\",-2.00,-7.00,0.00,\"\",0.00,134.00,115.00,780.00,,,,,,\n2015,5,19,\"EV\",\"4965\",\"ATL\",\"HPN\",30.00,27.00,0.00,\"\",0.00,136.00,110.00,780.00,21.00,0.00,0.00,0.00,6.00,\n2015,5,20,\"EV\",\"4965\",\"ATL\",\"HPN\",-2.00,-12.00,0.00,\"\",0.00,129.00,112.00,780.00,,,,,,\n2015,5,8,\"EV\",\"4965\",\"ATL\",\"HPN\",-6.00,-6.00,0.00,\"\",0.00,139.00,118.00,780.00,,,,,,\n2015,5,22,\"EV\",\"4965\",\"ATL\",\"HPN\",-3.00,-21.00,0.00,\"\",0.00,121.00,107.00,780.00,,,,,,\n2015,5,14,\"EV\",\"4965\",\"ATL\",\"HPN\",-4.00,-4.00,0.00,\"\",0.00,139.00,113.00,780.00,,,,,,\n2015,5,13,\"EV\",\"4965\",\"ATL\",\"HPN\",-3.00,-10.00,0.00,\"\",0.00,132.00,112.00,780.00,,,,,,\n2015,5,12,\"EV\",\"4965\",\"ATL\",\"HPN\",-1.00,-10.00,0.00,\"\",0.00,130.00,111.00,780.00,,,,,,\n2015,5,24,\"EV\",\"4965\",\"ATL\",\"HPN\",-2.00,-10.00,0.00,\"\",0.00,131.00,117.00,780.00,,,,,,\n2015,5,23,\"EV\",\"4965\",\"ATL\",\"HPN\",17.00,2.00,0.00,\"\",0.00,124.00,107.00,780.00,,,,,,\n2015,5,27,\"EV\",\"4965\",\"ATL\",\"HPN\",174.00,161.00,0.00,\"\",0.00,126.00,108.00,780.00,0.00,0.00,0.00,0.00,161.00,\n2015,5,16,\"EV\",\"4965\",\"ATL\",\"HPN\",21.00,15.00,0.00,\"\",0.00,133.00,110.00,780.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"EV\",\"4965\",\"ATL\",\"HPN\",30.00,18.00,0.00,\"\",0.00,127.00,100.00,780.00,13.00,0.00,0.00,0.00,5.00,\n2015,5,15,\"EV\",\"4965\",\"ATL\",\"HPN\",-2.00,-6.00,0.00,\"\",0.00,135.00,113.00,780.00,,,,,,\n2015,5,25,\"EV\",\"4965\",\"HPN\",\"ATL\",-1.00,-8.00,0.00,\"\",0.00,131.00,114.00,780.00,,,,,,\n2015,5,1,\"EV\",\"4965\",\"HPN\",\"ATL\",-6.00,-20.00,0.00,\"\",0.00,124.00,103.00,780.00,,,,,,\n2015,5,17,\"EV\",\"4965\",\"HPN\",\"ATL\",-6.00,-24.00,0.00,\"\",0.00,120.00,101.00,780.00,,,,,,\n2015,5,2,\"EV\",\"4965\",\"HPN\",\"ATL\",2.00,-7.00,0.00,\"\",0.00,127.00,108.00,780.00,,,,,,\n2015,5,3,\"EV\",\"4965\",\"HPN\",\"ATL\",-3.00,-15.00,0.00,\"\",0.00,126.00,107.00,780.00,,,,,,\n2015,5,29,\"EV\",\"4965\",\"HPN\",\"ATL\",-4.00,-16.00,0.00,\"\",0.00,126.00,105.00,780.00,,,,,,\n2015,5,5,\"EV\",\"4965\",\"HPN\",\"ATL\",-9.00,-26.00,0.00,\"\",0.00,121.00,104.00,780.00,,,,,,\n2015,5,30,\"EV\",\"4965\",\"HPN\",\"ATL\",-12.00,-20.00,0.00,\"\",0.00,128.00,109.00,780.00,,,,,,\n2015,5,26,\"EV\",\"4965\",\"HPN\",\"ATL\",71.00,,0.00,\"\",1.00,,,780.00,,,,,,\n2015,5,4,\"EV\",\"4965\",\"HPN\",\"ATL\",-5.00,-17.00,0.00,\"\",0.00,126.00,109.00,780.00,,,,,,\n2015,5,18,\"EV\",\"4965\",\"HPN\",\"ATL\",-5.00,8.00,0.00,\"\",0.00,151.00,133.00,780.00,,,,,,\n2015,5,8,\"EV\",\"4965\",\"HPN\",\"ATL\",-8.00,-17.00,0.00,\"\",0.00,129.00,101.00,780.00,,,,,,\n2015,5,28,\"EV\",\"4965\",\"HPN\",\"ATL\",-3.00,,0.00,\"\",1.00,,,780.00,,,,,,\n2015,5,31,\"EV\",\"4965\",\"HPN\",\"ATL\",-6.00,-15.00,0.00,\"\",0.00,129.00,110.00,780.00,,,,,,\n2015,5,7,\"EV\",\"4965\",\"HPN\",\"ATL\",-6.00,-18.00,0.00,\"\",0.00,126.00,108.00,780.00,,,,,,\n2015,5,10,\"EV\",\"4965\",\"HPN\",\"ATL\",-3.00,-14.00,0.00,\"\",0.00,127.00,109.00,780.00,,,,,,\n2015,5,6,\"EV\",\"4965\",\"HPN\",\"ATL\",-5.00,-22.00,0.00,\"\",0.00,121.00,110.00,780.00,,,,,,\n2015,5,19,\"EV\",\"4965\",\"HPN\",\"ATL\",14.00,11.00,0.00,\"\",0.00,135.00,108.00,780.00,,,,,,\n2015,5,11,\"EV\",\"4965\",\"HPN\",\"ATL\",-7.00,-17.00,0.00,\"\",0.00,128.00,104.00,780.00,,,,,,\n2015,5,20,\"EV\",\"4965\",\"HPN\",\"ATL\",-4.00,-16.00,0.00,\"\",0.00,126.00,106.00,780.00,,,,,,\n2015,5,21,\"EV\",\"4965\",\"HPN\",\"ATL\",12.00,5.00,0.00,\"\",0.00,131.00,113.00,780.00,,,,,,\n2015,5,22,\"EV\",\"4965\",\"HPN\",\"ATL\",-2.00,-3.00,0.00,\"\",0.00,137.00,114.00,780.00,,,,,,\n2015,5,12,\"EV\",\"4965\",\"HPN\",\"ATL\",-7.00,-11.00,0.00,\"\",0.00,134.00,120.00,780.00,,,,,,\n2015,5,24,\"EV\",\"4965\",\"HPN\",\"ATL\",-5.00,-13.00,0.00,\"\",0.00,130.00,110.00,780.00,,,,,,\n2015,5,14,\"EV\",\"4965\",\"HPN\",\"ATL\",-6.00,-5.00,0.00,\"\",0.00,139.00,104.00,780.00,,,,,,\n2015,5,15,\"EV\",\"4965\",\"HPN\",\"ATL\",-4.00,-1.00,0.00,\"\",0.00,141.00,115.00,780.00,,,,,,\n2015,5,13,\"EV\",\"4965\",\"HPN\",\"ATL\",1.00,-13.00,0.00,\"\",0.00,124.00,109.00,780.00,,,,,,\n2015,5,23,\"EV\",\"4965\",\"HPN\",\"ATL\",9.00,29.00,0.00,\"\",0.00,156.00,137.00,780.00,9.00,0.00,20.00,0.00,0.00,\n2015,5,16,\"EV\",\"4965\",\"HPN\",\"ATL\",17.00,4.00,0.00,\"\",0.00,123.00,105.00,780.00,,,,,,\n2015,5,27,\"EV\",\"4965\",\"HPN\",\"ATL\",156.00,159.00,0.00,\"\",0.00,141.00,117.00,780.00,0.00,0.00,3.00,0.00,156.00,\n2015,5,1,\"EV\",\"4966\",\"ALB\",\"ATL\",-8.00,-26.00,0.00,\"\",0.00,134.00,116.00,853.00,,,,,,\n2015,5,19,\"EV\",\"4966\",\"ALB\",\"ATL\",-5.00,-10.00,0.00,\"\",0.00,147.00,126.00,853.00,,,,,,\n2015,5,26,\"EV\",\"4966\",\"ALB\",\"ATL\",123.00,112.00,0.00,\"\",0.00,141.00,117.00,853.00,8.00,0.00,0.00,0.00,104.00,\n2015,5,1,\"EV\",\"4966\",\"ATL\",\"ALB\",-3.00,-8.00,0.00,\"\",0.00,135.00,118.00,853.00,,,,,,\n2015,5,26,\"EV\",\"4966\",\"ATL\",\"ALB\",34.00,104.00,0.00,\"\",0.00,210.00,102.00,853.00,34.00,0.00,70.00,0.00,0.00,\n2015,5,19,\"EV\",\"4966\",\"ATL\",\"ALB\",-3.00,-11.00,0.00,\"\",0.00,132.00,108.00,853.00,,,,,,\n2015,5,6,\"EV\",\"4966\",\"LGA\",\"CHS\",-4.00,-10.00,0.00,\"\",0.00,126.00,95.00,641.00,,,,,,\n2015,5,7,\"EV\",\"4966\",\"LGA\",\"CHS\",-7.00,-30.00,0.00,\"\",0.00,109.00,83.00,641.00,,,,,,\n2015,5,8,\"EV\",\"4966\",\"LGA\",\"CHS\",-6.00,-28.00,0.00,\"\",0.00,110.00,84.00,641.00,,,,,,\n2015,5,14,\"EV\",\"4966\",\"LGA\",\"CHS\",-4.00,-30.00,0.00,\"\",0.00,106.00,83.00,641.00,,,,,,\n2015,5,20,\"EV\",\"4967\",\"DTW\",\"ROC\",-3.00,-17.00,0.00,\"\",0.00,63.00,46.00,296.00,,,,,,\n2015,5,20,\"EV\",\"4967\",\"ROC\",\"DTW\",-5.00,-2.00,0.00,\"\",0.00,84.00,62.00,296.00,,,,,,\n2015,5,9,\"EV\",\"4972\",\"LGA\",\"BUF\",-4.00,-4.00,0.00,\"\",0.00,95.00,46.00,292.00,,,,,,\n2015,5,24,\"EV\",\"4972\",\"LGA\",\"BUF\",0.00,-26.00,0.00,\"\",0.00,70.00,52.00,292.00,,,,,,\n2015,5,11,\"EV\",\"4974\",\"ALB\",\"MSP\",-4.00,,1.00,\"A\",0.00,,,980.00,,,,,,\n2015,5,25,\"EV\",\"4974\",\"ALB\",\"MSP\",-3.00,8.00,0.00,\"\",0.00,177.00,144.00,980.00,,,,,,\n2015,5,9,\"EV\",\"4974\",\"ALB\",\"MSP\",-8.00,-9.00,0.00,\"\",0.00,161.00,147.00,980.00,,,,,,\n2015,5,17,\"EV\",\"4974\",\"ALB\",\"MSP\",-1.00,2.00,0.00,\"\",0.00,166.00,151.00,980.00,,,,,,\n2015,5,2,\"EV\",\"4974\",\"ALB\",\"MSP\",0.00,-10.00,0.00,\"\",0.00,152.00,137.00,980.00,,,,,,\n2015,5,29,\"EV\",\"4974\",\"ALB\",\"MSP\",-4.00,-2.00,0.00,\"\",0.00,165.00,152.00,980.00,,,,,,\n2015,5,3,\"EV\",\"4974\",\"ALB\",\"MSP\",-5.00,-12.00,0.00,\"\",0.00,156.00,144.00,980.00,,,,,,\n2015,5,4,\"EV\",\"4974\",\"ALB\",\"MSP\",-8.00,-12.00,0.00,\"\",0.00,159.00,142.00,980.00,,,,,,\n2015,5,26,\"EV\",\"4974\",\"ALB\",\"MSP\",-9.00,-15.00,0.00,\"\",0.00,157.00,145.00,980.00,,,,,,\n2015,5,6,\"EV\",\"4974\",\"ALB\",\"MSP\",-7.00,1.00,0.00,\"\",0.00,171.00,161.00,980.00,,,,,,\n2015,5,18,\"EV\",\"4974\",\"ALB\",\"MSP\",-8.00,-16.00,0.00,\"\",0.00,155.00,141.00,980.00,,,,,,\n2015,5,27,\"EV\",\"4974\",\"ALB\",\"MSP\",-8.00,-30.00,0.00,\"\",0.00,141.00,129.00,980.00,,,,,,\n2015,5,30,\"EV\",\"4974\",\"ALB\",\"MSP\",-8.00,-7.00,0.00,\"\",0.00,163.00,144.00,980.00,,,,,,\n2015,5,5,\"EV\",\"4974\",\"ALB\",\"MSP\",-9.00,-10.00,0.00,\"\",0.00,162.00,145.00,980.00,,,,,,\n2015,5,31,\"EV\",\"4974\",\"ALB\",\"MSP\",-5.00,-8.00,0.00,\"\",0.00,160.00,140.00,980.00,,,,,,\n2015,5,8,\"EV\",\"4974\",\"ALB\",\"MSP\",-9.00,-15.00,0.00,\"\",0.00,157.00,140.00,980.00,,,,,,\n2015,5,7,\"EV\",\"4974\",\"ALB\",\"MSP\",-6.00,-15.00,0.00,\"\",0.00,154.00,137.00,980.00,,,,,,\n2015,5,22,\"EV\",\"4974\",\"ALB\",\"MSP\",-5.00,-9.00,0.00,\"\",0.00,159.00,144.00,980.00,,,,,,\n2015,5,20,\"EV\",\"4974\",\"ALB\",\"MSP\",-8.00,-5.00,0.00,\"\",0.00,166.00,153.00,980.00,,,,,,\n2015,5,19,\"EV\",\"4974\",\"ALB\",\"MSP\",-5.00,-3.00,0.00,\"\",0.00,165.00,145.00,980.00,,,,,,\n2015,5,10,\"EV\",\"4974\",\"ALB\",\"MSP\",-5.00,-16.00,0.00,\"\",0.00,152.00,139.00,980.00,,,,,,\n2015,5,21,\"EV\",\"4974\",\"ALB\",\"MSP\",142.00,142.00,0.00,\"\",0.00,163.00,138.00,980.00,142.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"EV\",\"4974\",\"ALB\",\"MSP\",-5.00,0.00,0.00,\"\",0.00,168.00,156.00,980.00,,,,,,\n2015,5,15,\"EV\",\"4974\",\"ALB\",\"MSP\",-7.00,-14.00,0.00,\"\",0.00,156.00,143.00,980.00,,,,,,\n2015,5,23,\"EV\",\"4974\",\"ALB\",\"MSP\",-6.00,-8.00,0.00,\"\",0.00,160.00,148.00,980.00,,,,,,\n2015,5,14,\"EV\",\"4974\",\"ALB\",\"MSP\",-3.00,7.00,0.00,\"\",0.00,173.00,160.00,980.00,,,,,,\n2015,5,13,\"EV\",\"4974\",\"ALB\",\"MSP\",-9.00,-9.00,0.00,\"\",0.00,163.00,150.00,980.00,,,,,,\n2015,5,16,\"EV\",\"4974\",\"ALB\",\"MSP\",-1.00,0.00,0.00,\"\",0.00,163.00,145.00,980.00,,,,,,\n2015,5,12,\"EV\",\"4974\",\"ALB\",\"MSP\",178.00,177.00,0.00,\"\",0.00,162.00,140.00,980.00,177.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"EV\",\"4974\",\"ALB\",\"MSP\",220.00,207.00,0.00,\"\",0.00,150.00,134.00,980.00,207.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"EV\",\"4974\",\"DSM\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,159.00,139.00,1031.00,,,,,,\n2015,5,15,\"EV\",\"5083\",\"LGA\",\"CVG\",-3.00,8.00,0.00,\"\",0.00,151.00,92.00,585.00,,,,,,\n2015,5,26,\"EV\",\"5088\",\"CLE\",\"LGA\",-2.00,53.00,0.00,\"\",0.00,155.00,69.00,419.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,4,\"EV\",\"5088\",\"CLE\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,91.00,64.00,419.00,,,,,,\n2015,5,5,\"EV\",\"5088\",\"CLE\",\"LGA\",-10.00,0.00,0.00,\"\",0.00,110.00,65.00,419.00,,,,,,\n2015,5,27,\"EV\",\"5088\",\"CLE\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,90.00,71.00,419.00,,,,,,\n2015,5,7,\"EV\",\"5088\",\"CLE\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,103.00,69.00,419.00,,,,,,\n2015,5,6,\"EV\",\"5088\",\"CLE\",\"LGA\",-6.00,27.00,0.00,\"\",0.00,133.00,69.00,419.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,28,\"EV\",\"5088\",\"CLE\",\"LGA\",88.00,87.00,0.00,\"\",0.00,99.00,70.00,419.00,87.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"EV\",\"5088\",\"CLE\",\"LGA\",-7.00,10.00,0.00,\"\",0.00,117.00,98.00,419.00,,,,,,\n2015,5,20,\"EV\",\"5088\",\"CLE\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,89.00,57.00,419.00,,,,,,\n2015,5,21,\"EV\",\"5088\",\"CLE\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,97.00,62.00,419.00,,,,,,\n2015,5,19,\"EV\",\"5088\",\"CLE\",\"LGA\",62.00,54.00,0.00,\"\",0.00,92.00,72.00,419.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,11,\"EV\",\"5088\",\"CLE\",\"LGA\",6.00,2.00,0.00,\"\",0.00,96.00,73.00,419.00,,,,,,\n2015,5,22,\"EV\",\"5088\",\"CLE\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,90.00,65.00,419.00,,,,,,\n2015,5,12,\"EV\",\"5088\",\"CLE\",\"LGA\",-12.00,-19.00,0.00,\"\",0.00,93.00,64.00,419.00,,,,,,\n2015,5,13,\"EV\",\"5088\",\"CLE\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,95.00,59.00,419.00,,,,,,\n2015,5,29,\"EV\",\"5088\",\"CLE\",\"LGA\",193.00,173.00,0.00,\"\",0.00,80.00,60.00,419.00,173.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"EV\",\"5088\",\"CLE\",\"LGA\",190.00,172.00,0.00,\"\",0.00,82.00,65.00,419.00,172.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"EV\",\"5088\",\"CLE\",\"LGA\",8.00,-3.00,0.00,\"\",0.00,89.00,69.00,419.00,,,,,,\n2015,5,18,\"EV\",\"5088\",\"CLE\",\"LGA\",,,1.00,\"B\",0.00,,,419.00,,,,,,\n2015,5,5,\"EV\",\"5092\",\"IND\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,118.00,96.00,660.00,,,,,,\n2015,5,11,\"DL\",\"2214\",\"ATL\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,121.00,104.00,762.00,,,,,,\n2015,5,11,\"DL\",\"2217\",\"JFK\",\"BOS\",20.00,3.00,0.00,\"\",0.00,75.00,35.00,187.00,,,,,,\n2015,5,11,\"DL\",\"2230\",\"CHS\",\"JFK\",59.00,50.00,0.00,\"\",0.00,120.00,87.00,636.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,11,\"DL\",\"2231\",\"DTW\",\"LGA\",-7.00,,0.00,\"\",1.00,,,502.00,,,,,,\n2015,5,11,\"DL\",\"2240\",\"SFO\",\"JFK\",-1.00,-27.00,0.00,\"\",0.00,312.00,286.00,2586.00,,,,,,\n2015,5,11,\"DL\",\"2248\",\"DTW\",\"LGA\",76.00,98.00,0.00,\"\",0.00,130.00,82.00,502.00,0.00,0.00,98.00,0.00,0.00,\n2015,5,11,\"DL\",\"2262\",\"LAX\",\"JFK\",91.00,101.00,0.00,\"\",0.00,344.00,322.00,2475.00,0.00,0.00,101.00,0.00,0.00,\n2015,5,11,\"DL\",\"2263\",\"JFK\",\"MIA\",7.00,2.00,0.00,\"\",0.00,205.00,152.00,1089.00,,,,,,\n2015,5,11,\"DL\",\"2270\",\"LGA\",\"RSW\",-4.00,-15.00,0.00,\"\",0.00,185.00,160.00,1080.00,,,,,,\n2015,5,11,\"DL\",\"2276\",\"MCO\",\"JFK\",3.00,19.00,0.00,\"\",0.00,183.00,158.00,944.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,11,\"DL\",\"2277\",\"JFK\",\"TPA\",-6.00,-18.00,0.00,\"\",0.00,181.00,142.00,1005.00,,,,,,\n2015,5,11,\"DL\",\"2280\",\"LGA\",\"TPA\",-2.00,-17.00,0.00,\"\",0.00,159.00,139.00,1010.00,,,,,,\n2015,5,11,\"DL\",\"2282\",\"LGA\",\"MCO\",70.00,60.00,0.00,\"\",0.00,166.00,128.00,950.00,0.00,0.00,0.00,0.00,60.00,\n2015,5,11,\"DL\",\"2285\",\"LGA\",\"MCO\",-3.00,-13.00,0.00,\"\",0.00,153.00,129.00,950.00,,,,,,\n2015,5,11,\"DL\",\"2292\",\"JFK\",\"PBI\",-6.00,-22.00,0.00,\"\",0.00,171.00,149.00,1028.00,,,,,,\n2015,5,11,\"DL\",\"2296\",\"MSP\",\"LGA\",86.00,84.00,0.00,\"\",0.00,167.00,146.00,1020.00,0.00,0.00,84.00,0.00,0.00,\n2015,5,11,\"DL\",\"2301\",\"JFK\",\"SAT\",-2.00,18.00,0.00,\"\",0.00,289.00,250.00,1587.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,11,\"DL\",\"2311\",\"JFK\",\"MIA\",3.00,-27.00,0.00,\"\",0.00,176.00,147.00,1089.00,,,,,,\n2015,5,11,\"DL\",\"2312\",\"JFK\",\"DTW\",39.00,13.00,0.00,\"\",0.00,114.00,84.00,509.00,,,,,,\n2015,5,11,\"DL\",\"2317\",\"PBI\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,172.00,150.00,1035.00,,,,,,\n2015,5,11,\"DL\",\"2319\",\"LGA\",\"MSP\",-3.00,-25.00,0.00,\"\",0.00,173.00,144.00,1020.00,,,,,,\n2015,5,11,\"DL\",\"2331\",\"LGA\",\"DTW\",92.00,73.00,0.00,\"\",0.00,105.00,77.00,502.00,0.00,0.00,0.00,0.00,73.00,\n2015,5,11,\"DL\",\"2340\",\"JFK\",\"MCO\",-6.00,-6.00,0.00,\"\",0.00,190.00,139.00,944.00,,,,,,\n2015,5,11,\"DL\",\"2349\",\"DTW\",\"LGA\",96.00,99.00,0.00,\"\",0.00,109.00,78.00,502.00,0.00,0.00,93.00,0.00,6.00,\n2015,5,11,\"DL\",\"2350\",\"ATL\",\"JFK\",9.00,1.00,0.00,\"\",0.00,126.00,110.00,760.00,,,,,,\n2015,5,11,\"DL\",\"2352\",\"LAS\",\"JFK\",7.00,-7.00,0.00,\"\",0.00,299.00,269.00,2248.00,,,,,,\n2015,5,11,\"DL\",\"2354\",\"SLC\",\"JFK\",34.00,25.00,0.00,\"\",0.00,263.00,246.00,1990.00,20.00,0.00,0.00,0.00,5.00,\n2015,5,11,\"DL\",\"2362\",\"LAX\",\"JFK\",-10.00,2.00,0.00,\"\",0.00,342.00,286.00,2475.00,,,,,,\n2015,5,11,\"DL\",\"2382\",\"JFK\",\"FLL\",282.00,254.00,0.00,\"\",0.00,173.00,143.00,1069.00,254.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"DL\",\"2386\",\"ATL\",\"LGA\",1.00,42.00,0.00,\"\",0.00,179.00,119.00,762.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,11,\"DL\",\"2390\",\"JFK\",\"ATL\",10.00,-7.00,0.00,\"\",0.00,155.00,106.00,760.00,,,,,,\n2015,5,11,\"DL\",\"2395\",\"LGA\",\"PBI\",-4.00,-11.00,0.00,\"\",0.00,173.00,151.00,1035.00,,,,,,\n2015,5,11,\"DL\",\"2400\",\"JFK\",\"PIT\",-3.00,-10.00,0.00,\"\",0.00,114.00,60.00,340.00,,,,,,\n2015,5,11,\"DL\",\"2404\",\"SAN\",\"JFK\",-1.00,3.00,0.00,\"\",0.00,338.00,294.00,2446.00,,,,,,\n2015,5,11,\"DL\",\"2405\",\"PHX\",\"JFK\",29.00,2.00,0.00,\"\",0.00,268.00,242.00,2153.00,,,,,,\n2015,5,11,\"DL\",\"2406\",\"TPA\",\"LGA\",-4.00,2.00,0.00,\"\",0.00,164.00,141.00,1010.00,,,,,,\n2015,5,11,\"DL\",\"2413\",\"MIA\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,177.00,149.00,1096.00,,,,,,\n2015,5,1,\"EV\",\"5013\",\"LGA\",\"CLT\",-2.00,-3.00,0.00,\"\",0.00,131.00,85.00,544.00,,,,,,\n2015,5,17,\"EV\",\"5013\",\"LGA\",\"CLT\",-2.00,-26.00,0.00,\"\",0.00,108.00,75.00,544.00,,,,,,\n2015,5,29,\"EV\",\"5013\",\"LGA\",\"CLT\",-5.00,-6.00,0.00,\"\",0.00,131.00,76.00,544.00,,,,,,\n2015,5,3,\"EV\",\"5013\",\"LGA\",\"CLT\",-6.00,-13.00,0.00,\"\",0.00,125.00,78.00,544.00,,,,,,\n2015,5,4,\"EV\",\"5013\",\"LGA\",\"CLT\",-8.00,-21.00,0.00,\"\",0.00,119.00,77.00,544.00,,,,,,\n2015,5,5,\"EV\",\"5013\",\"LGA\",\"CLT\",-2.00,-22.00,0.00,\"\",0.00,112.00,80.00,544.00,,,,,,\n2015,5,28,\"EV\",\"5013\",\"LGA\",\"CLT\",-13.00,-13.00,0.00,\"\",0.00,132.00,79.00,544.00,,,,,,\n2015,5,31,\"EV\",\"5013\",\"LGA\",\"CLT\",-4.00,-29.00,0.00,\"\",0.00,107.00,85.00,544.00,,,,,,\n2015,5,7,\"EV\",\"5013\",\"LGA\",\"CLT\",-10.00,-26.00,0.00,\"\",0.00,116.00,78.00,544.00,,,,,,\n2015,5,19,\"EV\",\"5013\",\"LGA\",\"CLT\",-7.00,-12.00,0.00,\"\",0.00,127.00,95.00,544.00,,,,,,\n2015,5,21,\"EV\",\"5013\",\"LGA\",\"CLT\",-2.00,2.00,0.00,\"\",0.00,136.00,91.00,544.00,,,,,,\n2015,5,11,\"EV\",\"5013\",\"LGA\",\"CLT\",-4.00,-7.00,0.00,\"\",0.00,129.00,78.00,544.00,,,,,,\n2015,5,22,\"EV\",\"5013\",\"LGA\",\"CLT\",-6.00,8.00,0.00,\"\",0.00,146.00,88.00,544.00,,,,,,\n2015,5,12,\"EV\",\"5013\",\"LGA\",\"CLT\",-9.00,-8.00,0.00,\"\",0.00,133.00,82.00,544.00,,,,,,\n2015,5,14,\"EV\",\"5013\",\"LGA\",\"CLT\",6.00,-3.00,0.00,\"\",0.00,123.00,80.00,544.00,,,,,,\n2015,5,15,\"EV\",\"5013\",\"LGA\",\"CLT\",-5.00,-21.00,0.00,\"\",0.00,116.00,89.00,544.00,,,,,,\n2015,5,26,\"EV\",\"5013\",\"LGA\",\"CLT\",16.00,5.00,0.00,\"\",0.00,121.00,81.00,544.00,,,,,,\n2015,5,8,\"EV\",\"5013\",\"LGA\",\"CLT\",27.00,22.00,0.00,\"\",0.00,127.00,79.00,544.00,12.00,0.00,0.00,0.00,10.00,\n2015,5,18,\"EV\",\"5013\",\"LGA\",\"CLT\",,,1.00,\"B\",0.00,,,544.00,,,,,,\n2015,5,17,\"EV\",\"5014\",\"ELM\",\"DTW\",-3.00,1.00,0.00,\"\",0.00,81.00,56.00,332.00,,,,,,\n2015,5,9,\"EV\",\"5014\",\"ELM\",\"DTW\",-5.00,-8.00,0.00,\"\",0.00,72.00,52.00,332.00,,,,,,\n2015,5,25,\"EV\",\"5014\",\"ELM\",\"DTW\",-6.00,-1.00,0.00,\"\",0.00,82.00,55.00,332.00,,,,,,\n2015,5,2,\"EV\",\"5014\",\"ELM\",\"DTW\",-11.00,-21.00,0.00,\"\",0.00,65.00,52.00,332.00,,,,,,\n2015,5,26,\"EV\",\"5014\",\"ELM\",\"DTW\",-11.00,-15.00,0.00,\"\",0.00,73.00,52.00,332.00,,,,,,\n2015,5,4,\"EV\",\"5014\",\"ELM\",\"DTW\",-8.00,-12.00,0.00,\"\",0.00,73.00,54.00,332.00,,,,,,\n2015,5,29,\"EV\",\"5014\",\"ELM\",\"DTW\",-11.00,-14.00,0.00,\"\",0.00,74.00,51.00,332.00,,,,,,\n2015,5,1,\"EV\",\"5014\",\"ELM\",\"DTW\",16.00,13.00,0.00,\"\",0.00,74.00,51.00,332.00,,,,,,\n2015,5,3,\"EV\",\"5014\",\"ELM\",\"DTW\",-8.00,-10.00,0.00,\"\",0.00,75.00,55.00,332.00,,,,,,\n2015,5,27,\"EV\",\"5014\",\"ELM\",\"DTW\",-4.00,-4.00,0.00,\"\",0.00,77.00,58.00,332.00,,,,,,\n2015,5,5,\"EV\",\"5014\",\"ELM\",\"DTW\",-7.00,-8.00,0.00,\"\",0.00,76.00,61.00,332.00,,,,,,\n2015,5,28,\"EV\",\"5014\",\"ELM\",\"DTW\",-6.00,-11.00,0.00,\"\",0.00,72.00,52.00,332.00,,,,,,\n2015,5,6,\"EV\",\"5014\",\"ELM\",\"DTW\",-8.00,-8.00,0.00,\"\",0.00,77.00,56.00,332.00,,,,,,\n2015,5,30,\"EV\",\"5014\",\"ELM\",\"DTW\",-6.00,-6.00,0.00,\"\",0.00,75.00,51.00,332.00,,,,,,\n2015,5,18,\"EV\",\"5014\",\"ELM\",\"DTW\",-5.00,-7.00,0.00,\"\",0.00,75.00,56.00,332.00,,,,,,\n2015,5,7,\"EV\",\"5014\",\"ELM\",\"DTW\",-8.00,-8.00,0.00,\"\",0.00,77.00,51.00,332.00,,,,,,\n2015,5,10,\"EV\",\"5014\",\"ELM\",\"DTW\",-4.00,-7.00,0.00,\"\",0.00,74.00,56.00,332.00,,,,,,\n2015,5,8,\"EV\",\"5014\",\"ELM\",\"DTW\",-8.00,0.00,0.00,\"\",0.00,85.00,56.00,332.00,,,,,,\n2015,5,31,\"EV\",\"5014\",\"ELM\",\"DTW\",-1.00,9.00,0.00,\"\",0.00,87.00,66.00,332.00,,,,,,\n2015,5,19,\"EV\",\"5014\",\"ELM\",\"DTW\",-4.00,-10.00,0.00,\"\",0.00,71.00,52.00,332.00,,,,,,\n2015,5,20,\"EV\",\"5014\",\"ELM\",\"DTW\",-3.00,17.00,0.00,\"\",0.00,97.00,57.00,332.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,23,\"EV\",\"5014\",\"ELM\",\"DTW\",-11.00,-13.00,0.00,\"\",0.00,73.00,56.00,332.00,,,,,,\n2015,5,12,\"EV\",\"5014\",\"ELM\",\"DTW\",-3.00,1.00,0.00,\"\",0.00,81.00,57.00,332.00,,,,,,\n2015,5,22,\"EV\",\"5014\",\"ELM\",\"DTW\",-6.00,-4.00,0.00,\"\",0.00,79.00,58.00,332.00,,,,,,\n2015,5,21,\"EV\",\"5014\",\"ELM\",\"DTW\",-6.00,-6.00,0.00,\"\",0.00,77.00,60.00,332.00,,,,,,\n2015,5,11,\"EV\",\"5014\",\"ELM\",\"DTW\",0.00,-6.00,0.00,\"\",0.00,71.00,61.00,332.00,,,,,,\n2015,5,24,\"EV\",\"5014\",\"ELM\",\"DTW\",-2.00,-14.00,0.00,\"\",0.00,65.00,54.00,332.00,,,,,,\n2015,5,15,\"EV\",\"5014\",\"ELM\",\"DTW\",-2.00,-5.00,0.00,\"\",0.00,74.00,59.00,332.00,,,,,,\n2015,5,16,\"EV\",\"5014\",\"ELM\",\"DTW\",-7.00,-12.00,0.00,\"\",0.00,70.00,53.00,332.00,,,,,,\n2015,5,13,\"EV\",\"5014\",\"ELM\",\"DTW\",-6.00,-7.00,0.00,\"\",0.00,76.00,60.00,332.00,,,,,,\n2015,5,14,\"EV\",\"5014\",\"ELM\",\"DTW\",-10.00,-3.00,0.00,\"\",0.00,84.00,64.00,332.00,,,,,,\n2015,5,26,\"EV\",\"5015\",\"LGA\",\"JAX\",29.00,27.00,0.00,\"\",0.00,154.00,119.00,833.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"EV\",\"5017\",\"OMA\",\"LGA\",85.00,75.00,0.00,\"\",0.00,165.00,144.00,1148.00,75.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"EV\",\"5017\",\"ROC\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,67.00,54.00,254.00,,,,,,\n2015,5,26,\"EV\",\"5017\",\"ROC\",\"LGA\",-7.00,-29.00,0.00,\"\",0.00,57.00,46.00,254.00,,,,,,\n2015,5,4,\"EV\",\"5017\",\"ROC\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,82.00,46.00,254.00,,,,,,\n2015,5,5,\"EV\",\"5017\",\"ROC\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,64.00,48.00,254.00,,,,,,\n2015,5,7,\"EV\",\"5017\",\"ROC\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,74.00,48.00,254.00,,,,,,\n2015,5,8,\"EV\",\"5017\",\"ROC\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,70.00,54.00,254.00,,,,,,\n2015,5,28,\"EV\",\"5017\",\"ROC\",\"LGA\",82.00,62.00,0.00,\"\",0.00,59.00,46.00,254.00,62.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"EV\",\"5017\",\"ROC\",\"LGA\",100.00,81.00,0.00,\"\",0.00,60.00,47.00,254.00,81.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"EV\",\"5017\",\"ROC\",\"LGA\",-8.00,,0.00,\"\",1.00,,,254.00,,,,,,\n2015,5,11,\"EV\",\"5017\",\"ROC\",\"LGA\",-7.00,-26.00,0.00,\"\",0.00,60.00,45.00,254.00,,,,,,\n2015,5,22,\"EV\",\"5017\",\"ROC\",\"LGA\",-10.00,-35.00,0.00,\"\",0.00,54.00,43.00,254.00,,,,,,\n2015,5,12,\"EV\",\"5017\",\"ROC\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,64.00,49.00,254.00,,,,,,\n2015,5,21,\"EV\",\"5017\",\"ROC\",\"LGA\",-8.00,-28.00,0.00,\"\",0.00,59.00,43.00,254.00,,,,,,\n2015,5,14,\"EV\",\"5017\",\"ROC\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,78.00,58.00,254.00,,,,,,\n2015,5,15,\"EV\",\"5017\",\"ROC\",\"LGA\",-1.00,5.00,0.00,\"\",0.00,85.00,46.00,254.00,,,,,,\n2015,5,1,\"EV\",\"5018\",\"CLT\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,111.00,75.00,544.00,,,,,,\n2015,5,17,\"EV\",\"5018\",\"CLT\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,111.00,78.00,544.00,,,,,,\n2015,5,29,\"EV\",\"5018\",\"CLT\",\"LGA\",-10.00,-26.00,0.00,\"\",0.00,103.00,76.00,544.00,,,,,,\n2015,5,5,\"EV\",\"5018\",\"CLT\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,121.00,78.00,544.00,,,,,,\n2015,5,4,\"EV\",\"5018\",\"CLT\",\"LGA\",0.00,7.00,0.00,\"\",0.00,126.00,85.00,544.00,,,,,,\n2015,5,26,\"EV\",\"5018\",\"CLT\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,107.00,79.00,544.00,,,,,,\n2015,5,3,\"EV\",\"5018\",\"CLT\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,109.00,83.00,544.00,,,,,,\n2015,5,28,\"EV\",\"5018\",\"CLT\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,113.00,80.00,544.00,,,,,,\n2015,5,7,\"EV\",\"5018\",\"CLT\",\"LGA\",-9.00,-4.00,0.00,\"\",0.00,124.00,85.00,544.00,,,,,,\n2015,5,18,\"EV\",\"5018\",\"CLT\",\"LGA\",89.00,76.00,0.00,\"\",0.00,106.00,79.00,544.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,8,\"EV\",\"5018\",\"CLT\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,115.00,81.00,544.00,,,,,,\n2015,5,19,\"EV\",\"5018\",\"CLT\",\"LGA\",92.00,92.00,0.00,\"\",0.00,119.00,76.00,544.00,0.00,0.00,92.00,0.00,0.00,\n2015,5,21,\"EV\",\"5018\",\"CLT\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,109.00,76.00,544.00,,,,,,\n2015,5,11,\"EV\",\"5018\",\"CLT\",\"LGA\",-5.00,11.00,0.00,\"\",0.00,135.00,84.00,544.00,,,,,,\n2015,5,22,\"EV\",\"5018\",\"CLT\",\"LGA\",89.00,101.00,0.00,\"\",0.00,131.00,78.00,544.00,89.00,0.00,12.00,0.00,0.00,\n2015,5,12,\"EV\",\"5018\",\"CLT\",\"LGA\",-8.00,-12.00,0.00,\"\",0.00,115.00,74.00,544.00,,,,,,\n2015,5,14,\"EV\",\"5018\",\"CLT\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,110.00,81.00,544.00,,,,,,\n2015,5,15,\"EV\",\"5018\",\"CLT\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,114.00,81.00,544.00,,,,,,\n2015,5,31,\"EV\",\"5018\",\"CLT\",\"LGA\",,,1.00,\"A\",0.00,,,544.00,,,,,,\n2015,5,6,\"EV\",\"5018\",\"GSP\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,120.00,90.00,610.00,,,,,,\n2015,5,27,\"EV\",\"5018\",\"GSP\",\"LGA\",0.00,8.00,0.00,\"\",0.00,129.00,97.00,610.00,,,,,,\n2015,5,20,\"EV\",\"5018\",\"GSP\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,112.00,87.00,610.00,,,,,,\n2015,5,13,\"EV\",\"5018\",\"GSP\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,108.00,81.00,610.00,,,,,,\n2015,5,12,\"EV\",\"5019\",\"LGA\",\"CLT\",-7.00,-25.00,0.00,\"\",0.00,106.00,85.00,544.00,,,,,,\n2015,5,12,\"EV\",\"5022\",\"BUF\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,78.00,55.00,292.00,,,,,,\n2015,5,4,\"EV\",\"5028\",\"LGA\",\"GRR\",-8.00,-21.00,0.00,\"\",0.00,110.00,95.00,618.00,,,,,,\n2015,5,5,\"EV\",\"5028\",\"LGA\",\"GRR\",-15.00,-23.00,0.00,\"\",0.00,115.00,95.00,618.00,,,,,,\n2015,5,1,\"EV\",\"5029\",\"ATL\",\"HPN\",14.00,4.00,0.00,\"\",0.00,126.00,111.00,780.00,,,,,,\n2015,5,25,\"EV\",\"5029\",\"ATL\",\"HPN\",-1.00,-12.00,0.00,\"\",0.00,125.00,104.00,780.00,,,,,,\n2015,5,17,\"EV\",\"5029\",\"ATL\",\"HPN\",-1.00,-2.00,0.00,\"\",0.00,135.00,117.00,780.00,,,,,,\n2015,5,29,\"EV\",\"5029\",\"ATL\",\"HPN\",-4.00,-8.00,0.00,\"\",0.00,132.00,109.00,780.00,,,,,,\n2015,5,4,\"EV\",\"5029\",\"ATL\",\"HPN\",0.00,3.00,0.00,\"\",0.00,139.00,109.00,780.00,,,,,,\n2015,5,8,\"EV\",\"5029\",\"ATL\",\"HPN\",-1.00,-10.00,0.00,\"\",0.00,127.00,113.00,780.00,,,,,,\n2015,5,10,\"EV\",\"5029\",\"ATL\",\"HPN\",0.00,1.00,0.00,\"\",0.00,137.00,119.00,780.00,,,,,,\n2015,5,31,\"EV\",\"5029\",\"ATL\",\"HPN\",11.00,17.00,0.00,\"\",0.00,142.00,112.00,780.00,11.00,0.00,6.00,0.00,0.00,\n2015,5,21,\"EV\",\"5029\",\"ATL\",\"HPN\",3.00,-4.00,0.00,\"\",0.00,129.00,108.00,780.00,,,,,,\n2015,5,11,\"EV\",\"5029\",\"ATL\",\"HPN\",-2.00,-3.00,0.00,\"\",0.00,135.00,117.00,780.00,,,,,,\n2015,5,7,\"EV\",\"5029\",\"ATL\",\"HPN\",108.00,100.00,0.00,\"\",0.00,128.00,107.00,780.00,100.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"EV\",\"5029\",\"ATL\",\"HPN\",-1.00,-6.00,0.00,\"\",0.00,131.00,112.00,780.00,,,,,,\n2015,5,28,\"EV\",\"5029\",\"ATL\",\"HPN\",36.00,26.00,0.00,\"\",0.00,126.00,105.00,780.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,22,\"EV\",\"5029\",\"ATL\",\"HPN\",15.00,4.00,0.00,\"\",0.00,125.00,106.00,780.00,,,,,,\n2015,5,3,\"EV\",\"5029\",\"ATL\",\"HPN\",11.00,14.00,0.00,\"\",0.00,139.00,117.00,780.00,,,,,,\n2015,5,15,\"EV\",\"5029\",\"ATL\",\"HPN\",103.00,89.00,0.00,\"\",0.00,122.00,107.00,780.00,89.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"EV\",\"5029\",\"ATL\",\"HPN\",88.00,98.00,0.00,\"\",0.00,146.00,117.00,780.00,88.00,0.00,10.00,0.00,0.00,\n2015,5,1,\"EV\",\"5030\",\"ATL\",\"HPN\",-8.00,-12.00,0.00,\"\",0.00,134.00,114.00,780.00,,,,,,\n2015,5,29,\"EV\",\"5030\",\"ATL\",\"HPN\",-3.00,-4.00,0.00,\"\",0.00,137.00,119.00,780.00,,,,,,\n2015,5,27,\"EV\",\"5030\",\"ATL\",\"HPN\",-1.00,-6.00,0.00,\"\",0.00,133.00,111.00,780.00,,,,,,\n2015,5,26,\"EV\",\"5030\",\"ATL\",\"HPN\",-5.00,-14.00,0.00,\"\",0.00,129.00,111.00,780.00,,,,,,\n2015,5,4,\"EV\",\"5030\",\"ATL\",\"HPN\",5.00,-4.00,0.00,\"\",0.00,129.00,109.00,780.00,,,,,,\n2015,5,18,\"EV\",\"5030\",\"ATL\",\"HPN\",88.00,90.00,0.00,\"\",0.00,140.00,121.00,780.00,88.00,0.00,2.00,0.00,0.00,\n2015,5,5,\"EV\",\"5030\",\"ATL\",\"HPN\",-5.00,-12.00,0.00,\"\",0.00,131.00,113.00,780.00,,,,,,\n2015,5,6,\"EV\",\"5030\",\"ATL\",\"HPN\",-7.00,-24.00,0.00,\"\",0.00,121.00,104.00,780.00,,,,,,\n2015,5,28,\"EV\",\"5030\",\"ATL\",\"HPN\",7.00,3.00,0.00,\"\",0.00,134.00,113.00,780.00,,,,,,\n2015,5,7,\"EV\",\"5030\",\"ATL\",\"HPN\",-5.00,-9.00,0.00,\"\",0.00,134.00,114.00,780.00,,,,,,\n2015,5,19,\"EV\",\"5030\",\"ATL\",\"HPN\",20.00,13.00,0.00,\"\",0.00,131.00,113.00,780.00,,,,,,\n2015,5,20,\"EV\",\"5030\",\"ATL\",\"HPN\",-1.00,-3.00,0.00,\"\",0.00,136.00,114.00,780.00,,,,,,\n2015,5,8,\"EV\",\"5030\",\"ATL\",\"HPN\",5.00,11.00,0.00,\"\",0.00,144.00,122.00,780.00,,,,,,\n2015,5,11,\"EV\",\"5030\",\"ATL\",\"HPN\",-2.00,9.00,0.00,\"\",0.00,149.00,116.00,780.00,,,,,,\n2015,5,12,\"EV\",\"5030\",\"ATL\",\"HPN\",2.00,-2.00,0.00,\"\",0.00,134.00,111.00,780.00,,,,,,\n2015,5,22,\"EV\",\"5030\",\"ATL\",\"HPN\",5.00,-5.00,0.00,\"\",0.00,128.00,108.00,780.00,,,,,,\n2015,5,13,\"EV\",\"5030\",\"ATL\",\"HPN\",-2.00,0.00,0.00,\"\",0.00,140.00,115.00,780.00,,,,,,\n2015,5,14,\"EV\",\"5030\",\"ATL\",\"HPN\",-1.00,-8.00,0.00,\"\",0.00,131.00,111.00,780.00,,,,,,\n2015,5,21,\"EV\",\"5030\",\"ATL\",\"HPN\",89.00,85.00,0.00,\"\",0.00,134.00,105.00,780.00,85.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"EV\",\"5030\",\"ATL\",\"HPN\",6.00,-10.00,0.00,\"\",0.00,122.00,107.00,780.00,,,,,,\n2015,5,1,\"EV\",\"5030\",\"HPN\",\"ATL\",-5.00,-16.00,0.00,\"\",0.00,126.00,103.00,780.00,,,,,,\n2015,5,3,\"EV\",\"5030\",\"HPN\",\"ATL\",-2.00,-18.00,0.00,\"\",0.00,121.00,101.00,780.00,,,,,,\n2015,5,29,\"EV\",\"5030\",\"HPN\",\"ATL\",-2.00,-12.00,0.00,\"\",0.00,127.00,110.00,780.00,,,,,,\n2015,5,5,\"EV\",\"5030\",\"HPN\",\"ATL\",-3.00,-18.00,0.00,\"\",0.00,122.00,105.00,780.00,,,,,,\n2015,5,17,\"EV\",\"5030\",\"HPN\",\"ATL\",11.00,-2.00,0.00,\"\",0.00,124.00,101.00,780.00,,,,,,\n2015,5,26,\"EV\",\"5030\",\"HPN\",\"ATL\",-3.00,-10.00,0.00,\"\",0.00,130.00,112.00,780.00,,,,,,\n2015,5,4,\"EV\",\"5030\",\"HPN\",\"ATL\",-2.00,-27.00,0.00,\"\",0.00,112.00,101.00,780.00,,,,,,\n2015,5,27,\"EV\",\"5030\",\"HPN\",\"ATL\",-2.00,-5.00,0.00,\"\",0.00,134.00,115.00,780.00,,,,,,\n2015,5,28,\"EV\",\"5030\",\"HPN\",\"ATL\",-3.00,5.00,0.00,\"\",0.00,145.00,119.00,780.00,,,,,,\n2015,5,6,\"EV\",\"5030\",\"HPN\",\"ATL\",-14.00,-24.00,0.00,\"\",0.00,127.00,107.00,780.00,,,,,,\n2015,5,10,\"EV\",\"5030\",\"HPN\",\"ATL\",-7.00,-17.00,0.00,\"\",0.00,127.00,107.00,780.00,,,,,,\n2015,5,7,\"EV\",\"5030\",\"HPN\",\"ATL\",-10.00,-21.00,0.00,\"\",0.00,126.00,107.00,780.00,,,,,,\n2015,5,18,\"EV\",\"5030\",\"HPN\",\"ATL\",85.00,74.00,0.00,\"\",0.00,126.00,100.00,780.00,0.00,0.00,0.00,0.00,74.00,\n2015,5,19,\"EV\",\"5030\",\"HPN\",\"ATL\",11.00,16.00,0.00,\"\",0.00,142.00,112.00,780.00,3.00,0.00,5.00,0.00,8.00,\n2015,5,31,\"EV\",\"5030\",\"HPN\",\"ATL\",-1.00,-11.00,0.00,\"\",0.00,127.00,106.00,780.00,,,,,,\n2015,5,22,\"EV\",\"5030\",\"HPN\",\"ATL\",-4.00,6.00,0.00,\"\",0.00,147.00,123.00,780.00,,,,,,\n2015,5,8,\"EV\",\"5030\",\"HPN\",\"ATL\",2.00,0.00,0.00,\"\",0.00,135.00,105.00,780.00,,,,,,\n2015,5,20,\"EV\",\"5030\",\"HPN\",\"ATL\",-4.00,-14.00,0.00,\"\",0.00,127.00,112.00,780.00,,,,,,\n2015,5,11,\"EV\",\"5030\",\"HPN\",\"ATL\",3.00,-4.00,0.00,\"\",0.00,130.00,114.00,780.00,,,,,,\n2015,5,14,\"EV\",\"5030\",\"HPN\",\"ATL\",-5.00,-16.00,0.00,\"\",0.00,126.00,107.00,780.00,,,,,,\n2015,5,13,\"EV\",\"5030\",\"HPN\",\"ATL\",-9.00,-21.00,0.00,\"\",0.00,125.00,109.00,780.00,,,,,,\n2015,5,12,\"EV\",\"5030\",\"HPN\",\"ATL\",7.00,8.00,0.00,\"\",0.00,138.00,113.00,780.00,,,,,,\n2015,5,24,\"EV\",\"5030\",\"HPN\",\"ATL\",-5.00,-17.00,0.00,\"\",0.00,125.00,110.00,780.00,,,,,,\n2015,5,15,\"EV\",\"5030\",\"HPN\",\"ATL\",-3.00,-20.00,0.00,\"\",0.00,120.00,105.00,780.00,,,,,,\n2015,5,21,\"EV\",\"5030\",\"HPN\",\"ATL\",87.00,80.00,0.00,\"\",0.00,130.00,113.00,780.00,0.00,0.00,0.00,0.00,80.00,\n2015,5,25,\"EV\",\"5035\",\"RDU\",\"LGA\",25.00,51.00,0.00,\"\",0.00,123.00,68.00,431.00,25.00,0.00,26.00,0.00,0.00,\n2015,5,27,\"EV\",\"5035\",\"RDU\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,97.00,66.00,431.00,,,,,,\n2015,5,6,\"EV\",\"5035\",\"RDU\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,95.00,64.00,431.00,,,,,,\n2015,5,20,\"EV\",\"5035\",\"RDU\",\"LGA\",19.00,-5.00,0.00,\"\",0.00,73.00,58.00,431.00,,,,,,\n2015,5,13,\"EV\",\"5035\",\"RDU\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,86.00,59.00,431.00,,,,,,\n2015,5,9,\"EV\",\"5040\",\"ATL\",\"HPN\",-3.00,-3.00,0.00,\"\",0.00,134.00,113.00,780.00,,,,,,\n2015,5,25,\"EV\",\"5040\",\"ATL\",\"HPN\",0.00,2.00,0.00,\"\",0.00,138.00,121.00,780.00,,,,,,\n2015,5,3,\"EV\",\"5040\",\"ATL\",\"HPN\",0.00,-4.00,0.00,\"\",0.00,132.00,112.00,780.00,,,,,,\n2015,5,1,\"EV\",\"5040\",\"ATL\",\"HPN\",-3.00,1.00,0.00,\"\",0.00,140.00,121.00,780.00,,,,,,\n2015,5,29,\"EV\",\"5040\",\"ATL\",\"HPN\",-1.00,4.00,0.00,\"\",0.00,141.00,112.00,780.00,,,,,,\n2015,5,2,\"EV\",\"5040\",\"ATL\",\"HPN\",23.00,12.00,0.00,\"\",0.00,128.00,113.00,780.00,,,,,,\n2015,5,4,\"EV\",\"5040\",\"ATL\",\"HPN\",-3.00,-14.00,0.00,\"\",0.00,125.00,110.00,780.00,,,,,,\n2015,5,30,\"EV\",\"5040\",\"ATL\",\"HPN\",-2.00,-2.00,0.00,\"\",0.00,134.00,117.00,780.00,,,,,,\n2015,5,5,\"EV\",\"5040\",\"ATL\",\"HPN\",-3.00,-8.00,0.00,\"\",0.00,131.00,110.00,780.00,,,,,,\n2015,5,27,\"EV\",\"5040\",\"ATL\",\"HPN\",15.00,15.00,0.00,\"\",0.00,136.00,112.00,780.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"EV\",\"5040\",\"ATL\",\"HPN\",-3.00,46.00,0.00,\"\",0.00,185.00,157.00,780.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,7,\"EV\",\"5040\",\"ATL\",\"HPN\",-6.00,-13.00,0.00,\"\",0.00,129.00,114.00,780.00,,,,,,\n2015,5,6,\"EV\",\"5040\",\"ATL\",\"HPN\",49.00,37.00,0.00,\"\",0.00,124.00,107.00,780.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"EV\",\"5040\",\"ATL\",\"HPN\",35.00,47.00,0.00,\"\",0.00,148.00,110.00,780.00,35.00,0.00,12.00,0.00,0.00,\n2015,5,18,\"EV\",\"5040\",\"ATL\",\"HPN\",63.00,78.00,0.00,\"\",0.00,151.00,115.00,780.00,63.00,0.00,15.00,0.00,0.00,\n2015,5,8,\"EV\",\"5040\",\"ATL\",\"HPN\",4.00,-3.00,0.00,\"\",0.00,129.00,115.00,780.00,,,,,,\n2015,5,20,\"EV\",\"5040\",\"ATL\",\"HPN\",0.00,-7.00,0.00,\"\",0.00,129.00,111.00,780.00,,,,,,\n2015,5,19,\"EV\",\"5040\",\"ATL\",\"HPN\",1.00,-1.00,0.00,\"\",0.00,134.00,108.00,780.00,,,,,,\n2015,5,21,\"EV\",\"5040\",\"ATL\",\"HPN\",-6.00,-13.00,0.00,\"\",0.00,129.00,112.00,780.00,,,,,,\n2015,5,11,\"EV\",\"5040\",\"ATL\",\"HPN\",25.00,43.00,0.00,\"\",0.00,154.00,115.00,780.00,25.00,0.00,18.00,0.00,0.00,\n2015,5,17,\"EV\",\"5040\",\"ATL\",\"HPN\",239.00,236.00,0.00,\"\",0.00,133.00,112.00,780.00,0.00,0.00,0.00,0.00,236.00,\n2015,5,22,\"EV\",\"5040\",\"ATL\",\"HPN\",-5.00,-15.00,0.00,\"\",0.00,126.00,108.00,780.00,,,,,,\n2015,5,23,\"EV\",\"5040\",\"ATL\",\"HPN\",-3.00,-10.00,0.00,\"\",0.00,127.00,106.00,780.00,,,,,,\n2015,5,12,\"EV\",\"5040\",\"ATL\",\"HPN\",45.00,37.00,0.00,\"\",0.00,128.00,105.00,780.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"EV\",\"5040\",\"ATL\",\"HPN\",12.00,7.00,0.00,\"\",0.00,131.00,110.00,780.00,,,,,,\n2015,5,13,\"EV\",\"5040\",\"ATL\",\"HPN\",-4.00,-6.00,0.00,\"\",0.00,134.00,112.00,780.00,,,,,,\n2015,5,15,\"EV\",\"5040\",\"ATL\",\"HPN\",-4.00,-17.00,0.00,\"\",0.00,123.00,110.00,780.00,,,,,,\n2015,5,16,\"EV\",\"5040\",\"ATL\",\"HPN\",-3.00,-5.00,0.00,\"\",0.00,132.00,112.00,780.00,,,,,,\n2015,5,14,\"EV\",\"5040\",\"ATL\",\"HPN\",21.00,18.00,0.00,\"\",0.00,133.00,107.00,780.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"EV\",\"5040\",\"ATL\",\"HPN\",,,1.00,\"B\",0.00,,,780.00,,,,,,\n2015,5,1,\"EV\",\"5040\",\"HPN\",\"ATL\",-4.00,-15.00,0.00,\"\",0.00,122.00,98.00,780.00,,,,,,\n2015,5,25,\"EV\",\"5040\",\"HPN\",\"ATL\",0.00,15.00,0.00,\"\",0.00,148.00,111.00,780.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,4,\"EV\",\"5040\",\"HPN\",\"ATL\",-15.00,-12.00,0.00,\"\",0.00,136.00,100.00,780.00,,,,,,\n2015,5,3,\"EV\",\"5040\",\"HPN\",\"ATL\",-6.00,-16.00,0.00,\"\",0.00,123.00,103.00,780.00,,,,,,\n2015,5,17,\"EV\",\"5040\",\"HPN\",\"ATL\",236.00,228.00,0.00,\"\",0.00,125.00,97.00,780.00,0.00,0.00,0.00,0.00,228.00,\n2015,5,29,\"EV\",\"5040\",\"HPN\",\"ATL\",-4.00,10.00,0.00,\"\",0.00,147.00,115.00,780.00,,,,,,\n2015,5,7,\"EV\",\"5040\",\"HPN\",\"ATL\",-6.00,-12.00,0.00,\"\",0.00,127.00,106.00,780.00,,,,,,\n2015,5,31,\"EV\",\"5040\",\"HPN\",\"ATL\",38.00,78.00,0.00,\"\",0.00,173.00,132.00,780.00,32.00,0.00,40.00,0.00,6.00,\n2015,5,10,\"EV\",\"5040\",\"HPN\",\"ATL\",-6.00,-24.00,0.00,\"\",0.00,115.00,102.00,780.00,,,,,,\n2015,5,8,\"EV\",\"5040\",\"HPN\",\"ATL\",10.00,-9.00,0.00,\"\",0.00,114.00,95.00,780.00,,,,,,\n2015,5,22,\"EV\",\"5040\",\"HPN\",\"ATL\",-2.00,5.00,0.00,\"\",0.00,140.00,111.00,780.00,,,,,,\n2015,5,21,\"EV\",\"5040\",\"HPN\",\"ATL\",-5.00,5.00,0.00,\"\",0.00,143.00,121.00,780.00,,,,,,\n2015,5,18,\"EV\",\"5040\",\"HPN\",\"ATL\",70.00,88.00,0.00,\"\",0.00,151.00,122.00,780.00,10.00,0.00,18.00,0.00,60.00,\n2015,5,11,\"EV\",\"5040\",\"HPN\",\"ATL\",32.00,19.00,0.00,\"\",0.00,120.00,102.00,780.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,14,\"EV\",\"5040\",\"HPN\",\"ATL\",10.00,2.00,0.00,\"\",0.00,125.00,106.00,780.00,,,,,,\n2015,5,15,\"EV\",\"5040\",\"HPN\",\"ATL\",-3.00,-5.00,0.00,\"\",0.00,131.00,104.00,780.00,,,,,,\n2015,5,28,\"EV\",\"5040\",\"HPN\",\"ATL\",65.00,60.00,0.00,\"\",0.00,128.00,106.00,780.00,13.00,0.00,0.00,0.00,47.00,\n2015,5,4,\"EV\",\"5043\",\"LGA\",\"GSO\",-8.00,-31.00,0.00,\"\",0.00,90.00,63.00,461.00,,,,,,\n2015,5,14,\"EV\",\"5043\",\"LGA\",\"GSO\",-3.00,3.00,0.00,\"\",0.00,119.00,73.00,461.00,,,,,,\n2015,5,13,\"EV\",\"5047\",\"CLE\",\"LGA\",16.00,-6.00,0.00,\"\",0.00,76.00,60.00,419.00,,,,,,\n2015,5,4,\"EV\",\"5048\",\"BNA\",\"LGA\",1.00,12.00,0.00,\"\",0.00,141.00,124.00,764.00,,,,,,\n2015,5,14,\"EV\",\"5048\",\"BNA\",\"LGA\",-2.00,4.00,0.00,\"\",0.00,136.00,115.00,764.00,,,,,,\n2015,5,20,\"EV\",\"5111\",\"BUF\",\"DTW\",-9.00,-19.00,0.00,\"\",0.00,63.00,48.00,241.00,,,,,,\n2015,5,11,\"EV\",\"5111\",\"BUF\",\"DTW\",-5.00,-19.00,0.00,\"\",0.00,59.00,41.00,241.00,,,,,,\n2015,5,22,\"EV\",\"5111\",\"BUF\",\"DTW\",-5.00,-16.00,0.00,\"\",0.00,62.00,47.00,241.00,,,,,,\n2015,5,12,\"EV\",\"5111\",\"BUF\",\"DTW\",-3.00,-13.00,0.00,\"\",0.00,63.00,45.00,241.00,,,,,,\n2015,5,21,\"EV\",\"5111\",\"BUF\",\"DTW\",-3.00,10.00,0.00,\"\",0.00,86.00,45.00,241.00,,,,,,\n2015,5,13,\"EV\",\"5111\",\"BUF\",\"DTW\",-1.00,2.00,0.00,\"\",0.00,76.00,57.00,241.00,,,,,,\n2015,5,14,\"EV\",\"5111\",\"BUF\",\"DTW\",-7.00,-9.00,0.00,\"\",0.00,71.00,51.00,241.00,,,,,,\n2015,5,15,\"EV\",\"5111\",\"BUF\",\"DTW\",-5.00,-14.00,0.00,\"\",0.00,64.00,47.00,241.00,,,,,,\n2015,5,5,\"EV\",\"5111\",\"BUF\",\"DTW\",31.00,21.00,0.00,\"\",0.00,63.00,46.00,241.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,29,\"EV\",\"5111\",\"DTW\",\"BUF\",-8.00,-9.00,0.00,\"\",0.00,70.00,48.00,241.00,,,,,,\n2015,5,4,\"EV\",\"5111\",\"DTW\",\"BUF\",-5.00,-15.00,0.00,\"\",0.00,61.00,44.00,241.00,,,,,,\n2015,5,26,\"EV\",\"5111\",\"DTW\",\"BUF\",65.00,59.00,0.00,\"\",0.00,65.00,42.00,241.00,59.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"EV\",\"5111\",\"DTW\",\"BUF\",-9.00,-17.00,0.00,\"\",0.00,63.00,42.00,241.00,,,,,,\n2015,5,27,\"EV\",\"5111\",\"DTW\",\"BUF\",-3.00,-3.00,0.00,\"\",0.00,71.00,44.00,241.00,,,,,,\n2015,5,6,\"EV\",\"5111\",\"DTW\",\"BUF\",-2.00,-15.00,0.00,\"\",0.00,58.00,37.00,241.00,,,,,,\n2015,5,28,\"EV\",\"5111\",\"DTW\",\"BUF\",-3.00,-9.00,0.00,\"\",0.00,65.00,43.00,241.00,,,,,,\n2015,5,18,\"EV\",\"5111\",\"DTW\",\"BUF\",-5.00,-10.00,0.00,\"\",0.00,66.00,46.00,241.00,,,,,,\n2015,5,8,\"EV\",\"5111\",\"DTW\",\"BUF\",-3.00,-15.00,0.00,\"\",0.00,59.00,40.00,241.00,,,,,,\n2015,5,21,\"EV\",\"5111\",\"DTW\",\"BUF\",-9.00,-18.00,0.00,\"\",0.00,62.00,43.00,241.00,,,,,,\n2015,5,11,\"EV\",\"5111\",\"DTW\",\"BUF\",-5.00,-17.00,0.00,\"\",0.00,59.00,38.00,241.00,,,,,,\n2015,5,20,\"EV\",\"5111\",\"DTW\",\"BUF\",-7.00,-13.00,0.00,\"\",0.00,65.00,44.00,241.00,,,,,,\n2015,5,12,\"EV\",\"5111\",\"DTW\",\"BUF\",-2.00,-14.00,0.00,\"\",0.00,59.00,37.00,241.00,,,,,,\n2015,5,22,\"EV\",\"5111\",\"DTW\",\"BUF\",-4.00,-17.00,0.00,\"\",0.00,58.00,39.00,241.00,,,,,,\n2015,5,13,\"EV\",\"5111\",\"DTW\",\"BUF\",-3.00,-16.00,0.00,\"\",0.00,58.00,43.00,241.00,,,,,,\n2015,5,1,\"EV\",\"5111\",\"DTW\",\"BUF\",73.00,64.00,0.00,\"\",0.00,62.00,41.00,241.00,47.00,0.00,0.00,0.00,17.00,\n2015,5,19,\"EV\",\"5111\",\"DTW\",\"BUF\",18.00,7.00,0.00,\"\",0.00,60.00,43.00,241.00,,,,,,\n2015,5,15,\"EV\",\"5111\",\"DTW\",\"BUF\",8.00,13.00,0.00,\"\",0.00,76.00,43.00,241.00,,,,,,\n2015,5,14,\"EV\",\"5111\",\"DTW\",\"BUF\",-4.00,-6.00,0.00,\"\",0.00,69.00,43.00,241.00,,,,,,\n2015,5,5,\"EV\",\"5111\",\"DTW\",\"BUF\",55.00,57.00,0.00,\"\",0.00,73.00,40.00,241.00,32.00,0.00,2.00,0.00,23.00,\n2015,5,1,\"EV\",\"5115\",\"CLE\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,88.00,68.00,419.00,,,,,,\n2015,5,25,\"EV\",\"5115\",\"CLE\",\"LGA\",15.00,32.00,0.00,\"\",0.00,109.00,67.00,419.00,15.00,0.00,17.00,0.00,0.00,\n2015,5,17,\"EV\",\"5115\",\"CLE\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,81.00,66.00,419.00,,,,,,\n2015,5,29,\"EV\",\"5115\",\"CLE\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,95.00,73.00,419.00,,,,,,\n2015,5,26,\"EV\",\"5115\",\"CLE\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,92.00,71.00,419.00,,,,,,\n2015,5,4,\"EV\",\"5115\",\"CLE\",\"LGA\",-10.00,-14.00,0.00,\"\",0.00,88.00,67.00,419.00,,,,,,\n2015,5,5,\"EV\",\"5115\",\"CLE\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,86.00,68.00,419.00,,,,,,\n2015,5,7,\"EV\",\"5115\",\"CLE\",\"LGA\",-9.00,-13.00,0.00,\"\",0.00,88.00,68.00,419.00,,,,,,\n2015,5,31,\"EV\",\"5115\",\"CLE\",\"LGA\",-7.00,7.00,0.00,\"\",0.00,106.00,81.00,419.00,,,,,,\n2015,5,6,\"EV\",\"5115\",\"CLE\",\"LGA\",-3.00,7.00,0.00,\"\",0.00,102.00,62.00,419.00,,,,,,\n2015,5,8,\"EV\",\"5115\",\"CLE\",\"LGA\",-5.00,6.00,0.00,\"\",0.00,103.00,75.00,419.00,,,,,,\n2015,5,11,\"EV\",\"5115\",\"CLE\",\"LGA\",-6.00,,0.00,\"\",1.00,,,419.00,,,,,,\n2015,5,21,\"EV\",\"5115\",\"CLE\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,86.00,62.00,419.00,,,,,,\n2015,5,19,\"EV\",\"5115\",\"CLE\",\"LGA\",66.00,63.00,0.00,\"\",0.00,89.00,68.00,419.00,63.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"EV\",\"5115\",\"CLE\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,78.00,61.00,419.00,,,,,,\n2015,5,22,\"EV\",\"5115\",\"CLE\",\"LGA\",0.00,28.00,0.00,\"\",0.00,120.00,68.00,419.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,15,\"EV\",\"5115\",\"CLE\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,85.00,66.00,419.00,,,,,,\n2015,5,14,\"EV\",\"5115\",\"CLE\",\"LGA\",70.00,69.00,0.00,\"\",0.00,91.00,70.00,419.00,0.00,0.00,0.00,0.00,69.00,\n2015,5,13,\"EV\",\"5115\",\"CLE\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,89.00,62.00,419.00,,,,,,\n2015,5,12,\"EV\",\"5115\",\"CLE\",\"LGA\",-6.00,-2.00,0.00,\"\",0.00,96.00,69.00,419.00,,,,,,\n2015,5,10,\"EV\",\"5115\",\"CLE\",\"LGA\",26.00,41.00,0.00,\"\",0.00,107.00,72.00,419.00,26.00,0.00,15.00,0.00,0.00,\n2015,5,18,\"EV\",\"5115\",\"CLE\",\"LGA\",,,1.00,\"B\",0.00,,,419.00,,,,,,\n2015,5,27,\"EV\",\"5115\",\"CLE\",\"LGA\",,,1.00,\"B\",0.00,,,419.00,,,,,,\n2015,5,28,\"EV\",\"5115\",\"CLE\",\"LGA\",,,1.00,\"A\",0.00,,,419.00,,,,,,\n2015,5,3,\"EV\",\"5115\",\"SDF\",\"LGA\",-10.00,-18.00,0.00,\"\",0.00,125.00,101.00,659.00,,,,,,\n2015,5,1,\"EV\",\"5117\",\"BUF\",\"DTW\",-2.00,-14.00,0.00,\"\",0.00,63.00,48.00,241.00,,,,,,\n2015,5,4,\"EV\",\"5117\",\"BUF\",\"DTW\",-7.00,-18.00,0.00,\"\",0.00,64.00,45.00,241.00,,,,,,\n2015,5,7,\"EV\",\"5117\",\"BUF\",\"DTW\",-9.00,-25.00,0.00,\"\",0.00,59.00,40.00,241.00,,,,,,\n2015,5,8,\"EV\",\"5117\",\"BUF\",\"DTW\",-12.00,-21.00,0.00,\"\",0.00,66.00,39.00,241.00,,,,,,\n2015,5,10,\"EV\",\"5117\",\"BUF\",\"DTW\",-5.00,-22.00,0.00,\"\",0.00,58.00,40.00,241.00,,,,,,\n2015,5,11,\"EV\",\"5117\",\"BUF\",\"DTW\",-10.00,-27.00,0.00,\"\",0.00,58.00,41.00,241.00,,,,,,\n2015,5,14,\"EV\",\"5117\",\"BUF\",\"DTW\",-4.00,-5.00,0.00,\"\",0.00,74.00,51.00,241.00,,,,,,\n2015,5,15,\"EV\",\"5117\",\"BUF\",\"DTW\",-3.00,-14.00,0.00,\"\",0.00,64.00,46.00,241.00,,,,,,\n2015,5,1,\"EV\",\"5117\",\"DTW\",\"BUF\",17.00,9.00,0.00,\"\",0.00,57.00,40.00,241.00,,,,,,\n2015,5,4,\"EV\",\"5117\",\"DTW\",\"BUF\",-4.00,-10.00,0.00,\"\",0.00,59.00,41.00,241.00,,,,,,\n2015,5,7,\"EV\",\"5117\",\"DTW\",\"BUF\",-7.00,7.00,0.00,\"\",0.00,79.00,43.00,241.00,,,,,,\n2015,5,8,\"EV\",\"5117\",\"DTW\",\"BUF\",-6.00,-7.00,0.00,\"\",0.00,64.00,39.00,241.00,,,,,,\n2015,5,11,\"EV\",\"5117\",\"DTW\",\"BUF\",-6.00,-8.00,0.00,\"\",0.00,63.00,38.00,241.00,,,,,,\n2015,5,10,\"EV\",\"5117\",\"DTW\",\"BUF\",-5.00,-7.00,0.00,\"\",0.00,63.00,39.00,241.00,,,,,,\n2015,5,14,\"EV\",\"5117\",\"DTW\",\"BUF\",-3.00,-5.00,0.00,\"\",0.00,63.00,41.00,241.00,,,,,,\n2015,5,15,\"EV\",\"5117\",\"DTW\",\"BUF\",14.00,11.00,0.00,\"\",0.00,62.00,39.00,241.00,,,,,,\n2015,5,9,\"EV\",\"5117\",\"ELM\",\"DTW\",-5.00,-17.00,0.00,\"\",0.00,69.00,53.00,332.00,,,,,,\n2015,5,2,\"EV\",\"5117\",\"ELM\",\"DTW\",-7.00,-23.00,0.00,\"\",0.00,65.00,51.00,332.00,,,,,,\n2015,5,26,\"EV\",\"5117\",\"ELM\",\"DTW\",-5.00,-14.00,0.00,\"\",0.00,74.00,55.00,332.00,,,,,,\n2015,5,5,\"EV\",\"5117\",\"ELM\",\"DTW\",-7.00,-9.00,0.00,\"\",0.00,81.00,64.00,332.00,,,,,,\n2015,5,30,\"EV\",\"5117\",\"ELM\",\"DTW\",-2.00,7.00,0.00,\"\",0.00,90.00,62.00,332.00,,,,,,\n2015,5,6,\"EV\",\"5117\",\"ELM\",\"DTW\",-8.00,-21.00,0.00,\"\",0.00,70.00,55.00,332.00,,,,,,\n2015,5,19,\"EV\",\"5117\",\"ELM\",\"DTW\",-10.00,-11.00,0.00,\"\",0.00,82.00,57.00,332.00,,,,,,\n2015,5,20,\"EV\",\"5117\",\"ELM\",\"DTW\",-6.00,-21.00,0.00,\"\",0.00,68.00,58.00,332.00,,,,,,\n2015,5,23,\"EV\",\"5117\",\"ELM\",\"DTW\",-4.00,2.00,0.00,\"\",0.00,87.00,58.00,332.00,,,,,,\n2015,5,12,\"EV\",\"5117\",\"ELM\",\"DTW\",-5.00,-9.00,0.00,\"\",0.00,79.00,62.00,332.00,,,,,,\n2015,5,13,\"EV\",\"5117\",\"ELM\",\"DTW\",-5.00,-3.00,0.00,\"\",0.00,85.00,67.00,332.00,,,,,,\n2015,5,24,\"EV\",\"5117\",\"ELM\",\"DTW\",-7.00,-4.00,0.00,\"\",0.00,86.00,57.00,332.00,,,,,,\n2015,5,27,\"EV\",\"5117\",\"ELM\",\"DTW\",113.00,100.00,0.00,\"\",0.00,70.00,53.00,332.00,0.00,0.00,0.00,0.00,100.00,\n2015,5,16,\"EV\",\"5117\",\"ELM\",\"DTW\",-5.00,-7.00,0.00,\"\",0.00,79.00,58.00,332.00,,,,,,\n2015,5,23,\"EV\",\"5119\",\"LGA\",\"BTV\",0.00,-20.00,0.00,\"\",0.00,69.00,43.00,258.00,,,,,,\n2015,5,25,\"EV\",\"4909\",\"MSP\",\"ALB\",3.00,-19.00,0.00,\"\",0.00,129.00,117.00,980.00,,,,,,\n2015,5,2,\"EV\",\"4909\",\"MSP\",\"ALB\",0.00,-14.00,0.00,\"\",0.00,136.00,119.00,980.00,,,,,,\n2015,5,17,\"EV\",\"4909\",\"MSP\",\"ALB\",11.00,10.00,0.00,\"\",0.00,150.00,123.00,980.00,,,,,,\n2015,5,26,\"EV\",\"4909\",\"MSP\",\"ALB\",87.00,75.00,0.00,\"\",0.00,139.00,120.00,980.00,75.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"EV\",\"4909\",\"MSP\",\"ALB\",-1.00,-17.00,0.00,\"\",0.00,135.00,113.00,980.00,,,,,,\n2015,5,3,\"EV\",\"4909\",\"MSP\",\"ALB\",116.00,108.00,0.00,\"\",0.00,143.00,117.00,980.00,0.00,0.00,0.00,0.00,108.00,\n2015,5,5,\"EV\",\"4909\",\"MSP\",\"ALB\",-1.00,-14.00,0.00,\"\",0.00,138.00,118.00,980.00,,,,,,\n2015,5,1,\"EV\",\"4909\",\"MSP\",\"ALB\",63.00,52.00,0.00,\"\",0.00,140.00,119.00,980.00,0.00,0.00,0.00,0.00,52.00,\n2015,5,30,\"EV\",\"4909\",\"MSP\",\"ALB\",-4.00,-12.00,0.00,\"\",0.00,142.00,125.00,980.00,,,,,,\n2015,5,27,\"EV\",\"4909\",\"MSP\",\"ALB\",-3.00,-14.00,0.00,\"\",0.00,140.00,123.00,980.00,,,,,,\n2015,5,6,\"EV\",\"4909\",\"MSP\",\"ALB\",18.00,11.00,0.00,\"\",0.00,144.00,118.00,980.00,,,,,,\n2015,5,18,\"EV\",\"4909\",\"MSP\",\"ALB\",46.00,45.00,0.00,\"\",0.00,150.00,118.00,980.00,0.00,0.00,0.00,0.00,45.00,\n2015,5,7,\"EV\",\"4909\",\"MSP\",\"ALB\",-1.00,-4.00,0.00,\"\",0.00,148.00,125.00,980.00,,,,,,\n2015,5,28,\"EV\",\"4909\",\"MSP\",\"ALB\",0.00,-16.00,0.00,\"\",0.00,135.00,113.00,980.00,,,,,,\n2015,5,8,\"EV\",\"4909\",\"MSP\",\"ALB\",164.00,145.00,0.00,\"\",0.00,132.00,118.00,980.00,0.00,0.00,0.00,0.00,145.00,\n2015,5,31,\"EV\",\"4909\",\"MSP\",\"ALB\",54.00,37.00,0.00,\"\",0.00,134.00,115.00,980.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"EV\",\"4909\",\"MSP\",\"ALB\",-5.00,-23.00,0.00,\"\",0.00,133.00,115.00,980.00,,,,,,\n2015,5,9,\"EV\",\"4909\",\"MSP\",\"ALB\",-1.00,-10.00,0.00,\"\",0.00,137.00,121.00,980.00,,,,,,\n2015,5,23,\"EV\",\"4909\",\"MSP\",\"ALB\",-5.00,-27.00,0.00,\"\",0.00,128.00,106.00,980.00,,,,,,\n2015,5,10,\"EV\",\"4909\",\"MSP\",\"ALB\",40.00,32.00,0.00,\"\",0.00,143.00,117.00,980.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,22,\"EV\",\"4909\",\"MSP\",\"ALB\",-2.00,-21.00,0.00,\"\",0.00,132.00,111.00,980.00,,,,,,\n2015,5,21,\"EV\",\"4909\",\"MSP\",\"ALB\",-2.00,-18.00,0.00,\"\",0.00,135.00,121.00,980.00,,,,,,\n2015,5,12,\"EV\",\"4909\",\"MSP\",\"ALB\",-1.00,-24.00,0.00,\"\",0.00,128.00,112.00,980.00,,,,,,\n2015,5,24,\"EV\",\"4909\",\"MSP\",\"ALB\",-7.00,-11.00,0.00,\"\",0.00,143.00,114.00,980.00,,,,,,\n2015,5,15,\"EV\",\"4909\",\"MSP\",\"ALB\",-3.00,-25.00,0.00,\"\",0.00,129.00,112.00,980.00,,,,,,\n2015,5,16,\"EV\",\"4909\",\"MSP\",\"ALB\",-1.00,-19.00,0.00,\"\",0.00,132.00,116.00,980.00,,,,,,\n2015,5,29,\"EV\",\"4909\",\"MSP\",\"ALB\",205.00,187.00,0.00,\"\",0.00,133.00,119.00,980.00,0.00,0.00,0.00,0.00,187.00,\n2015,5,14,\"EV\",\"4909\",\"MSP\",\"ALB\",31.00,18.00,0.00,\"\",0.00,138.00,116.00,980.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,19,\"EV\",\"4909\",\"MSP\",\"ALB\",141.00,117.00,0.00,\"\",0.00,127.00,106.00,980.00,0.00,0.00,0.00,0.00,117.00,\n2015,5,13,\"EV\",\"4909\",\"MSP\",\"ALB\",30.00,10.00,0.00,\"\",0.00,131.00,114.00,980.00,,,,,,\n2015,5,11,\"EV\",\"4909\",\"MSP\",\"ALB\",,,1.00,\"B\",0.00,,,980.00,,,,,,\n2015,5,10,\"EV\",\"4910\",\"LGA\",\"SAV\",-3.00,-23.00,0.00,\"\",0.00,121.00,100.00,722.00,,,,,,\n2015,5,25,\"EV\",\"4912\",\"PIT\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,89.00,59.00,335.00,,,,,,\n2015,5,7,\"EV\",\"4915\",\"MKE\",\"LGA\",-12.00,-22.00,0.00,\"\",0.00,124.00,108.00,738.00,,,,,,\n2015,5,8,\"EV\",\"4915\",\"MKE\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,118.00,101.00,738.00,,,,,,\n2015,5,29,\"EV\",\"4916\",\"HPN\",\"ATL\",-4.00,-18.00,0.00,\"\",0.00,124.00,107.00,780.00,,,,,,\n2015,5,2,\"EV\",\"4916\",\"HPN\",\"ATL\",-4.00,-15.00,0.00,\"\",0.00,125.00,108.00,780.00,,,,,,\n2015,5,17,\"EV\",\"4916\",\"HPN\",\"ATL\",-3.00,-11.00,0.00,\"\",0.00,130.00,108.00,780.00,,,,,,\n2015,5,1,\"EV\",\"4916\",\"HPN\",\"ATL\",-8.00,-19.00,0.00,\"\",0.00,127.00,103.00,780.00,,,,,,\n2015,5,25,\"EV\",\"4916\",\"HPN\",\"ATL\",-6.00,-3.00,0.00,\"\",0.00,141.00,120.00,780.00,,,,,,\n2015,5,3,\"EV\",\"4916\",\"HPN\",\"ATL\",0.00,-15.00,0.00,\"\",0.00,123.00,108.00,780.00,,,,,,\n2015,5,4,\"EV\",\"4916\",\"HPN\",\"ATL\",-5.00,-22.00,0.00,\"\",0.00,121.00,101.00,780.00,,,,,,\n2015,5,26,\"EV\",\"4916\",\"HPN\",\"ATL\",3.00,2.00,0.00,\"\",0.00,137.00,110.00,780.00,,,,,,\n2015,5,30,\"EV\",\"4916\",\"HPN\",\"ATL\",-4.00,-16.00,0.00,\"\",0.00,124.00,104.00,780.00,,,,,,\n2015,5,6,\"EV\",\"4916\",\"HPN\",\"ATL\",-5.00,-18.00,0.00,\"\",0.00,125.00,108.00,780.00,,,,,,\n2015,5,18,\"EV\",\"4916\",\"HPN\",\"ATL\",-1.00,-13.00,0.00,\"\",0.00,126.00,100.00,780.00,,,,,,\n2015,5,5,\"EV\",\"4916\",\"HPN\",\"ATL\",81.00,62.00,0.00,\"\",0.00,119.00,102.00,780.00,62.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"EV\",\"4916\",\"HPN\",\"ATL\",-7.00,-10.00,0.00,\"\",0.00,135.00,110.00,780.00,,,,,,\n2015,5,19,\"EV\",\"4916\",\"HPN\",\"ATL\",-3.00,-8.00,0.00,\"\",0.00,133.00,105.00,780.00,,,,,,\n2015,5,31,\"EV\",\"4916\",\"HPN\",\"ATL\",-1.00,-18.00,0.00,\"\",0.00,121.00,105.00,780.00,,,,,,\n2015,5,10,\"EV\",\"4916\",\"HPN\",\"ATL\",-4.00,-15.00,0.00,\"\",0.00,127.00,99.00,780.00,,,,,,\n2015,5,8,\"EV\",\"4916\",\"HPN\",\"ATL\",0.00,0.00,0.00,\"\",0.00,138.00,99.00,780.00,,,,,,\n2015,5,7,\"EV\",\"4916\",\"HPN\",\"ATL\",27.00,33.00,0.00,\"\",0.00,144.00,106.00,780.00,27.00,0.00,6.00,0.00,0.00,\n2015,5,20,\"EV\",\"4916\",\"HPN\",\"ATL\",0.00,-12.00,0.00,\"\",0.00,126.00,109.00,780.00,,,,,,\n2015,5,9,\"EV\",\"4916\",\"HPN\",\"ATL\",-9.00,-27.00,0.00,\"\",0.00,118.00,99.00,780.00,,,,,,\n2015,5,21,\"EV\",\"4916\",\"HPN\",\"ATL\",-5.00,-7.00,0.00,\"\",0.00,136.00,118.00,780.00,,,,,,\n2015,5,22,\"EV\",\"4916\",\"HPN\",\"ATL\",-3.00,-19.00,0.00,\"\",0.00,122.00,108.00,780.00,,,,,,\n2015,5,11,\"EV\",\"4916\",\"HPN\",\"ATL\",-6.00,-14.00,0.00,\"\",0.00,130.00,104.00,780.00,,,,,,\n2015,5,23,\"EV\",\"4916\",\"HPN\",\"ATL\",-5.00,-18.00,0.00,\"\",0.00,123.00,109.00,780.00,,,,,,\n2015,5,12,\"EV\",\"4916\",\"HPN\",\"ATL\",-5.00,-19.00,0.00,\"\",0.00,124.00,106.00,780.00,,,,,,\n2015,5,14,\"EV\",\"4916\",\"HPN\",\"ATL\",-3.00,-14.00,0.00,\"\",0.00,127.00,104.00,780.00,,,,,,\n2015,5,13,\"EV\",\"4916\",\"HPN\",\"ATL\",-5.00,-14.00,0.00,\"\",0.00,129.00,111.00,780.00,,,,,,\n2015,5,15,\"EV\",\"4916\",\"HPN\",\"ATL\",-5.00,-11.00,0.00,\"\",0.00,132.00,116.00,780.00,,,,,,\n2015,5,24,\"EV\",\"4916\",\"HPN\",\"ATL\",-3.00,15.00,0.00,\"\",0.00,156.00,117.00,780.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,16,\"EV\",\"4916\",\"HPN\",\"ATL\",-7.00,-22.00,0.00,\"\",0.00,121.00,104.00,780.00,,,,,,\n2015,5,27,\"EV\",\"4916\",\"HPN\",\"ATL\",,,1.00,\"B\",0.00,,,780.00,,,,,,\n2015,5,1,\"EV\",\"4921\",\"PIT\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,77.00,63.00,335.00,,,,,,\n2015,5,25,\"EV\",\"4921\",\"PIT\",\"LGA\",14.00,26.00,0.00,\"\",0.00,97.00,62.00,335.00,0.00,0.00,12.00,0.00,14.00,\n2015,5,26,\"EV\",\"4921\",\"PIT\",\"LGA\",14.00,-3.00,0.00,\"\",0.00,70.00,55.00,335.00,,,,,,\n2015,5,4,\"EV\",\"4921\",\"PIT\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,73.00,59.00,335.00,,,,,,\n2015,5,27,\"EV\",\"4921\",\"PIT\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,83.00,58.00,335.00,,,,,,\n2015,5,6,\"EV\",\"4921\",\"PIT\",\"LGA\",13.00,-10.00,0.00,\"\",0.00,64.00,51.00,335.00,,,,,,\n2015,5,5,\"EV\",\"4921\",\"PIT\",\"LGA\",-10.00,-27.00,0.00,\"\",0.00,70.00,54.00,335.00,,,,,,\n2015,5,8,\"EV\",\"4921\",\"PIT\",\"LGA\",-3.00,20.00,0.00,\"\",0.00,108.00,57.00,335.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,29,\"EV\",\"4921\",\"PIT\",\"LGA\",40.00,35.00,0.00,\"\",0.00,80.00,55.00,335.00,0.00,0.00,0.00,0.00,35.00,\n2015,5,21,\"EV\",\"4921\",\"PIT\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,77.00,58.00,335.00,,,,,,\n2015,5,22,\"EV\",\"4921\",\"PIT\",\"LGA\",-8.00,-7.00,0.00,\"\",0.00,86.00,56.00,335.00,,,,,,\n2015,5,20,\"EV\",\"4921\",\"PIT\",\"LGA\",1.00,-21.00,0.00,\"\",0.00,65.00,51.00,335.00,,,,,,\n2015,5,11,\"EV\",\"4921\",\"PIT\",\"LGA\",-4.00,7.00,0.00,\"\",0.00,96.00,65.00,335.00,,,,,,\n2015,5,13,\"EV\",\"4921\",\"PIT\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,73.00,55.00,335.00,,,,,,\n2015,5,12,\"EV\",\"4921\",\"PIT\",\"LGA\",-10.00,-32.00,0.00,\"\",0.00,65.00,52.00,335.00,,,,,,\n2015,5,14,\"EV\",\"4921\",\"PIT\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,77.00,56.00,335.00,,,,,,\n2015,5,19,\"EV\",\"4921\",\"PIT\",\"LGA\",54.00,37.00,0.00,\"\",0.00,70.00,49.00,335.00,10.00,0.00,0.00,0.00,27.00,\n2015,5,15,\"EV\",\"4921\",\"PIT\",\"LGA\",18.00,9.00,0.00,\"\",0.00,76.00,56.00,335.00,,,,,,\n2015,5,28,\"EV\",\"4921\",\"PIT\",\"LGA\",65.00,55.00,0.00,\"\",0.00,75.00,58.00,335.00,0.00,0.00,0.00,0.00,55.00,\n2015,5,7,\"EV\",\"4921\",\"PIT\",\"LGA\",80.00,75.00,0.00,\"\",0.00,80.00,59.00,335.00,0.00,0.00,0.00,0.00,75.00,\n2015,5,18,\"EV\",\"4921\",\"PIT\",\"LGA\",,,1.00,\"B\",0.00,,,335.00,,,,,,\n2015,5,18,\"EV\",\"4922\",\"MCI\",\"LGA\",,,1.00,\"B\",0.00,,,1107.00,,,,,,\n2015,5,25,\"EV\",\"4922\",\"MCI\",\"LGA\",12.00,-5.00,0.00,\"\",0.00,160.00,141.00,1107.00,,,,,,\n2015,5,3,\"EV\",\"4922\",\"MCI\",\"LGA\",-8.00,-18.00,0.00,\"\",0.00,171.00,154.00,1107.00,,,,,,\n2015,5,1,\"EV\",\"4922\",\"MCI\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,174.00,153.00,1107.00,,,,,,\n2015,5,17,\"EV\",\"4922\",\"MCI\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,168.00,145.00,1107.00,,,,,,\n2015,5,4,\"EV\",\"4922\",\"MCI\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,163.00,145.00,1107.00,,,,,,\n2015,5,29,\"EV\",\"4922\",\"MCI\",\"LGA\",2.00,-2.00,0.00,\"\",0.00,173.00,148.00,1107.00,,,,,,\n2015,5,26,\"EV\",\"4922\",\"MCI\",\"LGA\",5.00,-1.00,0.00,\"\",0.00,171.00,148.00,1107.00,,,,,,\n2015,5,5,\"EV\",\"4922\",\"MCI\",\"LGA\",12.00,10.00,0.00,\"\",0.00,175.00,147.00,1107.00,,,,,,\n2015,5,31,\"EV\",\"4922\",\"MCI\",\"LGA\",14.00,,0.00,\"\",1.00,,,1107.00,,,,,,\n2015,5,7,\"EV\",\"4922\",\"MCI\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,172.00,146.00,1107.00,,,,,,\n2015,5,8,\"EV\",\"4922\",\"MCI\",\"LGA\",-9.00,-19.00,0.00,\"\",0.00,167.00,145.00,1107.00,,,,,,\n2015,5,28,\"EV\",\"4922\",\"MCI\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,173.00,145.00,1107.00,,,,,,\n2015,5,6,\"EV\",\"4922\",\"MCI\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,167.00,144.00,1107.00,,,,,,\n2015,5,27,\"EV\",\"4922\",\"MCI\",\"LGA\",33.00,,0.00,\"\",1.00,,,1107.00,,,,,,\n2015,5,10,\"EV\",\"4922\",\"MCI\",\"LGA\",1.00,22.00,0.00,\"\",0.00,202.00,177.00,1107.00,1.00,0.00,21.00,0.00,0.00,\n2015,5,12,\"EV\",\"4922\",\"MCI\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,168.00,133.00,1107.00,,,,,,\n2015,5,11,\"EV\",\"4922\",\"MCI\",\"LGA\",-2.00,13.00,0.00,\"\",0.00,192.00,136.00,1107.00,,,,,,\n2015,5,21,\"EV\",\"4922\",\"MCI\",\"LGA\",-4.00,-28.00,0.00,\"\",0.00,153.00,133.00,1107.00,,,,,,\n2015,5,22,\"EV\",\"4922\",\"MCI\",\"LGA\",0.00,-25.00,0.00,\"\",0.00,152.00,134.00,1107.00,,,,,,\n2015,5,13,\"EV\",\"4922\",\"MCI\",\"LGA\",6.00,-13.00,0.00,\"\",0.00,158.00,136.00,1107.00,,,,,,\n2015,5,14,\"EV\",\"4922\",\"MCI\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,165.00,141.00,1107.00,,,,,,\n2015,5,15,\"EV\",\"4922\",\"MCI\",\"LGA\",14.00,-1.00,0.00,\"\",0.00,162.00,144.00,1107.00,,,,,,\n2015,5,19,\"EV\",\"4922\",\"MCI\",\"LGA\",81.00,85.00,0.00,\"\",0.00,181.00,134.00,1107.00,45.00,0.00,4.00,0.00,36.00,\n2015,5,20,\"EV\",\"4922\",\"MCI\",\"LGA\",63.00,28.00,0.00,\"\",0.00,142.00,128.00,1107.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,24,\"EV\",\"4923\",\"BNA\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,139.00,119.00,764.00,,,,,,\n2015,5,10,\"EV\",\"4928\",\"BUF\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,69.00,50.00,292.00,,,,,,\n2015,5,25,\"EV\",\"4929\",\"LGA\",\"PIT\",-8.00,-11.00,0.00,\"\",0.00,94.00,55.00,335.00,,,,,,\n2015,5,25,\"EV\",\"4934\",\"CLE\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,95.00,71.00,419.00,,,,,,\n2015,5,17,\"EV\",\"4934\",\"CLE\",\"LGA\",44.00,47.00,0.00,\"\",0.00,98.00,66.00,419.00,44.00,0.00,3.00,0.00,0.00,\n2015,5,26,\"EV\",\"4934\",\"CLE\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,94.00,69.00,419.00,,,,,,\n2015,5,3,\"EV\",\"4934\",\"CLE\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,94.00,72.00,419.00,,,,,,\n2015,5,4,\"EV\",\"4934\",\"CLE\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,87.00,67.00,419.00,,,,,,\n2015,5,5,\"EV\",\"4934\",\"CLE\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,91.00,68.00,419.00,,,,,,\n2015,5,28,\"EV\",\"4934\",\"CLE\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,85.00,67.00,419.00,,,,,,\n2015,5,7,\"EV\",\"4934\",\"CLE\",\"LGA\",-4.00,4.00,0.00,\"\",0.00,103.00,74.00,419.00,,,,,,\n2015,5,20,\"EV\",\"4934\",\"CLE\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,78.00,61.00,419.00,,,,,,\n2015,5,19,\"EV\",\"4934\",\"CLE\",\"LGA\",51.00,52.00,0.00,\"\",0.00,96.00,63.00,419.00,51.00,0.00,1.00,0.00,0.00,\n2015,5,11,\"EV\",\"4934\",\"CLE\",\"LGA\",130.00,124.00,0.00,\"\",0.00,89.00,71.00,419.00,124.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"EV\",\"4934\",\"CLE\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,87.00,66.00,419.00,,,,,,\n2015,5,29,\"EV\",\"4934\",\"CLE\",\"LGA\",101.00,91.00,0.00,\"\",0.00,85.00,69.00,419.00,52.00,0.00,0.00,0.00,39.00,\n2015,5,22,\"EV\",\"4934\",\"CLE\",\"LGA\",70.00,70.00,0.00,\"\",0.00,95.00,63.00,419.00,0.00,0.00,0.00,0.00,70.00,\n2015,5,12,\"EV\",\"4934\",\"CLE\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,82.00,62.00,419.00,,,,,,\n2015,5,15,\"EV\",\"4934\",\"CLE\",\"LGA\",37.00,24.00,0.00,\"\",0.00,82.00,61.00,419.00,0.00,0.00,0.00,0.00,24.00,\n2015,5,10,\"EV\",\"4934\",\"CLE\",\"LGA\",245.00,254.00,0.00,\"\",0.00,104.00,68.00,419.00,245.00,0.00,9.00,0.00,0.00,\n2015,5,8,\"EV\",\"4934\",\"CLE\",\"LGA\",34.00,29.00,0.00,\"\",0.00,90.00,72.00,419.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"EV\",\"4934\",\"CLE\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,84.00,67.00,419.00,,,,,,\n2015,5,18,\"EV\",\"4934\",\"CLE\",\"LGA\",,,1.00,\"B\",0.00,,,419.00,,,,,,\n2015,5,27,\"EV\",\"4934\",\"CLE\",\"LGA\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,31,\"EV\",\"4934\",\"CLE\",\"LGA\",,,1.00,\"A\",0.00,,,419.00,,,,,,\n2015,5,13,\"EV\",\"4934\",\"CLT\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,108.00,71.00,544.00,,,,,,\n2015,5,17,\"EV\",\"4939\",\"RIC\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,85.00,49.00,292.00,,,,,,\n2015,5,25,\"EV\",\"4939\",\"RIC\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,77.00,57.00,292.00,,,,,,\n2015,5,1,\"EV\",\"4939\",\"RIC\",\"LGA\",4.00,-3.00,0.00,\"\",0.00,73.00,54.00,292.00,,,,,,\n2015,5,3,\"EV\",\"4939\",\"RIC\",\"LGA\",-10.00,-9.00,0.00,\"\",0.00,81.00,54.00,292.00,,,,,,\n2015,5,26,\"EV\",\"4939\",\"RIC\",\"LGA\",11.00,7.00,0.00,\"\",0.00,76.00,52.00,292.00,,,,,,\n2015,5,29,\"EV\",\"4939\",\"RIC\",\"LGA\",2.00,4.00,0.00,\"\",0.00,82.00,46.00,292.00,,,,,,\n2015,5,5,\"EV\",\"4939\",\"RIC\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,75.00,54.00,292.00,,,,,,\n2015,5,6,\"EV\",\"4939\",\"RIC\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,67.00,50.00,292.00,,,,,,\n2015,5,27,\"EV\",\"4939\",\"RIC\",\"LGA\",2.00,-10.00,0.00,\"\",0.00,68.00,47.00,292.00,,,,,,\n2015,5,7,\"EV\",\"4939\",\"RIC\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,75.00,56.00,292.00,,,,,,\n2015,5,19,\"EV\",\"4939\",\"RIC\",\"LGA\",86.00,79.00,0.00,\"\",0.00,73.00,43.00,292.00,0.00,0.00,79.00,0.00,0.00,\n2015,5,8,\"EV\",\"4939\",\"RIC\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,70.00,52.00,292.00,,,,,,\n2015,5,31,\"EV\",\"4939\",\"RIC\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,84.00,52.00,292.00,,,,,,\n2015,5,20,\"EV\",\"4939\",\"RIC\",\"LGA\",-7.00,-24.00,0.00,\"\",0.00,63.00,43.00,292.00,,,,,,\n2015,5,10,\"EV\",\"4939\",\"RIC\",\"LGA\",1.00,2.00,0.00,\"\",0.00,81.00,50.00,292.00,,,,,,\n2015,5,22,\"EV\",\"4939\",\"RIC\",\"LGA\",9.00,-2.00,0.00,\"\",0.00,69.00,43.00,292.00,,,,,,\n2015,5,24,\"EV\",\"4939\",\"RIC\",\"LGA\",84.00,81.00,0.00,\"\",0.00,75.00,53.00,292.00,81.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"EV\",\"4939\",\"RIC\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,80.00,52.00,292.00,,,,,,\n2015,5,13,\"EV\",\"4939\",\"RIC\",\"LGA\",11.00,1.00,0.00,\"\",0.00,70.00,46.00,292.00,,,,,,\n2015,5,15,\"EV\",\"4939\",\"RIC\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,77.00,49.00,292.00,,,,,,\n2015,5,12,\"EV\",\"4939\",\"RIC\",\"LGA\",125.00,112.00,0.00,\"\",0.00,67.00,45.00,292.00,0.00,0.00,0.00,0.00,112.00,\n2015,5,21,\"EV\",\"4939\",\"RIC\",\"LGA\",2.00,12.00,0.00,\"\",0.00,90.00,48.00,292.00,,,,,,\n2015,5,11,\"EV\",\"4939\",\"RIC\",\"LGA\",20.00,15.00,0.00,\"\",0.00,75.00,51.00,292.00,7.00,0.00,0.00,0.00,8.00,\n2015,5,4,\"EV\",\"4939\",\"RIC\",\"LGA\",26.00,13.00,0.00,\"\",0.00,67.00,50.00,292.00,,,,,,\n2015,5,28,\"EV\",\"4939\",\"RIC\",\"LGA\",,,1.00,\"B\",0.00,,,292.00,,,,,,\n2015,5,18,\"EV\",\"4939\",\"RIC\",\"LGA\",,,1.00,\"B\",0.00,,,292.00,,,,,,\n2015,5,4,\"EV\",\"4941\",\"RIC\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,75.00,55.00,292.00,,,,,,\n2015,5,29,\"EV\",\"4941\",\"RIC\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,74.00,49.00,292.00,,,,,,\n2015,5,1,\"EV\",\"4941\",\"RIC\",\"LGA\",1.00,-5.00,0.00,\"\",0.00,81.00,53.00,292.00,,,,,,\n2015,5,17,\"EV\",\"4941\",\"RIC\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,75.00,51.00,292.00,,,,,,\n2015,5,25,\"EV\",\"4941\",\"RIC\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,69.00,50.00,292.00,,,,,,\n2015,5,3,\"EV\",\"4941\",\"RIC\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,82.00,50.00,292.00,,,,,,\n2015,5,31,\"EV\",\"4941\",\"RIC\",\"LGA\",-3.00,,0.00,\"\",1.00,,,292.00,,,,,,\n2015,5,6,\"EV\",\"4941\",\"RIC\",\"LGA\",-8.00,-28.00,0.00,\"\",0.00,67.00,47.00,292.00,,,,,,\n2015,5,27,\"EV\",\"4941\",\"RIC\",\"LGA\",42.00,20.00,0.00,\"\",0.00,65.00,51.00,292.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"EV\",\"4941\",\"RIC\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,90.00,51.00,292.00,,,,,,\n2015,5,21,\"EV\",\"4941\",\"RIC\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,79.00,48.00,292.00,,,,,,\n2015,5,8,\"EV\",\"4941\",\"RIC\",\"LGA\",17.00,6.00,0.00,\"\",0.00,76.00,52.00,292.00,,,,,,\n2015,5,20,\"EV\",\"4941\",\"RIC\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,85.00,45.00,292.00,,,,,,\n2015,5,22,\"EV\",\"4941\",\"RIC\",\"LGA\",-8.00,-18.00,0.00,\"\",0.00,77.00,47.00,292.00,,,,,,\n2015,5,11,\"EV\",\"4941\",\"RIC\",\"LGA\",0.00,41.00,0.00,\"\",0.00,128.00,50.00,292.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,13,\"EV\",\"4941\",\"RIC\",\"LGA\",2.00,-20.00,0.00,\"\",0.00,65.00,49.00,292.00,,,,,,\n2015,5,14,\"EV\",\"4941\",\"RIC\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,85.00,54.00,292.00,,,,,,\n2015,5,15,\"EV\",\"4941\",\"RIC\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,85.00,50.00,292.00,,,,,,\n2015,5,7,\"EV\",\"4941\",\"RIC\",\"LGA\",73.00,57.00,0.00,\"\",0.00,71.00,51.00,292.00,0.00,0.00,0.00,0.00,57.00,\n2015,5,18,\"EV\",\"4941\",\"RIC\",\"LGA\",,,1.00,\"B\",0.00,,,292.00,,,,,,\n2015,5,28,\"EV\",\"4941\",\"RIC\",\"LGA\",,,1.00,\"A\",0.00,,,292.00,,,,,,\n2015,5,31,\"EV\",\"4942\",\"BUF\",\"LGA\",,,1.00,\"A\",0.00,,,292.00,,,,,,\n2015,5,17,\"EV\",\"4942\",\"BUF\",\"LGA\",-4.00,-25.00,0.00,\"\",0.00,64.00,49.00,292.00,,,,,,\n2015,5,3,\"EV\",\"4942\",\"BUF\",\"LGA\",-4.00,0.00,0.00,\"\",0.00,89.00,57.00,292.00,,,,,,\n2015,5,29,\"EV\",\"4942\",\"BUF\",\"LGA\",-17.00,-38.00,0.00,\"\",0.00,64.00,48.00,292.00,,,,,,\n2015,5,5,\"EV\",\"5053\",\"LGA\",\"IND\",-11.00,-36.00,0.00,\"\",0.00,123.00,91.00,660.00,,,,,,\n2015,5,1,\"EV\",\"5053\",\"LGA\",\"ROC\",8.00,-4.00,0.00,\"\",0.00,67.00,47.00,254.00,,,,,,\n2015,5,3,\"EV\",\"5053\",\"LGA\",\"ROC\",-5.00,-9.00,0.00,\"\",0.00,75.00,43.00,254.00,,,,,,\n2015,5,17,\"EV\",\"5053\",\"LGA\",\"ROC\",68.00,57.00,0.00,\"\",0.00,68.00,39.00,254.00,10.00,0.00,0.00,0.00,47.00,\n2015,5,25,\"EV\",\"5053\",\"LGA\",\"ROC\",27.00,9.00,0.00,\"\",0.00,61.00,43.00,254.00,,,,,,\n2015,5,26,\"EV\",\"5053\",\"LGA\",\"ROC\",97.00,81.00,0.00,\"\",0.00,63.00,40.00,254.00,0.00,0.00,0.00,0.00,81.00,\n2015,5,29,\"EV\",\"5053\",\"LGA\",\"ROC\",-5.00,-8.00,0.00,\"\",0.00,76.00,42.00,254.00,,,,,,\n2015,5,27,\"EV\",\"5053\",\"LGA\",\"ROC\",86.00,69.00,0.00,\"\",0.00,62.00,41.00,254.00,0.00,0.00,0.00,0.00,69.00,\n2015,5,4,\"EV\",\"5053\",\"LGA\",\"ROC\",-5.00,-5.00,0.00,\"\",0.00,79.00,44.00,254.00,,,,,,\n2015,5,6,\"EV\",\"5053\",\"LGA\",\"ROC\",-10.00,-29.00,0.00,\"\",0.00,60.00,42.00,254.00,,,,,,\n2015,5,18,\"EV\",\"5053\",\"LGA\",\"ROC\",27.00,95.00,0.00,\"\",0.00,147.00,59.00,254.00,27.00,0.00,68.00,0.00,0.00,\n2015,5,8,\"EV\",\"5053\",\"LGA\",\"ROC\",-14.00,-27.00,0.00,\"\",0.00,66.00,40.00,254.00,,,,,,\n2015,5,28,\"EV\",\"5053\",\"LGA\",\"ROC\",-4.00,-3.00,0.00,\"\",0.00,80.00,43.00,254.00,,,,,,\n2015,5,19,\"EV\",\"5053\",\"LGA\",\"ROC\",17.00,13.00,0.00,\"\",0.00,75.00,48.00,254.00,,,,,,\n2015,5,21,\"EV\",\"5053\",\"LGA\",\"ROC\",-4.00,-16.00,0.00,\"\",0.00,67.00,48.00,254.00,,,,,,\n2015,5,7,\"EV\",\"5053\",\"LGA\",\"ROC\",41.00,21.00,0.00,\"\",0.00,59.00,40.00,254.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,20,\"EV\",\"5053\",\"LGA\",\"ROC\",-7.00,7.00,0.00,\"\",0.00,93.00,48.00,254.00,,,,,,\n2015,5,22,\"EV\",\"5053\",\"LGA\",\"ROC\",3.00,5.00,0.00,\"\",0.00,81.00,46.00,254.00,,,,,,\n2015,5,14,\"EV\",\"5053\",\"LGA\",\"ROC\",2.00,-7.00,0.00,\"\",0.00,70.00,43.00,254.00,,,,,,\n2015,5,10,\"EV\",\"5053\",\"LGA\",\"ROC\",110.00,94.00,0.00,\"\",0.00,63.00,43.00,254.00,0.00,0.00,0.00,0.00,94.00,\n2015,5,13,\"EV\",\"5053\",\"LGA\",\"ROC\",109.00,95.00,0.00,\"\",0.00,65.00,44.00,254.00,95.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"EV\",\"5053\",\"LGA\",\"ROC\",4.00,-4.00,0.00,\"\",0.00,71.00,45.00,254.00,,,,,,\n2015,5,11,\"EV\",\"5053\",\"LGA\",\"ROC\",170.00,155.00,0.00,\"\",0.00,64.00,45.00,254.00,155.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"EV\",\"5053\",\"LGA\",\"ROC\",,,1.00,\"A\",0.00,,,254.00,,,,,,\n2015,5,25,\"EV\",\"5057\",\"LGA\",\"BNA\",-9.00,-25.00,0.00,\"\",0.00,134.00,111.00,764.00,,,,,,\n2015,5,2,\"EV\",\"5057\",\"LGA\",\"BNA\",-4.00,-22.00,0.00,\"\",0.00,139.00,104.00,764.00,,,,,,\n2015,5,9,\"EV\",\"5057\",\"LGA\",\"BNA\",-9.00,-23.00,0.00,\"\",0.00,143.00,102.00,764.00,,,,,,\n2015,5,26,\"EV\",\"5057\",\"LGA\",\"BNA\",-10.00,-34.00,0.00,\"\",0.00,126.00,112.00,764.00,,,,,,\n2015,5,3,\"EV\",\"5057\",\"LGA\",\"BNA\",-5.00,-31.00,0.00,\"\",0.00,126.00,102.00,764.00,,,,,,\n2015,5,5,\"EV\",\"5057\",\"LGA\",\"BNA\",-7.00,-11.00,0.00,\"\",0.00,146.00,106.00,764.00,,,,,,\n2015,5,4,\"EV\",\"5057\",\"LGA\",\"BNA\",-1.00,-13.00,0.00,\"\",0.00,138.00,101.00,764.00,,,,,,\n2015,5,29,\"EV\",\"5057\",\"LGA\",\"BNA\",-4.00,-20.00,0.00,\"\",0.00,134.00,105.00,764.00,,,,,,\n2015,5,30,\"EV\",\"5057\",\"LGA\",\"BNA\",-5.00,-15.00,0.00,\"\",0.00,147.00,105.00,764.00,,,,,,\n2015,5,7,\"EV\",\"5057\",\"LGA\",\"BNA\",-3.00,-22.00,0.00,\"\",0.00,131.00,107.00,764.00,,,,,,\n2015,5,28,\"EV\",\"5057\",\"LGA\",\"BNA\",59.00,49.00,0.00,\"\",0.00,140.00,103.00,764.00,0.00,0.00,0.00,0.00,49.00,\n2015,5,8,\"EV\",\"5057\",\"LGA\",\"BNA\",4.00,12.00,0.00,\"\",0.00,158.00,102.00,764.00,,,,,,\n2015,5,21,\"EV\",\"5057\",\"LGA\",\"BNA\",-12.00,-14.00,0.00,\"\",0.00,148.00,121.00,764.00,,,,,,\n2015,5,11,\"EV\",\"5057\",\"LGA\",\"BNA\",-3.00,-13.00,0.00,\"\",0.00,140.00,110.00,764.00,,,,,,\n2015,5,22,\"EV\",\"5057\",\"LGA\",\"BNA\",-8.00,-13.00,0.00,\"\",0.00,145.00,120.00,764.00,,,,,,\n2015,5,12,\"EV\",\"5057\",\"LGA\",\"BNA\",-1.00,3.00,0.00,\"\",0.00,154.00,128.00,764.00,,,,,,\n2015,5,13,\"EV\",\"5057\",\"LGA\",\"BNA\",19.00,28.00,0.00,\"\",0.00,161.00,108.00,764.00,19.00,0.00,9.00,0.00,0.00,\n2015,5,23,\"EV\",\"5057\",\"LGA\",\"BNA\",-4.00,7.00,0.00,\"\",0.00,168.00,109.00,764.00,,,,,,\n2015,5,14,\"EV\",\"5057\",\"LGA\",\"BNA\",12.00,20.00,0.00,\"\",0.00,158.00,112.00,764.00,12.00,0.00,8.00,0.00,0.00,\n2015,5,15,\"EV\",\"5057\",\"LGA\",\"BNA\",1.00,-13.00,0.00,\"\",0.00,136.00,110.00,764.00,,,,,,\n2015,5,16,\"EV\",\"5057\",\"LGA\",\"BNA\",-6.00,-22.00,0.00,\"\",0.00,141.00,110.00,764.00,,,,,,\n2015,5,19,\"EV\",\"5057\",\"LGA\",\"BNA\",84.00,79.00,0.00,\"\",0.00,145.00,114.00,764.00,0.00,0.00,0.00,0.00,79.00,\n2015,5,18,\"EV\",\"5057\",\"LGA\",\"BNA\",,,1.00,\"B\",0.00,,,764.00,,,,,,\n2015,5,5,\"EV\",\"5061\",\"LGA\",\"BUF\",-5.00,-23.00,0.00,\"\",0.00,79.00,54.00,292.00,,,,,,\n2015,5,12,\"EV\",\"5061\",\"LGA\",\"BUF\",-7.00,-20.00,0.00,\"\",0.00,84.00,48.00,292.00,,,,,,\n2015,5,19,\"EV\",\"5061\",\"LGA\",\"BUF\",35.00,39.00,0.00,\"\",0.00,101.00,57.00,292.00,0.00,0.00,4.00,0.00,35.00,\n2015,5,26,\"EV\",\"5064\",\"LGA\",\"RIC\",-8.00,-28.00,0.00,\"\",0.00,78.00,53.00,292.00,,,,,,\n2015,5,5,\"EV\",\"5064\",\"LGA\",\"RIC\",-5.00,-24.00,0.00,\"\",0.00,79.00,51.00,292.00,,,,,,\n2015,5,19,\"EV\",\"5064\",\"LGA\",\"RIC\",40.00,32.00,0.00,\"\",0.00,90.00,48.00,292.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,12,\"EV\",\"5064\",\"LGA\",\"RIC\",-6.00,-7.00,0.00,\"\",0.00,97.00,63.00,292.00,,,,,,\n2015,5,6,\"EV\",\"5064\",\"PWM\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,78.00,62.00,269.00,,,,,,\n2015,5,20,\"EV\",\"5064\",\"PWM\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,76.00,61.00,269.00,,,,,,\n2015,5,13,\"EV\",\"5064\",\"PWM\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,76.00,58.00,269.00,,,,,,\n2015,5,27,\"EV\",\"5064\",\"PWM\",\"LGA\",,,1.00,\"C\",0.00,,,269.00,,,,,,\n2015,5,18,\"EV\",\"5065\",\"LGA\",\"BUF\",,,1.00,\"B\",0.00,,,292.00,,,,,,\n2015,5,17,\"EV\",\"5065\",\"LGA\",\"BUF\",-3.00,-19.00,0.00,\"\",0.00,74.00,47.00,292.00,,,,,,\n2015,5,25,\"EV\",\"5065\",\"LGA\",\"BUF\",5.00,9.00,0.00,\"\",0.00,94.00,53.00,292.00,,,,,,\n2015,5,1,\"EV\",\"5065\",\"LGA\",\"BUF\",0.00,-11.00,0.00,\"\",0.00,79.00,48.00,292.00,,,,,,\n2015,5,3,\"EV\",\"5065\",\"LGA\",\"BUF\",-9.00,-24.00,0.00,\"\",0.00,75.00,52.00,292.00,,,,,,\n2015,5,26,\"EV\",\"5065\",\"LGA\",\"BUF\",-2.00,-20.00,0.00,\"\",0.00,72.00,52.00,292.00,,,,,,\n2015,5,27,\"EV\",\"5065\",\"LGA\",\"BUF\",-3.00,-7.00,0.00,\"\",0.00,86.00,60.00,292.00,,,,,,\n2015,5,4,\"EV\",\"5065\",\"LGA\",\"BUF\",-3.00,-26.00,0.00,\"\",0.00,67.00,50.00,292.00,,,,,,\n2015,5,5,\"EV\",\"5065\",\"LGA\",\"BUF\",-8.00,-29.00,0.00,\"\",0.00,69.00,52.00,292.00,,,,,,\n2015,5,6,\"EV\",\"5065\",\"LGA\",\"BUF\",-9.00,-14.00,0.00,\"\",0.00,85.00,50.00,292.00,,,,,,\n2015,5,29,\"EV\",\"5065\",\"LGA\",\"BUF\",69.00,50.00,0.00,\"\",0.00,71.00,47.00,292.00,0.00,0.00,0.00,0.00,50.00,\n2015,5,31,\"EV\",\"5065\",\"LGA\",\"BUF\",-2.00,-16.00,0.00,\"\",0.00,76.00,55.00,292.00,,,,,,\n2015,5,7,\"EV\",\"5065\",\"LGA\",\"BUF\",42.00,19.00,0.00,\"\",0.00,67.00,46.00,292.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"EV\",\"5065\",\"LGA\",\"BUF\",39.00,37.00,0.00,\"\",0.00,94.00,44.00,292.00,0.00,0.00,0.00,0.00,37.00,\n2015,5,8,\"EV\",\"5065\",\"LGA\",\"BUF\",-4.00,-14.00,0.00,\"\",0.00,80.00,52.00,292.00,,,,,,\n2015,5,21,\"EV\",\"5065\",\"LGA\",\"BUF\",-5.00,-29.00,0.00,\"\",0.00,66.00,51.00,292.00,,,,,,\n2015,5,22,\"EV\",\"5065\",\"LGA\",\"BUF\",-7.00,-11.00,0.00,\"\",0.00,86.00,54.00,292.00,,,,,,\n2015,5,20,\"EV\",\"5065\",\"LGA\",\"BUF\",1.00,-8.00,0.00,\"\",0.00,81.00,56.00,292.00,,,,,,\n2015,5,19,\"EV\",\"5065\",\"LGA\",\"BUF\",158.00,161.00,0.00,\"\",0.00,93.00,51.00,292.00,82.00,0.00,3.00,0.00,76.00,\n2015,5,28,\"EV\",\"5065\",\"LGA\",\"BUF\",40.00,20.00,0.00,\"\",0.00,70.00,46.00,292.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"EV\",\"5065\",\"LGA\",\"BUF\",-5.00,-20.00,0.00,\"\",0.00,75.00,48.00,292.00,,,,,,\n2015,5,15,\"EV\",\"5065\",\"LGA\",\"BUF\",-4.00,-24.00,0.00,\"\",0.00,70.00,50.00,292.00,,,,,,\n2015,5,13,\"EV\",\"5065\",\"LGA\",\"BUF\",-4.00,-19.00,0.00,\"\",0.00,75.00,50.00,292.00,,,,,,\n2015,5,14,\"EV\",\"5065\",\"LGA\",\"BUF\",0.00,-18.00,0.00,\"\",0.00,72.00,50.00,292.00,,,,,,\n2015,5,11,\"EV\",\"5065\",\"LGA\",\"BUF\",11.00,19.00,0.00,\"\",0.00,98.00,46.00,292.00,5.00,0.00,8.00,0.00,6.00,\n2015,5,25,\"EV\",\"5070\",\"BHM\",\"LGA\",9.00,-6.00,0.00,\"\",0.00,133.00,118.00,866.00,,,,,,\n2015,5,1,\"EV\",\"5070\",\"BHM\",\"LGA\",-9.00,-7.00,0.00,\"\",0.00,150.00,123.00,866.00,,,,,,\n2015,5,4,\"EV\",\"5070\",\"BHM\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,142.00,122.00,866.00,,,,,,\n2015,5,17,\"EV\",\"5070\",\"BHM\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,140.00,121.00,866.00,,,,,,\n2015,5,3,\"EV\",\"5070\",\"BHM\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,143.00,122.00,866.00,,,,,,\n2015,5,29,\"EV\",\"5070\",\"BHM\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,137.00,118.00,866.00,,,,,,\n2015,5,7,\"EV\",\"5070\",\"BHM\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,146.00,118.00,866.00,,,,,,\n2015,5,28,\"EV\",\"5070\",\"BHM\",\"LGA\",11.00,-7.00,0.00,\"\",0.00,130.00,114.00,866.00,,,,,,\n2015,5,10,\"EV\",\"5070\",\"BHM\",\"LGA\",-4.00,11.00,0.00,\"\",0.00,163.00,127.00,866.00,,,,,,\n2015,5,8,\"EV\",\"5070\",\"BHM\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,143.00,122.00,866.00,,,,,,\n2015,5,21,\"EV\",\"5070\",\"BHM\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,130.00,108.00,866.00,,,,,,\n2015,5,22,\"EV\",\"5070\",\"BHM\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,139.00,113.00,866.00,,,,,,\n2015,5,11,\"EV\",\"5070\",\"BHM\",\"LGA\",138.00,144.00,0.00,\"\",0.00,154.00,135.00,866.00,0.00,0.00,144.00,0.00,0.00,\n2015,5,14,\"EV\",\"5070\",\"BHM\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,142.00,115.00,866.00,,,,,,\n2015,5,15,\"EV\",\"5070\",\"BHM\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,149.00,124.00,866.00,,,,,,\n2015,5,24,\"EV\",\"5070\",\"BHM\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,135.00,120.00,866.00,,,,,,\n2015,5,18,\"EV\",\"5070\",\"BHM\",\"LGA\",,,1.00,\"B\",0.00,,,866.00,,,,,,\n2015,5,31,\"EV\",\"5070\",\"BHM\",\"LGA\",,,1.00,\"A\",0.00,,,866.00,,,,,,\n2015,5,12,\"EV\",\"4887\",\"LGA\",\"RIC\",-8.00,-21.00,0.00,\"\",0.00,89.00,62.00,292.00,,,,,,\n2015,5,30,\"EV\",\"4888\",\"CHS\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,119.00,98.00,641.00,,,,,,\n2015,5,16,\"EV\",\"4888\",\"CHS\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,125.00,95.00,641.00,,,,,,\n2015,5,8,\"EV\",\"4892\",\"LGA\",\"MKE\",-4.00,-4.00,0.00,\"\",0.00,159.00,101.00,738.00,,,,,,\n2015,5,7,\"EV\",\"4892\",\"LGA\",\"MKE\",41.00,4.00,0.00,\"\",0.00,122.00,99.00,738.00,,,,,,\n2015,5,3,\"EV\",\"4900\",\"LGA\",\"RDU\",-3.00,-24.00,0.00,\"\",0.00,94.00,72.00,431.00,,,,,,\n2015,5,25,\"EV\",\"4902\",\"CAE\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,109.00,89.00,617.00,,,,,,\n2015,5,17,\"EV\",\"4902\",\"CAE\",\"LGA\",-6.00,-3.00,0.00,\"\",0.00,118.00,96.00,617.00,,,,,,\n2015,5,3,\"EV\",\"4902\",\"CAE\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,117.00,96.00,617.00,,,,,,\n2015,5,1,\"EV\",\"4902\",\"CAE\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,111.00,91.00,617.00,,,,,,\n2015,5,4,\"EV\",\"4902\",\"CAE\",\"LGA\",-5.00,2.00,0.00,\"\",0.00,122.00,90.00,617.00,,,,,,\n2015,5,29,\"EV\",\"4902\",\"CAE\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,109.00,92.00,617.00,,,,,,\n2015,5,7,\"EV\",\"4902\",\"CAE\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,110.00,90.00,617.00,,,,,,\n2015,5,10,\"EV\",\"4902\",\"CAE\",\"LGA\",-8.00,-1.00,0.00,\"\",0.00,122.00,95.00,617.00,,,,,,\n2015,5,28,\"EV\",\"4902\",\"CAE\",\"LGA\",111.00,105.00,0.00,\"\",0.00,109.00,91.00,617.00,0.00,0.00,0.00,0.00,105.00,\n2015,5,8,\"EV\",\"4902\",\"CAE\",\"LGA\",59.00,50.00,0.00,\"\",0.00,106.00,90.00,617.00,3.00,0.00,0.00,0.00,47.00,\n2015,5,21,\"EV\",\"4902\",\"CAE\",\"LGA\",-9.00,-5.00,0.00,\"\",0.00,119.00,90.00,617.00,,,,,,\n2015,5,22,\"EV\",\"4902\",\"CAE\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,107.00,88.00,617.00,,,,,,\n2015,5,14,\"EV\",\"4902\",\"CAE\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,113.00,92.00,617.00,,,,,,\n2015,5,15,\"EV\",\"4902\",\"CAE\",\"LGA\",-6.00,10.00,0.00,\"\",0.00,131.00,92.00,617.00,,,,,,\n2015,5,11,\"EV\",\"4902\",\"CAE\",\"LGA\",119.00,119.00,0.00,\"\",0.00,115.00,91.00,617.00,37.00,0.00,82.00,0.00,0.00,\n2015,5,31,\"EV\",\"4902\",\"CAE\",\"LGA\",,,1.00,\"B\",0.00,,,617.00,,,,,,\n2015,5,18,\"EV\",\"4902\",\"CAE\",\"LGA\",,,1.00,\"B\",0.00,,,617.00,,,,,,\n2015,5,5,\"EV\",\"4905\",\"DTW\",\"SYR\",-4.00,-3.00,0.00,\"\",0.00,79.00,57.00,374.00,,,,,,\n2015,5,26,\"EV\",\"4905\",\"DTW\",\"SYR\",57.00,47.00,0.00,\"\",0.00,68.00,52.00,374.00,47.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"EV\",\"4905\",\"DTW\",\"SYR\",-3.00,5.00,0.00,\"\",0.00,86.00,59.00,374.00,,,,,,\n2015,5,12,\"EV\",\"4905\",\"DTW\",\"SYR\",-4.00,-6.00,0.00,\"\",0.00,76.00,54.00,374.00,,,,,,\n2015,5,26,\"EV\",\"4905\",\"SYR\",\"DTW\",-5.00,-14.00,0.00,\"\",0.00,87.00,62.00,374.00,,,,,,\n2015,5,5,\"EV\",\"4905\",\"SYR\",\"DTW\",-5.00,-17.00,0.00,\"\",0.00,84.00,69.00,374.00,,,,,,\n2015,5,19,\"EV\",\"4905\",\"SYR\",\"DTW\",-5.00,-15.00,0.00,\"\",0.00,86.00,68.00,374.00,,,,,,\n2015,5,12,\"EV\",\"4905\",\"SYR\",\"DTW\",-5.00,-15.00,0.00,\"\",0.00,86.00,71.00,374.00,,,,,,\n2015,5,3,\"EV\",\"4906\",\"LGA\",\"CAE\",-10.00,-17.00,0.00,\"\",0.00,128.00,96.00,617.00,,,,,,\n2015,5,1,\"EV\",\"4906\",\"LGA\",\"CAE\",-7.00,-29.00,0.00,\"\",0.00,113.00,85.00,617.00,,,,,,\n2015,5,25,\"EV\",\"4906\",\"LGA\",\"CAE\",-7.00,-1.00,0.00,\"\",0.00,141.00,90.00,617.00,,,,,,\n2015,5,4,\"EV\",\"4906\",\"LGA\",\"CAE\",-8.00,-35.00,0.00,\"\",0.00,108.00,86.00,617.00,,,,,,\n2015,5,17,\"EV\",\"4906\",\"LGA\",\"CAE\",-7.00,-21.00,0.00,\"\",0.00,121.00,91.00,617.00,,,,,,\n2015,5,29,\"EV\",\"4906\",\"LGA\",\"CAE\",-4.00,-9.00,0.00,\"\",0.00,130.00,102.00,617.00,,,,,,\n2015,5,10,\"EV\",\"4906\",\"LGA\",\"CAE\",7.00,2.00,0.00,\"\",0.00,130.00,87.00,617.00,,,,,,\n2015,5,21,\"EV\",\"4906\",\"LGA\",\"CAE\",-11.00,-23.00,0.00,\"\",0.00,123.00,97.00,617.00,,,,,,\n2015,5,8,\"EV\",\"4906\",\"LGA\",\"CAE\",-7.00,-29.00,0.00,\"\",0.00,113.00,87.00,617.00,,,,,,\n2015,5,7,\"EV\",\"4906\",\"LGA\",\"CAE\",-7.00,-26.00,0.00,\"\",0.00,116.00,85.00,617.00,,,,,,\n2015,5,22,\"EV\",\"4906\",\"LGA\",\"CAE\",-5.00,-22.00,0.00,\"\",0.00,118.00,96.00,617.00,,,,,,\n2015,5,14,\"EV\",\"4906\",\"LGA\",\"CAE\",-3.00,-6.00,0.00,\"\",0.00,132.00,105.00,617.00,,,,,,\n2015,5,15,\"EV\",\"4906\",\"LGA\",\"CAE\",-7.00,-7.00,0.00,\"\",0.00,135.00,102.00,617.00,,,,,,\n2015,5,28,\"EV\",\"4906\",\"LGA\",\"CAE\",19.00,44.00,0.00,\"\",0.00,160.00,108.00,617.00,0.00,0.00,25.00,0.00,19.00,\n2015,5,11,\"EV\",\"4906\",\"LGA\",\"CAE\",31.00,24.00,0.00,\"\",0.00,128.00,90.00,617.00,0.00,0.00,0.00,0.00,24.00,\n2015,5,18,\"EV\",\"4906\",\"LGA\",\"CAE\",,,1.00,\"B\",0.00,,,617.00,,,,,,\n2015,5,31,\"EV\",\"4906\",\"LGA\",\"CAE\",,,1.00,\"C\",0.00,,,617.00,,,,,,\n2015,5,1,\"EV\",\"4907\",\"BUF\",\"DTW\",-9.00,16.00,0.00,\"\",0.00,101.00,43.00,241.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,25,\"EV\",\"4907\",\"BUF\",\"DTW\",-7.00,17.00,0.00,\"\",0.00,100.00,56.00,241.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,2,\"EV\",\"4907\",\"BUF\",\"DTW\",-7.00,-21.00,0.00,\"\",0.00,60.00,45.00,241.00,,,,,,\n2015,5,17,\"EV\",\"4907\",\"BUF\",\"DTW\",-6.00,-8.00,0.00,\"\",0.00,74.00,47.00,241.00,,,,,,\n2015,5,4,\"EV\",\"4907\",\"BUF\",\"DTW\",-11.00,-5.00,0.00,\"\",0.00,82.00,47.00,241.00,,,,,,\n2015,5,29,\"EV\",\"4907\",\"BUF\",\"DTW\",0.00,-1.00,0.00,\"\",0.00,75.00,47.00,241.00,,,,,,\n2015,5,6,\"EV\",\"4907\",\"BUF\",\"DTW\",-7.00,-11.00,0.00,\"\",0.00,72.00,44.00,241.00,,,,,,\n2015,5,5,\"EV\",\"4907\",\"BUF\",\"DTW\",-12.00,-13.00,0.00,\"\",0.00,75.00,55.00,241.00,,,,,,\n2015,5,26,\"EV\",\"4907\",\"BUF\",\"DTW\",-13.00,-18.00,0.00,\"\",0.00,71.00,45.00,241.00,,,,,,\n2015,5,18,\"EV\",\"4907\",\"BUF\",\"DTW\",-5.00,-23.00,0.00,\"\",0.00,58.00,43.00,241.00,,,,,,\n2015,5,31,\"EV\",\"4907\",\"BUF\",\"DTW\",16.00,17.00,0.00,\"\",0.00,77.00,55.00,241.00,0.00,0.00,1.00,0.00,16.00,\n2015,5,7,\"EV\",\"4907\",\"BUF\",\"DTW\",-8.00,6.00,0.00,\"\",0.00,90.00,48.00,241.00,,,,,,\n2015,5,28,\"EV\",\"4907\",\"BUF\",\"DTW\",-7.00,-24.00,0.00,\"\",0.00,59.00,42.00,241.00,,,,,,\n2015,5,20,\"EV\",\"4907\",\"BUF\",\"DTW\",-9.00,-26.00,0.00,\"\",0.00,59.00,43.00,241.00,,,,,,\n2015,5,8,\"EV\",\"4907\",\"BUF\",\"DTW\",53.00,48.00,0.00,\"\",0.00,71.00,39.00,241.00,0.00,0.00,0.00,0.00,48.00,\n2015,5,19,\"EV\",\"4907\",\"BUF\",\"DTW\",-7.00,3.00,0.00,\"\",0.00,86.00,52.00,241.00,,,,,,\n2015,5,11,\"EV\",\"4907\",\"BUF\",\"DTW\",45.00,47.00,0.00,\"\",0.00,78.00,54.00,241.00,45.00,0.00,2.00,0.00,0.00,\n2015,5,27,\"EV\",\"4907\",\"BUF\",\"DTW\",22.00,13.00,0.00,\"\",0.00,67.00,46.00,241.00,,,,,,\n2015,5,14,\"EV\",\"4907\",\"BUF\",\"DTW\",408.00,389.00,0.00,\"\",0.00,57.00,43.00,241.00,389.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"EV\",\"4907\",\"BUF\",\"DTW\",-6.00,2.00,0.00,\"\",0.00,84.00,53.00,241.00,,,,,,\n2015,5,24,\"EV\",\"4907\",\"BUF\",\"DTW\",-5.00,-22.00,0.00,\"\",0.00,59.00,45.00,241.00,,,,,,\n2015,5,13,\"EV\",\"4907\",\"BUF\",\"DTW\",-5.00,34.00,0.00,\"\",0.00,115.00,58.00,241.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,15,\"EV\",\"4907\",\"BUF\",\"DTW\",-6.00,-21.00,0.00,\"\",0.00,61.00,43.00,241.00,,,,,,\n2015,5,16,\"EV\",\"4907\",\"BUF\",\"DTW\",-5.00,-10.00,0.00,\"\",0.00,69.00,46.00,241.00,,,,,,\n2015,5,12,\"EV\",\"4907\",\"BUF\",\"DTW\",-6.00,-15.00,0.00,\"\",0.00,67.00,46.00,241.00,,,,,,\n2015,5,1,\"EV\",\"4907\",\"DTW\",\"BUF\",-6.00,-6.00,0.00,\"\",0.00,72.00,43.00,241.00,,,,,,\n2015,5,25,\"EV\",\"4907\",\"DTW\",\"BUF\",-3.00,-13.00,0.00,\"\",0.00,62.00,39.00,241.00,,,,,,\n2015,5,26,\"EV\",\"4907\",\"DTW\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,63.00,41.00,241.00,,,,,,\n2015,5,17,\"EV\",\"4907\",\"DTW\",\"BUF\",4.00,-6.00,0.00,\"\",0.00,62.00,41.00,241.00,,,,,,\n2015,5,2,\"EV\",\"4907\",\"DTW\",\"BUF\",-5.00,-10.00,0.00,\"\",0.00,66.00,44.00,241.00,,,,,,\n2015,5,4,\"EV\",\"4907\",\"DTW\",\"BUF\",-1.00,-7.00,0.00,\"\",0.00,66.00,41.00,241.00,,,,,,\n2015,5,29,\"EV\",\"4907\",\"DTW\",\"BUF\",28.00,12.00,0.00,\"\",0.00,56.00,39.00,241.00,,,,,,\n2015,5,27,\"EV\",\"4907\",\"DTW\",\"BUF\",-4.00,18.00,0.00,\"\",0.00,94.00,48.00,241.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,5,\"EV\",\"4907\",\"DTW\",\"BUF\",-9.00,-21.00,0.00,\"\",0.00,60.00,40.00,241.00,,,,,,\n2015,5,28,\"EV\",\"4907\",\"DTW\",\"BUF\",-2.00,-7.00,0.00,\"\",0.00,67.00,41.00,241.00,,,,,,\n2015,5,31,\"EV\",\"4907\",\"DTW\",\"BUF\",24.00,19.00,0.00,\"\",0.00,67.00,38.00,241.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"EV\",\"4907\",\"DTW\",\"BUF\",-7.00,-10.00,0.00,\"\",0.00,69.00,43.00,241.00,,,,,,\n2015,5,18,\"EV\",\"4907\",\"DTW\",\"BUF\",-3.00,-5.00,0.00,\"\",0.00,70.00,44.00,241.00,,,,,,\n2015,5,6,\"EV\",\"4907\",\"DTW\",\"BUF\",-9.00,-14.00,0.00,\"\",0.00,67.00,40.00,241.00,,,,,,\n2015,5,8,\"EV\",\"4907\",\"DTW\",\"BUF\",79.00,65.00,0.00,\"\",0.00,58.00,40.00,241.00,65.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"EV\",\"4907\",\"DTW\",\"BUF\",-8.00,-12.00,0.00,\"\",0.00,68.00,41.00,241.00,,,,,,\n2015,5,19,\"EV\",\"4907\",\"DTW\",\"BUF\",-3.00,-9.00,0.00,\"\",0.00,66.00,40.00,241.00,,,,,,\n2015,5,11,\"EV\",\"4907\",\"DTW\",\"BUF\",-6.00,-5.00,0.00,\"\",0.00,73.00,43.00,241.00,,,,,,\n2015,5,22,\"EV\",\"4907\",\"DTW\",\"BUF\",-1.00,-7.00,0.00,\"\",0.00,66.00,38.00,241.00,,,,,,\n2015,5,13,\"EV\",\"4907\",\"DTW\",\"BUF\",-4.00,-2.00,0.00,\"\",0.00,74.00,45.00,241.00,,,,,,\n2015,5,15,\"EV\",\"4907\",\"DTW\",\"BUF\",-4.00,-10.00,0.00,\"\",0.00,66.00,44.00,241.00,,,,,,\n2015,5,12,\"EV\",\"4907\",\"DTW\",\"BUF\",-1.00,-15.00,0.00,\"\",0.00,58.00,40.00,241.00,,,,,,\n2015,5,16,\"EV\",\"4907\",\"DTW\",\"BUF\",-6.00,-13.00,0.00,\"\",0.00,64.00,42.00,241.00,,,,,,\n2015,5,24,\"EV\",\"4907\",\"DTW\",\"BUF\",-6.00,-15.00,0.00,\"\",0.00,63.00,39.00,241.00,,,,,,\n2015,5,14,\"EV\",\"4907\",\"DTW\",\"BUF\",14.00,2.00,0.00,\"\",0.00,60.00,40.00,241.00,,,,,,\n2015,5,1,\"EV\",\"4979\",\"LGA\",\"CAE\",-4.00,11.00,0.00,\"\",0.00,160.00,97.00,617.00,,,,,,\n2015,5,25,\"EV\",\"4979\",\"LGA\",\"CAE\",1.00,-36.00,0.00,\"\",0.00,108.00,90.00,617.00,,,,,,\n2015,5,4,\"EV\",\"4979\",\"LGA\",\"CAE\",-2.00,1.00,0.00,\"\",0.00,148.00,96.00,617.00,,,,,,\n2015,5,26,\"EV\",\"4979\",\"LGA\",\"CAE\",-4.00,-2.00,0.00,\"\",0.00,147.00,96.00,617.00,,,,,,\n2015,5,5,\"EV\",\"4979\",\"LGA\",\"CAE\",-4.00,-41.00,0.00,\"\",0.00,108.00,91.00,617.00,,,,,,\n2015,5,29,\"EV\",\"4979\",\"LGA\",\"CAE\",0.00,-12.00,0.00,\"\",0.00,133.00,91.00,617.00,,,,,,\n2015,5,27,\"EV\",\"4979\",\"LGA\",\"CAE\",-2.00,-29.00,0.00,\"\",0.00,118.00,101.00,617.00,,,,,,\n2015,5,6,\"EV\",\"4979\",\"LGA\",\"CAE\",-6.00,-16.00,0.00,\"\",0.00,135.00,89.00,617.00,,,,,,\n2015,5,8,\"EV\",\"4979\",\"LGA\",\"CAE\",-5.00,-16.00,0.00,\"\",0.00,134.00,89.00,617.00,,,,,,\n2015,5,18,\"EV\",\"4979\",\"LGA\",\"CAE\",236.00,216.00,0.00,\"\",0.00,125.00,84.00,617.00,0.00,0.00,0.00,0.00,216.00,\n2015,5,7,\"EV\",\"4979\",\"LGA\",\"CAE\",-4.00,-20.00,0.00,\"\",0.00,129.00,88.00,617.00,,,,,,\n2015,5,28,\"EV\",\"4979\",\"LGA\",\"CAE\",-2.00,-10.00,0.00,\"\",0.00,137.00,95.00,617.00,,,,,,\n2015,5,19,\"EV\",\"4979\",\"LGA\",\"CAE\",13.00,-2.00,0.00,\"\",0.00,130.00,93.00,617.00,,,,,,\n2015,5,21,\"EV\",\"4979\",\"LGA\",\"CAE\",4.00,-7.00,0.00,\"\",0.00,134.00,104.00,617.00,,,,,,\n2015,5,20,\"EV\",\"4979\",\"LGA\",\"CAE\",-4.00,4.00,0.00,\"\",0.00,153.00,98.00,617.00,,,,,,\n2015,5,22,\"EV\",\"4979\",\"LGA\",\"CAE\",-6.00,-25.00,0.00,\"\",0.00,126.00,93.00,617.00,,,,,,\n2015,5,12,\"EV\",\"4979\",\"LGA\",\"CAE\",95.00,81.00,0.00,\"\",0.00,131.00,100.00,617.00,81.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"EV\",\"4979\",\"LGA\",\"CAE\",-2.00,-26.00,0.00,\"\",0.00,121.00,87.00,617.00,,,,,,\n2015,5,14,\"EV\",\"4979\",\"LGA\",\"CAE\",-5.00,-14.00,0.00,\"\",0.00,136.00,96.00,617.00,,,,,,\n2015,5,15,\"EV\",\"4979\",\"LGA\",\"CAE\",-4.00,-35.00,0.00,\"\",0.00,114.00,92.00,617.00,,,,,,\n2015,5,13,\"EV\",\"4979\",\"LGA\",\"CAE\",-9.00,-2.00,0.00,\"\",0.00,152.00,92.00,617.00,,,,,,\n2015,5,1,\"EV\",\"4981\",\"LGA\",\"CLE\",-10.00,-19.00,0.00,\"\",0.00,102.00,63.00,419.00,,,,,,\n2015,5,17,\"EV\",\"4981\",\"LGA\",\"CLE\",-6.00,-15.00,0.00,\"\",0.00,102.00,66.00,419.00,,,,,,\n2015,5,29,\"EV\",\"4981\",\"LGA\",\"CLE\",-5.00,-9.00,0.00,\"\",0.00,107.00,63.00,419.00,,,,,,\n2015,5,3,\"EV\",\"4981\",\"LGA\",\"CLE\",-7.00,-31.00,0.00,\"\",0.00,87.00,63.00,419.00,,,,,,\n2015,5,25,\"EV\",\"4981\",\"LGA\",\"CLE\",24.00,0.00,0.00,\"\",0.00,87.00,63.00,419.00,,,,,,\n2015,5,26,\"EV\",\"4981\",\"LGA\",\"CLE\",-2.00,-28.00,0.00,\"\",0.00,85.00,64.00,419.00,,,,,,\n2015,5,6,\"EV\",\"4981\",\"LGA\",\"CLE\",-9.00,-3.00,0.00,\"\",0.00,117.00,67.00,419.00,,,,,,\n2015,5,5,\"EV\",\"4981\",\"LGA\",\"CLE\",7.00,-8.00,0.00,\"\",0.00,96.00,70.00,419.00,,,,,,\n2015,5,27,\"EV\",\"4981\",\"LGA\",\"CLE\",32.00,89.00,0.00,\"\",0.00,168.00,78.00,419.00,32.00,0.00,57.00,0.00,0.00,\n2015,5,4,\"EV\",\"4981\",\"LGA\",\"CLE\",-11.00,-6.00,0.00,\"\",0.00,116.00,65.00,419.00,,,,,,\n2015,5,7,\"EV\",\"4981\",\"LGA\",\"CLE\",-7.00,-25.00,0.00,\"\",0.00,93.00,66.00,419.00,,,,,,\n2015,5,21,\"EV\",\"4981\",\"LGA\",\"CLE\",-7.00,-6.00,0.00,\"\",0.00,112.00,70.00,419.00,,,,,,\n2015,5,12,\"EV\",\"4981\",\"LGA\",\"CLE\",-11.00,-11.00,0.00,\"\",0.00,111.00,68.00,419.00,,,,,,\n2015,5,20,\"EV\",\"4981\",\"LGA\",\"CLE\",5.00,19.00,0.00,\"\",0.00,125.00,66.00,419.00,5.00,0.00,14.00,0.00,0.00,\n2015,5,10,\"EV\",\"4981\",\"LGA\",\"CLE\",-5.00,-26.00,0.00,\"\",0.00,90.00,63.00,419.00,,,,,,\n2015,5,15,\"EV\",\"4981\",\"LGA\",\"CLE\",-1.00,-14.00,0.00,\"\",0.00,98.00,69.00,419.00,,,,,,\n2015,5,13,\"EV\",\"4981\",\"LGA\",\"CLE\",-5.00,9.00,0.00,\"\",0.00,125.00,72.00,419.00,,,,,,\n2015,5,14,\"EV\",\"4981\",\"LGA\",\"CLE\",26.00,15.00,0.00,\"\",0.00,100.00,64.00,419.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"EV\",\"4981\",\"LGA\",\"CLE\",72.00,49.00,0.00,\"\",0.00,88.00,67.00,419.00,0.00,0.00,0.00,0.00,49.00,\n2015,5,22,\"EV\",\"4981\",\"LGA\",\"CLE\",113.00,119.00,0.00,\"\",0.00,117.00,78.00,419.00,19.00,0.00,6.00,0.00,94.00,\n2015,5,8,\"EV\",\"4981\",\"LGA\",\"CLE\",11.00,-12.00,0.00,\"\",0.00,88.00,61.00,419.00,,,,,,\n2015,5,18,\"EV\",\"4981\",\"LGA\",\"CLE\",,,1.00,\"B\",0.00,,,419.00,,,,,,\n2015,5,19,\"EV\",\"4981\",\"LGA\",\"CLE\",,,1.00,\"B\",0.00,,,419.00,,,,,,\n2015,5,31,\"EV\",\"4981\",\"LGA\",\"CLE\",,,1.00,\"A\",0.00,,,419.00,,,,,,\n2015,5,28,\"EV\",\"4981\",\"LGA\",\"CLE\",,,1.00,\"A\",0.00,,,419.00,,,,,,\n2015,5,9,\"EV\",\"4984\",\"LGA\",\"PWM\",-3.00,-7.00,0.00,\"\",0.00,88.00,46.00,269.00,,,,,,\n2015,5,25,\"EV\",\"4986\",\"ATL\",\"HPN\",100.00,83.00,0.00,\"\",0.00,115.00,99.00,780.00,0.00,0.00,0.00,0.00,83.00,\n2015,5,17,\"EV\",\"4986\",\"ATL\",\"HPN\",15.00,22.00,0.00,\"\",0.00,139.00,114.00,780.00,14.00,0.00,7.00,0.00,1.00,\n2015,5,2,\"EV\",\"4986\",\"ATL\",\"HPN\",-5.00,-2.00,0.00,\"\",0.00,133.00,114.00,780.00,,,,,,\n2015,5,1,\"EV\",\"4986\",\"ATL\",\"HPN\",1.00,4.00,0.00,\"\",0.00,135.00,111.00,780.00,,,,,,\n2015,5,9,\"EV\",\"4986\",\"ATL\",\"HPN\",-3.00,1.00,0.00,\"\",0.00,134.00,113.00,780.00,,,,,,\n2015,5,29,\"EV\",\"4986\",\"ATL\",\"HPN\",-5.00,-4.00,0.00,\"\",0.00,133.00,111.00,780.00,,,,,,\n2015,5,6,\"EV\",\"4986\",\"ATL\",\"HPN\",5.00,1.00,0.00,\"\",0.00,128.00,104.00,780.00,,,,,,\n2015,5,27,\"EV\",\"4986\",\"ATL\",\"HPN\",114.00,105.00,0.00,\"\",0.00,123.00,107.00,780.00,105.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"EV\",\"4986\",\"ATL\",\"HPN\",-5.00,-10.00,0.00,\"\",0.00,127.00,108.00,780.00,,,,,,\n2015,5,30,\"EV\",\"4986\",\"ATL\",\"HPN\",-1.00,5.00,0.00,\"\",0.00,136.00,113.00,780.00,,,,,,\n2015,5,3,\"EV\",\"4986\",\"ATL\",\"HPN\",46.00,44.00,0.00,\"\",0.00,130.00,114.00,780.00,37.00,0.00,0.00,0.00,7.00,\n2015,5,10,\"EV\",\"4986\",\"ATL\",\"HPN\",2.00,17.00,0.00,\"\",0.00,147.00,118.00,780.00,2.00,0.00,15.00,0.00,0.00,\n2015,5,7,\"EV\",\"4986\",\"ATL\",\"HPN\",17.00,24.00,0.00,\"\",0.00,139.00,112.00,780.00,17.00,0.00,7.00,0.00,0.00,\n2015,5,19,\"EV\",\"4986\",\"ATL\",\"HPN\",11.00,29.00,0.00,\"\",0.00,150.00,120.00,780.00,11.00,0.00,18.00,0.00,0.00,\n2015,5,8,\"EV\",\"4986\",\"ATL\",\"HPN\",-2.00,14.00,0.00,\"\",0.00,148.00,113.00,780.00,,,,,,\n2015,5,22,\"EV\",\"4986\",\"ATL\",\"HPN\",-1.00,-13.00,0.00,\"\",0.00,120.00,101.00,780.00,,,,,,\n2015,5,11,\"EV\",\"4986\",\"ATL\",\"HPN\",12.00,33.00,0.00,\"\",0.00,153.00,120.00,780.00,12.00,0.00,21.00,0.00,0.00,\n2015,5,21,\"EV\",\"4986\",\"ATL\",\"HPN\",0.00,-5.00,0.00,\"\",0.00,127.00,105.00,780.00,,,,,,\n2015,5,12,\"EV\",\"4986\",\"ATL\",\"HPN\",-5.00,-14.00,0.00,\"\",0.00,123.00,104.00,780.00,,,,,,\n2015,5,20,\"EV\",\"4986\",\"ATL\",\"HPN\",63.00,65.00,0.00,\"\",0.00,134.00,106.00,780.00,63.00,0.00,2.00,0.00,0.00,\n2015,5,23,\"EV\",\"4986\",\"ATL\",\"HPN\",-10.00,-4.00,0.00,\"\",0.00,136.00,114.00,780.00,,,,,,\n2015,5,13,\"EV\",\"4986\",\"ATL\",\"HPN\",0.00,14.00,0.00,\"\",0.00,146.00,111.00,780.00,,,,,,\n2015,5,16,\"EV\",\"4986\",\"ATL\",\"HPN\",-3.00,4.00,0.00,\"\",0.00,137.00,109.00,780.00,,,,,,\n2015,5,24,\"EV\",\"4986\",\"ATL\",\"HPN\",-1.00,-8.00,0.00,\"\",0.00,125.00,107.00,780.00,,,,,,\n2015,5,15,\"EV\",\"4986\",\"ATL\",\"HPN\",0.00,-8.00,0.00,\"\",0.00,124.00,107.00,780.00,,,,,,\n2015,5,14,\"EV\",\"4986\",\"ATL\",\"HPN\",-1.00,-6.00,0.00,\"\",0.00,127.00,107.00,780.00,,,,,,\n2015,5,31,\"EV\",\"4986\",\"ATL\",\"HPN\",79.00,80.00,0.00,\"\",0.00,133.00,111.00,780.00,45.00,0.00,1.00,0.00,34.00,\n2015,5,4,\"EV\",\"4986\",\"ATL\",\"HPN\",230.00,218.00,0.00,\"\",0.00,120.00,107.00,780.00,218.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"EV\",\"4986\",\"ATL\",\"HPN\",85.00,70.00,0.00,\"\",0.00,117.00,101.00,780.00,0.00,0.00,0.00,0.00,70.00,\n2015,5,26,\"EV\",\"4986\",\"ATL\",\"HPN\",70.00,74.00,0.00,\"\",0.00,136.00,111.00,780.00,0.00,0.00,4.00,0.00,70.00,\n2015,5,18,\"EV\",\"4986\",\"ATL\",\"HPN\",14.00,23.00,0.00,\"\",0.00,141.00,119.00,780.00,9.00,0.00,9.00,0.00,5.00,\n2015,5,30,\"EV\",\"4988\",\"LGA\",\"CHS\",-4.00,-35.00,0.00,\"\",0.00,107.00,87.00,641.00,,,,,,\n2015,5,16,\"EV\",\"4988\",\"LGA\",\"CHS\",-4.00,-21.00,0.00,\"\",0.00,121.00,87.00,641.00,,,,,,\n2015,5,23,\"EV\",\"4991\",\"ALB\",\"DTW\",-8.00,-12.00,0.00,\"\",0.00,99.00,77.00,489.00,,,,,,\n2015,5,23,\"EV\",\"4991\",\"DTW\",\"ALB\",-4.00,-14.00,0.00,\"\",0.00,82.00,64.00,489.00,,,,,,\n2015,5,1,\"EV\",\"4991\",\"LGA\",\"BUF\",24.00,12.00,0.00,\"\",0.00,85.00,48.00,292.00,,,,,,\n2015,5,25,\"EV\",\"4991\",\"LGA\",\"RDU\",-8.00,-3.00,0.00,\"\",0.00,110.00,69.00,431.00,,,,,,\n2015,5,17,\"EV\",\"4991\",\"LGA\",\"RDU\",0.00,6.00,0.00,\"\",0.00,111.00,63.00,431.00,,,,,,\n2015,5,26,\"EV\",\"4991\",\"LGA\",\"RDU\",-3.00,10.00,0.00,\"\",0.00,118.00,66.00,431.00,,,,,,\n2015,5,6,\"EV\",\"4991\",\"LGA\",\"RDU\",2.00,-6.00,0.00,\"\",0.00,97.00,68.00,431.00,,,,,,\n2015,5,5,\"EV\",\"4991\",\"LGA\",\"RDU\",-7.00,-9.00,0.00,\"\",0.00,103.00,72.00,431.00,,,,,,\n2015,5,4,\"EV\",\"4991\",\"LGA\",\"RDU\",-4.00,-2.00,0.00,\"\",0.00,107.00,70.00,431.00,,,,,,\n2015,5,27,\"EV\",\"4991\",\"LGA\",\"RDU\",-3.00,6.00,0.00,\"\",0.00,114.00,94.00,431.00,,,,,,\n2015,5,29,\"EV\",\"4991\",\"LGA\",\"RDU\",2.00,-3.00,0.00,\"\",0.00,100.00,68.00,431.00,,,,,,\n2015,5,7,\"EV\",\"4991\",\"LGA\",\"RDU\",-4.00,-3.00,0.00,\"\",0.00,106.00,78.00,431.00,,,,,,\n2015,5,21,\"EV\",\"4991\",\"LGA\",\"RDU\",-8.00,-6.00,0.00,\"\",0.00,107.00,80.00,431.00,,,,,,\n2015,5,28,\"EV\",\"4991\",\"LGA\",\"RDU\",17.00,16.00,0.00,\"\",0.00,104.00,69.00,431.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,20,\"EV\",\"4991\",\"LGA\",\"RDU\",-5.00,6.00,0.00,\"\",0.00,116.00,76.00,431.00,,,,,,\n2015,5,11,\"EV\",\"4991\",\"LGA\",\"RDU\",16.00,23.00,0.00,\"\",0.00,112.00,67.00,431.00,16.00,0.00,7.00,0.00,0.00,\n2015,5,12,\"EV\",\"4991\",\"LGA\",\"RDU\",-2.00,-7.00,0.00,\"\",0.00,100.00,69.00,431.00,,,,,,\n2015,5,8,\"EV\",\"4991\",\"LGA\",\"RDU\",9.00,15.00,0.00,\"\",0.00,111.00,68.00,431.00,0.00,0.00,6.00,0.00,9.00,\n2015,5,13,\"EV\",\"4991\",\"LGA\",\"RDU\",-3.00,-8.00,0.00,\"\",0.00,100.00,71.00,431.00,,,,,,\n2015,5,14,\"EV\",\"4991\",\"LGA\",\"RDU\",-7.00,4.00,0.00,\"\",0.00,116.00,76.00,431.00,,,,,,\n2015,5,15,\"EV\",\"4991\",\"LGA\",\"RDU\",-3.00,-6.00,0.00,\"\",0.00,102.00,67.00,431.00,,,,,,\n2015,5,19,\"EV\",\"4991\",\"LGA\",\"RDU\",88.00,139.00,0.00,\"\",0.00,156.00,80.00,431.00,48.00,0.00,51.00,0.00,40.00,\n2015,5,18,\"EV\",\"4991\",\"LGA\",\"RDU\",102.00,101.00,0.00,\"\",0.00,104.00,61.00,431.00,25.00,0.00,0.00,0.00,76.00,\n2015,5,22,\"EV\",\"4991\",\"LGA\",\"RDU\",151.00,177.00,0.00,\"\",0.00,131.00,72.00,431.00,76.00,0.00,26.00,0.00,75.00,\n2015,5,10,\"EV\",\"4991\",\"LGA\",\"RDU\",162.00,174.00,0.00,\"\",0.00,117.00,71.00,431.00,133.00,0.00,12.00,0.00,29.00,\n2015,5,24,\"EV\",\"4991\",\"LGA\",\"RDU\",19.00,-2.00,0.00,\"\",0.00,84.00,67.00,431.00,,,,,,\n2015,5,31,\"EV\",\"4991\",\"LGA\",\"RDU\",,,1.00,\"A\",0.00,,,431.00,,,,,,\n2015,5,6,\"EV\",\"4992\",\"BNA\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,127.00,107.00,764.00,,,,,,\n2015,5,13,\"EV\",\"4992\",\"BNA\",\"LGA\",-5.00,-1.00,0.00,\"\",0.00,140.00,112.00,764.00,,,,,,\n2015,5,27,\"EV\",\"4992\",\"ROC\",\"LGA\",-7.00,-26.00,0.00,\"\",0.00,59.00,45.00,254.00,,,,,,\n2015,5,20,\"EV\",\"4992\",\"ROC\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,68.00,52.00,254.00,,,,,,\n2015,5,23,\"EV\",\"4997\",\"BTV\",\"LGA\",2.00,-5.00,0.00,\"\",0.00,68.00,42.00,258.00,,,,,,\n2015,5,17,\"EV\",\"4998\",\"PIT\",\"LGA\",-9.00,-25.00,0.00,\"\",0.00,69.00,52.00,335.00,,,,,,\n2015,5,1,\"EV\",\"4998\",\"PIT\",\"LGA\",-10.00,-10.00,0.00,\"\",0.00,85.00,61.00,335.00,,,,,,\n2015,5,25,\"EV\",\"4998\",\"PIT\",\"LGA\",29.00,41.00,0.00,\"\",0.00,97.00,57.00,335.00,7.00,0.00,12.00,0.00,22.00,\n2015,5,4,\"EV\",\"4998\",\"PIT\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,82.00,57.00,335.00,,,,,,\n2015,5,5,\"EV\",\"4998\",\"PIT\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,81.00,57.00,335.00,,,,,,\n2015,5,29,\"EV\",\"4998\",\"PIT\",\"LGA\",-5.00,8.00,0.00,\"\",0.00,98.00,57.00,335.00,,,,,,\n2015,5,3,\"EV\",\"4998\",\"PIT\",\"LGA\",-6.00,-1.00,0.00,\"\",0.00,90.00,59.00,335.00,,,,,,\n2015,5,6,\"EV\",\"4998\",\"PIT\",\"LGA\",-3.00,0.00,0.00,\"\",0.00,88.00,53.00,335.00,,,,,,\n2015,5,27,\"EV\",\"4998\",\"PIT\",\"LGA\",43.00,46.00,0.00,\"\",0.00,88.00,58.00,335.00,0.00,0.00,3.00,0.00,43.00,\n2015,5,7,\"EV\",\"4998\",\"PIT\",\"LGA\",157.00,157.00,0.00,\"\",0.00,85.00,57.00,335.00,0.00,0.00,0.00,0.00,157.00,\n2015,5,10,\"EV\",\"4998\",\"PIT\",\"LGA\",-8.00,-1.00,0.00,\"\",0.00,92.00,59.00,335.00,,,,,,\n2015,5,8,\"EV\",\"4998\",\"PIT\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,79.00,57.00,335.00,,,,,,\n2015,5,21,\"EV\",\"4998\",\"PIT\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,79.00,56.00,335.00,,,,,,\n2015,5,20,\"EV\",\"4998\",\"PIT\",\"LGA\",25.00,34.00,0.00,\"\",0.00,94.00,57.00,335.00,2.00,0.00,9.00,0.00,23.00,\n2015,5,22,\"EV\",\"4998\",\"PIT\",\"LGA\",89.00,100.00,0.00,\"\",0.00,96.00,57.00,335.00,4.00,0.00,11.00,0.00,85.00,\n2015,5,12,\"EV\",\"4998\",\"PIT\",\"LGA\",-6.00,-2.00,0.00,\"\",0.00,89.00,59.00,335.00,,,,,,\n2015,5,15,\"EV\",\"4998\",\"PIT\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,80.00,60.00,335.00,,,,,,\n2015,5,14,\"EV\",\"4998\",\"PIT\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,78.00,59.00,335.00,,,,,,\n2015,5,13,\"EV\",\"4998\",\"PIT\",\"LGA\",-10.00,-12.00,0.00,\"\",0.00,83.00,58.00,335.00,,,,,,\n2015,5,11,\"EV\",\"4998\",\"PIT\",\"LGA\",79.00,84.00,0.00,\"\",0.00,90.00,64.00,335.00,72.00,0.00,5.00,0.00,7.00,\n2015,5,18,\"EV\",\"4998\",\"PIT\",\"LGA\",,,1.00,\"B\",0.00,,,335.00,,,,,,\n2015,5,19,\"EV\",\"4998\",\"PIT\",\"LGA\",,,1.00,\"B\",0.00,,,335.00,,,,,,\n2015,5,28,\"EV\",\"4998\",\"PIT\",\"LGA\",,,1.00,\"A\",0.00,,,335.00,,,,,,\n2015,5,31,\"EV\",\"4998\",\"PIT\",\"LGA\",,,1.00,\"A\",0.00,,,335.00,,,,,,\n2015,5,26,\"EV\",\"4998\",\"PIT\",\"LGA\",,,1.00,\"A\",0.00,,,335.00,,,,,,\n2015,5,5,\"EV\",\"5141\",\"ATL\",\"HPN\",-5.00,-4.00,0.00,\"\",0.00,142.00,120.00,780.00,,,,,,\n2015,5,27,\"EV\",\"5141\",\"ATL\",\"HPN\",57.00,47.00,0.00,\"\",0.00,131.00,107.00,780.00,47.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"EV\",\"5141\",\"ATL\",\"HPN\",4.00,-3.00,0.00,\"\",0.00,134.00,115.00,780.00,,,,,,\n2015,5,6,\"EV\",\"5141\",\"ATL\",\"HPN\",2.00,-10.00,0.00,\"\",0.00,129.00,111.00,780.00,,,,,,\n2015,5,20,\"EV\",\"5141\",\"ATL\",\"HPN\",-3.00,4.00,0.00,\"\",0.00,148.00,108.00,780.00,,,,,,\n2015,5,31,\"EV\",\"5141\",\"ATL\",\"HPN\",20.00,64.00,0.00,\"\",0.00,185.00,163.00,780.00,20.00,0.00,44.00,0.00,0.00,\n2015,5,8,\"EV\",\"5141\",\"ATL\",\"HPN\",-2.00,-1.00,0.00,\"\",0.00,142.00,117.00,780.00,,,,,,\n2015,5,10,\"EV\",\"5141\",\"ATL\",\"HPN\",-1.00,-7.00,0.00,\"\",0.00,135.00,117.00,780.00,,,,,,\n2015,5,11,\"EV\",\"5141\",\"ATL\",\"HPN\",-2.00,6.00,0.00,\"\",0.00,149.00,112.00,780.00,,,,,,\n2015,5,18,\"EV\",\"5141\",\"ATL\",\"HPN\",26.00,81.00,0.00,\"\",0.00,196.00,123.00,780.00,7.00,0.00,55.00,0.00,19.00,\n2015,5,21,\"EV\",\"5141\",\"ATL\",\"HPN\",15.00,2.00,0.00,\"\",0.00,128.00,110.00,780.00,,,,,,\n2015,5,22,\"EV\",\"5141\",\"ATL\",\"HPN\",-7.00,-22.00,0.00,\"\",0.00,126.00,103.00,780.00,,,,,,\n2015,5,12,\"EV\",\"5141\",\"ATL\",\"HPN\",-2.00,-17.00,0.00,\"\",0.00,126.00,109.00,780.00,,,,,,\n2015,5,13,\"EV\",\"5141\",\"ATL\",\"HPN\",-2.00,-5.00,0.00,\"\",0.00,138.00,115.00,780.00,,,,,,\n2015,5,14,\"EV\",\"5141\",\"ATL\",\"HPN\",-7.00,-5.00,0.00,\"\",0.00,143.00,118.00,780.00,,,,,,\n2015,5,15,\"EV\",\"5141\",\"ATL\",\"HPN\",1.00,-10.00,0.00,\"\",0.00,130.00,109.00,780.00,,,,,,\n2015,5,19,\"EV\",\"5141\",\"ATL\",\"HPN\",39.00,32.00,0.00,\"\",0.00,134.00,109.00,780.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,17,\"EV\",\"5141\",\"HPN\",\"ATL\",-2.00,24.00,0.00,\"\",0.00,168.00,107.00,780.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,25,\"EV\",\"5141\",\"HPN\",\"ATL\",-5.00,77.00,0.00,\"\",0.00,224.00,153.00,780.00,0.00,0.00,77.00,0.00,0.00,\n2015,5,1,\"EV\",\"5141\",\"HPN\",\"ATL\",-3.00,-17.00,0.00,\"\",0.00,128.00,97.00,780.00,,,,,,\n2015,5,3,\"EV\",\"5141\",\"HPN\",\"ATL\",-3.00,-16.00,0.00,\"\",0.00,129.00,102.00,780.00,,,,,,\n2015,5,4,\"EV\",\"5141\",\"HPN\",\"ATL\",-13.00,-37.00,0.00,\"\",0.00,118.00,104.00,780.00,,,,,,\n2015,5,26,\"EV\",\"5141\",\"HPN\",\"ATL\",76.00,82.00,0.00,\"\",0.00,148.00,110.00,780.00,0.00,0.00,82.00,0.00,0.00,\n2015,5,29,\"EV\",\"5141\",\"HPN\",\"ATL\",-5.00,6.00,0.00,\"\",0.00,153.00,121.00,780.00,,,,,,\n2015,5,6,\"EV\",\"5141\",\"HPN\",\"ATL\",-9.00,-33.00,0.00,\"\",0.00,118.00,106.00,780.00,,,,,,\n2015,5,5,\"EV\",\"5141\",\"HPN\",\"ATL\",-2.00,-11.00,0.00,\"\",0.00,133.00,108.00,780.00,,,,,,\n2015,5,7,\"EV\",\"5141\",\"HPN\",\"ATL\",3.00,-16.00,0.00,\"\",0.00,123.00,103.00,780.00,,,,,,\n2015,5,18,\"EV\",\"5141\",\"HPN\",\"ATL\",80.00,134.00,0.00,\"\",0.00,196.00,128.00,780.00,53.00,0.00,54.00,0.00,27.00,\n2015,5,10,\"EV\",\"5141\",\"HPN\",\"ATL\",0.00,-15.00,0.00,\"\",0.00,127.00,103.00,780.00,,,,,,\n2015,5,27,\"EV\",\"5141\",\"HPN\",\"ATL\",92.00,105.00,0.00,\"\",0.00,155.00,121.00,780.00,58.00,0.00,13.00,0.00,34.00,\n2015,5,8,\"EV\",\"5141\",\"HPN\",\"ATL\",-5.00,-25.00,0.00,\"\",0.00,122.00,97.00,780.00,,,,,,\n2015,5,20,\"EV\",\"5141\",\"HPN\",\"ATL\",-3.00,-15.00,0.00,\"\",0.00,130.00,114.00,780.00,,,,,,\n2015,5,28,\"EV\",\"5141\",\"HPN\",\"ATL\",46.00,47.00,0.00,\"\",0.00,143.00,114.00,780.00,10.00,0.00,4.00,0.00,33.00,\n2015,5,21,\"EV\",\"5141\",\"HPN\",\"ATL\",-1.00,9.00,0.00,\"\",0.00,152.00,125.00,780.00,,,,,,\n2015,5,22,\"EV\",\"5141\",\"HPN\",\"ATL\",-5.00,-19.00,0.00,\"\",0.00,128.00,109.00,780.00,,,,,,\n2015,5,12,\"EV\",\"5141\",\"HPN\",\"ATL\",-3.00,-4.00,0.00,\"\",0.00,141.00,113.00,780.00,,,,,,\n2015,5,14,\"EV\",\"5141\",\"HPN\",\"ATL\",-3.00,-22.00,0.00,\"\",0.00,123.00,106.00,780.00,,,,,,\n2015,5,19,\"EV\",\"5141\",\"HPN\",\"ATL\",33.00,45.00,0.00,\"\",0.00,154.00,108.00,780.00,13.00,0.00,12.00,0.00,20.00,\n2015,5,31,\"EV\",\"5141\",\"HPN\",\"ATL\",66.00,64.00,0.00,\"\",0.00,140.00,114.00,780.00,0.00,0.00,0.00,0.00,64.00,\n2015,5,11,\"EV\",\"5141\",\"HPN\",\"ATL\",9.00,18.00,0.00,\"\",0.00,151.00,112.00,780.00,9.00,0.00,9.00,0.00,0.00,\n2015,5,15,\"EV\",\"5141\",\"HPN\",\"ATL\",-7.00,-21.00,0.00,\"\",0.00,128.00,107.00,780.00,,,,,,\n2015,5,13,\"EV\",\"5141\",\"HPN\",\"ATL\",4.00,-15.00,0.00,\"\",0.00,123.00,101.00,780.00,,,,,,\n2015,5,1,\"EV\",\"5146\",\"ATL\",\"HPN\",0.00,-2.00,0.00,\"\",0.00,133.00,113.00,780.00,,,,,,\n2015,5,2,\"EV\",\"5146\",\"ATL\",\"HPN\",-1.00,5.00,0.00,\"\",0.00,139.00,116.00,780.00,,,,,,\n2015,5,17,\"EV\",\"5146\",\"ATL\",\"HPN\",-3.00,-5.00,0.00,\"\",0.00,133.00,115.00,780.00,,,,,,\n2015,5,28,\"EV\",\"5146\",\"ATL\",\"HPN\",-2.00,-8.00,0.00,\"\",0.00,129.00,111.00,780.00,,,,,,\n2015,5,26,\"EV\",\"5146\",\"ATL\",\"HPN\",-3.00,-7.00,0.00,\"\",0.00,131.00,107.00,780.00,,,,,,\n2015,5,4,\"EV\",\"5146\",\"ATL\",\"HPN\",-3.00,-5.00,0.00,\"\",0.00,133.00,114.00,780.00,,,,,,\n2015,5,29,\"EV\",\"5146\",\"ATL\",\"HPN\",-4.00,-1.00,0.00,\"\",0.00,138.00,118.00,780.00,,,,,,\n2015,5,25,\"EV\",\"5146\",\"ATL\",\"HPN\",0.00,-2.00,0.00,\"\",0.00,133.00,109.00,780.00,,,,,,\n2015,5,3,\"EV\",\"5146\",\"ATL\",\"HPN\",-3.00,1.00,0.00,\"\",0.00,139.00,117.00,780.00,,,,,,\n2015,5,6,\"EV\",\"5146\",\"ATL\",\"HPN\",-2.00,2.00,0.00,\"\",0.00,139.00,108.00,780.00,,,,,,\n2015,5,5,\"EV\",\"5146\",\"ATL\",\"HPN\",-1.00,-4.00,0.00,\"\",0.00,132.00,106.00,780.00,,,,,,\n2015,5,18,\"EV\",\"5146\",\"ATL\",\"HPN\",-3.00,60.00,0.00,\"\",0.00,198.00,141.00,780.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,30,\"EV\",\"5146\",\"ATL\",\"HPN\",18.00,15.00,0.00,\"\",0.00,130.00,110.00,780.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"EV\",\"5146\",\"ATL\",\"HPN\",28.00,36.00,0.00,\"\",0.00,143.00,114.00,780.00,0.00,0.00,8.00,0.00,28.00,\n2015,5,7,\"EV\",\"5146\",\"ATL\",\"HPN\",148.00,150.00,0.00,\"\",0.00,137.00,111.00,780.00,148.00,0.00,2.00,0.00,0.00,\n2015,5,8,\"EV\",\"5146\",\"ATL\",\"HPN\",0.00,5.00,0.00,\"\",0.00,140.00,120.00,780.00,,,,,,\n2015,5,19,\"EV\",\"5146\",\"ATL\",\"HPN\",0.00,11.00,0.00,\"\",0.00,146.00,113.00,780.00,,,,,,\n2015,5,31,\"EV\",\"5146\",\"ATL\",\"HPN\",-1.00,100.00,0.00,\"\",0.00,236.00,121.00,780.00,0.00,0.00,100.00,0.00,0.00,\n2015,5,10,\"EV\",\"5146\",\"ATL\",\"HPN\",32.00,29.00,0.00,\"\",0.00,132.00,111.00,780.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"EV\",\"5146\",\"ATL\",\"HPN\",-2.00,20.00,0.00,\"\",0.00,157.00,130.00,780.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,11,\"EV\",\"5146\",\"ATL\",\"HPN\",-5.00,-2.00,0.00,\"\",0.00,138.00,120.00,780.00,,,,,,\n2015,5,21,\"EV\",\"5146\",\"ATL\",\"HPN\",9.00,0.00,0.00,\"\",0.00,126.00,110.00,780.00,,,,,,\n2015,5,24,\"EV\",\"5146\",\"ATL\",\"HPN\",-3.00,2.00,0.00,\"\",0.00,140.00,119.00,780.00,,,,,,\n2015,5,12,\"EV\",\"5146\",\"ATL\",\"HPN\",0.00,-8.00,0.00,\"\",0.00,127.00,109.00,780.00,,,,,,\n2015,5,23,\"EV\",\"5146\",\"ATL\",\"HPN\",3.00,-1.00,0.00,\"\",0.00,129.00,106.00,780.00,,,,,,\n2015,5,13,\"EV\",\"5146\",\"ATL\",\"HPN\",102.00,97.00,0.00,\"\",0.00,130.00,113.00,780.00,97.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"EV\",\"5146\",\"ATL\",\"HPN\",36.00,25.00,0.00,\"\",0.00,124.00,106.00,780.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"EV\",\"5146\",\"ATL\",\"HPN\",-2.00,-2.00,0.00,\"\",0.00,133.00,110.00,780.00,,,,,,\n2015,5,22,\"EV\",\"5146\",\"ATL\",\"HPN\",11.00,-1.00,0.00,\"\",0.00,123.00,102.00,780.00,,,,,,\n2015,5,14,\"EV\",\"5146\",\"ATL\",\"HPN\",-4.00,8.00,0.00,\"\",0.00,147.00,113.00,780.00,,,,,,\n2015,5,25,\"EV\",\"5146\",\"HPN\",\"ATL\",0.00,10.00,0.00,\"\",0.00,147.00,116.00,780.00,,,,,,\n2015,5,9,\"EV\",\"5146\",\"HPN\",\"ATL\",-8.00,-16.00,0.00,\"\",0.00,127.00,102.00,780.00,,,,,,\n2015,5,17,\"EV\",\"5146\",\"HPN\",\"ATL\",-5.00,8.00,0.00,\"\",0.00,150.00,107.00,780.00,,,,,,\n2015,5,1,\"EV\",\"5146\",\"HPN\",\"ATL\",-4.00,-11.00,0.00,\"\",0.00,130.00,108.00,780.00,,,,,,\n2015,5,5,\"EV\",\"5146\",\"HPN\",\"ATL\",-4.00,-6.00,0.00,\"\",0.00,135.00,111.00,780.00,,,,,,\n2015,5,28,\"EV\",\"5146\",\"HPN\",\"ATL\",23.00,32.00,0.00,\"\",0.00,146.00,113.00,780.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,26,\"EV\",\"5146\",\"HPN\",\"ATL\",185.00,179.00,0.00,\"\",0.00,131.00,108.00,780.00,0.00,0.00,179.00,0.00,0.00,\n2015,5,6,\"EV\",\"5146\",\"HPN\",\"ATL\",-5.00,-6.00,0.00,\"\",0.00,136.00,108.00,780.00,,,,,,\n2015,5,4,\"EV\",\"5146\",\"HPN\",\"ATL\",-7.00,-17.00,0.00,\"\",0.00,127.00,102.00,780.00,,,,,,\n2015,5,29,\"EV\",\"5146\",\"HPN\",\"ATL\",-4.00,15.00,0.00,\"\",0.00,156.00,115.00,780.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,18,\"EV\",\"5146\",\"HPN\",\"ATL\",59.00,64.00,0.00,\"\",0.00,142.00,124.00,780.00,4.00,0.00,5.00,0.00,55.00,\n2015,5,2,\"EV\",\"5146\",\"HPN\",\"ATL\",23.00,13.00,0.00,\"\",0.00,125.00,102.00,780.00,,,,,,\n2015,5,8,\"EV\",\"5146\",\"HPN\",\"ATL\",-2.00,-18.00,0.00,\"\",0.00,121.00,101.00,780.00,,,,,,\n2015,5,19,\"EV\",\"5146\",\"HPN\",\"ATL\",8.00,11.00,0.00,\"\",0.00,140.00,114.00,780.00,,,,,,\n2015,5,22,\"EV\",\"5146\",\"HPN\",\"ATL\",-1.00,12.00,0.00,\"\",0.00,150.00,117.00,780.00,,,,,,\n2015,5,21,\"EV\",\"5146\",\"HPN\",\"ATL\",0.00,-3.00,0.00,\"\",0.00,134.00,117.00,780.00,,,,,,\n2015,5,11,\"EV\",\"5146\",\"HPN\",\"ATL\",-5.00,2.00,0.00,\"\",0.00,144.00,116.00,780.00,,,,,,\n2015,5,20,\"EV\",\"5146\",\"HPN\",\"ATL\",23.00,12.00,0.00,\"\",0.00,126.00,109.00,780.00,,,,,,\n2015,5,24,\"EV\",\"5146\",\"HPN\",\"ATL\",-4.00,-14.00,0.00,\"\",0.00,127.00,103.00,780.00,,,,,,\n2015,5,12,\"EV\",\"5146\",\"HPN\",\"ATL\",-2.00,5.00,0.00,\"\",0.00,144.00,116.00,780.00,,,,,,\n2015,5,23,\"EV\",\"5146\",\"HPN\",\"ATL\",-1.00,-4.00,0.00,\"\",0.00,132.00,115.00,780.00,,,,,,\n2015,5,30,\"EV\",\"5146\",\"HPN\",\"ATL\",21.00,31.00,0.00,\"\",0.00,145.00,110.00,780.00,16.00,0.00,10.00,0.00,5.00,\n2015,5,16,\"EV\",\"5146\",\"HPN\",\"ATL\",10.00,8.00,0.00,\"\",0.00,133.00,111.00,780.00,,,,,,\n2015,5,31,\"EV\",\"5146\",\"HPN\",\"ATL\",110.00,113.00,0.00,\"\",0.00,140.00,115.00,780.00,13.00,0.00,3.00,0.00,97.00,\n2015,5,13,\"EV\",\"5146\",\"HPN\",\"ATL\",90.00,98.00,0.00,\"\",0.00,145.00,113.00,780.00,1.00,0.00,8.00,0.00,89.00,\n2015,5,15,\"EV\",\"5146\",\"HPN\",\"ATL\",25.00,18.00,0.00,\"\",0.00,130.00,106.00,780.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,27,\"EV\",\"5146\",\"HPN\",\"ATL\",37.00,42.00,0.00,\"\",0.00,142.00,114.00,780.00,6.00,0.00,5.00,0.00,31.00,\n2015,5,14,\"EV\",\"5146\",\"HPN\",\"ATL\",16.00,3.00,0.00,\"\",0.00,124.00,107.00,780.00,,,,,,\n2015,5,7,\"EV\",\"5146\",\"HPN\",\"ATL\",151.00,135.00,0.00,\"\",0.00,121.00,102.00,780.00,0.00,0.00,0.00,0.00,135.00,\n2015,5,3,\"EV\",\"5146\",\"HPN\",\"ATL\",13.00,9.00,0.00,\"\",0.00,133.00,104.00,780.00,,,,,,\n2015,5,17,\"EV\",\"5147\",\"LGA\",\"MCI\",-2.00,-12.00,0.00,\"\",0.00,194.00,147.00,1107.00,,,,,,\n2015,5,25,\"EV\",\"5147\",\"LGA\",\"MCI\",35.00,14.00,0.00,\"\",0.00,183.00,151.00,1107.00,,,,,,\n2015,5,29,\"EV\",\"5147\",\"LGA\",\"MCI\",16.00,-1.00,0.00,\"\",0.00,187.00,149.00,1107.00,,,,,,\n2015,5,28,\"EV\",\"5147\",\"LGA\",\"MCI\",1.00,-12.00,0.00,\"\",0.00,191.00,149.00,1107.00,,,,,,\n2015,5,4,\"EV\",\"5147\",\"LGA\",\"MCI\",-3.00,-23.00,0.00,\"\",0.00,184.00,153.00,1107.00,,,,,,\n2015,5,3,\"EV\",\"5147\",\"LGA\",\"MCI\",-1.00,-9.00,0.00,\"\",0.00,196.00,154.00,1107.00,,,,,,\n2015,5,1,\"EV\",\"5147\",\"LGA\",\"MCI\",-1.00,-27.00,0.00,\"\",0.00,178.00,148.00,1107.00,,,,,,\n2015,5,5,\"EV\",\"5147\",\"LGA\",\"MCI\",44.00,15.00,0.00,\"\",0.00,175.00,144.00,1107.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"EV\",\"5147\",\"LGA\",\"MCI\",35.00,6.00,0.00,\"\",0.00,175.00,143.00,1107.00,,,,,,\n2015,5,27,\"EV\",\"5147\",\"LGA\",\"MCI\",1.00,-22.00,0.00,\"\",0.00,181.00,148.00,1107.00,,,,,,\n2015,5,6,\"EV\",\"5147\",\"LGA\",\"MCI\",-8.00,-7.00,0.00,\"\",0.00,205.00,144.00,1107.00,,,,,,\n2015,5,7,\"EV\",\"5147\",\"LGA\",\"MCI\",-5.00,2.00,0.00,\"\",0.00,211.00,158.00,1107.00,,,,,,\n2015,5,31,\"EV\",\"5147\",\"LGA\",\"MCI\",3.00,-31.00,0.00,\"\",0.00,170.00,149.00,1107.00,,,,,,\n2015,5,8,\"EV\",\"5147\",\"LGA\",\"MCI\",-3.00,-24.00,0.00,\"\",0.00,183.00,154.00,1107.00,,,,,,\n2015,5,10,\"EV\",\"5147\",\"LGA\",\"MCI\",12.00,2.00,0.00,\"\",0.00,194.00,153.00,1107.00,,,,,,\n2015,5,22,\"EV\",\"5147\",\"LGA\",\"MCI\",-4.00,4.00,0.00,\"\",0.00,212.00,167.00,1107.00,,,,,,\n2015,5,21,\"EV\",\"5147\",\"LGA\",\"MCI\",-4.00,3.00,0.00,\"\",0.00,211.00,176.00,1107.00,,,,,,\n2015,5,11,\"EV\",\"5147\",\"LGA\",\"MCI\",-3.00,-19.00,0.00,\"\",0.00,188.00,159.00,1107.00,,,,,,\n2015,5,20,\"EV\",\"5147\",\"LGA\",\"MCI\",67.00,62.00,0.00,\"\",0.00,199.00,161.00,1107.00,62.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"EV\",\"5147\",\"LGA\",\"MCI\",-5.00,-4.00,0.00,\"\",0.00,205.00,182.00,1107.00,,,,,,\n2015,5,13,\"EV\",\"5147\",\"LGA\",\"MCI\",0.00,11.00,0.00,\"\",0.00,215.00,164.00,1107.00,,,,,,\n2015,5,14,\"EV\",\"5147\",\"LGA\",\"MCI\",-3.00,3.00,0.00,\"\",0.00,210.00,152.00,1107.00,,,,,,\n2015,5,19,\"EV\",\"5147\",\"LGA\",\"MCI\",58.00,40.00,0.00,\"\",0.00,186.00,161.00,1107.00,0.00,0.00,0.00,0.00,40.00,\n2015,5,15,\"EV\",\"5147\",\"LGA\",\"MCI\",4.00,11.00,0.00,\"\",0.00,211.00,183.00,1107.00,,,,,,\n2015,5,18,\"EV\",\"5147\",\"LGA\",\"MCI\",,,1.00,\"B\",0.00,,,1107.00,,,,,,\n2015,5,1,\"EV\",\"5150\",\"CLE\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,95.00,71.00,419.00,,,,,,\n2015,5,28,\"EV\",\"5150\",\"CLE\",\"LGA\",5.00,-4.00,0.00,\"\",0.00,89.00,66.00,419.00,,,,,,\n2015,5,26,\"EV\",\"5150\",\"CLE\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,93.00,69.00,419.00,,,,,,\n2015,5,4,\"EV\",\"5150\",\"CLE\",\"LGA\",-10.00,-17.00,0.00,\"\",0.00,91.00,73.00,419.00,,,,,,\n2015,5,25,\"EV\",\"5150\",\"CLE\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,96.00,71.00,419.00,,,,,,\n2015,5,17,\"EV\",\"5150\",\"CLE\",\"LGA\",-8.00,16.00,0.00,\"\",0.00,122.00,66.00,419.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,5,\"EV\",\"5150\",\"CLE\",\"LGA\",-8.00,-12.00,0.00,\"\",0.00,94.00,72.00,419.00,,,,,,\n2015,5,27,\"EV\",\"5150\",\"CLE\",\"LGA\",-4.00,0.00,0.00,\"\",0.00,102.00,73.00,419.00,,,,,,\n2015,5,7,\"EV\",\"5150\",\"CLE\",\"LGA\",-9.00,-16.00,0.00,\"\",0.00,91.00,73.00,419.00,,,,,,\n2015,5,21,\"EV\",\"5150\",\"CLE\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,93.00,70.00,419.00,,,,,,\n2015,5,20,\"EV\",\"5150\",\"CLE\",\"LGA\",2.00,-21.00,0.00,\"\",0.00,75.00,58.00,419.00,,,,,,\n2015,5,19,\"EV\",\"5150\",\"CLE\",\"LGA\",84.00,74.00,0.00,\"\",0.00,88.00,63.00,419.00,0.00,0.00,74.00,0.00,0.00,\n2015,5,12,\"EV\",\"5150\",\"CLE\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,88.00,66.00,419.00,,,,,,\n2015,5,11,\"EV\",\"5150\",\"CLE\",\"LGA\",-8.00,7.00,0.00,\"\",0.00,113.00,72.00,419.00,,,,,,\n2015,5,22,\"EV\",\"5150\",\"CLE\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,89.00,66.00,419.00,,,,,,\n2015,5,14,\"EV\",\"5150\",\"CLE\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,96.00,71.00,419.00,,,,,,\n2015,5,15,\"EV\",\"5150\",\"CLE\",\"LGA\",86.00,79.00,0.00,\"\",0.00,91.00,71.00,419.00,79.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"EV\",\"5150\",\"CLE\",\"LGA\",92.00,78.00,0.00,\"\",0.00,84.00,70.00,419.00,0.00,0.00,0.00,0.00,78.00,\n2015,5,18,\"EV\",\"5150\",\"CLE\",\"LGA\",,,1.00,\"B\",0.00,,,419.00,,,,,,\n2015,5,8,\"EV\",\"5150\",\"CLE\",\"LGA\",,,1.00,\"A\",0.00,,,419.00,,,,,,\n2015,5,31,\"EV\",\"5150\",\"CLE\",\"LGA\",,,1.00,\"A\",0.00,,,419.00,,,,,,\n2015,5,1,\"EV\",\"5152\",\"BUF\",\"LGA\",-6.00,-22.00,0.00,\"\",0.00,69.00,49.00,292.00,,,,,,\n2015,5,6,\"EV\",\"5164\",\"LGA\",\"MKE\",-10.00,-16.00,0.00,\"\",0.00,157.00,113.00,738.00,,,,,,\n2015,5,2,\"EV\",\"5165\",\"LGA\",\"MHT\",-8.00,-29.00,0.00,\"\",0.00,61.00,35.00,195.00,,,,,,\n2015,5,18,\"EV\",\"5166\",\"ALB\",\"DTW\",-5.00,-9.00,0.00,\"\",0.00,102.00,82.00,489.00,,,,,,\n2015,5,18,\"EV\",\"5166\",\"DTW\",\"ALB\",-5.00,-2.00,0.00,\"\",0.00,92.00,71.00,489.00,,,,,,\n2015,5,28,\"EV\",\"5169\",\"LGA\",\"BHM\",-10.00,4.00,0.00,\"\",0.00,168.00,114.00,866.00,,,,,,\n2015,5,17,\"EV\",\"5169\",\"LGA\",\"BHM\",-6.00,-16.00,0.00,\"\",0.00,144.00,119.00,866.00,,,,,,\n2015,5,26,\"EV\",\"5169\",\"LGA\",\"BHM\",-4.00,-16.00,0.00,\"\",0.00,142.00,119.00,866.00,,,,,,\n2015,5,3,\"EV\",\"5169\",\"LGA\",\"BHM\",-7.00,-23.00,0.00,\"\",0.00,138.00,116.00,866.00,,,,,,\n2015,5,25,\"EV\",\"5169\",\"LGA\",\"BHM\",29.00,12.00,0.00,\"\",0.00,137.00,114.00,866.00,,,,,,\n2015,5,4,\"EV\",\"5169\",\"LGA\",\"BHM\",-9.00,-26.00,0.00,\"\",0.00,137.00,112.00,866.00,,,,,,\n2015,5,5,\"EV\",\"5169\",\"LGA\",\"BHM\",4.00,-2.00,0.00,\"\",0.00,148.00,122.00,866.00,,,,,,\n2015,5,27,\"EV\",\"5169\",\"LGA\",\"BHM\",86.00,91.00,0.00,\"\",0.00,159.00,126.00,866.00,0.00,0.00,5.00,0.00,86.00,\n2015,5,7,\"EV\",\"5169\",\"LGA\",\"BHM\",-10.00,-22.00,0.00,\"\",0.00,142.00,112.00,866.00,,,,,,\n2015,5,29,\"EV\",\"5169\",\"LGA\",\"BHM\",59.00,34.00,0.00,\"\",0.00,129.00,109.00,866.00,34.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"EV\",\"5169\",\"LGA\",\"BHM\",-7.00,-16.00,0.00,\"\",0.00,145.00,113.00,866.00,,,,,,\n2015,5,21,\"EV\",\"5169\",\"LGA\",\"BHM\",-7.00,-6.00,0.00,\"\",0.00,155.00,134.00,866.00,,,,,,\n2015,5,22,\"EV\",\"5169\",\"LGA\",\"BHM\",-9.00,-21.00,0.00,\"\",0.00,142.00,124.00,866.00,,,,,,\n2015,5,10,\"EV\",\"5169\",\"LGA\",\"BHM\",2.00,10.00,0.00,\"\",0.00,162.00,114.00,866.00,,,,,,\n2015,5,20,\"EV\",\"5169\",\"LGA\",\"BHM\",-1.00,66.00,0.00,\"\",0.00,221.00,142.00,866.00,0.00,0.00,66.00,0.00,0.00,\n2015,5,8,\"EV\",\"5169\",\"LGA\",\"BHM\",-3.00,-26.00,0.00,\"\",0.00,131.00,107.00,866.00,,,,,,\n2015,5,13,\"EV\",\"5169\",\"LGA\",\"BHM\",-12.00,-4.00,0.00,\"\",0.00,162.00,118.00,866.00,,,,,,\n2015,5,12,\"EV\",\"5169\",\"LGA\",\"BHM\",-10.00,-19.00,0.00,\"\",0.00,145.00,128.00,866.00,,,,,,\n2015,5,14,\"EV\",\"5169\",\"LGA\",\"BHM\",-7.00,-24.00,0.00,\"\",0.00,137.00,115.00,866.00,,,,,,\n2015,5,1,\"EV\",\"5169\",\"LGA\",\"BHM\",39.00,22.00,0.00,\"\",0.00,137.00,109.00,866.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,19,\"EV\",\"5169\",\"LGA\",\"BHM\",27.00,19.00,0.00,\"\",0.00,146.00,122.00,866.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,15,\"EV\",\"5169\",\"LGA\",\"BHM\",159.00,129.00,0.00,\"\",0.00,124.00,109.00,866.00,129.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"EV\",\"5169\",\"LGA\",\"BHM\",146.00,124.00,0.00,\"\",0.00,132.00,117.00,866.00,0.00,0.00,0.00,0.00,124.00,\n2015,5,18,\"EV\",\"5169\",\"LGA\",\"BHM\",,,1.00,\"B\",0.00,,,866.00,,,,,,\n2015,5,31,\"EV\",\"5169\",\"LGA\",\"BHM\",,,1.00,\"A\",0.00,,,866.00,,,,,,\n2015,5,29,\"EV\",\"5177\",\"LGA\",\"RIC\",-7.00,-9.00,0.00,\"\",0.00,93.00,55.00,292.00,,,,,,\n2015,5,4,\"EV\",\"5177\",\"LGA\",\"RIC\",6.00,-11.00,0.00,\"\",0.00,78.00,57.00,292.00,,,,,,\n2015,5,25,\"EV\",\"5177\",\"LGA\",\"RIC\",-7.00,-3.00,0.00,\"\",0.00,99.00,50.00,292.00,,,,,,\n2015,5,1,\"EV\",\"5177\",\"LGA\",\"RIC\",-7.00,8.00,0.00,\"\",0.00,110.00,67.00,292.00,,,,,,\n2015,5,17,\"EV\",\"5177\",\"LGA\",\"RIC\",-2.00,-20.00,0.00,\"\",0.00,77.00,53.00,292.00,,,,,,\n2015,5,3,\"EV\",\"5177\",\"LGA\",\"RIC\",-2.00,-13.00,0.00,\"\",0.00,84.00,49.00,292.00,,,,,,\n2015,5,6,\"EV\",\"5177\",\"LGA\",\"RIC\",-3.00,-4.00,0.00,\"\",0.00,94.00,57.00,292.00,,,,,,\n2015,5,27,\"EV\",\"5177\",\"LGA\",\"RIC\",-2.00,-25.00,0.00,\"\",0.00,72.00,50.00,292.00,,,,,,\n2015,5,31,\"EV\",\"5177\",\"LGA\",\"RIC\",1.00,-21.00,0.00,\"\",0.00,73.00,49.00,292.00,,,,,,\n2015,5,10,\"EV\",\"5177\",\"LGA\",\"RIC\",-2.00,-18.00,0.00,\"\",0.00,79.00,53.00,292.00,,,,,,\n2015,5,20,\"EV\",\"5177\",\"LGA\",\"RIC\",-10.00,-12.00,0.00,\"\",0.00,93.00,53.00,292.00,,,,,,\n2015,5,22,\"EV\",\"5177\",\"LGA\",\"RIC\",-5.00,-2.00,0.00,\"\",0.00,98.00,56.00,292.00,,,,,,\n2015,5,21,\"EV\",\"5177\",\"LGA\",\"RIC\",5.00,-8.00,0.00,\"\",0.00,82.00,58.00,292.00,,,,,,\n2015,5,13,\"EV\",\"5177\",\"LGA\",\"RIC\",-8.00,-17.00,0.00,\"\",0.00,86.00,49.00,292.00,,,,,,\n2015,5,14,\"EV\",\"5177\",\"LGA\",\"RIC\",-5.00,-16.00,0.00,\"\",0.00,84.00,51.00,292.00,,,,,,\n2015,5,24,\"EV\",\"5177\",\"LGA\",\"RIC\",-3.00,-30.00,0.00,\"\",0.00,69.00,53.00,292.00,,,,,,\n2015,5,8,\"EV\",\"5177\",\"LGA\",\"RIC\",25.00,27.00,0.00,\"\",0.00,97.00,53.00,292.00,7.00,0.00,2.00,0.00,18.00,\n2015,5,7,\"EV\",\"5177\",\"LGA\",\"RIC\",94.00,79.00,0.00,\"\",0.00,80.00,48.00,292.00,4.00,0.00,0.00,0.00,75.00,\n2015,5,11,\"EV\",\"5177\",\"LGA\",\"RIC\",7.00,8.00,0.00,\"\",0.00,96.00,62.00,292.00,,,,,,\n2015,5,15,\"EV\",\"5177\",\"LGA\",\"RIC\",18.00,3.00,0.00,\"\",0.00,80.00,51.00,292.00,,,,,,\n2015,5,28,\"EV\",\"5177\",\"LGA\",\"RIC\",,,1.00,\"B\",0.00,,,292.00,,,,,,\n2015,5,18,\"EV\",\"5177\",\"LGA\",\"RIC\",,,1.00,\"B\",0.00,,,292.00,,,,,,\n2015,5,12,\"EV\",\"5178\",\"CLT\",\"LGA\",-8.00,-7.00,0.00,\"\",0.00,115.00,79.00,544.00,,,,,,\n2015,5,9,\"EV\",\"5179\",\"HPN\",\"ATL\",-1.00,-5.00,0.00,\"\",0.00,130.00,104.00,780.00,,,,,,\n2015,5,28,\"EV\",\"5179\",\"HPN\",\"ATL\",-6.00,-15.00,0.00,\"\",0.00,127.00,109.00,780.00,,,,,,\n2015,5,25,\"EV\",\"5179\",\"HPN\",\"ATL\",-5.00,-13.00,0.00,\"\",0.00,128.00,114.00,780.00,,,,,,\n2015,5,1,\"EV\",\"5179\",\"HPN\",\"ATL\",-6.00,-19.00,0.00,\"\",0.00,123.00,106.00,780.00,,,,,,\n2015,5,2,\"EV\",\"5179\",\"HPN\",\"ATL\",38.00,27.00,0.00,\"\",0.00,123.00,101.00,780.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"EV\",\"5179\",\"HPN\",\"ATL\",-4.00,-1.00,0.00,\"\",0.00,139.00,116.00,780.00,,,,,,\n2015,5,26,\"EV\",\"5179\",\"HPN\",\"ATL\",-5.00,-3.00,0.00,\"\",0.00,138.00,115.00,780.00,,,,,,\n2015,5,29,\"EV\",\"5179\",\"HPN\",\"ATL\",134.00,131.00,0.00,\"\",0.00,133.00,108.00,780.00,131.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"EV\",\"5179\",\"HPN\",\"ATL\",-3.00,-11.00,0.00,\"\",0.00,126.00,107.00,780.00,,,,,,\n2015,5,6,\"EV\",\"5179\",\"HPN\",\"ATL\",-5.00,-7.00,0.00,\"\",0.00,134.00,111.00,780.00,,,,,,\n2015,5,4,\"EV\",\"5179\",\"HPN\",\"ATL\",22.00,10.00,0.00,\"\",0.00,124.00,101.00,780.00,,,,,,\n2015,5,5,\"EV\",\"5179\",\"HPN\",\"ATL\",168.00,158.00,0.00,\"\",0.00,126.00,104.00,780.00,158.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"EV\",\"5179\",\"HPN\",\"ATL\",-5.00,-17.00,0.00,\"\",0.00,124.00,109.00,780.00,,,,,,\n2015,5,18,\"EV\",\"5179\",\"HPN\",\"ATL\",-7.00,-20.00,0.00,\"\",0.00,123.00,102.00,780.00,,,,,,\n2015,5,19,\"EV\",\"5179\",\"HPN\",\"ATL\",0.00,33.00,0.00,\"\",0.00,169.00,109.00,780.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,8,\"EV\",\"5179\",\"HPN\",\"ATL\",0.00,0.00,0.00,\"\",0.00,136.00,104.00,780.00,,,,,,\n2015,5,21,\"EV\",\"5179\",\"HPN\",\"ATL\",-5.00,0.00,0.00,\"\",0.00,141.00,112.00,780.00,,,,,,\n2015,5,12,\"EV\",\"5179\",\"HPN\",\"ATL\",-1.00,-7.00,0.00,\"\",0.00,130.00,109.00,780.00,,,,,,\n2015,5,22,\"EV\",\"5179\",\"HPN\",\"ATL\",-4.00,-2.00,0.00,\"\",0.00,138.00,118.00,780.00,,,,,,\n2015,5,11,\"EV\",\"5179\",\"HPN\",\"ATL\",-6.00,-23.00,0.00,\"\",0.00,119.00,103.00,780.00,,,,,,\n2015,5,20,\"EV\",\"5179\",\"HPN\",\"ATL\",-1.00,3.00,0.00,\"\",0.00,140.00,109.00,780.00,,,,,,\n2015,5,23,\"EV\",\"5179\",\"HPN\",\"ATL\",-3.00,-9.00,0.00,\"\",0.00,128.00,111.00,780.00,,,,,,\n2015,5,16,\"EV\",\"5179\",\"HPN\",\"ATL\",-1.00,-5.00,0.00,\"\",0.00,130.00,107.00,780.00,,,,,,\n2015,5,13,\"EV\",\"5179\",\"HPN\",\"ATL\",-10.00,-14.00,0.00,\"\",0.00,132.00,115.00,780.00,,,,,,\n2015,5,14,\"EV\",\"5179\",\"HPN\",\"ATL\",-3.00,-7.00,0.00,\"\",0.00,132.00,112.00,780.00,,,,,,\n2015,5,15,\"EV\",\"5179\",\"HPN\",\"ATL\",-7.00,-6.00,0.00,\"\",0.00,137.00,119.00,780.00,,,,,,\n2015,5,1,\"EV\",\"5184\",\"LGA\",\"MKE\",-6.00,-35.00,0.00,\"\",0.00,120.00,97.00,738.00,,,,,,\n2015,5,26,\"EV\",\"5184\",\"LGA\",\"SAV\",-7.00,-9.00,0.00,\"\",0.00,145.00,104.00,722.00,,,,,,\n2015,5,28,\"EV\",\"5184\",\"LGA\",\"SAV\",72.00,68.00,0.00,\"\",0.00,141.00,100.00,722.00,68.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"EV\",\"5184\",\"LGA\",\"SAV\",-6.00,2.00,0.00,\"\",0.00,153.00,94.00,722.00,,,,,,\n2015,5,4,\"EV\",\"5184\",\"LGA\",\"SAV\",-3.00,-13.00,0.00,\"\",0.00,135.00,98.00,722.00,,,,,,\n2015,5,27,\"EV\",\"5184\",\"LGA\",\"SAV\",-5.00,-30.00,0.00,\"\",0.00,120.00,97.00,722.00,,,,,,\n2015,5,5,\"EV\",\"5184\",\"LGA\",\"SAV\",24.00,-1.00,0.00,\"\",0.00,122.00,101.00,722.00,,,,,,\n2015,5,6,\"EV\",\"5184\",\"LGA\",\"SAV\",-5.00,19.00,0.00,\"\",0.00,169.00,105.00,722.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,8,\"EV\",\"5184\",\"LGA\",\"SAV\",-1.00,9.00,0.00,\"\",0.00,155.00,99.00,722.00,,,,,,\n2015,5,7,\"EV\",\"5184\",\"LGA\",\"SAV\",-6.00,-24.00,0.00,\"\",0.00,127.00,95.00,722.00,,,,,,\n2015,5,19,\"EV\",\"5184\",\"LGA\",\"SAV\",-5.00,-24.00,0.00,\"\",0.00,128.00,99.00,722.00,,,,,,\n2015,5,20,\"EV\",\"5184\",\"LGA\",\"SAV\",-2.00,2.00,0.00,\"\",0.00,149.00,98.00,722.00,,,,,,\n2015,5,11,\"EV\",\"5184\",\"LGA\",\"SAV\",-2.00,-3.00,0.00,\"\",0.00,144.00,101.00,722.00,,,,,,\n2015,5,12,\"EV\",\"5184\",\"LGA\",\"SAV\",-6.00,-37.00,0.00,\"\",0.00,116.00,96.00,722.00,,,,,,\n2015,5,22,\"EV\",\"5184\",\"LGA\",\"SAV\",21.00,25.00,0.00,\"\",0.00,149.00,108.00,722.00,21.00,0.00,4.00,0.00,0.00,\n2015,5,21,\"EV\",\"5184\",\"LGA\",\"SAV\",-1.00,-14.00,0.00,\"\",0.00,132.00,101.00,722.00,,,,,,\n2015,5,13,\"EV\",\"5184\",\"LGA\",\"SAV\",-2.00,15.00,0.00,\"\",0.00,162.00,99.00,722.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,14,\"EV\",\"5184\",\"LGA\",\"SAV\",15.00,18.00,0.00,\"\",0.00,148.00,96.00,722.00,0.00,0.00,3.00,0.00,15.00,\n2015,5,15,\"EV\",\"5184\",\"LGA\",\"SAV\",-1.00,2.00,0.00,\"\",0.00,148.00,108.00,722.00,,,,,,\n2015,5,18,\"EV\",\"5184\",\"LGA\",\"SAV\",,,1.00,\"B\",0.00,,,722.00,,,,,,\n2015,5,1,\"EV\",\"5199\",\"SYR\",\"DTW\",-4.00,-7.00,0.00,\"\",0.00,90.00,65.00,374.00,,,,,,\n2015,5,21,\"DL\",\"1596\",\"MSP\",\"LGA\",4.00,-14.00,0.00,\"\",0.00,147.00,131.00,1020.00,,,,,,\n2015,5,21,\"DL\",\"1644\",\"FLL\",\"JFK\",-5.00,-34.00,0.00,\"\",0.00,158.00,138.00,1069.00,,,,,,\n2015,5,21,\"DL\",\"1647\",\"LGA\",\"ATL\",0.00,-6.00,0.00,\"\",0.00,146.00,115.00,762.00,,,,,,\n2015,5,21,\"DL\",\"1671\",\"MIA\",\"JFK\",5.00,-3.00,0.00,\"\",0.00,179.00,134.00,1089.00,,,,,,\n2015,5,21,\"DL\",\"1672\",\"ATL\",\"BUF\",-1.00,-6.00,0.00,\"\",0.00,114.00,89.00,712.00,,,,,,\n2015,5,21,\"DL\",\"1672\",\"BUF\",\"ATL\",-1.00,-9.00,0.00,\"\",0.00,120.00,104.00,712.00,,,,,,\n2015,5,21,\"DL\",\"1685\",\"LGA\",\"MCO\",-1.00,-10.00,0.00,\"\",0.00,166.00,141.00,950.00,,,,,,\n2015,5,21,\"DL\",\"1697\",\"LGA\",\"ATL\",14.00,8.00,0.00,\"\",0.00,152.00,118.00,762.00,,,,,,\n2015,5,24,\"DL\",\"871\",\"MSP\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,153.00,127.00,1020.00,,,,,,\n2015,5,24,\"DL\",\"878\",\"RSW\",\"LGA\",-11.00,-14.00,0.00,\"\",0.00,167.00,147.00,1080.00,,,,,,\n2015,5,24,\"DL\",\"889\",\"MSP\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,153.00,126.00,1020.00,,,,,,\n2015,5,24,\"DL\",\"899\",\"SYR\",\"MSP\",-5.00,0.00,0.00,\"\",0.00,152.00,132.00,860.00,,,,,,\n2015,5,24,\"DL\",\"904\",\"LGA\",\"ATL\",-5.00,-12.00,0.00,\"\",0.00,135.00,111.00,762.00,,,,,,\n2015,5,24,\"DL\",\"906\",\"ATL\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,128.00,106.00,762.00,,,,,,\n2015,5,24,\"DL\",\"909\",\"LGA\",\"MIA\",-3.00,-29.00,0.00,\"\",0.00,168.00,142.00,1096.00,,,,,,\n2015,5,24,\"DL\",\"910\",\"MCO\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,147.00,130.00,950.00,,,,,,\n2015,5,24,\"DL\",\"928\",\"DEN\",\"LGA\",8.00,-17.00,0.00,\"\",0.00,210.00,191.00,1620.00,,,,,,\n2015,5,24,\"DL\",\"965\",\"MCO\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,146.00,125.00,950.00,,,,,,\n2015,5,24,\"DL\",\"971\",\"LGA\",\"DEN\",-1.00,-28.00,0.00,\"\",0.00,245.00,222.00,1620.00,,,,,,\n2015,5,24,\"DL\",\"986\",\"ATL\",\"LGA\",31.00,23.00,0.00,\"\",0.00,125.00,107.00,762.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"DL\",\"997\",\"DTW\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,95.00,72.00,502.00,,,,,,\n2015,5,24,\"DL\",\"1081\",\"MIA\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,177.00,152.00,1096.00,,,,,,\n2015,5,24,\"DL\",\"1083\",\"FLL\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,168.00,146.00,1069.00,,,,,,\n2015,5,24,\"DL\",\"1086\",\"LGA\",\"ATL\",-6.00,-26.00,0.00,\"\",0.00,140.00,104.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1088\",\"FLL\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,168.00,150.00,1076.00,,,,,,\n2015,5,24,\"DL\",\"1109\",\"SEA\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,315.00,286.00,2422.00,,,,,,\n2015,5,24,\"DL\",\"1111\",\"ATL\",\"ROC\",2.00,-10.00,0.00,\"\",0.00,116.00,97.00,749.00,,,,,,\n2015,5,24,\"DL\",\"1121\",\"PBI\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,168.00,144.00,1035.00,,,,,,\n2015,5,24,\"DL\",\"1131\",\"LGA\",\"FLL\",-6.00,-36.00,0.00,\"\",0.00,160.00,137.00,1076.00,,,,,,\n2015,5,24,\"DL\",\"1145\",\"LGA\",\"DTW\",-4.00,-26.00,0.00,\"\",0.00,98.00,82.00,502.00,,,,,,\n2015,5,24,\"DL\",\"1162\",\"LAX\",\"JFK\",6.00,4.00,0.00,\"\",0.00,323.00,301.00,2475.00,,,,,,\n2015,5,24,\"DL\",\"1174\",\"LGA\",\"PBI\",-7.00,-35.00,0.00,\"\",0.00,150.00,133.00,1035.00,,,,,,\n2015,5,24,\"DL\",\"1176\",\"ATL\",\"BUF\",-3.00,-20.00,0.00,\"\",0.00,113.00,94.00,712.00,,,,,,\n2015,5,24,\"DL\",\"1176\",\"BUF\",\"ATL\",-2.00,-6.00,0.00,\"\",0.00,123.00,102.00,712.00,,,,,,\n2015,5,24,\"DL\",\"1186\",\"ATL\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,125.00,105.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1209\",\"MCO\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,159.00,140.00,950.00,,,,,,\n2015,5,24,\"DL\",\"1242\",\"LGA\",\"PBI\",-3.00,-23.00,0.00,\"\",0.00,160.00,133.00,1035.00,,,,,,\n2015,5,24,\"DL\",\"1262\",\"LAX\",\"JFK\",-8.00,2.00,0.00,\"\",0.00,340.00,308.00,2475.00,,,,,,\n2015,5,24,\"DL\",\"1266\",\"BUF\",\"ATL\",-6.00,-2.00,0.00,\"\",0.00,125.00,102.00,712.00,,,,,,\n2015,5,24,\"DL\",\"1269\",\"LGA\",\"MIA\",-7.00,-42.00,0.00,\"\",0.00,160.00,138.00,1096.00,,,,,,\n2015,5,24,\"DL\",\"1286\",\"ATL\",\"LGA\",3.00,-1.00,0.00,\"\",0.00,131.00,105.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1288\",\"LGA\",\"FLL\",-4.00,-32.00,0.00,\"\",0.00,164.00,140.00,1076.00,,,,,,\n2015,5,24,\"DL\",\"1289\",\"LGA\",\"ATL\",-2.00,-30.00,0.00,\"\",0.00,133.00,107.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1298\",\"LGA\",\"ATL\",-4.00,-19.00,0.00,\"\",0.00,144.00,107.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1312\",\"TPA\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,164.00,143.00,1005.00,,,,,,\n2015,5,24,\"DL\",\"1356\",\"BUF\",\"DTW\",-2.00,-21.00,0.00,\"\",0.00,52.00,39.00,241.00,,,,,,\n2015,5,24,\"DL\",\"1359\",\"MCO\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,149.00,130.00,950.00,,,,,,\n2015,5,24,\"DL\",\"1370\",\"ATL\",\"ROC\",-5.00,0.00,0.00,\"\",0.00,128.00,113.00,749.00,,,,,,\n2015,5,24,\"DL\",\"1370\",\"ROC\",\"ATL\",0.00,-18.00,0.00,\"\",0.00,115.00,97.00,749.00,,,,,,\n2015,5,24,\"DL\",\"1372\",\"DTW\",\"BUF\",-7.00,-16.00,0.00,\"\",0.00,57.00,39.00,241.00,,,,,,\n2015,5,24,\"DL\",\"1383\",\"LGA\",\"ATL\",-4.00,-23.00,0.00,\"\",0.00,143.00,109.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1386\",\"ATL\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,117.00,101.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1394\",\"ATL\",\"JFK\",4.00,-10.00,0.00,\"\",0.00,137.00,112.00,760.00,,,,,,\n2015,5,24,\"DL\",\"1406\",\"ALB\",\"ATL\",-9.00,-24.00,0.00,\"\",0.00,140.00,119.00,853.00,,,,,,\n2015,5,24,\"DL\",\"1409\",\"FLL\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,169.00,149.00,1076.00,,,,,,\n2015,5,24,\"DL\",\"1419\",\"ATL\",\"JFK\",-2.00,-25.00,0.00,\"\",0.00,132.00,104.00,760.00,,,,,,\n2015,5,24,\"DL\",\"1428\",\"LGA\",\"ATL\",-2.00,-24.00,0.00,\"\",0.00,134.00,113.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1464\",\"LGA\",\"MSP\",-5.00,-7.00,0.00,\"\",0.00,183.00,163.00,1020.00,,,,,,\n2015,5,24,\"DL\",\"1473\",\"SEA\",\"JFK\",-3.00,-27.00,0.00,\"\",0.00,304.00,284.00,2422.00,,,,,,\n2015,5,24,\"DL\",\"1486\",\"ATL\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,136.00,105.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1487\",\"ATL\",\"JFK\",-1.00,-9.00,0.00,\"\",0.00,135.00,111.00,760.00,,,,,,\n2015,5,24,\"DL\",\"1496\",\"MSP\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,146.00,124.00,1020.00,,,,,,\n2015,5,24,\"DL\",\"1498\",\"FLL\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,169.00,152.00,1076.00,,,,,,\n2015,5,24,\"DL\",\"1514\",\"LGA\",\"FLL\",-1.00,-31.00,0.00,\"\",0.00,158.00,143.00,1076.00,,,,,,\n2015,5,24,\"DL\",\"1515\",\"ATL\",\"ALB\",-8.00,-19.00,0.00,\"\",0.00,134.00,111.00,853.00,,,,,,\n2015,5,24,\"DL\",\"1526\",\"MCO\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,149.00,131.00,950.00,,,,,,\n2015,5,24,\"DL\",\"1542\",\"SEA\",\"JFK\",-7.00,-12.00,0.00,\"\",0.00,317.00,296.00,2422.00,,,,,,\n2015,5,24,\"DL\",\"1543\",\"ATL\",\"ALB\",-2.00,-17.00,0.00,\"\",0.00,127.00,115.00,853.00,,,,,,\n2015,5,24,\"DL\",\"1560\",\"MSY\",\"LGA\",-5.00,-28.00,0.00,\"\",0.00,161.00,145.00,1183.00,,,,,,\n2015,5,24,\"DL\",\"1562\",\"BOS\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,61.00,43.00,187.00,,,,,,\n2015,5,24,\"DL\",\"1584\",\"ATL\",\"ROC\",-5.00,-17.00,0.00,\"\",0.00,120.00,96.00,749.00,,,,,,\n2015,5,24,\"DL\",\"1584\",\"ROC\",\"ATL\",-5.00,-4.00,0.00,\"\",0.00,136.00,107.00,749.00,,,,,,\n2015,5,24,\"DL\",\"1585\",\"LGA\",\"MCO\",-1.00,-24.00,0.00,\"\",0.00,149.00,125.00,950.00,,,,,,\n2015,5,24,\"DL\",\"1586\",\"ATL\",\"LGA\",1.00,-18.00,0.00,\"\",0.00,125.00,104.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1596\",\"MSP\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,154.00,128.00,1020.00,,,,,,\n2015,5,24,\"DL\",\"1615\",\"BUF\",\"MSP\",320.00,307.00,0.00,\"\",0.00,131.00,111.00,735.00,307.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"DL\",\"1644\",\"FLL\",\"JFK\",5.00,-14.00,0.00,\"\",0.00,167.00,145.00,1069.00,,,,,,\n2015,5,24,\"DL\",\"1647\",\"LGA\",\"ATL\",-3.00,-14.00,0.00,\"\",0.00,139.00,108.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1671\",\"MIA\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,181.00,144.00,1089.00,,,,,,\n2015,5,24,\"DL\",\"1672\",\"ATL\",\"BUF\",-2.00,-9.00,0.00,\"\",0.00,109.00,97.00,712.00,,,,,,\n2015,5,24,\"DL\",\"1672\",\"BUF\",\"ATL\",-1.00,-11.00,0.00,\"\",0.00,117.00,101.00,712.00,,,,,,\n2015,5,24,\"DL\",\"1685\",\"LGA\",\"MCO\",-5.00,-31.00,0.00,\"\",0.00,147.00,126.00,950.00,,,,,,\n2015,5,24,\"DL\",\"1697\",\"LGA\",\"ATL\",-5.00,-25.00,0.00,\"\",0.00,133.00,109.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1728\",\"LAS\",\"JFK\",-5.00,-5.00,0.00,\"\",0.00,297.00,276.00,2248.00,,,,,,\n2015,5,24,\"DL\",\"1750\",\"ATL\",\"JFK\",40.00,20.00,0.00,\"\",0.00,126.00,103.00,760.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"DL\",\"1766\",\"MSP\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,160.00,130.00,1029.00,,,,,,\n2015,5,24,\"DL\",\"1779\",\"LGA\",\"MSY\",-6.00,-21.00,0.00,\"\",0.00,183.00,158.00,1183.00,,,,,,\n2015,5,24,\"DL\",\"1786\",\"ATL\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,119.00,104.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1789\",\"MSP\",\"LGA\",-8.00,-18.00,0.00,\"\",0.00,151.00,126.00,1020.00,,,,,,\n2015,5,24,\"DL\",\"1796\",\"LGA\",\"MSP\",-3.00,-2.00,0.00,\"\",0.00,194.00,162.00,1020.00,,,,,,\n2015,5,24,\"DL\",\"1830\",\"SLC\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,262.00,234.00,1990.00,,,,,,\n2015,5,24,\"DL\",\"1841\",\"SJU\",\"JFK\",-6.00,-1.00,0.00,\"\",0.00,251.00,212.00,1598.00,,,,,,\n2015,5,24,\"DL\",\"1851\",\"CHS\",\"JFK\",-1.00,-9.00,0.00,\"\",0.00,116.00,89.00,636.00,,,,,,\n2015,5,24,\"DL\",\"1885\",\"LGA\",\"MCO\",-4.00,-39.00,0.00,\"\",0.00,143.00,125.00,950.00,,,,,,\n2015,5,24,\"DL\",\"1902\",\"LGA\",\"PBI\",-2.00,-31.00,0.00,\"\",0.00,153.00,132.00,1035.00,,,,,,\n2015,5,24,\"DL\",\"1907\",\"MSP\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,146.00,125.00,1029.00,,,,,,\n2015,5,24,\"DL\",\"1919\",\"LGA\",\"MSP\",-2.00,-10.00,0.00,\"\",0.00,172.00,152.00,1020.00,,,,,,\n2015,5,24,\"DL\",\"1947\",\"FLL\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,164.00,144.00,1069.00,,,,,,\n2015,5,24,\"DL\",\"1948\",\"DTW\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,88.00,70.00,502.00,,,,,,\n2015,5,24,\"DL\",\"1972\",\"AUS\",\"JFK\",15.00,4.00,0.00,\"\",0.00,212.00,193.00,1521.00,,,,,,\n2015,5,24,\"DL\",\"1982\",\"LGA\",\"MIA\",65.00,28.00,0.00,\"\",0.00,156.00,140.00,1096.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"DL\",\"1986\",\"ATL\",\"LGA\",-5.00,-26.00,0.00,\"\",0.00,126.00,104.00,762.00,,,,,,\n2015,5,24,\"DL\",\"1994\",\"PHX\",\"JFK\",-6.00,-6.00,0.00,\"\",0.00,290.00,251.00,2153.00,,,,,,\n2015,5,24,\"DL\",\"2003\",\"LGA\",\"MIA\",-5.00,-28.00,0.00,\"\",0.00,162.00,143.00,1096.00,,,,,,\n2015,5,24,\"DL\",\"2013\",\"ATL\",\"SYR\",19.00,8.00,0.00,\"\",0.00,122.00,102.00,794.00,,,,,,\n2015,5,24,\"DL\",\"2014\",\"SYR\",\"ATL\",-5.00,-15.00,0.00,\"\",0.00,127.00,110.00,794.00,,,,,,\n2015,5,24,\"DL\",\"2015\",\"JFK\",\"SJU\",-5.00,-44.00,0.00,\"\",0.00,200.00,182.00,1598.00,,,,,,\n2015,5,24,\"DL\",\"2016\",\"LGA\",\"ATL\",-6.00,-27.00,0.00,\"\",0.00,129.00,107.00,762.00,,,,,,\n2015,5,24,\"DL\",\"2020\",\"JFK\",\"PBI\",-2.00,-34.00,0.00,\"\",0.00,154.00,134.00,1028.00,,,,,,\n2015,5,24,\"DL\",\"2022\",\"JFK\",\"ATL\",-2.00,-34.00,0.00,\"\",0.00,137.00,107.00,760.00,,,,,,\n2015,5,24,\"DL\",\"2038\",\"JFK\",\"TPA\",-9.00,-35.00,0.00,\"\",0.00,158.00,138.00,1005.00,,,,,,\n2015,5,24,\"DL\",\"2043\",\"JFK\",\"SJU\",-2.00,-20.00,0.00,\"\",0.00,227.00,184.00,1598.00,,,,,,\n2015,5,25,\"EV\",\"5409\",\"LGA\",\"GSO\",-4.00,-20.00,0.00,\"\",0.00,96.00,68.00,461.00,,,,,,\n2015,5,17,\"EV\",\"5409\",\"LGA\",\"GSO\",-1.00,-22.00,0.00,\"\",0.00,91.00,65.00,461.00,,,,,,\n2015,5,3,\"EV\",\"5409\",\"LGA\",\"GSO\",-7.00,13.00,0.00,\"\",0.00,132.00,77.00,461.00,,,,,,\n2015,5,1,\"EV\",\"5409\",\"LGA\",\"GSO\",-9.00,-28.00,0.00,\"\",0.00,93.00,74.00,461.00,,,,,,\n2015,5,4,\"EV\",\"5409\",\"LGA\",\"GSO\",-2.00,-33.00,0.00,\"\",0.00,81.00,65.00,461.00,,,,,,\n2015,5,29,\"EV\",\"5409\",\"LGA\",\"GSO\",-7.00,-22.00,0.00,\"\",0.00,97.00,67.00,461.00,,,,,,\n2015,5,27,\"EV\",\"5409\",\"LGA\",\"GSO\",-2.00,74.00,0.00,\"\",0.00,188.00,81.00,461.00,0.00,0.00,74.00,0.00,0.00,\n2015,5,6,\"EV\",\"5409\",\"LGA\",\"GSO\",-2.00,9.00,0.00,\"\",0.00,123.00,72.00,461.00,,,,,,\n2015,5,8,\"EV\",\"5409\",\"LGA\",\"GSO\",-10.00,-28.00,0.00,\"\",0.00,94.00,69.00,461.00,,,,,,\n2015,5,10,\"EV\",\"5409\",\"LGA\",\"GSO\",-5.00,-4.00,0.00,\"\",0.00,113.00,78.00,461.00,,,,,,\n2015,5,7,\"EV\",\"5409\",\"LGA\",\"GSO\",65.00,50.00,0.00,\"\",0.00,97.00,65.00,461.00,0.00,0.00,0.00,0.00,50.00,\n2015,5,20,\"EV\",\"5409\",\"LGA\",\"GSO\",-4.00,15.00,0.00,\"\",0.00,131.00,72.00,461.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,11,\"EV\",\"5409\",\"LGA\",\"GSO\",-1.00,13.00,0.00,\"\",0.00,126.00,77.00,461.00,,,,,,\n2015,5,21,\"EV\",\"5409\",\"LGA\",\"GSO\",-3.00,1.00,0.00,\"\",0.00,116.00,83.00,461.00,,,,,,\n2015,5,22,\"EV\",\"5409\",\"LGA\",\"GSO\",-3.00,-9.00,0.00,\"\",0.00,106.00,69.00,461.00,,,,,,\n2015,5,15,\"EV\",\"5409\",\"LGA\",\"GSO\",20.00,5.00,0.00,\"\",0.00,97.00,65.00,461.00,,,,,,\n2015,5,14,\"EV\",\"5409\",\"LGA\",\"GSO\",-1.00,-8.00,0.00,\"\",0.00,105.00,65.00,461.00,,,,,,\n2015,5,13,\"EV\",\"5409\",\"LGA\",\"GSO\",84.00,102.00,0.00,\"\",0.00,130.00,62.00,461.00,84.00,0.00,18.00,0.00,0.00,\n2015,5,18,\"EV\",\"5409\",\"LGA\",\"GSO\",,,1.00,\"B\",0.00,,,461.00,,,,,,\n2015,5,31,\"EV\",\"5409\",\"LGA\",\"GSO\",,,1.00,\"A\",0.00,,,461.00,,,,,,\n2015,5,28,\"EV\",\"5409\",\"LGA\",\"GSO\",,,1.00,\"A\",0.00,,,461.00,,,,,,\n2015,5,26,\"EV\",\"5409\",\"RIC\",\"LGA\",-7.00,-27.00,0.00,\"\",0.00,60.00,47.00,292.00,,,,,,\n2015,5,5,\"EV\",\"5409\",\"RIC\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,78.00,56.00,292.00,,,,,,\n2015,5,12,\"EV\",\"5409\",\"RIC\",\"LGA\",-8.00,-10.00,0.00,\"\",0.00,78.00,45.00,292.00,,,,,,\n2015,5,19,\"EV\",\"5409\",\"RIC\",\"LGA\",65.00,56.00,0.00,\"\",0.00,71.00,50.00,292.00,12.00,0.00,12.00,0.00,32.00,\n2015,5,9,\"EV\",\"5414\",\"ROC\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,70.00,56.00,254.00,,,,,,\n2015,5,2,\"EV\",\"5414\",\"ROC\",\"LGA\",-9.00,-6.00,0.00,\"\",0.00,84.00,68.00,254.00,,,,,,\n2015,5,30,\"EV\",\"5414\",\"ROC\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,71.00,58.00,254.00,,,,,,\n2015,5,23,\"EV\",\"5414\",\"ROC\",\"LGA\",-9.00,-5.00,0.00,\"\",0.00,85.00,64.00,254.00,,,,,,\n2015,5,16,\"EV\",\"5414\",\"ROC\",\"LGA\",2.00,-10.00,0.00,\"\",0.00,69.00,50.00,254.00,,,,,,\n2015,5,31,\"EV\",\"5416\",\"LGA\",\"STL\",-5.00,-47.00,0.00,\"\",0.00,138.00,118.00,888.00,,,,,,\n2015,5,4,\"EV\",\"5418\",\"RIC\",\"LGA\",3.00,-7.00,0.00,\"\",0.00,70.00,52.00,292.00,,,,,,\n2015,5,6,\"EV\",\"5418\",\"RIC\",\"LGA\",-8.00,-22.00,0.00,\"\",0.00,66.00,48.00,292.00,,,,,,\n2015,5,14,\"EV\",\"5418\",\"RIC\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,76.00,50.00,292.00,,,,,,\n2015,5,1,\"EV\",\"5428\",\"LGA\",\"RIC\",-8.00,4.00,0.00,\"\",0.00,114.00,62.00,292.00,,,,,,\n2015,5,1,\"EV\",\"5072\",\"CLE\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,100.00,75.00,419.00,,,,,,\n2015,5,3,\"EV\",\"5073\",\"BNA\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,134.00,119.00,764.00,,,,,,\n2015,5,1,\"EV\",\"5073\",\"BNA\",\"LGA\",-10.00,17.00,0.00,\"\",0.00,160.00,122.00,764.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,25,\"EV\",\"5073\",\"BNA\",\"LGA\",-4.00,7.00,0.00,\"\",0.00,144.00,121.00,764.00,,,,,,\n2015,5,17,\"EV\",\"5073\",\"BNA\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,136.00,113.00,764.00,,,,,,\n2015,5,4,\"EV\",\"5073\",\"BNA\",\"LGA\",-4.00,4.00,0.00,\"\",0.00,141.00,125.00,764.00,,,,,,\n2015,5,29,\"EV\",\"5073\",\"BNA\",\"LGA\",-4.00,9.00,0.00,\"\",0.00,146.00,118.00,764.00,,,,,,\n2015,5,27,\"EV\",\"5073\",\"BNA\",\"LGA\",0.00,2.00,0.00,\"\",0.00,135.00,112.00,764.00,,,,,,\n2015,5,5,\"EV\",\"5073\",\"BNA\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,134.00,116.00,764.00,,,,,,\n2015,5,6,\"EV\",\"5073\",\"BNA\",\"LGA\",54.00,59.00,0.00,\"\",0.00,138.00,113.00,764.00,0.00,0.00,5.00,0.00,54.00,\n2015,5,7,\"EV\",\"5073\",\"BNA\",\"LGA\",12.00,26.00,0.00,\"\",0.00,147.00,118.00,764.00,12.00,0.00,14.00,0.00,0.00,\n2015,5,10,\"EV\",\"5073\",\"BNA\",\"LGA\",-6.00,0.00,0.00,\"\",0.00,139.00,123.00,764.00,,,,,,\n2015,5,31,\"EV\",\"5073\",\"BNA\",\"LGA\",7.00,28.00,0.00,\"\",0.00,154.00,115.00,764.00,7.00,0.00,21.00,0.00,0.00,\n2015,5,18,\"EV\",\"5073\",\"BNA\",\"LGA\",117.00,155.00,0.00,\"\",0.00,171.00,138.00,764.00,117.00,0.00,38.00,0.00,0.00,\n2015,5,19,\"EV\",\"5073\",\"BNA\",\"LGA\",72.00,68.00,0.00,\"\",0.00,129.00,110.00,764.00,68.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"EV\",\"5073\",\"BNA\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,121.00,104.00,764.00,,,,,,\n2015,5,8,\"EV\",\"5073\",\"BNA\",\"LGA\",2.00,9.00,0.00,\"\",0.00,140.00,120.00,764.00,,,,,,\n2015,5,21,\"EV\",\"5073\",\"BNA\",\"LGA\",-8.00,-10.00,0.00,\"\",0.00,131.00,108.00,764.00,,,,,,\n2015,5,11,\"EV\",\"5073\",\"BNA\",\"LGA\",-2.00,32.00,0.00,\"\",0.00,167.00,143.00,764.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,22,\"EV\",\"5073\",\"BNA\",\"LGA\",41.00,48.00,0.00,\"\",0.00,140.00,106.00,764.00,0.00,0.00,7.00,0.00,41.00,\n2015,5,12,\"EV\",\"5073\",\"BNA\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,134.00,110.00,764.00,,,,,,\n2015,5,14,\"EV\",\"5073\",\"BNA\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,132.00,115.00,764.00,,,,,,\n2015,5,13,\"EV\",\"5073\",\"BNA\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,136.00,114.00,764.00,,,,,,\n2015,5,15,\"EV\",\"5073\",\"BNA\",\"LGA\",-7.00,4.00,0.00,\"\",0.00,144.00,118.00,764.00,,,,,,\n2015,5,26,\"EV\",\"5073\",\"BNA\",\"LGA\",4.00,8.00,0.00,\"\",0.00,137.00,119.00,764.00,,,,,,\n2015,5,28,\"EV\",\"5073\",\"BNA\",\"LGA\",,,1.00,\"A\",0.00,,,764.00,,,,,,\n2015,5,3,\"EV\",\"5074\",\"BNA\",\"LGA\",-7.00,0.00,0.00,\"\",0.00,141.00,124.00,764.00,,,,,,\n2015,5,29,\"EV\",\"5074\",\"BNA\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,140.00,115.00,764.00,,,,,,\n2015,5,26,\"EV\",\"5074\",\"BNA\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,123.00,110.00,764.00,,,,,,\n2015,5,4,\"EV\",\"5074\",\"BNA\",\"LGA\",-5.00,10.00,0.00,\"\",0.00,149.00,125.00,764.00,,,,,,\n2015,5,5,\"EV\",\"5074\",\"BNA\",\"LGA\",-7.00,-2.00,0.00,\"\",0.00,139.00,120.00,764.00,,,,,,\n2015,5,28,\"EV\",\"5074\",\"BNA\",\"LGA\",26.00,30.00,0.00,\"\",0.00,138.00,118.00,764.00,0.00,0.00,4.00,0.00,26.00,\n2015,5,8,\"EV\",\"5074\",\"BNA\",\"LGA\",-6.00,20.00,0.00,\"\",0.00,160.00,119.00,764.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,7,\"EV\",\"5074\",\"BNA\",\"LGA\",-4.00,10.00,0.00,\"\",0.00,148.00,128.00,764.00,,,,,,\n2015,5,21,\"EV\",\"5074\",\"BNA\",\"LGA\",2.00,-6.00,0.00,\"\",0.00,126.00,108.00,764.00,,,,,,\n2015,5,22,\"EV\",\"5074\",\"BNA\",\"LGA\",-12.00,-30.00,0.00,\"\",0.00,116.00,100.00,764.00,,,,,,\n2015,5,11,\"EV\",\"5074\",\"BNA\",\"LGA\",-7.00,20.00,0.00,\"\",0.00,161.00,123.00,764.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,12,\"EV\",\"5074\",\"BNA\",\"LGA\",-5.00,2.00,0.00,\"\",0.00,141.00,111.00,764.00,,,,,,\n2015,5,14,\"EV\",\"5074\",\"BNA\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,134.00,114.00,764.00,,,,,,\n2015,5,15,\"EV\",\"5074\",\"BNA\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,130.00,113.00,764.00,,,,,,\n2015,5,19,\"EV\",\"5074\",\"BNA\",\"LGA\",100.00,91.00,0.00,\"\",0.00,125.00,105.00,764.00,12.00,0.00,0.00,0.00,79.00,\n2015,5,18,\"EV\",\"5074\",\"BNA\",\"LGA\",,,1.00,\"B\",0.00,,,764.00,,,,,,\n2015,5,4,\"EV\",\"5078\",\"LGA\",\"RIC\",-7.00,-17.00,0.00,\"\",0.00,88.00,54.00,292.00,,,,,,\n2015,5,6,\"EV\",\"5078\",\"LGA\",\"RIC\",-5.00,-7.00,0.00,\"\",0.00,96.00,48.00,292.00,,,,,,\n2015,5,14,\"EV\",\"5078\",\"LGA\",\"RIC\",-3.00,-25.00,0.00,\"\",0.00,76.00,49.00,292.00,,,,,,\n2015,5,10,\"EV\",\"5078\",\"SAV\",\"LGA\",11.00,5.00,0.00,\"\",0.00,120.00,97.00,722.00,,,,,,\n2015,5,1,\"EV\",\"5079\",\"LGA\",\"MKE\",18.00,-2.00,0.00,\"\",0.00,130.00,98.00,738.00,,,,,,\n2015,5,12,\"EV\",\"5217\",\"CAE\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,114.00,91.00,617.00,,,,,,\n2015,5,11,\"EV\",\"5217\",\"CAE\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,110.00,90.00,617.00,,,,,,\n2015,5,20,\"EV\",\"5217\",\"CAE\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,106.00,82.00,617.00,,,,,,\n2015,5,22,\"EV\",\"5217\",\"CAE\",\"LGA\",-8.00,-23.00,0.00,\"\",0.00,100.00,80.00,617.00,,,,,,\n2015,5,21,\"EV\",\"5217\",\"CAE\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,110.00,82.00,617.00,,,,,,\n2015,5,13,\"EV\",\"5217\",\"CAE\",\"LGA\",-10.00,-18.00,0.00,\"\",0.00,107.00,88.00,617.00,,,,,,\n2015,5,14,\"EV\",\"5217\",\"CAE\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,109.00,88.00,617.00,,,,,,\n2015,5,15,\"EV\",\"5217\",\"CAE\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,111.00,92.00,617.00,,,,,,\n2015,5,9,\"EV\",\"5218\",\"ALB\",\"ATL\",-5.00,-22.00,0.00,\"\",0.00,133.00,115.00,853.00,,,,,,\n2015,5,9,\"EV\",\"5218\",\"ATL\",\"ALB\",1.00,-13.00,0.00,\"\",0.00,127.00,113.00,853.00,,,,,,\n2015,5,28,\"EV\",\"5221\",\"LGA\",\"RIC\",83.00,89.00,0.00,\"\",0.00,108.00,51.00,292.00,83.00,0.00,6.00,0.00,0.00,\n2015,5,17,\"EV\",\"5221\",\"LGA\",\"RIC\",-3.00,-24.00,0.00,\"\",0.00,81.00,53.00,292.00,,,,,,\n2015,5,25,\"EV\",\"5221\",\"LGA\",\"RIC\",-6.00,-32.00,0.00,\"\",0.00,76.00,54.00,292.00,,,,,,\n2015,5,1,\"EV\",\"5221\",\"LGA\",\"RIC\",0.00,-2.00,0.00,\"\",0.00,98.00,49.00,292.00,,,,,,\n2015,5,26,\"EV\",\"5221\",\"LGA\",\"RIC\",165.00,128.00,0.00,\"\",0.00,65.00,46.00,292.00,128.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"EV\",\"5221\",\"LGA\",\"RIC\",-10.00,-33.00,0.00,\"\",0.00,79.00,52.00,292.00,,,,,,\n2015,5,29,\"EV\",\"5221\",\"LGA\",\"RIC\",-3.00,-15.00,0.00,\"\",0.00,90.00,55.00,292.00,,,,,,\n2015,5,3,\"EV\",\"5221\",\"LGA\",\"RIC\",0.00,-30.00,0.00,\"\",0.00,72.00,49.00,292.00,,,,,,\n2015,5,6,\"EV\",\"5221\",\"LGA\",\"RIC\",-6.00,-7.00,0.00,\"\",0.00,101.00,50.00,292.00,,,,,,\n2015,5,7,\"EV\",\"5221\",\"LGA\",\"RIC\",1.00,-14.00,0.00,\"\",0.00,87.00,47.00,292.00,,,,,,\n2015,5,8,\"EV\",\"5221\",\"LGA\",\"RIC\",-1.00,-26.00,0.00,\"\",0.00,77.00,45.00,292.00,,,,,,\n2015,5,10,\"EV\",\"5221\",\"LGA\",\"RIC\",14.00,-15.00,0.00,\"\",0.00,73.00,49.00,292.00,,,,,,\n2015,5,21,\"EV\",\"5221\",\"LGA\",\"RIC\",-1.00,-14.00,0.00,\"\",0.00,89.00,56.00,292.00,,,,,,\n2015,5,12,\"EV\",\"5221\",\"LGA\",\"RIC\",49.00,45.00,0.00,\"\",0.00,98.00,54.00,292.00,45.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"EV\",\"5221\",\"LGA\",\"RIC\",-3.00,-31.00,0.00,\"\",0.00,74.00,51.00,292.00,,,,,,\n2015,5,20,\"EV\",\"5221\",\"LGA\",\"RIC\",34.00,51.00,0.00,\"\",0.00,119.00,52.00,292.00,23.00,0.00,17.00,0.00,11.00,\n2015,5,13,\"EV\",\"5221\",\"LGA\",\"RIC\",10.00,1.00,0.00,\"\",0.00,93.00,52.00,292.00,,,,,,\n2015,5,14,\"EV\",\"5221\",\"LGA\",\"RIC\",-8.00,-26.00,0.00,\"\",0.00,84.00,53.00,292.00,,,,,,\n2015,5,27,\"EV\",\"5221\",\"LGA\",\"RIC\",235.00,201.00,0.00,\"\",0.00,68.00,51.00,292.00,17.00,0.00,0.00,0.00,184.00,\n2015,5,15,\"EV\",\"5221\",\"LGA\",\"RIC\",283.00,240.00,0.00,\"\",0.00,59.00,45.00,292.00,231.00,0.00,0.00,0.00,9.00,\n2015,5,5,\"EV\",\"5221\",\"LGA\",\"RIC\",29.00,-3.00,0.00,\"\",0.00,70.00,50.00,292.00,,,,,,\n2015,5,11,\"EV\",\"5221\",\"LGA\",\"RIC\",16.00,-6.00,0.00,\"\",0.00,80.00,49.00,292.00,,,,,,\n2015,5,19,\"EV\",\"5221\",\"LGA\",\"RIC\",72.00,45.00,0.00,\"\",0.00,75.00,53.00,292.00,0.00,0.00,0.00,0.00,45.00,\n2015,5,18,\"EV\",\"5221\",\"LGA\",\"RIC\",,,1.00,\"B\",0.00,,,292.00,,,,,,\n2015,5,31,\"EV\",\"5221\",\"LGA\",\"RIC\",,,1.00,\"A\",0.00,,,292.00,,,,,,\n2015,5,9,\"EV\",\"5222\",\"RIC\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,64.00,54.00,292.00,,,,,,\n2015,5,2,\"EV\",\"5222\",\"RIC\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,69.00,48.00,292.00,,,,,,\n2015,5,3,\"EV\",\"5222\",\"RIC\",\"LGA\",-13.00,-14.00,0.00,\"\",0.00,78.00,49.00,292.00,,,,,,\n2015,5,17,\"EV\",\"5222\",\"RIC\",\"LGA\",-2.00,10.00,0.00,\"\",0.00,91.00,46.00,292.00,,,,,,\n2015,5,30,\"EV\",\"5222\",\"RIC\",\"LGA\",-10.00,-23.00,0.00,\"\",0.00,65.00,50.00,292.00,,,,,,\n2015,5,10,\"EV\",\"5222\",\"RIC\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,72.00,49.00,292.00,,,,,,\n2015,5,31,\"EV\",\"5222\",\"RIC\",\"LGA\",-9.00,-21.00,0.00,\"\",0.00,67.00,46.00,292.00,,,,,,\n2015,5,23,\"EV\",\"5222\",\"RIC\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,76.00,43.00,292.00,,,,,,\n2015,5,16,\"EV\",\"5222\",\"RIC\",\"LGA\",0.00,32.00,0.00,\"\",0.00,110.00,54.00,292.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,12,\"EV\",\"5224\",\"RIC\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,69.00,48.00,292.00,,,,,,\n2015,5,3,\"EV\",\"5228\",\"LGA\",\"CLT\",-11.00,-33.00,0.00,\"\",0.00,107.00,80.00,544.00,,,,,,\n2015,5,4,\"EV\",\"5232\",\"GSO\",\"LGA\",-10.00,-13.00,0.00,\"\",0.00,99.00,70.00,461.00,,,,,,\n2015,5,14,\"EV\",\"5232\",\"GSO\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,89.00,69.00,461.00,,,,,,\n2015,5,1,\"EV\",\"5233\",\"LGA\",\"MCI\",-3.00,-21.00,0.00,\"\",0.00,181.00,143.00,1107.00,,,,,,\n2015,5,3,\"EV\",\"5233\",\"LGA\",\"MCI\",-6.00,-18.00,0.00,\"\",0.00,188.00,151.00,1107.00,,,,,,\n2015,5,25,\"EV\",\"5233\",\"LGA\",\"MCI\",-5.00,-21.00,0.00,\"\",0.00,184.00,155.00,1107.00,,,,,,\n2015,5,28,\"EV\",\"5233\",\"LGA\",\"MCI\",-9.00,-9.00,0.00,\"\",0.00,200.00,149.00,1107.00,,,,,,\n2015,5,17,\"EV\",\"5233\",\"LGA\",\"MCI\",115.00,84.00,0.00,\"\",0.00,169.00,144.00,1107.00,84.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"EV\",\"5233\",\"LGA\",\"MCI\",-13.00,-26.00,0.00,\"\",0.00,187.00,161.00,1107.00,,,,,,\n2015,5,5,\"EV\",\"5233\",\"LGA\",\"MCI\",-9.00,,0.00,\"\",1.00,,,1107.00,,,,,,\n2015,5,6,\"EV\",\"5233\",\"LGA\",\"MCI\",-4.00,-5.00,0.00,\"\",0.00,199.00,145.00,1107.00,,,,,,\n2015,5,7,\"EV\",\"5233\",\"LGA\",\"MCI\",-4.00,6.00,0.00,\"\",0.00,210.00,165.00,1107.00,,,,,,\n2015,5,19,\"EV\",\"5233\",\"LGA\",\"MCI\",27.00,10.00,0.00,\"\",0.00,183.00,157.00,1107.00,,,,,,\n2015,5,20,\"EV\",\"5233\",\"LGA\",\"MCI\",40.00,69.00,0.00,\"\",0.00,229.00,167.00,1107.00,40.00,0.00,29.00,0.00,0.00,\n2015,5,29,\"EV\",\"5233\",\"LGA\",\"MCI\",61.00,41.00,0.00,\"\",0.00,180.00,145.00,1107.00,0.00,0.00,0.00,0.00,41.00,\n2015,5,21,\"EV\",\"5233\",\"LGA\",\"MCI\",-5.00,0.00,0.00,\"\",0.00,205.00,175.00,1107.00,,,,,,\n2015,5,12,\"EV\",\"5233\",\"LGA\",\"MCI\",-7.00,10.00,0.00,\"\",0.00,217.00,165.00,1107.00,,,,,,\n2015,5,14,\"EV\",\"5233\",\"LGA\",\"MCI\",-4.00,-25.00,0.00,\"\",0.00,179.00,155.00,1107.00,,,,,,\n2015,5,15,\"EV\",\"5233\",\"LGA\",\"MCI\",0.00,-12.00,0.00,\"\",0.00,188.00,156.00,1107.00,,,,,,\n2015,5,13,\"EV\",\"5233\",\"LGA\",\"MCI\",-7.00,-1.00,0.00,\"\",0.00,206.00,161.00,1107.00,,,,,,\n2015,5,8,\"EV\",\"5233\",\"LGA\",\"MCI\",9.00,-8.00,0.00,\"\",0.00,183.00,147.00,1107.00,,,,,,\n2015,5,22,\"EV\",\"5233\",\"LGA\",\"MCI\",27.00,24.00,0.00,\"\",0.00,197.00,170.00,1107.00,4.00,0.00,0.00,0.00,20.00,\n2015,5,10,\"EV\",\"5233\",\"LGA\",\"MCI\",232.00,193.00,0.00,\"\",0.00,161.00,144.00,1107.00,156.00,0.00,0.00,0.00,37.00,\n2015,5,18,\"EV\",\"5233\",\"LGA\",\"MCI\",,,1.00,\"B\",0.00,,,1107.00,,,,,,\n2015,5,31,\"EV\",\"5233\",\"LGA\",\"MCI\",,,1.00,\"B\",0.00,,,1107.00,,,,,,\n2015,5,11,\"EV\",\"5233\",\"LGA\",\"MCI\",,,1.00,\"C\",0.00,,,1107.00,,,,,,\n2015,5,27,\"EV\",\"5233\",\"LGA\",\"MCI\",,,1.00,\"C\",0.00,,,1107.00,,,,,,\n2015,5,26,\"EV\",\"5233\",\"LGA\",\"MCI\",,,1.00,\"A\",0.00,,,1107.00,,,,,,\n2015,5,1,\"EV\",\"5235\",\"LGA\",\"PIT\",-6.00,7.00,0.00,\"\",0.00,115.00,60.00,335.00,,,,,,\n2015,5,4,\"EV\",\"5235\",\"LGA\",\"PIT\",-5.00,12.00,0.00,\"\",0.00,119.00,56.00,335.00,,,,,,\n2015,5,26,\"EV\",\"5235\",\"LGA\",\"PIT\",47.00,40.00,0.00,\"\",0.00,95.00,56.00,335.00,0.00,0.00,0.00,0.00,40.00,\n2015,5,27,\"EV\",\"5235\",\"LGA\",\"PIT\",-2.00,-18.00,0.00,\"\",0.00,86.00,63.00,335.00,,,,,,\n2015,5,5,\"EV\",\"5235\",\"LGA\",\"PIT\",-2.00,-19.00,0.00,\"\",0.00,85.00,55.00,335.00,,,,,,\n2015,5,29,\"EV\",\"5235\",\"LGA\",\"PIT\",42.00,53.00,0.00,\"\",0.00,113.00,54.00,335.00,42.00,0.00,11.00,0.00,0.00,\n2015,5,6,\"EV\",\"5235\",\"LGA\",\"PIT\",16.00,24.00,0.00,\"\",0.00,110.00,55.00,335.00,16.00,0.00,8.00,0.00,0.00,\n2015,5,19,\"EV\",\"5235\",\"LGA\",\"PIT\",48.00,27.00,0.00,\"\",0.00,81.00,56.00,335.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,20,\"EV\",\"5235\",\"LGA\",\"PIT\",-7.00,5.00,0.00,\"\",0.00,114.00,62.00,335.00,,,,,,\n2015,5,8,\"EV\",\"5235\",\"LGA\",\"PIT\",1.00,8.00,0.00,\"\",0.00,109.00,55.00,335.00,,,,,,\n2015,5,21,\"EV\",\"5235\",\"LGA\",\"PIT\",-10.00,-16.00,0.00,\"\",0.00,96.00,63.00,335.00,,,,,,\n2015,5,22,\"EV\",\"5235\",\"LGA\",\"PIT\",-6.00,-7.00,0.00,\"\",0.00,101.00,56.00,335.00,,,,,,\n2015,5,11,\"EV\",\"5235\",\"LGA\",\"PIT\",-3.00,-16.00,0.00,\"\",0.00,89.00,56.00,335.00,,,,,,\n2015,5,13,\"EV\",\"5235\",\"LGA\",\"PIT\",-7.00,4.00,0.00,\"\",0.00,113.00,58.00,335.00,,,,,,\n2015,5,12,\"EV\",\"5235\",\"LGA\",\"PIT\",-5.00,-30.00,0.00,\"\",0.00,77.00,57.00,335.00,,,,,,\n2015,5,14,\"EV\",\"5235\",\"LGA\",\"PIT\",-5.00,-6.00,0.00,\"\",0.00,101.00,57.00,335.00,,,,,,\n2015,5,15,\"EV\",\"5235\",\"LGA\",\"PIT\",6.00,-9.00,0.00,\"\",0.00,87.00,57.00,335.00,,,,,,\n2015,5,28,\"EV\",\"5235\",\"LGA\",\"PIT\",100.00,80.00,0.00,\"\",0.00,82.00,58.00,335.00,76.00,0.00,0.00,0.00,4.00,\n2015,5,7,\"EV\",\"5235\",\"LGA\",\"PIT\",106.00,85.00,0.00,\"\",0.00,81.00,53.00,335.00,85.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"EV\",\"5235\",\"LGA\",\"PIT\",,,1.00,\"B\",0.00,,,335.00,,,,,,\n2015,5,26,\"EV\",\"5236\",\"LGA\",\"PWM\",-5.00,-26.00,0.00,\"\",0.00,65.00,41.00,269.00,,,,,,\n2015,5,6,\"EV\",\"5236\",\"LGA\",\"PWM\",-7.00,-4.00,0.00,\"\",0.00,85.00,55.00,269.00,,,,,,\n2015,5,5,\"EV\",\"5236\",\"LGA\",\"PWM\",22.00,19.00,0.00,\"\",0.00,83.00,46.00,269.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"EV\",\"5236\",\"LGA\",\"PWM\",18.00,9.00,0.00,\"\",0.00,73.00,43.00,269.00,,,,,,\n2015,5,19,\"EV\",\"5236\",\"LGA\",\"PWM\",70.00,62.00,0.00,\"\",0.00,78.00,45.00,269.00,0.00,0.00,0.00,0.00,62.00,\n2015,5,20,\"EV\",\"5236\",\"LGA\",\"PWM\",-6.00,-18.00,0.00,\"\",0.00,70.00,49.00,269.00,,,,,,\n2015,5,12,\"EV\",\"5236\",\"LGA\",\"PWM\",-9.00,-26.00,0.00,\"\",0.00,69.00,45.00,269.00,,,,,,\n2015,5,13,\"EV\",\"5236\",\"LGA\",\"PWM\",14.00,23.00,0.00,\"\",0.00,91.00,50.00,269.00,14.00,0.00,9.00,0.00,0.00,\n2015,5,9,\"EV\",\"5242\",\"LGA\",\"SAV\",10.00,-14.00,0.00,\"\",0.00,124.00,97.00,722.00,,,,,,\n2015,5,1,\"EV\",\"5471\",\"ALB\",\"DTW\",-5.00,-13.00,0.00,\"\",0.00,93.00,74.00,489.00,,,,,,\n2015,5,24,\"EV\",\"5471\",\"DTW\",\"ALB\",-7.00,-31.00,0.00,\"\",0.00,77.00,62.00,489.00,,,,,,\n2015,5,28,\"EV\",\"5471\",\"GSO\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,93.00,68.00,461.00,,,,,,\n2015,5,25,\"EV\",\"5471\",\"GSO\",\"LGA\",-8.00,-28.00,0.00,\"\",0.00,82.00,68.00,461.00,,,,,,\n2015,5,2,\"EV\",\"5471\",\"GSO\",\"LGA\",-6.00,-2.00,0.00,\"\",0.00,105.00,73.00,461.00,,,,,,\n2015,5,9,\"EV\",\"5471\",\"GSO\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,101.00,77.00,461.00,,,,,,\n2015,5,4,\"EV\",\"5471\",\"GSO\",\"LGA\",0.00,-6.00,0.00,\"\",0.00,89.00,73.00,461.00,,,,,,\n2015,5,26,\"EV\",\"5471\",\"GSO\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,89.00,70.00,461.00,,,,,,\n2015,5,29,\"EV\",\"5471\",\"GSO\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,90.00,65.00,461.00,,,,,,\n2015,5,30,\"EV\",\"5471\",\"GSO\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,91.00,77.00,461.00,,,,,,\n2015,5,5,\"EV\",\"5471\",\"GSO\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,88.00,69.00,461.00,,,,,,\n2015,5,8,\"EV\",\"5471\",\"GSO\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,94.00,77.00,461.00,,,,,,\n2015,5,21,\"EV\",\"5471\",\"GSO\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,92.00,67.00,461.00,,,,,,\n2015,5,22,\"EV\",\"5471\",\"GSO\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,80.00,63.00,461.00,,,,,,\n2015,5,19,\"EV\",\"5471\",\"GSO\",\"LGA\",-5.00,14.00,0.00,\"\",0.00,114.00,73.00,461.00,,,,,,\n2015,5,7,\"EV\",\"5471\",\"GSO\",\"LGA\",3.00,-2.00,0.00,\"\",0.00,90.00,67.00,461.00,,,,,,\n2015,5,11,\"EV\",\"5471\",\"GSO\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,93.00,70.00,461.00,,,,,,\n2015,5,23,\"EV\",\"5471\",\"GSO\",\"LGA\",1.00,-3.00,0.00,\"\",0.00,97.00,70.00,461.00,,,,,,\n2015,5,12,\"EV\",\"5471\",\"GSO\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,88.00,67.00,461.00,,,,,,\n2015,5,15,\"EV\",\"5471\",\"GSO\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,89.00,69.00,461.00,,,,,,\n2015,5,14,\"EV\",\"5471\",\"GSO\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,82.00,68.00,461.00,,,,,,\n2015,5,16,\"EV\",\"5471\",\"GSO\",\"LGA\",84.00,88.00,0.00,\"\",0.00,105.00,77.00,461.00,84.00,0.00,4.00,0.00,0.00,\n2015,5,18,\"EV\",\"5471\",\"GSO\",\"LGA\",,,1.00,\"B\",0.00,,,461.00,,,,,,\n2015,5,6,\"EV\",\"5471\",\"LGA\",\"BNA\",-6.00,-35.00,0.00,\"\",0.00,124.00,97.00,764.00,,,,,,\n2015,5,13,\"EV\",\"5471\",\"LGA\",\"BNA\",-5.00,-25.00,0.00,\"\",0.00,133.00,109.00,764.00,,,,,,\n2015,5,25,\"EV\",\"5477\",\"DTW\",\"ELM\",-7.00,-16.00,0.00,\"\",0.00,65.00,53.00,332.00,,,,,,\n2015,5,9,\"EV\",\"5477\",\"DTW\",\"ELM\",-5.00,-10.00,0.00,\"\",0.00,78.00,55.00,332.00,,,,,,\n2015,5,5,\"EV\",\"5096\",\"BUF\",\"LGA\",-10.00,-26.00,0.00,\"\",0.00,69.00,52.00,292.00,,,,,,\n2015,5,12,\"EV\",\"5096\",\"BUF\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,67.00,47.00,292.00,,,,,,\n2015,5,19,\"EV\",\"5096\",\"BUF\",\"LGA\",38.00,47.00,0.00,\"\",0.00,94.00,51.00,292.00,8.00,0.00,9.00,0.00,30.00,\n2015,5,3,\"EV\",\"5098\",\"GSO\",\"LGA\",1.00,-16.00,0.00,\"\",0.00,84.00,70.00,461.00,,,,,,\n2015,5,1,\"EV\",\"5109\",\"BUF\",\"DTW\",-5.00,-15.00,0.00,\"\",0.00,63.00,42.00,241.00,,,,,,\n2015,5,17,\"EV\",\"5109\",\"BUF\",\"DTW\",-7.00,-19.00,0.00,\"\",0.00,61.00,43.00,241.00,,,,,,\n2015,5,25,\"EV\",\"5109\",\"BUF\",\"DTW\",-2.00,-12.00,0.00,\"\",0.00,63.00,47.00,241.00,,,,,,\n2015,5,3,\"EV\",\"5109\",\"BUF\",\"DTW\",-9.00,-28.00,0.00,\"\",0.00,54.00,40.00,241.00,,,,,,\n2015,5,29,\"EV\",\"5109\",\"BUF\",\"DTW\",41.00,24.00,0.00,\"\",0.00,56.00,40.00,241.00,0.00,0.00,0.00,0.00,24.00,\n2015,5,4,\"EV\",\"5109\",\"BUF\",\"DTW\",-14.00,-23.00,0.00,\"\",0.00,64.00,42.00,241.00,,,,,,\n2015,5,5,\"EV\",\"5109\",\"BUF\",\"DTW\",-5.00,-8.00,0.00,\"\",0.00,70.00,55.00,241.00,,,,,,\n2015,5,27,\"EV\",\"5109\",\"BUF\",\"DTW\",-5.00,-14.00,0.00,\"\",0.00,64.00,44.00,241.00,,,,,,\n2015,5,26,\"EV\",\"5109\",\"BUF\",\"DTW\",-6.00,-17.00,0.00,\"\",0.00,62.00,47.00,241.00,,,,,,\n2015,5,6,\"EV\",\"5109\",\"BUF\",\"DTW\",-2.00,-10.00,0.00,\"\",0.00,65.00,43.00,241.00,,,,,,\n2015,5,31,\"EV\",\"5109\",\"BUF\",\"DTW\",-7.00,-3.00,0.00,\"\",0.00,77.00,56.00,241.00,,,,,,\n2015,5,28,\"EV\",\"5109\",\"BUF\",\"DTW\",11.00,-10.00,0.00,\"\",0.00,52.00,37.00,241.00,,,,,,\n2015,5,7,\"EV\",\"5109\",\"BUF\",\"DTW\",7.00,0.00,0.00,\"\",0.00,66.00,38.00,241.00,,,,,,\n2015,5,20,\"EV\",\"5109\",\"BUF\",\"DTW\",-6.00,-13.00,0.00,\"\",0.00,66.00,42.00,241.00,,,,,,\n2015,5,18,\"EV\",\"5109\",\"BUF\",\"DTW\",7.00,-8.00,0.00,\"\",0.00,58.00,45.00,241.00,,,,,,\n2015,5,8,\"EV\",\"5109\",\"BUF\",\"DTW\",68.00,56.00,0.00,\"\",0.00,61.00,38.00,241.00,56.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"EV\",\"5109\",\"BUF\",\"DTW\",-2.00,-18.00,0.00,\"\",0.00,57.00,42.00,241.00,,,,,,\n2015,5,13,\"EV\",\"5109\",\"BUF\",\"DTW\",-4.00,7.00,0.00,\"\",0.00,84.00,46.00,241.00,,,,,,\n2015,5,21,\"EV\",\"5109\",\"BUF\",\"DTW\",-6.00,-24.00,0.00,\"\",0.00,55.00,40.00,241.00,,,,,,\n2015,5,22,\"EV\",\"5109\",\"BUF\",\"DTW\",-8.00,-13.00,0.00,\"\",0.00,68.00,53.00,241.00,,,,,,\n2015,5,11,\"EV\",\"5109\",\"BUF\",\"DTW\",8.00,74.00,0.00,\"\",0.00,139.00,56.00,241.00,8.00,0.00,66.00,0.00,0.00,\n2015,5,14,\"EV\",\"5109\",\"BUF\",\"DTW\",1.00,-15.00,0.00,\"\",0.00,57.00,39.00,241.00,,,,,,\n2015,5,15,\"EV\",\"5109\",\"BUF\",\"DTW\",-6.00,-18.00,0.00,\"\",0.00,61.00,47.00,241.00,,,,,,\n2015,5,12,\"EV\",\"5109\",\"BUF\",\"DTW\",-8.00,-12.00,0.00,\"\",0.00,69.00,50.00,241.00,,,,,,\n2015,5,19,\"EV\",\"5109\",\"BUF\",\"DTW\",156.00,141.00,0.00,\"\",0.00,58.00,46.00,241.00,0.00,0.00,0.00,0.00,141.00,\n2015,5,1,\"EV\",\"5111\",\"BUF\",\"DTW\",26.00,4.00,0.00,\"\",0.00,51.00,38.00,241.00,,,,,,\n2015,5,26,\"EV\",\"5111\",\"BUF\",\"DTW\",31.00,20.00,0.00,\"\",0.00,62.00,44.00,241.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,27,\"EV\",\"5111\",\"BUF\",\"DTW\",-5.00,-4.00,0.00,\"\",0.00,74.00,48.00,241.00,,,,,,\n2015,5,29,\"EV\",\"5111\",\"BUF\",\"DTW\",-12.00,-22.00,0.00,\"\",0.00,63.00,44.00,241.00,,,,,,\n2015,5,4,\"EV\",\"5111\",\"BUF\",\"DTW\",-9.00,-21.00,0.00,\"\",0.00,61.00,43.00,241.00,,,,,,\n2015,5,6,\"EV\",\"5111\",\"BUF\",\"DTW\",-9.00,-10.00,0.00,\"\",0.00,72.00,44.00,241.00,,,,,,\n2015,5,18,\"EV\",\"5111\",\"BUF\",\"DTW\",-5.00,-15.00,0.00,\"\",0.00,63.00,46.00,241.00,,,,,,\n2015,5,7,\"EV\",\"5111\",\"BUF\",\"DTW\",-4.00,-19.00,0.00,\"\",0.00,58.00,39.00,241.00,,,,,,\n2015,5,28,\"EV\",\"5111\",\"BUF\",\"DTW\",-6.00,-22.00,0.00,\"\",0.00,57.00,38.00,241.00,,,,,,\n2015,5,19,\"EV\",\"5111\",\"BUF\",\"DTW\",3.00,7.00,0.00,\"\",0.00,77.00,50.00,241.00,,,,,,\n2015,5,8,\"EV\",\"5111\",\"BUF\",\"DTW\",-7.00,-20.00,0.00,\"\",0.00,60.00,41.00,241.00,,,,,,\n2015,5,13,\"EV\",\"5316\",\"LGA\",\"CLE\",-10.00,21.00,0.00,\"\",0.00,147.00,69.00,419.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,1,\"EV\",\"5316\",\"MKE\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,123.00,103.00,738.00,,,,,,\n2015,5,10,\"EV\",\"5316\",\"MKE\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,136.00,106.00,738.00,,,,,,\n2015,5,30,\"EV\",\"5318\",\"DTW\",\"SWF\",-3.00,-3.00,0.00,\"\",0.00,92.00,74.00,479.00,,,,,,\n2015,5,16,\"EV\",\"5318\",\"DTW\",\"SWF\",-6.00,5.00,0.00,\"\",0.00,103.00,80.00,479.00,,,,,,\n2015,5,30,\"EV\",\"5319\",\"BGR\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,89.00,71.00,378.00,,,,,,\n2015,5,26,\"EV\",\"5320\",\"SAV\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,122.00,95.00,722.00,,,,,,\n2015,5,4,\"EV\",\"5320\",\"SAV\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,125.00,103.00,722.00,,,,,,\n2015,5,5,\"EV\",\"5320\",\"SAV\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,126.00,100.00,722.00,,,,,,\n2015,5,18,\"EV\",\"5320\",\"SAV\",\"LGA\",144.00,167.00,0.00,\"\",0.00,153.00,123.00,722.00,144.00,0.00,23.00,0.00,0.00,\n2015,5,6,\"EV\",\"5320\",\"SAV\",\"LGA\",18.00,21.00,0.00,\"\",0.00,133.00,94.00,722.00,2.00,0.00,3.00,0.00,16.00,\n2015,5,7,\"EV\",\"5320\",\"SAV\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,118.00,97.00,722.00,,,,,,\n2015,5,29,\"EV\",\"5320\",\"SAV\",\"LGA\",8.00,28.00,0.00,\"\",0.00,150.00,103.00,722.00,8.00,0.00,20.00,0.00,0.00,\n2015,5,27,\"EV\",\"5320\",\"SAV\",\"LGA\",26.00,6.00,0.00,\"\",0.00,110.00,95.00,722.00,,,,,,\n2015,5,8,\"EV\",\"5320\",\"SAV\",\"LGA\",17.00,19.00,0.00,\"\",0.00,132.00,105.00,722.00,10.00,0.00,2.00,0.00,7.00,\n2015,5,20,\"EV\",\"5320\",\"SAV\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,111.00,93.00,722.00,,,,,,\n2015,5,19,\"EV\",\"5320\",\"SAV\",\"LGA\",115.00,108.00,0.00,\"\",0.00,125.00,95.00,722.00,0.00,0.00,108.00,0.00,0.00,\n2015,5,21,\"EV\",\"5320\",\"SAV\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,120.00,100.00,722.00,,,,,,\n2015,5,11,\"EV\",\"5320\",\"SAV\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,119.00,100.00,722.00,,,,,,\n2015,5,12,\"EV\",\"5320\",\"SAV\",\"LGA\",-6.00,-31.00,0.00,\"\",0.00,107.00,92.00,722.00,,,,,,\n2015,5,22,\"EV\",\"5320\",\"SAV\",\"LGA\",30.00,30.00,0.00,\"\",0.00,130.00,94.00,722.00,5.00,0.00,0.00,0.00,25.00,\n2015,5,14,\"EV\",\"5320\",\"SAV\",\"LGA\",15.00,12.00,0.00,\"\",0.00,127.00,104.00,722.00,,,,,,\n2015,5,13,\"EV\",\"5320\",\"SAV\",\"LGA\",19.00,9.00,0.00,\"\",0.00,120.00,96.00,722.00,,,,,,\n2015,5,15,\"EV\",\"5320\",\"SAV\",\"LGA\",8.00,4.00,0.00,\"\",0.00,126.00,95.00,722.00,,,,,,\n2015,5,28,\"EV\",\"5320\",\"SAV\",\"LGA\",,,1.00,\"A\",0.00,,,722.00,,,,,,\n2015,5,1,\"EV\",\"5326\",\"ALB\",\"DTW\",-8.00,-10.00,0.00,\"\",0.00,104.00,75.00,489.00,,,,,,\n2015,5,22,\"EV\",\"5326\",\"ALB\",\"DTW\",-7.00,9.00,0.00,\"\",0.00,122.00,86.00,489.00,,,,,,\n2015,5,14,\"EV\",\"5326\",\"ALB\",\"DTW\",-5.00,1.00,0.00,\"\",0.00,112.00,80.00,489.00,,,,,,\n2015,5,15,\"EV\",\"5326\",\"ALB\",\"DTW\",8.00,17.00,0.00,\"\",0.00,115.00,83.00,489.00,8.00,0.00,9.00,0.00,0.00,\n2015,5,1,\"EV\",\"5326\",\"DTW\",\"ALB\",-3.00,-10.00,0.00,\"\",0.00,87.00,71.00,489.00,,,,,,\n2015,5,22,\"EV\",\"5326\",\"DTW\",\"ALB\",-5.00,-14.00,0.00,\"\",0.00,85.00,72.00,489.00,,,,,,\n2015,5,15,\"EV\",\"5326\",\"DTW\",\"ALB\",12.00,9.00,0.00,\"\",0.00,91.00,65.00,489.00,,,,,,\n2015,5,14,\"EV\",\"5326\",\"DTW\",\"ALB\",-3.00,-18.00,0.00,\"\",0.00,79.00,66.00,489.00,,,,,,\n2015,5,1,\"EV\",\"5328\",\"LGA\",\"DTW\",-6.00,-7.00,0.00,\"\",0.00,118.00,87.00,502.00,,,,,,\n2015,5,17,\"EV\",\"5328\",\"SAV\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,117.00,100.00,722.00,,,,,,\n2015,5,9,\"EV\",\"5328\",\"SAV\",\"LGA\",0.00,6.00,0.00,\"\",0.00,139.00,110.00,722.00,,,,,,\n2015,5,28,\"EV\",\"5328\",\"SAV\",\"LGA\",5.00,4.00,0.00,\"\",0.00,124.00,100.00,722.00,,,,,,\n2015,5,26,\"EV\",\"5328\",\"SAV\",\"LGA\",0.00,3.00,0.00,\"\",0.00,130.00,98.00,722.00,,,,,,\n2015,5,29,\"EV\",\"5328\",\"SAV\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,122.00,99.00,722.00,,,,,,\n2015,5,2,\"EV\",\"5328\",\"SAV\",\"LGA\",-4.00,2.00,0.00,\"\",0.00,139.00,105.00,722.00,,,,,,\n2015,5,4,\"EV\",\"5328\",\"SAV\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,124.00,99.00,722.00,,,,,,\n2015,5,27,\"EV\",\"5328\",\"SAV\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,127.00,102.00,722.00,,,,,,\n2015,5,3,\"EV\",\"5328\",\"SAV\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,116.00,98.00,722.00,,,,,,\n2015,5,30,\"EV\",\"5328\",\"SAV\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,129.00,110.00,722.00,,,,,,\n2015,5,5,\"EV\",\"5328\",\"SAV\",\"LGA\",14.00,14.00,0.00,\"\",0.00,125.00,95.00,722.00,,,,,,\n2015,5,6,\"EV\",\"5328\",\"SAV\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,111.00,103.00,722.00,,,,,,\n2015,5,7,\"EV\",\"5328\",\"SAV\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,124.00,104.00,722.00,,,,,,\n2015,5,8,\"EV\",\"5328\",\"SAV\",\"LGA\",2.00,10.00,0.00,\"\",0.00,133.00,116.00,722.00,,,,,,\n2015,5,19,\"EV\",\"5328\",\"SAV\",\"LGA\",45.00,32.00,0.00,\"\",0.00,112.00,98.00,722.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"EV\",\"5328\",\"SAV\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,111.00,93.00,722.00,,,,,,\n2015,5,11,\"EV\",\"5328\",\"SAV\",\"LGA\",0.00,3.00,0.00,\"\",0.00,128.00,99.00,722.00,,,,,,\n2015,5,21,\"EV\",\"5328\",\"SAV\",\"LGA\",1.00,-9.00,0.00,\"\",0.00,115.00,93.00,722.00,,,,,,\n2015,5,22,\"EV\",\"5328\",\"SAV\",\"LGA\",1.00,-15.00,0.00,\"\",0.00,109.00,88.00,722.00,,,,,,\n2015,5,23,\"EV\",\"5328\",\"SAV\",\"LGA\",-1.00,5.00,0.00,\"\",0.00,139.00,98.00,722.00,,,,,,\n2015,5,13,\"EV\",\"5328\",\"SAV\",\"LGA\",11.00,-2.00,0.00,\"\",0.00,112.00,89.00,722.00,,,,,,\n2015,5,12,\"EV\",\"5328\",\"SAV\",\"LGA\",7.00,-1.00,0.00,\"\",0.00,117.00,95.00,722.00,,,,,,\n2015,5,14,\"EV\",\"5328\",\"SAV\",\"LGA\",19.00,23.00,0.00,\"\",0.00,129.00,98.00,722.00,19.00,0.00,4.00,0.00,0.00,\n2015,5,15,\"EV\",\"5328\",\"SAV\",\"LGA\",0.00,25.00,0.00,\"\",0.00,150.00,97.00,722.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,16,\"EV\",\"5328\",\"SAV\",\"LGA\",0.00,30.00,0.00,\"\",0.00,163.00,110.00,722.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,18,\"EV\",\"5328\",\"SAV\",\"LGA\",,,1.00,\"B\",0.00,,,722.00,,,,,,\n2015,5,25,\"EV\",\"5329\",\"LGA\",\"SAV\",-7.00,-19.00,0.00,\"\",0.00,127.00,98.00,722.00,,,,,,\n2015,5,17,\"EV\",\"5329\",\"LGA\",\"SAV\",-5.00,-21.00,0.00,\"\",0.00,123.00,93.00,722.00,,,,,,\n2015,5,28,\"EV\",\"5329\",\"LGA\",\"SAV\",-1.00,18.00,0.00,\"\",0.00,158.00,98.00,722.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,3,\"EV\",\"5329\",\"LGA\",\"SAV\",-5.00,-20.00,0.00,\"\",0.00,124.00,100.00,722.00,,,,,,\n2015,5,1,\"EV\",\"5329\",\"LGA\",\"SAV\",-5.00,-23.00,0.00,\"\",0.00,121.00,104.00,722.00,,,,,,\n2015,5,2,\"EV\",\"5329\",\"LGA\",\"SAV\",-4.00,-19.00,0.00,\"\",0.00,133.00,97.00,722.00,,,,,,\n2015,5,26,\"EV\",\"5329\",\"LGA\",\"SAV\",-8.00,-28.00,0.00,\"\",0.00,119.00,97.00,722.00,,,,,,\n2015,5,4,\"EV\",\"5329\",\"LGA\",\"SAV\",-9.00,-9.00,0.00,\"\",0.00,139.00,107.00,722.00,,,,,,\n2015,5,29,\"EV\",\"5329\",\"LGA\",\"SAV\",-4.00,-15.00,0.00,\"\",0.00,128.00,96.00,722.00,,,,,,\n2015,5,5,\"EV\",\"5329\",\"LGA\",\"SAV\",-7.00,-13.00,0.00,\"\",0.00,133.00,102.00,722.00,,,,,,\n2015,5,8,\"EV\",\"5329\",\"LGA\",\"SAV\",-1.00,-21.00,0.00,\"\",0.00,119.00,95.00,722.00,,,,,,\n2015,5,7,\"EV\",\"5329\",\"LGA\",\"SAV\",-5.00,-23.00,0.00,\"\",0.00,121.00,90.00,722.00,,,,,,\n2015,5,6,\"EV\",\"5329\",\"LGA\",\"SAV\",-8.00,-1.00,0.00,\"\",0.00,146.00,102.00,722.00,,,,,,\n2015,5,21,\"EV\",\"5329\",\"LGA\",\"SAV\",-7.00,-13.00,0.00,\"\",0.00,133.00,104.00,722.00,,,,,,\n2015,5,18,\"EV\",\"5329\",\"LGA\",\"SAV\",99.00,110.00,0.00,\"\",0.00,150.00,92.00,722.00,10.00,0.00,11.00,0.00,89.00,\n2015,5,10,\"EV\",\"5329\",\"LGA\",\"SAV\",0.00,5.00,0.00,\"\",0.00,144.00,95.00,722.00,,,,,,\n2015,5,20,\"EV\",\"5329\",\"LGA\",\"SAV\",-4.00,25.00,0.00,\"\",0.00,168.00,98.00,722.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,19,\"EV\",\"5329\",\"LGA\",\"SAV\",55.00,32.00,0.00,\"\",0.00,116.00,96.00,722.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,11,\"EV\",\"5329\",\"LGA\",\"SAV\",35.00,27.00,0.00,\"\",0.00,131.00,98.00,722.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,22,\"EV\",\"5329\",\"LGA\",\"SAV\",-4.00,-5.00,0.00,\"\",0.00,138.00,102.00,722.00,,,,,,\n2015,5,13,\"EV\",\"5329\",\"LGA\",\"SAV\",-3.00,-4.00,0.00,\"\",0.00,138.00,95.00,722.00,,,,,,\n2015,5,12,\"EV\",\"5329\",\"LGA\",\"SAV\",-5.00,-19.00,0.00,\"\",0.00,125.00,101.00,722.00,,,,,,\n2015,5,15,\"EV\",\"5329\",\"LGA\",\"SAV\",-1.00,-6.00,0.00,\"\",0.00,134.00,96.00,722.00,,,,,,\n2015,5,14,\"EV\",\"5329\",\"LGA\",\"SAV\",-4.00,-23.00,0.00,\"\",0.00,120.00,97.00,722.00,,,,,,\n2015,5,16,\"EV\",\"5329\",\"LGA\",\"SAV\",-4.00,-26.00,0.00,\"\",0.00,126.00,93.00,722.00,,,,,,\n2015,5,31,\"EV\",\"5329\",\"LGA\",\"SAV\",,,1.00,\"A\",0.00,,,722.00,,,,,,\n2015,5,27,\"EV\",\"5329\",\"LGA\",\"SAV\",,,1.00,\"C\",0.00,,,722.00,,,,,,\n2015,5,25,\"EV\",\"5331\",\"DTW\",\"SYR\",-5.00,-13.00,0.00,\"\",0.00,70.00,54.00,374.00,,,,,,\n2015,5,28,\"EV\",\"5331\",\"DTW\",\"SYR\",-3.00,0.00,0.00,\"\",0.00,81.00,56.00,374.00,,,,,,\n2015,5,27,\"EV\",\"5331\",\"DTW\",\"SYR\",63.00,51.00,0.00,\"\",0.00,66.00,51.00,374.00,51.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"EV\",\"5331\",\"DTW\",\"SYR\",-3.00,-3.00,0.00,\"\",0.00,78.00,57.00,374.00,,,,,,\n2015,5,29,\"EV\",\"5331\",\"DTW\",\"SYR\",-10.00,-23.00,0.00,\"\",0.00,65.00,50.00,374.00,,,,,,\n2015,5,20,\"EV\",\"5331\",\"DTW\",\"SYR\",-1.00,-3.00,0.00,\"\",0.00,76.00,55.00,374.00,,,,,,\n2015,5,22,\"EV\",\"5331\",\"DTW\",\"SYR\",0.00,-3.00,0.00,\"\",0.00,75.00,55.00,374.00,,,,,,\n2015,5,25,\"EV\",\"5331\",\"SYR\",\"DTW\",-5.00,-12.00,0.00,\"\",0.00,89.00,68.00,374.00,,,,,,\n2015,5,28,\"EV\",\"5331\",\"SYR\",\"DTW\",-4.00,-25.00,0.00,\"\",0.00,75.00,58.00,374.00,,,,,,\n2015,5,27,\"EV\",\"5331\",\"SYR\",\"DTW\",166.00,144.00,0.00,\"\",0.00,74.00,59.00,374.00,7.00,0.00,86.00,0.00,51.00,\n2015,5,29,\"EV\",\"5331\",\"SYR\",\"DTW\",-7.00,-21.00,0.00,\"\",0.00,82.00,66.00,374.00,,,,,,\n2015,5,31,\"EV\",\"5331\",\"SYR\",\"DTW\",-3.00,-9.00,0.00,\"\",0.00,90.00,70.00,374.00,,,,,,\n2015,5,20,\"EV\",\"5331\",\"SYR\",\"DTW\",-10.00,-19.00,0.00,\"\",0.00,85.00,69.00,374.00,,,,,,\n2015,5,22,\"EV\",\"5331\",\"SYR\",\"DTW\",-5.00,6.00,0.00,\"\",0.00,107.00,87.00,374.00,,,,,,\n2015,5,6,\"EV\",\"5334\",\"BUF\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,69.00,51.00,292.00,,,,,,\n2015,5,20,\"EV\",\"5334\",\"BUF\",\"LGA\",-9.00,-13.00,0.00,\"\",0.00,81.00,54.00,292.00,,,,,,\n2015,5,13,\"EV\",\"5334\",\"BUF\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,77.00,54.00,292.00,,,,,,\n2015,5,27,\"EV\",\"5334\",\"BUF\",\"LGA\",,,1.00,\"C\",0.00,,,292.00,,,,,,\n2015,5,17,\"EV\",\"5341\",\"LGA\",\"STL\",-2.00,-20.00,0.00,\"\",0.00,162.00,130.00,888.00,,,,,,\n2015,5,3,\"EV\",\"5350\",\"LGA\",\"GSO\",-3.00,-12.00,0.00,\"\",0.00,104.00,68.00,461.00,,,,,,\n2015,5,1,\"EV\",\"5352\",\"RIC\",\"LGA\",-7.00,5.00,0.00,\"\",0.00,96.00,45.00,292.00,,,,,,\n2015,5,23,\"EV\",\"5354\",\"LGA\",\"MHT\",-15.00,-30.00,0.00,\"\",0.00,66.00,38.00,195.00,,,,,,\n2015,5,30,\"EV\",\"5355\",\"LGA\",\"BGR\",-3.00,-17.00,0.00,\"\",0.00,86.00,59.00,378.00,,,,,,\n2015,5,1,\"EV\",\"5357\",\"SYR\",\"LGA\",-5.00,15.00,0.00,\"\",0.00,84.00,50.00,198.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,9,\"EV\",\"5359\",\"ELM\",\"DTW\",-3.00,-7.00,0.00,\"\",0.00,70.00,52.00,332.00,,,,,,\n2015,5,28,\"EV\",\"5359\",\"ELM\",\"DTW\",-1.00,-3.00,0.00,\"\",0.00,74.00,55.00,332.00,,,,,,\n2015,5,29,\"EV\",\"5359\",\"ELM\",\"DTW\",-5.00,-8.00,0.00,\"\",0.00,73.00,50.00,332.00,,,,,,\n2015,5,25,\"EV\",\"5359\",\"ELM\",\"DTW\",-6.00,-14.00,0.00,\"\",0.00,68.00,54.00,332.00,,,,,,\n2015,5,17,\"EV\",\"5359\",\"ELM\",\"DTW\",173.00,164.00,0.00,\"\",0.00,67.00,52.00,332.00,164.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"EV\",\"5359\",\"ELM\",\"DTW\",-10.00,17.00,0.00,\"\",0.00,103.00,60.00,332.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,2,\"EV\",\"5359\",\"ELM\",\"DTW\",-5.00,-8.00,0.00,\"\",0.00,71.00,49.00,332.00,,,,,,\n2015,5,26,\"EV\",\"5359\",\"ELM\",\"DTW\",-5.00,-8.00,0.00,\"\",0.00,73.00,53.00,332.00,,,,,,\n2015,5,3,\"EV\",\"5359\",\"ELM\",\"DTW\",-6.00,-11.00,0.00,\"\",0.00,71.00,51.00,332.00,,,,,,\n2015,5,5,\"EV\",\"5359\",\"ELM\",\"DTW\",-6.00,-8.00,0.00,\"\",0.00,74.00,59.00,332.00,,,,,,\n2015,5,4,\"EV\",\"5359\",\"ELM\",\"DTW\",2.00,-10.00,0.00,\"\",0.00,64.00,49.00,332.00,,,,,,\n2015,5,6,\"EV\",\"5359\",\"ELM\",\"DTW\",-10.00,-9.00,0.00,\"\",0.00,77.00,57.00,332.00,,,,,,\n2015,5,7,\"EV\",\"5359\",\"ELM\",\"DTW\",-3.00,9.00,0.00,\"\",0.00,88.00,58.00,332.00,,,,,,\n2015,5,30,\"EV\",\"5359\",\"ELM\",\"DTW\",-9.00,-4.00,0.00,\"\",0.00,79.00,54.00,332.00,,,,,,\n2015,5,27,\"EV\",\"5359\",\"ELM\",\"DTW\",-4.00,-10.00,0.00,\"\",0.00,70.00,54.00,332.00,,,,,,\n2015,5,18,\"EV\",\"5359\",\"ELM\",\"DTW\",-4.00,-9.00,0.00,\"\",0.00,71.00,54.00,332.00,,,,,,\n2015,5,31,\"EV\",\"5359\",\"ELM\",\"DTW\",-6.00,1.00,0.00,\"\",0.00,83.00,65.00,332.00,,,,,,\n2015,5,19,\"EV\",\"5359\",\"ELM\",\"DTW\",-1.00,8.00,0.00,\"\",0.00,85.00,54.00,332.00,,,,,,\n2015,5,8,\"EV\",\"5359\",\"ELM\",\"DTW\",-4.00,-9.00,0.00,\"\",0.00,71.00,54.00,332.00,,,,,,\n2015,5,10,\"EV\",\"5359\",\"ELM\",\"DTW\",-5.00,-4.00,0.00,\"\",0.00,77.00,55.00,332.00,,,,,,\n2015,5,23,\"EV\",\"5359\",\"ELM\",\"DTW\",0.00,9.00,0.00,\"\",0.00,83.00,60.00,332.00,,,,,,\n2015,5,20,\"EV\",\"5359\",\"ELM\",\"DTW\",-2.00,3.00,0.00,\"\",0.00,81.00,65.00,332.00,,,,,,\n2015,5,11,\"EV\",\"5359\",\"ELM\",\"DTW\",-7.00,39.00,0.00,\"\",0.00,122.00,54.00,332.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,21,\"EV\",\"5359\",\"ELM\",\"DTW\",-2.00,-6.00,0.00,\"\",0.00,72.00,57.00,332.00,,,,,,\n2015,5,22,\"EV\",\"5359\",\"ELM\",\"DTW\",-6.00,3.00,0.00,\"\",0.00,85.00,61.00,332.00,,,,,,\n2015,5,12,\"EV\",\"5359\",\"ELM\",\"DTW\",-6.00,-2.00,0.00,\"\",0.00,80.00,60.00,332.00,,,,,,\n2015,5,16,\"EV\",\"5359\",\"ELM\",\"DTW\",-6.00,-7.00,0.00,\"\",0.00,73.00,53.00,332.00,,,,,,\n2015,5,15,\"EV\",\"5359\",\"ELM\",\"DTW\",-10.00,-19.00,0.00,\"\",0.00,67.00,50.00,332.00,,,,,,\n2015,5,24,\"EV\",\"5359\",\"ELM\",\"DTW\",-3.00,-10.00,0.00,\"\",0.00,69.00,53.00,332.00,,,,,,\n2015,5,14,\"EV\",\"5359\",\"ELM\",\"DTW\",-8.00,24.00,0.00,\"\",0.00,108.00,56.00,332.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,13,\"EV\",\"5359\",\"ELM\",\"DTW\",-9.00,5.00,0.00,\"\",0.00,90.00,68.00,332.00,,,,,,\n2015,5,31,\"EV\",\"5431\",\"STL\",\"LGA\",31.00,50.00,0.00,\"\",0.00,165.00,140.00,888.00,31.00,0.00,19.00,0.00,0.00,\n2015,5,17,\"EV\",\"5432\",\"LGA\",\"GSO\",-11.00,-23.00,0.00,\"\",0.00,97.00,68.00,461.00,,,,,,\n2015,5,29,\"EV\",\"5432\",\"LGA\",\"GSO\",-10.00,-17.00,0.00,\"\",0.00,102.00,66.00,461.00,,,,,,\n2015,5,1,\"EV\",\"5432\",\"LGA\",\"GSO\",37.00,28.00,0.00,\"\",0.00,100.00,70.00,461.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"EV\",\"5432\",\"LGA\",\"GSO\",-4.00,-11.00,0.00,\"\",0.00,102.00,66.00,461.00,,,,,,\n2015,5,26,\"EV\",\"5432\",\"LGA\",\"GSO\",146.00,134.00,0.00,\"\",0.00,97.00,68.00,461.00,134.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"EV\",\"5432\",\"LGA\",\"GSO\",-10.00,-1.00,0.00,\"\",0.00,118.00,67.00,461.00,,,,,,\n2015,5,5,\"EV\",\"5432\",\"LGA\",\"GSO\",-5.00,-15.00,0.00,\"\",0.00,99.00,71.00,461.00,,,,,,\n2015,5,31,\"EV\",\"5432\",\"LGA\",\"GSO\",130.00,167.00,0.00,\"\",0.00,146.00,72.00,461.00,130.00,0.00,37.00,0.00,0.00,\n2015,5,10,\"EV\",\"5432\",\"LGA\",\"GSO\",48.00,48.00,0.00,\"\",0.00,109.00,69.00,461.00,48.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"EV\",\"5432\",\"LGA\",\"GSO\",-6.00,-15.00,0.00,\"\",0.00,100.00,77.00,461.00,,,,,,\n2015,5,20,\"EV\",\"5432\",\"LGA\",\"GSO\",-6.00,16.00,0.00,\"\",0.00,131.00,71.00,461.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,21,\"EV\",\"5432\",\"LGA\",\"GSO\",-5.00,13.00,0.00,\"\",0.00,127.00,78.00,461.00,,,,,,\n2015,5,12,\"EV\",\"5432\",\"LGA\",\"GSO\",-5.00,7.00,0.00,\"\",0.00,121.00,73.00,461.00,,,,,,\n2015,5,25,\"EV\",\"5432\",\"LGA\",\"GSO\",16.00,4.00,0.00,\"\",0.00,97.00,66.00,461.00,,,,,,\n2015,5,24,\"EV\",\"5432\",\"LGA\",\"GSO\",-8.00,-24.00,0.00,\"\",0.00,94.00,70.00,461.00,,,,,,\n2015,5,13,\"EV\",\"5432\",\"LGA\",\"GSO\",-7.00,-6.00,0.00,\"\",0.00,110.00,66.00,461.00,,,,,,\n2015,5,14,\"EV\",\"5432\",\"LGA\",\"GSO\",53.00,41.00,0.00,\"\",0.00,97.00,68.00,461.00,0.00,0.00,0.00,0.00,41.00,\n2015,5,15,\"EV\",\"5432\",\"LGA\",\"GSO\",-1.00,-18.00,0.00,\"\",0.00,92.00,69.00,461.00,,,,,,\n2015,5,22,\"EV\",\"5432\",\"LGA\",\"GSO\",36.00,39.00,0.00,\"\",0.00,112.00,80.00,461.00,11.00,0.00,3.00,0.00,25.00,\n2015,5,7,\"EV\",\"5432\",\"LGA\",\"GSO\",97.00,82.00,0.00,\"\",0.00,94.00,66.00,461.00,25.00,0.00,0.00,0.00,57.00,\n2015,5,11,\"EV\",\"5432\",\"LGA\",\"GSO\",194.00,196.00,0.00,\"\",0.00,111.00,71.00,461.00,0.00,0.00,2.00,0.00,194.00,\n2015,5,18,\"EV\",\"5432\",\"LGA\",\"GSO\",,,1.00,\"B\",0.00,,,461.00,,,,,,\n2015,5,27,\"EV\",\"5432\",\"LGA\",\"GSO\",,,1.00,\"B\",0.00,,,461.00,,,,,,\n2015,5,28,\"EV\",\"5432\",\"LGA\",\"GSO\",,,1.00,\"A\",0.00,,,461.00,,,,,,\n2015,5,19,\"EV\",\"5432\",\"LGA\",\"GSO\",,,1.00,\"A\",0.00,,,461.00,,,,,,\n2015,5,26,\"EV\",\"5433\",\"DTW\",\"SWF\",113.00,108.00,0.00,\"\",0.00,93.00,72.00,479.00,0.00,0.00,0.00,0.00,108.00,\n2015,5,19,\"EV\",\"5433\",\"DTW\",\"SWF\",-8.00,2.00,0.00,\"\",0.00,108.00,83.00,479.00,,,,,,\n2015,5,25,\"EV\",\"5435\",\"RIC\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,70.00,45.00,292.00,,,,,,\n2015,5,7,\"EV\",\"5443\",\"LGA\",\"CLT\",-6.00,-14.00,0.00,\"\",0.00,121.00,86.00,544.00,,,,,,\n2015,5,8,\"EV\",\"5443\",\"LGA\",\"CLT\",-9.00,-18.00,0.00,\"\",0.00,120.00,81.00,544.00,,,,,,\n2015,5,30,\"EV\",\"5443\",\"ROC\",\"DTW\",86.00,91.00,0.00,\"\",0.00,85.00,54.00,296.00,0.00,0.00,91.00,0.00,0.00,\n2015,5,28,\"EV\",\"5449\",\"DTW\",\"ELM\",-7.00,-10.00,0.00,\"\",0.00,69.00,49.00,332.00,,,,,,\n2015,5,25,\"EV\",\"5449\",\"DTW\",\"ELM\",-5.00,-9.00,0.00,\"\",0.00,68.00,51.00,332.00,,,,,,\n2015,5,1,\"EV\",\"5449\",\"DTW\",\"ELM\",-4.00,-4.00,0.00,\"\",0.00,72.00,49.00,332.00,,,,,,\n2015,5,3,\"EV\",\"5449\",\"DTW\",\"ELM\",-5.00,-14.00,0.00,\"\",0.00,63.00,48.00,332.00,,,,,,\n2015,5,17,\"EV\",\"5449\",\"DTW\",\"ELM\",-4.00,-7.00,0.00,\"\",0.00,69.00,48.00,332.00,,,,,,\n2015,5,4,\"EV\",\"5449\",\"DTW\",\"ELM\",-6.00,-6.00,0.00,\"\",0.00,72.00,53.00,332.00,,,,,,\n2015,5,29,\"EV\",\"5449\",\"DTW\",\"ELM\",-3.00,-4.00,0.00,\"\",0.00,71.00,53.00,332.00,,,,,,\n2015,5,7,\"EV\",\"5449\",\"DTW\",\"ELM\",-4.00,2.00,0.00,\"\",0.00,78.00,55.00,332.00,,,,,,\n2015,5,18,\"EV\",\"5449\",\"DTW\",\"ELM\",-1.00,-2.00,0.00,\"\",0.00,71.00,52.00,332.00,,,,,,\n2015,5,22,\"EV\",\"5449\",\"DTW\",\"ELM\",-6.00,-18.00,0.00,\"\",0.00,60.00,44.00,332.00,,,,,,\n2015,5,21,\"EV\",\"5449\",\"DTW\",\"ELM\",-6.00,-14.00,0.00,\"\",0.00,64.00,44.00,332.00,,,,,,\n2015,5,11,\"EV\",\"5449\",\"DTW\",\"ELM\",-2.00,-10.00,0.00,\"\",0.00,64.00,49.00,332.00,,,,,,\n2015,5,31,\"EV\",\"5449\",\"DTW\",\"ELM\",101.00,114.00,0.00,\"\",0.00,85.00,64.00,332.00,5.00,0.00,13.00,0.00,96.00,\n2015,5,8,\"EV\",\"5449\",\"DTW\",\"ELM\",-4.00,1.00,0.00,\"\",0.00,77.00,54.00,332.00,,,,,,\n2015,5,10,\"EV\",\"5449\",\"DTW\",\"ELM\",-4.00,-9.00,0.00,\"\",0.00,67.00,52.00,332.00,,,,,,\n2015,5,14,\"EV\",\"5449\",\"DTW\",\"ELM\",-1.00,-3.00,0.00,\"\",0.00,70.00,53.00,332.00,,,,,,\n2015,5,15,\"EV\",\"5449\",\"DTW\",\"ELM\",-9.00,-12.00,0.00,\"\",0.00,69.00,51.00,332.00,,,,,,\n2015,5,1,\"EV\",\"5449\",\"ELM\",\"DTW\",-5.00,-17.00,0.00,\"\",0.00,64.00,50.00,332.00,,,,,,\n2015,5,17,\"EV\",\"5449\",\"ELM\",\"DTW\",-7.00,-5.00,0.00,\"\",0.00,78.00,60.00,332.00,,,,,,\n2015,5,3,\"EV\",\"5449\",\"ELM\",\"DTW\",-8.00,-14.00,0.00,\"\",0.00,70.00,52.00,332.00,,,,,,\n2015,5,28,\"EV\",\"5449\",\"ELM\",\"DTW\",-6.00,-8.00,0.00,\"\",0.00,74.00,53.00,332.00,,,,,,\n2015,5,25,\"EV\",\"5449\",\"ELM\",\"DTW\",-2.00,-4.00,0.00,\"\",0.00,74.00,60.00,332.00,,,,,,\n2015,5,4,\"EV\",\"5449\",\"ELM\",\"DTW\",-8.00,-4.00,0.00,\"\",0.00,80.00,58.00,332.00,,,,,,\n2015,5,29,\"EV\",\"5449\",\"ELM\",\"DTW\",-4.00,-1.00,0.00,\"\",0.00,79.00,60.00,332.00,,,,,,\n2015,5,18,\"EV\",\"5449\",\"ELM\",\"DTW\",-1.00,-4.00,0.00,\"\",0.00,73.00,55.00,332.00,,,,,,\n2015,5,7,\"EV\",\"5449\",\"ELM\",\"DTW\",-3.00,5.00,0.00,\"\",0.00,84.00,57.00,332.00,,,,,,\n2015,5,8,\"EV\",\"5449\",\"ELM\",\"DTW\",-4.00,-10.00,0.00,\"\",0.00,70.00,52.00,332.00,,,,,,\n2015,5,10,\"EV\",\"5449\",\"ELM\",\"DTW\",-9.00,-9.00,0.00,\"\",0.00,76.00,58.00,332.00,,,,,,\n2015,5,11,\"EV\",\"5449\",\"ELM\",\"DTW\",-5.00,24.00,0.00,\"\",0.00,105.00,85.00,332.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,22,\"EV\",\"5449\",\"ELM\",\"DTW\",-7.00,-5.00,0.00,\"\",0.00,78.00,64.00,332.00,,,,,,\n2015,5,21,\"EV\",\"5449\",\"ELM\",\"DTW\",-6.00,-11.00,0.00,\"\",0.00,71.00,55.00,332.00,,,,,,\n2015,5,14,\"EV\",\"5449\",\"ELM\",\"DTW\",-1.00,-12.00,0.00,\"\",0.00,65.00,51.00,332.00,,,,,,\n2015,5,15,\"EV\",\"5449\",\"ELM\",\"DTW\",-8.00,-4.00,0.00,\"\",0.00,80.00,60.00,332.00,,,,,,\n2015,5,31,\"EV\",\"5449\",\"ELM\",\"DTW\",116.00,125.00,0.00,\"\",0.00,85.00,66.00,332.00,11.00,0.00,9.00,0.00,105.00,\n2015,5,25,\"EV\",\"5452\",\"DTW\",\"ELM\",-7.00,-6.00,0.00,\"\",0.00,68.00,47.00,332.00,,,,,,\n2015,5,9,\"EV\",\"5452\",\"DTW\",\"ELM\",8.00,20.00,0.00,\"\",0.00,78.00,58.00,332.00,8.00,0.00,12.00,0.00,0.00,\n2015,5,1,\"EV\",\"5452\",\"DTW\",\"ELM\",0.00,6.00,0.00,\"\",0.00,73.00,52.00,332.00,,,,,,\n2015,5,28,\"EV\",\"5452\",\"DTW\",\"ELM\",-4.00,-2.00,0.00,\"\",0.00,69.00,46.00,332.00,,,,,,\n2015,5,17,\"EV\",\"5452\",\"DTW\",\"ELM\",0.00,11.00,0.00,\"\",0.00,78.00,47.00,332.00,,,,,,\n2015,5,2,\"EV\",\"5452\",\"DTW\",\"ELM\",-4.00,-3.00,0.00,\"\",0.00,67.00,50.00,332.00,,,,,,\n2015,5,3,\"EV\",\"5452\",\"DTW\",\"ELM\",-3.00,-7.00,0.00,\"\",0.00,63.00,46.00,332.00,,,,,,\n2015,5,27,\"EV\",\"5452\",\"DTW\",\"ELM\",-5.00,-9.00,0.00,\"\",0.00,63.00,47.00,332.00,,,,,,\n2015,5,26,\"EV\",\"5452\",\"DTW\",\"ELM\",-2.00,7.00,0.00,\"\",0.00,76.00,52.00,332.00,,,,,,\n2015,5,29,\"EV\",\"5452\",\"DTW\",\"ELM\",-4.00,-6.00,0.00,\"\",0.00,65.00,48.00,332.00,,,,,,\n2015,5,4,\"EV\",\"5452\",\"DTW\",\"ELM\",74.00,75.00,0.00,\"\",0.00,68.00,51.00,332.00,74.00,0.00,1.00,0.00,0.00,\n2015,5,18,\"EV\",\"5452\",\"DTW\",\"ELM\",-7.00,2.00,0.00,\"\",0.00,76.00,54.00,332.00,,,,,,\n2015,5,5,\"EV\",\"5452\",\"DTW\",\"ELM\",9.00,6.00,0.00,\"\",0.00,64.00,45.00,332.00,,,,,,\n2015,5,6,\"EV\",\"5452\",\"DTW\",\"ELM\",-8.00,-11.00,0.00,\"\",0.00,64.00,50.00,332.00,,,,,,\n2015,5,31,\"EV\",\"5452\",\"DTW\",\"ELM\",-1.00,1.00,0.00,\"\",0.00,69.00,54.00,332.00,,,,,,\n2015,5,10,\"EV\",\"5452\",\"DTW\",\"ELM\",-2.00,-3.00,0.00,\"\",0.00,66.00,47.00,332.00,,,,,,\n2015,5,19,\"EV\",\"5452\",\"DTW\",\"ELM\",-2.00,-2.00,0.00,\"\",0.00,67.00,50.00,332.00,,,,,,\n2015,5,8,\"EV\",\"5452\",\"DTW\",\"ELM\",27.00,30.00,0.00,\"\",0.00,70.00,48.00,332.00,27.00,0.00,3.00,0.00,0.00,\n2015,5,7,\"EV\",\"5452\",\"DTW\",\"ELM\",-7.00,-4.00,0.00,\"\",0.00,70.00,48.00,332.00,,,,,,\n2015,5,21,\"EV\",\"5452\",\"DTW\",\"ELM\",-6.00,4.00,0.00,\"\",0.00,77.00,54.00,332.00,,,,,,\n2015,5,11,\"EV\",\"5452\",\"DTW\",\"ELM\",1.00,15.00,0.00,\"\",0.00,81.00,52.00,332.00,0.00,0.00,14.00,0.00,1.00,\n2015,5,20,\"EV\",\"5452\",\"DTW\",\"ELM\",12.00,16.00,0.00,\"\",0.00,71.00,46.00,332.00,12.00,0.00,4.00,0.00,0.00,\n2015,5,22,\"EV\",\"5452\",\"DTW\",\"ELM\",-7.00,-8.00,0.00,\"\",0.00,66.00,44.00,332.00,,,,,,\n2015,5,12,\"EV\",\"5452\",\"DTW\",\"ELM\",-5.00,-2.00,0.00,\"\",0.00,70.00,44.00,332.00,,,,,,\n2015,5,23,\"EV\",\"5452\",\"DTW\",\"ELM\",-5.00,-5.00,0.00,\"\",0.00,66.00,44.00,332.00,,,,,,\n2015,5,13,\"EV\",\"5452\",\"DTW\",\"ELM\",-3.00,-10.00,0.00,\"\",0.00,60.00,45.00,332.00,,,,,,\n2015,5,24,\"EV\",\"5452\",\"DTW\",\"ELM\",-5.00,-3.00,0.00,\"\",0.00,69.00,46.00,332.00,,,,,,\n2015,5,14,\"EV\",\"5452\",\"DTW\",\"ELM\",-4.00,-4.00,0.00,\"\",0.00,67.00,49.00,332.00,,,,,,\n2015,5,15,\"EV\",\"5452\",\"DTW\",\"ELM\",-4.00,-5.00,0.00,\"\",0.00,66.00,48.00,332.00,,,,,,\n2015,5,30,\"EV\",\"5452\",\"DTW\",\"ELM\",17.00,23.00,0.00,\"\",0.00,72.00,49.00,332.00,0.00,0.00,6.00,0.00,17.00,\n2015,5,16,\"EV\",\"5452\",\"DTW\",\"ELM\",6.00,26.00,0.00,\"\",0.00,86.00,52.00,332.00,6.00,0.00,20.00,0.00,0.00,\n2015,5,2,\"EV\",\"5566\",\"DTW\",\"ELM\",-5.00,-11.00,0.00,\"\",0.00,70.00,48.00,332.00,,,,,,\n2015,5,9,\"EV\",\"5566\",\"DTW\",\"ELM\",3.00,-2.00,0.00,\"\",0.00,71.00,52.00,332.00,,,,,,\n2015,5,5,\"EV\",\"5566\",\"DTW\",\"ELM\",-10.00,-11.00,0.00,\"\",0.00,76.00,46.00,332.00,,,,,,\n2015,5,30,\"EV\",\"5566\",\"DTW\",\"ELM\",-7.00,3.00,0.00,\"\",0.00,86.00,55.00,332.00,,,,,,\n2015,5,26,\"EV\",\"5566\",\"DTW\",\"ELM\",137.00,134.00,0.00,\"\",0.00,74.00,51.00,332.00,134.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"EV\",\"5566\",\"DTW\",\"ELM\",-9.00,-14.00,0.00,\"\",0.00,72.00,48.00,332.00,,,,,,\n2015,5,19,\"EV\",\"5566\",\"DTW\",\"ELM\",-2.00,0.00,0.00,\"\",0.00,79.00,50.00,332.00,,,,,,\n2015,5,20,\"EV\",\"5566\",\"DTW\",\"ELM\",-4.00,-18.00,0.00,\"\",0.00,63.00,47.00,332.00,,,,,,\n2015,5,12,\"EV\",\"5566\",\"DTW\",\"ELM\",-5.00,0.00,0.00,\"\",0.00,82.00,45.00,332.00,,,,,,\n2015,5,23,\"EV\",\"5566\",\"DTW\",\"ELM\",-7.00,-17.00,0.00,\"\",0.00,66.00,47.00,332.00,,,,,,\n2015,5,13,\"EV\",\"5566\",\"DTW\",\"ELM\",-9.00,-6.00,0.00,\"\",0.00,80.00,49.00,332.00,,,,,,\n2015,5,24,\"EV\",\"5566\",\"DTW\",\"ELM\",-5.00,-11.00,0.00,\"\",0.00,71.00,50.00,332.00,,,,,,\n2015,5,27,\"EV\",\"5566\",\"DTW\",\"ELM\",91.00,117.00,0.00,\"\",0.00,103.00,57.00,332.00,4.00,0.00,26.00,0.00,87.00,\n2015,5,16,\"EV\",\"5566\",\"DTW\",\"ELM\",-4.00,-6.00,0.00,\"\",0.00,74.00,49.00,332.00,,,,,,\n2015,5,9,\"EV\",\"5568\",\"LGA\",\"BUF\",-3.00,-19.00,0.00,\"\",0.00,72.00,46.00,292.00,,,,,,\n2015,5,30,\"EV\",\"5568\",\"LGA\",\"BUF\",-5.00,-21.00,0.00,\"\",0.00,72.00,49.00,292.00,,,,,,\n2015,5,28,\"EV\",\"5590\",\"DTW\",\"ELM\",-3.00,-6.00,0.00,\"\",0.00,68.00,50.00,332.00,,,,,,\n2015,5,3,\"EV\",\"5590\",\"DTW\",\"ELM\",-8.00,-6.00,0.00,\"\",0.00,72.00,50.00,332.00,,,,,,\n2015,5,9,\"EV\",\"5590\",\"DTW\",\"ELM\",-9.00,-3.00,0.00,\"\",0.00,76.00,49.00,332.00,,,,,,\n2015,5,2,\"EV\",\"5590\",\"DTW\",\"ELM\",7.00,2.00,0.00,\"\",0.00,65.00,48.00,332.00,,,,,,\n2015,5,1,\"EV\",\"5590\",\"DTW\",\"ELM\",-1.00,1.00,0.00,\"\",0.00,73.00,49.00,332.00,,,,,,\n2015,5,25,\"EV\",\"5590\",\"DTW\",\"ELM\",4.00,4.00,0.00,\"\",0.00,71.00,49.00,332.00,,,,,,\n2015,5,4,\"EV\",\"5590\",\"DTW\",\"ELM\",-5.00,-13.00,0.00,\"\",0.00,63.00,47.00,332.00,,,,,,\n2015,5,27,\"EV\",\"5590\",\"DTW\",\"ELM\",4.00,8.00,0.00,\"\",0.00,75.00,59.00,332.00,,,,,,\n2015,5,26,\"EV\",\"5590\",\"DTW\",\"ELM\",-6.00,0.00,0.00,\"\",0.00,77.00,56.00,332.00,,,,,,\n2015,5,30,\"EV\",\"5590\",\"DTW\",\"ELM\",12.00,12.00,0.00,\"\",0.00,70.00,53.00,332.00,,,,,,\n2015,5,29,\"EV\",\"5590\",\"DTW\",\"ELM\",-4.00,1.00,0.00,\"\",0.00,76.00,51.00,332.00,,,,,,\n2015,5,6,\"EV\",\"5590\",\"DTW\",\"ELM\",-3.00,-4.00,0.00,\"\",0.00,70.00,51.00,332.00,,,,,,\n2015,5,7,\"EV\",\"5590\",\"DTW\",\"ELM\",-5.00,-10.00,0.00,\"\",0.00,66.00,48.00,332.00,,,,,,\n2015,5,5,\"EV\",\"5590\",\"DTW\",\"ELM\",60.00,51.00,0.00,\"\",0.00,62.00,44.00,332.00,0.00,0.00,0.00,0.00,51.00,\n2015,5,31,\"EV\",\"5590\",\"DTW\",\"ELM\",-4.00,10.00,0.00,\"\",0.00,85.00,64.00,332.00,,,,,,\n2015,5,8,\"EV\",\"5590\",\"DTW\",\"ELM\",10.00,3.00,0.00,\"\",0.00,64.00,47.00,332.00,,,,,,\n2015,5,19,\"EV\",\"5590\",\"DTW\",\"ELM\",-3.00,-14.00,0.00,\"\",0.00,60.00,46.00,332.00,,,,,,\n2015,5,23,\"EV\",\"5590\",\"DTW\",\"ELM\",-3.00,0.00,0.00,\"\",0.00,73.00,51.00,332.00,,,,,,\n2015,5,20,\"EV\",\"5590\",\"DTW\",\"ELM\",-7.00,-12.00,0.00,\"\",0.00,66.00,47.00,332.00,,,,,,\n2015,5,21,\"EV\",\"5590\",\"DTW\",\"ELM\",5.00,2.00,0.00,\"\",0.00,68.00,48.00,332.00,,,,,,\n2015,5,11,\"EV\",\"5590\",\"DTW\",\"ELM\",-5.00,5.00,0.00,\"\",0.00,81.00,55.00,332.00,,,,,,\n2015,5,22,\"EV\",\"5590\",\"DTW\",\"ELM\",-2.00,-12.00,0.00,\"\",0.00,61.00,44.00,332.00,,,,,,\n2015,5,10,\"EV\",\"5590\",\"DTW\",\"ELM\",5.00,13.00,0.00,\"\",0.00,79.00,49.00,332.00,,,,,,\n2015,5,12,\"EV\",\"5590\",\"DTW\",\"ELM\",-7.00,-18.00,0.00,\"\",0.00,60.00,46.00,332.00,,,,,,\n2015,5,24,\"EV\",\"5590\",\"DTW\",\"ELM\",-4.00,-5.00,0.00,\"\",0.00,70.00,51.00,332.00,,,,,,\n2015,5,13,\"EV\",\"5590\",\"DTW\",\"ELM\",-9.00,-2.00,0.00,\"\",0.00,78.00,49.00,332.00,,,,,,\n2015,5,14,\"EV\",\"5590\",\"DTW\",\"ELM\",3.00,6.00,0.00,\"\",0.00,74.00,49.00,332.00,,,,,,\n2015,5,16,\"EV\",\"5590\",\"DTW\",\"ELM\",-4.00,-6.00,0.00,\"\",0.00,68.00,50.00,332.00,,,,,,\n2015,5,15,\"EV\",\"5590\",\"DTW\",\"ELM\",1.00,8.00,0.00,\"\",0.00,78.00,51.00,332.00,,,,,,\n2015,5,2,\"EV\",\"5590\",\"ELM\",\"DTW\",-5.00,-19.00,0.00,\"\",0.00,64.00,49.00,332.00,,,,,,\n2015,5,1,\"EV\",\"5590\",\"ELM\",\"DTW\",-2.00,6.00,0.00,\"\",0.00,88.00,58.00,332.00,,,,,,\n2015,5,25,\"EV\",\"5590\",\"ELM\",\"DTW\",-2.00,24.00,0.00,\"\",0.00,106.00,70.00,332.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,28,\"EV\",\"5590\",\"ELM\",\"DTW\",-9.00,-7.00,0.00,\"\",0.00,82.00,55.00,332.00,,,,,,\n2015,5,9,\"EV\",\"5590\",\"ELM\",\"DTW\",2.00,-12.00,0.00,\"\",0.00,64.00,50.00,332.00,,,,,,\n2015,5,3,\"EV\",\"5590\",\"ELM\",\"DTW\",-1.00,9.00,0.00,\"\",0.00,89.00,61.00,332.00,,,,,,\n2015,5,29,\"EV\",\"5590\",\"ELM\",\"DTW\",-5.00,4.00,0.00,\"\",0.00,89.00,58.00,332.00,,,,,,\n2015,5,4,\"EV\",\"5590\",\"ELM\",\"DTW\",-10.00,-17.00,0.00,\"\",0.00,73.00,50.00,332.00,,,,,,\n2015,5,5,\"EV\",\"5590\",\"ELM\",\"DTW\",40.00,37.00,0.00,\"\",0.00,77.00,64.00,332.00,0.00,0.00,0.00,0.00,37.00,\n2015,5,30,\"EV\",\"5590\",\"ELM\",\"DTW\",0.00,8.00,0.00,\"\",0.00,86.00,69.00,332.00,,,,,,\n2015,5,26,\"EV\",\"5590\",\"ELM\",\"DTW\",130.00,121.00,0.00,\"\",0.00,71.00,58.00,332.00,0.00,0.00,121.00,0.00,0.00,\n2015,5,7,\"EV\",\"5590\",\"ELM\",\"DTW\",-9.00,6.00,0.00,\"\",0.00,95.00,62.00,332.00,,,,,,\n2015,5,6,\"EV\",\"5590\",\"ELM\",\"DTW\",-7.00,-7.00,0.00,\"\",0.00,80.00,57.00,332.00,,,,,,\n2015,5,31,\"EV\",\"5590\",\"ELM\",\"DTW\",2.00,1.00,0.00,\"\",0.00,79.00,64.00,332.00,,,,,,\n2015,5,8,\"EV\",\"5590\",\"ELM\",\"DTW\",15.00,23.00,0.00,\"\",0.00,88.00,55.00,332.00,15.00,0.00,8.00,0.00,0.00,\n2015,5,19,\"EV\",\"5590\",\"ELM\",\"DTW\",-7.00,9.00,0.00,\"\",0.00,96.00,59.00,332.00,,,,,,\n2015,5,20,\"EV\",\"5590\",\"ELM\",\"DTW\",-6.00,-5.00,0.00,\"\",0.00,81.00,56.00,332.00,,,,,,\n2015,5,10,\"EV\",\"5590\",\"ELM\",\"DTW\",0.00,23.00,0.00,\"\",0.00,103.00,65.00,332.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,21,\"EV\",\"5590\",\"ELM\",\"DTW\",-11.00,2.00,0.00,\"\",0.00,93.00,63.00,332.00,,,,,,\n2015,5,22,\"EV\",\"5590\",\"ELM\",\"DTW\",-8.00,0.00,0.00,\"\",0.00,88.00,65.00,332.00,,,,,,\n2015,5,23,\"EV\",\"5590\",\"ELM\",\"DTW\",-4.00,-15.00,0.00,\"\",0.00,67.00,52.00,332.00,,,,,,\n2015,5,27,\"EV\",\"5590\",\"ELM\",\"DTW\",9.00,-1.00,0.00,\"\",0.00,70.00,57.00,332.00,,,,,,\n2015,5,11,\"EV\",\"5590\",\"ELM\",\"DTW\",-2.00,34.00,0.00,\"\",0.00,116.00,66.00,332.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,24,\"EV\",\"5590\",\"ELM\",\"DTW\",-2.00,-4.00,0.00,\"\",0.00,78.00,62.00,332.00,,,,,,\n2015,5,12,\"EV\",\"5590\",\"ELM\",\"DTW\",-9.00,-2.00,0.00,\"\",0.00,87.00,69.00,332.00,,,,,,\n2015,5,14,\"EV\",\"5590\",\"ELM\",\"DTW\",-3.00,4.00,0.00,\"\",0.00,87.00,60.00,332.00,,,,,,\n2015,5,15,\"EV\",\"5590\",\"ELM\",\"DTW\",0.00,6.00,0.00,\"\",0.00,86.00,59.00,332.00,,,,,,\n2015,5,13,\"EV\",\"5590\",\"ELM\",\"DTW\",-3.00,30.00,0.00,\"\",0.00,113.00,79.00,332.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,16,\"EV\",\"5590\",\"ELM\",\"DTW\",-8.00,-10.00,0.00,\"\",0.00,76.00,57.00,332.00,,,,,,\n2015,5,3,\"EV\",\"5597\",\"CLT\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,108.00,86.00,544.00,,,,,,\n2015,5,2,\"EV\",\"5602\",\"ATL\",\"SYR\",-2.00,-10.00,0.00,\"\",0.00,124.00,103.00,794.00,,,,,,\n2015,5,9,\"EV\",\"5602\",\"ATL\",\"SYR\",-5.00,-16.00,0.00,\"\",0.00,121.00,97.00,794.00,,,,,,\n2015,5,30,\"EV\",\"5602\",\"ATL\",\"SYR\",-3.00,-22.00,0.00,\"\",0.00,113.00,99.00,794.00,,,,,,\n2015,5,23,\"EV\",\"5602\",\"ATL\",\"SYR\",-4.00,2.00,0.00,\"\",0.00,138.00,111.00,794.00,,,,,,\n2015,5,16,\"EV\",\"5602\",\"ATL\",\"SYR\",53.00,38.00,0.00,\"\",0.00,117.00,102.00,794.00,38.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"EV\",\"5602\",\"SYR\",\"ATL\",-8.00,-24.00,0.00,\"\",0.00,121.00,105.00,794.00,,,,,,\n2015,5,2,\"EV\",\"5602\",\"SYR\",\"ATL\",-6.00,-28.00,0.00,\"\",0.00,115.00,99.00,794.00,,,,,,\n2015,5,30,\"EV\",\"5602\",\"SYR\",\"ATL\",-4.00,-5.00,0.00,\"\",0.00,136.00,120.00,794.00,,,,,,\n2015,5,23,\"EV\",\"5602\",\"SYR\",\"ATL\",1.00,-8.00,0.00,\"\",0.00,128.00,108.00,794.00,,,,,,\n2015,5,16,\"EV\",\"5602\",\"SYR\",\"ATL\",35.00,20.00,0.00,\"\",0.00,122.00,110.00,794.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,28,\"EV\",\"5892\",\"LGA\",\"CLE\",-7.00,-20.00,0.00,\"\",0.00,96.00,71.00,419.00,,,,,,\n2015,5,1,\"EV\",\"5892\",\"LGA\",\"CLE\",15.00,10.00,0.00,\"\",0.00,103.00,66.00,419.00,,,,,,\n2015,5,25,\"EV\",\"5892\",\"LGA\",\"CLE\",-17.00,-32.00,0.00,\"\",0.00,94.00,66.00,419.00,,,,,,\n2015,5,31,\"EV\",\"5892\",\"LGA\",\"CLE\",-9.00,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,3,\"EV\",\"5892\",\"LGA\",\"CLE\",-11.00,-39.00,0.00,\"\",0.00,80.00,65.00,419.00,,,,,,\n2015,5,5,\"EV\",\"5892\",\"LGA\",\"CLE\",-8.00,-20.00,0.00,\"\",0.00,96.00,69.00,419.00,,,,,,\n2015,5,26,\"EV\",\"5892\",\"LGA\",\"CLE\",-9.00,-24.00,0.00,\"\",0.00,94.00,66.00,419.00,,,,,,\n2015,5,4,\"EV\",\"5892\",\"LGA\",\"CLE\",-11.00,-35.00,0.00,\"\",0.00,84.00,63.00,419.00,,,,,,\n2015,5,17,\"EV\",\"5892\",\"LGA\",\"CLE\",-7.00,-27.00,0.00,\"\",0.00,89.00,64.00,419.00,,,,,,\n2015,5,29,\"EV\",\"5892\",\"LGA\",\"CLE\",-7.00,-30.00,0.00,\"\",0.00,86.00,64.00,419.00,,,,,,\n2015,5,6,\"EV\",\"5892\",\"LGA\",\"CLE\",-3.00,3.00,0.00,\"\",0.00,115.00,71.00,419.00,,,,,,\n2015,5,27,\"EV\",\"5892\",\"LGA\",\"CLE\",279.00,278.00,0.00,\"\",0.00,108.00,69.00,419.00,0.00,278.00,0.00,0.00,0.00,\n2015,5,18,\"EV\",\"5892\",\"LGA\",\"CLE\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,7,\"EV\",\"5892\",\"LGA\",\"CLE\",-6.00,-24.00,0.00,\"\",0.00,91.00,65.00,419.00,,,,,,\n2015,5,8,\"EV\",\"5892\",\"LGA\",\"CLE\",-10.00,-19.00,0.00,\"\",0.00,100.00,63.00,419.00,,,,,,\n2015,5,19,\"EV\",\"5892\",\"LGA\",\"CLE\",-3.00,-19.00,0.00,\"\",0.00,93.00,73.00,419.00,,,,,,\n2015,5,20,\"EV\",\"5892\",\"LGA\",\"CLE\",-8.00,-2.00,0.00,\"\",0.00,115.00,71.00,419.00,,,,,,\n2015,5,10,\"EV\",\"5892\",\"LGA\",\"CLE\",-6.00,-20.00,0.00,\"\",0.00,95.00,68.00,419.00,,,,,,\n2015,5,21,\"EV\",\"5892\",\"LGA\",\"CLE\",-2.00,8.00,0.00,\"\",0.00,119.00,74.00,419.00,,,,,,\n2015,5,22,\"EV\",\"5892\",\"LGA\",\"CLE\",124.00,118.00,0.00,\"\",0.00,103.00,72.00,419.00,0.00,0.00,0.00,0.00,118.00,\n2015,5,11,\"EV\",\"5892\",\"LGA\",\"CLE\",198.00,174.00,0.00,\"\",0.00,85.00,67.00,419.00,0.00,0.00,0.00,0.00,174.00,\n2015,5,12,\"EV\",\"5892\",\"LGA\",\"CLE\",-13.00,-21.00,0.00,\"\",0.00,101.00,70.00,419.00,,,,,,\n2015,5,13,\"EV\",\"5892\",\"LGA\",\"CLE\",-6.00,3.00,0.00,\"\",0.00,118.00,75.00,419.00,,,,,,\n2015,5,14,\"EV\",\"5892\",\"LGA\",\"CLE\",-11.00,-25.00,0.00,\"\",0.00,95.00,70.00,419.00,,,,,,\n2015,5,15,\"EV\",\"5892\",\"LGA\",\"CLE\",-6.00,-24.00,0.00,\"\",0.00,91.00,69.00,419.00,,,,,,\n2015,5,2,\"EV\",\"5477\",\"DTW\",\"ELM\",-12.00,-16.00,0.00,\"\",0.00,79.00,48.00,332.00,,,,,,\n2015,5,1,\"EV\",\"5477\",\"DTW\",\"ELM\",-5.00,-17.00,0.00,\"\",0.00,62.00,50.00,332.00,,,,,,\n2015,5,28,\"EV\",\"5477\",\"DTW\",\"ELM\",-5.00,-10.00,0.00,\"\",0.00,69.00,50.00,332.00,,,,,,\n2015,5,3,\"EV\",\"5477\",\"DTW\",\"ELM\",-6.00,-14.00,0.00,\"\",0.00,66.00,49.00,332.00,,,,,,\n2015,5,30,\"EV\",\"5477\",\"DTW\",\"ELM\",-2.00,-9.00,0.00,\"\",0.00,76.00,53.00,332.00,,,,,,\n2015,5,4,\"EV\",\"5477\",\"DTW\",\"ELM\",-5.00,-9.00,0.00,\"\",0.00,70.00,54.00,332.00,,,,,,\n2015,5,26,\"EV\",\"5477\",\"DTW\",\"ELM\",-2.00,-13.00,0.00,\"\",0.00,73.00,51.00,332.00,,,,,,\n2015,5,5,\"EV\",\"5477\",\"DTW\",\"ELM\",-4.00,-23.00,0.00,\"\",0.00,65.00,46.00,332.00,,,,,,\n2015,5,29,\"EV\",\"5477\",\"DTW\",\"ELM\",-9.00,-21.00,0.00,\"\",0.00,62.00,51.00,332.00,,,,,,\n2015,5,17,\"EV\",\"5477\",\"DTW\",\"ELM\",4.00,2.00,0.00,\"\",0.00,72.00,49.00,332.00,,,,,,\n2015,5,6,\"EV\",\"5477\",\"DTW\",\"ELM\",-3.00,-3.00,0.00,\"\",0.00,81.00,62.00,332.00,,,,,,\n2015,5,8,\"EV\",\"5477\",\"DTW\",\"ELM\",-3.00,-7.00,0.00,\"\",0.00,70.00,55.00,332.00,,,,,,\n2015,5,7,\"EV\",\"5477\",\"DTW\",\"ELM\",63.00,50.00,0.00,\"\",0.00,61.00,47.00,332.00,50.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"EV\",\"5477\",\"DTW\",\"ELM\",0.00,-14.00,0.00,\"\",0.00,70.00,47.00,332.00,,,,,,\n2015,5,31,\"EV\",\"5477\",\"DTW\",\"ELM\",114.00,120.00,0.00,\"\",0.00,80.00,50.00,332.00,114.00,0.00,6.00,0.00,0.00,\n2015,5,10,\"EV\",\"5477\",\"DTW\",\"ELM\",-5.00,-11.00,0.00,\"\",0.00,68.00,51.00,332.00,,,,,,\n2015,5,18,\"EV\",\"5477\",\"DTW\",\"ELM\",28.00,26.00,0.00,\"\",0.00,72.00,48.00,332.00,23.00,0.00,0.00,0.00,3.00,\n2015,5,11,\"EV\",\"5477\",\"DTW\",\"ELM\",-6.00,-10.00,0.00,\"\",0.00,70.00,51.00,332.00,,,,,,\n2015,5,20,\"EV\",\"5477\",\"DTW\",\"ELM\",-4.00,-31.00,0.00,\"\",0.00,54.00,41.00,332.00,,,,,,\n2015,5,23,\"EV\",\"5477\",\"DTW\",\"ELM\",-9.00,-22.00,0.00,\"\",0.00,70.00,50.00,332.00,,,,,,\n2015,5,21,\"EV\",\"5477\",\"DTW\",\"ELM\",-5.00,-12.00,0.00,\"\",0.00,67.00,49.00,332.00,,,,,,\n2015,5,22,\"EV\",\"5477\",\"DTW\",\"ELM\",47.00,31.00,0.00,\"\",0.00,58.00,43.00,332.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"EV\",\"5477\",\"DTW\",\"ELM\",-1.00,-24.00,0.00,\"\",0.00,61.00,48.00,332.00,,,,,,\n2015,5,24,\"EV\",\"5477\",\"DTW\",\"ELM\",-8.00,-24.00,0.00,\"\",0.00,68.00,44.00,332.00,,,,,,\n2015,5,13,\"EV\",\"5477\",\"DTW\",\"ELM\",-2.00,-12.00,0.00,\"\",0.00,71.00,55.00,332.00,,,,,,\n2015,5,14,\"EV\",\"5477\",\"DTW\",\"ELM\",80.00,66.00,0.00,\"\",0.00,60.00,45.00,332.00,66.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"EV\",\"5477\",\"DTW\",\"ELM\",185.00,166.00,0.00,\"\",0.00,62.00,46.00,332.00,82.00,0.00,0.00,0.00,84.00,\n2015,5,16,\"EV\",\"5477\",\"DTW\",\"ELM\",-5.00,-2.00,0.00,\"\",0.00,86.00,58.00,332.00,,,,,,\n2015,5,15,\"EV\",\"5477\",\"DTW\",\"ELM\",-8.00,-16.00,0.00,\"\",0.00,66.00,49.00,332.00,,,,,,\n2015,5,28,\"EV\",\"5477\",\"ELM\",\"DTW\",-4.00,-8.00,0.00,\"\",0.00,73.00,56.00,332.00,,,,,,\n2015,5,25,\"EV\",\"5477\",\"ELM\",\"DTW\",-7.00,-14.00,0.00,\"\",0.00,70.00,56.00,332.00,,,,,,\n2015,5,17,\"EV\",\"5477\",\"ELM\",\"DTW\",-2.00,-9.00,0.00,\"\",0.00,70.00,55.00,332.00,,,,,,\n2015,5,3,\"EV\",\"5477\",\"ELM\",\"DTW\",-5.00,-18.00,0.00,\"\",0.00,64.00,55.00,332.00,,,,,,\n2015,5,4,\"EV\",\"5477\",\"ELM\",\"DTW\",-1.00,0.00,0.00,\"\",0.00,78.00,56.00,332.00,,,,,,\n2015,5,29,\"EV\",\"5477\",\"ELM\",\"DTW\",-10.00,-19.00,0.00,\"\",0.00,68.00,56.00,332.00,,,,,,\n2015,5,1,\"EV\",\"5477\",\"ELM\",\"DTW\",-11.00,-11.00,0.00,\"\",0.00,77.00,63.00,332.00,,,,,,\n2015,5,18,\"EV\",\"5477\",\"ELM\",\"DTW\",17.00,11.00,0.00,\"\",0.00,71.00,52.00,332.00,,,,,,\n2015,5,8,\"EV\",\"5477\",\"ELM\",\"DTW\",-5.00,-7.00,0.00,\"\",0.00,75.00,56.00,332.00,,,,,,\n2015,5,31,\"EV\",\"5477\",\"ELM\",\"DTW\",107.00,109.00,0.00,\"\",0.00,79.00,63.00,332.00,0.00,0.00,2.00,0.00,107.00,\n2015,5,11,\"EV\",\"5477\",\"ELM\",\"DTW\",-3.00,-10.00,0.00,\"\",0.00,70.00,55.00,332.00,,,,,,\n2015,5,10,\"EV\",\"5477\",\"ELM\",\"DTW\",-5.00,-11.00,0.00,\"\",0.00,71.00,54.00,332.00,,,,,,\n2015,5,7,\"EV\",\"5477\",\"ELM\",\"DTW\",194.00,185.00,0.00,\"\",0.00,68.00,51.00,332.00,135.00,0.00,0.00,0.00,50.00,\n2015,5,22,\"EV\",\"5477\",\"ELM\",\"DTW\",17.00,10.00,0.00,\"\",0.00,70.00,57.00,332.00,,,,,,\n2015,5,21,\"EV\",\"5477\",\"ELM\",\"DTW\",-8.00,-12.00,0.00,\"\",0.00,73.00,56.00,332.00,,,,,,\n2015,5,14,\"EV\",\"5477\",\"ELM\",\"DTW\",56.00,70.00,0.00,\"\",0.00,91.00,58.00,332.00,4.00,0.00,14.00,0.00,52.00,\n2015,5,15,\"EV\",\"5477\",\"ELM\",\"DTW\",-5.00,-1.00,0.00,\"\",0.00,81.00,60.00,332.00,,,,,,\n2015,5,31,\"EV\",\"5482\",\"BUF\",\"LGA\",-6.00,-26.00,0.00,\"\",0.00,67.00,51.00,292.00,,,,,,\n2015,5,9,\"EV\",\"5604\",\"BUF\",\"LGA\",-12.00,-25.00,0.00,\"\",0.00,73.00,56.00,292.00,,,,,,\n2015,5,24,\"EV\",\"5604\",\"BUF\",\"LGA\",-4.00,-28.00,0.00,\"\",0.00,64.00,47.00,292.00,,,,,,\n2015,5,27,\"EV\",\"5604\",\"LGA\",\"RDU\",-4.00,-22.00,0.00,\"\",0.00,96.00,65.00,431.00,,,,,,\n2015,5,6,\"EV\",\"5604\",\"LGA\",\"RDU\",0.00,2.00,0.00,\"\",0.00,116.00,67.00,431.00,,,,,,\n2015,5,20,\"EV\",\"5604\",\"LGA\",\"RDU\",-5.00,-6.00,0.00,\"\",0.00,113.00,68.00,431.00,,,,,,\n2015,5,13,\"EV\",\"5604\",\"LGA\",\"RDU\",-6.00,1.00,0.00,\"\",0.00,121.00,68.00,431.00,,,,,,\n2015,5,9,\"EV\",\"5607\",\"CHS\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,120.00,99.00,641.00,,,,,,\n2015,5,7,\"EV\",\"5607\",\"CHS\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,108.00,87.00,641.00,,,,,,\n2015,5,8,\"EV\",\"5607\",\"CHS\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,113.00,101.00,641.00,,,,,,\n2015,5,15,\"EV\",\"5607\",\"CHS\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,102.00,85.00,641.00,,,,,,\n2015,5,28,\"EV\",\"5614\",\"GSO\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,85.00,65.00,461.00,,,,,,\n2015,5,1,\"EV\",\"5614\",\"GSO\",\"LGA\",18.00,30.00,0.00,\"\",0.00,108.00,75.00,461.00,2.00,0.00,12.00,0.00,16.00,\n2015,5,17,\"EV\",\"5614\",\"GSO\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,93.00,71.00,461.00,,,,,,\n2015,5,26,\"EV\",\"5614\",\"GSO\",\"LGA\",133.00,126.00,0.00,\"\",0.00,89.00,68.00,461.00,0.00,0.00,0.00,0.00,126.00,\n2015,5,27,\"EV\",\"5614\",\"GSO\",\"LGA\",105.00,110.00,0.00,\"\",0.00,101.00,70.00,461.00,105.00,0.00,5.00,0.00,0.00,\n2015,5,6,\"EV\",\"5614\",\"GSO\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,92.00,69.00,461.00,,,,,,\n2015,5,4,\"EV\",\"5614\",\"GSO\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,88.00,69.00,461.00,,,,,,\n2015,5,29,\"EV\",\"5614\",\"GSO\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,94.00,72.00,461.00,,,,,,\n2015,5,5,\"EV\",\"5614\",\"GSO\",\"LGA\",-9.00,-17.00,0.00,\"\",0.00,88.00,69.00,461.00,,,,,,\n2015,5,7,\"EV\",\"5614\",\"GSO\",\"LGA\",76.00,65.00,0.00,\"\",0.00,85.00,68.00,461.00,0.00,0.00,0.00,0.00,65.00,\n2015,5,8,\"EV\",\"5614\",\"GSO\",\"LGA\",-1.00,5.00,0.00,\"\",0.00,102.00,73.00,461.00,,,,,,\n2015,5,10,\"EV\",\"5614\",\"GSO\",\"LGA\",42.00,37.00,0.00,\"\",0.00,91.00,69.00,461.00,0.00,0.00,0.00,0.00,37.00,\n2015,5,18,\"EV\",\"5614\",\"GSO\",\"LGA\",44.00,53.00,0.00,\"\",0.00,105.00,73.00,461.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,20,\"EV\",\"5614\",\"GSO\",\"LGA\",4.00,9.00,0.00,\"\",0.00,101.00,66.00,461.00,,,,,,\n2015,5,21,\"EV\",\"5614\",\"GSO\",\"LGA\",4.00,-10.00,0.00,\"\",0.00,82.00,66.00,461.00,,,,,,\n2015,5,13,\"EV\",\"5614\",\"GSO\",\"LGA\",-12.00,5.00,0.00,\"\",0.00,113.00,73.00,461.00,,,,,,\n2015,5,14,\"EV\",\"5614\",\"GSO\",\"LGA\",24.00,19.00,0.00,\"\",0.00,91.00,71.00,461.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,22,\"EV\",\"5614\",\"GSO\",\"LGA\",32.00,24.00,0.00,\"\",0.00,88.00,67.00,461.00,0.00,0.00,0.00,0.00,24.00,\n2015,5,25,\"EV\",\"5614\",\"GSO\",\"LGA\",42.00,51.00,0.00,\"\",0.00,105.00,66.00,461.00,42.00,0.00,9.00,0.00,0.00,\n2015,5,12,\"EV\",\"5614\",\"GSO\",\"LGA\",18.00,23.00,0.00,\"\",0.00,101.00,71.00,461.00,16.00,0.00,5.00,0.00,2.00,\n2015,5,11,\"EV\",\"5614\",\"GSO\",\"LGA\",185.00,203.00,0.00,\"\",0.00,114.00,96.00,461.00,7.00,0.00,18.00,0.00,178.00,\n2015,5,15,\"EV\",\"5614\",\"GSO\",\"LGA\",-5.00,28.00,0.00,\"\",0.00,129.00,69.00,461.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,31,\"EV\",\"5614\",\"GSO\",\"LGA\",,,1.00,\"A\",0.00,,,461.00,,,,,,\n2015,5,19,\"EV\",\"5614\",\"GSO\",\"LGA\",,,1.00,\"A\",0.00,,,461.00,,,,,,\n2015,5,2,\"EV\",\"5669\",\"ALB\",\"EWR\",-9.00,2.00,0.00,\"\",0.00,78.00,38.00,143.00,,,,,,\n2015,5,1,\"EV\",\"5669\",\"ALB\",\"EWR\",-13.00,-29.00,0.00,\"\",0.00,51.00,33.00,143.00,,,,,,\n2015,5,4,\"EV\",\"5669\",\"ALB\",\"EWR\",-15.00,-9.00,0.00,\"\",0.00,73.00,38.00,143.00,,,,,,\n2015,5,5,\"EV\",\"5669\",\"ALB\",\"EWR\",-10.00,14.00,0.00,\"\",0.00,91.00,45.00,143.00,,,,,,\n2015,5,1,\"EV\",\"5679\",\"ORD\",\"HPN\",-6.00,0.00,0.00,\"\",0.00,140.00,104.00,738.00,,,,,,\n2015,5,31,\"EV\",\"5679\",\"ORD\",\"HPN\",56.00,56.00,0.00,\"\",0.00,135.00,114.00,738.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,28,\"EV\",\"5679\",\"ORD\",\"HPN\",-3.00,-2.00,0.00,\"\",0.00,136.00,112.00,738.00,,,,,,\n2015,5,25,\"EV\",\"5679\",\"ORD\",\"HPN\",-7.00,-25.00,0.00,\"\",0.00,117.00,96.00,738.00,,,,,,\n2015,5,2,\"EV\",\"5679\",\"ORD\",\"HPN\",32.00,16.00,0.00,\"\",0.00,118.00,102.00,738.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"EV\",\"5679\",\"ORD\",\"HPN\",0.00,-2.00,0.00,\"\",0.00,132.00,105.00,738.00,,,,,,\n2015,5,5,\"EV\",\"5679\",\"ORD\",\"HPN\",-8.00,-22.00,0.00,\"\",0.00,120.00,94.00,738.00,,,,,,\n2015,5,26,\"EV\",\"5679\",\"ORD\",\"HPN\",3.00,6.00,0.00,\"\",0.00,138.00,104.00,738.00,,,,,,\n2015,5,4,\"EV\",\"5679\",\"ORD\",\"HPN\",1.00,-14.00,0.00,\"\",0.00,119.00,97.00,738.00,,,,,,\n2015,5,17,\"EV\",\"5679\",\"ORD\",\"HPN\",-8.00,-9.00,0.00,\"\",0.00,134.00,112.00,738.00,,,,,,\n2015,5,29,\"EV\",\"5679\",\"ORD\",\"HPN\",8.00,-3.00,0.00,\"\",0.00,124.00,106.00,738.00,,,,,,\n2015,5,6,\"EV\",\"5679\",\"ORD\",\"HPN\",7.00,-11.00,0.00,\"\",0.00,117.00,98.00,738.00,,,,,,\n2015,5,30,\"EV\",\"5679\",\"ORD\",\"HPN\",-4.00,-5.00,0.00,\"\",0.00,134.00,102.00,738.00,,,,,,\n2015,5,7,\"EV\",\"5679\",\"ORD\",\"HPN\",1.00,-10.00,0.00,\"\",0.00,124.00,98.00,738.00,,,,,,\n2015,5,27,\"EV\",\"5679\",\"ORD\",\"HPN\",47.00,39.00,0.00,\"\",0.00,127.00,92.00,738.00,0.00,0.00,0.00,0.00,39.00,\n2015,5,9,\"EV\",\"5679\",\"ORD\",\"HPN\",-4.00,-1.00,0.00,\"\",0.00,138.00,107.00,738.00,,,,,,\n2015,5,18,\"EV\",\"5679\",\"ORD\",\"HPN\",63.00,42.00,0.00,\"\",0.00,114.00,97.00,738.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,10,\"EV\",\"5679\",\"ORD\",\"HPN\",-7.00,-8.00,0.00,\"\",0.00,134.00,101.00,738.00,,,,,,\n2015,5,20,\"EV\",\"5679\",\"ORD\",\"HPN\",61.00,43.00,0.00,\"\",0.00,117.00,91.00,738.00,0.00,35.00,0.00,0.00,8.00,\n2015,5,8,\"EV\",\"5679\",\"ORD\",\"HPN\",,,1.00,\"C\",0.00,,,738.00,,,,,,\n2015,5,19,\"EV\",\"5679\",\"ORD\",\"HPN\",-3.00,-11.00,0.00,\"\",0.00,127.00,102.00,738.00,,,,,,\n2015,5,21,\"EV\",\"5679\",\"ORD\",\"HPN\",-8.00,-28.00,0.00,\"\",0.00,115.00,94.00,738.00,,,,,,\n2015,5,11,\"EV\",\"5679\",\"ORD\",\"HPN\",-6.00,-14.00,0.00,\"\",0.00,127.00,106.00,738.00,,,,,,\n2015,5,22,\"EV\",\"5679\",\"ORD\",\"HPN\",15.00,26.00,0.00,\"\",0.00,146.00,96.00,738.00,7.00,0.00,11.00,0.00,8.00,\n2015,5,13,\"EV\",\"5679\",\"ORD\",\"HPN\",-2.00,-14.00,0.00,\"\",0.00,123.00,102.00,738.00,,,,,,\n2015,5,23,\"EV\",\"5679\",\"ORD\",\"HPN\",-7.00,-22.00,0.00,\"\",0.00,120.00,95.00,738.00,,,,,,\n2015,5,12,\"EV\",\"5679\",\"ORD\",\"HPN\",22.00,2.00,0.00,\"\",0.00,115.00,95.00,738.00,,,,,,\n2015,5,24,\"EV\",\"5679\",\"ORD\",\"HPN\",-4.00,-4.00,0.00,\"\",0.00,135.00,96.00,738.00,,,,,,\n2015,5,14,\"EV\",\"5679\",\"ORD\",\"HPN\",-6.00,-13.00,0.00,\"\",0.00,128.00,100.00,738.00,,,,,,\n2015,5,15,\"EV\",\"5679\",\"ORD\",\"HPN\",1.00,-3.00,0.00,\"\",0.00,131.00,96.00,738.00,,,,,,\n2015,5,16,\"EV\",\"5679\",\"ORD\",\"HPN\",-4.00,-10.00,0.00,\"\",0.00,129.00,97.00,738.00,,,,,,\n2015,5,31,\"EV\",\"5801\",\"EWR\",\"BUF\",-4.00,-9.00,0.00,\"\",0.00,76.00,53.00,282.00,,,,,,\n2015,5,17,\"EV\",\"5801\",\"EWR\",\"BUF\",-3.00,-17.00,0.00,\"\",0.00,67.00,54.00,282.00,,,,,,\n2015,5,10,\"EV\",\"5801\",\"EWR\",\"BUF\",-8.00,-21.00,0.00,\"\",0.00,68.00,53.00,282.00,,,,,,\n2015,5,24,\"EV\",\"5801\",\"EWR\",\"BUF\",-1.00,-6.00,0.00,\"\",0.00,76.00,56.00,282.00,,,,,,\n2015,5,2,\"EV\",\"5986\",\"ORD\",\"ALB\",0.00,-2.00,0.00,\"\",0.00,120.00,94.00,723.00,,,,,,\n2015,5,29,\"EV\",\"5989\",\"SYR\",\"ORD\",50.00,38.00,0.00,\"\",0.00,119.00,95.00,607.00,0.00,0.00,0.00,0.00,38.00,\n2015,5,8,\"EV\",\"5989\",\"SYR\",\"ORD\",41.00,69.00,0.00,\"\",0.00,159.00,140.00,607.00,0.00,0.00,69.00,0.00,0.00,\n2015,5,22,\"EV\",\"5989\",\"SYR\",\"ORD\",53.00,48.00,0.00,\"\",0.00,126.00,106.00,607.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,15,\"EV\",\"5989\",\"SYR\",\"ORD\",-6.00,-25.00,0.00,\"\",0.00,112.00,97.00,607.00,,,,,,\n2015,5,1,\"EV\",\"5994\",\"BUF\",\"ORD\",-5.00,-15.00,0.00,\"\",0.00,96.00,74.00,473.00,,,,,,\n2015,5,28,\"EV\",\"5994\",\"BUF\",\"ORD\",-16.00,-15.00,0.00,\"\",0.00,103.00,78.00,473.00,,,,,,\n2015,5,31,\"EV\",\"5994\",\"BUF\",\"ORD\",-11.00,1.00,0.00,\"\",0.00,114.00,90.00,473.00,,,,,,\n2015,5,3,\"EV\",\"5994\",\"BUF\",\"ORD\",-16.00,-30.00,0.00,\"\",0.00,92.00,71.00,473.00,,,,,,\n2015,5,4,\"EV\",\"5994\",\"BUF\",\"ORD\",-5.00,-7.00,0.00,\"\",0.00,104.00,80.00,473.00,,,,,,\n2015,5,29,\"EV\",\"5994\",\"BUF\",\"ORD\",-10.00,-17.00,0.00,\"\",0.00,95.00,78.00,473.00,,,,,,\n2015,5,26,\"EV\",\"5994\",\"BUF\",\"ORD\",-7.00,-7.00,0.00,\"\",0.00,102.00,78.00,473.00,,,,,,\n2015,5,27,\"EV\",\"5994\",\"BUF\",\"ORD\",-4.00,-1.00,0.00,\"\",0.00,105.00,83.00,473.00,,,,,,\n2015,5,17,\"EV\",\"5994\",\"BUF\",\"ORD\",-11.00,-5.00,0.00,\"\",0.00,108.00,76.00,473.00,,,,,,\n2015,5,6,\"EV\",\"5994\",\"BUF\",\"ORD\",-5.00,-5.00,0.00,\"\",0.00,102.00,86.00,473.00,,,,,,\n2015,5,9,\"EV\",\"5994\",\"BUF\",\"ORD\",9.00,8.00,0.00,\"\",0.00,101.00,82.00,473.00,,,,,,\n2015,5,8,\"EV\",\"5994\",\"BUF\",\"ORD\",-8.00,-8.00,0.00,\"\",0.00,102.00,76.00,473.00,,,,,,\n2015,5,30,\"EV\",\"5994\",\"BUF\",\"ORD\",39.00,40.00,0.00,\"\",0.00,103.00,82.00,473.00,5.00,0.00,1.00,0.00,34.00,\n2015,5,18,\"EV\",\"5994\",\"BUF\",\"ORD\",-4.00,-1.00,0.00,\"\",0.00,105.00,77.00,473.00,,,,,,\n2015,5,7,\"EV\",\"5994\",\"BUF\",\"ORD\",-3.00,-7.00,0.00,\"\",0.00,98.00,79.00,473.00,,,,,,\n2015,5,10,\"EV\",\"5994\",\"BUF\",\"ORD\",-7.00,6.00,0.00,\"\",0.00,115.00,89.00,473.00,,,,,,\n2015,5,19,\"EV\",\"5994\",\"BUF\",\"ORD\",-11.00,-4.00,0.00,\"\",0.00,109.00,79.00,473.00,,,,,,\n2015,5,20,\"EV\",\"5994\",\"BUF\",\"ORD\",-8.00,2.00,0.00,\"\",0.00,112.00,87.00,473.00,,,,,,\n2015,5,21,\"EV\",\"5994\",\"BUF\",\"ORD\",-15.00,-13.00,0.00,\"\",0.00,104.00,78.00,473.00,,,,,,\n2015,5,23,\"EV\",\"5994\",\"BUF\",\"ORD\",-10.00,-6.00,0.00,\"\",0.00,106.00,74.00,473.00,,,,,,\n2015,5,11,\"EV\",\"5994\",\"BUF\",\"ORD\",-5.00,-7.00,0.00,\"\",0.00,100.00,80.00,473.00,,,,,,\n2015,5,22,\"EV\",\"5994\",\"BUF\",\"ORD\",-6.00,-1.00,0.00,\"\",0.00,107.00,84.00,473.00,,,,,,\n2015,5,14,\"EV\",\"5994\",\"BUF\",\"ORD\",15.00,12.00,0.00,\"\",0.00,99.00,76.00,473.00,,,,,,\n2015,5,13,\"EV\",\"5994\",\"BUF\",\"ORD\",-2.00,6.00,0.00,\"\",0.00,110.00,85.00,473.00,,,,,,\n2015,5,24,\"EV\",\"5994\",\"BUF\",\"ORD\",-6.00,-11.00,0.00,\"\",0.00,97.00,76.00,473.00,,,,,,\n2015,5,12,\"EV\",\"5994\",\"BUF\",\"ORD\",76.00,95.00,0.00,\"\",0.00,121.00,85.00,473.00,0.00,0.00,95.00,0.00,0.00,\n2015,5,16,\"EV\",\"5994\",\"BUF\",\"ORD\",-2.00,-7.00,0.00,\"\",0.00,97.00,81.00,473.00,,,,,,\n2015,5,15,\"EV\",\"5994\",\"BUF\",\"ORD\",-8.00,6.00,0.00,\"\",0.00,116.00,81.00,473.00,,,,,,\n2015,5,2,\"EV\",\"5994\",\"EWR\",\"BUF\",-7.00,-20.00,0.00,\"\",0.00,69.00,48.00,282.00,,,,,,\n2015,5,18,\"DL\",\"1242\",\"LGA\",\"PBI\",-4.00,-31.00,0.00,\"\",0.00,157.00,135.00,1035.00,,,,,,\n2015,5,18,\"DL\",\"1262\",\"LAX\",\"JFK\",12.00,-7.00,0.00,\"\",0.00,314.00,290.00,2475.00,,,,,,\n2015,5,18,\"DL\",\"1264\",\"SLC\",\"JFK\",43.00,30.00,0.00,\"\",0.00,260.00,240.00,1990.00,0.00,0.00,0.00,0.00,30.00,\n2015,5,18,\"DL\",\"1266\",\"BUF\",\"ATL\",-2.00,-15.00,0.00,\"\",0.00,109.00,94.00,712.00,,,,,,\n2015,5,18,\"DL\",\"1269\",\"LGA\",\"MIA\",91.00,78.00,0.00,\"\",0.00,184.00,152.00,1096.00,3.00,0.00,0.00,0.00,75.00,\n2015,5,18,\"DL\",\"1278\",\"MSP\",\"BUF\",10.00,-2.00,0.00,\"\",0.00,107.00,92.00,735.00,,,,,,\n2015,5,18,\"DL\",\"1286\",\"ATL\",\"LGA\",100.00,109.00,0.00,\"\",0.00,144.00,110.00,762.00,0.00,0.00,109.00,0.00,0.00,\n2015,5,18,\"DL\",\"1288\",\"LGA\",\"FLL\",119.00,93.00,0.00,\"\",0.00,169.00,143.00,1076.00,93.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"DL\",\"1289\",\"LGA\",\"ATL\",302.00,282.00,0.00,\"\",0.00,142.00,107.00,762.00,3.00,0.00,0.00,0.00,279.00,\n2015,5,18,\"DL\",\"1298\",\"LGA\",\"ATL\",15.00,43.00,0.00,\"\",0.00,189.00,105.00,762.00,15.00,0.00,28.00,0.00,0.00,\n2015,5,18,\"DL\",\"1306\",\"DTW\",\"LGA\",25.00,44.00,0.00,\"\",0.00,126.00,80.00,502.00,13.00,12.00,19.00,0.00,0.00,\n2015,5,18,\"DL\",\"1312\",\"TPA\",\"JFK\",129.00,137.00,0.00,\"\",0.00,182.00,136.00,1005.00,0.00,0.00,124.00,0.00,13.00,\n2015,5,18,\"DL\",\"1335\",\"MIA\",\"LGA\",56.00,82.00,0.00,\"\",0.00,209.00,174.00,1096.00,0.00,0.00,82.00,0.00,0.00,\n2015,5,18,\"DL\",\"1356\",\"BUF\",\"DTW\",-2.00,-14.00,0.00,\"\",0.00,59.00,38.00,241.00,,,,,,\n2015,5,18,\"DL\",\"1359\",\"MCO\",\"LGA\",82.00,79.00,0.00,\"\",0.00,160.00,135.00,950.00,0.00,0.00,79.00,0.00,0.00,\n2015,5,18,\"DL\",\"1370\",\"ATL\",\"ROC\",-3.00,-9.00,0.00,\"\",0.00,119.00,100.00,749.00,,,,,,\n2015,5,18,\"DL\",\"1370\",\"ROC\",\"ATL\",0.00,-10.00,0.00,\"\",0.00,124.00,101.00,749.00,,,,,,\n2015,5,18,\"DL\",\"1372\",\"DTW\",\"BUF\",119.00,132.00,0.00,\"\",0.00,79.00,37.00,241.00,23.00,0.00,13.00,0.00,96.00,\n2015,5,18,\"DL\",\"1383\",\"LGA\",\"ATL\",191.00,181.00,0.00,\"\",0.00,158.00,118.00,762.00,0.00,0.00,120.00,0.00,61.00,\n2015,5,18,\"DL\",\"1386\",\"ATL\",\"LGA\",118.00,136.00,0.00,\"\",0.00,152.00,105.00,762.00,0.00,0.00,136.00,0.00,0.00,\n2015,5,18,\"DL\",\"1394\",\"ATL\",\"JFK\",40.00,71.00,0.00,\"\",0.00,184.00,118.00,760.00,0.00,0.00,71.00,0.00,0.00,\n2015,5,18,\"DL\",\"1419\",\"ATL\",\"JFK\",69.00,101.00,0.00,\"\",0.00,187.00,109.00,760.00,0.00,9.00,32.00,0.00,60.00,\n2015,5,18,\"DL\",\"1428\",\"LGA\",\"ATL\",351.00,330.00,0.00,\"\",0.00,137.00,112.00,762.00,48.00,0.00,0.00,0.00,282.00,\n2015,5,18,\"DL\",\"1447\",\"LGA\",\"ATL\",-3.00,-25.00,0.00,\"\",0.00,122.00,101.00,762.00,,,,,,\n2015,5,5,\"EV\",\"5360\",\"LGA\",\"JAX\",-4.00,-31.00,0.00,\"\",0.00,129.00,115.00,833.00,,,,,,\n2015,5,16,\"EV\",\"5363\",\"DTW\",\"ALB\",-5.00,-5.00,0.00,\"\",0.00,94.00,63.00,489.00,,,,,,\n2015,5,9,\"EV\",\"5366\",\"LGA\",\"MKE\",-4.00,-25.00,0.00,\"\",0.00,128.00,110.00,738.00,,,,,,\n2015,5,9,\"EV\",\"5373\",\"PWM\",\"LGA\",-5.00,-26.00,0.00,\"\",0.00,70.00,60.00,269.00,,,,,,\n2015,5,17,\"EV\",\"5374\",\"SWF\",\"DTW\",-7.00,2.00,0.00,\"\",0.00,116.00,93.00,479.00,,,,,,\n2015,5,31,\"EV\",\"5374\",\"SWF\",\"DTW\",3.00,-8.00,0.00,\"\",0.00,96.00,76.00,479.00,,,,,,\n2015,5,1,\"EV\",\"5382\",\"MKE\",\"LGA\",-8.00,-23.00,0.00,\"\",0.00,120.00,102.00,738.00,,,,,,\n2015,5,1,\"EV\",\"5386\",\"RIC\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,66.00,46.00,292.00,,,,,,\n2015,5,28,\"EV\",\"5386\",\"RIC\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,75.00,49.00,292.00,,,,,,\n2015,5,26,\"EV\",\"5386\",\"RIC\",\"LGA\",15.00,46.00,0.00,\"\",0.00,110.00,49.00,292.00,15.00,0.00,31.00,0.00,0.00,\n2015,5,29,\"EV\",\"5386\",\"RIC\",\"LGA\",33.00,24.00,0.00,\"\",0.00,70.00,45.00,292.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"EV\",\"5386\",\"RIC\",\"LGA\",-7.00,7.00,0.00,\"\",0.00,93.00,54.00,292.00,,,,,,\n2015,5,5,\"EV\",\"5386\",\"RIC\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,80.00,55.00,292.00,,,,,,\n2015,5,27,\"EV\",\"5386\",\"RIC\",\"LGA\",-1.00,5.00,0.00,\"\",0.00,85.00,53.00,292.00,,,,,,\n2015,5,6,\"EV\",\"5386\",\"RIC\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,67.00,45.00,292.00,,,,,,\n2015,5,7,\"EV\",\"5386\",\"RIC\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,75.00,55.00,292.00,,,,,,\n2015,5,8,\"EV\",\"5386\",\"RIC\",\"LGA\",-5.00,8.00,0.00,\"\",0.00,92.00,61.00,292.00,,,,,,\n2015,5,19,\"EV\",\"5386\",\"RIC\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,67.00,52.00,292.00,,,,,,\n2015,5,20,\"EV\",\"5386\",\"RIC\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,60.00,43.00,292.00,,,,,,\n2015,5,21,\"EV\",\"5386\",\"RIC\",\"LGA\",4.00,22.00,0.00,\"\",0.00,97.00,49.00,292.00,4.00,0.00,18.00,0.00,0.00,\n2015,5,12,\"EV\",\"5386\",\"RIC\",\"LGA\",8.00,6.00,0.00,\"\",0.00,77.00,49.00,292.00,,,,,,\n2015,5,11,\"EV\",\"5386\",\"RIC\",\"LGA\",14.00,14.00,0.00,\"\",0.00,79.00,50.00,292.00,,,,,,\n2015,5,22,\"EV\",\"5386\",\"RIC\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,80.00,46.00,292.00,,,,,,\n2015,5,15,\"EV\",\"5386\",\"RIC\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,73.00,51.00,292.00,,,,,,\n2015,5,13,\"EV\",\"5386\",\"RIC\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,68.00,46.00,292.00,,,,,,\n2015,5,14,\"EV\",\"5386\",\"RIC\",\"LGA\",1.00,16.00,0.00,\"\",0.00,94.00,50.00,292.00,1.00,0.00,15.00,0.00,0.00,\n2015,5,18,\"EV\",\"5386\",\"RIC\",\"LGA\",,,1.00,\"B\",0.00,,,292.00,,,,,,\n2015,5,17,\"EV\",\"5389\",\"LGA\",\"ROC\",-3.00,-9.00,0.00,\"\",0.00,83.00,45.00,254.00,,,,,,\n2015,5,3,\"EV\",\"5389\",\"LGA\",\"ROC\",-7.00,-31.00,0.00,\"\",0.00,65.00,43.00,254.00,,,,,,\n2015,5,26,\"EV\",\"5389\",\"LGA\",\"ROC\",3.00,-11.00,0.00,\"\",0.00,75.00,45.00,254.00,,,,,,\n2015,5,5,\"EV\",\"5389\",\"LGA\",\"ROC\",138.00,119.00,0.00,\"\",0.00,70.00,44.00,254.00,119.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"EV\",\"5389\",\"LGA\",\"ROC\",1.00,0.00,0.00,\"\",0.00,88.00,46.00,254.00,,,,,,\n2015,5,27,\"EV\",\"5389\",\"LGA\",\"ROC\",-1.00,119.00,0.00,\"\",0.00,209.00,75.00,254.00,0.00,0.00,119.00,0.00,0.00,\n2015,5,1,\"EV\",\"5389\",\"LGA\",\"ROC\",9.00,4.00,0.00,\"\",0.00,84.00,41.00,254.00,,,,,,\n2015,5,8,\"EV\",\"5389\",\"LGA\",\"ROC\",-3.00,-11.00,0.00,\"\",0.00,81.00,42.00,254.00,,,,,,\n2015,5,18,\"EV\",\"5389\",\"LGA\",\"ROC\",147.00,186.00,0.00,\"\",0.00,128.00,64.00,254.00,31.00,0.00,39.00,0.00,116.00,\n2015,5,10,\"EV\",\"5389\",\"LGA\",\"ROC\",-5.00,-23.00,0.00,\"\",0.00,71.00,45.00,254.00,,,,,,\n2015,5,19,\"EV\",\"5389\",\"LGA\",\"ROC\",56.00,56.00,0.00,\"\",0.00,89.00,45.00,254.00,0.00,0.00,0.00,0.00,56.00,\n2015,5,7,\"EV\",\"5389\",\"LGA\",\"ROC\",18.00,-1.00,0.00,\"\",0.00,70.00,44.00,254.00,,,,,,\n2015,5,20,\"EV\",\"5389\",\"LGA\",\"ROC\",-4.00,21.00,0.00,\"\",0.00,114.00,44.00,254.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,21,\"EV\",\"5389\",\"LGA\",\"ROC\",-6.00,-16.00,0.00,\"\",0.00,79.00,44.00,254.00,,,,,,\n2015,5,12,\"EV\",\"5389\",\"LGA\",\"ROC\",-6.00,-23.00,0.00,\"\",0.00,72.00,48.00,254.00,,,,,,\n2015,5,14,\"EV\",\"5389\",\"LGA\",\"ROC\",-6.00,-25.00,0.00,\"\",0.00,70.00,47.00,254.00,,,,,,\n2015,5,13,\"EV\",\"5389\",\"LGA\",\"ROC\",-3.00,-1.00,0.00,\"\",0.00,91.00,46.00,254.00,,,,,,\n2015,5,22,\"EV\",\"5389\",\"LGA\",\"ROC\",38.00,23.00,0.00,\"\",0.00,74.00,43.00,254.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,15,\"EV\",\"5389\",\"LGA\",\"ROC\",-10.00,-29.00,0.00,\"\",0.00,70.00,43.00,254.00,,,,,,\n2015,5,25,\"EV\",\"5389\",\"LGA\",\"ROC\",8.00,-5.00,0.00,\"\",0.00,76.00,44.00,254.00,,,,,,\n2015,5,29,\"EV\",\"5389\",\"LGA\",\"ROC\",10.00,0.00,0.00,\"\",0.00,79.00,44.00,254.00,,,,,,\n2015,5,11,\"EV\",\"5389\",\"LGA\",\"ROC\",34.00,5.00,0.00,\"\",0.00,60.00,44.00,254.00,,,,,,\n2015,5,6,\"EV\",\"5389\",\"LGA\",\"ROC\",43.00,62.00,0.00,\"\",0.00,108.00,45.00,254.00,3.00,0.00,19.00,0.00,40.00,\n2015,5,28,\"EV\",\"5389\",\"LGA\",\"ROC\",,,1.00,\"A\",0.00,,,254.00,,,,,,\n2015,5,31,\"EV\",\"5389\",\"LGA\",\"ROC\",29.00,,1.00,\"A\",0.00,,,254.00,,,,,,\n2015,5,21,\"EV\",\"5399\",\"DTW\",\"ROC\",-1.00,-10.00,0.00,\"\",0.00,68.00,49.00,296.00,,,,,,\n2015,5,21,\"EV\",\"5399\",\"ROC\",\"DTW\",-5.00,-8.00,0.00,\"\",0.00,78.00,56.00,296.00,,,,,,\n2015,5,25,\"EV\",\"5401\",\"SWF\",\"DTW\",-3.00,-11.00,0.00,\"\",0.00,99.00,79.00,479.00,,,,,,\n2015,5,27,\"EV\",\"5401\",\"SWF\",\"DTW\",-5.00,-10.00,0.00,\"\",0.00,102.00,76.00,479.00,,,,,,\n2015,5,20,\"EV\",\"5401\",\"SWF\",\"DTW\",-6.00,-3.00,0.00,\"\",0.00,110.00,89.00,479.00,,,,,,\n2015,5,4,\"EV\",\"5405\",\"LGA\",\"CLE\",-8.00,-32.00,0.00,\"\",0.00,92.00,63.00,419.00,,,,,,\n2015,5,1,\"EV\",\"5405\",\"LGA\",\"CLE\",-6.00,-18.00,0.00,\"\",0.00,104.00,72.00,419.00,,,,,,\n2015,5,17,\"EV\",\"5405\",\"LGA\",\"CLE\",-5.00,-25.00,0.00,\"\",0.00,96.00,62.00,419.00,,,,,,\n2015,5,28,\"EV\",\"5405\",\"LGA\",\"CLE\",-8.00,-15.00,0.00,\"\",0.00,109.00,71.00,419.00,,,,,,\n2015,5,26,\"EV\",\"5405\",\"LGA\",\"CLE\",-2.00,-12.00,0.00,\"\",0.00,106.00,72.00,419.00,,,,,,\n2015,5,29,\"EV\",\"5405\",\"LGA\",\"CLE\",93.00,89.00,0.00,\"\",0.00,112.00,61.00,419.00,89.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"EV\",\"5405\",\"LGA\",\"CLE\",-4.00,-17.00,0.00,\"\",0.00,103.00,73.00,419.00,,,,,,\n2015,5,27,\"EV\",\"5405\",\"LGA\",\"CLE\",-6.00,-26.00,0.00,\"\",0.00,96.00,70.00,419.00,,,,,,\n2015,5,7,\"EV\",\"5405\",\"LGA\",\"CLE\",-9.00,-28.00,0.00,\"\",0.00,97.00,69.00,419.00,,,,,,\n2015,5,31,\"EV\",\"5405\",\"LGA\",\"CLE\",-10.00,-30.00,0.00,\"\",0.00,96.00,70.00,419.00,,,,,,\n2015,5,8,\"EV\",\"5405\",\"LGA\",\"CLE\",0.00,-2.00,0.00,\"\",0.00,114.00,62.00,419.00,,,,,,\n2015,5,19,\"EV\",\"5405\",\"LGA\",\"CLE\",27.00,-4.00,0.00,\"\",0.00,85.00,66.00,419.00,,,,,,\n2015,5,21,\"EV\",\"5405\",\"LGA\",\"CLE\",-6.00,-25.00,0.00,\"\",0.00,97.00,77.00,419.00,,,,,,\n2015,5,20,\"EV\",\"5405\",\"LGA\",\"CLE\",-6.00,12.00,0.00,\"\",0.00,134.00,72.00,419.00,,,,,,\n2015,5,11,\"EV\",\"5405\",\"LGA\",\"CLE\",-7.00,-26.00,0.00,\"\",0.00,97.00,61.00,419.00,,,,,,\n2015,5,12,\"EV\",\"5405\",\"LGA\",\"CLE\",-6.00,-26.00,0.00,\"\",0.00,96.00,72.00,419.00,,,,,,\n2015,5,22,\"EV\",\"5405\",\"LGA\",\"CLE\",-8.00,-22.00,0.00,\"\",0.00,102.00,69.00,419.00,,,,,,\n2015,5,14,\"EV\",\"5405\",\"LGA\",\"CLE\",-5.00,-10.00,0.00,\"\",0.00,111.00,68.00,419.00,,,,,,\n2015,5,24,\"EV\",\"5405\",\"LGA\",\"CLE\",-3.00,-22.00,0.00,\"\",0.00,97.00,71.00,419.00,,,,,,\n2015,5,15,\"EV\",\"5405\",\"LGA\",\"CLE\",21.00,-7.00,0.00,\"\",0.00,88.00,64.00,419.00,,,,,,\n2015,5,18,\"EV\",\"5405\",\"LGA\",\"CLE\",,,1.00,\"B\",0.00,,,419.00,,,,,,\n2015,5,7,\"EV\",\"5406\",\"CLT\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,109.00,80.00,544.00,,,,,,\n2015,5,8,\"EV\",\"5406\",\"CLT\",\"LGA\",-12.00,-3.00,0.00,\"\",0.00,126.00,82.00,544.00,,,,,,\n2015,5,24,\"EV\",\"5407\",\"DTW\",\"SWF\",10.00,8.00,0.00,\"\",0.00,91.00,73.00,479.00,,,,,,\n2015,5,18,\"EV\",\"6074\",\"ROC\",\"EWR\",44.00,44.00,0.00,\"\",0.00,77.00,49.00,246.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,30,\"EV\",\"6074\",\"ROC\",\"EWR\",-5.00,-18.00,0.00,\"\",0.00,64.00,47.00,246.00,,,,,,\n2015,5,27,\"EV\",\"6074\",\"ROC\",\"EWR\",296.00,299.00,0.00,\"\",0.00,80.00,47.00,246.00,0.00,0.00,299.00,0.00,0.00,\n2015,5,6,\"EV\",\"6074\",\"ROC\",\"EWR\",-10.00,6.00,0.00,\"\",0.00,93.00,52.00,246.00,,,,,,\n2015,5,9,\"EV\",\"6074\",\"ROC\",\"EWR\",8.00,-8.00,0.00,\"\",0.00,61.00,49.00,246.00,,,,,,\n2015,5,7,\"EV\",\"6074\",\"ROC\",\"EWR\",-10.00,-22.00,0.00,\"\",0.00,65.00,45.00,246.00,,,,,,\n2015,5,8,\"EV\",\"6074\",\"ROC\",\"EWR\",0.00,8.00,0.00,\"\",0.00,85.00,45.00,246.00,,,,,,\n2015,5,20,\"EV\",\"6074\",\"ROC\",\"EWR\",-10.00,29.00,0.00,\"\",0.00,116.00,53.00,246.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,11,\"EV\",\"6074\",\"ROC\",\"EWR\",134.00,148.00,0.00,\"\",0.00,91.00,49.00,246.00,14.00,0.00,118.00,0.00,16.00,\n2015,5,10,\"EV\",\"6074\",\"ROC\",\"EWR\",162.00,157.00,0.00,\"\",0.00,72.00,48.00,246.00,157.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"EV\",\"6074\",\"ROC\",\"EWR\",49.00,37.00,0.00,\"\",0.00,65.00,46.00,246.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,21,\"EV\",\"6074\",\"ROC\",\"EWR\",1.00,-15.00,0.00,\"\",0.00,61.00,43.00,246.00,,,,,,\n2015,5,22,\"EV\",\"6074\",\"ROC\",\"EWR\",-10.00,-16.00,0.00,\"\",0.00,71.00,45.00,246.00,,,,,,\n2015,5,13,\"EV\",\"6074\",\"ROC\",\"EWR\",-8.00,-6.00,0.00,\"\",0.00,79.00,51.00,246.00,,,,,,\n2015,5,23,\"EV\",\"6074\",\"ROC\",\"EWR\",-15.00,-32.00,0.00,\"\",0.00,60.00,44.00,246.00,,,,,,\n2015,5,16,\"EV\",\"6074\",\"ROC\",\"EWR\",-10.00,-28.00,0.00,\"\",0.00,59.00,43.00,246.00,,,,,,\n2015,5,12,\"EV\",\"6074\",\"ROC\",\"EWR\",83.00,85.00,0.00,\"\",0.00,79.00,43.00,246.00,0.00,0.00,2.00,0.00,83.00,\n2015,5,14,\"EV\",\"6074\",\"ROC\",\"EWR\",0.00,-3.00,0.00,\"\",0.00,74.00,48.00,246.00,,,,,,\n2015,5,15,\"EV\",\"6074\",\"ROC\",\"EWR\",-10.00,-22.00,0.00,\"\",0.00,65.00,46.00,246.00,,,,,,\n2015,5,31,\"EV\",\"6082\",\"CLE\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,99.00,68.00,419.00,,,,,,\n2015,5,1,\"EV\",\"6082\",\"CLE\",\"LGA\",21.00,23.00,0.00,\"\",0.00,103.00,71.00,419.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,25,\"EV\",\"6082\",\"CLE\",\"LGA\",-8.00,-30.00,0.00,\"\",0.00,77.00,66.00,419.00,,,,,,\n2015,5,3,\"EV\",\"6082\",\"CLE\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,87.00,68.00,419.00,,,,,,\n2015,5,28,\"EV\",\"6082\",\"CLE\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,92.00,69.00,419.00,,,,,,\n2015,5,17,\"EV\",\"6082\",\"CLE\",\"LGA\",-10.00,-21.00,0.00,\"\",0.00,88.00,61.00,419.00,,,,,,\n2015,5,4,\"EV\",\"6082\",\"CLE\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,92.00,75.00,419.00,,,,,,\n2015,5,26,\"EV\",\"6082\",\"CLE\",\"LGA\",0.00,-6.00,0.00,\"\",0.00,93.00,70.00,419.00,,,,,,\n2015,5,5,\"EV\",\"6082\",\"CLE\",\"LGA\",-6.00,-22.00,0.00,\"\",0.00,85.00,67.00,419.00,,,,,,\n2015,5,29,\"EV\",\"6082\",\"CLE\",\"LGA\",13.00,-2.00,0.00,\"\",0.00,84.00,69.00,419.00,,,,,,\n2015,5,6,\"EV\",\"6082\",\"CLE\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,89.00,66.00,419.00,,,,,,\n2015,5,27,\"EV\",\"6082\",\"CLE\",\"LGA\",-11.00,-14.00,0.00,\"\",0.00,96.00,73.00,419.00,,,,,,\n2015,5,8,\"EV\",\"6082\",\"CLE\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,90.00,69.00,419.00,,,,,,\n2015,5,7,\"EV\",\"6082\",\"CLE\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,90.00,74.00,419.00,,,,,,\n2015,5,18,\"EV\",\"6082\",\"CLE\",\"LGA\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,20,\"EV\",\"6082\",\"CLE\",\"LGA\",-7.00,-24.00,0.00,\"\",0.00,82.00,65.00,419.00,,,,,,\n2015,5,10,\"EV\",\"6082\",\"CLE\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,97.00,73.00,419.00,,,,,,\n2015,5,19,\"EV\",\"6082\",\"CLE\",\"LGA\",11.00,-3.00,0.00,\"\",0.00,85.00,64.00,419.00,,,,,,\n2015,5,12,\"EV\",\"6082\",\"CLE\",\"LGA\",-6.00,-31.00,0.00,\"\",0.00,74.00,60.00,419.00,,,,,,\n2015,5,21,\"EV\",\"6082\",\"CLE\",\"LGA\",16.00,7.00,0.00,\"\",0.00,90.00,64.00,419.00,,,,,,\n2015,5,13,\"EV\",\"6082\",\"CLE\",\"LGA\",-9.00,-26.00,0.00,\"\",0.00,82.00,59.00,419.00,,,,,,\n2015,5,11,\"EV\",\"6082\",\"CLE\",\"LGA\",60.00,,0.00,\"\",1.00,,,419.00,,,,,,\n2015,5,15,\"EV\",\"6082\",\"CLE\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,79.00,65.00,419.00,,,,,,\n2015,5,14,\"EV\",\"6082\",\"CLE\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,94.00,68.00,419.00,,,,,,\n2015,5,22,\"EV\",\"6082\",\"CLE\",\"LGA\",143.00,133.00,0.00,\"\",0.00,89.00,66.00,419.00,133.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"EV\",\"5898\",\"EWR\",\"SYR\",-11.00,-29.00,0.00,\"\",0.00,57.00,37.00,195.00,,,,,,\n2015,5,25,\"EV\",\"5900\",\"SYR\",\"ORD\",-7.00,-9.00,0.00,\"\",0.00,127.00,104.00,607.00,,,,,,\n2015,5,28,\"EV\",\"5900\",\"SYR\",\"ORD\",-4.00,-14.00,0.00,\"\",0.00,119.00,97.00,607.00,,,,,,\n2015,5,30,\"EV\",\"5900\",\"SYR\",\"ORD\",-10.00,-14.00,0.00,\"\",0.00,125.00,105.00,607.00,,,,,,\n2015,5,26,\"EV\",\"5900\",\"SYR\",\"ORD\",-14.00,-23.00,0.00,\"\",0.00,120.00,97.00,607.00,,,,,,\n2015,5,29,\"EV\",\"5900\",\"SYR\",\"ORD\",-4.00,-15.00,0.00,\"\",0.00,118.00,98.00,607.00,,,,,,\n2015,5,9,\"EV\",\"5900\",\"SYR\",\"ORD\",-8.00,-14.00,0.00,\"\",0.00,123.00,99.00,607.00,,,,,,\n2015,5,27,\"EV\",\"5900\",\"SYR\",\"ORD\",331.00,350.00,0.00,\"\",0.00,148.00,124.00,607.00,19.00,0.00,311.00,0.00,20.00,\n2015,5,6,\"EV\",\"5900\",\"SYR\",\"ORD\",-14.00,-22.00,0.00,\"\",0.00,121.00,100.00,607.00,,,,,,\n2015,5,7,\"EV\",\"5900\",\"SYR\",\"ORD\",-3.00,-8.00,0.00,\"\",0.00,124.00,101.00,607.00,,,,,,\n2015,5,18,\"EV\",\"5900\",\"SYR\",\"ORD\",-7.00,-15.00,0.00,\"\",0.00,121.00,98.00,607.00,,,,,,\n2015,5,19,\"EV\",\"5900\",\"SYR\",\"ORD\",-3.00,-12.00,0.00,\"\",0.00,120.00,99.00,607.00,,,,,,\n2015,5,8,\"EV\",\"5900\",\"SYR\",\"ORD\",-5.00,-14.00,0.00,\"\",0.00,120.00,94.00,607.00,,,,,,\n2015,5,20,\"EV\",\"5900\",\"SYR\",\"ORD\",0.00,7.00,0.00,\"\",0.00,136.00,109.00,607.00,,,,,,\n2015,5,11,\"EV\",\"5900\",\"SYR\",\"ORD\",-7.00,-19.00,0.00,\"\",0.00,117.00,99.00,607.00,,,,,,\n2015,5,22,\"EV\",\"5900\",\"SYR\",\"ORD\",-8.00,13.00,0.00,\"\",0.00,150.00,99.00,607.00,,,,,,\n2015,5,21,\"EV\",\"5900\",\"SYR\",\"ORD\",-8.00,-4.00,0.00,\"\",0.00,133.00,109.00,607.00,,,,,,\n2015,5,23,\"EV\",\"5900\",\"SYR\",\"ORD\",-10.00,-22.00,0.00,\"\",0.00,117.00,95.00,607.00,,,,,,\n2015,5,12,\"EV\",\"5900\",\"SYR\",\"ORD\",-5.00,1.00,0.00,\"\",0.00,135.00,109.00,607.00,,,,,,\n2015,5,14,\"EV\",\"5900\",\"SYR\",\"ORD\",-9.00,-13.00,0.00,\"\",0.00,125.00,101.00,607.00,,,,,,\n2015,5,13,\"EV\",\"5900\",\"SYR\",\"ORD\",-7.00,-7.00,0.00,\"\",0.00,129.00,105.00,607.00,,,,,,\n2015,5,16,\"EV\",\"5900\",\"SYR\",\"ORD\",-6.00,-11.00,0.00,\"\",0.00,124.00,100.00,607.00,,,,,,\n2015,5,15,\"EV\",\"5900\",\"SYR\",\"ORD\",-8.00,-12.00,0.00,\"\",0.00,125.00,98.00,607.00,,,,,,\n2015,5,28,\"EV\",\"5909\",\"ORD\",\"SYR\",-1.00,14.00,0.00,\"\",0.00,130.00,82.00,607.00,,,,,,\n2015,5,26,\"EV\",\"5909\",\"ORD\",\"SYR\",-4.00,-5.00,0.00,\"\",0.00,114.00,84.00,607.00,,,,,,\n2015,5,6,\"EV\",\"5909\",\"ORD\",\"SYR\",-8.00,-6.00,0.00,\"\",0.00,117.00,94.00,607.00,,,,,,\n2015,5,29,\"EV\",\"5909\",\"ORD\",\"SYR\",52.00,52.00,0.00,\"\",0.00,115.00,81.00,607.00,1.00,0.00,0.00,0.00,51.00,\n2015,5,27,\"EV\",\"5909\",\"ORD\",\"SYR\",49.00,39.00,0.00,\"\",0.00,105.00,80.00,607.00,0.00,0.00,5.00,0.00,34.00,\n2015,5,7,\"EV\",\"5909\",\"ORD\",\"SYR\",-1.00,-11.00,0.00,\"\",0.00,105.00,85.00,607.00,,,,,,\n2015,5,18,\"EV\",\"5909\",\"ORD\",\"SYR\",-1.00,17.00,0.00,\"\",0.00,133.00,80.00,607.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,20,\"EV\",\"5909\",\"ORD\",\"SYR\",-4.00,-24.00,0.00,\"\",0.00,95.00,75.00,607.00,,,,,,\n2015,5,8,\"EV\",\"5909\",\"ORD\",\"SYR\",3.00,-2.00,0.00,\"\",0.00,110.00,81.00,607.00,,,,,,\n2015,5,19,\"EV\",\"5909\",\"ORD\",\"SYR\",-7.00,-20.00,0.00,\"\",0.00,102.00,79.00,607.00,,,,,,\n2015,5,22,\"EV\",\"5909\",\"ORD\",\"SYR\",0.00,-10.00,0.00,\"\",0.00,105.00,79.00,607.00,,,,,,\n2015,5,21,\"EV\",\"5909\",\"ORD\",\"SYR\",7.00,-4.00,0.00,\"\",0.00,104.00,78.00,607.00,,,,,,\n2015,5,11,\"EV\",\"5909\",\"ORD\",\"SYR\",-4.00,0.00,0.00,\"\",0.00,119.00,89.00,607.00,,,,,,\n2015,5,13,\"EV\",\"5909\",\"ORD\",\"SYR\",-3.00,2.00,0.00,\"\",0.00,120.00,87.00,607.00,,,,,,\n2015,5,14,\"EV\",\"5909\",\"ORD\",\"SYR\",-1.00,-9.00,0.00,\"\",0.00,107.00,81.00,607.00,,,,,,\n2015,5,12,\"EV\",\"5909\",\"ORD\",\"SYR\",19.00,9.00,0.00,\"\",0.00,105.00,76.00,607.00,,,,,,\n2015,5,15,\"EV\",\"5909\",\"ORD\",\"SYR\",0.00,-11.00,0.00,\"\",0.00,104.00,82.00,607.00,,,,,,\n2015,5,2,\"EV\",\"5910\",\"ORD\",\"ROC\",27.00,14.00,0.00,\"\",0.00,90.00,74.00,528.00,,,,,,\n2015,5,1,\"EV\",\"5910\",\"ORD\",\"ROC\",-5.00,-6.00,0.00,\"\",0.00,102.00,80.00,528.00,,,,,,\n2015,5,4,\"EV\",\"5910\",\"ORD\",\"ROC\",-10.00,-11.00,0.00,\"\",0.00,102.00,75.00,528.00,,,,,,\n2015,5,3,\"EV\",\"5910\",\"ORD\",\"ROC\",-5.00,6.00,0.00,\"\",0.00,114.00,79.00,528.00,,,,,,\n2015,5,5,\"EV\",\"5910\",\"ORD\",\"ROC\",43.00,35.00,0.00,\"\",0.00,95.00,69.00,528.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"EV\",\"5914\",\"ORD\",\"BUF\",-3.00,-9.00,0.00,\"\",0.00,90.00,67.00,473.00,,,,,,\n2015,5,1,\"EV\",\"5914\",\"ORD\",\"BUF\",-12.00,-15.00,0.00,\"\",0.00,90.00,73.00,473.00,,,,,,\n2015,5,4,\"EV\",\"5914\",\"ORD\",\"BUF\",-3.00,-8.00,0.00,\"\",0.00,88.00,72.00,473.00,,,,,,\n2015,5,5,\"EV\",\"5914\",\"ORD\",\"BUF\",1.00,-3.00,0.00,\"\",0.00,89.00,63.00,473.00,,,,,,\n2015,5,1,\"EV\",\"5921\",\"ORD\",\"ELM\",-2.00,4.00,0.00,\"\",0.00,105.00,83.00,566.00,,,,,,\n2015,5,3,\"EV\",\"5921\",\"ORD\",\"ELM\",0.00,4.00,0.00,\"\",0.00,103.00,83.00,566.00,,,,,,\n2015,5,4,\"EV\",\"5921\",\"ORD\",\"ELM\",-11.00,-3.00,0.00,\"\",0.00,107.00,80.00,566.00,,,,,,\n2015,5,5,\"EV\",\"5921\",\"ORD\",\"ELM\",13.00,30.00,0.00,\"\",0.00,116.00,76.00,566.00,0.00,0.00,17.00,0.00,13.00,\n2015,5,31,\"EV\",\"6019\",\"ELM\",\"ORD\",-1.00,-13.00,0.00,\"\",0.00,110.00,93.00,566.00,,,,,,\n2015,5,25,\"EV\",\"6019\",\"ELM\",\"ORD\",5.00,-17.00,0.00,\"\",0.00,100.00,89.00,566.00,,,,,,\n2015,5,2,\"EV\",\"6019\",\"ELM\",\"ORD\",-8.00,-6.00,0.00,\"\",0.00,123.00,91.00,566.00,,,,,,\n2015,5,1,\"EV\",\"6019\",\"ELM\",\"ORD\",-10.00,-25.00,0.00,\"\",0.00,106.00,84.00,566.00,,,,,,\n2015,5,3,\"EV\",\"6019\",\"ELM\",\"ORD\",-4.00,-5.00,0.00,\"\",0.00,120.00,100.00,566.00,,,,,,\n2015,5,26,\"EV\",\"6019\",\"ELM\",\"ORD\",-5.00,-14.00,0.00,\"\",0.00,113.00,90.00,566.00,,,,,,\n2015,5,28,\"EV\",\"6019\",\"ELM\",\"ORD\",322.00,293.00,0.00,\"\",0.00,93.00,83.00,566.00,293.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"EV\",\"6019\",\"ELM\",\"ORD\",-4.00,-12.00,0.00,\"\",0.00,114.00,86.00,566.00,,,,,,\n2015,5,5,\"EV\",\"6019\",\"ELM\",\"ORD\",-4.00,2.00,0.00,\"\",0.00,127.00,100.00,566.00,,,,,,\n2015,5,4,\"EV\",\"6019\",\"ELM\",\"ORD\",95.00,83.00,0.00,\"\",0.00,109.00,87.00,566.00,83.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"EV\",\"6019\",\"ELM\",\"ORD\",-13.00,-20.00,0.00,\"\",0.00,115.00,88.00,566.00,,,,,,\n2015,5,17,\"EV\",\"6019\",\"ELM\",\"ORD\",92.00,72.00,0.00,\"\",0.00,102.00,81.00,566.00,0.00,72.00,0.00,0.00,0.00,\n2015,5,27,\"EV\",\"6019\",\"ELM\",\"ORD\",-4.00,-18.00,0.00,\"\",0.00,108.00,87.00,566.00,,,,,,\n2015,5,30,\"EV\",\"6019\",\"ELM\",\"ORD\",-7.00,10.00,0.00,\"\",0.00,139.00,96.00,566.00,,,,,,\n2015,5,8,\"EV\",\"6019\",\"ELM\",\"ORD\",-4.00,-19.00,0.00,\"\",0.00,107.00,87.00,566.00,,,,,,\n2015,5,18,\"EV\",\"6019\",\"ELM\",\"ORD\",-1.00,-7.00,0.00,\"\",0.00,116.00,97.00,566.00,,,,,,\n2015,5,9,\"EV\",\"6019\",\"ELM\",\"ORD\",-4.00,-10.00,0.00,\"\",0.00,116.00,89.00,566.00,,,,,,\n2015,5,7,\"EV\",\"6019\",\"ELM\",\"ORD\",21.00,-7.00,0.00,\"\",0.00,94.00,81.00,566.00,,,,,,\n2015,5,21,\"EV\",\"6019\",\"ELM\",\"ORD\",-6.00,-10.00,0.00,\"\",0.00,118.00,99.00,566.00,,,,,,\n2015,5,10,\"EV\",\"6019\",\"ELM\",\"ORD\",-5.00,-22.00,0.00,\"\",0.00,105.00,87.00,566.00,,,,,,\n2015,5,19,\"EV\",\"6019\",\"ELM\",\"ORD\",-3.00,-12.00,0.00,\"\",0.00,113.00,91.00,566.00,,,,,,\n2015,5,20,\"EV\",\"6019\",\"ELM\",\"ORD\",-5.00,-9.00,0.00,\"\",0.00,118.00,94.00,566.00,,,,,,\n2015,5,11,\"EV\",\"6019\",\"ELM\",\"ORD\",-7.00,40.00,0.00,\"\",0.00,169.00,95.00,566.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,22,\"EV\",\"6019\",\"ELM\",\"ORD\",-6.00,-9.00,0.00,\"\",0.00,119.00,98.00,566.00,,,,,,\n2015,5,12,\"EV\",\"6019\",\"ELM\",\"ORD\",3.00,-1.00,0.00,\"\",0.00,118.00,99.00,566.00,,,,,,\n2015,5,13,\"EV\",\"6019\",\"ELM\",\"ORD\",-8.00,-16.00,0.00,\"\",0.00,114.00,90.00,566.00,,,,,,\n2015,5,14,\"EV\",\"6019\",\"ELM\",\"ORD\",-9.00,29.00,0.00,\"\",0.00,160.00,93.00,566.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,23,\"EV\",\"6019\",\"ELM\",\"ORD\",-3.00,3.00,0.00,\"\",0.00,128.00,96.00,566.00,,,,,,\n2015,5,24,\"EV\",\"6019\",\"ELM\",\"ORD\",-11.00,-29.00,0.00,\"\",0.00,104.00,90.00,566.00,,,,,,\n2015,5,15,\"EV\",\"6019\",\"ELM\",\"ORD\",-3.00,-16.00,0.00,\"\",0.00,109.00,90.00,566.00,,,,,,\n2015,5,16,\"EV\",\"6019\",\"ELM\",\"ORD\",-7.00,-24.00,0.00,\"\",0.00,105.00,89.00,566.00,,,,,,\n2015,5,1,\"EV\",\"6034\",\"ORD\",\"ELM\",-10.00,-7.00,0.00,\"\",0.00,102.00,78.00,566.00,,,,,,\n2015,5,31,\"EV\",\"6034\",\"ORD\",\"ELM\",0.00,-2.00,0.00,\"\",0.00,98.00,76.00,566.00,,,,,,\n2015,5,2,\"EV\",\"6034\",\"ORD\",\"ELM\",42.00,38.00,0.00,\"\",0.00,95.00,74.00,566.00,38.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"EV\",\"6034\",\"ORD\",\"ELM\",-7.00,-11.00,0.00,\"\",0.00,96.00,76.00,566.00,,,,,,\n2015,5,28,\"EV\",\"6034\",\"ORD\",\"ELM\",12.00,-4.00,0.00,\"\",0.00,84.00,70.00,566.00,,,,,,\n2015,5,3,\"EV\",\"6034\",\"ORD\",\"ELM\",35.00,42.00,0.00,\"\",0.00,106.00,77.00,566.00,0.00,0.00,7.00,0.00,35.00,\n2015,5,4,\"EV\",\"6034\",\"ORD\",\"ELM\",-10.00,-10.00,0.00,\"\",0.00,99.00,74.00,566.00,,,,,,\n2015,5,29,\"EV\",\"6034\",\"ORD\",\"ELM\",-5.00,5.00,0.00,\"\",0.00,110.00,82.00,566.00,,,,,,\n2015,5,17,\"EV\",\"6034\",\"ORD\",\"ELM\",0.00,-10.00,0.00,\"\",0.00,90.00,75.00,566.00,,,,,,\n2015,5,26,\"EV\",\"6034\",\"ORD\",\"ELM\",7.00,8.00,0.00,\"\",0.00,101.00,73.00,566.00,,,,,,\n2015,5,5,\"EV\",\"6034\",\"ORD\",\"ELM\",-15.00,-25.00,0.00,\"\",0.00,89.00,69.00,566.00,,,,,,\n2015,5,18,\"EV\",\"6034\",\"ORD\",\"ELM\",-4.00,-13.00,0.00,\"\",0.00,91.00,73.00,566.00,,,,,,\n2015,5,7,\"EV\",\"6034\",\"ORD\",\"ELM\",-9.00,-10.00,0.00,\"\",0.00,99.00,78.00,566.00,,,,,,\n2015,5,19,\"EV\",\"6034\",\"ORD\",\"ELM\",-5.00,-8.00,0.00,\"\",0.00,97.00,72.00,566.00,,,,,,\n2015,5,20,\"EV\",\"6034\",\"ORD\",\"ELM\",4.00,3.00,0.00,\"\",0.00,99.00,69.00,566.00,,,,,,\n2015,5,10,\"EV\",\"6034\",\"ORD\",\"ELM\",-7.00,-1.00,0.00,\"\",0.00,106.00,74.00,566.00,,,,,,\n2015,5,8,\"EV\",\"6034\",\"ORD\",\"ELM\",39.00,60.00,0.00,\"\",0.00,121.00,81.00,566.00,6.00,0.00,21.00,0.00,33.00,\n2015,5,22,\"EV\",\"6034\",\"ORD\",\"ELM\",-10.00,-22.00,0.00,\"\",0.00,88.00,68.00,566.00,,,,,,\n2015,5,11,\"EV\",\"6034\",\"ORD\",\"ELM\",-2.00,5.00,0.00,\"\",0.00,107.00,83.00,566.00,,,,,,\n2015,5,21,\"EV\",\"6034\",\"ORD\",\"ELM\",34.00,42.00,0.00,\"\",0.00,108.00,78.00,566.00,8.00,0.00,14.00,0.00,20.00,\n2015,5,14,\"EV\",\"6034\",\"ORD\",\"ELM\",-7.00,-16.00,0.00,\"\",0.00,91.00,71.00,566.00,,,,,,\n2015,5,13,\"EV\",\"6034\",\"ORD\",\"ELM\",98.00,88.00,0.00,\"\",0.00,90.00,72.00,566.00,0.00,0.00,88.00,0.00,0.00,\n2015,5,12,\"EV\",\"6034\",\"ORD\",\"ELM\",-8.00,-16.00,0.00,\"\",0.00,92.00,69.00,566.00,,,,,,\n2015,5,24,\"EV\",\"6034\",\"ORD\",\"ELM\",-1.00,-5.00,0.00,\"\",0.00,96.00,70.00,566.00,,,,,,\n2015,5,15,\"EV\",\"6034\",\"ORD\",\"ELM\",0.00,-4.00,0.00,\"\",0.00,96.00,75.00,566.00,,,,,,\n2015,5,27,\"EV\",\"6034\",\"ORD\",\"ELM\",,,1.00,\"A\",0.00,,,566.00,,,,,,\n2015,5,26,\"EV\",\"5203\",\"DTW\",\"SYR\",89.00,80.00,0.00,\"\",0.00,76.00,56.00,374.00,0.00,0.00,0.00,0.00,80.00,\n2015,5,5,\"EV\",\"5203\",\"DTW\",\"SYR\",-5.00,-9.00,0.00,\"\",0.00,81.00,56.00,374.00,,,,,,\n2015,5,19,\"EV\",\"5203\",\"DTW\",\"SYR\",-3.00,-15.00,0.00,\"\",0.00,73.00,54.00,374.00,,,,,,\n2015,5,12,\"EV\",\"5203\",\"DTW\",\"SYR\",34.00,13.00,0.00,\"\",0.00,64.00,48.00,374.00,,,,,,\n2015,5,5,\"EV\",\"5203\",\"SYR\",\"DTW\",-5.00,-4.00,0.00,\"\",0.00,94.00,76.00,374.00,,,,,,\n2015,5,26,\"EV\",\"5203\",\"SYR\",\"DTW\",124.00,109.00,0.00,\"\",0.00,78.00,62.00,374.00,29.00,0.00,0.00,0.00,80.00,\n2015,5,19,\"EV\",\"5203\",\"SYR\",\"DTW\",-5.00,7.00,0.00,\"\",0.00,105.00,73.00,374.00,,,,,,\n2015,5,12,\"EV\",\"5203\",\"SYR\",\"DTW\",16.00,26.00,0.00,\"\",0.00,103.00,68.00,374.00,13.00,0.00,10.00,0.00,3.00,\n2015,5,17,\"EV\",\"5206\",\"STL\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,143.00,117.00,888.00,,,,,,\n2015,5,17,\"EV\",\"5214\",\"LGA\",\"BUF\",-3.00,-23.00,0.00,\"\",0.00,77.00,50.00,292.00,,,,,,\n2015,5,3,\"EV\",\"5214\",\"LGA\",\"BUF\",-4.00,-30.00,0.00,\"\",0.00,71.00,52.00,292.00,,,,,,\n2015,5,29,\"EV\",\"5214\",\"LGA\",\"BUF\",-7.00,-10.00,0.00,\"\",0.00,94.00,48.00,292.00,,,,,,\n2015,5,4,\"EV\",\"5214\",\"LGA\",\"BUF\",-7.00,-17.00,0.00,\"\",0.00,87.00,56.00,292.00,,,,,,\n2015,5,7,\"EV\",\"5214\",\"LGA\",\"BUF\",-4.00,-33.00,0.00,\"\",0.00,68.00,46.00,292.00,,,,,,\n2015,5,18,\"EV\",\"5214\",\"LGA\",\"BUF\",137.00,130.00,0.00,\"\",0.00,90.00,61.00,292.00,0.00,0.00,0.00,0.00,130.00,\n2015,5,8,\"EV\",\"5214\",\"LGA\",\"BUF\",61.00,32.00,0.00,\"\",0.00,68.00,45.00,292.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"EV\",\"5214\",\"LGA\",\"BUF\",-9.00,-30.00,0.00,\"\",0.00,76.00,48.00,292.00,,,,,,\n2015,5,21,\"EV\",\"5214\",\"LGA\",\"BUF\",-8.00,-8.00,0.00,\"\",0.00,97.00,57.00,292.00,,,,,,\n2015,5,22,\"EV\",\"5214\",\"LGA\",\"BUF\",4.00,-13.00,0.00,\"\",0.00,80.00,50.00,292.00,,,,,,\n2015,5,14,\"EV\",\"5214\",\"LGA\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,88.00,50.00,292.00,,,,,,\n2015,5,15,\"EV\",\"5214\",\"LGA\",\"BUF\",-3.00,-12.00,0.00,\"\",0.00,88.00,51.00,292.00,,,,,,\n2015,5,31,\"EV\",\"5214\",\"LGA\",\"BUF\",169.00,193.00,0.00,\"\",0.00,121.00,65.00,292.00,143.00,0.00,24.00,0.00,26.00,\n2015,5,28,\"EV\",\"5214\",\"LGA\",\"BUF\",,,1.00,\"A\",0.00,,,292.00,,,,,,\n2015,5,12,\"EV\",\"5214\",\"LGA\",\"CLT\",-3.00,-23.00,0.00,\"\",0.00,107.00,86.00,544.00,,,,,,\n2015,5,17,\"EV\",\"5215\",\"LGA\",\"OMA\",132.00,105.00,0.00,\"\",0.00,172.00,153.00,1148.00,105.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"EV\",\"5215\",\"LGA\",\"OMA\",-6.00,-20.00,0.00,\"\",0.00,185.00,158.00,1148.00,,,,,,\n2015,5,25,\"EV\",\"5215\",\"LGA\",\"OMA\",-8.00,3.00,0.00,\"\",0.00,210.00,162.00,1148.00,,,,,,\n2015,5,28,\"EV\",\"5215\",\"LGA\",\"OMA\",-4.00,-11.00,0.00,\"\",0.00,192.00,153.00,1148.00,,,,,,\n2015,5,26,\"EV\",\"5215\",\"LGA\",\"OMA\",51.00,27.00,0.00,\"\",0.00,175.00,150.00,1148.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,29,\"EV\",\"5215\",\"LGA\",\"OMA\",-8.00,-20.00,0.00,\"\",0.00,187.00,157.00,1148.00,,,,,,\n2015,5,4,\"EV\",\"5215\",\"LGA\",\"OMA\",-6.00,-16.00,0.00,\"\",0.00,189.00,168.00,1148.00,,,,,,\n2015,5,5,\"EV\",\"5215\",\"LGA\",\"OMA\",45.00,24.00,0.00,\"\",0.00,178.00,153.00,1148.00,0.00,0.00,0.00,0.00,24.00,\n2015,5,7,\"EV\",\"5215\",\"LGA\",\"OMA\",-10.00,-11.00,0.00,\"\",0.00,198.00,171.00,1148.00,,,,,,\n2015,5,8,\"EV\",\"5215\",\"LGA\",\"OMA\",-6.00,-16.00,0.00,\"\",0.00,189.00,162.00,1148.00,,,,,,\n2015,5,19,\"EV\",\"5215\",\"LGA\",\"OMA\",-3.00,-2.00,0.00,\"\",0.00,200.00,165.00,1148.00,,,,,,\n2015,5,11,\"EV\",\"5215\",\"LGA\",\"OMA\",76.00,64.00,0.00,\"\",0.00,187.00,162.00,1148.00,0.00,0.00,0.00,0.00,64.00,\n2015,5,20,\"EV\",\"5215\",\"LGA\",\"OMA\",-7.00,57.00,0.00,\"\",0.00,263.00,170.00,1148.00,0.00,0.00,57.00,0.00,0.00,\n2015,5,21,\"EV\",\"5215\",\"LGA\",\"OMA\",-4.00,4.00,0.00,\"\",0.00,207.00,176.00,1148.00,,,,,,\n2015,5,22,\"EV\",\"5215\",\"LGA\",\"OMA\",-5.00,1.00,0.00,\"\",0.00,205.00,169.00,1148.00,,,,,,\n2015,5,14,\"EV\",\"5215\",\"LGA\",\"OMA\",0.00,-18.00,0.00,\"\",0.00,181.00,155.00,1148.00,,,,,,\n2015,5,12,\"EV\",\"5215\",\"LGA\",\"OMA\",-10.00,2.00,0.00,\"\",0.00,211.00,179.00,1148.00,,,,,,\n2015,5,13,\"EV\",\"5215\",\"LGA\",\"OMA\",56.00,44.00,0.00,\"\",0.00,187.00,156.00,1148.00,39.00,0.00,0.00,0.00,5.00,\n2015,5,10,\"EV\",\"5215\",\"LGA\",\"OMA\",28.00,11.00,0.00,\"\",0.00,182.00,148.00,1148.00,,,,,,\n2015,5,18,\"EV\",\"5215\",\"LGA\",\"OMA\",,,1.00,\"B\",0.00,,,1148.00,,,,,,\n2015,5,15,\"EV\",\"5215\",\"LGA\",\"OMA\",,,1.00,\"A\",0.00,,,1148.00,,,,,,\n2015,5,31,\"EV\",\"5215\",\"LGA\",\"OMA\",,,1.00,\"A\",0.00,,,1148.00,,,,,,\n2015,5,6,\"EV\",\"5215\",\"LGA\",\"OMA\",,,1.00,\"A\",0.00,,,1148.00,,,,,,\n2015,5,27,\"EV\",\"5215\",\"LGA\",\"OMA\",,,1.00,\"C\",0.00,,,1148.00,,,,,,\n2015,5,30,\"EV\",\"5216\",\"DTW\",\"ROC\",-7.00,-15.00,0.00,\"\",0.00,61.00,45.00,296.00,,,,,,\n2015,5,1,\"EV\",\"5217\",\"CAE\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,115.00,92.00,617.00,,,,,,\n2015,5,28,\"EV\",\"5217\",\"CAE\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,109.00,90.00,617.00,,,,,,\n2015,5,25,\"EV\",\"5217\",\"CAE\",\"LGA\",-5.00,11.00,0.00,\"\",0.00,131.00,84.00,617.00,,,,,,\n2015,5,29,\"EV\",\"5217\",\"CAE\",\"LGA\",-3.00,7.00,0.00,\"\",0.00,125.00,90.00,617.00,,,,,,\n2015,5,4,\"EV\",\"5217\",\"CAE\",\"LGA\",-2.00,4.00,0.00,\"\",0.00,121.00,87.00,617.00,,,,,,\n2015,5,26,\"EV\",\"5217\",\"CAE\",\"LGA\",-1.00,0.00,0.00,\"\",0.00,116.00,94.00,617.00,,,,,,\n2015,5,5,\"EV\",\"5217\",\"CAE\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,112.00,89.00,617.00,,,,,,\n2015,5,27,\"EV\",\"5217\",\"CAE\",\"LGA\",-1.00,0.00,0.00,\"\",0.00,116.00,97.00,617.00,,,,,,\n2015,5,6,\"EV\",\"5217\",\"CAE\",\"LGA\",-7.00,-10.00,0.00,\"\",0.00,112.00,87.00,617.00,,,,,,\n2015,5,7,\"EV\",\"5217\",\"CAE\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,108.00,90.00,617.00,,,,,,\n2015,5,18,\"EV\",\"5217\",\"CAE\",\"LGA\",201.00,218.00,0.00,\"\",0.00,132.00,98.00,617.00,0.00,0.00,218.00,0.00,0.00,\n2015,5,19,\"EV\",\"5217\",\"CAE\",\"LGA\",25.00,24.00,0.00,\"\",0.00,114.00,98.00,617.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"EV\",\"5217\",\"CAE\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,114.00,100.00,617.00,,,,,,\n2015,5,6,\"EV\",\"5255\",\"PWM\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,76.00,60.00,269.00,,,,,,\n2015,5,27,\"EV\",\"5255\",\"PWM\",\"LGA\",-8.00,-14.00,0.00,\"\",0.00,78.00,55.00,269.00,,,,,,\n2015,5,10,\"EV\",\"5255\",\"PWM\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,70.00,52.00,269.00,,,,,,\n2015,5,20,\"EV\",\"5255\",\"PWM\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,74.00,61.00,269.00,,,,,,\n2015,5,13,\"EV\",\"5255\",\"PWM\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,77.00,58.00,269.00,,,,,,\n2015,5,2,\"EV\",\"5258\",\"MCI\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,170.00,148.00,1107.00,,,,,,\n2015,5,1,\"EV\",\"5258\",\"MCI\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,160.00,142.00,1107.00,,,,,,\n2015,5,26,\"EV\",\"5258\",\"MCI\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,170.00,145.00,1107.00,,,,,,\n2015,5,29,\"EV\",\"5258\",\"MCI\",\"LGA\",-3.00,16.00,0.00,\"\",0.00,193.00,148.00,1107.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,9,\"EV\",\"5258\",\"MCI\",\"LGA\",14.00,10.00,0.00,\"\",0.00,170.00,143.00,1107.00,,,,,,\n2015,5,4,\"EV\",\"5258\",\"MCI\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,172.00,155.00,1107.00,,,,,,\n2015,5,6,\"EV\",\"5258\",\"MCI\",\"LGA\",-9.00,-11.00,0.00,\"\",0.00,172.00,145.00,1107.00,,,,,,\n2015,5,5,\"EV\",\"5258\",\"MCI\",\"LGA\",-4.00,3.00,0.00,\"\",0.00,181.00,159.00,1107.00,,,,,,\n2015,5,18,\"EV\",\"5258\",\"MCI\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,169.00,150.00,1107.00,,,,,,\n2015,5,30,\"EV\",\"5258\",\"MCI\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,169.00,149.00,1107.00,,,,,,\n2015,5,7,\"EV\",\"5258\",\"MCI\",\"LGA\",-6.00,-1.00,0.00,\"\",0.00,179.00,149.00,1107.00,,,,,,\n2015,5,19,\"EV\",\"5258\",\"MCI\",\"LGA\",93.00,82.00,0.00,\"\",0.00,163.00,143.00,1107.00,0.00,0.00,82.00,0.00,0.00,\n2015,5,8,\"EV\",\"5258\",\"MCI\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,171.00,150.00,1107.00,,,,,,\n2015,5,22,\"EV\",\"5258\",\"MCI\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,157.00,137.00,1107.00,,,,,,\n2015,5,20,\"EV\",\"5258\",\"MCI\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,156.00,137.00,1107.00,,,,,,\n2015,5,21,\"EV\",\"5258\",\"MCI\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,161.00,137.00,1107.00,,,,,,\n2015,5,11,\"EV\",\"5258\",\"MCI\",\"LGA\",-1.00,0.00,0.00,\"\",0.00,175.00,153.00,1107.00,,,,,,\n2015,5,12,\"EV\",\"5258\",\"MCI\",\"LGA\",144.00,118.00,0.00,\"\",0.00,148.00,129.00,1107.00,118.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"EV\",\"5258\",\"MCI\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,166.00,142.00,1107.00,,,,,,\n2015,5,13,\"EV\",\"5258\",\"MCI\",\"LGA\",-7.00,-7.00,0.00,\"\",0.00,174.00,132.00,1107.00,,,,,,\n2015,5,14,\"EV\",\"5258\",\"MCI\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,172.00,147.00,1107.00,,,,,,\n2015,5,16,\"EV\",\"5258\",\"MCI\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,165.00,137.00,1107.00,,,,,,\n2015,5,27,\"EV\",\"5258\",\"MCI\",\"LGA\",,,1.00,\"A\",0.00,,,1107.00,,,,,,\n2015,5,28,\"EV\",\"5258\",\"MCI\",\"LGA\",,,1.00,\"B\",0.00,,,1107.00,,,,,,\n2015,5,17,\"EV\",\"5258\",\"PWM\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,73.00,46.00,269.00,,,,,,\n2015,5,3,\"EV\",\"5258\",\"PWM\",\"LGA\",-9.00,-13.00,0.00,\"\",0.00,81.00,55.00,269.00,,,,,,\n2015,5,31,\"EV\",\"5258\",\"PWM\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,70.00,56.00,269.00,,,,,,\n2015,5,24,\"EV\",\"5268\",\"ALB\",\"DTW\",-8.00,-18.00,0.00,\"\",0.00,100.00,82.00,489.00,,,,,,\n2015,5,2,\"EV\",\"5271\",\"LGA\",\"BNA\",4.00,-9.00,0.00,\"\",0.00,142.00,101.00,764.00,,,,,,\n2015,5,3,\"EV\",\"5273\",\"JAX\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,138.00,113.00,833.00,,,,,,\n2015,5,17,\"EV\",\"5273\",\"LGA\",\"CLE\",-7.00,-6.00,0.00,\"\",0.00,114.00,64.00,419.00,,,,,,\n2015,5,28,\"EV\",\"5273\",\"LGA\",\"CLE\",-4.00,-3.00,0.00,\"\",0.00,114.00,71.00,419.00,,,,,,\n2015,5,25,\"EV\",\"5273\",\"LGA\",\"CLE\",-10.00,-26.00,0.00,\"\",0.00,97.00,68.00,419.00,,,,,,\n2015,5,1,\"EV\",\"5273\",\"LGA\",\"CLE\",-7.00,3.00,0.00,\"\",0.00,123.00,78.00,419.00,,,,,,\n2015,5,2,\"EV\",\"5273\",\"LGA\",\"CLE\",-6.00,-32.00,0.00,\"\",0.00,86.00,60.00,419.00,,,,,,\n2015,5,29,\"EV\",\"5273\",\"LGA\",\"CLE\",-4.00,-3.00,0.00,\"\",0.00,114.00,66.00,419.00,,,,,,\n2015,5,4,\"EV\",\"5273\",\"LGA\",\"CLE\",-6.00,-19.00,0.00,\"\",0.00,100.00,62.00,419.00,,,,,,\n2015,5,30,\"EV\",\"5273\",\"LGA\",\"CLE\",-6.00,-29.00,0.00,\"\",0.00,89.00,62.00,419.00,,,,,,\n2015,5,6,\"EV\",\"5273\",\"LGA\",\"CLE\",-10.00,4.00,0.00,\"\",0.00,127.00,67.00,419.00,,,,,,\n2015,5,27,\"EV\",\"5273\",\"LGA\",\"CLE\",-6.00,-26.00,0.00,\"\",0.00,93.00,72.00,419.00,,,,,,\n2015,5,26,\"EV\",\"5273\",\"LGA\",\"CLE\",-5.00,-18.00,0.00,\"\",0.00,100.00,63.00,419.00,,,,,,\n2015,5,5,\"EV\",\"5273\",\"LGA\",\"CLE\",-5.00,-17.00,0.00,\"\",0.00,101.00,64.00,419.00,,,,,,\n2015,5,9,\"EV\",\"5273\",\"LGA\",\"CLE\",47.00,40.00,0.00,\"\",0.00,105.00,60.00,419.00,34.00,0.00,0.00,0.00,6.00,\n2015,5,31,\"EV\",\"5273\",\"LGA\",\"CLE\",-5.00,-24.00,0.00,\"\",0.00,94.00,69.00,419.00,,,,,,\n2015,5,7,\"EV\",\"5273\",\"LGA\",\"CLE\",-8.00,-34.00,0.00,\"\",0.00,87.00,62.00,419.00,,,,,,\n2015,5,8,\"EV\",\"5273\",\"LGA\",\"CLE\",-2.00,-20.00,0.00,\"\",0.00,95.00,62.00,419.00,,,,,,\n2015,5,20,\"EV\",\"5273\",\"LGA\",\"CLE\",-5.00,-8.00,0.00,\"\",0.00,110.00,67.00,419.00,,,,,,\n2015,5,11,\"EV\",\"5273\",\"LGA\",\"CLE\",-6.00,-19.00,0.00,\"\",0.00,100.00,64.00,419.00,,,,,,\n2015,5,21,\"EV\",\"5273\",\"LGA\",\"CLE\",-7.00,-25.00,0.00,\"\",0.00,95.00,70.00,419.00,,,,,,\n2015,5,23,\"EV\",\"5273\",\"LGA\",\"CLE\",-5.00,-10.00,0.00,\"\",0.00,107.00,69.00,419.00,,,,,,\n2015,5,19,\"EV\",\"5273\",\"LGA\",\"CLE\",76.00,55.00,0.00,\"\",0.00,92.00,65.00,419.00,0.00,0.00,0.00,0.00,55.00,\n2015,5,22,\"EV\",\"5273\",\"LGA\",\"CLE\",-3.00,1.00,0.00,\"\",0.00,117.00,71.00,419.00,,,,,,\n2015,5,14,\"EV\",\"5273\",\"LGA\",\"CLE\",102.00,80.00,0.00,\"\",0.00,91.00,65.00,419.00,80.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"EV\",\"5273\",\"LGA\",\"CLE\",-6.00,0.00,0.00,\"\",0.00,119.00,74.00,419.00,,,,,,\n2015,5,12,\"EV\",\"5273\",\"LGA\",\"CLE\",-6.00,-3.00,0.00,\"\",0.00,116.00,89.00,419.00,,,,,,\n2015,5,15,\"EV\",\"5273\",\"LGA\",\"CLE\",-6.00,-14.00,0.00,\"\",0.00,105.00,67.00,419.00,,,,,,\n2015,5,16,\"EV\",\"5273\",\"LGA\",\"CLE\",25.00,20.00,0.00,\"\",0.00,107.00,66.00,419.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,18,\"EV\",\"5273\",\"LGA\",\"CLE\",,,1.00,\"B\",0.00,,,419.00,,,,,,\n2015,5,1,\"EV\",\"5276\",\"JAX\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,149.00,113.00,833.00,,,,,,\n2015,5,25,\"EV\",\"5280\",\"LGA\",\"CLE\",-11.00,-25.00,0.00,\"\",0.00,98.00,63.00,419.00,,,,,,\n2015,5,28,\"EV\",\"5280\",\"LGA\",\"CLE\",-3.00,-11.00,0.00,\"\",0.00,104.00,71.00,419.00,,,,,,\n2015,5,17,\"EV\",\"5280\",\"LGA\",\"CLE\",-1.00,-12.00,0.00,\"\",0.00,101.00,63.00,419.00,,,,,,\n2015,5,3,\"EV\",\"5280\",\"LGA\",\"CLE\",-5.00,-28.00,0.00,\"\",0.00,89.00,64.00,419.00,,,,,,\n2015,5,4,\"EV\",\"5280\",\"LGA\",\"CLE\",-9.00,-27.00,0.00,\"\",0.00,94.00,64.00,419.00,,,,,,\n2015,5,26,\"EV\",\"5280\",\"LGA\",\"CLE\",-3.00,-24.00,0.00,\"\",0.00,91.00,66.00,419.00,,,,,,\n2015,5,5,\"EV\",\"5280\",\"LGA\",\"CLE\",-9.00,-24.00,0.00,\"\",0.00,97.00,70.00,419.00,,,,,,\n2015,5,7,\"EV\",\"5280\",\"LGA\",\"CLE\",-5.00,-18.00,0.00,\"\",0.00,99.00,62.00,419.00,,,,,,\n2015,5,10,\"EV\",\"5280\",\"LGA\",\"CLE\",-4.00,-20.00,0.00,\"\",0.00,96.00,64.00,419.00,,,,,,\n2015,5,11,\"EV\",\"5280\",\"LGA\",\"CLE\",-5.00,-18.00,0.00,\"\",0.00,99.00,63.00,419.00,,,,,,\n2015,5,21,\"EV\",\"5280\",\"LGA\",\"CLE\",-11.00,-26.00,0.00,\"\",0.00,97.00,67.00,419.00,,,,,,\n2015,5,20,\"EV\",\"5280\",\"LGA\",\"CLE\",-4.00,-17.00,0.00,\"\",0.00,99.00,70.00,419.00,,,,,,\n2015,5,19,\"EV\",\"5280\",\"LGA\",\"CLE\",-9.00,-31.00,0.00,\"\",0.00,90.00,67.00,419.00,,,,,,\n2015,5,12,\"EV\",\"5280\",\"LGA\",\"CLE\",-5.00,-26.00,0.00,\"\",0.00,91.00,70.00,419.00,,,,,,\n2015,5,15,\"EV\",\"5280\",\"LGA\",\"CLE\",56.00,50.00,0.00,\"\",0.00,106.00,66.00,419.00,0.00,0.00,0.00,0.00,50.00,\n2015,5,14,\"EV\",\"5280\",\"LGA\",\"CLE\",-4.00,-19.00,0.00,\"\",0.00,97.00,71.00,419.00,,,,,,\n2015,5,22,\"EV\",\"5280\",\"LGA\",\"CLE\",86.00,74.00,0.00,\"\",0.00,100.00,68.00,419.00,74.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"EV\",\"5280\",\"LGA\",\"CLE\",53.00,39.00,0.00,\"\",0.00,98.00,66.00,419.00,0.00,0.00,0.00,0.00,39.00,\n2015,5,18,\"EV\",\"5280\",\"LGA\",\"CLE\",,,1.00,\"B\",0.00,,,419.00,,,,,,\n2015,5,27,\"EV\",\"5280\",\"LGA\",\"CLE\",-10.00,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,31,\"EV\",\"5280\",\"LGA\",\"CLE\",,,1.00,\"A\",0.00,,,419.00,,,,,,\n2015,5,8,\"EV\",\"5280\",\"LGA\",\"CLE\",,,1.00,\"A\",0.00,,,419.00,,,,,,\n2015,5,3,\"EV\",\"5292\",\"LGA\",\"JAX\",-5.00,-2.00,0.00,\"\",0.00,159.00,123.00,833.00,,,,,,\n2015,5,1,\"EV\",\"5296\",\"LGA\",\"JAX\",-5.00,-37.00,0.00,\"\",0.00,127.00,106.00,833.00,,,,,,\n2015,5,2,\"EV\",\"5297\",\"JAX\",\"LGA\",-9.00,-6.00,0.00,\"\",0.00,144.00,117.00,833.00,,,,,,\n2015,5,28,\"EV\",\"5302\",\"OMA\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,169.00,148.00,1148.00,,,,,,\n2015,5,17,\"EV\",\"5302\",\"OMA\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,173.00,142.00,1148.00,,,,,,\n2015,5,25,\"EV\",\"5302\",\"OMA\",\"LGA\",51.00,34.00,0.00,\"\",0.00,158.00,140.00,1148.00,34.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"EV\",\"5302\",\"OMA\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,168.00,148.00,1148.00,,,,,,\n2015,5,4,\"EV\",\"5302\",\"OMA\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,163.00,147.00,1148.00,,,,,,\n2015,5,27,\"EV\",\"5302\",\"OMA\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,174.00,147.00,1148.00,,,,,,\n2015,5,29,\"EV\",\"5302\",\"OMA\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,164.00,143.00,1148.00,,,,,,\n2015,5,5,\"EV\",\"5302\",\"OMA\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,162.00,146.00,1148.00,,,,,,\n2015,5,6,\"EV\",\"5302\",\"OMA\",\"LGA\",-11.00,-19.00,0.00,\"\",0.00,167.00,146.00,1148.00,,,,,,\n2015,5,19,\"EV\",\"5302\",\"OMA\",\"LGA\",81.00,86.00,0.00,\"\",0.00,180.00,133.00,1148.00,0.00,0.00,86.00,0.00,0.00,\n2015,5,31,\"EV\",\"5302\",\"OMA\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,173.00,152.00,1148.00,,,,,,\n2015,5,8,\"EV\",\"5302\",\"OMA\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,162.00,143.00,1148.00,,,,,,\n2015,5,20,\"EV\",\"5302\",\"OMA\",\"LGA\",-5.00,-29.00,0.00,\"\",0.00,151.00,132.00,1148.00,,,,,,\n2015,5,10,\"EV\",\"5302\",\"OMA\",\"LGA\",-6.00,13.00,0.00,\"\",0.00,194.00,157.00,1148.00,,,,,,\n2015,5,11,\"EV\",\"5302\",\"OMA\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,168.00,147.00,1148.00,,,,,,\n2015,5,22,\"EV\",\"5302\",\"OMA\",\"LGA\",-5.00,-27.00,0.00,\"\",0.00,153.00,137.00,1148.00,,,,,,\n2015,5,21,\"EV\",\"5302\",\"OMA\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,154.00,134.00,1148.00,,,,,,\n2015,5,12,\"EV\",\"5302\",\"OMA\",\"LGA\",-9.00,8.00,0.00,\"\",0.00,192.00,134.00,1148.00,,,,,,\n2015,5,13,\"EV\",\"5302\",\"OMA\",\"LGA\",-15.00,-29.00,0.00,\"\",0.00,161.00,136.00,1148.00,,,,,,\n2015,5,15,\"EV\",\"5302\",\"OMA\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,170.00,149.00,1148.00,,,,,,\n2015,5,14,\"EV\",\"5302\",\"OMA\",\"LGA\",-10.00,-21.00,0.00,\"\",0.00,164.00,144.00,1148.00,,,,,,\n2015,5,18,\"EV\",\"5302\",\"OMA\",\"LGA\",,,1.00,\"B\",0.00,,,1148.00,,,,,,\n2015,5,7,\"EV\",\"5302\",\"OMA\",\"LGA\",,,1.00,\"A\",0.00,,,1148.00,,,,,,\n2015,5,1,\"EV\",\"5302\",\"SAV\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,123.00,94.00,722.00,,,,,,\n2015,5,23,\"EV\",\"5305\",\"ALB\",\"ATL\",-5.00,-15.00,0.00,\"\",0.00,140.00,122.00,853.00,,,,,,\n2015,5,23,\"EV\",\"5305\",\"ATL\",\"ALB\",-1.00,-12.00,0.00,\"\",0.00,130.00,112.00,853.00,,,,,,\n2015,5,17,\"EV\",\"5310\",\"ALB\",\"DTW\",-9.00,-16.00,0.00,\"\",0.00,100.00,76.00,489.00,,,,,,\n2015,5,5,\"F9\",\"506\",\"DEN\",\"LGA\",204.00,174.00,0.00,\"\",0.00,205.00,186.00,1620.00,174.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"F9\",\"619\",\"LGA\",\"MIA\",170.00,150.00,0.00,\"\",0.00,175.00,150.00,1096.00,0.00,0.00,0.00,0.00,150.00,\n2015,5,5,\"F9\",\"1142\",\"MIA\",\"LGA\",34.00,10.00,0.00,\"\",0.00,156.00,136.00,1096.00,,,,,,\n2015,5,5,\"F9\",\"507\",\"LGA\",\"DEN\",0.00,-13.00,0.00,\"\",0.00,246.00,208.00,1620.00,,,,,,\n2015,5,5,\"F9\",\"1462\",\"ATL\",\"LGA\",1.00,-8.00,0.00,\"\",0.00,131.00,107.00,762.00,,,,,,\n2015,5,5,\"F9\",\"1463\",\"LGA\",\"ATL\",-7.00,-20.00,0.00,\"\",0.00,137.00,106.00,762.00,,,,,,\n2015,5,6,\"F9\",\"506\",\"DEN\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,225.00,202.00,1620.00,,,,,,\n2015,5,6,\"F9\",\"619\",\"LGA\",\"MIA\",0.00,10.00,0.00,\"\",0.00,205.00,149.00,1096.00,,,,,,\n2015,5,25,\"EV\",\"6013\",\"ROC\",\"ORD\",-4.00,-6.00,0.00,\"\",0.00,119.00,93.00,528.00,,,,,,\n2015,5,16,\"EV\",\"6132\",\"ORD\",\"ELM\",-3.00,-1.00,0.00,\"\",0.00,102.00,71.00,566.00,,,,,,\n2015,5,30,\"EV\",\"6132\",\"ORD\",\"ELM\",-7.00,-6.00,0.00,\"\",0.00,101.00,75.00,566.00,,,,,,\n2015,5,9,\"EV\",\"6132\",\"ORD\",\"ELM\",-7.00,-7.00,0.00,\"\",0.00,100.00,76.00,566.00,,,,,,\n2015,5,23,\"EV\",\"6132\",\"ORD\",\"ELM\",-10.00,-6.00,0.00,\"\",0.00,104.00,74.00,566.00,,,,,,\n2015,5,2,\"EV\",\"6153\",\"ROC\",\"ORD\",-7.00,-20.00,0.00,\"\",0.00,104.00,79.00,528.00,,,,,,\n2015,5,4,\"EV\",\"6153\",\"ROC\",\"ORD\",-8.00,-8.00,0.00,\"\",0.00,117.00,82.00,528.00,,,,,,\n2015,5,5,\"EV\",\"6153\",\"ROC\",\"ORD\",-3.00,6.00,0.00,\"\",0.00,126.00,97.00,528.00,,,,,,\n2015,5,9,\"F9\",\"1142\",\"MIA\",\"LGA\",-5.00,4.00,0.00,\"\",0.00,189.00,158.00,1096.00,,,,,,\n2015,5,9,\"F9\",\"507\",\"LGA\",\"DEN\",0.00,-23.00,0.00,\"\",0.00,236.00,213.00,1620.00,,,,,,\n2015,5,9,\"F9\",\"506\",\"DEN\",\"LGA\",3.00,15.00,0.00,\"\",0.00,247.00,213.00,1620.00,3.00,0.00,12.00,0.00,0.00,\n2015,5,9,\"F9\",\"619\",\"LGA\",\"MIA\",19.00,1.00,0.00,\"\",0.00,177.00,150.00,1096.00,,,,,,\n2015,5,9,\"F9\",\"1462\",\"ATL\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,141.00,119.00,762.00,,,,,,\n2015,5,9,\"F9\",\"1463\",\"LGA\",\"ATL\",-10.00,-36.00,0.00,\"\",0.00,124.00,103.00,762.00,,,,,,\n2015,5,10,\"F9\",\"1142\",\"MIA\",\"LGA\",124.00,133.00,0.00,\"\",0.00,189.00,160.00,1096.00,5.00,0.00,9.00,0.00,119.00,\n2015,5,10,\"F9\",\"507\",\"LGA\",\"DEN\",123.00,93.00,0.00,\"\",0.00,229.00,208.00,1620.00,0.00,0.00,0.00,0.00,93.00,\n2015,5,10,\"F9\",\"506\",\"DEN\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,232.00,197.00,1620.00,,,,,,\n2015,5,10,\"F9\",\"619\",\"LGA\",\"MIA\",3.00,10.00,0.00,\"\",0.00,202.00,171.00,1096.00,,,,,,\n2015,5,1,\"EV\",\"6074\",\"ROC\",\"EWR\",-10.00,-27.00,0.00,\"\",0.00,72.00,44.00,246.00,,,,,,\n2015,5,31,\"EV\",\"6074\",\"ROC\",\"EWR\",365.00,506.00,0.00,\"\",0.00,218.00,55.00,246.00,0.00,0.00,506.00,0.00,0.00,\n2015,5,28,\"EV\",\"6074\",\"ROC\",\"EWR\",-9.00,-15.00,0.00,\"\",0.00,71.00,47.00,246.00,,,,,,\n2015,5,4,\"EV\",\"6074\",\"ROC\",\"EWR\",-15.00,-26.00,0.00,\"\",0.00,78.00,46.00,246.00,,,,,,\n2015,5,26,\"EV\",\"6074\",\"ROC\",\"EWR\",-14.00,-20.00,0.00,\"\",0.00,71.00,43.00,246.00,,,,,,\n2015,5,29,\"EV\",\"6074\",\"ROC\",\"EWR\",-14.00,-19.00,0.00,\"\",0.00,72.00,47.00,246.00,,,,,,\n2015,5,17,\"EV\",\"6074\",\"ROC\",\"EWR\",-5.00,-20.00,0.00,\"\",0.00,62.00,44.00,246.00,,,,,,\n2015,5,5,\"EV\",\"6074\",\"ROC\",\"EWR\",-10.00,-27.00,0.00,\"\",0.00,72.00,47.00,246.00,,,,,,\n2015,5,1,\"F9\",\"1142\",\"MIA\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,174.00,143.00,1096.00,,,,,,\n2015,5,1,\"F9\",\"507\",\"LGA\",\"DEN\",-10.00,-21.00,0.00,\"\",0.00,248.00,223.00,1620.00,,,,,,\n2015,5,1,\"F9\",\"506\",\"DEN\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,215.00,198.00,1620.00,,,,,,\n2015,5,1,\"F9\",\"619\",\"LGA\",\"MIA\",-1.00,-1.00,0.00,\"\",0.00,195.00,155.00,1096.00,,,,,,\n2015,5,1,\"F9\",\"1462\",\"ATL\",\"LGA\",23.00,7.00,0.00,\"\",0.00,124.00,101.00,762.00,,,,,,\n2015,5,1,\"F9\",\"1463\",\"LGA\",\"ATL\",-2.00,-10.00,0.00,\"\",0.00,142.00,102.00,762.00,,,,,,\n2015,5,2,\"F9\",\"1142\",\"MIA\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,166.00,145.00,1096.00,,,,,,\n2015,5,2,\"F9\",\"507\",\"LGA\",\"DEN\",-18.00,-45.00,0.00,\"\",0.00,232.00,214.00,1620.00,,,,,,\n2015,5,2,\"F9\",\"506\",\"DEN\",\"LGA\",-6.00,4.00,0.00,\"\",0.00,245.00,210.00,1620.00,,,,,,\n2015,5,2,\"F9\",\"619\",\"LGA\",\"MIA\",3.00,-21.00,0.00,\"\",0.00,171.00,150.00,1096.00,,,,,,\n2015,5,2,\"F9\",\"1462\",\"ATL\",\"LGA\",70.00,46.00,0.00,\"\",0.00,116.00,99.00,762.00,46.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"F9\",\"1463\",\"LGA\",\"ATL\",45.00,26.00,0.00,\"\",0.00,131.00,96.00,762.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,3,\"F9\",\"1142\",\"MIA\",\"LGA\",7.00,2.00,0.00,\"\",0.00,175.00,152.00,1096.00,,,,,,\n2015,5,3,\"F9\",\"507\",\"LGA\",\"DEN\",10.00,-3.00,0.00,\"\",0.00,246.00,222.00,1620.00,,,,,,\n2015,5,3,\"F9\",\"506\",\"DEN\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,217.00,199.00,1620.00,,,,,,\n2015,5,3,\"F9\",\"619\",\"LGA\",\"MIA\",1.00,-21.00,0.00,\"\",0.00,173.00,151.00,1096.00,,,,,,\n2015,5,3,\"F9\",\"1462\",\"ATL\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,124.00,105.00,762.00,,,,,,\n2015,5,3,\"F9\",\"1463\",\"LGA\",\"ATL\",8.00,-3.00,0.00,\"\",0.00,139.00,106.00,762.00,,,,,,\n2015,5,4,\"F9\",\"506\",\"DEN\",\"LGA\",-9.00,-11.00,0.00,\"\",0.00,233.00,201.00,1620.00,,,,,,\n2015,5,4,\"F9\",\"619\",\"LGA\",\"MIA\",-5.00,-6.00,0.00,\"\",0.00,194.00,153.00,1096.00,,,,,,\n2015,5,4,\"F9\",\"1142\",\"MIA\",\"LGA\",71.00,55.00,0.00,\"\",0.00,164.00,138.00,1096.00,0.00,0.00,0.00,0.00,55.00,\n2015,5,4,\"F9\",\"507\",\"LGA\",\"DEN\",78.00,67.00,0.00,\"\",0.00,248.00,226.00,1620.00,12.00,0.00,0.00,0.00,55.00,\n2015,5,4,\"F9\",\"1462\",\"ATL\",\"LGA\",21.00,3.00,0.00,\"\",0.00,122.00,103.00,762.00,,,,,,\n2015,5,4,\"F9\",\"1463\",\"LGA\",\"ATL\",-2.00,-1.00,0.00,\"\",0.00,151.00,112.00,762.00,,,,,,\n2015,5,13,\"F9\",\"506\",\"DEN\",\"LGA\",-6.00,-40.00,0.00,\"\",0.00,201.00,181.00,1620.00,,,,,,\n2015,5,13,\"F9\",\"619\",\"LGA\",\"MIA\",-6.00,23.00,0.00,\"\",0.00,224.00,168.00,1096.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,13,\"F9\",\"1142\",\"MIA\",\"LGA\",-5.00,13.00,0.00,\"\",0.00,198.00,178.00,1096.00,,,,,,\n2015,5,13,\"F9\",\"507\",\"LGA\",\"DEN\",10.00,32.00,0.00,\"\",0.00,281.00,257.00,1620.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,13,\"F9\",\"1462\",\"ATL\",\"LGA\",39.00,31.00,0.00,\"\",0.00,132.00,95.00,762.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"F9\",\"1463\",\"LGA\",\"ATL\",30.00,51.00,0.00,\"\",0.00,171.00,117.00,762.00,0.00,0.00,21.00,0.00,30.00,\n2015,5,6,\"F9\",\"1142\",\"MIA\",\"LGA\",72.00,70.00,0.00,\"\",0.00,178.00,152.00,1096.00,22.00,0.00,0.00,0.00,48.00,\n2015,5,6,\"F9\",\"507\",\"LGA\",\"DEN\",60.00,29.00,0.00,\"\",0.00,228.00,211.00,1620.00,0.00,0.00,0.00,0.00,29.00,\n2015,5,6,\"F9\",\"1462\",\"ATL\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,130.00,104.00,762.00,,,,,,\n2015,5,6,\"F9\",\"1463\",\"LGA\",\"ATL\",-9.00,2.00,0.00,\"\",0.00,161.00,107.00,762.00,,,,,,\n2015,5,7,\"F9\",\"506\",\"DEN\",\"LGA\",42.00,46.00,0.00,\"\",0.00,239.00,202.00,1620.00,42.00,0.00,4.00,0.00,0.00,\n2015,5,7,\"F9\",\"619\",\"LGA\",\"MIA\",42.00,22.00,0.00,\"\",0.00,175.00,149.00,1096.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,7,\"F9\",\"1142\",\"MIA\",\"LGA\",40.00,42.00,0.00,\"\",0.00,182.00,162.00,1096.00,0.00,0.00,16.00,0.00,26.00,\n2015,5,7,\"F9\",\"507\",\"LGA\",\"DEN\",32.00,13.00,0.00,\"\",0.00,240.00,219.00,1620.00,,,,,,\n2015,5,7,\"F9\",\"1462\",\"ATL\",\"LGA\",-3.00,-1.00,0.00,\"\",0.00,142.00,108.00,762.00,,,,,,\n2015,5,7,\"F9\",\"1463\",\"LGA\",\"ATL\",-3.00,-12.00,0.00,\"\",0.00,141.00,108.00,762.00,,,,,,\n2015,5,8,\"F9\",\"506\",\"DEN\",\"LGA\",-6.00,-2.00,0.00,\"\",0.00,239.00,195.00,1620.00,,,,,,\n2015,5,8,\"F9\",\"619\",\"LGA\",\"MIA\",0.00,0.00,0.00,\"\",0.00,195.00,163.00,1096.00,,,,,,\n2015,5,8,\"F9\",\"1142\",\"MIA\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,174.00,150.00,1096.00,,,,,,\n2015,5,8,\"F9\",\"507\",\"LGA\",\"DEN\",-14.00,-30.00,0.00,\"\",0.00,243.00,225.00,1620.00,,,,,,\n2015,5,8,\"F9\",\"1462\",\"ATL\",\"LGA\",6.00,9.00,0.00,\"\",0.00,143.00,124.00,762.00,,,,,,\n2015,5,8,\"F9\",\"1463\",\"LGA\",\"ATL\",4.00,2.00,0.00,\"\",0.00,148.00,102.00,762.00,,,,,,\n2015,5,16,\"F9\",\"1462\",\"ATL\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,126.00,108.00,762.00,,,,,,\n2015,5,16,\"F9\",\"1463\",\"LGA\",\"ATL\",-9.00,-16.00,0.00,\"\",0.00,143.00,112.00,762.00,,,,,,\n2015,5,17,\"F9\",\"1142\",\"MIA\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,175.00,150.00,1096.00,,,,,,\n2015,5,17,\"F9\",\"507\",\"LGA\",\"DEN\",-4.00,-13.00,0.00,\"\",0.00,250.00,223.00,1620.00,,,,,,\n2015,5,17,\"F9\",\"506\",\"DEN\",\"LGA\",-9.00,-26.00,0.00,\"\",0.00,218.00,190.00,1620.00,,,,,,\n2015,5,17,\"F9\",\"619\",\"LGA\",\"MIA\",5.00,1.00,0.00,\"\",0.00,191.00,152.00,1096.00,,,,,,\n2015,5,17,\"F9\",\"1462\",\"ATL\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,129.00,108.00,762.00,,,,,,\n2015,5,17,\"F9\",\"1463\",\"LGA\",\"ATL\",0.00,-11.00,0.00,\"\",0.00,139.00,105.00,762.00,,,,,,\n2015,5,18,\"F9\",\"1463\",\"LGA\",\"ATL\",,,1.00,\"B\",0.00,,,762.00,,,,,,\n2015,5,18,\"F9\",\"1142\",\"MIA\",\"LGA\",149.00,153.00,0.00,\"\",0.00,184.00,160.00,1096.00,0.00,0.00,66.00,0.00,87.00,\n2015,5,18,\"F9\",\"507\",\"LGA\",\"DEN\",141.00,124.00,0.00,\"\",0.00,242.00,223.00,1620.00,0.00,0.00,37.00,0.00,87.00,\n2015,5,18,\"F9\",\"506\",\"DEN\",\"LGA\",246.00,266.00,0.00,\"\",0.00,255.00,234.00,1620.00,0.00,0.00,139.00,0.00,127.00,\n2015,5,18,\"F9\",\"619\",\"LGA\",\"MIA\",270.00,254.00,0.00,\"\",0.00,179.00,138.00,1096.00,4.00,0.00,4.00,0.00,246.00,\n2015,5,18,\"F9\",\"1462\",\"ATL\",\"LGA\",3.00,,1.00,\"B\",0.00,,,762.00,,,,,,\n2015,5,19,\"F9\",\"1142\",\"MIA\",\"LGA\",0.00,15.00,0.00,\"\",0.00,195.00,150.00,1096.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,19,\"F9\",\"507\",\"LGA\",\"DEN\",14.00,18.00,0.00,\"\",0.00,263.00,230.00,1620.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,19,\"F9\",\"506\",\"DEN\",\"LGA\",129.00,107.00,0.00,\"\",0.00,213.00,186.00,1620.00,0.00,0.00,90.00,0.00,17.00,\n2015,5,19,\"F9\",\"619\",\"LGA\",\"MIA\",106.00,111.00,0.00,\"\",0.00,200.00,162.00,1096.00,0.00,0.00,5.00,0.00,106.00,\n2015,5,19,\"F9\",\"1462\",\"ATL\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,126.00,108.00,762.00,,,,,,\n2015,5,19,\"F9\",\"1463\",\"LGA\",\"ATL\",-3.00,-10.00,0.00,\"\",0.00,143.00,113.00,762.00,,,,,,\n2015,5,2,\"EV\",\"6119\",\"ROC\",\"ORD\",,,1.00,\"C\",0.00,,,528.00,,,,,,\n2015,5,1,\"EV\",\"6119\",\"ROC\",\"ORD\",-10.00,-27.00,0.00,\"\",0.00,100.00,79.00,528.00,,,,,,\n2015,5,3,\"EV\",\"6119\",\"ROC\",\"ORD\",-1.00,1.00,0.00,\"\",0.00,119.00,87.00,528.00,,,,,,\n2015,5,4,\"EV\",\"6119\",\"ROC\",\"ORD\",-14.00,-17.00,0.00,\"\",0.00,114.00,89.00,528.00,,,,,,\n2015,5,5,\"EV\",\"6119\",\"ROC\",\"ORD\",29.00,77.00,0.00,\"\",0.00,165.00,91.00,528.00,29.00,0.00,48.00,0.00,0.00,\n2015,5,20,\"F9\",\"1142\",\"MIA\",\"LGA\",-9.00,-13.00,0.00,\"\",0.00,176.00,145.00,1096.00,,,,,,\n2015,5,20,\"F9\",\"507\",\"LGA\",\"DEN\",-12.00,-17.00,0.00,\"\",0.00,254.00,232.00,1620.00,,,,,,\n2015,5,20,\"F9\",\"1462\",\"ATL\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,123.00,103.00,762.00,,,,,,\n2015,5,20,\"F9\",\"1463\",\"LGA\",\"ATL\",-8.00,5.00,0.00,\"\",0.00,163.00,106.00,762.00,,,,,,\n2015,5,21,\"F9\",\"1142\",\"MIA\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,179.00,150.00,1096.00,,,,,,\n2015,5,21,\"F9\",\"507\",\"LGA\",\"DEN\",-3.00,-8.00,0.00,\"\",0.00,254.00,230.00,1620.00,,,,,,\n2015,5,21,\"F9\",\"506\",\"DEN\",\"LGA\",-6.00,-34.00,0.00,\"\",0.00,207.00,184.00,1620.00,,,,,,\n2015,5,21,\"F9\",\"619\",\"LGA\",\"MIA\",-4.00,17.00,0.00,\"\",0.00,216.00,157.00,1096.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,21,\"F9\",\"1462\",\"ATL\",\"LGA\",17.00,0.00,0.00,\"\",0.00,123.00,100.00,762.00,,,,,,\n2015,5,21,\"F9\",\"1463\",\"LGA\",\"ATL\",0.00,-11.00,0.00,\"\",0.00,139.00,117.00,762.00,,,,,,\n2015,5,22,\"F9\",\"1142\",\"MIA\",\"LGA\",5.00,26.00,0.00,\"\",0.00,201.00,168.00,1096.00,0.00,0.00,21.00,0.00,5.00,\n2015,5,22,\"F9\",\"507\",\"LGA\",\"DEN\",18.00,31.00,0.00,\"\",0.00,272.00,242.00,1620.00,0.00,0.00,26.00,0.00,5.00,\n2015,5,22,\"F9\",\"506\",\"DEN\",\"LGA\",-4.00,-29.00,0.00,\"\",0.00,210.00,188.00,1620.00,,,,,,\n2015,5,22,\"F9\",\"619\",\"LGA\",\"MIA\",-3.00,-19.00,0.00,\"\",0.00,179.00,154.00,1096.00,,,,,,\n2015,5,22,\"F9\",\"1462\",\"ATL\",\"LGA\",-8.00,-29.00,0.00,\"\",0.00,119.00,100.00,762.00,,,,,,\n2015,5,22,\"F9\",\"1463\",\"LGA\",\"ATL\",-12.00,1.00,0.00,\"\",0.00,163.00,116.00,762.00,,,,,,\n2015,5,23,\"F9\",\"1142\",\"MIA\",\"LGA\",6.00,3.00,0.00,\"\",0.00,177.00,152.00,1096.00,,,,,,\n2015,5,23,\"F9\",\"507\",\"LGA\",\"DEN\",-3.00,-2.00,0.00,\"\",0.00,260.00,233.00,1620.00,,,,,,\n2015,5,23,\"F9\",\"506\",\"DEN\",\"LGA\",-9.00,-40.00,0.00,\"\",0.00,204.00,176.00,1620.00,,,,,,\n2015,5,23,\"F9\",\"619\",\"LGA\",\"MIA\",23.00,-17.00,0.00,\"\",0.00,155.00,139.00,1096.00,,,,,,\n2015,5,23,\"F9\",\"1462\",\"ATL\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,122.00,104.00,762.00,,,,,,\n2015,5,23,\"F9\",\"1463\",\"LGA\",\"ATL\",-10.00,-13.00,0.00,\"\",0.00,147.00,114.00,762.00,,,,,,\n2015,5,10,\"F9\",\"1462\",\"ATL\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,143.00,108.00,762.00,,,,,,\n2015,5,10,\"F9\",\"1463\",\"LGA\",\"ATL\",0.00,5.00,0.00,\"\",0.00,155.00,102.00,762.00,,,,,,\n2015,5,11,\"F9\",\"506\",\"DEN\",\"LGA\",-9.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,11,\"F9\",\"619\",\"LGA\",\"MIA\",170.00,148.00,0.00,\"\",0.00,173.00,144.00,1096.00,9.00,0.00,139.00,0.00,0.00,\n2015,5,11,\"F9\",\"1142\",\"MIA\",\"LGA\",27.00,23.00,0.00,\"\",0.00,176.00,147.00,1096.00,8.00,0.00,0.00,0.00,15.00,\n2015,5,11,\"F9\",\"507\",\"LGA\",\"DEN\",20.00,10.00,0.00,\"\",0.00,249.00,223.00,1620.00,,,,,,\n2015,5,11,\"F9\",\"1462\",\"ATL\",\"LGA\",15.00,4.00,0.00,\"\",0.00,129.00,110.00,762.00,,,,,,\n2015,5,11,\"F9\",\"1463\",\"LGA\",\"ATL\",4.00,-13.00,0.00,\"\",0.00,133.00,102.00,762.00,,,,,,\n2015,5,12,\"F9\",\"506\",\"DEN\",\"LGA\",-4.00,-37.00,0.00,\"\",0.00,202.00,175.00,1620.00,,,,,,\n2015,5,12,\"F9\",\"619\",\"LGA\",\"MIA\",-2.00,38.00,0.00,\"\",0.00,235.00,185.00,1096.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,12,\"F9\",\"1142\",\"MIA\",\"LGA\",11.00,-7.00,0.00,\"\",0.00,162.00,138.00,1096.00,,,,,,\n2015,5,12,\"F9\",\"507\",\"LGA\",\"DEN\",-12.00,-14.00,0.00,\"\",0.00,257.00,238.00,1620.00,,,,,,\n2015,5,12,\"F9\",\"1462\",\"ATL\",\"LGA\",-4.00,16.00,0.00,\"\",0.00,160.00,108.00,762.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,12,\"F9\",\"1463\",\"LGA\",\"ATL\",17.00,51.00,0.00,\"\",0.00,184.00,117.00,762.00,1.00,0.00,50.00,0.00,0.00,\n2015,5,24,\"F9\",\"506\",\"DEN\",\"LGA\",5.00,-16.00,0.00,\"\",0.00,214.00,191.00,1620.00,,,,,,\n2015,5,24,\"F9\",\"619\",\"LGA\",\"MIA\",-1.00,-33.00,0.00,\"\",0.00,163.00,141.00,1096.00,,,,,,\n2015,5,24,\"F9\",\"1142\",\"MIA\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,181.00,155.00,1096.00,,,,,,\n2015,5,24,\"F9\",\"507\",\"LGA\",\"DEN\",-2.00,-28.00,0.00,\"\",0.00,233.00,211.00,1620.00,,,,,,\n2015,5,24,\"F9\",\"1462\",\"ATL\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,125.00,107.00,762.00,,,,,,\n2015,5,24,\"F9\",\"1463\",\"LGA\",\"ATL\",-4.00,-12.00,0.00,\"\",0.00,142.00,105.00,762.00,,,,,,\n2015,5,25,\"F9\",\"506\",\"DEN\",\"LGA\",-9.00,-31.00,0.00,\"\",0.00,213.00,195.00,1620.00,,,,,,\n2015,5,25,\"F9\",\"619\",\"LGA\",\"MIA\",-4.00,-16.00,0.00,\"\",0.00,183.00,150.00,1096.00,,,,,,\n2015,5,25,\"F9\",\"1142\",\"MIA\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,168.00,151.00,1096.00,,,,,,\n2015,5,25,\"F9\",\"507\",\"LGA\",\"DEN\",-9.00,-37.00,0.00,\"\",0.00,231.00,211.00,1620.00,,,,,,\n2015,5,25,\"F9\",\"1462\",\"ATL\",\"LGA\",9.00,-6.00,0.00,\"\",0.00,125.00,102.00,762.00,,,,,,\n2015,5,25,\"F9\",\"1463\",\"LGA\",\"ATL\",-3.00,-7.00,0.00,\"\",0.00,146.00,123.00,762.00,,,,,,\n2015,5,26,\"F9\",\"507\",\"LGA\",\"DEN\",,,1.00,\"B\",0.00,,,1620.00,,,,,,\n2015,5,26,\"F9\",\"506\",\"DEN\",\"LGA\",-10.00,1.00,0.00,\"\",0.00,246.00,220.00,1620.00,,,,,,\n2015,5,26,\"F9\",\"619\",\"LGA\",\"MIA\",2.00,-12.00,0.00,\"\",0.00,181.00,149.00,1096.00,,,,,,\n2015,5,26,\"F9\",\"1142\",\"MIA\",\"LGA\",116.00,95.00,0.00,\"\",0.00,159.00,139.00,1096.00,10.00,0.00,85.00,0.00,0.00,\n2015,5,26,\"F9\",\"1462\",\"ATL\",\"LGA\",17.00,2.00,0.00,\"\",0.00,125.00,104.00,762.00,,,,,,\n2015,5,26,\"F9\",\"1463\",\"LGA\",\"ATL\",2.00,16.00,0.00,\"\",0.00,164.00,114.00,762.00,0.00,0.00,14.00,0.00,2.00,\n2015,5,27,\"F9\",\"506\",\"DEN\",\"LGA\",125.00,100.00,0.00,\"\",0.00,210.00,193.00,1620.00,0.00,0.00,100.00,0.00,0.00,\n2015,5,27,\"F9\",\"619\",\"LGA\",\"MIA\",115.00,145.00,0.00,\"\",0.00,225.00,150.00,1096.00,15.00,0.00,30.00,0.00,100.00,\n2015,5,27,\"F9\",\"1142\",\"MIA\",\"LGA\",27.00,24.00,0.00,\"\",0.00,177.00,147.00,1096.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,27,\"F9\",\"507\",\"LGA\",\"DEN\",27.00,10.00,0.00,\"\",0.00,242.00,217.00,1620.00,,,,,,\n2015,5,27,\"F9\",\"1462\",\"ATL\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,129.00,111.00,762.00,,,,,,\n2015,5,27,\"F9\",\"1463\",\"LGA\",\"ATL\",2.00,-8.00,0.00,\"\",0.00,140.00,114.00,762.00,,,,,,\n2015,5,20,\"F9\",\"506\",\"DEN\",\"LGA\",-9.00,-22.00,0.00,\"\",0.00,222.00,177.00,1620.00,,,,,,\n2015,5,20,\"F9\",\"619\",\"LGA\",\"MIA\",7.00,33.00,0.00,\"\",0.00,221.00,142.00,1096.00,7.00,0.00,26.00,0.00,0.00,\n2015,5,28,\"F9\",\"506\",\"DEN\",\"LGA\",-6.00,-32.00,0.00,\"\",0.00,209.00,192.00,1620.00,,,,,,\n2015,5,28,\"F9\",\"619\",\"LGA\",\"MIA\",-7.00,3.00,0.00,\"\",0.00,205.00,162.00,1096.00,,,,,,\n2015,5,28,\"F9\",\"1142\",\"MIA\",\"LGA\",94.00,78.00,0.00,\"\",0.00,164.00,139.00,1096.00,0.00,0.00,0.00,0.00,78.00,\n2015,5,28,\"F9\",\"507\",\"LGA\",\"DEN\",82.00,61.00,0.00,\"\",0.00,238.00,221.00,1620.00,0.00,0.00,0.00,0.00,61.00,\n2015,5,28,\"F9\",\"1462\",\"ATL\",\"LGA\",-7.00,-24.00,0.00,\"\",0.00,123.00,103.00,762.00,,,,,,\n2015,5,28,\"F9\",\"1463\",\"LGA\",\"ATL\",-7.00,0.00,0.00,\"\",0.00,157.00,116.00,762.00,,,,,,\n2015,5,29,\"F9\",\"506\",\"DEN\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,228.00,195.00,1620.00,,,,,,\n2015,5,29,\"F9\",\"619\",\"LGA\",\"MIA\",0.00,-11.00,0.00,\"\",0.00,184.00,145.00,1096.00,,,,,,\n2015,5,29,\"F9\",\"1142\",\"MIA\",\"LGA\",8.00,7.00,0.00,\"\",0.00,179.00,155.00,1096.00,,,,,,\n2015,5,29,\"F9\",\"507\",\"LGA\",\"DEN\",7.00,-12.00,0.00,\"\",0.00,240.00,215.00,1620.00,,,,,,\n2015,5,29,\"F9\",\"1462\",\"ATL\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,127.00,104.00,762.00,,,,,,\n2015,5,29,\"F9\",\"1463\",\"LGA\",\"ATL\",-8.00,20.00,0.00,\"\",0.00,178.00,104.00,762.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,30,\"F9\",\"506\",\"DEN\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,218.00,200.00,1620.00,,,,,,\n2015,5,30,\"F9\",\"619\",\"LGA\",\"MIA\",2.00,-4.00,0.00,\"\",0.00,189.00,146.00,1096.00,,,,,,\n2015,5,30,\"F9\",\"1142\",\"MIA\",\"LGA\",52.00,55.00,0.00,\"\",0.00,183.00,154.00,1096.00,1.00,0.00,42.00,0.00,12.00,\n2015,5,30,\"F9\",\"507\",\"LGA\",\"DEN\",51.00,23.00,0.00,\"\",0.00,231.00,211.00,1620.00,0.00,0.00,10.00,0.00,13.00,\n2015,5,30,\"F9\",\"1462\",\"ATL\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,131.00,113.00,762.00,,,,,,\n2015,5,30,\"F9\",\"1463\",\"LGA\",\"ATL\",-6.00,-18.00,0.00,\"\",0.00,138.00,105.00,762.00,,,,,,\n2015,5,31,\"F9\",\"619\",\"LGA\",\"MIA\",,,1.00,\"B\",0.00,,,1096.00,,,,,,\n2015,5,31,\"F9\",\"1142\",\"MIA\",\"LGA\",95.00,92.00,0.00,\"\",0.00,177.00,154.00,1096.00,32.00,0.00,0.00,0.00,60.00,\n2015,5,31,\"F9\",\"507\",\"LGA\",\"DEN\",113.00,109.00,0.00,\"\",0.00,255.00,219.00,1620.00,17.00,0.00,0.00,0.00,92.00,\n2015,5,31,\"F9\",\"506\",\"DEN\",\"LGA\",34.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,31,\"F9\",\"1462\",\"ATL\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,125.00,102.00,762.00,,,,,,\n2015,5,31,\"F9\",\"1463\",\"LGA\",\"ATL\",-7.00,-24.00,0.00,\"\",0.00,133.00,106.00,762.00,,,,,,\n2015,5,1,\"HA\",\"50\",\"HNL\",\"JFK\",51.00,66.00,0.00,\"\",0.00,600.00,574.00,4983.00,66.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"HA\",\"50\",\"HNL\",\"JFK\",-9.00,-13.00,0.00,\"\",0.00,581.00,556.00,4983.00,,,,,,\n2015,5,3,\"HA\",\"50\",\"HNL\",\"JFK\",-2.00,13.00,0.00,\"\",0.00,600.00,562.00,4983.00,,,,,,\n2015,5,6,\"HA\",\"50\",\"HNL\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,578.00,555.00,4983.00,,,,,,\n2015,5,7,\"HA\",\"50\",\"HNL\",\"JFK\",-11.00,44.00,0.00,\"\",0.00,640.00,618.00,4983.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"HA\",\"50\",\"HNL\",\"JFK\",-2.00,22.00,0.00,\"\",0.00,609.00,578.00,4983.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"HA\",\"50\",\"HNL\",\"JFK\",-7.00,3.00,0.00,\"\",0.00,595.00,567.00,4983.00,,,,,,\n2015,5,10,\"HA\",\"50\",\"HNL\",\"JFK\",-7.00,25.00,0.00,\"\",0.00,617.00,592.00,4983.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"HA\",\"50\",\"HNL\",\"JFK\",-3.00,19.00,0.00,\"\",0.00,607.00,582.00,4983.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"HA\",\"50\",\"HNL\",\"JFK\",-4.00,10.00,0.00,\"\",0.00,599.00,571.00,4983.00,,,,,,\n2015,5,15,\"HA\",\"50\",\"HNL\",\"JFK\",-7.00,4.00,0.00,\"\",0.00,596.00,574.00,4983.00,,,,,,\n2015,5,16,\"HA\",\"50\",\"HNL\",\"JFK\",-3.00,31.00,0.00,\"\",0.00,619.00,594.00,4983.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"HA\",\"50\",\"HNL\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,580.00,548.00,4983.00,,,,,,\n2015,5,18,\"HA\",\"50\",\"HNL\",\"JFK\",2.00,-27.00,0.00,\"\",0.00,556.00,536.00,4983.00,,,,,,\n2015,5,19,\"HA\",\"50\",\"HNL\",\"JFK\",-8.00,0.00,0.00,\"\",0.00,593.00,567.00,4983.00,,,,,,\n2015,5,20,\"HA\",\"50\",\"HNL\",\"JFK\",-9.00,-44.00,0.00,\"\",0.00,550.00,529.00,4983.00,,,,,,\n2015,5,21,\"HA\",\"50\",\"HNL\",\"JFK\",-8.00,-8.00,0.00,\"\",0.00,585.00,558.00,4983.00,,,,,,\n2015,5,22,\"HA\",\"50\",\"HNL\",\"JFK\",-1.00,12.00,0.00,\"\",0.00,598.00,567.00,4983.00,,,,,,\n2015,5,23,\"HA\",\"50\",\"HNL\",\"JFK\",-11.00,-16.00,0.00,\"\",0.00,580.00,557.00,4983.00,,,,,,\n2015,5,24,\"HA\",\"50\",\"HNL\",\"JFK\",-4.00,3.00,0.00,\"\",0.00,592.00,560.00,4983.00,,,,,,\n2015,5,25,\"HA\",\"50\",\"HNL\",\"JFK\",0.00,7.00,0.00,\"\",0.00,592.00,562.00,4983.00,,,,,,\n2015,5,26,\"HA\",\"50\",\"HNL\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,582.00,555.00,4983.00,,,,,,\n2015,5,27,\"HA\",\"50\",\"HNL\",\"JFK\",12.00,24.00,0.00,\"\",0.00,597.00,557.00,4983.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"HA\",\"50\",\"HNL\",\"JFK\",-3.00,-22.00,0.00,\"\",0.00,566.00,544.00,4983.00,,,,,,\n2015,5,29,\"HA\",\"50\",\"HNL\",\"JFK\",12.00,11.00,0.00,\"\",0.00,584.00,556.00,4983.00,,,,,,\n2015,5,30,\"HA\",\"50\",\"HNL\",\"JFK\",5.00,6.00,0.00,\"\",0.00,586.00,564.00,4983.00,,,,,,\n2015,5,31,\"HA\",\"50\",\"HNL\",\"JFK\",-9.00,-17.00,0.00,\"\",0.00,577.00,556.00,4983.00,,,,,,\n2015,5,1,\"HA\",\"51\",\"JFK\",\"HNL\",-6.00,1.00,0.00,\"\",0.00,662.00,629.00,4983.00,,,,,,\n2015,5,2,\"HA\",\"51\",\"JFK\",\"HNL\",-1.00,-12.00,0.00,\"\",0.00,644.00,618.00,4983.00,,,,,,\n2015,5,3,\"HA\",\"51\",\"JFK\",\"HNL\",-8.00,8.00,0.00,\"\",0.00,671.00,633.00,4983.00,,,,,,\n2015,5,4,\"HA\",\"51\",\"JFK\",\"HNL\",-7.00,6.00,0.00,\"\",0.00,668.00,640.00,4983.00,,,,,,\n2015,5,7,\"HA\",\"51\",\"JFK\",\"HNL\",-5.00,-24.00,0.00,\"\",0.00,636.00,612.00,4983.00,,,,,,\n2015,5,8,\"HA\",\"51\",\"JFK\",\"HNL\",-4.00,-14.00,0.00,\"\",0.00,645.00,621.00,4983.00,,,,,,\n2015,5,9,\"HA\",\"51\",\"JFK\",\"HNL\",-2.00,19.00,0.00,\"\",0.00,676.00,635.00,4983.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"HA\",\"51\",\"JFK\",\"HNL\",-6.00,-31.00,0.00,\"\",0.00,630.00,611.00,4983.00,,,,,,\n2015,5,11,\"HA\",\"51\",\"JFK\",\"HNL\",-6.00,0.00,0.00,\"\",0.00,661.00,632.00,4983.00,,,,,,\n2015,5,14,\"HA\",\"51\",\"JFK\",\"HNL\",-3.00,7.00,0.00,\"\",0.00,665.00,636.00,4983.00,,,,,,\n2015,5,15,\"HA\",\"51\",\"JFK\",\"HNL\",-3.00,1.00,0.00,\"\",0.00,659.00,623.00,4983.00,,,,,,\n2015,5,16,\"HA\",\"51\",\"JFK\",\"HNL\",1.00,-4.00,0.00,\"\",0.00,650.00,612.00,4983.00,,,,,,\n2015,5,17,\"HA\",\"51\",\"JFK\",\"HNL\",-7.00,-27.00,0.00,\"\",0.00,635.00,616.00,4983.00,,,,,,\n2015,5,18,\"HA\",\"51\",\"JFK\",\"HNL\",-9.00,-8.00,0.00,\"\",0.00,656.00,614.00,4983.00,,,,,,\n2015,5,19,\"HA\",\"51\",\"JFK\",\"HNL\",-7.00,1.00,0.00,\"\",0.00,663.00,632.00,4983.00,,,,,,\n2015,5,20,\"HA\",\"51\",\"JFK\",\"HNL\",-6.00,-16.00,0.00,\"\",0.00,645.00,629.00,4983.00,,,,,,\n2015,5,21,\"HA\",\"51\",\"JFK\",\"HNL\",-12.00,-4.00,0.00,\"\",0.00,663.00,637.00,4983.00,,,,,,\n2015,5,22,\"HA\",\"51\",\"JFK\",\"HNL\",-11.00,36.00,0.00,\"\",0.00,702.00,638.00,4983.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"HA\",\"51\",\"JFK\",\"HNL\",-8.00,-14.00,0.00,\"\",0.00,649.00,630.00,4983.00,,,,,,\n2015,5,24,\"HA\",\"51\",\"JFK\",\"HNL\",-5.00,-9.00,0.00,\"\",0.00,651.00,630.00,4983.00,,,,,,\n2015,5,25,\"HA\",\"51\",\"JFK\",\"HNL\",-11.00,-24.00,0.00,\"\",0.00,642.00,614.00,4983.00,,,,,,\n2015,5,26,\"HA\",\"51\",\"JFK\",\"HNL\",-5.00,3.00,0.00,\"\",0.00,663.00,643.00,4983.00,,,,,,\n2015,5,27,\"HA\",\"51\",\"JFK\",\"HNL\",-11.00,11.00,0.00,\"\",0.00,677.00,641.00,4983.00,,,,,,\n2015,5,28,\"HA\",\"51\",\"JFK\",\"HNL\",3.00,26.00,0.00,\"\",0.00,678.00,648.00,4983.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"HA\",\"51\",\"JFK\",\"HNL\",-8.00,9.00,0.00,\"\",0.00,672.00,640.00,4983.00,,,,,,\n2015,5,30,\"HA\",\"51\",\"JFK\",\"HNL\",0.00,-2.00,0.00,\"\",0.00,653.00,622.00,4983.00,,,,,,\n2015,5,31,\"HA\",\"51\",\"JFK\",\"HNL\",-3.00,17.00,0.00,\"\",0.00,675.00,642.00,4983.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"MQ\",\"2905\",\"BNA\",\"LGA\",-6.00,7.00,0.00,\"\",0.00,149.00,124.00,764.00,,,,,,\n2015,5,3,\"MQ\",\"2905\",\"BNA\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,133.00,115.00,764.00,,,,,,\n2015,5,4,\"MQ\",\"2905\",\"BNA\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,134.00,113.00,764.00,,,,,,\n2015,5,5,\"MQ\",\"2905\",\"BNA\",\"LGA\",-11.00,-12.00,0.00,\"\",0.00,135.00,108.00,764.00,,,,,,\n2015,5,6,\"MQ\",\"2905\",\"BNA\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,131.00,112.00,764.00,,,,,,\n2015,5,1,\"MQ\",\"2915\",\"CLE\",\"JFK\",-9.00,-15.00,0.00,\"\",0.00,93.00,71.00,425.00,,,,,,\n2015,5,2,\"MQ\",\"2915\",\"CLE\",\"JFK\",-23.00,-32.00,0.00,\"\",0.00,90.00,74.00,425.00,,,,,,\n2015,5,3,\"MQ\",\"2915\",\"CLE\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,90.00,74.00,425.00,,,,,,\n2015,5,4,\"MQ\",\"2915\",\"CLE\",\"JFK\",6.00,8.00,0.00,\"\",0.00,101.00,73.00,425.00,,,,,,\n2015,5,5,\"MQ\",\"2915\",\"CLE\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,90.00,71.00,425.00,,,,,,\n2015,5,6,\"MQ\",\"2915\",\"CLE\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,85.00,65.00,425.00,,,,,,\n2015,5,1,\"MQ\",\"2919\",\"LGA\",\"STL\",0.00,24.00,0.00,\"\",0.00,189.00,126.00,888.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,3,\"MQ\",\"2919\",\"LGA\",\"STL\",-6.00,-10.00,0.00,\"\",0.00,161.00,120.00,888.00,,,,,,\n2015,5,4,\"MQ\",\"2919\",\"LGA\",\"STL\",-10.00,-14.00,0.00,\"\",0.00,161.00,122.00,888.00,,,,,,\n2015,5,5,\"MQ\",\"2919\",\"LGA\",\"STL\",-5.00,-38.00,0.00,\"\",0.00,132.00,118.00,888.00,,,,,,\n2015,5,6,\"MQ\",\"2919\",\"LGA\",\"STL\",-1.00,4.00,0.00,\"\",0.00,170.00,126.00,888.00,,,,,,\n2015,5,1,\"MQ\",\"2919\",\"STL\",\"LGA\",4.00,42.00,0.00,\"\",0.00,181.00,137.00,888.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,3,\"MQ\",\"2919\",\"STL\",\"LGA\",-8.00,-14.00,0.00,\"\",0.00,137.00,120.00,888.00,,,,,,\n2015,5,4,\"MQ\",\"2919\",\"STL\",\"LGA\",-8.00,-15.00,0.00,\"\",0.00,136.00,122.00,888.00,,,,,,\n2015,5,5,\"MQ\",\"2919\",\"STL\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,131.00,116.00,888.00,,,,,,\n2015,5,6,\"MQ\",\"2919\",\"STL\",\"LGA\",-8.00,-3.00,0.00,\"\",0.00,148.00,116.00,888.00,,,,,,\n2015,5,1,\"MQ\",\"2926\",\"LGA\",\"ORF\",24.00,14.00,0.00,\"\",0.00,85.00,51.00,296.00,,,,,,\n2015,5,3,\"MQ\",\"2926\",\"LGA\",\"ORF\",-3.00,-7.00,0.00,\"\",0.00,91.00,50.00,296.00,,,,,,\n2015,5,4,\"MQ\",\"2926\",\"LGA\",\"ORF\",11.00,-8.00,0.00,\"\",0.00,76.00,49.00,296.00,,,,,,\n2015,5,5,\"MQ\",\"2926\",\"LGA\",\"ORF\",-8.00,-21.00,0.00,\"\",0.00,82.00,48.00,296.00,,,,,,\n2015,5,6,\"MQ\",\"2926\",\"LGA\",\"ORF\",-2.00,-6.00,0.00,\"\",0.00,91.00,48.00,296.00,,,,,,\n2015,5,1,\"MQ\",\"2926\",\"ORF\",\"LGA\",13.00,3.00,0.00,\"\",0.00,81.00,58.00,296.00,,,,,,\n2015,5,3,\"MQ\",\"2926\",\"ORF\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,82.00,56.00,296.00,,,,,,\n2015,5,4,\"MQ\",\"2926\",\"ORF\",\"LGA\",1.00,-5.00,0.00,\"\",0.00,85.00,59.00,296.00,,,,,,\n2015,5,5,\"MQ\",\"2926\",\"ORF\",\"LGA\",-18.00,-36.00,0.00,\"\",0.00,73.00,56.00,296.00,,,,,,\n2015,5,6,\"MQ\",\"2926\",\"ORF\",\"LGA\",-6.00,-28.00,0.00,\"\",0.00,69.00,55.00,296.00,,,,,,\n2015,5,1,\"MQ\",\"2932\",\"ORD\",\"HPN\",-6.00,-24.00,0.00,\"\",0.00,124.00,102.00,738.00,,,,,,\n2015,5,2,\"MQ\",\"2932\",\"ORD\",\"HPN\",-5.00,-26.00,0.00,\"\",0.00,121.00,103.00,738.00,,,,,,\n2015,5,3,\"MQ\",\"2932\",\"ORD\",\"HPN\",11.00,-12.00,0.00,\"\",0.00,119.00,102.00,738.00,,,,,,\n2015,5,4,\"MQ\",\"2932\",\"ORD\",\"HPN\",0.00,-23.00,0.00,\"\",0.00,119.00,96.00,738.00,,,,,,\n2015,5,5,\"MQ\",\"2932\",\"ORD\",\"HPN\",8.00,-18.00,0.00,\"\",0.00,116.00,95.00,738.00,,,,,,\n2015,5,6,\"MQ\",\"2932\",\"ORD\",\"HPN\",-3.00,-27.00,0.00,\"\",0.00,118.00,100.00,738.00,,,,,,\n2015,5,1,\"MQ\",\"2967\",\"ORD\",\"ROC\",-3.00,-8.00,0.00,\"\",0.00,102.00,78.00,528.00,,,,,,\n2015,5,3,\"MQ\",\"2967\",\"ORD\",\"ROC\",-2.00,-8.00,0.00,\"\",0.00,101.00,78.00,528.00,,,,,,\n2015,5,4,\"MQ\",\"2967\",\"ORD\",\"ROC\",43.00,30.00,0.00,\"\",0.00,94.00,74.00,528.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"MQ\",\"2967\",\"ORD\",\"ROC\",151.00,143.00,0.00,\"\",0.00,99.00,68.00,528.00,63.00,0.00,0.00,0.00,80.00,\n2015,5,6,\"MQ\",\"2967\",\"ORD\",\"ROC\",-2.00,-13.00,0.00,\"\",0.00,96.00,73.00,528.00,,,,,,\n2015,5,1,\"MQ\",\"2967\",\"ROC\",\"ORD\",-6.00,-25.00,0.00,\"\",0.00,101.00,76.00,528.00,,,,,,\n2015,5,2,\"MQ\",\"2967\",\"ROC\",\"ORD\",-10.00,-30.00,0.00,\"\",0.00,100.00,79.00,528.00,,,,,,\n2015,5,3,\"MQ\",\"2967\",\"ROC\",\"ORD\",-11.00,-28.00,0.00,\"\",0.00,103.00,80.00,528.00,,,,,,\n2015,5,4,\"MQ\",\"2967\",\"ROC\",\"ORD\",32.00,14.00,0.00,\"\",0.00,102.00,81.00,528.00,,,,,,\n2015,5,5,\"MQ\",\"2967\",\"ROC\",\"ORD\",138.00,141.00,0.00,\"\",0.00,123.00,95.00,528.00,0.00,0.00,3.00,0.00,138.00,\n2015,5,6,\"MQ\",\"2967\",\"ROC\",\"ORD\",-8.00,-12.00,0.00,\"\",0.00,116.00,80.00,528.00,,,,,,\n2015,5,1,\"MQ\",\"2984\",\"BUF\",\"ORD\",-18.00,-27.00,0.00,\"\",0.00,103.00,68.00,473.00,,,,,,\n2015,5,2,\"MQ\",\"2984\",\"BUF\",\"ORD\",0.00,-17.00,0.00,\"\",0.00,95.00,76.00,473.00,,,,,,\n2015,5,3,\"MQ\",\"2984\",\"BUF\",\"ORD\",-18.00,-22.00,0.00,\"\",0.00,108.00,69.00,473.00,,,,,,\n2015,5,4,\"MQ\",\"2984\",\"BUF\",\"ORD\",43.00,29.00,0.00,\"\",0.00,98.00,75.00,473.00,1.00,0.00,0.00,0.00,28.00,\n2015,5,5,\"MQ\",\"2984\",\"BUF\",\"ORD\",-11.00,,0.00,\"\",1.00,,,473.00,,,,,,\n2015,5,6,\"MQ\",\"2984\",\"BUF\",\"ORD\",-6.00,-17.00,0.00,\"\",0.00,101.00,79.00,473.00,,,,,,\n2015,5,1,\"MQ\",\"2984\",\"ORD\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,91.00,73.00,473.00,,,,,,\n2015,5,2,\"MQ\",\"2984\",\"ORD\",\"BUF\",-3.00,-13.00,0.00,\"\",0.00,89.00,82.00,473.00,,,,,,\n2015,5,3,\"MQ\",\"2984\",\"ORD\",\"BUF\",-4.00,-23.00,0.00,\"\",0.00,80.00,68.00,473.00,,,,,,\n2015,5,4,\"MQ\",\"2984\",\"ORD\",\"BUF\",75.00,54.00,0.00,\"\",0.00,78.00,66.00,473.00,54.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"MQ\",\"2984\",\"ORD\",\"BUF\",11.00,-1.00,0.00,\"\",0.00,87.00,64.00,473.00,,,,,,\n2015,5,6,\"MQ\",\"2984\",\"ORD\",\"BUF\",19.00,6.00,0.00,\"\",0.00,86.00,66.00,473.00,,,,,,\n2015,5,1,\"MQ\",\"2989\",\"LGA\",\"STL\",-4.00,-21.00,0.00,\"\",0.00,141.00,114.00,888.00,,,,,,\n2015,5,2,\"MQ\",\"2989\",\"LGA\",\"STL\",-8.00,-43.00,0.00,\"\",0.00,133.00,116.00,888.00,,,,,,\n2015,5,3,\"MQ\",\"2989\",\"LGA\",\"STL\",-5.00,-11.00,0.00,\"\",0.00,152.00,122.00,888.00,,,,,,\n2015,5,4,\"MQ\",\"2989\",\"LGA\",\"STL\",-4.00,-16.00,0.00,\"\",0.00,146.00,125.00,888.00,,,,,,\n2015,5,5,\"MQ\",\"2989\",\"LGA\",\"STL\",124.00,109.00,0.00,\"\",0.00,143.00,119.00,888.00,24.00,0.00,0.00,0.00,85.00,\n2015,5,6,\"MQ\",\"2989\",\"LGA\",\"STL\",19.00,49.00,0.00,\"\",0.00,188.00,131.00,888.00,19.00,0.00,30.00,0.00,0.00,\n2015,5,1,\"MQ\",\"2989\",\"STL\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,142.00,123.00,888.00,,,,,,\n2015,5,2,\"MQ\",\"2989\",\"STL\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,136.00,120.00,888.00,,,,,,\n2015,5,3,\"MQ\",\"2989\",\"STL\",\"LGA\",-2.00,-24.00,0.00,\"\",0.00,127.00,115.00,888.00,,,,,,\n2015,5,4,\"MQ\",\"2989\",\"STL\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,142.00,124.00,888.00,,,,,,\n2015,5,5,\"MQ\",\"2989\",\"STL\",\"LGA\",95.00,69.00,0.00,\"\",0.00,123.00,113.00,888.00,0.00,0.00,0.00,0.00,69.00,\n2015,5,6,\"MQ\",\"2989\",\"STL\",\"LGA\",38.00,33.00,0.00,\"\",0.00,144.00,116.00,888.00,1.00,0.00,0.00,0.00,32.00,\n2015,5,7,\"MQ\",\"3024\",\"HPN\",\"ORD\",-7.00,-39.00,0.00,\"\",0.00,124.00,110.00,738.00,,,,,,\n2015,5,8,\"MQ\",\"3024\",\"HPN\",\"ORD\",11.00,3.00,0.00,\"\",0.00,148.00,110.00,738.00,,,,,,\n2015,5,9,\"MQ\",\"3024\",\"HPN\",\"ORD\",-16.00,-31.00,0.00,\"\",0.00,141.00,116.00,738.00,,,,,,\n2015,5,10,\"MQ\",\"3024\",\"HPN\",\"ORD\",-1.00,-8.00,0.00,\"\",0.00,149.00,115.00,738.00,,,,,,\n2015,5,11,\"MQ\",\"3024\",\"HPN\",\"ORD\",15.00,-11.00,0.00,\"\",0.00,130.00,114.00,738.00,,,,,,\n2015,5,12,\"MQ\",\"3024\",\"HPN\",\"ORD\",-4.00,-12.00,0.00,\"\",0.00,148.00,131.00,738.00,,,,,,\n2015,5,13,\"MQ\",\"3024\",\"HPN\",\"ORD\",-9.00,-27.00,0.00,\"\",0.00,138.00,119.00,738.00,,,,,,\n2015,5,14,\"MQ\",\"3024\",\"HPN\",\"ORD\",-9.00,-20.00,0.00,\"\",0.00,145.00,115.00,738.00,,,,,,\n2015,5,15,\"MQ\",\"3024\",\"HPN\",\"ORD\",-7.00,-20.00,0.00,\"\",0.00,143.00,120.00,738.00,,,,,,\n2015,5,16,\"MQ\",\"3024\",\"HPN\",\"ORD\",10.00,-1.00,0.00,\"\",0.00,145.00,118.00,738.00,,,,,,\n2015,5,17,\"MQ\",\"3024\",\"HPN\",\"ORD\",-4.00,-24.00,0.00,\"\",0.00,136.00,115.00,738.00,,,,,,\n2015,5,18,\"MQ\",\"3024\",\"HPN\",\"ORD\",6.00,-22.00,0.00,\"\",0.00,128.00,109.00,738.00,,,,,,\n2015,5,19,\"MQ\",\"3024\",\"HPN\",\"ORD\",-10.00,-24.00,0.00,\"\",0.00,142.00,115.00,738.00,,,,,,\n2015,5,20,\"MQ\",\"3024\",\"HPN\",\"ORD\",-10.00,-20.00,0.00,\"\",0.00,146.00,126.00,738.00,,,,,,\n2015,5,21,\"MQ\",\"3024\",\"HPN\",\"ORD\",-8.00,-21.00,0.00,\"\",0.00,143.00,121.00,738.00,,,,,,\n2015,5,22,\"MQ\",\"3024\",\"HPN\",\"ORD\",-5.00,-10.00,0.00,\"\",0.00,151.00,126.00,738.00,,,,,,\n2015,5,23,\"MQ\",\"3024\",\"HPN\",\"ORD\",-4.00,-22.00,0.00,\"\",0.00,138.00,121.00,738.00,,,,,,\n2015,5,25,\"MQ\",\"3024\",\"HPN\",\"ORD\",-8.00,-27.00,0.00,\"\",0.00,137.00,113.00,738.00,,,,,,\n2015,5,26,\"MQ\",\"3024\",\"HPN\",\"ORD\",14.00,-10.00,0.00,\"\",0.00,132.00,115.00,738.00,,,,,,\n2015,5,27,\"MQ\",\"3024\",\"HPN\",\"ORD\",40.00,39.00,0.00,\"\",0.00,155.00,132.00,738.00,0.00,39.00,0.00,0.00,0.00,\n2015,5,28,\"MQ\",\"3024\",\"HPN\",\"ORD\",23.00,8.00,0.00,\"\",0.00,141.00,114.00,738.00,,,,,,\n2015,5,29,\"MQ\",\"3024\",\"HPN\",\"ORD\",-3.00,-29.00,0.00,\"\",0.00,130.00,113.00,738.00,,,,,,\n2015,5,30,\"MQ\",\"3024\",\"HPN\",\"ORD\",-5.00,-9.00,0.00,\"\",0.00,152.00,123.00,738.00,,,,,,\n2015,5,31,\"MQ\",\"3024\",\"HPN\",\"ORD\",-4.00,-6.00,0.00,\"\",0.00,154.00,120.00,738.00,,,,,,\n2015,5,7,\"MQ\",\"3024\",\"ORD\",\"HPN\",-3.00,-27.00,0.00,\"\",0.00,113.00,102.00,738.00,,,,,,\n2015,5,8,\"MQ\",\"3024\",\"ORD\",\"HPN\",13.00,22.00,0.00,\"\",0.00,146.00,101.00,738.00,13.00,0.00,9.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3024\",\"ORD\",\"HPN\",-4.00,-14.00,0.00,\"\",0.00,127.00,108.00,738.00,,,,,,\n2015,5,10,\"MQ\",\"3024\",\"ORD\",\"HPN\",4.00,4.00,0.00,\"\",0.00,137.00,101.00,738.00,,,,,,\n2015,5,11,\"MQ\",\"3024\",\"ORD\",\"HPN\",-2.00,-11.00,0.00,\"\",0.00,128.00,101.00,738.00,,,,,,\n2015,5,12,\"MQ\",\"3024\",\"ORD\",\"HPN\",-1.00,-28.00,0.00,\"\",0.00,110.00,97.00,738.00,,,,,,\n2015,5,13,\"MQ\",\"3024\",\"ORD\",\"HPN\",-5.00,-24.00,0.00,\"\",0.00,118.00,97.00,738.00,,,,,,\n2015,5,14,\"MQ\",\"3024\",\"ORD\",\"HPN\",-4.00,-12.00,0.00,\"\",0.00,129.00,99.00,738.00,,,,,,\n2015,5,15,\"MQ\",\"3024\",\"ORD\",\"HPN\",-4.00,-11.00,0.00,\"\",0.00,130.00,101.00,738.00,,,,,,\n2015,5,16,\"MQ\",\"3024\",\"ORD\",\"HPN\",9.00,3.00,0.00,\"\",0.00,131.00,96.00,738.00,,,,,,\n2015,5,17,\"MQ\",\"3024\",\"ORD\",\"HPN\",-2.00,-9.00,0.00,\"\",0.00,130.00,102.00,738.00,,,,,,\n2015,5,18,\"MQ\",\"3024\",\"ORD\",\"HPN\",-5.00,-17.00,0.00,\"\",0.00,125.00,103.00,738.00,,,,,,\n2015,5,19,\"MQ\",\"3024\",\"ORD\",\"HPN\",2.00,-19.00,0.00,\"\",0.00,116.00,96.00,738.00,,,,,,\n2015,5,20,\"MQ\",\"3024\",\"ORD\",\"HPN\",-5.00,-21.00,0.00,\"\",0.00,121.00,96.00,738.00,,,,,,\n2015,5,21,\"MQ\",\"3024\",\"ORD\",\"HPN\",-1.00,-9.00,0.00,\"\",0.00,129.00,92.00,738.00,,,,,,\n2015,5,22,\"MQ\",\"3024\",\"ORD\",\"HPN\",-1.00,-15.00,0.00,\"\",0.00,123.00,101.00,738.00,,,,,,\n2015,5,23,\"MQ\",\"3024\",\"ORD\",\"HPN\",-1.00,-17.00,0.00,\"\",0.00,121.00,100.00,738.00,,,,,,\n2015,5,25,\"MQ\",\"3024\",\"ORD\",\"HPN\",-3.00,-1.00,0.00,\"\",0.00,139.00,101.00,738.00,,,,,,\n2015,5,26,\"MQ\",\"3024\",\"ORD\",\"HPN\",-1.00,-2.00,0.00,\"\",0.00,136.00,98.00,738.00,,,,,,\n2015,5,27,\"MQ\",\"3024\",\"ORD\",\"HPN\",16.00,-3.00,0.00,\"\",0.00,118.00,99.00,738.00,,,,,,\n2015,5,28,\"MQ\",\"3024\",\"ORD\",\"HPN\",50.00,28.00,0.00,\"\",0.00,115.00,97.00,738.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3024\",\"ORD\",\"HPN\",-3.00,-15.00,0.00,\"\",0.00,125.00,98.00,738.00,,,,,,\n2015,5,30,\"MQ\",\"3024\",\"ORD\",\"HPN\",-3.00,-16.00,0.00,\"\",0.00,124.00,100.00,738.00,,,,,,\n2015,5,31,\"MQ\",\"3024\",\"ORD\",\"HPN\",0.00,-2.00,0.00,\"\",0.00,135.00,102.00,738.00,,,,,,\n2015,5,1,\"MQ\",\"3026\",\"BWI\",\"JFK\",-3.00,13.00,0.00,\"\",0.00,83.00,43.00,184.00,,,,,,\n2015,5,2,\"MQ\",\"3026\",\"BWI\",\"JFK\",-8.00,-3.00,0.00,\"\",0.00,72.00,46.00,184.00,,,,,,\n2015,5,3,\"MQ\",\"3026\",\"BWI\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,60.00,39.00,184.00,,,,,,\n2015,5,4,\"MQ\",\"3026\",\"BWI\",\"JFK\",-8.00,-20.00,0.00,\"\",0.00,55.00,39.00,184.00,,,,,,\n2015,5,5,\"MQ\",\"3026\",\"BWI\",\"JFK\",9.00,0.00,0.00,\"\",0.00,58.00,41.00,184.00,,,,,,\n2015,5,6,\"MQ\",\"3026\",\"BWI\",\"JFK\",9.00,-3.00,0.00,\"\",0.00,55.00,39.00,184.00,,,,,,\n2015,5,7,\"MQ\",\"3026\",\"BWI\",\"JFK\",-8.00,-8.00,0.00,\"\",0.00,67.00,41.00,184.00,,,,,,\n2015,5,8,\"MQ\",\"3026\",\"BWI\",\"JFK\",-7.00,43.00,0.00,\"\",0.00,117.00,38.00,184.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3026\",\"BWI\",\"JFK\",-5.00,36.00,0.00,\"\",0.00,108.00,43.00,184.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,10,\"MQ\",\"3026\",\"BWI\",\"JFK\",-7.00,13.00,0.00,\"\",0.00,87.00,39.00,184.00,,,,,,\n2015,5,11,\"MQ\",\"3026\",\"BWI\",\"JFK\",13.00,27.00,0.00,\"\",0.00,81.00,59.00,184.00,13.00,0.00,14.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3026\",\"BWI\",\"JFK\",-4.00,4.00,0.00,\"\",0.00,75.00,45.00,184.00,,,,,,\n2015,5,13,\"MQ\",\"3026\",\"BWI\",\"JFK\",-10.00,-16.00,0.00,\"\",0.00,61.00,40.00,184.00,,,,,,\n2015,5,14,\"MQ\",\"3026\",\"BWI\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,60.00,41.00,184.00,,,,,,\n2015,5,15,\"MQ\",\"3026\",\"BWI\",\"JFK\",2.00,-6.00,0.00,\"\",0.00,59.00,39.00,184.00,,,,,,\n2015,5,16,\"MQ\",\"3026\",\"BWI\",\"JFK\",-5.00,3.00,0.00,\"\",0.00,75.00,43.00,184.00,,,,,,\n2015,5,17,\"MQ\",\"3026\",\"BWI\",\"JFK\",-14.00,-22.00,0.00,\"\",0.00,59.00,41.00,184.00,,,,,,\n2015,5,18,\"MQ\",\"3026\",\"BWI\",\"JFK\",155.00,147.00,0.00,\"\",0.00,59.00,40.00,184.00,0.00,0.00,147.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3026\",\"BWI\",\"JFK\",-8.00,-7.00,0.00,\"\",0.00,68.00,38.00,184.00,,,,,,\n2015,5,20,\"MQ\",\"3026\",\"BWI\",\"JFK\",-6.00,2.00,0.00,\"\",0.00,75.00,42.00,184.00,,,,,,\n2015,5,21,\"MQ\",\"3026\",\"BWI\",\"JFK\",46.00,39.00,0.00,\"\",0.00,60.00,38.00,184.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3026\",\"BWI\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,59.00,39.00,184.00,,,,,,\n2015,5,23,\"MQ\",\"3026\",\"BWI\",\"JFK\",-9.00,-14.00,0.00,\"\",0.00,62.00,40.00,184.00,,,,,,\n2015,5,24,\"MQ\",\"3026\",\"BWI\",\"JFK\",-3.00,3.00,0.00,\"\",0.00,73.00,40.00,184.00,,,,,,\n2015,5,25,\"MQ\",\"3026\",\"BWI\",\"JFK\",-17.00,-4.00,0.00,\"\",0.00,80.00,43.00,184.00,,,,,,\n2015,5,26,\"MQ\",\"3026\",\"BWI\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,62.00,43.00,184.00,,,,,,\n2015,5,27,\"MQ\",\"3026\",\"BWI\",\"JFK\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,28,\"MQ\",\"3026\",\"BWI\",\"JFK\",-12.00,-21.00,0.00,\"\",0.00,58.00,39.00,184.00,,,,,,\n2015,5,29,\"MQ\",\"3026\",\"BWI\",\"JFK\",-5.00,3.00,0.00,\"\",0.00,75.00,42.00,184.00,,,,,,\n2015,5,30,\"MQ\",\"3026\",\"BWI\",\"JFK\",-6.00,3.00,0.00,\"\",0.00,76.00,39.00,184.00,,,,,,\n2015,5,31,\"MQ\",\"3026\",\"BWI\",\"JFK\",-8.00,1.00,0.00,\"\",0.00,76.00,39.00,184.00,,,,,,\n2015,5,1,\"MQ\",\"3091\",\"JFK\",\"CVG\",-5.00,-41.00,0.00,\"\",0.00,103.00,86.00,589.00,,,,,,\n2015,5,2,\"MQ\",\"3091\",\"JFK\",\"CVG\",-6.00,-26.00,0.00,\"\",0.00,119.00,90.00,589.00,,,,,,\n2015,5,3,\"MQ\",\"3091\",\"JFK\",\"CVG\",-7.00,-34.00,0.00,\"\",0.00,112.00,89.00,589.00,,,,,,\n2015,5,4,\"MQ\",\"3091\",\"JFK\",\"CVG\",-6.00,-28.00,0.00,\"\",0.00,117.00,88.00,589.00,,,,,,\n2015,5,5,\"MQ\",\"3091\",\"JFK\",\"CVG\",24.00,6.00,0.00,\"\",0.00,121.00,89.00,589.00,,,,,,\n2015,5,6,\"MQ\",\"3091\",\"JFK\",\"CVG\",15.00,-5.00,0.00,\"\",0.00,119.00,92.00,589.00,,,,,,\n2015,5,7,\"MQ\",\"3091\",\"JFK\",\"CVG\",-8.00,-35.00,0.00,\"\",0.00,112.00,92.00,589.00,,,,,,\n2015,5,8,\"MQ\",\"3091\",\"JFK\",\"CVG\",-3.00,-12.00,0.00,\"\",0.00,130.00,89.00,589.00,,,,,,\n2015,5,9,\"MQ\",\"3091\",\"JFK\",\"CVG\",-1.00,-17.00,0.00,\"\",0.00,123.00,87.00,589.00,,,,,,\n2015,5,10,\"MQ\",\"3091\",\"JFK\",\"CVG\",-1.00,-9.00,0.00,\"\",0.00,131.00,92.00,589.00,,,,,,\n2015,5,11,\"MQ\",\"3091\",\"JFK\",\"CVG\",-4.00,0.00,0.00,\"\",0.00,143.00,98.00,589.00,,,,,,\n2015,5,12,\"MQ\",\"3091\",\"JFK\",\"CVG\",45.00,26.00,0.00,\"\",0.00,120.00,100.00,589.00,2.00,0.00,0.00,0.00,24.00,\n2015,5,13,\"MQ\",\"3091\",\"JFK\",\"CVG\",-6.00,-31.00,0.00,\"\",0.00,114.00,93.00,589.00,,,,,,\n2015,5,14,\"MQ\",\"3091\",\"JFK\",\"CVG\",-1.00,-5.00,0.00,\"\",0.00,135.00,93.00,589.00,,,,,,\n2015,5,15,\"MQ\",\"3091\",\"JFK\",\"CVG\",-3.00,-4.00,0.00,\"\",0.00,138.00,90.00,589.00,,,,,,\n2015,5,16,\"MQ\",\"3091\",\"JFK\",\"CVG\",-2.00,-4.00,0.00,\"\",0.00,137.00,100.00,589.00,,,,,,\n2015,5,17,\"MQ\",\"3091\",\"JFK\",\"CVG\",16.00,-2.00,0.00,\"\",0.00,121.00,92.00,589.00,,,,,,\n2015,5,18,\"MQ\",\"3091\",\"JFK\",\"CVG\",,,1.00,\"C\",0.00,,,589.00,,,,,,\n2015,5,19,\"MQ\",\"3091\",\"JFK\",\"CVG\",16.00,4.00,0.00,\"\",0.00,127.00,88.00,589.00,,,,,,\n2015,5,20,\"MQ\",\"3091\",\"JFK\",\"CVG\",-2.00,-8.00,0.00,\"\",0.00,133.00,88.00,589.00,,,,,,\n2015,5,21,\"MQ\",\"3091\",\"JFK\",\"CVG\",-5.00,10.00,0.00,\"\",0.00,154.00,98.00,589.00,,,,,,\n2015,5,22,\"MQ\",\"3091\",\"JFK\",\"CVG\",-2.00,10.00,0.00,\"\",0.00,151.00,104.00,589.00,,,,,,\n2015,5,23,\"MQ\",\"3091\",\"JFK\",\"CVG\",-2.00,-8.00,0.00,\"\",0.00,133.00,96.00,589.00,,,,,,\n2015,5,24,\"MQ\",\"3091\",\"JFK\",\"CVG\",-10.00,-32.00,0.00,\"\",0.00,117.00,91.00,589.00,,,,,,\n2015,5,25,\"MQ\",\"3091\",\"JFK\",\"CVG\",-9.00,-28.00,0.00,\"\",0.00,120.00,94.00,589.00,,,,,,\n2015,5,26,\"MQ\",\"3091\",\"JFK\",\"CVG\",-8.00,-3.00,0.00,\"\",0.00,144.00,104.00,589.00,,,,,,\n2015,5,27,\"MQ\",\"3091\",\"JFK\",\"CVG\",,,1.00,\"C\",0.00,,,589.00,,,,,,\n2015,5,28,\"MQ\",\"3091\",\"JFK\",\"CVG\",-8.00,-34.00,0.00,\"\",0.00,113.00,92.00,589.00,,,,,,\n2015,5,29,\"MQ\",\"3091\",\"JFK\",\"CVG\",-6.00,-23.00,0.00,\"\",0.00,122.00,94.00,589.00,,,,,,\n2015,5,30,\"MQ\",\"3091\",\"JFK\",\"CVG\",-9.00,-4.00,0.00,\"\",0.00,144.00,106.00,589.00,,,,,,\n2015,5,31,\"MQ\",\"3091\",\"JFK\",\"CVG\",-8.00,8.00,0.00,\"\",0.00,155.00,98.00,589.00,,,,,,\n2015,5,1,\"MQ\",\"3092\",\"BNA\",\"JFK\",16.00,4.00,0.00,\"\",0.00,135.00,116.00,765.00,,,,,,\n2015,5,2,\"MQ\",\"3092\",\"BNA\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,141.00,121.00,765.00,,,,,,\n2015,5,3,\"MQ\",\"3092\",\"BNA\",\"JFK\",-3.00,-2.00,0.00,\"\",0.00,148.00,128.00,765.00,,,,,,\n2015,5,4,\"MQ\",\"3092\",\"BNA\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,145.00,129.00,765.00,,,,,,\n2015,5,5,\"MQ\",\"3092\",\"BNA\",\"JFK\",6.00,3.00,0.00,\"\",0.00,144.00,130.00,765.00,,,,,,\n2015,5,6,\"MQ\",\"3092\",\"BNA\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,154.00,127.00,765.00,,,,,,\n2015,5,7,\"MQ\",\"3092\",\"BNA\",\"JFK\",-4.00,10.00,0.00,\"\",0.00,161.00,129.00,765.00,,,,,,\n2015,5,8,\"MQ\",\"3092\",\"BNA\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,135.00,121.00,765.00,,,,,,\n2015,5,9,\"MQ\",\"3092\",\"BNA\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,135.00,119.00,765.00,,,,,,\n2015,5,10,\"MQ\",\"3092\",\"BNA\",\"JFK\",3.00,0.00,0.00,\"\",0.00,144.00,125.00,765.00,,,,,,\n2015,5,11,\"MQ\",\"3092\",\"BNA\",\"JFK\",1.00,7.00,0.00,\"\",0.00,153.00,124.00,765.00,,,,,,\n2015,5,12,\"MQ\",\"3092\",\"BNA\",\"JFK\",48.00,69.00,0.00,\"\",0.00,168.00,126.00,765.00,0.00,0.00,69.00,0.00,0.00,\n2015,5,13,\"MQ\",\"3092\",\"BNA\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,139.00,119.00,765.00,,,,,,\n2015,5,14,\"MQ\",\"3092\",\"BNA\",\"JFK\",-1.00,-7.00,0.00,\"\",0.00,141.00,122.00,765.00,,,,,,\n2015,5,15,\"MQ\",\"3092\",\"BNA\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,136.00,116.00,765.00,,,,,,\n2015,5,16,\"MQ\",\"3092\",\"BNA\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,146.00,128.00,765.00,,,,,,\n2015,5,17,\"MQ\",\"3092\",\"BNA\",\"JFK\",1.00,5.00,0.00,\"\",0.00,151.00,127.00,765.00,,,,,,\n2015,5,18,\"MQ\",\"3092\",\"BNA\",\"JFK\",110.00,120.00,0.00,\"\",0.00,157.00,122.00,765.00,0.00,0.00,120.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3092\",\"BNA\",\"JFK\",0.00,3.00,0.00,\"\",0.00,150.00,126.00,765.00,,,,,,\n2015,5,20,\"MQ\",\"3092\",\"BNA\",\"JFK\",-3.00,-3.00,0.00,\"\",0.00,147.00,128.00,765.00,,,,,,\n2015,5,21,\"MQ\",\"3092\",\"BNA\",\"JFK\",146.00,125.00,0.00,\"\",0.00,126.00,111.00,765.00,125.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3092\",\"BNA\",\"JFK\",-7.00,-10.00,0.00,\"\",0.00,144.00,116.00,765.00,,,,,,\n2015,5,23,\"MQ\",\"3092\",\"BNA\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,140.00,119.00,765.00,,,,,,\n2015,5,24,\"MQ\",\"3092\",\"BNA\",\"JFK\",-11.00,-19.00,0.00,\"\",0.00,139.00,118.00,765.00,,,,,,\n2015,5,25,\"MQ\",\"3092\",\"BNA\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,137.00,125.00,765.00,,,,,,\n2015,5,26,\"MQ\",\"3092\",\"BNA\",\"JFK\",32.00,17.00,0.00,\"\",0.00,132.00,116.00,765.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,27,\"MQ\",\"3092\",\"BNA\",\"JFK\",,,1.00,\"C\",0.00,,,765.00,,,,,,\n2015,5,28,\"MQ\",\"3092\",\"BNA\",\"JFK\",25.00,15.00,0.00,\"\",0.00,137.00,124.00,765.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,29,\"MQ\",\"3092\",\"BNA\",\"JFK\",51.00,45.00,0.00,\"\",0.00,141.00,122.00,765.00,14.00,0.00,0.00,0.00,31.00,\n2015,5,30,\"MQ\",\"3092\",\"BNA\",\"JFK\",11.00,2.00,0.00,\"\",0.00,138.00,124.00,765.00,,,,,,\n2015,5,31,\"MQ\",\"3092\",\"BNA\",\"JFK\",-2.00,42.00,0.00,\"\",0.00,191.00,126.00,765.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3076\",\"BNA\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,124.00,106.00,764.00,,,,,,\n2015,5,8,\"MQ\",\"3076\",\"BNA\",\"LGA\",-6.00,6.00,0.00,\"\",0.00,143.00,121.00,764.00,,,,,,\n2015,5,11,\"MQ\",\"3076\",\"BNA\",\"LGA\",5.00,-3.00,0.00,\"\",0.00,123.00,103.00,764.00,,,,,,\n2015,5,12,\"MQ\",\"3076\",\"BNA\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,118.00,98.00,764.00,,,,,,\n2015,5,13,\"MQ\",\"3076\",\"BNA\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,133.00,95.00,764.00,,,,,,\n2015,5,14,\"MQ\",\"3076\",\"BNA\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,120.00,103.00,764.00,,,,,,\n2015,5,15,\"MQ\",\"3076\",\"BNA\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,122.00,104.00,764.00,,,,,,\n2015,5,18,\"MQ\",\"3076\",\"BNA\",\"LGA\",26.00,79.00,0.00,\"\",0.00,184.00,163.00,764.00,0.00,0.00,79.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3076\",\"BNA\",\"LGA\",168.00,158.00,0.00,\"\",0.00,121.00,103.00,764.00,0.00,0.00,158.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3076\",\"BNA\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,118.00,100.00,764.00,,,,,,\n2015,5,21,\"MQ\",\"3076\",\"BNA\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,119.00,96.00,764.00,,,,,,\n2015,5,22,\"MQ\",\"3076\",\"BNA\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,123.00,93.00,764.00,,,,,,\n2015,5,25,\"MQ\",\"3076\",\"BNA\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,116.00,100.00,764.00,,,,,,\n2015,5,26,\"MQ\",\"3076\",\"BNA\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,122.00,106.00,764.00,,,,,,\n2015,5,27,\"MQ\",\"3076\",\"BNA\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,123.00,108.00,764.00,,,,,,\n2015,5,28,\"MQ\",\"3076\",\"BNA\",\"LGA\",-4.00,42.00,0.00,\"\",0.00,177.00,110.00,764.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3076\",\"BNA\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,134.00,102.00,764.00,,,,,,\n2015,5,1,\"MQ\",\"3078\",\"ORD\",\"SYR\",2.00,-17.00,0.00,\"\",0.00,103.00,89.00,607.00,,,,,,\n2015,5,3,\"MQ\",\"3078\",\"ORD\",\"SYR\",3.00,-7.00,0.00,\"\",0.00,107.00,80.00,607.00,,,,,,\n2015,5,4,\"MQ\",\"3078\",\"ORD\",\"SYR\",-7.00,-21.00,0.00,\"\",0.00,108.00,77.00,607.00,,,,,,\n2015,5,5,\"MQ\",\"3078\",\"ORD\",\"SYR\",30.00,13.00,0.00,\"\",0.00,105.00,80.00,607.00,,,,,,\n2015,5,6,\"MQ\",\"3078\",\"ORD\",\"SYR\",-4.00,-18.00,0.00,\"\",0.00,108.00,81.00,607.00,,,,,,\n2015,5,7,\"MQ\",\"3078\",\"ORD\",\"SYR\",44.00,34.00,0.00,\"\",0.00,112.00,84.00,607.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,8,\"MQ\",\"3078\",\"ORD\",\"SYR\",,,1.00,\"C\",0.00,,,607.00,,,,,,\n2015,5,9,\"MQ\",\"3078\",\"ORD\",\"SYR\",13.00,-13.00,0.00,\"\",0.00,96.00,81.00,607.00,,,,,,\n2015,5,10,\"MQ\",\"3078\",\"ORD\",\"SYR\",-5.00,1.00,0.00,\"\",0.00,123.00,82.00,607.00,,,,,,\n2015,5,11,\"MQ\",\"3078\",\"ORD\",\"SYR\",0.00,-20.00,0.00,\"\",0.00,102.00,80.00,607.00,,,,,,\n2015,5,12,\"MQ\",\"3078\",\"ORD\",\"SYR\",-2.00,-26.00,0.00,\"\",0.00,98.00,78.00,607.00,,,,,,\n2015,5,13,\"MQ\",\"3078\",\"ORD\",\"SYR\",-1.00,-22.00,0.00,\"\",0.00,101.00,81.00,607.00,,,,,,\n2015,5,14,\"MQ\",\"3078\",\"ORD\",\"SYR\",-2.00,-4.00,0.00,\"\",0.00,120.00,80.00,607.00,,,,,,\n2015,5,15,\"MQ\",\"3078\",\"ORD\",\"SYR\",-3.00,-14.00,0.00,\"\",0.00,111.00,82.00,607.00,,,,,,\n2015,5,16,\"MQ\",\"3078\",\"ORD\",\"SYR\",-3.00,-18.00,0.00,\"\",0.00,107.00,80.00,607.00,,,,,,\n2015,5,17,\"MQ\",\"3078\",\"ORD\",\"SYR\",-3.00,-14.00,0.00,\"\",0.00,106.00,79.00,607.00,,,,,,\n2015,5,18,\"MQ\",\"3078\",\"ORD\",\"SYR\",-4.00,36.00,0.00,\"\",0.00,162.00,92.00,607.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3078\",\"ORD\",\"SYR\",53.00,27.00,0.00,\"\",0.00,96.00,78.00,607.00,7.00,0.00,0.00,0.00,20.00,\n2015,5,20,\"MQ\",\"3078\",\"ORD\",\"SYR\",-3.00,-19.00,0.00,\"\",0.00,106.00,74.00,607.00,,,,,,\n2015,5,21,\"MQ\",\"3078\",\"ORD\",\"SYR\",-7.00,-30.00,0.00,\"\",0.00,99.00,77.00,607.00,,,,,,\n2015,5,22,\"MQ\",\"3078\",\"ORD\",\"SYR\",41.00,24.00,0.00,\"\",0.00,105.00,78.00,607.00,3.00,0.00,0.00,0.00,21.00,\n2015,5,23,\"MQ\",\"3078\",\"ORD\",\"SYR\",-4.00,-28.00,0.00,\"\",0.00,98.00,78.00,607.00,,,,,,\n2015,5,24,\"MQ\",\"3078\",\"ORD\",\"SYR\",54.00,38.00,0.00,\"\",0.00,101.00,76.00,607.00,38.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"MQ\",\"3078\",\"ORD\",\"SYR\",-2.00,-11.00,0.00,\"\",0.00,113.00,80.00,607.00,,,,,,\n2015,5,26,\"MQ\",\"3078\",\"ORD\",\"SYR\",30.00,44.00,0.00,\"\",0.00,136.00,93.00,607.00,30.00,0.00,14.00,0.00,0.00,\n2015,5,27,\"MQ\",\"3078\",\"ORD\",\"SYR\",0.00,7.00,0.00,\"\",0.00,129.00,79.00,607.00,,,,,,\n2015,5,28,\"MQ\",\"3078\",\"ORD\",\"SYR\",3.00,-7.00,0.00,\"\",0.00,112.00,80.00,607.00,,,,,,\n2015,5,29,\"MQ\",\"3078\",\"ORD\",\"SYR\",28.00,30.00,0.00,\"\",0.00,124.00,81.00,607.00,28.00,0.00,2.00,0.00,0.00,\n2015,5,30,\"MQ\",\"3078\",\"ORD\",\"SYR\",0.00,-15.00,0.00,\"\",0.00,107.00,78.00,607.00,,,,,,\n2015,5,31,\"MQ\",\"3078\",\"ORD\",\"SYR\",-5.00,1.00,0.00,\"\",0.00,123.00,79.00,607.00,,,,,,\n2015,5,1,\"MQ\",\"3082\",\"STL\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,135.00,119.00,888.00,,,,,,\n2015,5,2,\"MQ\",\"3082\",\"STL\",\"LGA\",,,1.00,\"A\",0.00,,,888.00,,,,,,\n2015,5,3,\"MQ\",\"3082\",\"STL\",\"LGA\",-3.00,0.00,0.00,\"\",0.00,138.00,120.00,888.00,,,,,,\n2015,5,4,\"MQ\",\"3082\",\"STL\",\"LGA\",-8.00,-6.00,0.00,\"\",0.00,137.00,120.00,888.00,,,,,,\n2015,5,5,\"MQ\",\"3082\",\"STL\",\"LGA\",-5.00,7.00,0.00,\"\",0.00,147.00,126.00,888.00,,,,,,\n2015,5,6,\"MQ\",\"3082\",\"STL\",\"LGA\",-8.00,5.00,0.00,\"\",0.00,148.00,127.00,888.00,,,,,,\n2015,5,1,\"MQ\",\"3154\",\"ORD\",\"ROC\",129.00,112.00,0.00,\"\",0.00,96.00,74.00,528.00,112.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"MQ\",\"3154\",\"ORD\",\"ROC\",-6.00,-31.00,0.00,\"\",0.00,88.00,73.00,528.00,,,,,,\n2015,5,3,\"MQ\",\"3154\",\"ORD\",\"ROC\",-6.00,-13.00,0.00,\"\",0.00,106.00,75.00,528.00,,,,,,\n2015,5,4,\"MQ\",\"3154\",\"ORD\",\"ROC\",-7.00,-17.00,0.00,\"\",0.00,103.00,74.00,528.00,,,,,,\n2015,5,5,\"MQ\",\"3154\",\"ORD\",\"ROC\",-5.00,-31.00,0.00,\"\",0.00,87.00,70.00,528.00,,,,,,\n2015,5,6,\"MQ\",\"3154\",\"ORD\",\"ROC\",-3.00,-22.00,0.00,\"\",0.00,94.00,74.00,528.00,,,,,,\n2015,5,1,\"MQ\",\"3157\",\"ATL\",\"LGA\",-10.00,5.00,0.00,\"\",0.00,152.00,113.00,762.00,,,,,,\n2015,5,4,\"MQ\",\"3157\",\"ATL\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,125.00,104.00,762.00,,,,,,\n2015,5,5,\"MQ\",\"3157\",\"ATL\",\"LGA\",-9.00,-30.00,0.00,\"\",0.00,116.00,100.00,762.00,,,,,,\n2015,5,6,\"MQ\",\"3157\",\"ATL\",\"LGA\",,,1.00,\"A\",0.00,,,762.00,,,,,,\n2015,5,7,\"MQ\",\"3157\",\"ATL\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,124.00,103.00,762.00,,,,,,\n2015,5,8,\"MQ\",\"3157\",\"ATL\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,135.00,108.00,762.00,,,,,,\n2015,5,10,\"MQ\",\"3157\",\"ATL\",\"LGA\",2.00,-5.00,0.00,\"\",0.00,130.00,106.00,762.00,,,,,,\n2015,5,11,\"MQ\",\"3157\",\"ATL\",\"LGA\",66.00,112.00,0.00,\"\",0.00,183.00,143.00,762.00,0.00,0.00,101.00,0.00,11.00,\n2015,5,12,\"MQ\",\"3157\",\"ATL\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,125.00,105.00,762.00,,,,,,\n2015,5,13,\"MQ\",\"3157\",\"ATL\",\"LGA\",-7.00,7.00,0.00,\"\",0.00,151.00,125.00,762.00,,,,,,\n2015,5,14,\"MQ\",\"3157\",\"ATL\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,119.00,100.00,762.00,,,,,,\n2015,5,15,\"MQ\",\"3157\",\"ATL\",\"LGA\",32.00,15.00,0.00,\"\",0.00,120.00,100.00,762.00,3.00,0.00,0.00,0.00,12.00,\n2015,5,17,\"MQ\",\"3157\",\"ATL\",\"LGA\",74.00,67.00,0.00,\"\",0.00,130.00,110.00,762.00,8.00,0.00,0.00,0.00,59.00,\n2015,5,18,\"MQ\",\"3157\",\"ATL\",\"LGA\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,19,\"MQ\",\"3157\",\"ATL\",\"LGA\",31.00,24.00,0.00,\"\",0.00,130.00,103.00,762.00,0.00,0.00,7.00,0.00,17.00,\n2015,5,20,\"MQ\",\"3157\",\"ATL\",\"LGA\",31.00,16.00,0.00,\"\",0.00,122.00,98.00,762.00,2.00,0.00,0.00,0.00,14.00,\n2015,5,21,\"MQ\",\"3157\",\"ATL\",\"LGA\",0.00,19.00,0.00,\"\",0.00,156.00,101.00,762.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3157\",\"ATL\",\"LGA\",12.00,13.00,0.00,\"\",0.00,138.00,110.00,762.00,,,,,,\n2015,5,24,\"MQ\",\"3157\",\"ATL\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,125.00,100.00,762.00,,,,,,\n2015,5,25,\"MQ\",\"3157\",\"ATL\",\"LGA\",860.00,847.00,0.00,\"\",0.00,124.00,98.00,762.00,0.00,732.00,0.00,0.00,115.00,\n2015,5,26,\"MQ\",\"3157\",\"ATL\",\"LGA\",40.00,40.00,0.00,\"\",0.00,137.00,107.00,762.00,0.00,11.00,0.00,0.00,29.00,\n2015,5,27,\"MQ\",\"3157\",\"ATL\",\"LGA\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,28,\"MQ\",\"3157\",\"ATL\",\"LGA\",68.00,63.00,0.00,\"\",0.00,132.00,100.00,762.00,0.00,24.00,0.00,0.00,39.00,\n2015,5,29,\"MQ\",\"3157\",\"ATL\",\"LGA\",36.00,25.00,0.00,\"\",0.00,126.00,106.00,762.00,0.00,0.00,0.00,0.00,25.00,\n2015,5,31,\"MQ\",\"3157\",\"ATL\",\"LGA\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,1,\"MQ\",\"3157\",\"LGA\",\"ATL\",-11.00,-6.00,0.00,\"\",0.00,159.00,107.00,762.00,,,,,,\n2015,5,2,\"MQ\",\"3157\",\"LGA\",\"ATL\",-8.00,-13.00,0.00,\"\",0.00,149.00,103.00,762.00,,,,,,\n2015,5,4,\"MQ\",\"3157\",\"LGA\",\"ATL\",-8.00,-23.00,0.00,\"\",0.00,139.00,106.00,762.00,,,,,,\n2015,5,5,\"MQ\",\"3157\",\"LGA\",\"ATL\",-10.00,-32.00,0.00,\"\",0.00,132.00,111.00,762.00,,,,,,\n2015,5,6,\"MQ\",\"3157\",\"LGA\",\"ATL\",0.00,-8.00,0.00,\"\",0.00,146.00,107.00,762.00,,,,,,\n2015,5,7,\"MQ\",\"3157\",\"LGA\",\"ATL\",-4.00,-28.00,0.00,\"\",0.00,130.00,102.00,762.00,,,,,,\n2015,5,8,\"MQ\",\"3157\",\"LGA\",\"ATL\",-6.00,-34.00,0.00,\"\",0.00,126.00,99.00,762.00,,,,,,\n2015,5,9,\"MQ\",\"3157\",\"LGA\",\"ATL\",-7.00,-34.00,0.00,\"\",0.00,127.00,102.00,762.00,,,,,,\n2015,5,10,\"MQ\",\"3157\",\"LGA\",\"ATL\",17.00,-8.00,0.00,\"\",0.00,129.00,104.00,762.00,,,,,,\n2015,5,11,\"MQ\",\"3157\",\"LGA\",\"ATL\",-4.00,12.00,0.00,\"\",0.00,170.00,105.00,762.00,,,,,,\n2015,5,12,\"MQ\",\"3157\",\"LGA\",\"ATL\",-7.00,-4.00,0.00,\"\",0.00,157.00,114.00,762.00,,,,,,\n2015,5,13,\"MQ\",\"3157\",\"LGA\",\"ATL\",-5.00,-17.00,0.00,\"\",0.00,142.00,101.00,762.00,,,,,,\n2015,5,14,\"MQ\",\"3157\",\"LGA\",\"ATL\",0.00,-12.00,0.00,\"\",0.00,142.00,108.00,762.00,,,,,,\n2015,5,15,\"MQ\",\"3157\",\"LGA\",\"ATL\",40.00,26.00,0.00,\"\",0.00,140.00,112.00,762.00,3.00,0.00,0.00,0.00,23.00,\n2015,5,16,\"MQ\",\"3157\",\"LGA\",\"ATL\",-3.00,17.00,0.00,\"\",0.00,174.00,115.00,762.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,17,\"MQ\",\"3157\",\"LGA\",\"ATL\",74.00,66.00,0.00,\"\",0.00,146.00,112.00,762.00,64.00,0.00,0.00,0.00,2.00,\n2015,5,18,\"MQ\",\"3157\",\"LGA\",\"ATL\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,19,\"MQ\",\"3157\",\"LGA\",\"ATL\",-4.00,23.00,0.00,\"\",0.00,181.00,111.00,762.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3157\",\"LGA\",\"ATL\",-2.00,28.00,0.00,\"\",0.00,184.00,108.00,762.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3157\",\"LGA\",\"ATL\",-3.00,13.00,0.00,\"\",0.00,170.00,125.00,762.00,,,,,,\n2015,5,22,\"MQ\",\"3157\",\"LGA\",\"ATL\",-2.00,-17.00,0.00,\"\",0.00,139.00,111.00,762.00,,,,,,\n2015,5,23,\"MQ\",\"3157\",\"LGA\",\"ATL\",-7.00,-18.00,0.00,\"\",0.00,143.00,106.00,762.00,,,,,,\n2015,5,24,\"MQ\",\"3157\",\"LGA\",\"ATL\",-7.00,-20.00,0.00,\"\",0.00,141.00,106.00,762.00,,,,,,\n2015,5,25,\"MQ\",\"3157\",\"LGA\",\"ATL\",51.00,118.00,0.00,\"\",0.00,221.00,140.00,762.00,25.00,0.00,67.00,0.00,26.00,\n2015,5,26,\"MQ\",\"3157\",\"LGA\",\"ATL\",-8.00,30.00,0.00,\"\",0.00,192.00,112.00,762.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,27,\"MQ\",\"3157\",\"LGA\",\"ATL\",9.00,119.00,0.00,\"\",0.00,264.00,118.00,762.00,3.00,0.00,110.00,0.00,6.00,\n2015,5,28,\"MQ\",\"3157\",\"LGA\",\"ATL\",24.00,43.00,0.00,\"\",0.00,173.00,118.00,762.00,4.00,0.00,19.00,0.00,20.00,\n2015,5,29,\"MQ\",\"3157\",\"LGA\",\"ATL\",24.00,42.00,0.00,\"\",0.00,172.00,126.00,762.00,24.00,0.00,18.00,0.00,0.00,\n2015,5,30,\"MQ\",\"3157\",\"LGA\",\"ATL\",-11.00,27.00,0.00,\"\",0.00,192.00,115.00,762.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,31,\"MQ\",\"3157\",\"LGA\",\"ATL\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,3,\"MQ\",\"3157\",\"LGA\",\"SDF\",-10.00,-52.00,0.00,\"\",0.00,112.00,96.00,659.00,,,,,,\n2015,5,3,\"MQ\",\"3157\",\"SDF\",\"LGA\",16.00,-4.00,0.00,\"\",0.00,117.00,100.00,659.00,,,,,,\n2015,5,9,\"MQ\",\"3160\",\"ROC\",\"ORD\",-7.00,-14.00,0.00,\"\",0.00,113.00,85.00,528.00,,,,,,\n2015,5,16,\"MQ\",\"3160\",\"ROC\",\"ORD\",4.00,-1.00,0.00,\"\",0.00,115.00,87.00,528.00,,,,,,\n2015,5,23,\"MQ\",\"3160\",\"ROC\",\"ORD\",-4.00,-11.00,0.00,\"\",0.00,113.00,84.00,528.00,,,,,,\n2015,5,30,\"MQ\",\"3160\",\"ROC\",\"ORD\",-8.00,-10.00,0.00,\"\",0.00,118.00,89.00,528.00,,,,,,\n2015,5,7,\"MQ\",\"3166\",\"CLE\",\"JFK\",0.00,5.00,0.00,\"\",0.00,104.00,74.00,425.00,,,,,,\n2015,5,8,\"MQ\",\"3166\",\"CLE\",\"JFK\",8.00,1.00,0.00,\"\",0.00,92.00,72.00,425.00,,,,,,\n2015,5,9,\"MQ\",\"3166\",\"CLE\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,92.00,73.00,425.00,,,,,,\n2015,5,10,\"MQ\",\"3166\",\"CLE\",\"JFK\",-9.00,-14.00,0.00,\"\",0.00,94.00,74.00,425.00,,,,,,\n2015,5,11,\"MQ\",\"3166\",\"CLE\",\"JFK\",-7.00,16.00,0.00,\"\",0.00,122.00,96.00,425.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3166\",\"CLE\",\"JFK\",109.00,119.00,0.00,\"\",0.00,109.00,68.00,425.00,0.00,0.00,119.00,0.00,0.00,\n2015,5,13,\"MQ\",\"3166\",\"CLE\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,87.00,70.00,425.00,,,,,,\n2015,5,14,\"MQ\",\"3166\",\"CLE\",\"JFK\",-1.00,-9.00,0.00,\"\",0.00,91.00,69.00,425.00,,,,,,\n2015,5,15,\"MQ\",\"3166\",\"CLE\",\"JFK\",2.00,0.00,0.00,\"\",0.00,97.00,71.00,425.00,,,,,,\n2015,5,16,\"MQ\",\"3166\",\"CLE\",\"JFK\",5.00,1.00,0.00,\"\",0.00,95.00,72.00,425.00,,,,,,\n2015,5,17,\"MQ\",\"3166\",\"CLE\",\"JFK\",-6.00,3.00,0.00,\"\",0.00,108.00,80.00,425.00,,,,,,\n2015,5,18,\"MQ\",\"3166\",\"CLE\",\"JFK\",180.00,175.00,0.00,\"\",0.00,94.00,78.00,425.00,0.00,0.00,143.00,0.00,32.00,\n2015,5,19,\"MQ\",\"3166\",\"CLE\",\"JFK\",-3.00,-18.00,0.00,\"\",0.00,84.00,69.00,425.00,,,,,,\n2015,5,20,\"MQ\",\"3166\",\"CLE\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,97.00,72.00,425.00,,,,,,\n2015,5,21,\"MQ\",\"3166\",\"CLE\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,86.00,67.00,425.00,,,,,,\n2015,5,22,\"MQ\",\"3166\",\"CLE\",\"JFK\",-10.00,-22.00,0.00,\"\",0.00,87.00,66.00,425.00,,,,,,\n2015,5,23,\"MQ\",\"3166\",\"CLE\",\"JFK\",-9.00,-12.00,0.00,\"\",0.00,96.00,71.00,425.00,,,,,,\n2015,5,24,\"MQ\",\"3166\",\"CLE\",\"JFK\",5.00,-10.00,0.00,\"\",0.00,84.00,65.00,425.00,,,,,,\n2015,5,25,\"MQ\",\"3166\",\"CLE\",\"JFK\",-10.00,-2.00,0.00,\"\",0.00,107.00,70.00,425.00,,,,,,\n2015,5,26,\"MQ\",\"3166\",\"CLE\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,85.00,74.00,425.00,,,,,,\n2015,5,27,\"MQ\",\"3166\",\"CLE\",\"JFK\",4.00,-9.00,0.00,\"\",0.00,86.00,74.00,425.00,,,,,,\n2015,5,28,\"MQ\",\"3166\",\"CLE\",\"JFK\",4.00,-10.00,0.00,\"\",0.00,85.00,64.00,425.00,,,,,,\n2015,5,29,\"MQ\",\"3166\",\"CLE\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,86.00,72.00,425.00,,,,,,\n2015,5,30,\"MQ\",\"3166\",\"CLE\",\"JFK\",-1.00,1.00,0.00,\"\",0.00,101.00,76.00,425.00,,,,,,\n2015,5,31,\"MQ\",\"3166\",\"CLE\",\"JFK\",-9.00,-12.00,0.00,\"\",0.00,96.00,71.00,425.00,,,,,,\n2015,5,1,\"MQ\",\"3167\",\"ATL\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,134.00,103.00,762.00,,,,,,\n2015,5,3,\"MQ\",\"3167\",\"ATL\",\"LGA\",-6.00,2.00,0.00,\"\",0.00,142.00,119.00,762.00,,,,,,\n2015,5,4,\"MQ\",\"3167\",\"ATL\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,119.00,102.00,762.00,,,,,,\n2015,5,5,\"MQ\",\"3167\",\"ATL\",\"LGA\",-9.00,1.00,0.00,\"\",0.00,144.00,112.00,762.00,,,,,,\n2015,5,6,\"MQ\",\"3167\",\"ATL\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,124.00,98.00,762.00,,,,,,\n2015,5,1,\"MQ\",\"3167\",\"LGA\",\"ATL\",-7.00,-25.00,0.00,\"\",0.00,138.00,100.00,762.00,,,,,,\n2015,5,3,\"MQ\",\"3167\",\"LGA\",\"ATL\",-6.00,-30.00,0.00,\"\",0.00,132.00,104.00,762.00,,,,,,\n2015,5,4,\"MQ\",\"3167\",\"LGA\",\"ATL\",-8.00,-23.00,0.00,\"\",0.00,141.00,104.00,762.00,,,,,,\n2015,5,5,\"MQ\",\"3167\",\"LGA\",\"ATL\",-7.00,-11.00,0.00,\"\",0.00,152.00,105.00,762.00,,,,,,\n2015,5,6,\"MQ\",\"3167\",\"LGA\",\"ATL\",-6.00,-7.00,0.00,\"\",0.00,155.00,107.00,762.00,,,,,,\n2015,5,1,\"MQ\",\"3169\",\"JFK\",\"ORF\",17.00,11.00,0.00,\"\",0.00,89.00,65.00,290.00,,,,,,\n2015,5,2,\"MQ\",\"3169\",\"JFK\",\"ORF\",-8.00,-36.00,0.00,\"\",0.00,67.00,48.00,290.00,,,,,,\n2015,5,3,\"MQ\",\"3169\",\"JFK\",\"ORF\",-3.00,-15.00,0.00,\"\",0.00,83.00,47.00,290.00,,,,,,\n2015,5,4,\"MQ\",\"3169\",\"JFK\",\"ORF\",70.00,50.00,0.00,\"\",0.00,75.00,52.00,290.00,50.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"MQ\",\"3169\",\"JFK\",\"ORF\",-5.00,-23.00,0.00,\"\",0.00,77.00,48.00,290.00,,,,,,\n2015,5,6,\"MQ\",\"3169\",\"JFK\",\"ORF\",-3.00,-20.00,0.00,\"\",0.00,78.00,48.00,290.00,,,,,,\n2015,5,31,\"DL\",\"1947\",\"FLL\",\"JFK\",64.00,83.00,0.00,\"\",0.00,202.00,142.00,1069.00,5.00,0.00,69.00,0.00,9.00,\n2015,5,31,\"DL\",\"1948\",\"DTW\",\"LGA\",10.00,10.00,0.00,\"\",0.00,107.00,82.00,502.00,,,,,,\n2015,5,31,\"DL\",\"1949\",\"TPA\",\"LGA\",98.00,111.00,0.00,\"\",0.00,176.00,152.00,1010.00,0.00,0.00,111.00,0.00,0.00,\n2015,5,31,\"DL\",\"1953\",\"LGA\",\"FLL\",315.00,283.00,0.00,\"\",0.00,162.00,144.00,1076.00,9.00,0.00,0.00,0.00,274.00,\n2015,5,31,\"DL\",\"1958\",\"PBI\",\"LGA\",299.00,306.00,0.00,\"\",0.00,183.00,150.00,1035.00,0.00,0.00,306.00,0.00,0.00,\n2015,5,31,\"DL\",\"1972\",\"AUS\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,214.00,189.00,1521.00,,,,,,\n2015,5,31,\"DL\",\"1982\",\"LGA\",\"MIA\",-6.00,-21.00,0.00,\"\",0.00,181.00,145.00,1096.00,,,,,,\n2015,5,31,\"DL\",\"1986\",\"ATL\",\"LGA\",222.00,218.00,0.00,\"\",0.00,146.00,108.00,762.00,0.00,0.00,218.00,0.00,0.00,\n2015,5,31,\"DL\",\"1994\",\"PHX\",\"JFK\",5.00,4.00,0.00,\"\",0.00,291.00,261.00,2153.00,,,,,,\n2015,5,31,\"DL\",\"2003\",\"LGA\",\"MIA\",-5.00,-22.00,0.00,\"\",0.00,170.00,148.00,1096.00,,,,,,\n2015,5,31,\"DL\",\"2013\",\"ATL\",\"SYR\",81.00,77.00,0.00,\"\",0.00,131.00,99.00,794.00,0.00,1.00,0.00,0.00,76.00,\n2015,5,31,\"DL\",\"2014\",\"SYR\",\"ATL\",-5.00,-13.00,0.00,\"\",0.00,131.00,113.00,794.00,,,,,,\n2015,5,31,\"DL\",\"2016\",\"LGA\",\"ATL\",-2.00,-28.00,0.00,\"\",0.00,127.00,102.00,762.00,,,,,,\n2015,5,7,\"MQ\",\"3122\",\"ATL\",\"LGA\",-5.00,6.00,0.00,\"\",0.00,144.00,111.00,762.00,,,,,,\n2015,5,8,\"MQ\",\"3122\",\"ATL\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,130.00,110.00,762.00,,,,,,\n2015,5,10,\"MQ\",\"3122\",\"ATL\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,124.00,103.00,762.00,,,,,,\n2015,5,11,\"MQ\",\"3122\",\"ATL\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,121.00,105.00,762.00,,,,,,\n2015,5,12,\"MQ\",\"3122\",\"ATL\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,124.00,100.00,762.00,,,,,,\n2015,5,13,\"MQ\",\"3122\",\"ATL\",\"LGA\",-2.00,2.00,0.00,\"\",0.00,137.00,103.00,762.00,,,,,,\n2015,5,14,\"MQ\",\"3122\",\"ATL\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,124.00,104.00,762.00,,,,,,\n2015,5,15,\"MQ\",\"3122\",\"ATL\",\"LGA\",-4.00,7.00,0.00,\"\",0.00,144.00,104.00,762.00,,,,,,\n2015,5,17,\"MQ\",\"3122\",\"ATL\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,126.00,103.00,762.00,,,,,,\n2015,5,18,\"MQ\",\"3122\",\"ATL\",\"LGA\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,19,\"MQ\",\"3122\",\"ATL\",\"LGA\",111.00,103.00,0.00,\"\",0.00,125.00,104.00,762.00,12.00,0.00,0.00,0.00,91.00,\n2015,5,20,\"MQ\",\"3122\",\"ATL\",\"LGA\",1.00,8.00,0.00,\"\",0.00,140.00,103.00,762.00,,,,,,\n2015,5,21,\"MQ\",\"3122\",\"ATL\",\"LGA\",24.00,7.00,0.00,\"\",0.00,116.00,100.00,762.00,,,,,,\n2015,5,22,\"MQ\",\"3122\",\"ATL\",\"LGA\",4.00,-1.00,0.00,\"\",0.00,128.00,100.00,762.00,,,,,,\n2015,5,24,\"MQ\",\"3122\",\"ATL\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,127.00,110.00,762.00,,,,,,\n2015,5,25,\"MQ\",\"3122\",\"ATL\",\"LGA\",-8.00,-6.00,0.00,\"\",0.00,135.00,107.00,762.00,,,,,,\n2015,5,26,\"MQ\",\"3122\",\"ATL\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,126.00,98.00,762.00,,,,,,\n2015,5,27,\"MQ\",\"3122\",\"ATL\",\"LGA\",-12.00,2.00,0.00,\"\",0.00,147.00,102.00,762.00,,,,,,\n2015,5,28,\"MQ\",\"3122\",\"ATL\",\"LGA\",29.00,11.00,0.00,\"\",0.00,115.00,101.00,762.00,,,,,,\n2015,5,29,\"MQ\",\"3122\",\"ATL\",\"LGA\",56.00,63.00,0.00,\"\",0.00,140.00,108.00,762.00,4.00,0.00,7.00,0.00,52.00,\n2015,5,31,\"MQ\",\"3122\",\"ATL\",\"LGA\",-7.00,15.00,0.00,\"\",0.00,155.00,111.00,762.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3122\",\"LGA\",\"ATL\",-8.00,-30.00,0.00,\"\",0.00,134.00,102.00,762.00,,,,,,\n2015,5,8,\"MQ\",\"3122\",\"LGA\",\"ATL\",9.00,-5.00,0.00,\"\",0.00,142.00,101.00,762.00,,,,,,\n2015,5,10,\"MQ\",\"3122\",\"LGA\",\"ATL\",-4.00,-29.00,0.00,\"\",0.00,131.00,102.00,762.00,,,,,,\n2015,5,11,\"MQ\",\"3122\",\"LGA\",\"ATL\",-5.00,-26.00,0.00,\"\",0.00,135.00,102.00,762.00,,,,,,\n2015,5,12,\"MQ\",\"3122\",\"LGA\",\"ATL\",-3.00,-24.00,0.00,\"\",0.00,135.00,109.00,762.00,,,,,,\n2015,5,13,\"MQ\",\"3122\",\"LGA\",\"ATL\",-5.00,-5.00,0.00,\"\",0.00,156.00,106.00,762.00,,,,,,\n2015,5,14,\"MQ\",\"3122\",\"LGA\",\"ATL\",-6.00,-4.00,0.00,\"\",0.00,158.00,109.00,762.00,,,,,,\n2015,5,15,\"MQ\",\"3122\",\"LGA\",\"ATL\",-4.00,-10.00,0.00,\"\",0.00,150.00,110.00,762.00,,,,,,\n2015,5,17,\"MQ\",\"3122\",\"LGA\",\"ATL\",-8.00,-14.00,0.00,\"\",0.00,150.00,107.00,762.00,,,,,,\n2015,5,18,\"MQ\",\"3122\",\"LGA\",\"ATL\",271.00,254.00,0.00,\"\",0.00,139.00,104.00,762.00,9.00,0.00,0.00,0.00,245.00,\n2015,5,19,\"MQ\",\"3122\",\"LGA\",\"ATL\",114.00,99.00,0.00,\"\",0.00,141.00,109.00,762.00,5.00,0.00,0.00,0.00,94.00,\n2015,5,20,\"MQ\",\"3122\",\"LGA\",\"ATL\",-3.00,4.00,0.00,\"\",0.00,163.00,106.00,762.00,,,,,,\n2015,5,21,\"MQ\",\"3122\",\"LGA\",\"ATL\",48.00,21.00,0.00,\"\",0.00,129.00,112.00,762.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3122\",\"LGA\",\"ATL\",5.00,4.00,0.00,\"\",0.00,155.00,115.00,762.00,,,,,,\n2015,5,24,\"MQ\",\"3122\",\"LGA\",\"ATL\",-9.00,-20.00,0.00,\"\",0.00,145.00,105.00,762.00,,,,,,\n2015,5,25,\"MQ\",\"3122\",\"LGA\",\"ATL\",-8.00,-18.00,0.00,\"\",0.00,146.00,110.00,762.00,,,,,,\n2015,5,26,\"MQ\",\"3122\",\"LGA\",\"ATL\",-4.00,-15.00,0.00,\"\",0.00,145.00,110.00,762.00,,,,,,\n2015,5,27,\"MQ\",\"3122\",\"LGA\",\"ATL\",-5.00,-20.00,0.00,\"\",0.00,141.00,115.00,762.00,,,,,,\n2015,5,28,\"MQ\",\"3122\",\"LGA\",\"ATL\",-3.00,26.00,0.00,\"\",0.00,185.00,114.00,762.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3122\",\"LGA\",\"ATL\",49.00,52.00,0.00,\"\",0.00,159.00,109.00,762.00,8.00,0.00,3.00,0.00,41.00,\n2015,5,31,\"MQ\",\"3122\",\"LGA\",\"ATL\",-3.00,-12.00,0.00,\"\",0.00,147.00,108.00,762.00,,,,,,\n2015,5,1,\"MQ\",\"3133\",\"CMH\",\"LGA\",-7.00,6.00,0.00,\"\",0.00,111.00,79.00,479.00,,,,,,\n2015,5,3,\"MQ\",\"3133\",\"CMH\",\"LGA\",-8.00,-14.00,0.00,\"\",0.00,92.00,74.00,479.00,,,,,,\n2015,5,4,\"MQ\",\"3133\",\"CMH\",\"LGA\",2.00,-4.00,0.00,\"\",0.00,92.00,77.00,479.00,,,,,,\n2015,5,5,\"MQ\",\"3133\",\"CMH\",\"LGA\",-6.00,-3.00,0.00,\"\",0.00,101.00,77.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3133\",\"CMH\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,90.00,71.00,479.00,,,,,,\n2015,5,7,\"MQ\",\"3133\",\"CMH\",\"LGA\",-4.00,-3.00,0.00,\"\",0.00,99.00,75.00,479.00,,,,,,\n2015,5,8,\"MQ\",\"3133\",\"CMH\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,98.00,79.00,479.00,,,,,,\n2015,5,10,\"MQ\",\"3133\",\"CMH\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,95.00,72.00,479.00,,,,,,\n2015,5,11,\"MQ\",\"3133\",\"CMH\",\"LGA\",,,1.00,\"A\",0.00,,,479.00,,,,,,\n2015,5,12,\"MQ\",\"3133\",\"CMH\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,88.00,66.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3133\",\"CMH\",\"LGA\",36.00,25.00,0.00,\"\",0.00,87.00,66.00,479.00,6.00,0.00,0.00,0.00,19.00,\n2015,5,14,\"MQ\",\"3133\",\"CMH\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,97.00,70.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3133\",\"CMH\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,93.00,74.00,479.00,,,,,,\n2015,5,17,\"MQ\",\"3133\",\"CMH\",\"LGA\",19.00,15.00,0.00,\"\",0.00,94.00,75.00,479.00,3.00,0.00,0.00,0.00,12.00,\n2015,5,18,\"MQ\",\"3133\",\"CMH\",\"LGA\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,19,\"MQ\",\"3133\",\"CMH\",\"LGA\",21.00,11.00,0.00,\"\",0.00,88.00,71.00,479.00,,,,,,\n2015,5,20,\"MQ\",\"3133\",\"CMH\",\"LGA\",71.00,91.00,0.00,\"\",0.00,118.00,63.00,479.00,0.00,0.00,20.00,0.00,71.00,\n2015,5,21,\"MQ\",\"3133\",\"CMH\",\"LGA\",2.00,7.00,0.00,\"\",0.00,103.00,70.00,479.00,,,,,,\n2015,5,22,\"MQ\",\"3133\",\"CMH\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,104.00,72.00,479.00,,,,,,\n2015,5,24,\"MQ\",\"3133\",\"CMH\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,89.00,66.00,479.00,,,,,,\n2015,5,25,\"MQ\",\"3133\",\"CMH\",\"LGA\",-8.00,-1.00,0.00,\"\",0.00,105.00,83.00,479.00,,,,,,\n2015,5,26,\"MQ\",\"3133\",\"CMH\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,90.00,73.00,479.00,,,,,,\n2015,5,27,\"MQ\",\"3133\",\"CMH\",\"LGA\",,,1.00,\"B\",0.00,,,479.00,,,,,,\n2015,5,28,\"MQ\",\"3133\",\"CMH\",\"LGA\",,,1.00,\"A\",0.00,,,479.00,,,,,,\n2015,5,29,\"MQ\",\"3133\",\"CMH\",\"LGA\",25.00,16.00,0.00,\"\",0.00,89.00,74.00,479.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,31,\"MQ\",\"3133\",\"CMH\",\"LGA\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,1,\"MQ\",\"3133\",\"LGA\",\"CMH\",0.00,-28.00,0.00,\"\",0.00,87.00,68.00,479.00,,,,,,\n2015,5,3,\"MQ\",\"3133\",\"LGA\",\"CMH\",-4.00,-27.00,0.00,\"\",0.00,92.00,75.00,479.00,,,,,,\n2015,5,4,\"MQ\",\"3133\",\"LGA\",\"CMH\",-4.00,-15.00,0.00,\"\",0.00,104.00,76.00,479.00,,,,,,\n2015,5,5,\"MQ\",\"3133\",\"LGA\",\"CMH\",-8.00,-17.00,0.00,\"\",0.00,106.00,73.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3133\",\"LGA\",\"CMH\",-5.00,-19.00,0.00,\"\",0.00,101.00,72.00,479.00,,,,,,\n2015,5,7,\"MQ\",\"3133\",\"LGA\",\"CMH\",-5.00,-13.00,0.00,\"\",0.00,107.00,69.00,479.00,,,,,,\n2015,5,8,\"MQ\",\"3133\",\"LGA\",\"CMH\",-2.00,-9.00,0.00,\"\",0.00,108.00,69.00,479.00,,,,,,\n2015,5,10,\"MQ\",\"3133\",\"LGA\",\"CMH\",-3.00,-24.00,0.00,\"\",0.00,94.00,71.00,479.00,,,,,,\n2015,5,11,\"MQ\",\"3133\",\"LGA\",\"CMH\",-8.00,-22.00,0.00,\"\",0.00,101.00,68.00,479.00,,,,,,\n2015,5,12,\"MQ\",\"3133\",\"LGA\",\"CMH\",-12.00,-10.00,0.00,\"\",0.00,117.00,83.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3133\",\"LGA\",\"CMH\",24.00,28.00,0.00,\"\",0.00,119.00,74.00,479.00,0.00,0.00,4.00,0.00,24.00,\n2015,5,14,\"MQ\",\"3133\",\"LGA\",\"CMH\",-5.00,-26.00,0.00,\"\",0.00,94.00,74.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3133\",\"LGA\",\"CMH\",-6.00,-26.00,0.00,\"\",0.00,95.00,78.00,479.00,,,,,,\n2015,5,17,\"MQ\",\"3133\",\"LGA\",\"CMH\",30.00,15.00,0.00,\"\",0.00,100.00,70.00,479.00,6.00,0.00,0.00,0.00,9.00,\n2015,5,18,\"MQ\",\"3133\",\"LGA\",\"CMH\",16.00,20.00,0.00,\"\",0.00,119.00,73.00,479.00,16.00,0.00,4.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3133\",\"LGA\",\"CMH\",28.00,18.00,0.00,\"\",0.00,105.00,73.00,479.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,20,\"MQ\",\"3133\",\"LGA\",\"CMH\",59.00,74.00,0.00,\"\",0.00,130.00,80.00,479.00,59.00,0.00,15.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3133\",\"LGA\",\"CMH\",-5.00,-1.00,0.00,\"\",0.00,119.00,76.00,479.00,,,,,,\n2015,5,22,\"MQ\",\"3133\",\"LGA\",\"CMH\",-10.00,-15.00,0.00,\"\",0.00,110.00,79.00,479.00,,,,,,\n2015,5,24,\"MQ\",\"3133\",\"LGA\",\"CMH\",-4.00,-34.00,0.00,\"\",0.00,85.00,74.00,479.00,,,,,,\n2015,5,25,\"MQ\",\"3133\",\"LGA\",\"CMH\",5.00,-4.00,0.00,\"\",0.00,106.00,70.00,479.00,,,,,,\n2015,5,26,\"MQ\",\"3133\",\"LGA\",\"CMH\",7.00,-15.00,0.00,\"\",0.00,93.00,69.00,479.00,,,,,,\n2015,5,27,\"MQ\",\"3133\",\"LGA\",\"CMH\",34.00,,1.00,\"B\",0.00,,,479.00,,,,,,\n2015,5,28,\"MQ\",\"3133\",\"LGA\",\"CMH\",,,1.00,\"A\",0.00,,,479.00,,,,,,\n2015,5,29,\"MQ\",\"3133\",\"LGA\",\"CMH\",24.00,26.00,0.00,\"\",0.00,117.00,71.00,479.00,0.00,0.00,2.00,0.00,24.00,\n2015,5,31,\"MQ\",\"3133\",\"LGA\",\"CMH\",-8.00,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,8,\"MQ\",\"3140\",\"BUF\",\"ORD\",0.00,-11.00,0.00,\"\",0.00,101.00,73.00,473.00,,,,,,\n2015,5,9,\"MQ\",\"3140\",\"BUF\",\"ORD\",-7.00,11.00,0.00,\"\",0.00,130.00,76.00,473.00,,,,,,\n2015,5,10,\"MQ\",\"3140\",\"BUF\",\"ORD\",-7.00,11.00,0.00,\"\",0.00,130.00,79.00,473.00,,,,,,\n2015,5,11,\"MQ\",\"3140\",\"BUF\",\"ORD\",-2.00,-7.00,0.00,\"\",0.00,107.00,78.00,473.00,,,,,,\n2015,5,12,\"MQ\",\"3140\",\"BUF\",\"ORD\",-13.00,-11.00,0.00,\"\",0.00,114.00,87.00,473.00,,,,,,\n2015,5,13,\"MQ\",\"3140\",\"BUF\",\"ORD\",3.00,8.00,0.00,\"\",0.00,117.00,82.00,473.00,,,,,,\n2015,5,14,\"MQ\",\"3140\",\"BUF\",\"ORD\",-5.00,-3.00,0.00,\"\",0.00,114.00,77.00,473.00,,,,,,\n2015,5,15,\"MQ\",\"3140\",\"BUF\",\"ORD\",-3.00,-17.00,0.00,\"\",0.00,98.00,82.00,473.00,,,,,,\n2015,5,16,\"MQ\",\"3140\",\"BUF\",\"ORD\",-6.00,-4.00,0.00,\"\",0.00,114.00,76.00,473.00,,,,,,\n2015,5,17,\"MQ\",\"3140\",\"BUF\",\"ORD\",-12.00,-7.00,0.00,\"\",0.00,117.00,71.00,473.00,,,,,,\n2015,5,18,\"MQ\",\"3140\",\"BUF\",\"ORD\",-12.00,-13.00,0.00,\"\",0.00,111.00,77.00,473.00,,,,,,\n2015,5,19,\"MQ\",\"3140\",\"BUF\",\"ORD\",29.00,29.00,0.00,\"\",0.00,112.00,83.00,473.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3140\",\"BUF\",\"ORD\",-9.00,-12.00,0.00,\"\",0.00,109.00,81.00,473.00,,,,,,\n2015,5,21,\"MQ\",\"3140\",\"BUF\",\"ORD\",-5.00,-8.00,0.00,\"\",0.00,109.00,81.00,473.00,,,,,,\n2015,5,22,\"MQ\",\"3140\",\"BUF\",\"ORD\",-1.00,5.00,0.00,\"\",0.00,118.00,80.00,473.00,,,,,,\n2015,5,23,\"MQ\",\"3140\",\"BUF\",\"ORD\",-11.00,-19.00,0.00,\"\",0.00,104.00,75.00,473.00,,,,,,\n2015,5,24,\"MQ\",\"3140\",\"BUF\",\"ORD\",-8.00,-26.00,0.00,\"\",0.00,94.00,78.00,473.00,,,,,,\n2015,5,25,\"MQ\",\"3140\",\"BUF\",\"ORD\",-12.00,-17.00,0.00,\"\",0.00,107.00,75.00,473.00,,,,,,\n2015,5,26,\"MQ\",\"3140\",\"BUF\",\"ORD\",0.00,0.00,0.00,\"\",0.00,112.00,71.00,473.00,,,,,,\n2015,5,27,\"MQ\",\"3140\",\"BUF\",\"ORD\",-15.00,-11.00,0.00,\"\",0.00,116.00,80.00,473.00,,,,,,\n2015,5,28,\"MQ\",\"3140\",\"BUF\",\"ORD\",-12.00,-29.00,0.00,\"\",0.00,95.00,75.00,473.00,,,,,,\n2015,5,29,\"MQ\",\"3140\",\"BUF\",\"ORD\",-6.00,-14.00,0.00,\"\",0.00,104.00,72.00,473.00,,,,,,\n2015,5,30,\"MQ\",\"3140\",\"BUF\",\"ORD\",-5.00,-12.00,0.00,\"\",0.00,105.00,75.00,473.00,,,,,,\n2015,5,31,\"MQ\",\"3140\",\"BUF\",\"ORD\",-10.00,-7.00,0.00,\"\",0.00,115.00,85.00,473.00,,,,,,\n2015,5,1,\"MQ\",\"3145\",\"CMH\",\"JFK\",-2.00,0.00,0.00,\"\",0.00,112.00,87.00,483.00,,,,,,\n2015,5,2,\"MQ\",\"3145\",\"CMH\",\"JFK\",-9.00,-10.00,0.00,\"\",0.00,109.00,88.00,483.00,,,,,,\n2015,5,3,\"MQ\",\"3145\",\"CMH\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,104.00,86.00,483.00,,,,,,\n2015,5,4,\"MQ\",\"3145\",\"CMH\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,108.00,85.00,483.00,,,,,,\n2015,5,5,\"MQ\",\"3145\",\"CMH\",\"JFK\",45.00,27.00,0.00,\"\",0.00,92.00,76.00,483.00,1.00,0.00,0.00,0.00,26.00,\n2015,5,6,\"MQ\",\"3145\",\"CMH\",\"JFK\",,,1.00,\"A\",0.00,,,483.00,,,,,,\n2015,5,7,\"MQ\",\"3145\",\"CMH\",\"JFK\",-11.00,-14.00,0.00,\"\",0.00,107.00,89.00,483.00,,,,,,\n2015,5,8,\"MQ\",\"3145\",\"CMH\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,99.00,85.00,483.00,,,,,,\n2015,5,9,\"MQ\",\"3145\",\"CMH\",\"JFK\",-2.00,0.00,0.00,\"\",0.00,112.00,94.00,483.00,,,,,,\n2015,5,10,\"MQ\",\"3145\",\"CMH\",\"JFK\",40.00,40.00,0.00,\"\",0.00,110.00,79.00,483.00,3.00,0.00,0.00,0.00,37.00,\n2015,5,11,\"MQ\",\"3145\",\"CMH\",\"JFK\",3.00,6.00,0.00,\"\",0.00,113.00,91.00,483.00,,,,,,\n2015,5,12,\"MQ\",\"3145\",\"CMH\",\"JFK\",73.00,82.00,0.00,\"\",0.00,119.00,80.00,483.00,0.00,0.00,82.00,0.00,0.00,\n2015,5,13,\"MQ\",\"3145\",\"CMH\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,104.00,86.00,483.00,,,,,,\n2015,5,14,\"MQ\",\"3145\",\"CMH\",\"JFK\",8.00,-6.00,0.00,\"\",0.00,96.00,77.00,483.00,,,,,,\n2015,5,15,\"MQ\",\"3145\",\"CMH\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,96.00,83.00,483.00,,,,,,\n2015,5,16,\"MQ\",\"3145\",\"CMH\",\"JFK\",0.00,0.00,0.00,\"\",0.00,110.00,83.00,483.00,,,,,,\n2015,5,17,\"MQ\",\"3145\",\"CMH\",\"JFK\",9.00,25.00,0.00,\"\",0.00,126.00,89.00,483.00,5.00,0.00,16.00,0.00,4.00,\n2015,5,18,\"MQ\",\"3145\",\"CMH\",\"JFK\",212.00,207.00,0.00,\"\",0.00,105.00,92.00,483.00,0.00,0.00,207.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3145\",\"CMH\",\"JFK\",-7.00,-2.00,0.00,\"\",0.00,115.00,81.00,483.00,,,,,,\n2015,5,20,\"MQ\",\"3145\",\"CMH\",\"JFK\",-10.00,-24.00,0.00,\"\",0.00,96.00,79.00,483.00,,,,,,\n2015,5,21,\"MQ\",\"3145\",\"CMH\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,101.00,78.00,483.00,,,,,,\n2015,5,22,\"MQ\",\"3145\",\"CMH\",\"JFK\",5.00,-9.00,0.00,\"\",0.00,96.00,77.00,483.00,,,,,,\n2015,5,23,\"MQ\",\"3145\",\"CMH\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,99.00,82.00,483.00,,,,,,\n2015,5,24,\"MQ\",\"3145\",\"CMH\",\"JFK\",-13.00,-22.00,0.00,\"\",0.00,101.00,79.00,483.00,,,,,,\n2015,5,25,\"MQ\",\"3145\",\"CMH\",\"JFK\",-9.00,-19.00,0.00,\"\",0.00,100.00,82.00,483.00,,,,,,\n2015,5,26,\"MQ\",\"3145\",\"CMH\",\"JFK\",27.00,19.00,0.00,\"\",0.00,102.00,80.00,483.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"MQ\",\"3145\",\"CMH\",\"JFK\",,,1.00,\"C\",0.00,,,483.00,,,,,,\n2015,5,28,\"MQ\",\"3145\",\"CMH\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,102.00,83.00,483.00,,,,,,\n2015,5,29,\"MQ\",\"3145\",\"CMH\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,93.00,78.00,483.00,,,,,,\n2015,5,30,\"MQ\",\"3145\",\"CMH\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,103.00,85.00,483.00,,,,,,\n2015,5,31,\"MQ\",\"3145\",\"CMH\",\"JFK\",-9.00,-6.00,0.00,\"\",0.00,113.00,88.00,483.00,,,,,,\n2015,5,15,\"MQ\",\"3199\",\"LGA\",\"GSO\",-5.00,-9.00,0.00,\"\",0.00,101.00,71.00,461.00,,,,,,\n2015,5,16,\"MQ\",\"3199\",\"LGA\",\"GSO\",-5.00,-10.00,0.00,\"\",0.00,100.00,74.00,461.00,,,,,,\n2015,5,17,\"MQ\",\"3199\",\"LGA\",\"GSO\",-4.00,-23.00,0.00,\"\",0.00,86.00,68.00,461.00,,,,,,\n2015,5,18,\"MQ\",\"3199\",\"LGA\",\"GSO\",176.00,167.00,0.00,\"\",0.00,96.00,72.00,461.00,0.00,0.00,0.00,0.00,167.00,\n2015,5,19,\"MQ\",\"3199\",\"LGA\",\"GSO\",88.00,142.00,0.00,\"\",0.00,159.00,72.00,461.00,0.00,0.00,54.00,0.00,88.00,\n2015,5,20,\"MQ\",\"3199\",\"LGA\",\"GSO\",-12.00,-22.00,0.00,\"\",0.00,95.00,72.00,461.00,,,,,,\n2015,5,21,\"MQ\",\"3199\",\"LGA\",\"GSO\",-12.00,-4.00,0.00,\"\",0.00,113.00,85.00,461.00,,,,,,\n2015,5,22,\"MQ\",\"3199\",\"LGA\",\"GSO\",-11.00,-22.00,0.00,\"\",0.00,94.00,74.00,461.00,,,,,,\n2015,5,23,\"MQ\",\"3199\",\"LGA\",\"GSO\",-9.00,-24.00,0.00,\"\",0.00,90.00,74.00,461.00,,,,,,\n2015,5,25,\"MQ\",\"3199\",\"LGA\",\"GSO\",-2.00,1.00,0.00,\"\",0.00,108.00,71.00,461.00,,,,,,\n2015,5,26,\"MQ\",\"3199\",\"LGA\",\"GSO\",-11.00,-18.00,0.00,\"\",0.00,98.00,71.00,461.00,,,,,,\n2015,5,27,\"MQ\",\"3199\",\"LGA\",\"GSO\",30.00,27.00,0.00,\"\",0.00,102.00,75.00,461.00,1.00,0.00,0.00,0.00,26.00,\n2015,5,28,\"MQ\",\"3199\",\"LGA\",\"GSO\",-9.00,3.00,0.00,\"\",0.00,117.00,77.00,461.00,,,,,,\n2015,5,29,\"MQ\",\"3199\",\"LGA\",\"GSO\",73.00,83.00,0.00,\"\",0.00,115.00,78.00,461.00,0.00,66.00,10.00,0.00,7.00,\n2015,5,30,\"MQ\",\"3199\",\"LGA\",\"GSO\",199.00,182.00,0.00,\"\",0.00,88.00,68.00,461.00,0.00,0.00,0.00,0.00,182.00,\n2015,5,31,\"MQ\",\"3199\",\"LGA\",\"GSO\",-4.00,,1.00,\"C\",0.00,,,461.00,,,,,,\n2015,5,1,\"MQ\",\"3209\",\"ORF\",\"JFK\",-8.00,-6.00,0.00,\"\",0.00,79.00,52.00,290.00,,,,,,\n2015,5,2,\"MQ\",\"3209\",\"ORF\",\"JFK\",0.00,2.00,0.00,\"\",0.00,79.00,52.00,290.00,,,,,,\n2015,5,3,\"MQ\",\"3209\",\"ORF\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,69.00,52.00,290.00,,,,,,\n2015,5,4,\"MQ\",\"3209\",\"ORF\",\"JFK\",3.00,-7.00,0.00,\"\",0.00,67.00,47.00,290.00,,,,,,\n2015,5,5,\"MQ\",\"3209\",\"ORF\",\"JFK\",35.00,29.00,0.00,\"\",0.00,71.00,50.00,290.00,28.00,0.00,0.00,0.00,1.00,\n2015,5,6,\"MQ\",\"3209\",\"ORF\",\"JFK\",280.00,284.00,0.00,\"\",0.00,81.00,52.00,290.00,5.00,0.00,4.00,0.00,275.00,\n2015,5,1,\"MQ\",\"3213\",\"ROC\",\"ORD\",-2.00,-11.00,0.00,\"\",0.00,111.00,77.00,528.00,,,,,,\n2015,5,3,\"MQ\",\"3213\",\"ROC\",\"ORD\",-5.00,-19.00,0.00,\"\",0.00,106.00,81.00,528.00,,,,,,\n2015,5,4,\"MQ\",\"3213\",\"ROC\",\"ORD\",209.00,193.00,0.00,\"\",0.00,104.00,88.00,528.00,193.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"MQ\",\"3213\",\"ROC\",\"ORD\",-1.00,-1.00,0.00,\"\",0.00,120.00,94.00,528.00,,,,,,\n2015,5,6,\"MQ\",\"3213\",\"ROC\",\"ORD\",24.00,17.00,0.00,\"\",0.00,113.00,89.00,528.00,0.00,17.00,0.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3215\",\"HPN\",\"ORD\",-4.00,-34.00,0.00,\"\",0.00,126.00,104.00,738.00,,,,,,\n2015,5,2,\"MQ\",\"3215\",\"HPN\",\"ORD\",-13.00,-42.00,0.00,\"\",0.00,127.00,109.00,738.00,,,,,,\n2015,5,3,\"MQ\",\"3215\",\"HPN\",\"ORD\",-4.00,-29.00,0.00,\"\",0.00,131.00,109.00,738.00,,,,,,\n2015,5,4,\"MQ\",\"3215\",\"HPN\",\"ORD\",0.00,-29.00,0.00,\"\",0.00,127.00,111.00,738.00,,,,,,\n2015,5,5,\"MQ\",\"3215\",\"HPN\",\"ORD\",-10.00,-30.00,0.00,\"\",0.00,136.00,122.00,738.00,,,,,,\n2015,5,1,\"MQ\",\"3097\",\"HPN\",\"ORD\",-8.00,-23.00,0.00,\"\",0.00,145.00,104.00,738.00,,,,,,\n2015,5,3,\"MQ\",\"3097\",\"HPN\",\"ORD\",-15.00,-19.00,0.00,\"\",0.00,156.00,110.00,738.00,,,,,,\n2015,5,4,\"MQ\",\"3097\",\"HPN\",\"ORD\",-6.00,-26.00,0.00,\"\",0.00,140.00,115.00,738.00,,,,,,\n2015,5,5,\"MQ\",\"3097\",\"HPN\",\"ORD\",0.00,-3.00,0.00,\"\",0.00,157.00,125.00,738.00,,,,,,\n2015,5,6,\"MQ\",\"3097\",\"HPN\",\"ORD\",-8.00,-15.00,0.00,\"\",0.00,153.00,119.00,738.00,,,,,,\n2015,5,7,\"MQ\",\"3097\",\"HPN\",\"ORD\",-3.00,-25.00,0.00,\"\",0.00,138.00,108.00,738.00,,,,,,\n2015,5,8,\"MQ\",\"3097\",\"HPN\",\"ORD\",8.00,-16.00,0.00,\"\",0.00,136.00,109.00,738.00,,,,,,\n2015,5,9,\"MQ\",\"3097\",\"HPN\",\"ORD\",8.00,-7.00,0.00,\"\",0.00,145.00,116.00,738.00,,,,,,\n2015,5,10,\"MQ\",\"3097\",\"HPN\",\"ORD\",-5.00,-12.00,0.00,\"\",0.00,153.00,113.00,738.00,,,,,,\n2015,5,11,\"MQ\",\"3097\",\"HPN\",\"ORD\",8.00,-10.00,0.00,\"\",0.00,142.00,120.00,738.00,,,,,,\n2015,5,12,\"MQ\",\"3097\",\"HPN\",\"ORD\",-5.00,-12.00,0.00,\"\",0.00,153.00,123.00,738.00,,,,,,\n2015,5,13,\"MQ\",\"3097\",\"HPN\",\"ORD\",-1.00,-17.00,0.00,\"\",0.00,144.00,123.00,738.00,,,,,,\n2015,5,14,\"MQ\",\"3097\",\"HPN\",\"ORD\",-10.00,-16.00,0.00,\"\",0.00,154.00,120.00,738.00,,,,,,\n2015,5,15,\"MQ\",\"3097\",\"HPN\",\"ORD\",-8.00,-16.00,0.00,\"\",0.00,152.00,115.00,738.00,,,,,,\n2015,5,16,\"MQ\",\"3097\",\"HPN\",\"ORD\",-8.00,-8.00,0.00,\"\",0.00,160.00,115.00,738.00,,,,,,\n2015,5,17,\"MQ\",\"3097\",\"HPN\",\"ORD\",0.00,16.00,0.00,\"\",0.00,176.00,110.00,738.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,18,\"MQ\",\"3097\",\"HPN\",\"ORD\",9.00,-9.00,0.00,\"\",0.00,142.00,108.00,738.00,,,,,,\n2015,5,19,\"MQ\",\"3097\",\"HPN\",\"ORD\",37.00,31.00,0.00,\"\",0.00,154.00,121.00,738.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3097\",\"HPN\",\"ORD\",-3.00,-17.00,0.00,\"\",0.00,146.00,124.00,738.00,,,,,,\n2015,5,21,\"MQ\",\"3097\",\"HPN\",\"ORD\",-7.00,-19.00,0.00,\"\",0.00,148.00,126.00,738.00,,,,,,\n2015,5,22,\"MQ\",\"3097\",\"HPN\",\"ORD\",7.00,-11.00,0.00,\"\",0.00,142.00,119.00,738.00,,,,,,\n2015,5,23,\"MQ\",\"3097\",\"HPN\",\"ORD\",-1.00,-9.00,0.00,\"\",0.00,152.00,114.00,738.00,,,,,,\n2015,5,24,\"MQ\",\"3097\",\"HPN\",\"ORD\",-4.00,-23.00,0.00,\"\",0.00,141.00,123.00,738.00,,,,,,\n2015,5,25,\"MQ\",\"3097\",\"HPN\",\"ORD\",3.00,-7.00,0.00,\"\",0.00,150.00,121.00,738.00,,,,,,\n2015,5,26,\"MQ\",\"3097\",\"HPN\",\"ORD\",-13.00,-31.00,0.00,\"\",0.00,142.00,114.00,738.00,,,,,,\n2015,5,27,\"MQ\",\"3097\",\"HPN\",\"ORD\",-27.00,-21.00,0.00,\"\",0.00,166.00,115.00,738.00,,,,,,\n2015,5,28,\"MQ\",\"3097\",\"HPN\",\"ORD\",-6.00,-14.00,0.00,\"\",0.00,152.00,114.00,738.00,,,,,,\n2015,5,29,\"MQ\",\"3097\",\"HPN\",\"ORD\",6.00,-20.00,0.00,\"\",0.00,134.00,107.00,738.00,,,,,,\n2015,5,30,\"MQ\",\"3097\",\"HPN\",\"ORD\",-9.00,-21.00,0.00,\"\",0.00,148.00,111.00,738.00,,,,,,\n2015,5,31,\"MQ\",\"3097\",\"HPN\",\"ORD\",-7.00,-11.00,0.00,\"\",0.00,156.00,118.00,738.00,,,,,,\n2015,5,7,\"MQ\",\"3113\",\"JFK\",\"CLE\",-5.00,-31.00,0.00,\"\",0.00,91.00,75.00,425.00,,,,,,\n2015,5,8,\"MQ\",\"3113\",\"JFK\",\"CLE\",-8.00,-11.00,0.00,\"\",0.00,114.00,70.00,425.00,,,,,,\n2015,5,9,\"MQ\",\"3113\",\"JFK\",\"CLE\",-4.00,-23.00,0.00,\"\",0.00,98.00,69.00,425.00,,,,,,\n2015,5,10,\"MQ\",\"3113\",\"JFK\",\"CLE\",-6.00,-26.00,0.00,\"\",0.00,97.00,72.00,425.00,,,,,,\n2015,5,11,\"MQ\",\"3113\",\"JFK\",\"CLE\",-4.00,-22.00,0.00,\"\",0.00,99.00,69.00,425.00,,,,,,\n2015,5,12,\"MQ\",\"3113\",\"JFK\",\"CLE\",22.00,10.00,0.00,\"\",0.00,105.00,80.00,425.00,,,,,,\n2015,5,13,\"MQ\",\"3113\",\"JFK\",\"CLE\",-8.00,-21.00,0.00,\"\",0.00,104.00,82.00,425.00,,,,,,\n2015,5,14,\"MQ\",\"3113\",\"JFK\",\"CLE\",-4.00,15.00,0.00,\"\",0.00,136.00,75.00,425.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,15,\"MQ\",\"3113\",\"JFK\",\"CLE\",-2.00,-16.00,0.00,\"\",0.00,103.00,75.00,425.00,,,,,,\n2015,5,16,\"MQ\",\"3113\",\"JFK\",\"CLE\",0.00,1.00,0.00,\"\",0.00,118.00,76.00,425.00,,,,,,\n2015,5,17,\"MQ\",\"3113\",\"JFK\",\"CLE\",-5.00,-33.00,0.00,\"\",0.00,89.00,69.00,425.00,,,,,,\n2015,5,18,\"MQ\",\"3113\",\"JFK\",\"CLE\",157.00,201.00,0.00,\"\",0.00,161.00,75.00,425.00,6.00,0.00,44.00,0.00,151.00,\n2015,5,19,\"MQ\",\"3113\",\"JFK\",\"CLE\",-2.00,-20.00,0.00,\"\",0.00,99.00,73.00,425.00,,,,,,\n2015,5,20,\"MQ\",\"3113\",\"JFK\",\"CLE\",0.00,-1.00,0.00,\"\",0.00,116.00,78.00,425.00,,,,,,\n2015,5,21,\"MQ\",\"3113\",\"JFK\",\"CLE\",-4.00,-17.00,0.00,\"\",0.00,104.00,79.00,425.00,,,,,,\n2015,5,22,\"MQ\",\"3113\",\"JFK\",\"CLE\",-8.00,-13.00,0.00,\"\",0.00,112.00,84.00,425.00,,,,,,\n2015,5,23,\"MQ\",\"3113\",\"JFK\",\"CLE\",-5.00,-13.00,0.00,\"\",0.00,109.00,76.00,425.00,,,,,,\n2015,5,24,\"MQ\",\"3113\",\"JFK\",\"CLE\",-7.00,7.00,0.00,\"\",0.00,131.00,72.00,425.00,,,,,,\n2015,5,25,\"MQ\",\"3113\",\"JFK\",\"CLE\",-6.00,-18.00,0.00,\"\",0.00,105.00,73.00,425.00,,,,,,\n2015,5,26,\"MQ\",\"3113\",\"JFK\",\"CLE\",-3.00,-22.00,0.00,\"\",0.00,98.00,75.00,425.00,,,,,,\n2015,5,27,\"MQ\",\"3113\",\"JFK\",\"CLE\",426.00,437.00,0.00,\"\",0.00,128.00,93.00,425.00,0.00,0.00,437.00,0.00,0.00,\n2015,5,28,\"MQ\",\"3113\",\"JFK\",\"CLE\",1.00,-1.00,0.00,\"\",0.00,115.00,75.00,425.00,,,,,,\n2015,5,29,\"MQ\",\"3113\",\"JFK\",\"CLE\",-6.00,-33.00,0.00,\"\",0.00,90.00,72.00,425.00,,,,,,\n2015,5,30,\"MQ\",\"3113\",\"JFK\",\"CLE\",-7.00,-25.00,0.00,\"\",0.00,99.00,71.00,425.00,,,,,,\n2015,5,31,\"MQ\",\"3113\",\"JFK\",\"CLE\",-6.00,-19.00,0.00,\"\",0.00,104.00,73.00,425.00,,,,,,\n2015,5,1,\"MQ\",\"3174\",\"LGA\",\"RDU\",-7.00,-11.00,0.00,\"\",0.00,104.00,70.00,431.00,,,,,,\n2015,5,2,\"MQ\",\"3174\",\"LGA\",\"RDU\",-7.00,-23.00,0.00,\"\",0.00,92.00,69.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3174\",\"LGA\",\"RDU\",-7.00,-16.00,0.00,\"\",0.00,99.00,67.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3174\",\"LGA\",\"RDU\",-8.00,-14.00,0.00,\"\",0.00,102.00,62.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3174\",\"LGA\",\"RDU\",0.00,-25.00,0.00,\"\",0.00,83.00,64.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3174\",\"LGA\",\"RDU\",-11.00,-4.00,0.00,\"\",0.00,115.00,64.00,431.00,,,,,,\n2015,5,7,\"MQ\",\"3174\",\"LGA\",\"RDU\",-4.00,-14.00,0.00,\"\",0.00,98.00,69.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3174\",\"LGA\",\"RDU\",0.00,19.00,0.00,\"\",0.00,127.00,72.00,431.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3174\",\"LGA\",\"RDU\",11.00,-1.00,0.00,\"\",0.00,98.00,77.00,431.00,,,,,,\n2015,5,10,\"MQ\",\"3174\",\"LGA\",\"RDU\",-5.00,-23.00,0.00,\"\",0.00,90.00,67.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3174\",\"LGA\",\"RDU\",-4.00,-1.00,0.00,\"\",0.00,111.00,69.00,431.00,,,,,,\n2015,5,12,\"MQ\",\"3174\",\"LGA\",\"RDU\",36.00,13.00,0.00,\"\",0.00,85.00,65.00,431.00,,,,,,\n2015,5,13,\"MQ\",\"3174\",\"LGA\",\"RDU\",-10.00,-2.00,0.00,\"\",0.00,116.00,71.00,431.00,,,,,,\n2015,5,14,\"MQ\",\"3174\",\"LGA\",\"RDU\",-4.00,1.00,0.00,\"\",0.00,113.00,73.00,431.00,,,,,,\n2015,5,15,\"MQ\",\"3174\",\"LGA\",\"RDU\",-10.00,-20.00,0.00,\"\",0.00,98.00,66.00,431.00,,,,,,\n2015,5,16,\"MQ\",\"3174\",\"LGA\",\"RDU\",-8.00,-29.00,0.00,\"\",0.00,89.00,62.00,431.00,,,,,,\n2015,5,17,\"MQ\",\"3174\",\"LGA\",\"RDU\",-11.00,-27.00,0.00,\"\",0.00,92.00,64.00,431.00,,,,,,\n2015,5,18,\"MQ\",\"3174\",\"LGA\",\"RDU\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,19,\"MQ\",\"3174\",\"LGA\",\"RDU\",-7.00,-12.00,0.00,\"\",0.00,103.00,72.00,431.00,,,,,,\n2015,5,20,\"MQ\",\"3174\",\"LGA\",\"RDU\",-5.00,3.00,0.00,\"\",0.00,116.00,67.00,431.00,,,,,,\n2015,5,21,\"MQ\",\"3174\",\"LGA\",\"RDU\",-3.00,-5.00,0.00,\"\",0.00,106.00,75.00,431.00,,,,,,\n2015,5,22,\"MQ\",\"3174\",\"LGA\",\"RDU\",6.00,13.00,0.00,\"\",0.00,115.00,74.00,431.00,,,,,,\n2015,5,23,\"MQ\",\"3174\",\"LGA\",\"RDU\",-5.00,-27.00,0.00,\"\",0.00,88.00,68.00,431.00,,,,,,\n2015,5,24,\"MQ\",\"3174\",\"LGA\",\"RDU\",-7.00,-14.00,0.00,\"\",0.00,101.00,62.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3174\",\"LGA\",\"RDU\",-11.00,-30.00,0.00,\"\",0.00,89.00,62.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3174\",\"LGA\",\"RDU\",-1.00,-5.00,0.00,\"\",0.00,104.00,67.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3174\",\"LGA\",\"RDU\",22.00,3.00,0.00,\"\",0.00,89.00,67.00,431.00,,,,,,\n2015,5,28,\"MQ\",\"3174\",\"LGA\",\"RDU\",32.00,23.00,0.00,\"\",0.00,99.00,63.00,431.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3174\",\"LGA\",\"RDU\",-4.00,-5.00,0.00,\"\",0.00,107.00,62.00,431.00,,,,,,\n2015,5,30,\"MQ\",\"3174\",\"LGA\",\"RDU\",-11.00,-35.00,0.00,\"\",0.00,86.00,66.00,431.00,,,,,,\n2015,5,31,\"MQ\",\"3174\",\"LGA\",\"RDU\",-11.00,-18.00,0.00,\"\",0.00,101.00,69.00,431.00,,,,,,\n2015,5,1,\"MQ\",\"3174\",\"RDU\",\"LGA\",1.00,-4.00,0.00,\"\",0.00,88.00,66.00,431.00,,,,,,\n2015,5,2,\"MQ\",\"3174\",\"RDU\",\"LGA\",-9.00,-2.00,0.00,\"\",0.00,100.00,66.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3174\",\"RDU\",\"LGA\",-6.00,5.00,0.00,\"\",0.00,104.00,66.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3174\",\"RDU\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,83.00,67.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3174\",\"RDU\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,87.00,66.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3174\",\"RDU\",\"LGA\",-2.00,10.00,0.00,\"\",0.00,105.00,61.00,431.00,,,,,,\n2015,5,7,\"MQ\",\"3174\",\"RDU\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,85.00,63.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3174\",\"RDU\",\"LGA\",30.00,62.00,0.00,\"\",0.00,125.00,68.00,431.00,0.00,0.00,45.00,0.00,17.00,\n2015,5,9,\"MQ\",\"3174\",\"RDU\",\"LGA\",-4.00,0.00,0.00,\"\",0.00,99.00,70.00,431.00,,,,,,\n2015,5,10,\"MQ\",\"3174\",\"RDU\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,89.00,65.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3174\",\"RDU\",\"LGA\",0.00,44.00,0.00,\"\",0.00,137.00,70.00,431.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3174\",\"RDU\",\"LGA\",14.00,2.00,0.00,\"\",0.00,81.00,63.00,431.00,,,,,,\n2015,5,13,\"MQ\",\"3174\",\"RDU\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,89.00,63.00,431.00,,,,,,\n2015,5,14,\"MQ\",\"3174\",\"RDU\",\"LGA\",5.00,28.00,0.00,\"\",0.00,116.00,66.00,431.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,15,\"MQ\",\"3174\",\"RDU\",\"LGA\",-5.00,15.00,0.00,\"\",0.00,113.00,66.00,431.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,16,\"MQ\",\"3174\",\"RDU\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,90.00,73.00,431.00,,,,,,\n2015,5,17,\"MQ\",\"3174\",\"RDU\",\"LGA\",0.00,20.00,0.00,\"\",0.00,113.00,76.00,431.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,18,\"MQ\",\"3174\",\"RDU\",\"LGA\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,19,\"MQ\",\"3174\",\"RDU\",\"LGA\",98.00,120.00,0.00,\"\",0.00,115.00,65.00,431.00,0.00,0.00,120.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3174\",\"RDU\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,72.00,54.00,431.00,,,,,,\n2015,5,21,\"MQ\",\"3174\",\"RDU\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,77.00,63.00,431.00,,,,,,\n2015,5,22,\"MQ\",\"3174\",\"RDU\",\"LGA\",20.00,6.00,0.00,\"\",0.00,79.00,55.00,431.00,,,,,,\n2015,5,23,\"MQ\",\"3174\",\"RDU\",\"LGA\",-11.00,-24.00,0.00,\"\",0.00,82.00,60.00,431.00,,,,,,\n2015,5,24,\"MQ\",\"3174\",\"RDU\",\"LGA\",-10.00,-11.00,0.00,\"\",0.00,92.00,67.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3174\",\"RDU\",\"LGA\",-3.00,4.00,0.00,\"\",0.00,100.00,69.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3174\",\"RDU\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,91.00,66.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3174\",\"RDU\",\"LGA\",-8.00,3.00,0.00,\"\",0.00,104.00,74.00,431.00,,,,,,\n2015,5,28,\"MQ\",\"3174\",\"RDU\",\"LGA\",,,1.00,\"A\",0.00,,,431.00,,,,,,\n2015,5,29,\"MQ\",\"3174\",\"RDU\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,93.00,62.00,431.00,,,,,,\n2015,5,30,\"MQ\",\"3174\",\"RDU\",\"LGA\",-9.00,-18.00,0.00,\"\",0.00,86.00,71.00,431.00,,,,,,\n2015,5,31,\"MQ\",\"3174\",\"RDU\",\"LGA\",-9.00,6.00,0.00,\"\",0.00,108.00,75.00,431.00,,,,,,\n2015,5,1,\"MQ\",\"3182\",\"HPN\",\"ORD\",0.00,-22.00,0.00,\"\",0.00,136.00,110.00,738.00,,,,,,\n2015,5,4,\"MQ\",\"3182\",\"HPN\",\"ORD\",-10.00,-26.00,0.00,\"\",0.00,142.00,119.00,738.00,,,,,,\n2015,5,5,\"MQ\",\"3182\",\"HPN\",\"ORD\",0.00,27.00,0.00,\"\",0.00,185.00,121.00,738.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,6,\"MQ\",\"3182\",\"HPN\",\"ORD\",-15.00,-29.00,0.00,\"\",0.00,144.00,119.00,738.00,,,,,,\n2015,5,7,\"MQ\",\"3182\",\"HPN\",\"ORD\",-7.00,-29.00,0.00,\"\",0.00,136.00,110.00,738.00,,,,,,\n2015,5,8,\"MQ\",\"3182\",\"HPN\",\"ORD\",46.00,24.00,0.00,\"\",0.00,136.00,111.00,738.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,10,\"MQ\",\"3182\",\"HPN\",\"ORD\",-9.00,1.00,0.00,\"\",0.00,168.00,122.00,738.00,,,,,,\n2015,5,11,\"MQ\",\"3182\",\"HPN\",\"ORD\",29.00,2.00,0.00,\"\",0.00,131.00,115.00,738.00,,,,,,\n2015,5,12,\"MQ\",\"3182\",\"HPN\",\"ORD\",-10.00,-17.00,0.00,\"\",0.00,151.00,128.00,738.00,,,,,,\n2015,5,13,\"MQ\",\"3182\",\"HPN\",\"ORD\",-9.00,-18.00,0.00,\"\",0.00,149.00,124.00,738.00,,,,,,\n2015,5,14,\"MQ\",\"3182\",\"HPN\",\"ORD\",-9.00,-16.00,0.00,\"\",0.00,151.00,126.00,738.00,,,,,,\n2015,5,15,\"MQ\",\"3182\",\"HPN\",\"ORD\",-10.00,-29.00,0.00,\"\",0.00,139.00,123.00,738.00,,,,,,\n2015,5,17,\"MQ\",\"3182\",\"HPN\",\"ORD\",-4.00,-27.00,0.00,\"\",0.00,135.00,111.00,738.00,,,,,,\n2015,5,18,\"MQ\",\"3182\",\"HPN\",\"ORD\",-5.00,68.00,0.00,\"\",0.00,231.00,113.00,738.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3182\",\"HPN\",\"ORD\",-12.00,-19.00,0.00,\"\",0.00,151.00,119.00,738.00,,,,,,\n2015,5,20,\"MQ\",\"3182\",\"HPN\",\"ORD\",-9.00,-22.00,0.00,\"\",0.00,145.00,122.00,738.00,,,,,,\n2015,5,21,\"MQ\",\"3182\",\"HPN\",\"ORD\",-8.00,-24.00,0.00,\"\",0.00,142.00,120.00,738.00,,,,,,\n2015,5,22,\"MQ\",\"3182\",\"HPN\",\"ORD\",9.00,1.00,0.00,\"\",0.00,150.00,124.00,738.00,,,,,,\n2015,5,24,\"MQ\",\"3182\",\"HPN\",\"ORD\",-11.00,-26.00,0.00,\"\",0.00,143.00,120.00,738.00,,,,,,\n2015,5,25,\"MQ\",\"3182\",\"HPN\",\"ORD\",-2.00,-30.00,0.00,\"\",0.00,130.00,114.00,738.00,,,,,,\n2015,5,26,\"MQ\",\"3182\",\"HPN\",\"ORD\",0.00,-17.00,0.00,\"\",0.00,141.00,118.00,738.00,,,,,,\n2015,5,27,\"MQ\",\"3182\",\"HPN\",\"ORD\",139.00,114.00,0.00,\"\",0.00,133.00,112.00,738.00,0.00,0.00,0.00,0.00,114.00,\n2015,5,28,\"MQ\",\"3182\",\"HPN\",\"ORD\",-9.00,-25.00,0.00,\"\",0.00,142.00,116.00,738.00,,,,,,\n2015,5,29,\"MQ\",\"3182\",\"HPN\",\"ORD\",-8.00,-11.00,0.00,\"\",0.00,155.00,128.00,738.00,,,,,,\n2015,5,31,\"MQ\",\"3182\",\"HPN\",\"ORD\",5.00,21.00,0.00,\"\",0.00,174.00,128.00,738.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3182\",\"ORD\",\"HPN\",-3.00,-15.00,0.00,\"\",0.00,124.00,108.00,738.00,,,,,,\n2015,5,4,\"MQ\",\"3182\",\"ORD\",\"HPN\",-2.00,-18.00,0.00,\"\",0.00,120.00,97.00,738.00,,,,,,\n2015,5,5,\"MQ\",\"3182\",\"ORD\",\"HPN\",2.00,-14.00,0.00,\"\",0.00,120.00,93.00,738.00,,,,,,\n2015,5,6,\"MQ\",\"3182\",\"ORD\",\"HPN\",-5.00,-26.00,0.00,\"\",0.00,115.00,98.00,738.00,,,,,,\n2015,5,7,\"MQ\",\"3182\",\"ORD\",\"HPN\",5.00,-11.00,0.00,\"\",0.00,120.00,101.00,738.00,,,,,,\n2015,5,8,\"MQ\",\"3182\",\"ORD\",\"HPN\",10.00,6.00,0.00,\"\",0.00,132.00,100.00,738.00,,,,,,\n2015,5,10,\"MQ\",\"3182\",\"ORD\",\"HPN\",-2.00,-22.00,0.00,\"\",0.00,116.00,100.00,738.00,,,,,,\n2015,5,11,\"MQ\",\"3182\",\"ORD\",\"HPN\",42.00,40.00,0.00,\"\",0.00,134.00,107.00,738.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3182\",\"ORD\",\"HPN\",-3.00,-33.00,0.00,\"\",0.00,106.00,93.00,738.00,,,,,,\n2015,5,13,\"MQ\",\"3182\",\"ORD\",\"HPN\",-5.00,-20.00,0.00,\"\",0.00,121.00,96.00,738.00,,,,,,\n2015,5,14,\"MQ\",\"3182\",\"ORD\",\"HPN\",-3.00,-26.00,0.00,\"\",0.00,113.00,101.00,738.00,,,,,,\n2015,5,15,\"MQ\",\"3182\",\"ORD\",\"HPN\",0.00,-23.00,0.00,\"\",0.00,113.00,97.00,738.00,,,,,,\n2015,5,17,\"MQ\",\"3182\",\"ORD\",\"HPN\",-6.00,-17.00,0.00,\"\",0.00,125.00,107.00,738.00,,,,,,\n2015,5,18,\"MQ\",\"3182\",\"ORD\",\"HPN\",-3.00,-11.00,0.00,\"\",0.00,128.00,109.00,738.00,,,,,,\n2015,5,19,\"MQ\",\"3182\",\"ORD\",\"HPN\",-4.00,-30.00,0.00,\"\",0.00,110.00,96.00,738.00,,,,,,\n2015,5,20,\"MQ\",\"3182\",\"ORD\",\"HPN\",-8.00,-6.00,0.00,\"\",0.00,138.00,117.00,738.00,,,,,,\n2015,5,21,\"MQ\",\"3182\",\"ORD\",\"HPN\",-1.00,-21.00,0.00,\"\",0.00,116.00,97.00,738.00,,,,,,\n2015,5,22,\"MQ\",\"3182\",\"ORD\",\"HPN\",-1.00,-17.00,0.00,\"\",0.00,120.00,99.00,738.00,,,,,,\n2015,5,24,\"MQ\",\"3182\",\"ORD\",\"HPN\",-7.00,-34.00,0.00,\"\",0.00,109.00,94.00,738.00,,,,,,\n2015,5,25,\"MQ\",\"3182\",\"ORD\",\"HPN\",-2.00,-10.00,0.00,\"\",0.00,128.00,107.00,738.00,,,,,,\n2015,5,26,\"MQ\",\"3182\",\"ORD\",\"HPN\",-7.00,3.00,0.00,\"\",0.00,146.00,103.00,738.00,,,,,,\n2015,5,27,\"MQ\",\"3182\",\"ORD\",\"HPN\",-5.00,,0.00,\"\",1.00,,,738.00,,,,,,\n2015,5,28,\"MQ\",\"3182\",\"ORD\",\"HPN\",-2.00,-30.00,0.00,\"\",0.00,108.00,95.00,738.00,,,,,,\n2015,5,29,\"MQ\",\"3182\",\"ORD\",\"HPN\",-2.00,-21.00,0.00,\"\",0.00,117.00,99.00,738.00,,,,,,\n2015,5,31,\"MQ\",\"3182\",\"ORD\",\"HPN\",35.00,21.00,0.00,\"\",0.00,122.00,100.00,738.00,0.00,21.00,0.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3186\",\"JFK\",\"CLE\",-5.00,-35.00,0.00,\"\",0.00,87.00,69.00,425.00,,,,,,\n2015,5,2,\"MQ\",\"3186\",\"JFK\",\"CLE\",-3.00,-10.00,0.00,\"\",0.00,110.00,72.00,425.00,,,,,,\n2015,5,3,\"MQ\",\"3186\",\"JFK\",\"CLE\",0.00,-21.00,0.00,\"\",0.00,96.00,71.00,425.00,,,,,,\n2015,5,4,\"MQ\",\"3186\",\"JFK\",\"CLE\",-3.00,-13.00,0.00,\"\",0.00,107.00,70.00,425.00,,,,,,\n2015,5,5,\"MQ\",\"3186\",\"JFK\",\"CLE\",1.00,3.00,0.00,\"\",0.00,119.00,79.00,425.00,,,,,,\n2015,5,6,\"MQ\",\"3186\",\"JFK\",\"CLE\",-4.00,-10.00,0.00,\"\",0.00,111.00,73.00,425.00,,,,,,\n2015,5,6,\"MQ\",\"3215\",\"HPN\",\"ORD\",11.00,-2.00,0.00,\"\",0.00,143.00,121.00,738.00,,,,,,\n2015,5,1,\"MQ\",\"3215\",\"ORD\",\"HPN\",-7.00,-1.00,0.00,\"\",0.00,143.00,106.00,738.00,,,,,,\n2015,5,3,\"MQ\",\"3215\",\"ORD\",\"HPN\",-6.00,-19.00,0.00,\"\",0.00,124.00,105.00,738.00,,,,,,\n2015,5,4,\"MQ\",\"3215\",\"ORD\",\"HPN\",-3.00,-18.00,0.00,\"\",0.00,122.00,100.00,738.00,,,,,,\n2015,5,5,\"MQ\",\"3215\",\"ORD\",\"HPN\",-6.00,-20.00,0.00,\"\",0.00,123.00,99.00,738.00,,,,,,\n2015,5,6,\"MQ\",\"3215\",\"ORD\",\"HPN\",45.00,27.00,0.00,\"\",0.00,119.00,98.00,738.00,13.00,0.00,0.00,0.00,14.00,\n2015,5,1,\"MQ\",\"3217\",\"JFK\",\"IND\",-3.00,-19.00,0.00,\"\",0.00,132.00,102.00,665.00,,,,,,\n2015,5,2,\"MQ\",\"3217\",\"JFK\",\"IND\",-9.00,-30.00,0.00,\"\",0.00,127.00,97.00,665.00,,,,,,\n2015,5,3,\"MQ\",\"3217\",\"JFK\",\"IND\",-4.00,-29.00,0.00,\"\",0.00,123.00,96.00,665.00,,,,,,\n2015,5,4,\"MQ\",\"3217\",\"JFK\",\"IND\",-1.00,-25.00,0.00,\"\",0.00,124.00,101.00,665.00,,,,,,\n2015,5,5,\"MQ\",\"3217\",\"JFK\",\"IND\",-7.00,-31.00,0.00,\"\",0.00,124.00,99.00,665.00,,,,,,\n2015,5,6,\"MQ\",\"3217\",\"JFK\",\"IND\",-4.00,-27.00,0.00,\"\",0.00,125.00,98.00,665.00,,,,,,\n2015,5,7,\"MQ\",\"3217\",\"JFK\",\"IND\",-9.00,-37.00,0.00,\"\",0.00,122.00,95.00,665.00,,,,,,\n2015,5,8,\"MQ\",\"3217\",\"JFK\",\"IND\",-4.00,37.00,0.00,\"\",0.00,191.00,93.00,665.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3217\",\"JFK\",\"IND\",-7.00,-16.00,0.00,\"\",0.00,141.00,96.00,665.00,,,,,,\n2015,5,10,\"MQ\",\"3217\",\"JFK\",\"IND\",21.00,22.00,0.00,\"\",0.00,151.00,97.00,665.00,13.00,0.00,1.00,0.00,8.00,\n2015,5,11,\"MQ\",\"3217\",\"JFK\",\"IND\",70.00,51.00,0.00,\"\",0.00,131.00,99.00,665.00,0.00,0.00,0.00,0.00,51.00,\n2015,5,12,\"MQ\",\"3217\",\"JFK\",\"IND\",112.00,99.00,0.00,\"\",0.00,137.00,113.00,665.00,0.00,0.00,0.00,0.00,99.00,\n2015,5,13,\"MQ\",\"3217\",\"JFK\",\"IND\",8.00,7.00,0.00,\"\",0.00,149.00,110.00,665.00,,,,,,\n2015,5,14,\"MQ\",\"3217\",\"JFK\",\"IND\",-7.00,-20.00,0.00,\"\",0.00,137.00,106.00,665.00,,,,,,\n2015,5,15,\"MQ\",\"3217\",\"JFK\",\"IND\",-7.00,-23.00,0.00,\"\",0.00,134.00,101.00,665.00,,,,,,\n2015,5,16,\"MQ\",\"3217\",\"JFK\",\"IND\",-8.00,-23.00,0.00,\"\",0.00,135.00,104.00,665.00,,,,,,\n2015,5,17,\"MQ\",\"3217\",\"JFK\",\"IND\",25.00,0.00,0.00,\"\",0.00,125.00,96.00,665.00,,,,,,\n2015,5,18,\"MQ\",\"3217\",\"JFK\",\"IND\",,,1.00,\"C\",0.00,,,665.00,,,,,,\n2015,5,19,\"MQ\",\"3217\",\"JFK\",\"IND\",-3.00,-4.00,0.00,\"\",0.00,149.00,108.00,665.00,,,,,,\n2015,5,20,\"MQ\",\"3217\",\"JFK\",\"IND\",-7.00,-23.00,0.00,\"\",0.00,134.00,112.00,665.00,,,,,,\n2015,5,21,\"MQ\",\"3217\",\"JFK\",\"IND\",-7.00,10.00,0.00,\"\",0.00,167.00,113.00,665.00,,,,,,\n2015,5,22,\"MQ\",\"3217\",\"JFK\",\"IND\",-6.00,-5.00,0.00,\"\",0.00,151.00,112.00,665.00,,,,,,\n2015,5,23,\"MQ\",\"3217\",\"JFK\",\"IND\",0.00,-23.00,0.00,\"\",0.00,127.00,107.00,665.00,,,,,,\n2015,5,24,\"MQ\",\"3217\",\"JFK\",\"IND\",-8.00,-30.00,0.00,\"\",0.00,128.00,101.00,665.00,,,,,,\n2015,5,25,\"MQ\",\"3217\",\"JFK\",\"IND\",-8.00,-32.00,0.00,\"\",0.00,126.00,101.00,665.00,,,,,,\n2015,5,26,\"MQ\",\"3217\",\"JFK\",\"IND\",72.00,42.00,0.00,\"\",0.00,120.00,99.00,665.00,42.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"MQ\",\"3217\",\"JFK\",\"IND\",-7.00,38.00,0.00,\"\",0.00,195.00,136.00,665.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,28,\"MQ\",\"3217\",\"JFK\",\"IND\",138.00,105.00,0.00,\"\",0.00,117.00,97.00,665.00,105.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3217\",\"JFK\",\"IND\",81.00,48.00,0.00,\"\",0.00,117.00,93.00,665.00,48.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"MQ\",\"3217\",\"JFK\",\"IND\",-9.00,-10.00,0.00,\"\",0.00,149.00,107.00,665.00,,,,,,\n2015,5,31,\"MQ\",\"3217\",\"JFK\",\"IND\",44.00,27.00,0.00,\"\",0.00,133.00,105.00,665.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,1,\"MQ\",\"3257\",\"LGA\",\"RDU\",-9.00,-21.00,0.00,\"\",0.00,77.00,62.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3257\",\"LGA\",\"RDU\",-6.00,-14.00,0.00,\"\",0.00,81.00,62.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3257\",\"LGA\",\"RDU\",-6.00,-12.00,0.00,\"\",0.00,83.00,63.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3257\",\"LGA\",\"RDU\",-5.00,-11.00,0.00,\"\",0.00,83.00,59.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3257\",\"LGA\",\"RDU\",56.00,43.00,0.00,\"\",0.00,76.00,59.00,431.00,38.00,0.00,0.00,0.00,5.00,\n2015,5,7,\"MQ\",\"3257\",\"LGA\",\"RDU\",0.00,2.00,0.00,\"\",0.00,91.00,63.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3257\",\"LGA\",\"RDU\",-6.00,-13.00,0.00,\"\",0.00,82.00,67.00,431.00,,,,,,\n2015,5,10,\"MQ\",\"3257\",\"LGA\",\"RDU\",-7.00,-6.00,0.00,\"\",0.00,90.00,64.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3257\",\"LGA\",\"RDU\",72.00,60.00,0.00,\"\",0.00,77.00,63.00,431.00,0.00,0.00,0.00,0.00,60.00,\n2015,5,12,\"MQ\",\"3257\",\"LGA\",\"RDU\",-10.00,-12.00,0.00,\"\",0.00,87.00,67.00,431.00,,,,,,\n2015,5,13,\"MQ\",\"3257\",\"LGA\",\"RDU\",-4.00,10.00,0.00,\"\",0.00,103.00,67.00,431.00,,,,,,\n2015,5,14,\"MQ\",\"3257\",\"LGA\",\"RDU\",6.00,-3.00,0.00,\"\",0.00,80.00,67.00,431.00,,,,,,\n2015,5,15,\"MQ\",\"3257\",\"LGA\",\"RDU\",-5.00,-2.00,0.00,\"\",0.00,92.00,62.00,431.00,,,,,,\n2015,5,17,\"MQ\",\"3257\",\"LGA\",\"RDU\",11.00,12.00,0.00,\"\",0.00,90.00,69.00,431.00,,,,,,\n2015,5,18,\"MQ\",\"3257\",\"LGA\",\"RDU\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,19,\"MQ\",\"3257\",\"LGA\",\"RDU\",18.00,24.00,0.00,\"\",0.00,95.00,69.00,431.00,18.00,0.00,6.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3257\",\"LGA\",\"RDU\",24.00,54.00,0.00,\"\",0.00,119.00,66.00,431.00,0.00,0.00,30.00,0.00,24.00,\n2015,5,21,\"MQ\",\"3257\",\"LGA\",\"RDU\",-10.00,4.00,0.00,\"\",0.00,103.00,80.00,431.00,,,,,,\n2015,5,22,\"MQ\",\"3257\",\"LGA\",\"RDU\",-5.00,-8.00,0.00,\"\",0.00,86.00,68.00,431.00,,,,,,\n2015,5,24,\"MQ\",\"3257\",\"LGA\",\"RDU\",-2.00,-8.00,0.00,\"\",0.00,83.00,61.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3257\",\"LGA\",\"RDU\",-10.00,8.00,0.00,\"\",0.00,107.00,72.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3257\",\"LGA\",\"RDU\",-9.00,-2.00,0.00,\"\",0.00,96.00,73.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3257\",\"LGA\",\"RDU\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,28,\"MQ\",\"3257\",\"LGA\",\"RDU\",6.00,24.00,0.00,\"\",0.00,107.00,64.00,431.00,3.00,0.00,18.00,0.00,3.00,\n2015,5,29,\"MQ\",\"3257\",\"LGA\",\"RDU\",0.00,6.00,0.00,\"\",0.00,95.00,61.00,431.00,,,,,,\n2015,5,31,\"MQ\",\"3257\",\"LGA\",\"RDU\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,7,\"MQ\",\"3259\",\"DCA\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,69.00,44.00,213.00,,,,,,\n2015,5,8,\"MQ\",\"3259\",\"DCA\",\"JFK\",88.00,96.00,0.00,\"\",0.00,91.00,45.00,213.00,4.00,0.00,8.00,0.00,84.00,\n2015,5,9,\"MQ\",\"3259\",\"DCA\",\"JFK\",-3.00,19.00,0.00,\"\",0.00,105.00,51.00,213.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,10,\"MQ\",\"3259\",\"DCA\",\"JFK\",5.00,-4.00,0.00,\"\",0.00,74.00,45.00,213.00,,,,,,\n2015,5,11,\"MQ\",\"3259\",\"DCA\",\"JFK\",-5.00,-3.00,0.00,\"\",0.00,85.00,57.00,213.00,,,,,,\n2015,5,12,\"MQ\",\"3259\",\"DCA\",\"JFK\",0.00,-1.00,0.00,\"\",0.00,82.00,54.00,213.00,,,,,,\n2015,5,13,\"MQ\",\"3259\",\"DCA\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,79.00,47.00,213.00,,,,,,\n2015,5,14,\"MQ\",\"3259\",\"DCA\",\"JFK\",0.00,-13.00,0.00,\"\",0.00,70.00,43.00,213.00,,,,,,\n2015,5,15,\"MQ\",\"3259\",\"DCA\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,73.00,42.00,213.00,,,,,,\n2015,5,16,\"MQ\",\"3259\",\"DCA\",\"JFK\",28.00,11.00,0.00,\"\",0.00,66.00,43.00,213.00,,,,,,\n2015,5,17,\"MQ\",\"3259\",\"DCA\",\"JFK\",12.00,-4.00,0.00,\"\",0.00,67.00,46.00,213.00,,,,,,\n2015,5,18,\"MQ\",\"3259\",\"DCA\",\"JFK\",177.00,177.00,0.00,\"\",0.00,83.00,47.00,213.00,0.00,0.00,89.00,0.00,88.00,\n2015,5,19,\"MQ\",\"3259\",\"DCA\",\"JFK\",21.00,4.00,0.00,\"\",0.00,66.00,42.00,213.00,,,,,,\n2015,5,20,\"MQ\",\"3259\",\"DCA\",\"JFK\",0.00,-1.00,0.00,\"\",0.00,82.00,42.00,213.00,,,,,,\n2015,5,21,\"MQ\",\"3259\",\"DCA\",\"JFK\",,,1.00,\"A\",0.00,,,213.00,,,,,,\n2015,5,22,\"MQ\",\"3259\",\"DCA\",\"JFK\",10.00,3.00,0.00,\"\",0.00,76.00,42.00,213.00,,,,,,\n2015,5,23,\"MQ\",\"3259\",\"DCA\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,65.00,41.00,213.00,,,,,,\n2015,5,24,\"MQ\",\"3259\",\"DCA\",\"JFK\",13.00,-10.00,0.00,\"\",0.00,60.00,41.00,213.00,,,,,,\n2015,5,25,\"MQ\",\"3259\",\"DCA\",\"JFK\",24.00,14.00,0.00,\"\",0.00,73.00,42.00,213.00,,,,,,\n2015,5,26,\"MQ\",\"3259\",\"DCA\",\"JFK\",-8.00,-30.00,0.00,\"\",0.00,61.00,43.00,213.00,,,,,,\n2015,5,27,\"MQ\",\"3259\",\"DCA\",\"JFK\",24.00,6.00,0.00,\"\",0.00,65.00,40.00,213.00,,,,,,\n2015,5,28,\"MQ\",\"3259\",\"DCA\",\"JFK\",,,1.00,\"C\",0.00,,,213.00,,,,,,\n2015,5,29,\"MQ\",\"3259\",\"DCA\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,70.00,44.00,213.00,,,,,,\n2015,5,30,\"MQ\",\"3259\",\"DCA\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,65.00,40.00,213.00,,,,,,\n2015,5,31,\"MQ\",\"3259\",\"DCA\",\"JFK\",26.00,19.00,0.00,\"\",0.00,76.00,42.00,213.00,18.00,0.00,0.00,0.00,1.00,\n2015,5,7,\"MQ\",\"3259\",\"JFK\",\"DCA\",-10.00,-39.00,0.00,\"\",0.00,59.00,39.00,213.00,,,,,,\n2015,5,8,\"MQ\",\"3259\",\"JFK\",\"DCA\",-2.00,84.00,0.00,\"\",0.00,174.00,61.00,213.00,0.00,0.00,84.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3259\",\"JFK\",\"DCA\",-5.00,-30.00,0.00,\"\",0.00,63.00,46.00,213.00,,,,,,\n2015,5,10,\"MQ\",\"3259\",\"JFK\",\"DCA\",-7.00,-33.00,0.00,\"\",0.00,62.00,42.00,213.00,,,,,,\n2015,5,11,\"MQ\",\"3259\",\"JFK\",\"DCA\",-1.00,-32.00,0.00,\"\",0.00,57.00,39.00,213.00,,,,,,\n2015,5,12,\"MQ\",\"3259\",\"JFK\",\"DCA\",-5.00,-31.00,0.00,\"\",0.00,62.00,42.00,213.00,,,,,,\n2015,5,13,\"MQ\",\"3259\",\"JFK\",\"DCA\",-6.00,-36.00,0.00,\"\",0.00,58.00,42.00,213.00,,,,,,\n2015,5,14,\"MQ\",\"3259\",\"JFK\",\"DCA\",-7.00,-37.00,0.00,\"\",0.00,58.00,38.00,213.00,,,,,,\n2015,5,15,\"MQ\",\"3259\",\"JFK\",\"DCA\",10.00,-11.00,0.00,\"\",0.00,67.00,50.00,213.00,,,,,,\n2015,5,16,\"MQ\",\"3259\",\"JFK\",\"DCA\",-7.00,0.00,0.00,\"\",0.00,95.00,51.00,213.00,,,,,,\n2015,5,17,\"MQ\",\"3259\",\"JFK\",\"DCA\",12.00,-2.00,0.00,\"\",0.00,74.00,39.00,213.00,,,,,,\n2015,5,18,\"MQ\",\"3259\",\"JFK\",\"DCA\",50.00,88.00,0.00,\"\",0.00,126.00,41.00,213.00,50.00,0.00,38.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3259\",\"JFK\",\"DCA\",-4.00,-32.00,0.00,\"\",0.00,60.00,46.00,213.00,,,,,,\n2015,5,20,\"MQ\",\"3259\",\"JFK\",\"DCA\",-2.00,-28.00,0.00,\"\",0.00,62.00,40.00,213.00,,,,,,\n2015,5,21,\"MQ\",\"3259\",\"JFK\",\"DCA\",18.00,-5.00,0.00,\"\",0.00,65.00,46.00,213.00,,,,,,\n2015,5,22,\"MQ\",\"3259\",\"JFK\",\"DCA\",-8.00,3.00,0.00,\"\",0.00,99.00,47.00,213.00,,,,,,\n2015,5,23,\"MQ\",\"3259\",\"JFK\",\"DCA\",-9.00,-27.00,0.00,\"\",0.00,70.00,40.00,213.00,,,,,,\n2015,5,24,\"MQ\",\"3259\",\"JFK\",\"DCA\",40.00,12.00,0.00,\"\",0.00,60.00,41.00,213.00,,,,,,\n2015,5,25,\"MQ\",\"3259\",\"JFK\",\"DCA\",-7.00,-32.00,0.00,\"\",0.00,63.00,40.00,213.00,,,,,,\n2015,5,26,\"MQ\",\"3259\",\"JFK\",\"DCA\",-8.00,-30.00,0.00,\"\",0.00,66.00,41.00,213.00,,,,,,\n2015,5,27,\"MQ\",\"3259\",\"JFK\",\"DCA\",-4.00,-31.00,0.00,\"\",0.00,61.00,44.00,213.00,,,,,,\n2015,5,28,\"MQ\",\"3259\",\"JFK\",\"DCA\",,,1.00,\"C\",0.00,,,213.00,,,,,,\n2015,5,29,\"MQ\",\"3259\",\"JFK\",\"DCA\",-6.00,-35.00,0.00,\"\",0.00,59.00,42.00,213.00,,,,,,\n2015,5,30,\"MQ\",\"3259\",\"JFK\",\"DCA\",-4.00,-22.00,0.00,\"\",0.00,70.00,41.00,213.00,,,,,,\n2015,5,31,\"MQ\",\"3259\",\"JFK\",\"DCA\",2.00,2.00,0.00,\"\",0.00,88.00,41.00,213.00,,,,,,\n2015,5,1,\"MQ\",\"3260\",\"IND\",\"JFK\",-7.00,-8.00,0.00,\"\",0.00,131.00,107.00,665.00,,,,,,\n2015,5,2,\"MQ\",\"3260\",\"IND\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,119.00,105.00,665.00,,,,,,\n2015,5,3,\"MQ\",\"3260\",\"IND\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,125.00,108.00,665.00,,,,,,\n2015,5,4,\"MQ\",\"3260\",\"IND\",\"JFK\",50.00,49.00,0.00,\"\",0.00,131.00,107.00,665.00,6.00,0.00,0.00,0.00,43.00,\n2015,5,5,\"MQ\",\"3260\",\"IND\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,121.00,100.00,665.00,,,,,,\n2015,5,6,\"MQ\",\"3260\",\"IND\",\"JFK\",-10.00,-18.00,0.00,\"\",0.00,124.00,101.00,665.00,,,,,,\n2015,5,7,\"MQ\",\"3260\",\"IND\",\"JFK\",-4.00,2.00,0.00,\"\",0.00,134.00,111.00,665.00,,,,,,\n2015,5,8,\"MQ\",\"3260\",\"IND\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,119.00,102.00,665.00,,,,,,\n2015,5,9,\"MQ\",\"3260\",\"IND\",\"JFK\",16.00,9.00,0.00,\"\",0.00,121.00,103.00,665.00,,,,,,\n2015,5,10,\"MQ\",\"3260\",\"IND\",\"JFK\",-3.00,-2.00,0.00,\"\",0.00,129.00,105.00,665.00,,,,,,\n2015,5,11,\"MQ\",\"3260\",\"IND\",\"JFK\",-5.00,6.00,0.00,\"\",0.00,139.00,119.00,665.00,,,,,,\n2015,5,12,\"MQ\",\"3260\",\"IND\",\"JFK\",69.00,67.00,0.00,\"\",0.00,126.00,112.00,665.00,0.00,0.00,67.00,0.00,0.00,\n2015,5,13,\"MQ\",\"3260\",\"IND\",\"JFK\",52.00,48.00,0.00,\"\",0.00,124.00,93.00,665.00,8.00,0.00,0.00,0.00,40.00,\n2015,5,14,\"MQ\",\"3260\",\"IND\",\"JFK\",1.00,2.00,0.00,\"\",0.00,129.00,96.00,665.00,,,,,,\n2015,5,15,\"MQ\",\"3260\",\"IND\",\"JFK\",-5.00,12.00,0.00,\"\",0.00,145.00,110.00,665.00,,,,,,\n2015,5,16,\"MQ\",\"3260\",\"IND\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,122.00,104.00,665.00,,,,,,\n2015,5,17,\"MQ\",\"3260\",\"IND\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,121.00,104.00,665.00,,,,,,\n2015,5,18,\"MQ\",\"3260\",\"IND\",\"JFK\",,,1.00,\"C\",0.00,,,665.00,,,,,,\n2015,5,19,\"MQ\",\"3260\",\"IND\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,110.00,95.00,665.00,,,,,,\n2015,5,20,\"MQ\",\"3260\",\"IND\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,117.00,96.00,665.00,,,,,,\n2015,5,21,\"MQ\",\"3260\",\"IND\",\"JFK\",-8.00,-23.00,0.00,\"\",0.00,113.00,95.00,665.00,,,,,,\n2015,5,22,\"MQ\",\"3260\",\"IND\",\"JFK\",-10.00,-23.00,0.00,\"\",0.00,115.00,96.00,665.00,,,,,,\n2015,5,23,\"MQ\",\"3260\",\"IND\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,110.00,95.00,665.00,,,,,,\n2015,5,24,\"MQ\",\"3260\",\"IND\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,124.00,95.00,665.00,,,,,,\n2015,5,25,\"MQ\",\"3260\",\"IND\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,116.00,101.00,665.00,,,,,,\n2015,5,26,\"MQ\",\"3260\",\"IND\",\"JFK\",12.00,4.00,0.00,\"\",0.00,120.00,102.00,665.00,,,,,,\n2015,5,27,\"MQ\",\"3260\",\"IND\",\"JFK\",-2.00,6.00,0.00,\"\",0.00,136.00,103.00,665.00,,,,,,\n2015,5,28,\"MQ\",\"3260\",\"IND\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,117.00,100.00,665.00,,,,,,\n2015,5,29,\"MQ\",\"3260\",\"IND\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,118.00,98.00,665.00,,,,,,\n2015,5,30,\"MQ\",\"3260\",\"IND\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,122.00,103.00,665.00,,,,,,\n2015,5,31,\"MQ\",\"3260\",\"IND\",\"JFK\",-7.00,-4.00,0.00,\"\",0.00,131.00,104.00,665.00,,,,,,\n2015,5,1,\"MQ\",\"3264\",\"JFK\",\"BWI\",-2.00,-16.00,0.00,\"\",0.00,68.00,38.00,184.00,,,,,,\n2015,5,2,\"MQ\",\"3264\",\"JFK\",\"BWI\",-5.00,-24.00,0.00,\"\",0.00,63.00,44.00,184.00,,,,,,\n2015,5,3,\"MQ\",\"3264\",\"JFK\",\"BWI\",-8.00,-12.00,0.00,\"\",0.00,78.00,36.00,184.00,,,,,,\n2015,5,4,\"MQ\",\"3264\",\"JFK\",\"BWI\",-8.00,-21.00,0.00,\"\",0.00,69.00,38.00,184.00,,,,,,\n2015,5,5,\"MQ\",\"3264\",\"JFK\",\"BWI\",-8.00,-28.00,0.00,\"\",0.00,62.00,37.00,184.00,,,,,,\n2015,5,6,\"MQ\",\"3264\",\"JFK\",\"BWI\",-1.00,21.00,0.00,\"\",0.00,104.00,55.00,184.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3264\",\"JFK\",\"BWI\",0.00,0.00,0.00,\"\",0.00,82.00,37.00,184.00,,,,,,\n2015,5,8,\"MQ\",\"3264\",\"JFK\",\"BWI\",-6.00,-8.00,0.00,\"\",0.00,80.00,34.00,184.00,,,,,,\n2015,5,9,\"MQ\",\"3264\",\"JFK\",\"BWI\",-5.00,-19.00,0.00,\"\",0.00,68.00,35.00,184.00,,,,,,\n2015,5,10,\"MQ\",\"3264\",\"JFK\",\"BWI\",-7.00,19.00,0.00,\"\",0.00,108.00,35.00,184.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,11,\"MQ\",\"3264\",\"JFK\",\"BWI\",-6.00,0.00,0.00,\"\",0.00,88.00,37.00,184.00,,,,,,\n2015,5,12,\"MQ\",\"3264\",\"JFK\",\"BWI\",59.00,43.00,0.00,\"\",0.00,66.00,39.00,184.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,13,\"MQ\",\"3264\",\"JFK\",\"BWI\",-5.00,-14.00,0.00,\"\",0.00,73.00,40.00,184.00,,,,,,\n2015,5,14,\"MQ\",\"3264\",\"JFK\",\"BWI\",-9.00,-9.00,0.00,\"\",0.00,82.00,34.00,184.00,,,,,,\n2015,5,15,\"MQ\",\"3264\",\"JFK\",\"BWI\",-7.00,-20.00,0.00,\"\",0.00,69.00,40.00,184.00,,,,,,\n2015,5,16,\"MQ\",\"3264\",\"JFK\",\"BWI\",-9.00,-31.00,0.00,\"\",0.00,60.00,42.00,184.00,,,,,,\n2015,5,17,\"MQ\",\"3264\",\"JFK\",\"BWI\",15.00,-5.00,0.00,\"\",0.00,62.00,38.00,184.00,,,,,,\n2015,5,18,\"MQ\",\"3264\",\"JFK\",\"BWI\",126.00,160.00,0.00,\"\",0.00,116.00,75.00,184.00,0.00,0.00,42.00,0.00,118.00,\n2015,5,19,\"MQ\",\"3264\",\"JFK\",\"BWI\",0.00,11.00,0.00,\"\",0.00,93.00,50.00,184.00,,,,,,\n2015,5,20,\"MQ\",\"3264\",\"JFK\",\"BWI\",-4.00,-19.00,0.00,\"\",0.00,67.00,36.00,184.00,,,,,,\n2015,5,21,\"MQ\",\"3264\",\"JFK\",\"BWI\",115.00,104.00,0.00,\"\",0.00,71.00,53.00,184.00,0.00,0.00,0.00,0.00,104.00,\n2015,5,22,\"MQ\",\"3264\",\"JFK\",\"BWI\",-7.00,-18.00,0.00,\"\",0.00,71.00,38.00,184.00,,,,,,\n2015,5,23,\"MQ\",\"3264\",\"JFK\",\"BWI\",-9.00,-29.00,0.00,\"\",0.00,62.00,36.00,184.00,,,,,,\n2015,5,24,\"MQ\",\"3264\",\"JFK\",\"BWI\",-9.00,-31.00,0.00,\"\",0.00,60.00,34.00,184.00,,,,,,\n2015,5,25,\"MQ\",\"3264\",\"JFK\",\"BWI\",-3.00,-19.00,0.00,\"\",0.00,66.00,38.00,184.00,,,,,,\n2015,5,26,\"MQ\",\"3264\",\"JFK\",\"BWI\",21.00,4.00,0.00,\"\",0.00,65.00,35.00,184.00,,,,,,\n2015,5,27,\"MQ\",\"3264\",\"JFK\",\"BWI\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,28,\"MQ\",\"3264\",\"JFK\",\"BWI\",6.00,-6.00,0.00,\"\",0.00,70.00,49.00,184.00,,,,,,\n2015,5,29,\"MQ\",\"3264\",\"JFK\",\"BWI\",65.00,60.00,0.00,\"\",0.00,77.00,41.00,184.00,20.00,0.00,0.00,0.00,40.00,\n2015,5,30,\"MQ\",\"3264\",\"JFK\",\"BWI\",-11.00,2.00,0.00,\"\",0.00,95.00,51.00,184.00,,,,,,\n2015,5,31,\"MQ\",\"3264\",\"JFK\",\"BWI\",38.00,54.00,0.00,\"\",0.00,98.00,51.00,184.00,0.00,0.00,16.00,0.00,38.00,\n2015,5,7,\"MQ\",\"3270\",\"ORD\",\"ROC\",-1.00,1.00,0.00,\"\",0.00,115.00,71.00,528.00,,,,,,\n2015,5,8,\"MQ\",\"3270\",\"ORD\",\"ROC\",196.00,188.00,0.00,\"\",0.00,105.00,76.00,528.00,0.00,5.00,0.00,0.00,183.00,\n2015,5,9,\"MQ\",\"3270\",\"ORD\",\"ROC\",-3.00,-21.00,0.00,\"\",0.00,95.00,73.00,528.00,,,,,,\n2015,5,10,\"MQ\",\"3270\",\"ORD\",\"ROC\",-3.00,-26.00,0.00,\"\",0.00,90.00,72.00,528.00,,,,,,\n2015,5,11,\"MQ\",\"3270\",\"ORD\",\"ROC\",-4.00,-18.00,0.00,\"\",0.00,99.00,74.00,528.00,,,,,,\n2015,5,12,\"MQ\",\"3270\",\"ORD\",\"ROC\",4.00,-18.00,0.00,\"\",0.00,91.00,69.00,528.00,,,,,,\n2015,5,13,\"MQ\",\"3270\",\"ORD\",\"ROC\",0.00,-15.00,0.00,\"\",0.00,98.00,71.00,528.00,,,,,,\n2015,5,14,\"MQ\",\"3270\",\"ORD\",\"ROC\",-2.00,-12.00,0.00,\"\",0.00,103.00,69.00,528.00,,,,,,\n2015,5,15,\"MQ\",\"3270\",\"ORD\",\"ROC\",-2.00,-13.00,0.00,\"\",0.00,102.00,73.00,528.00,,,,,,\n2015,5,16,\"MQ\",\"3270\",\"ORD\",\"ROC\",0.00,-11.00,0.00,\"\",0.00,102.00,72.00,528.00,,,,,,\n2015,5,17,\"MQ\",\"3270\",\"ORD\",\"ROC\",-4.00,-31.00,0.00,\"\",0.00,86.00,72.00,528.00,,,,,,\n2015,5,18,\"MQ\",\"3270\",\"ORD\",\"ROC\",71.00,56.00,0.00,\"\",0.00,98.00,71.00,528.00,13.00,0.00,0.00,0.00,43.00,\n2015,5,19,\"MQ\",\"3270\",\"ORD\",\"ROC\",-6.00,-7.00,0.00,\"\",0.00,112.00,67.00,528.00,,,,,,\n2015,5,20,\"MQ\",\"3270\",\"ORD\",\"ROC\",5.00,-5.00,0.00,\"\",0.00,103.00,68.00,528.00,,,,,,\n2015,5,21,\"MQ\",\"3270\",\"ORD\",\"ROC\",-4.00,-13.00,0.00,\"\",0.00,104.00,75.00,528.00,,,,,,\n2015,5,22,\"MQ\",\"3270\",\"ORD\",\"ROC\",-1.00,-6.00,0.00,\"\",0.00,108.00,72.00,528.00,,,,,,\n2015,5,23,\"MQ\",\"3270\",\"ORD\",\"ROC\",-4.00,-16.00,0.00,\"\",0.00,101.00,72.00,528.00,,,,,,\n2015,5,24,\"MQ\",\"3270\",\"ORD\",\"ROC\",15.00,9.00,0.00,\"\",0.00,107.00,70.00,528.00,,,,,,\n2015,5,25,\"MQ\",\"3270\",\"ORD\",\"ROC\",-3.00,-17.00,0.00,\"\",0.00,99.00,70.00,528.00,,,,,,\n2015,5,26,\"MQ\",\"3270\",\"ORD\",\"ROC\",3.00,2.00,0.00,\"\",0.00,112.00,72.00,528.00,,,,,,\n2015,5,27,\"MQ\",\"3270\",\"ORD\",\"ROC\",12.00,13.00,0.00,\"\",0.00,114.00,82.00,528.00,,,,,,\n2015,5,28,\"MQ\",\"3270\",\"ORD\",\"ROC\",-4.00,-11.00,0.00,\"\",0.00,106.00,70.00,528.00,,,,,,\n2015,5,29,\"MQ\",\"3270\",\"ORD\",\"ROC\",-2.00,-16.00,0.00,\"\",0.00,99.00,73.00,528.00,,,,,,\n2015,5,30,\"MQ\",\"3270\",\"ORD\",\"ROC\",19.00,1.00,0.00,\"\",0.00,95.00,72.00,528.00,,,,,,\n2015,5,31,\"MQ\",\"3270\",\"ORD\",\"ROC\",-2.00,-7.00,0.00,\"\",0.00,108.00,72.00,528.00,,,,,,\n2015,5,1,\"MQ\",\"3274\",\"RDU\",\"LGA\",30.00,40.00,0.00,\"\",0.00,100.00,69.00,431.00,0.00,0.00,10.00,0.00,30.00,\n2015,5,3,\"MQ\",\"3274\",\"RDU\",\"LGA\",15.00,17.00,0.00,\"\",0.00,92.00,67.00,431.00,0.00,0.00,2.00,0.00,15.00,\n2015,5,4,\"MQ\",\"3274\",\"RDU\",\"LGA\",6.00,8.00,0.00,\"\",0.00,92.00,69.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3274\",\"RDU\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,89.00,70.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3274\",\"RDU\",\"LGA\",124.00,146.00,0.00,\"\",0.00,112.00,66.00,431.00,119.00,0.00,22.00,0.00,5.00,\n2015,5,7,\"MQ\",\"3274\",\"RDU\",\"LGA\",27.00,34.00,0.00,\"\",0.00,97.00,70.00,431.00,0.00,0.00,7.00,0.00,27.00,\n2015,5,8,\"MQ\",\"3274\",\"RDU\",\"LGA\",86.00,102.00,0.00,\"\",0.00,106.00,73.00,431.00,0.00,0.00,20.00,0.00,82.00,\n2015,5,10,\"MQ\",\"3274\",\"RDU\",\"LGA\",-9.00,-13.00,0.00,\"\",0.00,86.00,65.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3274\",\"RDU\",\"LGA\",24.00,21.00,0.00,\"\",0.00,87.00,74.00,431.00,4.00,0.00,0.00,0.00,17.00,\n2015,5,12,\"MQ\",\"3274\",\"RDU\",\"LGA\",,,1.00,\"A\",0.00,,,431.00,,,,,,\n2015,5,13,\"MQ\",\"3274\",\"RDU\",\"LGA\",32.00,30.00,0.00,\"\",0.00,88.00,64.00,431.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"MQ\",\"3274\",\"RDU\",\"LGA\",-4.00,1.00,0.00,\"\",0.00,95.00,70.00,431.00,,,,,,\n2015,5,15,\"MQ\",\"3274\",\"RDU\",\"LGA\",1.00,-3.00,0.00,\"\",0.00,86.00,69.00,431.00,,,,,,\n2015,5,17,\"MQ\",\"3274\",\"RDU\",\"LGA\",21.00,16.00,0.00,\"\",0.00,85.00,64.00,431.00,5.00,0.00,0.00,0.00,11.00,\n2015,5,18,\"MQ\",\"3274\",\"RDU\",\"LGA\",230.00,249.00,0.00,\"\",0.00,109.00,68.00,431.00,0.00,0.00,237.00,0.00,12.00,\n2015,5,19,\"MQ\",\"3274\",\"RDU\",\"LGA\",75.00,77.00,0.00,\"\",0.00,92.00,63.00,431.00,0.00,0.00,42.00,0.00,35.00,\n2015,5,20,\"MQ\",\"3274\",\"RDU\",\"LGA\",10.00,12.00,0.00,\"\",0.00,92.00,58.00,431.00,,,,,,\n2015,5,21,\"MQ\",\"3274\",\"RDU\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,78.00,61.00,431.00,,,,,,\n2015,5,22,\"MQ\",\"3274\",\"RDU\",\"LGA\",42.00,43.00,0.00,\"\",0.00,91.00,58.00,431.00,40.00,0.00,1.00,0.00,2.00,\n2015,5,25,\"MQ\",\"3274\",\"RDU\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,89.00,67.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3274\",\"RDU\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,90.00,68.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3274\",\"RDU\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,88.00,68.00,431.00,,,,,,\n2015,5,28,\"MQ\",\"3274\",\"RDU\",\"LGA\",-1.00,19.00,0.00,\"\",0.00,110.00,67.00,431.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3274\",\"RDU\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,87.00,66.00,431.00,,,,,,\n2015,5,31,\"MQ\",\"3274\",\"RDU\",\"LGA\",-6.00,-1.00,0.00,\"\",0.00,95.00,66.00,431.00,,,,,,\n2015,5,1,\"MQ\",\"3329\",\"CMH\",\"JFK\",-9.00,-17.00,0.00,\"\",0.00,100.00,87.00,483.00,,,,,,\n2015,5,2,\"MQ\",\"3329\",\"CMH\",\"JFK\",-11.00,-12.00,0.00,\"\",0.00,107.00,88.00,483.00,,,,,,\n2015,5,3,\"MQ\",\"3329\",\"CMH\",\"JFK\",-9.00,-19.00,0.00,\"\",0.00,98.00,79.00,483.00,,,,,,\n2015,5,4,\"MQ\",\"3329\",\"CMH\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,100.00,80.00,483.00,,,,,,\n2015,5,5,\"MQ\",\"3329\",\"CMH\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,102.00,77.00,483.00,,,,,,\n2015,5,6,\"MQ\",\"3329\",\"CMH\",\"JFK\",34.00,22.00,0.00,\"\",0.00,96.00,80.00,483.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3329\",\"CMH\",\"JFK\",-10.00,-13.00,0.00,\"\",0.00,105.00,85.00,483.00,,,,,,\n2015,5,8,\"MQ\",\"3329\",\"CMH\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,107.00,87.00,483.00,,,,,,\n2015,5,9,\"MQ\",\"3329\",\"CMH\",\"JFK\",0.00,1.00,0.00,\"\",0.00,109.00,94.00,483.00,,,,,,\n2015,5,10,\"MQ\",\"3329\",\"CMH\",\"JFK\",-8.00,-24.00,0.00,\"\",0.00,92.00,74.00,483.00,,,,,,\n2015,5,11,\"MQ\",\"3329\",\"CMH\",\"JFK\",7.00,2.00,0.00,\"\",0.00,103.00,81.00,483.00,,,,,,\n2015,5,12,\"MQ\",\"3329\",\"CMH\",\"JFK\",4.00,-3.00,0.00,\"\",0.00,101.00,80.00,483.00,,,,,,\n2015,5,13,\"MQ\",\"3329\",\"CMH\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,92.00,80.00,483.00,,,,,,\n2015,5,14,\"MQ\",\"3329\",\"CMH\",\"JFK\",-10.00,-20.00,0.00,\"\",0.00,98.00,79.00,483.00,,,,,,\n2015,5,15,\"MQ\",\"3329\",\"CMH\",\"JFK\",-5.00,-21.00,0.00,\"\",0.00,92.00,74.00,483.00,,,,,,\n2015,5,16,\"MQ\",\"3329\",\"CMH\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,107.00,75.00,483.00,,,,,,\n2015,5,17,\"MQ\",\"3329\",\"CMH\",\"JFK\",-14.00,-15.00,0.00,\"\",0.00,107.00,80.00,483.00,,,,,,\n2015,5,18,\"MQ\",\"3329\",\"CMH\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,106.00,80.00,483.00,,,,,,\n2015,5,19,\"MQ\",\"3329\",\"CMH\",\"JFK\",4.00,-4.00,0.00,\"\",0.00,100.00,84.00,483.00,,,,,,\n2015,5,20,\"MQ\",\"3329\",\"CMH\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,94.00,75.00,483.00,,,,,,\n2015,5,21,\"MQ\",\"3329\",\"CMH\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,88.00,71.00,483.00,,,,,,\n2015,5,22,\"MQ\",\"3329\",\"CMH\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,91.00,77.00,483.00,,,,,,\n2015,5,23,\"MQ\",\"3329\",\"CMH\",\"JFK\",-9.00,-19.00,0.00,\"\",0.00,98.00,79.00,483.00,,,,,,\n2015,5,24,\"MQ\",\"3329\",\"CMH\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,95.00,77.00,483.00,,,,,,\n2015,5,25,\"MQ\",\"3329\",\"CMH\",\"JFK\",-8.00,-21.00,0.00,\"\",0.00,95.00,79.00,483.00,,,,,,\n2015,5,26,\"MQ\",\"3329\",\"CMH\",\"JFK\",-11.00,-26.00,0.00,\"\",0.00,93.00,76.00,483.00,,,,,,\n2015,5,27,\"MQ\",\"3329\",\"CMH\",\"JFK\",-10.00,-15.00,0.00,\"\",0.00,103.00,84.00,483.00,,,,,,\n2015,5,28,\"MQ\",\"3329\",\"CMH\",\"JFK\",,,1.00,\"C\",0.00,,,483.00,,,,,,\n2015,5,29,\"MQ\",\"3329\",\"CMH\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,100.00,78.00,483.00,,,,,,\n2015,5,30,\"MQ\",\"3329\",\"CMH\",\"JFK\",-7.00,-7.00,0.00,\"\",0.00,108.00,88.00,483.00,,,,,,\n2015,5,31,\"MQ\",\"3329\",\"CMH\",\"JFK\",0.00,18.00,0.00,\"\",0.00,126.00,88.00,483.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3230\",\"DCA\",\"JFK\",1.00,32.00,0.00,\"\",0.00,114.00,46.00,213.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,2,\"MQ\",\"3230\",\"DCA\",\"JFK\",9.00,4.00,0.00,\"\",0.00,78.00,50.00,213.00,,,,,,\n2015,5,3,\"MQ\",\"3230\",\"DCA\",\"JFK\",5.00,-7.00,0.00,\"\",0.00,71.00,46.00,213.00,,,,,,\n2015,5,4,\"MQ\",\"3230\",\"DCA\",\"JFK\",25.00,3.00,0.00,\"\",0.00,61.00,40.00,213.00,,,,,,\n2015,5,5,\"MQ\",\"3230\",\"DCA\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,71.00,45.00,213.00,,,,,,\n2015,5,6,\"MQ\",\"3230\",\"DCA\",\"JFK\",1.00,-14.00,0.00,\"\",0.00,68.00,41.00,213.00,,,,,,\n2015,5,1,\"MQ\",\"3230\",\"JFK\",\"DCA\",-7.00,-17.00,0.00,\"\",0.00,78.00,42.00,213.00,,,,,,\n2015,5,2,\"MQ\",\"3230\",\"JFK\",\"DCA\",-3.00,-11.00,0.00,\"\",0.00,80.00,38.00,213.00,,,,,,\n2015,5,3,\"MQ\",\"3230\",\"JFK\",\"DCA\",-8.00,-36.00,0.00,\"\",0.00,60.00,41.00,213.00,,,,,,\n2015,5,4,\"MQ\",\"3230\",\"JFK\",\"DCA\",-7.00,-15.00,0.00,\"\",0.00,80.00,40.00,213.00,,,,,,\n2015,5,5,\"MQ\",\"3230\",\"JFK\",\"DCA\",-3.00,-12.00,0.00,\"\",0.00,79.00,41.00,213.00,,,,,,\n2015,5,6,\"MQ\",\"3230\",\"JFK\",\"DCA\",10.00,-16.00,0.00,\"\",0.00,62.00,39.00,213.00,,,,,,\n2015,5,1,\"MQ\",\"3235\",\"LGA\",\"ATL\",-7.00,-42.00,0.00,\"\",0.00,118.00,96.00,762.00,,,,,,\n2015,5,3,\"MQ\",\"3235\",\"LGA\",\"ATL\",-3.00,-15.00,0.00,\"\",0.00,141.00,102.00,762.00,,,,,,\n2015,5,4,\"MQ\",\"3235\",\"LGA\",\"ATL\",-2.00,-27.00,0.00,\"\",0.00,128.00,103.00,762.00,,,,,,\n2015,5,5,\"MQ\",\"3235\",\"LGA\",\"ATL\",30.00,13.00,0.00,\"\",0.00,136.00,112.00,762.00,,,,,,\n2015,5,6,\"MQ\",\"3235\",\"LGA\",\"ATL\",-6.00,-4.00,0.00,\"\",0.00,155.00,106.00,762.00,,,,,,\n2015,5,7,\"MQ\",\"3235\",\"LGA\",\"ATL\",-6.00,-21.00,0.00,\"\",0.00,138.00,106.00,762.00,,,,,,\n2015,5,8,\"MQ\",\"3235\",\"LGA\",\"ATL\",0.00,-22.00,0.00,\"\",0.00,131.00,101.00,762.00,,,,,,\n2015,5,10,\"MQ\",\"3235\",\"LGA\",\"ATL\",2.00,-16.00,0.00,\"\",0.00,135.00,102.00,762.00,,,,,,\n2015,5,11,\"MQ\",\"3235\",\"LGA\",\"ATL\",57.00,38.00,0.00,\"\",0.00,134.00,106.00,762.00,6.00,0.00,0.00,0.00,32.00,\n2015,5,12,\"MQ\",\"3235\",\"LGA\",\"ATL\",69.00,49.00,0.00,\"\",0.00,133.00,109.00,762.00,0.00,0.00,0.00,0.00,49.00,\n2015,5,13,\"MQ\",\"3235\",\"LGA\",\"ATL\",-1.00,-7.00,0.00,\"\",0.00,147.00,99.00,762.00,,,,,,\n2015,5,14,\"MQ\",\"3235\",\"LGA\",\"ATL\",-3.00,-20.00,0.00,\"\",0.00,136.00,111.00,762.00,,,,,,\n2015,5,15,\"MQ\",\"3235\",\"LGA\",\"ATL\",-11.00,-25.00,0.00,\"\",0.00,139.00,108.00,762.00,,,,,,\n2015,5,17,\"MQ\",\"3235\",\"LGA\",\"ATL\",-5.00,-28.00,0.00,\"\",0.00,130.00,99.00,762.00,,,,,,\n2015,5,18,\"MQ\",\"3235\",\"LGA\",\"ATL\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,19,\"MQ\",\"3235\",\"LGA\",\"ATL\",18.00,2.00,0.00,\"\",0.00,137.00,105.00,762.00,,,,,,\n2015,5,20,\"MQ\",\"3235\",\"LGA\",\"ATL\",37.00,59.00,0.00,\"\",0.00,175.00,110.00,762.00,8.00,0.00,22.00,0.00,29.00,\n2015,5,21,\"MQ\",\"3235\",\"LGA\",\"ATL\",-4.00,-6.00,0.00,\"\",0.00,151.00,117.00,762.00,,,,,,\n2015,5,22,\"MQ\",\"3235\",\"LGA\",\"ATL\",-2.00,8.00,0.00,\"\",0.00,163.00,111.00,762.00,,,,,,\n2015,5,24,\"MQ\",\"3235\",\"LGA\",\"ATL\",-6.00,-34.00,0.00,\"\",0.00,125.00,104.00,762.00,,,,,,\n2015,5,25,\"MQ\",\"3235\",\"LGA\",\"ATL\",33.00,59.00,0.00,\"\",0.00,179.00,111.00,762.00,33.00,0.00,26.00,0.00,0.00,\n2015,5,26,\"MQ\",\"3235\",\"LGA\",\"ATL\",1.00,29.00,0.00,\"\",0.00,181.00,112.00,762.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,27,\"MQ\",\"3235\",\"LGA\",\"ATL\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,28,\"MQ\",\"3235\",\"LGA\",\"ATL\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,29,\"MQ\",\"3235\",\"LGA\",\"ATL\",-6.00,1.00,0.00,\"\",0.00,160.00,114.00,762.00,,,,,,\n2015,5,31,\"MQ\",\"3235\",\"LGA\",\"ATL\",74.00,86.00,0.00,\"\",0.00,165.00,118.00,762.00,0.00,74.00,12.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3250\",\"ORD\",\"SYR\",-5.00,-19.00,0.00,\"\",0.00,93.00,81.00,607.00,,,,,,\n2015,5,8,\"MQ\",\"3250\",\"ORD\",\"SYR\",-1.00,-19.00,0.00,\"\",0.00,89.00,80.00,607.00,,,,,,\n2015,5,9,\"MQ\",\"3250\",\"ORD\",\"SYR\",-4.00,-10.00,0.00,\"\",0.00,101.00,81.00,607.00,,,,,,\n2015,5,10,\"MQ\",\"3250\",\"ORD\",\"SYR\",-5.00,-5.00,0.00,\"\",0.00,107.00,86.00,607.00,,,,,,\n2015,5,11,\"MQ\",\"3250\",\"ORD\",\"SYR\",-8.00,-22.00,0.00,\"\",0.00,93.00,77.00,607.00,,,,,,\n2015,5,12,\"MQ\",\"3250\",\"ORD\",\"SYR\",-5.00,-3.00,0.00,\"\",0.00,109.00,86.00,607.00,,,,,,\n2015,5,13,\"MQ\",\"3250\",\"ORD\",\"SYR\",-4.00,-11.00,0.00,\"\",0.00,100.00,82.00,607.00,,,,,,\n2015,5,14,\"MQ\",\"3250\",\"ORD\",\"SYR\",-2.00,-20.00,0.00,\"\",0.00,89.00,77.00,607.00,,,,,,\n2015,5,15,\"MQ\",\"3250\",\"ORD\",\"SYR\",0.00,-14.00,0.00,\"\",0.00,93.00,77.00,607.00,,,,,,\n2015,5,16,\"MQ\",\"3250\",\"ORD\",\"SYR\",5.00,-3.00,0.00,\"\",0.00,99.00,82.00,607.00,,,,,,\n2015,5,17,\"MQ\",\"3250\",\"ORD\",\"SYR\",0.00,-8.00,0.00,\"\",0.00,99.00,83.00,607.00,,,,,,\n2015,5,18,\"MQ\",\"3250\",\"ORD\",\"SYR\",-3.00,-14.00,0.00,\"\",0.00,96.00,81.00,607.00,,,,,,\n2015,5,19,\"MQ\",\"3250\",\"ORD\",\"SYR\",-1.00,-14.00,0.00,\"\",0.00,94.00,81.00,607.00,,,,,,\n2015,5,20,\"MQ\",\"3250\",\"ORD\",\"SYR\",-2.00,-11.00,0.00,\"\",0.00,98.00,78.00,607.00,,,,,,\n2015,5,21,\"MQ\",\"3250\",\"ORD\",\"SYR\",-3.00,-16.00,0.00,\"\",0.00,94.00,79.00,607.00,,,,,,\n2015,5,22,\"MQ\",\"3250\",\"ORD\",\"SYR\",4.00,-13.00,0.00,\"\",0.00,90.00,79.00,607.00,,,,,,\n2015,5,23,\"MQ\",\"3250\",\"ORD\",\"SYR\",-4.00,-17.00,0.00,\"\",0.00,94.00,80.00,607.00,,,,,,\n2015,5,24,\"MQ\",\"3250\",\"ORD\",\"SYR\",-4.00,-16.00,0.00,\"\",0.00,95.00,78.00,607.00,,,,,,\n2015,5,25,\"MQ\",\"3250\",\"ORD\",\"SYR\",0.00,-10.00,0.00,\"\",0.00,97.00,75.00,607.00,,,,,,\n2015,5,26,\"MQ\",\"3250\",\"ORD\",\"SYR\",-2.00,-5.00,0.00,\"\",0.00,104.00,78.00,607.00,,,,,,\n2015,5,27,\"MQ\",\"3250\",\"ORD\",\"SYR\",-4.00,-22.00,0.00,\"\",0.00,89.00,79.00,607.00,,,,,,\n2015,5,28,\"MQ\",\"3250\",\"ORD\",\"SYR\",0.00,-3.00,0.00,\"\",0.00,104.00,83.00,607.00,,,,,,\n2015,5,29,\"MQ\",\"3250\",\"ORD\",\"SYR\",60.00,46.00,0.00,\"\",0.00,93.00,78.00,607.00,0.00,0.00,0.00,0.00,46.00,\n2015,5,30,\"MQ\",\"3250\",\"ORD\",\"SYR\",-4.00,-14.00,0.00,\"\",0.00,97.00,78.00,607.00,,,,,,\n2015,5,31,\"MQ\",\"3250\",\"ORD\",\"SYR\",10.00,6.00,0.00,\"\",0.00,103.00,84.00,607.00,,,,,,\n2015,5,7,\"MQ\",\"3250\",\"SYR\",\"ORD\",-8.00,-15.00,0.00,\"\",0.00,124.00,90.00,607.00,,,,,,\n2015,5,8,\"MQ\",\"3250\",\"SYR\",\"ORD\",-7.00,-4.00,0.00,\"\",0.00,134.00,106.00,607.00,,,,,,\n2015,5,9,\"MQ\",\"3250\",\"SYR\",\"ORD\",-3.00,-7.00,0.00,\"\",0.00,127.00,102.00,607.00,,,,,,\n2015,5,10,\"MQ\",\"3250\",\"SYR\",\"ORD\",-3.00,-6.00,0.00,\"\",0.00,128.00,101.00,607.00,,,,,,\n2015,5,11,\"MQ\",\"3250\",\"SYR\",\"ORD\",-9.00,-24.00,0.00,\"\",0.00,116.00,94.00,607.00,,,,,,\n2015,5,12,\"MQ\",\"3250\",\"SYR\",\"ORD\",-4.00,11.00,0.00,\"\",0.00,146.00,122.00,607.00,,,,,,\n2015,5,13,\"MQ\",\"3250\",\"SYR\",\"ORD\",-6.00,-6.00,0.00,\"\",0.00,131.00,110.00,607.00,,,,,,\n2015,5,14,\"MQ\",\"3250\",\"SYR\",\"ORD\",-6.00,-8.00,0.00,\"\",0.00,129.00,97.00,607.00,,,,,,\n2015,5,15,\"MQ\",\"3250\",\"SYR\",\"ORD\",-10.00,-12.00,0.00,\"\",0.00,129.00,96.00,607.00,,,,,,\n2015,5,16,\"MQ\",\"3250\",\"SYR\",\"ORD\",0.00,-3.00,0.00,\"\",0.00,128.00,99.00,607.00,,,,,,\n2015,5,17,\"MQ\",\"3250\",\"SYR\",\"ORD\",-6.00,-14.00,0.00,\"\",0.00,123.00,93.00,607.00,,,,,,\n2015,5,18,\"MQ\",\"3250\",\"SYR\",\"ORD\",-8.00,-19.00,0.00,\"\",0.00,120.00,99.00,607.00,,,,,,\n2015,5,19,\"MQ\",\"3250\",\"SYR\",\"ORD\",-5.00,-18.00,0.00,\"\",0.00,118.00,98.00,607.00,,,,,,\n2015,5,20,\"MQ\",\"3250\",\"SYR\",\"ORD\",-7.00,1.00,0.00,\"\",0.00,139.00,109.00,607.00,,,,,,\n2015,5,21,\"MQ\",\"3250\",\"SYR\",\"ORD\",-7.00,-17.00,0.00,\"\",0.00,121.00,101.00,607.00,,,,,,\n2015,5,22,\"MQ\",\"3250\",\"SYR\",\"ORD\",-4.00,-4.00,0.00,\"\",0.00,131.00,105.00,607.00,,,,,,\n2015,5,23,\"MQ\",\"3250\",\"SYR\",\"ORD\",-4.00,-21.00,0.00,\"\",0.00,114.00,90.00,607.00,,,,,,\n2015,5,24,\"MQ\",\"3250\",\"SYR\",\"ORD\",-7.00,-9.00,0.00,\"\",0.00,129.00,107.00,607.00,,,,,,\n2015,5,25,\"MQ\",\"3250\",\"SYR\",\"ORD\",-3.00,-7.00,0.00,\"\",0.00,127.00,101.00,607.00,,,,,,\n2015,5,26,\"MQ\",\"3250\",\"SYR\",\"ORD\",-5.00,-15.00,0.00,\"\",0.00,121.00,94.00,607.00,,,,,,\n2015,5,27,\"MQ\",\"3250\",\"SYR\",\"ORD\",-8.00,-21.00,0.00,\"\",0.00,118.00,102.00,607.00,,,,,,\n2015,5,28,\"MQ\",\"3250\",\"SYR\",\"ORD\",-7.00,-13.00,0.00,\"\",0.00,125.00,95.00,607.00,,,,,,\n2015,5,29,\"MQ\",\"3250\",\"SYR\",\"ORD\",44.00,39.00,0.00,\"\",0.00,126.00,94.00,607.00,0.00,0.00,1.00,0.00,38.00,\n2015,5,30,\"MQ\",\"3250\",\"SYR\",\"ORD\",-9.00,-10.00,0.00,\"\",0.00,130.00,103.00,607.00,,,,,,\n2015,5,31,\"MQ\",\"3250\",\"SYR\",\"ORD\",7.00,5.00,0.00,\"\",0.00,129.00,108.00,607.00,,,,,,\n2015,5,1,\"MQ\",\"3305\",\"RDU\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,92.00,69.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3305\",\"RDU\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,94.00,67.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3305\",\"RDU\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,96.00,70.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3305\",\"RDU\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,102.00,65.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3305\",\"RDU\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,96.00,61.00,431.00,,,,,,\n2015,5,1,\"MQ\",\"3199\",\"GSO\",\"LGA\",-10.00,-14.00,0.00,\"\",0.00,95.00,75.00,461.00,,,,,,\n2015,5,3,\"MQ\",\"3199\",\"GSO\",\"LGA\",76.00,72.00,0.00,\"\",0.00,95.00,73.00,461.00,72.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"MQ\",\"3199\",\"GSO\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,98.00,75.00,461.00,,,,,,\n2015,5,5,\"MQ\",\"3199\",\"GSO\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,99.00,72.00,461.00,,,,,,\n2015,5,6,\"MQ\",\"3199\",\"GSO\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,102.00,66.00,461.00,,,,,,\n2015,5,7,\"MQ\",\"3199\",\"GSO\",\"LGA\",-6.00,9.00,0.00,\"\",0.00,115.00,75.00,461.00,,,,,,\n2015,5,8,\"MQ\",\"3199\",\"GSO\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,101.00,69.00,461.00,,,,,,\n2015,5,10,\"MQ\",\"3199\",\"GSO\",\"LGA\",2.00,0.00,0.00,\"\",0.00,98.00,69.00,461.00,,,,,,\n2015,5,11,\"MQ\",\"3199\",\"GSO\",\"LGA\",,,1.00,\"C\",0.00,,,461.00,,,,,,\n2015,5,12,\"MQ\",\"3199\",\"GSO\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,100.00,74.00,461.00,,,,,,\n2015,5,13,\"MQ\",\"3199\",\"GSO\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,97.00,73.00,461.00,,,,,,\n2015,5,14,\"MQ\",\"3199\",\"GSO\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,99.00,73.00,461.00,,,,,,\n2015,5,15,\"MQ\",\"3199\",\"GSO\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,101.00,73.00,461.00,,,,,,\n2015,5,17,\"MQ\",\"3199\",\"GSO\",\"LGA\",-8.00,-1.00,0.00,\"\",0.00,107.00,71.00,461.00,,,,,,\n2015,5,18,\"MQ\",\"3199\",\"GSO\",\"LGA\",,,1.00,\"C\",0.00,,,461.00,,,,,,\n2015,5,19,\"MQ\",\"3199\",\"GSO\",\"LGA\",131.00,135.00,0.00,\"\",0.00,104.00,71.00,461.00,0.00,0.00,4.00,0.00,131.00,\n2015,5,20,\"MQ\",\"3199\",\"GSO\",\"LGA\",-10.00,15.00,0.00,\"\",0.00,125.00,66.00,461.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3199\",\"GSO\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,99.00,66.00,461.00,,,,,,\n2015,5,22,\"MQ\",\"3199\",\"GSO\",\"LGA\",-14.00,-36.00,0.00,\"\",0.00,78.00,67.00,461.00,,,,,,\n2015,5,25,\"MQ\",\"3199\",\"GSO\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,96.00,78.00,461.00,,,,,,\n2015,5,26,\"MQ\",\"3199\",\"GSO\",\"LGA\",-8.00,-23.00,0.00,\"\",0.00,85.00,68.00,461.00,,,,,,\n2015,5,27,\"MQ\",\"3199\",\"GSO\",\"LGA\",,,1.00,\"C\",0.00,,,461.00,,,,,,\n2015,5,28,\"MQ\",\"3199\",\"GSO\",\"LGA\",10.00,33.00,0.00,\"\",0.00,123.00,69.00,461.00,10.00,0.00,23.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3199\",\"GSO\",\"LGA\",105.00,97.00,0.00,\"\",0.00,92.00,72.00,461.00,30.00,0.00,0.00,0.00,67.00,\n2015,5,31,\"MQ\",\"3199\",\"GSO\",\"LGA\",,,1.00,\"C\",0.00,,,461.00,,,,,,\n2015,5,1,\"MQ\",\"3199\",\"LGA\",\"GSO\",-6.00,-19.00,0.00,\"\",0.00,92.00,72.00,461.00,,,,,,\n2015,5,2,\"MQ\",\"3199\",\"LGA\",\"GSO\",-7.00,-7.00,0.00,\"\",0.00,105.00,90.00,461.00,,,,,,\n2015,5,3,\"MQ\",\"3199\",\"LGA\",\"GSO\",-12.00,-26.00,0.00,\"\",0.00,91.00,70.00,461.00,,,,,,\n2015,5,4,\"MQ\",\"3199\",\"LGA\",\"GSO\",-12.00,-8.00,0.00,\"\",0.00,109.00,80.00,461.00,,,,,,\n2015,5,5,\"MQ\",\"3199\",\"LGA\",\"GSO\",-7.00,-13.00,0.00,\"\",0.00,99.00,70.00,461.00,,,,,,\n2015,5,6,\"MQ\",\"3199\",\"LGA\",\"GSO\",-4.00,4.00,0.00,\"\",0.00,113.00,73.00,461.00,,,,,,\n2015,5,7,\"MQ\",\"3199\",\"LGA\",\"GSO\",-9.00,-21.00,0.00,\"\",0.00,93.00,69.00,461.00,,,,,,\n2015,5,8,\"MQ\",\"3199\",\"LGA\",\"GSO\",-2.00,7.00,0.00,\"\",0.00,114.00,72.00,461.00,,,,,,\n2015,5,9,\"MQ\",\"3199\",\"LGA\",\"GSO\",-2.00,-16.00,0.00,\"\",0.00,91.00,72.00,461.00,,,,,,\n2015,5,10,\"MQ\",\"3199\",\"LGA\",\"GSO\",-10.00,-23.00,0.00,\"\",0.00,92.00,74.00,461.00,,,,,,\n2015,5,11,\"MQ\",\"3199\",\"LGA\",\"GSO\",-3.00,29.00,0.00,\"\",0.00,137.00,73.00,461.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3199\",\"LGA\",\"GSO\",-8.00,-3.00,0.00,\"\",0.00,110.00,87.00,461.00,,,,,,\n2015,5,13,\"MQ\",\"3199\",\"LGA\",\"GSO\",-7.00,-5.00,0.00,\"\",0.00,107.00,71.00,461.00,,,,,,\n2015,5,14,\"MQ\",\"3199\",\"LGA\",\"GSO\",-5.00,-16.00,0.00,\"\",0.00,94.00,67.00,461.00,,,,,,\n2015,5,1,\"MQ\",\"3281\",\"CMH\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,98.00,79.00,479.00,,,,,,\n2015,5,2,\"MQ\",\"3281\",\"CMH\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,97.00,81.00,479.00,,,,,,\n2015,5,4,\"MQ\",\"3281\",\"CMH\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,87.00,74.00,479.00,,,,,,\n2015,5,5,\"MQ\",\"3281\",\"CMH\",\"LGA\",-12.00,-17.00,0.00,\"\",0.00,94.00,70.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3281\",\"CMH\",\"LGA\",82.00,94.00,0.00,\"\",0.00,111.00,69.00,479.00,3.00,0.00,12.00,0.00,79.00,\n2015,5,7,\"MQ\",\"3281\",\"CMH\",\"LGA\",45.00,36.00,0.00,\"\",0.00,90.00,70.00,479.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,8,\"MQ\",\"3281\",\"CMH\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,86.00,73.00,479.00,,,,,,\n2015,5,9,\"MQ\",\"3281\",\"CMH\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,94.00,78.00,479.00,,,,,,\n2015,5,10,\"MQ\",\"3281\",\"CMH\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,90.00,72.00,479.00,,,,,,\n2015,5,11,\"MQ\",\"3281\",\"CMH\",\"LGA\",-7.00,5.00,0.00,\"\",0.00,111.00,74.00,479.00,,,,,,\n2015,5,12,\"MQ\",\"3281\",\"CMH\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,83.00,67.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3281\",\"CMH\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,86.00,69.00,479.00,,,,,,\n2015,5,14,\"MQ\",\"3281\",\"CMH\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,97.00,69.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3281\",\"CMH\",\"LGA\",-9.00,-26.00,0.00,\"\",0.00,82.00,70.00,479.00,,,,,,\n2015,5,16,\"MQ\",\"3281\",\"CMH\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,81.00,69.00,479.00,,,,,,\n2015,5,17,\"MQ\",\"3281\",\"CMH\",\"LGA\",81.00,77.00,0.00,\"\",0.00,95.00,75.00,479.00,0.00,35.00,0.00,0.00,42.00,\n2015,5,18,\"MQ\",\"3281\",\"CMH\",\"LGA\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,19,\"MQ\",\"3281\",\"CMH\",\"LGA\",48.00,32.00,0.00,\"\",0.00,83.00,67.00,479.00,0.00,0.00,5.00,0.00,27.00,\n2015,5,20,\"MQ\",\"3281\",\"CMH\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,83.00,63.00,479.00,,,,,,\n2015,5,21,\"MQ\",\"3281\",\"CMH\",\"LGA\",-9.00,-12.00,0.00,\"\",0.00,96.00,72.00,479.00,,,,,,\n2015,5,22,\"MQ\",\"3281\",\"CMH\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,98.00,74.00,479.00,,,,,,\n2015,5,23,\"MQ\",\"3281\",\"CMH\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,87.00,71.00,479.00,,,,,,\n2015,5,24,\"MQ\",\"3281\",\"CMH\",\"LGA\",1.00,-2.00,0.00,\"\",0.00,96.00,74.00,479.00,,,,,,\n2015,5,25,\"MQ\",\"3281\",\"CMH\",\"LGA\",-10.00,-21.00,0.00,\"\",0.00,88.00,76.00,479.00,,,,,,\n2015,5,26,\"MQ\",\"3281\",\"CMH\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,86.00,69.00,479.00,,,,,,\n2015,5,27,\"MQ\",\"3281\",\"CMH\",\"LGA\",19.00,12.00,0.00,\"\",0.00,92.00,73.00,479.00,,,,,,\n2015,5,28,\"MQ\",\"3281\",\"CMH\",\"LGA\",-11.00,-20.00,0.00,\"\",0.00,90.00,72.00,479.00,,,,,,\n2015,5,29,\"MQ\",\"3281\",\"CMH\",\"LGA\",13.00,4.00,0.00,\"\",0.00,90.00,72.00,479.00,,,,,,\n2015,5,30,\"MQ\",\"3281\",\"CMH\",\"LGA\",2.00,-7.00,0.00,\"\",0.00,91.00,74.00,479.00,,,,,,\n2015,5,31,\"MQ\",\"3281\",\"CMH\",\"LGA\",300.00,390.00,0.00,\"\",0.00,189.00,93.00,479.00,0.00,0.00,390.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3281\",\"LGA\",\"CMH\",-4.00,-15.00,0.00,\"\",0.00,102.00,67.00,479.00,,,,,,\n2015,5,2,\"MQ\",\"3281\",\"LGA\",\"CMH\",-4.00,-23.00,0.00,\"\",0.00,91.00,67.00,479.00,,,,,,\n2015,5,4,\"MQ\",\"3281\",\"LGA\",\"CMH\",-9.00,-2.00,0.00,\"\",0.00,120.00,73.00,479.00,,,,,,\n2015,5,5,\"MQ\",\"3281\",\"LGA\",\"CMH\",-13.00,-33.00,0.00,\"\",0.00,93.00,74.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3281\",\"LGA\",\"CMH\",68.00,81.00,0.00,\"\",0.00,126.00,69.00,479.00,30.00,0.00,13.00,0.00,38.00,\n2015,5,7,\"MQ\",\"3281\",\"LGA\",\"CMH\",37.00,47.00,0.00,\"\",0.00,123.00,74.00,479.00,37.00,0.00,10.00,0.00,0.00,\n2015,5,8,\"MQ\",\"3281\",\"LGA\",\"CMH\",-7.00,-27.00,0.00,\"\",0.00,93.00,71.00,479.00,,,,,,\n2015,5,9,\"MQ\",\"3281\",\"LGA\",\"CMH\",-9.00,-5.00,0.00,\"\",0.00,114.00,70.00,479.00,,,,,,\n2015,5,10,\"MQ\",\"3281\",\"LGA\",\"CMH\",-1.00,-9.00,0.00,\"\",0.00,105.00,68.00,479.00,,,,,,\n2015,5,11,\"MQ\",\"3281\",\"LGA\",\"CMH\",-6.00,-11.00,0.00,\"\",0.00,108.00,69.00,479.00,,,,,,\n2015,5,12,\"MQ\",\"3281\",\"LGA\",\"CMH\",-11.00,-32.00,0.00,\"\",0.00,92.00,75.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3281\",\"LGA\",\"CMH\",-6.00,1.00,0.00,\"\",0.00,120.00,77.00,479.00,,,,,,\n2015,5,14,\"MQ\",\"3281\",\"LGA\",\"CMH\",-9.00,3.00,0.00,\"\",0.00,125.00,75.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3281\",\"LGA\",\"CMH\",-3.00,-20.00,0.00,\"\",0.00,96.00,72.00,479.00,,,,,,\n2015,5,16,\"MQ\",\"3281\",\"LGA\",\"CMH\",-8.00,-9.00,0.00,\"\",0.00,109.00,74.00,479.00,,,,,,\n2015,5,17,\"MQ\",\"3281\",\"LGA\",\"CMH\",47.00,46.00,0.00,\"\",0.00,112.00,72.00,479.00,24.00,0.00,0.00,0.00,22.00,\n2015,5,18,\"MQ\",\"3281\",\"LGA\",\"CMH\",68.00,53.00,0.00,\"\",0.00,98.00,78.00,479.00,0.00,0.00,1.00,0.00,52.00,\n2015,5,19,\"MQ\",\"3281\",\"LGA\",\"CMH\",45.00,43.00,0.00,\"\",0.00,111.00,77.00,479.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,20,\"MQ\",\"3281\",\"LGA\",\"CMH\",-10.00,-10.00,0.00,\"\",0.00,113.00,79.00,479.00,,,,,,\n2015,5,21,\"MQ\",\"3281\",\"LGA\",\"CMH\",-6.00,-18.00,0.00,\"\",0.00,101.00,82.00,479.00,,,,,,\n2015,5,22,\"MQ\",\"3281\",\"LGA\",\"CMH\",-6.00,0.00,0.00,\"\",0.00,119.00,79.00,479.00,,,,,,\n2015,5,23,\"MQ\",\"3281\",\"LGA\",\"CMH\",-2.00,-12.00,0.00,\"\",0.00,100.00,73.00,479.00,,,,,,\n2015,5,24,\"MQ\",\"3281\",\"LGA\",\"CMH\",24.00,1.00,0.00,\"\",0.00,90.00,72.00,479.00,,,,,,\n2015,5,25,\"MQ\",\"3281\",\"LGA\",\"CMH\",-12.00,-37.00,0.00,\"\",0.00,88.00,72.00,479.00,,,,,,\n2015,5,26,\"MQ\",\"3281\",\"LGA\",\"CMH\",-6.00,-19.00,0.00,\"\",0.00,100.00,71.00,479.00,,,,,,\n2015,5,27,\"MQ\",\"3281\",\"LGA\",\"CMH\",-7.00,-21.00,0.00,\"\",0.00,99.00,72.00,479.00,,,,,,\n2015,5,28,\"MQ\",\"3281\",\"LGA\",\"CMH\",-7.00,-21.00,0.00,\"\",0.00,99.00,76.00,479.00,,,,,,\n2015,5,29,\"MQ\",\"3281\",\"LGA\",\"CMH\",15.00,15.00,0.00,\"\",0.00,113.00,72.00,479.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,30,\"MQ\",\"3281\",\"LGA\",\"CMH\",-3.00,-25.00,0.00,\"\",0.00,88.00,70.00,479.00,,,,,,\n2015,5,31,\"MQ\",\"3281\",\"LGA\",\"CMH\",-2.00,-5.00,0.00,\"\",0.00,110.00,73.00,479.00,,,,,,\n2015,5,3,\"MQ\",\"3281\",\"LGA\",\"SDF\",-5.00,-36.00,0.00,\"\",0.00,121.00,98.00,659.00,,,,,,\n2015,5,3,\"MQ\",\"3281\",\"SDF\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,112.00,98.00,659.00,,,,,,\n2015,5,7,\"MQ\",\"3287\",\"LGA\",\"ORF\",-4.00,-8.00,0.00,\"\",0.00,91.00,52.00,296.00,,,,,,\n2015,5,8,\"MQ\",\"3287\",\"LGA\",\"ORF\",-10.00,-16.00,0.00,\"\",0.00,89.00,57.00,296.00,,,,,,\n2015,5,10,\"MQ\",\"3287\",\"LGA\",\"ORF\",-8.00,-23.00,0.00,\"\",0.00,80.00,50.00,296.00,,,,,,\n2015,5,11,\"MQ\",\"3287\",\"LGA\",\"ORF\",15.00,7.00,0.00,\"\",0.00,87.00,49.00,296.00,,,,,,\n2015,5,12,\"MQ\",\"3287\",\"LGA\",\"ORF\",35.00,22.00,0.00,\"\",0.00,82.00,53.00,296.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,13,\"MQ\",\"3287\",\"LGA\",\"ORF\",-13.00,-19.00,0.00,\"\",0.00,89.00,49.00,296.00,,,,,,\n2015,5,14,\"MQ\",\"3287\",\"LGA\",\"ORF\",-4.00,-20.00,0.00,\"\",0.00,79.00,55.00,296.00,,,,,,\n2015,5,15,\"MQ\",\"3287\",\"LGA\",\"ORF\",-9.00,-29.00,0.00,\"\",0.00,75.00,50.00,296.00,,,,,,\n2015,5,17,\"MQ\",\"3287\",\"LGA\",\"ORF\",-5.00,1.00,0.00,\"\",0.00,101.00,48.00,296.00,,,,,,\n2015,5,18,\"MQ\",\"3287\",\"LGA\",\"ORF\",93.00,78.00,0.00,\"\",0.00,80.00,54.00,296.00,0.00,49.00,0.00,0.00,29.00,\n2015,5,19,\"MQ\",\"3287\",\"LGA\",\"ORF\",18.00,19.00,0.00,\"\",0.00,96.00,49.00,296.00,0.00,0.00,1.00,0.00,18.00,\n2015,5,20,\"MQ\",\"3287\",\"LGA\",\"ORF\",-7.00,13.00,0.00,\"\",0.00,115.00,58.00,296.00,,,,,,\n2015,5,21,\"MQ\",\"3287\",\"LGA\",\"ORF\",-7.00,4.00,0.00,\"\",0.00,106.00,57.00,296.00,,,,,,\n2015,5,22,\"MQ\",\"3287\",\"LGA\",\"ORF\",-3.00,-13.00,0.00,\"\",0.00,85.00,55.00,296.00,,,,,,\n2015,5,24,\"MQ\",\"3287\",\"LGA\",\"ORF\",-6.00,-32.00,0.00,\"\",0.00,69.00,47.00,296.00,,,,,,\n2015,5,25,\"MQ\",\"3287\",\"LGA\",\"ORF\",12.00,4.00,0.00,\"\",0.00,87.00,49.00,296.00,,,,,,\n2015,5,26,\"MQ\",\"3287\",\"LGA\",\"ORF\",-10.00,-36.00,0.00,\"\",0.00,69.00,52.00,296.00,,,,,,\n2015,5,27,\"MQ\",\"3287\",\"LGA\",\"ORF\",25.00,43.00,0.00,\"\",0.00,113.00,69.00,296.00,8.00,0.00,18.00,0.00,17.00,\n2015,5,28,\"MQ\",\"3287\",\"LGA\",\"ORF\",35.00,,1.00,\"B\",0.00,,,296.00,,,,,,\n2015,5,29,\"MQ\",\"3287\",\"LGA\",\"ORF\",18.00,30.00,0.00,\"\",0.00,107.00,53.00,296.00,0.00,0.00,12.00,0.00,18.00,\n2015,5,31,\"MQ\",\"3287\",\"LGA\",\"ORF\",8.00,15.00,0.00,\"\",0.00,102.00,51.00,296.00,0.00,5.00,7.00,0.00,3.00,\n2015,5,7,\"MQ\",\"3287\",\"ORF\",\"LGA\",19.00,16.00,0.00,\"\",0.00,88.00,60.00,296.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"MQ\",\"3287\",\"ORF\",\"LGA\",10.00,-9.00,0.00,\"\",0.00,72.00,56.00,296.00,,,,,,\n2015,5,10,\"MQ\",\"3287\",\"ORF\",\"LGA\",51.00,38.00,0.00,\"\",0.00,78.00,61.00,296.00,7.00,0.00,31.00,0.00,0.00,\n2015,5,11,\"MQ\",\"3287\",\"ORF\",\"LGA\",60.00,77.00,0.00,\"\",0.00,108.00,60.00,296.00,0.00,0.00,70.00,0.00,7.00,\n2015,5,12,\"MQ\",\"3287\",\"ORF\",\"LGA\",19.00,7.00,0.00,\"\",0.00,79.00,56.00,296.00,,,,,,\n2015,5,13,\"MQ\",\"3287\",\"ORF\",\"LGA\",-15.00,-35.00,0.00,\"\",0.00,71.00,50.00,296.00,,,,,,\n2015,5,14,\"MQ\",\"3287\",\"ORF\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,87.00,64.00,296.00,,,,,,\n2015,5,15,\"MQ\",\"3287\",\"ORF\",\"LGA\",-10.00,-23.00,0.00,\"\",0.00,78.00,62.00,296.00,,,,,,\n2015,5,17,\"MQ\",\"3287\",\"ORF\",\"LGA\",1.00,26.00,0.00,\"\",0.00,116.00,64.00,296.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,18,\"MQ\",\"3287\",\"ORF\",\"LGA\",102.00,107.00,0.00,\"\",0.00,96.00,61.00,296.00,0.00,0.00,29.00,0.00,78.00,\n2015,5,19,\"MQ\",\"3287\",\"ORF\",\"LGA\",18.00,29.00,0.00,\"\",0.00,102.00,59.00,296.00,0.00,0.00,11.00,0.00,18.00,\n2015,5,20,\"MQ\",\"3287\",\"ORF\",\"LGA\",4.00,33.00,0.00,\"\",0.00,120.00,51.00,296.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3287\",\"ORF\",\"LGA\",4.00,-14.00,0.00,\"\",0.00,73.00,56.00,296.00,,,,,,\n2015,5,22,\"MQ\",\"3287\",\"ORF\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,71.00,55.00,296.00,,,,,,\n2015,5,24,\"MQ\",\"3287\",\"ORF\",\"LGA\",-12.00,-33.00,0.00,\"\",0.00,70.00,56.00,296.00,,,,,,\n2015,5,25,\"MQ\",\"3287\",\"ORF\",\"LGA\",-2.00,5.00,0.00,\"\",0.00,98.00,61.00,296.00,,,,,,\n2015,5,26,\"MQ\",\"3287\",\"ORF\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,77.00,55.00,296.00,,,,,,\n2015,5,27,\"MQ\",\"3287\",\"ORF\",\"LGA\",823.00,824.00,0.00,\"\",0.00,92.00,62.00,296.00,780.00,0.00,1.00,0.00,43.00,\n2015,5,28,\"MQ\",\"3287\",\"ORF\",\"LGA\",,,1.00,\"B\",0.00,,,296.00,,,,,,\n2015,5,29,\"MQ\",\"3287\",\"ORF\",\"LGA\",24.00,20.00,0.00,\"\",0.00,87.00,60.00,296.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,31,\"MQ\",\"3287\",\"ORF\",\"LGA\",,,1.00,\"C\",0.00,,,296.00,,,,,,\n2015,5,7,\"MQ\",\"3299\",\"ORD\",\"ROC\",1.00,-10.00,0.00,\"\",0.00,95.00,76.00,528.00,,,,,,\n2015,5,8,\"MQ\",\"3299\",\"ORD\",\"ROC\",-2.00,-21.00,0.00,\"\",0.00,87.00,77.00,528.00,,,,,,\n2015,5,9,\"MQ\",\"3299\",\"ORD\",\"ROC\",-3.00,-17.00,0.00,\"\",0.00,92.00,73.00,528.00,,,,,,\n2015,5,10,\"MQ\",\"3299\",\"ORD\",\"ROC\",0.00,-18.00,0.00,\"\",0.00,88.00,68.00,528.00,,,,,,\n2015,5,11,\"MQ\",\"3299\",\"ORD\",\"ROC\",-4.00,-23.00,0.00,\"\",0.00,87.00,72.00,528.00,,,,,,\n2015,5,12,\"MQ\",\"3299\",\"ORD\",\"ROC\",0.00,-8.00,0.00,\"\",0.00,98.00,71.00,528.00,,,,,,\n2015,5,13,\"MQ\",\"3299\",\"ORD\",\"ROC\",-1.00,-20.00,0.00,\"\",0.00,87.00,68.00,528.00,,,,,,\n2015,5,14,\"MQ\",\"3299\",\"ORD\",\"ROC\",-1.00,-17.00,0.00,\"\",0.00,90.00,72.00,528.00,,,,,,\n2015,5,15,\"MQ\",\"3299\",\"ORD\",\"ROC\",3.00,-13.00,0.00,\"\",0.00,90.00,74.00,528.00,,,,,,\n2015,5,16,\"MQ\",\"3299\",\"ORD\",\"ROC\",6.00,-11.00,0.00,\"\",0.00,89.00,74.00,528.00,,,,,,\n2015,5,17,\"MQ\",\"3299\",\"ORD\",\"ROC\",-2.00,-19.00,0.00,\"\",0.00,89.00,75.00,528.00,,,,,,\n2015,5,18,\"MQ\",\"3299\",\"ORD\",\"ROC\",0.00,-19.00,0.00,\"\",0.00,87.00,71.00,528.00,,,,,,\n2015,5,19,\"MQ\",\"3299\",\"ORD\",\"ROC\",1.00,-16.00,0.00,\"\",0.00,89.00,69.00,528.00,,,,,,\n2015,5,20,\"MQ\",\"3299\",\"ORD\",\"ROC\",-2.00,-21.00,0.00,\"\",0.00,87.00,71.00,528.00,,,,,,\n2015,5,21,\"MQ\",\"3299\",\"ORD\",\"ROC\",-3.00,-5.00,0.00,\"\",0.00,95.00,78.00,528.00,,,,,,\n2015,5,22,\"MQ\",\"3299\",\"ORD\",\"ROC\",0.00,-12.00,0.00,\"\",0.00,85.00,69.00,528.00,,,,,,\n2015,5,25,\"MQ\",\"3299\",\"ORD\",\"ROC\",-1.00,-18.00,0.00,\"\",0.00,89.00,71.00,528.00,,,,,,\n2015,5,26,\"MQ\",\"3299\",\"ORD\",\"ROC\",-4.00,-23.00,0.00,\"\",0.00,87.00,73.00,528.00,,,,,,\n2015,5,27,\"MQ\",\"3299\",\"ORD\",\"ROC\",-3.00,-23.00,0.00,\"\",0.00,86.00,70.00,528.00,,,,,,\n2015,5,28,\"MQ\",\"3299\",\"ORD\",\"ROC\",-1.00,-12.00,0.00,\"\",0.00,95.00,78.00,528.00,,,,,,\n2015,5,29,\"MQ\",\"3299\",\"ORD\",\"ROC\",-2.00,33.00,0.00,\"\",0.00,141.00,74.00,528.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,30,\"MQ\",\"3299\",\"ORD\",\"ROC\",-2.00,-22.00,0.00,\"\",0.00,86.00,68.00,528.00,,,,,,\n2015,5,31,\"MQ\",\"3299\",\"ORD\",\"ROC\",2.00,-14.00,0.00,\"\",0.00,90.00,74.00,528.00,,,,,,\n2015,5,7,\"MQ\",\"3299\",\"ROC\",\"ORD\",-3.00,16.00,0.00,\"\",0.00,139.00,81.00,528.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,8,\"MQ\",\"3299\",\"ROC\",\"ORD\",16.00,67.00,0.00,\"\",0.00,171.00,81.00,528.00,0.00,0.00,67.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3299\",\"ROC\",\"ORD\",0.00,5.00,0.00,\"\",0.00,125.00,93.00,528.00,,,,,,\n2015,5,10,\"MQ\",\"3299\",\"ROC\",\"ORD\",0.00,-5.00,0.00,\"\",0.00,115.00,87.00,528.00,,,,,,\n2015,5,11,\"MQ\",\"3299\",\"ROC\",\"ORD\",-6.00,-6.00,0.00,\"\",0.00,120.00,89.00,528.00,,,,,,\n2015,5,12,\"MQ\",\"3299\",\"ROC\",\"ORD\",-3.00,-9.00,0.00,\"\",0.00,114.00,93.00,528.00,,,,,,\n2015,5,13,\"MQ\",\"3299\",\"ROC\",\"ORD\",-1.00,-5.00,0.00,\"\",0.00,116.00,93.00,528.00,,,,,,\n2015,5,14,\"MQ\",\"3299\",\"ROC\",\"ORD\",-5.00,-14.00,0.00,\"\",0.00,111.00,85.00,528.00,,,,,,\n2015,5,15,\"MQ\",\"3299\",\"ROC\",\"ORD\",-8.00,-20.00,0.00,\"\",0.00,108.00,88.00,528.00,,,,,,\n2015,5,16,\"MQ\",\"3299\",\"ROC\",\"ORD\",22.00,1.00,0.00,\"\",0.00,99.00,83.00,528.00,,,,,,\n2015,5,17,\"MQ\",\"3299\",\"ROC\",\"ORD\",-2.00,-10.00,0.00,\"\",0.00,112.00,86.00,528.00,,,,,,\n2015,5,18,\"MQ\",\"3299\",\"ROC\",\"ORD\",-2.00,-20.00,0.00,\"\",0.00,102.00,84.00,528.00,,,,,,\n2015,5,19,\"MQ\",\"3299\",\"ROC\",\"ORD\",-11.00,-13.00,0.00,\"\",0.00,118.00,95.00,528.00,,,,,,\n2015,5,20,\"MQ\",\"3299\",\"ROC\",\"ORD\",-11.00,-8.00,0.00,\"\",0.00,123.00,98.00,528.00,,,,,,\n2015,5,21,\"MQ\",\"3299\",\"ROC\",\"ORD\",-10.00,-20.00,0.00,\"\",0.00,108.00,85.00,528.00,,,,,,\n2015,5,22,\"MQ\",\"3299\",\"ROC\",\"ORD\",-9.00,-13.00,0.00,\"\",0.00,114.00,88.00,528.00,,,,,,\n2015,5,25,\"MQ\",\"3299\",\"ROC\",\"ORD\",6.00,0.00,0.00,\"\",0.00,114.00,86.00,528.00,,,,,,\n2015,5,26,\"MQ\",\"3299\",\"ROC\",\"ORD\",,,1.00,\"A\",0.00,,,528.00,,,,,,\n2015,5,27,\"MQ\",\"3299\",\"ROC\",\"ORD\",-9.00,-23.00,0.00,\"\",0.00,106.00,90.00,528.00,,,,,,\n2015,5,28,\"MQ\",\"3299\",\"ROC\",\"ORD\",-4.00,-10.00,0.00,\"\",0.00,114.00,84.00,528.00,,,,,,\n2015,5,29,\"MQ\",\"3299\",\"ROC\",\"ORD\",17.00,7.00,0.00,\"\",0.00,110.00,83.00,528.00,,,,,,\n2015,5,30,\"MQ\",\"3299\",\"ROC\",\"ORD\",-5.00,-6.00,0.00,\"\",0.00,119.00,91.00,528.00,,,,,,\n2015,5,31,\"MQ\",\"3299\",\"ROC\",\"ORD\",-5.00,5.00,0.00,\"\",0.00,130.00,96.00,528.00,,,,,,\n2015,5,1,\"MQ\",\"3301\",\"LGA\",\"RDU\",-8.00,-12.00,0.00,\"\",0.00,103.00,68.00,431.00,,,,,,\n2015,5,2,\"MQ\",\"3301\",\"LGA\",\"RDU\",-9.00,-39.00,0.00,\"\",0.00,77.00,62.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3301\",\"LGA\",\"RDU\",-1.00,-19.00,0.00,\"\",0.00,89.00,62.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3301\",\"LGA\",\"RDU\",-4.00,-13.00,0.00,\"\",0.00,98.00,65.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3301\",\"LGA\",\"RDU\",-5.00,-27.00,0.00,\"\",0.00,85.00,65.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3301\",\"LGA\",\"RDU\",-6.00,-17.00,0.00,\"\",0.00,96.00,69.00,431.00,,,,,,\n2015,5,7,\"MQ\",\"3301\",\"LGA\",\"RDU\",19.00,-7.00,0.00,\"\",0.00,81.00,65.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3301\",\"LGA\",\"RDU\",-7.00,-22.00,0.00,\"\",0.00,92.00,69.00,431.00,,,,,,\n2015,5,10,\"MQ\",\"3301\",\"LGA\",\"RDU\",-7.00,-1.00,0.00,\"\",0.00,113.00,74.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3301\",\"LGA\",\"RDU\",-1.00,-11.00,0.00,\"\",0.00,97.00,63.00,431.00,,,,,,\n2015,5,12,\"MQ\",\"3301\",\"LGA\",\"RDU\",-6.00,-19.00,0.00,\"\",0.00,94.00,70.00,431.00,,,,,,\n2015,5,13,\"MQ\",\"3301\",\"LGA\",\"RDU\",-9.00,-10.00,0.00,\"\",0.00,106.00,75.00,431.00,,,,,,\n2015,5,14,\"MQ\",\"3301\",\"LGA\",\"RDU\",45.00,24.00,0.00,\"\",0.00,86.00,68.00,431.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"MQ\",\"3301\",\"LGA\",\"RDU\",-3.00,-25.00,0.00,\"\",0.00,85.00,63.00,431.00,,,,,,\n2015,5,17,\"MQ\",\"3301\",\"LGA\",\"RDU\",55.00,33.00,0.00,\"\",0.00,85.00,63.00,431.00,0.00,0.00,0.00,0.00,33.00,\n2015,5,18,\"MQ\",\"3301\",\"LGA\",\"RDU\",15.00,31.00,0.00,\"\",0.00,123.00,60.00,431.00,15.00,0.00,16.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3301\",\"LGA\",\"RDU\",-1.00,19.00,0.00,\"\",0.00,127.00,84.00,431.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3301\",\"LGA\",\"RDU\",-5.00,-6.00,0.00,\"\",0.00,106.00,64.00,431.00,,,,,,\n2015,5,21,\"MQ\",\"3301\",\"LGA\",\"RDU\",-5.00,6.00,0.00,\"\",0.00,118.00,75.00,431.00,,,,,,\n2015,5,22,\"MQ\",\"3301\",\"LGA\",\"RDU\",-12.00,2.00,0.00,\"\",0.00,121.00,81.00,431.00,,,,,,\n2015,5,24,\"MQ\",\"3301\",\"LGA\",\"RDU\",-8.00,-34.00,0.00,\"\",0.00,81.00,64.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3301\",\"LGA\",\"RDU\",-9.00,2.00,0.00,\"\",0.00,118.00,72.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3301\",\"LGA\",\"RDU\",-2.00,-12.00,0.00,\"\",0.00,97.00,67.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3301\",\"LGA\",\"RDU\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,28,\"MQ\",\"3301\",\"LGA\",\"RDU\",-10.00,-13.00,0.00,\"\",0.00,104.00,71.00,431.00,,,,,,\n2015,5,29,\"MQ\",\"3301\",\"LGA\",\"RDU\",21.00,24.00,0.00,\"\",0.00,110.00,66.00,431.00,0.00,0.00,3.00,0.00,21.00,\n2015,5,31,\"MQ\",\"3301\",\"LGA\",\"RDU\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,1,\"MQ\",\"3301\",\"RDU\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,88.00,69.00,431.00,,,,,,\n2015,5,2,\"MQ\",\"3301\",\"RDU\",\"LGA\",-9.00,-28.00,0.00,\"\",0.00,79.00,64.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3301\",\"RDU\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,90.00,69.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3301\",\"RDU\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,88.00,69.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3301\",\"RDU\",\"LGA\",-5.00,2.00,0.00,\"\",0.00,105.00,72.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3301\",\"RDU\",\"LGA\",30.00,23.00,0.00,\"\",0.00,91.00,65.00,431.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3301\",\"RDU\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,92.00,67.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3301\",\"RDU\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,83.00,64.00,431.00,,,,,,\n2015,5,10,\"MQ\",\"3301\",\"RDU\",\"LGA\",-2.00,2.00,0.00,\"\",0.00,102.00,66.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3301\",\"RDU\",\"LGA\",94.00,92.00,0.00,\"\",0.00,96.00,69.00,431.00,0.00,0.00,92.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3301\",\"RDU\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,102.00,70.00,431.00,,,,,,\n2015,5,13,\"MQ\",\"3301\",\"RDU\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,77.00,61.00,431.00,,,,,,\n2015,5,14,\"MQ\",\"3301\",\"RDU\",\"LGA\",42.00,26.00,0.00,\"\",0.00,82.00,63.00,431.00,16.00,0.00,0.00,0.00,10.00,\n2015,5,15,\"MQ\",\"3301\",\"RDU\",\"LGA\",-3.00,4.00,0.00,\"\",0.00,105.00,70.00,431.00,,,,,,\n2015,5,17,\"MQ\",\"3301\",\"RDU\",\"LGA\",33.00,38.00,0.00,\"\",0.00,103.00,65.00,431.00,8.00,0.00,5.00,0.00,25.00,\n2015,5,18,\"MQ\",\"3301\",\"RDU\",\"LGA\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,19,\"MQ\",\"3301\",\"RDU\",\"LGA\",25.00,29.00,0.00,\"\",0.00,102.00,64.00,431.00,0.00,0.00,18.00,0.00,11.00,\n2015,5,20,\"MQ\",\"3301\",\"RDU\",\"LGA\",-7.00,44.00,0.00,\"\",0.00,149.00,62.00,431.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3301\",\"RDU\",\"LGA\",4.00,10.00,0.00,\"\",0.00,104.00,63.00,431.00,,,,,,\n2015,5,22,\"MQ\",\"3301\",\"RDU\",\"LGA\",7.00,4.00,0.00,\"\",0.00,95.00,63.00,431.00,,,,,,\n2015,5,24,\"MQ\",\"3301\",\"RDU\",\"LGA\",-10.00,-32.00,0.00,\"\",0.00,76.00,63.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3301\",\"RDU\",\"LGA\",-7.00,4.00,0.00,\"\",0.00,109.00,74.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3301\",\"RDU\",\"LGA\",-7.00,-7.00,0.00,\"\",0.00,98.00,67.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3301\",\"RDU\",\"LGA\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,28,\"MQ\",\"3301\",\"RDU\",\"LGA\",-9.00,20.00,0.00,\"\",0.00,127.00,73.00,431.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3301\",\"RDU\",\"LGA\",19.00,13.00,0.00,\"\",0.00,92.00,67.00,431.00,,,,,,\n2015,5,31,\"MQ\",\"3301\",\"RDU\",\"LGA\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,1,\"MQ\",\"3305\",\"LGA\",\"RDU\",-2.00,1.00,0.00,\"\",0.00,102.00,67.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3305\",\"LGA\",\"RDU\",-2.00,-5.00,0.00,\"\",0.00,96.00,62.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3305\",\"LGA\",\"RDU\",11.00,0.00,0.00,\"\",0.00,88.00,67.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3305\",\"LGA\",\"RDU\",8.00,-8.00,0.00,\"\",0.00,83.00,61.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3305\",\"LGA\",\"RDU\",-7.00,12.00,0.00,\"\",0.00,118.00,66.00,431.00,,,,,,\n2015,5,1,\"MQ\",\"3359\",\"JFK\",\"RDU\",20.00,6.00,0.00,\"\",0.00,94.00,74.00,427.00,,,,,,\n2015,5,2,\"MQ\",\"3359\",\"JFK\",\"RDU\",-6.00,-30.00,0.00,\"\",0.00,84.00,64.00,427.00,,,,,,\n2015,5,3,\"MQ\",\"3359\",\"JFK\",\"RDU\",2.00,5.00,0.00,\"\",0.00,111.00,65.00,427.00,,,,,,\n2015,5,4,\"MQ\",\"3359\",\"JFK\",\"RDU\",-1.00,-9.00,0.00,\"\",0.00,100.00,65.00,427.00,,,,,,\n2015,5,5,\"MQ\",\"3359\",\"JFK\",\"RDU\",-1.00,-5.00,0.00,\"\",0.00,104.00,66.00,427.00,,,,,,\n2015,5,6,\"MQ\",\"3359\",\"JFK\",\"RDU\",-4.00,-24.00,0.00,\"\",0.00,88.00,68.00,427.00,,,,,,\n2015,5,7,\"MQ\",\"3359\",\"JFK\",\"RDU\",-5.00,-16.00,0.00,\"\",0.00,97.00,68.00,427.00,,,,,,\n2015,5,8,\"MQ\",\"3359\",\"JFK\",\"RDU\",-3.00,-10.00,0.00,\"\",0.00,101.00,72.00,427.00,,,,,,\n2015,5,9,\"MQ\",\"3359\",\"JFK\",\"RDU\",-7.00,-21.00,0.00,\"\",0.00,94.00,69.00,427.00,,,,,,\n2015,5,10,\"MQ\",\"3359\",\"JFK\",\"RDU\",-3.00,41.00,0.00,\"\",0.00,152.00,79.00,427.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,11,\"MQ\",\"3359\",\"JFK\",\"RDU\",-3.00,-14.00,0.00,\"\",0.00,97.00,64.00,427.00,,,,,,\n2015,5,12,\"MQ\",\"3359\",\"JFK\",\"RDU\",0.00,-18.00,0.00,\"\",0.00,90.00,72.00,427.00,,,,,,\n2015,5,13,\"MQ\",\"3359\",\"JFK\",\"RDU\",-1.00,2.00,0.00,\"\",0.00,111.00,76.00,427.00,,,,,,\n2015,5,14,\"MQ\",\"3359\",\"JFK\",\"RDU\",-2.00,3.00,0.00,\"\",0.00,113.00,73.00,427.00,,,,,,\n2015,5,15,\"MQ\",\"3359\",\"JFK\",\"RDU\",0.00,-9.00,0.00,\"\",0.00,99.00,67.00,427.00,,,,,,\n2015,5,16,\"MQ\",\"3359\",\"JFK\",\"RDU\",8.00,4.00,0.00,\"\",0.00,104.00,65.00,427.00,,,,,,\n2015,5,17,\"MQ\",\"3359\",\"JFK\",\"RDU\",40.00,28.00,0.00,\"\",0.00,96.00,70.00,427.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"MQ\",\"3359\",\"JFK\",\"RDU\",160.00,175.00,0.00,\"\",0.00,123.00,66.00,427.00,160.00,0.00,15.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3359\",\"JFK\",\"RDU\",0.00,49.00,0.00,\"\",0.00,157.00,81.00,427.00,0.00,0.00,49.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3359\",\"JFK\",\"RDU\",,,1.00,\"A\",0.00,,,427.00,,,,,,\n2015,5,21,\"MQ\",\"3359\",\"JFK\",\"RDU\",-3.00,34.00,0.00,\"\",0.00,145.00,78.00,427.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3359\",\"JFK\",\"RDU\",-8.00,-13.00,0.00,\"\",0.00,103.00,76.00,427.00,,,,,,\n2015,5,23,\"MQ\",\"3359\",\"JFK\",\"RDU\",-4.00,2.00,0.00,\"\",0.00,114.00,73.00,427.00,,,,,,\n2015,5,24,\"MQ\",\"3359\",\"JFK\",\"RDU\",23.00,4.00,0.00,\"\",0.00,89.00,64.00,427.00,,,,,,\n2015,5,25,\"MQ\",\"3359\",\"JFK\",\"RDU\",-4.00,-18.00,0.00,\"\",0.00,94.00,69.00,427.00,,,,,,\n2015,5,26,\"MQ\",\"3359\",\"JFK\",\"RDU\",-4.00,-20.00,0.00,\"\",0.00,92.00,68.00,427.00,,,,,,\n2015,5,27,\"MQ\",\"3359\",\"JFK\",\"RDU\",-4.00,-9.00,0.00,\"\",0.00,103.00,65.00,427.00,,,,,,\n2015,5,28,\"MQ\",\"3359\",\"JFK\",\"RDU\",0.00,-13.00,0.00,\"\",0.00,95.00,69.00,427.00,,,,,,\n2015,5,29,\"MQ\",\"3359\",\"JFK\",\"RDU\",13.00,-10.00,0.00,\"\",0.00,85.00,64.00,427.00,,,,,,\n2015,5,30,\"MQ\",\"3359\",\"JFK\",\"RDU\",-4.00,-18.00,0.00,\"\",0.00,94.00,66.00,427.00,,,,,,\n2015,5,31,\"MQ\",\"3359\",\"JFK\",\"RDU\",-2.00,-20.00,0.00,\"\",0.00,90.00,66.00,427.00,,,,,,\n2015,5,1,\"MQ\",\"3359\",\"RDU\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,92.00,73.00,427.00,,,,,,\n2015,5,2,\"MQ\",\"3359\",\"RDU\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,88.00,74.00,427.00,,,,,,\n2015,5,3,\"MQ\",\"3359\",\"RDU\",\"JFK\",-8.00,-25.00,0.00,\"\",0.00,91.00,70.00,427.00,,,,,,\n2015,5,4,\"MQ\",\"3359\",\"RDU\",\"JFK\",-10.00,-33.00,0.00,\"\",0.00,85.00,69.00,427.00,,,,,,\n2015,5,5,\"MQ\",\"3359\",\"RDU\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,90.00,72.00,427.00,,,,,,\n2015,5,6,\"MQ\",\"3359\",\"RDU\",\"JFK\",-1.00,-22.00,0.00,\"\",0.00,87.00,69.00,427.00,,,,,,\n2015,5,7,\"MQ\",\"3359\",\"RDU\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,98.00,69.00,427.00,,,,,,\n2015,5,8,\"MQ\",\"3359\",\"RDU\",\"JFK\",126.00,107.00,0.00,\"\",0.00,87.00,68.00,427.00,0.00,0.00,107.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3359\",\"RDU\",\"JFK\",,,1.00,\"A\",0.00,,,427.00,,,,,,\n2015,5,10,\"MQ\",\"3359\",\"RDU\",\"JFK\",,,1.00,\"B\",0.00,,,427.00,,,,,,\n2015,5,11,\"MQ\",\"3359\",\"RDU\",\"JFK\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,12,\"MQ\",\"3359\",\"RDU\",\"JFK\",74.00,55.00,0.00,\"\",0.00,87.00,65.00,427.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,13,\"MQ\",\"3359\",\"RDU\",\"JFK\",69.00,80.00,0.00,\"\",0.00,117.00,71.00,427.00,0.00,0.00,80.00,0.00,0.00,\n2015,5,14,\"MQ\",\"3359\",\"RDU\",\"JFK\",-8.00,-24.00,0.00,\"\",0.00,90.00,70.00,427.00,,,,,,\n2015,5,15,\"MQ\",\"3359\",\"RDU\",\"JFK\",-11.00,-20.00,0.00,\"\",0.00,97.00,73.00,427.00,,,,,,\n2015,5,16,\"MQ\",\"3359\",\"RDU\",\"JFK\",-9.00,-25.00,0.00,\"\",0.00,90.00,72.00,427.00,,,,,,\n2015,5,17,\"MQ\",\"3359\",\"RDU\",\"JFK\",-7.00,-24.00,0.00,\"\",0.00,89.00,72.00,427.00,,,,,,\n2015,5,18,\"MQ\",\"3359\",\"RDU\",\"JFK\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,19,\"MQ\",\"3359\",\"RDU\",\"JFK\",21.00,12.00,0.00,\"\",0.00,97.00,70.00,427.00,,,,,,\n2015,5,20,\"MQ\",\"3359\",\"RDU\",\"JFK\",,,1.00,\"A\",0.00,,,427.00,,,,,,\n2015,5,21,\"MQ\",\"3359\",\"RDU\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,93.00,65.00,427.00,,,,,,\n2015,5,22,\"MQ\",\"3359\",\"RDU\",\"JFK\",-9.00,-4.00,0.00,\"\",0.00,111.00,73.00,427.00,,,,,,\n2015,5,23,\"MQ\",\"3359\",\"RDU\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,89.00,67.00,427.00,,,,,,\n2015,5,24,\"MQ\",\"3359\",\"RDU\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,98.00,69.00,427.00,,,,,,\n2015,5,25,\"MQ\",\"3359\",\"RDU\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,87.00,66.00,427.00,,,,,,\n2015,5,26,\"MQ\",\"3359\",\"RDU\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,99.00,68.00,427.00,,,,,,\n2015,5,27,\"MQ\",\"3359\",\"RDU\",\"JFK\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,28,\"MQ\",\"3359\",\"RDU\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,93.00,71.00,427.00,,,,,,\n2015,5,29,\"MQ\",\"3359\",\"RDU\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,93.00,72.00,427.00,,,,,,\n2015,5,30,\"MQ\",\"3359\",\"RDU\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,95.00,70.00,427.00,,,,,,\n2015,5,31,\"MQ\",\"3359\",\"RDU\",\"JFK\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,1,\"MQ\",\"3363\",\"JFK\",\"RDU\",23.00,36.00,0.00,\"\",0.00,114.00,71.00,427.00,0.00,0.00,13.00,0.00,23.00,\n2015,5,2,\"MQ\",\"3363\",\"JFK\",\"RDU\",15.00,13.00,0.00,\"\",0.00,99.00,68.00,427.00,,,,,,\n2015,5,3,\"MQ\",\"3363\",\"JFK\",\"RDU\",-7.00,17.00,0.00,\"\",0.00,125.00,69.00,427.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,4,\"MQ\",\"3363\",\"JFK\",\"RDU\",8.00,6.00,0.00,\"\",0.00,99.00,65.00,427.00,,,,,,\n2015,5,5,\"MQ\",\"3363\",\"JFK\",\"RDU\",-5.00,-7.00,0.00,\"\",0.00,99.00,66.00,427.00,,,,,,\n2015,5,6,\"MQ\",\"3363\",\"JFK\",\"RDU\",-7.00,9.00,0.00,\"\",0.00,117.00,70.00,427.00,,,,,,\n2015,5,7,\"MQ\",\"3363\",\"JFK\",\"RDU\",30.00,31.00,0.00,\"\",0.00,102.00,70.00,427.00,0.00,0.00,1.00,0.00,30.00,\n2015,5,8,\"MQ\",\"3363\",\"JFK\",\"RDU\",89.00,86.00,0.00,\"\",0.00,98.00,71.00,427.00,0.00,0.00,0.00,0.00,86.00,\n2015,5,9,\"MQ\",\"3363\",\"JFK\",\"RDU\",50.00,64.00,0.00,\"\",0.00,115.00,71.00,427.00,0.00,0.00,14.00,0.00,50.00,\n2015,5,10,\"MQ\",\"3363\",\"JFK\",\"RDU\",-6.00,-20.00,0.00,\"\",0.00,87.00,69.00,427.00,,,,,,\n2015,5,11,\"MQ\",\"3363\",\"JFK\",\"RDU\",-4.00,23.00,0.00,\"\",0.00,128.00,82.00,427.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3363\",\"JFK\",\"RDU\",112.00,102.00,0.00,\"\",0.00,91.00,69.00,427.00,0.00,0.00,0.00,0.00,102.00,\n2015,5,13,\"MQ\",\"3363\",\"JFK\",\"RDU\",-3.00,-3.00,0.00,\"\",0.00,101.00,78.00,427.00,,,,,,\n2015,5,14,\"MQ\",\"3363\",\"JFK\",\"RDU\",-9.00,-10.00,0.00,\"\",0.00,100.00,69.00,427.00,,,,,,\n2015,5,15,\"MQ\",\"3363\",\"JFK\",\"RDU\",-9.00,8.00,0.00,\"\",0.00,118.00,73.00,427.00,,,,,,\n2015,5,16,\"MQ\",\"3363\",\"JFK\",\"RDU\",-3.00,-14.00,0.00,\"\",0.00,90.00,64.00,427.00,,,,,,\n2015,5,17,\"MQ\",\"3363\",\"JFK\",\"RDU\",1.00,18.00,0.00,\"\",0.00,118.00,66.00,427.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,18,\"MQ\",\"3363\",\"JFK\",\"RDU\",-6.00,16.00,0.00,\"\",0.00,123.00,66.00,427.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3363\",\"JFK\",\"RDU\",27.00,39.00,0.00,\"\",0.00,113.00,67.00,427.00,0.00,0.00,12.00,0.00,27.00,\n2015,5,20,\"MQ\",\"3363\",\"JFK\",\"RDU\",3.00,12.00,0.00,\"\",0.00,110.00,72.00,427.00,,,,,,\n2015,5,21,\"MQ\",\"3363\",\"JFK\",\"RDU\",-4.00,1.00,0.00,\"\",0.00,106.00,76.00,427.00,,,,,,\n2015,5,22,\"MQ\",\"3363\",\"JFK\",\"RDU\",-5.00,6.00,0.00,\"\",0.00,112.00,77.00,427.00,,,,,,\n2015,5,23,\"MQ\",\"3363\",\"JFK\",\"RDU\",-5.00,23.00,0.00,\"\",0.00,129.00,71.00,427.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,24,\"MQ\",\"3363\",\"JFK\",\"RDU\",7.00,11.00,0.00,\"\",0.00,105.00,67.00,427.00,,,,,,\n2015,5,25,\"MQ\",\"3363\",\"JFK\",\"RDU\",-9.00,-27.00,0.00,\"\",0.00,83.00,64.00,427.00,,,,,,\n2015,5,26,\"MQ\",\"3363\",\"JFK\",\"RDU\",-9.00,-8.00,0.00,\"\",0.00,102.00,65.00,427.00,,,,,,\n2015,5,27,\"MQ\",\"3363\",\"JFK\",\"RDU\",-6.00,1.00,0.00,\"\",0.00,108.00,69.00,427.00,,,,,,\n2015,5,28,\"MQ\",\"3363\",\"JFK\",\"RDU\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,29,\"MQ\",\"3363\",\"JFK\",\"RDU\",-8.00,-8.00,0.00,\"\",0.00,101.00,63.00,427.00,,,,,,\n2015,5,30,\"MQ\",\"3363\",\"JFK\",\"RDU\",-9.00,-21.00,0.00,\"\",0.00,89.00,66.00,427.00,,,,,,\n2015,5,1,\"MQ\",\"3363\",\"RDU\",\"JFK\",-6.00,-14.00,0.00,\"\",0.00,85.00,68.00,427.00,,,,,,\n2015,5,2,\"MQ\",\"3363\",\"RDU\",\"JFK\",6.00,9.00,0.00,\"\",0.00,96.00,75.00,427.00,,,,,,\n2015,5,3,\"MQ\",\"3363\",\"RDU\",\"JFK\",13.00,14.00,0.00,\"\",0.00,94.00,73.00,427.00,,,,,,\n2015,5,4,\"MQ\",\"3363\",\"RDU\",\"JFK\",-6.00,-7.00,0.00,\"\",0.00,92.00,76.00,427.00,,,,,,\n2015,5,5,\"MQ\",\"3363\",\"RDU\",\"JFK\",1.00,7.00,0.00,\"\",0.00,99.00,72.00,427.00,,,,,,\n2015,5,6,\"MQ\",\"3363\",\"RDU\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,80.00,66.00,427.00,,,,,,\n2015,5,7,\"MQ\",\"3363\",\"RDU\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,86.00,68.00,427.00,,,,,,\n2015,5,8,\"MQ\",\"3363\",\"RDU\",\"JFK\",14.00,7.00,0.00,\"\",0.00,86.00,69.00,427.00,,,,,,\n2015,5,9,\"MQ\",\"3363\",\"RDU\",\"JFK\",59.00,82.00,0.00,\"\",0.00,116.00,75.00,427.00,1.00,0.00,23.00,0.00,58.00,\n2015,5,10,\"MQ\",\"3363\",\"RDU\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,81.00,66.00,427.00,,,,,,\n2015,5,11,\"MQ\",\"3363\",\"RDU\",\"JFK\",19.00,44.00,0.00,\"\",0.00,118.00,78.00,427.00,19.00,0.00,25.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3363\",\"RDU\",\"JFK\",101.00,106.00,0.00,\"\",0.00,98.00,77.00,427.00,0.00,0.00,10.00,0.00,96.00,\n2015,5,13,\"MQ\",\"3363\",\"RDU\",\"JFK\",-8.00,-24.00,0.00,\"\",0.00,77.00,64.00,427.00,,,,,,\n2015,5,14,\"MQ\",\"3363\",\"RDU\",\"JFK\",52.00,56.00,0.00,\"\",0.00,97.00,68.00,427.00,0.00,0.00,4.00,0.00,52.00,\n2015,5,15,\"MQ\",\"3363\",\"RDU\",\"JFK\",23.00,15.00,0.00,\"\",0.00,85.00,65.00,427.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,16,\"MQ\",\"3363\",\"RDU\",\"JFK\",-9.00,-10.00,0.00,\"\",0.00,92.00,71.00,427.00,,,,,,\n2015,5,17,\"MQ\",\"3363\",\"RDU\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,82.00,69.00,427.00,,,,,,\n2015,5,18,\"MQ\",\"3363\",\"RDU\",\"JFK\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,19,\"MQ\",\"3363\",\"RDU\",\"JFK\",46.00,54.00,0.00,\"\",0.00,101.00,69.00,427.00,46.00,0.00,8.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3363\",\"RDU\",\"JFK\",14.00,-2.00,0.00,\"\",0.00,77.00,62.00,427.00,,,,,,\n2015,5,21,\"MQ\",\"3363\",\"RDU\",\"JFK\",1.00,-8.00,0.00,\"\",0.00,84.00,65.00,427.00,,,,,,\n2015,5,22,\"MQ\",\"3363\",\"RDU\",\"JFK\",34.00,30.00,0.00,\"\",0.00,89.00,64.00,427.00,0.00,0.00,0.00,0.00,30.00,\n2015,5,23,\"MQ\",\"3363\",\"RDU\",\"JFK\",16.00,8.00,0.00,\"\",0.00,85.00,65.00,427.00,,,,,,\n2015,5,24,\"MQ\",\"3363\",\"RDU\",\"JFK\",6.00,3.00,0.00,\"\",0.00,90.00,72.00,427.00,,,,,,\n2015,5,25,\"MQ\",\"3363\",\"RDU\",\"JFK\",-9.00,-17.00,0.00,\"\",0.00,85.00,69.00,427.00,,,,,,\n2015,5,26,\"MQ\",\"3363\",\"RDU\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,86.00,69.00,427.00,,,,,,\n2015,5,27,\"MQ\",\"3363\",\"RDU\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,83.00,67.00,427.00,,,,,,\n2015,5,28,\"MQ\",\"3363\",\"RDU\",\"JFK\",13.00,10.00,0.00,\"\",0.00,90.00,69.00,427.00,,,,,,\n2015,5,29,\"MQ\",\"3363\",\"RDU\",\"JFK\",-9.00,-12.00,0.00,\"\",0.00,90.00,69.00,427.00,,,,,,\n2015,5,30,\"MQ\",\"3363\",\"RDU\",\"JFK\",-11.00,-17.00,0.00,\"\",0.00,87.00,69.00,427.00,,,,,,\n2015,5,1,\"MQ\",\"3374\",\"JFK\",\"RDU\",-5.00,-13.00,0.00,\"\",0.00,96.00,68.00,427.00,,,,,,\n2015,5,2,\"MQ\",\"3374\",\"JFK\",\"RDU\",-5.00,-22.00,0.00,\"\",0.00,87.00,68.00,427.00,,,,,,\n2015,5,3,\"MQ\",\"3374\",\"JFK\",\"RDU\",-7.00,-35.00,0.00,\"\",0.00,76.00,63.00,427.00,,,,,,\n2015,5,4,\"MQ\",\"3374\",\"JFK\",\"RDU\",-8.00,-8.00,0.00,\"\",0.00,104.00,67.00,427.00,,,,,,\n2015,5,1,\"MQ\",\"3340\",\"LGA\",\"ORF\",,,1.00,\"A\",0.00,,,296.00,,,,,,\n2015,5,3,\"MQ\",\"3340\",\"LGA\",\"ORF\",25.00,25.00,0.00,\"\",0.00,91.00,47.00,296.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"MQ\",\"3340\",\"LGA\",\"ORF\",-10.00,-29.00,0.00,\"\",0.00,70.00,48.00,296.00,,,,,,\n2015,5,5,\"MQ\",\"3340\",\"LGA\",\"ORF\",-10.00,0.00,0.00,\"\",0.00,99.00,52.00,296.00,,,,,,\n2015,5,6,\"MQ\",\"3340\",\"LGA\",\"ORF\",-5.00,-7.00,0.00,\"\",0.00,87.00,47.00,296.00,,,,,,\n2015,5,7,\"MQ\",\"3340\",\"LGA\",\"ORF\",-6.00,-1.00,0.00,\"\",0.00,94.00,48.00,296.00,,,,,,\n2015,5,8,\"MQ\",\"3340\",\"LGA\",\"ORF\",-5.00,-15.00,0.00,\"\",0.00,79.00,49.00,296.00,,,,,,\n2015,5,10,\"MQ\",\"3340\",\"LGA\",\"ORF\",-13.00,-17.00,0.00,\"\",0.00,87.00,51.00,296.00,,,,,,\n2015,5,11,\"MQ\",\"3340\",\"LGA\",\"ORF\",-10.00,-29.00,0.00,\"\",0.00,70.00,50.00,296.00,,,,,,\n2015,5,12,\"MQ\",\"3340\",\"LGA\",\"ORF\",,,1.00,\"A\",0.00,,,296.00,,,,,,\n2015,5,13,\"MQ\",\"3340\",\"LGA\",\"ORF\",-5.00,-4.00,0.00,\"\",0.00,90.00,49.00,296.00,,,,,,\n2015,5,14,\"MQ\",\"3340\",\"LGA\",\"ORF\",-7.00,-10.00,0.00,\"\",0.00,86.00,49.00,296.00,,,,,,\n2015,5,15,\"MQ\",\"3340\",\"LGA\",\"ORF\",-4.00,-4.00,0.00,\"\",0.00,89.00,49.00,296.00,,,,,,\n2015,5,17,\"MQ\",\"3340\",\"LGA\",\"ORF\",-10.00,-11.00,0.00,\"\",0.00,90.00,49.00,296.00,,,,,,\n2015,5,18,\"MQ\",\"3340\",\"LGA\",\"ORF\",25.00,14.00,0.00,\"\",0.00,78.00,48.00,296.00,,,,,,\n2015,5,19,\"MQ\",\"3340\",\"LGA\",\"ORF\",25.00,5.00,0.00,\"\",0.00,69.00,50.00,296.00,,,,,,\n2015,5,20,\"MQ\",\"3340\",\"LGA\",\"ORF\",-12.00,2.00,0.00,\"\",0.00,103.00,57.00,296.00,,,,,,\n2015,5,21,\"MQ\",\"3340\",\"LGA\",\"ORF\",21.00,10.00,0.00,\"\",0.00,78.00,59.00,296.00,,,,,,\n2015,5,22,\"MQ\",\"3340\",\"LGA\",\"ORF\",14.00,27.00,0.00,\"\",0.00,102.00,56.00,296.00,0.00,0.00,13.00,0.00,14.00,\n2015,5,24,\"MQ\",\"3340\",\"LGA\",\"ORF\",-15.00,-34.00,0.00,\"\",0.00,72.00,47.00,296.00,,,,,,\n2015,5,25,\"MQ\",\"3340\",\"LGA\",\"ORF\",16.00,30.00,0.00,\"\",0.00,103.00,48.00,296.00,0.00,0.00,14.00,0.00,16.00,\n2015,5,26,\"MQ\",\"3340\",\"LGA\",\"ORF\",-13.00,-26.00,0.00,\"\",0.00,76.00,50.00,296.00,,,,,,\n2015,5,27,\"MQ\",\"3340\",\"LGA\",\"ORF\",-12.00,-36.00,0.00,\"\",0.00,65.00,48.00,296.00,,,,,,\n2015,5,28,\"MQ\",\"3340\",\"LGA\",\"ORF\",-2.00,13.00,0.00,\"\",0.00,104.00,53.00,296.00,,,,,,\n2015,5,29,\"MQ\",\"3340\",\"LGA\",\"ORF\",-9.00,-13.00,0.00,\"\",0.00,85.00,51.00,296.00,,,,,,\n2015,5,31,\"MQ\",\"3340\",\"LGA\",\"ORF\",-11.00,-21.00,0.00,\"\",0.00,81.00,46.00,296.00,,,,,,\n2015,5,1,\"MQ\",\"3340\",\"ORF\",\"LGA\",,,1.00,\"A\",0.00,,,296.00,,,,,,\n2015,5,3,\"MQ\",\"3340\",\"ORF\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,83.00,58.00,296.00,,,,,,\n2015,5,4,\"MQ\",\"3340\",\"ORF\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,86.00,60.00,296.00,,,,,,\n2015,5,5,\"MQ\",\"3340\",\"ORF\",\"LGA\",-10.00,8.00,0.00,\"\",0.00,104.00,80.00,296.00,,,,,,\n2015,5,6,\"MQ\",\"3340\",\"ORF\",\"LGA\",-7.00,-3.00,0.00,\"\",0.00,90.00,52.00,296.00,,,,,,\n2015,5,7,\"MQ\",\"3340\",\"ORF\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,86.00,56.00,296.00,,,,,,\n2015,5,8,\"MQ\",\"3340\",\"ORF\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,79.00,56.00,296.00,,,,,,\n2015,5,10,\"MQ\",\"3340\",\"ORF\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,88.00,62.00,296.00,,,,,,\n2015,5,11,\"MQ\",\"3340\",\"ORF\",\"LGA\",-9.00,24.00,0.00,\"\",0.00,119.00,88.00,296.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3340\",\"ORF\",\"LGA\",,,1.00,\"A\",0.00,,,296.00,,,,,,\n2015,5,13,\"MQ\",\"3340\",\"ORF\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,75.00,60.00,296.00,,,,,,\n2015,5,14,\"MQ\",\"3340\",\"ORF\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,84.00,59.00,296.00,,,,,,\n2015,5,15,\"MQ\",\"3340\",\"ORF\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,85.00,63.00,296.00,,,,,,\n2015,5,17,\"MQ\",\"3340\",\"ORF\",\"LGA\",-10.00,-3.00,0.00,\"\",0.00,93.00,52.00,296.00,,,,,,\n2015,5,18,\"MQ\",\"3340\",\"ORF\",\"LGA\",96.00,,0.00,\"\",1.00,,,296.00,,,,,,\n2015,5,19,\"MQ\",\"3340\",\"ORF\",\"LGA\",20.00,29.00,0.00,\"\",0.00,95.00,51.00,296.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3340\",\"ORF\",\"LGA\",-8.00,2.00,0.00,\"\",0.00,96.00,57.00,296.00,,,,,,\n2015,5,21,\"MQ\",\"3340\",\"ORF\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,72.00,56.00,296.00,,,,,,\n2015,5,22,\"MQ\",\"3340\",\"ORF\",\"LGA\",24.00,14.00,0.00,\"\",0.00,76.00,56.00,296.00,,,,,,\n2015,5,24,\"MQ\",\"3340\",\"ORF\",\"LGA\",-10.00,-13.00,0.00,\"\",0.00,83.00,56.00,296.00,,,,,,\n2015,5,25,\"MQ\",\"3340\",\"ORF\",\"LGA\",34.00,24.00,0.00,\"\",0.00,76.00,58.00,296.00,7.00,0.00,0.00,0.00,17.00,\n2015,5,26,\"MQ\",\"3340\",\"ORF\",\"LGA\",-10.00,-17.00,0.00,\"\",0.00,79.00,62.00,296.00,,,,,,\n2015,5,27,\"MQ\",\"3340\",\"ORF\",\"LGA\",36.00,21.00,0.00,\"\",0.00,71.00,57.00,296.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,28,\"MQ\",\"3340\",\"ORF\",\"LGA\",-1.00,9.00,0.00,\"\",0.00,96.00,58.00,296.00,,,,,,\n2015,5,29,\"MQ\",\"3340\",\"ORF\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,79.00,59.00,296.00,,,,,,\n2015,5,31,\"MQ\",\"3340\",\"ORF\",\"LGA\",-9.00,7.00,0.00,\"\",0.00,102.00,56.00,296.00,,,,,,\n2015,5,7,\"MQ\",\"3342\",\"LGA\",\"RDU\",23.00,9.00,0.00,\"\",0.00,85.00,69.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3342\",\"LGA\",\"RDU\",35.00,39.00,0.00,\"\",0.00,103.00,74.00,431.00,0.00,0.00,4.00,0.00,35.00,\n2015,5,9,\"MQ\",\"3342\",\"LGA\",\"RDU\",-10.00,-19.00,0.00,\"\",0.00,92.00,67.00,431.00,,,,,,\n2015,5,10,\"MQ\",\"3342\",\"LGA\",\"RDU\",-2.00,-11.00,0.00,\"\",0.00,90.00,69.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3342\",\"LGA\",\"RDU\",-8.00,-12.00,0.00,\"\",0.00,95.00,65.00,431.00,,,,,,\n2015,5,12,\"MQ\",\"3342\",\"LGA\",\"RDU\",-2.00,-7.00,0.00,\"\",0.00,94.00,66.00,431.00,,,,,,\n2015,5,13,\"MQ\",\"3342\",\"LGA\",\"RDU\",-7.00,8.00,0.00,\"\",0.00,114.00,74.00,431.00,,,,,,\n2015,5,14,\"MQ\",\"3342\",\"LGA\",\"RDU\",-7.00,-11.00,0.00,\"\",0.00,95.00,66.00,431.00,,,,,,\n2015,5,15,\"MQ\",\"3342\",\"LGA\",\"RDU\",-3.00,-2.00,0.00,\"\",0.00,100.00,67.00,431.00,,,,,,\n2015,5,16,\"MQ\",\"3342\",\"LGA\",\"RDU\",-12.00,-30.00,0.00,\"\",0.00,83.00,65.00,431.00,,,,,,\n2015,5,17,\"MQ\",\"3342\",\"LGA\",\"RDU\",0.00,-5.00,0.00,\"\",0.00,94.00,61.00,431.00,,,,,,\n2015,5,18,\"MQ\",\"3342\",\"LGA\",\"RDU\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,19,\"MQ\",\"3342\",\"LGA\",\"RDU\",40.00,41.00,0.00,\"\",0.00,100.00,66.00,431.00,0.00,0.00,1.00,0.00,40.00,\n2015,5,20,\"MQ\",\"3342\",\"LGA\",\"RDU\",-5.00,14.00,0.00,\"\",0.00,118.00,68.00,431.00,,,,,,\n2015,5,21,\"MQ\",\"3342\",\"LGA\",\"RDU\",-9.00,-11.00,0.00,\"\",0.00,97.00,75.00,431.00,,,,,,\n2015,5,22,\"MQ\",\"3342\",\"LGA\",\"RDU\",-5.00,14.00,0.00,\"\",0.00,118.00,77.00,431.00,,,,,,\n2015,5,23,\"MQ\",\"3342\",\"LGA\",\"RDU\",-8.00,-24.00,0.00,\"\",0.00,85.00,71.00,431.00,,,,,,\n2015,5,24,\"MQ\",\"3342\",\"LGA\",\"RDU\",13.00,3.00,0.00,\"\",0.00,89.00,61.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3342\",\"LGA\",\"RDU\",-5.00,-2.00,0.00,\"\",0.00,102.00,62.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3342\",\"LGA\",\"RDU\",-6.00,-21.00,0.00,\"\",0.00,84.00,65.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3342\",\"LGA\",\"RDU\",-7.00,-21.00,0.00,\"\",0.00,85.00,63.00,431.00,,,,,,\n2015,5,28,\"MQ\",\"3342\",\"LGA\",\"RDU\",-2.00,4.00,0.00,\"\",0.00,105.00,64.00,431.00,,,,,,\n2015,5,29,\"MQ\",\"3342\",\"LGA\",\"RDU\",18.00,7.00,0.00,\"\",0.00,88.00,61.00,431.00,,,,,,\n2015,5,30,\"MQ\",\"3342\",\"LGA\",\"RDU\",56.00,39.00,0.00,\"\",0.00,84.00,64.00,431.00,0.00,0.00,0.00,0.00,39.00,\n2015,5,31,\"MQ\",\"3342\",\"LGA\",\"RDU\",-6.00,-28.00,0.00,\"\",0.00,77.00,61.00,431.00,,,,,,\n2015,5,7,\"MQ\",\"3342\",\"RDU\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,86.00,64.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3342\",\"RDU\",\"LGA\",11.00,-4.00,0.00,\"\",0.00,83.00,66.00,431.00,,,,,,\n2015,5,9,\"MQ\",\"3342\",\"RDU\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,94.00,73.00,431.00,,,,,,\n2015,5,10,\"MQ\",\"3342\",\"RDU\",\"LGA\",3.00,-4.00,0.00,\"\",0.00,91.00,67.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3342\",\"RDU\",\"LGA\",4.00,111.00,0.00,\"\",0.00,205.00,72.00,431.00,0.00,0.00,111.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3342\",\"RDU\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,84.00,67.00,431.00,,,,,,\n2015,5,13,\"MQ\",\"3342\",\"RDU\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,96.00,63.00,431.00,,,,,,\n2015,5,14,\"MQ\",\"3342\",\"RDU\",\"LGA\",4.00,18.00,0.00,\"\",0.00,112.00,65.00,431.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,15,\"MQ\",\"3342\",\"RDU\",\"LGA\",-1.00,0.00,0.00,\"\",0.00,99.00,65.00,431.00,,,,,,\n2015,5,16,\"MQ\",\"3342\",\"RDU\",\"LGA\",-11.00,-18.00,0.00,\"\",0.00,93.00,72.00,431.00,,,,,,\n2015,5,17,\"MQ\",\"3342\",\"RDU\",\"LGA\",-4.00,25.00,0.00,\"\",0.00,127.00,67.00,431.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,18,\"MQ\",\"3342\",\"RDU\",\"LGA\",132.00,128.00,0.00,\"\",0.00,94.00,69.00,431.00,0.00,0.00,128.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3342\",\"RDU\",\"LGA\",88.00,89.00,0.00,\"\",0.00,99.00,63.00,431.00,0.00,75.00,1.00,0.00,13.00,\n2015,5,20,\"MQ\",\"3342\",\"RDU\",\"LGA\",-6.00,-28.00,0.00,\"\",0.00,76.00,58.00,431.00,,,,,,\n2015,5,21,\"MQ\",\"3342\",\"RDU\",\"LGA\",-1.00,19.00,0.00,\"\",0.00,118.00,84.00,431.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3342\",\"RDU\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,85.00,60.00,431.00,,,,,,\n2015,5,23,\"MQ\",\"3342\",\"RDU\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,92.00,67.00,431.00,,,,,,\n2015,5,24,\"MQ\",\"3342\",\"RDU\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,85.00,66.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3342\",\"RDU\",\"LGA\",1.00,4.00,0.00,\"\",0.00,101.00,67.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3342\",\"RDU\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,84.00,67.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3342\",\"RDU\",\"LGA\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,28,\"MQ\",\"3342\",\"RDU\",\"LGA\",-7.00,59.00,0.00,\"\",0.00,164.00,65.00,431.00,0.00,0.00,59.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3342\",\"RDU\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,85.00,68.00,431.00,,,,,,\n2015,5,30,\"MQ\",\"3342\",\"RDU\",\"LGA\",28.00,17.00,0.00,\"\",0.00,89.00,70.00,431.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,31,\"MQ\",\"3342\",\"RDU\",\"LGA\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,1,\"MQ\",\"3348\",\"LGA\",\"DTW\",0.00,-16.00,0.00,\"\",0.00,107.00,77.00,502.00,,,,,,\n2015,5,2,\"MQ\",\"3348\",\"LGA\",\"DTW\",-9.00,-37.00,0.00,\"\",0.00,95.00,73.00,502.00,,,,,,\n2015,5,3,\"MQ\",\"3348\",\"LGA\",\"DTW\",-10.00,-43.00,0.00,\"\",0.00,90.00,75.00,502.00,,,,,,\n2015,5,4,\"MQ\",\"3348\",\"LGA\",\"DTW\",-11.00,-38.00,0.00,\"\",0.00,96.00,75.00,502.00,,,,,,\n2015,5,5,\"MQ\",\"3348\",\"LGA\",\"DTW\",-12.00,4.00,0.00,\"\",0.00,139.00,104.00,502.00,,,,,,\n2015,5,6,\"MQ\",\"3348\",\"LGA\",\"DTW\",11.00,25.00,0.00,\"\",0.00,137.00,78.00,502.00,3.00,0.00,14.00,0.00,8.00,\n2015,5,7,\"MQ\",\"3348\",\"LGA\",\"DTW\",-8.00,-29.00,0.00,\"\",0.00,102.00,78.00,502.00,,,,,,\n2015,5,8,\"MQ\",\"3348\",\"LGA\",\"DTW\",-12.00,-34.00,0.00,\"\",0.00,101.00,73.00,502.00,,,,,,\n2015,5,9,\"MQ\",\"3348\",\"LGA\",\"DTW\",-9.00,-41.00,0.00,\"\",0.00,91.00,75.00,502.00,,,,,,\n2015,5,10,\"MQ\",\"3348\",\"LGA\",\"DTW\",-2.00,-8.00,0.00,\"\",0.00,117.00,75.00,502.00,,,,,,\n2015,5,11,\"MQ\",\"3348\",\"LGA\",\"DTW\",97.00,92.00,0.00,\"\",0.00,118.00,84.00,502.00,5.00,0.00,0.00,0.00,87.00,\n2015,5,12,\"MQ\",\"3348\",\"LGA\",\"DTW\",-17.00,-29.00,0.00,\"\",0.00,111.00,86.00,502.00,,,,,,\n2015,5,13,\"MQ\",\"3348\",\"LGA\",\"DTW\",80.00,69.00,0.00,\"\",0.00,112.00,79.00,502.00,60.00,0.00,0.00,0.00,9.00,\n2015,5,14,\"MQ\",\"3348\",\"LGA\",\"DTW\",-8.00,-34.00,0.00,\"\",0.00,97.00,78.00,502.00,,,,,,\n2015,5,15,\"MQ\",\"3348\",\"LGA\",\"DTW\",-4.00,-26.00,0.00,\"\",0.00,101.00,80.00,502.00,,,,,,\n2015,5,16,\"MQ\",\"3348\",\"LGA\",\"DTW\",-11.00,-32.00,0.00,\"\",0.00,102.00,84.00,502.00,,,,,,\n2015,5,17,\"MQ\",\"3348\",\"LGA\",\"DTW\",-3.00,-11.00,0.00,\"\",0.00,115.00,73.00,502.00,,,,,,\n2015,5,18,\"MQ\",\"3348\",\"LGA\",\"DTW\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,19,\"MQ\",\"3348\",\"LGA\",\"DTW\",-3.00,17.00,0.00,\"\",0.00,143.00,83.00,502.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3348\",\"LGA\",\"DTW\",-2.00,17.00,0.00,\"\",0.00,142.00,85.00,502.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3348\",\"LGA\",\"DTW\",61.00,53.00,0.00,\"\",0.00,115.00,81.00,502.00,0.00,0.00,0.00,0.00,53.00,\n2015,5,22,\"MQ\",\"3348\",\"LGA\",\"DTW\",10.00,0.00,0.00,\"\",0.00,113.00,84.00,502.00,,,,,,\n2015,5,23,\"MQ\",\"3348\",\"LGA\",\"DTW\",-11.00,-30.00,0.00,\"\",0.00,104.00,80.00,502.00,,,,,,\n2015,5,24,\"MQ\",\"3348\",\"LGA\",\"DTW\",-3.00,-27.00,0.00,\"\",0.00,99.00,79.00,502.00,,,,,,\n2015,5,25,\"MQ\",\"3348\",\"LGA\",\"DTW\",-10.00,-35.00,0.00,\"\",0.00,98.00,81.00,502.00,,,,,,\n2015,5,26,\"MQ\",\"3348\",\"LGA\",\"DTW\",-5.00,64.00,0.00,\"\",0.00,192.00,84.00,502.00,0.00,0.00,64.00,0.00,0.00,\n2015,5,27,\"MQ\",\"3348\",\"LGA\",\"DTW\",80.00,111.00,0.00,\"\",0.00,154.00,80.00,502.00,0.00,0.00,31.00,0.00,80.00,\n2015,5,28,\"MQ\",\"3348\",\"LGA\",\"DTW\",18.00,16.00,0.00,\"\",0.00,121.00,75.00,502.00,7.00,0.00,0.00,0.00,9.00,\n2015,5,29,\"MQ\",\"3348\",\"LGA\",\"DTW\",10.00,23.00,0.00,\"\",0.00,136.00,92.00,502.00,0.00,0.00,13.00,0.00,10.00,\n2015,5,30,\"MQ\",\"3348\",\"LGA\",\"DTW\",-2.00,6.00,0.00,\"\",0.00,131.00,84.00,502.00,,,,,,\n2015,5,31,\"MQ\",\"3348\",\"LGA\",\"DTW\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,1,\"MQ\",\"3349\",\"CLE\",\"LGA\",16.00,24.00,0.00,\"\",0.00,101.00,73.00,419.00,0.00,0.00,8.00,0.00,16.00,\n2015,5,2,\"MQ\",\"3349\",\"CLE\",\"LGA\",-13.00,-13.00,0.00,\"\",0.00,93.00,68.00,419.00,,,,,,\n2015,5,3,\"MQ\",\"3349\",\"CLE\",\"LGA\",-8.00,-15.00,0.00,\"\",0.00,86.00,71.00,419.00,,,,,,\n2015,5,4,\"MQ\",\"3349\",\"CLE\",\"LGA\",30.00,28.00,0.00,\"\",0.00,91.00,72.00,419.00,18.00,0.00,0.00,0.00,10.00,\n2015,5,5,\"MQ\",\"3349\",\"CLE\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,85.00,67.00,419.00,,,,,,\n2015,5,6,\"MQ\",\"3349\",\"CLE\",\"LGA\",32.00,39.00,0.00,\"\",0.00,100.00,67.00,419.00,0.00,0.00,7.00,0.00,32.00,\n2015,5,7,\"MQ\",\"3349\",\"CLE\",\"LGA\",26.00,26.00,0.00,\"\",0.00,93.00,67.00,419.00,7.00,0.00,0.00,0.00,19.00,\n2015,5,8,\"MQ\",\"3349\",\"CLE\",\"LGA\",36.00,66.00,0.00,\"\",0.00,123.00,76.00,419.00,0.00,0.00,38.00,0.00,28.00,\n2015,5,9,\"MQ\",\"3349\",\"CLE\",\"LGA\",-11.00,-13.00,0.00,\"\",0.00,91.00,70.00,419.00,,,,,,\n2015,5,10,\"MQ\",\"3349\",\"CLE\",\"LGA\",-7.00,5.00,0.00,\"\",0.00,105.00,66.00,419.00,,,,,,\n2015,5,11,\"MQ\",\"3349\",\"CLE\",\"LGA\",-13.00,3.00,0.00,\"\",0.00,109.00,79.00,419.00,,,,,,\n2015,5,12,\"MQ\",\"3349\",\"CLE\",\"LGA\",-9.00,-12.00,0.00,\"\",0.00,90.00,65.00,419.00,,,,,,\n2015,5,13,\"MQ\",\"3349\",\"CLE\",\"LGA\",7.00,18.00,0.00,\"\",0.00,104.00,65.00,419.00,0.00,0.00,11.00,0.00,7.00,\n2015,5,14,\"MQ\",\"3349\",\"CLE\",\"LGA\",7.00,28.00,0.00,\"\",0.00,114.00,65.00,419.00,1.00,0.00,21.00,0.00,6.00,\n2015,5,15,\"MQ\",\"3349\",\"CLE\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,83.00,64.00,419.00,,,,,,\n2015,5,16,\"MQ\",\"3349\",\"CLE\",\"LGA\",-8.00,-18.00,0.00,\"\",0.00,83.00,67.00,419.00,,,,,,\n2015,5,17,\"MQ\",\"3349\",\"CLE\",\"LGA\",-9.00,-10.00,0.00,\"\",0.00,92.00,71.00,419.00,,,,,,\n2015,5,18,\"MQ\",\"3349\",\"CLE\",\"LGA\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,19,\"MQ\",\"3349\",\"CLE\",\"LGA\",64.00,87.00,0.00,\"\",0.00,116.00,63.00,419.00,0.00,0.00,87.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3349\",\"CLE\",\"LGA\",1.00,-7.00,0.00,\"\",0.00,85.00,62.00,419.00,,,,,,\n2015,5,21,\"MQ\",\"3349\",\"CLE\",\"LGA\",-8.00,-14.00,0.00,\"\",0.00,87.00,66.00,419.00,,,,,,\n2015,5,22,\"MQ\",\"3349\",\"CLE\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,82.00,62.00,419.00,,,,,,\n2015,5,23,\"MQ\",\"3349\",\"CLE\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,77.00,62.00,419.00,,,,,,\n2015,5,24,\"MQ\",\"3349\",\"CLE\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,83.00,64.00,419.00,,,,,,\n2015,5,25,\"MQ\",\"3349\",\"CLE\",\"LGA\",-8.00,-2.00,0.00,\"\",0.00,99.00,80.00,419.00,,,,,,\n2015,5,26,\"MQ\",\"3349\",\"CLE\",\"LGA\",67.00,65.00,0.00,\"\",0.00,91.00,68.00,419.00,4.00,0.00,0.00,0.00,61.00,\n2015,5,27,\"MQ\",\"3349\",\"CLE\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,87.00,71.00,419.00,,,,,,\n2015,5,28,\"MQ\",\"3349\",\"CLE\",\"LGA\",42.00,33.00,0.00,\"\",0.00,84.00,69.00,419.00,5.00,0.00,0.00,0.00,28.00,\n2015,5,29,\"MQ\",\"3349\",\"CLE\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,84.00,66.00,419.00,,,,,,\n2015,5,30,\"MQ\",\"3349\",\"CLE\",\"LGA\",69.00,69.00,0.00,\"\",0.00,93.00,69.00,419.00,0.00,0.00,2.00,0.00,67.00,\n2015,5,31,\"MQ\",\"3349\",\"CLE\",\"LGA\",-11.00,-4.00,0.00,\"\",0.00,100.00,73.00,419.00,,,,,,\n2015,5,1,\"MQ\",\"3349\",\"LGA\",\"CLE\",18.00,18.00,0.00,\"\",0.00,111.00,67.00,419.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,2,\"MQ\",\"3349\",\"LGA\",\"CLE\",-7.00,-30.00,0.00,\"\",0.00,88.00,60.00,419.00,,,,,,\n2015,5,3,\"MQ\",\"3349\",\"LGA\",\"CLE\",-15.00,-25.00,0.00,\"\",0.00,101.00,66.00,419.00,,,,,,\n2015,5,4,\"MQ\",\"3349\",\"LGA\",\"CLE\",-1.00,11.00,0.00,\"\",0.00,123.00,65.00,419.00,,,,,,\n2015,5,5,\"MQ\",\"3349\",\"LGA\",\"CLE\",-11.00,-35.00,0.00,\"\",0.00,87.00,67.00,419.00,,,,,,\n2015,5,6,\"MQ\",\"3349\",\"LGA\",\"CLE\",15.00,34.00,0.00,\"\",0.00,130.00,71.00,419.00,0.00,0.00,19.00,0.00,15.00,\n2015,5,7,\"MQ\",\"3349\",\"LGA\",\"CLE\",23.00,19.00,0.00,\"\",0.00,107.00,67.00,419.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"MQ\",\"3349\",\"LGA\",\"CLE\",22.00,28.00,0.00,\"\",0.00,117.00,63.00,419.00,0.00,0.00,6.00,0.00,22.00,\n2015,5,9,\"MQ\",\"3349\",\"LGA\",\"CLE\",-7.00,-32.00,0.00,\"\",0.00,86.00,63.00,419.00,,,,,,\n2015,5,10,\"MQ\",\"3349\",\"LGA\",\"CLE\",-7.00,-30.00,0.00,\"\",0.00,88.00,62.00,419.00,,,,,,\n2015,5,11,\"MQ\",\"3349\",\"LGA\",\"CLE\",-7.00,-21.00,0.00,\"\",0.00,97.00,64.00,419.00,,,,,,\n2015,5,12,\"MQ\",\"3349\",\"LGA\",\"CLE\",-13.00,-25.00,0.00,\"\",0.00,99.00,71.00,419.00,,,,,,\n2015,5,13,\"MQ\",\"3349\",\"LGA\",\"CLE\",-11.00,11.00,0.00,\"\",0.00,133.00,77.00,419.00,,,,,,\n2015,5,14,\"MQ\",\"3349\",\"LGA\",\"CLE\",14.00,6.00,0.00,\"\",0.00,103.00,68.00,419.00,,,,,,\n2015,5,15,\"MQ\",\"3349\",\"LGA\",\"CLE\",2.00,-19.00,0.00,\"\",0.00,90.00,65.00,419.00,,,,,,\n2015,5,16,\"MQ\",\"3349\",\"LGA\",\"CLE\",0.00,-23.00,0.00,\"\",0.00,88.00,67.00,419.00,,,,,,\n2015,5,17,\"MQ\",\"3349\",\"LGA\",\"CLE\",-11.00,-31.00,0.00,\"\",0.00,91.00,65.00,419.00,,,,,,\n2015,5,18,\"MQ\",\"3349\",\"LGA\",\"CLE\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,19,\"MQ\",\"3349\",\"LGA\",\"CLE\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,20,\"MQ\",\"3349\",\"LGA\",\"CLE\",-11.00,4.00,0.00,\"\",0.00,126.00,74.00,419.00,,,,,,\n2015,5,21,\"MQ\",\"3349\",\"LGA\",\"CLE\",2.00,-8.00,0.00,\"\",0.00,101.00,72.00,419.00,,,,,,\n2015,5,22,\"MQ\",\"3349\",\"LGA\",\"CLE\",-5.00,-6.00,0.00,\"\",0.00,110.00,76.00,419.00,,,,,,\n2015,5,23,\"MQ\",\"3349\",\"LGA\",\"CLE\",-10.00,-23.00,0.00,\"\",0.00,98.00,73.00,419.00,,,,,,\n2015,5,24,\"MQ\",\"3349\",\"LGA\",\"CLE\",-3.00,-20.00,0.00,\"\",0.00,94.00,71.00,419.00,,,,,,\n2015,5,25,\"MQ\",\"3349\",\"LGA\",\"CLE\",-5.00,-35.00,0.00,\"\",0.00,81.00,66.00,419.00,,,,,,\n2015,5,26,\"MQ\",\"3349\",\"LGA\",\"CLE\",65.00,63.00,0.00,\"\",0.00,109.00,66.00,419.00,0.00,0.00,0.00,0.00,63.00,\n2015,5,27,\"MQ\",\"3349\",\"LGA\",\"CLE\",-13.00,-25.00,0.00,\"\",0.00,99.00,65.00,419.00,,,,,,\n2015,5,28,\"MQ\",\"3349\",\"LGA\",\"CLE\",32.00,36.00,0.00,\"\",0.00,115.00,67.00,419.00,32.00,0.00,4.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3349\",\"LGA\",\"CLE\",-5.00,-25.00,0.00,\"\",0.00,91.00,64.00,419.00,,,,,,\n2015,5,30,\"MQ\",\"3349\",\"LGA\",\"CLE\",79.00,67.00,0.00,\"\",0.00,99.00,66.00,419.00,0.00,0.00,0.00,0.00,67.00,\n2015,5,31,\"MQ\",\"3349\",\"LGA\",\"CLE\",-7.00,-23.00,0.00,\"\",0.00,95.00,80.00,419.00,,,,,,\n2015,5,1,\"MQ\",\"3350\",\"RDU\",\"JFK\",36.00,34.00,0.00,\"\",0.00,92.00,66.00,427.00,34.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"MQ\",\"3350\",\"RDU\",\"JFK\",-9.00,-4.00,0.00,\"\",0.00,99.00,71.00,427.00,,,,,,\n2015,5,3,\"MQ\",\"3350\",\"RDU\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,83.00,67.00,427.00,,,,,,\n2015,5,4,\"MQ\",\"3350\",\"RDU\",\"JFK\",-3.00,-6.00,0.00,\"\",0.00,91.00,69.00,427.00,,,,,,\n2015,5,5,\"MQ\",\"3350\",\"RDU\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,82.00,70.00,427.00,,,,,,\n2015,5,6,\"MQ\",\"3350\",\"RDU\",\"JFK\",-9.00,-4.00,0.00,\"\",0.00,99.00,71.00,427.00,,,,,,\n2015,5,7,\"MQ\",\"3350\",\"RDU\",\"JFK\",52.00,47.00,0.00,\"\",0.00,89.00,70.00,427.00,47.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"MQ\",\"3350\",\"RDU\",\"JFK\",79.00,99.00,0.00,\"\",0.00,114.00,89.00,427.00,0.00,0.00,99.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3350\",\"RDU\",\"JFK\",1.00,24.00,0.00,\"\",0.00,117.00,96.00,427.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,10,\"MQ\",\"3350\",\"RDU\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,84.00,64.00,427.00,,,,,,\n2015,5,11,\"MQ\",\"3350\",\"RDU\",\"JFK\",-4.00,-1.00,0.00,\"\",0.00,97.00,76.00,427.00,,,,,,\n2015,5,12,\"MQ\",\"3350\",\"RDU\",\"JFK\",6.00,,0.00,\"\",1.00,,,427.00,,,,,,\n2015,5,13,\"MQ\",\"3350\",\"RDU\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,81.00,66.00,427.00,,,,,,\n2015,5,14,\"MQ\",\"3350\",\"RDU\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,88.00,71.00,427.00,,,,,,\n2015,5,15,\"MQ\",\"3350\",\"RDU\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,88.00,70.00,427.00,,,,,,\n2015,5,16,\"MQ\",\"3350\",\"RDU\",\"JFK\",-7.00,-3.00,0.00,\"\",0.00,98.00,70.00,427.00,,,,,,\n2015,5,17,\"MQ\",\"3350\",\"RDU\",\"JFK\",-2.00,-2.00,0.00,\"\",0.00,94.00,73.00,427.00,,,,,,\n2015,5,18,\"MQ\",\"3350\",\"RDU\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,85.00,71.00,427.00,,,,,,\n2015,5,19,\"MQ\",\"3350\",\"RDU\",\"JFK\",34.00,34.00,0.00,\"\",0.00,94.00,70.00,427.00,34.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3350\",\"RDU\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,81.00,64.00,427.00,,,,,,\n2015,5,21,\"MQ\",\"3350\",\"RDU\",\"JFK\",-7.00,-19.00,0.00,\"\",0.00,82.00,63.00,427.00,,,,,,\n2015,5,22,\"MQ\",\"3350\",\"RDU\",\"JFK\",-8.00,-17.00,0.00,\"\",0.00,85.00,62.00,427.00,,,,,,\n2015,5,23,\"MQ\",\"3350\",\"RDU\",\"JFK\",19.00,6.00,0.00,\"\",0.00,81.00,63.00,427.00,,,,,,\n2015,5,24,\"MQ\",\"3350\",\"RDU\",\"JFK\",-7.00,,1.00,\"A\",0.00,,,427.00,,,,,,\n2015,5,25,\"MQ\",\"3350\",\"RDU\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,85.00,69.00,427.00,,,,,,\n2015,5,26,\"MQ\",\"3350\",\"RDU\",\"JFK\",-8.00,-22.00,0.00,\"\",0.00,80.00,66.00,427.00,,,,,,\n2015,5,27,\"MQ\",\"3350\",\"RDU\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,89.00,70.00,427.00,,,,,,\n2015,5,28,\"MQ\",\"3350\",\"RDU\",\"JFK\",-5.00,3.00,0.00,\"\",0.00,102.00,68.00,427.00,,,,,,\n2015,5,29,\"MQ\",\"3350\",\"RDU\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,85.00,68.00,427.00,,,,,,\n2015,5,30,\"MQ\",\"3350\",\"RDU\",\"JFK\",-9.00,-17.00,0.00,\"\",0.00,86.00,71.00,427.00,,,,,,\n2015,5,31,\"MQ\",\"3350\",\"RDU\",\"JFK\",-7.00,-13.00,0.00,\"\",0.00,88.00,65.00,427.00,,,,,,\n2015,5,1,\"MQ\",\"3352\",\"DAY\",\"LGA\",0.00,27.00,0.00,\"\",0.00,136.00,84.00,549.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,2,\"MQ\",\"3352\",\"DAY\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,110.00,92.00,549.00,,,,,,\n2015,5,3,\"MQ\",\"3352\",\"DAY\",\"LGA\",-4.00,0.00,0.00,\"\",0.00,111.00,92.00,549.00,,,,,,\n2015,5,4,\"MQ\",\"3352\",\"DAY\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,108.00,86.00,549.00,,,,,,\n2015,5,5,\"MQ\",\"3352\",\"DAY\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,105.00,86.00,549.00,,,,,,\n2015,5,6,\"MQ\",\"3352\",\"DAY\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,114.00,95.00,549.00,,,,,,\n2015,5,7,\"MQ\",\"3352\",\"DAY\",\"LGA\",-2.00,6.00,0.00,\"\",0.00,117.00,89.00,549.00,,,,,,\n2015,5,8,\"MQ\",\"3352\",\"DAY\",\"LGA\",-4.00,29.00,0.00,\"\",0.00,142.00,109.00,549.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3352\",\"DAY\",\"LGA\",-6.00,33.00,0.00,\"\",0.00,148.00,110.00,549.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,10,\"MQ\",\"3352\",\"DAY\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,106.00,90.00,549.00,,,,,,\n2015,5,11,\"MQ\",\"3352\",\"DAY\",\"LGA\",24.00,24.00,0.00,\"\",0.00,109.00,89.00,549.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3352\",\"DAY\",\"LGA\",336.00,328.00,0.00,\"\",0.00,101.00,80.00,549.00,328.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"MQ\",\"3352\",\"DAY\",\"LGA\",-9.00,-15.00,0.00,\"\",0.00,103.00,77.00,549.00,,,,,,\n2015,5,14,\"MQ\",\"3352\",\"DAY\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,105.00,83.00,549.00,,,,,,\n2015,5,15,\"MQ\",\"3352\",\"DAY\",\"LGA\",18.00,28.00,0.00,\"\",0.00,119.00,85.00,549.00,18.00,0.00,10.00,0.00,0.00,\n2015,5,16,\"MQ\",\"3352\",\"DAY\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,102.00,85.00,549.00,,,,,,\n2015,5,17,\"MQ\",\"3352\",\"DAY\",\"LGA\",-11.00,-13.00,0.00,\"\",0.00,105.00,83.00,549.00,,,,,,\n2015,5,18,\"MQ\",\"3352\",\"DAY\",\"LGA\",-3.00,,0.00,\"\",1.00,,,549.00,,,,,,\n2015,5,19,\"MQ\",\"3352\",\"DAY\",\"LGA\",22.00,28.00,0.00,\"\",0.00,115.00,90.00,549.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3352\",\"DAY\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,91.00,74.00,549.00,,,,,,\n2015,5,21,\"MQ\",\"3352\",\"DAY\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,96.00,80.00,549.00,,,,,,\n2015,5,22,\"MQ\",\"3352\",\"DAY\",\"LGA\",-4.00,10.00,0.00,\"\",0.00,123.00,79.00,549.00,,,,,,\n2015,5,23,\"MQ\",\"3352\",\"DAY\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,101.00,76.00,549.00,,,,,,\n2015,5,24,\"MQ\",\"3352\",\"DAY\",\"LGA\",2.00,-5.00,0.00,\"\",0.00,100.00,81.00,549.00,,,,,,\n2015,5,25,\"MQ\",\"3352\",\"DAY\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,99.00,84.00,549.00,,,,,,\n2015,5,26,\"MQ\",\"3352\",\"DAY\",\"LGA\",-7.00,-6.00,0.00,\"\",0.00,110.00,88.00,549.00,,,,,,\n2015,5,27,\"MQ\",\"3352\",\"DAY\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,102.00,85.00,549.00,,,,,,\n2015,5,28,\"MQ\",\"3352\",\"DAY\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,104.00,88.00,549.00,,,,,,\n2015,5,29,\"MQ\",\"3352\",\"DAY\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,106.00,83.00,549.00,,,,,,\n2015,5,30,\"MQ\",\"3352\",\"DAY\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,100.00,87.00,549.00,,,,,,\n2015,5,31,\"MQ\",\"3352\",\"DAY\",\"LGA\",5.00,8.00,0.00,\"\",0.00,110.00,88.00,549.00,,,,,,\n2015,5,1,\"MQ\",\"3390\",\"DTW\",\"LGA\",32.00,37.00,0.00,\"\",0.00,106.00,77.00,502.00,6.00,0.00,5.00,0.00,26.00,\n2015,5,3,\"MQ\",\"3390\",\"DTW\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,100.00,77.00,502.00,,,,,,\n2015,5,4,\"MQ\",\"3390\",\"DTW\",\"LGA\",-7.00,-10.00,0.00,\"\",0.00,98.00,80.00,502.00,,,,,,\n2015,5,5,\"MQ\",\"3390\",\"DTW\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,96.00,74.00,502.00,,,,,,\n2015,5,6,\"MQ\",\"3390\",\"DTW\",\"LGA\",42.00,53.00,0.00,\"\",0.00,112.00,71.00,502.00,7.00,0.00,11.00,0.00,35.00,\n2015,5,1,\"MQ\",\"3390\",\"LGA\",\"DTW\",-8.00,26.00,0.00,\"\",0.00,155.00,80.00,502.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,3,\"MQ\",\"3390\",\"LGA\",\"DTW\",-9.00,-9.00,0.00,\"\",0.00,121.00,79.00,502.00,,,,,,\n2015,5,4,\"MQ\",\"3390\",\"LGA\",\"DTW\",-11.00,-28.00,0.00,\"\",0.00,104.00,74.00,502.00,,,,,,\n2015,5,5,\"MQ\",\"3390\",\"LGA\",\"DTW\",-1.00,1.00,0.00,\"\",0.00,123.00,87.00,502.00,,,,,,\n2015,5,6,\"MQ\",\"3390\",\"LGA\",\"DTW\",40.00,35.00,0.00,\"\",0.00,116.00,80.00,502.00,0.00,0.00,0.00,0.00,35.00,\n2015,5,3,\"MQ\",\"3391\",\"CMH\",\"LGA\",-9.00,-15.00,0.00,\"\",0.00,98.00,79.00,479.00,,,,,,\n2015,5,4,\"MQ\",\"3391\",\"CMH\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,92.00,76.00,479.00,,,,,,\n2015,5,5,\"MQ\",\"3391\",\"CMH\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,95.00,74.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3391\",\"CMH\",\"LGA\",36.00,41.00,0.00,\"\",0.00,109.00,80.00,479.00,12.00,0.00,5.00,0.00,24.00,\n2015,5,7,\"MQ\",\"3391\",\"CMH\",\"LGA\",-6.00,3.00,0.00,\"\",0.00,113.00,79.00,479.00,,,,,,\n2015,5,8,\"MQ\",\"3391\",\"CMH\",\"LGA\",5.00,2.00,0.00,\"\",0.00,101.00,78.00,479.00,,,,,,\n2015,5,10,\"MQ\",\"3391\",\"CMH\",\"LGA\",-1.00,9.00,0.00,\"\",0.00,114.00,77.00,479.00,,,,,,\n2015,5,11,\"MQ\",\"3391\",\"CMH\",\"LGA\",155.00,144.00,0.00,\"\",0.00,93.00,78.00,479.00,0.00,65.00,79.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3391\",\"CMH\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,87.00,73.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3391\",\"CMH\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,96.00,74.00,479.00,,,,,,\n2015,5,14,\"MQ\",\"3391\",\"CMH\",\"LGA\",-7.00,-10.00,0.00,\"\",0.00,101.00,75.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3391\",\"CMH\",\"LGA\",-9.00,-15.00,0.00,\"\",0.00,98.00,75.00,479.00,,,,,,\n2015,5,17,\"MQ\",\"3391\",\"CMH\",\"LGA\",-9.00,-6.00,0.00,\"\",0.00,107.00,87.00,479.00,,,,,,\n2015,5,18,\"MQ\",\"3391\",\"CMH\",\"LGA\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,19,\"MQ\",\"3391\",\"CMH\",\"LGA\",38.00,30.00,0.00,\"\",0.00,96.00,73.00,479.00,0.00,0.00,24.00,0.00,6.00,\n2015,5,20,\"MQ\",\"3391\",\"CMH\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,101.00,73.00,479.00,,,,,,\n2015,5,21,\"MQ\",\"3391\",\"CMH\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,88.00,72.00,479.00,,,,,,\n2015,5,22,\"MQ\",\"3391\",\"CMH\",\"LGA\",16.00,4.00,0.00,\"\",0.00,92.00,72.00,479.00,,,,,,\n2015,5,24,\"MQ\",\"3391\",\"CMH\",\"LGA\",-1.00,21.00,0.00,\"\",0.00,126.00,69.00,479.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,25,\"MQ\",\"3391\",\"CMH\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,91.00,77.00,479.00,,,,,,\n2015,5,26,\"MQ\",\"3391\",\"CMH\",\"LGA\",51.00,38.00,0.00,\"\",0.00,91.00,75.00,479.00,1.00,0.00,0.00,0.00,37.00,\n2015,5,27,\"MQ\",\"3391\",\"CMH\",\"LGA\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,28,\"MQ\",\"3391\",\"CMH\",\"LGA\",-10.00,-5.00,0.00,\"\",0.00,109.00,73.00,479.00,,,,,,\n2015,5,29,\"MQ\",\"3391\",\"CMH\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,101.00,77.00,479.00,,,,,,\n2015,5,31,\"MQ\",\"3391\",\"CMH\",\"LGA\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,3,\"MQ\",\"3391\",\"LGA\",\"CMH\",-3.00,-12.00,0.00,\"\",0.00,98.00,74.00,479.00,,,,,,\n2015,5,4,\"MQ\",\"3391\",\"LGA\",\"CMH\",-12.00,-24.00,0.00,\"\",0.00,95.00,75.00,479.00,,,,,,\n2015,5,5,\"MQ\",\"3391\",\"LGA\",\"CMH\",-5.00,-22.00,0.00,\"\",0.00,90.00,74.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3391\",\"LGA\",\"CMH\",49.00,52.00,0.00,\"\",0.00,110.00,73.00,479.00,0.00,0.00,3.00,0.00,49.00,\n2015,5,7,\"MQ\",\"3391\",\"LGA\",\"CMH\",9.00,0.00,0.00,\"\",0.00,98.00,76.00,479.00,,,,,,\n2015,5,8,\"MQ\",\"3391\",\"LGA\",\"CMH\",35.00,33.00,0.00,\"\",0.00,105.00,74.00,479.00,0.00,0.00,1.00,0.00,32.00,\n2015,5,10,\"MQ\",\"3391\",\"LGA\",\"CMH\",-4.00,-18.00,0.00,\"\",0.00,93.00,75.00,479.00,,,,,,\n2015,5,11,\"MQ\",\"3391\",\"LGA\",\"CMH\",30.00,26.00,0.00,\"\",0.00,103.00,73.00,479.00,5.00,0.00,0.00,0.00,21.00,\n2015,5,12,\"MQ\",\"3391\",\"LGA\",\"CMH\",0.00,4.00,0.00,\"\",0.00,111.00,81.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3391\",\"LGA\",\"CMH\",-10.00,2.00,0.00,\"\",0.00,119.00,77.00,479.00,,,,,,\n2015,5,14,\"MQ\",\"3391\",\"LGA\",\"CMH\",-7.00,-4.00,0.00,\"\",0.00,110.00,80.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3391\",\"LGA\",\"CMH\",-13.00,-18.00,0.00,\"\",0.00,102.00,79.00,479.00,,,,,,\n2015,5,17,\"MQ\",\"3391\",\"LGA\",\"CMH\",-8.00,-18.00,0.00,\"\",0.00,97.00,74.00,479.00,,,,,,\n2015,5,18,\"MQ\",\"3391\",\"LGA\",\"CMH\",325.00,339.00,0.00,\"\",0.00,121.00,84.00,479.00,0.00,0.00,14.00,0.00,325.00,\n2015,5,19,\"MQ\",\"3391\",\"LGA\",\"CMH\",53.00,36.00,0.00,\"\",0.00,90.00,77.00,479.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,20,\"MQ\",\"3391\",\"LGA\",\"CMH\",-6.00,13.00,0.00,\"\",0.00,126.00,82.00,479.00,,,,,,\n2015,5,21,\"MQ\",\"3391\",\"LGA\",\"CMH\",-8.00,1.00,0.00,\"\",0.00,116.00,81.00,479.00,,,,,,\n2015,5,22,\"MQ\",\"3391\",\"LGA\",\"CMH\",42.00,41.00,0.00,\"\",0.00,106.00,82.00,479.00,0.00,0.00,0.00,0.00,41.00,\n2015,5,24,\"MQ\",\"3391\",\"LGA\",\"CMH\",-8.00,-23.00,0.00,\"\",0.00,92.00,76.00,479.00,,,,,,\n2015,5,25,\"MQ\",\"3391\",\"LGA\",\"CMH\",-13.00,5.00,0.00,\"\",0.00,125.00,77.00,479.00,,,,,,\n2015,5,26,\"MQ\",\"3391\",\"LGA\",\"CMH\",88.00,77.00,0.00,\"\",0.00,96.00,73.00,479.00,0.00,0.00,0.00,0.00,77.00,\n2015,5,27,\"MQ\",\"3391\",\"LGA\",\"CMH\",-11.00,-15.00,0.00,\"\",0.00,103.00,77.00,479.00,,,,,,\n2015,5,28,\"MQ\",\"3391\",\"LGA\",\"CMH\",15.00,11.00,0.00,\"\",0.00,103.00,80.00,479.00,,,,,,\n2015,5,29,\"MQ\",\"3391\",\"LGA\",\"CMH\",-4.00,-2.00,0.00,\"\",0.00,109.00,72.00,479.00,,,,,,\n2015,5,31,\"MQ\",\"3391\",\"LGA\",\"CMH\",-6.00,-17.00,0.00,\"\",0.00,96.00,78.00,479.00,,,,,,\n2015,5,1,\"MQ\",\"3392\",\"ORD\",\"ROC\",-3.00,-21.00,0.00,\"\",0.00,89.00,73.00,528.00,,,,,,\n2015,5,2,\"MQ\",\"3392\",\"ORD\",\"ROC\",4.00,-23.00,0.00,\"\",0.00,80.00,69.00,528.00,,,,,,\n2015,5,3,\"MQ\",\"3392\",\"ORD\",\"ROC\",-4.00,-22.00,0.00,\"\",0.00,89.00,69.00,528.00,,,,,,\n2015,5,4,\"MQ\",\"3392\",\"ORD\",\"ROC\",-3.00,-18.00,0.00,\"\",0.00,92.00,66.00,528.00,,,,,,\n2015,5,5,\"MQ\",\"3392\",\"ORD\",\"ROC\",1.00,-11.00,0.00,\"\",0.00,95.00,68.00,528.00,,,,,,\n2015,5,6,\"MQ\",\"3392\",\"ORD\",\"ROC\",0.00,-12.00,0.00,\"\",0.00,95.00,71.00,528.00,,,,,,\n2015,5,7,\"MQ\",\"3392\",\"ORD\",\"ROC\",0.00,-23.00,0.00,\"\",0.00,84.00,69.00,528.00,,,,,,\n2015,5,8,\"MQ\",\"3392\",\"ORD\",\"ROC\",-1.00,13.00,0.00,\"\",0.00,121.00,70.00,528.00,,,,,,\n2015,5,9,\"MQ\",\"3392\",\"ORD\",\"ROC\",41.00,20.00,0.00,\"\",0.00,86.00,66.00,528.00,0.00,4.00,0.00,0.00,16.00,\n2015,5,10,\"MQ\",\"3392\",\"ORD\",\"ROC\",-2.00,-19.00,0.00,\"\",0.00,90.00,65.00,528.00,,,,,,\n2015,5,11,\"MQ\",\"3392\",\"ORD\",\"ROC\",48.00,43.00,0.00,\"\",0.00,102.00,68.00,528.00,29.00,0.00,0.00,0.00,14.00,\n2015,5,12,\"MQ\",\"3392\",\"ORD\",\"ROC\",-3.00,-5.00,0.00,\"\",0.00,105.00,83.00,528.00,,,,,,\n2015,5,13,\"MQ\",\"3392\",\"ORD\",\"ROC\",-1.00,-19.00,0.00,\"\",0.00,89.00,71.00,528.00,,,,,,\n2015,5,14,\"MQ\",\"3392\",\"ORD\",\"ROC\",0.00,-22.00,0.00,\"\",0.00,85.00,67.00,528.00,,,,,,\n2015,5,15,\"MQ\",\"3392\",\"ORD\",\"ROC\",-1.00,-13.00,0.00,\"\",0.00,95.00,70.00,528.00,,,,,,\n2015,5,16,\"MQ\",\"3392\",\"ORD\",\"ROC\",-1.00,-20.00,0.00,\"\",0.00,88.00,68.00,528.00,,,,,,\n2015,5,17,\"MQ\",\"3392\",\"ORD\",\"ROC\",36.00,10.00,0.00,\"\",0.00,81.00,68.00,528.00,,,,,,\n2015,5,18,\"MQ\",\"3392\",\"ORD\",\"ROC\",4.00,-7.00,0.00,\"\",0.00,96.00,68.00,528.00,,,,,,\n2015,5,19,\"MQ\",\"3392\",\"ORD\",\"ROC\",12.00,-6.00,0.00,\"\",0.00,89.00,69.00,528.00,,,,,,\n2015,5,20,\"MQ\",\"3392\",\"ORD\",\"ROC\",11.00,-4.00,0.00,\"\",0.00,92.00,67.00,528.00,,,,,,\n2015,5,21,\"MQ\",\"3392\",\"ORD\",\"ROC\",-5.00,-29.00,0.00,\"\",0.00,83.00,68.00,528.00,,,,,,\n2015,5,22,\"MQ\",\"3392\",\"ORD\",\"ROC\",-4.00,-23.00,0.00,\"\",0.00,88.00,65.00,528.00,,,,,,\n2015,5,23,\"MQ\",\"3392\",\"ORD\",\"ROC\",-5.00,-24.00,0.00,\"\",0.00,88.00,68.00,528.00,,,,,,\n2015,5,24,\"MQ\",\"3392\",\"ORD\",\"ROC\",-1.00,-15.00,0.00,\"\",0.00,93.00,70.00,528.00,,,,,,\n2015,5,25,\"MQ\",\"3392\",\"ORD\",\"ROC\",36.00,17.00,0.00,\"\",0.00,88.00,69.00,528.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"MQ\",\"3392\",\"ORD\",\"ROC\",7.00,-2.00,0.00,\"\",0.00,98.00,69.00,528.00,,,,,,\n2015,5,27,\"MQ\",\"3392\",\"ORD\",\"ROC\",37.00,23.00,0.00,\"\",0.00,93.00,78.00,528.00,1.00,0.00,0.00,0.00,22.00,\n2015,5,28,\"MQ\",\"3392\",\"ORD\",\"ROC\",2.00,-16.00,0.00,\"\",0.00,89.00,71.00,528.00,,,,,,\n2015,5,29,\"MQ\",\"3392\",\"ORD\",\"ROC\",57.00,50.00,0.00,\"\",0.00,100.00,71.00,528.00,45.00,0.00,0.00,0.00,5.00,\n2015,5,30,\"MQ\",\"3392\",\"ORD\",\"ROC\",-5.00,-29.00,0.00,\"\",0.00,83.00,66.00,528.00,,,,,,\n2015,5,31,\"MQ\",\"3392\",\"ORD\",\"ROC\",1.00,-19.00,0.00,\"\",0.00,87.00,69.00,528.00,,,,,,\n2015,5,1,\"MQ\",\"3392\",\"ROC\",\"ORD\",-18.00,-36.00,0.00,\"\",0.00,101.00,77.00,528.00,,,,,,\n2015,5,2,\"MQ\",\"3392\",\"ROC\",\"ORD\",-6.00,-28.00,0.00,\"\",0.00,97.00,73.00,528.00,,,,,,\n2015,5,3,\"MQ\",\"3392\",\"ROC\",\"ORD\",-7.00,-18.00,0.00,\"\",0.00,108.00,80.00,528.00,,,,,,\n2015,5,4,\"MQ\",\"3392\",\"ROC\",\"ORD\",-10.00,-16.00,0.00,\"\",0.00,113.00,88.00,528.00,,,,,,\n2015,5,5,\"MQ\",\"3392\",\"ROC\",\"ORD\",125.00,121.00,0.00,\"\",0.00,115.00,90.00,528.00,0.00,0.00,121.00,0.00,0.00,\n2015,5,6,\"MQ\",\"3392\",\"ROC\",\"ORD\",-8.00,-15.00,0.00,\"\",0.00,112.00,87.00,528.00,,,,,,\n2015,5,7,\"MQ\",\"3392\",\"ROC\",\"ORD\",-15.00,-28.00,0.00,\"\",0.00,104.00,77.00,528.00,,,,,,\n2015,5,8,\"MQ\",\"3392\",\"ROC\",\"ORD\",131.00,109.00,0.00,\"\",0.00,95.00,77.00,528.00,0.00,0.00,100.00,0.00,9.00,\n2015,5,9,\"MQ\",\"3392\",\"ROC\",\"ORD\",27.00,16.00,0.00,\"\",0.00,106.00,80.00,528.00,5.00,0.00,0.00,0.00,11.00,\n2015,5,10,\"MQ\",\"3392\",\"ROC\",\"ORD\",-6.00,-10.00,0.00,\"\",0.00,113.00,85.00,528.00,,,,,,\n2015,5,11,\"MQ\",\"3392\",\"ROC\",\"ORD\",38.00,17.00,0.00,\"\",0.00,96.00,80.00,528.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,12,\"MQ\",\"3392\",\"ROC\",\"ORD\",-10.00,-6.00,0.00,\"\",0.00,121.00,92.00,528.00,,,,,,\n2015,5,13,\"MQ\",\"3392\",\"ROC\",\"ORD\",-7.00,-16.00,0.00,\"\",0.00,108.00,88.00,528.00,,,,,,\n2015,5,14,\"MQ\",\"3392\",\"ROC\",\"ORD\",-6.00,-2.00,0.00,\"\",0.00,121.00,88.00,528.00,,,,,,\n2015,5,15,\"MQ\",\"3392\",\"ROC\",\"ORD\",-7.00,-27.00,0.00,\"\",0.00,97.00,79.00,528.00,,,,,,\n2015,5,16,\"MQ\",\"3392\",\"ROC\",\"ORD\",-6.00,-23.00,0.00,\"\",0.00,100.00,79.00,528.00,,,,,,\n2015,5,17,\"MQ\",\"3392\",\"ROC\",\"ORD\",1.00,-5.00,0.00,\"\",0.00,111.00,74.00,528.00,,,,,,\n2015,5,18,\"MQ\",\"3392\",\"ROC\",\"ORD\",-8.00,-10.00,0.00,\"\",0.00,115.00,84.00,528.00,,,,,,\n2015,5,19,\"MQ\",\"3392\",\"ROC\",\"ORD\",-12.00,-18.00,0.00,\"\",0.00,111.00,89.00,528.00,,,,,,\n2015,5,20,\"MQ\",\"3392\",\"ROC\",\"ORD\",-3.00,17.00,0.00,\"\",0.00,137.00,93.00,528.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3392\",\"ROC\",\"ORD\",-11.00,-24.00,0.00,\"\",0.00,104.00,81.00,528.00,,,,,,\n2015,5,22,\"MQ\",\"3392\",\"ROC\",\"ORD\",-7.00,-2.00,0.00,\"\",0.00,122.00,87.00,528.00,,,,,,\n2015,5,23,\"MQ\",\"3392\",\"ROC\",\"ORD\",-9.00,-14.00,0.00,\"\",0.00,112.00,82.00,528.00,,,,,,\n2015,5,24,\"MQ\",\"3392\",\"ROC\",\"ORD\",-8.00,-14.00,0.00,\"\",0.00,111.00,88.00,528.00,,,,,,\n2015,5,25,\"MQ\",\"3392\",\"ROC\",\"ORD\",16.00,-5.00,0.00,\"\",0.00,96.00,79.00,528.00,,,,,,\n2015,5,26,\"MQ\",\"3392\",\"ROC\",\"ORD\",-2.00,-14.00,0.00,\"\",0.00,105.00,83.00,528.00,,,,,,\n2015,5,27,\"MQ\",\"3392\",\"ROC\",\"ORD\",20.00,1.00,0.00,\"\",0.00,98.00,83.00,528.00,,,,,,\n2015,5,28,\"MQ\",\"3392\",\"ROC\",\"ORD\",-9.00,-9.00,0.00,\"\",0.00,117.00,88.00,528.00,,,,,,\n2015,5,29,\"MQ\",\"3392\",\"ROC\",\"ORD\",46.00,40.00,0.00,\"\",0.00,111.00,82.00,528.00,0.00,0.00,0.00,0.00,40.00,\n2015,5,30,\"MQ\",\"3392\",\"ROC\",\"ORD\",-14.00,-26.00,0.00,\"\",0.00,105.00,87.00,528.00,,,,,,\n2015,5,31,\"MQ\",\"3392\",\"ROC\",\"ORD\",-3.00,-4.00,0.00,\"\",0.00,116.00,85.00,528.00,,,,,,\n2015,5,1,\"MQ\",\"3393\",\"XNA\",\"LGA\",-9.00,-16.00,0.00,\"\",0.00,166.00,149.00,1147.00,,,,,,\n2015,5,2,\"MQ\",\"3393\",\"XNA\",\"LGA\",-8.00,-5.00,0.00,\"\",0.00,176.00,155.00,1147.00,,,,,,\n2015,5,3,\"MQ\",\"3393\",\"XNA\",\"LGA\",-10.00,-15.00,0.00,\"\",0.00,168.00,154.00,1147.00,,,,,,\n2015,5,4,\"MQ\",\"3393\",\"XNA\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,177.00,159.00,1147.00,,,,,,\n2015,5,5,\"MQ\",\"3393\",\"XNA\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,158.00,145.00,1147.00,,,,,,\n2015,5,6,\"MQ\",\"3393\",\"XNA\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,164.00,146.00,1147.00,,,,,,\n2015,5,7,\"MQ\",\"3393\",\"XNA\",\"LGA\",-6.00,1.00,0.00,\"\",0.00,180.00,158.00,1147.00,,,,,,\n2015,5,8,\"MQ\",\"3393\",\"XNA\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,173.00,154.00,1147.00,,,,,,\n2015,5,9,\"MQ\",\"3393\",\"XNA\",\"LGA\",27.00,26.00,0.00,\"\",0.00,172.00,158.00,1147.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"MQ\",\"3393\",\"XNA\",\"LGA\",6.00,6.00,0.00,\"\",0.00,173.00,154.00,1147.00,,,,,,\n2015,5,11,\"MQ\",\"3393\",\"XNA\",\"LGA\",-5.00,5.00,0.00,\"\",0.00,183.00,154.00,1147.00,,,,,,\n2015,5,12,\"MQ\",\"3393\",\"XNA\",\"LGA\",-8.00,-23.00,0.00,\"\",0.00,158.00,141.00,1147.00,,,,,,\n2015,5,13,\"MQ\",\"3393\",\"XNA\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,168.00,137.00,1147.00,,,,,,\n2015,5,14,\"MQ\",\"3393\",\"XNA\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,167.00,149.00,1147.00,,,,,,\n2015,5,15,\"MQ\",\"3393\",\"XNA\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,169.00,149.00,1147.00,,,,,,\n2015,5,16,\"MQ\",\"3393\",\"XNA\",\"LGA\",0.00,5.00,0.00,\"\",0.00,178.00,153.00,1147.00,,,,,,\n2015,5,17,\"MQ\",\"3393\",\"XNA\",\"LGA\",8.00,5.00,0.00,\"\",0.00,170.00,146.00,1147.00,,,,,,\n2015,5,18,\"MQ\",\"3393\",\"XNA\",\"LGA\",-3.00,,0.00,\"\",1.00,,,1147.00,,,,,,\n2015,5,19,\"MQ\",\"3393\",\"XNA\",\"LGA\",79.00,64.00,0.00,\"\",0.00,158.00,143.00,1147.00,0.00,0.00,64.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3393\",\"XNA\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,158.00,143.00,1147.00,,,,,,\n2015,5,21,\"MQ\",\"3393\",\"XNA\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,157.00,131.00,1147.00,,,,,,\n2015,5,22,\"MQ\",\"3393\",\"XNA\",\"LGA\",-6.00,-27.00,0.00,\"\",0.00,152.00,138.00,1147.00,,,,,,\n2015,5,23,\"MQ\",\"3393\",\"XNA\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,161.00,143.00,1147.00,,,,,,\n2015,5,24,\"MQ\",\"3393\",\"XNA\",\"LGA\",-8.00,-23.00,0.00,\"\",0.00,158.00,144.00,1147.00,,,,,,\n2015,5,25,\"MQ\",\"3393\",\"XNA\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,167.00,142.00,1147.00,,,,,,\n2015,5,26,\"MQ\",\"3393\",\"XNA\",\"LGA\",2.00,-3.00,0.00,\"\",0.00,168.00,148.00,1147.00,,,,,,\n2015,5,27,\"MQ\",\"3393\",\"XNA\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,162.00,143.00,1147.00,,,,,,\n2015,5,28,\"MQ\",\"3393\",\"XNA\",\"LGA\",-7.00,-1.00,0.00,\"\",0.00,179.00,153.00,1147.00,,,,,,\n2015,5,29,\"MQ\",\"3393\",\"XNA\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,158.00,141.00,1147.00,,,,,,\n2015,5,30,\"MQ\",\"3393\",\"XNA\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,171.00,158.00,1147.00,,,,,,\n2015,5,31,\"MQ\",\"3393\",\"XNA\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,170.00,146.00,1147.00,,,,,,\n2015,5,7,\"MQ\",\"3404\",\"DTW\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,91.00,73.00,502.00,,,,,,\n2015,5,8,\"MQ\",\"3404\",\"DTW\",\"LGA\",19.00,4.00,0.00,\"\",0.00,86.00,73.00,502.00,,,,,,\n2015,5,10,\"MQ\",\"3404\",\"DTW\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,95.00,82.00,502.00,,,,,,\n2015,5,11,\"MQ\",\"3404\",\"DTW\",\"LGA\",31.00,145.00,0.00,\"\",0.00,215.00,80.00,502.00,0.00,0.00,114.00,0.00,31.00,\n2015,5,12,\"MQ\",\"3404\",\"DTW\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,95.00,73.00,502.00,,,,,,\n2015,5,13,\"MQ\",\"3404\",\"DTW\",\"LGA\",4.00,1.00,0.00,\"\",0.00,98.00,74.00,502.00,,,,,,\n2015,5,14,\"MQ\",\"3404\",\"DTW\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,99.00,72.00,502.00,,,,,,\n2015,5,15,\"MQ\",\"3404\",\"DTW\",\"LGA\",2.00,-5.00,0.00,\"\",0.00,94.00,75.00,502.00,,,,,,\n2015,5,17,\"MQ\",\"3404\",\"DTW\",\"LGA\",0.00,1.00,0.00,\"\",0.00,102.00,70.00,502.00,,,,,,\n2015,5,18,\"MQ\",\"3404\",\"DTW\",\"LGA\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,19,\"MQ\",\"3404\",\"DTW\",\"LGA\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,20,\"MQ\",\"3404\",\"DTW\",\"LGA\",83.00,79.00,0.00,\"\",0.00,97.00,70.00,502.00,10.00,0.00,0.00,0.00,69.00,\n2015,5,21,\"MQ\",\"3404\",\"DTW\",\"LGA\",40.00,39.00,0.00,\"\",0.00,100.00,70.00,502.00,5.00,0.00,0.00,0.00,34.00,\n2015,5,22,\"MQ\",\"3404\",\"DTW\",\"LGA\",23.00,14.00,0.00,\"\",0.00,92.00,74.00,502.00,,,,,,\n2015,5,24,\"MQ\",\"3404\",\"DTW\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,89.00,71.00,502.00,,,,,,\n2015,5,25,\"MQ\",\"3404\",\"DTW\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,88.00,74.00,502.00,,,,,,\n2015,5,26,\"MQ\",\"3404\",\"DTW\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,90.00,75.00,502.00,,,,,,\n2015,5,27,\"MQ\",\"3404\",\"DTW\",\"LGA\",90.00,98.00,0.00,\"\",0.00,109.00,78.00,502.00,0.00,0.00,98.00,0.00,0.00,\n2015,5,28,\"MQ\",\"3404\",\"DTW\",\"LGA\",1.00,-12.00,0.00,\"\",0.00,88.00,74.00,502.00,,,,,,\n2015,5,29,\"MQ\",\"3404\",\"DTW\",\"LGA\",28.00,31.00,0.00,\"\",0.00,104.00,78.00,502.00,0.00,0.00,3.00,0.00,28.00,\n2015,5,31,\"MQ\",\"3404\",\"DTW\",\"LGA\",54.00,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,7,\"MQ\",\"3404\",\"LGA\",\"DTW\",-2.00,-9.00,0.00,\"\",0.00,114.00,79.00,502.00,,,,,,\n2015,5,8,\"MQ\",\"3404\",\"LGA\",\"DTW\",38.00,19.00,0.00,\"\",0.00,102.00,81.00,502.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,10,\"MQ\",\"3404\",\"LGA\",\"DTW\",-2.00,-17.00,0.00,\"\",0.00,106.00,74.00,502.00,,,,,,\n2015,5,11,\"MQ\",\"3404\",\"LGA\",\"DTW\",25.00,32.00,0.00,\"\",0.00,128.00,75.00,502.00,0.00,0.00,7.00,0.00,25.00,\n2015,5,12,\"MQ\",\"3404\",\"LGA\",\"DTW\",1.00,-15.00,0.00,\"\",0.00,105.00,82.00,502.00,,,,,,\n2015,5,13,\"MQ\",\"3404\",\"LGA\",\"DTW\",-11.00,9.00,0.00,\"\",0.00,141.00,90.00,502.00,,,,,,\n2015,5,14,\"MQ\",\"3404\",\"LGA\",\"DTW\",-10.00,-13.00,0.00,\"\",0.00,118.00,78.00,502.00,,,,,,\n2015,5,15,\"MQ\",\"3404\",\"LGA\",\"DTW\",-1.00,-15.00,0.00,\"\",0.00,107.00,81.00,502.00,,,,,,\n2015,5,17,\"MQ\",\"3404\",\"LGA\",\"DTW\",-8.00,-22.00,0.00,\"\",0.00,107.00,73.00,502.00,,,,,,\n2015,5,18,\"MQ\",\"3404\",\"LGA\",\"DTW\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,19,\"MQ\",\"3404\",\"LGA\",\"DTW\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,20,\"MQ\",\"3404\",\"LGA\",\"DTW\",67.00,73.00,0.00,\"\",0.00,127.00,82.00,502.00,67.00,0.00,6.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3404\",\"LGA\",\"DTW\",-2.00,35.00,0.00,\"\",0.00,158.00,85.00,502.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3404\",\"LGA\",\"DTW\",-7.00,11.00,0.00,\"\",0.00,139.00,92.00,502.00,,,,,,\n2015,5,24,\"MQ\",\"3404\",\"LGA\",\"DTW\",-4.00,-18.00,0.00,\"\",0.00,107.00,80.00,502.00,,,,,,\n2015,5,25,\"MQ\",\"3404\",\"LGA\",\"DTW\",-2.00,-14.00,0.00,\"\",0.00,109.00,79.00,502.00,,,,,,\n2015,5,26,\"MQ\",\"3404\",\"LGA\",\"DTW\",0.00,-20.00,0.00,\"\",0.00,101.00,74.00,502.00,,,,,,\n2015,5,27,\"MQ\",\"3404\",\"LGA\",\"DTW\",-6.00,-21.00,0.00,\"\",0.00,106.00,79.00,502.00,,,,,,\n2015,5,28,\"MQ\",\"3404\",\"LGA\",\"DTW\",-8.00,-11.00,0.00,\"\",0.00,118.00,76.00,502.00,,,,,,\n2015,5,29,\"MQ\",\"3404\",\"LGA\",\"DTW\",39.00,28.00,0.00,\"\",0.00,110.00,82.00,502.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,31,\"MQ\",\"3404\",\"LGA\",\"DTW\",21.00,16.00,0.00,\"\",0.00,116.00,85.00,502.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3404\",\"LGA\",\"RDU\",-11.00,-19.00,0.00,\"\",0.00,96.00,71.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3404\",\"LGA\",\"RDU\",34.00,12.00,0.00,\"\",0.00,82.00,65.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3404\",\"LGA\",\"RDU\",3.00,-12.00,0.00,\"\",0.00,89.00,66.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3404\",\"LGA\",\"RDU\",-1.00,2.00,0.00,\"\",0.00,107.00,70.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3404\",\"LGA\",\"RDU\",-6.00,-3.00,0.00,\"\",0.00,107.00,65.00,431.00,,,,,,\n2015,5,1,\"MQ\",\"3407\",\"CMH\",\"LGA\",-7.00,-6.00,0.00,\"\",0.00,98.00,80.00,479.00,,,,,,\n2015,5,2,\"MQ\",\"3407\",\"CMH\",\"LGA\",-9.00,-1.00,0.00,\"\",0.00,102.00,76.00,479.00,,,,,,\n2015,5,3,\"MQ\",\"3407\",\"CMH\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,93.00,79.00,479.00,,,,,,\n2015,5,4,\"MQ\",\"3407\",\"CMH\",\"LGA\",28.00,23.00,0.00,\"\",0.00,92.00,77.00,479.00,2.00,0.00,0.00,0.00,21.00,\n2015,5,5,\"MQ\",\"3407\",\"CMH\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,84.00,72.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3407\",\"CMH\",\"LGA\",-6.00,-3.00,0.00,\"\",0.00,100.00,72.00,479.00,,,,,,\n2015,5,7,\"MQ\",\"3407\",\"CMH\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,91.00,72.00,479.00,,,,,,\n2015,5,8,\"MQ\",\"3407\",\"CMH\",\"LGA\",45.00,46.00,0.00,\"\",0.00,98.00,77.00,479.00,0.00,0.00,1.00,0.00,45.00,\n2015,5,9,\"MQ\",\"3407\",\"CMH\",\"LGA\",-10.00,-7.00,0.00,\"\",0.00,97.00,76.00,479.00,,,,,,\n2015,5,10,\"MQ\",\"3407\",\"CMH\",\"LGA\",307.00,315.00,0.00,\"\",0.00,105.00,74.00,479.00,0.00,36.00,8.00,0.00,271.00,\n2015,5,11,\"MQ\",\"3407\",\"CMH\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,86.00,73.00,479.00,,,,,,\n2015,5,12,\"MQ\",\"3407\",\"CMH\",\"LGA\",-11.00,-28.00,0.00,\"\",0.00,80.00,66.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3407\",\"CMH\",\"LGA\",-8.00,-19.00,0.00,\"\",0.00,86.00,62.00,479.00,,,,,,\n2015,5,14,\"MQ\",\"3407\",\"CMH\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,91.00,69.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3407\",\"CMH\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,95.00,75.00,479.00,,,,,,\n2015,5,16,\"MQ\",\"3407\",\"CMH\",\"LGA\",-12.00,-1.00,0.00,\"\",0.00,105.00,71.00,479.00,,,,,,\n2015,5,17,\"MQ\",\"3407\",\"CMH\",\"LGA\",-2.00,6.00,0.00,\"\",0.00,105.00,76.00,479.00,,,,,,\n2015,5,18,\"MQ\",\"3407\",\"CMH\",\"LGA\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,19,\"MQ\",\"3407\",\"CMH\",\"LGA\",99.00,137.00,0.00,\"\",0.00,135.00,75.00,479.00,0.00,0.00,137.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3407\",\"CMH\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,78.00,61.00,479.00,,,,,,\n2015,5,21,\"MQ\",\"3407\",\"CMH\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,87.00,71.00,479.00,,,,,,\n2015,5,22,\"MQ\",\"3407\",\"CMH\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,94.00,64.00,479.00,,,,,,\n2015,5,23,\"MQ\",\"3407\",\"CMH\",\"LGA\",-10.00,-22.00,0.00,\"\",0.00,82.00,65.00,479.00,,,,,,\n2015,5,24,\"MQ\",\"3407\",\"CMH\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,97.00,72.00,479.00,,,,,,\n2015,5,25,\"MQ\",\"3407\",\"CMH\",\"LGA\",-9.00,-8.00,0.00,\"\",0.00,98.00,82.00,479.00,,,,,,\n2015,5,26,\"MQ\",\"3407\",\"CMH\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,86.00,72.00,479.00,,,,,,\n2015,5,27,\"MQ\",\"3407\",\"CMH\",\"LGA\",-5.00,5.00,0.00,\"\",0.00,107.00,75.00,479.00,,,,,,\n2015,5,28,\"MQ\",\"3407\",\"CMH\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,92.00,71.00,479.00,,,,,,\n2015,5,29,\"MQ\",\"3407\",\"CMH\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,87.00,69.00,479.00,,,,,,\n2015,5,30,\"MQ\",\"3407\",\"CMH\",\"LGA\",-7.00,-5.00,0.00,\"\",0.00,96.00,74.00,479.00,,,,,,\n2015,5,31,\"MQ\",\"3407\",\"CMH\",\"LGA\",-6.00,7.00,0.00,\"\",0.00,110.00,77.00,479.00,,,,,,\n2015,5,1,\"MQ\",\"3407\",\"LGA\",\"CMH\",-1.00,-15.00,0.00,\"\",0.00,96.00,64.00,479.00,,,,,,\n2015,5,2,\"MQ\",\"3407\",\"LGA\",\"CMH\",-4.00,-37.00,0.00,\"\",0.00,77.00,67.00,479.00,,,,,,\n2015,5,4,\"MQ\",\"3407\",\"LGA\",\"CMH\",30.00,35.00,0.00,\"\",0.00,115.00,73.00,479.00,10.00,0.00,5.00,0.00,20.00,\n2015,5,5,\"MQ\",\"3407\",\"LGA\",\"CMH\",-9.00,-22.00,0.00,\"\",0.00,97.00,70.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3407\",\"LGA\",\"CMH\",0.00,2.00,0.00,\"\",0.00,112.00,71.00,479.00,,,,,,\n2015,5,7,\"MQ\",\"3407\",\"LGA\",\"CMH\",-7.00,-16.00,0.00,\"\",0.00,101.00,73.00,479.00,,,,,,\n2015,5,8,\"MQ\",\"3407\",\"LGA\",\"CMH\",38.00,55.00,0.00,\"\",0.00,127.00,68.00,479.00,0.00,0.00,17.00,0.00,38.00,\n2015,5,9,\"MQ\",\"3407\",\"LGA\",\"CMH\",-10.00,-42.00,0.00,\"\",0.00,85.00,68.00,479.00,,,,,,\n2015,5,11,\"MQ\",\"3407\",\"LGA\",\"CMH\",0.00,-16.00,0.00,\"\",0.00,94.00,69.00,479.00,,,,,,\n2015,5,12,\"MQ\",\"3407\",\"LGA\",\"CMH\",-9.00,-19.00,0.00,\"\",0.00,100.00,78.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3407\",\"LGA\",\"CMH\",-6.00,2.00,0.00,\"\",0.00,118.00,77.00,479.00,,,,,,\n2015,5,14,\"MQ\",\"3407\",\"LGA\",\"CMH\",-6.00,-8.00,0.00,\"\",0.00,108.00,74.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3407\",\"LGA\",\"CMH\",-3.00,-19.00,0.00,\"\",0.00,94.00,73.00,479.00,,,,,,\n2015,5,16,\"MQ\",\"3407\",\"LGA\",\"CMH\",-7.00,-28.00,0.00,\"\",0.00,96.00,69.00,479.00,,,,,,\n2015,5,18,\"MQ\",\"3407\",\"LGA\",\"CMH\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,19,\"MQ\",\"3407\",\"LGA\",\"CMH\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,20,\"MQ\",\"3407\",\"LGA\",\"CMH\",-7.00,-7.00,0.00,\"\",0.00,110.00,75.00,479.00,,,,,,\n2015,5,21,\"MQ\",\"3407\",\"LGA\",\"CMH\",-8.00,-5.00,0.00,\"\",0.00,113.00,83.00,479.00,,,,,,\n2015,5,22,\"MQ\",\"3407\",\"LGA\",\"CMH\",0.00,10.00,0.00,\"\",0.00,120.00,81.00,479.00,,,,,,\n2015,5,23,\"MQ\",\"3407\",\"LGA\",\"CMH\",9.00,-22.00,0.00,\"\",0.00,86.00,70.00,479.00,,,,,,\n2015,5,25,\"MQ\",\"3407\",\"LGA\",\"CMH\",-5.00,-25.00,0.00,\"\",0.00,90.00,71.00,479.00,,,,,,\n2015,5,26,\"MQ\",\"3407\",\"LGA\",\"CMH\",-6.00,-19.00,0.00,\"\",0.00,97.00,69.00,479.00,,,,,,\n2015,5,27,\"MQ\",\"3407\",\"LGA\",\"CMH\",-4.00,-12.00,0.00,\"\",0.00,102.00,75.00,479.00,,,,,,\n2015,5,28,\"MQ\",\"3407\",\"LGA\",\"CMH\",-5.00,-9.00,0.00,\"\",0.00,106.00,76.00,479.00,,,,,,\n2015,5,29,\"MQ\",\"3407\",\"LGA\",\"CMH\",-7.00,-5.00,0.00,\"\",0.00,112.00,73.00,479.00,,,,,,\n2015,5,30,\"MQ\",\"3407\",\"LGA\",\"CMH\",-6.00,-23.00,0.00,\"\",0.00,100.00,75.00,479.00,,,,,,\n2015,5,7,\"MQ\",\"3327\",\"ROC\",\"ORD\",-7.00,-33.00,0.00,\"\",0.00,94.00,79.00,528.00,,,,,,\n2015,5,8,\"MQ\",\"3327\",\"ROC\",\"ORD\",-8.00,-29.00,0.00,\"\",0.00,99.00,81.00,528.00,,,,,,\n2015,5,10,\"MQ\",\"3327\",\"ROC\",\"ORD\",-6.00,5.00,0.00,\"\",0.00,131.00,86.00,528.00,,,,,,\n2015,5,11,\"MQ\",\"3327\",\"ROC\",\"ORD\",-2.00,-8.00,0.00,\"\",0.00,114.00,85.00,528.00,,,,,,\n2015,5,12,\"MQ\",\"3327\",\"ROC\",\"ORD\",144.00,147.00,0.00,\"\",0.00,123.00,100.00,528.00,144.00,0.00,3.00,0.00,0.00,\n2015,5,13,\"MQ\",\"3327\",\"ROC\",\"ORD\",-13.00,-12.00,0.00,\"\",0.00,121.00,87.00,528.00,,,,,,\n2015,5,14,\"MQ\",\"3327\",\"ROC\",\"ORD\",-10.00,-12.00,0.00,\"\",0.00,118.00,86.00,528.00,,,,,,\n2015,5,15,\"MQ\",\"3327\",\"ROC\",\"ORD\",-7.00,-10.00,0.00,\"\",0.00,117.00,88.00,528.00,,,,,,\n2015,5,17,\"MQ\",\"3327\",\"ROC\",\"ORD\",-7.00,-9.00,0.00,\"\",0.00,118.00,80.00,528.00,,,,,,\n2015,5,18,\"MQ\",\"3327\",\"ROC\",\"ORD\",-5.00,-20.00,0.00,\"\",0.00,105.00,83.00,528.00,,,,,,\n2015,5,19,\"MQ\",\"3327\",\"ROC\",\"ORD\",-5.00,-14.00,0.00,\"\",0.00,111.00,85.00,528.00,,,,,,\n2015,5,20,\"MQ\",\"3327\",\"ROC\",\"ORD\",-7.00,0.00,0.00,\"\",0.00,127.00,92.00,528.00,,,,,,\n2015,5,21,\"MQ\",\"3327\",\"ROC\",\"ORD\",-2.00,-8.00,0.00,\"\",0.00,114.00,89.00,528.00,,,,,,\n2015,5,22,\"MQ\",\"3327\",\"ROC\",\"ORD\",-8.00,-7.00,0.00,\"\",0.00,121.00,90.00,528.00,,,,,,\n2015,5,24,\"MQ\",\"3327\",\"ROC\",\"ORD\",-13.00,-28.00,0.00,\"\",0.00,105.00,83.00,528.00,,,,,,\n2015,5,25,\"MQ\",\"3327\",\"ROC\",\"ORD\",-6.00,-1.00,0.00,\"\",0.00,125.00,82.00,528.00,,,,,,\n2015,5,26,\"MQ\",\"3327\",\"ROC\",\"ORD\",-8.00,-31.00,0.00,\"\",0.00,97.00,81.00,528.00,,,,,,\n2015,5,27,\"MQ\",\"3327\",\"ROC\",\"ORD\",-4.00,-7.00,0.00,\"\",0.00,117.00,86.00,528.00,,,,,,\n2015,5,28,\"MQ\",\"3327\",\"ROC\",\"ORD\",-9.00,-9.00,0.00,\"\",0.00,120.00,79.00,528.00,,,,,,\n2015,5,29,\"MQ\",\"3327\",\"ROC\",\"ORD\",-3.00,-26.00,0.00,\"\",0.00,97.00,83.00,528.00,,,,,,\n2015,5,31,\"MQ\",\"3327\",\"ROC\",\"ORD\",,,1.00,\"A\",0.00,,,528.00,,,,,,\n2015,5,7,\"MQ\",\"3429\",\"BUF\",\"ORD\",-12.00,-8.00,0.00,\"\",0.00,113.00,70.00,473.00,,,,,,\n2015,5,8,\"MQ\",\"3429\",\"BUF\",\"ORD\",131.00,108.00,0.00,\"\",0.00,86.00,70.00,473.00,0.00,0.00,103.00,0.00,5.00,\n2015,5,10,\"MQ\",\"3429\",\"BUF\",\"ORD\",33.00,36.00,0.00,\"\",0.00,112.00,81.00,473.00,0.00,0.00,3.00,0.00,33.00,\n2015,5,11,\"MQ\",\"3429\",\"BUF\",\"ORD\",-4.00,-7.00,0.00,\"\",0.00,106.00,80.00,473.00,,,,,,\n2015,5,12,\"MQ\",\"3429\",\"BUF\",\"ORD\",-10.00,-14.00,0.00,\"\",0.00,105.00,83.00,473.00,,,,,,\n2015,5,13,\"MQ\",\"3429\",\"BUF\",\"ORD\",-8.00,-14.00,0.00,\"\",0.00,103.00,77.00,473.00,,,,,,\n2015,5,14,\"MQ\",\"3429\",\"BUF\",\"ORD\",-9.00,-8.00,0.00,\"\",0.00,110.00,82.00,473.00,,,,,,\n2015,5,15,\"MQ\",\"3429\",\"BUF\",\"ORD\",-6.00,-21.00,0.00,\"\",0.00,94.00,73.00,473.00,,,,,,\n2015,5,17,\"MQ\",\"3429\",\"BUF\",\"ORD\",-3.00,-9.00,0.00,\"\",0.00,103.00,70.00,473.00,,,,,,\n2015,5,18,\"MQ\",\"3429\",\"BUF\",\"ORD\",8.00,5.00,0.00,\"\",0.00,106.00,81.00,473.00,,,,,,\n2015,5,19,\"MQ\",\"3429\",\"BUF\",\"ORD\",-8.00,-6.00,0.00,\"\",0.00,111.00,82.00,473.00,,,,,,\n2015,5,20,\"MQ\",\"3429\",\"BUF\",\"ORD\",-4.00,6.00,0.00,\"\",0.00,119.00,86.00,473.00,,,,,,\n2015,5,21,\"MQ\",\"3429\",\"BUF\",\"ORD\",-5.00,-22.00,0.00,\"\",0.00,92.00,72.00,473.00,,,,,,\n2015,5,22,\"MQ\",\"3429\",\"BUF\",\"ORD\",-5.00,1.00,0.00,\"\",0.00,115.00,82.00,473.00,,,,,,\n2015,5,24,\"MQ\",\"3429\",\"BUF\",\"ORD\",-3.00,15.00,0.00,\"\",0.00,127.00,82.00,473.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,25,\"MQ\",\"3429\",\"BUF\",\"ORD\",112.00,107.00,0.00,\"\",0.00,104.00,78.00,473.00,4.00,0.00,0.00,0.00,103.00,\n2015,5,26,\"MQ\",\"3429\",\"BUF\",\"ORD\",8.00,15.00,0.00,\"\",0.00,116.00,77.00,473.00,0.00,0.00,7.00,0.00,8.00,\n2015,5,27,\"MQ\",\"3429\",\"BUF\",\"ORD\",-5.00,-15.00,0.00,\"\",0.00,99.00,76.00,473.00,,,,,,\n2015,5,28,\"MQ\",\"3429\",\"BUF\",\"ORD\",-8.00,-6.00,0.00,\"\",0.00,111.00,78.00,473.00,,,,,,\n2015,5,29,\"MQ\",\"3429\",\"BUF\",\"ORD\",12.00,6.00,0.00,\"\",0.00,103.00,78.00,473.00,,,,,,\n2015,5,31,\"MQ\",\"3429\",\"BUF\",\"ORD\",47.00,27.00,0.00,\"\",0.00,89.00,71.00,473.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,7,\"MQ\",\"3429\",\"ORD\",\"BUF\",-1.00,-10.00,0.00,\"\",0.00,89.00,67.00,473.00,,,,,,\n2015,5,8,\"MQ\",\"3429\",\"ORD\",\"BUF\",-1.00,8.00,0.00,\"\",0.00,107.00,63.00,473.00,,,,,,\n2015,5,10,\"MQ\",\"3429\",\"ORD\",\"BUF\",39.00,35.00,0.00,\"\",0.00,94.00,63.00,473.00,0.00,0.00,3.00,0.00,32.00,\n2015,5,11,\"MQ\",\"3429\",\"ORD\",\"BUF\",8.00,-17.00,0.00,\"\",0.00,73.00,62.00,473.00,,,,,,\n2015,5,12,\"MQ\",\"3429\",\"ORD\",\"BUF\",-3.00,-21.00,0.00,\"\",0.00,80.00,63.00,473.00,,,,,,\n2015,5,13,\"MQ\",\"3429\",\"ORD\",\"BUF\",-3.00,-19.00,0.00,\"\",0.00,82.00,65.00,473.00,,,,,,\n2015,5,14,\"MQ\",\"3429\",\"ORD\",\"BUF\",-5.00,-26.00,0.00,\"\",0.00,77.00,64.00,473.00,,,,,,\n2015,5,15,\"MQ\",\"3429\",\"ORD\",\"BUF\",-4.00,-16.00,0.00,\"\",0.00,86.00,67.00,473.00,,,,,,\n2015,5,17,\"MQ\",\"3429\",\"ORD\",\"BUF\",2.00,-17.00,0.00,\"\",0.00,79.00,62.00,473.00,,,,,,\n2015,5,18,\"MQ\",\"3429\",\"ORD\",\"BUF\",17.00,11.00,0.00,\"\",0.00,92.00,66.00,473.00,,,,,,\n2015,5,19,\"MQ\",\"3429\",\"ORD\",\"BUF\",-5.00,-27.00,0.00,\"\",0.00,76.00,63.00,473.00,,,,,,\n2015,5,20,\"MQ\",\"3429\",\"ORD\",\"BUF\",-2.00,-17.00,0.00,\"\",0.00,83.00,62.00,473.00,,,,,,\n2015,5,21,\"MQ\",\"3429\",\"ORD\",\"BUF\",-2.00,-20.00,0.00,\"\",0.00,80.00,65.00,473.00,,,,,,\n2015,5,22,\"MQ\",\"3429\",\"ORD\",\"BUF\",7.00,-5.00,0.00,\"\",0.00,86.00,59.00,473.00,,,,,,\n2015,5,24,\"MQ\",\"3429\",\"ORD\",\"BUF\",-3.00,-21.00,0.00,\"\",0.00,80.00,60.00,473.00,,,,,,\n2015,5,25,\"MQ\",\"3429\",\"ORD\",\"BUF\",129.00,110.00,0.00,\"\",0.00,79.00,66.00,473.00,67.00,0.00,0.00,0.00,43.00,\n2015,5,26,\"MQ\",\"3429\",\"ORD\",\"BUF\",13.00,18.00,0.00,\"\",0.00,103.00,69.00,473.00,0.00,0.00,5.00,0.00,13.00,\n2015,5,27,\"MQ\",\"3429\",\"ORD\",\"BUF\",14.00,-5.00,0.00,\"\",0.00,79.00,65.00,473.00,,,,,,\n2015,5,28,\"MQ\",\"3429\",\"ORD\",\"BUF\",-2.00,-20.00,0.00,\"\",0.00,80.00,63.00,473.00,,,,,,\n2015,5,29,\"MQ\",\"3429\",\"ORD\",\"BUF\",35.00,19.00,0.00,\"\",0.00,82.00,68.00,473.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,31,\"MQ\",\"3429\",\"ORD\",\"BUF\",61.00,51.00,0.00,\"\",0.00,88.00,58.00,473.00,0.00,0.00,0.00,0.00,51.00,\n2015,5,7,\"MQ\",\"3430\",\"LGA\",\"RDU\",-1.00,-12.00,0.00,\"\",0.00,93.00,67.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3430\",\"LGA\",\"RDU\",7.00,13.00,0.00,\"\",0.00,110.00,69.00,431.00,,,,,,\n2015,5,10,\"MQ\",\"3430\",\"LGA\",\"RDU\",-1.00,-11.00,0.00,\"\",0.00,94.00,71.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3430\",\"LGA\",\"RDU\",0.00,-10.00,0.00,\"\",0.00,94.00,74.00,431.00,,,,,,\n2015,5,12,\"MQ\",\"3430\",\"LGA\",\"RDU\",-12.00,-27.00,0.00,\"\",0.00,89.00,68.00,431.00,,,,,,\n2015,5,13,\"MQ\",\"3430\",\"LGA\",\"RDU\",-15.00,-8.00,0.00,\"\",0.00,111.00,69.00,431.00,,,,,,\n2015,5,14,\"MQ\",\"3430\",\"LGA\",\"RDU\",47.00,61.00,0.00,\"\",0.00,118.00,73.00,431.00,0.00,0.00,14.00,0.00,47.00,\n2015,5,15,\"MQ\",\"3430\",\"LGA\",\"RDU\",47.00,36.00,0.00,\"\",0.00,93.00,65.00,431.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,17,\"MQ\",\"3430\",\"LGA\",\"RDU\",-5.00,-19.00,0.00,\"\",0.00,90.00,64.00,431.00,,,,,,\n2015,5,18,\"MQ\",\"3430\",\"LGA\",\"RDU\",319.00,338.00,0.00,\"\",0.00,123.00,63.00,431.00,0.00,0.00,19.00,0.00,319.00,\n2015,5,19,\"MQ\",\"3430\",\"LGA\",\"RDU\",-2.00,6.00,0.00,\"\",0.00,112.00,64.00,431.00,,,,,,\n2015,5,20,\"MQ\",\"3430\",\"LGA\",\"RDU\",-11.00,1.00,0.00,\"\",0.00,116.00,70.00,431.00,,,,,,\n2015,5,21,\"MQ\",\"3430\",\"LGA\",\"RDU\",-10.00,-12.00,0.00,\"\",0.00,102.00,81.00,431.00,,,,,,\n2015,5,22,\"MQ\",\"3430\",\"LGA\",\"RDU\",32.00,44.00,0.00,\"\",0.00,116.00,80.00,431.00,0.00,0.00,12.00,0.00,32.00,\n2015,5,25,\"MQ\",\"3430\",\"LGA\",\"RDU\",-10.00,-32.00,0.00,\"\",0.00,82.00,65.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3430\",\"LGA\",\"RDU\",-5.00,-19.00,0.00,\"\",0.00,90.00,67.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3430\",\"LGA\",\"RDU\",-11.00,-22.00,0.00,\"\",0.00,93.00,73.00,431.00,,,,,,\n2015,5,28,\"MQ\",\"3430\",\"LGA\",\"RDU\",-13.00,-10.00,0.00,\"\",0.00,107.00,65.00,431.00,,,,,,\n2015,5,29,\"MQ\",\"3430\",\"LGA\",\"RDU\",-2.00,-8.00,0.00,\"\",0.00,98.00,63.00,431.00,,,,,,\n2015,5,31,\"MQ\",\"3430\",\"LGA\",\"RDU\",-9.00,-26.00,0.00,\"\",0.00,87.00,63.00,431.00,,,,,,\n2015,5,2,\"MQ\",\"3433\",\"BNA\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,132.00,115.00,764.00,,,,,,\n2015,5,9,\"MQ\",\"3433\",\"BNA\",\"LGA\",22.00,52.00,0.00,\"\",0.00,159.00,134.00,764.00,0.00,0.00,30.00,0.00,22.00,\n2015,5,16,\"MQ\",\"3433\",\"BNA\",\"LGA\",6.00,13.00,0.00,\"\",0.00,136.00,108.00,764.00,,,,,,\n2015,5,23,\"MQ\",\"3433\",\"BNA\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,115.00,99.00,764.00,,,,,,\n2015,5,30,\"MQ\",\"3433\",\"BNA\",\"LGA\",0.00,7.00,0.00,\"\",0.00,136.00,115.00,764.00,,,,,,\n2015,5,1,\"MQ\",\"3433\",\"DTW\",\"LGA\",0.00,9.00,0.00,\"\",0.00,108.00,79.00,502.00,,,,,,\n2015,5,4,\"MQ\",\"3433\",\"DTW\",\"LGA\",-3.00,15.00,0.00,\"\",0.00,117.00,85.00,502.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,5,\"MQ\",\"3433\",\"DTW\",\"LGA\",-8.00,-7.00,0.00,\"\",0.00,100.00,73.00,502.00,,,,,,\n2015,5,6,\"MQ\",\"3433\",\"DTW\",\"LGA\",39.00,33.00,0.00,\"\",0.00,93.00,75.00,502.00,2.00,0.00,0.00,0.00,31.00,\n2015,5,7,\"MQ\",\"3433\",\"DTW\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,96.00,75.00,502.00,,,,,,\n2015,5,8,\"MQ\",\"3433\",\"DTW\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,92.00,79.00,502.00,,,,,,\n2015,5,10,\"MQ\",\"3433\",\"DTW\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,92.00,74.00,502.00,,,,,,\n2015,5,11,\"MQ\",\"3433\",\"DTW\",\"LGA\",0.00,47.00,0.00,\"\",0.00,146.00,80.00,502.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3433\",\"DTW\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,94.00,69.00,502.00,,,,,,\n2015,5,13,\"MQ\",\"3433\",\"DTW\",\"LGA\",0.00,6.00,0.00,\"\",0.00,105.00,68.00,502.00,,,,,,\n2015,5,14,\"MQ\",\"3433\",\"DTW\",\"LGA\",46.00,55.00,0.00,\"\",0.00,108.00,71.00,502.00,46.00,0.00,9.00,0.00,0.00,\n2015,5,15,\"MQ\",\"3433\",\"DTW\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,88.00,73.00,502.00,,,,,,\n2015,5,17,\"MQ\",\"3433\",\"DTW\",\"LGA\",315.00,317.00,0.00,\"\",0.00,101.00,80.00,502.00,275.00,0.00,2.00,0.00,40.00,\n2015,5,18,\"MQ\",\"3433\",\"DTW\",\"LGA\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,19,\"MQ\",\"3433\",\"DTW\",\"LGA\",43.00,75.00,0.00,\"\",0.00,131.00,70.00,502.00,0.00,0.00,57.00,0.00,18.00,\n2015,5,20,\"MQ\",\"3433\",\"DTW\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,101.00,63.00,502.00,,,,,,\n2015,5,21,\"MQ\",\"3433\",\"DTW\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,81.00,67.00,502.00,,,,,,\n2015,5,22,\"MQ\",\"3433\",\"DTW\",\"LGA\",-11.00,-21.00,0.00,\"\",0.00,89.00,68.00,502.00,,,,,,\n2015,5,24,\"MQ\",\"3433\",\"DTW\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,90.00,73.00,502.00,,,,,,\n2015,5,25,\"MQ\",\"3433\",\"DTW\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,95.00,73.00,502.00,,,,,,\n2015,5,26,\"MQ\",\"3433\",\"DTW\",\"LGA\",-11.00,-19.00,0.00,\"\",0.00,91.00,73.00,502.00,,,,,,\n2015,5,27,\"MQ\",\"3433\",\"DTW\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,81.00,69.00,502.00,,,,,,\n2015,5,28,\"MQ\",\"3433\",\"DTW\",\"LGA\",,,1.00,\"A\",0.00,,,502.00,,,,,,\n2015,5,29,\"MQ\",\"3433\",\"DTW\",\"LGA\",62.00,67.00,0.00,\"\",0.00,104.00,84.00,502.00,37.00,0.00,5.00,0.00,25.00,\n2015,5,31,\"MQ\",\"3433\",\"DTW\",\"LGA\",0.00,12.00,0.00,\"\",0.00,111.00,76.00,502.00,,,,,,\n2015,5,2,\"MQ\",\"3433\",\"LGA\",\"BNA\",-1.00,-14.00,0.00,\"\",0.00,133.00,105.00,764.00,,,,,,\n2015,5,9,\"MQ\",\"3433\",\"LGA\",\"BNA\",12.00,26.00,0.00,\"\",0.00,160.00,100.00,764.00,12.00,0.00,14.00,0.00,0.00,\n2015,5,16,\"MQ\",\"3433\",\"LGA\",\"BNA\",-7.00,-9.00,0.00,\"\",0.00,144.00,106.00,764.00,,,,,,\n2015,5,23,\"MQ\",\"3433\",\"LGA\",\"BNA\",-6.00,-10.00,0.00,\"\",0.00,142.00,108.00,764.00,,,,,,\n2015,5,30,\"MQ\",\"3433\",\"LGA\",\"BNA\",-5.00,-18.00,0.00,\"\",0.00,133.00,106.00,764.00,,,,,,\n2015,5,1,\"MQ\",\"3433\",\"LGA\",\"DTW\",-4.00,-27.00,0.00,\"\",0.00,98.00,72.00,502.00,,,,,,\n2015,5,4,\"MQ\",\"3433\",\"LGA\",\"DTW\",4.00,4.00,0.00,\"\",0.00,121.00,78.00,502.00,,,,,,\n2015,5,5,\"MQ\",\"3433\",\"LGA\",\"DTW\",-10.00,-24.00,0.00,\"\",0.00,107.00,82.00,502.00,,,,,,\n2015,5,6,\"MQ\",\"3433\",\"LGA\",\"DTW\",46.00,61.00,0.00,\"\",0.00,136.00,80.00,502.00,25.00,0.00,15.00,0.00,21.00,\n2015,5,7,\"MQ\",\"3433\",\"LGA\",\"DTW\",-7.00,-19.00,0.00,\"\",0.00,109.00,76.00,502.00,,,,,,\n2015,5,8,\"MQ\",\"3433\",\"LGA\",\"DTW\",-7.00,3.00,0.00,\"\",0.00,131.00,75.00,502.00,,,,,,\n2015,5,10,\"MQ\",\"3433\",\"LGA\",\"DTW\",-7.00,-33.00,0.00,\"\",0.00,95.00,72.00,502.00,,,,,,\n2015,5,11,\"MQ\",\"3433\",\"LGA\",\"DTW\",-10.00,-25.00,0.00,\"\",0.00,106.00,78.00,502.00,,,,,,\n2015,5,12,\"MQ\",\"3433\",\"LGA\",\"DTW\",-7.00,-26.00,0.00,\"\",0.00,102.00,81.00,502.00,,,,,,\n2015,5,13,\"MQ\",\"3433\",\"LGA\",\"DTW\",-9.00,6.00,0.00,\"\",0.00,136.00,87.00,502.00,,,,,,\n2015,5,14,\"MQ\",\"3433\",\"LGA\",\"DTW\",-8.00,-6.00,0.00,\"\",0.00,123.00,86.00,502.00,,,,,,\n2015,5,15,\"MQ\",\"3433\",\"LGA\",\"DTW\",-10.00,-29.00,0.00,\"\",0.00,102.00,77.00,502.00,,,,,,\n2015,5,17,\"MQ\",\"3433\",\"LGA\",\"DTW\",67.00,64.00,0.00,\"\",0.00,118.00,71.00,502.00,64.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"MQ\",\"3433\",\"LGA\",\"DTW\",155.00,142.00,0.00,\"\",0.00,108.00,79.00,502.00,0.00,0.00,0.00,0.00,142.00,\n2015,5,19,\"MQ\",\"3433\",\"LGA\",\"DTW\",33.00,42.00,0.00,\"\",0.00,130.00,84.00,502.00,0.00,0.00,9.00,0.00,33.00,\n2015,5,20,\"MQ\",\"3433\",\"LGA\",\"DTW\",-5.00,5.00,0.00,\"\",0.00,131.00,90.00,502.00,,,,,,\n2015,5,21,\"MQ\",\"3433\",\"LGA\",\"DTW\",21.00,16.00,0.00,\"\",0.00,116.00,84.00,502.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3433\",\"LGA\",\"DTW\",-7.00,-6.00,0.00,\"\",0.00,122.00,85.00,502.00,,,,,,\n2015,5,24,\"MQ\",\"3433\",\"LGA\",\"DTW\",-6.00,-24.00,0.00,\"\",0.00,103.00,78.00,502.00,,,,,,\n2015,5,25,\"MQ\",\"3433\",\"LGA\",\"DTW\",-7.00,-27.00,0.00,\"\",0.00,101.00,79.00,502.00,,,,,,\n2015,5,26,\"MQ\",\"3433\",\"LGA\",\"DTW\",-6.00,-9.00,0.00,\"\",0.00,118.00,81.00,502.00,,,,,,\n2015,5,27,\"MQ\",\"3433\",\"LGA\",\"DTW\",-9.00,-22.00,0.00,\"\",0.00,108.00,79.00,502.00,,,,,,\n2015,5,28,\"MQ\",\"3433\",\"LGA\",\"DTW\",10.00,7.00,0.00,\"\",0.00,118.00,78.00,502.00,,,,,,\n2015,5,29,\"MQ\",\"3433\",\"LGA\",\"DTW\",41.00,49.00,0.00,\"\",0.00,129.00,76.00,502.00,0.00,0.00,8.00,0.00,41.00,\n2015,5,31,\"MQ\",\"3433\",\"LGA\",\"DTW\",-8.00,-26.00,0.00,\"\",0.00,103.00,79.00,502.00,,,,,,\n2015,5,1,\"MQ\",\"3473\",\"LGA\",\"DAY\",-5.00,-23.00,0.00,\"\",0.00,97.00,81.00,549.00,,,,,,\n2015,5,3,\"MQ\",\"3473\",\"LGA\",\"DAY\",-9.00,-30.00,0.00,\"\",0.00,94.00,81.00,549.00,,,,,,\n2015,5,4,\"MQ\",\"3473\",\"LGA\",\"DAY\",-12.00,-20.00,0.00,\"\",0.00,107.00,81.00,549.00,,,,,,\n2015,5,5,\"MQ\",\"3473\",\"LGA\",\"DAY\",-17.00,-26.00,0.00,\"\",0.00,106.00,82.00,549.00,,,,,,\n2015,5,6,\"MQ\",\"3473\",\"LGA\",\"DAY\",-13.00,-18.00,0.00,\"\",0.00,110.00,83.00,549.00,,,,,,\n2015,5,7,\"MQ\",\"3473\",\"LGA\",\"DAY\",-10.00,-21.00,0.00,\"\",0.00,104.00,80.00,549.00,,,,,,\n2015,5,8,\"MQ\",\"3473\",\"LGA\",\"DAY\",-5.00,-16.00,0.00,\"\",0.00,104.00,78.00,549.00,,,,,,\n2015,5,10,\"MQ\",\"3473\",\"LGA\",\"DAY\",-8.00,-12.00,0.00,\"\",0.00,111.00,81.00,549.00,,,,,,\n2015,5,11,\"MQ\",\"3473\",\"LGA\",\"DAY\",22.00,14.00,0.00,\"\",0.00,107.00,89.00,549.00,,,,,,\n2015,5,12,\"MQ\",\"3473\",\"LGA\",\"DAY\",-16.00,-17.00,0.00,\"\",0.00,114.00,96.00,549.00,,,,,,\n2015,5,13,\"MQ\",\"3473\",\"LGA\",\"DAY\",-12.00,4.00,0.00,\"\",0.00,131.00,86.00,549.00,,,,,,\n2015,5,14,\"MQ\",\"3473\",\"LGA\",\"DAY\",-11.00,-19.00,0.00,\"\",0.00,107.00,91.00,549.00,,,,,,\n2015,5,15,\"MQ\",\"3473\",\"LGA\",\"DAY\",-8.00,-17.00,0.00,\"\",0.00,106.00,87.00,549.00,,,,,,\n2015,5,17,\"MQ\",\"3473\",\"LGA\",\"DAY\",-1.00,-10.00,0.00,\"\",0.00,106.00,80.00,549.00,,,,,,\n2015,5,18,\"MQ\",\"3473\",\"LGA\",\"DAY\",,,1.00,\"C\",0.00,,,549.00,,,,,,\n2015,5,19,\"MQ\",\"3473\",\"LGA\",\"DAY\",12.00,12.00,0.00,\"\",0.00,115.00,89.00,549.00,,,,,,\n2015,5,20,\"MQ\",\"3473\",\"LGA\",\"DAY\",33.00,81.00,0.00,\"\",0.00,163.00,99.00,549.00,0.00,0.00,48.00,0.00,33.00,\n2015,5,21,\"MQ\",\"3473\",\"LGA\",\"DAY\",5.00,6.00,0.00,\"\",0.00,116.00,92.00,549.00,,,,,,\n2015,5,22,\"MQ\",\"3473\",\"LGA\",\"DAY\",-10.00,-5.00,0.00,\"\",0.00,120.00,95.00,549.00,,,,,,\n2015,5,24,\"MQ\",\"3473\",\"LGA\",\"DAY\",-11.00,-24.00,0.00,\"\",0.00,102.00,85.00,549.00,,,,,,\n2015,5,25,\"MQ\",\"3473\",\"LGA\",\"DAY\",127.00,108.00,0.00,\"\",0.00,96.00,82.00,549.00,3.00,0.00,0.00,0.00,105.00,\n2015,5,26,\"MQ\",\"3473\",\"LGA\",\"DAY\",-18.00,-31.00,0.00,\"\",0.00,102.00,86.00,549.00,,,,,,\n2015,5,27,\"MQ\",\"3473\",\"LGA\",\"DAY\",132.00,125.00,0.00,\"\",0.00,108.00,86.00,549.00,1.00,0.00,0.00,0.00,124.00,\n2015,5,28,\"MQ\",\"3473\",\"LGA\",\"DAY\",-9.00,-11.00,0.00,\"\",0.00,113.00,77.00,549.00,,,,,,\n2015,5,29,\"MQ\",\"3473\",\"LGA\",\"DAY\",-4.00,-11.00,0.00,\"\",0.00,108.00,87.00,549.00,,,,,,\n2015,5,31,\"MQ\",\"3473\",\"LGA\",\"DAY\",,,1.00,\"C\",0.00,,,549.00,,,,,,\n2015,5,1,\"MQ\",\"3474\",\"BNA\",\"LGA\",-7.00,8.00,0.00,\"\",0.00,145.00,119.00,764.00,,,,,,\n2015,5,2,\"MQ\",\"3474\",\"BNA\",\"LGA\",-9.00,-4.00,0.00,\"\",0.00,140.00,122.00,764.00,,,,,,\n2015,5,3,\"MQ\",\"3474\",\"BNA\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,128.00,110.00,764.00,,,,,,\n2015,5,4,\"MQ\",\"3474\",\"BNA\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,130.00,110.00,764.00,,,,,,\n2015,5,5,\"MQ\",\"3474\",\"BNA\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,128.00,107.00,764.00,,,,,,\n2015,5,6,\"MQ\",\"3474\",\"BNA\",\"LGA\",5.00,6.00,0.00,\"\",0.00,131.00,113.00,764.00,,,,,,\n2015,5,7,\"MQ\",\"3474\",\"BNA\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,128.00,105.00,764.00,,,,,,\n2015,5,8,\"MQ\",\"3474\",\"BNA\",\"LGA\",42.00,38.00,0.00,\"\",0.00,126.00,112.00,764.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3474\",\"BNA\",\"LGA\",-5.00,4.00,0.00,\"\",0.00,139.00,121.00,764.00,,,,,,\n2015,5,10,\"MQ\",\"3474\",\"BNA\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,130.00,109.00,764.00,,,,,,\n2015,5,11,\"MQ\",\"3474\",\"BNA\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,122.00,104.00,764.00,,,,,,\n2015,5,12,\"MQ\",\"3474\",\"BNA\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,125.00,95.00,764.00,,,,,,\n2015,5,13,\"MQ\",\"3474\",\"BNA\",\"LGA\",0.00,27.00,0.00,\"\",0.00,157.00,103.00,764.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,14,\"MQ\",\"3474\",\"BNA\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,127.00,107.00,764.00,,,,,,\n2015,5,15,\"MQ\",\"3474\",\"BNA\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,129.00,101.00,764.00,,,,,,\n2015,5,16,\"MQ\",\"3474\",\"BNA\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,129.00,112.00,764.00,,,,,,\n2015,5,17,\"MQ\",\"3474\",\"BNA\",\"LGA\",44.00,28.00,0.00,\"\",0.00,114.00,99.00,764.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"MQ\",\"3474\",\"BNA\",\"LGA\",0.00,4.00,0.00,\"\",0.00,134.00,116.00,764.00,,,,,,\n2015,5,19,\"MQ\",\"3474\",\"BNA\",\"LGA\",169.00,150.00,0.00,\"\",0.00,111.00,99.00,764.00,0.00,0.00,150.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3474\",\"BNA\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,113.00,98.00,764.00,,,,,,\n2015,5,21,\"MQ\",\"3474\",\"BNA\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,125.00,96.00,764.00,,,,,,\n2015,5,22,\"MQ\",\"3474\",\"BNA\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,115.00,94.00,764.00,,,,,,\n2015,5,23,\"MQ\",\"3474\",\"BNA\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,119.00,99.00,764.00,,,,,,\n2015,5,24,\"MQ\",\"3474\",\"BNA\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,125.00,106.00,764.00,,,,,,\n2015,5,25,\"MQ\",\"3474\",\"BNA\",\"LGA\",2.00,4.00,0.00,\"\",0.00,132.00,102.00,764.00,,,,,,\n2015,5,26,\"MQ\",\"3474\",\"BNA\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,123.00,105.00,764.00,,,,,,\n2015,5,27,\"MQ\",\"3474\",\"BNA\",\"LGA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,28,\"MQ\",\"3474\",\"BNA\",\"LGA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,29,\"MQ\",\"3474\",\"BNA\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,121.00,104.00,764.00,,,,,,\n2015,5,30,\"MQ\",\"3474\",\"BNA\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,121.00,110.00,764.00,,,,,,\n2015,5,31,\"MQ\",\"3474\",\"BNA\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,125.00,104.00,764.00,,,,,,\n2015,5,7,\"MQ\",\"3477\",\"ORD\",\"HPN\",-6.00,-8.00,0.00,\"\",0.00,140.00,103.00,738.00,,,,,,\n2015,5,8,\"MQ\",\"3477\",\"ORD\",\"HPN\",117.00,104.00,0.00,\"\",0.00,129.00,103.00,738.00,0.00,104.00,0.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3477\",\"ORD\",\"HPN\",-6.00,-21.00,0.00,\"\",0.00,127.00,101.00,738.00,,,,,,\n2015,5,10,\"MQ\",\"3477\",\"ORD\",\"HPN\",2.00,-12.00,0.00,\"\",0.00,128.00,101.00,738.00,,,,,,\n2015,5,11,\"MQ\",\"3477\",\"ORD\",\"HPN\",17.00,5.00,0.00,\"\",0.00,130.00,109.00,738.00,,,,,,\n2015,5,12,\"MQ\",\"3477\",\"ORD\",\"HPN\",-4.00,-29.00,0.00,\"\",0.00,117.00,93.00,738.00,,,,,,\n2015,5,13,\"MQ\",\"3477\",\"ORD\",\"HPN\",-4.00,-26.00,0.00,\"\",0.00,120.00,100.00,738.00,,,,,,\n2015,5,14,\"MQ\",\"3477\",\"ORD\",\"HPN\",-6.00,-31.00,0.00,\"\",0.00,117.00,95.00,738.00,,,,,,\n2015,5,15,\"MQ\",\"3477\",\"ORD\",\"HPN\",0.00,-20.00,0.00,\"\",0.00,122.00,98.00,738.00,,,,,,\n2015,5,16,\"MQ\",\"3477\",\"ORD\",\"HPN\",-1.00,-19.00,0.00,\"\",0.00,124.00,98.00,738.00,,,,,,\n2015,5,17,\"MQ\",\"3477\",\"ORD\",\"HPN\",8.00,-12.00,0.00,\"\",0.00,122.00,102.00,738.00,,,,,,\n2015,5,18,\"MQ\",\"3477\",\"ORD\",\"HPN\",-5.00,36.00,0.00,\"\",0.00,183.00,100.00,738.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3477\",\"ORD\",\"HPN\",-1.00,4.00,0.00,\"\",0.00,147.00,113.00,738.00,,,,,,\n2015,5,20,\"MQ\",\"3477\",\"ORD\",\"HPN\",-6.00,-28.00,0.00,\"\",0.00,120.00,93.00,738.00,,,,,,\n2015,5,21,\"MQ\",\"3477\",\"ORD\",\"HPN\",15.00,-9.00,0.00,\"\",0.00,118.00,95.00,738.00,,,,,,\n2015,5,22,\"MQ\",\"3477\",\"ORD\",\"HPN\",-2.00,-11.00,0.00,\"\",0.00,133.00,98.00,738.00,,,,,,\n2015,5,23,\"MQ\",\"3477\",\"ORD\",\"HPN\",82.00,49.00,0.00,\"\",0.00,109.00,91.00,738.00,49.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"MQ\",\"3477\",\"ORD\",\"HPN\",-3.00,-13.00,0.00,\"\",0.00,132.00,96.00,738.00,,,,,,\n2015,5,25,\"MQ\",\"3477\",\"ORD\",\"HPN\",-4.00,-25.00,0.00,\"\",0.00,121.00,96.00,738.00,,,,,,\n2015,5,26,\"MQ\",\"3477\",\"ORD\",\"HPN\",-1.00,-6.00,0.00,\"\",0.00,137.00,99.00,738.00,,,,,,\n2015,5,27,\"MQ\",\"3477\",\"ORD\",\"HPN\",-3.00,-24.00,0.00,\"\",0.00,121.00,101.00,738.00,,,,,,\n2015,5,28,\"MQ\",\"3477\",\"ORD\",\"HPN\",-2.00,-8.00,0.00,\"\",0.00,136.00,105.00,738.00,,,,,,\n2015,5,29,\"MQ\",\"3477\",\"ORD\",\"HPN\",44.00,41.00,0.00,\"\",0.00,139.00,102.00,738.00,0.00,0.00,4.00,0.00,37.00,\n2015,5,30,\"MQ\",\"3477\",\"ORD\",\"HPN\",-4.00,-16.00,0.00,\"\",0.00,130.00,100.00,738.00,,,,,,\n2015,5,31,\"MQ\",\"3477\",\"ORD\",\"HPN\",3.00,18.00,0.00,\"\",0.00,157.00,125.00,738.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,14,\"F9\",\"506\",\"DEN\",\"LGA\",-9.00,-28.00,0.00,\"\",0.00,216.00,196.00,1620.00,,,,,,\n2015,5,14,\"F9\",\"619\",\"LGA\",\"MIA\",-3.00,19.00,0.00,\"\",0.00,217.00,160.00,1096.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,14,\"F9\",\"1142\",\"MIA\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,177.00,153.00,1096.00,,,,,,\n2015,5,14,\"F9\",\"507\",\"LGA\",\"DEN\",-4.00,-21.00,0.00,\"\",0.00,242.00,219.00,1620.00,,,,,,\n2015,5,14,\"F9\",\"1462\",\"ATL\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,129.00,106.00,762.00,,,,,,\n2015,5,14,\"F9\",\"1463\",\"LGA\",\"ATL\",-10.00,-5.00,0.00,\"\",0.00,155.00,108.00,762.00,,,,,,\n2015,5,15,\"F9\",\"1142\",\"MIA\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,166.00,143.00,1096.00,,,,,,\n2015,5,15,\"F9\",\"507\",\"LGA\",\"DEN\",-13.00,-36.00,0.00,\"\",0.00,236.00,216.00,1620.00,,,,,,\n2015,5,15,\"F9\",\"506\",\"DEN\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,217.00,193.00,1620.00,,,,,,\n2015,5,15,\"F9\",\"619\",\"LGA\",\"MIA\",6.00,-20.00,0.00,\"\",0.00,169.00,144.00,1096.00,,,,,,\n2015,5,15,\"F9\",\"1462\",\"ATL\",\"LGA\",-7.00,-24.00,0.00,\"\",0.00,123.00,106.00,762.00,,,,,,\n2015,5,15,\"F9\",\"1463\",\"LGA\",\"ATL\",-3.00,-6.00,0.00,\"\",0.00,147.00,112.00,762.00,,,,,,\n2015,5,16,\"F9\",\"1142\",\"MIA\",\"LGA\",-3.00,-1.00,0.00,\"\",0.00,182.00,155.00,1096.00,,,,,,\n2015,5,16,\"F9\",\"507\",\"LGA\",\"DEN\",10.00,-13.00,0.00,\"\",0.00,236.00,216.00,1620.00,,,,,,\n2015,5,16,\"F9\",\"506\",\"DEN\",\"LGA\",-10.00,-3.00,0.00,\"\",0.00,242.00,228.00,1620.00,,,,,,\n2015,5,16,\"F9\",\"619\",\"LGA\",\"MIA\",0.00,-9.00,0.00,\"\",0.00,186.00,146.00,1096.00,,,,,,\n2015,5,1,\"MQ\",\"3046\",\"ORD\",\"SYR\",-3.00,-24.00,0.00,\"\",0.00,94.00,86.00,607.00,,,,,,\n2015,5,2,\"MQ\",\"3046\",\"ORD\",\"SYR\",-9.00,-20.00,0.00,\"\",0.00,104.00,86.00,607.00,,,,,,\n2015,5,3,\"MQ\",\"3046\",\"ORD\",\"SYR\",-6.00,-23.00,0.00,\"\",0.00,98.00,82.00,607.00,,,,,,\n2015,5,4,\"MQ\",\"3046\",\"ORD\",\"SYR\",-5.00,-17.00,0.00,\"\",0.00,103.00,77.00,607.00,,,,,,\n2015,5,5,\"MQ\",\"3046\",\"ORD\",\"SYR\",-3.00,-12.00,0.00,\"\",0.00,106.00,78.00,607.00,,,,,,\n2015,5,6,\"MQ\",\"3046\",\"ORD\",\"SYR\",-2.00,-8.00,0.00,\"\",0.00,109.00,78.00,607.00,,,,,,\n2015,5,1,\"MQ\",\"3046\",\"SYR\",\"ORD\",-8.00,-32.00,0.00,\"\",0.00,106.00,84.00,607.00,,,,,,\n2015,5,3,\"MQ\",\"3046\",\"SYR\",\"ORD\",-7.00,-21.00,0.00,\"\",0.00,116.00,95.00,607.00,,,,,,\n2015,5,4,\"MQ\",\"3046\",\"SYR\",\"ORD\",-5.00,4.00,0.00,\"\",0.00,139.00,100.00,607.00,,,,,,\n2015,5,5,\"MQ\",\"3046\",\"SYR\",\"ORD\",-6.00,7.00,0.00,\"\",0.00,143.00,107.00,607.00,,,,,,\n2015,5,6,\"MQ\",\"3046\",\"SYR\",\"ORD\",-2.00,-8.00,0.00,\"\",0.00,124.00,99.00,607.00,,,,,,\n2015,5,1,\"MQ\",\"3461\",\"BNA\",\"LGA\",20.00,48.00,0.00,\"\",0.00,159.00,109.00,764.00,5.00,0.00,28.00,0.00,15.00,\n2015,5,2,\"MQ\",\"3461\",\"BNA\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,127.00,111.00,764.00,,,,,,\n2015,5,3,\"MQ\",\"3461\",\"BNA\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,121.00,107.00,764.00,,,,,,\n2015,5,4,\"MQ\",\"3461\",\"BNA\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,123.00,108.00,764.00,,,,,,\n2015,5,5,\"MQ\",\"3461\",\"BNA\",\"LGA\",-12.00,-5.00,0.00,\"\",0.00,138.00,114.00,764.00,,,,,,\n2015,5,6,\"MQ\",\"3461\",\"BNA\",\"LGA\",-4.00,12.00,0.00,\"\",0.00,147.00,105.00,764.00,,,,,,\n2015,5,7,\"MQ\",\"3461\",\"BNA\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,130.00,109.00,764.00,,,,,,\n2015,5,8,\"MQ\",\"3461\",\"BNA\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,125.00,109.00,764.00,,,,,,\n2015,5,9,\"MQ\",\"3461\",\"BNA\",\"LGA\",21.00,20.00,0.00,\"\",0.00,130.00,109.00,764.00,19.00,0.00,0.00,0.00,1.00,\n2015,5,10,\"MQ\",\"3461\",\"BNA\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,122.00,106.00,764.00,,,,,,\n2015,5,11,\"MQ\",\"3461\",\"BNA\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,127.00,109.00,764.00,,,,,,\n2015,5,12,\"MQ\",\"3461\",\"BNA\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,113.00,94.00,764.00,,,,,,\n2015,5,13,\"MQ\",\"3461\",\"BNA\",\"LGA\",18.00,14.00,0.00,\"\",0.00,127.00,104.00,764.00,,,,,,\n2015,5,14,\"MQ\",\"3461\",\"BNA\",\"LGA\",1.00,-6.00,0.00,\"\",0.00,124.00,107.00,764.00,,,,,,\n2015,5,15,\"MQ\",\"3461\",\"BNA\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,117.00,103.00,764.00,,,,,,\n2015,5,16,\"MQ\",\"3461\",\"BNA\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,117.00,102.00,764.00,,,,,,\n2015,5,17,\"MQ\",\"3461\",\"BNA\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,134.00,109.00,764.00,,,,,,\n2015,5,18,\"MQ\",\"3461\",\"BNA\",\"LGA\",173.00,170.00,0.00,\"\",0.00,128.00,105.00,764.00,0.00,0.00,168.00,0.00,2.00,\n2015,5,19,\"MQ\",\"3461\",\"BNA\",\"LGA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,20,\"MQ\",\"3461\",\"BNA\",\"LGA\",14.00,5.00,0.00,\"\",0.00,122.00,99.00,764.00,,,,,,\n2015,5,21,\"MQ\",\"3461\",\"BNA\",\"LGA\",-1.00,-23.00,0.00,\"\",0.00,109.00,94.00,764.00,,,,,,\n2015,5,22,\"MQ\",\"3461\",\"BNA\",\"LGA\",33.00,26.00,0.00,\"\",0.00,124.00,103.00,764.00,5.00,0.00,0.00,0.00,21.00,\n2015,5,23,\"MQ\",\"3461\",\"BNA\",\"LGA\",-8.00,-26.00,0.00,\"\",0.00,113.00,100.00,764.00,,,,,,\n2015,5,24,\"MQ\",\"3461\",\"BNA\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,128.00,107.00,764.00,,,,,,\n2015,5,25,\"MQ\",\"3461\",\"BNA\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,114.00,101.00,764.00,,,,,,\n2015,5,26,\"MQ\",\"3461\",\"BNA\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,118.00,104.00,764.00,,,,,,\n2015,5,27,\"MQ\",\"3461\",\"BNA\",\"LGA\",79.00,90.00,0.00,\"\",0.00,142.00,117.00,764.00,0.00,0.00,90.00,0.00,0.00,\n2015,5,28,\"MQ\",\"3461\",\"BNA\",\"LGA\",11.00,4.00,0.00,\"\",0.00,124.00,112.00,764.00,,,,,,\n2015,5,29,\"MQ\",\"3461\",\"BNA\",\"LGA\",14.00,22.00,0.00,\"\",0.00,139.00,116.00,764.00,4.00,0.00,8.00,0.00,10.00,\n2015,5,30,\"MQ\",\"3461\",\"BNA\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,124.00,111.00,764.00,,,,,,\n2015,5,31,\"MQ\",\"3461\",\"BNA\",\"LGA\",95.00,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,1,\"MQ\",\"3461\",\"LGA\",\"BNA\",49.00,15.00,0.00,\"\",0.00,115.00,101.00,764.00,1.00,0.00,0.00,0.00,14.00,\n2015,5,2,\"MQ\",\"3461\",\"LGA\",\"BNA\",-5.00,-27.00,0.00,\"\",0.00,127.00,103.00,764.00,,,,,,\n2015,5,3,\"MQ\",\"3461\",\"LGA\",\"BNA\",-6.00,-18.00,0.00,\"\",0.00,137.00,101.00,764.00,,,,,,\n2015,5,4,\"MQ\",\"3461\",\"LGA\",\"BNA\",10.00,-12.00,0.00,\"\",0.00,127.00,100.00,764.00,,,,,,\n2015,5,5,\"MQ\",\"3461\",\"LGA\",\"BNA\",-12.00,-9.00,0.00,\"\",0.00,152.00,111.00,764.00,,,,,,\n2015,5,6,\"MQ\",\"3461\",\"LGA\",\"BNA\",-11.00,-12.00,0.00,\"\",0.00,148.00,102.00,764.00,,,,,,\n2015,5,7,\"MQ\",\"3461\",\"LGA\",\"BNA\",-8.00,-29.00,0.00,\"\",0.00,128.00,104.00,764.00,,,,,,\n2015,5,8,\"MQ\",\"3461\",\"LGA\",\"BNA\",10.00,-20.00,0.00,\"\",0.00,119.00,97.00,764.00,,,,,,\n2015,5,9,\"MQ\",\"3461\",\"LGA\",\"BNA\",3.00,1.00,0.00,\"\",0.00,147.00,100.00,764.00,,,,,,\n2015,5,10,\"MQ\",\"3461\",\"LGA\",\"BNA\",-7.00,-16.00,0.00,\"\",0.00,140.00,104.00,764.00,,,,,,\n2015,5,11,\"MQ\",\"3461\",\"LGA\",\"BNA\",-9.00,-33.00,0.00,\"\",0.00,125.00,100.00,764.00,,,,,,\n2015,5,12,\"MQ\",\"3461\",\"LGA\",\"BNA\",-4.00,-20.00,0.00,\"\",0.00,133.00,116.00,764.00,,,,,,\n2015,5,13,\"MQ\",\"3461\",\"LGA\",\"BNA\",9.00,11.00,0.00,\"\",0.00,151.00,107.00,764.00,,,,,,\n2015,5,14,\"MQ\",\"3461\",\"LGA\",\"BNA\",-7.00,-4.00,0.00,\"\",0.00,152.00,111.00,764.00,,,,,,\n2015,5,15,\"MQ\",\"3461\",\"LGA\",\"BNA\",-7.00,-16.00,0.00,\"\",0.00,140.00,107.00,764.00,,,,,,\n2015,5,16,\"MQ\",\"3461\",\"LGA\",\"BNA\",-6.00,-4.00,0.00,\"\",0.00,151.00,113.00,764.00,,,,,,\n2015,5,17,\"MQ\",\"3461\",\"LGA\",\"BNA\",-6.00,-16.00,0.00,\"\",0.00,139.00,103.00,764.00,,,,,,\n2015,5,18,\"MQ\",\"3461\",\"LGA\",\"BNA\",25.00,2.00,0.00,\"\",0.00,126.00,103.00,764.00,,,,,,\n2015,5,19,\"MQ\",\"3461\",\"LGA\",\"BNA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,20,\"MQ\",\"3461\",\"LGA\",\"BNA\",-3.00,4.00,0.00,\"\",0.00,156.00,113.00,764.00,,,,,,\n2015,5,21,\"MQ\",\"3461\",\"LGA\",\"BNA\",-1.00,-7.00,0.00,\"\",0.00,143.00,120.00,764.00,,,,,,\n2015,5,22,\"MQ\",\"3461\",\"LGA\",\"BNA\",8.00,27.00,0.00,\"\",0.00,168.00,116.00,764.00,8.00,0.00,19.00,0.00,0.00,\n2015,5,23,\"MQ\",\"3461\",\"LGA\",\"BNA\",-7.00,-29.00,0.00,\"\",0.00,127.00,107.00,764.00,,,,,,\n2015,5,24,\"MQ\",\"3461\",\"LGA\",\"BNA\",-1.00,-28.00,0.00,\"\",0.00,122.00,106.00,764.00,,,,,,\n2015,5,25,\"MQ\",\"3461\",\"LGA\",\"BNA\",-10.00,-18.00,0.00,\"\",0.00,141.00,112.00,764.00,,,,,,\n2015,5,26,\"MQ\",\"3461\",\"LGA\",\"BNA\",-6.00,-15.00,0.00,\"\",0.00,140.00,105.00,764.00,,,,,,\n2015,5,27,\"MQ\",\"3461\",\"LGA\",\"BNA\",-6.00,-17.00,0.00,\"\",0.00,138.00,116.00,764.00,,,,,,\n2015,5,28,\"MQ\",\"3461\",\"LGA\",\"BNA\",-2.00,-7.00,0.00,\"\",0.00,144.00,103.00,764.00,,,,,,\n2015,5,29,\"MQ\",\"3461\",\"LGA\",\"BNA\",14.00,10.00,0.00,\"\",0.00,145.00,101.00,764.00,,,,,,\n2015,5,30,\"MQ\",\"3461\",\"LGA\",\"BNA\",-7.00,-22.00,0.00,\"\",0.00,134.00,120.00,764.00,,,,,,\n2015,5,31,\"MQ\",\"3461\",\"LGA\",\"BNA\",-14.00,-29.00,0.00,\"\",0.00,134.00,108.00,764.00,,,,,,\n2015,5,1,\"MQ\",\"3465\",\"JFK\",\"BNA\",-4.00,-31.00,0.00,\"\",0.00,131.00,110.00,765.00,,,,,,\n2015,5,2,\"MQ\",\"3465\",\"JFK\",\"BNA\",-4.00,-33.00,0.00,\"\",0.00,129.00,103.00,765.00,,,,,,\n2015,5,3,\"MQ\",\"3465\",\"JFK\",\"BNA\",-3.00,-34.00,0.00,\"\",0.00,127.00,105.00,765.00,,,,,,\n2015,5,4,\"MQ\",\"3465\",\"JFK\",\"BNA\",-5.00,-36.00,0.00,\"\",0.00,127.00,104.00,765.00,,,,,,\n2015,5,5,\"MQ\",\"3465\",\"JFK\",\"BNA\",-6.00,-33.00,0.00,\"\",0.00,131.00,109.00,765.00,,,,,,\n2015,5,6,\"MQ\",\"3465\",\"JFK\",\"BNA\",252.00,234.00,0.00,\"\",0.00,140.00,107.00,765.00,0.00,0.00,0.00,0.00,234.00,\n2015,5,7,\"MQ\",\"3465\",\"JFK\",\"BNA\",-8.00,-33.00,0.00,\"\",0.00,133.00,109.00,765.00,,,,,,\n2015,5,8,\"MQ\",\"3465\",\"JFK\",\"BNA\",1.00,7.00,0.00,\"\",0.00,164.00,104.00,765.00,,,,,,\n2015,5,9,\"MQ\",\"3465\",\"JFK\",\"BNA\",-5.00,-19.00,0.00,\"\",0.00,144.00,104.00,765.00,,,,,,\n2015,5,10,\"MQ\",\"3465\",\"JFK\",\"BNA\",6.00,0.00,0.00,\"\",0.00,152.00,108.00,765.00,,,,,,\n2015,5,11,\"MQ\",\"3465\",\"JFK\",\"BNA\",-5.00,26.00,0.00,\"\",0.00,189.00,119.00,765.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3465\",\"JFK\",\"BNA\",96.00,89.00,0.00,\"\",0.00,151.00,126.00,765.00,0.00,0.00,0.00,0.00,89.00,\n2015,5,13,\"MQ\",\"3465\",\"JFK\",\"BNA\",31.00,7.00,0.00,\"\",0.00,134.00,110.00,765.00,,,,,,\n2015,5,14,\"MQ\",\"3465\",\"JFK\",\"BNA\",13.00,6.00,0.00,\"\",0.00,151.00,114.00,765.00,,,,,,\n2015,5,15,\"MQ\",\"3465\",\"JFK\",\"BNA\",-3.00,-16.00,0.00,\"\",0.00,145.00,111.00,765.00,,,,,,\n2015,5,16,\"MQ\",\"3465\",\"JFK\",\"BNA\",0.00,-16.00,0.00,\"\",0.00,142.00,114.00,765.00,,,,,,\n2015,5,17,\"MQ\",\"3465\",\"JFK\",\"BNA\",-5.00,3.00,0.00,\"\",0.00,166.00,111.00,765.00,,,,,,\n2015,5,18,\"MQ\",\"3465\",\"JFK\",\"BNA\",157.00,203.00,0.00,\"\",0.00,204.00,131.00,765.00,0.00,0.00,49.00,0.00,154.00,\n2015,5,19,\"MQ\",\"3465\",\"JFK\",\"BNA\",-1.00,1.00,0.00,\"\",0.00,160.00,117.00,765.00,,,,,,\n2015,5,20,\"MQ\",\"3465\",\"JFK\",\"BNA\",-4.00,-27.00,0.00,\"\",0.00,135.00,116.00,765.00,,,,,,\n2015,5,21,\"MQ\",\"3465\",\"JFK\",\"BNA\",-4.00,23.00,0.00,\"\",0.00,185.00,128.00,765.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3465\",\"JFK\",\"BNA\",-6.00,-21.00,0.00,\"\",0.00,143.00,118.00,765.00,,,,,,\n2015,5,23,\"MQ\",\"3465\",\"JFK\",\"BNA\",-6.00,-16.00,0.00,\"\",0.00,148.00,113.00,765.00,,,,,,\n2015,5,24,\"MQ\",\"3465\",\"JFK\",\"BNA\",-1.00,-21.00,0.00,\"\",0.00,138.00,110.00,765.00,,,,,,\n2015,5,25,\"MQ\",\"3465\",\"JFK\",\"BNA\",-1.00,-17.00,0.00,\"\",0.00,142.00,111.00,765.00,,,,,,\n2015,5,26,\"MQ\",\"3465\",\"JFK\",\"BNA\",-7.00,-20.00,0.00,\"\",0.00,145.00,119.00,765.00,,,,,,\n2015,5,27,\"MQ\",\"3465\",\"JFK\",\"BNA\",,,1.00,\"C\",0.00,,,765.00,,,,,,\n2015,5,28,\"MQ\",\"3465\",\"JFK\",\"BNA\",-2.00,-29.00,0.00,\"\",0.00,131.00,109.00,765.00,,,,,,\n2015,5,29,\"MQ\",\"3465\",\"JFK\",\"BNA\",-3.00,-35.00,0.00,\"\",0.00,126.00,104.00,765.00,,,,,,\n2015,5,30,\"MQ\",\"3465\",\"JFK\",\"BNA\",2.00,20.00,0.00,\"\",0.00,176.00,122.00,765.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,31,\"MQ\",\"3465\",\"JFK\",\"BNA\",49.00,51.00,0.00,\"\",0.00,160.00,131.00,765.00,49.00,0.00,2.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3466\",\"LGA\",\"RDU\",-8.00,0.00,0.00,\"\",0.00,103.00,68.00,431.00,,,,,,\n2015,5,2,\"MQ\",\"3466\",\"LGA\",\"RDU\",-6.00,-12.00,0.00,\"\",0.00,89.00,66.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3466\",\"LGA\",\"RDU\",4.00,2.00,0.00,\"\",0.00,93.00,64.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3466\",\"LGA\",\"RDU\",-7.00,-9.00,0.00,\"\",0.00,93.00,63.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3466\",\"LGA\",\"RDU\",-5.00,-14.00,0.00,\"\",0.00,86.00,65.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3466\",\"LGA\",\"RDU\",-6.00,20.00,0.00,\"\",0.00,121.00,68.00,431.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3466\",\"LGA\",\"RDU\",-7.00,-12.00,0.00,\"\",0.00,90.00,64.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3466\",\"LGA\",\"RDU\",-9.00,-10.00,0.00,\"\",0.00,94.00,68.00,431.00,,,,,,\n2015,5,9,\"MQ\",\"3466\",\"LGA\",\"RDU\",-8.00,9.00,0.00,\"\",0.00,112.00,67.00,431.00,,,,,,\n2015,5,10,\"MQ\",\"3466\",\"LGA\",\"RDU\",-4.00,-10.00,0.00,\"\",0.00,89.00,70.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3466\",\"LGA\",\"RDU\",-6.00,-18.00,0.00,\"\",0.00,83.00,67.00,431.00,,,,,,\n2015,5,12,\"MQ\",\"3466\",\"LGA\",\"RDU\",-13.00,-18.00,0.00,\"\",0.00,90.00,67.00,431.00,,,,,,\n2015,5,13,\"MQ\",\"3466\",\"LGA\",\"RDU\",-4.00,24.00,0.00,\"\",0.00,123.00,68.00,431.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,14,\"MQ\",\"3466\",\"LGA\",\"RDU\",-8.00,3.00,0.00,\"\",0.00,106.00,60.00,431.00,,,,,,\n2015,5,15,\"MQ\",\"3466\",\"LGA\",\"RDU\",-5.00,-6.00,0.00,\"\",0.00,94.00,66.00,431.00,,,,,,\n2015,5,16,\"MQ\",\"3466\",\"LGA\",\"RDU\",-9.00,-3.00,0.00,\"\",0.00,101.00,62.00,431.00,,,,,,\n2015,5,17,\"MQ\",\"3466\",\"LGA\",\"RDU\",-8.00,-20.00,0.00,\"\",0.00,83.00,63.00,431.00,,,,,,\n2015,5,18,\"MQ\",\"3466\",\"LGA\",\"RDU\",178.00,174.00,0.00,\"\",0.00,91.00,65.00,431.00,0.00,55.00,0.00,0.00,119.00,\n2015,5,19,\"MQ\",\"3466\",\"LGA\",\"RDU\",36.00,40.00,0.00,\"\",0.00,99.00,63.00,431.00,0.00,0.00,4.00,0.00,36.00,\n2015,5,20,\"MQ\",\"3466\",\"LGA\",\"RDU\",21.00,48.00,0.00,\"\",0.00,122.00,76.00,431.00,0.00,0.00,27.00,0.00,21.00,\n2015,5,21,\"MQ\",\"3466\",\"LGA\",\"RDU\",-7.00,-8.00,0.00,\"\",0.00,94.00,74.00,431.00,,,,,,\n2015,5,22,\"MQ\",\"3466\",\"LGA\",\"RDU\",-7.00,6.00,0.00,\"\",0.00,108.00,76.00,431.00,,,,,,\n2015,5,23,\"MQ\",\"3466\",\"LGA\",\"RDU\",-2.00,2.00,0.00,\"\",0.00,99.00,67.00,431.00,,,,,,\n2015,5,24,\"MQ\",\"3466\",\"LGA\",\"RDU\",-7.00,-20.00,0.00,\"\",0.00,82.00,62.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3466\",\"LGA\",\"RDU\",-11.00,-31.00,0.00,\"\",0.00,75.00,60.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3466\",\"LGA\",\"RDU\",47.00,47.00,0.00,\"\",0.00,95.00,66.00,431.00,0.00,0.00,0.00,0.00,47.00,\n2015,5,27,\"MQ\",\"3466\",\"LGA\",\"RDU\",103.00,90.00,0.00,\"\",0.00,82.00,67.00,431.00,21.00,0.00,0.00,0.00,69.00,\n2015,5,28,\"MQ\",\"3466\",\"LGA\",\"RDU\",-4.00,-6.00,0.00,\"\",0.00,93.00,63.00,431.00,,,,,,\n2015,5,29,\"MQ\",\"3466\",\"LGA\",\"RDU\",50.00,61.00,0.00,\"\",0.00,106.00,62.00,431.00,0.00,0.00,11.00,0.00,50.00,\n2015,5,30,\"MQ\",\"3466\",\"LGA\",\"RDU\",-12.00,-19.00,0.00,\"\",0.00,88.00,61.00,431.00,,,,,,\n2015,5,31,\"MQ\",\"3466\",\"LGA\",\"RDU\",-7.00,-16.00,0.00,\"\",0.00,86.00,64.00,431.00,,,,,,\n2015,5,1,\"MQ\",\"3466\",\"RDU\",\"LGA\",20.00,7.00,0.00,\"\",0.00,84.00,68.00,431.00,,,,,,\n2015,5,2,\"MQ\",\"3466\",\"RDU\",\"LGA\",-5.00,-30.00,0.00,\"\",0.00,75.00,60.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3466\",\"RDU\",\"LGA\",6.00,7.00,0.00,\"\",0.00,98.00,72.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3466\",\"RDU\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,98.00,74.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3466\",\"RDU\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,92.00,68.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3466\",\"RDU\",\"LGA\",19.00,2.00,0.00,\"\",0.00,80.00,61.00,431.00,,,,,,\n2015,5,7,\"MQ\",\"3466\",\"RDU\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,87.00,65.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3466\",\"RDU\",\"LGA\",-8.00,-1.00,0.00,\"\",0.00,104.00,67.00,431.00,,,,,,\n2015,5,9,\"MQ\",\"3466\",\"RDU\",\"LGA\",7.00,13.00,0.00,\"\",0.00,103.00,86.00,431.00,,,,,,\n2015,5,10,\"MQ\",\"3466\",\"RDU\",\"LGA\",15.00,0.00,0.00,\"\",0.00,82.00,66.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3466\",\"RDU\",\"LGA\",4.00,5.00,0.00,\"\",0.00,98.00,69.00,431.00,,,,,,\n2015,5,12,\"MQ\",\"3466\",\"RDU\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,79.00,61.00,431.00,,,,,,\n2015,5,13,\"MQ\",\"3466\",\"RDU\",\"LGA\",22.00,41.00,0.00,\"\",0.00,116.00,62.00,431.00,0.00,0.00,19.00,0.00,22.00,\n2015,5,14,\"MQ\",\"3466\",\"RDU\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,82.00,68.00,431.00,,,,,,\n2015,5,15,\"MQ\",\"3466\",\"RDU\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,88.00,69.00,431.00,,,,,,\n2015,5,16,\"MQ\",\"3466\",\"RDU\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,85.00,67.00,431.00,,,,,,\n2015,5,17,\"MQ\",\"3466\",\"RDU\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,87.00,62.00,431.00,,,,,,\n2015,5,18,\"MQ\",\"3466\",\"RDU\",\"LGA\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,19,\"MQ\",\"3466\",\"RDU\",\"LGA\",76.00,88.00,0.00,\"\",0.00,109.00,61.00,431.00,0.00,0.00,48.00,0.00,40.00,\n2015,5,20,\"MQ\",\"3466\",\"RDU\",\"LGA\",53.00,54.00,0.00,\"\",0.00,98.00,64.00,431.00,5.00,0.00,1.00,0.00,48.00,\n2015,5,21,\"MQ\",\"3466\",\"RDU\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,83.00,62.00,431.00,,,,,,\n2015,5,22,\"MQ\",\"3466\",\"RDU\",\"LGA\",6.00,-16.00,0.00,\"\",0.00,75.00,61.00,431.00,,,,,,\n2015,5,23,\"MQ\",\"3466\",\"RDU\",\"LGA\",2.00,-8.00,0.00,\"\",0.00,87.00,65.00,431.00,,,,,,\n2015,5,24,\"MQ\",\"3466\",\"RDU\",\"LGA\",1.00,-14.00,0.00,\"\",0.00,82.00,65.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3466\",\"RDU\",\"LGA\",-7.00,-10.00,0.00,\"\",0.00,94.00,65.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3466\",\"RDU\",\"LGA\",42.00,43.00,0.00,\"\",0.00,98.00,76.00,431.00,0.00,0.00,1.00,0.00,42.00,\n2015,5,27,\"MQ\",\"3466\",\"RDU\",\"LGA\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,28,\"MQ\",\"3466\",\"RDU\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,81.00,63.00,431.00,,,,,,\n2015,5,29,\"MQ\",\"3466\",\"RDU\",\"LGA\",65.00,75.00,0.00,\"\",0.00,107.00,69.00,431.00,4.00,0.00,10.00,0.00,61.00,\n2015,5,30,\"MQ\",\"3466\",\"RDU\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,84.00,66.00,431.00,,,,,,\n2015,5,31,\"MQ\",\"3466\",\"RDU\",\"LGA\",0.00,-6.00,0.00,\"\",0.00,91.00,63.00,431.00,,,,,,\n2015,5,18,\"MQ\",\"3531\",\"LGA\",\"RDU\",-2.00,7.00,0.00,\"\",0.00,102.00,67.00,431.00,,,,,,\n2015,5,19,\"MQ\",\"3531\",\"LGA\",\"RDU\",-13.00,-24.00,0.00,\"\",0.00,82.00,68.00,431.00,,,,,,\n2015,5,20,\"MQ\",\"3531\",\"LGA\",\"RDU\",-8.00,-10.00,0.00,\"\",0.00,91.00,70.00,431.00,,,,,,\n2015,5,21,\"MQ\",\"3531\",\"LGA\",\"RDU\",65.00,106.00,0.00,\"\",0.00,134.00,76.00,431.00,65.00,0.00,41.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3531\",\"LGA\",\"RDU\",83.00,95.00,0.00,\"\",0.00,105.00,76.00,431.00,83.00,0.00,12.00,0.00,0.00,\n2015,5,23,\"MQ\",\"3531\",\"LGA\",\"RDU\",-5.00,-10.00,0.00,\"\",0.00,88.00,68.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3531\",\"LGA\",\"RDU\",-6.00,-20.00,0.00,\"\",0.00,79.00,61.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3531\",\"LGA\",\"RDU\",5.00,1.00,0.00,\"\",0.00,89.00,66.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3531\",\"LGA\",\"RDU\",-7.00,-16.00,0.00,\"\",0.00,84.00,66.00,431.00,,,,,,\n2015,5,28,\"MQ\",\"3531\",\"LGA\",\"RDU\",,,1.00,\"A\",0.00,,,431.00,,,,,,\n2015,5,29,\"MQ\",\"3531\",\"LGA\",\"RDU\",-12.00,-18.00,0.00,\"\",0.00,87.00,63.00,431.00,,,,,,\n2015,5,30,\"MQ\",\"3531\",\"LGA\",\"RDU\",-7.00,-17.00,0.00,\"\",0.00,83.00,63.00,431.00,,,,,,\n2015,5,1,\"MQ\",\"3531\",\"RDU\",\"LGA\",,,1.00,\"A\",0.00,,,431.00,,,,,,\n2015,5,2,\"MQ\",\"3531\",\"RDU\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,86.00,72.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3531\",\"RDU\",\"LGA\",-7.00,-7.00,0.00,\"\",0.00,92.00,70.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3531\",\"RDU\",\"LGA\",-6.00,-3.00,0.00,\"\",0.00,97.00,76.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3531\",\"RDU\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,86.00,71.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3531\",\"RDU\",\"LGA\",0.00,20.00,0.00,\"\",0.00,114.00,75.00,431.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3531\",\"RDU\",\"LGA\",-8.00,-5.00,0.00,\"\",0.00,97.00,66.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3531\",\"RDU\",\"LGA\",60.00,59.00,0.00,\"\",0.00,93.00,66.00,431.00,0.00,0.00,48.00,0.00,11.00,\n2015,5,9,\"MQ\",\"3531\",\"RDU\",\"LGA\",13.00,11.00,0.00,\"\",0.00,92.00,72.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3531\",\"RDU\",\"LGA\",-6.00,-3.00,0.00,\"\",0.00,97.00,69.00,431.00,,,,,,\n2015,5,12,\"MQ\",\"3531\",\"RDU\",\"LGA\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,13,\"MQ\",\"3531\",\"RDU\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,89.00,63.00,431.00,,,,,,\n2015,5,14,\"MQ\",\"3531\",\"RDU\",\"LGA\",,,1.00,\"A\",0.00,,,431.00,,,,,,\n2015,5,15,\"MQ\",\"3531\",\"RDU\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,89.00,64.00,431.00,,,,,,\n2015,5,16,\"MQ\",\"3531\",\"RDU\",\"LGA\",114.00,120.00,0.00,\"\",0.00,100.00,67.00,431.00,1.00,0.00,6.00,0.00,113.00,\n2015,5,18,\"MQ\",\"3531\",\"RDU\",\"LGA\",228.00,234.00,0.00,\"\",0.00,100.00,69.00,431.00,0.00,0.00,229.00,0.00,5.00,\n2015,5,19,\"MQ\",\"3531\",\"RDU\",\"LGA\",84.00,107.00,0.00,\"\",0.00,117.00,62.00,431.00,0.00,0.00,107.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3531\",\"RDU\",\"LGA\",-9.00,-22.00,0.00,\"\",0.00,81.00,68.00,431.00,,,,,,\n2015,5,21,\"MQ\",\"3531\",\"RDU\",\"LGA\",100.00,88.00,0.00,\"\",0.00,82.00,63.00,431.00,0.00,0.00,0.00,0.00,88.00,\n2015,5,22,\"MQ\",\"3531\",\"RDU\",\"LGA\",95.00,80.00,0.00,\"\",0.00,79.00,59.00,431.00,2.00,0.00,0.00,0.00,78.00,\n2015,5,23,\"MQ\",\"3531\",\"RDU\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,81.00,64.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3531\",\"RDU\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,84.00,63.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3531\",\"RDU\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,93.00,68.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3531\",\"RDU\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,90.00,72.00,431.00,,,,,,\n2015,5,28,\"MQ\",\"3531\",\"RDU\",\"LGA\",-7.00,20.00,0.00,\"\",0.00,121.00,72.00,431.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3531\",\"RDU\",\"LGA\",-14.00,2.00,0.00,\"\",0.00,110.00,68.00,431.00,,,,,,\n2015,5,30,\"MQ\",\"3531\",\"RDU\",\"LGA\",-8.00,-3.00,0.00,\"\",0.00,99.00,77.00,431.00,,,,,,\n2015,5,1,\"MQ\",\"3534\",\"BNA\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,132.00,111.00,764.00,,,,,,\n2015,5,3,\"MQ\",\"3534\",\"BNA\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,131.00,102.00,764.00,,,,,,\n2015,5,4,\"MQ\",\"3534\",\"BNA\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,132.00,113.00,764.00,,,,,,\n2015,5,5,\"MQ\",\"3534\",\"BNA\",\"LGA\",-12.00,-19.00,0.00,\"\",0.00,127.00,112.00,764.00,,,,,,\n2015,5,6,\"MQ\",\"3534\",\"BNA\",\"LGA\",10.00,-5.00,0.00,\"\",0.00,119.00,104.00,764.00,,,,,,\n2015,5,7,\"MQ\",\"3534\",\"BNA\",\"LGA\",-9.00,-21.00,0.00,\"\",0.00,122.00,105.00,764.00,,,,,,\n2015,5,8,\"MQ\",\"3534\",\"BNA\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,125.00,108.00,764.00,,,,,,\n2015,5,10,\"MQ\",\"3534\",\"BNA\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,124.00,107.00,764.00,,,,,,\n2015,5,11,\"MQ\",\"3534\",\"BNA\",\"LGA\",52.00,43.00,0.00,\"\",0.00,125.00,111.00,764.00,0.00,0.00,20.00,0.00,23.00,\n2015,5,12,\"MQ\",\"3534\",\"BNA\",\"LGA\",-9.00,-13.00,0.00,\"\",0.00,130.00,102.00,764.00,,,,,,\n2015,5,13,\"MQ\",\"3534\",\"BNA\",\"LGA\",12.00,-5.00,0.00,\"\",0.00,117.00,101.00,764.00,,,,,,\n2015,5,14,\"MQ\",\"3534\",\"BNA\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,119.00,103.00,764.00,,,,,,\n2015,5,15,\"MQ\",\"3534\",\"BNA\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,118.00,102.00,764.00,,,,,,\n2015,5,17,\"MQ\",\"3534\",\"BNA\",\"LGA\",,,1.00,\"A\",0.00,,,764.00,,,,,,\n2015,5,18,\"MQ\",\"3534\",\"BNA\",\"LGA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,19,\"MQ\",\"3534\",\"BNA\",\"LGA\",54.00,40.00,0.00,\"\",0.00,120.00,100.00,764.00,0.00,0.00,4.00,0.00,36.00,\n2015,5,20,\"MQ\",\"3534\",\"BNA\",\"LGA\",35.00,23.00,0.00,\"\",0.00,122.00,95.00,764.00,7.00,0.00,0.00,0.00,16.00,\n2015,5,21,\"MQ\",\"3534\",\"BNA\",\"LGA\",94.00,81.00,0.00,\"\",0.00,121.00,96.00,764.00,0.00,0.00,0.00,0.00,81.00,\n2015,5,22,\"MQ\",\"3534\",\"BNA\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,121.00,102.00,764.00,,,,,,\n2015,5,24,\"MQ\",\"3534\",\"BNA\",\"LGA\",-12.00,-31.00,0.00,\"\",0.00,115.00,100.00,764.00,,,,,,\n2015,5,25,\"MQ\",\"3534\",\"BNA\",\"LGA\",-4.00,2.00,0.00,\"\",0.00,140.00,101.00,764.00,,,,,,\n2015,5,26,\"MQ\",\"3534\",\"BNA\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,121.00,102.00,764.00,,,,,,\n2015,5,27,\"MQ\",\"3534\",\"BNA\",\"LGA\",115.00,107.00,0.00,\"\",0.00,126.00,104.00,764.00,0.00,0.00,32.00,0.00,75.00,\n2015,5,28,\"MQ\",\"3534\",\"BNA\",\"LGA\",40.00,39.00,0.00,\"\",0.00,133.00,116.00,764.00,7.00,0.00,0.00,0.00,32.00,\n2015,5,29,\"MQ\",\"3534\",\"BNA\",\"LGA\",14.00,40.00,0.00,\"\",0.00,160.00,116.00,764.00,0.00,0.00,26.00,0.00,14.00,\n2015,5,31,\"MQ\",\"3534\",\"BNA\",\"LGA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,1,\"MQ\",\"3534\",\"LGA\",\"BNA\",-5.00,-14.00,0.00,\"\",0.00,142.00,103.00,764.00,,,,,,\n2015,5,2,\"MQ\",\"3534\",\"LGA\",\"BNA\",-11.00,-36.00,0.00,\"\",0.00,132.00,105.00,764.00,,,,,,\n2015,5,3,\"MQ\",\"3534\",\"LGA\",\"BNA\",-9.00,-27.00,0.00,\"\",0.00,133.00,101.00,764.00,,,,,,\n2015,5,4,\"MQ\",\"3534\",\"LGA\",\"BNA\",3.00,-6.00,0.00,\"\",0.00,142.00,101.00,764.00,,,,,,\n2015,5,5,\"MQ\",\"3534\",\"LGA\",\"BNA\",-6.00,-24.00,0.00,\"\",0.00,133.00,102.00,764.00,,,,,,\n2015,5,6,\"MQ\",\"3534\",\"LGA\",\"BNA\",-4.00,8.00,0.00,\"\",0.00,163.00,110.00,764.00,,,,,,\n2015,5,7,\"MQ\",\"3534\",\"LGA\",\"BNA\",-7.00,-38.00,0.00,\"\",0.00,120.00,101.00,764.00,,,,,,\n2015,5,8,\"MQ\",\"3534\",\"LGA\",\"BNA\",-4.00,-27.00,0.00,\"\",0.00,128.00,100.00,764.00,,,,,,\n2015,5,9,\"MQ\",\"3534\",\"LGA\",\"BNA\",-1.00,-20.00,0.00,\"\",0.00,132.00,100.00,764.00,,,,,,\n2015,5,10,\"MQ\",\"3534\",\"LGA\",\"BNA\",3.00,-10.00,0.00,\"\",0.00,138.00,103.00,764.00,,,,,,\n2015,5,11,\"MQ\",\"3534\",\"LGA\",\"BNA\",-8.00,32.00,0.00,\"\",0.00,191.00,112.00,764.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3534\",\"LGA\",\"BNA\",-5.00,-8.00,0.00,\"\",0.00,148.00,116.00,764.00,,,,,,\n2015,5,13,\"MQ\",\"3534\",\"LGA\",\"BNA\",-5.00,-5.00,0.00,\"\",0.00,151.00,109.00,764.00,,,,,,\n2015,5,14,\"MQ\",\"3534\",\"LGA\",\"BNA\",-6.00,-14.00,0.00,\"\",0.00,143.00,108.00,764.00,,,,,,\n2015,5,15,\"MQ\",\"3534\",\"LGA\",\"BNA\",2.00,-17.00,0.00,\"\",0.00,132.00,105.00,764.00,,,,,,\n2015,5,16,\"MQ\",\"3534\",\"LGA\",\"BNA\",-2.00,-16.00,0.00,\"\",0.00,137.00,110.00,764.00,,,,,,\n2015,5,17,\"MQ\",\"3534\",\"LGA\",\"BNA\",,,1.00,\"A\",0.00,,,764.00,,,,,,\n2015,5,18,\"MQ\",\"3534\",\"LGA\",\"BNA\",238.00,234.00,0.00,\"\",0.00,147.00,129.00,764.00,0.00,234.00,0.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3534\",\"LGA\",\"BNA\",20.00,52.00,0.00,\"\",0.00,183.00,110.00,764.00,0.00,0.00,32.00,0.00,20.00,\n2015,5,20,\"MQ\",\"3534\",\"LGA\",\"BNA\",-1.00,29.00,0.00,\"\",0.00,181.00,109.00,764.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3534\",\"LGA\",\"BNA\",92.00,101.00,0.00,\"\",0.00,160.00,117.00,764.00,9.00,0.00,9.00,0.00,83.00,\n2015,5,22,\"MQ\",\"3534\",\"LGA\",\"BNA\",-5.00,-10.00,0.00,\"\",0.00,146.00,116.00,764.00,,,,,,\n2015,5,23,\"MQ\",\"3534\",\"LGA\",\"BNA\",-7.00,-32.00,0.00,\"\",0.00,126.00,105.00,764.00,,,,,,\n2015,5,24,\"MQ\",\"3534\",\"LGA\",\"BNA\",-5.00,-8.00,0.00,\"\",0.00,148.00,109.00,764.00,,,,,,\n2015,5,25,\"MQ\",\"3534\",\"LGA\",\"BNA\",-7.00,-17.00,0.00,\"\",0.00,141.00,105.00,764.00,,,,,,\n2015,5,26,\"MQ\",\"3534\",\"LGA\",\"BNA\",-8.00,-23.00,0.00,\"\",0.00,136.00,105.00,764.00,,,,,,\n2015,5,27,\"MQ\",\"3534\",\"LGA\",\"BNA\",-7.00,85.00,0.00,\"\",0.00,243.00,114.00,764.00,0.00,0.00,85.00,0.00,0.00,\n2015,5,28,\"MQ\",\"3534\",\"LGA\",\"BNA\",58.00,37.00,0.00,\"\",0.00,130.00,107.00,764.00,12.00,0.00,0.00,0.00,25.00,\n2015,5,29,\"MQ\",\"3534\",\"LGA\",\"BNA\",36.00,28.00,0.00,\"\",0.00,143.00,103.00,764.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,30,\"MQ\",\"3534\",\"LGA\",\"BNA\",-12.00,-37.00,0.00,\"\",0.00,126.00,103.00,764.00,,,,,,\n2015,5,31,\"MQ\",\"3534\",\"LGA\",\"BNA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,1,\"MQ\",\"3501\",\"LGA\",\"RDU\",4.00,-9.00,0.00,\"\",0.00,90.00,66.00,431.00,,,,,,\n2015,5,2,\"MQ\",\"3501\",\"LGA\",\"RDU\",-15.00,-39.00,0.00,\"\",0.00,79.00,63.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3501\",\"LGA\",\"RDU\",-8.00,-30.00,0.00,\"\",0.00,81.00,61.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3501\",\"LGA\",\"RDU\",-9.00,-26.00,0.00,\"\",0.00,86.00,64.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3501\",\"LGA\",\"RDU\",-7.00,-18.00,0.00,\"\",0.00,92.00,61.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3501\",\"LGA\",\"RDU\",-5.00,9.00,0.00,\"\",0.00,117.00,66.00,431.00,,,,,,\n2015,5,1,\"MQ\",\"3504\",\"JFK\",\"CMH\",-9.00,-23.00,0.00,\"\",0.00,105.00,69.00,483.00,,,,,,\n2015,5,2,\"MQ\",\"3504\",\"JFK\",\"CMH\",-4.00,-27.00,0.00,\"\",0.00,96.00,72.00,483.00,,,,,,\n2015,5,3,\"MQ\",\"3504\",\"JFK\",\"CMH\",-8.00,-27.00,0.00,\"\",0.00,100.00,70.00,483.00,,,,,,\n2015,5,4,\"MQ\",\"3504\",\"JFK\",\"CMH\",-4.00,-12.00,0.00,\"\",0.00,111.00,73.00,483.00,,,,,,\n2015,5,5,\"MQ\",\"3504\",\"JFK\",\"CMH\",-10.00,-36.00,0.00,\"\",0.00,93.00,72.00,483.00,,,,,,\n2015,5,6,\"MQ\",\"3504\",\"JFK\",\"CMH\",-6.00,-15.00,0.00,\"\",0.00,110.00,80.00,483.00,,,,,,\n2015,5,7,\"MQ\",\"3504\",\"JFK\",\"CMH\",-3.00,-22.00,0.00,\"\",0.00,100.00,73.00,483.00,,,,,,\n2015,5,8,\"MQ\",\"3504\",\"JFK\",\"CMH\",-8.00,-12.00,0.00,\"\",0.00,115.00,65.00,483.00,,,,,,\n2015,5,9,\"MQ\",\"3504\",\"JFK\",\"CMH\",23.00,-3.00,0.00,\"\",0.00,93.00,71.00,483.00,,,,,,\n2015,5,10,\"MQ\",\"3504\",\"JFK\",\"CMH\",-9.00,-26.00,0.00,\"\",0.00,102.00,69.00,483.00,,,,,,\n2015,5,11,\"MQ\",\"3504\",\"JFK\",\"CMH\",132.00,152.00,0.00,\"\",0.00,139.00,97.00,483.00,132.00,0.00,20.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3504\",\"JFK\",\"CMH\",-8.00,-30.00,0.00,\"\",0.00,97.00,80.00,483.00,,,,,,\n2015,5,13,\"MQ\",\"3504\",\"JFK\",\"CMH\",-6.00,-15.00,0.00,\"\",0.00,110.00,78.00,483.00,,,,,,\n2015,5,14,\"MQ\",\"3504\",\"JFK\",\"CMH\",-9.00,-20.00,0.00,\"\",0.00,108.00,76.00,483.00,,,,,,\n2015,5,15,\"MQ\",\"3504\",\"JFK\",\"CMH\",119.00,109.00,0.00,\"\",0.00,109.00,83.00,483.00,78.00,0.00,0.00,0.00,31.00,\n2015,5,16,\"MQ\",\"3504\",\"JFK\",\"CMH\",-7.00,-16.00,0.00,\"\",0.00,110.00,86.00,483.00,,,,,,\n2015,5,17,\"MQ\",\"3504\",\"JFK\",\"CMH\",6.00,-7.00,0.00,\"\",0.00,106.00,70.00,483.00,,,,,,\n2015,5,18,\"MQ\",\"3504\",\"JFK\",\"CMH\",20.00,115.00,0.00,\"\",0.00,214.00,84.00,483.00,20.00,0.00,95.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3504\",\"JFK\",\"CMH\",-6.00,10.00,0.00,\"\",0.00,135.00,76.00,483.00,,,,,,\n2015,5,20,\"MQ\",\"3504\",\"JFK\",\"CMH\",-6.00,-21.00,0.00,\"\",0.00,104.00,78.00,483.00,,,,,,\n2015,5,21,\"MQ\",\"3504\",\"JFK\",\"CMH\",-9.00,-1.00,0.00,\"\",0.00,127.00,84.00,483.00,,,,,,\n2015,5,22,\"MQ\",\"3504\",\"JFK\",\"CMH\",-4.00,-8.00,0.00,\"\",0.00,115.00,78.00,483.00,,,,,,\n2015,5,23,\"MQ\",\"3504\",\"JFK\",\"CMH\",-8.00,-18.00,0.00,\"\",0.00,109.00,81.00,483.00,,,,,,\n2015,5,24,\"MQ\",\"3504\",\"JFK\",\"CMH\",-7.00,-26.00,0.00,\"\",0.00,100.00,75.00,483.00,,,,,,\n2015,5,25,\"MQ\",\"3504\",\"JFK\",\"CMH\",-3.00,-15.00,0.00,\"\",0.00,107.00,73.00,483.00,,,,,,\n2015,5,26,\"MQ\",\"3504\",\"JFK\",\"CMH\",-11.00,-31.00,0.00,\"\",0.00,99.00,72.00,483.00,,,,,,\n2015,5,27,\"MQ\",\"3504\",\"JFK\",\"CMH\",,,1.00,\"C\",0.00,,,483.00,,,,,,\n2015,5,28,\"MQ\",\"3504\",\"JFK\",\"CMH\",-6.00,-25.00,0.00,\"\",0.00,100.00,72.00,483.00,,,,,,\n2015,5,29,\"MQ\",\"3504\",\"JFK\",\"CMH\",-7.00,-19.00,0.00,\"\",0.00,107.00,70.00,483.00,,,,,,\n2015,5,30,\"MQ\",\"3504\",\"JFK\",\"CMH\",-8.00,-24.00,0.00,\"\",0.00,103.00,73.00,483.00,,,,,,\n2015,5,31,\"MQ\",\"3504\",\"JFK\",\"CMH\",,,1.00,\"C\",0.00,,,483.00,,,,,,\n2015,5,1,\"MQ\",\"3505\",\"CVG\",\"JFK\",-1.00,16.00,0.00,\"\",0.00,141.00,106.00,589.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,2,\"MQ\",\"3505\",\"CVG\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,118.00,102.00,589.00,,,,,,\n2015,5,3,\"MQ\",\"3505\",\"CVG\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,131.00,107.00,589.00,,,,,,\n2015,5,4,\"MQ\",\"3505\",\"CVG\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,123.00,94.00,589.00,,,,,,\n2015,5,5,\"MQ\",\"3505\",\"CVG\",\"JFK\",0.00,5.00,0.00,\"\",0.00,129.00,94.00,589.00,,,,,,\n2015,5,6,\"MQ\",\"3505\",\"CVG\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,108.00,94.00,589.00,,,,,,\n2015,5,7,\"MQ\",\"3505\",\"CVG\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,112.00,95.00,589.00,,,,,,\n2015,5,8,\"MQ\",\"3505\",\"CVG\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,119.00,99.00,589.00,,,,,,\n2015,5,9,\"MQ\",\"3505\",\"CVG\",\"JFK\",-2.00,-2.00,0.00,\"\",0.00,124.00,96.00,589.00,,,,,,\n2015,5,10,\"MQ\",\"3505\",\"CVG\",\"JFK\",20.00,8.00,0.00,\"\",0.00,112.00,97.00,589.00,,,,,,\n2015,5,11,\"MQ\",\"3505\",\"CVG\",\"JFK\",85.00,76.00,0.00,\"\",0.00,115.00,95.00,589.00,0.00,0.00,0.00,0.00,76.00,\n2015,5,12,\"MQ\",\"3505\",\"CVG\",\"JFK\",121.00,116.00,0.00,\"\",0.00,119.00,85.00,589.00,0.00,0.00,116.00,0.00,0.00,\n2015,5,13,\"MQ\",\"3505\",\"CVG\",\"JFK\",0.00,10.00,0.00,\"\",0.00,134.00,95.00,589.00,,,,,,\n2015,5,14,\"MQ\",\"3505\",\"CVG\",\"JFK\",11.00,-7.00,0.00,\"\",0.00,106.00,93.00,589.00,,,,,,\n2015,5,15,\"MQ\",\"3505\",\"CVG\",\"JFK\",0.00,-7.00,0.00,\"\",0.00,117.00,97.00,589.00,,,,,,\n2015,5,16,\"MQ\",\"3505\",\"CVG\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,119.00,98.00,589.00,,,,,,\n2015,5,17,\"MQ\",\"3505\",\"CVG\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,115.00,95.00,589.00,,,,,,\n2015,5,18,\"MQ\",\"3505\",\"CVG\",\"JFK\",,,1.00,\"C\",0.00,,,589.00,,,,,,\n2015,5,19,\"MQ\",\"3505\",\"CVG\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,109.00,95.00,589.00,,,,,,\n2015,5,20,\"MQ\",\"3505\",\"CVG\",\"JFK\",-6.00,-15.00,0.00,\"\",0.00,115.00,93.00,589.00,,,,,,\n2015,5,21,\"MQ\",\"3505\",\"CVG\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,116.00,93.00,589.00,,,,,,\n2015,5,22,\"MQ\",\"3505\",\"CVG\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,107.00,92.00,589.00,,,,,,\n2015,5,23,\"MQ\",\"3505\",\"CVG\",\"JFK\",-1.00,-20.00,0.00,\"\",0.00,105.00,92.00,589.00,,,,,,\n2015,5,24,\"MQ\",\"3505\",\"CVG\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,115.00,95.00,589.00,,,,,,\n2015,5,25,\"MQ\",\"3505\",\"CVG\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,108.00,93.00,589.00,,,,,,\n2015,5,26,\"MQ\",\"3505\",\"CVG\",\"JFK\",6.00,-7.00,0.00,\"\",0.00,111.00,95.00,589.00,,,,,,\n2015,5,27,\"MQ\",\"3505\",\"CVG\",\"JFK\",,,1.00,\"C\",0.00,,,589.00,,,,,,\n2015,5,28,\"MQ\",\"3505\",\"CVG\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,110.00,95.00,589.00,,,,,,\n2015,5,29,\"MQ\",\"3505\",\"CVG\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,117.00,98.00,589.00,,,,,,\n2015,5,30,\"MQ\",\"3505\",\"CVG\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,120.00,99.00,589.00,,,,,,\n2015,5,31,\"MQ\",\"3505\",\"CVG\",\"JFK\",-3.00,45.00,0.00,\"\",0.00,172.00,128.00,589.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3512\",\"DTW\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,90.00,74.00,502.00,,,,,,\n2015,5,8,\"MQ\",\"3512\",\"DTW\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,98.00,77.00,502.00,,,,,,\n2015,5,9,\"MQ\",\"3512\",\"DTW\",\"LGA\",63.00,49.00,0.00,\"\",0.00,87.00,73.00,502.00,0.00,0.00,0.00,49.00,0.00,\n2015,5,10,\"MQ\",\"3512\",\"DTW\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,94.00,79.00,502.00,,,,,,\n2015,5,11,\"MQ\",\"3512\",\"DTW\",\"LGA\",101.00,99.00,0.00,\"\",0.00,100.00,79.00,502.00,0.00,0.00,49.00,0.00,50.00,\n2015,5,12,\"MQ\",\"3512\",\"DTW\",\"LGA\",79.00,80.00,0.00,\"\",0.00,103.00,74.00,502.00,79.00,0.00,1.00,0.00,0.00,\n2015,5,13,\"MQ\",\"3512\",\"DTW\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,104.00,66.00,502.00,,,,,,\n2015,5,14,\"MQ\",\"3512\",\"DTW\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,89.00,74.00,502.00,,,,,,\n2015,5,15,\"MQ\",\"3512\",\"DTW\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,96.00,78.00,502.00,,,,,,\n2015,5,16,\"MQ\",\"3512\",\"DTW\",\"LGA\",-4.00,0.00,0.00,\"\",0.00,105.00,77.00,502.00,,,,,,\n2015,5,17,\"MQ\",\"3512\",\"DTW\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,103.00,81.00,502.00,,,,,,\n2015,5,18,\"MQ\",\"3512\",\"DTW\",\"LGA\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,19,\"MQ\",\"3512\",\"DTW\",\"LGA\",26.00,20.00,0.00,\"\",0.00,96.00,73.00,502.00,0.00,0.00,5.00,0.00,15.00,\n2015,5,20,\"MQ\",\"3512\",\"DTW\",\"LGA\",-1.00,32.00,0.00,\"\",0.00,135.00,69.00,502.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3512\",\"DTW\",\"LGA\",-6.00,-1.00,0.00,\"\",0.00,107.00,78.00,502.00,,,,,,\n2015,5,22,\"MQ\",\"3512\",\"DTW\",\"LGA\",,,1.00,\"A\",0.00,,,502.00,,,,,,\n2015,5,23,\"MQ\",\"3512\",\"DTW\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,91.00,71.00,502.00,,,,,,\n2015,5,24,\"MQ\",\"3512\",\"DTW\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,91.00,69.00,502.00,,,,,,\n2015,5,25,\"MQ\",\"3512\",\"DTW\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,91.00,73.00,502.00,,,,,,\n2015,5,26,\"MQ\",\"3512\",\"DTW\",\"LGA\",-9.00,3.00,0.00,\"\",0.00,114.00,81.00,502.00,,,,,,\n2015,5,27,\"MQ\",\"3512\",\"DTW\",\"LGA\",248.00,241.00,0.00,\"\",0.00,95.00,76.00,502.00,0.00,0.00,178.00,0.00,63.00,\n2015,5,28,\"MQ\",\"3512\",\"DTW\",\"LGA\",5.00,8.00,0.00,\"\",0.00,105.00,77.00,502.00,,,,,,\n2015,5,29,\"MQ\",\"3512\",\"DTW\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,102.00,76.00,502.00,,,,,,\n2015,5,30,\"MQ\",\"3512\",\"DTW\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,106.00,83.00,502.00,,,,,,\n2015,5,31,\"MQ\",\"3512\",\"DTW\",\"LGA\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,7,\"MQ\",\"3512\",\"LGA\",\"DTW\",-1.00,-17.00,0.00,\"\",0.00,101.00,73.00,502.00,,,,,,\n2015,5,8,\"MQ\",\"3512\",\"LGA\",\"DTW\",1.00,2.00,0.00,\"\",0.00,118.00,78.00,502.00,,,,,,\n2015,5,9,\"MQ\",\"3512\",\"LGA\",\"DTW\",-8.00,-28.00,0.00,\"\",0.00,97.00,74.00,502.00,,,,,,\n2015,5,10,\"MQ\",\"3512\",\"LGA\",\"DTW\",-1.00,-16.00,0.00,\"\",0.00,102.00,77.00,502.00,,,,,,\n2015,5,11,\"MQ\",\"3512\",\"LGA\",\"DTW\",21.00,59.00,0.00,\"\",0.00,155.00,102.00,502.00,21.00,0.00,38.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3512\",\"LGA\",\"DTW\",-2.00,-13.00,0.00,\"\",0.00,106.00,83.00,502.00,,,,,,\n2015,5,13,\"MQ\",\"3512\",\"LGA\",\"DTW\",-5.00,2.00,0.00,\"\",0.00,124.00,90.00,502.00,,,,,,\n2015,5,14,\"MQ\",\"3512\",\"LGA\",\"DTW\",-1.00,5.00,0.00,\"\",0.00,123.00,88.00,502.00,,,,,,\n2015,5,15,\"MQ\",\"3512\",\"LGA\",\"DTW\",-7.00,-16.00,0.00,\"\",0.00,108.00,80.00,502.00,,,,,,\n2015,5,16,\"MQ\",\"3512\",\"LGA\",\"DTW\",-5.00,-23.00,0.00,\"\",0.00,99.00,80.00,502.00,,,,,,\n2015,5,17,\"MQ\",\"3512\",\"LGA\",\"DTW\",-5.00,-15.00,0.00,\"\",0.00,107.00,77.00,502.00,,,,,,\n2015,5,18,\"MQ\",\"3512\",\"LGA\",\"DTW\",203.00,216.00,0.00,\"\",0.00,130.00,93.00,502.00,45.00,0.00,13.00,0.00,158.00,\n2015,5,19,\"MQ\",\"3512\",\"LGA\",\"DTW\",31.00,28.00,0.00,\"\",0.00,114.00,81.00,502.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3512\",\"LGA\",\"DTW\",-8.00,-15.00,0.00,\"\",0.00,110.00,84.00,502.00,,,,,,\n2015,5,21,\"MQ\",\"3512\",\"LGA\",\"DTW\",-3.00,-14.00,0.00,\"\",0.00,106.00,82.00,502.00,,,,,,\n2015,5,22,\"MQ\",\"3512\",\"LGA\",\"DTW\",-1.00,-6.00,0.00,\"\",0.00,112.00,84.00,502.00,,,,,,\n2015,5,23,\"MQ\",\"3512\",\"LGA\",\"DTW\",-4.00,-19.00,0.00,\"\",0.00,102.00,80.00,502.00,,,,,,\n2015,5,24,\"MQ\",\"3512\",\"LGA\",\"DTW\",-3.00,-12.00,0.00,\"\",0.00,108.00,83.00,502.00,,,,,,\n2015,5,25,\"MQ\",\"3512\",\"LGA\",\"DTW\",-2.00,-3.00,0.00,\"\",0.00,116.00,78.00,502.00,,,,,,\n2015,5,26,\"MQ\",\"3512\",\"LGA\",\"DTW\",-9.00,-10.00,0.00,\"\",0.00,116.00,81.00,502.00,,,,,,\n2015,5,27,\"MQ\",\"3512\",\"LGA\",\"DTW\",-10.00,73.00,0.00,\"\",0.00,200.00,98.00,502.00,0.00,0.00,73.00,0.00,0.00,\n2015,5,28,\"MQ\",\"3512\",\"LGA\",\"DTW\",9.00,2.00,0.00,\"\",0.00,110.00,83.00,502.00,,,,,,\n2015,5,29,\"MQ\",\"3512\",\"LGA\",\"DTW\",-9.00,-5.00,0.00,\"\",0.00,121.00,85.00,502.00,,,,,,\n2015,5,30,\"MQ\",\"3512\",\"LGA\",\"DTW\",2.00,-16.00,0.00,\"\",0.00,99.00,79.00,502.00,,,,,,\n2015,5,31,\"MQ\",\"3512\",\"LGA\",\"DTW\",-5.00,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,1,\"MQ\",\"3522\",\"SYR\",\"ORD\",-7.00,-31.00,0.00,\"\",0.00,108.00,87.00,607.00,,,,,,\n2015,5,2,\"MQ\",\"3522\",\"SYR\",\"ORD\",-4.00,-20.00,0.00,\"\",0.00,116.00,89.00,607.00,,,,,,\n2015,5,3,\"MQ\",\"3522\",\"SYR\",\"ORD\",-13.00,-24.00,0.00,\"\",0.00,121.00,94.00,607.00,,,,,,\n2015,5,4,\"MQ\",\"3522\",\"SYR\",\"ORD\",-5.00,-4.00,0.00,\"\",0.00,133.00,103.00,607.00,,,,,,\n2015,5,5,\"MQ\",\"3522\",\"SYR\",\"ORD\",-8.00,-9.00,0.00,\"\",0.00,131.00,109.00,607.00,,,,,,\n2015,5,6,\"MQ\",\"3522\",\"SYR\",\"ORD\",-1.00,-18.00,0.00,\"\",0.00,115.00,97.00,607.00,,,,,,\n2015,5,7,\"MQ\",\"3522\",\"SYR\",\"ORD\",-8.00,-28.00,0.00,\"\",0.00,112.00,91.00,607.00,,,,,,\n2015,5,8,\"MQ\",\"3522\",\"SYR\",\"ORD\",-8.00,-23.00,0.00,\"\",0.00,117.00,94.00,607.00,,,,,,\n2015,5,9,\"MQ\",\"3522\",\"SYR\",\"ORD\",-3.00,7.00,0.00,\"\",0.00,142.00,100.00,607.00,,,,,,\n2015,5,10,\"MQ\",\"3522\",\"SYR\",\"ORD\",-9.00,-4.00,0.00,\"\",0.00,137.00,103.00,607.00,,,,,,\n2015,5,11,\"MQ\",\"3522\",\"SYR\",\"ORD\",-8.00,-10.00,0.00,\"\",0.00,130.00,99.00,607.00,,,,,,\n2015,5,12,\"MQ\",\"3522\",\"SYR\",\"ORD\",-6.00,12.00,0.00,\"\",0.00,150.00,106.00,607.00,,,,,,\n2015,5,13,\"MQ\",\"3522\",\"SYR\",\"ORD\",-3.00,-11.00,0.00,\"\",0.00,124.00,99.00,607.00,,,,,,\n2015,5,14,\"MQ\",\"3522\",\"SYR\",\"ORD\",-8.00,12.00,0.00,\"\",0.00,152.00,116.00,607.00,,,,,,\n2015,5,15,\"MQ\",\"3522\",\"SYR\",\"ORD\",2.00,4.00,0.00,\"\",0.00,134.00,106.00,607.00,,,,,,\n2015,5,16,\"MQ\",\"3522\",\"SYR\",\"ORD\",-6.00,-11.00,0.00,\"\",0.00,127.00,104.00,607.00,,,,,,\n2015,5,17,\"MQ\",\"3522\",\"SYR\",\"ORD\",-11.00,-16.00,0.00,\"\",0.00,127.00,89.00,607.00,,,,,,\n2015,5,18,\"MQ\",\"3522\",\"SYR\",\"ORD\",-8.00,-15.00,0.00,\"\",0.00,125.00,102.00,607.00,,,,,,\n2015,5,19,\"MQ\",\"3522\",\"SYR\",\"ORD\",-5.00,-10.00,0.00,\"\",0.00,127.00,99.00,607.00,,,,,,\n2015,5,20,\"MQ\",\"3522\",\"SYR\",\"ORD\",-9.00,6.00,0.00,\"\",0.00,147.00,108.00,607.00,,,,,,\n2015,5,21,\"MQ\",\"3522\",\"SYR\",\"ORD\",-4.00,6.00,0.00,\"\",0.00,142.00,101.00,607.00,,,,,,\n2015,5,22,\"MQ\",\"3522\",\"SYR\",\"ORD\",-10.00,-20.00,0.00,\"\",0.00,122.00,99.00,607.00,,,,,,\n2015,5,23,\"MQ\",\"3522\",\"SYR\",\"ORD\",-13.00,-20.00,0.00,\"\",0.00,125.00,94.00,607.00,,,,,,\n2015,5,24,\"MQ\",\"3522\",\"SYR\",\"ORD\",27.00,2.00,0.00,\"\",0.00,107.00,93.00,607.00,,,,,,\n2015,5,25,\"MQ\",\"3522\",\"SYR\",\"ORD\",-3.00,-5.00,0.00,\"\",0.00,130.00,104.00,607.00,,,,,,\n2015,5,26,\"MQ\",\"3522\",\"SYR\",\"ORD\",-8.00,-22.00,0.00,\"\",0.00,118.00,94.00,607.00,,,,,,\n2015,5,27,\"MQ\",\"3522\",\"SYR\",\"ORD\",-5.00,-7.00,0.00,\"\",0.00,130.00,104.00,607.00,,,,,,\n2015,5,28,\"MQ\",\"3522\",\"SYR\",\"ORD\",-6.00,-19.00,0.00,\"\",0.00,119.00,93.00,607.00,,,,,,\n2015,5,29,\"MQ\",\"3522\",\"SYR\",\"ORD\",-9.00,-27.00,0.00,\"\",0.00,114.00,93.00,607.00,,,,,,\n2015,5,30,\"MQ\",\"3522\",\"SYR\",\"ORD\",-5.00,-14.00,0.00,\"\",0.00,123.00,100.00,607.00,,,,,,\n2015,5,31,\"MQ\",\"3522\",\"SYR\",\"ORD\",-5.00,-7.00,0.00,\"\",0.00,130.00,106.00,607.00,,,,,,\n2015,5,1,\"MQ\",\"3526\",\"LGA\",\"CMH\",34.00,15.00,0.00,\"\",0.00,94.00,69.00,479.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,3,\"MQ\",\"3526\",\"LGA\",\"CMH\",-3.00,-25.00,0.00,\"\",0.00,91.00,72.00,479.00,,,,,,\n2015,5,4,\"MQ\",\"3526\",\"LGA\",\"CMH\",0.00,-21.00,0.00,\"\",0.00,92.00,71.00,479.00,,,,,,\n2015,5,5,\"MQ\",\"3526\",\"LGA\",\"CMH\",-10.00,-14.00,0.00,\"\",0.00,109.00,71.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3526\",\"LGA\",\"CMH\",2.00,27.00,0.00,\"\",0.00,138.00,71.00,479.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3526\",\"LGA\",\"CMH\",15.00,-6.00,0.00,\"\",0.00,92.00,73.00,479.00,,,,,,\n2015,5,8,\"MQ\",\"3526\",\"LGA\",\"CMH\",-4.00,-27.00,0.00,\"\",0.00,90.00,68.00,479.00,,,,,,\n2015,5,10,\"MQ\",\"3526\",\"LGA\",\"CMH\",-9.00,-35.00,0.00,\"\",0.00,87.00,67.00,479.00,,,,,,\n2015,5,11,\"MQ\",\"3526\",\"LGA\",\"CMH\",0.00,-4.00,0.00,\"\",0.00,109.00,89.00,479.00,,,,,,\n2015,5,12,\"MQ\",\"3526\",\"LGA\",\"CMH\",-9.00,-23.00,0.00,\"\",0.00,99.00,81.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3526\",\"LGA\",\"CMH\",-8.00,-8.00,0.00,\"\",0.00,113.00,75.00,479.00,,,,,,\n2015,5,14,\"MQ\",\"3526\",\"LGA\",\"CMH\",18.00,2.00,0.00,\"\",0.00,97.00,75.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3526\",\"LGA\",\"CMH\",-5.00,-9.00,0.00,\"\",0.00,109.00,78.00,479.00,,,,,,\n2015,5,17,\"MQ\",\"3526\",\"LGA\",\"CMH\",0.00,0.00,0.00,\"\",0.00,113.00,76.00,479.00,,,,,,\n2015,5,18,\"MQ\",\"3526\",\"LGA\",\"CMH\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,19,\"MQ\",\"3526\",\"LGA\",\"CMH\",-6.00,-7.00,0.00,\"\",0.00,112.00,74.00,479.00,,,,,,\n2015,5,20,\"MQ\",\"3526\",\"LGA\",\"CMH\",-9.00,22.00,0.00,\"\",0.00,144.00,77.00,479.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3526\",\"LGA\",\"CMH\",22.00,33.00,0.00,\"\",0.00,124.00,84.00,479.00,0.00,0.00,11.00,0.00,22.00,\n2015,5,22,\"MQ\",\"3526\",\"LGA\",\"CMH\",-4.00,-17.00,0.00,\"\",0.00,100.00,77.00,479.00,,,,,,\n2015,5,24,\"MQ\",\"3526\",\"LGA\",\"CMH\",24.00,6.00,0.00,\"\",0.00,95.00,77.00,479.00,,,,,,\n2015,5,25,\"MQ\",\"3526\",\"LGA\",\"CMH\",-10.00,-21.00,0.00,\"\",0.00,102.00,74.00,479.00,,,,,,\n2015,5,26,\"MQ\",\"3526\",\"LGA\",\"CMH\",-8.00,-22.00,0.00,\"\",0.00,99.00,72.00,479.00,,,,,,\n2015,5,27,\"MQ\",\"3526\",\"LGA\",\"CMH\",83.00,136.00,0.00,\"\",0.00,166.00,76.00,479.00,0.00,0.00,53.00,0.00,83.00,\n2015,5,28,\"MQ\",\"3526\",\"LGA\",\"CMH\",-10.00,-25.00,0.00,\"\",0.00,98.00,74.00,479.00,,,,,,\n2015,5,29,\"MQ\",\"3526\",\"LGA\",\"CMH\",11.00,13.00,0.00,\"\",0.00,115.00,70.00,479.00,,,,,,\n2015,5,31,\"MQ\",\"3526\",\"LGA\",\"CMH\",186.00,246.00,0.00,\"\",0.00,173.00,93.00,479.00,0.00,186.00,60.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3530\",\"DTW\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,105.00,79.00,502.00,,,,,,\n2015,5,2,\"MQ\",\"3530\",\"DTW\",\"LGA\",-8.00,-14.00,0.00,\"\",0.00,95.00,80.00,502.00,,,,,,\n2015,5,3,\"MQ\",\"3530\",\"DTW\",\"LGA\",-9.00,-17.00,0.00,\"\",0.00,94.00,74.00,502.00,,,,,,\n2015,5,4,\"MQ\",\"3530\",\"DTW\",\"LGA\",52.00,42.00,0.00,\"\",0.00,92.00,75.00,502.00,3.00,0.00,0.00,0.00,39.00,\n2015,5,5,\"MQ\",\"3530\",\"DTW\",\"LGA\",-8.00,1.00,0.00,\"\",0.00,111.00,77.00,502.00,,,,,,\n2015,5,6,\"MQ\",\"3530\",\"DTW\",\"LGA\",-7.00,1.00,0.00,\"\",0.00,110.00,69.00,502.00,,,,,,\n2015,5,1,\"MQ\",\"3530\",\"LGA\",\"DTW\",-1.00,-21.00,0.00,\"\",0.00,97.00,80.00,502.00,,,,,,\n2015,5,2,\"MQ\",\"3530\",\"LGA\",\"DTW\",-10.00,-31.00,0.00,\"\",0.00,96.00,76.00,502.00,,,,,,\n2015,5,3,\"MQ\",\"3530\",\"LGA\",\"DTW\",-12.00,-28.00,0.00,\"\",0.00,101.00,78.00,502.00,,,,,,\n2015,5,4,\"MQ\",\"3530\",\"LGA\",\"DTW\",55.00,56.00,0.00,\"\",0.00,118.00,76.00,502.00,55.00,0.00,1.00,0.00,0.00,\n2015,5,5,\"MQ\",\"3530\",\"LGA\",\"DTW\",-9.00,-21.00,0.00,\"\",0.00,105.00,82.00,502.00,,,,,,\n2015,5,6,\"MQ\",\"3530\",\"LGA\",\"DTW\",-10.00,-19.00,0.00,\"\",0.00,108.00,79.00,502.00,,,,,,\n2015,5,1,\"MQ\",\"3531\",\"LGA\",\"RDU\",91.00,103.00,0.00,\"\",0.00,105.00,75.00,431.00,91.00,0.00,12.00,0.00,0.00,\n2015,5,2,\"MQ\",\"3531\",\"LGA\",\"RDU\",-10.00,-20.00,0.00,\"\",0.00,83.00,68.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3531\",\"LGA\",\"RDU\",-10.00,-21.00,0.00,\"\",0.00,82.00,65.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3531\",\"LGA\",\"RDU\",13.00,5.00,0.00,\"\",0.00,85.00,64.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3531\",\"LGA\",\"RDU\",-7.00,-12.00,0.00,\"\",0.00,88.00,64.00,431.00,,,,,,\n2015,5,7,\"MQ\",\"3531\",\"LGA\",\"RDU\",-7.00,-13.00,0.00,\"\",0.00,87.00,69.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3531\",\"LGA\",\"RDU\",-1.00,13.00,0.00,\"\",0.00,107.00,68.00,431.00,,,,,,\n2015,5,9,\"MQ\",\"3531\",\"LGA\",\"RDU\",-2.00,-7.00,0.00,\"\",0.00,88.00,70.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3531\",\"LGA\",\"RDU\",-7.00,-13.00,0.00,\"\",0.00,87.00,71.00,431.00,,,,,,\n2015,5,12,\"MQ\",\"3531\",\"LGA\",\"RDU\",,,1.00,\"C\",0.00,,,431.00,,,,,,\n2015,5,13,\"MQ\",\"3531\",\"LGA\",\"RDU\",,,1.00,\"A\",0.00,,,431.00,,,,,,\n2015,5,14,\"MQ\",\"3531\",\"LGA\",\"RDU\",,,1.00,\"A\",0.00,,,431.00,,,,,,\n2015,5,15,\"MQ\",\"3531\",\"LGA\",\"RDU\",-2.00,-2.00,0.00,\"\",0.00,93.00,80.00,431.00,,,,,,\n2015,5,16,\"MQ\",\"3531\",\"LGA\",\"RDU\",106.00,110.00,0.00,\"\",0.00,97.00,63.00,431.00,106.00,0.00,4.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3560\",\"CMH\",\"LGA\",6.00,4.00,0.00,\"\",0.00,92.00,79.00,479.00,,,,,,\n2015,5,8,\"MQ\",\"3560\",\"CMH\",\"LGA\",25.00,45.00,0.00,\"\",0.00,114.00,88.00,479.00,25.00,0.00,20.00,0.00,0.00,\n2015,5,11,\"MQ\",\"3560\",\"CMH\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,100.00,76.00,479.00,,,,,,\n2015,5,12,\"MQ\",\"3560\",\"CMH\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,92.00,71.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3560\",\"CMH\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,79.00,64.00,479.00,,,,,,\n2015,5,14,\"MQ\",\"3560\",\"CMH\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,96.00,75.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3560\",\"CMH\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,85.00,68.00,479.00,,,,,,\n2015,5,18,\"MQ\",\"3560\",\"CMH\",\"LGA\",-3.00,,0.00,\"\",1.00,,,479.00,,,,,,\n2015,5,19,\"MQ\",\"3560\",\"CMH\",\"LGA\",-8.00,1.00,0.00,\"\",0.00,103.00,76.00,479.00,,,,,,\n2015,5,20,\"MQ\",\"3560\",\"CMH\",\"LGA\",11.00,2.00,0.00,\"\",0.00,85.00,70.00,479.00,,,,,,\n2015,5,21,\"MQ\",\"3560\",\"CMH\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,88.00,67.00,479.00,,,,,,\n2015,5,22,\"MQ\",\"3560\",\"CMH\",\"LGA\",-8.00,-23.00,0.00,\"\",0.00,79.00,66.00,479.00,,,,,,\n2015,5,25,\"MQ\",\"3560\",\"CMH\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,88.00,67.00,479.00,,,,,,\n2015,5,26,\"MQ\",\"3560\",\"CMH\",\"LGA\",10.00,9.00,0.00,\"\",0.00,93.00,73.00,479.00,,,,,,\n2015,5,27,\"MQ\",\"3560\",\"CMH\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,96.00,73.00,479.00,,,,,,\n2015,5,28,\"MQ\",\"3560\",\"CMH\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,96.00,74.00,479.00,,,,,,\n2015,5,29,\"MQ\",\"3560\",\"CMH\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,92.00,75.00,479.00,,,,,,\n2015,5,7,\"MQ\",\"3562\",\"ORD\",\"SYR\",0.00,-18.00,0.00,\"\",0.00,97.00,84.00,607.00,,,,,,\n2015,5,8,\"MQ\",\"3562\",\"ORD\",\"SYR\",8.00,10.00,0.00,\"\",0.00,117.00,84.00,607.00,,,,,,\n2015,5,9,\"MQ\",\"3562\",\"ORD\",\"SYR\",12.00,-7.00,0.00,\"\",0.00,96.00,78.00,607.00,,,,,,\n2015,5,10,\"MQ\",\"3562\",\"ORD\",\"SYR\",-4.00,7.00,0.00,\"\",0.00,126.00,93.00,607.00,,,,,,\n2015,5,11,\"MQ\",\"3562\",\"ORD\",\"SYR\",50.00,57.00,0.00,\"\",0.00,122.00,87.00,607.00,32.00,0.00,7.00,0.00,18.00,\n2015,5,12,\"MQ\",\"3562\",\"ORD\",\"SYR\",-3.00,-26.00,0.00,\"\",0.00,92.00,74.00,607.00,,,,,,\n2015,5,13,\"MQ\",\"3562\",\"ORD\",\"SYR\",-4.00,-28.00,0.00,\"\",0.00,91.00,77.00,607.00,,,,,,\n2015,5,14,\"MQ\",\"3562\",\"ORD\",\"SYR\",-3.00,-27.00,0.00,\"\",0.00,91.00,79.00,607.00,,,,,,\n2015,5,15,\"MQ\",\"3562\",\"ORD\",\"SYR\",31.00,9.00,0.00,\"\",0.00,93.00,77.00,607.00,,,,,,\n2015,5,16,\"MQ\",\"3562\",\"ORD\",\"SYR\",1.00,-12.00,0.00,\"\",0.00,102.00,80.00,607.00,,,,,,\n2015,5,17,\"MQ\",\"3562\",\"ORD\",\"SYR\",12.00,9.00,0.00,\"\",0.00,112.00,82.00,607.00,,,,,,\n2015,5,18,\"MQ\",\"3562\",\"ORD\",\"SYR\",40.00,35.00,0.00,\"\",0.00,110.00,83.00,607.00,0.00,35.00,0.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3562\",\"ORD\",\"SYR\",-1.00,-16.00,0.00,\"\",0.00,100.00,80.00,607.00,,,,,,\n2015,5,20,\"MQ\",\"3562\",\"ORD\",\"SYR\",-3.00,-27.00,0.00,\"\",0.00,91.00,75.00,607.00,,,,,,\n2015,5,21,\"MQ\",\"3562\",\"ORD\",\"SYR\",-3.00,-20.00,0.00,\"\",0.00,98.00,80.00,607.00,,,,,,\n2015,5,22,\"MQ\",\"3562\",\"ORD\",\"SYR\",-9.00,-14.00,0.00,\"\",0.00,110.00,79.00,607.00,,,,,,\n2015,5,23,\"MQ\",\"3562\",\"ORD\",\"SYR\",56.00,46.00,0.00,\"\",0.00,105.00,77.00,607.00,46.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"MQ\",\"3562\",\"ORD\",\"SYR\",-1.00,-21.00,0.00,\"\",0.00,95.00,78.00,607.00,,,,,,\n2015,5,25,\"MQ\",\"3562\",\"ORD\",\"SYR\",-3.00,-22.00,0.00,\"\",0.00,96.00,77.00,607.00,,,,,,\n2015,5,26,\"MQ\",\"3562\",\"ORD\",\"SYR\",0.00,11.00,0.00,\"\",0.00,126.00,84.00,607.00,,,,,,\n2015,5,27,\"MQ\",\"3562\",\"ORD\",\"SYR\",-3.00,6.00,0.00,\"\",0.00,124.00,79.00,607.00,,,,,,\n2015,5,28,\"MQ\",\"3562\",\"ORD\",\"SYR\",78.00,56.00,0.00,\"\",0.00,93.00,77.00,607.00,0.00,0.00,0.00,0.00,56.00,\n2015,5,29,\"MQ\",\"3562\",\"ORD\",\"SYR\",11.00,-10.00,0.00,\"\",0.00,94.00,78.00,607.00,,,,,,\n2015,5,30,\"MQ\",\"3562\",\"ORD\",\"SYR\",-1.00,-19.00,0.00,\"\",0.00,97.00,83.00,607.00,,,,,,\n2015,5,31,\"MQ\",\"3562\",\"ORD\",\"SYR\",15.00,3.00,0.00,\"\",0.00,103.00,79.00,607.00,,,,,,\n2015,5,7,\"MQ\",\"3562\",\"SYR\",\"ORD\",-3.00,-26.00,0.00,\"\",0.00,107.00,88.00,607.00,,,,,,\n2015,5,8,\"MQ\",\"3562\",\"SYR\",\"ORD\",,,1.00,\"C\",0.00,,,607.00,,,,,,\n2015,5,9,\"MQ\",\"3562\",\"SYR\",\"ORD\",-6.00,-18.00,0.00,\"\",0.00,118.00,92.00,607.00,,,,,,\n2015,5,10,\"MQ\",\"3562\",\"SYR\",\"ORD\",5.00,42.00,0.00,\"\",0.00,167.00,99.00,607.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,11,\"MQ\",\"3562\",\"SYR\",\"ORD\",83.00,73.00,0.00,\"\",0.00,120.00,97.00,607.00,0.00,23.00,0.00,0.00,50.00,\n2015,5,12,\"MQ\",\"3562\",\"SYR\",\"ORD\",-7.00,-23.00,0.00,\"\",0.00,114.00,99.00,607.00,,,,,,\n2015,5,13,\"MQ\",\"3562\",\"SYR\",\"ORD\",-7.00,-14.00,0.00,\"\",0.00,123.00,101.00,607.00,,,,,,\n2015,5,14,\"MQ\",\"3562\",\"SYR\",\"ORD\",-9.00,-14.00,0.00,\"\",0.00,125.00,101.00,607.00,,,,,,\n2015,5,15,\"MQ\",\"3562\",\"SYR\",\"ORD\",17.00,9.00,0.00,\"\",0.00,122.00,95.00,607.00,,,,,,\n2015,5,16,\"MQ\",\"3562\",\"SYR\",\"ORD\",-6.00,-12.00,0.00,\"\",0.00,124.00,93.00,607.00,,,,,,\n2015,5,17,\"MQ\",\"3562\",\"SYR\",\"ORD\",12.00,0.00,0.00,\"\",0.00,118.00,90.00,607.00,,,,,,\n2015,5,18,\"MQ\",\"3562\",\"SYR\",\"ORD\",40.00,40.00,0.00,\"\",0.00,130.00,100.00,607.00,5.00,0.00,0.00,0.00,35.00,\n2015,5,19,\"MQ\",\"3562\",\"SYR\",\"ORD\",-9.00,-5.00,0.00,\"\",0.00,134.00,103.00,607.00,,,,,,\n2015,5,20,\"MQ\",\"3562\",\"SYR\",\"ORD\",-6.00,7.00,0.00,\"\",0.00,143.00,113.00,607.00,,,,,,\n2015,5,21,\"MQ\",\"3562\",\"SYR\",\"ORD\",-5.00,-19.00,0.00,\"\",0.00,116.00,93.00,607.00,,,,,,\n2015,5,22,\"MQ\",\"3562\",\"SYR\",\"ORD\",-9.00,-5.00,0.00,\"\",0.00,134.00,104.00,607.00,,,,,,\n2015,5,23,\"MQ\",\"3562\",\"SYR\",\"ORD\",49.00,32.00,0.00,\"\",0.00,113.00,95.00,607.00,2.00,0.00,0.00,0.00,30.00,\n2015,5,24,\"MQ\",\"3562\",\"SYR\",\"ORD\",-3.00,-5.00,0.00,\"\",0.00,128.00,105.00,607.00,,,,,,\n2015,5,25,\"MQ\",\"3562\",\"SYR\",\"ORD\",-3.00,-16.00,0.00,\"\",0.00,117.00,95.00,607.00,,,,,,\n2015,5,26,\"MQ\",\"3562\",\"SYR\",\"ORD\",25.00,77.00,0.00,\"\",0.00,182.00,97.00,607.00,14.00,0.00,52.00,0.00,11.00,\n2015,5,27,\"MQ\",\"3562\",\"SYR\",\"ORD\",11.00,7.00,0.00,\"\",0.00,126.00,96.00,607.00,,,,,,\n2015,5,28,\"MQ\",\"3562\",\"SYR\",\"ORD\",57.00,55.00,0.00,\"\",0.00,128.00,97.00,607.00,1.00,0.00,0.00,0.00,54.00,\n2015,5,29,\"MQ\",\"3562\",\"SYR\",\"ORD\",-2.00,-17.00,0.00,\"\",0.00,115.00,94.00,607.00,,,,,,\n2015,5,30,\"MQ\",\"3562\",\"SYR\",\"ORD\",-9.00,-7.00,0.00,\"\",0.00,132.00,104.00,607.00,,,,,,\n2015,5,31,\"MQ\",\"3562\",\"SYR\",\"ORD\",-1.00,-3.00,0.00,\"\",0.00,128.00,99.00,607.00,,,,,,\n2015,5,3,\"MQ\",\"3565\",\"GSO\",\"LGA\",-4.00,1.00,0.00,\"\",0.00,99.00,74.00,461.00,,,,,,\n2015,5,4,\"MQ\",\"3565\",\"GSO\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,92.00,72.00,461.00,,,,,,\n2015,5,5,\"MQ\",\"3565\",\"GSO\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,91.00,76.00,461.00,,,,,,\n2015,5,6,\"MQ\",\"3565\",\"GSO\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,98.00,69.00,461.00,,,,,,\n2015,5,7,\"MQ\",\"3565\",\"GSO\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,93.00,69.00,461.00,,,,,,\n2015,5,8,\"MQ\",\"3565\",\"GSO\",\"LGA\",39.00,45.00,0.00,\"\",0.00,100.00,73.00,461.00,0.00,0.00,6.00,0.00,39.00,\n2015,5,10,\"MQ\",\"3565\",\"GSO\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,87.00,70.00,461.00,,,,,,\n2015,5,11,\"MQ\",\"3565\",\"GSO\",\"LGA\",15.00,35.00,0.00,\"\",0.00,114.00,74.00,461.00,12.00,0.00,20.00,0.00,3.00,\n2015,5,12,\"MQ\",\"3565\",\"GSO\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,93.00,69.00,461.00,,,,,,\n2015,5,13,\"MQ\",\"3565\",\"GSO\",\"LGA\",-9.00,-10.00,0.00,\"\",0.00,93.00,63.00,461.00,,,,,,\n2015,5,14,\"MQ\",\"3565\",\"GSO\",\"LGA\",2.00,-4.00,0.00,\"\",0.00,88.00,68.00,461.00,,,,,,\n2015,5,15,\"MQ\",\"3565\",\"GSO\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,86.00,68.00,461.00,,,,,,\n2015,5,17,\"MQ\",\"3565\",\"GSO\",\"LGA\",-2.00,6.00,0.00,\"\",0.00,102.00,72.00,461.00,,,,,,\n2015,5,18,\"MQ\",\"3565\",\"GSO\",\"LGA\",250.00,338.00,0.00,\"\",0.00,182.00,91.00,461.00,0.00,0.00,230.00,0.00,108.00,\n2015,5,19,\"MQ\",\"3565\",\"GSO\",\"LGA\",82.00,70.00,0.00,\"\",0.00,82.00,65.00,461.00,0.00,0.00,54.00,0.00,16.00,\n2015,5,20,\"MQ\",\"3565\",\"GSO\",\"LGA\",-7.00,2.00,0.00,\"\",0.00,103.00,62.00,461.00,,,,,,\n2015,5,21,\"MQ\",\"3565\",\"GSO\",\"LGA\",-11.00,1.00,0.00,\"\",0.00,106.00,66.00,461.00,,,,,,\n2015,5,22,\"MQ\",\"3565\",\"GSO\",\"LGA\",16.00,63.00,0.00,\"\",0.00,141.00,61.00,461.00,0.00,0.00,47.00,0.00,16.00,\n2015,5,24,\"MQ\",\"3565\",\"GSO\",\"LGA\",-6.00,9.00,0.00,\"\",0.00,109.00,77.00,461.00,,,,,,\n2015,5,25,\"MQ\",\"3565\",\"GSO\",\"LGA\",-13.00,-2.00,0.00,\"\",0.00,105.00,69.00,461.00,,,,,,\n2015,5,26,\"MQ\",\"3565\",\"GSO\",\"LGA\",9.00,16.00,0.00,\"\",0.00,101.00,70.00,461.00,0.00,0.00,7.00,9.00,0.00,\n2015,5,27,\"MQ\",\"3565\",\"GSO\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,82.00,67.00,461.00,,,,,,\n2015,5,28,\"MQ\",\"3565\",\"GSO\",\"LGA\",-11.00,0.00,0.00,\"\",0.00,105.00,71.00,461.00,,,,,,\n2015,5,29,\"MQ\",\"3565\",\"GSO\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,89.00,67.00,461.00,,,,,,\n2015,5,31,\"MQ\",\"3565\",\"GSO\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,88.00,71.00,461.00,,,,,,\n2015,5,4,\"MQ\",\"3565\",\"LGA\",\"GSO\",-11.00,-20.00,0.00,\"\",0.00,97.00,65.00,461.00,,,,,,\n2015,5,5,\"MQ\",\"3565\",\"LGA\",\"GSO\",14.00,2.00,0.00,\"\",0.00,94.00,67.00,461.00,,,,,,\n2015,5,6,\"MQ\",\"3565\",\"LGA\",\"GSO\",-7.00,10.00,0.00,\"\",0.00,123.00,68.00,461.00,,,,,,\n2015,5,7,\"MQ\",\"3565\",\"LGA\",\"GSO\",-5.00,5.00,0.00,\"\",0.00,116.00,75.00,461.00,,,,,,\n2015,5,8,\"MQ\",\"3565\",\"LGA\",\"GSO\",19.00,47.00,0.00,\"\",0.00,134.00,75.00,461.00,0.00,0.00,28.00,0.00,19.00,\n2015,5,11,\"MQ\",\"3565\",\"LGA\",\"GSO\",8.00,7.00,0.00,\"\",0.00,105.00,69.00,461.00,,,,,,\n2015,5,12,\"MQ\",\"3565\",\"LGA\",\"GSO\",-10.00,-12.00,0.00,\"\",0.00,104.00,73.00,461.00,,,,,,\n2015,5,13,\"MQ\",\"3565\",\"LGA\",\"GSO\",-12.00,-5.00,0.00,\"\",0.00,113.00,74.00,461.00,,,,,,\n2015,5,14,\"MQ\",\"3565\",\"LGA\",\"GSO\",-11.00,-15.00,0.00,\"\",0.00,102.00,69.00,461.00,,,,,,\n2015,5,15,\"MQ\",\"3565\",\"LGA\",\"GSO\",16.00,-3.00,0.00,\"\",0.00,87.00,69.00,461.00,,,,,,\n2015,5,18,\"MQ\",\"3565\",\"LGA\",\"GSO\",,,1.00,\"C\",0.00,,,461.00,,,,,,\n2015,5,19,\"MQ\",\"3565\",\"LGA\",\"GSO\",24.00,23.00,0.00,\"\",0.00,105.00,70.00,461.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,20,\"MQ\",\"3565\",\"LGA\",\"GSO\",-18.00,-14.00,0.00,\"\",0.00,110.00,71.00,461.00,,,,,,\n2015,5,21,\"MQ\",\"3565\",\"LGA\",\"GSO\",-12.00,-12.00,0.00,\"\",0.00,106.00,78.00,461.00,,,,,,\n2015,5,22,\"MQ\",\"3565\",\"LGA\",\"GSO\",11.00,23.00,0.00,\"\",0.00,118.00,78.00,461.00,11.00,0.00,12.00,0.00,0.00,\n2015,5,25,\"MQ\",\"3565\",\"LGA\",\"GSO\",-13.00,-32.00,0.00,\"\",0.00,87.00,68.00,461.00,,,,,,\n2015,5,26,\"MQ\",\"3565\",\"LGA\",\"GSO\",-4.00,-13.00,0.00,\"\",0.00,97.00,71.00,461.00,,,,,,\n2015,5,27,\"MQ\",\"3565\",\"LGA\",\"GSO\",-8.00,-14.00,0.00,\"\",0.00,100.00,74.00,461.00,,,,,,\n2015,5,28,\"MQ\",\"3565\",\"LGA\",\"GSO\",-12.00,-8.00,0.00,\"\",0.00,110.00,69.00,461.00,,,,,,\n2015,5,29,\"MQ\",\"3565\",\"LGA\",\"GSO\",-9.00,-11.00,0.00,\"\",0.00,104.00,66.00,461.00,,,,,,\n2015,5,1,\"MQ\",\"3568\",\"CMH\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,96.00,75.00,479.00,,,,,,\n2015,5,4,\"MQ\",\"3568\",\"CMH\",\"LGA\",4.00,21.00,0.00,\"\",0.00,111.00,77.00,479.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,5,\"MQ\",\"3568\",\"CMH\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,94.00,73.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3568\",\"CMH\",\"LGA\",-3.00,18.00,0.00,\"\",0.00,115.00,89.00,479.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3569\",\"JFK\",\"RDU\",-9.00,-13.00,0.00,\"\",0.00,92.00,71.00,427.00,,,,,,\n2015,5,2,\"MQ\",\"3569\",\"JFK\",\"RDU\",-4.00,-13.00,0.00,\"\",0.00,87.00,69.00,427.00,,,,,,\n2015,5,3,\"MQ\",\"3569\",\"JFK\",\"RDU\",-1.00,-5.00,0.00,\"\",0.00,92.00,65.00,427.00,,,,,,\n2015,5,4,\"MQ\",\"3569\",\"JFK\",\"RDU\",113.00,110.00,0.00,\"\",0.00,93.00,67.00,427.00,32.00,0.00,0.00,0.00,78.00,\n2015,5,5,\"MQ\",\"3569\",\"JFK\",\"RDU\",-8.00,2.00,0.00,\"\",0.00,106.00,70.00,427.00,,,,,,\n2015,5,6,\"MQ\",\"3569\",\"JFK\",\"RDU\",24.00,17.00,0.00,\"\",0.00,89.00,68.00,427.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3569\",\"JFK\",\"RDU\",-6.00,-20.00,0.00,\"\",0.00,82.00,67.00,427.00,,,,,,\n2015,5,8,\"MQ\",\"3569\",\"JFK\",\"RDU\",-1.00,-4.00,0.00,\"\",0.00,93.00,71.00,427.00,,,,,,\n2015,5,9,\"MQ\",\"3569\",\"JFK\",\"RDU\",79.00,83.00,0.00,\"\",0.00,100.00,69.00,427.00,0.00,2.00,4.00,0.00,77.00,\n2015,5,10,\"MQ\",\"3569\",\"JFK\",\"RDU\",-7.00,-3.00,0.00,\"\",0.00,100.00,79.00,427.00,,,,,,\n2015,5,11,\"MQ\",\"3569\",\"JFK\",\"RDU\",33.00,33.00,0.00,\"\",0.00,96.00,68.00,427.00,0.00,0.00,0.00,0.00,33.00,\n2015,5,12,\"MQ\",\"3569\",\"JFK\",\"RDU\",114.00,114.00,0.00,\"\",0.00,96.00,77.00,427.00,13.00,0.00,0.00,0.00,101.00,\n2015,5,13,\"MQ\",\"3569\",\"JFK\",\"RDU\",-7.00,-9.00,0.00,\"\",0.00,94.00,82.00,427.00,,,,,,\n2015,5,14,\"MQ\",\"3569\",\"JFK\",\"RDU\",46.00,50.00,0.00,\"\",0.00,100.00,78.00,427.00,0.00,0.00,4.00,0.00,46.00,\n2015,5,15,\"MQ\",\"3569\",\"JFK\",\"RDU\",4.00,-5.00,0.00,\"\",0.00,87.00,65.00,427.00,,,,,,\n2015,5,16,\"MQ\",\"3569\",\"JFK\",\"RDU\",-8.00,-20.00,0.00,\"\",0.00,84.00,65.00,427.00,,,,,,\n2015,5,17,\"MQ\",\"3569\",\"JFK\",\"RDU\",-4.00,-12.00,0.00,\"\",0.00,88.00,65.00,427.00,,,,,,\n2015,5,18,\"MQ\",\"3569\",\"JFK\",\"RDU\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,19,\"MQ\",\"3569\",\"JFK\",\"RDU\",50.00,55.00,0.00,\"\",0.00,101.00,66.00,427.00,0.00,0.00,6.00,0.00,49.00,\n2015,5,20,\"MQ\",\"3569\",\"JFK\",\"RDU\",-8.00,8.00,0.00,\"\",0.00,112.00,75.00,427.00,,,,,,\n2015,5,21,\"MQ\",\"3569\",\"JFK\",\"RDU\",-5.00,20.00,0.00,\"\",0.00,121.00,77.00,427.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3569\",\"JFK\",\"RDU\",16.00,16.00,0.00,\"\",0.00,96.00,76.00,427.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,23,\"MQ\",\"3569\",\"JFK\",\"RDU\",-3.00,1.00,0.00,\"\",0.00,100.00,74.00,427.00,,,,,,\n2015,5,24,\"MQ\",\"3569\",\"JFK\",\"RDU\",22.00,6.00,0.00,\"\",0.00,80.00,65.00,427.00,,,,,,\n2015,5,25,\"MQ\",\"3569\",\"JFK\",\"RDU\",-8.00,-21.00,0.00,\"\",0.00,83.00,66.00,427.00,,,,,,\n2015,5,26,\"MQ\",\"3569\",\"JFK\",\"RDU\",-3.00,-1.00,0.00,\"\",0.00,98.00,70.00,427.00,,,,,,\n2015,5,27,\"MQ\",\"3569\",\"JFK\",\"RDU\",-5.00,-12.00,0.00,\"\",0.00,89.00,67.00,427.00,,,,,,\n2015,5,28,\"MQ\",\"3569\",\"JFK\",\"RDU\",2.00,-9.00,0.00,\"\",0.00,85.00,66.00,427.00,,,,,,\n2015,5,29,\"MQ\",\"3569\",\"JFK\",\"RDU\",-4.00,-17.00,0.00,\"\",0.00,83.00,59.00,427.00,,,,,,\n2015,5,30,\"MQ\",\"3569\",\"JFK\",\"RDU\",-6.00,-20.00,0.00,\"\",0.00,82.00,64.00,427.00,,,,,,\n2015,5,31,\"MQ\",\"3569\",\"JFK\",\"RDU\",-4.00,-14.00,0.00,\"\",0.00,86.00,65.00,427.00,,,,,,\n2015,5,1,\"MQ\",\"3569\",\"RDU\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,93.00,69.00,427.00,,,,,,\n2015,5,2,\"MQ\",\"3569\",\"RDU\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,92.00,73.00,427.00,,,,,,\n2015,5,3,\"MQ\",\"3569\",\"RDU\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,90.00,71.00,427.00,,,,,,\n2015,5,4,\"MQ\",\"3569\",\"RDU\",\"JFK\",104.00,113.00,0.00,\"\",0.00,109.00,71.00,427.00,0.00,0.00,9.00,0.00,104.00,\n2015,5,5,\"MQ\",\"3569\",\"RDU\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,88.00,70.00,427.00,,,,,,\n2015,5,6,\"MQ\",\"3569\",\"RDU\",\"JFK\",15.00,-2.00,0.00,\"\",0.00,83.00,64.00,427.00,,,,,,\n2015,5,7,\"MQ\",\"3569\",\"RDU\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,103.00,75.00,427.00,,,,,,\n2015,5,8,\"MQ\",\"3569\",\"RDU\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,90.00,66.00,427.00,,,,,,\n2015,5,9,\"MQ\",\"3569\",\"RDU\",\"JFK\",164.00,147.00,0.00,\"\",0.00,83.00,67.00,427.00,38.00,0.00,0.00,0.00,109.00,\n2015,5,10,\"MQ\",\"3569\",\"RDU\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,91.00,67.00,427.00,,,,,,\n2015,5,11,\"MQ\",\"3569\",\"RDU\",\"JFK\",45.00,29.00,0.00,\"\",0.00,84.00,69.00,427.00,10.00,0.00,0.00,0.00,19.00,\n2015,5,12,\"MQ\",\"3569\",\"RDU\",\"JFK\",122.00,110.00,0.00,\"\",0.00,88.00,64.00,427.00,0.00,0.00,11.00,0.00,99.00,\n2015,5,13,\"MQ\",\"3569\",\"RDU\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,87.00,61.00,427.00,,,,,,\n2015,5,14,\"MQ\",\"3569\",\"RDU\",\"JFK\",46.00,37.00,0.00,\"\",0.00,91.00,68.00,427.00,0.00,0.00,0.00,0.00,37.00,\n2015,5,15,\"MQ\",\"3569\",\"RDU\",\"JFK\",-6.00,-10.00,0.00,\"\",0.00,96.00,70.00,427.00,,,,,,\n2015,5,16,\"MQ\",\"3569\",\"RDU\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,93.00,68.00,427.00,,,,,,\n2015,5,17,\"MQ\",\"3569\",\"RDU\",\"JFK\",-9.00,-18.00,0.00,\"\",0.00,91.00,70.00,427.00,,,,,,\n2015,5,18,\"MQ\",\"3569\",\"RDU\",\"JFK\",87.00,119.00,0.00,\"\",0.00,132.00,70.00,427.00,0.00,0.00,47.00,0.00,72.00,\n2015,5,19,\"MQ\",\"3569\",\"RDU\",\"JFK\",58.00,46.00,0.00,\"\",0.00,88.00,66.00,427.00,6.00,0.00,0.00,0.00,40.00,\n2015,5,20,\"MQ\",\"3569\",\"RDU\",\"JFK\",4.00,-1.00,0.00,\"\",0.00,95.00,64.00,427.00,,,,,,\n2015,5,21,\"MQ\",\"3569\",\"RDU\",\"JFK\",17.00,7.00,0.00,\"\",0.00,90.00,71.00,427.00,,,,,,\n2015,5,22,\"MQ\",\"3569\",\"RDU\",\"JFK\",10.00,33.00,0.00,\"\",0.00,123.00,95.00,427.00,0.00,0.00,23.00,0.00,10.00,\n2015,5,23,\"MQ\",\"3569\",\"RDU\",\"JFK\",-4.00,5.00,0.00,\"\",0.00,109.00,86.00,427.00,,,,,,\n2015,5,24,\"MQ\",\"3569\",\"RDU\",\"JFK\",2.00,-7.00,0.00,\"\",0.00,91.00,69.00,427.00,,,,,,\n2015,5,25,\"MQ\",\"3569\",\"RDU\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,92.00,69.00,427.00,,,,,,\n2015,5,26,\"MQ\",\"3569\",\"RDU\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,90.00,66.00,427.00,,,,,,\n2015,5,27,\"MQ\",\"3569\",\"RDU\",\"JFK\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,28,\"MQ\",\"3569\",\"RDU\",\"JFK\",-1.00,-2.00,0.00,\"\",0.00,99.00,65.00,427.00,,,,,,\n2015,5,29,\"MQ\",\"3569\",\"RDU\",\"JFK\",-8.00,-15.00,0.00,\"\",0.00,93.00,64.00,427.00,,,,,,\n2015,5,30,\"MQ\",\"3569\",\"RDU\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,90.00,69.00,427.00,,,,,,\n2015,5,31,\"MQ\",\"3569\",\"RDU\",\"JFK\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,7,\"MQ\",\"3487\",\"ORD\",\"ROC\",-7.00,-18.00,0.00,\"\",0.00,96.00,74.00,528.00,,,,,,\n2015,5,8,\"MQ\",\"3487\",\"ORD\",\"ROC\",-2.00,-12.00,0.00,\"\",0.00,97.00,76.00,528.00,,,,,,\n2015,5,10,\"MQ\",\"3487\",\"ORD\",\"ROC\",37.00,26.00,0.00,\"\",0.00,96.00,62.00,528.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,11,\"MQ\",\"3487\",\"ORD\",\"ROC\",-4.00,-19.00,0.00,\"\",0.00,92.00,74.00,528.00,,,,,,\n2015,5,12,\"MQ\",\"3487\",\"ORD\",\"ROC\",-8.00,-30.00,0.00,\"\",0.00,85.00,70.00,528.00,,,,,,\n2015,5,13,\"MQ\",\"3487\",\"ORD\",\"ROC\",-3.00,-13.00,0.00,\"\",0.00,97.00,73.00,528.00,,,,,,\n2015,5,14,\"MQ\",\"3487\",\"ORD\",\"ROC\",8.00,10.00,0.00,\"\",0.00,109.00,74.00,528.00,,,,,,\n2015,5,15,\"MQ\",\"3487\",\"ORD\",\"ROC\",-5.00,-16.00,0.00,\"\",0.00,96.00,73.00,528.00,,,,,,\n2015,5,17,\"MQ\",\"3487\",\"ORD\",\"ROC\",37.00,30.00,0.00,\"\",0.00,100.00,73.00,528.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"MQ\",\"3487\",\"ORD\",\"ROC\",-2.00,-6.00,0.00,\"\",0.00,103.00,75.00,528.00,,,,,,\n2015,5,19,\"MQ\",\"3487\",\"ORD\",\"ROC\",-6.00,-23.00,0.00,\"\",0.00,90.00,72.00,528.00,,,,,,\n2015,5,20,\"MQ\",\"3487\",\"ORD\",\"ROC\",0.00,-26.00,0.00,\"\",0.00,81.00,67.00,528.00,,,,,,\n2015,5,21,\"MQ\",\"3487\",\"ORD\",\"ROC\",-2.00,-15.00,0.00,\"\",0.00,86.00,70.00,528.00,,,,,,\n2015,5,22,\"MQ\",\"3487\",\"ORD\",\"ROC\",0.00,-5.00,0.00,\"\",0.00,102.00,72.00,528.00,,,,,,\n2015,5,24,\"MQ\",\"3487\",\"ORD\",\"ROC\",-3.00,-17.00,0.00,\"\",0.00,93.00,77.00,528.00,,,,,,\n2015,5,25,\"MQ\",\"3487\",\"ORD\",\"ROC\",-1.00,-8.00,0.00,\"\",0.00,100.00,75.00,528.00,,,,,,\n2015,5,26,\"MQ\",\"3487\",\"ORD\",\"ROC\",10.00,2.00,0.00,\"\",0.00,99.00,75.00,528.00,,,,,,\n2015,5,27,\"MQ\",\"3487\",\"ORD\",\"ROC\",-3.00,-20.00,0.00,\"\",0.00,90.00,67.00,528.00,,,,,,\n2015,5,28,\"MQ\",\"3487\",\"ORD\",\"ROC\",12.00,-6.00,0.00,\"\",0.00,89.00,71.00,528.00,,,,,,\n2015,5,29,\"MQ\",\"3487\",\"ORD\",\"ROC\",1.00,-7.00,0.00,\"\",0.00,99.00,72.00,528.00,,,,,,\n2015,5,31,\"MQ\",\"3487\",\"ORD\",\"ROC\",-6.00,-17.00,0.00,\"\",0.00,96.00,74.00,528.00,,,,,,\n2015,5,7,\"MQ\",\"3487\",\"ROC\",\"ORD\",-13.00,-13.00,0.00,\"\",0.00,120.00,81.00,528.00,,,,,,\n2015,5,8,\"MQ\",\"3487\",\"ROC\",\"ORD\",-11.00,-5.00,0.00,\"\",0.00,126.00,96.00,528.00,,,,,,\n2015,5,10,\"MQ\",\"3487\",\"ROC\",\"ORD\",26.00,26.00,0.00,\"\",0.00,120.00,90.00,528.00,3.00,0.00,0.00,0.00,23.00,\n2015,5,11,\"MQ\",\"3487\",\"ROC\",\"ORD\",-1.00,-7.00,0.00,\"\",0.00,114.00,93.00,528.00,,,,,,\n2015,5,12,\"MQ\",\"3487\",\"ROC\",\"ORD\",-11.00,-3.00,0.00,\"\",0.00,128.00,104.00,528.00,,,,,,\n2015,5,13,\"MQ\",\"3487\",\"ROC\",\"ORD\",-4.00,39.00,0.00,\"\",0.00,163.00,111.00,528.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,14,\"MQ\",\"3487\",\"ROC\",\"ORD\",15.00,7.00,0.00,\"\",0.00,112.00,95.00,528.00,,,,,,\n2015,5,15,\"MQ\",\"3487\",\"ROC\",\"ORD\",-9.00,-8.00,0.00,\"\",0.00,121.00,94.00,528.00,,,,,,\n2015,5,17,\"MQ\",\"3487\",\"ROC\",\"ORD\",29.00,12.00,0.00,\"\",0.00,103.00,83.00,528.00,,,,,,\n2015,5,18,\"MQ\",\"3487\",\"ROC\",\"ORD\",-5.00,-20.00,0.00,\"\",0.00,105.00,88.00,528.00,,,,,,\n2015,5,19,\"MQ\",\"3487\",\"ROC\",\"ORD\",-8.00,-9.00,0.00,\"\",0.00,119.00,91.00,528.00,,,,,,\n2015,5,20,\"MQ\",\"3487\",\"ROC\",\"ORD\",-1.00,9.00,0.00,\"\",0.00,130.00,98.00,528.00,,,,,,\n2015,5,21,\"MQ\",\"3487\",\"ROC\",\"ORD\",-11.00,-26.00,0.00,\"\",0.00,101.00,83.00,528.00,,,,,,\n2015,5,22,\"MQ\",\"3487\",\"ROC\",\"ORD\",2.00,4.00,0.00,\"\",0.00,122.00,97.00,528.00,,,,,,\n2015,5,24,\"MQ\",\"3487\",\"ROC\",\"ORD\",-9.00,0.00,0.00,\"\",0.00,129.00,94.00,528.00,,,,,,\n2015,5,25,\"MQ\",\"3487\",\"ROC\",\"ORD\",-11.00,-17.00,0.00,\"\",0.00,114.00,89.00,528.00,,,,,,\n2015,5,26,\"MQ\",\"3487\",\"ROC\",\"ORD\",0.00,9.00,0.00,\"\",0.00,129.00,86.00,528.00,,,,,,\n2015,5,27,\"MQ\",\"3487\",\"ROC\",\"ORD\",-5.00,-14.00,0.00,\"\",0.00,111.00,87.00,528.00,,,,,,\n2015,5,28,\"MQ\",\"3487\",\"ROC\",\"ORD\",-3.00,-7.00,0.00,\"\",0.00,116.00,83.00,528.00,,,,,,\n2015,5,29,\"MQ\",\"3487\",\"ROC\",\"ORD\",49.00,56.00,0.00,\"\",0.00,127.00,87.00,528.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,31,\"MQ\",\"3487\",\"ROC\",\"ORD\",-11.00,-12.00,0.00,\"\",0.00,119.00,92.00,528.00,,,,,,\n2015,5,1,\"MQ\",\"3490\",\"LGA\",\"BNA\",21.00,-11.00,0.00,\"\",0.00,122.00,108.00,764.00,,,,,,\n2015,5,3,\"MQ\",\"3490\",\"LGA\",\"BNA\",-8.00,-22.00,0.00,\"\",0.00,140.00,108.00,764.00,,,,,,\n2015,5,4,\"MQ\",\"3490\",\"LGA\",\"BNA\",-12.00,-35.00,0.00,\"\",0.00,131.00,105.00,764.00,,,,,,\n2015,5,5,\"MQ\",\"3490\",\"LGA\",\"BNA\",-7.00,-30.00,0.00,\"\",0.00,131.00,111.00,764.00,,,,,,\n2015,5,6,\"MQ\",\"3490\",\"LGA\",\"BNA\",76.00,112.00,0.00,\"\",0.00,190.00,117.00,764.00,5.00,0.00,36.00,0.00,71.00,\n2015,5,7,\"MQ\",\"3490\",\"LGA\",\"BNA\",24.00,7.00,0.00,\"\",0.00,131.00,105.00,764.00,,,,,,\n2015,5,8,\"MQ\",\"3490\",\"LGA\",\"BNA\",8.00,-9.00,0.00,\"\",0.00,131.00,99.00,764.00,,,,,,\n2015,5,10,\"MQ\",\"3490\",\"LGA\",\"BNA\",132.00,114.00,0.00,\"\",0.00,130.00,103.00,764.00,0.00,0.00,0.00,0.00,114.00,\n2015,5,11,\"MQ\",\"3490\",\"LGA\",\"BNA\",189.00,171.00,0.00,\"\",0.00,130.00,107.00,764.00,2.00,0.00,0.00,0.00,169.00,\n2015,5,12,\"MQ\",\"3490\",\"LGA\",\"BNA\",13.00,2.00,0.00,\"\",0.00,137.00,117.00,764.00,,,,,,\n2015,5,13,\"MQ\",\"3490\",\"LGA\",\"BNA\",-7.00,-5.00,0.00,\"\",0.00,150.00,108.00,764.00,,,,,,\n2015,5,14,\"MQ\",\"3490\",\"LGA\",\"BNA\",24.00,7.00,0.00,\"\",0.00,131.00,107.00,764.00,,,,,,\n2015,5,15,\"MQ\",\"3490\",\"LGA\",\"BNA\",-6.00,-23.00,0.00,\"\",0.00,131.00,105.00,764.00,,,,,,\n2015,5,17,\"MQ\",\"3490\",\"LGA\",\"BNA\",0.00,-19.00,0.00,\"\",0.00,129.00,107.00,764.00,,,,,,\n2015,5,18,\"MQ\",\"3490\",\"LGA\",\"BNA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,19,\"MQ\",\"3490\",\"LGA\",\"BNA\",175.00,169.00,0.00,\"\",0.00,142.00,110.00,764.00,34.00,0.00,0.00,0.00,135.00,\n2015,5,20,\"MQ\",\"3490\",\"LGA\",\"BNA\",0.00,47.00,0.00,\"\",0.00,195.00,117.00,764.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3490\",\"LGA\",\"BNA\",2.00,12.00,0.00,\"\",0.00,158.00,123.00,764.00,,,,,,\n2015,5,22,\"MQ\",\"3490\",\"LGA\",\"BNA\",3.00,-14.00,0.00,\"\",0.00,131.00,115.00,764.00,,,,,,\n2015,5,24,\"MQ\",\"3490\",\"LGA\",\"BNA\",2.00,-26.00,0.00,\"\",0.00,120.00,107.00,764.00,,,,,,\n2015,5,25,\"MQ\",\"3490\",\"LGA\",\"BNA\",-9.00,-29.00,0.00,\"\",0.00,128.00,105.00,764.00,,,,,,\n2015,5,26,\"MQ\",\"3490\",\"LGA\",\"BNA\",-7.00,5.00,0.00,\"\",0.00,160.00,107.00,764.00,,,,,,\n2015,5,27,\"MQ\",\"3490\",\"LGA\",\"BNA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,28,\"MQ\",\"3490\",\"LGA\",\"BNA\",5.00,-7.00,0.00,\"\",0.00,136.00,102.00,764.00,,,,,,\n2015,5,29,\"MQ\",\"3490\",\"LGA\",\"BNA\",-3.00,-30.00,0.00,\"\",0.00,121.00,101.00,764.00,,,,,,\n2015,5,31,\"MQ\",\"3490\",\"LGA\",\"BNA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,1,\"MQ\",\"3492\",\"LGA\",\"BNA\",3.00,-22.00,0.00,\"\",0.00,123.00,98.00,764.00,,,,,,\n2015,5,3,\"MQ\",\"3492\",\"LGA\",\"BNA\",-5.00,-40.00,0.00,\"\",0.00,113.00,98.00,764.00,,,,,,\n2015,5,4,\"MQ\",\"3492\",\"LGA\",\"BNA\",-3.00,-27.00,0.00,\"\",0.00,124.00,101.00,764.00,,,,,,\n2015,5,5,\"MQ\",\"3492\",\"LGA\",\"BNA\",-10.00,-28.00,0.00,\"\",0.00,130.00,104.00,764.00,,,,,,\n2015,5,6,\"MQ\",\"3492\",\"LGA\",\"BNA\",-3.00,-4.00,0.00,\"\",0.00,147.00,108.00,764.00,,,,,,\n2015,5,7,\"MQ\",\"3492\",\"LGA\",\"BNA\",-1.00,-10.00,0.00,\"\",0.00,139.00,105.00,764.00,,,,,,\n2015,5,8,\"MQ\",\"3492\",\"LGA\",\"BNA\",-3.00,-20.00,0.00,\"\",0.00,131.00,98.00,764.00,,,,,,\n2015,5,10,\"MQ\",\"3492\",\"LGA\",\"BNA\",-4.00,-29.00,0.00,\"\",0.00,123.00,101.00,764.00,,,,,,\n2015,5,11,\"MQ\",\"3492\",\"LGA\",\"BNA\",68.00,50.00,0.00,\"\",0.00,130.00,105.00,764.00,0.00,0.00,0.00,0.00,50.00,\n2015,5,12,\"MQ\",\"3492\",\"LGA\",\"BNA\",-7.00,5.00,0.00,\"\",0.00,160.00,127.00,764.00,,,,,,\n2015,5,13,\"MQ\",\"3492\",\"LGA\",\"BNA\",23.00,32.00,0.00,\"\",0.00,157.00,104.00,764.00,0.00,0.00,9.00,0.00,23.00,\n2015,5,14,\"MQ\",\"3492\",\"LGA\",\"BNA\",-6.00,-28.00,0.00,\"\",0.00,126.00,106.00,764.00,,,,,,\n2015,5,15,\"MQ\",\"3492\",\"LGA\",\"BNA\",-11.00,-43.00,0.00,\"\",0.00,116.00,102.00,764.00,,,,,,\n2015,5,17,\"MQ\",\"3492\",\"LGA\",\"BNA\",20.00,0.00,0.00,\"\",0.00,128.00,99.00,764.00,,,,,,\n2015,5,18,\"MQ\",\"3492\",\"LGA\",\"BNA\",30.00,52.00,0.00,\"\",0.00,170.00,132.00,764.00,7.00,0.00,22.00,0.00,23.00,\n2015,5,19,\"MQ\",\"3492\",\"LGA\",\"BNA\",130.00,109.00,0.00,\"\",0.00,127.00,106.00,764.00,0.00,0.00,0.00,0.00,109.00,\n2015,5,20,\"MQ\",\"3492\",\"LGA\",\"BNA\",79.00,100.00,0.00,\"\",0.00,169.00,111.00,764.00,0.00,0.00,21.00,0.00,79.00,\n2015,5,21,\"MQ\",\"3492\",\"LGA\",\"BNA\",5.00,7.00,0.00,\"\",0.00,150.00,117.00,764.00,,,,,,\n2015,5,22,\"MQ\",\"3492\",\"LGA\",\"BNA\",-2.00,-15.00,0.00,\"\",0.00,135.00,116.00,764.00,,,,,,\n2015,5,24,\"MQ\",\"3492\",\"LGA\",\"BNA\",-6.00,-34.00,0.00,\"\",0.00,120.00,105.00,764.00,,,,,,\n2015,5,25,\"MQ\",\"3492\",\"LGA\",\"BNA\",4.00,-3.00,0.00,\"\",0.00,141.00,103.00,764.00,,,,,,\n2015,5,26,\"MQ\",\"3492\",\"LGA\",\"BNA\",-2.00,-10.00,0.00,\"\",0.00,140.00,111.00,764.00,,,,,,\n2015,5,27,\"MQ\",\"3492\",\"LGA\",\"BNA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,28,\"MQ\",\"3492\",\"LGA\",\"BNA\",-1.00,13.00,0.00,\"\",0.00,162.00,101.00,764.00,,,,,,\n2015,5,29,\"MQ\",\"3492\",\"LGA\",\"BNA\",3.00,-10.00,0.00,\"\",0.00,135.00,103.00,764.00,,,,,,\n2015,5,31,\"MQ\",\"3492\",\"LGA\",\"BNA\",100.00,95.00,0.00,\"\",0.00,143.00,112.00,764.00,0.00,95.00,0.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3494\",\"DAY\",\"LGA\",12.00,8.00,0.00,\"\",0.00,106.00,88.00,549.00,,,,,,\n2015,5,3,\"MQ\",\"3494\",\"DAY\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,106.00,91.00,549.00,,,,,,\n2015,5,4,\"MQ\",\"3494\",\"DAY\",\"LGA\",17.00,6.00,0.00,\"\",0.00,99.00,85.00,549.00,,,,,,\n2015,5,5,\"MQ\",\"3494\",\"DAY\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,112.00,88.00,549.00,,,,,,\n2015,5,6,\"MQ\",\"3494\",\"DAY\",\"LGA\",130.00,126.00,0.00,\"\",0.00,106.00,84.00,549.00,0.00,0.00,0.00,0.00,126.00,\n2015,5,7,\"MQ\",\"3494\",\"DAY\",\"LGA\",41.00,43.00,0.00,\"\",0.00,112.00,88.00,549.00,0.00,0.00,2.00,0.00,41.00,\n2015,5,8,\"MQ\",\"3494\",\"DAY\",\"LGA\",37.00,45.00,0.00,\"\",0.00,118.00,92.00,549.00,0.00,0.00,8.00,0.00,37.00,\n2015,5,10,\"MQ\",\"3494\",\"DAY\",\"LGA\",-9.00,-8.00,0.00,\"\",0.00,111.00,88.00,549.00,,,,,,\n2015,5,11,\"MQ\",\"3494\",\"DAY\",\"LGA\",87.00,118.00,0.00,\"\",0.00,141.00,90.00,549.00,0.00,0.00,93.00,0.00,25.00,\n2015,5,12,\"MQ\",\"3494\",\"DAY\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,105.00,84.00,549.00,,,,,,\n2015,5,13,\"MQ\",\"3494\",\"DAY\",\"LGA\",-2.00,9.00,0.00,\"\",0.00,121.00,79.00,549.00,,,,,,\n2015,5,14,\"MQ\",\"3494\",\"DAY\",\"LGA\",1.00,-5.00,0.00,\"\",0.00,104.00,84.00,549.00,,,,,,\n2015,5,15,\"MQ\",\"3494\",\"DAY\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,105.00,83.00,549.00,,,,,,\n2015,5,17,\"MQ\",\"3494\",\"DAY\",\"LGA\",3.00,5.00,0.00,\"\",0.00,112.00,88.00,549.00,,,,,,\n2015,5,18,\"MQ\",\"3494\",\"DAY\",\"LGA\",,,1.00,\"C\",0.00,,,549.00,,,,,,\n2015,5,19,\"MQ\",\"3494\",\"DAY\",\"LGA\",75.00,104.00,0.00,\"\",0.00,139.00,85.00,549.00,0.00,0.00,36.00,0.00,68.00,\n2015,5,20,\"MQ\",\"3494\",\"DAY\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,107.00,77.00,549.00,,,,,,\n2015,5,21,\"MQ\",\"3494\",\"DAY\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,98.00,82.00,549.00,,,,,,\n2015,5,22,\"MQ\",\"3494\",\"DAY\",\"LGA\",6.00,4.00,0.00,\"\",0.00,108.00,84.00,549.00,,,,,,\n2015,5,25,\"MQ\",\"3494\",\"DAY\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,109.00,85.00,549.00,,,,,,\n2015,5,26,\"MQ\",\"3494\",\"DAY\",\"LGA\",4.00,-1.00,0.00,\"\",0.00,105.00,84.00,549.00,,,,,,\n2015,5,27,\"MQ\",\"3494\",\"DAY\",\"LGA\",,,1.00,\"C\",0.00,,,549.00,,,,,,\n2015,5,28,\"MQ\",\"3494\",\"DAY\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,113.00,85.00,549.00,,,,,,\n2015,5,29,\"MQ\",\"3494\",\"DAY\",\"LGA\",11.00,10.00,0.00,\"\",0.00,109.00,86.00,549.00,,,,,,\n2015,5,31,\"MQ\",\"3494\",\"DAY\",\"LGA\",,,1.00,\"C\",0.00,,,549.00,,,,,,\n2015,5,1,\"MQ\",\"3494\",\"LGA\",\"DAY\",-7.00,-19.00,0.00,\"\",0.00,105.00,82.00,549.00,,,,,,\n2015,5,2,\"MQ\",\"3494\",\"LGA\",\"DAY\",-7.00,-11.00,0.00,\"\",0.00,113.00,79.00,549.00,,,,,,\n2015,5,3,\"MQ\",\"3494\",\"LGA\",\"DAY\",-8.00,-5.00,0.00,\"\",0.00,120.00,83.00,549.00,,,,,,\n2015,5,4,\"MQ\",\"3494\",\"LGA\",\"DAY\",-2.00,-17.00,0.00,\"\",0.00,102.00,86.00,549.00,,,,,,\n2015,5,5,\"MQ\",\"3494\",\"LGA\",\"DAY\",-7.00,-15.00,0.00,\"\",0.00,109.00,81.00,549.00,,,,,,\n2015,5,6,\"MQ\",\"3494\",\"LGA\",\"DAY\",93.00,140.00,0.00,\"\",0.00,164.00,90.00,549.00,0.00,0.00,47.00,0.00,93.00,\n2015,5,7,\"MQ\",\"3494\",\"LGA\",\"DAY\",54.00,44.00,0.00,\"\",0.00,112.00,80.00,549.00,40.00,0.00,0.00,0.00,4.00,\n2015,5,8,\"MQ\",\"3494\",\"LGA\",\"DAY\",50.00,40.00,0.00,\"\",0.00,112.00,78.00,549.00,4.00,0.00,0.00,0.00,36.00,\n2015,5,9,\"MQ\",\"3494\",\"LGA\",\"DAY\",-10.00,-29.00,0.00,\"\",0.00,103.00,80.00,549.00,,,,,,\n2015,5,10,\"MQ\",\"3494\",\"LGA\",\"DAY\",-9.00,-27.00,0.00,\"\",0.00,104.00,80.00,549.00,,,,,,\n2015,5,11,\"MQ\",\"3494\",\"LGA\",\"DAY\",-1.00,28.00,0.00,\"\",0.00,151.00,82.00,549.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3494\",\"LGA\",\"DAY\",-1.00,-7.00,0.00,\"\",0.00,116.00,93.00,549.00,,,,,,\n2015,5,13,\"MQ\",\"3494\",\"LGA\",\"DAY\",-7.00,1.00,0.00,\"\",0.00,130.00,91.00,549.00,,,,,,\n2015,5,14,\"MQ\",\"3494\",\"LGA\",\"DAY\",5.00,-1.00,0.00,\"\",0.00,116.00,89.00,549.00,,,,,,\n2015,5,15,\"MQ\",\"3494\",\"LGA\",\"DAY\",2.00,-5.00,0.00,\"\",0.00,115.00,89.00,549.00,,,,,,\n2015,5,16,\"MQ\",\"3494\",\"LGA\",\"DAY\",-10.00,-29.00,0.00,\"\",0.00,103.00,85.00,549.00,,,,,,\n2015,5,17,\"MQ\",\"3494\",\"LGA\",\"DAY\",-5.00,6.00,0.00,\"\",0.00,133.00,88.00,549.00,,,,,,\n2015,5,18,\"MQ\",\"3494\",\"LGA\",\"DAY\",127.00,119.00,0.00,\"\",0.00,114.00,83.00,549.00,0.00,0.00,0.00,0.00,119.00,\n2015,5,19,\"MQ\",\"3494\",\"LGA\",\"DAY\",72.00,71.00,0.00,\"\",0.00,121.00,100.00,549.00,6.00,0.00,0.00,0.00,65.00,\n2015,5,20,\"MQ\",\"3494\",\"LGA\",\"DAY\",-8.00,-17.00,0.00,\"\",0.00,113.00,94.00,549.00,,,,,,\n2015,5,21,\"MQ\",\"3494\",\"LGA\",\"DAY\",-8.00,-15.00,0.00,\"\",0.00,115.00,94.00,549.00,,,,,,\n2015,5,22,\"MQ\",\"3494\",\"LGA\",\"DAY\",-3.00,8.00,0.00,\"\",0.00,133.00,90.00,549.00,,,,,,\n2015,5,23,\"MQ\",\"3494\",\"LGA\",\"DAY\",-8.00,-20.00,0.00,\"\",0.00,110.00,88.00,549.00,,,,,,\n2015,5,25,\"MQ\",\"3494\",\"LGA\",\"DAY\",-3.00,-13.00,0.00,\"\",0.00,112.00,84.00,549.00,,,,,,\n2015,5,26,\"MQ\",\"3494\",\"LGA\",\"DAY\",-11.00,1.00,0.00,\"\",0.00,134.00,84.00,549.00,,,,,,\n2015,5,27,\"MQ\",\"3494\",\"LGA\",\"DAY\",,,1.00,\"C\",0.00,,,549.00,,,,,,\n2015,5,28,\"MQ\",\"3494\",\"LGA\",\"DAY\",3.00,3.00,0.00,\"\",0.00,122.00,84.00,549.00,,,,,,\n2015,5,29,\"MQ\",\"3494\",\"LGA\",\"DAY\",21.00,0.00,0.00,\"\",0.00,101.00,89.00,549.00,,,,,,\n2015,5,30,\"MQ\",\"3494\",\"LGA\",\"DAY\",73.00,71.00,0.00,\"\",0.00,120.00,86.00,549.00,71.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"MQ\",\"3494\",\"LGA\",\"DAY\",-11.00,,1.00,\"C\",0.00,,,549.00,,,,,,\n2015,5,1,\"MQ\",\"3498\",\"CHO\",\"LGA\",11.00,13.00,0.00,\"\",0.00,79.00,61.00,305.00,,,,,,\n2015,5,2,\"MQ\",\"3498\",\"CHO\",\"LGA\",-14.00,-2.00,0.00,\"\",0.00,89.00,62.00,305.00,,,,,,\n2015,5,3,\"MQ\",\"3498\",\"CHO\",\"LGA\",-13.00,-4.00,0.00,\"\",0.00,86.00,58.00,305.00,,,,,,\n2015,5,4,\"MQ\",\"3498\",\"CHO\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,74.00,58.00,305.00,,,,,,\n2015,5,5,\"MQ\",\"3498\",\"CHO\",\"LGA\",-8.00,5.00,0.00,\"\",0.00,90.00,53.00,305.00,,,,,,\n2015,5,6,\"MQ\",\"3498\",\"CHO\",\"LGA\",13.00,18.00,0.00,\"\",0.00,82.00,49.00,305.00,3.00,0.00,5.00,0.00,10.00,\n2015,5,7,\"MQ\",\"3498\",\"CHO\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,66.00,54.00,305.00,,,,,,\n2015,5,8,\"MQ\",\"3498\",\"CHO\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,76.00,57.00,305.00,,,,,,\n2015,5,9,\"MQ\",\"3498\",\"CHO\",\"LGA\",14.00,57.00,0.00,\"\",0.00,120.00,59.00,305.00,0.00,0.00,57.00,0.00,0.00,\n2015,5,10,\"MQ\",\"3498\",\"CHO\",\"LGA\",33.00,44.00,0.00,\"\",0.00,88.00,58.00,305.00,1.00,0.00,11.00,0.00,32.00,\n2015,5,11,\"MQ\",\"3498\",\"CHO\",\"LGA\",,,1.00,\"A\",0.00,,,305.00,,,,,,\n2015,5,12,\"MQ\",\"3498\",\"CHO\",\"LGA\",10.00,8.00,0.00,\"\",0.00,75.00,52.00,305.00,,,,,,\n2015,5,13,\"MQ\",\"3498\",\"CHO\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,62.00,49.00,305.00,,,,,,\n2015,5,14,\"MQ\",\"3498\",\"CHO\",\"LGA\",30.00,34.00,0.00,\"\",0.00,81.00,57.00,305.00,15.00,0.00,4.00,0.00,15.00,\n2015,5,15,\"MQ\",\"3498\",\"CHO\",\"LGA\",1.00,-9.00,0.00,\"\",0.00,67.00,56.00,305.00,,,,,,\n2015,5,16,\"MQ\",\"3498\",\"CHO\",\"LGA\",-7.00,-6.00,0.00,\"\",0.00,78.00,60.00,305.00,,,,,,\n2015,5,17,\"MQ\",\"3498\",\"CHO\",\"LGA\",-2.00,4.00,0.00,\"\",0.00,83.00,53.00,305.00,,,,,,\n2015,5,18,\"MQ\",\"3498\",\"CHO\",\"LGA\",,,1.00,\"C\",0.00,,,305.00,,,,,,\n2015,5,19,\"MQ\",\"3498\",\"CHO\",\"LGA\",27.00,20.00,0.00,\"\",0.00,70.00,54.00,305.00,19.00,0.00,0.00,0.00,1.00,\n2015,5,20,\"MQ\",\"3498\",\"CHO\",\"LGA\",-8.00,36.00,0.00,\"\",0.00,121.00,52.00,305.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3498\",\"CHO\",\"LGA\",-4.00,-3.00,0.00,\"\",0.00,78.00,52.00,305.00,,,,,,\n2015,5,22,\"MQ\",\"3498\",\"CHO\",\"LGA\",6.00,6.00,0.00,\"\",0.00,77.00,54.00,305.00,,,,,,\n2015,5,23,\"MQ\",\"3498\",\"CHO\",\"LGA\",-10.00,-25.00,0.00,\"\",0.00,62.00,51.00,305.00,,,,,,\n2015,5,24,\"MQ\",\"3498\",\"CHO\",\"LGA\",14.00,3.00,0.00,\"\",0.00,66.00,55.00,305.00,,,,,,\n2015,5,25,\"MQ\",\"3498\",\"CHO\",\"LGA\",114.00,108.00,0.00,\"\",0.00,71.00,56.00,305.00,3.00,0.00,0.00,0.00,105.00,\n2015,5,26,\"MQ\",\"3498\",\"CHO\",\"LGA\",6.00,-8.00,0.00,\"\",0.00,63.00,54.00,305.00,,,,,,\n2015,5,27,\"MQ\",\"3498\",\"CHO\",\"LGA\",-15.00,14.00,0.00,\"\",0.00,106.00,56.00,305.00,,,,,,\n2015,5,28,\"MQ\",\"3498\",\"CHO\",\"LGA\",-9.00,-14.00,0.00,\"\",0.00,72.00,56.00,305.00,,,,,,\n2015,5,29,\"MQ\",\"3498\",\"CHO\",\"LGA\",-10.00,0.00,0.00,\"\",0.00,87.00,55.00,305.00,,,,,,\n2015,5,30,\"MQ\",\"3498\",\"CHO\",\"LGA\",,,1.00,\"A\",0.00,,,305.00,,,,,,\n2015,5,31,\"MQ\",\"3498\",\"CHO\",\"LGA\",43.00,59.00,0.00,\"\",0.00,93.00,55.00,305.00,0.00,0.00,59.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3498\",\"LGA\",\"CHO\",31.00,19.00,0.00,\"\",0.00,78.00,54.00,305.00,1.00,0.00,0.00,0.00,18.00,\n2015,5,2,\"MQ\",\"3498\",\"LGA\",\"CHO\",-10.00,-26.00,0.00,\"\",0.00,74.00,51.00,305.00,,,,,,\n2015,5,3,\"MQ\",\"3498\",\"LGA\",\"CHO\",19.00,-2.00,0.00,\"\",0.00,69.00,47.00,305.00,,,,,,\n2015,5,4,\"MQ\",\"3498\",\"LGA\",\"CHO\",-8.00,-32.00,0.00,\"\",0.00,66.00,49.00,305.00,,,,,,\n2015,5,5,\"MQ\",\"3498\",\"LGA\",\"CHO\",-9.00,-28.00,0.00,\"\",0.00,71.00,48.00,305.00,,,,,,\n2015,5,6,\"MQ\",\"3498\",\"LGA\",\"CHO\",19.00,20.00,0.00,\"\",0.00,91.00,52.00,305.00,0.00,0.00,1.00,0.00,19.00,\n2015,5,7,\"MQ\",\"3498\",\"LGA\",\"CHO\",-6.00,-18.00,0.00,\"\",0.00,78.00,52.00,305.00,,,,,,\n2015,5,8,\"MQ\",\"3498\",\"LGA\",\"CHO\",19.00,-6.00,0.00,\"\",0.00,65.00,47.00,305.00,,,,,,\n2015,5,9,\"MQ\",\"3498\",\"LGA\",\"CHO\",9.00,-2.00,0.00,\"\",0.00,79.00,50.00,305.00,,,,,,\n2015,5,10,\"MQ\",\"3498\",\"LGA\",\"CHO\",61.00,42.00,0.00,\"\",0.00,71.00,51.00,305.00,34.00,0.00,0.00,0.00,8.00,\n2015,5,11,\"MQ\",\"3498\",\"LGA\",\"CHO\",66.00,,1.00,\"A\",0.00,,,305.00,,,,,,\n2015,5,12,\"MQ\",\"3498\",\"LGA\",\"CHO\",-9.00,-28.00,0.00,\"\",0.00,71.00,53.00,305.00,,,,,,\n2015,5,13,\"MQ\",\"3498\",\"LGA\",\"CHO\",-8.00,-9.00,0.00,\"\",0.00,89.00,53.00,305.00,,,,,,\n2015,5,14,\"MQ\",\"3498\",\"LGA\",\"CHO\",28.00,25.00,0.00,\"\",0.00,87.00,54.00,305.00,0.00,0.00,0.00,0.00,25.00,\n2015,5,15,\"MQ\",\"3498\",\"LGA\",\"CHO\",0.00,-18.00,0.00,\"\",0.00,72.00,48.00,305.00,,,,,,\n2015,5,16,\"MQ\",\"3498\",\"LGA\",\"CHO\",-8.00,-7.00,0.00,\"\",0.00,91.00,50.00,305.00,,,,,,\n2015,5,17,\"MQ\",\"3498\",\"LGA\",\"CHO\",-3.00,-24.00,0.00,\"\",0.00,69.00,47.00,305.00,,,,,,\n2015,5,18,\"MQ\",\"3498\",\"LGA\",\"CHO\",,,1.00,\"C\",0.00,,,305.00,,,,,,\n2015,5,19,\"MQ\",\"3498\",\"LGA\",\"CHO\",27.00,12.00,0.00,\"\",0.00,75.00,49.00,305.00,,,,,,\n2015,5,20,\"MQ\",\"3498\",\"LGA\",\"CHO\",-11.00,-18.00,0.00,\"\",0.00,83.00,54.00,305.00,,,,,,\n2015,5,21,\"MQ\",\"3498\",\"LGA\",\"CHO\",-5.00,-18.00,0.00,\"\",0.00,77.00,62.00,305.00,,,,,,\n2015,5,22,\"MQ\",\"3498\",\"LGA\",\"CHO\",18.00,12.00,0.00,\"\",0.00,84.00,52.00,305.00,,,,,,\n2015,5,23,\"MQ\",\"3498\",\"LGA\",\"CHO\",-14.00,-36.00,0.00,\"\",0.00,68.00,47.00,305.00,,,,,,\n2015,5,24,\"MQ\",\"3498\",\"LGA\",\"CHO\",32.00,18.00,0.00,\"\",0.00,76.00,56.00,305.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,25,\"MQ\",\"3498\",\"LGA\",\"CHO\",128.00,121.00,0.00,\"\",0.00,83.00,51.00,305.00,0.00,0.00,0.00,0.00,121.00,\n2015,5,26,\"MQ\",\"3498\",\"LGA\",\"CHO\",-13.00,-31.00,0.00,\"\",0.00,72.00,51.00,305.00,,,,,,\n2015,5,27,\"MQ\",\"3498\",\"LGA\",\"CHO\",-10.00,-19.00,0.00,\"\",0.00,81.00,55.00,305.00,,,,,,\n2015,5,28,\"MQ\",\"3498\",\"LGA\",\"CHO\",-1.00,-19.00,0.00,\"\",0.00,72.00,53.00,305.00,,,,,,\n2015,5,29,\"MQ\",\"3498\",\"LGA\",\"CHO\",-4.00,2.00,0.00,\"\",0.00,96.00,59.00,305.00,,,,,,\n2015,5,30,\"MQ\",\"3498\",\"LGA\",\"CHO\",,,1.00,\"A\",0.00,,,305.00,,,,,,\n2015,5,31,\"MQ\",\"3498\",\"LGA\",\"CHO\",-8.00,-24.00,0.00,\"\",0.00,74.00,48.00,305.00,,,,,,\n2015,5,1,\"MQ\",\"3583\",\"LGA\",\"SDF\",0.00,-6.00,0.00,\"\",0.00,135.00,102.00,659.00,,,,,,\n2015,5,3,\"MQ\",\"3583\",\"LGA\",\"SDF\",0.00,-11.00,0.00,\"\",0.00,129.00,101.00,659.00,,,,,,\n2015,5,1,\"MQ\",\"3583\",\"SDF\",\"LGA\",6.00,2.00,0.00,\"\",0.00,129.00,104.00,659.00,,,,,,\n2015,5,3,\"MQ\",\"3583\",\"SDF\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,136.00,99.00,659.00,,,,,,\n2015,5,1,\"MQ\",\"3586\",\"CMH\",\"LGA\",196.00,195.00,0.00,\"\",0.00,101.00,83.00,479.00,195.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"MQ\",\"3586\",\"CMH\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,91.00,74.00,479.00,,,,,,\n2015,5,4,\"MQ\",\"3586\",\"CMH\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,96.00,80.00,479.00,,,,,,\n2015,5,5,\"MQ\",\"3586\",\"CMH\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,98.00,78.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3586\",\"CMH\",\"LGA\",13.00,19.00,0.00,\"\",0.00,108.00,86.00,479.00,13.00,0.00,6.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3586\",\"CMH\",\"LGA\",-9.00,-15.00,0.00,\"\",0.00,96.00,74.00,479.00,,,,,,\n2015,5,8,\"MQ\",\"3586\",\"CMH\",\"LGA\",-4.00,2.00,0.00,\"\",0.00,108.00,84.00,479.00,,,,,,\n2015,5,10,\"MQ\",\"3586\",\"CMH\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,101.00,81.00,479.00,,,,,,\n2015,5,11,\"MQ\",\"3586\",\"CMH\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,104.00,77.00,479.00,,,,,,\n2015,5,12,\"MQ\",\"3586\",\"CMH\",\"LGA\",-5.00,-1.00,0.00,\"\",0.00,106.00,84.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3586\",\"CMH\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,91.00,69.00,479.00,,,,,,\n2015,5,14,\"MQ\",\"3586\",\"CMH\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,94.00,74.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3586\",\"CMH\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,94.00,74.00,479.00,,,,,,\n2015,5,17,\"MQ\",\"3586\",\"CMH\",\"LGA\",40.00,45.00,0.00,\"\",0.00,107.00,80.00,479.00,40.00,0.00,5.00,0.00,0.00,\n2015,5,18,\"MQ\",\"3586\",\"CMH\",\"LGA\",-3.00,89.00,0.00,\"\",0.00,194.00,110.00,479.00,0.00,0.00,89.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3586\",\"CMH\",\"LGA\",88.00,95.00,0.00,\"\",0.00,109.00,77.00,479.00,0.00,0.00,95.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3586\",\"CMH\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,84.00,65.00,479.00,,,,,,\n2015,5,21,\"MQ\",\"3586\",\"CMH\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,98.00,78.00,479.00,,,,,,\n2015,5,22,\"MQ\",\"3586\",\"CMH\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,106.00,71.00,479.00,,,,,,\n2015,5,24,\"MQ\",\"3586\",\"CMH\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,101.00,72.00,479.00,,,,,,\n2015,5,25,\"MQ\",\"3586\",\"CMH\",\"LGA\",28.00,29.00,0.00,\"\",0.00,103.00,75.00,479.00,28.00,0.00,1.00,0.00,0.00,\n2015,5,26,\"MQ\",\"3586\",\"CMH\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,91.00,73.00,479.00,,,,,,\n2015,5,27,\"MQ\",\"3586\",\"CMH\",\"LGA\",8.00,6.00,0.00,\"\",0.00,100.00,78.00,479.00,,,,,,\n2015,5,28,\"MQ\",\"3586\",\"CMH\",\"LGA\",-6.00,0.00,0.00,\"\",0.00,108.00,76.00,479.00,,,,,,\n2015,5,29,\"MQ\",\"3586\",\"CMH\",\"LGA\",-4.00,5.00,0.00,\"\",0.00,111.00,76.00,479.00,,,,,,\n2015,5,31,\"MQ\",\"3586\",\"CMH\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,97.00,75.00,479.00,,,,,,\n2015,5,1,\"MQ\",\"3587\",\"LGA\",\"CLE\",6.00,-15.00,0.00,\"\",0.00,87.00,64.00,419.00,,,,,,\n2015,5,3,\"MQ\",\"3587\",\"LGA\",\"CLE\",-5.00,-20.00,0.00,\"\",0.00,93.00,66.00,419.00,,,,,,\n2015,5,4,\"MQ\",\"3587\",\"LGA\",\"CLE\",-12.00,-18.00,0.00,\"\",0.00,91.00,68.00,419.00,,,,,,\n2015,5,5,\"MQ\",\"3587\",\"LGA\",\"CLE\",-9.00,-6.00,0.00,\"\",0.00,100.00,71.00,419.00,,,,,,\n2015,5,6,\"MQ\",\"3587\",\"LGA\",\"CLE\",-7.00,16.00,0.00,\"\",0.00,120.00,69.00,419.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3587\",\"LGA\",\"CLE\",-3.00,-8.00,0.00,\"\",0.00,92.00,64.00,419.00,,,,,,\n2015,5,8,\"MQ\",\"3587\",\"LGA\",\"CLE\",-12.00,-18.00,0.00,\"\",0.00,91.00,64.00,419.00,,,,,,\n2015,5,10,\"MQ\",\"3587\",\"LGA\",\"CLE\",-5.00,0.00,0.00,\"\",0.00,102.00,79.00,419.00,,,,,,\n2015,5,11,\"MQ\",\"3587\",\"LGA\",\"CLE\",116.00,119.00,0.00,\"\",0.00,100.00,67.00,419.00,13.00,0.00,3.00,0.00,103.00,\n2015,5,12,\"MQ\",\"3587\",\"LGA\",\"CLE\",-5.00,-6.00,0.00,\"\",0.00,96.00,75.00,419.00,,,,,,\n2015,5,13,\"MQ\",\"3587\",\"LGA\",\"CLE\",5.00,31.00,0.00,\"\",0.00,123.00,74.00,419.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,14,\"MQ\",\"3587\",\"LGA\",\"CLE\",-8.00,-8.00,0.00,\"\",0.00,97.00,73.00,419.00,,,,,,\n2015,5,15,\"MQ\",\"3587\",\"LGA\",\"CLE\",-8.00,-13.00,0.00,\"\",0.00,92.00,69.00,419.00,,,,,,\n2015,5,17,\"MQ\",\"3587\",\"LGA\",\"CLE\",-5.00,-14.00,0.00,\"\",0.00,88.00,64.00,419.00,,,,,,\n2015,5,18,\"MQ\",\"3587\",\"LGA\",\"CLE\",112.00,152.00,0.00,\"\",0.00,137.00,72.00,419.00,0.00,0.00,40.00,0.00,112.00,\n2015,5,19,\"MQ\",\"3587\",\"LGA\",\"CLE\",105.00,95.00,0.00,\"\",0.00,87.00,67.00,419.00,1.00,0.00,0.00,0.00,94.00,\n2015,5,20,\"MQ\",\"3587\",\"LGA\",\"CLE\",-6.00,39.00,0.00,\"\",0.00,142.00,75.00,419.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3587\",\"LGA\",\"CLE\",-11.00,-2.00,0.00,\"\",0.00,106.00,69.00,419.00,,,,,,\n2015,5,22,\"MQ\",\"3587\",\"LGA\",\"CLE\",-6.00,-10.00,0.00,\"\",0.00,93.00,75.00,419.00,,,,,,\n2015,5,24,\"MQ\",\"3587\",\"LGA\",\"CLE\",-10.00,-22.00,0.00,\"\",0.00,85.00,69.00,419.00,,,,,,\n2015,5,25,\"MQ\",\"3587\",\"LGA\",\"CLE\",-9.00,-21.00,0.00,\"\",0.00,85.00,67.00,419.00,,,,,,\n2015,5,26,\"MQ\",\"3587\",\"LGA\",\"CLE\",-6.00,-7.00,0.00,\"\",0.00,96.00,71.00,419.00,,,,,,\n2015,5,27,\"MQ\",\"3587\",\"LGA\",\"CLE\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,28,\"MQ\",\"3587\",\"LGA\",\"CLE\",-5.00,-2.00,0.00,\"\",0.00,100.00,66.00,419.00,,,,,,\n2015,5,29,\"MQ\",\"3587\",\"LGA\",\"CLE\",0.00,-10.00,0.00,\"\",0.00,87.00,65.00,419.00,,,,,,\n2015,5,31,\"MQ\",\"3587\",\"LGA\",\"CLE\",126.00,160.00,0.00,\"\",0.00,131.00,78.00,419.00,0.00,126.00,34.00,0.00,0.00,\n2015,5,1,\"MQ\",\"3588\",\"CLE\",\"LGA\",-1.00,27.00,0.00,\"\",0.00,120.00,75.00,419.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,2,\"MQ\",\"3588\",\"CLE\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,85.00,67.00,419.00,,,,,,\n2015,5,4,\"MQ\",\"3588\",\"CLE\",\"LGA\",-6.00,13.00,0.00,\"\",0.00,111.00,72.00,419.00,,,,,,\n2015,5,5,\"MQ\",\"3588\",\"CLE\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,91.00,74.00,419.00,,,,,,\n2015,5,6,\"MQ\",\"3588\",\"CLE\",\"LGA\",-6.00,22.00,0.00,\"\",0.00,120.00,70.00,419.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3588\",\"CLE\",\"LGA\",-5.00,3.00,0.00,\"\",0.00,100.00,69.00,419.00,,,,,,\n2015,5,8,\"MQ\",\"3588\",\"CLE\",\"LGA\",-5.00,27.00,0.00,\"\",0.00,124.00,101.00,419.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3588\",\"CLE\",\"LGA\",1.00,8.00,0.00,\"\",0.00,99.00,81.00,419.00,,,,,,\n2015,5,11,\"MQ\",\"3588\",\"CLE\",\"LGA\",-4.00,6.00,0.00,\"\",0.00,102.00,74.00,419.00,,,,,,\n2015,5,12,\"MQ\",\"3588\",\"CLE\",\"LGA\",-9.00,-17.00,0.00,\"\",0.00,84.00,65.00,419.00,,,,,,\n2015,5,13,\"MQ\",\"3588\",\"CLE\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,95.00,60.00,419.00,,,,,,\n2015,5,14,\"MQ\",\"3588\",\"CLE\",\"LGA\",-5.00,20.00,0.00,\"\",0.00,117.00,63.00,419.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,15,\"MQ\",\"3588\",\"CLE\",\"LGA\",-3.00,10.00,0.00,\"\",0.00,105.00,70.00,419.00,,,,,,\n2015,5,16,\"MQ\",\"3588\",\"CLE\",\"LGA\",-2.00,5.00,0.00,\"\",0.00,99.00,74.00,419.00,,,,,,\n2015,5,18,\"MQ\",\"3588\",\"CLE\",\"LGA\",173.00,202.00,0.00,\"\",0.00,121.00,100.00,419.00,0.00,0.00,202.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3588\",\"CLE\",\"LGA\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,20,\"MQ\",\"3588\",\"CLE\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,98.00,62.00,419.00,,,,,,\n2015,5,21,\"MQ\",\"3588\",\"CLE\",\"LGA\",4.00,18.00,0.00,\"\",0.00,106.00,63.00,419.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3588\",\"CLE\",\"LGA\",-6.00,-3.00,0.00,\"\",0.00,95.00,66.00,419.00,,,,,,\n2015,5,23,\"MQ\",\"3588\",\"CLE\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,91.00,61.00,419.00,,,,,,\n2015,5,25,\"MQ\",\"3588\",\"CLE\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,82.00,66.00,419.00,,,,,,\n2015,5,26,\"MQ\",\"3588\",\"CLE\",\"LGA\",,,1.00,\"A\",0.00,,,419.00,,,,,,\n2015,5,27,\"MQ\",\"3588\",\"CLE\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,94.00,75.00,419.00,,,,,,\n2015,5,28,\"MQ\",\"3588\",\"CLE\",\"LGA\",,,1.00,\"C\",0.00,,,419.00,,,,,,\n2015,5,29,\"MQ\",\"3588\",\"CLE\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,89.00,71.00,419.00,,,,,,\n2015,5,30,\"MQ\",\"3588\",\"CLE\",\"LGA\",272.00,296.00,0.00,\"\",0.00,116.00,69.00,419.00,20.00,0.00,24.00,0.00,252.00,\n2015,5,1,\"MQ\",\"3594\",\"GSO\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,84.00,66.00,461.00,,,,,,\n2015,5,2,\"MQ\",\"3594\",\"GSO\",\"LGA\",-8.00,3.00,0.00,\"\",0.00,107.00,82.00,461.00,,,,,,\n2015,5,4,\"MQ\",\"3594\",\"GSO\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,87.00,70.00,461.00,,,,,,\n2015,5,5,\"MQ\",\"3594\",\"GSO\",\"LGA\",-9.00,3.00,0.00,\"\",0.00,101.00,76.00,461.00,,,,,,\n2015,5,6,\"MQ\",\"3594\",\"GSO\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,86.00,70.00,461.00,,,,,,\n2015,5,7,\"MQ\",\"3594\",\"GSO\",\"LGA\",-6.00,-1.00,0.00,\"\",0.00,94.00,70.00,461.00,,,,,,\n2015,5,8,\"MQ\",\"3594\",\"GSO\",\"LGA\",-11.00,-5.00,0.00,\"\",0.00,95.00,77.00,461.00,,,,,,\n2015,5,9,\"MQ\",\"3594\",\"GSO\",\"LGA\",-7.00,11.00,0.00,\"\",0.00,114.00,88.00,461.00,,,,,,\n2015,5,11,\"MQ\",\"3594\",\"GSO\",\"LGA\",-2.00,0.00,0.00,\"\",0.00,91.00,71.00,461.00,,,,,,\n2015,5,12,\"MQ\",\"3594\",\"GSO\",\"LGA\",-10.00,-9.00,0.00,\"\",0.00,90.00,66.00,461.00,,,,,,\n2015,5,13,\"MQ\",\"3594\",\"GSO\",\"LGA\",-10.00,-11.00,0.00,\"\",0.00,88.00,63.00,461.00,,,,,,\n2015,5,14,\"MQ\",\"3594\",\"GSO\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,87.00,70.00,461.00,,,,,,\n2015,5,15,\"MQ\",\"3594\",\"GSO\",\"LGA\",-8.00,-10.00,0.00,\"\",0.00,87.00,70.00,461.00,,,,,,\n2015,5,16,\"MQ\",\"3594\",\"GSO\",\"LGA\",-10.00,6.00,0.00,\"\",0.00,112.00,80.00,461.00,,,,,,\n2015,5,18,\"MQ\",\"3594\",\"GSO\",\"LGA\",-10.00,,0.00,\"\",1.00,,,461.00,,,,,,\n2015,5,19,\"MQ\",\"3594\",\"GSO\",\"LGA\",5.00,16.00,0.00,\"\",0.00,100.00,76.00,461.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3594\",\"GSO\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,86.00,66.00,461.00,,,,,,\n2015,5,21,\"MQ\",\"3594\",\"GSO\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,84.00,67.00,461.00,,,,,,\n2015,5,22,\"MQ\",\"3594\",\"GSO\",\"LGA\",-9.00,17.00,0.00,\"\",0.00,115.00,62.00,461.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,23,\"MQ\",\"3594\",\"GSO\",\"LGA\",-14.00,-23.00,0.00,\"\",0.00,87.00,68.00,461.00,,,,,,\n2015,5,25,\"MQ\",\"3594\",\"GSO\",\"LGA\",-11.00,-21.00,0.00,\"\",0.00,79.00,67.00,461.00,,,,,,\n2015,5,26,\"MQ\",\"3594\",\"GSO\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,89.00,69.00,461.00,,,,,,\n2015,5,27,\"MQ\",\"3594\",\"GSO\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,81.00,68.00,461.00,,,,,,\n2015,5,28,\"MQ\",\"3594\",\"GSO\",\"LGA\",-10.00,-16.00,0.00,\"\",0.00,83.00,69.00,461.00,,,,,,\n2015,5,29,\"MQ\",\"3594\",\"GSO\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,82.00,68.00,461.00,,,,,,\n2015,5,30,\"MQ\",\"3594\",\"GSO\",\"LGA\",,,1.00,\"A\",0.00,,,461.00,,,,,,\n2015,5,1,\"MQ\",\"3595\",\"LGA\",\"SDF\",-13.00,-26.00,0.00,\"\",0.00,130.00,99.00,659.00,,,,,,\n2015,5,3,\"MQ\",\"3595\",\"LGA\",\"SDF\",-9.00,-19.00,0.00,\"\",0.00,130.00,102.00,659.00,,,,,,\n2015,5,1,\"MQ\",\"3595\",\"SDF\",\"LGA\",-11.00,-2.00,0.00,\"\",0.00,134.00,101.00,659.00,,,,,,\n2015,5,3,\"MQ\",\"3595\",\"SDF\",\"LGA\",-6.00,2.00,0.00,\"\",0.00,132.00,102.00,659.00,,,,,,\n2015,5,1,\"MQ\",\"3599\",\"CLE\",\"LGA\",11.00,10.00,0.00,\"\",0.00,97.00,74.00,419.00,,,,,,\n2015,5,3,\"MQ\",\"3599\",\"CLE\",\"LGA\",-8.00,-25.00,0.00,\"\",0.00,81.00,69.00,419.00,,,,,,\n2015,5,4,\"MQ\",\"3599\",\"CLE\",\"LGA\",-9.00,-17.00,0.00,\"\",0.00,90.00,70.00,419.00,,,,,,\n2015,5,5,\"MQ\",\"3599\",\"CLE\",\"LGA\",1.00,-10.00,0.00,\"\",0.00,87.00,67.00,419.00,,,,,,\n2015,5,6,\"MQ\",\"3599\",\"CLE\",\"LGA\",5.00,-11.00,0.00,\"\",0.00,82.00,66.00,419.00,,,,,,\n2015,5,1,\"MQ\",\"3599\",\"LGA\",\"CLE\",-3.00,-10.00,0.00,\"\",0.00,93.00,70.00,419.00,,,,,,\n2015,5,3,\"MQ\",\"3599\",\"LGA\",\"CLE\",-6.00,-19.00,0.00,\"\",0.00,87.00,67.00,419.00,,,,,,\n2015,5,4,\"MQ\",\"3599\",\"LGA\",\"CLE\",5.00,-4.00,0.00,\"\",0.00,91.00,66.00,419.00,,,,,,\n2015,5,5,\"MQ\",\"3599\",\"LGA\",\"CLE\",-3.00,-14.00,0.00,\"\",0.00,89.00,64.00,419.00,,,,,,\n2015,5,6,\"MQ\",\"3599\",\"LGA\",\"CLE\",-5.00,-12.00,0.00,\"\",0.00,93.00,71.00,419.00,,,,,,\n2015,5,1,\"MQ\",\"3573\",\"LGA\",\"CMH\",43.00,23.00,0.00,\"\",0.00,96.00,70.00,479.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,3,\"MQ\",\"3573\",\"LGA\",\"CMH\",50.00,28.00,0.00,\"\",0.00,94.00,71.00,479.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"MQ\",\"3573\",\"LGA\",\"CMH\",-1.00,-9.00,0.00,\"\",0.00,108.00,75.00,479.00,,,,,,\n2015,5,5,\"MQ\",\"3573\",\"LGA\",\"CMH\",-8.00,-19.00,0.00,\"\",0.00,105.00,77.00,479.00,,,,,,\n2015,5,6,\"MQ\",\"3573\",\"LGA\",\"CMH\",29.00,27.00,0.00,\"\",0.00,114.00,72.00,479.00,1.00,0.00,0.00,0.00,26.00,\n2015,5,7,\"MQ\",\"3573\",\"LGA\",\"CMH\",-2.00,-14.00,0.00,\"\",0.00,104.00,76.00,479.00,,,,,,\n2015,5,8,\"MQ\",\"3573\",\"LGA\",\"CMH\",5.00,-14.00,0.00,\"\",0.00,97.00,71.00,479.00,,,,,,\n2015,5,10,\"MQ\",\"3573\",\"LGA\",\"CMH\",-3.00,-27.00,0.00,\"\",0.00,92.00,70.00,479.00,,,,,,\n2015,5,11,\"MQ\",\"3573\",\"LGA\",\"CMH\",15.00,20.00,0.00,\"\",0.00,121.00,100.00,479.00,0.00,0.00,5.00,0.00,15.00,\n2015,5,12,\"MQ\",\"3573\",\"LGA\",\"CMH\",-3.00,1.00,0.00,\"\",0.00,120.00,97.00,479.00,,,,,,\n2015,5,13,\"MQ\",\"3573\",\"LGA\",\"CMH\",-8.00,-9.00,0.00,\"\",0.00,115.00,81.00,479.00,,,,,,\n2015,5,14,\"MQ\",\"3573\",\"LGA\",\"CMH\",-9.00,-20.00,0.00,\"\",0.00,105.00,79.00,479.00,,,,,,\n2015,5,15,\"MQ\",\"3573\",\"LGA\",\"CMH\",-11.00,-23.00,0.00,\"\",0.00,104.00,74.00,479.00,,,,,,\n2015,5,17,\"MQ\",\"3573\",\"LGA\",\"CMH\",-3.00,-17.00,0.00,\"\",0.00,102.00,74.00,479.00,,,,,,\n2015,5,18,\"MQ\",\"3573\",\"LGA\",\"CMH\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,19,\"MQ\",\"3573\",\"LGA\",\"CMH\",80.00,60.00,0.00,\"\",0.00,96.00,78.00,479.00,60.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3573\",\"LGA\",\"CMH\",5.00,36.00,0.00,\"\",0.00,147.00,94.00,479.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3573\",\"LGA\",\"CMH\",-9.00,-10.00,0.00,\"\",0.00,115.00,85.00,479.00,,,,,,\n2015,5,22,\"MQ\",\"3573\",\"LGA\",\"CMH\",-7.00,-18.00,0.00,\"\",0.00,105.00,79.00,479.00,,,,,,\n2015,5,24,\"MQ\",\"3573\",\"LGA\",\"CMH\",-17.00,-41.00,0.00,\"\",0.00,92.00,77.00,479.00,,,,,,\n2015,5,25,\"MQ\",\"3573\",\"LGA\",\"CMH\",-8.00,-23.00,0.00,\"\",0.00,101.00,75.00,479.00,,,,,,\n2015,5,26,\"MQ\",\"3573\",\"LGA\",\"CMH\",-5.00,13.00,0.00,\"\",0.00,134.00,102.00,479.00,,,,,,\n2015,5,27,\"MQ\",\"3573\",\"LGA\",\"CMH\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,28,\"MQ\",\"3573\",\"LGA\",\"CMH\",34.00,64.00,0.00,\"\",0.00,146.00,74.00,479.00,0.00,0.00,30.00,0.00,34.00,\n2015,5,29,\"MQ\",\"3573\",\"LGA\",\"CMH\",89.00,84.00,0.00,\"\",0.00,111.00,74.00,479.00,0.00,0.00,0.00,0.00,84.00,\n2015,5,31,\"MQ\",\"3573\",\"LGA\",\"CMH\",,,1.00,\"C\",0.00,,,479.00,,,,,,\n2015,5,11,\"MQ\",\"3610\",\"LGA\",\"DTW\",54.00,40.00,0.00,\"\",0.00,98.00,81.00,502.00,40.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3610\",\"LGA\",\"DTW\",-11.00,-15.00,0.00,\"\",0.00,108.00,81.00,502.00,,,,,,\n2015,5,13,\"MQ\",\"3610\",\"LGA\",\"DTW\",-6.00,18.00,0.00,\"\",0.00,136.00,92.00,502.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,14,\"MQ\",\"3610\",\"LGA\",\"DTW\",-2.00,-9.00,0.00,\"\",0.00,105.00,80.00,502.00,,,,,,\n2015,5,15,\"MQ\",\"3610\",\"LGA\",\"DTW\",-8.00,-16.00,0.00,\"\",0.00,104.00,79.00,502.00,,,,,,\n2015,5,18,\"MQ\",\"3610\",\"LGA\",\"DTW\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,19,\"MQ\",\"3610\",\"LGA\",\"DTW\",0.00,10.00,0.00,\"\",0.00,122.00,80.00,502.00,,,,,,\n2015,5,20,\"MQ\",\"3610\",\"LGA\",\"DTW\",-8.00,-13.00,0.00,\"\",0.00,107.00,85.00,502.00,,,,,,\n2015,5,21,\"MQ\",\"3610\",\"LGA\",\"DTW\",21.00,24.00,0.00,\"\",0.00,115.00,93.00,502.00,21.00,0.00,3.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3610\",\"LGA\",\"DTW\",25.00,37.00,0.00,\"\",0.00,124.00,89.00,502.00,25.00,0.00,12.00,0.00,0.00,\n2015,5,25,\"MQ\",\"3610\",\"LGA\",\"DTW\",0.00,-11.00,0.00,\"\",0.00,101.00,79.00,502.00,,,,,,\n2015,5,26,\"MQ\",\"3610\",\"LGA\",\"DTW\",-4.00,-3.00,0.00,\"\",0.00,113.00,82.00,502.00,,,,,,\n2015,5,27,\"MQ\",\"3610\",\"LGA\",\"DTW\",-6.00,-29.00,0.00,\"\",0.00,89.00,74.00,502.00,,,,,,\n2015,5,28,\"MQ\",\"3610\",\"LGA\",\"DTW\",-2.00,-12.00,0.00,\"\",0.00,102.00,80.00,502.00,,,,,,\n2015,5,29,\"MQ\",\"3610\",\"LGA\",\"DTW\",-3.00,-2.00,0.00,\"\",0.00,113.00,79.00,502.00,,,,,,\n2015,5,1,\"MQ\",\"3611\",\"LGA\",\"STL\",23.00,3.00,0.00,\"\",0.00,145.00,117.00,888.00,,,,,,\n2015,5,2,\"MQ\",\"3611\",\"LGA\",\"STL\",-4.00,-26.00,0.00,\"\",0.00,143.00,123.00,888.00,,,,,,\n2015,5,3,\"MQ\",\"3611\",\"LGA\",\"STL\",-7.00,-32.00,0.00,\"\",0.00,140.00,122.00,888.00,,,,,,\n2015,5,4,\"MQ\",\"3611\",\"LGA\",\"STL\",-7.00,-29.00,0.00,\"\",0.00,143.00,120.00,888.00,,,,,,\n2015,5,5,\"MQ\",\"3611\",\"LGA\",\"STL\",-5.00,-20.00,0.00,\"\",0.00,150.00,125.00,888.00,,,,,,\n2015,5,6,\"MQ\",\"3611\",\"LGA\",\"STL\",46.00,62.00,0.00,\"\",0.00,181.00,128.00,888.00,0.00,0.00,16.00,0.00,46.00,\n2015,5,1,\"MQ\",\"3615\",\"LGA\",\"XNA\",-12.00,-29.00,0.00,\"\",0.00,183.00,147.00,1147.00,,,,,,\n2015,5,2,\"MQ\",\"3615\",\"LGA\",\"XNA\",-11.00,-41.00,0.00,\"\",0.00,168.00,149.00,1147.00,,,,,,\n2015,5,3,\"MQ\",\"3615\",\"LGA\",\"XNA\",-9.00,-37.00,0.00,\"\",0.00,172.00,149.00,1147.00,,,,,,\n2015,5,4,\"MQ\",\"3615\",\"LGA\",\"XNA\",52.00,29.00,0.00,\"\",0.00,177.00,148.00,1147.00,0.00,0.00,0.00,0.00,29.00,\n2015,5,5,\"MQ\",\"3615\",\"LGA\",\"XNA\",98.00,64.00,0.00,\"\",0.00,166.00,145.00,1147.00,17.00,0.00,0.00,0.00,47.00,\n2015,5,6,\"MQ\",\"3615\",\"LGA\",\"XNA\",-6.00,-13.00,0.00,\"\",0.00,193.00,142.00,1147.00,,,,,,\n2015,5,7,\"MQ\",\"3615\",\"LGA\",\"XNA\",-8.00,-28.00,0.00,\"\",0.00,180.00,152.00,1147.00,,,,,,\n2015,5,8,\"MQ\",\"3615\",\"LGA\",\"XNA\",-1.00,-23.00,0.00,\"\",0.00,178.00,148.00,1147.00,,,,,,\n2015,5,9,\"MQ\",\"3615\",\"LGA\",\"XNA\",-11.00,-22.00,0.00,\"\",0.00,187.00,174.00,1147.00,,,,,,\n2015,5,10,\"MQ\",\"3615\",\"LGA\",\"XNA\",0.00,-25.00,0.00,\"\",0.00,175.00,149.00,1147.00,,,,,,\n2015,5,11,\"MQ\",\"3615\",\"LGA\",\"XNA\",141.00,123.00,0.00,\"\",0.00,182.00,162.00,1147.00,123.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3615\",\"LGA\",\"XNA\",14.00,-1.00,0.00,\"\",0.00,185.00,164.00,1147.00,,,,,,\n2015,5,13,\"MQ\",\"3615\",\"LGA\",\"XNA\",-4.00,-12.00,0.00,\"\",0.00,192.00,157.00,1147.00,,,,,,\n2015,5,14,\"MQ\",\"3615\",\"LGA\",\"XNA\",-2.00,-27.00,0.00,\"\",0.00,175.00,150.00,1147.00,,,,,,\n2015,5,15,\"MQ\",\"3615\",\"LGA\",\"XNA\",-8.00,-14.00,0.00,\"\",0.00,194.00,159.00,1147.00,,,,,,\n2015,5,16,\"MQ\",\"3615\",\"LGA\",\"XNA\",-4.00,-13.00,0.00,\"\",0.00,189.00,162.00,1147.00,,,,,,\n2015,5,17,\"MQ\",\"3615\",\"LGA\",\"XNA\",0.00,-20.00,0.00,\"\",0.00,180.00,149.00,1147.00,,,,,,\n2015,5,18,\"MQ\",\"3615\",\"LGA\",\"XNA\",,,1.00,\"C\",0.00,,,1147.00,,,,,,\n2015,5,19,\"MQ\",\"3615\",\"LGA\",\"XNA\",47.00,40.00,0.00,\"\",0.00,193.00,158.00,1147.00,0.00,0.00,0.00,0.00,40.00,\n2015,5,20,\"MQ\",\"3615\",\"LGA\",\"XNA\",9.00,20.00,0.00,\"\",0.00,211.00,160.00,1147.00,9.00,0.00,11.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3615\",\"LGA\",\"XNA\",-9.00,7.00,0.00,\"\",0.00,216.00,174.00,1147.00,,,,,,\n2015,5,22,\"MQ\",\"3615\",\"LGA\",\"XNA\",-10.00,-19.00,0.00,\"\",0.00,191.00,167.00,1147.00,,,,,,\n2015,5,23,\"MQ\",\"3615\",\"LGA\",\"XNA\",-10.00,-32.00,0.00,\"\",0.00,176.00,159.00,1147.00,,,,,,\n2015,5,24,\"MQ\",\"3615\",\"LGA\",\"XNA\",22.00,-8.00,0.00,\"\",0.00,170.00,156.00,1147.00,,,,,,\n2015,5,25,\"MQ\",\"3615\",\"LGA\",\"XNA\",42.00,40.00,0.00,\"\",0.00,198.00,164.00,1147.00,5.00,0.00,0.00,0.00,35.00,\n2015,5,26,\"MQ\",\"3615\",\"LGA\",\"XNA\",10.00,3.00,0.00,\"\",0.00,193.00,163.00,1147.00,,,,,,\n2015,5,27,\"MQ\",\"3615\",\"LGA\",\"XNA\",49.00,36.00,0.00,\"\",0.00,187.00,159.00,1147.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"MQ\",\"3615\",\"LGA\",\"XNA\",16.00,0.00,0.00,\"\",0.00,184.00,148.00,1147.00,,,,,,\n2015,5,29,\"MQ\",\"3615\",\"LGA\",\"XNA\",131.00,105.00,0.00,\"\",0.00,174.00,151.00,1147.00,0.00,0.00,0.00,0.00,105.00,\n2015,5,30,\"MQ\",\"3615\",\"LGA\",\"XNA\",-7.00,-28.00,0.00,\"\",0.00,177.00,155.00,1147.00,,,,,,\n2015,5,31,\"MQ\",\"3615\",\"LGA\",\"XNA\",,,1.00,\"C\",0.00,,,1147.00,,,,,,\n2015,5,1,\"MQ\",\"3626\",\"ATL\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,130.00,98.00,762.00,,,,,,\n2015,5,2,\"MQ\",\"3626\",\"ATL\",\"LGA\",,,1.00,\"A\",0.00,,,762.00,,,,,,\n2015,5,4,\"MQ\",\"3626\",\"ATL\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,124.00,105.00,762.00,,,,,,\n2015,5,5,\"MQ\",\"3626\",\"ATL\",\"LGA\",-8.00,-3.00,0.00,\"\",0.00,135.00,107.00,762.00,,,,,,\n2015,5,6,\"MQ\",\"3626\",\"ATL\",\"LGA\",-2.00,3.00,0.00,\"\",0.00,135.00,102.00,762.00,,,,,,\n2015,5,7,\"MQ\",\"3626\",\"ATL\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,126.00,108.00,762.00,,,,,,\n2015,5,8,\"MQ\",\"3626\",\"ATL\",\"LGA\",-5.00,30.00,0.00,\"\",0.00,165.00,116.00,762.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3626\",\"ATL\",\"LGA\",0.00,2.00,0.00,\"\",0.00,132.00,116.00,762.00,,,,,,\n2015,5,11,\"MQ\",\"3626\",\"ATL\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,130.00,110.00,762.00,,,,,,\n2015,5,12,\"MQ\",\"3626\",\"ATL\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,130.00,104.00,762.00,,,,,,\n2015,5,13,\"MQ\",\"3626\",\"ATL\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,127.00,102.00,762.00,,,,,,\n2015,5,14,\"MQ\",\"3626\",\"ATL\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,132.00,104.00,762.00,,,,,,\n2015,5,15,\"MQ\",\"3626\",\"ATL\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,126.00,104.00,762.00,,,,,,\n2015,5,16,\"MQ\",\"3626\",\"ATL\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,124.00,103.00,762.00,,,,,,\n2015,5,18,\"MQ\",\"3626\",\"ATL\",\"LGA\",234.00,278.00,0.00,\"\",0.00,174.00,116.00,762.00,0.00,0.00,278.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3626\",\"ATL\",\"LGA\",32.00,128.00,0.00,\"\",0.00,226.00,108.00,762.00,32.00,0.00,96.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3626\",\"ATL\",\"LGA\",-10.00,-8.00,0.00,\"\",0.00,132.00,99.00,762.00,,,,,,\n2015,5,21,\"MQ\",\"3626\",\"ATL\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,125.00,97.00,762.00,,,,,,\n2015,5,22,\"MQ\",\"3626\",\"ATL\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,126.00,98.00,762.00,,,,,,\n2015,5,23,\"MQ\",\"3626\",\"ATL\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,118.00,98.00,762.00,,,,,,\n2015,5,25,\"MQ\",\"3626\",\"ATL\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,125.00,105.00,762.00,,,,,,\n2015,5,26,\"MQ\",\"3626\",\"ATL\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,130.00,101.00,762.00,,,,,,\n2015,5,27,\"MQ\",\"3626\",\"ATL\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,128.00,107.00,762.00,,,,,,\n2015,5,28,\"MQ\",\"3626\",\"ATL\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,122.00,101.00,762.00,,,,,,\n2015,5,29,\"MQ\",\"3626\",\"ATL\",\"LGA\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,30,\"MQ\",\"3626\",\"ATL\",\"LGA\",-4.00,8.00,0.00,\"\",0.00,142.00,112.00,762.00,,,,,,\n2015,5,1,\"MQ\",\"3633\",\"BUF\",\"ORD\",-7.00,-16.00,0.00,\"\",0.00,100.00,70.00,473.00,,,,,,\n2015,5,3,\"MQ\",\"3633\",\"BUF\",\"ORD\",-5.00,-20.00,0.00,\"\",0.00,94.00,71.00,473.00,,,,,,\n2015,5,4,\"MQ\",\"3633\",\"BUF\",\"ORD\",-5.00,-3.00,0.00,\"\",0.00,111.00,75.00,473.00,,,,,,\n2015,5,5,\"MQ\",\"3633\",\"BUF\",\"ORD\",32.00,31.00,0.00,\"\",0.00,108.00,82.00,473.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,6,\"MQ\",\"3633\",\"BUF\",\"ORD\",-9.00,-18.00,0.00,\"\",0.00,100.00,75.00,473.00,,,,,,\n2015,5,1,\"MQ\",\"3633\",\"ORD\",\"BUF\",-3.00,-12.00,0.00,\"\",0.00,89.00,65.00,473.00,,,,,,\n2015,5,3,\"MQ\",\"3633\",\"ORD\",\"BUF\",-2.00,-19.00,0.00,\"\",0.00,81.00,65.00,473.00,,,,,,\n2015,5,4,\"MQ\",\"3633\",\"ORD\",\"BUF\",5.00,-7.00,0.00,\"\",0.00,86.00,66.00,473.00,,,,,,\n2015,5,5,\"MQ\",\"3633\",\"ORD\",\"BUF\",-5.00,-15.00,0.00,\"\",0.00,88.00,62.00,473.00,,,,,,\n2015,5,6,\"MQ\",\"3633\",\"ORD\",\"BUF\",0.00,-17.00,0.00,\"\",0.00,81.00,63.00,473.00,,,,,,\n2015,5,7,\"MQ\",\"3633\",\"ORD\",\"BUF\",143.00,136.00,0.00,\"\",0.00,97.00,69.00,473.00,29.00,0.00,0.00,0.00,107.00,\n2015,5,8,\"MQ\",\"3633\",\"ORD\",\"BUF\",252.00,236.00,0.00,\"\",0.00,88.00,66.00,473.00,0.00,116.00,0.00,0.00,120.00,\n2015,5,9,\"MQ\",\"3633\",\"ORD\",\"BUF\",16.00,-14.00,0.00,\"\",0.00,74.00,67.00,473.00,,,,,,\n2015,5,10,\"MQ\",\"3633\",\"ORD\",\"BUF\",-3.00,-7.00,0.00,\"\",0.00,100.00,72.00,473.00,,,,,,\n2015,5,11,\"MQ\",\"3633\",\"ORD\",\"BUF\",14.00,12.00,0.00,\"\",0.00,102.00,73.00,473.00,,,,,,\n2015,5,12,\"MQ\",\"3633\",\"ORD\",\"BUF\",92.00,72.00,0.00,\"\",0.00,84.00,62.00,473.00,23.00,0.00,0.00,0.00,49.00,\n2015,5,13,\"MQ\",\"3633\",\"ORD\",\"BUF\",-4.00,-19.00,0.00,\"\",0.00,89.00,67.00,473.00,,,,,,\n2015,5,14,\"MQ\",\"3633\",\"ORD\",\"BUF\",-2.00,-11.00,0.00,\"\",0.00,95.00,67.00,473.00,,,,,,\n2015,5,15,\"MQ\",\"3633\",\"ORD\",\"BUF\",-4.00,-8.00,0.00,\"\",0.00,100.00,66.00,473.00,,,,,,\n2015,5,16,\"MQ\",\"3633\",\"ORD\",\"BUF\",-5.00,-19.00,0.00,\"\",0.00,90.00,71.00,473.00,,,,,,\n2015,5,17,\"MQ\",\"3633\",\"ORD\",\"BUF\",8.00,15.00,0.00,\"\",0.00,111.00,68.00,473.00,8.00,0.00,7.00,0.00,0.00,\n2015,5,18,\"MQ\",\"3633\",\"ORD\",\"BUF\",-1.00,-15.00,0.00,\"\",0.00,90.00,66.00,473.00,,,,,,\n2015,5,19,\"MQ\",\"3633\",\"ORD\",\"BUF\",-4.00,-10.00,0.00,\"\",0.00,98.00,63.00,473.00,,,,,,\n2015,5,20,\"MQ\",\"3633\",\"ORD\",\"BUF\",5.00,-6.00,0.00,\"\",0.00,93.00,62.00,473.00,,,,,,\n2015,5,21,\"MQ\",\"3633\",\"ORD\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,96.00,70.00,473.00,,,,,,\n2015,5,22,\"MQ\",\"3633\",\"ORD\",\"BUF\",-2.00,-6.00,0.00,\"\",0.00,100.00,62.00,473.00,,,,,,\n2015,5,23,\"MQ\",\"3633\",\"ORD\",\"BUF\",-5.00,-23.00,0.00,\"\",0.00,86.00,66.00,473.00,,,,,,\n2015,5,24,\"MQ\",\"3633\",\"ORD\",\"BUF\",47.00,23.00,0.00,\"\",0.00,80.00,63.00,473.00,9.00,0.00,0.00,0.00,14.00,\n2015,5,25,\"MQ\",\"3633\",\"ORD\",\"BUF\",1.00,-2.00,0.00,\"\",0.00,101.00,64.00,473.00,,,,,,\n2015,5,26,\"MQ\",\"3633\",\"ORD\",\"BUF\",-4.00,-1.00,0.00,\"\",0.00,107.00,68.00,473.00,,,,,,\n2015,5,27,\"MQ\",\"3633\",\"ORD\",\"BUF\",-3.00,-9.00,0.00,\"\",0.00,98.00,66.00,473.00,,,,,,\n2015,5,28,\"MQ\",\"3633\",\"ORD\",\"BUF\",10.00,-3.00,0.00,\"\",0.00,91.00,69.00,473.00,,,,,,\n2015,5,29,\"MQ\",\"3633\",\"ORD\",\"BUF\",3.00,7.00,0.00,\"\",0.00,108.00,65.00,473.00,,,,,,\n2015,5,30,\"MQ\",\"3633\",\"ORD\",\"BUF\",-1.00,-12.00,0.00,\"\",0.00,93.00,66.00,473.00,,,,,,\n2015,5,31,\"MQ\",\"3633\",\"ORD\",\"BUF\",7.00,-2.00,0.00,\"\",0.00,95.00,64.00,473.00,,,,,,\n2015,5,1,\"MQ\",\"3634\",\"STL\",\"LGA\",145.00,152.00,0.00,\"\",0.00,150.00,123.00,888.00,145.00,0.00,7.00,0.00,0.00,\n2015,5,2,\"MQ\",\"3634\",\"STL\",\"LGA\",-2.00,4.00,0.00,\"\",0.00,149.00,117.00,888.00,,,,,,\n2015,5,3,\"MQ\",\"3634\",\"STL\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,137.00,118.00,888.00,,,,,,\n2015,5,4,\"MQ\",\"3634\",\"STL\",\"LGA\",,,1.00,\"A\",0.00,,,888.00,,,,,,\n2015,5,5,\"MQ\",\"3634\",\"STL\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,134.00,120.00,888.00,,,,,,\n2015,5,6,\"MQ\",\"3634\",\"STL\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,143.00,122.00,888.00,,,,,,\n2015,5,7,\"MQ\",\"3634\",\"STL\",\"LGA\",-11.00,10.00,0.00,\"\",0.00,164.00,128.00,888.00,,,,,,\n2015,5,8,\"MQ\",\"3634\",\"STL\",\"LGA\",31.00,36.00,0.00,\"\",0.00,148.00,120.00,888.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,9,\"MQ\",\"3634\",\"STL\",\"LGA\",-7.00,5.00,0.00,\"\",0.00,155.00,134.00,888.00,,,,,,\n2015,5,10,\"MQ\",\"3634\",\"STL\",\"LGA\",-9.00,-13.00,0.00,\"\",0.00,139.00,119.00,888.00,,,,,,\n2015,5,11,\"MQ\",\"3634\",\"STL\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,134.00,118.00,888.00,,,,,,\n2015,5,12,\"MQ\",\"3634\",\"STL\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,128.00,107.00,888.00,,,,,,\n2015,5,13,\"MQ\",\"3634\",\"STL\",\"LGA\",-9.00,-21.00,0.00,\"\",0.00,131.00,114.00,888.00,,,,,,\n2015,5,14,\"MQ\",\"3634\",\"STL\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,136.00,110.00,888.00,,,,,,\n2015,5,15,\"MQ\",\"3634\",\"STL\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,129.00,114.00,888.00,,,,,,\n2015,5,16,\"MQ\",\"3634\",\"STL\",\"LGA\",-1.00,7.00,0.00,\"\",0.00,151.00,118.00,888.00,,,,,,\n2015,5,17,\"MQ\",\"3634\",\"STL\",\"LGA\",-6.00,0.00,0.00,\"\",0.00,149.00,115.00,888.00,,,,,,\n2015,5,18,\"MQ\",\"3634\",\"STL\",\"LGA\",113.00,131.00,0.00,\"\",0.00,161.00,109.00,888.00,0.00,0.00,131.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3634\",\"STL\",\"LGA\",71.00,107.00,0.00,\"\",0.00,179.00,109.00,888.00,0.00,0.00,107.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3634\",\"STL\",\"LGA\",5.00,-10.00,0.00,\"\",0.00,128.00,104.00,888.00,,,,,,\n2015,5,21,\"MQ\",\"3634\",\"STL\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,126.00,114.00,888.00,,,,,,\n2015,5,22,\"MQ\",\"3634\",\"STL\",\"LGA\",-8.00,-19.00,0.00,\"\",0.00,132.00,115.00,888.00,,,,,,\n2015,5,23,\"MQ\",\"3634\",\"STL\",\"LGA\",-6.00,-29.00,0.00,\"\",0.00,120.00,104.00,888.00,,,,,,\n2015,5,24,\"MQ\",\"3634\",\"STL\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,129.00,111.00,888.00,,,,,,\n2015,5,25,\"MQ\",\"3634\",\"STL\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,141.00,110.00,888.00,,,,,,\n2015,5,26,\"MQ\",\"3634\",\"STL\",\"LGA\",6.00,4.00,0.00,\"\",0.00,141.00,117.00,888.00,,,,,,\n2015,5,27,\"MQ\",\"3634\",\"STL\",\"LGA\",35.00,27.00,0.00,\"\",0.00,135.00,113.00,888.00,0.00,0.00,0.00,27.00,0.00,\n2015,5,28,\"MQ\",\"3634\",\"STL\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,138.00,120.00,888.00,,,,,,\n2015,5,29,\"MQ\",\"3634\",\"STL\",\"LGA\",111.00,102.00,0.00,\"\",0.00,134.00,115.00,888.00,102.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"MQ\",\"3634\",\"STL\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,136.00,117.00,888.00,,,,,,\n2015,5,31,\"MQ\",\"3634\",\"STL\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,134.00,114.00,888.00,,,,,,\n2015,5,1,\"MQ\",\"3636\",\"JFK\",\"CMH\",-2.00,-28.00,0.00,\"\",0.00,90.00,74.00,483.00,,,,,,\n2015,5,2,\"MQ\",\"3636\",\"JFK\",\"CMH\",-3.00,-9.00,0.00,\"\",0.00,110.00,71.00,483.00,,,,,,\n2015,5,3,\"MQ\",\"3636\",\"JFK\",\"CMH\",0.00,11.00,0.00,\"\",0.00,127.00,72.00,483.00,,,,,,\n2015,5,4,\"MQ\",\"3636\",\"JFK\",\"CMH\",-2.00,-9.00,0.00,\"\",0.00,109.00,74.00,483.00,,,,,,\n2015,5,5,\"MQ\",\"3636\",\"JFK\",\"CMH\",17.00,1.00,0.00,\"\",0.00,100.00,71.00,483.00,,,,,,\n2015,5,6,\"MQ\",\"3636\",\"JFK\",\"CMH\",,,1.00,\"A\",0.00,,,483.00,,,,,,\n2015,5,7,\"MQ\",\"3636\",\"JFK\",\"CMH\",-3.00,-22.00,0.00,\"\",0.00,97.00,74.00,483.00,,,,,,\n2015,5,8,\"MQ\",\"3636\",\"JFK\",\"CMH\",15.00,27.00,0.00,\"\",0.00,128.00,70.00,483.00,0.00,0.00,12.00,0.00,15.00,\n2015,5,9,\"MQ\",\"3636\",\"JFK\",\"CMH\",5.00,-7.00,0.00,\"\",0.00,104.00,71.00,483.00,,,,,,\n2015,5,10,\"MQ\",\"3636\",\"JFK\",\"CMH\",-6.00,-30.00,0.00,\"\",0.00,92.00,72.00,483.00,,,,,,\n2015,5,11,\"MQ\",\"3636\",\"JFK\",\"CMH\",-2.00,-4.00,0.00,\"\",0.00,114.00,79.00,483.00,,,,,,\n2015,5,12,\"MQ\",\"3636\",\"JFK\",\"CMH\",6.00,-10.00,0.00,\"\",0.00,100.00,81.00,483.00,,,,,,\n2015,5,13,\"MQ\",\"3636\",\"JFK\",\"CMH\",36.00,33.00,0.00,\"\",0.00,113.00,77.00,483.00,0.00,0.00,0.00,0.00,33.00,\n2015,5,14,\"MQ\",\"3636\",\"JFK\",\"CMH\",-8.00,2.00,0.00,\"\",0.00,126.00,80.00,483.00,,,,,,\n2015,5,15,\"MQ\",\"3636\",\"JFK\",\"CMH\",134.00,120.00,0.00,\"\",0.00,102.00,75.00,483.00,21.00,0.00,0.00,0.00,99.00,\n2015,5,16,\"MQ\",\"3636\",\"JFK\",\"CMH\",-9.00,-26.00,0.00,\"\",0.00,99.00,77.00,483.00,,,,,,\n2015,5,17,\"MQ\",\"3636\",\"JFK\",\"CMH\",-2.00,-28.00,0.00,\"\",0.00,90.00,71.00,483.00,,,,,,\n2015,5,18,\"MQ\",\"3636\",\"JFK\",\"CMH\",131.00,118.00,0.00,\"\",0.00,103.00,76.00,483.00,10.00,0.00,0.00,0.00,108.00,\n2015,5,19,\"MQ\",\"3636\",\"JFK\",\"CMH\",-4.00,17.00,0.00,\"\",0.00,137.00,80.00,483.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3636\",\"JFK\",\"CMH\",-7.00,-24.00,0.00,\"\",0.00,99.00,78.00,483.00,,,,,,\n2015,5,21,\"MQ\",\"3636\",\"JFK\",\"CMH\",5.00,31.00,0.00,\"\",0.00,142.00,79.00,483.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3636\",\"JFK\",\"CMH\",-9.00,-9.00,0.00,\"\",0.00,116.00,81.00,483.00,,,,,,\n2015,5,23,\"MQ\",\"3636\",\"JFK\",\"CMH\",-2.00,1.00,0.00,\"\",0.00,119.00,74.00,483.00,,,,,,\n2015,5,24,\"MQ\",\"3636\",\"JFK\",\"CMH\",-4.00,-11.00,0.00,\"\",0.00,109.00,88.00,483.00,,,,,,\n2015,5,25,\"MQ\",\"3636\",\"JFK\",\"CMH\",-8.00,-7.00,0.00,\"\",0.00,117.00,73.00,483.00,,,,,,\n2015,5,26,\"MQ\",\"3636\",\"JFK\",\"CMH\",-8.00,-30.00,0.00,\"\",0.00,94.00,74.00,483.00,,,,,,\n2015,5,27,\"MQ\",\"3636\",\"JFK\",\"CMH\",,,1.00,\"C\",0.00,,,483.00,,,,,,\n2015,5,28,\"MQ\",\"3636\",\"JFK\",\"CMH\",-3.00,-26.00,0.00,\"\",0.00,93.00,79.00,483.00,,,,,,\n2015,5,29,\"MQ\",\"3636\",\"JFK\",\"CMH\",-3.00,-31.00,0.00,\"\",0.00,88.00,70.00,483.00,,,,,,\n2015,5,30,\"MQ\",\"3636\",\"JFK\",\"CMH\",-7.00,-21.00,0.00,\"\",0.00,102.00,75.00,483.00,,,,,,\n2015,5,31,\"MQ\",\"3636\",\"JFK\",\"CMH\",-4.00,-8.00,0.00,\"\",0.00,112.00,79.00,483.00,,,,,,\n2015,5,1,\"MQ\",\"3639\",\"LGA\",\"STL\",-8.00,-44.00,0.00,\"\",0.00,133.00,116.00,888.00,,,,,,\n2015,5,3,\"MQ\",\"3639\",\"LGA\",\"STL\",-10.00,-39.00,0.00,\"\",0.00,140.00,120.00,888.00,,,,,,\n2015,5,4,\"MQ\",\"3639\",\"LGA\",\"STL\",-3.00,-28.00,0.00,\"\",0.00,141.00,124.00,888.00,,,,,,\n2015,5,5,\"MQ\",\"3639\",\"LGA\",\"STL\",16.00,-4.00,0.00,\"\",0.00,146.00,128.00,888.00,,,,,,\n2015,5,6,\"MQ\",\"3639\",\"LGA\",\"STL\",28.00,34.00,0.00,\"\",0.00,172.00,123.00,888.00,0.00,0.00,6.00,0.00,28.00,\n2015,5,7,\"MQ\",\"3639\",\"LGA\",\"STL\",-1.00,-31.00,0.00,\"\",0.00,139.00,121.00,888.00,,,,,,\n2015,5,8,\"MQ\",\"3639\",\"LGA\",\"STL\",-2.00,-35.00,0.00,\"\",0.00,136.00,117.00,888.00,,,,,,\n2015,5,10,\"MQ\",\"3639\",\"LGA\",\"STL\",-6.00,-15.00,0.00,\"\",0.00,160.00,129.00,888.00,,,,,,\n2015,5,11,\"MQ\",\"3639\",\"LGA\",\"STL\",75.00,64.00,0.00,\"\",0.00,158.00,131.00,888.00,0.00,0.00,11.00,0.00,53.00,\n2015,5,12,\"MQ\",\"3639\",\"LGA\",\"STL\",-11.00,-21.00,0.00,\"\",0.00,159.00,135.00,888.00,,,,,,\n2015,5,13,\"MQ\",\"3639\",\"LGA\",\"STL\",-10.00,-11.00,0.00,\"\",0.00,168.00,133.00,888.00,,,,,,\n2015,5,14,\"MQ\",\"3639\",\"LGA\",\"STL\",-6.00,-23.00,0.00,\"\",0.00,152.00,126.00,888.00,,,,,,\n2015,5,15,\"MQ\",\"3639\",\"LGA\",\"STL\",99.00,77.00,0.00,\"\",0.00,147.00,130.00,888.00,0.00,0.00,0.00,0.00,77.00,\n2015,5,17,\"MQ\",\"3639\",\"LGA\",\"STL\",46.00,39.00,0.00,\"\",0.00,162.00,118.00,888.00,37.00,0.00,0.00,0.00,2.00,\n2015,5,18,\"MQ\",\"3639\",\"LGA\",\"STL\",,,1.00,\"C\",0.00,,,888.00,,,,,,\n2015,5,19,\"MQ\",\"3639\",\"LGA\",\"STL\",70.00,58.00,0.00,\"\",0.00,157.00,130.00,888.00,17.00,0.00,0.00,0.00,41.00,\n2015,5,20,\"MQ\",\"3639\",\"LGA\",\"STL\",-6.00,31.00,0.00,\"\",0.00,206.00,131.00,888.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3639\",\"LGA\",\"STL\",8.00,22.00,0.00,\"\",0.00,183.00,144.00,888.00,0.00,0.00,14.00,0.00,8.00,\n2015,5,22,\"MQ\",\"3639\",\"LGA\",\"STL\",-6.00,-15.00,0.00,\"\",0.00,160.00,135.00,888.00,,,,,,\n2015,5,24,\"MQ\",\"3639\",\"LGA\",\"STL\",-8.00,-36.00,0.00,\"\",0.00,141.00,126.00,888.00,,,,,,\n2015,5,25,\"MQ\",\"3639\",\"LGA\",\"STL\",40.00,14.00,0.00,\"\",0.00,143.00,126.00,888.00,,,,,,\n2015,5,26,\"MQ\",\"3639\",\"LGA\",\"STL\",0.00,-19.00,0.00,\"\",0.00,150.00,120.00,888.00,,,,,,\n2015,5,27,\"MQ\",\"3639\",\"LGA\",\"STL\",167.00,145.00,0.00,\"\",0.00,147.00,121.00,888.00,10.00,0.00,0.00,0.00,135.00,\n2015,5,28,\"MQ\",\"3639\",\"LGA\",\"STL\",-1.00,-14.00,0.00,\"\",0.00,156.00,121.00,888.00,,,,,,\n2015,5,29,\"MQ\",\"3639\",\"LGA\",\"STL\",49.00,32.00,0.00,\"\",0.00,152.00,124.00,888.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,31,\"MQ\",\"3639\",\"LGA\",\"STL\",,,1.00,\"C\",0.00,,,888.00,,,,,,\n2015,5,1,\"MQ\",\"3676\",\"LGA\",\"STL\",-5.00,-33.00,0.00,\"\",0.00,134.00,117.00,888.00,,,,,,\n2015,5,2,\"MQ\",\"3676\",\"LGA\",\"STL\",-7.00,-27.00,0.00,\"\",0.00,142.00,123.00,888.00,,,,,,\n2015,5,3,\"MQ\",\"3676\",\"LGA\",\"STL\",-8.00,-17.00,0.00,\"\",0.00,153.00,119.00,888.00,,,,,,\n2015,5,4,\"MQ\",\"3676\",\"LGA\",\"STL\",-7.00,-18.00,0.00,\"\",0.00,151.00,122.00,888.00,,,,,,\n2015,5,5,\"MQ\",\"3676\",\"LGA\",\"STL\",9.00,1.00,0.00,\"\",0.00,154.00,121.00,888.00,,,,,,\n2015,5,6,\"MQ\",\"3676\",\"LGA\",\"STL\",2.00,-15.00,0.00,\"\",0.00,145.00,122.00,888.00,,,,,,\n2015,5,7,\"MQ\",\"3676\",\"LGA\",\"STL\",-5.00,-4.00,0.00,\"\",0.00,163.00,119.00,888.00,,,,,,\n2015,5,8,\"MQ\",\"3676\",\"LGA\",\"STL\",3.00,3.00,0.00,\"\",0.00,162.00,124.00,888.00,,,,,,\n2015,5,9,\"MQ\",\"3676\",\"LGA\",\"STL\",-6.00,-32.00,0.00,\"\",0.00,136.00,122.00,888.00,,,,,,\n2015,5,10,\"MQ\",\"3676\",\"LGA\",\"STL\",33.00,13.00,0.00,\"\",0.00,142.00,122.00,888.00,,,,,,\n2015,5,11,\"MQ\",\"3676\",\"LGA\",\"STL\",19.00,21.00,0.00,\"\",0.00,164.00,124.00,888.00,0.00,0.00,2.00,0.00,19.00,\n2015,5,12,\"MQ\",\"3676\",\"LGA\",\"STL\",-3.00,-1.00,0.00,\"\",0.00,164.00,143.00,888.00,,,,,,\n2015,5,13,\"MQ\",\"3676\",\"LGA\",\"STL\",-8.00,-3.00,0.00,\"\",0.00,167.00,130.00,888.00,,,,,,\n2015,5,14,\"MQ\",\"3676\",\"LGA\",\"STL\",25.00,27.00,0.00,\"\",0.00,164.00,135.00,888.00,0.00,0.00,2.00,0.00,25.00,\n2015,5,15,\"MQ\",\"3676\",\"LGA\",\"STL\",-10.00,22.00,0.00,\"\",0.00,194.00,139.00,888.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,16,\"MQ\",\"3676\",\"LGA\",\"STL\",-7.00,-19.00,0.00,\"\",0.00,150.00,128.00,888.00,,,,,,\n2015,5,17,\"MQ\",\"3676\",\"LGA\",\"STL\",,,1.00,\"A\",0.00,,,888.00,,,,,,\n2015,5,18,\"MQ\",\"3676\",\"LGA\",\"STL\",,,1.00,\"C\",0.00,,,888.00,,,,,,\n2015,5,19,\"MQ\",\"3676\",\"LGA\",\"STL\",42.00,27.00,0.00,\"\",0.00,147.00,128.00,888.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,20,\"MQ\",\"3676\",\"LGA\",\"STL\",76.00,99.00,0.00,\"\",0.00,185.00,134.00,888.00,0.00,0.00,23.00,0.00,76.00,\n2015,5,21,\"MQ\",\"3676\",\"LGA\",\"STL\",49.00,104.00,0.00,\"\",0.00,217.00,164.00,888.00,49.00,0.00,55.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3676\",\"LGA\",\"STL\",-8.00,-12.00,0.00,\"\",0.00,158.00,134.00,888.00,,,,,,\n2015,5,23,\"MQ\",\"3676\",\"LGA\",\"STL\",-8.00,-21.00,0.00,\"\",0.00,149.00,129.00,888.00,,,,,,\n2015,5,24,\"MQ\",\"3676\",\"LGA\",\"STL\",-11.00,-29.00,0.00,\"\",0.00,144.00,125.00,888.00,,,,,,\n2015,5,25,\"MQ\",\"3676\",\"LGA\",\"STL\",-1.00,-9.00,0.00,\"\",0.00,154.00,125.00,888.00,,,,,,\n2015,5,26,\"MQ\",\"3676\",\"LGA\",\"STL\",-4.00,-13.00,0.00,\"\",0.00,153.00,124.00,888.00,,,,,,\n2015,5,27,\"MQ\",\"3676\",\"LGA\",\"STL\",-11.00,4.00,0.00,\"\",0.00,177.00,124.00,888.00,,,,,,\n2015,5,28,\"MQ\",\"3676\",\"LGA\",\"STL\",0.00,-11.00,0.00,\"\",0.00,151.00,125.00,888.00,,,,,,\n2015,5,29,\"MQ\",\"3676\",\"LGA\",\"STL\",35.00,45.00,0.00,\"\",0.00,172.00,126.00,888.00,0.00,0.00,10.00,0.00,35.00,\n2015,5,30,\"MQ\",\"3676\",\"LGA\",\"STL\",-3.00,-9.00,0.00,\"\",0.00,156.00,126.00,888.00,,,,,,\n2015,5,31,\"MQ\",\"3676\",\"LGA\",\"STL\",5.00,-9.00,0.00,\"\",0.00,148.00,118.00,888.00,,,,,,\n2015,5,1,\"MQ\",\"3676\",\"STL\",\"LGA\",-9.00,23.00,0.00,\"\",0.00,176.00,125.00,888.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,3,\"MQ\",\"3676\",\"STL\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,137.00,121.00,888.00,,,,,,\n2015,5,4,\"MQ\",\"3676\",\"STL\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,136.00,125.00,888.00,,,,,,\n2015,5,5,\"MQ\",\"3676\",\"STL\",\"LGA\",4.00,-1.00,0.00,\"\",0.00,139.00,123.00,888.00,,,,,,\n2015,5,6,\"MQ\",\"3676\",\"STL\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,128.00,115.00,888.00,,,,,,\n2015,5,7,\"MQ\",\"3676\",\"STL\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,135.00,119.00,888.00,,,,,,\n2015,5,8,\"MQ\",\"3676\",\"STL\",\"LGA\",11.00,5.00,0.00,\"\",0.00,138.00,121.00,888.00,,,,,,\n2015,5,10,\"MQ\",\"3676\",\"STL\",\"LGA\",20.00,86.00,0.00,\"\",0.00,210.00,149.00,888.00,0.00,10.00,66.00,0.00,10.00,\n2015,5,11,\"MQ\",\"3676\",\"STL\",\"LGA\",82.00,80.00,0.00,\"\",0.00,142.00,120.00,888.00,0.00,0.00,62.00,0.00,18.00,\n2015,5,12,\"MQ\",\"3676\",\"STL\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,131.00,107.00,888.00,,,,,,\n2015,5,13,\"MQ\",\"3676\",\"STL\",\"LGA\",-7.00,-29.00,0.00,\"\",0.00,122.00,106.00,888.00,,,,,,\n2015,5,14,\"MQ\",\"3676\",\"STL\",\"LGA\",25.00,13.00,0.00,\"\",0.00,132.00,114.00,888.00,,,,,,\n2015,5,15,\"MQ\",\"3676\",\"STL\",\"LGA\",22.00,25.00,0.00,\"\",0.00,147.00,121.00,888.00,3.00,0.00,3.00,0.00,19.00,\n2015,5,17,\"MQ\",\"3676\",\"STL\",\"LGA\",,,1.00,\"A\",0.00,,,888.00,,,,,,\n2015,5,18,\"MQ\",\"3676\",\"STL\",\"LGA\",,,1.00,\"C\",0.00,,,888.00,,,,,,\n2015,5,19,\"MQ\",\"3676\",\"STL\",\"LGA\",44.00,53.00,0.00,\"\",0.00,153.00,113.00,888.00,0.00,0.00,29.00,0.00,24.00,\n2015,5,20,\"MQ\",\"3676\",\"STL\",\"LGA\",106.00,107.00,0.00,\"\",0.00,145.00,110.00,888.00,10.00,0.00,1.00,0.00,96.00,\n2015,5,21,\"MQ\",\"3676\",\"STL\",\"LGA\",113.00,116.00,0.00,\"\",0.00,147.00,118.00,888.00,12.00,0.00,3.00,0.00,101.00,\n2015,5,22,\"MQ\",\"3676\",\"STL\",\"LGA\",-5.00,-28.00,0.00,\"\",0.00,121.00,106.00,888.00,,,,,,\n2015,5,24,\"MQ\",\"3676\",\"STL\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,130.00,110.00,888.00,,,,,,\n2015,5,25,\"MQ\",\"3676\",\"STL\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,135.00,115.00,888.00,,,,,,\n2015,5,26,\"MQ\",\"3676\",\"STL\",\"LGA\",-9.00,-11.00,0.00,\"\",0.00,142.00,128.00,888.00,,,,,,\n2015,5,27,\"MQ\",\"3676\",\"STL\",\"LGA\",50.00,37.00,0.00,\"\",0.00,131.00,110.00,888.00,0.00,0.00,36.00,0.00,1.00,\n2015,5,28,\"MQ\",\"3676\",\"STL\",\"LGA\",-8.00,20.00,0.00,\"\",0.00,172.00,119.00,888.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3676\",\"STL\",\"LGA\",63.00,69.00,0.00,\"\",0.00,150.00,118.00,888.00,21.00,0.00,6.00,0.00,42.00,\n2015,5,31,\"MQ\",\"3676\",\"STL\",\"LGA\",79.00,,0.00,\"\",1.00,,,888.00,,,,,,\n2015,5,7,\"MQ\",\"3544\",\"BUF\",\"ORD\",-10.00,-27.00,0.00,\"\",0.00,95.00,71.00,473.00,,,,,,\n2015,5,8,\"MQ\",\"3544\",\"BUF\",\"ORD\",-6.00,-19.00,0.00,\"\",0.00,99.00,75.00,473.00,,,,,,\n2015,5,9,\"MQ\",\"3544\",\"BUF\",\"ORD\",21.00,21.00,0.00,\"\",0.00,112.00,84.00,473.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"MQ\",\"3544\",\"BUF\",\"ORD\",2.00,-7.00,0.00,\"\",0.00,103.00,82.00,473.00,,,,,,\n2015,5,11,\"MQ\",\"3544\",\"BUF\",\"ORD\",63.00,51.00,0.00,\"\",0.00,100.00,79.00,473.00,5.00,0.00,0.00,0.00,46.00,\n2015,5,12,\"MQ\",\"3544\",\"BUF\",\"ORD\",-12.00,-7.00,0.00,\"\",0.00,117.00,87.00,473.00,,,,,,\n2015,5,13,\"MQ\",\"3544\",\"BUF\",\"ORD\",-6.00,-10.00,0.00,\"\",0.00,108.00,80.00,473.00,,,,,,\n2015,5,14,\"MQ\",\"3544\",\"BUF\",\"ORD\",-12.00,-17.00,0.00,\"\",0.00,107.00,81.00,473.00,,,,,,\n2015,5,15,\"MQ\",\"3544\",\"BUF\",\"ORD\",0.00,8.00,0.00,\"\",0.00,120.00,84.00,473.00,,,,,,\n2015,5,16,\"MQ\",\"3544\",\"BUF\",\"ORD\",-7.00,-22.00,0.00,\"\",0.00,97.00,78.00,473.00,,,,,,\n2015,5,17,\"MQ\",\"3544\",\"BUF\",\"ORD\",-9.00,-22.00,0.00,\"\",0.00,99.00,79.00,473.00,,,,,,\n2015,5,18,\"MQ\",\"3544\",\"BUF\",\"ORD\",-9.00,-20.00,0.00,\"\",0.00,101.00,79.00,473.00,,,,,,\n2015,5,19,\"MQ\",\"3544\",\"BUF\",\"ORD\",16.00,6.00,0.00,\"\",0.00,102.00,72.00,473.00,,,,,,\n2015,5,20,\"MQ\",\"3544\",\"BUF\",\"ORD\",-10.00,-12.00,0.00,\"\",0.00,110.00,83.00,473.00,,,,,,\n2015,5,21,\"MQ\",\"3544\",\"BUF\",\"ORD\",-4.00,27.00,0.00,\"\",0.00,143.00,84.00,473.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3544\",\"BUF\",\"ORD\",-1.00,-6.00,0.00,\"\",0.00,107.00,81.00,473.00,,,,,,\n2015,5,23,\"MQ\",\"3544\",\"BUF\",\"ORD\",119.00,105.00,0.00,\"\",0.00,98.00,76.00,473.00,105.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"MQ\",\"3544\",\"BUF\",\"ORD\",-8.00,20.00,0.00,\"\",0.00,140.00,88.00,473.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,25,\"MQ\",\"3544\",\"BUF\",\"ORD\",-14.00,-24.00,0.00,\"\",0.00,102.00,81.00,473.00,,,,,,\n2015,5,26,\"MQ\",\"3544\",\"BUF\",\"ORD\",-8.00,-7.00,0.00,\"\",0.00,113.00,76.00,473.00,,,,,,\n2015,5,27,\"MQ\",\"3544\",\"BUF\",\"ORD\",-8.00,-13.00,0.00,\"\",0.00,107.00,79.00,473.00,,,,,,\n2015,5,28,\"MQ\",\"3544\",\"BUF\",\"ORD\",-8.00,-27.00,0.00,\"\",0.00,93.00,71.00,473.00,,,,,,\n2015,5,29,\"MQ\",\"3544\",\"BUF\",\"ORD\",-7.00,-7.00,0.00,\"\",0.00,112.00,82.00,473.00,,,,,,\n2015,5,30,\"MQ\",\"3544\",\"BUF\",\"ORD\",-8.00,-16.00,0.00,\"\",0.00,104.00,83.00,473.00,,,,,,\n2015,5,31,\"MQ\",\"3544\",\"BUF\",\"ORD\",-9.00,-4.00,0.00,\"\",0.00,117.00,84.00,473.00,,,,,,\n2015,5,7,\"MQ\",\"3544\",\"ORD\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,90.00,70.00,473.00,,,,,,\n2015,5,8,\"MQ\",\"3544\",\"ORD\",\"BUF\",-4.00,-18.00,0.00,\"\",0.00,85.00,69.00,473.00,,,,,,\n2015,5,9,\"MQ\",\"3544\",\"ORD\",\"BUF\",-5.00,-22.00,0.00,\"\",0.00,82.00,67.00,473.00,,,,,,\n2015,5,10,\"MQ\",\"3544\",\"ORD\",\"BUF\",10.00,-1.00,0.00,\"\",0.00,88.00,71.00,473.00,,,,,,\n2015,5,11,\"MQ\",\"3544\",\"ORD\",\"BUF\",74.00,58.00,0.00,\"\",0.00,83.00,67.00,473.00,58.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3544\",\"ORD\",\"BUF\",-1.00,-24.00,0.00,\"\",0.00,76.00,55.00,473.00,,,,,,\n2015,5,13,\"MQ\",\"3544\",\"ORD\",\"BUF\",2.00,-5.00,0.00,\"\",0.00,92.00,68.00,473.00,,,,,,\n2015,5,14,\"MQ\",\"3544\",\"ORD\",\"BUF\",-2.00,-15.00,0.00,\"\",0.00,86.00,68.00,473.00,,,,,,\n2015,5,15,\"MQ\",\"3544\",\"ORD\",\"BUF\",-2.00,-14.00,0.00,\"\",0.00,87.00,65.00,473.00,,,,,,\n2015,5,16,\"MQ\",\"3544\",\"ORD\",\"BUF\",-5.00,-16.00,0.00,\"\",0.00,88.00,70.00,473.00,,,,,,\n2015,5,17,\"MQ\",\"3544\",\"ORD\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,91.00,71.00,473.00,,,,,,\n2015,5,18,\"MQ\",\"3544\",\"ORD\",\"BUF\",-3.00,-13.00,0.00,\"\",0.00,89.00,69.00,473.00,,,,,,\n2015,5,19,\"MQ\",\"3544\",\"ORD\",\"BUF\",12.00,18.00,0.00,\"\",0.00,105.00,63.00,473.00,12.00,0.00,6.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3544\",\"ORD\",\"BUF\",-3.00,-13.00,0.00,\"\",0.00,89.00,66.00,473.00,,,,,,\n2015,5,21,\"MQ\",\"3544\",\"ORD\",\"BUF\",-3.00,-8.00,0.00,\"\",0.00,94.00,65.00,473.00,,,,,,\n2015,5,22,\"MQ\",\"3544\",\"ORD\",\"BUF\",-4.00,-18.00,0.00,\"\",0.00,85.00,65.00,473.00,,,,,,\n2015,5,23,\"MQ\",\"3544\",\"ORD\",\"BUF\",-9.00,-31.00,0.00,\"\",0.00,77.00,66.00,473.00,,,,,,\n2015,5,24,\"MQ\",\"3544\",\"ORD\",\"BUF\",-2.00,-25.00,0.00,\"\",0.00,76.00,64.00,473.00,,,,,,\n2015,5,25,\"MQ\",\"3544\",\"ORD\",\"BUF\",-9.00,-23.00,0.00,\"\",0.00,85.00,63.00,473.00,,,,,,\n2015,5,26,\"MQ\",\"3544\",\"ORD\",\"BUF\",0.00,-12.00,0.00,\"\",0.00,87.00,70.00,473.00,,,,,,\n2015,5,27,\"MQ\",\"3544\",\"ORD\",\"BUF\",-5.00,-21.00,0.00,\"\",0.00,83.00,68.00,473.00,,,,,,\n2015,5,28,\"MQ\",\"3544\",\"ORD\",\"BUF\",-3.00,-10.00,0.00,\"\",0.00,92.00,67.00,473.00,,,,,,\n2015,5,29,\"MQ\",\"3544\",\"ORD\",\"BUF\",-5.00,-24.00,0.00,\"\",0.00,80.00,65.00,473.00,,,,,,\n2015,5,30,\"MQ\",\"3544\",\"ORD\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,89.00,69.00,473.00,,,,,,\n2015,5,31,\"MQ\",\"3544\",\"ORD\",\"BUF\",-3.00,-16.00,0.00,\"\",0.00,86.00,65.00,473.00,,,,,,\n2015,5,1,\"MQ\",\"3547\",\"BNA\",\"LGA\",-1.00,7.00,0.00,\"\",0.00,140.00,120.00,764.00,,,,,,\n2015,5,4,\"MQ\",\"3547\",\"BNA\",\"LGA\",4.00,10.00,0.00,\"\",0.00,138.00,108.00,764.00,,,,,,\n2015,5,5,\"MQ\",\"3547\",\"BNA\",\"LGA\",29.00,47.00,0.00,\"\",0.00,150.00,107.00,764.00,29.00,0.00,18.00,0.00,0.00,\n2015,5,6,\"MQ\",\"3547\",\"BNA\",\"LGA\",44.00,33.00,0.00,\"\",0.00,121.00,103.00,764.00,0.00,0.00,0.00,0.00,33.00,\n2015,5,7,\"MQ\",\"3547\",\"BNA\",\"LGA\",0.00,13.00,0.00,\"\",0.00,145.00,107.00,764.00,,,,,,\n2015,5,8,\"MQ\",\"3547\",\"BNA\",\"LGA\",2.00,-2.00,0.00,\"\",0.00,128.00,105.00,764.00,,,,,,\n2015,5,10,\"MQ\",\"3547\",\"BNA\",\"LGA\",23.00,17.00,0.00,\"\",0.00,126.00,108.00,764.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"MQ\",\"3547\",\"BNA\",\"LGA\",-1.00,28.00,0.00,\"\",0.00,161.00,104.00,764.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3547\",\"BNA\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,119.00,99.00,764.00,,,,,,\n2015,5,13,\"MQ\",\"3547\",\"BNA\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,122.00,97.00,764.00,,,,,,\n2015,5,14,\"MQ\",\"3547\",\"BNA\",\"LGA\",62.00,45.00,0.00,\"\",0.00,115.00,101.00,764.00,1.00,0.00,0.00,0.00,44.00,\n2015,5,15,\"MQ\",\"3547\",\"BNA\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,130.00,102.00,764.00,,,,,,\n2015,5,17,\"MQ\",\"3547\",\"BNA\",\"LGA\",-8.00,5.00,0.00,\"\",0.00,145.00,102.00,764.00,,,,,,\n2015,5,18,\"MQ\",\"3547\",\"BNA\",\"LGA\",274.00,300.00,0.00,\"\",0.00,158.00,144.00,764.00,0.00,0.00,205.00,0.00,95.00,\n2015,5,19,\"MQ\",\"3547\",\"BNA\",\"LGA\",109.00,106.00,0.00,\"\",0.00,129.00,97.00,764.00,0.00,0.00,43.00,0.00,63.00,\n2015,5,20,\"MQ\",\"3547\",\"BNA\",\"LGA\",22.00,-1.00,0.00,\"\",0.00,109.00,96.00,764.00,,,,,,\n2015,5,21,\"MQ\",\"3547\",\"BNA\",\"LGA\",-7.00,-7.00,0.00,\"\",0.00,132.00,105.00,764.00,,,,,,\n2015,5,22,\"MQ\",\"3547\",\"BNA\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,122.00,93.00,764.00,,,,,,\n2015,5,24,\"MQ\",\"3547\",\"BNA\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,120.00,105.00,764.00,,,,,,\n2015,5,25,\"MQ\",\"3547\",\"BNA\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,126.00,108.00,764.00,,,,,,\n2015,5,26,\"MQ\",\"3547\",\"BNA\",\"LGA\",34.00,22.00,0.00,\"\",0.00,120.00,102.00,764.00,1.00,0.00,0.00,0.00,21.00,\n2015,5,27,\"MQ\",\"3547\",\"BNA\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,134.00,104.00,764.00,,,,,,\n2015,5,28,\"MQ\",\"3547\",\"BNA\",\"LGA\",27.00,13.00,0.00,\"\",0.00,118.00,101.00,764.00,,,,,,\n2015,5,29,\"MQ\",\"3547\",\"BNA\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,122.00,106.00,764.00,,,,,,\n2015,5,31,\"MQ\",\"3547\",\"BNA\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,131.00,111.00,764.00,,,,,,\n2015,5,1,\"MQ\",\"3547\",\"LGA\",\"BNA\",-9.00,-8.00,0.00,\"\",0.00,138.00,108.00,764.00,,,,,,\n2015,5,4,\"MQ\",\"3547\",\"LGA\",\"BNA\",-6.00,-15.00,0.00,\"\",0.00,128.00,105.00,764.00,,,,,,\n2015,5,5,\"MQ\",\"3547\",\"LGA\",\"BNA\",-7.00,-19.00,0.00,\"\",0.00,125.00,99.00,764.00,,,,,,\n2015,5,6,\"MQ\",\"3547\",\"LGA\",\"BNA\",85.00,97.00,0.00,\"\",0.00,149.00,98.00,764.00,85.00,0.00,12.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3547\",\"LGA\",\"BNA\",-4.00,-25.00,0.00,\"\",0.00,116.00,100.00,764.00,,,,,,\n2015,5,8,\"MQ\",\"3547\",\"LGA\",\"BNA\",-10.00,-21.00,0.00,\"\",0.00,126.00,102.00,764.00,,,,,,\n2015,5,11,\"MQ\",\"3547\",\"LGA\",\"BNA\",-9.00,-23.00,0.00,\"\",0.00,123.00,103.00,764.00,,,,,,\n2015,5,12,\"MQ\",\"3547\",\"LGA\",\"BNA\",-7.00,-8.00,0.00,\"\",0.00,136.00,120.00,764.00,,,,,,\n2015,5,13,\"MQ\",\"3547\",\"LGA\",\"BNA\",-7.00,2.00,0.00,\"\",0.00,146.00,106.00,764.00,,,,,,\n2015,5,14,\"MQ\",\"3547\",\"LGA\",\"BNA\",102.00,118.00,0.00,\"\",0.00,153.00,103.00,764.00,102.00,0.00,16.00,0.00,0.00,\n2015,5,15,\"MQ\",\"3547\",\"LGA\",\"BNA\",11.00,4.00,0.00,\"\",0.00,130.00,107.00,764.00,,,,,,\n2015,5,18,\"MQ\",\"3547\",\"LGA\",\"BNA\",167.00,153.00,0.00,\"\",0.00,123.00,102.00,764.00,153.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3547\",\"LGA\",\"BNA\",110.00,123.00,0.00,\"\",0.00,150.00,117.00,764.00,0.00,0.00,13.00,0.00,110.00,\n2015,5,20,\"MQ\",\"3547\",\"LGA\",\"BNA\",24.00,34.00,0.00,\"\",0.00,147.00,118.00,764.00,24.00,0.00,10.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3547\",\"LGA\",\"BNA\",0.00,11.00,0.00,\"\",0.00,148.00,118.00,764.00,,,,,,\n2015,5,22,\"MQ\",\"3547\",\"LGA\",\"BNA\",-3.00,11.00,0.00,\"\",0.00,151.00,119.00,764.00,,,,,,\n2015,5,25,\"MQ\",\"3547\",\"LGA\",\"BNA\",9.00,-3.00,0.00,\"\",0.00,125.00,105.00,764.00,,,,,,\n2015,5,26,\"MQ\",\"3547\",\"LGA\",\"BNA\",88.00,90.00,0.00,\"\",0.00,139.00,108.00,764.00,0.00,0.00,2.00,0.00,88.00,\n2015,5,27,\"MQ\",\"3547\",\"LGA\",\"BNA\",-4.00,-12.00,0.00,\"\",0.00,129.00,106.00,764.00,,,,,,\n2015,5,28,\"MQ\",\"3547\",\"LGA\",\"BNA\",70.00,89.00,0.00,\"\",0.00,156.00,109.00,764.00,70.00,0.00,19.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3547\",\"LGA\",\"BNA\",-7.00,-16.00,0.00,\"\",0.00,128.00,103.00,764.00,,,,,,\n2015,5,1,\"MQ\",\"3550\",\"LGA\",\"ORF\",-6.00,-1.00,0.00,\"\",0.00,97.00,53.00,296.00,,,,,,\n2015,5,3,\"MQ\",\"3550\",\"LGA\",\"ORF\",-11.00,-29.00,0.00,\"\",0.00,74.00,48.00,296.00,,,,,,\n2015,5,4,\"MQ\",\"3550\",\"LGA\",\"ORF\",-12.00,-26.00,0.00,\"\",0.00,78.00,47.00,296.00,,,,,,\n2015,5,5,\"MQ\",\"3550\",\"LGA\",\"ORF\",-9.00,-32.00,0.00,\"\",0.00,69.00,50.00,296.00,,,,,,\n2015,5,6,\"MQ\",\"3550\",\"LGA\",\"ORF\",-3.00,1.00,0.00,\"\",0.00,96.00,47.00,296.00,,,,,,\n2015,5,1,\"MQ\",\"3550\",\"ORF\",\"LGA\",-5.00,3.00,0.00,\"\",0.00,90.00,61.00,296.00,,,,,,\n2015,5,3,\"MQ\",\"3550\",\"ORF\",\"LGA\",-8.00,-4.00,0.00,\"\",0.00,86.00,63.00,296.00,,,,,,\n2015,5,4,\"MQ\",\"3550\",\"ORF\",\"LGA\",-13.00,-17.00,0.00,\"\",0.00,78.00,61.00,296.00,,,,,,\n2015,5,5,\"MQ\",\"3550\",\"ORF\",\"LGA\",-11.00,-7.00,0.00,\"\",0.00,86.00,58.00,296.00,,,,,,\n2015,5,6,\"MQ\",\"3550\",\"ORF\",\"LGA\",-8.00,-25.00,0.00,\"\",0.00,65.00,52.00,296.00,,,,,,\n2015,5,7,\"MQ\",\"3551\",\"LGA\",\"STL\",-3.00,-23.00,0.00,\"\",0.00,138.00,119.00,888.00,,,,,,\n2015,5,8,\"MQ\",\"3551\",\"LGA\",\"STL\",24.00,9.00,0.00,\"\",0.00,143.00,127.00,888.00,,,,,,\n2015,5,9,\"MQ\",\"3551\",\"LGA\",\"STL\",-6.00,-21.00,0.00,\"\",0.00,153.00,120.00,888.00,,,,,,\n2015,5,10,\"MQ\",\"3551\",\"LGA\",\"STL\",-8.00,-14.00,0.00,\"\",0.00,152.00,118.00,888.00,,,,,,\n2015,5,11,\"MQ\",\"3551\",\"LGA\",\"STL\",79.00,84.00,0.00,\"\",0.00,163.00,127.00,888.00,79.00,0.00,5.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3551\",\"LGA\",\"STL\",8.00,11.00,0.00,\"\",0.00,161.00,141.00,888.00,,,,,,\n2015,5,13,\"MQ\",\"3551\",\"LGA\",\"STL\",-3.00,13.00,0.00,\"\",0.00,174.00,136.00,888.00,,,,,,\n2015,5,14,\"MQ\",\"3551\",\"LGA\",\"STL\",112.00,100.00,0.00,\"\",0.00,146.00,134.00,888.00,100.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"MQ\",\"3551\",\"LGA\",\"STL\",89.00,93.00,0.00,\"\",0.00,162.00,138.00,888.00,0.00,0.00,4.00,0.00,89.00,\n2015,5,16,\"MQ\",\"3551\",\"LGA\",\"STL\",-4.00,-12.00,0.00,\"\",0.00,160.00,131.00,888.00,,,,,,\n2015,5,17,\"MQ\",\"3551\",\"LGA\",\"STL\",-5.00,-13.00,0.00,\"\",0.00,150.00,119.00,888.00,,,,,,\n2015,5,18,\"MQ\",\"3551\",\"LGA\",\"STL\",102.00,106.00,0.00,\"\",0.00,162.00,130.00,888.00,9.00,0.00,4.00,0.00,93.00,\n2015,5,19,\"MQ\",\"3551\",\"LGA\",\"STL\",-1.00,15.00,0.00,\"\",0.00,174.00,132.00,888.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3551\",\"LGA\",\"STL\",-8.00,15.00,0.00,\"\",0.00,181.00,136.00,888.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3551\",\"LGA\",\"STL\",9.00,19.00,0.00,\"\",0.00,168.00,136.00,888.00,0.00,0.00,10.00,0.00,9.00,\n2015,5,22,\"MQ\",\"3551\",\"LGA\",\"STL\",-7.00,14.00,0.00,\"\",0.00,179.00,132.00,888.00,,,,,,\n2015,5,23,\"MQ\",\"3551\",\"LGA\",\"STL\",-1.00,-12.00,0.00,\"\",0.00,157.00,133.00,888.00,,,,,,\n2015,5,24,\"MQ\",\"3551\",\"LGA\",\"STL\",-9.00,-25.00,0.00,\"\",0.00,142.00,127.00,888.00,,,,,,\n2015,5,25,\"MQ\",\"3551\",\"LGA\",\"STL\",-8.00,10.00,0.00,\"\",0.00,176.00,122.00,888.00,,,,,,\n2015,5,26,\"MQ\",\"3551\",\"LGA\",\"STL\",-5.00,-16.00,0.00,\"\",0.00,147.00,122.00,888.00,,,,,,\n2015,5,27,\"MQ\",\"3551\",\"LGA\",\"STL\",19.00,53.00,0.00,\"\",0.00,192.00,134.00,888.00,4.00,0.00,34.00,0.00,15.00,\n2015,5,28,\"MQ\",\"3551\",\"LGA\",\"STL\",-10.00,-6.00,0.00,\"\",0.00,162.00,126.00,888.00,,,,,,\n2015,5,29,\"MQ\",\"3551\",\"LGA\",\"STL\",63.00,62.00,0.00,\"\",0.00,157.00,129.00,888.00,60.00,0.00,0.00,0.00,2.00,\n2015,5,30,\"MQ\",\"3551\",\"LGA\",\"STL\",-3.00,-31.00,0.00,\"\",0.00,140.00,125.00,888.00,,,,,,\n2015,5,31,\"MQ\",\"3551\",\"LGA\",\"STL\",-5.00,-6.00,0.00,\"\",0.00,157.00,124.00,888.00,,,,,,\n2015,5,7,\"MQ\",\"3551\",\"STL\",\"LGA\",1.00,-5.00,0.00,\"\",0.00,143.00,119.00,888.00,,,,,,\n2015,5,8,\"MQ\",\"3551\",\"STL\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,134.00,121.00,888.00,,,,,,\n2015,5,9,\"MQ\",\"3551\",\"STL\",\"LGA\",-8.00,-18.00,0.00,\"\",0.00,139.00,123.00,888.00,,,,,,\n2015,5,10,\"MQ\",\"3551\",\"STL\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,133.00,119.00,888.00,,,,,,\n2015,5,11,\"MQ\",\"3551\",\"STL\",\"LGA\",82.00,79.00,0.00,\"\",0.00,146.00,118.00,888.00,0.00,0.00,10.00,0.00,69.00,\n2015,5,12,\"MQ\",\"3551\",\"STL\",\"LGA\",-2.00,-23.00,0.00,\"\",0.00,128.00,109.00,888.00,,,,,,\n2015,5,13,\"MQ\",\"3551\",\"STL\",\"LGA\",2.00,-21.00,0.00,\"\",0.00,126.00,108.00,888.00,,,,,,\n2015,5,14,\"MQ\",\"3551\",\"STL\",\"LGA\",106.00,85.00,0.00,\"\",0.00,128.00,113.00,888.00,14.00,0.00,0.00,0.00,71.00,\n2015,5,15,\"MQ\",\"3551\",\"STL\",\"LGA\",100.00,100.00,0.00,\"\",0.00,149.00,124.00,888.00,0.00,19.00,0.00,0.00,81.00,\n2015,5,16,\"MQ\",\"3551\",\"STL\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,134.00,121.00,888.00,,,,,,\n2015,5,17,\"MQ\",\"3551\",\"STL\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,154.00,124.00,888.00,,,,,,\n2015,5,18,\"MQ\",\"3551\",\"STL\",\"LGA\",,,1.00,\"C\",0.00,,,888.00,,,,,,\n2015,5,19,\"MQ\",\"3551\",\"STL\",\"LGA\",64.00,57.00,0.00,\"\",0.00,142.00,124.00,888.00,0.00,0.00,57.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3551\",\"STL\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,146.00,107.00,888.00,,,,,,\n2015,5,21,\"MQ\",\"3551\",\"STL\",\"LGA\",13.00,10.00,0.00,\"\",0.00,146.00,111.00,888.00,,,,,,\n2015,5,22,\"MQ\",\"3551\",\"STL\",\"LGA\",8.00,-20.00,0.00,\"\",0.00,121.00,106.00,888.00,,,,,,\n2015,5,23,\"MQ\",\"3551\",\"STL\",\"LGA\",-6.00,-22.00,0.00,\"\",0.00,133.00,111.00,888.00,,,,,,\n2015,5,24,\"MQ\",\"3551\",\"STL\",\"LGA\",6.00,-17.00,0.00,\"\",0.00,126.00,106.00,888.00,,,,,,\n2015,5,25,\"MQ\",\"3551\",\"STL\",\"LGA\",-4.00,-24.00,0.00,\"\",0.00,129.00,114.00,888.00,,,,,,\n2015,5,26,\"MQ\",\"3551\",\"STL\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,154.00,117.00,888.00,,,,,,\n2015,5,27,\"MQ\",\"3551\",\"STL\",\"LGA\",139.00,155.00,0.00,\"\",0.00,165.00,146.00,888.00,98.00,0.00,16.00,0.00,41.00,\n2015,5,28,\"MQ\",\"3551\",\"STL\",\"LGA\",1.00,4.00,0.00,\"\",0.00,152.00,113.00,888.00,,,,,,\n2015,5,29,\"MQ\",\"3551\",\"STL\",\"LGA\",49.00,52.00,0.00,\"\",0.00,152.00,122.00,888.00,0.00,0.00,3.00,0.00,49.00,\n2015,5,30,\"MQ\",\"3551\",\"STL\",\"LGA\",-9.00,-1.00,0.00,\"\",0.00,157.00,129.00,888.00,,,,,,\n2015,5,31,\"MQ\",\"3551\",\"STL\",\"LGA\",,,1.00,\"C\",0.00,,,888.00,,,,,,\n2015,5,1,\"MQ\",\"3552\",\"RDU\",\"LGA\",4.00,-4.00,0.00,\"\",0.00,86.00,60.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3552\",\"RDU\",\"LGA\",-4.00,4.00,0.00,\"\",0.00,102.00,67.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3552\",\"RDU\",\"LGA\",27.00,30.00,0.00,\"\",0.00,97.00,68.00,431.00,27.00,0.00,3.00,0.00,0.00,\n2015,5,6,\"MQ\",\"3552\",\"RDU\",\"LGA\",68.00,89.00,0.00,\"\",0.00,115.00,80.00,431.00,68.00,0.00,21.00,0.00,0.00,\n2015,5,4,\"MQ\",\"3553\",\"LGA\",\"XNA\",-7.00,-36.00,0.00,\"\",0.00,166.00,146.00,1147.00,,,,,,\n2015,5,5,\"MQ\",\"3553\",\"LGA\",\"XNA\",-8.00,-30.00,0.00,\"\",0.00,173.00,155.00,1147.00,,,,,,\n2015,5,6,\"MQ\",\"3553\",\"LGA\",\"XNA\",-11.00,-29.00,0.00,\"\",0.00,177.00,146.00,1147.00,,,,,,\n2015,5,7,\"MQ\",\"3553\",\"LGA\",\"XNA\",-7.00,-25.00,0.00,\"\",0.00,177.00,149.00,1147.00,,,,,,\n2015,5,8,\"MQ\",\"3553\",\"LGA\",\"XNA\",0.00,1.00,0.00,\"\",0.00,196.00,152.00,1147.00,,,,,,\n2015,5,10,\"MQ\",\"3553\",\"LGA\",\"XNA\",-4.00,-20.00,0.00,\"\",0.00,179.00,158.00,1147.00,,,,,,\n2015,5,11,\"MQ\",\"3553\",\"LGA\",\"XNA\",-1.00,3.00,0.00,\"\",0.00,199.00,163.00,1147.00,,,,,,\n2015,5,12,\"MQ\",\"3553\",\"LGA\",\"XNA\",18.00,15.00,0.00,\"\",0.00,192.00,168.00,1147.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"MQ\",\"3553\",\"LGA\",\"XNA\",2.00,-25.00,0.00,\"\",0.00,168.00,150.00,1147.00,,,,,,\n2015,5,14,\"MQ\",\"3553\",\"LGA\",\"XNA\",-1.00,-15.00,0.00,\"\",0.00,181.00,155.00,1147.00,,,,,,\n2015,5,15,\"MQ\",\"3553\",\"LGA\",\"XNA\",-10.00,-21.00,0.00,\"\",0.00,184.00,156.00,1147.00,,,,,,\n2015,5,17,\"MQ\",\"3553\",\"LGA\",\"XNA\",-9.00,-24.00,0.00,\"\",0.00,180.00,148.00,1147.00,,,,,,\n2015,5,18,\"MQ\",\"3553\",\"LGA\",\"XNA\",374.00,385.00,0.00,\"\",0.00,206.00,170.00,1147.00,0.00,0.00,11.00,0.00,374.00,\n2015,5,19,\"MQ\",\"3553\",\"LGA\",\"XNA\",-4.00,-8.00,0.00,\"\",0.00,191.00,161.00,1147.00,,,,,,\n2015,5,20,\"MQ\",\"3553\",\"LGA\",\"XNA\",-9.00,-18.00,0.00,\"\",0.00,186.00,168.00,1147.00,,,,,,\n2015,5,21,\"MQ\",\"3553\",\"LGA\",\"XNA\",-6.00,-6.00,0.00,\"\",0.00,195.00,180.00,1147.00,,,,,,\n2015,5,22,\"MQ\",\"3553\",\"LGA\",\"XNA\",-7.00,0.00,0.00,\"\",0.00,202.00,165.00,1147.00,,,,,,\n2015,5,25,\"MQ\",\"3553\",\"LGA\",\"XNA\",9.00,-8.00,0.00,\"\",0.00,178.00,150.00,1147.00,,,,,,\n2015,5,26,\"MQ\",\"3553\",\"LGA\",\"XNA\",0.00,-23.00,0.00,\"\",0.00,172.00,154.00,1147.00,,,,,,\n2015,5,27,\"MQ\",\"3553\",\"LGA\",\"XNA\",51.00,65.00,0.00,\"\",0.00,209.00,156.00,1147.00,51.00,0.00,14.00,0.00,0.00,\n2015,5,28,\"MQ\",\"3553\",\"LGA\",\"XNA\",-5.00,-24.00,0.00,\"\",0.00,176.00,151.00,1147.00,,,,,,\n2015,5,29,\"MQ\",\"3553\",\"LGA\",\"XNA\",13.00,-15.00,0.00,\"\",0.00,167.00,147.00,1147.00,,,,,,\n2015,5,31,\"MQ\",\"3553\",\"LGA\",\"XNA\",-6.00,,1.00,\"C\",0.00,,,1147.00,,,,,,\n2015,5,4,\"MQ\",\"3553\",\"XNA\",\"LGA\",-11.00,-22.00,0.00,\"\",0.00,160.00,145.00,1147.00,,,,,,\n2015,5,5,\"MQ\",\"3553\",\"XNA\",\"LGA\",-9.00,8.00,0.00,\"\",0.00,188.00,151.00,1147.00,,,,,,\n2015,5,6,\"MQ\",\"3553\",\"XNA\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,159.00,147.00,1147.00,,,,,,\n2015,5,7,\"MQ\",\"3553\",\"XNA\",\"LGA\",-9.00,10.00,0.00,\"\",0.00,190.00,148.00,1147.00,,,,,,\n2015,5,8,\"MQ\",\"3553\",\"XNA\",\"LGA\",-1.00,7.00,0.00,\"\",0.00,179.00,152.00,1147.00,,,,,,\n2015,5,10,\"MQ\",\"3553\",\"XNA\",\"LGA\",-10.00,-7.00,0.00,\"\",0.00,174.00,159.00,1147.00,,,,,,\n2015,5,11,\"MQ\",\"3553\",\"XNA\",\"LGA\",220.00,208.00,0.00,\"\",0.00,159.00,147.00,1147.00,6.00,0.00,0.00,0.00,202.00,\n2015,5,12,\"MQ\",\"3553\",\"XNA\",\"LGA\",0.00,-23.00,0.00,\"\",0.00,148.00,134.00,1147.00,,,,,,\n2015,5,13,\"MQ\",\"3553\",\"XNA\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,152.00,141.00,1147.00,,,,,,\n2015,5,14,\"MQ\",\"3553\",\"XNA\",\"LGA\",-11.00,-29.00,0.00,\"\",0.00,153.00,140.00,1147.00,,,,,,\n2015,5,15,\"MQ\",\"3553\",\"XNA\",\"LGA\",-9.00,-27.00,0.00,\"\",0.00,153.00,141.00,1147.00,,,,,,\n2015,5,17,\"MQ\",\"3553\",\"XNA\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,168.00,150.00,1147.00,,,,,,\n2015,5,18,\"MQ\",\"3553\",\"XNA\",\"LGA\",,,1.00,\"C\",0.00,,,1147.00,,,,,,\n2015,5,19,\"MQ\",\"3553\",\"XNA\",\"LGA\",18.00,26.00,0.00,\"\",0.00,179.00,139.00,1147.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3553\",\"XNA\",\"LGA\",6.00,-18.00,0.00,\"\",0.00,147.00,134.00,1147.00,,,,,,\n2015,5,21,\"MQ\",\"3553\",\"XNA\",\"LGA\",-6.00,-28.00,0.00,\"\",0.00,149.00,135.00,1147.00,,,,,,\n2015,5,22,\"MQ\",\"3553\",\"XNA\",\"LGA\",-9.00,-31.00,0.00,\"\",0.00,149.00,137.00,1147.00,,,,,,\n2015,5,25,\"MQ\",\"3553\",\"XNA\",\"LGA\",-14.00,-27.00,0.00,\"\",0.00,158.00,144.00,1147.00,,,,,,\n2015,5,26,\"MQ\",\"3553\",\"XNA\",\"LGA\",-14.00,-19.00,0.00,\"\",0.00,166.00,151.00,1147.00,,,,,,\n2015,5,27,\"MQ\",\"3553\",\"XNA\",\"LGA\",134.00,158.00,0.00,\"\",0.00,195.00,143.00,1147.00,0.00,0.00,103.00,0.00,55.00,\n2015,5,28,\"MQ\",\"3553\",\"XNA\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,165.00,145.00,1147.00,,,,,,\n2015,5,29,\"MQ\",\"3553\",\"XNA\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,170.00,151.00,1147.00,,,,,,\n2015,5,31,\"MQ\",\"3553\",\"XNA\",\"LGA\",,,1.00,\"C\",0.00,,,1147.00,,,,,,\n2015,5,1,\"MQ\",\"3658\",\"RDU\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,88.00,59.00,431.00,,,,,,\n2015,5,2,\"MQ\",\"3658\",\"RDU\",\"LGA\",-7.00,-24.00,0.00,\"\",0.00,77.00,60.00,431.00,,,,,,\n2015,5,3,\"MQ\",\"3658\",\"RDU\",\"LGA\",-6.00,0.00,0.00,\"\",0.00,100.00,63.00,431.00,,,,,,\n2015,5,4,\"MQ\",\"3658\",\"RDU\",\"LGA\",16.00,6.00,0.00,\"\",0.00,84.00,67.00,431.00,,,,,,\n2015,5,5,\"MQ\",\"3658\",\"RDU\",\"LGA\",10.00,4.00,0.00,\"\",0.00,88.00,63.00,431.00,,,,,,\n2015,5,6,\"MQ\",\"3658\",\"RDU\",\"LGA\",-8.00,-25.00,0.00,\"\",0.00,77.00,61.00,431.00,,,,,,\n2015,5,7,\"MQ\",\"3658\",\"RDU\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,88.00,68.00,431.00,,,,,,\n2015,5,8,\"MQ\",\"3658\",\"RDU\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,93.00,76.00,431.00,,,,,,\n2015,5,9,\"MQ\",\"3658\",\"RDU\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,90.00,69.00,431.00,,,,,,\n2015,5,11,\"MQ\",\"3658\",\"RDU\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,76.00,64.00,431.00,,,,,,\n2015,5,12,\"MQ\",\"3658\",\"RDU\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,83.00,66.00,431.00,,,,,,\n2015,5,13,\"MQ\",\"3658\",\"RDU\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,80.00,61.00,431.00,,,,,,\n2015,5,14,\"MQ\",\"3658\",\"RDU\",\"LGA\",-7.00,-6.00,0.00,\"\",0.00,95.00,69.00,431.00,,,,,,\n2015,5,15,\"MQ\",\"3658\",\"RDU\",\"LGA\",2.00,2.00,0.00,\"\",0.00,94.00,64.00,431.00,,,,,,\n2015,5,16,\"MQ\",\"3658\",\"RDU\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,83.00,66.00,431.00,,,,,,\n2015,5,18,\"MQ\",\"3658\",\"RDU\",\"LGA\",255.00,277.00,0.00,\"\",0.00,116.00,79.00,431.00,0.00,0.00,277.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3658\",\"RDU\",\"LGA\",0.00,14.00,0.00,\"\",0.00,108.00,70.00,431.00,,,,,,\n2015,5,20,\"MQ\",\"3658\",\"RDU\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,79.00,55.00,431.00,,,,,,\n2015,5,21,\"MQ\",\"3658\",\"RDU\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,83.00,60.00,431.00,,,,,,\n2015,5,22,\"MQ\",\"3658\",\"RDU\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,85.00,61.00,431.00,,,,,,\n2015,5,23,\"MQ\",\"3658\",\"RDU\",\"LGA\",-7.00,-30.00,0.00,\"\",0.00,71.00,57.00,431.00,,,,,,\n2015,5,25,\"MQ\",\"3658\",\"RDU\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,85.00,60.00,431.00,,,,,,\n2015,5,26,\"MQ\",\"3658\",\"RDU\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,92.00,65.00,431.00,,,,,,\n2015,5,27,\"MQ\",\"3658\",\"RDU\",\"LGA\",27.00,26.00,0.00,\"\",0.00,93.00,72.00,431.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"MQ\",\"3658\",\"RDU\",\"LGA\",-1.00,19.00,0.00,\"\",0.00,114.00,65.00,431.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3658\",\"RDU\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,84.00,65.00,431.00,,,,,,\n2015,5,30,\"MQ\",\"3658\",\"RDU\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,93.00,64.00,431.00,,,,,,\n2015,5,1,\"MQ\",\"3668\",\"ATL\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,143.00,110.00,762.00,,,,,,\n2015,5,2,\"MQ\",\"3668\",\"ATL\",\"LGA\",25.00,19.00,0.00,\"\",0.00,132.00,111.00,762.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"MQ\",\"3668\",\"ATL\",\"LGA\",1.00,-8.00,0.00,\"\",0.00,129.00,107.00,762.00,,,,,,\n2015,5,4,\"MQ\",\"3668\",\"ATL\",\"LGA\",0.00,8.00,0.00,\"\",0.00,146.00,105.00,762.00,,,,,,\n2015,5,5,\"MQ\",\"3668\",\"ATL\",\"LGA\",90.00,74.00,0.00,\"\",0.00,122.00,105.00,762.00,74.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"MQ\",\"3668\",\"ATL\",\"LGA\",-10.00,-1.00,0.00,\"\",0.00,147.00,99.00,762.00,,,,,,\n2015,5,7,\"MQ\",\"3668\",\"ATL\",\"LGA\",-11.00,-18.00,0.00,\"\",0.00,131.00,100.00,762.00,,,,,,\n2015,5,8,\"MQ\",\"3668\",\"ATL\",\"LGA\",-4.00,5.00,0.00,\"\",0.00,147.00,104.00,762.00,,,,,,\n2015,5,9,\"MQ\",\"3668\",\"ATL\",\"LGA\",0.00,8.00,0.00,\"\",0.00,146.00,111.00,762.00,,,,,,\n2015,5,10,\"MQ\",\"3668\",\"ATL\",\"LGA\",-6.00,-6.00,0.00,\"\",0.00,138.00,114.00,762.00,,,,,,\n2015,5,11,\"MQ\",\"3668\",\"ATL\",\"LGA\",135.00,144.00,0.00,\"\",0.00,147.00,111.00,762.00,0.00,0.00,144.00,0.00,0.00,\n2015,5,12,\"MQ\",\"3668\",\"ATL\",\"LGA\",-4.00,-3.00,0.00,\"\",0.00,139.00,107.00,762.00,,,,,,\n2015,5,13,\"MQ\",\"3668\",\"ATL\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,130.00,105.00,762.00,,,,,,\n2015,5,14,\"MQ\",\"3668\",\"ATL\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,126.00,101.00,762.00,,,,,,\n2015,5,15,\"MQ\",\"3668\",\"ATL\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,122.00,101.00,762.00,,,,,,\n2015,5,16,\"MQ\",\"3668\",\"ATL\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,127.00,105.00,762.00,,,,,,\n2015,5,17,\"MQ\",\"3668\",\"ATL\",\"LGA\",-9.00,-7.00,0.00,\"\",0.00,140.00,108.00,762.00,,,,,,\n2015,5,18,\"MQ\",\"3668\",\"ATL\",\"LGA\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,19,\"MQ\",\"3668\",\"ATL\",\"LGA\",74.00,97.00,0.00,\"\",0.00,161.00,108.00,762.00,0.00,0.00,27.00,0.00,70.00,\n2015,5,20,\"MQ\",\"3668\",\"ATL\",\"LGA\",-3.00,13.00,0.00,\"\",0.00,154.00,103.00,762.00,,,,,,\n2015,5,21,\"MQ\",\"3668\",\"ATL\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,134.00,110.00,762.00,,,,,,\n2015,5,22,\"MQ\",\"3668\",\"ATL\",\"LGA\",-1.00,7.00,0.00,\"\",0.00,146.00,96.00,762.00,,,,,,\n2015,5,23,\"MQ\",\"3668\",\"ATL\",\"LGA\",-3.00,3.00,0.00,\"\",0.00,144.00,102.00,762.00,,,,,,\n2015,5,24,\"MQ\",\"3668\",\"ATL\",\"LGA\",-3.00,-22.00,0.00,\"\",0.00,119.00,105.00,762.00,,,,,,\n2015,5,25,\"MQ\",\"3668\",\"ATL\",\"LGA\",46.00,39.00,0.00,\"\",0.00,131.00,110.00,762.00,4.00,0.00,0.00,0.00,35.00,\n2015,5,26,\"MQ\",\"3668\",\"ATL\",\"LGA\",77.00,110.00,0.00,\"\",0.00,171.00,114.00,762.00,0.00,77.00,33.00,0.00,0.00,\n2015,5,27,\"MQ\",\"3668\",\"ATL\",\"LGA\",167.00,264.00,0.00,\"\",0.00,235.00,105.00,762.00,0.00,0.00,261.00,0.00,3.00,\n2015,5,28,\"MQ\",\"3668\",\"ATL\",\"LGA\",18.00,17.00,0.00,\"\",0.00,137.00,104.00,762.00,0.00,17.00,0.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3668\",\"ATL\",\"LGA\",-5.00,6.00,0.00,\"\",0.00,149.00,109.00,762.00,,,,,,\n2015,5,30,\"MQ\",\"3668\",\"ATL\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,122.00,104.00,762.00,,,,,,\n2015,5,31,\"MQ\",\"3668\",\"ATL\",\"LGA\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,1,\"MQ\",\"3668\",\"LGA\",\"ATL\",16.00,6.00,0.00,\"\",0.00,139.00,103.00,762.00,,,,,,\n2015,5,2,\"MQ\",\"3668\",\"LGA\",\"ATL\",-7.00,-28.00,0.00,\"\",0.00,128.00,99.00,762.00,,,,,,\n2015,5,3,\"MQ\",\"3668\",\"LGA\",\"ATL\",-2.00,-18.00,0.00,\"\",0.00,133.00,105.00,762.00,,,,,,\n2015,5,4,\"MQ\",\"3668\",\"LGA\",\"ATL\",32.00,16.00,0.00,\"\",0.00,133.00,107.00,762.00,1.00,0.00,0.00,0.00,15.00,\n2015,5,5,\"MQ\",\"3668\",\"LGA\",\"ATL\",0.00,-10.00,0.00,\"\",0.00,139.00,107.00,762.00,,,,,,\n2015,5,6,\"MQ\",\"3668\",\"LGA\",\"ATL\",-6.00,-8.00,0.00,\"\",0.00,147.00,104.00,762.00,,,,,,\n2015,5,7,\"MQ\",\"3668\",\"LGA\",\"ATL\",-12.00,-19.00,0.00,\"\",0.00,142.00,111.00,762.00,,,,,,\n2015,5,8,\"MQ\",\"3668\",\"LGA\",\"ATL\",-5.00,-39.00,0.00,\"\",0.00,115.00,101.00,762.00,,,,,,\n2015,5,9,\"MQ\",\"3668\",\"LGA\",\"ATL\",-4.00,-5.00,0.00,\"\",0.00,148.00,104.00,762.00,,,,,,\n2015,5,10,\"MQ\",\"3668\",\"LGA\",\"ATL\",-6.00,-18.00,0.00,\"\",0.00,137.00,115.00,762.00,,,,,,\n2015,5,11,\"MQ\",\"3668\",\"LGA\",\"ATL\",26.00,16.00,0.00,\"\",0.00,139.00,106.00,762.00,7.00,0.00,0.00,0.00,9.00,\n2015,5,12,\"MQ\",\"3668\",\"LGA\",\"ATL\",-9.00,3.00,0.00,\"\",0.00,161.00,117.00,762.00,,,,,,\n2015,5,13,\"MQ\",\"3668\",\"LGA\",\"ATL\",-3.00,-8.00,0.00,\"\",0.00,144.00,107.00,762.00,,,,,,\n2015,5,14,\"MQ\",\"3668\",\"LGA\",\"ATL\",6.00,-4.00,0.00,\"\",0.00,139.00,103.00,762.00,,,,,,\n2015,5,15,\"MQ\",\"3668\",\"LGA\",\"ATL\",0.00,-9.00,0.00,\"\",0.00,140.00,115.00,762.00,,,,,,\n2015,5,16,\"MQ\",\"3668\",\"LGA\",\"ATL\",-5.00,-25.00,0.00,\"\",0.00,129.00,105.00,762.00,,,,,,\n2015,5,17,\"MQ\",\"3668\",\"LGA\",\"ATL\",3.00,-16.00,0.00,\"\",0.00,130.00,105.00,762.00,,,,,,\n2015,5,18,\"MQ\",\"3668\",\"LGA\",\"ATL\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,19,\"MQ\",\"3668\",\"LGA\",\"ATL\",89.00,86.00,0.00,\"\",0.00,146.00,107.00,762.00,45.00,0.00,0.00,0.00,41.00,\n2015,5,20,\"MQ\",\"3668\",\"LGA\",\"ATL\",-5.00,-11.00,0.00,\"\",0.00,143.00,108.00,762.00,,,,,,\n2015,5,21,\"MQ\",\"3668\",\"LGA\",\"ATL\",-2.00,-9.00,0.00,\"\",0.00,142.00,112.00,762.00,,,,,,\n2015,5,22,\"MQ\",\"3668\",\"LGA\",\"ATL\",1.00,9.00,0.00,\"\",0.00,157.00,115.00,762.00,,,,,,\n2015,5,23,\"MQ\",\"3668\",\"LGA\",\"ATL\",-5.00,-20.00,0.00,\"\",0.00,134.00,105.00,762.00,,,,,,\n2015,5,24,\"MQ\",\"3668\",\"LGA\",\"ATL\",-5.00,-25.00,0.00,\"\",0.00,129.00,108.00,762.00,,,,,,\n2015,5,25,\"MQ\",\"3668\",\"LGA\",\"ATL\",59.00,57.00,0.00,\"\",0.00,147.00,108.00,762.00,57.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"MQ\",\"3668\",\"LGA\",\"ATL\",-7.00,-19.00,0.00,\"\",0.00,137.00,113.00,762.00,,,,,,\n2015,5,27,\"MQ\",\"3668\",\"LGA\",\"ATL\",20.00,19.00,0.00,\"\",0.00,148.00,111.00,762.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,28,\"MQ\",\"3668\",\"LGA\",\"ATL\",-6.00,16.00,0.00,\"\",0.00,171.00,129.00,762.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3668\",\"LGA\",\"ATL\",-6.00,-14.00,0.00,\"\",0.00,141.00,104.00,762.00,,,,,,\n2015,5,30,\"MQ\",\"3668\",\"LGA\",\"ATL\",-5.00,-30.00,0.00,\"\",0.00,124.00,106.00,762.00,,,,,,\n2015,5,31,\"MQ\",\"3668\",\"LGA\",\"ATL\",-5.00,-20.00,0.00,\"\",0.00,134.00,115.00,762.00,,,,,,\n2015,5,7,\"NK\",\"188\",\"DTW\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,98.00,79.00,502.00,,,,,,\n2015,5,8,\"NK\",\"188\",\"DTW\",\"LGA\",-4.00,20.00,0.00,\"\",0.00,130.00,75.00,502.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,9,\"NK\",\"188\",\"DTW\",\"LGA\",1.00,2.00,0.00,\"\",0.00,107.00,81.00,502.00,,,,,,\n2015,5,10,\"NK\",\"188\",\"DTW\",\"LGA\",29.00,25.00,0.00,\"\",0.00,102.00,81.00,502.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"NK\",\"188\",\"DTW\",\"LGA\",,,1.00,\"B\",0.00,,,502.00,,,,,,\n2015,5,12,\"NK\",\"188\",\"DTW\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,106.00,80.00,502.00,,,,,,\n2015,5,13,\"NK\",\"188\",\"DTW\",\"LGA\",4.00,1.00,0.00,\"\",0.00,103.00,72.00,502.00,,,,,,\n2015,5,14,\"NK\",\"188\",\"DTW\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,98.00,77.00,502.00,,,,,,\n2015,5,15,\"NK\",\"188\",\"DTW\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,93.00,71.00,502.00,,,,,,\n2015,5,16,\"NK\",\"188\",\"DTW\",\"LGA\",12.00,-4.00,0.00,\"\",0.00,90.00,79.00,502.00,,,,,,\n2015,5,17,\"NK\",\"188\",\"DTW\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,105.00,83.00,502.00,,,,,,\n2015,5,18,\"NK\",\"188\",\"DTW\",\"LGA\",,,1.00,\"B\",0.00,,,502.00,,,,,,\n2015,5,19,\"NK\",\"188\",\"DTW\",\"LGA\",105.00,97.00,0.00,\"\",0.00,98.00,77.00,502.00,0.00,0.00,0.00,0.00,97.00,\n2015,5,20,\"NK\",\"188\",\"DTW\",\"LGA\",12.00,19.00,0.00,\"\",0.00,113.00,69.00,502.00,12.00,0.00,7.00,0.00,0.00,\n2015,5,21,\"NK\",\"188\",\"DTW\",\"LGA\",20.00,8.00,0.00,\"\",0.00,94.00,75.00,502.00,,,,,,\n2015,5,22,\"NK\",\"188\",\"DTW\",\"LGA\",32.00,26.00,0.00,\"\",0.00,100.00,74.00,502.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"NK\",\"188\",\"DTW\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,100.00,72.00,502.00,,,,,,\n2015,5,24,\"NK\",\"188\",\"DTW\",\"LGA\",55.00,38.00,0.00,\"\",0.00,89.00,71.00,502.00,6.00,0.00,1.00,0.00,31.00,\n2015,5,25,\"NK\",\"188\",\"DTW\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,96.00,75.00,502.00,,,,,,\n2015,5,26,\"NK\",\"188\",\"DTW\",\"LGA\",75.00,62.00,0.00,\"\",0.00,93.00,76.00,502.00,62.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"NK\",\"188\",\"DTW\",\"LGA\",,,1.00,\"B\",0.00,,,502.00,,,,,,\n2015,5,28,\"NK\",\"188\",\"DTW\",\"LGA\",218.00,196.00,0.00,\"\",0.00,84.00,71.00,502.00,196.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"NK\",\"188\",\"DTW\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,105.00,76.00,502.00,,,,,,\n2015,5,30,\"NK\",\"188\",\"DTW\",\"LGA\",69.00,73.00,0.00,\"\",0.00,110.00,95.00,502.00,61.00,0.00,12.00,0.00,0.00,\n2015,5,31,\"NK\",\"188\",\"DTW\",\"LGA\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,1,\"NK\",\"188\",\"LGA\",\"MYR\",-12.00,-24.00,0.00,\"\",0.00,102.00,78.00,563.00,,,,,,\n2015,5,2,\"NK\",\"188\",\"LGA\",\"MYR\",-11.00,-30.00,0.00,\"\",0.00,95.00,77.00,563.00,,,,,,\n2015,5,3,\"NK\",\"188\",\"LGA\",\"MYR\",1.00,-12.00,0.00,\"\",0.00,101.00,80.00,563.00,,,,,,\n2015,5,4,\"NK\",\"188\",\"LGA\",\"MYR\",74.00,57.00,0.00,\"\",0.00,97.00,78.00,563.00,16.00,0.00,1.00,0.00,40.00,\n2015,5,5,\"NK\",\"188\",\"LGA\",\"MYR\",-10.00,-28.00,0.00,\"\",0.00,96.00,79.00,563.00,,,,,,\n2015,5,6,\"NK\",\"188\",\"LGA\",\"MYR\",10.00,16.00,0.00,\"\",0.00,120.00,76.00,563.00,0.00,0.00,11.00,0.00,5.00,\n2015,5,7,\"NK\",\"188\",\"LGA\",\"MYR\",-5.00,-19.00,0.00,\"\",0.00,100.00,80.00,563.00,,,,,,\n2015,5,8,\"NK\",\"188\",\"LGA\",\"MYR\",23.00,7.00,0.00,\"\",0.00,98.00,75.00,563.00,,,,,,\n2015,5,9,\"NK\",\"188\",\"LGA\",\"MYR\",-3.00,-22.00,0.00,\"\",0.00,95.00,79.00,563.00,,,,,,\n2015,5,10,\"NK\",\"188\",\"LGA\",\"MYR\",20.00,12.00,0.00,\"\",0.00,106.00,79.00,563.00,,,,,,\n2015,5,11,\"NK\",\"188\",\"LGA\",\"MYR\",,,1.00,\"B\",0.00,,,563.00,,,,,,\n2015,5,12,\"NK\",\"188\",\"LGA\",\"MYR\",-1.00,40.00,0.00,\"\",0.00,155.00,84.00,563.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,13,\"NK\",\"188\",\"LGA\",\"MYR\",2.00,-3.00,0.00,\"\",0.00,109.00,75.00,563.00,,,,,,\n2015,5,14,\"NK\",\"188\",\"LGA\",\"MYR\",-10.00,-18.00,0.00,\"\",0.00,106.00,76.00,563.00,,,,,,\n2015,5,15,\"NK\",\"188\",\"LGA\",\"MYR\",-4.00,-20.00,0.00,\"\",0.00,98.00,76.00,563.00,,,,,,\n2015,5,16,\"NK\",\"188\",\"LGA\",\"MYR\",1.00,-13.00,0.00,\"\",0.00,100.00,77.00,563.00,,,,,,\n2015,5,17,\"NK\",\"188\",\"LGA\",\"MYR\",2.00,12.00,0.00,\"\",0.00,124.00,77.00,563.00,,,,,,\n2015,5,18,\"NK\",\"188\",\"LGA\",\"MYR\",,,1.00,\"B\",0.00,,,563.00,,,,,,\n2015,5,19,\"NK\",\"188\",\"LGA\",\"MYR\",90.00,104.00,0.00,\"\",0.00,128.00,86.00,563.00,0.00,0.00,14.00,0.00,90.00,\n2015,5,20,\"NK\",\"188\",\"LGA\",\"MYR\",19.00,44.00,0.00,\"\",0.00,139.00,79.00,563.00,0.00,0.00,29.00,0.00,15.00,\n2015,5,21,\"NK\",\"188\",\"LGA\",\"MYR\",11.00,21.00,0.00,\"\",0.00,124.00,94.00,563.00,11.00,0.00,10.00,0.00,0.00,\n2015,5,22,\"NK\",\"188\",\"LGA\",\"MYR\",19.00,6.00,0.00,\"\",0.00,101.00,83.00,563.00,,,,,,\n2015,5,23,\"NK\",\"188\",\"LGA\",\"MYR\",-10.00,-28.00,0.00,\"\",0.00,96.00,76.00,563.00,,,,,,\n2015,5,24,\"NK\",\"188\",\"LGA\",\"MYR\",38.00,19.00,0.00,\"\",0.00,95.00,75.00,563.00,2.00,0.00,0.00,0.00,17.00,\n2015,5,25,\"NK\",\"188\",\"LGA\",\"MYR\",-9.00,-21.00,0.00,\"\",0.00,102.00,81.00,563.00,,,,,,\n2015,5,26,\"NK\",\"188\",\"LGA\",\"MYR\",60.00,47.00,0.00,\"\",0.00,101.00,79.00,563.00,0.00,0.00,2.00,0.00,45.00,\n2015,5,27,\"NK\",\"188\",\"LGA\",\"MYR\",,,1.00,\"B\",0.00,,,563.00,,,,,,\n2015,5,28,\"NK\",\"188\",\"LGA\",\"MYR\",194.00,198.00,0.00,\"\",0.00,118.00,81.00,563.00,2.00,0.00,4.00,0.00,192.00,\n2015,5,29,\"NK\",\"188\",\"LGA\",\"MYR\",-10.00,-20.00,0.00,\"\",0.00,104.00,76.00,563.00,,,,,,\n2015,5,30,\"NK\",\"188\",\"LGA\",\"MYR\",75.00,51.00,0.00,\"\",0.00,90.00,75.00,563.00,4.00,0.00,1.00,0.00,46.00,\n2015,5,31,\"NK\",\"188\",\"LGA\",\"MYR\",,,1.00,\"C\",0.00,,,563.00,,,,,,\n2015,5,1,\"MQ\",\"3609\",\"DTW\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,92.00,75.00,502.00,,,,,,\n2015,5,2,\"MQ\",\"3609\",\"DTW\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,86.00,74.00,502.00,,,,,,\n2015,5,3,\"MQ\",\"3609\",\"DTW\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,90.00,72.00,502.00,,,,,,\n2015,5,4,\"MQ\",\"3609\",\"DTW\",\"LGA\",-2.00,6.00,0.00,\"\",0.00,111.00,78.00,502.00,,,,,,\n2015,5,5,\"MQ\",\"3609\",\"DTW\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,89.00,73.00,502.00,,,,,,\n2015,5,6,\"MQ\",\"3609\",\"DTW\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,94.00,76.00,502.00,,,,,,\n2015,5,7,\"MQ\",\"3609\",\"DTW\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,100.00,78.00,502.00,,,,,,\n2015,5,8,\"MQ\",\"3609\",\"DTW\",\"LGA\",0.00,7.00,0.00,\"\",0.00,110.00,93.00,502.00,,,,,,\n2015,5,9,\"MQ\",\"3609\",\"DTW\",\"LGA\",-1.00,10.00,0.00,\"\",0.00,118.00,97.00,502.00,,,,,,\n2015,5,10,\"MQ\",\"3609\",\"DTW\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,92.00,75.00,502.00,,,,,,\n2015,5,11,\"MQ\",\"3609\",\"DTW\",\"LGA\",9.00,5.00,0.00,\"\",0.00,99.00,74.00,502.00,,,,,,\n2015,5,12,\"MQ\",\"3609\",\"DTW\",\"LGA\",51.00,34.00,0.00,\"\",0.00,86.00,75.00,502.00,34.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"MQ\",\"3609\",\"DTW\",\"LGA\",0.00,6.00,0.00,\"\",0.00,109.00,62.00,502.00,,,,,,\n2015,5,14,\"MQ\",\"3609\",\"DTW\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,92.00,75.00,502.00,,,,,,\n2015,5,15,\"MQ\",\"3609\",\"DTW\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,98.00,76.00,502.00,,,,,,\n2015,5,16,\"MQ\",\"3609\",\"DTW\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,108.00,73.00,502.00,,,,,,\n2015,5,17,\"MQ\",\"3609\",\"DTW\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,89.00,76.00,502.00,,,,,,\n2015,5,18,\"MQ\",\"3609\",\"DTW\",\"LGA\",-7.00,,0.00,\"\",1.00,,,502.00,,,,,,\n2015,5,19,\"MQ\",\"3609\",\"DTW\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,102.00,79.00,502.00,,,,,,\n2015,5,20,\"MQ\",\"3609\",\"DTW\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,95.00,72.00,502.00,,,,,,\n2015,5,21,\"MQ\",\"3609\",\"DTW\",\"LGA\",-10.00,42.00,0.00,\"\",0.00,155.00,75.00,502.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3609\",\"DTW\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,91.00,70.00,502.00,,,,,,\n2015,5,23,\"MQ\",\"3609\",\"DTW\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,97.00,67.00,502.00,,,,,,\n2015,5,24,\"MQ\",\"3609\",\"DTW\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,88.00,70.00,502.00,,,,,,\n2015,5,25,\"MQ\",\"3609\",\"DTW\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,89.00,71.00,502.00,,,,,,\n2015,5,26,\"MQ\",\"3609\",\"DTW\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,98.00,74.00,502.00,,,,,,\n2015,5,27,\"MQ\",\"3609\",\"DTW\",\"LGA\",-2.00,11.00,0.00,\"\",0.00,116.00,80.00,502.00,,,,,,\n2015,5,28,\"MQ\",\"3609\",\"DTW\",\"LGA\",-3.00,33.00,0.00,\"\",0.00,139.00,75.00,502.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3609\",\"DTW\",\"LGA\",,,1.00,\"A\",0.00,,,502.00,,,,,,\n2015,5,30,\"MQ\",\"3609\",\"DTW\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,110.00,76.00,502.00,,,,,,\n2015,5,31,\"MQ\",\"3609\",\"DTW\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,100.00,81.00,502.00,,,,,,\n2015,5,1,\"MQ\",\"3610\",\"DTW\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,93.00,79.00,502.00,,,,,,\n2015,5,4,\"MQ\",\"3610\",\"DTW\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,94.00,72.00,502.00,,,,,,\n2015,5,5,\"MQ\",\"3610\",\"DTW\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,92.00,75.00,502.00,,,,,,\n2015,5,6,\"MQ\",\"3610\",\"DTW\",\"LGA\",5.00,55.00,0.00,\"\",0.00,157.00,73.00,502.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3610\",\"DTW\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,91.00,73.00,502.00,,,,,,\n2015,5,8,\"MQ\",\"3610\",\"DTW\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,104.00,75.00,502.00,,,,,,\n2015,5,11,\"MQ\",\"3610\",\"DTW\",\"LGA\",24.00,31.00,0.00,\"\",0.00,114.00,80.00,502.00,3.00,0.00,7.00,0.00,21.00,\n2015,5,12,\"MQ\",\"3610\",\"DTW\",\"LGA\",-12.00,-33.00,0.00,\"\",0.00,86.00,67.00,502.00,,,,,,\n2015,5,13,\"MQ\",\"3610\",\"DTW\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,92.00,69.00,502.00,,,,,,\n2015,5,14,\"MQ\",\"3610\",\"DTW\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,99.00,73.00,502.00,,,,,,\n2015,5,15,\"MQ\",\"3610\",\"DTW\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,93.00,76.00,502.00,,,,,,\n2015,5,18,\"MQ\",\"3610\",\"DTW\",\"LGA\",,,1.00,\"C\",0.00,,,502.00,,,,,,\n2015,5,19,\"MQ\",\"3610\",\"DTW\",\"LGA\",115.00,95.00,0.00,\"\",0.00,87.00,69.00,502.00,0.00,0.00,95.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3610\",\"DTW\",\"LGA\",-2.00,-23.00,0.00,\"\",0.00,86.00,68.00,502.00,,,,,,\n2015,5,21,\"MQ\",\"3610\",\"DTW\",\"LGA\",4.00,-10.00,0.00,\"\",0.00,93.00,74.00,502.00,,,,,,\n2015,5,22,\"MQ\",\"3610\",\"DTW\",\"LGA\",18.00,0.00,0.00,\"\",0.00,89.00,67.00,502.00,,,,,,\n2015,5,25,\"MQ\",\"3610\",\"DTW\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,90.00,76.00,502.00,,,,,,\n2015,5,26,\"MQ\",\"3610\",\"DTW\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,93.00,74.00,502.00,,,,,,\n2015,5,27,\"MQ\",\"3610\",\"DTW\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,91.00,75.00,502.00,,,,,,\n2015,5,28,\"MQ\",\"3610\",\"DTW\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,90.00,77.00,502.00,,,,,,\n2015,5,29,\"MQ\",\"3610\",\"DTW\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,112.00,75.00,502.00,,,,,,\n2015,5,1,\"MQ\",\"3610\",\"LGA\",\"DTW\",-3.00,-3.00,0.00,\"\",0.00,112.00,73.00,502.00,,,,,,\n2015,5,4,\"MQ\",\"3610\",\"LGA\",\"DTW\",35.00,19.00,0.00,\"\",0.00,96.00,75.00,502.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"MQ\",\"3610\",\"LGA\",\"DTW\",-9.00,-16.00,0.00,\"\",0.00,105.00,85.00,502.00,,,,,,\n2015,5,6,\"MQ\",\"3610\",\"LGA\",\"DTW\",-8.00,40.00,0.00,\"\",0.00,160.00,81.00,502.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,7,\"MQ\",\"3610\",\"LGA\",\"DTW\",-6.00,2.00,0.00,\"\",0.00,120.00,81.00,502.00,,,,,,\n2015,5,8,\"MQ\",\"3610\",\"LGA\",\"DTW\",-2.00,5.00,0.00,\"\",0.00,119.00,82.00,502.00,,,,,,\n2015,5,1,\"NK\",\"171\",\"LGA\",\"FLL\",-6.00,-25.00,0.00,\"\",0.00,172.00,148.00,1076.00,,,,,,\n2015,5,2,\"NK\",\"171\",\"LGA\",\"FLL\",-8.00,-32.00,0.00,\"\",0.00,167.00,150.00,1076.00,,,,,,\n2015,5,3,\"NK\",\"171\",\"LGA\",\"FLL\",-8.00,-27.00,0.00,\"\",0.00,172.00,146.00,1076.00,,,,,,\n2015,5,4,\"NK\",\"171\",\"LGA\",\"FLL\",-3.00,-17.00,0.00,\"\",0.00,177.00,147.00,1076.00,,,,,,\n2015,5,5,\"NK\",\"171\",\"LGA\",\"FLL\",-8.00,-8.00,0.00,\"\",0.00,191.00,157.00,1076.00,,,,,,\n2015,5,6,\"NK\",\"171\",\"LGA\",\"FLL\",-7.00,0.00,0.00,\"\",0.00,198.00,153.00,1076.00,,,,,,\n2015,5,7,\"NK\",\"171\",\"LGA\",\"FLL\",11.00,-10.00,0.00,\"\",0.00,170.00,146.00,1076.00,,,,,,\n2015,5,8,\"NK\",\"171\",\"LGA\",\"FLL\",155.00,149.00,0.00,\"\",0.00,185.00,162.00,1076.00,20.00,0.00,1.00,0.00,128.00,\n2015,5,9,\"NK\",\"171\",\"LGA\",\"FLL\",-4.00,-25.00,0.00,\"\",0.00,170.00,146.00,1076.00,,,,,,\n2015,5,10,\"NK\",\"171\",\"LGA\",\"FLL\",0.00,5.00,0.00,\"\",0.00,196.00,160.00,1076.00,,,,,,\n2015,5,11,\"NK\",\"171\",\"LGA\",\"FLL\",-10.00,-26.00,0.00,\"\",0.00,175.00,146.00,1076.00,,,,,,\n2015,5,12,\"NK\",\"171\",\"LGA\",\"FLL\",-13.00,-32.00,0.00,\"\",0.00,172.00,143.00,1076.00,,,,,,\n2015,5,13,\"NK\",\"171\",\"LGA\",\"FLL\",3.00,-6.00,0.00,\"\",0.00,182.00,143.00,1076.00,,,,,,\n2015,5,14,\"NK\",\"171\",\"LGA\",\"FLL\",6.00,-15.00,0.00,\"\",0.00,170.00,139.00,1076.00,,,,,,\n2015,5,15,\"NK\",\"171\",\"LGA\",\"FLL\",-4.00,-29.00,0.00,\"\",0.00,166.00,144.00,1076.00,,,,,,\n2015,5,16,\"NK\",\"171\",\"LGA\",\"FLL\",-9.00,-32.00,0.00,\"\",0.00,168.00,138.00,1076.00,,,,,,\n2015,5,17,\"NK\",\"171\",\"LGA\",\"FLL\",18.00,-2.00,0.00,\"\",0.00,171.00,142.00,1076.00,,,,,,\n2015,5,18,\"NK\",\"171\",\"LGA\",\"FLL\",-8.00,-12.00,0.00,\"\",0.00,187.00,158.00,1076.00,,,,,,\n2015,5,19,\"NK\",\"171\",\"LGA\",\"FLL\",20.00,36.00,0.00,\"\",0.00,207.00,161.00,1076.00,20.00,0.00,16.00,0.00,0.00,\n2015,5,20,\"NK\",\"171\",\"LGA\",\"FLL\",-3.00,-11.00,0.00,\"\",0.00,183.00,143.00,1076.00,,,,,,\n2015,5,21,\"NK\",\"171\",\"LGA\",\"FLL\",-7.00,10.00,0.00,\"\",0.00,208.00,161.00,1076.00,,,,,,\n2015,5,22,\"NK\",\"171\",\"LGA\",\"FLL\",-6.00,-2.00,0.00,\"\",0.00,195.00,152.00,1076.00,,,,,,\n2015,5,23,\"NK\",\"171\",\"LGA\",\"FLL\",-11.00,-23.00,0.00,\"\",0.00,179.00,145.00,1076.00,,,,,,\n2015,5,24,\"NK\",\"171\",\"LGA\",\"FLL\",-2.00,-21.00,0.00,\"\",0.00,172.00,137.00,1076.00,,,,,,\n2015,5,25,\"NK\",\"171\",\"LGA\",\"FLL\",-4.00,10.00,0.00,\"\",0.00,205.00,147.00,1076.00,,,,,,\n2015,5,26,\"NK\",\"171\",\"LGA\",\"FLL\",0.00,-21.00,0.00,\"\",0.00,170.00,144.00,1076.00,,,,,,\n2015,5,27,\"NK\",\"171\",\"LGA\",\"FLL\",-4.00,-38.00,0.00,\"\",0.00,157.00,138.00,1076.00,,,,,,\n2015,5,28,\"NK\",\"171\",\"LGA\",\"FLL\",15.00,-4.00,0.00,\"\",0.00,172.00,145.00,1076.00,,,,,,\n2015,5,29,\"NK\",\"171\",\"LGA\",\"FLL\",-10.00,-36.00,0.00,\"\",0.00,165.00,137.00,1076.00,,,,,,\n2015,5,30,\"NK\",\"171\",\"LGA\",\"FLL\",5.00,-6.00,0.00,\"\",0.00,180.00,142.00,1076.00,,,,,,\n2015,5,31,\"NK\",\"171\",\"LGA\",\"FLL\",,,1.00,\"B\",0.00,,,1076.00,,,,,,\n2015,5,1,\"NK\",\"174\",\"FLL\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,162.00,142.00,1076.00,,,,,,\n2015,5,2,\"NK\",\"174\",\"FLL\",\"LGA\",0.00,-21.00,0.00,\"\",0.00,157.00,140.00,1076.00,,,,,,\n2015,5,3,\"NK\",\"174\",\"FLL\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,165.00,141.00,1076.00,,,,,,\n2015,5,4,\"NK\",\"174\",\"FLL\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,160.00,140.00,1076.00,,,,,,\n2015,5,5,\"NK\",\"174\",\"FLL\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,160.00,134.00,1076.00,,,,,,\n2015,5,6,\"NK\",\"174\",\"FLL\",\"LGA\",22.00,2.00,0.00,\"\",0.00,158.00,133.00,1076.00,,,,,,\n2015,5,7,\"NK\",\"174\",\"FLL\",\"LGA\",4.00,-10.00,0.00,\"\",0.00,164.00,147.00,1076.00,,,,,,\n2015,5,8,\"NK\",\"174\",\"FLL\",\"LGA\",2.00,3.00,0.00,\"\",0.00,179.00,147.00,1076.00,,,,,,\n2015,5,9,\"NK\",\"174\",\"FLL\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,179.00,157.00,1076.00,,,,,,\n2015,5,10,\"NK\",\"174\",\"FLL\",\"LGA\",36.00,19.00,0.00,\"\",0.00,161.00,144.00,1076.00,12.00,0.00,1.00,0.00,6.00,\n2015,5,11,\"NK\",\"174\",\"FLL\",\"LGA\",53.00,42.00,0.00,\"\",0.00,167.00,148.00,1076.00,0.00,0.00,27.00,0.00,15.00,\n2015,5,12,\"NK\",\"174\",\"FLL\",\"LGA\",8.00,-9.00,0.00,\"\",0.00,161.00,142.00,1076.00,,,,,,\n2015,5,13,\"NK\",\"174\",\"FLL\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,171.00,151.00,1076.00,,,,,,\n2015,5,14,\"NK\",\"174\",\"FLL\",\"LGA\",3.00,-6.00,0.00,\"\",0.00,169.00,146.00,1076.00,,,,,,\n2015,5,15,\"NK\",\"174\",\"FLL\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,168.00,150.00,1076.00,,,,,,\n2015,5,16,\"NK\",\"174\",\"FLL\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,168.00,150.00,1076.00,,,,,,\n2015,5,17,\"NK\",\"174\",\"FLL\",\"LGA\",2.00,-15.00,0.00,\"\",0.00,161.00,147.00,1076.00,,,,,,\n2015,5,18,\"NK\",\"174\",\"FLL\",\"LGA\",149.00,148.00,0.00,\"\",0.00,177.00,149.00,1076.00,0.00,0.00,88.00,0.00,60.00,\n2015,5,19,\"NK\",\"174\",\"FLL\",\"LGA\",55.00,70.00,0.00,\"\",0.00,193.00,156.00,1076.00,0.00,0.00,70.00,0.00,0.00,\n2015,5,20,\"NK\",\"174\",\"FLL\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,176.00,144.00,1076.00,,,,,,\n2015,5,21,\"NK\",\"174\",\"FLL\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,178.00,148.00,1076.00,,,,,,\n2015,5,22,\"NK\",\"174\",\"FLL\",\"LGA\",-7.00,-2.00,0.00,\"\",0.00,183.00,138.00,1076.00,,,,,,\n2015,5,23,\"NK\",\"174\",\"FLL\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,161.00,144.00,1076.00,,,,,,\n2015,5,24,\"NK\",\"174\",\"FLL\",\"LGA\",30.00,26.00,0.00,\"\",0.00,174.00,148.00,1076.00,10.00,0.00,1.00,0.00,15.00,\n2015,5,25,\"NK\",\"174\",\"FLL\",\"LGA\",1.00,11.00,0.00,\"\",0.00,188.00,151.00,1076.00,,,,,,\n2015,5,26,\"NK\",\"174\",\"FLL\",\"LGA\",93.00,76.00,0.00,\"\",0.00,161.00,142.00,1076.00,6.00,0.00,1.00,0.00,69.00,\n2015,5,27,\"NK\",\"174\",\"FLL\",\"LGA\",52.00,128.00,0.00,\"\",0.00,254.00,205.00,1076.00,0.00,0.00,76.00,0.00,52.00,\n2015,5,28,\"NK\",\"174\",\"FLL\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,162.00,143.00,1076.00,,,,,,\n2015,5,29,\"NK\",\"174\",\"FLL\",\"LGA\",8.00,-6.00,0.00,\"\",0.00,164.00,146.00,1076.00,,,,,,\n2015,5,30,\"NK\",\"174\",\"FLL\",\"LGA\",1.00,4.00,0.00,\"\",0.00,181.00,151.00,1076.00,,,,,,\n2015,5,31,\"NK\",\"174\",\"FLL\",\"LGA\",,,1.00,\"C\",0.00,,,1076.00,,,,,,\n2015,5,1,\"NK\",\"180\",\"FLL\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,158.00,137.00,1076.00,,,,,,\n2015,5,2,\"NK\",\"180\",\"FLL\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,158.00,136.00,1076.00,,,,,,\n2015,5,3,\"NK\",\"180\",\"FLL\",\"LGA\",-8.00,-3.00,0.00,\"\",0.00,181.00,143.00,1076.00,,,,,,\n2015,5,4,\"NK\",\"180\",\"FLL\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,171.00,154.00,1076.00,,,,,,\n2015,5,5,\"NK\",\"180\",\"FLL\",\"LGA\",-2.00,-24.00,0.00,\"\",0.00,154.00,136.00,1076.00,,,,,,\n2015,5,6,\"NK\",\"180\",\"FLL\",\"LGA\",1.00,-11.00,0.00,\"\",0.00,164.00,142.00,1076.00,,,,,,\n2015,5,7,\"NK\",\"180\",\"FLL\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,169.00,149.00,1076.00,,,,,,\n2015,5,8,\"NK\",\"180\",\"FLL\",\"LGA\",156.00,160.00,0.00,\"\",0.00,180.00,149.00,1076.00,0.00,0.00,4.00,0.00,156.00,\n2015,5,9,\"NK\",\"180\",\"FLL\",\"LGA\",-1.00,13.00,0.00,\"\",0.00,190.00,168.00,1076.00,,,,,,\n2015,5,10,\"NK\",\"180\",\"FLL\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,172.00,148.00,1076.00,,,,,,\n2015,5,11,\"NK\",\"180\",\"FLL\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,171.00,152.00,1076.00,,,,,,\n2015,5,12,\"NK\",\"180\",\"FLL\",\"LGA\",-10.00,-18.00,0.00,\"\",0.00,168.00,145.00,1076.00,,,,,,\n2015,5,13,\"NK\",\"180\",\"FLL\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,155.00,139.00,1076.00,,,,,,\n2015,5,14,\"NK\",\"180\",\"FLL\",\"LGA\",-9.00,-18.00,0.00,\"\",0.00,167.00,150.00,1076.00,,,,,,\n2015,5,15,\"NK\",\"180\",\"FLL\",\"LGA\",-12.00,-23.00,0.00,\"\",0.00,165.00,142.00,1076.00,,,,,,\n2015,5,16,\"NK\",\"180\",\"FLL\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,161.00,143.00,1076.00,,,,,,\n2015,5,17,\"NK\",\"180\",\"FLL\",\"LGA\",30.00,21.00,0.00,\"\",0.00,167.00,144.00,1076.00,2.00,0.00,1.00,0.00,18.00,\n2015,5,18,\"NK\",\"180\",\"FLL\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,166.00,143.00,1076.00,,,,,,\n2015,5,19,\"NK\",\"180\",\"FLL\",\"LGA\",26.00,9.00,0.00,\"\",0.00,159.00,139.00,1076.00,,,,,,\n2015,5,20,\"NK\",\"180\",\"FLL\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,163.00,140.00,1076.00,,,,,,\n2015,5,21,\"NK\",\"180\",\"FLL\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,161.00,140.00,1076.00,,,,,,\n2015,5,22,\"NK\",\"180\",\"FLL\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,160.00,138.00,1076.00,,,,,,\n2015,5,23,\"NK\",\"180\",\"FLL\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,162.00,140.00,1076.00,,,,,,\n2015,5,24,\"NK\",\"180\",\"FLL\",\"LGA\",5.00,3.00,0.00,\"\",0.00,174.00,146.00,1076.00,,,,,,\n2015,5,25,\"NK\",\"180\",\"FLL\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,168.00,143.00,1076.00,,,,,,\n2015,5,26,\"NK\",\"180\",\"FLL\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,161.00,140.00,1076.00,,,,,,\n2015,5,27,\"NK\",\"180\",\"FLL\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,159.00,142.00,1076.00,,,,,,\n2015,5,28,\"NK\",\"180\",\"FLL\",\"LGA\",29.00,28.00,0.00,\"\",0.00,175.00,149.00,1076.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"NK\",\"180\",\"FLL\",\"LGA\",-11.00,-26.00,0.00,\"\",0.00,161.00,144.00,1076.00,,,,,,\n2015,5,30,\"NK\",\"180\",\"FLL\",\"LGA\",43.00,36.00,0.00,\"\",0.00,169.00,151.00,1076.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"NK\",\"180\",\"FLL\",\"LGA\",142.00,,0.00,\"\",1.00,,,1076.00,,,,,,\n2015,5,1,\"NK\",\"188\",\"DTW\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,100.00,79.00,502.00,,,,,,\n2015,5,2,\"NK\",\"188\",\"DTW\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,100.00,81.00,502.00,,,,,,\n2015,5,3,\"NK\",\"188\",\"DTW\",\"LGA\",6.00,1.00,0.00,\"\",0.00,101.00,80.00,502.00,,,,,,\n2015,5,4,\"NK\",\"188\",\"DTW\",\"LGA\",53.00,53.00,0.00,\"\",0.00,106.00,73.00,502.00,53.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"NK\",\"188\",\"DTW\",\"LGA\",4.00,-8.00,0.00,\"\",0.00,94.00,73.00,502.00,,,,,,\n2015,5,6,\"NK\",\"188\",\"DTW\",\"LGA\",19.00,9.00,0.00,\"\",0.00,96.00,77.00,502.00,,,,,,\n2015,5,1,\"MQ\",\"3682\",\"ATL\",\"LGA\",13.00,29.00,0.00,\"\",0.00,160.00,105.00,762.00,0.00,0.00,16.00,0.00,13.00,\n2015,5,2,\"MQ\",\"3682\",\"ATL\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,139.00,121.00,762.00,,,,,,\n2015,5,3,\"MQ\",\"3682\",\"ATL\",\"LGA\",15.00,17.00,0.00,\"\",0.00,146.00,109.00,762.00,0.00,0.00,2.00,15.00,0.00,\n2015,5,4,\"MQ\",\"3682\",\"ATL\",\"LGA\",17.00,4.00,0.00,\"\",0.00,131.00,104.00,762.00,,,,,,\n2015,5,5,\"MQ\",\"3682\",\"ATL\",\"LGA\",-8.00,-31.00,0.00,\"\",0.00,121.00,104.00,762.00,,,,,,\n2015,5,6,\"MQ\",\"3682\",\"ATL\",\"LGA\",-4.00,-25.00,0.00,\"\",0.00,123.00,106.00,762.00,,,,,,\n2015,5,7,\"MQ\",\"3682\",\"ATL\",\"LGA\",2.00,6.00,0.00,\"\",0.00,148.00,105.00,762.00,,,,,,\n2015,5,8,\"MQ\",\"3682\",\"ATL\",\"LGA\",36.00,38.00,0.00,\"\",0.00,146.00,112.00,762.00,0.00,0.00,33.00,0.00,5.00,\n2015,5,9,\"MQ\",\"3682\",\"ATL\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,141.00,121.00,762.00,,,,,,\n2015,5,10,\"MQ\",\"3682\",\"ATL\",\"LGA\",-7.00,-30.00,0.00,\"\",0.00,121.00,102.00,762.00,,,,,,\n2015,5,11,\"MQ\",\"3682\",\"ATL\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,139.00,110.00,762.00,,,,,,\n2015,5,12,\"MQ\",\"3682\",\"ATL\",\"LGA\",0.00,-24.00,0.00,\"\",0.00,120.00,101.00,762.00,,,,,,\n2015,5,13,\"MQ\",\"3682\",\"ATL\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,129.00,97.00,762.00,,,,,,\n2015,5,14,\"MQ\",\"3682\",\"ATL\",\"LGA\",51.00,32.00,0.00,\"\",0.00,125.00,104.00,762.00,24.00,0.00,0.00,0.00,8.00,\n2015,5,15,\"MQ\",\"3682\",\"ATL\",\"LGA\",115.00,101.00,0.00,\"\",0.00,130.00,101.00,762.00,0.00,0.00,0.00,0.00,101.00,\n2015,5,16,\"MQ\",\"3682\",\"ATL\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,124.00,107.00,762.00,,,,,,\n2015,5,17,\"MQ\",\"3682\",\"ATL\",\"LGA\",3.00,12.00,0.00,\"\",0.00,153.00,106.00,762.00,,,,,,\n2015,5,18,\"MQ\",\"3682\",\"ATL\",\"LGA\",267.00,289.00,0.00,\"\",0.00,166.00,107.00,762.00,0.00,0.00,289.00,0.00,0.00,\n2015,5,19,\"MQ\",\"3682\",\"ATL\",\"LGA\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,20,\"MQ\",\"3682\",\"ATL\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,147.00,100.00,762.00,,,,,,\n2015,5,21,\"MQ\",\"3682\",\"ATL\",\"LGA\",30.00,21.00,0.00,\"\",0.00,135.00,101.00,762.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,22,\"MQ\",\"3682\",\"ATL\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,126.00,101.00,762.00,,,,,,\n2015,5,23,\"MQ\",\"3682\",\"ATL\",\"LGA\",111.00,86.00,0.00,\"\",0.00,119.00,94.00,762.00,0.00,0.00,0.00,0.00,86.00,\n2015,5,24,\"MQ\",\"3682\",\"ATL\",\"LGA\",-8.00,-28.00,0.00,\"\",0.00,124.00,106.00,762.00,,,,,,\n2015,5,25,\"MQ\",\"3682\",\"ATL\",\"LGA\",-4.00,-29.00,0.00,\"\",0.00,119.00,102.00,762.00,,,,,,\n2015,5,26,\"MQ\",\"3682\",\"ATL\",\"LGA\",6.00,6.00,0.00,\"\",0.00,144.00,103.00,762.00,,,,,,\n2015,5,27,\"MQ\",\"3682\",\"ATL\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,129.00,99.00,762.00,,,,,,\n2015,5,28,\"MQ\",\"3682\",\"ATL\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,134.00,105.00,762.00,,,,,,\n2015,5,29,\"MQ\",\"3682\",\"ATL\",\"LGA\",14.00,13.00,0.00,\"\",0.00,143.00,100.00,762.00,,,,,,\n2015,5,30,\"MQ\",\"3682\",\"ATL\",\"LGA\",-4.00,9.00,0.00,\"\",0.00,157.00,107.00,762.00,,,,,,\n2015,5,31,\"MQ\",\"3682\",\"ATL\",\"LGA\",-3.00,-29.00,0.00,\"\",0.00,118.00,102.00,762.00,,,,,,\n2015,5,1,\"MQ\",\"3682\",\"LGA\",\"ATL\",-10.00,22.00,0.00,\"\",0.00,169.00,114.00,762.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,2,\"MQ\",\"3682\",\"LGA\",\"ATL\",-2.00,-8.00,0.00,\"\",0.00,131.00,105.00,762.00,,,,,,\n2015,5,4,\"MQ\",\"3682\",\"LGA\",\"ATL\",3.00,9.00,0.00,\"\",0.00,143.00,105.00,762.00,,,,,,\n2015,5,5,\"MQ\",\"3682\",\"LGA\",\"ATL\",-7.00,-8.00,0.00,\"\",0.00,136.00,105.00,762.00,,,,,,\n2015,5,6,\"MQ\",\"3682\",\"LGA\",\"ATL\",-6.00,-4.00,0.00,\"\",0.00,139.00,109.00,762.00,,,,,,\n2015,5,7,\"MQ\",\"3682\",\"LGA\",\"ATL\",-7.00,3.00,0.00,\"\",0.00,147.00,101.00,762.00,,,,,,\n2015,5,8,\"MQ\",\"3682\",\"LGA\",\"ATL\",18.00,8.00,0.00,\"\",0.00,127.00,101.00,762.00,,,,,,\n2015,5,9,\"MQ\",\"3682\",\"LGA\",\"ATL\",-4.00,-2.00,0.00,\"\",0.00,139.00,105.00,762.00,,,,,,\n2015,5,11,\"MQ\",\"3682\",\"LGA\",\"ATL\",-7.00,-11.00,0.00,\"\",0.00,133.00,101.00,762.00,,,,,,\n2015,5,12,\"MQ\",\"3682\",\"LGA\",\"ATL\",-6.00,2.00,0.00,\"\",0.00,145.00,110.00,762.00,,,,,,\n2015,5,13,\"MQ\",\"3682\",\"LGA\",\"ATL\",-4.00,0.00,0.00,\"\",0.00,141.00,112.00,762.00,,,,,,\n2015,5,14,\"MQ\",\"3682\",\"LGA\",\"ATL\",8.00,15.00,0.00,\"\",0.00,144.00,109.00,762.00,8.00,0.00,7.00,0.00,0.00,\n2015,5,15,\"MQ\",\"3682\",\"LGA\",\"ATL\",125.00,119.00,0.00,\"\",0.00,131.00,111.00,762.00,119.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"MQ\",\"3682\",\"LGA\",\"ATL\",-1.00,0.00,0.00,\"\",0.00,138.00,106.00,762.00,,,,,,\n2015,5,18,\"MQ\",\"3682\",\"LGA\",\"ATL\",-2.00,-8.00,0.00,\"\",0.00,131.00,107.00,762.00,,,,,,\n2015,5,19,\"MQ\",\"3682\",\"LGA\",\"ATL\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,20,\"MQ\",\"3682\",\"LGA\",\"ATL\",-6.00,-15.00,0.00,\"\",0.00,128.00,107.00,762.00,,,,,,\n2015,5,21,\"MQ\",\"3682\",\"LGA\",\"ATL\",-4.00,36.00,0.00,\"\",0.00,177.00,116.00,762.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,22,\"MQ\",\"3682\",\"LGA\",\"ATL\",-5.00,4.00,0.00,\"\",0.00,146.00,114.00,762.00,,,,,,\n2015,5,23,\"MQ\",\"3682\",\"LGA\",\"ATL\",103.00,114.00,0.00,\"\",0.00,148.00,109.00,762.00,103.00,0.00,11.00,0.00,0.00,\n2015,5,25,\"MQ\",\"3682\",\"LGA\",\"ATL\",-5.00,-7.00,0.00,\"\",0.00,135.00,113.00,762.00,,,,,,\n2015,5,26,\"MQ\",\"3682\",\"LGA\",\"ATL\",-8.00,9.00,0.00,\"\",0.00,154.00,115.00,762.00,,,,,,\n2015,5,27,\"MQ\",\"3682\",\"LGA\",\"ATL\",-7.00,8.00,0.00,\"\",0.00,152.00,116.00,762.00,,,,,,\n2015,5,28,\"MQ\",\"3682\",\"LGA\",\"ATL\",-5.00,-12.00,0.00,\"\",0.00,130.00,111.00,762.00,,,,,,\n2015,5,29,\"MQ\",\"3682\",\"LGA\",\"ATL\",-9.00,19.00,0.00,\"\",0.00,165.00,109.00,762.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,30,\"MQ\",\"3682\",\"LGA\",\"ATL\",-8.00,-12.00,0.00,\"\",0.00,133.00,104.00,762.00,,,,,,\n2015,5,1,\"MQ\",\"3690\",\"ORD\",\"SYR\",-2.00,-10.00,0.00,\"\",0.00,99.00,86.00,607.00,,,,,,\n2015,5,2,\"MQ\",\"3690\",\"ORD\",\"SYR\",-3.00,-8.00,0.00,\"\",0.00,102.00,86.00,607.00,,,,,,\n2015,5,3,\"MQ\",\"3690\",\"ORD\",\"SYR\",-2.00,-12.00,0.00,\"\",0.00,97.00,85.00,607.00,,,,,,\n2015,5,4,\"MQ\",\"3690\",\"ORD\",\"SYR\",-2.00,-4.00,0.00,\"\",0.00,105.00,80.00,607.00,,,,,,\n2015,5,5,\"MQ\",\"3690\",\"ORD\",\"SYR\",1.00,-16.00,0.00,\"\",0.00,90.00,76.00,607.00,,,,,,\n2015,5,6,\"MQ\",\"3690\",\"ORD\",\"SYR\",103.00,89.00,0.00,\"\",0.00,93.00,79.00,607.00,76.00,0.00,0.00,0.00,13.00,\n2015,5,1,\"MQ\",\"3690\",\"SYR\",\"ORD\",,,1.00,\"A\",0.00,,,607.00,,,,,,\n2015,5,2,\"MQ\",\"3690\",\"SYR\",\"ORD\",0.00,-22.00,0.00,\"\",0.00,109.00,89.00,607.00,,,,,,\n2015,5,3,\"MQ\",\"3690\",\"SYR\",\"ORD\",-12.00,-28.00,0.00,\"\",0.00,115.00,94.00,607.00,,,,,,\n2015,5,4,\"MQ\",\"3690\",\"SYR\",\"ORD\",-4.00,-11.00,0.00,\"\",0.00,124.00,96.00,607.00,,,,,,\n2015,5,5,\"MQ\",\"3690\",\"SYR\",\"ORD\",-5.00,10.00,0.00,\"\",0.00,146.00,119.00,607.00,,,,,,\n2015,5,6,\"MQ\",\"3690\",\"SYR\",\"ORD\",84.00,74.00,0.00,\"\",0.00,121.00,97.00,607.00,0.00,0.00,0.00,0.00,74.00,\n2015,5,1,\"NK\",\"289\",\"IAG\",\"MYR\",11.00,23.00,0.00,\"\",0.00,118.00,99.00,650.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,2,\"NK\",\"289\",\"IAG\",\"MYR\",30.00,28.00,0.00,\"\",0.00,104.00,89.00,650.00,14.00,0.00,0.00,0.00,14.00,\n2015,5,5,\"NK\",\"289\",\"IAG\",\"MYR\",-4.00,3.00,0.00,\"\",0.00,113.00,91.00,650.00,,,,,,\n2015,5,6,\"NK\",\"289\",\"IAG\",\"MYR\",-13.00,-10.00,0.00,\"\",0.00,109.00,90.00,650.00,,,,,,\n2015,5,8,\"NK\",\"289\",\"IAG\",\"MYR\",-5.00,-3.00,0.00,\"\",0.00,108.00,91.00,650.00,,,,,,\n2015,5,9,\"NK\",\"289\",\"IAG\",\"MYR\",0.00,2.00,0.00,\"\",0.00,108.00,93.00,650.00,,,,,,\n2015,5,12,\"NK\",\"289\",\"IAG\",\"MYR\",-19.00,-17.00,0.00,\"\",0.00,108.00,90.00,650.00,,,,,,\n2015,5,13,\"NK\",\"289\",\"IAG\",\"MYR\",13.00,11.00,0.00,\"\",0.00,104.00,87.00,650.00,,,,,,\n2015,5,15,\"NK\",\"289\",\"IAG\",\"MYR\",-13.00,-12.00,0.00,\"\",0.00,107.00,88.00,650.00,,,,,,\n2015,5,16,\"NK\",\"289\",\"IAG\",\"MYR\",-1.00,-7.00,0.00,\"\",0.00,100.00,87.00,650.00,,,,,,\n2015,5,19,\"NK\",\"289\",\"IAG\",\"MYR\",3.00,10.00,0.00,\"\",0.00,113.00,92.00,650.00,,,,,,\n2015,5,20,\"NK\",\"289\",\"IAG\",\"MYR\",22.00,20.00,0.00,\"\",0.00,104.00,88.00,650.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,22,\"NK\",\"289\",\"IAG\",\"MYR\",3.00,10.00,0.00,\"\",0.00,113.00,92.00,650.00,,,,,,\n2015,5,23,\"NK\",\"289\",\"IAG\",\"MYR\",-3.00,4.00,0.00,\"\",0.00,113.00,87.00,650.00,,,,,,\n2015,5,26,\"NK\",\"289\",\"IAG\",\"MYR\",-9.00,0.00,0.00,\"\",0.00,115.00,93.00,650.00,,,,,,\n2015,5,27,\"NK\",\"289\",\"IAG\",\"MYR\",-17.00,4.00,0.00,\"\",0.00,127.00,95.00,650.00,,,,,,\n2015,5,29,\"NK\",\"289\",\"IAG\",\"MYR\",-18.00,-26.00,0.00,\"\",0.00,98.00,85.00,650.00,,,,,,\n2015,5,30,\"NK\",\"289\",\"IAG\",\"MYR\",-9.00,-7.00,0.00,\"\",0.00,108.00,91.00,650.00,,,,,,\n2015,5,1,\"NK\",\"300\",\"MYR\",\"LGA\",-9.00,-20.00,0.00,\"\",0.00,106.00,77.00,563.00,,,,,,\n2015,5,2,\"NK\",\"300\",\"MYR\",\"LGA\",-7.00,1.00,0.00,\"\",0.00,125.00,93.00,563.00,,,,,,\n2015,5,3,\"NK\",\"300\",\"MYR\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,112.00,88.00,563.00,,,,,,\n2015,5,4,\"NK\",\"300\",\"MYR\",\"LGA\",-7.00,5.00,0.00,\"\",0.00,129.00,84.00,563.00,,,,,,\n2015,5,5,\"NK\",\"300\",\"MYR\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,115.00,82.00,563.00,,,,,,\n2015,5,6,\"NK\",\"300\",\"MYR\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,117.00,87.00,563.00,,,,,,\n2015,5,7,\"NK\",\"300\",\"MYR\",\"LGA\",1.00,-10.00,0.00,\"\",0.00,106.00,84.00,563.00,,,,,,\n2015,5,8,\"NK\",\"300\",\"MYR\",\"LGA\",71.00,60.00,0.00,\"\",0.00,106.00,85.00,563.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,9,\"NK\",\"300\",\"MYR\",\"LGA\",-8.00,-1.00,0.00,\"\",0.00,124.00,99.00,563.00,,,,,,\n2015,5,10,\"NK\",\"300\",\"MYR\",\"LGA\",,,1.00,\"B\",0.00,,,563.00,,,,,,\n2015,5,11,\"NK\",\"300\",\"MYR\",\"LGA\",-6.00,0.00,0.00,\"\",0.00,123.00,78.00,563.00,,,,,,\n2015,5,12,\"NK\",\"300\",\"MYR\",\"LGA\",-13.00,-28.00,0.00,\"\",0.00,102.00,80.00,563.00,,,,,,\n2015,5,13,\"NK\",\"300\",\"MYR\",\"LGA\",16.00,-11.00,0.00,\"\",0.00,90.00,75.00,563.00,,,,,,\n2015,5,14,\"NK\",\"300\",\"MYR\",\"LGA\",-11.00,10.00,0.00,\"\",0.00,138.00,96.00,563.00,,,,,,\n2015,5,15,\"NK\",\"300\",\"MYR\",\"LGA\",-14.00,-33.00,0.00,\"\",0.00,98.00,79.00,563.00,,,,,,\n2015,5,16,\"NK\",\"300\",\"MYR\",\"LGA\",-8.00,-1.00,0.00,\"\",0.00,124.00,92.00,563.00,,,,,,\n2015,5,17,\"NK\",\"300\",\"MYR\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,107.00,82.00,563.00,,,,,,\n2015,5,18,\"NK\",\"300\",\"MYR\",\"LGA\",,,1.00,\"B\",0.00,,,563.00,,,,,,\n2015,5,19,\"NK\",\"300\",\"MYR\",\"LGA\",74.00,54.00,0.00,\"\",0.00,97.00,78.00,563.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,20,\"NK\",\"300\",\"MYR\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,105.00,89.00,563.00,,,,,,\n2015,5,21,\"NK\",\"300\",\"MYR\",\"LGA\",-12.00,-28.00,0.00,\"\",0.00,101.00,80.00,563.00,,,,,,\n2015,5,22,\"NK\",\"300\",\"MYR\",\"LGA\",-13.00,-38.00,0.00,\"\",0.00,92.00,76.00,563.00,,,,,,\n2015,5,23,\"NK\",\"300\",\"MYR\",\"LGA\",11.00,-1.00,0.00,\"\",0.00,105.00,80.00,563.00,,,,,,\n2015,5,24,\"NK\",\"300\",\"MYR\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,114.00,84.00,563.00,,,,,,\n2015,5,25,\"NK\",\"300\",\"MYR\",\"LGA\",-13.00,-22.00,0.00,\"\",0.00,108.00,84.00,563.00,,,,,,\n2015,5,26,\"NK\",\"300\",\"MYR\",\"LGA\",-9.00,-17.00,0.00,\"\",0.00,109.00,83.00,563.00,,,,,,\n2015,5,27,\"NK\",\"300\",\"MYR\",\"LGA\",186.00,171.00,0.00,\"\",0.00,102.00,86.00,563.00,0.00,0.00,0.00,0.00,171.00,\n2015,5,28,\"NK\",\"300\",\"MYR\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,105.00,84.00,563.00,,,,,,\n2015,5,29,\"NK\",\"300\",\"MYR\",\"LGA\",-10.00,4.00,0.00,\"\",0.00,131.00,82.00,563.00,,,,,,\n2015,5,30,\"NK\",\"300\",\"MYR\",\"LGA\",-16.00,-4.00,0.00,\"\",0.00,129.00,88.00,563.00,,,,,,\n2015,5,31,\"NK\",\"300\",\"MYR\",\"LGA\",-10.00,-9.00,0.00,\"\",0.00,118.00,81.00,563.00,,,,,,\n2015,5,1,\"NK\",\"316\",\"DTW\",\"LGA\",-2.00,0.00,0.00,\"\",0.00,97.00,75.00,502.00,,,,,,\n2015,5,2,\"NK\",\"316\",\"DTW\",\"LGA\",1.00,12.00,0.00,\"\",0.00,106.00,74.00,502.00,,,,,,\n2015,5,3,\"NK\",\"316\",\"DTW\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,85.00,73.00,502.00,,,,,,\n2015,5,4,\"NK\",\"316\",\"DTW\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,93.00,74.00,502.00,,,,,,\n2015,5,5,\"NK\",\"316\",\"DTW\",\"LGA\",-7.00,-5.00,0.00,\"\",0.00,97.00,72.00,502.00,,,,,,\n2015,5,6,\"NK\",\"316\",\"DTW\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,92.00,70.00,502.00,,,,,,\n2015,5,7,\"NK\",\"316\",\"DTW\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,100.00,79.00,502.00,,,,,,\n2015,5,8,\"NK\",\"316\",\"DTW\",\"LGA\",-7.00,1.00,0.00,\"\",0.00,103.00,85.00,502.00,,,,,,\n2015,5,9,\"NK\",\"316\",\"DTW\",\"LGA\",14.00,17.00,0.00,\"\",0.00,98.00,80.00,502.00,14.00,0.00,3.00,0.00,0.00,\n2015,5,10,\"NK\",\"316\",\"DTW\",\"LGA\",-5.00,-1.00,0.00,\"\",0.00,99.00,77.00,502.00,,,,,,\n2015,5,11,\"NK\",\"316\",\"DTW\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,99.00,79.00,502.00,,,,,,\n2015,5,12,\"NK\",\"316\",\"DTW\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,90.00,69.00,502.00,,,,,,\n2015,5,13,\"NK\",\"316\",\"DTW\",\"LGA\",10.00,2.00,0.00,\"\",0.00,87.00,68.00,502.00,,,,,,\n2015,5,14,\"NK\",\"316\",\"DTW\",\"LGA\",7.00,4.00,0.00,\"\",0.00,92.00,72.00,502.00,,,,,,\n2015,5,15,\"NK\",\"316\",\"DTW\",\"LGA\",-6.00,1.00,0.00,\"\",0.00,102.00,77.00,502.00,,,,,,\n2015,5,16,\"NK\",\"316\",\"DTW\",\"LGA\",42.00,43.00,0.00,\"\",0.00,96.00,75.00,502.00,42.00,0.00,1.00,0.00,0.00,\n2015,5,17,\"NK\",\"316\",\"DTW\",\"LGA\",-7.00,1.00,0.00,\"\",0.00,103.00,75.00,502.00,,,,,,\n2015,5,18,\"NK\",\"316\",\"DTW\",\"LGA\",-5.00,,0.00,\"\",1.00,,,502.00,,,,,,\n2015,5,19,\"NK\",\"316\",\"DTW\",\"LGA\",19.00,25.00,0.00,\"\",0.00,101.00,77.00,502.00,19.00,0.00,6.00,0.00,0.00,\n2015,5,20,\"NK\",\"316\",\"DTW\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,93.00,65.00,502.00,,,,,,\n2015,5,21,\"NK\",\"316\",\"DTW\",\"LGA\",-7.00,-5.00,0.00,\"\",0.00,97.00,76.00,502.00,,,,,,\n2015,5,22,\"NK\",\"316\",\"DTW\",\"LGA\",62.00,59.00,0.00,\"\",0.00,92.00,69.00,502.00,59.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"NK\",\"316\",\"DTW\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,83.00,66.00,502.00,,,,,,\n2015,5,24,\"NK\",\"316\",\"DTW\",\"LGA\",25.00,19.00,0.00,\"\",0.00,89.00,73.00,502.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"NK\",\"316\",\"DTW\",\"LGA\",-9.00,-16.00,0.00,\"\",0.00,88.00,69.00,502.00,,,,,,\n2015,5,26,\"NK\",\"316\",\"DTW\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,95.00,73.00,502.00,,,,,,\n2015,5,27,\"NK\",\"316\",\"DTW\",\"LGA\",72.00,91.00,0.00,\"\",0.00,114.00,89.00,502.00,72.00,0.00,19.00,0.00,0.00,\n2015,5,28,\"NK\",\"316\",\"DTW\",\"LGA\",23.00,19.00,0.00,\"\",0.00,91.00,75.00,502.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"NK\",\"316\",\"DTW\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,94.00,70.00,502.00,,,,,,\n2015,5,30,\"NK\",\"316\",\"DTW\",\"LGA\",-9.00,-5.00,0.00,\"\",0.00,99.00,77.00,502.00,,,,,,\n2015,5,31,\"NK\",\"316\",\"DTW\",\"LGA\",8.00,7.00,0.00,\"\",0.00,94.00,72.00,502.00,,,,,,\n2015,5,1,\"NK\",\"331\",\"LGA\",\"ORD\",12.00,3.00,0.00,\"\",0.00,128.00,105.00,733.00,,,,,,\n2015,5,2,\"NK\",\"331\",\"LGA\",\"ORD\",82.00,79.00,0.00,\"\",0.00,134.00,106.00,733.00,0.00,0.00,0.00,0.00,79.00,\n2015,5,3,\"NK\",\"331\",\"LGA\",\"ORD\",35.00,29.00,0.00,\"\",0.00,131.00,109.00,733.00,7.00,0.00,1.00,0.00,21.00,\n2015,5,4,\"NK\",\"331\",\"LGA\",\"ORD\",65.00,59.00,0.00,\"\",0.00,131.00,116.00,733.00,0.00,0.00,0.00,0.00,59.00,\n2015,5,5,\"NK\",\"331\",\"LGA\",\"ORD\",53.00,77.00,0.00,\"\",0.00,161.00,116.00,733.00,0.00,0.00,77.00,0.00,0.00,\n2015,5,6,\"NK\",\"331\",\"LGA\",\"ORD\",-14.00,-18.00,0.00,\"\",0.00,133.00,110.00,733.00,,,,,,\n2015,5,7,\"NK\",\"331\",\"LGA\",\"ORD\",-9.00,-24.00,0.00,\"\",0.00,122.00,103.00,733.00,,,,,,\n2015,5,8,\"NK\",\"331\",\"LGA\",\"ORD\",93.00,109.00,0.00,\"\",0.00,153.00,112.00,733.00,0.00,0.00,16.00,0.00,93.00,\n2015,5,9,\"NK\",\"331\",\"LGA\",\"ORD\",20.00,41.00,0.00,\"\",0.00,158.00,108.00,733.00,10.00,0.00,21.00,0.00,10.00,\n2015,5,10,\"NK\",\"331\",\"LGA\",\"ORD\",32.00,33.00,0.00,\"\",0.00,138.00,110.00,733.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,11,\"NK\",\"331\",\"LGA\",\"ORD\",22.00,18.00,0.00,\"\",0.00,133.00,109.00,733.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,12,\"NK\",\"331\",\"LGA\",\"ORD\",-10.00,94.00,0.00,\"\",0.00,241.00,118.00,733.00,0.00,0.00,94.00,0.00,0.00,\n2015,5,13,\"NK\",\"331\",\"LGA\",\"ORD\",-5.00,16.00,0.00,\"\",0.00,158.00,113.00,733.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,14,\"NK\",\"331\",\"LGA\",\"ORD\",-10.00,-12.00,0.00,\"\",0.00,135.00,117.00,733.00,,,,,,\n2015,5,15,\"NK\",\"331\",\"LGA\",\"ORD\",71.00,65.00,0.00,\"\",0.00,131.00,108.00,733.00,0.00,0.00,65.00,0.00,0.00,\n2015,5,16,\"NK\",\"331\",\"LGA\",\"ORD\",35.00,44.00,0.00,\"\",0.00,146.00,109.00,733.00,0.00,0.00,9.00,0.00,35.00,\n2015,5,17,\"NK\",\"331\",\"LGA\",\"ORD\",-9.00,-3.00,0.00,\"\",0.00,143.00,104.00,733.00,,,,,,\n2015,5,18,\"NK\",\"331\",\"LGA\",\"ORD\",75.00,99.00,0.00,\"\",0.00,161.00,109.00,733.00,0.00,0.00,99.00,0.00,0.00,\n2015,5,19,\"NK\",\"331\",\"LGA\",\"ORD\",,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,20,\"NK\",\"331\",\"LGA\",\"ORD\",-6.00,36.00,0.00,\"\",0.00,179.00,114.00,733.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,21,\"NK\",\"331\",\"LGA\",\"ORD\",-5.00,-12.00,0.00,\"\",0.00,130.00,113.00,733.00,,,,,,\n2015,5,22,\"NK\",\"331\",\"LGA\",\"ORD\",64.00,84.00,0.00,\"\",0.00,157.00,123.00,733.00,0.00,0.00,20.00,0.00,64.00,\n2015,5,23,\"NK\",\"331\",\"LGA\",\"ORD\",39.00,66.00,0.00,\"\",0.00,164.00,113.00,733.00,0.00,0.00,66.00,0.00,0.00,\n2015,5,24,\"NK\",\"331\",\"LGA\",\"ORD\",-8.00,30.00,0.00,\"\",0.00,175.00,116.00,733.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,25,\"NK\",\"331\",\"LGA\",\"ORD\",30.00,17.00,0.00,\"\",0.00,124.00,108.00,733.00,0.00,0.00,1.00,0.00,16.00,\n2015,5,26,\"NK\",\"331\",\"LGA\",\"ORD\",78.00,66.00,0.00,\"\",0.00,125.00,106.00,733.00,0.00,0.00,0.00,0.00,66.00,\n2015,5,27,\"NK\",\"331\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,28,\"NK\",\"331\",\"LGA\",\"ORD\",94.00,82.00,0.00,\"\",0.00,125.00,108.00,733.00,0.00,0.00,0.00,0.00,82.00,\n2015,5,29,\"NK\",\"331\",\"LGA\",\"ORD\",105.00,91.00,0.00,\"\",0.00,123.00,102.00,733.00,0.00,0.00,0.00,0.00,91.00,\n2015,5,30,\"NK\",\"331\",\"LGA\",\"ORD\",56.00,48.00,0.00,\"\",0.00,129.00,112.00,733.00,6.00,0.00,1.00,0.00,41.00,\n2015,5,31,\"NK\",\"331\",\"LGA\",\"ORD\",166.00,157.00,0.00,\"\",0.00,128.00,108.00,733.00,7.00,0.00,150.00,0.00,0.00,\n2015,5,5,\"EV\",\"4361\",\"EWR\",\"BUF\",-7.00,-12.00,0.00,\"\",0.00,76.00,54.00,282.00,,,,,,\n2015,5,1,\"EV\",\"4361\",\"EWR\",\"BUF\",2.00,-7.00,0.00,\"\",0.00,72.00,52.00,282.00,,,,,,\n2015,5,4,\"EV\",\"4361\",\"EWR\",\"BUF\",-1.00,-6.00,0.00,\"\",0.00,76.00,57.00,282.00,,,,,,\n2015,5,9,\"EV\",\"4361\",\"EWR\",\"BUF\",-5.00,-11.00,0.00,\"\",0.00,75.00,48.00,282.00,,,,,,\n2015,5,30,\"EV\",\"4361\",\"EWR\",\"BUF\",-6.00,-10.00,0.00,\"\",0.00,77.00,53.00,282.00,,,,,,\n2015,5,23,\"EV\",\"4361\",\"EWR\",\"BUF\",-8.00,-7.00,0.00,\"\",0.00,82.00,50.00,282.00,,,,,,\n2015,5,16,\"EV\",\"4361\",\"EWR\",\"BUF\",-5.00,-2.00,0.00,\"\",0.00,84.00,52.00,282.00,,,,,,\n2015,5,1,\"EV\",\"4364\",\"BUF\",\"EWR\",0.00,-24.00,0.00,\"\",0.00,76.00,56.00,282.00,,,,,,\n2015,5,2,\"EV\",\"4364\",\"BUF\",\"EWR\",3.00,-17.00,0.00,\"\",0.00,80.00,48.00,282.00,,,,,,\n2015,5,5,\"EV\",\"4364\",\"BUF\",\"EWR\",-8.00,-40.00,0.00,\"\",0.00,68.00,48.00,282.00,,,,,,\n2015,5,4,\"EV\",\"4364\",\"BUF\",\"EWR\",-8.00,-40.00,0.00,\"\",0.00,68.00,48.00,282.00,,,,,,\n2015,5,6,\"EV\",\"4364\",\"BUF\",\"EWR\",0.00,3.00,0.00,\"\",0.00,85.00,59.00,282.00,,,,,,\n2015,5,1,\"EV\",\"4368\",\"EWR\",\"BUF\",-3.00,-17.00,0.00,\"\",0.00,66.00,47.00,282.00,,,,,,\n2015,5,2,\"EV\",\"4368\",\"EWR\",\"BUF\",-8.00,-22.00,0.00,\"\",0.00,66.00,48.00,282.00,,,,,,\n2015,5,5,\"EV\",\"4368\",\"EWR\",\"BUF\",42.00,26.00,0.00,\"\",0.00,64.00,49.00,282.00,4.00,0.00,0.00,0.00,22.00,\n2015,5,4,\"EV\",\"4368\",\"EWR\",\"BUF\",-5.00,-15.00,0.00,\"\",0.00,70.00,49.00,282.00,,,,,,\n2015,5,2,\"EV\",\"4382\",\"BUF\",\"EWR\",-14.00,-22.00,0.00,\"\",0.00,75.00,53.00,282.00,,,,,,\n2015,5,1,\"EV\",\"4382\",\"BUF\",\"EWR\",-16.00,-10.00,0.00,\"\",0.00,89.00,56.00,282.00,,,,,,\n2015,5,3,\"EV\",\"4382\",\"BUF\",\"EWR\",-4.00,4.00,0.00,\"\",0.00,91.00,50.00,282.00,,,,,,\n2015,5,4,\"EV\",\"4382\",\"BUF\",\"EWR\",-8.00,-16.00,0.00,\"\",0.00,75.00,51.00,282.00,,,,,,\n2015,5,5,\"EV\",\"4382\",\"BUF\",\"EWR\",25.00,20.00,0.00,\"\",0.00,78.00,56.00,282.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,3,\"NK\",\"416\",\"FLL\",\"IAG\",-8.00,-12.00,0.00,\"\",0.00,170.00,151.00,1176.00,,,,,,\n2015,5,7,\"NK\",\"416\",\"FLL\",\"IAG\",0.00,8.00,0.00,\"\",0.00,182.00,156.00,1176.00,,,,,,\n2015,5,10,\"NK\",\"416\",\"FLL\",\"IAG\",-12.00,-20.00,0.00,\"\",0.00,166.00,149.00,1176.00,,,,,,\n2015,5,14,\"NK\",\"416\",\"FLL\",\"IAG\",7.00,9.00,0.00,\"\",0.00,176.00,150.00,1176.00,,,,,,\n2015,5,17,\"NK\",\"416\",\"FLL\",\"IAG\",4.00,1.00,0.00,\"\",0.00,171.00,153.00,1176.00,,,,,,\n2015,5,21,\"NK\",\"416\",\"FLL\",\"IAG\",-5.00,-7.00,0.00,\"\",0.00,172.00,155.00,1176.00,,,,,,\n2015,5,24,\"NK\",\"416\",\"FLL\",\"IAG\",-5.00,-6.00,0.00,\"\",0.00,173.00,153.00,1176.00,,,,,,\n2015,5,28,\"NK\",\"416\",\"FLL\",\"IAG\",-11.00,-11.00,0.00,\"\",0.00,174.00,153.00,1176.00,,,,,,\n2015,5,31,\"NK\",\"416\",\"FLL\",\"IAG\",-9.00,-6.00,0.00,\"\",0.00,177.00,158.00,1176.00,,,,,,\n2015,5,1,\"NK\",\"450\",\"FLL\",\"PBG\",8.00,0.00,0.00,\"\",0.00,180.00,158.00,1334.00,,,,,,\n2015,5,4,\"NK\",\"450\",\"FLL\",\"PBG\",0.00,-10.00,0.00,\"\",0.00,178.00,159.00,1334.00,,,,,,\n2015,5,6,\"NK\",\"450\",\"FLL\",\"PBG\",-4.00,-9.00,0.00,\"\",0.00,183.00,167.00,1334.00,,,,,,\n2015,5,8,\"NK\",\"450\",\"FLL\",\"PBG\",-7.00,-3.00,0.00,\"\",0.00,192.00,171.00,1334.00,,,,,,\n2015,5,11,\"NK\",\"450\",\"FLL\",\"PBG\",-11.00,-15.00,0.00,\"\",0.00,184.00,164.00,1334.00,,,,,,\n2015,5,13,\"NK\",\"450\",\"FLL\",\"PBG\",-3.00,35.00,0.00,\"\",0.00,226.00,184.00,1334.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,15,\"NK\",\"450\",\"FLL\",\"PBG\",-5.00,-5.00,0.00,\"\",0.00,188.00,170.00,1334.00,,,,,,\n2015,5,18,\"NK\",\"450\",\"FLL\",\"PBG\",-7.00,-11.00,0.00,\"\",0.00,184.00,166.00,1334.00,,,,,,\n2015,5,20,\"NK\",\"450\",\"FLL\",\"PBG\",-12.00,-18.00,0.00,\"\",0.00,182.00,161.00,1334.00,,,,,,\n2015,5,22,\"NK\",\"450\",\"FLL\",\"PBG\",17.00,16.00,0.00,\"\",0.00,187.00,169.00,1334.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,25,\"NK\",\"450\",\"FLL\",\"PBG\",-13.00,-23.00,0.00,\"\",0.00,178.00,163.00,1334.00,,,,,,\n2015,5,27,\"NK\",\"450\",\"FLL\",\"PBG\",-8.00,-9.00,0.00,\"\",0.00,187.00,161.00,1334.00,,,,,,\n2015,5,29,\"NK\",\"450\",\"FLL\",\"PBG\",-3.00,-6.00,0.00,\"\",0.00,185.00,169.00,1334.00,,,,,,\n2015,5,2,\"NK\",\"451\",\"PBG\",\"FLL\",-5.00,-10.00,0.00,\"\",0.00,188.00,173.00,1334.00,,,,,,\n2015,5,5,\"NK\",\"451\",\"PBG\",\"FLL\",-10.00,-17.00,0.00,\"\",0.00,186.00,169.00,1334.00,,,,,,\n2015,5,7,\"NK\",\"451\",\"PBG\",\"FLL\",-17.00,-27.00,0.00,\"\",0.00,183.00,167.00,1334.00,,,,,,\n2015,5,9,\"NK\",\"451\",\"PBG\",\"FLL\",-1.00,-16.00,0.00,\"\",0.00,178.00,160.00,1334.00,,,,,,\n2015,5,12,\"NK\",\"451\",\"PBG\",\"FLL\",-14.00,-31.00,0.00,\"\",0.00,176.00,165.00,1334.00,,,,,,\n2015,5,14,\"NK\",\"451\",\"PBG\",\"FLL\",38.00,20.00,0.00,\"\",0.00,175.00,157.00,1334.00,3.00,0.00,17.00,0.00,0.00,\n2015,5,16,\"NK\",\"451\",\"PBG\",\"FLL\",-3.00,-17.00,0.00,\"\",0.00,179.00,161.00,1334.00,,,,,,\n2015,5,19,\"NK\",\"451\",\"PBG\",\"FLL\",-12.00,-19.00,0.00,\"\",0.00,186.00,166.00,1334.00,,,,,,\n2015,5,21,\"NK\",\"451\",\"PBG\",\"FLL\",-16.00,-19.00,0.00,\"\",0.00,190.00,175.00,1334.00,,,,,,\n2015,5,23,\"NK\",\"451\",\"PBG\",\"FLL\",0.00,0.00,0.00,\"\",0.00,193.00,171.00,1334.00,,,,,,\n2015,5,26,\"NK\",\"451\",\"PBG\",\"FLL\",-21.00,-27.00,0.00,\"\",0.00,187.00,170.00,1334.00,,,,,,\n2015,5,28,\"NK\",\"451\",\"PBG\",\"FLL\",-9.00,-6.00,0.00,\"\",0.00,196.00,176.00,1334.00,,,,,,\n2015,5,30,\"NK\",\"451\",\"PBG\",\"FLL\",-1.00,-19.00,0.00,\"\",0.00,175.00,158.00,1334.00,,,,,,\n2015,5,1,\"NK\",\"197\",\"LGA\",\"FLL\",13.00,12.00,0.00,\"\",0.00,184.00,153.00,1076.00,,,,,,\n2015,5,2,\"NK\",\"197\",\"LGA\",\"FLL\",-8.00,-13.00,0.00,\"\",0.00,180.00,148.00,1076.00,,,,,,\n2015,5,3,\"NK\",\"197\",\"LGA\",\"FLL\",35.00,38.00,0.00,\"\",0.00,188.00,142.00,1076.00,10.00,0.00,3.00,0.00,25.00,\n2015,5,4,\"NK\",\"197\",\"LGA\",\"FLL\",1.00,-6.00,0.00,\"\",0.00,178.00,155.00,1076.00,,,,,,\n2015,5,5,\"NK\",\"197\",\"LGA\",\"FLL\",-6.00,-17.00,0.00,\"\",0.00,174.00,153.00,1076.00,,,,,,\n2015,5,6,\"NK\",\"197\",\"LGA\",\"FLL\",-8.00,28.00,0.00,\"\",0.00,221.00,165.00,1076.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,7,\"NK\",\"197\",\"LGA\",\"FLL\",-9.00,-23.00,0.00,\"\",0.00,171.00,155.00,1076.00,,,,,,\n2015,5,8,\"NK\",\"197\",\"LGA\",\"FLL\",17.00,3.00,0.00,\"\",0.00,171.00,146.00,1076.00,,,,,,\n2015,5,9,\"NK\",\"197\",\"LGA\",\"FLL\",-5.00,7.00,0.00,\"\",0.00,197.00,140.00,1076.00,,,,,,\n2015,5,10,\"NK\",\"197\",\"LGA\",\"FLL\",61.00,77.00,0.00,\"\",0.00,201.00,158.00,1076.00,0.00,0.00,16.00,0.00,61.00,\n2015,5,11,\"NK\",\"197\",\"LGA\",\"FLL\",2.00,-4.00,0.00,\"\",0.00,179.00,162.00,1076.00,,,,,,\n2015,5,12,\"NK\",\"197\",\"LGA\",\"FLL\",16.00,-10.00,0.00,\"\",0.00,159.00,140.00,1076.00,,,,,,\n2015,5,13,\"NK\",\"197\",\"LGA\",\"FLL\",-9.00,2.00,0.00,\"\",0.00,196.00,146.00,1076.00,,,,,,\n2015,5,14,\"NK\",\"197\",\"LGA\",\"FLL\",8.00,11.00,0.00,\"\",0.00,188.00,135.00,1076.00,,,,,,\n2015,5,15,\"NK\",\"197\",\"LGA\",\"FLL\",-8.00,-27.00,0.00,\"\",0.00,166.00,149.00,1076.00,,,,,,\n2015,5,16,\"NK\",\"197\",\"LGA\",\"FLL\",-5.00,-5.00,0.00,\"\",0.00,185.00,143.00,1076.00,,,,,,\n2015,5,17,\"NK\",\"197\",\"LGA\",\"FLL\",6.00,-12.00,0.00,\"\",0.00,167.00,142.00,1076.00,,,,,,\n2015,5,18,\"NK\",\"197\",\"LGA\",\"FLL\",150.00,138.00,0.00,\"\",0.00,173.00,139.00,1076.00,4.00,0.00,1.00,0.00,133.00,\n2015,5,19,\"NK\",\"197\",\"LGA\",\"FLL\",87.00,70.00,0.00,\"\",0.00,168.00,140.00,1076.00,8.00,0.00,1.00,0.00,61.00,\n2015,5,20,\"NK\",\"197\",\"LGA\",\"FLL\",3.00,18.00,0.00,\"\",0.00,200.00,141.00,1076.00,3.00,0.00,15.00,0.00,0.00,\n2015,5,21,\"NK\",\"197\",\"LGA\",\"FLL\",8.00,-8.00,0.00,\"\",0.00,169.00,149.00,1076.00,,,,,,\n2015,5,22,\"NK\",\"197\",\"LGA\",\"FLL\",6.00,3.00,0.00,\"\",0.00,182.00,152.00,1076.00,,,,,,\n2015,5,23,\"NK\",\"197\",\"LGA\",\"FLL\",-3.00,-14.00,0.00,\"\",0.00,174.00,141.00,1076.00,,,,,,\n2015,5,24,\"NK\",\"197\",\"LGA\",\"FLL\",-5.00,-46.00,0.00,\"\",0.00,144.00,129.00,1076.00,,,,,,\n2015,5,25,\"NK\",\"197\",\"LGA\",\"FLL\",-9.00,-31.00,0.00,\"\",0.00,163.00,144.00,1076.00,,,,,,\n2015,5,26,\"NK\",\"197\",\"LGA\",\"FLL\",-1.00,-7.00,0.00,\"\",0.00,179.00,145.00,1076.00,,,,,,\n2015,5,27,\"NK\",\"197\",\"LGA\",\"FLL\",16.00,2.00,0.00,\"\",0.00,171.00,146.00,1076.00,,,,,,\n2015,5,28,\"NK\",\"197\",\"LGA\",\"FLL\",12.00,0.00,0.00,\"\",0.00,173.00,145.00,1076.00,,,,,,\n2015,5,29,\"NK\",\"197\",\"LGA\",\"FLL\",4.00,3.00,0.00,\"\",0.00,184.00,145.00,1076.00,,,,,,\n2015,5,30,\"NK\",\"197\",\"LGA\",\"FLL\",-3.00,-27.00,0.00,\"\",0.00,161.00,140.00,1076.00,,,,,,\n2015,5,31,\"NK\",\"197\",\"LGA\",\"FLL\",1.00,-21.00,0.00,\"\",0.00,163.00,140.00,1076.00,,,,,,\n2015,5,1,\"NK\",\"224\",\"ORD\",\"LGA\",-2.00,4.00,0.00,\"\",0.00,133.00,100.00,733.00,,,,,,\n2015,5,2,\"NK\",\"224\",\"ORD\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,121.00,102.00,733.00,,,,,,\n2015,5,3,\"NK\",\"224\",\"ORD\",\"LGA\",55.00,47.00,0.00,\"\",0.00,119.00,105.00,733.00,47.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"NK\",\"224\",\"ORD\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,123.00,102.00,733.00,,,,,,\n2015,5,5,\"NK\",\"224\",\"ORD\",\"LGA\",1.00,4.00,0.00,\"\",0.00,130.00,99.00,733.00,,,,,,\n2015,5,6,\"NK\",\"224\",\"ORD\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,126.00,107.00,733.00,,,,,,\n2015,5,7,\"NK\",\"224\",\"ORD\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,126.00,103.00,733.00,,,,,,\n2015,5,8,\"NK\",\"224\",\"ORD\",\"LGA\",-5.00,8.00,0.00,\"\",0.00,140.00,121.00,733.00,,,,,,\n2015,5,9,\"NK\",\"224\",\"ORD\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,132.00,110.00,733.00,,,,,,\n2015,5,10,\"NK\",\"224\",\"ORD\",\"LGA\",54.00,52.00,0.00,\"\",0.00,125.00,102.00,733.00,52.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"NK\",\"224\",\"ORD\",\"LGA\",-6.00,-2.00,0.00,\"\",0.00,131.00,105.00,733.00,,,,,,\n2015,5,12,\"NK\",\"224\",\"ORD\",\"LGA\",34.00,22.00,0.00,\"\",0.00,115.00,95.00,733.00,20.00,0.00,1.00,0.00,1.00,\n2015,5,13,\"NK\",\"224\",\"ORD\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,110.00,91.00,733.00,,,,,,\n2015,5,14,\"NK\",\"224\",\"ORD\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,113.00,93.00,733.00,,,,,,\n2015,5,15,\"NK\",\"224\",\"ORD\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,124.00,99.00,733.00,,,,,,\n2015,5,16,\"NK\",\"224\",\"ORD\",\"LGA\",-9.00,-20.00,0.00,\"\",0.00,116.00,96.00,733.00,,,,,,\n2015,5,17,\"NK\",\"224\",\"ORD\",\"LGA\",5.00,-9.00,0.00,\"\",0.00,113.00,96.00,733.00,,,,,,\n2015,5,18,\"NK\",\"224\",\"ORD\",\"LGA\",-4.00,117.00,0.00,\"\",0.00,248.00,118.00,733.00,0.00,0.00,117.00,0.00,0.00,\n2015,5,19,\"NK\",\"224\",\"ORD\",\"LGA\",37.00,53.00,0.00,\"\",0.00,143.00,100.00,733.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,20,\"NK\",\"224\",\"ORD\",\"LGA\",11.00,-7.00,0.00,\"\",0.00,109.00,92.00,733.00,,,,,,\n2015,5,21,\"NK\",\"224\",\"ORD\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,118.00,92.00,733.00,,,,,,\n2015,5,22,\"NK\",\"224\",\"ORD\",\"LGA\",42.00,43.00,0.00,\"\",0.00,128.00,90.00,733.00,42.00,0.00,1.00,0.00,0.00,\n2015,5,23,\"NK\",\"224\",\"ORD\",\"LGA\",13.00,-4.00,0.00,\"\",0.00,110.00,93.00,733.00,,,,,,\n2015,5,24,\"NK\",\"224\",\"ORD\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,120.00,96.00,733.00,,,,,,\n2015,5,25,\"NK\",\"224\",\"ORD\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,115.00,96.00,733.00,,,,,,\n2015,5,26,\"NK\",\"224\",\"ORD\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,119.00,97.00,733.00,,,,,,\n2015,5,27,\"NK\",\"224\",\"ORD\",\"LGA\",-3.00,0.00,0.00,\"\",0.00,130.00,109.00,733.00,,,,,,\n2015,5,28,\"NK\",\"224\",\"ORD\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,126.00,105.00,733.00,,,,,,\n2015,5,29,\"NK\",\"224\",\"ORD\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,120.00,98.00,733.00,,,,,,\n2015,5,30,\"NK\",\"224\",\"ORD\",\"LGA\",3.00,-2.00,0.00,\"\",0.00,122.00,104.00,733.00,,,,,,\n2015,5,31,\"NK\",\"224\",\"ORD\",\"LGA\",39.00,52.00,0.00,\"\",0.00,140.00,108.00,733.00,39.00,0.00,13.00,0.00,0.00,\n2015,5,1,\"NK\",\"226\",\"MYR\",\"IAG\",-11.00,-13.00,0.00,\"\",0.00,107.00,90.00,650.00,,,,,,\n2015,5,2,\"NK\",\"226\",\"MYR\",\"IAG\",25.00,25.00,0.00,\"\",0.00,109.00,89.00,650.00,11.00,0.00,0.00,0.00,14.00,\n2015,5,5,\"NK\",\"226\",\"MYR\",\"IAG\",-4.00,-5.00,0.00,\"\",0.00,108.00,91.00,650.00,,,,,,\n2015,5,6,\"NK\",\"226\",\"MYR\",\"IAG\",-16.00,-14.00,0.00,\"\",0.00,111.00,89.00,650.00,,,,,,\n2015,5,8,\"NK\",\"226\",\"MYR\",\"IAG\",-6.00,-12.00,0.00,\"\",0.00,103.00,90.00,650.00,,,,,,\n2015,5,9,\"NK\",\"226\",\"MYR\",\"IAG\",-9.00,-12.00,0.00,\"\",0.00,106.00,88.00,650.00,,,,,,\n2015,5,12,\"NK\",\"226\",\"MYR\",\"IAG\",-5.00,-11.00,0.00,\"\",0.00,103.00,85.00,650.00,,,,,,\n2015,5,13,\"NK\",\"226\",\"MYR\",\"IAG\",26.00,20.00,0.00,\"\",0.00,103.00,89.00,650.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,15,\"NK\",\"226\",\"MYR\",\"IAG\",-5.00,-11.00,0.00,\"\",0.00,103.00,90.00,650.00,,,,,,\n2015,5,16,\"NK\",\"226\",\"MYR\",\"IAG\",-10.00,-10.00,0.00,\"\",0.00,109.00,93.00,650.00,,,,,,\n2015,5,19,\"NK\",\"226\",\"MYR\",\"IAG\",14.00,11.00,0.00,\"\",0.00,106.00,91.00,650.00,,,,,,\n2015,5,20,\"NK\",\"226\",\"MYR\",\"IAG\",21.00,32.00,0.00,\"\",0.00,120.00,88.00,650.00,9.00,0.00,11.00,0.00,12.00,\n2015,5,22,\"NK\",\"226\",\"MYR\",\"IAG\",-17.00,13.00,0.00,\"\",0.00,139.00,91.00,650.00,,,,,,\n2015,5,23,\"NK\",\"226\",\"MYR\",\"IAG\",-1.00,2.00,0.00,\"\",0.00,112.00,92.00,650.00,,,,,,\n2015,5,26,\"NK\",\"226\",\"MYR\",\"IAG\",-8.00,-13.00,0.00,\"\",0.00,104.00,88.00,650.00,,,,,,\n2015,5,27,\"NK\",\"226\",\"MYR\",\"IAG\",-7.00,-8.00,0.00,\"\",0.00,108.00,87.00,650.00,,,,,,\n2015,5,29,\"NK\",\"226\",\"MYR\",\"IAG\",-12.00,-21.00,0.00,\"\",0.00,100.00,87.00,650.00,,,,,,\n2015,5,30,\"NK\",\"226\",\"MYR\",\"IAG\",-10.00,-15.00,0.00,\"\",0.00,104.00,90.00,650.00,,,,,,\n2015,5,1,\"NK\",\"604\",\"FLL\",\"LGA\",23.00,15.00,0.00,\"\",0.00,168.00,136.00,1076.00,4.00,0.00,1.00,0.00,10.00,\n2015,5,2,\"NK\",\"604\",\"FLL\",\"LGA\",-2.00,-22.00,0.00,\"\",0.00,156.00,136.00,1076.00,,,,,,\n2015,5,3,\"NK\",\"604\",\"FLL\",\"LGA\",41.00,35.00,0.00,\"\",0.00,170.00,143.00,1076.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"NK\",\"604\",\"FLL\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,173.00,141.00,1076.00,,,,,,\n2015,5,5,\"NK\",\"604\",\"FLL\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,170.00,147.00,1076.00,,,,,,\n2015,5,6,\"NK\",\"604\",\"FLL\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,166.00,139.00,1076.00,,,,,,\n2015,5,7,\"NK\",\"604\",\"FLL\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,179.00,148.00,1076.00,,,,,,\n2015,5,8,\"NK\",\"604\",\"FLL\",\"LGA\",-1.00,20.00,0.00,\"\",0.00,197.00,164.00,1076.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,9,\"NK\",\"604\",\"FLL\",\"LGA\",0.00,2.00,0.00,\"\",0.00,178.00,155.00,1076.00,,,,,,\n2015,5,10,\"NK\",\"604\",\"FLL\",\"LGA\",73.00,72.00,0.00,\"\",0.00,175.00,157.00,1076.00,72.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"NK\",\"604\",\"FLL\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,167.00,145.00,1076.00,,,,,,\n2015,5,12,\"NK\",\"604\",\"FLL\",\"LGA\",-3.00,31.00,0.00,\"\",0.00,210.00,146.00,1076.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,13,\"NK\",\"604\",\"FLL\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,170.00,147.00,1076.00,,,,,,\n2015,5,14,\"NK\",\"604\",\"FLL\",\"LGA\",-2.00,11.00,0.00,\"\",0.00,189.00,170.00,1076.00,,,,,,\n2015,5,15,\"NK\",\"604\",\"FLL\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,163.00,144.00,1076.00,,,,,,\n2015,5,16,\"NK\",\"604\",\"FLL\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,169.00,147.00,1076.00,,,,,,\n2015,5,17,\"NK\",\"604\",\"FLL\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,182.00,150.00,1076.00,,,,,,\n2015,5,18,\"NK\",\"604\",\"FLL\",\"LGA\",148.00,155.00,0.00,\"\",0.00,183.00,168.00,1076.00,0.00,0.00,155.00,0.00,0.00,\n2015,5,19,\"NK\",\"604\",\"FLL\",\"LGA\",70.00,86.00,0.00,\"\",0.00,192.00,153.00,1076.00,0.00,0.00,86.00,0.00,0.00,\n2015,5,20,\"NK\",\"604\",\"FLL\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,177.00,140.00,1076.00,,,,,,\n2015,5,21,\"NK\",\"604\",\"FLL\",\"LGA\",20.00,7.00,0.00,\"\",0.00,163.00,141.00,1076.00,,,,,,\n2015,5,22,\"NK\",\"604\",\"FLL\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,175.00,143.00,1076.00,,,,,,\n2015,5,23,\"NK\",\"604\",\"FLL\",\"LGA\",3.00,-10.00,0.00,\"\",0.00,163.00,142.00,1076.00,,,,,,\n2015,5,24,\"NK\",\"604\",\"FLL\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,172.00,146.00,1076.00,,,,,,\n2015,5,25,\"NK\",\"604\",\"FLL\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,169.00,142.00,1076.00,,,,,,\n2015,5,26,\"NK\",\"604\",\"FLL\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,159.00,140.00,1076.00,,,,,,\n2015,5,27,\"NK\",\"604\",\"FLL\",\"LGA\",-2.00,16.00,0.00,\"\",0.00,194.00,141.00,1076.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,28,\"NK\",\"604\",\"FLL\",\"LGA\",16.00,5.00,0.00,\"\",0.00,165.00,141.00,1076.00,,,,,,\n2015,5,29,\"NK\",\"604\",\"FLL\",\"LGA\",4.00,-7.00,0.00,\"\",0.00,165.00,145.00,1076.00,,,,,,\n2015,5,30,\"NK\",\"604\",\"FLL\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,179.00,152.00,1076.00,,,,,,\n2015,5,31,\"NK\",\"604\",\"FLL\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,168.00,147.00,1076.00,,,,,,\n2015,5,5,\"EV\",\"5122\",\"GRR\",\"LGA\",-4.00,-3.00,0.00,\"\",0.00,110.00,91.00,618.00,,,,,,\n2015,5,6,\"EV\",\"5122\",\"GRR\",\"LGA\",-7.00,-10.00,0.00,\"\",0.00,106.00,90.00,618.00,,,,,,\n2015,5,11,\"EV\",\"5124\",\"LGA\",\"BUF\",122.00,131.00,0.00,\"\",0.00,103.00,69.00,292.00,6.00,0.00,9.00,0.00,116.00,\n2015,5,9,\"EV\",\"5124\",\"LGA\",\"PWM\",-4.00,-28.00,0.00,\"\",0.00,59.00,42.00,269.00,,,,,,\n2015,5,2,\"EV\",\"5124\",\"LGA\",\"PWM\",-7.00,-31.00,0.00,\"\",0.00,59.00,43.00,269.00,,,,,,\n2015,5,30,\"EV\",\"5124\",\"LGA\",\"PWM\",-7.00,-23.00,0.00,\"\",0.00,67.00,45.00,269.00,,,,,,\n2015,5,16,\"EV\",\"5124\",\"LGA\",\"PWM\",0.00,-6.00,0.00,\"\",0.00,77.00,48.00,269.00,,,,,,\n2015,5,27,\"EV\",\"5127\",\"LGA\",\"PWM\",-4.00,-39.00,0.00,\"\",0.00,57.00,40.00,269.00,,,,,,\n2015,5,6,\"EV\",\"5127\",\"LGA\",\"PWM\",-7.00,-4.00,0.00,\"\",0.00,95.00,48.00,269.00,,,,,,\n2015,5,20,\"EV\",\"5127\",\"LGA\",\"PWM\",-9.00,1.00,0.00,\"\",0.00,102.00,46.00,269.00,,,,,,\n2015,5,13,\"EV\",\"5127\",\"LGA\",\"PWM\",-5.00,7.00,0.00,\"\",0.00,104.00,49.00,269.00,,,,,,\n2015,5,1,\"EV\",\"5133\",\"LGA\",\"JAX\",-9.00,2.00,0.00,\"\",0.00,176.00,120.00,833.00,,,,,,\n2015,5,23,\"EV\",\"5136\",\"MCI\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,152.00,130.00,1107.00,,,,,,\n2015,5,25,\"EV\",\"5140\",\"BHM\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,144.00,119.00,866.00,,,,,,\n2015,5,28,\"EV\",\"5140\",\"BHM\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,144.00,117.00,866.00,,,,,,\n2015,5,1,\"EV\",\"5140\",\"BHM\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,143.00,118.00,866.00,,,,,,\n2015,5,3,\"EV\",\"5140\",\"BHM\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,147.00,124.00,866.00,,,,,,\n2015,5,4,\"EV\",\"5140\",\"BHM\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,145.00,125.00,866.00,,,,,,\n2015,5,29,\"EV\",\"5140\",\"BHM\",\"LGA\",-4.00,-3.00,0.00,\"\",0.00,155.00,122.00,866.00,,,,,,\n2015,5,17,\"EV\",\"5140\",\"BHM\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,133.00,115.00,866.00,,,,,,\n2015,5,5,\"EV\",\"5140\",\"BHM\",\"LGA\",-6.00,-10.00,0.00,\"\",0.00,152.00,136.00,866.00,,,,,,\n2015,5,26,\"EV\",\"5140\",\"BHM\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,140.00,122.00,866.00,,,,,,\n2015,5,6,\"EV\",\"5140\",\"BHM\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,147.00,130.00,866.00,,,,,,\n2015,5,7,\"EV\",\"5140\",\"BHM\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,144.00,119.00,866.00,,,,,,\n2015,5,27,\"EV\",\"5140\",\"BHM\",\"LGA\",-3.00,-27.00,0.00,\"\",0.00,130.00,113.00,866.00,,,,,,\n2015,5,10,\"EV\",\"5140\",\"BHM\",\"LGA\",27.00,47.00,0.00,\"\",0.00,174.00,118.00,866.00,27.00,0.00,20.00,0.00,0.00,\n2015,5,20,\"EV\",\"5140\",\"BHM\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,156.00,136.00,866.00,,,,,,\n2015,5,11,\"EV\",\"5140\",\"BHM\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,142.00,119.00,866.00,,,,,,\n2015,5,21,\"EV\",\"5140\",\"BHM\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,137.00,115.00,866.00,,,,,,\n2015,5,31,\"EV\",\"5140\",\"BHM\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,143.00,119.00,866.00,,,,,,\n2015,5,19,\"EV\",\"5140\",\"BHM\",\"LGA\",93.00,64.00,0.00,\"\",0.00,127.00,110.00,866.00,64.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"EV\",\"5140\",\"BHM\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,153.00,133.00,866.00,,,,,,\n2015,5,22,\"EV\",\"5140\",\"BHM\",\"LGA\",5.00,-27.00,0.00,\"\",0.00,122.00,104.00,866.00,,,,,,\n2015,5,14,\"EV\",\"5140\",\"BHM\",\"LGA\",-6.00,-1.00,0.00,\"\",0.00,159.00,136.00,866.00,,,,,,\n2015,5,15,\"EV\",\"5140\",\"BHM\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,139.00,117.00,866.00,,,,,,\n2015,5,13,\"EV\",\"5140\",\"BHM\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,150.00,115.00,866.00,,,,,,\n2015,5,12,\"EV\",\"5140\",\"BHM\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,144.00,119.00,866.00,,,,,,\n2015,5,18,\"EV\",\"5140\",\"BHM\",\"LGA\",,,1.00,\"B\",0.00,,,866.00,,,,,,\n2015,5,17,\"EV\",\"5141\",\"ATL\",\"HPN\",-9.00,-11.00,0.00,\"\",0.00,139.00,118.00,780.00,,,,,,\n2015,5,28,\"EV\",\"5141\",\"ATL\",\"HPN\",0.00,34.00,0.00,\"\",0.00,175.00,112.00,780.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,3,\"EV\",\"5141\",\"ATL\",\"HPN\",-1.00,-1.00,0.00,\"\",0.00,141.00,116.00,780.00,,,,,,\n2015,5,25,\"EV\",\"5141\",\"ATL\",\"HPN\",-5.00,-16.00,0.00,\"\",0.00,130.00,111.00,780.00,,,,,,\n2015,5,26,\"EV\",\"5141\",\"ATL\",\"HPN\",0.00,-13.00,0.00,\"\",0.00,128.00,108.00,780.00,,,,,,\n2015,5,1,\"EV\",\"5141\",\"ATL\",\"HPN\",1.00,-2.00,0.00,\"\",0.00,138.00,114.00,780.00,,,,,,\n2015,5,29,\"EV\",\"5141\",\"ATL\",\"HPN\",-6.00,-9.00,0.00,\"\",0.00,138.00,119.00,780.00,,,,,,\n2015,5,4,\"EV\",\"5141\",\"ATL\",\"HPN\",-6.00,-19.00,0.00,\"\",0.00,128.00,104.00,780.00,,,,,,\n2015,5,6,\"NK\",\"630\",\"ORD\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,119.00,102.00,733.00,,,,,,\n2015,5,7,\"NK\",\"630\",\"ORD\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,125.00,101.00,733.00,,,,,,\n2015,5,8,\"NK\",\"630\",\"ORD\",\"LGA\",90.00,103.00,0.00,\"\",0.00,143.00,105.00,733.00,0.00,90.00,13.00,0.00,0.00,\n2015,5,9,\"NK\",\"630\",\"ORD\",\"LGA\",16.00,16.00,0.00,\"\",0.00,130.00,105.00,733.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"NK\",\"630\",\"ORD\",\"LGA\",43.00,43.00,0.00,\"\",0.00,130.00,102.00,733.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,11,\"NK\",\"630\",\"ORD\",\"LGA\",27.00,28.00,0.00,\"\",0.00,131.00,108.00,733.00,14.00,0.00,1.00,0.00,13.00,\n2015,5,12,\"NK\",\"630\",\"ORD\",\"LGA\",3.00,-12.00,0.00,\"\",0.00,115.00,91.00,733.00,,,,,,\n2015,5,13,\"NK\",\"630\",\"ORD\",\"LGA\",6.00,-2.00,0.00,\"\",0.00,122.00,92.00,733.00,,,,,,\n2015,5,14,\"NK\",\"630\",\"ORD\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,121.00,100.00,733.00,,,,,,\n2015,5,15,\"NK\",\"630\",\"ORD\",\"LGA\",80.00,78.00,0.00,\"\",0.00,128.00,95.00,733.00,0.00,0.00,78.00,0.00,0.00,\n2015,5,16,\"NK\",\"630\",\"ORD\",\"LGA\",20.00,42.00,0.00,\"\",0.00,152.00,118.00,733.00,11.00,0.00,22.00,0.00,9.00,\n2015,5,17,\"NK\",\"630\",\"ORD\",\"LGA\",1.00,-7.00,0.00,\"\",0.00,122.00,98.00,733.00,,,,,,\n2015,5,18,\"NK\",\"630\",\"ORD\",\"LGA\",50.00,86.00,0.00,\"\",0.00,166.00,98.00,733.00,50.00,0.00,36.00,0.00,0.00,\n2015,5,19,\"NK\",\"630\",\"ORD\",\"LGA\",,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,20,\"NK\",\"630\",\"ORD\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,124.00,91.00,733.00,,,,,,\n2015,5,21,\"NK\",\"630\",\"ORD\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,119.00,98.00,733.00,,,,,,\n2015,5,22,\"NK\",\"630\",\"ORD\",\"LGA\",91.00,79.00,0.00,\"\",0.00,118.00,86.00,733.00,79.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"NK\",\"630\",\"ORD\",\"LGA\",69.00,46.00,0.00,\"\",0.00,107.00,91.00,733.00,2.00,0.00,44.00,0.00,0.00,\n2015,5,24,\"NK\",\"630\",\"ORD\",\"LGA\",3.00,-7.00,0.00,\"\",0.00,120.00,93.00,733.00,,,,,,\n2015,5,25,\"NK\",\"630\",\"ORD\",\"LGA\",36.00,35.00,0.00,\"\",0.00,129.00,102.00,733.00,8.00,0.00,1.00,0.00,26.00,\n2015,5,26,\"NK\",\"630\",\"ORD\",\"LGA\",91.00,84.00,0.00,\"\",0.00,123.00,102.00,733.00,16.00,0.00,1.00,0.00,67.00,\n2015,5,27,\"NK\",\"630\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,28,\"NK\",\"630\",\"ORD\",\"LGA\",112.00,104.00,0.00,\"\",0.00,122.00,96.00,733.00,0.00,0.00,0.00,0.00,104.00,\n2015,5,29,\"NK\",\"630\",\"ORD\",\"LGA\",104.00,121.00,0.00,\"\",0.00,147.00,105.00,733.00,85.00,0.00,17.00,0.00,19.00,\n2015,5,30,\"NK\",\"630\",\"ORD\",\"LGA\",72.00,64.00,0.00,\"\",0.00,122.00,105.00,733.00,11.00,0.00,53.00,0.00,0.00,\n2015,5,31,\"NK\",\"630\",\"ORD\",\"LGA\",164.00,164.00,0.00,\"\",0.00,130.00,108.00,733.00,0.00,164.00,0.00,0.00,0.00,\n2015,5,1,\"NK\",\"647\",\"IAG\",\"FLL\",14.00,19.00,0.00,\"\",0.00,177.00,158.00,1176.00,9.00,0.00,5.00,0.00,5.00,\n2015,5,4,\"NK\",\"647\",\"IAG\",\"FLL\",-18.00,-25.00,0.00,\"\",0.00,165.00,148.00,1176.00,,,,,,\n2015,5,8,\"NK\",\"647\",\"IAG\",\"FLL\",0.00,-12.00,0.00,\"\",0.00,160.00,142.00,1176.00,,,,,,\n2015,5,11,\"NK\",\"647\",\"IAG\",\"FLL\",-16.00,-29.00,0.00,\"\",0.00,159.00,147.00,1176.00,,,,,,\n2015,5,15,\"NK\",\"647\",\"IAG\",\"FLL\",-1.00,-8.00,0.00,\"\",0.00,165.00,150.00,1176.00,,,,,,\n2015,5,18,\"NK\",\"647\",\"IAG\",\"FLL\",-4.00,-14.00,0.00,\"\",0.00,162.00,145.00,1176.00,,,,,,\n2015,5,22,\"NK\",\"647\",\"IAG\",\"FLL\",-9.00,-23.00,0.00,\"\",0.00,158.00,146.00,1176.00,,,,,,\n2015,5,25,\"NK\",\"647\",\"IAG\",\"FLL\",-10.00,-25.00,0.00,\"\",0.00,157.00,143.00,1176.00,,,,,,\n2015,5,29,\"NK\",\"647\",\"IAG\",\"FLL\",-18.00,-29.00,0.00,\"\",0.00,161.00,142.00,1176.00,,,,,,\n2015,5,1,\"NK\",\"705\",\"LGA\",\"FLL\",-7.00,-12.00,0.00,\"\",0.00,173.00,154.00,1076.00,,,,,,\n2015,5,2,\"NK\",\"705\",\"LGA\",\"FLL\",-8.00,-20.00,0.00,\"\",0.00,166.00,149.00,1076.00,,,,,,\n2015,5,3,\"NK\",\"705\",\"LGA\",\"FLL\",-3.00,-28.00,0.00,\"\",0.00,153.00,131.00,1076.00,,,,,,\n2015,5,4,\"NK\",\"705\",\"LGA\",\"FLL\",-6.00,-18.00,0.00,\"\",0.00,166.00,148.00,1076.00,,,,,,\n2015,5,5,\"NK\",\"705\",\"LGA\",\"FLL\",-7.00,-16.00,0.00,\"\",0.00,169.00,152.00,1076.00,,,,,,\n2015,5,6,\"NK\",\"705\",\"LGA\",\"FLL\",-13.00,-17.00,0.00,\"\",0.00,174.00,151.00,1076.00,,,,,,\n2015,5,7,\"NK\",\"705\",\"LGA\",\"FLL\",-8.00,-25.00,0.00,\"\",0.00,161.00,145.00,1076.00,,,,,,\n2015,5,8,\"NK\",\"705\",\"LGA\",\"FLL\",-11.00,-34.00,0.00,\"\",0.00,155.00,139.00,1076.00,,,,,,\n2015,5,9,\"NK\",\"705\",\"LGA\",\"FLL\",10.00,-11.00,0.00,\"\",0.00,157.00,141.00,1076.00,,,,,,\n2015,5,10,\"NK\",\"705\",\"LGA\",\"FLL\",259.00,263.00,0.00,\"\",0.00,182.00,151.00,1076.00,19.00,0.00,4.00,0.00,240.00,\n2015,5,11,\"NK\",\"705\",\"LGA\",\"FLL\",-7.00,-21.00,0.00,\"\",0.00,164.00,150.00,1076.00,,,,,,\n2015,5,12,\"NK\",\"705\",\"LGA\",\"FLL\",-8.00,-13.00,0.00,\"\",0.00,173.00,139.00,1076.00,,,,,,\n2015,5,13,\"NK\",\"705\",\"LGA\",\"FLL\",-8.00,-22.00,0.00,\"\",0.00,164.00,147.00,1076.00,,,,,,\n2015,5,14,\"NK\",\"705\",\"LGA\",\"FLL\",-4.00,-29.00,0.00,\"\",0.00,153.00,131.00,1076.00,,,,,,\n2015,5,15,\"NK\",\"705\",\"LGA\",\"FLL\",-6.00,-20.00,0.00,\"\",0.00,164.00,143.00,1076.00,,,,,,\n2015,5,16,\"NK\",\"705\",\"LGA\",\"FLL\",-2.00,-25.00,0.00,\"\",0.00,155.00,135.00,1076.00,,,,,,\n2015,5,17,\"NK\",\"705\",\"LGA\",\"FLL\",2.00,-17.00,0.00,\"\",0.00,159.00,135.00,1076.00,,,,,,\n2015,5,18,\"NK\",\"705\",\"LGA\",\"FLL\",-7.00,-21.00,0.00,\"\",0.00,164.00,142.00,1076.00,,,,,,\n2015,5,19,\"NK\",\"705\",\"LGA\",\"FLL\",-4.00,-17.00,0.00,\"\",0.00,165.00,142.00,1076.00,,,,,,\n2015,5,20,\"NK\",\"705\",\"LGA\",\"FLL\",9.00,-4.00,0.00,\"\",0.00,165.00,140.00,1076.00,,,,,,\n2015,5,21,\"NK\",\"705\",\"LGA\",\"FLL\",0.00,-15.00,0.00,\"\",0.00,163.00,144.00,1076.00,,,,,,\n2015,5,22,\"NK\",\"705\",\"LGA\",\"FLL\",-5.00,-20.00,0.00,\"\",0.00,163.00,141.00,1076.00,,,,,,\n2015,5,23,\"NK\",\"705\",\"LGA\",\"FLL\",-4.00,-11.00,0.00,\"\",0.00,171.00,145.00,1076.00,,,,,,\n2015,5,24,\"NK\",\"705\",\"LGA\",\"FLL\",4.00,-15.00,0.00,\"\",0.00,159.00,141.00,1076.00,,,,,,\n2015,5,25,\"NK\",\"705\",\"LGA\",\"FLL\",-11.00,-31.00,0.00,\"\",0.00,158.00,139.00,1076.00,,,,,,\n2015,5,26,\"NK\",\"705\",\"LGA\",\"FLL\",-1.00,-3.00,0.00,\"\",0.00,176.00,147.00,1076.00,,,,,,\n2015,5,27,\"NK\",\"705\",\"LGA\",\"FLL\",55.00,41.00,0.00,\"\",0.00,164.00,143.00,1076.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,28,\"NK\",\"705\",\"LGA\",\"FLL\",-4.00,-18.00,0.00,\"\",0.00,164.00,145.00,1076.00,,,,,,\n2015,5,29,\"NK\",\"705\",\"LGA\",\"FLL\",17.00,12.00,0.00,\"\",0.00,173.00,139.00,1076.00,,,,,,\n2015,5,30,\"NK\",\"705\",\"LGA\",\"FLL\",-7.00,-32.00,0.00,\"\",0.00,153.00,139.00,1076.00,,,,,,\n2015,5,31,\"NK\",\"705\",\"LGA\",\"FLL\",-9.00,-26.00,0.00,\"\",0.00,161.00,142.00,1076.00,,,,,,\n2015,5,1,\"NK\",\"710\",\"FLL\",\"LGA\",-2.00,-1.00,0.00,\"\",0.00,174.00,140.00,1076.00,,,,,,\n2015,5,2,\"NK\",\"710\",\"FLL\",\"LGA\",19.00,27.00,0.00,\"\",0.00,181.00,145.00,1076.00,19.00,0.00,8.00,0.00,0.00,\n2015,5,3,\"NK\",\"710\",\"FLL\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,158.00,140.00,1076.00,,,,,,\n2015,5,4,\"NK\",\"710\",\"FLL\",\"LGA\",4.00,15.00,0.00,\"\",0.00,184.00,141.00,1076.00,4.00,0.00,11.00,0.00,0.00,\n2015,5,5,\"NK\",\"710\",\"FLL\",\"LGA\",4.00,-4.00,0.00,\"\",0.00,165.00,138.00,1076.00,,,,,,\n2015,5,6,\"NK\",\"710\",\"FLL\",\"LGA\",11.00,6.00,0.00,\"\",0.00,168.00,143.00,1076.00,,,,,,\n2015,5,7,\"NK\",\"710\",\"FLL\",\"LGA\",17.00,22.00,0.00,\"\",0.00,178.00,150.00,1076.00,17.00,0.00,5.00,0.00,0.00,\n2015,5,8,\"NK\",\"710\",\"FLL\",\"LGA\",18.00,41.00,0.00,\"\",0.00,196.00,153.00,1076.00,18.00,0.00,23.00,0.00,0.00,\n2015,5,9,\"NK\",\"710\",\"FLL\",\"LGA\",650.00,641.00,0.00,\"\",0.00,164.00,149.00,1076.00,641.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"NK\",\"710\",\"FLL\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,160.00,141.00,1076.00,,,,,,\n2015,5,11,\"NK\",\"710\",\"FLL\",\"LGA\",7.00,14.00,0.00,\"\",0.00,180.00,162.00,1076.00,,,,,,\n2015,5,12,\"NK\",\"710\",\"FLL\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,158.00,138.00,1076.00,,,,,,\n2015,5,13,\"NK\",\"710\",\"FLL\",\"LGA\",6.00,2.00,0.00,\"\",0.00,169.00,151.00,1076.00,,,,,,\n2015,5,14,\"NK\",\"710\",\"FLL\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,163.00,140.00,1076.00,,,,,,\n2015,5,15,\"NK\",\"710\",\"FLL\",\"LGA\",-3.00,14.00,0.00,\"\",0.00,190.00,171.00,1076.00,,,,,,\n2015,5,16,\"NK\",\"710\",\"FLL\",\"LGA\",26.00,17.00,0.00,\"\",0.00,164.00,147.00,1076.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"NK\",\"710\",\"FLL\",\"LGA\",22.00,15.00,0.00,\"\",0.00,166.00,144.00,1076.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,18,\"NK\",\"710\",\"FLL\",\"LGA\",19.00,28.00,0.00,\"\",0.00,182.00,158.00,1076.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,19,\"NK\",\"710\",\"FLL\",\"LGA\",25.00,21.00,0.00,\"\",0.00,169.00,151.00,1076.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"NK\",\"710\",\"FLL\",\"LGA\",4.00,-6.00,0.00,\"\",0.00,163.00,141.00,1076.00,,,,,,\n2015,5,21,\"NK\",\"710\",\"FLL\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,176.00,151.00,1076.00,,,,,,\n2015,5,22,\"NK\",\"710\",\"FLL\",\"LGA\",7.00,10.00,0.00,\"\",0.00,176.00,142.00,1076.00,,,,,,\n2015,5,23,\"NK\",\"710\",\"FLL\",\"LGA\",3.00,-5.00,0.00,\"\",0.00,165.00,147.00,1076.00,,,,,,\n2015,5,24,\"NK\",\"710\",\"FLL\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,161.00,143.00,1076.00,,,,,,\n2015,5,25,\"NK\",\"710\",\"FLL\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,170.00,142.00,1076.00,,,,,,\n2015,5,26,\"NK\",\"710\",\"FLL\",\"LGA\",47.00,29.00,0.00,\"\",0.00,155.00,135.00,1076.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"NK\",\"710\",\"FLL\",\"LGA\",76.00,63.00,0.00,\"\",0.00,160.00,144.00,1076.00,0.00,0.00,0.00,0.00,63.00,\n2015,5,28,\"NK\",\"710\",\"FLL\",\"LGA\",77.00,68.00,0.00,\"\",0.00,164.00,139.00,1076.00,0.00,0.00,1.00,0.00,67.00,\n2015,5,29,\"NK\",\"710\",\"FLL\",\"LGA\",-1.00,52.00,0.00,\"\",0.00,226.00,148.00,1076.00,0.00,0.00,52.00,0.00,0.00,\n2015,5,30,\"NK\",\"710\",\"FLL\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,171.00,147.00,1076.00,,,,,,\n2015,5,31,\"NK\",\"710\",\"FLL\",\"LGA\",61.00,120.00,0.00,\"\",0.00,232.00,148.00,1076.00,0.00,0.00,120.00,0.00,0.00,\n2015,5,1,\"NK\",\"711\",\"LGA\",\"DTW\",-8.00,-3.00,0.00,\"\",0.00,128.00,80.00,502.00,,,,,,\n2015,5,2,\"NK\",\"711\",\"LGA\",\"DTW\",-12.00,-27.00,0.00,\"\",0.00,108.00,76.00,502.00,,,,,,\n2015,5,3,\"NK\",\"711\",\"LGA\",\"DTW\",7.00,-11.00,0.00,\"\",0.00,105.00,84.00,502.00,,,,,,\n2015,5,4,\"NK\",\"711\",\"LGA\",\"DTW\",0.00,-18.00,0.00,\"\",0.00,105.00,79.00,502.00,,,,,,\n2015,5,5,\"NK\",\"711\",\"LGA\",\"DTW\",-10.00,15.00,0.00,\"\",0.00,148.00,101.00,502.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,6,\"NK\",\"711\",\"LGA\",\"DTW\",-4.00,-3.00,0.00,\"\",0.00,124.00,84.00,502.00,,,,,,\n2015,5,7,\"NK\",\"711\",\"LGA\",\"DTW\",-10.00,-31.00,0.00,\"\",0.00,102.00,76.00,502.00,,,,,,\n2015,5,8,\"NK\",\"711\",\"LGA\",\"DTW\",60.00,39.00,0.00,\"\",0.00,102.00,78.00,502.00,5.00,0.00,34.00,0.00,0.00,\n2015,5,9,\"NK\",\"711\",\"LGA\",\"DTW\",7.00,0.00,0.00,\"\",0.00,116.00,79.00,502.00,,,,,,\n2015,5,10,\"NK\",\"711\",\"LGA\",\"DTW\",-7.00,-12.00,0.00,\"\",0.00,118.00,86.00,502.00,,,,,,\n2015,5,11,\"NK\",\"711\",\"LGA\",\"DTW\",14.00,-3.00,0.00,\"\",0.00,106.00,82.00,502.00,,,,,,\n2015,5,12,\"NK\",\"711\",\"LGA\",\"DTW\",-12.00,-21.00,0.00,\"\",0.00,114.00,91.00,502.00,,,,,,\n2015,5,13,\"NK\",\"711\",\"LGA\",\"DTW\",-5.00,0.00,0.00,\"\",0.00,128.00,96.00,502.00,,,,,,\n2015,5,14,\"NK\",\"711\",\"LGA\",\"DTW\",-1.00,1.00,0.00,\"\",0.00,125.00,84.00,502.00,,,,,,\n2015,5,15,\"NK\",\"711\",\"LGA\",\"DTW\",-8.00,-12.00,0.00,\"\",0.00,119.00,90.00,502.00,,,,,,\n2015,5,16,\"NK\",\"711\",\"LGA\",\"DTW\",-12.00,8.00,0.00,\"\",0.00,143.00,113.00,502.00,,,,,,\n2015,5,17,\"NK\",\"711\",\"LGA\",\"DTW\",-10.00,-34.00,0.00,\"\",0.00,99.00,78.00,502.00,,,,,,\n2015,5,18,\"NK\",\"711\",\"LGA\",\"DTW\",88.00,81.00,0.00,\"\",0.00,116.00,96.00,502.00,9.00,0.00,72.00,0.00,0.00,\n2015,5,19,\"NK\",\"711\",\"LGA\",\"DTW\",48.00,60.00,0.00,\"\",0.00,135.00,81.00,502.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,20,\"NK\",\"711\",\"LGA\",\"DTW\",-4.00,26.00,0.00,\"\",0.00,153.00,82.00,502.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,21,\"NK\",\"711\",\"LGA\",\"DTW\",5.00,21.00,0.00,\"\",0.00,139.00,84.00,502.00,5.00,0.00,16.00,0.00,0.00,\n2015,5,22,\"NK\",\"711\",\"LGA\",\"DTW\",-6.00,-21.00,0.00,\"\",0.00,108.00,90.00,502.00,,,,,,\n2015,5,23,\"NK\",\"711\",\"LGA\",\"DTW\",5.00,-17.00,0.00,\"\",0.00,101.00,80.00,502.00,,,,,,\n2015,5,24,\"NK\",\"711\",\"LGA\",\"DTW\",-9.00,-22.00,0.00,\"\",0.00,110.00,88.00,502.00,,,,,,\n2015,5,25,\"NK\",\"711\",\"LGA\",\"DTW\",-8.00,1.00,0.00,\"\",0.00,132.00,95.00,502.00,,,,,,\n2015,5,26,\"NK\",\"711\",\"LGA\",\"DTW\",-9.00,-9.00,0.00,\"\",0.00,123.00,79.00,502.00,,,,,,\n2015,5,27,\"NK\",\"711\",\"LGA\",\"DTW\",,,1.00,\"B\",0.00,,,502.00,,,,,,\n2015,5,28,\"NK\",\"711\",\"LGA\",\"DTW\",-10.00,-22.00,0.00,\"\",0.00,111.00,80.00,502.00,,,,,,\n2015,5,29,\"NK\",\"711\",\"LGA\",\"DTW\",-3.00,-4.00,0.00,\"\",0.00,122.00,85.00,502.00,,,,,,\n2015,5,30,\"NK\",\"711\",\"LGA\",\"DTW\",-6.00,-4.00,0.00,\"\",0.00,125.00,88.00,502.00,,,,,,\n2015,5,31,\"NK\",\"711\",\"LGA\",\"DTW\",6.00,39.00,0.00,\"\",0.00,156.00,87.00,502.00,0.00,6.00,33.00,0.00,0.00,\n2015,5,1,\"NK\",\"711\",\"MYR\",\"LGA\",27.00,14.00,0.00,\"\",0.00,93.00,79.00,563.00,,,,,,\n2015,5,2,\"NK\",\"711\",\"MYR\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,97.00,80.00,563.00,,,,,,\n2015,5,3,\"NK\",\"711\",\"MYR\",\"LGA\",21.00,14.00,0.00,\"\",0.00,99.00,85.00,563.00,,,,,,\n2015,5,4,\"NK\",\"711\",\"MYR\",\"LGA\",13.00,14.00,0.00,\"\",0.00,107.00,86.00,563.00,,,,,,\n2015,5,5,\"NK\",\"711\",\"MYR\",\"LGA\",-11.00,-24.00,0.00,\"\",0.00,93.00,76.00,563.00,,,,,,\n2015,5,6,\"NK\",\"711\",\"MYR\",\"LGA\",17.00,2.00,0.00,\"\",0.00,91.00,75.00,563.00,,,,,,\n2015,5,7,\"NK\",\"711\",\"MYR\",\"LGA\",-6.00,2.00,0.00,\"\",0.00,114.00,83.00,563.00,,,,,,\n2015,5,8,\"NK\",\"711\",\"MYR\",\"LGA\",57.00,71.00,0.00,\"\",0.00,120.00,83.00,563.00,0.00,0.00,71.00,0.00,0.00,\n2015,5,9,\"NK\",\"711\",\"MYR\",\"LGA\",18.00,22.00,0.00,\"\",0.00,110.00,99.00,563.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,10,\"NK\",\"711\",\"MYR\",\"LGA\",15.00,12.00,0.00,\"\",0.00,103.00,82.00,563.00,,,,,,\n2015,5,11,\"NK\",\"711\",\"MYR\",\"LGA\",0.00,19.00,0.00,\"\",0.00,125.00,110.00,563.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,12,\"NK\",\"711\",\"MYR\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,103.00,82.00,563.00,,,,,,\n2015,5,13,\"NK\",\"711\",\"MYR\",\"LGA\",17.00,7.00,0.00,\"\",0.00,96.00,77.00,563.00,,,,,,\n2015,5,14,\"NK\",\"711\",\"MYR\",\"LGA\",17.00,19.00,0.00,\"\",0.00,108.00,87.00,563.00,0.00,0.00,2.00,0.00,17.00,\n2015,5,15,\"NK\",\"711\",\"MYR\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,98.00,78.00,563.00,,,,,,\n2015,5,16,\"NK\",\"711\",\"MYR\",\"LGA\",11.00,3.00,0.00,\"\",0.00,98.00,83.00,563.00,,,,,,\n2015,5,17,\"NK\",\"711\",\"MYR\",\"LGA\",8.00,0.00,0.00,\"\",0.00,98.00,83.00,563.00,,,,,,\n2015,5,18,\"NK\",\"711\",\"MYR\",\"LGA\",67.00,97.00,0.00,\"\",0.00,136.00,123.00,563.00,0.00,0.00,97.00,0.00,0.00,\n2015,5,19,\"NK\",\"711\",\"MYR\",\"LGA\",66.00,62.00,0.00,\"\",0.00,102.00,77.00,563.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,20,\"NK\",\"711\",\"MYR\",\"LGA\",7.00,-9.00,0.00,\"\",0.00,90.00,77.00,563.00,,,,,,\n2015,5,21,\"NK\",\"711\",\"MYR\",\"LGA\",1.00,-10.00,0.00,\"\",0.00,95.00,77.00,563.00,,,,,,\n2015,5,22,\"NK\",\"711\",\"MYR\",\"LGA\",17.00,4.00,0.00,\"\",0.00,93.00,79.00,563.00,,,,,,\n2015,5,23,\"NK\",\"711\",\"MYR\",\"LGA\",24.00,18.00,0.00,\"\",0.00,100.00,84.00,563.00,7.00,0.00,1.00,0.00,10.00,\n2015,5,24,\"NK\",\"711\",\"MYR\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,101.00,83.00,563.00,,,,,,\n2015,5,25,\"NK\",\"711\",\"MYR\",\"LGA\",-9.00,-8.00,0.00,\"\",0.00,107.00,79.00,563.00,,,,,,\n2015,5,26,\"NK\",\"711\",\"MYR\",\"LGA\",-8.00,-15.00,0.00,\"\",0.00,99.00,81.00,563.00,,,,,,\n2015,5,27,\"NK\",\"711\",\"MYR\",\"LGA\",,,1.00,\"B\",0.00,,,563.00,,,,,,\n2015,5,28,\"NK\",\"711\",\"MYR\",\"LGA\",2.00,-2.00,0.00,\"\",0.00,102.00,85.00,563.00,,,,,,\n2015,5,29,\"NK\",\"711\",\"MYR\",\"LGA\",9.00,19.00,0.00,\"\",0.00,116.00,85.00,563.00,1.00,0.00,18.00,0.00,0.00,\n2015,5,30,\"NK\",\"711\",\"MYR\",\"LGA\",7.00,3.00,0.00,\"\",0.00,102.00,89.00,563.00,,,,,,\n2015,5,31,\"NK\",\"711\",\"MYR\",\"LGA\",-7.00,-5.00,0.00,\"\",0.00,108.00,80.00,563.00,,,,,,\n2015,5,1,\"NK\",\"475\",\"LGA\",\"DTW\",3.00,4.00,0.00,\"\",0.00,118.00,72.00,502.00,,,,,,\n2015,5,2,\"NK\",\"475\",\"LGA\",\"DTW\",-9.00,-30.00,0.00,\"\",0.00,96.00,76.00,502.00,,,,,,\n2015,5,3,\"NK\",\"475\",\"LGA\",\"DTW\",47.00,23.00,0.00,\"\",0.00,93.00,74.00,502.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,4,\"NK\",\"475\",\"LGA\",\"DTW\",-1.00,0.00,0.00,\"\",0.00,118.00,82.00,502.00,,,,,,\n2015,5,5,\"NK\",\"475\",\"LGA\",\"DTW\",-2.00,-4.00,0.00,\"\",0.00,115.00,87.00,502.00,,,,,,\n2015,5,6,\"NK\",\"475\",\"LGA\",\"DTW\",-7.00,5.00,0.00,\"\",0.00,129.00,82.00,502.00,,,,,,\n2015,5,7,\"NK\",\"475\",\"LGA\",\"DTW\",-2.00,-20.00,0.00,\"\",0.00,99.00,75.00,502.00,,,,,,\n2015,5,8,\"NK\",\"475\",\"LGA\",\"DTW\",23.00,30.00,0.00,\"\",0.00,124.00,76.00,502.00,15.00,0.00,15.00,0.00,0.00,\n2015,5,9,\"NK\",\"475\",\"LGA\",\"DTW\",-1.00,-9.00,0.00,\"\",0.00,109.00,78.00,502.00,,,,,,\n2015,5,10,\"NK\",\"475\",\"LGA\",\"DTW\",55.00,38.00,0.00,\"\",0.00,100.00,75.00,502.00,2.00,0.00,1.00,0.00,35.00,\n2015,5,11,\"NK\",\"475\",\"LGA\",\"DTW\",-3.00,-15.00,0.00,\"\",0.00,105.00,79.00,502.00,,,,,,\n2015,5,12,\"NK\",\"475\",\"LGA\",\"DTW\",22.00,7.00,0.00,\"\",0.00,102.00,81.00,502.00,,,,,,\n2015,5,13,\"NK\",\"475\",\"LGA\",\"DTW\",-9.00,3.00,0.00,\"\",0.00,129.00,90.00,502.00,,,,,,\n2015,5,14,\"NK\",\"475\",\"LGA\",\"DTW\",-11.00,-2.00,0.00,\"\",0.00,126.00,91.00,502.00,,,,,,\n2015,5,15,\"NK\",\"475\",\"LGA\",\"DTW\",-5.00,-15.00,0.00,\"\",0.00,107.00,80.00,502.00,,,,,,\n2015,5,16,\"NK\",\"475\",\"LGA\",\"DTW\",-4.00,4.00,0.00,\"\",0.00,125.00,84.00,502.00,,,,,,\n2015,5,17,\"NK\",\"475\",\"LGA\",\"DTW\",-3.00,2.00,0.00,\"\",0.00,122.00,76.00,502.00,,,,,,\n2015,5,18,\"NK\",\"475\",\"LGA\",\"DTW\",119.00,100.00,0.00,\"\",0.00,98.00,75.00,502.00,1.00,0.00,1.00,0.00,98.00,\n2015,5,19,\"NK\",\"475\",\"LGA\",\"DTW\",54.00,35.00,0.00,\"\",0.00,98.00,79.00,502.00,0.00,0.00,1.00,0.00,34.00,\n2015,5,20,\"NK\",\"475\",\"LGA\",\"DTW\",0.00,23.00,0.00,\"\",0.00,140.00,86.00,502.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,21,\"NK\",\"475\",\"LGA\",\"DTW\",-9.00,-15.00,0.00,\"\",0.00,111.00,85.00,502.00,,,,,,\n2015,5,22,\"NK\",\"475\",\"LGA\",\"DTW\",62.00,66.00,0.00,\"\",0.00,121.00,85.00,502.00,19.00,0.00,4.00,0.00,43.00,\n2015,5,23,\"NK\",\"475\",\"LGA\",\"DTW\",3.00,3.00,0.00,\"\",0.00,117.00,83.00,502.00,,,,,,\n2015,5,24,\"NK\",\"475\",\"LGA\",\"DTW\",1.00,-11.00,0.00,\"\",0.00,105.00,81.00,502.00,,,,,,\n2015,5,25,\"NK\",\"475\",\"LGA\",\"DTW\",-10.00,-27.00,0.00,\"\",0.00,100.00,79.00,502.00,,,,,,\n2015,5,26,\"NK\",\"475\",\"LGA\",\"DTW\",-8.00,-9.00,0.00,\"\",0.00,116.00,80.00,502.00,,,,,,\n2015,5,27,\"NK\",\"475\",\"LGA\",\"DTW\",9.00,-1.00,0.00,\"\",0.00,107.00,83.00,502.00,,,,,,\n2015,5,28,\"NK\",\"475\",\"LGA\",\"DTW\",-3.00,15.00,0.00,\"\",0.00,135.00,86.00,502.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,29,\"NK\",\"475\",\"LGA\",\"DTW\",1.00,2.00,0.00,\"\",0.00,118.00,78.00,502.00,,,,,,\n2015,5,30,\"NK\",\"475\",\"LGA\",\"DTW\",0.00,-7.00,0.00,\"\",0.00,110.00,78.00,502.00,,,,,,\n2015,5,31,\"NK\",\"475\",\"LGA\",\"DTW\",59.00,60.00,0.00,\"\",0.00,118.00,90.00,502.00,7.00,0.00,1.00,0.00,52.00,\n2015,5,1,\"NK\",\"718\",\"DFW\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,201.00,176.00,1389.00,,,,,,\n2015,5,2,\"NK\",\"718\",\"DFW\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,194.00,175.00,1389.00,,,,,,\n2015,5,3,\"NK\",\"718\",\"DFW\",\"LGA\",81.00,74.00,0.00,\"\",0.00,202.00,181.00,1389.00,6.00,0.00,1.00,0.00,67.00,\n2015,5,4,\"NK\",\"718\",\"DFW\",\"LGA\",,,1.00,\"A\",0.00,,,1389.00,,,,,,\n2015,5,5,\"NK\",\"718\",\"DFW\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,201.00,182.00,1389.00,,,,,,\n2015,5,6,\"NK\",\"718\",\"DFW\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,199.00,177.00,1389.00,,,,,,\n2015,5,7,\"NK\",\"718\",\"DFW\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,212.00,183.00,1389.00,,,,,,\n2015,5,8,\"NK\",\"718\",\"DFW\",\"LGA\",48.00,43.00,0.00,\"\",0.00,204.00,177.00,1389.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,9,\"NK\",\"718\",\"DFW\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,202.00,181.00,1389.00,,,,,,\n2015,5,10,\"NK\",\"718\",\"DFW\",\"LGA\",55.00,117.00,0.00,\"\",0.00,271.00,196.00,1389.00,0.00,55.00,62.00,0.00,0.00,\n2015,5,11,\"NK\",\"718\",\"DFW\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,192.00,178.00,1389.00,,,,,,\n2015,5,12,\"NK\",\"718\",\"DFW\",\"LGA\",-2.00,-24.00,0.00,\"\",0.00,187.00,161.00,1389.00,,,,,,\n2015,5,13,\"NK\",\"718\",\"DFW\",\"LGA\",-6.00,-27.00,0.00,\"\",0.00,188.00,167.00,1389.00,,,,,,\n2015,5,14,\"NK\",\"718\",\"DFW\",\"LGA\",3.00,-13.00,0.00,\"\",0.00,193.00,173.00,1389.00,,,,,,\n2015,5,15,\"NK\",\"718\",\"DFW\",\"LGA\",-3.00,21.00,0.00,\"\",0.00,233.00,170.00,1389.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,16,\"NK\",\"718\",\"DFW\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,200.00,173.00,1389.00,,,,,,\n2015,5,17,\"NK\",\"718\",\"DFW\",\"LGA\",18.00,19.00,0.00,\"\",0.00,210.00,185.00,1389.00,0.00,18.00,1.00,0.00,0.00,\n2015,5,18,\"NK\",\"718\",\"DFW\",\"LGA\",0.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,19,\"NK\",\"718\",\"DFW\",\"LGA\",74.00,70.00,0.00,\"\",0.00,205.00,166.00,1389.00,0.00,0.00,70.00,0.00,0.00,\n2015,5,20,\"NK\",\"718\",\"DFW\",\"LGA\",-6.00,-31.00,0.00,\"\",0.00,184.00,165.00,1389.00,,,,,,\n2015,5,21,\"NK\",\"718\",\"DFW\",\"LGA\",32.00,12.00,0.00,\"\",0.00,189.00,169.00,1389.00,,,,,,\n2015,5,22,\"NK\",\"718\",\"DFW\",\"LGA\",-7.00,-39.00,0.00,\"\",0.00,177.00,159.00,1389.00,,,,,,\n2015,5,23,\"NK\",\"718\",\"DFW\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,198.00,166.00,1389.00,,,,,,\n2015,5,24,\"NK\",\"718\",\"DFW\",\"LGA\",12.00,1.00,0.00,\"\",0.00,198.00,175.00,1389.00,,,,,,\n2015,5,25,\"NK\",\"718\",\"DFW\",\"LGA\",30.00,38.00,0.00,\"\",0.00,217.00,187.00,1389.00,30.00,0.00,8.00,0.00,0.00,\n2015,5,26,\"NK\",\"718\",\"DFW\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,198.00,176.00,1389.00,,,,,,\n2015,5,27,\"NK\",\"718\",\"DFW\",\"LGA\",149.00,153.00,0.00,\"\",0.00,213.00,174.00,1389.00,149.00,0.00,4.00,0.00,0.00,\n2015,5,28,\"NK\",\"718\",\"DFW\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,197.00,173.00,1389.00,,,,,,\n2015,5,29,\"NK\",\"718\",\"DFW\",\"LGA\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,30,\"NK\",\"718\",\"DFW\",\"LGA\",66.00,63.00,0.00,\"\",0.00,206.00,182.00,1389.00,0.00,46.00,17.00,0.00,0.00,\n2015,5,31,\"NK\",\"718\",\"DFW\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,190.00,172.00,1389.00,,,,,,\n2015,5,1,\"NK\",\"779\",\"LGA\",\"FLL\",-5.00,5.00,0.00,\"\",0.00,192.00,151.00,1076.00,,,,,,\n2015,5,2,\"NK\",\"779\",\"LGA\",\"FLL\",-18.00,-37.00,0.00,\"\",0.00,163.00,148.00,1076.00,,,,,,\n2015,5,3,\"NK\",\"779\",\"LGA\",\"FLL\",-11.00,-33.00,0.00,\"\",0.00,160.00,138.00,1076.00,,,,,,\n2015,5,4,\"NK\",\"779\",\"LGA\",\"FLL\",-7.00,-16.00,0.00,\"\",0.00,173.00,148.00,1076.00,,,,,,\n2015,5,5,\"NK\",\"779\",\"LGA\",\"FLL\",-8.00,-9.00,0.00,\"\",0.00,181.00,160.00,1076.00,,,,,,\n2015,5,6,\"NK\",\"779\",\"LGA\",\"FLL\",-2.00,4.00,0.00,\"\",0.00,188.00,143.00,1076.00,,,,,,\n2015,5,7,\"NK\",\"779\",\"LGA\",\"FLL\",-7.00,-17.00,0.00,\"\",0.00,172.00,143.00,1076.00,,,,,,\n2015,5,8,\"NK\",\"779\",\"LGA\",\"FLL\",0.00,-6.00,0.00,\"\",0.00,176.00,142.00,1076.00,,,,,,\n2015,5,9,\"NK\",\"779\",\"LGA\",\"FLL\",-5.00,-16.00,0.00,\"\",0.00,171.00,151.00,1076.00,,,,,,\n2015,5,10,\"NK\",\"779\",\"LGA\",\"FLL\",25.00,39.00,0.00,\"\",0.00,196.00,158.00,1076.00,11.00,0.00,14.00,0.00,14.00,\n2015,5,11,\"NK\",\"779\",\"LGA\",\"FLL\",49.00,45.00,0.00,\"\",0.00,178.00,139.00,1076.00,6.00,0.00,39.00,0.00,0.00,\n2015,5,12,\"NK\",\"779\",\"LGA\",\"FLL\",-8.00,-14.00,0.00,\"\",0.00,176.00,147.00,1076.00,,,,,,\n2015,5,13,\"NK\",\"779\",\"LGA\",\"FLL\",-1.00,-5.00,0.00,\"\",0.00,178.00,135.00,1076.00,,,,,,\n2015,5,14,\"NK\",\"779\",\"LGA\",\"FLL\",-4.00,-19.00,0.00,\"\",0.00,167.00,141.00,1076.00,,,,,,\n2015,5,15,\"NK\",\"779\",\"LGA\",\"FLL\",-13.00,-30.00,0.00,\"\",0.00,165.00,138.00,1076.00,,,,,,\n2015,5,16,\"NK\",\"779\",\"LGA\",\"FLL\",-11.00,-41.00,0.00,\"\",0.00,152.00,139.00,1076.00,,,,,,\n2015,5,17,\"NK\",\"779\",\"LGA\",\"FLL\",-8.00,-12.00,0.00,\"\",0.00,178.00,140.00,1076.00,,,,,,\n2015,5,18,\"NK\",\"779\",\"LGA\",\"FLL\",155.00,169.00,0.00,\"\",0.00,196.00,147.00,1076.00,2.00,0.00,14.00,0.00,153.00,\n2015,5,19,\"NK\",\"779\",\"LGA\",\"FLL\",66.00,72.00,0.00,\"\",0.00,188.00,155.00,1076.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,20,\"NK\",\"779\",\"LGA\",\"FLL\",0.00,28.00,0.00,\"\",0.00,210.00,148.00,1076.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,21,\"NK\",\"779\",\"LGA\",\"FLL\",-3.00,11.00,0.00,\"\",0.00,196.00,159.00,1076.00,,,,,,\n2015,5,22,\"NK\",\"779\",\"LGA\",\"FLL\",-9.00,-19.00,0.00,\"\",0.00,172.00,143.00,1076.00,,,,,,\n2015,5,23,\"NK\",\"779\",\"LGA\",\"FLL\",-18.00,-53.00,0.00,\"\",0.00,147.00,135.00,1076.00,,,,,,\n2015,5,24,\"NK\",\"779\",\"LGA\",\"FLL\",25.00,2.00,0.00,\"\",0.00,159.00,141.00,1076.00,,,,,,\n2015,5,25,\"NK\",\"779\",\"LGA\",\"FLL\",8.00,11.00,0.00,\"\",0.00,185.00,151.00,1076.00,,,,,,\n2015,5,26,\"NK\",\"779\",\"LGA\",\"FLL\",87.00,69.00,0.00,\"\",0.00,164.00,141.00,1076.00,7.00,0.00,1.00,0.00,61.00,\n2015,5,27,\"NK\",\"779\",\"LGA\",\"FLL\",125.00,126.00,0.00,\"\",0.00,183.00,147.00,1076.00,0.00,0.00,3.00,0.00,123.00,\n2015,5,28,\"NK\",\"779\",\"LGA\",\"FLL\",11.00,19.00,0.00,\"\",0.00,190.00,146.00,1076.00,11.00,0.00,8.00,0.00,0.00,\n2015,5,29,\"NK\",\"779\",\"LGA\",\"FLL\",-9.00,-14.00,0.00,\"\",0.00,177.00,136.00,1076.00,,,,,,\n2015,5,30,\"NK\",\"779\",\"LGA\",\"FLL\",5.00,-2.00,0.00,\"\",0.00,175.00,147.00,1076.00,,,,,,\n2015,5,31,\"NK\",\"779\",\"LGA\",\"FLL\",,,1.00,\"C\",0.00,,,1076.00,,,,,,\n2015,5,3,\"NK\",\"819\",\"PBG\",\"MYR\",53.00,53.00,0.00,\"\",0.00,129.00,105.00,811.00,0.00,0.00,0.00,0.00,53.00,\n2015,5,7,\"NK\",\"819\",\"PBG\",\"MYR\",13.00,16.00,0.00,\"\",0.00,132.00,108.00,811.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,10,\"NK\",\"819\",\"PBG\",\"MYR\",58.00,54.00,0.00,\"\",0.00,125.00,109.00,811.00,0.00,0.00,22.00,0.00,32.00,\n2015,5,14,\"NK\",\"819\",\"PBG\",\"MYR\",20.00,17.00,0.00,\"\",0.00,126.00,99.00,811.00,6.00,0.00,1.00,0.00,10.00,\n2015,5,17,\"NK\",\"819\",\"PBG\",\"MYR\",-6.00,-11.00,0.00,\"\",0.00,124.00,106.00,811.00,,,,,,\n2015,5,21,\"NK\",\"819\",\"PBG\",\"MYR\",1.00,12.00,0.00,\"\",0.00,140.00,120.00,811.00,,,,,,\n2015,5,24,\"NK\",\"819\",\"PBG\",\"MYR\",-1.00,-6.00,0.00,\"\",0.00,124.00,101.00,811.00,,,,,,\n2015,5,28,\"NK\",\"819\",\"PBG\",\"MYR\",-5.00,-7.00,0.00,\"\",0.00,127.00,110.00,811.00,,,,,,\n2015,5,31,\"NK\",\"819\",\"PBG\",\"MYR\",52.00,65.00,0.00,\"\",0.00,142.00,113.00,811.00,1.00,0.00,13.00,0.00,51.00,\n2015,5,3,\"NK\",\"820\",\"MYR\",\"PBG\",50.00,55.00,0.00,\"\",0.00,133.00,111.00,811.00,0.00,0.00,5.00,0.00,50.00,\n2015,5,7,\"NK\",\"820\",\"MYR\",\"PBG\",10.00,19.00,0.00,\"\",0.00,137.00,113.00,811.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,10,\"NK\",\"820\",\"MYR\",\"PBG\",35.00,37.00,0.00,\"\",0.00,130.00,106.00,811.00,3.00,0.00,2.00,0.00,32.00,\n2015,5,14,\"NK\",\"820\",\"MYR\",\"PBG\",4.00,14.00,0.00,\"\",0.00,138.00,115.00,811.00,,,,,,\n2015,5,17,\"NK\",\"820\",\"MYR\",\"PBG\",-8.00,-10.00,0.00,\"\",0.00,126.00,109.00,811.00,,,,,,\n2015,5,21,\"NK\",\"820\",\"MYR\",\"PBG\",13.00,5.00,0.00,\"\",0.00,120.00,102.00,811.00,,,,,,\n2015,5,24,\"NK\",\"820\",\"MYR\",\"PBG\",-8.00,0.00,0.00,\"\",0.00,136.00,116.00,811.00,,,,,,\n2015,5,28,\"NK\",\"820\",\"MYR\",\"PBG\",0.00,-13.00,0.00,\"\",0.00,115.00,101.00,811.00,,,,,,\n2015,5,31,\"NK\",\"820\",\"MYR\",\"PBG\",67.00,57.00,0.00,\"\",0.00,118.00,106.00,811.00,5.00,0.00,1.00,0.00,51.00,\n2015,5,1,\"NK\",\"847\",\"LGA\",\"ORD\",-4.00,-6.00,0.00,\"\",0.00,147.00,102.00,733.00,,,,,,\n2015,5,2,\"NK\",\"847\",\"LGA\",\"ORD\",3.00,-1.00,0.00,\"\",0.00,145.00,103.00,733.00,,,,,,\n2015,5,3,\"NK\",\"847\",\"LGA\",\"ORD\",-8.00,3.00,0.00,\"\",0.00,160.00,106.00,733.00,,,,,,\n2015,5,4,\"NK\",\"847\",\"LGA\",\"ORD\",-2.00,12.00,0.00,\"\",0.00,163.00,109.00,733.00,,,,,,\n2015,5,5,\"NK\",\"847\",\"LGA\",\"ORD\",-3.00,5.00,0.00,\"\",0.00,157.00,119.00,733.00,,,,,,\n2015,5,6,\"NK\",\"847\",\"LGA\",\"ORD\",-6.00,17.00,0.00,\"\",0.00,172.00,116.00,733.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,7,\"NK\",\"847\",\"LGA\",\"ORD\",0.00,-9.00,0.00,\"\",0.00,140.00,105.00,733.00,,,,,,\n2015,5,8,\"NK\",\"847\",\"LGA\",\"ORD\",-9.00,5.00,0.00,\"\",0.00,163.00,106.00,733.00,,,,,,\n2015,5,9,\"NK\",\"847\",\"LGA\",\"ORD\",16.00,21.00,0.00,\"\",0.00,154.00,109.00,733.00,0.00,0.00,5.00,0.00,16.00,\n2015,5,10,\"NK\",\"847\",\"LGA\",\"ORD\",-1.00,54.00,0.00,\"\",0.00,204.00,112.00,733.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,11,\"NK\",\"847\",\"LGA\",\"ORD\",-2.00,-5.00,0.00,\"\",0.00,146.00,109.00,733.00,,,,,,\n2015,5,12,\"NK\",\"847\",\"LGA\",\"ORD\",-4.00,39.00,0.00,\"\",0.00,192.00,116.00,733.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,13,\"NK\",\"847\",\"LGA\",\"ORD\",-3.00,18.00,0.00,\"\",0.00,170.00,121.00,733.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,14,\"NK\",\"847\",\"LGA\",\"ORD\",-1.00,15.00,0.00,\"\",0.00,165.00,117.00,733.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,15,\"NK\",\"847\",\"LGA\",\"ORD\",-2.00,-10.00,0.00,\"\",0.00,141.00,115.00,733.00,,,,,,\n2015,5,16,\"NK\",\"847\",\"LGA\",\"ORD\",44.00,61.00,0.00,\"\",0.00,166.00,115.00,733.00,11.00,0.00,17.00,0.00,33.00,\n2015,5,17,\"NK\",\"847\",\"LGA\",\"ORD\",-5.00,-3.00,0.00,\"\",0.00,151.00,108.00,733.00,,,,,,\n2015,5,18,\"NK\",\"847\",\"LGA\",\"ORD\",157.00,139.00,0.00,\"\",0.00,131.00,106.00,733.00,0.00,0.00,0.00,0.00,139.00,\n2015,5,19,\"NK\",\"847\",\"LGA\",\"ORD\",18.00,37.00,0.00,\"\",0.00,168.00,117.00,733.00,3.00,0.00,19.00,0.00,15.00,\n2015,5,20,\"NK\",\"847\",\"LGA\",\"ORD\",9.00,33.00,0.00,\"\",0.00,173.00,124.00,733.00,9.00,0.00,24.00,0.00,0.00,\n2015,5,21,\"NK\",\"847\",\"LGA\",\"ORD\",1.00,-2.00,0.00,\"\",0.00,146.00,118.00,733.00,,,,,,\n2015,5,22,\"NK\",\"847\",\"LGA\",\"ORD\",74.00,88.00,0.00,\"\",0.00,163.00,119.00,733.00,74.00,0.00,14.00,0.00,0.00,\n2015,5,23,\"NK\",\"847\",\"LGA\",\"ORD\",-15.00,-15.00,0.00,\"\",0.00,149.00,114.00,733.00,,,,,,\n2015,5,24,\"NK\",\"847\",\"LGA\",\"ORD\",6.00,-4.00,0.00,\"\",0.00,139.00,115.00,733.00,,,,,,\n2015,5,25,\"NK\",\"847\",\"LGA\",\"ORD\",-16.00,-13.00,0.00,\"\",0.00,152.00,120.00,733.00,,,,,,\n2015,5,26,\"NK\",\"847\",\"LGA\",\"ORD\",-3.00,19.00,0.00,\"\",0.00,171.00,112.00,733.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,27,\"NK\",\"847\",\"LGA\",\"ORD\",90.00,87.00,0.00,\"\",0.00,146.00,112.00,733.00,8.00,0.00,1.00,0.00,78.00,\n2015,5,28,\"NK\",\"847\",\"LGA\",\"ORD\",10.00,11.00,0.00,\"\",0.00,150.00,111.00,733.00,,,,,,\n2015,5,29,\"NK\",\"847\",\"LGA\",\"ORD\",-1.00,-8.00,0.00,\"\",0.00,142.00,107.00,733.00,,,,,,\n2015,5,30,\"NK\",\"847\",\"LGA\",\"ORD\",-7.00,-8.00,0.00,\"\",0.00,148.00,111.00,733.00,,,,,,\n2015,5,31,\"NK\",\"847\",\"LGA\",\"ORD\",0.00,14.00,0.00,\"\",0.00,163.00,118.00,733.00,,,,,,\n2015,5,1,\"NK\",\"917\",\"LGA\",\"DFW\",4.00,-13.00,0.00,\"\",0.00,212.00,179.00,1389.00,,,,,,\n2015,5,2,\"NK\",\"917\",\"LGA\",\"DFW\",-13.00,-18.00,0.00,\"\",0.00,224.00,192.00,1389.00,,,,,,\n2015,5,3,\"NK\",\"917\",\"LGA\",\"DFW\",76.00,53.00,0.00,\"\",0.00,206.00,181.00,1389.00,0.00,0.00,2.00,0.00,51.00,\n2015,5,4,\"NK\",\"917\",\"LGA\",\"DFW\",,,1.00,\"A\",0.00,,,1389.00,,,,,,\n2015,5,5,\"NK\",\"917\",\"LGA\",\"DFW\",-2.00,-35.00,0.00,\"\",0.00,196.00,177.00,1389.00,,,,,,\n2015,5,6,\"NK\",\"917\",\"LGA\",\"DFW\",-7.00,-2.00,0.00,\"\",0.00,234.00,181.00,1389.00,,,,,,\n2015,5,7,\"NK\",\"917\",\"LGA\",\"DFW\",-1.00,-16.00,0.00,\"\",0.00,214.00,181.00,1389.00,,,,,,\n2015,5,8,\"NK\",\"917\",\"LGA\",\"DFW\",52.00,26.00,0.00,\"\",0.00,203.00,179.00,1389.00,4.00,0.00,22.00,0.00,0.00,\n2015,5,9,\"NK\",\"917\",\"LGA\",\"DFW\",6.00,12.00,0.00,\"\",0.00,235.00,200.00,1389.00,,,,,,\n2015,5,10,\"NK\",\"917\",\"LGA\",\"DFW\",180.00,185.00,0.00,\"\",0.00,234.00,209.00,1389.00,0.00,0.00,68.00,0.00,117.00,\n2015,5,11,\"NK\",\"917\",\"LGA\",\"DFW\",-1.00,-5.00,0.00,\"\",0.00,225.00,192.00,1389.00,,,,,,\n2015,5,12,\"NK\",\"917\",\"LGA\",\"DFW\",-12.00,-21.00,0.00,\"\",0.00,220.00,203.00,1389.00,,,,,,\n2015,5,13,\"NK\",\"917\",\"LGA\",\"DFW\",-6.00,-5.00,0.00,\"\",0.00,230.00,192.00,1389.00,,,,,,\n2015,5,14,\"NK\",\"917\",\"LGA\",\"DFW\",-8.00,5.00,0.00,\"\",0.00,242.00,184.00,1389.00,,,,,,\n2015,5,15,\"NK\",\"917\",\"LGA\",\"DFW\",25.00,14.00,0.00,\"\",0.00,218.00,190.00,1389.00,,,,,,\n2015,5,16,\"NK\",\"917\",\"LGA\",\"DFW\",-9.00,-5.00,0.00,\"\",0.00,233.00,188.00,1389.00,,,,,,\n2015,5,17,\"NK\",\"917\",\"LGA\",\"DFW\",25.00,47.00,0.00,\"\",0.00,251.00,217.00,1389.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,18,\"NK\",\"917\",\"LGA\",\"DFW\",93.00,92.00,0.00,\"\",0.00,228.00,187.00,1389.00,1.00,0.00,1.00,0.00,90.00,\n2015,5,19,\"NK\",\"917\",\"LGA\",\"DFW\",76.00,76.00,0.00,\"\",0.00,229.00,188.00,1389.00,6.00,0.00,0.00,0.00,70.00,\n2015,5,20,\"NK\",\"917\",\"LGA\",\"DFW\",-8.00,-8.00,0.00,\"\",0.00,229.00,196.00,1389.00,,,,,,\n2015,5,21,\"NK\",\"917\",\"LGA\",\"DFW\",14.00,22.00,0.00,\"\",0.00,237.00,210.00,1389.00,2.00,0.00,8.00,0.00,12.00,\n2015,5,22,\"NK\",\"917\",\"LGA\",\"DFW\",-6.00,11.00,0.00,\"\",0.00,246.00,210.00,1389.00,,,,,,\n2015,5,23,\"NK\",\"917\",\"LGA\",\"DFW\",-2.00,-19.00,0.00,\"\",0.00,212.00,194.00,1389.00,,,,,,\n2015,5,24,\"NK\",\"917\",\"LGA\",\"DFW\",6.00,3.00,0.00,\"\",0.00,226.00,187.00,1389.00,,,,,,\n2015,5,25,\"NK\",\"917\",\"LGA\",\"DFW\",44.00,,0.00,\"\",1.00,,,1389.00,,,,,,\n2015,5,26,\"NK\",\"917\",\"LGA\",\"DFW\",-5.00,-12.00,0.00,\"\",0.00,222.00,191.00,1389.00,,,,,,\n2015,5,27,\"NK\",\"917\",\"LGA\",\"DFW\",192.00,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,28,\"NK\",\"917\",\"LGA\",\"DFW\",-2.00,3.00,0.00,\"\",0.00,234.00,193.00,1389.00,,,,,,\n2015,5,29,\"NK\",\"917\",\"LGA\",\"DFW\",,,1.00,\"B\",0.00,,,1389.00,,,,,,\n2015,5,30,\"NK\",\"917\",\"LGA\",\"DFW\",82.00,71.00,0.00,\"\",0.00,218.00,190.00,1389.00,16.00,0.00,1.00,0.00,54.00,\n2015,5,31,\"NK\",\"917\",\"LGA\",\"DFW\",-8.00,-16.00,0.00,\"\",0.00,221.00,192.00,1389.00,,,,,,\n2015,5,1,\"NK\",\"921\",\"LGA\",\"MYR\",0.00,21.00,0.00,\"\",0.00,131.00,83.00,563.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,2,\"NK\",\"921\",\"LGA\",\"MYR\",0.00,-6.00,0.00,\"\",0.00,104.00,75.00,563.00,,,,,,\n2015,5,3,\"NK\",\"921\",\"LGA\",\"MYR\",4.00,12.00,0.00,\"\",0.00,118.00,77.00,563.00,,,,,,\n2015,5,4,\"NK\",\"921\",\"LGA\",\"MYR\",11.00,6.00,0.00,\"\",0.00,105.00,78.00,563.00,,,,,,\n2015,5,5,\"NK\",\"921\",\"LGA\",\"MYR\",-1.00,-15.00,0.00,\"\",0.00,96.00,78.00,563.00,,,,,,\n2015,5,6,\"NK\",\"921\",\"LGA\",\"MYR\",-7.00,19.00,0.00,\"\",0.00,136.00,82.00,563.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,7,\"NK\",\"921\",\"LGA\",\"MYR\",-1.00,-6.00,0.00,\"\",0.00,105.00,82.00,563.00,,,,,,\n2015,5,8,\"NK\",\"921\",\"LGA\",\"MYR\",68.00,58.00,0.00,\"\",0.00,100.00,82.00,563.00,6.00,0.00,52.00,0.00,0.00,\n2015,5,9,\"NK\",\"921\",\"LGA\",\"MYR\",0.00,19.00,0.00,\"\",0.00,129.00,81.00,563.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,10,\"NK\",\"921\",\"LGA\",\"MYR\",,,1.00,\"B\",0.00,,,563.00,,,,,,\n2015,5,11,\"NK\",\"921\",\"LGA\",\"MYR\",2.00,-5.00,0.00,\"\",0.00,103.00,80.00,563.00,,,,,,\n2015,5,12,\"NK\",\"921\",\"LGA\",\"MYR\",-7.00,-15.00,0.00,\"\",0.00,102.00,80.00,563.00,,,,,,\n2015,5,13,\"NK\",\"921\",\"LGA\",\"MYR\",-3.00,12.00,0.00,\"\",0.00,125.00,82.00,563.00,,,,,,\n2015,5,14,\"NK\",\"921\",\"LGA\",\"MYR\",7.00,16.00,0.00,\"\",0.00,119.00,76.00,563.00,7.00,0.00,9.00,0.00,0.00,\n2015,5,15,\"NK\",\"921\",\"LGA\",\"MYR\",-6.00,-23.00,0.00,\"\",0.00,93.00,75.00,563.00,,,,,,\n2015,5,16,\"NK\",\"921\",\"LGA\",\"MYR\",8.00,10.00,0.00,\"\",0.00,112.00,77.00,563.00,,,,,,\n2015,5,17,\"NK\",\"921\",\"LGA\",\"MYR\",-5.00,9.00,0.00,\"\",0.00,124.00,76.00,563.00,,,,,,\n2015,5,18,\"NK\",\"921\",\"LGA\",\"MYR\",,,1.00,\"B\",0.00,,,563.00,,,,,,\n2015,5,19,\"NK\",\"921\",\"LGA\",\"MYR\",64.00,54.00,0.00,\"\",0.00,100.00,81.00,563.00,8.00,0.00,46.00,0.00,0.00,\n2015,5,20,\"NK\",\"921\",\"LGA\",\"MYR\",-7.00,5.00,0.00,\"\",0.00,122.00,79.00,563.00,,,,,,\n2015,5,21,\"NK\",\"921\",\"LGA\",\"MYR\",-9.00,0.00,0.00,\"\",0.00,119.00,89.00,563.00,,,,,,\n2015,5,22,\"NK\",\"921\",\"LGA\",\"MYR\",1.00,21.00,0.00,\"\",0.00,130.00,87.00,563.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,23,\"NK\",\"921\",\"LGA\",\"MYR\",4.00,14.00,0.00,\"\",0.00,120.00,78.00,563.00,,,,,,\n2015,5,24,\"NK\",\"921\",\"LGA\",\"MYR\",-4.00,-24.00,0.00,\"\",0.00,90.00,75.00,563.00,,,,,,\n2015,5,25,\"NK\",\"921\",\"LGA\",\"MYR\",-10.00,-15.00,0.00,\"\",0.00,105.00,82.00,563.00,,,,,,\n2015,5,26,\"NK\",\"921\",\"LGA\",\"MYR\",-11.00,-15.00,0.00,\"\",0.00,106.00,79.00,563.00,,,,,,\n2015,5,27,\"NK\",\"921\",\"LGA\",\"MYR\",176.00,194.00,0.00,\"\",0.00,128.00,83.00,563.00,5.00,0.00,18.00,0.00,171.00,\n2015,5,28,\"NK\",\"921\",\"LGA\",\"MYR\",-3.00,-2.00,0.00,\"\",0.00,111.00,80.00,563.00,,,,,,\n2015,5,29,\"NK\",\"921\",\"LGA\",\"MYR\",2.00,7.00,0.00,\"\",0.00,115.00,78.00,563.00,,,,,,\n2015,5,30,\"NK\",\"921\",\"LGA\",\"MYR\",20.00,6.00,0.00,\"\",0.00,96.00,77.00,563.00,,,,,,\n2015,5,31,\"NK\",\"921\",\"LGA\",\"MYR\",-5.00,-15.00,0.00,\"\",0.00,100.00,79.00,563.00,,,,,,\n2015,5,2,\"OO\",\"5597\",\"LGA\",\"ORD\",-8.00,-48.00,0.00,\"\",0.00,135.00,110.00,733.00,,,,,,\n2015,5,2,\"OO\",\"4995\",\"ORD\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,133.00,107.00,733.00,,,,,,\n2015,5,9,\"OO\",\"4983\",\"ORD\",\"LGA\",-1.00,5.00,0.00,\"\",0.00,141.00,116.00,733.00,,,,,,\n2015,5,30,\"OO\",\"4983\",\"ORD\",\"LGA\",-1.00,12.00,0.00,\"\",0.00,148.00,113.00,733.00,,,,,,\n2015,5,16,\"OO\",\"4983\",\"ORD\",\"LGA\",63.00,56.00,0.00,\"\",0.00,128.00,102.00,733.00,56.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"OO\",\"4983\",\"ORD\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,126.00,96.00,733.00,,,,,,\n2015,5,6,\"EV\",\"5962\",\"LGA\",\"CLE\",-7.00,20.00,0.00,\"\",0.00,132.00,110.00,419.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,2,\"OO\",\"5162\",\"ORD\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,126.00,108.00,733.00,,,,,,\n2015,5,8,\"OO\",\"5226\",\"BUF\",\"ORD\",58.00,41.00,0.00,\"\",0.00,96.00,81.00,473.00,0.00,0.00,0.00,0.00,41.00,\n2015,5,17,\"OO\",\"5226\",\"BUF\",\"ORD\",,,1.00,\"A\",0.00,,,473.00,,,,,,\n2015,5,15,\"OO\",\"5226\",\"BUF\",\"ORD\",17.00,2.00,0.00,\"\",0.00,98.00,78.00,473.00,,,,,,\n2015,5,6,\"OO\",\"5226\",\"BUF\",\"ORD\",4.00,-7.00,0.00,\"\",0.00,102.00,79.00,473.00,,,,,,\n2015,5,26,\"OO\",\"5226\",\"BUF\",\"ORD\",-3.00,-19.00,0.00,\"\",0.00,97.00,81.00,473.00,,,,,,\n2015,5,22,\"OO\",\"5226\",\"BUF\",\"ORD\",-8.00,-4.00,0.00,\"\",0.00,117.00,82.00,473.00,,,,,,\n2015,5,29,\"OO\",\"5226\",\"BUF\",\"ORD\",-1.00,-13.00,0.00,\"\",0.00,101.00,75.00,473.00,,,,,,\n2015,5,20,\"OO\",\"5226\",\"BUF\",\"ORD\",-1.00,-1.00,0.00,\"\",0.00,113.00,87.00,473.00,,,,,,\n2015,5,12,\"OO\",\"5226\",\"BUF\",\"ORD\",-3.00,-4.00,0.00,\"\",0.00,112.00,89.00,473.00,,,,,,\n2015,5,19,\"OO\",\"5226\",\"BUF\",\"ORD\",-12.00,-17.00,0.00,\"\",0.00,108.00,77.00,473.00,,,,,,\n2015,5,7,\"OO\",\"5226\",\"BUF\",\"ORD\",-10.00,-22.00,0.00,\"\",0.00,101.00,73.00,473.00,,,,,,\n2015,5,28,\"OO\",\"5226\",\"BUF\",\"ORD\",-11.00,-22.00,0.00,\"\",0.00,102.00,77.00,473.00,,,,,,\n2015,5,18,\"OO\",\"5226\",\"BUF\",\"ORD\",-4.00,-6.00,0.00,\"\",0.00,111.00,85.00,473.00,,,,,,\n2015,5,13,\"OO\",\"5226\",\"BUF\",\"ORD\",-2.00,-5.00,0.00,\"\",0.00,110.00,83.00,473.00,,,,,,\n2015,5,27,\"OO\",\"5226\",\"BUF\",\"ORD\",-10.00,-23.00,0.00,\"\",0.00,100.00,81.00,473.00,,,,,,\n2015,5,11,\"OO\",\"5226\",\"BUF\",\"ORD\",-11.00,-21.00,0.00,\"\",0.00,103.00,81.00,473.00,,,,,,\n2015,5,21,\"OO\",\"5226\",\"BUF\",\"ORD\",-10.00,-21.00,0.00,\"\",0.00,102.00,79.00,473.00,,,,,,\n2015,5,14,\"OO\",\"5226\",\"BUF\",\"ORD\",-5.00,-13.00,0.00,\"\",0.00,105.00,83.00,473.00,,,,,,\n2015,5,5,\"OO\",\"5578\",\"BUF\",\"ORD\",-3.00,4.00,0.00,\"\",0.00,111.00,84.00,473.00,,,,,,\n2015,5,2,\"OO\",\"5617\",\"LGA\",\"ORD\",-6.00,-40.00,0.00,\"\",0.00,130.00,108.00,733.00,,,,,,\n2015,5,23,\"OO\",\"6257\",\"LGA\",\"ORD\",-7.00,-22.00,0.00,\"\",0.00,151.00,117.00,733.00,,,,,,\n2015,5,9,\"OO\",\"6257\",\"LGA\",\"ORD\",-6.00,3.00,0.00,\"\",0.00,175.00,119.00,733.00,,,,,,\n2015,5,10,\"OO\",\"6257\",\"LGA\",\"ORD\",-7.00,0.00,0.00,\"\",0.00,173.00,114.00,733.00,,,,,,\n2015,5,31,\"OO\",\"6257\",\"LGA\",\"ORD\",-7.00,-21.00,0.00,\"\",0.00,152.00,120.00,733.00,,,,,,\n2015,5,30,\"OO\",\"6257\",\"LGA\",\"ORD\",7.00,12.00,0.00,\"\",0.00,171.00,124.00,733.00,,,,,,\n2015,5,16,\"OO\",\"6257\",\"LGA\",\"ORD\",45.00,36.00,0.00,\"\",0.00,157.00,115.00,733.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,17,\"OO\",\"5548\",\"ORD\",\"BUF\",-2.00,-11.00,0.00,\"\",0.00,85.00,67.00,473.00,,,,,,\n2015,5,2,\"OO\",\"5562\",\"ORD\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,132.00,103.00,733.00,,,,,,\n2015,5,30,\"OO\",\"5562\",\"ORD\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,127.00,111.00,733.00,,,,,,\n2015,5,9,\"OO\",\"5562\",\"ORD\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,139.00,105.00,733.00,,,,,,\n2015,5,5,\"OO\",\"6275\",\"ORD\",\"BUF\",-3.00,1.00,0.00,\"\",0.00,92.00,70.00,473.00,,,,,,\n2015,5,12,\"OO\",\"6229\",\"ORD\",\"BUF\",0.00,-9.00,0.00,\"\",0.00,87.00,62.00,473.00,,,,,,\n2015,5,15,\"OO\",\"6229\",\"ORD\",\"BUF\",-1.00,-11.00,0.00,\"\",0.00,86.00,66.00,473.00,,,,,,\n2015,5,29,\"OO\",\"6229\",\"ORD\",\"BUF\",-5.00,17.00,0.00,\"\",0.00,118.00,67.00,473.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,7,\"OO\",\"6229\",\"ORD\",\"BUF\",0.00,-2.00,0.00,\"\",0.00,94.00,73.00,473.00,,,,,,\n2015,5,11,\"OO\",\"6229\",\"ORD\",\"BUF\",7.00,-1.00,0.00,\"\",0.00,88.00,67.00,473.00,,,,,,\n2015,5,8,\"OO\",\"6229\",\"ORD\",\"BUF\",59.00,47.00,0.00,\"\",0.00,84.00,65.00,473.00,47.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"OO\",\"6229\",\"ORD\",\"BUF\",2.00,-8.00,0.00,\"\",0.00,86.00,67.00,473.00,,,,,,\n2015,5,13,\"OO\",\"6229\",\"ORD\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,86.00,67.00,473.00,,,,,,\n2015,5,22,\"OO\",\"6229\",\"ORD\",\"BUF\",-5.00,-4.00,0.00,\"\",0.00,97.00,68.00,473.00,,,,,,\n2015,5,2,\"OO\",\"6482\",\"LGA\",\"ORD\",-5.00,-28.00,0.00,\"\",0.00,141.00,107.00,733.00,,,,,,\n2015,5,6,\"OO\",\"6520\",\"ORD\",\"BUF\",-1.00,-3.00,0.00,\"\",0.00,94.00,68.00,473.00,,,,,,\n2015,5,31,\"UA\",\"345\",\"IAH\",\"LGA\",,,1.00,\"B\",0.00,,,1416.00,,,,,,\n2015,5,31,\"UA\",\"347\",\"DEN\",\"LGA\",2.00,-11.00,0.00,\"\",0.00,212.00,196.00,1620.00,,,,,,\n2015,5,31,\"UA\",\"347\",\"LGA\",\"IAH\",-3.00,,1.00,\"B\",0.00,,,1416.00,,,,,,\n2015,5,31,\"UA\",\"368\",\"BUF\",\"ORD\",-3.00,2.00,0.00,\"\",0.00,109.00,84.00,473.00,,,,,,\n2015,5,31,\"UA\",\"381\",\"LGA\",\"ORD\",-2.00,-9.00,0.00,\"\",0.00,151.00,118.00,733.00,,,,,,\n2015,5,31,\"UA\",\"415\",\"JFK\",\"SFO\",-5.00,-29.00,0.00,\"\",0.00,360.00,324.00,2586.00,,,,,,\n2015,5,31,\"UA\",\"442\",\"IAH\",\"LGA\",6.00,-8.00,0.00,\"\",0.00,199.00,178.00,1416.00,,,,,,\n2015,5,31,\"UA\",\"443\",\"JFK\",\"LAX\",-3.00,-32.00,0.00,\"\",0.00,347.00,315.00,2475.00,,,,,,\n2015,5,31,\"UA\",\"445\",\"JFK\",\"LAX\",250.00,244.00,0.00,\"\",0.00,365.00,325.00,2475.00,0.00,182.00,0.00,0.00,62.00,\n2015,5,31,\"UA\",\"462\",\"LGA\",\"IAH\",-1.00,-27.00,0.00,\"\",0.00,218.00,184.00,1416.00,,,,,,\n2015,5,31,\"UA\",\"478\",\"LGA\",\"ORD\",-5.00,-21.00,0.00,\"\",0.00,141.00,116.00,733.00,,,,,,\n2015,5,31,\"UA\",\"483\",\"BUF\",\"ORD\",84.00,82.00,0.00,\"\",0.00,103.00,80.00,473.00,18.00,0.00,0.00,0.00,64.00,\n2015,5,31,\"UA\",\"495\",\"DEN\",\"LGA\",19.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,31,\"UA\",\"502\",\"SFO\",\"JFK\",28.00,24.00,0.00,\"\",0.00,333.00,308.00,2586.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"UA\",\"510\",\"JFK\",\"SFO\",,,1.00,\"A\",0.00,,,2586.00,,,,,,\n2015,5,31,\"UA\",\"512\",\"JFK\",\"SFO\",39.00,40.00,0.00,\"\",0.00,402.00,332.00,2586.00,0.00,13.00,1.00,0.00,26.00,\n2015,5,31,\"UA\",\"514\",\"JFK\",\"SFO\",127.00,132.00,0.00,\"\",0.00,406.00,341.00,2586.00,0.00,127.00,5.00,0.00,0.00,\n2015,5,31,\"UA\",\"533\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,31,\"UA\",\"535\",\"JFK\",\"LAX\",0.00,1.00,0.00,\"\",0.00,375.00,315.00,2475.00,,,,,,\n2015,5,31,\"UA\",\"559\",\"ORD\",\"ALB\",0.00,42.00,0.00,\"\",0.00,161.00,89.00,723.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,31,\"UA\",\"617\",\"ORD\",\"LGA\",62.00,90.00,0.00,\"\",0.00,164.00,121.00,733.00,0.00,0.00,88.00,0.00,2.00,\n2015,5,31,\"UA\",\"637\",\"SFO\",\"JFK\",200.00,224.00,0.00,\"\",0.00,369.00,303.00,2586.00,0.00,0.00,224.00,0.00,0.00,\n2015,5,31,\"UA\",\"656\",\"ORD\",\"BUF\",84.00,71.00,0.00,\"\",0.00,79.00,59.00,473.00,16.00,0.00,0.00,0.00,55.00,\n2015,5,31,\"UA\",\"667\",\"LGA\",\"ORD\",-6.00,-9.00,0.00,\"\",0.00,150.00,130.00,733.00,,,,,,\n2015,5,31,\"UA\",\"681\",\"LGA\",\"ORD\",-3.00,-14.00,0.00,\"\",0.00,148.00,119.00,733.00,,,,,,\n2015,5,31,\"UA\",\"683\",\"ALB\",\"ORD\",55.00,44.00,0.00,\"\",0.00,129.00,107.00,723.00,0.00,0.00,14.00,0.00,30.00,\n2015,5,31,\"UA\",\"686\",\"ORD\",\"LGA\",370.00,384.00,0.00,\"\",0.00,145.00,106.00,733.00,0.00,0.00,329.00,0.00,55.00,\n2015,5,31,\"UA\",\"694\",\"ORD\",\"LGA\",,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,31,\"UA\",\"695\",\"DEN\",\"LGA\",45.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,31,\"UA\",\"695\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,31,\"UA\",\"703\",\"JFK\",\"LAX\",-2.00,-33.00,0.00,\"\",0.00,329.00,307.00,2475.00,,,,,,\n2015,5,31,\"UA\",\"704\",\"SFO\",\"JFK\",157.00,163.00,0.00,\"\",0.00,343.00,316.00,2586.00,157.00,0.00,6.00,0.00,0.00,\n2015,5,31,\"UA\",\"706\",\"LGA\",\"IAH\",2.00,-17.00,0.00,\"\",0.00,221.00,195.00,1416.00,,,,,,\n2015,5,31,\"UA\",\"741\",\"LGA\",\"ORD\",379.00,351.00,0.00,\"\",0.00,138.00,109.00,733.00,0.00,4.00,0.00,0.00,347.00,\n2015,5,31,\"UA\",\"758\",\"SFO\",\"JFK\",-11.00,11.00,0.00,\"\",0.00,367.00,342.00,2586.00,,,,,,\n2015,5,31,\"UA\",\"760\",\"SFO\",\"JFK\",219.00,221.00,0.00,\"\",0.00,347.00,326.00,2586.00,0.00,0.00,221.00,0.00,0.00,\n2015,5,31,\"UA\",\"765\",\"LGA\",\"ORD\",-3.00,126.00,0.00,\"\",0.00,289.00,118.00,733.00,0.00,0.00,126.00,0.00,0.00,\n2015,5,31,\"UA\",\"766\",\"JFK\",\"SFO\",-9.00,-32.00,0.00,\"\",0.00,357.00,330.00,2586.00,,,,,,\n2015,5,31,\"UA\",\"779\",\"LAX\",\"JFK\",66.00,69.00,0.00,\"\",0.00,338.00,311.00,2475.00,0.00,0.00,69.00,0.00,0.00,\n2015,5,31,\"UA\",\"791\",\"LGA\",\"IAH\",193.00,193.00,0.00,\"\",0.00,244.00,190.00,1416.00,0.00,7.00,0.00,0.00,186.00,\n2015,5,31,\"UA\",\"791\",\"ORD\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,137.00,98.00,733.00,,,,,,\n2015,5,31,\"UA\",\"824\",\"SFO\",\"JFK\",21.00,15.00,0.00,\"\",0.00,331.00,302.00,2586.00,7.00,0.00,0.00,0.00,8.00,\n2015,5,31,\"UA\",\"830\",\"ORD\",\"BUF\",165.00,139.00,0.00,\"\",0.00,68.00,58.00,473.00,33.00,0.00,0.00,0.00,106.00,\n2015,5,31,\"UA\",\"841\",\"JFK\",\"LAX\",-2.00,1.00,0.00,\"\",0.00,377.00,319.00,2475.00,,,,,,\n2015,5,31,\"UA\",\"867\",\"LAX\",\"JFK\",207.00,240.00,0.00,\"\",0.00,368.00,336.00,2475.00,0.00,0.00,240.00,0.00,0.00,\n2015,5,31,\"UA\",\"898\",\"SFO\",\"JFK\",3.00,-1.00,0.00,\"\",0.00,341.00,312.00,2586.00,,,,,,\n2015,5,31,\"UA\",\"910\",\"ORD\",\"LGA\",15.00,1.00,0.00,\"\",0.00,116.00,96.00,733.00,,,,,,\n2015,5,31,\"UA\",\"912\",\"LAX\",\"JFK\",-7.00,-12.00,0.00,\"\",0.00,320.00,300.00,2475.00,,,,,,\n2015,5,31,\"UA\",\"980\",\"IAH\",\"LGA\",,,1.00,\"C\",0.00,,,1416.00,,,,,,\n2015,5,31,\"UA\",\"1001\",\"IAH\",\"LGA\",13.00,,0.00,\"\",1.00,,,1416.00,,,,,,\n2015,5,31,\"UA\",\"1074\",\"ORD\",\"LGA\",228.00,219.00,0.00,\"\",0.00,128.00,96.00,733.00,0.00,0.00,202.00,0.00,17.00,\n2015,5,31,\"UA\",\"1085\",\"LGA\",\"DEN\",,,1.00,\"B\",0.00,,,1620.00,,,,,,\n2015,5,31,\"UA\",\"1085\",\"ORD\",\"LGA\",11.00,,0.00,\"\",1.00,,,733.00,,,,,,\n2015,5,31,\"UA\",\"1090\",\"DEN\",\"LGA\",114.00,127.00,0.00,\"\",0.00,252.00,215.00,1620.00,0.00,0.00,127.00,0.00,0.00,\n2015,5,31,\"UA\",\"1123\",\"LGA\",\"DEN\",-1.00,-27.00,0.00,\"\",0.00,238.00,217.00,1620.00,,,,,,\n2015,5,31,\"UA\",\"1145\",\"LGA\",\"ORD\",6.00,-7.00,0.00,\"\",0.00,143.00,109.00,733.00,,,,,,\n2015,5,31,\"UA\",\"1239\",\"ORD\",\"LGA\",38.00,43.00,0.00,\"\",0.00,140.00,110.00,733.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,31,\"UA\",\"1248\",\"ORD\",\"ALB\",81.00,67.00,0.00,\"\",0.00,106.00,89.00,723.00,67.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"UA\",\"1285\",\"LGA\",\"DEN\",12.00,-4.00,0.00,\"\",0.00,244.00,214.00,1620.00,,,,,,\n2015,5,31,\"UA\",\"1299\",\"IAH\",\"LGA\",114.00,106.00,0.00,\"\",0.00,207.00,189.00,1416.00,0.00,0.00,106.00,0.00,0.00,\n2015,5,31,\"UA\",\"1471\",\"ORD\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,120.00,98.00,733.00,,,,,,\n2015,5,31,\"UA\",\"1483\",\"DEN\",\"LGA\",108.00,100.00,0.00,\"\",0.00,227.00,198.00,1620.00,0.00,0.00,86.00,0.00,14.00,\n2015,5,29,\"UA\",\"758\",\"SFO\",\"JFK\",-5.00,6.00,0.00,\"\",0.00,356.00,311.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"760\",\"SFO\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,324.00,300.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"765\",\"LGA\",\"ORD\",30.00,25.00,0.00,\"\",0.00,155.00,109.00,733.00,0.00,0.00,9.00,0.00,16.00,\n2015,5,30,\"UA\",\"1285\",\"LGA\",\"DEN\",-5.00,-22.00,0.00,\"\",0.00,243.00,222.00,1620.00,,,,,,\n2015,5,30,\"UA\",\"1299\",\"IAH\",\"LGA\",18.00,25.00,0.00,\"\",0.00,222.00,188.00,1416.00,0.00,0.00,7.00,0.00,18.00,\n2015,5,30,\"UA\",\"1469\",\"DEN\",\"LGA\",15.00,1.00,0.00,\"\",0.00,213.00,196.00,1620.00,,,,,,\n2015,5,30,\"UA\",\"1582\",\"ORD\",\"BUF\",-1.00,-10.00,0.00,\"\",0.00,84.00,65.00,473.00,,,,,,\n2015,5,30,\"UA\",\"1588\",\"LGA\",\"ORD\",-2.00,-27.00,0.00,\"\",0.00,128.00,109.00,733.00,,,,,,\n2015,5,30,\"UA\",\"1638\",\"ALB\",\"ORD\",-7.00,-6.00,0.00,\"\",0.00,142.00,109.00,723.00,,,,,,\n2015,5,30,\"UA\",\"1687\",\"LGA\",\"IAH\",1.00,-34.00,0.00,\"\",0.00,196.00,181.00,1416.00,,,,,,\n2015,5,30,\"UA\",\"1744\",\"LGA\",\"IAH\",-2.00,35.00,0.00,\"\",0.00,284.00,246.00,1416.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,30,\"UA\",\"1906\",\"LGA\",\"DEN\",-1.00,-42.00,0.00,\"\",0.00,227.00,204.00,1620.00,,,,,,\n2015,5,30,\"UA\",\"2048\",\"ORD\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,130.00,106.00,733.00,,,,,,\n2015,5,29,\"UA\",\"212\",\"LAX\",\"JFK\",-6.00,-21.00,0.00,\"\",0.00,313.00,292.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"233\",\"LAX\",\"JFK\",-8.00,-12.00,0.00,\"\",0.00,321.00,300.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"244\",\"ORD\",\"LGA\",37.00,25.00,0.00,\"\",0.00,124.00,103.00,733.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"UA\",\"257\",\"JFK\",\"SFO\",-4.00,-29.00,0.00,\"\",0.00,376.00,351.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"275\",\"LAX\",\"JFK\",-3.00,-27.00,0.00,\"\",0.00,311.00,293.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"285\",\"IAH\",\"LGA\",-3.00,11.00,0.00,\"\",0.00,232.00,188.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"303\",\"DEN\",\"LGA\",-6.00,-35.00,0.00,\"\",0.00,211.00,190.00,1620.00,,,,,,\n2015,5,29,\"UA\",\"303\",\"LGA\",\"IAH\",52.00,17.00,0.00,\"\",0.00,206.00,186.00,1416.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,29,\"UA\",\"343\",\"LGA\",\"IAH\",-10.00,-30.00,0.00,\"\",0.00,220.00,182.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"345\",\"LGA\",\"ORD\",-3.00,2.00,0.00,\"\",0.00,166.00,117.00,733.00,,,,,,\n2015,5,29,\"UA\",\"368\",\"BUF\",\"ORD\",0.00,-13.00,0.00,\"\",0.00,91.00,77.00,473.00,,,,,,\n2015,5,29,\"UA\",\"406\",\"DEN\",\"LGA\",76.00,49.00,0.00,\"\",0.00,210.00,193.00,1620.00,29.00,0.00,0.00,0.00,20.00,\n2015,5,29,\"UA\",\"415\",\"JFK\",\"SFO\",-4.00,-5.00,0.00,\"\",0.00,383.00,347.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"441\",\"JFK\",\"LAX\",-6.00,-26.00,0.00,\"\",0.00,356.00,329.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"442\",\"IAH\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,198.00,177.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"443\",\"JFK\",\"LAX\",-2.00,-1.00,0.00,\"\",0.00,377.00,340.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"445\",\"JFK\",\"LAX\",0.00,-2.00,0.00,\"\",0.00,369.00,321.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"456\",\"IAH\",\"LGA\",13.00,4.00,0.00,\"\",0.00,205.00,182.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"462\",\"LGA\",\"IAH\",4.00,-18.00,0.00,\"\",0.00,222.00,181.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"462\",\"ORD\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,117.00,98.00,733.00,,,,,,\n2015,5,29,\"UA\",\"463\",\"LGA\",\"ORD\",-5.00,-15.00,0.00,\"\",0.00,147.00,110.00,733.00,,,,,,\n2015,5,29,\"UA\",\"483\",\"BUF\",\"ORD\",0.00,8.00,0.00,\"\",0.00,113.00,75.00,473.00,,,,,,\n2015,5,29,\"UA\",\"502\",\"SFO\",\"JFK\",8.00,0.00,0.00,\"\",0.00,329.00,304.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"509\",\"ORD\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,134.00,100.00,733.00,,,,,,\n2015,5,29,\"UA\",\"510\",\"JFK\",\"SFO\",4.00,-28.00,0.00,\"\",0.00,369.00,347.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"512\",\"JFK\",\"SFO\",-1.00,11.00,0.00,\"\",0.00,413.00,373.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"514\",\"JFK\",\"SFO\",-4.00,-24.00,0.00,\"\",0.00,381.00,350.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"535\",\"JFK\",\"LAX\",5.00,-7.00,0.00,\"\",0.00,362.00,324.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"541\",\"JFK\",\"SFO\",2.00,-19.00,0.00,\"\",0.00,369.00,336.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"561\",\"LGA\",\"DEN\",-2.00,-27.00,0.00,\"\",0.00,241.00,220.00,1620.00,,,,,,\n2015,5,29,\"UA\",\"622\",\"LGA\",\"ORD\",-5.00,0.00,0.00,\"\",0.00,163.00,112.00,733.00,,,,,,\n2015,5,29,\"UA\",\"637\",\"SFO\",\"JFK\",-2.00,-22.00,0.00,\"\",0.00,325.00,305.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"656\",\"ORD\",\"BUF\",1.00,16.00,0.00,\"\",0.00,107.00,61.00,473.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,29,\"UA\",\"672\",\"ORD\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,115.00,97.00,733.00,,,,,,\n2015,5,31,\"UA\",\"212\",\"LAX\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,335.00,312.00,2475.00,,,,,,\n2015,5,31,\"UA\",\"233\",\"LAX\",\"JFK\",-5.00,16.00,0.00,\"\",0.00,346.00,331.00,2475.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,31,\"UA\",\"248\",\"LGA\",\"ORD\",-2.00,-5.00,0.00,\"\",0.00,155.00,124.00,733.00,,,,,,\n2015,5,31,\"UA\",\"257\",\"JFK\",\"SFO\",-4.00,-8.00,0.00,\"\",0.00,397.00,337.00,2586.00,,,,,,\n2015,5,31,\"UA\",\"275\",\"LAX\",\"JFK\",17.00,31.00,0.00,\"\",0.00,349.00,328.00,2475.00,17.00,0.00,14.00,0.00,0.00,\n2015,5,31,\"UA\",\"296\",\"IAH\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,205.00,176.00,1416.00,,,,,,\n2015,5,31,\"UA\",\"296\",\"LGA\",\"DEN\",-5.00,88.00,0.00,\"\",0.00,365.00,229.00,1620.00,0.00,0.00,88.00,0.00,0.00,\n2015,5,31,\"UA\",\"1638\",\"ALB\",\"ORD\",-3.00,0.00,0.00,\"\",0.00,144.00,117.00,723.00,,,,,,\n2015,5,31,\"UA\",\"1671\",\"IAH\",\"LGA\",259.00,240.00,0.00,\"\",0.00,202.00,178.00,1416.00,0.00,0.00,240.00,0.00,0.00,\n2015,5,31,\"UA\",\"1693\",\"DEN\",\"LGA\",94.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,31,\"UA\",\"1693\",\"LGA\",\"IAH\",376.00,359.00,0.00,\"\",0.00,226.00,190.00,1416.00,0.00,34.00,0.00,0.00,325.00,\n2015,5,31,\"UA\",\"1751\",\"LGA\",\"ORD\",355.00,344.00,0.00,\"\",0.00,154.00,130.00,733.00,0.00,71.00,0.00,0.00,273.00,\n2015,5,31,\"UA\",\"1764\",\"ORD\",\"LGA\",73.00,98.00,0.00,\"\",0.00,162.00,125.00,733.00,0.00,0.00,98.00,0.00,0.00,\n2015,5,31,\"UA\",\"1906\",\"LGA\",\"DEN\",-2.00,-4.00,0.00,\"\",0.00,266.00,225.00,1620.00,,,,,,\n2015,5,30,\"UA\",\"12\",\"BUF\",\"ORD\",8.00,7.00,0.00,\"\",0.00,105.00,81.00,473.00,,,,,,\n2015,5,30,\"UA\",\"235\",\"LGA\",\"DEN\",-3.00,-36.00,0.00,\"\",0.00,229.00,210.00,1620.00,,,,,,\n2015,5,30,\"UA\",\"255\",\"LGA\",\"DEN\",181.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,30,\"UA\",\"257\",\"JFK\",\"SFO\",2.00,-40.00,0.00,\"\",0.00,359.00,326.00,2586.00,,,,,,\n2015,5,30,\"UA\",\"275\",\"LAX\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,332.00,310.00,2475.00,,,,,,\n2015,5,30,\"UA\",\"303\",\"DEN\",\"LGA\",-6.00,-29.00,0.00,\"\",0.00,217.00,200.00,1620.00,,,,,,\n2015,5,30,\"UA\",\"345\",\"IAH\",\"LGA\",-2.00,0.00,0.00,\"\",0.00,219.00,189.00,1416.00,,,,,,\n2015,5,30,\"UA\",\"415\",\"JFK\",\"SFO\",-4.00,-32.00,0.00,\"\",0.00,356.00,330.00,2586.00,,,,,,\n2015,5,30,\"UA\",\"441\",\"JFK\",\"LAX\",1.00,-18.00,0.00,\"\",0.00,357.00,319.00,2475.00,,,,,,\n2015,5,30,\"UA\",\"443\",\"JFK\",\"LAX\",-3.00,-26.00,0.00,\"\",0.00,353.00,315.00,2475.00,,,,,,\n2015,5,30,\"UA\",\"451\",\"IAH\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,200.00,176.00,1416.00,,,,,,\n2015,5,30,\"UA\",\"463\",\"LGA\",\"ORD\",-1.00,-7.00,0.00,\"\",0.00,151.00,111.00,733.00,,,,,,\n2015,5,30,\"UA\",\"483\",\"BUF\",\"ORD\",-10.00,1.00,0.00,\"\",0.00,115.00,76.00,473.00,,,,,,\n2015,5,30,\"UA\",\"510\",\"JFK\",\"SFO\",97.00,98.00,0.00,\"\",0.00,402.00,382.00,2586.00,0.00,0.00,98.00,0.00,0.00,\n2015,5,30,\"UA\",\"512\",\"JFK\",\"SFO\",0.00,24.00,0.00,\"\",0.00,425.00,391.00,2586.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,30,\"UA\",\"535\",\"JFK\",\"LAX\",-2.00,15.00,0.00,\"\",0.00,391.00,350.00,2475.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,30,\"UA\",\"541\",\"JFK\",\"SFO\",-3.00,-25.00,0.00,\"\",0.00,368.00,338.00,2586.00,,,,,,\n2015,5,30,\"UA\",\"556\",\"DEN\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,219.00,201.00,1620.00,,,,,,\n2015,5,30,\"UA\",\"637\",\"SFO\",\"JFK\",11.00,-7.00,0.00,\"\",0.00,327.00,307.00,2586.00,,,,,,\n2015,5,30,\"UA\",\"667\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,30,\"UA\",\"681\",\"LGA\",\"ORD\",,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,30,\"UA\",\"703\",\"JFK\",\"LAX\",-2.00,-24.00,0.00,\"\",0.00,338.00,314.00,2475.00,,,,,,\n2015,5,30,\"UA\",\"706\",\"LGA\",\"IAH\",-8.00,-37.00,0.00,\"\",0.00,211.00,188.00,1416.00,,,,,,\n2015,5,30,\"UA\",\"746\",\"LGA\",\"IAH\",68.00,,0.00,\"\",1.00,,,1416.00,,,,,,\n2015,5,30,\"UA\",\"758\",\"SFO\",\"JFK\",0.00,-24.00,0.00,\"\",0.00,321.00,294.00,2586.00,,,,,,\n2015,5,30,\"UA\",\"760\",\"SFO\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,326.00,307.00,2586.00,,,,,,\n2015,5,30,\"UA\",\"765\",\"LGA\",\"ORD\",-1.00,-8.00,0.00,\"\",0.00,153.00,117.00,733.00,,,,,,\n2015,5,30,\"UA\",\"779\",\"LAX\",\"JFK\",23.00,27.00,0.00,\"\",0.00,339.00,315.00,2475.00,23.00,0.00,4.00,0.00,0.00,\n2015,5,30,\"UA\",\"791\",\"ORD\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,116.00,103.00,733.00,,,,,,\n2015,5,30,\"UA\",\"824\",\"SFO\",\"JFK\",12.00,10.00,0.00,\"\",0.00,335.00,317.00,2586.00,,,,,,\n2015,5,30,\"UA\",\"825\",\"IAH\",\"LGA\",17.00,39.00,0.00,\"\",0.00,234.00,193.00,1416.00,1.00,0.00,22.00,0.00,16.00,\n2015,5,30,\"UA\",\"830\",\"ORD\",\"BUF\",-9.00,-10.00,0.00,\"\",0.00,93.00,60.00,473.00,,,,,,\n2015,5,30,\"UA\",\"841\",\"JFK\",\"LAX\",-2.00,-28.00,0.00,\"\",0.00,348.00,314.00,2475.00,,,,,,\n2015,5,30,\"UA\",\"867\",\"LAX\",\"JFK\",0.00,18.00,0.00,\"\",0.00,353.00,329.00,2475.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,30,\"UA\",\"912\",\"LAX\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,315.00,292.00,2475.00,,,,,,\n2015,5,30,\"UA\",\"1138\",\"DEN\",\"LGA\",30.00,11.00,0.00,\"\",0.00,220.00,199.00,1620.00,,,,,,\n2015,5,30,\"UA\",\"1165\",\"LGA\",\"ORD\",-4.00,-8.00,0.00,\"\",0.00,151.00,108.00,733.00,,,,,,\n2015,5,30,\"UA\",\"1226\",\"LGA\",\"IAH\",-3.00,-17.00,0.00,\"\",0.00,232.00,188.00,1416.00,,,,,,\n2015,5,30,\"UA\",\"1239\",\"ORD\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,125.00,103.00,733.00,,,,,,\n2015,5,30,\"UA\",\"1248\",\"ORD\",\"ALB\",4.00,-4.00,0.00,\"\",0.00,112.00,94.00,723.00,,,,,,\n2015,5,28,\"UA\",\"1283\",\"ALB\",\"ORD\",,,1.00,\"A\",0.00,,,723.00,,,,,,\n2015,5,29,\"UA\",\"766\",\"JFK\",\"SFO\",-4.00,-22.00,0.00,\"\",0.00,362.00,332.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"779\",\"LAX\",\"JFK\",6.00,-8.00,0.00,\"\",0.00,321.00,303.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"788\",\"DEN\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,215.00,196.00,1620.00,,,,,,\n2015,5,29,\"UA\",\"791\",\"LGA\",\"IAH\",-4.00,-20.00,0.00,\"\",0.00,228.00,185.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"791\",\"ORD\",\"LGA\",-5.00,28.00,0.00,\"\",0.00,164.00,101.00,733.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,29,\"UA\",\"824\",\"SFO\",\"JFK\",46.00,41.00,0.00,\"\",0.00,332.00,307.00,2586.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"UA\",\"830\",\"ORD\",\"BUF\",13.00,8.00,0.00,\"\",0.00,89.00,66.00,473.00,,,,,,\n2015,5,29,\"UA\",\"841\",\"JFK\",\"LAX\",-1.00,-11.00,0.00,\"\",0.00,364.00,327.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"867\",\"LAX\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,327.00,299.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"898\",\"SFO\",\"JFK\",4.00,-18.00,0.00,\"\",0.00,323.00,303.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"910\",\"ORD\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,113.00,95.00,733.00,,,,,,\n2015,5,29,\"UA\",\"912\",\"LAX\",\"JFK\",4.00,-5.00,0.00,\"\",0.00,316.00,297.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"1042\",\"LGA\",\"DEN\",4.00,-6.00,0.00,\"\",0.00,258.00,223.00,1620.00,,,,,,\n2015,5,29,\"UA\",\"1045\",\"ORD\",\"LGA\",24.00,29.00,0.00,\"\",0.00,140.00,101.00,733.00,24.00,0.00,5.00,0.00,0.00,\n2015,5,29,\"UA\",\"1059\",\"DEN\",\"LGA\",4.00,-19.00,0.00,\"\",0.00,212.00,193.00,1620.00,,,,,,\n2015,5,29,\"UA\",\"1062\",\"IAH\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,215.00,189.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"1062\",\"LGA\",\"ORD\",29.00,11.00,0.00,\"\",0.00,147.00,109.00,733.00,,,,,,\n2015,5,29,\"UA\",\"1074\",\"ORD\",\"LGA\",64.00,84.00,0.00,\"\",0.00,157.00,103.00,733.00,64.00,0.00,20.00,0.00,0.00,\n2015,5,29,\"UA\",\"1085\",\"ORD\",\"LGA\",1.00,29.00,0.00,\"\",0.00,161.00,106.00,733.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,29,\"UA\",\"1123\",\"LGA\",\"DEN\",16.00,5.00,0.00,\"\",0.00,253.00,213.00,1620.00,,,,,,\n2015,5,29,\"UA\",\"1190\",\"ORD\",\"ALB\",-2.00,2.00,0.00,\"\",0.00,124.00,89.00,723.00,,,,,,\n2015,5,29,\"UA\",\"1194\",\"IAH\",\"LGA\",4.00,-2.00,0.00,\"\",0.00,212.00,193.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"1214\",\"ORD\",\"LGA\",5.00,-1.00,0.00,\"\",0.00,131.00,100.00,733.00,,,,,,\n2015,5,29,\"UA\",\"1218\",\"LGA\",\"ORD\",20.00,45.00,0.00,\"\",0.00,183.00,106.00,733.00,0.00,0.00,40.00,0.00,5.00,\n2015,5,29,\"UA\",\"1248\",\"ORD\",\"ALB\",-7.00,-8.00,0.00,\"\",0.00,119.00,90.00,723.00,,,,,,\n2015,5,29,\"UA\",\"1283\",\"ALB\",\"ORD\",5.00,-11.00,0.00,\"\",0.00,125.00,109.00,723.00,,,,,,\n2015,5,29,\"UA\",\"1411\",\"LGA\",\"ORD\",4.00,2.00,0.00,\"\",0.00,157.00,110.00,733.00,,,,,,\n2015,5,29,\"UA\",\"1456\",\"LGA\",\"IAH\",193.00,172.00,0.00,\"\",0.00,221.00,186.00,1416.00,172.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"UA\",\"1469\",\"DEN\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,213.00,188.00,1620.00,,,,,,\n2015,5,29,\"UA\",\"1588\",\"LGA\",\"ORD\",5.00,-11.00,0.00,\"\",0.00,137.00,112.00,733.00,,,,,,\n2015,5,29,\"UA\",\"1638\",\"ALB\",\"ORD\",-1.00,-9.00,0.00,\"\",0.00,133.00,106.00,723.00,,,,,,\n2015,5,29,\"UA\",\"1671\",\"IAH\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,207.00,190.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"1686\",\"LGA\",\"DEN\",2.00,-21.00,0.00,\"\",0.00,248.00,226.00,1620.00,,,,,,\n2015,5,29,\"UA\",\"1687\",\"LGA\",\"IAH\",-5.00,0.00,0.00,\"\",0.00,236.00,212.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"1693\",\"DEN\",\"LGA\",-4.00,-24.00,0.00,\"\",0.00,215.00,195.00,1620.00,,,,,,\n2015,5,29,\"UA\",\"1714\",\"LGA\",\"ORD\",6.00,-1.00,0.00,\"\",0.00,147.00,110.00,733.00,,,,,,\n2015,5,29,\"UA\",\"1719\",\"LGA\",\"DEN\",3.00,7.00,0.00,\"\",0.00,264.00,216.00,1620.00,,,,,,\n2015,5,29,\"UA\",\"1744\",\"LGA\",\"IAH\",-3.00,-40.00,0.00,\"\",0.00,210.00,190.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"1744\",\"ORD\",\"LGA\",12.00,-4.00,0.00,\"\",0.00,117.00,95.00,733.00,,,,,,\n2015,5,29,\"UA\",\"1906\",\"IAH\",\"LGA\",-4.00,6.00,0.00,\"\",0.00,219.00,190.00,1416.00,,,,,,\n2015,5,29,\"UA\",\"1906\",\"LGA\",\"DEN\",8.00,22.00,0.00,\"\",0.00,288.00,251.00,1620.00,8.00,0.00,14.00,0.00,0.00,\n2015,5,27,\"UA\",\"672\",\"ORD\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,118.00,97.00,733.00,,,,,,\n2015,5,27,\"UA\",\"692\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,27,\"UA\",\"693\",\"IAH\",\"LGA\",,,1.00,\"B\",0.00,,,1416.00,,,,,,\n2015,5,27,\"UA\",\"693\",\"LGA\",\"ORD\",,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,27,\"UA\",\"694\",\"ORD\",\"LGA\",50.00,39.00,0.00,\"\",0.00,120.00,95.00,733.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,27,\"UA\",\"698\",\"ORD\",\"LGA\",28.00,19.00,0.00,\"\",0.00,125.00,103.00,733.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"UA\",\"699\",\"LGA\",\"ORD\",109.00,98.00,0.00,\"\",0.00,151.00,110.00,733.00,0.00,36.00,0.00,0.00,62.00,\n2015,5,27,\"UA\",\"703\",\"JFK\",\"LAX\",-5.00,-15.00,0.00,\"\",0.00,350.00,326.00,2475.00,,,,,,\n2015,5,27,\"UA\",\"704\",\"SFO\",\"JFK\",46.00,42.00,0.00,\"\",0.00,333.00,311.00,2586.00,11.00,0.00,0.00,0.00,31.00,\n2015,5,27,\"UA\",\"711\",\"LGA\",\"ORD\",-4.00,-19.00,0.00,\"\",0.00,140.00,113.00,733.00,,,,,,\n2015,5,27,\"UA\",\"746\",\"LGA\",\"IAH\",1.00,10.00,0.00,\"\",0.00,251.00,214.00,1416.00,,,,,,\n2015,5,27,\"UA\",\"758\",\"SFO\",\"JFK\",-9.00,-23.00,0.00,\"\",0.00,331.00,308.00,2586.00,,,,,,\n2015,5,27,\"UA\",\"760\",\"SFO\",\"JFK\",324.00,314.00,0.00,\"\",0.00,335.00,302.00,2586.00,0.00,0.00,314.00,0.00,0.00,\n2015,5,27,\"UA\",\"765\",\"LGA\",\"ORD\",58.00,119.00,0.00,\"\",0.00,221.00,127.00,733.00,0.00,14.00,61.00,0.00,44.00,\n2015,5,27,\"UA\",\"766\",\"JFK\",\"SFO\",-8.00,-14.00,0.00,\"\",0.00,374.00,344.00,2586.00,,,,,,\n2015,5,27,\"UA\",\"779\",\"LAX\",\"JFK\",294.00,276.00,0.00,\"\",0.00,317.00,299.00,2475.00,0.00,0.00,276.00,0.00,0.00,\n2015,5,27,\"UA\",\"791\",\"LGA\",\"IAH\",5.00,14.00,0.00,\"\",0.00,253.00,200.00,1416.00,,,,,,\n2015,5,27,\"UA\",\"791\",\"ORD\",\"LGA\",59.00,53.00,0.00,\"\",0.00,125.00,101.00,733.00,13.00,0.00,0.00,0.00,40.00,\n2015,5,27,\"UA\",\"824\",\"SFO\",\"JFK\",44.00,34.00,0.00,\"\",0.00,327.00,301.00,2586.00,8.00,0.00,0.00,0.00,26.00,\n2015,5,27,\"UA\",\"830\",\"ORD\",\"BUF\",101.00,87.00,0.00,\"\",0.00,80.00,60.00,473.00,30.00,0.00,0.00,0.00,57.00,\n2015,5,27,\"UA\",\"841\",\"JFK\",\"LAX\",1.00,28.00,0.00,\"\",0.00,401.00,363.00,2475.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,27,\"UA\",\"867\",\"LAX\",\"JFK\",179.00,175.00,0.00,\"\",0.00,331.00,296.00,2475.00,0.00,0.00,175.00,0.00,0.00,\n2015,5,27,\"UA\",\"898\",\"SFO\",\"JFK\",-2.00,-2.00,0.00,\"\",0.00,345.00,318.00,2586.00,,,,,,\n2015,5,27,\"UA\",\"912\",\"LAX\",\"JFK\",90.00,93.00,0.00,\"\",0.00,328.00,296.00,2475.00,0.00,0.00,12.00,0.00,81.00,\n2015,5,27,\"UA\",\"1042\",\"LGA\",\"DEN\",29.00,79.00,0.00,\"\",0.00,318.00,237.00,1620.00,0.00,10.00,50.00,0.00,19.00,\n2015,5,27,\"UA\",\"1045\",\"ORD\",\"LGA\",211.00,192.00,0.00,\"\",0.00,118.00,99.00,733.00,0.00,0.00,187.00,0.00,5.00,\n2015,5,27,\"UA\",\"1059\",\"DEN\",\"LGA\",29.00,49.00,0.00,\"\",0.00,255.00,213.00,1620.00,0.00,0.00,49.00,0.00,0.00,\n2015,5,27,\"UA\",\"1062\",\"IAH\",\"LGA\",41.00,39.00,0.00,\"\",0.00,211.00,185.00,1416.00,0.00,7.00,0.00,0.00,32.00,\n2015,5,27,\"UA\",\"1062\",\"LGA\",\"ORD\",431.00,416.00,0.00,\"\",0.00,150.00,109.00,733.00,0.00,27.00,0.00,0.00,389.00,\n2015,5,27,\"UA\",\"1074\",\"ORD\",\"LGA\",59.00,75.00,0.00,\"\",0.00,153.00,99.00,733.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,27,\"UA\",\"1085\",\"ORD\",\"LGA\",418.00,405.00,0.00,\"\",0.00,120.00,101.00,733.00,0.00,0.00,256.00,0.00,149.00,\n2015,5,27,\"UA\",\"1123\",\"LGA\",\"DEN\",-3.00,-15.00,0.00,\"\",0.00,252.00,228.00,1620.00,,,,,,\n2015,5,27,\"UA\",\"1145\",\"LGA\",\"ORD\",,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,27,\"UA\",\"1165\",\"LGA\",\"ORD\",-1.00,-21.00,0.00,\"\",0.00,139.00,112.00,733.00,,,,,,\n2015,5,27,\"UA\",\"1190\",\"ORD\",\"ALB\",15.00,32.00,0.00,\"\",0.00,137.00,112.00,723.00,15.00,0.00,17.00,0.00,0.00,\n2015,5,27,\"UA\",\"1194\",\"IAH\",\"LGA\",23.00,,0.00,\"\",1.00,,,1416.00,,,,,,\n2015,5,27,\"UA\",\"1210\",\"LGA\",\"ORD\",27.00,28.00,0.00,\"\",0.00,162.00,129.00,733.00,22.00,0.00,1.00,0.00,5.00,\n2015,5,27,\"UA\",\"1214\",\"ORD\",\"LGA\",187.00,229.00,0.00,\"\",0.00,179.00,102.00,733.00,0.00,0.00,229.00,0.00,0.00,\n2015,5,27,\"UA\",\"1218\",\"LGA\",\"ORD\",20.00,8.00,0.00,\"\",0.00,146.00,124.00,733.00,,,,,,\n2015,5,27,\"UA\",\"1248\",\"ORD\",\"ALB\",-4.00,-14.00,0.00,\"\",0.00,110.00,90.00,723.00,,,,,,\n2015,5,27,\"UA\",\"1283\",\"ALB\",\"ORD\",40.00,50.00,0.00,\"\",0.00,151.00,108.00,723.00,0.00,13.00,10.00,0.00,27.00,\n2015,5,27,\"UA\",\"1286\",\"ORD\",\"LGA\",91.00,116.00,0.00,\"\",0.00,157.00,123.00,733.00,0.00,0.00,32.00,0.00,84.00,\n2015,5,27,\"UA\",\"1469\",\"DEN\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,217.00,198.00,1620.00,,,,,,\n2015,5,27,\"UA\",\"1469\",\"LGA\",\"ORD\",115.00,155.00,0.00,\"\",0.00,207.00,112.00,733.00,0.00,12.00,40.00,0.00,103.00,\n2015,5,27,\"UA\",\"1471\",\"ORD\",\"LGA\",0.00,10.00,0.00,\"\",0.00,142.00,104.00,733.00,,,,,,\n2015,5,27,\"UA\",\"1483\",\"DEN\",\"LGA\",87.00,77.00,0.00,\"\",0.00,225.00,195.00,1620.00,0.00,0.00,77.00,0.00,0.00,\n2015,5,29,\"UA\",\"681\",\"LGA\",\"ORD\",28.00,33.00,0.00,\"\",0.00,165.00,105.00,733.00,0.00,0.00,33.00,0.00,0.00,\n2015,5,29,\"UA\",\"686\",\"ORD\",\"LGA\",-6.00,43.00,0.00,\"\",0.00,180.00,112.00,733.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,29,\"UA\",\"690\",\"ORD\",\"LGA\",5.00,-7.00,0.00,\"\",0.00,124.00,100.00,733.00,,,,,,\n2015,5,29,\"UA\",\"692\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,29,\"UA\",\"693\",\"IAH\",\"LGA\",60.00,56.00,0.00,\"\",0.00,211.00,183.00,1416.00,13.00,0.00,0.00,0.00,43.00,\n2015,5,29,\"UA\",\"693\",\"LGA\",\"ORD\",24.00,23.00,0.00,\"\",0.00,169.00,117.00,733.00,0.00,0.00,4.00,0.00,19.00,\n2015,5,29,\"UA\",\"694\",\"ORD\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,116.00,101.00,733.00,,,,,,\n2015,5,29,\"UA\",\"695\",\"LGA\",\"ORD\",-4.00,-3.00,0.00,\"\",0.00,167.00,125.00,733.00,,,,,,\n2015,5,29,\"UA\",\"699\",\"LGA\",\"ORD\",-4.00,8.00,0.00,\"\",0.00,174.00,125.00,733.00,,,,,,\n2015,5,29,\"UA\",\"703\",\"JFK\",\"LAX\",-5.00,-34.00,0.00,\"\",0.00,331.00,306.00,2475.00,,,,,,\n2015,5,29,\"UA\",\"704\",\"SFO\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,333.00,304.00,2586.00,,,,,,\n2015,5,29,\"UA\",\"711\",\"LGA\",\"ORD\",-7.00,-3.00,0.00,\"\",0.00,159.00,111.00,733.00,,,,,,\n2015,5,29,\"UA\",\"741\",\"LGA\",\"ORD\",63.00,48.00,0.00,\"\",0.00,151.00,110.00,733.00,22.00,0.00,0.00,0.00,26.00,\n2015,5,29,\"UA\",\"746\",\"LGA\",\"IAH\",-5.00,-31.00,0.00,\"\",0.00,216.00,190.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"212\",\"LAX\",\"JFK\",-11.00,-37.00,0.00,\"\",0.00,302.00,287.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"233\",\"LAX\",\"JFK\",3.00,-11.00,0.00,\"\",0.00,311.00,292.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"244\",\"ORD\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,125.00,102.00,733.00,,,,,,\n2015,5,28,\"UA\",\"257\",\"JFK\",\"SFO\",-1.00,-23.00,0.00,\"\",0.00,379.00,352.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"275\",\"LAX\",\"JFK\",-3.00,-1.00,0.00,\"\",0.00,337.00,298.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"303\",\"DEN\",\"LGA\",-5.00,-33.00,0.00,\"\",0.00,212.00,196.00,1620.00,,,,,,\n2015,5,28,\"UA\",\"303\",\"LGA\",\"IAH\",35.00,19.00,0.00,\"\",0.00,225.00,180.00,1416.00,0.00,0.00,1.00,0.00,18.00,\n2015,5,28,\"UA\",\"343\",\"LGA\",\"IAH\",-8.00,-27.00,0.00,\"\",0.00,221.00,188.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"345\",\"LGA\",\"ORD\",-5.00,-26.00,0.00,\"\",0.00,140.00,109.00,733.00,,,,,,\n2015,5,28,\"UA\",\"368\",\"BUF\",\"ORD\",-3.00,-2.00,0.00,\"\",0.00,105.00,77.00,473.00,,,,,,\n2015,5,28,\"UA\",\"406\",\"DEN\",\"LGA\",136.00,115.00,0.00,\"\",0.00,216.00,190.00,1620.00,36.00,0.00,0.00,0.00,79.00,\n2015,5,28,\"UA\",\"415\",\"JFK\",\"SFO\",-6.00,10.00,0.00,\"\",0.00,400.00,365.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"441\",\"JFK\",\"LAX\",-9.00,10.00,0.00,\"\",0.00,395.00,348.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"442\",\"IAH\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,192.00,176.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"443\",\"JFK\",\"LAX\",-3.00,-20.00,0.00,\"\",0.00,359.00,320.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"445\",\"JFK\",\"LAX\",-5.00,-6.00,0.00,\"\",0.00,370.00,314.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"456\",\"IAH\",\"LGA\",20.00,21.00,0.00,\"\",0.00,215.00,184.00,1416.00,11.00,0.00,1.00,0.00,9.00,\n2015,5,28,\"UA\",\"462\",\"LGA\",\"IAH\",7.00,-25.00,0.00,\"\",0.00,212.00,185.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"462\",\"ORD\",\"LGA\",50.00,39.00,0.00,\"\",0.00,120.00,106.00,733.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"UA\",\"463\",\"LGA\",\"ORD\",-6.00,-9.00,0.00,\"\",0.00,154.00,115.00,733.00,,,,,,\n2015,5,28,\"UA\",\"483\",\"BUF\",\"ORD\",0.00,-3.00,0.00,\"\",0.00,102.00,71.00,473.00,,,,,,\n2015,5,28,\"UA\",\"502\",\"SFO\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,332.00,300.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"509\",\"ORD\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,130.00,98.00,733.00,,,,,,\n2015,5,28,\"UA\",\"510\",\"JFK\",\"SFO\",0.00,-4.00,0.00,\"\",0.00,397.00,369.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"512\",\"JFK\",\"SFO\",5.00,-1.00,0.00,\"\",0.00,395.00,364.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"514\",\"JFK\",\"SFO\",1.00,-13.00,0.00,\"\",0.00,387.00,352.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"535\",\"JFK\",\"LAX\",-1.00,4.00,0.00,\"\",0.00,379.00,341.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"541\",\"JFK\",\"SFO\",-4.00,0.00,0.00,\"\",0.00,394.00,345.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"561\",\"LGA\",\"DEN\",0.00,-3.00,0.00,\"\",0.00,263.00,220.00,1620.00,,,,,,\n2015,5,28,\"UA\",\"622\",\"LGA\",\"ORD\",-8.00,-24.00,0.00,\"\",0.00,142.00,115.00,733.00,,,,,,\n2015,5,28,\"UA\",\"637\",\"SFO\",\"JFK\",72.00,56.00,0.00,\"\",0.00,329.00,300.00,2586.00,56.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"UA\",\"656\",\"ORD\",\"BUF\",-8.00,4.00,0.00,\"\",0.00,104.00,65.00,473.00,,,,,,\n2015,5,28,\"UA\",\"672\",\"ORD\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,117.00,99.00,733.00,,,,,,\n2015,5,28,\"UA\",\"681\",\"LGA\",\"ORD\",-8.00,-16.00,0.00,\"\",0.00,152.00,114.00,733.00,,,,,,\n2015,5,28,\"UA\",\"686\",\"ORD\",\"LGA\",15.00,8.00,0.00,\"\",0.00,124.00,98.00,733.00,,,,,,\n2015,5,28,\"UA\",\"687\",\"LGA\",\"ORD\",4.00,-6.00,0.00,\"\",0.00,156.00,114.00,733.00,,,,,,\n2015,5,28,\"UA\",\"690\",\"ORD\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,131.00,103.00,733.00,,,,,,\n2015,5,28,\"UA\",\"692\",\"ORD\",\"LGA\",25.00,18.00,0.00,\"\",0.00,129.00,91.00,733.00,5.00,0.00,0.00,0.00,13.00,\n2015,5,28,\"UA\",\"693\",\"IAH\",\"LGA\",5.00,38.00,0.00,\"\",0.00,248.00,183.00,1416.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,28,\"UA\",\"693\",\"LGA\",\"ORD\",-10.00,-16.00,0.00,\"\",0.00,164.00,114.00,733.00,,,,,,\n2015,5,28,\"UA\",\"694\",\"ORD\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,127.00,106.00,733.00,,,,,,\n2015,5,28,\"UA\",\"695\",\"LGA\",\"ORD\",-5.00,-15.00,0.00,\"\",0.00,156.00,115.00,733.00,,,,,,\n2015,5,28,\"UA\",\"698\",\"ORD\",\"LGA\",26.00,9.00,0.00,\"\",0.00,117.00,94.00,733.00,,,,,,\n2015,5,28,\"UA\",\"699\",\"LGA\",\"ORD\",1.00,-18.00,0.00,\"\",0.00,143.00,109.00,733.00,,,,,,\n2015,5,28,\"UA\",\"703\",\"JFK\",\"LAX\",-2.00,-9.00,0.00,\"\",0.00,353.00,330.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"704\",\"SFO\",\"JFK\",-7.00,-22.00,0.00,\"\",0.00,322.00,297.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"711\",\"LGA\",\"ORD\",-6.00,-6.00,0.00,\"\",0.00,155.00,111.00,733.00,,,,,,\n2015,5,28,\"UA\",\"746\",\"LGA\",\"IAH\",-1.00,-31.00,0.00,\"\",0.00,212.00,186.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"758\",\"SFO\",\"JFK\",-2.00,-24.00,0.00,\"\",0.00,323.00,298.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"760\",\"SFO\",\"JFK\",4.00,1.00,0.00,\"\",0.00,342.00,308.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"765\",\"LGA\",\"ORD\",5.00,-7.00,0.00,\"\",0.00,148.00,113.00,733.00,,,,,,\n2015,5,28,\"UA\",\"766\",\"JFK\",\"SFO\",-2.00,-23.00,0.00,\"\",0.00,359.00,333.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"779\",\"LAX\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,322.00,303.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"791\",\"LGA\",\"IAH\",-4.00,-45.00,0.00,\"\",0.00,203.00,185.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"791\",\"ORD\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,120.00,99.00,733.00,,,,,,\n2015,5,28,\"UA\",\"824\",\"SFO\",\"JFK\",22.00,11.00,0.00,\"\",0.00,326.00,295.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"830\",\"ORD\",\"BUF\",0.00,-12.00,0.00,\"\",0.00,82.00,65.00,473.00,,,,,,\n2015,5,28,\"UA\",\"841\",\"JFK\",\"LAX\",1.00,2.00,0.00,\"\",0.00,375.00,344.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"867\",\"LAX\",\"JFK\",24.00,11.00,0.00,\"\",0.00,322.00,298.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"898\",\"SFO\",\"JFK\",-5.00,-4.00,0.00,\"\",0.00,346.00,302.00,2586.00,,,,,,\n2015,5,28,\"UA\",\"910\",\"ORD\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,120.00,101.00,733.00,,,,,,\n2015,5,28,\"UA\",\"912\",\"LAX\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,319.00,295.00,2475.00,,,,,,\n2015,5,28,\"UA\",\"1042\",\"LGA\",\"DEN\",6.00,4.00,0.00,\"\",0.00,266.00,227.00,1620.00,,,,,,\n2015,5,28,\"UA\",\"1059\",\"DEN\",\"LGA\",0.00,-25.00,0.00,\"\",0.00,210.00,194.00,1620.00,,,,,,\n2015,5,28,\"UA\",\"1062\",\"IAH\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,210.00,189.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"1062\",\"LGA\",\"ORD\",0.00,-28.00,0.00,\"\",0.00,137.00,111.00,733.00,,,,,,\n2015,5,28,\"UA\",\"1074\",\"ORD\",\"LGA\",19.00,12.00,0.00,\"\",0.00,130.00,100.00,733.00,,,,,,\n2015,5,28,\"UA\",\"1085\",\"ORD\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,116.00,98.00,733.00,,,,,,\n2015,5,28,\"UA\",\"1123\",\"LGA\",\"DEN\",0.00,5.00,0.00,\"\",0.00,269.00,221.00,1620.00,,,,,,\n2015,5,28,\"UA\",\"1145\",\"LGA\",\"ORD\",-1.00,-8.00,0.00,\"\",0.00,152.00,113.00,733.00,,,,,,\n2015,5,28,\"UA\",\"1190\",\"ORD\",\"ALB\",,,1.00,\"A\",0.00,,,723.00,,,,,,\n2015,5,28,\"UA\",\"1194\",\"IAH\",\"LGA\",2.00,7.00,0.00,\"\",0.00,223.00,187.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"1214\",\"ORD\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,137.00,105.00,733.00,,,,,,\n2015,5,28,\"UA\",\"1218\",\"LGA\",\"ORD\",12.00,-1.00,0.00,\"\",0.00,145.00,112.00,733.00,,,,,,\n2015,5,28,\"UA\",\"1248\",\"ORD\",\"ALB\",-2.00,-13.00,0.00,\"\",0.00,109.00,93.00,723.00,,,,,,\n2015,5,27,\"UA\",\"1906\",\"IAH\",\"LGA\",1.00,-16.00,0.00,\"\",0.00,192.00,177.00,1416.00,,,,,,\n2015,5,27,\"UA\",\"1906\",\"LGA\",\"DEN\",59.00,187.00,0.00,\"\",0.00,402.00,253.00,1620.00,0.00,22.00,128.00,0.00,37.00,\n2015,5,27,\"UA\",\"1990\",\"BUF\",\"ORD\",178.00,161.00,0.00,\"\",0.00,88.00,75.00,473.00,0.00,0.00,34.00,0.00,127.00,\n2015,5,27,\"UA\",\"1995\",\"ORD\",\"BUF\",126.00,141.00,0.00,\"\",0.00,107.00,77.00,473.00,0.00,0.00,15.00,0.00,126.00,\n2015,5,26,\"UA\",\"212\",\"LAX\",\"JFK\",-9.00,-21.00,0.00,\"\",0.00,316.00,300.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"233\",\"LAX\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,322.00,294.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"244\",\"ORD\",\"LGA\",1.00,-2.00,0.00,\"\",0.00,133.00,99.00,733.00,,,,,,\n2015,5,26,\"UA\",\"257\",\"JFK\",\"SFO\",263.00,243.00,0.00,\"\",0.00,381.00,355.00,2586.00,243.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"UA\",\"275\",\"LAX\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,327.00,308.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"285\",\"IAH\",\"LGA\",17.00,-5.00,0.00,\"\",0.00,196.00,179.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"303\",\"DEN\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,222.00,203.00,1620.00,,,,,,\n2015,5,26,\"UA\",\"303\",\"LGA\",\"IAH\",-2.00,-26.00,0.00,\"\",0.00,217.00,196.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"343\",\"LGA\",\"IAH\",-2.00,-8.00,0.00,\"\",0.00,234.00,197.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"345\",\"LGA\",\"ORD\",-3.00,-7.00,0.00,\"\",0.00,157.00,113.00,733.00,,,,,,\n2015,5,26,\"UA\",\"368\",\"BUF\",\"ORD\",-2.00,-5.00,0.00,\"\",0.00,101.00,81.00,473.00,,,,,,\n2015,5,26,\"UA\",\"406\",\"DEN\",\"LGA\",-2.00,-24.00,0.00,\"\",0.00,215.00,197.00,1620.00,,,,,,\n2015,5,26,\"UA\",\"415\",\"JFK\",\"SFO\",-6.00,-27.00,0.00,\"\",0.00,363.00,332.00,2586.00,,,,,,\n2015,5,26,\"UA\",\"441\",\"JFK\",\"LAX\",8.00,-9.00,0.00,\"\",0.00,359.00,324.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"442\",\"IAH\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,199.00,180.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"443\",\"JFK\",\"LAX\",-7.00,-19.00,0.00,\"\",0.00,364.00,321.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"445\",\"JFK\",\"LAX\",-7.00,-18.00,0.00,\"\",0.00,360.00,318.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"456\",\"IAH\",\"LGA\",2.00,-14.00,0.00,\"\",0.00,198.00,181.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"462\",\"LGA\",\"IAH\",-2.00,-11.00,0.00,\"\",0.00,235.00,196.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"462\",\"ORD\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,119.00,99.00,733.00,,,,,,\n2015,5,26,\"UA\",\"463\",\"LGA\",\"ORD\",-2.00,-25.00,0.00,\"\",0.00,134.00,112.00,733.00,,,,,,\n2015,5,26,\"UA\",\"483\",\"BUF\",\"ORD\",28.00,31.00,0.00,\"\",0.00,108.00,78.00,473.00,13.00,0.00,3.00,0.00,15.00,\n2015,5,26,\"UA\",\"502\",\"SFO\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,326.00,305.00,2586.00,,,,,,\n2015,5,26,\"UA\",\"509\",\"ORD\",\"LGA\",48.00,47.00,0.00,\"\",0.00,130.00,97.00,733.00,33.00,0.00,0.00,0.00,14.00,\n2015,5,26,\"UA\",\"510\",\"JFK\",\"SFO\",3.00,-8.00,0.00,\"\",0.00,390.00,358.00,2586.00,,,,,,\n2015,5,26,\"UA\",\"512\",\"JFK\",\"SFO\",19.00,5.00,0.00,\"\",0.00,387.00,361.00,2586.00,,,,,,\n2015,5,26,\"UA\",\"514\",\"JFK\",\"SFO\",-3.00,-18.00,0.00,\"\",0.00,386.00,360.00,2586.00,,,,,,\n2015,5,26,\"UA\",\"535\",\"JFK\",\"LAX\",22.00,2.00,0.00,\"\",0.00,354.00,322.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"541\",\"JFK\",\"SFO\",-12.00,-24.00,0.00,\"\",0.00,378.00,338.00,2586.00,,,,,,\n2015,5,26,\"UA\",\"561\",\"LGA\",\"DEN\",7.00,-10.00,0.00,\"\",0.00,249.00,224.00,1620.00,,,,,,\n2015,5,26,\"UA\",\"622\",\"LGA\",\"ORD\",-3.00,-34.00,0.00,\"\",0.00,127.00,111.00,733.00,,,,,,\n2015,5,26,\"UA\",\"637\",\"SFO\",\"JFK\",17.00,4.00,0.00,\"\",0.00,332.00,308.00,2586.00,,,,,,\n2015,5,26,\"UA\",\"656\",\"ORD\",\"BUF\",12.00,26.00,0.00,\"\",0.00,106.00,69.00,473.00,12.00,0.00,14.00,0.00,0.00,\n2015,5,26,\"UA\",\"672\",\"ORD\",\"LGA\",11.00,-3.00,0.00,\"\",0.00,117.00,100.00,733.00,,,,,,\n2015,5,26,\"UA\",\"681\",\"LGA\",\"ORD\",-7.00,-14.00,0.00,\"\",0.00,153.00,112.00,733.00,,,,,,\n2015,5,26,\"UA\",\"686\",\"ORD\",\"LGA\",42.00,39.00,0.00,\"\",0.00,128.00,103.00,733.00,17.00,0.00,0.00,0.00,22.00,\n2015,5,26,\"UA\",\"690\",\"ORD\",\"LGA\",8.00,-11.00,0.00,\"\",0.00,117.00,99.00,733.00,,,,,,\n2015,5,26,\"UA\",\"692\",\"ORD\",\"LGA\",-2.00,15.00,0.00,\"\",0.00,153.00,98.00,733.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,26,\"UA\",\"693\",\"IAH\",\"LGA\",2.00,-8.00,0.00,\"\",0.00,205.00,178.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"693\",\"LGA\",\"ORD\",-14.00,-38.00,0.00,\"\",0.00,146.00,120.00,733.00,,,,,,\n2015,5,26,\"UA\",\"694\",\"ORD\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,117.00,97.00,733.00,,,,,,\n2015,5,26,\"UA\",\"695\",\"LGA\",\"ORD\",-8.00,-43.00,0.00,\"\",0.00,131.00,109.00,733.00,,,,,,\n2015,5,26,\"UA\",\"698\",\"ORD\",\"LGA\",53.00,35.00,0.00,\"\",0.00,116.00,93.00,733.00,15.00,0.00,0.00,0.00,20.00,\n2015,5,28,\"UA\",\"1456\",\"LGA\",\"IAH\",-1.00,-30.00,0.00,\"\",0.00,213.00,193.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"1469\",\"DEN\",\"LGA\",4.00,-12.00,0.00,\"\",0.00,211.00,195.00,1620.00,,,,,,\n2015,5,28,\"UA\",\"1483\",\"DEN\",\"LGA\",3.00,-14.00,0.00,\"\",0.00,218.00,191.00,1620.00,,,,,,\n2015,5,28,\"UA\",\"1588\",\"LGA\",\"ORD\",10.00,-11.00,0.00,\"\",0.00,132.00,114.00,733.00,,,,,,\n2015,5,28,\"UA\",\"1638\",\"ALB\",\"ORD\",-3.00,-2.00,0.00,\"\",0.00,142.00,107.00,723.00,,,,,,\n2015,5,28,\"UA\",\"1671\",\"IAH\",\"LGA\",75.00,58.00,0.00,\"\",0.00,204.00,185.00,1416.00,0.00,0.00,0.00,0.00,58.00,\n2015,5,28,\"UA\",\"1686\",\"LGA\",\"DEN\",2.00,-16.00,0.00,\"\",0.00,253.00,233.00,1620.00,,,,,,\n2015,5,28,\"UA\",\"1687\",\"LGA\",\"IAH\",-4.00,-27.00,0.00,\"\",0.00,208.00,190.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"1693\",\"DEN\",\"LGA\",-1.00,-26.00,0.00,\"\",0.00,210.00,197.00,1620.00,,,,,,\n2015,5,28,\"UA\",\"1714\",\"LGA\",\"ORD\",-3.00,-12.00,0.00,\"\",0.00,145.00,116.00,733.00,,,,,,\n2015,5,28,\"UA\",\"1719\",\"LGA\",\"DEN\",1.00,2.00,0.00,\"\",0.00,261.00,225.00,1620.00,,,,,,\n2015,5,28,\"UA\",\"1722\",\"IAH\",\"LGA\",12.00,9.00,0.00,\"\",0.00,216.00,182.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"1744\",\"LGA\",\"IAH\",-5.00,-32.00,0.00,\"\",0.00,220.00,190.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"1744\",\"ORD\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,127.00,107.00,733.00,,,,,,\n2015,5,28,\"UA\",\"1906\",\"IAH\",\"LGA\",-6.00,2.00,0.00,\"\",0.00,217.00,181.00,1416.00,,,,,,\n2015,5,28,\"UA\",\"1906\",\"LGA\",\"DEN\",3.00,-18.00,0.00,\"\",0.00,253.00,226.00,1620.00,,,,,,\n2015,5,27,\"UA\",\"212\",\"LAX\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,314.00,293.00,2475.00,,,,,,\n2015,5,27,\"UA\",\"233\",\"LAX\",\"JFK\",11.00,7.00,0.00,\"\",0.00,321.00,299.00,2475.00,,,,,,\n2015,5,27,\"UA\",\"244\",\"ORD\",\"LGA\",,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,27,\"UA\",\"257\",\"JFK\",\"SFO\",-5.00,8.00,0.00,\"\",0.00,414.00,366.00,2586.00,,,,,,\n2015,5,27,\"UA\",\"275\",\"LAX\",\"JFK\",32.00,13.00,0.00,\"\",0.00,316.00,296.00,2475.00,,,,,,\n2015,5,27,\"UA\",\"303\",\"DEN\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,232.00,214.00,1620.00,,,,,,\n2015,5,27,\"UA\",\"303\",\"LGA\",\"IAH\",8.00,62.00,0.00,\"\",0.00,295.00,194.00,1416.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,27,\"UA\",\"343\",\"LGA\",\"IAH\",,,1.00,\"A\",0.00,,,1416.00,,,,,,\n2015,5,27,\"UA\",\"345\",\"LGA\",\"ORD\",66.00,36.00,0.00,\"\",0.00,131.00,109.00,733.00,22.00,0.00,0.00,0.00,14.00,\n2015,5,27,\"UA\",\"368\",\"BUF\",\"ORD\",-8.00,-5.00,0.00,\"\",0.00,107.00,86.00,473.00,,,,,,\n2015,5,27,\"UA\",\"406\",\"DEN\",\"LGA\",14.00,20.00,0.00,\"\",0.00,243.00,200.00,1620.00,0.00,0.00,12.00,0.00,8.00,\n2015,5,27,\"UA\",\"415\",\"JFK\",\"SFO\",4.00,-23.00,0.00,\"\",0.00,357.00,334.00,2586.00,,,,,,\n2015,5,27,\"UA\",\"441\",\"JFK\",\"LAX\",-4.00,-13.00,0.00,\"\",0.00,367.00,323.00,2475.00,,,,,,\n2015,5,27,\"UA\",\"442\",\"IAH\",\"LGA\",157.00,132.00,0.00,\"\",0.00,188.00,174.00,1416.00,0.00,7.00,0.00,0.00,125.00,\n2015,5,27,\"UA\",\"443\",\"JFK\",\"LAX\",-7.00,4.00,0.00,\"\",0.00,387.00,324.00,2475.00,,,,,,\n2015,5,27,\"UA\",\"445\",\"JFK\",\"LAX\",279.00,285.00,0.00,\"\",0.00,377.00,342.00,2475.00,0.00,0.00,14.00,0.00,271.00,\n2015,5,27,\"UA\",\"456\",\"IAH\",\"LGA\",80.00,101.00,0.00,\"\",0.00,235.00,189.00,1416.00,0.00,0.00,75.00,0.00,26.00,\n2015,5,27,\"UA\",\"462\",\"LGA\",\"IAH\",,,1.00,\"B\",0.00,,,1416.00,,,,,,\n2015,5,27,\"UA\",\"462\",\"ORD\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,129.00,109.00,733.00,,,,,,\n2015,5,27,\"UA\",\"463\",\"LGA\",\"ORD\",-9.00,-20.00,0.00,\"\",0.00,146.00,113.00,733.00,,,,,,\n2015,5,27,\"UA\",\"502\",\"SFO\",\"JFK\",2.00,-18.00,0.00,\"\",0.00,317.00,294.00,2586.00,,,,,,\n2015,5,27,\"UA\",\"509\",\"ORD\",\"LGA\",38.00,78.00,0.00,\"\",0.00,171.00,122.00,733.00,0.00,0.00,77.00,0.00,1.00,\n2015,5,27,\"UA\",\"510\",\"JFK\",\"SFO\",1.00,76.00,0.00,\"\",0.00,476.00,363.00,2586.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,27,\"UA\",\"512\",\"JFK\",\"SFO\",31.00,62.00,0.00,\"\",0.00,432.00,371.00,2586.00,0.00,0.00,54.00,0.00,8.00,\n2015,5,27,\"UA\",\"514\",\"JFK\",\"SFO\",17.00,82.00,0.00,\"\",0.00,466.00,370.00,2586.00,0.00,0.00,82.00,0.00,0.00,\n2015,5,27,\"UA\",\"535\",\"JFK\",\"LAX\",6.00,127.00,0.00,\"\",0.00,495.00,343.00,2475.00,0.00,0.00,127.00,0.00,0.00,\n2015,5,27,\"UA\",\"541\",\"JFK\",\"SFO\",2.00,22.00,0.00,\"\",0.00,410.00,337.00,2586.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,27,\"UA\",\"561\",\"LGA\",\"DEN\",-6.00,-23.00,0.00,\"\",0.00,249.00,224.00,1620.00,,,,,,\n2015,5,27,\"UA\",\"622\",\"LGA\",\"ORD\",139.00,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,27,\"UA\",\"637\",\"SFO\",\"JFK\",180.00,171.00,0.00,\"\",0.00,336.00,297.00,2586.00,0.00,0.00,160.00,0.00,11.00,\n2015,5,27,\"UA\",\"639\",\"LGA\",\"IAH\",-1.00,10.00,0.00,\"\",0.00,251.00,214.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"1248\",\"ORD\",\"ALB\",136.00,130.00,0.00,\"\",0.00,114.00,92.00,723.00,130.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"UA\",\"1283\",\"ALB\",\"ORD\",97.00,82.00,0.00,\"\",0.00,126.00,111.00,723.00,34.00,0.00,0.00,0.00,48.00,\n2015,5,26,\"UA\",\"1456\",\"LGA\",\"IAH\",13.00,-9.00,0.00,\"\",0.00,220.00,195.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"1469\",\"DEN\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,220.00,203.00,1620.00,,,,,,\n2015,5,26,\"UA\",\"1483\",\"DEN\",\"LGA\",6.00,-10.00,0.00,\"\",0.00,219.00,202.00,1620.00,,,,,,\n2015,5,26,\"UA\",\"1588\",\"LGA\",\"ORD\",4.00,-15.00,0.00,\"\",0.00,134.00,113.00,733.00,,,,,,\n2015,5,26,\"UA\",\"1638\",\"ALB\",\"ORD\",-2.00,8.00,0.00,\"\",0.00,151.00,113.00,723.00,,,,,,\n2015,5,26,\"UA\",\"1671\",\"IAH\",\"LGA\",55.00,28.00,0.00,\"\",0.00,194.00,178.00,1416.00,7.00,0.00,0.00,0.00,21.00,\n2015,5,26,\"UA\",\"1686\",\"LGA\",\"DEN\",1.00,-32.00,0.00,\"\",0.00,238.00,220.00,1620.00,,,,,,\n2015,5,26,\"UA\",\"1687\",\"LGA\",\"IAH\",17.00,20.00,0.00,\"\",0.00,234.00,196.00,1416.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,26,\"UA\",\"1693\",\"DEN\",\"LGA\",6.00,-7.00,0.00,\"\",0.00,222.00,204.00,1620.00,,,,,,\n2015,5,26,\"UA\",\"1714\",\"LGA\",\"ORD\",-1.00,-9.00,0.00,\"\",0.00,146.00,117.00,733.00,,,,,,\n2015,5,26,\"UA\",\"1719\",\"LGA\",\"DEN\",-2.00,-8.00,0.00,\"\",0.00,254.00,212.00,1620.00,,,,,,\n2015,5,26,\"UA\",\"1744\",\"LGA\",\"IAH\",1.00,-18.00,0.00,\"\",0.00,228.00,203.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"1744\",\"ORD\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,124.00,98.00,733.00,,,,,,\n2015,5,26,\"UA\",\"1906\",\"IAH\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,203.00,178.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"1906\",\"LGA\",\"DEN\",5.00,-30.00,0.00,\"\",0.00,239.00,217.00,1620.00,,,,,,\n2015,5,25,\"UA\",\"212\",\"LAX\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,322.00,299.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"699\",\"LGA\",\"ORD\",40.00,28.00,0.00,\"\",0.00,150.00,114.00,733.00,0.00,0.00,1.00,0.00,27.00,\n2015,5,26,\"UA\",\"703\",\"JFK\",\"LAX\",-8.00,-29.00,0.00,\"\",0.00,339.00,314.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"704\",\"SFO\",\"JFK\",22.00,10.00,0.00,\"\",0.00,325.00,304.00,2586.00,,,,,,\n2015,5,26,\"UA\",\"711\",\"LGA\",\"ORD\",-1.00,-11.00,0.00,\"\",0.00,145.00,111.00,733.00,,,,,,\n2015,5,26,\"UA\",\"741\",\"LGA\",\"ORD\",23.00,12.00,0.00,\"\",0.00,155.00,110.00,733.00,,,,,,\n2015,5,26,\"UA\",\"746\",\"LGA\",\"IAH\",14.00,3.00,0.00,\"\",0.00,231.00,203.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"758\",\"SFO\",\"JFK\",8.00,-1.00,0.00,\"\",0.00,336.00,313.00,2586.00,,,,,,\n2015,5,26,\"UA\",\"760\",\"SFO\",\"JFK\",-4.00,-6.00,0.00,\"\",0.00,343.00,314.00,2586.00,,,,,,\n2015,5,26,\"UA\",\"765\",\"LGA\",\"ORD\",2.00,-16.00,0.00,\"\",0.00,142.00,112.00,733.00,,,,,,\n2015,5,26,\"UA\",\"766\",\"JFK\",\"SFO\",208.00,215.00,0.00,\"\",0.00,387.00,356.00,2586.00,208.00,0.00,7.00,0.00,0.00,\n2015,5,26,\"UA\",\"779\",\"LAX\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,313.00,292.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"791\",\"LGA\",\"IAH\",-3.00,-22.00,0.00,\"\",0.00,225.00,203.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"791\",\"ORD\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,120.00,101.00,733.00,,,,,,\n2015,5,26,\"UA\",\"824\",\"SFO\",\"JFK\",19.00,35.00,0.00,\"\",0.00,353.00,309.00,2586.00,19.00,0.00,16.00,0.00,0.00,\n2015,5,26,\"UA\",\"830\",\"ORD\",\"BUF\",10.00,1.00,0.00,\"\",0.00,85.00,67.00,473.00,,,,,,\n2015,5,26,\"UA\",\"841\",\"JFK\",\"LAX\",3.00,-27.00,0.00,\"\",0.00,344.00,317.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"867\",\"LAX\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,328.00,301.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"898\",\"SFO\",\"JFK\",-7.00,-10.00,0.00,\"\",0.00,342.00,317.00,2586.00,,,,,,\n2015,5,26,\"UA\",\"910\",\"ORD\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,125.00,100.00,733.00,,,,,,\n2015,5,26,\"UA\",\"912\",\"LAX\",\"JFK\",-1.00,6.00,0.00,\"\",0.00,332.00,303.00,2475.00,,,,,,\n2015,5,26,\"UA\",\"1042\",\"LGA\",\"DEN\",59.00,20.00,0.00,\"\",0.00,229.00,212.00,1620.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"UA\",\"1059\",\"DEN\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,217.00,202.00,1620.00,,,,,,\n2015,5,26,\"UA\",\"1062\",\"IAH\",\"LGA\",15.00,3.00,0.00,\"\",0.00,201.00,177.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"1062\",\"LGA\",\"ORD\",13.00,-12.00,0.00,\"\",0.00,140.00,110.00,733.00,,,,,,\n2015,5,26,\"UA\",\"1074\",\"ORD\",\"LGA\",6.00,-3.00,0.00,\"\",0.00,128.00,101.00,733.00,,,,,,\n2015,5,26,\"UA\",\"1085\",\"ORD\",\"LGA\",19.00,14.00,0.00,\"\",0.00,128.00,103.00,733.00,,,,,,\n2015,5,26,\"UA\",\"1123\",\"LGA\",\"DEN\",2.00,-11.00,0.00,\"\",0.00,251.00,222.00,1620.00,,,,,,\n2015,5,26,\"UA\",\"1145\",\"LGA\",\"ORD\",-1.00,-9.00,0.00,\"\",0.00,151.00,110.00,733.00,,,,,,\n2015,5,26,\"UA\",\"1190\",\"ORD\",\"ALB\",50.00,62.00,0.00,\"\",0.00,132.00,92.00,723.00,38.00,0.00,12.00,0.00,12.00,\n2015,5,26,\"UA\",\"1194\",\"IAH\",\"LGA\",5.00,-2.00,0.00,\"\",0.00,211.00,186.00,1416.00,,,,,,\n2015,5,26,\"UA\",\"1214\",\"ORD\",\"LGA\",1.00,19.00,0.00,\"\",0.00,155.00,101.00,733.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,26,\"UA\",\"1218\",\"LGA\",\"ORD\",-2.00,-21.00,0.00,\"\",0.00,139.00,114.00,733.00,,,,,,\n2015,5,25,\"UA\",\"1906\",\"LGA\",\"DEN\",-5.00,-5.00,0.00,\"\",0.00,274.00,233.00,1620.00,,,,,,\n2015,5,25,\"UA\",\"1914\",\"LGA\",\"ORD\",-3.00,13.00,0.00,\"\",0.00,174.00,115.00,733.00,,,,,,\n2015,5,25,\"UA\",\"2048\",\"ORD\",\"LGA\",14.00,8.00,0.00,\"\",0.00,126.00,101.00,733.00,,,,,,\n2015,5,24,\"UA\",\"212\",\"LAX\",\"JFK\",7.00,-13.00,0.00,\"\",0.00,308.00,288.00,2475.00,,,,,,\n2015,5,24,\"UA\",\"244\",\"ORD\",\"LGA\",-4.00,-31.00,0.00,\"\",0.00,109.00,93.00,733.00,,,,,,\n2015,5,24,\"UA\",\"257\",\"JFK\",\"SFO\",-4.00,-36.00,0.00,\"\",0.00,369.00,345.00,2586.00,,,,,,\n2015,5,24,\"UA\",\"275\",\"LAX\",\"JFK\",-10.00,-37.00,0.00,\"\",0.00,308.00,288.00,2475.00,,,,,,\n2015,5,24,\"UA\",\"296\",\"IAH\",\"LGA\",10.00,8.00,0.00,\"\",0.00,210.00,177.00,1416.00,,,,,,\n2015,5,24,\"UA\",\"296\",\"LGA\",\"DEN\",9.00,-22.00,0.00,\"\",0.00,241.00,220.00,1620.00,,,,,,\n2015,5,24,\"UA\",\"345\",\"IAH\",\"LGA\",5.00,-20.00,0.00,\"\",0.00,192.00,175.00,1416.00,,,,,,\n2015,5,24,\"UA\",\"347\",\"DEN\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,228.00,190.00,1620.00,,,,,,\n2015,5,24,\"UA\",\"368\",\"BUF\",\"ORD\",-4.00,-10.00,0.00,\"\",0.00,98.00,79.00,473.00,,,,,,\n2015,5,24,\"UA\",\"415\",\"JFK\",\"SFO\",-5.00,0.00,0.00,\"\",0.00,389.00,351.00,2586.00,,,,,,\n2015,5,24,\"UA\",\"443\",\"JFK\",\"LAX\",-4.00,-21.00,0.00,\"\",0.00,359.00,316.00,2475.00,,,,,,\n2015,5,24,\"UA\",\"445\",\"JFK\",\"LAX\",-7.00,-30.00,0.00,\"\",0.00,348.00,316.00,2475.00,,,,,,\n2015,5,24,\"UA\",\"462\",\"LGA\",\"IAH\",-9.00,-23.00,0.00,\"\",0.00,230.00,211.00,1416.00,,,,,,\n2015,5,24,\"UA\",\"483\",\"BUF\",\"ORD\",-1.00,7.00,0.00,\"\",0.00,113.00,74.00,473.00,,,,,,\n2015,5,24,\"UA\",\"495\",\"DEN\",\"LGA\",-5.00,-35.00,0.00,\"\",0.00,210.00,185.00,1620.00,,,,,,\n2015,5,24,\"UA\",\"502\",\"SFO\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,331.00,307.00,2586.00,,,,,,\n2015,5,24,\"UA\",\"509\",\"ORD\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,124.00,97.00,733.00,,,,,,\n2015,5,24,\"UA\",\"510\",\"JFK\",\"SFO\",-3.00,-33.00,0.00,\"\",0.00,371.00,342.00,2586.00,,,,,,\n2015,5,24,\"UA\",\"512\",\"JFK\",\"SFO\",-8.00,-44.00,0.00,\"\",0.00,365.00,340.00,2586.00,,,,,,\n2015,5,24,\"UA\",\"535\",\"JFK\",\"LAX\",11.00,-6.00,0.00,\"\",0.00,357.00,320.00,2475.00,,,,,,\n2015,5,24,\"UA\",\"559\",\"ORD\",\"ALB\",-7.00,-19.00,0.00,\"\",0.00,107.00,87.00,723.00,,,,,,\n2015,5,24,\"UA\",\"617\",\"ORD\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,115.00,95.00,733.00,,,,,,\n2015,5,24,\"UA\",\"637\",\"SFO\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,328.00,301.00,2586.00,,,,,,\n2015,5,24,\"UA\",\"656\",\"ORD\",\"BUF\",22.00,7.00,0.00,\"\",0.00,77.00,60.00,473.00,,,,,,\n2015,5,24,\"UA\",\"667\",\"LGA\",\"ORD\",-3.00,-17.00,0.00,\"\",0.00,139.00,121.00,733.00,,,,,,\n2015,5,24,\"UA\",\"681\",\"LGA\",\"ORD\",0.00,-8.00,0.00,\"\",0.00,152.00,125.00,733.00,,,,,,\n2015,5,24,\"UA\",\"683\",\"ALB\",\"ORD\",-9.00,-1.00,0.00,\"\",0.00,148.00,115.00,723.00,,,,,,\n2015,5,24,\"UA\",\"693\",\"IAH\",\"LGA\",16.00,-5.00,0.00,\"\",0.00,194.00,176.00,1416.00,,,,,,\n2015,5,24,\"UA\",\"695\",\"DEN\",\"LGA\",5.00,-12.00,0.00,\"\",0.00,216.00,194.00,1620.00,,,,,,\n2015,5,24,\"UA\",\"704\",\"SFO\",\"JFK\",-6.00,-9.00,0.00,\"\",0.00,334.00,311.00,2586.00,,,,,,\n2015,5,24,\"UA\",\"746\",\"LGA\",\"IAH\",-1.00,0.00,0.00,\"\",0.00,243.00,220.00,1416.00,,,,,,\n2015,5,24,\"UA\",\"760\",\"SFO\",\"JFK\",-5.00,-25.00,0.00,\"\",0.00,325.00,304.00,2586.00,,,,,,\n2015,5,24,\"UA\",\"765\",\"LGA\",\"ORD\",-11.00,-21.00,0.00,\"\",0.00,150.00,127.00,733.00,,,,,,\n2015,5,24,\"UA\",\"766\",\"JFK\",\"SFO\",-5.00,-20.00,0.00,\"\",0.00,365.00,341.00,2586.00,,,,,,\n2015,5,24,\"UA\",\"779\",\"LAX\",\"JFK\",0.00,-26.00,0.00,\"\",0.00,309.00,288.00,2475.00,,,,,,\n2015,5,24,\"UA\",\"791\",\"LGA\",\"IAH\",-4.00,7.00,0.00,\"\",0.00,255.00,233.00,1416.00,,,,,,\n2015,5,24,\"UA\",\"791\",\"ORD\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,118.00,99.00,733.00,,,,,,\n2015,5,24,\"UA\",\"824\",\"SFO\",\"JFK\",103.00,85.00,0.00,\"\",0.00,319.00,302.00,2586.00,85.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"UA\",\"830\",\"ORD\",\"BUF\",-3.00,-20.00,0.00,\"\",0.00,77.00,64.00,473.00,,,,,,\n2015,5,24,\"UA\",\"841\",\"JFK\",\"LAX\",-2.00,-25.00,0.00,\"\",0.00,351.00,323.00,2475.00,,,,,,\n2015,5,24,\"UA\",\"867\",\"LAX\",\"JFK\",-6.00,-18.00,0.00,\"\",0.00,323.00,302.00,2475.00,,,,,,\n2015,5,24,\"UA\",\"898\",\"SFO\",\"JFK\",0.00,-21.00,0.00,\"\",0.00,324.00,303.00,2586.00,,,,,,\n2015,5,24,\"UA\",\"912\",\"LAX\",\"JFK\",-2.00,16.00,0.00,\"\",0.00,343.00,316.00,2475.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,24,\"UA\",\"1038\",\"ORD\",\"LGA\",-3.00,-25.00,0.00,\"\",0.00,110.00,93.00,733.00,,,,,,\n2015,5,24,\"UA\",\"1123\",\"LGA\",\"DEN\",6.00,-19.00,0.00,\"\",0.00,239.00,220.00,1620.00,,,,,,\n2015,5,24,\"UA\",\"1145\",\"LGA\",\"ORD\",7.00,-6.00,0.00,\"\",0.00,143.00,119.00,733.00,,,,,,\n2015,5,24,\"UA\",\"1239\",\"ORD\",\"LGA\",4.00,-15.00,0.00,\"\",0.00,116.00,95.00,733.00,,,,,,\n2015,5,24,\"UA\",\"1248\",\"ORD\",\"ALB\",-1.00,-13.00,0.00,\"\",0.00,108.00,86.00,723.00,,,,,,\n2015,5,24,\"UA\",\"1285\",\"LGA\",\"DEN\",159.00,138.00,0.00,\"\",0.00,239.00,219.00,1620.00,45.00,0.00,0.00,0.00,93.00,\n2015,5,24,\"UA\",\"1299\",\"IAH\",\"LGA\",35.00,18.00,0.00,\"\",0.00,198.00,177.00,1416.00,8.00,0.00,0.00,0.00,10.00,\n2015,5,24,\"UA\",\"1471\",\"ORD\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,117.00,97.00,733.00,,,,,,\n2015,5,24,\"UA\",\"1483\",\"DEN\",\"LGA\",-3.00,-25.00,0.00,\"\",0.00,213.00,195.00,1620.00,,,,,,\n2015,5,24,\"UA\",\"1638\",\"ALB\",\"ORD\",-9.00,-5.00,0.00,\"\",0.00,145.00,112.00,723.00,,,,,,\n2015,5,22,\"UA\",\"1123\",\"LGA\",\"DEN\",4.00,20.00,0.00,\"\",0.00,280.00,233.00,1620.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,22,\"UA\",\"1190\",\"ORD\",\"ALB\",-4.00,-10.00,0.00,\"\",0.00,114.00,92.00,723.00,,,,,,\n2015,5,22,\"UA\",\"1194\",\"IAH\",\"LGA\",31.00,7.00,0.00,\"\",0.00,194.00,178.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"1214\",\"ORD\",\"LGA\",2.00,-25.00,0.00,\"\",0.00,110.00,88.00,733.00,,,,,,\n2015,5,22,\"UA\",\"1218\",\"LGA\",\"ORD\",10.00,20.00,0.00,\"\",0.00,168.00,117.00,733.00,10.00,0.00,10.00,0.00,0.00,\n2015,5,25,\"UA\",\"233\",\"LAX\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,319.00,299.00,2475.00,,,,,,\n2015,5,25,\"UA\",\"244\",\"ORD\",\"LGA\",-5.00,-26.00,0.00,\"\",0.00,115.00,98.00,733.00,,,,,,\n2015,5,25,\"UA\",\"257\",\"JFK\",\"SFO\",-6.00,-39.00,0.00,\"\",0.00,368.00,336.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"275\",\"LAX\",\"JFK\",-4.00,-22.00,0.00,\"\",0.00,317.00,303.00,2475.00,,,,,,\n2015,5,25,\"UA\",\"303\",\"DEN\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,229.00,205.00,1620.00,,,,,,\n2015,5,25,\"UA\",\"303\",\"LGA\",\"IAH\",-4.00,53.00,0.00,\"\",0.00,298.00,197.00,1416.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,25,\"UA\",\"343\",\"LGA\",\"IAH\",-8.00,-26.00,0.00,\"\",0.00,222.00,203.00,1416.00,,,,,,\n2015,5,25,\"UA\",\"345\",\"LGA\",\"ORD\",-5.00,-9.00,0.00,\"\",0.00,157.00,113.00,733.00,,,,,,\n2015,5,25,\"UA\",\"381\",\"LGA\",\"ORD\",-5.00,-16.00,0.00,\"\",0.00,147.00,122.00,733.00,,,,,,\n2015,5,25,\"UA\",\"406\",\"DEN\",\"LGA\",0.00,-31.00,0.00,\"\",0.00,206.00,190.00,1620.00,,,,,,\n2015,5,25,\"UA\",\"415\",\"JFK\",\"SFO\",-9.00,-8.00,0.00,\"\",0.00,385.00,345.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"441\",\"JFK\",\"LAX\",-5.00,-27.00,0.00,\"\",0.00,354.00,325.00,2475.00,,,,,,\n2015,5,25,\"UA\",\"443\",\"JFK\",\"LAX\",-9.00,-33.00,0.00,\"\",0.00,352.00,318.00,2475.00,,,,,,\n2015,5,25,\"UA\",\"445\",\"JFK\",\"LAX\",-4.00,-7.00,0.00,\"\",0.00,368.00,325.00,2475.00,,,,,,\n2015,5,25,\"UA\",\"456\",\"IAH\",\"LGA\",4.00,-11.00,0.00,\"\",0.00,199.00,175.00,1416.00,,,,,,\n2015,5,25,\"UA\",\"462\",\"LGA\",\"IAH\",-4.00,-25.00,0.00,\"\",0.00,223.00,199.00,1416.00,,,,,,\n2015,5,25,\"UA\",\"483\",\"BUF\",\"ORD\",-2.00,-16.00,0.00,\"\",0.00,91.00,72.00,473.00,,,,,,\n2015,5,25,\"UA\",\"502\",\"SFO\",\"JFK\",-6.00,-23.00,0.00,\"\",0.00,320.00,299.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"509\",\"ORD\",\"LGA\",-6.00,9.00,0.00,\"\",0.00,146.00,98.00,733.00,,,,,,\n2015,5,25,\"UA\",\"510\",\"JFK\",\"SFO\",-6.00,-51.00,0.00,\"\",0.00,356.00,329.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"512\",\"JFK\",\"SFO\",-1.00,-30.00,0.00,\"\",0.00,372.00,340.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"514\",\"JFK\",\"SFO\",-4.00,-4.00,0.00,\"\",0.00,401.00,351.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"535\",\"JFK\",\"LAX\",-3.00,-22.00,0.00,\"\",0.00,355.00,331.00,2475.00,,,,,,\n2015,5,25,\"UA\",\"541\",\"JFK\",\"SFO\",-6.00,-21.00,0.00,\"\",0.00,375.00,337.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"589\",\"BUF\",\"ORD\",-4.00,-11.00,0.00,\"\",0.00,97.00,77.00,473.00,,,,,,\n2015,5,25,\"UA\",\"596\",\"DEN\",\"LGA\",48.00,24.00,0.00,\"\",0.00,209.00,194.00,1620.00,3.00,0.00,0.00,0.00,21.00,\n2015,5,24,\"UA\",\"1671\",\"IAH\",\"LGA\",10.00,-6.00,0.00,\"\",0.00,205.00,184.00,1416.00,,,,,,\n2015,5,24,\"UA\",\"1751\",\"LGA\",\"ORD\",-1.00,-19.00,0.00,\"\",0.00,147.00,122.00,733.00,,,,,,\n2015,5,24,\"UA\",\"1906\",\"LGA\",\"DEN\",12.00,-2.00,0.00,\"\",0.00,254.00,225.00,1620.00,,,,,,\n2015,5,23,\"UA\",\"12\",\"BUF\",\"ORD\",0.00,-5.00,0.00,\"\",0.00,101.00,74.00,473.00,,,,,,\n2015,5,23,\"UA\",\"255\",\"LGA\",\"DEN\",30.00,32.00,0.00,\"\",0.00,274.00,231.00,1620.00,0.00,0.00,4.00,0.00,28.00,\n2015,5,23,\"UA\",\"257\",\"JFK\",\"SFO\",11.00,8.00,0.00,\"\",0.00,398.00,356.00,2586.00,,,,,,\n2015,5,23,\"UA\",\"275\",\"LAX\",\"JFK\",-9.00,-40.00,0.00,\"\",0.00,304.00,283.00,2475.00,,,,,,\n2015,5,23,\"UA\",\"303\",\"DEN\",\"LGA\",2.00,-9.00,0.00,\"\",0.00,229.00,186.00,1620.00,,,,,,\n2015,5,23,\"UA\",\"345\",\"IAH\",\"LGA\",41.00,22.00,0.00,\"\",0.00,198.00,173.00,1416.00,20.00,0.00,0.00,0.00,2.00,\n2015,5,23,\"UA\",\"380\",\"LGA\",\"IAH\",123.00,110.00,0.00,\"\",0.00,216.00,195.00,1416.00,110.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"UA\",\"405\",\"LGA\",\"DEN\",-2.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,23,\"UA\",\"415\",\"JFK\",\"SFO\",-1.00,-18.00,0.00,\"\",0.00,367.00,344.00,2586.00,,,,,,\n2015,5,23,\"UA\",\"441\",\"JFK\",\"LAX\",-4.00,-13.00,0.00,\"\",0.00,367.00,340.00,2475.00,,,,,,\n2015,5,23,\"UA\",\"443\",\"JFK\",\"LAX\",-8.00,-6.00,0.00,\"\",0.00,378.00,350.00,2475.00,,,,,,\n2015,5,23,\"UA\",\"451\",\"IAH\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,190.00,171.00,1416.00,,,,,,\n2015,5,23,\"UA\",\"463\",\"LGA\",\"ORD\",-4.00,-16.00,0.00,\"\",0.00,145.00,113.00,733.00,,,,,,\n2015,5,23,\"UA\",\"483\",\"BUF\",\"ORD\",-4.00,-2.00,0.00,\"\",0.00,106.00,77.00,473.00,,,,,,\n2015,5,23,\"UA\",\"510\",\"JFK\",\"SFO\",-3.00,-5.00,0.00,\"\",0.00,399.00,363.00,2586.00,,,,,,\n2015,5,23,\"UA\",\"512\",\"JFK\",\"SFO\",-4.00,26.00,0.00,\"\",0.00,431.00,390.00,2586.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,23,\"UA\",\"535\",\"JFK\",\"LAX\",-1.00,2.00,0.00,\"\",0.00,373.00,335.00,2475.00,,,,,,\n2015,5,23,\"UA\",\"541\",\"JFK\",\"SFO\",-11.00,-23.00,0.00,\"\",0.00,378.00,350.00,2586.00,,,,,,\n2015,5,23,\"UA\",\"596\",\"DEN\",\"LGA\",-2.00,-34.00,0.00,\"\",0.00,201.00,185.00,1620.00,,,,,,\n2015,5,23,\"UA\",\"637\",\"SFO\",\"JFK\",1.00,-21.00,0.00,\"\",0.00,323.00,295.00,2586.00,,,,,,\n2015,5,23,\"UA\",\"703\",\"JFK\",\"LAX\",-9.00,5.00,0.00,\"\",0.00,374.00,344.00,2475.00,,,,,,\n2015,5,23,\"UA\",\"706\",\"LGA\",\"IAH\",-6.00,-21.00,0.00,\"\",0.00,225.00,198.00,1416.00,,,,,,\n2015,5,23,\"UA\",\"708\",\"ORD\",\"LGA\",29.00,5.00,0.00,\"\",0.00,107.00,92.00,733.00,,,,,,\n2015,5,23,\"UA\",\"711\",\"LGA\",\"ORD\",-2.00,-29.00,0.00,\"\",0.00,128.00,111.00,733.00,,,,,,\n2015,5,23,\"UA\",\"741\",\"LGA\",\"ORD\",1.00,-26.00,0.00,\"\",0.00,133.00,110.00,733.00,,,,,,\n2015,5,23,\"UA\",\"746\",\"LGA\",\"IAH\",0.00,-14.00,0.00,\"\",0.00,228.00,195.00,1416.00,,,,,,\n2015,5,23,\"UA\",\"758\",\"SFO\",\"JFK\",-3.00,-28.00,0.00,\"\",0.00,320.00,295.00,2586.00,,,,,,\n2015,5,23,\"UA\",\"760\",\"SFO\",\"JFK\",-5.00,-37.00,0.00,\"\",0.00,313.00,295.00,2586.00,,,,,,\n2015,5,23,\"UA\",\"779\",\"LAX\",\"JFK\",-7.00,-30.00,0.00,\"\",0.00,312.00,287.00,2475.00,,,,,,\n2015,5,23,\"UA\",\"824\",\"SFO\",\"JFK\",-1.00,-26.00,0.00,\"\",0.00,312.00,295.00,2586.00,,,,,,\n2015,5,23,\"UA\",\"825\",\"IAH\",\"LGA\",53.00,39.00,0.00,\"\",0.00,198.00,180.00,1416.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"UA\",\"830\",\"ORD\",\"BUF\",1.00,-9.00,0.00,\"\",0.00,84.00,65.00,473.00,,,,,,\n2015,5,23,\"UA\",\"841\",\"JFK\",\"LAX\",6.00,24.00,0.00,\"\",0.00,392.00,363.00,2475.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,23,\"UA\",\"867\",\"LAX\",\"JFK\",-10.00,-31.00,0.00,\"\",0.00,314.00,286.00,2475.00,,,,,,\n2015,5,23,\"UA\",\"912\",\"LAX\",\"JFK\",2.00,-19.00,0.00,\"\",0.00,304.00,288.00,2475.00,,,,,,\n2015,5,23,\"UA\",\"1210\",\"LGA\",\"ORD\",12.00,-12.00,0.00,\"\",0.00,137.00,118.00,733.00,,,,,,\n2015,5,23,\"UA\",\"1226\",\"LGA\",\"IAH\",14.00,15.00,0.00,\"\",0.00,247.00,206.00,1416.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,23,\"UA\",\"1239\",\"ORD\",\"LGA\",0.00,-28.00,0.00,\"\",0.00,107.00,89.00,733.00,,,,,,\n2015,5,23,\"UA\",\"1248\",\"ORD\",\"ALB\",-1.00,-16.00,0.00,\"\",0.00,105.00,85.00,723.00,,,,,,\n2015,5,23,\"UA\",\"1285\",\"LGA\",\"DEN\",-4.00,-9.00,0.00,\"\",0.00,255.00,230.00,1620.00,,,,,,\n2015,5,23,\"UA\",\"1299\",\"IAH\",\"LGA\",9.00,-14.00,0.00,\"\",0.00,192.00,172.00,1416.00,,,,,,\n2015,5,23,\"UA\",\"1469\",\"DEN\",\"LGA\",35.00,1.00,0.00,\"\",0.00,193.00,174.00,1620.00,,,,,,\n2015,5,23,\"UA\",\"1483\",\"DEN\",\"LGA\",49.00,9.00,0.00,\"\",0.00,195.00,179.00,1620.00,,,,,,\n2015,5,21,\"UA\",\"406\",\"DEN\",\"LGA\",22.00,-19.00,0.00,\"\",0.00,196.00,181.00,1620.00,,,,,,\n2015,5,21,\"UA\",\"415\",\"JFK\",\"SFO\",-6.00,-1.00,0.00,\"\",0.00,389.00,366.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"435\",\"ORD\",\"LGA\",87.00,71.00,0.00,\"\",0.00,120.00,95.00,733.00,5.00,0.00,0.00,0.00,66.00,\n2015,5,21,\"UA\",\"441\",\"JFK\",\"LAX\",-3.00,0.00,0.00,\"\",0.00,379.00,350.00,2475.00,,,,,,\n2015,5,21,\"UA\",\"442\",\"IAH\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,194.00,176.00,1416.00,,,,,,\n2015,5,21,\"UA\",\"443\",\"JFK\",\"LAX\",-9.00,2.00,0.00,\"\",0.00,387.00,349.00,2475.00,,,,,,\n2015,5,21,\"UA\",\"445\",\"JFK\",\"LAX\",24.00,25.00,0.00,\"\",0.00,372.00,330.00,2475.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,21,\"UA\",\"456\",\"IAH\",\"LGA\",100.00,61.00,0.00,\"\",0.00,175.00,155.00,1416.00,10.00,0.00,0.00,0.00,51.00,\n2015,5,21,\"UA\",\"462\",\"LGA\",\"IAH\",-4.00,-1.00,0.00,\"\",0.00,247.00,231.00,1416.00,,,,,,\n2015,5,21,\"UA\",\"462\",\"ORD\",\"LGA\",-8.00,-6.00,0.00,\"\",0.00,133.00,96.00,733.00,,,,,,\n2015,5,21,\"UA\",\"463\",\"LGA\",\"ORD\",-7.00,-12.00,0.00,\"\",0.00,152.00,125.00,733.00,,,,,,\n2015,5,21,\"UA\",\"483\",\"BUF\",\"ORD\",105.00,91.00,0.00,\"\",0.00,91.00,69.00,473.00,7.00,0.00,0.00,0.00,84.00,\n2015,5,21,\"UA\",\"502\",\"SFO\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,324.00,297.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"509\",\"ORD\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,118.00,93.00,733.00,,,,,,\n2015,5,21,\"UA\",\"510\",\"JFK\",\"SFO\",89.00,72.00,0.00,\"\",0.00,384.00,344.00,2586.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,21,\"UA\",\"512\",\"JFK\",\"SFO\",-1.00,-5.00,0.00,\"\",0.00,397.00,365.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"514\",\"JFK\",\"SFO\",0.00,-18.00,0.00,\"\",0.00,383.00,340.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"535\",\"JFK\",\"LAX\",-1.00,9.00,0.00,\"\",0.00,384.00,349.00,2475.00,,,,,,\n2015,5,21,\"UA\",\"541\",\"JFK\",\"SFO\",-3.00,-8.00,0.00,\"\",0.00,385.00,353.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"547\",\"ORD\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,117.00,97.00,733.00,,,,,,\n2015,5,21,\"UA\",\"561\",\"LGA\",\"DEN\",-4.00,24.00,0.00,\"\",0.00,294.00,251.00,1620.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,21,\"UA\",\"622\",\"LGA\",\"ORD\",3.00,-24.00,0.00,\"\",0.00,131.00,116.00,733.00,,,,,,\n2015,5,21,\"UA\",\"637\",\"SFO\",\"JFK\",1.00,-21.00,0.00,\"\",0.00,323.00,299.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"656\",\"ORD\",\"BUF\",114.00,108.00,0.00,\"\",0.00,86.00,67.00,473.00,10.00,0.00,0.00,0.00,98.00,\n2015,5,21,\"UA\",\"672\",\"ORD\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,115.00,98.00,733.00,,,,,,\n2015,5,21,\"UA\",\"681\",\"LGA\",\"ORD\",-1.00,-3.00,0.00,\"\",0.00,158.00,114.00,733.00,,,,,,\n2015,5,5,\"MQ\",\"3374\",\"JFK\",\"RDU\",-2.00,5.00,0.00,\"\",0.00,111.00,68.00,427.00,,,,,,\n2015,5,6,\"MQ\",\"3374\",\"JFK\",\"RDU\",-7.00,-15.00,0.00,\"\",0.00,96.00,67.00,427.00,,,,,,\n2015,5,7,\"MQ\",\"3374\",\"JFK\",\"RDU\",-5.00,-15.00,0.00,\"\",0.00,94.00,66.00,427.00,,,,,,\n2015,5,8,\"MQ\",\"3374\",\"JFK\",\"RDU\",81.00,87.00,0.00,\"\",0.00,110.00,67.00,427.00,0.00,0.00,6.00,0.00,81.00,\n2015,5,9,\"MQ\",\"3374\",\"JFK\",\"RDU\",,,1.00,\"A\",0.00,,,427.00,,,,,,\n2015,5,10,\"MQ\",\"3374\",\"JFK\",\"RDU\",,,1.00,\"B\",0.00,,,427.00,,,,,,\n2015,5,11,\"MQ\",\"3374\",\"JFK\",\"RDU\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,12,\"MQ\",\"3374\",\"JFK\",\"RDU\",27.00,25.00,0.00,\"\",0.00,102.00,76.00,427.00,0.00,0.00,0.00,0.00,25.00,\n2015,5,13,\"MQ\",\"3374\",\"JFK\",\"RDU\",61.00,69.00,0.00,\"\",0.00,112.00,67.00,427.00,0.00,0.00,11.00,0.00,58.00,\n2015,5,14,\"MQ\",\"3374\",\"JFK\",\"RDU\",-4.00,-11.00,0.00,\"\",0.00,97.00,69.00,427.00,,,,,,\n2015,5,15,\"MQ\",\"3374\",\"JFK\",\"RDU\",-4.00,-25.00,0.00,\"\",0.00,83.00,64.00,427.00,,,,,,\n2015,5,16,\"MQ\",\"3374\",\"JFK\",\"RDU\",-5.00,-29.00,0.00,\"\",0.00,80.00,65.00,427.00,,,,,,\n2015,5,17,\"MQ\",\"3374\",\"JFK\",\"RDU\",-6.00,6.00,0.00,\"\",0.00,116.00,67.00,427.00,,,,,,\n2015,5,18,\"MQ\",\"3374\",\"JFK\",\"RDU\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,19,\"MQ\",\"3374\",\"JFK\",\"RDU\",-4.00,24.00,0.00,\"\",0.00,132.00,70.00,427.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,20,\"MQ\",\"3374\",\"JFK\",\"RDU\",16.00,5.00,0.00,\"\",0.00,93.00,71.00,427.00,,,,,,\n2015,5,21,\"MQ\",\"3374\",\"JFK\",\"RDU\",-10.00,-12.00,0.00,\"\",0.00,102.00,79.00,427.00,,,,,,\n2015,5,22,\"MQ\",\"3374\",\"JFK\",\"RDU\",-12.00,-2.00,0.00,\"\",0.00,114.00,74.00,427.00,,,,,,\n2015,5,23,\"MQ\",\"3374\",\"JFK\",\"RDU\",-5.00,-6.00,0.00,\"\",0.00,103.00,70.00,427.00,,,,,,\n2015,5,24,\"MQ\",\"3374\",\"JFK\",\"RDU\",-6.00,-22.00,0.00,\"\",0.00,88.00,65.00,427.00,,,,,,\n2015,5,25,\"MQ\",\"3374\",\"JFK\",\"RDU\",-11.00,-24.00,0.00,\"\",0.00,91.00,67.00,427.00,,,,,,\n2015,5,26,\"MQ\",\"3374\",\"JFK\",\"RDU\",0.00,8.00,0.00,\"\",0.00,112.00,69.00,427.00,,,,,,\n2015,5,27,\"MQ\",\"3374\",\"JFK\",\"RDU\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,28,\"MQ\",\"3374\",\"JFK\",\"RDU\",-3.00,-5.00,0.00,\"\",0.00,102.00,64.00,427.00,,,,,,\n2015,5,29,\"MQ\",\"3374\",\"JFK\",\"RDU\",-9.00,-23.00,0.00,\"\",0.00,90.00,66.00,427.00,,,,,,\n2015,5,30,\"MQ\",\"3374\",\"JFK\",\"RDU\",-3.00,-19.00,0.00,\"\",0.00,88.00,53.00,427.00,,,,,,\n2015,5,31,\"MQ\",\"3374\",\"JFK\",\"RDU\",,,1.00,\"C\",0.00,,,427.00,,,,,,\n2015,5,1,\"MQ\",\"3384\",\"LGA\",\"GSO\",-12.00,-11.00,0.00,\"\",0.00,112.00,78.00,461.00,,,,,,\n2015,5,3,\"MQ\",\"3384\",\"LGA\",\"GSO\",91.00,67.00,0.00,\"\",0.00,87.00,68.00,461.00,49.00,0.00,0.00,0.00,18.00,\n2015,5,4,\"MQ\",\"3384\",\"LGA\",\"GSO\",-9.00,-37.00,0.00,\"\",0.00,83.00,69.00,461.00,,,,,,\n2015,5,5,\"MQ\",\"3384\",\"LGA\",\"GSO\",-5.00,-23.00,0.00,\"\",0.00,93.00,72.00,461.00,,,,,,\n2015,5,6,\"MQ\",\"3384\",\"LGA\",\"GSO\",-14.00,6.00,0.00,\"\",0.00,131.00,77.00,461.00,,,,,,\n2015,5,7,\"MQ\",\"3384\",\"LGA\",\"GSO\",-8.00,-24.00,0.00,\"\",0.00,95.00,74.00,461.00,,,,,,\n2015,5,8,\"MQ\",\"3384\",\"LGA\",\"GSO\",40.00,16.00,0.00,\"\",0.00,87.00,71.00,461.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,10,\"MQ\",\"3384\",\"LGA\",\"GSO\",-13.00,15.00,0.00,\"\",0.00,139.00,71.00,461.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,11,\"MQ\",\"3384\",\"LGA\",\"GSO\",,,1.00,\"C\",0.00,,,461.00,,,,,,\n2015,5,12,\"MQ\",\"3384\",\"LGA\",\"GSO\",6.00,-11.00,0.00,\"\",0.00,94.00,73.00,461.00,,,,,,\n2015,5,13,\"MQ\",\"3384\",\"LGA\",\"GSO\",1.00,-6.00,0.00,\"\",0.00,104.00,66.00,461.00,,,,,,\n2015,5,14,\"MQ\",\"3384\",\"LGA\",\"GSO\",-11.00,-28.00,0.00,\"\",0.00,94.00,67.00,461.00,,,,,,\n2015,5,15,\"MQ\",\"3384\",\"LGA\",\"GSO\",-5.00,-30.00,0.00,\"\",0.00,86.00,70.00,461.00,,,,,,\n2015,5,17,\"MQ\",\"3384\",\"LGA\",\"GSO\",-15.00,-32.00,0.00,\"\",0.00,94.00,69.00,461.00,,,,,,\n2015,5,18,\"MQ\",\"3384\",\"LGA\",\"GSO\",,,1.00,\"C\",0.00,,,461.00,,,,,,\n2015,5,19,\"MQ\",\"3384\",\"LGA\",\"GSO\",17.00,13.00,0.00,\"\",0.00,107.00,72.00,461.00,,,,,,\n2015,5,20,\"MQ\",\"3384\",\"LGA\",\"GSO\",-9.00,15.00,0.00,\"\",0.00,135.00,77.00,461.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,21,\"MQ\",\"3384\",\"LGA\",\"GSO\",4.00,11.00,0.00,\"\",0.00,118.00,77.00,461.00,,,,,,\n2015,5,22,\"MQ\",\"3384\",\"LGA\",\"GSO\",-9.00,-29.00,0.00,\"\",0.00,91.00,72.00,461.00,,,,,,\n2015,5,24,\"MQ\",\"3384\",\"LGA\",\"GSO\",-9.00,-28.00,0.00,\"\",0.00,92.00,71.00,461.00,,,,,,\n2015,5,25,\"MQ\",\"3384\",\"LGA\",\"GSO\",-2.00,-19.00,0.00,\"\",0.00,94.00,71.00,461.00,,,,,,\n2015,5,26,\"MQ\",\"3384\",\"LGA\",\"GSO\",-7.00,-27.00,0.00,\"\",0.00,91.00,70.00,461.00,,,,,,\n2015,5,27,\"MQ\",\"3384\",\"LGA\",\"GSO\",,,1.00,\"C\",0.00,,,461.00,,,,,,\n2015,5,28,\"MQ\",\"3384\",\"LGA\",\"GSO\",36.00,28.00,0.00,\"\",0.00,103.00,70.00,461.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"MQ\",\"3384\",\"LGA\",\"GSO\",-9.00,6.00,0.00,\"\",0.00,126.00,71.00,461.00,,,,,,\n2015,5,31,\"MQ\",\"3384\",\"LGA\",\"GSO\",,,1.00,\"C\",0.00,,,461.00,,,,,,\n2015,5,23,\"UA\",\"1582\",\"ORD\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,85.00,64.00,473.00,,,,,,\n2015,5,23,\"UA\",\"1588\",\"LGA\",\"ORD\",-6.00,-30.00,0.00,\"\",0.00,129.00,113.00,733.00,,,,,,\n2015,5,23,\"UA\",\"1604\",\"LGA\",\"DEN\",-1.00,-3.00,0.00,\"\",0.00,266.00,232.00,1620.00,,,,,,\n2015,5,23,\"UA\",\"1638\",\"ALB\",\"ORD\",6.00,4.00,0.00,\"\",0.00,139.00,111.00,723.00,,,,,,\n2015,5,23,\"UA\",\"1714\",\"LGA\",\"ORD\",-4.00,-18.00,0.00,\"\",0.00,140.00,114.00,733.00,,,,,,\n2015,5,23,\"UA\",\"1744\",\"LGA\",\"IAH\",9.00,-9.00,0.00,\"\",0.00,229.00,207.00,1416.00,,,,,,\n2015,5,23,\"UA\",\"2048\",\"ORD\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,130.00,96.00,733.00,,,,,,\n2015,5,22,\"UA\",\"212\",\"LAX\",\"JFK\",-6.00,-36.00,0.00,\"\",0.00,298.00,280.00,2475.00,,,,,,\n2015,5,22,\"UA\",\"233\",\"LAX\",\"JFK\",3.00,-28.00,0.00,\"\",0.00,294.00,278.00,2475.00,,,,,,\n2015,5,22,\"UA\",\"244\",\"ORD\",\"LGA\",15.00,2.00,0.00,\"\",0.00,123.00,97.00,733.00,,,,,,\n2015,5,22,\"UA\",\"257\",\"JFK\",\"SFO\",4.00,-11.00,0.00,\"\",0.00,386.00,358.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"275\",\"LAX\",\"JFK\",-10.00,-44.00,0.00,\"\",0.00,301.00,279.00,2475.00,,,,,,\n2015,5,22,\"UA\",\"285\",\"IAH\",\"LGA\",-4.00,-30.00,0.00,\"\",0.00,192.00,174.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"303\",\"DEN\",\"LGA\",6.00,-22.00,0.00,\"\",0.00,212.00,190.00,1620.00,,,,,,\n2015,5,22,\"UA\",\"303\",\"LGA\",\"IAH\",8.00,-22.00,0.00,\"\",0.00,211.00,193.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"343\",\"LGA\",\"IAH\",-1.00,20.00,0.00,\"\",0.00,261.00,203.00,1416.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,22,\"UA\",\"345\",\"LGA\",\"ORD\",-4.00,-11.00,0.00,\"\",0.00,154.00,115.00,733.00,,,,,,\n2015,5,22,\"UA\",\"368\",\"BUF\",\"ORD\",-8.00,-4.00,0.00,\"\",0.00,108.00,80.00,473.00,,,,,,\n2015,5,22,\"UA\",\"385\",\"LGA\",\"IAH\",-5.00,-20.00,0.00,\"\",0.00,225.00,202.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"406\",\"DEN\",\"LGA\",24.00,-15.00,0.00,\"\",0.00,198.00,182.00,1620.00,,,,,,\n2015,5,22,\"UA\",\"415\",\"JFK\",\"SFO\",-7.00,2.00,0.00,\"\",0.00,393.00,358.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"441\",\"JFK\",\"LAX\",2.00,1.00,0.00,\"\",0.00,375.00,345.00,2475.00,,,,,,\n2015,5,22,\"UA\",\"442\",\"IAH\",\"LGA\",6.00,-25.00,0.00,\"\",0.00,182.00,163.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"443\",\"JFK\",\"LAX\",8.00,23.00,0.00,\"\",0.00,391.00,340.00,2475.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,22,\"UA\",\"445\",\"JFK\",\"LAX\",-1.00,9.00,0.00,\"\",0.00,381.00,336.00,2475.00,,,,,,\n2015,5,22,\"UA\",\"456\",\"IAH\",\"LGA\",0.00,-22.00,0.00,\"\",0.00,192.00,174.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"462\",\"LGA\",\"IAH\",-5.00,-1.00,0.00,\"\",0.00,248.00,202.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"462\",\"ORD\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,125.00,90.00,733.00,,,,,,\n2015,5,22,\"UA\",\"463\",\"LGA\",\"ORD\",-1.00,-8.00,0.00,\"\",0.00,150.00,118.00,733.00,,,,,,\n2015,5,22,\"UA\",\"483\",\"BUF\",\"ORD\",7.00,14.00,0.00,\"\",0.00,112.00,80.00,473.00,,,,,,\n2015,5,22,\"UA\",\"502\",\"SFO\",\"JFK\",-4.00,-18.00,0.00,\"\",0.00,323.00,295.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"509\",\"ORD\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,119.00,95.00,733.00,,,,,,\n2015,5,22,\"UA\",\"510\",\"JFK\",\"SFO\",9.00,0.00,0.00,\"\",0.00,392.00,344.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"512\",\"JFK\",\"SFO\",12.00,8.00,0.00,\"\",0.00,397.00,365.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"514\",\"JFK\",\"SFO\",-1.00,-21.00,0.00,\"\",0.00,381.00,356.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"535\",\"JFK\",\"LAX\",-1.00,-7.00,0.00,\"\",0.00,368.00,344.00,2475.00,,,,,,\n2015,5,22,\"UA\",\"541\",\"JFK\",\"SFO\",-9.00,-17.00,0.00,\"\",0.00,382.00,354.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"561\",\"LGA\",\"DEN\",-6.00,10.00,0.00,\"\",0.00,282.00,236.00,1620.00,,,,,,\n2015,5,22,\"UA\",\"622\",\"LGA\",\"ORD\",-5.00,-14.00,0.00,\"\",0.00,149.00,117.00,733.00,,,,,,\n2015,5,22,\"UA\",\"637\",\"SFO\",\"JFK\",163.00,132.00,0.00,\"\",0.00,314.00,289.00,2586.00,132.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"UA\",\"656\",\"ORD\",\"BUF\",10.00,18.00,0.00,\"\",0.00,100.00,60.00,473.00,10.00,0.00,8.00,0.00,0.00,\n2015,5,22,\"UA\",\"672\",\"ORD\",\"LGA\",50.00,41.00,0.00,\"\",0.00,122.00,96.00,733.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"UA\",\"681\",\"LGA\",\"ORD\",-6.00,-4.00,0.00,\"\",0.00,162.00,115.00,733.00,,,,,,\n2015,5,22,\"UA\",\"686\",\"ORD\",\"LGA\",12.00,-5.00,0.00,\"\",0.00,114.00,95.00,733.00,,,,,,\n2015,5,22,\"UA\",\"690\",\"ORD\",\"LGA\",-6.00,-25.00,0.00,\"\",0.00,117.00,88.00,733.00,,,,,,\n2015,5,22,\"UA\",\"692\",\"ORD\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,121.00,88.00,733.00,,,,,,\n2015,5,22,\"UA\",\"693\",\"IAH\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,210.00,181.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"693\",\"LGA\",\"ORD\",41.00,11.00,0.00,\"\",0.00,140.00,109.00,733.00,,,,,,\n2015,5,22,\"UA\",\"694\",\"ORD\",\"LGA\",-6.00,-27.00,0.00,\"\",0.00,110.00,93.00,733.00,,,,,,\n2015,5,22,\"UA\",\"695\",\"LGA\",\"ORD\",-7.00,-32.00,0.00,\"\",0.00,141.00,116.00,733.00,,,,,,\n2015,5,22,\"UA\",\"699\",\"LGA\",\"ORD\",-11.00,-16.00,0.00,\"\",0.00,157.00,120.00,733.00,,,,,,\n2015,5,22,\"UA\",\"703\",\"JFK\",\"LAX\",-5.00,7.00,0.00,\"\",0.00,372.00,334.00,2475.00,,,,,,\n2015,5,22,\"UA\",\"704\",\"SFO\",\"JFK\",-1.00,-34.00,0.00,\"\",0.00,304.00,285.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"711\",\"LGA\",\"ORD\",-2.00,-1.00,0.00,\"\",0.00,156.00,116.00,733.00,,,,,,\n2015,5,22,\"UA\",\"741\",\"LGA\",\"ORD\",-10.00,-24.00,0.00,\"\",0.00,152.00,115.00,733.00,,,,,,\n2015,5,22,\"UA\",\"746\",\"LGA\",\"IAH\",45.00,36.00,0.00,\"\",0.00,233.00,204.00,1416.00,0.00,0.00,10.00,0.00,26.00,\n2015,5,22,\"UA\",\"758\",\"SFO\",\"JFK\",-6.00,-32.00,0.00,\"\",0.00,319.00,297.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"760\",\"SFO\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,321.00,303.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"765\",\"LGA\",\"ORD\",0.00,-7.00,0.00,\"\",0.00,153.00,115.00,733.00,,,,,,\n2015,5,22,\"UA\",\"766\",\"JFK\",\"SFO\",23.00,1.00,0.00,\"\",0.00,358.00,334.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"779\",\"LAX\",\"JFK\",-3.00,-36.00,0.00,\"\",0.00,302.00,280.00,2475.00,,,,,,\n2015,5,22,\"UA\",\"788\",\"DEN\",\"LGA\",0.00,-42.00,0.00,\"\",0.00,191.00,173.00,1620.00,,,,,,\n2015,5,22,\"UA\",\"791\",\"LGA\",\"IAH\",3.00,-14.00,0.00,\"\",0.00,227.00,202.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"791\",\"ORD\",\"LGA\",11.00,-8.00,0.00,\"\",0.00,112.00,92.00,733.00,,,,,,\n2015,5,22,\"UA\",\"824\",\"SFO\",\"JFK\",122.00,103.00,0.00,\"\",0.00,318.00,294.00,2586.00,95.00,0.00,0.00,0.00,8.00,\n2015,5,22,\"UA\",\"830\",\"ORD\",\"BUF\",9.00,-8.00,0.00,\"\",0.00,77.00,64.00,473.00,,,,,,\n2015,5,22,\"UA\",\"841\",\"JFK\",\"LAX\",83.00,85.00,0.00,\"\",0.00,376.00,339.00,2475.00,83.00,0.00,2.00,0.00,0.00,\n2015,5,22,\"UA\",\"867\",\"LAX\",\"JFK\",167.00,133.00,0.00,\"\",0.00,301.00,277.00,2475.00,12.00,0.00,0.00,0.00,121.00,\n2015,5,22,\"UA\",\"898\",\"SFO\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,329.00,306.00,2586.00,,,,,,\n2015,5,22,\"UA\",\"910\",\"ORD\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,112.00,91.00,733.00,,,,,,\n2015,5,22,\"UA\",\"912\",\"LAX\",\"JFK\",0.00,-29.00,0.00,\"\",0.00,296.00,276.00,2475.00,,,,,,\n2015,5,22,\"UA\",\"1042\",\"LGA\",\"DEN\",2.00,-3.00,0.00,\"\",0.00,263.00,239.00,1620.00,,,,,,\n2015,5,22,\"UA\",\"1045\",\"ORD\",\"LGA\",7.00,-27.00,0.00,\"\",0.00,101.00,84.00,733.00,,,,,,\n2015,5,22,\"UA\",\"1059\",\"DEN\",\"LGA\",133.00,90.00,0.00,\"\",0.00,192.00,175.00,1620.00,7.00,0.00,0.00,0.00,83.00,\n2015,5,22,\"UA\",\"1062\",\"IAH\",\"LGA\",3.00,-15.00,0.00,\"\",0.00,195.00,170.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"1062\",\"LGA\",\"ORD\",7.00,-10.00,0.00,\"\",0.00,148.00,118.00,733.00,,,,,,\n2015,5,22,\"UA\",\"1074\",\"ORD\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,127.00,96.00,733.00,,,,,,\n2015,5,22,\"UA\",\"1085\",\"ORD\",\"LGA\",1.00,-16.00,0.00,\"\",0.00,116.00,92.00,733.00,,,,,,\n2015,5,21,\"UA\",\"1588\",\"LGA\",\"ORD\",12.00,-6.00,0.00,\"\",0.00,135.00,117.00,733.00,,,,,,\n2015,5,21,\"UA\",\"1638\",\"ALB\",\"ORD\",-7.00,6.00,0.00,\"\",0.00,154.00,119.00,723.00,,,,,,\n2015,5,21,\"UA\",\"1671\",\"IAH\",\"LGA\",17.00,-19.00,0.00,\"\",0.00,185.00,168.00,1416.00,,,,,,\n2015,5,21,\"UA\",\"1686\",\"LGA\",\"DEN\",2.00,8.00,0.00,\"\",0.00,277.00,252.00,1620.00,,,,,,\n2015,5,21,\"UA\",\"1687\",\"LGA\",\"IAH\",3.00,-16.00,0.00,\"\",0.00,212.00,190.00,1416.00,,,,,,\n2015,5,21,\"UA\",\"1693\",\"DEN\",\"LGA\",42.00,1.00,0.00,\"\",0.00,194.00,174.00,1620.00,,,,,,\n2015,5,22,\"UA\",\"1248\",\"ORD\",\"ALB\",-3.00,-20.00,0.00,\"\",0.00,103.00,87.00,723.00,,,,,,\n2015,5,22,\"UA\",\"1283\",\"ALB\",\"ORD\",-6.00,10.00,0.00,\"\",0.00,157.00,120.00,723.00,,,,,,\n2015,5,22,\"UA\",\"1411\",\"LGA\",\"ORD\",11.00,11.00,0.00,\"\",0.00,159.00,116.00,733.00,,,,,,\n2015,5,22,\"UA\",\"1469\",\"DEN\",\"LGA\",-6.00,-28.00,0.00,\"\",0.00,205.00,187.00,1620.00,,,,,,\n2015,5,22,\"UA\",\"1588\",\"LGA\",\"ORD\",7.00,-4.00,0.00,\"\",0.00,142.00,115.00,733.00,,,,,,\n2015,5,22,\"UA\",\"1638\",\"ALB\",\"ORD\",6.00,16.00,0.00,\"\",0.00,151.00,112.00,723.00,6.00,0.00,10.00,0.00,0.00,\n2015,5,22,\"UA\",\"1671\",\"IAH\",\"LGA\",5.00,-17.00,0.00,\"\",0.00,199.00,177.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"1686\",\"LGA\",\"DEN\",0.00,-13.00,0.00,\"\",0.00,258.00,233.00,1620.00,,,,,,\n2015,5,22,\"UA\",\"1687\",\"LGA\",\"IAH\",5.00,-8.00,0.00,\"\",0.00,218.00,201.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"1693\",\"DEN\",\"LGA\",7.00,-23.00,0.00,\"\",0.00,205.00,186.00,1620.00,,,,,,\n2015,5,22,\"UA\",\"1714\",\"LGA\",\"ORD\",15.00,16.00,0.00,\"\",0.00,155.00,116.00,733.00,15.00,0.00,1.00,0.00,0.00,\n2015,5,22,\"UA\",\"1719\",\"LGA\",\"DEN\",3.00,11.00,0.00,\"\",0.00,268.00,233.00,1620.00,,,,,,\n2015,5,22,\"UA\",\"1744\",\"LGA\",\"IAH\",2.00,0.00,0.00,\"\",0.00,245.00,208.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"1744\",\"ORD\",\"LGA\",5.00,-24.00,0.00,\"\",0.00,104.00,88.00,733.00,,,,,,\n2015,5,22,\"UA\",\"1906\",\"IAH\",\"LGA\",3.00,-13.00,0.00,\"\",0.00,193.00,159.00,1416.00,,,,,,\n2015,5,22,\"UA\",\"1906\",\"LGA\",\"DEN\",4.00,-8.00,0.00,\"\",0.00,262.00,244.00,1620.00,,,,,,\n2015,5,21,\"UA\",\"212\",\"LAX\",\"JFK\",-4.00,-27.00,0.00,\"\",0.00,305.00,283.00,2475.00,,,,,,\n2015,5,21,\"UA\",\"233\",\"LAX\",\"JFK\",38.00,6.00,0.00,\"\",0.00,293.00,267.00,2475.00,,,,,,\n2015,5,21,\"UA\",\"244\",\"ORD\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,118.00,98.00,733.00,,,,,,\n2015,5,21,\"UA\",\"257\",\"JFK\",\"SFO\",1.00,-14.00,0.00,\"\",0.00,386.00,354.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"275\",\"LAX\",\"JFK\",-1.00,-34.00,0.00,\"\",0.00,302.00,281.00,2475.00,,,,,,\n2015,5,21,\"UA\",\"303\",\"DEN\",\"LGA\",11.00,-30.00,0.00,\"\",0.00,199.00,181.00,1620.00,,,,,,\n2015,5,21,\"UA\",\"303\",\"LGA\",\"IAH\",16.00,6.00,0.00,\"\",0.00,231.00,196.00,1416.00,,,,,,\n2015,5,21,\"UA\",\"343\",\"LGA\",\"IAH\",0.00,,0.00,\"\",1.00,,,1416.00,,,,,,\n2015,5,21,\"UA\",\"345\",\"LGA\",\"ORD\",-10.00,-7.00,0.00,\"\",0.00,164.00,120.00,733.00,,,,,,\n2015,5,20,\"UA\",\"1042\",\"LGA\",\"DEN\",33.00,66.00,0.00,\"\",0.00,301.00,244.00,1620.00,33.00,0.00,33.00,0.00,0.00,\n2015,5,20,\"UA\",\"1045\",\"ORD\",\"LGA\",17.00,-13.00,0.00,\"\",0.00,107.00,89.00,733.00,,,,,,\n2015,5,20,\"UA\",\"1059\",\"DEN\",\"LGA\",26.00,-6.00,0.00,\"\",0.00,203.00,177.00,1620.00,,,,,,\n2015,5,20,\"UA\",\"1062\",\"IAH\",\"LGA\",2.00,-14.00,0.00,\"\",0.00,197.00,178.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"1062\",\"LGA\",\"ORD\",314.00,310.00,0.00,\"\",0.00,161.00,120.00,733.00,0.00,0.00,17.00,0.00,293.00,\n2015,5,20,\"UA\",\"1085\",\"ORD\",\"LGA\",312.00,299.00,0.00,\"\",0.00,120.00,92.00,733.00,57.00,0.00,0.00,0.00,242.00,\n2015,5,20,\"UA\",\"1123\",\"LGA\",\"DEN\",3.00,14.00,0.00,\"\",0.00,275.00,233.00,1620.00,,,,,,\n2015,5,20,\"UA\",\"1190\",\"ORD\",\"ALB\",41.00,30.00,0.00,\"\",0.00,109.00,82.00,723.00,25.00,0.00,0.00,0.00,5.00,\n2015,5,20,\"UA\",\"1218\",\"LGA\",\"ORD\",6.00,8.00,0.00,\"\",0.00,160.00,121.00,733.00,,,,,,\n2015,5,20,\"UA\",\"1248\",\"ORD\",\"ALB\",-1.00,-14.00,0.00,\"\",0.00,107.00,86.00,723.00,,,,,,\n2015,5,20,\"UA\",\"1283\",\"ALB\",\"ORD\",36.00,51.00,0.00,\"\",0.00,156.00,124.00,723.00,11.00,0.00,15.00,0.00,25.00,\n2015,5,20,\"UA\",\"1456\",\"LGA\",\"IAH\",3.00,-29.00,0.00,\"\",0.00,210.00,188.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"1459\",\"IAH\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,199.00,170.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"1469\",\"DEN\",\"LGA\",4.00,-35.00,0.00,\"\",0.00,188.00,173.00,1620.00,,,,,,\n2015,5,20,\"UA\",\"1483\",\"DEN\",\"LGA\",2.00,-26.00,0.00,\"\",0.00,207.00,178.00,1620.00,,,,,,\n2015,5,20,\"UA\",\"1548\",\"IAH\",\"LGA\",2.00,-2.00,0.00,\"\",0.00,211.00,169.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"1588\",\"LGA\",\"ORD\",-3.00,-5.00,0.00,\"\",0.00,151.00,124.00,733.00,,,,,,\n2015,5,20,\"UA\",\"1608\",\"LGA\",\"ORD\",7.00,19.00,0.00,\"\",0.00,171.00,115.00,733.00,7.00,0.00,12.00,0.00,0.00,\n2015,5,20,\"UA\",\"1638\",\"ALB\",\"ORD\",-1.00,4.00,0.00,\"\",0.00,146.00,125.00,723.00,,,,,,\n2015,5,20,\"UA\",\"1671\",\"IAH\",\"LGA\",64.00,36.00,0.00,\"\",0.00,193.00,167.00,1416.00,6.00,0.00,0.00,0.00,30.00,\n2015,5,20,\"UA\",\"1687\",\"LGA\",\"IAH\",11.00,-12.00,0.00,\"\",0.00,208.00,187.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"1693\",\"DEN\",\"LGA\",16.00,-23.00,0.00,\"\",0.00,196.00,174.00,1620.00,,,,,,\n2015,5,20,\"UA\",\"1714\",\"LGA\",\"ORD\",2.00,-2.00,0.00,\"\",0.00,150.00,117.00,733.00,,,,,,\n2015,5,20,\"UA\",\"1719\",\"LGA\",\"DEN\",-2.00,19.00,0.00,\"\",0.00,281.00,234.00,1620.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,20,\"UA\",\"1722\",\"IAH\",\"LGA\",10.00,3.00,0.00,\"\",0.00,212.00,172.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"1744\",\"LGA\",\"IAH\",7.00,9.00,0.00,\"\",0.00,249.00,198.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"1744\",\"ORD\",\"LGA\",-2.00,-23.00,0.00,\"\",0.00,112.00,89.00,733.00,,,,,,\n2015,5,1,\"NK\",\"630\",\"ORD\",\"LGA\",22.00,21.00,0.00,\"\",0.00,129.00,109.00,733.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"NK\",\"630\",\"ORD\",\"LGA\",104.00,95.00,0.00,\"\",0.00,121.00,100.00,733.00,95.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"NK\",\"630\",\"ORD\",\"LGA\",31.00,32.00,0.00,\"\",0.00,131.00,103.00,733.00,24.00,0.00,1.00,0.00,7.00,\n2015,5,4,\"NK\",\"630\",\"ORD\",\"LGA\",86.00,71.00,0.00,\"\",0.00,115.00,98.00,733.00,5.00,0.00,1.00,0.00,65.00,\n2015,5,5,\"NK\",\"630\",\"ORD\",\"LGA\",72.00,66.00,0.00,\"\",0.00,124.00,98.00,733.00,0.00,0.00,66.00,0.00,0.00,\n2015,5,19,\"UA\",\"285\",\"IAH\",\"LGA\",22.00,13.00,0.00,\"\",0.00,209.00,181.00,1416.00,,,,,,\n2015,5,19,\"UA\",\"303\",\"DEN\",\"LGA\",62.00,34.00,0.00,\"\",0.00,212.00,181.00,1620.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,19,\"UA\",\"303\",\"LGA\",\"IAH\",103.00,81.00,0.00,\"\",0.00,219.00,182.00,1416.00,0.00,0.00,1.00,0.00,80.00,\n2015,5,19,\"UA\",\"343\",\"LGA\",\"IAH\",,,1.00,\"C\",0.00,,,1416.00,,,,,,\n2015,5,19,\"UA\",\"345\",\"LGA\",\"ORD\",-6.00,-24.00,0.00,\"\",0.00,143.00,119.00,733.00,,,,,,\n2015,5,19,\"UA\",\"368\",\"BUF\",\"ORD\",-4.00,-7.00,0.00,\"\",0.00,101.00,83.00,473.00,,,,,,\n2015,5,19,\"UA\",\"406\",\"DEN\",\"LGA\",47.00,30.00,0.00,\"\",0.00,220.00,181.00,1620.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,19,\"UA\",\"415\",\"JFK\",\"SFO\",0.00,-3.00,0.00,\"\",0.00,381.00,355.00,2586.00,,,,,,\n2015,5,19,\"UA\",\"441\",\"JFK\",\"LAX\",-3.00,-17.00,0.00,\"\",0.00,362.00,336.00,2475.00,,,,,,\n2015,5,19,\"UA\",\"442\",\"IAH\",\"LGA\",121.00,98.00,0.00,\"\",0.00,190.00,165.00,1416.00,15.00,0.00,0.00,0.00,83.00,\n2015,5,19,\"UA\",\"443\",\"JFK\",\"LAX\",-8.00,-2.00,0.00,\"\",0.00,382.00,337.00,2475.00,,,,,,\n2015,5,19,\"UA\",\"445\",\"JFK\",\"LAX\",-1.00,40.00,0.00,\"\",0.00,412.00,343.00,2475.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,19,\"UA\",\"456\",\"IAH\",\"LGA\",-8.00,-5.00,0.00,\"\",0.00,217.00,182.00,1416.00,,,,,,\n2015,5,19,\"UA\",\"462\",\"LGA\",\"IAH\",14.00,-17.00,0.00,\"\",0.00,213.00,191.00,1416.00,,,,,,\n2015,5,19,\"UA\",\"462\",\"ORD\",\"LGA\",,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,19,\"UA\",\"463\",\"LGA\",\"ORD\",-1.00,12.00,0.00,\"\",0.00,170.00,116.00,733.00,,,,,,\n2015,5,19,\"UA\",\"483\",\"BUF\",\"ORD\",28.00,20.00,0.00,\"\",0.00,97.00,77.00,473.00,6.00,0.00,0.00,0.00,14.00,\n2015,5,19,\"UA\",\"502\",\"SFO\",\"JFK\",5.00,-22.00,0.00,\"\",0.00,310.00,285.00,2586.00,,,,,,\n2015,5,19,\"UA\",\"509\",\"ORD\",\"LGA\",116.00,113.00,0.00,\"\",0.00,128.00,94.00,733.00,0.00,0.00,113.00,0.00,0.00,\n2015,5,19,\"UA\",\"510\",\"JFK\",\"SFO\",-1.00,20.00,0.00,\"\",0.00,422.00,364.00,2586.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,19,\"UA\",\"512\",\"JFK\",\"SFO\",97.00,102.00,0.00,\"\",0.00,406.00,345.00,2586.00,0.00,0.00,102.00,0.00,0.00,\n2015,5,19,\"UA\",\"514\",\"JFK\",\"SFO\",46.00,55.00,0.00,\"\",0.00,410.00,339.00,2586.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,19,\"UA\",\"535\",\"JFK\",\"LAX\",-2.00,19.00,0.00,\"\",0.00,395.00,355.00,2475.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,19,\"UA\",\"541\",\"JFK\",\"SFO\",104.00,88.00,0.00,\"\",0.00,374.00,345.00,2586.00,88.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"UA\",\"561\",\"LGA\",\"DEN\",-2.00,9.00,0.00,\"\",0.00,277.00,244.00,1620.00,,,,,,\n2015,5,19,\"UA\",\"622\",\"LGA\",\"ORD\",109.00,126.00,0.00,\"\",0.00,175.00,122.00,733.00,16.00,0.00,17.00,0.00,93.00,\n2015,5,19,\"UA\",\"637\",\"SFO\",\"JFK\",3.00,-19.00,0.00,\"\",0.00,323.00,299.00,2586.00,,,,,,\n2015,5,19,\"UA\",\"656\",\"ORD\",\"BUF\",37.00,31.00,0.00,\"\",0.00,86.00,65.00,473.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"UA\",\"672\",\"ORD\",\"LGA\",82.00,69.00,0.00,\"\",0.00,118.00,87.00,733.00,0.00,0.00,69.00,0.00,0.00,\n2015,5,19,\"UA\",\"681\",\"LGA\",\"ORD\",76.00,71.00,0.00,\"\",0.00,155.00,122.00,733.00,0.00,20.00,0.00,0.00,51.00,\n2015,5,19,\"UA\",\"686\",\"ORD\",\"LGA\",41.00,54.00,0.00,\"\",0.00,144.00,91.00,733.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,19,\"UA\",\"687\",\"LGA\",\"ORD\",51.00,62.00,0.00,\"\",0.00,177.00,126.00,733.00,11.00,0.00,11.00,0.00,40.00,\n2015,5,19,\"UA\",\"690\",\"ORD\",\"LGA\",60.00,55.00,0.00,\"\",0.00,131.00,95.00,733.00,0.00,0.00,29.00,0.00,26.00,\n2015,5,19,\"UA\",\"692\",\"ORD\",\"LGA\",72.00,53.00,0.00,\"\",0.00,117.00,96.00,733.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,19,\"UA\",\"693\",\"IAH\",\"LGA\",119.00,107.00,0.00,\"\",0.00,203.00,182.00,1416.00,0.00,0.00,55.00,0.00,52.00,\n2015,5,19,\"UA\",\"693\",\"LGA\",\"ORD\",82.00,59.00,0.00,\"\",0.00,147.00,119.00,733.00,0.00,0.00,0.00,0.00,59.00,\n2015,5,19,\"UA\",\"694\",\"ORD\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,124.00,95.00,733.00,,,,,,\n2015,5,19,\"UA\",\"695\",\"LGA\",\"ORD\",40.00,18.00,0.00,\"\",0.00,144.00,122.00,733.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,19,\"UA\",\"698\",\"ORD\",\"LGA\",2.00,-19.00,0.00,\"\",0.00,113.00,90.00,733.00,,,,,,\n2015,5,19,\"UA\",\"699\",\"LGA\",\"ORD\",115.00,100.00,0.00,\"\",0.00,147.00,116.00,733.00,0.00,0.00,10.00,0.00,90.00,\n2015,5,19,\"UA\",\"703\",\"JFK\",\"LAX\",-6.00,-22.00,0.00,\"\",0.00,344.00,319.00,2475.00,,,,,,\n2015,5,19,\"UA\",\"704\",\"SFO\",\"JFK\",0.00,-25.00,0.00,\"\",0.00,312.00,290.00,2586.00,,,,,,\n2015,5,19,\"UA\",\"711\",\"LGA\",\"ORD\",15.00,7.00,0.00,\"\",0.00,147.00,115.00,733.00,,,,,,\n2015,5,19,\"UA\",\"746\",\"LGA\",\"IAH\",70.00,59.00,0.00,\"\",0.00,231.00,210.00,1416.00,0.00,8.00,0.00,0.00,51.00,\n2015,5,19,\"UA\",\"758\",\"SFO\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,331.00,304.00,2586.00,,,,,,\n2015,5,19,\"UA\",\"760\",\"SFO\",\"JFK\",-5.00,17.00,0.00,\"\",0.00,367.00,341.00,2586.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,19,\"UA\",\"765\",\"LGA\",\"ORD\",113.00,137.00,0.00,\"\",0.00,184.00,124.00,733.00,0.00,0.00,42.00,0.00,95.00,\n2015,5,19,\"UA\",\"766\",\"JFK\",\"SFO\",10.00,2.00,0.00,\"\",0.00,372.00,341.00,2586.00,,,,,,\n2015,5,19,\"UA\",\"779\",\"LAX\",\"JFK\",1.00,-29.00,0.00,\"\",0.00,305.00,283.00,2475.00,,,,,,\n2015,5,19,\"UA\",\"791\",\"LGA\",\"IAH\",27.00,35.00,0.00,\"\",0.00,252.00,186.00,1416.00,0.00,0.00,22.00,0.00,13.00,\n2015,5,19,\"UA\",\"791\",\"ORD\",\"LGA\",88.00,104.00,0.00,\"\",0.00,147.00,93.00,733.00,0.00,0.00,104.00,0.00,0.00,\n2015,5,19,\"UA\",\"824\",\"SFO\",\"JFK\",15.00,3.00,0.00,\"\",0.00,325.00,288.00,2586.00,,,,,,\n2015,5,19,\"UA\",\"830\",\"ORD\",\"BUF\",32.00,15.00,0.00,\"\",0.00,77.00,59.00,473.00,11.00,0.00,0.00,0.00,4.00,\n2015,5,19,\"UA\",\"841\",\"JFK\",\"LAX\",-4.00,12.00,0.00,\"\",0.00,390.00,342.00,2475.00,,,,,,\n2015,5,19,\"UA\",\"867\",\"LAX\",\"JFK\",1.00,-16.00,0.00,\"\",0.00,318.00,285.00,2475.00,,,,,,\n2015,5,19,\"UA\",\"898\",\"SFO\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,330.00,299.00,2586.00,,,,,,\n2015,5,19,\"UA\",\"910\",\"ORD\",\"LGA\",61.00,72.00,0.00,\"\",0.00,142.00,92.00,733.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,19,\"UA\",\"912\",\"LAX\",\"JFK\",0.00,-44.00,0.00,\"\",0.00,281.00,263.00,2475.00,,,,,,\n2015,5,19,\"UA\",\"1042\",\"LGA\",\"DEN\",53.00,68.00,0.00,\"\",0.00,283.00,241.00,1620.00,45.00,0.00,15.00,0.00,8.00,\n2015,5,19,\"UA\",\"1059\",\"DEN\",\"LGA\",21.00,-5.00,0.00,\"\",0.00,209.00,187.00,1620.00,,,,,,\n2015,5,19,\"UA\",\"1062\",\"IAH\",\"LGA\",2.00,-5.00,0.00,\"\",0.00,206.00,168.00,1416.00,,,,,,\n2015,5,19,\"UA\",\"1062\",\"LGA\",\"ORD\",135.00,148.00,0.00,\"\",0.00,178.00,122.00,733.00,16.00,0.00,13.00,0.00,119.00,\n2015,5,19,\"UA\",\"1074\",\"ORD\",\"LGA\",17.00,-4.00,0.00,\"\",0.00,116.00,93.00,733.00,,,,,,\n2015,5,19,\"UA\",\"1085\",\"ORD\",\"LGA\",124.00,121.00,0.00,\"\",0.00,130.00,97.00,733.00,0.00,0.00,121.00,0.00,0.00,\n2015,5,19,\"UA\",\"1123\",\"LGA\",\"DEN\",95.00,80.00,0.00,\"\",0.00,249.00,227.00,1620.00,0.00,13.00,0.00,0.00,67.00,\n2015,5,19,\"UA\",\"1145\",\"LGA\",\"ORD\",3.00,-12.00,0.00,\"\",0.00,144.00,115.00,733.00,,,,,,\n2015,5,19,\"UA\",\"1190\",\"ORD\",\"ALB\",18.00,7.00,0.00,\"\",0.00,109.00,91.00,723.00,,,,,,\n2015,5,19,\"UA\",\"1194\",\"IAH\",\"LGA\",70.00,67.00,0.00,\"\",0.00,215.00,183.00,1416.00,0.00,0.00,67.00,0.00,0.00,\n2015,5,19,\"UA\",\"1214\",\"ORD\",\"LGA\",50.00,34.00,0.00,\"\",0.00,121.00,95.00,733.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,19,\"UA\",\"1218\",\"LGA\",\"ORD\",19.00,-3.00,0.00,\"\",0.00,136.00,117.00,733.00,,,,,,\n2015,5,19,\"UA\",\"1248\",\"ORD\",\"ALB\",133.00,117.00,0.00,\"\",0.00,104.00,85.00,723.00,117.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"UA\",\"1283\",\"ALB\",\"ORD\",13.00,9.00,0.00,\"\",0.00,137.00,112.00,723.00,,,,,,\n2015,5,19,\"UA\",\"1456\",\"LGA\",\"IAH\",46.00,33.00,0.00,\"\",0.00,229.00,192.00,1416.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"UA\",\"1469\",\"DEN\",\"LGA\",149.00,124.00,0.00,\"\",0.00,202.00,179.00,1620.00,0.00,0.00,124.00,0.00,0.00,\n2015,5,19,\"UA\",\"1483\",\"DEN\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,215.00,175.00,1620.00,,,,,,\n2015,5,18,\"UA\",\"1960\",\"LGA\",\"DEN\",20.00,2.00,0.00,\"\",0.00,246.00,222.00,1620.00,,,,,,\n2015,5,17,\"UA\",\"210\",\"LGA\",\"IAH\",-11.00,-41.00,0.00,\"\",0.00,214.00,184.00,1416.00,,,,,,\n2015,5,17,\"UA\",\"212\",\"LAX\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,310.00,291.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"233\",\"LAX\",\"JFK\",0.00,-26.00,0.00,\"\",0.00,299.00,278.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"257\",\"JFK\",\"SFO\",-1.00,-27.00,0.00,\"\",0.00,375.00,346.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"275\",\"LAX\",\"JFK\",5.00,-19.00,0.00,\"\",0.00,311.00,289.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"296\",\"IAH\",\"LGA\",21.00,12.00,0.00,\"\",0.00,203.00,175.00,1416.00,,,,,,\n2015,5,17,\"UA\",\"296\",\"LGA\",\"DEN\",13.00,-1.00,0.00,\"\",0.00,258.00,221.00,1620.00,,,,,,\n2015,5,17,\"UA\",\"305\",\"LGA\",\"ORD\",-1.00,-14.00,0.00,\"\",0.00,144.00,107.00,733.00,,,,,,\n2015,5,17,\"UA\",\"333\",\"IAH\",\"LGA\",65.00,49.00,0.00,\"\",0.00,203.00,184.00,1416.00,0.00,19.00,0.00,0.00,30.00,\n2015,5,17,\"UA\",\"347\",\"DEN\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,211.00,191.00,1620.00,,,,,,\n2015,5,17,\"UA\",\"347\",\"LGA\",\"IAH\",-4.00,-3.00,0.00,\"\",0.00,246.00,222.00,1416.00,,,,,,\n2015,5,17,\"UA\",\"381\",\"LGA\",\"ORD\",-7.00,-24.00,0.00,\"\",0.00,141.00,107.00,733.00,,,,,,\n2015,5,17,\"UA\",\"388\",\"ORD\",\"LGA\",-9.00,-22.00,0.00,\"\",0.00,123.00,96.00,733.00,,,,,,\n2015,5,17,\"UA\",\"415\",\"JFK\",\"SFO\",1.00,8.00,0.00,\"\",0.00,391.00,341.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"442\",\"IAH\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,196.00,178.00,1416.00,,,,,,\n2015,5,17,\"UA\",\"443\",\"JFK\",\"LAX\",3.00,4.00,0.00,\"\",0.00,377.00,337.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"445\",\"JFK\",\"LAX\",-8.00,-3.00,0.00,\"\",0.00,376.00,317.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"483\",\"BUF\",\"ORD\",7.00,17.00,0.00,\"\",0.00,115.00,78.00,473.00,7.00,0.00,10.00,0.00,0.00,\n2015,5,17,\"UA\",\"495\",\"DEN\",\"LGA\",-6.00,-34.00,0.00,\"\",0.00,212.00,193.00,1620.00,,,,,,\n2015,5,17,\"UA\",\"502\",\"SFO\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,310.00,292.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"510\",\"JFK\",\"SFO\",-4.00,-30.00,0.00,\"\",0.00,375.00,351.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"512\",\"JFK\",\"SFO\",5.00,-8.00,0.00,\"\",0.00,388.00,359.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"514\",\"JFK\",\"SFO\",1.00,-25.00,0.00,\"\",0.00,375.00,354.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"535\",\"JFK\",\"LAX\",8.00,-9.00,0.00,\"\",0.00,357.00,325.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"559\",\"ORD\",\"ALB\",-10.00,-20.00,0.00,\"\",0.00,109.00,90.00,723.00,,,,,,\n2015,5,17,\"UA\",\"589\",\"BUF\",\"ORD\",-6.00,-13.00,0.00,\"\",0.00,97.00,75.00,473.00,,,,,,\n2015,5,21,\"UA\",\"686\",\"ORD\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,114.00,95.00,733.00,,,,,,\n2015,5,21,\"UA\",\"690\",\"ORD\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,131.00,98.00,733.00,,,,,,\n2015,5,21,\"UA\",\"692\",\"ORD\",\"LGA\",25.00,16.00,0.00,\"\",0.00,127.00,97.00,733.00,4.00,0.00,0.00,0.00,12.00,\n2015,5,21,\"UA\",\"693\",\"IAH\",\"LGA\",39.00,15.00,0.00,\"\",0.00,191.00,169.00,1416.00,0.00,4.00,0.00,0.00,11.00,\n2015,5,21,\"UA\",\"693\",\"LGA\",\"ORD\",0.00,-28.00,0.00,\"\",0.00,142.00,111.00,733.00,,,,,,\n2015,5,21,\"UA\",\"694\",\"ORD\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,120.00,93.00,733.00,,,,,,\n2015,5,21,\"UA\",\"695\",\"LGA\",\"ORD\",-3.00,-18.00,0.00,\"\",0.00,151.00,112.00,733.00,,,,,,\n2015,5,21,\"UA\",\"698\",\"ORD\",\"LGA\",20.00,-3.00,0.00,\"\",0.00,111.00,91.00,733.00,,,,,,\n2015,5,21,\"UA\",\"699\",\"LGA\",\"ORD\",10.00,1.00,0.00,\"\",0.00,153.00,111.00,733.00,,,,,,\n2015,5,21,\"UA\",\"703\",\"JFK\",\"LAX\",-7.00,-5.00,0.00,\"\",0.00,362.00,341.00,2475.00,,,,,,\n2015,5,21,\"UA\",\"704\",\"SFO\",\"JFK\",43.00,19.00,0.00,\"\",0.00,313.00,294.00,2586.00,6.00,0.00,0.00,0.00,13.00,\n2015,5,21,\"UA\",\"711\",\"LGA\",\"ORD\",-2.00,-16.00,0.00,\"\",0.00,141.00,118.00,733.00,,,,,,\n2015,5,21,\"UA\",\"741\",\"LGA\",\"ORD\",-7.00,-4.00,0.00,\"\",0.00,169.00,114.00,733.00,,,,,,\n2015,5,21,\"UA\",\"746\",\"LGA\",\"IAH\",-4.00,-10.00,0.00,\"\",0.00,236.00,200.00,1416.00,,,,,,\n2015,5,21,\"UA\",\"758\",\"SFO\",\"JFK\",-8.00,-46.00,0.00,\"\",0.00,307.00,287.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"760\",\"SFO\",\"JFK\",-1.00,-38.00,0.00,\"\",0.00,308.00,286.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"765\",\"LGA\",\"ORD\",1.00,-16.00,0.00,\"\",0.00,143.00,113.00,733.00,,,,,,\n2015,5,21,\"UA\",\"766\",\"JFK\",\"SFO\",-2.00,-2.00,0.00,\"\",0.00,380.00,354.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"779\",\"LAX\",\"JFK\",5.00,-33.00,0.00,\"\",0.00,297.00,275.00,2475.00,,,,,,\n2015,5,21,\"UA\",\"791\",\"LGA\",\"IAH\",3.00,32.00,0.00,\"\",0.00,273.00,215.00,1416.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,21,\"UA\",\"824\",\"SFO\",\"JFK\",-5.00,-12.00,0.00,\"\",0.00,330.00,297.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"830\",\"ORD\",\"BUF\",1.00,-4.00,0.00,\"\",0.00,89.00,67.00,473.00,,,,,,\n2015,5,21,\"UA\",\"841\",\"JFK\",\"LAX\",0.00,1.00,0.00,\"\",0.00,375.00,346.00,2475.00,,,,,,\n2015,5,21,\"UA\",\"867\",\"LAX\",\"JFK\",1.00,-25.00,0.00,\"\",0.00,309.00,286.00,2475.00,,,,,,\n2015,5,21,\"UA\",\"898\",\"SFO\",\"JFK\",0.00,-22.00,0.00,\"\",0.00,323.00,295.00,2586.00,,,,,,\n2015,5,21,\"UA\",\"910\",\"ORD\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,114.00,96.00,733.00,,,,,,\n2015,5,21,\"UA\",\"912\",\"LAX\",\"JFK\",17.00,-10.00,0.00,\"\",0.00,298.00,271.00,2475.00,,,,,,\n2015,5,21,\"UA\",\"1042\",\"LGA\",\"DEN\",18.00,28.00,0.00,\"\",0.00,278.00,226.00,1620.00,0.00,0.00,27.00,0.00,1.00,\n2015,5,21,\"UA\",\"1059\",\"DEN\",\"LGA\",4.00,-37.00,0.00,\"\",0.00,194.00,180.00,1620.00,,,,,,\n2015,5,21,\"UA\",\"1062\",\"IAH\",\"LGA\",3.00,19.00,0.00,\"\",0.00,229.00,175.00,1416.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,21,\"UA\",\"1062\",\"LGA\",\"ORD\",0.00,5.00,0.00,\"\",0.00,170.00,114.00,733.00,,,,,,\n2015,5,21,\"UA\",\"1085\",\"ORD\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,125.00,92.00,733.00,,,,,,\n2015,5,21,\"UA\",\"1123\",\"LGA\",\"DEN\",1.00,-7.00,0.00,\"\",0.00,256.00,233.00,1620.00,,,,,,\n2015,5,21,\"UA\",\"1145\",\"LGA\",\"ORD\",7.00,-8.00,0.00,\"\",0.00,144.00,118.00,733.00,,,,,,\n2015,5,21,\"UA\",\"1190\",\"ORD\",\"ALB\",-4.00,-18.00,0.00,\"\",0.00,106.00,88.00,723.00,,,,,,\n2015,5,21,\"UA\",\"1194\",\"IAH\",\"LGA\",95.00,65.00,0.00,\"\",0.00,188.00,167.00,1416.00,11.00,0.00,0.00,0.00,54.00,\n2015,5,21,\"UA\",\"1214\",\"ORD\",\"LGA\",35.00,11.00,0.00,\"\",0.00,113.00,94.00,733.00,,,,,,\n2015,5,21,\"UA\",\"1218\",\"LGA\",\"ORD\",3.00,-20.00,0.00,\"\",0.00,135.00,116.00,733.00,,,,,,\n2015,5,21,\"UA\",\"1248\",\"ORD\",\"ALB\",27.00,13.00,0.00,\"\",0.00,106.00,86.00,723.00,,,,,,\n2015,5,21,\"UA\",\"1283\",\"ALB\",\"ORD\",11.00,0.00,0.00,\"\",0.00,130.00,107.00,723.00,,,,,,\n2015,5,21,\"UA\",\"1456\",\"LGA\",\"IAH\",220.00,233.00,0.00,\"\",0.00,255.00,235.00,1416.00,220.00,0.00,13.00,0.00,0.00,\n2015,5,21,\"UA\",\"1469\",\"DEN\",\"LGA\",3.00,-31.00,0.00,\"\",0.00,193.00,177.00,1620.00,,,,,,\n2015,5,21,\"UA\",\"1483\",\"DEN\",\"LGA\",4.00,-30.00,0.00,\"\",0.00,201.00,185.00,1620.00,,,,,,\n2015,5,19,\"UA\",\"1588\",\"LGA\",\"ORD\",5.00,-6.00,0.00,\"\",0.00,142.00,119.00,733.00,,,,,,\n2015,5,19,\"UA\",\"1638\",\"ALB\",\"ORD\",8.00,12.00,0.00,\"\",0.00,145.00,114.00,723.00,,,,,,\n2015,5,19,\"UA\",\"1671\",\"IAH\",\"LGA\",66.00,59.00,0.00,\"\",0.00,214.00,182.00,1416.00,0.00,0.00,52.00,0.00,7.00,\n2015,5,19,\"UA\",\"1686\",\"LGA\",\"DEN\",5.00,-7.00,0.00,\"\",0.00,259.00,239.00,1620.00,,,,,,\n2015,5,19,\"UA\",\"1687\",\"LGA\",\"IAH\",2.00,-15.00,0.00,\"\",0.00,214.00,192.00,1416.00,,,,,,\n2015,5,19,\"UA\",\"1693\",\"DEN\",\"LGA\",39.00,8.00,0.00,\"\",0.00,204.00,185.00,1620.00,,,,,,\n2015,5,19,\"UA\",\"1714\",\"LGA\",\"ORD\",-4.00,-7.00,0.00,\"\",0.00,151.00,119.00,733.00,,,,,,\n2015,5,19,\"UA\",\"1719\",\"LGA\",\"DEN\",58.00,53.00,0.00,\"\",0.00,255.00,234.00,1620.00,53.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"UA\",\"1744\",\"LGA\",\"IAH\",137.00,152.00,0.00,\"\",0.00,262.00,187.00,1416.00,0.00,0.00,29.00,0.00,123.00,\n2015,5,19,\"UA\",\"1744\",\"ORD\",\"LGA\",84.00,81.00,0.00,\"\",0.00,130.00,90.00,733.00,0.00,0.00,81.00,0.00,0.00,\n2015,5,19,\"UA\",\"1906\",\"IAH\",\"LGA\",8.00,4.00,0.00,\"\",0.00,205.00,182.00,1416.00,,,,,,\n2015,5,19,\"UA\",\"1906\",\"LGA\",\"DEN\",7.00,-3.00,0.00,\"\",0.00,264.00,240.00,1620.00,,,,,,\n2015,5,18,\"UA\",\"212\",\"LAX\",\"JFK\",-6.00,-22.00,0.00,\"\",0.00,312.00,298.00,2475.00,,,,,,\n2015,5,18,\"UA\",\"233\",\"LAX\",\"JFK\",-2.00,71.00,0.00,\"\",0.00,398.00,365.00,2475.00,0.00,0.00,71.00,0.00,0.00,\n2015,5,18,\"UA\",\"244\",\"ORD\",\"LGA\",42.00,171.00,0.00,\"\",0.00,265.00,141.00,733.00,0.00,0.00,171.00,0.00,0.00,\n2015,5,18,\"UA\",\"257\",\"JFK\",\"SFO\",-12.00,-26.00,0.00,\"\",0.00,387.00,344.00,2586.00,,,,,,\n2015,5,18,\"UA\",\"275\",\"LAX\",\"JFK\",-3.00,-32.00,0.00,\"\",0.00,306.00,289.00,2475.00,,,,,,\n2015,5,18,\"UA\",\"303\",\"DEN\",\"LGA\",213.00,224.00,0.00,\"\",0.00,251.00,227.00,1620.00,0.00,0.00,224.00,0.00,0.00,\n2015,5,18,\"UA\",\"303\",\"LGA\",\"IAH\",197.00,202.00,0.00,\"\",0.00,246.00,193.00,1416.00,18.00,0.00,5.00,0.00,179.00,\n2015,5,18,\"UA\",\"343\",\"LGA\",\"IAH\",-1.00,-34.00,0.00,\"\",0.00,207.00,190.00,1416.00,,,,,,\n2015,5,18,\"UA\",\"345\",\"LGA\",\"ORD\",40.00,11.00,0.00,\"\",0.00,132.00,108.00,733.00,,,,,,\n2015,5,18,\"UA\",\"368\",\"BUF\",\"ORD\",-3.00,-8.00,0.00,\"\",0.00,99.00,81.00,473.00,,,,,,\n2015,5,18,\"UA\",\"406\",\"DEN\",\"LGA\",75.00,55.00,0.00,\"\",0.00,217.00,188.00,1620.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,18,\"UA\",\"415\",\"JFK\",\"SFO\",-10.00,-31.00,0.00,\"\",0.00,363.00,338.00,2586.00,,,,,,\n2015,5,18,\"UA\",\"441\",\"JFK\",\"LAX\",-2.00,-13.00,0.00,\"\",0.00,365.00,321.00,2475.00,,,,,,\n2015,5,18,\"UA\",\"442\",\"IAH\",\"LGA\",79.00,78.00,0.00,\"\",0.00,212.00,181.00,1416.00,0.00,0.00,78.00,0.00,0.00,\n2015,5,18,\"UA\",\"443\",\"JFK\",\"LAX\",-7.00,11.00,0.00,\"\",0.00,394.00,328.00,2475.00,,,,,,\n2015,5,18,\"UA\",\"445\",\"JFK\",\"LAX\",132.00,224.00,0.00,\"\",0.00,463.00,355.00,2475.00,14.00,0.00,92.00,0.00,118.00,\n2015,5,18,\"UA\",\"456\",\"IAH\",\"LGA\",,,1.00,\"C\",0.00,,,1416.00,,,,,,\n2015,5,18,\"UA\",\"462\",\"LGA\",\"IAH\",188.00,162.00,0.00,\"\",0.00,218.00,189.00,1416.00,3.00,0.00,0.00,0.00,159.00,\n2015,5,18,\"UA\",\"462\",\"ORD\",\"LGA\",160.00,214.00,0.00,\"\",0.00,185.00,131.00,733.00,0.00,160.00,54.00,0.00,0.00,\n2015,5,18,\"UA\",\"463\",\"LGA\",\"ORD\",-2.00,-33.00,0.00,\"\",0.00,126.00,109.00,733.00,,,,,,\n2015,5,18,\"UA\",\"483\",\"BUF\",\"ORD\",-13.00,4.00,0.00,\"\",0.00,122.00,75.00,473.00,,,,,,\n2015,5,18,\"UA\",\"502\",\"SFO\",\"JFK\",-2.00,21.00,0.00,\"\",0.00,360.00,332.00,2586.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,18,\"UA\",\"509\",\"ORD\",\"LGA\",,,1.00,\"C\",0.00,,,733.00,,,,,,\n2015,5,18,\"UA\",\"510\",\"JFK\",\"SFO\",1.00,-12.00,0.00,\"\",0.00,388.00,363.00,2586.00,,,,,,\n2015,5,18,\"UA\",\"512\",\"JFK\",\"SFO\",104.00,136.00,0.00,\"\",0.00,433.00,363.00,2586.00,0.00,0.00,136.00,0.00,0.00,\n2015,5,18,\"UA\",\"514\",\"JFK\",\"SFO\",195.00,201.00,0.00,\"\",0.00,407.00,358.00,2586.00,0.00,0.00,14.00,0.00,187.00,\n2015,5,18,\"UA\",\"535\",\"JFK\",\"LAX\",-2.00,-19.00,0.00,\"\",0.00,357.00,325.00,2475.00,,,,,,\n2015,5,18,\"UA\",\"541\",\"JFK\",\"SFO\",-4.00,1.00,0.00,\"\",0.00,395.00,340.00,2586.00,,,,,,\n2015,5,18,\"UA\",\"561\",\"LGA\",\"DEN\",-3.00,-30.00,0.00,\"\",0.00,239.00,220.00,1620.00,,,,,,\n2015,5,18,\"UA\",\"622\",\"LGA\",\"ORD\",90.00,65.00,0.00,\"\",0.00,133.00,110.00,733.00,0.00,12.00,0.00,0.00,53.00,\n2015,5,18,\"UA\",\"637\",\"SFO\",\"JFK\",142.00,150.00,0.00,\"\",0.00,353.00,332.00,2586.00,0.00,0.00,150.00,0.00,0.00,\n2015,5,18,\"UA\",\"656\",\"ORD\",\"BUF\",-4.00,-17.00,0.00,\"\",0.00,79.00,63.00,473.00,,,,,,\n2015,5,18,\"UA\",\"672\",\"ORD\",\"LGA\",45.00,49.00,0.00,\"\",0.00,135.00,96.00,733.00,0.00,45.00,4.00,0.00,0.00,\n2015,5,18,\"UA\",\"681\",\"LGA\",\"ORD\",158.00,177.00,0.00,\"\",0.00,179.00,110.00,733.00,0.00,12.00,19.00,0.00,146.00,\n2015,5,21,\"UA\",\"1714\",\"LGA\",\"ORD\",-1.00,-7.00,0.00,\"\",0.00,148.00,122.00,733.00,,,,,,\n2015,5,21,\"UA\",\"1719\",\"LGA\",\"DEN\",13.00,22.00,0.00,\"\",0.00,269.00,245.00,1620.00,13.00,0.00,9.00,0.00,0.00,\n2015,5,21,\"UA\",\"1722\",\"IAH\",\"LGA\",24.00,-11.00,0.00,\"\",0.00,184.00,163.00,1416.00,,,,,,\n2015,5,21,\"UA\",\"1744\",\"LGA\",\"IAH\",-2.00,1.00,0.00,\"\",0.00,250.00,215.00,1416.00,,,,,,\n2015,5,21,\"UA\",\"1744\",\"ORD\",\"LGA\",10.00,-14.00,0.00,\"\",0.00,109.00,90.00,733.00,,,,,,\n2015,5,21,\"UA\",\"1906\",\"IAH\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,200.00,176.00,1416.00,,,,,,\n2015,5,21,\"UA\",\"1906\",\"LGA\",\"DEN\",44.00,58.00,0.00,\"\",0.00,288.00,245.00,1620.00,0.00,0.00,41.00,0.00,17.00,\n2015,5,21,\"UA\",\"2016\",\"BUF\",\"ORD\",-1.00,1.00,0.00,\"\",0.00,106.00,73.00,473.00,,,,,,\n2015,5,20,\"UA\",\"212\",\"LAX\",\"JFK\",-10.00,-59.00,0.00,\"\",0.00,279.00,259.00,2475.00,,,,,,\n2015,5,20,\"UA\",\"233\",\"LAX\",\"JFK\",-3.00,-38.00,0.00,\"\",0.00,290.00,274.00,2475.00,,,,,,\n2015,5,20,\"UA\",\"244\",\"ORD\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,120.00,88.00,733.00,,,,,,\n2015,5,20,\"UA\",\"257\",\"JFK\",\"SFO\",38.00,21.00,0.00,\"\",0.00,384.00,358.00,2586.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"UA\",\"275\",\"LAX\",\"JFK\",-7.00,-59.00,0.00,\"\",0.00,283.00,271.00,2475.00,,,,,,\n2015,5,20,\"UA\",\"303\",\"DEN\",\"LGA\",40.00,10.00,0.00,\"\",0.00,210.00,169.00,1620.00,,,,,,\n2015,5,20,\"UA\",\"303\",\"LGA\",\"IAH\",45.00,52.00,0.00,\"\",0.00,248.00,189.00,1416.00,0.00,0.00,16.00,0.00,36.00,\n2015,5,20,\"UA\",\"343\",\"LGA\",\"IAH\",-2.00,-7.00,0.00,\"\",0.00,235.00,188.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"345\",\"LGA\",\"ORD\",-5.00,13.00,0.00,\"\",0.00,179.00,120.00,733.00,,,,,,\n2015,5,20,\"UA\",\"349\",\"LGA\",\"DEN\",0.00,-1.00,0.00,\"\",0.00,268.00,238.00,1620.00,,,,,,\n2015,5,20,\"UA\",\"368\",\"BUF\",\"ORD\",-5.00,7.00,0.00,\"\",0.00,116.00,90.00,473.00,,,,,,\n2015,5,20,\"UA\",\"406\",\"DEN\",\"LGA\",19.00,-24.00,0.00,\"\",0.00,194.00,171.00,1620.00,,,,,,\n2015,5,20,\"UA\",\"415\",\"JFK\",\"SFO\",-5.00,-4.00,0.00,\"\",0.00,385.00,362.00,2586.00,,,,,,\n2015,5,20,\"UA\",\"441\",\"JFK\",\"LAX\",1.00,1.00,0.00,\"\",0.00,376.00,353.00,2475.00,,,,,,\n2015,5,20,\"UA\",\"442\",\"IAH\",\"LGA\",114.00,107.00,0.00,\"\",0.00,206.00,180.00,1416.00,0.00,0.00,107.00,0.00,0.00,\n2015,5,20,\"UA\",\"443\",\"JFK\",\"LAX\",-4.00,3.00,0.00,\"\",0.00,383.00,341.00,2475.00,,,,,,\n2015,5,20,\"UA\",\"445\",\"JFK\",\"LAX\",10.00,-11.00,0.00,\"\",0.00,350.00,313.00,2475.00,,,,,,\n2015,5,20,\"UA\",\"462\",\"LGA\",\"IAH\",-7.00,-10.00,0.00,\"\",0.00,241.00,184.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"462\",\"ORD\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,113.00,90.00,733.00,,,,,,\n2015,5,20,\"UA\",\"463\",\"LGA\",\"ORD\",-6.00,-7.00,0.00,\"\",0.00,156.00,123.00,733.00,,,,,,\n2015,5,20,\"UA\",\"483\",\"BUF\",\"ORD\",-5.00,1.00,0.00,\"\",0.00,111.00,87.00,473.00,,,,,,\n2015,5,20,\"UA\",\"502\",\"SFO\",\"JFK\",2.00,-32.00,0.00,\"\",0.00,303.00,285.00,2586.00,,,,,,\n2015,5,20,\"UA\",\"509\",\"ORD\",\"LGA\",2.00,-15.00,0.00,\"\",0.00,114.00,88.00,733.00,,,,,,\n2015,5,20,\"UA\",\"510\",\"JFK\",\"SFO\",-7.00,-9.00,0.00,\"\",0.00,399.00,359.00,2586.00,,,,,,\n2015,5,20,\"UA\",\"512\",\"JFK\",\"SFO\",-5.00,-4.00,0.00,\"\",0.00,402.00,368.00,2586.00,,,,,,\n2015,5,20,\"UA\",\"514\",\"JFK\",\"SFO\",13.00,27.00,0.00,\"\",0.00,415.00,365.00,2586.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,20,\"UA\",\"528\",\"ORD\",\"LGA\",84.00,67.00,0.00,\"\",0.00,119.00,85.00,733.00,10.00,0.00,0.00,0.00,57.00,\n2015,5,20,\"UA\",\"535\",\"JFK\",\"LAX\",-2.00,6.00,0.00,\"\",0.00,382.00,352.00,2475.00,,,,,,\n2015,5,20,\"UA\",\"541\",\"JFK\",\"SFO\",-1.00,7.00,0.00,\"\",0.00,398.00,355.00,2586.00,,,,,,\n2015,5,20,\"UA\",\"561\",\"LGA\",\"DEN\",-2.00,23.00,0.00,\"\",0.00,291.00,248.00,1620.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,20,\"UA\",\"622\",\"LGA\",\"ORD\",201.00,231.00,0.00,\"\",0.00,188.00,123.00,733.00,0.00,0.00,64.00,0.00,167.00,\n2015,5,20,\"UA\",\"637\",\"SFO\",\"JFK\",6.00,-29.00,0.00,\"\",0.00,310.00,282.00,2586.00,,,,,,\n2015,5,20,\"UA\",\"656\",\"ORD\",\"BUF\",-3.00,-13.00,0.00,\"\",0.00,82.00,61.00,473.00,,,,,,\n2015,5,20,\"UA\",\"672\",\"ORD\",\"LGA\",-4.00,-27.00,0.00,\"\",0.00,108.00,89.00,733.00,,,,,,\n2015,5,20,\"UA\",\"681\",\"LGA\",\"ORD\",-8.00,-22.00,0.00,\"\",0.00,146.00,122.00,733.00,,,,,,\n2015,5,20,\"UA\",\"686\",\"ORD\",\"LGA\",10.00,1.00,0.00,\"\",0.00,122.00,93.00,733.00,,,,,,\n2015,5,20,\"UA\",\"690\",\"ORD\",\"LGA\",109.00,82.00,0.00,\"\",0.00,109.00,92.00,733.00,82.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"UA\",\"692\",\"ORD\",\"LGA\",97.00,83.00,0.00,\"\",0.00,122.00,92.00,733.00,16.00,0.00,0.00,0.00,67.00,\n2015,5,20,\"UA\",\"693\",\"IAH\",\"LGA\",9.00,41.00,0.00,\"\",0.00,247.00,167.00,1416.00,9.00,0.00,32.00,0.00,0.00,\n2015,5,20,\"UA\",\"693\",\"LGA\",\"ORD\",2.00,24.00,0.00,\"\",0.00,192.00,122.00,733.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,20,\"UA\",\"694\",\"ORD\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,113.00,96.00,733.00,,,,,,\n2015,5,20,\"UA\",\"695\",\"LGA\",\"ORD\",83.00,84.00,0.00,\"\",0.00,167.00,111.00,733.00,0.00,0.00,11.00,0.00,73.00,\n2015,5,20,\"UA\",\"698\",\"ORD\",\"LGA\",13.00,-1.00,0.00,\"\",0.00,120.00,90.00,733.00,,,,,,\n2015,5,20,\"UA\",\"699\",\"LGA\",\"ORD\",-9.00,25.00,0.00,\"\",0.00,196.00,123.00,733.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,20,\"UA\",\"703\",\"JFK\",\"LAX\",-5.00,-15.00,0.00,\"\",0.00,350.00,330.00,2475.00,,,,,,\n2015,5,20,\"UA\",\"704\",\"SFO\",\"JFK\",-4.00,-54.00,0.00,\"\",0.00,287.00,270.00,2586.00,,,,,,\n2015,5,20,\"UA\",\"711\",\"LGA\",\"ORD\",-7.00,0.00,0.00,\"\",0.00,162.00,117.00,733.00,,,,,,\n2015,5,20,\"UA\",\"741\",\"LGA\",\"ORD\",0.00,14.00,0.00,\"\",0.00,180.00,122.00,733.00,,,,,,\n2015,5,20,\"UA\",\"746\",\"LGA\",\"IAH\",-1.00,-27.00,0.00,\"\",0.00,216.00,189.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"758\",\"SFO\",\"JFK\",-9.00,-34.00,0.00,\"\",0.00,320.00,293.00,2586.00,,,,,,\n2015,5,20,\"UA\",\"760\",\"SFO\",\"JFK\",2.00,-27.00,0.00,\"\",0.00,316.00,285.00,2586.00,,,,,,\n2015,5,20,\"UA\",\"765\",\"LGA\",\"ORD\",59.00,118.00,0.00,\"\",0.00,219.00,131.00,733.00,0.00,0.00,73.00,0.00,45.00,\n2015,5,20,\"UA\",\"766\",\"JFK\",\"SFO\",-6.00,19.00,0.00,\"\",0.00,405.00,361.00,2586.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,20,\"UA\",\"779\",\"LAX\",\"JFK\",10.00,-32.00,0.00,\"\",0.00,293.00,275.00,2475.00,,,,,,\n2015,5,20,\"UA\",\"791\",\"LGA\",\"IAH\",13.00,49.00,0.00,\"\",0.00,280.00,196.00,1416.00,13.00,0.00,36.00,0.00,0.00,\n2015,5,20,\"UA\",\"791\",\"ORD\",\"LGA\",120.00,119.00,0.00,\"\",0.00,130.00,92.00,733.00,119.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"UA\",\"824\",\"SFO\",\"JFK\",-2.00,-32.00,0.00,\"\",0.00,307.00,279.00,2586.00,,,,,,\n2015,5,20,\"UA\",\"830\",\"ORD\",\"BUF\",29.00,17.00,0.00,\"\",0.00,82.00,59.00,473.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"UA\",\"841\",\"JFK\",\"LAX\",-1.00,14.00,0.00,\"\",0.00,389.00,344.00,2475.00,,,,,,\n2015,5,20,\"UA\",\"867\",\"LAX\",\"JFK\",8.00,-24.00,0.00,\"\",0.00,303.00,280.00,2475.00,,,,,,\n2015,5,20,\"UA\",\"898\",\"SFO\",\"JFK\",12.00,-18.00,0.00,\"\",0.00,315.00,280.00,2586.00,,,,,,\n2015,5,20,\"UA\",\"910\",\"ORD\",\"LGA\",3.00,-17.00,0.00,\"\",0.00,111.00,87.00,733.00,,,,,,\n2015,5,20,\"UA\",\"912\",\"LAX\",\"JFK\",-6.00,-40.00,0.00,\"\",0.00,291.00,276.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"1471\",\"ORD\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,115.00,96.00,733.00,,,,,,\n2015,5,17,\"UA\",\"1483\",\"DEN\",\"LGA\",31.00,3.00,0.00,\"\",0.00,207.00,191.00,1620.00,,,,,,\n2015,5,17,\"UA\",\"1523\",\"LGA\",\"ORD\",-1.00,-21.00,0.00,\"\",0.00,147.00,115.00,733.00,,,,,,\n2015,5,17,\"UA\",\"1638\",\"ALB\",\"ORD\",-10.00,-23.00,0.00,\"\",0.00,128.00,106.00,723.00,,,,,,\n2015,5,17,\"UA\",\"1693\",\"DEN\",\"LGA\",-5.00,-30.00,0.00,\"\",0.00,210.00,190.00,1620.00,,,,,,\n2015,5,17,\"UA\",\"1693\",\"LGA\",\"IAH\",,,1.00,\"C\",0.00,,,1416.00,,,,,,\n2015,5,17,\"UA\",\"1751\",\"LGA\",\"ORD\",0.00,-13.00,0.00,\"\",0.00,152.00,112.00,733.00,,,,,,\n2015,5,17,\"UA\",\"1764\",\"ORD\",\"LGA\",17.00,0.00,0.00,\"\",0.00,120.00,99.00,733.00,,,,,,\n2015,5,17,\"UA\",\"1906\",\"LGA\",\"DEN\",2.00,-22.00,0.00,\"\",0.00,244.00,223.00,1620.00,,,,,,\n2015,5,17,\"UA\",\"1974\",\"LGA\",\"DEN\",-2.00,-3.00,0.00,\"\",0.00,263.00,225.00,1620.00,,,,,,\n2015,5,16,\"UA\",\"12\",\"BUF\",\"ORD\",21.00,7.00,0.00,\"\",0.00,92.00,72.00,473.00,,,,,,\n2015,5,16,\"UA\",\"235\",\"LGA\",\"DEN\",-3.00,-5.00,0.00,\"\",0.00,260.00,218.00,1620.00,,,,,,\n2015,5,16,\"UA\",\"255\",\"LGA\",\"DEN\",-3.00,-32.00,0.00,\"\",0.00,243.00,215.00,1620.00,,,,,,\n2015,5,16,\"UA\",\"257\",\"JFK\",\"SFO\",67.00,55.00,0.00,\"\",0.00,389.00,361.00,2586.00,0.00,55.00,0.00,0.00,0.00,\n2015,5,16,\"UA\",\"275\",\"LAX\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,318.00,291.00,2475.00,,,,,,\n2015,5,16,\"UA\",\"303\",\"DEN\",\"LGA\",12.00,-3.00,0.00,\"\",0.00,225.00,209.00,1620.00,,,,,,\n2015,5,16,\"UA\",\"345\",\"IAH\",\"LGA\",15.00,9.00,0.00,\"\",0.00,211.00,188.00,1416.00,,,,,,\n2015,5,16,\"UA\",\"415\",\"JFK\",\"SFO\",-2.00,-10.00,0.00,\"\",0.00,376.00,345.00,2586.00,,,,,,\n2015,5,16,\"UA\",\"441\",\"JFK\",\"LAX\",-6.00,10.00,0.00,\"\",0.00,392.00,335.00,2475.00,,,,,,\n2015,5,16,\"UA\",\"443\",\"JFK\",\"LAX\",-4.00,28.00,0.00,\"\",0.00,408.00,329.00,2475.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,16,\"UA\",\"451\",\"IAH\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,204.00,183.00,1416.00,,,,,,\n2015,5,16,\"UA\",\"463\",\"LGA\",\"ORD\",-5.00,-4.00,0.00,\"\",0.00,158.00,113.00,733.00,,,,,,\n2015,5,16,\"UA\",\"510\",\"JFK\",\"SFO\",-3.00,-23.00,0.00,\"\",0.00,381.00,358.00,2586.00,,,,,,\n2015,5,16,\"UA\",\"512\",\"JFK\",\"SFO\",-8.00,-16.00,0.00,\"\",0.00,393.00,360.00,2586.00,,,,,,\n2015,5,16,\"UA\",\"535\",\"JFK\",\"LAX\",-1.00,3.00,0.00,\"\",0.00,374.00,342.00,2475.00,,,,,,\n2015,5,16,\"UA\",\"541\",\"JFK\",\"SFO\",0.00,14.00,0.00,\"\",0.00,404.00,337.00,2586.00,,,,,,\n2015,5,16,\"UA\",\"556\",\"DEN\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,231.00,213.00,1620.00,,,,,,\n2015,5,16,\"UA\",\"589\",\"BUF\",\"ORD\",-5.00,4.00,0.00,\"\",0.00,113.00,73.00,473.00,,,,,,\n2015,5,16,\"UA\",\"637\",\"SFO\",\"JFK\",13.00,7.00,0.00,\"\",0.00,339.00,314.00,2586.00,,,,,,\n2015,5,16,\"UA\",\"681\",\"LGA\",\"ORD\",-3.00,-22.00,0.00,\"\",0.00,141.00,114.00,733.00,,,,,,\n2015,5,16,\"UA\",\"703\",\"JFK\",\"LAX\",24.00,17.00,0.00,\"\",0.00,353.00,321.00,2475.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"UA\",\"706\",\"LGA\",\"IAH\",-5.00,-23.00,0.00,\"\",0.00,222.00,193.00,1416.00,,,,,,\n2015,5,16,\"UA\",\"711\",\"LGA\",\"ORD\",-2.00,58.00,0.00,\"\",0.00,215.00,123.00,733.00,0.00,0.00,58.00,0.00,0.00,\n2015,5,16,\"UA\",\"746\",\"LGA\",\"IAH\",0.00,-41.00,0.00,\"\",0.00,201.00,184.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"1906\",\"IAH\",\"LGA\",6.00,-6.00,0.00,\"\",0.00,197.00,172.00,1416.00,,,,,,\n2015,5,20,\"UA\",\"1906\",\"LGA\",\"DEN\",41.00,60.00,0.00,\"\",0.00,293.00,235.00,1620.00,0.00,41.00,19.00,0.00,0.00,\n2015,5,19,\"UA\",\"212\",\"LAX\",\"JFK\",-2.00,-32.00,0.00,\"\",0.00,298.00,280.00,2475.00,,,,,,\n2015,5,19,\"UA\",\"233\",\"LAX\",\"JFK\",0.00,-25.00,0.00,\"\",0.00,300.00,269.00,2475.00,,,,,,\n2015,5,19,\"UA\",\"244\",\"ORD\",\"LGA\",102.00,91.00,0.00,\"\",0.00,125.00,92.00,733.00,0.00,0.00,91.00,0.00,0.00,\n2015,5,19,\"UA\",\"257\",\"JFK\",\"SFO\",-3.00,-36.00,0.00,\"\",0.00,368.00,341.00,2586.00,,,,,,\n2015,5,19,\"UA\",\"275\",\"LAX\",\"JFK\",-8.00,-28.00,0.00,\"\",0.00,315.00,284.00,2475.00,,,,,,\n2015,5,18,\"UA\",\"765\",\"LGA\",\"ORD\",,,1.00,\"B\",0.00,,,733.00,,,,,,\n2015,5,18,\"UA\",\"766\",\"JFK\",\"SFO\",-6.00,10.00,0.00,\"\",0.00,396.00,332.00,2586.00,,,,,,\n2015,5,18,\"UA\",\"779\",\"LAX\",\"JFK\",138.00,123.00,0.00,\"\",0.00,320.00,285.00,2475.00,0.00,0.00,123.00,0.00,0.00,\n2015,5,18,\"UA\",\"791\",\"LGA\",\"IAH\",224.00,220.00,0.00,\"\",0.00,240.00,187.00,1416.00,21.00,0.00,0.00,0.00,199.00,\n2015,5,18,\"UA\",\"791\",\"ORD\",\"LGA\",462.00,511.00,0.00,\"\",0.00,180.00,129.00,733.00,0.00,0.00,511.00,0.00,0.00,\n2015,5,18,\"UA\",\"824\",\"SFO\",\"JFK\",83.00,78.00,0.00,\"\",0.00,332.00,299.00,2586.00,78.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"UA\",\"830\",\"ORD\",\"BUF\",15.00,1.00,0.00,\"\",0.00,80.00,60.00,473.00,,,,,,\n2015,5,18,\"UA\",\"841\",\"JFK\",\"LAX\",-5.00,-28.00,0.00,\"\",0.00,351.00,330.00,2475.00,,,,,,\n2015,5,18,\"UA\",\"867\",\"LAX\",\"JFK\",187.00,223.00,0.00,\"\",0.00,371.00,351.00,2475.00,0.00,0.00,223.00,0.00,0.00,\n2015,5,18,\"UA\",\"898\",\"SFO\",\"JFK\",170.00,202.00,0.00,\"\",0.00,377.00,304.00,2586.00,0.00,0.00,202.00,0.00,0.00,\n2015,5,18,\"UA\",\"910\",\"ORD\",\"LGA\",178.00,163.00,0.00,\"\",0.00,116.00,97.00,733.00,0.00,0.00,163.00,0.00,0.00,\n2015,5,18,\"UA\",\"912\",\"LAX\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,311.00,286.00,2475.00,,,,,,\n2015,5,18,\"UA\",\"1042\",\"LGA\",\"DEN\",167.00,155.00,0.00,\"\",0.00,256.00,236.00,1620.00,0.00,6.00,0.00,0.00,149.00,\n2015,5,18,\"UA\",\"1059\",\"DEN\",\"LGA\",145.00,159.00,0.00,\"\",0.00,249.00,222.00,1620.00,0.00,0.00,159.00,0.00,0.00,\n2015,5,18,\"UA\",\"1062\",\"IAH\",\"LGA\",34.00,41.00,0.00,\"\",0.00,220.00,190.00,1416.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,18,\"UA\",\"1062\",\"LGA\",\"ORD\",439.00,403.00,0.00,\"\",0.00,129.00,102.00,733.00,133.00,0.00,0.00,0.00,270.00,\n2015,5,18,\"UA\",\"1074\",\"ORD\",\"LGA\",105.00,173.00,0.00,\"\",0.00,203.00,118.00,733.00,43.00,0.00,68.00,0.00,62.00,\n2015,5,18,\"UA\",\"1085\",\"ORD\",\"LGA\",443.00,495.00,0.00,\"\",0.00,185.00,100.00,733.00,0.00,0.00,423.00,0.00,72.00,\n2015,5,18,\"UA\",\"1145\",\"LGA\",\"ORD\",-1.00,-29.00,0.00,\"\",0.00,131.00,108.00,733.00,,,,,,\n2015,5,18,\"UA\",\"1190\",\"ORD\",\"ALB\",32.00,48.00,0.00,\"\",0.00,136.00,90.00,723.00,18.00,0.00,16.00,0.00,14.00,\n2015,5,18,\"UA\",\"1194\",\"IAH\",\"LGA\",130.00,165.00,0.00,\"\",0.00,253.00,185.00,1416.00,0.00,0.00,165.00,0.00,0.00,\n2015,5,18,\"UA\",\"1214\",\"ORD\",\"LGA\",98.00,127.00,0.00,\"\",0.00,166.00,114.00,733.00,0.00,0.00,127.00,0.00,0.00,\n2015,5,18,\"UA\",\"1218\",\"LGA\",\"ORD\",111.00,94.00,0.00,\"\",0.00,141.00,109.00,733.00,29.00,0.00,0.00,0.00,65.00,\n2015,5,18,\"UA\",\"1248\",\"ORD\",\"ALB\",-2.00,-5.00,0.00,\"\",0.00,117.00,92.00,723.00,,,,,,\n2015,5,18,\"UA\",\"1283\",\"ALB\",\"ORD\",54.00,63.00,0.00,\"\",0.00,150.00,107.00,723.00,11.00,0.00,9.00,0.00,43.00,\n2015,5,18,\"UA\",\"1456\",\"LGA\",\"IAH\",3.00,-19.00,0.00,\"\",0.00,220.00,191.00,1416.00,,,,,,\n2015,5,18,\"UA\",\"1469\",\"DEN\",\"LGA\",273.00,295.00,0.00,\"\",0.00,249.00,225.00,1620.00,0.00,0.00,295.00,0.00,0.00,\n2015,5,18,\"UA\",\"1483\",\"DEN\",\"LGA\",25.00,38.00,0.00,\"\",0.00,248.00,195.00,1620.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,18,\"UA\",\"1588\",\"LGA\",\"ORD\",7.00,-5.00,0.00,\"\",0.00,141.00,110.00,733.00,,,,,,\n2015,5,18,\"UA\",\"1638\",\"ALB\",\"ORD\",-6.00,-10.00,0.00,\"\",0.00,137.00,106.00,723.00,,,,,,\n2015,5,18,\"UA\",\"1671\",\"IAH\",\"LGA\",92.00,99.00,0.00,\"\",0.00,228.00,191.00,1416.00,0.00,0.00,72.00,0.00,27.00,\n2015,5,18,\"UA\",\"1686\",\"LGA\",\"DEN\",,,1.00,\"A\",0.00,,,1620.00,,,,,,\n2015,5,18,\"UA\",\"1687\",\"LGA\",\"IAH\",6.00,-4.00,0.00,\"\",0.00,221.00,193.00,1416.00,,,,,,\n2015,5,18,\"UA\",\"1693\",\"DEN\",\"LGA\",145.00,161.00,0.00,\"\",0.00,251.00,228.00,1620.00,0.00,0.00,161.00,0.00,0.00,\n2015,5,18,\"UA\",\"1714\",\"LGA\",\"ORD\",3.00,2.00,0.00,\"\",0.00,153.00,110.00,733.00,,,,,,\n2015,5,18,\"UA\",\"1719\",\"LGA\",\"DEN\",-5.00,-11.00,0.00,\"\",0.00,254.00,222.00,1620.00,,,,,,\n2015,5,18,\"UA\",\"1722\",\"IAH\",\"LGA\",107.00,139.00,0.00,\"\",0.00,251.00,185.00,1416.00,0.00,0.00,139.00,0.00,0.00,\n2015,5,18,\"UA\",\"1744\",\"LGA\",\"IAH\",452.00,453.00,0.00,\"\",0.00,248.00,190.00,1416.00,158.00,0.00,1.00,0.00,294.00,\n2015,5,18,\"UA\",\"1744\",\"ORD\",\"LGA\",2.00,16.00,0.00,\"\",0.00,147.00,127.00,733.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,18,\"UA\",\"1906\",\"IAH\",\"LGA\",84.00,78.00,0.00,\"\",0.00,203.00,185.00,1416.00,0.00,0.00,20.00,0.00,58.00,\n2015,5,18,\"UA\",\"1906\",\"LGA\",\"DEN\",45.00,30.00,0.00,\"\",0.00,259.00,230.00,1620.00,0.00,0.00,4.00,0.00,26.00,\n2015,5,14,\"UA\",\"1190\",\"ORD\",\"ALB\",5.00,0.00,0.00,\"\",0.00,115.00,89.00,723.00,,,,,,\n2015,5,14,\"UA\",\"1194\",\"IAH\",\"LGA\",2.00,25.00,0.00,\"\",0.00,241.00,177.00,1416.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,14,\"UA\",\"1214\",\"ORD\",\"LGA\",7.00,-11.00,0.00,\"\",0.00,119.00,99.00,733.00,,,,,,\n2015,5,14,\"UA\",\"1218\",\"LGA\",\"ORD\",11.00,8.00,0.00,\"\",0.00,155.00,117.00,733.00,,,,,,\n2015,5,14,\"UA\",\"1248\",\"ORD\",\"ALB\",3.00,-5.00,0.00,\"\",0.00,112.00,90.00,723.00,,,,,,\n2015,5,14,\"UA\",\"1283\",\"ALB\",\"ORD\",7.00,7.00,0.00,\"\",0.00,141.00,116.00,723.00,,,,,,\n2015,5,14,\"UA\",\"1411\",\"LGA\",\"ORD\",-1.00,4.00,0.00,\"\",0.00,159.00,122.00,733.00,,,,,,\n2015,5,14,\"UA\",\"1456\",\"LGA\",\"IAH\",-1.00,-19.00,0.00,\"\",0.00,224.00,194.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"1469\",\"DEN\",\"LGA\",28.00,11.00,0.00,\"\",0.00,210.00,189.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"1471\",\"ORD\",\"LGA\",93.00,78.00,0.00,\"\",0.00,117.00,94.00,733.00,9.00,0.00,0.00,0.00,69.00,\n2015,5,14,\"UA\",\"1483\",\"DEN\",\"LGA\",-3.00,-25.00,0.00,\"\",0.00,213.00,191.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"1588\",\"LGA\",\"ORD\",-4.00,-7.00,0.00,\"\",0.00,150.00,124.00,733.00,,,,,,\n2015,5,14,\"UA\",\"1620\",\"ORD\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,115.00,96.00,733.00,,,,,,\n2015,5,14,\"UA\",\"1638\",\"ALB\",\"ORD\",-5.00,-8.00,0.00,\"\",0.00,138.00,116.00,723.00,,,,,,\n2015,5,18,\"UA\",\"686\",\"ORD\",\"LGA\",380.00,410.00,0.00,\"\",0.00,161.00,105.00,733.00,0.00,0.00,410.00,0.00,0.00,\n2015,5,18,\"UA\",\"690\",\"ORD\",\"LGA\",156.00,179.00,0.00,\"\",0.00,159.00,97.00,733.00,0.00,0.00,177.00,0.00,2.00,\n2015,5,18,\"UA\",\"692\",\"ORD\",\"LGA\",151.00,172.00,0.00,\"\",0.00,157.00,114.00,733.00,0.00,0.00,172.00,0.00,0.00,\n2015,5,18,\"UA\",\"693\",\"IAH\",\"LGA\",187.00,184.00,0.00,\"\",0.00,212.00,187.00,1416.00,0.00,0.00,184.00,0.00,0.00,\n2015,5,18,\"UA\",\"693\",\"LGA\",\"ORD\",180.00,217.00,0.00,\"\",0.00,207.00,126.00,733.00,0.00,14.00,37.00,0.00,166.00,\n2015,5,18,\"UA\",\"694\",\"ORD\",\"LGA\",-1.00,53.00,0.00,\"\",0.00,185.00,121.00,733.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,18,\"UA\",\"695\",\"LGA\",\"ORD\",179.00,177.00,0.00,\"\",0.00,164.00,110.00,733.00,0.00,9.00,0.00,0.00,168.00,\n2015,5,18,\"UA\",\"698\",\"ORD\",\"LGA\",5.00,3.00,0.00,\"\",0.00,132.00,106.00,733.00,,,,,,\n2015,5,18,\"UA\",\"699\",\"LGA\",\"ORD\",,,1.00,\"C\",0.00,,,733.00,,,,,,\n2015,5,18,\"UA\",\"703\",\"JFK\",\"LAX\",-2.00,14.00,0.00,\"\",0.00,376.00,336.00,2475.00,,,,,,\n2015,5,18,\"UA\",\"704\",\"SFO\",\"JFK\",153.00,156.00,0.00,\"\",0.00,340.00,301.00,2586.00,153.00,0.00,3.00,0.00,0.00,\n2015,5,18,\"UA\",\"711\",\"LGA\",\"ORD\",-5.00,-29.00,0.00,\"\",0.00,131.00,107.00,733.00,,,,,,\n2015,5,18,\"UA\",\"741\",\"LGA\",\"ORD\",468.00,460.00,0.00,\"\",0.00,158.00,113.00,733.00,0.00,66.00,0.00,0.00,394.00,\n2015,5,18,\"UA\",\"746\",\"LGA\",\"IAH\",45.00,29.00,0.00,\"\",0.00,226.00,188.00,1416.00,0.00,0.00,3.00,0.00,26.00,\n2015,5,18,\"UA\",\"758\",\"SFO\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,337.00,307.00,2586.00,,,,,,\n2015,5,18,\"UA\",\"760\",\"SFO\",\"JFK\",230.00,266.00,0.00,\"\",0.00,381.00,348.00,2586.00,0.00,0.00,266.00,0.00,0.00,\n2015,5,16,\"UA\",\"1138\",\"DEN\",\"LGA\",-2.00,0.00,0.00,\"\",0.00,241.00,219.00,1620.00,,,,,,\n2015,5,16,\"UA\",\"1226\",\"LGA\",\"IAH\",18.00,22.00,0.00,\"\",0.00,250.00,202.00,1416.00,18.00,0.00,4.00,0.00,0.00,\n2015,5,16,\"UA\",\"1248\",\"ORD\",\"ALB\",-1.00,-13.00,0.00,\"\",0.00,108.00,89.00,723.00,,,,,,\n2015,5,16,\"UA\",\"1285\",\"LGA\",\"DEN\",1.00,-23.00,0.00,\"\",0.00,236.00,212.00,1620.00,,,,,,\n2015,5,16,\"UA\",\"1299\",\"IAH\",\"LGA\",12.00,6.00,0.00,\"\",0.00,209.00,180.00,1416.00,,,,,,\n2015,5,16,\"UA\",\"1469\",\"DEN\",\"LGA\",2.00,-11.00,0.00,\"\",0.00,214.00,194.00,1620.00,,,,,,\n2015,5,16,\"UA\",\"1582\",\"ORD\",\"BUF\",-4.00,0.00,0.00,\"\",0.00,97.00,65.00,473.00,,,,,,\n2015,5,16,\"UA\",\"1588\",\"LGA\",\"ORD\",-1.00,-20.00,0.00,\"\",0.00,134.00,117.00,733.00,,,,,,\n2015,5,16,\"UA\",\"1638\",\"ALB\",\"ORD\",-11.00,11.00,0.00,\"\",0.00,163.00,112.00,723.00,,,,,,\n2015,5,16,\"UA\",\"1687\",\"LGA\",\"IAH\",-5.00,-32.00,0.00,\"\",0.00,204.00,189.00,1416.00,,,,,,\n2015,5,16,\"UA\",\"1714\",\"LGA\",\"ORD\",4.00,-2.00,0.00,\"\",0.00,148.00,111.00,733.00,,,,,,\n2015,5,16,\"UA\",\"1744\",\"LGA\",\"IAH\",4.00,-24.00,0.00,\"\",0.00,219.00,196.00,1416.00,,,,,,\n2015,5,16,\"UA\",\"1906\",\"LGA\",\"DEN\",2.00,6.00,0.00,\"\",0.00,272.00,228.00,1620.00,,,,,,\n2015,5,16,\"UA\",\"2048\",\"ORD\",\"LGA\",26.00,26.00,0.00,\"\",0.00,132.00,100.00,733.00,24.00,0.00,0.00,0.00,2.00,\n2015,5,15,\"UA\",\"212\",\"LAX\",\"JFK\",-10.00,-36.00,0.00,\"\",0.00,302.00,284.00,2475.00,,,,,,\n2015,5,15,\"UA\",\"233\",\"LAX\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,310.00,286.00,2475.00,,,,,,\n2015,5,15,\"UA\",\"244\",\"ORD\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,121.00,103.00,733.00,,,,,,\n2015,5,15,\"UA\",\"257\",\"JFK\",\"SFO\",50.00,36.00,0.00,\"\",0.00,387.00,365.00,2586.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"UA\",\"275\",\"LAX\",\"JFK\",-6.00,-32.00,0.00,\"\",0.00,309.00,290.00,2475.00,,,,,,\n2015,5,15,\"UA\",\"303\",\"DEN\",\"LGA\",-4.00,-30.00,0.00,\"\",0.00,214.00,198.00,1620.00,,,,,,\n2015,5,15,\"UA\",\"303\",\"LGA\",\"IAH\",-1.00,17.00,0.00,\"\",0.00,259.00,194.00,1416.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,15,\"UA\",\"343\",\"LGA\",\"IAH\",-6.00,-36.00,0.00,\"\",0.00,210.00,190.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"345\",\"LGA\",\"ORD\",-4.00,-24.00,0.00,\"\",0.00,141.00,116.00,733.00,,,,,,\n2015,5,15,\"UA\",\"368\",\"BUF\",\"ORD\",-11.00,-16.00,0.00,\"\",0.00,99.00,80.00,473.00,,,,,,\n2015,5,15,\"UA\",\"406\",\"DEN\",\"LGA\",22.00,-3.00,0.00,\"\",0.00,212.00,189.00,1620.00,,,,,,\n2015,5,15,\"UA\",\"415\",\"JFK\",\"SFO\",-5.00,-30.00,0.00,\"\",0.00,359.00,332.00,2586.00,,,,,,\n2015,5,15,\"UA\",\"441\",\"JFK\",\"LAX\",-7.00,15.00,0.00,\"\",0.00,398.00,328.00,2475.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,15,\"UA\",\"442\",\"IAH\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,212.00,184.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"443\",\"JFK\",\"LAX\",7.00,2.00,0.00,\"\",0.00,371.00,327.00,2475.00,,,,,,\n2015,5,15,\"UA\",\"445\",\"JFK\",\"LAX\",7.00,-10.00,0.00,\"\",0.00,354.00,322.00,2475.00,,,,,,\n2015,5,15,\"UA\",\"456\",\"IAH\",\"LGA\",2.00,-17.00,0.00,\"\",0.00,195.00,174.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"462\",\"LGA\",\"IAH\",0.00,-34.00,0.00,\"\",0.00,210.00,194.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"462\",\"ORD\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,120.00,97.00,733.00,,,,,,\n2015,5,15,\"UA\",\"463\",\"LGA\",\"ORD\",-5.00,-12.00,0.00,\"\",0.00,150.00,116.00,733.00,,,,,,\n2015,5,15,\"UA\",\"483\",\"BUF\",\"ORD\",56.00,42.00,0.00,\"\",0.00,91.00,74.00,473.00,3.00,0.00,0.00,0.00,39.00,\n2015,5,15,\"UA\",\"502\",\"SFO\",\"JFK\",144.00,121.00,0.00,\"\",0.00,314.00,295.00,2586.00,4.00,0.00,0.00,0.00,117.00,\n2015,5,15,\"UA\",\"509\",\"ORD\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,123.00,97.00,733.00,,,,,,\n2015,5,15,\"UA\",\"510\",\"JFK\",\"SFO\",5.00,-1.00,0.00,\"\",0.00,395.00,360.00,2586.00,,,,,,\n2015,5,15,\"UA\",\"512\",\"JFK\",\"SFO\",8.00,64.00,0.00,\"\",0.00,457.00,366.00,2586.00,0.00,0.00,64.00,0.00,0.00,\n2015,5,15,\"UA\",\"514\",\"JFK\",\"SFO\",80.00,122.00,0.00,\"\",0.00,443.00,362.00,2586.00,0.00,0.00,50.00,0.00,72.00,\n2015,5,15,\"UA\",\"535\",\"JFK\",\"LAX\",3.00,1.00,0.00,\"\",0.00,372.00,335.00,2475.00,,,,,,\n2015,5,15,\"UA\",\"541\",\"JFK\",\"SFO\",10.00,-15.00,0.00,\"\",0.00,365.00,334.00,2586.00,,,,,,\n2015,5,15,\"UA\",\"561\",\"LGA\",\"DEN\",-5.00,-11.00,0.00,\"\",0.00,260.00,225.00,1620.00,,,,,,\n2015,5,15,\"UA\",\"622\",\"LGA\",\"ORD\",2.00,-19.00,0.00,\"\",0.00,137.00,114.00,733.00,,,,,,\n2015,5,13,\"UA\",\"502\",\"SFO\",\"JFK\",-1.00,-33.00,0.00,\"\",0.00,305.00,284.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"509\",\"ORD\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,118.00,94.00,733.00,,,,,,\n2015,5,13,\"UA\",\"510\",\"JFK\",\"SFO\",9.00,1.00,0.00,\"\",0.00,393.00,354.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"512\",\"JFK\",\"SFO\",-3.00,-23.00,0.00,\"\",0.00,381.00,348.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"514\",\"JFK\",\"SFO\",75.00,72.00,0.00,\"\",0.00,398.00,359.00,2586.00,0.00,0.00,2.00,0.00,70.00,\n2015,5,13,\"UA\",\"535\",\"JFK\",\"LAX\",-1.00,-17.00,0.00,\"\",0.00,358.00,327.00,2475.00,,,,,,\n2015,5,13,\"UA\",\"541\",\"JFK\",\"SFO\",-3.00,-10.00,0.00,\"\",0.00,383.00,345.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"561\",\"LGA\",\"DEN\",0.00,-2.00,0.00,\"\",0.00,264.00,226.00,1620.00,,,,,,\n2015,5,13,\"UA\",\"622\",\"LGA\",\"ORD\",-3.00,-13.00,0.00,\"\",0.00,148.00,114.00,733.00,,,,,,\n2015,5,13,\"UA\",\"637\",\"SFO\",\"JFK\",3.00,-35.00,0.00,\"\",0.00,307.00,285.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"656\",\"ORD\",\"BUF\",-1.00,-8.00,0.00,\"\",0.00,85.00,64.00,473.00,,,,,,\n2015,5,13,\"UA\",\"672\",\"ORD\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,116.00,91.00,733.00,,,,,,\n2015,5,13,\"UA\",\"681\",\"LGA\",\"ORD\",-8.00,-12.00,0.00,\"\",0.00,156.00,119.00,733.00,,,,,,\n2015,5,13,\"UA\",\"686\",\"ORD\",\"LGA\",12.00,-9.00,0.00,\"\",0.00,110.00,94.00,733.00,,,,,,\n2015,5,13,\"UA\",\"690\",\"ORD\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,120.00,91.00,733.00,,,,,,\n2015,5,13,\"UA\",\"692\",\"ORD\",\"LGA\",4.00,-21.00,0.00,\"\",0.00,111.00,93.00,733.00,,,,,,\n2015,5,13,\"UA\",\"693\",\"IAH\",\"LGA\",-4.00,-25.00,0.00,\"\",0.00,194.00,175.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"693\",\"LGA\",\"ORD\",51.00,58.00,0.00,\"\",0.00,177.00,126.00,733.00,0.00,0.00,7.00,0.00,51.00,\n2015,5,13,\"UA\",\"694\",\"ORD\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,119.00,90.00,733.00,,,,,,\n2015,5,13,\"UA\",\"695\",\"LGA\",\"ORD\",-5.00,9.00,0.00,\"\",0.00,180.00,123.00,733.00,,,,,,\n2015,5,13,\"UA\",\"698\",\"ORD\",\"LGA\",9.00,-7.00,0.00,\"\",0.00,118.00,94.00,733.00,,,,,,\n2015,5,13,\"UA\",\"699\",\"LGA\",\"ORD\",-5.00,9.00,0.00,\"\",0.00,176.00,126.00,733.00,,,,,,\n2015,5,13,\"UA\",\"703\",\"JFK\",\"LAX\",-5.00,-21.00,0.00,\"\",0.00,344.00,324.00,2475.00,,,,,,\n2015,5,13,\"UA\",\"704\",\"SFO\",\"JFK\",-3.00,-33.00,0.00,\"\",0.00,307.00,278.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"711\",\"LGA\",\"ORD\",-5.00,13.00,0.00,\"\",0.00,173.00,120.00,733.00,,,,,,\n2015,5,13,\"UA\",\"741\",\"LGA\",\"ORD\",-3.00,-4.00,0.00,\"\",0.00,165.00,120.00,733.00,,,,,,\n2015,5,13,\"UA\",\"745\",\"LGA\",\"DEN\",11.00,7.00,0.00,\"\",0.00,265.00,242.00,1620.00,,,,,,\n2015,5,13,\"UA\",\"746\",\"LGA\",\"IAH\",1.00,-26.00,0.00,\"\",0.00,215.00,199.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"758\",\"SFO\",\"JFK\",-5.00,-31.00,0.00,\"\",0.00,319.00,294.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"760\",\"SFO\",\"JFK\",10.00,-19.00,0.00,\"\",0.00,316.00,296.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"765\",\"LGA\",\"ORD\",-6.00,-5.00,0.00,\"\",0.00,161.00,116.00,733.00,,,,,,\n2015,5,13,\"UA\",\"766\",\"JFK\",\"SFO\",-1.00,-11.00,0.00,\"\",0.00,370.00,346.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"779\",\"LAX\",\"JFK\",15.00,-27.00,0.00,\"\",0.00,293.00,276.00,2475.00,,,,,,\n2015,5,13,\"UA\",\"791\",\"LGA\",\"IAH\",-1.00,0.00,0.00,\"\",0.00,245.00,202.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"791\",\"ORD\",\"LGA\",-7.00,-31.00,0.00,\"\",0.00,107.00,93.00,733.00,,,,,,\n2015,5,13,\"UA\",\"824\",\"SFO\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,324.00,298.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"830\",\"ORD\",\"BUF\",58.00,39.00,0.00,\"\",0.00,75.00,63.00,473.00,1.00,0.00,0.00,0.00,38.00,\n2015,5,13,\"UA\",\"841\",\"JFK\",\"LAX\",-3.00,8.00,0.00,\"\",0.00,385.00,337.00,2475.00,,,,,,\n2015,5,13,\"UA\",\"867\",\"LAX\",\"JFK\",0.00,-36.00,0.00,\"\",0.00,299.00,280.00,2475.00,,,,,,\n2015,5,13,\"UA\",\"898\",\"SFO\",\"JFK\",109.00,88.00,0.00,\"\",0.00,324.00,297.00,2586.00,15.00,0.00,0.00,0.00,73.00,\n2015,5,13,\"UA\",\"910\",\"ORD\",\"LGA\",0.00,-23.00,0.00,\"\",0.00,108.00,91.00,733.00,,,,,,\n2015,5,13,\"UA\",\"912\",\"LAX\",\"JFK\",-10.00,-4.00,0.00,\"\",0.00,331.00,292.00,2475.00,,,,,,\n2015,5,13,\"UA\",\"1042\",\"LGA\",\"DEN\",19.00,15.00,0.00,\"\",0.00,264.00,229.00,1620.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"UA\",\"1059\",\"DEN\",\"LGA\",5.00,-13.00,0.00,\"\",0.00,217.00,194.00,1620.00,,,,,,\n2015,5,13,\"UA\",\"1062\",\"IAH\",\"LGA\",5.00,-7.00,0.00,\"\",0.00,201.00,175.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"1062\",\"LGA\",\"ORD\",9.00,20.00,0.00,\"\",0.00,176.00,119.00,733.00,0.00,0.00,18.00,0.00,2.00,\n2015,5,13,\"UA\",\"1085\",\"ORD\",\"LGA\",-4.00,4.00,0.00,\"\",0.00,141.00,91.00,733.00,,,,,,\n2015,5,13,\"UA\",\"1123\",\"LGA\",\"DEN\",-3.00,19.00,0.00,\"\",0.00,286.00,221.00,1620.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,13,\"UA\",\"1134\",\"ORD\",\"LGA\",0.00,-29.00,0.00,\"\",0.00,108.00,90.00,733.00,,,,,,\n2015,5,13,\"UA\",\"1165\",\"LGA\",\"ORD\",7.00,6.00,0.00,\"\",0.00,158.00,117.00,733.00,,,,,,\n2015,5,13,\"UA\",\"1190\",\"ORD\",\"ALB\",4.00,-6.00,0.00,\"\",0.00,110.00,88.00,723.00,,,,,,\n2015,5,13,\"UA\",\"1194\",\"IAH\",\"LGA\",10.00,-1.00,0.00,\"\",0.00,207.00,175.00,1416.00,,,,,,\n2015,5,17,\"UA\",\"617\",\"ORD\",\"LGA\",-4.00,-24.00,0.00,\"\",0.00,116.00,96.00,733.00,,,,,,\n2015,5,17,\"UA\",\"637\",\"SFO\",\"JFK\",-4.00,5.00,0.00,\"\",0.00,354.00,331.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"656\",\"ORD\",\"BUF\",-3.00,7.00,0.00,\"\",0.00,102.00,65.00,473.00,,,,,,\n2015,5,17,\"UA\",\"667\",\"LGA\",\"ORD\",-5.00,-27.00,0.00,\"\",0.00,131.00,108.00,733.00,,,,,,\n2015,5,17,\"UA\",\"681\",\"LGA\",\"ORD\",-2.00,-27.00,0.00,\"\",0.00,135.00,109.00,733.00,,,,,,\n2015,5,17,\"UA\",\"683\",\"ALB\",\"ORD\",-4.00,4.00,0.00,\"\",0.00,148.00,103.00,723.00,,,,,,\n2015,5,17,\"UA\",\"694\",\"ORD\",\"LGA\",1.00,-8.00,0.00,\"\",0.00,122.00,101.00,733.00,,,,,,\n2015,5,17,\"UA\",\"695\",\"DEN\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,219.00,197.00,1620.00,,,,,,\n2015,5,17,\"UA\",\"695\",\"LGA\",\"ORD\",-8.00,-36.00,0.00,\"\",0.00,138.00,106.00,733.00,,,,,,\n2015,5,17,\"UA\",\"703\",\"JFK\",\"LAX\",-10.00,-13.00,0.00,\"\",0.00,357.00,334.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"704\",\"SFO\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,319.00,298.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"706\",\"LGA\",\"IAH\",-5.00,-31.00,0.00,\"\",0.00,214.00,188.00,1416.00,,,,,,\n2015,5,17,\"UA\",\"758\",\"SFO\",\"JFK\",-8.00,-17.00,0.00,\"\",0.00,336.00,305.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"760\",\"SFO\",\"JFK\",20.00,31.00,0.00,\"\",0.00,356.00,325.00,2586.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,17,\"UA\",\"761\",\"LGA\",\"ORD\",-5.00,-27.00,0.00,\"\",0.00,136.00,114.00,733.00,,,,,,\n2015,5,17,\"UA\",\"765\",\"LGA\",\"ORD\",-7.00,-39.00,0.00,\"\",0.00,128.00,109.00,733.00,,,,,,\n2015,5,17,\"UA\",\"766\",\"JFK\",\"SFO\",6.00,5.00,0.00,\"\",0.00,379.00,343.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"779\",\"LAX\",\"JFK\",2.00,-17.00,0.00,\"\",0.00,316.00,295.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"791\",\"LGA\",\"IAH\",2.00,-8.00,0.00,\"\",0.00,234.00,198.00,1416.00,,,,,,\n2015,5,17,\"UA\",\"791\",\"ORD\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,115.00,98.00,733.00,,,,,,\n2015,5,17,\"UA\",\"824\",\"SFO\",\"JFK\",-6.00,-4.00,0.00,\"\",0.00,339.00,299.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"830\",\"ORD\",\"BUF\",1.00,-13.00,0.00,\"\",0.00,80.00,60.00,473.00,,,,,,\n2015,5,17,\"UA\",\"841\",\"JFK\",\"LAX\",-1.00,-14.00,0.00,\"\",0.00,361.00,328.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"867\",\"LAX\",\"JFK\",-6.00,-20.00,0.00,\"\",0.00,321.00,295.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"898\",\"SFO\",\"JFK\",-7.00,-27.00,0.00,\"\",0.00,325.00,304.00,2586.00,,,,,,\n2015,5,17,\"UA\",\"910\",\"ORD\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,134.00,97.00,733.00,,,,,,\n2015,5,17,\"UA\",\"912\",\"LAX\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,315.00,290.00,2475.00,,,,,,\n2015,5,17,\"UA\",\"980\",\"IAH\",\"LGA\",58.00,32.00,0.00,\"\",0.00,192.00,176.00,1416.00,0.00,18.00,0.00,0.00,14.00,\n2015,5,17,\"UA\",\"1001\",\"IAH\",\"LGA\",,,1.00,\"C\",0.00,,,1416.00,,,,,,\n2015,5,17,\"UA\",\"1074\",\"ORD\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,122.00,99.00,733.00,,,,,,\n2015,5,17,\"UA\",\"1085\",\"LGA\",\"DEN\",-3.00,-16.00,0.00,\"\",0.00,255.00,224.00,1620.00,,,,,,\n2015,5,17,\"UA\",\"1085\",\"ORD\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,123.00,98.00,733.00,,,,,,\n2015,5,17,\"UA\",\"1090\",\"DEN\",\"LGA\",,,1.00,\"A\",0.00,,,1620.00,,,,,,\n2015,5,17,\"UA\",\"1145\",\"LGA\",\"ORD\",10.00,-18.00,0.00,\"\",0.00,128.00,103.00,733.00,,,,,,\n2015,5,17,\"UA\",\"1173\",\"ORD\",\"ROC\",-5.00,-10.00,0.00,\"\",0.00,94.00,73.00,528.00,,,,,,\n2015,5,17,\"UA\",\"1194\",\"IAH\",\"LGA\",43.00,31.00,0.00,\"\",0.00,205.00,185.00,1416.00,0.00,17.00,0.00,0.00,14.00,\n2015,5,17,\"UA\",\"1239\",\"ORD\",\"LGA\",10.00,6.00,0.00,\"\",0.00,131.00,97.00,733.00,,,,,,\n2015,5,17,\"UA\",\"1248\",\"ORD\",\"ALB\",5.00,-4.00,0.00,\"\",0.00,111.00,91.00,723.00,,,,,,\n2015,5,17,\"UA\",\"1285\",\"LGA\",\"DEN\",4.00,-14.00,0.00,\"\",0.00,242.00,218.00,1620.00,,,,,,\n2015,5,17,\"UA\",\"1286\",\"ORD\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,116.00,101.00,733.00,,,,,,\n2015,5,17,\"UA\",\"1299\",\"IAH\",\"LGA\",44.00,19.00,0.00,\"\",0.00,190.00,176.00,1416.00,0.00,5.00,0.00,0.00,14.00,\n2015,5,17,\"UA\",\"1403\",\"ROC\",\"ORD\",0.00,-24.00,0.00,\"\",0.00,95.00,78.00,528.00,,,,,,\n2015,5,15,\"UA\",\"637\",\"SFO\",\"JFK\",239.00,216.00,0.00,\"\",0.00,322.00,295.00,2586.00,23.00,0.00,0.00,0.00,193.00,\n2015,5,15,\"UA\",\"656\",\"ORD\",\"BUF\",66.00,63.00,0.00,\"\",0.00,89.00,66.00,473.00,63.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"UA\",\"681\",\"LGA\",\"ORD\",-2.00,-21.00,0.00,\"\",0.00,141.00,109.00,733.00,,,,,,\n2015,5,15,\"UA\",\"686\",\"ORD\",\"LGA\",26.00,18.00,0.00,\"\",0.00,123.00,101.00,733.00,12.00,0.00,0.00,0.00,6.00,\n2015,5,15,\"UA\",\"690\",\"ORD\",\"LGA\",97.00,83.00,0.00,\"\",0.00,122.00,95.00,733.00,27.00,0.00,0.00,0.00,56.00,\n2015,5,15,\"UA\",\"692\",\"ORD\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,119.00,96.00,733.00,,,,,,\n2015,5,15,\"UA\",\"693\",\"IAH\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,212.00,180.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"693\",\"LGA\",\"ORD\",-12.00,-8.00,0.00,\"\",0.00,174.00,115.00,733.00,,,,,,\n2015,5,15,\"UA\",\"694\",\"ORD\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,134.00,100.00,733.00,,,,,,\n2015,5,15,\"UA\",\"699\",\"LGA\",\"ORD\",-4.00,-30.00,0.00,\"\",0.00,136.00,112.00,733.00,,,,,,\n2015,5,15,\"UA\",\"703\",\"JFK\",\"LAX\",-1.00,-12.00,0.00,\"\",0.00,349.00,321.00,2475.00,,,,,,\n2015,5,15,\"UA\",\"704\",\"SFO\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,333.00,309.00,2586.00,,,,,,\n2015,5,15,\"UA\",\"711\",\"LGA\",\"ORD\",-2.00,-24.00,0.00,\"\",0.00,133.00,111.00,733.00,,,,,,\n2015,5,15,\"UA\",\"741\",\"LGA\",\"ORD\",16.00,-6.00,0.00,\"\",0.00,144.00,114.00,733.00,,,,,,\n2015,5,15,\"UA\",\"758\",\"SFO\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,342.00,307.00,2586.00,,,,,,\n2015,5,15,\"UA\",\"760\",\"SFO\",\"JFK\",-4.00,-33.00,0.00,\"\",0.00,316.00,301.00,2586.00,,,,,,\n2015,5,15,\"UA\",\"765\",\"LGA\",\"ORD\",-5.00,-27.00,0.00,\"\",0.00,138.00,117.00,733.00,,,,,,\n2015,5,15,\"UA\",\"766\",\"JFK\",\"SFO\",15.00,36.00,0.00,\"\",0.00,401.00,367.00,2586.00,15.00,0.00,21.00,0.00,0.00,\n2015,5,15,\"UA\",\"779\",\"LAX\",\"JFK\",17.00,-3.00,0.00,\"\",0.00,315.00,296.00,2475.00,,,,,,\n2015,5,15,\"UA\",\"788\",\"DEN\",\"LGA\",10.00,-16.00,0.00,\"\",0.00,207.00,191.00,1620.00,,,,,,\n2015,5,15,\"UA\",\"791\",\"LGA\",\"IAH\",0.00,0.00,0.00,\"\",0.00,244.00,204.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"791\",\"ORD\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,124.00,93.00,733.00,,,,,,\n2015,5,15,\"UA\",\"824\",\"SFO\",\"JFK\",97.00,74.00,0.00,\"\",0.00,314.00,296.00,2586.00,47.00,0.00,0.00,0.00,27.00,\n2015,5,15,\"UA\",\"830\",\"ORD\",\"BUF\",1.00,-7.00,0.00,\"\",0.00,86.00,65.00,473.00,,,,,,\n2015,5,15,\"UA\",\"841\",\"JFK\",\"LAX\",32.00,57.00,0.00,\"\",0.00,399.00,348.00,2475.00,32.00,0.00,25.00,0.00,0.00,\n2015,5,15,\"UA\",\"867\",\"LAX\",\"JFK\",-1.00,-28.00,0.00,\"\",0.00,308.00,288.00,2475.00,,,,,,\n2015,5,15,\"UA\",\"898\",\"SFO\",\"JFK\",275.00,270.00,0.00,\"\",0.00,340.00,310.00,2586.00,28.00,0.00,0.00,0.00,242.00,\n2015,5,15,\"UA\",\"910\",\"ORD\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,123.00,98.00,733.00,,,,,,\n2015,5,15,\"UA\",\"912\",\"LAX\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,316.00,297.00,2475.00,,,,,,\n2015,5,15,\"UA\",\"1042\",\"LGA\",\"DEN\",-1.00,-10.00,0.00,\"\",0.00,259.00,240.00,1620.00,,,,,,\n2015,5,15,\"UA\",\"1045\",\"LGA\",\"IAH\",16.00,2.00,0.00,\"\",0.00,230.00,211.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"1045\",\"ORD\",\"LGA\",3.00,-11.00,0.00,\"\",0.00,118.00,97.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1059\",\"DEN\",\"LGA\",59.00,47.00,0.00,\"\",0.00,223.00,202.00,1620.00,46.00,0.00,0.00,0.00,1.00,\n2015,5,15,\"UA\",\"1062\",\"IAH\",\"LGA\",2.00,-11.00,0.00,\"\",0.00,200.00,177.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"1062\",\"LGA\",\"ORD\",9.00,-16.00,0.00,\"\",0.00,140.00,113.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1074\",\"ORD\",\"LGA\",10.00,-6.00,0.00,\"\",0.00,121.00,96.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1085\",\"ORD\",\"LGA\",6.00,2.00,0.00,\"\",0.00,129.00,97.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1123\",\"LGA\",\"DEN\",21.00,20.00,0.00,\"\",0.00,263.00,236.00,1620.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"UA\",\"1190\",\"ORD\",\"ALB\",0.00,-5.00,0.00,\"\",0.00,115.00,89.00,723.00,,,,,,\n2015,5,15,\"UA\",\"1214\",\"ORD\",\"LGA\",1.00,-14.00,0.00,\"\",0.00,122.00,94.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1218\",\"LGA\",\"ORD\",9.00,4.00,0.00,\"\",0.00,153.00,114.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1248\",\"ORD\",\"ALB\",140.00,128.00,0.00,\"\",0.00,108.00,86.00,723.00,17.00,0.00,0.00,0.00,111.00,\n2015,5,15,\"UA\",\"1283\",\"ALB\",\"ORD\",-1.00,0.00,0.00,\"\",0.00,142.00,108.00,723.00,,,,,,\n2015,5,15,\"UA\",\"1411\",\"LGA\",\"ORD\",4.00,-17.00,0.00,\"\",0.00,138.00,111.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1456\",\"LGA\",\"IAH\",-4.00,-31.00,0.00,\"\",0.00,215.00,195.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"1459\",\"IAH\",\"LGA\",9.00,-15.00,0.00,\"\",0.00,194.00,177.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"1469\",\"DEN\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,219.00,199.00,1620.00,,,,,,\n2015,5,15,\"UA\",\"1588\",\"LGA\",\"ORD\",4.00,-4.00,0.00,\"\",0.00,145.00,118.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1620\",\"ORD\",\"LGA\",6.00,-6.00,0.00,\"\",0.00,123.00,96.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1638\",\"ALB\",\"ORD\",2.00,5.00,0.00,\"\",0.00,144.00,121.00,723.00,,,,,,\n2015,5,15,\"UA\",\"1671\",\"IAH\",\"LGA\",6.00,-10.00,0.00,\"\",0.00,205.00,176.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"1686\",\"LGA\",\"DEN\",-4.00,-28.00,0.00,\"\",0.00,247.00,228.00,1620.00,,,,,,\n2015,5,15,\"UA\",\"1687\",\"LGA\",\"IAH\",3.00,-25.00,0.00,\"\",0.00,203.00,189.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"1693\",\"DEN\",\"LGA\",-6.00,-29.00,0.00,\"\",0.00,212.00,196.00,1620.00,,,,,,\n2015,5,16,\"UA\",\"758\",\"SFO\",\"JFK\",-8.00,-39.00,0.00,\"\",0.00,314.00,298.00,2586.00,,,,,,\n2015,5,16,\"UA\",\"760\",\"SFO\",\"JFK\",10.00,7.00,0.00,\"\",0.00,342.00,317.00,2586.00,,,,,,\n2015,5,16,\"UA\",\"765\",\"LGA\",\"ORD\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,16,\"UA\",\"779\",\"LAX\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,325.00,297.00,2475.00,,,,,,\n2015,5,16,\"UA\",\"791\",\"ORD\",\"LGA\",,,1.00,\"A\",0.00,,,733.00,,,,,,\n2015,5,16,\"UA\",\"824\",\"SFO\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,337.00,317.00,2586.00,,,,,,\n2015,5,16,\"UA\",\"825\",\"IAH\",\"LGA\",-2.00,-29.00,0.00,\"\",0.00,185.00,172.00,1416.00,,,,,,\n2015,5,16,\"UA\",\"830\",\"ORD\",\"BUF\",-5.00,-16.00,0.00,\"\",0.00,83.00,64.00,473.00,,,,,,\n2015,5,16,\"UA\",\"841\",\"JFK\",\"LAX\",-5.00,-9.00,0.00,\"\",0.00,370.00,338.00,2475.00,,,,,,\n2015,5,16,\"UA\",\"867\",\"LAX\",\"JFK\",12.00,-15.00,0.00,\"\",0.00,308.00,290.00,2475.00,,,,,,\n2015,5,16,\"UA\",\"912\",\"LAX\",\"JFK\",0.00,-1.00,0.00,\"\",0.00,324.00,305.00,2475.00,,,,,,\n2015,5,16,\"UA\",\"1074\",\"ORD\",\"LGA\",-3.00,-22.00,0.00,\"\",0.00,116.00,98.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1714\",\"LGA\",\"ORD\",2.00,5.00,0.00,\"\",0.00,157.00,131.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1719\",\"LGA\",\"DEN\",3.00,-8.00,0.00,\"\",0.00,249.00,225.00,1620.00,,,,,,\n2015,5,15,\"UA\",\"1722\",\"IAH\",\"LGA\",15.00,-8.00,0.00,\"\",0.00,196.00,181.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"1744\",\"LGA\",\"IAH\",4.00,-14.00,0.00,\"\",0.00,229.00,209.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"1744\",\"ORD\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,117.00,100.00,733.00,,,,,,\n2015,5,15,\"UA\",\"1906\",\"IAH\",\"LGA\",2.00,-5.00,0.00,\"\",0.00,202.00,178.00,1416.00,,,,,,\n2015,5,15,\"UA\",\"1906\",\"LGA\",\"DEN\",13.00,5.00,0.00,\"\",0.00,266.00,243.00,1620.00,,,,,,\n2015,5,15,\"UA\",\"1914\",\"LGA\",\"ORD\",6.00,-19.00,0.00,\"\",0.00,142.00,118.00,733.00,,,,,,\n2015,5,14,\"UA\",\"212\",\"LAX\",\"JFK\",-7.00,-25.00,0.00,\"\",0.00,310.00,291.00,2475.00,,,,,,\n2015,5,14,\"UA\",\"233\",\"LAX\",\"JFK\",-1.00,-2.00,0.00,\"\",0.00,324.00,295.00,2475.00,,,,,,\n2015,5,14,\"UA\",\"244\",\"ORD\",\"LGA\",186.00,188.00,0.00,\"\",0.00,138.00,95.00,733.00,8.00,0.00,2.00,0.00,178.00,\n2015,5,14,\"UA\",\"257\",\"JFK\",\"SFO\",-4.00,-44.00,0.00,\"\",0.00,361.00,330.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"275\",\"LAX\",\"JFK\",-8.00,-31.00,0.00,\"\",0.00,312.00,295.00,2475.00,,,,,,\n2015,5,14,\"UA\",\"303\",\"DEN\",\"LGA\",-5.00,-36.00,0.00,\"\",0.00,209.00,190.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"303\",\"LGA\",\"IAH\",28.00,-1.00,0.00,\"\",0.00,212.00,190.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"343\",\"LGA\",\"IAH\",-1.00,9.00,0.00,\"\",0.00,250.00,194.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"345\",\"LGA\",\"ORD\",-4.00,9.00,0.00,\"\",0.00,174.00,118.00,733.00,,,,,,\n2015,5,14,\"UA\",\"368\",\"BUF\",\"ORD\",-10.00,-1.00,0.00,\"\",0.00,113.00,82.00,473.00,,,,,,\n2015,5,14,\"UA\",\"406\",\"DEN\",\"LGA\",0.00,-31.00,0.00,\"\",0.00,206.00,193.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"415\",\"JFK\",\"SFO\",-7.00,-24.00,0.00,\"\",0.00,367.00,337.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"441\",\"JFK\",\"LAX\",-6.00,-19.00,0.00,\"\",0.00,363.00,343.00,2475.00,,,,,,\n2015,5,14,\"UA\",\"442\",\"IAH\",\"LGA\",-1.00,-23.00,0.00,\"\",0.00,191.00,172.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"443\",\"JFK\",\"LAX\",-2.00,10.00,0.00,\"\",0.00,388.00,351.00,2475.00,,,,,,\n2015,5,14,\"UA\",\"445\",\"JFK\",\"LAX\",-7.00,-13.00,0.00,\"\",0.00,365.00,328.00,2475.00,,,,,,\n2015,5,14,\"UA\",\"456\",\"IAH\",\"LGA\",12.00,-9.00,0.00,\"\",0.00,193.00,168.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"463\",\"LGA\",\"ORD\",-7.00,8.00,0.00,\"\",0.00,172.00,138.00,733.00,,,,,,\n2015,5,14,\"UA\",\"483\",\"BUF\",\"ORD\",21.00,26.00,0.00,\"\",0.00,110.00,81.00,473.00,8.00,0.00,5.00,0.00,13.00,\n2015,5,14,\"UA\",\"502\",\"SFO\",\"JFK\",13.00,-2.00,0.00,\"\",0.00,322.00,294.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"509\",\"ORD\",\"LGA\",-7.00,4.00,0.00,\"\",0.00,142.00,102.00,733.00,,,,,,\n2015,5,14,\"UA\",\"510\",\"JFK\",\"SFO\",2.00,-6.00,0.00,\"\",0.00,393.00,341.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"512\",\"JFK\",\"SFO\",-4.00,-35.00,0.00,\"\",0.00,370.00,344.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"514\",\"JFK\",\"SFO\",-5.00,-18.00,0.00,\"\",0.00,388.00,348.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"535\",\"JFK\",\"LAX\",5.00,-2.00,0.00,\"\",0.00,367.00,328.00,2475.00,,,,,,\n2015,5,14,\"UA\",\"541\",\"JFK\",\"SFO\",-11.00,-35.00,0.00,\"\",0.00,366.00,326.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"542\",\"LGA\",\"DEN\",-3.00,-20.00,0.00,\"\",0.00,252.00,221.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"561\",\"LGA\",\"DEN\",-1.00,-25.00,0.00,\"\",0.00,242.00,222.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"622\",\"LGA\",\"ORD\",88.00,97.00,0.00,\"\",0.00,167.00,115.00,733.00,10.00,0.00,9.00,0.00,78.00,\n2015,5,14,\"UA\",\"637\",\"SFO\",\"JFK\",-1.00,-1.00,0.00,\"\",0.00,345.00,325.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"656\",\"ORD\",\"BUF\",34.00,24.00,0.00,\"\",0.00,82.00,62.00,473.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"UA\",\"672\",\"ORD\",\"LGA\",114.00,105.00,0.00,\"\",0.00,122.00,100.00,733.00,105.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"UA\",\"686\",\"ORD\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,124.00,98.00,733.00,,,,,,\n2015,5,14,\"UA\",\"687\",\"LGA\",\"ORD\",-4.00,-21.00,0.00,\"\",0.00,149.00,117.00,733.00,,,,,,\n2015,5,14,\"UA\",\"692\",\"ORD\",\"LGA\",6.00,2.00,0.00,\"\",0.00,132.00,98.00,733.00,,,,,,\n2015,5,14,\"UA\",\"693\",\"IAH\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,204.00,176.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"693\",\"LGA\",\"ORD\",184.00,156.00,0.00,\"\",0.00,142.00,110.00,733.00,0.00,0.00,1.00,0.00,155.00,\n2015,5,14,\"UA\",\"694\",\"ORD\",\"LGA\",-1.00,-28.00,0.00,\"\",0.00,104.00,91.00,733.00,,,,,,\n2015,5,14,\"UA\",\"698\",\"ORD\",\"LGA\",25.00,-2.00,0.00,\"\",0.00,107.00,91.00,733.00,,,,,,\n2015,5,14,\"UA\",\"699\",\"LGA\",\"ORD\",8.00,0.00,0.00,\"\",0.00,154.00,117.00,733.00,,,,,,\n2015,5,14,\"UA\",\"703\",\"JFK\",\"LAX\",-5.00,-6.00,0.00,\"\",0.00,359.00,334.00,2475.00,,,,,,\n2015,5,14,\"UA\",\"704\",\"SFO\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,318.00,297.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"711\",\"LGA\",\"ORD\",-3.00,-7.00,0.00,\"\",0.00,151.00,106.00,733.00,,,,,,\n2015,5,14,\"UA\",\"746\",\"LGA\",\"IAH\",2.00,-13.00,0.00,\"\",0.00,227.00,192.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"758\",\"SFO\",\"JFK\",0.00,-17.00,0.00,\"\",0.00,328.00,297.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"760\",\"SFO\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,339.00,310.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"766\",\"JFK\",\"SFO\",-9.00,-29.00,0.00,\"\",0.00,360.00,338.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"779\",\"LAX\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,319.00,297.00,2475.00,,,,,,\n2015,5,14,\"UA\",\"791\",\"LGA\",\"IAH\",0.00,-30.00,0.00,\"\",0.00,214.00,190.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"791\",\"ORD\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,121.00,96.00,733.00,,,,,,\n2015,5,14,\"UA\",\"824\",\"SFO\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,320.00,300.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"830\",\"ORD\",\"BUF\",58.00,60.00,0.00,\"\",0.00,96.00,61.00,473.00,58.00,0.00,2.00,0.00,0.00,\n2015,5,14,\"UA\",\"841\",\"JFK\",\"LAX\",140.00,126.00,0.00,\"\",0.00,360.00,327.00,2475.00,126.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"UA\",\"843\",\"LGA\",\"ORD\",0.00,-12.00,0.00,\"\",0.00,148.00,118.00,733.00,,,,,,\n2015,5,14,\"UA\",\"867\",\"LAX\",\"JFK\",8.00,-5.00,0.00,\"\",0.00,322.00,304.00,2475.00,,,,,,\n2015,5,14,\"UA\",\"898\",\"SFO\",\"JFK\",5.00,-12.00,0.00,\"\",0.00,328.00,307.00,2586.00,,,,,,\n2015,5,14,\"UA\",\"912\",\"LAX\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,309.00,290.00,2475.00,,,,,,\n2015,5,14,\"UA\",\"1018\",\"LGA\",\"IAH\",69.00,57.00,0.00,\"\",0.00,234.00,191.00,1416.00,0.00,0.00,12.00,0.00,45.00,\n2015,5,14,\"UA\",\"1042\",\"LGA\",\"DEN\",3.00,-30.00,0.00,\"\",0.00,235.00,219.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"1059\",\"DEN\",\"LGA\",9.00,-9.00,0.00,\"\",0.00,217.00,196.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"1062\",\"IAH\",\"LGA\",8.00,-11.00,0.00,\"\",0.00,194.00,176.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"1062\",\"LGA\",\"ORD\",2.00,0.00,0.00,\"\",0.00,163.00,120.00,733.00,,,,,,\n2015,5,14,\"UA\",\"1085\",\"ORD\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,121.00,98.00,733.00,,,,,,\n2015,5,14,\"UA\",\"1087\",\"ORD\",\"LGA\",19.00,4.00,0.00,\"\",0.00,122.00,99.00,733.00,,,,,,\n2015,5,14,\"UA\",\"1123\",\"LGA\",\"DEN\",11.00,9.00,0.00,\"\",0.00,262.00,220.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"1145\",\"LGA\",\"ORD\",-1.00,12.00,0.00,\"\",0.00,172.00,109.00,733.00,,,,,,\n2015,5,13,\"UA\",\"1671\",\"IAH\",\"LGA\",-1.00,0.00,0.00,\"\",0.00,222.00,187.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"1687\",\"LGA\",\"IAH\",-5.00,-1.00,0.00,\"\",0.00,235.00,215.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"1693\",\"DEN\",\"LGA\",1.00,-32.00,0.00,\"\",0.00,202.00,184.00,1620.00,,,,,,\n2015,5,13,\"UA\",\"1714\",\"LGA\",\"ORD\",-3.00,1.00,0.00,\"\",0.00,158.00,116.00,733.00,,,,,,\n2015,5,13,\"UA\",\"1719\",\"LGA\",\"DEN\",5.00,28.00,0.00,\"\",0.00,283.00,233.00,1620.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,13,\"UA\",\"1744\",\"LGA\",\"IAH\",-6.00,50.00,0.00,\"\",0.00,303.00,255.00,1416.00,0.00,0.00,50.00,0.00,0.00,\n2015,5,13,\"UA\",\"1744\",\"ORD\",\"LGA\",7.00,-19.00,0.00,\"\",0.00,107.00,87.00,733.00,,,,,,\n2015,5,13,\"UA\",\"1906\",\"IAH\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,188.00,172.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"1906\",\"LGA\",\"DEN\",58.00,45.00,0.00,\"\",0.00,261.00,216.00,1620.00,45.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"UA\",\"212\",\"LAX\",\"JFK\",1.00,-9.00,0.00,\"\",0.00,318.00,293.00,2475.00,,,,,,\n2015,5,12,\"UA\",\"233\",\"LAX\",\"JFK\",-3.00,-39.00,0.00,\"\",0.00,289.00,275.00,2475.00,,,,,,\n2015,5,12,\"UA\",\"244\",\"ORD\",\"LGA\",-8.00,-27.00,0.00,\"\",0.00,117.00,98.00,733.00,,,,,,\n2015,5,12,\"UA\",\"257\",\"JFK\",\"SFO\",-2.00,-19.00,0.00,\"\",0.00,384.00,366.00,2586.00,,,,,,\n2015,5,12,\"UA\",\"275\",\"LAX\",\"JFK\",92.00,79.00,0.00,\"\",0.00,322.00,275.00,2475.00,0.00,0.00,79.00,0.00,0.00,\n2015,5,12,\"UA\",\"285\",\"IAH\",\"LGA\",1.00,-36.00,0.00,\"\",0.00,181.00,168.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"303\",\"DEN\",\"LGA\",1.00,-40.00,0.00,\"\",0.00,199.00,181.00,1620.00,,,,,,\n2015,5,12,\"UA\",\"303\",\"LGA\",\"IAH\",-7.00,9.00,0.00,\"\",0.00,257.00,222.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"343\",\"LGA\",\"IAH\",-12.00,-14.00,0.00,\"\",0.00,238.00,203.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"345\",\"LGA\",\"ORD\",-4.00,-24.00,0.00,\"\",0.00,141.00,116.00,733.00,,,,,,\n2015,5,12,\"UA\",\"368\",\"BUF\",\"ORD\",15.00,34.00,0.00,\"\",0.00,123.00,90.00,473.00,15.00,0.00,19.00,0.00,0.00,\n2015,5,12,\"UA\",\"406\",\"DEN\",\"LGA\",12.00,-31.00,0.00,\"\",0.00,194.00,177.00,1620.00,,,,,,\n2015,5,12,\"UA\",\"415\",\"JFK\",\"SFO\",-5.00,4.00,0.00,\"\",0.00,393.00,361.00,2586.00,,,,,,\n2015,5,12,\"UA\",\"441\",\"JFK\",\"LAX\",6.00,39.00,0.00,\"\",0.00,409.00,352.00,2475.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,12,\"UA\",\"442\",\"IAH\",\"LGA\",-5.00,-34.00,0.00,\"\",0.00,184.00,168.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"443\",\"JFK\",\"LAX\",-6.00,18.00,0.00,\"\",0.00,400.00,368.00,2475.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,12,\"UA\",\"445\",\"JFK\",\"LAX\",37.00,59.00,0.00,\"\",0.00,393.00,351.00,2475.00,7.00,0.00,22.00,0.00,30.00,\n2015,5,11,\"UA\",\"441\",\"JFK\",\"LAX\",-2.00,3.00,0.00,\"\",0.00,381.00,341.00,2475.00,,,,,,\n2015,5,11,\"UA\",\"442\",\"IAH\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,204.00,185.00,1416.00,,,,,,\n2015,5,11,\"UA\",\"443\",\"JFK\",\"LAX\",-6.00,0.00,0.00,\"\",0.00,382.00,331.00,2475.00,,,,,,\n2015,5,11,\"UA\",\"445\",\"JFK\",\"LAX\",15.00,21.00,0.00,\"\",0.00,377.00,344.00,2475.00,15.00,0.00,6.00,0.00,0.00,\n2015,5,11,\"UA\",\"456\",\"IAH\",\"LGA\",115.00,94.00,0.00,\"\",0.00,193.00,173.00,1416.00,10.00,0.00,0.00,0.00,84.00,\n2015,5,11,\"UA\",\"462\",\"LGA\",\"IAH\",-3.00,7.00,0.00,\"\",0.00,254.00,209.00,1416.00,,,,,,\n2015,5,11,\"UA\",\"462\",\"ORD\",\"LGA\",-1.00,6.00,0.00,\"\",0.00,138.00,105.00,733.00,,,,,,\n2015,5,11,\"UA\",\"463\",\"LGA\",\"ORD\",-1.00,-14.00,0.00,\"\",0.00,144.00,114.00,733.00,,,,,,\n2015,5,11,\"UA\",\"483\",\"BUF\",\"ORD\",-7.00,-10.00,0.00,\"\",0.00,102.00,69.00,473.00,,,,,,\n2015,5,11,\"UA\",\"502\",\"SFO\",\"JFK\",47.00,29.00,0.00,\"\",0.00,319.00,292.00,2586.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,11,\"UA\",\"509\",\"ORD\",\"LGA\",161.00,153.00,0.00,\"\",0.00,123.00,102.00,733.00,0.00,0.00,106.00,0.00,47.00,\n2015,5,11,\"UA\",\"510\",\"JFK\",\"SFO\",-2.00,8.00,0.00,\"\",0.00,411.00,366.00,2586.00,,,,,,\n2015,5,11,\"UA\",\"512\",\"JFK\",\"SFO\",-4.00,-14.00,0.00,\"\",0.00,391.00,352.00,2586.00,,,,,,\n2015,5,11,\"UA\",\"514\",\"JFK\",\"SFO\",13.00,13.00,0.00,\"\",0.00,401.00,355.00,2586.00,,,,,,\n2015,5,11,\"UA\",\"535\",\"JFK\",\"LAX\",-2.00,-8.00,0.00,\"\",0.00,368.00,328.00,2475.00,,,,,,\n2015,5,11,\"UA\",\"541\",\"JFK\",\"SFO\",-5.00,-14.00,0.00,\"\",0.00,381.00,341.00,2586.00,,,,,,\n2015,5,11,\"UA\",\"561\",\"LGA\",\"DEN\",-4.00,-44.00,0.00,\"\",0.00,226.00,214.00,1620.00,,,,,,\n2015,5,11,\"UA\",\"622\",\"LGA\",\"ORD\",-5.00,-33.00,0.00,\"\",0.00,130.00,112.00,733.00,,,,,,\n2015,5,11,\"UA\",\"637\",\"SFO\",\"JFK\",112.00,92.00,0.00,\"\",0.00,325.00,302.00,2586.00,0.00,0.00,92.00,0.00,0.00,\n2015,5,11,\"UA\",\"656\",\"ORD\",\"BUF\",-7.00,-1.00,0.00,\"\",0.00,98.00,68.00,473.00,,,,,,\n2015,5,11,\"UA\",\"672\",\"ORD\",\"LGA\",1.00,-4.00,0.00,\"\",0.00,126.00,102.00,733.00,,,,,,\n2015,5,11,\"UA\",\"681\",\"LGA\",\"ORD\",138.00,139.00,0.00,\"\",0.00,161.00,111.00,733.00,0.00,0.00,4.00,0.00,135.00,\n2015,5,11,\"UA\",\"686\",\"ORD\",\"LGA\",6.00,,0.00,\"\",1.00,,,733.00,,,,,,\n2015,5,11,\"UA\",\"690\",\"ORD\",\"LGA\",277.00,265.00,0.00,\"\",0.00,124.00,100.00,733.00,5.00,0.00,0.00,0.00,260.00,\n2015,5,11,\"UA\",\"692\",\"ORD\",\"LGA\",188.00,166.00,0.00,\"\",0.00,114.00,97.00,733.00,0.00,0.00,0.00,0.00,166.00,\n2015,5,11,\"UA\",\"693\",\"IAH\",\"LGA\",122.00,126.00,0.00,\"\",0.00,219.00,187.00,1416.00,0.00,10.00,4.00,0.00,112.00,\n2015,5,11,\"UA\",\"693\",\"LGA\",\"ORD\",84.00,79.00,0.00,\"\",0.00,165.00,121.00,733.00,0.00,0.00,0.00,0.00,79.00,\n2015,5,11,\"UA\",\"694\",\"ORD\",\"LGA\",127.00,132.00,0.00,\"\",0.00,136.00,104.00,733.00,127.00,0.00,5.00,0.00,0.00,\n2015,5,11,\"UA\",\"695\",\"LGA\",\"ORD\",251.00,211.00,0.00,\"\",0.00,126.00,112.00,733.00,0.00,0.00,0.00,0.00,211.00,\n2015,5,11,\"UA\",\"698\",\"ORD\",\"LGA\",36.00,27.00,0.00,\"\",0.00,125.00,100.00,733.00,9.00,0.00,0.00,0.00,18.00,\n2015,5,11,\"UA\",\"699\",\"LGA\",\"ORD\",160.00,160.00,0.00,\"\",0.00,162.00,122.00,733.00,21.00,0.00,0.00,0.00,139.00,\n2015,5,11,\"UA\",\"703\",\"JFK\",\"LAX\",5.00,-1.00,0.00,\"\",0.00,354.00,325.00,2475.00,,,,,,\n2015,5,11,\"UA\",\"704\",\"SFO\",\"JFK\",-6.00,-40.00,0.00,\"\",0.00,303.00,276.00,2586.00,,,,,,\n2015,5,11,\"UA\",\"711\",\"LGA\",\"ORD\",22.00,7.00,0.00,\"\",0.00,140.00,110.00,733.00,,,,,,\n2015,5,11,\"UA\",\"741\",\"LGA\",\"ORD\",160.00,128.00,0.00,\"\",0.00,134.00,112.00,733.00,0.00,16.00,0.00,0.00,112.00,\n2015,5,11,\"UA\",\"746\",\"LGA\",\"IAH\",10.00,70.00,0.00,\"\",0.00,302.00,194.00,1416.00,0.00,0.00,70.00,0.00,0.00,\n2015,5,11,\"UA\",\"758\",\"SFO\",\"JFK\",-6.00,1.00,0.00,\"\",0.00,352.00,305.00,2586.00,,,,,,\n2015,5,11,\"UA\",\"760\",\"SFO\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,331.00,307.00,2586.00,,,,,,\n2015,5,11,\"UA\",\"765\",\"LGA\",\"ORD\",36.00,10.00,0.00,\"\",0.00,134.00,107.00,733.00,,,,,,\n2015,5,11,\"UA\",\"766\",\"JFK\",\"SFO\",-7.00,-17.00,0.00,\"\",0.00,370.00,345.00,2586.00,,,,,,\n2015,5,11,\"UA\",\"779\",\"LAX\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,322.00,299.00,2475.00,,,,,,\n2015,5,11,\"UA\",\"791\",\"LGA\",\"IAH\",92.00,59.00,0.00,\"\",0.00,211.00,188.00,1416.00,0.00,8.00,0.00,0.00,51.00,\n2015,5,11,\"UA\",\"791\",\"ORD\",\"LGA\",46.00,42.00,0.00,\"\",0.00,127.00,109.00,733.00,42.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"UA\",\"824\",\"SFO\",\"JFK\",-2.00,-34.00,0.00,\"\",0.00,305.00,285.00,2586.00,,,,,,\n2015,5,11,\"UA\",\"830\",\"ORD\",\"BUF\",42.00,35.00,0.00,\"\",0.00,87.00,66.00,473.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"UA\",\"841\",\"JFK\",\"LAX\",0.00,25.00,0.00,\"\",0.00,399.00,339.00,2475.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,11,\"UA\",\"867\",\"LAX\",\"JFK\",219.00,213.00,0.00,\"\",0.00,329.00,290.00,2475.00,213.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"UA\",\"898\",\"SFO\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,334.00,314.00,2586.00,,,,,,\n2015,5,11,\"UA\",\"910\",\"ORD\",\"LGA\",165.00,152.00,0.00,\"\",0.00,118.00,99.00,733.00,0.00,0.00,12.00,0.00,140.00,\n2015,5,11,\"UA\",\"912\",\"LAX\",\"JFK\",-13.00,-38.00,0.00,\"\",0.00,300.00,275.00,2475.00,,,,,,\n2015,5,11,\"UA\",\"1018\",\"LGA\",\"IAH\",-4.00,3.00,0.00,\"\",0.00,249.00,205.00,1416.00,,,,,,\n2015,5,11,\"UA\",\"1042\",\"LGA\",\"DEN\",66.00,39.00,0.00,\"\",0.00,241.00,221.00,1620.00,27.00,0.00,0.00,0.00,12.00,\n2015,5,11,\"UA\",\"1059\",\"DEN\",\"LGA\",159.00,135.00,0.00,\"\",0.00,211.00,190.00,1620.00,4.00,0.00,0.00,0.00,131.00,\n2015,5,11,\"UA\",\"1062\",\"IAH\",\"LGA\",9.00,11.00,0.00,\"\",0.00,215.00,190.00,1416.00,,,,,,\n2015,5,11,\"UA\",\"1062\",\"LGA\",\"ORD\",127.00,117.00,0.00,\"\",0.00,155.00,113.00,733.00,0.00,0.00,0.00,0.00,117.00,\n2015,5,11,\"UA\",\"1074\",\"ORD\",\"LGA\",67.00,68.00,0.00,\"\",0.00,138.00,111.00,733.00,36.00,0.00,1.00,0.00,31.00,\n2015,5,11,\"UA\",\"1085\",\"ORD\",\"LGA\",-6.00,,0.00,\"\",1.00,,,733.00,,,,,,\n2015,5,11,\"UA\",\"1123\",\"LGA\",\"DEN\",0.00,-5.00,0.00,\"\",0.00,259.00,223.00,1620.00,,,,,,\n2015,5,11,\"UA\",\"1145\",\"LGA\",\"ORD\",4.00,-13.00,0.00,\"\",0.00,142.00,111.00,733.00,,,,,,\n2015,5,11,\"UA\",\"1190\",\"ORD\",\"ALB\",43.00,49.00,0.00,\"\",0.00,126.00,92.00,723.00,25.00,0.00,6.00,0.00,18.00,\n2015,5,11,\"UA\",\"1194\",\"IAH\",\"LGA\",25.00,13.00,0.00,\"\",0.00,206.00,179.00,1416.00,,,,,,\n2015,5,11,\"UA\",\"1214\",\"ORD\",\"LGA\",163.00,164.00,0.00,\"\",0.00,138.00,105.00,733.00,0.00,0.00,132.00,0.00,32.00,\n2015,5,11,\"UA\",\"1218\",\"LGA\",\"ORD\",18.00,-5.00,0.00,\"\",0.00,135.00,111.00,733.00,,,,,,\n2015,5,11,\"UA\",\"1248\",\"ORD\",\"ALB\",6.00,-5.00,0.00,\"\",0.00,109.00,88.00,723.00,,,,,,\n2015,5,11,\"UA\",\"1283\",\"ALB\",\"ORD\",63.00,64.00,0.00,\"\",0.00,142.00,120.00,723.00,19.00,0.00,1.00,0.00,44.00,\n2015,5,11,\"UA\",\"1441\",\"LGA\",\"IAH\",19.00,-9.00,0.00,\"\",0.00,203.00,187.00,1416.00,,,,,,\n2015,5,11,\"UA\",\"1456\",\"LGA\",\"IAH\",6.00,-5.00,0.00,\"\",0.00,231.00,201.00,1416.00,,,,,,\n2015,5,11,\"UA\",\"1469\",\"DEN\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,216.00,197.00,1620.00,,,,,,\n2015,5,11,\"UA\",\"1483\",\"DEN\",\"LGA\",13.00,1.00,0.00,\"\",0.00,223.00,201.00,1620.00,,,,,,\n2015,5,9,\"UA\",\"535\",\"JFK\",\"LAX\",2.00,-17.00,0.00,\"\",0.00,351.00,333.00,2475.00,,,,,,\n2015,5,9,\"UA\",\"541\",\"JFK\",\"SFO\",0.00,-2.00,0.00,\"\",0.00,388.00,342.00,2586.00,,,,,,\n2015,5,9,\"UA\",\"556\",\"DEN\",\"LGA\",-2.00,8.00,0.00,\"\",0.00,243.00,215.00,1620.00,,,,,,\n2015,5,9,\"UA\",\"589\",\"BUF\",\"ORD\",-5.00,13.00,0.00,\"\",0.00,122.00,86.00,473.00,,,,,,\n2015,5,9,\"UA\",\"637\",\"SFO\",\"JFK\",4.00,-9.00,0.00,\"\",0.00,332.00,304.00,2586.00,,,,,,\n2015,5,9,\"UA\",\"681\",\"LGA\",\"ORD\",-2.00,-10.00,0.00,\"\",0.00,152.00,111.00,733.00,,,,,,\n2015,5,9,\"UA\",\"682\",\"ORD\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,115.00,102.00,733.00,,,,,,\n2015,5,9,\"UA\",\"703\",\"JFK\",\"LAX\",-2.00,-27.00,0.00,\"\",0.00,335.00,311.00,2475.00,,,,,,\n2015,5,9,\"UA\",\"706\",\"LGA\",\"IAH\",-3.00,-24.00,0.00,\"\",0.00,219.00,194.00,1416.00,,,,,,\n2015,5,9,\"UA\",\"711\",\"LGA\",\"ORD\",-6.00,-24.00,0.00,\"\",0.00,137.00,110.00,733.00,,,,,,\n2015,5,9,\"UA\",\"746\",\"LGA\",\"IAH\",-7.00,-38.00,0.00,\"\",0.00,211.00,186.00,1416.00,,,,,,\n2015,5,9,\"UA\",\"758\",\"SFO\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,335.00,312.00,2586.00,,,,,,\n2015,5,9,\"UA\",\"760\",\"SFO\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,335.00,312.00,2586.00,,,,,,\n2015,5,9,\"UA\",\"765\",\"LGA\",\"ORD\",20.00,-14.00,0.00,\"\",0.00,126.00,103.00,733.00,,,,,,\n2015,5,9,\"UA\",\"779\",\"LAX\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,315.00,293.00,2475.00,,,,,,\n2015,5,9,\"UA\",\"791\",\"ORD\",\"LGA\",12.00,27.00,0.00,\"\",0.00,146.00,129.00,733.00,6.00,0.00,15.00,0.00,6.00,\n2015,5,9,\"UA\",\"824\",\"SFO\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,331.00,312.00,2586.00,,,,,,\n2015,5,9,\"UA\",\"825\",\"IAH\",\"LGA\",14.00,46.00,0.00,\"\",0.00,244.00,224.00,1416.00,14.00,0.00,32.00,0.00,0.00,\n2015,5,9,\"UA\",\"830\",\"ORD\",\"BUF\",23.00,5.00,0.00,\"\",0.00,76.00,62.00,473.00,,,,,,\n2015,5,9,\"UA\",\"841\",\"JFK\",\"LAX\",0.00,-20.00,0.00,\"\",0.00,354.00,316.00,2475.00,,,,,,\n2015,5,9,\"UA\",\"867\",\"LAX\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,318.00,300.00,2475.00,,,,,,\n2015,5,9,\"UA\",\"912\",\"LAX\",\"JFK\",0.00,8.00,0.00,\"\",0.00,333.00,307.00,2475.00,,,,,,\n2015,5,9,\"UA\",\"1138\",\"DEN\",\"LGA\",21.00,11.00,0.00,\"\",0.00,229.00,207.00,1620.00,,,,,,\n2015,5,9,\"UA\",\"1226\",\"LGA\",\"IAH\",-4.00,4.00,0.00,\"\",0.00,254.00,191.00,1416.00,,,,,,\n2015,5,9,\"UA\",\"1239\",\"ORD\",\"LGA\",1.00,-11.00,0.00,\"\",0.00,123.00,105.00,733.00,,,,,,\n2015,5,9,\"UA\",\"1248\",\"ORD\",\"ALB\",-4.00,-7.00,0.00,\"\",0.00,117.00,94.00,723.00,,,,,,\n2015,5,12,\"UA\",\"456\",\"IAH\",\"LGA\",14.00,-5.00,0.00,\"\",0.00,195.00,161.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"462\",\"LGA\",\"IAH\",-4.00,1.00,0.00,\"\",0.00,249.00,206.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"462\",\"ORD\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,118.00,95.00,733.00,,,,,,\n2015,5,12,\"UA\",\"463\",\"LGA\",\"ORD\",-8.00,-14.00,0.00,\"\",0.00,151.00,121.00,733.00,,,,,,\n2015,5,12,\"UA\",\"483\",\"BUF\",\"ORD\",12.00,21.00,0.00,\"\",0.00,114.00,85.00,473.00,8.00,0.00,9.00,0.00,4.00,\n2015,5,12,\"UA\",\"502\",\"SFO\",\"JFK\",2.00,-33.00,0.00,\"\",0.00,302.00,282.00,2586.00,,,,,,\n2015,5,12,\"UA\",\"509\",\"ORD\",\"LGA\",2.00,16.00,0.00,\"\",0.00,145.00,91.00,733.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,12,\"UA\",\"510\",\"JFK\",\"SFO\",30.00,16.00,0.00,\"\",0.00,387.00,356.00,2586.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,12,\"UA\",\"512\",\"JFK\",\"SFO\",42.00,42.00,0.00,\"\",0.00,401.00,376.00,2586.00,42.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"UA\",\"514\",\"JFK\",\"SFO\",21.00,10.00,0.00,\"\",0.00,390.00,360.00,2586.00,,,,,,\n2015,5,12,\"UA\",\"535\",\"JFK\",\"LAX\",-2.00,-13.00,0.00,\"\",0.00,363.00,337.00,2475.00,,,,,,\n2015,5,12,\"UA\",\"541\",\"JFK\",\"SFO\",-6.00,3.00,0.00,\"\",0.00,399.00,361.00,2586.00,,,,,,\n2015,5,12,\"UA\",\"561\",\"LGA\",\"DEN\",-5.00,-2.00,0.00,\"\",0.00,269.00,239.00,1620.00,,,,,,\n2015,5,12,\"UA\",\"622\",\"LGA\",\"ORD\",-11.00,-17.00,0.00,\"\",0.00,152.00,129.00,733.00,,,,,,\n2015,5,12,\"UA\",\"637\",\"SFO\",\"JFK\",231.00,189.00,0.00,\"\",0.00,303.00,281.00,2586.00,189.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"UA\",\"656\",\"ORD\",\"BUF\",-1.00,15.00,0.00,\"\",0.00,108.00,59.00,473.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,12,\"UA\",\"672\",\"ORD\",\"LGA\",39.00,21.00,0.00,\"\",0.00,113.00,89.00,733.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,12,\"UA\",\"681\",\"LGA\",\"ORD\",-6.00,-9.00,0.00,\"\",0.00,157.00,141.00,733.00,,,,,,\n2015,5,12,\"UA\",\"686\",\"ORD\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,121.00,89.00,733.00,,,,,,\n2015,5,12,\"UA\",\"690\",\"ORD\",\"LGA\",60.00,33.00,0.00,\"\",0.00,109.00,89.00,733.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"UA\",\"692\",\"ORD\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,118.00,94.00,733.00,,,,,,\n2015,5,12,\"UA\",\"693\",\"IAH\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,195.00,167.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"693\",\"LGA\",\"ORD\",-7.00,-26.00,0.00,\"\",0.00,151.00,122.00,733.00,,,,,,\n2015,5,12,\"UA\",\"694\",\"ORD\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,123.00,104.00,733.00,,,,,,\n2015,5,12,\"UA\",\"695\",\"LGA\",\"ORD\",23.00,5.00,0.00,\"\",0.00,148.00,119.00,733.00,,,,,,\n2015,5,12,\"UA\",\"698\",\"ORD\",\"LGA\",2.00,-30.00,0.00,\"\",0.00,102.00,84.00,733.00,,,,,,\n2015,5,12,\"UA\",\"699\",\"LGA\",\"ORD\",18.00,-8.00,0.00,\"\",0.00,136.00,114.00,733.00,,,,,,\n2015,5,12,\"UA\",\"703\",\"JFK\",\"LAX\",7.00,32.00,0.00,\"\",0.00,385.00,361.00,2475.00,7.00,0.00,25.00,0.00,0.00,\n2015,5,12,\"UA\",\"704\",\"SFO\",\"JFK\",-5.00,-32.00,0.00,\"\",0.00,310.00,282.00,2586.00,,,,,,\n2015,5,12,\"UA\",\"711\",\"LGA\",\"ORD\",-3.00,-17.00,0.00,\"\",0.00,141.00,115.00,733.00,,,,,,\n2015,5,12,\"UA\",\"741\",\"LGA\",\"ORD\",-4.00,-14.00,0.00,\"\",0.00,156.00,123.00,733.00,,,,,,\n2015,5,12,\"UA\",\"746\",\"LGA\",\"IAH\",17.00,11.00,0.00,\"\",0.00,236.00,210.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"758\",\"SFO\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,333.00,309.00,2586.00,,,,,,\n2015,5,12,\"UA\",\"760\",\"SFO\",\"JFK\",182.00,177.00,0.00,\"\",0.00,340.00,292.00,2586.00,0.00,0.00,177.00,0.00,0.00,\n2015,5,12,\"UA\",\"765\",\"LGA\",\"ORD\",-7.00,-16.00,0.00,\"\",0.00,151.00,122.00,733.00,,,,,,\n2015,5,12,\"UA\",\"766\",\"JFK\",\"SFO\",-9.00,12.00,0.00,\"\",0.00,401.00,364.00,2586.00,,,,,,\n2015,5,12,\"UA\",\"779\",\"LAX\",\"JFK\",139.00,98.00,0.00,\"\",0.00,294.00,269.00,2475.00,0.00,0.00,84.00,0.00,14.00,\n2015,5,12,\"UA\",\"791\",\"LGA\",\"IAH\",-2.00,4.00,0.00,\"\",0.00,250.00,227.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"791\",\"ORD\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,111.00,93.00,733.00,,,,,,\n2015,5,12,\"UA\",\"824\",\"SFO\",\"JFK\",28.00,-5.00,0.00,\"\",0.00,304.00,285.00,2586.00,,,,,,\n2015,5,12,\"UA\",\"830\",\"ORD\",\"BUF\",-4.00,-20.00,0.00,\"\",0.00,78.00,61.00,473.00,,,,,,\n2015,5,12,\"UA\",\"841\",\"JFK\",\"LAX\",-6.00,-6.00,0.00,\"\",0.00,374.00,354.00,2475.00,,,,,,\n2015,5,12,\"UA\",\"867\",\"LAX\",\"JFK\",69.00,65.00,0.00,\"\",0.00,331.00,274.00,2475.00,0.00,0.00,65.00,0.00,0.00,\n2015,5,12,\"UA\",\"898\",\"SFO\",\"JFK\",160.00,130.00,0.00,\"\",0.00,315.00,287.00,2586.00,0.00,0.00,130.00,0.00,0.00,\n2015,5,12,\"UA\",\"910\",\"ORD\",\"LGA\",13.00,-8.00,0.00,\"\",0.00,110.00,90.00,733.00,,,,,,\n2015,5,12,\"UA\",\"912\",\"LAX\",\"JFK\",-3.00,-31.00,0.00,\"\",0.00,297.00,279.00,2475.00,,,,,,\n2015,5,12,\"UA\",\"1042\",\"LGA\",\"DEN\",5.00,-2.00,0.00,\"\",0.00,261.00,237.00,1620.00,,,,,,\n2015,5,12,\"UA\",\"1059\",\"DEN\",\"LGA\",0.00,-33.00,0.00,\"\",0.00,202.00,181.00,1620.00,,,,,,\n2015,5,12,\"UA\",\"1062\",\"IAH\",\"LGA\",-2.00,-30.00,0.00,\"\",0.00,185.00,169.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"1062\",\"LGA\",\"ORD\",-1.00,-21.00,0.00,\"\",0.00,145.00,119.00,733.00,,,,,,\n2015,5,12,\"UA\",\"1074\",\"ORD\",\"LGA\",0.00,-29.00,0.00,\"\",0.00,108.00,90.00,733.00,,,,,,\n2015,5,12,\"UA\",\"1085\",\"ORD\",\"LGA\",1.00,-14.00,0.00,\"\",0.00,118.00,89.00,733.00,,,,,,\n2015,5,12,\"UA\",\"1123\",\"LGA\",\"DEN\",0.00,-11.00,0.00,\"\",0.00,253.00,236.00,1620.00,,,,,,\n2015,5,11,\"UA\",\"1588\",\"LGA\",\"ORD\",3.00,-18.00,0.00,\"\",0.00,132.00,107.00,733.00,,,,,,\n2015,5,11,\"UA\",\"1638\",\"ALB\",\"ORD\",1.00,-1.00,0.00,\"\",0.00,139.00,115.00,723.00,,,,,,\n2015,5,11,\"UA\",\"1671\",\"IAH\",\"LGA\",141.00,127.00,0.00,\"\",0.00,207.00,190.00,1416.00,0.00,0.00,71.00,0.00,56.00,\n2015,5,11,\"UA\",\"1686\",\"LGA\",\"DEN\",3.00,-35.00,0.00,\"\",0.00,233.00,217.00,1620.00,,,,,,\n2015,5,11,\"UA\",\"1693\",\"DEN\",\"LGA\",4.00,20.00,0.00,\"\",0.00,251.00,229.00,1620.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,11,\"UA\",\"1714\",\"LGA\",\"ORD\",-6.00,-15.00,0.00,\"\",0.00,145.00,120.00,733.00,,,,,,\n2015,5,11,\"UA\",\"1719\",\"LGA\",\"DEN\",-3.00,-25.00,0.00,\"\",0.00,238.00,219.00,1620.00,,,,,,\n2015,5,11,\"UA\",\"1722\",\"IAH\",\"LGA\",127.00,147.00,0.00,\"\",0.00,239.00,221.00,1416.00,0.00,0.00,147.00,0.00,0.00,\n2015,5,11,\"UA\",\"1744\",\"LGA\",\"IAH\",10.00,1.00,0.00,\"\",0.00,238.00,186.00,1416.00,,,,,,\n2015,5,11,\"UA\",\"1744\",\"ORD\",\"LGA\",2.00,-10.00,0.00,\"\",0.00,121.00,102.00,733.00,,,,,,\n2015,5,11,\"UA\",\"1906\",\"IAH\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,215.00,187.00,1416.00,,,,,,\n2015,5,11,\"UA\",\"1906\",\"LGA\",\"DEN\",22.00,15.00,0.00,\"\",0.00,267.00,238.00,1620.00,0.00,9.00,0.00,0.00,6.00,\n2015,5,10,\"UA\",\"12\",\"BUF\",\"ORD\",-3.00,55.00,0.00,\"\",0.00,164.00,77.00,473.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,10,\"UA\",\"112\",\"ORD\",\"BUF\",2.00,-3.00,0.00,\"\",0.00,88.00,65.00,473.00,,,,,,\n2015,5,10,\"UA\",\"212\",\"LAX\",\"JFK\",-6.00,-25.00,0.00,\"\",0.00,309.00,294.00,2475.00,,,,,,\n2015,5,10,\"UA\",\"233\",\"LAX\",\"JFK\",6.00,7.00,0.00,\"\",0.00,326.00,302.00,2475.00,,,,,,\n2015,5,10,\"UA\",\"244\",\"ORD\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,135.00,101.00,733.00,,,,,,\n2015,5,10,\"UA\",\"248\",\"LGA\",\"ORD\",3.00,-10.00,0.00,\"\",0.00,145.00,112.00,733.00,,,,,,\n2015,5,10,\"UA\",\"257\",\"JFK\",\"SFO\",69.00,85.00,0.00,\"\",0.00,417.00,384.00,2586.00,0.00,69.00,16.00,0.00,0.00,\n2015,5,10,\"UA\",\"275\",\"LAX\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,320.00,299.00,2475.00,,,,,,\n2015,5,10,\"UA\",\"296\",\"IAH\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,215.00,177.00,1416.00,,,,,,\n2015,5,10,\"UA\",\"296\",\"LGA\",\"DEN\",2.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,10,\"UA\",\"333\",\"IAH\",\"LGA\",16.00,-6.00,0.00,\"\",0.00,197.00,177.00,1416.00,,,,,,\n2015,5,10,\"UA\",\"347\",\"DEN\",\"LGA\",7.00,26.00,0.00,\"\",0.00,244.00,194.00,1620.00,7.00,0.00,19.00,0.00,0.00,\n2015,5,10,\"UA\",\"347\",\"LGA\",\"IAH\",11.00,-26.00,0.00,\"\",0.00,208.00,190.00,1416.00,,,,,,\n2015,5,10,\"UA\",\"381\",\"LGA\",\"ORD\",-14.00,-19.00,0.00,\"\",0.00,153.00,118.00,733.00,,,,,,\n2015,5,10,\"UA\",\"388\",\"ORD\",\"LGA\",12.00,-5.00,0.00,\"\",0.00,119.00,96.00,733.00,,,,,,\n2015,5,10,\"UA\",\"415\",\"JFK\",\"SFO\",-10.00,-27.00,0.00,\"\",0.00,367.00,333.00,2586.00,,,,,,\n2015,5,10,\"UA\",\"442\",\"IAH\",\"LGA\",15.00,-4.00,0.00,\"\",0.00,194.00,175.00,1416.00,,,,,,\n2015,5,10,\"UA\",\"443\",\"JFK\",\"LAX\",0.00,-22.00,0.00,\"\",0.00,354.00,319.00,2475.00,,,,,,\n2015,5,10,\"UA\",\"445\",\"JFK\",\"LAX\",13.00,4.00,0.00,\"\",0.00,362.00,329.00,2475.00,,,,,,\n2015,5,10,\"UA\",\"462\",\"LGA\",\"IAH\",-7.00,-47.00,0.00,\"\",0.00,204.00,190.00,1416.00,,,,,,\n2015,5,10,\"UA\",\"495\",\"DEN\",\"LGA\",10.00,-6.00,0.00,\"\",0.00,224.00,199.00,1620.00,,,,,,\n2015,5,10,\"UA\",\"502\",\"SFO\",\"JFK\",-3.00,-10.00,0.00,\"\",0.00,330.00,309.00,2586.00,,,,,,\n2015,5,10,\"UA\",\"510\",\"JFK\",\"SFO\",101.00,112.00,0.00,\"\",0.00,412.00,372.00,2586.00,0.00,101.00,11.00,0.00,0.00,\n2015,5,10,\"UA\",\"512\",\"JFK\",\"SFO\",7.00,36.00,0.00,\"\",0.00,430.00,386.00,2586.00,0.00,7.00,29.00,0.00,0.00,\n2015,5,10,\"UA\",\"514\",\"JFK\",\"SFO\",1.00,8.00,0.00,\"\",0.00,408.00,369.00,2586.00,,,,,,\n2015,5,10,\"UA\",\"535\",\"JFK\",\"LAX\",218.00,210.00,0.00,\"\",0.00,366.00,332.00,2475.00,210.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"UA\",\"559\",\"ORD\",\"ALB\",76.00,69.00,0.00,\"\",0.00,112.00,89.00,723.00,10.00,0.00,0.00,0.00,59.00,\n2015,5,10,\"UA\",\"589\",\"BUF\",\"ORD\",-5.00,1.00,0.00,\"\",0.00,110.00,84.00,473.00,,,,,,\n2015,5,10,\"UA\",\"637\",\"SFO\",\"JFK\",-5.00,10.00,0.00,\"\",0.00,360.00,315.00,2586.00,,,,,,\n2015,5,10,\"UA\",\"667\",\"LGA\",\"ORD\",-10.00,-21.00,0.00,\"\",0.00,142.00,121.00,733.00,,,,,,\n2015,5,10,\"UA\",\"681\",\"LGA\",\"ORD\",-9.00,-28.00,0.00,\"\",0.00,141.00,111.00,733.00,,,,,,\n2015,5,10,\"UA\",\"683\",\"ALB\",\"ORD\",76.00,85.00,0.00,\"\",0.00,149.00,124.00,723.00,12.00,0.00,9.00,0.00,64.00,\n2015,5,10,\"UA\",\"693\",\"LGA\",\"ORD\",-5.00,-15.00,0.00,\"\",0.00,160.00,116.00,733.00,,,,,,\n2015,5,10,\"UA\",\"695\",\"DEN\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,220.00,195.00,1620.00,,,,,,\n2015,5,10,\"UA\",\"695\",\"LGA\",\"ORD\",-4.00,-2.00,0.00,\"\",0.00,168.00,117.00,733.00,,,,,,\n2015,5,10,\"UA\",\"703\",\"JFK\",\"LAX\",-3.00,-21.00,0.00,\"\",0.00,342.00,323.00,2475.00,,,,,,\n2015,5,10,\"UA\",\"704\",\"SFO\",\"JFK\",10.00,9.00,0.00,\"\",0.00,336.00,312.00,2586.00,,,,,,\n2015,5,10,\"UA\",\"706\",\"LGA\",\"IAH\",3.00,-27.00,0.00,\"\",0.00,210.00,189.00,1416.00,,,,,,\n2015,5,10,\"UA\",\"758\",\"SFO\",\"JFK\",-12.00,-38.00,0.00,\"\",0.00,319.00,298.00,2586.00,,,,,,\n2015,5,10,\"UA\",\"760\",\"SFO\",\"JFK\",-5.00,-23.00,0.00,\"\",0.00,327.00,310.00,2586.00,,,,,,\n2015,5,10,\"UA\",\"765\",\"LGA\",\"ORD\",11.00,0.00,0.00,\"\",0.00,149.00,120.00,733.00,,,,,,\n2015,5,10,\"UA\",\"766\",\"JFK\",\"SFO\",-6.00,-26.00,0.00,\"\",0.00,360.00,332.00,2586.00,,,,,,\n2015,5,10,\"UA\",\"779\",\"LAX\",\"JFK\",-4.00,-5.00,0.00,\"\",0.00,334.00,315.00,2475.00,,,,,,\n2015,5,10,\"UA\",\"791\",\"LGA\",\"IAH\",-5.00,-33.00,0.00,\"\",0.00,216.00,191.00,1416.00,,,,,,\n2015,5,10,\"UA\",\"791\",\"ORD\",\"LGA\",1.00,3.00,0.00,\"\",0.00,133.00,97.00,733.00,,,,,,\n2015,5,10,\"UA\",\"824\",\"SFO\",\"JFK\",17.00,4.00,0.00,\"\",0.00,324.00,307.00,2586.00,,,,,,\n2015,5,10,\"UA\",\"830\",\"ORD\",\"BUF\",6.00,-11.00,0.00,\"\",0.00,77.00,64.00,473.00,,,,,,\n2015,5,10,\"UA\",\"841\",\"JFK\",\"LAX\",12.00,30.00,0.00,\"\",0.00,392.00,342.00,2475.00,0.00,12.00,18.00,0.00,0.00,\n2015,5,10,\"UA\",\"867\",\"LAX\",\"JFK\",-2.00,-22.00,0.00,\"\",0.00,315.00,296.00,2475.00,,,,,,\n2015,5,10,\"UA\",\"898\",\"SFO\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,337.00,312.00,2586.00,,,,,,\n2015,5,10,\"UA\",\"910\",\"ORD\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,130.00,103.00,733.00,,,,,,\n2015,5,10,\"UA\",\"912\",\"LAX\",\"JFK\",-8.00,-10.00,0.00,\"\",0.00,323.00,308.00,2475.00,,,,,,\n2015,5,10,\"UA\",\"980\",\"IAH\",\"LGA\",6.00,2.00,0.00,\"\",0.00,214.00,183.00,1416.00,,,,,,\n2015,5,10,\"UA\",\"1001\",\"IAH\",\"LGA\",14.00,-3.00,0.00,\"\",0.00,199.00,183.00,1416.00,,,,,,\n2015,5,10,\"UA\",\"1030\",\"ORD\",\"LGA\",21.00,8.00,0.00,\"\",0.00,124.00,103.00,733.00,,,,,,\n2015,5,10,\"UA\",\"1038\",\"ORD\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,124.00,106.00,733.00,,,,,,\n2015,5,10,\"UA\",\"1074\",\"ORD\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,122.00,101.00,733.00,,,,,,\n2015,5,10,\"UA\",\"1085\",\"LGA\",\"DEN\",12.00,20.00,0.00,\"\",0.00,276.00,231.00,1620.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,10,\"UA\",\"1085\",\"ORD\",\"LGA\",89.00,85.00,0.00,\"\",0.00,129.00,104.00,733.00,85.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"UA\",\"1090\",\"DEN\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,223.00,208.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"343\",\"LGA\",\"IAH\",1.00,0.00,0.00,\"\",0.00,239.00,182.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"345\",\"LGA\",\"ORD\",53.00,19.00,0.00,\"\",0.00,127.00,111.00,733.00,1.00,0.00,0.00,0.00,18.00,\n2015,5,8,\"UA\",\"368\",\"BUF\",\"ORD\",-9.00,-19.00,0.00,\"\",0.00,94.00,71.00,473.00,,,,,,\n2015,5,8,\"UA\",\"406\",\"DEN\",\"LGA\",6.00,-8.00,0.00,\"\",0.00,223.00,194.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"415\",\"JFK\",\"SFO\",-7.00,-6.00,0.00,\"\",0.00,385.00,343.00,2586.00,,,,,,\n2015,5,8,\"UA\",\"441\",\"JFK\",\"LAX\",-4.00,-8.00,0.00,\"\",0.00,372.00,333.00,2475.00,,,,,,\n2015,5,8,\"UA\",\"442\",\"IAH\",\"LGA\",-7.00,3.00,0.00,\"\",0.00,223.00,184.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"1145\",\"LGA\",\"ORD\",6.00,-9.00,0.00,\"\",0.00,144.00,120.00,733.00,,,,,,\n2015,5,12,\"UA\",\"1190\",\"ORD\",\"ALB\",-2.00,-9.00,0.00,\"\",0.00,113.00,88.00,723.00,,,,,,\n2015,5,12,\"UA\",\"1194\",\"IAH\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,208.00,172.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"1214\",\"ORD\",\"LGA\",10.00,-12.00,0.00,\"\",0.00,115.00,97.00,733.00,,,,,,\n2015,5,12,\"UA\",\"1218\",\"LGA\",\"ORD\",-5.00,-17.00,0.00,\"\",0.00,146.00,120.00,733.00,,,,,,\n2015,5,12,\"UA\",\"1248\",\"ORD\",\"ALB\",9.00,-5.00,0.00,\"\",0.00,106.00,83.00,723.00,,,,,,\n2015,5,12,\"UA\",\"1283\",\"ALB\",\"ORD\",-1.00,4.00,0.00,\"\",0.00,146.00,121.00,723.00,,,,,,\n2015,5,12,\"UA\",\"1441\",\"LGA\",\"IAH\",-2.00,-20.00,0.00,\"\",0.00,213.00,198.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"1456\",\"LGA\",\"IAH\",-1.00,-23.00,0.00,\"\",0.00,220.00,199.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"1469\",\"DEN\",\"LGA\",-1.00,-34.00,0.00,\"\",0.00,194.00,174.00,1620.00,,,,,,\n2015,5,12,\"UA\",\"1483\",\"DEN\",\"LGA\",9.00,-1.00,0.00,\"\",0.00,225.00,176.00,1620.00,,,,,,\n2015,5,12,\"UA\",\"1588\",\"LGA\",\"ORD\",-2.00,-11.00,0.00,\"\",0.00,144.00,125.00,733.00,,,,,,\n2015,5,12,\"UA\",\"1638\",\"ALB\",\"ORD\",-6.00,-3.00,0.00,\"\",0.00,144.00,128.00,723.00,,,,,,\n2015,5,12,\"UA\",\"1671\",\"IAH\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,205.00,169.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"1686\",\"LGA\",\"DEN\",-7.00,-22.00,0.00,\"\",0.00,256.00,240.00,1620.00,,,,,,\n2015,5,12,\"UA\",\"1693\",\"DEN\",\"LGA\",7.00,-29.00,0.00,\"\",0.00,199.00,181.00,1620.00,,,,,,\n2015,5,12,\"UA\",\"1714\",\"LGA\",\"ORD\",0.00,9.00,0.00,\"\",0.00,163.00,130.00,733.00,,,,,,\n2015,5,12,\"UA\",\"1719\",\"LGA\",\"DEN\",-6.00,-3.00,0.00,\"\",0.00,263.00,238.00,1620.00,,,,,,\n2015,5,12,\"UA\",\"1744\",\"LGA\",\"IAH\",-1.00,-6.00,0.00,\"\",0.00,242.00,209.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"1744\",\"ORD\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,121.00,94.00,733.00,,,,,,\n2015,5,12,\"UA\",\"1906\",\"IAH\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,191.00,171.00,1416.00,,,,,,\n2015,5,12,\"UA\",\"1906\",\"LGA\",\"DEN\",7.00,14.00,0.00,\"\",0.00,281.00,257.00,1620.00,,,,,,\n2015,5,11,\"UA\",\"212\",\"LAX\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,320.00,297.00,2475.00,,,,,,\n2015,5,11,\"UA\",\"233\",\"LAX\",\"JFK\",11.00,38.00,0.00,\"\",0.00,352.00,291.00,2475.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,11,\"UA\",\"244\",\"ORD\",\"LGA\",109.00,98.00,0.00,\"\",0.00,125.00,104.00,733.00,0.00,0.00,98.00,0.00,0.00,\n2015,5,11,\"UA\",\"257\",\"JFK\",\"SFO\",-6.00,-23.00,0.00,\"\",0.00,384.00,347.00,2586.00,,,,,,\n2015,5,11,\"UA\",\"275\",\"LAX\",\"JFK\",-4.00,-16.00,0.00,\"\",0.00,323.00,300.00,2475.00,,,,,,\n2015,5,11,\"UA\",\"303\",\"DEN\",\"LGA\",1.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,11,\"UA\",\"303\",\"LGA\",\"IAH\",137.00,116.00,0.00,\"\",0.00,220.00,188.00,1416.00,0.00,14.00,0.00,0.00,102.00,\n2015,5,11,\"UA\",\"345\",\"LGA\",\"ORD\",124.00,89.00,0.00,\"\",0.00,126.00,107.00,733.00,7.00,0.00,0.00,0.00,82.00,\n2015,5,11,\"UA\",\"368\",\"BUF\",\"ORD\",-5.00,2.00,0.00,\"\",0.00,111.00,89.00,473.00,,,,,,\n2015,5,11,\"UA\",\"406\",\"DEN\",\"LGA\",93.00,67.00,0.00,\"\",0.00,211.00,196.00,1620.00,0.00,0.00,67.00,0.00,0.00,\n2015,5,11,\"UA\",\"415\",\"JFK\",\"SFO\",-7.00,-16.00,0.00,\"\",0.00,375.00,350.00,2586.00,,,,,,\n2015,5,10,\"UA\",\"1123\",\"LGA\",\"DEN\",-3.00,-25.00,0.00,\"\",0.00,242.00,221.00,1620.00,,,,,,\n2015,5,10,\"UA\",\"1145\",\"LGA\",\"ORD\",3.00,-13.00,0.00,\"\",0.00,140.00,108.00,733.00,,,,,,\n2015,5,10,\"UA\",\"1173\",\"ORD\",\"ROC\",7.00,-3.00,0.00,\"\",0.00,89.00,68.00,528.00,,,,,,\n2015,5,10,\"UA\",\"1194\",\"IAH\",\"LGA\",13.00,0.00,0.00,\"\",0.00,204.00,187.00,1416.00,,,,,,\n2015,5,10,\"UA\",\"1239\",\"ORD\",\"LGA\",20.00,4.00,0.00,\"\",0.00,119.00,97.00,733.00,,,,,,\n2015,5,10,\"UA\",\"1248\",\"ORD\",\"ALB\",22.00,20.00,0.00,\"\",0.00,118.00,92.00,723.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"UA\",\"1285\",\"LGA\",\"DEN\",-3.00,-10.00,0.00,\"\",0.00,253.00,225.00,1620.00,,,,,,\n2015,5,10,\"UA\",\"1286\",\"ORD\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,129.00,101.00,733.00,,,,,,\n2015,5,10,\"UA\",\"1299\",\"IAH\",\"LGA\",87.00,67.00,0.00,\"\",0.00,195.00,172.00,1416.00,3.00,0.00,0.00,0.00,64.00,\n2015,5,10,\"UA\",\"1403\",\"ROC\",\"ORD\",-2.00,17.00,0.00,\"\",0.00,138.00,101.00,528.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,10,\"UA\",\"1471\",\"ORD\",\"LGA\",17.00,7.00,0.00,\"\",0.00,123.00,101.00,733.00,,,,,,\n2015,5,10,\"UA\",\"1483\",\"DEN\",\"LGA\",3.00,-24.00,0.00,\"\",0.00,208.00,192.00,1620.00,,,,,,\n2015,5,10,\"UA\",\"1523\",\"LGA\",\"ORD\",8.00,-8.00,0.00,\"\",0.00,151.00,115.00,733.00,,,,,,\n2015,5,10,\"UA\",\"1638\",\"ALB\",\"ORD\",-4.00,-5.00,0.00,\"\",0.00,140.00,118.00,723.00,,,,,,\n2015,5,10,\"UA\",\"1693\",\"DEN\",\"LGA\",10.00,-7.00,0.00,\"\",0.00,218.00,196.00,1620.00,,,,,,\n2015,5,10,\"UA\",\"1693\",\"LGA\",\"IAH\",3.00,7.00,0.00,\"\",0.00,247.00,191.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"1671\",\"IAH\",\"LGA\",86.00,70.00,0.00,\"\",0.00,205.00,176.00,1416.00,0.00,0.00,33.00,0.00,37.00,\n2015,5,14,\"UA\",\"1687\",\"LGA\",\"IAH\",-6.00,-26.00,0.00,\"\",0.00,211.00,188.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"1693\",\"DEN\",\"LGA\",9.00,-13.00,0.00,\"\",0.00,213.00,196.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"1719\",\"LGA\",\"DEN\",7.00,4.00,0.00,\"\",0.00,257.00,221.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"1722\",\"IAH\",\"LGA\",11.00,-12.00,0.00,\"\",0.00,196.00,176.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"1744\",\"LGA\",\"IAH\",15.00,40.00,0.00,\"\",0.00,272.00,207.00,1416.00,0.00,0.00,30.00,0.00,10.00,\n2015,5,14,\"UA\",\"1744\",\"ORD\",\"LGA\",10.00,-6.00,0.00,\"\",0.00,117.00,94.00,733.00,,,,,,\n2015,5,14,\"UA\",\"1906\",\"IAH\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,207.00,176.00,1416.00,,,,,,\n2015,5,14,\"UA\",\"1906\",\"LGA\",\"DEN\",5.00,-17.00,0.00,\"\",0.00,252.00,226.00,1620.00,,,,,,\n2015,5,14,\"UA\",\"1914\",\"LGA\",\"ORD\",-2.00,-7.00,0.00,\"\",0.00,156.00,118.00,733.00,,,,,,\n2015,5,13,\"UA\",\"212\",\"LAX\",\"JFK\",-4.00,-33.00,0.00,\"\",0.00,299.00,275.00,2475.00,,,,,,\n2015,5,13,\"UA\",\"233\",\"LAX\",\"JFK\",6.00,-21.00,0.00,\"\",0.00,298.00,273.00,2475.00,,,,,,\n2015,5,13,\"UA\",\"244\",\"ORD\",\"LGA\",89.00,60.00,0.00,\"\",0.00,107.00,92.00,733.00,51.00,0.00,0.00,0.00,9.00,\n2015,5,13,\"UA\",\"257\",\"JFK\",\"SFO\",-1.00,-33.00,0.00,\"\",0.00,369.00,344.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"275\",\"LAX\",\"JFK\",-1.00,-24.00,0.00,\"\",0.00,312.00,282.00,2475.00,,,,,,\n2015,5,13,\"UA\",\"285\",\"IAH\",\"LGA\",12.00,5.00,0.00,\"\",0.00,211.00,181.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"303\",\"DEN\",\"LGA\",-5.00,-42.00,0.00,\"\",0.00,203.00,187.00,1620.00,,,,,,\n2015,5,13,\"UA\",\"303\",\"LGA\",\"IAH\",-1.00,-1.00,0.00,\"\",0.00,241.00,203.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"343\",\"LGA\",\"IAH\",-4.00,13.00,0.00,\"\",0.00,257.00,206.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"345\",\"LGA\",\"ORD\",-10.00,24.00,0.00,\"\",0.00,195.00,132.00,733.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,13,\"UA\",\"368\",\"BUF\",\"ORD\",-5.00,6.00,0.00,\"\",0.00,115.00,86.00,473.00,,,,,,\n2015,5,13,\"UA\",\"406\",\"DEN\",\"LGA\",-3.00,-37.00,0.00,\"\",0.00,203.00,184.00,1620.00,,,,,,\n2015,5,13,\"UA\",\"415\",\"JFK\",\"SFO\",0.00,-3.00,0.00,\"\",0.00,381.00,352.00,2586.00,,,,,,\n2015,5,13,\"UA\",\"441\",\"JFK\",\"LAX\",39.00,35.00,0.00,\"\",0.00,372.00,346.00,2475.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"UA\",\"442\",\"IAH\",\"LGA\",2.00,-22.00,0.00,\"\",0.00,189.00,170.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"443\",\"JFK\",\"LAX\",-7.00,8.00,0.00,\"\",0.00,391.00,344.00,2475.00,,,,,,\n2015,5,13,\"UA\",\"445\",\"JFK\",\"LAX\",-2.00,3.00,0.00,\"\",0.00,376.00,331.00,2475.00,,,,,,\n2015,5,13,\"UA\",\"456\",\"IAH\",\"LGA\",57.00,33.00,0.00,\"\",0.00,190.00,166.00,1416.00,17.00,0.00,0.00,0.00,16.00,\n2015,5,13,\"UA\",\"462\",\"LGA\",\"IAH\",-3.00,0.00,0.00,\"\",0.00,247.00,195.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"462\",\"ORD\",\"LGA\",-2.00,-24.00,0.00,\"\",0.00,109.00,91.00,733.00,,,,,,\n2015,5,13,\"UA\",\"463\",\"LGA\",\"ORD\",-12.00,-18.00,0.00,\"\",0.00,151.00,120.00,733.00,,,,,,\n2015,5,13,\"UA\",\"483\",\"BUF\",\"ORD\",-10.00,-14.00,0.00,\"\",0.00,101.00,77.00,473.00,,,,,,\n2015,5,8,\"UA\",\"1582\",\"ORD\",\"BUF\",0.00,4.00,0.00,\"\",0.00,97.00,65.00,473.00,,,,,,\n2015,5,8,\"UA\",\"1588\",\"LGA\",\"ORD\",-1.00,-29.00,0.00,\"\",0.00,125.00,108.00,733.00,,,,,,\n2015,5,8,\"UA\",\"1638\",\"ALB\",\"ORD\",57.00,36.00,0.00,\"\",0.00,120.00,104.00,723.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"UA\",\"1671\",\"IAH\",\"LGA\",7.00,-10.00,0.00,\"\",0.00,204.00,184.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"1686\",\"LGA\",\"DEN\",2.00,-22.00,0.00,\"\",0.00,247.00,227.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"1693\",\"DEN\",\"LGA\",15.00,0.00,0.00,\"\",0.00,220.00,196.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"1714\",\"LGA\",\"ORD\",1.00,-10.00,0.00,\"\",0.00,143.00,109.00,733.00,,,,,,\n2015,5,8,\"UA\",\"1719\",\"LGA\",\"DEN\",1.00,34.00,0.00,\"\",0.00,293.00,215.00,1620.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,8,\"UA\",\"1722\",\"IAH\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,216.00,193.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"1744\",\"LGA\",\"IAH\",29.00,16.00,0.00,\"\",0.00,234.00,190.00,1416.00,0.00,0.00,3.00,0.00,13.00,\n2015,5,8,\"UA\",\"1744\",\"ORD\",\"LGA\",12.00,24.00,0.00,\"\",0.00,145.00,103.00,733.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,8,\"UA\",\"1906\",\"IAH\",\"LGA\",3.00,4.00,0.00,\"\",0.00,210.00,189.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"1906\",\"LGA\",\"DEN\",11.00,-8.00,0.00,\"\",0.00,255.00,225.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"1990\",\"BUF\",\"ORD\",53.00,122.00,0.00,\"\",0.00,175.00,71.00,473.00,0.00,53.00,69.00,0.00,0.00,\n2015,5,7,\"UA\",\"212\",\"LAX\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,317.00,293.00,2475.00,,,,,,\n2015,5,7,\"UA\",\"233\",\"LAX\",\"JFK\",-9.00,24.00,0.00,\"\",0.00,358.00,319.00,2475.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,7,\"UA\",\"244\",\"ORD\",\"LGA\",-8.00,-18.00,0.00,\"\",0.00,126.00,102.00,733.00,,,,,,\n2015,5,7,\"UA\",\"257\",\"JFK\",\"SFO\",9.00,-36.00,0.00,\"\",0.00,356.00,328.00,2586.00,,,,,,\n2015,5,7,\"UA\",\"275\",\"LAX\",\"JFK\",-10.00,-31.00,0.00,\"\",0.00,314.00,297.00,2475.00,,,,,,\n2015,5,7,\"UA\",\"303\",\"DEN\",\"LGA\",-3.00,-27.00,0.00,\"\",0.00,216.00,199.00,1620.00,,,,,,\n2015,5,7,\"UA\",\"303\",\"LGA\",\"IAH\",139.00,102.00,0.00,\"\",0.00,204.00,185.00,1416.00,0.00,0.00,4.00,0.00,98.00,\n2015,5,7,\"UA\",\"343\",\"LGA\",\"IAH\",-8.00,-36.00,0.00,\"\",0.00,212.00,186.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"345\",\"LGA\",\"ORD\",-8.00,-34.00,0.00,\"\",0.00,135.00,105.00,733.00,,,,,,\n2015,5,7,\"UA\",\"368\",\"BUF\",\"ORD\",102.00,90.00,0.00,\"\",0.00,92.00,72.00,473.00,90.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"UA\",\"406\",\"DEN\",\"LGA\",40.00,4.00,0.00,\"\",0.00,201.00,188.00,1620.00,,,,,,\n2015,5,7,\"UA\",\"415\",\"JFK\",\"SFO\",-5.00,-28.00,0.00,\"\",0.00,361.00,336.00,2586.00,,,,,,\n2015,5,7,\"UA\",\"441\",\"JFK\",\"LAX\",-7.00,-27.00,0.00,\"\",0.00,356.00,325.00,2475.00,,,,,,\n2015,5,7,\"UA\",\"442\",\"IAH\",\"LGA\",-9.00,-17.00,0.00,\"\",0.00,205.00,183.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"443\",\"JFK\",\"LAX\",-4.00,-5.00,0.00,\"\",0.00,375.00,324.00,2475.00,,,,,,\n2015,5,7,\"UA\",\"445\",\"JFK\",\"LAX\",213.00,189.00,0.00,\"\",0.00,347.00,326.00,2475.00,77.00,0.00,0.00,0.00,112.00,\n2015,5,7,\"UA\",\"456\",\"IAH\",\"LGA\",0.00,1.00,0.00,\"\",0.00,215.00,194.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"462\",\"LGA\",\"IAH\",-4.00,-39.00,0.00,\"\",0.00,209.00,187.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"462\",\"ORD\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,126.00,105.00,733.00,,,,,,\n2015,5,7,\"UA\",\"463\",\"LGA\",\"ORD\",-6.00,-9.00,0.00,\"\",0.00,154.00,110.00,733.00,,,,,,\n2015,5,7,\"UA\",\"483\",\"BUF\",\"ORD\",-1.00,-18.00,0.00,\"\",0.00,88.00,70.00,473.00,,,,,,\n2015,5,7,\"UA\",\"502\",\"SFO\",\"JFK\",-7.00,4.00,0.00,\"\",0.00,348.00,315.00,2586.00,,,,,,\n2015,5,7,\"UA\",\"510\",\"JFK\",\"SFO\",71.00,30.00,0.00,\"\",0.00,360.00,328.00,2586.00,0.00,0.00,6.00,0.00,24.00,\n2015,5,7,\"UA\",\"512\",\"JFK\",\"SFO\",2.00,-4.00,0.00,\"\",0.00,395.00,338.00,2586.00,,,,,,\n2015,5,7,\"UA\",\"514\",\"JFK\",\"SFO\",70.00,59.00,0.00,\"\",0.00,390.00,339.00,2586.00,0.00,0.00,0.00,0.00,59.00,\n2015,5,7,\"UA\",\"535\",\"JFK\",\"LAX\",72.00,77.00,0.00,\"\",0.00,379.00,345.00,2475.00,0.00,0.00,12.00,0.00,65.00,\n2015,5,7,\"UA\",\"541\",\"JFK\",\"SFO\",-10.00,-29.00,0.00,\"\",0.00,371.00,335.00,2586.00,,,,,,\n2015,5,7,\"UA\",\"561\",\"LGA\",\"DEN\",0.00,-10.00,0.00,\"\",0.00,256.00,229.00,1620.00,,,,,,\n2015,5,7,\"UA\",\"622\",\"LGA\",\"ORD\",-3.00,-27.00,0.00,\"\",0.00,134.00,105.00,733.00,,,,,,\n2015,5,7,\"UA\",\"637\",\"SFO\",\"JFK\",2.00,1.00,0.00,\"\",0.00,344.00,319.00,2586.00,,,,,,\n2015,5,7,\"UA\",\"656\",\"ORD\",\"BUF\",2.00,-2.00,0.00,\"\",0.00,88.00,62.00,473.00,,,,,,\n2015,5,7,\"UA\",\"672\",\"ORD\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,120.00,101.00,733.00,,,,,,\n2015,5,7,\"UA\",\"681\",\"LGA\",\"ORD\",-3.00,-30.00,0.00,\"\",0.00,133.00,107.00,733.00,,,,,,\n2015,5,7,\"UA\",\"686\",\"ORD\",\"LGA\",2.00,-2.00,0.00,\"\",0.00,127.00,108.00,733.00,,,,,,\n2015,5,7,\"UA\",\"690\",\"ORD\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,125.00,103.00,733.00,,,,,,\n2015,5,7,\"UA\",\"692\",\"ORD\",\"LGA\",14.00,6.00,0.00,\"\",0.00,128.00,105.00,733.00,,,,,,\n2015,5,7,\"UA\",\"693\",\"IAH\",\"LGA\",10.00,,0.00,\"\",1.00,,,1416.00,,,,,,\n2015,5,7,\"UA\",\"693\",\"LGA\",\"ORD\",-5.00,-40.00,0.00,\"\",0.00,135.00,102.00,733.00,,,,,,\n2015,5,7,\"UA\",\"694\",\"ORD\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,124.00,107.00,733.00,,,,,,\n2015,5,7,\"UA\",\"695\",\"LGA\",\"ORD\",-5.00,-17.00,0.00,\"\",0.00,154.00,106.00,733.00,,,,,,\n2015,5,7,\"UA\",\"698\",\"ORD\",\"LGA\",5.00,4.00,0.00,\"\",0.00,133.00,114.00,733.00,,,,,,\n2015,5,7,\"UA\",\"703\",\"JFK\",\"LAX\",-5.00,-24.00,0.00,\"\",0.00,341.00,313.00,2475.00,,,,,,\n2015,5,7,\"UA\",\"704\",\"SFO\",\"JFK\",3.00,16.00,0.00,\"\",0.00,350.00,328.00,2586.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,7,\"UA\",\"711\",\"LGA\",\"ORD\",-3.00,-19.00,0.00,\"\",0.00,139.00,107.00,733.00,,,,,,\n2015,5,7,\"UA\",\"741\",\"LGA\",\"ORD\",-6.00,-43.00,0.00,\"\",0.00,129.00,106.00,733.00,,,,,,\n2015,5,7,\"UA\",\"746\",\"LGA\",\"IAH\",2.00,-34.00,0.00,\"\",0.00,206.00,184.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"758\",\"SFO\",\"JFK\",-3.00,1.00,0.00,\"\",0.00,349.00,322.00,2586.00,,,,,,\n2015,5,7,\"UA\",\"760\",\"SFO\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,327.00,311.00,2586.00,,,,,,\n2015,5,7,\"UA\",\"765\",\"LGA\",\"ORD\",-7.00,-9.00,0.00,\"\",0.00,158.00,111.00,733.00,,,,,,\n2015,5,7,\"UA\",\"766\",\"JFK\",\"SFO\",-1.00,-25.00,0.00,\"\",0.00,356.00,335.00,2586.00,,,,,,\n2015,5,7,\"UA\",\"779\",\"LAX\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,330.00,301.00,2475.00,,,,,,\n2015,5,6,\"UA\",\"1456\",\"LGA\",\"IAH\",-7.00,-29.00,0.00,\"\",0.00,220.00,193.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"1469\",\"DEN\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,220.00,201.00,1620.00,,,,,,\n2015,5,6,\"UA\",\"1483\",\"DEN\",\"LGA\",-8.00,-12.00,0.00,\"\",0.00,231.00,210.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"443\",\"JFK\",\"LAX\",-7.00,-18.00,0.00,\"\",0.00,365.00,332.00,2475.00,,,,,,\n2015,5,8,\"UA\",\"445\",\"JFK\",\"LAX\",11.00,7.00,0.00,\"\",0.00,367.00,319.00,2475.00,,,,,,\n2015,5,8,\"UA\",\"456\",\"IAH\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,203.00,186.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"462\",\"LGA\",\"IAH\",-13.00,-25.00,0.00,\"\",0.00,232.00,190.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"462\",\"ORD\",\"LGA\",-5.00,19.00,0.00,\"\",0.00,155.00,129.00,733.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,8,\"UA\",\"463\",\"LGA\",\"ORD\",-9.00,-23.00,0.00,\"\",0.00,143.00,111.00,733.00,,,,,,\n2015,5,8,\"UA\",\"502\",\"SFO\",\"JFK\",2.00,-19.00,0.00,\"\",0.00,316.00,299.00,2586.00,,,,,,\n2015,5,8,\"UA\",\"509\",\"ORD\",\"LGA\",4.00,76.00,0.00,\"\",0.00,203.00,100.00,733.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,8,\"UA\",\"510\",\"JFK\",\"SFO\",49.00,39.00,0.00,\"\",0.00,391.00,358.00,2586.00,0.00,0.00,10.00,0.00,29.00,\n2015,5,8,\"UA\",\"512\",\"JFK\",\"SFO\",34.00,17.00,0.00,\"\",0.00,384.00,355.00,2586.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"UA\",\"514\",\"JFK\",\"SFO\",15.00,8.00,0.00,\"\",0.00,394.00,349.00,2586.00,,,,,,\n2015,5,8,\"UA\",\"535\",\"JFK\",\"LAX\",89.00,73.00,0.00,\"\",0.00,358.00,324.00,2475.00,0.00,0.00,9.00,0.00,64.00,\n2015,5,8,\"UA\",\"541\",\"JFK\",\"SFO\",-3.00,-33.00,0.00,\"\",0.00,360.00,332.00,2586.00,,,,,,\n2015,5,8,\"UA\",\"561\",\"LGA\",\"DEN\",-4.00,-24.00,0.00,\"\",0.00,246.00,215.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"622\",\"LGA\",\"ORD\",18.00,1.00,0.00,\"\",0.00,141.00,111.00,733.00,,,,,,\n2015,5,8,\"UA\",\"637\",\"SFO\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,336.00,304.00,2586.00,,,,,,\n2015,5,8,\"UA\",\"672\",\"ORD\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,122.00,99.00,733.00,,,,,,\n2015,5,8,\"UA\",\"681\",\"LGA\",\"ORD\",-4.00,-46.00,0.00,\"\",0.00,118.00,103.00,733.00,,,,,,\n2015,5,8,\"UA\",\"686\",\"ORD\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,123.00,106.00,733.00,,,,,,\n2015,5,8,\"UA\",\"690\",\"ORD\",\"LGA\",182.00,194.00,0.00,\"\",0.00,148.00,103.00,733.00,0.00,32.00,12.00,0.00,150.00,\n2015,5,8,\"UA\",\"692\",\"ORD\",\"LGA\",61.00,73.00,0.00,\"\",0.00,148.00,104.00,733.00,0.00,61.00,12.00,0.00,0.00,\n2015,5,8,\"UA\",\"693\",\"IAH\",\"LGA\",-2.00,14.00,0.00,\"\",0.00,231.00,189.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"693\",\"LGA\",\"ORD\",131.00,102.00,0.00,\"\",0.00,141.00,112.00,733.00,0.00,0.00,9.00,0.00,93.00,\n2015,5,8,\"UA\",\"694\",\"ORD\",\"LGA\",24.00,64.00,0.00,\"\",0.00,171.00,99.00,733.00,24.00,0.00,40.00,0.00,0.00,\n2015,5,8,\"UA\",\"695\",\"LGA\",\"ORD\",188.00,149.00,0.00,\"\",0.00,127.00,100.00,733.00,0.00,0.00,2.00,0.00,147.00,\n2015,5,8,\"UA\",\"698\",\"ORD\",\"LGA\",24.00,26.00,0.00,\"\",0.00,136.00,109.00,733.00,0.00,24.00,2.00,0.00,0.00,\n2015,5,8,\"UA\",\"699\",\"LGA\",\"ORD\",79.00,58.00,0.00,\"\",0.00,141.00,107.00,733.00,0.00,0.00,9.00,0.00,49.00,\n2015,5,8,\"UA\",\"703\",\"JFK\",\"LAX\",-5.00,0.00,0.00,\"\",0.00,365.00,335.00,2475.00,,,,,,\n2015,5,8,\"UA\",\"704\",\"SFO\",\"JFK\",103.00,94.00,0.00,\"\",0.00,328.00,301.00,2586.00,94.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"UA\",\"711\",\"LGA\",\"ORD\",-4.00,2.00,0.00,\"\",0.00,161.00,109.00,733.00,,,,,,\n2015,5,8,\"UA\",\"741\",\"LGA\",\"ORD\",5.00,25.00,0.00,\"\",0.00,186.00,127.00,733.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,8,\"UA\",\"746\",\"LGA\",\"IAH\",-4.00,-37.00,0.00,\"\",0.00,209.00,182.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"758\",\"SFO\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,327.00,306.00,2586.00,,,,,,\n2015,5,8,\"UA\",\"760\",\"SFO\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,336.00,307.00,2586.00,,,,,,\n2015,5,8,\"UA\",\"765\",\"LGA\",\"ORD\",-2.00,44.00,0.00,\"\",0.00,206.00,110.00,733.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,8,\"UA\",\"766\",\"JFK\",\"SFO\",-2.00,-27.00,0.00,\"\",0.00,355.00,329.00,2586.00,,,,,,\n2015,5,8,\"UA\",\"779\",\"LAX\",\"JFK\",3.00,-29.00,0.00,\"\",0.00,303.00,285.00,2475.00,,,,,,\n2015,5,8,\"UA\",\"788\",\"DEN\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,219.00,197.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"791\",\"LGA\",\"IAH\",-1.00,-21.00,0.00,\"\",0.00,224.00,180.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"791\",\"ORD\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,123.00,102.00,733.00,,,,,,\n2015,5,8,\"UA\",\"824\",\"SFO\",\"JFK\",32.00,51.00,0.00,\"\",0.00,356.00,331.00,2586.00,32.00,0.00,19.00,0.00,0.00,\n2015,5,8,\"UA\",\"830\",\"ORD\",\"BUF\",52.00,46.00,0.00,\"\",0.00,88.00,64.00,473.00,0.00,23.00,0.00,0.00,23.00,\n2015,5,8,\"UA\",\"841\",\"JFK\",\"LAX\",23.00,11.00,0.00,\"\",0.00,362.00,333.00,2475.00,,,,,,\n2015,5,8,\"UA\",\"867\",\"LAX\",\"JFK\",-5.00,-29.00,0.00,\"\",0.00,311.00,289.00,2475.00,,,,,,\n2015,5,8,\"UA\",\"898\",\"SFO\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,336.00,314.00,2586.00,,,,,,\n2015,5,8,\"UA\",\"910\",\"ORD\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,121.00,100.00,733.00,,,,,,\n2015,5,8,\"UA\",\"912\",\"LAX\",\"JFK\",40.00,33.00,0.00,\"\",0.00,318.00,293.00,2475.00,11.00,0.00,0.00,0.00,22.00,\n2015,5,8,\"UA\",\"1042\",\"LGA\",\"DEN\",5.00,-13.00,0.00,\"\",0.00,250.00,224.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"1059\",\"DEN\",\"LGA\",63.00,38.00,0.00,\"\",0.00,210.00,193.00,1620.00,0.00,0.00,0.00,0.00,38.00,\n2015,5,8,\"UA\",\"1062\",\"IAH\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,204.00,184.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"1062\",\"LGA\",\"ORD\",10.00,6.00,0.00,\"\",0.00,161.00,111.00,733.00,,,,,,\n2015,5,8,\"UA\",\"1074\",\"ORD\",\"LGA\",142.00,123.00,0.00,\"\",0.00,118.00,96.00,733.00,0.00,22.00,0.00,0.00,101.00,\n2015,5,8,\"UA\",\"1085\",\"ORD\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,131.00,102.00,733.00,,,,,,\n2015,5,8,\"UA\",\"1123\",\"LGA\",\"DEN\",29.00,10.00,0.00,\"\",0.00,245.00,223.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"1190\",\"ORD\",\"ALB\",-4.00,0.00,0.00,\"\",0.00,124.00,96.00,723.00,,,,,,\n2015,5,8,\"UA\",\"1194\",\"IAH\",\"LGA\",3.00,-3.00,0.00,\"\",0.00,212.00,185.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"1214\",\"ORD\",\"LGA\",87.00,79.00,0.00,\"\",0.00,129.00,99.00,733.00,0.00,79.00,0.00,0.00,0.00,\n2015,5,8,\"UA\",\"1218\",\"LGA\",\"ORD\",7.00,1.00,0.00,\"\",0.00,152.00,107.00,733.00,,,,,,\n2015,5,8,\"UA\",\"1248\",\"ORD\",\"ALB\",97.00,90.00,0.00,\"\",0.00,113.00,91.00,723.00,0.00,25.00,0.00,0.00,65.00,\n2015,5,8,\"UA\",\"1283\",\"ALB\",\"ORD\",18.00,153.00,0.00,\"\",0.00,276.00,137.00,723.00,0.00,0.00,153.00,0.00,0.00,\n2015,5,8,\"UA\",\"1411\",\"LGA\",\"ORD\",7.00,0.00,0.00,\"\",0.00,152.00,110.00,733.00,,,,,,\n2015,5,8,\"UA\",\"1441\",\"LGA\",\"IAH\",-5.00,-31.00,0.00,\"\",0.00,205.00,186.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"1456\",\"LGA\",\"IAH\",1.00,6.00,0.00,\"\",0.00,247.00,197.00,1416.00,,,,,,\n2015,5,8,\"UA\",\"1469\",\"DEN\",\"LGA\",45.00,34.00,0.00,\"\",0.00,216.00,196.00,1620.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,7,\"UA\",\"791\",\"LGA\",\"IAH\",4.00,3.00,0.00,\"\",0.00,243.00,197.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"791\",\"ORD\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,133.00,107.00,733.00,,,,,,\n2015,5,7,\"UA\",\"824\",\"SFO\",\"JFK\",31.00,52.00,0.00,\"\",0.00,358.00,337.00,2586.00,31.00,0.00,21.00,0.00,0.00,\n2015,5,7,\"UA\",\"830\",\"ORD\",\"BUF\",-2.00,-8.00,0.00,\"\",0.00,88.00,66.00,473.00,,,,,,\n2015,5,7,\"UA\",\"841\",\"JFK\",\"LAX\",43.00,30.00,0.00,\"\",0.00,361.00,331.00,2475.00,0.00,0.00,8.00,0.00,22.00,\n2015,5,7,\"UA\",\"867\",\"LAX\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,325.00,303.00,2475.00,,,,,,\n2015,5,7,\"UA\",\"898\",\"SFO\",\"JFK\",6.00,-10.00,0.00,\"\",0.00,329.00,304.00,2586.00,,,,,,\n2015,5,7,\"UA\",\"910\",\"ORD\",\"LGA\",-3.00,5.00,0.00,\"\",0.00,139.00,104.00,733.00,,,,,,\n2015,5,7,\"UA\",\"912\",\"LAX\",\"JFK\",52.00,,0.00,\"\",1.00,,,2475.00,,,,,,\n2015,5,7,\"UA\",\"1042\",\"LGA\",\"DEN\",37.00,14.00,0.00,\"\",0.00,245.00,225.00,1620.00,,,,,,\n2015,5,7,\"UA\",\"1059\",\"DEN\",\"LGA\",8.00,-16.00,0.00,\"\",0.00,211.00,196.00,1620.00,,,,,,\n2015,5,7,\"UA\",\"1062\",\"IAH\",\"LGA\",7.00,6.00,0.00,\"\",0.00,212.00,185.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"1062\",\"LGA\",\"ORD\",1.00,-15.00,0.00,\"\",0.00,149.00,109.00,733.00,,,,,,\n2015,5,7,\"UA\",\"1074\",\"ORD\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,130.00,101.00,733.00,,,,,,\n2015,5,7,\"UA\",\"1085\",\"ORD\",\"LGA\",6.00,-6.00,0.00,\"\",0.00,121.00,99.00,733.00,,,,,,\n2015,5,7,\"UA\",\"1123\",\"LGA\",\"DEN\",4.00,-15.00,0.00,\"\",0.00,245.00,217.00,1620.00,,,,,,\n2015,5,7,\"UA\",\"1145\",\"LGA\",\"ORD\",-1.00,-23.00,0.00,\"\",0.00,137.00,110.00,733.00,,,,,,\n2015,5,7,\"UA\",\"1190\",\"ORD\",\"ALB\",18.00,16.00,0.00,\"\",0.00,118.00,89.00,723.00,5.00,0.00,0.00,0.00,11.00,\n2015,5,7,\"UA\",\"1194\",\"IAH\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,215.00,183.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"1214\",\"ORD\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,131.00,103.00,733.00,,,,,,\n2015,5,7,\"UA\",\"1218\",\"LGA\",\"ORD\",12.00,0.00,0.00,\"\",0.00,146.00,108.00,733.00,,,,,,\n2015,5,7,\"UA\",\"1248\",\"ORD\",\"ALB\",-2.00,9.00,0.00,\"\",0.00,131.00,92.00,723.00,,,,,,\n2015,5,7,\"UA\",\"1283\",\"ALB\",\"ORD\",15.00,2.00,0.00,\"\",0.00,128.00,99.00,723.00,,,,,,\n2015,5,7,\"UA\",\"1441\",\"LGA\",\"IAH\",-5.00,-25.00,0.00,\"\",0.00,211.00,192.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"1456\",\"LGA\",\"IAH\",-2.00,-31.00,0.00,\"\",0.00,213.00,192.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"1469\",\"DEN\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,221.00,204.00,1620.00,,,,,,\n2015,5,7,\"UA\",\"1483\",\"DEN\",\"LGA\",0.00,4.00,0.00,\"\",0.00,239.00,219.00,1620.00,,,,,,\n2015,5,7,\"UA\",\"1588\",\"LGA\",\"ORD\",-2.00,-28.00,0.00,\"\",0.00,127.00,110.00,733.00,,,,,,\n2015,5,7,\"UA\",\"1638\",\"ALB\",\"ORD\",-9.00,-26.00,0.00,\"\",0.00,124.00,106.00,723.00,,,,,,\n2015,5,9,\"UA\",\"1299\",\"IAH\",\"LGA\",7.00,-9.00,0.00,\"\",0.00,199.00,186.00,1416.00,,,,,,\n2015,5,9,\"UA\",\"1582\",\"ORD\",\"BUF\",-6.00,-24.00,0.00,\"\",0.00,75.00,61.00,473.00,,,,,,\n2015,5,9,\"UA\",\"1588\",\"LGA\",\"ORD\",-1.00,-12.00,0.00,\"\",0.00,142.00,112.00,733.00,,,,,,\n2015,5,9,\"UA\",\"1638\",\"ALB\",\"ORD\",5.00,10.00,0.00,\"\",0.00,146.00,118.00,723.00,,,,,,\n2015,5,9,\"UA\",\"1687\",\"LGA\",\"IAH\",-5.00,-19.00,0.00,\"\",0.00,217.00,194.00,1416.00,,,,,,\n2015,5,9,\"UA\",\"1714\",\"LGA\",\"ORD\",-3.00,-3.00,0.00,\"\",0.00,154.00,118.00,733.00,,,,,,\n2015,5,9,\"UA\",\"1744\",\"LGA\",\"IAH\",0.00,-31.00,0.00,\"\",0.00,216.00,195.00,1416.00,,,,,,\n2015,5,9,\"UA\",\"1906\",\"LGA\",\"DEN\",1.00,-9.00,0.00,\"\",0.00,258.00,238.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"212\",\"LAX\",\"JFK\",-8.00,-34.00,0.00,\"\",0.00,302.00,284.00,2475.00,,,,,,\n2015,5,8,\"UA\",\"233\",\"LAX\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,309.00,291.00,2475.00,,,,,,\n2015,5,8,\"UA\",\"244\",\"ORD\",\"LGA\",3.00,125.00,0.00,\"\",0.00,258.00,105.00,733.00,0.00,0.00,125.00,0.00,0.00,\n2015,5,8,\"UA\",\"257\",\"JFK\",\"SFO\",36.00,2.00,0.00,\"\",0.00,367.00,342.00,2586.00,,,,,,\n2015,5,8,\"UA\",\"275\",\"LAX\",\"JFK\",-4.00,-29.00,0.00,\"\",0.00,310.00,293.00,2475.00,,,,,,\n2015,5,8,\"UA\",\"303\",\"DEN\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,238.00,201.00,1620.00,,,,,,\n2015,5,8,\"UA\",\"303\",\"LGA\",\"IAH\",10.00,-18.00,0.00,\"\",0.00,213.00,182.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"211\",\"ORD\",\"LGA\",-12.00,4.00,0.00,\"\",0.00,147.00,98.00,733.00,,,,,,\n2015,5,6,\"UA\",\"212\",\"LAX\",\"JFK\",-10.00,-14.00,0.00,\"\",0.00,324.00,297.00,2475.00,,,,,,\n2015,5,6,\"UA\",\"233\",\"LAX\",\"JFK\",-8.00,3.00,0.00,\"\",0.00,336.00,307.00,2475.00,,,,,,\n2015,5,6,\"UA\",\"244\",\"ORD\",\"LGA\",-11.00,-18.00,0.00,\"\",0.00,129.00,101.00,733.00,,,,,,\n2015,5,6,\"UA\",\"257\",\"JFK\",\"SFO\",-1.00,-59.00,0.00,\"\",0.00,343.00,315.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"275\",\"LAX\",\"JFK\",21.00,23.00,0.00,\"\",0.00,337.00,312.00,2475.00,21.00,0.00,2.00,0.00,0.00,\n2015,5,6,\"UA\",\"303\",\"DEN\",\"LGA\",26.00,7.00,0.00,\"\",0.00,221.00,197.00,1620.00,,,,,,\n2015,5,6,\"UA\",\"303\",\"LGA\",\"IAH\",55.00,55.00,0.00,\"\",0.00,241.00,188.00,1416.00,49.00,0.00,0.00,0.00,6.00,\n2015,5,6,\"UA\",\"343\",\"LGA\",\"IAH\",-2.00,2.00,0.00,\"\",0.00,244.00,190.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"345\",\"LGA\",\"ORD\",0.00,12.00,0.00,\"\",0.00,173.00,113.00,733.00,,,,,,\n2015,5,6,\"UA\",\"406\",\"DEN\",\"LGA\",59.00,43.00,0.00,\"\",0.00,221.00,202.00,1620.00,43.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"UA\",\"415\",\"JFK\",\"SFO\",-7.00,-5.00,0.00,\"\",0.00,386.00,335.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"436\",\"LGA\",\"ORD\",-1.00,4.00,0.00,\"\",0.00,163.00,108.00,733.00,,,,,,\n2015,5,6,\"UA\",\"441\",\"JFK\",\"LAX\",-7.00,-11.00,0.00,\"\",0.00,372.00,328.00,2475.00,,,,,,\n2015,5,6,\"UA\",\"442\",\"IAH\",\"LGA\",15.00,12.00,0.00,\"\",0.00,210.00,193.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"443\",\"JFK\",\"LAX\",-1.00,-13.00,0.00,\"\",0.00,364.00,324.00,2475.00,,,,,,\n2015,5,6,\"UA\",\"445\",\"JFK\",\"LAX\",-1.00,8.00,0.00,\"\",0.00,380.00,312.00,2475.00,,,,,,\n2015,5,6,\"UA\",\"456\",\"IAH\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,202.00,186.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"462\",\"LGA\",\"IAH\",-8.00,-1.00,0.00,\"\",0.00,251.00,198.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"462\",\"ORD\",\"LGA\",-5.00,3.00,0.00,\"\",0.00,139.00,98.00,733.00,,,,,,\n2015,5,6,\"UA\",\"463\",\"LGA\",\"ORD\",1.00,19.00,0.00,\"\",0.00,174.00,118.00,733.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,6,\"UA\",\"483\",\"BUF\",\"ORD\",-4.00,-10.00,0.00,\"\",0.00,99.00,77.00,473.00,,,,,,\n2015,5,6,\"UA\",\"502\",\"SFO\",\"JFK\",16.00,8.00,0.00,\"\",0.00,329.00,306.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"510\",\"JFK\",\"SFO\",-3.00,-33.00,0.00,\"\",0.00,371.00,339.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"512\",\"JFK\",\"SFO\",27.00,7.00,0.00,\"\",0.00,381.00,349.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"514\",\"JFK\",\"SFO\",-5.00,-8.00,0.00,\"\",0.00,398.00,337.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"535\",\"JFK\",\"LAX\",-6.00,-17.00,0.00,\"\",0.00,363.00,326.00,2475.00,,,,,,\n2015,5,6,\"UA\",\"541\",\"JFK\",\"SFO\",-6.00,-14.00,0.00,\"\",0.00,382.00,341.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"542\",\"LGA\",\"DEN\",-7.00,-38.00,0.00,\"\",0.00,238.00,213.00,1620.00,,,,,,\n2015,5,6,\"UA\",\"561\",\"LGA\",\"DEN\",-5.00,-3.00,0.00,\"\",0.00,260.00,209.00,1620.00,,,,,,\n2015,5,6,\"UA\",\"622\",\"LGA\",\"ORD\",5.00,2.00,0.00,\"\",0.00,155.00,119.00,733.00,,,,,,\n2015,5,6,\"UA\",\"637\",\"SFO\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,342.00,312.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"656\",\"ORD\",\"BUF\",-9.00,-6.00,0.00,\"\",0.00,95.00,63.00,473.00,,,,,,\n2015,5,6,\"UA\",\"672\",\"ORD\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,122.00,100.00,733.00,,,,,,\n2015,5,6,\"UA\",\"674\",\"ORD\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,123.00,93.00,733.00,,,,,,\n2015,5,6,\"UA\",\"681\",\"LGA\",\"ORD\",-7.00,-16.00,0.00,\"\",0.00,151.00,114.00,733.00,,,,,,\n2015,5,6,\"UA\",\"686\",\"ORD\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,118.00,96.00,733.00,,,,,,\n2015,5,6,\"UA\",\"687\",\"LGA\",\"ORD\",-3.00,-2.00,0.00,\"\",0.00,154.00,117.00,733.00,,,,,,\n2015,5,6,\"UA\",\"692\",\"ORD\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,124.00,103.00,733.00,,,,,,\n2015,5,6,\"UA\",\"693\",\"IAH\",\"LGA\",6.00,11.00,0.00,\"\",0.00,220.00,183.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"693\",\"LGA\",\"ORD\",-7.00,-5.00,0.00,\"\",0.00,172.00,113.00,733.00,,,,,,\n2015,5,6,\"UA\",\"694\",\"ORD\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,117.00,99.00,733.00,,,,,,\n2015,5,6,\"UA\",\"695\",\"LGA\",\"ORD\",-5.00,-17.00,0.00,\"\",0.00,154.00,108.00,733.00,,,,,,\n2015,5,6,\"UA\",\"698\",\"ORD\",\"LGA\",-10.00,-23.00,0.00,\"\",0.00,121.00,103.00,733.00,,,,,,\n2015,5,6,\"UA\",\"699\",\"LGA\",\"ORD\",0.00,18.00,0.00,\"\",0.00,180.00,117.00,733.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,6,\"UA\",\"703\",\"JFK\",\"LAX\",-2.00,-21.00,0.00,\"\",0.00,341.00,309.00,2475.00,,,,,,\n2015,5,6,\"UA\",\"704\",\"SFO\",\"JFK\",-10.00,-15.00,0.00,\"\",0.00,332.00,306.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"711\",\"LGA\",\"ORD\",-5.00,10.00,0.00,\"\",0.00,170.00,110.00,733.00,,,,,,\n2015,5,6,\"UA\",\"741\",\"LGA\",\"ORD\",-5.00,5.00,0.00,\"\",0.00,176.00,121.00,733.00,,,,,,\n2015,5,6,\"UA\",\"746\",\"LGA\",\"IAH\",-10.00,-1.00,0.00,\"\",0.00,251.00,193.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"758\",\"SFO\",\"JFK\",-8.00,-5.00,0.00,\"\",0.00,348.00,311.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"760\",\"SFO\",\"JFK\",0.00,-1.00,0.00,\"\",0.00,344.00,318.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"765\",\"LGA\",\"ORD\",-5.00,-18.00,0.00,\"\",0.00,147.00,120.00,733.00,,,,,,\n2015,5,6,\"UA\",\"766\",\"JFK\",\"SFO\",27.00,-12.00,0.00,\"\",0.00,341.00,321.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"779\",\"LAX\",\"JFK\",-6.00,1.00,0.00,\"\",0.00,342.00,315.00,2475.00,,,,,,\n2015,5,6,\"UA\",\"791\",\"LGA\",\"IAH\",-8.00,-12.00,0.00,\"\",0.00,240.00,183.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"791\",\"ORD\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,118.00,100.00,733.00,,,,,,\n2015,5,6,\"UA\",\"824\",\"SFO\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,330.00,306.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"830\",\"ORD\",\"BUF\",7.00,-10.00,0.00,\"\",0.00,77.00,61.00,473.00,,,,,,\n2015,5,6,\"UA\",\"841\",\"JFK\",\"LAX\",160.00,153.00,0.00,\"\",0.00,367.00,321.00,2475.00,153.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"UA\",\"867\",\"LAX\",\"JFK\",4.00,-4.00,0.00,\"\",0.00,327.00,304.00,2475.00,,,,,,\n2015,5,6,\"UA\",\"898\",\"SFO\",\"JFK\",-4.00,-2.00,0.00,\"\",0.00,347.00,319.00,2586.00,,,,,,\n2015,5,6,\"UA\",\"910\",\"ORD\",\"LGA\",5.00,5.00,0.00,\"\",0.00,131.00,96.00,733.00,,,,,,\n2015,5,6,\"UA\",\"912\",\"LAX\",\"JFK\",-6.00,-17.00,0.00,\"\",0.00,314.00,294.00,2475.00,,,,,,\n2015,5,6,\"UA\",\"1042\",\"LGA\",\"DEN\",10.00,9.00,0.00,\"\",0.00,267.00,224.00,1620.00,,,,,,\n2015,5,6,\"UA\",\"1059\",\"DEN\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,215.00,199.00,1620.00,,,,,,\n2015,5,6,\"UA\",\"1062\",\"IAH\",\"LGA\",3.00,-14.00,0.00,\"\",0.00,196.00,181.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"1062\",\"LGA\",\"ORD\",-2.00,5.00,0.00,\"\",0.00,172.00,121.00,733.00,,,,,,\n2015,5,6,\"UA\",\"1074\",\"ORD\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,127.00,99.00,733.00,,,,,,\n2015,5,6,\"UA\",\"1085\",\"ORD\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,117.00,93.00,733.00,,,,,,\n2015,5,6,\"UA\",\"1123\",\"LGA\",\"DEN\",2.00,8.00,0.00,\"\",0.00,270.00,217.00,1620.00,,,,,,\n2015,5,6,\"UA\",\"1177\",\"BUF\",\"ORD\",1.00,14.00,0.00,\"\",0.00,118.00,76.00,473.00,,,,,,\n2015,5,6,\"UA\",\"1190\",\"ORD\",\"ALB\",-5.00,-18.00,0.00,\"\",0.00,107.00,90.00,723.00,,,,,,\n2015,5,6,\"UA\",\"1194\",\"IAH\",\"LGA\",7.00,-6.00,0.00,\"\",0.00,205.00,182.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"1214\",\"ORD\",\"LGA\",18.00,9.00,0.00,\"\",0.00,128.00,103.00,733.00,,,,,,\n2015,5,6,\"UA\",\"1218\",\"LGA\",\"ORD\",5.00,8.00,0.00,\"\",0.00,161.00,112.00,733.00,,,,,,\n2015,5,6,\"UA\",\"1248\",\"ORD\",\"ALB\",-5.00,-15.00,0.00,\"\",0.00,110.00,93.00,723.00,,,,,,\n2015,5,6,\"UA\",\"1283\",\"ALB\",\"ORD\",-10.00,-13.00,0.00,\"\",0.00,138.00,113.00,723.00,,,,,,\n2015,5,10,\"UA\",\"1751\",\"LGA\",\"ORD\",79.00,81.00,0.00,\"\",0.00,167.00,119.00,733.00,0.00,0.00,8.00,0.00,73.00,\n2015,5,10,\"UA\",\"1764\",\"ORD\",\"LGA\",7.00,8.00,0.00,\"\",0.00,138.00,101.00,733.00,,,,,,\n2015,5,10,\"UA\",\"1906\",\"LGA\",\"DEN\",-5.00,-25.00,0.00,\"\",0.00,248.00,224.00,1620.00,,,,,,\n2015,5,10,\"UA\",\"1914\",\"LGA\",\"ORD\",-2.00,-13.00,0.00,\"\",0.00,147.00,111.00,733.00,,,,,,\n2015,5,9,\"UA\",\"12\",\"BUF\",\"ORD\",-2.00,-16.00,0.00,\"\",0.00,92.00,71.00,473.00,,,,,,\n2015,5,9,\"UA\",\"255\",\"LGA\",\"DEN\",46.00,45.00,0.00,\"\",0.00,271.00,241.00,1620.00,11.00,0.00,0.00,0.00,34.00,\n2015,5,9,\"UA\",\"257\",\"JFK\",\"SFO\",2.00,-16.00,0.00,\"\",0.00,383.00,350.00,2586.00,,,,,,\n2015,5,9,\"UA\",\"275\",\"LAX\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,314.00,296.00,2475.00,,,,,,\n2015,5,9,\"UA\",\"303\",\"DEN\",\"LGA\",11.00,18.00,0.00,\"\",0.00,247.00,207.00,1620.00,11.00,0.00,7.00,0.00,0.00,\n2015,5,9,\"UA\",\"345\",\"IAH\",\"LGA\",37.00,37.00,0.00,\"\",0.00,217.00,194.00,1416.00,15.00,0.00,0.00,0.00,22.00,\n2015,5,9,\"UA\",\"405\",\"LGA\",\"DEN\",-7.00,12.00,0.00,\"\",0.00,281.00,231.00,1620.00,,,,,,\n2015,5,9,\"UA\",\"415\",\"JFK\",\"SFO\",-5.00,-37.00,0.00,\"\",0.00,352.00,324.00,2586.00,,,,,,\n2015,5,9,\"UA\",\"441\",\"JFK\",\"LAX\",-5.00,-30.00,0.00,\"\",0.00,351.00,313.00,2475.00,,,,,,\n2015,5,9,\"UA\",\"443\",\"JFK\",\"LAX\",-5.00,-11.00,0.00,\"\",0.00,370.00,320.00,2475.00,,,,,,\n2015,5,9,\"UA\",\"451\",\"IAH\",\"LGA\",-6.00,2.00,0.00,\"\",0.00,216.00,195.00,1416.00,,,,,,\n2015,5,9,\"UA\",\"463\",\"LGA\",\"ORD\",-10.00,-15.00,0.00,\"\",0.00,152.00,114.00,733.00,,,,,,\n2015,5,9,\"UA\",\"510\",\"JFK\",\"SFO\",-1.00,-15.00,0.00,\"\",0.00,387.00,349.00,2586.00,,,,,,\n2015,5,9,\"UA\",\"512\",\"JFK\",\"SFO\",-5.00,-35.00,0.00,\"\",0.00,371.00,346.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"754\",\"ORD\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,124.00,101.00,733.00,,,,,,\n2015,5,5,\"UA\",\"758\",\"SFO\",\"JFK\",4.00,-22.00,0.00,\"\",0.00,322.00,301.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"760\",\"SFO\",\"JFK\",-1.00,0.00,0.00,\"\",0.00,346.00,310.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"761\",\"LGA\",\"ORD\",4.00,1.00,0.00,\"\",0.00,151.00,119.00,733.00,,,,,,\n2015,5,5,\"UA\",\"765\",\"LGA\",\"ORD\",-6.00,6.00,0.00,\"\",0.00,167.00,115.00,733.00,,,,,,\n2015,5,5,\"UA\",\"766\",\"JFK\",\"SFO\",-9.00,-45.00,0.00,\"\",0.00,344.00,321.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"779\",\"LAX\",\"JFK\",-9.00,-20.00,0.00,\"\",0.00,324.00,303.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"791\",\"ORD\",\"LGA\",-7.00,2.00,0.00,\"\",0.00,140.00,101.00,733.00,,,,,,\n2015,5,5,\"UA\",\"824\",\"SFO\",\"JFK\",53.00,50.00,0.00,\"\",0.00,337.00,313.00,2586.00,50.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"UA\",\"841\",\"JFK\",\"LAX\",-2.00,-34.00,0.00,\"\",0.00,342.00,313.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"867\",\"LAX\",\"JFK\",-6.00,-16.00,0.00,\"\",0.00,328.00,301.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"898\",\"SFO\",\"JFK\",0.00,-19.00,0.00,\"\",0.00,329.00,301.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"910\",\"ORD\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,115.00,100.00,733.00,,,,,,\n2015,5,5,\"UA\",\"912\",\"LAX\",\"JFK\",-9.00,-19.00,0.00,\"\",0.00,318.00,290.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"980\",\"IAH\",\"LGA\",27.00,8.00,0.00,\"\",0.00,199.00,182.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"1023\",\"ORD\",\"ALB\",4.00,8.00,0.00,\"\",0.00,124.00,88.00,723.00,,,,,,\n2015,5,5,\"UA\",\"1045\",\"ORD\",\"LGA\",18.00,15.00,0.00,\"\",0.00,134.00,98.00,733.00,7.00,0.00,0.00,0.00,8.00,\n2015,5,5,\"UA\",\"1061\",\"ORD\",\"BUF\",55.00,53.00,0.00,\"\",0.00,88.00,64.00,473.00,44.00,0.00,0.00,0.00,9.00,\n2015,5,5,\"UA\",\"1074\",\"ORD\",\"LGA\",59.00,48.00,0.00,\"\",0.00,126.00,101.00,733.00,0.00,0.00,0.00,0.00,48.00,\n2015,5,5,\"UA\",\"1123\",\"LGA\",\"DEN\",-3.00,-17.00,0.00,\"\",0.00,250.00,219.00,1620.00,,,,,,\n2015,5,5,\"UA\",\"1143\",\"IAH\",\"LGA\",7.00,9.00,0.00,\"\",0.00,220.00,184.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"1143\",\"LGA\",\"ORD\",2.00,7.00,0.00,\"\",0.00,170.00,121.00,733.00,,,,,,\n2015,5,5,\"UA\",\"1214\",\"ORD\",\"LGA\",5.00,-8.00,0.00,\"\",0.00,124.00,103.00,733.00,,,,,,\n2015,5,5,\"UA\",\"1237\",\"ORD\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,131.00,103.00,733.00,,,,,,\n2015,5,5,\"UA\",\"1283\",\"ALB\",\"ORD\",5.00,14.00,0.00,\"\",0.00,150.00,126.00,723.00,,,,,,\n2015,5,5,\"UA\",\"1408\",\"LGA\",\"DEN\",0.00,-16.00,0.00,\"\",0.00,245.00,224.00,1620.00,,,,,,\n2015,5,5,\"UA\",\"1469\",\"DEN\",\"LGA\",11.00,-7.00,0.00,\"\",0.00,217.00,194.00,1620.00,,,,,,\n2015,5,5,\"UA\",\"1496\",\"LGA\",\"ORD\",-6.00,2.00,0.00,\"\",0.00,160.00,136.00,733.00,,,,,,\n2015,5,5,\"UA\",\"1604\",\"LGA\",\"DEN\",-3.00,-12.00,0.00,\"\",0.00,256.00,222.00,1620.00,,,,,,\n2015,5,5,\"UA\",\"1638\",\"BUF\",\"ORD\",1.00,20.00,0.00,\"\",0.00,121.00,89.00,473.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,5,\"UA\",\"1688\",\"LGA\",\"IAH\",10.00,-9.00,0.00,\"\",0.00,225.00,191.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"1693\",\"LGA\",\"IAH\",9.00,-10.00,0.00,\"\",0.00,227.00,200.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"1696\",\"ORD\",\"BUF\",1.00,-4.00,0.00,\"\",0.00,87.00,62.00,473.00,,,,,,\n2015,5,5,\"UA\",\"1744\",\"ORD\",\"LGA\",2.00,-8.00,0.00,\"\",0.00,123.00,98.00,733.00,,,,,,\n2015,5,5,\"UA\",\"1944\",\"ORD\",\"ALB\",-3.00,-12.00,0.00,\"\",0.00,111.00,88.00,723.00,,,,,,\n2015,5,5,\"UA\",\"1952\",\"DEN\",\"LGA\",31.00,18.00,0.00,\"\",0.00,222.00,196.00,1620.00,10.00,0.00,0.00,0.00,8.00,\n2015,5,4,\"UA\",\"12\",\"BUF\",\"ORD\",17.00,24.00,0.00,\"\",0.00,115.00,88.00,473.00,4.00,0.00,7.00,0.00,13.00,\n2015,5,4,\"UA\",\"210\",\"LGA\",\"IAH\",-4.00,-15.00,0.00,\"\",0.00,225.00,185.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"212\",\"LAX\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,325.00,298.00,2475.00,,,,,,\n2015,5,4,\"UA\",\"233\",\"LAX\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,310.00,292.00,2475.00,,,,,,\n2015,5,4,\"UA\",\"257\",\"JFK\",\"SFO\",-8.00,-62.00,0.00,\"\",0.00,351.00,330.00,2586.00,,,,,,\n2015,5,4,\"UA\",\"275\",\"LAX\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,321.00,296.00,2475.00,,,,,,\n2015,5,2,\"UA\",\"596\",\"DEN\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,224.00,203.00,1620.00,,,,,,\n2015,5,2,\"UA\",\"637\",\"SFO\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,337.00,311.00,2586.00,,,,,,\n2015,5,2,\"UA\",\"656\",\"ORD\",\"BUF\",-5.00,-7.00,0.00,\"\",0.00,87.00,63.00,473.00,,,,,,\n2015,5,2,\"UA\",\"667\",\"LGA\",\"ORD\",-3.00,-36.00,0.00,\"\",0.00,118.00,103.00,733.00,,,,,,\n2015,5,2,\"UA\",\"703\",\"JFK\",\"LAX\",-9.00,-14.00,0.00,\"\",0.00,358.00,330.00,2475.00,,,,,,\n2015,5,2,\"UA\",\"706\",\"LGA\",\"IAH\",-11.00,-43.00,0.00,\"\",0.00,208.00,185.00,1416.00,,,,,,\n2015,5,2,\"UA\",\"711\",\"LGA\",\"ORD\",-5.00,-40.00,0.00,\"\",0.00,123.00,105.00,733.00,,,,,,\n2015,5,2,\"UA\",\"745\",\"IAH\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,216.00,185.00,1416.00,,,,,,\n2015,5,2,\"UA\",\"745\",\"LGA\",\"DEN\",-3.00,-15.00,0.00,\"\",0.00,267.00,223.00,1620.00,,,,,,\n2015,5,2,\"UA\",\"746\",\"LGA\",\"IAH\",4.00,-29.00,0.00,\"\",0.00,206.00,188.00,1416.00,,,,,,\n2015,5,2,\"UA\",\"758\",\"SFO\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,338.00,321.00,2586.00,,,,,,\n2015,5,2,\"UA\",\"760\",\"SFO\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,336.00,318.00,2586.00,,,,,,\n2015,5,2,\"UA\",\"766\",\"JFK\",\"SFO\",-8.00,-24.00,0.00,\"\",0.00,364.00,343.00,2586.00,,,,,,\n2015,5,2,\"UA\",\"779\",\"LAX\",\"JFK\",2.00,-15.00,0.00,\"\",0.00,318.00,303.00,2475.00,,,,,,\n2015,5,2,\"UA\",\"824\",\"SFO\",\"JFK\",-6.00,-6.00,0.00,\"\",0.00,340.00,314.00,2586.00,,,,,,\n2015,5,2,\"UA\",\"841\",\"JFK\",\"LAX\",-1.00,-17.00,0.00,\"\",0.00,358.00,326.00,2475.00,,,,,,\n2015,5,2,\"UA\",\"867\",\"LAX\",\"JFK\",9.00,-1.00,0.00,\"\",0.00,328.00,298.00,2475.00,,,,,,\n2015,5,2,\"UA\",\"912\",\"LAX\",\"JFK\",1.00,1.00,0.00,\"\",0.00,328.00,304.00,2475.00,,,,,,\n2015,5,2,\"UA\",\"997\",\"IAH\",\"LGA\",11.00,-1.00,0.00,\"\",0.00,204.00,189.00,1416.00,,,,,,\n2015,5,2,\"UA\",\"1123\",\"LGA\",\"DEN\",2.00,-14.00,0.00,\"\",0.00,252.00,218.00,1620.00,,,,,,\n2015,5,2,\"UA\",\"1138\",\"DEN\",\"LGA\",-6.00,11.00,0.00,\"\",0.00,255.00,196.00,1620.00,,,,,,\n2015,5,6,\"UA\",\"1588\",\"LGA\",\"ORD\",3.00,-9.00,0.00,\"\",0.00,141.00,113.00,733.00,,,,,,\n2015,5,6,\"UA\",\"1638\",\"ALB\",\"ORD\",-6.00,-14.00,0.00,\"\",0.00,133.00,110.00,723.00,,,,,,\n2015,5,6,\"UA\",\"1671\",\"IAH\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,218.00,199.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"1687\",\"LGA\",\"IAH\",-2.00,-22.00,0.00,\"\",0.00,211.00,195.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"1719\",\"LGA\",\"DEN\",-3.00,-35.00,0.00,\"\",0.00,236.00,217.00,1620.00,,,,,,\n2015,5,6,\"UA\",\"1722\",\"IAH\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,214.00,187.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"1744\",\"LGA\",\"IAH\",-4.00,-22.00,0.00,\"\",0.00,229.00,196.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"1744\",\"ORD\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,127.00,98.00,733.00,,,,,,\n2015,5,6,\"UA\",\"1906\",\"IAH\",\"LGA\",6.00,11.00,0.00,\"\",0.00,214.00,180.00,1416.00,,,,,,\n2015,5,6,\"UA\",\"1906\",\"LGA\",\"DEN\",3.00,2.00,0.00,\"\",0.00,273.00,220.00,1620.00,,,,,,\n2015,5,6,\"UA\",\"1952\",\"DEN\",\"LGA\",16.00,-8.00,0.00,\"\",0.00,211.00,195.00,1620.00,,,,,,\n2015,5,5,\"UA\",\"12\",\"BUF\",\"ORD\",58.00,66.00,0.00,\"\",0.00,116.00,83.00,473.00,0.00,0.00,20.00,0.00,46.00,\n2015,5,5,\"UA\",\"210\",\"LGA\",\"IAH\",-8.00,-6.00,0.00,\"\",0.00,238.00,204.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"212\",\"LAX\",\"JFK\",-8.00,-29.00,0.00,\"\",0.00,307.00,293.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"233\",\"LAX\",\"JFK\",-7.00,-15.00,0.00,\"\",0.00,320.00,298.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"257\",\"JFK\",\"SFO\",-3.00,-47.00,0.00,\"\",0.00,361.00,329.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"275\",\"LAX\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,316.00,298.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"305\",\"LGA\",\"ORD\",-9.00,-23.00,0.00,\"\",0.00,145.00,117.00,733.00,,,,,,\n2015,5,5,\"UA\",\"329\",\"IAH\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,210.00,182.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"345\",\"IAH\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,217.00,190.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"347\",\"DEN\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,224.00,188.00,1620.00,,,,,,\n2015,5,5,\"UA\",\"369\",\"LGA\",\"IAH\",-5.00,-15.00,0.00,\"\",0.00,234.00,196.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"373\",\"LGA\",\"IAH\",10.00,7.00,0.00,\"\",0.00,226.00,188.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"415\",\"JFK\",\"SFO\",-9.00,-55.00,0.00,\"\",0.00,341.00,318.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"436\",\"LGA\",\"ORD\",-10.00,-26.00,0.00,\"\",0.00,142.00,117.00,733.00,,,,,,\n2015,5,5,\"UA\",\"441\",\"JFK\",\"LAX\",-5.00,-37.00,0.00,\"\",0.00,344.00,318.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"442\",\"IAH\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,205.00,190.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"443\",\"JFK\",\"LAX\",-7.00,-39.00,0.00,\"\",0.00,347.00,309.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"445\",\"JFK\",\"LAX\",-5.00,-23.00,0.00,\"\",0.00,353.00,310.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"456\",\"IAH\",\"LGA\",28.00,6.00,0.00,\"\",0.00,194.00,176.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"461\",\"IAH\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,206.00,183.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"462\",\"LGA\",\"IAH\",-10.00,-45.00,0.00,\"\",0.00,206.00,185.00,1416.00,,,,,,\n2015,5,5,\"UA\",\"462\",\"ORD\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,126.00,99.00,733.00,,,,,,\n2015,5,5,\"UA\",\"463\",\"LGA\",\"ORD\",-8.00,26.00,0.00,\"\",0.00,183.00,119.00,733.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,5,\"UA\",\"502\",\"SFO\",\"JFK\",-8.00,-5.00,0.00,\"\",0.00,343.00,319.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"509\",\"ORD\",\"LGA\",-7.00,13.00,0.00,\"\",0.00,151.00,96.00,733.00,,,,,,\n2015,5,5,\"UA\",\"510\",\"JFK\",\"SFO\",-3.00,-46.00,0.00,\"\",0.00,362.00,322.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"512\",\"JFK\",\"SFO\",110.00,98.00,0.00,\"\",0.00,393.00,346.00,2586.00,98.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"UA\",\"514\",\"JFK\",\"SFO\",-6.00,-52.00,0.00,\"\",0.00,350.00,319.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"533\",\"ORD\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,126.00,99.00,733.00,,,,,,\n2015,5,5,\"UA\",\"535\",\"JFK\",\"LAX\",-8.00,-10.00,0.00,\"\",0.00,376.00,349.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"541\",\"JFK\",\"SFO\",-7.00,-26.00,0.00,\"\",0.00,366.00,336.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"556\",\"DEN\",\"LGA\",2.00,-17.00,0.00,\"\",0.00,214.00,198.00,1620.00,,,,,,\n2015,5,5,\"UA\",\"596\",\"DEN\",\"LGA\",-9.00,-29.00,0.00,\"\",0.00,213.00,196.00,1620.00,,,,,,\n2015,5,5,\"UA\",\"622\",\"LGA\",\"ORD\",-3.00,-16.00,0.00,\"\",0.00,146.00,122.00,733.00,,,,,,\n2015,5,5,\"UA\",\"637\",\"SFO\",\"JFK\",-5.00,-26.00,0.00,\"\",0.00,327.00,302.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"672\",\"ORD\",\"LGA\",43.00,26.00,0.00,\"\",0.00,114.00,91.00,733.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,5,\"UA\",\"681\",\"LGA\",\"ORD\",-7.00,-25.00,0.00,\"\",0.00,141.00,118.00,733.00,,,,,,\n2015,5,5,\"UA\",\"682\",\"ORD\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,117.00,96.00,733.00,,,,,,\n2015,5,5,\"UA\",\"686\",\"ORD\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,117.00,102.00,733.00,,,,,,\n2015,5,5,\"UA\",\"687\",\"LGA\",\"ORD\",-6.00,-15.00,0.00,\"\",0.00,143.00,117.00,733.00,,,,,,\n2015,5,5,\"UA\",\"689\",\"LGA\",\"ORD\",-1.00,-10.00,0.00,\"\",0.00,160.00,120.00,733.00,,,,,,\n2015,5,5,\"UA\",\"694\",\"ORD\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,123.00,104.00,733.00,,,,,,\n2015,5,5,\"UA\",\"695\",\"LGA\",\"ORD\",-8.00,-4.00,0.00,\"\",0.00,169.00,121.00,733.00,,,,,,\n2015,5,5,\"UA\",\"699\",\"LGA\",\"ORD\",-2.00,-4.00,0.00,\"\",0.00,168.00,124.00,733.00,,,,,,\n2015,5,5,\"UA\",\"703\",\"JFK\",\"LAX\",-4.00,-24.00,0.00,\"\",0.00,343.00,314.00,2475.00,,,,,,\n2015,5,5,\"UA\",\"704\",\"SFO\",\"JFK\",5.00,-8.00,0.00,\"\",0.00,324.00,304.00,2586.00,,,,,,\n2015,5,5,\"UA\",\"711\",\"LGA\",\"ORD\",-4.00,-10.00,0.00,\"\",0.00,143.00,116.00,733.00,,,,,,\n2015,5,5,\"UA\",\"741\",\"LGA\",\"ORD\",52.00,51.00,0.00,\"\",0.00,165.00,121.00,733.00,0.00,0.00,51.00,0.00,0.00,\n2015,5,5,\"UA\",\"744\",\"LGA\",\"DEN\",-10.00,-29.00,0.00,\"\",0.00,247.00,227.00,1620.00,,,,,,\n2015,5,5,\"UA\",\"745\",\"LGA\",\"DEN\",6.00,-13.00,0.00,\"\",0.00,260.00,236.00,1620.00,,,,,,\n2015,5,5,\"UA\",\"746\",\"LGA\",\"IAH\",24.00,-5.00,0.00,\"\",0.00,210.00,190.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"1123\",\"LGA\",\"DEN\",-4.00,-12.00,0.00,\"\",0.00,256.00,223.00,1620.00,,,,,,\n2015,5,3,\"UA\",\"1138\",\"DEN\",\"LGA\",20.00,-1.00,0.00,\"\",0.00,217.00,199.00,1620.00,,,,,,\n2015,5,3,\"UA\",\"1143\",\"IAH\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,211.00,189.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"1216\",\"LGA\",\"IAH\",0.00,-22.00,0.00,\"\",0.00,221.00,191.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"1405\",\"IAH\",\"LGA\",74.00,68.00,0.00,\"\",0.00,213.00,187.00,1416.00,53.00,0.00,0.00,0.00,15.00,\n2015,5,3,\"UA\",\"1411\",\"LGA\",\"IAH\",-5.00,-36.00,0.00,\"\",0.00,215.00,189.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"1469\",\"DEN\",\"LGA\",4.00,-7.00,0.00,\"\",0.00,224.00,199.00,1620.00,,,,,,\n2015,5,3,\"UA\",\"1483\",\"DEN\",\"LGA\",2.00,-1.00,0.00,\"\",0.00,232.00,205.00,1620.00,,,,,,\n2015,5,3,\"UA\",\"1604\",\"LGA\",\"DEN\",-2.00,-29.00,0.00,\"\",0.00,238.00,219.00,1620.00,,,,,,\n2015,5,3,\"UA\",\"1638\",\"BUF\",\"ORD\",10.00,17.00,0.00,\"\",0.00,109.00,74.00,473.00,10.00,0.00,7.00,0.00,0.00,\n2015,5,3,\"UA\",\"1688\",\"DEN\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,219.00,201.00,1620.00,,,,,,\n2015,5,3,\"UA\",\"1688\",\"LGA\",\"IAH\",5.00,-28.00,0.00,\"\",0.00,211.00,189.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"1689\",\"LGA\",\"IAH\",1.00,-38.00,0.00,\"\",0.00,203.00,187.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"1693\",\"DEN\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,220.00,196.00,1620.00,,,,,,\n2015,5,3,\"UA\",\"1693\",\"LGA\",\"IAH\",0.00,-26.00,0.00,\"\",0.00,220.00,196.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"1696\",\"ORD\",\"BUF\",85.00,82.00,0.00,\"\",0.00,89.00,65.00,473.00,3.00,0.00,0.00,0.00,79.00,\n2015,5,3,\"UA\",\"1704\",\"LGA\",\"DEN\",-3.00,-31.00,0.00,\"\",0.00,245.00,225.00,1620.00,,,,,,\n2015,5,3,\"UA\",\"1744\",\"ORD\",\"LGA\",-8.00,-14.00,0.00,\"\",0.00,126.00,103.00,733.00,,,,,,\n2015,5,2,\"UA\",\"210\",\"LGA\",\"IAH\",-11.00,-42.00,0.00,\"\",0.00,205.00,186.00,1416.00,,,,,,\n2015,5,2,\"UA\",\"1186\",\"IAH\",\"LGA\",3.00,-13.00,0.00,\"\",0.00,205.00,176.00,1416.00,,,,,,\n2015,5,2,\"UA\",\"1448\",\"LGA\",\"IAH\",-7.00,-39.00,0.00,\"\",0.00,199.00,185.00,1416.00,,,,,,\n2015,5,2,\"UA\",\"1468\",\"IAH\",\"LGA\",1.00,-3.00,0.00,\"\",0.00,213.00,185.00,1416.00,,,,,,\n2015,5,2,\"UA\",\"1638\",\"BUF\",\"ORD\",-12.00,-16.00,0.00,\"\",0.00,98.00,71.00,473.00,,,,,,\n2015,5,2,\"UA\",\"1693\",\"LGA\",\"ORD\",-8.00,-38.00,0.00,\"\",0.00,125.00,109.00,733.00,,,,,,\n2015,5,2,\"UA\",\"1696\",\"ORD\",\"BUF\",17.00,11.00,0.00,\"\",0.00,86.00,63.00,473.00,,,,,,\n2015,5,1,\"UA\",\"12\",\"BUF\",\"ORD\",2.00,1.00,0.00,\"\",0.00,107.00,71.00,473.00,,,,,,\n2015,5,1,\"UA\",\"210\",\"LGA\",\"IAH\",-7.00,-9.00,0.00,\"\",0.00,234.00,189.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"212\",\"LAX\",\"JFK\",-6.00,2.00,0.00,\"\",0.00,336.00,304.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"233\",\"LAX\",\"JFK\",-5.00,-7.00,0.00,\"\",0.00,326.00,304.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"257\",\"JFK\",\"SFO\",-2.00,-35.00,0.00,\"\",0.00,372.00,343.00,2586.00,,,,,,\n2015,5,1,\"UA\",\"275\",\"LAX\",\"JFK\",-9.00,-22.00,0.00,\"\",0.00,322.00,303.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"285\",\"IAH\",\"LGA\",29.00,18.00,0.00,\"\",0.00,207.00,186.00,1416.00,12.00,0.00,0.00,0.00,6.00,\n2015,5,1,\"UA\",\"329\",\"IAH\",\"LGA\",-8.00,-27.00,0.00,\"\",0.00,197.00,183.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"345\",\"IAH\",\"LGA\",6.00,-16.00,0.00,\"\",0.00,197.00,178.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"373\",\"LGA\",\"IAH\",2.00,-21.00,0.00,\"\",0.00,206.00,186.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"1604\",\"LGA\",\"DEN\",11.00,3.00,0.00,\"\",0.00,257.00,225.00,1620.00,,,,,,\n2015,5,1,\"UA\",\"1638\",\"BUF\",\"ORD\",-4.00,-15.00,0.00,\"\",0.00,91.00,69.00,473.00,,,,,,\n2015,5,1,\"UA\",\"1688\",\"LGA\",\"IAH\",2.00,-12.00,0.00,\"\",0.00,230.00,185.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"1693\",\"DEN\",\"LGA\",11.00,-2.00,0.00,\"\",0.00,222.00,202.00,1620.00,,,,,,\n2015,5,1,\"UA\",\"1693\",\"LGA\",\"IAH\",0.00,-35.00,0.00,\"\",0.00,211.00,187.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"1696\",\"ORD\",\"BUF\",69.00,58.00,0.00,\"\",0.00,81.00,65.00,473.00,7.00,0.00,0.00,0.00,51.00,\n2015,5,1,\"UA\",\"1704\",\"LGA\",\"DEN\",23.00,5.00,0.00,\"\",0.00,255.00,226.00,1620.00,,,,,,\n2015,5,1,\"UA\",\"1744\",\"ORD\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,129.00,105.00,733.00,,,,,,\n2015,5,1,\"UA\",\"1755\",\"LGA\",\"IAH\",1.00,-35.00,0.00,\"\",0.00,210.00,191.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"1952\",\"DEN\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,220.00,198.00,1620.00,,,,,,\n2015,5,1,\"US\",\"413\",\"JFK\",\"CLT\",-4.00,-17.00,0.00,\"\",0.00,103.00,83.00,541.00,,,,,,\n2015,5,1,\"US\",\"425\",\"JFK\",\"CLT\",83.00,61.00,0.00,\"\",0.00,106.00,76.00,541.00,61.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"US\",\"425\",\"PHX\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,302.00,271.00,2153.00,,,,,,\n2015,5,1,\"US\",\"435\",\"JFK\",\"PHX\",-3.00,-57.00,0.00,\"\",0.00,284.00,264.00,2153.00,,,,,,\n2015,5,1,\"US\",\"466\",\"ALB\",\"CLT\",-8.00,-27.00,0.00,\"\",0.00,123.00,95.00,646.00,,,,,,\n2015,5,1,\"US\",\"622\",\"PHX\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,283.00,261.00,2153.00,,,,,,\n2015,5,1,\"US\",\"632\",\"PHX\",\"JFK\",-4.00,1.00,0.00,\"\",0.00,290.00,272.00,2153.00,,,,,,\n2015,5,1,\"US\",\"639\",\"CLT\",\"JFK\",8.00,-2.00,0.00,\"\",0.00,106.00,79.00,541.00,,,,,,\n2015,5,1,\"US\",\"639\",\"JFK\",\"PHX\",-5.00,-50.00,0.00,\"\",0.00,289.00,268.00,2153.00,,,,,,\n2015,5,1,\"US\",\"654\",\"JFK\",\"PHX\",-4.00,-34.00,0.00,\"\",0.00,294.00,270.00,2153.00,,,,,,\n2015,5,1,\"US\",\"756\",\"BUF\",\"CLT\",-6.00,-14.00,0.00,\"\",0.00,103.00,86.00,546.00,,,,,,\n2015,5,1,\"US\",\"821\",\"ROC\",\"CLT\",-2.00,-8.00,0.00,\"\",0.00,116.00,95.00,573.00,,,,,,\n2015,5,1,\"US\",\"826\",\"LGA\",\"CLT\",-4.00,1.00,0.00,\"\",0.00,122.00,82.00,544.00,,,,,,\n2015,5,1,\"US\",\"852\",\"BUF\",\"CLT\",-6.00,-2.00,0.00,\"\",0.00,113.00,80.00,546.00,,,,,,\n2015,5,1,\"US\",\"853\",\"CLT\",\"BUF\",0.00,-7.00,0.00,\"\",0.00,98.00,77.00,546.00,,,,,,\n2015,5,1,\"US\",\"873\",\"JFK\",\"CLT\",-3.00,-11.00,0.00,\"\",0.00,116.00,89.00,541.00,,,,,,\n2015,5,1,\"US\",\"890\",\"LGA\",\"CLT\",-4.00,-23.00,0.00,\"\",0.00,106.00,81.00,544.00,,,,,,\n2015,5,1,\"US\",\"896\",\"CLT\",\"ROC\",31.00,35.00,0.00,\"\",0.00,108.00,78.00,573.00,21.00,0.00,4.00,0.00,10.00,\n2015,5,1,\"US\",\"1740\",\"CLT\",\"LGA\",12.00,6.00,0.00,\"\",0.00,103.00,81.00,544.00,,,,,,\n2015,5,1,\"US\",\"1750\",\"ALB\",\"CLT\",0.00,-21.00,0.00,\"\",0.00,110.00,99.00,646.00,,,,,,\n2015,5,1,\"US\",\"1781\",\"LGA\",\"CLT\",-1.00,-19.00,0.00,\"\",0.00,107.00,82.00,544.00,,,,,,\n2015,5,4,\"UA\",\"1604\",\"LGA\",\"DEN\",4.00,4.00,0.00,\"\",0.00,265.00,233.00,1620.00,,,,,,\n2015,5,4,\"UA\",\"1638\",\"BUF\",\"ORD\",-3.00,-9.00,0.00,\"\",0.00,96.00,73.00,473.00,,,,,,\n2015,5,4,\"UA\",\"1688\",\"LGA\",\"IAH\",8.00,-22.00,0.00,\"\",0.00,214.00,187.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"1693\",\"DEN\",\"LGA\",12.00,-9.00,0.00,\"\",0.00,214.00,199.00,1620.00,,,,,,\n2015,5,4,\"UA\",\"1693\",\"LGA\",\"IAH\",0.00,-35.00,0.00,\"\",0.00,211.00,191.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"1696\",\"ORD\",\"BUF\",0.00,-15.00,0.00,\"\",0.00,77.00,60.00,473.00,,,,,,\n2015,5,4,\"UA\",\"1704\",\"LGA\",\"DEN\",8.00,5.00,0.00,\"\",0.00,270.00,240.00,1620.00,,,,,,\n2015,5,4,\"UA\",\"1744\",\"ORD\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,118.00,98.00,733.00,,,,,,\n2015,5,3,\"UA\",\"12\",\"BUF\",\"ORD\",57.00,44.00,0.00,\"\",0.00,95.00,73.00,473.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"UA\",\"212\",\"LAX\",\"JFK\",-10.00,-8.00,0.00,\"\",0.00,330.00,309.00,2475.00,,,,,,\n2015,5,3,\"UA\",\"229\",\"ORD\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,126.00,104.00,733.00,,,,,,\n2015,5,3,\"UA\",\"233\",\"LAX\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,326.00,304.00,2475.00,,,,,,\n2015,5,3,\"UA\",\"257\",\"JFK\",\"SFO\",-5.00,-37.00,0.00,\"\",0.00,373.00,342.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"275\",\"LAX\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,326.00,305.00,2475.00,,,,,,\n2015,5,3,\"UA\",\"305\",\"LGA\",\"ORD\",-5.00,-16.00,0.00,\"\",0.00,148.00,109.00,733.00,,,,,,\n2015,5,3,\"UA\",\"329\",\"IAH\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,202.00,184.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"415\",\"JFK\",\"SFO\",-4.00,-29.00,0.00,\"\",0.00,362.00,340.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"426\",\"ORD\",\"LGA\",-10.00,-7.00,0.00,\"\",0.00,139.00,105.00,733.00,,,,,,\n2015,5,3,\"UA\",\"435\",\"ORD\",\"LGA\",34.00,37.00,0.00,\"\",0.00,139.00,104.00,733.00,4.00,0.00,3.00,0.00,30.00,\n2015,5,3,\"UA\",\"442\",\"IAH\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,196.00,183.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"443\",\"JFK\",\"LAX\",-6.00,-22.00,0.00,\"\",0.00,363.00,324.00,2475.00,,,,,,\n2015,5,3,\"UA\",\"445\",\"JFK\",\"LAX\",-4.00,-3.00,0.00,\"\",0.00,372.00,326.00,2475.00,,,,,,\n2015,5,3,\"UA\",\"456\",\"IAH\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,206.00,189.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"461\",\"IAH\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,213.00,189.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"463\",\"LGA\",\"ORD\",-6.00,-16.00,0.00,\"\",0.00,138.00,106.00,733.00,,,,,,\n2015,5,3,\"UA\",\"502\",\"SFO\",\"JFK\",0.00,0.00,0.00,\"\",0.00,340.00,313.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"509\",\"ORD\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,131.00,104.00,733.00,,,,,,\n2015,5,3,\"UA\",\"510\",\"JFK\",\"SFO\",44.00,-7.00,0.00,\"\",0.00,354.00,322.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"512\",\"JFK\",\"SFO\",-1.00,-33.00,0.00,\"\",0.00,373.00,347.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"514\",\"JFK\",\"SFO\",4.00,-23.00,0.00,\"\",0.00,369.00,334.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"533\",\"ORD\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,132.00,103.00,733.00,,,,,,\n2015,5,3,\"UA\",\"535\",\"JFK\",\"LAX\",11.00,6.00,0.00,\"\",0.00,373.00,335.00,2475.00,,,,,,\n2015,5,3,\"UA\",\"541\",\"JFK\",\"SFO\",-6.00,-10.00,0.00,\"\",0.00,381.00,342.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"596\",\"DEN\",\"LGA\",1.00,-8.00,0.00,\"\",0.00,224.00,203.00,1620.00,,,,,,\n2015,5,3,\"UA\",\"604\",\"ORD\",\"LGA\",12.00,9.00,0.00,\"\",0.00,128.00,107.00,733.00,,,,,,\n2015,5,3,\"UA\",\"622\",\"LGA\",\"ORD\",-8.00,-18.00,0.00,\"\",0.00,149.00,112.00,733.00,,,,,,\n2015,5,3,\"UA\",\"637\",\"SFO\",\"JFK\",17.00,17.00,0.00,\"\",0.00,348.00,312.00,2586.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"UA\",\"667\",\"LGA\",\"ORD\",-8.00,-35.00,0.00,\"\",0.00,122.00,101.00,733.00,,,,,,\n2015,5,3,\"UA\",\"672\",\"ORD\",\"LGA\",26.00,16.00,0.00,\"\",0.00,121.00,101.00,733.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"UA\",\"681\",\"LGA\",\"ORD\",0.00,-37.00,0.00,\"\",0.00,122.00,104.00,733.00,,,,,,\n2015,5,3,\"UA\",\"682\",\"ORD\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,121.00,104.00,733.00,,,,,,\n2015,5,3,\"UA\",\"683\",\"ALB\",\"ORD\",17.00,-5.00,0.00,\"\",0.00,118.00,101.00,723.00,,,,,,\n2015,5,3,\"UA\",\"687\",\"LGA\",\"ORD\",-6.00,-20.00,0.00,\"\",0.00,138.00,108.00,733.00,,,,,,\n2015,5,3,\"UA\",\"689\",\"LGA\",\"ORD\",3.00,-15.00,0.00,\"\",0.00,151.00,113.00,733.00,,,,,,\n2015,5,3,\"UA\",\"690\",\"ORD\",\"LGA\",3.00,9.00,0.00,\"\",0.00,142.00,103.00,733.00,,,,,,\n2015,5,3,\"UA\",\"692\",\"ORD\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,133.00,102.00,733.00,,,,,,\n2015,5,3,\"UA\",\"693\",\"LGA\",\"ORD\",4.00,-27.00,0.00,\"\",0.00,133.00,105.00,733.00,,,,,,\n2015,5,3,\"UA\",\"695\",\"LGA\",\"ORD\",0.00,8.00,0.00,\"\",0.00,173.00,115.00,733.00,,,,,,\n2015,5,3,\"UA\",\"699\",\"LGA\",\"ORD\",-6.00,-21.00,0.00,\"\",0.00,155.00,116.00,733.00,,,,,,\n2015,5,3,\"UA\",\"703\",\"JFK\",\"LAX\",-4.00,-14.00,0.00,\"\",0.00,353.00,327.00,2475.00,,,,,,\n2015,5,3,\"UA\",\"704\",\"SFO\",\"JFK\",1.00,-2.00,0.00,\"\",0.00,334.00,311.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"722\",\"ORD\",\"ALB\",1.00,-5.00,0.00,\"\",0.00,113.00,88.00,723.00,,,,,,\n2015,5,3,\"UA\",\"741\",\"LGA\",\"ORD\",-1.00,-16.00,0.00,\"\",0.00,151.00,110.00,733.00,,,,,,\n2015,5,3,\"UA\",\"744\",\"LGA\",\"DEN\",-6.00,-34.00,0.00,\"\",0.00,238.00,220.00,1620.00,,,,,,\n2015,5,3,\"UA\",\"745\",\"IAH\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,206.00,186.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"745\",\"LGA\",\"DEN\",-1.00,-3.00,0.00,\"\",0.00,277.00,241.00,1620.00,,,,,,\n2015,5,3,\"UA\",\"746\",\"LGA\",\"IAH\",9.00,-4.00,0.00,\"\",0.00,226.00,190.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"758\",\"SFO\",\"JFK\",-6.00,-31.00,0.00,\"\",0.00,323.00,301.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"760\",\"SFO\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,337.00,315.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"761\",\"LGA\",\"ORD\",-9.00,-32.00,0.00,\"\",0.00,131.00,106.00,733.00,,,,,,\n2015,5,3,\"UA\",\"766\",\"JFK\",\"SFO\",-5.00,-4.00,0.00,\"\",0.00,381.00,341.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"779\",\"LAX\",\"JFK\",-8.00,-11.00,0.00,\"\",0.00,332.00,304.00,2475.00,,,,,,\n2015,5,3,\"UA\",\"824\",\"SFO\",\"JFK\",11.00,12.00,0.00,\"\",0.00,341.00,319.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"841\",\"JFK\",\"LAX\",-6.00,-28.00,0.00,\"\",0.00,352.00,328.00,2475.00,,,,,,\n2015,5,3,\"UA\",\"867\",\"LAX\",\"JFK\",-7.00,-16.00,0.00,\"\",0.00,329.00,308.00,2475.00,,,,,,\n2015,5,3,\"UA\",\"898\",\"SFO\",\"JFK\",7.00,-8.00,0.00,\"\",0.00,333.00,309.00,2586.00,,,,,,\n2015,5,3,\"UA\",\"910\",\"ORD\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,125.00,104.00,733.00,,,,,,\n2015,5,3,\"UA\",\"912\",\"LAX\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,328.00,311.00,2475.00,,,,,,\n2015,5,3,\"UA\",\"1015\",\"IAH\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,209.00,190.00,1416.00,,,,,,\n2015,5,3,\"UA\",\"1061\",\"ORD\",\"BUF\",-3.00,-2.00,0.00,\"\",0.00,91.00,63.00,473.00,,,,,,\n2015,5,1,\"US\",\"1849\",\"LGA\",\"CLT\",-4.00,1.00,0.00,\"\",0.00,138.00,90.00,544.00,,,,,,\n2015,5,1,\"US\",\"1851\",\"LGA\",\"CLT\",-5.00,-16.00,0.00,\"\",0.00,112.00,82.00,544.00,,,,,,\n2015,5,1,\"US\",\"1885\",\"CLT\",\"BUF\",0.00,10.00,0.00,\"\",0.00,111.00,84.00,546.00,,,,,,\n2015,5,1,\"US\",\"1898\",\"CLT\",\"JFK\",28.00,42.00,0.00,\"\",0.00,121.00,91.00,541.00,0.00,0.00,14.00,0.00,28.00,\n2015,5,1,\"US\",\"1908\",\"LGA\",\"CLT\",-6.00,-26.00,0.00,\"\",0.00,102.00,82.00,544.00,,,,,,\n2015,5,1,\"US\",\"1910\",\"CLT\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,120.00,79.00,544.00,,,,,,\n2015,5,1,\"US\",\"1916\",\"SYR\",\"CLT\",50.00,44.00,0.00,\"\",0.00,116.00,92.00,603.00,0.00,0.00,0.00,0.00,44.00,\n2015,5,1,\"US\",\"1919\",\"JFK\",\"CLT\",24.00,22.00,0.00,\"\",0.00,119.00,85.00,541.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"US\",\"1940\",\"CLT\",\"ALB\",-3.00,11.00,0.00,\"\",0.00,129.00,88.00,646.00,,,,,,\n2015,5,1,\"US\",\"1942\",\"CLT\",\"BUF\",-2.00,-9.00,0.00,\"\",0.00,93.00,75.00,546.00,,,,,,\n2015,5,1,\"US\",\"1951\",\"LGA\",\"CLT\",-5.00,-16.00,0.00,\"\",0.00,111.00,94.00,544.00,,,,,,\n2015,5,1,\"US\",\"1952\",\"CLT\",\"BUF\",7.00,27.00,0.00,\"\",0.00,115.00,80.00,546.00,7.00,0.00,20.00,0.00,0.00,\n2015,5,1,\"US\",\"1954\",\"CLT\",\"LGA\",2.00,13.00,0.00,\"\",0.00,119.00,83.00,544.00,,,,,,\n2015,5,1,\"US\",\"1971\",\"CLT\",\"SYR\",-7.00,22.00,0.00,\"\",0.00,131.00,98.00,603.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,1,\"US\",\"1981\",\"CLT\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,101.00,80.00,544.00,,,,,,\n2015,5,1,\"US\",\"1983\",\"BUF\",\"CLT\",-6.00,-1.00,0.00,\"\",0.00,117.00,87.00,546.00,,,,,,\n2015,5,1,\"US\",\"1988\",\"CLT\",\"ALB\",-1.00,2.00,0.00,\"\",0.00,128.00,89.00,646.00,,,,,,\n2015,5,1,\"US\",\"2017\",\"CLT\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,102.00,79.00,541.00,,,,,,\n2015,5,1,\"US\",\"2036\",\"CLT\",\"SYR\",68.00,64.00,0.00,\"\",0.00,106.00,85.00,603.00,64.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"US\",\"2038\",\"BUF\",\"CLT\",0.00,7.00,0.00,\"\",0.00,115.00,83.00,546.00,,,,,,\n2015,5,1,\"US\",\"2042\",\"CLT\",\"JFK\",-5.00,-7.00,0.00,\"\",0.00,104.00,77.00,541.00,,,,,,\n2015,5,1,\"US\",\"2050\",\"CLT\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,107.00,79.00,544.00,,,,,,\n2015,5,1,\"US\",\"2060\",\"CLT\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,97.00,73.00,544.00,,,,,,\n2015,5,1,\"US\",\"2062\",\"CLT\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,108.00,77.00,544.00,,,,,,\n2015,5,1,\"US\",\"2064\",\"CLT\",\"LGA\",28.00,19.00,0.00,\"\",0.00,101.00,76.00,544.00,10.00,0.00,0.00,0.00,9.00,\n2015,5,1,\"US\",\"2066\",\"CLT\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,104.00,77.00,544.00,,,,,,\n2015,5,1,\"US\",\"2068\",\"CLT\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,103.00,79.00,544.00,,,,,,\n2015,5,1,\"US\",\"2069\",\"JFK\",\"CLT\",18.00,0.00,0.00,\"\",0.00,103.00,84.00,541.00,,,,,,\n2015,5,1,\"US\",\"2115\",\"LGA\",\"DCA\",-6.00,-11.00,0.00,\"\",0.00,58.00,42.00,214.00,,,,,,\n2015,5,1,\"US\",\"2117\",\"DCA\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,66.00,45.00,214.00,,,,,,\n2015,5,1,\"US\",\"2118\",\"BOS\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,77.00,39.00,184.00,,,,,,\n2015,5,1,\"US\",\"2118\",\"LGA\",\"BOS\",-6.00,-14.00,0.00,\"\",0.00,70.00,35.00,184.00,,,,,,\n2015,5,1,\"US\",\"2121\",\"BOS\",\"LGA\",-9.00,-25.00,0.00,\"\",0.00,60.00,44.00,184.00,,,,,,\n2015,5,1,\"US\",\"2121\",\"LGA\",\"BOS\",-6.00,-7.00,0.00,\"\",0.00,77.00,37.00,184.00,,,,,,\n2015,5,1,\"US\",\"2122\",\"LGA\",\"BOS\",-3.00,-19.00,0.00,\"\",0.00,58.00,36.00,184.00,,,,,,\n2015,5,1,\"US\",\"2123\",\"LGA\",\"DCA\",-4.00,13.00,0.00,\"\",0.00,87.00,42.00,214.00,,,,,,\n2015,5,1,\"US\",\"2125\",\"LGA\",\"DCA\",-6.00,-10.00,0.00,\"\",0.00,80.00,44.00,214.00,,,,,,\n2015,5,1,\"US\",\"2126\",\"BOS\",\"LGA\",-8.00,-15.00,0.00,\"\",0.00,74.00,43.00,184.00,,,,,,\n2015,5,1,\"US\",\"2126\",\"LGA\",\"BOS\",-7.00,-3.00,0.00,\"\",0.00,66.00,34.00,184.00,,,,,,\n2015,5,1,\"US\",\"2128\",\"LGA\",\"BOS\",-8.00,-12.00,0.00,\"\",0.00,69.00,40.00,184.00,,,,,,\n2015,5,1,\"US\",\"2131\",\"BOS\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,67.00,40.00,184.00,,,,,,\n2015,5,1,\"US\",\"2131\",\"LGA\",\"BOS\",-5.00,2.00,0.00,\"\",0.00,79.00,42.00,184.00,,,,,,\n2015,5,1,\"US\",\"2133\",\"DCA\",\"LGA\",14.00,13.00,0.00,\"\",0.00,89.00,44.00,214.00,,,,,,\n2015,5,1,\"US\",\"2133\",\"LGA\",\"DCA\",5.00,10.00,0.00,\"\",0.00,82.00,41.00,214.00,,,,,,\n2015,5,1,\"US\",\"2135\",\"DCA\",\"LGA\",16.00,2.00,0.00,\"\",0.00,62.00,46.00,214.00,,,,,,\n2015,5,1,\"US\",\"2135\",\"LGA\",\"DCA\",-7.00,-15.00,0.00,\"\",0.00,67.00,42.00,214.00,,,,,,\n2015,5,1,\"US\",\"2136\",\"BOS\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,64.00,39.00,184.00,,,,,,\n2015,5,1,\"US\",\"2136\",\"LGA\",\"BOS\",-8.00,-9.00,0.00,\"\",0.00,77.00,36.00,184.00,,,,,,\n2015,5,1,\"US\",\"2137\",\"DCA\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,57.00,41.00,214.00,,,,,,\n2015,5,1,\"US\",\"2137\",\"LGA\",\"DCA\",-3.00,-10.00,0.00,\"\",0.00,78.00,47.00,214.00,,,,,,\n2015,5,1,\"US\",\"2141\",\"BOS\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,72.00,40.00,184.00,,,,,,\n2015,5,1,\"US\",\"2141\",\"LGA\",\"BOS\",-5.00,-14.00,0.00,\"\",0.00,68.00,35.00,184.00,,,,,,\n2015,5,1,\"US\",\"2143\",\"DCA\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,85.00,68.00,214.00,,,,,,\n2015,5,1,\"US\",\"2143\",\"LGA\",\"DCA\",-1.00,-3.00,0.00,\"\",0.00,79.00,51.00,214.00,,,,,,\n2015,5,1,\"US\",\"2144\",\"DCA\",\"LGA\",-5.00,-1.00,0.00,\"\",0.00,83.00,40.00,214.00,,,,,,\n2015,5,1,\"US\",\"2144\",\"LGA\",\"DCA\",-6.00,-8.00,0.00,\"\",0.00,80.00,41.00,214.00,,,,,,\n2015,5,1,\"US\",\"2145\",\"DCA\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,73.00,43.00,214.00,,,,,,\n2015,5,1,\"US\",\"2145\",\"LGA\",\"DCA\",0.00,-7.00,0.00,\"\",0.00,76.00,52.00,214.00,,,,,,\n2015,5,1,\"US\",\"2146\",\"BOS\",\"LGA\",-6.00,-25.00,0.00,\"\",0.00,63.00,40.00,184.00,,,,,,\n2015,5,1,\"US\",\"2146\",\"LGA\",\"BOS\",-3.00,-7.00,0.00,\"\",0.00,64.00,36.00,184.00,,,,,,\n2015,5,1,\"US\",\"2147\",\"DCA\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,79.00,46.00,214.00,,,,,,\n2015,5,1,\"US\",\"2147\",\"LGA\",\"DCA\",-7.00,-18.00,0.00,\"\",0.00,71.00,39.00,214.00,,,,,,\n2015,5,1,\"US\",\"2148\",\"BOS\",\"LGA\",-8.00,-6.00,0.00,\"\",0.00,78.00,43.00,184.00,,,,,,\n2015,5,1,\"US\",\"2151\",\"LGA\",\"BOS\",0.00,-2.00,0.00,\"\",0.00,66.00,43.00,184.00,,,,,,\n2015,5,1,\"US\",\"2152\",\"BOS\",\"LGA\",1.00,7.00,0.00,\"\",0.00,87.00,54.00,184.00,,,,,,\n2015,5,1,\"US\",\"2152\",\"LGA\",\"BOS\",-2.00,2.00,0.00,\"\",0.00,72.00,37.00,184.00,,,,,,\n2015,5,1,\"US\",\"2153\",\"DCA\",\"LGA\",8.00,-1.00,0.00,\"\",0.00,80.00,54.00,214.00,,,,,,\n2015,5,1,\"US\",\"2153\",\"LGA\",\"DCA\",8.00,2.00,0.00,\"\",0.00,74.00,42.00,214.00,,,,,,\n2015,5,1,\"US\",\"2154\",\"DCA\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,78.00,48.00,214.00,,,,,,\n2015,5,1,\"US\",\"2154\",\"LGA\",\"DCA\",-5.00,-3.00,0.00,\"\",0.00,78.00,48.00,214.00,,,,,,\n2015,5,1,\"US\",\"2155\",\"DCA\",\"LGA\",20.00,7.00,0.00,\"\",0.00,82.00,50.00,214.00,,,,,,\n2015,5,1,\"US\",\"2156\",\"BOS\",\"LGA\",-2.00,-27.00,0.00,\"\",0.00,58.00,40.00,184.00,,,,,,\n2015,5,1,\"US\",\"2156\",\"LGA\",\"BOS\",-6.00,-22.00,0.00,\"\",0.00,60.00,36.00,184.00,,,,,,\n2015,5,1,\"US\",\"2157\",\"DCA\",\"LGA\",-4.00,11.00,0.00,\"\",0.00,103.00,54.00,214.00,,,,,,\n2015,5,1,\"US\",\"2157\",\"LGA\",\"DCA\",4.00,-2.00,0.00,\"\",0.00,76.00,44.00,214.00,,,,,,\n2015,5,1,\"US\",\"2158\",\"BOS\",\"LGA\",-9.00,-15.00,0.00,\"\",0.00,74.00,50.00,184.00,,,,,,\n2015,5,1,\"US\",\"2158\",\"LGA\",\"BOS\",-5.00,1.00,0.00,\"\",0.00,70.00,35.00,184.00,,,,,,\n2015,5,1,\"US\",\"2162\",\"BOS\",\"LGA\",-7.00,-36.00,0.00,\"\",0.00,55.00,40.00,184.00,,,,,,\n2015,5,1,\"US\",\"2162\",\"LGA\",\"BOS\",-6.00,10.00,0.00,\"\",0.00,88.00,42.00,184.00,,,,,,\n2015,5,1,\"US\",\"2163\",\"DCA\",\"LGA\",-8.00,-14.00,0.00,\"\",0.00,77.00,45.00,214.00,,,,,,\n2015,5,1,\"US\",\"2164\",\"DCA\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,77.00,47.00,214.00,,,,,,\n2015,5,1,\"US\",\"2164\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,1,\"US\",\"2165\",\"BOS\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,76.00,45.00,184.00,,,,,,\n2015,5,1,\"US\",\"2167\",\"DCA\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,82.00,50.00,214.00,,,,,,\n2015,5,1,\"US\",\"2167\",\"LGA\",\"DCA\",-2.00,-11.00,0.00,\"\",0.00,73.00,51.00,214.00,,,,,,\n2015,5,1,\"US\",\"2168\",\"BOS\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,84.00,39.00,184.00,,,,,,\n2015,5,1,\"US\",\"2168\",\"LGA\",\"BOS\",-6.00,-2.00,0.00,\"\",0.00,75.00,37.00,184.00,,,,,,\n2015,5,1,\"US\",\"2171\",\"BOS\",\"LGA\",-7.00,-5.00,0.00,\"\",0.00,82.00,44.00,184.00,,,,,,\n2015,5,1,\"US\",\"2172\",\"BOS\",\"LGA\",-10.00,-23.00,0.00,\"\",0.00,68.00,40.00,184.00,,,,,,\n2015,5,1,\"US\",\"2172\",\"LGA\",\"BOS\",-6.00,-24.00,0.00,\"\",0.00,55.00,35.00,184.00,,,,,,\n2015,5,1,\"US\",\"2174\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,1,\"US\",\"2174\",\"LGA\",\"DCA\",24.00,3.00,0.00,\"\",0.00,58.00,38.00,214.00,,,,,,\n2015,5,2,\"US\",\"425\",\"JFK\",\"CLT\",-6.00,-16.00,0.00,\"\",0.00,118.00,82.00,541.00,,,,,,\n2015,5,2,\"US\",\"425\",\"PHX\",\"JFK\",16.00,1.00,0.00,\"\",0.00,288.00,264.00,2153.00,,,,,,\n2015,5,2,\"US\",\"445\",\"JFK\",\"CLT\",-5.00,-8.00,0.00,\"\",0.00,113.00,79.00,541.00,,,,,,\n2015,5,2,\"US\",\"513\",\"JFK\",\"PHX\",-7.00,-27.00,0.00,\"\",0.00,318.00,292.00,2153.00,,,,,,\n2015,5,2,\"US\",\"622\",\"PHX\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,289.00,266.00,2153.00,,,,,,\n2015,5,2,\"US\",\"632\",\"PHX\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,275.00,257.00,2153.00,,,,,,\n2015,5,2,\"US\",\"639\",\"CLT\",\"JFK\",16.00,3.00,0.00,\"\",0.00,103.00,83.00,541.00,,,,,,\n2015,5,2,\"US\",\"639\",\"JFK\",\"PHX\",3.00,-43.00,0.00,\"\",0.00,288.00,272.00,2153.00,,,,,,\n2015,5,2,\"US\",\"654\",\"JFK\",\"PHX\",4.00,-21.00,0.00,\"\",0.00,299.00,279.00,2153.00,,,,,,\n2015,5,2,\"US\",\"667\",\"JFK\",\"CLT\",-8.00,-14.00,0.00,\"\",0.00,118.00,81.00,541.00,,,,,,\n2015,5,2,\"UA\",\"244\",\"ORD\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,120.00,99.00,733.00,,,,,,\n2015,5,2,\"UA\",\"275\",\"LAX\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,331.00,304.00,2475.00,,,,,,\n2015,5,2,\"UA\",\"303\",\"DEN\",\"LGA\",2.00,-4.00,0.00,\"\",0.00,227.00,208.00,1620.00,,,,,,\n2015,5,2,\"UA\",\"347\",\"DEN\",\"LGA\",-12.00,-26.00,0.00,\"\",0.00,217.00,195.00,1620.00,,,,,,\n2015,5,2,\"UA\",\"368\",\"BUF\",\"ORD\",-3.00,-20.00,0.00,\"\",0.00,90.00,71.00,473.00,,,,,,\n2015,5,2,\"UA\",\"369\",\"LGA\",\"IAH\",-6.00,-39.00,0.00,\"\",0.00,211.00,178.00,1416.00,,,,,,\n2015,5,2,\"UA\",\"405\",\"LGA\",\"DEN\",-5.00,-25.00,0.00,\"\",0.00,242.00,217.00,1620.00,,,,,,\n2015,5,2,\"UA\",\"415\",\"JFK\",\"SFO\",-5.00,-33.00,0.00,\"\",0.00,359.00,335.00,2586.00,,,,,,\n2015,5,2,\"UA\",\"426\",\"ORD\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,133.00,104.00,733.00,,,,,,\n2015,5,2,\"UA\",\"441\",\"JFK\",\"LAX\",-4.00,-18.00,0.00,\"\",0.00,362.00,325.00,2475.00,,,,,,\n2015,5,2,\"UA\",\"443\",\"JFK\",\"LAX\",-7.00,11.00,0.00,\"\",0.00,397.00,330.00,2475.00,,,,,,\n2015,5,2,\"UA\",\"461\",\"IAH\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,201.00,185.00,1416.00,,,,,,\n2015,5,2,\"UA\",\"462\",\"LGA\",\"IAH\",-3.00,-31.00,0.00,\"\",0.00,213.00,186.00,1416.00,,,,,,\n2015,5,2,\"UA\",\"463\",\"LGA\",\"ORD\",-9.00,-28.00,0.00,\"\",0.00,130.00,102.00,733.00,,,,,,\n2015,5,2,\"UA\",\"514\",\"JFK\",\"SFO\",-2.00,-35.00,0.00,\"\",0.00,363.00,334.00,2586.00,,,,,,\n2015,5,2,\"UA\",\"535\",\"JFK\",\"LAX\",-5.00,-30.00,0.00,\"\",0.00,353.00,323.00,2475.00,,,,,,\n2015,5,2,\"UA\",\"541\",\"JFK\",\"SFO\",-3.00,-15.00,0.00,\"\",0.00,373.00,340.00,2586.00,,,,,,\n2015,5,2,\"UA\",\"561\",\"LGA\",\"DEN\",-9.00,-21.00,0.00,\"\",0.00,251.00,215.00,1620.00,,,,,,\n2015,5,1,\"UA\",\"415\",\"JFK\",\"SFO\",-3.00,-22.00,0.00,\"\",0.00,368.00,346.00,2586.00,,,,,,\n2015,5,1,\"UA\",\"435\",\"ORD\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,123.00,104.00,733.00,,,,,,\n2015,5,1,\"UA\",\"436\",\"LGA\",\"ORD\",1.00,3.00,0.00,\"\",0.00,160.00,107.00,733.00,,,,,,\n2015,5,1,\"UA\",\"441\",\"JFK\",\"LAX\",-1.00,-16.00,0.00,\"\",0.00,361.00,313.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"442\",\"IAH\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,193.00,176.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"443\",\"JFK\",\"LAX\",-4.00,-32.00,0.00,\"\",0.00,351.00,319.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"445\",\"JFK\",\"LAX\",-6.00,-14.00,0.00,\"\",0.00,363.00,320.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"456\",\"IAH\",\"LGA\",4.00,2.00,0.00,\"\",0.00,214.00,184.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"461\",\"IAH\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,201.00,177.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"462\",\"LGA\",\"IAH\",-5.00,-8.00,0.00,\"\",0.00,238.00,188.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"462\",\"ORD\",\"LGA\",-4.00,3.00,0.00,\"\",0.00,139.00,107.00,733.00,,,,,,\n2015,5,1,\"UA\",\"463\",\"LGA\",\"ORD\",-5.00,-5.00,0.00,\"\",0.00,149.00,103.00,733.00,,,,,,\n2015,5,1,\"UA\",\"502\",\"SFO\",\"JFK\",-5.00,-4.00,0.00,\"\",0.00,341.00,304.00,2586.00,,,,,,\n2015,5,1,\"UA\",\"509\",\"ORD\",\"LGA\",-5.00,6.00,0.00,\"\",0.00,142.00,102.00,733.00,,,,,,\n2015,5,1,\"UA\",\"510\",\"JFK\",\"SFO\",164.00,129.00,0.00,\"\",0.00,370.00,339.00,2586.00,9.00,0.00,0.00,0.00,120.00,\n2015,5,1,\"UA\",\"512\",\"JFK\",\"SFO\",37.00,13.00,0.00,\"\",0.00,381.00,346.00,2586.00,,,,,,\n2015,5,1,\"UA\",\"514\",\"JFK\",\"SFO\",105.00,68.00,0.00,\"\",0.00,359.00,334.00,2586.00,0.00,0.00,4.00,0.00,64.00,\n2015,5,1,\"UA\",\"533\",\"ORD\",\"LGA\",-8.00,-4.00,0.00,\"\",0.00,140.00,111.00,733.00,,,,,,\n2015,5,1,\"UA\",\"535\",\"JFK\",\"LAX\",-4.00,-26.00,0.00,\"\",0.00,356.00,326.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"541\",\"JFK\",\"SFO\",-3.00,-4.00,0.00,\"\",0.00,384.00,332.00,2586.00,,,,,,\n2015,5,1,\"UA\",\"622\",\"LGA\",\"ORD\",62.00,21.00,0.00,\"\",0.00,118.00,100.00,733.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"UA\",\"637\",\"SFO\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,336.00,310.00,2586.00,,,,,,\n2015,5,1,\"UA\",\"672\",\"ORD\",\"LGA\",109.00,94.00,0.00,\"\",0.00,116.00,102.00,733.00,4.00,0.00,0.00,0.00,90.00,\n2015,5,1,\"UA\",\"681\",\"LGA\",\"ORD\",-6.00,-41.00,0.00,\"\",0.00,124.00,107.00,733.00,,,,,,\n2015,5,1,\"UA\",\"682\",\"ORD\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,123.00,105.00,733.00,,,,,,\n2015,5,1,\"UA\",\"683\",\"LGA\",\"ORD\",-7.00,-31.00,0.00,\"\",0.00,135.00,104.00,733.00,,,,,,\n2015,5,1,\"UA\",\"686\",\"ORD\",\"LGA\",7.00,0.00,0.00,\"\",0.00,124.00,107.00,733.00,,,,,,\n2015,5,1,\"UA\",\"687\",\"LGA\",\"ORD\",-7.00,-32.00,0.00,\"\",0.00,127.00,103.00,733.00,,,,,,\n2015,5,1,\"UA\",\"689\",\"LGA\",\"ORD\",0.00,-25.00,0.00,\"\",0.00,144.00,105.00,733.00,,,,,,\n2015,5,1,\"UA\",\"690\",\"ORD\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,132.00,103.00,733.00,,,,,,\n2015,5,1,\"UA\",\"692\",\"ORD\",\"LGA\",-1.00,10.00,0.00,\"\",0.00,147.00,109.00,733.00,,,,,,\n2015,5,1,\"UA\",\"694\",\"ORD\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,120.00,103.00,733.00,,,,,,\n2015,5,1,\"UA\",\"695\",\"LGA\",\"ORD\",-9.00,-37.00,0.00,\"\",0.00,137.00,103.00,733.00,,,,,,\n2015,5,1,\"UA\",\"699\",\"LGA\",\"ORD\",-5.00,-32.00,0.00,\"\",0.00,143.00,107.00,733.00,,,,,,\n2015,5,1,\"UA\",\"703\",\"JFK\",\"LAX\",-4.00,-16.00,0.00,\"\",0.00,351.00,323.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"704\",\"SFO\",\"JFK\",1.00,-17.00,0.00,\"\",0.00,319.00,294.00,2586.00,,,,,,\n2015,5,1,\"UA\",\"706\",\"LGA\",\"IAH\",-4.00,-35.00,0.00,\"\",0.00,209.00,186.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"711\",\"LGA\",\"ORD\",9.00,2.00,0.00,\"\",0.00,142.00,99.00,733.00,,,,,,\n2015,5,1,\"UA\",\"741\",\"LGA\",\"ORD\",0.00,-26.00,0.00,\"\",0.00,140.00,104.00,733.00,,,,,,\n2015,5,1,\"UA\",\"744\",\"LGA\",\"DEN\",-5.00,-17.00,0.00,\"\",0.00,254.00,222.00,1620.00,,,,,,\n2015,5,1,\"UA\",\"745\",\"IAH\",\"LGA\",17.00,3.00,0.00,\"\",0.00,202.00,182.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"745\",\"LGA\",\"DEN\",14.00,-7.00,0.00,\"\",0.00,258.00,230.00,1620.00,,,,,,\n2015,5,1,\"UA\",\"746\",\"LGA\",\"IAH\",92.00,43.00,0.00,\"\",0.00,190.00,172.00,1416.00,0.00,0.00,1.00,0.00,42.00,\n2015,5,1,\"UA\",\"754\",\"ORD\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,121.00,98.00,733.00,,,,,,\n2015,5,1,\"UA\",\"758\",\"SFO\",\"JFK\",-5.00,-28.00,0.00,\"\",0.00,325.00,305.00,2586.00,,,,,,\n2015,5,1,\"UA\",\"760\",\"SFO\",\"JFK\",-7.00,-6.00,0.00,\"\",0.00,346.00,314.00,2586.00,,,,,,\n2015,5,1,\"UA\",\"761\",\"LGA\",\"ORD\",-4.00,-38.00,0.00,\"\",0.00,116.00,101.00,733.00,,,,,,\n2015,5,1,\"UA\",\"765\",\"LGA\",\"ORD\",-5.00,-23.00,0.00,\"\",0.00,137.00,100.00,733.00,,,,,,\n2015,5,1,\"UA\",\"766\",\"JFK\",\"SFO\",-6.00,-21.00,0.00,\"\",0.00,365.00,340.00,2586.00,,,,,,\n2015,5,1,\"UA\",\"779\",\"LAX\",\"JFK\",-7.00,-20.00,0.00,\"\",0.00,322.00,302.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"791\",\"ORD\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,126.00,105.00,733.00,,,,,,\n2015,5,1,\"UA\",\"824\",\"SFO\",\"JFK\",6.00,17.00,0.00,\"\",0.00,351.00,307.00,2586.00,6.00,0.00,11.00,0.00,0.00,\n2015,5,1,\"UA\",\"841\",\"JFK\",\"LAX\",-4.00,-29.00,0.00,\"\",0.00,349.00,324.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"867\",\"LAX\",\"JFK\",-10.00,-22.00,0.00,\"\",0.00,326.00,305.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"898\",\"SFO\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,338.00,309.00,2586.00,,,,,,\n2015,5,1,\"UA\",\"910\",\"ORD\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,127.00,108.00,733.00,,,,,,\n2015,5,1,\"UA\",\"912\",\"LAX\",\"JFK\",-4.00,2.00,0.00,\"\",0.00,334.00,305.00,2475.00,,,,,,\n2015,5,1,\"UA\",\"1023\",\"ORD\",\"ALB\",19.00,17.00,0.00,\"\",0.00,118.00,92.00,723.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"UA\",\"1061\",\"ORD\",\"BUF\",-1.00,0.00,0.00,\"\",0.00,91.00,68.00,473.00,,,,,,\n2015,5,1,\"UA\",\"1067\",\"DEN\",\"LGA\",-6.00,-29.00,0.00,\"\",0.00,212.00,192.00,1620.00,,,,,,\n2015,5,1,\"UA\",\"1123\",\"LGA\",\"DEN\",3.00,-7.00,0.00,\"\",0.00,254.00,217.00,1620.00,,,,,,\n2015,5,1,\"UA\",\"1138\",\"DEN\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,226.00,204.00,1620.00,,,,,,\n2015,5,1,\"UA\",\"1143\",\"IAH\",\"LGA\",5.00,-12.00,0.00,\"\",0.00,201.00,178.00,1416.00,,,,,,\n2015,5,1,\"UA\",\"1143\",\"LGA\",\"ORD\",6.00,-6.00,0.00,\"\",0.00,153.00,108.00,733.00,,,,,,\n2015,5,1,\"UA\",\"1237\",\"ORD\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,128.00,106.00,733.00,,,,,,\n2015,5,1,\"UA\",\"1283\",\"ALB\",\"ORD\",12.00,-8.00,0.00,\"\",0.00,121.00,97.00,723.00,,,,,,\n2015,5,1,\"UA\",\"1408\",\"LGA\",\"DEN\",2.00,-6.00,0.00,\"\",0.00,253.00,233.00,1620.00,,,,,,\n2015,5,1,\"UA\",\"1469\",\"DEN\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,226.00,201.00,1620.00,,,,,,\n2015,5,1,\"UA\",\"1483\",\"DEN\",\"LGA\",60.00,31.00,0.00,\"\",0.00,206.00,189.00,1620.00,0.00,0.00,0.00,0.00,31.00,\n2015,5,1,\"UA\",\"1496\",\"LGA\",\"ORD\",15.00,-12.00,0.00,\"\",0.00,125.00,105.00,733.00,,,,,,\n2015,5,3,\"US\",\"1860\",\"CLT\",\"LGA\",10.00,25.00,0.00,\"\",0.00,117.00,79.00,544.00,6.00,0.00,15.00,0.00,4.00,\n2015,5,3,\"US\",\"1866\",\"LGA\",\"CLT\",-6.00,-22.00,0.00,\"\",0.00,106.00,80.00,544.00,,,,,,\n2015,5,3,\"US\",\"1873\",\"SYR\",\"CLT\",-8.00,-13.00,0.00,\"\",0.00,117.00,89.00,603.00,,,,,,\n2015,5,3,\"US\",\"1885\",\"CLT\",\"BUF\",-8.00,-6.00,0.00,\"\",0.00,103.00,85.00,546.00,,,,,,\n2015,5,3,\"US\",\"1898\",\"CLT\",\"JFK\",9.00,39.00,0.00,\"\",0.00,137.00,83.00,541.00,6.00,0.00,30.00,0.00,3.00,\n2015,5,3,\"US\",\"1910\",\"CLT\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,106.00,83.00,544.00,,,,,,\n2015,5,3,\"US\",\"1929\",\"BUF\",\"CLT\",8.00,-2.00,0.00,\"\",0.00,101.00,82.00,546.00,,,,,,\n2015,5,3,\"US\",\"1940\",\"CLT\",\"ALB\",5.00,27.00,0.00,\"\",0.00,137.00,92.00,646.00,5.00,0.00,22.00,0.00,0.00,\n2015,5,3,\"US\",\"1942\",\"CLT\",\"BUF\",15.00,14.00,0.00,\"\",0.00,99.00,82.00,546.00,,,,,,\n2015,5,3,\"US\",\"1952\",\"CLT\",\"BUF\",-1.00,6.00,0.00,\"\",0.00,102.00,80.00,546.00,,,,,,\n2015,5,3,\"US\",\"1954\",\"CLT\",\"LGA\",0.00,-1.00,0.00,\"\",0.00,107.00,89.00,544.00,,,,,,\n2015,5,3,\"US\",\"1964\",\"ROC\",\"CLT\",-2.00,-17.00,0.00,\"\",0.00,107.00,83.00,573.00,,,,,,\n2015,5,3,\"US\",\"1971\",\"CLT\",\"SYR\",8.00,17.00,0.00,\"\",0.00,111.00,82.00,603.00,0.00,0.00,9.00,0.00,8.00,\n2015,5,3,\"US\",\"1988\",\"CLT\",\"ALB\",-4.00,-9.00,0.00,\"\",0.00,120.00,97.00,646.00,,,,,,\n2015,5,3,\"US\",\"1991\",\"LGA\",\"PHL\",-6.00,-29.00,0.00,\"\",0.00,50.00,31.00,96.00,,,,,,\n2015,5,3,\"US\",\"2017\",\"CLT\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,106.00,82.00,541.00,,,,,,\n2015,5,3,\"US\",\"2018\",\"ALB\",\"CLT\",-4.00,-10.00,0.00,\"\",0.00,136.00,94.00,646.00,,,,,,\n2015,5,3,\"US\",\"2036\",\"CLT\",\"SYR\",-1.00,-12.00,0.00,\"\",0.00,99.00,82.00,603.00,,,,,,\n2015,5,3,\"US\",\"2050\",\"CLT\",\"LGA\",7.00,10.00,0.00,\"\",0.00,111.00,84.00,544.00,,,,,,\n2015,5,3,\"US\",\"2057\",\"JFK\",\"CLT\",-2.00,-7.00,0.00,\"\",0.00,111.00,80.00,541.00,,,,,,\n2015,5,3,\"US\",\"2062\",\"CLT\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,112.00,79.00,544.00,,,,,,\n2015,5,3,\"US\",\"2064\",\"CLT\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,107.00,82.00,544.00,,,,,,\n2015,5,3,\"US\",\"2066\",\"CLT\",\"LGA\",1.00,3.00,0.00,\"\",0.00,108.00,85.00,544.00,,,,,,\n2015,5,3,\"US\",\"2068\",\"CLT\",\"LGA\",3.00,-2.00,0.00,\"\",0.00,102.00,80.00,544.00,,,,,,\n2015,5,3,\"US\",\"2069\",\"JFK\",\"CLT\",-5.00,-30.00,0.00,\"\",0.00,96.00,79.00,541.00,,,,,,\n2015,5,3,\"US\",\"2117\",\"DCA\",\"LGA\",0.00,7.00,0.00,\"\",0.00,76.00,44.00,214.00,,,,,,\n2015,5,3,\"US\",\"2118\",\"BOS\",\"LGA\",-11.00,-25.00,0.00,\"\",0.00,67.00,42.00,184.00,,,,,,\n2015,5,3,\"US\",\"2118\",\"LGA\",\"BOS\",-4.00,-16.00,0.00,\"\",0.00,66.00,36.00,184.00,,,,,,\n2015,5,3,\"US\",\"2128\",\"LGA\",\"BOS\",-5.00,-23.00,0.00,\"\",0.00,55.00,39.00,184.00,,,,,,\n2015,5,3,\"US\",\"2133\",\"DCA\",\"LGA\",26.00,10.00,0.00,\"\",0.00,74.00,46.00,214.00,,,,,,\n2015,5,3,\"US\",\"2133\",\"LGA\",\"DCA\",7.00,-7.00,0.00,\"\",0.00,63.00,41.00,214.00,,,,,,\n2015,5,3,\"US\",\"2135\",\"DCA\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,64.00,45.00,214.00,,,,,,\n2015,5,3,\"US\",\"2135\",\"LGA\",\"DCA\",-7.00,-8.00,0.00,\"\",0.00,74.00,43.00,214.00,,,,,,\n2015,5,3,\"US\",\"2136\",\"BOS\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,74.00,41.00,184.00,,,,,,\n2015,5,3,\"US\",\"2137\",\"BOS\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,78.00,41.00,184.00,,,,,,\n2015,5,3,\"US\",\"2143\",\"DCA\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,87.00,47.00,214.00,,,,,,\n2015,5,3,\"US\",\"2143\",\"LGA\",\"DCA\",6.00,-8.00,0.00,\"\",0.00,67.00,40.00,214.00,,,,,,\n2015,5,3,\"US\",\"2144\",\"LGA\",\"DCA\",96.00,80.00,0.00,\"\",0.00,66.00,43.00,214.00,80.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"US\",\"2145\",\"DCA\",\"LGA\",3.00,-12.00,0.00,\"\",0.00,73.00,46.00,214.00,,,,,,\n2015,5,3,\"US\",\"2145\",\"LGA\",\"DCA\",-2.00,-4.00,0.00,\"\",0.00,81.00,42.00,214.00,,,,,,\n2015,5,3,\"US\",\"2146\",\"BOS\",\"LGA\",-8.00,-28.00,0.00,\"\",0.00,62.00,42.00,184.00,,,,,,\n2015,5,3,\"US\",\"2146\",\"LGA\",\"BOS\",-7.00,-18.00,0.00,\"\",0.00,57.00,35.00,184.00,,,,,,\n2015,5,3,\"US\",\"2147\",\"LGA\",\"DCA\",-4.00,-7.00,0.00,\"\",0.00,79.00,41.00,214.00,,,,,,\n2015,5,3,\"US\",\"2153\",\"DCA\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,79.00,42.00,214.00,,,,,,\n2015,5,3,\"US\",\"2153\",\"LGA\",\"DCA\",-9.00,-22.00,0.00,\"\",0.00,67.00,42.00,214.00,,,,,,\n2015,5,3,\"US\",\"2154\",\"DCA\",\"LGA\",71.00,63.00,0.00,\"\",0.00,68.00,45.00,214.00,0.00,0.00,0.00,0.00,63.00,\n2015,5,3,\"US\",\"2154\",\"LGA\",\"DCA\",62.00,58.00,0.00,\"\",0.00,72.00,43.00,214.00,12.00,0.00,0.00,0.00,46.00,\n2015,5,3,\"US\",\"2155\",\"DCA\",\"LGA\",-1.00,-28.00,0.00,\"\",0.00,68.00,42.00,214.00,,,,,,\n2015,5,3,\"US\",\"2156\",\"LGA\",\"BOS\",-8.00,-17.00,0.00,\"\",0.00,67.00,39.00,184.00,,,,,,\n2015,5,3,\"US\",\"2157\",\"DCA\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,84.00,46.00,214.00,,,,,,\n2015,5,3,\"US\",\"2157\",\"LGA\",\"DCA\",-1.00,1.00,0.00,\"\",0.00,84.00,40.00,214.00,,,,,,\n2015,5,3,\"US\",\"2158\",\"BOS\",\"LGA\",-10.00,-29.00,0.00,\"\",0.00,61.00,41.00,184.00,,,,,,\n2015,5,3,\"US\",\"2164\",\"DCA\",\"LGA\",52.00,35.00,0.00,\"\",0.00,70.00,45.00,214.00,5.00,0.00,0.00,0.00,30.00,\n2015,5,3,\"US\",\"2164\",\"LGA\",\"DCA\",39.00,42.00,0.00,\"\",0.00,86.00,46.00,214.00,7.00,0.00,3.00,0.00,32.00,\n2015,5,3,\"US\",\"2167\",\"DCA\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,72.00,44.00,214.00,,,,,,\n2015,5,3,\"US\",\"2167\",\"LGA\",\"DCA\",-2.00,-4.00,0.00,\"\",0.00,80.00,47.00,214.00,,,,,,\n2015,5,3,\"US\",\"2168\",\"BOS\",\"LGA\",-9.00,-10.00,0.00,\"\",0.00,80.00,40.00,184.00,,,,,,\n2015,5,3,\"US\",\"2168\",\"LGA\",\"BOS\",-7.00,-2.00,0.00,\"\",0.00,76.00,33.00,184.00,,,,,,\n2015,5,3,\"US\",\"2174\",\"DCA\",\"LGA\",34.00,21.00,0.00,\"\",0.00,77.00,42.00,214.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,3,\"US\",\"2174\",\"LGA\",\"DCA\",14.00,-3.00,0.00,\"\",0.00,62.00,42.00,214.00,,,,,,\n2015,5,4,\"US\",\"413\",\"JFK\",\"CLT\",-6.00,-19.00,0.00,\"\",0.00,103.00,76.00,541.00,,,,,,\n2015,5,2,\"US\",\"835\",\"LGA\",\"CLT\",-10.00,-23.00,0.00,\"\",0.00,109.00,83.00,544.00,,,,,,\n2015,5,2,\"US\",\"863\",\"ROC\",\"CLT\",-8.00,-10.00,0.00,\"\",0.00,120.00,96.00,573.00,,,,,,\n2015,5,2,\"US\",\"885\",\"LGA\",\"CLT\",-5.00,-19.00,0.00,\"\",0.00,103.00,76.00,544.00,,,,,,\n2015,5,2,\"US\",\"894\",\"LGA\",\"CLT\",0.00,-19.00,0.00,\"\",0.00,104.00,82.00,544.00,,,,,,\n2015,5,2,\"US\",\"896\",\"CLT\",\"ROC\",-1.00,-14.00,0.00,\"\",0.00,91.00,78.00,573.00,,,,,,\n2015,5,2,\"US\",\"1700\",\"LGA\",\"CLT\",-6.00,-22.00,0.00,\"\",0.00,107.00,82.00,544.00,,,,,,\n2015,5,2,\"US\",\"1704\",\"CLT\",\"BUF\",102.00,90.00,0.00,\"\",0.00,87.00,74.00,546.00,90.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"US\",\"1740\",\"CLT\",\"LGA\",14.00,11.00,0.00,\"\",0.00,104.00,81.00,544.00,,,,,,\n2015,5,2,\"US\",\"1781\",\"LGA\",\"CLT\",-6.00,-8.00,0.00,\"\",0.00,123.00,81.00,544.00,,,,,,\n2015,5,2,\"US\",\"1799\",\"LGA\",\"CLT\",-5.00,8.00,0.00,\"\",0.00,135.00,82.00,544.00,,,,,,\n2015,5,4,\"US\",\"1810\",\"LGA\",\"CLT\",-5.00,-21.00,0.00,\"\",0.00,106.00,75.00,544.00,,,,,,\n2015,5,4,\"US\",\"1815\",\"LGA\",\"CLT\",0.00,-18.00,0.00,\"\",0.00,104.00,79.00,544.00,,,,,,\n2015,5,4,\"US\",\"1830\",\"CLT\",\"JFK\",16.00,18.00,0.00,\"\",0.00,109.00,82.00,541.00,16.00,0.00,2.00,0.00,0.00,\n2015,5,4,\"US\",\"1831\",\"SYR\",\"CLT\",-7.00,-17.00,0.00,\"\",0.00,118.00,91.00,603.00,,,,,,\n2015,5,4,\"US\",\"1843\",\"LGA\",\"CLT\",-5.00,-11.00,0.00,\"\",0.00,113.00,79.00,544.00,,,,,,\n2015,5,4,\"US\",\"1849\",\"LGA\",\"CLT\",0.00,-15.00,0.00,\"\",0.00,118.00,75.00,544.00,,,,,,\n2015,5,4,\"US\",\"1851\",\"LGA\",\"CLT\",-8.00,-18.00,0.00,\"\",0.00,113.00,77.00,544.00,,,,,,\n2015,5,4,\"US\",\"1885\",\"CLT\",\"BUF\",-6.00,-1.00,0.00,\"\",0.00,106.00,81.00,546.00,,,,,,\n2015,5,4,\"US\",\"1898\",\"CLT\",\"JFK\",46.00,61.00,0.00,\"\",0.00,122.00,78.00,541.00,0.00,0.00,15.00,0.00,46.00,\n2015,5,4,\"US\",\"1908\",\"LGA\",\"CLT\",-11.00,-21.00,0.00,\"\",0.00,112.00,77.00,544.00,,,,,,\n2015,5,4,\"US\",\"1910\",\"CLT\",\"LGA\",-4.00,5.00,0.00,\"\",0.00,123.00,81.00,544.00,,,,,,\n2015,5,4,\"US\",\"1916\",\"SYR\",\"CLT\",-8.00,-10.00,0.00,\"\",0.00,120.00,93.00,603.00,,,,,,\n2015,5,4,\"US\",\"1919\",\"JFK\",\"CLT\",30.00,11.00,0.00,\"\",0.00,102.00,76.00,541.00,,,,,,\n2015,5,4,\"US\",\"1942\",\"CLT\",\"BUF\",59.00,57.00,0.00,\"\",0.00,98.00,81.00,546.00,57.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"US\",\"1951\",\"LGA\",\"CLT\",-4.00,-23.00,0.00,\"\",0.00,103.00,78.00,544.00,,,,,,\n2015,5,4,\"US\",\"1952\",\"CLT\",\"BUF\",-6.00,1.00,0.00,\"\",0.00,102.00,80.00,546.00,,,,,,\n2015,5,4,\"US\",\"1954\",\"CLT\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,102.00,82.00,544.00,,,,,,\n2015,5,4,\"US\",\"1971\",\"CLT\",\"SYR\",10.00,58.00,0.00,\"\",0.00,150.00,83.00,603.00,10.00,0.00,48.00,0.00,0.00,\n2015,5,4,\"US\",\"1981\",\"CLT\",\"LGA\",3.00,1.00,0.00,\"\",0.00,100.00,80.00,544.00,,,,,,\n2015,5,4,\"US\",\"1983\",\"BUF\",\"CLT\",-3.00,-7.00,0.00,\"\",0.00,108.00,80.00,546.00,,,,,,\n2015,5,4,\"US\",\"1988\",\"CLT\",\"ALB\",-8.00,6.00,0.00,\"\",0.00,139.00,97.00,646.00,,,,,,\n2015,5,4,\"US\",\"2017\",\"CLT\",\"JFK\",41.00,40.00,0.00,\"\",0.00,109.00,82.00,541.00,12.00,0.00,0.00,0.00,28.00,\n2015,5,4,\"US\",\"2036\",\"CLT\",\"SYR\",-5.00,-14.00,0.00,\"\",0.00,101.00,84.00,603.00,,,,,,\n2015,5,4,\"US\",\"2038\",\"BUF\",\"CLT\",10.00,1.00,0.00,\"\",0.00,99.00,81.00,546.00,,,,,,\n2015,5,4,\"US\",\"2042\",\"CLT\",\"JFK\",-2.00,-2.00,0.00,\"\",0.00,106.00,82.00,541.00,,,,,,\n2015,5,4,\"US\",\"2050\",\"CLT\",\"LGA\",6.00,7.00,0.00,\"\",0.00,109.00,82.00,544.00,,,,,,\n2015,5,4,\"US\",\"2060\",\"CLT\",\"LGA\",1.00,3.00,0.00,\"\",0.00,106.00,85.00,544.00,,,,,,\n2015,5,4,\"US\",\"2062\",\"CLT\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,108.00,80.00,544.00,,,,,,\n2015,5,4,\"US\",\"2064\",\"CLT\",\"LGA\",1.00,13.00,0.00,\"\",0.00,122.00,87.00,544.00,,,,,,\n2015,5,4,\"US\",\"2066\",\"CLT\",\"LGA\",5.00,0.00,0.00,\"\",0.00,101.00,81.00,544.00,,,,,,\n2015,5,4,\"US\",\"2068\",\"CLT\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,104.00,85.00,544.00,,,,,,\n2015,5,4,\"US\",\"2069\",\"JFK\",\"CLT\",10.00,2.00,0.00,\"\",0.00,113.00,72.00,541.00,,,,,,\n2015,5,4,\"US\",\"2115\",\"LGA\",\"DCA\",-6.00,7.00,0.00,\"\",0.00,76.00,41.00,214.00,,,,,,\n2015,5,4,\"US\",\"2117\",\"DCA\",\"LGA\",31.00,27.00,0.00,\"\",0.00,65.00,46.00,214.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,4,\"US\",\"2118\",\"BOS\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,77.00,43.00,184.00,,,,,,\n2015,5,4,\"US\",\"2118\",\"LGA\",\"BOS\",10.00,5.00,0.00,\"\",0.00,73.00,43.00,184.00,,,,,,\n2015,5,4,\"US\",\"2121\",\"BOS\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,76.00,42.00,184.00,,,,,,\n2015,5,4,\"US\",\"2121\",\"LGA\",\"BOS\",-1.00,-11.00,0.00,\"\",0.00,68.00,38.00,184.00,,,,,,\n2015,5,4,\"US\",\"2122\",\"LGA\",\"BOS\",-8.00,-19.00,0.00,\"\",0.00,63.00,45.00,184.00,,,,,,\n2015,5,4,\"US\",\"2123\",\"LGA\",\"DCA\",-8.00,-4.00,0.00,\"\",0.00,74.00,41.00,214.00,,,,,,\n2015,5,4,\"US\",\"2125\",\"LGA\",\"DCA\",-7.00,-14.00,0.00,\"\",0.00,77.00,46.00,214.00,,,,,,\n2015,5,4,\"US\",\"2126\",\"BOS\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,78.00,40.00,184.00,,,,,,\n2015,5,4,\"US\",\"2126\",\"LGA\",\"BOS\",-8.00,-12.00,0.00,\"\",0.00,58.00,41.00,184.00,,,,,,\n2015,5,4,\"US\",\"2128\",\"LGA\",\"BOS\",-3.00,-2.00,0.00,\"\",0.00,74.00,39.00,184.00,,,,,,\n2015,5,4,\"US\",\"2131\",\"BOS\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,73.00,45.00,184.00,,,,,,\n2015,5,4,\"US\",\"2131\",\"LGA\",\"BOS\",-8.00,-20.00,0.00,\"\",0.00,60.00,41.00,184.00,,,,,,\n2015,5,4,\"US\",\"2133\",\"DCA\",\"LGA\",-3.00,-8.00,0.00,\"\",0.00,85.00,44.00,214.00,,,,,,\n2015,5,4,\"US\",\"2133\",\"LGA\",\"DCA\",-8.00,-15.00,0.00,\"\",0.00,70.00,42.00,214.00,,,,,,\n2015,5,4,\"US\",\"2135\",\"DCA\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,79.00,46.00,214.00,,,,,,\n2015,5,4,\"US\",\"2135\",\"LGA\",\"DCA\",-5.00,-14.00,0.00,\"\",0.00,66.00,45.00,214.00,,,,,,\n2015,5,4,\"US\",\"2136\",\"BOS\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,73.00,44.00,184.00,,,,,,\n2015,5,4,\"US\",\"2136\",\"LGA\",\"BOS\",-7.00,-13.00,0.00,\"\",0.00,72.00,37.00,184.00,,,,,,\n2015,5,4,\"US\",\"2137\",\"DCA\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,61.00,43.00,214.00,,,,,,\n2015,5,4,\"US\",\"2137\",\"LGA\",\"DCA\",-8.00,-32.00,0.00,\"\",0.00,61.00,42.00,214.00,,,,,,\n2015,5,4,\"US\",\"2141\",\"BOS\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,73.00,43.00,184.00,,,,,,\n2015,5,4,\"US\",\"2141\",\"LGA\",\"BOS\",1.00,-10.00,0.00,\"\",0.00,66.00,44.00,184.00,,,,,,\n2015,5,4,\"US\",\"2143\",\"DCA\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,72.00,48.00,214.00,,,,,,\n2015,5,4,\"US\",\"2143\",\"LGA\",\"DCA\",-9.00,-24.00,0.00,\"\",0.00,66.00,47.00,214.00,,,,,,\n2015,5,4,\"US\",\"2144\",\"DCA\",\"LGA\",-7.00,-1.00,0.00,\"\",0.00,85.00,44.00,214.00,,,,,,\n2015,5,4,\"US\",\"2144\",\"LGA\",\"DCA\",-6.00,-16.00,0.00,\"\",0.00,72.00,41.00,214.00,,,,,,\n2015,5,4,\"US\",\"2145\",\"DCA\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,72.00,40.00,214.00,,,,,,\n2015,5,4,\"US\",\"2145\",\"LGA\",\"DCA\",-5.00,-19.00,0.00,\"\",0.00,69.00,47.00,214.00,,,,,,\n2015,5,4,\"US\",\"2146\",\"BOS\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,64.00,44.00,184.00,,,,,,\n2015,5,4,\"US\",\"2146\",\"LGA\",\"BOS\",-3.00,-11.00,0.00,\"\",0.00,60.00,40.00,184.00,,,,,,\n2015,5,4,\"US\",\"2147\",\"DCA\",\"LGA\",-6.00,-26.00,0.00,\"\",0.00,68.00,45.00,214.00,,,,,,\n2015,5,4,\"US\",\"2147\",\"LGA\",\"DCA\",-9.00,-25.00,0.00,\"\",0.00,66.00,42.00,214.00,,,,,,\n2015,5,4,\"US\",\"2148\",\"BOS\",\"LGA\",-7.00,-5.00,0.00,\"\",0.00,78.00,45.00,184.00,,,,,,\n2015,5,4,\"US\",\"2151\",\"LGA\",\"BOS\",-6.00,-16.00,0.00,\"\",0.00,58.00,37.00,184.00,,,,,,\n2015,5,4,\"US\",\"2152\",\"BOS\",\"LGA\",-2.00,-9.00,0.00,\"\",0.00,74.00,43.00,184.00,,,,,,\n2015,5,4,\"US\",\"2152\",\"LGA\",\"BOS\",-6.00,-7.00,0.00,\"\",0.00,67.00,44.00,184.00,,,,,,\n2015,5,4,\"US\",\"2153\",\"DCA\",\"LGA\",-3.00,-28.00,0.00,\"\",0.00,64.00,40.00,214.00,,,,,,\n2015,5,4,\"US\",\"2153\",\"LGA\",\"DCA\",4.00,-1.00,0.00,\"\",0.00,75.00,44.00,214.00,,,,,,\n2015,5,4,\"US\",\"2154\",\"DCA\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,73.00,40.00,214.00,,,,,,\n2015,5,4,\"US\",\"2154\",\"LGA\",\"DCA\",-6.00,-11.00,0.00,\"\",0.00,71.00,50.00,214.00,,,,,,\n2015,5,4,\"US\",\"2155\",\"DCA\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,91.00,41.00,214.00,,,,,,\n2015,5,4,\"US\",\"2156\",\"BOS\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,78.00,42.00,184.00,,,,,,\n2015,5,4,\"US\",\"2156\",\"LGA\",\"BOS\",-5.00,-14.00,0.00,\"\",0.00,67.00,41.00,184.00,,,,,,\n2015,5,4,\"US\",\"2157\",\"DCA\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,74.00,44.00,214.00,,,,,,\n2015,5,4,\"US\",\"2157\",\"LGA\",\"DCA\",55.00,40.00,0.00,\"\",0.00,67.00,42.00,214.00,0.00,0.00,0.00,0.00,40.00,\n2015,5,4,\"US\",\"2158\",\"BOS\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,69.00,43.00,184.00,,,,,,\n2015,5,4,\"US\",\"2158\",\"LGA\",\"BOS\",-7.00,-12.00,0.00,\"\",0.00,59.00,40.00,184.00,,,,,,\n2015,5,4,\"US\",\"2162\",\"BOS\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,71.00,44.00,184.00,,,,,,\n2015,5,4,\"US\",\"2162\",\"LGA\",\"BOS\",-6.00,-17.00,0.00,\"\",0.00,61.00,39.00,184.00,,,,,,\n2015,5,4,\"US\",\"2163\",\"DCA\",\"LGA\",-6.00,-22.00,0.00,\"\",0.00,67.00,40.00,214.00,,,,,,\n2015,5,4,\"US\",\"2164\",\"DCA\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,83.00,43.00,214.00,,,,,,\n2015,5,4,\"US\",\"2164\",\"LGA\",\"DCA\",-7.00,-26.00,0.00,\"\",0.00,64.00,44.00,214.00,,,,,,\n2015,5,4,\"US\",\"2165\",\"BOS\",\"LGA\",-5.00,6.00,0.00,\"\",0.00,87.00,41.00,184.00,,,,,,\n2015,5,4,\"US\",\"2167\",\"DCA\",\"LGA\",36.00,40.00,0.00,\"\",0.00,90.00,45.00,214.00,4.00,0.00,4.00,0.00,32.00,\n2015,5,4,\"US\",\"2167\",\"LGA\",\"DCA\",36.00,40.00,0.00,\"\",0.00,86.00,46.00,214.00,0.00,0.00,4.00,0.00,36.00,\n2015,5,4,\"US\",\"2168\",\"BOS\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,74.00,42.00,184.00,,,,,,\n2015,5,4,\"US\",\"2168\",\"LGA\",\"BOS\",-8.00,-12.00,0.00,\"\",0.00,67.00,39.00,184.00,,,,,,\n2015,5,4,\"US\",\"2171\",\"BOS\",\"LGA\",-7.00,-6.00,0.00,\"\",0.00,81.00,44.00,184.00,,,,,,\n2015,5,4,\"US\",\"2172\",\"BOS\",\"LGA\",-7.00,-26.00,0.00,\"\",0.00,62.00,42.00,184.00,,,,,,\n2015,5,4,\"US\",\"2172\",\"LGA\",\"BOS\",-5.00,-4.00,0.00,\"\",0.00,74.00,41.00,184.00,,,,,,\n2015,5,4,\"US\",\"2174\",\"DCA\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,79.00,49.00,214.00,,,,,,\n2015,5,4,\"US\",\"2174\",\"LGA\",\"DCA\",-1.00,-9.00,0.00,\"\",0.00,71.00,43.00,214.00,,,,,,\n2015,5,5,\"US\",\"413\",\"JFK\",\"CLT\",-7.00,-17.00,0.00,\"\",0.00,106.00,79.00,541.00,,,,,,\n2015,5,5,\"US\",\"425\",\"JFK\",\"CLT\",-4.00,-29.00,0.00,\"\",0.00,103.00,79.00,541.00,,,,,,\n2015,5,5,\"US\",\"425\",\"PHX\",\"JFK\",-7.00,-14.00,0.00,\"\",0.00,296.00,269.00,2153.00,,,,,,\n2015,5,5,\"US\",\"466\",\"ALB\",\"CLT\",2.00,-26.00,0.00,\"\",0.00,114.00,93.00,646.00,,,,,,\n2015,5,5,\"US\",\"622\",\"PHX\",\"JFK\",13.00,12.00,0.00,\"\",0.00,289.00,266.00,2153.00,,,,,,\n2015,5,5,\"US\",\"632\",\"PHX\",\"JFK\",-4.00,-21.00,0.00,\"\",0.00,268.00,255.00,2153.00,,,,,,\n2015,5,5,\"US\",\"639\",\"CLT\",\"JFK\",4.00,14.00,0.00,\"\",0.00,126.00,82.00,541.00,,,,,,\n2015,5,5,\"US\",\"639\",\"JFK\",\"PHX\",-2.00,-40.00,0.00,\"\",0.00,296.00,275.00,2153.00,,,,,,\n2015,5,5,\"US\",\"654\",\"JFK\",\"PHX\",65.00,62.00,0.00,\"\",0.00,321.00,289.00,2153.00,62.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"US\",\"756\",\"BUF\",\"CLT\",-7.00,-16.00,0.00,\"\",0.00,102.00,82.00,546.00,,,,,,\n2015,5,5,\"US\",\"821\",\"ROC\",\"CLT\",-5.00,-15.00,0.00,\"\",0.00,112.00,84.00,573.00,,,,,,\n2015,5,5,\"US\",\"826\",\"LGA\",\"CLT\",-6.00,-20.00,0.00,\"\",0.00,103.00,78.00,544.00,,,,,,\n2015,5,5,\"US\",\"852\",\"BUF\",\"CLT\",-6.00,-6.00,0.00,\"\",0.00,109.00,79.00,546.00,,,,,,\n2015,5,5,\"US\",\"853\",\"CLT\",\"BUF\",-6.00,-17.00,0.00,\"\",0.00,94.00,79.00,546.00,,,,,,\n2015,5,5,\"US\",\"873\",\"JFK\",\"CLT\",-2.00,-24.00,0.00,\"\",0.00,102.00,78.00,541.00,,,,,,\n2015,5,5,\"US\",\"890\",\"LGA\",\"CLT\",-6.00,-26.00,0.00,\"\",0.00,105.00,80.00,544.00,,,,,,\n2015,5,5,\"US\",\"896\",\"CLT\",\"ROC\",65.00,56.00,0.00,\"\",0.00,95.00,78.00,573.00,56.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"US\",\"1740\",\"CLT\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,108.00,84.00,544.00,,,,,,\n2015,5,6,\"US\",\"821\",\"ROC\",\"CLT\",0.00,-12.00,0.00,\"\",0.00,110.00,86.00,573.00,,,,,,\n2015,5,6,\"US\",\"826\",\"LGA\",\"CLT\",-6.00,-3.00,0.00,\"\",0.00,120.00,87.00,544.00,,,,,,\n2015,5,6,\"US\",\"852\",\"BUF\",\"CLT\",-9.00,-20.00,0.00,\"\",0.00,98.00,81.00,546.00,,,,,,\n2015,5,6,\"US\",\"853\",\"CLT\",\"BUF\",-8.00,-12.00,0.00,\"\",0.00,101.00,78.00,546.00,,,,,,\n2015,5,6,\"US\",\"873\",\"JFK\",\"CLT\",-6.00,-23.00,0.00,\"\",0.00,107.00,77.00,541.00,,,,,,\n2015,5,6,\"US\",\"890\",\"LGA\",\"CLT\",-6.00,-4.00,0.00,\"\",0.00,127.00,75.00,544.00,,,,,,\n2015,5,6,\"US\",\"896\",\"CLT\",\"ROC\",-8.00,-15.00,0.00,\"\",0.00,97.00,78.00,573.00,,,,,,\n2015,5,6,\"US\",\"1740\",\"CLT\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,99.00,82.00,544.00,,,,,,\n2015,5,6,\"US\",\"1750\",\"ALB\",\"CLT\",-9.00,-3.00,0.00,\"\",0.00,137.00,100.00,646.00,,,,,,\n2015,5,6,\"US\",\"1781\",\"LGA\",\"CLT\",-3.00,-1.00,0.00,\"\",0.00,127.00,86.00,544.00,,,,,,\n2015,5,6,\"US\",\"1810\",\"LGA\",\"CLT\",-6.00,9.00,0.00,\"\",0.00,137.00,80.00,544.00,,,,,,\n2015,5,6,\"US\",\"1815\",\"LGA\",\"CLT\",-9.00,-10.00,0.00,\"\",0.00,121.00,78.00,544.00,,,,,,\n2015,5,6,\"US\",\"1830\",\"CLT\",\"JFK\",-5.00,-11.00,0.00,\"\",0.00,101.00,77.00,541.00,,,,,,\n2015,5,6,\"US\",\"1831\",\"SYR\",\"CLT\",-7.00,-8.00,0.00,\"\",0.00,127.00,93.00,603.00,,,,,,\n2015,5,6,\"US\",\"1843\",\"LGA\",\"CLT\",2.00,6.00,0.00,\"\",0.00,123.00,79.00,544.00,,,,,,\n2015,5,6,\"US\",\"1849\",\"LGA\",\"CLT\",-1.00,-3.00,0.00,\"\",0.00,131.00,80.00,544.00,,,,,,\n2015,5,6,\"US\",\"1851\",\"LGA\",\"CLT\",-8.00,11.00,0.00,\"\",0.00,142.00,78.00,544.00,,,,,,\n2015,5,6,\"US\",\"1885\",\"CLT\",\"BUF\",10.00,16.00,0.00,\"\",0.00,107.00,80.00,546.00,5.00,0.00,6.00,0.00,5.00,\n2015,5,6,\"US\",\"1898\",\"CLT\",\"JFK\",59.00,62.00,0.00,\"\",0.00,110.00,77.00,541.00,0.00,0.00,3.00,0.00,59.00,\n2015,5,6,\"US\",\"1908\",\"LGA\",\"CLT\",-2.00,-3.00,0.00,\"\",0.00,121.00,84.00,544.00,,,,,,\n2015,5,6,\"US\",\"1910\",\"CLT\",\"LGA\",8.00,-6.00,0.00,\"\",0.00,100.00,74.00,544.00,,,,,,\n2015,5,6,\"US\",\"1916\",\"SYR\",\"CLT\",-9.00,-20.00,0.00,\"\",0.00,111.00,92.00,603.00,,,,,,\n2015,5,6,\"US\",\"1919\",\"JFK\",\"CLT\",-4.00,-4.00,0.00,\"\",0.00,121.00,78.00,541.00,,,,,,\n2015,5,18,\"OO\",\"5190\",\"ORD\",\"BUF\",8.00,4.00,0.00,\"\",0.00,92.00,71.00,473.00,,,,,,\n2015,5,27,\"OO\",\"5190\",\"ORD\",\"BUF\",1.00,-10.00,0.00,\"\",0.00,85.00,68.00,473.00,,,,,,\n2015,5,19,\"OO\",\"5190\",\"ORD\",\"BUF\",-4.00,5.00,0.00,\"\",0.00,105.00,70.00,473.00,,,,,,\n2015,5,20,\"OO\",\"5190\",\"ORD\",\"BUF\",-1.00,-8.00,0.00,\"\",0.00,89.00,66.00,473.00,,,,,,\n2015,5,26,\"OO\",\"5190\",\"ORD\",\"BUF\",30.00,17.00,0.00,\"\",0.00,83.00,66.00,473.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"OO\",\"5190\",\"ORD\",\"BUF\",-1.00,-7.00,0.00,\"\",0.00,90.00,71.00,473.00,,,,,,\n2015,5,21,\"OO\",\"5190\",\"ORD\",\"BUF\",-1.00,-13.00,0.00,\"\",0.00,84.00,65.00,473.00,,,,,,\n2015,5,5,\"US\",\"1750\",\"ALB\",\"CLT\",2.00,-18.00,0.00,\"\",0.00,111.00,95.00,646.00,,,,,,\n2015,5,5,\"US\",\"1781\",\"LGA\",\"CLT\",-6.00,-6.00,0.00,\"\",0.00,125.00,80.00,544.00,,,,,,\n2015,5,5,\"US\",\"1810\",\"LGA\",\"CLT\",-10.00,-14.00,0.00,\"\",0.00,118.00,86.00,544.00,,,,,,\n2015,5,5,\"US\",\"1815\",\"LGA\",\"CLT\",-4.00,-21.00,0.00,\"\",0.00,105.00,79.00,544.00,,,,,,\n2015,5,5,\"US\",\"1830\",\"CLT\",\"JFK\",2.00,-7.00,0.00,\"\",0.00,98.00,81.00,541.00,,,,,,\n2015,5,5,\"US\",\"1831\",\"SYR\",\"CLT\",-4.00,-26.00,0.00,\"\",0.00,106.00,89.00,603.00,,,,,,\n2015,5,5,\"US\",\"1843\",\"LGA\",\"CLT\",-6.00,-28.00,0.00,\"\",0.00,97.00,78.00,544.00,,,,,,\n2015,5,5,\"US\",\"1849\",\"LGA\",\"CLT\",-7.00,-38.00,0.00,\"\",0.00,102.00,77.00,544.00,,,,,,\n2015,5,5,\"US\",\"1851\",\"LGA\",\"CLT\",18.00,1.00,0.00,\"\",0.00,106.00,81.00,544.00,,,,,,\n2015,5,5,\"US\",\"1885\",\"CLT\",\"BUF\",-1.00,8.00,0.00,\"\",0.00,110.00,80.00,546.00,,,,,,\n2015,5,5,\"US\",\"1898\",\"CLT\",\"JFK\",11.00,35.00,0.00,\"\",0.00,131.00,80.00,541.00,0.00,0.00,24.00,0.00,11.00,\n2015,5,5,\"US\",\"1908\",\"LGA\",\"CLT\",-6.00,-12.00,0.00,\"\",0.00,116.00,79.00,544.00,,,,,,\n2015,5,5,\"US\",\"1910\",\"CLT\",\"LGA\",1.00,-7.00,0.00,\"\",0.00,106.00,80.00,544.00,,,,,,\n2015,5,5,\"US\",\"1916\",\"SYR\",\"CLT\",-2.00,-4.00,0.00,\"\",0.00,120.00,97.00,603.00,,,,,,\n2015,5,5,\"US\",\"1919\",\"JFK\",\"CLT\",-3.00,-8.00,0.00,\"\",0.00,116.00,77.00,541.00,,,,,,\n2015,5,5,\"US\",\"1940\",\"CLT\",\"ALB\",-6.00,-1.00,0.00,\"\",0.00,120.00,88.00,646.00,,,,,,\n2015,5,5,\"US\",\"1942\",\"CLT\",\"BUF\",-6.00,-7.00,0.00,\"\",0.00,99.00,84.00,546.00,,,,,,\n2015,5,5,\"US\",\"1951\",\"LGA\",\"CLT\",-7.00,-20.00,0.00,\"\",0.00,109.00,80.00,544.00,,,,,,\n2015,5,5,\"US\",\"1952\",\"CLT\",\"BUF\",-1.00,7.00,0.00,\"\",0.00,103.00,78.00,546.00,,,,,,\n2015,5,5,\"US\",\"1954\",\"CLT\",\"LGA\",-2.00,2.00,0.00,\"\",0.00,112.00,79.00,544.00,,,,,,\n2015,5,5,\"US\",\"1971\",\"CLT\",\"SYR\",-4.00,6.00,0.00,\"\",0.00,112.00,85.00,603.00,,,,,,\n2015,5,5,\"US\",\"1981\",\"CLT\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,101.00,74.00,544.00,,,,,,\n2015,5,5,\"US\",\"1983\",\"BUF\",\"CLT\",-5.00,-16.00,0.00,\"\",0.00,101.00,83.00,546.00,,,,,,\n2015,5,5,\"US\",\"1988\",\"CLT\",\"ALB\",-4.00,2.00,0.00,\"\",0.00,131.00,98.00,646.00,,,,,,\n2015,5,5,\"US\",\"2017\",\"CLT\",\"JFK\",-2.00,-19.00,0.00,\"\",0.00,93.00,78.00,541.00,,,,,,\n2015,5,5,\"US\",\"2036\",\"CLT\",\"SYR\",-4.00,4.00,0.00,\"\",0.00,118.00,86.00,603.00,,,,,,\n2015,5,5,\"US\",\"2038\",\"BUF\",\"CLT\",-5.00,-11.00,0.00,\"\",0.00,102.00,83.00,546.00,,,,,,\n2015,5,5,\"US\",\"2042\",\"CLT\",\"JFK\",-2.00,3.00,0.00,\"\",0.00,111.00,79.00,541.00,,,,,,\n2015,5,5,\"US\",\"2050\",\"CLT\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,111.00,83.00,544.00,,,,,,\n2015,5,5,\"US\",\"2060\",\"CLT\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,106.00,80.00,544.00,,,,,,\n2015,5,5,\"US\",\"2062\",\"CLT\",\"LGA\",-7.00,10.00,0.00,\"\",0.00,130.00,94.00,544.00,,,,,,\n2015,5,5,\"US\",\"2064\",\"CLT\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,104.00,80.00,544.00,,,,,,\n2015,5,5,\"US\",\"2066\",\"CLT\",\"LGA\",-2.00,3.00,0.00,\"\",0.00,111.00,80.00,544.00,,,,,,\n2015,5,5,\"US\",\"2068\",\"CLT\",\"LGA\",36.00,31.00,0.00,\"\",0.00,102.00,76.00,544.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"US\",\"2069\",\"JFK\",\"CLT\",-2.00,-26.00,0.00,\"\",0.00,97.00,76.00,541.00,,,,,,\n2015,5,5,\"US\",\"2115\",\"LGA\",\"DCA\",-6.00,6.00,0.00,\"\",0.00,75.00,40.00,214.00,,,,,,\n2015,5,5,\"US\",\"2117\",\"DCA\",\"LGA\",54.00,39.00,0.00,\"\",0.00,54.00,39.00,214.00,7.00,0.00,0.00,0.00,32.00,\n2015,5,5,\"US\",\"2118\",\"BOS\",\"LGA\",-6.00,-22.00,0.00,\"\",0.00,65.00,44.00,184.00,,,,,,\n2015,5,5,\"US\",\"2118\",\"LGA\",\"BOS\",-3.00,-15.00,0.00,\"\",0.00,66.00,32.00,184.00,,,,,,\n2015,5,5,\"US\",\"2121\",\"BOS\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,70.00,38.00,184.00,,,,,,\n2015,5,5,\"US\",\"2121\",\"LGA\",\"BOS\",-6.00,-22.00,0.00,\"\",0.00,62.00,39.00,184.00,,,,,,\n2015,5,5,\"US\",\"2122\",\"LGA\",\"BOS\",-6.00,-24.00,0.00,\"\",0.00,56.00,33.00,184.00,,,,,,\n2015,5,5,\"US\",\"2123\",\"LGA\",\"DCA\",-7.00,-5.00,0.00,\"\",0.00,72.00,40.00,214.00,,,,,,\n2015,5,5,\"US\",\"2125\",\"LGA\",\"DCA\",-8.00,-23.00,0.00,\"\",0.00,69.00,44.00,214.00,,,,,,\n2015,5,5,\"US\",\"2126\",\"BOS\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,76.00,47.00,184.00,,,,,,\n2015,5,5,\"US\",\"2126\",\"LGA\",\"BOS\",-9.00,-10.00,0.00,\"\",0.00,61.00,38.00,184.00,,,,,,\n2015,5,5,\"US\",\"2128\",\"LGA\",\"BOS\",-6.00,-19.00,0.00,\"\",0.00,60.00,35.00,184.00,,,,,,\n2015,5,5,\"US\",\"2131\",\"BOS\",\"LGA\",-9.00,-19.00,0.00,\"\",0.00,71.00,44.00,184.00,,,,,,\n2015,5,5,\"US\",\"2131\",\"LGA\",\"BOS\",-8.00,-19.00,0.00,\"\",0.00,61.00,38.00,184.00,,,,,,\n2015,5,5,\"US\",\"2133\",\"DCA\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,89.00,47.00,214.00,,,,,,\n2015,5,5,\"US\",\"2133\",\"LGA\",\"DCA\",-6.00,-25.00,0.00,\"\",0.00,58.00,41.00,214.00,,,,,,\n2015,5,5,\"US\",\"2135\",\"DCA\",\"LGA\",-7.00,-10.00,0.00,\"\",0.00,73.00,45.00,214.00,,,,,,\n2015,5,5,\"US\",\"2135\",\"LGA\",\"DCA\",-5.00,-11.00,0.00,\"\",0.00,69.00,44.00,214.00,,,,,,\n2015,5,5,\"US\",\"2136\",\"BOS\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,63.00,36.00,184.00,,,,,,\n2015,5,5,\"US\",\"2136\",\"LGA\",\"BOS\",0.00,-31.00,0.00,\"\",0.00,47.00,37.00,184.00,,,,,,\n2015,5,5,\"US\",\"2137\",\"DCA\",\"LGA\",34.00,23.00,0.00,\"\",0.00,57.00,41.00,214.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"US\",\"2137\",\"LGA\",\"DCA\",-6.00,-27.00,0.00,\"\",0.00,64.00,41.00,214.00,,,,,,\n2015,5,5,\"US\",\"2141\",\"BOS\",\"LGA\",-9.00,-14.00,0.00,\"\",0.00,79.00,43.00,184.00,,,,,,\n2015,5,5,\"US\",\"2141\",\"LGA\",\"BOS\",2.00,-19.00,0.00,\"\",0.00,56.00,31.00,184.00,,,,,,\n2015,5,5,\"US\",\"2143\",\"DCA\",\"LGA\",-4.00,-25.00,0.00,\"\",0.00,68.00,42.00,214.00,,,,,,\n2015,5,5,\"US\",\"2143\",\"LGA\",\"DCA\",-8.00,-15.00,0.00,\"\",0.00,74.00,45.00,214.00,,,,,,\n2015,5,5,\"US\",\"2144\",\"DCA\",\"LGA\",-8.00,-15.00,0.00,\"\",0.00,72.00,41.00,214.00,,,,,,\n2015,5,5,\"US\",\"2144\",\"LGA\",\"DCA\",-9.00,-17.00,0.00,\"\",0.00,74.00,50.00,214.00,,,,,,\n2015,5,5,\"US\",\"2145\",\"DCA\",\"LGA\",-7.00,-7.00,0.00,\"\",0.00,88.00,46.00,214.00,,,,,,\n2015,5,5,\"US\",\"2145\",\"LGA\",\"DCA\",-3.00,39.00,0.00,\"\",0.00,125.00,45.00,214.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,5,\"US\",\"2146\",\"BOS\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,72.00,44.00,184.00,,,,,,\n2015,5,5,\"US\",\"2146\",\"LGA\",\"BOS\",0.00,-9.00,0.00,\"\",0.00,59.00,31.00,184.00,,,,,,\n2015,5,5,\"US\",\"2147\",\"DCA\",\"LGA\",-5.00,-26.00,0.00,\"\",0.00,67.00,43.00,214.00,,,,,,\n2015,5,5,\"US\",\"2147\",\"LGA\",\"DCA\",-11.00,-29.00,0.00,\"\",0.00,64.00,44.00,214.00,,,,,,\n2015,5,5,\"US\",\"2148\",\"BOS\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,68.00,44.00,184.00,,,,,,\n2015,5,5,\"US\",\"2151\",\"LGA\",\"BOS\",-7.00,-15.00,0.00,\"\",0.00,60.00,32.00,184.00,,,,,,\n2015,5,5,\"US\",\"2152\",\"BOS\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,84.00,39.00,184.00,,,,,,\n2015,5,5,\"US\",\"2152\",\"LGA\",\"BOS\",-6.00,-16.00,0.00,\"\",0.00,58.00,41.00,184.00,,,,,,\n2015,5,5,\"US\",\"2153\",\"DCA\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,70.00,40.00,214.00,,,,,,\n2015,5,5,\"US\",\"2153\",\"LGA\",\"DCA\",-9.00,-20.00,0.00,\"\",0.00,69.00,45.00,214.00,,,,,,\n2015,5,5,\"US\",\"2154\",\"DCA\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,63.00,38.00,214.00,,,,,,\n2015,5,5,\"US\",\"2154\",\"LGA\",\"DCA\",-3.00,-8.00,0.00,\"\",0.00,71.00,43.00,214.00,,,,,,\n2015,5,5,\"US\",\"2155\",\"DCA\",\"LGA\",38.00,3.00,0.00,\"\",0.00,60.00,42.00,214.00,,,,,,\n2015,5,5,\"US\",\"2156\",\"BOS\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,74.00,41.00,184.00,,,,,,\n2015,5,5,\"US\",\"2156\",\"LGA\",\"BOS\",-4.00,-21.00,0.00,\"\",0.00,59.00,37.00,184.00,,,,,,\n2015,5,5,\"US\",\"2157\",\"DCA\",\"LGA\",15.00,-8.00,0.00,\"\",0.00,65.00,51.00,214.00,,,,,,\n2015,5,5,\"US\",\"2157\",\"LGA\",\"DCA\",-5.00,-18.00,0.00,\"\",0.00,69.00,46.00,214.00,,,,,,\n2015,5,5,\"US\",\"2158\",\"BOS\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,68.00,37.00,184.00,,,,,,\n2015,5,5,\"US\",\"2158\",\"LGA\",\"BOS\",-6.00,-13.00,0.00,\"\",0.00,57.00,39.00,184.00,,,,,,\n2015,5,5,\"US\",\"2162\",\"BOS\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,70.00,38.00,184.00,,,,,,\n2015,5,5,\"US\",\"2162\",\"LGA\",\"BOS\",-6.00,-19.00,0.00,\"\",0.00,59.00,37.00,184.00,,,,,,\n2015,5,5,\"US\",\"2163\",\"DCA\",\"LGA\",-6.00,-26.00,0.00,\"\",0.00,63.00,38.00,214.00,,,,,,\n2015,5,5,\"US\",\"2164\",\"DCA\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,67.00,45.00,214.00,,,,,,\n2015,5,5,\"US\",\"2164\",\"LGA\",\"DCA\",-7.00,-27.00,0.00,\"\",0.00,63.00,48.00,214.00,,,,,,\n2015,5,5,\"US\",\"2165\",\"BOS\",\"LGA\",-7.00,8.00,0.00,\"\",0.00,91.00,57.00,184.00,,,,,,\n2015,5,5,\"US\",\"2167\",\"DCA\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,73.00,48.00,214.00,,,,,,\n2015,5,5,\"US\",\"2167\",\"LGA\",\"DCA\",-6.00,53.00,0.00,\"\",0.00,141.00,44.00,214.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,5,\"US\",\"2168\",\"BOS\",\"LGA\",9.00,-7.00,0.00,\"\",0.00,65.00,47.00,184.00,,,,,,\n2015,5,5,\"US\",\"2168\",\"LGA\",\"BOS\",-3.00,-8.00,0.00,\"\",0.00,66.00,40.00,184.00,,,,,,\n2015,5,5,\"US\",\"2171\",\"BOS\",\"LGA\",-6.00,-1.00,0.00,\"\",0.00,85.00,45.00,184.00,,,,,,\n2015,5,5,\"US\",\"2172\",\"BOS\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,73.00,42.00,184.00,,,,,,\n2015,5,5,\"US\",\"2172\",\"LGA\",\"BOS\",-5.00,-10.00,0.00,\"\",0.00,68.00,32.00,184.00,,,,,,\n2015,5,5,\"US\",\"2174\",\"DCA\",\"LGA\",-6.00,29.00,0.00,\"\",0.00,125.00,42.00,214.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,5,\"US\",\"2174\",\"LGA\",\"DCA\",18.00,41.00,0.00,\"\",0.00,102.00,49.00,214.00,0.00,0.00,23.00,0.00,18.00,\n2015,5,6,\"US\",\"413\",\"JFK\",\"CLT\",-3.00,-30.00,0.00,\"\",0.00,89.00,75.00,541.00,,,,,,\n2015,5,6,\"US\",\"425\",\"JFK\",\"CLT\",-4.00,13.00,0.00,\"\",0.00,145.00,97.00,541.00,,,,,,\n2015,5,6,\"US\",\"425\",\"PHX\",\"JFK\",4.00,4.00,0.00,\"\",0.00,303.00,278.00,2153.00,,,,,,\n2015,5,6,\"US\",\"426\",\"PHL\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,46.00,27.00,96.00,,,,,,\n2015,5,6,\"US\",\"435\",\"JFK\",\"PHX\",-6.00,-45.00,0.00,\"\",0.00,299.00,276.00,2153.00,,,,,,\n2015,5,6,\"US\",\"438\",\"CLT\",\"ALB\",-3.00,-9.00,0.00,\"\",0.00,109.00,95.00,646.00,,,,,,\n2015,5,6,\"US\",\"466\",\"ALB\",\"CLT\",-8.00,-29.00,0.00,\"\",0.00,121.00,97.00,646.00,,,,,,\n2015,5,6,\"US\",\"622\",\"PHX\",\"JFK\",-3.00,6.00,0.00,\"\",0.00,299.00,268.00,2153.00,,,,,,\n2015,5,6,\"US\",\"1942\",\"CLT\",\"BUF\",-1.00,-6.00,0.00,\"\",0.00,95.00,80.00,546.00,,,,,,\n2015,5,6,\"US\",\"1951\",\"LGA\",\"CLT\",0.00,-16.00,0.00,\"\",0.00,106.00,79.00,544.00,,,,,,\n2015,5,6,\"US\",\"1952\",\"CLT\",\"BUF\",-3.00,3.00,0.00,\"\",0.00,101.00,73.00,546.00,,,,,,\n2015,5,6,\"US\",\"1954\",\"CLT\",\"LGA\",12.00,5.00,0.00,\"\",0.00,101.00,83.00,544.00,,,,,,\n2015,5,6,\"US\",\"1971\",\"CLT\",\"SYR\",-3.00,2.00,0.00,\"\",0.00,107.00,84.00,603.00,,,,,,\n2015,5,6,\"US\",\"1981\",\"CLT\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,102.00,78.00,544.00,,,,,,\n2015,5,6,\"US\",\"1983\",\"BUF\",\"CLT\",-3.00,0.00,0.00,\"\",0.00,115.00,79.00,546.00,,,,,,\n2015,5,6,\"US\",\"1988\",\"CLT\",\"ALB\",-7.00,-16.00,0.00,\"\",0.00,116.00,89.00,646.00,,,,,,\n2015,5,6,\"US\",\"2017\",\"CLT\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,92.00,78.00,541.00,,,,,,\n2015,5,6,\"US\",\"2036\",\"CLT\",\"SYR\",-5.00,-7.00,0.00,\"\",0.00,108.00,88.00,603.00,,,,,,\n2015,5,6,\"US\",\"2038\",\"BUF\",\"CLT\",-2.00,-13.00,0.00,\"\",0.00,97.00,80.00,546.00,,,,,,\n2015,5,6,\"US\",\"2042\",\"CLT\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,99.00,76.00,541.00,,,,,,\n2015,5,6,\"US\",\"2050\",\"CLT\",\"LGA\",5.00,3.00,0.00,\"\",0.00,106.00,77.00,544.00,,,,,,\n2015,5,6,\"US\",\"2060\",\"CLT\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,99.00,77.00,544.00,,,,,,\n2015,5,6,\"US\",\"2062\",\"CLT\",\"LGA\",-9.00,-10.00,0.00,\"\",0.00,112.00,80.00,544.00,,,,,,\n2015,5,6,\"US\",\"2064\",\"CLT\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,98.00,72.00,544.00,,,,,,\n2015,5,6,\"US\",\"2066\",\"CLT\",\"LGA\",-3.00,12.00,0.00,\"\",0.00,121.00,81.00,544.00,,,,,,\n2015,5,6,\"US\",\"2068\",\"CLT\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,96.00,74.00,544.00,,,,,,\n2015,5,6,\"US\",\"2069\",\"JFK\",\"CLT\",-5.00,-11.00,0.00,\"\",0.00,115.00,88.00,541.00,,,,,,\n2015,5,6,\"US\",\"2115\",\"LGA\",\"DCA\",-6.00,-6.00,0.00,\"\",0.00,63.00,42.00,214.00,,,,,,\n2015,5,6,\"US\",\"2117\",\"DCA\",\"LGA\",53.00,43.00,0.00,\"\",0.00,59.00,44.00,214.00,1.00,0.00,0.00,0.00,42.00,\n2015,5,6,\"US\",\"2118\",\"BOS\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,73.00,46.00,184.00,,,,,,\n2015,5,6,\"US\",\"2118\",\"LGA\",\"BOS\",-4.00,6.00,0.00,\"\",0.00,88.00,40.00,184.00,,,,,,\n2015,5,6,\"US\",\"2121\",\"BOS\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,81.00,55.00,184.00,,,,,,\n2015,5,6,\"US\",\"2121\",\"LGA\",\"BOS\",-6.00,1.00,0.00,\"\",0.00,85.00,33.00,184.00,,,,,,\n2015,5,6,\"US\",\"2122\",\"LGA\",\"BOS\",-4.00,11.00,0.00,\"\",0.00,89.00,41.00,184.00,,,,,,\n2015,5,6,\"US\",\"2123\",\"LGA\",\"DCA\",-9.00,10.00,0.00,\"\",0.00,89.00,42.00,214.00,,,,,,\n2015,5,6,\"US\",\"2125\",\"LGA\",\"DCA\",-4.00,8.00,0.00,\"\",0.00,96.00,44.00,214.00,,,,,,\n2015,5,6,\"US\",\"2126\",\"BOS\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,76.00,46.00,184.00,,,,,,\n2015,5,6,\"US\",\"2126\",\"LGA\",\"BOS\",-7.00,-2.00,0.00,\"\",0.00,67.00,43.00,184.00,,,,,,\n2015,5,6,\"US\",\"2128\",\"LGA\",\"BOS\",-7.00,11.00,0.00,\"\",0.00,91.00,45.00,184.00,,,,,,\n2015,5,6,\"US\",\"2131\",\"BOS\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,84.00,52.00,184.00,,,,,,\n2015,5,6,\"US\",\"2131\",\"LGA\",\"BOS\",-6.00,-9.00,0.00,\"\",0.00,69.00,32.00,184.00,,,,,,\n2015,5,6,\"US\",\"2133\",\"DCA\",\"LGA\",-6.00,20.00,0.00,\"\",0.00,116.00,54.00,214.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,6,\"US\",\"2133\",\"LGA\",\"DCA\",11.00,30.00,0.00,\"\",0.00,96.00,46.00,214.00,0.00,0.00,19.00,0.00,11.00,\n2015,5,6,\"US\",\"2135\",\"DCA\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,63.00,39.00,214.00,,,,,,\n2015,5,6,\"US\",\"2135\",\"LGA\",\"DCA\",-6.00,-8.00,0.00,\"\",0.00,73.00,44.00,214.00,,,,,,\n2015,5,6,\"US\",\"2136\",\"BOS\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,67.00,48.00,184.00,,,,,,\n2015,5,6,\"US\",\"2136\",\"LGA\",\"BOS\",-6.00,3.00,0.00,\"\",0.00,87.00,32.00,184.00,,,,,,\n2015,5,6,\"US\",\"2137\",\"DCA\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,54.00,37.00,214.00,,,,,,\n2015,5,6,\"US\",\"2137\",\"LGA\",\"DCA\",-7.00,17.00,0.00,\"\",0.00,109.00,48.00,214.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,6,\"US\",\"2141\",\"BOS\",\"LGA\",45.00,53.00,0.00,\"\",0.00,92.00,42.00,184.00,2.00,0.00,8.00,0.00,43.00,\n2015,5,6,\"US\",\"2141\",\"LGA\",\"BOS\",-7.00,56.00,0.00,\"\",0.00,140.00,39.00,184.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,6,\"US\",\"2143\",\"DCA\",\"LGA\",17.00,-3.00,0.00,\"\",0.00,69.00,40.00,214.00,,,,,,\n2015,5,6,\"US\",\"2143\",\"LGA\",\"DCA\",6.00,-1.00,0.00,\"\",0.00,74.00,48.00,214.00,,,,,,\n2015,5,6,\"US\",\"2144\",\"DCA\",\"LGA\",-9.00,-16.00,0.00,\"\",0.00,72.00,44.00,214.00,,,,,,\n2015,5,6,\"US\",\"2144\",\"LGA\",\"DCA\",-6.00,-7.00,0.00,\"\",0.00,81.00,44.00,214.00,,,,,,\n2015,5,6,\"US\",\"2145\",\"DCA\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,67.00,39.00,214.00,,,,,,\n2015,5,6,\"US\",\"2145\",\"LGA\",\"DCA\",-4.00,43.00,0.00,\"\",0.00,130.00,62.00,214.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,6,\"US\",\"2146\",\"BOS\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,76.00,51.00,184.00,,,,,,\n2015,5,6,\"US\",\"2146\",\"LGA\",\"BOS\",-5.00,-4.00,0.00,\"\",0.00,69.00,33.00,184.00,,,,,,\n2015,5,6,\"US\",\"2147\",\"DCA\",\"LGA\",10.00,14.00,0.00,\"\",0.00,92.00,42.00,214.00,,,,,,\n2015,5,6,\"US\",\"2147\",\"LGA\",\"DCA\",2.00,11.00,0.00,\"\",0.00,91.00,43.00,214.00,,,,,,\n2015,5,6,\"US\",\"2148\",\"BOS\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,70.00,50.00,184.00,,,,,,\n2015,5,6,\"US\",\"2151\",\"LGA\",\"BOS\",37.00,28.00,0.00,\"\",0.00,59.00,41.00,184.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,6,\"US\",\"2152\",\"BOS\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,75.00,49.00,184.00,,,,,,\n2015,5,6,\"US\",\"2152\",\"LGA\",\"BOS\",-8.00,-17.00,0.00,\"\",0.00,59.00,33.00,184.00,,,,,,\n2015,5,6,\"US\",\"2153\",\"DCA\",\"LGA\",-15.00,-10.00,0.00,\"\",0.00,94.00,42.00,214.00,,,,,,\n2015,5,6,\"US\",\"2153\",\"LGA\",\"DCA\",-7.00,41.00,0.00,\"\",0.00,128.00,58.00,214.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,6,\"US\",\"2154\",\"DCA\",\"LGA\",-6.00,-3.00,0.00,\"\",0.00,79.00,41.00,214.00,,,,,,\n2015,5,6,\"US\",\"2154\",\"LGA\",\"DCA\",-6.00,2.00,0.00,\"\",0.00,84.00,52.00,214.00,,,,,,\n2015,5,6,\"US\",\"2155\",\"DCA\",\"LGA\",31.00,12.00,0.00,\"\",0.00,76.00,43.00,214.00,,,,,,\n2015,5,6,\"US\",\"2156\",\"BOS\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,72.00,44.00,184.00,,,,,,\n2015,5,6,\"US\",\"2156\",\"LGA\",\"BOS\",-3.00,12.00,0.00,\"\",0.00,91.00,39.00,184.00,,,,,,\n2015,5,6,\"US\",\"2157\",\"DCA\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,85.00,37.00,214.00,,,,,,\n2015,5,6,\"US\",\"2157\",\"LGA\",\"DCA\",-5.00,85.00,0.00,\"\",0.00,172.00,62.00,214.00,0.00,0.00,85.00,0.00,0.00,\n2015,5,6,\"US\",\"2158\",\"BOS\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,68.00,49.00,184.00,,,,,,\n2015,5,6,\"US\",\"2158\",\"LGA\",\"BOS\",-5.00,9.00,0.00,\"\",0.00,78.00,35.00,184.00,,,,,,\n2015,5,6,\"US\",\"2162\",\"BOS\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,72.00,52.00,184.00,,,,,,\n2015,5,6,\"US\",\"2162\",\"LGA\",\"BOS\",-3.00,16.00,0.00,\"\",0.00,91.00,34.00,184.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,6,\"US\",\"2163\",\"DCA\",\"LGA\",-9.00,-19.00,0.00,\"\",0.00,73.00,41.00,214.00,,,,,,\n2015,5,6,\"US\",\"2164\",\"DCA\",\"LGA\",3.00,-11.00,0.00,\"\",0.00,73.00,40.00,214.00,,,,,,\n2015,5,6,\"US\",\"2164\",\"LGA\",\"DCA\",-2.00,36.00,0.00,\"\",0.00,121.00,70.00,214.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,6,\"US\",\"2165\",\"BOS\",\"LGA\",-10.00,-8.00,0.00,\"\",0.00,78.00,56.00,184.00,,,,,,\n2015,5,6,\"US\",\"2167\",\"DCA\",\"LGA\",69.00,66.00,0.00,\"\",0.00,83.00,40.00,214.00,0.00,0.00,0.00,0.00,66.00,\n2015,5,6,\"US\",\"2167\",\"LGA\",\"DCA\",52.00,60.00,0.00,\"\",0.00,90.00,57.00,214.00,0.00,0.00,8.00,0.00,52.00,\n2015,5,6,\"US\",\"2168\",\"BOS\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,79.00,49.00,184.00,,,,,,\n2015,5,6,\"US\",\"2168\",\"LGA\",\"BOS\",-4.00,14.00,0.00,\"\",0.00,89.00,35.00,184.00,,,,,,\n2015,5,6,\"US\",\"2171\",\"BOS\",\"LGA\",-6.00,-1.00,0.00,\"\",0.00,85.00,59.00,184.00,,,,,,\n2015,5,6,\"US\",\"2172\",\"BOS\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,74.00,50.00,184.00,,,,,,\n2015,5,6,\"US\",\"2172\",\"LGA\",\"BOS\",-6.00,-11.00,0.00,\"\",0.00,68.00,37.00,184.00,,,,,,\n2015,5,6,\"US\",\"2174\",\"DCA\",\"LGA\",27.00,27.00,0.00,\"\",0.00,90.00,43.00,214.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,6,\"US\",\"2174\",\"LGA\",\"DCA\",16.00,16.00,0.00,\"\",0.00,79.00,56.00,214.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"US\",\"413\",\"JFK\",\"CLT\",-3.00,-3.00,0.00,\"\",0.00,116.00,78.00,541.00,,,,,,\n2015,5,7,\"US\",\"425\",\"JFK\",\"CLT\",-4.00,-21.00,0.00,\"\",0.00,111.00,78.00,541.00,,,,,,\n2015,5,7,\"US\",\"425\",\"PHX\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,301.00,252.00,2153.00,,,,,,\n2015,5,7,\"US\",\"433\",\"JFK\",\"PHX\",-6.00,-14.00,0.00,\"\",0.00,330.00,285.00,2153.00,,,,,,\n2015,5,7,\"US\",\"468\",\"LGA\",\"CLT\",-2.00,-11.00,0.00,\"\",0.00,110.00,83.00,544.00,,,,,,\n2015,5,7,\"US\",\"622\",\"PHX\",\"JFK\",-5.00,-6.00,0.00,\"\",0.00,289.00,265.00,2153.00,,,,,,\n2015,5,7,\"US\",\"632\",\"PHX\",\"JFK\",27.00,,0.00,\"\",1.00,,,2153.00,,,,,,\n2015,5,7,\"US\",\"639\",\"CLT\",\"JFK\",58.00,57.00,0.00,\"\",0.00,115.00,84.00,541.00,50.00,0.00,0.00,0.00,7.00,\n2015,5,7,\"US\",\"639\",\"JFK\",\"PHX\",46.00,98.00,0.00,\"\",0.00,386.00,328.00,2153.00,0.00,0.00,52.00,0.00,46.00,\n2015,5,7,\"US\",\"654\",\"JFK\",\"PHX\",-5.00,-14.00,0.00,\"\",0.00,315.00,296.00,2153.00,,,,,,\n2015,5,8,\"US\",\"622\",\"PHX\",\"JFK\",3.00,-3.00,0.00,\"\",0.00,284.00,262.00,2153.00,,,,,,\n2015,5,8,\"US\",\"632\",\"PHX\",\"JFK\",4.00,3.00,0.00,\"\",0.00,284.00,252.00,2153.00,,,,,,\n2015,5,8,\"US\",\"639\",\"CLT\",\"JFK\",7.00,14.00,0.00,\"\",0.00,123.00,86.00,541.00,,,,,,\n2015,5,8,\"US\",\"639\",\"JFK\",\"PHX\",4.00,17.00,0.00,\"\",0.00,347.00,298.00,2153.00,0.00,0.00,13.00,0.00,4.00,\n2015,5,8,\"US\",\"654\",\"JFK\",\"PHX\",-5.00,-11.00,0.00,\"\",0.00,318.00,291.00,2153.00,,,,,,\n2015,5,8,\"US\",\"756\",\"BUF\",\"CLT\",8.00,9.00,0.00,\"\",0.00,112.00,92.00,546.00,,,,,,\n2015,5,8,\"US\",\"809\",\"PHL\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,54.00,31.00,96.00,,,,,,\n2015,5,8,\"US\",\"821\",\"ROC\",\"CLT\",-4.00,-6.00,0.00,\"\",0.00,120.00,93.00,573.00,,,,,,\n2015,5,8,\"US\",\"826\",\"LGA\",\"CLT\",0.00,-6.00,0.00,\"\",0.00,111.00,81.00,544.00,,,,,,\n2015,5,8,\"US\",\"853\",\"CLT\",\"BUF\",-6.00,-6.00,0.00,\"\",0.00,105.00,78.00,546.00,,,,,,\n2015,5,8,\"US\",\"873\",\"JFK\",\"CLT\",13.00,9.00,0.00,\"\",0.00,120.00,86.00,541.00,,,,,,\n2015,5,8,\"US\",\"876\",\"SYR\",\"CLT\",-5.00,-5.00,0.00,\"\",0.00,128.00,105.00,603.00,,,,,,\n2015,5,8,\"US\",\"890\",\"LGA\",\"CLT\",-2.00,-20.00,0.00,\"\",0.00,107.00,80.00,544.00,,,,,,\n2015,5,8,\"US\",\"896\",\"CLT\",\"ROC\",23.00,26.00,0.00,\"\",0.00,105.00,81.00,573.00,22.00,0.00,3.00,0.00,1.00,\n2015,5,8,\"US\",\"1740\",\"CLT\",\"LGA\",-4.00,9.00,0.00,\"\",0.00,126.00,80.00,544.00,,,,,,\n2015,5,8,\"US\",\"1750\",\"ALB\",\"CLT\",-2.00,-1.00,0.00,\"\",0.00,132.00,92.00,646.00,,,,,,\n2015,5,8,\"US\",\"1781\",\"LGA\",\"CLT\",33.00,21.00,0.00,\"\",0.00,113.00,80.00,544.00,1.00,0.00,0.00,0.00,20.00,\n2015,5,8,\"US\",\"1810\",\"LGA\",\"CLT\",-7.00,-27.00,0.00,\"\",0.00,102.00,81.00,544.00,,,,,,\n2015,5,8,\"US\",\"1815\",\"LGA\",\"CLT\",-4.00,10.00,0.00,\"\",0.00,136.00,83.00,544.00,,,,,,\n2015,5,8,\"US\",\"1830\",\"CLT\",\"JFK\",3.00,5.00,0.00,\"\",0.00,109.00,81.00,541.00,,,,,,\n2015,5,8,\"US\",\"1849\",\"LGA\",\"CLT\",81.00,51.00,0.00,\"\",0.00,103.00,81.00,544.00,0.00,0.00,0.00,0.00,51.00,\n2015,5,8,\"US\",\"1851\",\"LGA\",\"CLT\",-1.00,-16.00,0.00,\"\",0.00,108.00,84.00,544.00,,,,,,\n2015,5,8,\"US\",\"1873\",\"BUF\",\"CLT\",-3.00,-10.00,0.00,\"\",0.00,101.00,79.00,546.00,,,,,,\n2015,5,8,\"US\",\"1885\",\"CLT\",\"BUF\",-4.00,-7.00,0.00,\"\",0.00,98.00,79.00,546.00,,,,,,\n2015,5,8,\"US\",\"1898\",\"CLT\",\"JFK\",27.00,32.00,0.00,\"\",0.00,115.00,76.00,541.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,8,\"US\",\"1908\",\"LGA\",\"CLT\",6.00,10.00,0.00,\"\",0.00,126.00,84.00,544.00,,,,,,\n2015,5,8,\"US\",\"1910\",\"CLT\",\"LGA\",12.00,17.00,0.00,\"\",0.00,121.00,82.00,544.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,8,\"US\",\"1916\",\"SYR\",\"CLT\",-1.00,-9.00,0.00,\"\",0.00,114.00,91.00,603.00,,,,,,\n2015,5,8,\"US\",\"1919\",\"JFK\",\"CLT\",-5.00,9.00,0.00,\"\",0.00,135.00,80.00,541.00,,,,,,\n2015,5,8,\"US\",\"1923\",\"ALB\",\"CLT\",-5.00,-30.00,0.00,\"\",0.00,117.00,96.00,646.00,,,,,,\n2015,5,8,\"US\",\"1933\",\"LGA\",\"PHL\",-6.00,3.00,0.00,\"\",0.00,82.00,41.00,96.00,,,,,,\n2015,5,8,\"US\",\"1940\",\"CLT\",\"ALB\",-6.00,22.00,0.00,\"\",0.00,146.00,91.00,646.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,8,\"US\",\"1942\",\"CLT\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,92.00,77.00,546.00,,,,,,\n2015,5,8,\"US\",\"1951\",\"LGA\",\"CLT\",-5.00,-13.00,0.00,\"\",0.00,114.00,91.00,544.00,,,,,,\n2015,5,8,\"US\",\"1952\",\"CLT\",\"BUF\",0.00,-2.00,0.00,\"\",0.00,96.00,75.00,546.00,,,,,,\n2015,5,8,\"US\",\"1954\",\"CLT\",\"LGA\",2.00,14.00,0.00,\"\",0.00,120.00,81.00,544.00,,,,,,\n2015,5,8,\"US\",\"1971\",\"CLT\",\"SYR\",14.00,17.00,0.00,\"\",0.00,108.00,79.00,603.00,13.00,0.00,3.00,0.00,1.00,\n2015,5,8,\"US\",\"1977\",\"BUF\",\"CLT\",-9.00,-4.00,0.00,\"\",0.00,114.00,83.00,546.00,,,,,,\n2015,5,8,\"US\",\"1981\",\"CLT\",\"LGA\",2.00,1.00,0.00,\"\",0.00,104.00,87.00,544.00,,,,,,\n2015,5,8,\"US\",\"1983\",\"BUF\",\"CLT\",-4.00,-7.00,0.00,\"\",0.00,109.00,91.00,546.00,,,,,,\n2015,5,8,\"US\",\"1988\",\"CLT\",\"ALB\",-2.00,2.00,0.00,\"\",0.00,129.00,100.00,646.00,,,,,,\n2015,5,8,\"US\",\"2017\",\"CLT\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,99.00,80.00,541.00,,,,,,\n2015,5,8,\"US\",\"2036\",\"CLT\",\"SYR\",4.00,-1.00,0.00,\"\",0.00,105.00,84.00,603.00,,,,,,\n2015,5,8,\"US\",\"2042\",\"CLT\",\"JFK\",-5.00,23.00,0.00,\"\",0.00,134.00,108.00,541.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,8,\"US\",\"2050\",\"CLT\",\"LGA\",0.00,7.00,0.00,\"\",0.00,115.00,84.00,544.00,,,,,,\n2015,5,8,\"US\",\"2060\",\"CLT\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,108.00,90.00,544.00,,,,,,\n2015,5,8,\"US\",\"2062\",\"CLT\",\"LGA\",-4.00,12.00,0.00,\"\",0.00,125.00,88.00,544.00,,,,,,\n2015,5,8,\"US\",\"2064\",\"CLT\",\"LGA\",29.00,20.00,0.00,\"\",0.00,105.00,83.00,544.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,8,\"US\",\"2066\",\"CLT\",\"LGA\",39.00,41.00,0.00,\"\",0.00,108.00,81.00,544.00,0.00,0.00,2.00,0.00,39.00,\n2015,5,8,\"US\",\"2068\",\"CLT\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,106.00,79.00,544.00,,,,,,\n2015,5,8,\"US\",\"2069\",\"JFK\",\"CLT\",1.00,-6.00,0.00,\"\",0.00,114.00,89.00,541.00,,,,,,\n2015,5,8,\"US\",\"2115\",\"LGA\",\"DCA\",-5.00,-9.00,0.00,\"\",0.00,59.00,41.00,214.00,,,,,,\n2015,5,8,\"US\",\"2117\",\"DCA\",\"LGA\",1.00,6.00,0.00,\"\",0.00,74.00,51.00,214.00,,,,,,\n2015,5,8,\"US\",\"2118\",\"BOS\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,63.00,40.00,184.00,,,,,,\n2015,5,8,\"US\",\"2118\",\"LGA\",\"BOS\",-3.00,-24.00,0.00,\"\",0.00,57.00,34.00,184.00,,,,,,\n2015,5,8,\"US\",\"2121\",\"BOS\",\"LGA\",0.00,3.00,0.00,\"\",0.00,79.00,45.00,184.00,,,,,,\n2015,5,8,\"US\",\"2121\",\"LGA\",\"BOS\",2.00,16.00,0.00,\"\",0.00,92.00,34.00,184.00,1.00,0.00,14.00,0.00,1.00,\n2015,5,8,\"US\",\"2122\",\"LGA\",\"BOS\",-7.00,-14.00,0.00,\"\",0.00,67.00,34.00,184.00,,,,,,\n2015,5,8,\"US\",\"2123\",\"LGA\",\"DCA\",-7.00,7.00,0.00,\"\",0.00,84.00,40.00,214.00,,,,,,\n2015,5,8,\"US\",\"2125\",\"LGA\",\"DCA\",-5.00,-7.00,0.00,\"\",0.00,82.00,41.00,214.00,,,,,,\n2015,5,8,\"US\",\"2126\",\"BOS\",\"LGA\",-7.00,0.00,0.00,\"\",0.00,88.00,55.00,184.00,,,,,,\n2015,5,8,\"US\",\"2126\",\"LGA\",\"BOS\",-5.00,-5.00,0.00,\"\",0.00,62.00,41.00,184.00,,,,,,\n2015,5,8,\"US\",\"2128\",\"LGA\",\"BOS\",-3.00,-10.00,0.00,\"\",0.00,66.00,35.00,184.00,,,,,,\n2015,5,8,\"US\",\"2131\",\"BOS\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,75.00,40.00,184.00,,,,,,\n2015,5,8,\"US\",\"2131\",\"LGA\",\"BOS\",-8.00,-13.00,0.00,\"\",0.00,67.00,34.00,184.00,,,,,,\n2015,5,8,\"US\",\"2133\",\"DCA\",\"LGA\",-5.00,37.00,0.00,\"\",0.00,132.00,43.00,214.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,8,\"US\",\"2133\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,8,\"US\",\"2135\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,8,\"US\",\"2135\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,8,\"US\",\"2136\",\"BOS\",\"LGA\",-8.00,-6.00,0.00,\"\",0.00,78.00,44.00,184.00,,,,,,\n2015,5,8,\"US\",\"2136\",\"LGA\",\"BOS\",-4.00,-6.00,0.00,\"\",0.00,76.00,32.00,184.00,,,,,,\n2015,5,8,\"US\",\"2137\",\"DCA\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,70.00,49.00,214.00,,,,,,\n2015,5,8,\"US\",\"2137\",\"LGA\",\"DCA\",2.00,4.00,0.00,\"\",0.00,87.00,42.00,214.00,,,,,,\n2015,5,8,\"US\",\"2141\",\"BOS\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,79.00,42.00,184.00,,,,,,\n2015,5,8,\"US\",\"2141\",\"LGA\",\"BOS\",-3.00,-11.00,0.00,\"\",0.00,69.00,34.00,184.00,,,,,,\n2015,5,8,\"US\",\"2143\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,8,\"US\",\"2143\",\"LGA\",\"DCA\",20.00,37.00,0.00,\"\",0.00,98.00,52.00,214.00,20.00,0.00,17.00,0.00,0.00,\n2015,5,8,\"US\",\"2144\",\"DCA\",\"LGA\",1.00,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,8,\"US\",\"2144\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,8,\"US\",\"2145\",\"DCA\",\"LGA\",11.00,23.00,0.00,\"\",0.00,100.00,41.00,214.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,8,\"US\",\"2145\",\"LGA\",\"DCA\",19.00,12.00,0.00,\"\",0.00,76.00,40.00,214.00,,,,,,\n2015,5,8,\"US\",\"2146\",\"BOS\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,73.00,43.00,184.00,,,,,,\n2015,5,8,\"US\",\"2146\",\"LGA\",\"BOS\",-6.00,-10.00,0.00,\"\",0.00,64.00,33.00,184.00,,,,,,\n2015,5,8,\"US\",\"2147\",\"DCA\",\"LGA\",4.00,2.00,0.00,\"\",0.00,86.00,41.00,214.00,,,,,,\n2015,5,8,\"US\",\"2147\",\"LGA\",\"DCA\",7.00,81.00,0.00,\"\",0.00,156.00,41.00,214.00,7.00,0.00,74.00,0.00,0.00,\n2015,5,8,\"US\",\"2148\",\"BOS\",\"LGA\",-3.00,15.00,0.00,\"\",0.00,94.00,55.00,184.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,8,\"US\",\"2151\",\"LGA\",\"BOS\",-4.00,-4.00,0.00,\"\",0.00,68.00,36.00,184.00,,,,,,\n2015,5,8,\"US\",\"2152\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,8,\"US\",\"2152\",\"LGA\",\"BOS\",-7.00,-1.00,0.00,\"\",0.00,74.00,45.00,184.00,,,,,,\n2015,5,8,\"US\",\"2153\",\"DCA\",\"LGA\",31.00,14.00,0.00,\"\",0.00,72.00,39.00,214.00,,,,,,\n2015,5,8,\"US\",\"2153\",\"LGA\",\"DCA\",26.00,14.00,0.00,\"\",0.00,68.00,42.00,214.00,,,,,,\n2015,5,8,\"US\",\"2154\",\"DCA\",\"LGA\",-5.00,5.00,0.00,\"\",0.00,86.00,48.00,214.00,,,,,,\n2015,5,8,\"US\",\"2154\",\"LGA\",\"DCA\",30.00,32.00,0.00,\"\",0.00,78.00,41.00,214.00,30.00,0.00,2.00,0.00,0.00,\n2015,5,8,\"US\",\"2155\",\"DCA\",\"LGA\",2.00,-3.00,0.00,\"\",0.00,90.00,47.00,214.00,,,,,,\n2015,5,8,\"US\",\"2156\",\"BOS\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,66.00,39.00,184.00,,,,,,\n2015,5,8,\"US\",\"2156\",\"LGA\",\"BOS\",-4.00,-9.00,0.00,\"\",0.00,71.00,33.00,184.00,,,,,,\n2015,5,8,\"US\",\"2157\",\"DCA\",\"LGA\",103.00,80.00,0.00,\"\",0.00,65.00,41.00,214.00,0.00,0.00,80.00,0.00,0.00,\n2015,5,8,\"US\",\"2157\",\"LGA\",\"DCA\",79.00,69.00,0.00,\"\",0.00,72.00,46.00,214.00,1.00,0.00,0.00,0.00,68.00,\n2015,5,8,\"US\",\"2158\",\"BOS\",\"LGA\",26.00,15.00,0.00,\"\",0.00,69.00,41.00,184.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,8,\"US\",\"2158\",\"LGA\",\"BOS\",-2.00,22.00,0.00,\"\",0.00,88.00,41.00,184.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,8,\"US\",\"2162\",\"BOS\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,74.00,42.00,184.00,,,,,,\n2015,5,8,\"US\",\"2162\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,8,\"US\",\"2163\",\"DCA\",\"LGA\",105.00,92.00,0.00,\"\",0.00,70.00,45.00,214.00,0.00,0.00,92.00,0.00,0.00,\n2015,5,8,\"US\",\"2164\",\"DCA\",\"LGA\",36.00,21.00,0.00,\"\",0.00,72.00,44.00,214.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,8,\"US\",\"2164\",\"LGA\",\"DCA\",19.00,11.00,0.00,\"\",0.00,75.00,43.00,214.00,,,,,,\n2015,5,8,\"US\",\"2165\",\"BOS\",\"LGA\",-4.00,12.00,0.00,\"\",0.00,92.00,70.00,184.00,,,,,,\n2015,5,8,\"US\",\"2167\",\"DCA\",\"LGA\",66.00,74.00,0.00,\"\",0.00,94.00,42.00,214.00,0.00,0.00,74.00,0.00,0.00,\n2015,5,8,\"US\",\"2167\",\"LGA\",\"DCA\",70.00,52.00,0.00,\"\",0.00,64.00,47.00,214.00,52.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"US\",\"2168\",\"BOS\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,66.00,41.00,184.00,,,,,,\n2015,5,8,\"US\",\"2168\",\"LGA\",\"BOS\",11.00,-6.00,0.00,\"\",0.00,54.00,33.00,184.00,,,,,,\n2015,5,8,\"US\",\"2171\",\"BOS\",\"LGA\",-3.00,11.00,0.00,\"\",0.00,94.00,65.00,184.00,,,,,,\n2015,5,8,\"US\",\"2172\",\"BOS\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,73.00,44.00,184.00,,,,,,\n2015,5,8,\"US\",\"2172\",\"LGA\",\"BOS\",-7.00,-5.00,0.00,\"\",0.00,75.00,32.00,184.00,,,,,,\n2015,5,8,\"US\",\"2174\",\"DCA\",\"LGA\",0.00,6.00,0.00,\"\",0.00,96.00,42.00,214.00,,,,,,\n2015,5,8,\"US\",\"2174\",\"LGA\",\"DCA\",-1.00,-1.00,0.00,\"\",0.00,79.00,42.00,214.00,,,,,,\n2015,5,9,\"US\",\"425\",\"JFK\",\"CLT\",-7.00,-37.00,0.00,\"\",0.00,98.00,80.00,541.00,,,,,,\n2015,5,9,\"US\",\"425\",\"PHX\",\"JFK\",-3.00,9.00,0.00,\"\",0.00,315.00,264.00,2153.00,,,,,,\n2015,5,9,\"US\",\"433\",\"JFK\",\"PHX\",-4.00,-12.00,0.00,\"\",0.00,330.00,281.00,2153.00,,,,,,\n2015,5,4,\"US\",\"425\",\"JFK\",\"CLT\",-8.00,-22.00,0.00,\"\",0.00,114.00,75.00,541.00,,,,,,\n2015,5,4,\"US\",\"425\",\"PHX\",\"JFK\",-2.00,-8.00,0.00,\"\",0.00,297.00,267.00,2153.00,,,,,,\n2015,5,4,\"US\",\"435\",\"JFK\",\"PHX\",-3.00,22.00,0.00,\"\",0.00,363.00,283.00,2153.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,4,\"US\",\"466\",\"ALB\",\"CLT\",-3.00,-36.00,0.00,\"\",0.00,109.00,90.00,646.00,,,,,,\n2015,5,4,\"US\",\"622\",\"PHX\",\"JFK\",-2.00,7.00,0.00,\"\",0.00,299.00,265.00,2153.00,,,,,,\n2015,5,4,\"US\",\"639\",\"CLT\",\"JFK\",-2.00,8.00,0.00,\"\",0.00,126.00,81.00,541.00,,,,,,\n2015,5,4,\"US\",\"639\",\"JFK\",\"PHX\",21.00,18.00,0.00,\"\",0.00,331.00,293.00,2153.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"US\",\"654\",\"JFK\",\"PHX\",-5.00,-25.00,0.00,\"\",0.00,304.00,276.00,2153.00,,,,,,\n2015,5,4,\"US\",\"756\",\"BUF\",\"CLT\",47.00,32.00,0.00,\"\",0.00,96.00,77.00,546.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,4,\"US\",\"821\",\"ROC\",\"CLT\",2.00,-9.00,0.00,\"\",0.00,111.00,84.00,573.00,,,,,,\n2015,5,4,\"US\",\"826\",\"LGA\",\"CLT\",-6.00,-15.00,0.00,\"\",0.00,108.00,76.00,544.00,,,,,,\n2015,5,4,\"US\",\"852\",\"BUF\",\"CLT\",-4.00,-9.00,0.00,\"\",0.00,104.00,78.00,546.00,,,,,,\n2015,5,4,\"US\",\"853\",\"CLT\",\"BUF\",-5.00,4.00,0.00,\"\",0.00,114.00,80.00,546.00,,,,,,\n2015,5,4,\"US\",\"873\",\"JFK\",\"CLT\",5.00,-10.00,0.00,\"\",0.00,109.00,80.00,541.00,,,,,,\n2015,5,4,\"US\",\"890\",\"LGA\",\"CLT\",-6.00,-25.00,0.00,\"\",0.00,106.00,78.00,544.00,,,,,,\n2015,5,4,\"US\",\"896\",\"CLT\",\"ROC\",0.00,-2.00,0.00,\"\",0.00,102.00,84.00,573.00,,,,,,\n2015,5,4,\"US\",\"899\",\"CLT\",\"ALB\",-5.00,1.00,0.00,\"\",0.00,121.00,96.00,646.00,,,,,,\n2015,5,4,\"US\",\"1740\",\"CLT\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,107.00,87.00,544.00,,,,,,\n2015,5,4,\"US\",\"1750\",\"ALB\",\"CLT\",-1.00,-16.00,0.00,\"\",0.00,116.00,93.00,646.00,,,,,,\n2015,5,4,\"US\",\"1781\",\"LGA\",\"CLT\",-6.00,-4.00,0.00,\"\",0.00,127.00,77.00,544.00,,,,,,\n2015,5,9,\"US\",\"445\",\"JFK\",\"CLT\",1.00,-10.00,0.00,\"\",0.00,105.00,76.00,541.00,,,,,,\n2015,5,9,\"US\",\"622\",\"PHX\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,272.00,254.00,2153.00,,,,,,\n2015,5,9,\"US\",\"632\",\"PHX\",\"JFK\",-7.00,-18.00,0.00,\"\",0.00,274.00,254.00,2153.00,,,,,,\n2015,5,9,\"US\",\"639\",\"CLT\",\"JFK\",30.00,30.00,0.00,\"\",0.00,116.00,87.00,541.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"US\",\"639\",\"JFK\",\"PHX\",36.00,20.00,0.00,\"\",0.00,318.00,294.00,2153.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,9,\"US\",\"654\",\"JFK\",\"PHX\",39.00,30.00,0.00,\"\",0.00,315.00,281.00,2153.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"US\",\"841\",\"LGA\",\"CLT\",-6.00,-3.00,0.00,\"\",0.00,130.00,78.00,544.00,,,,,,\n2015,5,9,\"US\",\"850\",\"ALB\",\"CLT\",-6.00,-35.00,0.00,\"\",0.00,113.00,93.00,646.00,,,,,,\n2015,5,9,\"US\",\"863\",\"ROC\",\"CLT\",0.00,-2.00,0.00,\"\",0.00,120.00,101.00,573.00,,,,,,\n2015,5,9,\"US\",\"873\",\"JFK\",\"CLT\",-5.00,-9.00,0.00,\"\",0.00,120.00,76.00,541.00,,,,,,\n2015,5,9,\"US\",\"876\",\"SYR\",\"CLT\",-5.00,-29.00,0.00,\"\",0.00,104.00,86.00,603.00,,,,,,\n2015,5,9,\"US\",\"885\",\"LGA\",\"CLT\",-2.00,-7.00,0.00,\"\",0.00,112.00,80.00,544.00,,,,,,\n2015,5,9,\"US\",\"890\",\"LGA\",\"CLT\",-7.00,-31.00,0.00,\"\",0.00,99.00,78.00,544.00,,,,,,\n2015,5,9,\"US\",\"894\",\"LGA\",\"CLT\",20.00,9.00,0.00,\"\",0.00,112.00,93.00,544.00,,,,,,\n2015,5,9,\"US\",\"896\",\"CLT\",\"ROC\",13.00,23.00,0.00,\"\",0.00,112.00,82.00,573.00,13.00,0.00,10.00,0.00,0.00,\n2015,5,9,\"US\",\"1704\",\"ALB\",\"CLT\",-7.00,-16.00,0.00,\"\",0.00,122.00,92.00,646.00,,,,,,\n2015,5,9,\"US\",\"1704\",\"CLT\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,91.00,76.00,546.00,,,,,,\n2015,5,9,\"US\",\"1740\",\"CLT\",\"LGA\",6.00,7.00,0.00,\"\",0.00,108.00,85.00,544.00,,,,,,\n2015,5,9,\"US\",\"1760\",\"LGA\",\"CLT\",-7.00,-8.00,0.00,\"\",0.00,121.00,79.00,544.00,,,,,,\n2015,5,9,\"US\",\"1781\",\"LGA\",\"CLT\",59.00,33.00,0.00,\"\",0.00,99.00,78.00,544.00,0.00,0.00,0.00,0.00,33.00,\n2015,5,9,\"US\",\"1797\",\"BUF\",\"CLT\",-3.00,-9.00,0.00,\"\",0.00,106.00,86.00,546.00,,,,,,\n2015,5,9,\"US\",\"1799\",\"LGA\",\"CLT\",28.00,6.00,0.00,\"\",0.00,100.00,78.00,544.00,,,,,,\n2015,5,9,\"US\",\"1804\",\"PHL\",\"LGA\",18.00,9.00,0.00,\"\",0.00,52.00,30.00,96.00,,,,,,\n2015,5,9,\"US\",\"1838\",\"PHL\",\"LGA\",18.00,24.00,0.00,\"\",0.00,61.00,44.00,96.00,18.00,0.00,6.00,0.00,0.00,\n2015,5,9,\"US\",\"1843\",\"LGA\",\"CLT\",-6.00,1.00,0.00,\"\",0.00,126.00,83.00,544.00,,,,,,\n2015,5,9,\"US\",\"1855\",\"JFK\",\"CLT\",1.00,-7.00,0.00,\"\",0.00,106.00,82.00,541.00,,,,,,\n2015,5,9,\"US\",\"1860\",\"CLT\",\"LGA\",11.00,13.00,0.00,\"\",0.00,107.00,84.00,544.00,,,,,,\n2015,5,9,\"US\",\"1867\",\"JFK\",\"CLT\",-3.00,-9.00,0.00,\"\",0.00,115.00,84.00,541.00,,,,,,\n2015,5,9,\"US\",\"1887\",\"LGA\",\"CLT\",-7.00,-16.00,0.00,\"\",0.00,114.00,81.00,544.00,,,,,,\n2015,5,9,\"US\",\"1898\",\"CLT\",\"JFK\",-1.00,10.00,0.00,\"\",0.00,121.00,85.00,541.00,,,,,,\n2015,5,9,\"US\",\"1910\",\"CLT\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,106.00,89.00,544.00,,,,,,\n2015,5,9,\"US\",\"1918\",\"PHL\",\"LGA\",-7.00,-24.00,0.00,\"\",0.00,52.00,31.00,96.00,,,,,,\n2015,5,9,\"US\",\"1933\",\"LGA\",\"PHL\",-6.00,26.00,0.00,\"\",0.00,105.00,37.00,96.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,9,\"US\",\"1940\",\"CLT\",\"ALB\",2.00,21.00,0.00,\"\",0.00,137.00,93.00,646.00,2.00,0.00,19.00,0.00,0.00,\n2015,5,9,\"US\",\"1942\",\"CLT\",\"BUF\",-6.00,-14.00,0.00,\"\",0.00,92.00,80.00,546.00,,,,,,\n2015,5,9,\"US\",\"1946\",\"LGA\",\"CLT\",0.00,-20.00,0.00,\"\",0.00,102.00,80.00,544.00,,,,,,\n2015,5,9,\"US\",\"1952\",\"CLT\",\"BUF\",-5.00,-1.00,0.00,\"\",0.00,102.00,71.00,546.00,,,,,,\n2015,5,9,\"US\",\"1954\",\"CLT\",\"LGA\",19.00,,0.00,\"\",1.00,,,544.00,,,,,,\n2015,5,9,\"US\",\"1982\",\"CLT\",\"JFK\",-4.00,1.00,0.00,\"\",0.00,112.00,88.00,541.00,,,,,,\n2015,5,9,\"US\",\"1988\",\"CLT\",\"ALB\",-4.00,-5.00,0.00,\"\",0.00,124.00,100.00,646.00,,,,,,\n2015,5,9,\"US\",\"2017\",\"CLT\",\"JFK\",-1.00,1.00,0.00,\"\",0.00,112.00,86.00,541.00,,,,,,\n2015,5,9,\"US\",\"2036\",\"CLT\",\"SYR\",-5.00,-1.00,0.00,\"\",0.00,114.00,86.00,603.00,,,,,,\n2015,5,9,\"US\",\"2042\",\"CLT\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,110.00,84.00,541.00,,,,,,\n2015,5,9,\"US\",\"2047\",\"BUF\",\"CLT\",-2.00,-7.00,0.00,\"\",0.00,104.00,86.00,546.00,,,,,,\n2015,5,9,\"US\",\"2050\",\"CLT\",\"LGA\",-1.00,4.00,0.00,\"\",0.00,113.00,82.00,544.00,,,,,,\n2015,5,9,\"US\",\"2062\",\"CLT\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,104.00,84.00,544.00,,,,,,\n2015,5,9,\"US\",\"2064\",\"CLT\",\"LGA\",-1.00,39.00,0.00,\"\",0.00,154.00,120.00,544.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,9,\"US\",\"2066\",\"CLT\",\"LGA\",-4.00,,0.00,\"\",1.00,,,544.00,,,,,,\n2015,5,9,\"US\",\"2068\",\"CLT\",\"LGA\",19.00,22.00,0.00,\"\",0.00,110.00,86.00,544.00,0.00,0.00,3.00,0.00,19.00,\n2015,5,9,\"US\",\"2069\",\"BUF\",\"CLT\",-7.00,3.00,0.00,\"\",0.00,121.00,96.00,546.00,,,,,,\n2015,5,9,\"US\",\"2126\",\"BOS\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,72.00,48.00,184.00,,,,,,\n2015,5,9,\"US\",\"2135\",\"DCA\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,88.00,58.00,214.00,,,,,,\n2015,5,9,\"US\",\"2135\",\"LGA\",\"DCA\",-3.00,4.00,0.00,\"\",0.00,89.00,40.00,214.00,,,,,,\n2015,5,9,\"US\",\"2136\",\"LGA\",\"BOS\",-4.00,13.00,0.00,\"\",0.00,95.00,39.00,184.00,,,,,,\n2015,5,9,\"US\",\"2145\",\"DCA\",\"LGA\",0.00,72.00,0.00,\"\",0.00,160.00,44.00,214.00,0.00,0.00,72.00,0.00,0.00,\n2015,5,9,\"US\",\"2146\",\"LGA\",\"DCA\",-5.00,5.00,0.00,\"\",0.00,94.00,44.00,214.00,,,,,,\n2015,5,9,\"US\",\"2156\",\"DCA\",\"LGA\",11.00,2.00,0.00,\"\",0.00,67.00,48.00,214.00,,,,,,\n2015,5,9,\"US\",\"2156\",\"LGA\",\"DCA\",-7.00,-18.00,0.00,\"\",0.00,64.00,39.00,214.00,,,,,,\n2015,5,9,\"US\",\"2158\",\"LGA\",\"BOS\",31.00,24.00,0.00,\"\",0.00,57.00,35.00,184.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"US\",\"425\",\"JFK\",\"CLT\",-2.00,-4.00,0.00,\"\",0.00,126.00,79.00,541.00,,,,,,\n2015,5,10,\"US\",\"425\",\"PHX\",\"JFK\",0.00,-6.00,0.00,\"\",0.00,297.00,266.00,2153.00,,,,,,\n2015,5,10,\"US\",\"433\",\"JFK\",\"PHX\",-1.00,-26.00,0.00,\"\",0.00,313.00,264.00,2153.00,,,,,,\n2015,5,11,\"US\",\"2123\",\"LGA\",\"DCA\",-2.00,-7.00,0.00,\"\",0.00,65.00,42.00,214.00,,,,,,\n2015,5,11,\"US\",\"2125\",\"LGA\",\"DCA\",-1.00,-4.00,0.00,\"\",0.00,81.00,45.00,214.00,,,,,,\n2015,5,11,\"US\",\"2126\",\"BOS\",\"LGA\",14.00,4.00,0.00,\"\",0.00,71.00,43.00,184.00,,,,,,\n2015,5,11,\"US\",\"2126\",\"LGA\",\"BOS\",7.00,15.00,0.00,\"\",0.00,70.00,42.00,184.00,7.00,0.00,8.00,0.00,0.00,\n2015,5,11,\"US\",\"2128\",\"LGA\",\"BOS\",18.00,10.00,0.00,\"\",0.00,65.00,37.00,184.00,,,,,,\n2015,5,11,\"US\",\"2131\",\"BOS\",\"LGA\",112.00,99.00,0.00,\"\",0.00,68.00,43.00,184.00,0.00,0.00,99.00,0.00,0.00,\n2015,5,11,\"US\",\"2131\",\"LGA\",\"BOS\",-6.00,28.00,0.00,\"\",0.00,106.00,55.00,184.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,11,\"US\",\"2133\",\"DCA\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,89.00,45.00,214.00,,,,,,\n2015,5,11,\"US\",\"2133\",\"LGA\",\"DCA\",-7.00,-12.00,0.00,\"\",0.00,72.00,44.00,214.00,,,,,,\n2015,5,11,\"US\",\"2135\",\"DCA\",\"LGA\",-9.00,2.00,0.00,\"\",0.00,87.00,47.00,214.00,,,,,,\n2015,5,11,\"US\",\"2135\",\"LGA\",\"DCA\",-4.00,6.00,0.00,\"\",0.00,85.00,48.00,214.00,,,,,,\n2015,5,11,\"US\",\"2136\",\"BOS\",\"LGA\",-7.00,7.00,0.00,\"\",0.00,90.00,46.00,184.00,,,,,,\n2015,5,6,\"US\",\"632\",\"PHX\",\"JFK\",9.00,-2.00,0.00,\"\",0.00,274.00,254.00,2153.00,,,,,,\n2015,5,6,\"US\",\"639\",\"CLT\",\"JFK\",0.00,12.00,0.00,\"\",0.00,128.00,82.00,541.00,,,,,,\n2015,5,6,\"US\",\"639\",\"JFK\",\"PHX\",2.00,-21.00,0.00,\"\",0.00,311.00,283.00,2153.00,,,,,,\n2015,5,6,\"US\",\"654\",\"JFK\",\"PHX\",-2.00,-37.00,0.00,\"\",0.00,289.00,270.00,2153.00,,,,,,\n2015,5,6,\"US\",\"756\",\"BUF\",\"CLT\",-5.00,-15.00,0.00,\"\",0.00,101.00,82.00,546.00,,,,,,\n2015,5,7,\"US\",\"756\",\"BUF\",\"CLT\",-8.00,-19.00,0.00,\"\",0.00,100.00,83.00,546.00,,,,,,\n2015,5,7,\"US\",\"809\",\"PHL\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,63.00,31.00,96.00,,,,,,\n2015,5,7,\"US\",\"821\",\"ROC\",\"CLT\",-3.00,-13.00,0.00,\"\",0.00,112.00,92.00,573.00,,,,,,\n2015,5,7,\"US\",\"826\",\"LGA\",\"CLT\",-5.00,-3.00,0.00,\"\",0.00,119.00,83.00,544.00,,,,,,\n2015,5,7,\"US\",\"853\",\"CLT\",\"BUF\",-1.00,-2.00,0.00,\"\",0.00,104.00,75.00,546.00,,,,,,\n2015,5,7,\"US\",\"873\",\"JFK\",\"CLT\",16.00,-7.00,0.00,\"\",0.00,101.00,78.00,541.00,,,,,,\n2015,5,7,\"US\",\"876\",\"SYR\",\"CLT\",-9.00,-14.00,0.00,\"\",0.00,123.00,100.00,603.00,,,,,,\n2015,5,7,\"US\",\"890\",\"LGA\",\"CLT\",25.00,13.00,0.00,\"\",0.00,113.00,89.00,544.00,,,,,,\n2015,5,7,\"US\",\"896\",\"CLT\",\"ROC\",1.00,-1.00,0.00,\"\",0.00,100.00,76.00,573.00,,,,,,\n2015,5,7,\"US\",\"1740\",\"CLT\",\"LGA\",-1.00,4.00,0.00,\"\",0.00,118.00,82.00,544.00,,,,,,\n2015,5,7,\"US\",\"1750\",\"ALB\",\"CLT\",2.00,-10.00,0.00,\"\",0.00,119.00,100.00,646.00,,,,,,\n2015,5,7,\"US\",\"1781\",\"LGA\",\"CLT\",-1.00,-5.00,0.00,\"\",0.00,121.00,81.00,544.00,,,,,,\n2015,5,7,\"US\",\"1810\",\"LGA\",\"CLT\",-2.00,-16.00,0.00,\"\",0.00,108.00,82.00,544.00,,,,,,\n2015,5,7,\"US\",\"1815\",\"LGA\",\"CLT\",-8.00,-13.00,0.00,\"\",0.00,117.00,86.00,544.00,,,,,,\n2015,5,7,\"US\",\"1830\",\"CLT\",\"JFK\",-3.00,3.00,0.00,\"\",0.00,113.00,82.00,541.00,,,,,,\n2015,5,7,\"US\",\"1849\",\"LGA\",\"CLT\",-2.00,-18.00,0.00,\"\",0.00,117.00,88.00,544.00,,,,,,\n2015,5,7,\"US\",\"1851\",\"LGA\",\"CLT\",-1.00,-5.00,0.00,\"\",0.00,119.00,90.00,544.00,,,,,,\n2015,5,7,\"US\",\"1873\",\"BUF\",\"CLT\",5.00,2.00,0.00,\"\",0.00,105.00,85.00,546.00,,,,,,\n2015,5,7,\"US\",\"1885\",\"CLT\",\"BUF\",16.00,4.00,0.00,\"\",0.00,89.00,72.00,546.00,,,,,,\n2015,5,7,\"US\",\"1898\",\"CLT\",\"JFK\",6.00,,0.00,\"\",1.00,,,541.00,,,,,,\n2015,5,7,\"US\",\"1908\",\"LGA\",\"CLT\",-1.00,-9.00,0.00,\"\",0.00,114.00,79.00,544.00,,,,,,\n2015,5,7,\"US\",\"1910\",\"CLT\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,106.00,81.00,544.00,,,,,,\n2015,5,7,\"US\",\"1916\",\"SYR\",\"CLT\",-11.00,-13.00,0.00,\"\",0.00,120.00,94.00,603.00,,,,,,\n2015,5,7,\"US\",\"1919\",\"JFK\",\"CLT\",10.00,1.00,0.00,\"\",0.00,112.00,80.00,541.00,,,,,,\n2015,5,7,\"US\",\"1923\",\"ALB\",\"CLT\",,,1.00,\"A\",0.00,,,646.00,,,,,,\n2015,5,7,\"US\",\"1933\",\"LGA\",\"PHL\",-5.00,5.00,0.00,\"\",0.00,83.00,41.00,96.00,,,,,,\n2015,5,7,\"US\",\"1940\",\"CLT\",\"ALB\",5.00,10.00,0.00,\"\",0.00,123.00,94.00,646.00,,,,,,\n2015,5,7,\"US\",\"1942\",\"CLT\",\"BUF\",-3.00,-10.00,0.00,\"\",0.00,93.00,77.00,546.00,,,,,,\n2015,5,7,\"US\",\"1951\",\"LGA\",\"CLT\",-8.00,-22.00,0.00,\"\",0.00,108.00,82.00,544.00,,,,,,\n2015,5,7,\"US\",\"1952\",\"CLT\",\"BUF\",-3.00,-6.00,0.00,\"\",0.00,95.00,77.00,546.00,,,,,,\n2015,5,7,\"US\",\"1954\",\"CLT\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,108.00,79.00,544.00,,,,,,\n2015,5,7,\"US\",\"1971\",\"CLT\",\"SYR\",25.00,39.00,0.00,\"\",0.00,119.00,79.00,603.00,25.00,0.00,14.00,0.00,0.00,\n2015,5,7,\"US\",\"1977\",\"BUF\",\"CLT\",-6.00,-3.00,0.00,\"\",0.00,112.00,85.00,546.00,,,,,,\n2015,5,7,\"US\",\"1981\",\"CLT\",\"LGA\",-1.00,7.00,0.00,\"\",0.00,113.00,93.00,544.00,,,,,,\n2015,5,7,\"US\",\"1983\",\"BUF\",\"CLT\",-7.00,-12.00,0.00,\"\",0.00,107.00,89.00,546.00,,,,,,\n2015,5,7,\"US\",\"1988\",\"CLT\",\"ALB\",-8.00,8.00,0.00,\"\",0.00,141.00,100.00,646.00,,,,,,\n2015,5,7,\"US\",\"2017\",\"CLT\",\"JFK\",1.00,0.00,0.00,\"\",0.00,109.00,80.00,541.00,,,,,,\n2015,5,7,\"US\",\"2036\",\"CLT\",\"SYR\",-2.00,-12.00,0.00,\"\",0.00,100.00,82.00,603.00,,,,,,\n2015,5,7,\"US\",\"2042\",\"CLT\",\"JFK\",4.00,21.00,0.00,\"\",0.00,123.00,78.00,541.00,4.00,0.00,17.00,0.00,0.00,\n2015,5,7,\"US\",\"2050\",\"CLT\",\"LGA\",20.00,33.00,0.00,\"\",0.00,121.00,83.00,544.00,20.00,0.00,13.00,0.00,0.00,\n2015,5,7,\"US\",\"2060\",\"CLT\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,106.00,78.00,544.00,,,,,,\n2015,5,7,\"US\",\"2062\",\"CLT\",\"LGA\",69.00,66.00,0.00,\"\",0.00,106.00,85.00,544.00,0.00,0.00,0.00,0.00,66.00,\n2015,5,7,\"US\",\"2064\",\"CLT\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,105.00,80.00,544.00,,,,,,\n2015,5,7,\"US\",\"2066\",\"CLT\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,96.00,77.00,544.00,,,,,,\n2015,5,7,\"US\",\"2068\",\"CLT\",\"LGA\",-2.00,0.00,0.00,\"\",0.00,109.00,79.00,544.00,,,,,,\n2015,5,7,\"US\",\"2069\",\"JFK\",\"CLT\",0.00,-18.00,0.00,\"\",0.00,103.00,83.00,541.00,,,,,,\n2015,5,7,\"US\",\"2115\",\"LGA\",\"DCA\",-4.00,-3.00,0.00,\"\",0.00,64.00,39.00,214.00,,,,,,\n2015,5,7,\"US\",\"2117\",\"DCA\",\"LGA\",-9.00,-18.00,0.00,\"\",0.00,60.00,45.00,214.00,,,,,,\n2015,5,7,\"US\",\"2118\",\"BOS\",\"LGA\",30.00,28.00,0.00,\"\",0.00,79.00,41.00,184.00,1.00,0.00,0.00,0.00,27.00,\n2015,5,7,\"US\",\"2118\",\"LGA\",\"BOS\",52.00,41.00,0.00,\"\",0.00,67.00,47.00,184.00,2.00,0.00,0.00,0.00,39.00,\n2015,5,7,\"US\",\"2121\",\"BOS\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,74.00,42.00,184.00,,,,,,\n2015,5,7,\"US\",\"2121\",\"LGA\",\"BOS\",-4.00,-13.00,0.00,\"\",0.00,69.00,43.00,184.00,,,,,,\n2015,5,7,\"US\",\"2122\",\"LGA\",\"BOS\",3.00,4.00,0.00,\"\",0.00,75.00,46.00,184.00,,,,,,\n2015,5,7,\"US\",\"2123\",\"LGA\",\"DCA\",-5.00,-3.00,0.00,\"\",0.00,72.00,41.00,214.00,,,,,,\n2015,5,7,\"US\",\"2125\",\"LGA\",\"DCA\",-8.00,-24.00,0.00,\"\",0.00,68.00,46.00,214.00,,,,,,\n2015,5,7,\"US\",\"2126\",\"BOS\",\"LGA\",-9.00,-19.00,0.00,\"\",0.00,71.00,41.00,184.00,,,,,,\n2015,5,7,\"US\",\"2126\",\"LGA\",\"BOS\",-8.00,-12.00,0.00,\"\",0.00,58.00,40.00,184.00,,,,,,\n2015,5,7,\"US\",\"2128\",\"LGA\",\"BOS\",19.00,17.00,0.00,\"\",0.00,71.00,43.00,184.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,7,\"US\",\"2131\",\"BOS\",\"LGA\",6.00,-4.00,0.00,\"\",0.00,71.00,42.00,184.00,,,,,,\n2015,5,7,\"US\",\"2131\",\"LGA\",\"BOS\",-3.00,-8.00,0.00,\"\",0.00,67.00,33.00,184.00,,,,,,\n2015,5,7,\"US\",\"2133\",\"DCA\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,96.00,45.00,214.00,,,,,,\n2015,5,7,\"US\",\"2133\",\"LGA\",\"DCA\",-3.00,-15.00,0.00,\"\",0.00,65.00,43.00,214.00,,,,,,\n2015,5,7,\"US\",\"2135\",\"DCA\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,65.00,40.00,214.00,,,,,,\n2015,5,7,\"US\",\"2135\",\"LGA\",\"DCA\",-5.00,-2.00,0.00,\"\",0.00,78.00,43.00,214.00,,,,,,\n2015,5,7,\"US\",\"2136\",\"BOS\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,79.00,42.00,184.00,,,,,,\n2015,5,7,\"US\",\"2136\",\"LGA\",\"BOS\",-7.00,-22.00,0.00,\"\",0.00,63.00,41.00,184.00,,,,,,\n2015,5,7,\"US\",\"2137\",\"DCA\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,57.00,41.00,214.00,,,,,,\n2015,5,7,\"US\",\"2137\",\"LGA\",\"DCA\",-7.00,2.00,0.00,\"\",0.00,94.00,46.00,214.00,,,,,,\n2015,5,7,\"US\",\"2141\",\"BOS\",\"LGA\",3.00,2.00,0.00,\"\",0.00,83.00,40.00,184.00,,,,,,\n2015,5,7,\"US\",\"2141\",\"LGA\",\"BOS\",0.00,11.00,0.00,\"\",0.00,88.00,41.00,184.00,,,,,,\n2015,5,7,\"US\",\"2143\",\"DCA\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,76.00,46.00,214.00,,,,,,\n2015,5,7,\"US\",\"2143\",\"LGA\",\"DCA\",-6.00,-20.00,0.00,\"\",0.00,67.00,40.00,214.00,,,,,,\n2015,5,7,\"US\",\"2144\",\"DCA\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,67.00,45.00,214.00,,,,,,\n2015,5,7,\"US\",\"2144\",\"LGA\",\"DCA\",-8.00,-16.00,0.00,\"\",0.00,74.00,40.00,214.00,,,,,,\n2015,5,7,\"US\",\"2145\",\"DCA\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,76.00,45.00,214.00,,,,,,\n2015,5,7,\"US\",\"2145\",\"LGA\",\"DCA\",-1.00,4.00,0.00,\"\",0.00,88.00,48.00,214.00,,,,,,\n2015,5,7,\"US\",\"2146\",\"BOS\",\"LGA\",1.00,0.00,0.00,\"\",0.00,81.00,43.00,184.00,,,,,,\n2015,5,7,\"US\",\"2146\",\"LGA\",\"BOS\",-5.00,-17.00,0.00,\"\",0.00,56.00,33.00,184.00,,,,,,\n2015,5,7,\"US\",\"2147\",\"DCA\",\"LGA\",-1.00,-24.00,0.00,\"\",0.00,65.00,45.00,214.00,,,,,,\n2015,5,7,\"US\",\"2147\",\"LGA\",\"DCA\",-9.00,-29.00,0.00,\"\",0.00,62.00,43.00,214.00,,,,,,\n2015,5,7,\"US\",\"2148\",\"BOS\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,67.00,42.00,184.00,,,,,,\n2015,5,7,\"US\",\"2151\",\"LGA\",\"BOS\",2.00,1.00,0.00,\"\",0.00,67.00,39.00,184.00,,,,,,\n2015,5,7,\"US\",\"2152\",\"BOS\",\"LGA\",-8.00,-4.00,0.00,\"\",0.00,85.00,40.00,184.00,,,,,,\n2015,5,7,\"US\",\"2152\",\"LGA\",\"BOS\",-7.00,-15.00,0.00,\"\",0.00,60.00,44.00,184.00,,,,,,\n2015,5,7,\"US\",\"2153\",\"DCA\",\"LGA\",0.00,31.00,0.00,\"\",0.00,120.00,45.00,214.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,7,\"US\",\"2153\",\"LGA\",\"DCA\",29.00,20.00,0.00,\"\",0.00,71.00,47.00,214.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"US\",\"2154\",\"DCA\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,66.00,43.00,214.00,,,,,,\n2015,5,7,\"US\",\"2154\",\"LGA\",\"DCA\",-9.00,-11.00,0.00,\"\",0.00,74.00,43.00,214.00,,,,,,\n2015,5,7,\"US\",\"2155\",\"DCA\",\"LGA\",-4.00,-35.00,0.00,\"\",0.00,64.00,44.00,214.00,,,,,,\n2015,5,7,\"US\",\"2156\",\"BOS\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,80.00,38.00,184.00,,,,,,\n2015,5,7,\"US\",\"2156\",\"LGA\",\"BOS\",-2.00,-17.00,0.00,\"\",0.00,61.00,42.00,184.00,,,,,,\n2015,5,7,\"US\",\"2157\",\"DCA\",\"LGA\",-6.00,-28.00,0.00,\"\",0.00,66.00,44.00,214.00,,,,,,\n2015,5,7,\"US\",\"2157\",\"LGA\",\"DCA\",-6.00,-13.00,0.00,\"\",0.00,75.00,52.00,214.00,,,,,,\n2015,5,7,\"US\",\"2158\",\"BOS\",\"LGA\",-9.00,-21.00,0.00,\"\",0.00,68.00,42.00,184.00,,,,,,\n2015,5,7,\"US\",\"2158\",\"LGA\",\"BOS\",-7.00,-13.00,0.00,\"\",0.00,58.00,42.00,184.00,,,,,,\n2015,5,7,\"US\",\"2162\",\"BOS\",\"LGA\",-9.00,-19.00,0.00,\"\",0.00,74.00,43.00,184.00,,,,,,\n2015,5,7,\"US\",\"2162\",\"LGA\",\"BOS\",-6.00,-14.00,0.00,\"\",0.00,64.00,40.00,184.00,,,,,,\n2015,5,7,\"US\",\"2163\",\"DCA\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,70.00,44.00,214.00,,,,,,\n2015,5,7,\"US\",\"2164\",\"DCA\",\"LGA\",-5.00,-26.00,0.00,\"\",0.00,66.00,42.00,214.00,,,,,,\n2015,5,7,\"US\",\"2164\",\"LGA\",\"DCA\",-1.00,-10.00,0.00,\"\",0.00,74.00,41.00,214.00,,,,,,\n2015,5,7,\"US\",\"2165\",\"BOS\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,68.00,45.00,184.00,,,,,,\n2015,5,7,\"US\",\"2167\",\"DCA\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,83.00,50.00,214.00,,,,,,\n2015,5,7,\"US\",\"2167\",\"LGA\",\"DCA\",-5.00,-9.00,0.00,\"\",0.00,78.00,50.00,214.00,,,,,,\n2015,5,7,\"US\",\"2168\",\"BOS\",\"LGA\",75.00,59.00,0.00,\"\",0.00,65.00,41.00,184.00,59.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"US\",\"2168\",\"LGA\",\"BOS\",-7.00,-22.00,0.00,\"\",0.00,56.00,36.00,184.00,,,,,,\n2015,5,7,\"US\",\"2171\",\"BOS\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,78.00,41.00,184.00,,,,,,\n2015,5,7,\"US\",\"2172\",\"BOS\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,83.00,42.00,184.00,,,,,,\n2015,5,7,\"US\",\"2172\",\"LGA\",\"BOS\",-6.00,-7.00,0.00,\"\",0.00,72.00,32.00,184.00,,,,,,\n2015,5,7,\"US\",\"2174\",\"DCA\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,86.00,44.00,214.00,,,,,,\n2015,5,7,\"US\",\"2174\",\"LGA\",\"DCA\",-5.00,-15.00,0.00,\"\",0.00,69.00,42.00,214.00,,,,,,\n2015,5,8,\"US\",\"413\",\"JFK\",\"CLT\",,,1.00,\"B\",0.00,,,541.00,,,,,,\n2015,5,8,\"US\",\"425\",\"JFK\",\"CLT\",-4.00,-14.00,0.00,\"\",0.00,118.00,77.00,541.00,,,,,,\n2015,5,8,\"US\",\"425\",\"PHX\",\"JFK\",-7.00,-26.00,0.00,\"\",0.00,284.00,262.00,2153.00,,,,,,\n2015,5,8,\"US\",\"433\",\"JFK\",\"PHX\",74.00,56.00,0.00,\"\",0.00,320.00,294.00,2153.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,8,\"US\",\"468\",\"LGA\",\"CLT\",1.00,-3.00,0.00,\"\",0.00,115.00,81.00,544.00,,,,,,\n2015,5,11,\"US\",\"468\",\"LGA\",\"CLT\",-6.00,2.00,0.00,\"\",0.00,127.00,78.00,544.00,,,,,,\n2015,5,11,\"US\",\"622\",\"PHX\",\"JFK\",-1.00,38.00,0.00,\"\",0.00,329.00,286.00,2153.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,11,\"US\",\"632\",\"PHX\",\"JFK\",7.00,-26.00,0.00,\"\",0.00,252.00,237.00,2153.00,,,,,,\n2015,5,11,\"US\",\"639\",\"CLT\",\"JFK\",7.00,45.00,0.00,\"\",0.00,154.00,82.00,541.00,0.00,0.00,38.00,0.00,7.00,\n2015,5,11,\"US\",\"639\",\"JFK\",\"PHX\",35.00,24.00,0.00,\"\",0.00,323.00,294.00,2153.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"US\",\"654\",\"JFK\",\"PHX\",-6.00,-13.00,0.00,\"\",0.00,317.00,301.00,2153.00,,,,,,\n2015,5,11,\"US\",\"756\",\"BUF\",\"CLT\",-6.00,-10.00,0.00,\"\",0.00,107.00,81.00,546.00,,,,,,\n2015,5,11,\"US\",\"809\",\"PHL\",\"LGA\",1.00,18.00,0.00,\"\",0.00,84.00,31.00,96.00,1.00,0.00,17.00,0.00,0.00,\n2015,5,11,\"US\",\"821\",\"ROC\",\"CLT\",1.00,4.00,0.00,\"\",0.00,125.00,90.00,573.00,,,,,,\n2015,5,11,\"US\",\"826\",\"LGA\",\"CLT\",-5.00,-4.00,0.00,\"\",0.00,118.00,80.00,544.00,,,,,,\n2015,5,11,\"US\",\"853\",\"CLT\",\"BUF\",-3.00,4.00,0.00,\"\",0.00,112.00,76.00,546.00,,,,,,\n2015,5,11,\"US\",\"873\",\"JFK\",\"CLT\",0.00,-27.00,0.00,\"\",0.00,97.00,74.00,541.00,,,,,,\n2015,5,11,\"US\",\"876\",\"SYR\",\"CLT\",-4.00,10.00,0.00,\"\",0.00,142.00,99.00,603.00,,,,,,\n2015,5,11,\"US\",\"890\",\"LGA\",\"CLT\",46.00,38.00,0.00,\"\",0.00,117.00,81.00,544.00,0.00,0.00,0.00,0.00,38.00,\n2015,5,11,\"US\",\"896\",\"CLT\",\"ROC\",-5.00,-12.00,0.00,\"\",0.00,95.00,78.00,573.00,,,,,,\n2015,5,10,\"US\",\"513\",\"LGA\",\"CLT\",-7.00,-26.00,0.00,\"\",0.00,98.00,80.00,544.00,,,,,,\n2015,5,10,\"US\",\"613\",\"BUF\",\"CLT\",-4.00,-10.00,0.00,\"\",0.00,106.00,85.00,546.00,,,,,,\n2015,5,10,\"US\",\"622\",\"PHX\",\"JFK\",25.00,28.00,0.00,\"\",0.00,293.00,269.00,2153.00,0.00,0.00,3.00,0.00,25.00,\n2015,5,10,\"US\",\"632\",\"PHX\",\"JFK\",6.00,-2.00,0.00,\"\",0.00,277.00,258.00,2153.00,,,,,,\n2015,5,10,\"US\",\"639\",\"CLT\",\"JFK\",39.00,24.00,0.00,\"\",0.00,101.00,82.00,541.00,6.00,0.00,0.00,0.00,18.00,\n2015,5,10,\"US\",\"639\",\"JFK\",\"PHX\",26.00,40.00,0.00,\"\",0.00,348.00,297.00,2153.00,6.00,0.00,14.00,0.00,20.00,\n2015,5,10,\"US\",\"654\",\"JFK\",\"PHX\",-5.00,3.00,0.00,\"\",0.00,332.00,289.00,2153.00,,,,,,\n2015,5,10,\"US\",\"793\",\"JFK\",\"CLT\",6.00,32.00,0.00,\"\",0.00,147.00,87.00,541.00,6.00,0.00,26.00,0.00,0.00,\n2015,5,10,\"US\",\"809\",\"PHL\",\"LGA\",87.00,68.00,0.00,\"\",0.00,48.00,32.00,96.00,68.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"US\",\"833\",\"ALB\",\"CLT\",-7.00,-27.00,0.00,\"\",0.00,122.00,101.00,646.00,,,,,,\n2015,5,10,\"US\",\"834\",\"LGA\",\"PHL\",-5.00,25.00,0.00,\"\",0.00,104.00,34.00,96.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,10,\"US\",\"852\",\"LGA\",\"CLT\",-3.00,-8.00,0.00,\"\",0.00,117.00,93.00,544.00,,,,,,\n2015,5,10,\"US\",\"857\",\"PHL\",\"LGA\",-1.00,13.00,0.00,\"\",0.00,84.00,32.00,96.00,,,,,,\n2015,5,10,\"US\",\"890\",\"LGA\",\"CLT\",-7.00,-15.00,0.00,\"\",0.00,117.00,82.00,544.00,,,,,,\n2015,5,10,\"US\",\"893\",\"LGA\",\"CLT\",48.00,56.00,0.00,\"\",0.00,135.00,82.00,544.00,0.00,0.00,8.00,0.00,48.00,\n2015,5,10,\"US\",\"894\",\"LGA\",\"CLT\",36.00,28.00,0.00,\"\",0.00,115.00,82.00,544.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,10,\"US\",\"896\",\"CLT\",\"ROC\",-1.00,-12.00,0.00,\"\",0.00,91.00,77.00,573.00,,,,,,\n2015,5,10,\"US\",\"1715\",\"SYR\",\"CLT\",-4.00,-10.00,0.00,\"\",0.00,122.00,102.00,603.00,,,,,,\n2015,5,10,\"US\",\"1740\",\"CLT\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,111.00,80.00,544.00,,,,,,\n2015,5,10,\"US\",\"1750\",\"ALB\",\"CLT\",-5.00,5.00,0.00,\"\",0.00,141.00,105.00,646.00,,,,,,\n2015,5,10,\"US\",\"1760\",\"LGA\",\"CLT\",28.00,45.00,0.00,\"\",0.00,139.00,82.00,544.00,0.00,0.00,17.00,0.00,28.00,\n2015,5,10,\"US\",\"1781\",\"LGA\",\"CLT\",40.00,25.00,0.00,\"\",0.00,110.00,80.00,544.00,24.00,0.00,0.00,0.00,1.00,\n2015,5,10,\"US\",\"1799\",\"LGA\",\"CLT\",2.00,-13.00,0.00,\"\",0.00,107.00,80.00,544.00,,,,,,\n2015,5,10,\"US\",\"1830\",\"BUF\",\"CLT\",-10.00,-12.00,0.00,\"\",0.00,107.00,85.00,546.00,,,,,,\n2015,5,10,\"US\",\"1830\",\"CLT\",\"JFK\",-4.00,-17.00,0.00,\"\",0.00,94.00,79.00,541.00,,,,,,\n2015,5,10,\"US\",\"1838\",\"PHL\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,57.00,32.00,96.00,,,,,,\n2015,5,10,\"US\",\"1843\",\"LGA\",\"CLT\",-1.00,-2.00,0.00,\"\",0.00,118.00,85.00,544.00,,,,,,\n2015,5,10,\"US\",\"1860\",\"CLT\",\"LGA\",45.00,50.00,0.00,\"\",0.00,110.00,80.00,544.00,45.00,0.00,5.00,0.00,0.00,\n2015,5,10,\"US\",\"1873\",\"SYR\",\"CLT\",20.00,11.00,0.00,\"\",0.00,113.00,95.00,603.00,,,,,,\n2015,5,10,\"US\",\"1885\",\"CLT\",\"BUF\",-3.00,-3.00,0.00,\"\",0.00,101.00,78.00,546.00,,,,,,\n2015,5,10,\"US\",\"1898\",\"CLT\",\"JFK\",45.00,52.00,0.00,\"\",0.00,117.00,75.00,541.00,0.00,0.00,7.00,0.00,45.00,\n2015,5,10,\"US\",\"1909\",\"LGA\",\"PHL\",-8.00,-14.00,0.00,\"\",0.00,51.00,30.00,96.00,,,,,,\n2015,5,10,\"US\",\"1910\",\"CLT\",\"LGA\",-7.00,-5.00,0.00,\"\",0.00,118.00,80.00,544.00,,,,,,\n2015,5,10,\"US\",\"1923\",\"ROC\",\"CLT\",14.00,11.00,0.00,\"\",0.00,119.00,100.00,573.00,,,,,,\n2015,5,10,\"US\",\"1929\",\"BUF\",\"CLT\",-5.00,-8.00,0.00,\"\",0.00,108.00,92.00,546.00,,,,,,\n2015,5,10,\"US\",\"1933\",\"LGA\",\"PHL\",-8.00,-2.00,0.00,\"\",0.00,79.00,45.00,96.00,,,,,,\n2015,5,10,\"US\",\"1940\",\"CLT\",\"ALB\",-6.00,-2.00,0.00,\"\",0.00,122.00,91.00,646.00,,,,,,\n2015,5,10,\"US\",\"1942\",\"CLT\",\"BUF\",-3.00,-16.00,0.00,\"\",0.00,87.00,73.00,546.00,,,,,,\n2015,5,10,\"US\",\"1952\",\"CLT\",\"BUF\",-3.00,7.00,0.00,\"\",0.00,108.00,73.00,546.00,,,,,,\n2015,5,10,\"US\",\"1954\",\"CLT\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,107.00,79.00,544.00,,,,,,\n2015,5,10,\"US\",\"1971\",\"CLT\",\"SYR\",2.00,-3.00,0.00,\"\",0.00,100.00,82.00,603.00,,,,,,\n2015,5,10,\"US\",\"1988\",\"CLT\",\"ALB\",-5.00,3.00,0.00,\"\",0.00,133.00,95.00,646.00,,,,,,\n2015,5,10,\"US\",\"1991\",\"LGA\",\"PHL\",-10.00,-39.00,0.00,\"\",0.00,44.00,30.00,96.00,,,,,,\n2015,5,10,\"US\",\"2017\",\"CLT\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,106.00,78.00,541.00,,,,,,\n2015,5,10,\"US\",\"2036\",\"CLT\",\"SYR\",1.00,9.00,0.00,\"\",0.00,118.00,91.00,603.00,,,,,,\n2015,5,10,\"US\",\"2050\",\"CLT\",\"LGA\",2.00,3.00,0.00,\"\",0.00,109.00,81.00,544.00,,,,,,\n2015,5,10,\"US\",\"2057\",\"JFK\",\"CLT\",-5.00,2.00,0.00,\"\",0.00,123.00,91.00,541.00,,,,,,\n2015,5,10,\"US\",\"2062\",\"CLT\",\"LGA\",16.00,34.00,0.00,\"\",0.00,127.00,83.00,544.00,16.00,0.00,18.00,0.00,0.00,\n2015,5,10,\"US\",\"2064\",\"CLT\",\"LGA\",-3.00,4.00,0.00,\"\",0.00,121.00,78.00,544.00,,,,,,\n2015,5,10,\"US\",\"2066\",\"CLT\",\"LGA\",0.00,11.00,0.00,\"\",0.00,117.00,87.00,544.00,,,,,,\n2015,5,10,\"US\",\"2068\",\"CLT\",\"LGA\",45.00,53.00,0.00,\"\",0.00,115.00,78.00,544.00,0.00,0.00,8.00,0.00,45.00,\n2015,5,10,\"US\",\"2069\",\"JFK\",\"CLT\",-4.00,0.00,0.00,\"\",0.00,125.00,86.00,541.00,,,,,,\n2015,5,10,\"US\",\"2117\",\"DCA\",\"LGA\",12.00,11.00,0.00,\"\",0.00,68.00,48.00,214.00,,,,,,\n2015,5,10,\"US\",\"2118\",\"BOS\",\"LGA\",,,1.00,\"A\",0.00,,,184.00,,,,,,\n2015,5,10,\"US\",\"2118\",\"LGA\",\"BOS\",86.00,,1.00,\"A\",0.00,,,184.00,,,,,,\n2015,5,10,\"US\",\"2128\",\"LGA\",\"BOS\",140.00,125.00,0.00,\"\",0.00,58.00,39.00,184.00,0.00,0.00,0.00,0.00,125.00,\n2015,5,10,\"US\",\"2133\",\"DCA\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,74.00,47.00,214.00,,,,,,\n2015,5,10,\"US\",\"2133\",\"LGA\",\"DCA\",-9.00,45.00,0.00,\"\",0.00,131.00,42.00,214.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,10,\"US\",\"2135\",\"DCA\",\"LGA\",4.00,-8.00,0.00,\"\",0.00,64.00,43.00,214.00,,,,,,\n2015,5,10,\"US\",\"2135\",\"LGA\",\"DCA\",-7.00,-4.00,0.00,\"\",0.00,78.00,43.00,214.00,,,,,,\n2015,5,10,\"US\",\"2136\",\"BOS\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,66.00,42.00,184.00,,,,,,\n2015,5,10,\"US\",\"2137\",\"BOS\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,64.00,43.00,184.00,,,,,,\n2015,5,10,\"US\",\"2143\",\"DCA\",\"LGA\",51.00,50.00,0.00,\"\",0.00,88.00,47.00,214.00,19.00,0.00,0.00,0.00,31.00,\n2015,5,10,\"US\",\"2143\",\"LGA\",\"DCA\",58.00,44.00,0.00,\"\",0.00,67.00,41.00,214.00,7.00,0.00,0.00,0.00,37.00,\n2015,5,10,\"US\",\"2144\",\"LGA\",\"DCA\",-9.00,-24.00,0.00,\"\",0.00,67.00,42.00,214.00,,,,,,\n2015,5,10,\"US\",\"2145\",\"DCA\",\"LGA\",2.00,-12.00,0.00,\"\",0.00,74.00,45.00,214.00,,,,,,\n2015,5,10,\"US\",\"2145\",\"LGA\",\"DCA\",-2.00,27.00,0.00,\"\",0.00,112.00,52.00,214.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,10,\"US\",\"2146\",\"BOS\",\"LGA\",-5.00,8.00,0.00,\"\",0.00,95.00,42.00,184.00,,,,,,\n2015,5,10,\"US\",\"2146\",\"LGA\",\"BOS\",-8.00,-16.00,0.00,\"\",0.00,60.00,38.00,184.00,,,,,,\n2015,5,10,\"US\",\"2147\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,10,\"US\",\"2153\",\"DCA\",\"LGA\",44.00,64.00,0.00,\"\",0.00,109.00,41.00,214.00,9.00,0.00,20.00,0.00,35.00,\n2015,5,10,\"US\",\"2153\",\"LGA\",\"DCA\",70.00,78.00,0.00,\"\",0.00,88.00,43.00,214.00,7.00,0.00,8.00,0.00,63.00,\n2015,5,10,\"US\",\"2154\",\"DCA\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,77.00,41.00,214.00,,,,,,\n2015,5,10,\"US\",\"2154\",\"LGA\",\"DCA\",-6.00,-16.00,0.00,\"\",0.00,66.00,43.00,214.00,,,,,,\n2015,5,10,\"US\",\"2155\",\"DCA\",\"LGA\",24.00,-12.00,0.00,\"\",0.00,59.00,40.00,214.00,,,,,,\n2015,5,10,\"US\",\"2156\",\"LGA\",\"BOS\",-8.00,2.00,0.00,\"\",0.00,86.00,36.00,184.00,,,,,,\n2015,5,10,\"US\",\"2157\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,10,\"US\",\"2157\",\"LGA\",\"DCA\",2.00,8.00,0.00,\"\",0.00,88.00,43.00,214.00,,,,,,\n2015,5,10,\"US\",\"2158\",\"BOS\",\"LGA\",-7.00,1.00,0.00,\"\",0.00,88.00,42.00,184.00,,,,,,\n2015,5,10,\"US\",\"2164\",\"DCA\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,78.00,46.00,214.00,,,,,,\n2015,5,10,\"US\",\"2164\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,10,\"US\",\"2167\",\"DCA\",\"LGA\",6.00,0.00,0.00,\"\",0.00,80.00,38.00,214.00,,,,,,\n2015,5,10,\"US\",\"2167\",\"LGA\",\"DCA\",-1.00,9.00,0.00,\"\",0.00,92.00,42.00,214.00,,,,,,\n2015,5,10,\"US\",\"2168\",\"BOS\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,70.00,42.00,184.00,,,,,,\n2015,5,10,\"US\",\"2168\",\"LGA\",\"BOS\",-8.00,-16.00,0.00,\"\",0.00,63.00,38.00,184.00,,,,,,\n2015,5,10,\"US\",\"2174\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,10,\"US\",\"2174\",\"LGA\",\"DCA\",28.00,19.00,0.00,\"\",0.00,70.00,40.00,214.00,1.00,0.00,0.00,0.00,18.00,\n2015,5,11,\"US\",\"413\",\"JFK\",\"CLT\",3.00,-13.00,0.00,\"\",0.00,100.00,77.00,541.00,,,,,,\n2015,5,11,\"US\",\"425\",\"JFK\",\"CLT\",-6.00,-30.00,0.00,\"\",0.00,104.00,78.00,541.00,,,,,,\n2015,5,11,\"US\",\"425\",\"PHX\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,286.00,267.00,2153.00,,,,,,\n2015,5,11,\"US\",\"433\",\"JFK\",\"PHX\",7.00,0.00,0.00,\"\",0.00,331.00,299.00,2153.00,,,,,,\n2015,5,12,\"US\",\"1988\",\"CLT\",\"ALB\",-5.00,-11.00,0.00,\"\",0.00,119.00,92.00,646.00,,,,,,\n2015,5,12,\"US\",\"2017\",\"CLT\",\"JFK\",54.00,39.00,0.00,\"\",0.00,95.00,79.00,541.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,12,\"US\",\"2036\",\"CLT\",\"SYR\",33.00,25.00,0.00,\"\",0.00,102.00,83.00,603.00,6.00,0.00,0.00,0.00,19.00,\n2015,5,12,\"US\",\"2042\",\"CLT\",\"JFK\",26.00,40.00,0.00,\"\",0.00,120.00,84.00,541.00,26.00,0.00,14.00,0.00,0.00,\n2015,5,12,\"US\",\"2050\",\"CLT\",\"LGA\",15.00,15.00,0.00,\"\",0.00,108.00,74.00,544.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"US\",\"2060\",\"CLT\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,105.00,80.00,544.00,,,,,,\n2015,5,12,\"US\",\"2062\",\"CLT\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,112.00,78.00,544.00,,,,,,\n2015,5,12,\"US\",\"2064\",\"CLT\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,108.00,74.00,544.00,,,,,,\n2015,5,12,\"US\",\"2066\",\"CLT\",\"LGA\",64.00,84.00,0.00,\"\",0.00,126.00,78.00,544.00,64.00,0.00,20.00,0.00,0.00,\n2015,5,12,\"US\",\"2068\",\"CLT\",\"LGA\",-4.00,-3.00,0.00,\"\",0.00,108.00,80.00,544.00,,,,,,\n2015,5,12,\"US\",\"2069\",\"JFK\",\"CLT\",-2.00,-18.00,0.00,\"\",0.00,105.00,84.00,541.00,,,,,,\n2015,5,12,\"US\",\"2115\",\"LGA\",\"DCA\",-8.00,2.00,0.00,\"\",0.00,73.00,48.00,214.00,,,,,,\n2015,5,12,\"US\",\"2117\",\"DCA\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,54.00,34.00,214.00,,,,,,\n2015,5,12,\"US\",\"2118\",\"BOS\",\"LGA\",-7.00,8.00,0.00,\"\",0.00,96.00,40.00,184.00,,,,,,\n2015,5,12,\"US\",\"2118\",\"LGA\",\"BOS\",-5.00,-16.00,0.00,\"\",0.00,67.00,37.00,184.00,,,,,,\n2015,5,12,\"US\",\"2121\",\"BOS\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,70.00,46.00,184.00,,,,,,\n2015,5,12,\"US\",\"2121\",\"LGA\",\"BOS\",-6.00,-23.00,0.00,\"\",0.00,61.00,30.00,184.00,,,,,,\n2015,5,12,\"US\",\"2122\",\"LGA\",\"BOS\",162.00,144.00,0.00,\"\",0.00,56.00,34.00,184.00,3.00,0.00,0.00,0.00,141.00,\n2015,5,12,\"US\",\"2123\",\"LGA\",\"DCA\",-5.00,1.00,0.00,\"\",0.00,76.00,45.00,214.00,,,,,,\n2015,5,12,\"US\",\"2125\",\"LGA\",\"DCA\",-3.00,-15.00,0.00,\"\",0.00,72.00,42.00,214.00,,,,,,\n2015,5,12,\"US\",\"2126\",\"BOS\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,71.00,45.00,184.00,,,,,,\n2015,5,12,\"US\",\"2126\",\"LGA\",\"BOS\",-7.00,-13.00,0.00,\"\",0.00,56.00,33.00,184.00,,,,,,\n2015,5,12,\"US\",\"2128\",\"LGA\",\"BOS\",-3.00,-3.00,0.00,\"\",0.00,73.00,38.00,184.00,,,,,,\n2015,5,12,\"US\",\"2131\",\"BOS\",\"LGA\",-7.00,-10.00,0.00,\"\",0.00,78.00,44.00,184.00,,,,,,\n2015,5,12,\"US\",\"2131\",\"LGA\",\"BOS\",-8.00,-19.00,0.00,\"\",0.00,61.00,41.00,184.00,,,,,,\n2015,5,12,\"US\",\"2133\",\"DCA\",\"LGA\",50.00,16.00,0.00,\"\",0.00,56.00,42.00,214.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"US\",\"2133\",\"LGA\",\"DCA\",10.00,-9.00,0.00,\"\",0.00,58.00,43.00,214.00,,,,,,\n2015,5,12,\"US\",\"2135\",\"DCA\",\"LGA\",-6.00,-26.00,0.00,\"\",0.00,56.00,41.00,214.00,,,,,,\n2015,5,12,\"US\",\"2135\",\"LGA\",\"DCA\",-8.00,-13.00,0.00,\"\",0.00,70.00,45.00,214.00,,,,,,\n2015,5,12,\"US\",\"2136\",\"BOS\",\"LGA\",-9.00,-12.00,0.00,\"\",0.00,73.00,44.00,184.00,,,,,,\n2015,5,12,\"US\",\"2136\",\"LGA\",\"BOS\",-2.00,-9.00,0.00,\"\",0.00,71.00,47.00,184.00,,,,,,\n2015,5,12,\"US\",\"2137\",\"DCA\",\"LGA\",-7.00,4.00,0.00,\"\",0.00,79.00,40.00,214.00,,,,,,\n2015,5,12,\"US\",\"2137\",\"LGA\",\"DCA\",-2.00,12.00,0.00,\"\",0.00,99.00,45.00,214.00,,,,,,\n2015,5,12,\"US\",\"2141\",\"BOS\",\"LGA\",0.00,9.00,0.00,\"\",0.00,93.00,45.00,184.00,,,,,,\n2015,5,12,\"US\",\"2141\",\"LGA\",\"BOS\",-4.00,19.00,0.00,\"\",0.00,100.00,42.00,184.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,12,\"US\",\"2143\",\"DCA\",\"LGA\",-3.00,-39.00,0.00,\"\",0.00,53.00,38.00,214.00,,,,,,\n2015,5,12,\"US\",\"2143\",\"LGA\",\"DCA\",-4.00,-10.00,0.00,\"\",0.00,75.00,47.00,214.00,,,,,,\n2015,5,12,\"US\",\"2144\",\"DCA\",\"LGA\",-9.00,-17.00,0.00,\"\",0.00,71.00,40.00,214.00,,,,,,\n2015,5,12,\"US\",\"2144\",\"LGA\",\"DCA\",-7.00,-26.00,0.00,\"\",0.00,63.00,44.00,214.00,,,,,,\n2015,5,12,\"US\",\"2145\",\"DCA\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,90.00,41.00,214.00,,,,,,\n2015,5,12,\"US\",\"2145\",\"LGA\",\"DCA\",-3.00,-8.00,0.00,\"\",0.00,78.00,44.00,214.00,,,,,,\n2015,5,12,\"US\",\"2146\",\"BOS\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,75.00,43.00,184.00,,,,,,\n2015,5,12,\"US\",\"2146\",\"LGA\",\"BOS\",-4.00,-17.00,0.00,\"\",0.00,55.00,38.00,184.00,,,,,,\n2015,5,12,\"US\",\"2147\",\"DCA\",\"LGA\",17.00,-7.00,0.00,\"\",0.00,64.00,39.00,214.00,,,,,,\n2015,5,12,\"US\",\"2147\",\"LGA\",\"DCA\",-6.00,-27.00,0.00,\"\",0.00,61.00,46.00,214.00,,,,,,\n2015,5,12,\"US\",\"2148\",\"BOS\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,60.00,41.00,184.00,,,,,,\n2015,5,12,\"US\",\"2151\",\"LGA\",\"BOS\",8.00,6.00,0.00,\"\",0.00,66.00,35.00,184.00,,,,,,\n2015,5,12,\"US\",\"2152\",\"BOS\",\"LGA\",-9.00,-17.00,0.00,\"\",0.00,73.00,45.00,184.00,,,,,,\n2015,5,12,\"US\",\"2152\",\"LGA\",\"BOS\",-7.00,-8.00,0.00,\"\",0.00,67.00,34.00,184.00,,,,,,\n2015,5,12,\"US\",\"2153\",\"DCA\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,81.00,43.00,214.00,,,,,,\n2015,5,12,\"US\",\"2153\",\"LGA\",\"DCA\",-7.00,-10.00,0.00,\"\",0.00,77.00,49.00,214.00,,,,,,\n2015,5,12,\"US\",\"2154\",\"DCA\",\"LGA\",0.00,-23.00,0.00,\"\",0.00,53.00,37.00,214.00,,,,,,\n2015,5,12,\"US\",\"2154\",\"LGA\",\"DCA\",-8.00,-22.00,0.00,\"\",0.00,62.00,48.00,214.00,,,,,,\n2015,5,12,\"US\",\"2155\",\"DCA\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,82.00,43.00,214.00,,,,,,\n2015,5,12,\"US\",\"2156\",\"BOS\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,69.00,42.00,184.00,,,,,,\n2015,5,12,\"US\",\"2156\",\"LGA\",\"BOS\",-1.00,17.00,0.00,\"\",0.00,94.00,64.00,184.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,12,\"US\",\"2157\",\"DCA\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,83.00,43.00,214.00,,,,,,\n2015,5,12,\"US\",\"2157\",\"LGA\",\"DCA\",-5.00,-10.00,0.00,\"\",0.00,77.00,46.00,214.00,,,,,,\n2015,5,12,\"US\",\"2158\",\"BOS\",\"LGA\",-8.00,-18.00,0.00,\"\",0.00,70.00,44.00,184.00,,,,,,\n2015,5,12,\"US\",\"2158\",\"LGA\",\"BOS\",-5.00,-9.00,0.00,\"\",0.00,60.00,33.00,184.00,,,,,,\n2015,5,12,\"US\",\"2162\",\"BOS\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,69.00,44.00,184.00,,,,,,\n2015,5,12,\"US\",\"2162\",\"LGA\",\"BOS\",-6.00,-16.00,0.00,\"\",0.00,62.00,45.00,184.00,,,,,,\n2015,5,12,\"US\",\"2163\",\"DCA\",\"LGA\",-8.00,-14.00,0.00,\"\",0.00,77.00,40.00,214.00,,,,,,\n2015,5,12,\"US\",\"2164\",\"DCA\",\"LGA\",-7.00,-2.00,0.00,\"\",0.00,92.00,42.00,214.00,,,,,,\n2015,5,12,\"US\",\"2164\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,12,\"US\",\"2165\",\"BOS\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,67.00,44.00,184.00,,,,,,\n2015,5,12,\"US\",\"2167\",\"DCA\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,80.00,44.00,214.00,,,,,,\n2015,5,12,\"US\",\"2167\",\"LGA\",\"DCA\",-3.00,0.00,0.00,\"\",0.00,85.00,46.00,214.00,,,,,,\n2015,5,12,\"US\",\"2168\",\"BOS\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,80.00,44.00,184.00,,,,,,\n2015,5,12,\"US\",\"2168\",\"LGA\",\"BOS\",-6.00,-8.00,0.00,\"\",0.00,69.00,41.00,184.00,,,,,,\n2015,5,12,\"US\",\"2171\",\"BOS\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,72.00,43.00,184.00,,,,,,\n2015,5,12,\"US\",\"2172\",\"BOS\",\"LGA\",-7.00,-4.00,0.00,\"\",0.00,84.00,41.00,184.00,,,,,,\n2015,5,12,\"US\",\"2172\",\"LGA\",\"BOS\",-5.00,-20.00,0.00,\"\",0.00,58.00,31.00,184.00,,,,,,\n2015,5,12,\"US\",\"2174\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,12,\"US\",\"2174\",\"LGA\",\"DCA\",-3.00,-15.00,0.00,\"\",0.00,67.00,46.00,214.00,,,,,,\n2015,5,13,\"US\",\"413\",\"JFK\",\"CLT\",0.00,-5.00,0.00,\"\",0.00,111.00,92.00,541.00,,,,,,\n2015,5,13,\"US\",\"425\",\"JFK\",\"CLT\",-1.00,-16.00,0.00,\"\",0.00,113.00,80.00,541.00,,,,,,\n2015,5,13,\"US\",\"425\",\"PHX\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,293.00,255.00,2153.00,,,,,,\n2015,5,13,\"US\",\"433\",\"JFK\",\"PHX\",-13.00,6.00,0.00,\"\",0.00,357.00,301.00,2153.00,,,,,,\n2015,5,13,\"US\",\"468\",\"LGA\",\"CLT\",5.00,14.00,0.00,\"\",0.00,128.00,89.00,544.00,,,,,,\n2015,5,13,\"US\",\"622\",\"PHX\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,284.00,257.00,2153.00,,,,,,\n2015,5,13,\"US\",\"632\",\"PHX\",\"JFK\",13.00,6.00,0.00,\"\",0.00,278.00,256.00,2153.00,,,,,,\n2015,5,13,\"US\",\"639\",\"CLT\",\"JFK\",32.00,16.00,0.00,\"\",0.00,100.00,76.00,541.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"US\",\"639\",\"JFK\",\"PHX\",11.00,-3.00,0.00,\"\",0.00,320.00,277.00,2153.00,,,,,,\n2015,5,13,\"US\",\"654\",\"JFK\",\"PHX\",-8.00,-17.00,0.00,\"\",0.00,315.00,285.00,2153.00,,,,,,\n2015,5,13,\"US\",\"756\",\"BUF\",\"CLT\",-1.00,-7.00,0.00,\"\",0.00,105.00,87.00,546.00,,,,,,\n2015,5,11,\"US\",\"2136\",\"LGA\",\"BOS\",,,1.00,\"A\",0.00,,,184.00,,,,,,\n2015,5,11,\"US\",\"2137\",\"DCA\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,61.00,43.00,214.00,,,,,,\n2015,5,11,\"US\",\"2137\",\"LGA\",\"DCA\",-6.00,-17.00,0.00,\"\",0.00,74.00,46.00,214.00,,,,,,\n2015,5,11,\"US\",\"2141\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,11,\"US\",\"2141\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,11,\"US\",\"2143\",\"DCA\",\"LGA\",-3.00,-7.00,0.00,\"\",0.00,85.00,47.00,214.00,,,,,,\n2015,5,11,\"US\",\"2143\",\"LGA\",\"DCA\",-3.00,-5.00,0.00,\"\",0.00,79.00,48.00,214.00,,,,,,\n2015,5,11,\"US\",\"2144\",\"DCA\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,69.00,42.00,214.00,,,,,,\n2015,5,11,\"US\",\"2144\",\"LGA\",\"DCA\",-6.00,-7.00,0.00,\"\",0.00,81.00,45.00,214.00,,,,,,\n2015,5,11,\"US\",\"2145\",\"DCA\",\"LGA\",103.00,126.00,0.00,\"\",0.00,111.00,44.00,214.00,0.00,0.00,126.00,0.00,0.00,\n2015,5,11,\"US\",\"2145\",\"LGA\",\"DCA\",121.00,129.00,0.00,\"\",0.00,91.00,43.00,214.00,0.00,0.00,8.00,0.00,121.00,\n2015,5,11,\"US\",\"2146\",\"BOS\",\"LGA\",39.00,88.00,0.00,\"\",0.00,131.00,42.00,184.00,0.00,0.00,88.00,0.00,0.00,\n2015,5,11,\"US\",\"2146\",\"LGA\",\"BOS\",-1.00,30.00,0.00,\"\",0.00,99.00,44.00,184.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,11,\"US\",\"2147\",\"DCA\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,76.00,42.00,214.00,,,,,,\n2015,5,11,\"US\",\"2147\",\"LGA\",\"DCA\",-3.00,-7.00,0.00,\"\",0.00,78.00,52.00,214.00,,,,,,\n2015,5,11,\"US\",\"2148\",\"BOS\",\"LGA\",,,1.00,\"A\",0.00,,,184.00,,,,,,\n2015,5,11,\"US\",\"2151\",\"LGA\",\"BOS\",-1.00,-3.00,0.00,\"\",0.00,66.00,35.00,184.00,,,,,,\n2015,5,11,\"US\",\"2152\",\"BOS\",\"LGA\",30.00,43.00,0.00,\"\",0.00,94.00,42.00,184.00,7.00,0.00,13.00,0.00,23.00,\n2015,5,11,\"US\",\"2152\",\"LGA\",\"BOS\",41.00,45.00,0.00,\"\",0.00,72.00,43.00,184.00,0.00,0.00,4.00,0.00,41.00,\n2015,5,11,\"US\",\"2153\",\"DCA\",\"LGA\",56.00,46.00,0.00,\"\",0.00,79.00,41.00,214.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,11,\"US\",\"2153\",\"LGA\",\"DCA\",40.00,44.00,0.00,\"\",0.00,84.00,62.00,214.00,0.00,0.00,4.00,0.00,40.00,\n2015,5,11,\"US\",\"2154\",\"DCA\",\"LGA\",-8.00,-6.00,0.00,\"\",0.00,78.00,42.00,214.00,,,,,,\n2015,5,11,\"US\",\"2154\",\"LGA\",\"DCA\",-4.00,-1.00,0.00,\"\",0.00,79.00,42.00,214.00,,,,,,\n2015,5,11,\"US\",\"2155\",\"DCA\",\"LGA\",116.00,103.00,0.00,\"\",0.00,82.00,58.00,214.00,0.00,0.00,0.00,0.00,103.00,\n2015,5,11,\"US\",\"2156\",\"BOS\",\"LGA\",69.00,47.00,0.00,\"\",0.00,61.00,44.00,184.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,11,\"US\",\"2156\",\"LGA\",\"BOS\",89.00,82.00,0.00,\"\",0.00,69.00,34.00,184.00,8.00,0.00,0.00,0.00,74.00,\n2015,5,11,\"US\",\"2157\",\"DCA\",\"LGA\",9.00,128.00,0.00,\"\",0.00,207.00,47.00,214.00,9.00,0.00,119.00,0.00,0.00,\n2015,5,11,\"US\",\"2157\",\"LGA\",\"DCA\",142.00,150.00,0.00,\"\",0.00,90.00,59.00,214.00,16.00,0.00,8.00,0.00,126.00,\n2015,5,11,\"US\",\"2158\",\"BOS\",\"LGA\",-6.00,-3.00,0.00,\"\",0.00,83.00,41.00,184.00,,,,,,\n2015,5,11,\"US\",\"2158\",\"LGA\",\"BOS\",17.00,15.00,0.00,\"\",0.00,62.00,41.00,184.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,11,\"US\",\"2162\",\"BOS\",\"LGA\",7.00,0.00,0.00,\"\",0.00,77.00,45.00,184.00,,,,,,\n2015,5,11,\"US\",\"2162\",\"LGA\",\"BOS\",32.00,33.00,0.00,\"\",0.00,73.00,33.00,184.00,0.00,0.00,1.00,0.00,32.00,\n2015,5,11,\"US\",\"2163\",\"DCA\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,83.00,43.00,214.00,,,,,,\n2015,5,11,\"US\",\"2164\",\"DCA\",\"LGA\",-5.00,105.00,0.00,\"\",0.00,197.00,49.00,214.00,0.00,0.00,105.00,0.00,0.00,\n2015,5,11,\"US\",\"2164\",\"LGA\",\"DCA\",106.00,99.00,0.00,\"\",0.00,76.00,57.00,214.00,4.00,0.00,0.00,0.00,95.00,\n2015,5,11,\"US\",\"2165\",\"BOS\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,71.00,43.00,184.00,,,,,,\n2015,5,11,\"US\",\"2167\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,11,\"US\",\"2167\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,11,\"US\",\"2168\",\"BOS\",\"LGA\",-4.00,5.00,0.00,\"\",0.00,90.00,43.00,184.00,,,,,,\n2015,5,11,\"US\",\"2168\",\"LGA\",\"BOS\",-1.00,2.00,0.00,\"\",0.00,74.00,36.00,184.00,,,,,,\n2015,5,11,\"US\",\"2171\",\"BOS\",\"LGA\",11.00,4.00,0.00,\"\",0.00,73.00,42.00,184.00,,,,,,\n2015,5,11,\"US\",\"2172\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,11,\"US\",\"2172\",\"LGA\",\"BOS\",60.00,63.00,0.00,\"\",0.00,76.00,32.00,184.00,0.00,60.00,3.00,0.00,0.00,\n2015,5,11,\"US\",\"2174\",\"DCA\",\"LGA\",99.00,80.00,0.00,\"\",0.00,71.00,44.00,214.00,6.00,0.00,0.00,0.00,74.00,\n2015,5,11,\"US\",\"2174\",\"LGA\",\"DCA\",81.00,60.00,0.00,\"\",0.00,58.00,40.00,214.00,1.00,0.00,0.00,0.00,59.00,\n2015,5,12,\"US\",\"413\",\"JFK\",\"CLT\",-4.00,-13.00,0.00,\"\",0.00,107.00,78.00,541.00,,,,,,\n2015,5,12,\"US\",\"425\",\"JFK\",\"CLT\",-5.00,-25.00,0.00,\"\",0.00,108.00,84.00,541.00,,,,,,\n2015,5,12,\"US\",\"425\",\"PHX\",\"JFK\",,,1.00,\"C\",0.00,,,2153.00,,,,,,\n2015,5,12,\"US\",\"433\",\"JFK\",\"PHX\",-5.00,-7.00,0.00,\"\",0.00,336.00,311.00,2153.00,,,,,,\n2015,5,12,\"US\",\"468\",\"LGA\",\"CLT\",-3.00,-4.00,0.00,\"\",0.00,118.00,85.00,544.00,,,,,,\n2015,5,12,\"US\",\"622\",\"PHX\",\"JFK\",5.00,-4.00,0.00,\"\",0.00,281.00,246.00,2153.00,,,,,,\n2015,5,12,\"US\",\"632\",\"PHX\",\"JFK\",-5.00,-20.00,0.00,\"\",0.00,270.00,237.00,2153.00,,,,,,\n2015,5,12,\"US\",\"639\",\"CLT\",\"JFK\",67.00,49.00,0.00,\"\",0.00,98.00,77.00,541.00,0.00,0.00,49.00,0.00,0.00,\n2015,5,12,\"US\",\"639\",\"JFK\",\"PHX\",,,1.00,\"C\",0.00,,,2153.00,,,,,,\n2015,5,12,\"US\",\"654\",\"JFK\",\"PHX\",-5.00,-7.00,0.00,\"\",0.00,322.00,306.00,2153.00,,,,,,\n2015,5,12,\"US\",\"756\",\"BUF\",\"CLT\",0.00,-1.00,0.00,\"\",0.00,110.00,90.00,546.00,,,,,,\n2015,5,12,\"US\",\"809\",\"PHL\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,66.00,29.00,96.00,,,,,,\n2015,5,12,\"US\",\"821\",\"ROC\",\"CLT\",0.00,-1.00,0.00,\"\",0.00,121.00,101.00,573.00,,,,,,\n2015,5,12,\"US\",\"826\",\"LGA\",\"CLT\",-6.00,-2.00,0.00,\"\",0.00,121.00,83.00,544.00,,,,,,\n2015,5,12,\"US\",\"853\",\"CLT\",\"BUF\",3.00,10.00,0.00,\"\",0.00,112.00,83.00,546.00,,,,,,\n2015,5,12,\"US\",\"873\",\"JFK\",\"CLT\",52.00,33.00,0.00,\"\",0.00,105.00,82.00,541.00,8.00,0.00,0.00,0.00,25.00,\n2015,5,12,\"US\",\"876\",\"SYR\",\"CLT\",-3.00,-6.00,0.00,\"\",0.00,125.00,107.00,603.00,,,,,,\n2015,5,12,\"US\",\"890\",\"LGA\",\"CLT\",13.00,1.00,0.00,\"\",0.00,113.00,84.00,544.00,,,,,,\n2015,5,12,\"US\",\"896\",\"CLT\",\"ROC\",-2.00,-8.00,0.00,\"\",0.00,96.00,80.00,573.00,,,,,,\n2015,5,12,\"US\",\"1740\",\"CLT\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,99.00,75.00,544.00,,,,,,\n2015,5,12,\"US\",\"1750\",\"ALB\",\"CLT\",15.00,3.00,0.00,\"\",0.00,119.00,105.00,646.00,,,,,,\n2015,5,12,\"US\",\"1781\",\"LGA\",\"CLT\",67.00,66.00,0.00,\"\",0.00,124.00,92.00,544.00,0.00,0.00,0.00,0.00,66.00,\n2015,5,12,\"US\",\"1810\",\"LGA\",\"CLT\",0.00,22.00,0.00,\"\",0.00,144.00,85.00,544.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,12,\"US\",\"1815\",\"LGA\",\"CLT\",-9.00,-7.00,0.00,\"\",0.00,124.00,89.00,544.00,,,,,,\n2015,5,12,\"US\",\"1830\",\"CLT\",\"JFK\",-5.00,-8.00,0.00,\"\",0.00,104.00,81.00,541.00,,,,,,\n2015,5,12,\"US\",\"1849\",\"LGA\",\"CLT\",-4.00,-31.00,0.00,\"\",0.00,106.00,82.00,544.00,,,,,,\n2015,5,12,\"US\",\"1851\",\"LGA\",\"CLT\",-7.00,-7.00,0.00,\"\",0.00,123.00,85.00,544.00,,,,,,\n2015,5,12,\"US\",\"1873\",\"BUF\",\"CLT\",6.00,4.00,0.00,\"\",0.00,106.00,85.00,546.00,,,,,,\n2015,5,12,\"US\",\"1885\",\"CLT\",\"BUF\",-3.00,-2.00,0.00,\"\",0.00,102.00,77.00,546.00,,,,,,\n2015,5,12,\"US\",\"1898\",\"CLT\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,103.00,72.00,541.00,,,,,,\n2015,5,12,\"US\",\"1908\",\"LGA\",\"CLT\",-5.00,-18.00,0.00,\"\",0.00,109.00,86.00,544.00,,,,,,\n2015,5,12,\"US\",\"1910\",\"CLT\",\"LGA\",1.00,-17.00,0.00,\"\",0.00,98.00,76.00,544.00,,,,,,\n2015,5,12,\"US\",\"1916\",\"SYR\",\"CLT\",22.00,21.00,0.00,\"\",0.00,121.00,105.00,603.00,6.00,0.00,0.00,0.00,15.00,\n2015,5,12,\"US\",\"1919\",\"JFK\",\"CLT\",57.00,56.00,0.00,\"\",0.00,120.00,84.00,541.00,18.00,0.00,0.00,0.00,38.00,\n2015,5,12,\"US\",\"1923\",\"ALB\",\"CLT\",-5.00,-2.00,0.00,\"\",0.00,145.00,115.00,646.00,,,,,,\n2015,5,12,\"US\",\"1933\",\"LGA\",\"PHL\",-9.00,-27.00,0.00,\"\",0.00,55.00,37.00,96.00,,,,,,\n2015,5,12,\"US\",\"1940\",\"CLT\",\"ALB\",-8.00,-20.00,0.00,\"\",0.00,106.00,86.00,646.00,,,,,,\n2015,5,12,\"US\",\"1942\",\"CLT\",\"BUF\",-4.00,-14.00,0.00,\"\",0.00,90.00,73.00,546.00,,,,,,\n2015,5,12,\"US\",\"1951\",\"LGA\",\"CLT\",-5.00,-16.00,0.00,\"\",0.00,111.00,86.00,544.00,,,,,,\n2015,5,12,\"US\",\"1952\",\"CLT\",\"BUF\",-9.00,-15.00,0.00,\"\",0.00,92.00,76.00,546.00,,,,,,\n2015,5,12,\"US\",\"1954\",\"CLT\",\"LGA\",1.00,-9.00,0.00,\"\",0.00,98.00,74.00,544.00,,,,,,\n2015,5,12,\"US\",\"1971\",\"CLT\",\"SYR\",-2.00,-13.00,0.00,\"\",0.00,94.00,81.00,603.00,,,,,,\n2015,5,12,\"US\",\"1977\",\"BUF\",\"CLT\",-7.00,-2.00,0.00,\"\",0.00,114.00,86.00,546.00,,,,,,\n2015,5,12,\"US\",\"1981\",\"CLT\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,109.00,70.00,544.00,,,,,,\n2015,5,12,\"US\",\"1983\",\"BUF\",\"CLT\",-1.00,2.00,0.00,\"\",0.00,115.00,96.00,546.00,,,,,,\n2015,5,14,\"US\",\"1781\",\"LGA\",\"CLT\",-4.00,-24.00,0.00,\"\",0.00,105.00,79.00,544.00,,,,,,\n2015,5,14,\"US\",\"1810\",\"LGA\",\"CLT\",-2.00,7.00,0.00,\"\",0.00,131.00,79.00,544.00,,,,,,\n2015,5,14,\"US\",\"1815\",\"LGA\",\"CLT\",202.00,213.00,0.00,\"\",0.00,133.00,74.00,544.00,202.00,0.00,11.00,0.00,0.00,\n2015,5,14,\"US\",\"1830\",\"CLT\",\"JFK\",20.00,21.00,0.00,\"\",0.00,108.00,80.00,541.00,6.00,0.00,1.00,0.00,14.00,\n2015,5,14,\"US\",\"1849\",\"LGA\",\"CLT\",-4.00,12.00,0.00,\"\",0.00,149.00,90.00,544.00,,,,,,\n2015,5,14,\"US\",\"1851\",\"LGA\",\"CLT\",-5.00,-19.00,0.00,\"\",0.00,109.00,76.00,544.00,,,,,,\n2015,5,14,\"US\",\"1873\",\"BUF\",\"CLT\",-2.00,-7.00,0.00,\"\",0.00,103.00,83.00,546.00,,,,,,\n2015,5,14,\"US\",\"1885\",\"CLT\",\"BUF\",-3.00,8.00,0.00,\"\",0.00,112.00,79.00,546.00,,,,,,\n2015,5,14,\"US\",\"1898\",\"CLT\",\"JFK\",1.00,8.00,0.00,\"\",0.00,117.00,78.00,541.00,,,,,,\n2015,5,14,\"US\",\"1908\",\"LGA\",\"CLT\",-3.00,-12.00,0.00,\"\",0.00,113.00,77.00,544.00,,,,,,\n2015,5,14,\"US\",\"1910\",\"CLT\",\"LGA\",-4.00,2.00,0.00,\"\",0.00,122.00,81.00,544.00,,,,,,\n2015,5,14,\"US\",\"1916\",\"SYR\",\"CLT\",-4.00,-6.00,0.00,\"\",0.00,120.00,96.00,603.00,,,,,,\n2015,5,14,\"US\",\"1919\",\"JFK\",\"CLT\",21.00,33.00,0.00,\"\",0.00,133.00,78.00,541.00,21.00,0.00,12.00,0.00,0.00,\n2015,5,14,\"US\",\"1923\",\"ALB\",\"CLT\",-5.00,-29.00,0.00,\"\",0.00,118.00,100.00,646.00,,,,,,\n2015,5,14,\"US\",\"1933\",\"LGA\",\"PHL\",-3.00,14.00,0.00,\"\",0.00,90.00,41.00,96.00,,,,,,\n2015,5,14,\"US\",\"1940\",\"CLT\",\"ALB\",-10.00,3.00,0.00,\"\",0.00,131.00,86.00,646.00,,,,,,\n2015,5,14,\"US\",\"1942\",\"CLT\",\"BUF\",-1.00,0.00,0.00,\"\",0.00,101.00,83.00,546.00,,,,,,\n2015,5,14,\"US\",\"1951\",\"LGA\",\"CLT\",-3.00,-15.00,0.00,\"\",0.00,110.00,86.00,544.00,,,,,,\n2015,5,14,\"US\",\"1952\",\"CLT\",\"BUF\",-5.00,4.00,0.00,\"\",0.00,107.00,75.00,546.00,,,,,,\n2015,5,14,\"US\",\"1954\",\"CLT\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,99.00,81.00,544.00,,,,,,\n2015,5,14,\"US\",\"1971\",\"CLT\",\"SYR\",2.00,1.00,0.00,\"\",0.00,104.00,80.00,603.00,,,,,,\n2015,5,14,\"US\",\"1977\",\"BUF\",\"CLT\",-4.00,-6.00,0.00,\"\",0.00,107.00,89.00,546.00,,,,,,\n2015,5,14,\"US\",\"1981\",\"CLT\",\"LGA\",3.00,-1.00,0.00,\"\",0.00,101.00,74.00,544.00,,,,,,\n2015,5,14,\"US\",\"1983\",\"BUF\",\"CLT\",25.00,24.00,0.00,\"\",0.00,111.00,84.00,546.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"US\",\"1988\",\"CLT\",\"ALB\",-1.00,-1.00,0.00,\"\",0.00,125.00,96.00,646.00,,,,,,\n2015,5,14,\"US\",\"2017\",\"CLT\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,105.00,84.00,541.00,,,,,,\n2015,5,14,\"US\",\"2036\",\"CLT\",\"SYR\",-4.00,-9.00,0.00,\"\",0.00,105.00,87.00,603.00,,,,,,\n2015,5,14,\"US\",\"2042\",\"CLT\",\"JFK\",-3.00,-2.00,0.00,\"\",0.00,107.00,82.00,541.00,,,,,,\n2015,5,14,\"US\",\"2050\",\"CLT\",\"LGA\",8.00,12.00,0.00,\"\",0.00,112.00,80.00,544.00,,,,,,\n2015,5,14,\"US\",\"2060\",\"CLT\",\"LGA\",-9.00,-9.00,0.00,\"\",0.00,107.00,83.00,544.00,,,,,,\n2015,5,14,\"US\",\"2062\",\"CLT\",\"LGA\",40.00,65.00,0.00,\"\",0.00,134.00,114.00,544.00,40.00,0.00,25.00,0.00,0.00,\n2015,5,14,\"US\",\"2064\",\"CLT\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,106.00,78.00,544.00,,,,,,\n2015,5,14,\"US\",\"2066\",\"CLT\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,100.00,81.00,544.00,,,,,,\n2015,5,14,\"US\",\"2068\",\"CLT\",\"LGA\",-4.00,-3.00,0.00,\"\",0.00,108.00,83.00,544.00,,,,,,\n2015,5,14,\"US\",\"2069\",\"JFK\",\"CLT\",37.00,21.00,0.00,\"\",0.00,105.00,85.00,541.00,10.00,0.00,0.00,0.00,11.00,\n2015,5,14,\"US\",\"2115\",\"LGA\",\"DCA\",-4.00,5.00,0.00,\"\",0.00,72.00,41.00,214.00,,,,,,\n2015,5,14,\"US\",\"2117\",\"DCA\",\"LGA\",-8.00,-19.00,0.00,\"\",0.00,58.00,44.00,214.00,,,,,,\n2015,5,14,\"US\",\"2118\",\"BOS\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,78.00,40.00,184.00,,,,,,\n2015,5,14,\"US\",\"2118\",\"LGA\",\"BOS\",3.00,-3.00,0.00,\"\",0.00,72.00,35.00,184.00,,,,,,\n2015,5,14,\"US\",\"2121\",\"BOS\",\"LGA\",,,1.00,\"A\",0.00,,,184.00,,,,,,\n2015,5,14,\"US\",\"2121\",\"LGA\",\"BOS\",-6.00,-9.00,0.00,\"\",0.00,75.00,34.00,184.00,,,,,,\n2015,5,14,\"US\",\"2122\",\"LGA\",\"BOS\",-4.00,-19.00,0.00,\"\",0.00,59.00,35.00,184.00,,,,,,\n2015,5,14,\"US\",\"2123\",\"LGA\",\"DCA\",-4.00,13.00,0.00,\"\",0.00,87.00,40.00,214.00,,,,,,\n2015,5,14,\"US\",\"2125\",\"LGA\",\"DCA\",133.00,124.00,0.00,\"\",0.00,75.00,43.00,214.00,1.00,0.00,0.00,0.00,123.00,\n2015,5,14,\"US\",\"2126\",\"BOS\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,63.00,40.00,184.00,,,,,,\n2015,5,14,\"US\",\"2126\",\"LGA\",\"BOS\",-7.00,-18.00,0.00,\"\",0.00,51.00,35.00,184.00,,,,,,\n2015,5,14,\"US\",\"2128\",\"LGA\",\"BOS\",9.00,10.00,0.00,\"\",0.00,74.00,37.00,184.00,,,,,,\n2015,5,14,\"US\",\"2131\",\"BOS\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,66.00,39.00,184.00,,,,,,\n2015,5,14,\"US\",\"2131\",\"LGA\",\"BOS\",,,1.00,\"A\",0.00,,,184.00,,,,,,\n2015,5,14,\"US\",\"2133\",\"DCA\",\"LGA\",-1.00,47.00,0.00,\"\",0.00,138.00,40.00,214.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,14,\"US\",\"2133\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,14,\"US\",\"2135\",\"DCA\",\"LGA\",129.00,119.00,0.00,\"\",0.00,66.00,44.00,214.00,5.00,0.00,0.00,0.00,114.00,\n2015,5,14,\"US\",\"2135\",\"LGA\",\"DCA\",113.00,106.00,0.00,\"\",0.00,68.00,41.00,214.00,8.00,0.00,0.00,0.00,98.00,\n2015,5,14,\"US\",\"2136\",\"BOS\",\"LGA\",28.00,13.00,0.00,\"\",0.00,61.00,41.00,184.00,,,,,,\n2015,5,14,\"US\",\"2136\",\"LGA\",\"BOS\",-6.00,-1.00,0.00,\"\",0.00,83.00,34.00,184.00,,,,,,\n2015,5,14,\"US\",\"2137\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,14,\"US\",\"2137\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,14,\"US\",\"2141\",\"BOS\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,71.00,40.00,184.00,,,,,,\n2015,5,14,\"US\",\"2141\",\"LGA\",\"BOS\",-3.00,-13.00,0.00,\"\",0.00,67.00,34.00,184.00,,,,,,\n2015,5,14,\"US\",\"2143\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,14,\"US\",\"2143\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,14,\"US\",\"2144\",\"DCA\",\"LGA\",180.00,203.00,0.00,\"\",0.00,102.00,45.00,214.00,180.00,0.00,23.00,0.00,0.00,\n2015,5,14,\"US\",\"2144\",\"LGA\",\"DCA\",4.00,0.00,0.00,\"\",0.00,78.00,40.00,214.00,,,,,,\n2015,5,14,\"US\",\"2145\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,14,\"US\",\"2145\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,14,\"US\",\"2146\",\"BOS\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,65.00,41.00,184.00,,,,,,\n2015,5,14,\"US\",\"2146\",\"LGA\",\"BOS\",5.00,-2.00,0.00,\"\",0.00,61.00,35.00,184.00,,,,,,\n2015,5,14,\"US\",\"2147\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,14,\"US\",\"2147\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,14,\"US\",\"2148\",\"BOS\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,64.00,36.00,184.00,,,,,,\n2015,5,14,\"US\",\"2151\",\"LGA\",\"BOS\",17.00,20.00,0.00,\"\",0.00,71.00,42.00,184.00,17.00,0.00,3.00,0.00,0.00,\n2015,5,14,\"US\",\"2152\",\"BOS\",\"LGA\",55.00,40.00,0.00,\"\",0.00,66.00,47.00,184.00,38.00,0.00,0.00,0.00,2.00,\n2015,5,14,\"US\",\"2152\",\"LGA\",\"BOS\",-7.00,-14.00,0.00,\"\",0.00,61.00,35.00,184.00,,,,,,\n2015,5,14,\"US\",\"2153\",\"DCA\",\"LGA\",64.00,43.00,0.00,\"\",0.00,68.00,46.00,214.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,14,\"US\",\"2153\",\"LGA\",\"DCA\",41.00,19.00,0.00,\"\",0.00,58.00,40.00,214.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"US\",\"2154\",\"DCA\",\"LGA\",-1.00,27.00,0.00,\"\",0.00,104.00,60.00,214.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,14,\"US\",\"2154\",\"LGA\",\"DCA\",34.00,19.00,0.00,\"\",0.00,61.00,40.00,214.00,12.00,0.00,0.00,0.00,7.00,\n2015,5,14,\"US\",\"2155\",\"DCA\",\"LGA\",86.00,47.00,0.00,\"\",0.00,56.00,41.00,214.00,0.00,0.00,0.00,0.00,47.00,\n2015,5,14,\"US\",\"2156\",\"BOS\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,72.00,42.00,184.00,,,,,,\n2015,5,14,\"US\",\"2156\",\"LGA\",\"BOS\",-8.00,-5.00,0.00,\"\",0.00,79.00,34.00,184.00,,,,,,\n2015,5,14,\"US\",\"2157\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,14,\"US\",\"2157\",\"LGA\",\"DCA\",-4.00,-14.00,0.00,\"\",0.00,72.00,41.00,214.00,,,,,,\n2015,5,14,\"US\",\"2158\",\"BOS\",\"LGA\",40.00,21.00,0.00,\"\",0.00,61.00,41.00,184.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"US\",\"2158\",\"LGA\",\"BOS\",-2.00,3.00,0.00,\"\",0.00,69.00,36.00,184.00,,,,,,\n2015,5,14,\"US\",\"2162\",\"BOS\",\"LGA\",28.00,25.00,0.00,\"\",0.00,81.00,41.00,184.00,5.00,0.00,0.00,0.00,20.00,\n2015,5,14,\"US\",\"2162\",\"LGA\",\"BOS\",36.00,40.00,0.00,\"\",0.00,76.00,34.00,184.00,5.00,0.00,4.00,0.00,31.00,\n2015,5,14,\"US\",\"2163\",\"DCA\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,75.00,44.00,214.00,,,,,,\n2015,5,14,\"US\",\"2164\",\"DCA\",\"LGA\",13.00,-1.00,0.00,\"\",0.00,73.00,48.00,214.00,,,,,,\n2015,5,14,\"US\",\"2164\",\"LGA\",\"DCA\",13.00,0.00,0.00,\"\",0.00,70.00,44.00,214.00,,,,,,\n2015,5,14,\"US\",\"2165\",\"BOS\",\"LGA\",25.00,33.00,0.00,\"\",0.00,84.00,50.00,184.00,25.00,0.00,8.00,0.00,0.00,\n2015,5,14,\"US\",\"2167\",\"DCA\",\"LGA\",-5.00,-32.00,0.00,\"\",0.00,59.00,42.00,214.00,,,,,,\n2015,5,14,\"US\",\"2167\",\"LGA\",\"DCA\",-5.00,-18.00,0.00,\"\",0.00,69.00,44.00,214.00,,,,,,\n2015,5,14,\"US\",\"2168\",\"BOS\",\"LGA\",26.00,15.00,0.00,\"\",0.00,70.00,44.00,184.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"US\",\"2168\",\"LGA\",\"BOS\",52.00,42.00,0.00,\"\",0.00,61.00,36.00,184.00,33.00,0.00,0.00,0.00,9.00,\n2015,5,14,\"US\",\"2171\",\"BOS\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,72.00,43.00,184.00,,,,,,\n2015,5,14,\"US\",\"2172\",\"BOS\",\"LGA\",1.00,-11.00,0.00,\"\",0.00,69.00,43.00,184.00,,,,,,\n2015,5,14,\"US\",\"2172\",\"LGA\",\"BOS\",22.00,12.00,0.00,\"\",0.00,63.00,36.00,184.00,,,,,,\n2015,5,14,\"US\",\"2174\",\"DCA\",\"LGA\",1.00,-16.00,0.00,\"\",0.00,73.00,45.00,214.00,,,,,,\n2015,5,14,\"US\",\"2174\",\"LGA\",\"DCA\",-3.00,1.00,0.00,\"\",0.00,83.00,38.00,214.00,,,,,,\n2015,5,15,\"US\",\"413\",\"JFK\",\"CLT\",-5.00,-8.00,0.00,\"\",0.00,113.00,88.00,541.00,,,,,,\n2015,5,15,\"US\",\"425\",\"JFK\",\"CLT\",-5.00,-22.00,0.00,\"\",0.00,111.00,75.00,541.00,,,,,,\n2015,5,15,\"US\",\"425\",\"PHX\",\"JFK\",5.00,7.00,0.00,\"\",0.00,305.00,257.00,2153.00,,,,,,\n2015,5,15,\"US\",\"433\",\"JFK\",\"PHX\",44.00,37.00,0.00,\"\",0.00,331.00,292.00,2153.00,0.00,0.00,0.00,0.00,37.00,\n2015,5,15,\"US\",\"468\",\"LGA\",\"CLT\",0.00,5.00,0.00,\"\",0.00,124.00,83.00,544.00,,,,,,\n2015,5,11,\"US\",\"1740\",\"CLT\",\"LGA\",42.00,52.00,0.00,\"\",0.00,123.00,84.00,544.00,0.00,0.00,52.00,0.00,0.00,\n2015,5,11,\"US\",\"1750\",\"ALB\",\"CLT\",-8.00,13.00,0.00,\"\",0.00,152.00,104.00,646.00,,,,,,\n2015,5,11,\"US\",\"1781\",\"LGA\",\"CLT\",89.00,86.00,0.00,\"\",0.00,122.00,77.00,544.00,0.00,0.00,0.00,0.00,86.00,\n2015,5,11,\"US\",\"1810\",\"LGA\",\"CLT\",-7.00,-19.00,0.00,\"\",0.00,110.00,78.00,544.00,,,,,,\n2015,5,11,\"US\",\"1815\",\"LGA\",\"CLT\",-5.00,-18.00,0.00,\"\",0.00,109.00,85.00,544.00,,,,,,\n2015,5,11,\"US\",\"1830\",\"CLT\",\"JFK\",-1.00,3.00,0.00,\"\",0.00,111.00,88.00,541.00,,,,,,\n2015,5,11,\"US\",\"1849\",\"LGA\",\"CLT\",-8.00,-26.00,0.00,\"\",0.00,115.00,76.00,544.00,,,,,,\n2015,5,11,\"US\",\"1851\",\"LGA\",\"CLT\",8.00,7.00,0.00,\"\",0.00,122.00,80.00,544.00,,,,,,\n2015,5,11,\"US\",\"1873\",\"BUF\",\"CLT\",7.00,2.00,0.00,\"\",0.00,103.00,81.00,546.00,,,,,,\n2015,5,11,\"US\",\"1885\",\"CLT\",\"BUF\",-3.00,17.00,0.00,\"\",0.00,121.00,94.00,546.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,11,\"US\",\"1898\",\"CLT\",\"JFK\",-3.00,42.00,0.00,\"\",0.00,155.00,84.00,541.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,11,\"US\",\"1908\",\"LGA\",\"CLT\",-1.00,9.00,0.00,\"\",0.00,132.00,80.00,544.00,,,,,,\n2015,5,11,\"US\",\"1910\",\"CLT\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,114.00,86.00,544.00,,,,,,\n2015,5,11,\"US\",\"1916\",\"SYR\",\"CLT\",-9.00,-6.00,0.00,\"\",0.00,125.00,86.00,603.00,,,,,,\n2015,5,11,\"US\",\"1919\",\"JFK\",\"CLT\",9.00,4.00,0.00,\"\",0.00,116.00,81.00,541.00,,,,,,\n2015,5,11,\"US\",\"1923\",\"ALB\",\"CLT\",-6.00,-41.00,0.00,\"\",0.00,107.00,91.00,646.00,,,,,,\n2015,5,11,\"US\",\"1933\",\"LGA\",\"PHL\",,,1.00,\"A\",0.00,,,96.00,,,,,,\n2015,5,11,\"US\",\"1940\",\"CLT\",\"ALB\",14.00,46.00,0.00,\"\",0.00,150.00,94.00,646.00,14.00,0.00,32.00,0.00,0.00,\n2015,5,11,\"US\",\"1942\",\"CLT\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,91.00,77.00,546.00,,,,,,\n2015,5,11,\"US\",\"1951\",\"LGA\",\"CLT\",-2.00,-16.00,0.00,\"\",0.00,108.00,79.00,544.00,,,,,,\n2015,5,11,\"US\",\"1952\",\"CLT\",\"BUF\",0.00,-2.00,0.00,\"\",0.00,96.00,73.00,546.00,,,,,,\n2015,5,11,\"US\",\"1954\",\"CLT\",\"LGA\",24.00,33.00,0.00,\"\",0.00,117.00,90.00,544.00,24.00,0.00,9.00,0.00,0.00,\n2015,5,11,\"US\",\"1971\",\"CLT\",\"SYR\",0.00,9.00,0.00,\"\",0.00,114.00,86.00,603.00,,,,,,\n2015,5,11,\"US\",\"1977\",\"BUF\",\"CLT\",-6.00,-15.00,0.00,\"\",0.00,100.00,83.00,546.00,,,,,,\n2015,5,11,\"US\",\"1981\",\"CLT\",\"LGA\",-2.00,48.00,0.00,\"\",0.00,155.00,106.00,544.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,11,\"US\",\"1983\",\"BUF\",\"CLT\",-6.00,-19.00,0.00,\"\",0.00,99.00,79.00,546.00,,,,,,\n2015,5,11,\"US\",\"1988\",\"CLT\",\"ALB\",-6.00,-1.00,0.00,\"\",0.00,130.00,95.00,646.00,,,,,,\n2015,5,11,\"US\",\"2017\",\"CLT\",\"JFK\",20.00,13.00,0.00,\"\",0.00,103.00,78.00,541.00,,,,,,\n2015,5,11,\"US\",\"2036\",\"CLT\",\"SYR\",-4.00,-7.00,0.00,\"\",0.00,107.00,84.00,603.00,,,,,,\n2015,5,11,\"US\",\"2042\",\"CLT\",\"JFK\",-1.00,-4.00,0.00,\"\",0.00,103.00,78.00,541.00,,,,,,\n2015,5,11,\"US\",\"2050\",\"CLT\",\"LGA\",-1.00,60.00,0.00,\"\",0.00,169.00,80.00,544.00,0.00,0.00,60.00,0.00,0.00,\n2015,5,11,\"US\",\"2060\",\"CLT\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,102.00,81.00,544.00,,,,,,\n2015,5,11,\"US\",\"2062\",\"CLT\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,109.00,80.00,544.00,,,,,,\n2015,5,11,\"US\",\"2064\",\"CLT\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,105.00,79.00,544.00,,,,,,\n2015,5,11,\"US\",\"2066\",\"CLT\",\"LGA\",112.00,108.00,0.00,\"\",0.00,102.00,83.00,544.00,108.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"US\",\"2068\",\"CLT\",\"LGA\",3.00,23.00,0.00,\"\",0.00,127.00,93.00,544.00,3.00,0.00,20.00,0.00,0.00,\n2015,5,11,\"US\",\"2069\",\"JFK\",\"CLT\",-1.00,-13.00,0.00,\"\",0.00,109.00,76.00,541.00,,,,,,\n2015,5,11,\"US\",\"2115\",\"LGA\",\"DCA\",-5.00,2.00,0.00,\"\",0.00,70.00,45.00,214.00,,,,,,\n2015,5,11,\"US\",\"2117\",\"DCA\",\"LGA\",5.00,12.00,0.00,\"\",0.00,76.00,55.00,214.00,,,,,,\n2015,5,11,\"US\",\"2118\",\"BOS\",\"LGA\",-4.00,29.00,0.00,\"\",0.00,114.00,45.00,184.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,11,\"US\",\"2118\",\"LGA\",\"BOS\",12.00,2.00,0.00,\"\",0.00,68.00,33.00,184.00,,,,,,\n2015,5,11,\"US\",\"2121\",\"BOS\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,63.00,41.00,184.00,,,,,,\n2015,5,11,\"US\",\"2121\",\"LGA\",\"BOS\",-2.00,-8.00,0.00,\"\",0.00,72.00,41.00,184.00,,,,,,\n2015,5,11,\"US\",\"2122\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,13,\"US\",\"1898\",\"CLT\",\"JFK\",-3.00,-2.00,0.00,\"\",0.00,111.00,85.00,541.00,,,,,,\n2015,5,13,\"US\",\"1908\",\"LGA\",\"CLT\",-3.00,6.00,0.00,\"\",0.00,131.00,89.00,544.00,,,,,,\n2015,5,13,\"US\",\"1910\",\"CLT\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,107.00,75.00,544.00,,,,,,\n2015,5,13,\"US\",\"1916\",\"SYR\",\"CLT\",-8.00,-13.00,0.00,\"\",0.00,117.00,93.00,603.00,,,,,,\n2015,5,13,\"US\",\"1919\",\"JFK\",\"CLT\",-3.00,7.00,0.00,\"\",0.00,131.00,88.00,541.00,,,,,,\n2015,5,13,\"US\",\"1923\",\"ALB\",\"CLT\",-9.00,-27.00,0.00,\"\",0.00,124.00,107.00,646.00,,,,,,\n2015,5,13,\"US\",\"1933\",\"LGA\",\"PHL\",-5.00,25.00,0.00,\"\",0.00,103.00,44.00,96.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,13,\"US\",\"1940\",\"CLT\",\"ALB\",1.00,9.00,0.00,\"\",0.00,126.00,96.00,646.00,,,,,,\n2015,5,13,\"US\",\"1942\",\"CLT\",\"BUF\",-5.00,-9.00,0.00,\"\",0.00,96.00,80.00,546.00,,,,,,\n2015,5,13,\"US\",\"1951\",\"LGA\",\"CLT\",-3.00,6.00,0.00,\"\",0.00,131.00,99.00,544.00,,,,,,\n2015,5,13,\"US\",\"1952\",\"CLT\",\"BUF\",-3.00,8.00,0.00,\"\",0.00,109.00,87.00,546.00,,,,,,\n2015,5,13,\"US\",\"1954\",\"CLT\",\"LGA\",-1.00,5.00,0.00,\"\",0.00,114.00,86.00,544.00,,,,,,\n2015,5,13,\"US\",\"1971\",\"CLT\",\"SYR\",-1.00,8.00,0.00,\"\",0.00,114.00,90.00,603.00,,,,,,\n2015,5,13,\"US\",\"1977\",\"BUF\",\"CLT\",0.00,0.00,0.00,\"\",0.00,109.00,89.00,546.00,,,,,,\n2015,5,13,\"US\",\"1981\",\"CLT\",\"LGA\",4.00,-2.00,0.00,\"\",0.00,99.00,77.00,544.00,,,,,,\n2015,5,13,\"US\",\"1983\",\"BUF\",\"CLT\",-6.00,-14.00,0.00,\"\",0.00,104.00,83.00,546.00,,,,,,\n2015,5,13,\"US\",\"1988\",\"CLT\",\"ALB\",16.00,7.00,0.00,\"\",0.00,116.00,93.00,646.00,,,,,,\n2015,5,13,\"US\",\"2017\",\"CLT\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,99.00,78.00,541.00,,,,,,\n2015,5,13,\"US\",\"2036\",\"CLT\",\"SYR\",-7.00,-18.00,0.00,\"\",0.00,99.00,82.00,603.00,,,,,,\n2015,5,13,\"US\",\"2042\",\"CLT\",\"JFK\",2.00,5.00,0.00,\"\",0.00,109.00,76.00,541.00,,,,,,\n2015,5,13,\"US\",\"2050\",\"CLT\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,103.00,75.00,544.00,,,,,,\n2015,5,13,\"US\",\"2060\",\"CLT\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,90.00,70.00,544.00,,,,,,\n2015,5,13,\"US\",\"2062\",\"CLT\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,98.00,74.00,544.00,,,,,,\n2015,5,13,\"US\",\"2064\",\"CLT\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,101.00,74.00,544.00,,,,,,\n2015,5,13,\"US\",\"2066\",\"CLT\",\"LGA\",-4.00,18.00,0.00,\"\",0.00,128.00,76.00,544.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,13,\"US\",\"2068\",\"CLT\",\"LGA\",-1.00,0.00,0.00,\"\",0.00,108.00,74.00,544.00,,,,,,\n2015,5,13,\"US\",\"2069\",\"JFK\",\"CLT\",-1.00,-12.00,0.00,\"\",0.00,110.00,89.00,541.00,,,,,,\n2015,5,13,\"US\",\"2115\",\"LGA\",\"DCA\",-7.00,-8.00,0.00,\"\",0.00,62.00,44.00,214.00,,,,,,\n2015,5,13,\"US\",\"2117\",\"DCA\",\"LGA\",62.00,50.00,0.00,\"\",0.00,57.00,40.00,214.00,0.00,0.00,0.00,0.00,50.00,\n2015,5,13,\"US\",\"2118\",\"BOS\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,80.00,49.00,184.00,,,,,,\n2015,5,13,\"US\",\"2118\",\"LGA\",\"BOS\",-3.00,-3.00,0.00,\"\",0.00,78.00,39.00,184.00,,,,,,\n2015,5,13,\"US\",\"2121\",\"BOS\",\"LGA\",11.00,9.00,0.00,\"\",0.00,74.00,45.00,184.00,,,,,,\n2015,5,13,\"US\",\"2121\",\"LGA\",\"BOS\",-9.00,-12.00,0.00,\"\",0.00,75.00,32.00,184.00,,,,,,\n2015,5,13,\"US\",\"2122\",\"LGA\",\"BOS\",-2.00,-4.00,0.00,\"\",0.00,72.00,41.00,184.00,,,,,,\n2015,5,13,\"US\",\"2123\",\"LGA\",\"DCA\",-7.00,-4.00,0.00,\"\",0.00,73.00,43.00,214.00,,,,,,\n2015,5,13,\"US\",\"2125\",\"LGA\",\"DCA\",-8.00,-10.00,0.00,\"\",0.00,82.00,44.00,214.00,,,,,,\n2015,5,13,\"US\",\"2126\",\"BOS\",\"LGA\",-8.00,-28.00,0.00,\"\",0.00,61.00,39.00,184.00,,,,,,\n2015,5,13,\"US\",\"2126\",\"LGA\",\"BOS\",18.00,12.00,0.00,\"\",0.00,56.00,34.00,184.00,,,,,,\n2015,5,13,\"US\",\"2128\",\"LGA\",\"BOS\",11.00,27.00,0.00,\"\",0.00,89.00,37.00,184.00,11.00,0.00,16.00,0.00,0.00,\n2015,5,13,\"US\",\"2131\",\"BOS\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,78.00,41.00,184.00,,,,,,\n2015,5,13,\"US\",\"2131\",\"LGA\",\"BOS\",-1.00,-4.00,0.00,\"\",0.00,69.00,36.00,184.00,,,,,,\n2015,5,13,\"US\",\"2133\",\"DCA\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,84.00,39.00,214.00,,,,,,\n2015,5,13,\"US\",\"2133\",\"LGA\",\"DCA\",-6.00,9.00,0.00,\"\",0.00,92.00,49.00,214.00,,,,,,\n2015,5,13,\"US\",\"2135\",\"DCA\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,64.00,40.00,214.00,,,,,,\n2015,5,13,\"US\",\"2135\",\"LGA\",\"DCA\",-4.00,-16.00,0.00,\"\",0.00,63.00,44.00,214.00,,,,,,\n2015,5,13,\"US\",\"2136\",\"BOS\",\"LGA\",-5.00,-1.00,0.00,\"\",0.00,80.00,39.00,184.00,,,,,,\n2015,5,13,\"US\",\"2136\",\"LGA\",\"BOS\",-3.00,-10.00,0.00,\"\",0.00,71.00,34.00,184.00,,,,,,\n2015,5,13,\"US\",\"2137\",\"DCA\",\"LGA\",25.00,17.00,0.00,\"\",0.00,60.00,39.00,214.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"US\",\"2137\",\"LGA\",\"DCA\",-5.00,16.00,0.00,\"\",0.00,106.00,52.00,214.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,13,\"US\",\"2141\",\"BOS\",\"LGA\",-8.00,-7.00,0.00,\"\",0.00,85.00,55.00,184.00,,,,,,\n2015,5,13,\"US\",\"2141\",\"LGA\",\"BOS\",-3.00,-15.00,0.00,\"\",0.00,65.00,36.00,184.00,,,,,,\n2015,5,13,\"US\",\"2143\",\"DCA\",\"LGA\",-1.00,-25.00,0.00,\"\",0.00,65.00,39.00,214.00,,,,,,\n2015,5,13,\"US\",\"2143\",\"LGA\",\"DCA\",-6.00,-1.00,0.00,\"\",0.00,86.00,47.00,214.00,,,,,,\n2015,5,13,\"US\",\"2144\",\"DCA\",\"LGA\",19.00,22.00,0.00,\"\",0.00,82.00,45.00,214.00,19.00,0.00,3.00,0.00,0.00,\n2015,5,13,\"US\",\"2144\",\"LGA\",\"DCA\",9.00,24.00,0.00,\"\",0.00,97.00,40.00,214.00,0.00,0.00,15.00,0.00,9.00,\n2015,5,13,\"US\",\"2145\",\"DCA\",\"LGA\",29.00,17.00,0.00,\"\",0.00,76.00,42.00,214.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"US\",\"2145\",\"LGA\",\"DCA\",14.00,3.00,0.00,\"\",0.00,72.00,44.00,214.00,,,,,,\n2015,5,13,\"US\",\"2146\",\"BOS\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,75.00,51.00,184.00,,,,,,\n2015,5,13,\"US\",\"2146\",\"LGA\",\"BOS\",-1.00,-7.00,0.00,\"\",0.00,62.00,31.00,184.00,,,,,,\n2015,5,13,\"US\",\"2147\",\"DCA\",\"LGA\",16.00,13.00,0.00,\"\",0.00,85.00,42.00,214.00,,,,,,\n2015,5,13,\"US\",\"2147\",\"LGA\",\"DCA\",17.00,26.00,0.00,\"\",0.00,91.00,48.00,214.00,6.00,0.00,9.00,0.00,11.00,\n2015,5,13,\"US\",\"2148\",\"BOS\",\"LGA\",-8.00,-15.00,0.00,\"\",0.00,69.00,44.00,184.00,,,,,,\n2015,5,13,\"US\",\"2151\",\"LGA\",\"BOS\",-5.00,5.00,0.00,\"\",0.00,78.00,38.00,184.00,,,,,,\n2015,5,13,\"US\",\"2152\",\"BOS\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,71.00,49.00,184.00,,,,,,\n2015,5,13,\"US\",\"2152\",\"LGA\",\"BOS\",-8.00,-17.00,0.00,\"\",0.00,59.00,31.00,184.00,,,,,,\n2015,5,13,\"US\",\"2153\",\"DCA\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,77.00,42.00,214.00,,,,,,\n2015,5,13,\"US\",\"2153\",\"LGA\",\"DCA\",-7.00,-8.00,0.00,\"\",0.00,79.00,43.00,214.00,,,,,,\n2015,5,13,\"US\",\"2154\",\"DCA\",\"LGA\",16.00,-3.00,0.00,\"\",0.00,57.00,39.00,214.00,,,,,,\n2015,5,13,\"US\",\"2154\",\"LGA\",\"DCA\",0.00,7.00,0.00,\"\",0.00,83.00,46.00,214.00,,,,,,\n2015,5,13,\"US\",\"2155\",\"DCA\",\"LGA\",0.00,-26.00,0.00,\"\",0.00,69.00,42.00,214.00,,,,,,\n2015,5,13,\"US\",\"2156\",\"BOS\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,74.00,45.00,184.00,,,,,,\n2015,5,13,\"US\",\"2156\",\"LGA\",\"BOS\",-3.00,-15.00,0.00,\"\",0.00,64.00,38.00,184.00,,,,,,\n2015,5,13,\"US\",\"2157\",\"DCA\",\"LGA\",27.00,23.00,0.00,\"\",0.00,84.00,41.00,214.00,3.00,0.00,0.00,0.00,20.00,\n2015,5,13,\"US\",\"2157\",\"LGA\",\"DCA\",22.00,17.00,0.00,\"\",0.00,77.00,44.00,214.00,1.00,0.00,0.00,0.00,16.00,\n2015,5,13,\"US\",\"2158\",\"BOS\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,73.00,51.00,184.00,,,,,,\n2015,5,13,\"US\",\"2158\",\"LGA\",\"BOS\",-7.00,-5.00,0.00,\"\",0.00,66.00,34.00,184.00,,,,,,\n2015,5,13,\"US\",\"2162\",\"BOS\",\"LGA\",-8.00,-23.00,0.00,\"\",0.00,69.00,44.00,184.00,,,,,,\n2015,5,13,\"US\",\"2162\",\"LGA\",\"BOS\",-10.00,5.00,0.00,\"\",0.00,87.00,36.00,184.00,,,,,,\n2015,5,13,\"US\",\"2163\",\"DCA\",\"LGA\",-6.00,-22.00,0.00,\"\",0.00,67.00,39.00,214.00,,,,,,\n2015,5,13,\"US\",\"2164\",\"DCA\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,77.00,42.00,214.00,,,,,,\n2015,5,13,\"US\",\"2164\",\"LGA\",\"DCA\",-5.00,-20.00,0.00,\"\",0.00,68.00,42.00,214.00,,,,,,\n2015,5,13,\"US\",\"2165\",\"BOS\",\"LGA\",-8.00,-21.00,0.00,\"\",0.00,63.00,46.00,184.00,,,,,,\n2015,5,13,\"US\",\"2167\",\"DCA\",\"LGA\",14.00,7.00,0.00,\"\",0.00,79.00,38.00,214.00,,,,,,\n2015,5,13,\"US\",\"2167\",\"LGA\",\"DCA\",2.00,13.00,0.00,\"\",0.00,93.00,42.00,214.00,,,,,,\n2015,5,13,\"US\",\"2168\",\"BOS\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,72.00,44.00,184.00,,,,,,\n2015,5,13,\"US\",\"2168\",\"LGA\",\"BOS\",-6.00,8.00,0.00,\"\",0.00,85.00,36.00,184.00,,,,,,\n2015,5,13,\"US\",\"2171\",\"BOS\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,73.00,48.00,184.00,,,,,,\n2015,5,13,\"US\",\"2172\",\"BOS\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,77.00,46.00,184.00,,,,,,\n2015,5,13,\"US\",\"2172\",\"LGA\",\"BOS\",-5.00,4.00,0.00,\"\",0.00,82.00,41.00,184.00,,,,,,\n2015,5,13,\"US\",\"2174\",\"DCA\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,90.00,44.00,214.00,,,,,,\n2015,5,13,\"US\",\"2174\",\"LGA\",\"DCA\",-6.00,11.00,0.00,\"\",0.00,96.00,41.00,214.00,,,,,,\n2015,5,14,\"US\",\"413\",\"JFK\",\"CLT\",41.00,29.00,0.00,\"\",0.00,104.00,77.00,541.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"US\",\"425\",\"JFK\",\"CLT\",15.00,3.00,0.00,\"\",0.00,116.00,76.00,541.00,,,,,,\n2015,5,14,\"US\",\"425\",\"PHX\",\"JFK\",5.00,-15.00,0.00,\"\",0.00,283.00,257.00,2153.00,,,,,,\n2015,5,14,\"US\",\"433\",\"JFK\",\"PHX\",-3.00,-22.00,0.00,\"\",0.00,319.00,286.00,2153.00,,,,,,\n2015,5,14,\"US\",\"468\",\"LGA\",\"CLT\",-6.00,-13.00,0.00,\"\",0.00,112.00,77.00,544.00,,,,,,\n2015,5,14,\"US\",\"622\",\"PHX\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,278.00,258.00,2153.00,,,,,,\n2015,5,14,\"US\",\"632\",\"PHX\",\"JFK\",57.00,53.00,0.00,\"\",0.00,281.00,267.00,2153.00,34.00,0.00,0.00,0.00,19.00,\n2015,5,14,\"US\",\"639\",\"CLT\",\"JFK\",-4.00,5.00,0.00,\"\",0.00,125.00,89.00,541.00,,,,,,\n2015,5,14,\"US\",\"639\",\"JFK\",\"PHX\",-2.00,-30.00,0.00,\"\",0.00,306.00,274.00,2153.00,,,,,,\n2015,5,14,\"US\",\"654\",\"JFK\",\"PHX\",-5.00,-21.00,0.00,\"\",0.00,308.00,284.00,2153.00,,,,,,\n2015,5,14,\"US\",\"756\",\"BUF\",\"CLT\",0.00,-1.00,0.00,\"\",0.00,110.00,83.00,546.00,,,,,,\n2015,5,14,\"US\",\"809\",\"PHL\",\"LGA\",-6.00,3.00,0.00,\"\",0.00,76.00,25.00,96.00,,,,,,\n2015,5,14,\"US\",\"821\",\"ROC\",\"CLT\",3.00,-9.00,0.00,\"\",0.00,110.00,94.00,573.00,,,,,,\n2015,5,14,\"US\",\"826\",\"LGA\",\"CLT\",-2.00,11.00,0.00,\"\",0.00,130.00,80.00,544.00,,,,,,\n2015,5,14,\"US\",\"853\",\"CLT\",\"BUF\",-7.00,-9.00,0.00,\"\",0.00,103.00,81.00,546.00,,,,,,\n2015,5,14,\"US\",\"873\",\"JFK\",\"CLT\",-6.00,-11.00,0.00,\"\",0.00,119.00,87.00,541.00,,,,,,\n2015,5,14,\"US\",\"876\",\"SYR\",\"CLT\",24.00,21.00,0.00,\"\",0.00,125.00,96.00,603.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"US\",\"890\",\"LGA\",\"CLT\",0.00,-18.00,0.00,\"\",0.00,107.00,79.00,544.00,,,,,,\n2015,5,14,\"US\",\"896\",\"CLT\",\"ROC\",-3.00,-19.00,0.00,\"\",0.00,86.00,75.00,573.00,,,,,,\n2015,5,14,\"US\",\"1740\",\"CLT\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,105.00,80.00,544.00,,,,,,\n2015,5,14,\"US\",\"1750\",\"ALB\",\"CLT\",-4.00,-11.00,0.00,\"\",0.00,124.00,95.00,646.00,,,,,,\n2015,5,1,\"US\",\"1810\",\"LGA\",\"CLT\",-2.00,-6.00,0.00,\"\",0.00,118.00,86.00,544.00,,,,,,\n2015,5,1,\"US\",\"1815\",\"LGA\",\"CLT\",-3.00,-6.00,0.00,\"\",0.00,119.00,91.00,544.00,,,,,,\n2015,5,1,\"US\",\"1830\",\"CLT\",\"JFK\",25.00,28.00,0.00,\"\",0.00,110.00,76.00,541.00,2.00,0.00,3.00,0.00,23.00,\n2015,5,1,\"US\",\"1831\",\"SYR\",\"CLT\",-7.00,-12.00,0.00,\"\",0.00,123.00,102.00,603.00,,,,,,\n2015,5,1,\"US\",\"1843\",\"LGA\",\"CLT\",-1.00,6.00,0.00,\"\",0.00,126.00,82.00,544.00,,,,,,\n2015,5,2,\"US\",\"1804\",\"PHL\",\"LGA\",-8.00,-19.00,0.00,\"\",0.00,50.00,30.00,96.00,,,,,,\n2015,5,2,\"US\",\"1808\",\"LGA\",\"CLT\",-6.00,-6.00,0.00,\"\",0.00,127.00,78.00,544.00,,,,,,\n2015,5,2,\"US\",\"1830\",\"CLT\",\"JFK\",-1.00,3.00,0.00,\"\",0.00,111.00,83.00,541.00,,,,,,\n2015,5,2,\"US\",\"1831\",\"SYR\",\"CLT\",-8.00,1.00,0.00,\"\",0.00,137.00,93.00,603.00,,,,,,\n2015,5,2,\"US\",\"1838\",\"PHL\",\"LGA\",-1.00,5.00,0.00,\"\",0.00,61.00,31.00,96.00,,,,,,\n2015,5,2,\"US\",\"1841\",\"LGA\",\"CLT\",-5.00,-27.00,0.00,\"\",0.00,100.00,80.00,544.00,,,,,,\n2015,5,2,\"US\",\"1843\",\"LGA\",\"CLT\",-6.00,-16.00,0.00,\"\",0.00,109.00,81.00,544.00,,,,,,\n2015,5,2,\"US\",\"1859\",\"BUF\",\"CLT\",10.00,23.00,0.00,\"\",0.00,125.00,91.00,546.00,10.00,0.00,13.00,0.00,0.00,\n2015,5,2,\"US\",\"1860\",\"CLT\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,105.00,82.00,544.00,,,,,,\n2015,5,2,\"US\",\"1867\",\"JFK\",\"CLT\",1.00,-13.00,0.00,\"\",0.00,107.00,81.00,541.00,,,,,,\n2015,5,2,\"US\",\"1873\",\"LGA\",\"CLT\",-4.00,-25.00,0.00,\"\",0.00,102.00,79.00,544.00,,,,,,\n2015,5,2,\"US\",\"1898\",\"CLT\",\"JFK\",16.00,23.00,0.00,\"\",0.00,114.00,77.00,541.00,2.00,0.00,7.00,0.00,14.00,\n2015,5,2,\"US\",\"1910\",\"CLT\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,120.00,78.00,544.00,,,,,,\n2015,5,2,\"US\",\"1940\",\"CLT\",\"ALB\",-6.00,16.00,0.00,\"\",0.00,137.00,90.00,646.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,2,\"US\",\"1942\",\"CLT\",\"BUF\",-5.00,-12.00,0.00,\"\",0.00,93.00,79.00,546.00,,,,,,\n2015,5,2,\"US\",\"1952\",\"CLT\",\"BUF\",8.00,21.00,0.00,\"\",0.00,108.00,78.00,546.00,8.00,0.00,13.00,0.00,0.00,\n2015,5,2,\"US\",\"1954\",\"CLT\",\"LGA\",1.00,4.00,0.00,\"\",0.00,111.00,81.00,544.00,,,,,,\n2015,5,2,\"US\",\"1972\",\"JFK\",\"CLT\",0.00,-10.00,0.00,\"\",0.00,104.00,80.00,541.00,,,,,,\n2015,5,2,\"US\",\"1988\",\"CLT\",\"ALB\",8.00,8.00,0.00,\"\",0.00,125.00,92.00,646.00,,,,,,\n2015,5,2,\"US\",\"2017\",\"CLT\",\"JFK\",3.00,-6.00,0.00,\"\",0.00,101.00,78.00,541.00,,,,,,\n2015,5,2,\"US\",\"2018\",\"ALB\",\"CLT\",-8.00,-38.00,0.00,\"\",0.00,112.00,93.00,646.00,,,,,,\n2015,5,2,\"US\",\"2036\",\"CLT\",\"SYR\",-3.00,-13.00,0.00,\"\",0.00,100.00,80.00,603.00,,,,,,\n2015,5,2,\"US\",\"2041\",\"ALB\",\"CLT\",0.00,-1.00,0.00,\"\",0.00,130.00,98.00,646.00,,,,,,\n2015,5,2,\"US\",\"2042\",\"CLT\",\"JFK\",4.00,1.00,0.00,\"\",0.00,103.00,79.00,541.00,,,,,,\n2015,5,2,\"US\",\"2047\",\"BUF\",\"CLT\",-5.00,0.00,0.00,\"\",0.00,114.00,82.00,546.00,,,,,,\n2015,5,2,\"US\",\"2050\",\"CLT\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,100.00,81.00,544.00,,,,,,\n2015,5,2,\"US\",\"2062\",\"CLT\",\"LGA\",-4.00,4.00,0.00,\"\",0.00,121.00,80.00,544.00,,,,,,\n2015,5,2,\"US\",\"2064\",\"CLT\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,112.00,80.00,544.00,,,,,,\n2015,5,2,\"US\",\"2066\",\"CLT\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,108.00,87.00,544.00,,,,,,\n2015,5,2,\"US\",\"2068\",\"CLT\",\"LGA\",13.00,17.00,0.00,\"\",0.00,111.00,88.00,544.00,6.00,0.00,4.00,0.00,7.00,\n2015,5,2,\"US\",\"2069\",\"BUF\",\"CLT\",9.00,4.00,0.00,\"\",0.00,106.00,84.00,546.00,,,,,,\n2015,5,2,\"US\",\"2126\",\"BOS\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,78.00,42.00,184.00,,,,,,\n2015,5,2,\"US\",\"2133\",\"DCA\",\"LGA\",32.00,43.00,0.00,\"\",0.00,101.00,57.00,214.00,32.00,0.00,11.00,0.00,0.00,\n2015,5,2,\"US\",\"2133\",\"LGA\",\"DCA\",48.00,36.00,0.00,\"\",0.00,65.00,40.00,214.00,4.00,0.00,0.00,0.00,32.00,\n2015,5,2,\"US\",\"2136\",\"LGA\",\"BOS\",-1.00,-13.00,0.00,\"\",0.00,66.00,34.00,184.00,,,,,,\n2015,5,2,\"US\",\"2143\",\"DCA\",\"LGA\",20.00,-2.00,0.00,\"\",0.00,67.00,42.00,214.00,,,,,,\n2015,5,2,\"US\",\"2144\",\"LGA\",\"DCA\",-9.00,-30.00,0.00,\"\",0.00,61.00,37.00,214.00,,,,,,\n2015,5,2,\"US\",\"2154\",\"DCA\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,65.00,44.00,214.00,,,,,,\n2015,5,2,\"US\",\"2154\",\"LGA\",\"DCA\",-8.00,-22.00,0.00,\"\",0.00,62.00,45.00,214.00,,,,,,\n2015,5,2,\"US\",\"2158\",\"LGA\",\"BOS\",-9.00,11.00,0.00,\"\",0.00,84.00,34.00,184.00,,,,,,\n2015,5,3,\"US\",\"425\",\"JFK\",\"CLT\",-2.00,-13.00,0.00,\"\",0.00,117.00,80.00,541.00,,,,,,\n2015,5,3,\"US\",\"425\",\"PHX\",\"JFK\",-4.00,-2.00,0.00,\"\",0.00,305.00,264.00,2153.00,,,,,,\n2015,5,3,\"US\",\"447\",\"LGA\",\"CLT\",-4.00,-26.00,0.00,\"\",0.00,101.00,82.00,544.00,,,,,,\n2015,5,3,\"US\",\"613\",\"BUF\",\"CLT\",-6.00,-8.00,0.00,\"\",0.00,110.00,79.00,546.00,,,,,,\n2015,5,3,\"US\",\"622\",\"PHX\",\"JFK\",0.00,-3.00,0.00,\"\",0.00,287.00,265.00,2153.00,,,,,,\n2015,5,3,\"US\",\"632\",\"PHX\",\"JFK\",-3.00,-6.00,0.00,\"\",0.00,282.00,262.00,2153.00,,,,,,\n2015,5,3,\"US\",\"639\",\"CLT\",\"JFK\",20.00,15.00,0.00,\"\",0.00,111.00,84.00,541.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"US\",\"639\",\"JFK\",\"PHX\",7.00,-25.00,0.00,\"\",0.00,302.00,278.00,2153.00,,,,,,\n2015,5,3,\"US\",\"647\",\"JFK\",\"PHX\",-9.00,-18.00,0.00,\"\",0.00,329.00,280.00,2153.00,,,,,,\n2015,5,3,\"US\",\"654\",\"JFK\",\"PHX\",84.00,63.00,0.00,\"\",0.00,303.00,281.00,2153.00,63.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"US\",\"686\",\"LGA\",\"CLT\",-6.00,-24.00,0.00,\"\",0.00,99.00,76.00,544.00,,,,,,\n2015,5,3,\"US\",\"744\",\"LGA\",\"CLT\",-4.00,0.00,0.00,\"\",0.00,126.00,82.00,544.00,,,,,,\n2015,5,3,\"US\",\"793\",\"JFK\",\"CLT\",-2.00,-17.00,0.00,\"\",0.00,106.00,76.00,541.00,,,,,,\n2015,5,3,\"US\",\"809\",\"PHL\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,66.00,32.00,96.00,,,,,,\n2015,5,3,\"US\",\"834\",\"LGA\",\"PHL\",0.00,-20.00,0.00,\"\",0.00,54.00,28.00,96.00,,,,,,\n2015,5,3,\"US\",\"857\",\"PHL\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,55.00,34.00,96.00,,,,,,\n2015,5,3,\"US\",\"890\",\"LGA\",\"CLT\",-2.00,-20.00,0.00,\"\",0.00,107.00,81.00,544.00,,,,,,\n2015,5,3,\"US\",\"893\",\"LGA\",\"CLT\",0.00,-25.00,0.00,\"\",0.00,102.00,76.00,544.00,,,,,,\n2015,5,3,\"US\",\"896\",\"CLT\",\"ROC\",-4.00,-8.00,0.00,\"\",0.00,100.00,84.00,573.00,,,,,,\n2015,5,3,\"US\",\"1715\",\"SYR\",\"CLT\",,,1.00,\"A\",0.00,,,603.00,,,,,,\n2015,5,3,\"US\",\"1740\",\"CLT\",\"LGA\",-1.00,3.00,0.00,\"\",0.00,115.00,87.00,544.00,,,,,,\n2015,5,3,\"US\",\"1760\",\"LGA\",\"CLT\",-5.00,-12.00,0.00,\"\",0.00,115.00,78.00,544.00,,,,,,\n2015,5,3,\"US\",\"1781\",\"LGA\",\"CLT\",-3.00,-12.00,0.00,\"\",0.00,116.00,79.00,544.00,,,,,,\n2015,5,3,\"US\",\"1786\",\"ALB\",\"CLT\",0.00,-8.00,0.00,\"\",0.00,123.00,95.00,646.00,,,,,,\n2015,5,3,\"US\",\"1802\",\"LGA\",\"PHL\",-7.00,-19.00,0.00,\"\",0.00,45.00,28.00,96.00,,,,,,\n2015,5,3,\"US\",\"1830\",\"BUF\",\"CLT\",-8.00,-19.00,0.00,\"\",0.00,98.00,79.00,546.00,,,,,,\n2015,5,3,\"US\",\"1830\",\"CLT\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,103.00,82.00,541.00,,,,,,\n2015,5,3,\"US\",\"1843\",\"LGA\",\"CLT\",-5.00,-16.00,0.00,\"\",0.00,108.00,76.00,544.00,,,,,,\n2015,5,15,\"US\",\"853\",\"CLT\",\"BUF\",14.00,11.00,0.00,\"\",0.00,102.00,81.00,546.00,,,,,,\n2015,5,15,\"US\",\"873\",\"JFK\",\"CLT\",11.00,-2.00,0.00,\"\",0.00,111.00,83.00,541.00,,,,,,\n2015,5,15,\"US\",\"876\",\"SYR\",\"CLT\",-5.00,-24.00,0.00,\"\",0.00,109.00,84.00,603.00,,,,,,\n2015,5,15,\"US\",\"890\",\"LGA\",\"CLT\",-5.00,-10.00,0.00,\"\",0.00,120.00,76.00,544.00,,,,,,\n2015,5,15,\"US\",\"896\",\"CLT\",\"ROC\",-5.00,-1.00,0.00,\"\",0.00,106.00,84.00,573.00,,,,,,\n2015,5,15,\"US\",\"1740\",\"CLT\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,109.00,80.00,544.00,,,,,,\n2015,5,15,\"US\",\"1750\",\"ALB\",\"CLT\",6.00,32.00,0.00,\"\",0.00,157.00,93.00,646.00,6.00,0.00,26.00,0.00,0.00,\n2015,5,15,\"US\",\"1781\",\"LGA\",\"CLT\",-3.00,-29.00,0.00,\"\",0.00,99.00,78.00,544.00,,,,,,\n2015,5,15,\"US\",\"1810\",\"LGA\",\"CLT\",2.00,1.00,0.00,\"\",0.00,121.00,79.00,544.00,,,,,,\n2015,5,15,\"US\",\"1815\",\"LGA\",\"CLT\",-8.00,-23.00,0.00,\"\",0.00,107.00,83.00,544.00,,,,,,\n2015,5,15,\"US\",\"1830\",\"CLT\",\"JFK\",4.00,0.00,0.00,\"\",0.00,103.00,80.00,541.00,,,,,,\n2015,5,15,\"US\",\"1849\",\"LGA\",\"CLT\",-4.00,-32.00,0.00,\"\",0.00,105.00,81.00,544.00,,,,,,\n2015,5,15,\"US\",\"1851\",\"LGA\",\"CLT\",-6.00,-8.00,0.00,\"\",0.00,121.00,81.00,544.00,,,,,,\n2015,5,15,\"US\",\"1873\",\"BUF\",\"CLT\",16.00,6.00,0.00,\"\",0.00,98.00,79.00,546.00,,,,,,\n2015,5,15,\"US\",\"1885\",\"CLT\",\"BUF\",-4.00,-1.00,0.00,\"\",0.00,104.00,82.00,546.00,,,,,,\n2015,5,15,\"US\",\"1898\",\"CLT\",\"JFK\",1.00,0.00,0.00,\"\",0.00,109.00,79.00,541.00,,,,,,\n2015,5,15,\"US\",\"1908\",\"LGA\",\"CLT\",-2.00,3.00,0.00,\"\",0.00,127.00,78.00,544.00,,,,,,\n2015,5,15,\"US\",\"1910\",\"CLT\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,103.00,83.00,544.00,,,,,,\n2015,5,15,\"US\",\"1916\",\"SYR\",\"CLT\",-7.00,-13.00,0.00,\"\",0.00,116.00,94.00,603.00,,,,,,\n2015,5,15,\"US\",\"1919\",\"JFK\",\"CLT\",-1.00,-18.00,0.00,\"\",0.00,104.00,78.00,541.00,,,,,,\n2015,5,15,\"US\",\"1923\",\"ALB\",\"CLT\",-6.00,-33.00,0.00,\"\",0.00,115.00,96.00,646.00,,,,,,\n2015,5,15,\"US\",\"1933\",\"LGA\",\"PHL\",-10.00,-24.00,0.00,\"\",0.00,59.00,39.00,96.00,,,,,,\n2015,5,15,\"US\",\"1942\",\"CLT\",\"BUF\",-4.00,-8.00,0.00,\"\",0.00,96.00,79.00,546.00,,,,,,\n2015,5,15,\"US\",\"1951\",\"LGA\",\"CLT\",-3.00,-11.00,0.00,\"\",0.00,114.00,93.00,544.00,,,,,,\n2015,5,15,\"US\",\"1952\",\"CLT\",\"BUF\",45.00,48.00,0.00,\"\",0.00,101.00,78.00,546.00,45.00,0.00,3.00,0.00,0.00,\n2015,5,15,\"US\",\"1954\",\"CLT\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,107.00,81.00,544.00,,,,,,\n2015,5,15,\"US\",\"1971\",\"CLT\",\"SYR\",-5.00,-1.00,0.00,\"\",0.00,109.00,85.00,603.00,,,,,,\n2015,5,15,\"US\",\"1977\",\"BUF\",\"CLT\",-6.00,-15.00,0.00,\"\",0.00,100.00,80.00,546.00,,,,,,\n2015,5,15,\"US\",\"1981\",\"CLT\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,96.00,79.00,544.00,,,,,,\n2015,5,15,\"US\",\"1983\",\"BUF\",\"CLT\",-7.00,-22.00,0.00,\"\",0.00,97.00,79.00,546.00,,,,,,\n2015,5,15,\"US\",\"1988\",\"CLT\",\"ALB\",-2.00,4.00,0.00,\"\",0.00,131.00,98.00,646.00,,,,,,\n2015,5,15,\"US\",\"2017\",\"CLT\",\"JFK\",6.00,-1.00,0.00,\"\",0.00,103.00,82.00,541.00,,,,,,\n2015,5,15,\"US\",\"2036\",\"CLT\",\"SYR\",-3.00,4.00,0.00,\"\",0.00,117.00,82.00,603.00,,,,,,\n2015,5,15,\"US\",\"2042\",\"CLT\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,97.00,76.00,541.00,,,,,,\n2015,5,15,\"US\",\"2050\",\"CLT\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,101.00,84.00,544.00,,,,,,\n2015,5,15,\"US\",\"2060\",\"CLT\",\"LGA\",1.00,-5.00,0.00,\"\",0.00,101.00,82.00,544.00,,,,,,\n2015,5,15,\"US\",\"2062\",\"CLT\",\"LGA\",31.00,31.00,0.00,\"\",0.00,109.00,80.00,544.00,1.00,0.00,0.00,0.00,30.00,\n2015,5,15,\"US\",\"2064\",\"CLT\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,113.00,77.00,544.00,,,,,,\n2015,5,15,\"US\",\"2066\",\"CLT\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,102.00,84.00,544.00,,,,,,\n2015,5,15,\"US\",\"2068\",\"CLT\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,102.00,78.00,544.00,,,,,,\n2015,5,15,\"US\",\"2069\",\"JFK\",\"CLT\",2.00,-18.00,0.00,\"\",0.00,101.00,78.00,541.00,,,,,,\n2015,5,20,\"US\",\"468\",\"LGA\",\"CLT\",-4.00,2.00,0.00,\"\",0.00,125.00,81.00,544.00,,,,,,\n2015,5,20,\"US\",\"622\",\"PHX\",\"JFK\",1.00,-31.00,0.00,\"\",0.00,258.00,238.00,2153.00,,,,,,\n2015,5,20,\"US\",\"632\",\"PHX\",\"JFK\",-1.00,-38.00,0.00,\"\",0.00,248.00,229.00,2153.00,,,,,,\n2015,5,20,\"US\",\"639\",\"CLT\",\"JFK\",0.00,7.00,0.00,\"\",0.00,123.00,77.00,541.00,,,,,,\n2015,5,20,\"US\",\"639\",\"JFK\",\"PHX\",8.00,-5.00,0.00,\"\",0.00,321.00,298.00,2153.00,,,,,,\n2015,5,20,\"US\",\"654\",\"JFK\",\"PHX\",-1.00,-6.00,0.00,\"\",0.00,319.00,298.00,2153.00,,,,,,\n2015,5,20,\"US\",\"756\",\"BUF\",\"CLT\",0.00,1.00,0.00,\"\",0.00,112.00,82.00,546.00,,,,,,\n2015,5,20,\"US\",\"809\",\"PHL\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,50.00,26.00,96.00,,,,,,\n2015,5,20,\"US\",\"821\",\"ROC\",\"CLT\",0.00,27.00,0.00,\"\",0.00,149.00,93.00,573.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,20,\"US\",\"826\",\"LGA\",\"CLT\",-3.00,-4.00,0.00,\"\",0.00,116.00,87.00,544.00,,,,,,\n2015,5,20,\"US\",\"853\",\"CLT\",\"BUF\",-8.00,11.00,0.00,\"\",0.00,124.00,76.00,546.00,,,,,,\n2015,5,20,\"US\",\"873\",\"JFK\",\"CLT\",-5.00,-27.00,0.00,\"\",0.00,102.00,79.00,541.00,,,,,,\n2015,5,20,\"US\",\"876\",\"SYR\",\"CLT\",-3.00,-3.00,0.00,\"\",0.00,128.00,102.00,603.00,,,,,,\n2015,5,20,\"US\",\"890\",\"LGA\",\"CLT\",19.00,34.00,0.00,\"\",0.00,140.00,79.00,544.00,19.00,0.00,15.00,0.00,0.00,\n2015,5,15,\"US\",\"2115\",\"LGA\",\"DCA\",-4.00,-13.00,0.00,\"\",0.00,54.00,38.00,214.00,,,,,,\n2015,5,15,\"US\",\"2117\",\"DCA\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,56.00,38.00,214.00,,,,,,\n2015,5,15,\"US\",\"2118\",\"BOS\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,74.00,45.00,184.00,,,,,,\n2015,5,15,\"US\",\"2118\",\"LGA\",\"BOS\",-5.00,-26.00,0.00,\"\",0.00,57.00,33.00,184.00,,,,,,\n2015,5,15,\"US\",\"2121\",\"BOS\",\"LGA\",-10.00,-24.00,0.00,\"\",0.00,62.00,38.00,184.00,,,,,,\n2015,5,15,\"US\",\"2121\",\"LGA\",\"BOS\",-4.00,-28.00,0.00,\"\",0.00,54.00,36.00,184.00,,,,,,\n2015,5,15,\"US\",\"2122\",\"LGA\",\"BOS\",-6.00,-20.00,0.00,\"\",0.00,60.00,33.00,184.00,,,,,,\n2015,5,15,\"US\",\"2123\",\"LGA\",\"DCA\",-5.00,20.00,0.00,\"\",0.00,95.00,40.00,214.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,15,\"US\",\"2125\",\"LGA\",\"DCA\",-6.00,-18.00,0.00,\"\",0.00,72.00,43.00,214.00,,,,,,\n2015,5,15,\"US\",\"2126\",\"BOS\",\"LGA\",4.00,-21.00,0.00,\"\",0.00,56.00,39.00,184.00,,,,,,\n2015,5,15,\"US\",\"2126\",\"LGA\",\"BOS\",-6.00,-17.00,0.00,\"\",0.00,51.00,32.00,184.00,,,,,,\n2015,5,15,\"US\",\"2128\",\"LGA\",\"BOS\",-4.00,-18.00,0.00,\"\",0.00,59.00,41.00,184.00,,,,,,\n2015,5,15,\"US\",\"2131\",\"BOS\",\"LGA\",-9.00,-15.00,0.00,\"\",0.00,75.00,52.00,184.00,,,,,,\n2015,5,15,\"US\",\"2131\",\"LGA\",\"BOS\",-7.00,-22.00,0.00,\"\",0.00,57.00,37.00,184.00,,,,,,\n2015,5,15,\"US\",\"2133\",\"DCA\",\"LGA\",2.00,5.00,0.00,\"\",0.00,93.00,48.00,214.00,,,,,,\n2015,5,15,\"US\",\"2133\",\"LGA\",\"DCA\",7.00,-8.00,0.00,\"\",0.00,62.00,43.00,214.00,,,,,,\n2015,5,15,\"US\",\"2135\",\"DCA\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,66.00,42.00,214.00,,,,,,\n2015,5,15,\"US\",\"2135\",\"LGA\",\"DCA\",-1.00,-6.00,0.00,\"\",0.00,70.00,45.00,214.00,,,,,,\n2015,5,15,\"US\",\"2136\",\"BOS\",\"LGA\",-7.00,-24.00,0.00,\"\",0.00,59.00,41.00,184.00,,,,,,\n2015,5,15,\"US\",\"2136\",\"LGA\",\"BOS\",-2.00,-15.00,0.00,\"\",0.00,65.00,44.00,184.00,,,,,,\n2015,5,15,\"US\",\"2137\",\"DCA\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,59.00,42.00,214.00,,,,,,\n2015,5,15,\"US\",\"2137\",\"LGA\",\"DCA\",-7.00,-33.00,0.00,\"\",0.00,59.00,42.00,214.00,,,,,,\n2015,5,15,\"US\",\"2141\",\"BOS\",\"LGA\",-10.00,-8.00,0.00,\"\",0.00,86.00,42.00,184.00,,,,,,\n2015,5,15,\"US\",\"2141\",\"LGA\",\"BOS\",-8.00,-27.00,0.00,\"\",0.00,58.00,33.00,184.00,,,,,,\n2015,5,15,\"US\",\"2143\",\"DCA\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,84.00,41.00,214.00,,,,,,\n2015,5,15,\"US\",\"2143\",\"LGA\",\"DCA\",-3.00,-17.00,0.00,\"\",0.00,67.00,49.00,214.00,,,,,,\n2015,5,15,\"US\",\"2144\",\"DCA\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,75.00,41.00,214.00,,,,,,\n2015,5,15,\"US\",\"2144\",\"LGA\",\"DCA\",0.00,-14.00,0.00,\"\",0.00,68.00,40.00,214.00,,,,,,\n2015,5,15,\"US\",\"2145\",\"DCA\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,77.00,43.00,214.00,,,,,,\n2015,5,15,\"US\",\"2145\",\"LGA\",\"DCA\",-4.00,-1.00,0.00,\"\",0.00,86.00,48.00,214.00,,,,,,\n2015,5,15,\"US\",\"2146\",\"BOS\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,64.00,45.00,184.00,,,,,,\n2015,5,15,\"US\",\"2146\",\"LGA\",\"BOS\",-10.00,-19.00,0.00,\"\",0.00,59.00,33.00,184.00,,,,,,\n2015,5,15,\"US\",\"2147\",\"DCA\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,74.00,44.00,214.00,,,,,,\n2015,5,15,\"US\",\"2147\",\"LGA\",\"DCA\",-6.00,-21.00,0.00,\"\",0.00,67.00,46.00,214.00,,,,,,\n2015,5,15,\"US\",\"2148\",\"BOS\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,68.00,41.00,184.00,,,,,,\n2015,5,15,\"US\",\"2151\",\"LGA\",\"BOS\",-3.00,0.00,0.00,\"\",0.00,71.00,39.00,184.00,,,,,,\n2015,5,15,\"US\",\"2152\",\"BOS\",\"LGA\",-9.00,-14.00,0.00,\"\",0.00,76.00,41.00,184.00,,,,,,\n2015,5,15,\"US\",\"2152\",\"LGA\",\"BOS\",-8.00,-20.00,0.00,\"\",0.00,56.00,33.00,184.00,,,,,,\n2015,5,15,\"US\",\"2153\",\"DCA\",\"LGA\",-5.00,-29.00,0.00,\"\",0.00,65.00,41.00,214.00,,,,,,\n2015,5,15,\"US\",\"2153\",\"LGA\",\"DCA\",-5.00,-15.00,0.00,\"\",0.00,70.00,42.00,214.00,,,,,,\n2015,5,15,\"US\",\"2154\",\"DCA\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,56.00,42.00,214.00,,,,,,\n2015,5,15,\"US\",\"2154\",\"LGA\",\"DCA\",-1.00,3.00,0.00,\"\",0.00,80.00,44.00,214.00,,,,,,\n2015,5,15,\"US\",\"2155\",\"DCA\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,83.00,44.00,214.00,,,,,,\n2015,5,15,\"US\",\"2156\",\"BOS\",\"LGA\",-12.00,-19.00,0.00,\"\",0.00,76.00,41.00,184.00,,,,,,\n2015,5,15,\"US\",\"2156\",\"LGA\",\"BOS\",-8.00,-32.00,0.00,\"\",0.00,52.00,35.00,184.00,,,,,,\n2015,5,15,\"US\",\"2157\",\"DCA\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,81.00,47.00,214.00,,,,,,\n2015,5,15,\"US\",\"2157\",\"LGA\",\"DCA\",-5.00,-22.00,0.00,\"\",0.00,65.00,47.00,214.00,,,,,,\n2015,5,15,\"US\",\"2158\",\"BOS\",\"LGA\",-9.00,-26.00,0.00,\"\",0.00,63.00,35.00,184.00,,,,,,\n2015,5,15,\"US\",\"2158\",\"LGA\",\"BOS\",-5.00,-11.00,0.00,\"\",0.00,58.00,34.00,184.00,,,,,,\n2015,5,15,\"US\",\"2162\",\"BOS\",\"LGA\",-9.00,-30.00,0.00,\"\",0.00,63.00,44.00,184.00,,,,,,\n2015,5,15,\"US\",\"2162\",\"LGA\",\"BOS\",-7.00,-9.00,0.00,\"\",0.00,70.00,46.00,184.00,,,,,,\n2015,5,15,\"US\",\"2163\",\"DCA\",\"LGA\",-5.00,-30.00,0.00,\"\",0.00,58.00,41.00,214.00,,,,,,\n2015,5,15,\"US\",\"2164\",\"DCA\",\"LGA\",5.00,40.00,0.00,\"\",0.00,122.00,65.00,214.00,5.00,0.00,35.00,0.00,0.00,\n2015,5,15,\"US\",\"2164\",\"LGA\",\"DCA\",38.00,22.00,0.00,\"\",0.00,67.00,45.00,214.00,1.00,0.00,0.00,0.00,21.00,\n2015,5,15,\"US\",\"2165\",\"BOS\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,63.00,42.00,184.00,,,,,,\n2015,5,15,\"US\",\"2167\",\"DCA\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,70.00,45.00,214.00,,,,,,\n2015,5,15,\"US\",\"2167\",\"LGA\",\"DCA\",-4.00,-11.00,0.00,\"\",0.00,75.00,43.00,214.00,,,,,,\n2015,5,15,\"US\",\"2168\",\"BOS\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,62.00,43.00,184.00,,,,,,\n2015,5,15,\"US\",\"2168\",\"LGA\",\"BOS\",-5.00,-16.00,0.00,\"\",0.00,60.00,33.00,184.00,,,,,,\n2015,5,15,\"US\",\"2171\",\"BOS\",\"LGA\",21.00,14.00,0.00,\"\",0.00,73.00,42.00,184.00,,,,,,\n2015,5,15,\"US\",\"2172\",\"BOS\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,70.00,46.00,184.00,,,,,,\n2015,5,15,\"US\",\"2172\",\"LGA\",\"BOS\",-7.00,-22.00,0.00,\"\",0.00,58.00,37.00,184.00,,,,,,\n2015,5,15,\"US\",\"2174\",\"DCA\",\"LGA\",14.00,-1.00,0.00,\"\",0.00,75.00,46.00,214.00,,,,,,\n2015,5,15,\"US\",\"2174\",\"LGA\",\"DCA\",1.00,-9.00,0.00,\"\",0.00,69.00,40.00,214.00,,,,,,\n2015,5,16,\"US\",\"425\",\"JFK\",\"CLT\",-4.00,-2.00,0.00,\"\",0.00,130.00,94.00,541.00,,,,,,\n2015,5,16,\"US\",\"425\",\"PHX\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,294.00,253.00,2153.00,,,,,,\n2015,5,16,\"US\",\"433\",\"JFK\",\"PHX\",-1.00,-20.00,0.00,\"\",0.00,319.00,293.00,2153.00,,,,,,\n2015,5,16,\"US\",\"445\",\"JFK\",\"CLT\",38.00,31.00,0.00,\"\",0.00,109.00,88.00,541.00,0.00,0.00,0.00,0.00,31.00,\n2015,5,16,\"US\",\"622\",\"PHX\",\"JFK\",12.00,18.00,0.00,\"\",0.00,296.00,274.00,2153.00,11.00,0.00,6.00,0.00,1.00,\n2015,5,16,\"US\",\"632\",\"PHX\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,272.00,251.00,2153.00,,,,,,\n2015,5,16,\"US\",\"639\",\"CLT\",\"JFK\",0.00,6.00,0.00,\"\",0.00,122.00,83.00,541.00,,,,,,\n2015,5,16,\"US\",\"639\",\"JFK\",\"PHX\",30.00,37.00,0.00,\"\",0.00,341.00,305.00,2153.00,28.00,0.00,7.00,0.00,2.00,\n2015,5,16,\"US\",\"654\",\"JFK\",\"PHX\",236.00,283.00,0.00,\"\",0.00,371.00,326.00,2153.00,236.00,0.00,47.00,0.00,0.00,\n2015,5,17,\"US\",\"793\",\"JFK\",\"CLT\",-2.00,-4.00,0.00,\"\",0.00,119.00,78.00,541.00,,,,,,\n2015,5,17,\"US\",\"809\",\"PHL\",\"LGA\",33.00,17.00,0.00,\"\",0.00,51.00,27.00,96.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"US\",\"833\",\"ALB\",\"CLT\",-6.00,-16.00,0.00,\"\",0.00,132.00,93.00,646.00,,,,,,\n2015,5,17,\"US\",\"834\",\"LGA\",\"PHL\",,,1.00,\"A\",0.00,,,96.00,,,,,,\n2015,5,17,\"US\",\"852\",\"LGA\",\"CLT\",1.00,-11.00,0.00,\"\",0.00,110.00,81.00,544.00,,,,,,\n2015,5,17,\"US\",\"857\",\"PHL\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,55.00,25.00,96.00,,,,,,\n2015,5,17,\"US\",\"890\",\"LGA\",\"CLT\",-5.00,-20.00,0.00,\"\",0.00,110.00,78.00,544.00,,,,,,\n2015,5,17,\"US\",\"893\",\"LGA\",\"CLT\",-5.00,-20.00,0.00,\"\",0.00,112.00,76.00,544.00,,,,,,\n2015,5,17,\"US\",\"894\",\"LGA\",\"CLT\",-6.00,-13.00,0.00,\"\",0.00,116.00,84.00,544.00,,,,,,\n2015,5,17,\"US\",\"896\",\"CLT\",\"ROC\",-5.00,-18.00,0.00,\"\",0.00,89.00,77.00,573.00,,,,,,\n2015,5,17,\"US\",\"1715\",\"SYR\",\"CLT\",24.00,9.00,0.00,\"\",0.00,113.00,90.00,603.00,,,,,,\n2015,5,17,\"US\",\"1740\",\"CLT\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,111.00,79.00,544.00,,,,,,\n2015,5,17,\"US\",\"1750\",\"ALB\",\"CLT\",2.00,16.00,0.00,\"\",0.00,145.00,104.00,646.00,2.00,0.00,14.00,0.00,0.00,\n2015,5,17,\"US\",\"1760\",\"LGA\",\"CLT\",-2.00,-2.00,0.00,\"\",0.00,122.00,79.00,544.00,,,,,,\n2015,5,17,\"US\",\"1781\",\"LGA\",\"CLT\",-7.00,-21.00,0.00,\"\",0.00,111.00,77.00,544.00,,,,,,\n2015,5,17,\"US\",\"1799\",\"LGA\",\"CLT\",-3.00,-16.00,0.00,\"\",0.00,109.00,80.00,544.00,,,,,,\n2015,5,17,\"US\",\"1830\",\"BUF\",\"CLT\",-2.00,-14.00,0.00,\"\",0.00,97.00,80.00,546.00,,,,,,\n2015,5,17,\"US\",\"1830\",\"CLT\",\"JFK\",3.00,-4.00,0.00,\"\",0.00,100.00,80.00,541.00,,,,,,\n2015,5,17,\"US\",\"1838\",\"PHL\",\"LGA\",7.00,8.00,0.00,\"\",0.00,59.00,26.00,96.00,,,,,,\n2015,5,17,\"US\",\"1843\",\"LGA\",\"CLT\",-4.00,-21.00,0.00,\"\",0.00,102.00,78.00,544.00,,,,,,\n2015,5,17,\"US\",\"1860\",\"CLT\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,100.00,81.00,544.00,,,,,,\n2015,5,17,\"US\",\"1873\",\"SYR\",\"CLT\",-3.00,-17.00,0.00,\"\",0.00,108.00,86.00,603.00,,,,,,\n2015,5,17,\"US\",\"1885\",\"CLT\",\"BUF\",-5.00,-10.00,0.00,\"\",0.00,96.00,77.00,546.00,,,,,,\n2015,5,17,\"US\",\"1898\",\"CLT\",\"JFK\",49.00,41.00,0.00,\"\",0.00,102.00,74.00,541.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"US\",\"1909\",\"LGA\",\"PHL\",-4.00,-13.00,0.00,\"\",0.00,48.00,28.00,96.00,,,,,,\n2015,5,17,\"US\",\"1910\",\"CLT\",\"LGA\",11.00,-9.00,0.00,\"\",0.00,96.00,76.00,544.00,,,,,,\n2015,5,17,\"US\",\"1923\",\"ROC\",\"CLT\",-7.00,-19.00,0.00,\"\",0.00,110.00,85.00,573.00,,,,,,\n2015,5,17,\"US\",\"1929\",\"BUF\",\"CLT\",1.00,-3.00,0.00,\"\",0.00,107.00,86.00,546.00,,,,,,\n2015,5,17,\"US\",\"1933\",\"LGA\",\"PHL\",-5.00,-25.00,0.00,\"\",0.00,53.00,31.00,96.00,,,,,,\n2015,5,17,\"US\",\"1940\",\"CLT\",\"ALB\",-1.00,-4.00,0.00,\"\",0.00,115.00,88.00,646.00,,,,,,\n2015,5,17,\"US\",\"1942\",\"CLT\",\"BUF\",2.00,4.00,0.00,\"\",0.00,102.00,86.00,546.00,,,,,,\n2015,5,17,\"US\",\"1952\",\"CLT\",\"BUF\",18.00,37.00,0.00,\"\",0.00,117.00,75.00,546.00,18.00,0.00,19.00,0.00,0.00,\n2015,5,17,\"US\",\"1954\",\"CLT\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,104.00,79.00,544.00,,,,,,\n2015,5,17,\"US\",\"1971\",\"CLT\",\"SYR\",-7.00,-8.00,0.00,\"\",0.00,104.00,82.00,603.00,,,,,,\n2015,5,17,\"US\",\"1988\",\"CLT\",\"ALB\",-5.00,-3.00,0.00,\"\",0.00,127.00,95.00,646.00,,,,,,\n2015,5,17,\"US\",\"1991\",\"LGA\",\"PHL\",-5.00,-25.00,0.00,\"\",0.00,53.00,30.00,96.00,,,,,,\n2015,5,17,\"US\",\"2017\",\"CLT\",\"JFK\",-1.00,-11.00,0.00,\"\",0.00,100.00,79.00,541.00,,,,,,\n2015,5,17,\"US\",\"2036\",\"CLT\",\"SYR\",0.00,-1.00,0.00,\"\",0.00,109.00,85.00,603.00,,,,,,\n2015,5,17,\"US\",\"2050\",\"CLT\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,107.00,79.00,544.00,,,,,,\n2015,5,17,\"US\",\"2057\",\"JFK\",\"CLT\",0.00,-23.00,0.00,\"\",0.00,93.00,73.00,541.00,,,,,,\n2015,5,17,\"US\",\"2062\",\"CLT\",\"LGA\",27.00,9.00,0.00,\"\",0.00,91.00,73.00,544.00,,,,,,\n2015,5,17,\"US\",\"2064\",\"CLT\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,117.00,78.00,544.00,,,,,,\n2015,5,17,\"US\",\"2066\",\"CLT\",\"LGA\",-4.00,3.00,0.00,\"\",0.00,113.00,77.00,544.00,,,,,,\n2015,5,17,\"US\",\"2068\",\"CLT\",\"LGA\",0.00,12.00,0.00,\"\",0.00,119.00,76.00,544.00,,,,,,\n2015,5,17,\"US\",\"2069\",\"JFK\",\"CLT\",3.00,-21.00,0.00,\"\",0.00,97.00,78.00,541.00,,,,,,\n2015,5,17,\"US\",\"2117\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,17,\"US\",\"2118\",\"BOS\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,68.00,40.00,184.00,,,,,,\n2015,5,17,\"US\",\"2118\",\"LGA\",\"BOS\",-1.00,-3.00,0.00,\"\",0.00,76.00,35.00,184.00,,,,,,\n2015,5,17,\"US\",\"2128\",\"LGA\",\"BOS\",-5.00,-9.00,0.00,\"\",0.00,69.00,33.00,184.00,,,,,,\n2015,5,17,\"US\",\"2133\",\"DCA\",\"LGA\",-6.00,8.00,0.00,\"\",0.00,104.00,74.00,214.00,,,,,,\n2015,5,17,\"US\",\"2133\",\"LGA\",\"DCA\",27.00,33.00,0.00,\"\",0.00,83.00,44.00,214.00,0.00,0.00,6.00,0.00,27.00,\n2015,5,17,\"US\",\"2135\",\"DCA\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,79.00,41.00,214.00,,,,,,\n2015,5,17,\"US\",\"2135\",\"LGA\",\"DCA\",-2.00,15.00,0.00,\"\",0.00,92.00,45.00,214.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,17,\"US\",\"2136\",\"BOS\",\"LGA\",-6.00,-1.00,0.00,\"\",0.00,81.00,48.00,184.00,,,,,,\n2015,5,17,\"US\",\"2137\",\"BOS\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,68.00,51.00,184.00,,,,,,\n2015,5,17,\"US\",\"2143\",\"DCA\",\"LGA\",73.00,55.00,0.00,\"\",0.00,71.00,41.00,214.00,40.00,0.00,0.00,0.00,15.00,\n2015,5,17,\"US\",\"2143\",\"LGA\",\"DCA\",41.00,35.00,0.00,\"\",0.00,75.00,44.00,214.00,0.00,0.00,0.00,0.00,35.00,\n2015,5,17,\"US\",\"2144\",\"LGA\",\"DCA\",131.00,124.00,0.00,\"\",0.00,75.00,39.00,214.00,0.00,0.00,0.00,0.00,124.00,\n2015,5,17,\"US\",\"2145\",\"DCA\",\"LGA\",17.00,50.00,0.00,\"\",0.00,121.00,46.00,214.00,17.00,0.00,33.00,0.00,0.00,\n2015,5,17,\"US\",\"2145\",\"LGA\",\"DCA\",52.00,58.00,0.00,\"\",0.00,89.00,58.00,214.00,4.00,0.00,6.00,0.00,48.00,\n2015,5,17,\"US\",\"2146\",\"BOS\",\"LGA\",1.00,-19.00,0.00,\"\",0.00,62.00,40.00,184.00,,,,,,\n2015,5,17,\"US\",\"2146\",\"LGA\",\"BOS\",-5.00,-12.00,0.00,\"\",0.00,61.00,33.00,184.00,,,,,,\n2015,5,17,\"US\",\"2147\",\"LGA\",\"DCA\",50.00,34.00,0.00,\"\",0.00,66.00,43.00,214.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,17,\"US\",\"2153\",\"DCA\",\"LGA\",35.00,29.00,0.00,\"\",0.00,83.00,48.00,214.00,7.00,0.00,0.00,0.00,22.00,\n2015,5,17,\"US\",\"2153\",\"LGA\",\"DCA\",35.00,35.00,0.00,\"\",0.00,80.00,47.00,214.00,7.00,0.00,0.00,0.00,28.00,\n2015,5,17,\"US\",\"2154\",\"DCA\",\"LGA\",143.00,125.00,0.00,\"\",0.00,58.00,37.00,214.00,24.00,0.00,0.00,0.00,101.00,\n2015,5,17,\"US\",\"2154\",\"LGA\",\"DCA\",119.00,108.00,0.00,\"\",0.00,65.00,44.00,214.00,7.00,0.00,0.00,0.00,101.00,\n2015,5,17,\"US\",\"2155\",\"DCA\",\"LGA\",54.00,34.00,0.00,\"\",0.00,75.00,44.00,214.00,2.00,0.00,0.00,0.00,32.00,\n2015,5,17,\"US\",\"2156\",\"LGA\",\"BOS\",-4.00,-12.00,0.00,\"\",0.00,68.00,38.00,184.00,,,,,,\n2015,5,17,\"US\",\"2157\",\"DCA\",\"LGA\",61.00,52.00,0.00,\"\",0.00,79.00,41.00,214.00,26.00,0.00,0.00,0.00,26.00,\n2015,5,17,\"US\",\"2157\",\"LGA\",\"DCA\",57.00,54.00,0.00,\"\",0.00,79.00,47.00,214.00,7.00,0.00,0.00,0.00,47.00,\n2015,5,17,\"US\",\"2158\",\"BOS\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,70.00,47.00,184.00,,,,,,\n2015,5,17,\"US\",\"2164\",\"DCA\",\"LGA\",106.00,115.00,0.00,\"\",0.00,96.00,45.00,214.00,12.00,0.00,9.00,0.00,94.00,\n2015,5,17,\"US\",\"2164\",\"LGA\",\"DCA\",108.00,117.00,0.00,\"\",0.00,92.00,45.00,214.00,0.00,0.00,9.00,0.00,108.00,\n2015,5,17,\"US\",\"2167\",\"DCA\",\"LGA\",67.00,75.00,0.00,\"\",0.00,94.00,57.00,214.00,21.00,0.00,8.00,0.00,46.00,\n2015,5,17,\"US\",\"2167\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,17,\"US\",\"2168\",\"BOS\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,68.00,47.00,184.00,,,,,,\n2015,5,17,\"US\",\"2168\",\"LGA\",\"BOS\",-4.00,-5.00,0.00,\"\",0.00,70.00,34.00,184.00,,,,,,\n2015,5,17,\"US\",\"2174\",\"DCA\",\"LGA\",126.00,99.00,0.00,\"\",0.00,63.00,42.00,214.00,13.00,0.00,0.00,0.00,86.00,\n2015,5,17,\"US\",\"2174\",\"LGA\",\"DCA\",100.00,77.00,0.00,\"\",0.00,56.00,40.00,214.00,1.00,0.00,0.00,0.00,76.00,\n2015,5,18,\"US\",\"413\",\"JFK\",\"CLT\",28.00,13.00,0.00,\"\",0.00,101.00,72.00,541.00,,,,,,\n2015,5,18,\"US\",\"425\",\"JFK\",\"CLT\",97.00,170.00,0.00,\"\",0.00,201.00,92.00,541.00,0.00,0.00,73.00,0.00,97.00,\n2015,5,18,\"US\",\"425\",\"PHX\",\"JFK\",,,1.00,\"C\",0.00,,,2153.00,,,,,,\n2015,5,18,\"US\",\"433\",\"JFK\",\"PHX\",-4.00,-13.00,0.00,\"\",0.00,329.00,287.00,2153.00,,,,,,\n2015,5,18,\"US\",\"468\",\"LGA\",\"CLT\",108.00,116.00,0.00,\"\",0.00,127.00,78.00,544.00,0.00,0.00,8.00,0.00,108.00,\n2015,5,18,\"US\",\"622\",\"PHX\",\"JFK\",15.00,75.00,0.00,\"\",0.00,350.00,314.00,2153.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,18,\"US\",\"632\",\"PHX\",\"JFK\",-3.00,-17.00,0.00,\"\",0.00,271.00,243.00,2153.00,,,,,,\n2015,5,18,\"US\",\"639\",\"CLT\",\"JFK\",252.00,232.00,0.00,\"\",0.00,96.00,80.00,541.00,0.00,0.00,232.00,0.00,0.00,\n2015,5,18,\"US\",\"639\",\"JFK\",\"PHX\",,,1.00,\"C\",0.00,,,2153.00,,,,,,\n2015,5,18,\"US\",\"654\",\"JFK\",\"PHX\",-4.00,-28.00,0.00,\"\",0.00,300.00,276.00,2153.00,,,,,,\n2015,5,20,\"US\",\"2115\",\"LGA\",\"DCA\",-1.00,3.00,0.00,\"\",0.00,67.00,43.00,214.00,,,,,,\n2015,5,20,\"US\",\"2117\",\"DCA\",\"LGA\",83.00,68.00,0.00,\"\",0.00,54.00,37.00,214.00,5.00,0.00,0.00,0.00,63.00,\n2015,5,20,\"US\",\"2118\",\"BOS\",\"LGA\",4.00,17.00,0.00,\"\",0.00,94.00,44.00,184.00,4.00,0.00,13.00,0.00,0.00,\n2015,5,20,\"US\",\"2118\",\"LGA\",\"BOS\",0.00,11.00,0.00,\"\",0.00,89.00,35.00,184.00,,,,,,\n2015,5,20,\"US\",\"2121\",\"BOS\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,65.00,40.00,184.00,,,,,,\n2015,5,20,\"US\",\"2121\",\"LGA\",\"BOS\",-6.00,-5.00,0.00,\"\",0.00,79.00,41.00,184.00,,,,,,\n2015,5,20,\"US\",\"2122\",\"LGA\",\"BOS\",71.00,84.00,0.00,\"\",0.00,87.00,37.00,184.00,71.00,0.00,13.00,0.00,0.00,\n2015,5,20,\"US\",\"2123\",\"LGA\",\"DCA\",-9.00,-12.00,0.00,\"\",0.00,67.00,45.00,214.00,,,,,,\n2015,5,20,\"US\",\"2125\",\"LGA\",\"DCA\",-7.00,-2.00,0.00,\"\",0.00,89.00,43.00,214.00,,,,,,\n2015,5,20,\"US\",\"2126\",\"BOS\",\"LGA\",-8.00,-9.00,0.00,\"\",0.00,80.00,46.00,184.00,,,,,,\n2015,5,20,\"US\",\"2126\",\"LGA\",\"BOS\",-5.00,-16.00,0.00,\"\",0.00,51.00,32.00,184.00,,,,,,\n2015,5,20,\"US\",\"2128\",\"LGA\",\"BOS\",11.00,60.00,0.00,\"\",0.00,122.00,37.00,184.00,3.00,0.00,49.00,0.00,8.00,\n2015,5,20,\"US\",\"2131\",\"BOS\",\"LGA\",-10.00,-14.00,0.00,\"\",0.00,77.00,52.00,184.00,,,,,,\n2015,5,20,\"US\",\"2131\",\"LGA\",\"BOS\",-7.00,-17.00,0.00,\"\",0.00,62.00,37.00,184.00,,,,,,\n2015,5,20,\"US\",\"2133\",\"DCA\",\"LGA\",1.00,40.00,0.00,\"\",0.00,129.00,41.00,214.00,1.00,0.00,39.00,0.00,0.00,\n2015,5,20,\"US\",\"2133\",\"LGA\",\"DCA\",35.00,49.00,0.00,\"\",0.00,91.00,48.00,214.00,0.00,0.00,14.00,0.00,35.00,\n2015,5,20,\"US\",\"2135\",\"DCA\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,67.00,38.00,214.00,,,,,,\n2015,5,20,\"US\",\"2135\",\"LGA\",\"DCA\",-5.00,7.00,0.00,\"\",0.00,87.00,47.00,214.00,,,,,,\n2015,5,20,\"US\",\"2136\",\"BOS\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,69.00,47.00,184.00,,,,,,\n2015,5,20,\"US\",\"2136\",\"LGA\",\"BOS\",-6.00,0.00,0.00,\"\",0.00,84.00,40.00,184.00,,,,,,\n2015,5,20,\"US\",\"2137\",\"DCA\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,52.00,36.00,214.00,,,,,,\n2015,5,20,\"US\",\"2137\",\"LGA\",\"DCA\",-4.00,7.00,0.00,\"\",0.00,96.00,50.00,214.00,,,,,,\n2015,5,20,\"US\",\"2141\",\"BOS\",\"LGA\",19.00,23.00,0.00,\"\",0.00,88.00,45.00,184.00,0.00,0.00,4.00,0.00,19.00,\n2015,5,20,\"US\",\"2141\",\"LGA\",\"BOS\",-6.00,37.00,0.00,\"\",0.00,120.00,44.00,184.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,20,\"US\",\"2143\",\"DCA\",\"LGA\",36.00,57.00,0.00,\"\",0.00,110.00,71.00,214.00,0.00,0.00,21.00,0.00,36.00,\n2015,5,20,\"US\",\"2143\",\"LGA\",\"DCA\",59.00,66.00,0.00,\"\",0.00,88.00,45.00,214.00,3.00,0.00,7.00,0.00,56.00,\n2015,5,20,\"US\",\"2144\",\"DCA\",\"LGA\",-9.00,-10.00,0.00,\"\",0.00,78.00,40.00,214.00,,,,,,\n2015,5,20,\"US\",\"2144\",\"LGA\",\"DCA\",-10.00,-3.00,0.00,\"\",0.00,89.00,42.00,214.00,,,,,,\n2015,5,20,\"US\",\"2145\",\"DCA\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,81.00,42.00,214.00,,,,,,\n2015,5,20,\"US\",\"2145\",\"LGA\",\"DCA\",35.00,59.00,0.00,\"\",0.00,107.00,45.00,214.00,0.00,0.00,24.00,0.00,35.00,\n2015,5,20,\"US\",\"2146\",\"BOS\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,77.00,47.00,184.00,,,,,,\n2015,5,20,\"US\",\"2146\",\"LGA\",\"BOS\",-8.00,-17.00,0.00,\"\",0.00,59.00,38.00,184.00,,,,,,\n2015,5,20,\"US\",\"2147\",\"DCA\",\"LGA\",13.00,1.00,0.00,\"\",0.00,76.00,37.00,214.00,,,,,,\n2015,5,20,\"US\",\"2147\",\"LGA\",\"DCA\",0.00,15.00,0.00,\"\",0.00,97.00,42.00,214.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,20,\"US\",\"2148\",\"BOS\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,62.00,39.00,184.00,,,,,,\n2015,5,20,\"US\",\"2151\",\"LGA\",\"BOS\",15.00,44.00,0.00,\"\",0.00,97.00,42.00,184.00,0.00,0.00,29.00,0.00,15.00,\n2015,5,20,\"US\",\"2152\",\"BOS\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,68.00,44.00,184.00,,,,,,\n2015,5,20,\"US\",\"2152\",\"LGA\",\"BOS\",-7.00,-11.00,0.00,\"\",0.00,64.00,33.00,184.00,,,,,,\n2015,5,20,\"US\",\"2153\",\"DCA\",\"LGA\",56.00,56.00,0.00,\"\",0.00,89.00,45.00,214.00,0.00,0.00,0.00,0.00,56.00,\n2015,5,20,\"US\",\"2153\",\"LGA\",\"DCA\",65.00,103.00,0.00,\"\",0.00,118.00,42.00,214.00,10.00,0.00,38.00,0.00,55.00,\n2015,5,20,\"US\",\"2154\",\"DCA\",\"LGA\",-7.00,-27.00,0.00,\"\",0.00,56.00,38.00,214.00,,,,,,\n2015,5,20,\"US\",\"2154\",\"LGA\",\"DCA\",-7.00,-10.00,0.00,\"\",0.00,73.00,48.00,214.00,,,,,,\n2015,5,20,\"US\",\"2155\",\"DCA\",\"LGA\",59.00,47.00,0.00,\"\",0.00,83.00,42.00,214.00,0.00,0.00,0.00,0.00,47.00,\n2015,5,20,\"US\",\"2156\",\"BOS\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,80.00,49.00,184.00,,,,,,\n2015,5,20,\"US\",\"2156\",\"LGA\",\"BOS\",-7.00,7.00,0.00,\"\",0.00,90.00,36.00,184.00,,,,,,\n2015,5,20,\"US\",\"2157\",\"DCA\",\"LGA\",19.00,5.00,0.00,\"\",0.00,74.00,40.00,214.00,,,,,,\n2015,5,20,\"US\",\"2157\",\"LGA\",\"DCA\",0.00,21.00,0.00,\"\",0.00,103.00,42.00,214.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,20,\"US\",\"2158\",\"BOS\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,69.00,44.00,184.00,,,,,,\n2015,5,20,\"US\",\"2158\",\"LGA\",\"BOS\",-6.00,-11.00,0.00,\"\",0.00,59.00,31.00,184.00,,,,,,\n2015,5,20,\"US\",\"2162\",\"BOS\",\"LGA\",-7.00,-28.00,0.00,\"\",0.00,63.00,40.00,184.00,,,,,,\n2015,5,20,\"US\",\"2162\",\"LGA\",\"BOS\",-8.00,-2.00,0.00,\"\",0.00,78.00,39.00,184.00,,,,,,\n2015,5,20,\"US\",\"2163\",\"DCA\",\"LGA\",-6.00,-31.00,0.00,\"\",0.00,58.00,38.00,214.00,,,,,,\n2015,5,20,\"US\",\"2164\",\"DCA\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,90.00,41.00,214.00,,,,,,\n2015,5,20,\"US\",\"2164\",\"LGA\",\"DCA\",-4.00,46.00,0.00,\"\",0.00,133.00,55.00,214.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,20,\"US\",\"2165\",\"BOS\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,67.00,48.00,184.00,,,,,,\n2015,5,20,\"US\",\"2167\",\"DCA\",\"LGA\",18.00,76.00,0.00,\"\",0.00,144.00,40.00,214.00,5.00,0.00,58.00,0.00,13.00,\n2015,5,20,\"US\",\"2167\",\"LGA\",\"DCA\",70.00,85.00,0.00,\"\",0.00,97.00,43.00,214.00,0.00,0.00,15.00,0.00,70.00,\n2015,5,20,\"US\",\"2168\",\"BOS\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,66.00,44.00,184.00,,,,,,\n2015,5,20,\"US\",\"2168\",\"LGA\",\"BOS\",-7.00,-4.00,0.00,\"\",0.00,74.00,35.00,184.00,,,,,,\n2015,5,20,\"US\",\"2171\",\"BOS\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,75.00,42.00,184.00,,,,,,\n2015,5,20,\"US\",\"2172\",\"BOS\",\"LGA\",-8.00,-22.00,0.00,\"\",0.00,67.00,48.00,184.00,,,,,,\n2015,5,20,\"US\",\"2172\",\"LGA\",\"BOS\",-7.00,-18.00,0.00,\"\",0.00,62.00,35.00,184.00,,,,,,\n2015,5,20,\"US\",\"2174\",\"DCA\",\"LGA\",38.00,18.00,0.00,\"\",0.00,70.00,37.00,214.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,20,\"US\",\"2174\",\"LGA\",\"DCA\",11.00,31.00,0.00,\"\",0.00,99.00,42.00,214.00,0.00,0.00,20.00,0.00,11.00,\n2015,5,21,\"US\",\"413\",\"JFK\",\"CLT\",-4.00,-6.00,0.00,\"\",0.00,114.00,93.00,541.00,,,,,,\n2015,5,21,\"US\",\"425\",\"JFK\",\"CLT\",13.00,21.00,0.00,\"\",0.00,136.00,93.00,541.00,13.00,0.00,8.00,0.00,0.00,\n2015,5,21,\"US\",\"425\",\"PHX\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,286.00,251.00,2153.00,,,,,,\n2015,5,21,\"US\",\"433\",\"JFK\",\"PHX\",-3.00,-6.00,0.00,\"\",0.00,335.00,303.00,2153.00,,,,,,\n2015,5,16,\"US\",\"841\",\"LGA\",\"CLT\",-2.00,20.00,0.00,\"\",0.00,149.00,81.00,544.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,16,\"US\",\"863\",\"ROC\",\"CLT\",5.00,2.00,0.00,\"\",0.00,119.00,88.00,573.00,,,,,,\n2015,5,16,\"US\",\"873\",\"JFK\",\"CLT\",33.00,16.00,0.00,\"\",0.00,107.00,79.00,541.00,5.00,0.00,0.00,0.00,11.00,\n2015,5,16,\"US\",\"876\",\"SYR\",\"CLT\",-8.00,-6.00,0.00,\"\",0.00,130.00,96.00,603.00,,,,,,\n2015,5,16,\"US\",\"885\",\"LGA\",\"CLT\",3.00,9.00,0.00,\"\",0.00,123.00,79.00,544.00,,,,,,\n2015,5,16,\"US\",\"890\",\"LGA\",\"CLT\",35.00,128.00,0.00,\"\",0.00,216.00,109.00,544.00,0.00,0.00,93.00,0.00,35.00,\n2015,5,16,\"US\",\"894\",\"LGA\",\"CLT\",-1.00,5.00,0.00,\"\",0.00,129.00,96.00,544.00,,,,,,\n2015,5,16,\"US\",\"896\",\"CLT\",\"ROC\",-4.00,-3.00,0.00,\"\",0.00,103.00,85.00,573.00,,,,,,\n2015,5,16,\"US\",\"1704\",\"ALB\",\"CLT\",1.00,11.00,0.00,\"\",0.00,141.00,97.00,646.00,,,,,,\n2015,5,16,\"US\",\"1704\",\"CLT\",\"BUF\",12.00,7.00,0.00,\"\",0.00,94.00,78.00,546.00,,,,,,\n2015,5,16,\"US\",\"1740\",\"CLT\",\"LGA\",51.00,49.00,0.00,\"\",0.00,105.00,85.00,544.00,0.00,0.00,0.00,0.00,49.00,\n2015,5,16,\"US\",\"1760\",\"LGA\",\"CLT\",-4.00,-11.00,0.00,\"\",0.00,115.00,81.00,544.00,,,,,,\n2015,5,16,\"US\",\"1781\",\"LGA\",\"CLT\",-7.00,-28.00,0.00,\"\",0.00,104.00,80.00,544.00,,,,,,\n2015,5,16,\"US\",\"1797\",\"BUF\",\"CLT\",-5.00,-15.00,0.00,\"\",0.00,102.00,82.00,546.00,,,,,,\n2015,5,16,\"US\",\"1799\",\"LGA\",\"CLT\",1.00,3.00,0.00,\"\",0.00,124.00,81.00,544.00,,,,,,\n2015,5,16,\"US\",\"1804\",\"PHL\",\"LGA\",21.00,15.00,0.00,\"\",0.00,55.00,31.00,96.00,0.00,15.00,0.00,0.00,0.00,\n2015,5,16,\"US\",\"1838\",\"PHL\",\"LGA\",8.00,-3.00,0.00,\"\",0.00,44.00,29.00,96.00,,,,,,\n2015,5,16,\"US\",\"1843\",\"LGA\",\"CLT\",-7.00,-7.00,0.00,\"\",0.00,119.00,80.00,544.00,,,,,,\n2015,5,16,\"US\",\"1855\",\"JFK\",\"CLT\",-3.00,-14.00,0.00,\"\",0.00,103.00,78.00,541.00,,,,,,\n2015,5,16,\"US\",\"1860\",\"CLT\",\"LGA\",1.00,-14.00,0.00,\"\",0.00,90.00,76.00,544.00,,,,,,\n2015,5,16,\"US\",\"1867\",\"JFK\",\"CLT\",1.00,-18.00,0.00,\"\",0.00,102.00,77.00,541.00,,,,,,\n2015,5,16,\"US\",\"1887\",\"LGA\",\"CLT\",-7.00,-17.00,0.00,\"\",0.00,113.00,78.00,544.00,,,,,,\n2015,5,16,\"US\",\"1898\",\"CLT\",\"JFK\",9.00,13.00,0.00,\"\",0.00,114.00,81.00,541.00,,,,,,\n2015,5,16,\"US\",\"1910\",\"CLT\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,109.00,81.00,544.00,,,,,,\n2015,5,16,\"US\",\"1918\",\"PHL\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,51.00,28.00,96.00,,,,,,\n2015,5,16,\"US\",\"1933\",\"LGA\",\"PHL\",-3.00,-23.00,0.00,\"\",0.00,53.00,33.00,96.00,,,,,,\n2015,5,16,\"US\",\"1940\",\"CLT\",\"ALB\",-3.00,9.00,0.00,\"\",0.00,130.00,95.00,646.00,,,,,,\n2015,5,16,\"US\",\"1942\",\"CLT\",\"BUF\",10.00,6.00,0.00,\"\",0.00,96.00,80.00,546.00,,,,,,\n2015,5,16,\"US\",\"1946\",\"LGA\",\"CLT\",-8.00,-25.00,0.00,\"\",0.00,105.00,81.00,544.00,,,,,,\n2015,5,16,\"US\",\"1952\",\"CLT\",\"BUF\",-6.00,-5.00,0.00,\"\",0.00,99.00,78.00,546.00,,,,,,\n2015,5,16,\"US\",\"1954\",\"CLT\",\"LGA\",2.00,-1.00,0.00,\"\",0.00,105.00,87.00,544.00,,,,,,\n2015,5,16,\"US\",\"1982\",\"CLT\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,90.00,77.00,541.00,,,,,,\n2015,5,16,\"US\",\"1988\",\"CLT\",\"ALB\",-6.00,0.00,0.00,\"\",0.00,131.00,96.00,646.00,,,,,,\n2015,5,16,\"US\",\"2017\",\"CLT\",\"JFK\",1.00,-5.00,0.00,\"\",0.00,104.00,82.00,541.00,,,,,,\n2015,5,16,\"US\",\"2036\",\"CLT\",\"SYR\",-2.00,-10.00,0.00,\"\",0.00,102.00,84.00,603.00,,,,,,\n2015,5,16,\"US\",\"2042\",\"CLT\",\"JFK\",12.00,23.00,0.00,\"\",0.00,117.00,82.00,541.00,12.00,0.00,11.00,0.00,0.00,\n2015,5,16,\"US\",\"2047\",\"BUF\",\"CLT\",8.00,3.00,0.00,\"\",0.00,104.00,79.00,546.00,,,,,,\n2015,5,16,\"US\",\"2050\",\"CLT\",\"LGA\",65.00,58.00,0.00,\"\",0.00,101.00,85.00,544.00,0.00,0.00,0.00,0.00,58.00,\n2015,5,16,\"US\",\"2062\",\"CLT\",\"LGA\",-1.00,8.00,0.00,\"\",0.00,118.00,83.00,544.00,,,,,,\n2015,5,16,\"US\",\"2064\",\"CLT\",\"LGA\",-5.00,9.00,0.00,\"\",0.00,128.00,83.00,544.00,,,,,,\n2015,5,16,\"US\",\"2066\",\"CLT\",\"LGA\",-4.00,-9.00,0.00,\"\",0.00,106.00,82.00,544.00,,,,,,\n2015,5,16,\"US\",\"2068\",\"CLT\",\"LGA\",4.00,2.00,0.00,\"\",0.00,105.00,82.00,544.00,,,,,,\n2015,5,16,\"US\",\"2069\",\"BUF\",\"CLT\",6.00,8.00,0.00,\"\",0.00,113.00,86.00,546.00,,,,,,\n2015,5,16,\"US\",\"2126\",\"BOS\",\"LGA\",17.00,-2.00,0.00,\"\",0.00,62.00,43.00,184.00,,,,,,\n2015,5,16,\"US\",\"2135\",\"DCA\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,67.00,49.00,214.00,,,,,,\n2015,5,16,\"US\",\"2135\",\"LGA\",\"DCA\",-5.00,-12.00,0.00,\"\",0.00,75.00,43.00,214.00,,,,,,\n2015,5,16,\"US\",\"2136\",\"LGA\",\"BOS\",-8.00,-1.00,0.00,\"\",0.00,85.00,40.00,184.00,,,,,,\n2015,5,16,\"US\",\"2145\",\"DCA\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,72.00,43.00,214.00,,,,,,\n2015,5,16,\"US\",\"2146\",\"LGA\",\"DCA\",-4.00,7.00,0.00,\"\",0.00,95.00,42.00,214.00,,,,,,\n2015,5,16,\"US\",\"2156\",\"DCA\",\"LGA\",6.00,-5.00,0.00,\"\",0.00,65.00,46.00,214.00,,,,,,\n2015,5,16,\"US\",\"2156\",\"LGA\",\"DCA\",-5.00,-7.00,0.00,\"\",0.00,73.00,48.00,214.00,,,,,,\n2015,5,16,\"US\",\"2158\",\"LGA\",\"BOS\",-9.00,-7.00,0.00,\"\",0.00,66.00,40.00,184.00,,,,,,\n2015,5,17,\"US\",\"425\",\"JFK\",\"CLT\",-5.00,-26.00,0.00,\"\",0.00,107.00,77.00,541.00,,,,,,\n2015,5,17,\"US\",\"425\",\"PHX\",\"JFK\",22.00,10.00,0.00,\"\",0.00,291.00,250.00,2153.00,,,,,,\n2015,5,17,\"US\",\"433\",\"JFK\",\"PHX\",-7.00,-3.00,0.00,\"\",0.00,342.00,298.00,2153.00,,,,,,\n2015,5,17,\"US\",\"513\",\"LGA\",\"CLT\",-5.00,-27.00,0.00,\"\",0.00,95.00,77.00,544.00,,,,,,\n2015,5,17,\"US\",\"613\",\"BUF\",\"CLT\",-3.00,-14.00,0.00,\"\",0.00,101.00,79.00,546.00,,,,,,\n2015,5,17,\"US\",\"622\",\"PHX\",\"JFK\",-5.00,-9.00,0.00,\"\",0.00,286.00,257.00,2153.00,,,,,,\n2015,5,17,\"US\",\"632\",\"PHX\",\"JFK\",11.00,-5.00,0.00,\"\",0.00,269.00,251.00,2153.00,,,,,,\n2015,5,17,\"US\",\"639\",\"CLT\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,109.00,82.00,541.00,,,,,,\n2015,5,17,\"US\",\"639\",\"JFK\",\"PHX\",2.00,-12.00,0.00,\"\",0.00,320.00,294.00,2153.00,,,,,,\n2015,5,17,\"US\",\"654\",\"JFK\",\"PHX\",-4.00,-4.00,0.00,\"\",0.00,324.00,292.00,2153.00,,,,,,\n2015,5,19,\"US\",\"622\",\"PHX\",\"JFK\",4.00,-6.00,0.00,\"\",0.00,280.00,253.00,2153.00,,,,,,\n2015,5,19,\"US\",\"632\",\"PHX\",\"JFK\",2.00,-32.00,0.00,\"\",0.00,251.00,232.00,2153.00,,,,,,\n2015,5,19,\"US\",\"639\",\"CLT\",\"JFK\",6.00,12.00,0.00,\"\",0.00,122.00,79.00,541.00,,,,,,\n2015,5,19,\"US\",\"639\",\"JFK\",\"PHX\",17.00,28.00,0.00,\"\",0.00,345.00,306.00,2153.00,9.00,0.00,11.00,0.00,8.00,\n2015,5,19,\"US\",\"654\",\"JFK\",\"PHX\",5.00,-6.00,0.00,\"\",0.00,313.00,290.00,2153.00,,,,,,\n2015,5,19,\"US\",\"756\",\"BUF\",\"CLT\",-4.00,-9.00,0.00,\"\",0.00,106.00,86.00,546.00,,,,,,\n2015,5,19,\"US\",\"809\",\"PHL\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,55.00,29.00,96.00,,,,,,\n2015,5,19,\"US\",\"821\",\"ROC\",\"CLT\",-1.00,-1.00,0.00,\"\",0.00,122.00,99.00,573.00,,,,,,\n2015,5,19,\"US\",\"826\",\"LGA\",\"CLT\",5.00,3.00,0.00,\"\",0.00,115.00,90.00,544.00,,,,,,\n2015,5,19,\"US\",\"853\",\"CLT\",\"BUF\",-6.00,-14.00,0.00,\"\",0.00,97.00,78.00,546.00,,,,,,\n2015,5,19,\"US\",\"873\",\"JFK\",\"CLT\",62.00,46.00,0.00,\"\",0.00,108.00,83.00,541.00,2.00,0.00,0.00,0.00,44.00,\n2015,5,19,\"US\",\"876\",\"SYR\",\"CLT\",-3.00,-7.00,0.00,\"\",0.00,124.00,101.00,603.00,,,,,,\n2015,5,19,\"US\",\"890\",\"LGA\",\"CLT\",30.00,21.00,0.00,\"\",0.00,116.00,87.00,544.00,0.00,0.00,0.00,0.00,21.00,\n2015,5,19,\"US\",\"896\",\"CLT\",\"ROC\",8.00,21.00,0.00,\"\",0.00,115.00,79.00,573.00,0.00,0.00,13.00,0.00,8.00,\n2015,5,19,\"US\",\"1740\",\"CLT\",\"LGA\",60.00,58.00,0.00,\"\",0.00,111.00,76.00,544.00,0.00,0.00,58.00,0.00,0.00,\n2015,5,19,\"US\",\"1750\",\"ALB\",\"CLT\",5.00,11.00,0.00,\"\",0.00,137.00,103.00,646.00,,,,,,\n2015,5,19,\"US\",\"1781\",\"LGA\",\"CLT\",0.00,46.00,0.00,\"\",0.00,171.00,135.00,544.00,0.00,0.00,46.00,0.00,0.00,\n2015,5,19,\"US\",\"1810\",\"LGA\",\"CLT\",-4.00,-3.00,0.00,\"\",0.00,123.00,92.00,544.00,,,,,,\n2015,5,19,\"US\",\"1815\",\"LGA\",\"CLT\",-3.00,6.00,0.00,\"\",0.00,131.00,99.00,544.00,,,,,,\n2015,5,19,\"US\",\"1830\",\"CLT\",\"JFK\",23.00,41.00,0.00,\"\",0.00,125.00,78.00,541.00,2.00,0.00,18.00,0.00,21.00,\n2015,5,19,\"US\",\"1849\",\"LGA\",\"CLT\",-7.00,-28.00,0.00,\"\",0.00,112.00,90.00,544.00,,,,,,\n2015,5,19,\"US\",\"1851\",\"LGA\",\"CLT\",58.00,76.00,0.00,\"\",0.00,141.00,87.00,544.00,0.00,0.00,18.00,0.00,58.00,\n2015,5,19,\"US\",\"1873\",\"BUF\",\"CLT\",-3.00,1.00,0.00,\"\",0.00,112.00,88.00,546.00,,,,,,\n2015,5,19,\"US\",\"1885\",\"CLT\",\"BUF\",-2.00,-2.00,0.00,\"\",0.00,101.00,80.00,546.00,,,,,,\n2015,5,19,\"US\",\"1898\",\"CLT\",\"JFK\",16.00,30.00,0.00,\"\",0.00,124.00,76.00,541.00,4.00,0.00,14.00,0.00,12.00,\n2015,5,19,\"US\",\"1908\",\"LGA\",\"CLT\",42.00,93.00,0.00,\"\",0.00,173.00,130.00,544.00,0.00,0.00,51.00,0.00,42.00,\n2015,5,19,\"US\",\"1910\",\"CLT\",\"LGA\",-1.00,66.00,0.00,\"\",0.00,183.00,76.00,544.00,0.00,0.00,66.00,0.00,0.00,\n2015,5,19,\"US\",\"1916\",\"SYR\",\"CLT\",-4.00,-5.00,0.00,\"\",0.00,121.00,92.00,603.00,,,,,,\n2015,5,19,\"US\",\"1919\",\"JFK\",\"CLT\",-3.00,14.00,0.00,\"\",0.00,138.00,85.00,541.00,,,,,,\n2015,5,19,\"US\",\"1923\",\"ALB\",\"CLT\",-3.00,-6.00,0.00,\"\",0.00,139.00,107.00,646.00,,,,,,\n2015,5,19,\"US\",\"1933\",\"LGA\",\"PHL\",29.00,37.00,0.00,\"\",0.00,81.00,35.00,96.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,19,\"US\",\"1940\",\"CLT\",\"ALB\",-4.00,-11.00,0.00,\"\",0.00,111.00,89.00,646.00,,,,,,\n2015,5,19,\"US\",\"1942\",\"CLT\",\"BUF\",-6.00,-9.00,0.00,\"\",0.00,97.00,80.00,546.00,,,,,,\n2015,5,19,\"US\",\"1951\",\"LGA\",\"CLT\",-4.00,-10.00,0.00,\"\",0.00,116.00,91.00,544.00,,,,,,\n2015,5,19,\"US\",\"1952\",\"CLT\",\"BUF\",8.00,-1.00,0.00,\"\",0.00,89.00,73.00,546.00,,,,,,\n2015,5,19,\"US\",\"1954\",\"CLT\",\"LGA\",19.00,37.00,0.00,\"\",0.00,126.00,83.00,544.00,0.00,0.00,18.00,0.00,19.00,\n2015,5,19,\"US\",\"1971\",\"CLT\",\"SYR\",8.00,6.00,0.00,\"\",0.00,103.00,88.00,603.00,,,,,,\n2015,5,19,\"US\",\"1977\",\"BUF\",\"CLT\",-5.00,-4.00,0.00,\"\",0.00,110.00,91.00,546.00,,,,,,\n2015,5,19,\"US\",\"1981\",\"CLT\",\"LGA\",10.00,1.00,0.00,\"\",0.00,96.00,74.00,544.00,,,,,,\n2015,5,19,\"US\",\"1983\",\"BUF\",\"CLT\",-6.00,1.00,0.00,\"\",0.00,119.00,92.00,546.00,,,,,,\n2015,5,19,\"US\",\"1988\",\"CLT\",\"ALB\",-2.00,7.00,0.00,\"\",0.00,134.00,92.00,646.00,,,,,,\n2015,5,15,\"US\",\"622\",\"PHX\",\"JFK\",5.00,7.00,0.00,\"\",0.00,292.00,248.00,2153.00,,,,,,\n2015,5,15,\"US\",\"632\",\"PHX\",\"JFK\",12.00,21.00,0.00,\"\",0.00,294.00,261.00,2153.00,0.00,0.00,9.00,0.00,12.00,\n2015,5,15,\"US\",\"639\",\"CLT\",\"JFK\",11.00,-8.00,0.00,\"\",0.00,97.00,80.00,541.00,,,,,,\n2015,5,15,\"US\",\"639\",\"JFK\",\"PHX\",9.00,-1.00,0.00,\"\",0.00,324.00,301.00,2153.00,,,,,,\n2015,5,15,\"US\",\"654\",\"JFK\",\"PHX\",,,1.00,\"A\",0.00,,,2153.00,,,,,,\n2015,5,15,\"US\",\"756\",\"BUF\",\"CLT\",-2.00,-4.00,0.00,\"\",0.00,109.00,84.00,546.00,,,,,,\n2015,5,15,\"US\",\"809\",\"PHL\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,67.00,25.00,96.00,,,,,,\n2015,5,15,\"US\",\"821\",\"ROC\",\"CLT\",-4.00,-12.00,0.00,\"\",0.00,114.00,92.00,573.00,,,,,,\n2015,5,15,\"US\",\"826\",\"LGA\",\"CLT\",-2.00,-11.00,0.00,\"\",0.00,108.00,78.00,544.00,,,,,,\n2015,5,18,\"US\",\"756\",\"BUF\",\"CLT\",0.00,-4.00,0.00,\"\",0.00,107.00,83.00,546.00,,,,,,\n2015,5,18,\"US\",\"809\",\"PHL\",\"LGA\",,,1.00,\"C\",0.00,,,96.00,,,,,,\n2015,5,18,\"US\",\"821\",\"ROC\",\"CLT\",-4.00,-12.00,0.00,\"\",0.00,114.00,85.00,573.00,,,,,,\n2015,5,18,\"US\",\"826\",\"LGA\",\"CLT\",24.00,20.00,0.00,\"\",0.00,113.00,77.00,544.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"US\",\"853\",\"CLT\",\"BUF\",-9.00,-14.00,0.00,\"\",0.00,100.00,83.00,546.00,,,,,,\n2015,5,18,\"US\",\"873\",\"JFK\",\"CLT\",28.00,7.00,0.00,\"\",0.00,103.00,75.00,541.00,,,,,,\n2015,5,18,\"US\",\"876\",\"SYR\",\"CLT\",-6.00,-3.00,0.00,\"\",0.00,131.00,94.00,603.00,,,,,,\n2015,5,18,\"US\",\"890\",\"LGA\",\"CLT\",136.00,141.00,0.00,\"\",0.00,130.00,95.00,544.00,0.00,0.00,5.00,0.00,136.00,\n2015,5,18,\"US\",\"896\",\"CLT\",\"ROC\",20.00,38.00,0.00,\"\",0.00,120.00,79.00,573.00,20.00,0.00,18.00,0.00,0.00,\n2015,5,18,\"US\",\"1740\",\"CLT\",\"LGA\",71.00,151.00,0.00,\"\",0.00,193.00,90.00,544.00,0.00,0.00,80.00,0.00,71.00,\n2015,5,18,\"US\",\"1750\",\"ALB\",\"CLT\",-4.00,7.00,0.00,\"\",0.00,142.00,99.00,646.00,,,,,,\n2015,5,18,\"US\",\"1781\",\"LGA\",\"CLT\",342.00,355.00,0.00,\"\",0.00,138.00,95.00,544.00,0.00,0.00,13.00,0.00,342.00,\n2015,5,18,\"US\",\"1810\",\"LGA\",\"CLT\",-7.00,-17.00,0.00,\"\",0.00,112.00,75.00,544.00,,,,,,\n2015,5,18,\"US\",\"1815\",\"LGA\",\"CLT\",153.00,122.00,0.00,\"\",0.00,91.00,73.00,544.00,0.00,0.00,0.00,0.00,122.00,\n2015,5,18,\"US\",\"1830\",\"CLT\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,102.00,84.00,541.00,,,,,,\n2015,5,18,\"US\",\"1849\",\"LGA\",\"CLT\",85.00,60.00,0.00,\"\",0.00,108.00,77.00,544.00,0.00,0.00,0.00,0.00,60.00,\n2015,5,18,\"US\",\"1851\",\"LGA\",\"CLT\",90.00,142.00,0.00,\"\",0.00,175.00,123.00,544.00,0.00,0.00,52.00,0.00,90.00,\n2015,5,18,\"US\",\"1873\",\"BUF\",\"CLT\",8.00,14.00,0.00,\"\",0.00,114.00,91.00,546.00,,,,,,\n2015,5,18,\"US\",\"1885\",\"CLT\",\"BUF\",-3.00,29.00,0.00,\"\",0.00,133.00,78.00,546.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,18,\"US\",\"1898\",\"CLT\",\"JFK\",23.00,48.00,0.00,\"\",0.00,135.00,113.00,541.00,23.00,0.00,25.00,0.00,0.00,\n2015,5,18,\"US\",\"1908\",\"LGA\",\"CLT\",,,1.00,\"C\",0.00,,,544.00,,,,,,\n2015,5,18,\"US\",\"1910\",\"CLT\",\"LGA\",123.00,132.00,0.00,\"\",0.00,125.00,76.00,544.00,0.00,0.00,132.00,0.00,0.00,\n2015,5,18,\"US\",\"1916\",\"SYR\",\"CLT\",15.00,1.00,0.00,\"\",0.00,108.00,85.00,603.00,,,,,,\n2015,5,18,\"US\",\"1919\",\"JFK\",\"CLT\",221.00,285.00,0.00,\"\",0.00,185.00,96.00,541.00,0.00,0.00,64.00,0.00,221.00,\n2015,5,18,\"US\",\"1923\",\"ALB\",\"CLT\",-6.00,-36.00,0.00,\"\",0.00,112.00,87.00,646.00,,,,,,\n2015,5,18,\"US\",\"1933\",\"LGA\",\"PHL\",-5.00,-9.00,0.00,\"\",0.00,69.00,39.00,96.00,,,,,,\n2015,5,18,\"US\",\"1940\",\"CLT\",\"ALB\",125.00,120.00,0.00,\"\",0.00,113.00,93.00,646.00,97.00,0.00,0.00,0.00,23.00,\n2015,5,18,\"US\",\"1942\",\"CLT\",\"BUF\",-5.00,1.00,0.00,\"\",0.00,106.00,81.00,546.00,,,,,,\n2015,5,18,\"US\",\"1951\",\"LGA\",\"CLT\",-5.00,-18.00,0.00,\"\",0.00,109.00,75.00,544.00,,,,,,\n2015,5,18,\"US\",\"1952\",\"CLT\",\"BUF\",25.00,25.00,0.00,\"\",0.00,98.00,76.00,546.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"US\",\"1954\",\"CLT\",\"LGA\",-2.00,43.00,0.00,\"\",0.00,153.00,90.00,544.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,18,\"US\",\"1971\",\"CLT\",\"SYR\",27.00,27.00,0.00,\"\",0.00,105.00,81.00,603.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,18,\"US\",\"1977\",\"BUF\",\"CLT\",-4.00,-14.00,0.00,\"\",0.00,99.00,82.00,546.00,,,,,,\n2015,5,18,\"US\",\"1981\",\"CLT\",\"LGA\",6.00,8.00,0.00,\"\",0.00,107.00,86.00,544.00,,,,,,\n2015,5,18,\"US\",\"1983\",\"BUF\",\"CLT\",-3.00,-14.00,0.00,\"\",0.00,101.00,80.00,546.00,,,,,,\n2015,5,18,\"US\",\"1988\",\"CLT\",\"ALB\",-4.00,-10.00,0.00,\"\",0.00,119.00,95.00,646.00,,,,,,\n2015,5,18,\"US\",\"2017\",\"CLT\",\"JFK\",222.00,226.00,0.00,\"\",0.00,114.00,91.00,541.00,0.00,0.00,226.00,0.00,0.00,\n2015,5,18,\"US\",\"2036\",\"CLT\",\"SYR\",18.00,20.00,0.00,\"\",0.00,112.00,84.00,603.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,18,\"US\",\"2042\",\"CLT\",\"JFK\",26.00,35.00,0.00,\"\",0.00,115.00,85.00,541.00,0.00,0.00,9.00,0.00,26.00,\n2015,5,18,\"US\",\"2050\",\"CLT\",\"LGA\",61.00,145.00,0.00,\"\",0.00,192.00,83.00,544.00,0.00,0.00,145.00,0.00,0.00,\n2015,5,18,\"US\",\"2060\",\"CLT\",\"LGA\",-4.00,,0.00,\"\",1.00,,,544.00,,,,,,\n2015,5,18,\"US\",\"2062\",\"CLT\",\"LGA\",40.00,54.00,0.00,\"\",0.00,123.00,87.00,544.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,18,\"US\",\"2064\",\"CLT\",\"LGA\",,,1.00,\"C\",0.00,,,544.00,,,,,,\n2015,5,18,\"US\",\"2066\",\"CLT\",\"LGA\",359.00,359.00,0.00,\"\",0.00,106.00,83.00,544.00,0.00,0.00,359.00,0.00,0.00,\n2015,5,18,\"US\",\"2068\",\"CLT\",\"LGA\",69.00,95.00,0.00,\"\",0.00,133.00,117.00,544.00,0.00,0.00,95.00,0.00,0.00,\n2015,5,18,\"US\",\"2069\",\"JFK\",\"CLT\",-3.00,37.00,0.00,\"\",0.00,161.00,73.00,541.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,18,\"US\",\"2115\",\"LGA\",\"DCA\",-4.00,-14.00,0.00,\"\",0.00,53.00,38.00,214.00,,,,,,\n2015,5,18,\"US\",\"2117\",\"DCA\",\"LGA\",93.00,,1.00,\"B\",0.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2118\",\"BOS\",\"LGA\",121.00,157.00,0.00,\"\",0.00,117.00,40.00,184.00,0.00,0.00,36.00,0.00,121.00,\n2015,5,18,\"US\",\"2118\",\"LGA\",\"BOS\",146.00,135.00,0.00,\"\",0.00,67.00,33.00,184.00,0.00,8.00,0.00,0.00,127.00,\n2015,5,18,\"US\",\"2121\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,18,\"US\",\"2121\",\"LGA\",\"BOS\",191.00,182.00,0.00,\"\",0.00,69.00,37.00,184.00,2.00,0.00,0.00,0.00,180.00,\n2015,5,18,\"US\",\"2122\",\"LGA\",\"BOS\",75.00,65.00,0.00,\"\",0.00,64.00,33.00,184.00,0.00,0.00,0.00,0.00,65.00,\n2015,5,18,\"US\",\"2123\",\"LGA\",\"DCA\",-7.00,-8.00,0.00,\"\",0.00,69.00,40.00,214.00,,,,,,\n2015,5,18,\"US\",\"2125\",\"LGA\",\"DCA\",136.00,116.00,0.00,\"\",0.00,64.00,47.00,214.00,0.00,0.00,0.00,0.00,116.00,\n2015,5,18,\"US\",\"2126\",\"BOS\",\"LGA\",0.00,96.00,0.00,\"\",0.00,177.00,69.00,184.00,0.00,0.00,96.00,0.00,0.00,\n2015,5,18,\"US\",\"2126\",\"LGA\",\"BOS\",-5.00,-12.00,0.00,\"\",0.00,55.00,33.00,184.00,,,,,,\n2015,5,18,\"US\",\"2128\",\"LGA\",\"BOS\",139.00,134.00,0.00,\"\",0.00,68.00,33.00,184.00,0.00,0.00,0.00,0.00,134.00,\n2015,5,18,\"US\",\"2131\",\"BOS\",\"LGA\",132.00,115.00,0.00,\"\",0.00,64.00,47.00,184.00,0.00,0.00,115.00,0.00,0.00,\n2015,5,18,\"US\",\"2131\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,18,\"US\",\"2133\",\"DCA\",\"LGA\",9.00,54.00,0.00,\"\",0.00,135.00,60.00,214.00,0.00,9.00,45.00,0.00,0.00,\n2015,5,18,\"US\",\"2133\",\"LGA\",\"DCA\",61.00,60.00,0.00,\"\",0.00,76.00,58.00,214.00,7.00,0.00,0.00,0.00,53.00,\n2015,5,18,\"US\",\"2135\",\"DCA\",\"LGA\",129.00,126.00,0.00,\"\",0.00,73.00,42.00,214.00,0.00,0.00,126.00,0.00,0.00,\n2015,5,18,\"US\",\"2135\",\"LGA\",\"DCA\",130.00,170.00,0.00,\"\",0.00,115.00,70.00,214.00,5.00,0.00,40.00,0.00,125.00,\n2015,5,18,\"US\",\"2136\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,18,\"US\",\"2136\",\"LGA\",\"BOS\",91.00,76.00,0.00,\"\",0.00,63.00,45.00,184.00,3.00,0.00,0.00,0.00,73.00,\n2015,5,18,\"US\",\"2137\",\"DCA\",\"LGA\",-4.00,,0.00,\"\",1.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2137\",\"LGA\",\"DCA\",,,1.00,\"B\",0.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2141\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,18,\"US\",\"2141\",\"LGA\",\"BOS\",106.00,80.00,0.00,\"\",0.00,51.00,35.00,184.00,0.00,0.00,0.00,0.00,80.00,\n2015,5,18,\"US\",\"2143\",\"DCA\",\"LGA\",98.00,112.00,0.00,\"\",0.00,103.00,38.00,214.00,0.00,0.00,112.00,0.00,0.00,\n2015,5,18,\"US\",\"2143\",\"LGA\",\"DCA\",55.00,57.00,0.00,\"\",0.00,83.00,43.00,214.00,3.00,0.00,2.00,0.00,52.00,\n2015,5,18,\"US\",\"2144\",\"DCA\",\"LGA\",-2.00,,1.00,\"B\",0.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2144\",\"LGA\",\"DCA\",,,1.00,\"B\",0.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2145\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2145\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2146\",\"BOS\",\"LGA\",111.00,94.00,0.00,\"\",0.00,65.00,41.00,184.00,0.00,0.00,94.00,0.00,0.00,\n2015,5,18,\"US\",\"2146\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,18,\"US\",\"2147\",\"DCA\",\"LGA\",,,1.00,\"B\",0.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2147\",\"LGA\",\"DCA\",-6.00,-16.00,0.00,\"\",0.00,72.00,53.00,214.00,,,,,,\n2015,5,18,\"US\",\"2148\",\"BOS\",\"LGA\",-3.00,,1.00,\"B\",0.00,,,184.00,,,,,,\n2015,5,18,\"US\",\"2151\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,18,\"US\",\"2152\",\"BOS\",\"LGA\",84.00,210.00,0.00,\"\",0.00,207.00,50.00,184.00,0.00,0.00,210.00,0.00,0.00,\n2015,5,18,\"US\",\"2152\",\"LGA\",\"BOS\",26.00,46.00,0.00,\"\",0.00,88.00,39.00,184.00,26.00,0.00,20.00,0.00,0.00,\n2015,5,18,\"US\",\"2153\",\"DCA\",\"LGA\",81.00,93.00,0.00,\"\",0.00,101.00,41.00,214.00,0.00,0.00,93.00,0.00,0.00,\n2015,5,18,\"US\",\"2153\",\"LGA\",\"DCA\",94.00,137.00,0.00,\"\",0.00,123.00,78.00,214.00,2.00,0.00,43.00,0.00,92.00,\n2015,5,18,\"US\",\"2154\",\"DCA\",\"LGA\",102.00,87.00,0.00,\"\",0.00,61.00,39.00,214.00,0.00,0.00,87.00,0.00,0.00,\n2015,5,18,\"US\",\"2154\",\"LGA\",\"DCA\",90.00,102.00,0.00,\"\",0.00,88.00,48.00,214.00,17.00,0.00,12.00,0.00,73.00,\n2015,5,18,\"US\",\"2155\",\"DCA\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,94.00,49.00,214.00,,,,,,\n2015,5,18,\"US\",\"2156\",\"BOS\",\"LGA\",183.00,166.00,0.00,\"\",0.00,66.00,43.00,184.00,160.00,0.00,0.00,0.00,6.00,\n2015,5,18,\"US\",\"2156\",\"LGA\",\"BOS\",87.00,73.00,0.00,\"\",0.00,62.00,33.00,184.00,1.00,0.00,0.00,0.00,72.00,\n2015,5,18,\"US\",\"2157\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2157\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2158\",\"BOS\",\"LGA\",274.00,255.00,0.00,\"\",0.00,61.00,45.00,184.00,0.00,0.00,255.00,0.00,0.00,\n2015,5,18,\"US\",\"2158\",\"LGA\",\"BOS\",,,1.00,\"B\",0.00,,,184.00,,,,,,\n2015,5,18,\"US\",\"2162\",\"BOS\",\"LGA\",96.00,76.00,0.00,\"\",0.00,64.00,47.00,184.00,0.00,0.00,76.00,0.00,0.00,\n2015,5,18,\"US\",\"2162\",\"LGA\",\"BOS\",211.00,234.00,0.00,\"\",0.00,95.00,36.00,184.00,10.00,0.00,23.00,0.00,201.00,\n2015,5,18,\"US\",\"2163\",\"DCA\",\"LGA\",-4.00,86.00,0.00,\"\",0.00,173.00,59.00,214.00,0.00,0.00,86.00,0.00,0.00,\n2015,5,18,\"US\",\"2164\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2164\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,18,\"US\",\"2165\",\"BOS\",\"LGA\",198.00,228.00,0.00,\"\",0.00,106.00,88.00,184.00,0.00,0.00,228.00,0.00,0.00,\n2015,5,18,\"US\",\"2167\",\"DCA\",\"LGA\",12.00,40.00,0.00,\"\",0.00,114.00,41.00,214.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,18,\"US\",\"2167\",\"LGA\",\"DCA\",42.00,84.00,0.00,\"\",0.00,124.00,76.00,214.00,6.00,0.00,42.00,0.00,36.00,\n2015,5,18,\"US\",\"2168\",\"BOS\",\"LGA\",149.00,146.00,0.00,\"\",0.00,78.00,47.00,184.00,0.00,0.00,146.00,0.00,0.00,\n2015,5,18,\"US\",\"2168\",\"LGA\",\"BOS\",1.00,3.00,0.00,\"\",0.00,73.00,46.00,184.00,,,,,,\n2015,5,18,\"US\",\"2171\",\"BOS\",\"LGA\",176.00,199.00,0.00,\"\",0.00,103.00,87.00,184.00,0.00,0.00,199.00,0.00,0.00,\n2015,5,18,\"US\",\"2172\",\"BOS\",\"LGA\",102.00,89.00,0.00,\"\",0.00,68.00,40.00,184.00,0.00,0.00,89.00,0.00,0.00,\n2015,5,18,\"US\",\"2172\",\"LGA\",\"BOS\",71.00,60.00,0.00,\"\",0.00,62.00,32.00,184.00,1.00,0.00,0.00,0.00,59.00,\n2015,5,18,\"US\",\"2174\",\"DCA\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,87.00,43.00,214.00,,,,,,\n2015,5,18,\"US\",\"2174\",\"LGA\",\"DCA\",-5.00,38.00,0.00,\"\",0.00,122.00,65.00,214.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,19,\"US\",\"413\",\"JFK\",\"CLT\",-4.00,-8.00,0.00,\"\",0.00,112.00,88.00,541.00,,,,,,\n2015,5,19,\"US\",\"425\",\"JFK\",\"CLT\",-2.00,-8.00,0.00,\"\",0.00,122.00,81.00,541.00,,,,,,\n2015,5,19,\"US\",\"425\",\"PHX\",\"JFK\",8.00,-18.00,0.00,\"\",0.00,277.00,245.00,2153.00,,,,,,\n2015,5,19,\"US\",\"433\",\"JFK\",\"PHX\",-2.00,-25.00,0.00,\"\",0.00,315.00,294.00,2153.00,,,,,,\n2015,5,19,\"US\",\"468\",\"LGA\",\"CLT\",75.00,82.00,0.00,\"\",0.00,126.00,81.00,544.00,23.00,0.00,7.00,0.00,52.00,\n2015,5,21,\"US\",\"1933\",\"LGA\",\"PHL\",-7.00,22.00,0.00,\"\",0.00,102.00,53.00,96.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,21,\"US\",\"1940\",\"CLT\",\"ALB\",-5.00,-8.00,0.00,\"\",0.00,115.00,86.00,646.00,,,,,,\n2015,5,21,\"US\",\"1942\",\"CLT\",\"BUF\",-5.00,-17.00,0.00,\"\",0.00,88.00,73.00,546.00,,,,,,\n2015,5,21,\"US\",\"1951\",\"LGA\",\"CLT\",-3.00,-2.00,0.00,\"\",0.00,123.00,106.00,544.00,,,,,,\n2015,5,21,\"US\",\"1952\",\"CLT\",\"BUF\",21.00,28.00,0.00,\"\",0.00,105.00,75.00,546.00,21.00,0.00,7.00,0.00,0.00,\n2015,5,21,\"US\",\"1954\",\"CLT\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,99.00,71.00,544.00,,,,,,\n2015,5,21,\"US\",\"1971\",\"CLT\",\"SYR\",0.00,-5.00,0.00,\"\",0.00,100.00,83.00,603.00,,,,,,\n2015,5,21,\"US\",\"1977\",\"BUF\",\"CLT\",-2.00,-3.00,0.00,\"\",0.00,108.00,88.00,546.00,,,,,,\n2015,5,21,\"US\",\"1981\",\"CLT\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,91.00,71.00,544.00,,,,,,\n2015,5,21,\"US\",\"1983\",\"BUF\",\"CLT\",-9.00,9.00,0.00,\"\",0.00,130.00,95.00,546.00,,,,,,\n2015,5,21,\"US\",\"1988\",\"CLT\",\"ALB\",-9.00,-5.00,0.00,\"\",0.00,129.00,93.00,646.00,,,,,,\n2015,5,21,\"US\",\"2017\",\"CLT\",\"JFK\",9.00,-8.00,0.00,\"\",0.00,93.00,72.00,541.00,,,,,,\n2015,5,21,\"US\",\"2036\",\"CLT\",\"SYR\",57.00,45.00,0.00,\"\",0.00,98.00,78.00,603.00,0.00,0.00,0.00,0.00,45.00,\n2015,5,21,\"US\",\"2042\",\"CLT\",\"JFK\",-1.00,-7.00,0.00,\"\",0.00,100.00,73.00,541.00,,,,,,\n2015,5,21,\"US\",\"2050\",\"CLT\",\"LGA\",18.00,16.00,0.00,\"\",0.00,106.00,79.00,544.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,21,\"US\",\"2060\",\"CLT\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,94.00,76.00,544.00,,,,,,\n2015,5,21,\"US\",\"2062\",\"CLT\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,109.00,73.00,544.00,,,,,,\n2015,5,21,\"US\",\"2064\",\"CLT\",\"LGA\",12.00,10.00,0.00,\"\",0.00,112.00,78.00,544.00,,,,,,\n2015,5,21,\"US\",\"2066\",\"CLT\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,103.00,77.00,544.00,,,,,,\n2015,5,21,\"US\",\"2068\",\"CLT\",\"LGA\",-4.00,-17.00,0.00,\"\",0.00,94.00,71.00,544.00,,,,,,\n2015,5,21,\"US\",\"2069\",\"JFK\",\"CLT\",20.00,8.00,0.00,\"\",0.00,109.00,90.00,541.00,,,,,,\n2015,5,21,\"US\",\"2115\",\"LGA\",\"DCA\",-6.00,-15.00,0.00,\"\",0.00,54.00,40.00,214.00,,,,,,\n2015,5,21,\"US\",\"2117\",\"DCA\",\"LGA\",2.00,7.00,0.00,\"\",0.00,74.00,46.00,214.00,,,,,,\n2015,5,21,\"US\",\"2118\",\"BOS\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,78.00,45.00,184.00,,,,,,\n2015,5,21,\"US\",\"2118\",\"LGA\",\"BOS\",-6.00,-14.00,0.00,\"\",0.00,70.00,38.00,184.00,,,,,,\n2015,5,21,\"US\",\"2121\",\"BOS\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,72.00,45.00,184.00,,,,,,\n2015,5,21,\"US\",\"2121\",\"LGA\",\"BOS\",-3.00,-17.00,0.00,\"\",0.00,64.00,41.00,184.00,,,,,,\n2015,5,21,\"US\",\"2122\",\"LGA\",\"BOS\",-6.00,-12.00,0.00,\"\",0.00,68.00,36.00,184.00,,,,,,\n2015,5,21,\"US\",\"2123\",\"LGA\",\"DCA\",-6.00,-3.00,0.00,\"\",0.00,73.00,44.00,214.00,,,,,,\n2015,5,21,\"US\",\"2125\",\"LGA\",\"DCA\",-7.00,-17.00,0.00,\"\",0.00,74.00,52.00,214.00,,,,,,\n2015,5,21,\"US\",\"2126\",\"BOS\",\"LGA\",-8.00,-16.00,0.00,\"\",0.00,73.00,44.00,184.00,,,,,,\n2015,5,21,\"US\",\"2126\",\"LGA\",\"BOS\",-5.00,-10.00,0.00,\"\",0.00,57.00,40.00,184.00,,,,,,\n2015,5,21,\"US\",\"2128\",\"LGA\",\"BOS\",-2.00,-4.00,0.00,\"\",0.00,71.00,40.00,184.00,,,,,,\n2015,5,21,\"US\",\"2131\",\"BOS\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,79.00,44.00,184.00,,,,,,\n2015,5,21,\"US\",\"2131\",\"LGA\",\"BOS\",-4.00,-17.00,0.00,\"\",0.00,59.00,38.00,184.00,,,,,,\n2015,5,21,\"US\",\"2133\",\"DCA\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,73.00,41.00,214.00,,,,,,\n2015,5,21,\"US\",\"2133\",\"LGA\",\"DCA\",-6.00,-9.00,0.00,\"\",0.00,74.00,48.00,214.00,,,,,,\n2015,5,21,\"US\",\"2135\",\"DCA\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,68.00,44.00,214.00,,,,,,\n2015,5,21,\"US\",\"2135\",\"LGA\",\"DCA\",-6.00,-10.00,0.00,\"\",0.00,71.00,55.00,214.00,,,,,,\n2015,5,21,\"US\",\"2136\",\"BOS\",\"LGA\",-10.00,-21.00,0.00,\"\",0.00,65.00,45.00,184.00,,,,,,\n2015,5,21,\"US\",\"2136\",\"LGA\",\"BOS\",-4.00,-17.00,0.00,\"\",0.00,65.00,42.00,184.00,,,,,,\n2015,5,21,\"US\",\"2137\",\"DCA\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,57.00,40.00,214.00,,,,,,\n2015,5,21,\"US\",\"2137\",\"LGA\",\"DCA\",-7.00,-8.00,0.00,\"\",0.00,84.00,59.00,214.00,,,,,,\n2015,5,21,\"US\",\"2141\",\"BOS\",\"LGA\",6.00,15.00,0.00,\"\",0.00,93.00,46.00,184.00,6.00,0.00,9.00,0.00,0.00,\n2015,5,21,\"US\",\"2141\",\"LGA\",\"BOS\",-5.00,17.00,0.00,\"\",0.00,99.00,43.00,184.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,21,\"US\",\"2143\",\"DCA\",\"LGA\",-7.00,-2.00,0.00,\"\",0.00,94.00,46.00,214.00,,,,,,\n2015,5,21,\"US\",\"2143\",\"LGA\",\"DCA\",16.00,38.00,0.00,\"\",0.00,103.00,65.00,214.00,16.00,0.00,22.00,0.00,0.00,\n2015,5,21,\"US\",\"2144\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,21,\"US\",\"2144\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,21,\"US\",\"2145\",\"DCA\",\"LGA\",-8.00,-13.00,0.00,\"\",0.00,83.00,42.00,214.00,,,,,,\n2015,5,21,\"US\",\"2145\",\"LGA\",\"DCA\",-7.00,8.00,0.00,\"\",0.00,98.00,67.00,214.00,,,,,,\n2015,5,21,\"US\",\"2146\",\"BOS\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,69.00,45.00,184.00,,,,,,\n2015,5,21,\"US\",\"2146\",\"LGA\",\"BOS\",-4.00,-16.00,0.00,\"\",0.00,56.00,38.00,184.00,,,,,,\n2015,5,21,\"US\",\"2147\",\"DCA\",\"LGA\",-4.00,-26.00,0.00,\"\",0.00,66.00,41.00,214.00,,,,,,\n2015,5,21,\"US\",\"2147\",\"LGA\",\"DCA\",-5.00,1.00,0.00,\"\",0.00,88.00,47.00,214.00,,,,,,\n2015,5,21,\"US\",\"2148\",\"BOS\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,77.00,44.00,184.00,,,,,,\n2015,5,21,\"US\",\"2151\",\"LGA\",\"BOS\",9.00,7.00,0.00,\"\",0.00,66.00,39.00,184.00,,,,,,\n2015,5,21,\"US\",\"2152\",\"BOS\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,71.00,43.00,184.00,,,,,,\n2015,5,21,\"US\",\"2152\",\"LGA\",\"BOS\",-5.00,-5.00,0.00,\"\",0.00,68.00,37.00,184.00,,,,,,\n2015,5,21,\"US\",\"2153\",\"DCA\",\"LGA\",29.00,31.00,0.00,\"\",0.00,91.00,41.00,214.00,0.00,0.00,2.00,0.00,29.00,\n2015,5,21,\"US\",\"2153\",\"LGA\",\"DCA\",34.00,49.00,0.00,\"\",0.00,95.00,64.00,214.00,4.00,0.00,15.00,0.00,30.00,\n2015,5,21,\"US\",\"2154\",\"DCA\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,68.00,44.00,214.00,,,,,,\n2015,5,21,\"US\",\"2154\",\"LGA\",\"DCA\",-8.00,-4.00,0.00,\"\",0.00,80.00,54.00,214.00,,,,,,\n2015,5,21,\"US\",\"2155\",\"DCA\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,75.00,41.00,214.00,,,,,,\n2015,5,21,\"US\",\"2156\",\"BOS\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,76.00,42.00,184.00,,,,,,\n2015,5,21,\"US\",\"2156\",\"LGA\",\"BOS\",-1.00,-1.00,0.00,\"\",0.00,76.00,40.00,184.00,,,,,,\n2015,5,21,\"US\",\"2157\",\"DCA\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,82.00,43.00,214.00,,,,,,\n2015,5,21,\"US\",\"2157\",\"LGA\",\"DCA\",-5.00,8.00,0.00,\"\",0.00,95.00,61.00,214.00,,,,,,\n2015,5,21,\"US\",\"2158\",\"BOS\",\"LGA\",-8.00,-29.00,0.00,\"\",0.00,59.00,42.00,184.00,,,,,,\n2015,5,21,\"US\",\"2158\",\"LGA\",\"BOS\",-6.00,-1.00,0.00,\"\",0.00,69.00,40.00,184.00,,,,,,\n2015,5,21,\"US\",\"2162\",\"BOS\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,76.00,46.00,184.00,,,,,,\n2015,5,21,\"US\",\"2162\",\"LGA\",\"BOS\",-5.00,-22.00,0.00,\"\",0.00,55.00,40.00,184.00,,,,,,\n2015,5,21,\"US\",\"2163\",\"DCA\",\"LGA\",-7.00,-24.00,0.00,\"\",0.00,66.00,39.00,214.00,,,,,,\n2015,5,21,\"US\",\"2164\",\"DCA\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,71.00,42.00,214.00,,,,,,\n2015,5,21,\"US\",\"2164\",\"LGA\",\"DCA\",-5.00,14.00,0.00,\"\",0.00,102.00,58.00,214.00,,,,,,\n2015,5,21,\"US\",\"2165\",\"BOS\",\"LGA\",-7.00,-9.00,0.00,\"\",0.00,74.00,43.00,184.00,,,,,,\n2015,5,21,\"US\",\"2167\",\"DCA\",\"LGA\",2.00,-13.00,0.00,\"\",0.00,71.00,42.00,214.00,,,,,,\n2015,5,21,\"US\",\"2167\",\"LGA\",\"DCA\",-7.00,7.00,0.00,\"\",0.00,96.00,60.00,214.00,,,,,,\n2015,5,21,\"US\",\"2168\",\"BOS\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,76.00,47.00,184.00,,,,,,\n2015,5,21,\"US\",\"2168\",\"LGA\",\"BOS\",-6.00,-22.00,0.00,\"\",0.00,55.00,39.00,184.00,,,,,,\n2015,5,21,\"US\",\"2171\",\"BOS\",\"LGA\",-8.00,-14.00,0.00,\"\",0.00,74.00,46.00,184.00,,,,,,\n2015,5,21,\"US\",\"2172\",\"BOS\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,72.00,46.00,184.00,,,,,,\n2015,5,21,\"US\",\"2172\",\"LGA\",\"BOS\",0.00,-11.00,0.00,\"\",0.00,62.00,40.00,184.00,,,,,,\n2015,5,21,\"US\",\"2174\",\"DCA\",\"LGA\",5.00,3.00,0.00,\"\",0.00,88.00,48.00,214.00,,,,,,\n2015,5,21,\"US\",\"2174\",\"LGA\",\"DCA\",-4.00,-15.00,0.00,\"\",0.00,68.00,46.00,214.00,,,,,,\n2015,5,21,\"US\",\"468\",\"LGA\",\"CLT\",-4.00,6.00,0.00,\"\",0.00,129.00,87.00,544.00,,,,,,\n2015,5,21,\"US\",\"476\",\"ROC\",\"CLT\",-28.00,-5.00,0.00,\"\",0.00,140.00,93.00,573.00,,,,,,\n2015,5,21,\"US\",\"622\",\"PHX\",\"JFK\",3.00,-20.00,0.00,\"\",0.00,267.00,245.00,2153.00,,,,,,\n2015,5,21,\"US\",\"632\",\"PHX\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,267.00,242.00,2153.00,,,,,,\n2015,5,21,\"US\",\"639\",\"CLT\",\"JFK\",-3.00,-1.00,0.00,\"\",0.00,118.00,74.00,541.00,,,,,,\n2015,5,21,\"US\",\"639\",\"JFK\",\"PHX\",-2.00,13.00,0.00,\"\",0.00,349.00,310.00,2153.00,,,,,,\n2015,5,21,\"US\",\"654\",\"JFK\",\"PHX\",-9.00,-3.00,0.00,\"\",0.00,330.00,309.00,2153.00,,,,,,\n2015,5,21,\"US\",\"756\",\"BUF\",\"CLT\",-9.00,2.00,0.00,\"\",0.00,122.00,97.00,546.00,,,,,,\n2015,5,21,\"US\",\"809\",\"PHL\",\"LGA\",15.00,-9.00,0.00,\"\",0.00,43.00,26.00,96.00,,,,,,\n2015,5,21,\"US\",\"821\",\"ROC\",\"CLT\",12.00,11.00,0.00,\"\",0.00,121.00,97.00,573.00,,,,,,\n2015,5,21,\"US\",\"826\",\"LGA\",\"CLT\",-5.00,19.00,0.00,\"\",0.00,141.00,89.00,544.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,21,\"US\",\"853\",\"CLT\",\"BUF\",-7.00,-7.00,0.00,\"\",0.00,105.00,74.00,546.00,,,,,,\n2015,5,21,\"US\",\"873\",\"JFK\",\"CLT\",-8.00,-4.00,0.00,\"\",0.00,128.00,96.00,541.00,,,,,,\n2015,5,21,\"US\",\"876\",\"SYR\",\"CLT\",-3.00,0.00,0.00,\"\",0.00,131.00,104.00,603.00,,,,,,\n2015,5,21,\"US\",\"890\",\"LGA\",\"CLT\",10.00,4.00,0.00,\"\",0.00,119.00,90.00,544.00,,,,,,\n2015,5,21,\"US\",\"896\",\"CLT\",\"ROC\",-2.00,-9.00,0.00,\"\",0.00,95.00,76.00,573.00,,,,,,\n2015,5,21,\"US\",\"1740\",\"CLT\",\"LGA\",-2.00,11.00,0.00,\"\",0.00,126.00,78.00,544.00,,,,,,\n2015,5,21,\"US\",\"1750\",\"ALB\",\"CLT\",-2.00,-7.00,0.00,\"\",0.00,126.00,114.00,646.00,,,,,,\n2015,5,21,\"US\",\"1781\",\"LGA\",\"CLT\",-3.00,34.00,0.00,\"\",0.00,162.00,94.00,544.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,21,\"US\",\"1810\",\"LGA\",\"CLT\",-7.00,-11.00,0.00,\"\",0.00,118.00,95.00,544.00,,,,,,\n2015,5,21,\"US\",\"1815\",\"LGA\",\"CLT\",-9.00,-1.00,0.00,\"\",0.00,130.00,101.00,544.00,,,,,,\n2015,5,21,\"US\",\"1830\",\"CLT\",\"JFK\",23.00,28.00,0.00,\"\",0.00,112.00,79.00,541.00,8.00,0.00,5.00,0.00,15.00,\n2015,5,21,\"US\",\"1849\",\"LGA\",\"CLT\",-4.00,-16.00,0.00,\"\",0.00,121.00,94.00,544.00,,,,,,\n2015,5,21,\"US\",\"1851\",\"LGA\",\"CLT\",-5.00,11.00,0.00,\"\",0.00,139.00,89.00,544.00,,,,,,\n2015,5,21,\"US\",\"1873\",\"BUF\",\"CLT\",1.00,7.00,0.00,\"\",0.00,114.00,96.00,546.00,,,,,,\n2015,5,21,\"US\",\"1885\",\"CLT\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,93.00,76.00,546.00,,,,,,\n2015,5,21,\"US\",\"1898\",\"CLT\",\"JFK\",18.00,5.00,0.00,\"\",0.00,97.00,73.00,541.00,,,,,,\n2015,5,21,\"US\",\"1908\",\"LGA\",\"CLT\",6.00,8.00,0.00,\"\",0.00,124.00,95.00,544.00,,,,,,\n2015,5,21,\"US\",\"1910\",\"CLT\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,107.00,73.00,544.00,,,,,,\n2015,5,21,\"US\",\"1916\",\"SYR\",\"CLT\",46.00,33.00,0.00,\"\",0.00,109.00,94.00,603.00,7.00,0.00,0.00,0.00,26.00,\n2015,5,21,\"US\",\"1919\",\"JFK\",\"CLT\",8.00,11.00,0.00,\"\",0.00,124.00,91.00,541.00,,,,,,\n2015,5,21,\"US\",\"1923\",\"ALB\",\"CLT\",32.00,33.00,0.00,\"\",0.00,143.00,112.00,646.00,32.00,0.00,1.00,0.00,0.00,\n2015,5,22,\"US\",\"1810\",\"LGA\",\"CLT\",-7.00,3.00,0.00,\"\",0.00,132.00,97.00,544.00,,,,,,\n2015,5,22,\"US\",\"1815\",\"LGA\",\"CLT\",-6.00,-3.00,0.00,\"\",0.00,125.00,91.00,544.00,,,,,,\n2015,5,22,\"US\",\"1830\",\"CLT\",\"JFK\",-2.00,-14.00,0.00,\"\",0.00,95.00,76.00,541.00,,,,,,\n2015,5,22,\"US\",\"1849\",\"LGA\",\"CLT\",-5.00,-12.00,0.00,\"\",0.00,126.00,92.00,544.00,,,,,,\n2015,5,22,\"US\",\"1851\",\"LGA\",\"CLT\",-3.00,-18.00,0.00,\"\",0.00,108.00,84.00,544.00,,,,,,\n2015,5,22,\"US\",\"1873\",\"BUF\",\"CLT\",-1.00,-4.00,0.00,\"\",0.00,105.00,83.00,546.00,,,,,,\n2015,5,22,\"US\",\"1885\",\"CLT\",\"BUF\",-4.00,-9.00,0.00,\"\",0.00,96.00,76.00,546.00,,,,,,\n2015,5,22,\"US\",\"1898\",\"CLT\",\"JFK\",-3.00,-15.00,0.00,\"\",0.00,98.00,75.00,541.00,,,,,,\n2015,5,22,\"US\",\"1908\",\"LGA\",\"CLT\",-2.00,-9.00,0.00,\"\",0.00,115.00,87.00,544.00,,,,,,\n2015,5,22,\"US\",\"1910\",\"CLT\",\"LGA\",3.00,-22.00,0.00,\"\",0.00,91.00,72.00,544.00,,,,,,\n2015,5,22,\"US\",\"1916\",\"SYR\",\"CLT\",-13.00,-10.00,0.00,\"\",0.00,125.00,102.00,603.00,,,,,,\n2015,5,22,\"US\",\"1919\",\"JFK\",\"CLT\",6.00,2.00,0.00,\"\",0.00,117.00,88.00,541.00,,,,,,\n2015,5,22,\"US\",\"1923\",\"ALB\",\"CLT\",-10.00,-23.00,0.00,\"\",0.00,129.00,105.00,646.00,,,,,,\n2015,5,22,\"US\",\"1933\",\"LGA\",\"PHL\",-6.00,-22.00,0.00,\"\",0.00,57.00,31.00,96.00,,,,,,\n2015,5,22,\"US\",\"1940\",\"CLT\",\"ALB\",-5.00,-12.00,0.00,\"\",0.00,111.00,89.00,646.00,,,,,,\n2015,5,22,\"US\",\"1942\",\"CLT\",\"BUF\",-4.00,-6.00,0.00,\"\",0.00,98.00,84.00,546.00,,,,,,\n2015,5,22,\"US\",\"1951\",\"LGA\",\"CLT\",-5.00,-15.00,0.00,\"\",0.00,112.00,91.00,544.00,,,,,,\n2015,5,22,\"US\",\"1952\",\"CLT\",\"BUF\",-4.00,-9.00,0.00,\"\",0.00,93.00,77.00,546.00,,,,,,\n2015,5,22,\"US\",\"1954\",\"CLT\",\"LGA\",-2.00,3.00,0.00,\"\",0.00,113.00,77.00,544.00,,,,,,\n2015,5,22,\"US\",\"1971\",\"CLT\",\"SYR\",-4.00,-7.00,0.00,\"\",0.00,102.00,86.00,603.00,,,,,,\n2015,5,22,\"US\",\"1977\",\"BUF\",\"CLT\",-3.00,1.00,0.00,\"\",0.00,113.00,96.00,546.00,,,,,,\n2015,5,22,\"US\",\"1981\",\"CLT\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,91.00,74.00,544.00,,,,,,\n2015,5,22,\"US\",\"1983\",\"BUF\",\"CLT\",24.00,25.00,0.00,\"\",0.00,113.00,88.00,546.00,24.00,0.00,1.00,0.00,0.00,\n2015,5,22,\"US\",\"1988\",\"CLT\",\"ALB\",-5.00,-16.00,0.00,\"\",0.00,114.00,88.00,646.00,,,,,,\n2015,5,22,\"US\",\"2017\",\"CLT\",\"JFK\",7.00,12.00,0.00,\"\",0.00,115.00,80.00,541.00,,,,,,\n2015,5,22,\"US\",\"2036\",\"CLT\",\"SYR\",-3.00,-10.00,0.00,\"\",0.00,103.00,84.00,603.00,,,,,,\n2015,5,22,\"US\",\"2042\",\"CLT\",\"JFK\",-6.00,-19.00,0.00,\"\",0.00,93.00,72.00,541.00,,,,,,\n2015,5,22,\"US\",\"2050\",\"CLT\",\"LGA\",-5.00,8.00,0.00,\"\",0.00,121.00,75.00,544.00,,,,,,\n2015,5,22,\"US\",\"2060\",\"CLT\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,91.00,73.00,544.00,,,,,,\n2015,5,22,\"US\",\"2062\",\"CLT\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,100.00,77.00,544.00,,,,,,\n2015,5,22,\"US\",\"2064\",\"CLT\",\"LGA\",-2.00,7.00,0.00,\"\",0.00,123.00,71.00,544.00,,,,,,\n2015,5,22,\"US\",\"2066\",\"CLT\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,98.00,74.00,544.00,,,,,,\n2015,5,22,\"US\",\"2068\",\"CLT\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,95.00,74.00,544.00,,,,,,\n2015,5,22,\"US\",\"2069\",\"JFK\",\"CLT\",5.00,-1.00,0.00,\"\",0.00,115.00,97.00,541.00,,,,,,\n2015,5,22,\"US\",\"2115\",\"LGA\",\"DCA\",-1.00,1.00,0.00,\"\",0.00,65.00,44.00,214.00,,,,,,\n2015,5,22,\"US\",\"2117\",\"DCA\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,57.00,37.00,214.00,,,,,,\n2015,5,22,\"US\",\"2118\",\"BOS\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,69.00,39.00,184.00,,,,,,\n2015,5,22,\"US\",\"2118\",\"LGA\",\"BOS\",-9.00,-30.00,0.00,\"\",0.00,57.00,39.00,184.00,,,,,,\n2015,5,22,\"US\",\"2121\",\"BOS\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,70.00,47.00,184.00,,,,,,\n2015,5,22,\"US\",\"2121\",\"LGA\",\"BOS\",-8.00,-7.00,0.00,\"\",0.00,79.00,40.00,184.00,,,,,,\n2015,5,22,\"US\",\"2122\",\"LGA\",\"BOS\",-6.00,-22.00,0.00,\"\",0.00,58.00,37.00,184.00,,,,,,\n2015,5,22,\"US\",\"2123\",\"LGA\",\"DCA\",-5.00,-11.00,0.00,\"\",0.00,64.00,42.00,214.00,,,,,,\n2015,5,22,\"US\",\"2125\",\"LGA\",\"DCA\",-4.00,5.00,0.00,\"\",0.00,93.00,64.00,214.00,,,,,,\n2015,5,22,\"US\",\"2126\",\"BOS\",\"LGA\",-8.00,-12.00,0.00,\"\",0.00,77.00,55.00,184.00,,,,,,\n2015,5,22,\"US\",\"2126\",\"LGA\",\"BOS\",-9.00,-16.00,0.00,\"\",0.00,55.00,38.00,184.00,,,,,,\n2015,5,22,\"US\",\"2128\",\"LGA\",\"BOS\",-6.00,-3.00,0.00,\"\",0.00,76.00,38.00,184.00,,,,,,\n2015,5,22,\"US\",\"2131\",\"BOS\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,71.00,39.00,184.00,,,,,,\n2015,5,22,\"US\",\"2131\",\"LGA\",\"BOS\",-8.00,-6.00,0.00,\"\",0.00,74.00,38.00,184.00,,,,,,\n2015,5,22,\"US\",\"2133\",\"DCA\",\"LGA\",0.00,3.00,0.00,\"\",0.00,93.00,42.00,214.00,,,,,,\n2015,5,22,\"US\",\"2133\",\"LGA\",\"DCA\",4.00,1.00,0.00,\"\",0.00,74.00,44.00,214.00,,,,,,\n2015,5,22,\"US\",\"2135\",\"DCA\",\"LGA\",31.00,25.00,0.00,\"\",0.00,70.00,41.00,214.00,21.00,0.00,0.00,0.00,4.00,\n2015,5,22,\"US\",\"2135\",\"LGA\",\"DCA\",8.00,-9.00,0.00,\"\",0.00,58.00,42.00,214.00,,,,,,\n2015,5,22,\"US\",\"2136\",\"BOS\",\"LGA\",-8.00,-19.00,0.00,\"\",0.00,65.00,44.00,184.00,,,,,,\n2015,5,22,\"US\",\"2136\",\"LGA\",\"BOS\",-6.00,-14.00,0.00,\"\",0.00,70.00,39.00,184.00,,,,,,\n2015,5,22,\"US\",\"2137\",\"DCA\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,57.00,38.00,214.00,,,,,,\n2015,5,22,\"US\",\"2137\",\"LGA\",\"DCA\",1.00,-7.00,0.00,\"\",0.00,77.00,47.00,214.00,,,,,,\n2015,5,22,\"US\",\"2141\",\"BOS\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,84.00,40.00,184.00,,,,,,\n2015,5,22,\"US\",\"2141\",\"LGA\",\"BOS\",-6.00,-27.00,0.00,\"\",0.00,56.00,36.00,184.00,,,,,,\n2015,5,22,\"US\",\"2143\",\"DCA\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,82.00,47.00,214.00,,,,,,\n2015,5,22,\"US\",\"2143\",\"LGA\",\"DCA\",-5.00,-18.00,0.00,\"\",0.00,68.00,45.00,214.00,,,,,,\n2015,5,22,\"US\",\"2144\",\"DCA\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,72.00,39.00,214.00,,,,,,\n2015,5,22,\"US\",\"2144\",\"LGA\",\"DCA\",-10.00,-11.00,0.00,\"\",0.00,81.00,49.00,214.00,,,,,,\n2015,5,22,\"US\",\"2145\",\"DCA\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,86.00,43.00,214.00,,,,,,\n2015,5,22,\"US\",\"2145\",\"LGA\",\"DCA\",-8.00,-16.00,0.00,\"\",0.00,75.00,48.00,214.00,,,,,,\n2015,5,22,\"US\",\"2146\",\"BOS\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,64.00,40.00,184.00,,,,,,\n2015,5,22,\"US\",\"2146\",\"LGA\",\"BOS\",-5.00,-13.00,0.00,\"\",0.00,60.00,37.00,184.00,,,,,,\n2015,5,22,\"US\",\"2147\",\"DCA\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,73.00,42.00,214.00,,,,,,\n2015,5,22,\"US\",\"2147\",\"LGA\",\"DCA\",-9.00,-6.00,0.00,\"\",0.00,85.00,43.00,214.00,,,,,,\n2015,5,22,\"US\",\"2148\",\"BOS\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,73.00,49.00,184.00,,,,,,\n2015,5,22,\"US\",\"2151\",\"LGA\",\"BOS\",-2.00,-12.00,0.00,\"\",0.00,58.00,40.00,184.00,,,,,,\n2015,5,22,\"US\",\"2152\",\"BOS\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,72.00,50.00,184.00,,,,,,\n2015,5,22,\"US\",\"2152\",\"LGA\",\"BOS\",-5.00,-13.00,0.00,\"\",0.00,60.00,40.00,184.00,,,,,,\n2015,5,22,\"US\",\"2153\",\"DCA\",\"LGA\",-5.00,-32.00,0.00,\"\",0.00,62.00,39.00,214.00,,,,,,\n2015,5,22,\"US\",\"2153\",\"LGA\",\"DCA\",-6.00,-13.00,0.00,\"\",0.00,73.00,47.00,214.00,,,,,,\n2015,5,22,\"US\",\"2154\",\"DCA\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,79.00,38.00,214.00,,,,,,\n2015,5,22,\"US\",\"2154\",\"LGA\",\"DCA\",-5.00,12.00,0.00,\"\",0.00,93.00,47.00,214.00,,,,,,\n2015,5,22,\"US\",\"2155\",\"DCA\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,76.00,44.00,214.00,,,,,,\n2015,5,22,\"US\",\"2156\",\"BOS\",\"LGA\",-11.00,-18.00,0.00,\"\",0.00,76.00,38.00,184.00,,,,,,\n2015,5,22,\"US\",\"2156\",\"LGA\",\"BOS\",-6.00,-22.00,0.00,\"\",0.00,60.00,36.00,184.00,,,,,,\n2015,5,22,\"US\",\"2157\",\"DCA\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,79.00,41.00,214.00,,,,,,\n2015,5,22,\"US\",\"2157\",\"LGA\",\"DCA\",-3.00,-16.00,0.00,\"\",0.00,69.00,48.00,214.00,,,,,,\n2015,5,22,\"US\",\"2158\",\"BOS\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,70.00,52.00,184.00,,,,,,\n2015,5,22,\"US\",\"2158\",\"LGA\",\"BOS\",-3.00,-4.00,0.00,\"\",0.00,63.00,40.00,184.00,,,,,,\n2015,5,22,\"US\",\"2162\",\"BOS\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,69.00,41.00,184.00,,,,,,\n2015,5,22,\"US\",\"2162\",\"LGA\",\"BOS\",-5.00,-13.00,0.00,\"\",0.00,64.00,32.00,184.00,,,,,,\n2015,5,22,\"US\",\"2163\",\"DCA\",\"LGA\",-6.00,-35.00,0.00,\"\",0.00,54.00,36.00,214.00,,,,,,\n2015,5,22,\"US\",\"2164\",\"DCA\",\"LGA\",35.00,9.00,0.00,\"\",0.00,61.00,42.00,214.00,,,,,,\n2015,5,22,\"US\",\"2164\",\"LGA\",\"DCA\",5.00,-3.00,0.00,\"\",0.00,75.00,45.00,214.00,,,,,,\n2015,5,22,\"US\",\"2165\",\"BOS\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,69.00,45.00,184.00,,,,,,\n2015,5,22,\"US\",\"2167\",\"DCA\",\"LGA\",-9.00,-19.00,0.00,\"\",0.00,76.00,44.00,214.00,,,,,,\n2015,5,22,\"US\",\"2167\",\"LGA\",\"DCA\",-5.00,-16.00,0.00,\"\",0.00,71.00,53.00,214.00,,,,,,\n2015,5,22,\"US\",\"2168\",\"BOS\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,71.00,39.00,184.00,,,,,,\n2015,5,22,\"US\",\"2168\",\"LGA\",\"BOS\",-6.00,0.00,0.00,\"\",0.00,77.00,32.00,184.00,,,,,,\n2015,5,22,\"US\",\"2171\",\"BOS\",\"LGA\",-7.00,-11.00,0.00,\"\",0.00,76.00,50.00,184.00,,,,,,\n2015,5,22,\"US\",\"2172\",\"BOS\",\"LGA\",-11.00,-7.00,0.00,\"\",0.00,85.00,40.00,184.00,,,,,,\n2015,5,22,\"US\",\"2172\",\"LGA\",\"BOS\",-5.00,-7.00,0.00,\"\",0.00,71.00,44.00,184.00,,,,,,\n2015,5,22,\"US\",\"2174\",\"DCA\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,86.00,43.00,214.00,,,,,,\n2015,5,22,\"US\",\"2174\",\"LGA\",\"DCA\",-7.00,-14.00,0.00,\"\",0.00,72.00,45.00,214.00,,,,,,\n2015,5,23,\"US\",\"415\",\"LGA\",\"PHL\",-6.00,-33.00,0.00,\"\",0.00,46.00,29.00,96.00,,,,,,\n2015,5,23,\"US\",\"425\",\"JFK\",\"CLT\",-5.00,-27.00,0.00,\"\",0.00,106.00,77.00,541.00,,,,,,\n2015,5,23,\"US\",\"425\",\"PHX\",\"JFK\",1.00,4.00,0.00,\"\",0.00,306.00,281.00,2153.00,,,,,,\n2015,5,23,\"US\",\"433\",\"JFK\",\"PHX\",-8.00,-17.00,0.00,\"\",0.00,329.00,306.00,2153.00,,,,,,\n2015,5,23,\"US\",\"445\",\"JFK\",\"CLT\",3.00,-1.00,0.00,\"\",0.00,112.00,89.00,541.00,,,,,,\n2015,5,23,\"US\",\"622\",\"PHX\",\"JFK\",-6.00,-37.00,0.00,\"\",0.00,259.00,240.00,2153.00,,,,,,\n2015,5,23,\"US\",\"632\",\"PHX\",\"JFK\",-6.00,2.00,0.00,\"\",0.00,293.00,274.00,2153.00,,,,,,\n2015,5,23,\"US\",\"639\",\"CLT\",\"JFK\",7.00,1.00,0.00,\"\",0.00,110.00,79.00,541.00,,,,,,\n2015,5,23,\"US\",\"639\",\"JFK\",\"PHX\",91.00,106.00,0.00,\"\",0.00,349.00,314.00,2153.00,91.00,0.00,15.00,0.00,0.00,\n2015,5,23,\"US\",\"654\",\"JFK\",\"PHX\",-6.00,11.00,0.00,\"\",0.00,341.00,306.00,2153.00,,,,,,\n2015,5,22,\"US\",\"413\",\"JFK\",\"CLT\",-3.00,-5.00,0.00,\"\",0.00,114.00,93.00,541.00,,,,,,\n2015,5,22,\"US\",\"425\",\"JFK\",\"CLT\",21.00,4.00,0.00,\"\",0.00,111.00,81.00,541.00,,,,,,\n2015,5,22,\"US\",\"425\",\"PHX\",\"JFK\",29.00,3.00,0.00,\"\",0.00,277.00,256.00,2153.00,,,,,,\n2015,5,22,\"US\",\"433\",\"JFK\",\"PHX\",-4.00,-2.00,0.00,\"\",0.00,340.00,318.00,2153.00,,,,,,\n2015,5,22,\"US\",\"468\",\"LGA\",\"CLT\",-4.00,23.00,0.00,\"\",0.00,146.00,87.00,544.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,22,\"US\",\"622\",\"PHX\",\"JFK\",1.00,-34.00,0.00,\"\",0.00,255.00,238.00,2153.00,,,,,,\n2015,5,22,\"US\",\"632\",\"PHX\",\"JFK\",5.00,-20.00,0.00,\"\",0.00,260.00,234.00,2153.00,,,,,,\n2015,5,22,\"US\",\"639\",\"CLT\",\"JFK\",1.00,1.00,0.00,\"\",0.00,116.00,77.00,541.00,,,,,,\n2015,5,22,\"US\",\"639\",\"JFK\",\"PHX\",4.00,-5.00,0.00,\"\",0.00,325.00,301.00,2153.00,,,,,,\n2015,5,22,\"US\",\"654\",\"JFK\",\"PHX\",-4.00,21.00,0.00,\"\",0.00,349.00,322.00,2153.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,22,\"US\",\"756\",\"BUF\",\"CLT\",-4.00,-12.00,0.00,\"\",0.00,103.00,87.00,546.00,,,,,,\n2015,5,22,\"US\",\"809\",\"PHL\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,53.00,26.00,96.00,,,,,,\n2015,5,22,\"US\",\"821\",\"ROC\",\"CLT\",-7.00,-3.00,0.00,\"\",0.00,126.00,100.00,573.00,,,,,,\n2015,5,22,\"US\",\"826\",\"LGA\",\"CLT\",-1.00,4.00,0.00,\"\",0.00,122.00,90.00,544.00,,,,,,\n2015,5,22,\"US\",\"853\",\"CLT\",\"BUF\",-1.00,-1.00,0.00,\"\",0.00,105.00,78.00,546.00,,,,,,\n2015,5,22,\"US\",\"873\",\"JFK\",\"CLT\",-6.00,26.00,0.00,\"\",0.00,156.00,88.00,541.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,22,\"US\",\"876\",\"SYR\",\"CLT\",-8.00,-12.00,0.00,\"\",0.00,124.00,104.00,603.00,,,,,,\n2015,5,22,\"US\",\"890\",\"LGA\",\"CLT\",2.00,-10.00,0.00,\"\",0.00,113.00,86.00,544.00,,,,,,\n2015,5,22,\"US\",\"896\",\"CLT\",\"ROC\",-3.00,-10.00,0.00,\"\",0.00,95.00,75.00,573.00,,,,,,\n2015,5,22,\"US\",\"1701\",\"CLT\",\"ROC\",8.00,5.00,0.00,\"\",0.00,97.00,75.00,573.00,,,,,,\n2015,5,22,\"US\",\"1740\",\"CLT\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,110.00,74.00,544.00,,,,,,\n2015,5,22,\"US\",\"1750\",\"ALB\",\"CLT\",-7.00,12.00,0.00,\"\",0.00,150.00,115.00,646.00,,,,,,\n2015,5,22,\"US\",\"1781\",\"LGA\",\"CLT\",-4.00,4.00,0.00,\"\",0.00,133.00,86.00,544.00,,,,,,\n2015,5,24,\"US\",\"1781\",\"LGA\",\"CLT\",-5.00,-24.00,0.00,\"\",0.00,106.00,81.00,544.00,,,,,,\n2015,5,24,\"US\",\"1799\",\"LGA\",\"CLT\",-3.00,-20.00,0.00,\"\",0.00,105.00,78.00,544.00,,,,,,\n2015,5,24,\"US\",\"1830\",\"BUF\",\"CLT\",2.00,0.00,0.00,\"\",0.00,107.00,79.00,546.00,,,,,,\n2015,5,24,\"US\",\"1830\",\"CLT\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,98.00,81.00,541.00,,,,,,\n2015,5,24,\"US\",\"1838\",\"PHL\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,46.00,27.00,96.00,,,,,,\n2015,5,24,\"US\",\"1843\",\"LGA\",\"CLT\",-5.00,-19.00,0.00,\"\",0.00,105.00,75.00,544.00,,,,,,\n2015,5,24,\"US\",\"1860\",\"CLT\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,95.00,78.00,544.00,,,,,,\n2015,5,24,\"US\",\"1873\",\"SYR\",\"CLT\",-3.00,-14.00,0.00,\"\",0.00,111.00,92.00,603.00,,,,,,\n2015,5,24,\"US\",\"1885\",\"CLT\",\"BUF\",-6.00,-9.00,0.00,\"\",0.00,98.00,79.00,546.00,,,,,,\n2015,5,24,\"US\",\"1898\",\"CLT\",\"JFK\",3.00,3.00,0.00,\"\",0.00,110.00,83.00,541.00,,,,,,\n2015,5,24,\"US\",\"1910\",\"CLT\",\"LGA\",2.00,-15.00,0.00,\"\",0.00,99.00,77.00,544.00,,,,,,\n2015,5,24,\"US\",\"1923\",\"ROC\",\"CLT\",5.00,-9.00,0.00,\"\",0.00,108.00,84.00,573.00,,,,,,\n2015,5,24,\"US\",\"1929\",\"BUF\",\"CLT\",-5.00,-9.00,0.00,\"\",0.00,107.00,84.00,546.00,,,,,,\n2015,5,24,\"US\",\"1940\",\"CLT\",\"ALB\",-7.00,-18.00,0.00,\"\",0.00,107.00,87.00,646.00,,,,,,\n2015,5,24,\"US\",\"1942\",\"CLT\",\"BUF\",-6.00,-9.00,0.00,\"\",0.00,97.00,84.00,546.00,,,,,,\n2015,5,24,\"US\",\"1952\",\"CLT\",\"BUF\",-2.00,3.00,0.00,\"\",0.00,103.00,87.00,546.00,,,,,,\n2015,5,24,\"US\",\"1954\",\"CLT\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,96.00,80.00,544.00,,,,,,\n2015,5,24,\"US\",\"1971\",\"CLT\",\"SYR\",-4.00,-4.00,0.00,\"\",0.00,105.00,85.00,603.00,,,,,,\n2015,5,24,\"US\",\"1988\",\"CLT\",\"ALB\",-8.00,-12.00,0.00,\"\",0.00,121.00,99.00,646.00,,,,,,\n2015,5,24,\"US\",\"2017\",\"CLT\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,102.00,83.00,541.00,,,,,,\n2015,5,24,\"US\",\"2036\",\"CLT\",\"SYR\",-5.00,2.00,0.00,\"\",0.00,117.00,92.00,603.00,,,,,,\n2015,5,24,\"US\",\"2050\",\"CLT\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,109.00,81.00,544.00,,,,,,\n2015,5,24,\"US\",\"2057\",\"JFK\",\"CLT\",8.00,1.00,0.00,\"\",0.00,109.00,78.00,541.00,,,,,,\n2015,5,24,\"US\",\"2062\",\"CLT\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,107.00,80.00,544.00,,,,,,\n2015,5,24,\"US\",\"2064\",\"CLT\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,110.00,79.00,544.00,,,,,,\n2015,5,24,\"US\",\"2066\",\"CLT\",\"LGA\",-5.00,8.00,0.00,\"\",0.00,119.00,82.00,544.00,,,,,,\n2015,5,24,\"US\",\"2068\",\"CLT\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,97.00,80.00,544.00,,,,,,\n2015,5,24,\"US\",\"2069\",\"JFK\",\"CLT\",-7.00,-29.00,0.00,\"\",0.00,99.00,74.00,541.00,,,,,,\n2015,5,24,\"US\",\"2117\",\"DCA\",\"LGA\",-9.00,-17.00,0.00,\"\",0.00,61.00,41.00,214.00,,,,,,\n2015,5,24,\"US\",\"2121\",\"BOS\",\"LGA\",-7.00,-25.00,0.00,\"\",0.00,63.00,47.00,184.00,,,,,,\n2015,5,24,\"US\",\"2123\",\"LGA\",\"BOS\",-9.00,-28.00,0.00,\"\",0.00,59.00,42.00,184.00,,,,,,\n2015,5,24,\"US\",\"2135\",\"DCA\",\"LGA\",-8.00,-24.00,0.00,\"\",0.00,60.00,38.00,214.00,,,,,,\n2015,5,24,\"US\",\"2135\",\"LGA\",\"DCA\",-9.00,-6.00,0.00,\"\",0.00,78.00,42.00,214.00,,,,,,\n2015,5,24,\"US\",\"2137\",\"BOS\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,61.00,42.00,184.00,,,,,,\n2015,5,24,\"US\",\"2145\",\"DCA\",\"LGA\",-6.00,-30.00,0.00,\"\",0.00,64.00,42.00,214.00,,,,,,\n2015,5,24,\"US\",\"2147\",\"LGA\",\"DCA\",-7.00,-22.00,0.00,\"\",0.00,67.00,41.00,214.00,,,,,,\n2015,5,24,\"US\",\"2157\",\"DCA\",\"LGA\",-4.00,7.00,0.00,\"\",0.00,99.00,46.00,214.00,,,,,,\n2015,5,24,\"US\",\"2157\",\"LGA\",\"DCA\",3.00,-10.00,0.00,\"\",0.00,69.00,43.00,214.00,,,,,,\n2015,5,24,\"US\",\"2174\",\"DCA\",\"LGA\",-5.00,-36.00,0.00,\"\",0.00,59.00,42.00,214.00,,,,,,\n2015,5,24,\"US\",\"2174\",\"LGA\",\"DCA\",-6.00,-21.00,0.00,\"\",0.00,64.00,42.00,214.00,,,,,,\n2015,5,25,\"US\",\"413\",\"JFK\",\"CLT\",75.00,58.00,0.00,\"\",0.00,99.00,76.00,541.00,58.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"US\",\"425\",\"JFK\",\"CLT\",-6.00,-28.00,0.00,\"\",0.00,106.00,77.00,541.00,,,,,,\n2015,5,25,\"US\",\"425\",\"PHX\",\"JFK\",-6.00,-12.00,0.00,\"\",0.00,297.00,258.00,2153.00,,,,,,\n2015,5,25,\"US\",\"433\",\"JFK\",\"PHX\",-7.00,-33.00,0.00,\"\",0.00,312.00,291.00,2153.00,,,,,,\n2015,5,25,\"US\",\"468\",\"LGA\",\"CLT\",-1.00,2.00,0.00,\"\",0.00,122.00,79.00,544.00,,,,,,\n2015,5,25,\"US\",\"622\",\"PHX\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,276.00,258.00,2153.00,,,,,,\n2015,5,25,\"US\",\"632\",\"PHX\",\"JFK\",4.00,0.00,0.00,\"\",0.00,281.00,261.00,2153.00,,,,,,\n2015,5,25,\"US\",\"639\",\"CLT\",\"JFK\",70.00,53.00,0.00,\"\",0.00,99.00,76.00,541.00,53.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"US\",\"639\",\"JFK\",\"PHX\",44.00,29.00,0.00,\"\",0.00,319.00,288.00,2153.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"US\",\"654\",\"JFK\",\"PHX\",-11.00,16.00,0.00,\"\",0.00,351.00,321.00,2153.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,25,\"US\",\"756\",\"BUF\",\"CLT\",-10.00,-16.00,0.00,\"\",0.00,105.00,83.00,546.00,,,,,,\n2015,5,25,\"US\",\"809\",\"PHL\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,55.00,28.00,96.00,,,,,,\n2015,5,25,\"US\",\"821\",\"ROC\",\"CLT\",-5.00,-10.00,0.00,\"\",0.00,117.00,90.00,573.00,,,,,,\n2015,5,25,\"US\",\"826\",\"LGA\",\"CLT\",-8.00,-19.00,0.00,\"\",0.00,106.00,77.00,544.00,,,,,,\n2015,5,25,\"US\",\"853\",\"CLT\",\"BUF\",20.00,13.00,0.00,\"\",0.00,98.00,73.00,546.00,,,,,,\n2015,5,25,\"US\",\"873\",\"JFK\",\"CLT\",4.00,-10.00,0.00,\"\",0.00,110.00,79.00,541.00,,,,,,\n2015,5,25,\"US\",\"876\",\"SYR\",\"CLT\",-8.00,-16.00,0.00,\"\",0.00,120.00,92.00,603.00,,,,,,\n2015,5,25,\"US\",\"890\",\"LGA\",\"CLT\",-5.00,-29.00,0.00,\"\",0.00,101.00,80.00,544.00,,,,,,\n2015,5,25,\"US\",\"896\",\"CLT\",\"ROC\",-4.00,-12.00,0.00,\"\",0.00,94.00,76.00,573.00,,,,,,\n2015,5,27,\"UA\",\"1588\",\"LGA\",\"ORD\",5.00,-16.00,0.00,\"\",0.00,132.00,115.00,733.00,,,,,,\n2015,5,27,\"UA\",\"1638\",\"ALB\",\"ORD\",410.00,429.00,0.00,\"\",0.00,160.00,134.00,723.00,410.00,0.00,19.00,0.00,0.00,\n2015,5,27,\"UA\",\"1671\",\"IAH\",\"LGA\",51.00,38.00,0.00,\"\",0.00,208.00,186.00,1416.00,0.00,0.00,0.00,0.00,38.00,\n2015,5,27,\"UA\",\"1686\",\"LGA\",\"DEN\",3.00,-31.00,0.00,\"\",0.00,237.00,221.00,1620.00,,,,,,\n2015,5,27,\"UA\",\"1687\",\"LGA\",\"IAH\",-2.00,,0.00,\"\",1.00,,,1416.00,,,,,,\n2015,5,27,\"UA\",\"1693\",\"DEN\",\"LGA\",7.00,19.00,0.00,\"\",0.00,247.00,212.00,1620.00,7.00,0.00,12.00,0.00,0.00,\n2015,5,27,\"UA\",\"1714\",\"LGA\",\"ORD\",-4.00,-14.00,0.00,\"\",0.00,144.00,117.00,733.00,,,,,,\n2015,5,27,\"UA\",\"1719\",\"LGA\",\"DEN\",1.00,-9.00,0.00,\"\",0.00,250.00,223.00,1620.00,,,,,,\n2015,5,27,\"UA\",\"1722\",\"IAH\",\"LGA\",148.00,134.00,0.00,\"\",0.00,205.00,175.00,1416.00,0.00,0.00,39.00,0.00,95.00,\n2015,5,27,\"UA\",\"1744\",\"LGA\",\"IAH\",1.00,-11.00,0.00,\"\",0.00,235.00,207.00,1416.00,,,,,,\n2015,5,27,\"UA\",\"1744\",\"ORD\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,119.00,100.00,733.00,,,,,,\n2015,5,25,\"UA\",\"622\",\"LGA\",\"ORD\",-2.00,-1.00,0.00,\"\",0.00,159.00,115.00,733.00,,,,,,\n2015,5,25,\"UA\",\"637\",\"SFO\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,336.00,302.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"656\",\"ORD\",\"BUF\",0.00,8.00,0.00,\"\",0.00,100.00,64.00,473.00,,,,,,\n2015,5,25,\"UA\",\"681\",\"LGA\",\"ORD\",-3.00,-4.00,0.00,\"\",0.00,159.00,119.00,733.00,,,,,,\n2015,5,25,\"UA\",\"686\",\"ORD\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,128.00,103.00,733.00,,,,,,\n2015,5,25,\"UA\",\"689\",\"LGA\",\"ORD\",-3.00,-20.00,0.00,\"\",0.00,147.00,112.00,733.00,,,,,,\n2015,5,25,\"UA\",\"690\",\"ORD\",\"LGA\",-5.00,3.00,0.00,\"\",0.00,144.00,122.00,733.00,,,,,,\n2015,5,25,\"UA\",\"692\",\"ORD\",\"LGA\",-1.00,8.00,0.00,\"\",0.00,145.00,108.00,733.00,,,,,,\n2015,5,25,\"UA\",\"693\",\"IAH\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,197.00,176.00,1416.00,,,,,,\n2015,5,25,\"UA\",\"693\",\"LGA\",\"ORD\",-2.00,-32.00,0.00,\"\",0.00,140.00,111.00,733.00,,,,,,\n2015,5,25,\"UA\",\"695\",\"LGA\",\"ORD\",4.00,-13.00,0.00,\"\",0.00,149.00,113.00,733.00,,,,,,\n2015,5,25,\"UA\",\"699\",\"LGA\",\"ORD\",-2.00,-29.00,0.00,\"\",0.00,135.00,112.00,733.00,,,,,,\n2015,5,25,\"UA\",\"703\",\"JFK\",\"LAX\",-7.00,-16.00,0.00,\"\",0.00,351.00,326.00,2475.00,,,,,,\n2015,5,25,\"UA\",\"704\",\"SFO\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,324.00,306.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"711\",\"LGA\",\"ORD\",-5.00,-30.00,0.00,\"\",0.00,130.00,114.00,733.00,,,,,,\n2015,5,25,\"UA\",\"741\",\"LGA\",\"ORD\",-4.00,-28.00,0.00,\"\",0.00,142.00,112.00,733.00,,,,,,\n2015,5,25,\"UA\",\"746\",\"LGA\",\"IAH\",-6.00,-2.00,0.00,\"\",0.00,246.00,210.00,1416.00,,,,,,\n2015,5,25,\"UA\",\"758\",\"SFO\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,348.00,318.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"760\",\"SFO\",\"JFK\",-5.00,-15.00,0.00,\"\",0.00,335.00,309.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"765\",\"LGA\",\"ORD\",-3.00,-11.00,0.00,\"\",0.00,152.00,107.00,733.00,,,,,,\n2015,5,25,\"UA\",\"766\",\"JFK\",\"SFO\",-5.00,-22.00,0.00,\"\",0.00,363.00,336.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"779\",\"LAX\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,324.00,298.00,2475.00,,,,,,\n2015,5,25,\"UA\",\"791\",\"LGA\",\"IAH\",21.00,33.00,0.00,\"\",0.00,256.00,201.00,1416.00,18.00,0.00,12.00,0.00,3.00,\n2015,5,25,\"UA\",\"791\",\"ORD\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,125.00,102.00,733.00,,,,,,\n2015,5,25,\"UA\",\"824\",\"SFO\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,324.00,306.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"830\",\"ORD\",\"BUF\",33.00,38.00,0.00,\"\",0.00,99.00,66.00,473.00,33.00,0.00,5.00,0.00,0.00,\n2015,5,25,\"UA\",\"841\",\"JFK\",\"LAX\",-12.00,-35.00,0.00,\"\",0.00,351.00,326.00,2475.00,,,,,,\n2015,5,25,\"UA\",\"867\",\"LAX\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,324.00,296.00,2475.00,,,,,,\n2015,5,25,\"UA\",\"898\",\"SFO\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,329.00,310.00,2586.00,,,,,,\n2015,5,25,\"UA\",\"910\",\"ORD\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,127.00,100.00,733.00,,,,,,\n2015,5,25,\"UA\",\"912\",\"LAX\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,311.00,291.00,2475.00,,,,,,\n2015,5,25,\"UA\",\"1042\",\"LGA\",\"DEN\",11.00,-1.00,0.00,\"\",0.00,256.00,226.00,1620.00,,,,,,\n2015,5,25,\"UA\",\"1062\",\"IAH\",\"LGA\",-3.00,-12.00,0.00,\"\",0.00,204.00,179.00,1416.00,,,,,,\n2015,5,25,\"UA\",\"1074\",\"ORD\",\"LGA\",2.00,-13.00,0.00,\"\",0.00,122.00,99.00,733.00,,,,,,\n2015,5,25,\"UA\",\"1123\",\"LGA\",\"DEN\",-4.00,-31.00,0.00,\"\",0.00,237.00,220.00,1620.00,,,,,,\n2015,5,25,\"UA\",\"1190\",\"ORD\",\"ALB\",-4.00,-12.00,0.00,\"\",0.00,112.00,91.00,723.00,,,,,,\n2015,5,25,\"UA\",\"1194\",\"IAH\",\"LGA\",18.00,25.00,0.00,\"\",0.00,225.00,174.00,1416.00,18.00,0.00,7.00,0.00,0.00,\n2015,5,25,\"UA\",\"1214\",\"ORD\",\"LGA\",33.00,11.00,0.00,\"\",0.00,115.00,96.00,733.00,,,,,,\n2015,5,25,\"UA\",\"1239\",\"ORD\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,133.00,102.00,733.00,,,,,,\n2015,5,25,\"UA\",\"1248\",\"ORD\",\"ALB\",-1.00,-3.00,0.00,\"\",0.00,118.00,97.00,723.00,,,,,,\n2015,5,25,\"UA\",\"1283\",\"ALB\",\"ORD\",-7.00,-1.00,0.00,\"\",0.00,147.00,109.00,723.00,,,,,,\n2015,5,25,\"UA\",\"1456\",\"LGA\",\"IAH\",7.00,-36.00,0.00,\"\",0.00,199.00,185.00,1416.00,,,,,,\n2015,5,25,\"UA\",\"1474\",\"LGA\",\"DEN\",-2.00,-24.00,0.00,\"\",0.00,246.00,219.00,1620.00,,,,,,\n2015,5,25,\"UA\",\"1483\",\"DEN\",\"LGA\",221.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,25,\"UA\",\"1542\",\"IAH\",\"LGA\",-5.00,-22.00,0.00,\"\",0.00,197.00,179.00,1416.00,,,,,,\n2015,5,25,\"UA\",\"1588\",\"LGA\",\"ORD\",5.00,-22.00,0.00,\"\",0.00,126.00,109.00,733.00,,,,,,\n2015,5,25,\"UA\",\"1638\",\"ALB\",\"ORD\",-11.00,-10.00,0.00,\"\",0.00,142.00,119.00,723.00,,,,,,\n2015,5,25,\"UA\",\"1671\",\"IAH\",\"LGA\",3.00,-10.00,0.00,\"\",0.00,208.00,177.00,1416.00,,,,,,\n2015,5,25,\"UA\",\"1693\",\"DEN\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,220.00,198.00,1620.00,,,,,,\n2015,5,25,\"UA\",\"1722\",\"IAH\",\"LGA\",1.00,-9.00,0.00,\"\",0.00,209.00,176.00,1416.00,,,,,,\n2015,5,25,\"UA\",\"1744\",\"LGA\",\"IAH\",-1.00,-12.00,0.00,\"\",0.00,236.00,207.00,1416.00,,,,,,\n2015,5,25,\"UA\",\"1744\",\"ORD\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,116.00,97.00,733.00,,,,,,\n2015,5,27,\"US\",\"756\",\"BUF\",\"CLT\",5.00,1.00,0.00,\"\",0.00,107.00,90.00,546.00,,,,,,\n2015,5,27,\"US\",\"809\",\"PHL\",\"LGA\",,,1.00,\"B\",0.00,,,96.00,,,,,,\n2015,5,27,\"US\",\"821\",\"ROC\",\"CLT\",-3.00,5.00,0.00,\"\",0.00,130.00,101.00,573.00,,,,,,\n2015,5,27,\"US\",\"826\",\"LGA\",\"CLT\",-6.00,4.00,0.00,\"\",0.00,127.00,84.00,544.00,,,,,,\n2015,5,27,\"US\",\"853\",\"CLT\",\"BUF\",7.00,17.00,0.00,\"\",0.00,115.00,77.00,546.00,7.00,0.00,10.00,0.00,0.00,\n2015,5,27,\"US\",\"873\",\"JFK\",\"CLT\",-7.00,-13.00,0.00,\"\",0.00,118.00,83.00,541.00,,,,,,\n2015,5,27,\"US\",\"876\",\"SYR\",\"CLT\",-4.00,2.00,0.00,\"\",0.00,134.00,103.00,603.00,,,,,,\n2015,5,27,\"US\",\"890\",\"LGA\",\"CLT\",391.00,372.00,0.00,\"\",0.00,106.00,79.00,544.00,7.00,0.00,0.00,0.00,365.00,\n2015,5,27,\"US\",\"896\",\"CLT\",\"ROC\",-4.00,-10.00,0.00,\"\",0.00,96.00,77.00,573.00,,,,,,\n2015,5,27,\"US\",\"1740\",\"CLT\",\"LGA\",179.00,168.00,0.00,\"\",0.00,102.00,78.00,544.00,0.00,0.00,168.00,0.00,0.00,\n2015,5,27,\"US\",\"1750\",\"ALB\",\"CLT\",5.00,8.00,0.00,\"\",0.00,134.00,105.00,646.00,,,,,,\n2015,5,27,\"US\",\"1781\",\"LGA\",\"CLT\",7.00,17.00,0.00,\"\",0.00,135.00,81.00,544.00,7.00,0.00,10.00,0.00,0.00,\n2015,5,20,\"US\",\"896\",\"CLT\",\"ROC\",-4.00,-8.00,0.00,\"\",0.00,98.00,81.00,573.00,,,,,,\n2015,5,20,\"US\",\"1740\",\"CLT\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,112.00,72.00,544.00,,,,,,\n2015,5,20,\"US\",\"1750\",\"ALB\",\"CLT\",-3.00,7.00,0.00,\"\",0.00,141.00,103.00,646.00,,,,,,\n2015,5,20,\"US\",\"1781\",\"LGA\",\"CLT\",-3.00,2.00,0.00,\"\",0.00,130.00,80.00,544.00,,,,,,\n2015,5,20,\"US\",\"1810\",\"LGA\",\"CLT\",-2.00,1.00,0.00,\"\",0.00,125.00,80.00,544.00,,,,,,\n2015,5,20,\"US\",\"1815\",\"LGA\",\"CLT\",14.00,35.00,0.00,\"\",0.00,143.00,82.00,544.00,0.00,0.00,21.00,0.00,14.00,\n2015,5,20,\"US\",\"1830\",\"CLT\",\"JFK\",17.00,4.00,0.00,\"\",0.00,94.00,77.00,541.00,,,,,,\n2015,5,20,\"US\",\"1849\",\"LGA\",\"CLT\",-4.00,4.00,0.00,\"\",0.00,141.00,85.00,544.00,,,,,,\n2015,5,20,\"US\",\"1851\",\"LGA\",\"CLT\",-6.00,14.00,0.00,\"\",0.00,143.00,83.00,544.00,,,,,,\n2015,5,20,\"US\",\"1873\",\"BUF\",\"CLT\",14.00,20.00,0.00,\"\",0.00,114.00,87.00,546.00,3.00,0.00,6.00,0.00,11.00,\n2015,5,20,\"US\",\"1885\",\"CLT\",\"BUF\",-4.00,-4.00,0.00,\"\",0.00,101.00,76.00,546.00,,,,,,\n2015,5,20,\"US\",\"1898\",\"CLT\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,101.00,75.00,541.00,,,,,,\n2015,5,20,\"US\",\"1908\",\"LGA\",\"CLT\",-3.00,-13.00,0.00,\"\",0.00,112.00,81.00,544.00,,,,,,\n2015,5,20,\"US\",\"1910\",\"CLT\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,97.00,71.00,544.00,,,,,,\n2015,5,20,\"US\",\"1916\",\"SYR\",\"CLT\",-6.00,-3.00,0.00,\"\",0.00,125.00,100.00,603.00,,,,,,\n2015,5,20,\"US\",\"1919\",\"JFK\",\"CLT\",2.00,11.00,0.00,\"\",0.00,130.00,80.00,541.00,,,,,,\n2015,5,20,\"US\",\"1923\",\"ALB\",\"CLT\",-6.00,16.00,0.00,\"\",0.00,164.00,117.00,646.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,20,\"US\",\"1933\",\"LGA\",\"PHL\",-6.00,-3.00,0.00,\"\",0.00,76.00,46.00,96.00,,,,,,\n2015,5,20,\"US\",\"1940\",\"CLT\",\"ALB\",-3.00,-9.00,0.00,\"\",0.00,112.00,86.00,646.00,,,,,,\n2015,5,20,\"US\",\"1942\",\"CLT\",\"BUF\",-6.00,-13.00,0.00,\"\",0.00,93.00,79.00,546.00,,,,,,\n2015,5,20,\"US\",\"1951\",\"LGA\",\"CLT\",-2.00,-17.00,0.00,\"\",0.00,107.00,91.00,544.00,,,,,,\n2015,5,20,\"US\",\"1952\",\"CLT\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,90.00,75.00,546.00,,,,,,\n2015,5,20,\"US\",\"1954\",\"CLT\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,100.00,76.00,544.00,,,,,,\n2015,5,20,\"US\",\"1971\",\"CLT\",\"SYR\",-2.00,-11.00,0.00,\"\",0.00,96.00,80.00,603.00,,,,,,\n2015,5,20,\"US\",\"1977\",\"BUF\",\"CLT\",-5.00,3.00,0.00,\"\",0.00,117.00,97.00,546.00,,,,,,\n2015,5,20,\"US\",\"1981\",\"CLT\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,96.00,74.00,544.00,,,,,,\n2015,5,20,\"US\",\"1983\",\"BUF\",\"CLT\",-5.00,5.00,0.00,\"\",0.00,122.00,86.00,546.00,,,,,,\n2015,5,20,\"US\",\"1988\",\"CLT\",\"ALB\",-1.00,-7.00,0.00,\"\",0.00,119.00,93.00,646.00,,,,,,\n2015,5,20,\"US\",\"2017\",\"CLT\",\"JFK\",5.00,-7.00,0.00,\"\",0.00,98.00,80.00,541.00,,,,,,\n2015,5,20,\"US\",\"2036\",\"CLT\",\"SYR\",-1.00,-11.00,0.00,\"\",0.00,100.00,82.00,603.00,,,,,,\n2015,5,20,\"US\",\"2042\",\"CLT\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,98.00,81.00,541.00,,,,,,\n2015,5,20,\"US\",\"2050\",\"CLT\",\"LGA\",1.00,-11.00,0.00,\"\",0.00,96.00,75.00,544.00,,,,,,\n2015,5,20,\"US\",\"2060\",\"CLT\",\"LGA\",40.00,28.00,0.00,\"\",0.00,95.00,73.00,544.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"US\",\"2062\",\"CLT\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,101.00,77.00,544.00,,,,,,\n2015,5,20,\"US\",\"2064\",\"CLT\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,99.00,73.00,544.00,,,,,,\n2015,5,20,\"US\",\"2066\",\"CLT\",\"LGA\",0.00,0.00,0.00,\"\",0.00,106.00,76.00,544.00,,,,,,\n2015,5,20,\"US\",\"2068\",\"CLT\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,96.00,76.00,544.00,,,,,,\n2015,5,20,\"US\",\"2069\",\"JFK\",\"CLT\",-2.00,-24.00,0.00,\"\",0.00,99.00,78.00,541.00,,,,,,\n2015,5,25,\"US\",\"1781\",\"LGA\",\"CLT\",1.00,-19.00,0.00,\"\",0.00,105.00,80.00,544.00,,,,,,\n2015,5,25,\"US\",\"1810\",\"LGA\",\"CLT\",-10.00,-25.00,0.00,\"\",0.00,107.00,80.00,544.00,,,,,,\n2015,5,25,\"US\",\"1815\",\"LGA\",\"CLT\",-9.00,-19.00,0.00,\"\",0.00,112.00,84.00,544.00,,,,,,\n2015,5,25,\"US\",\"1830\",\"CLT\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,103.00,81.00,541.00,,,,,,\n2015,5,25,\"US\",\"1849\",\"LGA\",\"CLT\",-7.00,-12.00,0.00,\"\",0.00,128.00,82.00,544.00,,,,,,\n2015,5,25,\"US\",\"1851\",\"LGA\",\"CLT\",-8.00,-3.00,0.00,\"\",0.00,128.00,87.00,544.00,,,,,,\n2015,5,25,\"US\",\"1873\",\"BUF\",\"CLT\",14.00,20.00,0.00,\"\",0.00,114.00,88.00,546.00,1.00,0.00,6.00,0.00,13.00,\n2015,5,25,\"US\",\"1885\",\"CLT\",\"BUF\",-3.00,-3.00,0.00,\"\",0.00,101.00,78.00,546.00,,,,,,\n2015,5,25,\"US\",\"1898\",\"CLT\",\"JFK\",-2.00,-10.00,0.00,\"\",0.00,102.00,82.00,541.00,,,,,,\n2015,5,25,\"US\",\"1908\",\"LGA\",\"CLT\",-3.00,-4.00,0.00,\"\",0.00,121.00,84.00,544.00,,,,,,\n2015,5,25,\"US\",\"1910\",\"CLT\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,100.00,78.00,544.00,,,,,,\n2015,5,25,\"US\",\"1916\",\"SYR\",\"CLT\",-8.00,-15.00,0.00,\"\",0.00,115.00,97.00,603.00,,,,,,\n2015,5,25,\"US\",\"1919\",\"JFK\",\"CLT\",24.00,13.00,0.00,\"\",0.00,110.00,78.00,541.00,,,,,,\n2015,5,25,\"US\",\"1923\",\"ALB\",\"CLT\",-6.00,-29.00,0.00,\"\",0.00,119.00,96.00,646.00,,,,,,\n2015,5,25,\"US\",\"1933\",\"LGA\",\"PHL\",-5.00,-29.00,0.00,\"\",0.00,49.00,32.00,96.00,,,,,,\n2015,5,25,\"US\",\"1940\",\"CLT\",\"ALB\",-4.00,7.00,0.00,\"\",0.00,129.00,99.00,646.00,,,,,,\n2015,5,25,\"US\",\"1942\",\"CLT\",\"BUF\",-5.00,-8.00,0.00,\"\",0.00,97.00,80.00,546.00,,,,,,\n2015,5,25,\"US\",\"1951\",\"LGA\",\"CLT\",-1.00,-14.00,0.00,\"\",0.00,109.00,84.00,544.00,,,,,,\n2015,5,25,\"US\",\"1952\",\"CLT\",\"BUF\",-6.00,-2.00,0.00,\"\",0.00,102.00,73.00,546.00,,,,,,\n2015,5,25,\"US\",\"1954\",\"CLT\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,98.00,80.00,544.00,,,,,,\n2015,5,25,\"US\",\"1971\",\"CLT\",\"SYR\",5.00,6.00,0.00,\"\",0.00,106.00,82.00,603.00,,,,,,\n2015,5,25,\"US\",\"1977\",\"BUF\",\"CLT\",-7.00,-15.00,0.00,\"\",0.00,101.00,82.00,546.00,,,,,,\n2015,5,25,\"US\",\"1981\",\"CLT\",\"LGA\",49.00,50.00,0.00,\"\",0.00,106.00,76.00,544.00,49.00,0.00,1.00,0.00,0.00,\n2015,5,25,\"US\",\"1983\",\"BUF\",\"CLT\",-6.00,0.00,0.00,\"\",0.00,118.00,86.00,546.00,,,,,,\n2015,5,25,\"US\",\"1988\",\"CLT\",\"ALB\",-5.00,-10.00,0.00,\"\",0.00,120.00,97.00,646.00,,,,,,\n2015,5,25,\"US\",\"2017\",\"CLT\",\"JFK\",27.00,25.00,0.00,\"\",0.00,108.00,78.00,541.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"US\",\"2036\",\"CLT\",\"SYR\",-5.00,-18.00,0.00,\"\",0.00,97.00,81.00,603.00,,,,,,\n2015,5,25,\"US\",\"2042\",\"CLT\",\"JFK\",0.00,9.00,0.00,\"\",0.00,115.00,82.00,541.00,,,,,,\n2015,5,25,\"US\",\"2050\",\"CLT\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,105.00,83.00,544.00,,,,,,\n2015,5,25,\"US\",\"2060\",\"CLT\",\"LGA\",-6.00,2.00,0.00,\"\",0.00,115.00,86.00,544.00,,,,,,\n2015,5,25,\"US\",\"2062\",\"CLT\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,101.00,79.00,544.00,,,,,,\n2015,5,25,\"US\",\"2064\",\"CLT\",\"LGA\",-5.00,-8.00,0.00,\"\",0.00,111.00,81.00,544.00,,,,,,\n2015,5,25,\"US\",\"2066\",\"CLT\",\"LGA\",36.00,29.00,0.00,\"\",0.00,99.00,80.00,544.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"US\",\"2068\",\"CLT\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,105.00,77.00,544.00,,,,,,\n2015,5,25,\"US\",\"2069\",\"JFK\",\"CLT\",51.00,63.00,0.00,\"\",0.00,133.00,78.00,541.00,51.00,0.00,12.00,0.00,0.00,\n2015,5,25,\"US\",\"2117\",\"DCA\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,59.00,42.00,214.00,,,,,,\n2015,5,25,\"US\",\"2118\",\"BOS\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,72.00,50.00,184.00,,,,,,\n2015,5,25,\"US\",\"2128\",\"LGA\",\"BOS\",-5.00,-11.00,0.00,\"\",0.00,67.00,43.00,184.00,,,,,,\n2015,5,25,\"US\",\"2133\",\"LGA\",\"DCA\",-6.00,-23.00,0.00,\"\",0.00,60.00,41.00,214.00,,,,,,\n2015,5,25,\"US\",\"2135\",\"DCA\",\"LGA\",-6.00,-5.00,0.00,\"\",0.00,77.00,43.00,214.00,,,,,,\n2015,5,25,\"US\",\"2135\",\"LGA\",\"DCA\",-4.00,-4.00,0.00,\"\",0.00,75.00,41.00,214.00,,,,,,\n2015,5,25,\"US\",\"2141\",\"BOS\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,68.00,42.00,184.00,,,,,,\n2015,5,25,\"US\",\"2143\",\"DCA\",\"LGA\",5.00,-16.00,0.00,\"\",0.00,68.00,40.00,214.00,,,,,,\n2015,5,25,\"US\",\"2143\",\"LGA\",\"DCA\",-8.00,-10.00,0.00,\"\",0.00,79.00,44.00,214.00,,,,,,\n2015,5,25,\"US\",\"2145\",\"DCA\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,70.00,43.00,214.00,,,,,,\n2015,5,25,\"US\",\"2145\",\"LGA\",\"DCA\",-7.00,-9.00,0.00,\"\",0.00,81.00,42.00,214.00,,,,,,\n2015,5,25,\"US\",\"2147\",\"LGA\",\"DCA\",-8.00,-31.00,0.00,\"\",0.00,59.00,43.00,214.00,,,,,,\n2015,5,25,\"US\",\"2151\",\"LGA\",\"BOS\",-6.00,-8.00,0.00,\"\",0.00,66.00,40.00,184.00,,,,,,\n2015,5,25,\"US\",\"2153\",\"DCA\",\"LGA\",54.00,46.00,0.00,\"\",0.00,81.00,53.00,214.00,0.00,0.00,0.00,0.00,46.00,\n2015,5,25,\"US\",\"2153\",\"LGA\",\"DCA\",40.00,26.00,0.00,\"\",0.00,66.00,46.00,214.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"US\",\"2154\",\"DCA\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,62.00,40.00,214.00,,,,,,\n2015,5,25,\"US\",\"2154\",\"LGA\",\"DCA\",3.00,13.00,0.00,\"\",0.00,86.00,43.00,214.00,,,,,,\n2015,5,25,\"US\",\"2155\",\"DCA\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,89.00,47.00,214.00,,,,,,\n2015,5,25,\"US\",\"2157\",\"DCA\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,78.00,43.00,214.00,,,,,,\n2015,5,25,\"US\",\"2157\",\"LGA\",\"DCA\",-7.00,-13.00,0.00,\"\",0.00,76.00,44.00,214.00,,,,,,\n2015,5,25,\"US\",\"2164\",\"DCA\",\"LGA\",5.00,-13.00,0.00,\"\",0.00,69.00,45.00,214.00,,,,,,\n2015,5,25,\"US\",\"2164\",\"LGA\",\"DCA\",-4.00,-15.00,0.00,\"\",0.00,72.00,41.00,214.00,,,,,,\n2015,5,25,\"US\",\"2165\",\"BOS\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,69.00,43.00,184.00,,,,,,\n2015,5,25,\"US\",\"2166\",\"LGA\",\"BOS\",-2.00,9.00,0.00,\"\",0.00,83.00,39.00,184.00,,,,,,\n2015,5,25,\"US\",\"2167\",\"DCA\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,77.00,52.00,214.00,,,,,,\n2015,5,25,\"US\",\"2167\",\"LGA\",\"DCA\",-8.00,-16.00,0.00,\"\",0.00,74.00,46.00,214.00,,,,,,\n2015,5,25,\"US\",\"2174\",\"DCA\",\"LGA\",-3.00,-3.00,0.00,\"\",0.00,90.00,42.00,214.00,,,,,,\n2015,5,25,\"US\",\"2174\",\"LGA\",\"DCA\",-5.00,5.00,0.00,\"\",0.00,89.00,41.00,214.00,,,,,,\n2015,5,26,\"US\",\"413\",\"JFK\",\"CLT\",-4.00,-19.00,0.00,\"\",0.00,101.00,79.00,541.00,,,,,,\n2015,5,26,\"US\",\"425\",\"JFK\",\"CLT\",9.00,1.00,0.00,\"\",0.00,120.00,80.00,541.00,,,,,,\n2015,5,26,\"US\",\"425\",\"PHX\",\"JFK\",1.00,-4.00,0.00,\"\",0.00,298.00,262.00,2153.00,,,,,,\n2015,5,26,\"US\",\"433\",\"JFK\",\"PHX\",-6.00,-34.00,0.00,\"\",0.00,310.00,288.00,2153.00,,,,,,\n2015,5,26,\"US\",\"468\",\"LGA\",\"CLT\",-8.00,-22.00,0.00,\"\",0.00,105.00,81.00,544.00,,,,,,\n2015,5,26,\"US\",\"622\",\"PHX\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,275.00,252.00,2153.00,,,,,,\n2015,5,26,\"US\",\"632\",\"PHX\",\"JFK\",1.00,-9.00,0.00,\"\",0.00,275.00,253.00,2153.00,,,,,,\n2015,5,26,\"US\",\"639\",\"CLT\",\"JFK\",0.00,-16.00,0.00,\"\",0.00,100.00,78.00,541.00,,,,,,\n2015,5,26,\"US\",\"639\",\"JFK\",\"PHX\",1.00,-11.00,0.00,\"\",0.00,322.00,290.00,2153.00,,,,,,\n2015,5,26,\"US\",\"654\",\"JFK\",\"PHX\",0.00,-20.00,0.00,\"\",0.00,304.00,283.00,2153.00,,,,,,\n2015,5,26,\"US\",\"756\",\"BUF\",\"CLT\",3.00,-6.00,0.00,\"\",0.00,102.00,86.00,546.00,,,,,,\n2015,5,26,\"US\",\"809\",\"PHL\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,48.00,28.00,96.00,,,,,,\n2015,5,26,\"US\",\"821\",\"ROC\",\"CLT\",3.00,-9.00,0.00,\"\",0.00,110.00,91.00,573.00,,,,,,\n2015,5,26,\"US\",\"826\",\"LGA\",\"CLT\",-5.00,-2.00,0.00,\"\",0.00,120.00,83.00,544.00,,,,,,\n2015,5,26,\"US\",\"853\",\"CLT\",\"BUF\",-3.00,16.00,0.00,\"\",0.00,124.00,81.00,546.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,28,\"US\",\"622\",\"PHX\",\"JFK\",1.00,11.00,0.00,\"\",0.00,300.00,281.00,2153.00,,,,,,\n2015,5,28,\"US\",\"632\",\"PHX\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,271.00,247.00,2153.00,,,,,,\n2015,5,28,\"US\",\"639\",\"CLT\",\"JFK\",2.00,-11.00,0.00,\"\",0.00,103.00,79.00,541.00,,,,,,\n2015,5,28,\"US\",\"639\",\"JFK\",\"PHX\",-7.00,-36.00,0.00,\"\",0.00,305.00,283.00,2153.00,,,,,,\n2015,5,23,\"US\",\"841\",\"LGA\",\"CLT\",-10.00,-4.00,0.00,\"\",0.00,133.00,86.00,544.00,,,,,,\n2015,5,23,\"US\",\"850\",\"ALB\",\"CLT\",-10.00,-38.00,0.00,\"\",0.00,114.00,99.00,646.00,,,,,,\n2015,5,23,\"US\",\"863\",\"ROC\",\"CLT\",-3.00,2.00,0.00,\"\",0.00,127.00,99.00,573.00,,,,,,\n2015,5,23,\"US\",\"873\",\"JFK\",\"CLT\",-5.00,-19.00,0.00,\"\",0.00,110.00,84.00,541.00,,,,,,\n2015,5,23,\"US\",\"876\",\"SYR\",\"CLT\",-7.00,12.00,0.00,\"\",0.00,147.00,107.00,603.00,,,,,,\n2015,5,23,\"US\",\"885\",\"LGA\",\"CLT\",19.00,33.00,0.00,\"\",0.00,131.00,88.00,544.00,19.00,0.00,14.00,0.00,0.00,\n2015,5,23,\"US\",\"890\",\"LGA\",\"CLT\",-3.00,-24.00,0.00,\"\",0.00,102.00,82.00,544.00,,,,,,\n2015,5,23,\"US\",\"894\",\"LGA\",\"CLT\",-5.00,-23.00,0.00,\"\",0.00,105.00,81.00,544.00,,,,,,\n2015,5,23,\"US\",\"896\",\"CLT\",\"ROC\",6.00,41.00,0.00,\"\",0.00,137.00,89.00,573.00,0.00,0.00,35.00,0.00,6.00,\n2015,5,23,\"US\",\"1704\",\"ALB\",\"CLT\",-5.00,-20.00,0.00,\"\",0.00,116.00,96.00,646.00,,,,,,\n2015,5,23,\"US\",\"1704\",\"CLT\",\"BUF\",-2.00,-5.00,0.00,\"\",0.00,96.00,81.00,546.00,,,,,,\n2015,5,26,\"US\",\"873\",\"JFK\",\"CLT\",0.00,-21.00,0.00,\"\",0.00,103.00,80.00,541.00,,,,,,\n2015,5,26,\"US\",\"876\",\"SYR\",\"CLT\",-4.00,-8.00,0.00,\"\",0.00,124.00,101.00,603.00,,,,,,\n2015,5,26,\"US\",\"890\",\"LGA\",\"CLT\",-5.00,-20.00,0.00,\"\",0.00,110.00,79.00,544.00,,,,,,\n2015,5,26,\"US\",\"896\",\"CLT\",\"ROC\",-5.00,-18.00,0.00,\"\",0.00,89.00,72.00,573.00,,,,,,\n2015,5,26,\"US\",\"1740\",\"CLT\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,110.00,83.00,544.00,,,,,,\n2015,5,26,\"US\",\"1750\",\"ALB\",\"CLT\",-10.00,-21.00,0.00,\"\",0.00,120.00,97.00,646.00,,,,,,\n2015,5,26,\"US\",\"1781\",\"LGA\",\"CLT\",-3.00,3.00,0.00,\"\",0.00,131.00,83.00,544.00,,,,,,\n2015,5,26,\"US\",\"1810\",\"LGA\",\"CLT\",-6.00,-13.00,0.00,\"\",0.00,115.00,80.00,544.00,,,,,,\n2015,5,26,\"US\",\"1815\",\"LGA\",\"CLT\",-7.00,-22.00,0.00,\"\",0.00,107.00,78.00,544.00,,,,,,\n2015,5,26,\"US\",\"1830\",\"CLT\",\"JFK\",52.00,54.00,0.00,\"\",0.00,109.00,82.00,541.00,42.00,0.00,2.00,0.00,10.00,\n2015,5,26,\"US\",\"1849\",\"LGA\",\"CLT\",-5.00,-12.00,0.00,\"\",0.00,126.00,87.00,544.00,,,,,,\n2015,5,26,\"US\",\"1851\",\"LGA\",\"CLT\",-4.00,-8.00,0.00,\"\",0.00,119.00,82.00,544.00,,,,,,\n2015,5,26,\"US\",\"1873\",\"BUF\",\"CLT\",15.00,15.00,0.00,\"\",0.00,108.00,85.00,546.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,26,\"US\",\"1885\",\"CLT\",\"BUF\",-4.00,6.00,0.00,\"\",0.00,111.00,70.00,546.00,,,,,,\n2015,5,26,\"US\",\"1898\",\"CLT\",\"JFK\",4.00,16.00,0.00,\"\",0.00,122.00,93.00,541.00,0.00,0.00,12.00,0.00,4.00,\n2015,5,26,\"US\",\"1908\",\"LGA\",\"CLT\",-2.00,-5.00,0.00,\"\",0.00,119.00,81.00,544.00,,,,,,\n2015,5,26,\"US\",\"1910\",\"CLT\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,106.00,78.00,544.00,,,,,,\n2015,5,26,\"US\",\"1916\",\"SYR\",\"CLT\",-1.00,-5.00,0.00,\"\",0.00,118.00,96.00,603.00,,,,,,\n2015,5,26,\"US\",\"1919\",\"JFK\",\"CLT\",-8.00,-8.00,0.00,\"\",0.00,121.00,82.00,541.00,,,,,,\n2015,5,26,\"US\",\"1923\",\"ALB\",\"CLT\",-6.00,-12.00,0.00,\"\",0.00,136.00,109.00,646.00,,,,,,\n2015,5,26,\"US\",\"1933\",\"LGA\",\"PHL\",-6.00,-26.00,0.00,\"\",0.00,53.00,33.00,96.00,,,,,,\n2015,5,26,\"US\",\"1940\",\"CLT\",\"ALB\",6.00,0.00,0.00,\"\",0.00,112.00,91.00,646.00,,,,,,\n2015,5,26,\"US\",\"1942\",\"CLT\",\"BUF\",2.00,-3.00,0.00,\"\",0.00,95.00,74.00,546.00,,,,,,\n2015,5,26,\"US\",\"1951\",\"LGA\",\"CLT\",-5.00,-5.00,0.00,\"\",0.00,122.00,85.00,544.00,,,,,,\n2015,5,26,\"US\",\"1952\",\"CLT\",\"BUF\",-4.00,6.00,0.00,\"\",0.00,108.00,79.00,546.00,,,,,,\n2015,5,26,\"US\",\"1954\",\"CLT\",\"LGA\",1.00,-5.00,0.00,\"\",0.00,102.00,80.00,544.00,,,,,,\n2015,5,26,\"US\",\"1971\",\"CLT\",\"SYR\",121.00,118.00,0.00,\"\",0.00,102.00,79.00,603.00,118.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"US\",\"1977\",\"BUF\",\"CLT\",-7.00,-12.00,0.00,\"\",0.00,104.00,84.00,546.00,,,,,,\n2015,5,26,\"US\",\"1981\",\"CLT\",\"LGA\",1.00,-6.00,0.00,\"\",0.00,98.00,77.00,544.00,,,,,,\n2015,5,26,\"US\",\"1983\",\"BUF\",\"CLT\",0.00,-3.00,0.00,\"\",0.00,109.00,87.00,546.00,,,,,,\n2015,5,26,\"US\",\"1988\",\"CLT\",\"ALB\",-6.00,-11.00,0.00,\"\",0.00,120.00,94.00,646.00,,,,,,\n2015,5,26,\"US\",\"2017\",\"CLT\",\"JFK\",-3.00,-13.00,0.00,\"\",0.00,100.00,78.00,541.00,,,,,,\n2015,5,26,\"US\",\"2036\",\"CLT\",\"SYR\",-6.00,-8.00,0.00,\"\",0.00,108.00,83.00,603.00,,,,,,\n2015,5,26,\"US\",\"2042\",\"CLT\",\"JFK\",4.00,3.00,0.00,\"\",0.00,105.00,79.00,541.00,,,,,,\n2015,5,26,\"US\",\"2050\",\"CLT\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,100.00,78.00,544.00,,,,,,\n2015,5,26,\"US\",\"2060\",\"CLT\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,92.00,74.00,544.00,,,,,,\n2015,5,26,\"US\",\"2062\",\"CLT\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,105.00,81.00,544.00,,,,,,\n2015,5,26,\"US\",\"2064\",\"CLT\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,103.00,77.00,544.00,,,,,,\n2015,5,26,\"US\",\"2066\",\"CLT\",\"LGA\",7.00,16.00,0.00,\"\",0.00,115.00,83.00,544.00,5.00,0.00,9.00,0.00,2.00,\n2015,5,26,\"US\",\"2068\",\"CLT\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,101.00,78.00,544.00,,,,,,\n2015,5,26,\"US\",\"2069\",\"JFK\",\"CLT\",46.00,27.00,0.00,\"\",0.00,102.00,77.00,541.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,26,\"US\",\"2115\",\"LGA\",\"DCA\",-1.00,2.00,0.00,\"\",0.00,66.00,42.00,214.00,,,,,,\n2015,5,26,\"US\",\"2117\",\"DCA\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,59.00,42.00,214.00,,,,,,\n2015,5,26,\"US\",\"2118\",\"BOS\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,73.00,41.00,184.00,,,,,,\n2015,5,26,\"US\",\"2118\",\"LGA\",\"BOS\",-5.00,-23.00,0.00,\"\",0.00,60.00,37.00,184.00,,,,,,\n2015,5,26,\"US\",\"2121\",\"BOS\",\"LGA\",-8.00,-15.00,0.00,\"\",0.00,69.00,48.00,184.00,,,,,,\n2015,5,26,\"US\",\"2121\",\"LGA\",\"BOS\",-5.00,-8.00,0.00,\"\",0.00,75.00,41.00,184.00,,,,,,\n2015,5,26,\"US\",\"2122\",\"LGA\",\"BOS\",-5.00,-5.00,0.00,\"\",0.00,74.00,41.00,184.00,,,,,,\n2015,5,26,\"US\",\"2123\",\"LGA\",\"DCA\",-3.00,-5.00,0.00,\"\",0.00,68.00,41.00,214.00,,,,,,\n2015,5,26,\"US\",\"2125\",\"LGA\",\"DCA\",-7.00,-19.00,0.00,\"\",0.00,72.00,45.00,214.00,,,,,,\n2015,5,26,\"US\",\"2126\",\"BOS\",\"LGA\",-4.00,-1.00,0.00,\"\",0.00,84.00,43.00,184.00,,,,,,\n2015,5,26,\"US\",\"2126\",\"LGA\",\"BOS\",-4.00,-9.00,0.00,\"\",0.00,57.00,39.00,184.00,,,,,,\n2015,5,26,\"US\",\"2128\",\"LGA\",\"BOS\",-6.00,-22.00,0.00,\"\",0.00,57.00,42.00,184.00,,,,,,\n2015,5,26,\"US\",\"2131\",\"BOS\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,73.00,43.00,184.00,,,,,,\n2015,5,26,\"US\",\"2131\",\"LGA\",\"BOS\",-5.00,-14.00,0.00,\"\",0.00,63.00,42.00,184.00,,,,,,\n2015,5,26,\"US\",\"2133\",\"DCA\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,87.00,42.00,214.00,,,,,,\n2015,5,26,\"US\",\"2133\",\"LGA\",\"DCA\",-4.00,-3.00,0.00,\"\",0.00,78.00,45.00,214.00,,,,,,\n2015,5,26,\"US\",\"2135\",\"DCA\",\"LGA\",-2.00,-23.00,0.00,\"\",0.00,55.00,39.00,214.00,,,,,,\n2015,5,26,\"US\",\"2135\",\"LGA\",\"DCA\",-5.00,8.00,0.00,\"\",0.00,88.00,39.00,214.00,,,,,,\n2015,5,26,\"US\",\"2136\",\"BOS\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,70.00,43.00,184.00,,,,,,\n2015,5,26,\"US\",\"2136\",\"LGA\",\"BOS\",-2.00,-7.00,0.00,\"\",0.00,73.00,36.00,184.00,,,,,,\n2015,5,26,\"US\",\"2137\",\"DCA\",\"LGA\",-7.00,-19.00,0.00,\"\",0.00,56.00,38.00,214.00,,,,,,\n2015,5,26,\"US\",\"2137\",\"LGA\",\"DCA\",-6.00,4.00,0.00,\"\",0.00,95.00,44.00,214.00,,,,,,\n2015,5,26,\"US\",\"2141\",\"BOS\",\"LGA\",-6.00,10.00,0.00,\"\",0.00,100.00,45.00,184.00,,,,,,\n2015,5,26,\"US\",\"2141\",\"LGA\",\"BOS\",-3.00,-24.00,0.00,\"\",0.00,56.00,38.00,184.00,,,,,,\n2015,5,26,\"US\",\"2143\",\"DCA\",\"LGA\",-8.00,-26.00,0.00,\"\",0.00,71.00,42.00,214.00,,,,,,\n2015,5,26,\"US\",\"2143\",\"LGA\",\"DCA\",-5.00,-7.00,0.00,\"\",0.00,79.00,48.00,214.00,,,,,,\n2015,5,26,\"US\",\"2144\",\"DCA\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,71.00,43.00,214.00,,,,,,\n2015,5,26,\"US\",\"2144\",\"LGA\",\"DCA\",-7.00,-18.00,0.00,\"\",0.00,71.00,46.00,214.00,,,,,,\n2015,5,26,\"US\",\"2145\",\"DCA\",\"LGA\",0.00,-22.00,0.00,\"\",0.00,66.00,43.00,214.00,,,,,,\n2015,5,26,\"US\",\"2145\",\"LGA\",\"DCA\",-7.00,-11.00,0.00,\"\",0.00,79.00,49.00,214.00,,,,,,\n2015,5,26,\"US\",\"2146\",\"BOS\",\"LGA\",-8.00,-17.00,0.00,\"\",0.00,73.00,48.00,184.00,,,,,,\n2015,5,26,\"US\",\"2146\",\"LGA\",\"BOS\",-8.00,-18.00,0.00,\"\",0.00,58.00,37.00,184.00,,,,,,\n2015,5,26,\"US\",\"2147\",\"DCA\",\"LGA\",1.00,-16.00,0.00,\"\",0.00,71.00,44.00,214.00,,,,,,\n2015,5,26,\"US\",\"2147\",\"LGA\",\"DCA\",-6.00,-15.00,0.00,\"\",0.00,73.00,47.00,214.00,,,,,,\n2015,5,26,\"US\",\"2148\",\"BOS\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,69.00,44.00,184.00,,,,,,\n2015,5,26,\"US\",\"2151\",\"LGA\",\"BOS\",0.00,-12.00,0.00,\"\",0.00,56.00,42.00,184.00,,,,,,\n2015,5,26,\"US\",\"2152\",\"BOS\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,70.00,43.00,184.00,,,,,,\n2015,5,26,\"US\",\"2152\",\"LGA\",\"BOS\",7.00,12.00,0.00,\"\",0.00,73.00,45.00,184.00,,,,,,\n2015,5,26,\"US\",\"2153\",\"DCA\",\"LGA\",-6.00,-35.00,0.00,\"\",0.00,60.00,42.00,214.00,,,,,,\n2015,5,26,\"US\",\"2153\",\"LGA\",\"DCA\",-6.00,-9.00,0.00,\"\",0.00,77.00,46.00,214.00,,,,,,\n2015,5,26,\"US\",\"2154\",\"DCA\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,58.00,41.00,214.00,,,,,,\n2015,5,26,\"US\",\"2154\",\"LGA\",\"DCA\",-5.00,-9.00,0.00,\"\",0.00,72.00,45.00,214.00,,,,,,\n2015,5,26,\"US\",\"2155\",\"DCA\",\"LGA\",-3.00,-22.00,0.00,\"\",0.00,76.00,43.00,214.00,,,,,,\n2015,5,26,\"US\",\"2156\",\"BOS\",\"LGA\",-9.00,-11.00,0.00,\"\",0.00,81.00,43.00,184.00,,,,,,\n2015,5,26,\"US\",\"2156\",\"LGA\",\"BOS\",-7.00,-14.00,0.00,\"\",0.00,69.00,49.00,184.00,,,,,,\n2015,5,26,\"US\",\"2157\",\"DCA\",\"LGA\",-7.00,-8.00,0.00,\"\",0.00,87.00,43.00,214.00,,,,,,\n2015,5,26,\"US\",\"2157\",\"LGA\",\"DCA\",-10.00,-22.00,0.00,\"\",0.00,70.00,45.00,214.00,,,,,,\n2015,5,26,\"US\",\"2158\",\"BOS\",\"LGA\",-8.00,-19.00,0.00,\"\",0.00,69.00,44.00,184.00,,,,,,\n2015,5,26,\"US\",\"2158\",\"LGA\",\"BOS\",-8.00,-3.00,0.00,\"\",0.00,69.00,40.00,184.00,,,,,,\n2015,5,26,\"US\",\"2162\",\"BOS\",\"LGA\",-9.00,-18.00,0.00,\"\",0.00,75.00,42.00,184.00,,,,,,\n2015,5,26,\"US\",\"2162\",\"LGA\",\"BOS\",-8.00,-11.00,0.00,\"\",0.00,69.00,41.00,184.00,,,,,,\n2015,5,26,\"US\",\"2163\",\"DCA\",\"LGA\",-8.00,-8.00,0.00,\"\",0.00,83.00,42.00,214.00,,,,,,\n2015,5,26,\"US\",\"2164\",\"DCA\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,84.00,41.00,214.00,,,,,,\n2015,5,26,\"US\",\"2164\",\"LGA\",\"DCA\",-3.00,-22.00,0.00,\"\",0.00,64.00,44.00,214.00,,,,,,\n2015,5,26,\"US\",\"2165\",\"BOS\",\"LGA\",-8.00,6.00,0.00,\"\",0.00,90.00,46.00,184.00,,,,,,\n2015,5,26,\"US\",\"2167\",\"DCA\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,74.00,43.00,214.00,,,,,,\n2015,5,26,\"US\",\"2167\",\"LGA\",\"DCA\",-4.00,-11.00,0.00,\"\",0.00,75.00,46.00,214.00,,,,,,\n2015,5,26,\"US\",\"2168\",\"BOS\",\"LGA\",-7.00,-18.00,0.00,\"\",0.00,70.00,46.00,184.00,,,,,,\n2015,5,26,\"US\",\"2168\",\"LGA\",\"BOS\",-5.00,-11.00,0.00,\"\",0.00,65.00,40.00,184.00,,,,,,\n2015,5,26,\"US\",\"2171\",\"BOS\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,79.00,47.00,184.00,,,,,,\n2015,5,26,\"US\",\"2172\",\"BOS\",\"LGA\",15.00,2.00,0.00,\"\",0.00,68.00,41.00,184.00,,,,,,\n2015,5,26,\"US\",\"2172\",\"LGA\",\"BOS\",-5.00,-4.00,0.00,\"\",0.00,74.00,45.00,184.00,,,,,,\n2015,5,26,\"US\",\"2174\",\"DCA\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,81.00,47.00,214.00,,,,,,\n2015,5,26,\"US\",\"2174\",\"LGA\",\"DCA\",-9.00,-20.00,0.00,\"\",0.00,68.00,44.00,214.00,,,,,,\n2015,5,27,\"US\",\"413\",\"JFK\",\"CLT\",-6.00,-13.00,0.00,\"\",0.00,109.00,88.00,541.00,,,,,,\n2015,5,27,\"US\",\"425\",\"JFK\",\"CLT\",-5.00,15.00,0.00,\"\",0.00,148.00,98.00,541.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,27,\"US\",\"425\",\"PHX\",\"JFK\",4.00,1.00,0.00,\"\",0.00,300.00,263.00,2153.00,,,,,,\n2015,5,27,\"US\",\"433\",\"JFK\",\"PHX\",-5.00,-12.00,0.00,\"\",0.00,331.00,297.00,2153.00,,,,,,\n2015,5,27,\"US\",\"468\",\"LGA\",\"CLT\",10.00,-9.00,0.00,\"\",0.00,100.00,81.00,544.00,,,,,,\n2015,5,27,\"US\",\"622\",\"PHX\",\"JFK\",12.00,6.00,0.00,\"\",0.00,284.00,263.00,2153.00,,,,,,\n2015,5,27,\"US\",\"632\",\"PHX\",\"JFK\",3.00,-3.00,0.00,\"\",0.00,279.00,258.00,2153.00,,,,,,\n2015,5,27,\"US\",\"639\",\"CLT\",\"JFK\",365.00,359.00,0.00,\"\",0.00,110.00,82.00,541.00,0.00,0.00,359.00,0.00,0.00,\n2015,5,27,\"US\",\"639\",\"JFK\",\"PHX\",349.00,325.00,0.00,\"\",0.00,310.00,284.00,2153.00,325.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"US\",\"654\",\"JFK\",\"PHX\",-3.00,-8.00,0.00,\"\",0.00,319.00,286.00,2153.00,,,,,,\n2015,5,29,\"US\",\"468\",\"LGA\",\"CLT\",-4.00,-23.00,0.00,\"\",0.00,100.00,77.00,544.00,,,,,,\n2015,5,29,\"US\",\"622\",\"PHX\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,275.00,256.00,2153.00,,,,,,\n2015,5,29,\"US\",\"632\",\"PHX\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,280.00,256.00,2153.00,,,,,,\n2015,5,29,\"US\",\"639\",\"CLT\",\"JFK\",-1.00,-7.00,0.00,\"\",0.00,110.00,83.00,541.00,,,,,,\n2015,5,29,\"US\",\"639\",\"JFK\",\"PHX\",2.00,-31.00,0.00,\"\",0.00,301.00,280.00,2153.00,,,,,,\n2015,5,29,\"US\",\"654\",\"JFK\",\"PHX\",-4.00,-2.00,0.00,\"\",0.00,326.00,288.00,2153.00,,,,,,\n2015,5,29,\"US\",\"756\",\"BUF\",\"CLT\",-10.00,-6.00,0.00,\"\",0.00,115.00,89.00,546.00,,,,,,\n2015,5,29,\"US\",\"809\",\"PHL\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,50.00,31.00,96.00,,,,,,\n2015,5,29,\"US\",\"821\",\"ROC\",\"CLT\",-9.00,-19.00,0.00,\"\",0.00,112.00,89.00,573.00,,,,,,\n2015,5,29,\"US\",\"826\",\"LGA\",\"CLT\",-7.00,-3.00,0.00,\"\",0.00,121.00,79.00,544.00,,,,,,\n2015,5,29,\"US\",\"853\",\"CLT\",\"BUF\",-7.00,3.00,0.00,\"\",0.00,115.00,82.00,546.00,,,,,,\n2015,5,29,\"US\",\"873\",\"JFK\",\"CLT\",-4.00,-23.00,0.00,\"\",0.00,105.00,74.00,541.00,,,,,,\n2015,5,29,\"US\",\"876\",\"SYR\",\"CLT\",-9.00,-15.00,0.00,\"\",0.00,122.00,94.00,603.00,,,,,,\n2015,5,29,\"US\",\"890\",\"LGA\",\"CLT\",13.00,9.00,0.00,\"\",0.00,121.00,88.00,544.00,,,,,,\n2015,5,29,\"US\",\"896\",\"CLT\",\"ROC\",-3.00,-3.00,0.00,\"\",0.00,102.00,81.00,573.00,,,,,,\n2015,5,19,\"US\",\"2017\",\"CLT\",\"JFK\",1.00,-12.00,0.00,\"\",0.00,97.00,75.00,541.00,,,,,,\n2015,5,19,\"US\",\"2036\",\"CLT\",\"SYR\",-2.00,-20.00,0.00,\"\",0.00,92.00,79.00,603.00,,,,,,\n2015,5,19,\"US\",\"2042\",\"CLT\",\"JFK\",40.00,59.00,0.00,\"\",0.00,125.00,82.00,541.00,8.00,0.00,19.00,0.00,32.00,\n2015,5,19,\"US\",\"2050\",\"CLT\",\"LGA\",33.00,43.00,0.00,\"\",0.00,118.00,76.00,544.00,0.00,0.00,10.00,0.00,33.00,\n2015,5,19,\"US\",\"2060\",\"CLT\",\"LGA\",-1.00,-15.00,0.00,\"\",0.00,93.00,78.00,544.00,,,,,,\n2015,5,19,\"US\",\"2062\",\"CLT\",\"LGA\",20.00,38.00,0.00,\"\",0.00,127.00,79.00,544.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,19,\"US\",\"2064\",\"CLT\",\"LGA\",64.00,55.00,0.00,\"\",0.00,105.00,76.00,544.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,19,\"US\",\"2066\",\"CLT\",\"LGA\",18.00,13.00,0.00,\"\",0.00,101.00,77.00,544.00,,,,,,\n2015,5,19,\"US\",\"2068\",\"CLT\",\"LGA\",80.00,70.00,0.00,\"\",0.00,97.00,75.00,544.00,6.00,0.00,0.00,0.00,64.00,\n2015,5,19,\"US\",\"2069\",\"JFK\",\"CLT\",59.00,42.00,0.00,\"\",0.00,104.00,83.00,541.00,14.00,0.00,0.00,0.00,28.00,\n2015,5,19,\"US\",\"2115\",\"LGA\",\"DCA\",0.00,1.00,0.00,\"\",0.00,64.00,48.00,214.00,,,,,,\n2015,5,19,\"US\",\"2117\",\"DCA\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,57.00,39.00,214.00,,,,,,\n2015,5,19,\"US\",\"2118\",\"BOS\",\"LGA\",48.00,78.00,0.00,\"\",0.00,111.00,46.00,184.00,0.00,0.00,78.00,0.00,0.00,\n2015,5,19,\"US\",\"2118\",\"LGA\",\"BOS\",32.00,38.00,0.00,\"\",0.00,84.00,44.00,184.00,3.00,0.00,6.00,0.00,29.00,\n2015,5,19,\"US\",\"2121\",\"BOS\",\"LGA\",83.00,85.00,0.00,\"\",0.00,78.00,51.00,184.00,0.00,0.00,85.00,0.00,0.00,\n2015,5,19,\"US\",\"2121\",\"LGA\",\"BOS\",,,1.00,\"B\",0.00,,,184.00,,,,,,\n2015,5,19,\"US\",\"2122\",\"LGA\",\"BOS\",19.00,7.00,0.00,\"\",0.00,62.00,39.00,184.00,,,,,,\n2015,5,19,\"US\",\"2123\",\"LGA\",\"DCA\",,,1.00,\"B\",0.00,,,214.00,,,,,,\n2015,5,19,\"US\",\"2125\",\"LGA\",\"DCA\",-3.00,-13.00,0.00,\"\",0.00,74.00,46.00,214.00,,,,,,\n2015,5,19,\"US\",\"2126\",\"BOS\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,80.00,49.00,184.00,,,,,,\n2015,5,19,\"US\",\"2126\",\"LGA\",\"BOS\",-5.00,-4.00,0.00,\"\",0.00,63.00,42.00,184.00,,,,,,\n2015,5,19,\"US\",\"2128\",\"LGA\",\"BOS\",67.00,62.00,0.00,\"\",0.00,68.00,40.00,184.00,0.00,0.00,0.00,0.00,62.00,\n2015,5,19,\"US\",\"2131\",\"BOS\",\"LGA\",64.00,70.00,0.00,\"\",0.00,87.00,42.00,184.00,0.00,0.00,6.00,0.00,64.00,\n2015,5,19,\"US\",\"2131\",\"LGA\",\"BOS\",71.00,83.00,0.00,\"\",0.00,84.00,44.00,184.00,0.00,0.00,12.00,0.00,71.00,\n2015,5,19,\"US\",\"2133\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,19,\"US\",\"2133\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,19,\"US\",\"2135\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,19,\"US\",\"2135\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,19,\"US\",\"2136\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,19,\"US\",\"2136\",\"LGA\",\"BOS\",-6.00,-28.00,0.00,\"\",0.00,56.00,39.00,184.00,,,,,,\n2015,5,19,\"US\",\"2137\",\"DCA\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,70.00,48.00,214.00,,,,,,\n2015,5,19,\"US\",\"2137\",\"LGA\",\"DCA\",-2.00,-6.00,0.00,\"\",0.00,81.00,53.00,214.00,,,,,,\n2015,5,19,\"US\",\"2141\",\"BOS\",\"LGA\",25.00,17.00,0.00,\"\",0.00,76.00,47.00,184.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,19,\"US\",\"2141\",\"LGA\",\"BOS\",57.00,51.00,0.00,\"\",0.00,71.00,39.00,184.00,0.00,0.00,0.00,0.00,51.00,\n2015,5,19,\"US\",\"2143\",\"DCA\",\"LGA\",-3.00,21.00,0.00,\"\",0.00,113.00,43.00,214.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,19,\"US\",\"2143\",\"LGA\",\"DCA\",28.00,47.00,0.00,\"\",0.00,100.00,57.00,214.00,8.00,0.00,19.00,0.00,20.00,\n2015,5,19,\"US\",\"2144\",\"DCA\",\"LGA\",0.00,17.00,0.00,\"\",0.00,96.00,49.00,214.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,19,\"US\",\"2144\",\"LGA\",\"DCA\",4.00,-2.00,0.00,\"\",0.00,76.00,47.00,214.00,,,,,,\n2015,5,19,\"US\",\"2145\",\"DCA\",\"LGA\",68.00,53.00,0.00,\"\",0.00,73.00,45.00,214.00,0.00,0.00,53.00,0.00,0.00,\n2015,5,19,\"US\",\"2145\",\"LGA\",\"DCA\",57.00,69.00,0.00,\"\",0.00,95.00,58.00,214.00,6.00,0.00,12.00,0.00,51.00,\n2015,5,19,\"US\",\"2146\",\"BOS\",\"LGA\",-1.00,18.00,0.00,\"\",0.00,101.00,41.00,184.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,19,\"US\",\"2146\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,19,\"US\",\"2147\",\"DCA\",\"LGA\",-1.00,71.00,0.00,\"\",0.00,160.00,38.00,214.00,0.00,0.00,71.00,0.00,0.00,\n2015,5,19,\"US\",\"2147\",\"LGA\",\"DCA\",67.00,58.00,0.00,\"\",0.00,73.00,44.00,214.00,58.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"US\",\"2148\",\"BOS\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,60.00,43.00,184.00,,,,,,\n2015,5,19,\"US\",\"2151\",\"LGA\",\"BOS\",4.00,-2.00,0.00,\"\",0.00,62.00,40.00,184.00,,,,,,\n2015,5,19,\"US\",\"2152\",\"BOS\",\"LGA\",26.00,15.00,0.00,\"\",0.00,70.00,46.00,184.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,19,\"US\",\"2152\",\"LGA\",\"BOS\",22.00,41.00,0.00,\"\",0.00,87.00,49.00,184.00,22.00,0.00,19.00,0.00,0.00,\n2015,5,19,\"US\",\"2153\",\"DCA\",\"LGA\",41.00,28.00,0.00,\"\",0.00,76.00,39.00,214.00,2.00,0.00,0.00,0.00,26.00,\n2015,5,19,\"US\",\"2153\",\"LGA\",\"DCA\",26.00,29.00,0.00,\"\",0.00,83.00,54.00,214.00,0.00,0.00,3.00,0.00,26.00,\n2015,5,19,\"US\",\"2154\",\"DCA\",\"LGA\",13.00,38.00,0.00,\"\",0.00,101.00,37.00,214.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,19,\"US\",\"2154\",\"LGA\",\"DCA\",31.00,19.00,0.00,\"\",0.00,64.00,35.00,214.00,4.00,0.00,0.00,0.00,15.00,\n2015,5,19,\"US\",\"2155\",\"DCA\",\"LGA\",97.00,68.00,0.00,\"\",0.00,66.00,41.00,214.00,25.00,0.00,0.00,0.00,43.00,\n2015,5,19,\"US\",\"2156\",\"BOS\",\"LGA\",4.00,1.00,0.00,\"\",0.00,80.00,45.00,184.00,,,,,,\n2015,5,19,\"US\",\"2156\",\"LGA\",\"BOS\",9.00,27.00,0.00,\"\",0.00,94.00,41.00,184.00,0.00,0.00,18.00,0.00,9.00,\n2015,5,19,\"US\",\"2157\",\"DCA\",\"LGA\",8.00,-11.00,0.00,\"\",0.00,69.00,36.00,214.00,,,,,,\n2015,5,19,\"US\",\"2157\",\"LGA\",\"DCA\",-4.00,8.00,0.00,\"\",0.00,94.00,57.00,214.00,,,,,,\n2015,5,19,\"US\",\"2158\",\"BOS\",\"LGA\",-7.00,-7.00,0.00,\"\",0.00,80.00,46.00,184.00,,,,,,\n2015,5,19,\"US\",\"2158\",\"LGA\",\"BOS\",-6.00,-8.00,0.00,\"\",0.00,62.00,42.00,184.00,,,,,,\n2015,5,19,\"US\",\"2162\",\"BOS\",\"LGA\",-4.00,25.00,0.00,\"\",0.00,113.00,48.00,184.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,19,\"US\",\"2162\",\"LGA\",\"BOS\",4.00,0.00,0.00,\"\",0.00,68.00,47.00,184.00,,,,,,\n2015,5,19,\"US\",\"2163\",\"DCA\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,77.00,45.00,214.00,,,,,,\n2015,5,19,\"US\",\"2164\",\"DCA\",\"LGA\",11.00,0.00,0.00,\"\",0.00,76.00,42.00,214.00,,,,,,\n2015,5,19,\"US\",\"2164\",\"LGA\",\"DCA\",4.00,16.00,0.00,\"\",0.00,95.00,58.00,214.00,4.00,0.00,12.00,0.00,0.00,\n2015,5,19,\"US\",\"2165\",\"BOS\",\"LGA\",-3.00,47.00,0.00,\"\",0.00,126.00,47.00,184.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,19,\"US\",\"2167\",\"DCA\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,88.00,44.00,214.00,,,,,,\n2015,5,19,\"US\",\"2167\",\"LGA\",\"DCA\",-5.00,6.00,0.00,\"\",0.00,93.00,61.00,214.00,,,,,,\n2015,5,19,\"US\",\"2168\",\"BOS\",\"LGA\",42.00,38.00,0.00,\"\",0.00,77.00,50.00,184.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,19,\"US\",\"2168\",\"LGA\",\"BOS\",34.00,46.00,0.00,\"\",0.00,83.00,44.00,184.00,34.00,0.00,12.00,0.00,0.00,\n2015,5,19,\"US\",\"2171\",\"BOS\",\"LGA\",,,1.00,\"B\",0.00,,,184.00,,,,,,\n2015,5,19,\"US\",\"2172\",\"BOS\",\"LGA\",38.00,29.00,0.00,\"\",0.00,72.00,42.00,184.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,19,\"US\",\"2172\",\"LGA\",\"BOS\",22.00,50.00,0.00,\"\",0.00,101.00,43.00,184.00,3.00,0.00,28.00,0.00,19.00,\n2015,5,19,\"US\",\"2174\",\"DCA\",\"LGA\",15.00,12.00,0.00,\"\",0.00,87.00,45.00,214.00,,,,,,\n2015,5,19,\"US\",\"2174\",\"LGA\",\"DCA\",0.00,-2.00,0.00,\"\",0.00,77.00,54.00,214.00,,,,,,\n2015,5,20,\"US\",\"413\",\"JFK\",\"CLT\",-1.00,-7.00,0.00,\"\",0.00,110.00,91.00,541.00,,,,,,\n2015,5,20,\"US\",\"425\",\"JFK\",\"CLT\",-4.00,-6.00,0.00,\"\",0.00,126.00,81.00,541.00,,,,,,\n2015,5,20,\"US\",\"425\",\"PHX\",\"JFK\",-1.00,4.00,0.00,\"\",0.00,308.00,239.00,2153.00,,,,,,\n2015,5,20,\"US\",\"433\",\"JFK\",\"PHX\",-3.00,10.00,0.00,\"\",0.00,351.00,302.00,2153.00,,,,,,\n2015,5,23,\"US\",\"1740\",\"CLT\",\"LGA\",9.00,4.00,0.00,\"\",0.00,102.00,80.00,544.00,,,,,,\n2015,5,23,\"US\",\"1760\",\"LGA\",\"CLT\",-5.00,-18.00,0.00,\"\",0.00,109.00,84.00,544.00,,,,,,\n2015,5,23,\"US\",\"1781\",\"LGA\",\"CLT\",-7.00,-28.00,0.00,\"\",0.00,104.00,84.00,544.00,,,,,,\n2015,5,23,\"US\",\"1797\",\"BUF\",\"CLT\",-5.00,-12.00,0.00,\"\",0.00,105.00,82.00,546.00,,,,,,\n2015,5,23,\"US\",\"1799\",\"LGA\",\"CLT\",-3.00,-26.00,0.00,\"\",0.00,99.00,78.00,544.00,,,,,,\n2015,5,23,\"US\",\"1804\",\"PHL\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,43.00,27.00,96.00,,,,,,\n2015,5,23,\"US\",\"1838\",\"PHL\",\"LGA\",-4.00,-4.00,0.00,\"\",0.00,55.00,29.00,96.00,,,,,,\n2015,5,23,\"US\",\"1843\",\"LGA\",\"CLT\",-1.00,-11.00,0.00,\"\",0.00,109.00,82.00,544.00,,,,,,\n2015,5,23,\"US\",\"1855\",\"JFK\",\"CLT\",-3.00,-1.00,0.00,\"\",0.00,116.00,87.00,541.00,,,,,,\n2015,5,23,\"US\",\"1860\",\"CLT\",\"LGA\",6.00,8.00,0.00,\"\",0.00,107.00,78.00,544.00,,,,,,\n2015,5,23,\"US\",\"1867\",\"JFK\",\"CLT\",-6.00,-19.00,0.00,\"\",0.00,108.00,78.00,541.00,,,,,,\n2015,5,23,\"US\",\"1887\",\"LGA\",\"CLT\",-10.00,-19.00,0.00,\"\",0.00,114.00,92.00,544.00,,,,,,\n2015,5,23,\"US\",\"1898\",\"CLT\",\"JFK\",116.00,105.00,0.00,\"\",0.00,99.00,78.00,541.00,105.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"US\",\"1910\",\"CLT\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,106.00,75.00,544.00,,,,,,\n2015,5,23,\"US\",\"1918\",\"PHL\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,59.00,35.00,96.00,,,,,,\n2015,5,23,\"US\",\"1933\",\"LGA\",\"PHL\",-6.00,-26.00,0.00,\"\",0.00,53.00,37.00,96.00,,,,,,\n2015,5,23,\"US\",\"1940\",\"CLT\",\"ALB\",5.00,-1.00,0.00,\"\",0.00,112.00,93.00,646.00,,,,,,\n2015,5,23,\"US\",\"1942\",\"CLT\",\"BUF\",-4.00,-5.00,0.00,\"\",0.00,99.00,78.00,546.00,,,,,,\n2015,5,23,\"US\",\"1946\",\"LGA\",\"CLT\",-9.00,-20.00,0.00,\"\",0.00,111.00,90.00,544.00,,,,,,\n2015,5,23,\"US\",\"1952\",\"CLT\",\"BUF\",-3.00,4.00,0.00,\"\",0.00,105.00,81.00,546.00,,,,,,\n2015,5,23,\"US\",\"1954\",\"CLT\",\"LGA\",-2.00,-4.00,0.00,\"\",0.00,106.00,80.00,544.00,,,,,,\n2015,5,23,\"US\",\"1982\",\"CLT\",\"JFK\",-5.00,-16.00,0.00,\"\",0.00,96.00,80.00,541.00,,,,,,\n2015,5,23,\"US\",\"1988\",\"CLT\",\"ALB\",-7.00,-8.00,0.00,\"\",0.00,124.00,93.00,646.00,,,,,,\n2015,5,23,\"US\",\"2017\",\"CLT\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,93.00,77.00,541.00,,,,,,\n2015,5,23,\"US\",\"2036\",\"CLT\",\"SYR\",1.00,26.00,0.00,\"\",0.00,135.00,94.00,603.00,0.00,0.00,25.00,1.00,0.00,\n2015,5,23,\"US\",\"2042\",\"CLT\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,102.00,78.00,541.00,,,,,,\n2015,5,23,\"US\",\"2047\",\"BUF\",\"CLT\",-6.00,-2.00,0.00,\"\",0.00,113.00,87.00,546.00,,,,,,\n2015,5,23,\"US\",\"2050\",\"CLT\",\"LGA\",-5.00,-7.00,0.00,\"\",0.00,106.00,84.00,544.00,,,,,,\n2015,5,23,\"US\",\"2062\",\"CLT\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,100.00,75.00,544.00,,,,,,\n2015,5,23,\"US\",\"2064\",\"CLT\",\"LGA\",7.00,-2.00,0.00,\"\",0.00,105.00,73.00,544.00,,,,,,\n2015,5,23,\"US\",\"2066\",\"CLT\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,100.00,77.00,544.00,,,,,,\n2015,5,23,\"US\",\"2068\",\"CLT\",\"LGA\",9.00,10.00,0.00,\"\",0.00,108.00,85.00,544.00,,,,,,\n2015,5,23,\"US\",\"2069\",\"BUF\",\"CLT\",4.00,4.00,0.00,\"\",0.00,111.00,82.00,546.00,,,,,,\n2015,5,23,\"US\",\"2135\",\"DCA\",\"LGA\",-7.00,-33.00,0.00,\"\",0.00,62.00,45.00,214.00,,,,,,\n2015,5,23,\"US\",\"2135\",\"LGA\",\"DCA\",-7.00,-24.00,0.00,\"\",0.00,65.00,43.00,214.00,,,,,,\n2015,5,23,\"US\",\"2136\",\"LGA\",\"BOS\",4.00,12.00,0.00,\"\",0.00,86.00,37.00,184.00,,,,,,\n2015,5,23,\"US\",\"2145\",\"DCA\",\"LGA\",-5.00,-10.00,0.00,\"\",0.00,83.00,46.00,214.00,,,,,,\n2015,5,23,\"US\",\"2145\",\"LGA\",\"BOS\",-2.00,-14.00,0.00,\"\",0.00,62.00,39.00,184.00,,,,,,\n2015,5,23,\"US\",\"2146\",\"LGA\",\"DCA\",-8.00,-7.00,0.00,\"\",0.00,85.00,42.00,214.00,,,,,,\n2015,5,23,\"US\",\"2156\",\"DCA\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,60.00,39.00,214.00,,,,,,\n2015,5,23,\"US\",\"2156\",\"LGA\",\"DCA\",-3.00,-13.00,0.00,\"\",0.00,65.00,42.00,214.00,,,,,,\n2015,5,24,\"US\",\"402\",\"LGA\",\"PHL\",-5.00,-14.00,0.00,\"\",0.00,64.00,44.00,96.00,,,,,,\n2015,5,24,\"US\",\"425\",\"JFK\",\"CLT\",-1.00,-5.00,0.00,\"\",0.00,124.00,79.00,541.00,,,,,,\n2015,5,24,\"US\",\"425\",\"PHX\",\"JFK\",0.00,-14.00,0.00,\"\",0.00,289.00,259.00,2153.00,,,,,,\n2015,5,24,\"US\",\"433\",\"JFK\",\"PHX\",-6.00,1.00,0.00,\"\",0.00,345.00,285.00,2153.00,,,,,,\n2015,5,24,\"US\",\"513\",\"LGA\",\"CLT\",-6.00,-2.00,0.00,\"\",0.00,121.00,78.00,544.00,,,,,,\n2015,5,24,\"US\",\"613\",\"BUF\",\"CLT\",190.00,182.00,0.00,\"\",0.00,104.00,80.00,546.00,182.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"US\",\"622\",\"PHX\",\"JFK\",0.00,-11.00,0.00,\"\",0.00,279.00,261.00,2153.00,,,,,,\n2015,5,24,\"US\",\"632\",\"PHX\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,277.00,261.00,2153.00,,,,,,\n2015,5,24,\"US\",\"639\",\"CLT\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,106.00,81.00,541.00,,,,,,\n2015,5,24,\"US\",\"639\",\"JFK\",\"PHX\",4.00,-28.00,0.00,\"\",0.00,302.00,281.00,2153.00,,,,,,\n2015,5,24,\"US\",\"654\",\"JFK\",\"PHX\",-5.00,-30.00,0.00,\"\",0.00,299.00,278.00,2153.00,,,,,,\n2015,5,24,\"US\",\"793\",\"JFK\",\"CLT\",-3.00,-14.00,0.00,\"\",0.00,110.00,78.00,541.00,,,,,,\n2015,5,24,\"US\",\"809\",\"PHL\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,52.00,29.00,96.00,,,,,,\n2015,5,24,\"US\",\"833\",\"ALB\",\"CLT\",-2.00,-32.00,0.00,\"\",0.00,112.00,89.00,646.00,,,,,,\n2015,5,24,\"US\",\"834\",\"LGA\",\"PHL\",-7.00,-26.00,0.00,\"\",0.00,55.00,31.00,96.00,,,,,,\n2015,5,24,\"US\",\"852\",\"LGA\",\"CLT\",-10.00,-15.00,0.00,\"\",0.00,117.00,83.00,544.00,,,,,,\n2015,5,24,\"US\",\"890\",\"LGA\",\"CLT\",-10.00,-36.00,0.00,\"\",0.00,99.00,77.00,544.00,,,,,,\n2015,5,24,\"US\",\"893\",\"LGA\",\"CLT\",9.00,-16.00,0.00,\"\",0.00,102.00,79.00,544.00,,,,,,\n2015,5,24,\"US\",\"894\",\"LGA\",\"CLT\",-9.00,-27.00,0.00,\"\",0.00,105.00,81.00,544.00,,,,,,\n2015,5,24,\"US\",\"896\",\"CLT\",\"ROC\",-4.00,-9.00,0.00,\"\",0.00,97.00,82.00,573.00,,,,,,\n2015,5,24,\"US\",\"1715\",\"SYR\",\"CLT\",-1.00,-9.00,0.00,\"\",0.00,120.00,93.00,603.00,,,,,,\n2015,5,24,\"US\",\"1740\",\"CLT\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,105.00,87.00,544.00,,,,,,\n2015,5,24,\"US\",\"1750\",\"ALB\",\"CLT\",-4.00,-19.00,0.00,\"\",0.00,116.00,93.00,646.00,,,,,,\n2015,5,24,\"US\",\"1760\",\"LGA\",\"CLT\",-9.00,-41.00,0.00,\"\",0.00,90.00,76.00,544.00,,,,,,\n2015,5,29,\"US\",\"2133\",\"LGA\",\"DCA\",-6.00,43.00,0.00,\"\",0.00,126.00,50.00,214.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,29,\"US\",\"2135\",\"DCA\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,73.00,38.00,214.00,,,,,,\n2015,5,29,\"US\",\"2135\",\"LGA\",\"DCA\",-8.00,-15.00,0.00,\"\",0.00,68.00,44.00,214.00,,,,,,\n2015,5,29,\"US\",\"2136\",\"BOS\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,60.00,44.00,184.00,,,,,,\n2015,5,29,\"US\",\"2136\",\"LGA\",\"BOS\",-10.00,-14.00,0.00,\"\",0.00,74.00,35.00,184.00,,,,,,\n2015,5,29,\"US\",\"2137\",\"DCA\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,58.00,39.00,214.00,,,,,,\n2015,5,29,\"US\",\"2137\",\"LGA\",\"DCA\",-6.00,-13.00,0.00,\"\",0.00,78.00,46.00,214.00,,,,,,\n2015,5,29,\"US\",\"2141\",\"BOS\",\"LGA\",23.00,10.00,0.00,\"\",0.00,71.00,40.00,184.00,,,,,,\n2015,5,29,\"US\",\"2141\",\"LGA\",\"BOS\",-2.00,36.00,0.00,\"\",0.00,115.00,33.00,184.00,0.00,0.00,36.00,0.00,0.00,\n2015,5,29,\"US\",\"2143\",\"DCA\",\"LGA\",26.00,15.00,0.00,\"\",0.00,78.00,41.00,214.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,29,\"US\",\"2143\",\"LGA\",\"DCA\",8.00,-4.00,0.00,\"\",0.00,69.00,48.00,214.00,,,,,,\n2015,5,29,\"US\",\"2144\",\"DCA\",\"LGA\",-7.00,-16.00,0.00,\"\",0.00,70.00,38.00,214.00,,,,,,\n2015,5,29,\"US\",\"2144\",\"LGA\",\"DCA\",-7.00,-11.00,0.00,\"\",0.00,78.00,42.00,214.00,,,,,,\n2015,5,29,\"US\",\"2145\",\"DCA\",\"LGA\",-8.00,-19.00,0.00,\"\",0.00,77.00,46.00,214.00,,,,,,\n2015,5,29,\"US\",\"2145\",\"LGA\",\"DCA\",-1.00,5.00,0.00,\"\",0.00,89.00,58.00,214.00,,,,,,\n2015,5,29,\"US\",\"2146\",\"BOS\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,66.00,40.00,184.00,,,,,,\n2015,5,29,\"US\",\"2146\",\"LGA\",\"BOS\",-5.00,-3.00,0.00,\"\",0.00,70.00,40.00,184.00,,,,,,\n2015,5,29,\"US\",\"2147\",\"DCA\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,68.00,40.00,214.00,,,,,,\n2015,5,29,\"US\",\"2147\",\"LGA\",\"DCA\",-6.00,-10.00,0.00,\"\",0.00,78.00,45.00,214.00,,,,,,\n2015,5,29,\"US\",\"2148\",\"BOS\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,69.00,47.00,184.00,,,,,,\n2015,5,29,\"US\",\"2151\",\"LGA\",\"BOS\",0.00,-10.00,0.00,\"\",0.00,58.00,32.00,184.00,,,,,,\n2015,5,29,\"US\",\"2152\",\"BOS\",\"LGA\",,,1.00,\"A\",0.00,,,184.00,,,,,,\n2015,5,29,\"US\",\"2152\",\"LGA\",\"BOS\",-6.00,-6.00,0.00,\"\",0.00,68.00,37.00,184.00,,,,,,\n2015,5,29,\"US\",\"2153\",\"DCA\",\"LGA\",3.00,-9.00,0.00,\"\",0.00,77.00,44.00,214.00,,,,,,\n2015,5,29,\"US\",\"2153\",\"LGA\",\"DCA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,29,\"US\",\"2154\",\"DCA\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,57.00,37.00,214.00,,,,,,\n2015,5,29,\"US\",\"2154\",\"LGA\",\"DCA\",-2.00,-5.00,0.00,\"\",0.00,73.00,45.00,214.00,,,,,,\n2015,5,29,\"US\",\"2155\",\"DCA\",\"LGA\",-2.00,-29.00,0.00,\"\",0.00,68.00,41.00,214.00,,,,,,\n2015,5,29,\"US\",\"2156\",\"BOS\",\"LGA\",25.00,1.00,0.00,\"\",0.00,59.00,39.00,184.00,,,,,,\n2015,5,29,\"US\",\"2156\",\"LGA\",\"BOS\",-3.00,-14.00,0.00,\"\",0.00,65.00,33.00,184.00,,,,,,\n2015,5,29,\"US\",\"2157\",\"DCA\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,77.00,43.00,214.00,,,,,,\n2015,5,29,\"US\",\"2157\",\"LGA\",\"DCA\",-4.00,18.00,0.00,\"\",0.00,104.00,59.00,214.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,29,\"US\",\"2158\",\"BOS\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,75.00,47.00,184.00,,,,,,\n2015,5,29,\"US\",\"2158\",\"LGA\",\"BOS\",-6.00,10.00,0.00,\"\",0.00,80.00,35.00,184.00,,,,,,\n2015,5,29,\"US\",\"2162\",\"BOS\",\"LGA\",18.00,-5.00,0.00,\"\",0.00,61.00,45.00,184.00,,,,,,\n2015,5,29,\"US\",\"2162\",\"LGA\",\"BOS\",,,1.00,\"A\",0.00,,,184.00,,,,,,\n2015,5,29,\"US\",\"2163\",\"DCA\",\"LGA\",-7.00,-2.00,0.00,\"\",0.00,88.00,41.00,214.00,,,,,,\n2015,5,29,\"US\",\"2164\",\"DCA\",\"LGA\",-9.00,-16.00,0.00,\"\",0.00,80.00,43.00,214.00,,,,,,\n2015,5,29,\"US\",\"2164\",\"LGA\",\"DCA\",137.00,141.00,0.00,\"\",0.00,87.00,59.00,214.00,0.00,0.00,4.00,0.00,137.00,\n2015,5,29,\"US\",\"2165\",\"BOS\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,64.00,43.00,184.00,,,,,,\n2015,5,29,\"US\",\"2167\",\"DCA\",\"LGA\",13.00,-2.00,0.00,\"\",0.00,71.00,40.00,214.00,,,,,,\n2015,5,29,\"US\",\"2167\",\"LGA\",\"DCA\",0.00,-12.00,0.00,\"\",0.00,70.00,47.00,214.00,,,,,,\n2015,5,29,\"US\",\"2168\",\"BOS\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,76.00,42.00,184.00,,,,,,\n2015,5,29,\"US\",\"2168\",\"LGA\",\"BOS\",-3.00,-6.00,0.00,\"\",0.00,68.00,32.00,184.00,,,,,,\n2015,5,29,\"US\",\"2171\",\"BOS\",\"LGA\",4.00,11.00,0.00,\"\",0.00,87.00,49.00,184.00,,,,,,\n2015,5,29,\"US\",\"2172\",\"BOS\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,70.00,51.00,184.00,,,,,,\n2015,5,29,\"US\",\"2172\",\"LGA\",\"BOS\",-4.00,-4.00,0.00,\"\",0.00,73.00,40.00,184.00,,,,,,\n2015,5,29,\"US\",\"2174\",\"DCA\",\"LGA\",125.00,92.00,0.00,\"\",0.00,57.00,41.00,214.00,0.00,0.00,0.00,0.00,92.00,\n2015,5,29,\"US\",\"2174\",\"LGA\",\"DCA\",86.00,64.00,0.00,\"\",0.00,57.00,41.00,214.00,64.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"US\",\"425\",\"JFK\",\"CLT\",-4.00,-3.00,0.00,\"\",0.00,129.00,80.00,541.00,,,,,,\n2015,5,30,\"US\",\"425\",\"PHX\",\"JFK\",-5.00,21.00,0.00,\"\",0.00,329.00,272.00,2153.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,30,\"US\",\"433\",\"JFK\",\"PHX\",-4.00,-47.00,0.00,\"\",0.00,295.00,275.00,2153.00,,,,,,\n2015,5,30,\"US\",\"445\",\"JFK\",\"CLT\",-2.00,-14.00,0.00,\"\",0.00,104.00,75.00,541.00,,,,,,\n2015,5,30,\"US\",\"622\",\"PHX\",\"JFK\",-1.00,14.00,0.00,\"\",0.00,305.00,277.00,2153.00,,,,,,\n2015,5,30,\"US\",\"632\",\"PHX\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,274.00,255.00,2153.00,,,,,,\n2015,5,30,\"US\",\"639\",\"CLT\",\"JFK\",66.00,58.00,0.00,\"\",0.00,108.00,82.00,541.00,4.00,0.00,0.00,0.00,54.00,\n2015,5,30,\"US\",\"639\",\"JFK\",\"PHX\",82.00,64.00,0.00,\"\",0.00,316.00,272.00,2153.00,22.00,0.00,0.00,0.00,42.00,\n2015,5,30,\"US\",\"654\",\"JFK\",\"PHX\",-6.00,-34.00,0.00,\"\",0.00,296.00,270.00,2153.00,,,,,,\n2015,5,28,\"US\",\"654\",\"JFK\",\"PHX\",37.00,26.00,0.00,\"\",0.00,313.00,289.00,2153.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"US\",\"756\",\"BUF\",\"CLT\",-6.00,-2.00,0.00,\"\",0.00,115.00,87.00,546.00,,,,,,\n2015,5,28,\"US\",\"809\",\"PHL\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,56.00,27.00,96.00,,,,,,\n2015,5,28,\"US\",\"821\",\"ROC\",\"CLT\",-4.00,-11.00,0.00,\"\",0.00,115.00,94.00,573.00,,,,,,\n2015,5,28,\"US\",\"826\",\"LGA\",\"CLT\",2.00,0.00,0.00,\"\",0.00,115.00,80.00,544.00,,,,,,\n2015,5,28,\"US\",\"853\",\"CLT\",\"BUF\",-2.00,2.00,0.00,\"\",0.00,109.00,79.00,546.00,,,,,,\n2015,5,28,\"US\",\"873\",\"JFK\",\"CLT\",-5.00,-17.00,0.00,\"\",0.00,112.00,80.00,541.00,,,,,,\n2015,5,28,\"US\",\"876\",\"SYR\",\"CLT\",-4.00,-20.00,0.00,\"\",0.00,112.00,95.00,603.00,,,,,,\n2015,5,28,\"US\",\"890\",\"LGA\",\"CLT\",1.00,-16.00,0.00,\"\",0.00,108.00,79.00,544.00,,,,,,\n2015,5,28,\"US\",\"896\",\"CLT\",\"ROC\",-3.00,-5.00,0.00,\"\",0.00,100.00,79.00,573.00,,,,,,\n2015,5,28,\"US\",\"1740\",\"CLT\",\"LGA\",15.00,18.00,0.00,\"\",0.00,116.00,79.00,544.00,0.00,0.00,3.00,15.00,0.00,\n2015,5,28,\"US\",\"1750\",\"ALB\",\"CLT\",-3.00,-14.00,0.00,\"\",0.00,120.00,100.00,646.00,,,,,,\n2015,5,28,\"US\",\"1781\",\"LGA\",\"CLT\",-1.00,-20.00,0.00,\"\",0.00,106.00,83.00,544.00,,,,,,\n2015,5,28,\"US\",\"1810\",\"LGA\",\"CLT\",-6.00,-17.00,0.00,\"\",0.00,111.00,79.00,544.00,,,,,,\n2015,5,28,\"US\",\"1815\",\"LGA\",\"CLT\",-6.00,-7.00,0.00,\"\",0.00,121.00,79.00,544.00,,,,,,\n2015,5,28,\"US\",\"1830\",\"CLT\",\"JFK\",-1.00,-19.00,0.00,\"\",0.00,89.00,75.00,541.00,,,,,,\n2015,5,28,\"US\",\"1849\",\"LGA\",\"CLT\",0.00,-7.00,0.00,\"\",0.00,126.00,85.00,544.00,,,,,,\n2015,5,28,\"US\",\"1851\",\"LGA\",\"CLT\",-3.00,-3.00,0.00,\"\",0.00,123.00,86.00,544.00,,,,,,\n2015,5,28,\"US\",\"1873\",\"BUF\",\"CLT\",12.00,1.00,0.00,\"\",0.00,97.00,83.00,546.00,,,,,,\n2015,5,28,\"US\",\"1885\",\"CLT\",\"BUF\",31.00,45.00,0.00,\"\",0.00,115.00,81.00,546.00,31.00,0.00,14.00,0.00,0.00,\n2015,5,28,\"US\",\"1898\",\"CLT\",\"JFK\",17.00,9.00,0.00,\"\",0.00,102.00,79.00,541.00,,,,,,\n2015,5,28,\"US\",\"1908\",\"LGA\",\"CLT\",-2.00,-7.00,0.00,\"\",0.00,117.00,83.00,544.00,,,,,,\n2015,5,28,\"US\",\"1910\",\"CLT\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,99.00,78.00,544.00,,,,,,\n2015,5,28,\"US\",\"1916\",\"SYR\",\"CLT\",-7.00,-22.00,0.00,\"\",0.00,107.00,92.00,603.00,,,,,,\n2015,5,28,\"US\",\"1919\",\"JFK\",\"CLT\",9.00,11.00,0.00,\"\",0.00,123.00,82.00,541.00,,,,,,\n2015,5,28,\"US\",\"1923\",\"ALB\",\"CLT\",-5.00,-15.00,0.00,\"\",0.00,132.00,94.00,646.00,,,,,,\n2015,5,28,\"US\",\"1933\",\"LGA\",\"PHL\",,,1.00,\"B\",0.00,,,96.00,,,,,,\n2015,5,28,\"US\",\"1940\",\"CLT\",\"ALB\",-7.00,-12.00,0.00,\"\",0.00,113.00,91.00,646.00,,,,,,\n2015,5,28,\"US\",\"1942\",\"CLT\",\"BUF\",-5.00,-15.00,0.00,\"\",0.00,90.00,78.00,546.00,,,,,,\n2015,5,28,\"US\",\"1951\",\"LGA\",\"CLT\",99.00,94.00,0.00,\"\",0.00,117.00,80.00,544.00,94.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"US\",\"1952\",\"CLT\",\"BUF\",-7.00,-11.00,0.00,\"\",0.00,94.00,80.00,546.00,,,,,,\n2015,5,28,\"US\",\"1954\",\"CLT\",\"LGA\",-4.00,0.00,0.00,\"\",0.00,112.00,82.00,544.00,,,,,,\n2015,5,28,\"US\",\"1971\",\"CLT\",\"SYR\",-5.00,-15.00,0.00,\"\",0.00,95.00,83.00,603.00,,,,,,\n2015,5,28,\"US\",\"1977\",\"BUF\",\"CLT\",-10.00,-16.00,0.00,\"\",0.00,103.00,83.00,546.00,,,,,,\n2015,5,28,\"US\",\"1981\",\"CLT\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,94.00,77.00,544.00,,,,,,\n2015,5,28,\"US\",\"1983\",\"BUF\",\"CLT\",-9.00,-18.00,0.00,\"\",0.00,103.00,83.00,546.00,,,,,,\n2015,5,28,\"US\",\"1988\",\"CLT\",\"ALB\",-7.00,-10.00,0.00,\"\",0.00,122.00,95.00,646.00,,,,,,\n2015,5,28,\"US\",\"2017\",\"CLT\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,105.00,80.00,541.00,,,,,,\n2015,5,28,\"US\",\"2036\",\"CLT\",\"SYR\",-1.00,-14.00,0.00,\"\",0.00,97.00,85.00,603.00,,,,,,\n2015,5,28,\"US\",\"2042\",\"CLT\",\"JFK\",-4.00,-11.00,0.00,\"\",0.00,99.00,77.00,541.00,,,,,,\n2015,5,28,\"US\",\"2050\",\"CLT\",\"LGA\",-2.00,8.00,0.00,\"\",0.00,118.00,87.00,544.00,,,,,,\n2015,5,28,\"US\",\"2060\",\"CLT\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,95.00,77.00,544.00,,,,,,\n2015,5,28,\"US\",\"2062\",\"CLT\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,108.00,80.00,544.00,,,,,,\n2015,5,28,\"US\",\"2064\",\"CLT\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,109.00,78.00,544.00,,,,,,\n2015,5,28,\"US\",\"2066\",\"CLT\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,107.00,80.00,544.00,,,,,,\n2015,5,28,\"US\",\"2068\",\"CLT\",\"LGA\",6.00,1.00,0.00,\"\",0.00,102.00,80.00,544.00,,,,,,\n2015,5,28,\"US\",\"2069\",\"JFK\",\"CLT\",-4.00,-21.00,0.00,\"\",0.00,104.00,76.00,541.00,,,,,,\n2015,5,28,\"US\",\"2115\",\"LGA\",\"DCA\",-2.00,-4.00,0.00,\"\",0.00,61.00,42.00,214.00,,,,,,\n2015,5,28,\"US\",\"2117\",\"DCA\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,52.00,38.00,214.00,,,,,,\n2015,5,28,\"US\",\"2118\",\"BOS\",\"LGA\",-4.00,11.00,0.00,\"\",0.00,96.00,41.00,184.00,,,,,,\n2015,5,28,\"US\",\"2118\",\"LGA\",\"BOS\",-2.00,-19.00,0.00,\"\",0.00,61.00,36.00,184.00,,,,,,\n2015,5,28,\"US\",\"2121\",\"BOS\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,64.00,44.00,184.00,,,,,,\n2015,5,28,\"US\",\"2121\",\"LGA\",\"BOS\",-6.00,-2.00,0.00,\"\",0.00,82.00,44.00,184.00,,,,,,\n2015,5,28,\"US\",\"2122\",\"LGA\",\"BOS\",25.00,28.00,0.00,\"\",0.00,77.00,43.00,184.00,25.00,0.00,3.00,0.00,0.00,\n2015,5,28,\"US\",\"2123\",\"LGA\",\"DCA\",-6.00,-12.00,0.00,\"\",0.00,64.00,43.00,214.00,,,,,,\n2015,5,28,\"US\",\"2125\",\"LGA\",\"DCA\",-8.00,-14.00,0.00,\"\",0.00,78.00,42.00,214.00,,,,,,\n2015,5,28,\"US\",\"2126\",\"BOS\",\"LGA\",-8.00,-15.00,0.00,\"\",0.00,74.00,47.00,184.00,,,,,,\n2015,5,28,\"US\",\"2126\",\"LGA\",\"BOS\",-5.00,-12.00,0.00,\"\",0.00,55.00,39.00,184.00,,,,,,\n2015,5,28,\"US\",\"2128\",\"LGA\",\"BOS\",1.00,10.00,0.00,\"\",0.00,82.00,41.00,184.00,,,,,,\n2015,5,28,\"US\",\"2131\",\"BOS\",\"LGA\",42.00,38.00,0.00,\"\",0.00,77.00,46.00,184.00,0.00,0.00,38.00,0.00,0.00,\n2015,5,28,\"US\",\"2131\",\"LGA\",\"BOS\",57.00,51.00,0.00,\"\",0.00,66.00,41.00,184.00,0.00,0.00,0.00,0.00,51.00,\n2015,5,28,\"US\",\"2133\",\"DCA\",\"LGA\",-7.00,0.00,0.00,\"\",0.00,97.00,47.00,214.00,,,,,,\n2015,5,28,\"US\",\"2133\",\"LGA\",\"DCA\",-6.00,-10.00,0.00,\"\",0.00,73.00,44.00,214.00,,,,,,\n2015,5,28,\"US\",\"2135\",\"DCA\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,81.00,42.00,214.00,,,,,,\n2015,5,28,\"US\",\"2135\",\"LGA\",\"DCA\",12.00,11.00,0.00,\"\",0.00,74.00,46.00,214.00,,,,,,\n2015,5,28,\"US\",\"2136\",\"BOS\",\"LGA\",-6.00,-18.00,0.00,\"\",0.00,64.00,43.00,184.00,,,,,,\n2015,5,28,\"US\",\"2136\",\"LGA\",\"BOS\",-3.00,-5.00,0.00,\"\",0.00,76.00,40.00,184.00,,,,,,\n2015,5,28,\"US\",\"2137\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,28,\"US\",\"2137\",\"LGA\",\"DCA\",-1.00,8.00,0.00,\"\",0.00,94.00,49.00,214.00,,,,,,\n2015,5,28,\"US\",\"2141\",\"BOS\",\"LGA\",85.00,81.00,0.00,\"\",0.00,80.00,47.00,184.00,81.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"US\",\"2141\",\"LGA\",\"BOS\",41.00,100.00,0.00,\"\",0.00,136.00,41.00,184.00,12.00,0.00,59.00,0.00,29.00,\n2015,5,28,\"US\",\"2143\",\"DCA\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,71.00,43.00,214.00,,,,,,\n2015,5,28,\"US\",\"2143\",\"LGA\",\"DCA\",-7.00,6.00,0.00,\"\",0.00,94.00,49.00,214.00,,,,,,\n2015,5,28,\"US\",\"2144\",\"DCA\",\"LGA\",-9.00,-16.00,0.00,\"\",0.00,72.00,42.00,214.00,,,,,,\n2015,5,28,\"US\",\"2144\",\"LGA\",\"DCA\",-4.00,4.00,0.00,\"\",0.00,90.00,42.00,214.00,,,,,,\n2015,5,28,\"US\",\"2145\",\"DCA\",\"LGA\",-4.00,2.00,0.00,\"\",0.00,94.00,52.00,214.00,,,,,,\n2015,5,28,\"US\",\"2145\",\"LGA\",\"DCA\",-1.00,31.00,0.00,\"\",0.00,115.00,55.00,214.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,28,\"US\",\"2146\",\"BOS\",\"LGA\",20.00,23.00,0.00,\"\",0.00,85.00,46.00,184.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,28,\"US\",\"2146\",\"LGA\",\"BOS\",38.00,35.00,0.00,\"\",0.00,65.00,39.00,184.00,35.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"US\",\"2147\",\"DCA\",\"LGA\",10.00,-1.00,0.00,\"\",0.00,77.00,47.00,214.00,,,,,,\n2015,5,28,\"US\",\"2147\",\"LGA\",\"DCA\",-4.00,-9.00,0.00,\"\",0.00,77.00,45.00,214.00,,,,,,\n2015,5,28,\"US\",\"2148\",\"BOS\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,69.00,41.00,184.00,,,,,,\n2015,5,28,\"US\",\"2151\",\"LGA\",\"BOS\",71.00,64.00,0.00,\"\",0.00,61.00,39.00,184.00,0.00,0.00,0.00,0.00,64.00,\n2015,5,28,\"US\",\"2152\",\"BOS\",\"LGA\",-5.00,-2.00,0.00,\"\",0.00,84.00,48.00,184.00,,,,,,\n2015,5,28,\"US\",\"2152\",\"LGA\",\"BOS\",-6.00,-13.00,0.00,\"\",0.00,61.00,42.00,184.00,,,,,,\n2015,5,28,\"US\",\"2153\",\"DCA\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,79.00,60.00,214.00,,,,,,\n2015,5,28,\"US\",\"2153\",\"LGA\",\"DCA\",-8.00,13.00,0.00,\"\",0.00,101.00,58.00,214.00,,,,,,\n2015,5,28,\"US\",\"2154\",\"DCA\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,68.00,43.00,214.00,,,,,,\n2015,5,28,\"US\",\"2154\",\"LGA\",\"DCA\",-1.00,8.00,0.00,\"\",0.00,85.00,43.00,214.00,,,,,,\n2015,5,28,\"US\",\"2155\",\"DCA\",\"LGA\",41.00,24.00,0.00,\"\",0.00,78.00,42.00,214.00,0.00,10.00,0.00,0.00,14.00,\n2015,5,28,\"US\",\"2156\",\"BOS\",\"LGA\",25.00,18.00,0.00,\"\",0.00,76.00,44.00,184.00,0.00,2.00,0.00,0.00,16.00,\n2015,5,28,\"US\",\"2156\",\"LGA\",\"BOS\",11.00,36.00,0.00,\"\",0.00,101.00,39.00,184.00,0.00,0.00,25.00,0.00,11.00,\n2015,5,28,\"US\",\"2157\",\"DCA\",\"LGA\",-5.00,4.00,0.00,\"\",0.00,97.00,45.00,214.00,,,,,,\n2015,5,28,\"US\",\"2157\",\"LGA\",\"DCA\",-1.00,12.00,0.00,\"\",0.00,95.00,62.00,214.00,,,,,,\n2015,5,28,\"US\",\"2158\",\"BOS\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,62.00,40.00,184.00,,,,,,\n2015,5,28,\"US\",\"2158\",\"LGA\",\"BOS\",-7.00,-8.00,0.00,\"\",0.00,63.00,39.00,184.00,,,,,,\n2015,5,28,\"US\",\"2162\",\"BOS\",\"LGA\",-8.00,-23.00,0.00,\"\",0.00,69.00,43.00,184.00,,,,,,\n2015,5,28,\"US\",\"2162\",\"LGA\",\"BOS\",-8.00,-18.00,0.00,\"\",0.00,62.00,39.00,184.00,,,,,,\n2015,5,28,\"US\",\"2163\",\"DCA\",\"LGA\",-7.00,6.00,0.00,\"\",0.00,96.00,47.00,214.00,,,,,,\n2015,5,28,\"US\",\"2164\",\"DCA\",\"LGA\",2.00,2.00,0.00,\"\",0.00,87.00,53.00,214.00,,,,,,\n2015,5,28,\"US\",\"2164\",\"LGA\",\"DCA\",-2.00,-19.00,0.00,\"\",0.00,66.00,40.00,214.00,,,,,,\n2015,5,28,\"US\",\"2165\",\"BOS\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,75.00,43.00,184.00,,,,,,\n2015,5,28,\"US\",\"2167\",\"DCA\",\"LGA\",29.00,64.00,0.00,\"\",0.00,121.00,40.00,214.00,0.00,25.00,35.00,0.00,4.00,\n2015,5,28,\"US\",\"2167\",\"LGA\",\"DCA\",59.00,81.00,0.00,\"\",0.00,104.00,51.00,214.00,0.00,0.00,22.00,0.00,59.00,\n2015,5,28,\"US\",\"2168\",\"BOS\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,74.00,48.00,184.00,,,,,,\n2015,5,28,\"US\",\"2168\",\"LGA\",\"BOS\",-8.00,-9.00,0.00,\"\",0.00,70.00,39.00,184.00,,,,,,\n2015,5,28,\"US\",\"2171\",\"BOS\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,79.00,58.00,184.00,,,,,,\n2015,5,28,\"US\",\"2172\",\"BOS\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,69.00,44.00,184.00,,,,,,\n2015,5,28,\"US\",\"2172\",\"LGA\",\"BOS\",-5.00,-13.00,0.00,\"\",0.00,65.00,38.00,184.00,,,,,,\n2015,5,28,\"US\",\"2174\",\"DCA\",\"LGA\",28.00,8.00,0.00,\"\",0.00,70.00,46.00,214.00,,,,,,\n2015,5,28,\"US\",\"2174\",\"LGA\",\"DCA\",8.00,14.00,0.00,\"\",0.00,85.00,40.00,214.00,,,,,,\n2015,5,29,\"US\",\"413\",\"JFK\",\"CLT\",-5.00,-8.00,0.00,\"\",0.00,113.00,80.00,541.00,,,,,,\n2015,5,29,\"US\",\"425\",\"JFK\",\"CLT\",-6.00,-5.00,0.00,\"\",0.00,129.00,91.00,541.00,,,,,,\n2015,5,29,\"US\",\"425\",\"PHX\",\"JFK\",-2.00,-12.00,0.00,\"\",0.00,293.00,258.00,2153.00,,,,,,\n2015,5,29,\"US\",\"433\",\"JFK\",\"PHX\",0.00,1.00,0.00,\"\",0.00,339.00,281.00,2153.00,,,,,,\n2015,5,31,\"US\",\"2128\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,31,\"US\",\"2133\",\"DCA\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,76.00,45.00,214.00,,,,,,\n2015,5,31,\"US\",\"2133\",\"LGA\",\"DCA\",-5.00,-11.00,0.00,\"\",0.00,71.00,47.00,214.00,,,,,,\n2015,5,31,\"US\",\"2135\",\"DCA\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,63.00,42.00,214.00,,,,,,\n2015,5,31,\"US\",\"2135\",\"LGA\",\"DCA\",-3.00,9.00,0.00,\"\",0.00,87.00,48.00,214.00,,,,,,\n2015,5,31,\"US\",\"2136\",\"BOS\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,71.00,42.00,184.00,,,,,,\n2015,5,31,\"US\",\"2137\",\"BOS\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,61.00,42.00,184.00,,,,,,\n2015,5,31,\"US\",\"2143\",\"DCA\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,81.00,44.00,214.00,,,,,,\n2015,5,31,\"US\",\"2143\",\"LGA\",\"DCA\",-1.00,89.00,0.00,\"\",0.00,171.00,58.00,214.00,0.00,0.00,89.00,0.00,0.00,\n2015,5,31,\"US\",\"2144\",\"LGA\",\"DCA\",-8.00,-21.00,0.00,\"\",0.00,69.00,41.00,214.00,,,,,,\n2015,5,31,\"US\",\"2145\",\"DCA\",\"LGA\",29.00,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,31,\"US\",\"2145\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,31,\"US\",\"2146\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,31,\"US\",\"2146\",\"LGA\",\"BOS\",-5.00,37.00,0.00,\"\",0.00,110.00,64.00,184.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,31,\"US\",\"2147\",\"LGA\",\"DCA\",-1.00,-15.00,0.00,\"\",0.00,68.00,46.00,214.00,,,,,,\n2015,5,31,\"US\",\"2153\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,31,\"US\",\"2153\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,31,\"US\",\"2154\",\"DCA\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,70.00,43.00,214.00,,,,,,\n2015,5,31,\"US\",\"2154\",\"LGA\",\"DCA\",-2.00,-11.00,0.00,\"\",0.00,67.00,45.00,214.00,,,,,,\n2015,5,31,\"US\",\"2155\",\"DCA\",\"LGA\",37.00,11.00,0.00,\"\",0.00,69.00,47.00,214.00,,,,,,\n2015,5,31,\"US\",\"2156\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,31,\"US\",\"2157\",\"DCA\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,90.00,41.00,214.00,,,,,,\n2015,5,31,\"US\",\"2157\",\"LGA\",\"DCA\",8.00,57.00,0.00,\"\",0.00,131.00,61.00,214.00,8.00,0.00,49.00,0.00,0.00,\n2015,5,31,\"US\",\"2158\",\"BOS\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,73.00,46.00,184.00,,,,,,\n2015,5,31,\"US\",\"2164\",\"DCA\",\"LGA\",250.00,292.00,0.00,\"\",0.00,129.00,42.00,214.00,0.00,0.00,292.00,0.00,0.00,\n2015,5,31,\"US\",\"2164\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,31,\"US\",\"2167\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,31,\"US\",\"2167\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,31,\"US\",\"2168\",\"BOS\",\"LGA\",2.00,2.00,0.00,\"\",0.00,81.00,41.00,184.00,,,,,,\n2015,5,31,\"US\",\"2168\",\"LGA\",\"BOS\",-7.00,-4.00,0.00,\"\",0.00,74.00,40.00,184.00,,,,,,\n2015,5,31,\"US\",\"2174\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,31,\"US\",\"2174\",\"LGA\",\"DCA\",59.00,74.00,0.00,\"\",0.00,94.00,58.00,214.00,0.00,10.00,15.00,0.00,49.00,\n2015,5,1,\"VX\",\"11\",\"JFK\",\"SFO\",-2.00,-23.00,0.00,\"\",0.00,364.00,342.00,2586.00,,,,,,\n2015,5,1,\"VX\",\"12\",\"SFO\",\"JFK\",-6.00,-28.00,0.00,\"\",0.00,323.00,300.00,2586.00,,,,,,\n2015,5,1,\"VX\",\"22\",\"SFO\",\"JFK\",-7.00,-11.00,0.00,\"\",0.00,340.00,306.00,2586.00,,,,,,\n2015,5,1,\"VX\",\"23\",\"JFK\",\"SFO\",54.00,41.00,0.00,\"\",0.00,372.00,342.00,2586.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"VX\",\"251\",\"JFK\",\"LAS\",-5.00,1.00,0.00,\"\",0.00,346.00,300.00,2248.00,,,,,,\n2015,5,1,\"VX\",\"260\",\"LAS\",\"JFK\",-7.00,0.00,0.00,\"\",0.00,296.00,274.00,2248.00,,,,,,\n2015,5,1,\"VX\",\"26\",\"SFO\",\"JFK\",-3.00,-3.00,0.00,\"\",0.00,334.00,306.00,2586.00,,,,,,\n2015,5,1,\"VX\",\"27\",\"JFK\",\"SFO\",-4.00,-39.00,0.00,\"\",0.00,370.00,346.00,2586.00,,,,,,\n2015,5,1,\"VX\",\"29\",\"JFK\",\"SFO\",-6.00,-42.00,0.00,\"\",0.00,369.00,333.00,2586.00,,,,,,\n2015,5,1,\"VX\",\"34\",\"SFO\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,326.00,306.00,2586.00,,,,,,\n2015,5,1,\"VX\",\"399\",\"JFK\",\"LAX\",-2.00,-30.00,0.00,\"\",0.00,337.00,306.00,2475.00,,,,,,\n2015,5,1,\"VX\",\"404\",\"LAX\",\"JFK\",-3.00,3.00,0.00,\"\",0.00,331.00,306.00,2475.00,,,,,,\n2015,5,1,\"VX\",\"406\",\"LAX\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,316.00,303.00,2475.00,,,,,,\n2015,5,1,\"VX\",\"407\",\"JFK\",\"LAX\",-3.00,-6.00,0.00,\"\",0.00,367.00,322.00,2475.00,,,,,,\n2015,5,1,\"VX\",\"411\",\"JFK\",\"LAX\",-3.00,-23.00,0.00,\"\",0.00,345.00,323.00,2475.00,,,,,,\n2015,5,1,\"VX\",\"413\",\"JFK\",\"LAX\",-1.00,-32.00,0.00,\"\",0.00,360.00,325.00,2475.00,,,,,,\n2015,5,1,\"VX\",\"415\",\"JFK\",\"LAX\",-3.00,-26.00,0.00,\"\",0.00,357.00,318.00,2475.00,,,,,,\n2015,5,1,\"VX\",\"416\",\"LAX\",\"JFK\",-5.00,-14.00,0.00,\"\",0.00,311.00,294.00,2475.00,,,,,,\n2015,5,1,\"VX\",\"418\",\"LAX\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,309.00,294.00,2475.00,,,,,,\n2015,5,1,\"VX\",\"420\",\"LAX\",\"JFK\",-4.00,-9.00,0.00,\"\",0.00,320.00,303.00,2475.00,,,,,,\n2015,5,1,\"VX\",\"710\",\"DAL\",\"LGA\",21.00,28.00,0.00,\"\",0.00,192.00,169.00,1381.00,0.00,7.00,0.00,0.00,21.00,\n2015,5,1,\"VX\",\"715\",\"LGA\",\"DAL\",5.00,-28.00,0.00,\"\",0.00,207.00,177.00,1381.00,,,,,,\n2015,5,1,\"VX\",\"719\",\"LGA\",\"DAL\",-3.00,-30.00,0.00,\"\",0.00,213.00,184.00,1381.00,,,,,,\n2015,5,1,\"VX\",\"762\",\"DAL\",\"LGA\",-4.00,5.00,0.00,\"\",0.00,194.00,174.00,1381.00,,,,,,\n2015,5,1,\"VX\",\"766\",\"DAL\",\"LGA\",-8.00,-5.00,0.00,\"\",0.00,188.00,171.00,1381.00,,,,,,\n2015,5,1,\"VX\",\"769\",\"LGA\",\"DAL\",5.00,-32.00,0.00,\"\",0.00,203.00,176.00,1381.00,,,,,,\n2015,5,1,\"VX\",\"874\",\"DAL\",\"LGA\",-2.00,8.00,0.00,\"\",0.00,195.00,176.00,1381.00,,,,,,\n2015,5,1,\"VX\",\"879\",\"LGA\",\"DAL\",-1.00,-24.00,0.00,\"\",0.00,217.00,183.00,1381.00,,,,,,\n2015,5,10,\"VX\",\"11\",\"JFK\",\"SFO\",-5.00,-29.00,0.00,\"\",0.00,361.00,341.00,2586.00,,,,,,\n2015,5,10,\"VX\",\"12\",\"SFO\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,334.00,311.00,2586.00,,,,,,\n2015,5,10,\"VX\",\"22\",\"SFO\",\"JFK\",-1.00,5.00,0.00,\"\",0.00,350.00,320.00,2586.00,,,,,,\n2015,5,10,\"VX\",\"23\",\"JFK\",\"SFO\",-1.00,-14.00,0.00,\"\",0.00,372.00,346.00,2586.00,,,,,,\n2015,5,10,\"VX\",\"251\",\"JFK\",\"LAS\",-7.00,-29.00,0.00,\"\",0.00,318.00,290.00,2248.00,,,,,,\n2015,5,10,\"VX\",\"260\",\"LAS\",\"JFK\",-3.00,15.00,0.00,\"\",0.00,307.00,283.00,2248.00,0.00,15.00,0.00,0.00,0.00,\n2015,5,10,\"VX\",\"26\",\"SFO\",\"JFK\",0.00,15.00,0.00,\"\",0.00,349.00,324.00,2586.00,0.00,15.00,0.00,0.00,0.00,\n2015,5,10,\"VX\",\"27\",\"JFK\",\"SFO\",-1.00,-19.00,0.00,\"\",0.00,387.00,343.00,2586.00,,,,,,\n2015,5,10,\"VX\",\"29\",\"JFK\",\"SFO\",4.00,8.00,0.00,\"\",0.00,409.00,382.00,2586.00,,,,,,\n2015,5,10,\"VX\",\"34\",\"SFO\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,338.00,313.00,2586.00,,,,,,\n2015,5,10,\"VX\",\"399\",\"JFK\",\"LAX\",-12.00,-20.00,0.00,\"\",0.00,357.00,326.00,2475.00,,,,,,\n2015,5,10,\"VX\",\"404\",\"LAX\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,317.00,298.00,2475.00,,,,,,\n2015,5,10,\"VX\",\"406\",\"LAX\",\"JFK\",3.00,8.00,0.00,\"\",0.00,340.00,312.00,2475.00,,,,,,\n2015,5,10,\"VX\",\"407\",\"JFK\",\"LAX\",-7.00,-35.00,0.00,\"\",0.00,342.00,310.00,2475.00,,,,,,\n2015,5,10,\"VX\",\"411\",\"JFK\",\"LAX\",-2.00,0.00,0.00,\"\",0.00,367.00,325.00,2475.00,,,,,,\n2015,5,10,\"VX\",\"412\",\"LAX\",\"JFK\",11.00,0.00,0.00,\"\",0.00,319.00,303.00,2475.00,,,,,,\n2015,5,10,\"VX\",\"413\",\"JFK\",\"LAX\",12.00,7.00,0.00,\"\",0.00,386.00,326.00,2475.00,,,,,,\n2015,5,10,\"VX\",\"415\",\"JFK\",\"LAX\",7.00,11.00,0.00,\"\",0.00,384.00,340.00,2475.00,,,,,,\n2015,5,10,\"VX\",\"416\",\"LAX\",\"JFK\",11.00,14.00,0.00,\"\",0.00,323.00,287.00,2475.00,,,,,,\n2015,5,10,\"VX\",\"420\",\"LAX\",\"JFK\",1.00,13.00,0.00,\"\",0.00,337.00,318.00,2475.00,,,,,,\n2015,5,10,\"VX\",\"710\",\"DAL\",\"LGA\",18.00,47.00,0.00,\"\",0.00,214.00,175.00,1381.00,29.00,0.00,0.00,0.00,18.00,\n2015,5,10,\"VX\",\"715\",\"LGA\",\"DAL\",-9.00,29.00,0.00,\"\",0.00,278.00,206.00,1381.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,10,\"VX\",\"719\",\"LGA\",\"DAL\",57.00,35.00,0.00,\"\",0.00,218.00,189.00,1381.00,4.00,0.00,0.00,0.00,31.00,\n2015,5,10,\"VX\",\"766\",\"DAL\",\"LGA\",8.00,54.00,0.00,\"\",0.00,231.00,194.00,1381.00,0.00,34.00,20.00,0.00,0.00,\n2015,5,10,\"VX\",\"769\",\"LGA\",\"DAL\",31.00,36.00,0.00,\"\",0.00,245.00,183.00,1381.00,0.00,0.00,5.00,0.00,31.00,\n2015,5,10,\"VX\",\"874\",\"DAL\",\"LGA\",35.00,45.00,0.00,\"\",0.00,195.00,177.00,1381.00,27.00,0.00,0.00,0.00,18.00,\n2015,5,11,\"VX\",\"11\",\"JFK\",\"SFO\",-4.00,-20.00,0.00,\"\",0.00,369.00,347.00,2586.00,,,,,,\n2015,5,11,\"VX\",\"12\",\"SFO\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,329.00,307.00,2586.00,,,,,,\n2015,5,11,\"VX\",\"22\",\"SFO\",\"JFK\",11.00,-13.00,0.00,\"\",0.00,320.00,299.00,2586.00,,,,,,\n2015,5,11,\"VX\",\"23\",\"JFK\",\"SFO\",-2.00,-20.00,0.00,\"\",0.00,367.00,348.00,2586.00,,,,,,\n2015,5,11,\"VX\",\"251\",\"JFK\",\"LAS\",-2.00,-10.00,0.00,\"\",0.00,332.00,300.00,2248.00,,,,,,\n2015,5,11,\"VX\",\"260\",\"LAS\",\"JFK\",4.00,-9.00,0.00,\"\",0.00,276.00,256.00,2248.00,,,,,,\n2015,5,11,\"VX\",\"26\",\"SFO\",\"JFK\",124.00,119.00,0.00,\"\",0.00,329.00,293.00,2586.00,0.00,0.00,119.00,0.00,0.00,\n2015,5,11,\"VX\",\"27\",\"JFK\",\"SFO\",-3.00,1.00,0.00,\"\",0.00,409.00,374.00,2586.00,,,,,,\n2015,5,11,\"VX\",\"29\",\"JFK\",\"SFO\",-6.00,2.00,0.00,\"\",0.00,413.00,360.00,2586.00,,,,,,\n2015,5,11,\"VX\",\"34\",\"SFO\",\"JFK\",-3.00,8.00,0.00,\"\",0.00,346.00,323.00,2586.00,,,,,,\n2015,5,11,\"VX\",\"399\",\"JFK\",\"LAX\",-2.00,-4.00,0.00,\"\",0.00,363.00,327.00,2475.00,,,,,,\n2015,5,11,\"VX\",\"404\",\"LAX\",\"JFK\",1.00,-5.00,0.00,\"\",0.00,319.00,297.00,2475.00,,,,,,\n2015,5,11,\"VX\",\"406\",\"LAX\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,326.00,303.00,2475.00,,,,,,\n2015,5,11,\"VX\",\"407\",\"JFK\",\"LAX\",0.00,4.00,0.00,\"\",0.00,374.00,330.00,2475.00,,,,,,\n2015,5,11,\"VX\",\"411\",\"JFK\",\"LAX\",-12.00,-14.00,0.00,\"\",0.00,363.00,336.00,2475.00,,,,,,\n2015,5,11,\"VX\",\"412\",\"LAX\",\"JFK\",130.00,109.00,0.00,\"\",0.00,309.00,289.00,2475.00,0.00,0.00,109.00,0.00,0.00,\n2015,5,11,\"VX\",\"413\",\"JFK\",\"LAX\",41.00,14.00,0.00,\"\",0.00,364.00,329.00,2475.00,,,,,,\n2015,5,11,\"VX\",\"415\",\"JFK\",\"LAX\",-11.00,-11.00,0.00,\"\",0.00,380.00,345.00,2475.00,,,,,,\n2015,5,11,\"VX\",\"416\",\"LAX\",\"JFK\",70.00,64.00,0.00,\"\",0.00,314.00,295.00,2475.00,0.00,0.00,64.00,0.00,0.00,\n2015,5,11,\"VX\",\"420\",\"LAX\",\"JFK\",-8.00,-19.00,0.00,\"\",0.00,314.00,282.00,2475.00,,,,,,\n2015,5,11,\"VX\",\"710\",\"DAL\",\"LGA\",4.00,27.00,0.00,\"\",0.00,208.00,181.00,1381.00,0.00,23.00,0.00,0.00,4.00,\n2015,5,11,\"VX\",\"715\",\"LGA\",\"DAL\",13.00,-7.00,0.00,\"\",0.00,220.00,191.00,1381.00,,,,,,\n2015,5,11,\"VX\",\"719\",\"LGA\",\"DAL\",71.00,83.00,0.00,\"\",0.00,252.00,198.00,1381.00,12.00,0.00,0.00,0.00,71.00,\n2015,5,11,\"VX\",\"762\",\"DAL\",\"LGA\",-2.00,8.00,0.00,\"\",0.00,195.00,176.00,1381.00,,,,,,\n2015,5,11,\"VX\",\"766\",\"DAL\",\"LGA\",26.00,78.00,0.00,\"\",0.00,237.00,217.00,1381.00,2.00,52.00,0.00,0.00,24.00,\n2015,5,11,\"VX\",\"769\",\"LGA\",\"DAL\",12.00,-15.00,0.00,\"\",0.00,213.00,192.00,1381.00,,,,,,\n2015,5,11,\"VX\",\"874\",\"DAL\",\"LGA\",100.00,143.00,0.00,\"\",0.00,228.00,196.00,1381.00,0.00,43.00,100.00,0.00,0.00,\n2015,5,11,\"VX\",\"879\",\"LGA\",\"DAL\",-2.00,2.00,0.00,\"\",0.00,244.00,225.00,1381.00,,,,,,\n2015,5,12,\"VX\",\"11\",\"JFK\",\"SFO\",-8.00,23.00,0.00,\"\",0.00,416.00,371.00,2586.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,12,\"VX\",\"12\",\"SFO\",\"JFK\",12.00,-26.00,0.00,\"\",0.00,307.00,285.00,2586.00,,,,,,\n2015,5,12,\"VX\",\"22\",\"SFO\",\"JFK\",166.00,151.00,0.00,\"\",0.00,329.00,284.00,2586.00,0.00,0.00,151.00,0.00,0.00,\n2015,5,12,\"VX\",\"23\",\"JFK\",\"SFO\",3.00,5.00,0.00,\"\",0.00,387.00,365.00,2586.00,,,,,,\n2015,5,12,\"VX\",\"251\",\"JFK\",\"LAS\",-5.00,7.00,0.00,\"\",0.00,352.00,321.00,2248.00,,,,,,\n2015,5,12,\"VX\",\"260\",\"LAS\",\"JFK\",-10.00,-16.00,0.00,\"\",0.00,283.00,263.00,2248.00,,,,,,\n2015,5,12,\"VX\",\"26\",\"SFO\",\"JFK\",69.00,42.00,0.00,\"\",0.00,307.00,287.00,2586.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,12,\"VX\",\"27\",\"JFK\",\"SFO\",-6.00,-13.00,0.00,\"\",0.00,398.00,370.00,2586.00,,,,,,\n2015,5,12,\"VX\",\"29\",\"JFK\",\"SFO\",145.00,139.00,0.00,\"\",0.00,399.00,366.00,2586.00,0.00,0.00,0.00,0.00,139.00,\n2015,5,12,\"VX\",\"34\",\"SFO\",\"JFK\",-3.00,15.00,0.00,\"\",0.00,353.00,290.00,2586.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,12,\"VX\",\"399\",\"JFK\",\"LAX\",-8.00,32.00,0.00,\"\",0.00,405.00,351.00,2475.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,12,\"VX\",\"404\",\"LAX\",\"JFK\",0.00,9.00,0.00,\"\",0.00,334.00,300.00,2475.00,,,,,,\n2015,5,12,\"VX\",\"406\",\"LAX\",\"JFK\",158.00,120.00,0.00,\"\",0.00,297.00,276.00,2475.00,0.00,0.00,120.00,0.00,0.00,\n2015,5,12,\"VX\",\"407\",\"JFK\",\"LAX\",-7.00,13.00,0.00,\"\",0.00,390.00,355.00,2475.00,,,,,,\n2015,5,12,\"VX\",\"411\",\"JFK\",\"LAX\",-8.00,2.00,0.00,\"\",0.00,375.00,358.00,2475.00,,,,,,\n2015,5,12,\"VX\",\"412\",\"LAX\",\"JFK\",72.00,43.00,0.00,\"\",0.00,301.00,275.00,2475.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,12,\"VX\",\"413\",\"JFK\",\"LAX\",2.00,-5.00,0.00,\"\",0.00,384.00,352.00,2475.00,,,,,,\n2015,5,12,\"VX\",\"415\",\"JFK\",\"LAX\",132.00,150.00,0.00,\"\",0.00,398.00,354.00,2475.00,12.00,0.00,18.00,0.00,120.00,\n2015,5,12,\"VX\",\"416\",\"LAX\",\"JFK\",21.00,-3.00,0.00,\"\",0.00,296.00,271.00,2475.00,,,,,,\n2015,5,12,\"VX\",\"420\",\"LAX\",\"JFK\",-1.00,-14.00,0.00,\"\",0.00,312.00,277.00,2475.00,,,,,,\n2015,5,12,\"VX\",\"710\",\"DAL\",\"LGA\",-8.00,2.00,0.00,\"\",0.00,195.00,171.00,1381.00,,,,,,\n2015,5,12,\"VX\",\"715\",\"LGA\",\"DAL\",-6.00,-27.00,0.00,\"\",0.00,219.00,201.00,1381.00,,,,,,\n2015,5,12,\"VX\",\"719\",\"LGA\",\"DAL\",-8.00,-16.00,0.00,\"\",0.00,232.00,209.00,1381.00,,,,,,\n2015,5,12,\"VX\",\"762\",\"DAL\",\"LGA\",-3.00,-4.00,0.00,\"\",0.00,184.00,163.00,1381.00,,,,,,\n2015,5,12,\"VX\",\"766\",\"DAL\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,185.00,166.00,1381.00,,,,,,\n2015,5,12,\"VX\",\"769\",\"LGA\",\"DAL\",5.00,-4.00,0.00,\"\",0.00,231.00,208.00,1381.00,,,,,,\n2015,5,12,\"VX\",\"874\",\"DAL\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,190.00,167.00,1381.00,,,,,,\n2015,5,12,\"VX\",\"879\",\"LGA\",\"DAL\",-2.00,1.00,0.00,\"\",0.00,243.00,204.00,1381.00,,,,,,\n2015,5,29,\"US\",\"1740\",\"CLT\",\"LGA\",-5.00,-9.00,0.00,\"\",0.00,109.00,81.00,544.00,,,,,,\n2015,5,29,\"US\",\"1750\",\"ALB\",\"CLT\",89.00,90.00,0.00,\"\",0.00,132.00,110.00,646.00,89.00,0.00,1.00,0.00,0.00,\n2015,5,29,\"US\",\"1781\",\"LGA\",\"CLT\",-3.00,14.00,0.00,\"\",0.00,142.00,91.00,544.00,,,,,,\n2015,5,29,\"US\",\"1810\",\"LGA\",\"CLT\",-5.00,-9.00,0.00,\"\",0.00,118.00,76.00,544.00,,,,,,\n2015,5,29,\"US\",\"1815\",\"LGA\",\"CLT\",-6.00,-13.00,0.00,\"\",0.00,115.00,77.00,544.00,,,,,,\n2015,5,29,\"US\",\"1830\",\"CLT\",\"JFK\",-2.00,-3.00,0.00,\"\",0.00,106.00,85.00,541.00,,,,,,\n2015,5,29,\"US\",\"1849\",\"LGA\",\"CLT\",-8.00,-16.00,0.00,\"\",0.00,125.00,76.00,544.00,,,,,,\n2015,5,29,\"US\",\"1851\",\"LGA\",\"CLT\",-3.00,23.00,0.00,\"\",0.00,149.00,108.00,544.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,29,\"US\",\"1873\",\"BUF\",\"CLT\",-2.00,-6.00,0.00,\"\",0.00,104.00,81.00,546.00,,,,,,\n2015,5,29,\"US\",\"1885\",\"CLT\",\"BUF\",-6.00,-10.00,0.00,\"\",0.00,97.00,76.00,546.00,,,,,,\n2015,5,29,\"US\",\"1898\",\"CLT\",\"JFK\",12.00,41.00,0.00,\"\",0.00,139.00,83.00,541.00,0.00,0.00,29.00,0.00,12.00,\n2015,5,29,\"US\",\"1908\",\"LGA\",\"CLT\",12.00,9.00,0.00,\"\",0.00,119.00,90.00,544.00,,,,,,\n2015,5,29,\"US\",\"1910\",\"CLT\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,100.00,78.00,544.00,,,,,,\n2015,5,29,\"US\",\"1916\",\"SYR\",\"CLT\",-7.00,-22.00,0.00,\"\",0.00,107.00,89.00,603.00,,,,,,\n2015,5,29,\"US\",\"1919\",\"JFK\",\"CLT\",-1.00,14.00,0.00,\"\",0.00,136.00,98.00,541.00,,,,,,\n2015,5,29,\"US\",\"1923\",\"ALB\",\"CLT\",-6.00,-41.00,0.00,\"\",0.00,107.00,92.00,646.00,,,,,,\n2015,5,29,\"US\",\"1933\",\"LGA\",\"PHL\",-4.00,40.00,0.00,\"\",0.00,117.00,50.00,96.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,29,\"US\",\"1940\",\"CLT\",\"ALB\",-8.00,0.00,0.00,\"\",0.00,126.00,86.00,646.00,,,,,,\n2015,5,29,\"US\",\"1942\",\"CLT\",\"BUF\",-3.00,-12.00,0.00,\"\",0.00,91.00,74.00,546.00,,,,,,\n2015,5,29,\"US\",\"1951\",\"LGA\",\"CLT\",-2.00,-19.00,0.00,\"\",0.00,105.00,79.00,544.00,,,,,,\n2015,5,29,\"US\",\"1952\",\"CLT\",\"BUF\",-2.00,-2.00,0.00,\"\",0.00,98.00,73.00,546.00,,,,,,\n2015,5,29,\"US\",\"1954\",\"CLT\",\"LGA\",0.00,12.00,0.00,\"\",0.00,120.00,85.00,544.00,,,,,,\n2015,5,29,\"US\",\"1971\",\"CLT\",\"SYR\",-3.00,-3.00,0.00,\"\",0.00,105.00,80.00,603.00,,,,,,\n2015,5,29,\"US\",\"1977\",\"BUF\",\"CLT\",-11.00,-22.00,0.00,\"\",0.00,98.00,80.00,546.00,,,,,,\n2015,5,29,\"US\",\"1981\",\"CLT\",\"LGA\",-3.00,2.00,0.00,\"\",0.00,110.00,82.00,544.00,,,,,,\n2015,5,29,\"US\",\"1983\",\"BUF\",\"CLT\",-10.00,-20.00,0.00,\"\",0.00,102.00,81.00,546.00,,,,,,\n2015,5,29,\"US\",\"1988\",\"CLT\",\"ALB\",-8.00,-6.00,0.00,\"\",0.00,127.00,101.00,646.00,,,,,,\n2015,5,29,\"US\",\"2017\",\"CLT\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,105.00,86.00,541.00,,,,,,\n2015,5,29,\"US\",\"2036\",\"CLT\",\"SYR\",-4.00,-7.00,0.00,\"\",0.00,107.00,86.00,603.00,,,,,,\n2015,5,29,\"US\",\"2042\",\"CLT\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,102.00,82.00,541.00,,,,,,\n2015,5,29,\"US\",\"2050\",\"CLT\",\"LGA\",32.00,29.00,0.00,\"\",0.00,105.00,83.00,544.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"US\",\"2060\",\"CLT\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,97.00,78.00,544.00,,,,,,\n2015,5,29,\"US\",\"2062\",\"CLT\",\"LGA\",-5.00,-11.00,0.00,\"\",0.00,103.00,81.00,544.00,,,,,,\n2015,5,29,\"US\",\"2064\",\"CLT\",\"LGA\",-4.00,-25.00,0.00,\"\",0.00,93.00,77.00,544.00,,,,,,\n2015,5,29,\"US\",\"2066\",\"CLT\",\"LGA\",-6.00,-7.00,0.00,\"\",0.00,105.00,82.00,544.00,,,,,,\n2015,5,29,\"US\",\"2068\",\"CLT\",\"LGA\",-4.00,4.00,0.00,\"\",0.00,115.00,84.00,544.00,,,,,,\n2015,5,29,\"US\",\"2069\",\"JFK\",\"CLT\",-1.00,-21.00,0.00,\"\",0.00,101.00,77.00,541.00,,,,,,\n2015,5,29,\"US\",\"2115\",\"LGA\",\"DCA\",-6.00,-4.00,0.00,\"\",0.00,65.00,40.00,214.00,,,,,,\n2015,5,29,\"US\",\"2117\",\"DCA\",\"LGA\",,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,29,\"US\",\"2118\",\"BOS\",\"LGA\",20.00,8.00,0.00,\"\",0.00,69.00,41.00,184.00,,,,,,\n2015,5,29,\"US\",\"2118\",\"LGA\",\"BOS\",-6.00,32.00,0.00,\"\",0.00,116.00,50.00,184.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,29,\"US\",\"2121\",\"BOS\",\"LGA\",-7.00,-12.00,0.00,\"\",0.00,71.00,46.00,184.00,,,,,,\n2015,5,29,\"US\",\"2121\",\"LGA\",\"BOS\",-7.00,-16.00,0.00,\"\",0.00,69.00,32.00,184.00,,,,,,\n2015,5,29,\"US\",\"2122\",\"LGA\",\"BOS\",14.00,24.00,0.00,\"\",0.00,84.00,36.00,184.00,0.00,14.00,10.00,0.00,0.00,\n2015,5,29,\"US\",\"2123\",\"LGA\",\"DCA\",-7.00,-13.00,0.00,\"\",0.00,64.00,42.00,214.00,,,,,,\n2015,5,29,\"US\",\"2125\",\"LGA\",\"DCA\",-7.00,-8.00,0.00,\"\",0.00,83.00,44.00,214.00,,,,,,\n2015,5,29,\"US\",\"2126\",\"BOS\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,65.00,39.00,184.00,,,,,,\n2015,5,29,\"US\",\"2126\",\"LGA\",\"BOS\",-9.00,-23.00,0.00,\"\",0.00,48.00,33.00,184.00,,,,,,\n2015,5,29,\"US\",\"2128\",\"LGA\",\"BOS\",-2.00,-7.00,0.00,\"\",0.00,68.00,34.00,184.00,,,,,,\n2015,5,29,\"US\",\"2131\",\"BOS\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,73.00,39.00,184.00,,,,,,\n2015,5,29,\"US\",\"2131\",\"LGA\",\"BOS\",-7.00,-8.00,0.00,\"\",0.00,71.00,34.00,184.00,,,,,,\n2015,5,29,\"US\",\"2133\",\"DCA\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,85.00,43.00,214.00,,,,,,\n2015,5,14,\"VX\",\"404\",\"LAX\",\"JFK\",21.00,5.00,0.00,\"\",0.00,309.00,293.00,2475.00,,,,,,\n2015,5,14,\"VX\",\"406\",\"LAX\",\"JFK\",-2.00,-18.00,0.00,\"\",0.00,319.00,296.00,2475.00,,,,,,\n2015,5,14,\"VX\",\"407\",\"JFK\",\"LAX\",-5.00,14.00,0.00,\"\",0.00,389.00,331.00,2475.00,,,,,,\n2015,5,14,\"VX\",\"411\",\"JFK\",\"LAX\",-8.00,-16.00,0.00,\"\",0.00,357.00,333.00,2475.00,,,,,,\n2015,5,14,\"VX\",\"412\",\"LAX\",\"JFK\",-2.00,6.00,0.00,\"\",0.00,338.00,301.00,2475.00,,,,,,\n2015,5,14,\"VX\",\"413\",\"JFK\",\"LAX\",0.00,-30.00,0.00,\"\",0.00,361.00,333.00,2475.00,,,,,,\n2015,5,14,\"VX\",\"415\",\"JFK\",\"LAX\",-1.00,-14.00,0.00,\"\",0.00,367.00,317.00,2475.00,,,,,,\n2015,5,14,\"VX\",\"416\",\"LAX\",\"JFK\",23.00,12.00,0.00,\"\",0.00,309.00,286.00,2475.00,,,,,,\n2015,5,14,\"VX\",\"420\",\"LAX\",\"JFK\",0.00,1.00,0.00,\"\",0.00,326.00,302.00,2475.00,,,,,,\n2015,5,14,\"VX\",\"710\",\"DAL\",\"LGA\",10.00,19.00,0.00,\"\",0.00,194.00,176.00,1381.00,9.00,0.00,0.00,0.00,10.00,\n2015,5,14,\"VX\",\"715\",\"LGA\",\"DAL\",180.00,148.00,0.00,\"\",0.00,208.00,184.00,1381.00,0.00,0.00,1.00,0.00,147.00,\n2015,5,14,\"VX\",\"719\",\"LGA\",\"DAL\",6.00,-11.00,0.00,\"\",0.00,223.00,197.00,1381.00,,,,,,\n2015,5,14,\"VX\",\"762\",\"DAL\",\"LGA\",166.00,179.00,0.00,\"\",0.00,198.00,175.00,1381.00,179.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"VX\",\"766\",\"DAL\",\"LGA\",-1.00,9.00,0.00,\"\",0.00,195.00,178.00,1381.00,,,,,,\n2015,5,14,\"VX\",\"769\",\"LGA\",\"DAL\",2.00,-11.00,0.00,\"\",0.00,227.00,200.00,1381.00,,,,,,\n2015,5,14,\"VX\",\"874\",\"DAL\",\"LGA\",1.00,5.00,0.00,\"\",0.00,189.00,174.00,1381.00,,,,,,\n2015,5,14,\"VX\",\"879\",\"LGA\",\"DAL\",-9.00,-31.00,0.00,\"\",0.00,218.00,194.00,1381.00,,,,,,\n2015,5,15,\"VX\",\"11\",\"JFK\",\"SFO\",-1.00,-9.00,0.00,\"\",0.00,377.00,339.00,2586.00,,,,,,\n2015,5,15,\"VX\",\"12\",\"SFO\",\"JFK\",2.00,-15.00,0.00,\"\",0.00,328.00,309.00,2586.00,,,,,,\n2015,5,15,\"VX\",\"22\",\"SFO\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,322.00,300.00,2586.00,,,,,,\n2015,5,15,\"VX\",\"23\",\"JFK\",\"SFO\",-8.00,-29.00,0.00,\"\",0.00,364.00,335.00,2586.00,,,,,,\n2015,5,15,\"VX\",\"251\",\"JFK\",\"LAS\",-5.00,-4.00,0.00,\"\",0.00,341.00,306.00,2248.00,,,,,,\n2015,5,15,\"VX\",\"260\",\"LAS\",\"JFK\",-3.00,11.00,0.00,\"\",0.00,303.00,276.00,2248.00,,,,,,\n2015,5,15,\"VX\",\"26\",\"SFO\",\"JFK\",50.00,45.00,0.00,\"\",0.00,329.00,308.00,2586.00,0.00,0.00,0.00,0.00,45.00,\n2015,5,15,\"VX\",\"27\",\"JFK\",\"SFO\",-1.00,2.00,0.00,\"\",0.00,408.00,373.00,2586.00,,,,,,\n2015,5,15,\"VX\",\"29\",\"JFK\",\"SFO\",39.00,40.00,0.00,\"\",0.00,406.00,363.00,2586.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,15,\"VX\",\"34\",\"SFO\",\"JFK\",78.00,62.00,0.00,\"\",0.00,319.00,300.00,2586.00,0.00,0.00,0.00,0.00,62.00,\n2015,5,15,\"VX\",\"399\",\"JFK\",\"LAX\",-10.00,-16.00,0.00,\"\",0.00,359.00,326.00,2475.00,,,,,,\n2015,5,15,\"VX\",\"404\",\"LAX\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,307.00,292.00,2475.00,,,,,,\n2015,5,15,\"VX\",\"406\",\"LAX\",\"JFK\",35.00,33.00,0.00,\"\",0.00,333.00,295.00,2475.00,0.00,0.00,0.00,0.00,33.00,\n2015,5,15,\"VX\",\"407\",\"JFK\",\"LAX\",-8.00,9.00,0.00,\"\",0.00,387.00,337.00,2475.00,,,,,,\n2015,5,15,\"VX\",\"411\",\"JFK\",\"LAX\",-4.00,2.00,0.00,\"\",0.00,371.00,347.00,2475.00,,,,,,\n2015,5,15,\"VX\",\"412\",\"LAX\",\"JFK\",-3.00,-24.00,0.00,\"\",0.00,309.00,286.00,2475.00,,,,,,\n2015,5,15,\"VX\",\"413\",\"JFK\",\"LAX\",7.00,-4.00,0.00,\"\",0.00,380.00,337.00,2475.00,,,,,,\n2015,5,15,\"VX\",\"415\",\"JFK\",\"LAX\",32.00,24.00,0.00,\"\",0.00,372.00,341.00,2475.00,0.00,0.00,0.00,0.00,24.00,\n2015,5,15,\"VX\",\"416\",\"LAX\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,312.00,292.00,2475.00,,,,,,\n2015,5,15,\"VX\",\"420\",\"LAX\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,317.00,300.00,2475.00,,,,,,\n2015,5,15,\"VX\",\"710\",\"DAL\",\"LGA\",-2.00,8.00,0.00,\"\",0.00,195.00,177.00,1381.00,,,,,,\n2015,5,15,\"VX\",\"715\",\"LGA\",\"DAL\",0.00,-24.00,0.00,\"\",0.00,216.00,190.00,1381.00,,,,,,\n2015,5,15,\"VX\",\"719\",\"LGA\",\"DAL\",25.00,-2.00,0.00,\"\",0.00,213.00,189.00,1381.00,,,,,,\n2015,5,15,\"VX\",\"762\",\"DAL\",\"LGA\",-6.00,1.00,0.00,\"\",0.00,192.00,175.00,1381.00,,,,,,\n2015,5,15,\"VX\",\"766\",\"DAL\",\"LGA\",-3.00,11.00,0.00,\"\",0.00,199.00,174.00,1381.00,,,,,,\n2015,5,15,\"VX\",\"769\",\"LGA\",\"DAL\",5.00,-18.00,0.00,\"\",0.00,217.00,190.00,1381.00,,,,,,\n2015,5,15,\"VX\",\"874\",\"DAL\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,185.00,169.00,1381.00,,,,,,\n2015,5,15,\"VX\",\"879\",\"LGA\",\"DAL\",-3.00,-25.00,0.00,\"\",0.00,218.00,196.00,1381.00,,,,,,\n2015,5,16,\"VX\",\"11\",\"JFK\",\"SFO\",-4.00,2.00,0.00,\"\",0.00,391.00,338.00,2586.00,,,,,,\n2015,5,16,\"VX\",\"12\",\"SFO\",\"JFK\",4.00,-5.00,0.00,\"\",0.00,336.00,310.00,2586.00,,,,,,\n2015,5,16,\"VX\",\"22\",\"SFO\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,348.00,321.00,2586.00,,,,,,\n2015,5,16,\"VX\",\"23\",\"JFK\",\"SFO\",8.00,-15.00,0.00,\"\",0.00,362.00,337.00,2586.00,,,,,,\n2015,5,16,\"VX\",\"251\",\"JFK\",\"LAS\",33.00,36.00,0.00,\"\",0.00,343.00,299.00,2248.00,0.00,3.00,0.00,0.00,33.00,\n2015,5,16,\"VX\",\"260\",\"LAS\",\"JFK\",-8.00,-1.00,0.00,\"\",0.00,296.00,277.00,2248.00,,,,,,\n2015,5,16,\"VX\",\"26\",\"SFO\",\"JFK\",-4.00,11.00,0.00,\"\",0.00,349.00,319.00,2586.00,,,,,,\n2015,5,16,\"VX\",\"27\",\"JFK\",\"SFO\",-6.00,-14.00,0.00,\"\",0.00,397.00,364.00,2586.00,,,,,,\n2015,5,16,\"VX\",\"399\",\"JFK\",\"LAX\",-5.00,-5.00,0.00,\"\",0.00,365.00,327.00,2475.00,,,,,,\n2015,5,16,\"VX\",\"404\",\"LAX\",\"JFK\",-3.00,-12.00,0.00,\"\",0.00,316.00,299.00,2475.00,,,,,,\n2015,5,16,\"VX\",\"406\",\"LAX\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,320.00,298.00,2475.00,,,,,,\n2015,5,16,\"VX\",\"407\",\"JFK\",\"LAX\",-1.00,15.00,0.00,\"\",0.00,386.00,324.00,2475.00,0.00,15.00,0.00,0.00,0.00,\n2015,5,16,\"VX\",\"411\",\"JFK\",\"LAX\",126.00,117.00,0.00,\"\",0.00,356.00,329.00,2475.00,117.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"VX\",\"412\",\"LAX\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,318.00,295.00,2475.00,,,,,,\n2015,5,16,\"VX\",\"413\",\"JFK\",\"LAX\",0.00,-11.00,0.00,\"\",0.00,380.00,340.00,2475.00,,,,,,\n2015,5,16,\"VX\",\"415\",\"JFK\",\"LAX\",-4.00,-21.00,0.00,\"\",0.00,363.00,330.00,2475.00,,,,,,\n2015,5,16,\"VX\",\"416\",\"LAX\",\"JFK\",0.00,2.00,0.00,\"\",0.00,322.00,299.00,2475.00,,,,,,\n2015,5,16,\"VX\",\"420\",\"LAX\",\"JFK\",5.00,-2.00,0.00,\"\",0.00,318.00,303.00,2475.00,,,,,,\n2015,5,16,\"VX\",\"715\",\"LGA\",\"DAL\",-3.00,-19.00,0.00,\"\",0.00,224.00,196.00,1381.00,,,,,,\n2015,5,16,\"VX\",\"719\",\"LGA\",\"DAL\",-11.00,-31.00,0.00,\"\",0.00,220.00,195.00,1381.00,,,,,,\n2015,5,16,\"VX\",\"766\",\"DAL\",\"LGA\",-7.00,-1.00,0.00,\"\",0.00,191.00,175.00,1381.00,,,,,,\n2015,5,16,\"VX\",\"772\",\"DAL\",\"LGA\",-5.00,6.00,0.00,\"\",0.00,196.00,181.00,1381.00,,,,,,\n2015,5,17,\"VX\",\"11\",\"JFK\",\"SFO\",-6.00,-27.00,0.00,\"\",0.00,364.00,343.00,2586.00,,,,,,\n2015,5,17,\"VX\",\"12\",\"SFO\",\"JFK\",-2.00,-28.00,0.00,\"\",0.00,319.00,298.00,2586.00,,,,,,\n2015,5,17,\"VX\",\"22\",\"SFO\",\"JFK\",-4.00,-24.00,0.00,\"\",0.00,324.00,305.00,2586.00,,,,,,\n2015,5,17,\"VX\",\"23\",\"JFK\",\"SFO\",-4.00,-22.00,0.00,\"\",0.00,367.00,348.00,2586.00,,,,,,\n2015,5,17,\"VX\",\"251\",\"JFK\",\"LAS\",-6.00,-3.00,0.00,\"\",0.00,343.00,304.00,2248.00,,,,,,\n2015,5,17,\"VX\",\"260\",\"LAS\",\"JFK\",1.00,8.00,0.00,\"\",0.00,296.00,269.00,2248.00,,,,,,\n2015,5,17,\"VX\",\"26\",\"SFO\",\"JFK\",75.00,74.00,0.00,\"\",0.00,333.00,310.00,2586.00,74.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"VX\",\"27\",\"JFK\",\"SFO\",-9.00,-12.00,0.00,\"\",0.00,402.00,373.00,2586.00,,,,,,\n2015,5,17,\"VX\",\"29\",\"JFK\",\"SFO\",-3.00,-19.00,0.00,\"\",0.00,389.00,358.00,2586.00,,,,,,\n2015,5,17,\"VX\",\"34\",\"SFO\",\"JFK\",40.00,27.00,0.00,\"\",0.00,322.00,300.00,2586.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,17,\"VX\",\"399\",\"JFK\",\"LAX\",-6.00,-1.00,0.00,\"\",0.00,370.00,339.00,2475.00,,,,,,\n2015,5,17,\"VX\",\"404\",\"LAX\",\"JFK\",2.00,-18.00,0.00,\"\",0.00,305.00,292.00,2475.00,,,,,,\n2015,5,17,\"VX\",\"406\",\"LAX\",\"JFK\",12.00,-1.00,0.00,\"\",0.00,322.00,299.00,2475.00,,,,,,\n2015,5,17,\"VX\",\"407\",\"JFK\",\"LAX\",-6.00,1.00,0.00,\"\",0.00,377.00,335.00,2475.00,,,,,,\n2015,5,17,\"VX\",\"411\",\"JFK\",\"LAX\",-3.00,-5.00,0.00,\"\",0.00,363.00,335.00,2475.00,,,,,,\n2015,5,17,\"VX\",\"412\",\"LAX\",\"JFK\",10.00,11.00,0.00,\"\",0.00,331.00,301.00,2475.00,,,,,,\n2015,5,17,\"VX\",\"413\",\"JFK\",\"LAX\",-1.00,-10.00,0.00,\"\",0.00,382.00,351.00,2475.00,,,,,,\n2015,5,17,\"VX\",\"415\",\"JFK\",\"LAX\",4.00,-15.00,0.00,\"\",0.00,361.00,320.00,2475.00,,,,,,\n2015,5,17,\"VX\",\"416\",\"LAX\",\"JFK\",1.00,-13.00,0.00,\"\",0.00,306.00,289.00,2475.00,,,,,,\n2015,5,17,\"VX\",\"420\",\"LAX\",\"JFK\",37.00,26.00,0.00,\"\",0.00,314.00,288.00,2475.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,17,\"VX\",\"710\",\"DAL\",\"LGA\",39.00,61.00,0.00,\"\",0.00,207.00,187.00,1381.00,39.00,0.00,22.00,0.00,0.00,\n2015,5,17,\"VX\",\"715\",\"LGA\",\"DAL\",-4.00,11.00,0.00,\"\",0.00,255.00,216.00,1381.00,,,,,,\n2015,5,17,\"VX\",\"719\",\"LGA\",\"DAL\",-6.00,-2.00,0.00,\"\",0.00,244.00,191.00,1381.00,,,,,,\n2015,5,17,\"VX\",\"766\",\"DAL\",\"LGA\",-3.00,8.00,0.00,\"\",0.00,196.00,181.00,1381.00,,,,,,\n2015,5,17,\"VX\",\"769\",\"LGA\",\"DAL\",38.00,20.00,0.00,\"\",0.00,222.00,190.00,1381.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,17,\"VX\",\"874\",\"DAL\",\"LGA\",60.00,81.00,0.00,\"\",0.00,206.00,182.00,1381.00,0.00,0.00,21.00,0.00,60.00,\n2015,5,18,\"VX\",\"11\",\"JFK\",\"SFO\",-3.00,-29.00,0.00,\"\",0.00,359.00,337.00,2586.00,,,,,,\n2015,5,18,\"VX\",\"12\",\"SFO\",\"JFK\",2.00,-20.00,0.00,\"\",0.00,323.00,305.00,2586.00,,,,,,\n2015,5,18,\"VX\",\"22\",\"SFO\",\"JFK\",132.00,142.00,0.00,\"\",0.00,354.00,311.00,2586.00,0.00,0.00,142.00,0.00,0.00,\n2015,5,18,\"VX\",\"23\",\"JFK\",\"SFO\",62.00,89.00,0.00,\"\",0.00,412.00,336.00,2586.00,0.00,0.00,89.00,0.00,0.00,\n2015,5,18,\"VX\",\"251\",\"JFK\",\"LAS\",4.00,18.00,0.00,\"\",0.00,354.00,303.00,2248.00,0.00,0.00,16.00,0.00,2.00,\n2015,5,18,\"VX\",\"260\",\"LAS\",\"JFK\",-1.00,2.00,0.00,\"\",0.00,292.00,275.00,2248.00,,,,,,\n2015,5,18,\"VX\",\"26\",\"SFO\",\"JFK\",115.00,116.00,0.00,\"\",0.00,335.00,317.00,2586.00,0.00,1.00,59.00,0.00,56.00,\n2015,5,18,\"VX\",\"27\",\"JFK\",\"SFO\",114.00,190.00,0.00,\"\",0.00,481.00,353.00,2586.00,0.00,0.00,190.00,0.00,0.00,\n2015,5,18,\"VX\",\"29\",\"JFK\",\"SFO\",146.00,208.00,0.00,\"\",0.00,467.00,363.00,2586.00,55.00,0.00,7.00,0.00,146.00,\n2015,5,18,\"VX\",\"34\",\"SFO\",\"JFK\",31.00,35.00,0.00,\"\",0.00,339.00,303.00,2586.00,4.00,0.00,0.00,0.00,31.00,\n2015,5,18,\"VX\",\"399\",\"JFK\",\"LAX\",-3.00,-6.00,0.00,\"\",0.00,362.00,323.00,2475.00,,,,,,\n2015,5,18,\"VX\",\"404\",\"LAX\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,312.00,294.00,2475.00,,,,,,\n2015,5,18,\"VX\",\"406\",\"LAX\",\"JFK\",154.00,142.00,0.00,\"\",0.00,323.00,301.00,2475.00,0.00,0.00,142.00,0.00,0.00,\n2015,5,18,\"VX\",\"407\",\"JFK\",\"LAX\",0.00,12.00,0.00,\"\",0.00,382.00,324.00,2475.00,,,,,,\n2015,5,18,\"VX\",\"411\",\"JFK\",\"LAX\",-1.00,10.00,0.00,\"\",0.00,376.00,333.00,2475.00,,,,,,\n2015,5,18,\"VX\",\"412\",\"LAX\",\"JFK\",139.00,211.00,0.00,\"\",0.00,402.00,371.00,2475.00,0.00,0.00,211.00,0.00,0.00,\n2015,5,18,\"VX\",\"413\",\"JFK\",\"LAX\",-3.00,5.00,0.00,\"\",0.00,399.00,345.00,2475.00,,,,,,\n2015,5,18,\"VX\",\"415\",\"JFK\",\"LAX\",157.00,248.00,0.00,\"\",0.00,471.00,366.00,2475.00,67.00,0.00,24.00,0.00,157.00,\n2015,5,18,\"VX\",\"416\",\"LAX\",\"JFK\",49.00,127.00,0.00,\"\",0.00,398.00,369.00,2475.00,0.00,0.00,127.00,0.00,0.00,\n2015,5,18,\"VX\",\"420\",\"LAX\",\"JFK\",2.00,5.00,0.00,\"\",0.00,328.00,301.00,2475.00,,,,,,\n2015,5,18,\"VX\",\"710\",\"DAL\",\"LGA\",61.00,83.00,0.00,\"\",0.00,207.00,187.00,1381.00,0.00,0.00,83.00,0.00,0.00,\n2015,5,18,\"VX\",\"715\",\"LGA\",\"DAL\",70.00,50.00,0.00,\"\",0.00,220.00,198.00,1381.00,0.00,0.00,0.00,0.00,50.00,\n2015,5,18,\"VX\",\"719\",\"LGA\",\"DAL\",,,1.00,\"C\",0.00,,,1381.00,,,,,,\n2015,5,18,\"VX\",\"762\",\"DAL\",\"LGA\",27.00,66.00,0.00,\"\",0.00,224.00,208.00,1381.00,27.00,0.00,39.00,0.00,0.00,\n2015,5,18,\"VX\",\"766\",\"DAL\",\"LGA\",,,1.00,\"C\",0.00,,,1381.00,,,,,,\n2015,5,18,\"VX\",\"769\",\"LGA\",\"DAL\",72.00,95.00,0.00,\"\",0.00,263.00,211.00,1381.00,0.00,0.00,23.00,0.00,72.00,\n2015,5,18,\"VX\",\"874\",\"DAL\",\"LGA\",44.00,67.00,0.00,\"\",0.00,208.00,189.00,1381.00,0.00,0.00,25.00,0.00,42.00,\n2015,5,18,\"VX\",\"879\",\"LGA\",\"DAL\",-1.00,-9.00,0.00,\"\",0.00,232.00,197.00,1381.00,,,,,,\n2015,5,19,\"VX\",\"11\",\"JFK\",\"SFO\",-3.00,-3.00,0.00,\"\",0.00,385.00,353.00,2586.00,,,,,,\n2015,5,19,\"VX\",\"12\",\"SFO\",\"JFK\",5.00,-6.00,0.00,\"\",0.00,334.00,305.00,2586.00,,,,,,\n2015,5,19,\"VX\",\"22\",\"SFO\",\"JFK\",10.00,-21.00,0.00,\"\",0.00,313.00,295.00,2586.00,,,,,,\n2015,5,19,\"VX\",\"23\",\"JFK\",\"SFO\",104.00,124.00,0.00,\"\",0.00,405.00,361.00,2586.00,0.00,0.00,124.00,0.00,0.00,\n2015,5,19,\"VX\",\"251\",\"JFK\",\"LAS\",79.00,91.00,0.00,\"\",0.00,352.00,322.00,2248.00,79.00,12.00,0.00,0.00,0.00,\n2015,5,19,\"VX\",\"260\",\"LAS\",\"JFK\",-1.00,7.00,0.00,\"\",0.00,297.00,246.00,2248.00,,,,,,\n2015,5,19,\"VX\",\"26\",\"SFO\",\"JFK\",6.00,39.00,0.00,\"\",0.00,367.00,310.00,2586.00,3.00,0.00,33.00,0.00,3.00,\n2015,5,19,\"VX\",\"27\",\"JFK\",\"SFO\",135.00,133.00,0.00,\"\",0.00,403.00,356.00,2586.00,0.00,0.00,133.00,0.00,0.00,\n2015,5,19,\"VX\",\"29\",\"JFK\",\"SFO\",123.00,138.00,0.00,\"\",0.00,420.00,367.00,2586.00,0.00,0.00,138.00,0.00,0.00,\n2015,5,19,\"VX\",\"34\",\"SFO\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,318.00,278.00,2586.00,,,,,,\n2015,5,19,\"VX\",\"399\",\"JFK\",\"LAX\",-9.00,-15.00,0.00,\"\",0.00,359.00,331.00,2475.00,,,,,,\n2015,5,19,\"VX\",\"404\",\"LAX\",\"JFK\",1.00,-26.00,0.00,\"\",0.00,298.00,279.00,2475.00,,,,,,\n2015,5,19,\"VX\",\"406\",\"LAX\",\"JFK\",-2.00,-31.00,0.00,\"\",0.00,306.00,286.00,2475.00,,,,,,\n2015,5,19,\"VX\",\"407\",\"JFK\",\"LAX\",-5.00,10.00,0.00,\"\",0.00,385.00,344.00,2475.00,,,,,,\n2015,5,19,\"VX\",\"411\",\"JFK\",\"LAX\",-3.00,22.00,0.00,\"\",0.00,390.00,352.00,2475.00,0.00,0.00,22.00,0.00,0.00,\n2015,5,19,\"VX\",\"412\",\"LAX\",\"JFK\",23.00,12.00,0.00,\"\",0.00,319.00,296.00,2475.00,,,,,,\n2015,5,19,\"VX\",\"413\",\"JFK\",\"LAX\",-1.00,0.00,0.00,\"\",0.00,392.00,350.00,2475.00,,,,,,\n2015,5,19,\"VX\",\"415\",\"JFK\",\"LAX\",-1.00,31.00,0.00,\"\",0.00,412.00,339.00,2475.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,19,\"VX\",\"416\",\"LAX\",\"JFK\",-1.00,-17.00,0.00,\"\",0.00,304.00,279.00,2475.00,,,,,,\n2015,5,19,\"VX\",\"420\",\"LAX\",\"JFK\",4.00,-22.00,0.00,\"\",0.00,299.00,278.00,2475.00,,,,,,\n2015,5,19,\"VX\",\"710\",\"DAL\",\"LGA\",56.00,75.00,0.00,\"\",0.00,204.00,175.00,1381.00,0.00,0.00,75.00,0.00,0.00,\n2015,5,19,\"VX\",\"715\",\"LGA\",\"DAL\",90.00,57.00,0.00,\"\",0.00,207.00,188.00,1381.00,0.00,0.00,0.00,0.00,57.00,\n2015,5,19,\"VX\",\"719\",\"LGA\",\"DAL\",-1.00,-21.00,0.00,\"\",0.00,220.00,191.00,1381.00,,,,,,\n2015,5,19,\"VX\",\"762\",\"DAL\",\"LGA\",46.00,91.00,0.00,\"\",0.00,230.00,170.00,1381.00,0.00,0.00,91.00,0.00,0.00,\n2015,5,19,\"VX\",\"766\",\"DAL\",\"LGA\",2.00,2.00,0.00,\"\",0.00,185.00,165.00,1381.00,,,,,,\n2015,5,19,\"VX\",\"769\",\"LGA\",\"DAL\",59.00,45.00,0.00,\"\",0.00,226.00,194.00,1381.00,0.00,0.00,0.00,0.00,45.00,\n2015,5,19,\"VX\",\"874\",\"DAL\",\"LGA\",-12.00,40.00,0.00,\"\",0.00,237.00,179.00,1381.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,19,\"VX\",\"879\",\"LGA\",\"DAL\",-4.00,-22.00,0.00,\"\",0.00,222.00,201.00,1381.00,,,,,,\n2015,5,2,\"VX\",\"11\",\"JFK\",\"SFO\",13.00,-12.00,0.00,\"\",0.00,360.00,340.00,2586.00,,,,,,\n2015,5,2,\"VX\",\"12\",\"SFO\",\"JFK\",-9.00,-16.00,0.00,\"\",0.00,338.00,318.00,2586.00,,,,,,\n2015,5,2,\"VX\",\"22\",\"SFO\",\"JFK\",11.00,-3.00,0.00,\"\",0.00,330.00,307.00,2586.00,,,,,,\n2015,5,2,\"VX\",\"23\",\"JFK\",\"SFO\",-1.00,-18.00,0.00,\"\",0.00,368.00,340.00,2586.00,,,,,,\n2015,5,2,\"VX\",\"251\",\"JFK\",\"LAS\",-5.00,-21.00,0.00,\"\",0.00,324.00,295.00,2248.00,,,,,,\n2015,5,2,\"VX\",\"260\",\"LAS\",\"JFK\",-10.00,-6.00,0.00,\"\",0.00,293.00,271.00,2248.00,,,,,,\n2015,5,2,\"VX\",\"26\",\"SFO\",\"JFK\",-3.00,-8.00,0.00,\"\",0.00,329.00,306.00,2586.00,,,,,,\n2015,5,2,\"VX\",\"27\",\"JFK\",\"SFO\",-4.00,-50.00,0.00,\"\",0.00,359.00,336.00,2586.00,,,,,,\n2015,5,2,\"VX\",\"399\",\"JFK\",\"LAX\",-7.00,-32.00,0.00,\"\",0.00,340.00,315.00,2475.00,,,,,,\n2015,5,30,\"VX\",\"399\",\"JFK\",\"LAX\",-12.00,-41.00,0.00,\"\",0.00,336.00,309.00,2475.00,,,,,,\n2015,5,30,\"VX\",\"404\",\"LAX\",\"JFK\",-5.00,-10.00,0.00,\"\",0.00,320.00,303.00,2475.00,,,,,,\n2015,5,30,\"VX\",\"406\",\"LAX\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,338.00,311.00,2475.00,,,,,,\n2015,5,30,\"VX\",\"407\",\"JFK\",\"LAX\",-7.00,-10.00,0.00,\"\",0.00,367.00,317.00,2475.00,,,,,,\n2015,5,30,\"VX\",\"411\",\"JFK\",\"LAX\",-6.00,-33.00,0.00,\"\",0.00,338.00,309.00,2475.00,,,,,,\n2015,5,30,\"VX\",\"412\",\"LAX\",\"JFK\",0.00,16.00,0.00,\"\",0.00,346.00,330.00,2475.00,0.00,16.00,0.00,0.00,0.00,\n2015,5,30,\"VX\",\"413\",\"JFK\",\"LAX\",7.00,-11.00,0.00,\"\",0.00,373.00,326.00,2475.00,,,,,,\n2015,5,30,\"VX\",\"415\",\"JFK\",\"LAX\",-5.00,-26.00,0.00,\"\",0.00,359.00,319.00,2475.00,,,,,,\n2015,5,30,\"VX\",\"416\",\"LAX\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,318.00,301.00,2475.00,,,,,,\n2015,5,30,\"VX\",\"420\",\"LAX\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,324.00,309.00,2475.00,,,,,,\n2015,5,30,\"VX\",\"715\",\"LGA\",\"DAL\",-1.00,-21.00,0.00,\"\",0.00,220.00,188.00,1381.00,,,,,,\n2015,5,30,\"VX\",\"719\",\"LGA\",\"DAL\",27.00,6.00,0.00,\"\",0.00,219.00,185.00,1381.00,,,,,,\n2015,5,30,\"VX\",\"766\",\"DAL\",\"LGA\",24.00,56.00,0.00,\"\",0.00,217.00,189.00,1381.00,24.00,32.00,0.00,0.00,0.00,\n2015,5,30,\"VX\",\"772\",\"DAL\",\"LGA\",-5.00,20.00,0.00,\"\",0.00,210.00,193.00,1381.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,31,\"VX\",\"11\",\"JFK\",\"SFO\",0.00,-21.00,0.00,\"\",0.00,364.00,342.00,2586.00,,,,,,\n2015,5,31,\"VX\",\"12\",\"SFO\",\"JFK\",-3.00,-7.00,0.00,\"\",0.00,341.00,324.00,2586.00,,,,,,\n2015,5,25,\"US\",\"1740\",\"CLT\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,106.00,80.00,544.00,,,,,,\n2015,5,25,\"US\",\"1750\",\"ALB\",\"CLT\",-4.00,-25.00,0.00,\"\",0.00,110.00,93.00,646.00,,,,,,\n2015,5,31,\"US\",\"425\",\"JFK\",\"CLT\",137.00,169.00,0.00,\"\",0.00,160.00,88.00,541.00,0.00,31.00,32.00,0.00,106.00,\n2015,5,31,\"US\",\"425\",\"PHX\",\"JFK\",121.00,135.00,0.00,\"\",0.00,317.00,282.00,2153.00,0.00,0.00,135.00,0.00,0.00,\n2015,5,31,\"US\",\"433\",\"JFK\",\"PHX\",-3.00,-6.00,0.00,\"\",0.00,335.00,279.00,2153.00,,,,,,\n2015,5,31,\"US\",\"513\",\"LGA\",\"CLT\",-5.00,-31.00,0.00,\"\",0.00,91.00,77.00,544.00,,,,,,\n2015,5,31,\"US\",\"613\",\"BUF\",\"CLT\",-5.00,-14.00,0.00,\"\",0.00,103.00,85.00,546.00,,,,,,\n2015,5,31,\"US\",\"622\",\"PHX\",\"JFK\",178.00,187.00,0.00,\"\",0.00,299.00,275.00,2153.00,0.00,0.00,187.00,0.00,0.00,\n2015,5,31,\"US\",\"632\",\"PHX\",\"JFK\",1.00,0.00,0.00,\"\",0.00,284.00,266.00,2153.00,,,,,,\n2015,5,31,\"US\",\"639\",\"CLT\",\"JFK\",35.00,54.00,0.00,\"\",0.00,135.00,84.00,541.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,31,\"US\",\"639\",\"JFK\",\"PHX\",45.00,48.00,0.00,\"\",0.00,337.00,275.00,2153.00,0.00,0.00,3.00,0.00,45.00,\n2015,5,31,\"US\",\"654\",\"JFK\",\"PHX\",-6.00,-12.00,0.00,\"\",0.00,318.00,265.00,2153.00,,,,,,\n2015,5,31,\"US\",\"793\",\"JFK\",\"CLT\",42.00,84.00,0.00,\"\",0.00,163.00,99.00,541.00,0.00,17.00,42.00,0.00,25.00,\n2015,5,31,\"US\",\"809\",\"PHL\",\"LGA\",98.00,154.00,0.00,\"\",0.00,123.00,37.00,96.00,0.00,0.00,154.00,0.00,0.00,\n2015,5,31,\"US\",\"833\",\"ALB\",\"CLT\",-9.00,-23.00,0.00,\"\",0.00,128.00,95.00,646.00,,,,,,\n2015,5,31,\"US\",\"834\",\"LGA\",\"PHL\",-7.00,-5.00,0.00,\"\",0.00,76.00,35.00,96.00,,,,,,\n2015,5,31,\"US\",\"852\",\"LGA\",\"CLT\",-8.00,-28.00,0.00,\"\",0.00,102.00,81.00,544.00,,,,,,\n2015,5,31,\"US\",\"857\",\"PHL\",\"LGA\",-6.00,-1.00,0.00,\"\",0.00,75.00,29.00,96.00,,,,,,\n2015,5,31,\"US\",\"890\",\"LGA\",\"CLT\",,,1.00,\"C\",0.00,,,544.00,,,,,,\n2015,5,31,\"US\",\"893\",\"LGA\",\"CLT\",-3.00,-33.00,0.00,\"\",0.00,97.00,78.00,544.00,,,,,,\n2015,5,31,\"US\",\"894\",\"LGA\",\"CLT\",279.00,265.00,0.00,\"\",0.00,109.00,89.00,544.00,0.00,1.00,0.00,0.00,264.00,\n2015,5,31,\"US\",\"896\",\"CLT\",\"ROC\",-4.00,3.00,0.00,\"\",0.00,109.00,79.00,573.00,,,,,,\n2015,5,31,\"US\",\"1715\",\"SYR\",\"CLT\",1.00,-7.00,0.00,\"\",0.00,120.00,92.00,603.00,,,,,,\n2015,5,31,\"US\",\"1740\",\"CLT\",\"LGA\",,,1.00,\"C\",0.00,,,544.00,,,,,,\n2015,5,31,\"US\",\"1750\",\"ALB\",\"CLT\",15.00,26.00,0.00,\"\",0.00,142.00,118.00,646.00,15.00,0.00,11.00,0.00,0.00,\n2015,5,31,\"US\",\"1760\",\"LGA\",\"CLT\",-10.00,-28.00,0.00,\"\",0.00,104.00,76.00,544.00,,,,,,\n2015,5,31,\"US\",\"1781\",\"LGA\",\"CLT\",-2.00,-1.00,0.00,\"\",0.00,126.00,91.00,544.00,,,,,,\n2015,5,31,\"US\",\"1799\",\"LGA\",\"CLT\",280.00,294.00,0.00,\"\",0.00,136.00,82.00,544.00,0.00,280.00,14.00,0.00,0.00,\n2015,5,31,\"US\",\"1830\",\"BUF\",\"CLT\",-2.00,-4.00,0.00,\"\",0.00,107.00,88.00,546.00,,,,,,\n2015,5,31,\"US\",\"1830\",\"CLT\",\"JFK\",-2.00,-15.00,0.00,\"\",0.00,94.00,80.00,541.00,,,,,,\n2015,5,31,\"US\",\"1838\",\"PHL\",\"LGA\",110.00,121.00,0.00,\"\",0.00,69.00,28.00,96.00,0.00,0.00,121.00,0.00,0.00,\n2015,5,31,\"US\",\"1843\",\"LGA\",\"CLT\",9.00,-2.00,0.00,\"\",0.00,108.00,83.00,544.00,,,,,,\n2015,5,31,\"US\",\"1860\",\"CLT\",\"LGA\",119.00,111.00,0.00,\"\",0.00,97.00,80.00,544.00,0.00,0.00,111.00,0.00,0.00,\n2015,5,31,\"US\",\"1873\",\"SYR\",\"CLT\",6.00,2.00,0.00,\"\",0.00,118.00,95.00,603.00,,,,,,\n2015,5,31,\"US\",\"1885\",\"CLT\",\"BUF\",-4.00,4.00,0.00,\"\",0.00,109.00,79.00,546.00,,,,,,\n2015,5,31,\"US\",\"1898\",\"CLT\",\"JFK\",134.00,133.00,0.00,\"\",0.00,109.00,88.00,541.00,0.00,0.00,133.00,0.00,0.00,\n2015,5,31,\"US\",\"1909\",\"LGA\",\"PHL\",-1.00,-9.00,0.00,\"\",0.00,49.00,32.00,96.00,,,,,,\n2015,5,31,\"US\",\"1910\",\"CLT\",\"LGA\",0.00,-3.00,0.00,\"\",0.00,113.00,79.00,544.00,,,,,,\n2015,5,31,\"US\",\"1923\",\"ROC\",\"CLT\",-5.00,-13.00,0.00,\"\",0.00,114.00,87.00,573.00,,,,,,\n2015,5,31,\"US\",\"1929\",\"BUF\",\"CLT\",0.00,-4.00,0.00,\"\",0.00,107.00,88.00,546.00,,,,,,\n2015,5,31,\"US\",\"1933\",\"LGA\",\"PHL\",-7.00,-20.00,0.00,\"\",0.00,60.00,39.00,96.00,,,,,,\n2015,5,31,\"US\",\"1940\",\"CLT\",\"ALB\",1.00,23.00,0.00,\"\",0.00,140.00,100.00,646.00,1.00,0.00,22.00,0.00,0.00,\n2015,5,31,\"US\",\"1942\",\"CLT\",\"BUF\",1.00,8.00,0.00,\"\",0.00,107.00,84.00,546.00,,,,,,\n2015,5,31,\"US\",\"1952\",\"CLT\",\"BUF\",5.00,5.00,0.00,\"\",0.00,98.00,72.00,546.00,,,,,,\n2015,5,31,\"US\",\"1954\",\"CLT\",\"LGA\",46.00,80.00,0.00,\"\",0.00,142.00,83.00,544.00,0.00,0.00,80.00,0.00,0.00,\n2015,5,31,\"US\",\"1971\",\"CLT\",\"SYR\",-3.00,-13.00,0.00,\"\",0.00,95.00,79.00,603.00,,,,,,\n2015,5,31,\"US\",\"1988\",\"CLT\",\"ALB\",-6.00,-3.00,0.00,\"\",0.00,128.00,95.00,646.00,,,,,,\n2015,5,31,\"US\",\"1991\",\"LGA\",\"PHL\",-13.00,-14.00,0.00,\"\",0.00,72.00,33.00,96.00,,,,,,\n2015,5,31,\"US\",\"2017\",\"CLT\",\"JFK\",-2.00,30.00,0.00,\"\",0.00,142.00,80.00,541.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,31,\"US\",\"2036\",\"CLT\",\"SYR\",12.00,18.00,0.00,\"\",0.00,116.00,84.00,603.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,31,\"US\",\"2050\",\"CLT\",\"LGA\",,,1.00,\"C\",0.00,,,544.00,,,,,,\n2015,5,31,\"US\",\"2057\",\"JFK\",\"CLT\",-4.00,-19.00,0.00,\"\",0.00,101.00,76.00,541.00,,,,,,\n2015,5,31,\"US\",\"2062\",\"CLT\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,95.00,75.00,544.00,,,,,,\n2015,5,31,\"US\",\"2064\",\"CLT\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,110.00,78.00,544.00,,,,,,\n2015,5,31,\"US\",\"2066\",\"CLT\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,97.00,80.00,544.00,,,,,,\n2015,5,31,\"US\",\"2068\",\"CLT\",\"LGA\",-1.00,,0.00,\"\",1.00,,,544.00,,,,,,\n2015,5,31,\"US\",\"2069\",\"JFK\",\"CLT\",-4.00,-29.00,0.00,\"\",0.00,96.00,77.00,541.00,,,,,,\n2015,5,31,\"US\",\"2117\",\"DCA\",\"LGA\",-1.00,-1.00,0.00,\"\",0.00,69.00,47.00,214.00,,,,,,\n2015,5,31,\"US\",\"2118\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,31,\"US\",\"2118\",\"LGA\",\"BOS\",6.00,,1.00,\"A\",0.00,,,184.00,,,,,,\n2015,5,25,\"VX\",\"874\",\"DAL\",\"LGA\",,,1.00,\"C\",0.00,,,1381.00,,,,,,\n2015,5,26,\"VX\",\"11\",\"JFK\",\"SFO\",-4.00,-32.00,0.00,\"\",0.00,357.00,339.00,2586.00,,,,,,\n2015,5,26,\"VX\",\"12\",\"SFO\",\"JFK\",-2.00,-21.00,0.00,\"\",0.00,326.00,310.00,2586.00,,,,,,\n2015,5,26,\"VX\",\"22\",\"SFO\",\"JFK\",0.00,-5.00,0.00,\"\",0.00,339.00,316.00,2586.00,,,,,,\n2015,5,26,\"VX\",\"23\",\"JFK\",\"SFO\",-3.00,-28.00,0.00,\"\",0.00,360.00,331.00,2586.00,,,,,,\n2015,5,26,\"VX\",\"24\",\"SFO\",\"JFK\",59.00,34.00,0.00,\"\",0.00,320.00,297.00,2586.00,1.00,0.00,0.00,0.00,33.00,\n2015,5,26,\"VX\",\"251\",\"JFK\",\"LAS\",-6.00,-28.00,0.00,\"\",0.00,318.00,293.00,2248.00,,,,,,\n2015,5,26,\"VX\",\"25\",\"JFK\",\"SFO\",-10.00,-31.00,0.00,\"\",0.00,354.00,328.00,2586.00,,,,,,\n2015,5,26,\"VX\",\"260\",\"LAS\",\"JFK\",5.00,3.00,0.00,\"\",0.00,287.00,268.00,2248.00,,,,,,\n2015,5,26,\"VX\",\"26\",\"SFO\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,328.00,308.00,2586.00,,,,,,\n2015,5,26,\"VX\",\"27\",\"JFK\",\"SFO\",-2.00,-19.00,0.00,\"\",0.00,388.00,358.00,2586.00,,,,,,\n2015,5,26,\"VX\",\"29\",\"JFK\",\"SFO\",0.00,-42.00,0.00,\"\",0.00,363.00,334.00,2586.00,,,,,,\n2015,5,26,\"VX\",\"34\",\"SFO\",\"JFK\",-6.00,6.00,0.00,\"\",0.00,347.00,312.00,2586.00,,,,,,\n2015,5,26,\"VX\",\"399\",\"JFK\",\"LAX\",-1.00,-20.00,0.00,\"\",0.00,346.00,315.00,2475.00,,,,,,\n2015,5,26,\"VX\",\"404\",\"LAX\",\"JFK\",-3.00,-9.00,0.00,\"\",0.00,319.00,302.00,2475.00,,,,,,\n2015,5,26,\"VX\",\"406\",\"LAX\",\"JFK\",-1.00,-18.00,0.00,\"\",0.00,318.00,292.00,2475.00,,,,,,\n2015,5,26,\"VX\",\"407\",\"JFK\",\"LAX\",-5.00,-14.00,0.00,\"\",0.00,361.00,325.00,2475.00,,,,,,\n2015,5,26,\"VX\",\"411\",\"JFK\",\"LAX\",-2.00,-17.00,0.00,\"\",0.00,350.00,325.00,2475.00,,,,,,\n2015,5,26,\"VX\",\"412\",\"LAX\",\"JFK\",0.00,11.00,0.00,\"\",0.00,341.00,303.00,2475.00,,,,,,\n2015,5,26,\"VX\",\"413\",\"JFK\",\"LAX\",13.00,-3.00,0.00,\"\",0.00,375.00,342.00,2475.00,,,,,,\n2015,5,26,\"VX\",\"415\",\"JFK\",\"LAX\",-7.00,-21.00,0.00,\"\",0.00,366.00,323.00,2475.00,,,,,,\n2015,5,26,\"VX\",\"416\",\"LAX\",\"JFK\",-2.00,-1.00,0.00,\"\",0.00,321.00,292.00,2475.00,,,,,,\n2015,5,26,\"VX\",\"420\",\"LAX\",\"JFK\",-1.00,3.00,0.00,\"\",0.00,329.00,304.00,2475.00,,,,,,\n2015,5,26,\"VX\",\"710\",\"DAL\",\"LGA\",2.00,14.00,0.00,\"\",0.00,197.00,179.00,1381.00,,,,,,\n2015,5,26,\"VX\",\"715\",\"LGA\",\"DAL\",7.00,-28.00,0.00,\"\",0.00,205.00,185.00,1381.00,,,,,,\n2015,5,26,\"VX\",\"719\",\"LGA\",\"DAL\",-1.00,-21.00,0.00,\"\",0.00,220.00,200.00,1381.00,,,,,,\n2015,5,26,\"VX\",\"762\",\"DAL\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,186.00,169.00,1381.00,,,,,,\n2015,5,26,\"VX\",\"766\",\"DAL\",\"LGA\",-6.00,7.00,0.00,\"\",0.00,198.00,179.00,1381.00,,,,,,\n2015,5,26,\"VX\",\"769\",\"LGA\",\"DAL\",2.00,,0.00,\"\",1.00,,,1381.00,,,,,,\n2015,5,26,\"VX\",\"874\",\"DAL\",\"LGA\",8.00,18.00,0.00,\"\",0.00,195.00,178.00,1381.00,8.00,10.00,0.00,0.00,0.00,\n2015,5,26,\"VX\",\"879\",\"LGA\",\"DAL\",,,1.00,\"C\",0.00,,,1381.00,,,,,,\n2015,5,27,\"VX\",\"11\",\"JFK\",\"SFO\",-2.00,-23.00,0.00,\"\",0.00,364.00,341.00,2586.00,,,,,,\n2015,5,27,\"VX\",\"12\",\"SFO\",\"JFK\",-4.00,10.00,0.00,\"\",0.00,359.00,320.00,2586.00,,,,,,\n2015,5,27,\"VX\",\"22\",\"SFO\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,347.00,316.00,2586.00,,,,,,\n2015,5,27,\"VX\",\"23\",\"JFK\",\"SFO\",-5.00,-22.00,0.00,\"\",0.00,368.00,344.00,2586.00,,,,,,\n2015,5,27,\"VX\",\"24\",\"SFO\",\"JFK\",172.00,170.00,0.00,\"\",0.00,343.00,302.00,2586.00,0.00,0.00,170.00,0.00,0.00,\n2015,5,27,\"VX\",\"251\",\"JFK\",\"LAS\",-1.00,-9.00,0.00,\"\",0.00,332.00,299.00,2248.00,,,,,,\n2015,5,27,\"VX\",\"25\",\"JFK\",\"SFO\",-3.00,1.00,0.00,\"\",0.00,379.00,357.00,2586.00,,,,,,\n2015,5,27,\"VX\",\"260\",\"LAS\",\"JFK\",-2.00,0.00,0.00,\"\",0.00,291.00,268.00,2248.00,,,,,,\n2015,5,27,\"VX\",\"26\",\"SFO\",\"JFK\",4.00,-6.00,0.00,\"\",0.00,319.00,299.00,2586.00,,,,,,\n2015,5,27,\"VX\",\"27\",\"JFK\",\"SFO\",243.00,235.00,0.00,\"\",0.00,397.00,351.00,2586.00,0.00,0.00,227.00,0.00,8.00,\n2015,5,27,\"VX\",\"29\",\"JFK\",\"SFO\",-1.00,23.00,0.00,\"\",0.00,429.00,344.00,2586.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,27,\"VX\",\"34\",\"SFO\",\"JFK\",49.00,36.00,0.00,\"\",0.00,322.00,297.00,2586.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,27,\"VX\",\"399\",\"JFK\",\"LAX\",-5.00,-16.00,0.00,\"\",0.00,354.00,329.00,2475.00,,,,,,\n2015,5,27,\"VX\",\"404\",\"LAX\",\"JFK\",0.00,5.00,0.00,\"\",0.00,330.00,306.00,2475.00,,,,,,\n2015,5,27,\"VX\",\"406\",\"LAX\",\"JFK\",226.00,208.00,0.00,\"\",0.00,317.00,288.00,2475.00,0.00,0.00,208.00,0.00,0.00,\n2015,5,27,\"VX\",\"407\",\"JFK\",\"LAX\",-5.00,1.00,0.00,\"\",0.00,376.00,328.00,2475.00,,,,,,\n2015,5,27,\"VX\",\"411\",\"JFK\",\"LAX\",-3.00,6.00,0.00,\"\",0.00,374.00,334.00,2475.00,,,,,,\n2015,5,27,\"VX\",\"412\",\"LAX\",\"JFK\",189.00,168.00,0.00,\"\",0.00,309.00,289.00,2475.00,0.00,0.00,168.00,0.00,0.00,\n2015,5,27,\"VX\",\"413\",\"JFK\",\"LAX\",4.00,78.00,0.00,\"\",0.00,465.00,349.00,2475.00,4.00,0.00,74.00,0.00,0.00,\n2015,5,27,\"VX\",\"415\",\"JFK\",\"LAX\",209.00,181.00,0.00,\"\",0.00,352.00,329.00,2475.00,1.00,0.00,0.00,0.00,180.00,\n2015,5,27,\"VX\",\"416\",\"LAX\",\"JFK\",-1.00,17.00,0.00,\"\",0.00,338.00,299.00,2475.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,27,\"VX\",\"420\",\"LAX\",\"JFK\",-3.00,11.00,0.00,\"\",0.00,339.00,319.00,2475.00,,,,,,\n2015,5,27,\"VX\",\"710\",\"DAL\",\"LGA\",64.00,-12.00,0.00,\"\",0.00,310.00,259.00,1381.00,,,,,,\n2015,5,27,\"VX\",\"715\",\"LGA\",\"DAL\",15.00,-9.00,0.00,\"\",0.00,216.00,192.00,1381.00,,,,,,\n2015,5,27,\"VX\",\"719\",\"LGA\",\"DAL\",7.00,9.00,0.00,\"\",0.00,242.00,204.00,1381.00,,,,,,\n2015,5,27,\"VX\",\"762\",\"DAL\",\"LGA\",4.00,19.00,0.00,\"\",0.00,200.00,173.00,1381.00,4.00,15.00,0.00,0.00,0.00,\n2015,5,27,\"VX\",\"766\",\"DAL\",\"LGA\",-1.00,13.00,0.00,\"\",0.00,199.00,175.00,1381.00,,,,,,\n2015,5,27,\"VX\",\"769\",\"LGA\",\"DAL\",243.00,231.00,0.00,\"\",0.00,228.00,193.00,1381.00,104.00,0.00,0.00,0.00,127.00,\n2015,5,27,\"VX\",\"874\",\"DAL\",\"LGA\",144.00,182.00,0.00,\"\",0.00,223.00,180.00,1381.00,0.00,0.00,182.00,0.00,0.00,\n2015,5,27,\"VX\",\"879\",\"LGA\",\"DAL\",-8.00,-34.00,0.00,\"\",0.00,214.00,198.00,1381.00,,,,,,\n2015,5,28,\"VX\",\"11\",\"JFK\",\"SFO\",-7.00,-19.00,0.00,\"\",0.00,373.00,346.00,2586.00,,,,,,\n2015,5,28,\"VX\",\"12\",\"SFO\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,338.00,298.00,2586.00,,,,,,\n2015,5,28,\"VX\",\"22\",\"SFO\",\"JFK\",5.00,-3.00,0.00,\"\",0.00,336.00,307.00,2586.00,,,,,,\n2015,5,28,\"VX\",\"23\",\"JFK\",\"SFO\",-6.00,-25.00,0.00,\"\",0.00,366.00,343.00,2586.00,,,,,,\n2015,5,28,\"VX\",\"24\",\"SFO\",\"JFK\",48.00,38.00,0.00,\"\",0.00,335.00,305.00,2586.00,0.00,0.00,0.00,0.00,38.00,\n2015,5,28,\"VX\",\"251\",\"JFK\",\"LAS\",5.00,1.00,0.00,\"\",0.00,336.00,295.00,2248.00,,,,,,\n2015,5,28,\"VX\",\"25\",\"JFK\",\"SFO\",0.00,-13.00,0.00,\"\",0.00,362.00,341.00,2586.00,,,,,,\n2015,5,28,\"VX\",\"260\",\"LAS\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,273.00,254.00,2248.00,,,,,,\n2015,5,28,\"VX\",\"26\",\"SFO\",\"JFK\",-4.00,-13.00,0.00,\"\",0.00,320.00,301.00,2586.00,,,,,,\n2015,5,28,\"VX\",\"27\",\"JFK\",\"SFO\",-2.00,-40.00,0.00,\"\",0.00,367.00,340.00,2586.00,,,,,,\n2015,5,28,\"VX\",\"29\",\"JFK\",\"SFO\",-2.00,-18.00,0.00,\"\",0.00,389.00,354.00,2586.00,,,,,,\n2015,5,28,\"VX\",\"34\",\"SFO\",\"JFK\",46.00,27.00,0.00,\"\",0.00,316.00,292.00,2586.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,28,\"VX\",\"399\",\"JFK\",\"LAX\",0.00,-8.00,0.00,\"\",0.00,357.00,331.00,2475.00,,,,,,\n2015,5,28,\"VX\",\"404\",\"LAX\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,313.00,294.00,2475.00,,,,,,\n2015,5,28,\"VX\",\"406\",\"LAX\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,321.00,299.00,2475.00,,,,,,\n2015,5,28,\"VX\",\"407\",\"JFK\",\"LAX\",0.00,1.00,0.00,\"\",0.00,371.00,322.00,2475.00,,,,,,\n2015,5,28,\"VX\",\"411\",\"JFK\",\"LAX\",-5.00,-12.00,0.00,\"\",0.00,358.00,335.00,2475.00,,,,,,\n2015,5,28,\"VX\",\"412\",\"LAX\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,326.00,297.00,2475.00,,,,,,\n2015,5,28,\"VX\",\"413\",\"JFK\",\"LAX\",-1.00,-26.00,0.00,\"\",0.00,366.00,332.00,2475.00,,,,,,\n2015,5,28,\"VX\",\"415\",\"JFK\",\"LAX\",-11.00,-24.00,0.00,\"\",0.00,367.00,328.00,2475.00,,,,,,\n2015,5,28,\"VX\",\"416\",\"LAX\",\"JFK\",-8.00,-17.00,0.00,\"\",0.00,311.00,292.00,2475.00,,,,,,\n2015,5,28,\"VX\",\"420\",\"LAX\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,320.00,296.00,2475.00,,,,,,\n2015,5,28,\"VX\",\"710\",\"DAL\",\"LGA\",-2.00,33.00,0.00,\"\",0.00,220.00,193.00,1381.00,0.00,33.00,0.00,0.00,0.00,\n2015,5,28,\"VX\",\"715\",\"LGA\",\"DAL\",4.00,-3.00,0.00,\"\",0.00,233.00,197.00,1381.00,,,,,,\n2015,5,28,\"VX\",\"719\",\"LGA\",\"DAL\",-3.00,-18.00,0.00,\"\",0.00,225.00,197.00,1381.00,,,,,,\n2015,5,28,\"VX\",\"762\",\"DAL\",\"LGA\",-5.00,9.00,0.00,\"\",0.00,199.00,179.00,1381.00,,,,,,\n2015,5,28,\"VX\",\"766\",\"DAL\",\"LGA\",-8.00,5.00,0.00,\"\",0.00,198.00,178.00,1381.00,,,,,,\n2015,5,28,\"VX\",\"769\",\"LGA\",\"DAL\",17.00,-15.00,0.00,\"\",0.00,208.00,184.00,1381.00,,,,,,\n2015,5,28,\"VX\",\"874\",\"DAL\",\"LGA\",-2.00,15.00,0.00,\"\",0.00,202.00,184.00,1381.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,28,\"VX\",\"879\",\"LGA\",\"DAL\",-9.00,-47.00,0.00,\"\",0.00,202.00,187.00,1381.00,,,,,,\n2015,5,31,\"VX\",\"22\",\"SFO\",\"JFK\",156.00,153.00,0.00,\"\",0.00,341.00,309.00,2586.00,0.00,0.00,153.00,0.00,0.00,\n2015,5,31,\"VX\",\"23\",\"JFK\",\"SFO\",4.00,-29.00,0.00,\"\",0.00,352.00,334.00,2586.00,,,,,,\n2015,5,31,\"VX\",\"24\",\"SFO\",\"JFK\",246.00,238.00,0.00,\"\",0.00,337.00,312.00,2586.00,0.00,0.00,238.00,0.00,0.00,\n2015,5,31,\"VX\",\"251\",\"JFK\",\"LAS\",-7.00,-25.00,0.00,\"\",0.00,322.00,290.00,2248.00,,,,,,\n2015,5,31,\"VX\",\"25\",\"JFK\",\"SFO\",-8.00,-21.00,0.00,\"\",0.00,362.00,336.00,2586.00,,,,,,\n2015,5,31,\"VX\",\"260\",\"LAS\",\"JFK\",1.00,13.00,0.00,\"\",0.00,301.00,275.00,2248.00,,,,,,\n2015,5,31,\"VX\",\"26\",\"SFO\",\"JFK\",129.00,151.00,0.00,\"\",0.00,351.00,317.00,2586.00,0.00,22.00,129.00,0.00,0.00,\n2015,5,31,\"VX\",\"27\",\"JFK\",\"SFO\",-3.00,-28.00,0.00,\"\",0.00,380.00,333.00,2586.00,,,,,,\n2015,5,31,\"VX\",\"29\",\"JFK\",\"SFO\",181.00,246.00,0.00,\"\",0.00,470.00,354.00,2586.00,0.00,65.00,29.00,0.00,152.00,\n2015,5,31,\"VX\",\"34\",\"SFO\",\"JFK\",-3.00,-4.00,0.00,\"\",0.00,334.00,309.00,2586.00,,,,,,\n2015,5,31,\"VX\",\"399\",\"JFK\",\"LAX\",-2.00,-20.00,0.00,\"\",0.00,347.00,313.00,2475.00,,,,,,\n2015,5,31,\"VX\",\"404\",\"LAX\",\"JFK\",-1.00,-5.00,0.00,\"\",0.00,321.00,302.00,2475.00,,,,,,\n2015,5,31,\"VX\",\"406\",\"LAX\",\"JFK\",154.00,157.00,0.00,\"\",0.00,338.00,317.00,2475.00,0.00,0.00,157.00,0.00,0.00,\n2015,5,31,\"VX\",\"407\",\"JFK\",\"LAX\",7.00,-9.00,0.00,\"\",0.00,354.00,314.00,2475.00,,,,,,\n2015,5,31,\"VX\",\"411\",\"JFK\",\"LAX\",-3.00,-12.00,0.00,\"\",0.00,356.00,326.00,2475.00,,,,,,\n2015,5,31,\"VX\",\"412\",\"LAX\",\"JFK\",244.00,241.00,0.00,\"\",0.00,327.00,306.00,2475.00,0.00,0.00,241.00,0.00,0.00,\n2015,5,31,\"VX\",\"413\",\"JFK\",\"LAX\",-2.00,-23.00,0.00,\"\",0.00,370.00,316.00,2475.00,,,,,,\n2015,5,31,\"VX\",\"415\",\"JFK\",\"LAX\",157.00,214.00,0.00,\"\",0.00,437.00,330.00,2475.00,0.00,57.00,0.00,0.00,157.00,\n2015,5,31,\"VX\",\"416\",\"LAX\",\"JFK\",143.00,173.00,0.00,\"\",0.00,350.00,310.00,2475.00,0.00,37.00,136.00,0.00,0.00,\n2015,5,31,\"VX\",\"420\",\"LAX\",\"JFK\",2.00,6.00,0.00,\"\",0.00,329.00,306.00,2475.00,,,,,,\n2015,5,31,\"VX\",\"715\",\"LGA\",\"DAL\",-8.00,-16.00,0.00,\"\",0.00,232.00,193.00,1381.00,,,,,,\n2015,5,31,\"VX\",\"719\",\"LGA\",\"DAL\",288.00,325.00,0.00,\"\",0.00,277.00,197.00,1381.00,0.00,37.00,287.00,0.00,1.00,\n2015,5,31,\"VX\",\"766\",\"DAL\",\"LGA\",-1.00,8.00,0.00,\"\",0.00,194.00,175.00,1381.00,,,,,,\n2015,5,31,\"VX\",\"769\",\"LGA\",\"DAL\",,,1.00,\"A\",0.00,,,1381.00,,,,,,\n2015,5,31,\"VX\",\"874\",\"DAL\",\"LGA\",288.00,327.00,0.00,\"\",0.00,224.00,201.00,1381.00,0.00,39.00,288.00,0.00,0.00,\n2015,5,4,\"VX\",\"11\",\"JFK\",\"SFO\",-1.00,-19.00,0.00,\"\",0.00,367.00,344.00,2586.00,,,,,,\n2015,5,4,\"VX\",\"12\",\"SFO\",\"JFK\",-4.00,-20.00,0.00,\"\",0.00,329.00,312.00,2586.00,,,,,,\n2015,5,4,\"VX\",\"22\",\"SFO\",\"JFK\",-5.00,-17.00,0.00,\"\",0.00,332.00,307.00,2586.00,,,,,,\n2015,5,4,\"VX\",\"23\",\"JFK\",\"SFO\",2.00,-25.00,0.00,\"\",0.00,358.00,332.00,2586.00,,,,,,\n2015,5,4,\"VX\",\"251\",\"JFK\",\"LAS\",19.00,14.00,0.00,\"\",0.00,335.00,302.00,2248.00,,,,,,\n2015,5,4,\"VX\",\"260\",\"LAS\",\"JFK\",-1.00,7.00,0.00,\"\",0.00,297.00,275.00,2248.00,,,,,,\n2015,5,4,\"VX\",\"26\",\"SFO\",\"JFK\",68.00,71.00,0.00,\"\",0.00,337.00,306.00,2586.00,3.00,0.00,0.00,0.00,68.00,\n2015,5,4,\"VX\",\"27\",\"JFK\",\"SFO\",2.00,-12.00,0.00,\"\",0.00,391.00,358.00,2586.00,,,,,,\n2015,5,4,\"VX\",\"29\",\"JFK\",\"SFO\",-2.00,5.00,0.00,\"\",0.00,412.00,376.00,2586.00,,,,,,\n2015,5,4,\"VX\",\"34\",\"SFO\",\"JFK\",6.00,-4.00,0.00,\"\",0.00,325.00,300.00,2586.00,,,,,,\n2015,5,4,\"VX\",\"399\",\"JFK\",\"LAX\",-13.00,-39.00,0.00,\"\",0.00,339.00,315.00,2475.00,,,,,,\n2015,5,4,\"VX\",\"404\",\"LAX\",\"JFK\",0.00,-12.00,0.00,\"\",0.00,313.00,295.00,2475.00,,,,,,\n2015,5,4,\"VX\",\"406\",\"LAX\",\"JFK\",0.00,-9.00,0.00,\"\",0.00,326.00,302.00,2475.00,,,,,,\n2015,5,4,\"VX\",\"407\",\"JFK\",\"LAX\",-6.00,-15.00,0.00,\"\",0.00,361.00,311.00,2475.00,,,,,,\n2015,5,4,\"VX\",\"411\",\"JFK\",\"LAX\",-2.00,-22.00,0.00,\"\",0.00,345.00,315.00,2475.00,,,,,,\n2015,5,4,\"VX\",\"413\",\"JFK\",\"LAX\",43.00,5.00,0.00,\"\",0.00,353.00,317.00,2475.00,,,,,,\n2015,5,4,\"VX\",\"415\",\"JFK\",\"LAX\",-6.00,-26.00,0.00,\"\",0.00,360.00,313.00,2475.00,,,,,,\n2015,5,4,\"VX\",\"416\",\"LAX\",\"JFK\",6.00,14.00,0.00,\"\",0.00,328.00,301.00,2475.00,,,,,,\n2015,5,4,\"VX\",\"418\",\"LAX\",\"JFK\",0.00,11.00,0.00,\"\",0.00,325.00,306.00,2475.00,,,,,,\n2015,5,4,\"VX\",\"420\",\"LAX\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,317.00,297.00,2475.00,,,,,,\n2015,5,4,\"VX\",\"710\",\"DAL\",\"LGA\",-5.00,8.00,0.00,\"\",0.00,198.00,179.00,1381.00,,,,,,\n2015,5,4,\"VX\",\"715\",\"LGA\",\"DAL\",-1.00,-38.00,0.00,\"\",0.00,203.00,182.00,1381.00,,,,,,\n2015,5,4,\"VX\",\"719\",\"LGA\",\"DAL\",9.00,-22.00,0.00,\"\",0.00,209.00,177.00,1381.00,,,,,,\n2015,5,4,\"VX\",\"762\",\"DAL\",\"LGA\",-9.00,8.00,0.00,\"\",0.00,202.00,181.00,1381.00,,,,,,\n2015,5,4,\"VX\",\"766\",\"DAL\",\"LGA\",-6.00,13.00,0.00,\"\",0.00,204.00,180.00,1381.00,,,,,,\n2015,5,4,\"VX\",\"769\",\"LGA\",\"DAL\",-8.00,-43.00,0.00,\"\",0.00,205.00,186.00,1381.00,,,,,,\n2015,5,4,\"VX\",\"874\",\"DAL\",\"LGA\",14.00,32.00,0.00,\"\",0.00,203.00,182.00,1381.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"VX\",\"879\",\"LGA\",\"DAL\",-11.00,-51.00,0.00,\"\",0.00,200.00,182.00,1381.00,,,,,,\n2015,5,5,\"VX\",\"11\",\"JFK\",\"SFO\",-6.00,-35.00,0.00,\"\",0.00,356.00,331.00,2586.00,,,,,,\n2015,5,5,\"VX\",\"12\",\"SFO\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,340.00,310.00,2586.00,,,,,,\n2015,5,5,\"VX\",\"22\",\"SFO\",\"JFK\",6.00,2.00,0.00,\"\",0.00,340.00,310.00,2586.00,,,,,,\n2015,5,5,\"VX\",\"23\",\"JFK\",\"SFO\",-7.00,-33.00,0.00,\"\",0.00,359.00,334.00,2586.00,,,,,,\n2015,5,5,\"VX\",\"251\",\"JFK\",\"LAS\",-6.00,-42.00,0.00,\"\",0.00,304.00,283.00,2248.00,,,,,,\n2015,5,5,\"VX\",\"260\",\"LAS\",\"JFK\",2.00,5.00,0.00,\"\",0.00,292.00,271.00,2248.00,,,,,,\n2015,5,5,\"VX\",\"26\",\"SFO\",\"JFK\",-4.00,-8.00,0.00,\"\",0.00,330.00,311.00,2586.00,,,,,,\n2015,5,5,\"VX\",\"27\",\"JFK\",\"SFO\",-5.00,-30.00,0.00,\"\",0.00,380.00,357.00,2586.00,,,,,,\n2015,5,5,\"VX\",\"29\",\"JFK\",\"SFO\",7.00,-5.00,0.00,\"\",0.00,393.00,360.00,2586.00,,,,,,\n2015,5,5,\"VX\",\"34\",\"SFO\",\"JFK\",-4.00,-1.00,0.00,\"\",0.00,338.00,306.00,2586.00,,,,,,\n2015,5,5,\"VX\",\"399\",\"JFK\",\"LAX\",-9.00,-35.00,0.00,\"\",0.00,339.00,311.00,2475.00,,,,,,\n2015,5,5,\"VX\",\"404\",\"LAX\",\"JFK\",-2.00,-7.00,0.00,\"\",0.00,320.00,302.00,2475.00,,,,,,\n2015,5,5,\"VX\",\"406\",\"LAX\",\"JFK\",7.00,-4.00,0.00,\"\",0.00,324.00,299.00,2475.00,,,,,,\n2015,5,5,\"VX\",\"407\",\"JFK\",\"LAX\",-2.00,-19.00,0.00,\"\",0.00,353.00,316.00,2475.00,,,,,,\n2015,5,5,\"VX\",\"411\",\"JFK\",\"LAX\",-7.00,-41.00,0.00,\"\",0.00,331.00,315.00,2475.00,,,,,,\n2015,5,5,\"VX\",\"412\",\"LAX\",\"JFK\",0.00,-10.00,0.00,\"\",0.00,320.00,301.00,2475.00,,,,,,\n2015,5,5,\"VX\",\"413\",\"JFK\",\"LAX\",2.00,-39.00,0.00,\"\",0.00,350.00,321.00,2475.00,,,,,,\n2015,5,5,\"VX\",\"415\",\"JFK\",\"LAX\",2.00,-44.00,0.00,\"\",0.00,334.00,308.00,2475.00,,,,,,\n2015,5,5,\"VX\",\"416\",\"LAX\",\"JFK\",-6.00,-1.00,0.00,\"\",0.00,325.00,296.00,2475.00,,,,,,\n2015,5,5,\"VX\",\"418\",\"LAX\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,312.00,297.00,2475.00,,,,,,\n2015,5,5,\"VX\",\"420\",\"LAX\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,323.00,303.00,2475.00,,,,,,\n2015,5,5,\"VX\",\"710\",\"DAL\",\"LGA\",-1.00,14.00,0.00,\"\",0.00,200.00,181.00,1381.00,,,,,,\n2015,5,5,\"VX\",\"715\",\"LGA\",\"DAL\",1.00,-35.00,0.00,\"\",0.00,204.00,180.00,1381.00,,,,,,\n2015,5,5,\"VX\",\"719\",\"LGA\",\"DAL\",7.00,-16.00,0.00,\"\",0.00,217.00,193.00,1381.00,,,,,,\n2015,5,5,\"VX\",\"762\",\"DAL\",\"LGA\",-3.00,14.00,0.00,\"\",0.00,202.00,180.00,1381.00,,,,,,\n2015,5,5,\"VX\",\"766\",\"DAL\",\"LGA\",-7.00,15.00,0.00,\"\",0.00,207.00,182.00,1381.00,0.00,15.00,0.00,0.00,0.00,\n2015,5,5,\"VX\",\"769\",\"LGA\",\"DAL\",-6.00,-45.00,0.00,\"\",0.00,201.00,183.00,1381.00,,,,,,\n2015,5,5,\"VX\",\"874\",\"DAL\",\"LGA\",-3.00,25.00,0.00,\"\",0.00,213.00,186.00,1381.00,0.00,25.00,0.00,0.00,0.00,\n2015,5,5,\"VX\",\"879\",\"LGA\",\"DAL\",-10.00,-50.00,0.00,\"\",0.00,200.00,183.00,1381.00,,,,,,\n2015,5,6,\"VX\",\"11\",\"JFK\",\"SFO\",-5.00,-28.00,0.00,\"\",0.00,362.00,334.00,2586.00,,,,,,\n2015,5,6,\"VX\",\"12\",\"SFO\",\"JFK\",-3.00,-21.00,0.00,\"\",0.00,327.00,310.00,2586.00,,,,,,\n2015,5,6,\"VX\",\"22\",\"SFO\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,340.00,319.00,2586.00,,,,,,\n2015,5,6,\"VX\",\"23\",\"JFK\",\"SFO\",-6.00,-41.00,0.00,\"\",0.00,350.00,331.00,2586.00,,,,,,\n2015,5,6,\"VX\",\"251\",\"JFK\",\"LAS\",-8.00,-24.00,0.00,\"\",0.00,324.00,285.00,2248.00,,,,,,\n2015,5,6,\"VX\",\"260\",\"LAS\",\"JFK\",53.00,63.00,0.00,\"\",0.00,299.00,274.00,2248.00,63.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"VX\",\"26\",\"SFO\",\"JFK\",-5.00,16.00,0.00,\"\",0.00,355.00,324.00,2586.00,0.00,16.00,0.00,0.00,0.00,\n2015,5,6,\"VX\",\"27\",\"JFK\",\"SFO\",-4.00,-21.00,0.00,\"\",0.00,388.00,350.00,2586.00,,,,,,\n2015,5,6,\"VX\",\"29\",\"JFK\",\"SFO\",-6.00,-32.00,0.00,\"\",0.00,379.00,348.00,2586.00,,,,,,\n2015,5,6,\"VX\",\"34\",\"SFO\",\"JFK\",-6.00,3.00,0.00,\"\",0.00,344.00,314.00,2586.00,,,,,,\n2015,5,6,\"VX\",\"399\",\"JFK\",\"LAX\",-9.00,-25.00,0.00,\"\",0.00,349.00,319.00,2475.00,,,,,,\n2015,5,6,\"VX\",\"404\",\"LAX\",\"JFK\",4.00,5.00,0.00,\"\",0.00,326.00,302.00,2475.00,,,,,,\n2015,5,6,\"VX\",\"406\",\"LAX\",\"JFK\",-2.00,0.00,0.00,\"\",0.00,337.00,317.00,2475.00,,,,,,\n2015,5,6,\"VX\",\"407\",\"JFK\",\"LAX\",-9.00,-10.00,0.00,\"\",0.00,369.00,318.00,2475.00,,,,,,\n2015,5,6,\"VX\",\"409\",\"JFK\",\"LAX\",-4.00,-27.00,0.00,\"\",0.00,342.00,319.00,2475.00,,,,,,\n2015,5,6,\"VX\",\"411\",\"JFK\",\"LAX\",-7.00,-25.00,0.00,\"\",0.00,347.00,318.00,2475.00,,,,,,\n2015,5,6,\"VX\",\"412\",\"LAX\",\"JFK\",-3.00,-2.00,0.00,\"\",0.00,331.00,309.00,2475.00,,,,,,\n2015,5,6,\"VX\",\"413\",\"JFK\",\"LAX\",-2.00,-48.00,0.00,\"\",0.00,345.00,313.00,2475.00,,,,,,\n2015,5,6,\"VX\",\"415\",\"JFK\",\"LAX\",-2.00,-19.00,0.00,\"\",0.00,363.00,332.00,2475.00,,,,,,\n2015,5,6,\"VX\",\"416\",\"LAX\",\"JFK\",-5.00,-7.00,0.00,\"\",0.00,318.00,302.00,2475.00,,,,,,\n2015,5,6,\"VX\",\"420\",\"LAX\",\"JFK\",0.00,16.00,0.00,\"\",0.00,341.00,315.00,2475.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,6,\"VX\",\"710\",\"DAL\",\"LGA\",0.00,6.00,0.00,\"\",0.00,191.00,176.00,1381.00,,,,,,\n2015,5,6,\"VX\",\"715\",\"LGA\",\"DAL\",-6.00,-15.00,0.00,\"\",0.00,231.00,183.00,1381.00,,,,,,\n2015,5,6,\"VX\",\"719\",\"LGA\",\"DAL\",9.00,7.00,0.00,\"\",0.00,238.00,187.00,1381.00,,,,,,\n2015,5,6,\"VX\",\"762\",\"DAL\",\"LGA\",-9.00,2.00,0.00,\"\",0.00,196.00,180.00,1381.00,,,,,,\n2015,5,6,\"VX\",\"766\",\"DAL\",\"LGA\",-2.00,10.00,0.00,\"\",0.00,197.00,181.00,1381.00,,,,,,\n2015,5,6,\"VX\",\"769\",\"LGA\",\"DAL\",5.00,-7.00,0.00,\"\",0.00,228.00,178.00,1381.00,,,,,,\n2015,5,6,\"VX\",\"874\",\"DAL\",\"LGA\",-8.00,8.00,0.00,\"\",0.00,201.00,183.00,1381.00,,,,,,\n2015,5,6,\"VX\",\"879\",\"LGA\",\"DAL\",-9.00,-43.00,0.00,\"\",0.00,206.00,185.00,1381.00,,,,,,\n2015,5,7,\"VX\",\"11\",\"JFK\",\"SFO\",-4.00,-29.00,0.00,\"\",0.00,360.00,333.00,2586.00,,,,,,\n2015,5,7,\"VX\",\"12\",\"SFO\",\"JFK\",-1.00,-12.00,0.00,\"\",0.00,334.00,318.00,2586.00,,,,,,\n2015,5,7,\"VX\",\"22\",\"SFO\",\"JFK\",-4.00,-4.00,0.00,\"\",0.00,344.00,316.00,2586.00,,,,,,\n2015,5,7,\"VX\",\"23\",\"JFK\",\"SFO\",17.00,-19.00,0.00,\"\",0.00,349.00,328.00,2586.00,,,,,,\n2015,5,7,\"VX\",\"251\",\"JFK\",\"LAS\",-1.00,-15.00,0.00,\"\",0.00,326.00,294.00,2248.00,,,,,,\n2015,5,7,\"VX\",\"260\",\"LAS\",\"JFK\",21.00,91.00,0.00,\"\",0.00,359.00,315.00,2248.00,70.00,0.00,0.00,0.00,21.00,\n2015,5,7,\"VX\",\"26\",\"SFO\",\"JFK\",48.00,36.00,0.00,\"\",0.00,322.00,303.00,2586.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"VX\",\"27\",\"JFK\",\"SFO\",1.00,-37.00,0.00,\"\",0.00,367.00,339.00,2586.00,,,,,,\n2015,5,7,\"VX\",\"29\",\"JFK\",\"SFO\",-4.00,-29.00,0.00,\"\",0.00,380.00,340.00,2586.00,,,,,,\n2015,5,7,\"VX\",\"34\",\"SFO\",\"JFK\",-2.00,19.00,0.00,\"\",0.00,356.00,334.00,2586.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,7,\"VX\",\"399\",\"JFK\",\"LAX\",-11.00,-30.00,0.00,\"\",0.00,346.00,317.00,2475.00,,,,,,\n2015,5,7,\"VX\",\"404\",\"LAX\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,305.00,289.00,2475.00,,,,,,\n2015,5,7,\"VX\",\"406\",\"LAX\",\"JFK\",8.00,-7.00,0.00,\"\",0.00,320.00,301.00,2475.00,,,,,,\n2015,5,7,\"VX\",\"407\",\"JFK\",\"LAX\",16.00,0.00,0.00,\"\",0.00,354.00,327.00,2475.00,,,,,,\n2015,5,7,\"VX\",\"411\",\"JFK\",\"LAX\",-5.00,0.00,0.00,\"\",0.00,370.00,338.00,2475.00,,,,,,\n2015,5,7,\"VX\",\"412\",\"LAX\",\"JFK\",-2.00,-3.00,0.00,\"\",0.00,329.00,300.00,2475.00,,,,,,\n2015,5,7,\"VX\",\"413\",\"JFK\",\"LAX\",0.00,15.00,0.00,\"\",0.00,406.00,370.00,2475.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,7,\"VX\",\"415\",\"JFK\",\"LAX\",-4.00,20.00,0.00,\"\",0.00,404.00,335.00,2475.00,0.00,20.00,0.00,0.00,0.00,\n2015,5,7,\"VX\",\"416\",\"LAX\",\"JFK\",92.00,94.00,0.00,\"\",0.00,322.00,298.00,2475.00,94.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"VX\",\"420\",\"LAX\",\"JFK\",41.00,53.00,0.00,\"\",0.00,337.00,315.00,2475.00,53.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"VX\",\"710\",\"DAL\",\"LGA\",10.00,24.00,0.00,\"\",0.00,199.00,179.00,1381.00,14.00,0.00,0.00,0.00,10.00,\n2015,5,7,\"VX\",\"715\",\"LGA\",\"DAL\",22.00,-15.00,0.00,\"\",0.00,203.00,182.00,1381.00,,,,,,\n2015,5,7,\"VX\",\"719\",\"LGA\",\"DAL\",-5.00,-39.00,0.00,\"\",0.00,206.00,186.00,1381.00,,,,,,\n2015,5,7,\"VX\",\"762\",\"DAL\",\"LGA\",3.00,17.00,0.00,\"\",0.00,199.00,180.00,1381.00,3.00,14.00,0.00,0.00,0.00,\n2015,5,7,\"VX\",\"766\",\"DAL\",\"LGA\",-7.00,2.00,0.00,\"\",0.00,194.00,178.00,1381.00,,,,,,\n2015,5,7,\"VX\",\"769\",\"LGA\",\"DAL\",16.00,-11.00,0.00,\"\",0.00,213.00,189.00,1381.00,,,,,,\n2015,5,7,\"VX\",\"874\",\"DAL\",\"LGA\",-2.00,15.00,0.00,\"\",0.00,202.00,182.00,1381.00,0.00,15.00,0.00,0.00,0.00,\n2015,5,7,\"VX\",\"879\",\"LGA\",\"DAL\",2.00,-20.00,0.00,\"\",0.00,218.00,193.00,1381.00,,,,,,\n2015,5,8,\"VX\",\"11\",\"JFK\",\"SFO\",49.00,23.00,0.00,\"\",0.00,359.00,330.00,2586.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"VX\",\"12\",\"SFO\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,341.00,318.00,2586.00,,,,,,\n2015,5,1,\"WN\",\"178\",\"LGA\",\"ATL\",10.00,-15.00,0.00,\"\",0.00,135.00,100.00,762.00,,,,,,\n2015,5,1,\"WN\",\"2939\",\"LGA\",\"ATL\",-2.00,-30.00,0.00,\"\",0.00,142.00,106.00,762.00,,,,,,\n2015,5,1,\"WN\",\"3133\",\"LGA\",\"ATL\",-2.00,-27.00,0.00,\"\",0.00,135.00,106.00,762.00,,,,,,\n2015,5,1,\"WN\",\"3391\",\"LGA\",\"ATL\",-1.00,-19.00,0.00,\"\",0.00,142.00,100.00,762.00,,,,,,\n2015,5,1,\"WN\",\"4728\",\"LGA\",\"ATL\",3.00,-30.00,0.00,\"\",0.00,142.00,100.00,762.00,,,,,,\n2015,5,1,\"WN\",\"914\",\"LGA\",\"BNA\",6.00,-9.00,0.00,\"\",0.00,135.00,103.00,764.00,,,,,,\n2015,5,1,\"WN\",\"1208\",\"LGA\",\"BNA\",0.00,-32.00,0.00,\"\",0.00,123.00,106.00,764.00,,,,,,\n2015,5,1,\"WN\",\"1370\",\"LGA\",\"BNA\",-4.00,-25.00,0.00,\"\",0.00,144.00,106.00,764.00,,,,,,\n2015,5,1,\"WN\",\"202\",\"LGA\",\"CAK\",0.00,-7.00,0.00,\"\",0.00,93.00,61.00,397.00,,,,,,\n2015,5,1,\"WN\",\"534\",\"LGA\",\"CAK\",-9.00,-26.00,0.00,\"\",0.00,83.00,61.00,397.00,,,,,,\n2015,5,1,\"WN\",\"255\",\"LGA\",\"DAL\",-6.00,-35.00,0.00,\"\",0.00,216.00,177.00,1381.00,,,,,,\n2015,5,1,\"WN\",\"431\",\"LGA\",\"DAL\",-1.00,-34.00,0.00,\"\",0.00,207.00,177.00,1381.00,,,,,,\n2015,5,1,\"WN\",\"2347\",\"LGA\",\"DAL\",2.00,-38.00,0.00,\"\",0.00,205.00,181.00,1381.00,,,,,,\n2015,5,1,\"WN\",\"3489\",\"LGA\",\"DAL\",-7.00,-31.00,0.00,\"\",0.00,206.00,182.00,1381.00,,,,,,\n2015,5,1,\"WN\",\"12\",\"LGA\",\"DEN\",10.00,5.00,0.00,\"\",0.00,270.00,232.00,1620.00,,,,,,\n2015,5,1,\"WN\",\"165\",\"LGA\",\"DEN\",-3.00,-14.00,0.00,\"\",0.00,264.00,217.00,1620.00,,,,,,\n2015,5,1,\"WN\",\"682\",\"LGA\",\"HOU\",9.00,0.00,0.00,\"\",0.00,231.00,191.00,1428.00,,,,,,\n2015,5,1,\"WN\",\"2778\",\"LGA\",\"HOU\",3.00,-38.00,0.00,\"\",0.00,209.00,193.00,1428.00,,,,,,\n2015,5,1,\"WN\",\"3845\",\"LGA\",\"HOU\",-3.00,-31.00,0.00,\"\",0.00,212.00,192.00,1428.00,,,,,,\n2015,5,1,\"WN\",\"413\",\"LGA\",\"MCI\",-6.00,-40.00,0.00,\"\",0.00,166.00,150.00,1107.00,,,,,,\n2015,5,1,\"WN\",\"479\",\"LGA\",\"MDW\",-6.00,-31.00,0.00,\"\",0.00,120.00,101.00,725.00,,,,,,\n2015,5,1,\"WN\",\"777\",\"LGA\",\"MDW\",6.00,-26.00,0.00,\"\",0.00,123.00,104.00,725.00,,,,,,\n2015,5,1,\"WN\",\"868\",\"LGA\",\"MDW\",7.00,-14.00,0.00,\"\",0.00,139.00,104.00,725.00,,,,,,\n2015,5,1,\"WN\",\"2516\",\"LGA\",\"MDW\",0.00,-31.00,0.00,\"\",0.00,129.00,104.00,725.00,,,,,,\n2015,5,1,\"WN\",\"2529\",\"LGA\",\"MDW\",13.00,9.00,0.00,\"\",0.00,146.00,100.00,725.00,,,,,,\n2015,5,1,\"WN\",\"2659\",\"LGA\",\"MDW\",5.00,-14.00,0.00,\"\",0.00,136.00,101.00,725.00,,,,,,\n2015,5,1,\"WN\",\"4123\",\"LGA\",\"MDW\",-3.00,-24.00,0.00,\"\",0.00,129.00,101.00,725.00,,,,,,\n2015,5,1,\"WN\",\"1344\",\"LGA\",\"MKE\",-7.00,-35.00,0.00,\"\",0.00,122.00,104.00,738.00,,,,,,\n2015,5,1,\"WN\",\"2433\",\"LGA\",\"MKE\",-5.00,-22.00,0.00,\"\",0.00,138.00,108.00,738.00,,,,,,\n2015,5,1,\"WN\",\"4379\",\"LGA\",\"MKE\",-8.00,-34.00,0.00,\"\",0.00,119.00,100.00,738.00,,,,,,\n2015,5,1,\"WN\",\"536\",\"LGA\",\"STL\",3.00,-35.00,0.00,\"\",0.00,142.00,121.00,888.00,,,,,,\n2015,5,1,\"WN\",\"2168\",\"LGA\",\"STL\",-1.00,-8.00,0.00,\"\",0.00,153.00,124.00,888.00,,,,,,\n2015,5,1,\"WN\",\"4571\",\"LGA\",\"STL\",-2.00,-21.00,0.00,\"\",0.00,151.00,124.00,888.00,,,,,,\n2015,5,1,\"WN\",\"333\",\"MCI\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,163.00,142.00,1107.00,,,,,,\n2015,5,1,\"WN\",\"1011\",\"MCO\",\"ALB\",-3.00,-13.00,0.00,\"\",0.00,155.00,138.00,1073.00,,,,,,\n2015,5,1,\"WN\",\"2849\",\"MCO\",\"ALB\",-6.00,-8.00,0.00,\"\",0.00,158.00,127.00,1073.00,,,,,,\n2015,5,1,\"WN\",\"728\",\"MCO\",\"BUF\",17.00,13.00,0.00,\"\",0.00,151.00,134.00,1011.00,,,,,,\n2015,5,1,\"WN\",\"801\",\"MCO\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,146.00,130.00,1011.00,,,,,,\n2015,5,1,\"WN\",\"2423\",\"MCO\",\"BUF\",-3.00,-16.00,0.00,\"\",0.00,142.00,128.00,1011.00,,,,,,\n2015,5,1,\"WN\",\"2632\",\"MCO\",\"BUF\",-3.00,-7.00,0.00,\"\",0.00,151.00,125.00,1011.00,,,,,,\n2015,5,1,\"WN\",\"293\",\"MCO\",\"ISP\",-6.00,-18.00,0.00,\"\",0.00,143.00,128.00,971.00,,,,,,\n2015,5,1,\"WN\",\"325\",\"MCO\",\"ISP\",-3.00,-13.00,0.00,\"\",0.00,140.00,124.00,971.00,,,,,,\n2015,5,1,\"WN\",\"426\",\"MCO\",\"ISP\",-5.00,-19.00,0.00,\"\",0.00,136.00,122.00,971.00,,,,,,\n2015,5,1,\"WN\",\"4486\",\"MCO\",\"ISP\",-4.00,-8.00,0.00,\"\",0.00,146.00,123.00,971.00,,,,,,\n2015,5,1,\"WN\",\"3935\",\"MCO\",\"ROC\",-7.00,-18.00,0.00,\"\",0.00,144.00,127.00,1033.00,,,,,,\n2015,5,1,\"WN\",\"103\",\"MDW\",\"ALB\",-4.00,-7.00,0.00,\"\",0.00,112.00,93.00,717.00,,,,,,\n2015,5,1,\"WN\",\"1461\",\"MDW\",\"ALB\",-3.00,-8.00,0.00,\"\",0.00,110.00,92.00,717.00,,,,,,\n2015,5,1,\"WN\",\"134\",\"MDW\",\"BUF\",-1.00,-14.00,0.00,\"\",0.00,77.00,67.00,468.00,,,,,,\n2015,5,1,\"WN\",\"615\",\"MDW\",\"BUF\",-2.00,-16.00,0.00,\"\",0.00,76.00,65.00,468.00,,,,,,\n2015,5,1,\"WN\",\"2241\",\"MDW\",\"BUF\",-6.00,-28.00,0.00,\"\",0.00,78.00,63.00,468.00,,,,,,\n2015,5,1,\"WN\",\"178\",\"MDW\",\"LGA\",8.00,1.00,0.00,\"\",0.00,123.00,104.00,725.00,,,,,,\n2015,5,1,\"WN\",\"682\",\"MDW\",\"LGA\",0.00,0.00,0.00,\"\",0.00,125.00,101.00,725.00,,,,,,\n2015,5,1,\"WN\",\"803\",\"MDW\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,128.00,102.00,725.00,,,,,,\n2015,5,1,\"WN\",\"1713\",\"MDW\",\"LGA\",3.00,9.00,0.00,\"\",0.00,131.00,99.00,725.00,,,,,,\n2015,5,1,\"WN\",\"1945\",\"MDW\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,117.00,101.00,725.00,,,,,,\n2015,5,1,\"WN\",\"2778\",\"MDW\",\"LGA\",288.00,292.00,0.00,\"\",0.00,129.00,99.00,725.00,282.00,0.00,4.00,0.00,6.00,\n2015,5,1,\"WN\",\"4365\",\"MDW\",\"LGA\",-7.00,-20.00,0.00,\"\",0.00,117.00,98.00,725.00,,,,,,\n2015,5,1,\"WN\",\"292\",\"MDW\",\"ROC\",-6.00,-4.00,0.00,\"\",0.00,92.00,73.00,523.00,,,,,,\n2015,5,1,\"WN\",\"2229\",\"MDW\",\"ROC\",0.00,6.00,0.00,\"\",0.00,101.00,75.00,523.00,,,,,,\n2015,5,1,\"WN\",\"202\",\"MKE\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,122.00,107.00,738.00,,,,,,\n2015,5,1,\"WN\",\"1208\",\"MKE\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,125.00,107.00,738.00,,,,,,\n2015,5,1,\"WN\",\"3391\",\"MKE\",\"LGA\",12.00,2.00,0.00,\"\",0.00,120.00,104.00,738.00,,,,,,\n2015,5,13,\"VX\",\"11\",\"JFK\",\"SFO\",28.00,33.00,0.00,\"\",0.00,390.00,360.00,2586.00,28.00,5.00,0.00,0.00,0.00,\n2015,5,13,\"VX\",\"12\",\"SFO\",\"JFK\",2.00,-18.00,0.00,\"\",0.00,325.00,292.00,2586.00,,,,,,\n2015,5,13,\"VX\",\"22\",\"SFO\",\"JFK\",-1.00,-25.00,0.00,\"\",0.00,320.00,290.00,2586.00,,,,,,\n2015,5,13,\"VX\",\"23\",\"JFK\",\"SFO\",-5.00,-13.00,0.00,\"\",0.00,377.00,357.00,2586.00,,,,,,\n2015,5,13,\"VX\",\"251\",\"JFK\",\"LAS\",-7.00,11.00,0.00,\"\",0.00,358.00,314.00,2248.00,,,,,,\n2015,5,13,\"VX\",\"260\",\"LAS\",\"JFK\",-6.00,-5.00,0.00,\"\",0.00,290.00,265.00,2248.00,,,,,,\n2015,5,13,\"VX\",\"26\",\"SFO\",\"JFK\",20.00,4.00,0.00,\"\",0.00,318.00,296.00,2586.00,,,,,,\n2015,5,13,\"VX\",\"27\",\"JFK\",\"SFO\",0.00,-21.00,0.00,\"\",0.00,384.00,354.00,2586.00,,,,,,\n2015,5,13,\"VX\",\"29\",\"JFK\",\"SFO\",-7.00,-27.00,0.00,\"\",0.00,385.00,349.00,2586.00,,,,,,\n2015,5,13,\"VX\",\"34\",\"SFO\",\"JFK\",-2.00,-6.00,0.00,\"\",0.00,331.00,293.00,2586.00,,,,,,\n2015,5,13,\"VX\",\"399\",\"JFK\",\"LAX\",-7.00,18.00,0.00,\"\",0.00,390.00,353.00,2475.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,13,\"VX\",\"404\",\"LAX\",\"JFK\",5.00,-12.00,0.00,\"\",0.00,308.00,279.00,2475.00,,,,,,\n2015,5,13,\"VX\",\"406\",\"LAX\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,320.00,282.00,2475.00,,,,,,\n2015,5,13,\"VX\",\"407\",\"JFK\",\"LAX\",-4.00,6.00,0.00,\"\",0.00,380.00,336.00,2475.00,,,,,,\n2015,5,13,\"VX\",\"411\",\"JFK\",\"LAX\",-9.00,-13.00,0.00,\"\",0.00,361.00,340.00,2475.00,,,,,,\n2015,5,13,\"VX\",\"412\",\"LAX\",\"JFK\",41.00,12.00,0.00,\"\",0.00,301.00,280.00,2475.00,,,,,,\n2015,5,13,\"VX\",\"413\",\"JFK\",\"LAX\",1.00,-10.00,0.00,\"\",0.00,380.00,337.00,2475.00,,,,,,\n2015,5,13,\"VX\",\"415\",\"JFK\",\"LAX\",-4.00,-25.00,0.00,\"\",0.00,359.00,323.00,2475.00,,,,,,\n2015,5,13,\"VX\",\"416\",\"LAX\",\"JFK\",-2.00,-20.00,0.00,\"\",0.00,302.00,283.00,2475.00,,,,,,\n2015,5,13,\"VX\",\"420\",\"LAX\",\"JFK\",-5.00,-13.00,0.00,\"\",0.00,317.00,290.00,2475.00,,,,,,\n2015,5,13,\"VX\",\"710\",\"DAL\",\"LGA\",26.00,59.00,0.00,\"\",0.00,218.00,169.00,1381.00,33.00,0.00,0.00,0.00,26.00,\n2015,5,13,\"VX\",\"715\",\"LGA\",\"DAL\",-1.00,21.00,0.00,\"\",0.00,262.00,199.00,1381.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"VX\",\"719\",\"LGA\",\"DAL\",233.00,246.00,0.00,\"\",0.00,253.00,205.00,1381.00,13.00,0.00,0.00,0.00,233.00,\n2015,5,13,\"VX\",\"762\",\"DAL\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,184.00,164.00,1381.00,,,,,,\n2015,5,13,\"VX\",\"766\",\"DAL\",\"LGA\",-2.00,13.00,0.00,\"\",0.00,200.00,168.00,1381.00,,,,,,\n2015,5,13,\"VX\",\"769\",\"LGA\",\"DAL\",285.00,243.00,0.00,\"\",0.00,198.00,184.00,1381.00,0.00,0.00,66.00,0.00,177.00,\n2015,5,13,\"VX\",\"874\",\"DAL\",\"LGA\",15.00,18.00,0.00,\"\",0.00,188.00,172.00,1381.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"VX\",\"879\",\"LGA\",\"DAL\",-12.00,-33.00,0.00,\"\",0.00,219.00,199.00,1381.00,,,,,,\n2015,5,14,\"VX\",\"11\",\"JFK\",\"SFO\",-5.00,-13.00,0.00,\"\",0.00,377.00,344.00,2586.00,,,,,,\n2015,5,14,\"VX\",\"12\",\"SFO\",\"JFK\",1.00,-19.00,0.00,\"\",0.00,325.00,305.00,2586.00,,,,,,\n2015,5,14,\"VX\",\"22\",\"SFO\",\"JFK\",0.00,-15.00,0.00,\"\",0.00,329.00,312.00,2586.00,,,,,,\n2015,5,14,\"VX\",\"23\",\"JFK\",\"SFO\",-10.00,-7.00,0.00,\"\",0.00,388.00,361.00,2586.00,,,,,,\n2015,5,14,\"VX\",\"251\",\"JFK\",\"LAS\",-7.00,-7.00,0.00,\"\",0.00,340.00,306.00,2248.00,,,,,,\n2015,5,14,\"VX\",\"260\",\"LAS\",\"JFK\",13.00,11.00,0.00,\"\",0.00,287.00,267.00,2248.00,,,,,,\n2015,5,14,\"VX\",\"26\",\"SFO\",\"JFK\",29.00,31.00,0.00,\"\",0.00,336.00,313.00,2586.00,2.00,0.00,0.00,0.00,29.00,\n2015,5,14,\"VX\",\"27\",\"JFK\",\"SFO\",-2.00,-45.00,0.00,\"\",0.00,362.00,335.00,2586.00,,,,,,\n2015,5,14,\"VX\",\"29\",\"JFK\",\"SFO\",-4.00,-25.00,0.00,\"\",0.00,384.00,348.00,2586.00,,,,,,\n2015,5,14,\"VX\",\"34\",\"SFO\",\"JFK\",14.00,13.00,0.00,\"\",0.00,334.00,310.00,2586.00,,,,,,\n2015,5,14,\"VX\",\"399\",\"JFK\",\"LAX\",0.00,-22.00,0.00,\"\",0.00,343.00,322.00,2475.00,,,,,,\n2015,5,8,\"VX\",\"22\",\"SFO\",\"JFK\",-3.00,-1.00,0.00,\"\",0.00,346.00,310.00,2586.00,,,,,,\n2015,5,8,\"VX\",\"23\",\"JFK\",\"SFO\",-6.00,-41.00,0.00,\"\",0.00,350.00,325.00,2586.00,,,,,,\n2015,5,8,\"VX\",\"251\",\"JFK\",\"LAS\",-4.00,-14.00,0.00,\"\",0.00,330.00,293.00,2248.00,,,,,,\n2015,5,8,\"VX\",\"260\",\"LAS\",\"JFK\",0.00,16.00,0.00,\"\",0.00,305.00,278.00,2248.00,0.00,16.00,0.00,0.00,0.00,\n2015,5,8,\"VX\",\"26\",\"SFO\",\"JFK\",1.00,31.00,0.00,\"\",0.00,364.00,337.00,2586.00,0.00,30.00,1.00,0.00,0.00,\n2015,5,8,\"VX\",\"27\",\"JFK\",\"SFO\",15.00,14.00,0.00,\"\",0.00,404.00,362.00,2586.00,,,,,,\n2015,5,8,\"VX\",\"29\",\"JFK\",\"SFO\",130.00,118.00,0.00,\"\",0.00,393.00,356.00,2586.00,118.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"VX\",\"34\",\"SFO\",\"JFK\",-9.00,34.00,0.00,\"\",0.00,378.00,353.00,2586.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,8,\"VX\",\"399\",\"JFK\",\"LAX\",-2.00,-11.00,0.00,\"\",0.00,356.00,320.00,2475.00,,,,,,\n2015,5,8,\"VX\",\"404\",\"LAX\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,332.00,313.00,2475.00,,,,,,\n2015,5,8,\"VX\",\"406\",\"LAX\",\"JFK\",-5.00,-19.00,0.00,\"\",0.00,321.00,295.00,2475.00,,,,,,\n2015,5,8,\"VX\",\"407\",\"JFK\",\"LAX\",6.00,-1.00,0.00,\"\",0.00,363.00,326.00,2475.00,,,,,,\n2015,5,8,\"VX\",\"411\",\"JFK\",\"LAX\",5.00,-9.00,0.00,\"\",0.00,351.00,329.00,2475.00,,,,,,\n2015,5,8,\"VX\",\"412\",\"LAX\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,308.00,287.00,2475.00,,,,,,\n2015,5,8,\"VX\",\"413\",\"JFK\",\"LAX\",0.00,3.00,0.00,\"\",0.00,394.00,340.00,2475.00,,,,,,\n2015,5,8,\"VX\",\"415\",\"JFK\",\"LAX\",65.00,36.00,0.00,\"\",0.00,351.00,325.00,2475.00,36.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"VX\",\"416\",\"LAX\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,323.00,296.00,2475.00,,,,,,\n2015,5,8,\"VX\",\"420\",\"LAX\",\"JFK\",-3.00,0.00,0.00,\"\",0.00,328.00,306.00,2475.00,,,,,,\n2015,5,8,\"VX\",\"710\",\"DAL\",\"LGA\",12.00,31.00,0.00,\"\",0.00,204.00,181.00,1381.00,0.00,19.00,0.00,0.00,12.00,\n2015,5,8,\"VX\",\"715\",\"LGA\",\"DAL\",8.00,-17.00,0.00,\"\",0.00,215.00,194.00,1381.00,,,,,,\n2015,5,8,\"VX\",\"719\",\"LGA\",\"DAL\",-4.00,18.00,0.00,\"\",0.00,262.00,233.00,1381.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,8,\"VX\",\"762\",\"DAL\",\"LGA\",-3.00,10.00,0.00,\"\",0.00,198.00,180.00,1381.00,,,,,,\n2015,5,8,\"VX\",\"766\",\"DAL\",\"LGA\",-5.00,10.00,0.00,\"\",0.00,200.00,182.00,1381.00,,,,,,\n2015,5,8,\"VX\",\"769\",\"LGA\",\"DAL\",14.00,-8.00,0.00,\"\",0.00,218.00,196.00,1381.00,,,,,,\n2015,5,8,\"VX\",\"874\",\"DAL\",\"LGA\",3.00,14.00,0.00,\"\",0.00,196.00,175.00,1381.00,,,,,,\n2015,5,8,\"VX\",\"879\",\"LGA\",\"DAL\",-7.00,-35.00,0.00,\"\",0.00,212.00,191.00,1381.00,,,,,,\n2015,5,9,\"VX\",\"11\",\"JFK\",\"SFO\",-4.00,-48.00,0.00,\"\",0.00,341.00,321.00,2586.00,,,,,,\n2015,5,9,\"VX\",\"12\",\"SFO\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,349.00,316.00,2586.00,,,,,,\n2015,5,9,\"VX\",\"22\",\"SFO\",\"JFK\",-3.00,-20.00,0.00,\"\",0.00,327.00,306.00,2586.00,,,,,,\n2015,5,9,\"VX\",\"23\",\"JFK\",\"SFO\",-8.00,-43.00,0.00,\"\",0.00,350.00,323.00,2586.00,,,,,,\n2015,5,9,\"VX\",\"251\",\"JFK\",\"LAS\",4.00,-13.00,0.00,\"\",0.00,323.00,290.00,2248.00,,,,,,\n2015,5,9,\"VX\",\"260\",\"LAS\",\"JFK\",-4.00,12.00,0.00,\"\",0.00,305.00,278.00,2248.00,,,,,,\n2015,5,9,\"VX\",\"26\",\"SFO\",\"JFK\",13.00,15.00,0.00,\"\",0.00,336.00,312.00,2586.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"VX\",\"27\",\"JFK\",\"SFO\",14.00,-33.00,0.00,\"\",0.00,358.00,339.00,2586.00,,,,,,\n2015,5,9,\"VX\",\"399\",\"JFK\",\"LAX\",-4.00,-33.00,0.00,\"\",0.00,336.00,310.00,2475.00,,,,,,\n2015,5,9,\"VX\",\"404\",\"LAX\",\"JFK\",-2.00,5.00,0.00,\"\",0.00,332.00,298.00,2475.00,,,,,,\n2015,5,9,\"VX\",\"406\",\"LAX\",\"JFK\",19.00,7.00,0.00,\"\",0.00,323.00,301.00,2475.00,,,,,,\n2015,5,9,\"VX\",\"407\",\"JFK\",\"LAX\",-8.00,-18.00,0.00,\"\",0.00,360.00,312.00,2475.00,,,,,,\n2015,5,9,\"VX\",\"411\",\"JFK\",\"LAX\",-8.00,-38.00,0.00,\"\",0.00,335.00,313.00,2475.00,,,,,,\n2015,5,9,\"VX\",\"412\",\"LAX\",\"JFK\",1.00,7.00,0.00,\"\",0.00,336.00,307.00,2475.00,,,,,,\n2015,5,9,\"VX\",\"413\",\"JFK\",\"LAX\",0.00,-34.00,0.00,\"\",0.00,357.00,325.00,2475.00,,,,,,\n2015,5,9,\"VX\",\"415\",\"JFK\",\"LAX\",6.00,-8.00,0.00,\"\",0.00,366.00,327.00,2475.00,,,,,,\n2015,5,9,\"VX\",\"416\",\"LAX\",\"JFK\",-3.00,25.00,0.00,\"\",0.00,348.00,315.00,2475.00,0.00,25.00,0.00,0.00,0.00,\n2015,5,9,\"VX\",\"420\",\"LAX\",\"JFK\",16.00,-3.00,0.00,\"\",0.00,306.00,286.00,2475.00,,,,,,\n2015,5,9,\"VX\",\"715\",\"LGA\",\"DAL\",-4.00,-8.00,0.00,\"\",0.00,236.00,193.00,1381.00,,,,,,\n2015,5,9,\"VX\",\"719\",\"LGA\",\"DAL\",16.00,-11.00,0.00,\"\",0.00,213.00,195.00,1381.00,,,,,,\n2015,5,9,\"VX\",\"766\",\"DAL\",\"LGA\",-3.00,27.00,0.00,\"\",0.00,215.00,197.00,1381.00,0.00,27.00,0.00,0.00,0.00,\n2015,5,9,\"VX\",\"772\",\"DAL\",\"LGA\",-6.00,10.00,0.00,\"\",0.00,201.00,183.00,1381.00,,,,,,\n2015,5,1,\"WN\",\"223\",\"ALB\",\"BWI\",0.00,-12.00,0.00,\"\",0.00,68.00,55.00,289.00,,,,,,\n2015,5,1,\"WN\",\"752\",\"ALB\",\"BWI\",1.00,-5.00,0.00,\"\",0.00,74.00,62.00,289.00,,,,,,\n2015,5,1,\"WN\",\"854\",\"ALB\",\"BWI\",-4.00,-14.00,0.00,\"\",0.00,65.00,51.00,289.00,,,,,,\n2015,5,1,\"WN\",\"1011\",\"ALB\",\"BWI\",-7.00,-23.00,0.00,\"\",0.00,64.00,52.00,289.00,,,,,,\n2015,5,1,\"WN\",\"3294\",\"ALB\",\"BWI\",-2.00,-21.00,0.00,\"\",0.00,66.00,51.00,289.00,,,,,,\n2015,5,1,\"WN\",\"3917\",\"ALB\",\"BWI\",-8.00,-18.00,0.00,\"\",0.00,70.00,51.00,289.00,,,,,,\n2015,5,1,\"WN\",\"1987\",\"ALB\",\"FLL\",-6.00,-18.00,0.00,\"\",0.00,178.00,166.00,1204.00,,,,,,\n2015,5,1,\"WN\",\"346\",\"ALB\",\"LAS\",0.00,2.00,0.00,\"\",0.00,332.00,317.00,2237.00,,,,,,\n2015,5,1,\"WN\",\"3919\",\"ALB\",\"MCO\",-5.00,-4.00,0.00,\"\",0.00,176.00,161.00,1073.00,,,,,,\n2015,5,1,\"WN\",\"4362\",\"ALB\",\"MCO\",-9.00,-12.00,0.00,\"\",0.00,172.00,156.00,1073.00,,,,,,\n2015,5,1,\"WN\",\"1550\",\"ALB\",\"MDW\",-3.00,-8.00,0.00,\"\",0.00,130.00,103.00,717.00,,,,,,\n2015,5,1,\"WN\",\"4985\",\"ALB\",\"MDW\",-3.00,-3.00,0.00,\"\",0.00,135.00,101.00,717.00,,,,,,\n2015,5,1,\"WN\",\"3650\",\"ALB\",\"TPA\",-2.00,-13.00,0.00,\"\",0.00,174.00,161.00,1130.00,,,,,,\n2015,5,1,\"WN\",\"815\",\"ATL\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,132.00,104.00,762.00,,,,,,\n2015,5,1,\"WN\",\"1182\",\"ATL\",\"LGA\",-4.00,-6.00,0.00,\"\",0.00,138.00,107.00,762.00,,,,,,\n2015,5,1,\"WN\",\"2516\",\"ATL\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,124.00,102.00,762.00,,,,,,\n2015,5,1,\"WN\",\"2659\",\"ATL\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,125.00,99.00,762.00,,,,,,\n2015,5,1,\"WN\",\"2850\",\"ATL\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,120.00,100.00,762.00,,,,,,\n2015,5,1,\"WN\",\"255\",\"BNA\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,111.00,100.00,764.00,,,,,,\n2015,5,1,\"WN\",\"2433\",\"BNA\",\"LGA\",2.00,-9.00,0.00,\"\",0.00,119.00,102.00,764.00,,,,,,\n2015,5,1,\"WN\",\"2570\",\"BNA\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,127.00,104.00,764.00,,,,,,\n2015,5,1,\"WN\",\"381\",\"BUF\",\"BWI\",4.00,-8.00,0.00,\"\",0.00,58.00,48.00,281.00,,,,,,\n2015,5,1,\"WN\",\"728\",\"BUF\",\"BWI\",3.00,6.00,0.00,\"\",0.00,73.00,51.00,281.00,,,,,,\n2015,5,1,\"WN\",\"842\",\"BUF\",\"BWI\",-7.00,-14.00,0.00,\"\",0.00,68.00,55.00,281.00,,,,,,\n2015,5,1,\"WN\",\"1429\",\"BUF\",\"BWI\",0.00,14.00,0.00,\"\",0.00,99.00,51.00,281.00,,,,,,\n2015,5,1,\"WN\",\"1528\",\"BUF\",\"BWI\",-1.00,-13.00,0.00,\"\",0.00,63.00,51.00,281.00,,,,,,\n2015,5,1,\"WN\",\"2423\",\"BUF\",\"BWI\",-5.00,9.00,0.00,\"\",0.00,89.00,51.00,281.00,,,,,,\n2015,5,1,\"WN\",\"1785\",\"BUF\",\"FLL\",-1.00,-12.00,0.00,\"\",0.00,174.00,152.00,1166.00,,,,,,\n2015,5,1,\"WN\",\"361\",\"BUF\",\"LAS\",-1.00,-23.00,0.00,\"\",0.00,278.00,257.00,1986.00,,,,,,\n2015,5,1,\"WN\",\"615\",\"BUF\",\"LAS\",0.00,-11.00,0.00,\"\",0.00,279.00,264.00,1986.00,,,,,,\n2015,5,1,\"WN\",\"134\",\"BUF\",\"MCO\",-2.00,-18.00,0.00,\"\",0.00,144.00,132.00,1011.00,,,,,,\n2015,5,1,\"WN\",\"674\",\"BUF\",\"MCO\",-2.00,-14.00,0.00,\"\",0.00,148.00,132.00,1011.00,,,,,,\n2015,5,1,\"WN\",\"854\",\"BUF\",\"MCO\",-8.00,-24.00,0.00,\"\",0.00,144.00,129.00,1011.00,,,,,,\n2015,5,1,\"WN\",\"2141\",\"BUF\",\"MCO\",-8.00,-22.00,0.00,\"\",0.00,146.00,130.00,1011.00,,,,,,\n2015,5,1,\"WN\",\"717\",\"BUF\",\"MDW\",-6.00,-19.00,0.00,\"\",0.00,97.00,75.00,468.00,,,,,,\n2015,5,1,\"WN\",\"2023\",\"BUF\",\"MDW\",-1.00,2.00,0.00,\"\",0.00,108.00,75.00,468.00,,,,,,\n2015,5,1,\"WN\",\"2632\",\"BUF\",\"MDW\",-4.00,-15.00,0.00,\"\",0.00,89.00,75.00,468.00,,,,,,\n2015,5,1,\"WN\",\"328\",\"BUF\",\"PHX\",-2.00,-34.00,0.00,\"\",0.00,258.00,246.00,1912.00,,,,,,\n2015,5,1,\"WN\",\"984\",\"BUF\",\"TPA\",-4.00,-14.00,0.00,\"\",0.00,155.00,140.00,1053.00,,,,,,\n2015,5,1,\"WN\",\"2824\",\"BUF\",\"TPA\",-2.00,-21.00,0.00,\"\",0.00,146.00,137.00,1053.00,,,,,,\n2015,5,1,\"WN\",\"334\",\"BWI\",\"ALB\",-2.00,-10.00,0.00,\"\",0.00,67.00,53.00,289.00,,,,,,\n2015,5,1,\"WN\",\"346\",\"BWI\",\"ALB\",-1.00,-4.00,0.00,\"\",0.00,62.00,50.00,289.00,,,,,,\n2015,5,1,\"WN\",\"598\",\"BWI\",\"ALB\",18.00,17.00,0.00,\"\",0.00,69.00,51.00,289.00,14.00,0.00,0.00,0.00,3.00,\n2015,5,1,\"WN\",\"1269\",\"BWI\",\"ALB\",0.00,-7.00,0.00,\"\",0.00,68.00,48.00,289.00,,,,,,\n2015,5,1,\"WN\",\"3033\",\"BWI\",\"ALB\",14.00,7.00,0.00,\"\",0.00,63.00,50.00,289.00,,,,,,\n2015,5,1,\"WN\",\"3919\",\"BWI\",\"ALB\",0.00,-2.00,0.00,\"\",0.00,68.00,54.00,289.00,,,,,,\n2015,5,1,\"WN\",\"328\",\"BWI\",\"BUF\",-1.00,0.00,0.00,\"\",0.00,66.00,48.00,281.00,,,,,,\n2015,5,1,\"WN\",\"572\",\"BWI\",\"BUF\",4.00,-8.00,0.00,\"\",0.00,58.00,46.00,281.00,,,,,,\n2015,5,1,\"WN\",\"819\",\"BWI\",\"BUF\",-2.00,-6.00,0.00,\"\",0.00,61.00,48.00,281.00,,,,,,\n2015,5,1,\"WN\",\"854\",\"BWI\",\"BUF\",-2.00,-15.00,0.00,\"\",0.00,57.00,46.00,281.00,,,,,,\n2015,5,1,\"WN\",\"1350\",\"BWI\",\"BUF\",-5.00,-8.00,0.00,\"\",0.00,62.00,47.00,281.00,,,,,,\n2015,5,1,\"WN\",\"1900\",\"BWI\",\"BUF\",-1.00,-10.00,0.00,\"\",0.00,66.00,46.00,281.00,,,,,,\n2015,5,1,\"WN\",\"232\",\"BWI\",\"ISP\",17.00,30.00,0.00,\"\",0.00,78.00,44.00,220.00,9.00,0.00,13.00,0.00,8.00,\n2015,5,1,\"WN\",\"752\",\"BWI\",\"ISP\",8.00,6.00,0.00,\"\",0.00,58.00,46.00,220.00,,,,,,\n2015,5,1,\"WN\",\"842\",\"BWI\",\"ISP\",-3.00,-12.00,0.00,\"\",0.00,56.00,43.00,220.00,,,,,,\n2015,5,1,\"WN\",\"2452\",\"BWI\",\"ISP\",-1.00,-17.00,0.00,\"\",0.00,54.00,44.00,220.00,,,,,,\n2015,5,1,\"WN\",\"4017\",\"BWI\",\"ISP\",17.00,20.00,0.00,\"\",0.00,63.00,45.00,220.00,11.00,0.00,3.00,0.00,6.00,\n2015,5,1,\"WN\",\"597\",\"BWI\",\"ROC\",-2.00,-13.00,0.00,\"\",0.00,59.00,45.00,277.00,,,,,,\n2015,5,1,\"WN\",\"3564\",\"BWI\",\"ROC\",95.00,91.00,0.00,\"\",0.00,66.00,48.00,277.00,0.00,0.00,0.00,0.00,91.00,\n2015,5,1,\"WN\",\"914\",\"CAK\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,75.00,62.00,397.00,,,,,,\n2015,5,1,\"WN\",\"4728\",\"CAK\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,94.00,78.00,397.00,,,,,,\n2015,5,1,\"WN\",\"2454\",\"PHX\",\"BUF\",23.00,13.00,0.00,\"\",0.00,235.00,227.00,1912.00,,,,,,\n2015,5,1,\"WN\",\"719\",\"ROC\",\"BWI\",11.00,7.00,0.00,\"\",0.00,66.00,52.00,277.00,,,,,,\n2015,5,1,\"WN\",\"2749\",\"ROC\",\"BWI\",-4.00,-20.00,0.00,\"\",0.00,64.00,48.00,277.00,,,,,,\n2015,5,1,\"WN\",\"597\",\"ROC\",\"MCO\",-9.00,-15.00,0.00,\"\",0.00,154.00,137.00,1033.00,,,,,,\n2015,5,1,\"WN\",\"747\",\"ROC\",\"MDW\",5.00,1.00,0.00,\"\",0.00,106.00,82.00,523.00,,,,,,\n2015,5,1,\"WN\",\"4712\",\"ROC\",\"MDW\",0.00,-4.00,0.00,\"\",0.00,101.00,84.00,523.00,,,,,,\n2015,5,1,\"WN\",\"4655\",\"ROC\",\"TPA\",-8.00,-9.00,0.00,\"\",0.00,164.00,143.00,1079.00,,,,,,\n2015,5,29,\"VX\",\"11\",\"JFK\",\"SFO\",-6.00,-4.00,0.00,\"\",0.00,387.00,347.00,2586.00,,,,,,\n2015,5,29,\"VX\",\"12\",\"SFO\",\"JFK\",-4.00,-31.00,0.00,\"\",0.00,318.00,294.00,2586.00,,,,,,\n2015,5,29,\"VX\",\"22\",\"SFO\",\"JFK\",-2.00,-9.00,0.00,\"\",0.00,337.00,306.00,2586.00,,,,,,\n2015,5,29,\"VX\",\"23\",\"JFK\",\"SFO\",-3.00,-19.00,0.00,\"\",0.00,369.00,344.00,2586.00,,,,,,\n2015,5,29,\"VX\",\"24\",\"SFO\",\"JFK\",16.00,12.00,0.00,\"\",0.00,341.00,307.00,2586.00,,,,,,\n2015,5,29,\"VX\",\"251\",\"JFK\",\"LAS\",-2.00,6.00,0.00,\"\",0.00,348.00,308.00,2248.00,,,,,,\n2015,5,29,\"VX\",\"25\",\"JFK\",\"SFO\",0.00,-8.00,0.00,\"\",0.00,367.00,334.00,2586.00,,,,,,\n2015,5,29,\"VX\",\"260\",\"LAS\",\"JFK\",-11.00,-9.00,0.00,\"\",0.00,291.00,270.00,2248.00,,,,,,\n2015,5,29,\"VX\",\"26\",\"SFO\",\"JFK\",-5.00,-2.00,0.00,\"\",0.00,332.00,310.00,2586.00,,,,,,\n2015,5,29,\"VX\",\"27\",\"JFK\",\"SFO\",-6.00,-24.00,0.00,\"\",0.00,387.00,365.00,2586.00,,,,,,\n2015,5,29,\"VX\",\"29\",\"JFK\",\"SFO\",-5.00,-43.00,0.00,\"\",0.00,367.00,336.00,2586.00,,,,,,\n2015,5,29,\"VX\",\"34\",\"SFO\",\"JFK\",23.00,19.00,0.00,\"\",0.00,331.00,305.00,2586.00,0.00,0.00,4.00,0.00,15.00,\n2015,5,29,\"VX\",\"399\",\"JFK\",\"LAX\",-7.00,-27.00,0.00,\"\",0.00,345.00,318.00,2475.00,,,,,,\n2015,5,29,\"VX\",\"404\",\"LAX\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,318.00,296.00,2475.00,,,,,,\n2015,5,29,\"VX\",\"406\",\"LAX\",\"JFK\",7.00,-7.00,0.00,\"\",0.00,321.00,304.00,2475.00,,,,,,\n2015,5,29,\"VX\",\"407\",\"JFK\",\"LAX\",-3.00,5.00,0.00,\"\",0.00,378.00,335.00,2475.00,,,,,,\n2015,5,29,\"VX\",\"411\",\"JFK\",\"LAX\",-7.00,-18.00,0.00,\"\",0.00,354.00,328.00,2475.00,,,,,,\n2015,5,29,\"VX\",\"412\",\"LAX\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,321.00,303.00,2475.00,,,,,,\n2015,5,29,\"VX\",\"413\",\"JFK\",\"LAX\",-6.00,-45.00,0.00,\"\",0.00,352.00,323.00,2475.00,,,,,,\n2015,5,29,\"VX\",\"415\",\"JFK\",\"LAX\",-1.00,-23.00,0.00,\"\",0.00,358.00,323.00,2475.00,,,,,,\n2015,5,29,\"VX\",\"416\",\"LAX\",\"JFK\",-1.00,-1.00,0.00,\"\",0.00,320.00,307.00,2475.00,,,,,,\n2015,5,29,\"VX\",\"420\",\"LAX\",\"JFK\",-4.00,0.00,0.00,\"\",0.00,329.00,306.00,2475.00,,,,,,\n2015,5,29,\"VX\",\"710\",\"DAL\",\"LGA\",-2.00,9.00,0.00,\"\",0.00,196.00,173.00,1381.00,,,,,,\n2015,5,29,\"VX\",\"715\",\"LGA\",\"DAL\",34.00,28.00,0.00,\"\",0.00,234.00,207.00,1381.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,29,\"VX\",\"719\",\"LGA\",\"DAL\",21.00,-9.00,0.00,\"\",0.00,210.00,188.00,1381.00,,,,,,\n2015,5,29,\"VX\",\"762\",\"DAL\",\"LGA\",28.00,37.00,0.00,\"\",0.00,194.00,176.00,1381.00,0.00,37.00,0.00,0.00,0.00,\n2015,5,29,\"VX\",\"766\",\"DAL\",\"LGA\",9.00,27.00,0.00,\"\",0.00,203.00,179.00,1381.00,18.00,0.00,0.00,0.00,9.00,\n2015,5,29,\"VX\",\"769\",\"LGA\",\"DAL\",-5.00,-42.00,0.00,\"\",0.00,203.00,183.00,1381.00,,,,,,\n2015,5,29,\"VX\",\"874\",\"DAL\",\"LGA\",13.00,38.00,0.00,\"\",0.00,210.00,183.00,1381.00,0.00,25.00,0.00,0.00,13.00,\n2015,5,29,\"VX\",\"879\",\"LGA\",\"DAL\",28.00,0.00,0.00,\"\",0.00,212.00,184.00,1381.00,,,,,,\n2015,5,3,\"VX\",\"11\",\"JFK\",\"SFO\",-5.00,-25.00,0.00,\"\",0.00,365.00,343.00,2586.00,,,,,,\n2015,5,3,\"VX\",\"12\",\"SFO\",\"JFK\",-4.00,-19.00,0.00,\"\",0.00,330.00,311.00,2586.00,,,,,,\n2015,5,3,\"VX\",\"22\",\"SFO\",\"JFK\",2.00,-5.00,0.00,\"\",0.00,337.00,315.00,2586.00,,,,,,\n2015,5,3,\"VX\",\"23\",\"JFK\",\"SFO\",1.00,-21.00,0.00,\"\",0.00,363.00,338.00,2586.00,,,,,,\n2015,5,3,\"VX\",\"251\",\"JFK\",\"LAS\",-8.00,16.00,0.00,\"\",0.00,364.00,305.00,2248.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,3,\"VX\",\"260\",\"LAS\",\"JFK\",9.00,20.00,0.00,\"\",0.00,300.00,278.00,2248.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"VX\",\"26\",\"SFO\",\"JFK\",28.00,26.00,0.00,\"\",0.00,332.00,308.00,2586.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,3,\"VX\",\"27\",\"JFK\",\"SFO\",-8.00,-56.00,0.00,\"\",0.00,357.00,329.00,2586.00,,,,,,\n2015,5,3,\"VX\",\"29\",\"JFK\",\"SFO\",-6.00,-33.00,0.00,\"\",0.00,378.00,334.00,2586.00,,,,,,\n2015,5,3,\"VX\",\"34\",\"SFO\",\"JFK\",59.00,64.00,0.00,\"\",0.00,340.00,319.00,2586.00,5.00,0.00,0.00,0.00,59.00,\n2015,5,3,\"VX\",\"404\",\"LAX\",\"JFK\",-2.00,-4.00,0.00,\"\",0.00,323.00,302.00,2475.00,,,,,,\n2015,5,3,\"VX\",\"406\",\"LAX\",\"JFK\",6.00,-13.00,0.00,\"\",0.00,316.00,298.00,2475.00,,,,,,\n2015,5,3,\"VX\",\"407\",\"JFK\",\"LAX\",-6.00,-14.00,0.00,\"\",0.00,362.00,316.00,2475.00,,,,,,\n2015,5,3,\"VX\",\"411\",\"JFK\",\"LAX\",-7.00,-23.00,0.00,\"\",0.00,349.00,328.00,2475.00,,,,,,\n2015,5,3,\"VX\",\"413\",\"JFK\",\"LAX\",-4.00,-25.00,0.00,\"\",0.00,370.00,331.00,2475.00,,,,,,\n2015,5,3,\"VX\",\"415\",\"JFK\",\"LAX\",-9.00,-45.00,0.00,\"\",0.00,344.00,314.00,2475.00,,,,,,\n2015,5,3,\"VX\",\"416\",\"LAX\",\"JFK\",0.00,-2.00,0.00,\"\",0.00,318.00,303.00,2475.00,,,,,,\n2015,5,3,\"VX\",\"418\",\"LAX\",\"JFK\",54.00,78.00,0.00,\"\",0.00,338.00,303.00,2475.00,78.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"VX\",\"420\",\"LAX\",\"JFK\",0.00,10.00,0.00,\"\",0.00,335.00,313.00,2475.00,,,,,,\n2015,5,3,\"VX\",\"710\",\"DAL\",\"LGA\",1.00,12.00,0.00,\"\",0.00,196.00,179.00,1381.00,,,,,,\n2015,5,3,\"VX\",\"715\",\"LGA\",\"DAL\",-10.00,-47.00,0.00,\"\",0.00,203.00,183.00,1381.00,,,,,,\n2015,5,3,\"VX\",\"719\",\"LGA\",\"DAL\",3.00,-21.00,0.00,\"\",0.00,216.00,182.00,1381.00,,,,,,\n2015,5,3,\"VX\",\"766\",\"DAL\",\"LGA\",-5.00,12.00,0.00,\"\",0.00,202.00,183.00,1381.00,,,,,,\n2015,5,3,\"VX\",\"769\",\"LGA\",\"DAL\",-5.00,-31.00,0.00,\"\",0.00,214.00,186.00,1381.00,,,,,,\n2015,5,3,\"VX\",\"874\",\"DAL\",\"LGA\",-5.00,11.00,0.00,\"\",0.00,201.00,182.00,1381.00,,,,,,\n2015,5,30,\"VX\",\"11\",\"JFK\",\"SFO\",-7.00,-33.00,0.00,\"\",0.00,359.00,336.00,2586.00,,,,,,\n2015,5,30,\"VX\",\"12\",\"SFO\",\"JFK\",3.00,-18.00,0.00,\"\",0.00,324.00,306.00,2586.00,,,,,,\n2015,5,30,\"VX\",\"22\",\"SFO\",\"JFK\",-6.00,-13.00,0.00,\"\",0.00,337.00,306.00,2586.00,,,,,,\n2015,5,30,\"VX\",\"23\",\"JFK\",\"SFO\",-6.00,-32.00,0.00,\"\",0.00,359.00,332.00,2586.00,,,,,,\n2015,5,30,\"VX\",\"24\",\"SFO\",\"JFK\",0.00,8.00,0.00,\"\",0.00,353.00,317.00,2586.00,,,,,,\n2015,5,30,\"VX\",\"251\",\"JFK\",\"LAS\",-11.00,-17.00,0.00,\"\",0.00,334.00,294.00,2248.00,,,,,,\n2015,5,30,\"VX\",\"25\",\"JFK\",\"SFO\",-2.00,-18.00,0.00,\"\",0.00,359.00,332.00,2586.00,,,,,,\n2015,5,30,\"VX\",\"260\",\"LAS\",\"JFK\",-1.00,1.00,0.00,\"\",0.00,291.00,274.00,2248.00,,,,,,\n2015,5,30,\"VX\",\"26\",\"SFO\",\"JFK\",4.00,9.00,0.00,\"\",0.00,334.00,310.00,2586.00,,,,,,\n2015,5,30,\"VX\",\"27\",\"JFK\",\"SFO\",-2.00,4.00,0.00,\"\",0.00,411.00,374.00,2586.00,,,,,,\n2015,5,1,\"WN\",\"691\",\"DAL\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,196.00,173.00,1381.00,,,,,,\n2015,5,1,\"WN\",\"1214\",\"DAL\",\"LGA\",5.00,-11.00,0.00,\"\",0.00,189.00,174.00,1381.00,,,,,,\n2015,5,1,\"WN\",\"2141\",\"DAL\",\"LGA\",2.00,-7.00,0.00,\"\",0.00,196.00,178.00,1381.00,,,,,,\n2015,5,1,\"WN\",\"2234\",\"DAL\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,192.00,170.00,1381.00,,,,,,\n2015,5,1,\"WN\",\"824\",\"DEN\",\"LGA\",26.00,9.00,0.00,\"\",0.00,218.00,198.00,1620.00,,,,,,\n2015,5,1,\"WN\",\"1370\",\"DEN\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,218.00,199.00,1620.00,,,,,,\n2015,5,1,\"WN\",\"1898\",\"FLL\",\"ALB\",-6.00,-19.00,0.00,\"\",0.00,167.00,149.00,1204.00,,,,,,\n2015,5,1,\"WN\",\"4643\",\"FLL\",\"BUF\",3.00,-10.00,0.00,\"\",0.00,172.00,145.00,1166.00,,,,,,\n2015,5,1,\"WN\",\"28\",\"FLL\",\"ISP\",14.00,-10.00,0.00,\"\",0.00,151.00,137.00,1092.00,,,,,,\n2015,5,1,\"WN\",\"4640\",\"FLL\",\"ISP\",-3.00,-19.00,0.00,\"\",0.00,154.00,138.00,1092.00,,,,,,\n2015,5,1,\"WN\",\"299\",\"HOU\",\"LGA\",4.00,-10.00,0.00,\"\",0.00,196.00,180.00,1428.00,,,,,,\n2015,5,1,\"WN\",\"536\",\"HOU\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,192.00,180.00,1428.00,,,,,,\n2015,5,1,\"WN\",\"1163\",\"HOU\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,199.00,180.00,1428.00,,,,,,\n2015,5,1,\"WN\",\"325\",\"ISP\",\"BWI\",0.00,-6.00,0.00,\"\",0.00,64.00,50.00,220.00,,,,,,\n2015,5,1,\"WN\",\"580\",\"ISP\",\"BWI\",-1.00,-14.00,0.00,\"\",0.00,62.00,52.00,220.00,,,,,,\n2015,5,1,\"WN\",\"667\",\"ISP\",\"BWI\",-7.00,-16.00,0.00,\"\",0.00,66.00,53.00,220.00,,,,,,\n2015,5,1,\"WN\",\"2940\",\"ISP\",\"BWI\",13.00,13.00,0.00,\"\",0.00,75.00,53.00,220.00,,,,,,\n2015,5,1,\"WN\",\"3743\",\"ISP\",\"BWI\",-1.00,-11.00,0.00,\"\",0.00,65.00,50.00,220.00,,,,,,\n2015,5,1,\"WN\",\"752\",\"ISP\",\"FLL\",6.00,-3.00,0.00,\"\",0.00,176.00,158.00,1092.00,,,,,,\n2015,5,1,\"WN\",\"4554\",\"ISP\",\"FLL\",-2.00,-7.00,0.00,\"\",0.00,175.00,152.00,1092.00,,,,,,\n2015,5,1,\"WN\",\"663\",\"ISP\",\"MCO\",-7.00,-7.00,0.00,\"\",0.00,160.00,142.00,971.00,,,,,,\n2015,5,1,\"WN\",\"4017\",\"ISP\",\"MCO\",21.00,8.00,0.00,\"\",0.00,152.00,136.00,971.00,,,,,,\n2015,5,1,\"WN\",\"4575\",\"ISP\",\"MCO\",-4.00,-7.00,0.00,\"\",0.00,162.00,143.00,971.00,,,,,,\n2015,5,1,\"WN\",\"4910\",\"ISP\",\"MCO\",-3.00,-13.00,0.00,\"\",0.00,160.00,144.00,971.00,,,,,,\n2015,5,1,\"WN\",\"4479\",\"ISP\",\"PBI\",-1.00,-1.00,0.00,\"\",0.00,170.00,155.00,1052.00,,,,,,\n2015,5,1,\"WN\",\"4729\",\"ISP\",\"PBI\",-5.00,-6.00,0.00,\"\",0.00,169.00,152.00,1052.00,,,,,,\n2015,5,1,\"WN\",\"208\",\"ISP\",\"TPA\",-6.00,-6.00,0.00,\"\",0.00,170.00,154.00,1034.00,,,,,,\n2015,5,1,\"WN\",\"4907\",\"ISP\",\"TPA\",-5.00,-13.00,0.00,\"\",0.00,172.00,154.00,1034.00,,,,,,\n2015,5,1,\"WN\",\"2202\",\"LAS\",\"ALB\",2.00,-9.00,0.00,\"\",0.00,274.00,259.00,2237.00,,,,,,\n2015,5,1,\"WN\",\"2023\",\"LAS\",\"BUF\",-5.00,-15.00,0.00,\"\",0.00,255.00,232.00,1986.00,,,,,,\n2015,5,1,\"WN\",\"2528\",\"LAS\",\"BUF\",-2.00,-5.00,0.00,\"\",0.00,252.00,235.00,1986.00,,,,,,\n2015,5,2,\"WN\",\"1689\",\"ALB\",\"BWI\",-3.00,-16.00,0.00,\"\",0.00,62.00,50.00,289.00,,,,,,\n2015,5,2,\"WN\",\"2021\",\"ALB\",\"BWI\",-5.00,-24.00,0.00,\"\",0.00,66.00,52.00,289.00,,,,,,\n2015,5,2,\"WN\",\"2084\",\"ALB\",\"BWI\",0.00,-15.00,0.00,\"\",0.00,70.00,51.00,289.00,,,,,,\n2015,5,2,\"WN\",\"2497\",\"ALB\",\"BWI\",,,1.00,\"A\",0.00,,,289.00,,,,,,\n2015,5,2,\"WN\",\"3922\",\"ALB\",\"BWI\",-7.00,-21.00,0.00,\"\",0.00,66.00,53.00,289.00,,,,,,\n2015,5,2,\"WN\",\"1716\",\"ALB\",\"FLL\",-3.00,-15.00,0.00,\"\",0.00,178.00,165.00,1204.00,,,,,,\n2015,5,2,\"WN\",\"1036\",\"ALB\",\"LAS\",-7.00,-32.00,0.00,\"\",0.00,305.00,292.00,2237.00,,,,,,\n2015,5,2,\"WN\",\"2664\",\"ALB\",\"MCO\",65.00,53.00,0.00,\"\",0.00,163.00,146.00,1073.00,0.00,0.00,0.00,0.00,53.00,\n2015,5,2,\"WN\",\"2833\",\"ALB\",\"MCO\",-7.00,-20.00,0.00,\"\",0.00,162.00,145.00,1073.00,,,,,,\n2015,5,2,\"WN\",\"1438\",\"ALB\",\"MDW\",-1.00,-30.00,0.00,\"\",0.00,116.00,102.00,717.00,,,,,,\n2015,5,2,\"WN\",\"3475\",\"ALB\",\"MDW\",24.00,3.00,0.00,\"\",0.00,114.00,103.00,717.00,,,,,,\n2015,5,2,\"WN\",\"987\",\"ALB\",\"TPA\",-5.00,-28.00,0.00,\"\",0.00,162.00,153.00,1130.00,,,,,,\n2015,5,2,\"WN\",\"895\",\"ATL\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,132.00,109.00,762.00,,,,,,\n2015,5,2,\"WN\",\"1237\",\"ATL\",\"LGA\",42.00,30.00,0.00,\"\",0.00,123.00,106.00,762.00,0.00,0.00,0.00,0.00,30.00,\n2015,5,2,\"WN\",\"1798\",\"ATL\",\"LGA\",9.00,-9.00,0.00,\"\",0.00,127.00,99.00,762.00,,,,,,\n2015,5,2,\"WN\",\"1859\",\"ATL\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,132.00,110.00,762.00,,,,,,\n2015,5,30,\"US\",\"841\",\"LGA\",\"CLT\",-8.00,-26.00,0.00,\"\",0.00,109.00,73.00,544.00,,,,,,\n2015,5,30,\"US\",\"850\",\"ALB\",\"CLT\",-11.00,-9.00,0.00,\"\",0.00,144.00,113.00,646.00,,,,,,\n2015,5,30,\"US\",\"863\",\"ROC\",\"CLT\",-7.00,-18.00,0.00,\"\",0.00,111.00,85.00,573.00,,,,,,\n2015,5,30,\"US\",\"873\",\"JFK\",\"CLT\",42.00,16.00,0.00,\"\",0.00,98.00,74.00,541.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"US\",\"876\",\"SYR\",\"CLT\",-6.00,-9.00,0.00,\"\",0.00,125.00,91.00,603.00,,,,,,\n2015,5,30,\"US\",\"885\",\"LGA\",\"CLT\",-10.00,-7.00,0.00,\"\",0.00,120.00,78.00,544.00,,,,,,\n2015,5,30,\"US\",\"890\",\"LGA\",\"CLT\",17.00,-10.00,0.00,\"\",0.00,96.00,78.00,544.00,,,,,,\n2015,5,30,\"US\",\"894\",\"LGA\",\"CLT\",-4.00,1.00,0.00,\"\",0.00,128.00,78.00,544.00,,,,,,\n2015,5,30,\"US\",\"896\",\"CLT\",\"ROC\",-4.00,-1.00,0.00,\"\",0.00,105.00,91.00,573.00,,,,,,\n2015,5,30,\"US\",\"1704\",\"ALB\",\"CLT\",-10.00,-26.00,0.00,\"\",0.00,115.00,88.00,646.00,,,,,,\n2015,5,30,\"US\",\"1704\",\"CLT\",\"BUF\",10.00,-1.00,0.00,\"\",0.00,88.00,74.00,546.00,,,,,,\n2015,5,30,\"US\",\"1740\",\"CLT\",\"LGA\",17.00,10.00,0.00,\"\",0.00,100.00,80.00,544.00,,,,,,\n2015,5,30,\"US\",\"1760\",\"LGA\",\"CLT\",0.00,-26.00,0.00,\"\",0.00,96.00,76.00,544.00,,,,,,\n2015,5,30,\"US\",\"1781\",\"LGA\",\"CLT\",-2.00,3.00,0.00,\"\",0.00,130.00,94.00,544.00,,,,,,\n2015,5,30,\"US\",\"1797\",\"BUF\",\"CLT\",-11.00,-5.00,0.00,\"\",0.00,118.00,82.00,546.00,,,,,,\n2015,5,30,\"US\",\"1799\",\"LGA\",\"CLT\",-1.00,19.00,0.00,\"\",0.00,142.00,99.00,544.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,30,\"US\",\"1804\",\"PHL\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,58.00,38.00,96.00,,,,,,\n2015,5,30,\"US\",\"1838\",\"PHL\",\"LGA\",20.00,11.00,0.00,\"\",0.00,46.00,27.00,96.00,,,,,,\n2015,5,30,\"US\",\"1843\",\"LGA\",\"CLT\",-5.00,-11.00,0.00,\"\",0.00,113.00,80.00,544.00,,,,,,\n2015,5,30,\"US\",\"1855\",\"JFK\",\"CLT\",21.00,-1.00,0.00,\"\",0.00,92.00,76.00,541.00,,,,,,\n2015,5,30,\"US\",\"1860\",\"CLT\",\"LGA\",1.00,-1.00,0.00,\"\",0.00,103.00,76.00,544.00,,,,,,\n2015,5,30,\"US\",\"1867\",\"JFK\",\"CLT\",4.00,25.00,0.00,\"\",0.00,142.00,94.00,541.00,0.00,0.00,21.00,0.00,4.00,\n2015,5,30,\"US\",\"1887\",\"LGA\",\"CLT\",-4.00,-24.00,0.00,\"\",0.00,103.00,77.00,544.00,,,,,,\n2015,5,30,\"US\",\"1898\",\"CLT\",\"JFK\",-4.00,37.00,0.00,\"\",0.00,151.00,76.00,541.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,30,\"US\",\"1910\",\"CLT\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,107.00,83.00,544.00,,,,,,\n2015,5,30,\"US\",\"1918\",\"PHL\",\"LGA\",25.00,8.00,0.00,\"\",0.00,52.00,32.00,96.00,,,,,,\n2015,5,30,\"US\",\"1933\",\"LGA\",\"PHL\",-9.00,3.00,0.00,\"\",0.00,85.00,40.00,96.00,,,,,,\n2015,5,30,\"US\",\"1940\",\"CLT\",\"ALB\",-3.00,-4.00,0.00,\"\",0.00,117.00,94.00,646.00,,,,,,\n2015,5,30,\"US\",\"1942\",\"CLT\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,92.00,75.00,546.00,,,,,,\n2015,5,30,\"US\",\"1946\",\"LGA\",\"CLT\",-7.00,-22.00,0.00,\"\",0.00,107.00,82.00,544.00,,,,,,\n2015,5,30,\"US\",\"1952\",\"CLT\",\"BUF\",0.00,-3.00,0.00,\"\",0.00,95.00,72.00,546.00,,,,,,\n2015,5,30,\"US\",\"1954\",\"CLT\",\"LGA\",13.00,17.00,0.00,\"\",0.00,112.00,84.00,544.00,0.00,0.00,4.00,0.00,13.00,\n2015,5,30,\"US\",\"1982\",\"CLT\",\"JFK\",-4.00,10.00,0.00,\"\",0.00,121.00,106.00,541.00,,,,,,\n2015,5,30,\"US\",\"1988\",\"CLT\",\"ALB\",6.00,0.00,0.00,\"\",0.00,119.00,95.00,646.00,,,,,,\n2015,5,30,\"US\",\"2017\",\"CLT\",\"JFK\",13.00,15.00,0.00,\"\",0.00,112.00,84.00,541.00,13.00,0.00,2.00,0.00,0.00,\n2015,5,30,\"US\",\"2036\",\"CLT\",\"SYR\",2.00,4.00,0.00,\"\",0.00,112.00,85.00,603.00,,,,,,\n2015,5,30,\"US\",\"2042\",\"CLT\",\"JFK\",3.00,18.00,0.00,\"\",0.00,121.00,87.00,541.00,3.00,0.00,15.00,0.00,0.00,\n2015,5,30,\"US\",\"2047\",\"BUF\",\"CLT\",-10.00,-15.00,0.00,\"\",0.00,104.00,80.00,546.00,,,,,,\n2015,5,30,\"US\",\"2050\",\"CLT\",\"LGA\",42.00,30.00,0.00,\"\",0.00,96.00,81.00,544.00,14.00,0.00,0.00,0.00,16.00,\n2015,5,30,\"US\",\"2062\",\"CLT\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,98.00,83.00,544.00,,,,,,\n2015,5,30,\"US\",\"2064\",\"CLT\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,105.00,78.00,544.00,,,,,,\n2015,5,30,\"US\",\"2066\",\"CLT\",\"LGA\",-4.00,9.00,0.00,\"\",0.00,124.00,94.00,544.00,,,,,,\n2015,5,30,\"US\",\"2068\",\"CLT\",\"LGA\",-2.00,0.00,0.00,\"\",0.00,109.00,82.00,544.00,,,,,,\n2015,5,30,\"US\",\"2069\",\"BUF\",\"CLT\",-3.00,0.00,0.00,\"\",0.00,114.00,86.00,546.00,,,,,,\n2015,5,30,\"US\",\"2126\",\"BOS\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,61.00,45.00,184.00,,,,,,\n2015,5,30,\"US\",\"2135\",\"DCA\",\"LGA\",-6.00,-27.00,0.00,\"\",0.00,67.00,51.00,214.00,,,,,,\n2015,5,30,\"US\",\"2135\",\"LGA\",\"DCA\",-6.00,-25.00,0.00,\"\",0.00,63.00,40.00,214.00,,,,,,\n2015,5,30,\"US\",\"2136\",\"LGA\",\"BOS\",-6.00,-21.00,0.00,\"\",0.00,63.00,39.00,184.00,,,,,,\n2015,5,30,\"US\",\"2145\",\"DCA\",\"LGA\",-7.00,-1.00,0.00,\"\",0.00,94.00,48.00,214.00,,,,,,\n2015,5,30,\"US\",\"2146\",\"LGA\",\"DCA\",-5.00,-8.00,0.00,\"\",0.00,81.00,46.00,214.00,,,,,,\n2015,5,30,\"US\",\"2156\",\"DCA\",\"LGA\",-8.00,-1.00,0.00,\"\",0.00,83.00,45.00,214.00,,,,,,\n2015,5,30,\"US\",\"2156\",\"LGA\",\"DCA\",-6.00,-23.00,0.00,\"\",0.00,58.00,44.00,214.00,,,,,,\n2015,5,30,\"US\",\"2158\",\"LGA\",\"BOS\",-10.00,-14.00,0.00,\"\",0.00,60.00,39.00,184.00,,,,,,\n2015,5,2,\"VX\",\"404\",\"LAX\",\"JFK\",-1.00,-8.00,0.00,\"\",0.00,318.00,301.00,2475.00,,,,,,\n2015,5,2,\"VX\",\"406\",\"LAX\",\"JFK\",3.00,-17.00,0.00,\"\",0.00,315.00,300.00,2475.00,,,,,,\n2015,5,2,\"VX\",\"407\",\"JFK\",\"LAX\",88.00,70.00,0.00,\"\",0.00,352.00,323.00,2475.00,70.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"VX\",\"411\",\"JFK\",\"LAX\",-10.00,-23.00,0.00,\"\",0.00,352.00,325.00,2475.00,,,,,,\n2015,5,2,\"VX\",\"413\",\"JFK\",\"LAX\",0.00,-31.00,0.00,\"\",0.00,360.00,324.00,2475.00,,,,,,\n2015,5,2,\"VX\",\"415\",\"JFK\",\"LAX\",10.00,-9.00,0.00,\"\",0.00,361.00,324.00,2475.00,,,,,,\n2015,5,2,\"VX\",\"416\",\"LAX\",\"JFK\",2.00,2.00,0.00,\"\",0.00,320.00,302.00,2475.00,,,,,,\n2015,5,2,\"VX\",\"420\",\"LAX\",\"JFK\",-1.00,-3.00,0.00,\"\",0.00,323.00,298.00,2475.00,,,,,,\n2015,5,2,\"VX\",\"715\",\"LGA\",\"DAL\",-4.00,4.00,0.00,\"\",0.00,248.00,195.00,1381.00,,,,,,\n2015,5,2,\"VX\",\"719\",\"LGA\",\"DAL\",-2.00,-53.00,0.00,\"\",0.00,189.00,175.00,1381.00,,,,,,\n2015,5,2,\"VX\",\"766\",\"DAL\",\"LGA\",6.00,29.00,0.00,\"\",0.00,208.00,189.00,1381.00,6.00,23.00,0.00,0.00,0.00,\n2015,5,2,\"VX\",\"772\",\"DAL\",\"LGA\",-8.00,1.00,0.00,\"\",0.00,194.00,177.00,1381.00,,,,,,\n2015,5,20,\"VX\",\"11\",\"JFK\",\"SFO\",-6.00,16.00,0.00,\"\",0.00,407.00,369.00,2586.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,20,\"VX\",\"12\",\"SFO\",\"JFK\",8.00,-31.00,0.00,\"\",0.00,306.00,275.00,2586.00,,,,,,\n2015,5,20,\"VX\",\"22\",\"SFO\",\"JFK\",-1.00,-21.00,0.00,\"\",0.00,324.00,289.00,2586.00,,,,,,\n2015,5,20,\"VX\",\"23\",\"JFK\",\"SFO\",61.00,67.00,0.00,\"\",0.00,391.00,363.00,2586.00,0.00,6.00,61.00,0.00,0.00,\n2015,5,20,\"VX\",\"24\",\"SFO\",\"JFK\",1.00,-26.00,0.00,\"\",0.00,318.00,290.00,2586.00,,,,,,\n2015,5,20,\"VX\",\"251\",\"JFK\",\"LAS\",-3.00,19.00,0.00,\"\",0.00,362.00,321.00,2248.00,0.00,19.00,0.00,0.00,0.00,\n2015,5,20,\"VX\",\"260\",\"LAS\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,270.00,249.00,2248.00,,,,,,\n2015,5,20,\"VX\",\"26\",\"SFO\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,315.00,286.00,2586.00,,,,,,\n2015,5,20,\"VX\",\"27\",\"JFK\",\"SFO\",20.00,21.00,0.00,\"\",0.00,406.00,361.00,2586.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,20,\"VX\",\"29\",\"JFK\",\"SFO\",67.00,58.00,0.00,\"\",0.00,396.00,363.00,2586.00,0.00,0.00,58.00,0.00,0.00,\n2015,5,20,\"VX\",\"34\",\"SFO\",\"JFK\",1.00,-6.00,0.00,\"\",0.00,328.00,289.00,2586.00,,,,,,\n2015,5,20,\"VX\",\"399\",\"JFK\",\"LAX\",-11.00,-12.00,0.00,\"\",0.00,364.00,344.00,2475.00,,,,,,\n2015,5,20,\"VX\",\"404\",\"LAX\",\"JFK\",-2.00,-37.00,0.00,\"\",0.00,290.00,270.00,2475.00,,,,,,\n2015,5,20,\"VX\",\"406\",\"LAX\",\"JFK\",0.00,-33.00,0.00,\"\",0.00,302.00,272.00,2475.00,,,,,,\n2015,5,20,\"VX\",\"407\",\"JFK\",\"LAX\",-3.00,29.00,0.00,\"\",0.00,402.00,347.00,2475.00,0.00,29.00,0.00,0.00,0.00,\n2015,5,20,\"VX\",\"411\",\"JFK\",\"LAX\",-4.00,5.00,0.00,\"\",0.00,374.00,354.00,2475.00,,,,,,\n2015,5,20,\"VX\",\"412\",\"LAX\",\"JFK\",-2.00,-33.00,0.00,\"\",0.00,299.00,271.00,2475.00,,,,,,\n2015,5,20,\"VX\",\"413\",\"JFK\",\"LAX\",-2.00,1.00,0.00,\"\",0.00,394.00,357.00,2475.00,,,,,,\n2015,5,20,\"VX\",\"415\",\"JFK\",\"LAX\",-5.00,-11.00,0.00,\"\",0.00,374.00,343.00,2475.00,,,,,,\n2015,5,20,\"VX\",\"416\",\"LAX\",\"JFK\",-2.00,-23.00,0.00,\"\",0.00,299.00,277.00,2475.00,,,,,,\n2015,5,20,\"VX\",\"420\",\"LAX\",\"JFK\",0.00,-27.00,0.00,\"\",0.00,298.00,276.00,2475.00,,,,,,\n2015,5,20,\"VX\",\"710\",\"DAL\",\"LGA\",4.00,11.00,0.00,\"\",0.00,192.00,166.00,1381.00,,,,,,\n2015,5,20,\"VX\",\"715\",\"LGA\",\"DAL\",5.00,0.00,0.00,\"\",0.00,235.00,200.00,1381.00,,,,,,\n2015,5,20,\"VX\",\"719\",\"LGA\",\"DAL\",11.00,14.00,0.00,\"\",0.00,243.00,202.00,1381.00,,,,,,\n2015,5,20,\"VX\",\"762\",\"DAL\",\"LGA\",-6.00,3.00,0.00,\"\",0.00,194.00,166.00,1381.00,,,,,,\n2015,5,20,\"VX\",\"766\",\"DAL\",\"LGA\",0.00,5.00,0.00,\"\",0.00,190.00,170.00,1381.00,,,,,,\n2015,5,20,\"VX\",\"769\",\"LGA\",\"DAL\",5.00,21.00,0.00,\"\",0.00,256.00,193.00,1381.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,20,\"VX\",\"874\",\"DAL\",\"LGA\",7.00,14.00,0.00,\"\",0.00,192.00,165.00,1381.00,,,,,,\n2015,5,20,\"VX\",\"879\",\"LGA\",\"DAL\",-11.00,-24.00,0.00,\"\",0.00,227.00,204.00,1381.00,,,,,,\n2015,5,21,\"VX\",\"11\",\"JFK\",\"SFO\",6.00,13.00,0.00,\"\",0.00,392.00,371.00,2586.00,,,,,,\n2015,5,21,\"VX\",\"12\",\"SFO\",\"JFK\",8.00,-34.00,0.00,\"\",0.00,303.00,284.00,2586.00,,,,,,\n2015,5,21,\"VX\",\"22\",\"SFO\",\"JFK\",5.00,-9.00,0.00,\"\",0.00,330.00,297.00,2586.00,,,,,,\n2015,5,21,\"VX\",\"23\",\"JFK\",\"SFO\",-3.00,8.00,0.00,\"\",0.00,396.00,370.00,2586.00,,,,,,\n2015,5,21,\"VX\",\"24\",\"SFO\",\"JFK\",54.00,22.00,0.00,\"\",0.00,313.00,293.00,2586.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,21,\"VX\",\"251\",\"JFK\",\"LAS\",-2.00,16.00,0.00,\"\",0.00,358.00,322.00,2248.00,0.00,16.00,0.00,0.00,0.00,\n2015,5,21,\"VX\",\"25\",\"JFK\",\"SFO\",-1.00,17.00,0.00,\"\",0.00,393.00,366.00,2586.00,0.00,17.00,0.00,0.00,0.00,\n2015,5,21,\"VX\",\"260\",\"LAS\",\"JFK\",29.00,24.00,0.00,\"\",0.00,284.00,260.00,2248.00,0.00,0.00,0.00,0.00,24.00,\n2015,5,21,\"VX\",\"26\",\"SFO\",\"JFK\",26.00,12.00,0.00,\"\",0.00,315.00,291.00,2586.00,,,,,,\n2015,5,21,\"VX\",\"27\",\"JFK\",\"SFO\",34.00,2.00,0.00,\"\",0.00,373.00,346.00,2586.00,,,,,,\n2015,5,21,\"VX\",\"29\",\"JFK\",\"SFO\",101.00,79.00,0.00,\"\",0.00,383.00,351.00,2586.00,0.00,0.00,79.00,0.00,0.00,\n2015,5,21,\"VX\",\"34\",\"SFO\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,333.00,301.00,2586.00,,,,,,\n2015,5,21,\"VX\",\"399\",\"JFK\",\"LAX\",0.00,3.00,0.00,\"\",0.00,368.00,336.00,2475.00,,,,,,\n2015,5,21,\"VX\",\"404\",\"LAX\",\"JFK\",0.00,-18.00,0.00,\"\",0.00,307.00,285.00,2475.00,,,,,,\n2015,5,21,\"VX\",\"406\",\"LAX\",\"JFK\",7.00,-29.00,0.00,\"\",0.00,299.00,282.00,2475.00,,,,,,\n2015,5,21,\"VX\",\"407\",\"JFK\",\"LAX\",0.00,11.00,0.00,\"\",0.00,381.00,350.00,2475.00,,,,,,\n2015,5,21,\"VX\",\"411\",\"JFK\",\"LAX\",1.00,19.00,0.00,\"\",0.00,383.00,354.00,2475.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,21,\"VX\",\"412\",\"LAX\",\"JFK\",9.00,-5.00,0.00,\"\",0.00,316.00,285.00,2475.00,,,,,,\n2015,5,21,\"VX\",\"413\",\"JFK\",\"LAX\",-3.00,-10.00,0.00,\"\",0.00,384.00,339.00,2475.00,,,,,,\n2015,5,21,\"VX\",\"415\",\"JFK\",\"LAX\",0.00,25.00,0.00,\"\",0.00,405.00,356.00,2475.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,21,\"VX\",\"416\",\"LAX\",\"JFK\",-2.00,-16.00,0.00,\"\",0.00,306.00,288.00,2475.00,,,,,,\n2015,5,21,\"VX\",\"420\",\"LAX\",\"JFK\",14.00,2.00,0.00,\"\",0.00,313.00,289.00,2475.00,,,,,,\n2015,5,21,\"VX\",\"710\",\"DAL\",\"LGA\",4.00,9.00,0.00,\"\",0.00,190.00,173.00,1381.00,,,,,,\n2015,5,21,\"VX\",\"715\",\"LGA\",\"DAL\",34.00,24.00,0.00,\"\",0.00,230.00,207.00,1381.00,6.00,0.00,0.00,0.00,18.00,\n2015,5,21,\"VX\",\"719\",\"LGA\",\"DAL\",11.00,28.00,0.00,\"\",0.00,257.00,214.00,1381.00,0.00,0.00,17.00,0.00,11.00,\n2015,5,21,\"VX\",\"762\",\"DAL\",\"LGA\",15.00,26.00,0.00,\"\",0.00,196.00,166.00,1381.00,0.00,26.00,0.00,0.00,0.00,\n2015,5,21,\"VX\",\"766\",\"DAL\",\"LGA\",12.00,11.00,0.00,\"\",0.00,184.00,165.00,1381.00,,,,,,\n2015,5,21,\"VX\",\"769\",\"LGA\",\"DAL\",-3.00,27.00,0.00,\"\",0.00,270.00,210.00,1381.00,0.00,0.00,27.00,0.00,0.00,\n2015,5,21,\"VX\",\"874\",\"DAL\",\"LGA\",37.00,37.00,0.00,\"\",0.00,185.00,164.00,1381.00,6.00,0.00,0.00,0.00,31.00,\n2015,5,21,\"VX\",\"879\",\"LGA\",\"DAL\",-6.00,-26.00,0.00,\"\",0.00,220.00,204.00,1381.00,,,,,,\n2015,5,22,\"VX\",\"11\",\"JFK\",\"SFO\",3.00,-2.00,0.00,\"\",0.00,380.00,361.00,2586.00,,,,,,\n2015,5,22,\"VX\",\"12\",\"SFO\",\"JFK\",-1.00,-6.00,0.00,\"\",0.00,340.00,310.00,2586.00,,,,,,\n2015,5,22,\"VX\",\"22\",\"SFO\",\"JFK\",-2.00,-13.00,0.00,\"\",0.00,333.00,312.00,2586.00,,,,,,\n2015,5,22,\"VX\",\"23\",\"JFK\",\"SFO\",47.00,44.00,0.00,\"\",0.00,382.00,355.00,2586.00,0.00,0.00,44.00,0.00,0.00,\n2015,5,22,\"VX\",\"24\",\"SFO\",\"JFK\",59.00,46.00,0.00,\"\",0.00,332.00,302.00,2586.00,0.00,0.00,0.00,0.00,46.00,\n2015,5,22,\"VX\",\"251\",\"JFK\",\"LAS\",-3.00,31.00,0.00,\"\",0.00,374.00,336.00,2248.00,0.00,31.00,0.00,0.00,0.00,\n2015,5,22,\"VX\",\"25\",\"JFK\",\"SFO\",6.00,8.00,0.00,\"\",0.00,377.00,354.00,2586.00,,,,,,\n2015,5,22,\"VX\",\"260\",\"LAS\",\"JFK\",-8.00,-16.00,0.00,\"\",0.00,281.00,258.00,2248.00,,,,,,\n2015,5,22,\"VX\",\"26\",\"SFO\",\"JFK\",29.00,8.00,0.00,\"\",0.00,308.00,288.00,2586.00,,,,,,\n2015,5,22,\"VX\",\"27\",\"JFK\",\"SFO\",61.00,41.00,0.00,\"\",0.00,385.00,351.00,2586.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,22,\"VX\",\"29\",\"JFK\",\"SFO\",48.00,52.00,0.00,\"\",0.00,409.00,359.00,2586.00,0.00,4.00,48.00,0.00,0.00,\n2015,5,22,\"VX\",\"34\",\"SFO\",\"JFK\",37.00,16.00,0.00,\"\",0.00,314.00,290.00,2586.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,22,\"VX\",\"399\",\"JFK\",\"LAX\",-6.00,-11.00,0.00,\"\",0.00,360.00,339.00,2475.00,,,,,,\n2015,5,22,\"VX\",\"404\",\"LAX\",\"JFK\",-4.00,-14.00,0.00,\"\",0.00,315.00,294.00,2475.00,,,,,,\n2015,5,22,\"VX\",\"406\",\"LAX\",\"JFK\",-3.00,-43.00,0.00,\"\",0.00,295.00,272.00,2475.00,,,,,,\n2015,5,22,\"VX\",\"407\",\"JFK\",\"LAX\",-5.00,11.00,0.00,\"\",0.00,386.00,349.00,2475.00,,,,,,\n2015,5,22,\"VX\",\"411\",\"JFK\",\"LAX\",-5.00,8.00,0.00,\"\",0.00,378.00,358.00,2475.00,,,,,,\n2015,5,22,\"VX\",\"412\",\"LAX\",\"JFK\",4.00,-12.00,0.00,\"\",0.00,314.00,287.00,2475.00,,,,,,\n2015,5,22,\"VX\",\"413\",\"JFK\",\"LAX\",-2.00,-15.00,0.00,\"\",0.00,378.00,353.00,2475.00,,,,,,\n2015,5,22,\"VX\",\"415\",\"JFK\",\"LAX\",-2.00,22.00,0.00,\"\",0.00,404.00,353.00,2475.00,0.00,22.00,0.00,0.00,0.00,\n2015,5,22,\"VX\",\"416\",\"LAX\",\"JFK\",3.00,-28.00,0.00,\"\",0.00,289.00,268.00,2475.00,,,,,,\n2015,5,22,\"VX\",\"420\",\"LAX\",\"JFK\",-1.00,4.00,0.00,\"\",0.00,330.00,287.00,2475.00,,,,,,\n2015,5,22,\"VX\",\"710\",\"DAL\",\"LGA\",4.00,-1.00,0.00,\"\",0.00,180.00,164.00,1381.00,,,,,,\n2015,5,22,\"VX\",\"715\",\"LGA\",\"DAL\",1.00,0.00,0.00,\"\",0.00,239.00,198.00,1381.00,,,,,,\n2015,5,22,\"VX\",\"719\",\"LGA\",\"DAL\",-4.00,-24.00,0.00,\"\",0.00,220.00,201.00,1381.00,,,,,,\n2015,5,22,\"VX\",\"762\",\"DAL\",\"LGA\",1.00,-1.00,0.00,\"\",0.00,183.00,162.00,1381.00,,,,,,\n2015,5,22,\"VX\",\"766\",\"DAL\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,179.00,162.00,1381.00,,,,,,\n2015,5,22,\"VX\",\"769\",\"LGA\",\"DAL\",-8.00,-25.00,0.00,\"\",0.00,223.00,205.00,1381.00,,,,,,\n2015,5,22,\"VX\",\"874\",\"DAL\",\"LGA\",52.00,52.00,0.00,\"\",0.00,185.00,165.00,1381.00,0.00,0.00,0.00,0.00,52.00,\n2015,5,22,\"VX\",\"879\",\"LGA\",\"DAL\",-8.00,-15.00,0.00,\"\",0.00,233.00,211.00,1381.00,,,,,,\n2015,5,23,\"VX\",\"11\",\"JFK\",\"SFO\",-3.00,-15.00,0.00,\"\",0.00,373.00,354.00,2586.00,,,,,,\n2015,5,23,\"VX\",\"12\",\"SFO\",\"JFK\",-5.00,-24.00,0.00,\"\",0.00,326.00,289.00,2586.00,,,,,,\n2015,5,23,\"VX\",\"22\",\"SFO\",\"JFK\",-6.00,-26.00,0.00,\"\",0.00,324.00,299.00,2586.00,,,,,,\n2015,5,23,\"VX\",\"23\",\"JFK\",\"SFO\",-4.00,-8.00,0.00,\"\",0.00,381.00,364.00,2586.00,,,,,,\n2015,5,23,\"VX\",\"24\",\"SFO\",\"JFK\",-8.00,-14.00,0.00,\"\",0.00,339.00,306.00,2586.00,,,,,,\n2015,5,23,\"VX\",\"251\",\"JFK\",\"LAS\",-2.00,-15.00,0.00,\"\",0.00,327.00,305.00,2248.00,,,,,,\n2015,5,23,\"VX\",\"25\",\"JFK\",\"SFO\",-8.00,-10.00,0.00,\"\",0.00,373.00,350.00,2586.00,,,,,,\n2015,5,23,\"VX\",\"260\",\"LAS\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,275.00,257.00,2248.00,,,,,,\n2015,5,23,\"VX\",\"26\",\"SFO\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,313.00,295.00,2586.00,,,,,,\n2015,5,23,\"VX\",\"27\",\"JFK\",\"SFO\",6.00,-3.00,0.00,\"\",0.00,396.00,370.00,2586.00,,,,,,\n2015,5,23,\"VX\",\"399\",\"JFK\",\"LAX\",20.00,13.00,0.00,\"\",0.00,358.00,320.00,2475.00,,,,,,\n2015,5,23,\"VX\",\"404\",\"LAX\",\"JFK\",3.00,7.00,0.00,\"\",0.00,329.00,284.00,2475.00,,,,,,\n2015,5,23,\"VX\",\"406\",\"LAX\",\"JFK\",0.00,-8.00,0.00,\"\",0.00,327.00,295.00,2475.00,,,,,,\n2015,5,23,\"VX\",\"407\",\"JFK\",\"LAX\",-4.00,-17.00,0.00,\"\",0.00,357.00,331.00,2475.00,,,,,,\n2015,5,23,\"VX\",\"411\",\"JFK\",\"LAX\",-3.00,4.00,0.00,\"\",0.00,372.00,349.00,2475.00,,,,,,\n2015,5,23,\"VX\",\"412\",\"LAX\",\"JFK\",0.00,-4.00,0.00,\"\",0.00,326.00,293.00,2475.00,,,,,,\n2015,5,23,\"VX\",\"413\",\"JFK\",\"LAX\",7.00,-7.00,0.00,\"\",0.00,377.00,344.00,2475.00,,,,,,\n2015,5,23,\"VX\",\"420\",\"LAX\",\"JFK\",-1.00,-13.00,0.00,\"\",0.00,313.00,286.00,2475.00,,,,,,\n2015,5,23,\"VX\",\"715\",\"LGA\",\"DAL\",-6.00,-14.00,0.00,\"\",0.00,232.00,196.00,1381.00,,,,,,\n2015,5,23,\"VX\",\"719\",\"LGA\",\"DAL\",-10.00,-31.00,0.00,\"\",0.00,219.00,192.00,1381.00,,,,,,\n2015,5,23,\"VX\",\"766\",\"DAL\",\"LGA\",-3.00,1.00,0.00,\"\",0.00,189.00,169.00,1381.00,,,,,,\n2015,5,23,\"VX\",\"772\",\"DAL\",\"LGA\",-4.00,17.00,0.00,\"\",0.00,206.00,175.00,1381.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,24,\"VX\",\"22\",\"SFO\",\"JFK\",-4.00,-15.00,0.00,\"\",0.00,333.00,310.00,2586.00,,,,,,\n2015,5,24,\"VX\",\"23\",\"JFK\",\"SFO\",-4.00,-24.00,0.00,\"\",0.00,365.00,336.00,2586.00,,,,,,\n2015,5,24,\"VX\",\"24\",\"SFO\",\"JFK\",1.00,-6.00,0.00,\"\",0.00,338.00,312.00,2586.00,,,,,,\n2015,5,24,\"VX\",\"251\",\"JFK\",\"LAS\",-5.00,-24.00,0.00,\"\",0.00,321.00,298.00,2248.00,,,,,,\n2015,5,24,\"VX\",\"25\",\"JFK\",\"SFO\",-2.00,-14.00,0.00,\"\",0.00,363.00,339.00,2586.00,,,,,,\n2015,5,24,\"VX\",\"260\",\"LAS\",\"JFK\",-9.00,-4.00,0.00,\"\",0.00,294.00,271.00,2248.00,,,,,,\n2015,5,24,\"VX\",\"26\",\"SFO\",\"JFK\",-2.00,2.00,0.00,\"\",0.00,333.00,306.00,2586.00,,,,,,\n2015,5,24,\"VX\",\"27\",\"JFK\",\"SFO\",-8.00,-69.00,0.00,\"\",0.00,344.00,323.00,2586.00,,,,,,\n2015,5,24,\"VX\",\"29\",\"JFK\",\"SFO\",-2.00,-43.00,0.00,\"\",0.00,364.00,341.00,2586.00,,,,,,\n2015,5,24,\"VX\",\"34\",\"SFO\",\"JFK\",-2.00,1.00,0.00,\"\",0.00,338.00,313.00,2586.00,,,,,,\n2015,5,24,\"VX\",\"399\",\"JFK\",\"LAX\",4.00,-17.00,0.00,\"\",0.00,344.00,321.00,2475.00,,,,,,\n2015,5,24,\"VX\",\"404\",\"LAX\",\"JFK\",-3.00,-19.00,0.00,\"\",0.00,309.00,293.00,2475.00,,,,,,\n2015,5,24,\"VX\",\"406\",\"LAX\",\"JFK\",-4.00,-26.00,0.00,\"\",0.00,313.00,295.00,2475.00,,,,,,\n2015,5,24,\"VX\",\"407\",\"JFK\",\"LAX\",-8.00,-30.00,0.00,\"\",0.00,348.00,326.00,2475.00,,,,,,\n2015,5,24,\"VX\",\"411\",\"JFK\",\"LAX\",-1.00,-13.00,0.00,\"\",0.00,353.00,326.00,2475.00,,,,,,\n2015,5,24,\"VX\",\"412\",\"LAX\",\"JFK\",-3.00,-14.00,0.00,\"\",0.00,319.00,303.00,2475.00,,,,,,\n2015,5,24,\"VX\",\"413\",\"JFK\",\"LAX\",-3.00,-42.00,0.00,\"\",0.00,352.00,326.00,2475.00,,,,,,\n2015,5,24,\"VX\",\"415\",\"JFK\",\"LAX\",-9.00,-26.00,0.00,\"\",0.00,363.00,326.00,2475.00,,,,,,\n2015,5,24,\"VX\",\"416\",\"LAX\",\"JFK\",-7.00,-9.00,0.00,\"\",0.00,318.00,299.00,2475.00,,,,,,\n2015,5,24,\"VX\",\"420\",\"LAX\",\"JFK\",-9.00,-13.00,0.00,\"\",0.00,321.00,302.00,2475.00,,,,,,\n2015,5,24,\"VX\",\"710\",\"DAL\",\"LGA\",-5.00,0.00,0.00,\"\",0.00,190.00,172.00,1381.00,,,,,,\n2015,5,24,\"VX\",\"715\",\"LGA\",\"DAL\",-9.00,-10.00,0.00,\"\",0.00,239.00,200.00,1381.00,,,,,,\n2015,5,24,\"VX\",\"719\",\"LGA\",\"DAL\",-10.00,-33.00,0.00,\"\",0.00,217.00,203.00,1381.00,,,,,,\n2015,5,24,\"VX\",\"766\",\"DAL\",\"LGA\",-8.00,-10.00,0.00,\"\",0.00,183.00,169.00,1381.00,,,,,,\n2015,5,24,\"VX\",\"769\",\"LGA\",\"DAL\",-12.00,-43.00,0.00,\"\",0.00,209.00,190.00,1381.00,,,,,,\n2015,5,24,\"VX\",\"874\",\"DAL\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,183.00,168.00,1381.00,,,,,,\n2015,5,25,\"VX\",\"11\",\"JFK\",\"SFO\",-7.00,-34.00,0.00,\"\",0.00,358.00,335.00,2586.00,,,,,,\n2015,5,25,\"VX\",\"12\",\"SFO\",\"JFK\",7.00,-6.00,0.00,\"\",0.00,332.00,306.00,2586.00,,,,,,\n2015,5,25,\"VX\",\"22\",\"SFO\",\"JFK\",-1.00,-15.00,0.00,\"\",0.00,330.00,311.00,2586.00,,,,,,\n2015,5,25,\"VX\",\"23\",\"JFK\",\"SFO\",-4.00,-27.00,0.00,\"\",0.00,362.00,337.00,2586.00,,,,,,\n2015,5,25,\"VX\",\"24\",\"SFO\",\"JFK\",26.00,12.00,0.00,\"\",0.00,331.00,312.00,2586.00,,,,,,\n2015,5,25,\"VX\",\"251\",\"JFK\",\"LAS\",47.00,18.00,0.00,\"\",0.00,311.00,290.00,2248.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"VX\",\"25\",\"JFK\",\"SFO\",38.00,26.00,0.00,\"\",0.00,363.00,338.00,2586.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,25,\"VX\",\"260\",\"LAS\",\"JFK\",-4.00,-10.00,0.00,\"\",0.00,283.00,264.00,2248.00,,,,,,\n2015,5,25,\"VX\",\"26\",\"SFO\",\"JFK\",-4.00,-12.00,0.00,\"\",0.00,321.00,304.00,2586.00,,,,,,\n2015,5,25,\"VX\",\"27\",\"JFK\",\"SFO\",28.00,-11.00,0.00,\"\",0.00,366.00,330.00,2586.00,,,,,,\n2015,5,25,\"VX\",\"29\",\"JFK\",\"SFO\",-8.00,-14.00,0.00,\"\",0.00,399.00,349.00,2586.00,,,,,,\n2015,5,25,\"VX\",\"34\",\"SFO\",\"JFK\",19.00,10.00,0.00,\"\",0.00,326.00,301.00,2586.00,,,,,,\n2015,5,25,\"VX\",\"399\",\"JFK\",\"LAX\",-3.00,-15.00,0.00,\"\",0.00,353.00,319.00,2475.00,,,,,,\n2015,5,25,\"VX\",\"404\",\"LAX\",\"JFK\",-2.00,-17.00,0.00,\"\",0.00,310.00,296.00,2475.00,,,,,,\n2015,5,25,\"VX\",\"406\",\"LAX\",\"JFK\",-3.00,-11.00,0.00,\"\",0.00,327.00,301.00,2475.00,,,,,,\n2015,5,25,\"VX\",\"407\",\"JFK\",\"LAX\",-8.00,-23.00,0.00,\"\",0.00,355.00,322.00,2475.00,,,,,,\n2015,5,25,\"VX\",\"411\",\"JFK\",\"LAX\",174.00,170.00,0.00,\"\",0.00,361.00,332.00,2475.00,170.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"VX\",\"412\",\"LAX\",\"JFK\",0.00,6.00,0.00,\"\",0.00,336.00,295.00,2475.00,,,,,,\n2015,5,25,\"VX\",\"413\",\"JFK\",\"LAX\",-2.00,-18.00,0.00,\"\",0.00,375.00,342.00,2475.00,,,,,,\n2015,5,25,\"VX\",\"415\",\"JFK\",\"LAX\",2.00,-9.00,0.00,\"\",0.00,369.00,325.00,2475.00,,,,,,\n2015,5,25,\"VX\",\"416\",\"LAX\",\"JFK\",14.00,4.00,0.00,\"\",0.00,310.00,289.00,2475.00,,,,,,\n2015,5,25,\"VX\",\"420\",\"LAX\",\"JFK\",-3.00,3.00,0.00,\"\",0.00,331.00,296.00,2475.00,,,,,,\n2015,5,25,\"VX\",\"710\",\"DAL\",\"LGA\",-5.00,14.00,0.00,\"\",0.00,204.00,169.00,1381.00,,,,,,\n2015,5,25,\"VX\",\"715\",\"LGA\",\"DAL\",11.00,-14.00,0.00,\"\",0.00,215.00,197.00,1381.00,,,,,,\n2015,5,25,\"VX\",\"719\",\"LGA\",\"DAL\",22.00,80.00,0.00,\"\",0.00,298.00,229.00,1381.00,7.00,0.00,58.00,0.00,15.00,\n2015,5,25,\"VX\",\"761\",\"LGA\",\"DAL\",-6.00,-33.00,0.00,\"\",0.00,213.00,198.00,1381.00,,,,,,\n2015,5,25,\"VX\",\"762\",\"DAL\",\"LGA\",-3.00,10.00,0.00,\"\",0.00,198.00,181.00,1381.00,,,,,,\n2015,5,25,\"VX\",\"766\",\"DAL\",\"LGA\",-6.00,10.00,0.00,\"\",0.00,201.00,181.00,1381.00,,,,,,\n2015,5,25,\"VX\",\"769\",\"LGA\",\"DAL\",6.00,21.00,0.00,\"\",0.00,255.00,221.00,1381.00,6.00,0.00,15.00,0.00,0.00,\n2015,5,1,\"WN\",\"12\",\"STL\",\"LGA\",8.00,0.00,0.00,\"\",0.00,137.00,121.00,888.00,,,,,,\n2015,5,1,\"WN\",\"1194\",\"STL\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,137.00,121.00,888.00,,,,,,\n2015,5,1,\"WN\",\"1986\",\"STL\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,140.00,119.00,888.00,,,,,,\n2015,5,1,\"WN\",\"854\",\"TPA\",\"ALB\",7.00,-7.00,0.00,\"\",0.00,156.00,140.00,1130.00,,,,,,\n2015,5,1,\"WN\",\"127\",\"TPA\",\"BUF\",2.00,-11.00,0.00,\"\",0.00,142.00,130.00,1053.00,,,,,,\n2015,5,1,\"WN\",\"1390\",\"TPA\",\"BUF\",10.00,10.00,0.00,\"\",0.00,155.00,134.00,1053.00,,,,,,\n2015,5,1,\"WN\",\"2423\",\"TPA\",\"ISP\",-1.00,-14.00,0.00,\"\",0.00,142.00,127.00,1034.00,,,,,,\n2015,5,1,\"WN\",\"4390\",\"TPA\",\"ISP\",-1.00,-25.00,0.00,\"\",0.00,141.00,125.00,1034.00,,,,,,\n2015,5,1,\"WN\",\"719\",\"TPA\",\"ROC\",11.00,2.00,0.00,\"\",0.00,151.00,138.00,1079.00,,,,,,\n2015,5,2,\"WN\",\"353\",\"PBI\",\"ISP\",0.00,-4.00,0.00,\"\",0.00,156.00,132.00,1052.00,,,,,,\n2015,5,2,\"WN\",\"1559\",\"PBI\",\"ISP\",18.00,6.00,0.00,\"\",0.00,148.00,133.00,1052.00,,,,,,\n2015,5,2,\"WN\",\"2319\",\"PHX\",\"BUF\",-4.00,-18.00,0.00,\"\",0.00,241.00,228.00,1912.00,,,,,,\n2015,5,2,\"WN\",\"2753\",\"ROC\",\"BWI\",0.00,2.00,0.00,\"\",0.00,77.00,49.00,277.00,,,,,,\n2015,5,2,\"WN\",\"3853\",\"ROC\",\"BWI\",5.00,-15.00,0.00,\"\",0.00,60.00,45.00,277.00,,,,,,\n2015,5,2,\"WN\",\"1093\",\"ROC\",\"MCO\",-2.00,-9.00,0.00,\"\",0.00,153.00,136.00,1033.00,,,,,,\n2015,5,2,\"WN\",\"1735\",\"ROC\",\"MCO\",-5.00,-21.00,0.00,\"\",0.00,144.00,132.00,1033.00,,,,,,\n2015,5,2,\"WN\",\"2721\",\"ROC\",\"MDW\",-8.00,-13.00,0.00,\"\",0.00,100.00,82.00,523.00,,,,,,\n2015,5,2,\"WN\",\"2815\",\"ROC\",\"TPA\",298.00,294.00,0.00,\"\",0.00,161.00,144.00,1079.00,0.00,0.00,0.00,0.00,294.00,\n2015,5,2,\"WN\",\"2638\",\"STL\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,131.00,119.00,888.00,,,,,,\n2015,5,2,\"WN\",\"1057\",\"TPA\",\"ALB\",-2.00,-18.00,0.00,\"\",0.00,154.00,142.00,1130.00,,,,,,\n2015,5,2,\"WN\",\"3205\",\"TPA\",\"BUF\",30.00,37.00,0.00,\"\",0.00,162.00,141.00,1053.00,30.00,0.00,7.00,0.00,0.00,\n2015,5,2,\"WN\",\"4552\",\"TPA\",\"BUF\",0.00,-9.00,0.00,\"\",0.00,151.00,137.00,1053.00,,,,,,\n2015,5,2,\"WN\",\"1297\",\"TPA\",\"ISP\",-3.00,-9.00,0.00,\"\",0.00,154.00,141.00,1034.00,,,,,,\n2015,5,2,\"WN\",\"2547\",\"TPA\",\"ISP\",-3.00,-12.00,0.00,\"\",0.00,151.00,138.00,1034.00,,,,,,\n2015,5,2,\"WN\",\"2753\",\"TPA\",\"ROC\",1.00,-5.00,0.00,\"\",0.00,154.00,137.00,1079.00,,,,,,\n2015,5,3,\"WN\",\"223\",\"ALB\",\"BWI\",-1.00,-18.00,0.00,\"\",0.00,63.00,50.00,289.00,,,,,,\n2015,5,3,\"WN\",\"752\",\"ALB\",\"BWI\",-3.00,-14.00,0.00,\"\",0.00,69.00,54.00,289.00,,,,,,\n2015,5,3,\"WN\",\"854\",\"ALB\",\"BWI\",-4.00,-9.00,0.00,\"\",0.00,70.00,55.00,289.00,,,,,,\n2015,5,3,\"WN\",\"1011\",\"ALB\",\"BWI\",-2.00,-13.00,0.00,\"\",0.00,69.00,52.00,289.00,,,,,,\n2015,5,3,\"WN\",\"3294\",\"ALB\",\"BWI\",-5.00,-28.00,0.00,\"\",0.00,62.00,49.00,289.00,,,,,,\n2015,5,3,\"WN\",\"3917\",\"ALB\",\"BWI\",-4.00,-15.00,0.00,\"\",0.00,69.00,53.00,289.00,,,,,,\n2015,5,3,\"WN\",\"1987\",\"ALB\",\"FLL\",-3.00,-20.00,0.00,\"\",0.00,173.00,162.00,1204.00,,,,,,\n2015,5,3,\"WN\",\"346\",\"ALB\",\"LAS\",6.00,-17.00,0.00,\"\",0.00,307.00,294.00,2237.00,,,,,,\n2015,5,3,\"WN\",\"3919\",\"ALB\",\"MCO\",239.00,228.00,0.00,\"\",0.00,164.00,145.00,1073.00,0.00,0.00,0.00,0.00,228.00,\n2015,5,3,\"WN\",\"4362\",\"ALB\",\"MCO\",-5.00,-17.00,0.00,\"\",0.00,163.00,147.00,1073.00,,,,,,\n2015,5,3,\"WN\",\"1550\",\"ALB\",\"MDW\",-3.00,-24.00,0.00,\"\",0.00,114.00,102.00,717.00,,,,,,\n2015,5,3,\"WN\",\"4985\",\"ALB\",\"MDW\",-9.00,-13.00,0.00,\"\",0.00,131.00,103.00,717.00,,,,,,\n2015,5,3,\"WN\",\"3650\",\"ALB\",\"TPA\",-3.00,-22.00,0.00,\"\",0.00,166.00,153.00,1130.00,,,,,,\n2015,5,3,\"WN\",\"815\",\"ATL\",\"LGA\",18.00,16.00,0.00,\"\",0.00,138.00,109.00,762.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"WN\",\"1182\",\"ATL\",\"LGA\",1.00,-6.00,0.00,\"\",0.00,133.00,107.00,762.00,,,,,,\n2015,5,3,\"WN\",\"2516\",\"ATL\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,127.00,106.00,762.00,,,,,,\n2015,5,3,\"WN\",\"2659\",\"ATL\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,124.00,107.00,762.00,,,,,,\n2015,5,3,\"WN\",\"3701\",\"ATL\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,125.00,107.00,762.00,,,,,,\n2015,5,2,\"WN\",\"2044\",\"BNA\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,117.00,103.00,764.00,,,,,,\n2015,5,2,\"WN\",\"1426\",\"BUF\",\"BWI\",0.00,-3.00,0.00,\"\",0.00,72.00,51.00,281.00,,,,,,\n2015,5,2,\"WN\",\"1832\",\"BUF\",\"BWI\",-9.00,-30.00,0.00,\"\",0.00,64.00,48.00,281.00,,,,,,\n2015,5,2,\"WN\",\"2660\",\"BUF\",\"BWI\",-4.00,-15.00,0.00,\"\",0.00,64.00,52.00,281.00,,,,,,\n2015,5,2,\"WN\",\"2674\",\"BUF\",\"BWI\",-2.00,-16.00,0.00,\"\",0.00,66.00,49.00,281.00,,,,,,\n2015,5,2,\"WN\",\"2755\",\"BUF\",\"BWI\",-6.00,-11.00,0.00,\"\",0.00,65.00,48.00,281.00,,,,,,\n2015,5,2,\"WN\",\"2489\",\"BUF\",\"FLL\",7.00,-5.00,0.00,\"\",0.00,168.00,154.00,1166.00,,,,,,\n2015,5,2,\"WN\",\"1334\",\"BUF\",\"LAS\",-4.00,-22.00,0.00,\"\",0.00,272.00,258.00,1986.00,,,,,,\n2015,5,2,\"WN\",\"2542\",\"BUF\",\"LAS\",-3.00,-35.00,0.00,\"\",0.00,273.00,259.00,1986.00,,,,,,\n2015,5,2,\"WN\",\"1579\",\"BUF\",\"MCO\",81.00,68.00,0.00,\"\",0.00,147.00,129.00,1011.00,0.00,0.00,0.00,0.00,68.00,\n2015,5,2,\"WN\",\"2046\",\"BUF\",\"MCO\",23.00,0.00,0.00,\"\",0.00,147.00,127.00,1011.00,,,,,,\n2015,5,2,\"WN\",\"2319\",\"BUF\",\"MCO\",-6.00,-27.00,0.00,\"\",0.00,139.00,126.00,1011.00,,,,,,\n2015,5,2,\"WN\",\"2784\",\"BUF\",\"MCO\",0.00,-14.00,0.00,\"\",0.00,146.00,128.00,1011.00,,,,,,\n2015,5,2,\"WN\",\"1149\",\"BUF\",\"MDW\",-1.00,-19.00,0.00,\"\",0.00,82.00,73.00,468.00,,,,,,\n2015,5,2,\"WN\",\"2318\",\"BUF\",\"MDW\",1.00,-22.00,0.00,\"\",0.00,87.00,71.00,468.00,,,,,,\n2015,5,2,\"WN\",\"4561\",\"BUF\",\"MDW\",0.00,-13.00,0.00,\"\",0.00,92.00,72.00,468.00,,,,,,\n2015,5,2,\"WN\",\"1219\",\"BUF\",\"PHX\",-3.00,-30.00,0.00,\"\",0.00,263.00,249.00,1912.00,,,,,,\n2015,5,2,\"WN\",\"3475\",\"BUF\",\"TPA\",-4.00,-20.00,0.00,\"\",0.00,149.00,135.00,1053.00,,,,,,\n2015,5,2,\"WN\",\"4641\",\"BUF\",\"TPA\",-3.00,-22.00,0.00,\"\",0.00,146.00,135.00,1053.00,,,,,,\n2015,5,2,\"WN\",\"1851\",\"BWI\",\"ALB\",6.00,6.00,0.00,\"\",0.00,70.00,55.00,289.00,,,,,,\n2015,5,2,\"WN\",\"2114\",\"BWI\",\"ALB\",-9.00,-14.00,0.00,\"\",0.00,70.00,53.00,289.00,,,,,,\n2015,5,2,\"WN\",\"2425\",\"BWI\",\"ALB\",-1.00,10.00,0.00,\"\",0.00,86.00,54.00,289.00,,,,,,\n2015,5,2,\"WN\",\"2681\",\"BWI\",\"ALB\",,,1.00,\"A\",0.00,,,289.00,,,,,,\n2015,5,2,\"WN\",\"3475\",\"BWI\",\"ALB\",21.00,24.00,0.00,\"\",0.00,73.00,53.00,289.00,16.00,0.00,3.00,0.00,5.00,\n2015,5,2,\"WN\",\"1149\",\"BWI\",\"BUF\",3.00,1.00,0.00,\"\",0.00,63.00,47.00,281.00,,,,,,\n2015,5,2,\"WN\",\"1579\",\"BWI\",\"BUF\",58.00,81.00,0.00,\"\",0.00,88.00,49.00,281.00,0.00,0.00,23.00,0.00,58.00,\n2015,5,2,\"WN\",\"1689\",\"BWI\",\"BUF\",94.00,87.00,0.00,\"\",0.00,63.00,48.00,281.00,87.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"WN\",\"2489\",\"BWI\",\"BUF\",1.00,1.00,0.00,\"\",0.00,65.00,48.00,281.00,,,,,,\n2015,5,2,\"WN\",\"2878\",\"BWI\",\"BUF\",7.00,-4.00,0.00,\"\",0.00,59.00,45.00,281.00,,,,,,\n2015,5,2,\"WN\",\"1056\",\"BWI\",\"ISP\",-7.00,-9.00,0.00,\"\",0.00,63.00,46.00,220.00,,,,,,\n2015,5,2,\"WN\",\"1201\",\"BWI\",\"ISP\",24.00,9.00,0.00,\"\",0.00,55.00,42.00,220.00,,,,,,\n2015,5,2,\"WN\",\"2551\",\"BWI\",\"ISP\",-5.00,0.00,0.00,\"\",0.00,65.00,47.00,220.00,,,,,,\n2015,5,2,\"WN\",\"2836\",\"BWI\",\"ISP\",24.00,32.00,0.00,\"\",0.00,68.00,49.00,220.00,24.00,0.00,8.00,0.00,0.00,\n2015,5,2,\"WN\",\"1062\",\"BWI\",\"ROC\",82.00,67.00,0.00,\"\",0.00,60.00,46.00,277.00,0.00,0.00,0.00,0.00,67.00,\n2015,5,2,\"WN\",\"2815\",\"BWI\",\"ROC\",314.00,306.00,0.00,\"\",0.00,62.00,46.00,277.00,306.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"WN\",\"1848\",\"CAK\",\"LGA\",1.00,-7.00,0.00,\"\",0.00,82.00,67.00,397.00,,,,,,\n2015,5,2,\"WN\",\"1602\",\"DAL\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,191.00,172.00,1381.00,,,,,,\n2015,5,2,\"WN\",\"1942\",\"DAL\",\"LGA\",16.00,9.00,0.00,\"\",0.00,198.00,181.00,1381.00,,,,,,\n2015,5,2,\"WN\",\"2104\",\"DAL\",\"LGA\",3.00,0.00,0.00,\"\",0.00,202.00,187.00,1381.00,,,,,,\n2015,5,2,\"WN\",\"1412\",\"DEN\",\"LGA\",41.00,22.00,0.00,\"\",0.00,216.00,198.00,1620.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"WN\",\"1498\",\"DEN\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,211.00,196.00,1620.00,,,,,,\n2015,5,2,\"WN\",\"4725\",\"FLL\",\"ALB\",-2.00,-29.00,0.00,\"\",0.00,163.00,147.00,1204.00,,,,,,\n2015,5,2,\"WN\",\"2695\",\"FLL\",\"BUF\",-8.00,-27.00,0.00,\"\",0.00,166.00,147.00,1166.00,,,,,,\n2015,5,2,\"WN\",\"1137\",\"FLL\",\"ISP\",-1.00,-23.00,0.00,\"\",0.00,153.00,138.00,1092.00,,,,,,\n2015,5,2,\"WN\",\"4912\",\"FLL\",\"ISP\",13.00,-16.00,0.00,\"\",0.00,151.00,136.00,1092.00,,,,,,\n2015,5,3,\"WN\",\"299\",\"HOU\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,199.00,183.00,1428.00,,,,,,\n2015,5,3,\"WN\",\"1163\",\"HOU\",\"LGA\",4.00,-6.00,0.00,\"\",0.00,200.00,185.00,1428.00,,,,,,\n2015,5,3,\"WN\",\"2643\",\"HOU\",\"LGA\",-2.00,1.00,0.00,\"\",0.00,208.00,191.00,1428.00,,,,,,\n2015,5,3,\"WN\",\"325\",\"ISP\",\"BWI\",4.00,0.00,0.00,\"\",0.00,66.00,54.00,220.00,,,,,,\n2015,5,3,\"WN\",\"580\",\"ISP\",\"BWI\",-7.00,-17.00,0.00,\"\",0.00,65.00,47.00,220.00,,,,,,\n2015,5,3,\"WN\",\"667\",\"ISP\",\"BWI\",-4.00,-11.00,0.00,\"\",0.00,68.00,49.00,220.00,,,,,,\n2015,5,3,\"WN\",\"2940\",\"ISP\",\"BWI\",-7.00,-20.00,0.00,\"\",0.00,62.00,51.00,220.00,,,,,,\n2015,5,3,\"WN\",\"4878\",\"ISP\",\"BWI\",-6.00,-15.00,0.00,\"\",0.00,66.00,53.00,220.00,,,,,,\n2015,5,3,\"WN\",\"752\",\"ISP\",\"FLL\",45.00,26.00,0.00,\"\",0.00,166.00,156.00,1092.00,5.00,0.00,0.00,0.00,21.00,\n2015,5,3,\"WN\",\"4554\",\"ISP\",\"FLL\",-2.00,-17.00,0.00,\"\",0.00,165.00,151.00,1092.00,,,,,,\n2015,5,3,\"WN\",\"663\",\"ISP\",\"MCO\",-5.00,-20.00,0.00,\"\",0.00,145.00,129.00,971.00,,,,,,\n2015,5,3,\"WN\",\"4017\",\"ISP\",\"MCO\",65.00,46.00,0.00,\"\",0.00,146.00,129.00,971.00,0.00,0.00,0.00,0.00,46.00,\n2015,5,3,\"WN\",\"4575\",\"ISP\",\"MCO\",-5.00,-20.00,0.00,\"\",0.00,150.00,136.00,971.00,,,,,,\n2015,5,3,\"WN\",\"4910\",\"ISP\",\"MCO\",-5.00,-19.00,0.00,\"\",0.00,156.00,142.00,971.00,,,,,,\n2015,5,3,\"WN\",\"4479\",\"ISP\",\"PBI\",-3.00,-12.00,0.00,\"\",0.00,161.00,150.00,1052.00,,,,,,\n2015,5,3,\"WN\",\"4729\",\"ISP\",\"PBI\",-6.00,-18.00,0.00,\"\",0.00,158.00,146.00,1052.00,,,,,,\n2015,5,3,\"WN\",\"208\",\"ISP\",\"TPA\",-4.00,-12.00,0.00,\"\",0.00,162.00,144.00,1034.00,,,,,,\n2015,5,3,\"WN\",\"4907\",\"ISP\",\"TPA\",-7.00,-18.00,0.00,\"\",0.00,169.00,155.00,1034.00,,,,,,\n2015,5,3,\"WN\",\"2202\",\"LAS\",\"ALB\",-3.00,43.00,0.00,\"\",0.00,331.00,263.00,2237.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,3,\"WN\",\"2023\",\"LAS\",\"BUF\",-7.00,-16.00,0.00,\"\",0.00,256.00,234.00,1986.00,,,,,,\n2015,5,3,\"WN\",\"2528\",\"LAS\",\"BUF\",-2.00,30.00,0.00,\"\",0.00,287.00,235.00,1986.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,3,\"WN\",\"178\",\"LGA\",\"ATL\",-3.00,-17.00,0.00,\"\",0.00,146.00,106.00,762.00,,,,,,\n2015,5,3,\"WN\",\"2939\",\"LGA\",\"ATL\",-5.00,-53.00,0.00,\"\",0.00,122.00,105.00,762.00,,,,,,\n2015,5,3,\"WN\",\"3133\",\"LGA\",\"ATL\",-4.00,-36.00,0.00,\"\",0.00,128.00,105.00,762.00,,,,,,\n2015,5,3,\"WN\",\"3391\",\"LGA\",\"ATL\",80.00,42.00,0.00,\"\",0.00,122.00,100.00,762.00,1.00,0.00,0.00,0.00,41.00,\n2015,5,3,\"WN\",\"4728\",\"LGA\",\"ATL\",-5.00,-47.00,0.00,\"\",0.00,133.00,107.00,762.00,,,,,,\n2015,5,3,\"WN\",\"914\",\"LGA\",\"BNA\",-3.00,-28.00,0.00,\"\",0.00,125.00,105.00,764.00,,,,,,\n2015,5,3,\"WN\",\"1208\",\"LGA\",\"BNA\",-5.00,-31.00,0.00,\"\",0.00,129.00,105.00,764.00,,,,,,\n2015,5,3,\"WN\",\"1370\",\"LGA\",\"BNA\",1.00,-44.00,0.00,\"\",0.00,120.00,103.00,764.00,,,,,,\n2015,5,3,\"WN\",\"202\",\"LGA\",\"CAK\",-7.00,-14.00,0.00,\"\",0.00,93.00,60.00,397.00,,,,,,\n2015,5,3,\"WN\",\"534\",\"LGA\",\"CAK\",-8.00,-27.00,0.00,\"\",0.00,81.00,61.00,397.00,,,,,,\n2015,5,3,\"WN\",\"255\",\"LGA\",\"DAL\",0.00,-30.00,0.00,\"\",0.00,215.00,181.00,1381.00,,,,,,\n2015,5,3,\"WN\",\"431\",\"LGA\",\"DAL\",-5.00,-34.00,0.00,\"\",0.00,211.00,179.00,1381.00,,,,,,\n2015,5,3,\"WN\",\"2347\",\"LGA\",\"DAL\",4.00,-46.00,0.00,\"\",0.00,195.00,177.00,1381.00,,,,,,\n2015,5,3,\"WN\",\"165\",\"LGA\",\"DEN\",-5.00,-34.00,0.00,\"\",0.00,246.00,216.00,1620.00,,,,,,\n2015,5,3,\"WN\",\"3741\",\"LGA\",\"DEN\",21.00,11.00,0.00,\"\",0.00,265.00,241.00,1620.00,,,,,,\n2015,5,3,\"WN\",\"682\",\"LGA\",\"HOU\",-6.00,-36.00,0.00,\"\",0.00,210.00,190.00,1428.00,,,,,,\n2015,5,3,\"WN\",\"2778\",\"LGA\",\"HOU\",-1.00,-38.00,0.00,\"\",0.00,213.00,192.00,1428.00,,,,,,\n2015,5,3,\"WN\",\"413\",\"LGA\",\"MCI\",-2.00,-37.00,0.00,\"\",0.00,165.00,149.00,1107.00,,,,,,\n2015,5,3,\"WN\",\"479\",\"LGA\",\"MDW\",122.00,96.00,0.00,\"\",0.00,119.00,107.00,725.00,0.00,0.00,0.00,0.00,96.00,\n2015,5,3,\"WN\",\"777\",\"LGA\",\"MDW\",-4.00,-35.00,0.00,\"\",0.00,124.00,109.00,725.00,,,,,,\n2015,5,3,\"WN\",\"868\",\"LGA\",\"MDW\",47.00,24.00,0.00,\"\",0.00,137.00,104.00,725.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"WN\",\"2516\",\"LGA\",\"MDW\",-5.00,-28.00,0.00,\"\",0.00,137.00,105.00,725.00,,,,,,\n2015,5,3,\"WN\",\"2529\",\"LGA\",\"MDW\",1.00,-26.00,0.00,\"\",0.00,123.00,104.00,725.00,,,,,,\n2015,5,3,\"WN\",\"2659\",\"LGA\",\"MDW\",-4.00,-31.00,0.00,\"\",0.00,128.00,106.00,725.00,,,,,,\n2015,5,3,\"WN\",\"4123\",\"LGA\",\"MDW\",19.00,-1.00,0.00,\"\",0.00,130.00,102.00,725.00,,,,,,\n2015,5,3,\"WN\",\"1344\",\"LGA\",\"MKE\",18.00,-3.00,0.00,\"\",0.00,129.00,106.00,738.00,,,,,,\n2015,5,3,\"WN\",\"2433\",\"LGA\",\"MKE\",11.00,-12.00,0.00,\"\",0.00,132.00,108.00,738.00,,,,,,\n2015,5,3,\"WN\",\"943\",\"LGA\",\"STL\",-4.00,-27.00,0.00,\"\",0.00,137.00,120.00,888.00,,,,,,\n2015,5,3,\"WN\",\"2643\",\"LGA\",\"STL\",13.00,-20.00,0.00,\"\",0.00,147.00,125.00,888.00,,,,,,\n2015,5,3,\"WN\",\"4571\",\"LGA\",\"STL\",-3.00,-13.00,0.00,\"\",0.00,160.00,123.00,888.00,,,,,,\n2015,5,3,\"WN\",\"333\",\"MCI\",\"LGA\",136.00,124.00,0.00,\"\",0.00,158.00,143.00,1107.00,0.00,0.00,0.00,0.00,124.00,\n2015,5,3,\"WN\",\"1011\",\"MCO\",\"ALB\",9.00,-1.00,0.00,\"\",0.00,155.00,142.00,1073.00,,,,,,\n2015,5,3,\"WN\",\"2849\",\"MCO\",\"ALB\",0.00,-16.00,0.00,\"\",0.00,144.00,135.00,1073.00,,,,,,\n2015,5,3,\"WN\",\"728\",\"MCO\",\"BUF\",-5.00,-15.00,0.00,\"\",0.00,145.00,136.00,1011.00,,,,,,\n2015,5,3,\"WN\",\"801\",\"MCO\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,147.00,134.00,1011.00,,,,,,\n2015,5,3,\"WN\",\"2423\",\"MCO\",\"BUF\",-3.00,-10.00,0.00,\"\",0.00,148.00,134.00,1011.00,,,,,,\n2015,5,3,\"WN\",\"2632\",\"MCO\",\"BUF\",-3.00,-8.00,0.00,\"\",0.00,150.00,136.00,1011.00,,,,,,\n2015,5,3,\"WN\",\"293\",\"MCO\",\"ISP\",-1.00,-5.00,0.00,\"\",0.00,151.00,131.00,971.00,,,,,,\n2015,5,3,\"WN\",\"325\",\"MCO\",\"ISP\",4.00,0.00,0.00,\"\",0.00,146.00,135.00,971.00,,,,,,\n2015,5,3,\"WN\",\"426\",\"MCO\",\"ISP\",-5.00,-10.00,0.00,\"\",0.00,145.00,130.00,971.00,,,,,,\n2015,5,3,\"WN\",\"4486\",\"MCO\",\"ISP\",-4.00,-7.00,0.00,\"\",0.00,147.00,133.00,971.00,,,,,,\n2015,5,3,\"WN\",\"3935\",\"MCO\",\"ROC\",-4.00,-4.00,0.00,\"\",0.00,155.00,136.00,1033.00,,,,,,\n2015,5,3,\"WN\",\"103\",\"MDW\",\"ALB\",1.00,-7.00,0.00,\"\",0.00,107.00,91.00,717.00,,,,,,\n2015,5,3,\"WN\",\"1461\",\"MDW\",\"ALB\",-6.00,-16.00,0.00,\"\",0.00,105.00,93.00,717.00,,,,,,\n2015,5,3,\"WN\",\"134\",\"MDW\",\"BUF\",-7.00,-18.00,0.00,\"\",0.00,79.00,69.00,468.00,,,,,,\n2015,5,3,\"WN\",\"615\",\"MDW\",\"BUF\",-3.00,-15.00,0.00,\"\",0.00,78.00,64.00,468.00,,,,,,\n2015,5,3,\"WN\",\"2241\",\"MDW\",\"BUF\",-9.00,-31.00,0.00,\"\",0.00,78.00,66.00,468.00,,,,,,\n2015,5,3,\"WN\",\"255\",\"BNA\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,121.00,107.00,764.00,,,,,,\n2015,5,3,\"WN\",\"2433\",\"BNA\",\"LGA\",16.00,9.00,0.00,\"\",0.00,123.00,108.00,764.00,,,,,,\n2015,5,3,\"WN\",\"2570\",\"BNA\",\"LGA\",4.00,-9.00,0.00,\"\",0.00,122.00,104.00,764.00,,,,,,\n2015,5,3,\"WN\",\"381\",\"BUF\",\"BWI\",34.00,26.00,0.00,\"\",0.00,62.00,47.00,281.00,3.00,0.00,0.00,0.00,23.00,\n2015,5,3,\"WN\",\"728\",\"BUF\",\"BWI\",-3.00,-8.00,0.00,\"\",0.00,65.00,56.00,281.00,,,,,,\n2015,5,3,\"WN\",\"1429\",\"BUF\",\"BWI\",-4.00,-32.00,0.00,\"\",0.00,57.00,46.00,281.00,,,,,,\n2015,5,3,\"WN\",\"1528\",\"BUF\",\"BWI\",0.00,-15.00,0.00,\"\",0.00,60.00,46.00,281.00,,,,,,\n2015,5,3,\"WN\",\"2423\",\"BUF\",\"BWI\",11.00,-5.00,0.00,\"\",0.00,59.00,47.00,281.00,,,,,,\n2015,5,3,\"WN\",\"1785\",\"BUF\",\"FLL\",-2.00,-26.00,0.00,\"\",0.00,161.00,148.00,1166.00,,,,,,\n2015,5,3,\"WN\",\"361\",\"BUF\",\"LAS\",-1.00,-22.00,0.00,\"\",0.00,279.00,261.00,1986.00,,,,,,\n2015,5,3,\"WN\",\"615\",\"BUF\",\"LAS\",-7.00,-13.00,0.00,\"\",0.00,284.00,257.00,1986.00,,,,,,\n2015,5,3,\"WN\",\"134\",\"BUF\",\"MCO\",-4.00,-16.00,0.00,\"\",0.00,148.00,128.00,1011.00,,,,,,\n2015,5,3,\"WN\",\"674\",\"BUF\",\"MCO\",339.00,322.00,0.00,\"\",0.00,143.00,127.00,1011.00,0.00,0.00,0.00,0.00,322.00,\n2015,5,3,\"WN\",\"854\",\"BUF\",\"MCO\",-10.00,-26.00,0.00,\"\",0.00,144.00,127.00,1011.00,,,,,,\n2015,5,3,\"WN\",\"2141\",\"BUF\",\"MCO\",-5.00,-17.00,0.00,\"\",0.00,148.00,126.00,1011.00,,,,,,\n2015,5,3,\"WN\",\"717\",\"BUF\",\"MDW\",-6.00,-26.00,0.00,\"\",0.00,90.00,73.00,468.00,,,,,,\n2015,5,3,\"WN\",\"2023\",\"BUF\",\"MDW\",-6.00,-23.00,0.00,\"\",0.00,88.00,73.00,468.00,,,,,,\n2015,5,3,\"WN\",\"2632\",\"BUF\",\"MDW\",-5.00,-16.00,0.00,\"\",0.00,89.00,73.00,468.00,,,,,,\n2015,5,3,\"WN\",\"328\",\"BUF\",\"PHX\",2.00,-25.00,0.00,\"\",0.00,263.00,251.00,1912.00,,,,,,\n2015,5,3,\"WN\",\"984\",\"BUF\",\"TPA\",-5.00,-22.00,0.00,\"\",0.00,148.00,134.00,1053.00,,,,,,\n2015,5,3,\"WN\",\"2824\",\"BUF\",\"TPA\",0.00,-12.00,0.00,\"\",0.00,153.00,136.00,1053.00,,,,,,\n2015,5,3,\"WN\",\"334\",\"BWI\",\"ALB\",-3.00,-9.00,0.00,\"\",0.00,69.00,57.00,289.00,,,,,,\n2015,5,3,\"WN\",\"346\",\"BWI\",\"ALB\",1.00,6.00,0.00,\"\",0.00,70.00,56.00,289.00,,,,,,\n2015,5,3,\"WN\",\"598\",\"BWI\",\"ALB\",12.00,10.00,0.00,\"\",0.00,68.00,53.00,289.00,,,,,,\n2015,5,3,\"WN\",\"1269\",\"BWI\",\"ALB\",22.00,11.00,0.00,\"\",0.00,64.00,48.00,289.00,,,,,,\n2015,5,3,\"WN\",\"3033\",\"BWI\",\"ALB\",1.00,-3.00,0.00,\"\",0.00,66.00,53.00,289.00,,,,,,\n2015,5,3,\"WN\",\"3919\",\"BWI\",\"ALB\",247.00,246.00,0.00,\"\",0.00,69.00,51.00,289.00,246.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"WN\",\"328\",\"BWI\",\"BUF\",15.00,8.00,0.00,\"\",0.00,58.00,48.00,281.00,,,,,,\n2015,5,3,\"WN\",\"572\",\"BWI\",\"BUF\",39.00,30.00,0.00,\"\",0.00,61.00,46.00,281.00,17.00,0.00,0.00,0.00,13.00,\n2015,5,3,\"WN\",\"854\",\"BWI\",\"BUF\",-7.00,-17.00,0.00,\"\",0.00,60.00,48.00,281.00,,,,,,\n2015,5,3,\"WN\",\"1350\",\"BWI\",\"BUF\",-3.00,-7.00,0.00,\"\",0.00,61.00,47.00,281.00,,,,,,\n2015,5,3,\"WN\",\"1900\",\"BWI\",\"BUF\",9.00,-6.00,0.00,\"\",0.00,60.00,46.00,281.00,,,,,,\n2015,5,3,\"WN\",\"232\",\"BWI\",\"ISP\",75.00,70.00,0.00,\"\",0.00,60.00,47.00,220.00,53.00,0.00,0.00,0.00,17.00,\n2015,5,3,\"WN\",\"752\",\"BWI\",\"ISP\",32.00,37.00,0.00,\"\",0.00,65.00,48.00,220.00,32.00,0.00,5.00,0.00,0.00,\n2015,5,3,\"WN\",\"2452\",\"BWI\",\"ISP\",-5.00,-15.00,0.00,\"\",0.00,60.00,45.00,220.00,,,,,,\n2015,5,3,\"WN\",\"3793\",\"BWI\",\"ISP\",61.00,54.00,0.00,\"\",0.00,58.00,47.00,220.00,54.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"WN\",\"4017\",\"BWI\",\"ISP\",75.00,73.00,0.00,\"\",0.00,58.00,44.00,220.00,0.00,0.00,0.00,0.00,73.00,\n2015,5,3,\"WN\",\"597\",\"BWI\",\"ROC\",18.00,18.00,0.00,\"\",0.00,70.00,48.00,277.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"WN\",\"3564\",\"BWI\",\"ROC\",-2.00,-7.00,0.00,\"\",0.00,65.00,50.00,277.00,,,,,,\n2015,5,3,\"WN\",\"3466\",\"CAK\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,83.00,68.00,397.00,,,,,,\n2015,5,3,\"WN\",\"4728\",\"CAK\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,89.00,65.00,397.00,,,,,,\n2015,5,3,\"WN\",\"691\",\"DAL\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,198.00,179.00,1381.00,,,,,,\n2015,5,3,\"WN\",\"1214\",\"DAL\",\"LGA\",28.00,19.00,0.00,\"\",0.00,196.00,178.00,1381.00,1.00,0.00,0.00,0.00,18.00,\n2015,5,3,\"WN\",\"2141\",\"DAL\",\"LGA\",8.00,3.00,0.00,\"\",0.00,200.00,184.00,1381.00,,,,,,\n2015,5,3,\"WN\",\"824\",\"DEN\",\"LGA\",3.00,-6.00,0.00,\"\",0.00,226.00,208.00,1620.00,,,,,,\n2015,5,3,\"WN\",\"1370\",\"DEN\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,218.00,199.00,1620.00,,,,,,\n2015,5,3,\"WN\",\"1898\",\"FLL\",\"ALB\",-7.00,-17.00,0.00,\"\",0.00,170.00,153.00,1204.00,,,,,,\n2015,5,3,\"WN\",\"4643\",\"FLL\",\"BUF\",-5.00,-8.00,0.00,\"\",0.00,182.00,154.00,1166.00,,,,,,\n2015,5,3,\"WN\",\"3568\",\"FLL\",\"ISP\",9.00,-9.00,0.00,\"\",0.00,157.00,141.00,1092.00,,,,,,\n2015,5,3,\"WN\",\"4640\",\"FLL\",\"ISP\",-8.00,-25.00,0.00,\"\",0.00,153.00,140.00,1092.00,,,,,,\n2015,5,3,\"WN\",\"1194\",\"STL\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,136.00,119.00,888.00,,,,,,\n2015,5,3,\"WN\",\"1986\",\"STL\",\"LGA\",7.00,-2.00,0.00,\"\",0.00,131.00,116.00,888.00,,,,,,\n2015,5,3,\"WN\",\"3741\",\"STL\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,133.00,124.00,888.00,,,,,,\n2015,5,3,\"WN\",\"854\",\"TPA\",\"ALB\",5.00,-6.00,0.00,\"\",0.00,159.00,147.00,1130.00,,,,,,\n2015,5,3,\"WN\",\"127\",\"TPA\",\"BUF\",345.00,343.00,0.00,\"\",0.00,153.00,140.00,1053.00,343.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"WN\",\"2160\",\"TPA\",\"BUF\",69.00,66.00,0.00,\"\",0.00,152.00,137.00,1053.00,66.00,0.00,0.00,0.00,0.00,\n2015,5,3,\"WN\",\"2423\",\"TPA\",\"ISP\",-6.00,-12.00,0.00,\"\",0.00,149.00,137.00,1034.00,,,,,,\n2015,5,3,\"WN\",\"4390\",\"TPA\",\"ISP\",-4.00,-23.00,0.00,\"\",0.00,146.00,133.00,1034.00,,,,,,\n2015,5,3,\"WN\",\"3874\",\"TPA\",\"ROC\",1.00,-3.00,0.00,\"\",0.00,156.00,143.00,1079.00,,,,,,\n2015,5,4,\"WN\",\"223\",\"ALB\",\"BWI\",-8.00,-22.00,0.00,\"\",0.00,66.00,54.00,289.00,,,,,,\n2015,5,4,\"WN\",\"752\",\"ALB\",\"BWI\",10.00,-9.00,0.00,\"\",0.00,61.00,51.00,289.00,,,,,,\n2015,5,4,\"WN\",\"854\",\"ALB\",\"BWI\",-4.00,-16.00,0.00,\"\",0.00,63.00,51.00,289.00,,,,,,\n2015,5,4,\"WN\",\"1011\",\"ALB\",\"BWI\",-6.00,-18.00,0.00,\"\",0.00,68.00,50.00,289.00,,,,,,\n2015,5,4,\"WN\",\"3294\",\"ALB\",\"BWI\",1.00,-20.00,0.00,\"\",0.00,64.00,49.00,289.00,,,,,,\n2015,5,4,\"WN\",\"3917\",\"ALB\",\"BWI\",-5.00,-22.00,0.00,\"\",0.00,63.00,52.00,289.00,,,,,,\n2015,5,4,\"WN\",\"1987\",\"ALB\",\"FLL\",-1.00,-5.00,0.00,\"\",0.00,186.00,169.00,1204.00,,,,,,\n2015,5,4,\"WN\",\"346\",\"ALB\",\"LAS\",-4.00,-29.00,0.00,\"\",0.00,305.00,293.00,2237.00,,,,,,\n2015,5,4,\"WN\",\"3919\",\"ALB\",\"MCO\",-4.00,-16.00,0.00,\"\",0.00,163.00,150.00,1073.00,,,,,,\n2015,5,4,\"WN\",\"4362\",\"ALB\",\"MCO\",-4.00,-18.00,0.00,\"\",0.00,161.00,146.00,1073.00,,,,,,\n2015,5,4,\"WN\",\"1550\",\"ALB\",\"MDW\",5.00,-4.00,0.00,\"\",0.00,126.00,109.00,717.00,,,,,,\n2015,5,4,\"WN\",\"4985\",\"ALB\",\"MDW\",-3.00,-3.00,0.00,\"\",0.00,135.00,103.00,717.00,,,,,,\n2015,5,4,\"WN\",\"3650\",\"ALB\",\"TPA\",-6.00,-25.00,0.00,\"\",0.00,166.00,154.00,1130.00,,,,,,\n2015,5,4,\"WN\",\"815\",\"ATL\",\"LGA\",9.00,1.00,0.00,\"\",0.00,132.00,105.00,762.00,,,,,,\n2015,5,4,\"WN\",\"1182\",\"ATL\",\"LGA\",42.00,20.00,0.00,\"\",0.00,118.00,103.00,762.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"WN\",\"2516\",\"ATL\",\"LGA\",2.00,-15.00,0.00,\"\",0.00,118.00,102.00,762.00,,,,,,\n2015,5,4,\"WN\",\"2659\",\"ATL\",\"LGA\",1.00,-18.00,0.00,\"\",0.00,126.00,106.00,762.00,,,,,,\n2015,5,4,\"WN\",\"2850\",\"ATL\",\"LGA\",19.00,23.00,0.00,\"\",0.00,139.00,104.00,762.00,19.00,0.00,4.00,0.00,0.00,\n2015,5,4,\"WN\",\"255\",\"BNA\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,131.00,106.00,764.00,,,,,,\n2015,5,4,\"WN\",\"2433\",\"BNA\",\"LGA\",10.00,9.00,0.00,\"\",0.00,129.00,108.00,764.00,,,,,,\n2015,5,4,\"WN\",\"2570\",\"BNA\",\"LGA\",19.00,21.00,0.00,\"\",0.00,137.00,108.00,764.00,5.00,0.00,2.00,0.00,14.00,\n2015,5,4,\"WN\",\"381\",\"BUF\",\"BWI\",-6.00,-11.00,0.00,\"\",0.00,65.00,54.00,281.00,,,,,,\n2015,5,4,\"WN\",\"728\",\"BUF\",\"BWI\",0.00,-11.00,0.00,\"\",0.00,59.00,48.00,281.00,,,,,,\n2015,5,4,\"WN\",\"842\",\"BUF\",\"BWI\",-3.00,-13.00,0.00,\"\",0.00,65.00,49.00,281.00,,,,,,\n2015,5,4,\"WN\",\"1429\",\"BUF\",\"BWI\",-5.00,-19.00,0.00,\"\",0.00,71.00,55.00,281.00,,,,,,\n2015,5,4,\"WN\",\"1528\",\"BUF\",\"BWI\",8.00,-3.00,0.00,\"\",0.00,64.00,51.00,281.00,,,,,,\n2015,5,4,\"WN\",\"2423\",\"BUF\",\"BWI\",-8.00,-18.00,0.00,\"\",0.00,65.00,51.00,281.00,,,,,,\n2015,5,4,\"WN\",\"1785\",\"BUF\",\"FLL\",-1.00,-12.00,0.00,\"\",0.00,174.00,158.00,1166.00,,,,,,\n2015,5,4,\"WN\",\"361\",\"BUF\",\"LAS\",19.00,-3.00,0.00,\"\",0.00,278.00,257.00,1986.00,,,,,,\n2015,5,4,\"WN\",\"615\",\"BUF\",\"LAS\",-8.00,-24.00,0.00,\"\",0.00,274.00,258.00,1986.00,,,,,,\n2015,5,4,\"WN\",\"134\",\"BUF\",\"MCO\",-7.00,-22.00,0.00,\"\",0.00,145.00,131.00,1011.00,,,,,,\n2015,5,4,\"WN\",\"674\",\"BUF\",\"MCO\",208.00,207.00,0.00,\"\",0.00,159.00,142.00,1011.00,6.00,0.00,0.00,0.00,201.00,\n2015,5,4,\"WN\",\"854\",\"BUF\",\"MCO\",-8.00,-29.00,0.00,\"\",0.00,139.00,127.00,1011.00,,,,,,\n2015,5,4,\"WN\",\"2141\",\"BUF\",\"MCO\",-3.00,-18.00,0.00,\"\",0.00,145.00,129.00,1011.00,,,,,,\n2015,5,4,\"WN\",\"717\",\"BUF\",\"MDW\",17.00,1.00,0.00,\"\",0.00,94.00,78.00,468.00,,,,,,\n2015,5,4,\"WN\",\"2023\",\"BUF\",\"MDW\",-3.00,-6.00,0.00,\"\",0.00,102.00,78.00,468.00,,,,,,\n2015,5,4,\"WN\",\"2632\",\"BUF\",\"MDW\",-3.00,-13.00,0.00,\"\",0.00,90.00,74.00,468.00,,,,,,\n2015,5,4,\"WN\",\"328\",\"BUF\",\"PHX\",29.00,10.00,0.00,\"\",0.00,271.00,258.00,1912.00,,,,,,\n2015,5,4,\"WN\",\"984\",\"BUF\",\"TPA\",-5.00,-13.00,0.00,\"\",0.00,157.00,145.00,1053.00,,,,,,\n2015,5,4,\"WN\",\"2824\",\"BUF\",\"TPA\",0.00,-18.00,0.00,\"\",0.00,147.00,136.00,1053.00,,,,,,\n2015,5,3,\"WN\",\"1208\",\"MKE\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,122.00,107.00,738.00,,,,,,\n2015,5,3,\"WN\",\"3391\",\"MKE\",\"LGA\",88.00,77.00,0.00,\"\",0.00,119.00,102.00,738.00,5.00,0.00,0.00,0.00,72.00,\n2015,5,3,\"WN\",\"2851\",\"PBI\",\"ISP\",-1.00,-13.00,0.00,\"\",0.00,148.00,135.00,1052.00,,,,,,\n2015,5,3,\"WN\",\"4818\",\"PBI\",\"ISP\",-6.00,-15.00,0.00,\"\",0.00,151.00,134.00,1052.00,,,,,,\n2015,5,3,\"WN\",\"2454\",\"PHX\",\"BUF\",77.00,74.00,0.00,\"\",0.00,242.00,228.00,1912.00,0.00,0.00,0.00,0.00,74.00,\n2015,5,3,\"WN\",\"2749\",\"ROC\",\"BWI\",-4.00,-28.00,0.00,\"\",0.00,56.00,44.00,277.00,,,,,,\n2015,5,3,\"WN\",\"3874\",\"ROC\",\"BWI\",-5.00,-13.00,0.00,\"\",0.00,62.00,50.00,277.00,,,,,,\n2015,5,3,\"WN\",\"597\",\"ROC\",\"MCO\",36.00,23.00,0.00,\"\",0.00,147.00,131.00,1033.00,11.00,0.00,0.00,0.00,12.00,\n2015,5,3,\"WN\",\"747\",\"ROC\",\"MDW\",-4.00,-19.00,0.00,\"\",0.00,95.00,81.00,523.00,,,,,,\n2015,5,3,\"WN\",\"4712\",\"ROC\",\"MDW\",-5.00,-4.00,0.00,\"\",0.00,106.00,77.00,523.00,,,,,,\n2015,5,3,\"WN\",\"4655\",\"ROC\",\"TPA\",-6.00,-16.00,0.00,\"\",0.00,155.00,142.00,1079.00,,,,,,\n2015,5,4,\"WN\",\"691\",\"DAL\",\"LGA\",8.00,-7.00,0.00,\"\",0.00,190.00,177.00,1381.00,,,,,,\n2015,5,4,\"WN\",\"1214\",\"DAL\",\"LGA\",4.00,-6.00,0.00,\"\",0.00,195.00,180.00,1381.00,,,,,,\n2015,5,4,\"WN\",\"2141\",\"DAL\",\"LGA\",56.00,43.00,0.00,\"\",0.00,192.00,178.00,1381.00,0.00,0.00,0.00,0.00,43.00,\n2015,5,4,\"WN\",\"2234\",\"DAL\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,196.00,178.00,1381.00,,,,,,\n2015,5,4,\"WN\",\"824\",\"DEN\",\"LGA\",28.00,14.00,0.00,\"\",0.00,221.00,191.00,1620.00,,,,,,\n2015,5,4,\"WN\",\"1370\",\"DEN\",\"LGA\",2.00,-13.00,0.00,\"\",0.00,220.00,196.00,1620.00,,,,,,\n2015,5,4,\"WN\",\"1898\",\"FLL\",\"ALB\",-8.00,-13.00,0.00,\"\",0.00,175.00,160.00,1204.00,,,,,,\n2015,5,4,\"WN\",\"4643\",\"FLL\",\"BUF\",0.00,-14.00,0.00,\"\",0.00,171.00,152.00,1166.00,,,,,,\n2015,5,4,\"WN\",\"28\",\"FLL\",\"ISP\",1.00,-19.00,0.00,\"\",0.00,155.00,135.00,1092.00,,,,,,\n2015,5,4,\"WN\",\"4640\",\"FLL\",\"ISP\",-9.00,-23.00,0.00,\"\",0.00,156.00,140.00,1092.00,,,,,,\n2015,5,4,\"WN\",\"299\",\"HOU\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,202.00,187.00,1428.00,,,,,,\n2015,5,4,\"WN\",\"536\",\"HOU\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,202.00,189.00,1428.00,,,,,,\n2015,5,4,\"WN\",\"1163\",\"HOU\",\"LGA\",45.00,42.00,0.00,\"\",0.00,207.00,189.00,1428.00,7.00,0.00,0.00,0.00,35.00,\n2015,5,3,\"WN\",\"33\",\"MDW\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,120.00,101.00,725.00,,,,,,\n2015,5,3,\"WN\",\"682\",\"MDW\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,112.00,102.00,725.00,,,,,,\n2015,5,3,\"WN\",\"803\",\"MDW\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,115.00,102.00,725.00,,,,,,\n2015,5,3,\"WN\",\"1945\",\"MDW\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,118.00,100.00,725.00,,,,,,\n2015,5,3,\"WN\",\"2778\",\"MDW\",\"LGA\",4.00,-6.00,0.00,\"\",0.00,115.00,98.00,725.00,,,,,,\n2015,5,3,\"WN\",\"4365\",\"MDW\",\"LGA\",1.00,2.00,0.00,\"\",0.00,131.00,103.00,725.00,,,,,,\n2015,5,3,\"WN\",\"292\",\"MDW\",\"ROC\",-4.00,-3.00,0.00,\"\",0.00,91.00,69.00,523.00,,,,,,\n2015,5,3,\"WN\",\"2229\",\"MDW\",\"ROC\",-9.00,-11.00,0.00,\"\",0.00,93.00,72.00,523.00,,,,,,\n2015,5,4,\"WN\",\"178\",\"LGA\",\"ATL\",1.00,-20.00,0.00,\"\",0.00,139.00,106.00,762.00,,,,,,\n2015,5,4,\"WN\",\"2939\",\"LGA\",\"ATL\",23.00,-5.00,0.00,\"\",0.00,142.00,106.00,762.00,,,,,,\n2015,5,4,\"WN\",\"3133\",\"LGA\",\"ATL\",-6.00,-22.00,0.00,\"\",0.00,144.00,109.00,762.00,,,,,,\n2015,5,4,\"WN\",\"3391\",\"LGA\",\"ATL\",-8.00,-28.00,0.00,\"\",0.00,140.00,110.00,762.00,,,,,,\n2015,5,4,\"WN\",\"4728\",\"LGA\",\"ATL\",-1.00,-34.00,0.00,\"\",0.00,142.00,105.00,762.00,,,,,,\n2015,5,4,\"WN\",\"914\",\"LGA\",\"BNA\",-5.00,-28.00,0.00,\"\",0.00,127.00,104.00,764.00,,,,,,\n2015,5,4,\"WN\",\"1208\",\"LGA\",\"BNA\",-7.00,-42.00,0.00,\"\",0.00,120.00,106.00,764.00,,,,,,\n2015,5,4,\"WN\",\"1370\",\"LGA\",\"BNA\",0.00,-6.00,0.00,\"\",0.00,159.00,104.00,764.00,,,,,,\n2015,5,4,\"WN\",\"202\",\"LGA\",\"CAK\",0.00,-12.00,0.00,\"\",0.00,88.00,61.00,397.00,,,,,,\n2015,5,4,\"WN\",\"534\",\"LGA\",\"CAK\",13.00,0.00,0.00,\"\",0.00,87.00,62.00,397.00,,,,,,\n2015,5,4,\"WN\",\"255\",\"LGA\",\"DAL\",-1.00,-41.00,0.00,\"\",0.00,205.00,178.00,1381.00,,,,,,\n2015,5,4,\"WN\",\"431\",\"LGA\",\"DAL\",16.00,-27.00,0.00,\"\",0.00,197.00,178.00,1381.00,,,,,,\n2015,5,4,\"WN\",\"2347\",\"LGA\",\"DAL\",0.00,-55.00,0.00,\"\",0.00,190.00,176.00,1381.00,,,,,,\n2015,5,4,\"WN\",\"3489\",\"LGA\",\"DAL\",-3.00,-29.00,0.00,\"\",0.00,204.00,185.00,1381.00,,,,,,\n2015,5,4,\"WN\",\"12\",\"LGA\",\"DEN\",55.00,49.00,0.00,\"\",0.00,269.00,247.00,1620.00,20.00,0.00,0.00,0.00,29.00,\n2015,5,4,\"WN\",\"165\",\"LGA\",\"DEN\",-1.00,-10.00,0.00,\"\",0.00,266.00,226.00,1620.00,,,,,,\n2015,5,4,\"WN\",\"682\",\"LGA\",\"HOU\",8.00,-14.00,0.00,\"\",0.00,218.00,189.00,1428.00,,,,,,\n2015,5,4,\"WN\",\"2778\",\"LGA\",\"HOU\",19.00,-14.00,0.00,\"\",0.00,217.00,186.00,1428.00,,,,,,\n2015,5,4,\"WN\",\"3845\",\"LGA\",\"HOU\",-6.00,-40.00,0.00,\"\",0.00,206.00,190.00,1428.00,,,,,,\n2015,5,4,\"WN\",\"413\",\"LGA\",\"MCI\",221.00,199.00,0.00,\"\",0.00,178.00,162.00,1107.00,181.00,0.00,0.00,0.00,18.00,\n2015,5,4,\"WN\",\"479\",\"LGA\",\"MDW\",13.00,-8.00,0.00,\"\",0.00,124.00,107.00,725.00,,,,,,\n2015,5,4,\"WN\",\"777\",\"LGA\",\"MDW\",-2.00,-26.00,0.00,\"\",0.00,131.00,109.00,725.00,,,,,,\n2015,5,4,\"WN\",\"868\",\"LGA\",\"MDW\",3.00,-29.00,0.00,\"\",0.00,128.00,110.00,725.00,,,,,,\n2015,5,4,\"WN\",\"2516\",\"LGA\",\"MDW\",-5.00,7.00,0.00,\"\",0.00,172.00,113.00,725.00,,,,,,\n2015,5,4,\"WN\",\"2529\",\"LGA\",\"MDW\",-4.00,-23.00,0.00,\"\",0.00,131.00,104.00,725.00,,,,,,\n2015,5,4,\"WN\",\"2659\",\"LGA\",\"MDW\",-4.00,-10.00,0.00,\"\",0.00,149.00,104.00,725.00,,,,,,\n2015,5,4,\"WN\",\"4123\",\"LGA\",\"MDW\",-4.00,-7.00,0.00,\"\",0.00,147.00,103.00,725.00,,,,,,\n2015,5,4,\"WN\",\"1344\",\"LGA\",\"MKE\",-1.00,-22.00,0.00,\"\",0.00,129.00,111.00,738.00,,,,,,\n2015,5,4,\"WN\",\"2433\",\"LGA\",\"MKE\",7.00,-7.00,0.00,\"\",0.00,141.00,114.00,738.00,,,,,,\n2015,5,4,\"WN\",\"4379\",\"LGA\",\"MKE\",-7.00,-28.00,0.00,\"\",0.00,124.00,105.00,738.00,,,,,,\n2015,5,4,\"WN\",\"536\",\"LGA\",\"STL\",-5.00,-41.00,0.00,\"\",0.00,144.00,123.00,888.00,,,,,,\n2015,5,4,\"WN\",\"2168\",\"LGA\",\"STL\",-4.00,-22.00,0.00,\"\",0.00,142.00,122.00,888.00,,,,,,\n2015,5,4,\"WN\",\"4571\",\"LGA\",\"STL\",9.00,-19.00,0.00,\"\",0.00,142.00,126.00,888.00,,,,,,\n2015,5,4,\"WN\",\"333\",\"MCI\",\"LGA\",18.00,12.00,0.00,\"\",0.00,164.00,143.00,1107.00,,,,,,\n2015,5,4,\"WN\",\"1011\",\"MCO\",\"ALB\",-5.00,-7.00,0.00,\"\",0.00,163.00,149.00,1073.00,,,,,,\n2015,5,4,\"WN\",\"2849\",\"MCO\",\"ALB\",-4.00,-12.00,0.00,\"\",0.00,152.00,131.00,1073.00,,,,,,\n2015,5,4,\"WN\",\"728\",\"MCO\",\"BUF\",20.00,18.00,0.00,\"\",0.00,153.00,139.00,1011.00,4.00,0.00,0.00,0.00,14.00,\n2015,5,4,\"WN\",\"801\",\"MCO\",\"BUF\",23.00,12.00,0.00,\"\",0.00,144.00,132.00,1011.00,,,,,,\n2015,5,4,\"WN\",\"2423\",\"MCO\",\"BUF\",-5.00,-5.00,0.00,\"\",0.00,155.00,133.00,1011.00,,,,,,\n2015,5,4,\"WN\",\"2632\",\"MCO\",\"BUF\",-2.00,-5.00,0.00,\"\",0.00,152.00,133.00,1011.00,,,,,,\n2015,5,4,\"WN\",\"293\",\"MCO\",\"ISP\",9.00,-1.00,0.00,\"\",0.00,145.00,127.00,971.00,,,,,,\n2015,5,4,\"WN\",\"325\",\"MCO\",\"ISP\",13.00,9.00,0.00,\"\",0.00,146.00,126.00,971.00,,,,,,\n2015,5,4,\"WN\",\"426\",\"MCO\",\"ISP\",23.00,23.00,0.00,\"\",0.00,150.00,132.00,971.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"WN\",\"4486\",\"MCO\",\"ISP\",2.00,-2.00,0.00,\"\",0.00,146.00,133.00,971.00,,,,,,\n2015,5,4,\"WN\",\"3935\",\"MCO\",\"ROC\",-1.00,4.00,0.00,\"\",0.00,160.00,134.00,1033.00,,,,,,\n2015,5,4,\"WN\",\"103\",\"MDW\",\"ALB\",13.00,8.00,0.00,\"\",0.00,110.00,87.00,717.00,,,,,,\n2015,5,4,\"WN\",\"1461\",\"MDW\",\"ALB\",24.00,13.00,0.00,\"\",0.00,104.00,89.00,717.00,,,,,,\n2015,5,4,\"WN\",\"134\",\"MDW\",\"BUF\",-4.00,-16.00,0.00,\"\",0.00,78.00,69.00,468.00,,,,,,\n2015,5,4,\"WN\",\"615\",\"MDW\",\"BUF\",-3.00,-15.00,0.00,\"\",0.00,78.00,63.00,468.00,,,,,,\n2015,5,4,\"WN\",\"2241\",\"MDW\",\"BUF\",-6.00,-32.00,0.00,\"\",0.00,74.00,63.00,468.00,,,,,,\n2015,5,4,\"WN\",\"178\",\"MDW\",\"LGA\",9.00,-6.00,0.00,\"\",0.00,115.00,98.00,725.00,,,,,,\n2015,5,4,\"WN\",\"682\",\"MDW\",\"LGA\",11.00,5.00,0.00,\"\",0.00,119.00,98.00,725.00,,,,,,\n2015,5,4,\"WN\",\"803\",\"MDW\",\"LGA\",5.00,-4.00,0.00,\"\",0.00,121.00,99.00,725.00,,,,,,\n2015,5,4,\"WN\",\"1713\",\"MDW\",\"LGA\",-2.00,-12.00,0.00,\"\",0.00,115.00,100.00,725.00,,,,,,\n2015,5,4,\"WN\",\"1945\",\"MDW\",\"LGA\",25.00,20.00,0.00,\"\",0.00,125.00,99.00,725.00,0.00,0.00,5.00,0.00,15.00,\n2015,5,4,\"WN\",\"2778\",\"MDW\",\"LGA\",3.00,-7.00,0.00,\"\",0.00,115.00,103.00,725.00,,,,,,\n2015,5,4,\"WN\",\"4365\",\"MDW\",\"LGA\",10.00,2.00,0.00,\"\",0.00,122.00,95.00,725.00,,,,,,\n2015,5,4,\"WN\",\"292\",\"MDW\",\"ROC\",-2.00,-5.00,0.00,\"\",0.00,87.00,66.00,523.00,,,,,,\n2015,5,4,\"WN\",\"2229\",\"MDW\",\"ROC\",-5.00,-9.00,0.00,\"\",0.00,91.00,69.00,523.00,,,,,,\n2015,5,4,\"WN\",\"202\",\"MKE\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,118.00,105.00,738.00,,,,,,\n2015,5,4,\"WN\",\"1208\",\"MKE\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,118.00,106.00,738.00,,,,,,\n2015,5,4,\"WN\",\"3391\",\"MKE\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,123.00,104.00,738.00,,,,,,\n2015,5,4,\"WN\",\"2851\",\"PBI\",\"ISP\",10.00,2.00,0.00,\"\",0.00,152.00,140.00,1052.00,,,,,,\n2015,5,4,\"WN\",\"4818\",\"PBI\",\"ISP\",4.00,-7.00,0.00,\"\",0.00,149.00,133.00,1052.00,,,,,,\n2015,5,4,\"WN\",\"2454\",\"PHX\",\"BUF\",177.00,174.00,0.00,\"\",0.00,242.00,225.00,1912.00,54.00,0.00,0.00,0.00,120.00,\n2015,5,5,\"WN\",\"103\",\"MDW\",\"ALB\",-6.00,-21.00,0.00,\"\",0.00,100.00,88.00,717.00,,,,,,\n2015,5,5,\"WN\",\"1461\",\"MDW\",\"ALB\",2.00,0.00,0.00,\"\",0.00,113.00,88.00,717.00,,,,,,\n2015,5,5,\"WN\",\"134\",\"MDW\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,81.00,62.00,468.00,,,,,,\n2015,5,5,\"WN\",\"615\",\"MDW\",\"BUF\",44.00,31.00,0.00,\"\",0.00,77.00,61.00,468.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"WN\",\"2241\",\"MDW\",\"BUF\",-5.00,-7.00,0.00,\"\",0.00,98.00,68.00,468.00,,,,,,\n2015,5,5,\"WN\",\"178\",\"MDW\",\"LGA\",4.00,-8.00,0.00,\"\",0.00,118.00,98.00,725.00,,,,,,\n2015,5,5,\"WN\",\"682\",\"MDW\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,113.00,96.00,725.00,,,,,,\n2015,5,5,\"WN\",\"803\",\"MDW\",\"LGA\",-7.00,-14.00,0.00,\"\",0.00,123.00,98.00,725.00,,,,,,\n2015,5,5,\"WN\",\"1713\",\"MDW\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,112.00,95.00,725.00,,,,,,\n2015,5,5,\"WN\",\"1945\",\"MDW\",\"LGA\",1.00,-7.00,0.00,\"\",0.00,122.00,98.00,725.00,,,,,,\n2015,5,5,\"WN\",\"2778\",\"MDW\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,112.00,96.00,725.00,,,,,,\n2015,5,5,\"WN\",\"4365\",\"MDW\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,115.00,98.00,725.00,,,,,,\n2015,5,5,\"WN\",\"292\",\"MDW\",\"ROC\",-5.00,-1.00,0.00,\"\",0.00,94.00,67.00,523.00,,,,,,\n2015,5,5,\"WN\",\"2229\",\"MDW\",\"ROC\",1.00,-2.00,0.00,\"\",0.00,92.00,66.00,523.00,,,,,,\n2015,5,5,\"WN\",\"202\",\"MKE\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,119.00,106.00,738.00,,,,,,\n2015,5,5,\"WN\",\"1208\",\"MKE\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,126.00,106.00,738.00,,,,,,\n2015,5,5,\"WN\",\"3391\",\"MKE\",\"LGA\",103.00,93.00,0.00,\"\",0.00,120.00,100.00,738.00,78.00,0.00,0.00,0.00,15.00,\n2015,5,4,\"WN\",\"334\",\"BWI\",\"ALB\",5.00,-2.00,0.00,\"\",0.00,68.00,55.00,289.00,,,,,,\n2015,5,4,\"WN\",\"346\",\"BWI\",\"ALB\",-6.00,-5.00,0.00,\"\",0.00,66.00,55.00,289.00,,,,,,\n2015,5,4,\"WN\",\"598\",\"BWI\",\"ALB\",-7.00,-15.00,0.00,\"\",0.00,62.00,50.00,289.00,,,,,,\n2015,5,4,\"WN\",\"1269\",\"BWI\",\"ALB\",21.00,9.00,0.00,\"\",0.00,63.00,46.00,289.00,,,,,,\n2015,5,4,\"WN\",\"3033\",\"BWI\",\"ALB\",0.00,-8.00,0.00,\"\",0.00,62.00,50.00,289.00,,,,,,\n2015,5,4,\"WN\",\"3919\",\"BWI\",\"ALB\",-9.00,-16.00,0.00,\"\",0.00,63.00,53.00,289.00,,,,,,\n2015,5,4,\"WN\",\"328\",\"BWI\",\"BUF\",2.00,2.00,0.00,\"\",0.00,65.00,49.00,281.00,,,,,,\n2015,5,4,\"WN\",\"572\",\"BWI\",\"BUF\",9.00,-3.00,0.00,\"\",0.00,58.00,46.00,281.00,,,,,,\n2015,5,4,\"WN\",\"819\",\"BWI\",\"BUF\",-6.00,2.00,0.00,\"\",0.00,73.00,48.00,281.00,,,,,,\n2015,5,4,\"WN\",\"854\",\"BWI\",\"BUF\",-3.00,-18.00,0.00,\"\",0.00,55.00,46.00,281.00,,,,,,\n2015,5,4,\"WN\",\"1350\",\"BWI\",\"BUF\",5.00,-4.00,0.00,\"\",0.00,56.00,45.00,281.00,,,,,,\n2015,5,4,\"WN\",\"1900\",\"BWI\",\"BUF\",42.00,30.00,0.00,\"\",0.00,63.00,48.00,281.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"WN\",\"232\",\"BWI\",\"ISP\",86.00,73.00,0.00,\"\",0.00,52.00,39.00,220.00,0.00,0.00,0.00,0.00,73.00,\n2015,5,4,\"WN\",\"752\",\"BWI\",\"ISP\",-2.00,-3.00,0.00,\"\",0.00,59.00,45.00,220.00,,,,,,\n2015,5,4,\"WN\",\"842\",\"BWI\",\"ISP\",-4.00,-12.00,0.00,\"\",0.00,57.00,43.00,220.00,,,,,,\n2015,5,4,\"WN\",\"2452\",\"BWI\",\"ISP\",12.00,-2.00,0.00,\"\",0.00,56.00,43.00,220.00,,,,,,\n2015,5,4,\"WN\",\"4017\",\"BWI\",\"ISP\",-3.00,-3.00,0.00,\"\",0.00,60.00,44.00,220.00,,,,,,\n2015,5,4,\"WN\",\"597\",\"BWI\",\"ROC\",-2.00,-11.00,0.00,\"\",0.00,61.00,45.00,277.00,,,,,,\n2015,5,4,\"WN\",\"3564\",\"BWI\",\"ROC\",3.00,-9.00,0.00,\"\",0.00,58.00,45.00,277.00,,,,,,\n2015,5,4,\"WN\",\"914\",\"CAK\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,74.00,63.00,397.00,,,,,,\n2015,5,4,\"WN\",\"4728\",\"CAK\",\"LGA\",7.00,-3.00,0.00,\"\",0.00,80.00,62.00,397.00,,,,,,\n2015,5,4,\"WN\",\"719\",\"ROC\",\"BWI\",0.00,-9.00,0.00,\"\",0.00,61.00,46.00,277.00,,,,,,\n2015,5,4,\"WN\",\"2749\",\"ROC\",\"BWI\",-5.00,-25.00,0.00,\"\",0.00,60.00,45.00,277.00,,,,,,\n2015,5,4,\"WN\",\"597\",\"ROC\",\"MCO\",-8.00,-20.00,0.00,\"\",0.00,148.00,134.00,1033.00,,,,,,\n2015,5,4,\"WN\",\"747\",\"ROC\",\"MDW\",-1.00,-10.00,0.00,\"\",0.00,101.00,86.00,523.00,,,,,,\n2015,5,4,\"WN\",\"4712\",\"ROC\",\"MDW\",-6.00,-12.00,0.00,\"\",0.00,99.00,83.00,523.00,,,,,,\n2015,5,4,\"WN\",\"4655\",\"ROC\",\"TPA\",-4.00,-10.00,0.00,\"\",0.00,159.00,140.00,1079.00,,,,,,\n2015,5,4,\"WN\",\"12\",\"STL\",\"LGA\",41.00,33.00,0.00,\"\",0.00,137.00,120.00,888.00,2.00,0.00,0.00,0.00,31.00,\n2015,5,4,\"WN\",\"1194\",\"STL\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,135.00,122.00,888.00,,,,,,\n2015,5,4,\"WN\",\"1986\",\"STL\",\"LGA\",1.00,-6.00,0.00,\"\",0.00,133.00,118.00,888.00,,,,,,\n2015,5,4,\"WN\",\"854\",\"TPA\",\"ALB\",7.00,-2.00,0.00,\"\",0.00,161.00,149.00,1130.00,,,,,,\n2015,5,4,\"WN\",\"127\",\"TPA\",\"BUF\",200.00,202.00,0.00,\"\",0.00,157.00,142.00,1053.00,200.00,0.00,2.00,0.00,0.00,\n2015,5,4,\"WN\",\"2160\",\"TPA\",\"BUF\",24.00,18.00,0.00,\"\",0.00,149.00,138.00,1053.00,1.00,0.00,0.00,0.00,17.00,\n2015,5,4,\"WN\",\"2423\",\"TPA\",\"ISP\",1.00,-6.00,0.00,\"\",0.00,148.00,135.00,1034.00,,,,,,\n2015,5,4,\"WN\",\"4390\",\"TPA\",\"ISP\",0.00,-14.00,0.00,\"\",0.00,151.00,137.00,1034.00,,,,,,\n2015,5,4,\"WN\",\"719\",\"TPA\",\"ROC\",10.00,5.00,0.00,\"\",0.00,155.00,140.00,1079.00,,,,,,\n2015,5,5,\"WN\",\"223\",\"ALB\",\"BWI\",-8.00,-23.00,0.00,\"\",0.00,65.00,53.00,289.00,,,,,,\n2015,5,5,\"WN\",\"752\",\"ALB\",\"BWI\",-3.00,-20.00,0.00,\"\",0.00,63.00,54.00,289.00,,,,,,\n2015,5,5,\"WN\",\"854\",\"ALB\",\"BWI\",-4.00,-13.00,0.00,\"\",0.00,66.00,56.00,289.00,,,,,,\n2015,5,5,\"WN\",\"1011\",\"ALB\",\"BWI\",-4.00,-20.00,0.00,\"\",0.00,64.00,53.00,289.00,,,,,,\n2015,5,5,\"WN\",\"3294\",\"ALB\",\"BWI\",-1.00,-17.00,0.00,\"\",0.00,69.00,53.00,289.00,,,,,,\n2015,5,5,\"WN\",\"3917\",\"ALB\",\"BWI\",-6.00,-19.00,0.00,\"\",0.00,67.00,56.00,289.00,,,,,,\n2015,5,5,\"WN\",\"1987\",\"ALB\",\"FLL\",-4.00,-10.00,0.00,\"\",0.00,184.00,170.00,1204.00,,,,,,\n2015,5,5,\"WN\",\"346\",\"ALB\",\"LAS\",-2.00,-25.00,0.00,\"\",0.00,307.00,292.00,2237.00,,,,,,\n2015,5,5,\"WN\",\"3919\",\"ALB\",\"MCO\",-7.00,-14.00,0.00,\"\",0.00,168.00,155.00,1073.00,,,,,,\n2015,5,5,\"WN\",\"4362\",\"ALB\",\"MCO\",-6.00,-10.00,0.00,\"\",0.00,171.00,150.00,1073.00,,,,,,\n2015,5,5,\"WN\",\"1550\",\"ALB\",\"MDW\",-2.00,-10.00,0.00,\"\",0.00,127.00,118.00,717.00,,,,,,\n2015,5,5,\"WN\",\"4985\",\"ALB\",\"MDW\",-5.00,-1.00,0.00,\"\",0.00,139.00,114.00,717.00,,,,,,\n2015,5,5,\"WN\",\"3650\",\"ALB\",\"TPA\",-7.00,-27.00,0.00,\"\",0.00,165.00,154.00,1130.00,,,,,,\n2015,5,13,\"UA\",\"1214\",\"ORD\",\"LGA\",6.00,-19.00,0.00,\"\",0.00,112.00,93.00,733.00,,,,,,\n2015,5,13,\"UA\",\"1218\",\"LGA\",\"ORD\",-2.00,7.00,0.00,\"\",0.00,167.00,118.00,733.00,,,,,,\n2015,5,13,\"UA\",\"1248\",\"ORD\",\"ALB\",2.00,-15.00,0.00,\"\",0.00,103.00,88.00,723.00,,,,,,\n2015,5,13,\"UA\",\"1283\",\"ALB\",\"ORD\",-2.00,-3.00,0.00,\"\",0.00,140.00,114.00,723.00,,,,,,\n2015,5,13,\"UA\",\"1456\",\"LGA\",\"IAH\",3.00,-8.00,0.00,\"\",0.00,231.00,211.00,1416.00,,,,,,\n2015,5,13,\"UA\",\"1469\",\"DEN\",\"LGA\",-4.00,-28.00,0.00,\"\",0.00,203.00,184.00,1620.00,,,,,,\n2015,5,13,\"UA\",\"1483\",\"DEN\",\"LGA\",-2.00,-33.00,0.00,\"\",0.00,204.00,184.00,1620.00,,,,,,\n2015,5,13,\"UA\",\"1588\",\"LGA\",\"ORD\",-4.00,2.00,0.00,\"\",0.00,159.00,124.00,733.00,,,,,,\n2015,5,13,\"UA\",\"1638\",\"ALB\",\"ORD\",-9.00,-3.00,0.00,\"\",0.00,147.00,117.00,723.00,,,,,,\n2015,5,5,\"WN\",\"815\",\"ATL\",\"LGA\",-6.00,-20.00,0.00,\"\",0.00,126.00,104.00,762.00,,,,,,\n2015,5,5,\"WN\",\"1182\",\"ATL\",\"LGA\",18.00,-3.00,0.00,\"\",0.00,119.00,105.00,762.00,,,,,,\n2015,5,5,\"WN\",\"2516\",\"ATL\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,126.00,104.00,762.00,,,,,,\n2015,5,5,\"WN\",\"2659\",\"ATL\",\"LGA\",2.00,-19.00,0.00,\"\",0.00,124.00,108.00,762.00,,,,,,\n2015,5,5,\"WN\",\"2850\",\"ATL\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,124.00,105.00,762.00,,,,,,\n2015,5,5,\"WN\",\"255\",\"BNA\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,121.00,107.00,764.00,,,,,,\n2015,5,5,\"WN\",\"2433\",\"BNA\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,129.00,109.00,764.00,,,,,,\n2015,5,5,\"WN\",\"2570\",\"BNA\",\"LGA\",37.00,28.00,0.00,\"\",0.00,126.00,110.00,764.00,26.00,0.00,0.00,0.00,2.00,\n2015,5,5,\"WN\",\"381\",\"BUF\",\"BWI\",-3.00,-10.00,0.00,\"\",0.00,63.00,48.00,281.00,,,,,,\n2015,5,5,\"WN\",\"728\",\"BUF\",\"BWI\",16.00,2.00,0.00,\"\",0.00,56.00,46.00,281.00,,,,,,\n2015,5,5,\"WN\",\"842\",\"BUF\",\"BWI\",11.00,5.00,0.00,\"\",0.00,69.00,53.00,281.00,,,,,,\n2015,5,5,\"WN\",\"1429\",\"BUF\",\"BWI\",-2.00,-13.00,0.00,\"\",0.00,74.00,55.00,281.00,,,,,,\n2015,5,5,\"WN\",\"1528\",\"BUF\",\"BWI\",-3.00,-17.00,0.00,\"\",0.00,61.00,50.00,281.00,,,,,,\n2015,5,5,\"WN\",\"2423\",\"BUF\",\"BWI\",-3.00,-14.00,0.00,\"\",0.00,64.00,48.00,281.00,,,,,,\n2015,5,5,\"WN\",\"1785\",\"BUF\",\"FLL\",-4.00,-9.00,0.00,\"\",0.00,180.00,168.00,1166.00,,,,,,\n2015,5,5,\"WN\",\"361\",\"BUF\",\"LAS\",-4.00,-26.00,0.00,\"\",0.00,278.00,261.00,1986.00,,,,,,\n2015,5,5,\"WN\",\"615\",\"BUF\",\"LAS\",27.00,5.00,0.00,\"\",0.00,268.00,255.00,1986.00,,,,,,\n2015,5,5,\"WN\",\"134\",\"BUF\",\"MCO\",-9.00,-21.00,0.00,\"\",0.00,148.00,134.00,1011.00,,,,,,\n2015,5,5,\"WN\",\"674\",\"BUF\",\"MCO\",3.00,1.00,0.00,\"\",0.00,158.00,139.00,1011.00,,,,,,\n2015,5,5,\"WN\",\"854\",\"BUF\",\"MCO\",-5.00,-11.00,0.00,\"\",0.00,154.00,141.00,1011.00,,,,,,\n2015,5,5,\"WN\",\"2141\",\"BUF\",\"MCO\",-3.00,0.00,0.00,\"\",0.00,163.00,135.00,1011.00,,,,,,\n2015,5,5,\"WN\",\"717\",\"BUF\",\"MDW\",0.00,-12.00,0.00,\"\",0.00,98.00,85.00,468.00,,,,,,\n2015,5,5,\"WN\",\"2023\",\"BUF\",\"MDW\",-2.00,-15.00,0.00,\"\",0.00,92.00,83.00,468.00,,,,,,\n2015,5,5,\"WN\",\"2632\",\"BUF\",\"MDW\",-4.00,-3.00,0.00,\"\",0.00,101.00,79.00,468.00,,,,,,\n2015,5,5,\"WN\",\"328\",\"BUF\",\"PHX\",15.00,-8.00,0.00,\"\",0.00,267.00,251.00,1912.00,,,,,,\n2015,5,5,\"WN\",\"984\",\"BUF\",\"TPA\",-3.00,-19.00,0.00,\"\",0.00,149.00,136.00,1053.00,,,,,,\n2015,5,5,\"WN\",\"2824\",\"BUF\",\"TPA\",-5.00,-16.00,0.00,\"\",0.00,154.00,144.00,1053.00,,,,,,\n2015,5,5,\"WN\",\"334\",\"BWI\",\"ALB\",-5.00,-6.00,0.00,\"\",0.00,74.00,51.00,289.00,,,,,,\n2015,5,5,\"WN\",\"346\",\"BWI\",\"ALB\",-2.00,-1.00,0.00,\"\",0.00,66.00,50.00,289.00,,,,,,\n2015,5,5,\"WN\",\"598\",\"BWI\",\"ALB\",3.00,-4.00,0.00,\"\",0.00,63.00,51.00,289.00,,,,,,\n2015,5,5,\"WN\",\"1269\",\"BWI\",\"ALB\",1.00,15.00,0.00,\"\",0.00,89.00,53.00,289.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,5,\"WN\",\"3033\",\"BWI\",\"ALB\",2.00,-4.00,0.00,\"\",0.00,64.00,50.00,289.00,,,,,,\n2015,5,5,\"WN\",\"3919\",\"BWI\",\"ALB\",1.00,-4.00,0.00,\"\",0.00,65.00,52.00,289.00,,,,,,\n2015,5,5,\"WN\",\"328\",\"BWI\",\"BUF\",18.00,18.00,0.00,\"\",0.00,65.00,48.00,281.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"WN\",\"572\",\"BWI\",\"BUF\",4.00,-8.00,0.00,\"\",0.00,58.00,45.00,281.00,,,,,,\n2015,5,5,\"WN\",\"819\",\"BWI\",\"BUF\",33.00,34.00,0.00,\"\",0.00,66.00,51.00,281.00,0.00,33.00,1.00,0.00,0.00,\n2015,5,5,\"WN\",\"854\",\"BWI\",\"BUF\",-2.00,-9.00,0.00,\"\",0.00,63.00,48.00,281.00,,,,,,\n2015,5,5,\"WN\",\"1350\",\"BWI\",\"BUF\",-7.00,-9.00,0.00,\"\",0.00,63.00,48.00,281.00,,,,,,\n2015,5,5,\"WN\",\"1900\",\"BWI\",\"BUF\",9.00,0.00,0.00,\"\",0.00,66.00,46.00,281.00,,,,,,\n2015,5,5,\"WN\",\"232\",\"BWI\",\"ISP\",22.00,16.00,0.00,\"\",0.00,59.00,42.00,220.00,14.00,0.00,0.00,0.00,2.00,\n2015,5,5,\"WN\",\"752\",\"BWI\",\"ISP\",-5.00,-7.00,0.00,\"\",0.00,58.00,45.00,220.00,,,,,,\n2015,5,5,\"WN\",\"842\",\"BWI\",\"ISP\",0.00,-6.00,0.00,\"\",0.00,59.00,42.00,220.00,,,,,,\n2015,5,5,\"WN\",\"2452\",\"BWI\",\"ISP\",-3.00,-14.00,0.00,\"\",0.00,59.00,43.00,220.00,,,,,,\n2015,5,5,\"WN\",\"4017\",\"BWI\",\"ISP\",4.00,4.00,0.00,\"\",0.00,60.00,43.00,220.00,,,,,,\n2015,5,5,\"WN\",\"597\",\"BWI\",\"ROC\",-4.00,-6.00,0.00,\"\",0.00,68.00,48.00,277.00,,,,,,\n2015,5,5,\"WN\",\"3564\",\"BWI\",\"ROC\",-4.00,-15.00,0.00,\"\",0.00,59.00,46.00,277.00,,,,,,\n2015,5,5,\"WN\",\"914\",\"CAK\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,72.00,60.00,397.00,,,,,,\n2015,5,5,\"WN\",\"4728\",\"CAK\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,72.00,58.00,397.00,,,,,,\n2015,5,5,\"WN\",\"691\",\"DAL\",\"LGA\",19.00,8.00,0.00,\"\",0.00,194.00,181.00,1381.00,,,,,,\n2015,5,5,\"WN\",\"1214\",\"DAL\",\"LGA\",23.00,12.00,0.00,\"\",0.00,194.00,182.00,1381.00,,,,,,\n2015,5,5,\"WN\",\"2141\",\"DAL\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,199.00,182.00,1381.00,,,,,,\n2015,5,5,\"WN\",\"2234\",\"DAL\",\"LGA\",86.00,80.00,0.00,\"\",0.00,199.00,182.00,1381.00,80.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"WN\",\"824\",\"DEN\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,224.00,196.00,1620.00,,,,,,\n2015,5,5,\"WN\",\"1370\",\"DEN\",\"LGA\",15.00,0.00,0.00,\"\",0.00,220.00,194.00,1620.00,,,,,,\n2015,5,6,\"WN\",\"1429\",\"BUF\",\"BWI\",0.00,-22.00,0.00,\"\",0.00,63.00,49.00,281.00,,,,,,\n2015,5,6,\"WN\",\"1528\",\"BUF\",\"BWI\",0.00,-15.00,0.00,\"\",0.00,60.00,48.00,281.00,,,,,,\n2015,5,6,\"WN\",\"2423\",\"BUF\",\"BWI\",-3.00,-11.00,0.00,\"\",0.00,67.00,56.00,281.00,,,,,,\n2015,5,6,\"WN\",\"1785\",\"BUF\",\"FLL\",0.00,-5.00,0.00,\"\",0.00,180.00,166.00,1166.00,,,,,,\n2015,5,6,\"WN\",\"361\",\"BUF\",\"LAS\",-2.00,-29.00,0.00,\"\",0.00,273.00,258.00,1986.00,,,,,,\n2015,5,6,\"WN\",\"615\",\"BUF\",\"LAS\",32.00,20.00,0.00,\"\",0.00,278.00,257.00,1986.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,6,\"WN\",\"134\",\"BUF\",\"MCO\",28.00,20.00,0.00,\"\",0.00,152.00,139.00,1011.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,6,\"WN\",\"674\",\"BUF\",\"MCO\",7.00,2.00,0.00,\"\",0.00,155.00,137.00,1011.00,,,,,,\n2015,5,6,\"WN\",\"854\",\"BUF\",\"MCO\",75.00,72.00,0.00,\"\",0.00,157.00,142.00,1011.00,4.00,0.00,0.00,0.00,68.00,\n2015,5,6,\"WN\",\"2141\",\"BUF\",\"MCO\",-2.00,-17.00,0.00,\"\",0.00,145.00,133.00,1011.00,,,,,,\n2015,5,6,\"WN\",\"717\",\"BUF\",\"MDW\",196.00,,0.00,\"\",1.00,,,468.00,,,,,,\n2015,5,6,\"WN\",\"2023\",\"BUF\",\"MDW\",-2.00,-23.00,0.00,\"\",0.00,84.00,73.00,468.00,,,,,,\n2015,5,6,\"WN\",\"2632\",\"BUF\",\"MDW\",1.00,-2.00,0.00,\"\",0.00,97.00,78.00,468.00,,,,,,\n2015,5,6,\"WN\",\"328\",\"BUF\",\"PHX\",-1.00,-32.00,0.00,\"\",0.00,259.00,248.00,1912.00,,,,,,\n2015,5,6,\"WN\",\"984\",\"BUF\",\"TPA\",0.00,-11.00,0.00,\"\",0.00,154.00,141.00,1053.00,,,,,,\n2015,5,6,\"WN\",\"2824\",\"BUF\",\"TPA\",-7.00,-22.00,0.00,\"\",0.00,150.00,138.00,1053.00,,,,,,\n2015,5,6,\"WN\",\"334\",\"BWI\",\"ALB\",-6.00,-5.00,0.00,\"\",0.00,76.00,53.00,289.00,,,,,,\n2015,5,6,\"WN\",\"346\",\"BWI\",\"ALB\",-1.00,-3.00,0.00,\"\",0.00,63.00,51.00,289.00,,,,,,\n2015,5,6,\"WN\",\"598\",\"BWI\",\"ALB\",-1.00,-8.00,0.00,\"\",0.00,63.00,51.00,289.00,,,,,,\n2015,5,6,\"WN\",\"1269\",\"BWI\",\"ALB\",5.00,-1.00,0.00,\"\",0.00,69.00,53.00,289.00,,,,,,\n2015,5,6,\"WN\",\"3033\",\"BWI\",\"ALB\",-2.00,-6.00,0.00,\"\",0.00,66.00,50.00,289.00,,,,,,\n2015,5,6,\"WN\",\"3919\",\"BWI\",\"ALB\",1.00,-3.00,0.00,\"\",0.00,66.00,49.00,289.00,,,,,,\n2015,5,6,\"WN\",\"328\",\"BWI\",\"BUF\",5.00,-1.00,0.00,\"\",0.00,59.00,46.00,281.00,,,,,,\n2015,5,6,\"WN\",\"572\",\"BWI\",\"BUF\",1.00,-13.00,0.00,\"\",0.00,56.00,46.00,281.00,,,,,,\n2015,5,6,\"WN\",\"819\",\"BWI\",\"BUF\",-5.00,-9.00,0.00,\"\",0.00,61.00,45.00,281.00,,,,,,\n2015,5,6,\"WN\",\"854\",\"BWI\",\"BUF\",79.00,71.00,0.00,\"\",0.00,62.00,46.00,281.00,0.00,71.00,0.00,0.00,0.00,\n2015,5,6,\"WN\",\"1350\",\"BWI\",\"BUF\",-4.00,-9.00,0.00,\"\",0.00,60.00,46.00,281.00,,,,,,\n2015,5,6,\"WN\",\"1900\",\"BWI\",\"BUF\",44.00,33.00,0.00,\"\",0.00,64.00,45.00,281.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"WN\",\"232\",\"BWI\",\"ISP\",16.00,14.00,0.00,\"\",0.00,63.00,44.00,220.00,,,,,,\n2015,5,6,\"WN\",\"752\",\"BWI\",\"ISP\",-3.00,-9.00,0.00,\"\",0.00,54.00,42.00,220.00,,,,,,\n2015,5,6,\"WN\",\"842\",\"BWI\",\"ISP\",9.00,3.00,0.00,\"\",0.00,59.00,46.00,220.00,,,,,,\n2015,5,6,\"WN\",\"2452\",\"BWI\",\"ISP\",19.00,4.00,0.00,\"\",0.00,55.00,40.00,220.00,,,,,,\n2015,5,6,\"WN\",\"4017\",\"BWI\",\"ISP\",-1.00,-2.00,0.00,\"\",0.00,59.00,43.00,220.00,,,,,,\n2015,5,5,\"WN\",\"12\",\"STL\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,131.00,118.00,888.00,,,,,,\n2015,5,5,\"WN\",\"1194\",\"STL\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,137.00,115.00,888.00,,,,,,\n2015,5,5,\"WN\",\"1986\",\"STL\",\"LGA\",57.00,51.00,0.00,\"\",0.00,134.00,119.00,888.00,51.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"WN\",\"854\",\"TPA\",\"ALB\",5.00,-9.00,0.00,\"\",0.00,156.00,145.00,1130.00,,,,,,\n2015,5,5,\"WN\",\"127\",\"TPA\",\"BUF\",9.00,5.00,0.00,\"\",0.00,151.00,133.00,1053.00,,,,,,\n2015,5,5,\"WN\",\"463\",\"TPA\",\"BUF\",15.00,18.00,0.00,\"\",0.00,158.00,132.00,1053.00,6.00,0.00,3.00,0.00,9.00,\n2015,5,5,\"WN\",\"2423\",\"TPA\",\"ISP\",-1.00,-11.00,0.00,\"\",0.00,145.00,131.00,1034.00,,,,,,\n2015,5,5,\"WN\",\"4390\",\"TPA\",\"ISP\",88.00,70.00,0.00,\"\",0.00,147.00,133.00,1034.00,8.00,0.00,0.00,0.00,62.00,\n2015,5,5,\"WN\",\"719\",\"TPA\",\"ROC\",9.00,-5.00,0.00,\"\",0.00,146.00,131.00,1079.00,,,,,,\n2015,5,6,\"WN\",\"223\",\"ALB\",\"BWI\",-5.00,-10.00,0.00,\"\",0.00,75.00,55.00,289.00,,,,,,\n2015,5,6,\"WN\",\"752\",\"ALB\",\"BWI\",0.00,-12.00,0.00,\"\",0.00,68.00,52.00,289.00,,,,,,\n2015,5,6,\"WN\",\"854\",\"ALB\",\"BWI\",-2.00,-7.00,0.00,\"\",0.00,70.00,56.00,289.00,,,,,,\n2015,5,6,\"WN\",\"1011\",\"ALB\",\"BWI\",-5.00,-13.00,0.00,\"\",0.00,72.00,58.00,289.00,,,,,,\n2015,5,6,\"WN\",\"3294\",\"ALB\",\"BWI\",-1.00,8.00,0.00,\"\",0.00,94.00,54.00,289.00,,,,,,\n2015,5,6,\"WN\",\"3917\",\"ALB\",\"BWI\",-1.00,-13.00,0.00,\"\",0.00,68.00,56.00,289.00,,,,,,\n2015,5,6,\"WN\",\"1987\",\"ALB\",\"FLL\",-6.00,-1.00,0.00,\"\",0.00,195.00,184.00,1204.00,,,,,,\n2015,5,6,\"WN\",\"346\",\"ALB\",\"LAS\",-4.00,-34.00,0.00,\"\",0.00,300.00,287.00,2237.00,,,,,,\n2015,5,6,\"WN\",\"3919\",\"ALB\",\"MCO\",25.00,35.00,0.00,\"\",0.00,185.00,168.00,1073.00,0.00,25.00,10.00,0.00,0.00,\n2015,5,6,\"WN\",\"4362\",\"ALB\",\"MCO\",-4.00,-10.00,0.00,\"\",0.00,169.00,156.00,1073.00,,,,,,\n2015,5,6,\"WN\",\"1550\",\"ALB\",\"MDW\",11.00,11.00,0.00,\"\",0.00,135.00,106.00,717.00,,,,,,\n2015,5,6,\"WN\",\"4985\",\"ALB\",\"MDW\",258.00,242.00,0.00,\"\",0.00,119.00,107.00,717.00,0.00,242.00,0.00,0.00,0.00,\n2015,5,6,\"WN\",\"3650\",\"ALB\",\"TPA\",-7.00,-20.00,0.00,\"\",0.00,172.00,161.00,1130.00,,,,,,\n2015,5,6,\"WN\",\"815\",\"ATL\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,127.00,102.00,762.00,,,,,,\n2015,5,6,\"WN\",\"1182\",\"ATL\",\"LGA\",11.00,-2.00,0.00,\"\",0.00,127.00,101.00,762.00,,,,,,\n2015,5,6,\"WN\",\"2516\",\"ATL\",\"LGA\",18.00,5.00,0.00,\"\",0.00,122.00,100.00,762.00,,,,,,\n2015,5,6,\"WN\",\"2659\",\"ATL\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,138.00,104.00,762.00,,,,,,\n2015,5,6,\"WN\",\"2850\",\"ATL\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,118.00,100.00,762.00,,,,,,\n2015,5,6,\"WN\",\"255\",\"BNA\",\"LGA\",-3.00,0.00,0.00,\"\",0.00,133.00,111.00,764.00,,,,,,\n2015,5,6,\"WN\",\"2433\",\"BNA\",\"LGA\",6.00,-2.00,0.00,\"\",0.00,122.00,107.00,764.00,,,,,,\n2015,5,6,\"WN\",\"2570\",\"BNA\",\"LGA\",11.00,-5.00,0.00,\"\",0.00,119.00,101.00,764.00,,,,,,\n2015,5,6,\"WN\",\"381\",\"BUF\",\"BWI\",-1.00,-9.00,0.00,\"\",0.00,62.00,50.00,281.00,,,,,,\n2015,5,6,\"WN\",\"728\",\"BUF\",\"BWI\",-7.00,-14.00,0.00,\"\",0.00,63.00,47.00,281.00,,,,,,\n2015,5,6,\"WN\",\"842\",\"BUF\",\"BWI\",13.00,0.00,0.00,\"\",0.00,62.00,51.00,281.00,,,,,,\n2015,5,6,\"WN\",\"325\",\"ISP\",\"BWI\",7.00,11.00,0.00,\"\",0.00,74.00,55.00,220.00,,,,,,\n2015,5,6,\"WN\",\"580\",\"ISP\",\"BWI\",-4.00,-20.00,0.00,\"\",0.00,59.00,47.00,220.00,,,,,,\n2015,5,6,\"WN\",\"667\",\"ISP\",\"BWI\",-3.00,-14.00,0.00,\"\",0.00,64.00,48.00,220.00,,,,,,\n2015,5,6,\"WN\",\"2940\",\"ISP\",\"BWI\",131.00,120.00,0.00,\"\",0.00,64.00,52.00,220.00,98.00,0.00,0.00,0.00,22.00,\n2015,5,6,\"WN\",\"3743\",\"ISP\",\"BWI\",-3.00,-10.00,0.00,\"\",0.00,68.00,53.00,220.00,,,,,,\n2015,5,6,\"WN\",\"752\",\"ISP\",\"FLL\",-5.00,-15.00,0.00,\"\",0.00,175.00,165.00,1092.00,,,,,,\n2015,5,6,\"WN\",\"4554\",\"ISP\",\"FLL\",-5.00,-9.00,0.00,\"\",0.00,176.00,155.00,1092.00,,,,,,\n2015,5,6,\"WN\",\"663\",\"ISP\",\"MCO\",-6.00,-5.00,0.00,\"\",0.00,161.00,143.00,971.00,,,,,,\n2015,5,6,\"WN\",\"4017\",\"ISP\",\"MCO\",-3.00,-6.00,0.00,\"\",0.00,162.00,144.00,971.00,,,,,,\n2015,5,6,\"WN\",\"4575\",\"ISP\",\"MCO\",-1.00,-1.00,0.00,\"\",0.00,165.00,149.00,971.00,,,,,,\n2015,5,6,\"WN\",\"4910\",\"ISP\",\"MCO\",-4.00,-21.00,0.00,\"\",0.00,153.00,141.00,971.00,,,,,,\n2015,5,6,\"WN\",\"4479\",\"ISP\",\"PBI\",-3.00,-1.00,0.00,\"\",0.00,172.00,158.00,1052.00,,,,,,\n2015,5,6,\"WN\",\"4729\",\"ISP\",\"PBI\",1.00,9.00,0.00,\"\",0.00,178.00,160.00,1052.00,,,,,,\n2015,5,6,\"WN\",\"208\",\"ISP\",\"TPA\",-6.00,-7.00,0.00,\"\",0.00,169.00,154.00,1034.00,,,,,,\n2015,5,6,\"WN\",\"4907\",\"ISP\",\"TPA\",29.00,16.00,0.00,\"\",0.00,167.00,152.00,1034.00,5.00,0.00,0.00,0.00,11.00,\n2015,5,6,\"WN\",\"2202\",\"LAS\",\"ALB\",-1.00,-3.00,0.00,\"\",0.00,283.00,270.00,2237.00,,,,,,\n2015,5,6,\"WN\",\"2023\",\"LAS\",\"BUF\",4.00,-5.00,0.00,\"\",0.00,256.00,237.00,1986.00,,,,,,\n2015,5,6,\"WN\",\"2528\",\"LAS\",\"BUF\",10.00,13.00,0.00,\"\",0.00,258.00,239.00,1986.00,,,,,,\n2015,5,6,\"WN\",\"178\",\"LGA\",\"ATL\",0.00,23.00,0.00,\"\",0.00,183.00,113.00,762.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,6,\"WN\",\"2939\",\"LGA\",\"ATL\",25.00,8.00,0.00,\"\",0.00,153.00,110.00,762.00,,,,,,\n2015,5,6,\"WN\",\"3133\",\"LGA\",\"ATL\",-6.00,-26.00,0.00,\"\",0.00,140.00,110.00,762.00,,,,,,\n2015,5,6,\"WN\",\"3391\",\"LGA\",\"ATL\",0.00,-2.00,0.00,\"\",0.00,158.00,111.00,762.00,,,,,,\n2015,5,6,\"WN\",\"4728\",\"LGA\",\"ATL\",92.00,97.00,0.00,\"\",0.00,180.00,136.00,762.00,0.00,0.00,5.00,0.00,92.00,\n2015,5,6,\"WN\",\"914\",\"LGA\",\"BNA\",113.00,101.00,0.00,\"\",0.00,138.00,102.00,764.00,89.00,0.00,0.00,0.00,12.00,\n2015,5,6,\"WN\",\"1208\",\"LGA\",\"BNA\",4.00,-18.00,0.00,\"\",0.00,133.00,103.00,764.00,,,,,,\n2015,5,6,\"WN\",\"1370\",\"LGA\",\"BNA\",21.00,7.00,0.00,\"\",0.00,151.00,102.00,764.00,,,,,,\n2015,5,6,\"WN\",\"202\",\"LGA\",\"CAK\",-5.00,6.00,0.00,\"\",0.00,111.00,63.00,397.00,,,,,,\n2015,5,6,\"WN\",\"534\",\"LGA\",\"CAK\",-7.00,-4.00,0.00,\"\",0.00,103.00,62.00,397.00,,,,,,\n2015,5,6,\"WN\",\"255\",\"LGA\",\"DAL\",-3.00,-17.00,0.00,\"\",0.00,231.00,182.00,1381.00,,,,,,\n2015,5,6,\"WN\",\"431\",\"LGA\",\"DAL\",-4.00,-15.00,0.00,\"\",0.00,229.00,178.00,1381.00,,,,,,\n2015,5,6,\"WN\",\"2347\",\"LGA\",\"DAL\",3.00,-7.00,0.00,\"\",0.00,235.00,175.00,1381.00,,,,,,\n2015,5,6,\"WN\",\"3489\",\"LGA\",\"DAL\",-3.00,-16.00,0.00,\"\",0.00,217.00,175.00,1381.00,,,,,,\n2015,5,6,\"WN\",\"12\",\"LGA\",\"DEN\",27.00,31.00,0.00,\"\",0.00,279.00,224.00,1620.00,14.00,0.00,4.00,0.00,13.00,\n2015,5,6,\"WN\",\"165\",\"LGA\",\"DEN\",-6.00,-4.00,0.00,\"\",0.00,277.00,214.00,1620.00,,,,,,\n2015,5,6,\"WN\",\"682\",\"LGA\",\"HOU\",97.00,123.00,0.00,\"\",0.00,266.00,198.00,1428.00,2.00,0.00,26.00,0.00,95.00,\n2015,5,6,\"WN\",\"2778\",\"LGA\",\"HOU\",86.00,88.00,0.00,\"\",0.00,252.00,208.00,1428.00,9.00,0.00,2.00,0.00,77.00,\n2015,5,6,\"WN\",\"3845\",\"LGA\",\"HOU\",-5.00,-21.00,0.00,\"\",0.00,224.00,200.00,1428.00,,,,,,\n2015,5,6,\"WN\",\"413\",\"LGA\",\"MCI\",9.00,7.00,0.00,\"\",0.00,198.00,152.00,1107.00,,,,,,\n2015,5,6,\"WN\",\"479\",\"LGA\",\"MDW\",-4.00,-23.00,0.00,\"\",0.00,126.00,105.00,725.00,,,,,,\n2015,5,6,\"WN\",\"777\",\"LGA\",\"MDW\",1.00,-19.00,0.00,\"\",0.00,135.00,113.00,725.00,,,,,,\n2015,5,6,\"WN\",\"868\",\"LGA\",\"MDW\",19.00,13.00,0.00,\"\",0.00,154.00,105.00,725.00,,,,,,\n2015,5,6,\"WN\",\"2516\",\"LGA\",\"MDW\",19.00,-9.00,0.00,\"\",0.00,132.00,107.00,725.00,,,,,,\n2015,5,6,\"WN\",\"2529\",\"LGA\",\"MDW\",,,1.00,\"B\",0.00,,,725.00,,,,,,\n2015,5,6,\"WN\",\"2659\",\"LGA\",\"MDW\",56.00,75.00,0.00,\"\",0.00,174.00,111.00,725.00,0.00,56.00,19.00,0.00,0.00,\n2015,5,6,\"WN\",\"4123\",\"LGA\",\"MDW\",310.00,325.00,0.00,\"\",0.00,165.00,107.00,725.00,0.00,310.00,15.00,0.00,0.00,\n2015,5,6,\"WN\",\"1344\",\"LGA\",\"MKE\",6.00,32.00,0.00,\"\",0.00,176.00,116.00,738.00,2.00,0.00,26.00,0.00,4.00,\n2015,5,6,\"WN\",\"2433\",\"LGA\",\"MKE\",12.00,-5.00,0.00,\"\",0.00,138.00,111.00,738.00,,,,,,\n2015,5,6,\"WN\",\"4379\",\"LGA\",\"MKE\",-3.00,-9.00,0.00,\"\",0.00,139.00,115.00,738.00,,,,,,\n2015,5,6,\"WN\",\"536\",\"LGA\",\"STL\",-2.00,-30.00,0.00,\"\",0.00,152.00,125.00,888.00,,,,,,\n2015,5,6,\"WN\",\"2168\",\"LGA\",\"STL\",-6.00,-10.00,0.00,\"\",0.00,156.00,128.00,888.00,,,,,,\n2015,5,6,\"WN\",\"4571\",\"LGA\",\"STL\",-5.00,14.00,0.00,\"\",0.00,189.00,131.00,888.00,,,,,,\n2015,5,6,\"WN\",\"333\",\"MCI\",\"LGA\",1.00,-6.00,0.00,\"\",0.00,163.00,148.00,1107.00,,,,,,\n2015,5,6,\"WN\",\"1011\",\"MCO\",\"ALB\",0.00,-17.00,0.00,\"\",0.00,148.00,136.00,1073.00,,,,,,\n2015,5,6,\"WN\",\"2849\",\"MCO\",\"ALB\",-1.00,0.00,0.00,\"\",0.00,161.00,137.00,1073.00,,,,,,\n2015,5,6,\"WN\",\"728\",\"MCO\",\"BUF\",11.00,1.00,0.00,\"\",0.00,145.00,128.00,1011.00,,,,,,\n2015,5,6,\"WN\",\"801\",\"MCO\",\"BUF\",-2.00,-18.00,0.00,\"\",0.00,139.00,126.00,1011.00,,,,,,\n2015,5,6,\"WN\",\"2423\",\"MCO\",\"BUF\",-9.00,-20.00,0.00,\"\",0.00,144.00,125.00,1011.00,,,,,,\n2015,5,6,\"WN\",\"2632\",\"MCO\",\"BUF\",-1.00,-13.00,0.00,\"\",0.00,143.00,125.00,1011.00,,,,,,\n2015,5,6,\"WN\",\"293\",\"MCO\",\"ISP\",0.00,-16.00,0.00,\"\",0.00,139.00,121.00,971.00,,,,,,\n2015,5,6,\"WN\",\"325\",\"MCO\",\"ISP\",13.00,10.00,0.00,\"\",0.00,147.00,128.00,971.00,,,,,,\n2015,5,6,\"WN\",\"426\",\"MCO\",\"ISP\",-8.00,-14.00,0.00,\"\",0.00,144.00,125.00,971.00,,,,,,\n2015,5,6,\"WN\",\"4486\",\"MCO\",\"ISP\",-3.00,-3.00,0.00,\"\",0.00,150.00,126.00,971.00,,,,,,\n2015,5,6,\"WN\",\"3935\",\"MCO\",\"ROC\",-2.00,-17.00,0.00,\"\",0.00,140.00,126.00,1033.00,,,,,,\n2015,5,6,\"WN\",\"103\",\"MDW\",\"ALB\",3.00,-9.00,0.00,\"\",0.00,103.00,91.00,717.00,,,,,,\n2015,5,6,\"WN\",\"1461\",\"MDW\",\"ALB\",32.00,18.00,0.00,\"\",0.00,101.00,89.00,717.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,6,\"WN\",\"134\",\"MDW\",\"BUF\",,,1.00,\"B\",0.00,,,468.00,,,,,,\n2015,5,6,\"WN\",\"615\",\"MDW\",\"BUF\",60.00,47.00,0.00,\"\",0.00,77.00,61.00,468.00,0.00,0.00,0.00,0.00,47.00,\n2015,5,6,\"WN\",\"2241\",\"MDW\",\"BUF\",9.00,-4.00,0.00,\"\",0.00,87.00,66.00,468.00,,,,,,\n2015,5,6,\"WN\",\"178\",\"MDW\",\"LGA\",,,1.00,\"B\",0.00,,,725.00,,,,,,\n2015,5,6,\"WN\",\"682\",\"MDW\",\"LGA\",80.00,95.00,0.00,\"\",0.00,140.00,101.00,725.00,0.00,0.00,15.00,0.00,80.00,\n2015,5,6,\"WN\",\"803\",\"MDW\",\"LGA\",-2.00,18.00,0.00,\"\",0.00,150.00,92.00,725.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,6,\"WN\",\"1713\",\"MDW\",\"LGA\",-2.00,17.00,0.00,\"\",0.00,144.00,101.00,725.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,6,\"WN\",\"1945\",\"MDW\",\"LGA\",4.00,-19.00,0.00,\"\",0.00,107.00,96.00,725.00,,,,,,\n2015,5,6,\"WN\",\"2778\",\"MDW\",\"LGA\",93.00,77.00,0.00,\"\",0.00,109.00,97.00,725.00,4.00,0.00,0.00,0.00,73.00,\n2015,5,6,\"WN\",\"4365\",\"MDW\",\"LGA\",43.00,34.00,0.00,\"\",0.00,121.00,104.00,725.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,6,\"WN\",\"292\",\"MDW\",\"ROC\",-2.00,-11.00,0.00,\"\",0.00,81.00,69.00,523.00,,,,,,\n2015,5,6,\"WN\",\"2229\",\"MDW\",\"ROC\",-3.00,-8.00,0.00,\"\",0.00,90.00,72.00,523.00,,,,,,\n2015,5,6,\"WN\",\"597\",\"BWI\",\"ROC\",-5.00,-5.00,0.00,\"\",0.00,70.00,51.00,277.00,,,,,,\n2015,5,6,\"WN\",\"3564\",\"BWI\",\"ROC\",39.00,26.00,0.00,\"\",0.00,57.00,44.00,277.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,6,\"WN\",\"914\",\"CAK\",\"LGA\",-1.00,13.00,0.00,\"\",0.00,104.00,79.00,397.00,,,,,,\n2015,5,6,\"WN\",\"4728\",\"CAK\",\"LGA\",87.00,96.00,0.00,\"\",0.00,99.00,60.00,397.00,87.00,0.00,9.00,0.00,0.00,\n2015,5,6,\"WN\",\"691\",\"DAL\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,188.00,173.00,1381.00,,,,,,\n2015,5,6,\"WN\",\"1214\",\"DAL\",\"LGA\",7.00,4.00,0.00,\"\",0.00,202.00,172.00,1381.00,,,,,,\n2015,5,6,\"WN\",\"2141\",\"DAL\",\"LGA\",83.00,82.00,0.00,\"\",0.00,204.00,183.00,1381.00,8.00,0.00,0.00,0.00,74.00,\n2015,5,6,\"WN\",\"2234\",\"DAL\",\"LGA\",-5.00,-6.00,0.00,\"\",0.00,204.00,187.00,1381.00,,,,,,\n2015,5,6,\"WN\",\"824\",\"DEN\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,216.00,201.00,1620.00,,,,,,\n2015,5,6,\"WN\",\"1370\",\"DEN\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,226.00,196.00,1620.00,,,,,,\n2015,5,6,\"WN\",\"1898\",\"FLL\",\"ALB\",-2.00,-10.00,0.00,\"\",0.00,172.00,158.00,1204.00,,,,,,\n2015,5,6,\"WN\",\"4643\",\"FLL\",\"BUF\",-7.00,-16.00,0.00,\"\",0.00,176.00,152.00,1166.00,,,,,,\n2015,5,6,\"WN\",\"28\",\"FLL\",\"ISP\",10.00,-6.00,0.00,\"\",0.00,159.00,142.00,1092.00,,,,,,\n2015,5,6,\"WN\",\"4640\",\"FLL\",\"ISP\",0.00,-15.00,0.00,\"\",0.00,155.00,142.00,1092.00,,,,,,\n2015,5,6,\"WN\",\"299\",\"HOU\",\"LGA\",-10.00,-5.00,0.00,\"\",0.00,215.00,195.00,1428.00,,,,,,\n2015,5,6,\"WN\",\"536\",\"HOU\",\"LGA\",0.00,0.00,0.00,\"\",0.00,205.00,182.00,1428.00,,,,,,\n2015,5,6,\"WN\",\"1163\",\"HOU\",\"LGA\",11.00,4.00,0.00,\"\",0.00,203.00,184.00,1428.00,,,,,,\n2015,5,6,\"WN\",\"2851\",\"PBI\",\"ISP\",25.00,24.00,0.00,\"\",0.00,159.00,143.00,1052.00,16.00,0.00,0.00,0.00,8.00,\n2015,5,6,\"WN\",\"4818\",\"PBI\",\"ISP\",32.00,19.00,0.00,\"\",0.00,147.00,133.00,1052.00,14.00,0.00,0.00,0.00,5.00,\n2015,5,6,\"WN\",\"2454\",\"PHX\",\"BUF\",3.00,-4.00,0.00,\"\",0.00,238.00,226.00,1912.00,,,,,,\n2015,5,6,\"WN\",\"719\",\"ROC\",\"BWI\",68.00,60.00,0.00,\"\",0.00,62.00,47.00,277.00,0.00,0.00,0.00,0.00,60.00,\n2015,5,6,\"WN\",\"2749\",\"ROC\",\"BWI\",-2.00,-21.00,0.00,\"\",0.00,61.00,48.00,277.00,,,,,,\n2015,5,6,\"WN\",\"597\",\"ROC\",\"MCO\",-3.00,11.00,0.00,\"\",0.00,174.00,145.00,1033.00,,,,,,\n2015,5,6,\"WN\",\"747\",\"ROC\",\"MDW\",-1.00,-9.00,0.00,\"\",0.00,102.00,83.00,523.00,,,,,,\n2015,5,6,\"WN\",\"4712\",\"ROC\",\"MDW\",,,1.00,\"B\",0.00,,,523.00,,,,,,\n2015,5,6,\"WN\",\"4655\",\"ROC\",\"TPA\",-9.00,-17.00,0.00,\"\",0.00,157.00,143.00,1079.00,,,,,,\n2015,5,5,\"WN\",\"2851\",\"PBI\",\"ISP\",27.00,12.00,0.00,\"\",0.00,145.00,135.00,1052.00,,,,,,\n2015,5,5,\"WN\",\"4818\",\"PBI\",\"ISP\",1.00,-9.00,0.00,\"\",0.00,150.00,135.00,1052.00,,,,,,\n2015,5,5,\"WN\",\"2454\",\"PHX\",\"BUF\",0.00,-1.00,0.00,\"\",0.00,244.00,228.00,1912.00,,,,,,\n2015,5,5,\"WN\",\"719\",\"ROC\",\"BWI\",2.00,0.00,0.00,\"\",0.00,68.00,48.00,277.00,,,,,,\n2015,5,5,\"WN\",\"2749\",\"ROC\",\"BWI\",-4.00,-17.00,0.00,\"\",0.00,67.00,49.00,277.00,,,,,,\n2015,5,5,\"WN\",\"597\",\"ROC\",\"MCO\",-4.00,-4.00,0.00,\"\",0.00,160.00,141.00,1033.00,,,,,,\n2015,5,5,\"WN\",\"747\",\"ROC\",\"MDW\",2.00,-7.00,0.00,\"\",0.00,101.00,86.00,523.00,,,,,,\n2015,5,5,\"WN\",\"4712\",\"ROC\",\"MDW\",-3.00,-4.00,0.00,\"\",0.00,104.00,88.00,523.00,,,,,,\n2015,5,5,\"WN\",\"4655\",\"ROC\",\"TPA\",-7.00,-9.00,0.00,\"\",0.00,163.00,146.00,1079.00,,,,,,\n2015,5,6,\"WN\",\"12\",\"STL\",\"LGA\",9.00,13.00,0.00,\"\",0.00,149.00,123.00,888.00,,,,,,\n2015,5,6,\"WN\",\"1194\",\"STL\",\"LGA\",-6.00,-16.00,0.00,\"\",0.00,135.00,118.00,888.00,,,,,,\n2015,5,6,\"WN\",\"1986\",\"STL\",\"LGA\",-9.00,-11.00,0.00,\"\",0.00,138.00,123.00,888.00,,,,,,\n2015,5,6,\"WN\",\"854\",\"TPA\",\"ALB\",-7.00,-25.00,0.00,\"\",0.00,152.00,141.00,1130.00,,,,,,\n2015,5,6,\"WN\",\"127\",\"TPA\",\"BUF\",8.00,1.00,0.00,\"\",0.00,148.00,132.00,1053.00,,,,,,\n2015,5,6,\"WN\",\"463\",\"TPA\",\"BUF\",-3.00,-14.00,0.00,\"\",0.00,144.00,132.00,1053.00,,,,,,\n2015,5,6,\"WN\",\"2423\",\"TPA\",\"ISP\",0.00,-11.00,0.00,\"\",0.00,144.00,130.00,1034.00,,,,,,\n2015,5,6,\"WN\",\"4390\",\"TPA\",\"ISP\",-3.00,-25.00,0.00,\"\",0.00,143.00,130.00,1034.00,,,,,,\n2015,5,6,\"WN\",\"719\",\"TPA\",\"ROC\",78.00,68.00,0.00,\"\",0.00,150.00,139.00,1079.00,11.00,0.00,0.00,0.00,57.00,\n2015,5,7,\"WN\",\"223\",\"ALB\",\"BWI\",-7.00,-22.00,0.00,\"\",0.00,65.00,52.00,289.00,,,,,,\n2015,5,7,\"WN\",\"752\",\"ALB\",\"BWI\",-4.00,-21.00,0.00,\"\",0.00,63.00,51.00,289.00,,,,,,\n2015,5,7,\"WN\",\"854\",\"ALB\",\"BWI\",16.00,5.00,0.00,\"\",0.00,64.00,51.00,289.00,,,,,,\n2015,5,7,\"WN\",\"1011\",\"ALB\",\"BWI\",4.00,-9.00,0.00,\"\",0.00,67.00,52.00,289.00,,,,,,\n2015,5,7,\"WN\",\"3294\",\"ALB\",\"BWI\",-5.00,-17.00,0.00,\"\",0.00,73.00,57.00,289.00,,,,,,\n2015,5,7,\"WN\",\"3917\",\"ALB\",\"BWI\",-3.00,-15.00,0.00,\"\",0.00,68.00,56.00,289.00,,,,,,\n2015,5,7,\"WN\",\"1987\",\"ALB\",\"FLL\",-3.00,-21.00,0.00,\"\",0.00,172.00,160.00,1204.00,,,,,,\n2015,5,7,\"WN\",\"346\",\"ALB\",\"LAS\",-5.00,-27.00,0.00,\"\",0.00,308.00,291.00,2237.00,,,,,,\n2015,5,7,\"WN\",\"3919\",\"ALB\",\"MCO\",5.00,-9.00,0.00,\"\",0.00,161.00,146.00,1073.00,,,,,,\n2015,5,7,\"WN\",\"4362\",\"ALB\",\"MCO\",-2.00,-1.00,0.00,\"\",0.00,176.00,147.00,1073.00,,,,,,\n2015,5,7,\"WN\",\"1550\",\"ALB\",\"MDW\",-4.00,-25.00,0.00,\"\",0.00,114.00,102.00,717.00,,,,,,\n2015,5,7,\"WN\",\"4985\",\"ALB\",\"MDW\",-2.00,-14.00,0.00,\"\",0.00,123.00,107.00,717.00,,,,,,\n2015,5,7,\"WN\",\"3650\",\"ALB\",\"TPA\",-1.00,-14.00,0.00,\"\",0.00,172.00,158.00,1130.00,,,,,,\n2015,5,7,\"WN\",\"815\",\"ATL\",\"LGA\",2.00,-9.00,0.00,\"\",0.00,129.00,110.00,762.00,,,,,,\n2015,5,7,\"WN\",\"1182\",\"ATL\",\"LGA\",19.00,1.00,0.00,\"\",0.00,122.00,106.00,762.00,,,,,,\n2015,5,7,\"WN\",\"2516\",\"ATL\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,120.00,106.00,762.00,,,,,,\n2015,5,7,\"WN\",\"2659\",\"ATL\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,126.00,103.00,762.00,,,,,,\n2015,5,7,\"WN\",\"2850\",\"ATL\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,129.00,105.00,762.00,,,,,,\n2015,5,7,\"WN\",\"255\",\"BNA\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,124.00,109.00,764.00,,,,,,\n2015,5,7,\"WN\",\"2433\",\"BNA\",\"LGA\",0.00,21.00,0.00,\"\",0.00,151.00,109.00,764.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,7,\"WN\",\"2570\",\"BNA\",\"LGA\",9.00,2.00,0.00,\"\",0.00,128.00,110.00,764.00,,,,,,\n2015,5,7,\"WN\",\"381\",\"BUF\",\"BWI\",-6.00,-14.00,0.00,\"\",0.00,62.00,49.00,281.00,,,,,,\n2015,5,7,\"WN\",\"728\",\"BUF\",\"BWI\",-2.00,-10.00,0.00,\"\",0.00,62.00,47.00,281.00,,,,,,\n2015,5,7,\"WN\",\"842\",\"BUF\",\"BWI\",-2.00,-8.00,0.00,\"\",0.00,69.00,56.00,281.00,,,,,,\n2015,5,7,\"WN\",\"1429\",\"BUF\",\"BWI\",-4.00,-28.00,0.00,\"\",0.00,61.00,49.00,281.00,,,,,,\n2015,5,7,\"WN\",\"1528\",\"BUF\",\"BWI\",1.00,-14.00,0.00,\"\",0.00,60.00,48.00,281.00,,,,,,\n2015,5,7,\"WN\",\"2423\",\"BUF\",\"BWI\",-2.00,-10.00,0.00,\"\",0.00,67.00,51.00,281.00,,,,,,\n2015,5,7,\"WN\",\"1785\",\"BUF\",\"FLL\",-3.00,-13.00,0.00,\"\",0.00,175.00,155.00,1166.00,,,,,,\n2015,5,7,\"WN\",\"361\",\"BUF\",\"LAS\",-2.00,-27.00,0.00,\"\",0.00,275.00,259.00,1986.00,,,,,,\n2015,5,7,\"WN\",\"615\",\"BUF\",\"LAS\",-1.00,-10.00,0.00,\"\",0.00,281.00,265.00,1986.00,,,,,,\n2015,5,7,\"WN\",\"134\",\"BUF\",\"MCO\",-1.00,-15.00,0.00,\"\",0.00,146.00,133.00,1011.00,,,,,,\n2015,5,7,\"WN\",\"674\",\"BUF\",\"MCO\",0.00,-11.00,0.00,\"\",0.00,149.00,134.00,1011.00,,,,,,\n2015,5,7,\"WN\",\"854\",\"BUF\",\"MCO\",-7.00,-25.00,0.00,\"\",0.00,142.00,131.00,1011.00,,,,,,\n2015,5,7,\"WN\",\"2141\",\"BUF\",\"MCO\",-5.00,-20.00,0.00,\"\",0.00,145.00,131.00,1011.00,,,,,,\n2015,5,7,\"WN\",\"717\",\"BUF\",\"MDW\",-2.00,-25.00,0.00,\"\",0.00,87.00,73.00,468.00,,,,,,\n2015,5,7,\"WN\",\"2023\",\"BUF\",\"MDW\",-7.00,-25.00,0.00,\"\",0.00,87.00,71.00,468.00,,,,,,\n2015,5,7,\"WN\",\"2632\",\"BUF\",\"MDW\",2.00,-14.00,0.00,\"\",0.00,84.00,72.00,468.00,,,,,,\n2015,5,7,\"WN\",\"328\",\"BUF\",\"PHX\",9.00,-12.00,0.00,\"\",0.00,269.00,255.00,1912.00,,,,,,\n2015,5,7,\"WN\",\"984\",\"BUF\",\"TPA\",-8.00,-21.00,0.00,\"\",0.00,152.00,139.00,1053.00,,,,,,\n2015,5,7,\"WN\",\"2824\",\"BUF\",\"TPA\",-1.00,-10.00,0.00,\"\",0.00,156.00,140.00,1053.00,,,,,,\n2015,5,7,\"WN\",\"334\",\"BWI\",\"ALB\",-2.00,-13.00,0.00,\"\",0.00,64.00,53.00,289.00,,,,,,\n2015,5,7,\"WN\",\"346\",\"BWI\",\"ALB\",-5.00,-7.00,0.00,\"\",0.00,63.00,53.00,289.00,,,,,,\n2015,5,7,\"WN\",\"598\",\"BWI\",\"ALB\",34.00,36.00,0.00,\"\",0.00,72.00,53.00,289.00,13.00,0.00,2.00,0.00,21.00,\n2015,5,7,\"WN\",\"1269\",\"BWI\",\"ALB\",-1.00,-14.00,0.00,\"\",0.00,62.00,48.00,289.00,,,,,,\n2015,5,7,\"WN\",\"3033\",\"BWI\",\"ALB\",1.00,-6.00,0.00,\"\",0.00,63.00,53.00,289.00,,,,,,\n2015,5,7,\"WN\",\"3919\",\"BWI\",\"ALB\",8.00,6.00,0.00,\"\",0.00,68.00,54.00,289.00,,,,,,\n2015,5,7,\"WN\",\"328\",\"BWI\",\"BUF\",3.00,3.00,0.00,\"\",0.00,65.00,46.00,281.00,,,,,,\n2015,5,7,\"WN\",\"572\",\"BWI\",\"BUF\",-1.00,-11.00,0.00,\"\",0.00,60.00,45.00,281.00,,,,,,\n2015,5,7,\"WN\",\"819\",\"BWI\",\"BUF\",-7.00,-6.00,0.00,\"\",0.00,66.00,48.00,281.00,,,,,,\n2015,5,7,\"WN\",\"854\",\"BWI\",\"BUF\",-3.00,-14.00,0.00,\"\",0.00,59.00,46.00,281.00,,,,,,\n2015,5,7,\"WN\",\"1350\",\"BWI\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,57.00,45.00,281.00,,,,,,\n2015,5,7,\"WN\",\"1900\",\"BWI\",\"BUF\",0.00,-15.00,0.00,\"\",0.00,60.00,45.00,281.00,,,,,,\n2015,5,7,\"WN\",\"232\",\"BWI\",\"ISP\",36.00,28.00,0.00,\"\",0.00,57.00,42.00,220.00,23.00,0.00,0.00,0.00,5.00,\n2015,5,7,\"WN\",\"752\",\"BWI\",\"ISP\",-8.00,-17.00,0.00,\"\",0.00,51.00,41.00,220.00,,,,,,\n2015,5,7,\"WN\",\"842\",\"BWI\",\"ISP\",1.00,6.00,0.00,\"\",0.00,70.00,43.00,220.00,,,,,,\n2015,5,7,\"WN\",\"2452\",\"BWI\",\"ISP\",-3.00,-14.00,0.00,\"\",0.00,59.00,45.00,220.00,,,,,,\n2015,5,7,\"WN\",\"4017\",\"BWI\",\"ISP\",0.00,-6.00,0.00,\"\",0.00,54.00,40.00,220.00,,,,,,\n2015,5,7,\"WN\",\"597\",\"BWI\",\"ROC\",-2.00,-13.00,0.00,\"\",0.00,59.00,48.00,277.00,,,,,,\n2015,5,7,\"WN\",\"3564\",\"BWI\",\"ROC\",-3.00,-12.00,0.00,\"\",0.00,61.00,44.00,277.00,,,,,,\n2015,5,7,\"WN\",\"914\",\"CAK\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,75.00,62.00,397.00,,,,,,\n2015,5,7,\"WN\",\"4728\",\"CAK\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,91.00,66.00,397.00,,,,,,\n2015,5,4,\"WN\",\"325\",\"ISP\",\"BWI\",9.00,10.00,0.00,\"\",0.00,71.00,55.00,220.00,,,,,,\n2015,5,4,\"WN\",\"580\",\"ISP\",\"BWI\",-2.00,-18.00,0.00,\"\",0.00,59.00,46.00,220.00,,,,,,\n2015,5,4,\"WN\",\"667\",\"ISP\",\"BWI\",-5.00,1.00,0.00,\"\",0.00,81.00,45.00,220.00,,,,,,\n2015,5,4,\"WN\",\"2940\",\"ISP\",\"BWI\",1.00,-3.00,0.00,\"\",0.00,71.00,46.00,220.00,,,,,,\n2015,5,4,\"WN\",\"3743\",\"ISP\",\"BWI\",3.00,-5.00,0.00,\"\",0.00,67.00,50.00,220.00,,,,,,\n2015,5,4,\"WN\",\"752\",\"ISP\",\"FLL\",-1.00,-15.00,0.00,\"\",0.00,171.00,160.00,1092.00,,,,,,\n2015,5,4,\"WN\",\"4554\",\"ISP\",\"FLL\",-3.00,-12.00,0.00,\"\",0.00,171.00,154.00,1092.00,,,,,,\n2015,5,4,\"WN\",\"663\",\"ISP\",\"MCO\",28.00,24.00,0.00,\"\",0.00,156.00,140.00,971.00,4.00,0.00,0.00,0.00,20.00,\n2015,5,4,\"WN\",\"4017\",\"ISP\",\"MCO\",-6.00,-21.00,0.00,\"\",0.00,150.00,135.00,971.00,,,,,,\n2015,5,4,\"WN\",\"4575\",\"ISP\",\"MCO\",-8.00,-15.00,0.00,\"\",0.00,158.00,146.00,971.00,,,,,,\n2015,5,4,\"WN\",\"4910\",\"ISP\",\"MCO\",-2.00,-23.00,0.00,\"\",0.00,149.00,133.00,971.00,,,,,,\n2015,5,4,\"WN\",\"4479\",\"ISP\",\"PBI\",-2.00,2.00,0.00,\"\",0.00,174.00,156.00,1052.00,,,,,,\n2015,5,4,\"WN\",\"4729\",\"ISP\",\"PBI\",-8.00,-17.00,0.00,\"\",0.00,161.00,147.00,1052.00,,,,,,\n2015,5,4,\"WN\",\"208\",\"ISP\",\"TPA\",-8.00,-19.00,0.00,\"\",0.00,159.00,146.00,1034.00,,,,,,\n2015,5,4,\"WN\",\"4907\",\"ISP\",\"TPA\",-6.00,-21.00,0.00,\"\",0.00,165.00,151.00,1034.00,,,,,,\n2015,5,4,\"WN\",\"2202\",\"LAS\",\"ALB\",17.00,23.00,0.00,\"\",0.00,291.00,257.00,2237.00,17.00,0.00,6.00,0.00,0.00,\n2015,5,4,\"WN\",\"2023\",\"LAS\",\"BUF\",-1.00,-5.00,0.00,\"\",0.00,261.00,234.00,1986.00,,,,,,\n2015,5,4,\"WN\",\"2528\",\"LAS\",\"BUF\",9.00,30.00,0.00,\"\",0.00,276.00,234.00,1986.00,6.00,0.00,21.00,0.00,3.00,\n2015,5,5,\"WN\",\"1898\",\"FLL\",\"ALB\",-8.00,-23.00,0.00,\"\",0.00,165.00,151.00,1204.00,,,,,,\n2015,5,5,\"WN\",\"4643\",\"FLL\",\"BUF\",-4.00,-28.00,0.00,\"\",0.00,161.00,147.00,1166.00,,,,,,\n2015,5,5,\"WN\",\"28\",\"FLL\",\"ISP\",26.00,7.00,0.00,\"\",0.00,156.00,139.00,1092.00,,,,,,\n2015,5,5,\"WN\",\"4640\",\"FLL\",\"ISP\",-5.00,-21.00,0.00,\"\",0.00,154.00,137.00,1092.00,,,,,,\n2015,5,5,\"WN\",\"299\",\"HOU\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,202.00,187.00,1428.00,,,,,,\n2015,5,5,\"WN\",\"536\",\"HOU\",\"LGA\",2.00,4.00,0.00,\"\",0.00,207.00,186.00,1428.00,,,,,,\n2015,5,5,\"WN\",\"1163\",\"HOU\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,194.00,181.00,1428.00,,,,,,\n2015,5,5,\"WN\",\"325\",\"ISP\",\"BWI\",12.00,2.00,0.00,\"\",0.00,60.00,49.00,220.00,,,,,,\n2015,5,5,\"WN\",\"580\",\"ISP\",\"BWI\",-8.00,-23.00,0.00,\"\",0.00,60.00,50.00,220.00,,,,,,\n2015,5,5,\"WN\",\"667\",\"ISP\",\"BWI\",-4.00,-17.00,0.00,\"\",0.00,62.00,47.00,220.00,,,,,,\n2015,5,5,\"WN\",\"2940\",\"ISP\",\"BWI\",19.00,13.00,0.00,\"\",0.00,69.00,51.00,220.00,,,,,,\n2015,5,5,\"WN\",\"3743\",\"ISP\",\"BWI\",-1.00,-13.00,0.00,\"\",0.00,63.00,50.00,220.00,,,,,,\n2015,5,5,\"WN\",\"752\",\"ISP\",\"FLL\",-6.00,-14.00,0.00,\"\",0.00,177.00,164.00,1092.00,,,,,,\n2015,5,5,\"WN\",\"4554\",\"ISP\",\"FLL\",-5.00,-13.00,0.00,\"\",0.00,172.00,157.00,1092.00,,,,,,\n2015,5,5,\"WN\",\"663\",\"ISP\",\"MCO\",-9.00,-7.00,0.00,\"\",0.00,162.00,146.00,971.00,,,,,,\n2015,5,5,\"WN\",\"4017\",\"ISP\",\"MCO\",-1.00,2.00,0.00,\"\",0.00,168.00,151.00,971.00,,,,,,\n2015,5,5,\"WN\",\"4575\",\"ISP\",\"MCO\",-3.00,-7.00,0.00,\"\",0.00,161.00,145.00,971.00,,,,,,\n2015,5,5,\"WN\",\"4910\",\"ISP\",\"MCO\",-7.00,-18.00,0.00,\"\",0.00,159.00,139.00,971.00,,,,,,\n2015,5,5,\"WN\",\"4479\",\"ISP\",\"PBI\",73.00,77.00,0.00,\"\",0.00,174.00,158.00,1052.00,3.00,0.00,4.00,0.00,70.00,\n2015,5,5,\"WN\",\"4729\",\"ISP\",\"PBI\",-5.00,-13.00,0.00,\"\",0.00,162.00,149.00,1052.00,,,,,,\n2015,5,5,\"WN\",\"208\",\"ISP\",\"TPA\",-5.00,-7.00,0.00,\"\",0.00,168.00,151.00,1034.00,,,,,,\n2015,5,5,\"WN\",\"4907\",\"ISP\",\"TPA\",-5.00,-12.00,0.00,\"\",0.00,173.00,160.00,1034.00,,,,,,\n2015,5,5,\"WN\",\"2202\",\"LAS\",\"ALB\",-5.00,-10.00,0.00,\"\",0.00,280.00,261.00,2237.00,,,,,,\n2015,5,5,\"WN\",\"2023\",\"LAS\",\"BUF\",-1.00,-14.00,0.00,\"\",0.00,252.00,236.00,1986.00,,,,,,\n2015,5,5,\"WN\",\"2528\",\"LAS\",\"BUF\",10.00,16.00,0.00,\"\",0.00,261.00,238.00,1986.00,6.00,0.00,6.00,0.00,4.00,\n2015,5,5,\"WN\",\"178\",\"LGA\",\"ATL\",0.00,-16.00,0.00,\"\",0.00,144.00,107.00,762.00,,,,,,\n2015,5,5,\"WN\",\"2939\",\"LGA\",\"ATL\",-4.00,-41.00,0.00,\"\",0.00,133.00,107.00,762.00,,,,,,\n2015,5,5,\"WN\",\"3133\",\"LGA\",\"ATL\",-5.00,-38.00,0.00,\"\",0.00,127.00,105.00,762.00,,,,,,\n2015,5,5,\"WN\",\"3391\",\"LGA\",\"ATL\",94.00,65.00,0.00,\"\",0.00,131.00,111.00,762.00,0.00,0.00,0.00,0.00,65.00,\n2015,5,5,\"WN\",\"4728\",\"LGA\",\"ATL\",-5.00,-41.00,0.00,\"\",0.00,139.00,112.00,762.00,,,,,,\n2015,5,5,\"WN\",\"914\",\"LGA\",\"BNA\",-3.00,-19.00,0.00,\"\",0.00,134.00,102.00,764.00,,,,,,\n2015,5,5,\"WN\",\"1208\",\"LGA\",\"BNA\",-4.00,-39.00,0.00,\"\",0.00,120.00,105.00,764.00,,,,,,\n2015,5,5,\"WN\",\"1370\",\"LGA\",\"BNA\",-2.00,-38.00,0.00,\"\",0.00,129.00,104.00,764.00,,,,,,\n2015,5,5,\"WN\",\"202\",\"LGA\",\"CAK\",-6.00,-29.00,0.00,\"\",0.00,77.00,61.00,397.00,,,,,,\n2015,5,5,\"WN\",\"534\",\"LGA\",\"CAK\",-4.00,-23.00,0.00,\"\",0.00,81.00,66.00,397.00,,,,,,\n2015,5,5,\"WN\",\"255\",\"LGA\",\"DAL\",-3.00,-46.00,0.00,\"\",0.00,202.00,179.00,1381.00,,,,,,\n2015,5,5,\"WN\",\"431\",\"LGA\",\"DAL\",66.00,18.00,0.00,\"\",0.00,192.00,175.00,1381.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,5,\"WN\",\"2347\",\"LGA\",\"DAL\",0.00,-49.00,0.00,\"\",0.00,196.00,179.00,1381.00,,,,,,\n2015,5,5,\"WN\",\"3489\",\"LGA\",\"DAL\",6.00,-25.00,0.00,\"\",0.00,199.00,177.00,1381.00,,,,,,\n2015,5,5,\"WN\",\"12\",\"LGA\",\"DEN\",8.00,-12.00,0.00,\"\",0.00,255.00,220.00,1620.00,,,,,,\n2015,5,5,\"WN\",\"165\",\"LGA\",\"DEN\",-2.00,-27.00,0.00,\"\",0.00,250.00,232.00,1620.00,,,,,,\n2015,5,5,\"WN\",\"682\",\"LGA\",\"HOU\",-4.00,-34.00,0.00,\"\",0.00,210.00,192.00,1428.00,,,,,,\n2015,5,5,\"WN\",\"2778\",\"LGA\",\"HOU\",-3.00,-38.00,0.00,\"\",0.00,215.00,195.00,1428.00,,,,,,\n2015,5,5,\"WN\",\"3845\",\"LGA\",\"HOU\",-2.00,-25.00,0.00,\"\",0.00,217.00,199.00,1428.00,,,,,,\n2015,5,5,\"WN\",\"413\",\"LGA\",\"MCI\",-3.00,,0.00,\"\",1.00,,,1107.00,,,,,,\n2015,5,5,\"WN\",\"479\",\"LGA\",\"MDW\",-9.00,-26.00,0.00,\"\",0.00,128.00,110.00,725.00,,,,,,\n2015,5,5,\"WN\",\"777\",\"LGA\",\"MDW\",-3.00,-38.00,0.00,\"\",0.00,120.00,109.00,725.00,,,,,,\n2015,5,5,\"WN\",\"868\",\"LGA\",\"MDW\",-2.00,-34.00,0.00,\"\",0.00,128.00,111.00,725.00,,,,,,\n2015,5,5,\"WN\",\"2516\",\"LGA\",\"MDW\",-3.00,-20.00,0.00,\"\",0.00,143.00,112.00,725.00,,,,,,\n2015,5,5,\"WN\",\"2529\",\"LGA\",\"MDW\",-6.00,-30.00,0.00,\"\",0.00,126.00,108.00,725.00,,,,,,\n2015,5,5,\"WN\",\"2659\",\"LGA\",\"MDW\",1.00,-27.00,0.00,\"\",0.00,127.00,109.00,725.00,,,,,,\n2015,5,5,\"WN\",\"4123\",\"LGA\",\"MDW\",-3.00,-8.00,0.00,\"\",0.00,145.00,109.00,725.00,,,,,,\n2015,5,5,\"WN\",\"1344\",\"LGA\",\"MKE\",4.00,-11.00,0.00,\"\",0.00,135.00,115.00,738.00,,,,,,\n2015,5,5,\"WN\",\"2433\",\"LGA\",\"MKE\",-1.00,-14.00,0.00,\"\",0.00,142.00,117.00,738.00,,,,,,\n2015,5,5,\"WN\",\"4379\",\"LGA\",\"MKE\",63.00,51.00,0.00,\"\",0.00,133.00,113.00,738.00,51.00,0.00,0.00,0.00,0.00,\n2015,5,5,\"WN\",\"536\",\"LGA\",\"STL\",0.00,-23.00,0.00,\"\",0.00,157.00,128.00,888.00,,,,,,\n2015,5,5,\"WN\",\"2168\",\"LGA\",\"STL\",-4.00,-18.00,0.00,\"\",0.00,146.00,124.00,888.00,,,,,,\n2015,5,5,\"WN\",\"4571\",\"LGA\",\"STL\",12.00,-14.00,0.00,\"\",0.00,144.00,129.00,888.00,,,,,,\n2015,5,5,\"WN\",\"333\",\"MCI\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,160.00,148.00,1107.00,,,,,,\n2015,5,5,\"WN\",\"1011\",\"MCO\",\"ALB\",-1.00,-14.00,0.00,\"\",0.00,152.00,137.00,1073.00,,,,,,\n2015,5,5,\"WN\",\"2849\",\"MCO\",\"ALB\",1.00,0.00,0.00,\"\",0.00,159.00,131.00,1073.00,,,,,,\n2015,5,5,\"WN\",\"728\",\"MCO\",\"BUF\",48.00,34.00,0.00,\"\",0.00,141.00,126.00,1011.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,5,\"WN\",\"801\",\"MCO\",\"BUF\",-8.00,-19.00,0.00,\"\",0.00,144.00,129.00,1011.00,,,,,,\n2015,5,5,\"WN\",\"2423\",\"MCO\",\"BUF\",-2.00,-5.00,0.00,\"\",0.00,152.00,134.00,1011.00,,,,,,\n2015,5,5,\"WN\",\"2632\",\"MCO\",\"BUF\",0.00,-12.00,0.00,\"\",0.00,143.00,127.00,1011.00,,,,,,\n2015,5,5,\"WN\",\"293\",\"MCO\",\"ISP\",-4.00,-24.00,0.00,\"\",0.00,135.00,119.00,971.00,,,,,,\n2015,5,5,\"WN\",\"325\",\"MCO\",\"ISP\",38.00,21.00,0.00,\"\",0.00,133.00,120.00,971.00,3.00,0.00,0.00,0.00,18.00,\n2015,5,5,\"WN\",\"426\",\"MCO\",\"ISP\",-5.00,-9.00,0.00,\"\",0.00,146.00,130.00,971.00,,,,,,\n2015,5,5,\"WN\",\"4486\",\"MCO\",\"ISP\",19.00,10.00,0.00,\"\",0.00,141.00,124.00,971.00,,,,,,\n2015,5,5,\"WN\",\"3935\",\"MCO\",\"ROC\",-3.00,-12.00,0.00,\"\",0.00,146.00,130.00,1033.00,,,,,,\n2015,5,8,\"WN\",\"223\",\"ALB\",\"BWI\",-3.00,-6.00,0.00,\"\",0.00,77.00,54.00,289.00,,,,,,\n2015,5,8,\"WN\",\"752\",\"ALB\",\"BWI\",-4.00,-14.00,0.00,\"\",0.00,70.00,56.00,289.00,,,,,,\n2015,5,8,\"WN\",\"854\",\"ALB\",\"BWI\",-1.00,-9.00,0.00,\"\",0.00,67.00,53.00,289.00,,,,,,\n2015,5,8,\"WN\",\"1011\",\"ALB\",\"BWI\",-4.00,-9.00,0.00,\"\",0.00,75.00,53.00,289.00,,,,,,\n2015,5,8,\"WN\",\"3294\",\"ALB\",\"BWI\",-4.00,-24.00,0.00,\"\",0.00,65.00,51.00,289.00,,,,,,\n2015,5,8,\"WN\",\"3917\",\"ALB\",\"BWI\",-5.00,-7.00,0.00,\"\",0.00,78.00,57.00,289.00,,,,,,\n2015,5,8,\"WN\",\"1987\",\"ALB\",\"FLL\",-3.00,-21.00,0.00,\"\",0.00,172.00,158.00,1204.00,,,,,,\n2015,5,8,\"WN\",\"346\",\"ALB\",\"LAS\",43.00,41.00,0.00,\"\",0.00,328.00,312.00,2237.00,1.00,0.00,0.00,0.00,40.00,\n2015,5,8,\"WN\",\"3919\",\"ALB\",\"MCO\",-4.00,-13.00,0.00,\"\",0.00,166.00,146.00,1073.00,,,,,,\n2015,5,8,\"WN\",\"4362\",\"ALB\",\"MCO\",-5.00,-8.00,0.00,\"\",0.00,172.00,142.00,1073.00,,,,,,\n2015,5,8,\"WN\",\"1550\",\"ALB\",\"MDW\",140.00,145.00,0.00,\"\",0.00,140.00,105.00,717.00,0.00,140.00,5.00,0.00,0.00,\n2015,5,8,\"WN\",\"4985\",\"ALB\",\"MDW\",-4.00,-6.00,0.00,\"\",0.00,133.00,106.00,717.00,,,,,,\n2015,5,8,\"WN\",\"3650\",\"ALB\",\"TPA\",-5.00,-21.00,0.00,\"\",0.00,169.00,156.00,1130.00,,,,,,\n2015,5,8,\"WN\",\"815\",\"ATL\",\"LGA\",2.00,1.00,0.00,\"\",0.00,139.00,115.00,762.00,,,,,,\n2015,5,8,\"WN\",\"1182\",\"ATL\",\"LGA\",4.00,-2.00,0.00,\"\",0.00,134.00,109.00,762.00,,,,,,\n2015,5,8,\"WN\",\"2516\",\"ATL\",\"LGA\",1.00,-9.00,0.00,\"\",0.00,125.00,107.00,762.00,,,,,,\n2015,5,8,\"WN\",\"2659\",\"ATL\",\"LGA\",-3.00,5.00,0.00,\"\",0.00,153.00,133.00,762.00,,,,,,\n2015,5,8,\"WN\",\"2850\",\"ATL\",\"LGA\",-5.00,-4.00,0.00,\"\",0.00,136.00,113.00,762.00,,,,,,\n2015,5,7,\"WN\",\"178\",\"LGA\",\"ATL\",-1.00,-31.00,0.00,\"\",0.00,130.00,109.00,762.00,,,,,,\n2015,5,7,\"WN\",\"2939\",\"LGA\",\"ATL\",-2.00,-33.00,0.00,\"\",0.00,139.00,108.00,762.00,,,,,,\n2015,5,7,\"WN\",\"3133\",\"LGA\",\"ATL\",-2.00,-29.00,0.00,\"\",0.00,133.00,108.00,762.00,,,,,,\n2015,5,7,\"WN\",\"3391\",\"LGA\",\"ATL\",-1.00,-21.00,0.00,\"\",0.00,140.00,107.00,762.00,,,,,,\n2015,5,7,\"WN\",\"4728\",\"LGA\",\"ATL\",4.00,-31.00,0.00,\"\",0.00,140.00,113.00,762.00,,,,,,\n2015,5,7,\"WN\",\"914\",\"LGA\",\"BNA\",-3.00,-20.00,0.00,\"\",0.00,133.00,99.00,764.00,,,,,,\n2015,5,7,\"WN\",\"1208\",\"LGA\",\"BNA\",1.00,-30.00,0.00,\"\",0.00,124.00,105.00,764.00,,,,,,\n2015,5,7,\"WN\",\"1370\",\"LGA\",\"BNA\",0.00,-37.00,0.00,\"\",0.00,128.00,108.00,764.00,,,,,,\n2015,5,7,\"WN\",\"202\",\"LGA\",\"CAK\",-4.00,-17.00,0.00,\"\",0.00,87.00,62.00,397.00,,,,,,\n2015,5,7,\"WN\",\"534\",\"LGA\",\"CAK\",-4.00,-16.00,0.00,\"\",0.00,88.00,59.00,397.00,,,,,,\n2015,5,7,\"WN\",\"255\",\"LGA\",\"DAL\",-3.00,-38.00,0.00,\"\",0.00,210.00,186.00,1381.00,,,,,,\n2015,5,7,\"WN\",\"431\",\"LGA\",\"DAL\",-4.00,-41.00,0.00,\"\",0.00,203.00,181.00,1381.00,,,,,,\n2015,5,7,\"WN\",\"2347\",\"LGA\",\"DAL\",8.00,-45.00,0.00,\"\",0.00,192.00,181.00,1381.00,,,,,,\n2015,5,7,\"WN\",\"3489\",\"LGA\",\"DAL\",-1.00,-20.00,0.00,\"\",0.00,211.00,190.00,1381.00,,,,,,\n2015,5,7,\"WN\",\"12\",\"LGA\",\"DEN\",4.00,-19.00,0.00,\"\",0.00,252.00,222.00,1620.00,,,,,,\n2015,5,7,\"WN\",\"165\",\"LGA\",\"DEN\",-4.00,-35.00,0.00,\"\",0.00,244.00,217.00,1620.00,,,,,,\n2015,5,7,\"WN\",\"682\",\"LGA\",\"HOU\",2.00,-17.00,0.00,\"\",0.00,221.00,199.00,1428.00,,,,,,\n2015,5,7,\"WN\",\"2778\",\"LGA\",\"HOU\",5.00,-28.00,0.00,\"\",0.00,217.00,193.00,1428.00,,,,,,\n2015,5,7,\"WN\",\"3845\",\"LGA\",\"HOU\",2.00,-30.00,0.00,\"\",0.00,208.00,183.00,1428.00,,,,,,\n2015,5,7,\"WN\",\"413\",\"LGA\",\"MCI\",1.00,-9.00,0.00,\"\",0.00,190.00,164.00,1107.00,,,,,,\n2015,5,7,\"WN\",\"479\",\"LGA\",\"MDW\",1.00,-18.00,0.00,\"\",0.00,126.00,99.00,725.00,,,,,,\n2015,5,7,\"WN\",\"777\",\"LGA\",\"MDW\",0.00,-24.00,0.00,\"\",0.00,131.00,105.00,725.00,,,,,,\n2015,5,7,\"WN\",\"868\",\"LGA\",\"MDW\",21.00,-17.00,0.00,\"\",0.00,122.00,103.00,725.00,,,,,,\n2015,5,7,\"WN\",\"2516\",\"LGA\",\"MDW\",-1.00,-37.00,0.00,\"\",0.00,124.00,101.00,725.00,,,,,,\n2015,5,7,\"WN\",\"2529\",\"LGA\",\"MDW\",0.00,-29.00,0.00,\"\",0.00,121.00,102.00,725.00,,,,,,\n2015,5,7,\"WN\",\"2659\",\"LGA\",\"MDW\",-1.00,-32.00,0.00,\"\",0.00,124.00,103.00,725.00,,,,,,\n2015,5,7,\"WN\",\"4123\",\"LGA\",\"MDW\",0.00,-10.00,0.00,\"\",0.00,140.00,100.00,725.00,,,,,,\n2015,5,7,\"WN\",\"1344\",\"LGA\",\"MKE\",3.00,-8.00,0.00,\"\",0.00,139.00,107.00,738.00,,,,,,\n2015,5,7,\"WN\",\"2433\",\"LGA\",\"MKE\",30.00,2.00,0.00,\"\",0.00,127.00,104.00,738.00,,,,,,\n2015,5,7,\"WN\",\"4379\",\"LGA\",\"MKE\",-3.00,-18.00,0.00,\"\",0.00,130.00,110.00,738.00,,,,,,\n2015,5,7,\"WN\",\"536\",\"LGA\",\"STL\",12.00,-31.00,0.00,\"\",0.00,137.00,120.00,888.00,,,,,,\n2015,5,7,\"WN\",\"2168\",\"LGA\",\"STL\",-5.00,-16.00,0.00,\"\",0.00,149.00,124.00,888.00,,,,,,\n2015,5,7,\"WN\",\"4571\",\"LGA\",\"STL\",1.00,-3.00,0.00,\"\",0.00,166.00,121.00,888.00,,,,,,\n2015,5,7,\"WN\",\"333\",\"MCI\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,158.00,144.00,1107.00,,,,,,\n2015,5,7,\"WN\",\"1011\",\"MCO\",\"ALB\",-1.00,-9.00,0.00,\"\",0.00,157.00,145.00,1073.00,,,,,,\n2015,5,7,\"WN\",\"2849\",\"MCO\",\"ALB\",-5.00,-8.00,0.00,\"\",0.00,157.00,137.00,1073.00,,,,,,\n2015,5,7,\"WN\",\"728\",\"MCO\",\"BUF\",13.00,-2.00,0.00,\"\",0.00,140.00,125.00,1011.00,,,,,,\n2015,5,7,\"WN\",\"801\",\"MCO\",\"BUF\",-5.00,-17.00,0.00,\"\",0.00,143.00,129.00,1011.00,,,,,,\n2015,5,7,\"WN\",\"2423\",\"MCO\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,147.00,131.00,1011.00,,,,,,\n2015,5,7,\"WN\",\"2632\",\"MCO\",\"BUF\",-3.00,-17.00,0.00,\"\",0.00,141.00,125.00,1011.00,,,,,,\n2015,5,7,\"WN\",\"293\",\"MCO\",\"ISP\",-6.00,-9.00,0.00,\"\",0.00,152.00,135.00,971.00,,,,,,\n2015,5,7,\"WN\",\"325\",\"MCO\",\"ISP\",25.00,26.00,0.00,\"\",0.00,151.00,136.00,971.00,18.00,0.00,1.00,0.00,7.00,\n2015,5,7,\"WN\",\"426\",\"MCO\",\"ISP\",-2.00,-2.00,0.00,\"\",0.00,150.00,133.00,971.00,,,,,,\n2015,5,7,\"WN\",\"4486\",\"MCO\",\"ISP\",-3.00,-4.00,0.00,\"\",0.00,149.00,132.00,971.00,,,,,,\n2015,5,7,\"WN\",\"3935\",\"MCO\",\"ROC\",-5.00,-10.00,0.00,\"\",0.00,150.00,130.00,1033.00,,,,,,\n2015,5,7,\"WN\",\"103\",\"MDW\",\"ALB\",0.00,-6.00,0.00,\"\",0.00,109.00,91.00,717.00,,,,,,\n2015,5,7,\"WN\",\"1461\",\"MDW\",\"ALB\",0.00,-6.00,0.00,\"\",0.00,109.00,90.00,717.00,,,,,,\n2015,5,7,\"WN\",\"134\",\"MDW\",\"BUF\",-1.00,-4.00,0.00,\"\",0.00,87.00,66.00,468.00,,,,,,\n2015,5,7,\"WN\",\"615\",\"MDW\",\"BUF\",3.00,-7.00,0.00,\"\",0.00,80.00,67.00,468.00,,,,,,\n2015,5,7,\"WN\",\"2241\",\"MDW\",\"BUF\",0.00,-13.00,0.00,\"\",0.00,87.00,64.00,468.00,,,,,,\n2015,5,7,\"WN\",\"178\",\"MDW\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,122.00,102.00,725.00,,,,,,\n2015,5,7,\"WN\",\"682\",\"MDW\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,124.00,99.00,725.00,,,,,,\n2015,5,7,\"WN\",\"803\",\"MDW\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,125.00,103.00,725.00,,,,,,\n2015,5,7,\"WN\",\"1713\",\"MDW\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,118.00,101.00,725.00,,,,,,\n2015,5,7,\"WN\",\"1945\",\"MDW\",\"LGA\",6.00,-1.00,0.00,\"\",0.00,123.00,98.00,725.00,,,,,,\n2015,5,7,\"WN\",\"2778\",\"MDW\",\"LGA\",9.00,2.00,0.00,\"\",0.00,118.00,103.00,725.00,,,,,,\n2015,5,7,\"WN\",\"4365\",\"MDW\",\"LGA\",14.00,25.00,0.00,\"\",0.00,141.00,109.00,725.00,0.00,0.00,11.00,0.00,14.00,\n2015,5,7,\"WN\",\"292\",\"MDW\",\"ROC\",41.00,30.00,0.00,\"\",0.00,79.00,68.00,523.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,7,\"WN\",\"2229\",\"MDW\",\"ROC\",8.00,-2.00,0.00,\"\",0.00,85.00,70.00,523.00,,,,,,\n2015,5,7,\"WN\",\"202\",\"MKE\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,126.00,113.00,738.00,,,,,,\n2015,5,7,\"WN\",\"1208\",\"MKE\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,117.00,106.00,738.00,,,,,,\n2015,5,7,\"WN\",\"3391\",\"MKE\",\"LGA\",11.00,-1.00,0.00,\"\",0.00,118.00,105.00,738.00,,,,,,\n2015,5,7,\"WN\",\"2851\",\"PBI\",\"ISP\",9.00,12.00,0.00,\"\",0.00,163.00,144.00,1052.00,,,,,,\n2015,5,7,\"WN\",\"4818\",\"PBI\",\"ISP\",10.00,2.00,0.00,\"\",0.00,152.00,138.00,1052.00,,,,,,\n2015,5,8,\"WN\",\"1898\",\"FLL\",\"ALB\",-4.00,-8.00,0.00,\"\",0.00,176.00,164.00,1204.00,,,,,,\n2015,5,8,\"WN\",\"4643\",\"FLL\",\"BUF\",2.00,-11.00,0.00,\"\",0.00,172.00,154.00,1166.00,,,,,,\n2015,5,8,\"WN\",\"28\",\"FLL\",\"ISP\",17.00,7.00,0.00,\"\",0.00,165.00,148.00,1092.00,,,,,,\n2015,5,8,\"WN\",\"4640\",\"FLL\",\"ISP\",-2.00,-1.00,0.00,\"\",0.00,171.00,157.00,1092.00,,,,,,\n2015,5,8,\"WN\",\"299\",\"HOU\",\"LGA\",47.00,43.00,0.00,\"\",0.00,206.00,191.00,1428.00,0.00,0.00,31.00,0.00,12.00,\n2015,5,8,\"WN\",\"536\",\"HOU\",\"LGA\",4.00,-2.00,0.00,\"\",0.00,199.00,185.00,1428.00,,,,,,\n2015,5,8,\"WN\",\"1163\",\"HOU\",\"LGA\",9.00,-5.00,0.00,\"\",0.00,196.00,184.00,1428.00,,,,,,\n2015,5,8,\"WN\",\"325\",\"ISP\",\"BWI\",-1.00,-11.00,0.00,\"\",0.00,60.00,48.00,220.00,,,,,,\n2015,5,8,\"WN\",\"580\",\"ISP\",\"BWI\",-5.00,-21.00,0.00,\"\",0.00,59.00,49.00,220.00,,,,,,\n2015,5,8,\"WN\",\"667\",\"ISP\",\"BWI\",19.00,5.00,0.00,\"\",0.00,61.00,45.00,220.00,,,,,,\n2015,5,8,\"WN\",\"2940\",\"ISP\",\"BWI\",20.00,6.00,0.00,\"\",0.00,61.00,48.00,220.00,,,,,,\n2015,5,8,\"WN\",\"3743\",\"ISP\",\"BWI\",-5.00,-12.00,0.00,\"\",0.00,68.00,48.00,220.00,,,,,,\n2015,5,8,\"WN\",\"752\",\"ISP\",\"FLL\",37.00,14.00,0.00,\"\",0.00,162.00,149.00,1092.00,,,,,,\n2015,5,8,\"WN\",\"4554\",\"ISP\",\"FLL\",-4.00,-1.00,0.00,\"\",0.00,183.00,154.00,1092.00,,,,,,\n2015,5,8,\"WN\",\"663\",\"ISP\",\"MCO\",0.00,-15.00,0.00,\"\",0.00,145.00,132.00,971.00,,,,,,\n2015,5,8,\"WN\",\"4017\",\"ISP\",\"MCO\",5.00,-19.00,0.00,\"\",0.00,141.00,127.00,971.00,,,,,,\n2015,5,8,\"WN\",\"4575\",\"ISP\",\"MCO\",-8.00,-26.00,0.00,\"\",0.00,147.00,130.00,971.00,,,,,,\n2015,5,8,\"WN\",\"4910\",\"ISP\",\"MCO\",-1.00,-18.00,0.00,\"\",0.00,153.00,135.00,971.00,,,,,,\n2015,5,8,\"WN\",\"4479\",\"ISP\",\"PBI\",-3.00,-13.00,0.00,\"\",0.00,160.00,141.00,1052.00,,,,,,\n2015,5,8,\"WN\",\"4729\",\"ISP\",\"PBI\",-6.00,-12.00,0.00,\"\",0.00,164.00,151.00,1052.00,,,,,,\n2015,5,8,\"WN\",\"208\",\"ISP\",\"TPA\",17.00,2.00,0.00,\"\",0.00,155.00,141.00,1034.00,,,,,,\n2015,5,8,\"WN\",\"4907\",\"ISP\",\"TPA\",15.00,-7.00,0.00,\"\",0.00,158.00,144.00,1034.00,,,,,,\n2015,5,8,\"WN\",\"2202\",\"LAS\",\"ALB\",108.00,91.00,0.00,\"\",0.00,268.00,254.00,2237.00,0.00,0.00,0.00,0.00,91.00,\n2015,5,8,\"WN\",\"2023\",\"LAS\",\"BUF\",-3.00,-12.00,0.00,\"\",0.00,256.00,227.00,1986.00,,,,,,\n2015,5,8,\"WN\",\"2528\",\"LAS\",\"BUF\",1.00,-9.00,0.00,\"\",0.00,245.00,223.00,1986.00,,,,,,\n2015,5,6,\"WN\",\"202\",\"MKE\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,137.00,104.00,738.00,,,,,,\n2015,5,6,\"WN\",\"1208\",\"MKE\",\"LGA\",-6.00,-21.00,0.00,\"\",0.00,120.00,105.00,738.00,,,,,,\n2015,5,6,\"WN\",\"3391\",\"MKE\",\"LGA\",-6.00,-4.00,0.00,\"\",0.00,132.00,100.00,738.00,,,,,,\n2015,5,7,\"WN\",\"2454\",\"PHX\",\"BUF\",5.00,-11.00,0.00,\"\",0.00,229.00,217.00,1912.00,,,,,,\n2015,5,7,\"WN\",\"719\",\"ROC\",\"BWI\",2.00,-5.00,0.00,\"\",0.00,63.00,48.00,277.00,,,,,,\n2015,5,7,\"WN\",\"2749\",\"ROC\",\"BWI\",-4.00,-31.00,0.00,\"\",0.00,53.00,42.00,277.00,,,,,,\n2015,5,7,\"WN\",\"597\",\"ROC\",\"MCO\",-6.00,-15.00,0.00,\"\",0.00,151.00,136.00,1033.00,,,,,,\n2015,5,7,\"WN\",\"747\",\"ROC\",\"MDW\",6.00,-9.00,0.00,\"\",0.00,95.00,80.00,523.00,,,,,,\n2015,5,7,\"WN\",\"4712\",\"ROC\",\"MDW\",-5.00,-14.00,0.00,\"\",0.00,96.00,81.00,523.00,,,,,,\n2015,5,7,\"WN\",\"4655\",\"ROC\",\"TPA\",-5.00,-9.00,0.00,\"\",0.00,161.00,143.00,1079.00,,,,,,\n2015,5,7,\"WN\",\"12\",\"STL\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,134.00,117.00,888.00,,,,,,\n2015,5,7,\"WN\",\"1194\",\"STL\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,137.00,120.00,888.00,,,,,,\n2015,5,7,\"WN\",\"1986\",\"STL\",\"LGA\",2.00,2.00,0.00,\"\",0.00,140.00,125.00,888.00,,,,,,\n2015,5,7,\"WN\",\"854\",\"TPA\",\"ALB\",28.00,17.00,0.00,\"\",0.00,159.00,149.00,1130.00,7.00,0.00,0.00,0.00,10.00,\n2015,5,7,\"WN\",\"127\",\"TPA\",\"BUF\",7.00,-6.00,0.00,\"\",0.00,142.00,129.00,1053.00,,,,,,\n2015,5,7,\"WN\",\"463\",\"TPA\",\"BUF\",-6.00,-8.00,0.00,\"\",0.00,153.00,135.00,1053.00,,,,,,\n2015,5,7,\"WN\",\"2423\",\"TPA\",\"ISP\",-8.00,-9.00,0.00,\"\",0.00,154.00,140.00,1034.00,,,,,,\n2015,5,7,\"WN\",\"4390\",\"TPA\",\"ISP\",-1.00,-11.00,0.00,\"\",0.00,155.00,140.00,1034.00,,,,,,\n2015,5,7,\"WN\",\"719\",\"TPA\",\"ROC\",10.00,-7.00,0.00,\"\",0.00,143.00,131.00,1079.00,,,,,,\n2015,5,8,\"WN\",\"293\",\"MCO\",\"ISP\",-25.00,-29.00,0.00,\"\",0.00,151.00,134.00,971.00,,,,,,\n2015,5,8,\"WN\",\"325\",\"MCO\",\"ISP\",-8.00,-4.00,0.00,\"\",0.00,154.00,135.00,971.00,,,,,,\n2015,5,8,\"WN\",\"426\",\"MCO\",\"ISP\",-1.00,1.00,0.00,\"\",0.00,152.00,134.00,971.00,,,,,,\n2015,5,8,\"WN\",\"4486\",\"MCO\",\"ISP\",1.00,-4.00,0.00,\"\",0.00,145.00,132.00,971.00,,,,,,\n2015,5,8,\"WN\",\"3935\",\"MCO\",\"ROC\",-1.00,-4.00,0.00,\"\",0.00,152.00,134.00,1033.00,,,,,,\n2015,5,8,\"WN\",\"103\",\"MDW\",\"ALB\",115.00,104.00,0.00,\"\",0.00,104.00,89.00,717.00,0.00,0.00,0.00,0.00,104.00,\n2015,5,8,\"WN\",\"1461\",\"MDW\",\"ALB\",5.00,-13.00,0.00,\"\",0.00,97.00,88.00,717.00,,,,,,\n2015,5,8,\"WN\",\"134\",\"MDW\",\"BUF\",1.00,-12.00,0.00,\"\",0.00,77.00,65.00,468.00,,,,,,\n2015,5,8,\"WN\",\"615\",\"MDW\",\"BUF\",-2.00,-10.00,0.00,\"\",0.00,82.00,66.00,468.00,,,,,,\n2015,5,8,\"WN\",\"2241\",\"MDW\",\"BUF\",90.00,74.00,0.00,\"\",0.00,84.00,64.00,468.00,0.00,18.00,0.00,0.00,56.00,\n2015,5,8,\"WN\",\"178\",\"MDW\",\"LGA\",14.00,26.00,0.00,\"\",0.00,142.00,105.00,725.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,8,\"WN\",\"682\",\"MDW\",\"LGA\",2.00,-4.00,0.00,\"\",0.00,119.00,97.00,725.00,,,,,,\n2015,5,8,\"WN\",\"803\",\"MDW\",\"LGA\",-5.00,-5.00,0.00,\"\",0.00,130.00,100.00,725.00,,,,,,\n2015,5,8,\"WN\",\"1713\",\"MDW\",\"LGA\",7.00,25.00,0.00,\"\",0.00,143.00,125.00,725.00,7.00,0.00,18.00,0.00,0.00,\n2015,5,8,\"WN\",\"1945\",\"MDW\",\"LGA\",72.00,72.00,0.00,\"\",0.00,130.00,101.00,725.00,0.00,32.00,0.00,0.00,40.00,\n2015,5,8,\"WN\",\"2778\",\"MDW\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,117.00,99.00,725.00,,,,,,\n2015,5,8,\"WN\",\"4365\",\"MDW\",\"LGA\",,,1.00,\"A\",0.00,,,725.00,,,,,,\n2015,5,8,\"WN\",\"292\",\"MDW\",\"ROC\",101.00,103.00,0.00,\"\",0.00,92.00,70.00,523.00,0.00,0.00,2.00,0.00,101.00,\n2015,5,8,\"WN\",\"2229\",\"MDW\",\"ROC\",-3.00,-5.00,0.00,\"\",0.00,93.00,70.00,523.00,,,,,,\n2015,5,8,\"WN\",\"202\",\"MKE\",\"LGA\",-7.00,41.00,0.00,\"\",0.00,183.00,104.00,738.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,8,\"WN\",\"1208\",\"MKE\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,122.00,104.00,738.00,,,,,,\n2015,5,8,\"WN\",\"3391\",\"MKE\",\"LGA\",-2.00,-3.00,0.00,\"\",0.00,129.00,106.00,738.00,,,,,,\n2015,5,8,\"WN\",\"255\",\"BNA\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,124.00,106.00,764.00,,,,,,\n2015,5,8,\"WN\",\"2433\",\"BNA\",\"LGA\",4.00,3.00,0.00,\"\",0.00,129.00,116.00,764.00,,,,,,\n2015,5,8,\"WN\",\"2570\",\"BNA\",\"LGA\",15.00,1.00,0.00,\"\",0.00,121.00,108.00,764.00,,,,,,\n2015,5,8,\"WN\",\"381\",\"BUF\",\"BWI\",60.00,51.00,0.00,\"\",0.00,61.00,50.00,281.00,51.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"WN\",\"728\",\"BUF\",\"BWI\",-3.00,-11.00,0.00,\"\",0.00,62.00,50.00,281.00,,,,,,\n2015,5,8,\"WN\",\"842\",\"BUF\",\"BWI\",-7.00,-12.00,0.00,\"\",0.00,70.00,53.00,281.00,,,,,,\n2015,5,8,\"WN\",\"1429\",\"BUF\",\"BWI\",1.00,-17.00,0.00,\"\",0.00,67.00,55.00,281.00,,,,,,\n2015,5,8,\"WN\",\"1528\",\"BUF\",\"BWI\",26.00,20.00,0.00,\"\",0.00,69.00,54.00,281.00,6.00,0.00,0.00,0.00,14.00,\n2015,5,8,\"WN\",\"2423\",\"BUF\",\"BWI\",-8.00,-17.00,0.00,\"\",0.00,66.00,50.00,281.00,,,,,,\n2015,5,8,\"WN\",\"1785\",\"BUF\",\"FLL\",0.00,-15.00,0.00,\"\",0.00,170.00,150.00,1166.00,,,,,,\n2015,5,8,\"WN\",\"361\",\"BUF\",\"LAS\",-4.00,-21.00,0.00,\"\",0.00,283.00,263.00,1986.00,,,,,,\n2015,5,8,\"WN\",\"615\",\"BUF\",\"LAS\",11.00,4.00,0.00,\"\",0.00,283.00,268.00,1986.00,,,,,,\n2015,5,8,\"WN\",\"134\",\"BUF\",\"MCO\",-8.00,-23.00,0.00,\"\",0.00,145.00,128.00,1011.00,,,,,,\n2015,5,8,\"WN\",\"674\",\"BUF\",\"MCO\",0.00,-15.00,0.00,\"\",0.00,145.00,127.00,1011.00,,,,,,\n2015,5,8,\"WN\",\"854\",\"BUF\",\"MCO\",-9.00,-31.00,0.00,\"\",0.00,138.00,123.00,1011.00,,,,,,\n2015,5,8,\"WN\",\"2141\",\"BUF\",\"MCO\",-2.00,-17.00,0.00,\"\",0.00,145.00,131.00,1011.00,,,,,,\n2015,5,8,\"WN\",\"717\",\"BUF\",\"MDW\",-7.00,-22.00,0.00,\"\",0.00,95.00,77.00,468.00,,,,,,\n2015,5,8,\"WN\",\"2023\",\"BUF\",\"MDW\",108.00,101.00,0.00,\"\",0.00,98.00,80.00,468.00,0.00,0.00,101.00,0.00,0.00,\n2015,5,8,\"WN\",\"2632\",\"BUF\",\"MDW\",2.00,-11.00,0.00,\"\",0.00,87.00,71.00,468.00,,,,,,\n2015,5,8,\"WN\",\"328\",\"BUF\",\"PHX\",-4.00,-17.00,0.00,\"\",0.00,277.00,265.00,1912.00,,,,,,\n2015,5,8,\"WN\",\"984\",\"BUF\",\"TPA\",-4.00,-21.00,0.00,\"\",0.00,148.00,135.00,1053.00,,,,,,\n2015,5,8,\"WN\",\"2824\",\"BUF\",\"TPA\",-4.00,-22.00,0.00,\"\",0.00,147.00,131.00,1053.00,,,,,,\n2015,5,8,\"WN\",\"334\",\"BWI\",\"ALB\",-3.00,-8.00,0.00,\"\",0.00,70.00,53.00,289.00,,,,,,\n2015,5,8,\"WN\",\"346\",\"BWI\",\"ALB\",40.00,42.00,0.00,\"\",0.00,67.00,57.00,289.00,40.00,0.00,2.00,0.00,0.00,\n2015,5,8,\"WN\",\"598\",\"BWI\",\"ALB\",3.00,0.00,0.00,\"\",0.00,67.00,54.00,289.00,,,,,,\n2015,5,8,\"WN\",\"1269\",\"BWI\",\"ALB\",30.00,22.00,0.00,\"\",0.00,67.00,51.00,289.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"WN\",\"3033\",\"BWI\",\"ALB\",-2.00,-4.00,0.00,\"\",0.00,68.00,53.00,289.00,,,,,,\n2015,5,8,\"WN\",\"3919\",\"BWI\",\"ALB\",2.00,2.00,0.00,\"\",0.00,70.00,53.00,289.00,,,,,,\n2015,5,8,\"WN\",\"328\",\"BWI\",\"BUF\",0.00,-8.00,0.00,\"\",0.00,57.00,46.00,281.00,,,,,,\n2015,5,8,\"WN\",\"572\",\"BWI\",\"BUF\",2.00,-12.00,0.00,\"\",0.00,56.00,44.00,281.00,,,,,,\n2015,5,8,\"WN\",\"819\",\"BWI\",\"BUF\",-5.00,-5.00,0.00,\"\",0.00,65.00,45.00,281.00,,,,,,\n2015,5,8,\"WN\",\"854\",\"BWI\",\"BUF\",-5.00,-19.00,0.00,\"\",0.00,56.00,45.00,281.00,,,,,,\n2015,5,8,\"WN\",\"1350\",\"BWI\",\"BUF\",22.00,18.00,0.00,\"\",0.00,61.00,44.00,281.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"WN\",\"1900\",\"BWI\",\"BUF\",55.00,39.00,0.00,\"\",0.00,59.00,43.00,281.00,39.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"WN\",\"232\",\"BWI\",\"ISP\",57.00,58.00,0.00,\"\",0.00,66.00,48.00,220.00,25.00,0.00,1.00,0.00,32.00,\n2015,5,8,\"WN\",\"752\",\"BWI\",\"ISP\",-3.00,-2.00,0.00,\"\",0.00,61.00,44.00,220.00,,,,,,\n2015,5,8,\"WN\",\"842\",\"BWI\",\"ISP\",-1.00,-8.00,0.00,\"\",0.00,58.00,44.00,220.00,,,,,,\n2015,5,8,\"WN\",\"2452\",\"BWI\",\"ISP\",-3.00,-14.00,0.00,\"\",0.00,59.00,45.00,220.00,,,,,,\n2015,5,8,\"WN\",\"4017\",\"BWI\",\"ISP\",3.00,6.00,0.00,\"\",0.00,63.00,43.00,220.00,,,,,,\n2015,5,8,\"WN\",\"597\",\"BWI\",\"ROC\",-9.00,-14.00,0.00,\"\",0.00,65.00,47.00,277.00,,,,,,\n2015,5,8,\"WN\",\"3564\",\"BWI\",\"ROC\",14.00,2.00,0.00,\"\",0.00,58.00,42.00,277.00,,,,,,\n2015,5,8,\"WN\",\"914\",\"CAK\",\"LGA\",-5.00,2.00,0.00,\"\",0.00,97.00,78.00,397.00,,,,,,\n2015,5,8,\"WN\",\"4728\",\"CAK\",\"LGA\",12.00,12.00,0.00,\"\",0.00,90.00,63.00,397.00,,,,,,\n2015,5,8,\"WN\",\"691\",\"DAL\",\"LGA\",18.00,,0.00,\"\",1.00,,,1381.00,,,,,,\n2015,5,8,\"WN\",\"1214\",\"DAL\",\"LGA\",59.00,48.00,0.00,\"\",0.00,194.00,181.00,1381.00,11.00,0.00,0.00,0.00,37.00,\n2015,5,8,\"WN\",\"2141\",\"DAL\",\"LGA\",14.00,-2.00,0.00,\"\",0.00,189.00,174.00,1381.00,,,,,,\n2015,5,8,\"WN\",\"2234\",\"DAL\",\"LGA\",1.00,-14.00,0.00,\"\",0.00,190.00,174.00,1381.00,,,,,,\n2015,5,8,\"WN\",\"824\",\"DEN\",\"LGA\",37.00,19.00,0.00,\"\",0.00,217.00,199.00,1620.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,8,\"WN\",\"1370\",\"DEN\",\"LGA\",6.00,1.00,0.00,\"\",0.00,230.00,195.00,1620.00,,,,,,\n2015,5,8,\"WN\",\"12\",\"STL\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,138.00,124.00,888.00,,,,,,\n2015,5,8,\"WN\",\"1194\",\"STL\",\"LGA\",-5.00,14.00,0.00,\"\",0.00,164.00,145.00,888.00,,,,,,\n2015,5,8,\"WN\",\"1986\",\"STL\",\"LGA\",10.00,10.00,0.00,\"\",0.00,140.00,124.00,888.00,,,,,,\n2015,5,8,\"WN\",\"854\",\"TPA\",\"ALB\",15.00,6.00,0.00,\"\",0.00,161.00,149.00,1130.00,,,,,,\n2015,5,8,\"WN\",\"127\",\"TPA\",\"BUF\",-1.00,0.00,0.00,\"\",0.00,156.00,144.00,1053.00,,,,,,\n2015,5,8,\"WN\",\"2160\",\"TPA\",\"BUF\",15.00,10.00,0.00,\"\",0.00,150.00,138.00,1053.00,,,,,,\n2015,5,8,\"WN\",\"2423\",\"TPA\",\"ISP\",-3.00,-5.00,0.00,\"\",0.00,153.00,140.00,1034.00,,,,,,\n2015,5,8,\"WN\",\"4390\",\"TPA\",\"ISP\",2.00,-9.00,0.00,\"\",0.00,154.00,139.00,1034.00,,,,,,\n2015,5,8,\"WN\",\"719\",\"TPA\",\"ROC\",12.00,6.00,0.00,\"\",0.00,154.00,143.00,1079.00,,,,,,\n2015,5,9,\"WN\",\"1689\",\"ALB\",\"BWI\",-3.00,-13.00,0.00,\"\",0.00,65.00,53.00,289.00,,,,,,\n2015,5,9,\"WN\",\"2021\",\"ALB\",\"BWI\",-4.00,-11.00,0.00,\"\",0.00,78.00,56.00,289.00,,,,,,\n2015,5,9,\"WN\",\"2084\",\"ALB\",\"BWI\",-5.00,-19.00,0.00,\"\",0.00,71.00,56.00,289.00,,,,,,\n2015,5,9,\"WN\",\"2497\",\"ALB\",\"BWI\",-3.00,-5.00,0.00,\"\",0.00,78.00,52.00,289.00,,,,,,\n2015,5,9,\"WN\",\"3922\",\"ALB\",\"BWI\",-5.00,-16.00,0.00,\"\",0.00,69.00,53.00,289.00,,,,,,\n2015,5,9,\"WN\",\"1716\",\"ALB\",\"FLL\",-3.00,-31.00,0.00,\"\",0.00,162.00,152.00,1204.00,,,,,,\n2015,5,9,\"WN\",\"1036\",\"ALB\",\"LAS\",1.00,-22.00,0.00,\"\",0.00,307.00,293.00,2237.00,,,,,,\n2015,5,9,\"WN\",\"2664\",\"ALB\",\"MCO\",-3.00,-21.00,0.00,\"\",0.00,157.00,142.00,1073.00,,,,,,\n2015,5,9,\"WN\",\"2833\",\"ALB\",\"MCO\",3.00,-16.00,0.00,\"\",0.00,156.00,138.00,1073.00,,,,,,\n2015,5,9,\"WN\",\"1438\",\"ALB\",\"MDW\",-3.00,-13.00,0.00,\"\",0.00,135.00,109.00,717.00,,,,,,\n2015,5,9,\"WN\",\"3475\",\"ALB\",\"MDW\",22.00,7.00,0.00,\"\",0.00,120.00,109.00,717.00,,,,,,\n2015,5,9,\"WN\",\"987\",\"ALB\",\"TPA\",14.00,-18.00,0.00,\"\",0.00,153.00,143.00,1130.00,,,,,,\n2015,5,9,\"WN\",\"895\",\"ATL\",\"LGA\",24.00,5.00,0.00,\"\",0.00,126.00,110.00,762.00,,,,,,\n2015,5,9,\"WN\",\"1237\",\"ATL\",\"LGA\",9.00,14.00,0.00,\"\",0.00,140.00,114.00,762.00,,,,,,\n2015,5,9,\"WN\",\"1798\",\"ATL\",\"LGA\",9.00,-4.00,0.00,\"\",0.00,132.00,112.00,762.00,,,,,,\n2015,5,9,\"WN\",\"1859\",\"ATL\",\"LGA\",7.00,36.00,0.00,\"\",0.00,169.00,119.00,762.00,7.00,0.00,29.00,0.00,0.00,\n2015,5,9,\"WN\",\"2044\",\"BNA\",\"LGA\",21.00,47.00,0.00,\"\",0.00,156.00,141.00,764.00,13.00,0.00,26.00,0.00,8.00,\n2015,5,8,\"WN\",\"178\",\"LGA\",\"ATL\",33.00,-6.00,0.00,\"\",0.00,121.00,102.00,762.00,,,,,,\n2015,5,8,\"WN\",\"2939\",\"LGA\",\"ATL\",0.00,-8.00,0.00,\"\",0.00,162.00,107.00,762.00,,,,,,\n2015,5,8,\"WN\",\"3133\",\"LGA\",\"ATL\",2.00,-26.00,0.00,\"\",0.00,132.00,104.00,762.00,,,,,,\n2015,5,8,\"WN\",\"3391\",\"LGA\",\"ATL\",11.00,3.00,0.00,\"\",0.00,152.00,99.00,762.00,,,,,,\n2015,5,8,\"WN\",\"4728\",\"LGA\",\"ATL\",8.00,-22.00,0.00,\"\",0.00,145.00,107.00,762.00,,,,,,\n2015,5,8,\"WN\",\"914\",\"LGA\",\"BNA\",7.00,17.00,0.00,\"\",0.00,160.00,103.00,764.00,5.00,0.00,10.00,0.00,2.00,\n2015,5,8,\"WN\",\"1208\",\"LGA\",\"BNA\",-2.00,-20.00,0.00,\"\",0.00,137.00,104.00,764.00,,,,,,\n2015,5,8,\"WN\",\"1370\",\"LGA\",\"BNA\",2.00,-36.00,0.00,\"\",0.00,127.00,104.00,764.00,,,,,,\n2015,5,8,\"WN\",\"202\",\"LGA\",\"CAK\",30.00,17.00,0.00,\"\",0.00,87.00,63.00,397.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,8,\"WN\",\"534\",\"LGA\",\"CAK\",63.00,40.00,0.00,\"\",0.00,77.00,60.00,397.00,0.00,0.00,0.00,0.00,40.00,\n2015,5,8,\"WN\",\"255\",\"LGA\",\"DAL\",-1.00,-24.00,0.00,\"\",0.00,222.00,191.00,1381.00,,,,,,\n2015,5,8,\"WN\",\"431\",\"LGA\",\"DAL\",-4.00,-41.00,0.00,\"\",0.00,203.00,186.00,1381.00,,,,,,\n2015,5,8,\"WN\",\"2347\",\"LGA\",\"DAL\",118.00,102.00,0.00,\"\",0.00,229.00,201.00,1381.00,0.00,0.00,0.00,0.00,102.00,\n2015,5,8,\"WN\",\"3489\",\"LGA\",\"DAL\",-3.00,-14.00,0.00,\"\",0.00,219.00,183.00,1381.00,,,,,,\n2015,5,8,\"WN\",\"12\",\"LGA\",\"DEN\",8.00,-20.00,0.00,\"\",0.00,247.00,224.00,1620.00,,,,,,\n2015,5,8,\"WN\",\"165\",\"LGA\",\"DEN\",13.00,0.00,0.00,\"\",0.00,262.00,227.00,1620.00,,,,,,\n2015,5,8,\"WN\",\"682\",\"LGA\",\"HOU\",4.00,-23.00,0.00,\"\",0.00,213.00,192.00,1428.00,,,,,,\n2015,5,8,\"WN\",\"2778\",\"LGA\",\"HOU\",-1.00,-23.00,0.00,\"\",0.00,228.00,191.00,1428.00,,,,,,\n2015,5,8,\"WN\",\"3845\",\"LGA\",\"HOU\",-3.00,-36.00,0.00,\"\",0.00,207.00,186.00,1428.00,,,,,,\n2015,5,8,\"WN\",\"413\",\"LGA\",\"MCI\",-1.00,-22.00,0.00,\"\",0.00,179.00,152.00,1107.00,,,,,,\n2015,5,8,\"WN\",\"479\",\"LGA\",\"MDW\",35.00,38.00,0.00,\"\",0.00,148.00,104.00,725.00,0.00,35.00,3.00,0.00,0.00,\n2015,5,8,\"WN\",\"777\",\"LGA\",\"MDW\",29.00,12.00,0.00,\"\",0.00,138.00,104.00,725.00,,,,,,\n2015,5,8,\"WN\",\"868\",\"LGA\",\"MDW\",121.00,106.00,0.00,\"\",0.00,145.00,108.00,725.00,0.00,106.00,0.00,0.00,0.00,\n2015,5,8,\"WN\",\"2516\",\"LGA\",\"MDW\",-1.00,6.00,0.00,\"\",0.00,167.00,103.00,725.00,,,,,,\n2015,5,8,\"WN\",\"2529\",\"LGA\",\"MDW\",24.00,23.00,0.00,\"\",0.00,149.00,106.00,725.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,8,\"WN\",\"2659\",\"LGA\",\"MDW\",7.00,-23.00,0.00,\"\",0.00,125.00,105.00,725.00,,,,,,\n2015,5,8,\"WN\",\"4123\",\"LGA\",\"MDW\",-2.00,-2.00,0.00,\"\",0.00,150.00,105.00,725.00,,,,,,\n2015,5,8,\"WN\",\"1344\",\"LGA\",\"MKE\",59.00,43.00,0.00,\"\",0.00,134.00,105.00,738.00,8.00,0.00,0.00,0.00,35.00,\n2015,5,8,\"WN\",\"2433\",\"LGA\",\"MKE\",12.00,-12.00,0.00,\"\",0.00,131.00,105.00,738.00,,,,,,\n2015,5,8,\"WN\",\"4379\",\"LGA\",\"MKE\",-1.00,10.00,0.00,\"\",0.00,156.00,105.00,738.00,,,,,,\n2015,5,8,\"WN\",\"536\",\"LGA\",\"STL\",6.00,-17.00,0.00,\"\",0.00,157.00,124.00,888.00,,,,,,\n2015,5,8,\"WN\",\"2168\",\"LGA\",\"STL\",-7.00,-32.00,0.00,\"\",0.00,135.00,118.00,888.00,,,,,,\n2015,5,8,\"WN\",\"4571\",\"LGA\",\"STL\",4.00,-24.00,0.00,\"\",0.00,142.00,121.00,888.00,,,,,,\n2015,5,8,\"WN\",\"333\",\"MCI\",\"LGA\",-6.00,-15.00,0.00,\"\",0.00,161.00,144.00,1107.00,,,,,,\n2015,5,8,\"WN\",\"1011\",\"MCO\",\"ALB\",-5.00,-5.00,0.00,\"\",0.00,165.00,144.00,1073.00,,,,,,\n2015,5,8,\"WN\",\"2849\",\"MCO\",\"ALB\",-2.00,-5.00,0.00,\"\",0.00,157.00,146.00,1073.00,,,,,,\n2015,5,8,\"WN\",\"728\",\"MCO\",\"BUF\",0.00,-6.00,0.00,\"\",0.00,149.00,134.00,1011.00,,,,,,\n2015,5,8,\"WN\",\"801\",\"MCO\",\"BUF\",25.00,15.00,0.00,\"\",0.00,145.00,135.00,1011.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,8,\"WN\",\"2423\",\"MCO\",\"BUF\",-7.00,-17.00,0.00,\"\",0.00,145.00,131.00,1011.00,,,,,,\n2015,5,8,\"WN\",\"2632\",\"MCO\",\"BUF\",4.00,5.00,0.00,\"\",0.00,156.00,132.00,1011.00,,,,,,\n2015,5,9,\"WN\",\"1851\",\"BWI\",\"ALB\",13.00,2.00,0.00,\"\",0.00,59.00,47.00,289.00,,,,,,\n2015,5,9,\"WN\",\"2114\",\"BWI\",\"ALB\",0.00,-7.00,0.00,\"\",0.00,68.00,50.00,289.00,,,,,,\n2015,5,9,\"WN\",\"2425\",\"BWI\",\"ALB\",3.00,-11.00,0.00,\"\",0.00,61.00,51.00,289.00,,,,,,\n2015,5,9,\"WN\",\"2681\",\"BWI\",\"ALB\",-1.00,-10.00,0.00,\"\",0.00,66.00,51.00,289.00,,,,,,\n2015,5,9,\"WN\",\"3475\",\"BWI\",\"ALB\",27.00,19.00,0.00,\"\",0.00,62.00,49.00,289.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"WN\",\"1149\",\"BWI\",\"BUF\",-5.00,-12.00,0.00,\"\",0.00,58.00,46.00,281.00,,,,,,\n2015,5,9,\"WN\",\"1579\",\"BWI\",\"BUF\",-8.00,-14.00,0.00,\"\",0.00,59.00,46.00,281.00,,,,,,\n2015,5,9,\"WN\",\"1689\",\"BWI\",\"BUF\",4.00,-7.00,0.00,\"\",0.00,59.00,48.00,281.00,,,,,,\n2015,5,9,\"WN\",\"2489\",\"BWI\",\"BUF\",-1.00,11.00,0.00,\"\",0.00,77.00,46.00,281.00,,,,,,\n2015,5,9,\"WN\",\"2878\",\"BWI\",\"BUF\",-4.00,-11.00,0.00,\"\",0.00,63.00,51.00,281.00,,,,,,\n2015,5,9,\"WN\",\"1056\",\"BWI\",\"ISP\",-1.00,-7.00,0.00,\"\",0.00,59.00,43.00,220.00,,,,,,\n2015,5,9,\"WN\",\"1201\",\"BWI\",\"ISP\",10.00,3.00,0.00,\"\",0.00,63.00,44.00,220.00,,,,,,\n2015,5,9,\"WN\",\"2551\",\"BWI\",\"ISP\",-2.00,2.00,0.00,\"\",0.00,64.00,44.00,220.00,,,,,,\n2015,5,9,\"WN\",\"2836\",\"BWI\",\"ISP\",-1.00,1.00,0.00,\"\",0.00,62.00,44.00,220.00,,,,,,\n2015,5,9,\"WN\",\"1062\",\"BWI\",\"ROC\",74.00,60.00,0.00,\"\",0.00,61.00,46.00,277.00,26.00,0.00,0.00,0.00,34.00,\n2015,5,9,\"WN\",\"2815\",\"BWI\",\"ROC\",-1.00,-9.00,0.00,\"\",0.00,62.00,44.00,277.00,,,,,,\n2015,5,9,\"WN\",\"1848\",\"CAK\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,87.00,72.00,397.00,,,,,,\n2015,5,9,\"WN\",\"1602\",\"DAL\",\"LGA\",-5.00,-1.00,0.00,\"\",0.00,209.00,191.00,1381.00,,,,,,\n2015,5,9,\"WN\",\"1942\",\"DAL\",\"LGA\",45.00,51.00,0.00,\"\",0.00,211.00,190.00,1381.00,14.00,0.00,6.00,0.00,31.00,\n2015,5,9,\"WN\",\"2104\",\"DAL\",\"LGA\",1.00,5.00,0.00,\"\",0.00,209.00,197.00,1381.00,,,,,,\n2015,5,9,\"WN\",\"1412\",\"DEN\",\"LGA\",43.00,43.00,0.00,\"\",0.00,235.00,207.00,1620.00,7.00,0.00,0.00,0.00,36.00,\n2015,5,9,\"WN\",\"1498\",\"DEN\",\"LGA\",27.00,34.00,0.00,\"\",0.00,237.00,217.00,1620.00,23.00,0.00,7.00,0.00,4.00,\n2015,5,9,\"WN\",\"4725\",\"FLL\",\"ALB\",-2.00,-14.00,0.00,\"\",0.00,178.00,162.00,1204.00,,,,,,\n2015,5,9,\"WN\",\"2695\",\"FLL\",\"BUF\",-3.00,-17.00,0.00,\"\",0.00,171.00,152.00,1166.00,,,,,,\n2015,5,9,\"WN\",\"1137\",\"FLL\",\"ISP\",27.00,23.00,0.00,\"\",0.00,171.00,149.00,1092.00,0.00,0.00,0.00,0.00,23.00,\n2015,5,9,\"WN\",\"4912\",\"FLL\",\"ISP\",4.00,-13.00,0.00,\"\",0.00,163.00,147.00,1092.00,,,,,,\n2015,5,9,\"WN\",\"2054\",\"HOU\",\"LGA\",0.00,3.00,0.00,\"\",0.00,208.00,190.00,1428.00,,,,,,\n2015,5,9,\"WN\",\"2059\",\"HOU\",\"LGA\",23.00,10.00,0.00,\"\",0.00,197.00,185.00,1428.00,,,,,,\n2015,5,9,\"WN\",\"1297\",\"ISP\",\"BWI\",-2.00,-4.00,0.00,\"\",0.00,73.00,55.00,220.00,,,,,,\n2015,5,9,\"WN\",\"1579\",\"ISP\",\"BWI\",-6.00,6.00,0.00,\"\",0.00,87.00,50.00,220.00,,,,,,\n2015,5,9,\"WN\",\"1929\",\"ISP\",\"BWI\",-6.00,-3.00,0.00,\"\",0.00,78.00,55.00,220.00,,,,,,\n2015,5,9,\"WN\",\"2547\",\"ISP\",\"BWI\",3.00,-11.00,0.00,\"\",0.00,61.00,51.00,220.00,,,,,,\n2015,5,9,\"WN\",\"1198\",\"ISP\",\"FLL\",-6.00,-24.00,0.00,\"\",0.00,162.00,150.00,1092.00,,,,,,\n2015,5,9,\"WN\",\"1768\",\"ISP\",\"FLL\",17.00,-3.00,0.00,\"\",0.00,165.00,150.00,1092.00,,,,,,\n2015,5,9,\"WN\",\"1056\",\"ISP\",\"MCO\",-7.00,-33.00,0.00,\"\",0.00,134.00,120.00,971.00,,,,,,\n2015,5,9,\"WN\",\"1262\",\"ISP\",\"MCO\",-3.00,-18.00,0.00,\"\",0.00,150.00,122.00,971.00,,,,,,\n2015,5,9,\"WN\",\"2551\",\"ISP\",\"MCO\",0.00,-16.00,0.00,\"\",0.00,149.00,131.00,971.00,,,,,,\n2015,5,9,\"WN\",\"2836\",\"ISP\",\"MCO\",-8.00,-28.00,0.00,\"\",0.00,145.00,128.00,971.00,,,,,,\n2015,5,9,\"WN\",\"959\",\"ISP\",\"PBI\",-4.00,-18.00,0.00,\"\",0.00,156.00,139.00,1052.00,,,,,,\n2015,5,9,\"WN\",\"3297\",\"ISP\",\"PBI\",-2.00,-13.00,0.00,\"\",0.00,159.00,144.00,1052.00,,,,,,\n2015,5,9,\"WN\",\"1216\",\"ISP\",\"TPA\",11.00,0.00,0.00,\"\",0.00,164.00,139.00,1034.00,,,,,,\n2015,5,9,\"WN\",\"4463\",\"ISP\",\"TPA\",-4.00,-23.00,0.00,\"\",0.00,151.00,138.00,1034.00,,,,,,\n2015,5,9,\"WN\",\"1795\",\"LAS\",\"ALB\",-2.00,-18.00,0.00,\"\",0.00,269.00,257.00,2237.00,,,,,,\n2015,5,9,\"WN\",\"2528\",\"LAS\",\"BUF\",37.00,44.00,0.00,\"\",0.00,262.00,238.00,1986.00,37.00,0.00,7.00,0.00,0.00,\n2015,5,9,\"WN\",\"4561\",\"LAS\",\"BUF\",-6.00,-19.00,0.00,\"\",0.00,247.00,232.00,1986.00,,,,,,\n2015,5,10,\"WN\",\"232\",\"BWI\",\"ISP\",22.00,14.00,0.00,\"\",0.00,57.00,44.00,220.00,,,,,,\n2015,5,10,\"WN\",\"752\",\"BWI\",\"ISP\",5.00,5.00,0.00,\"\",0.00,60.00,45.00,220.00,,,,,,\n2015,5,10,\"WN\",\"2452\",\"BWI\",\"ISP\",-1.00,-15.00,0.00,\"\",0.00,56.00,44.00,220.00,,,,,,\n2015,5,10,\"WN\",\"3793\",\"BWI\",\"ISP\",-2.00,-6.00,0.00,\"\",0.00,61.00,41.00,220.00,,,,,,\n2015,5,10,\"WN\",\"4017\",\"BWI\",\"ISP\",-3.00,-8.00,0.00,\"\",0.00,55.00,44.00,220.00,,,,,,\n2015,5,10,\"WN\",\"597\",\"BWI\",\"ROC\",-4.00,-5.00,0.00,\"\",0.00,69.00,43.00,277.00,,,,,,\n2015,5,10,\"WN\",\"3564\",\"BWI\",\"ROC\",-5.00,-14.00,0.00,\"\",0.00,61.00,47.00,277.00,,,,,,\n2015,5,10,\"WN\",\"3466\",\"CAK\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,81.00,67.00,397.00,,,,,,\n2015,5,10,\"WN\",\"4728\",\"CAK\",\"LGA\",13.00,34.00,0.00,\"\",0.00,111.00,85.00,397.00,6.00,0.00,21.00,0.00,7.00,\n2015,5,10,\"WN\",\"691\",\"DAL\",\"LGA\",8.00,0.00,0.00,\"\",0.00,197.00,173.00,1381.00,,,,,,\n2015,5,10,\"WN\",\"1214\",\"DAL\",\"LGA\",20.00,20.00,0.00,\"\",0.00,205.00,181.00,1381.00,4.00,0.00,0.00,0.00,16.00,\n2015,5,10,\"WN\",\"2141\",\"DAL\",\"LGA\",9.00,-1.00,0.00,\"\",0.00,195.00,178.00,1381.00,,,,,,\n2015,5,9,\"WN\",\"1426\",\"BUF\",\"BWI\",3.00,-11.00,0.00,\"\",0.00,61.00,49.00,281.00,,,,,,\n2015,5,9,\"WN\",\"1832\",\"BUF\",\"BWI\",-2.00,-4.00,0.00,\"\",0.00,83.00,47.00,281.00,,,,,,\n2015,5,9,\"WN\",\"2660\",\"BUF\",\"BWI\",4.00,-5.00,0.00,\"\",0.00,66.00,52.00,281.00,,,,,,\n2015,5,9,\"WN\",\"2674\",\"BUF\",\"BWI\",-5.00,-20.00,0.00,\"\",0.00,65.00,46.00,281.00,,,,,,\n2015,5,9,\"WN\",\"2755\",\"BUF\",\"BWI\",2.00,-4.00,0.00,\"\",0.00,64.00,51.00,281.00,,,,,,\n2015,5,9,\"WN\",\"2489\",\"BUF\",\"FLL\",14.00,-2.00,0.00,\"\",0.00,164.00,149.00,1166.00,,,,,,\n2015,5,9,\"WN\",\"1334\",\"BUF\",\"LAS\",5.00,-6.00,0.00,\"\",0.00,279.00,262.00,1986.00,,,,,,\n2015,5,9,\"WN\",\"2542\",\"BUF\",\"LAS\",-6.00,-34.00,0.00,\"\",0.00,277.00,258.00,1986.00,,,,,,\n2015,5,9,\"WN\",\"1579\",\"BUF\",\"MCO\",-5.00,-17.00,0.00,\"\",0.00,148.00,123.00,1011.00,,,,,,\n2015,5,9,\"WN\",\"2046\",\"BUF\",\"MCO\",-5.00,-17.00,0.00,\"\",0.00,158.00,125.00,1011.00,,,,,,\n2015,5,9,\"WN\",\"2319\",\"BUF\",\"MCO\",0.00,-8.00,0.00,\"\",0.00,152.00,126.00,1011.00,,,,,,\n2015,5,9,\"WN\",\"2784\",\"BUF\",\"MCO\",-2.00,-3.00,0.00,\"\",0.00,159.00,124.00,1011.00,,,,,,\n2015,5,9,\"WN\",\"1149\",\"BUF\",\"MDW\",-7.00,-18.00,0.00,\"\",0.00,89.00,77.00,468.00,,,,,,\n2015,5,9,\"WN\",\"2318\",\"BUF\",\"MDW\",-1.00,-8.00,0.00,\"\",0.00,103.00,77.00,468.00,,,,,,\n2015,5,9,\"WN\",\"4561\",\"BUF\",\"MDW\",-1.00,-20.00,0.00,\"\",0.00,86.00,72.00,468.00,,,,,,\n2015,5,9,\"WN\",\"1219\",\"BUF\",\"PHX\",-4.00,-24.00,0.00,\"\",0.00,270.00,256.00,1912.00,,,,,,\n2015,5,9,\"WN\",\"3475\",\"BUF\",\"TPA\",-3.00,-24.00,0.00,\"\",0.00,144.00,130.00,1053.00,,,,,,\n2015,5,9,\"WN\",\"4641\",\"BUF\",\"TPA\",-5.00,-22.00,0.00,\"\",0.00,148.00,128.00,1053.00,,,,,,\n2015,5,9,\"WN\",\"1363\",\"LGA\",\"ATL\",-2.00,-16.00,0.00,\"\",0.00,146.00,108.00,762.00,,,,,,\n2015,5,9,\"WN\",\"1665\",\"LGA\",\"ATL\",-5.00,-38.00,0.00,\"\",0.00,137.00,105.00,762.00,,,,,,\n2015,5,9,\"WN\",\"1896\",\"LGA\",\"ATL\",-1.00,-9.00,0.00,\"\",0.00,152.00,102.00,762.00,,,,,,\n2015,5,9,\"WN\",\"3142\",\"LGA\",\"ATL\",53.00,12.00,0.00,\"\",0.00,129.00,109.00,762.00,,,,,,\n2015,5,9,\"WN\",\"1515\",\"LGA\",\"BNA\",12.00,-20.00,0.00,\"\",0.00,118.00,102.00,764.00,,,,,,\n2015,5,9,\"WN\",\"1506\",\"LGA\",\"CAK\",-1.00,1.00,0.00,\"\",0.00,102.00,61.00,397.00,,,,,,\n2015,5,9,\"WN\",\"1184\",\"LGA\",\"DAL\",0.00,-19.00,0.00,\"\",0.00,211.00,193.00,1381.00,,,,,,\n2015,5,9,\"WN\",\"1637\",\"LGA\",\"DAL\",1.00,-20.00,0.00,\"\",0.00,219.00,186.00,1381.00,,,,,,\n2015,5,9,\"WN\",\"2605\",\"LGA\",\"DAL\",43.00,3.00,0.00,\"\",0.00,205.00,184.00,1381.00,,,,,,\n2015,5,9,\"WN\",\"2537\",\"LGA\",\"DEN\",37.00,-8.00,0.00,\"\",0.00,235.00,212.00,1620.00,,,,,,\n2015,5,9,\"WN\",\"2601\",\"LGA\",\"DEN\",13.00,40.00,0.00,\"\",0.00,302.00,253.00,1620.00,13.00,0.00,27.00,0.00,0.00,\n2015,5,9,\"WN\",\"1696\",\"LGA\",\"HOU\",-5.00,-38.00,0.00,\"\",0.00,207.00,193.00,1428.00,,,,,,\n2015,5,9,\"WN\",\"4885\",\"LGA\",\"HOU\",8.00,-21.00,0.00,\"\",0.00,226.00,190.00,1428.00,,,,,,\n2015,5,9,\"WN\",\"1338\",\"LGA\",\"MCI\",0.00,-26.00,0.00,\"\",0.00,174.00,153.00,1107.00,,,,,,\n2015,5,9,\"WN\",\"779\",\"LGA\",\"MDW\",-1.00,11.00,0.00,\"\",0.00,157.00,104.00,725.00,,,,,,\n2015,5,9,\"WN\",\"1374\",\"LGA\",\"MDW\",40.00,-2.00,0.00,\"\",0.00,123.00,106.00,725.00,,,,,,\n2015,5,9,\"WN\",\"1501\",\"LGA\",\"MDW\",11.00,19.00,0.00,\"\",0.00,158.00,106.00,725.00,0.00,0.00,8.00,0.00,11.00,\n2015,5,9,\"WN\",\"1668\",\"LGA\",\"MDW\",59.00,60.00,0.00,\"\",0.00,146.00,105.00,725.00,0.00,0.00,1.00,0.00,59.00,\n2015,5,9,\"WN\",\"2104\",\"LGA\",\"MDW\",22.00,3.00,0.00,\"\",0.00,141.00,105.00,725.00,,,,,,\n2015,5,9,\"WN\",\"2808\",\"LGA\",\"MDW\",-2.00,-32.00,0.00,\"\",0.00,125.00,107.00,725.00,,,,,,\n2015,5,9,\"WN\",\"2723\",\"LGA\",\"MKE\",81.00,58.00,0.00,\"\",0.00,122.00,106.00,738.00,1.00,0.00,0.00,0.00,57.00,\n2015,5,9,\"WN\",\"1394\",\"LGA\",\"STL\",-3.00,-14.00,0.00,\"\",0.00,149.00,126.00,888.00,,,,,,\n2015,5,9,\"WN\",\"3034\",\"MCI\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,172.00,158.00,1107.00,,,,,,\n2015,5,9,\"WN\",\"1197\",\"MCO\",\"ALB\",-5.00,-12.00,0.00,\"\",0.00,153.00,142.00,1073.00,,,,,,\n2015,5,9,\"WN\",\"1764\",\"MCO\",\"ALB\",-1.00,-2.00,0.00,\"\",0.00,164.00,153.00,1073.00,,,,,,\n2015,5,9,\"WN\",\"1115\",\"MCO\",\"BUF\",-4.00,-6.00,0.00,\"\",0.00,153.00,136.00,1011.00,,,,,,\n2015,5,9,\"WN\",\"1219\",\"MCO\",\"BUF\",-1.00,-8.00,0.00,\"\",0.00,148.00,134.00,1011.00,,,,,,\n2015,5,9,\"WN\",\"1426\",\"MCO\",\"BUF\",7.00,1.00,0.00,\"\",0.00,149.00,132.00,1011.00,,,,,,\n2015,5,9,\"WN\",\"2755\",\"MCO\",\"BUF\",-3.00,-5.00,0.00,\"\",0.00,153.00,134.00,1011.00,,,,,,\n2015,5,9,\"WN\",\"1770\",\"MCO\",\"ISP\",4.00,5.00,0.00,\"\",0.00,151.00,139.00,971.00,,,,,,\n2015,5,9,\"WN\",\"1906\",\"MCO\",\"ISP\",18.00,22.00,0.00,\"\",0.00,154.00,138.00,971.00,18.00,0.00,4.00,0.00,0.00,\n2015,5,9,\"WN\",\"1929\",\"MCO\",\"ISP\",-8.00,-7.00,0.00,\"\",0.00,151.00,136.00,971.00,,,,,,\n2015,5,9,\"WN\",\"3208\",\"MCO\",\"ISP\",-3.00,0.00,0.00,\"\",0.00,153.00,141.00,971.00,,,,,,\n2015,5,9,\"WN\",\"1503\",\"MCO\",\"ROC\",0.00,4.00,0.00,\"\",0.00,159.00,144.00,1033.00,,,,,,\n2015,5,9,\"WN\",\"1705\",\"MCO\",\"ROC\",-3.00,-2.00,0.00,\"\",0.00,156.00,140.00,1033.00,,,,,,\n2015,5,9,\"WN\",\"990\",\"MDW\",\"ALB\",11.00,-3.00,0.00,\"\",0.00,101.00,89.00,717.00,,,,,,\n2015,5,9,\"WN\",\"1689\",\"MDW\",\"ALB\",12.00,-1.00,0.00,\"\",0.00,102.00,89.00,717.00,,,,,,\n2015,5,9,\"WN\",\"1334\",\"MDW\",\"BUF\",15.00,3.00,0.00,\"\",0.00,78.00,63.00,468.00,,,,,,\n2015,5,9,\"WN\",\"2660\",\"MDW\",\"BUF\",6.00,0.00,0.00,\"\",0.00,79.00,66.00,468.00,,,,,,\n2015,5,9,\"WN\",\"4819\",\"MDW\",\"BUF\",27.00,22.00,0.00,\"\",0.00,80.00,65.00,468.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"WN\",\"1373\",\"MDW\",\"LGA\",15.00,13.00,0.00,\"\",0.00,123.00,105.00,725.00,,,,,,\n2015,5,9,\"WN\",\"1479\",\"MDW\",\"LGA\",33.00,31.00,0.00,\"\",0.00,123.00,104.00,725.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"WN\",\"1506\",\"MDW\",\"LGA\",-1.00,-4.00,0.00,\"\",0.00,122.00,103.00,725.00,,,,,,\n2015,5,9,\"WN\",\"1671\",\"MDW\",\"LGA\",2.00,-7.00,0.00,\"\",0.00,111.00,100.00,725.00,,,,,,\n2015,5,9,\"WN\",\"1840\",\"MDW\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,119.00,104.00,725.00,,,,,,\n2015,5,9,\"WN\",\"2538\",\"MDW\",\"LGA\",75.00,70.00,0.00,\"\",0.00,125.00,108.00,725.00,22.00,0.00,0.00,0.00,48.00,\n2015,5,9,\"WN\",\"1093\",\"MDW\",\"ROC\",23.00,14.00,0.00,\"\",0.00,81.00,66.00,523.00,,,,,,\n2015,5,9,\"WN\",\"2601\",\"MKE\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,130.00,112.00,738.00,,,,,,\n2015,5,9,\"WN\",\"353\",\"PBI\",\"ISP\",-6.00,-4.00,0.00,\"\",0.00,162.00,146.00,1052.00,,,,,,\n2015,5,9,\"WN\",\"1559\",\"PBI\",\"ISP\",2.00,5.00,0.00,\"\",0.00,163.00,146.00,1052.00,,,,,,\n2015,5,9,\"WN\",\"2319\",\"PHX\",\"BUF\",10.00,3.00,0.00,\"\",0.00,248.00,225.00,1912.00,,,,,,\n2015,5,10,\"WN\",\"178\",\"LGA\",\"ATL\",-4.00,-22.00,0.00,\"\",0.00,142.00,111.00,762.00,,,,,,\n2015,5,10,\"WN\",\"2939\",\"LGA\",\"ATL\",-2.00,-36.00,0.00,\"\",0.00,136.00,107.00,762.00,,,,,,\n2015,5,10,\"WN\",\"3133\",\"LGA\",\"ATL\",-5.00,-38.00,0.00,\"\",0.00,127.00,104.00,762.00,,,,,,\n2015,5,10,\"WN\",\"3391\",\"LGA\",\"ATL\",8.00,-25.00,0.00,\"\",0.00,127.00,103.00,762.00,,,,,,\n2015,5,10,\"WN\",\"4728\",\"LGA\",\"ATL\",26.00,-25.00,0.00,\"\",0.00,124.00,105.00,762.00,,,,,,\n2015,5,10,\"WN\",\"914\",\"LGA\",\"BNA\",-6.00,-35.00,0.00,\"\",0.00,121.00,102.00,764.00,,,,,,\n2015,5,10,\"WN\",\"1208\",\"LGA\",\"BNA\",393.00,371.00,0.00,\"\",0.00,133.00,104.00,764.00,0.00,0.00,0.00,0.00,371.00,\n2015,5,10,\"WN\",\"1370\",\"LGA\",\"BNA\",-5.00,-34.00,0.00,\"\",0.00,136.00,106.00,764.00,,,,,,\n2015,5,10,\"WN\",\"202\",\"LGA\",\"CAK\",-6.00,-24.00,0.00,\"\",0.00,82.00,57.00,397.00,,,,,,\n2015,5,10,\"WN\",\"534\",\"LGA\",\"CAK\",6.00,-12.00,0.00,\"\",0.00,82.00,62.00,397.00,,,,,,\n2015,5,10,\"WN\",\"255\",\"LGA\",\"DAL\",10.00,-1.00,0.00,\"\",0.00,234.00,210.00,1381.00,,,,,,\n2015,5,10,\"WN\",\"431\",\"LGA\",\"DAL\",26.00,30.00,0.00,\"\",0.00,244.00,209.00,1381.00,20.00,0.00,4.00,0.00,6.00,\n2015,5,10,\"WN\",\"2347\",\"LGA\",\"DAL\",-1.00,-22.00,0.00,\"\",0.00,224.00,195.00,1381.00,,,,,,\n2015,5,10,\"WN\",\"165\",\"LGA\",\"DEN\",34.00,-4.00,0.00,\"\",0.00,237.00,220.00,1620.00,,,,,,\n2015,5,10,\"WN\",\"3741\",\"LGA\",\"DEN\",104.00,79.00,0.00,\"\",0.00,250.00,217.00,1620.00,0.00,0.00,0.00,0.00,79.00,\n2015,5,10,\"WN\",\"682\",\"LGA\",\"HOU\",29.00,30.00,0.00,\"\",0.00,241.00,197.00,1428.00,0.00,0.00,1.00,0.00,29.00,\n2015,5,10,\"WN\",\"2778\",\"LGA\",\"HOU\",113.00,76.00,0.00,\"\",0.00,213.00,194.00,1428.00,17.00,0.00,0.00,0.00,59.00,\n2015,5,10,\"WN\",\"413\",\"LGA\",\"MCI\",186.00,147.00,0.00,\"\",0.00,161.00,149.00,1107.00,147.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"WN\",\"479\",\"LGA\",\"MDW\",8.00,-3.00,0.00,\"\",0.00,134.00,104.00,725.00,,,,,,\n2015,5,10,\"WN\",\"777\",\"LGA\",\"MDW\",-2.00,-34.00,0.00,\"\",0.00,123.00,104.00,725.00,,,,,,\n2015,5,10,\"WN\",\"868\",\"LGA\",\"MDW\",25.00,7.00,0.00,\"\",0.00,142.00,103.00,725.00,,,,,,\n2015,5,10,\"WN\",\"2516\",\"LGA\",\"MDW\",-2.00,-37.00,0.00,\"\",0.00,125.00,109.00,725.00,,,,,,\n2015,5,10,\"WN\",\"2529\",\"LGA\",\"MDW\",-3.00,-18.00,0.00,\"\",0.00,135.00,103.00,725.00,,,,,,\n2015,5,10,\"WN\",\"2659\",\"LGA\",\"MDW\",-8.00,-46.00,0.00,\"\",0.00,117.00,102.00,725.00,,,,,,\n2015,5,10,\"WN\",\"4123\",\"LGA\",\"MDW\",-1.00,-27.00,0.00,\"\",0.00,124.00,104.00,725.00,,,,,,\n2015,5,10,\"WN\",\"1344\",\"LGA\",\"MKE\",31.00,14.00,0.00,\"\",0.00,133.00,109.00,738.00,,,,,,\n2015,5,10,\"WN\",\"2433\",\"LGA\",\"MKE\",-4.00,-26.00,0.00,\"\",0.00,133.00,110.00,738.00,,,,,,\n2015,5,10,\"WN\",\"943\",\"LGA\",\"STL\",-5.00,-13.00,0.00,\"\",0.00,152.00,126.00,888.00,,,,,,\n2015,5,10,\"WN\",\"2643\",\"LGA\",\"STL\",30.00,-13.00,0.00,\"\",0.00,137.00,119.00,888.00,,,,,,\n2015,5,10,\"WN\",\"4571\",\"LGA\",\"STL\",65.00,52.00,0.00,\"\",0.00,157.00,135.00,888.00,40.00,0.00,0.00,0.00,12.00,\n2015,5,10,\"WN\",\"333\",\"MCI\",\"LGA\",10.00,11.00,0.00,\"\",0.00,171.00,155.00,1107.00,,,,,,\n2015,5,10,\"WN\",\"1011\",\"MCO\",\"ALB\",4.00,0.00,0.00,\"\",0.00,161.00,147.00,1073.00,,,,,,\n2015,5,10,\"WN\",\"2849\",\"MCO\",\"ALB\",-7.00,-20.00,0.00,\"\",0.00,147.00,136.00,1073.00,,,,,,\n2015,5,10,\"WN\",\"728\",\"MCO\",\"BUF\",-2.00,-13.00,0.00,\"\",0.00,144.00,134.00,1011.00,,,,,,\n2015,5,10,\"WN\",\"801\",\"MCO\",\"BUF\",-7.00,-15.00,0.00,\"\",0.00,147.00,132.00,1011.00,,,,,,\n2015,5,10,\"WN\",\"2423\",\"MCO\",\"BUF\",-7.00,-15.00,0.00,\"\",0.00,147.00,133.00,1011.00,,,,,,\n2015,5,10,\"WN\",\"2632\",\"MCO\",\"BUF\",-2.00,-16.00,0.00,\"\",0.00,141.00,130.00,1011.00,,,,,,\n2015,5,10,\"WN\",\"293\",\"MCO\",\"ISP\",-1.00,-8.00,0.00,\"\",0.00,148.00,131.00,971.00,,,,,,\n2015,5,10,\"WN\",\"325\",\"MCO\",\"ISP\",8.00,10.00,0.00,\"\",0.00,152.00,137.00,971.00,,,,,,\n2015,5,10,\"WN\",\"426\",\"MCO\",\"ISP\",9.00,11.00,0.00,\"\",0.00,152.00,140.00,971.00,,,,,,\n2015,5,10,\"WN\",\"4486\",\"MCO\",\"ISP\",-3.00,-7.00,0.00,\"\",0.00,146.00,135.00,971.00,,,,,,\n2015,5,10,\"WN\",\"3935\",\"MCO\",\"ROC\",-3.00,-7.00,0.00,\"\",0.00,151.00,136.00,1033.00,,,,,,\n2015,5,10,\"WN\",\"103\",\"MDW\",\"ALB\",-4.00,-15.00,0.00,\"\",0.00,104.00,90.00,717.00,,,,,,\n2015,5,10,\"WN\",\"1461\",\"MDW\",\"ALB\",0.00,-10.00,0.00,\"\",0.00,105.00,91.00,717.00,,,,,,\n2015,5,10,\"WN\",\"134\",\"MDW\",\"BUF\",7.00,-5.00,0.00,\"\",0.00,78.00,67.00,468.00,,,,,,\n2015,5,10,\"WN\",\"615\",\"MDW\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,81.00,66.00,468.00,,,,,,\n2015,5,10,\"WN\",\"2241\",\"MDW\",\"BUF\",-7.00,-18.00,0.00,\"\",0.00,89.00,65.00,468.00,,,,,,\n2015,5,10,\"WN\",\"33\",\"MDW\",\"LGA\",18.00,6.00,0.00,\"\",0.00,118.00,99.00,725.00,,,,,,\n2015,5,10,\"WN\",\"682\",\"MDW\",\"LGA\",10.00,29.00,0.00,\"\",0.00,144.00,99.00,725.00,10.00,0.00,19.00,0.00,0.00,\n2015,5,10,\"WN\",\"803\",\"MDW\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,123.00,100.00,725.00,,,,,,\n2015,5,10,\"WN\",\"1945\",\"MDW\",\"LGA\",21.00,12.00,0.00,\"\",0.00,121.00,102.00,725.00,,,,,,\n2015,5,10,\"WN\",\"2778\",\"MDW\",\"LGA\",92.00,87.00,0.00,\"\",0.00,120.00,102.00,725.00,11.00,0.00,0.00,0.00,76.00,\n2015,5,7,\"UA\",\"1671\",\"IAH\",\"LGA\",2.00,-15.00,0.00,\"\",0.00,204.00,178.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"1686\",\"LGA\",\"DEN\",1.00,-29.00,0.00,\"\",0.00,241.00,222.00,1620.00,,,,,,\n2015,5,7,\"UA\",\"1693\",\"DEN\",\"LGA\",45.00,22.00,0.00,\"\",0.00,212.00,194.00,1620.00,3.00,0.00,0.00,0.00,19.00,\n2015,5,7,\"UA\",\"1714\",\"LGA\",\"ORD\",-4.00,-24.00,0.00,\"\",0.00,134.00,106.00,733.00,,,,,,\n2015,5,7,\"UA\",\"1719\",\"LGA\",\"DEN\",5.00,-1.00,0.00,\"\",0.00,254.00,231.00,1620.00,,,,,,\n2015,5,7,\"UA\",\"1722\",\"IAH\",\"LGA\",-3.00,-29.00,0.00,\"\",0.00,193.00,180.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"1744\",\"LGA\",\"IAH\",-1.00,-27.00,0.00,\"\",0.00,221.00,193.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"1744\",\"ORD\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,134.00,102.00,733.00,,,,,,\n2015,5,7,\"UA\",\"1906\",\"IAH\",\"LGA\",2.00,4.00,0.00,\"\",0.00,211.00,188.00,1416.00,,,,,,\n2015,5,7,\"UA\",\"1906\",\"LGA\",\"DEN\",40.00,24.00,0.00,\"\",0.00,258.00,228.00,1620.00,22.00,0.00,0.00,0.00,2.00,\n2015,5,4,\"UA\",\"305\",\"LGA\",\"ORD\",-6.00,-11.00,0.00,\"\",0.00,154.00,111.00,733.00,,,,,,\n2015,5,4,\"UA\",\"329\",\"IAH\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,205.00,185.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"345\",\"IAH\",\"LGA\",-8.00,-20.00,0.00,\"\",0.00,207.00,191.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"347\",\"DEN\",\"LGA\",-4.00,4.00,0.00,\"\",0.00,239.00,221.00,1620.00,,,,,,\n2015,5,4,\"UA\",\"369\",\"LGA\",\"IAH\",-1.00,-24.00,0.00,\"\",0.00,221.00,190.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"373\",\"LGA\",\"IAH\",-3.00,-31.00,0.00,\"\",0.00,201.00,183.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"415\",\"JFK\",\"SFO\",-7.00,-21.00,0.00,\"\",0.00,373.00,347.00,2586.00,,,,,,\n2015,5,4,\"UA\",\"435\",\"ORD\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,122.00,100.00,733.00,,,,,,\n2015,5,4,\"UA\",\"436\",\"LGA\",\"ORD\",1.00,-9.00,0.00,\"\",0.00,148.00,110.00,733.00,,,,,,\n2015,5,4,\"UA\",\"441\",\"JFK\",\"LAX\",4.00,-14.00,0.00,\"\",0.00,358.00,325.00,2475.00,,,,,,\n2015,5,4,\"UA\",\"442\",\"IAH\",\"LGA\",0.00,-5.00,0.00,\"\",0.00,208.00,187.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"443\",\"JFK\",\"LAX\",-2.00,-45.00,0.00,\"\",0.00,336.00,307.00,2475.00,,,,,,\n2015,5,4,\"UA\",\"445\",\"JFK\",\"LAX\",-2.00,-3.00,0.00,\"\",0.00,370.00,334.00,2475.00,,,,,,\n2015,5,4,\"UA\",\"456\",\"IAH\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,205.00,186.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"461\",\"IAH\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,204.00,184.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"462\",\"LGA\",\"IAH\",-5.00,-23.00,0.00,\"\",0.00,223.00,185.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"462\",\"ORD\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,133.00,109.00,733.00,,,,,,\n2015,5,4,\"UA\",\"463\",\"LGA\",\"ORD\",-7.00,-8.00,0.00,\"\",0.00,148.00,112.00,733.00,,,,,,\n2015,5,4,\"UA\",\"502\",\"SFO\",\"JFK\",24.00,-2.00,0.00,\"\",0.00,314.00,296.00,2586.00,,,,,,\n2015,5,4,\"UA\",\"509\",\"ORD\",\"LGA\",7.00,2.00,0.00,\"\",0.00,126.00,97.00,733.00,,,,,,\n2015,5,4,\"UA\",\"510\",\"JFK\",\"SFO\",-4.00,-40.00,0.00,\"\",0.00,369.00,338.00,2586.00,,,,,,\n2015,5,4,\"UA\",\"512\",\"JFK\",\"SFO\",13.00,15.00,0.00,\"\",0.00,407.00,379.00,2586.00,13.00,0.00,2.00,0.00,0.00,\n2015,5,4,\"UA\",\"514\",\"JFK\",\"SFO\",-3.00,45.00,0.00,\"\",0.00,444.00,362.00,2586.00,0.00,0.00,45.00,0.00,0.00,\n2015,5,4,\"UA\",\"533\",\"ORD\",\"LGA\",-6.00,-9.00,0.00,\"\",0.00,133.00,104.00,733.00,,,,,,\n2015,5,4,\"UA\",\"535\",\"JFK\",\"LAX\",-2.00,-6.00,0.00,\"\",0.00,374.00,341.00,2475.00,,,,,,\n2015,5,4,\"UA\",\"541\",\"JFK\",\"SFO\",-1.00,-17.00,0.00,\"\",0.00,369.00,329.00,2586.00,,,,,,\n2015,5,4,\"UA\",\"622\",\"LGA\",\"ORD\",-4.00,-37.00,0.00,\"\",0.00,126.00,111.00,733.00,,,,,,\n2015,5,4,\"UA\",\"637\",\"SFO\",\"JFK\",-3.00,-16.00,0.00,\"\",0.00,335.00,311.00,2586.00,,,,,,\n2015,5,4,\"UA\",\"672\",\"ORD\",\"LGA\",3.00,-8.00,0.00,\"\",0.00,120.00,98.00,733.00,,,,,,\n2015,5,4,\"UA\",\"681\",\"LGA\",\"ORD\",-11.00,-46.00,0.00,\"\",0.00,124.00,109.00,733.00,,,,,,\n2015,5,4,\"UA\",\"682\",\"ORD\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,129.00,102.00,733.00,,,,,,\n2015,5,4,\"UA\",\"686\",\"ORD\",\"LGA\",-2.00,-8.00,0.00,\"\",0.00,125.00,102.00,733.00,,,,,,\n2015,5,4,\"UA\",\"687\",\"LGA\",\"ORD\",-6.00,-32.00,0.00,\"\",0.00,126.00,110.00,733.00,,,,,,\n2015,5,4,\"UA\",\"689\",\"LGA\",\"ORD\",2.00,-21.00,0.00,\"\",0.00,146.00,119.00,733.00,,,,,,\n2015,5,4,\"UA\",\"690\",\"ORD\",\"LGA\",-1.00,-9.00,0.00,\"\",0.00,128.00,103.00,733.00,,,,,,\n2015,5,4,\"UA\",\"692\",\"ORD\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,122.00,99.00,733.00,,,,,,\n2015,5,4,\"UA\",\"694\",\"ORD\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,125.00,105.00,733.00,,,,,,\n2015,5,4,\"UA\",\"695\",\"LGA\",\"ORD\",-4.00,-30.00,0.00,\"\",0.00,139.00,117.00,733.00,,,,,,\n2015,5,4,\"UA\",\"699\",\"LGA\",\"ORD\",1.00,-15.00,0.00,\"\",0.00,154.00,110.00,733.00,,,,,,\n2015,5,4,\"UA\",\"703\",\"JFK\",\"LAX\",-9.00,-22.00,0.00,\"\",0.00,350.00,321.00,2475.00,,,,,,\n2015,5,4,\"UA\",\"704\",\"SFO\",\"JFK\",-12.00,-29.00,0.00,\"\",0.00,320.00,293.00,2586.00,,,,,,\n2015,5,4,\"UA\",\"706\",\"LGA\",\"IAH\",-8.00,-46.00,0.00,\"\",0.00,202.00,181.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"711\",\"LGA\",\"ORD\",-9.00,-14.00,0.00,\"\",0.00,144.00,109.00,733.00,,,,,,\n2015,5,4,\"UA\",\"741\",\"LGA\",\"ORD\",-5.00,-8.00,0.00,\"\",0.00,163.00,121.00,733.00,,,,,,\n2015,5,4,\"UA\",\"745\",\"IAH\",\"LGA\",44.00,25.00,0.00,\"\",0.00,197.00,181.00,1416.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"UA\",\"745\",\"LGA\",\"DEN\",24.00,5.00,0.00,\"\",0.00,260.00,223.00,1620.00,,,,,,\n2015,5,4,\"UA\",\"746\",\"LGA\",\"IAH\",-2.00,-27.00,0.00,\"\",0.00,214.00,184.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"754\",\"ORD\",\"LGA\",8.00,-20.00,0.00,\"\",0.00,108.00,92.00,733.00,,,,,,\n2015,5,4,\"UA\",\"758\",\"SFO\",\"JFK\",-7.00,-21.00,0.00,\"\",0.00,334.00,317.00,2586.00,,,,,,\n2015,5,4,\"UA\",\"760\",\"SFO\",\"JFK\",29.00,26.00,0.00,\"\",0.00,342.00,306.00,2586.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"UA\",\"761\",\"LGA\",\"ORD\",-1.00,-27.00,0.00,\"\",0.00,128.00,106.00,733.00,,,,,,\n2015,5,4,\"UA\",\"765\",\"LGA\",\"ORD\",-1.00,5.00,0.00,\"\",0.00,161.00,113.00,733.00,,,,,,\n2015,5,4,\"UA\",\"766\",\"JFK\",\"SFO\",50.00,28.00,0.00,\"\",0.00,358.00,329.00,2586.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,4,\"UA\",\"779\",\"LAX\",\"JFK\",-5.00,-18.00,0.00,\"\",0.00,322.00,301.00,2475.00,,,,,,\n2015,5,4,\"UA\",\"791\",\"ORD\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,123.00,107.00,733.00,,,,,,\n2015,5,4,\"UA\",\"824\",\"SFO\",\"JFK\",7.00,-2.00,0.00,\"\",0.00,331.00,311.00,2586.00,,,,,,\n2015,5,4,\"UA\",\"841\",\"JFK\",\"LAX\",-5.00,-26.00,0.00,\"\",0.00,353.00,324.00,2475.00,,,,,,\n2015,5,4,\"UA\",\"867\",\"LAX\",\"JFK\",-6.00,-24.00,0.00,\"\",0.00,320.00,299.00,2475.00,,,,,,\n2015,5,4,\"UA\",\"898\",\"SFO\",\"JFK\",4.00,-13.00,0.00,\"\",0.00,331.00,308.00,2586.00,,,,,,\n2015,5,4,\"UA\",\"910\",\"ORD\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,121.00,101.00,733.00,,,,,,\n2015,5,4,\"UA\",\"912\",\"LAX\",\"JFK\",7.00,-8.00,0.00,\"\",0.00,313.00,295.00,2475.00,,,,,,\n2015,5,4,\"UA\",\"980\",\"IAH\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,210.00,187.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"1023\",\"ORD\",\"ALB\",-2.00,-7.00,0.00,\"\",0.00,115.00,91.00,723.00,,,,,,\n2015,5,4,\"UA\",\"1038\",\"LGA\",\"DEN\",0.00,7.00,0.00,\"\",0.00,275.00,243.00,1620.00,,,,,,\n2015,5,4,\"UA\",\"1061\",\"ORD\",\"BUF\",,,1.00,\"A\",0.00,,,473.00,,,,,,\n2015,5,4,\"UA\",\"1067\",\"DEN\",\"LGA\",-5.00,-36.00,0.00,\"\",0.00,204.00,190.00,1620.00,,,,,,\n2015,5,4,\"UA\",\"1123\",\"LGA\",\"DEN\",187.00,188.00,0.00,\"\",0.00,265.00,233.00,1620.00,187.00,0.00,1.00,0.00,0.00,\n2015,5,4,\"UA\",\"1138\",\"DEN\",\"LGA\",7.00,-11.00,0.00,\"\",0.00,220.00,200.00,1620.00,,,,,,\n2015,5,4,\"UA\",\"1143\",\"IAH\",\"LGA\",-4.00,-19.00,0.00,\"\",0.00,203.00,182.00,1416.00,,,,,,\n2015,5,4,\"UA\",\"1143\",\"LGA\",\"ORD\",-1.00,-11.00,0.00,\"\",0.00,155.00,122.00,733.00,,,,,,\n2015,5,4,\"UA\",\"1237\",\"ORD\",\"LGA\",-2.00,-6.00,0.00,\"\",0.00,131.00,101.00,733.00,,,,,,\n2015,5,4,\"UA\",\"1283\",\"ALB\",\"ORD\",-6.00,-9.00,0.00,\"\",0.00,138.00,115.00,723.00,,,,,,\n2015,5,4,\"UA\",\"1408\",\"LGA\",\"DEN\",-2.00,-27.00,0.00,\"\",0.00,236.00,218.00,1620.00,,,,,,\n2015,5,4,\"UA\",\"1469\",\"DEN\",\"LGA\",19.00,19.00,0.00,\"\",0.00,235.00,203.00,1620.00,1.00,0.00,0.00,0.00,18.00,\n2015,5,4,\"UA\",\"1483\",\"DEN\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,223.00,203.00,1620.00,,,,,,\n2015,5,4,\"UA\",\"1496\",\"LGA\",\"ORD\",1.00,0.00,0.00,\"\",0.00,151.00,111.00,733.00,,,,,,\n2015,5,10,\"WN\",\"2454\",\"PHX\",\"BUF\",94.00,84.00,0.00,\"\",0.00,235.00,215.00,1912.00,73.00,0.00,0.00,0.00,11.00,\n2015,5,10,\"WN\",\"2749\",\"ROC\",\"BWI\",-3.00,-19.00,0.00,\"\",0.00,64.00,49.00,277.00,,,,,,\n2015,5,10,\"WN\",\"3874\",\"ROC\",\"BWI\",7.00,2.00,0.00,\"\",0.00,65.00,49.00,277.00,,,,,,\n2015,5,10,\"WN\",\"597\",\"ROC\",\"MCO\",-5.00,-15.00,0.00,\"\",0.00,150.00,134.00,1033.00,,,,,,\n2015,5,10,\"WN\",\"747\",\"ROC\",\"MDW\",0.00,-8.00,0.00,\"\",0.00,102.00,81.00,523.00,,,,,,\n2015,5,10,\"WN\",\"4712\",\"ROC\",\"MDW\",-1.00,4.00,0.00,\"\",0.00,110.00,82.00,523.00,,,,,,\n2015,5,10,\"WN\",\"4655\",\"ROC\",\"TPA\",-15.00,-28.00,0.00,\"\",0.00,152.00,138.00,1079.00,,,,,,\n2015,5,8,\"WN\",\"2851\",\"PBI\",\"ISP\",14.00,18.00,0.00,\"\",0.00,164.00,150.00,1052.00,14.00,0.00,4.00,0.00,0.00,\n2015,5,8,\"WN\",\"4818\",\"PBI\",\"ISP\",-2.00,9.00,0.00,\"\",0.00,171.00,155.00,1052.00,,,,,,\n2015,5,8,\"WN\",\"2454\",\"PHX\",\"BUF\",36.00,13.00,0.00,\"\",0.00,222.00,213.00,1912.00,,,,,,\n2015,5,8,\"WN\",\"719\",\"ROC\",\"BWI\",86.00,80.00,0.00,\"\",0.00,64.00,50.00,277.00,74.00,0.00,0.00,0.00,6.00,\n2015,5,8,\"WN\",\"2749\",\"ROC\",\"BWI\",-9.00,-28.00,0.00,\"\",0.00,61.00,50.00,277.00,,,,,,\n2015,5,8,\"WN\",\"597\",\"ROC\",\"MCO\",-7.00,-24.00,0.00,\"\",0.00,143.00,129.00,1033.00,,,,,,\n2015,5,8,\"WN\",\"747\",\"ROC\",\"MDW\",471.00,453.00,0.00,\"\",0.00,92.00,81.00,523.00,453.00,0.00,0.00,0.00,0.00,\n2015,5,8,\"WN\",\"4712\",\"ROC\",\"MDW\",-2.00,-6.00,0.00,\"\",0.00,101.00,82.00,523.00,,,,,,\n2015,5,8,\"WN\",\"4655\",\"ROC\",\"TPA\",0.00,-9.00,0.00,\"\",0.00,156.00,136.00,1079.00,,,,,,\n2015,5,9,\"WN\",\"2753\",\"ROC\",\"BWI\",16.00,8.00,0.00,\"\",0.00,67.00,51.00,277.00,,,,,,\n2015,5,9,\"WN\",\"3853\",\"ROC\",\"BWI\",13.00,-7.00,0.00,\"\",0.00,60.00,48.00,277.00,,,,,,\n2015,5,9,\"WN\",\"1093\",\"ROC\",\"MCO\",8.00,5.00,0.00,\"\",0.00,157.00,130.00,1033.00,,,,,,\n2015,5,9,\"WN\",\"1735\",\"ROC\",\"MCO\",5.00,-13.00,0.00,\"\",0.00,142.00,125.00,1033.00,,,,,,\n2015,5,9,\"WN\",\"2721\",\"ROC\",\"MDW\",20.00,16.00,0.00,\"\",0.00,101.00,84.00,523.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,9,\"WN\",\"2815\",\"ROC\",\"TPA\",-7.00,-27.00,0.00,\"\",0.00,145.00,131.00,1079.00,,,,,,\n2015,5,9,\"WN\",\"2638\",\"STL\",\"LGA\",27.00,34.00,0.00,\"\",0.00,152.00,138.00,888.00,27.00,0.00,7.00,0.00,0.00,\n2015,5,9,\"WN\",\"1057\",\"TPA\",\"ALB\",-1.00,-3.00,0.00,\"\",0.00,168.00,153.00,1130.00,,,,,,\n2015,5,9,\"WN\",\"3205\",\"TPA\",\"BUF\",12.00,17.00,0.00,\"\",0.00,160.00,138.00,1053.00,0.00,0.00,5.00,0.00,12.00,\n2015,5,9,\"WN\",\"4552\",\"TPA\",\"BUF\",-1.00,-10.00,0.00,\"\",0.00,151.00,136.00,1053.00,,,,,,\n2015,5,9,\"WN\",\"1297\",\"TPA\",\"ISP\",-4.00,-3.00,0.00,\"\",0.00,161.00,146.00,1034.00,,,,,,\n2015,5,9,\"WN\",\"2547\",\"TPA\",\"ISP\",-1.00,-3.00,0.00,\"\",0.00,158.00,144.00,1034.00,,,,,,\n2015,5,9,\"WN\",\"2753\",\"TPA\",\"ROC\",3.00,2.00,0.00,\"\",0.00,159.00,143.00,1079.00,,,,,,\n2015,5,10,\"WN\",\"223\",\"ALB\",\"BWI\",-5.00,-22.00,0.00,\"\",0.00,63.00,52.00,289.00,,,,,,\n2015,5,10,\"WN\",\"752\",\"ALB\",\"BWI\",-3.00,-20.00,0.00,\"\",0.00,63.00,51.00,289.00,,,,,,\n2015,5,10,\"WN\",\"854\",\"ALB\",\"BWI\",-4.00,-15.00,0.00,\"\",0.00,64.00,53.00,289.00,,,,,,\n2015,5,10,\"WN\",\"1011\",\"ALB\",\"BWI\",-2.00,-17.00,0.00,\"\",0.00,65.00,54.00,289.00,,,,,,\n2015,5,10,\"WN\",\"3294\",\"ALB\",\"BWI\",-2.00,-17.00,0.00,\"\",0.00,70.00,56.00,289.00,,,,,,\n2015,5,10,\"WN\",\"3917\",\"ALB\",\"BWI\",-2.00,-18.00,0.00,\"\",0.00,64.00,51.00,289.00,,,,,,\n2015,5,10,\"WN\",\"1987\",\"ALB\",\"FLL\",-4.00,-5.00,0.00,\"\",0.00,189.00,178.00,1204.00,,,,,,\n2015,5,10,\"WN\",\"346\",\"ALB\",\"LAS\",0.00,-18.00,0.00,\"\",0.00,312.00,286.00,2237.00,,,,,,\n2015,5,10,\"WN\",\"3919\",\"ALB\",\"MCO\",-6.00,-7.00,0.00,\"\",0.00,174.00,146.00,1073.00,,,,,,\n2015,5,10,\"WN\",\"4362\",\"ALB\",\"MCO\",-6.00,-22.00,0.00,\"\",0.00,159.00,140.00,1073.00,,,,,,\n2015,5,10,\"WN\",\"1550\",\"ALB\",\"MDW\",-7.00,-19.00,0.00,\"\",0.00,123.00,108.00,717.00,,,,,,\n2015,5,10,\"WN\",\"4985\",\"ALB\",\"MDW\",-3.00,-7.00,0.00,\"\",0.00,131.00,113.00,717.00,,,,,,\n2015,5,10,\"WN\",\"3650\",\"ALB\",\"TPA\",-5.00,-34.00,0.00,\"\",0.00,156.00,145.00,1130.00,,,,,,\n2015,5,10,\"WN\",\"815\",\"ATL\",\"LGA\",0.00,-7.00,0.00,\"\",0.00,133.00,109.00,762.00,,,,,,\n2015,5,10,\"WN\",\"1182\",\"ATL\",\"LGA\",2.00,-4.00,0.00,\"\",0.00,134.00,107.00,762.00,,,,,,\n2015,5,10,\"WN\",\"2516\",\"ATL\",\"LGA\",3.00,-12.00,0.00,\"\",0.00,120.00,104.00,762.00,,,,,,\n2015,5,10,\"WN\",\"2659\",\"ATL\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,138.00,113.00,762.00,,,,,,\n2015,5,10,\"WN\",\"3701\",\"ATL\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,125.00,107.00,762.00,,,,,,\n2015,5,10,\"WN\",\"255\",\"BNA\",\"LGA\",-3.00,-6.00,0.00,\"\",0.00,127.00,109.00,764.00,,,,,,\n2015,5,10,\"WN\",\"2433\",\"BNA\",\"LGA\",1.00,-4.00,0.00,\"\",0.00,125.00,112.00,764.00,,,,,,\n2015,5,10,\"WN\",\"2570\",\"BNA\",\"LGA\",22.00,15.00,0.00,\"\",0.00,128.00,104.00,764.00,2.00,0.00,0.00,0.00,13.00,\n2015,5,10,\"WN\",\"381\",\"BUF\",\"BWI\",3.00,-3.00,0.00,\"\",0.00,64.00,50.00,281.00,,,,,,\n2015,5,10,\"WN\",\"728\",\"BUF\",\"BWI\",-4.00,-11.00,0.00,\"\",0.00,63.00,49.00,281.00,,,,,,\n2015,5,10,\"WN\",\"1429\",\"BUF\",\"BWI\",-2.00,-20.00,0.00,\"\",0.00,67.00,51.00,281.00,,,,,,\n2015,5,10,\"WN\",\"1528\",\"BUF\",\"BWI\",-1.00,-10.00,0.00,\"\",0.00,66.00,52.00,281.00,,,,,,\n2015,5,10,\"WN\",\"2423\",\"BUF\",\"BWI\",-1.00,-16.00,0.00,\"\",0.00,60.00,49.00,281.00,,,,,,\n2015,5,10,\"WN\",\"1785\",\"BUF\",\"FLL\",-5.00,-25.00,0.00,\"\",0.00,165.00,151.00,1166.00,,,,,,\n2015,5,10,\"WN\",\"361\",\"BUF\",\"LAS\",-1.00,-13.00,0.00,\"\",0.00,288.00,259.00,1986.00,,,,,,\n2015,5,10,\"WN\",\"615\",\"BUF\",\"LAS\",-2.00,-18.00,0.00,\"\",0.00,274.00,260.00,1986.00,,,,,,\n2015,5,10,\"WN\",\"134\",\"BUF\",\"MCO\",-8.00,-17.00,0.00,\"\",0.00,151.00,131.00,1011.00,,,,,,\n2015,5,10,\"WN\",\"674\",\"BUF\",\"MCO\",34.00,21.00,0.00,\"\",0.00,147.00,130.00,1011.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"WN\",\"854\",\"BUF\",\"MCO\",-6.00,-24.00,0.00,\"\",0.00,142.00,129.00,1011.00,,,,,,\n2015,5,10,\"WN\",\"2141\",\"BUF\",\"MCO\",0.00,-17.00,0.00,\"\",0.00,143.00,125.00,1011.00,,,,,,\n2015,5,10,\"WN\",\"717\",\"BUF\",\"MDW\",35.00,18.00,0.00,\"\",0.00,93.00,79.00,468.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,10,\"WN\",\"2023\",\"BUF\",\"MDW\",-1.00,-18.00,0.00,\"\",0.00,88.00,77.00,468.00,,,,,,\n2015,5,10,\"WN\",\"2632\",\"BUF\",\"MDW\",-6.00,-17.00,0.00,\"\",0.00,89.00,75.00,468.00,,,,,,\n2015,5,10,\"WN\",\"328\",\"BUF\",\"PHX\",-1.00,-19.00,0.00,\"\",0.00,272.00,256.00,1912.00,,,,,,\n2015,5,10,\"WN\",\"984\",\"BUF\",\"TPA\",-1.00,-21.00,0.00,\"\",0.00,145.00,134.00,1053.00,,,,,,\n2015,5,10,\"WN\",\"2824\",\"BUF\",\"TPA\",-2.00,-21.00,0.00,\"\",0.00,146.00,133.00,1053.00,,,,,,\n2015,5,10,\"WN\",\"334\",\"BWI\",\"ALB\",-6.00,-19.00,0.00,\"\",0.00,62.00,51.00,289.00,,,,,,\n2015,5,10,\"WN\",\"346\",\"BWI\",\"ALB\",0.00,3.00,0.00,\"\",0.00,68.00,53.00,289.00,,,,,,\n2015,5,10,\"WN\",\"598\",\"BWI\",\"ALB\",31.00,24.00,0.00,\"\",0.00,63.00,49.00,289.00,19.00,0.00,0.00,0.00,5.00,\n2015,5,10,\"WN\",\"1269\",\"BWI\",\"ALB\",11.00,-6.00,0.00,\"\",0.00,58.00,45.00,289.00,,,,,,\n2015,5,10,\"WN\",\"3033\",\"BWI\",\"ALB\",4.00,-2.00,0.00,\"\",0.00,64.00,49.00,289.00,,,,,,\n2015,5,10,\"WN\",\"3919\",\"BWI\",\"ALB\",-3.00,-9.00,0.00,\"\",0.00,64.00,54.00,289.00,,,,,,\n2015,5,10,\"WN\",\"328\",\"BWI\",\"BUF\",9.00,1.00,0.00,\"\",0.00,57.00,45.00,281.00,,,,,,\n2015,5,10,\"WN\",\"572\",\"BWI\",\"BUF\",10.00,6.00,0.00,\"\",0.00,66.00,45.00,281.00,,,,,,\n2015,5,10,\"WN\",\"854\",\"BWI\",\"BUF\",-1.00,-14.00,0.00,\"\",0.00,57.00,46.00,281.00,,,,,,\n2015,5,10,\"WN\",\"1350\",\"BWI\",\"BUF\",-8.00,-17.00,0.00,\"\",0.00,56.00,45.00,281.00,,,,,,\n2015,5,10,\"WN\",\"1900\",\"BWI\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,66.00,44.00,281.00,,,,,,\n2015,5,11,\"WN\",\"1898\",\"FLL\",\"ALB\",-7.00,-1.00,0.00,\"\",0.00,186.00,172.00,1204.00,,,,,,\n2015,5,11,\"WN\",\"4643\",\"FLL\",\"BUF\",-6.00,-17.00,0.00,\"\",0.00,174.00,153.00,1166.00,,,,,,\n2015,5,11,\"WN\",\"28\",\"FLL\",\"ISP\",104.00,97.00,0.00,\"\",0.00,168.00,150.00,1092.00,10.00,0.00,0.00,0.00,87.00,\n2015,5,11,\"WN\",\"4640\",\"FLL\",\"ISP\",-5.00,-15.00,0.00,\"\",0.00,160.00,142.00,1092.00,,,,,,\n2015,5,10,\"WN\",\"824\",\"DEN\",\"LGA\",3.00,-22.00,0.00,\"\",0.00,210.00,195.00,1620.00,,,,,,\n2015,5,10,\"WN\",\"1370\",\"DEN\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,233.00,201.00,1620.00,,,,,,\n2015,5,10,\"WN\",\"1898\",\"FLL\",\"ALB\",-6.00,-4.00,0.00,\"\",0.00,182.00,169.00,1204.00,,,,,,\n2015,5,10,\"WN\",\"4643\",\"FLL\",\"BUF\",-6.00,-26.00,0.00,\"\",0.00,165.00,149.00,1166.00,,,,,,\n2015,5,10,\"WN\",\"3568\",\"FLL\",\"ISP\",82.00,75.00,0.00,\"\",0.00,168.00,147.00,1092.00,0.00,0.00,0.00,0.00,75.00,\n2015,5,10,\"WN\",\"4640\",\"FLL\",\"ISP\",-9.00,-10.00,0.00,\"\",0.00,169.00,151.00,1092.00,,,,,,\n2015,5,10,\"WN\",\"299\",\"HOU\",\"LGA\",-5.00,1.00,0.00,\"\",0.00,216.00,191.00,1428.00,,,,,,\n2015,5,10,\"WN\",\"1163\",\"HOU\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,202.00,183.00,1428.00,,,,,,\n2015,5,10,\"WN\",\"2643\",\"HOU\",\"LGA\",34.00,29.00,0.00,\"\",0.00,200.00,187.00,1428.00,6.00,0.00,0.00,0.00,23.00,\n2015,5,10,\"WN\",\"325\",\"ISP\",\"BWI\",10.00,7.00,0.00,\"\",0.00,67.00,49.00,220.00,,,,,,\n2015,5,10,\"WN\",\"580\",\"ISP\",\"BWI\",0.00,-13.00,0.00,\"\",0.00,62.00,50.00,220.00,,,,,,\n2015,5,10,\"WN\",\"667\",\"ISP\",\"BWI\",-5.00,-5.00,0.00,\"\",0.00,75.00,49.00,220.00,,,,,,\n2015,5,10,\"WN\",\"2940\",\"ISP\",\"BWI\",15.00,8.00,0.00,\"\",0.00,68.00,53.00,220.00,,,,,,\n2015,5,10,\"WN\",\"4878\",\"ISP\",\"BWI\",-6.00,-19.00,0.00,\"\",0.00,62.00,51.00,220.00,,,,,,\n2015,5,10,\"WN\",\"752\",\"ISP\",\"FLL\",0.00,15.00,0.00,\"\",0.00,200.00,185.00,1092.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,10,\"WN\",\"4554\",\"ISP\",\"FLL\",-1.00,-19.00,0.00,\"\",0.00,162.00,145.00,1092.00,,,,,,\n2015,5,10,\"WN\",\"663\",\"ISP\",\"MCO\",10.00,11.00,0.00,\"\",0.00,161.00,143.00,971.00,,,,,,\n2015,5,10,\"WN\",\"4017\",\"ISP\",\"MCO\",-10.00,-19.00,0.00,\"\",0.00,156.00,141.00,971.00,,,,,,\n2015,5,10,\"WN\",\"4575\",\"ISP\",\"MCO\",-10.00,-15.00,0.00,\"\",0.00,160.00,141.00,971.00,,,,,,\n2015,5,10,\"WN\",\"4910\",\"ISP\",\"MCO\",1.00,-26.00,0.00,\"\",0.00,143.00,128.00,971.00,,,,,,\n2015,5,10,\"WN\",\"4479\",\"ISP\",\"PBI\",0.00,11.00,0.00,\"\",0.00,181.00,167.00,1052.00,,,,,,\n2015,5,10,\"WN\",\"4729\",\"ISP\",\"PBI\",-8.00,1.00,0.00,\"\",0.00,179.00,165.00,1052.00,,,,,,\n2015,5,10,\"WN\",\"208\",\"ISP\",\"TPA\",-5.00,-15.00,0.00,\"\",0.00,160.00,142.00,1034.00,,,,,,\n2015,5,10,\"WN\",\"4907\",\"ISP\",\"TPA\",-4.00,-1.00,0.00,\"\",0.00,183.00,168.00,1034.00,,,,,,\n2015,5,10,\"WN\",\"2202\",\"LAS\",\"ALB\",61.00,46.00,0.00,\"\",0.00,270.00,258.00,2237.00,46.00,0.00,0.00,0.00,0.00,\n2015,5,10,\"WN\",\"2023\",\"LAS\",\"BUF\",-5.00,-16.00,0.00,\"\",0.00,254.00,237.00,1986.00,,,,,,\n2015,5,10,\"WN\",\"2528\",\"LAS\",\"BUF\",-4.00,-14.00,0.00,\"\",0.00,245.00,230.00,1986.00,,,,,,\n2015,5,11,\"WN\",\"815\",\"ATL\",\"LGA\",42.00,83.00,0.00,\"\",0.00,181.00,130.00,762.00,0.00,0.00,83.00,0.00,0.00,\n2015,5,11,\"WN\",\"1182\",\"ATL\",\"LGA\",123.00,140.00,0.00,\"\",0.00,157.00,113.00,762.00,0.00,0.00,109.00,0.00,31.00,\n2015,5,11,\"WN\",\"2516\",\"ATL\",\"LGA\",4.00,7.00,0.00,\"\",0.00,138.00,110.00,762.00,,,,,,\n2015,5,11,\"WN\",\"2659\",\"ATL\",\"LGA\",-3.00,-26.00,0.00,\"\",0.00,122.00,106.00,762.00,,,,,,\n2015,5,11,\"WN\",\"2850\",\"ATL\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,124.00,106.00,762.00,,,,,,\n2015,5,11,\"WN\",\"255\",\"BNA\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,118.00,106.00,764.00,,,,,,\n2015,5,11,\"WN\",\"2433\",\"BNA\",\"LGA\",18.00,,0.00,\"\",1.00,,,764.00,,,,,,\n2015,5,11,\"WN\",\"2570\",\"BNA\",\"LGA\",-2.00,30.00,0.00,\"\",0.00,167.00,106.00,764.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,11,\"WN\",\"381\",\"BUF\",\"BWI\",-5.00,-6.00,0.00,\"\",0.00,69.00,54.00,281.00,,,,,,\n2015,5,11,\"WN\",\"728\",\"BUF\",\"BWI\",12.00,13.00,0.00,\"\",0.00,71.00,50.00,281.00,,,,,,\n2015,5,11,\"WN\",\"842\",\"BUF\",\"BWI\",-4.00,5.00,0.00,\"\",0.00,84.00,70.00,281.00,,,,,,\n2015,5,11,\"WN\",\"1429\",\"BUF\",\"BWI\",-2.00,-22.00,0.00,\"\",0.00,65.00,50.00,281.00,,,,,,\n2015,5,11,\"WN\",\"1528\",\"BUF\",\"BWI\",1.00,-9.00,0.00,\"\",0.00,65.00,48.00,281.00,,,,,,\n2015,5,11,\"WN\",\"2423\",\"BUF\",\"BWI\",-3.00,-10.00,0.00,\"\",0.00,68.00,52.00,281.00,,,,,,\n2015,5,11,\"WN\",\"1785\",\"BUF\",\"FLL\",-3.00,-7.00,0.00,\"\",0.00,181.00,152.00,1166.00,,,,,,\n2015,5,11,\"WN\",\"361\",\"BUF\",\"LAS\",-1.00,-23.00,0.00,\"\",0.00,278.00,264.00,1986.00,,,,,,\n2015,5,11,\"WN\",\"615\",\"BUF\",\"LAS\",13.00,20.00,0.00,\"\",0.00,297.00,281.00,1986.00,0.00,0.00,7.00,0.00,13.00,\n2015,5,11,\"WN\",\"134\",\"BUF\",\"MCO\",-7.00,-25.00,0.00,\"\",0.00,142.00,129.00,1011.00,,,,,,\n2015,5,11,\"WN\",\"674\",\"BUF\",\"MCO\",-2.00,-13.00,0.00,\"\",0.00,149.00,131.00,1011.00,,,,,,\n2015,5,11,\"WN\",\"854\",\"BUF\",\"MCO\",-5.00,-17.00,0.00,\"\",0.00,148.00,129.00,1011.00,,,,,,\n2015,5,11,\"WN\",\"2141\",\"BUF\",\"MCO\",-6.00,-21.00,0.00,\"\",0.00,145.00,129.00,1011.00,,,,,,\n2015,5,11,\"WN\",\"717\",\"BUF\",\"MDW\",-6.00,-24.00,0.00,\"\",0.00,92.00,74.00,468.00,,,,,,\n2015,5,11,\"WN\",\"2023\",\"BUF\",\"MDW\",-7.00,-12.00,0.00,\"\",0.00,100.00,75.00,468.00,,,,,,\n2015,5,11,\"WN\",\"2632\",\"BUF\",\"MDW\",-4.00,-4.00,0.00,\"\",0.00,100.00,81.00,468.00,,,,,,\n2015,5,11,\"WN\",\"328\",\"BUF\",\"PHX\",-1.00,-12.00,0.00,\"\",0.00,279.00,262.00,1912.00,,,,,,\n2015,5,11,\"WN\",\"984\",\"BUF\",\"TPA\",-4.00,-19.00,0.00,\"\",0.00,150.00,136.00,1053.00,,,,,,\n2015,5,11,\"WN\",\"2824\",\"BUF\",\"TPA\",-3.00,-19.00,0.00,\"\",0.00,149.00,136.00,1053.00,,,,,,\n2015,5,11,\"WN\",\"334\",\"BWI\",\"ALB\",1.00,-8.00,0.00,\"\",0.00,66.00,51.00,289.00,,,,,,\n2015,5,11,\"WN\",\"346\",\"BWI\",\"ALB\",-2.00,-3.00,0.00,\"\",0.00,64.00,50.00,289.00,,,,,,\n2015,5,11,\"WN\",\"598\",\"BWI\",\"ALB\",2.00,-4.00,0.00,\"\",0.00,64.00,52.00,289.00,,,,,,\n2015,5,11,\"WN\",\"1269\",\"BWI\",\"ALB\",1.00,-10.00,0.00,\"\",0.00,64.00,50.00,289.00,,,,,,\n2015,5,11,\"WN\",\"3033\",\"BWI\",\"ALB\",38.00,32.00,0.00,\"\",0.00,64.00,48.00,289.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,11,\"WN\",\"3919\",\"BWI\",\"ALB\",4.00,-1.00,0.00,\"\",0.00,65.00,55.00,289.00,,,,,,\n2015,5,11,\"WN\",\"328\",\"BWI\",\"BUF\",6.00,-1.00,0.00,\"\",0.00,58.00,44.00,281.00,,,,,,\n2015,5,11,\"WN\",\"572\",\"BWI\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,60.00,46.00,281.00,,,,,,\n2015,5,11,\"WN\",\"819\",\"BWI\",\"BUF\",-2.00,-6.00,0.00,\"\",0.00,61.00,48.00,281.00,,,,,,\n2015,5,11,\"WN\",\"854\",\"BWI\",\"BUF\",-1.00,-5.00,0.00,\"\",0.00,66.00,48.00,281.00,,,,,,\n2015,5,11,\"WN\",\"1350\",\"BWI\",\"BUF\",-2.00,-9.00,0.00,\"\",0.00,58.00,45.00,281.00,,,,,,\n2015,5,11,\"WN\",\"1900\",\"BWI\",\"BUF\",34.00,30.00,0.00,\"\",0.00,71.00,55.00,281.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"WN\",\"232\",\"BWI\",\"ISP\",23.00,25.00,0.00,\"\",0.00,67.00,46.00,220.00,23.00,0.00,2.00,0.00,0.00,\n2015,5,11,\"WN\",\"752\",\"BWI\",\"ISP\",-5.00,-6.00,0.00,\"\",0.00,59.00,44.00,220.00,,,,,,\n2015,5,11,\"WN\",\"842\",\"BWI\",\"ISP\",24.00,17.00,0.00,\"\",0.00,58.00,43.00,220.00,13.00,0.00,0.00,0.00,4.00,\n2015,5,11,\"WN\",\"2452\",\"BWI\",\"ISP\",-4.00,-19.00,0.00,\"\",0.00,55.00,44.00,220.00,,,,,,\n2015,5,11,\"WN\",\"4017\",\"BWI\",\"ISP\",15.00,20.00,0.00,\"\",0.00,65.00,46.00,220.00,15.00,0.00,5.00,0.00,0.00,\n2015,5,11,\"WN\",\"597\",\"BWI\",\"ROC\",0.00,-3.00,0.00,\"\",0.00,67.00,46.00,277.00,,,,,,\n2015,5,11,\"WN\",\"3564\",\"BWI\",\"ROC\",0.00,35.00,0.00,\"\",0.00,105.00,87.00,277.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,11,\"WN\",\"914\",\"CAK\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,90.00,66.00,397.00,,,,,,\n2015,5,11,\"WN\",\"4728\",\"CAK\",\"LGA\",-2.00,,0.00,\"\",1.00,,,397.00,,,,,,\n2015,5,11,\"WN\",\"691\",\"DAL\",\"LGA\",12.00,-3.00,0.00,\"\",0.00,190.00,171.00,1381.00,,,,,,\n2015,5,11,\"WN\",\"1214\",\"DAL\",\"LGA\",36.00,50.00,0.00,\"\",0.00,219.00,183.00,1381.00,30.00,0.00,14.00,0.00,6.00,\n2015,5,11,\"WN\",\"2141\",\"DAL\",\"LGA\",105.00,127.00,0.00,\"\",0.00,227.00,201.00,1381.00,0.00,0.00,96.00,0.00,31.00,\n2015,5,11,\"WN\",\"2234\",\"DAL\",\"LGA\",2.00,-3.00,0.00,\"\",0.00,200.00,175.00,1381.00,,,,,,\n2015,5,11,\"WN\",\"824\",\"DEN\",\"LGA\",58.00,35.00,0.00,\"\",0.00,212.00,190.00,1620.00,0.00,35.00,0.00,0.00,0.00,\n2015,5,11,\"WN\",\"1370\",\"DEN\",\"LGA\",-1.00,24.00,0.00,\"\",0.00,260.00,247.00,1620.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,12,\"WN\",\"381\",\"BUF\",\"BWI\",-7.00,-17.00,0.00,\"\",0.00,60.00,50.00,281.00,,,,,,\n2015,5,12,\"WN\",\"728\",\"BUF\",\"BWI\",-7.00,-19.00,0.00,\"\",0.00,58.00,46.00,281.00,,,,,,\n2015,5,12,\"WN\",\"842\",\"BUF\",\"BWI\",-5.00,-13.00,0.00,\"\",0.00,67.00,55.00,281.00,,,,,,\n2015,5,12,\"WN\",\"1429\",\"BUF\",\"BWI\",-5.00,-32.00,0.00,\"\",0.00,58.00,49.00,281.00,,,,,,\n2015,5,12,\"WN\",\"1528\",\"BUF\",\"BWI\",-6.00,-3.00,0.00,\"\",0.00,78.00,50.00,281.00,,,,,,\n2015,5,12,\"WN\",\"2423\",\"BUF\",\"BWI\",-8.00,-14.00,0.00,\"\",0.00,69.00,53.00,281.00,,,,,,\n2015,5,12,\"WN\",\"1785\",\"BUF\",\"FLL\",-4.00,-17.00,0.00,\"\",0.00,172.00,157.00,1166.00,,,,,,\n2015,5,12,\"WN\",\"361\",\"BUF\",\"LAS\",-1.00,8.00,0.00,\"\",0.00,309.00,284.00,1986.00,,,,,,\n2015,5,12,\"WN\",\"615\",\"BUF\",\"LAS\",-6.00,5.00,0.00,\"\",0.00,301.00,286.00,1986.00,,,,,,\n2015,5,12,\"WN\",\"134\",\"BUF\",\"MCO\",-8.00,-25.00,0.00,\"\",0.00,143.00,130.00,1011.00,,,,,,\n2015,5,12,\"WN\",\"674\",\"BUF\",\"MCO\",-5.00,-15.00,0.00,\"\",0.00,150.00,134.00,1011.00,,,,,,\n2015,5,12,\"WN\",\"854\",\"BUF\",\"MCO\",14.00,1.00,0.00,\"\",0.00,147.00,134.00,1011.00,,,,,,\n2015,5,12,\"WN\",\"2141\",\"BUF\",\"MCO\",-4.00,-15.00,0.00,\"\",0.00,149.00,130.00,1011.00,,,,,,\n2015,5,12,\"WN\",\"717\",\"BUF\",\"MDW\",-5.00,-8.00,0.00,\"\",0.00,107.00,83.00,468.00,,,,,,\n2015,5,10,\"WN\",\"1194\",\"STL\",\"LGA\",-6.00,-8.00,0.00,\"\",0.00,143.00,127.00,888.00,,,,,,\n2015,5,10,\"WN\",\"1986\",\"STL\",\"LGA\",15.00,45.00,0.00,\"\",0.00,170.00,138.00,888.00,0.00,0.00,30.00,0.00,15.00,\n2015,5,10,\"WN\",\"3741\",\"STL\",\"LGA\",391.00,412.00,0.00,\"\",0.00,166.00,149.00,888.00,129.00,0.00,21.00,0.00,262.00,\n2015,5,10,\"WN\",\"854\",\"TPA\",\"ALB\",-6.00,-11.00,0.00,\"\",0.00,165.00,152.00,1130.00,,,,,,\n2015,5,10,\"WN\",\"127\",\"TPA\",\"BUF\",-6.00,-11.00,0.00,\"\",0.00,150.00,137.00,1053.00,,,,,,\n2015,5,10,\"WN\",\"2160\",\"TPA\",\"BUF\",3.00,-7.00,0.00,\"\",0.00,145.00,134.00,1053.00,,,,,,\n2015,5,10,\"WN\",\"2423\",\"TPA\",\"ISP\",-5.00,-6.00,0.00,\"\",0.00,154.00,143.00,1034.00,,,,,,\n2015,5,10,\"WN\",\"4390\",\"TPA\",\"ISP\",-6.00,-19.00,0.00,\"\",0.00,152.00,140.00,1034.00,,,,,,\n2015,5,10,\"WN\",\"3874\",\"TPA\",\"ROC\",-1.00,2.00,0.00,\"\",0.00,163.00,142.00,1079.00,,,,,,\n2015,5,11,\"WN\",\"223\",\"ALB\",\"BWI\",25.00,14.00,0.00,\"\",0.00,69.00,51.00,289.00,,,,,,\n2015,5,11,\"WN\",\"752\",\"ALB\",\"BWI\",-2.00,-7.00,0.00,\"\",0.00,75.00,56.00,289.00,,,,,,\n2015,5,11,\"WN\",\"854\",\"ALB\",\"BWI\",3.00,1.00,0.00,\"\",0.00,73.00,53.00,289.00,,,,,,\n2015,5,11,\"WN\",\"1011\",\"ALB\",\"BWI\",0.00,-16.00,0.00,\"\",0.00,64.00,52.00,289.00,,,,,,\n2015,5,11,\"WN\",\"3294\",\"ALB\",\"BWI\",-2.00,4.00,0.00,\"\",0.00,91.00,55.00,289.00,,,,,,\n2015,5,11,\"WN\",\"3917\",\"ALB\",\"BWI\",-2.00,8.00,0.00,\"\",0.00,90.00,72.00,289.00,,,,,,\n2015,5,11,\"WN\",\"1987\",\"ALB\",\"FLL\",-3.00,-21.00,0.00,\"\",0.00,172.00,159.00,1204.00,,,,,,\n2015,5,11,\"WN\",\"346\",\"ALB\",\"LAS\",-1.00,-21.00,0.00,\"\",0.00,310.00,295.00,2237.00,,,,,,\n2015,5,11,\"WN\",\"3919\",\"ALB\",\"MCO\",-2.00,-11.00,0.00,\"\",0.00,166.00,152.00,1073.00,,,,,,\n2015,5,11,\"WN\",\"4362\",\"ALB\",\"MCO\",-5.00,-8.00,0.00,\"\",0.00,172.00,148.00,1073.00,,,,,,\n2015,5,11,\"WN\",\"1550\",\"ALB\",\"MDW\",0.00,4.00,0.00,\"\",0.00,139.00,117.00,717.00,,,,,,\n2015,5,11,\"WN\",\"4985\",\"ALB\",\"MDW\",-1.00,-7.00,0.00,\"\",0.00,129.00,104.00,717.00,,,,,,\n2015,5,11,\"WN\",\"3650\",\"ALB\",\"TPA\",-3.00,-27.00,0.00,\"\",0.00,161.00,151.00,1130.00,,,,,,\n2015,5,11,\"WN\",\"3935\",\"MCO\",\"ROC\",28.00,26.00,0.00,\"\",0.00,153.00,133.00,1033.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,11,\"WN\",\"103\",\"MDW\",\"ALB\",4.00,-1.00,0.00,\"\",0.00,110.00,89.00,717.00,,,,,,\n2015,5,11,\"WN\",\"1461\",\"MDW\",\"ALB\",0.00,-7.00,0.00,\"\",0.00,108.00,93.00,717.00,,,,,,\n2015,5,11,\"WN\",\"134\",\"MDW\",\"BUF\",2.00,-9.00,0.00,\"\",0.00,79.00,65.00,468.00,,,,,,\n2015,5,11,\"WN\",\"615\",\"MDW\",\"BUF\",32.00,23.00,0.00,\"\",0.00,81.00,66.00,468.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"WN\",\"2241\",\"MDW\",\"BUF\",23.00,7.00,0.00,\"\",0.00,84.00,67.00,468.00,,,,,,\n2015,5,11,\"WN\",\"178\",\"MDW\",\"LGA\",1.00,-11.00,0.00,\"\",0.00,118.00,98.00,725.00,,,,,,\n2015,5,11,\"WN\",\"682\",\"MDW\",\"LGA\",1.00,41.00,0.00,\"\",0.00,165.00,138.00,725.00,0.00,0.00,41.00,0.00,0.00,\n2015,5,11,\"WN\",\"803\",\"MDW\",\"LGA\",89.00,71.00,0.00,\"\",0.00,112.00,98.00,725.00,0.00,0.00,46.00,0.00,25.00,\n2015,5,11,\"WN\",\"1713\",\"MDW\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,113.00,99.00,725.00,,,,,,\n2015,5,11,\"WN\",\"1945\",\"MDW\",\"LGA\",99.00,101.00,0.00,\"\",0.00,132.00,106.00,725.00,0.00,0.00,93.00,0.00,8.00,\n2015,5,11,\"WN\",\"2778\",\"MDW\",\"LGA\",1.00,0.00,0.00,\"\",0.00,124.00,103.00,725.00,,,,,,\n2015,5,11,\"WN\",\"4365\",\"MDW\",\"LGA\",15.00,10.00,0.00,\"\",0.00,125.00,106.00,725.00,,,,,,\n2015,5,11,\"WN\",\"292\",\"MDW\",\"ROC\",-3.00,2.00,0.00,\"\",0.00,95.00,72.00,523.00,,,,,,\n2015,5,11,\"WN\",\"2229\",\"MDW\",\"ROC\",1.00,-8.00,0.00,\"\",0.00,86.00,66.00,523.00,,,,,,\n2015,5,11,\"WN\",\"202\",\"MKE\",\"LGA\",-1.00,-12.00,0.00,\"\",0.00,124.00,108.00,738.00,,,,,,\n2015,5,11,\"WN\",\"1208\",\"MKE\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,131.00,109.00,738.00,,,,,,\n2015,5,11,\"WN\",\"3391\",\"MKE\",\"LGA\",105.00,109.00,0.00,\"\",0.00,134.00,110.00,738.00,0.00,0.00,78.00,0.00,31.00,\n2015,5,11,\"WN\",\"2851\",\"PBI\",\"ISP\",107.00,97.00,0.00,\"\",0.00,150.00,138.00,1052.00,79.00,0.00,0.00,0.00,18.00,\n2015,5,11,\"WN\",\"4818\",\"PBI\",\"ISP\",130.00,120.00,0.00,\"\",0.00,150.00,137.00,1052.00,120.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"WN\",\"2454\",\"PHX\",\"BUF\",9.00,2.00,0.00,\"\",0.00,238.00,217.00,1912.00,,,,,,\n2015,5,11,\"WN\",\"719\",\"ROC\",\"BWI\",4.00,-3.00,0.00,\"\",0.00,63.00,48.00,277.00,,,,,,\n2015,5,11,\"WN\",\"2749\",\"ROC\",\"BWI\",-2.00,-19.00,0.00,\"\",0.00,63.00,48.00,277.00,,,,,,\n2015,5,11,\"WN\",\"597\",\"ROC\",\"MCO\",4.00,-5.00,0.00,\"\",0.00,151.00,134.00,1033.00,,,,,,\n2015,5,11,\"WN\",\"747\",\"ROC\",\"MDW\",0.00,13.00,0.00,\"\",0.00,123.00,97.00,523.00,,,,,,\n2015,5,11,\"WN\",\"4712\",\"ROC\",\"MDW\",-4.00,-14.00,0.00,\"\",0.00,95.00,83.00,523.00,,,,,,\n2015,5,11,\"WN\",\"4655\",\"ROC\",\"TPA\",20.00,9.00,0.00,\"\",0.00,154.00,140.00,1079.00,,,,,,\n2015,5,11,\"WN\",\"299\",\"HOU\",\"LGA\",97.00,92.00,0.00,\"\",0.00,205.00,185.00,1428.00,58.00,0.00,0.00,0.00,34.00,\n2015,5,11,\"WN\",\"536\",\"HOU\",\"LGA\",22.00,39.00,0.00,\"\",0.00,222.00,189.00,1428.00,22.00,0.00,17.00,0.00,0.00,\n2015,5,11,\"WN\",\"1163\",\"HOU\",\"LGA\",69.00,93.00,0.00,\"\",0.00,234.00,218.00,1428.00,24.00,0.00,24.00,0.00,45.00,\n2015,5,11,\"WN\",\"325\",\"ISP\",\"BWI\",0.00,-6.00,0.00,\"\",0.00,64.00,52.00,220.00,,,,,,\n2015,5,11,\"WN\",\"580\",\"ISP\",\"BWI\",0.00,-3.00,0.00,\"\",0.00,72.00,54.00,220.00,,,,,,\n2015,5,11,\"WN\",\"667\",\"ISP\",\"BWI\",-5.00,8.00,0.00,\"\",0.00,88.00,49.00,220.00,,,,,,\n2015,5,11,\"WN\",\"2940\",\"ISP\",\"BWI\",93.00,98.00,0.00,\"\",0.00,80.00,54.00,220.00,0.00,0.00,5.00,0.00,93.00,\n2015,5,11,\"WN\",\"3743\",\"ISP\",\"BWI\",24.00,19.00,0.00,\"\",0.00,70.00,54.00,220.00,5.00,0.00,0.00,0.00,14.00,\n2015,5,11,\"WN\",\"752\",\"ISP\",\"FLL\",2.00,-14.00,0.00,\"\",0.00,169.00,154.00,1092.00,,,,,,\n2015,5,11,\"WN\",\"4554\",\"ISP\",\"FLL\",-1.00,-14.00,0.00,\"\",0.00,167.00,147.00,1092.00,,,,,,\n2015,5,11,\"WN\",\"663\",\"ISP\",\"MCO\",2.00,-11.00,0.00,\"\",0.00,147.00,134.00,971.00,,,,,,\n2015,5,11,\"WN\",\"4017\",\"ISP\",\"MCO\",49.00,45.00,0.00,\"\",0.00,161.00,145.00,971.00,27.00,0.00,0.00,0.00,18.00,\n2015,5,11,\"WN\",\"4575\",\"ISP\",\"MCO\",-7.00,-18.00,0.00,\"\",0.00,154.00,134.00,971.00,,,,,,\n2015,5,11,\"WN\",\"4910\",\"ISP\",\"MCO\",-3.00,-31.00,0.00,\"\",0.00,142.00,132.00,971.00,,,,,,\n2015,5,11,\"WN\",\"4479\",\"ISP\",\"PBI\",-2.00,-15.00,0.00,\"\",0.00,157.00,144.00,1052.00,,,,,,\n2015,5,11,\"WN\",\"4729\",\"ISP\",\"PBI\",-4.00,-9.00,0.00,\"\",0.00,165.00,153.00,1052.00,,,,,,\n2015,5,11,\"WN\",\"208\",\"ISP\",\"TPA\",-6.00,-23.00,0.00,\"\",0.00,153.00,141.00,1034.00,,,,,,\n2015,5,11,\"WN\",\"4907\",\"ISP\",\"TPA\",120.00,105.00,0.00,\"\",0.00,165.00,149.00,1034.00,0.00,0.00,0.00,0.00,105.00,\n2015,5,11,\"WN\",\"2202\",\"LAS\",\"ALB\",20.00,3.00,0.00,\"\",0.00,268.00,249.00,2237.00,,,,,,\n2015,5,11,\"WN\",\"2023\",\"LAS\",\"BUF\",-1.00,-24.00,0.00,\"\",0.00,242.00,226.00,1986.00,,,,,,\n2015,5,11,\"WN\",\"2528\",\"LAS\",\"BUF\",-1.00,-14.00,0.00,\"\",0.00,242.00,223.00,1986.00,,,,,,\n2015,5,11,\"WN\",\"178\",\"LGA\",\"ATL\",-7.00,-35.00,0.00,\"\",0.00,132.00,102.00,762.00,,,,,,\n2015,5,11,\"WN\",\"2939\",\"LGA\",\"ATL\",-3.00,-41.00,0.00,\"\",0.00,132.00,105.00,762.00,,,,,,\n2015,5,11,\"WN\",\"3133\",\"LGA\",\"ATL\",-4.00,-32.00,0.00,\"\",0.00,132.00,105.00,762.00,,,,,,\n2015,5,11,\"WN\",\"3391\",\"LGA\",\"ATL\",106.00,78.00,0.00,\"\",0.00,132.00,108.00,762.00,0.00,0.00,0.00,0.00,78.00,\n2015,5,11,\"WN\",\"4728\",\"LGA\",\"ATL\",178.00,140.00,0.00,\"\",0.00,137.00,102.00,762.00,21.00,0.00,0.00,0.00,119.00,\n2015,5,11,\"WN\",\"914\",\"LGA\",\"BNA\",-3.00,-29.00,0.00,\"\",0.00,124.00,105.00,764.00,,,,,,\n2015,5,11,\"WN\",\"1208\",\"LGA\",\"BNA\",8.00,7.00,0.00,\"\",0.00,154.00,118.00,764.00,,,,,,\n2015,5,11,\"WN\",\"1370\",\"LGA\",\"BNA\",16.00,-2.00,0.00,\"\",0.00,147.00,115.00,764.00,,,,,,\n2015,5,11,\"WN\",\"202\",\"LGA\",\"CAK\",-4.00,-18.00,0.00,\"\",0.00,86.00,60.00,397.00,,,,,,\n2015,5,11,\"WN\",\"534\",\"LGA\",\"CAK\",87.00,70.00,0.00,\"\",0.00,83.00,63.00,397.00,0.00,0.00,0.00,0.00,70.00,\n2015,5,11,\"WN\",\"255\",\"LGA\",\"DAL\",4.00,-29.00,0.00,\"\",0.00,212.00,194.00,1381.00,,,,,,\n2015,5,11,\"WN\",\"431\",\"LGA\",\"DAL\",-2.00,-36.00,0.00,\"\",0.00,206.00,187.00,1381.00,,,,,,\n2015,5,11,\"WN\",\"2347\",\"LGA\",\"DAL\",11.00,-27.00,0.00,\"\",0.00,207.00,187.00,1381.00,,,,,,\n2015,5,11,\"WN\",\"3489\",\"LGA\",\"DAL\",14.00,27.00,0.00,\"\",0.00,243.00,227.00,1381.00,14.00,0.00,13.00,0.00,0.00,\n2015,5,11,\"WN\",\"12\",\"LGA\",\"DEN\",69.00,41.00,0.00,\"\",0.00,247.00,224.00,1620.00,7.00,0.00,0.00,0.00,34.00,\n2015,5,11,\"WN\",\"165\",\"LGA\",\"DEN\",-5.00,-30.00,0.00,\"\",0.00,250.00,214.00,1620.00,,,,,,\n2015,5,11,\"WN\",\"682\",\"LGA\",\"HOU\",61.00,38.00,0.00,\"\",0.00,217.00,196.00,1428.00,12.00,0.00,0.00,0.00,26.00,\n2015,5,11,\"WN\",\"2778\",\"LGA\",\"HOU\",14.00,20.00,0.00,\"\",0.00,256.00,189.00,1428.00,14.00,0.00,6.00,0.00,0.00,\n2015,5,11,\"WN\",\"3845\",\"LGA\",\"HOU\",-2.00,-30.00,0.00,\"\",0.00,212.00,190.00,1428.00,,,,,,\n2015,5,11,\"WN\",\"413\",\"LGA\",\"MCI\",145.00,132.00,0.00,\"\",0.00,187.00,165.00,1107.00,4.00,0.00,0.00,0.00,128.00,\n2015,5,11,\"WN\",\"479\",\"LGA\",\"MDW\",84.00,66.00,0.00,\"\",0.00,127.00,109.00,725.00,0.00,0.00,0.00,0.00,66.00,\n2015,5,11,\"WN\",\"777\",\"LGA\",\"MDW\",80.00,77.00,0.00,\"\",0.00,152.00,122.00,725.00,0.00,0.00,0.00,0.00,77.00,\n2015,5,11,\"WN\",\"868\",\"LGA\",\"MDW\",72.00,55.00,0.00,\"\",0.00,143.00,110.00,725.00,1.00,0.00,0.00,0.00,54.00,\n2015,5,11,\"WN\",\"2516\",\"LGA\",\"MDW\",15.00,41.00,0.00,\"\",0.00,186.00,104.00,725.00,8.00,0.00,26.00,0.00,7.00,\n2015,5,11,\"WN\",\"2529\",\"LGA\",\"MDW\",-3.00,-18.00,0.00,\"\",0.00,135.00,101.00,725.00,,,,,,\n2015,5,11,\"WN\",\"2659\",\"LGA\",\"MDW\",-2.00,-25.00,0.00,\"\",0.00,132.00,106.00,725.00,,,,,,\n2015,5,11,\"WN\",\"4123\",\"LGA\",\"MDW\",30.00,18.00,0.00,\"\",0.00,138.00,106.00,725.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,11,\"WN\",\"1344\",\"LGA\",\"MKE\",60.00,56.00,0.00,\"\",0.00,146.00,107.00,738.00,9.00,0.00,0.00,0.00,47.00,\n2015,5,11,\"WN\",\"2433\",\"LGA\",\"MKE\",,,1.00,\"A\",0.00,,,738.00,,,,,,\n2015,5,11,\"WN\",\"4379\",\"LGA\",\"MKE\",-6.00,-27.00,0.00,\"\",0.00,124.00,106.00,738.00,,,,,,\n2015,5,11,\"WN\",\"536\",\"LGA\",\"STL\",45.00,66.00,0.00,\"\",0.00,201.00,131.00,888.00,6.00,0.00,21.00,0.00,39.00,\n2015,5,11,\"WN\",\"2168\",\"LGA\",\"STL\",-6.00,-22.00,0.00,\"\",0.00,144.00,125.00,888.00,,,,,,\n2015,5,11,\"WN\",\"4571\",\"LGA\",\"STL\",23.00,-1.00,0.00,\"\",0.00,146.00,128.00,888.00,,,,,,\n2015,5,11,\"WN\",\"333\",\"MCI\",\"LGA\",98.00,85.00,0.00,\"\",0.00,157.00,140.00,1107.00,0.00,0.00,64.00,0.00,21.00,\n2015,5,11,\"WN\",\"1011\",\"MCO\",\"ALB\",0.00,-3.00,0.00,\"\",0.00,162.00,148.00,1073.00,,,,,,\n2015,5,11,\"WN\",\"2849\",\"MCO\",\"ALB\",20.00,12.00,0.00,\"\",0.00,152.00,142.00,1073.00,,,,,,\n2015,5,11,\"WN\",\"728\",\"MCO\",\"BUF\",40.00,29.00,0.00,\"\",0.00,144.00,135.00,1011.00,5.00,0.00,0.00,0.00,24.00,\n2015,5,11,\"WN\",\"801\",\"MCO\",\"BUF\",21.00,26.00,0.00,\"\",0.00,160.00,134.00,1011.00,0.00,0.00,5.00,0.00,21.00,\n2015,5,11,\"WN\",\"2423\",\"MCO\",\"BUF\",-1.00,-14.00,0.00,\"\",0.00,142.00,131.00,1011.00,,,,,,\n2015,5,11,\"WN\",\"2632\",\"MCO\",\"BUF\",-3.00,-2.00,0.00,\"\",0.00,156.00,130.00,1011.00,,,,,,\n2015,5,11,\"WN\",\"293\",\"MCO\",\"ISP\",1.00,-9.00,0.00,\"\",0.00,145.00,132.00,971.00,,,,,,\n2015,5,11,\"WN\",\"325\",\"MCO\",\"ISP\",2.00,8.00,0.00,\"\",0.00,156.00,139.00,971.00,,,,,,\n2015,5,11,\"WN\",\"426\",\"MCO\",\"ISP\",-6.00,-10.00,0.00,\"\",0.00,146.00,134.00,971.00,,,,,,\n2015,5,11,\"WN\",\"4486\",\"MCO\",\"ISP\",-6.00,-11.00,0.00,\"\",0.00,145.00,131.00,971.00,,,,,,\n2015,5,12,\"WN\",\"325\",\"ISP\",\"BWI\",-8.00,-15.00,0.00,\"\",0.00,63.00,52.00,220.00,,,,,,\n2015,5,12,\"WN\",\"580\",\"ISP\",\"BWI\",-9.00,-21.00,0.00,\"\",0.00,63.00,50.00,220.00,,,,,,\n2015,5,12,\"WN\",\"667\",\"ISP\",\"BWI\",-2.00,-7.00,0.00,\"\",0.00,70.00,51.00,220.00,,,,,,\n2015,5,12,\"WN\",\"2940\",\"ISP\",\"BWI\",26.00,18.00,0.00,\"\",0.00,67.00,55.00,220.00,8.00,0.00,0.00,0.00,10.00,\n2015,5,12,\"WN\",\"3743\",\"ISP\",\"BWI\",-6.00,-15.00,0.00,\"\",0.00,66.00,52.00,220.00,,,,,,\n2015,5,12,\"WN\",\"752\",\"ISP\",\"FLL\",-8.00,-29.00,0.00,\"\",0.00,164.00,153.00,1092.00,,,,,,\n2015,5,12,\"WN\",\"4554\",\"ISP\",\"FLL\",-4.00,-24.00,0.00,\"\",0.00,160.00,151.00,1092.00,,,,,,\n2015,5,12,\"WN\",\"663\",\"ISP\",\"MCO\",-2.00,-8.00,0.00,\"\",0.00,154.00,138.00,971.00,,,,,,\n2015,5,12,\"WN\",\"4017\",\"ISP\",\"MCO\",-4.00,-15.00,0.00,\"\",0.00,154.00,139.00,971.00,,,,,,\n2015,5,12,\"WN\",\"4575\",\"ISP\",\"MCO\",-4.00,-19.00,0.00,\"\",0.00,150.00,137.00,971.00,,,,,,\n2015,5,12,\"WN\",\"4910\",\"ISP\",\"MCO\",-6.00,-36.00,0.00,\"\",0.00,140.00,126.00,971.00,,,,,,\n2015,5,12,\"WN\",\"4479\",\"ISP\",\"PBI\",3.00,-9.00,0.00,\"\",0.00,158.00,145.00,1052.00,,,,,,\n2015,5,12,\"WN\",\"4729\",\"ISP\",\"PBI\",-7.00,-23.00,0.00,\"\",0.00,154.00,141.00,1052.00,,,,,,\n2015,5,12,\"WN\",\"208\",\"ISP\",\"TPA\",-5.00,-13.00,0.00,\"\",0.00,162.00,145.00,1034.00,,,,,,\n2015,5,12,\"WN\",\"4907\",\"ISP\",\"TPA\",-3.00,4.00,0.00,\"\",0.00,187.00,172.00,1034.00,,,,,,\n2015,5,12,\"WN\",\"2202\",\"LAS\",\"ALB\",5.00,-22.00,0.00,\"\",0.00,258.00,238.00,2237.00,,,,,,\n2015,5,12,\"WN\",\"2023\",\"LAS\",\"BUF\",-5.00,-37.00,0.00,\"\",0.00,233.00,217.00,1986.00,,,,,,\n2015,5,12,\"WN\",\"2528\",\"LAS\",\"BUF\",10.00,-15.00,0.00,\"\",0.00,230.00,214.00,1986.00,,,,,,\n2015,5,12,\"WN\",\"178\",\"LGA\",\"ATL\",10.00,-9.00,0.00,\"\",0.00,141.00,111.00,762.00,,,,,,\n2015,5,12,\"WN\",\"2939\",\"LGA\",\"ATL\",-1.00,-37.00,0.00,\"\",0.00,134.00,112.00,762.00,,,,,,\n2015,5,12,\"WN\",\"3133\",\"LGA\",\"ATL\",-2.00,-1.00,0.00,\"\",0.00,161.00,111.00,762.00,,,,,,\n2015,5,12,\"WN\",\"3391\",\"LGA\",\"ATL\",-2.00,-14.00,0.00,\"\",0.00,148.00,115.00,762.00,,,,,,\n2015,5,12,\"WN\",\"4728\",\"LGA\",\"ATL\",-2.00,-36.00,0.00,\"\",0.00,141.00,114.00,762.00,,,,,,\n2015,5,12,\"WN\",\"914\",\"LGA\",\"BNA\",-1.00,-11.00,0.00,\"\",0.00,140.00,120.00,764.00,,,,,,\n2015,5,12,\"WN\",\"1208\",\"LGA\",\"BNA\",-8.00,-24.00,0.00,\"\",0.00,139.00,124.00,764.00,,,,,,\n2015,5,12,\"WN\",\"1370\",\"LGA\",\"BNA\",-2.00,-16.00,0.00,\"\",0.00,151.00,120.00,764.00,,,,,,\n2015,5,12,\"WN\",\"202\",\"LGA\",\"CAK\",-3.00,-22.00,0.00,\"\",0.00,81.00,66.00,397.00,,,,,,\n2015,5,12,\"WN\",\"534\",\"LGA\",\"CAK\",-3.00,-3.00,0.00,\"\",0.00,100.00,73.00,397.00,,,,,,\n2015,5,12,\"WN\",\"255\",\"LGA\",\"DAL\",-2.00,-19.00,0.00,\"\",0.00,228.00,210.00,1381.00,,,,,,\n2015,5,12,\"WN\",\"431\",\"LGA\",\"DAL\",-4.00,-23.00,0.00,\"\",0.00,221.00,196.00,1381.00,,,,,,\n2015,5,12,\"WN\",\"2347\",\"LGA\",\"DAL\",2.00,-33.00,0.00,\"\",0.00,210.00,190.00,1381.00,,,,,,\n2015,5,12,\"WN\",\"3489\",\"LGA\",\"DAL\",-5.00,-8.00,0.00,\"\",0.00,227.00,209.00,1381.00,,,,,,\n2015,5,12,\"WN\",\"12\",\"LGA\",\"DEN\",14.00,3.00,0.00,\"\",0.00,264.00,244.00,1620.00,,,,,,\n2015,5,12,\"WN\",\"165\",\"LGA\",\"DEN\",-4.00,-4.00,0.00,\"\",0.00,275.00,242.00,1620.00,,,,,,\n2015,5,12,\"WN\",\"682\",\"LGA\",\"HOU\",-3.00,5.00,0.00,\"\",0.00,248.00,231.00,1428.00,,,,,,\n2015,5,12,\"WN\",\"2778\",\"LGA\",\"HOU\",-6.00,3.00,0.00,\"\",0.00,259.00,241.00,1428.00,,,,,,\n2015,5,12,\"WN\",\"3845\",\"LGA\",\"HOU\",-4.00,-18.00,0.00,\"\",0.00,226.00,208.00,1428.00,,,,,,\n2015,5,12,\"WN\",\"413\",\"LGA\",\"MCI\",-8.00,-10.00,0.00,\"\",0.00,198.00,181.00,1107.00,,,,,,\n2015,5,12,\"WN\",\"479\",\"LGA\",\"MDW\",-9.00,-15.00,0.00,\"\",0.00,139.00,121.00,725.00,,,,,,\n2015,5,12,\"WN\",\"777\",\"LGA\",\"MDW\",-5.00,-17.00,0.00,\"\",0.00,143.00,122.00,725.00,,,,,,\n2015,5,12,\"WN\",\"868\",\"LGA\",\"MDW\",0.00,-19.00,0.00,\"\",0.00,141.00,122.00,725.00,,,,,,\n2015,5,12,\"WN\",\"2516\",\"LGA\",\"MDW\",1.00,0.00,0.00,\"\",0.00,159.00,125.00,725.00,,,,,,\n2015,5,12,\"WN\",\"2529\",\"LGA\",\"MDW\",-3.00,-23.00,0.00,\"\",0.00,130.00,113.00,725.00,,,,,,\n2015,5,12,\"WN\",\"2659\",\"LGA\",\"MDW\",-3.00,-16.00,0.00,\"\",0.00,142.00,124.00,725.00,,,,,,\n2015,5,12,\"WN\",\"4123\",\"LGA\",\"MDW\",-1.00,-5.00,0.00,\"\",0.00,146.00,114.00,725.00,,,,,,\n2015,5,12,\"WN\",\"1344\",\"LGA\",\"MKE\",-4.00,-12.00,0.00,\"\",0.00,142.00,126.00,738.00,,,,,,\n2015,5,12,\"WN\",\"2433\",\"LGA\",\"MKE\",0.00,-10.00,0.00,\"\",0.00,145.00,120.00,738.00,,,,,,\n2015,5,12,\"WN\",\"4379\",\"LGA\",\"MKE\",-4.00,-19.00,0.00,\"\",0.00,130.00,111.00,738.00,,,,,,\n2015,5,12,\"WN\",\"536\",\"LGA\",\"STL\",14.00,15.00,0.00,\"\",0.00,181.00,144.00,888.00,0.00,0.00,1.00,0.00,14.00,\n2015,5,12,\"WN\",\"2168\",\"LGA\",\"STL\",-2.00,9.00,0.00,\"\",0.00,171.00,141.00,888.00,,,,,,\n2015,5,12,\"WN\",\"4571\",\"LGA\",\"STL\",-3.00,1.00,0.00,\"\",0.00,174.00,147.00,888.00,,,,,,\n2015,5,12,\"WN\",\"333\",\"MCI\",\"LGA\",16.00,-6.00,0.00,\"\",0.00,148.00,132.00,1107.00,,,,,,\n2015,5,12,\"WN\",\"1011\",\"MCO\",\"ALB\",11.00,0.00,0.00,\"\",0.00,154.00,141.00,1073.00,,,,,,\n2015,5,12,\"WN\",\"2849\",\"MCO\",\"ALB\",-7.00,-9.00,0.00,\"\",0.00,158.00,136.00,1073.00,,,,,,\n2015,5,12,\"WN\",\"728\",\"MCO\",\"BUF\",-2.00,-5.00,0.00,\"\",0.00,152.00,139.00,1011.00,,,,,,\n2015,5,12,\"WN\",\"801\",\"MCO\",\"BUF\",-6.00,-18.00,0.00,\"\",0.00,143.00,132.00,1011.00,,,,,,\n2015,5,12,\"WN\",\"2423\",\"MCO\",\"BUF\",-3.00,-15.00,0.00,\"\",0.00,143.00,131.00,1011.00,,,,,,\n2015,5,12,\"WN\",\"2632\",\"MCO\",\"BUF\",-2.00,-18.00,0.00,\"\",0.00,139.00,127.00,1011.00,,,,,,\n2015,5,12,\"WN\",\"293\",\"MCO\",\"ISP\",-4.00,-15.00,0.00,\"\",0.00,144.00,124.00,971.00,,,,,,\n2015,5,12,\"WN\",\"325\",\"MCO\",\"ISP\",-4.00,-6.00,0.00,\"\",0.00,148.00,132.00,971.00,,,,,,\n2015,5,12,\"WN\",\"426\",\"MCO\",\"ISP\",-5.00,0.00,0.00,\"\",0.00,155.00,136.00,971.00,,,,,,\n2015,5,12,\"WN\",\"4486\",\"MCO\",\"ISP\",-5.00,-18.00,0.00,\"\",0.00,137.00,127.00,971.00,,,,,,\n2015,5,12,\"WN\",\"3935\",\"MCO\",\"ROC\",-5.00,-16.00,0.00,\"\",0.00,144.00,132.00,1033.00,,,,,,\n2015,5,12,\"WN\",\"103\",\"MDW\",\"ALB\",5.00,-7.00,0.00,\"\",0.00,103.00,83.00,717.00,,,,,,\n2015,5,12,\"WN\",\"1461\",\"MDW\",\"ALB\",0.00,-17.00,0.00,\"\",0.00,98.00,80.00,717.00,,,,,,\n2015,5,12,\"WN\",\"134\",\"MDW\",\"BUF\",-8.00,-18.00,0.00,\"\",0.00,80.00,59.00,468.00,,,,,,\n2015,5,12,\"WN\",\"615\",\"MDW\",\"BUF\",-5.00,-10.00,0.00,\"\",0.00,85.00,58.00,468.00,,,,,,\n2015,5,12,\"WN\",\"2241\",\"MDW\",\"BUF\",-5.00,-23.00,0.00,\"\",0.00,82.00,65.00,468.00,,,,,,\n2015,5,12,\"WN\",\"178\",\"MDW\",\"LGA\",22.00,1.00,0.00,\"\",0.00,109.00,92.00,725.00,,,,,,\n2015,5,12,\"WN\",\"682\",\"MDW\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,113.00,91.00,725.00,,,,,,\n2015,5,12,\"WN\",\"803\",\"MDW\",\"LGA\",23.00,4.00,0.00,\"\",0.00,111.00,90.00,725.00,,,,,,\n2015,5,12,\"WN\",\"1713\",\"MDW\",\"LGA\",-3.00,-27.00,0.00,\"\",0.00,101.00,90.00,725.00,,,,,,\n2015,5,12,\"WN\",\"1945\",\"MDW\",\"LGA\",23.00,2.00,0.00,\"\",0.00,109.00,89.00,725.00,,,,,,\n2015,5,12,\"WN\",\"2778\",\"MDW\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,105.00,90.00,725.00,,,,,,\n2015,5,12,\"WN\",\"4365\",\"MDW\",\"LGA\",4.00,-26.00,0.00,\"\",0.00,100.00,84.00,725.00,,,,,,\n2015,5,12,\"WN\",\"2851\",\"PBI\",\"ISP\",11.00,14.00,0.00,\"\",0.00,163.00,144.00,1052.00,,,,,,\n2015,5,12,\"WN\",\"4818\",\"PBI\",\"ISP\",-6.00,-14.00,0.00,\"\",0.00,152.00,140.00,1052.00,,,,,,\n2015,5,12,\"WN\",\"2454\",\"PHX\",\"BUF\",53.00,28.00,0.00,\"\",0.00,220.00,205.00,1912.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,12,\"WN\",\"719\",\"ROC\",\"BWI\",34.00,28.00,0.00,\"\",0.00,64.00,51.00,277.00,7.00,0.00,0.00,0.00,21.00,\n2015,5,12,\"WN\",\"2749\",\"ROC\",\"BWI\",-7.00,-20.00,0.00,\"\",0.00,67.00,51.00,277.00,,,,,,\n2015,5,12,\"WN\",\"597\",\"ROC\",\"MCO\",-4.00,-9.00,0.00,\"\",0.00,155.00,135.00,1033.00,,,,,,\n2015,5,12,\"WN\",\"747\",\"ROC\",\"MDW\",1.00,3.00,0.00,\"\",0.00,112.00,96.00,523.00,,,,,,\n2015,5,12,\"WN\",\"4712\",\"ROC\",\"MDW\",27.00,35.00,0.00,\"\",0.00,113.00,93.00,523.00,27.00,0.00,8.00,0.00,0.00,\n2015,5,12,\"WN\",\"4655\",\"ROC\",\"TPA\",-2.00,-10.00,0.00,\"\",0.00,157.00,142.00,1079.00,,,,,,\n2015,5,13,\"WN\",\"178\",\"LGA\",\"ATL\",14.00,9.00,0.00,\"\",0.00,155.00,108.00,762.00,,,,,,\n2015,5,13,\"WN\",\"2939\",\"LGA\",\"ATL\",0.00,-13.00,0.00,\"\",0.00,157.00,110.00,762.00,,,,,,\n2015,5,13,\"WN\",\"3133\",\"LGA\",\"ATL\",-6.00,1.00,0.00,\"\",0.00,167.00,115.00,762.00,,,,,,\n2015,5,13,\"WN\",\"3391\",\"LGA\",\"ATL\",-5.00,-12.00,0.00,\"\",0.00,153.00,100.00,762.00,,,,,,\n2015,5,13,\"WN\",\"4728\",\"LGA\",\"ATL\",-1.00,-36.00,0.00,\"\",0.00,140.00,104.00,762.00,,,,,,\n2015,5,13,\"WN\",\"914\",\"LGA\",\"BNA\",-8.00,1.00,0.00,\"\",0.00,159.00,115.00,764.00,,,,,,\n2015,5,13,\"WN\",\"1208\",\"LGA\",\"BNA\",-4.00,-14.00,0.00,\"\",0.00,145.00,115.00,764.00,,,,,,\n2015,5,13,\"WN\",\"1370\",\"LGA\",\"BNA\",-3.00,5.00,0.00,\"\",0.00,173.00,114.00,764.00,,,,,,\n2015,5,13,\"WN\",\"202\",\"LGA\",\"CAK\",-3.00,10.00,0.00,\"\",0.00,113.00,68.00,397.00,,,,,,\n2015,5,13,\"WN\",\"534\",\"LGA\",\"CAK\",-4.00,5.00,0.00,\"\",0.00,109.00,63.00,397.00,,,,,,\n2015,5,13,\"WN\",\"255\",\"LGA\",\"DAL\",-4.00,-11.00,0.00,\"\",0.00,238.00,195.00,1381.00,,,,,,\n2015,5,13,\"WN\",\"431\",\"LGA\",\"DAL\",-2.00,-7.00,0.00,\"\",0.00,235.00,191.00,1381.00,,,,,,\n2015,5,13,\"WN\",\"2347\",\"LGA\",\"DAL\",31.00,12.00,0.00,\"\",0.00,226.00,188.00,1381.00,,,,,,\n2015,5,13,\"WN\",\"3489\",\"LGA\",\"DAL\",-7.00,-7.00,0.00,\"\",0.00,230.00,203.00,1381.00,,,,,,\n2015,5,13,\"WN\",\"12\",\"LGA\",\"DEN\",30.00,23.00,0.00,\"\",0.00,268.00,226.00,1620.00,23.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"WN\",\"165\",\"LGA\",\"DEN\",-6.00,0.00,0.00,\"\",0.00,281.00,239.00,1620.00,,,,,,\n2015,5,13,\"WN\",\"682\",\"LGA\",\"HOU\",13.00,29.00,0.00,\"\",0.00,256.00,205.00,1428.00,0.00,0.00,25.00,0.00,4.00,\n2015,5,13,\"WN\",\"2778\",\"LGA\",\"HOU\",-3.00,-13.00,0.00,\"\",0.00,240.00,201.00,1428.00,,,,,,\n2015,5,13,\"WN\",\"3845\",\"LGA\",\"HOU\",0.00,10.00,0.00,\"\",0.00,250.00,216.00,1428.00,,,,,,\n2015,5,13,\"WN\",\"413\",\"LGA\",\"MCI\",83.00,87.00,0.00,\"\",0.00,204.00,164.00,1107.00,3.00,0.00,4.00,0.00,80.00,\n2015,5,13,\"WN\",\"479\",\"LGA\",\"MDW\",-5.00,5.00,0.00,\"\",0.00,155.00,113.00,725.00,,,,,,\n2015,5,13,\"WN\",\"777\",\"LGA\",\"MDW\",1.00,-26.00,0.00,\"\",0.00,128.00,112.00,725.00,,,,,,\n2015,5,13,\"WN\",\"868\",\"LGA\",\"MDW\",25.00,10.00,0.00,\"\",0.00,145.00,113.00,725.00,,,,,,\n2015,5,13,\"WN\",\"2516\",\"LGA\",\"MDW\",23.00,12.00,0.00,\"\",0.00,149.00,116.00,725.00,,,,,,\n2015,5,13,\"WN\",\"2529\",\"LGA\",\"MDW\",-3.00,4.00,0.00,\"\",0.00,157.00,112.00,725.00,,,,,,\n2015,5,13,\"WN\",\"2659\",\"LGA\",\"MDW\",-1.00,8.00,0.00,\"\",0.00,164.00,113.00,725.00,,,,,,\n2015,5,13,\"WN\",\"4123\",\"LGA\",\"MDW\",-3.00,-2.00,0.00,\"\",0.00,151.00,120.00,725.00,,,,,,\n2015,5,13,\"WN\",\"1344\",\"LGA\",\"MKE\",-4.00,-7.00,0.00,\"\",0.00,147.00,118.00,738.00,,,,,,\n2015,5,13,\"WN\",\"2433\",\"LGA\",\"MKE\",-8.00,-7.00,0.00,\"\",0.00,156.00,117.00,738.00,,,,,,\n2015,5,13,\"WN\",\"4379\",\"LGA\",\"MKE\",-3.00,-2.00,0.00,\"\",0.00,146.00,113.00,738.00,,,,,,\n2015,5,13,\"WN\",\"536\",\"LGA\",\"STL\",-2.00,-11.00,0.00,\"\",0.00,171.00,137.00,888.00,,,,,,\n2015,5,13,\"WN\",\"2168\",\"LGA\",\"STL\",-4.00,-2.00,0.00,\"\",0.00,162.00,137.00,888.00,,,,,,\n2015,5,13,\"WN\",\"4571\",\"LGA\",\"STL\",0.00,-3.00,0.00,\"\",0.00,167.00,134.00,888.00,,,,,,\n2015,5,13,\"WN\",\"333\",\"MCI\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,152.00,132.00,1107.00,,,,,,\n2015,5,13,\"WN\",\"1011\",\"MCO\",\"ALB\",-4.00,-17.00,0.00,\"\",0.00,152.00,140.00,1073.00,,,,,,\n2015,5,13,\"WN\",\"2849\",\"MCO\",\"ALB\",-8.00,-10.00,0.00,\"\",0.00,158.00,145.00,1073.00,,,,,,\n2015,5,13,\"WN\",\"728\",\"MCO\",\"BUF\",0.00,7.00,0.00,\"\",0.00,162.00,150.00,1011.00,,,,,,\n2015,5,13,\"WN\",\"801\",\"MCO\",\"BUF\",-3.00,1.00,0.00,\"\",0.00,159.00,147.00,1011.00,,,,,,\n2015,5,13,\"WN\",\"2423\",\"MCO\",\"BUF\",-8.00,-7.00,0.00,\"\",0.00,156.00,137.00,1011.00,,,,,,\n2015,5,13,\"WN\",\"2632\",\"MCO\",\"BUF\",-5.00,-11.00,0.00,\"\",0.00,149.00,137.00,1011.00,,,,,,\n2015,5,13,\"WN\",\"293\",\"MCO\",\"ISP\",-7.00,-9.00,0.00,\"\",0.00,153.00,140.00,971.00,,,,,,\n2015,5,13,\"WN\",\"325\",\"MCO\",\"ISP\",12.00,0.00,0.00,\"\",0.00,138.00,128.00,971.00,,,,,,\n2015,5,13,\"WN\",\"426\",\"MCO\",\"ISP\",-5.00,-7.00,0.00,\"\",0.00,148.00,124.00,971.00,,,,,,\n2015,5,13,\"WN\",\"4486\",\"MCO\",\"ISP\",26.00,19.00,0.00,\"\",0.00,143.00,130.00,971.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"WN\",\"3935\",\"MCO\",\"ROC\",-5.00,-13.00,0.00,\"\",0.00,147.00,135.00,1033.00,,,,,,\n2015,5,13,\"WN\",\"103\",\"MDW\",\"ALB\",13.00,3.00,0.00,\"\",0.00,105.00,88.00,717.00,,,,,,\n2015,5,13,\"WN\",\"1461\",\"MDW\",\"ALB\",-9.00,-6.00,0.00,\"\",0.00,118.00,90.00,717.00,,,,,,\n2015,5,13,\"WN\",\"134\",\"MDW\",\"BUF\",0.00,-13.00,0.00,\"\",0.00,77.00,62.00,468.00,,,,,,\n2015,5,13,\"WN\",\"615\",\"MDW\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,82.00,65.00,468.00,,,,,,\n2015,5,13,\"WN\",\"2241\",\"MDW\",\"BUF\",-5.00,-32.00,0.00,\"\",0.00,73.00,60.00,468.00,,,,,,\n2015,5,13,\"WN\",\"178\",\"MDW\",\"LGA\",16.00,10.00,0.00,\"\",0.00,124.00,88.00,725.00,,,,,,\n2015,5,13,\"WN\",\"682\",\"MDW\",\"LGA\",0.00,4.00,0.00,\"\",0.00,129.00,93.00,725.00,,,,,,\n2015,5,13,\"WN\",\"803\",\"MDW\",\"LGA\",35.00,21.00,0.00,\"\",0.00,116.00,92.00,725.00,21.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"WN\",\"1713\",\"MDW\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,107.00,90.00,725.00,,,,,,\n2015,5,13,\"WN\",\"1945\",\"MDW\",\"LGA\",27.00,1.00,0.00,\"\",0.00,104.00,90.00,725.00,,,,,,\n2015,5,13,\"WN\",\"2778\",\"MDW\",\"LGA\",10.00,-13.00,0.00,\"\",0.00,102.00,91.00,725.00,,,,,,\n2015,5,13,\"WN\",\"4365\",\"MDW\",\"LGA\",-1.00,-21.00,0.00,\"\",0.00,110.00,90.00,725.00,,,,,,\n2015,5,13,\"WN\",\"292\",\"MDW\",\"ROC\",-6.00,0.00,0.00,\"\",0.00,96.00,68.00,523.00,,,,,,\n2015,5,13,\"WN\",\"2229\",\"MDW\",\"ROC\",-2.00,-12.00,0.00,\"\",0.00,85.00,67.00,523.00,,,,,,\n2015,5,12,\"WN\",\"292\",\"MDW\",\"ROC\",-2.00,-14.00,0.00,\"\",0.00,78.00,65.00,523.00,,,,,,\n2015,5,12,\"WN\",\"2229\",\"MDW\",\"ROC\",1.00,-10.00,0.00,\"\",0.00,84.00,64.00,523.00,,,,,,\n2015,5,12,\"WN\",\"202\",\"MKE\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,119.00,99.00,738.00,,,,,,\n2015,5,12,\"WN\",\"1208\",\"MKE\",\"LGA\",-5.00,-29.00,0.00,\"\",0.00,111.00,95.00,738.00,,,,,,\n2015,5,12,\"WN\",\"3391\",\"MKE\",\"LGA\",1.00,-17.00,0.00,\"\",0.00,112.00,96.00,738.00,,,,,,\n2015,5,13,\"WN\",\"691\",\"DAL\",\"LGA\",-4.00,-28.00,0.00,\"\",0.00,181.00,166.00,1381.00,,,,,,\n2015,5,13,\"WN\",\"1214\",\"DAL\",\"LGA\",15.00,-5.00,0.00,\"\",0.00,185.00,167.00,1381.00,,,,,,\n2015,5,13,\"WN\",\"2141\",\"DAL\",\"LGA\",19.00,3.00,0.00,\"\",0.00,189.00,174.00,1381.00,,,,,,\n2015,5,13,\"WN\",\"2234\",\"DAL\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,189.00,169.00,1381.00,,,,,,\n2015,5,13,\"WN\",\"824\",\"DEN\",\"LGA\",-2.00,-40.00,0.00,\"\",0.00,197.00,181.00,1620.00,,,,,,\n2015,5,13,\"WN\",\"1370\",\"DEN\",\"LGA\",-5.00,-42.00,0.00,\"\",0.00,198.00,182.00,1620.00,,,,,,\n2015,5,13,\"WN\",\"1898\",\"FLL\",\"ALB\",-10.00,-13.00,0.00,\"\",0.00,177.00,157.00,1204.00,,,,,,\n2015,5,13,\"WN\",\"4643\",\"FLL\",\"BUF\",-7.00,-23.00,0.00,\"\",0.00,169.00,152.00,1166.00,,,,,,\n2015,5,13,\"WN\",\"28\",\"FLL\",\"ISP\",45.00,39.00,0.00,\"\",0.00,169.00,151.00,1092.00,5.00,0.00,0.00,0.00,34.00,\n2015,5,13,\"WN\",\"4640\",\"FLL\",\"ISP\",-9.00,-23.00,0.00,\"\",0.00,156.00,142.00,1092.00,,,,,,\n2015,5,13,\"WN\",\"299\",\"HOU\",\"LGA\",5.00,-17.00,0.00,\"\",0.00,188.00,172.00,1428.00,,,,,,\n2015,5,13,\"WN\",\"536\",\"HOU\",\"LGA\",5.00,-7.00,0.00,\"\",0.00,193.00,173.00,1428.00,,,,,,\n2015,5,13,\"WN\",\"1163\",\"HOU\",\"LGA\",32.00,8.00,0.00,\"\",0.00,186.00,173.00,1428.00,,,,,,\n2015,5,13,\"WN\",\"325\",\"ISP\",\"BWI\",1.00,-12.00,0.00,\"\",0.00,57.00,49.00,220.00,,,,,,\n2015,5,13,\"WN\",\"580\",\"ISP\",\"BWI\",-3.00,-15.00,0.00,\"\",0.00,63.00,53.00,220.00,,,,,,\n2015,5,13,\"WN\",\"667\",\"ISP\",\"BWI\",-4.00,-17.00,0.00,\"\",0.00,62.00,52.00,220.00,,,,,,\n2015,5,13,\"WN\",\"2940\",\"ISP\",\"BWI\",-1.00,-10.00,0.00,\"\",0.00,66.00,52.00,220.00,,,,,,\n2015,5,13,\"WN\",\"3743\",\"ISP\",\"BWI\",-2.00,-12.00,0.00,\"\",0.00,65.00,51.00,220.00,,,,,,\n2015,5,13,\"WN\",\"752\",\"ISP\",\"FLL\",1.00,-17.00,0.00,\"\",0.00,167.00,151.00,1092.00,,,,,,\n2015,5,13,\"WN\",\"4554\",\"ISP\",\"FLL\",-5.00,-16.00,0.00,\"\",0.00,169.00,154.00,1092.00,,,,,,\n2015,5,13,\"WN\",\"663\",\"ISP\",\"MCO\",-5.00,-8.00,0.00,\"\",0.00,157.00,138.00,971.00,,,,,,\n2015,5,13,\"WN\",\"4017\",\"ISP\",\"MCO\",3.00,-15.00,0.00,\"\",0.00,147.00,136.00,971.00,,,,,,\n2015,5,13,\"WN\",\"4575\",\"ISP\",\"MCO\",13.00,3.00,0.00,\"\",0.00,155.00,139.00,971.00,,,,,,\n2015,5,13,\"WN\",\"4910\",\"ISP\",\"MCO\",-3.00,-16.00,0.00,\"\",0.00,157.00,141.00,971.00,,,,,,\n2015,5,13,\"WN\",\"4479\",\"ISP\",\"PBI\",-3.00,-15.00,0.00,\"\",0.00,158.00,144.00,1052.00,,,,,,\n2015,5,13,\"WN\",\"4729\",\"ISP\",\"PBI\",-3.00,-5.00,0.00,\"\",0.00,168.00,149.00,1052.00,,,,,,\n2015,5,13,\"WN\",\"208\",\"ISP\",\"TPA\",-5.00,-8.00,0.00,\"\",0.00,167.00,156.00,1034.00,,,,,,\n2015,5,13,\"WN\",\"4907\",\"ISP\",\"TPA\",1.00,-20.00,0.00,\"\",0.00,159.00,147.00,1034.00,,,,,,\n2015,5,13,\"WN\",\"2202\",\"LAS\",\"ALB\",97.00,82.00,0.00,\"\",0.00,270.00,252.00,2237.00,82.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"WN\",\"2023\",\"LAS\",\"BUF\",-2.00,-27.00,0.00,\"\",0.00,240.00,224.00,1986.00,,,,,,\n2015,5,13,\"WN\",\"2528\",\"LAS\",\"BUF\",1.00,-14.00,0.00,\"\",0.00,240.00,225.00,1986.00,,,,,,\n2015,5,13,\"WN\",\"2454\",\"PHX\",\"BUF\",1.00,-14.00,0.00,\"\",0.00,230.00,221.00,1912.00,,,,,,\n2015,5,13,\"WN\",\"719\",\"ROC\",\"BWI\",10.00,-2.00,0.00,\"\",0.00,58.00,47.00,277.00,,,,,,\n2015,5,13,\"WN\",\"2749\",\"ROC\",\"BWI\",-11.00,-21.00,0.00,\"\",0.00,70.00,50.00,277.00,,,,,,\n2015,5,13,\"WN\",\"597\",\"ROC\",\"MCO\",-10.00,-28.00,0.00,\"\",0.00,142.00,128.00,1033.00,,,,,,\n2015,5,13,\"WN\",\"747\",\"ROC\",\"MDW\",-5.00,-4.00,0.00,\"\",0.00,111.00,90.00,523.00,,,,,,\n2015,5,13,\"WN\",\"4712\",\"ROC\",\"MDW\",-5.00,-5.00,0.00,\"\",0.00,105.00,89.00,523.00,,,,,,\n2015,5,13,\"WN\",\"4655\",\"ROC\",\"TPA\",-3.00,-9.00,0.00,\"\",0.00,159.00,139.00,1079.00,,,,,,\n2015,5,13,\"US\",\"809\",\"PHL\",\"LGA\",-7.00,-23.00,0.00,\"\",0.00,51.00,27.00,96.00,,,,,,\n2015,5,13,\"US\",\"821\",\"ROC\",\"CLT\",0.00,-2.00,0.00,\"\",0.00,120.00,98.00,573.00,,,,,,\n2015,5,13,\"US\",\"826\",\"LGA\",\"CLT\",-7.00,2.00,0.00,\"\",0.00,126.00,97.00,544.00,,,,,,\n2015,5,13,\"US\",\"853\",\"CLT\",\"BUF\",-4.00,-9.00,0.00,\"\",0.00,100.00,81.00,546.00,,,,,,\n2015,5,13,\"US\",\"873\",\"JFK\",\"CLT\",5.00,4.00,0.00,\"\",0.00,123.00,88.00,541.00,,,,,,\n2015,5,13,\"US\",\"876\",\"SYR\",\"CLT\",-7.00,-7.00,0.00,\"\",0.00,128.00,101.00,603.00,,,,,,\n2015,5,13,\"US\",\"890\",\"LGA\",\"CLT\",121.00,131.00,0.00,\"\",0.00,135.00,83.00,544.00,0.00,0.00,10.00,0.00,121.00,\n2015,5,13,\"US\",\"896\",\"CLT\",\"ROC\",-6.00,-3.00,0.00,\"\",0.00,105.00,89.00,573.00,,,,,,\n2015,5,13,\"US\",\"1740\",\"CLT\",\"LGA\",-4.00,-10.00,0.00,\"\",0.00,107.00,85.00,544.00,,,,,,\n2015,5,13,\"US\",\"1750\",\"ALB\",\"CLT\",1.00,-11.00,0.00,\"\",0.00,119.00,100.00,646.00,,,,,,\n2015,5,13,\"US\",\"1781\",\"LGA\",\"CLT\",11.00,10.00,0.00,\"\",0.00,124.00,81.00,544.00,,,,,,\n2015,5,13,\"US\",\"1810\",\"LGA\",\"CLT\",-5.00,7.00,0.00,\"\",0.00,134.00,89.00,544.00,,,,,,\n2015,5,13,\"US\",\"1815\",\"LGA\",\"CLT\",-4.00,3.00,0.00,\"\",0.00,129.00,87.00,544.00,,,,,,\n2015,5,13,\"US\",\"1830\",\"CLT\",\"JFK\",-2.00,-11.00,0.00,\"\",0.00,98.00,75.00,541.00,,,,,,\n2015,5,13,\"US\",\"1849\",\"LGA\",\"CLT\",-11.00,-4.00,0.00,\"\",0.00,140.00,93.00,544.00,,,,,,\n2015,5,13,\"US\",\"1851\",\"LGA\",\"CLT\",-6.00,-1.00,0.00,\"\",0.00,128.00,87.00,544.00,,,,,,\n2015,5,13,\"US\",\"1873\",\"BUF\",\"CLT\",-3.00,-16.00,0.00,\"\",0.00,95.00,72.00,546.00,,,,,,\n2015,5,13,\"US\",\"1885\",\"CLT\",\"BUF\",32.00,35.00,0.00,\"\",0.00,104.00,86.00,546.00,32.00,0.00,3.00,0.00,0.00,\n2015,5,12,\"WN\",\"12\",\"STL\",\"LGA\",-3.00,-27.00,0.00,\"\",0.00,121.00,104.00,888.00,,,,,,\n2015,5,12,\"WN\",\"1194\",\"STL\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,125.00,108.00,888.00,,,,,,\n2015,5,12,\"WN\",\"1986\",\"STL\",\"LGA\",-5.00,-25.00,0.00,\"\",0.00,120.00,102.00,888.00,,,,,,\n2015,5,12,\"WN\",\"854\",\"TPA\",\"ALB\",54.00,46.00,0.00,\"\",0.00,162.00,148.00,1130.00,6.00,0.00,0.00,0.00,40.00,\n2015,5,12,\"WN\",\"127\",\"TPA\",\"BUF\",0.00,-7.00,0.00,\"\",0.00,148.00,137.00,1053.00,,,,,,\n2015,5,12,\"WN\",\"2160\",\"TPA\",\"BUF\",23.00,18.00,0.00,\"\",0.00,150.00,134.00,1053.00,12.00,0.00,0.00,0.00,6.00,\n2015,5,12,\"WN\",\"2423\",\"TPA\",\"ISP\",164.00,150.00,0.00,\"\",0.00,141.00,130.00,1034.00,0.00,14.00,0.00,0.00,136.00,\n2015,5,12,\"WN\",\"4390\",\"TPA\",\"ISP\",-2.00,-12.00,0.00,\"\",0.00,155.00,140.00,1034.00,,,,,,\n2015,5,12,\"WN\",\"719\",\"TPA\",\"ROC\",32.00,26.00,0.00,\"\",0.00,154.00,139.00,1079.00,11.00,0.00,0.00,0.00,15.00,\n2015,5,13,\"WN\",\"223\",\"ALB\",\"BWI\",2.00,-14.00,0.00,\"\",0.00,64.00,53.00,289.00,,,,,,\n2015,5,13,\"WN\",\"752\",\"ALB\",\"BWI\",-5.00,-16.00,0.00,\"\",0.00,69.00,51.00,289.00,,,,,,\n2015,5,13,\"WN\",\"854\",\"ALB\",\"BWI\",-4.00,-7.00,0.00,\"\",0.00,72.00,55.00,289.00,,,,,,\n2015,5,13,\"WN\",\"1011\",\"ALB\",\"BWI\",-2.00,-14.00,0.00,\"\",0.00,68.00,58.00,289.00,,,,,,\n2015,5,13,\"WN\",\"3294\",\"ALB\",\"BWI\",-1.00,-16.00,0.00,\"\",0.00,70.00,56.00,289.00,,,,,,\n2015,5,13,\"WN\",\"3917\",\"ALB\",\"BWI\",-6.00,-17.00,0.00,\"\",0.00,69.00,58.00,289.00,,,,,,\n2015,5,13,\"WN\",\"1987\",\"ALB\",\"FLL\",1.00,-8.00,0.00,\"\",0.00,181.00,165.00,1204.00,,,,,,\n2015,5,13,\"WN\",\"346\",\"ALB\",\"LAS\",2.00,1.00,0.00,\"\",0.00,329.00,317.00,2237.00,,,,,,\n2015,5,13,\"WN\",\"3919\",\"ALB\",\"MCO\",48.00,37.00,0.00,\"\",0.00,164.00,145.00,1073.00,8.00,0.00,0.00,0.00,29.00,\n2015,5,13,\"WN\",\"4362\",\"ALB\",\"MCO\",33.00,24.00,0.00,\"\",0.00,166.00,152.00,1073.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"WN\",\"1550\",\"ALB\",\"MDW\",6.00,13.00,0.00,\"\",0.00,142.00,113.00,717.00,,,,,,\n2015,5,13,\"WN\",\"4985\",\"ALB\",\"MDW\",-5.00,-2.00,0.00,\"\",0.00,138.00,117.00,717.00,,,,,,\n2015,5,13,\"WN\",\"3650\",\"ALB\",\"TPA\",-4.00,-11.00,0.00,\"\",0.00,178.00,163.00,1130.00,,,,,,\n2015,5,13,\"WN\",\"815\",\"ATL\",\"LGA\",-1.00,25.00,0.00,\"\",0.00,166.00,105.00,762.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,13,\"WN\",\"1182\",\"ATL\",\"LGA\",88.00,80.00,0.00,\"\",0.00,132.00,107.00,762.00,74.00,0.00,0.00,0.00,6.00,\n2015,5,13,\"WN\",\"2516\",\"ATL\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,130.00,102.00,762.00,,,,,,\n2015,5,13,\"WN\",\"2659\",\"ATL\",\"LGA\",-5.00,-27.00,0.00,\"\",0.00,123.00,96.00,762.00,,,,,,\n2015,5,13,\"WN\",\"2850\",\"ATL\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,119.00,97.00,762.00,,,,,,\n2015,5,13,\"WN\",\"255\",\"BNA\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,112.00,97.00,764.00,,,,,,\n2015,5,13,\"WN\",\"2433\",\"BNA\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,120.00,103.00,764.00,,,,,,\n2015,5,13,\"WN\",\"2570\",\"BNA\",\"LGA\",18.00,4.00,0.00,\"\",0.00,121.00,100.00,764.00,,,,,,\n2015,5,13,\"WN\",\"381\",\"BUF\",\"BWI\",-6.00,-16.00,0.00,\"\",0.00,60.00,48.00,281.00,,,,,,\n2015,5,13,\"WN\",\"728\",\"BUF\",\"BWI\",5.00,-5.00,0.00,\"\",0.00,60.00,49.00,281.00,,,,,,\n2015,5,13,\"WN\",\"842\",\"BUF\",\"BWI\",-5.00,-20.00,0.00,\"\",0.00,60.00,47.00,281.00,,,,,,\n2015,5,13,\"WN\",\"1429\",\"BUF\",\"BWI\",-3.00,-28.00,0.00,\"\",0.00,60.00,46.00,281.00,,,,,,\n2015,5,13,\"WN\",\"1528\",\"BUF\",\"BWI\",-4.00,-10.00,0.00,\"\",0.00,69.00,48.00,281.00,,,,,,\n2015,5,13,\"WN\",\"2423\",\"BUF\",\"BWI\",-5.00,-21.00,0.00,\"\",0.00,59.00,47.00,281.00,,,,,,\n2015,5,13,\"WN\",\"1785\",\"BUF\",\"FLL\",-1.00,-8.00,0.00,\"\",0.00,178.00,162.00,1166.00,,,,,,\n2015,5,13,\"WN\",\"361\",\"BUF\",\"LAS\",2.00,-8.00,0.00,\"\",0.00,290.00,273.00,1986.00,,,,,,\n2015,5,13,\"WN\",\"615\",\"BUF\",\"LAS\",-1.00,-14.00,0.00,\"\",0.00,277.00,260.00,1986.00,,,,,,\n2015,5,13,\"WN\",\"134\",\"BUF\",\"MCO\",-2.00,-26.00,0.00,\"\",0.00,136.00,123.00,1011.00,,,,,,\n2015,5,13,\"WN\",\"674\",\"BUF\",\"MCO\",22.00,1.00,0.00,\"\",0.00,139.00,124.00,1011.00,,,,,,\n2015,5,13,\"WN\",\"854\",\"BUF\",\"MCO\",-9.00,-35.00,0.00,\"\",0.00,134.00,120.00,1011.00,,,,,,\n2015,5,13,\"WN\",\"2141\",\"BUF\",\"MCO\",1.00,-15.00,0.00,\"\",0.00,144.00,132.00,1011.00,,,,,,\n2015,5,13,\"WN\",\"717\",\"BUF\",\"MDW\",-5.00,-5.00,0.00,\"\",0.00,110.00,90.00,468.00,,,,,,\n2015,5,13,\"WN\",\"2023\",\"BUF\",\"MDW\",-1.00,-9.00,0.00,\"\",0.00,97.00,80.00,468.00,,,,,,\n2015,5,13,\"WN\",\"2632\",\"BUF\",\"MDW\",-2.00,-9.00,0.00,\"\",0.00,93.00,80.00,468.00,,,,,,\n2015,5,13,\"WN\",\"328\",\"BUF\",\"PHX\",13.00,3.00,0.00,\"\",0.00,280.00,265.00,1912.00,,,,,,\n2015,5,13,\"WN\",\"984\",\"BUF\",\"TPA\",-6.00,-21.00,0.00,\"\",0.00,150.00,137.00,1053.00,,,,,,\n2015,5,13,\"WN\",\"2824\",\"BUF\",\"TPA\",-6.00,-20.00,0.00,\"\",0.00,151.00,139.00,1053.00,,,,,,\n2015,5,13,\"WN\",\"334\",\"BWI\",\"ALB\",-6.00,-5.00,0.00,\"\",0.00,76.00,52.00,289.00,,,,,,\n2015,5,13,\"WN\",\"346\",\"BWI\",\"ALB\",-5.00,-4.00,0.00,\"\",0.00,66.00,54.00,289.00,,,,,,\n2015,5,13,\"WN\",\"598\",\"BWI\",\"ALB\",0.00,-6.00,0.00,\"\",0.00,64.00,52.00,289.00,,,,,,\n2015,5,13,\"WN\",\"1269\",\"BWI\",\"ALB\",15.00,19.00,0.00,\"\",0.00,79.00,52.00,289.00,15.00,0.00,4.00,0.00,0.00,\n2015,5,13,\"WN\",\"3033\",\"BWI\",\"ALB\",4.00,7.00,0.00,\"\",0.00,73.00,52.00,289.00,,,,,,\n2015,5,13,\"WN\",\"3919\",\"BWI\",\"ALB\",38.00,37.00,0.00,\"\",0.00,69.00,52.00,289.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,13,\"WN\",\"328\",\"BWI\",\"BUF\",-2.00,11.00,0.00,\"\",0.00,78.00,52.00,281.00,,,,,,\n2015,5,13,\"WN\",\"572\",\"BWI\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,60.00,48.00,281.00,,,,,,\n2015,5,13,\"WN\",\"819\",\"BWI\",\"BUF\",-4.00,-1.00,0.00,\"\",0.00,68.00,52.00,281.00,,,,,,\n2015,5,13,\"WN\",\"854\",\"BWI\",\"BUF\",-3.00,-8.00,0.00,\"\",0.00,65.00,49.00,281.00,,,,,,\n2015,5,13,\"WN\",\"1350\",\"BWI\",\"BUF\",-3.00,-7.00,0.00,\"\",0.00,61.00,50.00,281.00,,,,,,\n2015,5,13,\"WN\",\"1900\",\"BWI\",\"BUF\",-5.00,7.00,0.00,\"\",0.00,87.00,52.00,281.00,,,,,,\n2015,5,13,\"WN\",\"232\",\"BWI\",\"ISP\",17.00,24.00,0.00,\"\",0.00,72.00,46.00,220.00,1.00,0.00,7.00,0.00,16.00,\n2015,5,13,\"WN\",\"752\",\"BWI\",\"ISP\",2.00,2.00,0.00,\"\",0.00,60.00,44.00,220.00,,,,,,\n2015,5,13,\"WN\",\"842\",\"BWI\",\"ISP\",-2.00,-2.00,0.00,\"\",0.00,65.00,48.00,220.00,,,,,,\n2015,5,13,\"WN\",\"2452\",\"BWI\",\"ISP\",-5.00,-14.00,0.00,\"\",0.00,61.00,45.00,220.00,,,,,,\n2015,5,13,\"WN\",\"4017\",\"BWI\",\"ISP\",-5.00,5.00,0.00,\"\",0.00,70.00,43.00,220.00,,,,,,\n2015,5,13,\"WN\",\"597\",\"BWI\",\"ROC\",-3.00,-7.00,0.00,\"\",0.00,66.00,50.00,277.00,,,,,,\n2015,5,13,\"WN\",\"3564\",\"BWI\",\"ROC\",-4.00,11.00,0.00,\"\",0.00,85.00,52.00,277.00,,,,,,\n2015,5,13,\"WN\",\"914\",\"CAK\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,72.00,55.00,397.00,,,,,,\n2015,5,13,\"WN\",\"4728\",\"CAK\",\"LGA\",-7.00,-15.00,0.00,\"\",0.00,82.00,60.00,397.00,,,,,,\n2015,5,14,\"WN\",\"223\",\"ALB\",\"BWI\",20.00,3.00,0.00,\"\",0.00,63.00,53.00,289.00,,,,,,\n2015,5,14,\"WN\",\"752\",\"ALB\",\"BWI\",9.00,-13.00,0.00,\"\",0.00,58.00,49.00,289.00,,,,,,\n2015,5,14,\"WN\",\"854\",\"ALB\",\"BWI\",-4.00,-7.00,0.00,\"\",0.00,72.00,50.00,289.00,,,,,,\n2015,5,14,\"WN\",\"1011\",\"ALB\",\"BWI\",1.00,-10.00,0.00,\"\",0.00,69.00,47.00,289.00,,,,,,\n2015,5,14,\"WN\",\"3294\",\"ALB\",\"BWI\",-3.00,-20.00,0.00,\"\",0.00,68.00,52.00,289.00,,,,,,\n2015,5,14,\"WN\",\"3917\",\"ALB\",\"BWI\",-6.00,-15.00,0.00,\"\",0.00,71.00,55.00,289.00,,,,,,\n2015,5,14,\"WN\",\"1987\",\"ALB\",\"FLL\",0.00,-23.00,0.00,\"\",0.00,167.00,152.00,1204.00,,,,,,\n2015,5,14,\"WN\",\"346\",\"ALB\",\"LAS\",-6.00,-24.00,0.00,\"\",0.00,312.00,298.00,2237.00,,,,,,\n2015,5,14,\"WN\",\"3919\",\"ALB\",\"MCO\",-3.00,-13.00,0.00,\"\",0.00,165.00,152.00,1073.00,,,,,,\n2015,5,14,\"WN\",\"4362\",\"ALB\",\"MCO\",-4.00,-26.00,0.00,\"\",0.00,153.00,138.00,1073.00,,,,,,\n2015,5,14,\"WN\",\"1550\",\"ALB\",\"MDW\",3.00,-4.00,0.00,\"\",0.00,128.00,113.00,717.00,,,,,,\n2015,5,14,\"WN\",\"4985\",\"ALB\",\"MDW\",-3.00,2.00,0.00,\"\",0.00,140.00,113.00,717.00,,,,,,\n2015,5,14,\"WN\",\"3650\",\"ALB\",\"TPA\",-3.00,-20.00,0.00,\"\",0.00,168.00,151.00,1130.00,,,,,,\n2015,5,14,\"WN\",\"815\",\"ATL\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,125.00,98.00,762.00,,,,,,\n2015,5,14,\"WN\",\"1182\",\"ATL\",\"LGA\",26.00,10.00,0.00,\"\",0.00,124.00,102.00,762.00,,,,,,\n2015,5,14,\"WN\",\"2516\",\"ATL\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,127.00,105.00,762.00,,,,,,\n2015,5,14,\"WN\",\"2659\",\"ATL\",\"LGA\",39.00,22.00,0.00,\"\",0.00,128.00,110.00,762.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"WN\",\"2850\",\"ATL\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,128.00,102.00,762.00,,,,,,\n2015,5,13,\"WN\",\"202\",\"MKE\",\"LGA\",-6.00,-23.00,0.00,\"\",0.00,118.00,96.00,738.00,,,,,,\n2015,5,13,\"WN\",\"1208\",\"MKE\",\"LGA\",-9.00,-26.00,0.00,\"\",0.00,118.00,96.00,738.00,,,,,,\n2015,5,13,\"WN\",\"3391\",\"MKE\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,115.00,93.00,738.00,,,,,,\n2015,5,13,\"WN\",\"2851\",\"PBI\",\"ISP\",0.00,-8.00,0.00,\"\",0.00,152.00,140.00,1052.00,,,,,,\n2015,5,13,\"WN\",\"4818\",\"PBI\",\"ISP\",6.00,-1.00,0.00,\"\",0.00,153.00,137.00,1052.00,,,,,,\n2015,5,14,\"WN\",\"824\",\"DEN\",\"LGA\",-2.00,-28.00,0.00,\"\",0.00,209.00,194.00,1620.00,,,,,,\n2015,5,14,\"WN\",\"1370\",\"DEN\",\"LGA\",0.00,-24.00,0.00,\"\",0.00,211.00,192.00,1620.00,,,,,,\n2015,5,14,\"WN\",\"1898\",\"FLL\",\"ALB\",-5.00,2.00,0.00,\"\",0.00,187.00,166.00,1204.00,,,,,,\n2015,5,14,\"WN\",\"4643\",\"FLL\",\"BUF\",5.00,-1.00,0.00,\"\",0.00,179.00,161.00,1166.00,,,,,,\n2015,5,14,\"WN\",\"28\",\"FLL\",\"ISP\",13.00,2.00,0.00,\"\",0.00,164.00,148.00,1092.00,,,,,,\n2015,5,14,\"WN\",\"4640\",\"FLL\",\"ISP\",-5.00,-5.00,0.00,\"\",0.00,170.00,155.00,1092.00,,,,,,\n2015,5,14,\"WN\",\"299\",\"HOU\",\"LGA\",16.00,4.00,0.00,\"\",0.00,198.00,180.00,1428.00,,,,,,\n2015,5,14,\"WN\",\"536\",\"HOU\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,198.00,177.00,1428.00,,,,,,\n2015,5,14,\"WN\",\"1163\",\"HOU\",\"LGA\",28.00,19.00,0.00,\"\",0.00,201.00,175.00,1428.00,9.00,0.00,0.00,0.00,10.00,\n2015,5,14,\"WN\",\"325\",\"ISP\",\"BWI\",0.00,-3.00,0.00,\"\",0.00,67.00,53.00,220.00,,,,,,\n2015,5,14,\"WN\",\"580\",\"ISP\",\"BWI\",-5.00,-20.00,0.00,\"\",0.00,60.00,49.00,220.00,,,,,,\n2015,5,14,\"WN\",\"667\",\"ISP\",\"BWI\",-4.00,-1.00,0.00,\"\",0.00,78.00,46.00,220.00,,,,,,\n2015,5,14,\"WN\",\"2940\",\"ISP\",\"BWI\",30.00,12.00,0.00,\"\",0.00,57.00,45.00,220.00,,,,,,\n2015,5,14,\"WN\",\"3743\",\"ISP\",\"BWI\",8.00,-6.00,0.00,\"\",0.00,61.00,49.00,220.00,,,,,,\n2015,5,14,\"WN\",\"752\",\"ISP\",\"FLL\",6.00,-13.00,0.00,\"\",0.00,166.00,145.00,1092.00,,,,,,\n2015,5,14,\"WN\",\"4554\",\"ISP\",\"FLL\",0.00,-15.00,0.00,\"\",0.00,165.00,139.00,1092.00,,,,,,\n2015,5,14,\"WN\",\"663\",\"ISP\",\"MCO\",-2.00,-12.00,0.00,\"\",0.00,150.00,132.00,971.00,,,,,,\n2015,5,14,\"WN\",\"4017\",\"ISP\",\"MCO\",18.00,-2.00,0.00,\"\",0.00,145.00,132.00,971.00,,,,,,\n2015,5,14,\"WN\",\"4575\",\"ISP\",\"MCO\",-3.00,-14.00,0.00,\"\",0.00,154.00,134.00,971.00,,,,,,\n2015,5,14,\"WN\",\"4910\",\"ISP\",\"MCO\",-4.00,-29.00,0.00,\"\",0.00,145.00,126.00,971.00,,,,,,\n2015,5,14,\"WN\",\"4479\",\"ISP\",\"PBI\",0.00,-7.00,0.00,\"\",0.00,163.00,149.00,1052.00,,,,,,\n2015,5,14,\"WN\",\"4729\",\"ISP\",\"PBI\",-1.00,-5.00,0.00,\"\",0.00,166.00,149.00,1052.00,,,,,,\n2015,5,14,\"WN\",\"208\",\"ISP\",\"TPA\",-6.00,-21.00,0.00,\"\",0.00,155.00,142.00,1034.00,,,,,,\n2015,5,14,\"WN\",\"4907\",\"ISP\",\"TPA\",-4.00,-16.00,0.00,\"\",0.00,168.00,147.00,1034.00,,,,,,\n2015,5,14,\"WN\",\"2202\",\"LAS\",\"ALB\",44.00,28.00,0.00,\"\",0.00,269.00,255.00,2237.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"WN\",\"2023\",\"LAS\",\"BUF\",-8.00,-19.00,0.00,\"\",0.00,254.00,232.00,1986.00,,,,,,\n2015,5,14,\"WN\",\"2528\",\"LAS\",\"BUF\",32.00,26.00,0.00,\"\",0.00,249.00,229.00,1986.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"WN\",\"178\",\"LGA\",\"ATL\",-1.00,-8.00,0.00,\"\",0.00,153.00,109.00,762.00,,,,,,\n2015,5,14,\"WN\",\"2939\",\"LGA\",\"ATL\",8.00,-15.00,0.00,\"\",0.00,147.00,109.00,762.00,,,,,,\n2015,5,14,\"WN\",\"3133\",\"LGA\",\"ATL\",2.00,-15.00,0.00,\"\",0.00,143.00,109.00,762.00,,,,,,\n2015,5,14,\"WN\",\"3391\",\"LGA\",\"ATL\",-3.00,-14.00,0.00,\"\",0.00,149.00,110.00,762.00,,,,,,\n2015,5,14,\"WN\",\"4728\",\"LGA\",\"ATL\",0.00,-43.00,0.00,\"\",0.00,132.00,109.00,762.00,,,,,,\n2015,5,14,\"WN\",\"914\",\"LGA\",\"BNA\",-3.00,-6.00,0.00,\"\",0.00,147.00,109.00,764.00,,,,,,\n2015,5,14,\"WN\",\"1208\",\"LGA\",\"BNA\",-1.00,-15.00,0.00,\"\",0.00,141.00,111.00,764.00,,,,,,\n2015,5,14,\"WN\",\"1370\",\"LGA\",\"BNA\",0.00,-25.00,0.00,\"\",0.00,140.00,114.00,764.00,,,,,,\n2015,5,14,\"WN\",\"202\",\"LGA\",\"CAK\",61.00,58.00,0.00,\"\",0.00,97.00,65.00,397.00,0.00,0.00,0.00,0.00,58.00,\n2015,5,14,\"WN\",\"534\",\"LGA\",\"CAK\",-5.00,-19.00,0.00,\"\",0.00,86.00,62.00,397.00,,,,,,\n2015,5,14,\"WN\",\"255\",\"LGA\",\"DAL\",-4.00,-12.00,0.00,\"\",0.00,237.00,187.00,1381.00,,,,,,\n2015,5,14,\"WN\",\"431\",\"LGA\",\"DAL\",4.00,-9.00,0.00,\"\",0.00,227.00,189.00,1381.00,,,,,,\n2015,5,14,\"WN\",\"2347\",\"LGA\",\"DAL\",8.00,-22.00,0.00,\"\",0.00,215.00,186.00,1381.00,,,,,,\n2015,5,14,\"WN\",\"3489\",\"LGA\",\"DAL\",-5.00,-26.00,0.00,\"\",0.00,209.00,191.00,1381.00,,,,,,\n2015,5,14,\"WN\",\"12\",\"LGA\",\"DEN\",61.00,35.00,0.00,\"\",0.00,249.00,224.00,1620.00,5.00,0.00,0.00,0.00,30.00,\n2015,5,14,\"WN\",\"165\",\"LGA\",\"DEN\",-3.00,5.00,0.00,\"\",0.00,283.00,220.00,1620.00,,,,,,\n2015,5,14,\"WN\",\"682\",\"LGA\",\"HOU\",0.00,-16.00,0.00,\"\",0.00,224.00,200.00,1428.00,,,,,,\n2015,5,14,\"WN\",\"2778\",\"LGA\",\"HOU\",0.00,-29.00,0.00,\"\",0.00,221.00,200.00,1428.00,,,,,,\n2015,5,14,\"WN\",\"3845\",\"LGA\",\"HOU\",-7.00,-33.00,0.00,\"\",0.00,214.00,198.00,1428.00,,,,,,\n2015,5,14,\"WN\",\"413\",\"LGA\",\"MCI\",17.00,-12.00,0.00,\"\",0.00,171.00,154.00,1107.00,,,,,,\n2015,5,14,\"WN\",\"479\",\"LGA\",\"MDW\",3.00,-16.00,0.00,\"\",0.00,126.00,104.00,725.00,,,,,,\n2015,5,14,\"WN\",\"777\",\"LGA\",\"MDW\",0.00,-18.00,0.00,\"\",0.00,137.00,112.00,725.00,,,,,,\n2015,5,14,\"WN\",\"868\",\"LGA\",\"MDW\",10.00,-10.00,0.00,\"\",0.00,140.00,112.00,725.00,,,,,,\n2015,5,14,\"WN\",\"2516\",\"LGA\",\"MDW\",2.00,-25.00,0.00,\"\",0.00,133.00,110.00,725.00,,,,,,\n2015,5,14,\"WN\",\"2529\",\"LGA\",\"MDW\",-5.00,8.00,0.00,\"\",0.00,163.00,115.00,725.00,,,,,,\n2015,5,14,\"WN\",\"2659\",\"LGA\",\"MDW\",26.00,36.00,0.00,\"\",0.00,165.00,116.00,725.00,4.00,0.00,10.00,0.00,22.00,\n2015,5,14,\"WN\",\"4123\",\"LGA\",\"MDW\",-2.00,-21.00,0.00,\"\",0.00,131.00,112.00,725.00,,,,,,\n2015,5,14,\"WN\",\"1344\",\"LGA\",\"MKE\",2.00,-7.00,0.00,\"\",0.00,141.00,116.00,738.00,,,,,,\n2015,5,14,\"WN\",\"2433\",\"LGA\",\"MKE\",-1.00,-9.00,0.00,\"\",0.00,147.00,112.00,738.00,,,,,,\n2015,5,14,\"WN\",\"4379\",\"LGA\",\"MKE\",-1.00,1.00,0.00,\"\",0.00,147.00,114.00,738.00,,,,,,\n2015,5,14,\"WN\",\"536\",\"LGA\",\"STL\",-5.00,-30.00,0.00,\"\",0.00,155.00,137.00,888.00,,,,,,\n2015,5,14,\"WN\",\"2168\",\"LGA\",\"STL\",-4.00,-15.00,0.00,\"\",0.00,149.00,130.00,888.00,,,,,,\n2015,5,14,\"WN\",\"4571\",\"LGA\",\"STL\",20.00,-1.00,0.00,\"\",0.00,149.00,128.00,888.00,,,,,,\n2015,5,14,\"WN\",\"333\",\"MCI\",\"LGA\",25.00,5.00,0.00,\"\",0.00,150.00,137.00,1107.00,,,,,,\n2015,5,14,\"WN\",\"1011\",\"MCO\",\"ALB\",2.00,0.00,0.00,\"\",0.00,163.00,148.00,1073.00,,,,,,\n2015,5,14,\"WN\",\"2849\",\"MCO\",\"ALB\",-6.00,-17.00,0.00,\"\",0.00,149.00,133.00,1073.00,,,,,,\n2015,5,14,\"WN\",\"728\",\"MCO\",\"BUF\",13.00,7.00,0.00,\"\",0.00,149.00,132.00,1011.00,,,,,,\n2015,5,14,\"WN\",\"801\",\"MCO\",\"BUF\",-1.00,1.00,0.00,\"\",0.00,157.00,126.00,1011.00,,,,,,\n2015,5,14,\"WN\",\"2423\",\"MCO\",\"BUF\",-1.00,1.00,0.00,\"\",0.00,157.00,143.00,1011.00,,,,,,\n2015,5,14,\"WN\",\"2632\",\"MCO\",\"BUF\",1.00,-6.00,0.00,\"\",0.00,148.00,134.00,1011.00,,,,,,\n2015,5,14,\"WN\",\"719\",\"ROC\",\"BWI\",-7.00,-14.00,0.00,\"\",0.00,63.00,48.00,277.00,,,,,,\n2015,5,14,\"WN\",\"2749\",\"ROC\",\"BWI\",-6.00,-33.00,0.00,\"\",0.00,53.00,42.00,277.00,,,,,,\n2015,5,14,\"WN\",\"597\",\"ROC\",\"MCO\",1.00,-9.00,0.00,\"\",0.00,150.00,129.00,1033.00,,,,,,\n2015,5,14,\"WN\",\"747\",\"ROC\",\"MDW\",30.00,21.00,0.00,\"\",0.00,101.00,83.00,523.00,1.00,0.00,0.00,0.00,20.00,\n2015,5,14,\"WN\",\"4712\",\"ROC\",\"MDW\",-1.00,12.00,0.00,\"\",0.00,118.00,84.00,523.00,,,,,,\n2015,5,14,\"WN\",\"4655\",\"ROC\",\"TPA\",6.00,-6.00,0.00,\"\",0.00,153.00,140.00,1079.00,,,,,,\n2015,5,13,\"WN\",\"12\",\"STL\",\"LGA\",7.00,-11.00,0.00,\"\",0.00,127.00,110.00,888.00,,,,,,\n2015,5,13,\"WN\",\"1194\",\"STL\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,127.00,107.00,888.00,,,,,,\n2015,5,13,\"WN\",\"1986\",\"STL\",\"LGA\",-10.00,-17.00,0.00,\"\",0.00,133.00,109.00,888.00,,,,,,\n2015,5,13,\"WN\",\"854\",\"TPA\",\"ALB\",-4.00,-8.00,0.00,\"\",0.00,166.00,152.00,1130.00,,,,,,\n2015,5,13,\"WN\",\"127\",\"TPA\",\"BUF\",15.00,18.00,0.00,\"\",0.00,158.00,145.00,1053.00,9.00,0.00,3.00,0.00,6.00,\n2015,5,13,\"WN\",\"2160\",\"TPA\",\"BUF\",0.00,12.00,0.00,\"\",0.00,167.00,149.00,1053.00,,,,,,\n2015,5,13,\"WN\",\"2423\",\"TPA\",\"ISP\",0.00,12.00,0.00,\"\",0.00,167.00,140.00,1034.00,,,,,,\n2015,5,13,\"WN\",\"4390\",\"TPA\",\"ISP\",-4.00,-21.00,0.00,\"\",0.00,148.00,135.00,1034.00,,,,,,\n2015,5,13,\"WN\",\"719\",\"TPA\",\"ROC\",-6.00,1.00,0.00,\"\",0.00,167.00,152.00,1079.00,,,,,,\n2015,5,14,\"WN\",\"293\",\"MCO\",\"ISP\",-6.00,-21.00,0.00,\"\",0.00,140.00,127.00,971.00,,,,,,\n2015,5,14,\"WN\",\"325\",\"MCO\",\"ISP\",5.00,4.00,0.00,\"\",0.00,149.00,134.00,971.00,,,,,,\n2015,5,14,\"WN\",\"426\",\"MCO\",\"ISP\",-8.00,1.00,0.00,\"\",0.00,159.00,140.00,971.00,,,,,,\n2015,5,14,\"WN\",\"4486\",\"MCO\",\"ISP\",-1.00,-3.00,0.00,\"\",0.00,148.00,136.00,971.00,,,,,,\n2015,5,14,\"WN\",\"3935\",\"MCO\",\"ROC\",-3.00,5.00,0.00,\"\",0.00,163.00,142.00,1033.00,,,,,,\n2015,5,14,\"WN\",\"103\",\"MDW\",\"ALB\",5.00,-8.00,0.00,\"\",0.00,102.00,87.00,717.00,,,,,,\n2015,5,14,\"WN\",\"1461\",\"MDW\",\"ALB\",1.00,-11.00,0.00,\"\",0.00,103.00,85.00,717.00,,,,,,\n2015,5,14,\"WN\",\"134\",\"MDW\",\"BUF\",-4.00,-19.00,0.00,\"\",0.00,75.00,63.00,468.00,,,,,,\n2015,5,14,\"WN\",\"615\",\"MDW\",\"BUF\",2.00,-4.00,0.00,\"\",0.00,84.00,62.00,468.00,,,,,,\n2015,5,14,\"WN\",\"2241\",\"MDW\",\"BUF\",1.00,-21.00,0.00,\"\",0.00,78.00,60.00,468.00,,,,,,\n2015,5,14,\"WN\",\"178\",\"MDW\",\"LGA\",9.00,-8.00,0.00,\"\",0.00,113.00,95.00,725.00,,,,,,\n2015,5,14,\"WN\",\"682\",\"MDW\",\"LGA\",-4.00,-7.00,0.00,\"\",0.00,122.00,95.00,725.00,,,,,,\n2015,5,14,\"WN\",\"803\",\"MDW\",\"LGA\",5.00,0.00,0.00,\"\",0.00,125.00,96.00,725.00,,,,,,\n2015,5,14,\"WN\",\"1713\",\"MDW\",\"LGA\",5.00,-16.00,0.00,\"\",0.00,104.00,92.00,725.00,,,,,,\n2015,5,14,\"WN\",\"1945\",\"MDW\",\"LGA\",10.00,-8.00,0.00,\"\",0.00,112.00,94.00,725.00,,,,,,\n2015,5,14,\"WN\",\"2778\",\"MDW\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,115.00,99.00,725.00,,,,,,\n2015,5,14,\"WN\",\"4365\",\"MDW\",\"LGA\",0.00,-14.00,0.00,\"\",0.00,116.00,95.00,725.00,,,,,,\n2015,5,14,\"WN\",\"292\",\"MDW\",\"ROC\",8.00,4.00,0.00,\"\",0.00,86.00,70.00,523.00,,,,,,\n2015,5,14,\"WN\",\"2229\",\"MDW\",\"ROC\",34.00,28.00,0.00,\"\",0.00,89.00,76.00,523.00,5.00,0.00,0.00,0.00,23.00,\n2015,5,14,\"WN\",\"202\",\"MKE\",\"LGA\",95.00,72.00,0.00,\"\",0.00,112.00,98.00,738.00,70.00,0.00,0.00,0.00,2.00,\n2015,5,14,\"WN\",\"1208\",\"MKE\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,125.00,102.00,738.00,,,,,,\n2015,5,14,\"WN\",\"3391\",\"MKE\",\"LGA\",0.00,-10.00,0.00,\"\",0.00,120.00,105.00,738.00,,,,,,\n2015,5,14,\"WN\",\"2851\",\"PBI\",\"ISP\",7.00,14.00,0.00,\"\",0.00,167.00,150.00,1052.00,,,,,,\n2015,5,14,\"WN\",\"4818\",\"PBI\",\"ISP\",-1.00,-4.00,0.00,\"\",0.00,157.00,144.00,1052.00,,,,,,\n2015,5,14,\"WN\",\"2454\",\"PHX\",\"BUF\",15.00,-6.00,0.00,\"\",0.00,224.00,214.00,1912.00,,,,,,\n2015,5,15,\"WN\",\"299\",\"HOU\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,196.00,178.00,1428.00,,,,,,\n2015,5,15,\"WN\",\"536\",\"HOU\",\"LGA\",2.00,-11.00,0.00,\"\",0.00,192.00,177.00,1428.00,,,,,,\n2015,5,15,\"WN\",\"1163\",\"HOU\",\"LGA\",26.00,8.00,0.00,\"\",0.00,192.00,177.00,1428.00,,,,,,\n2015,5,14,\"WN\",\"255\",\"BNA\",\"LGA\",-6.00,-13.00,0.00,\"\",0.00,123.00,104.00,764.00,,,,,,\n2015,5,14,\"WN\",\"2433\",\"BNA\",\"LGA\",1.00,-4.00,0.00,\"\",0.00,125.00,107.00,764.00,,,,,,\n2015,5,14,\"WN\",\"2570\",\"BNA\",\"LGA\",10.00,-3.00,0.00,\"\",0.00,122.00,103.00,764.00,,,,,,\n2015,5,14,\"WN\",\"381\",\"BUF\",\"BWI\",3.00,-7.00,0.00,\"\",0.00,60.00,47.00,281.00,,,,,,\n2015,5,14,\"WN\",\"728\",\"BUF\",\"BWI\",2.00,-13.00,0.00,\"\",0.00,55.00,44.00,281.00,,,,,,\n2015,5,14,\"WN\",\"842\",\"BUF\",\"BWI\",-7.00,-8.00,0.00,\"\",0.00,74.00,48.00,281.00,,,,,,\n2015,5,14,\"WN\",\"1429\",\"BUF\",\"BWI\",-4.00,-31.00,0.00,\"\",0.00,58.00,46.00,281.00,,,,,,\n2015,5,14,\"WN\",\"1528\",\"BUF\",\"BWI\",6.00,-9.00,0.00,\"\",0.00,60.00,46.00,281.00,,,,,,\n2015,5,14,\"WN\",\"2423\",\"BUF\",\"BWI\",-1.00,-17.00,0.00,\"\",0.00,59.00,44.00,281.00,,,,,,\n2015,5,14,\"WN\",\"1785\",\"BUF\",\"FLL\",-3.00,-10.00,0.00,\"\",0.00,178.00,151.00,1166.00,,,,,,\n2015,5,14,\"WN\",\"361\",\"BUF\",\"LAS\",-2.00,-22.00,0.00,\"\",0.00,280.00,261.00,1986.00,,,,,,\n2015,5,14,\"WN\",\"615\",\"BUF\",\"LAS\",-5.00,-14.00,0.00,\"\",0.00,281.00,264.00,1986.00,,,,,,\n2015,5,14,\"WN\",\"134\",\"BUF\",\"MCO\",-8.00,-34.00,0.00,\"\",0.00,134.00,124.00,1011.00,,,,,,\n2015,5,14,\"WN\",\"674\",\"BUF\",\"MCO\",9.00,-5.00,0.00,\"\",0.00,146.00,131.00,1011.00,,,,,,\n2015,5,14,\"WN\",\"854\",\"BUF\",\"MCO\",-6.00,-22.00,0.00,\"\",0.00,144.00,131.00,1011.00,,,,,,\n2015,5,14,\"WN\",\"2141\",\"BUF\",\"MCO\",-2.00,-25.00,0.00,\"\",0.00,137.00,121.00,1011.00,,,,,,\n2015,5,14,\"WN\",\"717\",\"BUF\",\"MDW\",1.00,0.00,0.00,\"\",0.00,109.00,84.00,468.00,,,,,,\n2015,5,14,\"WN\",\"2023\",\"BUF\",\"MDW\",-9.00,-19.00,0.00,\"\",0.00,95.00,76.00,468.00,,,,,,\n2015,5,14,\"WN\",\"2632\",\"BUF\",\"MDW\",-1.00,-9.00,0.00,\"\",0.00,92.00,76.00,468.00,,,,,,\n2015,5,14,\"WN\",\"328\",\"BUF\",\"PHX\",49.00,32.00,0.00,\"\",0.00,273.00,257.00,1912.00,9.00,0.00,0.00,0.00,23.00,\n2015,5,14,\"WN\",\"984\",\"BUF\",\"TPA\",-5.00,-26.00,0.00,\"\",0.00,144.00,128.00,1053.00,,,,,,\n2015,5,14,\"WN\",\"2824\",\"BUF\",\"TPA\",-2.00,-17.00,0.00,\"\",0.00,150.00,136.00,1053.00,,,,,,\n2015,5,14,\"WN\",\"334\",\"BWI\",\"ALB\",-1.00,5.00,0.00,\"\",0.00,81.00,56.00,289.00,,,,,,\n2015,5,14,\"WN\",\"346\",\"BWI\",\"ALB\",-4.00,-2.00,0.00,\"\",0.00,67.00,54.00,289.00,,,,,,\n2015,5,14,\"WN\",\"598\",\"BWI\",\"ALB\",307.00,294.00,0.00,\"\",0.00,57.00,46.00,289.00,16.00,0.00,0.00,0.00,278.00,\n2015,5,14,\"WN\",\"1269\",\"BWI\",\"ALB\",20.00,10.00,0.00,\"\",0.00,65.00,48.00,289.00,,,,,,\n2015,5,14,\"WN\",\"3033\",\"BWI\",\"ALB\",29.00,25.00,0.00,\"\",0.00,66.00,54.00,289.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"WN\",\"3919\",\"BWI\",\"ALB\",-3.00,-6.00,0.00,\"\",0.00,67.00,54.00,289.00,,,,,,\n2015,5,14,\"WN\",\"328\",\"BWI\",\"BUF\",33.00,35.00,0.00,\"\",0.00,67.00,49.00,281.00,33.00,0.00,2.00,0.00,0.00,\n2015,5,14,\"WN\",\"572\",\"BWI\",\"BUF\",1.00,-6.00,0.00,\"\",0.00,63.00,50.00,281.00,,,,,,\n2015,5,14,\"WN\",\"819\",\"BWI\",\"BUF\",-2.00,1.00,0.00,\"\",0.00,68.00,50.00,281.00,,,,,,\n2015,5,14,\"WN\",\"854\",\"BWI\",\"BUF\",0.00,-8.00,0.00,\"\",0.00,62.00,48.00,281.00,,,,,,\n2015,5,14,\"WN\",\"1350\",\"BWI\",\"BUF\",-3.00,-5.00,0.00,\"\",0.00,63.00,47.00,281.00,,,,,,\n2015,5,14,\"WN\",\"1900\",\"BWI\",\"BUF\",31.00,18.00,0.00,\"\",0.00,62.00,44.00,281.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,14,\"WN\",\"232\",\"BWI\",\"ISP\",8.00,1.00,0.00,\"\",0.00,58.00,44.00,220.00,,,,,,\n2015,5,14,\"WN\",\"752\",\"BWI\",\"ISP\",-1.00,2.00,0.00,\"\",0.00,63.00,43.00,220.00,,,,,,\n2015,5,14,\"WN\",\"842\",\"BWI\",\"ISP\",3.00,4.00,0.00,\"\",0.00,66.00,44.00,220.00,,,,,,\n2015,5,14,\"WN\",\"2452\",\"BWI\",\"ISP\",-2.00,-15.00,0.00,\"\",0.00,57.00,43.00,220.00,,,,,,\n2015,5,14,\"WN\",\"4017\",\"BWI\",\"ISP\",10.00,18.00,0.00,\"\",0.00,68.00,45.00,220.00,1.00,0.00,8.00,0.00,9.00,\n2015,5,14,\"WN\",\"597\",\"BWI\",\"ROC\",-4.00,0.00,0.00,\"\",0.00,74.00,49.00,277.00,,,,,,\n2015,5,14,\"WN\",\"3564\",\"BWI\",\"ROC\",-1.00,-8.00,0.00,\"\",0.00,63.00,44.00,277.00,,,,,,\n2015,5,14,\"WN\",\"914\",\"CAK\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,74.00,61.00,397.00,,,,,,\n2015,5,14,\"WN\",\"4728\",\"CAK\",\"LGA\",-3.00,-15.00,0.00,\"\",0.00,78.00,62.00,397.00,,,,,,\n2015,5,14,\"WN\",\"691\",\"DAL\",\"LGA\",14.00,10.00,0.00,\"\",0.00,201.00,185.00,1381.00,,,,,,\n2015,5,14,\"WN\",\"1214\",\"DAL\",\"LGA\",4.00,-12.00,0.00,\"\",0.00,189.00,172.00,1381.00,,,,,,\n2015,5,14,\"WN\",\"2141\",\"DAL\",\"LGA\",11.00,10.00,0.00,\"\",0.00,204.00,171.00,1381.00,,,,,,\n2015,5,14,\"WN\",\"2234\",\"DAL\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,188.00,170.00,1381.00,,,,,,\n2015,5,15,\"WN\",\"255\",\"BNA\",\"LGA\",-7.00,0.00,0.00,\"\",0.00,137.00,101.00,764.00,,,,,,\n2015,5,15,\"WN\",\"2433\",\"BNA\",\"LGA\",7.00,-3.00,0.00,\"\",0.00,120.00,104.00,764.00,,,,,,\n2015,5,15,\"WN\",\"2570\",\"BNA\",\"LGA\",51.00,36.00,0.00,\"\",0.00,120.00,103.00,764.00,2.00,0.00,0.00,0.00,34.00,\n2015,5,15,\"WN\",\"381\",\"BUF\",\"BWI\",17.00,12.00,0.00,\"\",0.00,65.00,52.00,281.00,,,,,,\n2015,5,15,\"WN\",\"728\",\"BUF\",\"BWI\",-3.00,-12.00,0.00,\"\",0.00,61.00,49.00,281.00,,,,,,\n2015,5,15,\"WN\",\"842\",\"BUF\",\"BWI\",-4.00,-15.00,0.00,\"\",0.00,64.00,50.00,281.00,,,,,,\n2015,5,15,\"WN\",\"1429\",\"BUF\",\"BWI\",-5.00,-24.00,0.00,\"\",0.00,66.00,50.00,281.00,,,,,,\n2015,5,15,\"WN\",\"1528\",\"BUF\",\"BWI\",1.00,-9.00,0.00,\"\",0.00,65.00,51.00,281.00,,,,,,\n2015,5,15,\"WN\",\"2423\",\"BUF\",\"BWI\",-6.00,-20.00,0.00,\"\",0.00,61.00,50.00,281.00,,,,,,\n2015,5,15,\"WN\",\"1785\",\"BUF\",\"FLL\",-8.00,-18.00,0.00,\"\",0.00,175.00,156.00,1166.00,,,,,,\n2015,5,15,\"WN\",\"361\",\"BUF\",\"LAS\",-6.00,-20.00,0.00,\"\",0.00,286.00,273.00,1986.00,,,,,,\n2015,5,15,\"WN\",\"615\",\"BUF\",\"LAS\",4.00,13.00,0.00,\"\",0.00,299.00,276.00,1986.00,,,,,,\n2015,5,15,\"WN\",\"134\",\"BUF\",\"MCO\",-5.00,-18.00,0.00,\"\",0.00,147.00,136.00,1011.00,,,,,,\n2015,5,15,\"WN\",\"674\",\"BUF\",\"MCO\",-9.00,-22.00,0.00,\"\",0.00,147.00,132.00,1011.00,,,,,,\n2015,5,15,\"WN\",\"854\",\"BUF\",\"MCO\",-7.00,-24.00,0.00,\"\",0.00,143.00,131.00,1011.00,,,,,,\n2015,5,15,\"WN\",\"2141\",\"BUF\",\"MCO\",-3.00,-10.00,0.00,\"\",0.00,153.00,133.00,1011.00,,,,,,\n2015,5,15,\"WN\",\"717\",\"BUF\",\"MDW\",-3.00,-16.00,0.00,\"\",0.00,97.00,82.00,468.00,,,,,,\n2015,5,15,\"WN\",\"2023\",\"BUF\",\"MDW\",3.00,-13.00,0.00,\"\",0.00,89.00,75.00,468.00,,,,,,\n2015,5,15,\"WN\",\"2632\",\"BUF\",\"MDW\",0.00,-8.00,0.00,\"\",0.00,92.00,78.00,468.00,,,,,,\n2015,5,15,\"WN\",\"328\",\"BUF\",\"PHX\",32.00,69.00,0.00,\"\",0.00,327.00,310.00,1912.00,29.00,0.00,37.00,0.00,3.00,\n2015,5,15,\"WN\",\"984\",\"BUF\",\"TPA\",1.00,-15.00,0.00,\"\",0.00,149.00,135.00,1053.00,,,,,,\n2015,5,15,\"WN\",\"2824\",\"BUF\",\"TPA\",-1.00,-22.00,0.00,\"\",0.00,144.00,131.00,1053.00,,,,,,\n2015,5,15,\"WN\",\"334\",\"BWI\",\"ALB\",-3.00,-9.00,0.00,\"\",0.00,69.00,50.00,289.00,,,,,,\n2015,5,15,\"WN\",\"346\",\"BWI\",\"ALB\",9.00,11.00,0.00,\"\",0.00,67.00,54.00,289.00,,,,,,\n2015,5,15,\"WN\",\"598\",\"BWI\",\"ALB\",-5.00,-14.00,0.00,\"\",0.00,61.00,52.00,289.00,,,,,,\n2015,5,15,\"WN\",\"1269\",\"BWI\",\"ALB\",-1.00,-5.00,0.00,\"\",0.00,71.00,50.00,289.00,,,,,,\n2015,5,15,\"WN\",\"3033\",\"BWI\",\"ALB\",40.00,34.00,0.00,\"\",0.00,64.00,51.00,289.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,15,\"WN\",\"3919\",\"BWI\",\"ALB\",0.00,-4.00,0.00,\"\",0.00,66.00,55.00,289.00,,,,,,\n2015,5,15,\"WN\",\"328\",\"BWI\",\"BUF\",-5.00,3.00,0.00,\"\",0.00,73.00,48.00,281.00,,,,,,\n2015,5,15,\"WN\",\"572\",\"BWI\",\"BUF\",22.00,27.00,0.00,\"\",0.00,75.00,52.00,281.00,22.00,0.00,5.00,0.00,0.00,\n2015,5,15,\"WN\",\"819\",\"BWI\",\"BUF\",-2.00,-1.00,0.00,\"\",0.00,66.00,47.00,281.00,,,,,,\n2015,5,15,\"WN\",\"854\",\"BWI\",\"BUF\",0.00,-13.00,0.00,\"\",0.00,57.00,48.00,281.00,,,,,,\n2015,5,15,\"WN\",\"1350\",\"BWI\",\"BUF\",-4.00,-8.00,0.00,\"\",0.00,61.00,48.00,281.00,,,,,,\n2015,5,15,\"WN\",\"1900\",\"BWI\",\"BUF\",3.00,0.00,0.00,\"\",0.00,72.00,51.00,281.00,,,,,,\n2015,5,15,\"WN\",\"232\",\"BWI\",\"ISP\",4.00,6.00,0.00,\"\",0.00,67.00,44.00,220.00,,,,,,\n2015,5,15,\"WN\",\"752\",\"BWI\",\"ISP\",-1.00,0.00,0.00,\"\",0.00,61.00,45.00,220.00,,,,,,\n2015,5,15,\"WN\",\"842\",\"BWI\",\"ISP\",-1.00,-3.00,0.00,\"\",0.00,63.00,44.00,220.00,,,,,,\n2015,5,15,\"WN\",\"2452\",\"BWI\",\"ISP\",-5.00,-17.00,0.00,\"\",0.00,58.00,38.00,220.00,,,,,,\n2015,5,15,\"WN\",\"4017\",\"BWI\",\"ISP\",36.00,34.00,0.00,\"\",0.00,58.00,43.00,220.00,9.00,0.00,0.00,0.00,25.00,\n2015,5,15,\"WN\",\"597\",\"BWI\",\"ROC\",-2.00,-10.00,0.00,\"\",0.00,62.00,46.00,277.00,,,,,,\n2015,5,15,\"WN\",\"3564\",\"BWI\",\"ROC\",-7.00,-5.00,0.00,\"\",0.00,72.00,50.00,277.00,,,,,,\n2015,5,15,\"WN\",\"914\",\"CAK\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,85.00,66.00,397.00,,,,,,\n2015,5,15,\"WN\",\"4728\",\"CAK\",\"LGA\",9.00,-8.00,0.00,\"\",0.00,73.00,60.00,397.00,,,,,,\n2015,5,15,\"WN\",\"691\",\"DAL\",\"LGA\",-2.00,31.00,0.00,\"\",0.00,238.00,171.00,1381.00,0.00,0.00,31.00,0.00,0.00,\n2015,5,15,\"WN\",\"1214\",\"DAL\",\"LGA\",12.00,2.00,0.00,\"\",0.00,195.00,172.00,1381.00,,,,,,\n2015,5,15,\"WN\",\"2141\",\"DAL\",\"LGA\",2.00,-10.00,0.00,\"\",0.00,193.00,178.00,1381.00,,,,,,\n2015,5,15,\"WN\",\"2234\",\"DAL\",\"LGA\",7.00,-14.00,0.00,\"\",0.00,184.00,168.00,1381.00,,,,,,\n2015,5,15,\"WN\",\"824\",\"DEN\",\"LGA\",7.00,-20.00,0.00,\"\",0.00,208.00,188.00,1620.00,,,,,,\n2015,5,15,\"WN\",\"1370\",\"DEN\",\"LGA\",-4.00,-25.00,0.00,\"\",0.00,214.00,194.00,1620.00,,,,,,\n2015,5,15,\"WN\",\"1898\",\"FLL\",\"ALB\",2.00,-6.00,0.00,\"\",0.00,172.00,157.00,1204.00,,,,,,\n2015,5,15,\"WN\",\"4643\",\"FLL\",\"BUF\",0.00,-19.00,0.00,\"\",0.00,166.00,153.00,1166.00,,,,,,\n2015,5,15,\"WN\",\"28\",\"FLL\",\"ISP\",69.00,57.00,0.00,\"\",0.00,163.00,148.00,1092.00,57.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"WN\",\"4640\",\"FLL\",\"ISP\",-7.00,-19.00,0.00,\"\",0.00,158.00,142.00,1092.00,,,,,,\n2015,5,10,\"WN\",\"4365\",\"MDW\",\"LGA\",7.00,13.00,0.00,\"\",0.00,136.00,106.00,725.00,,,,,,\n2015,5,10,\"WN\",\"292\",\"MDW\",\"ROC\",-1.00,8.00,0.00,\"\",0.00,99.00,70.00,523.00,,,,,,\n2015,5,10,\"WN\",\"2229\",\"MDW\",\"ROC\",1.00,-3.00,0.00,\"\",0.00,91.00,69.00,523.00,,,,,,\n2015,5,10,\"WN\",\"1208\",\"MKE\",\"LGA\",408.00,397.00,0.00,\"\",0.00,124.00,110.00,738.00,306.00,0.00,0.00,0.00,91.00,\n2015,5,10,\"WN\",\"3391\",\"MKE\",\"LGA\",10.00,10.00,0.00,\"\",0.00,130.00,108.00,738.00,,,,,,\n2015,5,10,\"WN\",\"2851\",\"PBI\",\"ISP\",-3.00,8.00,0.00,\"\",0.00,171.00,152.00,1052.00,,,,,,\n2015,5,10,\"WN\",\"4818\",\"PBI\",\"ISP\",1.00,2.00,0.00,\"\",0.00,161.00,147.00,1052.00,,,,,,\n2015,5,11,\"WN\",\"12\",\"STL\",\"LGA\",43.00,57.00,0.00,\"\",0.00,159.00,149.00,888.00,12.00,0.00,14.00,0.00,31.00,\n2015,5,11,\"WN\",\"1194\",\"STL\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,138.00,121.00,888.00,,,,,,\n2015,5,11,\"WN\",\"1986\",\"STL\",\"LGA\",16.00,8.00,0.00,\"\",0.00,132.00,120.00,888.00,,,,,,\n2015,5,11,\"WN\",\"854\",\"TPA\",\"ALB\",2.00,5.00,0.00,\"\",0.00,173.00,153.00,1130.00,,,,,,\n2015,5,11,\"WN\",\"127\",\"TPA\",\"BUF\",3.00,-4.00,0.00,\"\",0.00,148.00,136.00,1053.00,,,,,,\n2015,5,11,\"WN\",\"2160\",\"TPA\",\"BUF\",2.00,2.00,0.00,\"\",0.00,155.00,136.00,1053.00,,,,,,\n2015,5,11,\"WN\",\"2423\",\"TPA\",\"ISP\",-4.00,3.00,0.00,\"\",0.00,162.00,142.00,1034.00,,,,,,\n2015,5,11,\"WN\",\"4390\",\"TPA\",\"ISP\",-4.00,-12.00,0.00,\"\",0.00,157.00,141.00,1034.00,,,,,,\n2015,5,11,\"WN\",\"719\",\"TPA\",\"ROC\",4.00,3.00,0.00,\"\",0.00,159.00,144.00,1079.00,,,,,,\n2015,5,12,\"WN\",\"223\",\"ALB\",\"BWI\",-4.00,-14.00,0.00,\"\",0.00,70.00,58.00,289.00,,,,,,\n2015,5,12,\"WN\",\"752\",\"ALB\",\"BWI\",-5.00,-20.00,0.00,\"\",0.00,65.00,56.00,289.00,,,,,,\n2015,5,12,\"WN\",\"854\",\"ALB\",\"BWI\",52.00,44.00,0.00,\"\",0.00,67.00,54.00,289.00,5.00,0.00,0.00,0.00,39.00,\n2015,5,12,\"WN\",\"1011\",\"ALB\",\"BWI\",-5.00,-6.00,0.00,\"\",0.00,79.00,57.00,289.00,,,,,,\n2015,5,12,\"WN\",\"3294\",\"ALB\",\"BWI\",0.00,-12.00,0.00,\"\",0.00,73.00,55.00,289.00,,,,,,\n2015,5,12,\"WN\",\"3917\",\"ALB\",\"BWI\",-2.00,-10.00,0.00,\"\",0.00,72.00,60.00,289.00,,,,,,\n2015,5,12,\"WN\",\"1987\",\"ALB\",\"FLL\",-1.00,-22.00,0.00,\"\",0.00,169.00,157.00,1204.00,,,,,,\n2015,5,12,\"WN\",\"346\",\"ALB\",\"LAS\",-10.00,12.00,0.00,\"\",0.00,352.00,334.00,2237.00,,,,,,\n2015,5,12,\"WN\",\"3919\",\"ALB\",\"MCO\",-7.00,-23.00,0.00,\"\",0.00,159.00,146.00,1073.00,,,,,,\n2015,5,12,\"WN\",\"4362\",\"ALB\",\"MCO\",71.00,56.00,0.00,\"\",0.00,160.00,146.00,1073.00,56.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"WN\",\"1550\",\"ALB\",\"MDW\",-2.00,4.00,0.00,\"\",0.00,141.00,124.00,717.00,,,,,,\n2015,5,12,\"WN\",\"4985\",\"ALB\",\"MDW\",6.00,9.00,0.00,\"\",0.00,138.00,119.00,717.00,,,,,,\n2015,5,12,\"WN\",\"3650\",\"ALB\",\"TPA\",-4.00,-17.00,0.00,\"\",0.00,172.00,157.00,1130.00,,,,,,\n2015,5,12,\"WN\",\"815\",\"ATL\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,126.00,97.00,762.00,,,,,,\n2015,5,12,\"WN\",\"1182\",\"ATL\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,130.00,102.00,762.00,,,,,,\n2015,5,12,\"WN\",\"2516\",\"ATL\",\"LGA\",5.00,-15.00,0.00,\"\",0.00,115.00,101.00,762.00,,,,,,\n2015,5,12,\"WN\",\"2659\",\"ATL\",\"LGA\",2.00,1.00,0.00,\"\",0.00,144.00,106.00,762.00,,,,,,\n2015,5,12,\"WN\",\"2850\",\"ATL\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,124.00,105.00,762.00,,,,,,\n2015,5,12,\"WN\",\"255\",\"BNA\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,115.00,100.00,764.00,,,,,,\n2015,5,12,\"WN\",\"2433\",\"BNA\",\"LGA\",1.00,-14.00,0.00,\"\",0.00,115.00,98.00,764.00,,,,,,\n2015,5,12,\"WN\",\"2570\",\"BNA\",\"LGA\",5.00,-9.00,0.00,\"\",0.00,121.00,98.00,764.00,,,,,,\n2015,5,16,\"WN\",\"1602\",\"DAL\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,186.00,169.00,1381.00,,,,,,\n2015,5,16,\"WN\",\"1942\",\"DAL\",\"LGA\",8.00,0.00,0.00,\"\",0.00,197.00,183.00,1381.00,,,,,,\n2015,5,16,\"WN\",\"2104\",\"DAL\",\"LGA\",1.00,2.00,0.00,\"\",0.00,206.00,178.00,1381.00,,,,,,\n2015,5,16,\"WN\",\"1412\",\"DEN\",\"LGA\",21.00,-2.00,0.00,\"\",0.00,212.00,196.00,1620.00,,,,,,\n2015,5,16,\"WN\",\"1498\",\"DEN\",\"LGA\",0.00,-2.00,0.00,\"\",0.00,228.00,212.00,1620.00,,,,,,\n2015,5,14,\"WN\",\"12\",\"STL\",\"LGA\",65.00,52.00,0.00,\"\",0.00,132.00,115.00,888.00,9.00,0.00,0.00,0.00,43.00,\n2015,5,14,\"WN\",\"1194\",\"STL\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,127.00,113.00,888.00,,,,,,\n2015,5,14,\"WN\",\"1986\",\"STL\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,120.00,108.00,888.00,,,,,,\n2015,5,14,\"WN\",\"854\",\"TPA\",\"ALB\",1.00,-7.00,0.00,\"\",0.00,162.00,148.00,1130.00,,,,,,\n2015,5,14,\"WN\",\"127\",\"TPA\",\"BUF\",8.00,8.00,0.00,\"\",0.00,155.00,142.00,1053.00,,,,,,\n2015,5,14,\"WN\",\"2160\",\"TPA\",\"BUF\",-3.00,-8.00,0.00,\"\",0.00,150.00,129.00,1053.00,,,,,,\n2015,5,14,\"WN\",\"2423\",\"TPA\",\"ISP\",0.00,3.00,0.00,\"\",0.00,158.00,137.00,1034.00,,,,,,\n2015,5,14,\"WN\",\"4390\",\"TPA\",\"ISP\",1.00,-4.00,0.00,\"\",0.00,160.00,144.00,1034.00,,,,,,\n2015,5,14,\"WN\",\"719\",\"TPA\",\"ROC\",1.00,-10.00,0.00,\"\",0.00,149.00,137.00,1079.00,,,,,,\n2015,5,15,\"WN\",\"223\",\"ALB\",\"BWI\",28.00,17.00,0.00,\"\",0.00,69.00,54.00,289.00,0.00,0.00,0.00,0.00,17.00,\n2015,5,15,\"WN\",\"752\",\"ALB\",\"BWI\",-3.00,-13.00,0.00,\"\",0.00,70.00,55.00,289.00,,,,,,\n2015,5,15,\"WN\",\"854\",\"ALB\",\"BWI\",16.00,23.00,0.00,\"\",0.00,82.00,68.00,289.00,16.00,0.00,7.00,0.00,0.00,\n2015,5,15,\"WN\",\"1011\",\"ALB\",\"BWI\",28.00,12.00,0.00,\"\",0.00,64.00,53.00,289.00,,,,,,\n2015,5,15,\"WN\",\"3294\",\"ALB\",\"BWI\",-5.00,-19.00,0.00,\"\",0.00,71.00,54.00,289.00,,,,,,\n2015,5,15,\"WN\",\"3917\",\"ALB\",\"BWI\",-6.00,-13.00,0.00,\"\",0.00,73.00,54.00,289.00,,,,,,\n2015,5,15,\"WN\",\"1987\",\"ALB\",\"FLL\",3.00,-12.00,0.00,\"\",0.00,175.00,164.00,1204.00,,,,,,\n2015,5,15,\"WN\",\"346\",\"ALB\",\"LAS\",18.00,0.00,0.00,\"\",0.00,312.00,301.00,2237.00,,,,,,\n2015,5,15,\"WN\",\"3919\",\"ALB\",\"MCO\",-1.00,-13.00,0.00,\"\",0.00,163.00,149.00,1073.00,,,,,,\n2015,5,15,\"WN\",\"4362\",\"ALB\",\"MCO\",-5.00,-8.00,0.00,\"\",0.00,172.00,154.00,1073.00,,,,,,\n2015,5,15,\"WN\",\"1550\",\"ALB\",\"MDW\",9.00,-5.00,0.00,\"\",0.00,121.00,109.00,717.00,,,,,,\n2015,5,15,\"WN\",\"4985\",\"ALB\",\"MDW\",-4.00,-10.00,0.00,\"\",0.00,129.00,107.00,717.00,,,,,,\n2015,5,15,\"WN\",\"3650\",\"ALB\",\"TPA\",-6.00,-24.00,0.00,\"\",0.00,167.00,154.00,1130.00,,,,,,\n2015,5,15,\"WN\",\"815\",\"ATL\",\"LGA\",24.00,12.00,0.00,\"\",0.00,128.00,99.00,762.00,,,,,,\n2015,5,15,\"WN\",\"1182\",\"ATL\",\"LGA\",11.00,23.00,0.00,\"\",0.00,152.00,107.00,762.00,11.00,0.00,12.00,0.00,0.00,\n2015,5,15,\"WN\",\"2516\",\"ATL\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,119.00,103.00,762.00,,,,,,\n2015,5,15,\"WN\",\"2659\",\"ATL\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,127.00,102.00,762.00,,,,,,\n2015,5,15,\"WN\",\"2850\",\"ATL\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,118.00,102.00,762.00,,,,,,\n2015,5,15,\"WN\",\"202\",\"MKE\",\"LGA\",-9.00,-30.00,0.00,\"\",0.00,114.00,101.00,738.00,,,,,,\n2015,5,15,\"WN\",\"1208\",\"MKE\",\"LGA\",7.00,-14.00,0.00,\"\",0.00,114.00,100.00,738.00,,,,,,\n2015,5,15,\"WN\",\"3391\",\"MKE\",\"LGA\",8.00,-3.00,0.00,\"\",0.00,119.00,103.00,738.00,,,,,,\n2015,5,15,\"WN\",\"2851\",\"PBI\",\"ISP\",7.00,-3.00,0.00,\"\",0.00,150.00,137.00,1052.00,,,,,,\n2015,5,15,\"WN\",\"4818\",\"PBI\",\"ISP\",3.00,-9.00,0.00,\"\",0.00,148.00,136.00,1052.00,,,,,,\n2015,5,15,\"WN\",\"2454\",\"PHX\",\"BUF\",80.00,60.00,0.00,\"\",0.00,225.00,213.00,1912.00,26.00,0.00,0.00,0.00,34.00,\n2015,5,15,\"WN\",\"719\",\"ROC\",\"BWI\",11.00,3.00,0.00,\"\",0.00,62.00,49.00,277.00,,,,,,\n2015,5,15,\"WN\",\"2749\",\"ROC\",\"BWI\",-8.00,-22.00,0.00,\"\",0.00,66.00,48.00,277.00,,,,,,\n2015,5,15,\"WN\",\"597\",\"ROC\",\"MCO\",-5.00,-12.00,0.00,\"\",0.00,153.00,140.00,1033.00,,,,,,\n2015,5,15,\"WN\",\"747\",\"ROC\",\"MDW\",7.00,-5.00,0.00,\"\",0.00,98.00,83.00,523.00,,,,,,\n2015,5,15,\"WN\",\"4712\",\"ROC\",\"MDW\",-2.00,13.00,0.00,\"\",0.00,120.00,89.00,523.00,,,,,,\n2015,5,15,\"WN\",\"4655\",\"ROC\",\"TPA\",-3.00,-7.00,0.00,\"\",0.00,161.00,147.00,1079.00,,,,,,\n2015,5,15,\"WN\",\"325\",\"ISP\",\"BWI\",-2.00,-5.00,0.00,\"\",0.00,67.00,54.00,220.00,,,,,,\n2015,5,15,\"WN\",\"580\",\"ISP\",\"BWI\",-3.00,-15.00,0.00,\"\",0.00,63.00,49.00,220.00,,,,,,\n2015,5,15,\"WN\",\"667\",\"ISP\",\"BWI\",-3.00,-7.00,0.00,\"\",0.00,71.00,51.00,220.00,,,,,,\n2015,5,15,\"WN\",\"2940\",\"ISP\",\"BWI\",-1.00,-9.00,0.00,\"\",0.00,67.00,53.00,220.00,,,,,,\n2015,5,15,\"WN\",\"3743\",\"ISP\",\"BWI\",6.00,5.00,0.00,\"\",0.00,74.00,56.00,220.00,,,,,,\n2015,5,15,\"WN\",\"752\",\"ISP\",\"FLL\",0.00,-18.00,0.00,\"\",0.00,167.00,155.00,1092.00,,,,,,\n2015,5,15,\"WN\",\"4554\",\"ISP\",\"FLL\",-5.00,-20.00,0.00,\"\",0.00,165.00,148.00,1092.00,,,,,,\n2015,5,15,\"WN\",\"663\",\"ISP\",\"MCO\",-7.00,15.00,0.00,\"\",0.00,182.00,149.00,971.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,15,\"WN\",\"4017\",\"ISP\",\"MCO\",39.00,26.00,0.00,\"\",0.00,152.00,138.00,971.00,3.00,0.00,0.00,0.00,23.00,\n2015,5,15,\"WN\",\"4575\",\"ISP\",\"MCO\",-6.00,-20.00,0.00,\"\",0.00,151.00,136.00,971.00,,,,,,\n2015,5,15,\"WN\",\"4910\",\"ISP\",\"MCO\",-1.00,5.00,0.00,\"\",0.00,176.00,154.00,971.00,,,,,,\n2015,5,15,\"WN\",\"4479\",\"ISP\",\"PBI\",-3.00,-15.00,0.00,\"\",0.00,158.00,144.00,1052.00,,,,,,\n2015,5,15,\"WN\",\"4729\",\"ISP\",\"PBI\",-6.00,-16.00,0.00,\"\",0.00,160.00,148.00,1052.00,,,,,,\n2015,5,15,\"WN\",\"208\",\"ISP\",\"TPA\",-2.00,-10.00,0.00,\"\",0.00,162.00,150.00,1034.00,,,,,,\n2015,5,15,\"WN\",\"4907\",\"ISP\",\"TPA\",-6.00,-29.00,0.00,\"\",0.00,157.00,145.00,1034.00,,,,,,\n2015,5,15,\"WN\",\"2202\",\"LAS\",\"ALB\",82.00,63.00,0.00,\"\",0.00,266.00,247.00,2237.00,63.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"WN\",\"2023\",\"LAS\",\"BUF\",25.00,6.00,0.00,\"\",0.00,246.00,227.00,1986.00,,,,,,\n2015,5,15,\"WN\",\"2528\",\"LAS\",\"BUF\",40.00,33.00,0.00,\"\",0.00,248.00,229.00,1986.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"WN\",\"178\",\"LGA\",\"ATL\",4.00,-9.00,0.00,\"\",0.00,147.00,116.00,762.00,,,,,,\n2015,5,15,\"WN\",\"2939\",\"LGA\",\"ATL\",-3.00,-21.00,0.00,\"\",0.00,152.00,116.00,762.00,,,,,,\n2015,5,15,\"WN\",\"3133\",\"LGA\",\"ATL\",0.00,-19.00,0.00,\"\",0.00,141.00,117.00,762.00,,,,,,\n2015,5,15,\"WN\",\"3391\",\"LGA\",\"ATL\",-1.00,-14.00,0.00,\"\",0.00,147.00,107.00,762.00,,,,,,\n2015,5,15,\"WN\",\"4728\",\"LGA\",\"ATL\",47.00,22.00,0.00,\"\",0.00,150.00,116.00,762.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"WN\",\"914\",\"LGA\",\"BNA\",-1.00,-23.00,0.00,\"\",0.00,128.00,108.00,764.00,,,,,,\n2015,5,15,\"WN\",\"1208\",\"LGA\",\"BNA\",3.00,-18.00,0.00,\"\",0.00,134.00,108.00,764.00,,,,,,\n2015,5,15,\"WN\",\"1370\",\"LGA\",\"BNA\",158.00,135.00,0.00,\"\",0.00,142.00,109.00,764.00,135.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"WN\",\"202\",\"LGA\",\"CAK\",-3.00,-21.00,0.00,\"\",0.00,82.00,64.00,397.00,,,,,,\n2015,5,15,\"WN\",\"534\",\"LGA\",\"CAK\",-5.00,-21.00,0.00,\"\",0.00,84.00,67.00,397.00,,,,,,\n2015,5,15,\"WN\",\"255\",\"LGA\",\"DAL\",0.00,-39.00,0.00,\"\",0.00,206.00,189.00,1381.00,,,,,,\n2015,5,15,\"WN\",\"431\",\"LGA\",\"DAL\",-2.00,-22.00,0.00,\"\",0.00,220.00,189.00,1381.00,,,,,,\n2015,5,15,\"WN\",\"2347\",\"LGA\",\"DAL\",36.00,-3.00,0.00,\"\",0.00,206.00,185.00,1381.00,,,,,,\n2015,5,15,\"WN\",\"3489\",\"LGA\",\"DAL\",-1.00,-9.00,0.00,\"\",0.00,222.00,191.00,1381.00,,,,,,\n2015,5,15,\"WN\",\"12\",\"LGA\",\"DEN\",85.00,67.00,0.00,\"\",0.00,257.00,238.00,1620.00,58.00,0.00,0.00,0.00,9.00,\n2015,5,15,\"WN\",\"165\",\"LGA\",\"DEN\",-7.00,-35.00,0.00,\"\",0.00,247.00,217.00,1620.00,,,,,,\n2015,5,15,\"WN\",\"682\",\"LGA\",\"HOU\",6.00,-17.00,0.00,\"\",0.00,217.00,197.00,1428.00,,,,,,\n2015,5,15,\"WN\",\"2778\",\"LGA\",\"HOU\",192.00,170.00,0.00,\"\",0.00,228.00,203.00,1428.00,170.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"WN\",\"3845\",\"LGA\",\"HOU\",31.00,6.00,0.00,\"\",0.00,215.00,196.00,1428.00,,,,,,\n2015,5,15,\"WN\",\"413\",\"LGA\",\"MCI\",193.00,170.00,0.00,\"\",0.00,177.00,159.00,1107.00,150.00,0.00,0.00,0.00,20.00,\n2015,5,15,\"WN\",\"479\",\"LGA\",\"MDW\",7.00,-6.00,0.00,\"\",0.00,132.00,110.00,725.00,,,,,,\n2015,5,15,\"WN\",\"777\",\"LGA\",\"MDW\",1.00,-32.00,0.00,\"\",0.00,122.00,108.00,725.00,,,,,,\n2015,5,15,\"WN\",\"868\",\"LGA\",\"MDW\",60.00,35.00,0.00,\"\",0.00,135.00,110.00,725.00,2.00,0.00,0.00,0.00,33.00,\n2015,5,15,\"WN\",\"2516\",\"LGA\",\"MDW\",2.00,-22.00,0.00,\"\",0.00,136.00,110.00,725.00,,,,,,\n2015,5,15,\"WN\",\"2529\",\"LGA\",\"MDW\",-1.00,-17.00,0.00,\"\",0.00,134.00,112.00,725.00,,,,,,\n2015,5,15,\"WN\",\"2659\",\"LGA\",\"MDW\",-1.00,-4.00,0.00,\"\",0.00,152.00,125.00,725.00,,,,,,\n2015,5,15,\"WN\",\"4123\",\"LGA\",\"MDW\",-1.00,-15.00,0.00,\"\",0.00,136.00,109.00,725.00,,,,,,\n2015,5,15,\"WN\",\"1344\",\"LGA\",\"MKE\",11.00,-2.00,0.00,\"\",0.00,137.00,112.00,738.00,,,,,,\n2015,5,15,\"WN\",\"2433\",\"LGA\",\"MKE\",-1.00,-24.00,0.00,\"\",0.00,132.00,109.00,738.00,,,,,,\n2015,5,15,\"WN\",\"4379\",\"LGA\",\"MKE\",-3.00,-19.00,0.00,\"\",0.00,129.00,108.00,738.00,,,,,,\n2015,5,15,\"WN\",\"536\",\"LGA\",\"STL\",-1.00,-29.00,0.00,\"\",0.00,152.00,132.00,888.00,,,,,,\n2015,5,15,\"WN\",\"2168\",\"LGA\",\"STL\",0.00,-10.00,0.00,\"\",0.00,150.00,129.00,888.00,,,,,,\n2015,5,15,\"WN\",\"4571\",\"LGA\",\"STL\",31.00,11.00,0.00,\"\",0.00,150.00,131.00,888.00,,,,,,\n2015,5,15,\"WN\",\"333\",\"MCI\",\"LGA\",12.00,7.00,0.00,\"\",0.00,165.00,150.00,1107.00,,,,,,\n2015,5,15,\"WN\",\"1011\",\"MCO\",\"ALB\",-1.00,28.00,0.00,\"\",0.00,194.00,143.00,1073.00,0.00,0.00,28.00,0.00,0.00,\n2015,5,15,\"WN\",\"2849\",\"MCO\",\"ALB\",-5.00,-3.00,0.00,\"\",0.00,162.00,144.00,1073.00,,,,,,\n2015,5,15,\"WN\",\"728\",\"MCO\",\"BUF\",-1.00,2.00,0.00,\"\",0.00,158.00,135.00,1011.00,,,,,,\n2015,5,15,\"WN\",\"801\",\"MCO\",\"BUF\",11.00,4.00,0.00,\"\",0.00,148.00,134.00,1011.00,,,,,,\n2015,5,15,\"WN\",\"2423\",\"MCO\",\"BUF\",-5.00,-11.00,0.00,\"\",0.00,149.00,131.00,1011.00,,,,,,\n2015,5,15,\"WN\",\"2632\",\"MCO\",\"BUF\",-2.00,-4.00,0.00,\"\",0.00,153.00,131.00,1011.00,,,,,,\n2015,5,15,\"WN\",\"293\",\"MCO\",\"ISP\",-3.00,-2.00,0.00,\"\",0.00,156.00,130.00,971.00,,,,,,\n2015,5,15,\"WN\",\"325\",\"MCO\",\"ISP\",4.00,-6.00,0.00,\"\",0.00,140.00,126.00,971.00,,,,,,\n2015,5,15,\"WN\",\"426\",\"MCO\",\"ISP\",-5.00,-12.00,0.00,\"\",0.00,143.00,127.00,971.00,,,,,,\n2015,5,15,\"WN\",\"4486\",\"MCO\",\"ISP\",-1.00,-9.00,0.00,\"\",0.00,142.00,130.00,971.00,,,,,,\n2015,5,15,\"WN\",\"3935\",\"MCO\",\"ROC\",-4.00,-5.00,0.00,\"\",0.00,154.00,134.00,1033.00,,,,,,\n2015,5,15,\"WN\",\"103\",\"MDW\",\"ALB\",16.00,18.00,0.00,\"\",0.00,117.00,88.00,717.00,0.00,0.00,2.00,0.00,16.00,\n2015,5,15,\"WN\",\"1461\",\"MDW\",\"ALB\",-3.00,-13.00,0.00,\"\",0.00,105.00,87.00,717.00,,,,,,\n2015,5,15,\"WN\",\"134\",\"MDW\",\"BUF\",0.00,-9.00,0.00,\"\",0.00,81.00,61.00,468.00,,,,,,\n2015,5,15,\"WN\",\"615\",\"MDW\",\"BUF\",1.00,-13.00,0.00,\"\",0.00,76.00,65.00,468.00,,,,,,\n2015,5,15,\"WN\",\"2241\",\"MDW\",\"BUF\",-3.00,-25.00,0.00,\"\",0.00,78.00,62.00,468.00,,,,,,\n2015,5,15,\"WN\",\"178\",\"MDW\",\"LGA\",12.00,0.00,0.00,\"\",0.00,118.00,99.00,725.00,,,,,,\n2015,5,15,\"WN\",\"682\",\"MDW\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,120.00,97.00,725.00,,,,,,\n2015,5,15,\"WN\",\"803\",\"MDW\",\"LGA\",68.00,57.00,0.00,\"\",0.00,119.00,93.00,725.00,57.00,0.00,0.00,0.00,0.00,\n2015,5,15,\"WN\",\"1713\",\"MDW\",\"LGA\",1.00,-11.00,0.00,\"\",0.00,113.00,96.00,725.00,,,,,,\n2015,5,15,\"WN\",\"1945\",\"MDW\",\"LGA\",-3.00,-10.00,0.00,\"\",0.00,123.00,98.00,725.00,,,,,,\n2015,5,15,\"WN\",\"2778\",\"MDW\",\"LGA\",16.00,0.00,0.00,\"\",0.00,109.00,93.00,725.00,,,,,,\n2015,5,15,\"WN\",\"4365\",\"MDW\",\"LGA\",13.00,-14.00,0.00,\"\",0.00,103.00,92.00,725.00,,,,,,\n2015,5,15,\"WN\",\"292\",\"MDW\",\"ROC\",7.00,11.00,0.00,\"\",0.00,94.00,66.00,523.00,,,,,,\n2015,5,15,\"WN\",\"2229\",\"MDW\",\"ROC\",5.00,3.00,0.00,\"\",0.00,93.00,69.00,523.00,,,,,,\n2015,5,16,\"WN\",\"2638\",\"STL\",\"LGA\",9.00,10.00,0.00,\"\",0.00,146.00,133.00,888.00,,,,,,\n2015,5,16,\"WN\",\"1057\",\"TPA\",\"ALB\",-4.00,-2.00,0.00,\"\",0.00,172.00,154.00,1130.00,,,,,,\n2015,5,16,\"WN\",\"3205\",\"TPA\",\"BUF\",6.00,-8.00,0.00,\"\",0.00,141.00,132.00,1053.00,,,,,,\n2015,5,16,\"WN\",\"4552\",\"TPA\",\"BUF\",-3.00,-17.00,0.00,\"\",0.00,146.00,133.00,1053.00,,,,,,\n2015,5,16,\"WN\",\"1297\",\"TPA\",\"ISP\",-1.00,0.00,0.00,\"\",0.00,161.00,147.00,1034.00,,,,,,\n2015,5,16,\"WN\",\"2547\",\"TPA\",\"ISP\",-8.00,-13.00,0.00,\"\",0.00,155.00,143.00,1034.00,,,,,,\n2015,5,16,\"WN\",\"2753\",\"TPA\",\"ROC\",0.00,-7.00,0.00,\"\",0.00,153.00,138.00,1079.00,,,,,,\n2015,5,17,\"WN\",\"223\",\"ALB\",\"BWI\",2.00,-5.00,0.00,\"\",0.00,73.00,55.00,289.00,,,,,,\n2015,5,17,\"WN\",\"752\",\"ALB\",\"BWI\",-4.00,-13.00,0.00,\"\",0.00,71.00,60.00,289.00,,,,,,\n2015,5,17,\"WN\",\"854\",\"ALB\",\"BWI\",2.00,-7.00,0.00,\"\",0.00,66.00,55.00,289.00,,,,,,\n2015,5,17,\"WN\",\"1011\",\"ALB\",\"BWI\",-6.00,-20.00,0.00,\"\",0.00,66.00,53.00,289.00,,,,,,\n2015,5,17,\"WN\",\"3294\",\"ALB\",\"BWI\",-5.00,-23.00,0.00,\"\",0.00,67.00,51.00,289.00,,,,,,\n2015,5,17,\"WN\",\"3917\",\"ALB\",\"BWI\",-5.00,-19.00,0.00,\"\",0.00,66.00,54.00,289.00,,,,,,\n2015,5,17,\"WN\",\"1987\",\"ALB\",\"FLL\",-5.00,-26.00,0.00,\"\",0.00,169.00,157.00,1204.00,,,,,,\n2015,5,17,\"WN\",\"346\",\"ALB\",\"LAS\",61.00,44.00,0.00,\"\",0.00,313.00,299.00,2237.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"WN\",\"3919\",\"ALB\",\"MCO\",-2.00,-19.00,0.00,\"\",0.00,158.00,143.00,1073.00,,,,,,\n2015,5,17,\"WN\",\"4362\",\"ALB\",\"MCO\",-5.00,-19.00,0.00,\"\",0.00,161.00,144.00,1073.00,,,,,,\n2015,5,17,\"WN\",\"1550\",\"ALB\",\"MDW\",4.00,-5.00,0.00,\"\",0.00,126.00,106.00,717.00,,,,,,\n2015,5,17,\"WN\",\"4985\",\"ALB\",\"MDW\",-2.00,0.00,0.00,\"\",0.00,137.00,104.00,717.00,,,,,,\n2015,5,17,\"WN\",\"3650\",\"ALB\",\"TPA\",-7.00,-28.00,0.00,\"\",0.00,164.00,152.00,1130.00,,,,,,\n2015,5,17,\"WN\",\"815\",\"ATL\",\"LGA\",-3.00,-9.00,0.00,\"\",0.00,134.00,112.00,762.00,,,,,,\n2015,5,17,\"WN\",\"1182\",\"ATL\",\"LGA\",0.00,12.00,0.00,\"\",0.00,152.00,108.00,762.00,,,,,,\n2015,5,17,\"WN\",\"2516\",\"ATL\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,124.00,103.00,762.00,,,,,,\n2015,5,17,\"WN\",\"2659\",\"ATL\",\"LGA\",4.00,-18.00,0.00,\"\",0.00,123.00,107.00,762.00,,,,,,\n2015,5,17,\"WN\",\"3701\",\"ATL\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,122.00,103.00,762.00,,,,,,\n2015,5,17,\"WN\",\"255\",\"BNA\",\"LGA\",-4.00,-8.00,0.00,\"\",0.00,126.00,103.00,764.00,,,,,,\n2015,5,17,\"WN\",\"2433\",\"BNA\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,118.00,101.00,764.00,,,,,,\n2015,5,17,\"WN\",\"2570\",\"BNA\",\"LGA\",6.00,-3.00,0.00,\"\",0.00,126.00,113.00,764.00,,,,,,\n2015,5,17,\"WN\",\"381\",\"BUF\",\"BWI\",-4.00,-10.00,0.00,\"\",0.00,64.00,50.00,281.00,,,,,,\n2015,5,17,\"WN\",\"728\",\"BUF\",\"BWI\",-1.00,-10.00,0.00,\"\",0.00,61.00,49.00,281.00,,,,,,\n2015,5,17,\"WN\",\"1429\",\"BUF\",\"BWI\",-3.00,-22.00,0.00,\"\",0.00,66.00,51.00,281.00,,,,,,\n2015,5,17,\"WN\",\"1528\",\"BUF\",\"BWI\",3.00,-10.00,0.00,\"\",0.00,62.00,50.00,281.00,,,,,,\n2015,5,17,\"WN\",\"2423\",\"BUF\",\"BWI\",-4.00,-16.00,0.00,\"\",0.00,63.00,51.00,281.00,,,,,,\n2015,5,17,\"WN\",\"1785\",\"BUF\",\"FLL\",-3.00,-17.00,0.00,\"\",0.00,171.00,153.00,1166.00,,,,,,\n2015,5,17,\"WN\",\"361\",\"BUF\",\"LAS\",-2.00,-31.00,0.00,\"\",0.00,271.00,255.00,1986.00,,,,,,\n2015,5,17,\"WN\",\"615\",\"BUF\",\"LAS\",0.00,-17.00,0.00,\"\",0.00,273.00,263.00,1986.00,,,,,,\n2015,5,17,\"WN\",\"134\",\"BUF\",\"MCO\",-7.00,-26.00,0.00,\"\",0.00,141.00,128.00,1011.00,,,,,,\n2015,5,17,\"WN\",\"674\",\"BUF\",\"MCO\",-6.00,-19.00,0.00,\"\",0.00,147.00,128.00,1011.00,,,,,,\n2015,5,17,\"WN\",\"854\",\"BUF\",\"MCO\",-7.00,-28.00,0.00,\"\",0.00,139.00,128.00,1011.00,,,,,,\n2015,5,17,\"WN\",\"2141\",\"BUF\",\"MCO\",-6.00,-23.00,0.00,\"\",0.00,143.00,128.00,1011.00,,,,,,\n2015,5,17,\"WN\",\"717\",\"BUF\",\"MDW\",0.00,1.00,0.00,\"\",0.00,111.00,74.00,468.00,,,,,,\n2015,5,17,\"WN\",\"2023\",\"BUF\",\"MDW\",0.00,-14.00,0.00,\"\",0.00,91.00,79.00,468.00,,,,,,\n2015,5,17,\"WN\",\"2632\",\"BUF\",\"MDW\",0.00,-16.00,0.00,\"\",0.00,84.00,72.00,468.00,,,,,,\n2015,5,17,\"WN\",\"328\",\"BUF\",\"PHX\",-1.00,-19.00,0.00,\"\",0.00,272.00,258.00,1912.00,,,,,,\n2015,5,17,\"WN\",\"984\",\"BUF\",\"TPA\",-1.00,-17.00,0.00,\"\",0.00,149.00,134.00,1053.00,,,,,,\n2015,5,17,\"WN\",\"2824\",\"BUF\",\"TPA\",-2.00,,0.00,\"\",1.00,,,1053.00,,,,,,\n2015,5,17,\"WN\",\"334\",\"BWI\",\"ALB\",1.00,-10.00,0.00,\"\",0.00,64.00,52.00,289.00,,,,,,\n2015,5,17,\"WN\",\"346\",\"BWI\",\"ALB\",-6.00,-4.00,0.00,\"\",0.00,67.00,51.00,289.00,,,,,,\n2015,5,17,\"WN\",\"598\",\"BWI\",\"ALB\",169.00,163.00,0.00,\"\",0.00,64.00,51.00,289.00,6.00,0.00,0.00,0.00,157.00,\n2015,5,17,\"WN\",\"1269\",\"BWI\",\"ALB\",3.00,-8.00,0.00,\"\",0.00,64.00,48.00,289.00,,,,,,\n2015,5,17,\"WN\",\"3033\",\"BWI\",\"ALB\",1.00,3.00,0.00,\"\",0.00,72.00,53.00,289.00,,,,,,\n2015,5,17,\"WN\",\"3919\",\"BWI\",\"ALB\",-3.00,-5.00,0.00,\"\",0.00,68.00,53.00,289.00,,,,,,\n2015,5,17,\"WN\",\"328\",\"BWI\",\"BUF\",-3.00,-3.00,0.00,\"\",0.00,65.00,46.00,281.00,,,,,,\n2015,5,17,\"WN\",\"572\",\"BWI\",\"BUF\",-5.00,-17.00,0.00,\"\",0.00,58.00,44.00,281.00,,,,,,\n2015,5,17,\"WN\",\"854\",\"BWI\",\"BUF\",-3.00,-14.00,0.00,\"\",0.00,59.00,46.00,281.00,,,,,,\n2015,5,17,\"WN\",\"1350\",\"BWI\",\"BUF\",-2.00,-9.00,0.00,\"\",0.00,58.00,47.00,281.00,,,,,,\n2015,5,17,\"WN\",\"1900\",\"BWI\",\"BUF\",14.00,10.00,0.00,\"\",0.00,71.00,45.00,281.00,,,,,,\n2015,5,17,\"WN\",\"232\",\"BWI\",\"ISP\",30.00,25.00,0.00,\"\",0.00,60.00,43.00,220.00,12.00,0.00,0.00,0.00,13.00,\n2015,5,17,\"WN\",\"752\",\"BWI\",\"ISP\",-4.00,0.00,0.00,\"\",0.00,64.00,46.00,220.00,,,,,,\n2015,5,17,\"WN\",\"2452\",\"BWI\",\"ISP\",39.00,32.00,0.00,\"\",0.00,63.00,42.00,220.00,25.00,0.00,0.00,0.00,7.00,\n2015,5,17,\"WN\",\"3793\",\"BWI\",\"ISP\",-4.00,-4.00,0.00,\"\",0.00,65.00,44.00,220.00,,,,,,\n2015,5,17,\"WN\",\"4017\",\"BWI\",\"ISP\",-5.00,-4.00,0.00,\"\",0.00,61.00,43.00,220.00,,,,,,\n2015,5,15,\"WN\",\"12\",\"STL\",\"LGA\",17.00,12.00,0.00,\"\",0.00,140.00,116.00,888.00,,,,,,\n2015,5,15,\"WN\",\"1194\",\"STL\",\"LGA\",3.00,-12.00,0.00,\"\",0.00,130.00,113.00,888.00,,,,,,\n2015,5,15,\"WN\",\"1986\",\"STL\",\"LGA\",8.00,-9.00,0.00,\"\",0.00,123.00,109.00,888.00,,,,,,\n2015,5,15,\"WN\",\"854\",\"TPA\",\"ALB\",-5.00,-11.00,0.00,\"\",0.00,164.00,152.00,1130.00,,,,,,\n2015,5,15,\"WN\",\"127\",\"TPA\",\"BUF\",-2.00,-7.00,0.00,\"\",0.00,150.00,140.00,1053.00,,,,,,\n2015,5,15,\"WN\",\"2160\",\"TPA\",\"BUF\",14.00,11.00,0.00,\"\",0.00,152.00,141.00,1053.00,,,,,,\n2015,5,15,\"WN\",\"2423\",\"TPA\",\"ISP\",72.00,83.00,0.00,\"\",0.00,166.00,140.00,1034.00,0.00,36.00,11.00,0.00,36.00,\n2015,5,15,\"WN\",\"4390\",\"TPA\",\"ISP\",-3.00,-11.00,0.00,\"\",0.00,157.00,142.00,1034.00,,,,,,\n2015,5,15,\"WN\",\"719\",\"TPA\",\"ROC\",0.00,8.00,0.00,\"\",0.00,168.00,148.00,1079.00,,,,,,\n2015,5,16,\"WN\",\"1689\",\"ALB\",\"BWI\",1.00,-5.00,0.00,\"\",0.00,69.00,47.00,289.00,,,,,,\n2015,5,16,\"WN\",\"2021\",\"ALB\",\"BWI\",-6.00,-15.00,0.00,\"\",0.00,76.00,54.00,289.00,,,,,,\n2015,5,16,\"WN\",\"2084\",\"ALB\",\"BWI\",10.00,-9.00,0.00,\"\",0.00,66.00,52.00,289.00,,,,,,\n2015,5,16,\"WN\",\"2497\",\"ALB\",\"BWI\",-6.00,-16.00,0.00,\"\",0.00,70.00,50.00,289.00,,,,,,\n2015,5,16,\"WN\",\"3922\",\"ALB\",\"BWI\",-5.00,-21.00,0.00,\"\",0.00,64.00,54.00,289.00,,,,,,\n2015,5,16,\"WN\",\"1716\",\"ALB\",\"FLL\",-8.00,-31.00,0.00,\"\",0.00,167.00,151.00,1204.00,,,,,,\n2015,5,16,\"WN\",\"1036\",\"ALB\",\"LAS\",5.00,-10.00,0.00,\"\",0.00,315.00,297.00,2237.00,,,,,,\n2015,5,16,\"WN\",\"2664\",\"ALB\",\"MCO\",-1.00,-16.00,0.00,\"\",0.00,160.00,142.00,1073.00,,,,,,\n2015,5,16,\"WN\",\"2833\",\"ALB\",\"MCO\",-1.00,-17.00,0.00,\"\",0.00,159.00,140.00,1073.00,,,,,,\n2015,5,16,\"WN\",\"1438\",\"ALB\",\"MDW\",110.00,98.00,0.00,\"\",0.00,133.00,112.00,717.00,98.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"WN\",\"3475\",\"ALB\",\"MDW\",42.00,33.00,0.00,\"\",0.00,126.00,112.00,717.00,4.00,0.00,0.00,0.00,29.00,\n2015,5,16,\"WN\",\"987\",\"ALB\",\"TPA\",-1.00,-17.00,0.00,\"\",0.00,169.00,157.00,1130.00,,,,,,\n2015,5,16,\"WN\",\"895\",\"ATL\",\"LGA\",0.00,10.00,0.00,\"\",0.00,155.00,107.00,762.00,,,,,,\n2015,5,16,\"WN\",\"1237\",\"ATL\",\"LGA\",6.00,-5.00,0.00,\"\",0.00,124.00,103.00,762.00,,,,,,\n2015,5,16,\"WN\",\"1798\",\"ATL\",\"LGA\",-2.00,-13.00,0.00,\"\",0.00,134.00,103.00,762.00,,,,,,\n2015,5,16,\"WN\",\"1859\",\"ATL\",\"LGA\",2.00,-7.00,0.00,\"\",0.00,131.00,110.00,762.00,,,,,,\n2015,5,16,\"WN\",\"2044\",\"BNA\",\"LGA\",-3.00,-2.00,0.00,\"\",0.00,131.00,109.00,764.00,,,,,,\n2015,5,16,\"WN\",\"1426\",\"BUF\",\"BWI\",12.00,3.00,0.00,\"\",0.00,66.00,53.00,281.00,,,,,,\n2015,5,16,\"WN\",\"1832\",\"BUF\",\"BWI\",-2.00,-26.00,0.00,\"\",0.00,61.00,46.00,281.00,,,,,,\n2015,5,16,\"WN\",\"2660\",\"BUF\",\"BWI\",5.00,-9.00,0.00,\"\",0.00,61.00,49.00,281.00,,,,,,\n2015,5,16,\"WN\",\"2674\",\"BUF\",\"BWI\",1.00,-23.00,0.00,\"\",0.00,56.00,45.00,281.00,,,,,,\n2015,5,16,\"WN\",\"2755\",\"BUF\",\"BWI\",-2.00,-12.00,0.00,\"\",0.00,60.00,46.00,281.00,,,,,,\n2015,5,16,\"WN\",\"2489\",\"BUF\",\"FLL\",14.00,-4.00,0.00,\"\",0.00,162.00,152.00,1166.00,,,,,,\n2015,5,16,\"WN\",\"1334\",\"BUF\",\"LAS\",1.00,-8.00,0.00,\"\",0.00,281.00,266.00,1986.00,,,,,,\n2015,5,16,\"WN\",\"2542\",\"BUF\",\"LAS\",-1.00,-35.00,0.00,\"\",0.00,271.00,257.00,1986.00,,,,,,\n2015,5,16,\"WN\",\"1579\",\"BUF\",\"MCO\",-3.00,-17.00,0.00,\"\",0.00,146.00,127.00,1011.00,,,,,,\n2015,5,16,\"WN\",\"2046\",\"BUF\",\"MCO\",-6.00,-19.00,0.00,\"\",0.00,157.00,126.00,1011.00,,,,,,\n2015,5,16,\"WN\",\"2319\",\"BUF\",\"MCO\",-6.00,-21.00,0.00,\"\",0.00,145.00,131.00,1011.00,,,,,,\n2015,5,16,\"WN\",\"2784\",\"BUF\",\"MCO\",-4.00,8.00,0.00,\"\",0.00,172.00,131.00,1011.00,,,,,,\n2015,5,16,\"WN\",\"1149\",\"BUF\",\"MDW\",-4.00,-13.00,0.00,\"\",0.00,91.00,76.00,468.00,,,,,,\n2015,5,16,\"WN\",\"2318\",\"BUF\",\"MDW\",15.00,3.00,0.00,\"\",0.00,98.00,78.00,468.00,,,,,,\n2015,5,16,\"WN\",\"4561\",\"BUF\",\"MDW\",-3.00,-19.00,0.00,\"\",0.00,89.00,77.00,468.00,,,,,,\n2015,5,16,\"WN\",\"1219\",\"BUF\",\"PHX\",8.00,-11.00,0.00,\"\",0.00,271.00,256.00,1912.00,,,,,,\n2015,5,16,\"WN\",\"3475\",\"BUF\",\"TPA\",-2.00,-20.00,0.00,\"\",0.00,147.00,133.00,1053.00,,,,,,\n2015,5,16,\"WN\",\"4641\",\"BUF\",\"TPA\",25.00,4.00,0.00,\"\",0.00,144.00,133.00,1053.00,,,,,,\n2015,5,16,\"WN\",\"1851\",\"BWI\",\"ALB\",85.00,80.00,0.00,\"\",0.00,65.00,52.00,289.00,0.00,71.00,0.00,0.00,9.00,\n2015,5,16,\"WN\",\"2114\",\"BWI\",\"ALB\",-2.00,-13.00,0.00,\"\",0.00,64.00,53.00,289.00,,,,,,\n2015,5,16,\"WN\",\"2425\",\"BWI\",\"ALB\",42.00,41.00,0.00,\"\",0.00,74.00,55.00,289.00,10.00,0.00,0.00,0.00,31.00,\n2015,5,16,\"WN\",\"2681\",\"BWI\",\"ALB\",-4.00,-10.00,0.00,\"\",0.00,69.00,57.00,289.00,,,,,,\n2015,5,16,\"WN\",\"3475\",\"BWI\",\"ALB\",37.00,37.00,0.00,\"\",0.00,70.00,56.00,289.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"WN\",\"1149\",\"BWI\",\"BUF\",-7.00,-16.00,0.00,\"\",0.00,56.00,43.00,281.00,,,,,,\n2015,5,16,\"WN\",\"1579\",\"BWI\",\"BUF\",-4.00,-5.00,0.00,\"\",0.00,64.00,48.00,281.00,,,,,,\n2015,5,16,\"WN\",\"1689\",\"BWI\",\"BUF\",18.00,9.00,0.00,\"\",0.00,61.00,49.00,281.00,,,,,,\n2015,5,16,\"WN\",\"2489\",\"BWI\",\"BUF\",14.00,9.00,0.00,\"\",0.00,60.00,47.00,281.00,,,,,,\n2015,5,16,\"WN\",\"2878\",\"BWI\",\"BUF\",0.00,-5.00,0.00,\"\",0.00,65.00,50.00,281.00,,,,,,\n2015,5,16,\"WN\",\"1056\",\"BWI\",\"ISP\",-4.00,-2.00,0.00,\"\",0.00,67.00,47.00,220.00,,,,,,\n2015,5,16,\"WN\",\"1201\",\"BWI\",\"ISP\",44.00,34.00,0.00,\"\",0.00,60.00,45.00,220.00,34.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"WN\",\"2551\",\"BWI\",\"ISP\",-4.00,-11.00,0.00,\"\",0.00,53.00,40.00,220.00,,,,,,\n2015,5,16,\"WN\",\"2836\",\"BWI\",\"ISP\",-4.00,-4.00,0.00,\"\",0.00,60.00,47.00,220.00,,,,,,\n2015,5,16,\"WN\",\"1062\",\"BWI\",\"ROC\",29.00,17.00,0.00,\"\",0.00,63.00,48.00,277.00,8.00,0.00,0.00,0.00,9.00,\n2015,5,16,\"WN\",\"2815\",\"BWI\",\"ROC\",-5.00,-10.00,0.00,\"\",0.00,65.00,49.00,277.00,,,,,,\n2015,5,16,\"WN\",\"1848\",\"CAK\",\"LGA\",1.00,-9.00,0.00,\"\",0.00,80.00,67.00,397.00,,,,,,\n2015,5,17,\"WN\",\"691\",\"DAL\",\"LGA\",3.00,-8.00,0.00,\"\",0.00,194.00,175.00,1381.00,,,,,,\n2015,5,17,\"WN\",\"1214\",\"DAL\",\"LGA\",7.00,1.00,0.00,\"\",0.00,199.00,183.00,1381.00,,,,,,\n2015,5,17,\"WN\",\"2141\",\"DAL\",\"LGA\",3.00,-12.00,0.00,\"\",0.00,190.00,179.00,1381.00,,,,,,\n2015,5,17,\"WN\",\"824\",\"DEN\",\"LGA\",0.00,-28.00,0.00,\"\",0.00,207.00,191.00,1620.00,,,,,,\n2015,5,17,\"WN\",\"1370\",\"DEN\",\"LGA\",33.00,9.00,0.00,\"\",0.00,211.00,189.00,1620.00,,,,,,\n2015,5,17,\"WN\",\"1898\",\"FLL\",\"ALB\",-7.00,-8.00,0.00,\"\",0.00,179.00,157.00,1204.00,,,,,,\n2015,5,17,\"WN\",\"4643\",\"FLL\",\"BUF\",-7.00,-5.00,0.00,\"\",0.00,187.00,153.00,1166.00,,,,,,\n2015,5,17,\"WN\",\"3568\",\"FLL\",\"ISP\",40.00,28.00,0.00,\"\",0.00,163.00,149.00,1092.00,1.00,0.00,0.00,0.00,27.00,\n2015,5,17,\"WN\",\"4640\",\"FLL\",\"ISP\",-10.00,-16.00,0.00,\"\",0.00,164.00,148.00,1092.00,,,,,,\n2015,5,17,\"WN\",\"299\",\"HOU\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,196.00,179.00,1428.00,,,,,,\n2015,5,17,\"WN\",\"1163\",\"HOU\",\"LGA\",18.00,16.00,0.00,\"\",0.00,208.00,189.00,1428.00,5.00,0.00,0.00,0.00,11.00,\n2015,5,17,\"WN\",\"2643\",\"HOU\",\"LGA\",92.00,92.00,0.00,\"\",0.00,205.00,188.00,1428.00,4.00,0.00,0.00,0.00,88.00,\n2015,5,16,\"WN\",\"1503\",\"MCO\",\"ROC\",-8.00,-10.00,0.00,\"\",0.00,153.00,135.00,1033.00,,,,,,\n2015,5,16,\"WN\",\"1705\",\"MCO\",\"ROC\",-4.00,-2.00,0.00,\"\",0.00,157.00,139.00,1033.00,,,,,,\n2015,5,16,\"WN\",\"990\",\"MDW\",\"ALB\",25.00,10.00,0.00,\"\",0.00,100.00,86.00,717.00,,,,,,\n2015,5,16,\"WN\",\"1689\",\"MDW\",\"ALB\",16.00,-5.00,0.00,\"\",0.00,94.00,85.00,717.00,,,,,,\n2015,5,16,\"WN\",\"1334\",\"MDW\",\"BUF\",6.00,-2.00,0.00,\"\",0.00,82.00,65.00,468.00,,,,,,\n2015,5,16,\"WN\",\"2660\",\"MDW\",\"BUF\",-1.00,-2.00,0.00,\"\",0.00,84.00,62.00,468.00,,,,,,\n2015,5,16,\"WN\",\"4819\",\"MDW\",\"BUF\",17.00,10.00,0.00,\"\",0.00,78.00,65.00,468.00,,,,,,\n2015,5,16,\"WN\",\"1373\",\"MDW\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,110.00,95.00,725.00,,,,,,\n2015,5,16,\"WN\",\"1479\",\"MDW\",\"LGA\",10.00,-2.00,0.00,\"\",0.00,113.00,94.00,725.00,,,,,,\n2015,5,16,\"WN\",\"1506\",\"MDW\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,117.00,98.00,725.00,,,,,,\n2015,5,16,\"WN\",\"1671\",\"MDW\",\"LGA\",15.00,11.00,0.00,\"\",0.00,116.00,99.00,725.00,,,,,,\n2015,5,16,\"WN\",\"1840\",\"MDW\",\"LGA\",97.00,96.00,0.00,\"\",0.00,134.00,117.00,725.00,96.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"WN\",\"2538\",\"MDW\",\"LGA\",30.00,11.00,0.00,\"\",0.00,111.00,99.00,725.00,,,,,,\n2015,5,16,\"WN\",\"1093\",\"MDW\",\"ROC\",-2.00,-12.00,0.00,\"\",0.00,80.00,66.00,523.00,,,,,,\n2015,5,16,\"WN\",\"2601\",\"MKE\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,117.00,100.00,738.00,,,,,,\n2015,5,16,\"WN\",\"353\",\"PBI\",\"ISP\",23.00,25.00,0.00,\"\",0.00,162.00,148.00,1052.00,8.00,0.00,2.00,0.00,15.00,\n2015,5,16,\"WN\",\"1559\",\"PBI\",\"ISP\",-1.00,-8.00,0.00,\"\",0.00,153.00,139.00,1052.00,,,,,,\n2015,5,16,\"WN\",\"2319\",\"PHX\",\"BUF\",3.00,-19.00,0.00,\"\",0.00,233.00,218.00,1912.00,,,,,,\n2015,5,16,\"WN\",\"2753\",\"ROC\",\"BWI\",21.00,18.00,0.00,\"\",0.00,72.00,54.00,277.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"WN\",\"3853\",\"ROC\",\"BWI\",-4.00,-15.00,0.00,\"\",0.00,69.00,49.00,277.00,,,,,,\n2015,5,16,\"WN\",\"1093\",\"ROC\",\"MCO\",-5.00,-13.00,0.00,\"\",0.00,152.00,136.00,1033.00,,,,,,\n2015,5,16,\"WN\",\"1735\",\"ROC\",\"MCO\",-1.00,-4.00,0.00,\"\",0.00,157.00,141.00,1033.00,,,,,,\n2015,5,16,\"WN\",\"2721\",\"ROC\",\"MDW\",-1.00,19.00,0.00,\"\",0.00,125.00,91.00,523.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,16,\"WN\",\"2815\",\"ROC\",\"TPA\",-3.00,-17.00,0.00,\"\",0.00,151.00,139.00,1079.00,,,,,,\n2015,5,17,\"WN\",\"333\",\"MCI\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,151.00,136.00,1107.00,,,,,,\n2015,5,17,\"WN\",\"1011\",\"MCO\",\"ALB\",-3.00,-10.00,0.00,\"\",0.00,158.00,141.00,1073.00,,,,,,\n2015,5,17,\"WN\",\"2849\",\"MCO\",\"ALB\",-5.00,-17.00,0.00,\"\",0.00,148.00,137.00,1073.00,,,,,,\n2015,5,17,\"WN\",\"728\",\"MCO\",\"BUF\",-5.00,-22.00,0.00,\"\",0.00,138.00,129.00,1011.00,,,,,,\n2015,5,17,\"WN\",\"801\",\"MCO\",\"BUF\",85.00,67.00,0.00,\"\",0.00,137.00,129.00,1011.00,0.00,0.00,0.00,0.00,67.00,\n2015,5,17,\"WN\",\"2423\",\"MCO\",\"BUF\",-6.00,-13.00,0.00,\"\",0.00,148.00,133.00,1011.00,,,,,,\n2015,5,17,\"WN\",\"2632\",\"MCO\",\"BUF\",-5.00,-21.00,0.00,\"\",0.00,139.00,131.00,1011.00,,,,,,\n2015,5,17,\"WN\",\"293\",\"MCO\",\"ISP\",-3.00,-16.00,0.00,\"\",0.00,142.00,130.00,971.00,,,,,,\n2015,5,17,\"WN\",\"325\",\"MCO\",\"ISP\",-1.00,-4.00,0.00,\"\",0.00,147.00,135.00,971.00,,,,,,\n2015,5,17,\"WN\",\"426\",\"MCO\",\"ISP\",1.00,9.00,0.00,\"\",0.00,158.00,142.00,971.00,,,,,,\n2015,5,17,\"WN\",\"4486\",\"MCO\",\"ISP\",-2.00,-9.00,0.00,\"\",0.00,143.00,133.00,971.00,,,,,,\n2015,5,17,\"WN\",\"3935\",\"MCO\",\"ROC\",-2.00,-4.00,0.00,\"\",0.00,153.00,137.00,1033.00,,,,,,\n2015,5,17,\"WN\",\"103\",\"MDW\",\"ALB\",5.00,-5.00,0.00,\"\",0.00,105.00,90.00,717.00,,,,,,\n2015,5,17,\"WN\",\"1461\",\"MDW\",\"ALB\",-1.00,-6.00,0.00,\"\",0.00,110.00,90.00,717.00,,,,,,\n2015,5,17,\"WN\",\"134\",\"MDW\",\"BUF\",4.00,-10.00,0.00,\"\",0.00,76.00,65.00,468.00,,,,,,\n2015,5,17,\"WN\",\"615\",\"MDW\",\"BUF\",4.00,-6.00,0.00,\"\",0.00,80.00,64.00,468.00,,,,,,\n2015,5,17,\"WN\",\"2241\",\"MDW\",\"BUF\",-3.00,-8.00,0.00,\"\",0.00,95.00,61.00,468.00,,,,,,\n2015,5,17,\"WN\",\"33\",\"MDW\",\"LGA\",1.00,1.00,0.00,\"\",0.00,130.00,93.00,725.00,,,,,,\n2015,5,17,\"WN\",\"682\",\"MDW\",\"LGA\",24.00,22.00,0.00,\"\",0.00,123.00,100.00,725.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"WN\",\"803\",\"MDW\",\"LGA\",91.00,82.00,0.00,\"\",0.00,121.00,99.00,725.00,16.00,0.00,0.00,0.00,66.00,\n2015,5,17,\"WN\",\"1945\",\"MDW\",\"LGA\",5.00,-7.00,0.00,\"\",0.00,118.00,101.00,725.00,,,,,,\n2015,5,17,\"WN\",\"2778\",\"MDW\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,112.00,95.00,725.00,,,,,,\n2015,5,17,\"WN\",\"4365\",\"MDW\",\"LGA\",34.00,18.00,0.00,\"\",0.00,114.00,99.00,725.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,17,\"WN\",\"292\",\"MDW\",\"ROC\",11.00,1.00,0.00,\"\",0.00,80.00,69.00,523.00,,,,,,\n2015,5,17,\"WN\",\"2229\",\"MDW\",\"ROC\",-3.00,-12.00,0.00,\"\",0.00,86.00,68.00,523.00,,,,,,\n2015,5,17,\"WN\",\"1208\",\"MKE\",\"LGA\",-6.00,-30.00,0.00,\"\",0.00,111.00,99.00,738.00,,,,,,\n2015,5,17,\"WN\",\"3391\",\"MKE\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,123.00,102.00,738.00,,,,,,\n2015,5,17,\"WN\",\"597\",\"BWI\",\"ROC\",-2.00,-4.00,0.00,\"\",0.00,68.00,47.00,277.00,,,,,,\n2015,5,17,\"WN\",\"3564\",\"BWI\",\"ROC\",13.00,1.00,0.00,\"\",0.00,58.00,44.00,277.00,,,,,,\n2015,5,17,\"WN\",\"3466\",\"CAK\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,85.00,67.00,397.00,,,,,,\n2015,5,17,\"WN\",\"4728\",\"CAK\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,78.00,59.00,397.00,,,,,,\n2015,5,17,\"WN\",\"2749\",\"ROC\",\"BWI\",-6.00,-25.00,0.00,\"\",0.00,61.00,45.00,277.00,,,,,,\n2015,5,17,\"WN\",\"3874\",\"ROC\",\"BWI\",321.00,310.00,0.00,\"\",0.00,59.00,44.00,277.00,0.00,0.00,0.00,0.00,310.00,\n2015,5,17,\"WN\",\"597\",\"ROC\",\"MCO\",-2.00,-7.00,0.00,\"\",0.00,155.00,135.00,1033.00,,,,,,\n2015,5,17,\"WN\",\"747\",\"ROC\",\"MDW\",-9.00,-13.00,0.00,\"\",0.00,106.00,81.00,523.00,,,,,,\n2015,5,17,\"WN\",\"4712\",\"ROC\",\"MDW\",38.00,26.00,0.00,\"\",0.00,93.00,79.00,523.00,26.00,0.00,0.00,0.00,0.00,\n2015,5,17,\"WN\",\"4655\",\"ROC\",\"TPA\",-8.00,-25.00,0.00,\"\",0.00,148.00,137.00,1079.00,,,,,,\n2015,5,17,\"WN\",\"1194\",\"STL\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,131.00,112.00,888.00,,,,,,\n2015,5,17,\"WN\",\"1986\",\"STL\",\"LGA\",17.00,13.00,0.00,\"\",0.00,136.00,118.00,888.00,,,,,,\n2015,5,17,\"WN\",\"3741\",\"STL\",\"LGA\",96.00,85.00,0.00,\"\",0.00,134.00,121.00,888.00,0.00,0.00,0.00,0.00,85.00,\n2015,5,17,\"WN\",\"854\",\"TPA\",\"ALB\",-5.00,-7.00,0.00,\"\",0.00,168.00,149.00,1130.00,,,,,,\n2015,5,17,\"WN\",\"127\",\"TPA\",\"BUF\",-7.00,-12.00,0.00,\"\",0.00,150.00,137.00,1053.00,,,,,,\n2015,5,17,\"WN\",\"2160\",\"TPA\",\"BUF\",-4.00,6.00,0.00,\"\",0.00,165.00,136.00,1053.00,,,,,,\n2015,5,17,\"WN\",\"2423\",\"TPA\",\"ISP\",56.00,54.00,0.00,\"\",0.00,153.00,139.00,1034.00,0.00,41.00,0.00,0.00,13.00,\n2015,5,17,\"WN\",\"4390\",\"TPA\",\"ISP\",-6.00,-19.00,0.00,\"\",0.00,152.00,139.00,1034.00,,,,,,\n2015,5,17,\"WN\",\"3874\",\"TPA\",\"ROC\",309.00,326.00,0.00,\"\",0.00,177.00,141.00,1079.00,0.00,55.00,17.00,0.00,254.00,\n2015,5,18,\"WN\",\"223\",\"ALB\",\"BWI\",130.00,134.00,0.00,\"\",0.00,84.00,67.00,289.00,0.00,0.00,94.00,0.00,40.00,\n2015,5,18,\"WN\",\"752\",\"ALB\",\"BWI\",19.00,5.00,0.00,\"\",0.00,66.00,56.00,289.00,,,,,,\n2015,5,18,\"WN\",\"854\",\"ALB\",\"BWI\",0.00,-2.00,0.00,\"\",0.00,73.00,59.00,289.00,,,,,,\n2015,5,18,\"WN\",\"1011\",\"ALB\",\"BWI\",28.00,16.00,0.00,\"\",0.00,68.00,52.00,289.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,18,\"WN\",\"3294\",\"ALB\",\"BWI\",-2.00,-22.00,0.00,\"\",0.00,65.00,50.00,289.00,,,,,,\n2015,5,18,\"WN\",\"3917\",\"ALB\",\"BWI\",36.00,18.00,0.00,\"\",0.00,62.00,46.00,289.00,18.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"WN\",\"1987\",\"ALB\",\"FLL\",-4.00,-28.00,0.00,\"\",0.00,166.00,155.00,1204.00,,,,,,\n2015,5,18,\"WN\",\"346\",\"ALB\",\"LAS\",7.00,-5.00,0.00,\"\",0.00,318.00,303.00,2237.00,,,,,,\n2015,5,18,\"WN\",\"3919\",\"ALB\",\"MCO\",-5.00,-24.00,0.00,\"\",0.00,156.00,138.00,1073.00,,,,,,\n2015,5,18,\"WN\",\"4362\",\"ALB\",\"MCO\",-7.00,-9.00,0.00,\"\",0.00,173.00,138.00,1073.00,,,,,,\n2015,5,18,\"WN\",\"1550\",\"ALB\",\"MDW\",95.00,113.00,0.00,\"\",0.00,153.00,111.00,717.00,10.00,0.00,18.00,0.00,85.00,\n2015,5,18,\"WN\",\"4985\",\"ALB\",\"MDW\",-3.00,-4.00,0.00,\"\",0.00,134.00,106.00,717.00,,,,,,\n2015,5,18,\"WN\",\"3650\",\"ALB\",\"TPA\",1.00,-23.00,0.00,\"\",0.00,161.00,146.00,1130.00,,,,,,\n2015,5,18,\"WN\",\"815\",\"ATL\",\"LGA\",60.00,112.00,0.00,\"\",0.00,192.00,119.00,762.00,43.00,0.00,52.00,0.00,17.00,\n2015,5,18,\"WN\",\"1182\",\"ATL\",\"LGA\",205.00,232.00,0.00,\"\",0.00,167.00,115.00,762.00,0.00,180.00,27.00,0.00,25.00,\n2015,5,18,\"WN\",\"2516\",\"ATL\",\"LGA\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,18,\"WN\",\"2659\",\"ATL\",\"LGA\",211.00,256.00,0.00,\"\",0.00,190.00,114.00,762.00,0.00,0.00,256.00,0.00,0.00,\n2015,5,18,\"WN\",\"2850\",\"ATL\",\"LGA\",0.00,54.00,0.00,\"\",0.00,189.00,173.00,762.00,0.00,0.00,54.00,0.00,0.00,\n2015,5,18,\"WN\",\"255\",\"BNA\",\"LGA\",106.00,121.00,0.00,\"\",0.00,145.00,123.00,764.00,106.00,0.00,15.00,0.00,0.00,\n2015,5,18,\"WN\",\"2433\",\"BNA\",\"LGA\",212.00,222.00,0.00,\"\",0.00,140.00,126.00,764.00,0.00,212.00,10.00,0.00,0.00,\n2015,5,18,\"WN\",\"2570\",\"BNA\",\"LGA\",222.00,243.00,0.00,\"\",0.00,156.00,131.00,764.00,0.00,0.00,243.00,0.00,0.00,\n2015,5,18,\"WN\",\"202\",\"MKE\",\"LGA\",248.00,242.00,0.00,\"\",0.00,129.00,103.00,738.00,0.00,242.00,0.00,0.00,0.00,\n2015,5,18,\"WN\",\"1208\",\"MKE\",\"LGA\",78.00,56.00,0.00,\"\",0.00,113.00,102.00,738.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,18,\"WN\",\"3391\",\"MKE\",\"LGA\",133.00,179.00,0.00,\"\",0.00,176.00,149.00,738.00,0.00,101.00,46.00,0.00,32.00,\n2015,5,18,\"WN\",\"2851\",\"PBI\",\"ISP\",-5.00,-9.00,0.00,\"\",0.00,156.00,144.00,1052.00,,,,,,\n2015,5,18,\"WN\",\"4818\",\"PBI\",\"ISP\",22.00,21.00,0.00,\"\",0.00,159.00,141.00,1052.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,18,\"WN\",\"2454\",\"PHX\",\"BUF\",19.00,-9.00,0.00,\"\",0.00,217.00,207.00,1912.00,,,,,,\n2015,5,17,\"WN\",\"325\",\"ISP\",\"BWI\",6.00,-4.00,0.00,\"\",0.00,60.00,50.00,220.00,,,,,,\n2015,5,17,\"WN\",\"580\",\"ISP\",\"BWI\",17.00,8.00,0.00,\"\",0.00,66.00,52.00,220.00,,,,,,\n2015,5,17,\"WN\",\"667\",\"ISP\",\"BWI\",-5.00,-16.00,0.00,\"\",0.00,64.00,45.00,220.00,,,,,,\n2015,5,17,\"WN\",\"2940\",\"ISP\",\"BWI\",1.00,-3.00,0.00,\"\",0.00,71.00,51.00,220.00,,,,,,\n2015,5,17,\"WN\",\"4878\",\"ISP\",\"BWI\",-5.00,-15.00,0.00,\"\",0.00,65.00,52.00,220.00,,,,,,\n2015,5,17,\"WN\",\"752\",\"ISP\",\"FLL\",7.00,-15.00,0.00,\"\",0.00,163.00,150.00,1092.00,,,,,,\n2015,5,17,\"WN\",\"4554\",\"ISP\",\"FLL\",-5.00,-22.00,0.00,\"\",0.00,163.00,142.00,1092.00,,,,,,\n2015,5,17,\"WN\",\"663\",\"ISP\",\"MCO\",9.00,0.00,0.00,\"\",0.00,151.00,134.00,971.00,,,,,,\n2015,5,17,\"WN\",\"4017\",\"ISP\",\"MCO\",-3.00,-22.00,0.00,\"\",0.00,146.00,131.00,971.00,,,,,,\n2015,5,17,\"WN\",\"4575\",\"ISP\",\"MCO\",-10.00,-32.00,0.00,\"\",0.00,143.00,130.00,971.00,,,,,,\n2015,5,17,\"WN\",\"4910\",\"ISP\",\"MCO\",-2.00,-29.00,0.00,\"\",0.00,143.00,128.00,971.00,,,,,,\n2015,5,17,\"WN\",\"4479\",\"ISP\",\"PBI\",-2.00,-8.00,0.00,\"\",0.00,164.00,145.00,1052.00,,,,,,\n2015,5,17,\"WN\",\"4729\",\"ISP\",\"PBI\",-8.00,-24.00,0.00,\"\",0.00,154.00,141.00,1052.00,,,,,,\n2015,5,17,\"WN\",\"208\",\"ISP\",\"TPA\",-6.00,-22.00,0.00,\"\",0.00,154.00,142.00,1034.00,,,,,,\n2015,5,17,\"WN\",\"4907\",\"ISP\",\"TPA\",5.00,-8.00,0.00,\"\",0.00,167.00,150.00,1034.00,,,,,,\n2015,5,17,\"WN\",\"2202\",\"LAS\",\"ALB\",64.00,48.00,0.00,\"\",0.00,269.00,251.00,2237.00,37.00,0.00,0.00,0.00,11.00,\n2015,5,17,\"WN\",\"2023\",\"LAS\",\"BUF\",-2.00,-16.00,0.00,\"\",0.00,251.00,225.00,1986.00,,,,,,\n2015,5,17,\"WN\",\"2528\",\"LAS\",\"BUF\",29.00,6.00,0.00,\"\",0.00,232.00,217.00,1986.00,,,,,,\n2015,5,17,\"WN\",\"178\",\"LGA\",\"ATL\",-6.00,-22.00,0.00,\"\",0.00,144.00,105.00,762.00,,,,,,\n2015,5,17,\"WN\",\"2939\",\"LGA\",\"ATL\",-2.00,-31.00,0.00,\"\",0.00,141.00,107.00,762.00,,,,,,\n2015,5,17,\"WN\",\"3133\",\"LGA\",\"ATL\",-1.00,-11.00,0.00,\"\",0.00,150.00,108.00,762.00,,,,,,\n2015,5,17,\"WN\",\"3391\",\"LGA\",\"ATL\",0.00,-9.00,0.00,\"\",0.00,151.00,100.00,762.00,,,,,,\n2015,5,17,\"WN\",\"4728\",\"LGA\",\"ATL\",-6.00,-49.00,0.00,\"\",0.00,132.00,104.00,762.00,,,,,,\n2015,5,17,\"WN\",\"914\",\"LGA\",\"BNA\",-5.00,-27.00,0.00,\"\",0.00,128.00,105.00,764.00,,,,,,\n2015,5,17,\"WN\",\"1208\",\"LGA\",\"BNA\",-7.00,-40.00,0.00,\"\",0.00,122.00,104.00,764.00,,,,,,\n2015,5,17,\"WN\",\"1370\",\"LGA\",\"BNA\",13.00,2.00,0.00,\"\",0.00,154.00,115.00,764.00,,,,,,\n2015,5,17,\"WN\",\"202\",\"LGA\",\"CAK\",-6.00,-15.00,0.00,\"\",0.00,91.00,59.00,397.00,,,,,,\n2015,5,17,\"WN\",\"534\",\"LGA\",\"CAK\",-4.00,-17.00,0.00,\"\",0.00,87.00,60.00,397.00,,,,,,\n2015,5,17,\"WN\",\"255\",\"LGA\",\"DAL\",-7.00,-8.00,0.00,\"\",0.00,244.00,222.00,1381.00,,,,,,\n2015,5,17,\"WN\",\"431\",\"LGA\",\"DAL\",-8.00,-13.00,0.00,\"\",0.00,235.00,191.00,1381.00,,,,,,\n2015,5,17,\"WN\",\"2347\",\"LGA\",\"DAL\",-1.00,-29.00,0.00,\"\",0.00,217.00,185.00,1381.00,,,,,,\n2015,5,17,\"WN\",\"165\",\"LGA\",\"DEN\",-2.00,-26.00,0.00,\"\",0.00,251.00,222.00,1620.00,,,,,,\n2015,5,17,\"WN\",\"3741\",\"LGA\",\"DEN\",100.00,71.00,0.00,\"\",0.00,246.00,223.00,1620.00,0.00,0.00,11.00,0.00,60.00,\n2015,5,17,\"WN\",\"682\",\"LGA\",\"HOU\",30.00,6.00,0.00,\"\",0.00,216.00,197.00,1428.00,,,,,,\n2015,5,17,\"WN\",\"2778\",\"LGA\",\"HOU\",-3.00,6.00,0.00,\"\",0.00,259.00,213.00,1428.00,,,,,,\n2015,5,17,\"WN\",\"413\",\"LGA\",\"MCI\",16.00,-9.00,0.00,\"\",0.00,175.00,151.00,1107.00,,,,,,\n2015,5,17,\"WN\",\"479\",\"LGA\",\"MDW\",-1.00,-13.00,0.00,\"\",0.00,133.00,102.00,725.00,,,,,,\n2015,5,17,\"WN\",\"777\",\"LGA\",\"MDW\",4.00,-20.00,0.00,\"\",0.00,131.00,105.00,725.00,,,,,,\n2015,5,17,\"WN\",\"868\",\"LGA\",\"MDW\",80.00,55.00,0.00,\"\",0.00,135.00,104.00,725.00,0.00,0.00,0.00,0.00,55.00,\n2015,5,17,\"WN\",\"2516\",\"LGA\",\"MDW\",-3.00,-24.00,0.00,\"\",0.00,139.00,103.00,725.00,,,,,,\n2015,5,17,\"WN\",\"2529\",\"LGA\",\"MDW\",0.00,-22.00,0.00,\"\",0.00,128.00,105.00,725.00,,,,,,\n2015,5,17,\"WN\",\"2659\",\"LGA\",\"MDW\",13.00,3.00,0.00,\"\",0.00,145.00,104.00,725.00,,,,,,\n2015,5,17,\"WN\",\"4123\",\"LGA\",\"MDW\",-3.00,-8.00,0.00,\"\",0.00,145.00,104.00,725.00,,,,,,\n2015,5,17,\"WN\",\"1344\",\"LGA\",\"MKE\",12.00,-5.00,0.00,\"\",0.00,133.00,103.00,738.00,,,,,,\n2015,5,17,\"WN\",\"2433\",\"LGA\",\"MKE\",-6.00,-26.00,0.00,\"\",0.00,135.00,104.00,738.00,,,,,,\n2015,5,17,\"WN\",\"943\",\"LGA\",\"STL\",-4.00,-27.00,0.00,\"\",0.00,137.00,122.00,888.00,,,,,,\n2015,5,17,\"WN\",\"2643\",\"LGA\",\"STL\",93.00,63.00,0.00,\"\",0.00,150.00,122.00,888.00,0.00,0.00,0.00,0.00,63.00,\n2015,5,17,\"WN\",\"4571\",\"LGA\",\"STL\",-4.00,-5.00,0.00,\"\",0.00,169.00,125.00,888.00,,,,,,\n2015,5,18,\"WN\",\"381\",\"BUF\",\"BWI\",28.00,20.00,0.00,\"\",0.00,62.00,47.00,281.00,0.00,16.00,0.00,0.00,4.00,\n2015,5,18,\"WN\",\"728\",\"BUF\",\"BWI\",0.00,-2.00,0.00,\"\",0.00,68.00,49.00,281.00,,,,,,\n2015,5,18,\"WN\",\"842\",\"BUF\",\"BWI\",-6.00,-20.00,0.00,\"\",0.00,61.00,50.00,281.00,,,,,,\n2015,5,18,\"WN\",\"1429\",\"BUF\",\"BWI\",0.00,-19.00,0.00,\"\",0.00,66.00,48.00,281.00,,,,,,\n2015,5,18,\"WN\",\"1528\",\"BUF\",\"BWI\",20.00,4.00,0.00,\"\",0.00,59.00,47.00,281.00,,,,,,\n2015,5,18,\"WN\",\"2423\",\"BUF\",\"BWI\",0.00,-15.00,0.00,\"\",0.00,60.00,49.00,281.00,,,,,,\n2015,5,18,\"WN\",\"1785\",\"BUF\",\"FLL\",-5.00,-13.00,0.00,\"\",0.00,177.00,153.00,1166.00,,,,,,\n2015,5,18,\"WN\",\"361\",\"BUF\",\"LAS\",-2.00,-13.00,0.00,\"\",0.00,289.00,268.00,1986.00,,,,,,\n2015,5,18,\"WN\",\"615\",\"BUF\",\"LAS\",-1.00,-1.00,0.00,\"\",0.00,290.00,272.00,1986.00,,,,,,\n2015,5,18,\"WN\",\"134\",\"BUF\",\"MCO\",-3.00,-16.00,0.00,\"\",0.00,147.00,130.00,1011.00,,,,,,\n2015,5,18,\"WN\",\"674\",\"BUF\",\"MCO\",-2.00,-18.00,0.00,\"\",0.00,144.00,126.00,1011.00,,,,,,\n2015,5,18,\"WN\",\"854\",\"BUF\",\"MCO\",36.00,20.00,0.00,\"\",0.00,144.00,130.00,1011.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,18,\"WN\",\"2141\",\"BUF\",\"MCO\",-6.00,-25.00,0.00,\"\",0.00,141.00,126.00,1011.00,,,,,,\n2015,5,18,\"WN\",\"717\",\"BUF\",\"MDW\",-4.00,-15.00,0.00,\"\",0.00,99.00,73.00,468.00,,,,,,\n2015,5,18,\"WN\",\"2023\",\"BUF\",\"MDW\",-2.00,-1.00,0.00,\"\",0.00,106.00,81.00,468.00,,,,,,\n2015,5,18,\"WN\",\"2632\",\"BUF\",\"MDW\",-2.00,-10.00,0.00,\"\",0.00,92.00,77.00,468.00,,,,,,\n2015,5,18,\"WN\",\"328\",\"BUF\",\"PHX\",0.00,-3.00,0.00,\"\",0.00,287.00,270.00,1912.00,,,,,,\n2015,5,18,\"WN\",\"984\",\"BUF\",\"TPA\",-2.00,-21.00,0.00,\"\",0.00,146.00,131.00,1053.00,,,,,,\n2015,5,18,\"WN\",\"2824\",\"BUF\",\"TPA\",12.00,-5.00,0.00,\"\",0.00,148.00,135.00,1053.00,,,,,,\n2015,5,18,\"WN\",\"334\",\"BWI\",\"ALB\",22.00,22.00,0.00,\"\",0.00,75.00,55.00,289.00,4.00,0.00,0.00,0.00,18.00,\n2015,5,18,\"WN\",\"346\",\"BWI\",\"ALB\",-3.00,5.00,0.00,\"\",0.00,73.00,54.00,289.00,,,,,,\n2015,5,18,\"WN\",\"598\",\"BWI\",\"ALB\",56.00,63.00,0.00,\"\",0.00,77.00,57.00,289.00,31.00,0.00,7.00,0.00,25.00,\n2015,5,18,\"WN\",\"1269\",\"BWI\",\"ALB\",,,1.00,\"A\",0.00,,,289.00,,,,,,\n2015,5,18,\"WN\",\"3033\",\"BWI\",\"ALB\",47.00,40.00,0.00,\"\",0.00,63.00,51.00,289.00,0.00,10.00,0.00,0.00,30.00,\n2015,5,18,\"WN\",\"3919\",\"BWI\",\"ALB\",-2.00,-5.00,0.00,\"\",0.00,67.00,54.00,289.00,,,,,,\n2015,5,18,\"WN\",\"328\",\"BWI\",\"BUF\",3.00,-2.00,0.00,\"\",0.00,60.00,50.00,281.00,,,,,,\n2015,5,18,\"WN\",\"572\",\"BWI\",\"BUF\",15.00,6.00,0.00,\"\",0.00,61.00,49.00,281.00,,,,,,\n2015,5,18,\"WN\",\"819\",\"BWI\",\"BUF\",-3.00,-8.00,0.00,\"\",0.00,60.00,46.00,281.00,,,,,,\n2015,5,18,\"WN\",\"854\",\"BWI\",\"BUF\",22.00,39.00,0.00,\"\",0.00,87.00,47.00,281.00,22.00,0.00,17.00,0.00,0.00,\n2015,5,18,\"WN\",\"1350\",\"BWI\",\"BUF\",15.00,16.00,0.00,\"\",0.00,66.00,49.00,281.00,15.00,0.00,1.00,0.00,0.00,\n2015,5,18,\"WN\",\"1900\",\"BWI\",\"BUF\",92.00,80.00,0.00,\"\",0.00,63.00,45.00,281.00,0.00,78.00,0.00,0.00,2.00,\n2015,5,18,\"WN\",\"232\",\"BWI\",\"ISP\",,,1.00,\"A\",0.00,,,220.00,,,,,,\n2015,5,18,\"WN\",\"752\",\"BWI\",\"ISP\",10.00,8.00,0.00,\"\",0.00,58.00,46.00,220.00,,,,,,\n2015,5,18,\"WN\",\"842\",\"BWI\",\"ISP\",-1.00,-6.00,0.00,\"\",0.00,60.00,44.00,220.00,,,,,,\n2015,5,18,\"WN\",\"2452\",\"BWI\",\"ISP\",284.00,285.00,0.00,\"\",0.00,71.00,44.00,220.00,0.00,104.00,1.00,0.00,180.00,\n2015,5,18,\"WN\",\"4017\",\"BWI\",\"ISP\",26.00,19.00,0.00,\"\",0.00,53.00,41.00,220.00,9.00,0.00,0.00,0.00,10.00,\n2015,5,18,\"WN\",\"597\",\"BWI\",\"ROC\",12.00,15.00,0.00,\"\",0.00,73.00,49.00,277.00,12.00,0.00,3.00,0.00,0.00,\n2015,5,18,\"WN\",\"3564\",\"BWI\",\"ROC\",,,1.00,\"A\",0.00,,,277.00,,,,,,\n2015,5,18,\"WN\",\"914\",\"CAK\",\"LGA\",18.00,,0.00,\"\",1.00,,,397.00,,,,,,\n2015,5,18,\"WN\",\"4728\",\"CAK\",\"LGA\",269.00,,0.00,\"\",1.00,,,397.00,,,,,,\n2015,5,18,\"WN\",\"691\",\"DAL\",\"LGA\",134.00,134.00,0.00,\"\",0.00,205.00,186.00,1381.00,0.00,0.00,134.00,0.00,0.00,\n2015,5,18,\"WN\",\"1214\",\"DAL\",\"LGA\",150.00,159.00,0.00,\"\",0.00,214.00,184.00,1381.00,0.00,0.00,153.00,0.00,6.00,\n2015,5,18,\"WN\",\"2141\",\"DAL\",\"LGA\",6.00,6.00,0.00,\"\",0.00,205.00,186.00,1381.00,,,,,,\n2015,5,18,\"WN\",\"2234\",\"DAL\",\"LGA\",1.00,6.00,0.00,\"\",0.00,210.00,196.00,1381.00,,,,,,\n2015,5,18,\"WN\",\"824\",\"DEN\",\"LGA\",7.00,58.00,0.00,\"\",0.00,286.00,231.00,1620.00,7.00,0.00,51.00,0.00,0.00,\n2015,5,18,\"WN\",\"1370\",\"DEN\",\"LGA\",107.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,18,\"WN\",\"1898\",\"FLL\",\"ALB\",-6.00,-12.00,0.00,\"\",0.00,174.00,160.00,1204.00,,,,,,\n2015,5,18,\"WN\",\"4643\",\"FLL\",\"BUF\",-7.00,-22.00,0.00,\"\",0.00,170.00,153.00,1166.00,,,,,,\n2015,5,18,\"WN\",\"28\",\"FLL\",\"ISP\",22.00,13.00,0.00,\"\",0.00,166.00,149.00,1092.00,,,,,,\n2015,5,18,\"WN\",\"4640\",\"FLL\",\"ISP\",-8.00,-10.00,0.00,\"\",0.00,168.00,150.00,1092.00,,,,,,\n2015,5,18,\"WN\",\"12\",\"STL\",\"LGA\",162.00,167.00,0.00,\"\",0.00,150.00,135.00,888.00,76.00,0.00,5.00,0.00,86.00,\n2015,5,18,\"WN\",\"1194\",\"STL\",\"LGA\",-3.00,,0.00,\"\",1.00,,,888.00,,,,,,\n2015,5,18,\"WN\",\"1986\",\"STL\",\"LGA\",,,1.00,\"C\",0.00,,,888.00,,,,,,\n2015,5,17,\"WN\",\"2851\",\"PBI\",\"ISP\",-2.00,-4.00,0.00,\"\",0.00,158.00,140.00,1052.00,,,,,,\n2015,5,17,\"WN\",\"4818\",\"PBI\",\"ISP\",6.00,0.00,0.00,\"\",0.00,154.00,142.00,1052.00,,,,,,\n2015,5,17,\"WN\",\"2454\",\"PHX\",\"BUF\",5.00,-16.00,0.00,\"\",0.00,224.00,212.00,1912.00,,,,,,\n2015,5,18,\"WN\",\"299\",\"HOU\",\"LGA\",268.00,271.00,0.00,\"\",0.00,213.00,201.00,1428.00,0.00,0.00,124.00,0.00,147.00,\n2015,5,18,\"WN\",\"536\",\"HOU\",\"LGA\",202.00,,0.00,\"\",1.00,,,1428.00,,,,,,\n2015,5,18,\"WN\",\"1163\",\"HOU\",\"LGA\",83.00,105.00,0.00,\"\",0.00,232.00,198.00,1428.00,23.00,0.00,22.00,0.00,60.00,\n2015,5,18,\"WN\",\"325\",\"ISP\",\"BWI\",8.00,8.00,0.00,\"\",0.00,70.00,59.00,220.00,,,,,,\n2015,5,18,\"WN\",\"580\",\"ISP\",\"BWI\",-2.00,-18.00,0.00,\"\",0.00,59.00,46.00,220.00,,,,,,\n2015,5,18,\"WN\",\"667\",\"ISP\",\"BWI\",-2.00,-17.00,0.00,\"\",0.00,60.00,46.00,220.00,,,,,,\n2015,5,18,\"WN\",\"2940\",\"ISP\",\"BWI\",-4.00,-16.00,0.00,\"\",0.00,63.00,49.00,220.00,,,,,,\n2015,5,18,\"WN\",\"3743\",\"ISP\",\"BWI\",42.00,29.00,0.00,\"\",0.00,62.00,51.00,220.00,29.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"WN\",\"752\",\"ISP\",\"FLL\",15.00,-16.00,0.00,\"\",0.00,154.00,144.00,1092.00,,,,,,\n2015,5,18,\"WN\",\"4554\",\"ISP\",\"FLL\",8.00,-12.00,0.00,\"\",0.00,160.00,144.00,1092.00,,,,,,\n2015,5,18,\"WN\",\"663\",\"ISP\",\"MCO\",-2.00,-22.00,0.00,\"\",0.00,140.00,128.00,971.00,,,,,,\n2015,5,18,\"WN\",\"4017\",\"ISP\",\"MCO\",19.00,-7.00,0.00,\"\",0.00,139.00,126.00,971.00,,,,,,\n2015,5,18,\"WN\",\"4575\",\"ISP\",\"MCO\",6.00,-11.00,0.00,\"\",0.00,148.00,131.00,971.00,,,,,,\n2015,5,18,\"WN\",\"4910\",\"ISP\",\"MCO\",9.00,-21.00,0.00,\"\",0.00,140.00,123.00,971.00,,,,,,\n2015,5,18,\"WN\",\"4479\",\"ISP\",\"PBI\",-3.00,-22.00,0.00,\"\",0.00,151.00,136.00,1052.00,,,,,,\n2015,5,18,\"WN\",\"4729\",\"ISP\",\"PBI\",-6.00,-24.00,0.00,\"\",0.00,152.00,139.00,1052.00,,,,,,\n2015,5,18,\"WN\",\"208\",\"ISP\",\"TPA\",-2.00,2.00,0.00,\"\",0.00,174.00,136.00,1034.00,,,,,,\n2015,5,18,\"WN\",\"4907\",\"ISP\",\"TPA\",12.00,-15.00,0.00,\"\",0.00,153.00,137.00,1034.00,,,,,,\n2015,5,18,\"WN\",\"2202\",\"LAS\",\"ALB\",77.00,55.00,0.00,\"\",0.00,263.00,247.00,2237.00,55.00,0.00,0.00,0.00,0.00,\n2015,5,18,\"WN\",\"2023\",\"LAS\",\"BUF\",-5.00,-14.00,0.00,\"\",0.00,256.00,224.00,1986.00,,,,,,\n2015,5,18,\"WN\",\"2528\",\"LAS\",\"BUF\",-3.00,-8.00,0.00,\"\",0.00,250.00,221.00,1986.00,,,,,,\n2015,5,18,\"WN\",\"178\",\"LGA\",\"ATL\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,18,\"WN\",\"2939\",\"LGA\",\"ATL\",63.00,14.00,0.00,\"\",0.00,121.00,99.00,762.00,,,,,,\n2015,5,18,\"WN\",\"3133\",\"LGA\",\"ATL\",-2.00,-22.00,0.00,\"\",0.00,140.00,101.00,762.00,,,,,,\n2015,5,18,\"WN\",\"3391\",\"LGA\",\"ATL\",187.00,186.00,0.00,\"\",0.00,159.00,104.00,762.00,8.00,0.00,0.00,0.00,178.00,\n2015,5,18,\"WN\",\"4728\",\"LGA\",\"ATL\",,,1.00,\"C\",0.00,,,762.00,,,,,,\n2015,5,18,\"WN\",\"914\",\"LGA\",\"BNA\",213.00,181.00,0.00,\"\",0.00,118.00,104.00,764.00,0.00,0.00,5.00,0.00,176.00,\n2015,5,18,\"WN\",\"1208\",\"LGA\",\"BNA\",68.00,44.00,0.00,\"\",0.00,131.00,106.00,764.00,8.00,0.00,0.00,0.00,36.00,\n2015,5,18,\"WN\",\"1370\",\"LGA\",\"BNA\",,,1.00,\"C\",0.00,,,764.00,,,,,,\n2015,5,18,\"WN\",\"202\",\"LGA\",\"CAK\",230.00,212.00,0.00,\"\",0.00,82.00,60.00,397.00,0.00,0.00,0.00,0.00,212.00,\n2015,5,18,\"WN\",\"534\",\"LGA\",\"CAK\",277.00,256.00,0.00,\"\",0.00,79.00,62.00,397.00,0.00,0.00,0.00,0.00,256.00,\n2015,5,18,\"WN\",\"255\",\"LGA\",\"DAL\",130.00,86.00,0.00,\"\",0.00,201.00,187.00,1381.00,6.00,0.00,0.00,0.00,80.00,\n2015,5,18,\"WN\",\"431\",\"LGA\",\"DAL\",-1.00,-38.00,0.00,\"\",0.00,203.00,183.00,1381.00,,,,,,\n2015,5,18,\"WN\",\"2347\",\"LGA\",\"DAL\",129.00,135.00,0.00,\"\",0.00,251.00,196.00,1381.00,0.00,0.00,6.00,0.00,129.00,\n2015,5,18,\"WN\",\"3489\",\"LGA\",\"DAL\",-2.00,-8.00,0.00,\"\",0.00,224.00,197.00,1381.00,,,,,,\n2015,5,18,\"WN\",\"12\",\"LGA\",\"DEN\",174.00,211.00,0.00,\"\",0.00,312.00,231.00,1620.00,7.00,0.00,37.00,0.00,167.00,\n2015,5,18,\"WN\",\"165\",\"LGA\",\"DEN\",329.00,322.00,0.00,\"\",0.00,268.00,222.00,1620.00,20.00,0.00,0.00,0.00,302.00,\n2015,5,18,\"WN\",\"682\",\"LGA\",\"HOU\",,,1.00,\"C\",0.00,,,1428.00,,,,,,\n2015,5,18,\"WN\",\"2778\",\"LGA\",\"HOU\",,,1.00,\"C\",0.00,,,1428.00,,,,,,\n2015,5,18,\"WN\",\"3845\",\"LGA\",\"HOU\",10.00,6.00,0.00,\"\",0.00,236.00,190.00,1428.00,,,,,,\n2015,5,18,\"WN\",\"413\",\"LGA\",\"MCI\",238.00,221.00,0.00,\"\",0.00,183.00,156.00,1107.00,5.00,0.00,0.00,0.00,216.00,\n2015,5,18,\"WN\",\"479\",\"LGA\",\"MDW\",79.00,101.00,0.00,\"\",0.00,167.00,110.00,725.00,34.00,0.00,22.00,0.00,45.00,\n2015,5,18,\"WN\",\"777\",\"LGA\",\"MDW\",266.00,285.00,0.00,\"\",0.00,174.00,111.00,725.00,0.00,0.00,19.00,0.00,266.00,\n2015,5,18,\"WN\",\"868\",\"LGA\",\"MDW\",,,1.00,\"C\",0.00,,,725.00,,,,,,\n2015,5,18,\"WN\",\"2516\",\"LGA\",\"MDW\",,,1.00,\"C\",0.00,,,725.00,,,,,,\n2015,5,18,\"WN\",\"2529\",\"LGA\",\"MDW\",,,1.00,\"C\",0.00,,,725.00,,,,,,\n2015,5,18,\"WN\",\"2659\",\"LGA\",\"MDW\",262.00,249.00,0.00,\"\",0.00,142.00,105.00,725.00,6.00,0.00,0.00,0.00,243.00,\n2015,5,18,\"WN\",\"4123\",\"LGA\",\"MDW\",0.00,-13.00,0.00,\"\",0.00,137.00,106.00,725.00,,,,,,\n2015,5,18,\"WN\",\"1344\",\"LGA\",\"MKE\",172.00,206.00,0.00,\"\",0.00,184.00,107.00,738.00,13.00,0.00,34.00,0.00,159.00,\n2015,5,18,\"WN\",\"2433\",\"LGA\",\"MKE\",226.00,201.00,0.00,\"\",0.00,130.00,113.00,738.00,3.00,0.00,0.00,0.00,198.00,\n2015,5,18,\"WN\",\"4379\",\"LGA\",\"MKE\",-3.00,-22.00,0.00,\"\",0.00,126.00,102.00,738.00,,,,,,\n2015,5,18,\"WN\",\"536\",\"LGA\",\"STL\",,,1.00,\"C\",0.00,,,888.00,,,,,,\n2015,5,18,\"WN\",\"2168\",\"LGA\",\"STL\",-2.00,-12.00,0.00,\"\",0.00,150.00,121.00,888.00,,,,,,\n2015,5,18,\"WN\",\"4571\",\"LGA\",\"STL\",221.00,256.00,0.00,\"\",0.00,205.00,130.00,888.00,0.00,0.00,35.00,0.00,221.00,\n2015,5,18,\"WN\",\"333\",\"MCI\",\"LGA\",61.00,45.00,0.00,\"\",0.00,154.00,139.00,1107.00,0.00,0.00,44.00,0.00,1.00,\n2015,5,18,\"WN\",\"1011\",\"MCO\",\"ALB\",35.00,30.00,0.00,\"\",0.00,160.00,149.00,1073.00,13.00,0.00,0.00,0.00,17.00,\n2015,5,18,\"WN\",\"2849\",\"MCO\",\"ALB\",-3.00,1.00,0.00,\"\",0.00,164.00,145.00,1073.00,,,,,,\n2015,5,18,\"WN\",\"728\",\"MCO\",\"BUF\",-6.00,-19.00,0.00,\"\",0.00,142.00,131.00,1011.00,,,,,,\n2015,5,18,\"WN\",\"801\",\"MCO\",\"BUF\",44.00,31.00,0.00,\"\",0.00,142.00,132.00,1011.00,0.00,0.00,0.00,0.00,31.00,\n2015,5,18,\"WN\",\"2423\",\"MCO\",\"BUF\",-7.00,-15.00,0.00,\"\",0.00,147.00,134.00,1011.00,,,,,,\n2015,5,18,\"WN\",\"2632\",\"MCO\",\"BUF\",-10.00,-5.00,0.00,\"\",0.00,160.00,132.00,1011.00,,,,,,\n2015,5,18,\"WN\",\"293\",\"MCO\",\"ISP\",-9.00,-8.00,0.00,\"\",0.00,156.00,137.00,971.00,,,,,,\n2015,5,18,\"WN\",\"325\",\"MCO\",\"ISP\",14.00,7.00,0.00,\"\",0.00,143.00,135.00,971.00,,,,,,\n2015,5,18,\"WN\",\"426\",\"MCO\",\"ISP\",-2.00,-2.00,0.00,\"\",0.00,150.00,134.00,971.00,,,,,,\n2015,5,18,\"WN\",\"4486\",\"MCO\",\"ISP\",-3.00,-5.00,0.00,\"\",0.00,148.00,137.00,971.00,,,,,,\n2015,5,18,\"WN\",\"3935\",\"MCO\",\"ROC\",-5.00,-9.00,0.00,\"\",0.00,151.00,137.00,1033.00,,,,,,\n2015,5,18,\"WN\",\"103\",\"MDW\",\"ALB\",40.00,26.00,0.00,\"\",0.00,101.00,89.00,717.00,0.00,0.00,0.00,0.00,26.00,\n2015,5,18,\"WN\",\"1461\",\"MDW\",\"ALB\",95.00,85.00,0.00,\"\",0.00,105.00,92.00,717.00,0.00,85.00,0.00,0.00,0.00,\n2015,5,18,\"WN\",\"134\",\"MDW\",\"BUF\",-6.00,-18.00,0.00,\"\",0.00,78.00,65.00,468.00,,,,,,\n2015,5,18,\"WN\",\"615\",\"MDW\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,82.00,67.00,468.00,,,,,,\n2015,5,18,\"WN\",\"2241\",\"MDW\",\"BUF\",14.00,-9.00,0.00,\"\",0.00,77.00,61.00,468.00,,,,,,\n2015,5,18,\"WN\",\"178\",\"MDW\",\"LGA\",,,1.00,\"C\",0.00,,,725.00,,,,,,\n2015,5,18,\"WN\",\"682\",\"MDW\",\"LGA\",269.00,,0.00,\"\",1.00,,,725.00,,,,,,\n2015,5,18,\"WN\",\"803\",\"MDW\",\"LGA\",,,1.00,\"C\",0.00,,,725.00,,,,,,\n2015,5,18,\"WN\",\"1713\",\"MDW\",\"LGA\",,,1.00,\"C\",0.00,,,725.00,,,,,,\n2015,5,18,\"WN\",\"1945\",\"MDW\",\"LGA\",287.00,282.00,0.00,\"\",0.00,125.00,103.00,725.00,277.00,0.00,0.00,0.00,5.00,\n2015,5,18,\"WN\",\"2778\",\"MDW\",\"LGA\",405.00,,0.00,\"\",1.00,,,725.00,,,,,,\n2015,5,18,\"WN\",\"4365\",\"MDW\",\"LGA\",61.00,46.00,0.00,\"\",0.00,115.00,101.00,725.00,0.00,0.00,4.00,0.00,42.00,\n2015,5,18,\"WN\",\"292\",\"MDW\",\"ROC\",47.00,32.00,0.00,\"\",0.00,75.00,63.00,523.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,18,\"WN\",\"2229\",\"MDW\",\"ROC\",-1.00,-12.00,0.00,\"\",0.00,84.00,66.00,523.00,,,,,,\n2015,5,19,\"WN\",\"2851\",\"PBI\",\"ISP\",4.00,-3.00,0.00,\"\",0.00,153.00,141.00,1052.00,,,,,,\n2015,5,19,\"WN\",\"4818\",\"PBI\",\"ISP\",-5.00,8.00,0.00,\"\",0.00,173.00,147.00,1052.00,,,,,,\n2015,5,19,\"WN\",\"2454\",\"PHX\",\"BUF\",81.00,49.00,0.00,\"\",0.00,213.00,200.00,1912.00,3.00,0.00,0.00,0.00,46.00,\n2015,5,18,\"WN\",\"854\",\"TPA\",\"ALB\",-6.00,-9.00,0.00,\"\",0.00,167.00,155.00,1130.00,,,,,,\n2015,5,18,\"WN\",\"127\",\"TPA\",\"BUF\",-4.00,-10.00,0.00,\"\",0.00,149.00,136.00,1053.00,,,,,,\n2015,5,18,\"WN\",\"2160\",\"TPA\",\"BUF\",-5.00,-11.00,0.00,\"\",0.00,149.00,135.00,1053.00,,,,,,\n2015,5,18,\"WN\",\"2423\",\"TPA\",\"ISP\",5.00,5.00,0.00,\"\",0.00,155.00,140.00,1034.00,,,,,,\n2015,5,18,\"WN\",\"4390\",\"TPA\",\"ISP\",-5.00,-16.00,0.00,\"\",0.00,154.00,142.00,1034.00,,,,,,\n2015,5,18,\"WN\",\"719\",\"TPA\",\"ROC\",-1.00,3.00,0.00,\"\",0.00,164.00,143.00,1079.00,,,,,,\n2015,5,19,\"WN\",\"223\",\"ALB\",\"BWI\",-1.00,-15.00,0.00,\"\",0.00,66.00,55.00,289.00,,,,,,\n2015,5,19,\"WN\",\"752\",\"ALB\",\"BWI\",-1.00,-10.00,0.00,\"\",0.00,71.00,57.00,289.00,,,,,,\n2015,5,19,\"WN\",\"854\",\"ALB\",\"BWI\",-5.00,-7.00,0.00,\"\",0.00,73.00,60.00,289.00,,,,,,\n2015,5,19,\"WN\",\"1011\",\"ALB\",\"BWI\",-1.00,-15.00,0.00,\"\",0.00,66.00,52.00,289.00,,,,,,\n2015,5,19,\"WN\",\"3294\",\"ALB\",\"BWI\",,,1.00,\"A\",0.00,,,289.00,,,,,,\n2015,5,19,\"WN\",\"3917\",\"ALB\",\"BWI\",-3.00,-11.00,0.00,\"\",0.00,72.00,57.00,289.00,,,,,,\n2015,5,19,\"WN\",\"1987\",\"ALB\",\"FLL\",0.00,-5.00,0.00,\"\",0.00,185.00,162.00,1204.00,,,,,,\n2015,5,19,\"WN\",\"346\",\"ALB\",\"LAS\",21.00,19.00,0.00,\"\",0.00,328.00,313.00,2237.00,18.00,0.00,0.00,0.00,1.00,\n2015,5,19,\"WN\",\"3919\",\"ALB\",\"MCO\",-4.00,-16.00,0.00,\"\",0.00,163.00,146.00,1073.00,,,,,,\n2015,5,19,\"WN\",\"4362\",\"ALB\",\"MCO\",0.00,-14.00,0.00,\"\",0.00,161.00,145.00,1073.00,,,,,,\n2015,5,19,\"WN\",\"1550\",\"ALB\",\"MDW\",-2.00,-4.00,0.00,\"\",0.00,133.00,120.00,717.00,,,,,,\n2015,5,19,\"WN\",\"4985\",\"ALB\",\"MDW\",158.00,149.00,0.00,\"\",0.00,126.00,112.00,717.00,149.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"3650\",\"ALB\",\"TPA\",8.00,-12.00,0.00,\"\",0.00,165.00,153.00,1130.00,,,,,,\n2015,5,19,\"WN\",\"815\",\"ATL\",\"LGA\",37.00,20.00,0.00,\"\",0.00,123.00,101.00,762.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"1182\",\"ATL\",\"LGA\",33.00,17.00,0.00,\"\",0.00,124.00,103.00,762.00,16.00,0.00,0.00,0.00,1.00,\n2015,5,19,\"WN\",\"2516\",\"ATL\",\"LGA\",37.00,34.00,0.00,\"\",0.00,132.00,102.00,762.00,0.00,30.00,0.00,0.00,4.00,\n2015,5,19,\"WN\",\"2659\",\"ATL\",\"LGA\",118.00,96.00,0.00,\"\",0.00,123.00,102.00,762.00,0.00,0.00,96.00,0.00,0.00,\n2015,5,19,\"WN\",\"2850\",\"ATL\",\"LGA\",43.00,35.00,0.00,\"\",0.00,127.00,109.00,762.00,0.00,35.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"255\",\"BNA\",\"LGA\",47.00,43.00,0.00,\"\",0.00,126.00,104.00,764.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,19,\"WN\",\"2433\",\"BNA\",\"LGA\",198.00,186.00,0.00,\"\",0.00,118.00,102.00,764.00,185.00,0.00,0.00,0.00,1.00,\n2015,5,19,\"WN\",\"2570\",\"BNA\",\"LGA\",241.00,225.00,0.00,\"\",0.00,119.00,106.00,764.00,212.00,0.00,0.00,0.00,13.00,\n2015,5,19,\"WN\",\"381\",\"BUF\",\"BWI\",4.00,-4.00,0.00,\"\",0.00,62.00,49.00,281.00,,,,,,\n2015,5,19,\"WN\",\"728\",\"BUF\",\"BWI\",-6.00,-15.00,0.00,\"\",0.00,61.00,50.00,281.00,,,,,,\n2015,5,19,\"WN\",\"842\",\"BUF\",\"BWI\",8.00,3.00,0.00,\"\",0.00,70.00,58.00,281.00,,,,,,\n2015,5,19,\"WN\",\"1429\",\"BUF\",\"BWI\",-2.00,-16.00,0.00,\"\",0.00,71.00,57.00,281.00,,,,,,\n2015,5,19,\"WN\",\"1528\",\"BUF\",\"BWI\",27.00,14.00,0.00,\"\",0.00,62.00,50.00,281.00,,,,,,\n2015,5,19,\"WN\",\"2423\",\"BUF\",\"BWI\",-5.00,-15.00,0.00,\"\",0.00,65.00,48.00,281.00,,,,,,\n2015,5,19,\"WN\",\"1785\",\"BUF\",\"FLL\",-3.00,-7.00,0.00,\"\",0.00,181.00,155.00,1166.00,,,,,,\n2015,5,19,\"WN\",\"361\",\"BUF\",\"LAS\",14.00,6.00,0.00,\"\",0.00,292.00,278.00,1986.00,,,,,,\n2015,5,19,\"WN\",\"615\",\"BUF\",\"LAS\",4.00,5.00,0.00,\"\",0.00,291.00,277.00,1986.00,,,,,,\n2015,5,19,\"WN\",\"134\",\"BUF\",\"MCO\",0.00,-11.00,0.00,\"\",0.00,149.00,137.00,1011.00,,,,,,\n2015,5,19,\"WN\",\"674\",\"BUF\",\"MCO\",125.00,123.00,0.00,\"\",0.00,158.00,143.00,1011.00,1.00,0.00,0.00,0.00,122.00,\n2015,5,19,\"WN\",\"854\",\"BUF\",\"MCO\",-4.00,-12.00,0.00,\"\",0.00,152.00,132.00,1011.00,,,,,,\n2015,5,19,\"WN\",\"2141\",\"BUF\",\"MCO\",-7.00,-17.00,0.00,\"\",0.00,150.00,129.00,1011.00,,,,,,\n2015,5,19,\"WN\",\"717\",\"BUF\",\"MDW\",-4.00,14.00,0.00,\"\",0.00,128.00,79.00,468.00,,,,,,\n2015,5,19,\"WN\",\"2023\",\"BUF\",\"MDW\",-1.00,-11.00,0.00,\"\",0.00,95.00,80.00,468.00,,,,,,\n2015,5,19,\"WN\",\"2632\",\"BUF\",\"MDW\",-2.00,-11.00,0.00,\"\",0.00,91.00,76.00,468.00,,,,,,\n2015,5,19,\"WN\",\"328\",\"BUF\",\"PHX\",0.00,4.00,0.00,\"\",0.00,294.00,278.00,1912.00,,,,,,\n2015,5,19,\"WN\",\"984\",\"BUF\",\"TPA\",-7.00,-23.00,0.00,\"\",0.00,149.00,137.00,1053.00,,,,,,\n2015,5,19,\"WN\",\"2824\",\"BUF\",\"TPA\",-1.00,-10.00,0.00,\"\",0.00,156.00,143.00,1053.00,,,,,,\n2015,5,19,\"WN\",\"334\",\"BWI\",\"ALB\",-3.00,-8.00,0.00,\"\",0.00,70.00,52.00,289.00,,,,,,\n2015,5,19,\"WN\",\"346\",\"BWI\",\"ALB\",1.00,1.00,0.00,\"\",0.00,65.00,55.00,289.00,,,,,,\n2015,5,19,\"WN\",\"598\",\"BWI\",\"ALB\",-3.00,-9.00,0.00,\"\",0.00,64.00,51.00,289.00,,,,,,\n2015,5,19,\"WN\",\"1269\",\"BWI\",\"ALB\",32.00,37.00,0.00,\"\",0.00,80.00,51.00,289.00,0.00,0.00,5.00,0.00,32.00,\n2015,5,19,\"WN\",\"3033\",\"BWI\",\"ALB\",-2.00,-8.00,0.00,\"\",0.00,64.00,48.00,289.00,,,,,,\n2015,5,19,\"WN\",\"3919\",\"BWI\",\"ALB\",0.00,-5.00,0.00,\"\",0.00,65.00,52.00,289.00,,,,,,\n2015,5,19,\"WN\",\"328\",\"BWI\",\"BUF\",3.00,-5.00,0.00,\"\",0.00,57.00,46.00,281.00,,,,,,\n2015,5,19,\"WN\",\"572\",\"BWI\",\"BUF\",24.00,14.00,0.00,\"\",0.00,60.00,46.00,281.00,,,,,,\n2015,5,19,\"WN\",\"819\",\"BWI\",\"BUF\",25.00,27.00,0.00,\"\",0.00,67.00,47.00,281.00,25.00,0.00,2.00,0.00,0.00,\n2015,5,19,\"WN\",\"854\",\"BWI\",\"BUF\",1.00,-10.00,0.00,\"\",0.00,59.00,47.00,281.00,,,,,,\n2015,5,19,\"WN\",\"1350\",\"BWI\",\"BUF\",21.00,16.00,0.00,\"\",0.00,60.00,47.00,281.00,16.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"1900\",\"BWI\",\"BUF\",4.00,-2.00,0.00,\"\",0.00,69.00,51.00,281.00,,,,,,\n2015,5,19,\"WN\",\"232\",\"BWI\",\"ISP\",18.00,19.00,0.00,\"\",0.00,66.00,49.00,220.00,18.00,0.00,1.00,0.00,0.00,\n2015,5,19,\"WN\",\"752\",\"BWI\",\"ISP\",8.00,11.00,0.00,\"\",0.00,63.00,43.00,220.00,,,,,,\n2015,5,19,\"WN\",\"842\",\"BWI\",\"ISP\",13.00,7.00,0.00,\"\",0.00,59.00,44.00,220.00,,,,,,\n2015,5,19,\"WN\",\"2452\",\"BWI\",\"ISP\",0.00,-12.00,0.00,\"\",0.00,58.00,45.00,220.00,,,,,,\n2015,5,19,\"WN\",\"4017\",\"BWI\",\"ISP\",1.00,0.00,0.00,\"\",0.00,59.00,43.00,220.00,,,,,,\n2015,5,19,\"WN\",\"597\",\"BWI\",\"ROC\",38.00,34.00,0.00,\"\",0.00,66.00,48.00,277.00,27.00,0.00,0.00,0.00,7.00,\n2015,5,19,\"WN\",\"3564\",\"BWI\",\"ROC\",4.00,1.00,0.00,\"\",0.00,67.00,51.00,277.00,,,,,,\n2015,5,19,\"WN\",\"178\",\"LGA\",\"ATL\",125.00,96.00,0.00,\"\",0.00,131.00,110.00,762.00,30.00,0.00,0.00,0.00,66.00,\n2015,5,19,\"WN\",\"2939\",\"LGA\",\"ATL\",44.00,4.00,0.00,\"\",0.00,130.00,109.00,762.00,,,,,,\n2015,5,19,\"WN\",\"3133\",\"LGA\",\"ATL\",0.00,-22.00,0.00,\"\",0.00,138.00,111.00,762.00,,,,,,\n2015,5,19,\"WN\",\"3391\",\"LGA\",\"ATL\",53.00,30.00,0.00,\"\",0.00,137.00,111.00,762.00,2.00,0.00,0.00,0.00,28.00,\n2015,5,19,\"WN\",\"4728\",\"LGA\",\"ATL\",123.00,113.00,0.00,\"\",0.00,165.00,112.00,762.00,2.00,0.00,0.00,0.00,111.00,\n2015,5,19,\"WN\",\"914\",\"LGA\",\"BNA\",7.00,9.00,0.00,\"\",0.00,152.00,118.00,764.00,,,,,,\n2015,5,19,\"WN\",\"1208\",\"LGA\",\"BNA\",50.00,26.00,0.00,\"\",0.00,131.00,112.00,764.00,7.00,0.00,0.00,0.00,19.00,\n2015,5,19,\"WN\",\"1370\",\"LGA\",\"BNA\",0.00,-10.00,0.00,\"\",0.00,155.00,115.00,764.00,,,,,,\n2015,5,19,\"WN\",\"202\",\"LGA\",\"CAK\",90.00,76.00,0.00,\"\",0.00,86.00,63.00,397.00,0.00,0.00,0.00,0.00,76.00,\n2015,5,19,\"WN\",\"534\",\"LGA\",\"CAK\",110.00,104.00,0.00,\"\",0.00,94.00,68.00,397.00,0.00,0.00,0.00,0.00,104.00,\n2015,5,19,\"WN\",\"255\",\"LGA\",\"DAL\",47.00,20.00,0.00,\"\",0.00,218.00,193.00,1381.00,2.00,0.00,0.00,0.00,18.00,\n2015,5,19,\"WN\",\"431\",\"LGA\",\"DAL\",102.00,69.00,0.00,\"\",0.00,207.00,188.00,1381.00,3.00,0.00,0.00,0.00,66.00,\n2015,5,19,\"WN\",\"2347\",\"LGA\",\"DAL\",14.00,-1.00,0.00,\"\",0.00,230.00,189.00,1381.00,,,,,,\n2015,5,19,\"WN\",\"3489\",\"LGA\",\"DAL\",4.00,-4.00,0.00,\"\",0.00,222.00,194.00,1381.00,,,,,,\n2015,5,19,\"WN\",\"12\",\"LGA\",\"DEN\",166.00,150.00,0.00,\"\",0.00,259.00,233.00,1620.00,4.00,0.00,0.00,0.00,146.00,\n2015,5,19,\"WN\",\"165\",\"LGA\",\"DEN\",54.00,43.00,0.00,\"\",0.00,264.00,239.00,1620.00,16.00,0.00,0.00,0.00,27.00,\n2015,5,19,\"WN\",\"682\",\"LGA\",\"HOU\",126.00,115.00,0.00,\"\",0.00,229.00,193.00,1428.00,9.00,0.00,0.00,0.00,106.00,\n2015,5,19,\"WN\",\"2778\",\"LGA\",\"HOU\",82.00,66.00,0.00,\"\",0.00,234.00,198.00,1428.00,14.00,0.00,0.00,0.00,52.00,\n2015,5,19,\"WN\",\"3845\",\"LGA\",\"HOU\",200.00,182.00,0.00,\"\",0.00,222.00,199.00,1428.00,182.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"413\",\"LGA\",\"MCI\",19.00,11.00,0.00,\"\",0.00,192.00,162.00,1107.00,,,,,,\n2015,5,19,\"WN\",\"479\",\"LGA\",\"MDW\",33.00,32.00,0.00,\"\",0.00,144.00,110.00,725.00,2.00,0.00,0.00,0.00,30.00,\n2015,5,19,\"WN\",\"777\",\"LGA\",\"MDW\",120.00,112.00,0.00,\"\",0.00,147.00,115.00,725.00,0.00,0.00,0.00,0.00,112.00,\n2015,5,19,\"WN\",\"868\",\"LGA\",\"MDW\",87.00,71.00,0.00,\"\",0.00,144.00,116.00,725.00,7.00,0.00,0.00,0.00,64.00,\n2015,5,19,\"WN\",\"2516\",\"LGA\",\"MDW\",51.00,59.00,0.00,\"\",0.00,168.00,115.00,725.00,17.00,0.00,8.00,0.00,34.00,\n2015,5,19,\"WN\",\"2529\",\"LGA\",\"MDW\",51.00,29.00,0.00,\"\",0.00,128.00,110.00,725.00,10.00,0.00,0.00,0.00,19.00,\n2015,5,19,\"WN\",\"2659\",\"LGA\",\"MDW\",105.00,78.00,0.00,\"\",0.00,128.00,109.00,725.00,7.00,0.00,0.00,0.00,71.00,\n2015,5,19,\"WN\",\"4123\",\"LGA\",\"MDW\",2.00,-11.00,0.00,\"\",0.00,137.00,106.00,725.00,,,,,,\n2015,5,19,\"WN\",\"1344\",\"LGA\",\"MKE\",110.00,99.00,0.00,\"\",0.00,139.00,115.00,738.00,0.00,0.00,2.00,0.00,97.00,\n2015,5,19,\"WN\",\"2433\",\"LGA\",\"MKE\",188.00,185.00,0.00,\"\",0.00,152.00,116.00,738.00,2.00,0.00,0.00,0.00,183.00,\n2015,5,19,\"WN\",\"4379\",\"LGA\",\"MKE\",-4.00,-10.00,0.00,\"\",0.00,139.00,114.00,738.00,,,,,,\n2015,5,19,\"WN\",\"536\",\"LGA\",\"STL\",194.00,193.00,0.00,\"\",0.00,179.00,135.00,888.00,15.00,0.00,0.00,0.00,178.00,\n2015,5,19,\"WN\",\"2168\",\"LGA\",\"STL\",0.00,-3.00,0.00,\"\",0.00,157.00,134.00,888.00,,,,,,\n2015,5,19,\"WN\",\"4571\",\"LGA\",\"STL\",220.00,198.00,0.00,\"\",0.00,148.00,132.00,888.00,0.00,0.00,0.00,0.00,198.00,\n2015,5,19,\"WN\",\"333\",\"MCI\",\"LGA\",54.00,31.00,0.00,\"\",0.00,147.00,136.00,1107.00,3.00,0.00,0.00,0.00,28.00,\n2015,5,19,\"WN\",\"1011\",\"MCO\",\"ALB\",1.00,-4.00,0.00,\"\",0.00,160.00,145.00,1073.00,,,,,,\n2015,5,19,\"WN\",\"2849\",\"MCO\",\"ALB\",-5.00,9.00,0.00,\"\",0.00,174.00,140.00,1073.00,,,,,,\n2015,5,19,\"WN\",\"728\",\"MCO\",\"BUF\",-6.00,-15.00,0.00,\"\",0.00,146.00,132.00,1011.00,,,,,,\n2015,5,19,\"WN\",\"801\",\"MCO\",\"BUF\",31.00,22.00,0.00,\"\",0.00,146.00,135.00,1011.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,19,\"WN\",\"2423\",\"MCO\",\"BUF\",-5.00,-7.00,0.00,\"\",0.00,153.00,132.00,1011.00,,,,,,\n2015,5,19,\"WN\",\"2632\",\"MCO\",\"BUF\",-2.00,-17.00,0.00,\"\",0.00,140.00,129.00,1011.00,,,,,,\n2015,5,19,\"WN\",\"293\",\"MCO\",\"ISP\",0.00,-2.00,0.00,\"\",0.00,153.00,134.00,971.00,,,,,,\n2015,5,19,\"WN\",\"325\",\"MCO\",\"ISP\",-7.00,-9.00,0.00,\"\",0.00,148.00,134.00,971.00,,,,,,\n2015,5,19,\"WN\",\"426\",\"MCO\",\"ISP\",-2.00,-6.00,0.00,\"\",0.00,146.00,134.00,971.00,,,,,,\n2015,5,19,\"WN\",\"4486\",\"MCO\",\"ISP\",5.00,3.00,0.00,\"\",0.00,148.00,132.00,971.00,,,,,,\n2015,5,19,\"WN\",\"3935\",\"MCO\",\"ROC\",80.00,74.00,0.00,\"\",0.00,149.00,128.00,1033.00,67.00,0.00,0.00,0.00,7.00,\n2015,5,19,\"WN\",\"103\",\"MDW\",\"ALB\",28.00,24.00,0.00,\"\",0.00,111.00,82.00,717.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"1461\",\"MDW\",\"ALB\",5.00,-12.00,0.00,\"\",0.00,98.00,85.00,717.00,,,,,,\n2015,5,19,\"WN\",\"134\",\"MDW\",\"BUF\",16.00,1.00,0.00,\"\",0.00,75.00,62.00,468.00,,,,,,\n2015,5,19,\"WN\",\"615\",\"MDW\",\"BUF\",-1.00,-18.00,0.00,\"\",0.00,73.00,62.00,468.00,,,,,,\n2015,5,19,\"WN\",\"2241\",\"MDW\",\"BUF\",12.00,-9.00,0.00,\"\",0.00,79.00,58.00,468.00,,,,,,\n2015,5,19,\"WN\",\"178\",\"MDW\",\"LGA\",109.00,86.00,0.00,\"\",0.00,107.00,89.00,725.00,0.00,0.00,86.00,0.00,0.00,\n2015,5,19,\"WN\",\"682\",\"MDW\",\"LGA\",120.00,116.00,0.00,\"\",0.00,121.00,97.00,725.00,116.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"803\",\"MDW\",\"LGA\",84.00,78.00,0.00,\"\",0.00,124.00,94.00,725.00,0.00,0.00,3.00,0.00,75.00,\n2015,5,19,\"WN\",\"1713\",\"MDW\",\"LGA\",42.00,34.00,0.00,\"\",0.00,117.00,100.00,725.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,19,\"WN\",\"1945\",\"MDW\",\"LGA\",133.00,116.00,0.00,\"\",0.00,113.00,96.00,725.00,92.00,0.00,0.00,0.00,24.00,\n2015,5,19,\"WN\",\"2778\",\"MDW\",\"LGA\",82.00,64.00,0.00,\"\",0.00,107.00,89.00,725.00,0.00,0.00,64.00,0.00,0.00,\n2015,5,19,\"WN\",\"4365\",\"MDW\",\"LGA\",16.00,3.00,0.00,\"\",0.00,117.00,91.00,725.00,,,,,,\n2015,5,19,\"WN\",\"292\",\"MDW\",\"ROC\",38.00,25.00,0.00,\"\",0.00,77.00,64.00,523.00,9.00,0.00,0.00,0.00,16.00,\n2015,5,19,\"WN\",\"2229\",\"MDW\",\"ROC\",10.00,-3.00,0.00,\"\",0.00,82.00,68.00,523.00,,,,,,\n2015,5,19,\"WN\",\"202\",\"MKE\",\"LGA\",113.00,107.00,0.00,\"\",0.00,129.00,96.00,738.00,0.00,107.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"1208\",\"MKE\",\"LGA\",51.00,37.00,0.00,\"\",0.00,121.00,97.00,738.00,0.00,0.00,0.00,0.00,37.00,\n2015,5,19,\"WN\",\"3391\",\"MKE\",\"LGA\",58.00,50.00,0.00,\"\",0.00,122.00,100.00,738.00,0.00,50.00,0.00,0.00,0.00,\n2015,5,18,\"WN\",\"719\",\"ROC\",\"BWI\",21.00,19.00,0.00,\"\",0.00,68.00,52.00,277.00,16.00,0.00,0.00,0.00,3.00,\n2015,5,18,\"WN\",\"2749\",\"ROC\",\"BWI\",-4.00,-21.00,0.00,\"\",0.00,63.00,50.00,277.00,,,,,,\n2015,5,18,\"WN\",\"597\",\"ROC\",\"MCO\",24.00,20.00,0.00,\"\",0.00,156.00,132.00,1033.00,7.00,0.00,0.00,0.00,13.00,\n2015,5,18,\"WN\",\"747\",\"ROC\",\"MDW\",0.00,5.00,0.00,\"\",0.00,115.00,87.00,523.00,,,,,,\n2015,5,18,\"WN\",\"4712\",\"ROC\",\"MDW\",0.00,-2.00,0.00,\"\",0.00,103.00,85.00,523.00,,,,,,\n2015,5,18,\"WN\",\"4655\",\"ROC\",\"TPA\",-1.00,,0.00,\"\",1.00,,,1079.00,,,,,,\n2015,5,19,\"WN\",\"914\",\"CAK\",\"LGA\",-1.00,2.00,0.00,\"\",0.00,93.00,66.00,397.00,,,,,,\n2015,5,19,\"WN\",\"4728\",\"CAK\",\"LGA\",111.00,121.00,0.00,\"\",0.00,100.00,61.00,397.00,0.00,0.00,119.00,0.00,2.00,\n2015,5,19,\"WN\",\"691\",\"DAL\",\"LGA\",31.00,6.00,0.00,\"\",0.00,180.00,168.00,1381.00,,,,,,\n2015,5,19,\"WN\",\"1214\",\"DAL\",\"LGA\",120.00,108.00,0.00,\"\",0.00,193.00,177.00,1381.00,108.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"2141\",\"DAL\",\"LGA\",83.00,68.00,0.00,\"\",0.00,190.00,173.00,1381.00,68.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"2234\",\"DAL\",\"LGA\",115.00,97.00,0.00,\"\",0.00,187.00,171.00,1381.00,97.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"824\",\"DEN\",\"LGA\",18.00,-13.00,0.00,\"\",0.00,204.00,182.00,1620.00,,,,,,\n2015,5,19,\"WN\",\"1370\",\"DEN\",\"LGA\",17.00,-13.00,0.00,\"\",0.00,205.00,190.00,1620.00,,,,,,\n2015,5,19,\"WN\",\"1898\",\"FLL\",\"ALB\",9.00,2.00,0.00,\"\",0.00,173.00,157.00,1204.00,,,,,,\n2015,5,19,\"WN\",\"4643\",\"FLL\",\"BUF\",-3.00,-18.00,0.00,\"\",0.00,170.00,151.00,1166.00,,,,,,\n2015,5,19,\"WN\",\"28\",\"FLL\",\"ISP\",34.00,24.00,0.00,\"\",0.00,165.00,150.00,1092.00,0.00,0.00,0.00,0.00,24.00,\n2015,5,19,\"WN\",\"4640\",\"FLL\",\"ISP\",-8.00,-18.00,0.00,\"\",0.00,160.00,146.00,1092.00,,,,,,\n2015,5,19,\"WN\",\"299\",\"HOU\",\"LGA\",143.00,125.00,0.00,\"\",0.00,192.00,174.00,1428.00,0.00,0.00,125.00,0.00,0.00,\n2015,5,19,\"WN\",\"536\",\"HOU\",\"LGA\",182.00,179.00,0.00,\"\",0.00,202.00,187.00,1428.00,0.00,0.00,0.00,0.00,179.00,\n2015,5,19,\"WN\",\"1163\",\"HOU\",\"LGA\",51.00,37.00,0.00,\"\",0.00,196.00,179.00,1428.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"325\",\"ISP\",\"BWI\",-3.00,-11.00,0.00,\"\",0.00,62.00,50.00,220.00,,,,,,\n2015,5,19,\"WN\",\"580\",\"ISP\",\"BWI\",-2.00,1.00,0.00,\"\",0.00,78.00,62.00,220.00,,,,,,\n2015,5,19,\"WN\",\"667\",\"ISP\",\"BWI\",-2.00,-6.00,0.00,\"\",0.00,71.00,56.00,220.00,,,,,,\n2015,5,19,\"WN\",\"2940\",\"ISP\",\"BWI\",7.00,3.00,0.00,\"\",0.00,71.00,51.00,220.00,,,,,,\n2015,5,19,\"WN\",\"3743\",\"ISP\",\"BWI\",5.00,-6.00,0.00,\"\",0.00,64.00,53.00,220.00,,,,,,\n2015,5,19,\"WN\",\"752\",\"ISP\",\"FLL\",17.00,11.00,0.00,\"\",0.00,179.00,169.00,1092.00,,,,,,\n2015,5,19,\"WN\",\"4554\",\"ISP\",\"FLL\",1.00,-7.00,0.00,\"\",0.00,172.00,146.00,1092.00,,,,,,\n2015,5,19,\"WN\",\"663\",\"ISP\",\"MCO\",-2.00,-13.00,0.00,\"\",0.00,149.00,133.00,971.00,,,,,,\n2015,5,19,\"WN\",\"4017\",\"ISP\",\"MCO\",0.00,12.00,0.00,\"\",0.00,177.00,156.00,971.00,,,,,,\n2015,5,19,\"WN\",\"4575\",\"ISP\",\"MCO\",2.00,21.00,0.00,\"\",0.00,184.00,165.00,971.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,19,\"WN\",\"4910\",\"ISP\",\"MCO\",1.00,-20.00,0.00,\"\",0.00,149.00,131.00,971.00,,,,,,\n2015,5,19,\"WN\",\"4479\",\"ISP\",\"PBI\",-3.00,-18.00,0.00,\"\",0.00,155.00,140.00,1052.00,,,,,,\n2015,5,19,\"WN\",\"4729\",\"ISP\",\"PBI\",-8.00,-25.00,0.00,\"\",0.00,153.00,142.00,1052.00,,,,,,\n2015,5,19,\"WN\",\"208\",\"ISP\",\"TPA\",,,1.00,\"A\",0.00,,,1034.00,,,,,,\n2015,5,19,\"WN\",\"4907\",\"ISP\",\"TPA\",8.00,-2.00,0.00,\"\",0.00,170.00,159.00,1034.00,,,,,,\n2015,5,19,\"WN\",\"2202\",\"LAS\",\"ALB\",-6.00,-35.00,0.00,\"\",0.00,256.00,237.00,2237.00,,,,,,\n2015,5,19,\"WN\",\"2023\",\"LAS\",\"BUF\",5.00,-11.00,0.00,\"\",0.00,249.00,217.00,1986.00,,,,,,\n2015,5,19,\"WN\",\"2528\",\"LAS\",\"BUF\",7.00,-13.00,0.00,\"\",0.00,235.00,214.00,1986.00,,,,,,\n2015,5,19,\"WN\",\"719\",\"TPA\",\"ROC\",27.00,18.00,0.00,\"\",0.00,151.00,138.00,1079.00,11.00,0.00,0.00,0.00,7.00,\n2015,5,20,\"WN\",\"223\",\"ALB\",\"BWI\",-4.00,-16.00,0.00,\"\",0.00,68.00,55.00,289.00,,,,,,\n2015,5,20,\"WN\",\"752\",\"ALB\",\"BWI\",-4.00,-14.00,0.00,\"\",0.00,70.00,56.00,289.00,,,,,,\n2015,5,20,\"WN\",\"854\",\"ALB\",\"BWI\",-2.00,-11.00,0.00,\"\",0.00,66.00,54.00,289.00,,,,,,\n2015,5,20,\"WN\",\"1011\",\"ALB\",\"BWI\",0.00,-5.00,0.00,\"\",0.00,75.00,54.00,289.00,,,,,,\n2015,5,20,\"WN\",\"3294\",\"ALB\",\"BWI\",-6.00,-27.00,0.00,\"\",0.00,64.00,50.00,289.00,,,,,,\n2015,5,20,\"WN\",\"3917\",\"ALB\",\"BWI\",-6.00,-13.00,0.00,\"\",0.00,73.00,57.00,289.00,,,,,,\n2015,5,20,\"WN\",\"1987\",\"ALB\",\"FLL\",4.00,-14.00,0.00,\"\",0.00,172.00,159.00,1204.00,,,,,,\n2015,5,20,\"WN\",\"346\",\"ALB\",\"LAS\",-5.00,10.00,0.00,\"\",0.00,345.00,331.00,2237.00,,,,,,\n2015,5,20,\"WN\",\"3919\",\"ALB\",\"MCO\",46.00,44.00,0.00,\"\",0.00,173.00,158.00,1073.00,44.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"WN\",\"4362\",\"ALB\",\"MCO\",-1.00,-20.00,0.00,\"\",0.00,156.00,141.00,1073.00,,,,,,\n2015,5,20,\"WN\",\"1550\",\"ALB\",\"MDW\",1.00,8.00,0.00,\"\",0.00,142.00,118.00,717.00,,,,,,\n2015,5,20,\"WN\",\"4985\",\"ALB\",\"MDW\",-5.00,8.00,0.00,\"\",0.00,148.00,125.00,717.00,,,,,,\n2015,5,20,\"WN\",\"3650\",\"ALB\",\"TPA\",-1.00,-13.00,0.00,\"\",0.00,173.00,158.00,1130.00,,,,,,\n2015,5,20,\"WN\",\"815\",\"ATL\",\"LGA\",14.00,15.00,0.00,\"\",0.00,141.00,99.00,762.00,0.00,14.00,1.00,0.00,0.00,\n2015,5,20,\"WN\",\"1182\",\"ATL\",\"LGA\",0.00,-11.00,0.00,\"\",0.00,129.00,102.00,762.00,,,,,,\n2015,5,20,\"WN\",\"2516\",\"ATL\",\"LGA\",13.00,-5.00,0.00,\"\",0.00,117.00,100.00,762.00,,,,,,\n2015,5,20,\"WN\",\"2659\",\"ATL\",\"LGA\",-6.00,-27.00,0.00,\"\",0.00,124.00,106.00,762.00,,,,,,\n2015,5,20,\"WN\",\"2850\",\"ATL\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,119.00,100.00,762.00,,,,,,\n2015,5,20,\"WN\",\"255\",\"BNA\",\"LGA\",5.00,-6.00,0.00,\"\",0.00,119.00,106.00,764.00,,,,,,\n2015,5,20,\"WN\",\"2433\",\"BNA\",\"LGA\",258.00,259.00,0.00,\"\",0.00,131.00,104.00,764.00,38.00,0.00,1.00,0.00,220.00,\n2015,5,20,\"WN\",\"2570\",\"BNA\",\"LGA\",0.00,23.00,0.00,\"\",0.00,158.00,105.00,764.00,0.00,0.00,23.00,0.00,0.00,\n2015,5,20,\"WN\",\"381\",\"BUF\",\"BWI\",-2.00,-10.00,0.00,\"\",0.00,62.00,51.00,281.00,,,,,,\n2015,5,20,\"WN\",\"728\",\"BUF\",\"BWI\",10.00,1.00,0.00,\"\",0.00,61.00,48.00,281.00,,,,,,\n2015,5,20,\"WN\",\"842\",\"BUF\",\"BWI\",-8.00,-22.00,0.00,\"\",0.00,61.00,50.00,281.00,,,,,,\n2015,5,20,\"WN\",\"1429\",\"BUF\",\"BWI\",0.00,-22.00,0.00,\"\",0.00,63.00,51.00,281.00,,,,,,\n2015,5,20,\"WN\",\"1528\",\"BUF\",\"BWI\",15.00,-1.00,0.00,\"\",0.00,59.00,44.00,281.00,,,,,,\n2015,5,20,\"WN\",\"2423\",\"BUF\",\"BWI\",-7.00,0.00,0.00,\"\",0.00,82.00,50.00,281.00,,,,,,\n2015,5,20,\"WN\",\"1785\",\"BUF\",\"FLL\",-2.00,19.00,0.00,\"\",0.00,206.00,153.00,1166.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,20,\"WN\",\"361\",\"BUF\",\"LAS\",-5.00,-4.00,0.00,\"\",0.00,301.00,286.00,1986.00,,,,,,\n2015,5,20,\"WN\",\"615\",\"BUF\",\"LAS\",16.00,30.00,0.00,\"\",0.00,304.00,289.00,1986.00,0.00,0.00,14.00,0.00,16.00,\n2015,5,20,\"WN\",\"134\",\"BUF\",\"MCO\",-5.00,-25.00,0.00,\"\",0.00,140.00,131.00,1011.00,,,,,,\n2015,5,20,\"WN\",\"674\",\"BUF\",\"MCO\",55.00,50.00,0.00,\"\",0.00,155.00,137.00,1011.00,4.00,0.00,0.00,0.00,46.00,\n2015,5,20,\"WN\",\"854\",\"BUF\",\"MCO\",-1.00,-11.00,0.00,\"\",0.00,150.00,135.00,1011.00,,,,,,\n2015,5,20,\"WN\",\"2141\",\"BUF\",\"MCO\",-2.00,-19.00,0.00,\"\",0.00,143.00,127.00,1011.00,,,,,,\n2015,5,20,\"WN\",\"717\",\"BUF\",\"MDW\",0.00,-9.00,0.00,\"\",0.00,101.00,81.00,468.00,,,,,,\n2015,5,20,\"WN\",\"2023\",\"BUF\",\"MDW\",4.00,10.00,0.00,\"\",0.00,111.00,82.00,468.00,,,,,,\n2015,5,20,\"WN\",\"2632\",\"BUF\",\"MDW\",-1.00,-1.00,0.00,\"\",0.00,100.00,84.00,468.00,,,,,,\n2015,5,20,\"WN\",\"328\",\"BUF\",\"PHX\",8.00,8.00,0.00,\"\",0.00,290.00,276.00,1912.00,,,,,,\n2015,5,20,\"WN\",\"984\",\"BUF\",\"TPA\",1.00,-15.00,0.00,\"\",0.00,149.00,136.00,1053.00,,,,,,\n2015,5,20,\"WN\",\"2824\",\"BUF\",\"TPA\",-5.00,-16.00,0.00,\"\",0.00,154.00,141.00,1053.00,,,,,,\n2015,5,20,\"WN\",\"334\",\"BWI\",\"ALB\",-5.00,-11.00,0.00,\"\",0.00,69.00,52.00,289.00,,,,,,\n2015,5,20,\"WN\",\"346\",\"BWI\",\"ALB\",-4.00,-7.00,0.00,\"\",0.00,62.00,50.00,289.00,,,,,,\n2015,5,20,\"WN\",\"598\",\"BWI\",\"ALB\",30.00,26.00,0.00,\"\",0.00,66.00,52.00,289.00,10.00,0.00,0.00,0.00,16.00,\n2015,5,20,\"WN\",\"1269\",\"BWI\",\"ALB\",30.00,19.00,0.00,\"\",0.00,64.00,51.00,289.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,20,\"WN\",\"3033\",\"BWI\",\"ALB\",5.00,-3.00,0.00,\"\",0.00,62.00,50.00,289.00,,,,,,\n2015,5,20,\"WN\",\"3919\",\"BWI\",\"ALB\",-2.00,-5.00,0.00,\"\",0.00,67.00,50.00,289.00,,,,,,\n2015,5,20,\"WN\",\"328\",\"BWI\",\"BUF\",-3.00,-9.00,0.00,\"\",0.00,59.00,48.00,281.00,,,,,,\n2015,5,20,\"WN\",\"572\",\"BWI\",\"BUF\",7.00,-5.00,0.00,\"\",0.00,58.00,46.00,281.00,,,,,,\n2015,5,20,\"WN\",\"819\",\"BWI\",\"BUF\",-4.00,-4.00,0.00,\"\",0.00,65.00,48.00,281.00,,,,,,\n2015,5,20,\"WN\",\"854\",\"BWI\",\"BUF\",12.00,2.00,0.00,\"\",0.00,60.00,47.00,281.00,,,,,,\n2015,5,20,\"WN\",\"1350\",\"BWI\",\"BUF\",-2.00,0.00,0.00,\"\",0.00,67.00,50.00,281.00,,,,,,\n2015,5,20,\"WN\",\"1900\",\"BWI\",\"BUF\",2.00,-7.00,0.00,\"\",0.00,66.00,45.00,281.00,,,,,,\n2015,5,20,\"WN\",\"232\",\"BWI\",\"ISP\",4.00,-2.00,0.00,\"\",0.00,59.00,41.00,220.00,,,,,,\n2015,5,20,\"WN\",\"752\",\"BWI\",\"ISP\",-4.00,-6.00,0.00,\"\",0.00,58.00,41.00,220.00,,,,,,\n2015,5,20,\"WN\",\"842\",\"BWI\",\"ISP\",-3.00,-10.00,0.00,\"\",0.00,58.00,39.00,220.00,,,,,,\n2015,5,20,\"WN\",\"2452\",\"BWI\",\"ISP\",-5.00,-20.00,0.00,\"\",0.00,55.00,42.00,220.00,,,,,,\n2015,5,20,\"WN\",\"4017\",\"BWI\",\"ISP\",2.00,6.00,0.00,\"\",0.00,64.00,47.00,220.00,,,,,,\n2015,5,20,\"WN\",\"597\",\"BWI\",\"ROC\",-3.00,-13.00,0.00,\"\",0.00,60.00,45.00,277.00,,,,,,\n2015,5,20,\"WN\",\"3564\",\"BWI\",\"ROC\",11.00,0.00,0.00,\"\",0.00,59.00,43.00,277.00,,,,,,\n2015,5,20,\"WN\",\"914\",\"CAK\",\"LGA\",-6.00,-29.00,0.00,\"\",0.00,67.00,55.00,397.00,,,,,,\n2015,5,20,\"WN\",\"4728\",\"CAK\",\"LGA\",-3.00,-16.00,0.00,\"\",0.00,77.00,57.00,397.00,,,,,,\n2015,5,20,\"WN\",\"691\",\"DAL\",\"LGA\",-2.00,-15.00,0.00,\"\",0.00,192.00,163.00,1381.00,,,,,,\n2015,5,20,\"WN\",\"1214\",\"DAL\",\"LGA\",25.00,10.00,0.00,\"\",0.00,190.00,162.00,1381.00,,,,,,\n2015,5,20,\"WN\",\"2141\",\"DAL\",\"LGA\",30.00,7.00,0.00,\"\",0.00,182.00,164.00,1381.00,,,,,,\n2015,5,20,\"WN\",\"2234\",\"DAL\",\"LGA\",2.00,-11.00,0.00,\"\",0.00,192.00,171.00,1381.00,,,,,,\n2015,5,20,\"WN\",\"719\",\"ROC\",\"BWI\",-1.00,-12.00,0.00,\"\",0.00,59.00,48.00,277.00,,,,,,\n2015,5,20,\"WN\",\"2749\",\"ROC\",\"BWI\",-2.00,-21.00,0.00,\"\",0.00,61.00,48.00,277.00,,,,,,\n2015,5,20,\"WN\",\"597\",\"ROC\",\"MCO\",-9.00,-17.00,0.00,\"\",0.00,152.00,135.00,1033.00,,,,,,\n2015,5,20,\"WN\",\"747\",\"ROC\",\"MDW\",6.00,11.00,0.00,\"\",0.00,115.00,96.00,523.00,,,,,,\n2015,5,20,\"WN\",\"4712\",\"ROC\",\"MDW\",-3.00,4.00,0.00,\"\",0.00,112.00,89.00,523.00,,,,,,\n2015,5,20,\"WN\",\"4655\",\"ROC\",\"TPA\",-4.00,-14.00,0.00,\"\",0.00,155.00,141.00,1079.00,,,,,,\n2015,5,19,\"WN\",\"719\",\"ROC\",\"BWI\",21.00,16.00,0.00,\"\",0.00,65.00,53.00,277.00,2.00,0.00,0.00,0.00,14.00,\n2015,5,19,\"WN\",\"2749\",\"ROC\",\"BWI\",,,1.00,\"A\",0.00,,,277.00,,,,,,\n2015,5,19,\"WN\",\"597\",\"ROC\",\"MCO\",41.00,36.00,0.00,\"\",0.00,155.00,139.00,1033.00,6.00,0.00,0.00,0.00,30.00,\n2015,5,19,\"WN\",\"747\",\"ROC\",\"MDW\",4.00,-2.00,0.00,\"\",0.00,104.00,89.00,523.00,,,,,,\n2015,5,19,\"WN\",\"4712\",\"ROC\",\"MDW\",6.00,2.00,0.00,\"\",0.00,101.00,86.00,523.00,,,,,,\n2015,5,19,\"WN\",\"4655\",\"ROC\",\"TPA\",75.00,62.00,0.00,\"\",0.00,152.00,142.00,1079.00,1.00,0.00,0.00,0.00,61.00,\n2015,5,19,\"WN\",\"12\",\"STL\",\"LGA\",165.00,162.00,0.00,\"\",0.00,142.00,117.00,888.00,162.00,0.00,0.00,0.00,0.00,\n2015,5,19,\"WN\",\"1194\",\"STL\",\"LGA\",50.00,34.00,0.00,\"\",0.00,129.00,115.00,888.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,19,\"WN\",\"1986\",\"STL\",\"LGA\",3.00,-2.00,0.00,\"\",0.00,135.00,113.00,888.00,,,,,,\n2015,5,19,\"WN\",\"854\",\"TPA\",\"ALB\",-4.00,-16.00,0.00,\"\",0.00,158.00,147.00,1130.00,,,,,,\n2015,5,19,\"WN\",\"127\",\"TPA\",\"BUF\",131.00,124.00,0.00,\"\",0.00,148.00,135.00,1053.00,2.00,0.00,0.00,0.00,122.00,\n2015,5,19,\"WN\",\"2160\",\"TPA\",\"BUF\",3.00,8.00,0.00,\"\",0.00,160.00,143.00,1053.00,,,,,,\n2015,5,19,\"WN\",\"2423\",\"TPA\",\"ISP\",-3.00,-2.00,0.00,\"\",0.00,156.00,142.00,1034.00,,,,,,\n2015,5,19,\"WN\",\"4390\",\"TPA\",\"ISP\",0.00,-12.00,0.00,\"\",0.00,153.00,140.00,1034.00,,,,,,\n2015,5,20,\"WN\",\"1011\",\"MCO\",\"ALB\",-3.00,-5.00,0.00,\"\",0.00,163.00,143.00,1073.00,,,,,,\n2015,5,20,\"WN\",\"2849\",\"MCO\",\"ALB\",57.00,42.00,0.00,\"\",0.00,145.00,135.00,1073.00,0.00,0.00,0.00,0.00,42.00,\n2015,5,20,\"WN\",\"728\",\"MCO\",\"BUF\",0.00,-4.00,0.00,\"\",0.00,151.00,132.00,1011.00,,,,,,\n2015,5,20,\"WN\",\"801\",\"MCO\",\"BUF\",-6.00,-10.00,0.00,\"\",0.00,151.00,133.00,1011.00,,,,,,\n2015,5,20,\"WN\",\"2423\",\"MCO\",\"BUF\",-6.00,-4.00,0.00,\"\",0.00,157.00,141.00,1011.00,,,,,,\n2015,5,20,\"WN\",\"2632\",\"MCO\",\"BUF\",-8.00,-18.00,0.00,\"\",0.00,145.00,134.00,1011.00,,,,,,\n2015,5,20,\"WN\",\"293\",\"MCO\",\"ISP\",0.00,2.00,0.00,\"\",0.00,157.00,130.00,971.00,,,,,,\n2015,5,20,\"WN\",\"325\",\"MCO\",\"ISP\",1.00,-1.00,0.00,\"\",0.00,148.00,132.00,971.00,,,,,,\n2015,5,20,\"WN\",\"426\",\"MCO\",\"ISP\",-5.00,-10.00,0.00,\"\",0.00,145.00,133.00,971.00,,,,,,\n2015,5,20,\"WN\",\"4486\",\"MCO\",\"ISP\",-3.00,-4.00,0.00,\"\",0.00,149.00,131.00,971.00,,,,,,\n2015,5,20,\"WN\",\"3935\",\"MCO\",\"ROC\",-2.00,-11.00,0.00,\"\",0.00,146.00,137.00,1033.00,,,,,,\n2015,5,20,\"WN\",\"103\",\"MDW\",\"ALB\",32.00,19.00,0.00,\"\",0.00,102.00,79.00,717.00,11.00,0.00,0.00,0.00,8.00,\n2015,5,20,\"WN\",\"1461\",\"MDW\",\"ALB\",5.00,-9.00,0.00,\"\",0.00,101.00,83.00,717.00,,,,,,\n2015,5,20,\"WN\",\"134\",\"MDW\",\"BUF\",1.00,-19.00,0.00,\"\",0.00,70.00,57.00,468.00,,,,,,\n2015,5,20,\"WN\",\"615\",\"MDW\",\"BUF\",34.00,23.00,0.00,\"\",0.00,79.00,62.00,468.00,22.00,0.00,0.00,0.00,1.00,\n2015,5,20,\"WN\",\"2241\",\"MDW\",\"BUF\",17.00,1.00,0.00,\"\",0.00,84.00,62.00,468.00,,,,,,\n2015,5,20,\"WN\",\"178\",\"MDW\",\"LGA\",-3.00,-28.00,0.00,\"\",0.00,105.00,89.00,725.00,,,,,,\n2015,5,20,\"WN\",\"682\",\"MDW\",\"LGA\",-1.00,13.00,0.00,\"\",0.00,139.00,88.00,725.00,,,,,,\n2015,5,20,\"WN\",\"803\",\"MDW\",\"LGA\",9.00,-4.00,0.00,\"\",0.00,117.00,97.00,725.00,,,,,,\n2015,5,20,\"WN\",\"1713\",\"MDW\",\"LGA\",0.00,-23.00,0.00,\"\",0.00,102.00,86.00,725.00,,,,,,\n2015,5,20,\"WN\",\"1945\",\"MDW\",\"LGA\",59.00,46.00,0.00,\"\",0.00,117.00,92.00,725.00,4.00,0.00,0.00,0.00,42.00,\n2015,5,20,\"WN\",\"2778\",\"MDW\",\"LGA\",41.00,21.00,0.00,\"\",0.00,105.00,85.00,725.00,7.00,0.00,0.00,0.00,14.00,\n2015,5,20,\"WN\",\"4365\",\"MDW\",\"LGA\",25.00,3.00,0.00,\"\",0.00,108.00,88.00,725.00,,,,,,\n2015,5,20,\"WN\",\"292\",\"MDW\",\"ROC\",29.00,27.00,0.00,\"\",0.00,88.00,72.00,523.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,20,\"WN\",\"2229\",\"MDW\",\"ROC\",14.00,1.00,0.00,\"\",0.00,82.00,66.00,523.00,,,,,,\n2015,5,20,\"WN\",\"202\",\"MKE\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,117.00,93.00,738.00,,,,,,\n2015,5,20,\"WN\",\"1208\",\"MKE\",\"LGA\",-5.00,-36.00,0.00,\"\",0.00,104.00,91.00,738.00,,,,,,\n2015,5,20,\"WN\",\"3391\",\"MKE\",\"LGA\",3.00,-2.00,0.00,\"\",0.00,125.00,94.00,738.00,,,,,,\n2015,5,20,\"WN\",\"2851\",\"PBI\",\"ISP\",15.00,29.00,0.00,\"\",0.00,174.00,160.00,1052.00,15.00,0.00,14.00,0.00,0.00,\n2015,5,20,\"WN\",\"4818\",\"PBI\",\"ISP\",-5.00,-14.00,0.00,\"\",0.00,151.00,138.00,1052.00,,,,,,\n2015,5,20,\"WN\",\"2454\",\"PHX\",\"BUF\",25.00,-5.00,0.00,\"\",0.00,215.00,203.00,1912.00,,,,,,\n2015,5,20,\"WN\",\"824\",\"DEN\",\"LGA\",2.00,-40.00,0.00,\"\",0.00,193.00,175.00,1620.00,,,,,,\n2015,5,20,\"WN\",\"1370\",\"DEN\",\"LGA\",3.00,-24.00,0.00,\"\",0.00,208.00,176.00,1620.00,,,,,,\n2015,5,20,\"WN\",\"1898\",\"FLL\",\"ALB\",-1.00,3.00,0.00,\"\",0.00,184.00,166.00,1204.00,,,,,,\n2015,5,20,\"WN\",\"4643\",\"FLL\",\"BUF\",5.00,-8.00,0.00,\"\",0.00,172.00,157.00,1166.00,,,,,,\n2015,5,20,\"WN\",\"28\",\"FLL\",\"ISP\",46.00,30.00,0.00,\"\",0.00,159.00,143.00,1092.00,3.00,0.00,0.00,0.00,27.00,\n2015,5,20,\"WN\",\"4640\",\"FLL\",\"ISP\",-7.00,-13.00,0.00,\"\",0.00,164.00,149.00,1092.00,,,,,,\n2015,5,20,\"WN\",\"299\",\"HOU\",\"LGA\",-3.00,-25.00,0.00,\"\",0.00,188.00,175.00,1428.00,,,,,,\n2015,5,20,\"WN\",\"536\",\"HOU\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,184.00,172.00,1428.00,,,,,,\n2015,5,20,\"WN\",\"1163\",\"HOU\",\"LGA\",29.00,8.00,0.00,\"\",0.00,189.00,172.00,1428.00,,,,,,\n2015,5,20,\"WN\",\"325\",\"ISP\",\"BWI\",-4.00,-9.00,0.00,\"\",0.00,65.00,55.00,220.00,,,,,,\n2015,5,20,\"WN\",\"580\",\"ISP\",\"BWI\",-4.00,-18.00,0.00,\"\",0.00,61.00,49.00,220.00,,,,,,\n2015,5,20,\"WN\",\"667\",\"ISP\",\"BWI\",-3.00,1.00,0.00,\"\",0.00,79.00,48.00,220.00,,,,,,\n2015,5,20,\"WN\",\"2940\",\"ISP\",\"BWI\",40.00,28.00,0.00,\"\",0.00,63.00,50.00,220.00,8.00,0.00,0.00,0.00,20.00,\n2015,5,20,\"WN\",\"3743\",\"ISP\",\"BWI\",1.00,-9.00,0.00,\"\",0.00,65.00,53.00,220.00,,,,,,\n2015,5,20,\"WN\",\"752\",\"ISP\",\"FLL\",-2.00,-27.00,0.00,\"\",0.00,160.00,149.00,1092.00,,,,,,\n2015,5,20,\"WN\",\"4554\",\"ISP\",\"FLL\",0.00,-4.00,0.00,\"\",0.00,176.00,146.00,1092.00,,,,,,\n2015,5,20,\"WN\",\"663\",\"ISP\",\"MCO\",-5.00,-15.00,0.00,\"\",0.00,150.00,135.00,971.00,,,,,,\n2015,5,20,\"WN\",\"4017\",\"ISP\",\"MCO\",9.00,-6.00,0.00,\"\",0.00,150.00,137.00,971.00,,,,,,\n2015,5,20,\"WN\",\"4575\",\"ISP\",\"MCO\",-5.00,15.00,0.00,\"\",0.00,185.00,169.00,971.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,20,\"WN\",\"4910\",\"ISP\",\"MCO\",-3.00,-20.00,0.00,\"\",0.00,153.00,128.00,971.00,,,,,,\n2015,5,20,\"WN\",\"4479\",\"ISP\",\"PBI\",-5.00,-13.00,0.00,\"\",0.00,162.00,143.00,1052.00,,,,,,\n2015,5,20,\"WN\",\"4729\",\"ISP\",\"PBI\",-6.00,-27.00,0.00,\"\",0.00,149.00,136.00,1052.00,,,,,,\n2015,5,20,\"WN\",\"208\",\"ISP\",\"TPA\",-4.00,-11.00,0.00,\"\",0.00,163.00,149.00,1034.00,,,,,,\n2015,5,20,\"WN\",\"4907\",\"ISP\",\"TPA\",-2.00,-6.00,0.00,\"\",0.00,176.00,156.00,1034.00,,,,,,\n2015,5,20,\"WN\",\"2202\",\"LAS\",\"ALB\",-2.00,-25.00,0.00,\"\",0.00,262.00,236.00,2237.00,,,,,,\n2015,5,20,\"WN\",\"2023\",\"LAS\",\"BUF\",1.00,-27.00,0.00,\"\",0.00,237.00,215.00,1986.00,,,,,,\n2015,5,20,\"WN\",\"2528\",\"LAS\",\"BUF\",-2.00,-35.00,0.00,\"\",0.00,222.00,207.00,1986.00,,,,,,\n2015,5,20,\"WN\",\"178\",\"LGA\",\"ATL\",-4.00,-15.00,0.00,\"\",0.00,149.00,106.00,762.00,,,,,,\n2015,5,20,\"WN\",\"2939\",\"LGA\",\"ATL\",-4.00,-20.00,0.00,\"\",0.00,154.00,105.00,762.00,,,,,,\n2015,5,20,\"WN\",\"3133\",\"LGA\",\"ATL\",2.00,-29.00,0.00,\"\",0.00,129.00,109.00,762.00,,,,,,\n2015,5,20,\"WN\",\"3391\",\"LGA\",\"ATL\",8.00,18.00,0.00,\"\",0.00,170.00,110.00,762.00,8.00,0.00,10.00,0.00,0.00,\n2015,5,20,\"WN\",\"4728\",\"LGA\",\"ATL\",-1.00,10.00,0.00,\"\",0.00,186.00,110.00,762.00,,,,,,\n2015,5,20,\"WN\",\"914\",\"LGA\",\"BNA\",-4.00,2.00,0.00,\"\",0.00,156.00,115.00,764.00,,,,,,\n2015,5,20,\"WN\",\"1208\",\"LGA\",\"BNA\",0.00,-25.00,0.00,\"\",0.00,130.00,114.00,764.00,,,,,,\n2015,5,20,\"WN\",\"1370\",\"LGA\",\"BNA\",-5.00,14.00,0.00,\"\",0.00,184.00,113.00,764.00,,,,,,\n2015,5,20,\"WN\",\"202\",\"LGA\",\"CAK\",-5.00,1.00,0.00,\"\",0.00,106.00,64.00,397.00,,,,,,\n2015,5,20,\"WN\",\"534\",\"LGA\",\"CAK\",39.00,60.00,0.00,\"\",0.00,121.00,66.00,397.00,0.00,0.00,21.00,0.00,39.00,\n2015,5,20,\"WN\",\"255\",\"LGA\",\"DAL\",0.00,-3.00,0.00,\"\",0.00,242.00,189.00,1381.00,,,,,,\n2015,5,20,\"WN\",\"431\",\"LGA\",\"DAL\",-4.00,-18.00,0.00,\"\",0.00,226.00,192.00,1381.00,,,,,,\n2015,5,20,\"WN\",\"2347\",\"LGA\",\"DAL\",-1.00,0.00,0.00,\"\",0.00,246.00,194.00,1381.00,,,,,,\n2015,5,20,\"WN\",\"3489\",\"LGA\",\"DAL\",4.00,-8.00,0.00,\"\",0.00,218.00,196.00,1381.00,,,,,,\n2015,5,20,\"WN\",\"12\",\"LGA\",\"DEN\",9.00,41.00,0.00,\"\",0.00,307.00,244.00,1620.00,9.00,0.00,32.00,0.00,0.00,\n2015,5,20,\"WN\",\"165\",\"LGA\",\"DEN\",-5.00,20.00,0.00,\"\",0.00,300.00,245.00,1620.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,20,\"WN\",\"682\",\"LGA\",\"HOU\",63.00,70.00,0.00,\"\",0.00,247.00,198.00,1428.00,0.00,0.00,57.00,0.00,13.00,\n2015,5,20,\"WN\",\"2778\",\"LGA\",\"HOU\",28.00,19.00,0.00,\"\",0.00,241.00,196.00,1428.00,5.00,0.00,0.00,0.00,14.00,\n2015,5,20,\"WN\",\"3845\",\"LGA\",\"HOU\",-4.00,-21.00,0.00,\"\",0.00,223.00,192.00,1428.00,,,,,,\n2015,5,20,\"WN\",\"413\",\"LGA\",\"MCI\",-1.00,34.00,0.00,\"\",0.00,235.00,172.00,1107.00,0.00,0.00,34.00,0.00,0.00,\n2015,5,20,\"WN\",\"479\",\"LGA\",\"MDW\",22.00,49.00,0.00,\"\",0.00,172.00,116.00,725.00,5.00,0.00,27.00,0.00,17.00,\n2015,5,20,\"WN\",\"777\",\"LGA\",\"MDW\",-1.00,-17.00,0.00,\"\",0.00,139.00,119.00,725.00,,,,,,\n2015,5,20,\"WN\",\"868\",\"LGA\",\"MDW\",15.00,37.00,0.00,\"\",0.00,182.00,117.00,725.00,0.00,0.00,37.00,0.00,0.00,\n2015,5,20,\"WN\",\"2516\",\"LGA\",\"MDW\",23.00,36.00,0.00,\"\",0.00,173.00,127.00,725.00,23.00,0.00,13.00,0.00,0.00,\n2015,5,20,\"WN\",\"2529\",\"LGA\",\"MDW\",-2.00,16.00,0.00,\"\",0.00,168.00,119.00,725.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,20,\"WN\",\"2659\",\"LGA\",\"MDW\",-5.00,-2.00,0.00,\"\",0.00,158.00,111.00,725.00,,,,,,\n2015,5,20,\"WN\",\"4123\",\"LGA\",\"MDW\",1.00,0.00,0.00,\"\",0.00,149.00,121.00,725.00,,,,,,\n2015,5,20,\"WN\",\"1344\",\"LGA\",\"MKE\",31.00,58.00,0.00,\"\",0.00,177.00,119.00,738.00,21.00,0.00,27.00,0.00,10.00,\n2015,5,20,\"WN\",\"2433\",\"LGA\",\"MKE\",264.00,283.00,0.00,\"\",0.00,174.00,113.00,738.00,5.00,0.00,19.00,0.00,259.00,\n2015,5,20,\"WN\",\"4379\",\"LGA\",\"MKE\",-3.00,5.00,0.00,\"\",0.00,153.00,127.00,738.00,,,,,,\n2015,5,20,\"WN\",\"536\",\"LGA\",\"STL\",-1.00,1.00,0.00,\"\",0.00,182.00,139.00,888.00,,,,,,\n2015,5,20,\"WN\",\"2168\",\"LGA\",\"STL\",0.00,0.00,0.00,\"\",0.00,160.00,140.00,888.00,,,,,,\n2015,5,20,\"WN\",\"4571\",\"LGA\",\"STL\",26.00,57.00,0.00,\"\",0.00,201.00,133.00,888.00,3.00,0.00,31.00,0.00,23.00,\n2015,5,20,\"WN\",\"333\",\"MCI\",\"LGA\",44.00,17.00,0.00,\"\",0.00,143.00,125.00,1107.00,1.00,0.00,0.00,0.00,16.00,\n2015,5,21,\"WN\",\"255\",\"BNA\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,113.00,96.00,764.00,,,,,,\n2015,5,21,\"WN\",\"2433\",\"BNA\",\"LGA\",16.00,0.00,0.00,\"\",0.00,114.00,98.00,764.00,,,,,,\n2015,5,21,\"WN\",\"2570\",\"BNA\",\"LGA\",5.00,-4.00,0.00,\"\",0.00,126.00,106.00,764.00,,,,,,\n2015,5,21,\"WN\",\"381\",\"BUF\",\"BWI\",-4.00,-10.00,0.00,\"\",0.00,64.00,51.00,281.00,,,,,,\n2015,5,21,\"WN\",\"728\",\"BUF\",\"BWI\",-7.00,-9.00,0.00,\"\",0.00,68.00,52.00,281.00,,,,,,\n2015,5,21,\"WN\",\"842\",\"BUF\",\"BWI\",-7.00,-18.00,0.00,\"\",0.00,64.00,49.00,281.00,,,,,,\n2015,5,21,\"WN\",\"1429\",\"BUF\",\"BWI\",-3.00,0.00,0.00,\"\",0.00,88.00,55.00,281.00,,,,,,\n2015,5,21,\"WN\",\"1528\",\"BUF\",\"BWI\",32.00,25.00,0.00,\"\",0.00,68.00,52.00,281.00,6.00,0.00,0.00,0.00,19.00,\n2015,5,21,\"WN\",\"2423\",\"BUF\",\"BWI\",-2.00,-14.00,0.00,\"\",0.00,63.00,52.00,281.00,,,,,,\n2015,5,21,\"WN\",\"1785\",\"BUF\",\"FLL\",-4.00,-6.00,0.00,\"\",0.00,183.00,155.00,1166.00,,,,,,\n2015,5,21,\"WN\",\"361\",\"BUF\",\"LAS\",-1.00,5.00,0.00,\"\",0.00,306.00,287.00,1986.00,,,,,,\n2015,5,21,\"WN\",\"615\",\"BUF\",\"LAS\",-2.00,-5.00,0.00,\"\",0.00,287.00,270.00,1986.00,,,,,,\n2015,5,21,\"WN\",\"134\",\"BUF\",\"MCO\",-3.00,-1.00,0.00,\"\",0.00,162.00,148.00,1011.00,,,,,,\n2015,5,21,\"WN\",\"674\",\"BUF\",\"MCO\",10.00,-2.00,0.00,\"\",0.00,148.00,134.00,1011.00,,,,,,\n2015,5,21,\"WN\",\"854\",\"BUF\",\"MCO\",-7.00,-20.00,0.00,\"\",0.00,147.00,135.00,1011.00,,,,,,\n2015,5,21,\"WN\",\"2141\",\"BUF\",\"MCO\",-5.00,-9.00,0.00,\"\",0.00,156.00,136.00,1011.00,,,,,,\n2015,5,21,\"WN\",\"717\",\"BUF\",\"MDW\",-2.00,-13.00,0.00,\"\",0.00,99.00,79.00,468.00,,,,,,\n2015,5,21,\"WN\",\"2023\",\"BUF\",\"MDW\",-3.00,14.00,0.00,\"\",0.00,122.00,80.00,468.00,,,,,,\n2015,5,21,\"WN\",\"2632\",\"BUF\",\"MDW\",-1.00,-5.00,0.00,\"\",0.00,96.00,81.00,468.00,,,,,,\n2015,5,21,\"WN\",\"328\",\"BUF\",\"PHX\",10.00,13.00,0.00,\"\",0.00,293.00,280.00,1912.00,,,,,,\n2015,5,21,\"WN\",\"984\",\"BUF\",\"TPA\",-2.00,-10.00,0.00,\"\",0.00,157.00,143.00,1053.00,,,,,,\n2015,5,21,\"WN\",\"2824\",\"BUF\",\"TPA\",-5.00,-10.00,0.00,\"\",0.00,160.00,138.00,1053.00,,,,,,\n2015,5,21,\"WN\",\"334\",\"BWI\",\"ALB\",-2.00,-16.00,0.00,\"\",0.00,61.00,51.00,289.00,,,,,,\n2015,5,21,\"WN\",\"346\",\"BWI\",\"ALB\",2.00,19.00,0.00,\"\",0.00,82.00,54.00,289.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,21,\"WN\",\"598\",\"BWI\",\"ALB\",-2.00,-13.00,0.00,\"\",0.00,59.00,48.00,289.00,,,,,,\n2015,5,21,\"WN\",\"1269\",\"BWI\",\"ALB\",14.00,-3.00,0.00,\"\",0.00,58.00,45.00,289.00,,,,,,\n2015,5,21,\"WN\",\"3033\",\"BWI\",\"ALB\",-2.00,-11.00,0.00,\"\",0.00,61.00,49.00,289.00,,,,,,\n2015,5,21,\"WN\",\"3919\",\"BWI\",\"ALB\",6.00,1.00,0.00,\"\",0.00,65.00,50.00,289.00,,,,,,\n2015,5,21,\"WN\",\"328\",\"BWI\",\"BUF\",3.00,4.00,0.00,\"\",0.00,66.00,48.00,281.00,,,,,,\n2015,5,21,\"WN\",\"572\",\"BWI\",\"BUF\",-3.00,-15.00,0.00,\"\",0.00,58.00,45.00,281.00,,,,,,\n2015,5,21,\"WN\",\"819\",\"BWI\",\"BUF\",-6.00,-7.00,0.00,\"\",0.00,64.00,46.00,281.00,,,,,,\n2015,5,21,\"WN\",\"854\",\"BWI\",\"BUF\",0.00,-16.00,0.00,\"\",0.00,54.00,42.00,281.00,,,,,,\n2015,5,21,\"WN\",\"1350\",\"BWI\",\"BUF\",35.00,24.00,0.00,\"\",0.00,54.00,42.00,281.00,11.00,0.00,0.00,0.00,13.00,\n2015,5,21,\"WN\",\"1900\",\"BWI\",\"BUF\",18.00,6.00,0.00,\"\",0.00,63.00,47.00,281.00,,,,,,\n2015,5,21,\"WN\",\"232\",\"BWI\",\"ISP\",31.00,20.00,0.00,\"\",0.00,54.00,40.00,220.00,18.00,0.00,0.00,0.00,2.00,\n2015,5,21,\"WN\",\"752\",\"BWI\",\"ISP\",7.00,11.00,0.00,\"\",0.00,64.00,42.00,220.00,,,,,,\n2015,5,21,\"WN\",\"842\",\"BWI\",\"ISP\",-2.00,-9.00,0.00,\"\",0.00,58.00,40.00,220.00,,,,,,\n2015,5,21,\"WN\",\"2452\",\"BWI\",\"ISP\",131.00,118.00,0.00,\"\",0.00,57.00,41.00,220.00,58.00,0.00,0.00,0.00,60.00,\n2015,5,21,\"WN\",\"4017\",\"BWI\",\"ISP\",18.00,21.00,0.00,\"\",0.00,63.00,46.00,220.00,8.00,0.00,3.00,0.00,10.00,\n2015,5,21,\"WN\",\"597\",\"BWI\",\"ROC\",7.00,9.00,0.00,\"\",0.00,72.00,48.00,277.00,,,,,,\n2015,5,21,\"WN\",\"3564\",\"BWI\",\"ROC\",17.00,16.00,0.00,\"\",0.00,69.00,48.00,277.00,5.00,0.00,0.00,0.00,11.00,\n2015,5,21,\"WN\",\"914\",\"CAK\",\"LGA\",-7.00,-3.00,0.00,\"\",0.00,94.00,62.00,397.00,,,,,,\n2015,5,21,\"WN\",\"4728\",\"CAK\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,75.00,59.00,397.00,,,,,,\n2015,5,21,\"WN\",\"691\",\"DAL\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,186.00,158.00,1381.00,,,,,,\n2015,5,21,\"WN\",\"1214\",\"DAL\",\"LGA\",18.00,-10.00,0.00,\"\",0.00,177.00,163.00,1381.00,,,,,,\n2015,5,21,\"WN\",\"2141\",\"DAL\",\"LGA\",42.00,7.00,0.00,\"\",0.00,170.00,159.00,1381.00,,,,,,\n2015,5,21,\"WN\",\"2234\",\"DAL\",\"LGA\",15.00,18.00,0.00,\"\",0.00,208.00,173.00,1381.00,0.00,15.00,3.00,0.00,0.00,\n2015,5,27,\"US\",\"1810\",\"LGA\",\"CLT\",-6.00,-17.00,0.00,\"\",0.00,111.00,80.00,544.00,,,,,,\n2015,5,27,\"US\",\"1815\",\"LGA\",\"CLT\",-6.00,-4.00,0.00,\"\",0.00,124.00,97.00,544.00,,,,,,\n2015,5,27,\"US\",\"1830\",\"CLT\",\"JFK\",-3.00,-3.00,0.00,\"\",0.00,107.00,78.00,541.00,,,,,,\n2015,5,27,\"US\",\"1849\",\"LGA\",\"CLT\",-7.00,-27.00,0.00,\"\",0.00,113.00,81.00,544.00,,,,,,\n2015,5,27,\"US\",\"1851\",\"LGA\",\"CLT\",105.00,156.00,0.00,\"\",0.00,174.00,92.00,544.00,0.00,0.00,51.00,0.00,105.00,\n2015,5,27,\"US\",\"1873\",\"BUF\",\"CLT\",20.00,31.00,0.00,\"\",0.00,119.00,97.00,546.00,3.00,0.00,11.00,0.00,17.00,\n2015,5,27,\"US\",\"1885\",\"CLT\",\"BUF\",-4.00,-10.00,0.00,\"\",0.00,95.00,74.00,546.00,,,,,,\n2015,5,27,\"US\",\"1898\",\"CLT\",\"JFK\",-3.00,4.00,0.00,\"\",0.00,117.00,80.00,541.00,,,,,,\n2015,5,27,\"US\",\"1908\",\"LGA\",\"CLT\",-6.00,-8.00,0.00,\"\",0.00,120.00,92.00,544.00,,,,,,\n2015,5,27,\"US\",\"1910\",\"CLT\",\"LGA\",56.00,32.00,0.00,\"\",0.00,92.00,77.00,544.00,0.00,0.00,0.00,0.00,32.00,\n2015,5,27,\"US\",\"1916\",\"SYR\",\"CLT\",25.00,17.00,0.00,\"\",0.00,114.00,98.00,603.00,0.00,0.00,17.00,0.00,0.00,\n2015,5,27,\"US\",\"1919\",\"JFK\",\"CLT\",292.00,288.00,0.00,\"\",0.00,117.00,79.00,541.00,0.00,0.00,0.00,0.00,288.00,\n2015,5,27,\"US\",\"1923\",\"ALB\",\"CLT\",-10.00,-28.00,0.00,\"\",0.00,124.00,99.00,646.00,,,,,,\n2015,5,27,\"US\",\"1933\",\"LGA\",\"PHL\",3.00,-4.00,0.00,\"\",0.00,66.00,47.00,96.00,,,,,,\n2015,5,27,\"US\",\"1940\",\"CLT\",\"ALB\",-3.00,11.00,0.00,\"\",0.00,132.00,97.00,646.00,,,,,,\n2015,5,27,\"US\",\"1942\",\"CLT\",\"BUF\",9.00,3.00,0.00,\"\",0.00,94.00,76.00,546.00,,,,,,\n2015,5,27,\"US\",\"1951\",\"LGA\",\"CLT\",-2.00,-12.00,0.00,\"\",0.00,112.00,94.00,544.00,,,,,,\n2015,5,27,\"US\",\"1952\",\"CLT\",\"BUF\",6.00,24.00,0.00,\"\",0.00,116.00,75.00,546.00,6.00,0.00,18.00,0.00,0.00,\n2015,5,27,\"US\",\"1954\",\"CLT\",\"LGA\",70.00,68.00,0.00,\"\",0.00,106.00,79.00,544.00,0.00,0.00,68.00,0.00,0.00,\n2015,5,27,\"US\",\"1971\",\"CLT\",\"SYR\",-3.00,-7.00,0.00,\"\",0.00,101.00,79.00,603.00,,,,,,\n2015,5,27,\"US\",\"1977\",\"BUF\",\"CLT\",-6.00,-3.00,0.00,\"\",0.00,112.00,89.00,546.00,,,,,,\n2015,5,27,\"US\",\"1981\",\"CLT\",\"LGA\",20.00,85.00,0.00,\"\",0.00,170.00,82.00,544.00,6.00,0.00,65.00,0.00,14.00,\n2015,5,27,\"US\",\"1983\",\"BUF\",\"CLT\",7.00,5.00,0.00,\"\",0.00,110.00,94.00,546.00,,,,,,\n2015,5,27,\"US\",\"1988\",\"CLT\",\"ALB\",-3.00,4.00,0.00,\"\",0.00,132.00,95.00,646.00,,,,,,\n2015,5,27,\"US\",\"2017\",\"CLT\",\"JFK\",241.00,300.00,0.00,\"\",0.00,169.00,87.00,541.00,0.00,0.00,300.00,0.00,0.00,\n2015,5,27,\"US\",\"2036\",\"CLT\",\"SYR\",30.00,29.00,0.00,\"\",0.00,109.00,79.00,603.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,27,\"US\",\"2042\",\"CLT\",\"JFK\",-6.00,-8.00,0.00,\"\",0.00,104.00,79.00,541.00,,,,,,\n2015,5,27,\"US\",\"2050\",\"CLT\",\"LGA\",368.00,386.00,0.00,\"\",0.00,126.00,82.00,544.00,0.00,0.00,386.00,0.00,0.00,\n2015,5,27,\"US\",\"2060\",\"CLT\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,99.00,80.00,544.00,,,,,,\n2015,5,27,\"US\",\"2062\",\"CLT\",\"LGA\",-5.00,-3.00,0.00,\"\",0.00,111.00,78.00,544.00,,,,,,\n2015,5,27,\"US\",\"2064\",\"CLT\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,114.00,78.00,544.00,,,,,,\n2015,5,27,\"US\",\"2066\",\"CLT\",\"LGA\",9.00,2.00,0.00,\"\",0.00,99.00,75.00,544.00,,,,,,\n2015,5,27,\"US\",\"2068\",\"CLT\",\"LGA\",65.00,116.00,0.00,\"\",0.00,158.00,79.00,544.00,0.00,0.00,116.00,0.00,0.00,\n2015,5,27,\"US\",\"2069\",\"JFK\",\"CLT\",10.00,-1.00,0.00,\"\",0.00,110.00,81.00,541.00,,,,,,\n2015,5,27,\"US\",\"2115\",\"LGA\",\"DCA\",-5.00,-2.00,0.00,\"\",0.00,66.00,41.00,214.00,,,,,,\n2015,5,27,\"US\",\"2117\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,27,\"US\",\"2118\",\"BOS\",\"LGA\",203.00,201.00,0.00,\"\",0.00,79.00,49.00,184.00,0.00,0.00,201.00,0.00,0.00,\n2015,5,27,\"US\",\"2118\",\"LGA\",\"BOS\",20.00,6.00,0.00,\"\",0.00,64.00,37.00,184.00,,,,,,\n2015,5,27,\"US\",\"2121\",\"BOS\",\"LGA\",-5.00,-16.00,0.00,\"\",0.00,65.00,45.00,184.00,,,,,,\n2015,5,27,\"US\",\"2121\",\"LGA\",\"BOS\",-4.00,-11.00,0.00,\"\",0.00,71.00,42.00,184.00,,,,,,\n2015,5,27,\"US\",\"2122\",\"LGA\",\"BOS\",235.00,223.00,0.00,\"\",0.00,62.00,44.00,184.00,0.00,3.00,0.00,0.00,220.00,\n2015,5,27,\"US\",\"2123\",\"LGA\",\"DCA\",-6.00,0.00,0.00,\"\",0.00,76.00,42.00,214.00,,,,,,\n2015,5,27,\"US\",\"2125\",\"LGA\",\"DCA\",-10.00,-19.00,0.00,\"\",0.00,75.00,47.00,214.00,,,,,,\n2015,5,27,\"US\",\"2126\",\"BOS\",\"LGA\",-8.00,-11.00,0.00,\"\",0.00,78.00,45.00,184.00,,,,,,\n2015,5,27,\"US\",\"2126\",\"LGA\",\"BOS\",-6.00,-11.00,0.00,\"\",0.00,57.00,41.00,184.00,,,,,,\n2015,5,27,\"US\",\"2128\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,27,\"US\",\"2131\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,27,\"US\",\"2131\",\"LGA\",\"BOS\",-4.00,-17.00,0.00,\"\",0.00,59.00,38.00,184.00,,,,,,\n2015,5,27,\"US\",\"2133\",\"DCA\",\"LGA\",1.00,10.00,0.00,\"\",0.00,99.00,44.00,214.00,,,,,,\n2015,5,27,\"US\",\"2133\",\"LGA\",\"DCA\",2.00,-7.00,0.00,\"\",0.00,68.00,42.00,214.00,,,,,,\n2015,5,27,\"US\",\"2135\",\"DCA\",\"LGA\",-7.00,-22.00,0.00,\"\",0.00,61.00,42.00,214.00,,,,,,\n2015,5,27,\"US\",\"2135\",\"LGA\",\"DCA\",-8.00,8.00,0.00,\"\",0.00,91.00,63.00,214.00,,,,,,\n2015,5,27,\"US\",\"2136\",\"BOS\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,62.00,43.00,184.00,,,,,,\n2015,5,27,\"US\",\"2136\",\"LGA\",\"BOS\",-7.00,-23.00,0.00,\"\",0.00,62.00,42.00,184.00,,,,,,\n2015,5,27,\"US\",\"2137\",\"DCA\",\"LGA\",-8.00,-19.00,0.00,\"\",0.00,57.00,41.00,214.00,,,,,,\n2015,5,27,\"US\",\"2137\",\"LGA\",\"DCA\",-10.00,-17.00,0.00,\"\",0.00,78.00,45.00,214.00,,,,,,\n2015,5,27,\"US\",\"2141\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,27,\"US\",\"2141\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,27,\"US\",\"2143\",\"DCA\",\"LGA\",-5.00,-18.00,0.00,\"\",0.00,76.00,40.00,214.00,,,,,,\n2015,5,27,\"US\",\"2143\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,27,\"US\",\"2144\",\"DCA\",\"LGA\",-8.00,-10.00,0.00,\"\",0.00,77.00,43.00,214.00,,,,,,\n2015,5,27,\"US\",\"2144\",\"LGA\",\"DCA\",-9.00,-8.00,0.00,\"\",0.00,83.00,44.00,214.00,,,,,,\n2015,5,27,\"US\",\"2145\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,27,\"US\",\"2145\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,27,\"US\",\"2146\",\"BOS\",\"LGA\",-6.00,1.00,0.00,\"\",0.00,89.00,43.00,184.00,,,,,,\n2015,5,27,\"US\",\"2146\",\"LGA\",\"BOS\",-6.00,-9.00,0.00,\"\",0.00,65.00,39.00,184.00,,,,,,\n2015,5,27,\"US\",\"2147\",\"DCA\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,80.00,41.00,214.00,,,,,,\n2015,5,27,\"US\",\"2147\",\"LGA\",\"DCA\",-9.00,-22.00,0.00,\"\",0.00,69.00,45.00,214.00,,,,,,\n2015,5,27,\"US\",\"2148\",\"BOS\",\"LGA\",-7.00,-6.00,0.00,\"\",0.00,77.00,46.00,184.00,,,,,,\n2015,5,27,\"US\",\"2151\",\"LGA\",\"BOS\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,27,\"US\",\"2152\",\"BOS\",\"LGA\",-6.00,3.00,0.00,\"\",0.00,90.00,44.00,184.00,,,,,,\n2015,5,27,\"US\",\"2152\",\"LGA\",\"BOS\",-6.00,6.00,0.00,\"\",0.00,80.00,51.00,184.00,,,,,,\n2015,5,27,\"US\",\"2153\",\"DCA\",\"LGA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,27,\"US\",\"2153\",\"LGA\",\"DCA\",-4.00,61.00,0.00,\"\",0.00,145.00,62.00,214.00,0.00,0.00,61.00,0.00,0.00,\n2015,5,27,\"US\",\"2154\",\"DCA\",\"LGA\",-7.00,-21.00,0.00,\"\",0.00,62.00,41.00,214.00,,,,,,\n2015,5,27,\"US\",\"2154\",\"LGA\",\"DCA\",-10.00,-16.00,0.00,\"\",0.00,70.00,46.00,214.00,,,,,,\n2015,5,27,\"US\",\"2155\",\"DCA\",\"LGA\",44.00,39.00,0.00,\"\",0.00,90.00,46.00,214.00,0.00,0.00,39.00,0.00,0.00,\n2015,5,27,\"US\",\"2156\",\"BOS\",\"LGA\",,,1.00,\"C\",0.00,,,184.00,,,,,,\n2015,5,27,\"US\",\"2156\",\"LGA\",\"BOS\",-3.00,9.00,0.00,\"\",0.00,88.00,42.00,184.00,,,,,,\n2015,5,27,\"US\",\"2157\",\"DCA\",\"LGA\",31.00,56.00,0.00,\"\",0.00,113.00,40.00,214.00,0.00,0.00,56.00,0.00,0.00,\n2015,5,27,\"US\",\"2157\",\"LGA\",\"DCA\",59.00,68.00,0.00,\"\",0.00,91.00,55.00,214.00,5.00,0.00,9.00,0.00,54.00,\n2015,5,27,\"US\",\"2158\",\"BOS\",\"LGA\",-4.00,-2.00,0.00,\"\",0.00,82.00,41.00,184.00,,,,,,\n2015,5,27,\"US\",\"2158\",\"LGA\",\"BOS\",-7.00,10.00,0.00,\"\",0.00,81.00,39.00,184.00,,,,,,\n2015,5,27,\"US\",\"2162\",\"BOS\",\"LGA\",-9.00,-14.00,0.00,\"\",0.00,79.00,43.00,184.00,,,,,,\n2015,5,27,\"US\",\"2162\",\"LGA\",\"BOS\",-7.00,-19.00,0.00,\"\",0.00,60.00,37.00,184.00,,,,,,\n2015,5,27,\"US\",\"2163\",\"DCA\",\"LGA\",-9.00,-16.00,0.00,\"\",0.00,76.00,47.00,214.00,,,,,,\n2015,5,27,\"US\",\"2164\",\"DCA\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,68.00,41.00,214.00,,,,,,\n2015,5,27,\"US\",\"2164\",\"LGA\",\"DCA\",-3.00,5.00,0.00,\"\",0.00,91.00,57.00,214.00,,,,,,\n2015,5,27,\"US\",\"2165\",\"BOS\",\"LGA\",-10.00,35.00,0.00,\"\",0.00,121.00,47.00,184.00,0.00,0.00,35.00,0.00,0.00,\n2015,5,27,\"US\",\"2167\",\"DCA\",\"LGA\",71.00,165.00,0.00,\"\",0.00,180.00,49.00,214.00,0.00,0.00,165.00,0.00,0.00,\n2015,5,27,\"US\",\"2167\",\"LGA\",\"DCA\",,,1.00,\"C\",0.00,,,214.00,,,,,,\n2015,5,27,\"US\",\"2168\",\"BOS\",\"LGA\",-5.00,29.00,0.00,\"\",0.00,115.00,45.00,184.00,0.00,0.00,29.00,0.00,0.00,\n2015,5,27,\"US\",\"2168\",\"LGA\",\"BOS\",-6.00,-20.00,0.00,\"\",0.00,57.00,39.00,184.00,,,,,,\n2015,5,27,\"US\",\"2171\",\"BOS\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,75.00,44.00,184.00,,,,,,\n2015,5,27,\"US\",\"2172\",\"BOS\",\"LGA\",173.00,241.00,0.00,\"\",0.00,149.00,44.00,184.00,0.00,0.00,241.00,0.00,0.00,\n2015,5,27,\"US\",\"2172\",\"LGA\",\"BOS\",-7.00,-4.00,0.00,\"\",0.00,76.00,48.00,184.00,,,,,,\n2015,5,27,\"US\",\"2174\",\"DCA\",\"LGA\",25.00,88.00,0.00,\"\",0.00,153.00,46.00,214.00,0.00,0.00,88.00,0.00,0.00,\n2015,5,27,\"US\",\"2174\",\"LGA\",\"DCA\",116.00,,1.00,\"A\",0.00,,,214.00,,,,,,\n2015,5,28,\"US\",\"413\",\"JFK\",\"CLT\",178.00,174.00,0.00,\"\",0.00,112.00,76.00,541.00,174.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"US\",\"425\",\"JFK\",\"CLT\",-4.00,-29.00,0.00,\"\",0.00,103.00,77.00,541.00,,,,,,\n2015,5,28,\"US\",\"425\",\"PHX\",\"JFK\",4.00,-3.00,0.00,\"\",0.00,296.00,259.00,2153.00,,,,,,\n2015,5,28,\"US\",\"433\",\"JFK\",\"PHX\",0.00,-22.00,0.00,\"\",0.00,316.00,289.00,2153.00,,,,,,\n2015,5,28,\"US\",\"468\",\"LGA\",\"CLT\",-6.00,5.00,0.00,\"\",0.00,130.00,79.00,544.00,,,,,,\n2015,5,21,\"WN\",\"299\",\"HOU\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,201.00,178.00,1428.00,,,,,,\n2015,5,21,\"WN\",\"536\",\"HOU\",\"LGA\",-2.00,-10.00,0.00,\"\",0.00,197.00,178.00,1428.00,,,,,,\n2015,5,21,\"WN\",\"1163\",\"HOU\",\"LGA\",75.00,41.00,0.00,\"\",0.00,176.00,163.00,1428.00,2.00,0.00,0.00,0.00,39.00,\n2015,5,21,\"WN\",\"325\",\"ISP\",\"BWI\",14.00,17.00,0.00,\"\",0.00,73.00,60.00,220.00,7.00,0.00,3.00,0.00,7.00,\n2015,5,21,\"WN\",\"580\",\"ISP\",\"BWI\",-7.00,-13.00,0.00,\"\",0.00,69.00,57.00,220.00,,,,,,\n2015,5,21,\"WN\",\"667\",\"ISP\",\"BWI\",-6.00,-4.00,0.00,\"\",0.00,77.00,51.00,220.00,,,,,,\n2015,5,21,\"WN\",\"2940\",\"ISP\",\"BWI\",2.00,40.00,0.00,\"\",0.00,113.00,63.00,220.00,0.00,0.00,40.00,0.00,0.00,\n2015,5,21,\"WN\",\"3743\",\"ISP\",\"BWI\",-5.00,-8.00,0.00,\"\",0.00,72.00,57.00,220.00,,,,,,\n2015,5,21,\"WN\",\"752\",\"ISP\",\"FLL\",18.00,28.00,0.00,\"\",0.00,195.00,175.00,1092.00,7.00,0.00,10.00,0.00,11.00,\n2015,5,21,\"WN\",\"4554\",\"ISP\",\"FLL\",-1.00,-3.00,0.00,\"\",0.00,178.00,149.00,1092.00,,,,,,\n2015,5,21,\"WN\",\"663\",\"ISP\",\"MCO\",-4.00,-4.00,0.00,\"\",0.00,160.00,142.00,971.00,,,,,,\n2015,5,21,\"WN\",\"4017\",\"ISP\",\"MCO\",28.00,12.00,0.00,\"\",0.00,149.00,137.00,971.00,,,,,,\n2015,5,21,\"WN\",\"4575\",\"ISP\",\"MCO\",-5.00,-3.00,0.00,\"\",0.00,167.00,145.00,971.00,,,,,,\n2015,5,21,\"WN\",\"4910\",\"ISP\",\"MCO\",-2.00,-19.00,0.00,\"\",0.00,153.00,138.00,971.00,,,,,,\n2015,5,21,\"WN\",\"4479\",\"ISP\",\"PBI\",16.00,28.00,0.00,\"\",0.00,182.00,162.00,1052.00,0.00,15.00,12.00,0.00,1.00,\n2015,5,21,\"WN\",\"4729\",\"ISP\",\"PBI\",-5.00,-2.00,0.00,\"\",0.00,173.00,159.00,1052.00,,,,,,\n2015,5,21,\"WN\",\"208\",\"ISP\",\"TPA\",-2.00,1.00,0.00,\"\",0.00,173.00,157.00,1034.00,,,,,,\n2015,5,21,\"WN\",\"4907\",\"ISP\",\"TPA\",46.00,36.00,0.00,\"\",0.00,170.00,157.00,1034.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,21,\"WN\",\"2202\",\"LAS\",\"ALB\",5.00,-15.00,0.00,\"\",0.00,265.00,247.00,2237.00,,,,,,\n2015,5,21,\"WN\",\"2023\",\"LAS\",\"BUF\",-4.00,-41.00,0.00,\"\",0.00,228.00,217.00,1986.00,,,,,,\n2015,5,21,\"WN\",\"2528\",\"LAS\",\"BUF\",-1.00,-2.00,0.00,\"\",0.00,254.00,221.00,1986.00,,,,,,\n2015,5,21,\"WN\",\"178\",\"LGA\",\"ATL\",-1.00,-22.00,0.00,\"\",0.00,139.00,114.00,762.00,,,,,,\n2015,5,21,\"WN\",\"2939\",\"LGA\",\"ATL\",-2.00,-27.00,0.00,\"\",0.00,145.00,116.00,762.00,,,,,,\n2015,5,21,\"WN\",\"3133\",\"LGA\",\"ATL\",0.00,-9.00,0.00,\"\",0.00,151.00,115.00,762.00,,,,,,\n2015,5,21,\"WN\",\"3391\",\"LGA\",\"ATL\",-3.00,-14.00,0.00,\"\",0.00,149.00,119.00,762.00,,,,,,\n2015,5,21,\"WN\",\"4728\",\"LGA\",\"ATL\",1.00,8.00,0.00,\"\",0.00,182.00,120.00,762.00,,,,,,\n2015,5,21,\"WN\",\"914\",\"LGA\",\"BNA\",-5.00,5.00,0.00,\"\",0.00,160.00,122.00,764.00,,,,,,\n2015,5,21,\"WN\",\"1208\",\"LGA\",\"BNA\",12.00,2.00,0.00,\"\",0.00,145.00,126.00,764.00,,,,,,\n2015,5,21,\"WN\",\"1370\",\"LGA\",\"BNA\",5.00,11.00,0.00,\"\",0.00,171.00,124.00,764.00,,,,,,\n2015,5,21,\"WN\",\"202\",\"LGA\",\"CAK\",-4.00,-9.00,0.00,\"\",0.00,95.00,70.00,397.00,,,,,,\n2015,5,21,\"WN\",\"534\",\"LGA\",\"CAK\",-1.00,-8.00,0.00,\"\",0.00,93.00,67.00,397.00,,,,,,\n2015,5,21,\"WN\",\"255\",\"LGA\",\"DAL\",3.00,-4.00,0.00,\"\",0.00,238.00,205.00,1381.00,,,,,,\n2015,5,21,\"WN\",\"431\",\"LGA\",\"DAL\",33.00,9.00,0.00,\"\",0.00,216.00,202.00,1381.00,,,,,,\n2015,5,21,\"WN\",\"2347\",\"LGA\",\"DAL\",9.00,4.00,0.00,\"\",0.00,240.00,208.00,1381.00,,,,,,\n2015,5,21,\"WN\",\"3489\",\"LGA\",\"DAL\",0.00,-7.00,0.00,\"\",0.00,223.00,207.00,1381.00,,,,,,\n2015,5,21,\"WN\",\"12\",\"LGA\",\"DEN\",31.00,35.00,0.00,\"\",0.00,279.00,241.00,1620.00,0.00,0.00,15.00,0.00,20.00,\n2015,5,21,\"WN\",\"165\",\"LGA\",\"DEN\",-1.00,-12.00,0.00,\"\",0.00,264.00,242.00,1620.00,,,,,,\n2015,5,21,\"WN\",\"682\",\"LGA\",\"HOU\",-2.00,26.00,0.00,\"\",0.00,268.00,218.00,1428.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,21,\"WN\",\"2778\",\"LGA\",\"HOU\",0.00,-5.00,0.00,\"\",0.00,245.00,220.00,1428.00,,,,,,\n2015,5,21,\"WN\",\"3845\",\"LGA\",\"HOU\",-4.00,-3.00,0.00,\"\",0.00,241.00,206.00,1428.00,,,,,,\n2015,5,21,\"WN\",\"413\",\"LGA\",\"MCI\",-4.00,-2.00,0.00,\"\",0.00,202.00,174.00,1107.00,,,,,,\n2015,5,21,\"WN\",\"479\",\"LGA\",\"MDW\",8.00,-3.00,0.00,\"\",0.00,134.00,110.00,725.00,,,,,,\n2015,5,21,\"WN\",\"777\",\"LGA\",\"MDW\",0.00,-27.00,0.00,\"\",0.00,128.00,114.00,725.00,,,,,,\n2015,5,21,\"WN\",\"868\",\"LGA\",\"MDW\",22.00,8.00,0.00,\"\",0.00,146.00,110.00,725.00,,,,,,\n2015,5,21,\"WN\",\"2516\",\"LGA\",\"MDW\",6.00,0.00,0.00,\"\",0.00,154.00,116.00,725.00,,,,,,\n2015,5,21,\"WN\",\"2529\",\"LGA\",\"MDW\",-1.00,-15.00,0.00,\"\",0.00,136.00,114.00,725.00,,,,,,\n2015,5,21,\"WN\",\"2659\",\"LGA\",\"MDW\",1.00,-19.00,0.00,\"\",0.00,135.00,115.00,725.00,,,,,,\n2015,5,21,\"WN\",\"4123\",\"LGA\",\"MDW\",-3.00,-8.00,0.00,\"\",0.00,145.00,119.00,725.00,,,,,,\n2015,5,21,\"WN\",\"1344\",\"LGA\",\"MKE\",3.00,-7.00,0.00,\"\",0.00,140.00,109.00,738.00,,,,,,\n2015,5,21,\"WN\",\"2433\",\"LGA\",\"MKE\",6.00,4.00,0.00,\"\",0.00,153.00,112.00,738.00,,,,,,\n2015,5,21,\"WN\",\"4379\",\"LGA\",\"MKE\",-3.00,-8.00,0.00,\"\",0.00,140.00,116.00,738.00,,,,,,\n2015,5,21,\"WN\",\"536\",\"LGA\",\"STL\",2.00,5.00,0.00,\"\",0.00,183.00,140.00,888.00,,,,,,\n2015,5,21,\"WN\",\"2168\",\"LGA\",\"STL\",-1.00,10.00,0.00,\"\",0.00,171.00,139.00,888.00,,,,,,\n2015,5,21,\"WN\",\"4571\",\"LGA\",\"STL\",0.00,13.00,0.00,\"\",0.00,183.00,142.00,888.00,,,,,,\n2015,5,21,\"WN\",\"333\",\"MCI\",\"LGA\",29.00,8.00,0.00,\"\",0.00,149.00,135.00,1107.00,,,,,,\n2015,5,21,\"WN\",\"1011\",\"MCO\",\"ALB\",-4.00,-19.00,0.00,\"\",0.00,150.00,137.00,1073.00,,,,,,\n2015,5,21,\"WN\",\"2849\",\"MCO\",\"ALB\",7.00,-6.00,0.00,\"\",0.00,147.00,128.00,1073.00,,,,,,\n2015,5,21,\"WN\",\"728\",\"MCO\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,147.00,134.00,1011.00,,,,,,\n2015,5,21,\"WN\",\"801\",\"MCO\",\"BUF\",10.00,2.00,0.00,\"\",0.00,147.00,129.00,1011.00,,,,,,\n2015,5,21,\"WN\",\"2423\",\"MCO\",\"BUF\",-1.00,-18.00,0.00,\"\",0.00,138.00,124.00,1011.00,,,,,,\n2015,5,21,\"WN\",\"2632\",\"MCO\",\"BUF\",0.00,-12.00,0.00,\"\",0.00,143.00,124.00,1011.00,,,,,,\n2015,5,21,\"WN\",\"293\",\"MCO\",\"ISP\",21.00,3.00,0.00,\"\",0.00,137.00,123.00,971.00,,,,,,\n2015,5,21,\"WN\",\"325\",\"MCO\",\"ISP\",16.00,7.00,0.00,\"\",0.00,141.00,127.00,971.00,,,,,,\n2015,5,21,\"WN\",\"426\",\"MCO\",\"ISP\",-2.00,-12.00,0.00,\"\",0.00,140.00,125.00,971.00,,,,,,\n2015,5,21,\"WN\",\"4486\",\"MCO\",\"ISP\",-4.00,-19.00,0.00,\"\",0.00,135.00,121.00,971.00,,,,,,\n2015,5,21,\"WN\",\"4688\",\"MCO\",\"ROC\",0.00,-5.00,0.00,\"\",0.00,150.00,132.00,1033.00,,,,,,\n2015,5,21,\"WN\",\"103\",\"MDW\",\"ALB\",13.00,9.00,0.00,\"\",0.00,111.00,82.00,717.00,,,,,,\n2015,5,21,\"WN\",\"1461\",\"MDW\",\"ALB\",-4.00,-19.00,0.00,\"\",0.00,100.00,82.00,717.00,,,,,,\n2015,5,21,\"WN\",\"134\",\"MDW\",\"BUF\",-2.00,-19.00,0.00,\"\",0.00,73.00,62.00,468.00,,,,,,\n2015,5,21,\"WN\",\"615\",\"MDW\",\"BUF\",3.00,-13.00,0.00,\"\",0.00,74.00,61.00,468.00,,,,,,\n2015,5,21,\"WN\",\"2241\",\"MDW\",\"BUF\",18.00,3.00,0.00,\"\",0.00,85.00,62.00,468.00,,,,,,\n2015,5,21,\"WN\",\"824\",\"DEN\",\"LGA\",-2.00,-41.00,0.00,\"\",0.00,196.00,180.00,1620.00,,,,,,\n2015,5,21,\"WN\",\"1370\",\"DEN\",\"LGA\",22.00,-10.00,0.00,\"\",0.00,203.00,180.00,1620.00,,,,,,\n2015,5,21,\"WN\",\"1898\",\"FLL\",\"ALB\",2.00,-11.00,0.00,\"\",0.00,167.00,154.00,1204.00,,,,,,\n2015,5,21,\"WN\",\"4643\",\"FLL\",\"BUF\",27.00,7.00,0.00,\"\",0.00,165.00,150.00,1166.00,,,,,,\n2015,5,21,\"WN\",\"28\",\"FLL\",\"ISP\",41.00,26.00,0.00,\"\",0.00,160.00,143.00,1092.00,2.00,0.00,0.00,0.00,24.00,\n2015,5,21,\"WN\",\"4640\",\"FLL\",\"ISP\",-7.00,-19.00,0.00,\"\",0.00,158.00,143.00,1092.00,,,,,,\n2015,5,21,\"WN\",\"292\",\"MDW\",\"ROC\",-4.00,0.00,0.00,\"\",0.00,94.00,65.00,523.00,,,,,,\n2015,5,21,\"WN\",\"463\",\"MDW\",\"ROC\",0.00,-5.00,0.00,\"\",0.00,90.00,71.00,523.00,,,,,,\n2015,5,21,\"WN\",\"202\",\"MKE\",\"LGA\",-4.00,-22.00,0.00,\"\",0.00,117.00,94.00,738.00,,,,,,\n2015,5,21,\"WN\",\"1208\",\"MKE\",\"LGA\",27.00,9.00,0.00,\"\",0.00,117.00,100.00,738.00,,,,,,\n2015,5,21,\"WN\",\"3391\",\"MKE\",\"LGA\",-5.00,-17.00,0.00,\"\",0.00,118.00,97.00,738.00,,,,,,\n2015,5,21,\"WN\",\"2851\",\"PBI\",\"ISP\",-3.00,-6.00,0.00,\"\",0.00,157.00,141.00,1052.00,,,,,,\n2015,5,21,\"WN\",\"4818\",\"PBI\",\"ISP\",46.00,49.00,0.00,\"\",0.00,163.00,150.00,1052.00,46.00,0.00,3.00,0.00,0.00,\n2015,5,21,\"WN\",\"2454\",\"PHX\",\"BUF\",46.00,20.00,0.00,\"\",0.00,219.00,208.00,1912.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,21,\"WN\",\"719\",\"ROC\",\"BWI\",6.00,9.00,0.00,\"\",0.00,73.00,53.00,277.00,,,,,,\n2015,5,21,\"WN\",\"2749\",\"ROC\",\"BWI\",-4.00,-25.00,0.00,\"\",0.00,59.00,47.00,277.00,,,,,,\n2015,5,21,\"WN\",\"597\",\"ROC\",\"MCO\",-1.00,0.00,0.00,\"\",0.00,161.00,150.00,1033.00,,,,,,\n2015,5,21,\"WN\",\"1254\",\"ROC\",\"MDW\",3.00,-2.00,0.00,\"\",0.00,105.00,83.00,523.00,,,,,,\n2015,5,21,\"WN\",\"4712\",\"ROC\",\"MDW\",-3.00,0.00,0.00,\"\",0.00,108.00,90.00,523.00,,,,,,\n2015,5,21,\"WN\",\"1246\",\"ROC\",\"TPA\",-9.00,-15.00,0.00,\"\",0.00,159.00,146.00,1079.00,,,,,,\n2015,5,22,\"WN\",\"178\",\"LGA\",\"ATL\",-3.00,-1.00,0.00,\"\",0.00,162.00,116.00,762.00,,,,,,\n2015,5,22,\"WN\",\"2939\",\"LGA\",\"ATL\",-3.00,-15.00,0.00,\"\",0.00,158.00,119.00,762.00,,,,,,\n2015,5,22,\"WN\",\"3133\",\"LGA\",\"ATL\",1.00,-21.00,0.00,\"\",0.00,138.00,113.00,762.00,,,,,,\n2015,5,22,\"WN\",\"3391\",\"LGA\",\"ATL\",1.00,-9.00,0.00,\"\",0.00,150.00,112.00,762.00,,,,,,\n2015,5,22,\"WN\",\"4728\",\"LGA\",\"ATL\",-4.00,-41.00,0.00,\"\",0.00,138.00,114.00,762.00,,,,,,\n2015,5,22,\"WN\",\"914\",\"LGA\",\"BNA\",-5.00,-8.00,0.00,\"\",0.00,147.00,121.00,764.00,,,,,,\n2015,5,22,\"WN\",\"1208\",\"LGA\",\"BNA\",-1.00,-16.00,0.00,\"\",0.00,140.00,120.00,764.00,,,,,,\n2015,5,22,\"WN\",\"1370\",\"LGA\",\"BNA\",-4.00,-32.00,0.00,\"\",0.00,137.00,115.00,764.00,,,,,,\n2015,5,22,\"WN\",\"202\",\"LGA\",\"CAK\",-3.00,1.00,0.00,\"\",0.00,104.00,71.00,397.00,,,,,,\n2015,5,22,\"WN\",\"534\",\"LGA\",\"CAK\",-3.00,-17.00,0.00,\"\",0.00,86.00,68.00,397.00,,,,,,\n2015,5,22,\"WN\",\"255\",\"LGA\",\"DAL\",-2.00,-9.00,0.00,\"\",0.00,238.00,206.00,1381.00,,,,,,\n2015,5,22,\"WN\",\"431\",\"LGA\",\"DAL\",-2.00,4.00,0.00,\"\",0.00,246.00,204.00,1381.00,,,,,,\n2015,5,22,\"WN\",\"2347\",\"LGA\",\"DAL\",0.00,-27.00,0.00,\"\",0.00,218.00,198.00,1381.00,,,,,,\n2015,5,22,\"WN\",\"3489\",\"LGA\",\"DAL\",2.00,2.00,0.00,\"\",0.00,230.00,208.00,1381.00,,,,,,\n2015,5,22,\"WN\",\"12\",\"LGA\",\"DEN\",-4.00,-18.00,0.00,\"\",0.00,261.00,241.00,1620.00,,,,,,\n2015,5,22,\"WN\",\"165\",\"LGA\",\"DEN\",-1.00,-2.00,0.00,\"\",0.00,274.00,237.00,1620.00,,,,,,\n2015,5,22,\"WN\",\"682\",\"LGA\",\"HOU\",-1.00,-14.00,0.00,\"\",0.00,227.00,206.00,1428.00,,,,,,\n2015,5,22,\"WN\",\"2778\",\"LGA\",\"HOU\",-1.00,-20.00,0.00,\"\",0.00,231.00,206.00,1428.00,,,,,,\n2015,5,22,\"WN\",\"3845\",\"LGA\",\"HOU\",-1.00,-3.00,0.00,\"\",0.00,238.00,208.00,1428.00,,,,,,\n2015,5,22,\"WN\",\"413\",\"LGA\",\"MCI\",-6.00,-16.00,0.00,\"\",0.00,190.00,170.00,1107.00,,,,,,\n2015,5,20,\"WN\",\"12\",\"STL\",\"LGA\",17.00,-1.00,0.00,\"\",0.00,127.00,107.00,888.00,,,,,,\n2015,5,20,\"WN\",\"1194\",\"STL\",\"LGA\",-5.00,-21.00,0.00,\"\",0.00,129.00,105.00,888.00,,,,,,\n2015,5,20,\"WN\",\"1986\",\"STL\",\"LGA\",-1.00,-18.00,0.00,\"\",0.00,123.00,106.00,888.00,,,,,,\n2015,5,20,\"WN\",\"854\",\"TPA\",\"ALB\",3.00,-3.00,0.00,\"\",0.00,164.00,152.00,1130.00,,,,,,\n2015,5,20,\"WN\",\"127\",\"TPA\",\"BUF\",58.00,51.00,0.00,\"\",0.00,148.00,134.00,1053.00,5.00,0.00,0.00,0.00,46.00,\n2015,5,20,\"WN\",\"2160\",\"TPA\",\"BUF\",17.00,5.00,0.00,\"\",0.00,143.00,131.00,1053.00,,,,,,\n2015,5,20,\"WN\",\"2423\",\"TPA\",\"ISP\",-4.00,-1.00,0.00,\"\",0.00,158.00,136.00,1034.00,,,,,,\n2015,5,20,\"WN\",\"4390\",\"TPA\",\"ISP\",-9.00,-21.00,0.00,\"\",0.00,153.00,137.00,1034.00,,,,,,\n2015,5,20,\"WN\",\"719\",\"TPA\",\"ROC\",-3.00,-5.00,0.00,\"\",0.00,158.00,141.00,1079.00,,,,,,\n2015,5,21,\"WN\",\"223\",\"ALB\",\"BWI\",-3.00,0.00,0.00,\"\",0.00,83.00,64.00,289.00,,,,,,\n2015,5,21,\"WN\",\"752\",\"ALB\",\"BWI\",-3.00,-16.00,0.00,\"\",0.00,67.00,57.00,289.00,,,,,,\n2015,5,21,\"WN\",\"854\",\"ALB\",\"BWI\",-4.00,0.00,0.00,\"\",0.00,79.00,63.00,289.00,,,,,,\n2015,5,21,\"WN\",\"1011\",\"ALB\",\"BWI\",-1.00,-6.00,0.00,\"\",0.00,75.00,63.00,289.00,,,,,,\n2015,5,21,\"WN\",\"3294\",\"ALB\",\"BWI\",-4.00,-23.00,0.00,\"\",0.00,66.00,52.00,289.00,,,,,,\n2015,5,21,\"WN\",\"3917\",\"ALB\",\"BWI\",-4.00,-13.00,0.00,\"\",0.00,71.00,60.00,289.00,,,,,,\n2015,5,21,\"WN\",\"1987\",\"ALB\",\"FLL\",0.00,-13.00,0.00,\"\",0.00,177.00,165.00,1204.00,,,,,,\n2015,5,21,\"WN\",\"346\",\"ALB\",\"LAS\",25.00,35.00,0.00,\"\",0.00,340.00,324.00,2237.00,6.00,0.00,10.00,0.00,19.00,\n2015,5,21,\"WN\",\"3919\",\"ALB\",\"MCO\",-2.00,2.00,0.00,\"\",0.00,179.00,150.00,1073.00,,,,,,\n2015,5,21,\"WN\",\"4362\",\"ALB\",\"MCO\",-3.00,-8.00,0.00,\"\",0.00,170.00,157.00,1073.00,,,,,,\n2015,5,21,\"WN\",\"1550\",\"ALB\",\"MDW\",2.00,13.00,0.00,\"\",0.00,146.00,115.00,717.00,,,,,,\n2015,5,21,\"WN\",\"4985\",\"ALB\",\"MDW\",-5.00,12.00,0.00,\"\",0.00,152.00,119.00,717.00,,,,,,\n2015,5,21,\"WN\",\"3650\",\"ALB\",\"TPA\",-5.00,-13.00,0.00,\"\",0.00,177.00,165.00,1130.00,,,,,,\n2015,5,21,\"WN\",\"815\",\"ATL\",\"LGA\",28.00,4.00,0.00,\"\",0.00,116.00,96.00,762.00,,,,,,\n2015,5,21,\"WN\",\"1182\",\"ATL\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,121.00,101.00,762.00,,,,,,\n2015,5,21,\"WN\",\"2516\",\"ATL\",\"LGA\",0.00,-15.00,0.00,\"\",0.00,120.00,101.00,762.00,,,,,,\n2015,5,21,\"WN\",\"2659\",\"ATL\",\"LGA\",-5.00,-32.00,0.00,\"\",0.00,118.00,99.00,762.00,,,,,,\n2015,5,21,\"WN\",\"2850\",\"ATL\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,117.00,99.00,762.00,,,,,,\n2015,5,21,\"WN\",\"12\",\"STL\",\"LGA\",44.00,20.00,0.00,\"\",0.00,121.00,104.00,888.00,5.00,0.00,0.00,0.00,15.00,\n2015,5,21,\"WN\",\"1194\",\"STL\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,125.00,108.00,888.00,,,,,,\n2015,5,21,\"WN\",\"1986\",\"STL\",\"LGA\",12.00,1.00,0.00,\"\",0.00,129.00,112.00,888.00,,,,,,\n2015,5,21,\"WN\",\"854\",\"TPA\",\"ALB\",10.00,-4.00,0.00,\"\",0.00,156.00,145.00,1130.00,,,,,,\n2015,5,21,\"WN\",\"127\",\"TPA\",\"BUF\",1.00,-5.00,0.00,\"\",0.00,149.00,134.00,1053.00,,,,,,\n2015,5,21,\"WN\",\"2160\",\"TPA\",\"BUF\",-5.00,-12.00,0.00,\"\",0.00,148.00,135.00,1053.00,,,,,,\n2015,5,21,\"WN\",\"2423\",\"TPA\",\"ISP\",-1.00,-6.00,0.00,\"\",0.00,150.00,136.00,1034.00,,,,,,\n2015,5,21,\"WN\",\"4390\",\"TPA\",\"ISP\",18.00,1.00,0.00,\"\",0.00,148.00,132.00,1034.00,,,,,,\n2015,5,21,\"WN\",\"719\",\"TPA\",\"ROC\",4.00,-4.00,0.00,\"\",0.00,152.00,137.00,1079.00,,,,,,\n2015,5,22,\"WN\",\"223\",\"ALB\",\"BWI\",-8.00,-23.00,0.00,\"\",0.00,65.00,53.00,289.00,,,,,,\n2015,5,22,\"WN\",\"752\",\"ALB\",\"BWI\",1.00,-7.00,0.00,\"\",0.00,72.00,58.00,289.00,,,,,,\n2015,5,22,\"WN\",\"854\",\"ALB\",\"BWI\",-7.00,-15.00,0.00,\"\",0.00,67.00,55.00,289.00,,,,,,\n2015,5,22,\"WN\",\"1011\",\"ALB\",\"BWI\",-5.00,-12.00,0.00,\"\",0.00,73.00,56.00,289.00,,,,,,\n2015,5,22,\"WN\",\"3294\",\"ALB\",\"BWI\",-3.00,3.00,0.00,\"\",0.00,91.00,54.00,289.00,,,,,,\n2015,5,22,\"WN\",\"3917\",\"ALB\",\"BWI\",-7.00,-17.00,0.00,\"\",0.00,70.00,57.00,289.00,,,,,,\n2015,5,22,\"WN\",\"1987\",\"ALB\",\"FLL\",-2.00,-4.00,0.00,\"\",0.00,188.00,172.00,1204.00,,,,,,\n2015,5,22,\"WN\",\"346\",\"ALB\",\"LAS\",0.00,-4.00,0.00,\"\",0.00,326.00,313.00,2237.00,,,,,,\n2015,5,22,\"WN\",\"3919\",\"ALB\",\"MCO\",-3.00,-9.00,0.00,\"\",0.00,169.00,155.00,1073.00,,,,,,\n2015,5,22,\"WN\",\"4362\",\"ALB\",\"MCO\",-8.00,-23.00,0.00,\"\",0.00,160.00,149.00,1073.00,,,,,,\n2015,5,22,\"WN\",\"1550\",\"ALB\",\"MDW\",-3.00,0.00,0.00,\"\",0.00,138.00,122.00,717.00,,,,,,\n2015,5,22,\"WN\",\"4985\",\"ALB\",\"MDW\",-5.00,-8.00,0.00,\"\",0.00,132.00,112.00,717.00,,,,,,\n2015,5,22,\"WN\",\"3650\",\"ALB\",\"TPA\",-2.00,-13.00,0.00,\"\",0.00,174.00,159.00,1130.00,,,,,,\n2015,5,22,\"WN\",\"815\",\"ATL\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,132.00,95.00,762.00,,,,,,\n2015,5,22,\"WN\",\"1182\",\"ATL\",\"LGA\",-1.00,-19.00,0.00,\"\",0.00,122.00,98.00,762.00,,,,,,\n2015,5,22,\"WN\",\"2516\",\"ATL\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,118.00,93.00,762.00,,,,,,\n2015,5,22,\"WN\",\"2659\",\"ATL\",\"LGA\",8.00,-10.00,0.00,\"\",0.00,127.00,97.00,762.00,,,,,,\n2015,5,22,\"WN\",\"2850\",\"ATL\",\"LGA\",-1.00,-24.00,0.00,\"\",0.00,112.00,97.00,762.00,,,,,,\n2015,5,22,\"WN\",\"255\",\"BNA\",\"LGA\",0.00,-25.00,0.00,\"\",0.00,105.00,92.00,764.00,,,,,,\n2015,5,22,\"WN\",\"2433\",\"BNA\",\"LGA\",5.00,1.00,0.00,\"\",0.00,126.00,100.00,764.00,,,,,,\n2015,5,22,\"WN\",\"2570\",\"BNA\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,117.00,103.00,764.00,,,,,,\n2015,5,22,\"WN\",\"381\",\"BUF\",\"BWI\",-2.00,-11.00,0.00,\"\",0.00,61.00,36.00,281.00,,,,,,\n2015,5,22,\"WN\",\"728\",\"BUF\",\"BWI\",-3.00,-12.00,0.00,\"\",0.00,61.00,49.00,281.00,,,,,,\n2015,5,22,\"WN\",\"842\",\"BUF\",\"BWI\",-9.00,-17.00,0.00,\"\",0.00,67.00,56.00,281.00,,,,,,\n2015,5,22,\"WN\",\"1429\",\"BUF\",\"BWI\",-5.00,-30.00,0.00,\"\",0.00,60.00,47.00,281.00,,,,,,\n2015,5,22,\"WN\",\"1528\",\"BUF\",\"BWI\",-8.00,-22.00,0.00,\"\",0.00,61.00,44.00,281.00,,,,,,\n2015,5,22,\"WN\",\"2423\",\"BUF\",\"BWI\",-4.00,-22.00,0.00,\"\",0.00,57.00,46.00,281.00,,,,,,\n2015,5,22,\"WN\",\"1785\",\"BUF\",\"FLL\",-7.00,-10.00,0.00,\"\",0.00,182.00,152.00,1166.00,,,,,,\n2015,5,22,\"WN\",\"361\",\"BUF\",\"LAS\",-3.00,-12.00,0.00,\"\",0.00,291.00,276.00,1986.00,,,,,,\n2015,5,22,\"WN\",\"615\",\"BUF\",\"LAS\",-5.00,13.00,0.00,\"\",0.00,308.00,291.00,1986.00,,,,,,\n2015,5,22,\"WN\",\"134\",\"BUF\",\"MCO\",-3.00,-16.00,0.00,\"\",0.00,147.00,133.00,1011.00,,,,,,\n2015,5,22,\"WN\",\"674\",\"BUF\",\"MCO\",-2.00,-13.00,0.00,\"\",0.00,149.00,133.00,1011.00,,,,,,\n2015,5,22,\"WN\",\"854\",\"BUF\",\"MCO\",-9.00,-21.00,0.00,\"\",0.00,148.00,133.00,1011.00,,,,,,\n2015,5,22,\"WN\",\"2141\",\"BUF\",\"MCO\",-5.00,-9.00,0.00,\"\",0.00,156.00,132.00,1011.00,,,,,,\n2015,5,22,\"WN\",\"717\",\"BUF\",\"MDW\",-5.00,-5.00,0.00,\"\",0.00,110.00,83.00,468.00,,,,,,\n2015,5,22,\"WN\",\"2023\",\"BUF\",\"MDW\",1.00,-3.00,0.00,\"\",0.00,101.00,85.00,468.00,,,,,,\n2015,5,22,\"WN\",\"2632\",\"BUF\",\"MDW\",-5.00,-10.00,0.00,\"\",0.00,95.00,79.00,468.00,,,,,,\n2015,5,22,\"WN\",\"328\",\"BUF\",\"PHX\",-5.00,0.00,0.00,\"\",0.00,295.00,280.00,1912.00,,,,,,\n2015,5,22,\"WN\",\"984\",\"BUF\",\"TPA\",-8.00,-19.00,0.00,\"\",0.00,154.00,140.00,1053.00,,,,,,\n2015,5,22,\"WN\",\"2824\",\"BUF\",\"TPA\",2.00,-10.00,0.00,\"\",0.00,153.00,136.00,1053.00,,,,,,\n2015,5,22,\"WN\",\"334\",\"BWI\",\"ALB\",4.00,-1.00,0.00,\"\",0.00,70.00,54.00,289.00,,,,,,\n2015,5,22,\"WN\",\"346\",\"BWI\",\"ALB\",4.00,2.00,0.00,\"\",0.00,63.00,51.00,289.00,,,,,,\n2015,5,22,\"WN\",\"598\",\"BWI\",\"ALB\",2.00,-3.00,0.00,\"\",0.00,65.00,49.00,289.00,,,,,,\n2015,5,22,\"WN\",\"1269\",\"BWI\",\"ALB\",-6.00,-11.00,0.00,\"\",0.00,70.00,47.00,289.00,,,,,,\n2015,5,22,\"WN\",\"3033\",\"BWI\",\"ALB\",-5.00,-12.00,0.00,\"\",0.00,63.00,51.00,289.00,,,,,,\n2015,5,22,\"WN\",\"3919\",\"BWI\",\"ALB\",3.00,-2.00,0.00,\"\",0.00,65.00,51.00,289.00,,,,,,\n2015,5,22,\"WN\",\"328\",\"BWI\",\"BUF\",-6.00,-12.00,0.00,\"\",0.00,59.00,46.00,281.00,,,,,,\n2015,5,22,\"WN\",\"572\",\"BWI\",\"BUF\",0.00,-4.00,0.00,\"\",0.00,66.00,48.00,281.00,,,,,,\n2015,5,22,\"WN\",\"819\",\"BWI\",\"BUF\",-2.00,-2.00,0.00,\"\",0.00,65.00,48.00,281.00,,,,,,\n2015,5,22,\"WN\",\"854\",\"BWI\",\"BUF\",-6.00,-15.00,0.00,\"\",0.00,61.00,47.00,281.00,,,,,,\n2015,5,22,\"WN\",\"1350\",\"BWI\",\"BUF\",-9.00,-20.00,0.00,\"\",0.00,54.00,45.00,281.00,,,,,,\n2015,5,22,\"WN\",\"1900\",\"BWI\",\"BUF\",0.00,5.00,0.00,\"\",0.00,80.00,49.00,281.00,,,,,,\n2015,5,22,\"WN\",\"232\",\"BWI\",\"ISP\",11.00,13.00,0.00,\"\",0.00,67.00,43.00,220.00,,,,,,\n2015,5,22,\"WN\",\"752\",\"BWI\",\"ISP\",14.00,14.00,0.00,\"\",0.00,60.00,44.00,220.00,,,,,,\n2015,5,22,\"WN\",\"842\",\"BWI\",\"ISP\",21.00,13.00,0.00,\"\",0.00,57.00,43.00,220.00,,,,,,\n2015,5,22,\"WN\",\"2452\",\"BWI\",\"ISP\",18.00,16.00,0.00,\"\",0.00,68.00,51.00,220.00,4.00,0.00,0.00,0.00,12.00,\n2015,5,22,\"WN\",\"4017\",\"BWI\",\"ISP\",5.00,7.00,0.00,\"\",0.00,62.00,44.00,220.00,,,,,,\n2015,5,22,\"WN\",\"2851\",\"PBI\",\"ISP\",1.00,-5.00,0.00,\"\",0.00,154.00,136.00,1052.00,,,,,,\n2015,5,22,\"WN\",\"4818\",\"PBI\",\"ISP\",4.00,-2.00,0.00,\"\",0.00,154.00,137.00,1052.00,,,,,,\n2015,5,21,\"WN\",\"178\",\"MDW\",\"LGA\",12.00,-8.00,0.00,\"\",0.00,110.00,92.00,725.00,,,,,,\n2015,5,21,\"WN\",\"682\",\"MDW\",\"LGA\",0.00,-17.00,0.00,\"\",0.00,108.00,93.00,725.00,,,,,,\n2015,5,21,\"WN\",\"803\",\"MDW\",\"LGA\",29.00,19.00,0.00,\"\",0.00,120.00,91.00,725.00,0.00,0.00,0.00,0.00,19.00,\n2015,5,21,\"WN\",\"1713\",\"MDW\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,116.00,94.00,725.00,,,,,,\n2015,5,21,\"WN\",\"1945\",\"MDW\",\"LGA\",7.00,-9.00,0.00,\"\",0.00,114.00,88.00,725.00,,,,,,\n2015,5,21,\"WN\",\"2778\",\"MDW\",\"LGA\",1.00,-14.00,0.00,\"\",0.00,110.00,94.00,725.00,,,,,,\n2015,5,21,\"WN\",\"4365\",\"MDW\",\"LGA\",3.00,-16.00,0.00,\"\",0.00,111.00,95.00,725.00,,,,,,\n2015,5,22,\"WN\",\"597\",\"BWI\",\"ROC\",-4.00,-3.00,0.00,\"\",0.00,71.00,48.00,277.00,,,,,,\n2015,5,22,\"WN\",\"3564\",\"BWI\",\"ROC\",0.00,0.00,0.00,\"\",0.00,70.00,49.00,277.00,,,,,,\n2015,5,22,\"WN\",\"914\",\"CAK\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,76.00,62.00,397.00,,,,,,\n2015,5,22,\"WN\",\"4728\",\"CAK\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,85.00,61.00,397.00,,,,,,\n2015,5,22,\"WN\",\"691\",\"DAL\",\"LGA\",12.00,-13.00,0.00,\"\",0.00,180.00,164.00,1381.00,,,,,,\n2015,5,22,\"WN\",\"1214\",\"DAL\",\"LGA\",17.00,-7.00,0.00,\"\",0.00,181.00,167.00,1381.00,,,,,,\n2015,5,22,\"WN\",\"2141\",\"DAL\",\"LGA\",18.00,-7.00,0.00,\"\",0.00,180.00,163.00,1381.00,,,,,,\n2015,5,22,\"WN\",\"2234\",\"DAL\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,186.00,158.00,1381.00,,,,,,\n2015,5,22,\"WN\",\"824\",\"DEN\",\"LGA\",5.00,-33.00,0.00,\"\",0.00,197.00,175.00,1620.00,,,,,,\n2015,5,22,\"WN\",\"1370\",\"DEN\",\"LGA\",1.00,-30.00,0.00,\"\",0.00,204.00,185.00,1620.00,,,,,,\n2015,5,22,\"WN\",\"1898\",\"FLL\",\"ALB\",3.00,-9.00,0.00,\"\",0.00,168.00,152.00,1204.00,,,,,,\n2015,5,22,\"WN\",\"4643\",\"FLL\",\"BUF\",9.00,-8.00,0.00,\"\",0.00,168.00,152.00,1166.00,,,,,,\n2015,5,22,\"WN\",\"28\",\"FLL\",\"ISP\",20.00,9.00,0.00,\"\",0.00,164.00,147.00,1092.00,,,,,,\n2015,5,22,\"WN\",\"4640\",\"FLL\",\"ISP\",-3.00,-14.00,0.00,\"\",0.00,159.00,144.00,1092.00,,,,,,\n2015,5,22,\"WN\",\"299\",\"HOU\",\"LGA\",-4.00,-36.00,0.00,\"\",0.00,178.00,162.00,1428.00,,,,,,\n2015,5,22,\"WN\",\"536\",\"HOU\",\"LGA\",30.00,7.00,0.00,\"\",0.00,182.00,169.00,1428.00,,,,,,\n2015,5,22,\"WN\",\"1163\",\"HOU\",\"LGA\",1.00,-21.00,0.00,\"\",0.00,188.00,171.00,1428.00,,,,,,\n2015,5,22,\"WN\",\"325\",\"ISP\",\"BWI\",3.00,-6.00,0.00,\"\",0.00,61.00,52.00,220.00,,,,,,\n2015,5,22,\"WN\",\"580\",\"ISP\",\"BWI\",-2.00,-9.00,0.00,\"\",0.00,68.00,54.00,220.00,,,,,,\n2015,5,22,\"WN\",\"667\",\"ISP\",\"BWI\",-4.00,-8.00,0.00,\"\",0.00,71.00,57.00,220.00,,,,,,\n2015,5,22,\"WN\",\"2940\",\"ISP\",\"BWI\",-4.00,-7.00,0.00,\"\",0.00,72.00,55.00,220.00,,,,,,\n2015,5,22,\"WN\",\"3743\",\"ISP\",\"BWI\",12.00,5.00,0.00,\"\",0.00,68.00,55.00,220.00,,,,,,\n2015,5,22,\"WN\",\"752\",\"ISP\",\"FLL\",17.00,16.00,0.00,\"\",0.00,184.00,164.00,1092.00,3.00,0.00,0.00,0.00,13.00,\n2015,5,22,\"WN\",\"4554\",\"ISP\",\"FLL\",0.00,-8.00,0.00,\"\",0.00,172.00,151.00,1092.00,,,,,,\n2015,5,22,\"WN\",\"663\",\"ISP\",\"MCO\",-9.00,-9.00,0.00,\"\",0.00,160.00,141.00,971.00,,,,,,\n2015,5,22,\"WN\",\"4017\",\"ISP\",\"MCO\",8.00,-2.00,0.00,\"\",0.00,155.00,142.00,971.00,,,,,,\n2015,5,22,\"WN\",\"4575\",\"ISP\",\"MCO\",-5.00,-5.00,0.00,\"\",0.00,165.00,147.00,971.00,,,,,,\n2015,5,22,\"WN\",\"4910\",\"ISP\",\"MCO\",0.00,-17.00,0.00,\"\",0.00,153.00,140.00,971.00,,,,,,\n2015,5,22,\"WN\",\"4479\",\"ISP\",\"PBI\",-2.00,-5.00,0.00,\"\",0.00,167.00,152.00,1052.00,,,,,,\n2015,5,22,\"WN\",\"4729\",\"ISP\",\"PBI\",-3.00,-7.00,0.00,\"\",0.00,166.00,150.00,1052.00,,,,,,\n2015,5,22,\"WN\",\"208\",\"ISP\",\"TPA\",-7.00,-5.00,0.00,\"\",0.00,172.00,152.00,1034.00,,,,,,\n2015,5,22,\"WN\",\"4907\",\"ISP\",\"TPA\",-5.00,-13.00,0.00,\"\",0.00,172.00,158.00,1034.00,,,,,,\n2015,5,22,\"WN\",\"2202\",\"LAS\",\"ALB\",34.00,2.00,0.00,\"\",0.00,253.00,239.00,2237.00,,,,,,\n2015,5,22,\"WN\",\"2023\",\"LAS\",\"BUF\",0.00,-20.00,0.00,\"\",0.00,245.00,219.00,1986.00,,,,,,\n2015,5,22,\"WN\",\"2528\",\"LAS\",\"BUF\",12.00,-8.00,0.00,\"\",0.00,235.00,211.00,1986.00,,,,,,\n2015,5,22,\"WN\",\"854\",\"TPA\",\"ALB\",-1.00,-17.00,0.00,\"\",0.00,154.00,140.00,1130.00,,,,,,\n2015,5,22,\"WN\",\"127\",\"TPA\",\"BUF\",-4.00,-8.00,0.00,\"\",0.00,151.00,136.00,1053.00,,,,,,\n2015,5,22,\"WN\",\"2160\",\"TPA\",\"BUF\",1.00,-3.00,0.00,\"\",0.00,151.00,138.00,1053.00,,,,,,\n2015,5,22,\"WN\",\"2423\",\"TPA\",\"ISP\",-1.00,-4.00,0.00,\"\",0.00,152.00,135.00,1034.00,,,,,,\n2015,5,22,\"WN\",\"4390\",\"TPA\",\"ISP\",-1.00,-18.00,0.00,\"\",0.00,148.00,134.00,1034.00,,,,,,\n2015,5,22,\"WN\",\"719\",\"TPA\",\"ROC\",0.00,-2.00,0.00,\"\",0.00,158.00,147.00,1079.00,,,,,,\n2015,5,23,\"WN\",\"2047\",\"ALB\",\"BWI\",-3.00,9.00,0.00,\"\",0.00,97.00,55.00,289.00,,,,,,\n2015,5,23,\"WN\",\"2114\",\"ALB\",\"BWI\",-6.00,-21.00,0.00,\"\",0.00,70.00,57.00,289.00,,,,,,\n2015,5,23,\"WN\",\"2594\",\"ALB\",\"BWI\",-6.00,-21.00,0.00,\"\",0.00,65.00,51.00,289.00,,,,,,\n2015,5,23,\"WN\",\"3922\",\"ALB\",\"BWI\",-6.00,-22.00,0.00,\"\",0.00,64.00,54.00,289.00,,,,,,\n2015,5,23,\"WN\",\"798\",\"ALB\",\"FLL\",-1.00,-17.00,0.00,\"\",0.00,174.00,162.00,1204.00,,,,,,\n2015,5,23,\"WN\",\"2283\",\"ALB\",\"LAS\",33.00,41.00,0.00,\"\",0.00,338.00,322.00,2237.00,33.00,0.00,8.00,0.00,0.00,\n2015,5,23,\"WN\",\"938\",\"ALB\",\"MCO\",-4.00,-16.00,0.00,\"\",0.00,163.00,146.00,1073.00,,,,,,\n2015,5,23,\"WN\",\"1816\",\"ALB\",\"MCO\",-4.00,-21.00,0.00,\"\",0.00,158.00,143.00,1073.00,,,,,,\n2015,5,23,\"WN\",\"2559\",\"ALB\",\"MDW\",-3.00,8.00,0.00,\"\",0.00,151.00,114.00,717.00,,,,,,\n2015,5,23,\"WN\",\"3475\",\"ALB\",\"MDW\",11.00,2.00,0.00,\"\",0.00,126.00,113.00,717.00,,,,,,\n2015,5,23,\"WN\",\"979\",\"ALB\",\"TPA\",-2.00,-18.00,0.00,\"\",0.00,169.00,156.00,1130.00,,,,,,\n2015,5,23,\"WN\",\"1241\",\"ATL\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,125.00,100.00,762.00,,,,,,\n2015,5,23,\"WN\",\"1562\",\"ATL\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,130.00,104.00,762.00,,,,,,\n2015,5,23,\"WN\",\"1830\",\"ATL\",\"LGA\",43.00,17.00,0.00,\"\",0.00,119.00,98.00,762.00,2.00,0.00,0.00,0.00,15.00,\n2015,5,23,\"WN\",\"1892\",\"ATL\",\"LGA\",6.00,-15.00,0.00,\"\",0.00,119.00,99.00,762.00,,,,,,\n2015,5,23,\"WN\",\"2098\",\"BNA\",\"LGA\",2.00,-10.00,0.00,\"\",0.00,118.00,104.00,764.00,,,,,,\n2015,5,23,\"WN\",\"1435\",\"BUF\",\"BWI\",7.00,-4.00,0.00,\"\",0.00,64.00,47.00,281.00,,,,,,\n2015,5,23,\"WN\",\"1730\",\"BUF\",\"BWI\",-6.00,-17.00,0.00,\"\",0.00,59.00,48.00,281.00,,,,,,\n2015,5,23,\"WN\",\"1854\",\"BUF\",\"BWI\",-2.00,-19.00,0.00,\"\",0.00,68.00,43.00,281.00,,,,,,\n2015,5,23,\"WN\",\"2662\",\"BUF\",\"BWI\",-10.00,-11.00,0.00,\"\",0.00,74.00,50.00,281.00,,,,,,\n2015,5,23,\"WN\",\"2674\",\"BUF\",\"BWI\",-4.00,-19.00,0.00,\"\",0.00,65.00,47.00,281.00,,,,,,\n2015,5,23,\"WN\",\"1843\",\"BUF\",\"FLL\",18.00,-4.00,0.00,\"\",0.00,158.00,149.00,1166.00,,,,,,\n2015,5,23,\"WN\",\"2625\",\"BUF\",\"LAS\",0.00,-10.00,0.00,\"\",0.00,295.00,273.00,1986.00,,,,,,\n2015,5,23,\"WN\",\"1592\",\"BUF\",\"MCO\",-2.00,-17.00,0.00,\"\",0.00,145.00,130.00,1011.00,,,,,,\n2015,5,23,\"WN\",\"2118\",\"BUF\",\"MCO\",-3.00,-23.00,0.00,\"\",0.00,140.00,126.00,1011.00,,,,,,\n2015,5,23,\"WN\",\"2784\",\"BUF\",\"MCO\",-3.00,-19.00,0.00,\"\",0.00,144.00,126.00,1011.00,,,,,,\n2015,5,23,\"WN\",\"2827\",\"BUF\",\"MCO\",-5.00,-26.00,0.00,\"\",0.00,149.00,127.00,1011.00,,,,,,\n2015,5,23,\"WN\",\"1150\",\"BUF\",\"MDW\",-4.00,-9.00,0.00,\"\",0.00,95.00,81.00,468.00,,,,,,\n2015,5,23,\"WN\",\"2129\",\"BUF\",\"MDW\",-2.00,-11.00,0.00,\"\",0.00,96.00,81.00,468.00,,,,,,\n2015,5,23,\"WN\",\"2318\",\"BUF\",\"MDW\",-6.00,-7.00,0.00,\"\",0.00,104.00,80.00,468.00,,,,,,\n2015,5,23,\"WN\",\"1221\",\"BUF\",\"PHX\",-4.00,0.00,0.00,\"\",0.00,294.00,277.00,1912.00,,,,,,\n2015,5,23,\"WN\",\"3475\",\"BUF\",\"TPA\",-7.00,-13.00,0.00,\"\",0.00,159.00,137.00,1053.00,,,,,,\n2015,5,23,\"WN\",\"4641\",\"BUF\",\"TPA\",-1.00,-13.00,0.00,\"\",0.00,153.00,133.00,1053.00,,,,,,\n2015,5,23,\"WN\",\"1511\",\"BWI\",\"ALB\",1.00,-10.00,0.00,\"\",0.00,64.00,51.00,289.00,,,,,,\n2015,5,23,\"WN\",\"2081\",\"BWI\",\"ALB\",0.00,-7.00,0.00,\"\",0.00,68.00,50.00,289.00,,,,,,\n2015,5,23,\"WN\",\"2165\",\"BWI\",\"ALB\",-4.00,-9.00,0.00,\"\",0.00,70.00,52.00,289.00,,,,,,\n2015,5,23,\"WN\",\"3475\",\"BWI\",\"ALB\",5.00,5.00,0.00,\"\",0.00,70.00,53.00,289.00,,,,,,\n2015,5,23,\"WN\",\"1150\",\"BWI\",\"BUF\",-3.00,-9.00,0.00,\"\",0.00,59.00,49.00,281.00,,,,,,\n2015,5,23,\"WN\",\"1566\",\"BWI\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,60.00,47.00,281.00,,,,,,\n2015,5,23,\"WN\",\"1592\",\"BWI\",\"BUF\",-5.00,-10.00,0.00,\"\",0.00,60.00,48.00,281.00,,,,,,\n2015,5,23,\"WN\",\"1843\",\"BWI\",\"BUF\",14.00,7.00,0.00,\"\",0.00,58.00,48.00,281.00,,,,,,\n2015,5,23,\"WN\",\"2878\",\"BWI\",\"BUF\",0.00,-9.00,0.00,\"\",0.00,61.00,49.00,281.00,,,,,,\n2015,5,23,\"WN\",\"1085\",\"BWI\",\"ISP\",8.00,8.00,0.00,\"\",0.00,60.00,42.00,220.00,,,,,,\n2015,5,23,\"WN\",\"1998\",\"BWI\",\"ISP\",-6.00,-6.00,0.00,\"\",0.00,60.00,44.00,220.00,,,,,,\n2015,5,23,\"WN\",\"2609\",\"BWI\",\"ISP\",-4.00,-1.00,0.00,\"\",0.00,68.00,43.00,220.00,,,,,,\n2015,5,23,\"WN\",\"3386\",\"BWI\",\"ISP\",24.00,8.00,0.00,\"\",0.00,54.00,39.00,220.00,,,,,,\n2015,5,22,\"WN\",\"479\",\"LGA\",\"MDW\",-6.00,-18.00,0.00,\"\",0.00,133.00,116.00,725.00,,,,,,\n2015,5,22,\"WN\",\"777\",\"LGA\",\"MDW\",-2.00,-16.00,0.00,\"\",0.00,141.00,118.00,725.00,,,,,,\n2015,5,22,\"WN\",\"868\",\"LGA\",\"MDW\",0.00,-20.00,0.00,\"\",0.00,140.00,119.00,725.00,,,,,,\n2015,5,22,\"WN\",\"2516\",\"LGA\",\"MDW\",-1.00,-19.00,0.00,\"\",0.00,142.00,116.00,725.00,,,,,,\n2015,5,22,\"WN\",\"2529\",\"LGA\",\"MDW\",-2.00,-7.00,0.00,\"\",0.00,145.00,116.00,725.00,,,,,,\n2015,5,22,\"WN\",\"2659\",\"LGA\",\"MDW\",4.00,8.00,0.00,\"\",0.00,159.00,117.00,725.00,,,,,,\n2015,5,22,\"WN\",\"4123\",\"LGA\",\"MDW\",-1.00,2.00,0.00,\"\",0.00,153.00,114.00,725.00,,,,,,\n2015,5,22,\"WN\",\"1344\",\"LGA\",\"MKE\",-5.00,-11.00,0.00,\"\",0.00,144.00,112.00,738.00,,,,,,\n2015,5,22,\"WN\",\"2433\",\"LGA\",\"MKE\",1.00,-23.00,0.00,\"\",0.00,131.00,111.00,738.00,,,,,,\n2015,5,22,\"WN\",\"4379\",\"LGA\",\"MKE\",-4.00,-16.00,0.00,\"\",0.00,133.00,113.00,738.00,,,,,,\n2015,5,22,\"WN\",\"536\",\"LGA\",\"STL\",6.00,-19.00,0.00,\"\",0.00,155.00,136.00,888.00,,,,,,\n2015,5,22,\"WN\",\"2168\",\"LGA\",\"STL\",-2.00,14.00,0.00,\"\",0.00,176.00,143.00,888.00,,,,,,\n2015,5,22,\"WN\",\"4571\",\"LGA\",\"STL\",-2.00,-13.00,0.00,\"\",0.00,159.00,135.00,888.00,,,,,,\n2015,5,22,\"WN\",\"333\",\"MCI\",\"LGA\",11.00,-6.00,0.00,\"\",0.00,153.00,131.00,1107.00,,,,,,\n2015,5,22,\"WN\",\"1011\",\"MCO\",\"ALB\",-2.00,-16.00,0.00,\"\",0.00,151.00,136.00,1073.00,,,,,,\n2015,5,22,\"WN\",\"2849\",\"MCO\",\"ALB\",-4.00,2.00,0.00,\"\",0.00,166.00,136.00,1073.00,,,,,,\n2015,5,22,\"WN\",\"728\",\"MCO\",\"BUF\",-7.00,11.00,0.00,\"\",0.00,173.00,150.00,1011.00,,,,,,\n2015,5,22,\"WN\",\"801\",\"MCO\",\"BUF\",-2.00,-11.00,0.00,\"\",0.00,146.00,130.00,1011.00,,,,,,\n2015,5,22,\"WN\",\"2423\",\"MCO\",\"BUF\",-5.00,-15.00,0.00,\"\",0.00,145.00,131.00,1011.00,,,,,,\n2015,5,22,\"WN\",\"2632\",\"MCO\",\"BUF\",-4.00,-10.00,0.00,\"\",0.00,149.00,131.00,1011.00,,,,,,\n2015,5,22,\"WN\",\"293\",\"MCO\",\"ISP\",-3.00,-18.00,0.00,\"\",0.00,140.00,125.00,971.00,,,,,,\n2015,5,22,\"WN\",\"325\",\"MCO\",\"ISP\",11.00,-8.00,0.00,\"\",0.00,131.00,117.00,971.00,,,,,,\n2015,5,22,\"WN\",\"426\",\"MCO\",\"ISP\",-2.00,-13.00,0.00,\"\",0.00,139.00,125.00,971.00,,,,,,\n2015,5,22,\"WN\",\"4486\",\"MCO\",\"ISP\",-3.00,-15.00,0.00,\"\",0.00,138.00,123.00,971.00,,,,,,\n2015,5,22,\"WN\",\"3935\",\"MCO\",\"ROC\",2.00,-6.00,0.00,\"\",0.00,147.00,129.00,1033.00,,,,,,\n2015,5,22,\"WN\",\"103\",\"MDW\",\"ALB\",-1.00,-16.00,0.00,\"\",0.00,100.00,85.00,717.00,,,,,,\n2015,5,22,\"WN\",\"1461\",\"MDW\",\"ALB\",-3.00,-4.00,0.00,\"\",0.00,114.00,97.00,717.00,,,,,,\n2015,5,22,\"WN\",\"134\",\"MDW\",\"BUF\",6.00,-7.00,0.00,\"\",0.00,77.00,62.00,468.00,,,,,,\n2015,5,22,\"WN\",\"615\",\"MDW\",\"BUF\",-5.00,-14.00,0.00,\"\",0.00,81.00,64.00,468.00,,,,,,\n2015,5,22,\"WN\",\"2241\",\"MDW\",\"BUF\",26.00,7.00,0.00,\"\",0.00,81.00,60.00,468.00,,,,,,\n2015,5,22,\"WN\",\"178\",\"MDW\",\"LGA\",8.00,-13.00,0.00,\"\",0.00,109.00,91.00,725.00,,,,,,\n2015,5,22,\"WN\",\"682\",\"MDW\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,117.00,97.00,725.00,,,,,,\n2015,5,22,\"WN\",\"803\",\"MDW\",\"LGA\",2.00,-7.00,0.00,\"\",0.00,121.00,95.00,725.00,,,,,,\n2015,5,22,\"WN\",\"1713\",\"MDW\",\"LGA\",3.00,-19.00,0.00,\"\",0.00,103.00,89.00,725.00,,,,,,\n2015,5,22,\"WN\",\"1945\",\"MDW\",\"LGA\",4.00,-26.00,0.00,\"\",0.00,100.00,86.00,725.00,,,,,,\n2015,5,22,\"WN\",\"2778\",\"MDW\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,116.00,93.00,725.00,,,,,,\n2015,5,22,\"WN\",\"4365\",\"MDW\",\"LGA\",-1.00,-23.00,0.00,\"\",0.00,108.00,86.00,725.00,,,,,,\n2015,5,22,\"WN\",\"292\",\"MDW\",\"ROC\",3.00,-5.00,0.00,\"\",0.00,82.00,65.00,523.00,,,,,,\n2015,5,22,\"WN\",\"4515\",\"MDW\",\"ROC\",54.00,37.00,0.00,\"\",0.00,78.00,64.00,523.00,37.00,0.00,0.00,0.00,0.00,\n2015,5,22,\"WN\",\"202\",\"MKE\",\"LGA\",-2.00,-28.00,0.00,\"\",0.00,109.00,93.00,738.00,,,,,,\n2015,5,22,\"WN\",\"1208\",\"MKE\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,115.00,95.00,738.00,,,,,,\n2015,5,22,\"WN\",\"3391\",\"MKE\",\"LGA\",13.00,0.00,0.00,\"\",0.00,117.00,96.00,738.00,,,,,,\n2015,5,23,\"WN\",\"4725\",\"FLL\",\"ALB\",-1.00,-12.00,0.00,\"\",0.00,179.00,161.00,1204.00,,,,,,\n2015,5,23,\"WN\",\"2695\",\"FLL\",\"BUF\",-9.00,-18.00,0.00,\"\",0.00,176.00,158.00,1166.00,,,,,,\n2015,5,23,\"WN\",\"2006\",\"FLL\",\"ISP\",-3.00,-18.00,0.00,\"\",0.00,160.00,142.00,1092.00,,,,,,\n2015,5,23,\"WN\",\"4912\",\"FLL\",\"ISP\",-8.00,-20.00,0.00,\"\",0.00,168.00,146.00,1092.00,,,,,,\n2015,5,23,\"WN\",\"2059\",\"HOU\",\"LGA\",56.00,47.00,0.00,\"\",0.00,201.00,177.00,1428.00,47.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"WN\",\"2103\",\"HOU\",\"LGA\",11.00,-1.00,0.00,\"\",0.00,193.00,171.00,1428.00,,,,,,\n2015,5,23,\"WN\",\"1300\",\"ISP\",\"BWI\",16.00,0.00,0.00,\"\",0.00,59.00,50.00,220.00,,,,,,\n2015,5,23,\"WN\",\"1592\",\"ISP\",\"BWI\",-3.00,-12.00,0.00,\"\",0.00,66.00,51.00,220.00,,,,,,\n2015,5,23,\"WN\",\"1952\",\"ISP\",\"BWI\",54.00,46.00,0.00,\"\",0.00,67.00,50.00,220.00,46.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"WN\",\"2080\",\"ISP\",\"BWI\",-5.00,-16.00,0.00,\"\",0.00,64.00,53.00,220.00,,,,,,\n2015,5,23,\"WN\",\"1199\",\"ISP\",\"FLL\",1.00,-13.00,0.00,\"\",0.00,166.00,149.00,1092.00,,,,,,\n2015,5,23,\"WN\",\"1790\",\"ISP\",\"FLL\",137.00,109.00,0.00,\"\",0.00,157.00,145.00,1092.00,0.00,0.00,0.00,0.00,109.00,\n2015,5,23,\"WN\",\"1085\",\"ISP\",\"MCO\",18.00,9.00,0.00,\"\",0.00,156.00,139.00,971.00,,,,,,\n2015,5,23,\"WN\",\"1265\",\"ISP\",\"MCO\",-5.00,-16.00,0.00,\"\",0.00,154.00,137.00,971.00,,,,,,\n2015,5,23,\"WN\",\"2609\",\"ISP\",\"MCO\",-3.00,-5.00,0.00,\"\",0.00,158.00,144.00,971.00,,,,,,\n2015,5,23,\"WN\",\"947\",\"ISP\",\"PBI\",-4.00,-17.00,0.00,\"\",0.00,157.00,145.00,1052.00,,,,,,\n2015,5,23,\"WN\",\"3297\",\"ISP\",\"PBI\",8.00,-4.00,0.00,\"\",0.00,158.00,144.00,1052.00,,,,,,\n2015,5,23,\"WN\",\"2817\",\"ISP\",\"TPA\",-4.00,8.00,0.00,\"\",0.00,187.00,154.00,1034.00,,,,,,\n2015,5,23,\"WN\",\"4463\",\"ISP\",\"TPA\",-4.00,-7.00,0.00,\"\",0.00,167.00,154.00,1034.00,,,,,,\n2015,5,23,\"WN\",\"1828\",\"LAS\",\"ALB\",3.00,-17.00,0.00,\"\",0.00,265.00,248.00,2237.00,,,,,,\n2015,5,23,\"WN\",\"2129\",\"LAS\",\"BUF\",-6.00,-27.00,0.00,\"\",0.00,239.00,225.00,1986.00,,,,,,\n2015,5,23,\"WN\",\"4367\",\"LAS\",\"BUF\",0.00,-10.00,0.00,\"\",0.00,245.00,228.00,1986.00,,,,,,\n2015,5,23,\"WN\",\"1373\",\"LGA\",\"ATL\",-3.00,-13.00,0.00,\"\",0.00,150.00,115.00,762.00,,,,,,\n2015,5,23,\"WN\",\"1920\",\"LGA\",\"ATL\",-7.00,-24.00,0.00,\"\",0.00,143.00,113.00,762.00,,,,,,\n2015,5,23,\"WN\",\"2555\",\"LGA\",\"ATL\",-1.00,-35.00,0.00,\"\",0.00,136.00,108.00,762.00,,,,,,\n2015,5,23,\"WN\",\"3142\",\"LGA\",\"ATL\",4.00,-33.00,0.00,\"\",0.00,133.00,110.00,762.00,,,,,,\n2015,5,23,\"WN\",\"4018\",\"LGA\",\"ATL\",-4.00,-35.00,0.00,\"\",0.00,139.00,112.00,762.00,,,,,,\n2015,5,23,\"WN\",\"1527\",\"LGA\",\"BNA\",-4.00,-9.00,0.00,\"\",0.00,145.00,113.00,764.00,,,,,,\n2015,5,23,\"WN\",\"2724\",\"LGA\",\"CAK\",-4.00,-18.00,0.00,\"\",0.00,86.00,65.00,397.00,,,,,,\n2015,5,23,\"WN\",\"1652\",\"LGA\",\"DAL\",-4.00,-31.00,0.00,\"\",0.00,213.00,188.00,1381.00,,,,,,\n2015,5,23,\"WN\",\"2605\",\"LGA\",\"DAL\",0.00,-36.00,0.00,\"\",0.00,209.00,190.00,1381.00,,,,,,\n2015,5,23,\"WN\",\"3489\",\"LGA\",\"DAL\",-5.00,-24.00,0.00,\"\",0.00,211.00,197.00,1381.00,,,,,,\n2015,5,23,\"WN\",\"2023\",\"LGA\",\"DEN\",-6.00,-13.00,0.00,\"\",0.00,268.00,231.00,1620.00,,,,,,\n2015,5,23,\"WN\",\"4578\",\"LGA\",\"DEN\",17.00,5.00,0.00,\"\",0.00,268.00,246.00,1620.00,,,,,,\n2015,5,23,\"WN\",\"22\",\"LGA\",\"HOU\",-1.00,-33.00,0.00,\"\",0.00,223.00,197.00,1428.00,,,,,,\n2015,5,23,\"WN\",\"1729\",\"LGA\",\"HOU\",-6.00,-19.00,0.00,\"\",0.00,227.00,201.00,1428.00,,,,,,\n2015,5,23,\"WN\",\"2354\",\"LGA\",\"MCI\",0.00,-7.00,0.00,\"\",0.00,193.00,165.00,1107.00,,,,,,\n2015,5,23,\"WN\",\"779\",\"LGA\",\"MDW\",-4.00,-23.00,0.00,\"\",0.00,126.00,111.00,725.00,,,,,,\n2015,5,23,\"WN\",\"1685\",\"LGA\",\"MDW\",-3.00,-18.00,0.00,\"\",0.00,130.00,112.00,725.00,,,,,,\n2015,5,23,\"WN\",\"2101\",\"LGA\",\"MDW\",-1.00,-8.00,0.00,\"\",0.00,148.00,116.00,725.00,,,,,,\n2015,5,23,\"WN\",\"2571\",\"LGA\",\"MDW\",85.00,57.00,0.00,\"\",0.00,132.00,111.00,725.00,49.00,0.00,0.00,0.00,8.00,\n2015,5,23,\"WN\",\"2750\",\"LGA\",\"MDW\",-2.00,-33.00,0.00,\"\",0.00,134.00,115.00,725.00,,,,,,\n2015,5,23,\"WN\",\"1302\",\"LGA\",\"MKE\",-6.00,-21.00,0.00,\"\",0.00,130.00,113.00,738.00,,,,,,\n2015,5,23,\"WN\",\"1397\",\"LGA\",\"STL\",-1.00,-3.00,0.00,\"\",0.00,158.00,139.00,888.00,,,,,,\n2015,5,23,\"WN\",\"3034\",\"MCI\",\"LGA\",-2.00,-20.00,0.00,\"\",0.00,152.00,133.00,1107.00,,,,,,\n2015,5,23,\"WN\",\"1784\",\"MCO\",\"ALB\",-2.00,-11.00,0.00,\"\",0.00,156.00,142.00,1073.00,,,,,,\n2015,5,23,\"WN\",\"1221\",\"MCO\",\"BUF\",-5.00,-5.00,0.00,\"\",0.00,155.00,136.00,1011.00,,,,,,\n2015,5,23,\"WN\",\"1435\",\"MCO\",\"BUF\",2.00,0.00,0.00,\"\",0.00,153.00,137.00,1011.00,,,,,,\n2015,5,23,\"WN\",\"1730\",\"MCO\",\"BUF\",-4.00,-7.00,0.00,\"\",0.00,152.00,137.00,1011.00,,,,,,\n2015,5,23,\"WN\",\"1928\",\"MCO\",\"ISP\",225.00,217.00,0.00,\"\",0.00,142.00,128.00,971.00,58.00,0.00,0.00,0.00,159.00,\n2015,5,23,\"WN\",\"1952\",\"MCO\",\"ISP\",-5.00,-11.00,0.00,\"\",0.00,144.00,130.00,971.00,,,,,,\n2015,5,23,\"WN\",\"3208\",\"MCO\",\"ISP\",7.00,1.00,0.00,\"\",0.00,144.00,128.00,971.00,,,,,,\n2015,5,23,\"WN\",\"1510\",\"MCO\",\"ROC\",16.00,10.00,0.00,\"\",0.00,149.00,134.00,1033.00,,,,,,\n2015,5,23,\"WN\",\"2633\",\"MCO\",\"ROC\",-1.00,9.00,0.00,\"\",0.00,165.00,151.00,1033.00,,,,,,\n2015,5,23,\"WN\",\"1721\",\"MDW\",\"ALB\",11.00,-8.00,0.00,\"\",0.00,96.00,84.00,717.00,,,,,,\n2015,5,23,\"WN\",\"2560\",\"MDW\",\"ALB\",6.00,-9.00,0.00,\"\",0.00,100.00,83.00,717.00,,,,,,\n2015,5,23,\"WN\",\"1338\",\"MDW\",\"BUF\",-3.00,-14.00,0.00,\"\",0.00,79.00,61.00,468.00,,,,,,\n2015,5,23,\"WN\",\"2662\",\"MDW\",\"BUF\",-4.00,-15.00,0.00,\"\",0.00,74.00,63.00,468.00,,,,,,\n2015,5,23,\"WN\",\"4819\",\"MDW\",\"BUF\",32.00,33.00,0.00,\"\",0.00,86.00,65.00,468.00,0.00,0.00,1.00,0.00,32.00,\n2015,5,23,\"WN\",\"1376\",\"MDW\",\"LGA\",6.00,-16.00,0.00,\"\",0.00,103.00,90.00,725.00,,,,,,\n2015,5,23,\"WN\",\"1649\",\"MDW\",\"LGA\",4.00,-10.00,0.00,\"\",0.00,116.00,94.00,725.00,,,,,,\n2015,5,23,\"WN\",\"1688\",\"MDW\",\"LGA\",1.00,-12.00,0.00,\"\",0.00,107.00,91.00,725.00,,,,,,\n2015,5,23,\"WN\",\"1863\",\"MDW\",\"LGA\",-5.00,-36.00,0.00,\"\",0.00,104.00,90.00,725.00,,,,,,\n2015,5,23,\"WN\",\"2724\",\"MDW\",\"LGA\",-1.00,-20.00,0.00,\"\",0.00,106.00,88.00,725.00,,,,,,\n2015,5,23,\"WN\",\"4578\",\"MDW\",\"LGA\",4.00,-7.00,0.00,\"\",0.00,114.00,91.00,725.00,,,,,,\n2015,5,23,\"WN\",\"1102\",\"MDW\",\"ROC\",18.00,11.00,0.00,\"\",0.00,83.00,68.00,523.00,,,,,,\n2015,5,23,\"WN\",\"2023\",\"MKE\",\"LGA\",-4.00,-26.00,0.00,\"\",0.00,113.00,95.00,738.00,,,,,,\n2015,5,23,\"WN\",\"1062\",\"BWI\",\"ROC\",48.00,34.00,0.00,\"\",0.00,61.00,46.00,277.00,0.00,0.00,0.00,0.00,34.00,\n2015,5,23,\"WN\",\"2828\",\"BWI\",\"ROC\",-3.00,-10.00,0.00,\"\",0.00,63.00,49.00,277.00,,,,,,\n2015,5,23,\"WN\",\"22\",\"CAK\",\"LGA\",-9.00,-16.00,0.00,\"\",0.00,83.00,61.00,397.00,,,,,,\n2015,5,23,\"WN\",\"1632\",\"DAL\",\"LGA\",2.00,-14.00,0.00,\"\",0.00,189.00,162.00,1381.00,,,,,,\n2015,5,23,\"WN\",\"1997\",\"DAL\",\"LGA\",8.00,-16.00,0.00,\"\",0.00,181.00,169.00,1381.00,,,,,,\n2015,5,23,\"WN\",\"2571\",\"DAL\",\"LGA\",36.00,12.00,0.00,\"\",0.00,181.00,167.00,1381.00,,,,,,\n2015,5,23,\"WN\",\"1416\",\"DEN\",\"LGA\",27.00,5.00,0.00,\"\",0.00,213.00,191.00,1620.00,,,,,,\n2015,5,23,\"WN\",\"2750\",\"DEN\",\"LGA\",12.00,-16.00,0.00,\"\",0.00,202.00,184.00,1620.00,,,,,,\n2015,5,23,\"WN\",\"379\",\"PBI\",\"ISP\",1.00,-9.00,0.00,\"\",0.00,150.00,139.00,1052.00,,,,,,\n2015,5,23,\"WN\",\"1569\",\"PBI\",\"ISP\",-3.00,-7.00,0.00,\"\",0.00,156.00,142.00,1052.00,,,,,,\n2015,5,23,\"WN\",\"2118\",\"PHX\",\"BUF\",-6.00,-38.00,0.00,\"\",0.00,223.00,211.00,1912.00,,,,,,\n2015,5,23,\"WN\",\"2613\",\"ROC\",\"BWI\",-9.00,-21.00,0.00,\"\",0.00,63.00,48.00,277.00,,,,,,\n2015,5,23,\"WN\",\"3853\",\"ROC\",\"BWI\",-3.00,-15.00,0.00,\"\",0.00,68.00,48.00,277.00,,,,,,\n2015,5,23,\"WN\",\"1102\",\"ROC\",\"MCO\",1.00,-16.00,0.00,\"\",0.00,143.00,130.00,1033.00,,,,,,\n2015,5,23,\"WN\",\"1750\",\"ROC\",\"MCO\",9.00,19.00,0.00,\"\",0.00,170.00,137.00,1033.00,0.00,0.00,10.00,0.00,9.00,\n2015,5,23,\"WN\",\"1334\",\"ROC\",\"MDW\",-3.00,6.00,0.00,\"\",0.00,119.00,89.00,523.00,,,,,,\n2015,5,23,\"WN\",\"2828\",\"ROC\",\"TPA\",-4.00,-12.00,0.00,\"\",0.00,157.00,141.00,1079.00,,,,,,\n2015,5,23,\"WN\",\"2796\",\"STL\",\"LGA\",69.00,56.00,0.00,\"\",0.00,132.00,117.00,888.00,56.00,0.00,0.00,0.00,0.00,\n2015,5,23,\"WN\",\"4480\",\"TPA\",\"ALB\",1.00,-12.00,0.00,\"\",0.00,157.00,147.00,1130.00,,,,,,\n2015,5,23,\"WN\",\"1288\",\"TPA\",\"BUF\",60.00,61.00,0.00,\"\",0.00,156.00,144.00,1053.00,0.00,0.00,1.00,0.00,60.00,\n2015,5,23,\"WN\",\"4552\",\"TPA\",\"BUF\",-1.00,-8.00,0.00,\"\",0.00,153.00,139.00,1053.00,,,,,,\n2015,5,23,\"WN\",\"1300\",\"TPA\",\"ISP\",-5.00,-8.00,0.00,\"\",0.00,157.00,139.00,1034.00,,,,,,\n2015,5,23,\"WN\",\"2080\",\"TPA\",\"ISP\",-3.00,-13.00,0.00,\"\",0.00,150.00,138.00,1034.00,,,,,,\n2015,5,23,\"WN\",\"2613\",\"TPA\",\"ROC\",-5.00,-10.00,0.00,\"\",0.00,155.00,141.00,1079.00,,,,,,\n2015,5,24,\"WN\",\"781\",\"ALB\",\"BWI\",-7.00,-15.00,0.00,\"\",0.00,72.00,54.00,289.00,,,,,,\n2015,5,24,\"WN\",\"854\",\"ALB\",\"BWI\",-1.00,-7.00,0.00,\"\",0.00,69.00,49.00,289.00,,,,,,\n2015,5,24,\"WN\",\"1421\",\"ALB\",\"BWI\",-5.00,-24.00,0.00,\"\",0.00,61.00,49.00,289.00,,,,,,\n2015,5,24,\"WN\",\"2389\",\"ALB\",\"BWI\",-1.00,-16.00,0.00,\"\",0.00,65.00,52.00,289.00,,,,,,\n2015,5,24,\"WN\",\"2451\",\"ALB\",\"BWI\",-4.00,-20.00,0.00,\"\",0.00,64.00,50.00,289.00,,,,,,\n2015,5,24,\"WN\",\"2531\",\"ALB\",\"LAS\",-4.00,-10.00,0.00,\"\",0.00,324.00,303.00,2237.00,,,,,,\n2015,5,24,\"WN\",\"3919\",\"ALB\",\"MCO\",-6.00,-27.00,0.00,\"\",0.00,154.00,138.00,1073.00,,,,,,\n2015,5,24,\"WN\",\"4362\",\"ALB\",\"MCO\",-5.00,-27.00,0.00,\"\",0.00,153.00,140.00,1073.00,,,,,,\n2015,5,24,\"WN\",\"1550\",\"ALB\",\"MDW\",-9.00,-18.00,0.00,\"\",0.00,126.00,114.00,717.00,,,,,,\n2015,5,24,\"WN\",\"4985\",\"ALB\",\"MDW\",-7.00,-21.00,0.00,\"\",0.00,126.00,113.00,717.00,,,,,,\n2015,5,24,\"WN\",\"815\",\"ATL\",\"LGA\",18.00,25.00,0.00,\"\",0.00,147.00,104.00,762.00,0.00,0.00,25.00,0.00,0.00,\n2015,5,24,\"WN\",\"1167\",\"ATL\",\"LGA\",0.00,-23.00,0.00,\"\",0.00,122.00,106.00,762.00,,,,,,\n2015,5,24,\"WN\",\"3593\",\"ATL\",\"LGA\",-5.00,-13.00,0.00,\"\",0.00,127.00,103.00,762.00,,,,,,\n2015,5,24,\"WN\",\"3638\",\"ATL\",\"LGA\",0.00,-23.00,0.00,\"\",0.00,117.00,105.00,762.00,,,,,,\n2015,5,24,\"WN\",\"3696\",\"ATL\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,124.00,105.00,762.00,,,,,,\n2015,5,24,\"WN\",\"1844\",\"ROC\",\"BWI\",26.00,16.00,0.00,\"\",0.00,60.00,46.00,277.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,24,\"WN\",\"1279\",\"ROC\",\"MCO\",-4.00,-22.00,0.00,\"\",0.00,142.00,134.00,1033.00,,,,,,\n2015,5,24,\"WN\",\"275\",\"ROC\",\"MDW\",-5.00,-2.00,0.00,\"\",0.00,113.00,88.00,523.00,,,,,,\n2015,5,24,\"WN\",\"4780\",\"ROC\",\"MDW\",-5.00,-12.00,0.00,\"\",0.00,103.00,86.00,523.00,,,,,,\n2015,5,24,\"WN\",\"4655\",\"ROC\",\"TPA\",2.00,24.00,0.00,\"\",0.00,187.00,174.00,1079.00,0.00,0.00,24.00,0.00,0.00,\n2015,5,22,\"WN\",\"2454\",\"PHX\",\"BUF\",155.00,137.00,0.00,\"\",0.00,227.00,206.00,1912.00,4.00,0.00,0.00,0.00,133.00,\n2015,5,22,\"WN\",\"719\",\"ROC\",\"BWI\",0.00,-10.00,0.00,\"\",0.00,60.00,43.00,277.00,,,,,,\n2015,5,22,\"WN\",\"2749\",\"ROC\",\"BWI\",-4.00,-22.00,0.00,\"\",0.00,62.00,47.00,277.00,,,,,,\n2015,5,22,\"WN\",\"597\",\"ROC\",\"MCO\",-3.00,-1.00,0.00,\"\",0.00,162.00,139.00,1033.00,,,,,,\n2015,5,22,\"WN\",\"1211\",\"ROC\",\"MDW\",42.00,36.00,0.00,\"\",0.00,104.00,89.00,523.00,4.00,0.00,0.00,0.00,32.00,\n2015,5,22,\"WN\",\"4712\",\"ROC\",\"MDW\",-7.00,-9.00,0.00,\"\",0.00,103.00,85.00,523.00,,,,,,\n2015,5,22,\"WN\",\"4655\",\"ROC\",\"TPA\",-9.00,-13.00,0.00,\"\",0.00,161.00,145.00,1079.00,,,,,,\n2015,5,22,\"WN\",\"12\",\"STL\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,125.00,114.00,888.00,,,,,,\n2015,5,22,\"WN\",\"1194\",\"STL\",\"LGA\",-6.00,-11.00,0.00,\"\",0.00,140.00,107.00,888.00,,,,,,\n2015,5,22,\"WN\",\"1986\",\"STL\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,126.00,106.00,888.00,,,,,,\n2015,5,24,\"WN\",\"2481\",\"LAS\",\"ALB\",-5.00,-19.00,0.00,\"\",0.00,271.00,257.00,2237.00,,,,,,\n2015,5,24,\"WN\",\"2868\",\"LAS\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,257.00,232.00,1986.00,,,,,,\n2015,5,24,\"WN\",\"3603\",\"LAS\",\"BUF\",-4.00,-4.00,0.00,\"\",0.00,255.00,235.00,1986.00,,,,,,\n2015,5,24,\"WN\",\"178\",\"LGA\",\"ATL\",0.00,-36.00,0.00,\"\",0.00,124.00,104.00,762.00,,,,,,\n2015,5,24,\"WN\",\"2058\",\"LGA\",\"ATL\",0.00,-9.00,0.00,\"\",0.00,151.00,123.00,762.00,,,,,,\n2015,5,24,\"WN\",\"3391\",\"LGA\",\"ATL\",-3.00,-10.00,0.00,\"\",0.00,153.00,105.00,762.00,,,,,,\n2015,5,24,\"WN\",\"3714\",\"LGA\",\"ATL\",-2.00,-39.00,0.00,\"\",0.00,133.00,108.00,762.00,,,,,,\n2015,5,24,\"WN\",\"4728\",\"LGA\",\"ATL\",3.00,-38.00,0.00,\"\",0.00,134.00,107.00,762.00,,,,,,\n2015,5,24,\"WN\",\"1695\",\"LGA\",\"BNA\",-5.00,-31.00,0.00,\"\",0.00,129.00,107.00,764.00,,,,,,\n2015,5,24,\"WN\",\"2406\",\"LGA\",\"BNA\",-4.00,-47.00,0.00,\"\",0.00,122.00,107.00,764.00,,,,,,\n2015,5,24,\"WN\",\"3638\",\"LGA\",\"CAK\",-8.00,-30.00,0.00,\"\",0.00,78.00,63.00,397.00,,,,,,\n2015,5,24,\"WN\",\"232\",\"LGA\",\"DAL\",24.00,-6.00,0.00,\"\",0.00,200.00,187.00,1381.00,,,,,,\n2015,5,24,\"WN\",\"923\",\"LGA\",\"DAL\",-3.00,-45.00,0.00,\"\",0.00,203.00,185.00,1381.00,,,,,,\n2015,5,24,\"WN\",\"1263\",\"LGA\",\"DAL\",-5.00,-46.00,0.00,\"\",0.00,199.00,182.00,1381.00,,,,,,\n2015,5,24,\"WN\",\"3422\",\"LGA\",\"DAL\",15.00,10.00,0.00,\"\",0.00,240.00,201.00,1381.00,,,,,,\n2015,5,24,\"WN\",\"276\",\"LGA\",\"DEN\",-5.00,-33.00,0.00,\"\",0.00,247.00,227.00,1620.00,,,,,,\n2015,5,24,\"WN\",\"2498\",\"LGA\",\"DEN\",-3.00,-34.00,0.00,\"\",0.00,244.00,224.00,1620.00,,,,,,\n2015,5,24,\"WN\",\"391\",\"LGA\",\"HOU\",4.00,-2.00,0.00,\"\",0.00,244.00,229.00,1428.00,,,,,,\n2015,5,24,\"WN\",\"1886\",\"LGA\",\"HOU\",9.00,13.00,0.00,\"\",0.00,244.00,226.00,1428.00,,,,,,\n2015,5,24,\"WN\",\"3845\",\"LGA\",\"HOU\",-4.00,-8.00,0.00,\"\",0.00,236.00,217.00,1428.00,,,,,,\n2015,5,24,\"WN\",\"2414\",\"LGA\",\"MCI\",-5.00,-25.00,0.00,\"\",0.00,175.00,156.00,1107.00,,,,,,\n2015,5,24,\"WN\",\"868\",\"LGA\",\"MDW\",-2.00,-30.00,0.00,\"\",0.00,132.00,111.00,725.00,,,,,,\n2015,5,24,\"WN\",\"1033\",\"LGA\",\"MDW\",-6.00,-19.00,0.00,\"\",0.00,127.00,112.00,725.00,,,,,,\n2015,5,24,\"WN\",\"2489\",\"LGA\",\"MDW\",0.00,-16.00,0.00,\"\",0.00,139.00,112.00,725.00,,,,,,\n2015,5,24,\"WN\",\"2866\",\"LGA\",\"MDW\",-1.00,-21.00,0.00,\"\",0.00,130.00,112.00,725.00,,,,,,\n2015,5,24,\"WN\",\"2912\",\"LGA\",\"MDW\",-1.00,-10.00,0.00,\"\",0.00,141.00,112.00,725.00,,,,,,\n2015,5,24,\"WN\",\"3049\",\"LGA\",\"MDW\",-2.00,-24.00,0.00,\"\",0.00,133.00,117.00,725.00,,,,,,\n2015,5,24,\"WN\",\"3593\",\"LGA\",\"MDW\",9.00,-22.00,0.00,\"\",0.00,129.00,112.00,725.00,,,,,,\n2015,5,24,\"WN\",\"383\",\"LGA\",\"MKE\",-11.00,-30.00,0.00,\"\",0.00,131.00,113.00,738.00,,,,,,\n2015,5,24,\"WN\",\"2465\",\"LGA\",\"MKE\",-2.00,-18.00,0.00,\"\",0.00,139.00,119.00,738.00,,,,,,\n2015,5,24,\"WN\",\"1619\",\"LGA\",\"STL\",22.00,-16.00,0.00,\"\",0.00,142.00,131.00,888.00,,,,,,\n2015,5,24,\"WN\",\"2359\",\"LGA\",\"STL\",-8.00,-34.00,0.00,\"\",0.00,144.00,128.00,888.00,,,,,,\n2015,5,24,\"WN\",\"4735\",\"LGA\",\"STL\",-4.00,-12.00,0.00,\"\",0.00,152.00,135.00,888.00,,,,,,\n2015,5,24,\"WN\",\"894\",\"MCI\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,158.00,136.00,1107.00,,,,,,\n2015,5,24,\"WN\",\"781\",\"MCO\",\"ALB\",-9.00,-5.00,0.00,\"\",0.00,169.00,149.00,1073.00,,,,,,\n2015,5,24,\"WN\",\"1711\",\"MCO\",\"ALB\",63.00,55.00,0.00,\"\",0.00,152.00,139.00,1073.00,55.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"WN\",\"124\",\"MCO\",\"BUF\",11.00,1.00,0.00,\"\",0.00,145.00,133.00,1011.00,,,,,,\n2015,5,24,\"WN\",\"937\",\"MCO\",\"BUF\",-2.00,-7.00,0.00,\"\",0.00,150.00,139.00,1011.00,,,,,,\n2015,5,24,\"WN\",\"4999\",\"MCO\",\"BUF\",-3.00,-1.00,0.00,\"\",0.00,157.00,135.00,1011.00,,,,,,\n2015,5,24,\"WN\",\"299\",\"MCO\",\"ISP\",14.00,11.00,0.00,\"\",0.00,152.00,131.00,971.00,,,,,,\n2015,5,24,\"WN\",\"853\",\"MCO\",\"ISP\",-2.00,0.00,0.00,\"\",0.00,152.00,142.00,971.00,,,,,,\n2015,5,24,\"WN\",\"4486\",\"MCO\",\"ISP\",-5.00,-2.00,0.00,\"\",0.00,153.00,133.00,971.00,,,,,,\n2015,5,24,\"WN\",\"1312\",\"MCO\",\"ROC\",4.00,7.00,0.00,\"\",0.00,158.00,140.00,1033.00,,,,,,\n2015,5,24,\"WN\",\"3127\",\"MDW\",\"ALB\",-5.00,-23.00,0.00,\"\",0.00,97.00,86.00,717.00,,,,,,\n2015,5,24,\"WN\",\"134\",\"MDW\",\"BUF\",-8.00,-18.00,0.00,\"\",0.00,80.00,66.00,468.00,,,,,,\n2015,5,24,\"WN\",\"615\",\"MDW\",\"BUF\",0.00,-14.00,0.00,\"\",0.00,76.00,60.00,468.00,,,,,,\n2015,5,24,\"WN\",\"2591\",\"MDW\",\"BUF\",-2.00,-13.00,0.00,\"\",0.00,89.00,62.00,468.00,,,,,,\n2015,5,24,\"WN\",\"178\",\"MDW\",\"LGA\",3.00,-20.00,0.00,\"\",0.00,107.00,93.00,725.00,,,,,,\n2015,5,24,\"WN\",\"391\",\"MDW\",\"LGA\",-5.00,-15.00,0.00,\"\",0.00,115.00,97.00,725.00,,,,,,\n2015,5,24,\"WN\",\"647\",\"MDW\",\"LGA\",-7.00,-26.00,0.00,\"\",0.00,106.00,93.00,725.00,,,,,,\n2015,5,24,\"WN\",\"1194\",\"MDW\",\"LGA\",5.00,-12.00,0.00,\"\",0.00,113.00,93.00,725.00,,,,,,\n2015,5,24,\"WN\",\"2453\",\"MDW\",\"LGA\",4.00,-15.00,0.00,\"\",0.00,111.00,93.00,725.00,,,,,,\n2015,5,24,\"WN\",\"3579\",\"MDW\",\"ROC\",-4.00,-5.00,0.00,\"\",0.00,89.00,67.00,523.00,,,,,,\n2015,5,24,\"WN\",\"4591\",\"MDW\",\"ROC\",-4.00,-14.00,0.00,\"\",0.00,85.00,66.00,523.00,,,,,,\n2015,5,24,\"WN\",\"923\",\"MKE\",\"LGA\",-2.00,-27.00,0.00,\"\",0.00,110.00,95.00,738.00,,,,,,\n2015,5,24,\"WN\",\"1695\",\"MKE\",\"LGA\",2.00,-18.00,0.00,\"\",0.00,115.00,98.00,738.00,,,,,,\n2015,5,24,\"WN\",\"3391\",\"MKE\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,113.00,98.00,738.00,,,,,,\n2015,5,24,\"WN\",\"1880\",\"STL\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,126.00,113.00,888.00,,,,,,\n2015,5,24,\"WN\",\"1986\",\"STL\",\"LGA\",7.00,-4.00,0.00,\"\",0.00,129.00,113.00,888.00,,,,,,\n2015,5,24,\"WN\",\"2498\",\"STL\",\"LGA\",-3.00,-19.00,0.00,\"\",0.00,129.00,115.00,888.00,,,,,,\n2015,5,24,\"WN\",\"854\",\"TPA\",\"ALB\",-5.00,3.00,0.00,\"\",0.00,178.00,158.00,1130.00,,,,,,\n2015,5,24,\"WN\",\"236\",\"TPA\",\"BUF\",-8.00,-7.00,0.00,\"\",0.00,156.00,138.00,1053.00,,,,,,\n2015,5,24,\"WN\",\"1319\",\"TPA\",\"BUF\",-1.00,1.00,0.00,\"\",0.00,157.00,140.00,1053.00,,,,,,\n2015,5,24,\"WN\",\"3993\",\"TPA\",\"ISP\",-3.00,-14.00,0.00,\"\",0.00,154.00,140.00,1034.00,,,,,,\n2015,5,24,\"WN\",\"1844\",\"TPA\",\"ROC\",28.00,30.00,0.00,\"\",0.00,162.00,142.00,1079.00,0.00,15.00,2.00,0.00,13.00,\n2015,5,25,\"WN\",\"515\",\"ALB\",\"BWI\",17.00,2.00,0.00,\"\",0.00,65.00,53.00,289.00,,,,,,\n2015,5,25,\"WN\",\"781\",\"ALB\",\"BWI\",-6.00,-24.00,0.00,\"\",0.00,62.00,51.00,289.00,,,,,,\n2015,5,25,\"WN\",\"2134\",\"ALB\",\"BWI\",-7.00,-15.00,0.00,\"\",0.00,67.00,54.00,289.00,,,,,,\n2015,5,25,\"WN\",\"2389\",\"ALB\",\"BWI\",-2.00,-17.00,0.00,\"\",0.00,65.00,52.00,289.00,,,,,,\n2015,5,25,\"WN\",\"3793\",\"ALB\",\"BWI\",-4.00,-25.00,0.00,\"\",0.00,64.00,50.00,289.00,,,,,,\n2015,5,25,\"WN\",\"3917\",\"ALB\",\"BWI\",-5.00,-13.00,0.00,\"\",0.00,72.00,61.00,289.00,,,,,,\n2015,5,25,\"WN\",\"3286\",\"ALB\",\"FLL\",-1.00,-3.00,0.00,\"\",0.00,188.00,176.00,1204.00,,,,,,\n2015,5,25,\"WN\",\"143\",\"ALB\",\"LAS\",-1.00,-18.00,0.00,\"\",0.00,313.00,296.00,2237.00,,,,,,\n2015,5,25,\"WN\",\"586\",\"ALB\",\"MCO\",-7.00,-27.00,0.00,\"\",0.00,155.00,140.00,1073.00,,,,,,\n2015,5,25,\"WN\",\"3919\",\"ALB\",\"MCO\",-6.00,-21.00,0.00,\"\",0.00,160.00,146.00,1073.00,,,,,,\n2015,5,25,\"WN\",\"3161\",\"ALB\",\"MDW\",-1.00,-17.00,0.00,\"\",0.00,119.00,107.00,717.00,,,,,,\n2015,5,25,\"WN\",\"2348\",\"ATL\",\"LGA\",10.00,2.00,0.00,\"\",0.00,132.00,114.00,762.00,,,,,,\n2015,5,25,\"WN\",\"2703\",\"ATL\",\"LGA\",32.00,16.00,0.00,\"\",0.00,124.00,103.00,762.00,0.00,16.00,0.00,0.00,0.00,\n2015,5,25,\"WN\",\"3049\",\"ATL\",\"LGA\",-3.00,-29.00,0.00,\"\",0.00,119.00,104.00,762.00,,,,,,\n2015,5,25,\"WN\",\"3593\",\"ATL\",\"LGA\",-1.00,-13.00,0.00,\"\",0.00,123.00,105.00,762.00,,,,,,\n2015,5,25,\"WN\",\"3696\",\"ATL\",\"LGA\",-4.00,-21.00,0.00,\"\",0.00,118.00,105.00,762.00,,,,,,\n2015,5,25,\"WN\",\"943\",\"BNA\",\"LGA\",0.00,-8.00,0.00,\"\",0.00,127.00,108.00,764.00,,,,,,\n2015,5,25,\"WN\",\"1977\",\"BNA\",\"LGA\",-4.00,-15.00,0.00,\"\",0.00,119.00,102.00,764.00,,,,,,\n2015,5,25,\"WN\",\"3499\",\"BNA\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,122.00,109.00,764.00,,,,,,\n2015,5,25,\"WN\",\"591\",\"BUF\",\"BWI\",-5.00,-16.00,0.00,\"\",0.00,64.00,48.00,281.00,,,,,,\n2015,5,25,\"WN\",\"1567\",\"BUF\",\"BWI\",-1.00,-13.00,0.00,\"\",0.00,58.00,46.00,281.00,,,,,,\n2015,5,25,\"WN\",\"2343\",\"BUF\",\"BWI\",-2.00,-7.00,0.00,\"\",0.00,65.00,49.00,281.00,,,,,,\n2015,5,25,\"WN\",\"2872\",\"BUF\",\"BWI\",-4.00,-13.00,0.00,\"\",0.00,66.00,52.00,281.00,,,,,,\n2015,5,25,\"WN\",\"3109\",\"BUF\",\"BWI\",-5.00,-25.00,0.00,\"\",0.00,65.00,51.00,281.00,,,,,,\n2015,5,25,\"WN\",\"3146\",\"BUF\",\"BWI\",44.00,28.00,0.00,\"\",0.00,59.00,47.00,281.00,28.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"WN\",\"3209\",\"BUF\",\"FLL\",-3.00,-20.00,0.00,\"\",0.00,168.00,154.00,1166.00,,,,,,\n2015,5,25,\"WN\",\"1466\",\"BUF\",\"LAS\",-5.00,-36.00,0.00,\"\",0.00,269.00,255.00,1986.00,,,,,,\n2015,5,25,\"WN\",\"1939\",\"BUF\",\"LAS\",-5.00,0.00,0.00,\"\",0.00,295.00,279.00,1986.00,,,,,,\n2015,5,25,\"WN\",\"610\",\"BUF\",\"MCO\",-6.00,-15.00,0.00,\"\",0.00,151.00,134.00,1011.00,,,,,,\n2015,5,25,\"WN\",\"2134\",\"BUF\",\"MCO\",-6.00,-21.00,0.00,\"\",0.00,145.00,131.00,1011.00,,,,,,\n2015,5,25,\"WN\",\"2135\",\"BUF\",\"MCO\",-5.00,-17.00,0.00,\"\",0.00,148.00,134.00,1011.00,,,,,,\n2015,5,25,\"WN\",\"196\",\"BUF\",\"MDW\",-5.00,-17.00,0.00,\"\",0.00,88.00,76.00,468.00,,,,,,\n2015,5,25,\"WN\",\"650\",\"BUF\",\"MDW\",-5.00,-19.00,0.00,\"\",0.00,91.00,80.00,468.00,,,,,,\n2015,5,25,\"WN\",\"2273\",\"BUF\",\"MDW\",-3.00,-18.00,0.00,\"\",0.00,95.00,72.00,468.00,,,,,,\n2015,5,25,\"WN\",\"2100\",\"BUF\",\"TPA\",25.00,9.00,0.00,\"\",0.00,149.00,137.00,1053.00,,,,,,\n2015,5,25,\"WN\",\"2989\",\"BUF\",\"TPA\",-3.00,7.00,0.00,\"\",0.00,175.00,137.00,1053.00,,,,,,\n2015,5,25,\"WN\",\"788\",\"LGA\",\"ATL\",64.00,52.00,0.00,\"\",0.00,148.00,111.00,762.00,0.00,0.00,51.00,0.00,1.00,\n2015,5,25,\"WN\",\"2058\",\"LGA\",\"ATL\",-2.00,-23.00,0.00,\"\",0.00,139.00,109.00,762.00,,,,,,\n2015,5,25,\"WN\",\"2273\",\"LGA\",\"ATL\",-7.00,-24.00,0.00,\"\",0.00,143.00,119.00,762.00,,,,,,\n2015,5,25,\"WN\",\"3714\",\"LGA\",\"ATL\",-2.00,-38.00,0.00,\"\",0.00,134.00,111.00,762.00,,,,,,\n2015,5,25,\"WN\",\"4728\",\"LGA\",\"ATL\",13.00,14.00,0.00,\"\",0.00,176.00,134.00,762.00,,,,,,\n2015,5,25,\"WN\",\"1695\",\"LGA\",\"BNA\",0.00,-23.00,0.00,\"\",0.00,132.00,106.00,764.00,,,,,,\n2015,5,25,\"WN\",\"1972\",\"LGA\",\"BNA\",-4.00,-11.00,0.00,\"\",0.00,143.00,107.00,764.00,,,,,,\n2015,5,25,\"WN\",\"3102\",\"LGA\",\"BNA\",-4.00,-3.00,0.00,\"\",0.00,166.00,109.00,764.00,,,,,,\n2015,5,25,\"WN\",\"480\",\"LGA\",\"CAK\",-6.00,-23.00,0.00,\"\",0.00,83.00,63.00,397.00,,,,,,\n2015,5,25,\"WN\",\"4451\",\"LGA\",\"CAK\",-5.00,-5.00,0.00,\"\",0.00,100.00,65.00,397.00,,,,,,\n2015,5,25,\"WN\",\"151\",\"LGA\",\"DAL\",-2.00,-15.00,0.00,\"\",0.00,217.00,189.00,1381.00,,,,,,\n2015,5,25,\"WN\",\"1263\",\"LGA\",\"DAL\",1.00,,0.00,\"\",1.00,,,1381.00,,,,,,\n2015,5,25,\"WN\",\"2012\",\"LGA\",\"DAL\",-1.00,-34.00,0.00,\"\",0.00,212.00,192.00,1381.00,,,,,,\n2015,5,25,\"WN\",\"3422\",\"LGA\",\"DAL\",2.00,19.00,0.00,\"\",0.00,262.00,219.00,1381.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,25,\"WN\",\"12\",\"LGA\",\"DEN\",78.00,65.00,0.00,\"\",0.00,262.00,233.00,1620.00,7.00,0.00,0.00,0.00,58.00,\n2015,5,25,\"WN\",\"276\",\"LGA\",\"DEN\",-7.00,-35.00,0.00,\"\",0.00,247.00,219.00,1620.00,,,,,,\n2015,5,25,\"WN\",\"1553\",\"LGA\",\"HOU\",19.00,10.00,0.00,\"\",0.00,231.00,197.00,1428.00,,,,,,\n2015,5,25,\"WN\",\"3686\",\"LGA\",\"HOU\",34.00,23.00,0.00,\"\",0.00,239.00,198.00,1428.00,10.00,0.00,0.00,0.00,13.00,\n2015,5,25,\"WN\",\"3896\",\"LGA\",\"HOU\",-3.00,-30.00,0.00,\"\",0.00,213.00,191.00,1428.00,,,,,,\n2015,5,25,\"WN\",\"1196\",\"LGA\",\"MCI\",-3.00,-15.00,0.00,\"\",0.00,183.00,159.00,1107.00,,,,,,\n2015,5,25,\"WN\",\"1033\",\"LGA\",\"MDW\",3.00,-3.00,0.00,\"\",0.00,134.00,106.00,725.00,,,,,,\n2015,5,25,\"WN\",\"2483\",\"LGA\",\"MDW\",-9.00,-12.00,0.00,\"\",0.00,152.00,106.00,725.00,,,,,,\n2015,5,25,\"WN\",\"2901\",\"LGA\",\"MDW\",-4.00,-34.00,0.00,\"\",0.00,130.00,112.00,725.00,,,,,,\n2015,5,25,\"WN\",\"2912\",\"LGA\",\"MDW\",-5.00,-39.00,0.00,\"\",0.00,116.00,105.00,725.00,,,,,,\n2015,5,25,\"WN\",\"3049\",\"LGA\",\"MDW\",-9.00,-35.00,0.00,\"\",0.00,129.00,105.00,725.00,,,,,,\n2015,5,25,\"WN\",\"3593\",\"LGA\",\"MDW\",-2.00,-18.00,0.00,\"\",0.00,144.00,110.00,725.00,,,,,,\n2015,5,25,\"WN\",\"3706\",\"LGA\",\"MDW\",0.00,-24.00,0.00,\"\",0.00,126.00,105.00,725.00,,,,,,\n2015,5,25,\"WN\",\"3499\",\"LGA\",\"MKE\",-4.00,-17.00,0.00,\"\",0.00,142.00,109.00,738.00,,,,,,\n2015,5,25,\"WN\",\"3908\",\"LGA\",\"MKE\",45.00,36.00,0.00,\"\",0.00,141.00,108.00,738.00,0.00,0.00,0.00,0.00,36.00,\n2015,5,25,\"WN\",\"4379\",\"LGA\",\"MKE\",-5.00,-21.00,0.00,\"\",0.00,129.00,109.00,738.00,,,,,,\n2015,5,25,\"WN\",\"1619\",\"LGA\",\"STL\",-4.00,-21.00,0.00,\"\",0.00,163.00,129.00,888.00,,,,,,\n2015,5,25,\"WN\",\"2352\",\"LGA\",\"STL\",1.00,-18.00,0.00,\"\",0.00,151.00,132.00,888.00,,,,,,\n2015,5,25,\"WN\",\"4735\",\"LGA\",\"STL\",-3.00,-21.00,0.00,\"\",0.00,142.00,125.00,888.00,,,,,,\n2015,5,25,\"WN\",\"894\",\"MCI\",\"LGA\",-4.00,1.00,0.00,\"\",0.00,175.00,141.00,1107.00,,,,,,\n2015,5,25,\"WN\",\"781\",\"MCO\",\"ALB\",-8.00,-8.00,0.00,\"\",0.00,165.00,143.00,1073.00,,,,,,\n2015,5,25,\"WN\",\"3695\",\"MCO\",\"ALB\",0.00,-11.00,0.00,\"\",0.00,149.00,136.00,1073.00,,,,,,\n2015,5,25,\"WN\",\"196\",\"MCO\",\"BUF\",-7.00,-22.00,0.00,\"\",0.00,140.00,128.00,1011.00,,,,,,\n2015,5,25,\"WN\",\"2343\",\"MCO\",\"BUF\",-4.00,-16.00,0.00,\"\",0.00,143.00,131.00,1011.00,,,,,,\n2015,5,25,\"WN\",\"2597\",\"MCO\",\"BUF\",-7.00,-25.00,0.00,\"\",0.00,137.00,129.00,1011.00,,,,,,\n2015,5,25,\"WN\",\"729\",\"MCO\",\"ISP\",-3.00,-20.00,0.00,\"\",0.00,138.00,126.00,971.00,,,,,,\n2015,5,25,\"WN\",\"853\",\"MCO\",\"ISP\",-4.00,-14.00,0.00,\"\",0.00,140.00,129.00,971.00,,,,,,\n2015,5,25,\"WN\",\"2780\",\"MCO\",\"ISP\",-2.00,-10.00,0.00,\"\",0.00,142.00,130.00,971.00,,,,,,\n2015,5,25,\"WN\",\"4486\",\"MCO\",\"ISP\",2.00,-8.00,0.00,\"\",0.00,140.00,129.00,971.00,,,,,,\n2015,5,25,\"WN\",\"3935\",\"MCO\",\"ROC\",0.00,-8.00,0.00,\"\",0.00,147.00,132.00,1033.00,,,,,,\n2015,5,25,\"WN\",\"291\",\"MDW\",\"ALB\",74.00,54.00,0.00,\"\",0.00,95.00,84.00,717.00,0.00,0.00,0.00,0.00,54.00,\n2015,5,25,\"WN\",\"3127\",\"MDW\",\"ALB\",16.00,2.00,0.00,\"\",0.00,101.00,89.00,717.00,,,,,,\n2015,5,25,\"WN\",\"102\",\"MDW\",\"BUF\",0.00,-23.00,0.00,\"\",0.00,77.00,61.00,468.00,,,,,,\n2015,5,25,\"WN\",\"1939\",\"MDW\",\"BUF\",-5.00,-1.00,0.00,\"\",0.00,94.00,64.00,468.00,,,,,,\n2015,5,25,\"WN\",\"2100\",\"MDW\",\"BUF\",44.00,33.00,0.00,\"\",0.00,79.00,64.00,468.00,33.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"WN\",\"640\",\"MDW\",\"LGA\",10.00,-5.00,0.00,\"\",0.00,115.00,96.00,725.00,,,,,,\n2015,5,25,\"WN\",\"1553\",\"MDW\",\"LGA\",-1.00,13.00,0.00,\"\",0.00,139.00,99.00,725.00,,,,,,\n2015,5,25,\"WN\",\"1945\",\"MDW\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,109.00,96.00,725.00,,,,,,\n2015,5,25,\"WN\",\"2273\",\"MDW\",\"LGA\",-2.00,-18.00,0.00,\"\",0.00,114.00,97.00,725.00,,,,,,\n2015,5,25,\"WN\",\"2598\",\"MDW\",\"LGA\",7.00,-8.00,0.00,\"\",0.00,115.00,96.00,725.00,,,,,,\n2015,5,25,\"WN\",\"3686\",\"MDW\",\"LGA\",33.00,19.00,0.00,\"\",0.00,111.00,99.00,725.00,19.00,0.00,0.00,0.00,0.00,\n2015,5,25,\"WN\",\"3985\",\"MDW\",\"LGA\",11.00,-10.00,0.00,\"\",0.00,109.00,95.00,725.00,,,,,,\n2015,5,25,\"WN\",\"1534\",\"MDW\",\"ROC\",-7.00,-14.00,0.00,\"\",0.00,83.00,65.00,523.00,,,,,,\n2015,5,25,\"WN\",\"3362\",\"MDW\",\"ROC\",-6.00,-10.00,0.00,\"\",0.00,91.00,66.00,523.00,,,,,,\n2015,5,25,\"WN\",\"480\",\"MKE\",\"LGA\",-3.00,-27.00,0.00,\"\",0.00,111.00,100.00,738.00,,,,,,\n2015,5,25,\"WN\",\"788\",\"MKE\",\"LGA\",-1.00,1.00,0.00,\"\",0.00,132.00,120.00,738.00,,,,,,\n2015,5,25,\"WN\",\"1695\",\"MKE\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,115.00,100.00,738.00,,,,,,\n2015,5,24,\"WN\",\"3697\",\"PBI\",\"ISP\",1.00,2.00,0.00,\"\",0.00,161.00,146.00,1052.00,,,,,,\n2015,5,24,\"WN\",\"4818\",\"PBI\",\"ISP\",-9.00,-9.00,0.00,\"\",0.00,160.00,146.00,1052.00,,,,,,\n2015,5,24,\"WN\",\"423\",\"PHX\",\"BUF\",31.00,20.00,0.00,\"\",0.00,234.00,224.00,1912.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,25,\"WN\",\"143\",\"BWI\",\"ALB\",2.00,6.00,0.00,\"\",0.00,69.00,54.00,289.00,,,,,,\n2015,5,25,\"WN\",\"486\",\"BWI\",\"ALB\",-2.00,-12.00,0.00,\"\",0.00,65.00,53.00,289.00,,,,,,\n2015,5,25,\"WN\",\"889\",\"BWI\",\"ALB\",-1.00,16.00,0.00,\"\",0.00,87.00,61.00,289.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,25,\"WN\",\"1591\",\"BWI\",\"ALB\",21.00,7.00,0.00,\"\",0.00,61.00,49.00,289.00,,,,,,\n2015,5,25,\"WN\",\"1963\",\"BWI\",\"ALB\",50.00,42.00,0.00,\"\",0.00,62.00,49.00,289.00,3.00,0.00,0.00,0.00,39.00,\n2015,5,25,\"WN\",\"3919\",\"BWI\",\"ALB\",-3.00,-6.00,0.00,\"\",0.00,67.00,52.00,289.00,,,,,,\n2015,5,25,\"WN\",\"610\",\"BWI\",\"BUF\",-2.00,-7.00,0.00,\"\",0.00,60.00,47.00,281.00,,,,,,\n2015,5,25,\"WN\",\"1766\",\"BWI\",\"BUF\",-4.00,-12.00,0.00,\"\",0.00,62.00,44.00,281.00,,,,,,\n2015,5,25,\"WN\",\"2134\",\"BWI\",\"BUF\",-5.00,-9.00,0.00,\"\",0.00,66.00,50.00,281.00,,,,,,\n2015,5,25,\"WN\",\"3092\",\"BWI\",\"BUF\",0.00,-6.00,0.00,\"\",0.00,59.00,47.00,281.00,,,,,,\n2015,5,25,\"WN\",\"3264\",\"BWI\",\"BUF\",5.00,-10.00,0.00,\"\",0.00,60.00,47.00,281.00,,,,,,\n2015,5,25,\"WN\",\"548\",\"BWI\",\"ISP\",3.00,-5.00,0.00,\"\",0.00,57.00,39.00,220.00,,,,,,\n2015,5,25,\"WN\",\"867\",\"BWI\",\"ISP\",-4.00,-13.00,0.00,\"\",0.00,61.00,44.00,220.00,,,,,,\n2015,5,25,\"WN\",\"2275\",\"BWI\",\"ISP\",-5.00,-14.00,0.00,\"\",0.00,56.00,42.00,220.00,,,,,,\n2015,5,25,\"WN\",\"2389\",\"BWI\",\"ISP\",1.00,0.00,0.00,\"\",0.00,59.00,44.00,220.00,,,,,,\n2015,5,25,\"WN\",\"3916\",\"BWI\",\"ISP\",-1.00,19.00,0.00,\"\",0.00,80.00,43.00,220.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,25,\"WN\",\"3660\",\"BWI\",\"ROC\",-5.00,-10.00,0.00,\"\",0.00,65.00,49.00,277.00,,,,,,\n2015,5,25,\"WN\",\"3840\",\"BWI\",\"ROC\",146.00,141.00,0.00,\"\",0.00,65.00,45.00,277.00,0.00,0.00,0.00,0.00,141.00,\n2015,5,25,\"WN\",\"2949\",\"CAK\",\"LGA\",-4.00,-23.00,0.00,\"\",0.00,71.00,60.00,397.00,,,,,,\n2015,5,25,\"WN\",\"4728\",\"CAK\",\"LGA\",16.00,9.00,0.00,\"\",0.00,83.00,58.00,397.00,,,,,,\n2015,5,25,\"WN\",\"664\",\"DAL\",\"LGA\",130.00,117.00,0.00,\"\",0.00,192.00,178.00,1381.00,3.00,0.00,0.00,0.00,114.00,\n2015,5,25,\"WN\",\"2178\",\"DAL\",\"LGA\",3.00,-12.00,0.00,\"\",0.00,190.00,169.00,1381.00,,,,,,\n2015,5,25,\"WN\",\"3364\",\"DAL\",\"LGA\",0.00,-19.00,0.00,\"\",0.00,186.00,173.00,1381.00,,,,,,\n2015,5,25,\"WN\",\"3908\",\"DAL\",\"LGA\",56.00,47.00,0.00,\"\",0.00,196.00,179.00,1381.00,16.00,0.00,0.00,0.00,31.00,\n2015,5,25,\"WN\",\"2789\",\"DEN\",\"LGA\",12.00,-15.00,0.00,\"\",0.00,208.00,192.00,1620.00,,,,,,\n2015,5,25,\"WN\",\"3102\",\"DEN\",\"LGA\",0.00,-29.00,0.00,\"\",0.00,206.00,191.00,1620.00,,,,,,\n2015,5,25,\"WN\",\"3262\",\"FLL\",\"ALB\",-5.00,-11.00,0.00,\"\",0.00,174.00,158.00,1204.00,,,,,,\n2015,5,25,\"WN\",\"591\",\"FLL\",\"BUF\",-8.00,-24.00,0.00,\"\",0.00,169.00,150.00,1166.00,,,,,,\n2015,5,25,\"WN\",\"28\",\"FLL\",\"ISP\",17.00,-3.00,0.00,\"\",0.00,155.00,140.00,1092.00,,,,,,\n2015,5,25,\"WN\",\"749\",\"HOU\",\"LGA\",-3.00,-14.00,0.00,\"\",0.00,199.00,182.00,1428.00,,,,,,\n2015,5,25,\"WN\",\"992\",\"HOU\",\"LGA\",69.00,81.00,0.00,\"\",0.00,222.00,179.00,1428.00,0.00,0.00,12.00,0.00,69.00,\n2015,5,25,\"WN\",\"1619\",\"HOU\",\"LGA\",-1.00,-14.00,0.00,\"\",0.00,192.00,177.00,1428.00,,,,,,\n2015,5,25,\"WN\",\"161\",\"ISP\",\"BWI\",-4.00,-14.00,0.00,\"\",0.00,65.00,47.00,220.00,,,,,,\n2015,5,25,\"WN\",\"853\",\"ISP\",\"BWI\",0.00,-2.00,0.00,\"\",0.00,68.00,47.00,220.00,,,,,,\n2015,5,25,\"WN\",\"1809\",\"ISP\",\"BWI\",-7.00,-25.00,0.00,\"\",0.00,57.00,45.00,220.00,,,,,,\n2015,5,25,\"WN\",\"1970\",\"ISP\",\"BWI\",3.00,-7.00,0.00,\"\",0.00,65.00,46.00,220.00,,,,,,\n2015,5,25,\"WN\",\"3715\",\"ISP\",\"BWI\",-1.00,-8.00,0.00,\"\",0.00,68.00,52.00,220.00,,,,,,\n2015,5,25,\"WN\",\"863\",\"ISP\",\"FLL\",-5.00,-29.00,0.00,\"\",0.00,156.00,145.00,1092.00,,,,,,\n2015,5,25,\"WN\",\"2389\",\"ISP\",\"FLL\",3.00,-22.00,0.00,\"\",0.00,160.00,149.00,1092.00,,,,,,\n2015,5,25,\"WN\",\"2108\",\"ISP\",\"MCO\",-2.00,-17.00,0.00,\"\",0.00,145.00,130.00,971.00,,,,,,\n2015,5,25,\"WN\",\"3916\",\"ISP\",\"MCO\",15.00,-6.00,0.00,\"\",0.00,144.00,133.00,971.00,,,,,,\n2015,5,25,\"WN\",\"4575\",\"ISP\",\"MCO\",-9.00,-26.00,0.00,\"\",0.00,148.00,136.00,971.00,,,,,,\n2015,5,25,\"WN\",\"279\",\"ISP\",\"PBI\",-1.00,-18.00,0.00,\"\",0.00,153.00,142.00,1052.00,,,,,,\n2015,5,25,\"WN\",\"4479\",\"ISP\",\"PBI\",-4.00,-17.00,0.00,\"\",0.00,157.00,143.00,1052.00,,,,,,\n2015,5,25,\"WN\",\"4907\",\"ISP\",\"TPA\",-7.00,-21.00,0.00,\"\",0.00,166.00,151.00,1034.00,,,,,,\n2015,5,25,\"WN\",\"2481\",\"LAS\",\"ALB\",8.00,-13.00,0.00,\"\",0.00,264.00,249.00,2237.00,,,,,,\n2015,5,25,\"WN\",\"650\",\"LAS\",\"BUF\",0.00,-18.00,0.00,\"\",0.00,247.00,228.00,1986.00,,,,,,\n2015,5,25,\"WN\",\"3603\",\"LAS\",\"BUF\",1.00,-13.00,0.00,\"\",0.00,241.00,227.00,1986.00,,,,,,\n2015,5,25,\"WN\",\"262\",\"PBI\",\"ISP\",-5.00,-16.00,0.00,\"\",0.00,149.00,135.00,1052.00,,,,,,\n2015,5,25,\"WN\",\"3697\",\"PBI\",\"ISP\",-5.00,-15.00,0.00,\"\",0.00,150.00,139.00,1052.00,,,,,,\n2015,5,25,\"WN\",\"984\",\"PHX\",\"BUF\",8.00,-8.00,0.00,\"\",0.00,229.00,217.00,1912.00,,,,,,\n2015,5,25,\"WN\",\"188\",\"ROC\",\"BWI\",-2.00,4.00,0.00,\"\",0.00,76.00,47.00,277.00,,,,,,\n2015,5,25,\"WN\",\"4658\",\"ROC\",\"BWI\",-4.00,-12.00,0.00,\"\",0.00,72.00,51.00,277.00,,,,,,\n2015,5,25,\"WN\",\"3660\",\"ROC\",\"MCO\",-9.00,-16.00,0.00,\"\",0.00,153.00,140.00,1033.00,,,,,,\n2015,5,25,\"WN\",\"28\",\"ROC\",\"MDW\",-4.00,-3.00,0.00,\"\",0.00,111.00,87.00,523.00,,,,,,\n2015,5,25,\"WN\",\"2384\",\"ROC\",\"MDW\",-2.00,1.00,0.00,\"\",0.00,113.00,85.00,523.00,,,,,,\n2015,5,25,\"WN\",\"135\",\"ROC\",\"TPA\",-6.00,-16.00,0.00,\"\",0.00,155.00,144.00,1079.00,,,,,,\n2015,5,24,\"WN\",\"383\",\"BNA\",\"LGA\",-1.00,-16.00,0.00,\"\",0.00,120.00,108.00,764.00,,,,,,\n2015,5,24,\"WN\",\"2465\",\"BNA\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,121.00,109.00,764.00,,,,,,\n2015,5,24,\"WN\",\"381\",\"BUF\",\"BWI\",-7.00,-22.00,0.00,\"\",0.00,55.00,44.00,281.00,,,,,,\n2015,5,24,\"WN\",\"842\",\"BUF\",\"BWI\",-4.00,-21.00,0.00,\"\",0.00,58.00,46.00,281.00,,,,,,\n2015,5,24,\"WN\",\"937\",\"BUF\",\"BWI\",-5.00,-13.00,0.00,\"\",0.00,62.00,47.00,281.00,,,,,,\n2015,5,24,\"WN\",\"2410\",\"BUF\",\"BWI\",-2.00,-17.00,0.00,\"\",0.00,60.00,48.00,281.00,,,,,,\n2015,5,24,\"WN\",\"2479\",\"BUF\",\"BWI\",14.00,-3.00,0.00,\"\",0.00,58.00,48.00,281.00,,,,,,\n2015,5,24,\"WN\",\"3209\",\"BUF\",\"FLL\",-5.00,-32.00,0.00,\"\",0.00,158.00,147.00,1166.00,,,,,,\n2015,5,24,\"WN\",\"361\",\"BUF\",\"LAS\",-2.00,-27.00,0.00,\"\",0.00,275.00,260.00,1986.00,,,,,,\n2015,5,24,\"WN\",\"615\",\"BUF\",\"LAS\",-2.00,-13.00,0.00,\"\",0.00,279.00,267.00,1986.00,,,,,,\n2015,5,24,\"WN\",\"134\",\"BUF\",\"MCO\",0.00,-19.00,0.00,\"\",0.00,141.00,126.00,1011.00,,,,,,\n2015,5,24,\"WN\",\"728\",\"BUF\",\"MCO\",10.00,-3.00,0.00,\"\",0.00,147.00,128.00,1011.00,,,,,,\n2015,5,24,\"WN\",\"854\",\"BUF\",\"MCO\",24.00,6.00,0.00,\"\",0.00,142.00,130.00,1011.00,,,,,,\n2015,5,24,\"WN\",\"1133\",\"BUF\",\"MCO\",-1.00,-22.00,0.00,\"\",0.00,144.00,127.00,1011.00,,,,,,\n2015,5,24,\"WN\",\"2273\",\"BUF\",\"MDW\",-5.00,-13.00,0.00,\"\",0.00,102.00,76.00,468.00,,,,,,\n2015,5,24,\"WN\",\"2868\",\"BUF\",\"MDW\",-3.00,-20.00,0.00,\"\",0.00,88.00,77.00,468.00,,,,,,\n2015,5,24,\"WN\",\"4999\",\"BUF\",\"MDW\",-2.00,-5.00,0.00,\"\",0.00,97.00,82.00,468.00,,,,,,\n2015,5,24,\"WN\",\"2067\",\"BUF\",\"PHX\",1.00,-18.00,0.00,\"\",0.00,271.00,259.00,1912.00,,,,,,\n2015,5,24,\"WN\",\"2989\",\"BUF\",\"TPA\",-5.00,-21.00,0.00,\"\",0.00,149.00,131.00,1053.00,,,,,,\n2015,5,24,\"WN\",\"283\",\"BWI\",\"ALB\",2.00,-3.00,0.00,\"\",0.00,65.00,53.00,289.00,,,,,,\n2015,5,24,\"WN\",\"598\",\"BWI\",\"ALB\",29.00,22.00,0.00,\"\",0.00,63.00,50.00,289.00,5.00,0.00,0.00,0.00,17.00,\n2015,5,24,\"WN\",\"3919\",\"BWI\",\"ALB\",-4.00,-6.00,0.00,\"\",0.00,68.00,54.00,289.00,,,,,,\n2015,5,24,\"WN\",\"854\",\"BWI\",\"BUF\",39.00,31.00,0.00,\"\",0.00,62.00,47.00,281.00,31.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"WN\",\"2067\",\"BWI\",\"BUF\",0.00,-2.00,0.00,\"\",0.00,63.00,48.00,281.00,,,,,,\n2015,5,24,\"WN\",\"2369\",\"BWI\",\"BUF\",-6.00,-16.00,0.00,\"\",0.00,60.00,48.00,281.00,,,,,,\n2015,5,24,\"WN\",\"2477\",\"BWI\",\"BUF\",11.00,9.00,0.00,\"\",0.00,63.00,51.00,281.00,,,,,,\n2015,5,24,\"WN\",\"3264\",\"BWI\",\"BUF\",1.00,-18.00,0.00,\"\",0.00,56.00,47.00,281.00,,,,,,\n2015,5,24,\"WN\",\"2389\",\"BWI\",\"ISP\",-1.00,-1.00,0.00,\"\",0.00,60.00,43.00,220.00,,,,,,\n2015,5,24,\"WN\",\"2478\",\"BWI\",\"ISP\",-4.00,-13.00,0.00,\"\",0.00,56.00,41.00,220.00,,,,,,\n2015,5,24,\"WN\",\"3916\",\"BWI\",\"ISP\",36.00,41.00,0.00,\"\",0.00,65.00,44.00,220.00,1.00,0.00,5.00,0.00,35.00,\n2015,5,24,\"WN\",\"3840\",\"BWI\",\"ROC\",-7.00,-13.00,0.00,\"\",0.00,64.00,50.00,277.00,,,,,,\n2015,5,24,\"WN\",\"682\",\"CAK\",\"LGA\",-6.00,-24.00,0.00,\"\",0.00,77.00,62.00,397.00,,,,,,\n2015,5,24,\"WN\",\"4728\",\"CAK\",\"LGA\",8.00,2.00,0.00,\"\",0.00,84.00,62.00,397.00,,,,,,\n2015,5,24,\"WN\",\"345\",\"DAL\",\"LGA\",2.00,11.00,0.00,\"\",0.00,214.00,178.00,1381.00,,,,,,\n2015,5,24,\"WN\",\"1676\",\"DAL\",\"LGA\",1.00,-13.00,0.00,\"\",0.00,191.00,179.00,1381.00,,,,,,\n2015,5,24,\"WN\",\"3364\",\"DAL\",\"LGA\",-2.00,-21.00,0.00,\"\",0.00,186.00,172.00,1381.00,,,,,,\n2015,5,24,\"WN\",\"4543\",\"DAL\",\"LGA\",1.00,-16.00,0.00,\"\",0.00,188.00,175.00,1381.00,,,,,,\n2015,5,24,\"WN\",\"2789\",\"DEN\",\"LGA\",7.00,-19.00,0.00,\"\",0.00,209.00,197.00,1620.00,,,,,,\n2015,5,24,\"WN\",\"3102\",\"DEN\",\"LGA\",-4.00,-35.00,0.00,\"\",0.00,204.00,188.00,1620.00,,,,,,\n2015,5,24,\"WN\",\"773\",\"FLL\",\"ALB\",-9.00,-7.00,0.00,\"\",0.00,182.00,172.00,1204.00,,,,,,\n2015,5,24,\"WN\",\"2410\",\"FLL\",\"BUF\",0.00,-9.00,0.00,\"\",0.00,176.00,163.00,1166.00,,,,,,\n2015,5,24,\"WN\",\"1624\",\"FLL\",\"ISP\",17.00,4.00,0.00,\"\",0.00,162.00,147.00,1092.00,,,,,,\n2015,5,24,\"WN\",\"1163\",\"HOU\",\"LGA\",15.00,14.00,0.00,\"\",0.00,209.00,191.00,1428.00,,,,,,\n2015,5,24,\"WN\",\"1619\",\"HOU\",\"LGA\",1.00,0.00,0.00,\"\",0.00,204.00,181.00,1428.00,,,,,,\n2015,5,24,\"WN\",\"1813\",\"HOU\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,196.00,182.00,1428.00,,,,,,\n2015,5,24,\"WN\",\"853\",\"ISP\",\"BWI\",0.00,-5.00,0.00,\"\",0.00,65.00,50.00,220.00,,,,,,\n2015,5,24,\"WN\",\"1075\",\"ISP\",\"BWI\",-5.00,-19.00,0.00,\"\",0.00,61.00,44.00,220.00,,,,,,\n2015,5,24,\"WN\",\"3715\",\"ISP\",\"BWI\",2.00,-8.00,0.00,\"\",0.00,65.00,48.00,220.00,,,,,,\n2015,5,24,\"WN\",\"3743\",\"ISP\",\"BWI\",-3.00,-13.00,0.00,\"\",0.00,65.00,51.00,220.00,,,,,,\n2015,5,24,\"WN\",\"2389\",\"ISP\",\"FLL\",-5.00,-25.00,0.00,\"\",0.00,165.00,146.00,1092.00,,,,,,\n2015,5,24,\"WN\",\"197\",\"ISP\",\"MCO\",-6.00,-29.00,0.00,\"\",0.00,142.00,129.00,971.00,,,,,,\n2015,5,24,\"WN\",\"358\",\"ISP\",\"MCO\",-5.00,-28.00,0.00,\"\",0.00,147.00,124.00,971.00,,,,,,\n2015,5,24,\"WN\",\"2108\",\"ISP\",\"MCO\",0.00,-23.00,0.00,\"\",0.00,137.00,124.00,971.00,,,,,,\n2015,5,24,\"WN\",\"4479\",\"ISP\",\"PBI\",83.00,69.00,0.00,\"\",0.00,156.00,141.00,1052.00,69.00,0.00,0.00,0.00,0.00,\n2015,5,24,\"WN\",\"4729\",\"ISP\",\"PBI\",0.00,-4.00,0.00,\"\",0.00,166.00,144.00,1052.00,,,,,,\n2015,5,24,\"WN\",\"1793\",\"ISP\",\"TPA\",170.00,146.00,0.00,\"\",0.00,156.00,143.00,1034.00,146.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"WN\",\"1898\",\"FLL\",\"ALB\",-5.00,-9.00,0.00,\"\",0.00,176.00,155.00,1204.00,,,,,,\n2015,5,26,\"WN\",\"4643\",\"FLL\",\"BUF\",-4.00,-24.00,0.00,\"\",0.00,165.00,146.00,1166.00,,,,,,\n2015,5,26,\"WN\",\"28\",\"FLL\",\"ISP\",176.00,160.00,0.00,\"\",0.00,159.00,142.00,1092.00,10.00,0.00,0.00,0.00,150.00,\n2015,5,26,\"WN\",\"4640\",\"FLL\",\"ISP\",-5.00,-17.00,0.00,\"\",0.00,158.00,142.00,1092.00,,,,,,\n2015,5,26,\"WN\",\"299\",\"HOU\",\"LGA\",167.00,152.00,0.00,\"\",0.00,195.00,180.00,1428.00,0.00,0.00,0.00,0.00,152.00,\n2015,5,26,\"WN\",\"536\",\"HOU\",\"LGA\",2.00,-11.00,0.00,\"\",0.00,192.00,178.00,1428.00,,,,,,\n2015,5,26,\"WN\",\"1163\",\"HOU\",\"LGA\",80.00,79.00,0.00,\"\",0.00,209.00,178.00,1428.00,27.00,0.00,0.00,0.00,52.00,\n2015,5,26,\"WN\",\"325\",\"ISP\",\"BWI\",-5.00,-13.00,0.00,\"\",0.00,62.00,50.00,220.00,,,,,,\n2015,5,26,\"WN\",\"580\",\"ISP\",\"BWI\",0.00,-8.00,0.00,\"\",0.00,67.00,54.00,220.00,,,,,,\n2015,5,26,\"WN\",\"667\",\"ISP\",\"BWI\",-4.00,6.00,0.00,\"\",0.00,85.00,49.00,220.00,,,,,,\n2015,5,26,\"WN\",\"2940\",\"ISP\",\"BWI\",0.00,-15.00,0.00,\"\",0.00,60.00,49.00,220.00,,,,,,\n2015,5,26,\"WN\",\"3743\",\"ISP\",\"BWI\",2.00,-6.00,0.00,\"\",0.00,67.00,53.00,220.00,,,,,,\n2015,5,26,\"WN\",\"752\",\"ISP\",\"FLL\",1.00,-22.00,0.00,\"\",0.00,162.00,150.00,1092.00,,,,,,\n2015,5,26,\"WN\",\"4554\",\"ISP\",\"FLL\",-5.00,-21.00,0.00,\"\",0.00,164.00,147.00,1092.00,,,,,,\n2015,5,26,\"WN\",\"663\",\"ISP\",\"MCO\",-6.00,-17.00,0.00,\"\",0.00,149.00,133.00,971.00,,,,,,\n2015,5,26,\"WN\",\"4017\",\"ISP\",\"MCO\",-2.00,-19.00,0.00,\"\",0.00,148.00,133.00,971.00,,,,,,\n2015,5,26,\"WN\",\"4575\",\"ISP\",\"MCO\",-3.00,9.00,0.00,\"\",0.00,177.00,137.00,971.00,,,,,,\n2015,5,26,\"WN\",\"4910\",\"ISP\",\"MCO\",-1.00,-24.00,0.00,\"\",0.00,147.00,132.00,971.00,,,,,,\n2015,5,26,\"WN\",\"4479\",\"ISP\",\"PBI\",-3.00,-17.00,0.00,\"\",0.00,156.00,143.00,1052.00,,,,,,\n2015,5,26,\"WN\",\"4729\",\"ISP\",\"PBI\",-8.00,-13.00,0.00,\"\",0.00,165.00,152.00,1052.00,,,,,,\n2015,5,26,\"WN\",\"208\",\"ISP\",\"TPA\",-3.00,-24.00,0.00,\"\",0.00,149.00,139.00,1034.00,,,,,,\n2015,5,26,\"WN\",\"4907\",\"ISP\",\"TPA\",0.00,-17.00,0.00,\"\",0.00,163.00,146.00,1034.00,,,,,,\n2015,5,26,\"WN\",\"2202\",\"LAS\",\"ALB\",67.00,53.00,0.00,\"\",0.00,271.00,259.00,2237.00,53.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"WN\",\"2023\",\"LAS\",\"BUF\",10.00,-6.00,0.00,\"\",0.00,249.00,236.00,1986.00,,,,,,\n2015,5,26,\"WN\",\"2528\",\"LAS\",\"BUF\",29.00,20.00,0.00,\"\",0.00,246.00,231.00,1986.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,1,\"WN\",\"2851\",\"PBI\",\"ISP\",18.00,13.00,0.00,\"\",0.00,155.00,136.00,1052.00,,,,,,\n2015,5,1,\"WN\",\"4818\",\"PBI\",\"ISP\",5.00,-11.00,0.00,\"\",0.00,144.00,130.00,1052.00,,,,,,\n2015,5,2,\"WN\",\"2054\",\"HOU\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,195.00,176.00,1428.00,,,,,,\n2015,5,2,\"WN\",\"2059\",\"HOU\",\"LGA\",18.00,4.00,0.00,\"\",0.00,196.00,182.00,1428.00,,,,,,\n2015,5,2,\"WN\",\"1297\",\"ISP\",\"BWI\",-9.00,-15.00,0.00,\"\",0.00,69.00,51.00,220.00,,,,,,\n2015,5,2,\"WN\",\"1579\",\"ISP\",\"BWI\",75.00,63.00,0.00,\"\",0.00,63.00,48.00,220.00,63.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"WN\",\"1929\",\"ISP\",\"BWI\",-8.00,-20.00,0.00,\"\",0.00,63.00,49.00,220.00,,,,,,\n2015,5,2,\"WN\",\"2547\",\"ISP\",\"BWI\",-4.00,-12.00,0.00,\"\",0.00,67.00,52.00,220.00,,,,,,\n2015,5,2,\"WN\",\"1198\",\"ISP\",\"FLL\",-7.00,-26.00,0.00,\"\",0.00,161.00,148.00,1092.00,,,,,,\n2015,5,2,\"WN\",\"1768\",\"ISP\",\"FLL\",-4.00,-27.00,0.00,\"\",0.00,162.00,148.00,1092.00,,,,,,\n2015,5,2,\"WN\",\"1056\",\"ISP\",\"MCO\",-7.00,-6.00,0.00,\"\",0.00,161.00,141.00,971.00,,,,,,\n2015,5,2,\"WN\",\"1262\",\"ISP\",\"MCO\",-6.00,-18.00,0.00,\"\",0.00,153.00,135.00,971.00,,,,,,\n2015,5,2,\"WN\",\"2551\",\"ISP\",\"MCO\",-5.00,-13.00,0.00,\"\",0.00,157.00,139.00,971.00,,,,,,\n2015,5,2,\"WN\",\"2836\",\"ISP\",\"MCO\",18.00,8.00,0.00,\"\",0.00,155.00,137.00,971.00,,,,,,\n2015,5,2,\"WN\",\"959\",\"ISP\",\"PBI\",-4.00,-10.00,0.00,\"\",0.00,164.00,146.00,1052.00,,,,,,\n2015,5,2,\"WN\",\"3297\",\"ISP\",\"PBI\",0.00,-5.00,0.00,\"\",0.00,165.00,149.00,1052.00,,,,,,\n2015,5,2,\"WN\",\"1216\",\"ISP\",\"TPA\",12.00,2.00,0.00,\"\",0.00,165.00,147.00,1034.00,,,,,,\n2015,5,2,\"WN\",\"4463\",\"ISP\",\"TPA\",-3.00,-16.00,0.00,\"\",0.00,157.00,144.00,1034.00,,,,,,\n2015,5,2,\"WN\",\"1795\",\"LAS\",\"ALB\",42.00,32.00,0.00,\"\",0.00,275.00,261.00,2237.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"WN\",\"2528\",\"LAS\",\"BUF\",5.00,4.00,0.00,\"\",0.00,254.00,237.00,1986.00,,,,,,\n2015,5,2,\"WN\",\"4561\",\"LAS\",\"BUF\",-4.00,-15.00,0.00,\"\",0.00,249.00,235.00,1986.00,,,,,,\n2015,5,2,\"WN\",\"1363\",\"LGA\",\"ATL\",-4.00,-14.00,0.00,\"\",0.00,150.00,106.00,762.00,,,,,,\n2015,5,2,\"WN\",\"1665\",\"LGA\",\"ATL\",-3.00,-27.00,0.00,\"\",0.00,146.00,103.00,762.00,,,,,,\n2015,5,2,\"WN\",\"1896\",\"LGA\",\"ATL\",-3.00,-39.00,0.00,\"\",0.00,124.00,105.00,762.00,,,,,,\n2015,5,2,\"WN\",\"3142\",\"LGA\",\"ATL\",0.00,-50.00,0.00,\"\",0.00,120.00,103.00,762.00,,,,,,\n2015,5,2,\"WN\",\"1515\",\"LGA\",\"BNA\",-1.00,-30.00,0.00,\"\",0.00,121.00,102.00,764.00,,,,,,\n2015,5,2,\"WN\",\"1506\",\"LGA\",\"CAK\",-4.00,-20.00,0.00,\"\",0.00,84.00,60.00,397.00,,,,,,\n2015,5,2,\"WN\",\"1184\",\"LGA\",\"DAL\",-9.00,-37.00,0.00,\"\",0.00,202.00,181.00,1381.00,,,,,,\n2015,5,2,\"WN\",\"1637\",\"LGA\",\"DAL\",-6.00,-43.00,0.00,\"\",0.00,203.00,180.00,1381.00,,,,,,\n2015,5,2,\"WN\",\"2605\",\"LGA\",\"DAL\",0.00,-51.00,0.00,\"\",0.00,194.00,181.00,1381.00,,,,,,\n2015,5,2,\"WN\",\"2537\",\"LGA\",\"DEN\",10.00,-37.00,0.00,\"\",0.00,233.00,213.00,1620.00,,,,,,\n2015,5,2,\"WN\",\"2601\",\"LGA\",\"DEN\",-3.00,-42.00,0.00,\"\",0.00,236.00,212.00,1620.00,,,,,,\n2015,5,2,\"WN\",\"1696\",\"LGA\",\"HOU\",0.00,-29.00,0.00,\"\",0.00,211.00,191.00,1428.00,,,,,,\n2015,5,2,\"WN\",\"4885\",\"LGA\",\"HOU\",6.00,-39.00,0.00,\"\",0.00,210.00,186.00,1428.00,,,,,,\n2015,5,2,\"WN\",\"1338\",\"LGA\",\"MCI\",0.00,-29.00,0.00,\"\",0.00,171.00,149.00,1107.00,,,,,,\n2015,5,2,\"WN\",\"779\",\"LGA\",\"MDW\",-3.00,-4.00,0.00,\"\",0.00,144.00,101.00,725.00,,,,,,\n2015,5,2,\"WN\",\"1374\",\"LGA\",\"MDW\",19.00,-24.00,0.00,\"\",0.00,122.00,108.00,725.00,,,,,,\n2015,5,2,\"WN\",\"1501\",\"LGA\",\"MDW\",-5.00,-26.00,0.00,\"\",0.00,129.00,100.00,725.00,,,,,,\n2015,5,2,\"WN\",\"1668\",\"LGA\",\"MDW\",-4.00,-31.00,0.00,\"\",0.00,118.00,100.00,725.00,,,,,,\n2015,5,2,\"WN\",\"2104\",\"LGA\",\"MDW\",2.00,-42.00,0.00,\"\",0.00,116.00,101.00,725.00,,,,,,\n2015,5,2,\"WN\",\"2808\",\"LGA\",\"MDW\",-5.00,-46.00,0.00,\"\",0.00,114.00,99.00,725.00,,,,,,\n2015,5,2,\"WN\",\"2723\",\"LGA\",\"MKE\",-1.00,-14.00,0.00,\"\",0.00,132.00,101.00,738.00,,,,,,\n2015,5,2,\"WN\",\"1394\",\"LGA\",\"STL\",-4.00,-31.00,0.00,\"\",0.00,133.00,119.00,888.00,,,,,,\n2015,5,2,\"WN\",\"3034\",\"MCI\",\"LGA\",3.00,-1.00,0.00,\"\",0.00,166.00,151.00,1107.00,,,,,,\n2015,5,2,\"WN\",\"1197\",\"MCO\",\"ALB\",11.00,3.00,0.00,\"\",0.00,152.00,136.00,1073.00,,,,,,\n2015,5,2,\"WN\",\"1764\",\"MCO\",\"ALB\",83.00,66.00,0.00,\"\",0.00,148.00,137.00,1073.00,66.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"WN\",\"1115\",\"MCO\",\"BUF\",0.00,-6.00,0.00,\"\",0.00,149.00,132.00,1011.00,,,,,,\n2015,5,2,\"WN\",\"1219\",\"MCO\",\"BUF\",0.00,-8.00,0.00,\"\",0.00,147.00,130.00,1011.00,,,,,,\n2015,5,2,\"WN\",\"1426\",\"MCO\",\"BUF\",-1.00,-8.00,0.00,\"\",0.00,148.00,133.00,1011.00,,,,,,\n2015,5,2,\"WN\",\"2755\",\"MCO\",\"BUF\",-4.00,-10.00,0.00,\"\",0.00,149.00,134.00,1011.00,,,,,,\n2015,5,2,\"WN\",\"1770\",\"MCO\",\"ISP\",-2.00,-7.00,0.00,\"\",0.00,145.00,129.00,971.00,,,,,,\n2015,5,2,\"WN\",\"1906\",\"MCO\",\"ISP\",-1.00,-6.00,0.00,\"\",0.00,145.00,126.00,971.00,,,,,,\n2015,5,2,\"WN\",\"1929\",\"MCO\",\"ISP\",-4.00,-11.00,0.00,\"\",0.00,143.00,129.00,971.00,,,,,,\n2015,5,2,\"WN\",\"3208\",\"MCO\",\"ISP\",-3.00,-9.00,0.00,\"\",0.00,144.00,128.00,971.00,,,,,,\n2015,5,2,\"WN\",\"1503\",\"MCO\",\"ROC\",0.00,-3.00,0.00,\"\",0.00,152.00,138.00,1033.00,,,,,,\n2015,5,2,\"WN\",\"1705\",\"MCO\",\"ROC\",-3.00,-6.00,0.00,\"\",0.00,152.00,132.00,1033.00,,,,,,\n2015,5,2,\"WN\",\"990\",\"MDW\",\"ALB\",-1.00,-10.00,0.00,\"\",0.00,106.00,91.00,717.00,,,,,,\n2015,5,2,\"WN\",\"1689\",\"MDW\",\"ALB\",15.00,2.00,0.00,\"\",0.00,102.00,91.00,717.00,,,,,,\n2015,5,2,\"WN\",\"1334\",\"MDW\",\"BUF\",2.00,-7.00,0.00,\"\",0.00,81.00,66.00,468.00,,,,,,\n2015,5,2,\"WN\",\"2660\",\"MDW\",\"BUF\",0.00,-10.00,0.00,\"\",0.00,75.00,65.00,468.00,,,,,,\n2015,5,2,\"WN\",\"4819\",\"MDW\",\"BUF\",60.00,55.00,0.00,\"\",0.00,80.00,66.00,468.00,55.00,0.00,0.00,0.00,0.00,\n2015,5,2,\"WN\",\"1373\",\"MDW\",\"LGA\",-5.00,-23.00,0.00,\"\",0.00,107.00,95.00,725.00,,,,,,\n2015,5,2,\"WN\",\"1479\",\"MDW\",\"LGA\",15.00,7.00,0.00,\"\",0.00,117.00,102.00,725.00,,,,,,\n2015,5,2,\"WN\",\"1506\",\"MDW\",\"LGA\",2.00,-10.00,0.00,\"\",0.00,113.00,95.00,725.00,,,,,,\n2015,5,2,\"WN\",\"1671\",\"MDW\",\"LGA\",-2.00,-11.00,0.00,\"\",0.00,111.00,100.00,725.00,,,,,,\n2015,5,2,\"WN\",\"1840\",\"MDW\",\"LGA\",6.00,-14.00,0.00,\"\",0.00,115.00,98.00,725.00,,,,,,\n2015,5,2,\"WN\",\"2538\",\"MDW\",\"LGA\",-3.00,-24.00,0.00,\"\",0.00,109.00,97.00,725.00,,,,,,\n2015,5,2,\"WN\",\"1093\",\"MDW\",\"ROC\",8.00,5.00,0.00,\"\",0.00,87.00,70.00,523.00,,,,,,\n2015,5,2,\"WN\",\"2601\",\"MKE\",\"LGA\",-4.00,-28.00,0.00,\"\",0.00,111.00,100.00,738.00,,,,,,\n2015,5,26,\"WN\",\"3935\",\"MCO\",\"ROC\",-3.00,-8.00,0.00,\"\",0.00,150.00,130.00,1033.00,,,,,,\n2015,5,26,\"WN\",\"103\",\"MDW\",\"ALB\",137.00,141.00,0.00,\"\",0.00,119.00,89.00,717.00,0.00,0.00,4.00,0.00,137.00,\n2015,5,26,\"WN\",\"1461\",\"MDW\",\"ALB\",25.00,35.00,0.00,\"\",0.00,125.00,91.00,717.00,9.00,0.00,10.00,0.00,16.00,\n2015,5,26,\"WN\",\"134\",\"MDW\",\"BUF\",-2.00,-19.00,0.00,\"\",0.00,73.00,61.00,468.00,,,,,,\n2015,5,26,\"WN\",\"615\",\"MDW\",\"BUF\",7.00,-7.00,0.00,\"\",0.00,76.00,64.00,468.00,,,,,,\n2015,5,26,\"WN\",\"2241\",\"MDW\",\"BUF\",134.00,111.00,0.00,\"\",0.00,77.00,63.00,468.00,0.00,0.00,0.00,0.00,111.00,\n2015,5,26,\"WN\",\"178\",\"MDW\",\"LGA\",8.00,-10.00,0.00,\"\",0.00,112.00,97.00,725.00,,,,,,\n2015,5,26,\"WN\",\"682\",\"MDW\",\"LGA\",12.00,6.00,0.00,\"\",0.00,119.00,101.00,725.00,,,,,,\n2015,5,26,\"WN\",\"803\",\"MDW\",\"LGA\",20.00,20.00,0.00,\"\",0.00,130.00,100.00,725.00,4.00,0.00,0.00,0.00,16.00,\n2015,5,26,\"WN\",\"1713\",\"MDW\",\"LGA\",3.00,-7.00,0.00,\"\",0.00,115.00,96.00,725.00,,,,,,\n2015,5,26,\"WN\",\"1945\",\"MDW\",\"LGA\",145.00,127.00,0.00,\"\",0.00,112.00,97.00,725.00,15.00,0.00,0.00,0.00,112.00,\n2015,5,26,\"WN\",\"2778\",\"MDW\",\"LGA\",2.00,-9.00,0.00,\"\",0.00,114.00,100.00,725.00,,,,,,\n2015,5,26,\"WN\",\"4365\",\"MDW\",\"LGA\",20.00,10.00,0.00,\"\",0.00,120.00,100.00,725.00,,,,,,\n2015,5,26,\"WN\",\"292\",\"MDW\",\"ROC\",18.00,13.00,0.00,\"\",0.00,85.00,72.00,523.00,,,,,,\n2015,5,26,\"WN\",\"2229\",\"MDW\",\"ROC\",11.00,10.00,0.00,\"\",0.00,94.00,73.00,523.00,,,,,,\n2015,5,26,\"WN\",\"202\",\"MKE\",\"LGA\",0.00,-9.00,0.00,\"\",0.00,126.00,105.00,738.00,,,,,,\n2015,5,26,\"WN\",\"1208\",\"MKE\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,118.00,103.00,738.00,,,,,,\n2015,5,26,\"WN\",\"3391\",\"MKE\",\"LGA\",6.00,-7.00,0.00,\"\",0.00,117.00,105.00,738.00,,,,,,\n2015,5,26,\"WN\",\"815\",\"ATL\",\"LGA\",26.00,39.00,0.00,\"\",0.00,153.00,107.00,762.00,17.00,0.00,13.00,0.00,9.00,\n2015,5,26,\"WN\",\"1182\",\"ATL\",\"LGA\",278.00,272.00,0.00,\"\",0.00,134.00,106.00,762.00,0.00,34.00,0.00,0.00,238.00,\n2015,5,26,\"WN\",\"2516\",\"ATL\",\"LGA\",39.00,25.00,0.00,\"\",0.00,121.00,106.00,762.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"WN\",\"2659\",\"ATL\",\"LGA\",17.00,-7.00,0.00,\"\",0.00,121.00,100.00,762.00,,,,,,\n2015,5,26,\"WN\",\"2850\",\"ATL\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,126.00,107.00,762.00,,,,,,\n2015,5,26,\"WN\",\"255\",\"BNA\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,118.00,102.00,764.00,,,,,,\n2015,5,26,\"WN\",\"2433\",\"BNA\",\"LGA\",15.00,13.00,0.00,\"\",0.00,128.00,110.00,764.00,,,,,,\n2015,5,26,\"WN\",\"2570\",\"BNA\",\"LGA\",5.00,42.00,0.00,\"\",0.00,172.00,108.00,764.00,0.00,0.00,42.00,0.00,0.00,\n2015,5,26,\"WN\",\"381\",\"BUF\",\"BWI\",-3.00,-1.00,0.00,\"\",0.00,72.00,49.00,281.00,,,,,,\n2015,5,26,\"WN\",\"728\",\"BUF\",\"BWI\",38.00,28.00,0.00,\"\",0.00,60.00,48.00,281.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,26,\"WN\",\"842\",\"BUF\",\"BWI\",25.00,11.00,0.00,\"\",0.00,61.00,50.00,281.00,,,,,,\n2015,5,26,\"WN\",\"1429\",\"BUF\",\"BWI\",-5.00,-24.00,0.00,\"\",0.00,66.00,47.00,281.00,,,,,,\n2015,5,26,\"WN\",\"1528\",\"BUF\",\"BWI\",-4.00,-20.00,0.00,\"\",0.00,59.00,48.00,281.00,,,,,,\n2015,5,26,\"WN\",\"2423\",\"BUF\",\"BWI\",-2.00,-16.00,0.00,\"\",0.00,61.00,50.00,281.00,,,,,,\n2015,5,26,\"WN\",\"1785\",\"BUF\",\"FLL\",-4.00,-10.00,0.00,\"\",0.00,179.00,156.00,1166.00,,,,,,\n2015,5,26,\"WN\",\"361\",\"BUF\",\"LAS\",-5.00,-26.00,0.00,\"\",0.00,279.00,256.00,1986.00,,,,,,\n2015,5,26,\"WN\",\"615\",\"BUF\",\"LAS\",5.00,-13.00,0.00,\"\",0.00,272.00,257.00,1986.00,,,,,,\n2015,5,26,\"WN\",\"134\",\"BUF\",\"MCO\",-8.00,-18.00,0.00,\"\",0.00,150.00,134.00,1011.00,,,,,,\n2015,5,26,\"WN\",\"674\",\"BUF\",\"MCO\",-9.00,-20.00,0.00,\"\",0.00,149.00,133.00,1011.00,,,,,,\n2015,5,26,\"WN\",\"854\",\"BUF\",\"MCO\",-6.00,-8.00,0.00,\"\",0.00,158.00,144.00,1011.00,,,,,,\n2015,5,26,\"WN\",\"2141\",\"BUF\",\"MCO\",-2.00,-16.00,0.00,\"\",0.00,146.00,133.00,1011.00,,,,,,\n2015,5,26,\"WN\",\"717\",\"BUF\",\"MDW\",-1.00,-1.00,0.00,\"\",0.00,110.00,87.00,468.00,,,,,,\n2015,5,26,\"WN\",\"2023\",\"BUF\",\"MDW\",-6.00,-9.00,0.00,\"\",0.00,102.00,72.00,468.00,,,,,,\n2015,5,26,\"WN\",\"2632\",\"BUF\",\"MDW\",-1.00,-6.00,0.00,\"\",0.00,95.00,81.00,468.00,,,,,,\n2015,5,26,\"WN\",\"328\",\"BUF\",\"PHX\",38.00,16.00,0.00,\"\",0.00,268.00,250.00,1912.00,2.00,0.00,0.00,0.00,14.00,\n2015,5,26,\"WN\",\"984\",\"BUF\",\"TPA\",-4.00,-18.00,0.00,\"\",0.00,151.00,138.00,1053.00,,,,,,\n2015,5,26,\"WN\",\"2824\",\"BUF\",\"TPA\",-1.00,-15.00,0.00,\"\",0.00,151.00,138.00,1053.00,,,,,,\n2015,5,26,\"WN\",\"334\",\"BWI\",\"ALB\",1.00,-10.00,0.00,\"\",0.00,64.00,50.00,289.00,,,,,,\n2015,5,26,\"WN\",\"346\",\"BWI\",\"ALB\",-3.00,-5.00,0.00,\"\",0.00,63.00,50.00,289.00,,,,,,\n2015,5,26,\"WN\",\"598\",\"BWI\",\"ALB\",114.00,99.00,0.00,\"\",0.00,55.00,45.00,289.00,13.00,0.00,0.00,0.00,86.00,\n2015,5,26,\"WN\",\"1269\",\"BWI\",\"ALB\",61.00,45.00,0.00,\"\",0.00,59.00,48.00,289.00,45.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"WN\",\"3033\",\"BWI\",\"ALB\",22.00,14.00,0.00,\"\",0.00,62.00,50.00,289.00,,,,,,\n2015,5,26,\"WN\",\"3919\",\"BWI\",\"ALB\",135.00,136.00,0.00,\"\",0.00,71.00,53.00,289.00,135.00,0.00,1.00,0.00,0.00,\n2015,5,26,\"WN\",\"328\",\"BWI\",\"BUF\",42.00,32.00,0.00,\"\",0.00,55.00,44.00,281.00,14.00,0.00,0.00,0.00,18.00,\n2015,5,26,\"WN\",\"572\",\"BWI\",\"BUF\",12.00,-2.00,0.00,\"\",0.00,56.00,45.00,281.00,,,,,,\n2015,5,26,\"WN\",\"819\",\"BWI\",\"BUF\",50.00,42.00,0.00,\"\",0.00,57.00,46.00,281.00,42.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"WN\",\"854\",\"BWI\",\"BUF\",-7.00,-20.00,0.00,\"\",0.00,57.00,44.00,281.00,,,,,,\n2015,5,26,\"WN\",\"1350\",\"BWI\",\"BUF\",0.00,-9.00,0.00,\"\",0.00,56.00,44.00,281.00,,,,,,\n2015,5,26,\"WN\",\"1900\",\"BWI\",\"BUF\",8.00,-12.00,0.00,\"\",0.00,55.00,45.00,281.00,,,,,,\n2015,5,26,\"WN\",\"232\",\"BWI\",\"ISP\",35.00,26.00,0.00,\"\",0.00,56.00,40.00,220.00,20.00,0.00,0.00,0.00,6.00,\n2015,5,26,\"WN\",\"752\",\"BWI\",\"ISP\",-1.00,-2.00,0.00,\"\",0.00,59.00,42.00,220.00,,,,,,\n2015,5,26,\"WN\",\"842\",\"BWI\",\"ISP\",13.00,-1.00,0.00,\"\",0.00,51.00,40.00,220.00,,,,,,\n2015,5,26,\"WN\",\"2452\",\"BWI\",\"ISP\",19.00,7.00,0.00,\"\",0.00,58.00,43.00,220.00,,,,,,\n2015,5,26,\"WN\",\"4017\",\"BWI\",\"ISP\",4.00,0.00,0.00,\"\",0.00,56.00,40.00,220.00,,,,,,\n2015,5,26,\"WN\",\"597\",\"BWI\",\"ROC\",4.00,-4.00,0.00,\"\",0.00,62.00,46.00,277.00,,,,,,\n2015,5,26,\"WN\",\"3564\",\"BWI\",\"ROC\",86.00,73.00,0.00,\"\",0.00,57.00,44.00,277.00,73.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"WN\",\"914\",\"CAK\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,80.00,63.00,397.00,,,,,,\n2015,5,26,\"WN\",\"4728\",\"CAK\",\"LGA\",98.00,94.00,0.00,\"\",0.00,86.00,65.00,397.00,6.00,0.00,0.00,0.00,88.00,\n2015,5,26,\"WN\",\"691\",\"DAL\",\"LGA\",20.00,7.00,0.00,\"\",0.00,192.00,176.00,1381.00,,,,,,\n2015,5,26,\"WN\",\"1214\",\"DAL\",\"LGA\",22.00,3.00,0.00,\"\",0.00,186.00,172.00,1381.00,,,,,,\n2015,5,26,\"WN\",\"2141\",\"DAL\",\"LGA\",16.00,-6.00,0.00,\"\",0.00,183.00,168.00,1381.00,,,,,,\n2015,5,26,\"WN\",\"2234\",\"DAL\",\"LGA\",3.00,-16.00,0.00,\"\",0.00,186.00,173.00,1381.00,,,,,,\n2015,5,26,\"WN\",\"824\",\"DEN\",\"LGA\",19.00,1.00,0.00,\"\",0.00,217.00,201.00,1620.00,,,,,,\n2015,5,26,\"WN\",\"1370\",\"DEN\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,224.00,200.00,1620.00,,,,,,\n2015,5,27,\"WN\",\"381\",\"BUF\",\"BWI\",52.00,48.00,0.00,\"\",0.00,66.00,53.00,281.00,0.00,0.00,0.00,0.00,48.00,\n2015,5,27,\"WN\",\"728\",\"BUF\",\"BWI\",-7.00,0.00,0.00,\"\",0.00,77.00,53.00,281.00,,,,,,\n2015,5,27,\"WN\",\"842\",\"BUF\",\"BWI\",-7.00,-16.00,0.00,\"\",0.00,66.00,55.00,281.00,,,,,,\n2015,5,27,\"WN\",\"1429\",\"BUF\",\"BWI\",-4.00,-25.00,0.00,\"\",0.00,64.00,52.00,281.00,,,,,,\n2015,5,27,\"WN\",\"1528\",\"BUF\",\"BWI\",13.00,-5.00,0.00,\"\",0.00,57.00,47.00,281.00,,,,,,\n2015,5,27,\"WN\",\"2423\",\"BUF\",\"BWI\",-6.00,-20.00,0.00,\"\",0.00,61.00,51.00,281.00,,,,,,\n2015,5,27,\"WN\",\"1785\",\"BUF\",\"FLL\",,,1.00,\"A\",0.00,,,1166.00,,,,,,\n2015,5,27,\"WN\",\"361\",\"BUF\",\"LAS\",-3.00,-25.00,0.00,\"\",0.00,278.00,260.00,1986.00,,,,,,\n2015,5,27,\"WN\",\"615\",\"BUF\",\"LAS\",2.00,-17.00,0.00,\"\",0.00,271.00,260.00,1986.00,,,,,,\n2015,5,27,\"WN\",\"134\",\"BUF\",\"MCO\",-1.00,1.00,0.00,\"\",0.00,162.00,137.00,1011.00,,,,,,\n2015,5,27,\"WN\",\"674\",\"BUF\",\"MCO\",-5.00,26.00,0.00,\"\",0.00,191.00,136.00,1011.00,0.00,0.00,26.00,0.00,0.00,\n2015,5,27,\"WN\",\"854\",\"BUF\",\"MCO\",-2.00,-16.00,0.00,\"\",0.00,146.00,136.00,1011.00,,,,,,\n2015,5,27,\"WN\",\"2141\",\"BUF\",\"MCO\",-4.00,-13.00,0.00,\"\",0.00,151.00,135.00,1011.00,,,,,,\n2015,5,27,\"WN\",\"717\",\"BUF\",\"MDW\",-5.00,-16.00,0.00,\"\",0.00,99.00,78.00,468.00,,,,,,\n2015,5,27,\"WN\",\"2023\",\"BUF\",\"MDW\",0.00,21.00,0.00,\"\",0.00,126.00,87.00,468.00,0.00,0.00,21.00,0.00,0.00,\n2015,5,27,\"WN\",\"2632\",\"BUF\",\"MDW\",9.00,10.00,0.00,\"\",0.00,101.00,81.00,468.00,,,,,,\n2015,5,27,\"WN\",\"328\",\"BUF\",\"PHX\",78.00,57.00,0.00,\"\",0.00,269.00,255.00,1912.00,3.00,0.00,0.00,0.00,54.00,\n2015,5,27,\"WN\",\"984\",\"BUF\",\"TPA\",-4.00,-8.00,0.00,\"\",0.00,161.00,144.00,1053.00,,,,,,\n2015,5,27,\"WN\",\"2824\",\"BUF\",\"TPA\",-1.00,-11.00,0.00,\"\",0.00,155.00,143.00,1053.00,,,,,,\n2015,5,27,\"WN\",\"334\",\"BWI\",\"ALB\",6.00,2.00,0.00,\"\",0.00,71.00,51.00,289.00,,,,,,\n2015,5,27,\"WN\",\"346\",\"BWI\",\"ALB\",5.00,15.00,0.00,\"\",0.00,75.00,52.00,289.00,0.00,0.00,15.00,0.00,0.00,\n2015,5,27,\"WN\",\"598\",\"BWI\",\"ALB\",14.00,11.00,0.00,\"\",0.00,67.00,54.00,289.00,,,,,,\n2015,5,27,\"WN\",\"1269\",\"BWI\",\"ALB\",52.00,48.00,0.00,\"\",0.00,71.00,52.00,289.00,48.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"WN\",\"3033\",\"BWI\",\"ALB\",,,1.00,\"B\",0.00,,,289.00,,,,,,\n2015,5,27,\"WN\",\"3919\",\"BWI\",\"ALB\",53.00,41.00,0.00,\"\",0.00,58.00,47.00,289.00,41.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"WN\",\"328\",\"BWI\",\"BUF\",82.00,74.00,0.00,\"\",0.00,57.00,44.00,281.00,13.00,0.00,0.00,0.00,61.00,\n2015,5,27,\"WN\",\"572\",\"BWI\",\"BUF\",56.00,56.00,0.00,\"\",0.00,70.00,41.00,281.00,28.00,0.00,0.00,0.00,28.00,\n2015,5,27,\"WN\",\"819\",\"BWI\",\"BUF\",-5.00,-8.00,0.00,\"\",0.00,62.00,46.00,281.00,,,,,,\n2015,5,27,\"WN\",\"854\",\"BWI\",\"BUF\",0.00,-1.00,0.00,\"\",0.00,69.00,48.00,281.00,,,,,,\n2015,5,27,\"WN\",\"1350\",\"BWI\",\"BUF\",6.00,3.00,0.00,\"\",0.00,62.00,45.00,281.00,,,,,,\n2015,5,27,\"WN\",\"1900\",\"BWI\",\"BUF\",21.00,4.00,0.00,\"\",0.00,58.00,45.00,281.00,,,,,,\n2015,5,27,\"WN\",\"232\",\"BWI\",\"ISP\",32.00,27.00,0.00,\"\",0.00,60.00,40.00,220.00,12.00,0.00,0.00,0.00,15.00,\n2015,5,27,\"WN\",\"752\",\"BWI\",\"ISP\",0.00,4.00,0.00,\"\",0.00,64.00,44.00,220.00,,,,,,\n2015,5,27,\"WN\",\"842\",\"BWI\",\"ISP\",-7.00,-6.00,0.00,\"\",0.00,66.00,44.00,220.00,,,,,,\n2015,5,27,\"WN\",\"2452\",\"BWI\",\"ISP\",6.00,-11.00,0.00,\"\",0.00,53.00,42.00,220.00,,,,,,\n2015,5,27,\"WN\",\"4017\",\"BWI\",\"ISP\",,,1.00,\"B\",0.00,,,220.00,,,,,,\n2015,5,27,\"WN\",\"597\",\"BWI\",\"ROC\",-1.00,-6.00,0.00,\"\",0.00,65.00,47.00,277.00,,,,,,\n2015,5,27,\"WN\",\"3564\",\"BWI\",\"ROC\",28.00,28.00,0.00,\"\",0.00,70.00,49.00,277.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,27,\"WN\",\"914\",\"CAK\",\"LGA\",-4.00,-20.00,0.00,\"\",0.00,74.00,63.00,397.00,,,,,,\n2015,5,27,\"WN\",\"4728\",\"CAK\",\"LGA\",64.00,48.00,0.00,\"\",0.00,74.00,61.00,397.00,0.00,0.00,48.00,0.00,0.00,\n2015,5,27,\"WN\",\"691\",\"DAL\",\"LGA\",125.00,,0.00,\"\",1.00,,,1381.00,,,,,,\n2015,5,27,\"WN\",\"1214\",\"DAL\",\"LGA\",93.00,150.00,0.00,\"\",0.00,262.00,218.00,1381.00,66.00,0.00,57.00,0.00,27.00,\n2015,5,27,\"WN\",\"2141\",\"DAL\",\"LGA\",126.00,120.00,0.00,\"\",0.00,199.00,174.00,1381.00,0.00,16.00,0.00,0.00,104.00,\n2015,5,27,\"WN\",\"2234\",\"DAL\",\"LGA\",118.00,95.00,0.00,\"\",0.00,182.00,170.00,1381.00,95.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"WN\",\"178\",\"LGA\",\"ATL\",-3.00,-24.00,0.00,\"\",0.00,139.00,112.00,762.00,,,,,,\n2015,5,26,\"WN\",\"2939\",\"LGA\",\"ATL\",2.00,-14.00,0.00,\"\",0.00,154.00,117.00,762.00,,,,,,\n2015,5,26,\"WN\",\"3133\",\"LGA\",\"ATL\",-3.00,-28.00,0.00,\"\",0.00,135.00,109.00,762.00,,,,,,\n2015,5,26,\"WN\",\"3391\",\"LGA\",\"ATL\",0.00,-8.00,0.00,\"\",0.00,152.00,113.00,762.00,,,,,,\n2015,5,26,\"WN\",\"4728\",\"LGA\",\"ATL\",157.00,136.00,0.00,\"\",0.00,154.00,109.00,762.00,54.00,0.00,0.00,0.00,82.00,\n2015,5,26,\"WN\",\"914\",\"LGA\",\"BNA\",-4.00,-18.00,0.00,\"\",0.00,136.00,113.00,764.00,,,,,,\n2015,5,26,\"WN\",\"1208\",\"LGA\",\"BNA\",3.00,4.00,0.00,\"\",0.00,156.00,116.00,764.00,,,,,,\n2015,5,26,\"WN\",\"1370\",\"LGA\",\"BNA\",32.00,-3.00,0.00,\"\",0.00,130.00,107.00,764.00,,,,,,\n2015,5,26,\"WN\",\"202\",\"LGA\",\"CAK\",-6.00,-18.00,0.00,\"\",0.00,88.00,58.00,397.00,,,,,,\n2015,5,26,\"WN\",\"534\",\"LGA\",\"CAK\",115.00,96.00,0.00,\"\",0.00,81.00,63.00,397.00,0.00,0.00,0.00,0.00,96.00,\n2015,5,26,\"WN\",\"255\",\"LGA\",\"DAL\",-5.00,10.00,0.00,\"\",0.00,260.00,188.00,1381.00,,,,,,\n2015,5,26,\"WN\",\"431\",\"LGA\",\"DAL\",-3.00,-23.00,0.00,\"\",0.00,220.00,191.00,1381.00,,,,,,\n2015,5,26,\"WN\",\"2347\",\"LGA\",\"DAL\",21.00,15.00,0.00,\"\",0.00,239.00,219.00,1381.00,10.00,0.00,0.00,0.00,5.00,\n2015,5,26,\"WN\",\"3489\",\"LGA\",\"DAL\",3.00,3.00,0.00,\"\",0.00,230.00,186.00,1381.00,,,,,,\n2015,5,26,\"WN\",\"12\",\"LGA\",\"DEN\",141.00,105.00,0.00,\"\",0.00,239.00,214.00,1620.00,0.00,0.00,0.00,0.00,105.00,\n2015,5,26,\"WN\",\"165\",\"LGA\",\"DEN\",-2.00,-27.00,0.00,\"\",0.00,250.00,212.00,1620.00,,,,,,\n2015,5,26,\"WN\",\"682\",\"LGA\",\"HOU\",12.00,-8.00,0.00,\"\",0.00,220.00,198.00,1428.00,,,,,,\n2015,5,26,\"WN\",\"2778\",\"LGA\",\"HOU\",-2.00,-26.00,0.00,\"\",0.00,226.00,198.00,1428.00,,,,,,\n2015,5,26,\"WN\",\"3845\",\"LGA\",\"HOU\",-2.00,-10.00,0.00,\"\",0.00,232.00,199.00,1428.00,,,,,,\n2015,5,26,\"WN\",\"413\",\"LGA\",\"MCI\",272.00,238.00,0.00,\"\",0.00,166.00,151.00,1107.00,0.00,0.00,0.00,0.00,238.00,\n2015,5,26,\"WN\",\"479\",\"LGA\",\"MDW\",-4.00,-18.00,0.00,\"\",0.00,131.00,105.00,725.00,,,,,,\n2015,5,26,\"WN\",\"777\",\"LGA\",\"MDW\",148.00,122.00,0.00,\"\",0.00,129.00,109.00,725.00,0.00,0.00,0.00,0.00,122.00,\n2015,5,26,\"WN\",\"868\",\"LGA\",\"MDW\",31.00,31.00,0.00,\"\",0.00,160.00,107.00,725.00,11.00,0.00,0.00,0.00,20.00,\n2015,5,26,\"WN\",\"2516\",\"LGA\",\"MDW\",38.00,6.00,0.00,\"\",0.00,128.00,105.00,725.00,,,,,,\n2015,5,26,\"WN\",\"2529\",\"LGA\",\"MDW\",-5.00,-19.00,0.00,\"\",0.00,136.00,103.00,725.00,,,,,,\n2015,5,26,\"WN\",\"2659\",\"LGA\",\"MDW\",19.00,-7.00,0.00,\"\",0.00,129.00,101.00,725.00,,,,,,\n2015,5,26,\"WN\",\"4123\",\"LGA\",\"MDW\",1.00,-10.00,0.00,\"\",0.00,139.00,117.00,725.00,,,,,,\n2015,5,26,\"WN\",\"1344\",\"LGA\",\"MKE\",60.00,32.00,0.00,\"\",0.00,122.00,102.00,738.00,30.00,0.00,0.00,0.00,2.00,\n2015,5,26,\"WN\",\"2433\",\"LGA\",\"MKE\",42.00,16.00,0.00,\"\",0.00,129.00,112.00,738.00,11.00,0.00,0.00,0.00,5.00,\n2015,5,26,\"WN\",\"4379\",\"LGA\",\"MKE\",-5.00,-28.00,0.00,\"\",0.00,122.00,108.00,738.00,,,,,,\n2015,5,26,\"WN\",\"536\",\"LGA\",\"STL\",0.00,-32.00,0.00,\"\",0.00,148.00,127.00,888.00,,,,,,\n2015,5,26,\"WN\",\"2168\",\"LGA\",\"STL\",-3.00,3.00,0.00,\"\",0.00,166.00,148.00,888.00,,,,,,\n2015,5,26,\"WN\",\"4571\",\"LGA\",\"STL\",62.00,40.00,0.00,\"\",0.00,148.00,126.00,888.00,13.00,0.00,0.00,0.00,27.00,\n2015,5,26,\"WN\",\"333\",\"MCI\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,163.00,144.00,1107.00,,,,,,\n2015,5,26,\"WN\",\"1011\",\"MCO\",\"ALB\",96.00,82.00,0.00,\"\",0.00,151.00,141.00,1073.00,0.00,0.00,0.00,0.00,82.00,\n2015,5,26,\"WN\",\"2849\",\"MCO\",\"ALB\",0.00,-11.00,0.00,\"\",0.00,149.00,137.00,1073.00,,,,,,\n2015,5,26,\"WN\",\"728\",\"MCO\",\"BUF\",64.00,49.00,0.00,\"\",0.00,140.00,127.00,1011.00,3.00,0.00,0.00,0.00,46.00,\n2015,5,26,\"WN\",\"801\",\"MCO\",\"BUF\",8.00,-11.00,0.00,\"\",0.00,136.00,124.00,1011.00,,,,,,\n2015,5,26,\"WN\",\"2423\",\"MCO\",\"BUF\",-5.00,-19.00,0.00,\"\",0.00,141.00,126.00,1011.00,,,,,,\n2015,5,26,\"WN\",\"2632\",\"MCO\",\"BUF\",-6.00,-18.00,0.00,\"\",0.00,143.00,127.00,1011.00,,,,,,\n2015,5,26,\"WN\",\"293\",\"MCO\",\"ISP\",1.00,-10.00,0.00,\"\",0.00,144.00,126.00,971.00,,,,,,\n2015,5,26,\"WN\",\"325\",\"MCO\",\"ISP\",0.00,-1.00,0.00,\"\",0.00,149.00,130.00,971.00,,,,,,\n2015,5,26,\"WN\",\"426\",\"MCO\",\"ISP\",-4.00,-10.00,0.00,\"\",0.00,144.00,129.00,971.00,,,,,,\n2015,5,26,\"WN\",\"4486\",\"MCO\",\"ISP\",5.00,-5.00,0.00,\"\",0.00,140.00,128.00,971.00,,,,,,\n2015,5,26,\"WN\",\"12\",\"STL\",\"LGA\",194.00,181.00,0.00,\"\",0.00,132.00,118.00,888.00,6.00,0.00,0.00,0.00,175.00,\n2015,5,26,\"WN\",\"1194\",\"STL\",\"LGA\",-4.00,-12.00,0.00,\"\",0.00,137.00,115.00,888.00,,,,,,\n2015,5,26,\"WN\",\"1986\",\"STL\",\"LGA\",16.00,4.00,0.00,\"\",0.00,128.00,115.00,888.00,,,,,,\n2015,5,26,\"WN\",\"854\",\"TPA\",\"ALB\",-5.00,-14.00,0.00,\"\",0.00,161.00,146.00,1130.00,,,,,,\n2015,5,26,\"WN\",\"127\",\"TPA\",\"BUF\",-6.00,-17.00,0.00,\"\",0.00,144.00,131.00,1053.00,,,,,,\n2015,5,26,\"WN\",\"2160\",\"TPA\",\"BUF\",,,1.00,\"A\",0.00,,,1053.00,,,,,,\n2015,5,26,\"WN\",\"2423\",\"TPA\",\"ISP\",,,1.00,\"A\",0.00,,,1034.00,,,,,,\n2015,5,26,\"WN\",\"4390\",\"TPA\",\"ISP\",-2.00,-16.00,0.00,\"\",0.00,151.00,136.00,1034.00,,,,,,\n2015,5,26,\"WN\",\"719\",\"TPA\",\"ROC\",9.00,10.00,0.00,\"\",0.00,161.00,136.00,1079.00,,,,,,\n2015,5,27,\"WN\",\"223\",\"ALB\",\"BWI\",2.00,16.00,0.00,\"\",0.00,94.00,57.00,289.00,0.00,0.00,16.00,0.00,0.00,\n2015,5,27,\"WN\",\"752\",\"ALB\",\"BWI\",3.00,-3.00,0.00,\"\",0.00,74.00,57.00,289.00,,,,,,\n2015,5,27,\"WN\",\"854\",\"ALB\",\"BWI\",-1.00,-5.00,0.00,\"\",0.00,71.00,54.00,289.00,,,,,,\n2015,5,27,\"WN\",\"1011\",\"ALB\",\"BWI\",,,1.00,\"B\",0.00,,,289.00,,,,,,\n2015,5,27,\"WN\",\"3294\",\"ALB\",\"BWI\",-5.00,-5.00,0.00,\"\",0.00,85.00,57.00,289.00,,,,,,\n2015,5,27,\"WN\",\"3917\",\"ALB\",\"BWI\",-4.00,-10.00,0.00,\"\",0.00,74.00,55.00,289.00,,,,,,\n2015,5,27,\"WN\",\"1987\",\"ALB\",\"FLL\",7.00,-12.00,0.00,\"\",0.00,171.00,159.00,1204.00,,,,,,\n2015,5,27,\"WN\",\"346\",\"ALB\",\"LAS\",14.00,-4.00,0.00,\"\",0.00,312.00,298.00,2237.00,,,,,,\n2015,5,27,\"WN\",\"3919\",\"ALB\",\"MCO\",48.00,36.00,0.00,\"\",0.00,163.00,148.00,1073.00,5.00,0.00,0.00,0.00,31.00,\n2015,5,27,\"WN\",\"4362\",\"ALB\",\"MCO\",0.00,-12.00,0.00,\"\",0.00,163.00,148.00,1073.00,,,,,,\n2015,5,27,\"WN\",\"1550\",\"ALB\",\"MDW\",66.00,64.00,0.00,\"\",0.00,133.00,119.00,717.00,11.00,0.00,0.00,0.00,53.00,\n2015,5,27,\"WN\",\"4985\",\"ALB\",\"MDW\",-4.00,0.00,0.00,\"\",0.00,139.00,108.00,717.00,,,,,,\n2015,5,27,\"WN\",\"3650\",\"ALB\",\"TPA\",-3.00,-17.00,0.00,\"\",0.00,171.00,153.00,1130.00,,,,,,\n2015,5,27,\"WN\",\"815\",\"ATL\",\"LGA\",19.00,10.00,0.00,\"\",0.00,131.00,103.00,762.00,,,,,,\n2015,5,27,\"WN\",\"1182\",\"ATL\",\"LGA\",,,1.00,\"A\",0.00,,,762.00,,,,,,\n2015,5,27,\"WN\",\"2516\",\"ATL\",\"LGA\",-1.00,-6.00,0.00,\"\",0.00,130.00,104.00,762.00,,,,,,\n2015,5,27,\"WN\",\"2659\",\"ATL\",\"LGA\",2.00,-11.00,0.00,\"\",0.00,132.00,103.00,762.00,,,,,,\n2015,5,27,\"WN\",\"2850\",\"ATL\",\"LGA\",1.00,-12.00,0.00,\"\",0.00,122.00,104.00,762.00,,,,,,\n2015,5,27,\"WN\",\"255\",\"BNA\",\"LGA\",-6.00,3.00,0.00,\"\",0.00,139.00,105.00,764.00,,,,,,\n2015,5,27,\"WN\",\"2433\",\"BNA\",\"LGA\",51.00,47.00,0.00,\"\",0.00,126.00,102.00,764.00,0.00,0.00,47.00,0.00,0.00,\n2015,5,27,\"WN\",\"2570\",\"BNA\",\"LGA\",119.00,,0.00,\"\",1.00,,,764.00,,,,,,\n2015,5,27,\"WN\",\"202\",\"MKE\",\"LGA\",-5.00,-24.00,0.00,\"\",0.00,116.00,104.00,738.00,,,,,,\n2015,5,27,\"WN\",\"1208\",\"MKE\",\"LGA\",0.00,-20.00,0.00,\"\",0.00,115.00,100.00,738.00,,,,,,\n2015,5,27,\"WN\",\"3391\",\"MKE\",\"LGA\",,,1.00,\"A\",0.00,,,738.00,,,,,,\n2015,5,26,\"WN\",\"2851\",\"PBI\",\"ISP\",0.00,-3.00,0.00,\"\",0.00,157.00,142.00,1052.00,,,,,,\n2015,5,26,\"WN\",\"4818\",\"PBI\",\"ISP\",-6.00,-18.00,0.00,\"\",0.00,148.00,136.00,1052.00,,,,,,\n2015,5,26,\"WN\",\"2454\",\"PHX\",\"BUF\",14.00,-6.00,0.00,\"\",0.00,225.00,217.00,1912.00,,,,,,\n2015,5,26,\"WN\",\"719\",\"ROC\",\"BWI\",6.00,-7.00,0.00,\"\",0.00,57.00,46.00,277.00,,,,,,\n2015,5,26,\"WN\",\"2749\",\"ROC\",\"BWI\",-3.00,-2.00,0.00,\"\",0.00,81.00,49.00,277.00,,,,,,\n2015,5,26,\"WN\",\"597\",\"ROC\",\"MCO\",51.00,48.00,0.00,\"\",0.00,157.00,138.00,1033.00,48.00,0.00,0.00,0.00,0.00,\n2015,5,26,\"WN\",\"747\",\"ROC\",\"MDW\",7.00,-9.00,0.00,\"\",0.00,94.00,81.00,523.00,,,,,,\n2015,5,26,\"WN\",\"4712\",\"ROC\",\"MDW\",-6.00,-16.00,0.00,\"\",0.00,95.00,80.00,523.00,,,,,,\n2015,5,26,\"WN\",\"4655\",\"ROC\",\"TPA\",0.00,1.00,0.00,\"\",0.00,166.00,143.00,1079.00,,,,,,\n2015,5,27,\"WN\",\"325\",\"ISP\",\"BWI\",1.00,-1.00,0.00,\"\",0.00,68.00,54.00,220.00,,,,,,\n2015,5,27,\"WN\",\"580\",\"ISP\",\"BWI\",4.00,-3.00,0.00,\"\",0.00,68.00,55.00,220.00,,,,,,\n2015,5,27,\"WN\",\"667\",\"ISP\",\"BWI\",140.00,133.00,0.00,\"\",0.00,68.00,55.00,220.00,133.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"WN\",\"2940\",\"ISP\",\"BWI\",,,1.00,\"B\",0.00,,,220.00,,,,,,\n2015,5,27,\"WN\",\"3743\",\"ISP\",\"BWI\",-5.00,-17.00,0.00,\"\",0.00,63.00,51.00,220.00,,,,,,\n2015,5,27,\"WN\",\"752\",\"ISP\",\"FLL\",2.00,-20.00,0.00,\"\",0.00,163.00,150.00,1092.00,,,,,,\n2015,5,27,\"WN\",\"4554\",\"ISP\",\"FLL\",,,1.00,\"A\",0.00,,,1092.00,,,,,,\n2015,5,27,\"WN\",\"663\",\"ISP\",\"MCO\",-5.00,-17.00,0.00,\"\",0.00,148.00,134.00,971.00,,,,,,\n2015,5,27,\"WN\",\"4017\",\"ISP\",\"MCO\",-10.00,-24.00,0.00,\"\",0.00,151.00,136.00,971.00,,,,,,\n2015,5,27,\"WN\",\"4575\",\"ISP\",\"MCO\",3.00,-6.00,0.00,\"\",0.00,156.00,137.00,971.00,,,,,,\n2015,5,27,\"WN\",\"4910\",\"ISP\",\"MCO\",9.00,-11.00,0.00,\"\",0.00,150.00,133.00,971.00,,,,,,\n2015,5,27,\"WN\",\"4479\",\"ISP\",\"PBI\",-5.00,-18.00,0.00,\"\",0.00,157.00,141.00,1052.00,,,,,,\n2015,5,27,\"WN\",\"4729\",\"ISP\",\"PBI\",-7.00,-23.00,0.00,\"\",0.00,154.00,142.00,1052.00,,,,,,\n2015,5,27,\"WN\",\"208\",\"ISP\",\"TPA\",-2.00,-11.00,0.00,\"\",0.00,161.00,146.00,1034.00,,,,,,\n2015,5,27,\"WN\",\"4907\",\"ISP\",\"TPA\",-6.00,-32.00,0.00,\"\",0.00,154.00,143.00,1034.00,,,,,,\n2015,5,27,\"WN\",\"2202\",\"LAS\",\"ALB\",112.00,88.00,0.00,\"\",0.00,261.00,250.00,2237.00,88.00,0.00,0.00,0.00,0.00,\n2015,5,27,\"WN\",\"2023\",\"LAS\",\"BUF\",-1.00,-26.00,0.00,\"\",0.00,240.00,228.00,1986.00,,,,,,\n2015,5,27,\"WN\",\"2528\",\"LAS\",\"BUF\",13.00,-4.00,0.00,\"\",0.00,238.00,224.00,1986.00,,,,,,\n2015,5,27,\"WN\",\"178\",\"LGA\",\"ATL\",-4.00,-14.00,0.00,\"\",0.00,150.00,118.00,762.00,,,,,,\n2015,5,27,\"WN\",\"2939\",\"LGA\",\"ATL\",-1.00,-27.00,0.00,\"\",0.00,144.00,117.00,762.00,,,,,,\n2015,5,27,\"WN\",\"3133\",\"LGA\",\"ATL\",-1.00,-27.00,0.00,\"\",0.00,134.00,116.00,762.00,,,,,,\n2015,5,27,\"WN\",\"3391\",\"LGA\",\"ATL\",,,1.00,\"A\",0.00,,,762.00,,,,,,\n2015,5,27,\"WN\",\"4728\",\"LGA\",\"ATL\",41.00,43.00,0.00,\"\",0.00,177.00,128.00,762.00,0.00,0.00,2.00,0.00,41.00,\n2015,5,27,\"WN\",\"914\",\"LGA\",\"BNA\",-5.00,-19.00,0.00,\"\",0.00,136.00,111.00,764.00,,,,,,\n2015,5,27,\"WN\",\"1208\",\"LGA\",\"BNA\",-2.00,-21.00,0.00,\"\",0.00,136.00,109.00,764.00,,,,,,\n2015,5,27,\"WN\",\"1370\",\"LGA\",\"BNA\",92.00,129.00,0.00,\"\",0.00,202.00,110.00,764.00,0.00,0.00,37.00,0.00,92.00,\n2015,5,27,\"WN\",\"202\",\"LGA\",\"CAK\",-2.00,-22.00,0.00,\"\",0.00,80.00,63.00,397.00,,,,,,\n2015,5,27,\"WN\",\"534\",\"LGA\",\"CAK\",191.00,177.00,0.00,\"\",0.00,86.00,63.00,397.00,0.00,0.00,5.00,0.00,172.00,\n2015,5,27,\"WN\",\"255\",\"LGA\",\"DAL\",8.00,-27.00,0.00,\"\",0.00,210.00,191.00,1381.00,,,,,,\n2015,5,27,\"WN\",\"431\",\"LGA\",\"DAL\",83.00,81.00,0.00,\"\",0.00,238.00,202.00,1381.00,0.00,0.00,0.00,0.00,81.00,\n2015,5,27,\"WN\",\"2347\",\"LGA\",\"DAL\",320.00,275.00,0.00,\"\",0.00,200.00,186.00,1381.00,28.00,0.00,0.00,0.00,247.00,\n2015,5,27,\"WN\",\"3489\",\"LGA\",\"DAL\",-1.00,-6.00,0.00,\"\",0.00,225.00,191.00,1381.00,,,,,,\n2015,5,27,\"WN\",\"12\",\"LGA\",\"DEN\",104.00,159.00,0.00,\"\",0.00,330.00,234.00,1620.00,19.00,0.00,55.00,0.00,85.00,\n2015,5,27,\"WN\",\"165\",\"LGA\",\"DEN\",0.00,-31.00,0.00,\"\",0.00,244.00,221.00,1620.00,,,,,,\n2015,5,27,\"WN\",\"682\",\"LGA\",\"HOU\",332.00,300.00,0.00,\"\",0.00,208.00,189.00,1428.00,21.00,0.00,0.00,0.00,279.00,\n2015,5,27,\"WN\",\"2778\",\"LGA\",\"HOU\",1.00,-13.00,0.00,\"\",0.00,236.00,210.00,1428.00,,,,,,\n2015,5,27,\"WN\",\"3845\",\"LGA\",\"HOU\",12.00,33.00,0.00,\"\",0.00,261.00,228.00,1428.00,12.00,0.00,21.00,0.00,0.00,\n2015,5,27,\"WN\",\"413\",\"LGA\",\"MCI\",,,1.00,\"A\",0.00,,,1107.00,,,,,,\n2015,5,27,\"WN\",\"479\",\"LGA\",\"MDW\",113.00,89.00,0.00,\"\",0.00,121.00,103.00,725.00,32.00,0.00,0.00,0.00,57.00,\n2015,5,27,\"WN\",\"777\",\"LGA\",\"MDW\",15.00,30.00,0.00,\"\",0.00,170.00,134.00,725.00,0.00,0.00,15.00,0.00,15.00,\n2015,5,27,\"WN\",\"868\",\"LGA\",\"MDW\",,,1.00,\"B\",0.00,,,725.00,,,,,,\n2015,5,27,\"WN\",\"2516\",\"LGA\",\"MDW\",10.00,57.00,0.00,\"\",0.00,207.00,136.00,725.00,10.00,0.00,47.00,0.00,0.00,\n2015,5,27,\"WN\",\"2529\",\"LGA\",\"MDW\",3.00,-25.00,0.00,\"\",0.00,122.00,107.00,725.00,,,,,,\n2015,5,27,\"WN\",\"2659\",\"LGA\",\"MDW\",-1.00,2.00,0.00,\"\",0.00,158.00,135.00,725.00,,,,,,\n2015,5,27,\"WN\",\"4123\",\"LGA\",\"MDW\",-2.00,-20.00,0.00,\"\",0.00,132.00,106.00,725.00,,,,,,\n2015,5,27,\"WN\",\"1344\",\"LGA\",\"MKE\",,,1.00,\"A\",0.00,,,738.00,,,,,,\n2015,5,27,\"WN\",\"2433\",\"LGA\",\"MKE\",49.00,138.00,0.00,\"\",0.00,244.00,129.00,738.00,2.00,0.00,89.00,0.00,47.00,\n2015,5,27,\"WN\",\"4379\",\"LGA\",\"MKE\",-3.00,-10.00,0.00,\"\",0.00,138.00,106.00,738.00,,,,,,\n2015,5,27,\"WN\",\"536\",\"LGA\",\"STL\",47.00,73.00,0.00,\"\",0.00,206.00,138.00,888.00,7.00,0.00,26.00,0.00,40.00,\n2015,5,27,\"WN\",\"2168\",\"LGA\",\"STL\",12.00,3.00,0.00,\"\",0.00,151.00,131.00,888.00,,,,,,\n2015,5,27,\"WN\",\"4571\",\"LGA\",\"STL\",,,1.00,\"A\",0.00,,,888.00,,,,,,\n2015,5,27,\"WN\",\"333\",\"MCI\",\"LGA\",78.00,72.00,0.00,\"\",0.00,164.00,144.00,1107.00,0.00,0.00,71.00,0.00,1.00,\n2015,5,27,\"WN\",\"1011\",\"MCO\",\"ALB\",24.00,10.00,0.00,\"\",0.00,151.00,140.00,1073.00,,,,,,\n2015,5,27,\"WN\",\"2849\",\"MCO\",\"ALB\",33.00,22.00,0.00,\"\",0.00,149.00,135.00,1073.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,27,\"WN\",\"728\",\"MCO\",\"BUF\",0.00,-15.00,0.00,\"\",0.00,140.00,130.00,1011.00,,,,,,\n2015,5,27,\"WN\",\"801\",\"MCO\",\"BUF\",-3.00,-11.00,0.00,\"\",0.00,147.00,127.00,1011.00,,,,,,\n2015,5,27,\"WN\",\"2423\",\"MCO\",\"BUF\",-4.00,-20.00,0.00,\"\",0.00,139.00,126.00,1011.00,,,,,,\n2015,5,27,\"WN\",\"2632\",\"MCO\",\"BUF\",-4.00,-20.00,0.00,\"\",0.00,139.00,126.00,1011.00,,,,,,\n2015,5,27,\"WN\",\"293\",\"MCO\",\"ISP\",-5.00,-19.00,0.00,\"\",0.00,141.00,124.00,971.00,,,,,,\n2015,5,27,\"WN\",\"325\",\"MCO\",\"ISP\",-1.00,-3.00,0.00,\"\",0.00,148.00,135.00,971.00,,,,,,\n2015,5,27,\"WN\",\"426\",\"MCO\",\"ISP\",1.00,-6.00,0.00,\"\",0.00,143.00,131.00,971.00,,,,,,\n2015,5,27,\"WN\",\"4486\",\"MCO\",\"ISP\",9.00,7.00,0.00,\"\",0.00,148.00,129.00,971.00,,,,,,\n2015,5,27,\"WN\",\"3935\",\"MCO\",\"ROC\",-6.00,-25.00,0.00,\"\",0.00,136.00,126.00,1033.00,,,,,,\n2015,5,27,\"WN\",\"103\",\"MDW\",\"ALB\",8.00,-8.00,0.00,\"\",0.00,99.00,84.00,717.00,,,,,,\n2015,5,27,\"WN\",\"1461\",\"MDW\",\"ALB\",37.00,55.00,0.00,\"\",0.00,133.00,119.00,717.00,0.00,0.00,55.00,0.00,0.00,\n2015,5,27,\"WN\",\"134\",\"MDW\",\"BUF\",-2.00,-13.00,0.00,\"\",0.00,79.00,64.00,468.00,,,,,,\n2015,5,27,\"WN\",\"615\",\"MDW\",\"BUF\",23.00,10.00,0.00,\"\",0.00,77.00,64.00,468.00,,,,,,\n2015,5,27,\"WN\",\"2241\",\"MDW\",\"BUF\",3.00,-13.00,0.00,\"\",0.00,84.00,65.00,468.00,,,,,,\n2015,5,27,\"WN\",\"178\",\"MDW\",\"LGA\",-3.00,-18.00,0.00,\"\",0.00,115.00,96.00,725.00,,,,,,\n2015,5,27,\"WN\",\"682\",\"MDW\",\"LGA\",149.00,,0.00,\"\",1.00,,,725.00,,,,,,\n2015,5,27,\"WN\",\"803\",\"MDW\",\"LGA\",,,1.00,\"B\",0.00,,,725.00,,,,,,\n2015,5,27,\"WN\",\"1713\",\"MDW\",\"LGA\",-4.00,-11.00,0.00,\"\",0.00,118.00,105.00,725.00,,,,,,\n2015,5,27,\"WN\",\"1945\",\"MDW\",\"LGA\",203.00,186.00,0.00,\"\",0.00,113.00,97.00,725.00,0.00,159.00,0.00,0.00,27.00,\n2015,5,27,\"WN\",\"2778\",\"MDW\",\"LGA\",-1.00,-7.00,0.00,\"\",0.00,119.00,101.00,725.00,,,,,,\n2015,5,27,\"WN\",\"4365\",\"MDW\",\"LGA\",95.00,85.00,0.00,\"\",0.00,120.00,94.00,725.00,80.00,0.00,0.00,0.00,5.00,\n2015,5,27,\"WN\",\"292\",\"MDW\",\"ROC\",6.00,2.00,0.00,\"\",0.00,86.00,68.00,523.00,,,,,,\n2015,5,27,\"WN\",\"2229\",\"MDW\",\"ROC\",14.00,10.00,0.00,\"\",0.00,91.00,76.00,523.00,,,,,,\n2015,5,27,\"WN\",\"824\",\"DEN\",\"LGA\",97.00,73.00,0.00,\"\",0.00,211.00,191.00,1620.00,0.00,0.00,67.00,0.00,6.00,\n2015,5,27,\"WN\",\"1370\",\"DEN\",\"LGA\",123.00,92.00,0.00,\"\",0.00,204.00,190.00,1620.00,0.00,0.00,92.00,0.00,0.00,\n2015,5,27,\"WN\",\"1898\",\"FLL\",\"ALB\",-3.00,9.00,0.00,\"\",0.00,192.00,150.00,1204.00,,,,,,\n2015,5,27,\"WN\",\"4643\",\"FLL\",\"BUF\",6.00,-11.00,0.00,\"\",0.00,168.00,145.00,1166.00,,,,,,\n2015,5,27,\"WN\",\"28\",\"FLL\",\"ISP\",53.00,37.00,0.00,\"\",0.00,159.00,142.00,1092.00,7.00,0.00,0.00,0.00,30.00,\n2015,5,27,\"WN\",\"4640\",\"FLL\",\"ISP\",-4.00,-14.00,0.00,\"\",0.00,160.00,146.00,1092.00,,,,,,\n2015,5,27,\"WN\",\"299\",\"HOU\",\"LGA\",42.00,31.00,0.00,\"\",0.00,199.00,175.00,1428.00,0.00,0.00,0.00,0.00,31.00,\n2015,5,27,\"WN\",\"536\",\"HOU\",\"LGA\",44.00,40.00,0.00,\"\",0.00,201.00,180.00,1428.00,10.00,0.00,0.00,0.00,30.00,\n2015,5,27,\"WN\",\"1163\",\"HOU\",\"LGA\",37.00,65.00,0.00,\"\",0.00,238.00,186.00,1428.00,0.00,37.00,28.00,0.00,0.00,\n2015,5,27,\"WN\",\"12\",\"STL\",\"LGA\",73.00,85.00,0.00,\"\",0.00,157.00,125.00,888.00,0.00,0.00,53.00,0.00,32.00,\n2015,5,27,\"WN\",\"1194\",\"STL\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,135.00,121.00,888.00,,,,,,\n2015,5,27,\"WN\",\"1986\",\"STL\",\"LGA\",,,1.00,\"A\",0.00,,,888.00,,,,,,\n2015,5,27,\"WN\",\"854\",\"TPA\",\"ALB\",8.00,-7.00,0.00,\"\",0.00,155.00,143.00,1130.00,,,,,,\n2015,5,27,\"WN\",\"127\",\"TPA\",\"BUF\",-5.00,-17.00,0.00,\"\",0.00,143.00,131.00,1053.00,,,,,,\n2015,5,27,\"WN\",\"2160\",\"TPA\",\"BUF\",-7.00,-12.00,0.00,\"\",0.00,150.00,135.00,1053.00,,,,,,\n2015,5,27,\"WN\",\"2423\",\"TPA\",\"ISP\",17.00,7.00,0.00,\"\",0.00,145.00,133.00,1034.00,,,,,,\n2015,5,27,\"WN\",\"4390\",\"TPA\",\"ISP\",-2.00,-19.00,0.00,\"\",0.00,148.00,135.00,1034.00,,,,,,\n2015,5,27,\"WN\",\"719\",\"TPA\",\"ROC\",4.00,-7.00,0.00,\"\",0.00,149.00,134.00,1079.00,,,,,,\n2015,5,28,\"WN\",\"223\",\"ALB\",\"BWI\",1.00,-14.00,0.00,\"\",0.00,65.00,52.00,289.00,,,,,,\n2015,5,28,\"WN\",\"752\",\"ALB\",\"BWI\",0.00,-13.00,0.00,\"\",0.00,67.00,53.00,289.00,,,,,,\n2015,5,28,\"WN\",\"854\",\"ALB\",\"BWI\",-3.00,-15.00,0.00,\"\",0.00,63.00,51.00,289.00,,,,,,\n2015,5,28,\"WN\",\"1011\",\"ALB\",\"BWI\",-3.00,-11.00,0.00,\"\",0.00,72.00,56.00,289.00,,,,,,\n2015,5,28,\"WN\",\"3294\",\"ALB\",\"BWI\",-6.00,-25.00,0.00,\"\",0.00,66.00,52.00,289.00,,,,,,\n2015,5,28,\"WN\",\"3917\",\"ALB\",\"BWI\",-3.00,-7.00,0.00,\"\",0.00,76.00,56.00,289.00,,,,,,\n2015,5,28,\"WN\",\"1987\",\"ALB\",\"FLL\",-4.00,-10.00,0.00,\"\",0.00,184.00,168.00,1204.00,,,,,,\n2015,5,28,\"WN\",\"346\",\"ALB\",\"LAS\",167.00,156.00,0.00,\"\",0.00,319.00,305.00,2237.00,0.00,0.00,0.00,0.00,156.00,\n2015,5,28,\"WN\",\"3919\",\"ALB\",\"MCO\",-5.00,-11.00,0.00,\"\",0.00,169.00,154.00,1073.00,,,,,,\n2015,5,28,\"WN\",\"4362\",\"ALB\",\"MCO\",-5.00,-8.00,0.00,\"\",0.00,172.00,152.00,1073.00,,,,,,\n2015,5,28,\"WN\",\"1550\",\"ALB\",\"MDW\",1.00,-16.00,0.00,\"\",0.00,118.00,106.00,717.00,,,,,,\n2015,5,28,\"WN\",\"4985\",\"ALB\",\"MDW\",-4.00,-8.00,0.00,\"\",0.00,131.00,110.00,717.00,,,,,,\n2015,5,28,\"WN\",\"3650\",\"ALB\",\"TPA\",-4.00,-23.00,0.00,\"\",0.00,166.00,153.00,1130.00,,,,,,\n2015,5,28,\"WN\",\"815\",\"ATL\",\"LGA\",2.00,-23.00,0.00,\"\",0.00,115.00,100.00,762.00,,,,,,\n2015,5,28,\"WN\",\"1182\",\"ATL\",\"LGA\",20.00,13.00,0.00,\"\",0.00,133.00,105.00,762.00,,,,,,\n2015,5,28,\"WN\",\"2516\",\"ATL\",\"LGA\",-3.00,-23.00,0.00,\"\",0.00,115.00,100.00,762.00,,,,,,\n2015,5,28,\"WN\",\"2659\",\"ATL\",\"LGA\",23.00,12.00,0.00,\"\",0.00,134.00,106.00,762.00,,,,,,\n2015,5,28,\"WN\",\"2850\",\"ATL\",\"LGA\",-1.00,-11.00,0.00,\"\",0.00,125.00,106.00,762.00,,,,,,\n2015,5,28,\"WN\",\"255\",\"BNA\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,122.00,108.00,764.00,,,,,,\n2015,5,28,\"WN\",\"2433\",\"BNA\",\"LGA\",-4.00,-13.00,0.00,\"\",0.00,121.00,107.00,764.00,,,,,,\n2015,5,28,\"WN\",\"2570\",\"BNA\",\"LGA\",19.00,14.00,0.00,\"\",0.00,130.00,113.00,764.00,,,,,,\n2015,5,28,\"WN\",\"381\",\"BUF\",\"BWI\",20.00,11.00,0.00,\"\",0.00,61.00,48.00,281.00,,,,,,\n2015,5,28,\"WN\",\"728\",\"BUF\",\"BWI\",-6.00,-18.00,0.00,\"\",0.00,58.00,49.00,281.00,,,,,,\n2015,5,28,\"WN\",\"842\",\"BUF\",\"BWI\",-4.00,-11.00,0.00,\"\",0.00,68.00,55.00,281.00,,,,,,\n2015,5,28,\"WN\",\"1429\",\"BUF\",\"BWI\",-3.00,-29.00,0.00,\"\",0.00,59.00,47.00,281.00,,,,,,\n2015,5,28,\"WN\",\"1528\",\"BUF\",\"BWI\",-3.00,-8.00,0.00,\"\",0.00,70.00,45.00,281.00,,,,,,\n2015,5,28,\"WN\",\"2423\",\"BUF\",\"BWI\",-5.00,-15.00,0.00,\"\",0.00,65.00,50.00,281.00,,,,,,\n2015,5,28,\"WN\",\"1785\",\"BUF\",\"FLL\",-7.00,-3.00,0.00,\"\",0.00,189.00,160.00,1166.00,,,,,,\n2015,5,28,\"WN\",\"361\",\"BUF\",\"LAS\",-3.00,-32.00,0.00,\"\",0.00,271.00,257.00,1986.00,,,,,,\n2015,5,28,\"WN\",\"615\",\"BUF\",\"LAS\",-5.00,-4.00,0.00,\"\",0.00,291.00,274.00,1986.00,,,,,,\n2015,5,28,\"WN\",\"134\",\"BUF\",\"MCO\",-2.00,-18.00,0.00,\"\",0.00,144.00,133.00,1011.00,,,,,,\n2015,5,28,\"WN\",\"674\",\"BUF\",\"MCO\",0.00,-9.00,0.00,\"\",0.00,151.00,134.00,1011.00,,,,,,\n2015,5,28,\"WN\",\"854\",\"BUF\",\"MCO\",-5.00,-24.00,0.00,\"\",0.00,141.00,131.00,1011.00,,,,,,\n2015,5,28,\"WN\",\"2141\",\"BUF\",\"MCO\",-7.00,-17.00,0.00,\"\",0.00,150.00,134.00,1011.00,,,,,,\n2015,5,28,\"WN\",\"717\",\"BUF\",\"MDW\",-8.00,-26.00,0.00,\"\",0.00,92.00,73.00,468.00,,,,,,\n2015,5,28,\"WN\",\"2023\",\"BUF\",\"MDW\",-5.00,-26.00,0.00,\"\",0.00,84.00,73.00,468.00,,,,,,\n2015,5,28,\"WN\",\"2632\",\"BUF\",\"MDW\",1.00,-9.00,0.00,\"\",0.00,90.00,76.00,468.00,,,,,,\n2015,5,28,\"WN\",\"328\",\"BUF\",\"PHX\",0.00,-20.00,0.00,\"\",0.00,270.00,258.00,1912.00,,,,,,\n2015,5,28,\"WN\",\"984\",\"BUF\",\"TPA\",-5.00,-18.00,0.00,\"\",0.00,152.00,140.00,1053.00,,,,,,\n2015,5,28,\"WN\",\"2824\",\"BUF\",\"TPA\",-3.00,-16.00,0.00,\"\",0.00,152.00,141.00,1053.00,,,,,,\n2015,5,28,\"WN\",\"334\",\"BWI\",\"ALB\",2.00,-1.00,0.00,\"\",0.00,72.00,54.00,289.00,,,,,,\n2015,5,28,\"WN\",\"346\",\"BWI\",\"ALB\",161.00,169.00,0.00,\"\",0.00,73.00,53.00,289.00,160.00,0.00,8.00,0.00,1.00,\n2015,5,28,\"WN\",\"598\",\"BWI\",\"ALB\",8.00,-2.00,0.00,\"\",0.00,60.00,49.00,289.00,,,,,,\n2015,5,28,\"WN\",\"1269\",\"BWI\",\"ALB\",-1.00,8.00,0.00,\"\",0.00,84.00,53.00,289.00,,,,,,\n2015,5,28,\"WN\",\"3033\",\"BWI\",\"ALB\",-3.00,4.00,0.00,\"\",0.00,77.00,53.00,289.00,,,,,,\n2015,5,28,\"WN\",\"3919\",\"BWI\",\"ALB\",1.00,-4.00,0.00,\"\",0.00,65.00,53.00,289.00,,,,,,\n2015,5,28,\"WN\",\"328\",\"BWI\",\"BUF\",-1.00,-7.00,0.00,\"\",0.00,59.00,45.00,281.00,,,,,,\n2015,5,28,\"WN\",\"572\",\"BWI\",\"BUF\",36.00,25.00,0.00,\"\",0.00,59.00,45.00,281.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"WN\",\"819\",\"BWI\",\"BUF\",-4.00,-6.00,0.00,\"\",0.00,63.00,46.00,281.00,,,,,,\n2015,5,28,\"WN\",\"854\",\"BWI\",\"BUF\",-4.00,-18.00,0.00,\"\",0.00,56.00,44.00,281.00,,,,,,\n2015,5,28,\"WN\",\"1350\",\"BWI\",\"BUF\",-5.00,-12.00,0.00,\"\",0.00,58.00,46.00,281.00,,,,,,\n2015,5,28,\"WN\",\"1900\",\"BWI\",\"BUF\",4.00,-9.00,0.00,\"\",0.00,62.00,44.00,281.00,,,,,,\n2015,5,28,\"WN\",\"232\",\"BWI\",\"ISP\",14.00,6.00,0.00,\"\",0.00,57.00,43.00,220.00,,,,,,\n2015,5,28,\"WN\",\"752\",\"BWI\",\"ISP\",-5.00,-1.00,0.00,\"\",0.00,64.00,46.00,220.00,,,,,,\n2015,5,28,\"WN\",\"842\",\"BWI\",\"ISP\",-5.00,-9.00,0.00,\"\",0.00,61.00,45.00,220.00,,,,,,\n2015,5,28,\"WN\",\"2452\",\"BWI\",\"ISP\",-2.00,-14.00,0.00,\"\",0.00,58.00,45.00,220.00,,,,,,\n2015,5,28,\"WN\",\"4017\",\"BWI\",\"ISP\",6.00,18.00,0.00,\"\",0.00,72.00,50.00,220.00,1.00,0.00,12.00,0.00,5.00,\n2015,5,28,\"WN\",\"597\",\"BWI\",\"ROC\",-7.00,0.00,0.00,\"\",0.00,77.00,49.00,277.00,,,,,,\n2015,5,28,\"WN\",\"3564\",\"BWI\",\"ROC\",-1.00,-9.00,0.00,\"\",0.00,62.00,47.00,277.00,,,,,,\n2015,5,28,\"WN\",\"914\",\"CAK\",\"LGA\",-6.00,-17.00,0.00,\"\",0.00,79.00,66.00,397.00,,,,,,\n2015,5,28,\"WN\",\"4728\",\"CAK\",\"LGA\",82.00,69.00,0.00,\"\",0.00,77.00,60.00,397.00,69.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"WN\",\"2454\",\"PHX\",\"BUF\",10.00,-2.00,0.00,\"\",0.00,233.00,222.00,1912.00,,,,,,\n2015,5,27,\"WN\",\"2851\",\"PBI\",\"ISP\",-5.00,-7.00,0.00,\"\",0.00,158.00,143.00,1052.00,,,,,,\n2015,5,27,\"WN\",\"4818\",\"PBI\",\"ISP\",-7.00,-14.00,0.00,\"\",0.00,153.00,141.00,1052.00,,,,,,\n2015,5,27,\"WN\",\"2454\",\"PHX\",\"BUF\",-4.00,-17.00,0.00,\"\",0.00,232.00,220.00,1912.00,,,,,,\n2015,5,27,\"WN\",\"719\",\"ROC\",\"BWI\",-2.00,-15.00,0.00,\"\",0.00,57.00,47.00,277.00,,,,,,\n2015,5,27,\"WN\",\"2749\",\"ROC\",\"BWI\",-4.00,-20.00,0.00,\"\",0.00,64.00,50.00,277.00,,,,,,\n2015,5,27,\"WN\",\"597\",\"ROC\",\"MCO\",-5.00,-15.00,0.00,\"\",0.00,150.00,139.00,1033.00,,,,,,\n2015,5,27,\"WN\",\"747\",\"ROC\",\"MDW\",16.00,4.00,0.00,\"\",0.00,98.00,86.00,523.00,,,,,,\n2015,5,27,\"WN\",\"4712\",\"ROC\",\"MDW\",0.00,18.00,0.00,\"\",0.00,123.00,92.00,523.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,27,\"WN\",\"4655\",\"ROC\",\"TPA\",-6.00,-4.00,0.00,\"\",0.00,167.00,155.00,1079.00,,,,,,\n2015,5,28,\"WN\",\"178\",\"LGA\",\"ATL\",2.00,32.00,0.00,\"\",0.00,190.00,124.00,762.00,0.00,0.00,32.00,0.00,0.00,\n2015,5,28,\"WN\",\"2939\",\"LGA\",\"ATL\",-3.00,-18.00,0.00,\"\",0.00,155.00,109.00,762.00,,,,,,\n2015,5,28,\"WN\",\"3133\",\"LGA\",\"ATL\",31.00,1.00,0.00,\"\",0.00,130.00,109.00,762.00,,,,,,\n2015,5,28,\"WN\",\"3391\",\"LGA\",\"ATL\",11.00,5.00,0.00,\"\",0.00,154.00,108.00,762.00,,,,,,\n2015,5,28,\"WN\",\"4728\",\"LGA\",\"ATL\",63.00,38.00,0.00,\"\",0.00,150.00,118.00,762.00,0.00,0.00,0.00,0.00,38.00,\n2015,5,28,\"WN\",\"914\",\"LGA\",\"BNA\",-5.00,-12.00,0.00,\"\",0.00,143.00,110.00,764.00,,,,,,\n2015,5,28,\"WN\",\"1208\",\"LGA\",\"BNA\",-4.00,-22.00,0.00,\"\",0.00,137.00,111.00,764.00,,,,,,\n2015,5,28,\"WN\",\"1370\",\"LGA\",\"BNA\",-3.00,-5.00,0.00,\"\",0.00,163.00,108.00,764.00,,,,,,\n2015,5,28,\"WN\",\"202\",\"LGA\",\"CAK\",-1.00,-5.00,0.00,\"\",0.00,96.00,66.00,397.00,,,,,,\n2015,5,28,\"WN\",\"534\",\"LGA\",\"CAK\",-3.00,0.00,0.00,\"\",0.00,103.00,64.00,397.00,,,,,,\n2015,5,28,\"WN\",\"255\",\"LGA\",\"DAL\",-1.00,-24.00,0.00,\"\",0.00,222.00,189.00,1381.00,,,,,,\n2015,5,28,\"WN\",\"431\",\"LGA\",\"DAL\",-1.00,-19.00,0.00,\"\",0.00,222.00,192.00,1381.00,,,,,,\n2015,5,28,\"WN\",\"2347\",\"LGA\",\"DAL\",63.00,32.00,0.00,\"\",0.00,214.00,181.00,1381.00,10.00,0.00,0.00,0.00,22.00,\n2015,5,28,\"WN\",\"3489\",\"LGA\",\"DAL\",-2.00,-28.00,0.00,\"\",0.00,204.00,187.00,1381.00,,,,,,\n2015,5,28,\"WN\",\"12\",\"LGA\",\"DEN\",2.00,-21.00,0.00,\"\",0.00,252.00,231.00,1620.00,,,,,,\n2015,5,28,\"WN\",\"165\",\"LGA\",\"DEN\",-2.00,-10.00,0.00,\"\",0.00,267.00,225.00,1620.00,,,,,,\n2015,5,28,\"WN\",\"682\",\"LGA\",\"HOU\",-5.00,-30.00,0.00,\"\",0.00,215.00,201.00,1428.00,,,,,,\n2015,5,28,\"WN\",\"2778\",\"LGA\",\"HOU\",-1.00,-28.00,0.00,\"\",0.00,223.00,196.00,1428.00,,,,,,\n2015,5,28,\"WN\",\"3845\",\"LGA\",\"HOU\",23.00,-3.00,0.00,\"\",0.00,214.00,195.00,1428.00,,,,,,\n2015,5,28,\"WN\",\"413\",\"LGA\",\"MCI\",18.00,7.00,0.00,\"\",0.00,189.00,153.00,1107.00,,,,,,\n2015,5,28,\"WN\",\"479\",\"LGA\",\"MDW\",-7.00,-11.00,0.00,\"\",0.00,141.00,101.00,725.00,,,,,,\n2015,5,28,\"WN\",\"777\",\"LGA\",\"MDW\",-2.00,-29.00,0.00,\"\",0.00,128.00,109.00,725.00,,,,,,\n2015,5,28,\"WN\",\"868\",\"LGA\",\"MDW\",12.00,-12.00,0.00,\"\",0.00,136.00,109.00,725.00,,,,,,\n2015,5,28,\"WN\",\"2516\",\"LGA\",\"MDW\",-3.00,-34.00,0.00,\"\",0.00,129.00,112.00,725.00,,,,,,\n2015,5,28,\"WN\",\"2529\",\"LGA\",\"MDW\",-9.00,-16.00,0.00,\"\",0.00,143.00,109.00,725.00,,,,,,\n2015,5,28,\"WN\",\"2659\",\"LGA\",\"MDW\",22.00,12.00,0.00,\"\",0.00,145.00,108.00,725.00,,,,,,\n2015,5,28,\"WN\",\"4123\",\"LGA\",\"MDW\",0.00,-5.00,0.00,\"\",0.00,145.00,117.00,725.00,,,,,,\n2015,5,28,\"WN\",\"1344\",\"LGA\",\"MKE\",39.00,37.00,0.00,\"\",0.00,148.00,115.00,738.00,6.00,0.00,0.00,0.00,31.00,\n2015,5,28,\"WN\",\"2433\",\"LGA\",\"MKE\",-2.00,-25.00,0.00,\"\",0.00,132.00,106.00,738.00,,,,,,\n2015,5,28,\"WN\",\"4379\",\"LGA\",\"MKE\",10.00,15.00,0.00,\"\",0.00,150.00,110.00,738.00,10.00,0.00,5.00,0.00,0.00,\n2015,5,28,\"WN\",\"536\",\"LGA\",\"STL\",7.00,-29.00,0.00,\"\",0.00,144.00,122.00,888.00,,,,,,\n2015,5,28,\"WN\",\"2168\",\"LGA\",\"STL\",-3.00,-15.00,0.00,\"\",0.00,148.00,132.00,888.00,,,,,,\n2015,5,28,\"WN\",\"4571\",\"LGA\",\"STL\",12.00,-11.00,0.00,\"\",0.00,147.00,125.00,888.00,,,,,,\n2015,5,28,\"WN\",\"333\",\"MCI\",\"LGA\",0.00,-12.00,0.00,\"\",0.00,158.00,144.00,1107.00,,,,,,\n2015,5,28,\"WN\",\"1011\",\"MCO\",\"ALB\",-7.00,-22.00,0.00,\"\",0.00,150.00,138.00,1073.00,,,,,,\n2015,5,28,\"WN\",\"2849\",\"MCO\",\"ALB\",-3.00,-7.00,0.00,\"\",0.00,156.00,137.00,1073.00,,,,,,\n2015,5,28,\"WN\",\"728\",\"MCO\",\"BUF\",7.00,-15.00,0.00,\"\",0.00,133.00,124.00,1011.00,,,,,,\n2015,5,28,\"WN\",\"801\",\"MCO\",\"BUF\",37.00,28.00,0.00,\"\",0.00,146.00,129.00,1011.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,28,\"WN\",\"2423\",\"MCO\",\"BUF\",-3.00,-16.00,0.00,\"\",0.00,142.00,130.00,1011.00,,,,,,\n2015,5,28,\"WN\",\"2632\",\"MCO\",\"BUF\",-1.00,-8.00,0.00,\"\",0.00,148.00,125.00,1011.00,,,,,,\n2015,5,28,\"WN\",\"293\",\"MCO\",\"ISP\",-1.00,-11.00,0.00,\"\",0.00,145.00,129.00,971.00,,,,,,\n2015,5,28,\"WN\",\"325\",\"MCO\",\"ISP\",6.00,14.00,0.00,\"\",0.00,158.00,137.00,971.00,,,,,,\n2015,5,28,\"WN\",\"426\",\"MCO\",\"ISP\",-4.00,-13.00,0.00,\"\",0.00,141.00,128.00,971.00,,,,,,\n2015,5,28,\"WN\",\"4486\",\"MCO\",\"ISP\",-5.00,-5.00,0.00,\"\",0.00,150.00,134.00,971.00,,,,,,\n2015,5,28,\"WN\",\"3935\",\"MCO\",\"ROC\",31.00,17.00,0.00,\"\",0.00,141.00,124.00,1033.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"WN\",\"103\",\"MDW\",\"ALB\",16.00,0.00,0.00,\"\",0.00,99.00,87.00,717.00,,,,,,\n2015,5,28,\"WN\",\"1461\",\"MDW\",\"ALB\",3.00,-5.00,0.00,\"\",0.00,107.00,90.00,717.00,,,,,,\n2015,5,28,\"WN\",\"134\",\"MDW\",\"BUF\",-1.00,-13.00,0.00,\"\",0.00,78.00,64.00,468.00,,,,,,\n2015,5,28,\"WN\",\"615\",\"MDW\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,80.00,66.00,468.00,,,,,,\n2015,5,28,\"WN\",\"2241\",\"MDW\",\"BUF\",0.00,-22.00,0.00,\"\",0.00,78.00,63.00,468.00,,,,,,\n2015,5,28,\"WN\",\"178\",\"MDW\",\"LGA\",10.00,-8.00,0.00,\"\",0.00,112.00,100.00,725.00,,,,,,\n2015,5,28,\"WN\",\"682\",\"MDW\",\"LGA\",-3.00,-13.00,0.00,\"\",0.00,115.00,97.00,725.00,,,,,,\n2015,5,28,\"WN\",\"803\",\"MDW\",\"LGA\",22.00,5.00,0.00,\"\",0.00,113.00,96.00,725.00,,,,,,\n2015,5,28,\"WN\",\"1713\",\"MDW\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,111.00,98.00,725.00,,,,,,\n2015,5,28,\"WN\",\"1945\",\"MDW\",\"LGA\",-1.00,0.00,0.00,\"\",0.00,131.00,95.00,725.00,,,,,,\n2015,5,28,\"WN\",\"2778\",\"MDW\",\"LGA\",5.00,-6.00,0.00,\"\",0.00,114.00,98.00,725.00,,,,,,\n2015,5,28,\"WN\",\"4365\",\"MDW\",\"LGA\",-2.00,-16.00,0.00,\"\",0.00,116.00,95.00,725.00,,,,,,\n2015,5,28,\"WN\",\"292\",\"MDW\",\"ROC\",13.00,2.00,0.00,\"\",0.00,79.00,68.00,523.00,,,,,,\n2015,5,28,\"WN\",\"2229\",\"MDW\",\"ROC\",-4.00,-8.00,0.00,\"\",0.00,91.00,67.00,523.00,,,,,,\n2015,5,28,\"WN\",\"202\",\"MKE\",\"LGA\",-3.00,-11.00,0.00,\"\",0.00,127.00,109.00,738.00,,,,,,\n2015,5,28,\"WN\",\"1208\",\"MKE\",\"LGA\",-3.00,-21.00,0.00,\"\",0.00,117.00,99.00,738.00,,,,,,\n2015,5,28,\"WN\",\"3391\",\"MKE\",\"LGA\",17.00,2.00,0.00,\"\",0.00,115.00,100.00,738.00,,,,,,\n2015,5,28,\"WN\",\"691\",\"DAL\",\"LGA\",9.00,42.00,0.00,\"\",0.00,238.00,193.00,1381.00,9.00,0.00,33.00,0.00,0.00,\n2015,5,28,\"WN\",\"1214\",\"DAL\",\"LGA\",10.00,33.00,0.00,\"\",0.00,228.00,194.00,1381.00,10.00,0.00,23.00,0.00,0.00,\n2015,5,28,\"WN\",\"2141\",\"DAL\",\"LGA\",13.00,14.00,0.00,\"\",0.00,206.00,177.00,1381.00,,,,,,\n2015,5,28,\"WN\",\"2234\",\"DAL\",\"LGA\",-6.00,-14.00,0.00,\"\",0.00,197.00,174.00,1381.00,,,,,,\n2015,5,28,\"WN\",\"824\",\"DEN\",\"LGA\",11.00,4.00,0.00,\"\",0.00,228.00,197.00,1620.00,,,,,,\n2015,5,28,\"WN\",\"1370\",\"DEN\",\"LGA\",-4.00,-33.00,0.00,\"\",0.00,206.00,189.00,1620.00,,,,,,\n2015,5,28,\"WN\",\"1898\",\"FLL\",\"ALB\",-5.00,-10.00,0.00,\"\",0.00,175.00,152.00,1204.00,,,,,,\n2015,5,28,\"WN\",\"4643\",\"FLL\",\"BUF\",-5.00,-20.00,0.00,\"\",0.00,170.00,151.00,1166.00,,,,,,\n2015,5,28,\"WN\",\"28\",\"FLL\",\"ISP\",27.00,15.00,0.00,\"\",0.00,163.00,146.00,1092.00,4.00,0.00,0.00,0.00,11.00,\n2015,5,28,\"WN\",\"4640\",\"FLL\",\"ISP\",-4.00,-6.00,0.00,\"\",0.00,168.00,147.00,1092.00,,,,,,\n2015,5,28,\"WN\",\"299\",\"HOU\",\"LGA\",-6.00,-19.00,0.00,\"\",0.00,197.00,178.00,1428.00,,,,,,\n2015,5,28,\"WN\",\"536\",\"HOU\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,204.00,188.00,1428.00,,,,,,\n2015,5,28,\"WN\",\"1163\",\"HOU\",\"LGA\",121.00,,0.00,\"\",1.00,,,1428.00,,,,,,\n2015,5,28,\"WN\",\"325\",\"ISP\",\"BWI\",17.00,15.00,0.00,\"\",0.00,68.00,48.00,220.00,3.00,0.00,0.00,0.00,12.00,\n2015,5,28,\"WN\",\"580\",\"ISP\",\"BWI\",-2.00,-16.00,0.00,\"\",0.00,61.00,51.00,220.00,,,,,,\n2015,5,28,\"WN\",\"667\",\"ISP\",\"BWI\",-5.00,-7.00,0.00,\"\",0.00,73.00,46.00,220.00,,,,,,\n2015,5,28,\"WN\",\"2940\",\"ISP\",\"BWI\",6.00,-7.00,0.00,\"\",0.00,62.00,49.00,220.00,,,,,,\n2015,5,28,\"WN\",\"3743\",\"ISP\",\"BWI\",-5.00,-14.00,0.00,\"\",0.00,66.00,51.00,220.00,,,,,,\n2015,5,28,\"WN\",\"752\",\"ISP\",\"FLL\",1.00,-21.00,0.00,\"\",0.00,163.00,153.00,1092.00,,,,,,\n2015,5,28,\"WN\",\"4554\",\"ISP\",\"FLL\",-7.00,-8.00,0.00,\"\",0.00,179.00,153.00,1092.00,,,,,,\n2015,5,28,\"WN\",\"663\",\"ISP\",\"MCO\",-6.00,-16.00,0.00,\"\",0.00,150.00,138.00,971.00,,,,,,\n2015,5,28,\"WN\",\"4017\",\"ISP\",\"MCO\",20.00,0.00,0.00,\"\",0.00,145.00,132.00,971.00,,,,,,\n2015,5,28,\"WN\",\"4575\",\"ISP\",\"MCO\",-5.00,-15.00,0.00,\"\",0.00,155.00,138.00,971.00,,,,,,\n2015,5,28,\"WN\",\"4910\",\"ISP\",\"MCO\",-3.00,-14.00,0.00,\"\",0.00,159.00,136.00,971.00,,,,,,\n2015,5,28,\"WN\",\"4479\",\"ISP\",\"PBI\",5.00,-10.00,0.00,\"\",0.00,155.00,143.00,1052.00,,,,,,\n2015,5,28,\"WN\",\"4729\",\"ISP\",\"PBI\",-3.00,-12.00,0.00,\"\",0.00,161.00,144.00,1052.00,,,,,,\n2015,5,28,\"WN\",\"208\",\"ISP\",\"TPA\",-5.00,-23.00,0.00,\"\",0.00,152.00,140.00,1034.00,,,,,,\n2015,5,28,\"WN\",\"4907\",\"ISP\",\"TPA\",-5.00,-18.00,0.00,\"\",0.00,167.00,151.00,1034.00,,,,,,\n2015,5,28,\"WN\",\"2202\",\"LAS\",\"ALB\",-1.00,-4.00,0.00,\"\",0.00,282.00,253.00,2237.00,,,,,,\n2015,5,28,\"WN\",\"2023\",\"LAS\",\"BUF\",-1.00,-16.00,0.00,\"\",0.00,250.00,230.00,1986.00,,,,,,\n2015,5,28,\"WN\",\"2528\",\"LAS\",\"BUF\",-3.00,-20.00,0.00,\"\",0.00,238.00,225.00,1986.00,,,,,,\n2015,5,29,\"WN\",\"824\",\"DEN\",\"LGA\",-3.00,-20.00,0.00,\"\",0.00,218.00,198.00,1620.00,,,,,,\n2015,5,29,\"WN\",\"1370\",\"DEN\",\"LGA\",-1.00,-28.00,0.00,\"\",0.00,208.00,192.00,1620.00,,,,,,\n2015,5,29,\"WN\",\"1898\",\"FLL\",\"ALB\",-6.00,-12.00,0.00,\"\",0.00,174.00,158.00,1204.00,,,,,,\n2015,5,29,\"WN\",\"4643\",\"FLL\",\"BUF\",-5.00,-20.00,0.00,\"\",0.00,170.00,151.00,1166.00,,,,,,\n2015,5,29,\"WN\",\"28\",\"FLL\",\"ISP\",105.00,98.00,0.00,\"\",0.00,168.00,152.00,1092.00,90.00,0.00,0.00,0.00,8.00,\n2015,5,29,\"WN\",\"4640\",\"FLL\",\"ISP\",-3.00,-7.00,0.00,\"\",0.00,166.00,147.00,1092.00,,,,,,\n2015,5,29,\"WN\",\"299\",\"HOU\",\"LGA\",47.00,59.00,0.00,\"\",0.00,222.00,187.00,1428.00,47.00,0.00,12.00,0.00,0.00,\n2015,5,29,\"WN\",\"536\",\"HOU\",\"LGA\",7.00,16.00,0.00,\"\",0.00,214.00,187.00,1428.00,7.00,0.00,9.00,0.00,0.00,\n2015,5,29,\"WN\",\"1163\",\"HOU\",\"LGA\",-2.00,-2.00,0.00,\"\",0.00,210.00,193.00,1428.00,,,,,,\n2015,5,29,\"WN\",\"325\",\"ISP\",\"BWI\",19.00,18.00,0.00,\"\",0.00,69.00,52.00,220.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,29,\"WN\",\"580\",\"ISP\",\"BWI\",-2.00,-8.00,0.00,\"\",0.00,69.00,55.00,220.00,,,,,,\n2015,5,29,\"WN\",\"667\",\"ISP\",\"BWI\",1.00,-6.00,0.00,\"\",0.00,68.00,54.00,220.00,,,,,,\n2015,5,29,\"WN\",\"2940\",\"ISP\",\"BWI\",167.00,160.00,0.00,\"\",0.00,68.00,56.00,220.00,1.00,0.00,0.00,0.00,159.00,\n2015,5,29,\"WN\",\"3743\",\"ISP\",\"BWI\",-5.00,-8.00,0.00,\"\",0.00,72.00,53.00,220.00,,,,,,\n2015,5,29,\"WN\",\"752\",\"ISP\",\"FLL\",-3.00,-14.00,0.00,\"\",0.00,174.00,145.00,1092.00,,,,,,\n2015,5,29,\"WN\",\"4554\",\"ISP\",\"FLL\",-5.00,-17.00,0.00,\"\",0.00,168.00,145.00,1092.00,,,,,,\n2015,5,29,\"WN\",\"663\",\"ISP\",\"MCO\",-5.00,-17.00,0.00,\"\",0.00,148.00,134.00,971.00,,,,,,\n2015,5,29,\"WN\",\"4017\",\"ISP\",\"MCO\",108.00,85.00,0.00,\"\",0.00,142.00,129.00,971.00,0.00,0.00,0.00,0.00,85.00,\n2015,5,29,\"WN\",\"4575\",\"ISP\",\"MCO\",-6.00,-28.00,0.00,\"\",0.00,143.00,129.00,971.00,,,,,,\n2015,5,29,\"WN\",\"4910\",\"ISP\",\"MCO\",-3.00,-28.00,0.00,\"\",0.00,145.00,126.00,971.00,,,,,,\n2015,5,29,\"WN\",\"4479\",\"ISP\",\"PBI\",-3.00,-21.00,0.00,\"\",0.00,152.00,137.00,1052.00,,,,,,\n2015,5,29,\"WN\",\"4729\",\"ISP\",\"PBI\",-6.00,-23.00,0.00,\"\",0.00,153.00,139.00,1052.00,,,,,,\n2015,5,29,\"WN\",\"208\",\"ISP\",\"TPA\",-5.00,-14.00,0.00,\"\",0.00,161.00,146.00,1034.00,,,,,,\n2015,5,29,\"WN\",\"4907\",\"ISP\",\"TPA\",1.00,-16.00,0.00,\"\",0.00,163.00,148.00,1034.00,,,,,,\n2015,5,29,\"WN\",\"2202\",\"LAS\",\"ALB\",5.00,3.00,0.00,\"\",0.00,283.00,256.00,2237.00,,,,,,\n2015,5,29,\"WN\",\"2023\",\"LAS\",\"BUF\",13.00,-7.00,0.00,\"\",0.00,245.00,225.00,1986.00,,,,,,\n2015,5,29,\"WN\",\"2528\",\"LAS\",\"BUF\",-1.00,-10.00,0.00,\"\",0.00,246.00,229.00,1986.00,,,,,,\n2015,5,28,\"WN\",\"719\",\"ROC\",\"BWI\",-5.00,-18.00,0.00,\"\",0.00,57.00,44.00,277.00,,,,,,\n2015,5,28,\"WN\",\"2749\",\"ROC\",\"BWI\",-5.00,-25.00,0.00,\"\",0.00,60.00,48.00,277.00,,,,,,\n2015,5,28,\"WN\",\"597\",\"ROC\",\"MCO\",-7.00,-9.00,0.00,\"\",0.00,158.00,140.00,1033.00,,,,,,\n2015,5,28,\"WN\",\"747\",\"ROC\",\"MDW\",-2.00,-4.00,0.00,\"\",0.00,108.00,83.00,523.00,,,,,,\n2015,5,28,\"WN\",\"4712\",\"ROC\",\"MDW\",-1.00,-4.00,0.00,\"\",0.00,102.00,85.00,523.00,,,,,,\n2015,5,28,\"WN\",\"4655\",\"ROC\",\"TPA\",9.00,14.00,0.00,\"\",0.00,170.00,147.00,1079.00,,,,,,\n2015,5,28,\"WN\",\"12\",\"STL\",\"LGA\",7.00,-5.00,0.00,\"\",0.00,133.00,116.00,888.00,,,,,,\n2015,5,28,\"WN\",\"1194\",\"STL\",\"LGA\",-4.00,-14.00,0.00,\"\",0.00,135.00,118.00,888.00,,,,,,\n2015,5,28,\"WN\",\"1986\",\"STL\",\"LGA\",7.00,7.00,0.00,\"\",0.00,140.00,119.00,888.00,,,,,,\n2015,5,28,\"WN\",\"854\",\"TPA\",\"ALB\",0.00,-9.00,0.00,\"\",0.00,161.00,146.00,1130.00,,,,,,\n2015,5,28,\"WN\",\"127\",\"TPA\",\"BUF\",10.00,3.00,0.00,\"\",0.00,148.00,133.00,1053.00,,,,,,\n2015,5,28,\"WN\",\"2160\",\"TPA\",\"BUF\",-1.00,-7.00,0.00,\"\",0.00,149.00,136.00,1053.00,,,,,,\n2015,5,28,\"WN\",\"2423\",\"TPA\",\"ISP\",38.00,32.00,0.00,\"\",0.00,149.00,137.00,1034.00,32.00,0.00,0.00,0.00,0.00,\n2015,5,28,\"WN\",\"4390\",\"TPA\",\"ISP\",1.00,-7.00,0.00,\"\",0.00,157.00,135.00,1034.00,,,,,,\n2015,5,28,\"WN\",\"719\",\"TPA\",\"ROC\",-4.00,-7.00,0.00,\"\",0.00,157.00,137.00,1079.00,,,,,,\n2015,5,29,\"WN\",\"728\",\"MCO\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,146.00,134.00,1011.00,,,,,,\n2015,5,29,\"WN\",\"801\",\"MCO\",\"BUF\",11.00,3.00,0.00,\"\",0.00,147.00,131.00,1011.00,,,,,,\n2015,5,29,\"WN\",\"2423\",\"MCO\",\"BUF\",-5.00,-12.00,0.00,\"\",0.00,148.00,132.00,1011.00,,,,,,\n2015,5,29,\"WN\",\"2632\",\"MCO\",\"BUF\",-2.00,-11.00,0.00,\"\",0.00,146.00,131.00,1011.00,,,,,,\n2015,5,29,\"WN\",\"293\",\"MCO\",\"ISP\",-4.00,-10.00,0.00,\"\",0.00,149.00,135.00,971.00,,,,,,\n2015,5,29,\"WN\",\"325\",\"MCO\",\"ISP\",18.00,26.00,0.00,\"\",0.00,158.00,138.00,971.00,18.00,0.00,8.00,0.00,0.00,\n2015,5,29,\"WN\",\"426\",\"MCO\",\"ISP\",-4.00,-5.00,0.00,\"\",0.00,149.00,132.00,971.00,,,,,,\n2015,5,29,\"WN\",\"4486\",\"MCO\",\"ISP\",-5.00,-9.00,0.00,\"\",0.00,146.00,133.00,971.00,,,,,,\n2015,5,29,\"WN\",\"3935\",\"MCO\",\"ROC\",0.00,1.00,0.00,\"\",0.00,156.00,135.00,1033.00,,,,,,\n2015,5,29,\"WN\",\"103\",\"MDW\",\"ALB\",11.00,1.00,0.00,\"\",0.00,105.00,90.00,717.00,,,,,,\n2015,5,29,\"WN\",\"1461\",\"MDW\",\"ALB\",72.00,58.00,0.00,\"\",0.00,101.00,88.00,717.00,32.00,0.00,0.00,0.00,26.00,\n2015,5,29,\"WN\",\"134\",\"MDW\",\"BUF\",-9.00,-20.00,0.00,\"\",0.00,79.00,64.00,468.00,,,,,,\n2015,5,29,\"WN\",\"615\",\"MDW\",\"BUF\",99.00,90.00,0.00,\"\",0.00,81.00,65.00,468.00,11.00,0.00,0.00,0.00,79.00,\n2015,5,29,\"WN\",\"2241\",\"MDW\",\"BUF\",6.00,-13.00,0.00,\"\",0.00,81.00,63.00,468.00,,,,,,\n2015,5,29,\"WN\",\"178\",\"MDW\",\"LGA\",0.00,-16.00,0.00,\"\",0.00,114.00,94.00,725.00,,,,,,\n2015,5,29,\"WN\",\"682\",\"MDW\",\"LGA\",157.00,149.00,0.00,\"\",0.00,117.00,99.00,725.00,0.00,0.00,0.00,0.00,149.00,\n2015,5,29,\"WN\",\"803\",\"MDW\",\"LGA\",19.00,24.00,0.00,\"\",0.00,135.00,96.00,725.00,19.00,0.00,5.00,0.00,0.00,\n2015,5,29,\"WN\",\"1713\",\"MDW\",\"LGA\",-5.00,-20.00,0.00,\"\",0.00,110.00,97.00,725.00,,,,,,\n2015,5,29,\"WN\",\"1945\",\"MDW\",\"LGA\",126.00,124.00,0.00,\"\",0.00,128.00,102.00,725.00,12.00,0.00,0.00,0.00,112.00,\n2015,5,29,\"WN\",\"2778\",\"MDW\",\"LGA\",24.00,48.00,0.00,\"\",0.00,149.00,108.00,725.00,22.00,0.00,24.00,0.00,2.00,\n2015,5,29,\"WN\",\"4365\",\"MDW\",\"LGA\",37.00,22.00,0.00,\"\",0.00,115.00,101.00,725.00,0.00,0.00,0.00,0.00,22.00,\n2015,5,29,\"WN\",\"292\",\"MDW\",\"ROC\",-5.00,9.00,0.00,\"\",0.00,104.00,71.00,523.00,,,,,,\n2015,5,29,\"WN\",\"2229\",\"MDW\",\"ROC\",9.00,21.00,0.00,\"\",0.00,107.00,70.00,523.00,0.00,0.00,12.00,0.00,9.00,\n2015,5,29,\"WN\",\"202\",\"MKE\",\"LGA\",-1.00,-22.00,0.00,\"\",0.00,114.00,101.00,738.00,,,,,,\n2015,5,29,\"WN\",\"1208\",\"MKE\",\"LGA\",89.00,121.00,0.00,\"\",0.00,167.00,106.00,738.00,0.00,0.00,32.00,0.00,89.00,\n2015,5,29,\"WN\",\"3391\",\"MKE\",\"LGA\",-2.00,-14.00,0.00,\"\",0.00,118.00,102.00,738.00,,,,,,\n2015,5,29,\"WN\",\"2851\",\"PBI\",\"ISP\",168.00,166.00,0.00,\"\",0.00,158.00,143.00,1052.00,15.00,0.00,0.00,0.00,151.00,\n2015,5,29,\"WN\",\"4818\",\"PBI\",\"ISP\",1.00,-4.00,0.00,\"\",0.00,155.00,139.00,1052.00,,,,,,\n2015,5,7,\"WN\",\"691\",\"DAL\",\"LGA\",18.00,6.00,0.00,\"\",0.00,193.00,179.00,1381.00,,,,,,\n2015,5,7,\"WN\",\"1214\",\"DAL\",\"LGA\",7.00,1.00,0.00,\"\",0.00,199.00,177.00,1381.00,,,,,,\n2015,5,7,\"WN\",\"2141\",\"DAL\",\"LGA\",7.00,-10.00,0.00,\"\",0.00,188.00,173.00,1381.00,,,,,,\n2015,5,7,\"WN\",\"2234\",\"DAL\",\"LGA\",-7.00,-17.00,0.00,\"\",0.00,195.00,177.00,1381.00,,,,,,\n2015,5,7,\"WN\",\"824\",\"DEN\",\"LGA\",28.00,15.00,0.00,\"\",0.00,222.00,207.00,1620.00,5.00,0.00,0.00,0.00,10.00,\n2015,5,7,\"WN\",\"1370\",\"DEN\",\"LGA\",-2.00,-23.00,0.00,\"\",0.00,214.00,197.00,1620.00,,,,,,\n2015,5,7,\"WN\",\"1898\",\"FLL\",\"ALB\",-2.00,-12.00,0.00,\"\",0.00,170.00,157.00,1204.00,,,,,,\n2015,5,7,\"WN\",\"4643\",\"FLL\",\"BUF\",-5.00,-25.00,0.00,\"\",0.00,165.00,146.00,1166.00,,,,,,\n2015,5,7,\"WN\",\"28\",\"FLL\",\"ISP\",19.00,7.00,0.00,\"\",0.00,163.00,145.00,1092.00,,,,,,\n2015,5,7,\"WN\",\"4640\",\"FLL\",\"ISP\",-7.00,-15.00,0.00,\"\",0.00,162.00,143.00,1092.00,,,,,,\n2015,5,7,\"WN\",\"299\",\"HOU\",\"LGA\",-2.00,-7.00,0.00,\"\",0.00,205.00,188.00,1428.00,,,,,,\n2015,5,7,\"WN\",\"536\",\"HOU\",\"LGA\",6.00,3.00,0.00,\"\",0.00,202.00,187.00,1428.00,,,,,,\n2015,5,7,\"WN\",\"1163\",\"HOU\",\"LGA\",1.00,-2.00,0.00,\"\",0.00,207.00,181.00,1428.00,,,,,,\n2015,5,7,\"WN\",\"325\",\"ISP\",\"BWI\",25.00,16.00,0.00,\"\",0.00,61.00,50.00,220.00,0.00,0.00,0.00,0.00,16.00,\n2015,5,7,\"WN\",\"580\",\"ISP\",\"BWI\",-9.00,-17.00,0.00,\"\",0.00,67.00,53.00,220.00,,,,,,\n2015,5,7,\"WN\",\"667\",\"ISP\",\"BWI\",-7.00,-5.00,0.00,\"\",0.00,77.00,48.00,220.00,,,,,,\n2015,5,7,\"WN\",\"2940\",\"ISP\",\"BWI\",17.00,15.00,0.00,\"\",0.00,73.00,59.00,220.00,4.00,0.00,0.00,0.00,11.00,\n2015,5,7,\"WN\",\"3743\",\"ISP\",\"BWI\",7.00,0.00,0.00,\"\",0.00,68.00,55.00,220.00,,,,,,\n2015,5,7,\"WN\",\"752\",\"ISP\",\"FLL\",-4.00,-16.00,0.00,\"\",0.00,173.00,162.00,1092.00,,,,,,\n2015,5,7,\"WN\",\"4554\",\"ISP\",\"FLL\",-5.00,-10.00,0.00,\"\",0.00,175.00,146.00,1092.00,,,,,,\n2015,5,7,\"WN\",\"663\",\"ISP\",\"MCO\",0.00,-6.00,0.00,\"\",0.00,154.00,137.00,971.00,,,,,,\n2015,5,7,\"WN\",\"4017\",\"ISP\",\"MCO\",0.00,-14.00,0.00,\"\",0.00,151.00,135.00,971.00,,,,,,\n2015,5,7,\"WN\",\"4575\",\"ISP\",\"MCO\",0.00,-11.00,0.00,\"\",0.00,154.00,134.00,971.00,,,,,,\n2015,5,7,\"WN\",\"4910\",\"ISP\",\"MCO\",-2.00,-13.00,0.00,\"\",0.00,159.00,133.00,971.00,,,,,,\n2015,5,7,\"WN\",\"4479\",\"ISP\",\"PBI\",-1.00,-9.00,0.00,\"\",0.00,162.00,149.00,1052.00,,,,,,\n2015,5,7,\"WN\",\"4729\",\"ISP\",\"PBI\",-8.00,-12.00,0.00,\"\",0.00,166.00,153.00,1052.00,,,,,,\n2015,5,7,\"WN\",\"208\",\"ISP\",\"TPA\",-3.00,-11.00,0.00,\"\",0.00,162.00,147.00,1034.00,,,,,,\n2015,5,7,\"WN\",\"4907\",\"ISP\",\"TPA\",-1.00,-20.00,0.00,\"\",0.00,161.00,147.00,1034.00,,,,,,\n2015,5,7,\"WN\",\"2202\",\"LAS\",\"ALB\",2.00,-8.00,0.00,\"\",0.00,275.00,251.00,2237.00,,,,,,\n2015,5,7,\"WN\",\"2023\",\"LAS\",\"BUF\",-1.00,-8.00,0.00,\"\",0.00,258.00,234.00,1986.00,,,,,,\n2015,5,7,\"WN\",\"2528\",\"LAS\",\"BUF\",3.00,-2.00,0.00,\"\",0.00,250.00,222.00,1986.00,,,,,,\n2015,5,29,\"WN\",\"719\",\"ROC\",\"BWI\",90.00,76.00,0.00,\"\",0.00,56.00,45.00,277.00,0.00,0.00,0.00,0.00,76.00,\n2015,5,29,\"WN\",\"2749\",\"ROC\",\"BWI\",-8.00,-21.00,0.00,\"\",0.00,67.00,49.00,277.00,,,,,,\n2015,5,29,\"WN\",\"597\",\"ROC\",\"MCO\",-6.00,-15.00,0.00,\"\",0.00,151.00,132.00,1033.00,,,,,,\n2015,5,29,\"WN\",\"747\",\"ROC\",\"MDW\",22.00,7.00,0.00,\"\",0.00,95.00,82.00,523.00,,,,,,\n2015,5,29,\"WN\",\"4712\",\"ROC\",\"MDW\",-1.00,5.00,0.00,\"\",0.00,111.00,86.00,523.00,,,,,,\n2015,5,29,\"WN\",\"4655\",\"ROC\",\"TPA\",-5.00,-10.00,0.00,\"\",0.00,160.00,151.00,1079.00,,,,,,\n2015,5,28,\"WN\",\"2851\",\"PBI\",\"ISP\",5.00,5.00,0.00,\"\",0.00,160.00,143.00,1052.00,,,,,,\n2015,5,28,\"WN\",\"4818\",\"PBI\",\"ISP\",-1.00,-16.00,0.00,\"\",0.00,145.00,135.00,1052.00,,,,,,\n2015,5,29,\"WN\",\"223\",\"ALB\",\"BWI\",31.00,18.00,0.00,\"\",0.00,67.00,51.00,289.00,11.00,0.00,0.00,0.00,7.00,\n2015,5,29,\"WN\",\"752\",\"ALB\",\"BWI\",-7.00,-24.00,0.00,\"\",0.00,63.00,51.00,289.00,,,,,,\n2015,5,29,\"WN\",\"854\",\"ALB\",\"BWI\",51.00,43.00,0.00,\"\",0.00,67.00,52.00,289.00,0.00,0.00,43.00,0.00,0.00,\n2015,5,29,\"WN\",\"1011\",\"ALB\",\"BWI\",-4.00,-12.00,0.00,\"\",0.00,72.00,53.00,289.00,,,,,,\n2015,5,29,\"WN\",\"3294\",\"ALB\",\"BWI\",-2.00,-6.00,0.00,\"\",0.00,81.00,59.00,289.00,,,,,,\n2015,5,29,\"WN\",\"3917\",\"ALB\",\"BWI\",-3.00,-13.00,0.00,\"\",0.00,70.00,56.00,289.00,,,,,,\n2015,5,29,\"WN\",\"1987\",\"ALB\",\"FLL\",-5.00,-26.00,0.00,\"\",0.00,169.00,154.00,1204.00,,,,,,\n2015,5,29,\"WN\",\"346\",\"ALB\",\"LAS\",11.00,-10.00,0.00,\"\",0.00,309.00,295.00,2237.00,,,,,,\n2015,5,29,\"WN\",\"3919\",\"ALB\",\"MCO\",-3.00,-9.00,0.00,\"\",0.00,169.00,146.00,1073.00,,,,,,\n2015,5,29,\"WN\",\"4362\",\"ALB\",\"MCO\",-8.00,-24.00,0.00,\"\",0.00,159.00,143.00,1073.00,,,,,,\n2015,5,29,\"WN\",\"1550\",\"ALB\",\"MDW\",51.00,46.00,0.00,\"\",0.00,130.00,105.00,717.00,0.00,0.00,0.00,0.00,46.00,\n2015,5,29,\"WN\",\"4985\",\"ALB\",\"MDW\",-2.00,-8.00,0.00,\"\",0.00,129.00,106.00,717.00,,,,,,\n2015,5,29,\"WN\",\"3650\",\"ALB\",\"TPA\",-5.00,-27.00,0.00,\"\",0.00,163.00,152.00,1130.00,,,,,,\n2015,5,29,\"WN\",\"815\",\"ATL\",\"LGA\",5.00,5.00,0.00,\"\",0.00,140.00,107.00,762.00,,,,,,\n2015,5,29,\"WN\",\"1182\",\"ATL\",\"LGA\",1.00,-8.00,0.00,\"\",0.00,131.00,105.00,762.00,,,,,,\n2015,5,29,\"WN\",\"2516\",\"ATL\",\"LGA\",0.00,13.00,0.00,\"\",0.00,148.00,109.00,762.00,,,,,,\n2015,5,29,\"WN\",\"2659\",\"ATL\",\"LGA\",-2.00,-19.00,0.00,\"\",0.00,128.00,112.00,762.00,,,,,,\n2015,5,29,\"WN\",\"2850\",\"ATL\",\"LGA\",-1.00,-10.00,0.00,\"\",0.00,126.00,103.00,762.00,,,,,,\n2015,5,29,\"WN\",\"255\",\"BNA\",\"LGA\",-5.00,-19.00,0.00,\"\",0.00,116.00,105.00,764.00,,,,,,\n2015,5,29,\"WN\",\"2433\",\"BNA\",\"LGA\",5.00,3.00,0.00,\"\",0.00,128.00,112.00,764.00,,,,,,\n2015,5,29,\"WN\",\"2570\",\"BNA\",\"LGA\",1.00,5.00,0.00,\"\",0.00,139.00,114.00,764.00,,,,,,\n2015,5,29,\"WN\",\"728\",\"BUF\",\"BWI\",2.00,-5.00,0.00,\"\",0.00,63.00,50.00,281.00,,,,,,\n2015,5,29,\"WN\",\"842\",\"BUF\",\"BWI\",-6.00,-17.00,0.00,\"\",0.00,64.00,53.00,281.00,,,,,,\n2015,5,29,\"WN\",\"1429\",\"BUF\",\"BWI\",-4.00,-19.00,0.00,\"\",0.00,70.00,50.00,281.00,,,,,,\n2015,5,29,\"WN\",\"1528\",\"BUF\",\"BWI\",233.00,222.00,0.00,\"\",0.00,64.00,47.00,281.00,2.00,0.00,0.00,0.00,220.00,\n2015,5,29,\"WN\",\"2423\",\"BUF\",\"BWI\",-4.00,-16.00,0.00,\"\",0.00,63.00,53.00,281.00,,,,,,\n2015,5,29,\"WN\",\"4590\",\"BUF\",\"BWI\",-4.00,-6.00,0.00,\"\",0.00,68.00,52.00,281.00,,,,,,\n2015,5,29,\"WN\",\"1785\",\"BUF\",\"FLL\",-4.00,-9.00,0.00,\"\",0.00,180.00,152.00,1166.00,,,,,,\n2015,5,29,\"WN\",\"361\",\"BUF\",\"LAS\",-2.00,-16.00,0.00,\"\",0.00,286.00,268.00,1986.00,,,,,,\n2015,5,29,\"WN\",\"615\",\"BUF\",\"LAS\",83.00,68.00,0.00,\"\",0.00,275.00,258.00,1986.00,0.00,0.00,0.00,0.00,68.00,\n2015,5,29,\"WN\",\"134\",\"BUF\",\"MCO\",-9.00,-24.00,0.00,\"\",0.00,145.00,132.00,1011.00,,,,,,\n2015,5,29,\"WN\",\"674\",\"BUF\",\"MCO\",-4.00,-16.00,0.00,\"\",0.00,148.00,132.00,1011.00,,,,,,\n2015,5,29,\"WN\",\"854\",\"BUF\",\"MCO\",-1.00,-19.00,0.00,\"\",0.00,142.00,127.00,1011.00,,,,,,\n2015,5,29,\"WN\",\"2141\",\"BUF\",\"MCO\",-2.00,-20.00,0.00,\"\",0.00,142.00,128.00,1011.00,,,,,,\n2015,5,29,\"WN\",\"717\",\"BUF\",\"MDW\",-2.00,-8.00,0.00,\"\",0.00,104.00,77.00,468.00,,,,,,\n2015,5,29,\"WN\",\"2023\",\"BUF\",\"MDW\",-3.00,6.00,0.00,\"\",0.00,114.00,76.00,468.00,,,,,,\n2015,5,29,\"WN\",\"2632\",\"BUF\",\"MDW\",-1.00,-11.00,0.00,\"\",0.00,90.00,78.00,468.00,,,,,,\n2015,5,29,\"WN\",\"328\",\"BUF\",\"PHX\",-2.00,-24.00,0.00,\"\",0.00,268.00,254.00,1912.00,,,,,,\n2015,5,29,\"WN\",\"984\",\"BUF\",\"TPA\",-6.00,-22.00,0.00,\"\",0.00,149.00,136.00,1053.00,,,,,,\n2015,5,29,\"WN\",\"2824\",\"BUF\",\"TPA\",-2.00,-18.00,0.00,\"\",0.00,149.00,136.00,1053.00,,,,,,\n2015,5,29,\"WN\",\"334\",\"BWI\",\"ALB\",-7.00,-17.00,0.00,\"\",0.00,65.00,49.00,289.00,,,,,,\n2015,5,29,\"WN\",\"346\",\"BWI\",\"ALB\",17.00,15.00,0.00,\"\",0.00,63.00,51.00,289.00,4.00,0.00,0.00,0.00,11.00,\n2015,5,29,\"WN\",\"598\",\"BWI\",\"ALB\",11.00,5.00,0.00,\"\",0.00,64.00,53.00,289.00,,,,,,\n2015,5,29,\"WN\",\"1269\",\"BWI\",\"ALB\",21.00,14.00,0.00,\"\",0.00,68.00,51.00,289.00,,,,,,\n2015,5,29,\"WN\",\"3033\",\"BWI\",\"ALB\",20.00,12.00,0.00,\"\",0.00,62.00,51.00,289.00,,,,,,\n2015,5,29,\"WN\",\"3919\",\"BWI\",\"ALB\",8.00,2.00,0.00,\"\",0.00,64.00,51.00,289.00,,,,,,\n2015,5,29,\"WN\",\"328\",\"BWI\",\"BUF\",-1.00,-1.00,0.00,\"\",0.00,65.00,44.00,281.00,,,,,,\n2015,5,29,\"WN\",\"572\",\"BWI\",\"BUF\",-2.00,-16.00,0.00,\"\",0.00,56.00,45.00,281.00,,,,,,\n2015,5,29,\"WN\",\"819\",\"BWI\",\"BUF\",0.00,-3.00,0.00,\"\",0.00,62.00,45.00,281.00,,,,,,\n2015,5,29,\"WN\",\"854\",\"BWI\",\"BUF\",29.00,13.00,0.00,\"\",0.00,54.00,44.00,281.00,,,,,,\n2015,5,29,\"WN\",\"1350\",\"BWI\",\"BUF\",233.00,231.00,0.00,\"\",0.00,63.00,45.00,281.00,231.00,0.00,0.00,0.00,0.00,\n2015,5,29,\"WN\",\"1900\",\"BWI\",\"BUF\",6.00,-9.00,0.00,\"\",0.00,60.00,43.00,281.00,,,,,,\n2015,5,29,\"WN\",\"232\",\"BWI\",\"ISP\",83.00,77.00,0.00,\"\",0.00,59.00,46.00,220.00,15.00,0.00,0.00,0.00,62.00,\n2015,5,29,\"WN\",\"752\",\"BWI\",\"ISP\",-4.00,-2.00,0.00,\"\",0.00,62.00,41.00,220.00,,,,,,\n2015,5,29,\"WN\",\"842\",\"BWI\",\"ISP\",-6.00,-10.00,0.00,\"\",0.00,61.00,45.00,220.00,,,,,,\n2015,5,29,\"WN\",\"2452\",\"BWI\",\"ISP\",23.00,13.00,0.00,\"\",0.00,60.00,41.00,220.00,,,,,,\n2015,5,29,\"WN\",\"4017\",\"BWI\",\"ISP\",121.00,111.00,0.00,\"\",0.00,50.00,43.00,220.00,88.00,0.00,0.00,0.00,23.00,\n2015,5,29,\"WN\",\"597\",\"BWI\",\"ROC\",-1.00,-10.00,0.00,\"\",0.00,61.00,46.00,277.00,,,,,,\n2015,5,29,\"WN\",\"3564\",\"BWI\",\"ROC\",22.00,30.00,0.00,\"\",0.00,78.00,53.00,277.00,7.00,0.00,8.00,0.00,15.00,\n2015,5,29,\"WN\",\"914\",\"CAK\",\"LGA\",-1.00,-17.00,0.00,\"\",0.00,74.00,60.00,397.00,,,,,,\n2015,5,29,\"WN\",\"4728\",\"CAK\",\"LGA\",-8.00,20.00,0.00,\"\",0.00,118.00,65.00,397.00,0.00,0.00,20.00,0.00,0.00,\n2015,5,29,\"WN\",\"691\",\"DAL\",\"LGA\",-4.00,7.00,0.00,\"\",0.00,216.00,185.00,1381.00,,,,,,\n2015,5,29,\"WN\",\"1214\",\"DAL\",\"LGA\",10.00,12.00,0.00,\"\",0.00,207.00,195.00,1381.00,,,,,,\n2015,5,29,\"WN\",\"2141\",\"DAL\",\"LGA\",24.00,30.00,0.00,\"\",0.00,211.00,191.00,1381.00,23.00,0.00,6.00,0.00,1.00,\n2015,5,29,\"WN\",\"2234\",\"DAL\",\"LGA\",124.00,106.00,0.00,\"\",0.00,187.00,172.00,1381.00,0.00,106.00,0.00,0.00,0.00,\n2015,5,30,\"WN\",\"1426\",\"BUF\",\"BWI\",92.00,85.00,0.00,\"\",0.00,68.00,50.00,281.00,0.00,0.00,0.00,0.00,85.00,\n2015,5,30,\"WN\",\"1832\",\"BUF\",\"BWI\",-4.00,-25.00,0.00,\"\",0.00,64.00,50.00,281.00,,,,,,\n2015,5,30,\"WN\",\"2660\",\"BUF\",\"BWI\",4.00,0.00,0.00,\"\",0.00,71.00,49.00,281.00,,,,,,\n2015,5,30,\"WN\",\"2674\",\"BUF\",\"BWI\",-5.00,-18.00,0.00,\"\",0.00,67.00,51.00,281.00,,,,,,\n2015,5,30,\"WN\",\"2755\",\"BUF\",\"BWI\",-2.00,-5.00,0.00,\"\",0.00,67.00,50.00,281.00,,,,,,\n2015,5,30,\"WN\",\"2489\",\"BUF\",\"FLL\",7.00,-3.00,0.00,\"\",0.00,170.00,156.00,1166.00,,,,,,\n2015,5,30,\"WN\",\"1334\",\"BUF\",\"LAS\",0.00,-23.00,0.00,\"\",0.00,267.00,257.00,1986.00,,,,,,\n2015,5,30,\"WN\",\"2542\",\"BUF\",\"LAS\",1.00,-32.00,0.00,\"\",0.00,272.00,258.00,1986.00,,,,,,\n2015,5,30,\"WN\",\"1579\",\"BUF\",\"MCO\",-5.00,-17.00,0.00,\"\",0.00,148.00,135.00,1011.00,,,,,,\n2015,5,30,\"WN\",\"2046\",\"BUF\",\"MCO\",-6.00,-28.00,0.00,\"\",0.00,148.00,135.00,1011.00,,,,,,\n2015,5,30,\"WN\",\"2319\",\"BUF\",\"MCO\",-8.00,-24.00,0.00,\"\",0.00,144.00,129.00,1011.00,,,,,,\n2015,5,30,\"WN\",\"2784\",\"BUF\",\"MCO\",0.00,-14.00,0.00,\"\",0.00,146.00,132.00,1011.00,,,,,,\n2015,5,30,\"WN\",\"1149\",\"BUF\",\"MDW\",-10.00,-19.00,0.00,\"\",0.00,91.00,80.00,468.00,,,,,,\n2015,5,30,\"WN\",\"2318\",\"BUF\",\"MDW\",-3.00,-23.00,0.00,\"\",0.00,90.00,75.00,468.00,,,,,,\n2015,5,30,\"WN\",\"4561\",\"BUF\",\"MDW\",21.00,20.00,0.00,\"\",0.00,104.00,91.00,468.00,20.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"WN\",\"1219\",\"BUF\",\"PHX\",47.00,11.00,0.00,\"\",0.00,254.00,240.00,1912.00,,,,,,\n2015,5,30,\"WN\",\"3475\",\"BUF\",\"TPA\",-3.00,-19.00,0.00,\"\",0.00,149.00,139.00,1053.00,,,,,,\n2015,5,30,\"WN\",\"4641\",\"BUF\",\"TPA\",-7.00,-17.00,0.00,\"\",0.00,155.00,142.00,1053.00,,,,,,\n2015,5,30,\"WN\",\"1851\",\"BWI\",\"ALB\",8.00,-2.00,0.00,\"\",0.00,60.00,49.00,289.00,,,,,,\n2015,5,30,\"WN\",\"2114\",\"BWI\",\"ALB\",-3.00,-8.00,0.00,\"\",0.00,70.00,51.00,289.00,,,,,,\n2015,5,30,\"WN\",\"2425\",\"BWI\",\"ALB\",23.00,11.00,0.00,\"\",0.00,63.00,52.00,289.00,,,,,,\n2015,5,30,\"WN\",\"2681\",\"BWI\",\"ALB\",-6.00,-18.00,0.00,\"\",0.00,63.00,51.00,289.00,,,,,,\n2015,5,30,\"WN\",\"3475\",\"BWI\",\"ALB\",1.00,-5.00,0.00,\"\",0.00,64.00,54.00,289.00,,,,,,\n2015,5,30,\"WN\",\"1149\",\"BWI\",\"BUF\",-6.00,-15.00,0.00,\"\",0.00,56.00,44.00,281.00,,,,,,\n2015,5,30,\"WN\",\"1579\",\"BWI\",\"BUF\",-5.00,-16.00,0.00,\"\",0.00,54.00,45.00,281.00,,,,,,\n2015,5,30,\"WN\",\"1689\",\"BWI\",\"BUF\",-3.00,-4.00,0.00,\"\",0.00,69.00,49.00,281.00,,,,,,\n2015,5,30,\"WN\",\"2489\",\"BWI\",\"BUF\",16.00,8.00,0.00,\"\",0.00,57.00,45.00,281.00,,,,,,\n2015,5,30,\"WN\",\"2878\",\"BWI\",\"BUF\",-3.00,-3.00,0.00,\"\",0.00,70.00,53.00,281.00,,,,,,\n2015,5,30,\"WN\",\"1056\",\"BWI\",\"ISP\",-4.00,-8.00,0.00,\"\",0.00,61.00,43.00,220.00,,,,,,\n2015,5,30,\"WN\",\"1201\",\"BWI\",\"ISP\",3.00,-16.00,0.00,\"\",0.00,51.00,39.00,220.00,,,,,,\n2015,5,30,\"WN\",\"2551\",\"BWI\",\"ISP\",2.00,2.00,0.00,\"\",0.00,60.00,44.00,220.00,,,,,,\n2015,5,30,\"WN\",\"2836\",\"BWI\",\"ISP\",32.00,27.00,0.00,\"\",0.00,55.00,43.00,220.00,9.00,0.00,0.00,0.00,18.00,\n2015,5,30,\"WN\",\"1062\",\"BWI\",\"ROC\",29.00,13.00,0.00,\"\",0.00,59.00,44.00,277.00,,,,,,\n2015,5,30,\"WN\",\"2815\",\"BWI\",\"ROC\",-4.00,-12.00,0.00,\"\",0.00,62.00,46.00,277.00,,,,,,\n2015,5,30,\"WN\",\"1848\",\"CAK\",\"LGA\",-5.00,-12.00,0.00,\"\",0.00,83.00,69.00,397.00,,,,,,\n2015,5,30,\"WN\",\"1602\",\"DAL\",\"LGA\",25.00,40.00,0.00,\"\",0.00,220.00,190.00,1381.00,0.00,25.00,15.00,0.00,0.00,\n2015,5,30,\"WN\",\"1942\",\"DAL\",\"LGA\",6.00,2.00,0.00,\"\",0.00,201.00,178.00,1381.00,,,,,,\n2015,5,30,\"WN\",\"2104\",\"DAL\",\"LGA\",35.00,50.00,0.00,\"\",0.00,220.00,194.00,1381.00,30.00,0.00,15.00,0.00,5.00,\n2015,5,29,\"WN\",\"2454\",\"PHX\",\"BUF\",0.00,-8.00,0.00,\"\",0.00,237.00,225.00,1912.00,,,,,,\n2015,5,30,\"WN\",\"1363\",\"LGA\",\"ATL\",-4.00,-10.00,0.00,\"\",0.00,154.00,109.00,762.00,,,,,,\n2015,5,30,\"WN\",\"1665\",\"LGA\",\"ATL\",5.00,-13.00,0.00,\"\",0.00,152.00,107.00,762.00,,,,,,\n2015,5,30,\"WN\",\"1896\",\"LGA\",\"ATL\",-3.00,-29.00,0.00,\"\",0.00,134.00,105.00,762.00,,,,,,\n2015,5,30,\"WN\",\"3142\",\"LGA\",\"ATL\",8.00,-7.00,0.00,\"\",0.00,155.00,116.00,762.00,,,,,,\n2015,5,30,\"WN\",\"1515\",\"LGA\",\"BNA\",7.00,-23.00,0.00,\"\",0.00,120.00,105.00,764.00,,,,,,\n2015,5,30,\"WN\",\"1506\",\"LGA\",\"CAK\",-3.00,-21.00,0.00,\"\",0.00,82.00,64.00,397.00,,,,,,\n2015,5,30,\"WN\",\"1184\",\"LGA\",\"DAL\",38.00,5.00,0.00,\"\",0.00,197.00,181.00,1381.00,,,,,,\n2015,5,30,\"WN\",\"1637\",\"LGA\",\"DAL\",47.00,13.00,0.00,\"\",0.00,206.00,184.00,1381.00,,,,,,\n2015,5,30,\"WN\",\"2605\",\"LGA\",\"DAL\",-1.00,-43.00,0.00,\"\",0.00,203.00,186.00,1381.00,,,,,,\n2015,5,30,\"WN\",\"2537\",\"LGA\",\"DEN\",40.00,82.00,0.00,\"\",0.00,322.00,260.00,1620.00,9.00,0.00,42.00,0.00,31.00,\n2015,5,30,\"WN\",\"2601\",\"LGA\",\"DEN\",-2.00,-38.00,0.00,\"\",0.00,239.00,208.00,1620.00,,,,,,\n2015,5,30,\"WN\",\"1696\",\"LGA\",\"HOU\",8.00,-26.00,0.00,\"\",0.00,206.00,187.00,1428.00,,,,,,\n2015,5,30,\"WN\",\"4885\",\"LGA\",\"HOU\",2.00,,0.00,\"\",1.00,,,1428.00,,,,,,\n2015,5,30,\"WN\",\"1338\",\"LGA\",\"MCI\",12.00,-6.00,0.00,\"\",0.00,182.00,153.00,1107.00,,,,,,\n2015,5,30,\"WN\",\"779\",\"LGA\",\"MDW\",-3.00,-28.00,0.00,\"\",0.00,120.00,103.00,725.00,,,,,,\n2015,5,30,\"WN\",\"1374\",\"LGA\",\"MDW\",29.00,6.00,0.00,\"\",0.00,142.00,127.00,725.00,,,,,,\n2015,5,30,\"WN\",\"1501\",\"LGA\",\"MDW\",-1.00,-16.00,0.00,\"\",0.00,135.00,106.00,725.00,,,,,,\n2015,5,30,\"WN\",\"1668\",\"LGA\",\"MDW\",-2.00,-24.00,0.00,\"\",0.00,123.00,105.00,725.00,,,,,,\n2015,5,30,\"WN\",\"2104\",\"LGA\",\"MDW\",78.00,82.00,0.00,\"\",0.00,164.00,123.00,725.00,28.00,0.00,4.00,0.00,50.00,\n2015,5,30,\"WN\",\"2808\",\"LGA\",\"MDW\",46.00,34.00,0.00,\"\",0.00,143.00,111.00,725.00,30.00,0.00,0.00,0.00,4.00,\n2015,5,30,\"WN\",\"2723\",\"LGA\",\"MKE\",-1.00,-10.00,0.00,\"\",0.00,136.00,107.00,738.00,,,,,,\n2015,5,30,\"WN\",\"1394\",\"LGA\",\"STL\",7.00,-13.00,0.00,\"\",0.00,140.00,124.00,888.00,,,,,,\n2015,5,30,\"WN\",\"3034\",\"MCI\",\"LGA\",9.00,9.00,0.00,\"\",0.00,170.00,154.00,1107.00,,,,,,\n2015,5,30,\"WN\",\"1197\",\"MCO\",\"ALB\",-10.00,-2.00,0.00,\"\",0.00,168.00,144.00,1073.00,,,,,,\n2015,5,30,\"WN\",\"1764\",\"MCO\",\"ALB\",-5.00,-10.00,0.00,\"\",0.00,160.00,145.00,1073.00,,,,,,\n2015,5,30,\"WN\",\"1115\",\"MCO\",\"BUF\",37.00,27.00,0.00,\"\",0.00,145.00,132.00,1011.00,27.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"WN\",\"1219\",\"MCO\",\"BUF\",74.00,65.00,0.00,\"\",0.00,146.00,129.00,1011.00,10.00,0.00,0.00,0.00,55.00,\n2015,5,30,\"WN\",\"1426\",\"MCO\",\"BUF\",100.00,92.00,0.00,\"\",0.00,147.00,131.00,1011.00,92.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"WN\",\"2755\",\"MCO\",\"BUF\",-5.00,-14.00,0.00,\"\",0.00,146.00,133.00,1011.00,,,,,,\n2015,5,30,\"WN\",\"1770\",\"MCO\",\"ISP\",0.00,-3.00,0.00,\"\",0.00,147.00,133.00,971.00,,,,,,\n2015,5,30,\"WN\",\"1906\",\"MCO\",\"ISP\",18.00,24.00,0.00,\"\",0.00,156.00,137.00,971.00,6.00,0.00,6.00,0.00,12.00,\n2015,5,30,\"WN\",\"1929\",\"MCO\",\"ISP\",-7.00,-5.00,0.00,\"\",0.00,152.00,138.00,971.00,,,,,,\n2015,5,30,\"WN\",\"3208\",\"MCO\",\"ISP\",-2.00,-6.00,0.00,\"\",0.00,146.00,132.00,971.00,,,,,,\n2015,5,30,\"WN\",\"1503\",\"MCO\",\"ROC\",2.00,-7.00,0.00,\"\",0.00,146.00,132.00,1033.00,,,,,,\n2015,5,30,\"WN\",\"1705\",\"MCO\",\"ROC\",-8.00,-16.00,0.00,\"\",0.00,147.00,131.00,1033.00,,,,,,\n2015,5,30,\"WN\",\"990\",\"MDW\",\"ALB\",20.00,10.00,0.00,\"\",0.00,105.00,88.00,717.00,,,,,,\n2015,5,30,\"WN\",\"1689\",\"MDW\",\"ALB\",7.00,7.00,0.00,\"\",0.00,115.00,92.00,717.00,,,,,,\n2015,5,30,\"WN\",\"1334\",\"MDW\",\"BUF\",0.00,-12.00,0.00,\"\",0.00,78.00,63.00,468.00,,,,,,\n2015,5,30,\"WN\",\"2660\",\"MDW\",\"BUF\",6.00,4.00,0.00,\"\",0.00,83.00,64.00,468.00,,,,,,\n2015,5,30,\"WN\",\"4819\",\"MDW\",\"BUF\",38.00,29.00,0.00,\"\",0.00,76.00,61.00,468.00,0.00,0.00,0.00,0.00,29.00,\n2015,5,30,\"WN\",\"1373\",\"MDW\",\"LGA\",-6.00,-12.00,0.00,\"\",0.00,119.00,102.00,725.00,,,,,,\n2015,5,30,\"WN\",\"1479\",\"MDW\",\"LGA\",9.00,31.00,0.00,\"\",0.00,147.00,103.00,725.00,9.00,0.00,22.00,0.00,0.00,\n2015,5,30,\"WN\",\"1506\",\"MDW\",\"LGA\",-4.00,-5.00,0.00,\"\",0.00,124.00,103.00,725.00,,,,,,\n2015,5,30,\"WN\",\"1671\",\"MDW\",\"LGA\",4.00,1.00,0.00,\"\",0.00,117.00,100.00,725.00,,,,,,\n2015,5,30,\"WN\",\"1840\",\"MDW\",\"LGA\",37.00,15.00,0.00,\"\",0.00,113.00,101.00,725.00,10.00,0.00,0.00,0.00,5.00,\n2015,5,30,\"WN\",\"2538\",\"MDW\",\"LGA\",-1.00,-8.00,0.00,\"\",0.00,123.00,109.00,725.00,,,,,,\n2015,5,30,\"WN\",\"1093\",\"MDW\",\"ROC\",9.00,3.00,0.00,\"\",0.00,84.00,67.00,523.00,,,,,,\n2015,5,30,\"WN\",\"2601\",\"MKE\",\"LGA\",-3.00,-5.00,0.00,\"\",0.00,133.00,115.00,738.00,,,,,,\n2015,5,30,\"WN\",\"353\",\"PBI\",\"ISP\",-1.00,0.00,0.00,\"\",0.00,161.00,144.00,1052.00,,,,,,\n2015,5,30,\"WN\",\"1559\",\"PBI\",\"ISP\",-3.00,-8.00,0.00,\"\",0.00,155.00,142.00,1052.00,,,,,,\n2015,5,30,\"WN\",\"2319\",\"PHX\",\"BUF\",5.00,-12.00,0.00,\"\",0.00,238.00,222.00,1912.00,,,,,,\n2015,5,31,\"WN\",\"334\",\"BWI\",\"ALB\",-7.00,-19.00,0.00,\"\",0.00,63.00,52.00,289.00,,,,,,\n2015,5,31,\"WN\",\"346\",\"BWI\",\"ALB\",-1.00,-6.00,0.00,\"\",0.00,60.00,49.00,289.00,,,,,,\n2015,5,31,\"WN\",\"598\",\"BWI\",\"ALB\",65.00,65.00,0.00,\"\",0.00,70.00,55.00,289.00,20.00,0.00,0.00,0.00,45.00,\n2015,5,31,\"WN\",\"1269\",\"BWI\",\"ALB\",25.00,11.00,0.00,\"\",0.00,61.00,46.00,289.00,,,,,,\n2015,5,31,\"WN\",\"3033\",\"BWI\",\"ALB\",12.00,0.00,0.00,\"\",0.00,58.00,45.00,289.00,,,,,,\n2015,5,31,\"WN\",\"3919\",\"BWI\",\"ALB\",-4.00,-12.00,0.00,\"\",0.00,62.00,51.00,289.00,,,,,,\n2015,5,31,\"WN\",\"328\",\"BWI\",\"BUF\",-4.00,-5.00,0.00,\"\",0.00,64.00,50.00,281.00,,,,,,\n2015,5,31,\"WN\",\"572\",\"BWI\",\"BUF\",1.00,66.00,0.00,\"\",0.00,135.00,59.00,281.00,0.00,0.00,66.00,0.00,0.00,\n2015,5,31,\"WN\",\"854\",\"BWI\",\"BUF\",26.00,39.00,0.00,\"\",0.00,83.00,58.00,281.00,0.00,0.00,13.00,0.00,26.00,\n2015,5,31,\"WN\",\"1350\",\"BWI\",\"BUF\",0.00,-6.00,0.00,\"\",0.00,59.00,46.00,281.00,,,,,,\n2015,5,31,\"WN\",\"1900\",\"BWI\",\"BUF\",28.00,22.00,0.00,\"\",0.00,69.00,56.00,281.00,22.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"WN\",\"232\",\"BWI\",\"ISP\",144.00,141.00,0.00,\"\",0.00,62.00,46.00,220.00,11.00,0.00,0.00,0.00,130.00,\n2015,5,31,\"WN\",\"752\",\"BWI\",\"ISP\",-1.00,-1.00,0.00,\"\",0.00,60.00,43.00,220.00,,,,,,\n2015,5,31,\"WN\",\"2452\",\"BWI\",\"ISP\",23.00,15.00,0.00,\"\",0.00,62.00,46.00,220.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,31,\"WN\",\"3793\",\"BWI\",\"ISP\",-6.00,-3.00,0.00,\"\",0.00,68.00,46.00,220.00,,,,,,\n2015,5,31,\"WN\",\"4017\",\"BWI\",\"ISP\",28.00,31.00,0.00,\"\",0.00,63.00,43.00,220.00,17.00,0.00,3.00,0.00,11.00,\n2015,5,31,\"WN\",\"597\",\"BWI\",\"ROC\",7.00,1.00,0.00,\"\",0.00,64.00,46.00,277.00,,,,,,\n2015,5,31,\"WN\",\"3564\",\"BWI\",\"ROC\",30.00,28.00,0.00,\"\",0.00,68.00,53.00,277.00,0.00,0.00,0.00,0.00,28.00,\n2015,5,31,\"WN\",\"3466\",\"CAK\",\"LGA\",-2.00,-17.00,0.00,\"\",0.00,80.00,62.00,397.00,,,,,,\n2015,5,31,\"WN\",\"4728\",\"CAK\",\"LGA\",11.00,18.00,0.00,\"\",0.00,97.00,70.00,397.00,0.00,0.00,18.00,0.00,0.00,\n2015,5,31,\"WN\",\"691\",\"DAL\",\"LGA\",20.00,,0.00,\"\",1.00,,,1381.00,,,,,,\n2015,5,31,\"WN\",\"1214\",\"DAL\",\"LGA\",244.00,246.00,0.00,\"\",0.00,207.00,190.00,1381.00,0.00,177.00,2.00,0.00,67.00,\n2015,5,31,\"WN\",\"2141\",\"DAL\",\"LGA\",150.00,158.00,0.00,\"\",0.00,213.00,197.00,1381.00,0.00,150.00,8.00,0.00,0.00,\n2015,5,25,\"WN\",\"12\",\"STL\",\"LGA\",61.00,70.00,0.00,\"\",0.00,154.00,110.00,888.00,7.00,0.00,9.00,0.00,54.00,\n2015,5,25,\"WN\",\"276\",\"STL\",\"LGA\",-4.00,-16.00,0.00,\"\",0.00,133.00,114.00,888.00,,,,,,\n2015,5,25,\"WN\",\"901\",\"STL\",\"LGA\",1.00,-3.00,0.00,\"\",0.00,136.00,118.00,888.00,,,,,,\n2015,5,25,\"WN\",\"2134\",\"TPA\",\"ALB\",-5.00,-8.00,0.00,\"\",0.00,167.00,152.00,1130.00,,,,,,\n2015,5,25,\"WN\",\"327\",\"TPA\",\"BUF\",-9.00,-18.00,0.00,\"\",0.00,146.00,133.00,1053.00,,,,,,\n2015,5,25,\"WN\",\"3350\",\"TPA\",\"BUF\",-2.00,-13.00,0.00,\"\",0.00,144.00,132.00,1053.00,,,,,,\n2015,5,25,\"WN\",\"591\",\"TPA\",\"ISP\",-1.00,-1.00,0.00,\"\",0.00,155.00,137.00,1034.00,,,,,,\n2015,5,25,\"WN\",\"3993\",\"TPA\",\"ISP\",-3.00,-18.00,0.00,\"\",0.00,150.00,135.00,1034.00,,,,,,\n2015,5,25,\"WN\",\"188\",\"TPA\",\"ROC\",-5.00,-10.00,0.00,\"\",0.00,155.00,137.00,1079.00,,,,,,\n2015,5,26,\"WN\",\"223\",\"ALB\",\"BWI\",10.00,-8.00,0.00,\"\",0.00,62.00,51.00,289.00,,,,,,\n2015,5,26,\"WN\",\"752\",\"ALB\",\"BWI\",-5.00,-16.00,0.00,\"\",0.00,69.00,51.00,289.00,,,,,,\n2015,5,26,\"WN\",\"854\",\"ALB\",\"BWI\",-4.00,-17.00,0.00,\"\",0.00,62.00,51.00,289.00,,,,,,\n2015,5,26,\"WN\",\"1011\",\"ALB\",\"BWI\",82.00,65.00,0.00,\"\",0.00,63.00,50.00,289.00,0.00,0.00,0.00,0.00,65.00,\n2015,5,26,\"WN\",\"3294\",\"ALB\",\"BWI\",-5.00,-14.00,0.00,\"\",0.00,76.00,50.00,289.00,,,,,,\n2015,5,26,\"WN\",\"3917\",\"ALB\",\"BWI\",-6.00,-14.00,0.00,\"\",0.00,72.00,55.00,289.00,,,,,,\n2015,5,26,\"WN\",\"1987\",\"ALB\",\"FLL\",-2.00,-18.00,0.00,\"\",0.00,174.00,162.00,1204.00,,,,,,\n2015,5,26,\"WN\",\"346\",\"ALB\",\"LAS\",-1.00,-29.00,0.00,\"\",0.00,302.00,289.00,2237.00,,,,,,\n2015,5,26,\"WN\",\"3919\",\"ALB\",\"MCO\",135.00,123.00,0.00,\"\",0.00,163.00,145.00,1073.00,0.00,0.00,0.00,0.00,123.00,\n2015,5,26,\"WN\",\"4362\",\"ALB\",\"MCO\",-5.00,-15.00,0.00,\"\",0.00,165.00,146.00,1073.00,,,,,,\n2015,5,26,\"WN\",\"1550\",\"ALB\",\"MDW\",33.00,20.00,0.00,\"\",0.00,122.00,105.00,717.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,26,\"WN\",\"4985\",\"ALB\",\"MDW\",-1.00,10.00,0.00,\"\",0.00,146.00,120.00,717.00,,,,,,\n2015,5,26,\"WN\",\"3650\",\"ALB\",\"TPA\",0.00,-18.00,0.00,\"\",0.00,167.00,154.00,1130.00,,,,,,\n2015,5,31,\"WN\",\"824\",\"DEN\",\"LGA\",121.00,113.00,0.00,\"\",0.00,227.00,196.00,1620.00,113.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"WN\",\"1370\",\"DEN\",\"LGA\",53.00,,0.00,\"\",1.00,,,1620.00,,,,,,\n2015,5,31,\"WN\",\"1898\",\"FLL\",\"ALB\",-5.00,-1.00,0.00,\"\",0.00,184.00,169.00,1204.00,,,,,,\n2015,5,31,\"WN\",\"4643\",\"FLL\",\"BUF\",-9.00,-19.00,0.00,\"\",0.00,175.00,150.00,1166.00,,,,,,\n2015,5,31,\"WN\",\"3568\",\"FLL\",\"ISP\",63.00,54.00,0.00,\"\",0.00,166.00,149.00,1092.00,0.00,39.00,0.00,0.00,15.00,\n2015,5,31,\"WN\",\"4640\",\"FLL\",\"ISP\",-7.00,-9.00,0.00,\"\",0.00,168.00,148.00,1092.00,,,,,,\n2015,5,31,\"WN\",\"299\",\"HOU\",\"LGA\",0.00,-13.00,0.00,\"\",0.00,197.00,180.00,1428.00,,,,,,\n2015,5,31,\"WN\",\"1163\",\"HOU\",\"LGA\",,,1.00,\"B\",0.00,,,1428.00,,,,,,\n2015,5,31,\"WN\",\"2643\",\"HOU\",\"LGA\",12.00,15.00,0.00,\"\",0.00,208.00,190.00,1428.00,1.00,0.00,3.00,0.00,11.00,\n2015,5,31,\"WN\",\"325\",\"ISP\",\"BWI\",9.00,1.00,0.00,\"\",0.00,62.00,51.00,220.00,,,,,,\n2015,5,31,\"WN\",\"580\",\"ISP\",\"BWI\",-6.00,-10.00,0.00,\"\",0.00,71.00,48.00,220.00,,,,,,\n2015,5,31,\"WN\",\"667\",\"ISP\",\"BWI\",-5.00,-14.00,0.00,\"\",0.00,66.00,47.00,220.00,,,,,,\n2015,5,31,\"WN\",\"2940\",\"ISP\",\"BWI\",2.00,-4.00,0.00,\"\",0.00,69.00,55.00,220.00,,,,,,\n2015,5,31,\"WN\",\"4878\",\"ISP\",\"BWI\",-6.00,-19.00,0.00,\"\",0.00,62.00,50.00,220.00,,,,,,\n2015,5,31,\"WN\",\"752\",\"ISP\",\"FLL\",0.00,-27.00,0.00,\"\",0.00,158.00,144.00,1092.00,,,,,,\n2015,5,31,\"WN\",\"4554\",\"ISP\",\"FLL\",-2.00,-23.00,0.00,\"\",0.00,159.00,144.00,1092.00,,,,,,\n2015,5,31,\"WN\",\"663\",\"ISP\",\"MCO\",-8.00,-26.00,0.00,\"\",0.00,142.00,129.00,971.00,,,,,,\n2015,5,31,\"WN\",\"4017\",\"ISP\",\"MCO\",32.00,15.00,0.00,\"\",0.00,148.00,127.00,971.00,0.00,0.00,0.00,0.00,15.00,\n2015,5,31,\"WN\",\"4575\",\"ISP\",\"MCO\",22.00,-3.00,0.00,\"\",0.00,140.00,127.00,971.00,,,,,,\n2015,5,31,\"WN\",\"4910\",\"ISP\",\"MCO\",-3.00,-28.00,0.00,\"\",0.00,145.00,128.00,971.00,,,,,,\n2015,5,31,\"WN\",\"4479\",\"ISP\",\"PBI\",0.00,-17.00,0.00,\"\",0.00,153.00,141.00,1052.00,,,,,,\n2015,5,31,\"WN\",\"4729\",\"ISP\",\"PBI\",-6.00,-22.00,0.00,\"\",0.00,154.00,140.00,1052.00,,,,,,\n2015,5,31,\"WN\",\"208\",\"ISP\",\"TPA\",-4.00,-18.00,0.00,\"\",0.00,156.00,145.00,1034.00,,,,,,\n2015,5,31,\"WN\",\"4907\",\"ISP\",\"TPA\",74.00,50.00,0.00,\"\",0.00,156.00,137.00,1034.00,0.00,0.00,0.00,0.00,50.00,\n2015,5,31,\"WN\",\"2202\",\"LAS\",\"ALB\",-3.00,0.00,0.00,\"\",0.00,288.00,258.00,2237.00,,,,,,\n2015,5,31,\"WN\",\"2023\",\"LAS\",\"BUF\",-3.00,-20.00,0.00,\"\",0.00,248.00,233.00,1986.00,,,,,,\n2015,5,31,\"WN\",\"2528\",\"LAS\",\"BUF\",7.00,19.00,0.00,\"\",0.00,267.00,229.00,1986.00,0.00,0.00,19.00,0.00,0.00,\n2015,5,16,\"WN\",\"4725\",\"FLL\",\"ALB\",0.00,-4.00,0.00,\"\",0.00,186.00,169.00,1204.00,,,,,,\n2015,5,16,\"WN\",\"2695\",\"FLL\",\"BUF\",-1.00,-10.00,0.00,\"\",0.00,176.00,160.00,1166.00,,,,,,\n2015,5,16,\"WN\",\"1137\",\"FLL\",\"ISP\",2.00,-5.00,0.00,\"\",0.00,168.00,150.00,1092.00,,,,,,\n2015,5,16,\"WN\",\"4912\",\"FLL\",\"ISP\",4.00,-4.00,0.00,\"\",0.00,172.00,154.00,1092.00,,,,,,\n2015,5,16,\"WN\",\"2054\",\"HOU\",\"LGA\",-1.00,-3.00,0.00,\"\",0.00,203.00,185.00,1428.00,,,,,,\n2015,5,16,\"WN\",\"2059\",\"HOU\",\"LGA\",-1.00,-2.00,0.00,\"\",0.00,209.00,185.00,1428.00,,,,,,\n2015,5,16,\"WN\",\"1297\",\"ISP\",\"BWI\",1.00,-7.00,0.00,\"\",0.00,67.00,49.00,220.00,,,,,,\n2015,5,16,\"WN\",\"1579\",\"ISP\",\"BWI\",-7.00,-2.00,0.00,\"\",0.00,80.00,47.00,220.00,,,,,,\n2015,5,16,\"WN\",\"1929\",\"ISP\",\"BWI\",-6.00,-22.00,0.00,\"\",0.00,59.00,45.00,220.00,,,,,,\n2015,5,16,\"WN\",\"2547\",\"ISP\",\"BWI\",-6.00,-22.00,0.00,\"\",0.00,59.00,46.00,220.00,,,,,,\n2015,5,16,\"WN\",\"1198\",\"ISP\",\"FLL\",-4.00,-28.00,0.00,\"\",0.00,156.00,144.00,1092.00,,,,,,\n2015,5,16,\"WN\",\"1768\",\"ISP\",\"FLL\",-1.00,-26.00,0.00,\"\",0.00,160.00,145.00,1092.00,,,,,,\n2015,5,16,\"WN\",\"1056\",\"ISP\",\"MCO\",-5.00,-22.00,0.00,\"\",0.00,143.00,128.00,971.00,,,,,,\n2015,5,16,\"WN\",\"1262\",\"ISP\",\"MCO\",-3.00,-28.00,0.00,\"\",0.00,140.00,125.00,971.00,,,,,,\n2015,5,16,\"WN\",\"2551\",\"ISP\",\"MCO\",-3.00,-15.00,0.00,\"\",0.00,153.00,136.00,971.00,,,,,,\n2015,5,16,\"WN\",\"2836\",\"ISP\",\"MCO\",-9.00,-28.00,0.00,\"\",0.00,146.00,132.00,971.00,,,,,,\n2015,5,16,\"WN\",\"959\",\"ISP\",\"PBI\",28.00,15.00,0.00,\"\",0.00,157.00,142.00,1052.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"WN\",\"3297\",\"ISP\",\"PBI\",-2.00,-25.00,0.00,\"\",0.00,147.00,135.00,1052.00,,,,,,\n2015,5,16,\"WN\",\"1216\",\"ISP\",\"TPA\",4.00,-9.00,0.00,\"\",0.00,162.00,147.00,1034.00,,,,,,\n2015,5,16,\"WN\",\"4463\",\"ISP\",\"TPA\",-3.00,-16.00,0.00,\"\",0.00,157.00,143.00,1034.00,,,,,,\n2015,5,16,\"WN\",\"1795\",\"LAS\",\"ALB\",16.00,2.00,0.00,\"\",0.00,271.00,257.00,2237.00,,,,,,\n2015,5,16,\"WN\",\"2528\",\"LAS\",\"BUF\",17.00,9.00,0.00,\"\",0.00,247.00,231.00,1986.00,,,,,,\n2015,5,16,\"WN\",\"4561\",\"LAS\",\"BUF\",25.00,8.00,0.00,\"\",0.00,243.00,224.00,1986.00,,,,,,\n2015,5,16,\"WN\",\"1363\",\"LGA\",\"ATL\",-1.00,-30.00,0.00,\"\",0.00,131.00,104.00,762.00,,,,,,\n2015,5,16,\"WN\",\"1665\",\"LGA\",\"ATL\",-3.00,-5.00,0.00,\"\",0.00,168.00,122.00,762.00,,,,,,\n2015,5,16,\"WN\",\"1896\",\"LGA\",\"ATL\",-1.00,-17.00,0.00,\"\",0.00,144.00,107.00,762.00,,,,,,\n2015,5,16,\"WN\",\"3142\",\"LGA\",\"ATL\",10.00,-23.00,0.00,\"\",0.00,137.00,109.00,762.00,,,,,,\n2015,5,16,\"WN\",\"1515\",\"LGA\",\"BNA\",19.00,7.00,0.00,\"\",0.00,138.00,110.00,764.00,,,,,,\n2015,5,16,\"WN\",\"1506\",\"LGA\",\"CAK\",-1.00,-8.00,0.00,\"\",0.00,93.00,62.00,397.00,,,,,,\n2015,5,16,\"WN\",\"1184\",\"LGA\",\"DAL\",-3.00,-22.00,0.00,\"\",0.00,211.00,191.00,1381.00,,,,,,\n2015,5,16,\"WN\",\"1637\",\"LGA\",\"DAL\",-1.00,-24.00,0.00,\"\",0.00,217.00,187.00,1381.00,,,,,,\n2015,5,16,\"WN\",\"2605\",\"LGA\",\"DAL\",3.00,-12.00,0.00,\"\",0.00,230.00,200.00,1381.00,,,,,,\n2015,5,16,\"WN\",\"2537\",\"LGA\",\"DEN\",9.00,1.00,0.00,\"\",0.00,272.00,237.00,1620.00,,,,,,\n2015,5,16,\"WN\",\"2601\",\"LGA\",\"DEN\",0.00,-9.00,0.00,\"\",0.00,266.00,219.00,1620.00,,,,,,\n2015,5,16,\"WN\",\"1696\",\"LGA\",\"HOU\",-1.00,-27.00,0.00,\"\",0.00,214.00,196.00,1428.00,,,,,,\n2015,5,16,\"WN\",\"4885\",\"LGA\",\"HOU\",1.00,-30.00,0.00,\"\",0.00,224.00,195.00,1428.00,,,,,,\n2015,5,16,\"WN\",\"1338\",\"LGA\",\"MCI\",-1.00,-24.00,0.00,\"\",0.00,177.00,158.00,1107.00,,,,,,\n2015,5,16,\"WN\",\"779\",\"LGA\",\"MDW\",-1.00,-16.00,0.00,\"\",0.00,130.00,112.00,725.00,,,,,,\n2015,5,16,\"WN\",\"1374\",\"LGA\",\"MDW\",9.00,-28.00,0.00,\"\",0.00,128.00,112.00,725.00,,,,,,\n2015,5,16,\"WN\",\"1501\",\"LGA\",\"MDW\",-1.00,6.00,0.00,\"\",0.00,157.00,108.00,725.00,,,,,,\n2015,5,16,\"WN\",\"1668\",\"LGA\",\"MDW\",2.00,-4.00,0.00,\"\",0.00,139.00,111.00,725.00,,,,,,\n2015,5,16,\"WN\",\"2104\",\"LGA\",\"MDW\",7.00,-26.00,0.00,\"\",0.00,127.00,109.00,725.00,,,,,,\n2015,5,16,\"WN\",\"2808\",\"LGA\",\"MDW\",-3.00,-24.00,0.00,\"\",0.00,134.00,111.00,725.00,,,,,,\n2015,5,16,\"WN\",\"2723\",\"LGA\",\"MKE\",25.00,25.00,0.00,\"\",0.00,145.00,114.00,738.00,25.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"WN\",\"1394\",\"LGA\",\"STL\",17.00,1.00,0.00,\"\",0.00,144.00,131.00,888.00,,,,,,\n2015,5,16,\"WN\",\"3034\",\"MCI\",\"LGA\",-3.00,-17.00,0.00,\"\",0.00,156.00,141.00,1107.00,,,,,,\n2015,5,16,\"WN\",\"1197\",\"MCO\",\"ALB\",-7.00,-13.00,0.00,\"\",0.00,154.00,140.00,1073.00,,,,,,\n2015,5,16,\"WN\",\"1764\",\"MCO\",\"ALB\",2.00,-2.00,0.00,\"\",0.00,161.00,146.00,1073.00,,,,,,\n2015,5,16,\"WN\",\"1115\",\"MCO\",\"BUF\",-3.00,-10.00,0.00,\"\",0.00,148.00,130.00,1011.00,,,,,,\n2015,5,16,\"WN\",\"1219\",\"MCO\",\"BUF\",15.00,11.00,0.00,\"\",0.00,151.00,128.00,1011.00,,,,,,\n2015,5,16,\"WN\",\"1426\",\"MCO\",\"BUF\",0.00,3.00,0.00,\"\",0.00,158.00,144.00,1011.00,,,,,,\n2015,5,16,\"WN\",\"2755\",\"MCO\",\"BUF\",-5.00,-7.00,0.00,\"\",0.00,153.00,140.00,1011.00,,,,,,\n2015,5,16,\"WN\",\"1770\",\"MCO\",\"ISP\",100.00,99.00,0.00,\"\",0.00,149.00,133.00,971.00,99.00,0.00,0.00,0.00,0.00,\n2015,5,16,\"WN\",\"1906\",\"MCO\",\"ISP\",2.00,-1.00,0.00,\"\",0.00,147.00,134.00,971.00,,,,,,\n2015,5,16,\"WN\",\"1929\",\"MCO\",\"ISP\",-7.00,-2.00,0.00,\"\",0.00,155.00,136.00,971.00,,,,,,\n2015,5,16,\"WN\",\"3208\",\"MCO\",\"ISP\",-6.00,-1.00,0.00,\"\",0.00,155.00,136.00,971.00,,,,,,\n2015,5,29,\"WN\",\"12\",\"STL\",\"LGA\",9.00,15.00,0.00,\"\",0.00,151.00,121.00,888.00,0.00,0.00,6.00,0.00,9.00,\n2015,5,29,\"WN\",\"1194\",\"STL\",\"LGA\",-7.00,-13.00,0.00,\"\",0.00,139.00,112.00,888.00,,,,,,\n2015,5,29,\"WN\",\"1986\",\"STL\",\"LGA\",12.00,15.00,0.00,\"\",0.00,143.00,121.00,888.00,4.00,0.00,3.00,0.00,8.00,\n2015,5,29,\"WN\",\"854\",\"TPA\",\"ALB\",3.00,-2.00,0.00,\"\",0.00,165.00,150.00,1130.00,,,,,,\n2015,5,29,\"WN\",\"127\",\"TPA\",\"BUF\",-4.00,-15.00,0.00,\"\",0.00,144.00,133.00,1053.00,,,,,,\n2015,5,29,\"WN\",\"2160\",\"TPA\",\"BUF\",9.00,0.00,0.00,\"\",0.00,146.00,132.00,1053.00,,,,,,\n2015,5,29,\"WN\",\"2423\",\"TPA\",\"ISP\",-4.00,-7.00,0.00,\"\",0.00,152.00,140.00,1034.00,,,,,,\n2015,5,29,\"WN\",\"4390\",\"TPA\",\"ISP\",-2.00,-8.00,0.00,\"\",0.00,159.00,141.00,1034.00,,,,,,\n2015,5,29,\"WN\",\"719\",\"TPA\",\"ROC\",103.00,96.00,0.00,\"\",0.00,153.00,140.00,1079.00,96.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"WN\",\"1689\",\"ALB\",\"BWI\",5.00,-9.00,0.00,\"\",0.00,61.00,49.00,289.00,,,,,,\n2015,5,30,\"WN\",\"2021\",\"ALB\",\"BWI\",-4.00,-11.00,0.00,\"\",0.00,78.00,52.00,289.00,,,,,,\n2015,5,30,\"WN\",\"2084\",\"ALB\",\"BWI\",-5.00,-21.00,0.00,\"\",0.00,69.00,56.00,289.00,,,,,,\n2015,5,30,\"WN\",\"2497\",\"ALB\",\"BWI\",-4.00,-15.00,0.00,\"\",0.00,69.00,55.00,289.00,,,,,,\n2015,5,30,\"WN\",\"3922\",\"ALB\",\"BWI\",-5.00,-23.00,0.00,\"\",0.00,62.00,49.00,289.00,,,,,,\n2015,5,30,\"WN\",\"1716\",\"ALB\",\"FLL\",-4.00,-30.00,0.00,\"\",0.00,164.00,154.00,1204.00,,,,,,\n2015,5,30,\"WN\",\"1036\",\"ALB\",\"LAS\",-3.00,-32.00,0.00,\"\",0.00,301.00,287.00,2237.00,,,,,,\n2015,5,30,\"WN\",\"2664\",\"ALB\",\"MCO\",197.00,178.00,0.00,\"\",0.00,156.00,140.00,1073.00,178.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"WN\",\"2833\",\"ALB\",\"MCO\",-3.00,-20.00,0.00,\"\",0.00,158.00,141.00,1073.00,,,,,,\n2015,5,30,\"WN\",\"1438\",\"ALB\",\"MDW\",-5.00,-12.00,0.00,\"\",0.00,138.00,104.00,717.00,,,,,,\n2015,5,30,\"WN\",\"3475\",\"ALB\",\"MDW\",-1.00,3.00,0.00,\"\",0.00,139.00,123.00,717.00,,,,,,\n2015,5,30,\"WN\",\"987\",\"ALB\",\"TPA\",10.00,1.00,0.00,\"\",0.00,176.00,153.00,1130.00,,,,,,\n2015,5,30,\"WN\",\"895\",\"ATL\",\"LGA\",112.00,91.00,0.00,\"\",0.00,124.00,107.00,762.00,0.00,0.00,0.00,0.00,91.00,\n2015,5,30,\"WN\",\"1237\",\"ATL\",\"LGA\",3.00,11.00,0.00,\"\",0.00,143.00,108.00,762.00,,,,,,\n2015,5,30,\"WN\",\"1798\",\"ATL\",\"LGA\",22.00,5.00,0.00,\"\",0.00,128.00,109.00,762.00,,,,,,\n2015,5,30,\"WN\",\"1859\",\"ATL\",\"LGA\",0.00,0.00,0.00,\"\",0.00,140.00,113.00,762.00,,,,,,\n2015,5,30,\"WN\",\"2044\",\"BNA\",\"LGA\",-1.00,0.00,0.00,\"\",0.00,131.00,109.00,764.00,,,,,,\n2015,5,30,\"WN\",\"2753\",\"ROC\",\"BWI\",61.00,45.00,0.00,\"\",0.00,59.00,47.00,277.00,0.00,45.00,0.00,0.00,0.00,\n2015,5,30,\"WN\",\"3853\",\"ROC\",\"BWI\",87.00,72.00,0.00,\"\",0.00,65.00,48.00,277.00,72.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"WN\",\"1093\",\"ROC\",\"MCO\",-7.00,-21.00,0.00,\"\",0.00,146.00,136.00,1033.00,,,,,,\n2015,5,30,\"WN\",\"1735\",\"ROC\",\"MCO\",-5.00,-15.00,0.00,\"\",0.00,150.00,136.00,1033.00,,,,,,\n2015,5,30,\"WN\",\"2721\",\"ROC\",\"MDW\",0.00,7.00,0.00,\"\",0.00,112.00,82.00,523.00,,,,,,\n2015,5,30,\"WN\",\"2815\",\"ROC\",\"TPA\",-5.00,-14.00,0.00,\"\",0.00,156.00,143.00,1079.00,,,,,,\n2015,5,30,\"WN\",\"2638\",\"STL\",\"LGA\",13.00,28.00,0.00,\"\",0.00,160.00,147.00,888.00,12.00,0.00,15.00,0.00,1.00,\n2015,5,30,\"WN\",\"1057\",\"TPA\",\"ALB\",0.00,1.00,0.00,\"\",0.00,171.00,155.00,1130.00,,,,,,\n2015,5,30,\"WN\",\"3205\",\"TPA\",\"BUF\",2.00,-8.00,0.00,\"\",0.00,145.00,131.00,1053.00,,,,,,\n2015,5,30,\"WN\",\"4552\",\"TPA\",\"BUF\",-2.00,-12.00,0.00,\"\",0.00,150.00,139.00,1053.00,,,,,,\n2015,5,30,\"WN\",\"1297\",\"TPA\",\"ISP\",11.00,14.00,0.00,\"\",0.00,163.00,143.00,1034.00,,,,,,\n2015,5,30,\"WN\",\"2547\",\"TPA\",\"ISP\",3.00,4.00,0.00,\"\",0.00,161.00,148.00,1034.00,,,,,,\n2015,5,30,\"WN\",\"2753\",\"TPA\",\"ROC\",-3.00,-14.00,0.00,\"\",0.00,149.00,134.00,1079.00,,,,,,\n2015,5,31,\"WN\",\"223\",\"ALB\",\"BWI\",2.00,-10.00,0.00,\"\",0.00,68.00,56.00,289.00,,,,,,\n2015,5,31,\"WN\",\"752\",\"ALB\",\"BWI\",-6.00,-20.00,0.00,\"\",0.00,66.00,55.00,289.00,,,,,,\n2015,5,31,\"WN\",\"854\",\"ALB\",\"BWI\",23.00,39.00,0.00,\"\",0.00,91.00,76.00,289.00,16.00,0.00,16.00,0.00,7.00,\n2015,5,31,\"WN\",\"1011\",\"ALB\",\"BWI\",-4.00,-10.00,0.00,\"\",0.00,74.00,61.00,289.00,,,,,,\n2015,5,31,\"WN\",\"3294\",\"ALB\",\"BWI\",-6.00,-27.00,0.00,\"\",0.00,64.00,47.00,289.00,,,,,,\n2015,5,31,\"WN\",\"3917\",\"ALB\",\"BWI\",-5.00,-18.00,0.00,\"\",0.00,67.00,51.00,289.00,,,,,,\n2015,5,31,\"WN\",\"1987\",\"ALB\",\"FLL\",74.00,115.00,0.00,\"\",0.00,231.00,202.00,1204.00,74.00,0.00,41.00,0.00,0.00,\n2015,5,31,\"WN\",\"346\",\"ALB\",\"LAS\",-5.00,-35.00,0.00,\"\",0.00,300.00,288.00,2237.00,,,,,,\n2015,5,31,\"WN\",\"3919\",\"ALB\",\"MCO\",-10.00,-24.00,0.00,\"\",0.00,161.00,142.00,1073.00,,,,,,\n2015,5,31,\"WN\",\"4362\",\"ALB\",\"MCO\",-5.00,-10.00,0.00,\"\",0.00,170.00,142.00,1073.00,,,,,,\n2015,5,31,\"WN\",\"1550\",\"ALB\",\"MDW\",50.00,33.00,0.00,\"\",0.00,118.00,106.00,717.00,0.00,0.00,0.00,0.00,33.00,\n2015,5,31,\"WN\",\"4985\",\"ALB\",\"MDW\",0.00,-10.00,0.00,\"\",0.00,125.00,112.00,717.00,,,,,,\n2015,5,31,\"WN\",\"3650\",\"ALB\",\"TPA\",-4.00,-21.00,0.00,\"\",0.00,168.00,151.00,1130.00,,,,,,\n2015,5,31,\"WN\",\"815\",\"ATL\",\"LGA\",,,1.00,\"B\",0.00,,,762.00,,,,,,\n2015,5,31,\"WN\",\"1182\",\"ATL\",\"LGA\",,,1.00,\"B\",0.00,,,762.00,,,,,,\n2015,5,31,\"WN\",\"2516\",\"ATL\",\"LGA\",16.00,22.00,0.00,\"\",0.00,141.00,110.00,762.00,0.00,16.00,6.00,0.00,0.00,\n2015,5,31,\"WN\",\"2659\",\"ATL\",\"LGA\",-4.00,-25.00,0.00,\"\",0.00,124.00,104.00,762.00,,,,,,\n2015,5,31,\"WN\",\"3701\",\"ATL\",\"LGA\",16.00,3.00,0.00,\"\",0.00,122.00,104.00,762.00,,,,,,\n2015,5,31,\"WN\",\"255\",\"BNA\",\"LGA\",-1.00,-5.00,0.00,\"\",0.00,126.00,106.00,764.00,,,,,,\n2015,5,31,\"WN\",\"2433\",\"BNA\",\"LGA\",16.00,30.00,0.00,\"\",0.00,144.00,109.00,764.00,0.00,0.00,30.00,0.00,0.00,\n2015,5,31,\"WN\",\"2570\",\"BNA\",\"LGA\",220.00,213.00,0.00,\"\",0.00,128.00,99.00,764.00,0.00,0.00,213.00,0.00,0.00,\n2015,5,31,\"WN\",\"381\",\"BUF\",\"BWI\",110.00,105.00,0.00,\"\",0.00,65.00,48.00,281.00,0.00,0.00,42.00,0.00,63.00,\n2015,5,31,\"WN\",\"728\",\"BUF\",\"BWI\",16.00,12.00,0.00,\"\",0.00,66.00,48.00,281.00,,,,,,\n2015,5,31,\"WN\",\"1429\",\"BUF\",\"BWI\",-1.00,-20.00,0.00,\"\",0.00,66.00,50.00,281.00,,,,,,\n2015,5,31,\"WN\",\"1528\",\"BUF\",\"BWI\",3.00,-6.00,0.00,\"\",0.00,66.00,51.00,281.00,,,,,,\n2015,5,31,\"WN\",\"2423\",\"BUF\",\"BWI\",-1.00,-9.00,0.00,\"\",0.00,67.00,50.00,281.00,,,,,,\n2015,5,31,\"WN\",\"1785\",\"BUF\",\"FLL\",-4.00,-7.00,0.00,\"\",0.00,182.00,155.00,1166.00,,,,,,\n2015,5,31,\"WN\",\"361\",\"BUF\",\"LAS\",-2.00,-28.00,0.00,\"\",0.00,274.00,255.00,1986.00,,,,,,\n2015,5,31,\"WN\",\"615\",\"BUF\",\"LAS\",4.00,-21.00,0.00,\"\",0.00,265.00,252.00,1986.00,,,,,,\n2015,5,31,\"WN\",\"134\",\"BUF\",\"MCO\",28.00,23.00,0.00,\"\",0.00,155.00,136.00,1011.00,3.00,0.00,0.00,0.00,20.00,\n2015,5,31,\"WN\",\"674\",\"BUF\",\"MCO\",-4.00,-5.00,0.00,\"\",0.00,159.00,130.00,1011.00,,,,,,\n2015,5,31,\"WN\",\"854\",\"BUF\",\"MCO\",30.00,20.00,0.00,\"\",0.00,150.00,132.00,1011.00,0.00,0.00,0.00,0.00,20.00,\n2015,5,31,\"WN\",\"2141\",\"BUF\",\"MCO\",-3.00,-8.00,0.00,\"\",0.00,155.00,136.00,1011.00,,,,,,\n2015,5,31,\"WN\",\"717\",\"BUF\",\"MDW\",0.00,-21.00,0.00,\"\",0.00,89.00,75.00,468.00,,,,,,\n2015,5,31,\"WN\",\"2023\",\"BUF\",\"MDW\",0.00,-11.00,0.00,\"\",0.00,94.00,81.00,468.00,,,,,,\n2015,5,31,\"WN\",\"2632\",\"BUF\",\"MDW\",-7.00,-10.00,0.00,\"\",0.00,97.00,81.00,468.00,,,,,,\n2015,5,31,\"WN\",\"328\",\"BUF\",\"PHX\",-4.00,-34.00,0.00,\"\",0.00,260.00,247.00,1912.00,,,,,,\n2015,5,31,\"WN\",\"984\",\"BUF\",\"TPA\",0.00,-12.00,0.00,\"\",0.00,153.00,137.00,1053.00,,,,,,\n2015,5,31,\"WN\",\"2824\",\"BUF\",\"TPA\",-7.00,-21.00,0.00,\"\",0.00,151.00,138.00,1053.00,,,,,,\n2015,5,30,\"WN\",\"1412\",\"DEN\",\"LGA\",14.00,-4.00,0.00,\"\",0.00,217.00,198.00,1620.00,,,,,,\n2015,5,30,\"WN\",\"1498\",\"DEN\",\"LGA\",0.00,-18.00,0.00,\"\",0.00,212.00,198.00,1620.00,,,,,,\n2015,5,30,\"WN\",\"4725\",\"FLL\",\"ALB\",112.00,98.00,0.00,\"\",0.00,176.00,157.00,1204.00,86.00,0.00,0.00,0.00,12.00,\n2015,5,30,\"WN\",\"2695\",\"FLL\",\"BUF\",-3.00,-21.00,0.00,\"\",0.00,167.00,152.00,1166.00,,,,,,\n2015,5,30,\"WN\",\"1137\",\"FLL\",\"ISP\",-9.00,-24.00,0.00,\"\",0.00,160.00,145.00,1092.00,,,,,,\n2015,5,30,\"WN\",\"4912\",\"FLL\",\"ISP\",47.00,30.00,0.00,\"\",0.00,163.00,146.00,1092.00,30.00,0.00,0.00,0.00,0.00,\n2015,5,30,\"WN\",\"2054\",\"HOU\",\"LGA\",1.00,4.00,0.00,\"\",0.00,208.00,192.00,1428.00,,,,,,\n2015,5,30,\"WN\",\"2059\",\"HOU\",\"LGA\",,,1.00,\"B\",0.00,,,1428.00,,,,,,\n2015,5,30,\"WN\",\"1297\",\"ISP\",\"BWI\",6.00,5.00,0.00,\"\",0.00,74.00,52.00,220.00,,,,,,\n2015,5,30,\"WN\",\"1579\",\"ISP\",\"BWI\",3.00,-9.00,0.00,\"\",0.00,63.00,53.00,220.00,,,,,,\n2015,5,30,\"WN\",\"1929\",\"ISP\",\"BWI\",-7.00,-19.00,0.00,\"\",0.00,63.00,51.00,220.00,,,,,,\n2015,5,30,\"WN\",\"2547\",\"ISP\",\"BWI\",3.00,-9.00,0.00,\"\",0.00,63.00,52.00,220.00,,,,,,\n2015,5,30,\"WN\",\"1198\",\"ISP\",\"FLL\",1.00,-24.00,0.00,\"\",0.00,155.00,143.00,1092.00,,,,,,\n2015,5,30,\"WN\",\"1768\",\"ISP\",\"FLL\",25.00,-4.00,0.00,\"\",0.00,156.00,145.00,1092.00,,,,,,\n2015,5,30,\"WN\",\"1056\",\"ISP\",\"MCO\",-8.00,-21.00,0.00,\"\",0.00,147.00,129.00,971.00,,,,,,\n2015,5,30,\"WN\",\"1262\",\"ISP\",\"MCO\",12.00,-10.00,0.00,\"\",0.00,143.00,126.00,971.00,,,,,,\n2015,5,30,\"WN\",\"2551\",\"ISP\",\"MCO\",-1.00,-23.00,0.00,\"\",0.00,143.00,129.00,971.00,,,,,,\n2015,5,30,\"WN\",\"2836\",\"ISP\",\"MCO\",5.00,-15.00,0.00,\"\",0.00,145.00,131.00,971.00,,,,,,\n2015,5,30,\"WN\",\"959\",\"ISP\",\"PBI\",-4.00,-4.00,0.00,\"\",0.00,170.00,146.00,1052.00,,,,,,\n2015,5,30,\"WN\",\"3297\",\"ISP\",\"PBI\",-3.00,-21.00,0.00,\"\",0.00,152.00,140.00,1052.00,,,,,,\n2015,5,30,\"WN\",\"1216\",\"ISP\",\"TPA\",-3.00,-19.00,0.00,\"\",0.00,159.00,147.00,1034.00,,,,,,\n2015,5,30,\"WN\",\"4463\",\"ISP\",\"TPA\",-5.00,-16.00,0.00,\"\",0.00,159.00,146.00,1034.00,,,,,,\n2015,5,30,\"WN\",\"1795\",\"LAS\",\"ALB\",-1.00,-5.00,0.00,\"\",0.00,281.00,265.00,2237.00,,,,,,\n2015,5,30,\"WN\",\"2528\",\"LAS\",\"BUF\",15.00,11.00,0.00,\"\",0.00,251.00,235.00,1986.00,,,,,,\n2015,5,30,\"WN\",\"4561\",\"LAS\",\"BUF\",3.00,-9.00,0.00,\"\",0.00,248.00,229.00,1986.00,,,,,,\n2015,5,12,\"WN\",\"2023\",\"BUF\",\"MDW\",-4.00,-8.00,0.00,\"\",0.00,101.00,86.00,468.00,,,,,,\n2015,5,12,\"WN\",\"2632\",\"BUF\",\"MDW\",-1.00,-1.00,0.00,\"\",0.00,100.00,85.00,468.00,,,,,,\n2015,5,12,\"WN\",\"328\",\"BUF\",\"PHX\",-5.00,-1.00,0.00,\"\",0.00,294.00,282.00,1912.00,,,,,,\n2015,5,12,\"WN\",\"984\",\"BUF\",\"TPA\",-4.00,-18.00,0.00,\"\",0.00,151.00,137.00,1053.00,,,,,,\n2015,5,12,\"WN\",\"2824\",\"BUF\",\"TPA\",-6.00,-19.00,0.00,\"\",0.00,152.00,142.00,1053.00,,,,,,\n2015,5,12,\"WN\",\"334\",\"BWI\",\"ALB\",-3.00,-15.00,0.00,\"\",0.00,63.00,49.00,289.00,,,,,,\n2015,5,12,\"WN\",\"346\",\"BWI\",\"ALB\",-5.00,-11.00,0.00,\"\",0.00,59.00,49.00,289.00,,,,,,\n2015,5,12,\"WN\",\"598\",\"BWI\",\"ALB\",26.00,18.00,0.00,\"\",0.00,62.00,49.00,289.00,3.00,0.00,0.00,0.00,15.00,\n2015,5,12,\"WN\",\"1269\",\"BWI\",\"ALB\",-3.00,-15.00,0.00,\"\",0.00,63.00,49.00,289.00,,,,,,\n2015,5,12,\"WN\",\"3033\",\"BWI\",\"ALB\",0.00,-9.00,0.00,\"\",0.00,61.00,49.00,289.00,,,,,,\n2015,5,12,\"WN\",\"3919\",\"BWI\",\"ALB\",7.00,-5.00,0.00,\"\",0.00,58.00,49.00,289.00,,,,,,\n2015,5,12,\"WN\",\"328\",\"BWI\",\"BUF\",1.00,-6.00,0.00,\"\",0.00,58.00,44.00,281.00,,,,,,\n2015,5,12,\"WN\",\"572\",\"BWI\",\"BUF\",-2.00,-14.00,0.00,\"\",0.00,58.00,46.00,281.00,,,,,,\n2015,5,12,\"WN\",\"819\",\"BWI\",\"BUF\",-5.00,-10.00,0.00,\"\",0.00,60.00,44.00,281.00,,,,,,\n2015,5,12,\"WN\",\"854\",\"BWI\",\"BUF\",27.00,18.00,0.00,\"\",0.00,61.00,48.00,281.00,0.00,0.00,0.00,0.00,18.00,\n2015,5,12,\"WN\",\"1350\",\"BWI\",\"BUF\",-4.00,-13.00,0.00,\"\",0.00,56.00,44.00,281.00,,,,,,\n2015,5,12,\"WN\",\"1900\",\"BWI\",\"BUF\",64.00,61.00,0.00,\"\",0.00,72.00,49.00,281.00,0.00,0.00,0.00,0.00,61.00,\n2015,5,12,\"WN\",\"232\",\"BWI\",\"ISP\",9.00,3.00,0.00,\"\",0.00,59.00,40.00,220.00,,,,,,\n2015,5,12,\"WN\",\"752\",\"BWI\",\"ISP\",-7.00,-11.00,0.00,\"\",0.00,56.00,43.00,220.00,,,,,,\n2015,5,12,\"WN\",\"842\",\"BWI\",\"ISP\",-3.00,-9.00,0.00,\"\",0.00,59.00,41.00,220.00,,,,,,\n2015,5,12,\"WN\",\"2452\",\"BWI\",\"ISP\",-7.00,-19.00,0.00,\"\",0.00,58.00,43.00,220.00,,,,,,\n2015,5,12,\"WN\",\"4017\",\"BWI\",\"ISP\",-1.00,-1.00,0.00,\"\",0.00,60.00,36.00,220.00,,,,,,\n2015,5,12,\"WN\",\"597\",\"BWI\",\"ROC\",-4.00,-6.00,0.00,\"\",0.00,68.00,46.00,277.00,,,,,,\n2015,5,12,\"WN\",\"3564\",\"BWI\",\"ROC\",-3.00,-8.00,0.00,\"\",0.00,65.00,48.00,277.00,,,,,,\n2015,5,12,\"WN\",\"914\",\"CAK\",\"LGA\",12.00,-3.00,0.00,\"\",0.00,75.00,61.00,397.00,,,,,,\n2015,5,12,\"WN\",\"4728\",\"CAK\",\"LGA\",-5.00,-14.00,0.00,\"\",0.00,81.00,63.00,397.00,,,,,,\n2015,5,12,\"WN\",\"691\",\"DAL\",\"LGA\",14.00,-5.00,0.00,\"\",0.00,186.00,165.00,1381.00,,,,,,\n2015,5,12,\"WN\",\"1214\",\"DAL\",\"LGA\",12.00,-16.00,0.00,\"\",0.00,177.00,163.00,1381.00,,,,,,\n2015,5,12,\"WN\",\"2141\",\"DAL\",\"LGA\",5.00,-19.00,0.00,\"\",0.00,181.00,163.00,1381.00,,,,,,\n2015,5,12,\"WN\",\"2234\",\"DAL\",\"LGA\",-5.00,-27.00,0.00,\"\",0.00,183.00,165.00,1381.00,,,,,,\n2015,5,12,\"WN\",\"824\",\"DEN\",\"LGA\",1.00,-43.00,0.00,\"\",0.00,191.00,179.00,1620.00,,,,,,\n2015,5,12,\"WN\",\"1370\",\"DEN\",\"LGA\",4.00,-28.00,0.00,\"\",0.00,203.00,177.00,1620.00,,,,,,\n2015,5,12,\"WN\",\"1898\",\"FLL\",\"ALB\",-2.00,2.00,0.00,\"\",0.00,184.00,159.00,1204.00,,,,,,\n2015,5,12,\"WN\",\"4643\",\"FLL\",\"BUF\",9.00,-8.00,0.00,\"\",0.00,168.00,154.00,1166.00,,,,,,\n2015,5,12,\"WN\",\"28\",\"FLL\",\"ISP\",16.00,0.00,0.00,\"\",0.00,159.00,145.00,1092.00,,,,,,\n2015,5,12,\"WN\",\"4640\",\"FLL\",\"ISP\",-5.00,-12.00,0.00,\"\",0.00,163.00,149.00,1092.00,,,,,,\n2015,5,12,\"WN\",\"299\",\"HOU\",\"LGA\",-4.00,-24.00,0.00,\"\",0.00,190.00,170.00,1428.00,,,,,,\n2015,5,12,\"WN\",\"536\",\"HOU\",\"LGA\",31.00,15.00,0.00,\"\",0.00,189.00,174.00,1428.00,15.00,0.00,0.00,0.00,0.00,\n2015,5,12,\"WN\",\"1163\",\"HOU\",\"LGA\",71.00,38.00,0.00,\"\",0.00,177.00,164.00,1428.00,12.00,0.00,0.00,0.00,26.00,\n2015,5,31,\"WN\",\"2851\",\"PBI\",\"ISP\",1.00,-1.00,0.00,\"\",0.00,158.00,144.00,1052.00,,,,,,\n2015,5,31,\"WN\",\"4818\",\"PBI\",\"ISP\",77.00,79.00,0.00,\"\",0.00,162.00,146.00,1052.00,0.00,0.00,79.00,0.00,0.00,\n2015,5,31,\"WN\",\"2454\",\"PHX\",\"BUF\",16.00,11.00,0.00,\"\",0.00,240.00,227.00,1912.00,,,,,,\n2015,5,31,\"WN\",\"2749\",\"ROC\",\"BWI\",-5.00,-22.00,0.00,\"\",0.00,63.00,46.00,277.00,,,,,,\n2015,5,31,\"WN\",\"3874\",\"ROC\",\"BWI\",67.00,62.00,0.00,\"\",0.00,65.00,51.00,277.00,0.00,0.00,62.00,0.00,0.00,\n2015,5,31,\"WN\",\"597\",\"ROC\",\"MCO\",14.00,6.00,0.00,\"\",0.00,152.00,134.00,1033.00,,,,,,\n2015,5,31,\"WN\",\"747\",\"ROC\",\"MDW\",8.00,7.00,0.00,\"\",0.00,109.00,82.00,523.00,,,,,,\n2015,5,31,\"WN\",\"4712\",\"ROC\",\"MDW\",-5.00,-10.00,0.00,\"\",0.00,100.00,85.00,523.00,,,,,,\n2015,5,31,\"WN\",\"4655\",\"ROC\",\"TPA\",-7.00,-16.00,0.00,\"\",0.00,156.00,141.00,1079.00,,,,,,\n2015,5,29,\"WN\",\"178\",\"LGA\",\"ATL\",-2.00,-16.00,0.00,\"\",0.00,146.00,103.00,762.00,,,,,,\n2015,5,29,\"WN\",\"2939\",\"LGA\",\"ATL\",-1.00,-13.00,0.00,\"\",0.00,158.00,105.00,762.00,,,,,,\n2015,5,29,\"WN\",\"3133\",\"LGA\",\"ATL\",-1.00,-25.00,0.00,\"\",0.00,136.00,110.00,762.00,,,,,,\n2015,5,29,\"WN\",\"3391\",\"LGA\",\"ATL\",-2.00,-10.00,0.00,\"\",0.00,152.00,109.00,762.00,,,,,,\n2015,5,29,\"WN\",\"4728\",\"LGA\",\"ATL\",28.00,16.00,0.00,\"\",0.00,163.00,123.00,762.00,5.00,0.00,0.00,0.00,11.00,\n2015,5,29,\"WN\",\"914\",\"LGA\",\"BNA\",-5.00,-11.00,0.00,\"\",0.00,144.00,103.00,764.00,,,,,,\n2015,5,29,\"WN\",\"1208\",\"LGA\",\"BNA\",122.00,109.00,0.00,\"\",0.00,142.00,102.00,764.00,1.00,0.00,0.00,0.00,108.00,\n2015,5,29,\"WN\",\"1370\",\"LGA\",\"BNA\",-1.00,-27.00,0.00,\"\",0.00,139.00,101.00,764.00,,,,,,\n2015,5,29,\"WN\",\"202\",\"LGA\",\"CAK\",-3.00,-10.00,0.00,\"\",0.00,93.00,60.00,397.00,,,,,,\n2015,5,29,\"WN\",\"534\",\"LGA\",\"CAK\",120.00,97.00,0.00,\"\",0.00,77.00,60.00,397.00,0.00,0.00,0.00,0.00,97.00,\n2015,5,29,\"WN\",\"255\",\"LGA\",\"DAL\",0.00,-13.00,0.00,\"\",0.00,232.00,178.00,1381.00,,,,,,\n2015,5,29,\"WN\",\"431\",\"LGA\",\"DAL\",98.00,60.00,0.00,\"\",0.00,202.00,175.00,1381.00,0.00,0.00,0.00,0.00,60.00,\n2015,5,29,\"WN\",\"2347\",\"LGA\",\"DAL\",1.00,-36.00,0.00,\"\",0.00,208.00,178.00,1381.00,,,,,,\n2015,5,29,\"WN\",\"3489\",\"LGA\",\"DAL\",0.00,-24.00,0.00,\"\",0.00,206.00,182.00,1381.00,,,,,,\n2015,5,29,\"WN\",\"12\",\"LGA\",\"DEN\",28.00,19.00,0.00,\"\",0.00,266.00,217.00,1620.00,9.00,0.00,0.00,0.00,10.00,\n2015,5,29,\"WN\",\"165\",\"LGA\",\"DEN\",-7.00,-23.00,0.00,\"\",0.00,259.00,221.00,1620.00,,,,,,\n2015,5,29,\"WN\",\"682\",\"LGA\",\"HOU\",154.00,133.00,0.00,\"\",0.00,219.00,186.00,1428.00,4.00,0.00,0.00,0.00,129.00,\n2015,5,29,\"WN\",\"2778\",\"LGA\",\"HOU\",52.00,28.00,0.00,\"\",0.00,226.00,192.00,1428.00,2.00,0.00,0.00,0.00,26.00,\n2015,5,29,\"WN\",\"3845\",\"LGA\",\"HOU\",-4.00,-30.00,0.00,\"\",0.00,214.00,195.00,1428.00,,,,,,\n2015,5,29,\"WN\",\"413\",\"LGA\",\"MCI\",-9.00,-41.00,0.00,\"\",0.00,168.00,150.00,1107.00,,,,,,\n2015,5,29,\"WN\",\"479\",\"LGA\",\"MDW\",6.00,-11.00,0.00,\"\",0.00,128.00,105.00,725.00,,,,,,\n2015,5,29,\"WN\",\"777\",\"LGA\",\"MDW\",60.00,27.00,0.00,\"\",0.00,122.00,104.00,725.00,0.00,0.00,0.00,0.00,27.00,\n2015,5,29,\"WN\",\"868\",\"LGA\",\"MDW\",25.00,-6.00,0.00,\"\",0.00,129.00,104.00,725.00,,,,,,\n2015,5,29,\"WN\",\"2516\",\"LGA\",\"MDW\",26.00,2.00,0.00,\"\",0.00,136.00,103.00,725.00,,,,,,\n2015,5,29,\"WN\",\"2529\",\"LGA\",\"MDW\",-1.00,-10.00,0.00,\"\",0.00,141.00,105.00,725.00,,,,,,\n2015,5,29,\"WN\",\"2659\",\"LGA\",\"MDW\",-5.00,,0.00,\"\",1.00,,,725.00,,,,,,\n2015,5,29,\"WN\",\"4123\",\"LGA\",\"MDW\",0.00,-26.00,0.00,\"\",0.00,124.00,105.00,725.00,,,,,,\n2015,5,29,\"WN\",\"1344\",\"LGA\",\"MKE\",7.00,-19.00,0.00,\"\",0.00,124.00,105.00,738.00,,,,,,\n2015,5,29,\"WN\",\"2433\",\"LGA\",\"MKE\",8.00,-10.00,0.00,\"\",0.00,137.00,107.00,738.00,,,,,,\n2015,5,29,\"WN\",\"4379\",\"LGA\",\"MKE\",40.00,41.00,0.00,\"\",0.00,146.00,109.00,738.00,40.00,0.00,1.00,0.00,0.00,\n2015,5,29,\"WN\",\"536\",\"LGA\",\"STL\",14.00,-18.00,0.00,\"\",0.00,148.00,126.00,888.00,,,,,,\n2015,5,29,\"WN\",\"2168\",\"LGA\",\"STL\",-5.00,-13.00,0.00,\"\",0.00,152.00,125.00,888.00,,,,,,\n2015,5,29,\"WN\",\"4571\",\"LGA\",\"STL\",6.00,-17.00,0.00,\"\",0.00,147.00,123.00,888.00,,,,,,\n2015,5,29,\"WN\",\"333\",\"MCI\",\"LGA\",21.00,13.00,0.00,\"\",0.00,162.00,146.00,1107.00,,,,,,\n2015,5,29,\"WN\",\"1011\",\"MCO\",\"ALB\",-3.00,-8.00,0.00,\"\",0.00,160.00,148.00,1073.00,,,,,,\n2015,5,29,\"WN\",\"2849\",\"MCO\",\"ALB\",-4.00,3.00,0.00,\"\",0.00,167.00,144.00,1073.00,,,,,,\n2015,5,31,\"WN\",\"178\",\"LGA\",\"ATL\",1.00,-39.00,0.00,\"\",0.00,120.00,105.00,762.00,,,,,,\n2015,5,31,\"WN\",\"2939\",\"LGA\",\"ATL\",-8.00,-53.00,0.00,\"\",0.00,125.00,105.00,762.00,,,,,,\n2015,5,31,\"WN\",\"3133\",\"LGA\",\"ATL\",-1.00,-22.00,0.00,\"\",0.00,139.00,121.00,762.00,,,,,,\n2015,5,31,\"WN\",\"3391\",\"LGA\",\"ATL\",334.00,297.00,0.00,\"\",0.00,123.00,103.00,762.00,0.00,0.00,0.00,0.00,297.00,\n2015,5,31,\"WN\",\"4728\",\"LGA\",\"ATL\",58.00,47.00,0.00,\"\",0.00,164.00,108.00,762.00,0.00,0.00,32.00,0.00,15.00,\n2015,5,31,\"WN\",\"914\",\"LGA\",\"BNA\",-6.00,-30.00,0.00,\"\",0.00,126.00,105.00,764.00,,,,,,\n2015,5,31,\"WN\",\"1208\",\"LGA\",\"BNA\",256.00,240.00,0.00,\"\",0.00,139.00,124.00,764.00,0.00,228.00,0.00,0.00,12.00,\n2015,5,31,\"WN\",\"1370\",\"LGA\",\"BNA\",343.00,328.00,0.00,\"\",0.00,150.00,117.00,764.00,8.00,0.00,0.00,0.00,320.00,\n2015,5,31,\"WN\",\"202\",\"LGA\",\"CAK\",-8.00,-23.00,0.00,\"\",0.00,85.00,60.00,397.00,,,,,,\n2015,5,31,\"WN\",\"534\",\"LGA\",\"CAK\",,,1.00,\"C\",0.00,,,397.00,,,,,,\n2015,5,31,\"WN\",\"255\",\"LGA\",\"DAL\",0.00,-41.00,0.00,\"\",0.00,204.00,183.00,1381.00,,,,,,\n2015,5,31,\"WN\",\"431\",\"LGA\",\"DAL\",-2.00,-48.00,0.00,\"\",0.00,194.00,179.00,1381.00,,,,,,\n2015,5,31,\"WN\",\"2347\",\"LGA\",\"DAL\",366.00,339.00,0.00,\"\",0.00,218.00,188.00,1381.00,0.00,21.00,0.00,0.00,318.00,\n2015,5,31,\"WN\",\"165\",\"LGA\",\"DEN\",-6.00,-33.00,0.00,\"\",0.00,248.00,212.00,1620.00,,,,,,\n2015,5,31,\"WN\",\"3741\",\"LGA\",\"DEN\",438.00,434.00,0.00,\"\",0.00,271.00,231.00,1620.00,0.00,434.00,0.00,0.00,0.00,\n2015,5,31,\"WN\",\"682\",\"LGA\",\"HOU\",,,1.00,\"B\",0.00,,,1428.00,,,,,,\n2015,5,31,\"WN\",\"2778\",\"LGA\",\"HOU\",265.00,250.00,0.00,\"\",0.00,235.00,194.00,1428.00,0.00,250.00,0.00,0.00,0.00,\n2015,5,31,\"WN\",\"413\",\"LGA\",\"MCI\",,,1.00,\"B\",0.00,,,1107.00,,,,,,\n2015,5,31,\"WN\",\"479\",\"LGA\",\"MDW\",,,1.00,\"B\",0.00,,,725.00,,,,,,\n2015,5,31,\"WN\",\"777\",\"LGA\",\"MDW\",-2.00,9.00,0.00,\"\",0.00,166.00,118.00,725.00,,,,,,\n2015,5,31,\"WN\",\"868\",\"LGA\",\"MDW\",,,1.00,\"C\",0.00,,,725.00,,,,,,\n2015,5,31,\"WN\",\"2516\",\"LGA\",\"MDW\",20.00,100.00,0.00,\"\",0.00,240.00,118.00,725.00,0.00,0.00,80.00,0.00,20.00,\n2015,5,31,\"WN\",\"2529\",\"LGA\",\"MDW\",-4.00,-27.00,0.00,\"\",0.00,127.00,107.00,725.00,,,,,,\n2015,5,31,\"WN\",\"2659\",\"LGA\",\"MDW\",-4.00,9.00,0.00,\"\",0.00,168.00,109.00,725.00,,,,,,\n2015,5,31,\"WN\",\"4123\",\"LGA\",\"MDW\",10.00,-20.00,0.00,\"\",0.00,120.00,107.00,725.00,,,,,,\n2015,5,31,\"WN\",\"1344\",\"LGA\",\"MKE\",,,1.00,\"B\",0.00,,,738.00,,,,,,\n2015,5,31,\"WN\",\"2433\",\"LGA\",\"MKE\",32.00,98.00,0.00,\"\",0.00,221.00,114.00,738.00,2.00,0.00,66.00,0.00,30.00,\n2015,5,31,\"WN\",\"943\",\"LGA\",\"STL\",-1.00,-11.00,0.00,\"\",0.00,150.00,127.00,888.00,,,,,,\n2015,5,31,\"WN\",\"2643\",\"LGA\",\"STL\",241.00,243.00,0.00,\"\",0.00,182.00,131.00,888.00,0.00,226.00,2.00,0.00,15.00,\n2015,5,31,\"WN\",\"4571\",\"LGA\",\"STL\",,,1.00,\"B\",0.00,,,888.00,,,,,,\n2015,5,31,\"WN\",\"333\",\"MCI\",\"LGA\",,,1.00,\"B\",0.00,,,1107.00,,,,,,\n2015,5,31,\"WN\",\"1011\",\"MCO\",\"ALB\",-6.00,-10.00,0.00,\"\",0.00,161.00,148.00,1073.00,,,,,,\n2015,5,31,\"WN\",\"2849\",\"MCO\",\"ALB\",-5.00,-1.00,0.00,\"\",0.00,164.00,139.00,1073.00,,,,,,\n2015,5,31,\"WN\",\"728\",\"MCO\",\"BUF\",-1.00,-10.00,0.00,\"\",0.00,146.00,131.00,1011.00,,,,,,\n2015,5,31,\"WN\",\"801\",\"MCO\",\"BUF\",28.00,14.00,0.00,\"\",0.00,141.00,130.00,1011.00,,,,,,\n2015,5,31,\"WN\",\"2423\",\"MCO\",\"BUF\",-1.00,-2.00,0.00,\"\",0.00,154.00,134.00,1011.00,,,,,,\n2015,5,31,\"WN\",\"2632\",\"MCO\",\"BUF\",-3.00,-13.00,0.00,\"\",0.00,145.00,131.00,1011.00,,,,,,\n2015,5,31,\"WN\",\"293\",\"MCO\",\"ISP\",-3.00,-7.00,0.00,\"\",0.00,151.00,134.00,971.00,,,,,,\n2015,5,31,\"WN\",\"325\",\"MCO\",\"ISP\",6.00,7.00,0.00,\"\",0.00,151.00,134.00,971.00,,,,,,\n2015,5,31,\"WN\",\"426\",\"MCO\",\"ISP\",-5.00,-10.00,0.00,\"\",0.00,145.00,133.00,971.00,,,,,,\n2015,5,31,\"WN\",\"4486\",\"MCO\",\"ISP\",20.00,17.00,0.00,\"\",0.00,147.00,131.00,971.00,17.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"WN\",\"3935\",\"MCO\",\"ROC\",-1.00,-7.00,0.00,\"\",0.00,149.00,134.00,1033.00,,,,,,\n2015,5,31,\"WN\",\"103\",\"MDW\",\"ALB\",5.00,0.00,0.00,\"\",0.00,110.00,88.00,717.00,,,,,,\n2015,5,31,\"WN\",\"1461\",\"MDW\",\"ALB\",58.00,52.00,0.00,\"\",0.00,109.00,87.00,717.00,0.00,52.00,0.00,0.00,0.00,\n2015,5,31,\"WN\",\"134\",\"MDW\",\"BUF\",33.00,24.00,0.00,\"\",0.00,81.00,61.00,468.00,24.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"WN\",\"615\",\"MDW\",\"BUF\",1.00,-11.00,0.00,\"\",0.00,78.00,61.00,468.00,,,,,,\n2015,5,31,\"WN\",\"2241\",\"MDW\",\"BUF\",13.00,-13.00,0.00,\"\",0.00,74.00,59.00,468.00,,,,,,\n2015,5,31,\"WN\",\"33\",\"MDW\",\"LGA\",0.00,-4.00,0.00,\"\",0.00,126.00,96.00,725.00,,,,,,\n2015,5,31,\"WN\",\"682\",\"MDW\",\"LGA\",31.00,,0.00,\"\",1.00,,,725.00,,,,,,\n2015,5,31,\"WN\",\"803\",\"MDW\",\"LGA\",35.00,,1.00,\"C\",0.00,,,725.00,,,,,,\n2015,5,31,\"WN\",\"1945\",\"MDW\",\"LGA\",61.00,,0.00,\"\",1.00,,,725.00,,,,,,\n2015,5,31,\"WN\",\"2778\",\"MDW\",\"LGA\",-2.00,-5.00,0.00,\"\",0.00,122.00,95.00,725.00,,,,,,\n2015,5,31,\"WN\",\"4365\",\"MDW\",\"LGA\",150.00,138.00,0.00,\"\",0.00,118.00,99.00,725.00,138.00,0.00,0.00,0.00,0.00,\n2015,5,31,\"WN\",\"292\",\"MDW\",\"ROC\",10.00,1.00,0.00,\"\",0.00,81.00,66.00,523.00,,,,,,\n2015,5,31,\"WN\",\"2229\",\"MDW\",\"ROC\",0.00,-8.00,0.00,\"\",0.00,87.00,68.00,523.00,,,,,,\n2015,5,31,\"WN\",\"1208\",\"MKE\",\"LGA\",8.00,13.00,0.00,\"\",0.00,140.00,107.00,738.00,,,,,,\n2015,5,31,\"WN\",\"3391\",\"MKE\",\"LGA\",135.00,,0.00,\"\",1.00,,,738.00,,,,,,\n2015,5,31,\"WN\",\"1194\",\"STL\",\"LGA\",-4.00,-18.00,0.00,\"\",0.00,131.00,114.00,888.00,,,,,,\n2015,5,31,\"WN\",\"1986\",\"STL\",\"LGA\",,,1.00,\"B\",0.00,,,888.00,,,,,,\n2015,5,31,\"WN\",\"3741\",\"STL\",\"LGA\",41.00,,0.00,\"\",1.00,,,888.00,,,,,,\n2015,5,31,\"WN\",\"854\",\"TPA\",\"ALB\",-1.00,7.00,0.00,\"\",0.00,178.00,151.00,1130.00,,,,,,\n2015,5,31,\"WN\",\"127\",\"TPA\",\"BUF\",-5.00,-9.00,0.00,\"\",0.00,151.00,136.00,1053.00,,,,,,\n2015,5,31,\"WN\",\"2160\",\"TPA\",\"BUF\",50.00,50.00,0.00,\"\",0.00,155.00,142.00,1053.00,0.00,12.00,0.00,0.00,38.00,\n2015,5,31,\"WN\",\"2423\",\"TPA\",\"ISP\",3.00,3.00,0.00,\"\",0.00,155.00,140.00,1034.00,,,,,,\n2015,5,31,\"WN\",\"4390\",\"TPA\",\"ISP\",-4.00,-14.00,0.00,\"\",0.00,155.00,143.00,1034.00,,,,,,\n2015,5,31,\"WN\",\"3874\",\"TPA\",\"ROC\",2.00,-2.00,0.00,\"\",0.00,156.00,143.00,1079.00,,,,,,\n"
  },
  {
    "path": "week-4/titanic.csv",
    "content": "pclass,survived,name,age,embarked,home.dest,room,ticket,boat,gender\r\n1st,1,\"Allen, Miss Elisabeth Walton\",29,Southampton,\"St Louis, MO\",B-5,24160 L221,2,female\r\n1st,0,\"Allison, Miss Helen Loraine\",2,Southampton,\"Montreal, PQ / Chesterville, ON\",C26,,,female\r\n1st,0,\"Allison, Mr Hudson Joshua Creighton\",30,Southampton,\"Montreal, PQ / Chesterville, ON\",C26,,-135,male\r\n1st,0,\"Allison, Mrs Hudson J.C. (Bessie Waldo Daniels)\",25,Southampton,\"Montreal, PQ / Chesterville, ON\",C26,,,female\r\n1st,1,\"Allison, Master Hudson Trevor\",0.9167,Southampton,\"Montreal, PQ / Chesterville, ON\",C22,,11,male\r\n1st,1,\"Anderson, Mr Harry\",47,Southampton,\"New York, NY\",E-12,,3,male\r\n1st,1,\"Andrews, Miss Kornelia Theodosia\",63,Southampton,\"Hudson, NY\",D-7,13502 L77,10,female\r\n1st,0,\"Andrews, Mr Thomas, jr\",39,Southampton,\"Belfast, NI\",A-36,,,male\r\n1st,1,\"Appleton, Mrs Edward Dale (Charlotte Lamson)\",58,Southampton,\"Bayside, Queens, NY\",C-101,,2,female\r\n1st,0,\"Artagaveytia, Mr Ramon\",71,Cherbourg,\"Montevideo, Uruguay\",,,-22,male\r\n1st,0,\"Astor, Colonel John Jacob\",47,Cherbourg,\"New York, NY\",,17754 L224 10s 6d,-124,male\r\n1st,1,\"Astor, Mrs John Jacob (Madeleine Talmadge Force)\",19,Cherbourg,\"New York, NY\",,17754 L224 10s 6d,4,female\r\n1st,1,\"Aubert, Mrs Leontine Pauline\",NA,Cherbourg,\"Paris, France\",B-35,17477 L69 6s,9,female\r\n1st,1,\"Barkworth, Mr Algernon H.\",NA,Southampton,\"Hessle, Yorks\",A-23,,B,male\r\n1st,0,\"Baumann, Mr John D.\",NA,Southampton,\"New York, NY\",,,,male\r\n1st,1,\"Baxter, Mrs James (Helene DeLaudeniere Chaput)\",50,Cherbourg,\"Montreal, PQ\",B-58/60,,6,female\r\n1st,0,\"Baxter, Mr Quigg Edmond\",24,Cherbourg,\"Montreal, PQ\",B-58/60,,,male\r\n1st,0,\"Beattie, Mr Thomson\",36,Cherbourg,\"Winnipeg, MN\",C-6,,,male\r\n1st,1,\"Beckwith, Mr Richard Leonard\",37,Southampton,\"New York, NY\",D-35,,5,male\r\n1st,1,\"Beckwith, Mrs Richard Leonard (Sallie Monypeny)\",47,Southampton,\"New York, NY\",D-35,,5,female\r\n1st,1,\"Behr, Mr Karl Howell\",26,Cherbourg,\"New York, NY\",C-148,,5,male\r\n1st,0,\"Birnbaum, Mr Jakob\",25,Cherbourg,\"San Francisco, CA\",,,-148,male\r\n1st,1,\"Bishop, Mr Dickinson H.\",25,Cherbourg,\"Dowagiac, MI\",B-49,,7,male\r\n1st,1,\"Bishop, Mrs Dickinson H. (Helen Walton)\",19,Cherbourg,\"Dowagiac, MI\",B-49,,7,female\r\n1st,1,\"Bjornstrm-Steffansson, Mr Mauritz Hakan\",28,Southampton,\"Stockholm, Sweden / Washington, DC\",, ,D,male\r\n1st,0,\"Blackwell, Mr Stephen Weart\",45,Southampton,\"Trenton, NJ\",,,-241,male\r\n1st,1,\"Blank, Mr Henry\",39,Cherbourg,\"Glen Ridge, NJ\",A-31,,7,male\r\n1st,1,\"Bonnell, Miss Caroline\",30,Southampton,\"Youngstown, OH\",C-7,,8,female\r\n1st,1,\"Bonnell, Miss Elizabeth\",58,Southampton,\"Birkdale, England Cleveland, Ohio\",C-103,,8,female\r\n1st,0,\"Borebank, Mr John James\",NA,Southampton,\"London / Winnipeg, MB\",D-21/2,,,male\r\n1st,1,\"Bowen, Miss Grace Scott\",45,Cherbourg,\"Cooperstown, NY\",,,4,female\r\n1st,1,\"Bowerman, Miss Elsie Edith\",22,Southampton,\"St Leonards-on-Sea, England Ohio\",,,6,female\r\n1st,1,\"Bradley, Mr George\",NA,Southampton,\"Los Angeles, CA\",,,15,male\r\n1st,0,\"Brady, Mr John Bertram\",41,Southampton,\"Pomeroy, WA\",,,,male\r\n1st,0,\"Brandeis, Mr Emil\",48,Cherbourg,\"Omaha, NE\",,17591 L50 9s 11d,-208,male\r\n1st,0,\"Brewe, Dr Arthur Jackson\",NA,Cherbourg,\"Philadelphia, PA\",,,,male\r\n1st,1,\"Brown, Mrs James Joseph (Margaret Molly\"\" Tobin)\"\"\",44,Cherbourg,\"Denver, CO\",,17610 L27 15s 5d,6,female\r\n1st,1,\"Brown, Mrs John Murray (Caroline Lane Lamson)\",59,Southampton,\"Belmont, MA\",C-101,,D,female\r\n1st,1,\"Bucknell, Mrs William Robert (Emma Eliza Ward)\",60,Cherbourg,\"Philadelphia, PA\",,,8,female\r\n1st,0,\"Butt, Major Archibald Willingham\",45,Southampton,\"Washington, DC\",,,,male\r\n1st,1,\"Calderhead, Mr Edward P.\",NA,Southampton,\"New York, NY\",,,7-May,male\r\n1st,1,\"Candee, Mrs Edward (Helen Churchill Hungerford)\",53,Cherbourg,\"Washington, DC\",,,6,female\r\n1st,1,\"Cardeza, Mrs James Warburton Martinez (Charlotte Wardle Drake)\",58,Cherbourg,\"Germantown, Philadelphia, PA\",B-51/3/5,17755 L512 6s,3,female\r\n1st,1,\"Cardeza, Mr Thomas Drake Martinez\",36,Cherbourg,\"Austria-Hungary / Germantown, Philadelphia, PA\",B-51/3/5,17755 L512 6s,3,male\r\n1st,0,\"Carlsson, Mr Frans Olof\",33,Southampton,\"New York, NY\",,,,male\r\n1st,0,\"Carrau, Mr Francisco M.\",NA,Southampton,\"Montevideo, Uruguay\",,,,male\r\n1st,0,\"Carrau, Mr Jose Pedro\",NA,Southampton,\"Montevideo, Uruguay\",,,,male\r\n1st,1,\"Carter, Mr William Ernest\",36,Southampton,\"Bryn Mawr, PA\",,,C,male\r\n1st,1,\"Carter, Mrs William Ernest (Lucile Polk)\",36,Southampton,\"Bryn Mawr, PA\",,,4,female\r\n1st,1,\"Carter, Miss Lucile Polk\",14,Southampton,\"Bryn Mawr, PA\",,,4,female\r\n1st,1,\"Carter, Master William T. II\",11,Southampton,\"Bryn Mawr, PA\",,,4,male\r\n1st,0,\"Case, Mr Howard Brown\",49,Southampton,\"Ascot, Berkshire / Rochester, NY\",,,,male\r\n1st,1,\"Cassebeer, Mrs Henry Arthur jr (Genevieve Fosdick)\",NA,Cherbourg,\"New York, NY\",,,5,female\r\n1st,0,\"Cavendish, Mr Tyrell William\",36,Southampton,\"Little Onn Hall, Staffs\",,,-172,male\r\n1st,1,\"Cavendish, Mrs Tyrell William Julia Florence Siegel\",NA,Southampton,\"Little Onn Hall, Staffs\",,,6,female\r\n1st,0,\"Chaffee, Mr Herbert Fuller\",46,Southampton,\"Amenia, ND\",,,,male\r\n1st,1,\"Chaffee, Mrs Herbert Fuller (Carrie Constance Toogood)\",47,Southampton,\"Amenia, ND\",,,,female\r\n1st,1,\"Chambers, Mr Norman Campbell\",27,Southampton,\"New York, NY / Ithaca, NY\",,,5,male\r\n1st,1,\"Chambers, Mrs Norman Campbell (Bertha Griggs)\",31,Southampton,\"New York, NY / Ithaca, NY\",,,5,female\r\n1st,1,\"Cherry, Miss Gladys\",NA,Southampton,\"London, England\",,,8,female\r\n1st,1,\"Chevre, Mr Paul\",NA,Cherbourg,\"Paris, France\",,,7,male\r\n1st,1,\"Chibnall (Bowerman), Mrs Edith Martha\",NA,Southampton,\"St Leonards-on-Sea, England Ohio\",,,6,female\r\n1st,0,\"Chisholm, Mr Roderick Robert\",NA,,\"Liverpool, England / Belfast\",,,,male\r\n1st,0,\"Clark, Mr Walter Miller\",27,Cherbourg,\"Los Angeles, CA\",C-87,,,male\r\n1st,1,\"Clark, Mrs Walter Miller (Virginia McDowell)\",26,Cherbourg,\"Los Angeles, CA\",C-87,,4,female\r\n1st,0,\"Clifford, Mr George Quincy\",NA,Southampton,\"Stoughton, MA\",,,,male\r\n1st,0,\"Colley, Mr Edward Pomeroy\",NA,Southampton,\"Victoria, BC\",,,,male\r\n1st,1,\"Compton, Mrs Alexander Taylor (Mary Eliza Ingersoll)\",64,Cherbourg,\"Lakewood, NJ\",,,14,female\r\n1st,0,\"Compton, Mr Alexander Taylor, Jr\",37,Cherbourg,\"Lakewood, NJ\",,,,male\r\n1st,1,\"Compton, Miss Sara Rebecca\",39,Cherbourg,\"Lakewood, NJ\",,,14,female\r\n1st,1,\"Cornell, Mrs Robert Clifford (Malvina Helen Lamson)\",55,Southampton,\"New York, NY\",C-101,,2,female\r\n1st,0,\"Crafton, Mr John Bertram\",NA,Southampton,\"Roachdale, IN\",,,,male\r\n1st,0,\"Crosby, Captain Edward Gifford\",70,Southampton,\"Milwaukee, WI\",,,-269,male\r\n1st,1,\"Crosby, Mrs Edward Gifford (Catherine Elizabeth Halstead)\",69,Southampton,\"Milwaukee, WI\",,,5,female\r\n1st,1,\"Crosby, Miss Harriet R.\",36,Southampton,\"Milwaukee, WI\",,,5,female\r\n1st,0,\"Cumings, Mr John Bradley\",39,Cherbourg,\"New York, NY\",C-85,,,male\r\n1st,1,\"Cumings, Mrs John Bradley (Florence Briggs Thayer)\",38,Cherbourg,\"New York, NY\",C-85,,4,female\r\n1st,1,\"Daly, Mr Peter Denis \",NA,Southampton,\"Lima, Peru\",,,A,male\r\n1st,1,\"Daniel, Mr Robert Williams\",27,Southampton,\"Philadelphia, PA\",,,7,male\r\n1st,0,\"Davidson, Mr Thornton\",31,Southampton,\"Montreal, PQ\",,,,male\r\n1st,1,\"Davidson, Mrs Thornton (Orian Hays)\",27,Southampton,\"Montreal, PQ\",,,3,female\r\n1st,1,\"de Villiers, Madame Berthe\",NA,Cherbourg,\"Belgium  Montreal, PQ\",,,6,female\r\n1st,1,\"Dick, Mr Albert Adrian\",31,Cherbourg,\"Calgary, AB\",,,3,male\r\n1st,1,\"Dick, Mrs Albert Adrian Vera Gillespie\",17,Cherbourg,\"Calgary, AB\",,,3,female\r\n1st,1,\"Dodge, Dr. Washington\",NA,Southampton,\"San Francisco, CA\",,,13,male\r\n1st,1,\"Dodge, Mrs Washington (Ruth Vidaver)\",NA,Southampton,\"San Francisco, CA\",,,7-May,female\r\n1st,1,\"Dodge, Master Washington\",4,Southampton,\"San Francisco, CA\",,,7-May,male\r\n1st,1,\"Douglas, Mrs Frederick Charles (Suzette Baxter)\",27,Cherbourg,\"Montreal, PQ\",,,6,female\r\n1st,0,\"Douglas, Mr Walter Donald\",50,Cherbourg,\"Deephaven, MN / Cedar Rapids, IA\",,,-62,male\r\n1st,1,\"Douglas, Mrs Walter Donald (Mahala Dutton)\",48,Cherbourg,\"Deephaven, MN / Cedar Rapids, IA\",,,2,female\r\n1st,1,\"Duff Gordon, Sir Cosmo Edmund\",49,Cherbourg,London / Paris,,11755 L39 12s,1,male\r\n1st,1,\"Duff Gordon, Lady (Lucille Wallace Sutherland)\",48,Cherbourg,London / Paris,,17485 L56 18s 7d,1,female\r\n1st,0,\"Dulles, Mr William Crothers\",39,Cherbourg,\"Philadelphia, PA\",,,-133,male\r\n1st,1,\"Earnshaw, Mrs Boulton (Olive Potter)\",23,Cherbourg,\"Mt Airy, Philadelphia, PA\",,,7,female\r\n1st,1,\"Eustis, Miss Elizabeth Mussey\",53,Cherbourg,\"Brookline, MA\",,,4,female\r\n1st,0,\"Evans, Miss Edith Corse\",36,Cherbourg,\"New York, NY\",,,,female\r\n1st,1,\"Flegenheim, Mrs Alfred (Antoinette)\",NA,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Flynn, Mr John Irving\",NA,Southampton,\"Brooklyn, NY\",,,7-May,male\r\n1st,0,\"Foreman, Mr Benjamin Laventall\",30,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Fortune, Miss Alice Elizabeth\",24,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,0,\"Fortune, Mr Charles Alexander\",19,Southampton,\"Winnipeg, MB\",,,,male\r\n1st,1,\"Fortune, Miss Ethel Flora\",28,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,1,\"Fortune, Miss Mabel\",23,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,0,\"Fortune, Mr Mark\",64,Southampton,\"Winnipeg, MB\",,,,male\r\n1st,1,\"Fortune, Mrs Mark (Mary McDougald)\",60,Southampton,\"Winnipeg, MB\",,,10,female\r\n1st,0,\"Franklin, Mr Thomas Parham\",NA,Southampton,\"Westcliff-on-Sea, Essex\",,,,male\r\n1st,1,\"Frauenthal, Dr Henry William\",49,Cherbourg,\"New York, NY\",,,5,male\r\n1st,1,\"Frauenthal, Mrs Henry William (Clara Heinsheimer)\",NA,Cherbourg,\"New York, NY\",,,5,female\r\n1st,1,\"Frauenthal, Mr Isaac Gerald\",44,Southampton,\"New York, NY\",,,5,male\r\n1st,1,\"Frolicher, Miss Marguerite\",22,Cherbourg,\"Zurich, Switzerland\",,,5,female\r\n1st,1,\"Frolicher-Stehli, Mr Maxmillian\",60,Cherbourg,\"Zurich, Switzerland\",,,5,male\r\n1st,1,\"Frolicher-Stehli, Mrs Maxmillian (Margaretha Emerentia Stehli)\",48,Cherbourg,\"Zurich, Switzerland\",,,5,female\r\n1st,0,\"Futrelle, Mr Jacques\",37,Southampton,\"Scituate, MA\",,,,male\r\n1st,1,\"Futrelle, Mrs Jacques (May Peel)\",35,Southampton,\"Scituate, MA\",,,9,female\r\n1st,0,\"Gee, Mr Arthur H.\",47,Southampton,\"St Anne's-on-Sea, Lancashire\",,,-275,male\r\n1st,1,\"Gibson, Miss Dorothy\",22,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Gibson, Mrs Leonard (Pauline C. Boeson)\",45,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Goldenberg, Mr Samuel L.\",49,Cherbourg,\"Paris, France / New York, NY\",,,5,male\r\n1st,1,\"Goldenberg, Mrs Samuel L. (Edwiga Grabowsko)\",NA,Cherbourg,\"Paris, France / New York, NY\",,,5,female\r\n1st,0,\"Goldschmidt, Mr George B.\",71,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Gracie, Colonel Archibald IV\",54,Southampton,\"Washington, DC\",C-51,113780 L28 10s,B,male\r\n1st,0,\"Graham, Mr George Edward\",38,Southampton,\"Winnipeg, MB\",,,-147,male\r\n1st,1,\"Graham, Miss Margaret Edith\",19,Southampton,\"Greenwich, CT\",C-125,17582 L153 9s 3d,3,female\r\n1st,1,\"Graham, Mrs William Thompson (Edith Junkins)\",58,Southampton,\"Greenwich, CT\",C-91,17582 L153 9s 3d,3,female\r\n1st,1,\"Greenfield, Mrs Leo David (Blanche Strouse)\",45,Cherbourg,\"New York, NY\",,,7,female\r\n1st,1,\"Greenfield, Mr William Bertram\",23,Cherbourg,\"New York, NY\",,,7,male\r\n1st,0,\"Guggenheim, Mr Benjamin\",46,Cherbourg,\"New York, NY\",B-82/4,17593 L56 18s 7d,,male\r\n1st,1,\"Harder, Mr George Achilles\",25,Cherbourg,\"Brooklyn, NY\",,,5,male\r\n1st,1,\"Harder, Mrs George Achilles (Dorothy Annan)\",21,Cherbourg,\"Brooklyn, NY\",,,5,female\r\n1st,1,\"Harper, Mr Henry Sleeper\",48,Cherbourg,\"New York, NY\",,,3,male\r\n1st,1,\"Harper, Mrs Henry Sleeper (Myna Haxtun)\",49,Cherbourg,\"New York, NY\",,,3,female\r\n1st,0,\"Harris, Mr Henry Birkhardt\",45,Southampton,\"New York, NY\",C-83,36973 L83 9s 6d,,male\r\n1st,1,\"Harris, Mrs Henry Birkhardt (Irene Wallach)\",36,Southampton,\"New York, NY\",C-83,36973 L83 9s 6d,D,female\r\n1st,1,\"Hawksford, Mr Walter James\",NA,Southampton,\"Kingston, Surrey\",,,3,male\r\n1st,0,\"Hays, Mr Charles Melville\",55,Southampton,\"Montreal, PQ\",,,-307,male\r\n1st,1,\"Hays, Mrs Charles Melville (Clara Jennings Gregg)\",52,Southampton,\"Montreal, PQ\",,,3,female\r\n1st,1,\"Hays, Miss Margaret Bechstein\",24,Southampton,\"New York, NY\",,,7,female\r\n1st,0,\"Head, Mr Christopher\",NA,Southampton,London / Middlesex,,,,male\r\n1st,0,\"Hilliard, Mr Herbert Henry\",NA,Southampton,\"Brighton, MA\",,,,male\r\n1st,0,\"Hipkins, Mr William Edward\",NA,Southampton,London / Birmingham,,,,male\r\n1st,1,\"Hippach, Miss Jean Gertrude\",16,Cherbourg,\"Chicago, IL\",B-18,111361 L57 19s 7d,4,female\r\n1st,1,\"Hippach, Mrs Louis Albert (Ida Sophia Fischer)\",44,Cherbourg,\"Chicago, IL\",B-18,111361 L57 19s 7d,4,female\r\n1st,1,\"Hogeboom, Mrs John C. (Anna Andrews)\",51,Southampton,\"Hudson, NY\",D-?,13502 L77,10,female\r\n1st,0,\"Holverson, Mr Alexander Oskar\",42,Southampton,\"New York, NY\",,,-38,male\r\n1st,1,\"Holverson, Mrs Alexander Oskar (Mary Aline Towner)\",35,Southampton,\"New York, NY\",,,,female\r\n1st,1,\"Homer, Mr Harry\",35,Cherbourg,\"Indianapolis, IN\",,,15,male\r\n1st,1,\"Hoyt, Mr Frederick Maxfield\",38,Southampton,\"New York, NY /  Stamford CT\",C-93,,D,male\r\n1st,1,\"Hoyt, Mrs Frederick Maxfield (Jane Anne Forby)\",35,Southampton,\"New York, NY /  Stamford CT\",C-93,,D,female\r\n1st,0,\"Hoyt, Mr William F.\",NA,Cherbourg,\"New York, NY\",,,14,male\r\n1st,0,\"Isham, Miss Anne Elizabeth\",50,Cherbourg,\"Paris, France New York, NY\",C-49,,,female\r\n1st,1,\"Ismay, Mr Joseph Bruce\",49,Southampton,Liverpool,B-52/4/6,112058 Complimentary,C,male\r\n1st,0,\"Jones, Mr Charles Cresson\",46,Southampton,\"Bennington, VT\",,,-80,male\r\n1st,0,\"Julian, Mr Henry Forbes\",NA,Southampton,London,,,,male\r\n1st,0,\"Kent, Mr Edward Austin\",58,Cherbourg,\"Buffalo, NY\",,,-258,male\r\n1st,0,\"Kenyon, Mr Frederick R.\",41,Southampton,\"Southington / Noank, CT\",,,,male\r\n1st,1,\"Kenyon, Mrs Frederick R. (Marion)\",NA,Southampton,\"Southington / Noank, CT\",,,8,female\r\n1st,1,\"Kimball, Mr Edwin Nelson Jr.\",42,Southampton,\"Boston, MA\",,,5,male\r\n1st,1,\"Kimball, Mrs Edwin Nelson Jr. (Gertrude Parsons)\",40,Southampton,\"Boston, MA\",,,5,female\r\n1st,0,\"Klaber, Mr Herman\",NA,Southampton,\"Portland, OR\",,,,male\r\n1st,1,\"Leader, Dr Alice Farnham\",NA,Southampton,\"New York, NY\",,,8,female\r\n1st,0,\"Lewy, Mr Ervin G.\",NA,Cherbourg,\"Chicago, IL\",,,,male\r\n1st,0,\"Lindeberg-Lind, Mr Erik Gustaf\",42,Southampton,\"Stockholm, Sweden\",,,,male\r\n1st,1,\"Lindstrom, Mrs Carl Johan (Sigrid Posse)\",55,Cherbourg,\"Stockholm, Sweden\",,,6,female\r\n1st,1,\"Lines, Mrs Ernest H. (Elizabeth Lindsey James)\",50,Cherbourg,\"Paris, France\",,,9,female\r\n1st,1,\"Lines, Miss Mary Conover\",16,Cherbourg,\"Paris, France\",,,9,female\r\n1st,0,\"Lingrey, Mr Edward\",NA,,,,,,male\r\n1st,0,\"Long, Mr Milton Clyde\",29,Southampton,\"Springfield, MA\",,,-126,male\r\n1st,1,\"Longley, Miss Gretchen Fiske\",21,Southampton,\"Hudson, NY\",D-?,13502 L77,10,female\r\n1st,0,\"Loring, Mr Joseph Holland\",30,Southampton,\"London / New York, NY\",,,,male\r\n1st,1,\"Madill, Miss Georgette Alexandra\",15,Southampton,\"St Louis, MO\",B-5,24160 L221,2,female\r\n1st,0,\"Maguire, Mr John Edward\",30,Southampton,\"Brockton, MA\",,,,male\r\n1st,1,\"Marechal, Mr Pierre\",NA,Cherbourg,\"Paris, France\",,,7,male\r\n1st,0,\"Marvin, Mr Daniel Warner\",NA,Southampton,\"New York, NY\",,,,male\r\n1st,1,\"Marvin, Mrs Daniel Warner (Mary Graham Carmichael Farquarson)\",NA,Southampton,\"New York, NY\",,,,female\r\n1st,0,\"McCaffry, Mr Thomas Francis\",46,Cherbourg,\"Vancouver, BC\",,,-292,male\r\n1st,0,\"McCarthy, Mr Timothy J.\",54,Southampton,\"Dorchester, MA\",,,-175,male\r\n1st,1,\"McGough, Mr James R.\",36,Southampton,\"Philadelphia, PA\",,,7,male\r\n1st,0,\"Meyer, Mr Edgar Joseph\",28,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Meyer, Mrs Edgar Joseph (Leila Saks)\",NA,Cherbourg,\"New York, NY\",,,6,female\r\n1st,0,\"Millet, Mr Francis Davis\",65,Southampton,\"East Bridgewater, MA\",,,-249,male\r\n1st,1,\"Minahan, Miss Daisy E.\",33,Queenstown,\"Green Bay, WI\",,,14,female\r\n1st,0,\"Minahan, Dr William Edward\",44,Queenstown,\"Fond du Lac, WI\",,,-230,male\r\n1st,1,\"Minahan, Mrs William Edward (Lillian E. Thorpe)\",37,Queenstown,\"Fond du Lac, WI\",,,14,female\r\n1st,1,\"Mock, Mr Philip E.\",NA,Cherbourg,\"New York, NY\",,,11,male\r\n1st,0,\"Molson, Mr Harry Markland\",55,Southampton,\"Montreal, PQ\",,,,male\r\n1st,0,\"Moore, Mr Clarence Bloomfield\",47,Southampton,\"Washington, DC\",,,,male\r\n1st,0,\"Natsch, Mr Charles H.\",36,Cherbourg,\"Brooklyn, NY\",,,,male\r\n1st,0,\"Newell, Mr Arthur Webster\",58,Cherbourg,\"Lexington, MA\",,,-122,male\r\n1st,1,\"Newell, Miss Madeleine\",31,Cherbourg,\"Lexington, MA\",,,6,female\r\n1st,1,\"Newell, Miss Marjorie\",23,Cherbourg,\"Lexington, MA\",,,6,female\r\n1st,1,\"Newsom, Miss Helen Monypeny\",19,Southampton,\"New York, NY\",,,5,female\r\n1st,0,\"Nicholson, Mr Arthur Ernest\",64,Southampton,\"Isle of Wight, England\",,,-263,male\r\n1st,1,\"Omont, Mr A. Fernand\",NA,Cherbourg,\"Paris, France\",,,7,male\r\n1st,0,\"Ostby, Mr Engelhart Cornelius\",64,Cherbourg,\"Providence, RI\",,,-234,male\r\n1st,1,\"Ostby, Miss Helen Raghnild\",22,Cherbourg,\"Providence, RI\",,,5,female\r\n1st,0,\"Ovies y Rodriguez, Mr Servando\",28,,\"?Havana, Cuba\",,,-189,male\r\n1st,0,\"Parr, Mr William Henry Marsh\",NA,,Belfast,,,,male\r\n1st,0,\"Partner, Mr Austin\",NA,Southampton,\"Surbiton Hill, Surrey\",,,-166,male\r\n1st,0,\"Payne, Mr Vivian Ponsonby\",22,Southampton,\"Montreal, PQ\",,,,male\r\n1st,0,\"Pears, Mr Thomas\",NA,Southampton,\"Isleworth, England\",,,,male\r\n1st,1,\"Pears, Mrs Thomas (Edith)\",NA,Southampton,\"Isleworth, England\",,,8,female\r\n1st,0,\"Penasco, Mr Victor de Satode\",18,Cherbourg,\"Madrid, Spain\",,,,male\r\n1st,1,\"Penasco, Mrs Victor de Satode (Josefa de Soto)\",17,Cherbourg,\"Madrid, Spain\",,,8,female\r\n1st,1,\"Peuchen, Major Arthur Godfrey\",52,Southampton,\"Toronto, ON\",C-104,,6,male\r\n1st,0,\"Porter, Mr Walter Chamberlain\",46,Southampton,\"Worcester, MA\",,,-207,male\r\n1st,1,\"Potter, Mrs Thomas, Jr. (Lily Alexenia Wilson)\",56,Cherbourg,\"Mt Airy, Philadelphia, PA\",,,7,female\r\n1st,0,\"Reuchlin, Jonkheer John George\",NA,Southampton,\"Rotterdam, Netherlands\",,,,male\r\n1st,1,\"Rheims, Mr George Lucien\",NA,Cherbourg,\"Paris /  New York, NY\",,17604 L39 12s,A,male\r\n1st,1,\"Robert, Mrs Edward Scott (Elisabeth Walton McMillan)\",43,Southampton,\"St Louis, MO\",B-3,24160 L221,2,female\r\n1st,0,\"Roebling, Mr Washington Augustus 2nd\",31,Southampton,\"Trenton, NJ\",,,,male\r\n1st,1,\"Romaine, Mr Charles Hallace\",NA,Southampton,\"New York, NY\",,,15,male\r\n1st,0,\"Rood, Mr Hugh R.\",NA,Southampton,\"Seattle, WA\",,,,male\r\n1st,1,\"Rosenbaum (Russell), Miss Edith Louise\",33,Cherbourg,\"Paris, France\",A-11,17613 L27 14s 5d,11,female\r\n1st,0,\"Ross, Mr John Hugo\",NA,Cherbourg,\"Winnipeg, MB\",,,,male\r\n1st,1,\"Rothes, the Countess of (Noel Lucy Martha Dyer-Edwardes)\",27,Southampton,\"London  Vancouver, BC\",,,8,female\r\n1st,0,\"Rothschild, Mr Martin\",55,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Rothschild, Mrs Martin (Elizabeth L. Barrett)\",54,Cherbourg,\"New York, NY\",,,6,female\r\n1st,0,\"Rowe, Mr Alfred G.\",NA,Southampton,London,,,-109,male\r\n1st,0,\"Ryerson, Mr Arthur Larned\",61,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,,male\r\n1st,1,\"Ryerson, Mrs Arthur Larned (Emily Maria Borie)\",48,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,female\r\n1st,1,\"Ryerson, Miss Emily Borie\",18,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,female\r\n1st,1,\"Ryerson, Master John Borie\",13,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,male\r\n1st,1,\"Ryerson, Miss Susan (Suzette) Parker\",21,Cherbourg,\"Haverford, PA / Cooperstown, NY\",,17608 L262 7s 6d,4,female\r\n1st,1,\"Saalfeld, Mr Adolphe\",NA,Southampton,\"Manchester, England\",,,3,male\r\n1st,1,\"Salomon, Mr Abraham L.\",NA,Southampton,\"New York, NY\",,,1,male\r\n1st,1,\"Schabert, Mrs Paul (Emma Mock)\",NA,Cherbourg,\"New York, NY\",,,11,female\r\n1st,1,\"Seward, Mr Frederic Kimber\",34,Southampton,\"New York, NY\",,,7,male\r\n1st,1,\"Shutes, Miss Elizabeth W.\",40,Southampton,\"New York, NY / Greenwich CT\",C-125,17582 L153 9s 3d,3,female\r\n1st,1,\"Silverthorne, Mr Spencer Victor\",36,Southampton,\"St Louis, MO\",,,5,male\r\n1st,0,\"Silvey, Mr William Baird\",50,,\"Duluth, MN\",,,,male\r\n1st,1,\"Silvey, Mrs William Baird (Alice Munger)\",39,,\"Duluth, MN\",,,,female\r\n1st,1,\"Simonius-Blumer, Col Alfons\",56,,\"Basel, Switzerland\",,,3,male\r\n1st,1,\"Sloper, Mr William Thompson\",28,Southampton,\"New Britain, CT\",,,7,male\r\n1st,0,\"Smart, Mr John Montgomery\",56,Southampton,\"New York, NY\",,,,male\r\n1st,0,\"Smith, Mr James Clinch\",56,Cherbourg,\"St James, Long Island, NY\",,,,male\r\n1st,0,\"Smith, Mr Lucien Philip\",24,Southampton,\"Huntington, WV\",,,,male\r\n1st,1,\"Smith, Mrs Lucien Philip (Mary Eloise Hughes\",18,Southampton,\"Huntington, WV\",,,6,female\r\n1st,0,\"Smith, Mr Richard William\",NA,Southampton,\"Streatham, Surrey\",,,,male\r\n1st,1,\"Snyder, Mr John Pillsbury\",24,Southampton,\"Minneapolis, MN\",,,7,male\r\n1st,1,\"Snyder, Mrs John Pillsbury (Nelle Stevenson)\",23,Southampton,\"Minneapolis, MN\",,,7,female\r\n1st,1,\"Spedden, Mr Frederick Oakley\",45,Cherbourg,\"Tuxedo Park, NY\",,,3,male\r\n1st,1,\"Spedden, Mrs Frederick Oakley (Margaretta Corning Stone)\",40,Cherbourg,\"Tuxedo Park, NY\",,,3,female\r\n1st,1,\"Spedden, Master Robert Douglas\",6,Cherbourg,\"Tuxedo Park, NY\",,,3,male\r\n1st,0,\"Spencer, Mr William Augustus\",57,Cherbourg,\"Paris, France\",,,,male\r\n1st,1,\"Spencer, Mrs William Augustus (Marie Eugenie)\",NA,Cherbourg,\"Paris, France\",,,6,female\r\n1st,1,\"Staehlin, Dr Max\",32,Cherbourg,\"Basel, Switzerland\",,,3,male\r\n1st,0,\"Stead, Mr William Thomas\",62,Southampton,\"Wimbledon Park, London / Hayling Island, Hants\",C-89,,,male\r\n1st,1,\"Stengel, Mr Charles Emil Henry\",54,Cherbourg,\"Newark, NJ\",,,1,male\r\n1st,1,\"Stengel, Mrs Charles Emil Henry (Annie May Morris)\",43,Cherbourg,\"Newark, NJ\",,,5,female\r\n1st,1,\"Stephenson, Mrs Walter Bertram (Martha Eustis)\",52,,\"Haverford, PA\",,,4,female\r\n1st,0,\"Stewart, Mr Albert A.\",NA,Cherbourg,\"Gallipolis, Ohio / ? Paris / New York\",,,,male\r\n1st,1,\"Stone, Mrs George Nelson (Martha E.)\",62,,\"Cincinatti, OH\",,,6,female\r\n1st,0,\"Straus, Mr Isidor\",67,Southampton,\"New York, NY\",,17483 L221 15s 7d,-96,male\r\n1st,0,\"Straus, Mrs Isidor (Ida Blun)\",63,Southampton,\"New York, NY\",,17483 L221 15s 7d,,female\r\n1st,0,\"Sutton, Mr Frederick\",61,Southampton,\"Haddenfield, NJ\",,,-46,male\r\n1st,1,\"Swift, Mrs Frederick Joel (Margaret Welles Barron)\",46,Southampton,\"Brooklyn, NY\",,,8,female\r\n1st,0,\"Taussig, Mr Emil\",52,Southampton,\"New York, NY\",,,,male\r\n1st,1,\"Taussig, Mrs Emil (Tillie Mandelbaum)\",39,Southampton,\"New York, NY\",,,8,female\r\n1st,1,\"Taussig, Miss Ruth\",18,Southampton,\"New York, NY\",,,8,female\r\n1st,1,\"Taylor, Mr Elmer Zebley\",48,Southampton,\"London /  East Orange, NJ\",C-126,,5,male\r\n1st,1,\"Taylor, Mrs Elmer Zebley (Juliet Cummins Wright)\",NA,Southampton,\"London /  East Orange, NJ\",C-126,,5,female\r\n1st,0,\"Thayer, Mr John Borland\",49,Cherbourg,\"Haverford, PA\",,,,male\r\n1st,1,\"Thayer, Mrs John Borland (Marian Longstreth Morris)\",39,Cherbourg,\"Haverford, PA\",,,4,female\r\n1st,1,\"Thayer, Mr John Borland, jr.\",17,Cherbourg,\"Haverford, PA\",,,B,male\r\n1st,0,\"Thorne, Mr George (alias of: Mr George Rosenshine)\",46,Cherbourg,\"New York, NY\",,,,male\r\n1st,1,\"Thorne, Mrs Gertrude Maybelle\",NA,Cherbourg,\"New York, NY\",,,D,female\r\n1st,1,\"Tucker, Mr Gilbert Milligan, jr\",31,Cherbourg,\"Albany, NY\",,,7,male\r\n1st,0,\"Uruchurtu, Mr Manuel E.\",NA,Cherbourg,\"Mexico City, Mexico\",,,,male\r\n1st,0,\"Van Derhoef, Mr Wyckoff\",61,Southampton,\"Brooklyn, NY\",,,-245,male\r\n1st,0,\"Walker, Mr William Anderson\",47,Southampton,\"East Orange, NJ\",,,,male\r\n1st,0,\"Warren, Mr Frank Manley\",64,Cherbourg,\"Portland, OR\",,,,male\r\n1st,1,\"Warren, Mrs Frank Manley (Anna S. Atkinson)\",60,Cherbourg,\"Portland, OR\",,,5,female\r\n1st,0,\"Weir, Col John\",60,Southampton,\"England Salt Lake City, Utah\",,,,male\r\n1st,1,\"White, Mrs J. Stuart (Ella Holmes)\",55,Cherbourg,\"New York, NY / Briarcliff Manor NY\",,,8,female\r\n1st,0,\"White, Mr Percival Wayland\",54,Southampton,\"Brunswick, ME\",,,,male\r\n1st,0,\"White, Mr Richard Frasar\",21,Southampton,\"Brunswick, ME\",,,-169,male\r\n1st,0,\"Wick, Mr George Dennick\",57,Southampton,\"Youngstown, OH\",,,,male\r\n1st,1,\"Wick, Mrs George Dennick (Martha Hitchcock)\",45,Southampton,\"Youngstown, OH\",,,8,female\r\n1st,1,\"Wick, Miss Mary Natalie\",31,Southampton,\"Youngstown, OH\",C-7,,8,female\r\n1st,0,\"Widener, Mr George Dunton\",50,Cherbourg,\"Elkins Park, PA\",,,,male\r\n1st,1,\"Widener, Mrs George Dunton (Eleanor Elkins)\",50,Cherbourg,\"Elkins Park, PA\",,,4,female\r\n1st,0,\"Widener, Mr Harry Elkins\",27,Cherbourg,\"Elkins Park, PA\",,,,male\r\n1st,1,\"Willard, Miss Constance\",20,Southampton,\"Duluth, MN\",,,,female\r\n1st,0,\"Williams, Mr Charles Duane\",51,Cherbourg,\"Geneva, Switzerland / Radnor, PA\",,,,male\r\n1st,0,\"Williams, Mr Fletcher Lambert\",NA,Southampton,\"London, England\",,,,male\r\n1st,1,\"Williams, Mr Richard Norris II\",21,Cherbourg,\"Geneva, Switzerland / Radnor, PA\",,,A,male\r\n1st,1,\"Woolner, Mr Hugh\",NA,Southampton,\"London, England\",,,D,male\r\n1st,0,\"Wright, Mr George\",NA,Southampton,\"Halifax, NS\",,,,male\r\n1st,1,\"Young, Miss Marie Grice\",36,Cherbourg,\"New York, NY / Washington, DC\",,,8,female\r\n1st,1,\"Barber, Ms \",NA,Southampton,,,,,female\r\n1st,1,\"Bazzani, Ms Albina\",NA,Cherbourg,,,,,female\r\n1st,1,\"Bidois, Miss Rosalie\",NA,Cherbourg,,,17754,,female\r\n1st,1,\"Bird, Ms Ellen\",NA,Southampton,,C-97,17483,,female\r\n1st,1,\"Bissetti, Ms Amelia\",NA,Cherbourg,,C-99,,,female\r\n1st,1,\"Burns, Ms Elizabeth Margaret\",NA,Cherbourg,,,,,female\r\n1st,1,\"Chaudanson, Ms \tVictorine\",NA,Cherbourg,,,17608,,female\r\n1st,1,\"Cleaver, Ms Alice\",NA,Southampton,,C22,,11,female\r\n1st,1,\"Daniels, Ms Sarah\",NA,Southampton,,C-22,,8,female\r\n1st,1,\"Endres, Miss Caroline Louise\",NA,Cherbourg,\"New York, NY\",C-45,17754 L224 10s 6d,4,female\r\n1st,0,\"Farthing, Mr John\",NA,Southampton,,C-55 (?C-95),17483,,male\r\n1st,0,\"Fleming, Ms Margaret\",NA,Cherbourg,,,,4,female\r\n1st,1,\"Francatelli, Ms Laura Mabel\",NA,Cherbourg,,,17485,,female\r\n1st,0,\"Fry, Mr Richard\",NA,Southampton,,B-102,112058,,male\r\n1st,1,\"Geiger, Miss Emily \",NA,Cherbourg,,,,,female\r\n1st,0,\"Giglio, Mr Victor\",NA,Cherbourg,,B-86,17593,,male\r\n1st,0,\"Harrington, Mr Charles\",NA,Southampton,,,,,male\r\n1st,0,\"Harrison, Mr William \tHenry\",40,Southampton,,,112059,-110,male\r\n1st,0,\"Hassah, Mr Hamad\",NA,Cherbourg,,,,,male\r\n1st,1,\"Icabad (Icabod), Ms\",NA,,,,,,female\r\n1st,0,\"Keeping, Mr Edwin\",32,Cherbourg,,,,-45,male\r\n1st,1,\"Kenchen, Ms Amelia\",NA,Southampton,,,,2,female\r\n1st,1,\"LeRoy, Miss Berthe\",NA,Cherbourg,,,,2,female\r\n1st,0,\"Lesneur, Mr Gustave\",NA,Cherbourg,,B-?,,,male\r\n1st,1,\"Maloney, Ms\",NA,Southampton,,,,8,female\r\n1st,0,\"Oliva, Mlle\",NA,Cherbourg,,,,,female\r\n1st,1,\"Pericault, Ms\",NA,Southampton,,,,,female\r\n1st,0,\"Ringhini, Mr Sante\",33,Cherbourg,,,,-232,male\r\n1st,0,\"Robbins, Mr Victor\",NA,Cherbourg,,C-62,17754,,male\r\n1st,1,\"Segesser, Mlle. Emma\",NA,Cherbourg,,,,,female\r\n1st,0,\"Seredeca, Ms\",NA,Southampton,,,,,female\r\n1st,0,\"Ward, Ms Anna\",NA,Cherbourg,,,,,female\r\n1st,1,\"Wilson, Ms Helen\",NA,Cherbourg,,,,,female\r\n2nd,0,\"Abelson, Mr Samuel\",30,Cherbourg,\"Russia New York, NY\",,,,male\r\n2nd,1,\"Abelson, Mrs Samuel (Anna)\",28,Cherbourg,\"Russia New York, NY\",,,12,female\r\n2nd,0,\"Andrew, Mr Edgar Samuel\",18,Southampton,\"Buenos Aires, Argentina / New Jersey, NJ\",,,,male\r\n2nd,0,\"Andrew, Mr Frank\",NA,Southampton,\"Cornwall, England Houghton, MI\",,,,male\r\n2nd,0,\"Angle, Mr William A.\",34,Southampton,\"Warwick, England\",,,,male\r\n2nd,1,\"Angle, Mrs William A. (Florence)\",32,Southampton,\"Warwick, England\",,,,female\r\n2nd,0,\"Ashby, Mr John\",57,Southampton,\"West Hoboken, NJ\",,,,male\r\n2nd,0,\"Bailey, Mr Percy Andrew\",18,Southampton,\"Penzance, Cornwall / Akron, OH\",,,,male\r\n2nd,0,\"Baimbrigge, Mr Charles R.\",23,Southampton,Guernsey,,,,male\r\n2nd,1,\"Balls, Mrs Ada E. Hall\",36,Southampton,\"Bristol, Avon / Jacksonville, FL\",,,,female\r\n2nd,0,\"Banfield, Mr Frederick J.\",28,Southampton,\"Plymouth, Dorset / Houghton, MI\",,,,male\r\n2nd,0,\"Bateman, Rev Robert James\",51,Southampton,\"Jacksonville, FL\",,,-174,male\r\n2nd,1,\"Beane, Mr Edward\",32,Southampton,\"Norwich / New York, NY\",,,,male\r\n2nd,1,\"Beane, Mrs Edward (Ethel Clarke)\",19,Southampton,\"Norwich / New York, NY\",,,,female\r\n2nd,0,\"Beauchamp, Mr Henry James\",28,Southampton,England,,,,male\r\n2nd,1,\"Becker, Mrs Allen Oliver (Nellie E. Baumgardner)\",36,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,11,female\r\n2nd,1,\"Becker, Miss Marion Louise\",4,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,11,female\r\n2nd,1,\"Becker, Master Richard F.\",1,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,11,male\r\n2nd,1,\"Becker, Miss Ruth Elizabeth\",12,Southampton,\"Guntur, India / Benton Harbour, MI\",,230136 L39,13,female\r\n2nd,1,\"Beesley, Mr Lawrence\",34,Southampton,London,D-56,248698 L13,13,male\r\n2nd,1,\"Bentham, Miss Lilian W.\",19,Southampton,\"Rochester, NY\",,,12,female\r\n2nd,0,\"Berriman, Mr William S.\",23,Southampton,\"St Ives, Cornwall / Calumet, MI\",,,,male\r\n2nd,0,\"Botsford, Mr William Hull\",26,Southampton,\"Elmira, NY / Orange, NJ\",,,,male\r\n2nd,0,\"Bowenur, Mr Solomon\",NA,Southampton,London,,,,male\r\n2nd,0,\"Bracken, Mr James H.\",27,Southampton,\"Lake Arthur, Chavez County, NM\",,,,male\r\n2nd,1,\"Brown, Miss Edith E.\",15,Southampton,\"Cape Town, South Africa / Seattle, WA\",,,14,female\r\n2nd,0,\"Brown, Mr Thomas William Solomon\",45,Southampton,\"Cape Town, South Africa / Seattle, WA\",,,,male\r\n2nd,1,\"Brown, Mrs Thomas William Solomon (Elizabeth C.)\",40,Southampton,\"Cape Town, South Africa / Seattle, WA\",,,14,female\r\n2nd,1,\"Bryhl, Miss Dagmar\",20,Southampton,\"Skara, Sweden / Rockford, IL\",,,12,female\r\n2nd,0,\"Bryhl, Mr Kurt Arnold Gottfrid\",25,Southampton,\"Skara, Sweden / Rockford, IL\",,,,male\r\n2nd,1,\"Buss, Miss Kate\",36,Southampton,\"Sittingbourne, England / San Diego, CA\",E-?,27849,9,female\r\n2nd,0,\"Butler, Mr Reginald Fenton\",25,Southampton,\"Southsea, Hants\",,,-97,male\r\n2nd,0,\"Byles, Rev. Thomas Roussel D.\",NA,Southampton,London,,,,male\r\n2nd,1,\"Bystrom, Mrs Carolina\",42,Southampton,\"New York, NY\",,,,female\r\n2nd,1,\"Caldwell, Mr Albert Francis\",26,Southampton,\"Bangkok, Thailand / Roseville, IL\",,,13,male\r\n2nd,1,\"Caldwell, Mrs Albert Francis (Sylvia Mae Harbaugh)\",26,Southampton,\"Bangkok, Thailand / Roseville, IL\",,,13,female\r\n2nd,1,\"Caldwell, Master Alden Gates\",0.8333,Southampton,\"Bangkok, Thailand / Roseville, IL\",,,13,male\r\n2nd,1,\"Cameron, Miss Clear\",31,Southampton,\"Mamaroneck, NY\",,,,female\r\n2nd,0,\"Campbell, Mr William\",NA,,Belfast,,,,male\r\n2nd,0,\"Carbines, Mr William\",19,Southampton,\"St Ives, Cornwall / Calumet, MI\",,,-18,male\r\n2nd,0,\"Carter, Rev Ernest Courtenay\",54,Southampton,London,,,,male\r\n2nd,0,\"Carter, Mrs Ernest Courtenay (Lillian Hughes)\",44,Southampton,London,,,,female\r\n2nd,0,\"Chapman, Mr Charles Henry\",52,Southampton,\"Bronx, NY\",,,-130,male\r\n2nd,0,\"Chapman, Mr John Henry\",30,Southampton,\"Cornwall / Spokane, WA\",,,-17,male\r\n2nd,0,\"Chapman, Mrs John Henry (Elizabeth Lawry)\",30,Southampton,\"Cornwall / Spokane, WA\",,,,female\r\n2nd,1,\"Christy, Mrs Alice Frances\",NA,Southampton,London,,,,female\r\n2nd,1,\"Christy, Miss Julie\",NA,Southampton,London,,,,female\r\n2nd,0,\"Clarke, Mr Charles V.\",29,Southampton,\"England / San Francisco, CA\",,,,male\r\n2nd,1,\"Clarke, Mrs Charles V. (Ada Maria)\",NA,Southampton,\"England / San Francisco, CA\",,,14,female\r\n2nd,0,\"Coleridge, Mr Reginald Charles\",29,Southampton,\"Hartford, Huntingdonshire\",,,,male\r\n2nd,0,\"Collander, Mr Erik\",27,Southampton,\"Helsinki, Finland Ashtabula, Ohio\",,,,male\r\n2nd,1,\"Collett, Mr Sidney C. Stuart\",24,Southampton,\"London / Fort Byron, NY\",,,9,male\r\n2nd,0,\"Collyer, Mr Harvey\",35,Southampton,\"Bishopstoke, Hants / Fayette Valley, ID\",,,,male\r\n2nd,1,\"Collyer, Mrs Harvey (Charlotte Tate)\",31,Southampton,\"Bishopstoke, Hants / Fayette Valley, ID\",,,14,female\r\n2nd,1,\"Collyer, Miss Marjorie\",8,Southampton,\"Bishopstoke, Hants / Fayette Valley, ID\",,,14,female\r\n2nd,0,\"Cook, Mrs Selena Rogers\",22,Southampton,Pennsylvania,F-33,,14,female\r\n2nd,0,\"Corbett, Mrs Walter H. (Irene Colvin)\",30,Southampton,\"Provo, UT\",,,,female\r\n2nd,0,\"Corey, Mrs Percy C. (Mary Phyllis Elizabeth Miller)\",NA,Southampton,\"Upper Burma, India Pittsburgh, PA\",,,,female\r\n2nd,0,\"Cotterill, Mr Harry\",20,Southampton,\"Penzance, Cornwall / Akron, OH\",,,,male\r\n2nd,0,\"Cunningham, Mr Alfred Fleming\",NA,,Belfast,,,,male\r\n2nd,0,\"Davies, Mr Charles Henry\",21,Southampton,\"Lyndhurst, England\",,,,male\r\n2nd,1,\"Davis, Mrs Agnes\",49,Southampton,\"St Ives, Cornwall / Hancock, MI\",,,,female\r\n2nd,1,\"Davis, Master John Morgan\",8,Southampton,\"St Ives, Cornwall / Hancock, MI\",,,,male\r\n2nd,1,\"Davis, Miss Mary\",28,Southampton,\"London / Staten Island, NY\",,,13,female\r\n2nd,0,\"Deacon, Mr Percy\",18,Southampton,,,,,male\r\n2nd,0,\"de Brito, Mr Jose Joaquim\",NA,,\"Portugal / Sau Paulo, Brazil\",,,,male\r\n2nd,0,\"del Carlo, Mr Sebastiano\",28,Cherbourg,\"Lucca, Italy / California\",,,-295,male\r\n2nd,1,\"del Carlo, Mrs Sebastiano (Argenia Genovese)\",22,Cherbourg,\"Lucca, Italy / California\",,,,female\r\n2nd,0,\"Denbury, Mr Herbert\",25,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Dibden, Mr William\",18,Southampton,\"New Forest, England\",,,,male\r\n2nd,1,\"Doling, Mrs Ada\",32,Southampton,Southampton,,,,female\r\n2nd,1,\"Doling, Miss Elsie\",18,Southampton,Southampton,,,,female\r\n2nd,0,\"Downton (?Douton), Mr William James\",NA,Southampton,\"Holley, NY\",,,,male\r\n2nd,0,\"Drew, Mr James Vivian\",42,Southampton,\"Greenport, NY\",,28220 L32 10s,,male\r\n2nd,1,\"Drew, Mrs James Vivian (Lulu Thorne Christian)\",34,Southampton,\"Greenport, NY\",,28220 L32 10s,,female\r\n2nd,1,\"Drew, Master Marshall Brines\",8,Southampton,\"Greenport, NY\",,28220 L32 10s,,male\r\n2nd,1,\"Duran y More, Miss Asuncion\",NA,Cherbourg,\"Barcelona, Spain / Havana, Cuba\",,,12,female\r\n2nd,1,\"Duran y More, Miss Florentina\",NA,Cherbourg,\"Barcelona, Spain / Havana, Cuba\",,,12,female\r\n2nd,0,\"Eitemiller, Mr George Floyd\",23,Southampton,\"England / Detroit, MI\",,,,male\r\n2nd,0,\"Enander, Mr Ingvar\",21,Southampton,\"Goteborg, Sweden / Rockford, IL\",,,,male\r\n2nd,0,\"Fahlstrom, Mr Arne Jonas\",19,Southampton,\"Oslo, Norway Bayonne, NJ\",,,,male\r\n2nd,0,\"Faunthorpe, Mr Harry\",NA,Southampton,\"England / Philadelphia, PA\",,,-286,male\r\n2nd,1,\"Faunthorpe, Mrs Lizzie (see Wilkinson, E.)\",NA,,,,,,female\r\n2nd,0,\"Fillbrook, Mr Charles\",NA,Southampton,\"Cornwall / Houghton, MI\",,,,male\r\n2nd,0,\"Fox, Mr Stanley H.\",38,Southampton,\"Rochester, NY\",,229236 L13,-236,male\r\n2nd,0,\"Frost, Mr Anthony (Archie) W.\",NA,,Belfast,,,,male\r\n2nd,0,\"Funk, Miss Annie C.\",38,Southampton,\"Janjgir, India / Pennsylvania\",,,,female\r\n2nd,0,\"Fynney, Mr Joseph J.\",35,Southampton,\"Liverpool / Montreal, PQ\",,,-322,male\r\n2nd,0,\"Gale, Mr Harry\",35,Southampton,\"Cornwall / Clear Creek, CO\",,,,male\r\n2nd,0,\"Gale, Mr Shadrach\",38,Southampton,\"Cornwall / Clear Creek, CO\",,,,male\r\n2nd,1,\"Garside, Miss Ethel\",24,Southampton,\"Brooklyn, NY\",,,,female\r\n2nd,0,\"Gaskell, Mr Alfred\",16,Southampton,\"Liverpool / Montreal, PQ\",,,,male\r\n2nd,0,\"Gavey, Mr Lawrence\",26,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Gilbert, Mr William\",45,Southampton,Cornwall,,,,male\r\n2nd,0,\"Giles, Mr Edgar\",24,Southampton,\"Cornwall / Camden, NJ\",,,,male\r\n2nd,0,\"Giles, Mr Frederick\",21,Southampton,\"Cornwall / Camden, NJ\",,,,male\r\n2nd,0,\"Giles, Mr Ralph\",22,Southampton,\"West Kensington, London\",,,-297,male\r\n2nd,0,\"Gill, Mr John W.\",NA,Southampton,\"Clevedon, England\",,,,male\r\n2nd,0,\"Gillespie, Mr William\",34,Southampton,\"Vancouver, BC\",,,,male\r\n2nd,0,\"Givard, Mr Hans Christensen\",30,Southampton,,,,-305,male\r\n2nd,0,\"Greenberg, Mr Samuel\",50,Southampton,\"Bronx, NY\",,,-19,male\r\n2nd,0,\"Hale, Mr Reginald\",30,Southampton,\"Auburn, NY\",,,-75,male\r\n2nd,1,\"Hamalainen, Mrs William (Anna)\",23,Southampton,\"Detroit, MI\",,,,female\r\n2nd,1,\"Hamalainen, Master Viljo\",1,Southampton,\"Detroit, MI\",,,,male\r\n2nd,0,\"Harbeck, Mr William H.\",44,Southampton,\"Seattle, WA / Toledo, OH\",,248749 L13,-35,male\r\n2nd,0,\"Harper, Rev John\",28,Southampton,\"Denmark Hill, Surrey / Chicago\",,,,male\r\n2nd,1,\"Harper, Miss Nina\",6,Southampton,\"Denmark Hill, Surrey / Chicago\",,,11,female\r\n2nd,1,\"Harris, Mr George\",30,Southampton,London,,,,male\r\n2nd,0,\"Harris, Mr Walter\",NA,Southampton,\"Walthamstow, England\",,,,male\r\n2nd,0,\"Hart, Mr Benjamin\",43,Southampton,\"Ilford, Essex / Winnipeg, MB\",,13529 L26 5s,,male\r\n2nd,1,\"Hart, Mrs Benjamin (Esther)\",45,Southampton,\"Ilford, Essex / Winnipeg, MB\",,13529 L26 5s,14,female\r\n2nd,1,\"Hart, Miss Eva Miriam\",7,Southampton,\"Ilford, Essex / Winnipeg, MB\",,13529 L26 5s,14,female\r\n2nd,1,\"Herman, Miss Alice\",24,Southampton,\"Somerset / Bernardsville, NJ\",,,9,female\r\n2nd,1,\"Herman, Miss Kate\",24,Southampton,\"Somerset / Bernardsville, NJ\",,,9,female\r\n2nd,0,\"Herman, Mr Samuel\",49,Southampton,\"Somerset / Bernardsville, NJ\",,,,male\r\n2nd,1,\"Herman, Mrs Samuel (Jane Laver)\",48,Southampton,\"Somerset / Bernardsville, NJ\",,,9,female\r\n2nd,1,\"Hewlett, Mrs Mary D.\",NA,Southampton,\"India / Rapid City, SD\",,,13,female\r\n2nd,0,\"Hickman, Mr Leonard Mark\",34,Southampton,\"West Hampstead, London / Neepawa, MB\",,,-256,male\r\n2nd,0,\"Hickman, Mr Lewis\",32,Southampton,\"West Hampstead, London / Neepawa, MB\",,,,male\r\n2nd,0,\"Hickman, Mr Stanley George\",21,Southampton,\"West Hampstead, London / Neepawa, MB\",,,,male\r\n2nd,0,\"Hiltunen, Miss Marta\",18,Southampton,\"Kontiolahti, Finland / Detroit, MI\",,,,female\r\n2nd,1,\"Hocking, Mrs Elizabeth\",53,Southampton,\"Cornwall / Akron, OH\",,,4,female\r\n2nd,0,\"Hocking, Mr George\",23,Southampton,\"Cornwall / Akron, OH\",,,,male\r\n2nd,1,\"Hocking, Miss Ellen (Nellie)\",21,Southampton,\"Cornwall / Akron, OH\",,,4,female\r\n2nd,0,\"Hocking, Mr Samuel James\",NA,Southampton,\"Devonport, England\",,,,male\r\n2nd,0,\"Hodges, Mr Henry Price\",52,Southampton,Southampton,,,-149,male\r\n2nd,0,\"Hold, Mr Stephen\",42,Southampton,\"England / Sacramento, CA\",,,,male\r\n2nd,1,\"Hold, Mrs Stephen (Annie Margaret)\",36,Southampton,\"England / Sacramento, CA\",,,,female\r\n2nd,0,\"Hood, Mr Ambrose, Jr\",21,Southampton,\"New Forest, England\",,,,male\r\n2nd,1,\"Hosono, Mr Masafumi\",41,Southampton,\"Tokyo, Japan\",,,13,male\r\n2nd,0,\"Howard, Mr Benjamin\",NA,Southampton,\"Swindon, England\",,,,male\r\n2nd,0,\"Howard, Mrs Benjamin (Ellen Truelove)\",NA,Southampton,\"Swindon, England\",,,,female\r\n2nd,0,\"Hunt, Mr George Henry\",33,Southampton,\"Philadelphia, PA\",,,,male\r\n2nd,1,\"Ilett, Miss Bertha\",17,Southampton,Guernsey,,,,female\r\n2nd,0,Jacobsohn Mr Sidney Samuel,NA,Southampton,London,,,,male\r\n2nd,1,\"Jacobsohn, Mrs Sidney Samuel (Amy Frances Christy)\",NA,Southampton,London,,,,female\r\n2nd,0,\"Jarvis, Mr John Denzil\",NA,Southampton,\"North Evington, England\",,,,male\r\n2nd,0,\"Jefferys, Mr Clifford\",NA,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Jefferys, Mr Ernest\",NA,Southampton,\"Guernsey / Elizabeth, NJ\",,,,male\r\n2nd,0,\"Jenkin, Mr Stephen Curnow\",NA,Southampton,\"St Ives, Cornwall / Houghton, MI\",,,,male\r\n2nd,1,\"Jerwan, Mrs Amin S. (Marie Thuillard)\",23,Cherbourg,\"New York, NY\",,,,female\r\n2nd,0,\"Kantor, Mr Sinai\",34,Southampton,\"Moscow / Bronx, NY\",,,-283,male\r\n2nd,1,\"Kantor, Mrs Sinai (Miriam Sternim)\",NA,Southampton,\"Moscow / Bronx, NY\",,,,female\r\n2nd,0,\"Karnes, Mrs J. Frank (Claire Bennett)\",22,Southampton,\"India / Pittsburgh, PA\",,,,female\r\n2nd,0,\"Keane, Mr Daniel\",NA,Queenstown,,,,,male\r\n2nd,1,\"Keane, Miss Nora A.\",NA,Queenstown,\"Harrisburg, PA\",E-101,,10,female\r\n2nd,1,\"Kelly, Mrs Florence (Fannie)\",45,Southampton,\"London / New York, NY\",,,,female\r\n2nd,0,\"Kirkland, Rev Charles Leonard\",NA,Queenstown,\"Glasgow / Bangor, ME\",,,,male\r\n2nd,0,\"Knight, Mr Robert\",NA,,Belfast,,,,male\r\n2nd,0,\"Kvillner, Mr Johan Henrik Johannesson\",31,Southampton,\"Sweden / Arlington, NJ\",,,-165,male\r\n2nd,0,\"Lahtinen, Rev William\",30,Southampton,\"Minneapolis, MN\",,,,male\r\n2nd,0,\"Lahtinen, Mrs William (Anna Sylvan)\",26,Southampton,\"Minneapolis, MN\",,,,female\r\n2nd,0,\"Lamb, Mr John James\",NA,Queenstown,,,,,male\r\n2nd,1,\"Lemore, Mrs Amelia\",34,Southampton,\"Chicago, IL\",F-33,,14/D,female\r\n2nd,0,\"LaRoche, Mr Joseph\",26,Cherbourg,Paris / Haiti,,,,male\r\n2nd,1,\"LaRoche, Mrs Joseph (Juliet)\",22,Cherbourg,Paris / Haiti,,,,female\r\n2nd,1,\"LaRoche, Miss Louise\",1,Cherbourg,Paris / Haiti,,,,female\r\n2nd,1,\"LaRoche, Miss Simonne\",3,Cherbourg,Paris / Haiti,,,,female\r\n2nd,1,\"Lehmann, Miss Bertha\",NA,Cherbourg,\"Berne, Switzerland / Central City, IA\",,,,female\r\n2nd,1,\"Leitch, Miss Jessie\",NA,Southampton,\"London / Chicago, IL\",,,11,female\r\n2nd,0,\"Levy, Mr Rene Jacques\",NA,Cherbourg,\"Montreal, PQ\",,,,male\r\n2nd,0,\"Leyson, Mr Robert William Norman\",25,Southampton,,,,-108,male\r\n2nd,0,\"Lingan, Mr John\",NA,Queenstown,,,,,male\r\n2nd,0,\"Louch, Mr Charles Alexander\",48,Southampton,\"Weston-Super-Mare, Somerset\",,,-121,male\r\n2nd,1,\"Louch, Mrs Charles Alexander (Alice Adelaide)\",NA,Southampton,\"Weston-Super-Mare, Somerset\",,,14,female\r\n2nd,0,\"Mack, Mrs Mary\",57,Southampton,\"Southampton / New York, NY\",E77,,-52,female\r\n2nd,0,\"Malachard, Mr Noel\",NA,Cherbourg,Paris,,,,male\r\n2nd,0,\"Mallet, Mr Albert\",NA,Cherbourg,\"Paris / Montreal, PQ\",,,,male\r\n2nd,1,\"Mallet, Mrs Albert (Antoinette)\",NA,Cherbourg,\"Paris / Montreal, PQ\",,,,female\r\n2nd,1,\"Mallet, Master Andre\",2,Cherbourg,\"Paris / Montreal, PQ\",,,,male\r\n2nd,0,\"Mangiavacchi, Mr Serafino Emilio\",NA,Cherbourg,\"New York, NY\",,,,male\r\n2nd,0,\"Mantvila, Rev Joseph\",27,Southampton,\"Worcester, MA\",,,,male\r\n2nd,1,\"Marshall, Mrs Kate Louise Phillips\",19,Southampton,\"Worcester, England\",,,,female\r\n2nd,0,\"Matthews, Mr William John\",30,Southampton,\"St Austall, Cornwall\",,,,male\r\n2nd,0,\"Maybery, Mr Frank H.\",20,Southampton,\"Weston-Super-Mare / Moose Jaw, SK\",,,,male\r\n2nd,0,\"McCrae, Mr Arthur Gordon\",45,Southampton,\"Sydney, Australia\",,,-209,male\r\n2nd,0,\"McCrie, Mr James Matthew\",NA,Southampton,\"Sarnia, ON\",,,,male\r\n2nd,0,\"McKane, Mr Peter D.\",46,Southampton,\"Rochester, NY\",,,,male\r\n2nd,1,\"Mellenger, Mrs Elizabeth Anne\",41,Southampton,\"England / Bennington, VT\",,,14/12,female\r\n2nd,1,\"Mellenger, Miss Madeleine Violet\",13,Southampton,\"England / Bennington, VT\",,,14/12,female\r\n2nd,1,\"Mellor, Mr William John\",19,Southampton,\"Chelsea, London\",,,B,male\r\n2nd,0,\"Meyer, Mr August\",30,Southampton,\"Harrow-on-the-Hill, Middlesex\",,,,male\r\n2nd,0,\"Milling, Mr Jacob Christian\",48,Southampton,\"Copenhagen, Denmark\",,,-271,male\r\n2nd,0,\"Mitchell, Mr Henry Michael\",71,Southampton,\"Guernsey / Montclair, NJ and/or Toledo, Ohio\",,,,male\r\n2nd,0,\"Moraweck, Dr Ernest\",54,Southampton,\"Frankfort, KY\",,,,male\r\n2nd,0,\"Morley, Mr William\",NA,Southampton,\"Petworth, Sussex\",,,,male\r\n2nd,0,\"Mudd, Mr Thomas C.\",NA,Southampton,\"Halesworth, England\",,,,male\r\n2nd,0,\"Myles, Mr Thomas Francis\",64,Queenstown,\"Cambridge, MA\",,,,male\r\n2nd,0,\"Nasser (Nasrallah), Mr Nicholas\",32,Cherbourg,\"New York, NY\",,,-43,male\r\n2nd,1,\"Nasser (Nasrallah), Mrs Nicholas\",18,Cherbourg,\"New York, NY\",,,,female\r\n2nd,1,\"Navratil, Master Edmond Roger\",2,Southampton,\"Nice, France\",,230080 L26,D,male\r\n2nd,0,\"Navratil, Mr Michel\",32,Southampton,\"Nice, France\",,230080 L26,-15,male\r\n2nd,1,\"Navratil, Master Michel M.\",3,Southampton,\"Nice, France\",,230080 L26,D,male\r\n2nd,0,\"Nesson, Mr Israel\",26,Southampton,\"Boston, MA\",,,,male\r\n2nd,0,\"Nicholls, Mr Joseph Charles\",19,Southampton,\"Cornwall / Hancock, MI\",,,-101,male\r\n2nd,0,\"Norman, Mr Robert Douglas\",NA,Southampton,Glasgow,,,-287,male\r\n2nd,1,\"Nourney, Mr Alfred (aka Baron von Drachstedt)\",20,Cherbourg,\"Cologne, Germany\",D-38,,7,male\r\n2nd,1,\"Nye, Mrs Elizabeth Ramell\",29,Southampton,\"Folkstone, Kent / New York, NY\",F-33,,11,female\r\n2nd,0,\"Otter, Mr Richard\",39,Southampton,\"Middleburg Heights, OH\",,,,male\r\n2nd,1,\"Oxenham, Mr Percy Thomas\",22,Southampton,\"Pondersend, England / New Durham, NJ\",,,,male\r\n2nd,1,\"Padro y Manent, Mr Julian\",NA,Cherbourg,\"Spain / Havana, Cuba\",,,,male\r\n2nd,0,\"Pain, Dr Alfred\",24,Southampton,\"Hamilton, ON\",,,,male\r\n2nd,1,\"Pallas y Castello, Mr Emilio\",NA,Cherbourg,\"Spain / Havana, Cuba\",,,,male\r\n2nd,0,\"Parker, Mr Clifford R.\",28,Southampton,\"St Andrews, Guernsey\",,,,male\r\n2nd,0,\"Parkes, Mr Francis (Frank)\",NA,,Belfast,,,,male\r\n2nd,1,\"Parrish, Mrs Lutie Davis\",50,Southampton,\"Woodford County, KY\",,,12,female\r\n2nd,0,\"Pengelly, Mr Frederick\",20,Southampton,\"Gunnislake, England / Butte, MT\",,,,male\r\n2nd,0,\"Peruschitz, Rev. Joseph M.\",40,Southampton,,,,,male\r\n2nd,1,\"Phillips, Miss Alice\",42,Southampton,\"Ilfracombe, Devon\",,,12,female\r\n2nd,0,\"Phillips, Mr Robert\",21,Southampton,\"Ilfracombe, Devon\",,,,male\r\n2nd,1,\"Pinsky, Miss Rosa\",32,Southampton,Russia,,,,female\r\n2nd,0,\"Ponesell, Mr Martin\",34,Southampton,\"Denmark / New York, NY\",,250647,,male\r\n2nd,1,\"Portaluppi, Mr Emilio\",NA,Cherbourg,\"Milford, NH\",,,,male\r\n2nd,0,\"Pulbaum, Mr Frank\",NA,Cherbourg,Paris,,,,male\r\n2nd,1,\"Quick, Mrs Frederick C. (Jane Richards)\",33,Southampton,\"Plymouth, Devon / Detroit, MI\",,,11,female\r\n2nd,1,\"Quick, Miss Phyllis May\",2,Southampton,\"Plymouth, Devon / Detroit, MI\",,,11,female\r\n2nd,1,\"Quick, Miss Winifred Vera\",8,Southampton,\"Plymouth, Devon / Detroit, MI\",,,11,female\r\n2nd,0,\"Reeves, Mr David\",36,Southampton,\"Brighton, Sussex\",,,,male\r\n2nd,0,\"Renouf, Mr Peter Henry\",34,Southampton,\"Elizabeth, NJ\",,,,male\r\n2nd,1,\"Renouf, Mrs Peter Henry (Lillian Jefferys)\",30,Southampton,\"Elizabeth, NJ\",,,,female\r\n2nd,1,\"Reynaldo, Mrs Encarnacion\",28,Southampton,Spain,,,,female\r\n2nd,0,\"Richard, Mr Emil\",23,Cherbourg,\"Paris / Montreal, PQ\",,,,male\r\n2nd,1,\"Richards, Master George Sidney\",0.8333,Southampton,\"Cornwall / Akron, OH\",,,4,male\r\n2nd,1,\"Richards, Mrs Sidney (Emily Hocking)\",25,Southampton,\"Cornwall / Akron, OH\",,,4,female\r\n2nd,1,\"Richards, Master William Rowe\",3,Southampton,\"Cornwall / Akron, OH\",,,4,male\r\n2nd,1,\"Ridsdale, Miss Lucy\",50,Southampton,\"London, England / Marietta, Ohio and Milwaukee, WI\",,,,female\r\n2nd,0,\"Rogers, Mr Harry\",NA,Southampton,,,,,male\r\n2nd,1,\"Rugg, Miss Emily\",21,Southampton,\"Guernsey / Wilmington, DE\",,,12,female\r\n2nd,0,\"Sedgwick, Mr Charles Frederick Waddington\",NA,Southampton,Liverpool,,,,male\r\n2nd,0,\"Sharp, Mr Percival\",NA,Southampton,\"Hornsey, England\",,,,male\r\n2nd,1,\"Shelley, Mrs William (Imanita)\",25,Southampton,\"Deer Lodge, MT\",,,12,female\r\n2nd,1,\"Silven, Miss Lyyli\",18,Southampton,\"Finland / Minneapolis, MN\",,,,female\r\n2nd,1,\"Sincock, Miss Maude\",20,Southampton,\"Cornwall / Hancock, MI\",,,11,female\r\n2nd,1,\"Siukonnen, Miss Anna\",30,Southampton,\"Finland / Washington, DC\",,,,female\r\n2nd,0,\"Sjostedt, Mr Ernst Adolf\",59,Southampton,\"Sault St Marie, ON\",,,,male\r\n2nd,1,\"Slayter, Miss Hilda Mary\",30,Queenstown,\"Halifax, NS\",,,13,female\r\n2nd,0,\"Slemen, Mr Richard James\",35,Southampton,Cornwall,,,,male\r\n2nd,0,\"Smith (Schmidt), Mr Augustus\",22,Southampton,\"Newark, NJ\",,,,male\r\n2nd,1,\"Smith, Miss Marion\",NA,Southampton,,,,,female\r\n2nd,0,\"Sobey, Mr Hayden\",25,Southampton,\"Cornwall / Houghton, MI\",,,,male\r\n2nd,0,\"Stanton, Mr Samuel Ward\",41,Cherbourg,\"New York, NY\",,,,male\r\n2nd,0,\"Stokes, Mr Philip Joseph\",25,Southampton,\"Catford, Kent / Detroit, MI\",,,-81,male\r\n2nd,0,\"Sweet, Mr George\",14,Southampton,\"Somerset / Bernardsville, NJ\",,,,male\r\n2nd,1,\"Toomey, Miss Ellen\",50,Southampton,\"Indianapolis, IN\",,,9,female\r\n2nd,0,\"Troupiansky, Mr Moses Aaron\",22,Southampton,,,,,male\r\n2nd,1,\"Trout, Mrs William H. (Jessie L.)\",NA,Southampton,\"Columbus, OH\",,,9,female\r\n2nd,1,\"Troutt, Miss Edwina Celia\",27,Southampton,\"Bath, England / Massachusetts\",E-101,34218 L10 10s,16,female\r\n2nd,0,\"Turpin, Mr William John\",29,Southampton,\"Plymouth, England\",,,,male\r\n2nd,0,\"Turpin, Mrs William John (Dorothy Anne Wonnacott)\",27,Southampton,\"Plymouth, England\",,,,female\r\n2nd,0,\"Veale, Mr James\",30,Southampton,\"Barre, Co Washington, VT\",,,,male\r\n2nd,0,\"Waelens, Mr Achille\",22,Southampton,\"Antwerp, Belgium / Stanton, OH\",,,-140,male\r\n2nd,1,\"Walcroft, Miss Nellie\",35,Southampton,\"Mamaroneck, NY\",,,,female\r\n2nd,0,\"Ware, Mr John James\",30,Southampton,\"Bristol, England / New Britain, CT\",,,,male\r\n2nd,1,\"Ware, Mrs John James (Florence Louise Long)\",28,Southampton,\"Bristol, England / New Britain, CT\",,,12,female\r\n2nd,0,\"Ware, Mr William J.\",23,Southampton,,,,,male\r\n2nd,0,\"Watson, Mr Ennis Hastings\",NA,Southampton,Belfast,,,,male\r\n2nd,1,\"Watt, Miss Bertha\",12,Southampton,\"Aberdeen / Portland, OR\",,,9,female\r\n2nd,1,\"Watt, Mrs James (Bessie Inglis Milne)\",40,Southampton,\"Aberdeen / Portland, OR\",,,9,female\r\n2nd,1,\"Webber, Miss Susan\",36,Southampton,\"England / Hartford, CT\",E-101,,,female\r\n2nd,0,\"Weisz, Mr Leopold\",28,Southampton,\"Bromsgrove, England / Montreal, PQ\",,,-293,male\r\n2nd,1,\"Weisz, Mrs Leopold (Mathilde)\",32,Southampton,\"Bromsgrove, England / Montreal, PQ\",,,,female\r\n2nd,1,\"Wells, Mrs Arthur H. (Addie Trevaskis)\",29,Southampton,\"Cornwall / Akron, OH\",,,,female\r\n2nd,1,\"Wells, Miss Joan\",4,Southampton,\"Cornwall / Akron, OH\",,,,female\r\n2nd,1,\"Wells, Master Ralph Lester\",2,Southampton,\"Cornwall / Akron, OH\",,,,male\r\n2nd,1,\"West, Miss Barbara J.\",NA,Southampton,\"Bournmouth, England\",,,,female\r\n2nd,1,\"West, Miss Constance Mirium\",NA,Southampton,\"Bournmouth, England\",,,,female\r\n2nd,0,\"West, Mr Edwy Arthur\",36,Southampton,\"Bournmouth, England\",,,,male\r\n2nd,1,\"West, Mrs Edwy Arthur (Ada Mary)\",33,Southampton,\"Bournmouth, England\",,,,female\r\n2nd,0,\"Wheadon, Mr Edward\",NA,Southampton,\"Guernsey, England / Edgewood, RI\",,,,male\r\n2nd,0,\"Wheeler, Mr Edwin\",NA,Southampton,,,,,male\r\n2nd,0,\"Wheeler, Mr Frederick\",NA,,,,,,male\r\n2nd,1,\"Wilhelms, Mr Charles\",32,Southampton,\"London, England\",,,9,male\r\n2nd,1,\"Wilkinson, Mrs Elizabeth Anne\",NA,Southampton,\"Manchester, England\",,,,female\r\n2nd,1,\"Williams, Mr Charles Eugene\",NA,Southampton,\"Harrow, England\",,,14,male\r\n2nd,1,\"Wright, Miss Marion\",26,Southampton,\"Yoevil, England / Cottage Grove, OR\",,,9,female\r\n2nd,0,\"Yrois, Miss Henriette\",NA,Southampton,Paris,,,,female\r\n2nd,0,\"Aldworth, Mr Charles Augustus\",30,Southampton,\"Bryn Mawr, PA, USA\",,248744 L13,,male\r\n2nd,1,\"Brown, Miss Mildred\",24,Southampton,\"London / Montreal, PQ\",F-33,,11,female\r\n2nd,0,\"Pernot, Mr Rene\",NA,Cherbourg,,2131,L15 1s,,male\r\n2nd,0,\"Swane, Mr George\",18,Southampton,,F-?,,-294,male\r\n3rd,0,\"Abbing, Mr Anthony\",42,Southampton,,,,,male\r\n3rd,0,\"Abbott, Master Eugene Joseph\",13,Southampton,\"East Providence, RI\",,,,male\r\n3rd,0,\"Abbott, Mr Rossmore Edward\",16,Southampton,\"East Providence, RI\",,,-190,male\r\n3rd,1,\"Abbott, Mrs Stanton (Rosa)\",35,Southampton,\"East Providence, RI\",,,A,female\r\n3rd,1,\"Abelseth, Miss Anna Karen\",16,Southampton,\"Norway Los Angeles, CA\",,,16,female\r\n3rd,1,\"Abelseth, Mr Olaus\",25,Southampton,\"Perkins County, SD\",,,A,male\r\n3rd,1,\"Abraham, Mrs Joseph (Sophie Easu)\",18,Cherbourg,\"Greensburg, PA\",,,,female\r\n3rd,1,\"Abrahamsson, Mr August\",20,Southampton,\"Taalintehdas, Finland Hoboken, NJ\",,,15,male\r\n3rd,0,\"Adahl, Mr Mauritz Nils Martin\",30,Southampton,\"Asarum, Sweden Brooklyn, NY\",,7076,-72,male\r\n3rd,0,\"Adams, Mr John\",26,Southampton,\"Bournemouth, England\",,,-103,male\r\n3rd,0,\"Ahlin, Mrs Johanna Persdotter\",40,Southampton,\"Sweden Akeley, MN\",,,,female\r\n3rd,0,\"Ahmed, Mr Ali\",24,Southampton,,,,,male\r\n3rd,0,\"Aijo-Nirva, Mr Isak\",41,Southampton,\"Finland Sudbury, ON\",,,,male\r\n3rd,1,\"Aks, Mrs Sam (Leah Rosen)\",18,Southampton,\"London, England Norfolk, VA\",,392091,13,female\r\n3rd,1,\"Aks, Master Philip\",0.8333,Southampton,\"London, England Norfolk, VA\",,392091,11,male\r\n3rd,0,\"Alexander, Mr William\",23,Southampton,\"England Albion, NY\",,,,male\r\n3rd,0,\"Alhomaki, Mr Ilmari Rudolf\",20,Southampton,\"Salo, Finland Astoria, OR\",,,,male\r\n3rd,0,\"Ali, Mr William\",25,Southampton,Argentina,,,-79,male\r\n3rd,0,\"Allen, Mr William Henry\",35,Southampton,\"Lower Clapton, Middlesex or Erdington, Birmingham\",,,,male\r\n3rd,0,\"Allum, Mr Owen George\",17,Southampton,\"Windsor, England New York, NY\",,,-259,male\r\n3rd,0,\"Andersen, Mr Albert Karvin\",32,Southampton,\"Bergen, Norway\",,,-260,male\r\n3rd,0,\"Andersen, Mr Thor Olsvigen\",20,Southampton,\"Oslo, Norway Cameron, WI\",,,-89,male\r\n3rd,0,\"Andersson, Mr Anders Johan\",39,Southampton,\"Sweden Winnipeg, MN\",,,,male\r\n3rd,0,\"Andersson, Mrs Anders Johan (Alfrida K. Brogren)\",39,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Miss Ebba Iris\",6,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Miss Ellis Anna Maria\",2,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,1,\"Andersson, Miss Erna\",17,Southampton,\"Ruotsinphyhtaa, Finland New York, NY\",,,,female\r\n3rd,0,\"Andersson, Miss Ida Augusta Margareta\",38,Southampton,\"Vadsbro, Sweden Ministee, MI\",,,,female\r\n3rd,0,\"Andersson, Miss Ingeborg Constancia\",9,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Mr Johan Samuel\",26,Southampton,\"Hartford, CT\",,,,male\r\n3rd,0,\"Andersson, Miss Sigrid Elizabeth\",11,Southampton,\"Sweden Winnipeg, MN\",,,,female\r\n3rd,0,\"Andersson, Master Sigvard Harald Elias\",4,Southampton,\"Sweden Winnipeg, MN\",,,,male\r\n3rd,0,\"Andreasson, Mr Paul Edvin\",20,Southampton,\"Sweden Chicago, IL\",,,,male\r\n3rd,0,\"Angheloff, Mr Minko\",26,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Arnold, Mr Josef\",25,Southampton,\"Altdorf, Switzerland\",,,,male\r\n3rd,0,\"Arnold, Mrs Josef (Josephine Frank)\",18,Southampton,\"Altdorf, Switzerland\",,,,female\r\n3rd,0,\"Aronsson, Mr Ernst Axel Algot\",24,Southampton,\"Sweden Joliet, IL\",,,,male\r\n3rd,0,\"Asim, Mr Adola\",35,Southampton,,,,,male\r\n3rd,0,\"Asplund, Mr Carl Oscar Vilhelm Gustafsson\",40,Southampton,\"Sweden  Worcester, MA\",,,-142,male\r\n3rd,1,\"Asplund, Mrs Carl Oscar (Selma Augusta Johansson)\",38,Southampton,\"Sweden  Worcester, MA\",,,4,female\r\n3rd,0,\"Asplund, Master Carl Edgar\",5,Southampton,\"Sweden  Worcester, MA\",,,,male\r\n3rd,0,\"Asplund, Master Clarence Gustaf Hugo\",9,Southampton,\"Sweden Worcester, MA\",,,,male\r\n3rd,1,\"Aspland, Master Edvin Rojj Felix\",3,Southampton,\"Sweden Worcester, MA\",,,4,male\r\n3rd,0,\"Asplund, Master Filip Oscar\",13,Southampton,\"Sweden Worcester, MA\",,,,male\r\n3rd,1,\"Asplund, Mr John Charles\",23,Southampton,\"Oskarshamn, Sweden Minneapolis, MN\",,,,male\r\n3rd,1,\"Asplund, Miss Lillian Gertrud\",5,Southampton,\"Sweden Worcester, MA\",,,4,female\r\n3rd,0,\"Assaf, Mr Gerios\",NA,Cherbourg,\"Ottawa, ON\",,,,male\r\n3rd,1,\"Assaf, Mrs Mariana\",45,Cherbourg,\"Ottawa, ON\",,,C,female\r\n3rd,0,\"Assam, Mr Ali\",23,Southampton,,,,,male\r\n3rd,0,\"Attalah, Miss Malaka\",17,Cherbourg,,,,,female\r\n3rd,0,\"Attala (Kalil), Mr Solomon\",27,Cherbourg,\"Ottawa, ON\",,,,male\r\n3rd,0,\"Augustsson, Mr Albert\",23,Southampton,\"Krakoryd, Sweden Bloomington, IL\",,,,male\r\n3rd,0,\"Baccos, Mr Rafoul\",20,Cherbourg,,,,,male\r\n3rd,0,\"Backstrom, Mr Karl Alfred\",32,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,male\r\n3rd,1,\"Backstrom, Mrs Karl Alfred (Maria Mathilda Gustafsson)\",33,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,female\r\n3rd,1,\"Baclini, Miss Eugenie\",3,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Baclini, Miss Helene\",NA,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Baclini, Miss Maria\",NA,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Baclini, Mrs Solomon (Latifa)\",NA,Cherbourg,\"Syria New York, NY\",,,,female\r\n3rd,1,\"Badman, Miss Emily Louisa\",18,Southampton,\"London Skanteales, NY\",,,,female\r\n3rd,0,\"Badt, Mr Mohamed\",40,Cherbourg,,,,,male\r\n3rd,0,\"Balkic, Mr Cerin\",26,Southampton,,,,,male\r\n3rd,1,\"Banoura, Miss Ayout\",15,Cherbourg,\"Syria Youngstown, OH\",,,,female\r\n3rd,0,\"Barbara, Mrs Catherine\",45,Cherbourg,\"Syria Ottawa, ON\",,,,female\r\n3rd,0,\"Barbara, Miss Saude\",18,Cherbourg,\"Syria Ottawa, ON\",,,,female\r\n3rd,0,\"Barry, Miss Julia\",27,Queenstown,\"New York, NY\",,,,female\r\n3rd,0,Barton Mr David,22,Southampton,\"England New York, NY\",,,,male\r\n3rd,0,\"Beavan, Mr William Thomas\",19,Southampton,England,,,,male\r\n3rd,0,\"Bengtsson, Mr John Viktor\",26,Southampton,\"Krakudden, Sweden Moune, IL\",,,,male\r\n3rd,0,Berglund. Mr Karl Ivar Sven,22,Southampton,\"Tranvik, Finland New York\",,,,male\r\n3rd,0,\"Betros, Mr Tannous\",20,Cherbourg,Syria,,,,male\r\n3rd,1,\"Bing, Mr Lee\",32,Southampton,\"Hong Kong New York, NY\",,,,male\r\n3rd,0,\"Birkeland, Mr Hans\",21,Southampton,\"Brennes, Norway New York\",,,,male\r\n3rd,0,\"Bjorklund, Ernst Herbert\",18,Southampton,\"Stockholm, Sweden New York\",,,,male\r\n3rd,0,\"Bostandyeff, Mr Guentcho\",26,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Boulos, Master Akar\",6,Cherbourg,\"Syria Kent, ON\",,,,male\r\n3rd,0,\"Boulos, Mr Hanna\",NA,Cherbourg,Syria,,,,male\r\n3rd,0,\"Boulos, Mrs Joseph (Sultana)\",NA,Cherbourg,\"Syria Kent, ON\",,,,female\r\n3rd,0,\"Boulos, Miss Laura\",9,Cherbourg,\"Syria Kent, ON\",,,,female\r\n3rd,0,\"Bourke, Mr John\",40,Queenstown,\"Ireland Chicago, IL\",,,,male\r\n3rd,0,\"Bourke, Mrs John (Catherine)\",32,Queenstown,\"Ireland Chicago, IL\",,,,female\r\n3rd,0,\"Bourke, Miss Mary\",NA,Queenstown,\"Ireland Chicago, IL\",,,,female\r\n3rd,0,\"Bowen, Mr David\",26,Southampton,\"Treherbert, Cardiff, Wales\",,,,male\r\n3rd,1,\"Bradley, Miss Bridget Delia\",18,Queenstown,\"Kingwilliamstown, Co Cork, Ireland Glens Falls, NY\",,,13,female\r\n3rd,0,\"Braf, Miss Elin Ester Maria\",20,Southampton,\"Medeltorp, Sweden Chicago, IL\",,,,female\r\n3rd,0,\"Brahim, Mr Youssef\",NA,Cherbourg,,,,,male\r\n3rd,0,\"Braund, Mr Lewis Richard\",29,Southampton,\"Bridgerule, Devon\",,,,male\r\n3rd,0,\"Braund, Mr Owen Harris\",22,Southampton,\"Bridgerule, Devon\",,,,male\r\n3rd,0,\"Brobek, Mr Karl Rudolf\",22,Southampton,\"Sweden Worcester, MA\",,,,male\r\n3rd,0,\"Brocklebank, Mr William Alfred\",35,Southampton,\"Broomfield, Chelmsford, England\",,,,male\r\n3rd,1,\"Buckley, Mr Daniel\",21,Queenstown,\"Kingwilliamstown, Co Cork, Ireland New York, NY\",,,,male\r\n3rd,0,\"Buckley, Miss Katherine\",20,Queenstown,\"Co Cork, Ireland Roxbury, MA\",,,-299,female\r\n3rd,0,\"Burke, Mr Jeremiah\",19,Queenstown,\"Co Cork, Ireland Charlestown, MA\",,,,male\r\n3rd,0,\"Burns, Miss Mary Delia\",18,Queenstown,\"Co Sligo, Ireland New York, NY\",,,,female\r\n3rd,0,\"Cacic, Mr Grego\",18,Southampton,Croatia,,,,male\r\n3rd,0,\"Cacic, Mr Luka\",38,Southampton,Croatia,,,,male\r\n3rd,0,\"Cacic, Mr Manda\",NA,Southampton,Croatia,,,,male\r\n3rd,0,\"Cacic, Mr Maria\",30,Southampton,Croatia,,,,male\r\n3rd,0,\"Calic, Mr Peter\",17,Southampton,,,,,male\r\n3rd,0,\"Canavan, Miss Mary\",21,Queenstown,,,,,female\r\n3rd,0,\"Canavan, Mr Patrick\",21,Queenstown,\"Ireland Philadelphia, PA\",,,,male\r\n3rd,0,\"Cann, Mr Ernest\",21,Southampton,,,,,male\r\n3rd,0,\"Caram (Kareem), Mr Joseph\",NA,Cherbourg,\"Ottawa, ON\",,,,male\r\n3rd,0,\"Caram (Kareem), Mrs Joseph (Maria Elias)\",NA,Cherbourg,\"Ottawa, ON\",,,,female\r\n3rd,0,\"Carlsson, Mr Carl Robert\",24,Southampton,\"Goteborg, Sweden Huntley, IL\",,,,male\r\n3rd,0,\"Carlsson, Mr Frans Olof\",33,Southampton,\"New York, NY\",,,,male\r\n3rd,0,\"Carlsson, Mr Julius\",33,Southampton,,,,,male\r\n3rd,0,\"Carlsson, Mr August Sigfrid\",28,Southampton,\"Dagsas, Sweden Fower, MN\",,,,male\r\n3rd,1,\"Carr, Miss Helen\",16,Queenstown,\"Co Longford, Ireland New York, NY\",,,,female\r\n3rd,0,\"Carr, Miss Jeannie\",37,Queenstown,\"Co Sligo, Ireland Hartford, CT\",,,,female\r\n3rd,0,\"Carver, Mr Alfred John\",28,Southampton,\"St Denys, Southampton, Hants\",,,,male\r\n3rd,1,\"Cassem, Mr Nassef Belmenly\",NA,Cherbourg,\"Syria Fredericksburg, VA\",,,,male\r\n3rd,0,\"Celotti, Mr Francesco\",24,Southampton,London,,,,male\r\n3rd,0,\"Chartens, Mr David\",21,Southampton,\"Ireland New York, NY\",,,,male\r\n3rd,0,\"Chebab, Mr Emir Farres\",NA,Cherbourg,,,,,male\r\n3rd,0,\"Chip, Mr Chang\",32,Southampton,\"Hong Kong New York, NY\",,,,male\r\n3rd,0,\"Christmann, Mr Emil\",29,Southampton,,,,,male\r\n3rd,0,\"Chronopoulos, Mr Apostolos\",26,Cherbourg,Greece,,,,male\r\n3rd,0,\"Chronopoulos, Mr Demetrios\",18,Cherbourg,Greece,,,,male\r\n3rd,0,\"Coelho, Mr Domingos Fernandes\",20,Southampton,Portugal,,,,male\r\n3rd,1,\"Cohen, Mr Gurshon (Gus)\",19,Southampton,\"London Brooklyn, NY\",,,,male\r\n3rd,0,\"Colbert, Mr Patrick\",24,Queenstown,\"Co Limerick, Ireland Sherbrooke, PQ\",,,,male\r\n3rd,0,\"Coleff, Mr Fotio\",24,Southampton,,,,,male\r\n3rd,0,\"Coleff, Mr Peyo\",36,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Conlin, Mr Thomas Henry\",31,Queenstown,\"Philadelphia, PA\",,,,male\r\n3rd,0,\"Connaghton, Mr Michael\",31,Queenstown,\"Ireland Brooklyn, NY\",,,,male\r\n3rd,0,\"Connolly, Miss Kate\",30,Queenstown,Ireland,,,,female\r\n3rd,1,\"Connolly, Miss Kate\",22,Queenstown,Ireland,,,,female\r\n3rd,0,\"Connors, Mr Patrick\",NA,Queenstown,,,,-171,male\r\n3rd,0,\"Cook, Mr Jacob\",43,Southampton,,,,,male\r\n3rd,0,\"Cor, Mr Bartol\",35,Southampton,Austria,,,,male\r\n3rd,0,\"Cor, Mr Ivan\",27,Southampton,Austria,,,,male\r\n3rd,0,\"Cor, Mr Ludovik\",19,Southampton,Austria,,,,male\r\n3rd,0,\"Corn, Mr Harry\",30,Southampton,London,,,,male\r\n3rd,1,\"Coutts, Mrs William (Minnie)\",36,Southampton,\"England Brooklyn, NY\",,,2,female\r\n3rd,1,\"Coutts, Master Neville\",3,Southampton,\"England Brooklyn, NY\",,,2,male\r\n3rd,1,\"Coutts, Master William Leslie\",9,Southampton,\"England Brooklyn, NY\",,,2,male\r\n3rd,0,\"Coxon, Mr Daniel\",59,Southampton,\"Merrill, WI\",,,,male\r\n3rd,0,\"Crease, Mr Ernest James\",19,Southampton,\"Bristol, England Cleveland, OH\",,,,male\r\n3rd,0,\"Cribb, Mr John Hatfield\",44,Southampton,\"Bournemouth, England Newark, NJ\",,,,male\r\n3rd,1,\"Cribb, Miss Laura Alice\",17,Southampton,\"Bournemouth, England Newark, NJ\",,,,female\r\n3rd,0,\"Daher, Mr Tannous\",NA,Cherbourg,,,,,male\r\n3rd,1,\"Dahl, Mr Charles Edward\",45,Southampton,\"Australia Fingal, ND\",,,15,male\r\n3rd,0,\"Dahlberg, Miss Gerda Ulrika\",22,Southampton,\"Norrlot, Sweden Chicago, IL\",,,,female\r\n3rd,0,\"Dakic, Mr Branko\",19,Southampton,Austria,,,,male\r\n3rd,1,\"Daly, Mr Eugene\",29,Queenstown,\"Co Athlone, Ireland New York, NY\",,,B,male\r\n3rd,1,\"Daly, Miss Marcella\",30,Queenstown,\"Co Athlone, Ireland New York, NY\",,,,female\r\n3rd,0,\"Danbom, Mr Ernst Gilbert\",34,Southampton,\"Stanton, IA\",,,,male\r\n3rd,0,\"Danbom, Mrs Ernst Gilbert (Anna Sigrid Maria Brogren)\",28,Southampton,\"Stanton, IA\",,,,female\r\n3rd,0,\"Danbom, Master Gilbert Sigvard Emanuel\",0.3333,Southampton,\"Stanton, IA\",,,,male\r\n3rd,0,\"Danoff, Mr Yoto\",27,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Dantchoff, Mr Khristo\",25,Southampton,\"Bulgaria Chicago, IL\",,,,male\r\n3rd,0,\"Davies, Mr Alfred\",24,Southampton,\"West Bromwich, England Pontiac, MI\",,,,male\r\n3rd,0,\"Davies, Mr Evan\",22,Southampton,,,,,male\r\n3rd,0,\"Davies, Mr John\",21,Southampton,\"West Bromwich, England Pontiac, MI\",,,,male\r\n3rd,0,\"Davies, Mr Joseph\",17,Southampton,\"West Bromwich, England Pontiac, MI\",,,,male\r\n3rd,0,\"Davison, Mr Thomas Henry\",NA,Southampton,\"Liverpool, England Bedford, OH\",,,,male\r\n3rd,1,\"Davison, Mrs Thomas Henry (Mary Finck)\",NA,Southampton,\"Liverpool, England Bedford, OH\",,,,female\r\n3rd,0,\"Dean, Mr Bertram\",26,Southampton,\"Devon, England Wichita, KS\",,,,male\r\n3rd,1,\"Dean, Mrs Bertram (Eva)\",33,Southampton,\"Devon, England Wichita, KS\",,,12,female\r\n3rd,1,\"Dean, Master Bertram Vere\",1,Southampton,\"Devon, England Wichita, KS\",,,12,male\r\n3rd,1,\"Dean, Miss Elizabeth Gladys (Millvena)\",0.1667,Southampton,\"Devon, England Wichita, KS\",,,12,female\r\n3rd,0,\"Delalic, Mr Regyo\",25,Southampton,,,,,male\r\n3rd,1,\"De Messemaeker, Mr William Joseph\",36,Southampton,\"Tampico, MT\",,,15,male\r\n3rd,1,\"De Messemaeker, Mrs William Joseph (Anna)\",36,Southampton,\"Tampico, MT\",,,13,female\r\n3rd,1,\"De Mulder, Mr Theo\",30,Southampton,\"Belgium Detroit, MI\",,,,male\r\n3rd,0,\"Denkoff, Mr Mito\",NA,Southampton,\"Bulgaria Coon Rapids, IA\",,,,male\r\n3rd,0,\"Dennis, Mr Samuel\",23,Southampton,,,,,male\r\n3rd,0,\"Dennis, Mr William\",26,Southampton,,,,,male\r\n3rd,1,\"Devaney, Miss Margaret\",19,Queenstown,\"Kilmacowen, Co Sligo, Ireland New York, NY\",,,C,female\r\n3rd,0,\"Dewan, Mr Frank\",65,Queenstown,,,,,male\r\n3rd,0,\"Dibo, Mr Elias\",NA,Cherbourg,,,,,male\r\n3rd,0,\"Dimic, Mr Jovan\",42,Southampton,,,,,male\r\n3rd,0,\"Dintcheff, Mr Valtcho\",43,Southampton,,,,,male\r\n3rd,0,\"Dooley, Mr Patrick\",32,Queenstown,\"Ireland New York, NY\",,,,male\r\n3rd,1,\"Dorkings, Mr Edward Arthur\",19,Southampton,\"England Oglesby, IL\",,,B,male\r\n3rd,1,\"Dowdell, Miss Elizabeth\",30,Southampton,\"Union Hill, NJ\",,,13,female\r\n3rd,0,\"Doyle, Miss Elizabeth\",24,Queenstown,\"Ireland New York, NY\",,,,female\r\n3rd,1,\"Drapkin, Miss Jennie\",23,Southampton,\"London New York, NY\",,,,female\r\n3rd,0,\"Drazonovic, Mr Josef\",NA,Cherbourg,\"Austria Niagara Falls, NY\",,,,male\r\n3rd,1,\"Driscoll, Miss Bridget\",24,Queenstown,\"Ballydehob, Co Cork, Ireland New York, NY\",,,,female\r\n3rd,1,\"Duquemin, Mr Joseph\",24,Southampton,\"England Albion, NY\",,,D,male\r\n3rd,0,\"Dyker, Mr Adolf Fredrik\",23,Southampton,\"West Haven, CT\",,,,male\r\n3rd,1,\"Dyker, Mrs Adolf Fredrik (Anna Elizabeth Judith Andersson)\",22,Southampton,\"West Haven, CT\",,,,female\r\n3rd,0,\"Econovic, Mr Joso\",NA,Southampton,Austria-Hungary,,,,male\r\n3rd,0,\"Edvardsson, Mr Gustaf Hjalmar\",18,Southampton,\"Tofta, Sweden Joliet, IL\",,,,male\r\n3rd,0,\"Eklund, Mr Hans Linus\",16,Southampton,\"Karberg, Sweden Jerome Junction, AZ\",,,,male\r\n3rd,0,\"Ekstrom, Mr Johan\",45,Southampton,\"Effington Rut, SD\",,,,male\r\n3rd,0,\"Elias, Mr Elias\",NA,Cherbourg,Syria,,,,male\r\n3rd,0,\"Elias, Mr John\",NA,Cherbourg,Syria,,,,male\r\n3rd,0,\"Elias, Mr Joseph\",NA,Cherbourg,\"Syria Ottawa, ON\",,,,male\r\n3rd,0,\"Elsbury, Mr James\",47,Southampton,\"Illinois, USA\",,,,male\r\n3rd,1,\"Emanuel, Miss Virginia Ethel\",5,Southampton,\"New York, NY\",,,13,female\r\n3rd,0,\"Emmeth, Mr Thomas\",NA,Southampton,,,,,male\r\n3rd,0,\"Everett, Thomas James\",NA,Southampton,,,,,male\r\n3rd,0,\"Farrell, Mr James\",NA,Queenstown,\"Aughnacliff, Co Longford, Ireland New York, NY\",,,,male\r\n3rd,1,\"Finoli, Mr Luigi\",NA,Southampton,\"Italy Philadelphia, PA\",,,,male\r\n3rd,0,\"Fischer, Mr Eberhard Telander\",NA,Southampton,,,,,male\r\n3rd,0,\"Flynn, Mr James\",NA,Queenstown,,,,,male\r\n3rd,0,\"Flynn, Mr John\",NA,Queenstown,,,,,male\r\n3rd,0,\"Foley, Mr Joseph\",NA,Queenstown,\"Ireland Chicago, IL\",,,,male\r\n3rd,0,\"Foley, Mr William\",NA,Queenstown,Ireland,,,,male\r\n3rd,1,\"Foo, Mr Choong\",NA,Southampton,\"Hong Kong New York, NY\",,,,male\r\n3rd,0,\"Ford, Mr Arthur\",NA,Southampton,\"Bridgwater, Somerset, England\",,,,male\r\n3rd,0,\"Ford, Miss Doolina Margaret\",21,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,female\r\n3rd,0,\"Ford, Mr Edward Watson\",18,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,male\r\n3rd,0,\"Ford, Miss Maggie\",9,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,female\r\n3rd,0,\"Ford, Mrs Edward (Margaret Ann)\",48,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,female\r\n3rd,0,\"Ford, Mr Neil Watson\",16,Southampton,\"Rotherfield, Sussex, England Essex Co, MA\",,,,male\r\n3rd,0,\"Fox, Mr Patrick\",NA,Queenstown,\"Ireland New York, NY\",,,,male\r\n3rd,0,\"Franklin, Mr Charles\",NA,Southampton,,,,,male\r\n3rd,0,\"Gallagher, Mr Martin\",25,Queenstown,\"New York, NY\",,,,male\r\n3rd,0,\"Garfirth, Mr John\",NA,Southampton,,,,,male\r\n3rd,1,\"Georges, Mrs Shahini Weappi\",NA,Cherbourg,\"Youngstown, OH\",,,,female\r\n3rd,0,\"Gilinski, Mr Leslie\",22,Southampton,,,,,male\r\n3rd,1,\"Gilnagh, Miss Katie\",16,Queenstown,\"Co Longford, Ireland New York, NY\",,,,female\r\n3rd,1,\"Glynn, Miss Mary Agatha\",NA,Queenstown,\"Co Clare, Ireland Washington, DC\",,,13,female\r\n3rd,0,\"Goldsmith, Mr Frank John\",33,Southampton,\"Strood, Kent, England Detroit, MI\",,,,male\r\n3rd,1,\"Goldsmith, Mrs Frank John (Emily A. Brown)\",NA,Southampton,\"Strood, Kent, England Detroit, MI\",,,C,female\r\n3rd,1,\"Goldsmith, Master Frank John William\",9,Southampton,\"Strood, Kent, England Detroit, MI\",,,C,male\r\n3rd,0,\"Goldsmith, Mr Nathan\",41,Southampton,\"Philadelphia, PA\",,,,male\r\n3rd,0,\"Goncalves, Mr Manuel Estanslas\",38,Southampton,Portugal,,,,male\r\n3rd,0,\"Goodwin, Mr Frederick\",40,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Mrs Frederick (Augusta)\",43,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,female\r\n3rd,0,\"Goodwin, Mr Charles E.\",14,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Miss Lillian A.\",16,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,female\r\n3rd,0,\"Goodwin, Master Harold V.\",9,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Miss Jessie A.\",10,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,female\r\n3rd,0,\"Goodwin, Master Sidney L.\",6,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Goodwin, Master William F.\",11,Southampton,\"Wiltshire, England Niagara Falls, NY\",,,,male\r\n3rd,0,\"Green, Mr George\",40,Southampton,\"Dorking, Surrey, England\",,,,male\r\n3rd,0,\"Gronnestad, Mr Daniel Danielsen\",32,Southampton,\"Foresvik, Norway Portland, ND\",,,,male\r\n3rd,0,\"Guest, Mr Robert\",NA,Southampton,,,,,male\r\n3rd,0,\"Gustafsson, Mr Alfred Ossian\",20,Southampton,\"Waukegan, Chicago, IL\",,,,male\r\n3rd,0,\"Gustafsson, Mr Anders Vilhelm\",37,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,male\r\n3rd,0,\"Gustafsson, Mr Johan Birger\",28,Southampton,\"Ruotsinphytaa, Finland New York, NY\",,,,male\r\n3rd,0,\"Gustafsson, Mr Karl Gideon\",19,Southampton,\"Myren, Sweden New York, NY\",,,,male\r\n3rd,0,\"Haas, Miss Aloisia\",NA,,,,,,female\r\n3rd,0,\"Hagardon, Miss Kate\",NA,,,,,,female\r\n3rd,0,\"Hagland, Mr Ingvald Olsen\",NA,,,,,,male\r\n3rd,0,\"Hagland, Mr Konrad Mathias Reiersen\",NA,,,,,,male\r\n3rd,0,\"Hakkarainen, Mr Pekko Pietari\",NA,,,,,,male\r\n3rd,1,\"Hakkarainen, Mrs Pekko Pietari\",NA,,,,,,female\r\n3rd,0,\"Hampe, Mr Leon\",NA,,,,,,male\r\n3rd,0,\"Hansen, Mr Claus Peter\",NA,,,,,,male\r\n3rd,1,\"Hansen, Mrs Claus Peter\",NA,,,,,,female\r\n3rd,0,\"Hansen, Mr Henrik Juul\",NA,,,,,,male\r\n3rd,0,\"Hansen, Mr Henry Damsgaard\",NA,,,,,,male\r\n3rd,0,\"Harknett, Miss Alice\",NA,,,,,,female\r\n3rd,0,\"Harmer, Mr Abraham\",NA,,,,,,male\r\n3rd,0,\"Hart, Mr Henry\",NA,,,,,,male\r\n3rd,0,\"Hassan, Mr M. Houssein\",NA,,,,,,male\r\n3rd,0,\"Healy, Miss Nora\",NA,,,,,,female\r\n3rd,1,\"Hedman, Mr Oscar\",NA,,,,,,male\r\n3rd,0,\"Hee, Mr Ling\",NA,,,,,,male\r\n3rd,0,\"Hegarty, Miss Nora\",NA,,,,,,female\r\n3rd,1,\"Heikkinen, Miss Laina\",NA,,,,,,female\r\n3rd,0,\"Heininen, Miss Wendla Maria\",NA,,,,,,female\r\n3rd,1,\"Hellstrom, Hilda Maria\",NA,,,,,,female\r\n3rd,0,\"Hemming, Miss Nora\",NA,,,,,,female\r\n3rd,0,\"Hendekovic, Mr Ignaz\",NA,,,,,,male\r\n3rd,0,\"Henery, Delia\",NA,,,,,,female\r\n3rd,0,\"Henriksson, Jenny Lovisa\",NA,,,,,,female\r\n3rd,1,\"Hirvonen, Mrs Alexander\",NA,,,,,,female\r\n3rd,0,\"Hirvonen, Miss Hildur E.\",NA,,,,,,female\r\n3rd,0,\"Holm, Mr John Frederik Alexander\",NA,,,,,,male\r\n3rd,0,\"Holthen, Mr Johan Martin\",NA,,,,,,male\r\n3rd,1,\"Honkanen, Miss Eluna\",NA,,,,,,female\r\n3rd,0,\"Horgan, Mr John\",NA,,,,,,male\r\n3rd,1,\"Howard, Miss May\",NA,,,,,,female\r\n3rd,0,\"Humblin, Mr Adolf Mathias Nicolai Olsen\",NA,,,,,,male\r\n3rd,1,\"Hyman, Mr Abraham\",NA,,,,,,male\r\n3rd,0,\"Ilieff, Mr Ylio\",NA,,,,,,male\r\n3rd,0,\"Ilmakangas, Miss Ida Livija\",NA,,,,,,female\r\n3rd,0,\"Ilmakangas, Miss Pieta Sofia\",NA,,,,,,female\r\n3rd,0,\"Ivanoff, Mr Konio\",NA,,,,,,male\r\n3rd,1,\"Jansen, Mr Carl Olof\",NA,,,,,,male\r\n3rd,0,\"Jardin, Mr Jose Netto\",NA,,,,,,male\r\n3rd,1,\"Jensen, Miss Carla Christine\",NA,,,,,,female\r\n3rd,0,\"Jensen, Mr Hans Peder\",NA,,,,,,male\r\n3rd,0,\"Jensen, Mr Niels Peder\",NA,,,,,,male\r\n3rd,0,\"Jensen, Mr Svend Lauritz\",NA,,,,,,male\r\n3rd,1,\"Jermyn, Miss Annie\",NA,,,,,,female\r\n3rd,0,\"Johannesen-Bratthammer, Mr Bernt\",NA,,,,,,male\r\n3rd,0,\"Johanson, Mr Jakob Alfred\",NA,,,,,,male\r\n3rd,0,\"Johansson, Mr Erik\",NA,,,,,,male\r\n3rd,0,\"Johansson, Mr Gustaff Joel\",NA,,,,,,male\r\n3rd,1,\"Johansson, Mr Karl Johan\",NA,,,,,,male\r\n3rd,0,\"Johansson, Mr Nils\",NA,,,,,,male\r\n3rd,1,\"Johansson, Oscar L.\",NA,,,,,,male\r\n3rd,0,\"Johnson, Mr Alfred\",NA,,,,,,male\r\n3rd,1,\"Johnson, Miss Eleanor Ileen\",NA,,,,,,female\r\n3rd,0,\"Johnson, Mr Malkolm Joackim\",NA,,,,,,male\r\n3rd,1,\"Johnson, Master Harold Theodor\",NA,,,,,,male\r\n3rd,0,\"Johnson, Mrs Oscar W.\",NA,,,,,,female\r\n3rd,0,\"Johnson, Mr William Cahoone Jr.\",NA,,,,,,male\r\n3rd,0,\"Johnston, Mr Andrew G.\",NA,,,,,,male\r\n3rd,0,\"Johnston, Mrs Andrew G.\",NA,,,,,,female\r\n3rd,0,\"Johnston, Miss Catherine H.\",NA,,,,,,female\r\n3rd,0,\"Johnston, Master William A.\",NA,,,,,,male\r\n3rd,0,\"Jonkoff, Mr Lazor\",NA,,,,,,male\r\n3rd,1,\"Jonsson, Mr Carl\",NA,,,,,,male\r\n3rd,0,\"Jonsson, Nils Hilding\",NA,,,,,,male\r\n3rd,0,\"Jussila, Miss Aina Maria\",NA,,,,,,female\r\n3rd,1,\"Jussila, Mr Erik\",NA,,,,,,male\r\n3rd,0,\"Jussila, Miss Katriina\",NA,,,,,,female\r\n3rd,0,\"Kallio, Mr Nikolai Erland\",NA,,,,,,male\r\n3rd,0,\"Kalvig, Mr Johannes K. Halverson\",NA,,,,,,male\r\n3rd,0,\"Karajic, Mr Milan\",NA,,,,,,male\r\n3rd,1,\"Karlsson, Mr Einar Gervasius\",NA,,,,,,male\r\n3rd,0,\"Karlsson, Mr Julius Konrad Eugen\",NA,,,,,,male\r\n3rd,0,\"Karlsson, Mr Nils August\",NA,,,,,,male\r\n3rd,1,\"Karun, Miss Anna Mary\",NA,,,,,,female\r\n3rd,0,\"Karun, Mr Franz\",NA,,,,,,male\r\n3rd,0,\"Kassem, Mr Fared\",NA,,,,,,male\r\n3rd,0,\"Keane, Mr Andrew\",NA,,,,,,male\r\n3rd,0,\"Keefe, Mr Arthur\",NA,,,,,,male\r\n3rd,0,\"Kekic, Mr Tido\",NA,,,,,,male\r\n3rd,1,\"Kelly, Miss Anna Kate\",NA,,,,,,female\r\n3rd,0,\"Kelly, Mr James\",NA,,,,,,male\r\n3rd,0,\"Kelly, Mr James\",NA,,,,,,male\r\n3rd,1,\"Kelly, Miss Mary\",NA,,,,,,female\r\n3rd,0,\"Kennedy, Mr John\",NA,,,,,,male\r\n3rd,0,\"Khalil, Mr Betros\",NA,,,,,,male\r\n3rd,0,\"Khalil, Mrs Betros\",NA,,,,,,female\r\n3rd,0,\"Khalil, Mr Saad\",NA,,,,,,male\r\n3rd,0,\"Kiernan, Mr John\",NA,,,,,,male\r\n3rd,0,\"Kiernan, Mr Philip\",NA,,,,,,male\r\n3rd,0,\"Kilgannon, Mr Thomas\",NA,,,,,,male\r\n3rd,1,\"Kink, Mr Anton\",NA,,,,,,male\r\n3rd,0,\"Kink, Mrs Anton (Louise Heilmann)\",NA,,,,,,female\r\n3rd,1,\"Kink, Miss Louise Gretchen\",NA,,,,,,female\r\n3rd,0,\"Kink, Miss Maria\",NA,,,,,,female\r\n3rd,0,\"Kink, Mr Vincenz\",NA,,,,,,male\r\n3rd,0,\"Klasen, Miss Gertrud Emilia\",NA,,,,,,female\r\n3rd,0,\"Klasen, Mrs Hulda Kristina\",NA,,,,,,female\r\n3rd,0,\"Klasen, Mr Klas Albin\",NA,,,,,,male\r\n3rd,0,\"Kraeff, Mr Theodor\",NA,,,,,,male\r\n3rd,1,\"Krekorian, Mr Neshan\",NA,,,,,,male\r\n3rd,0,\"Lahowd, Mr Sarkis\",NA,,,,,,male\r\n3rd,0,\"Laitinen, Miss Kritina Sofia\",NA,,,,,,female\r\n3rd,0,\"Laleff, Mr Kristo\",NA,,,,,,male\r\n3rd,1,\"Lam, Mr Ali\",NA,,,,,,male\r\n3rd,0,\"Lam, Mr Len\",NA,,,,,,male\r\n3rd,1,\"Landegren, Miss Aurora Adelia\",NA,,,,,,female\r\n3rd,0,\"Lane, Mr Patrick\",NA,,,,,,male\r\n3rd,1,\"Lang, Mr Fang\",NA,,,,,,male\r\n3rd,0,\"Larsson, Mr August Viktor\",NA,,,,,,male\r\n3rd,0,\"Larsson, Mr Bengt Edvin\",NA,,,,,,male\r\n3rd,0,\"Larsson-Rondberg, Mr Edvard\",NA,,,,,,male\r\n3rd,1,\"Leeni, Mr Fahim\",NA,,,,,,male\r\n3rd,0,\"Lefebre, Mrs Frank\",NA,,,,,,female\r\n3rd,0,\"Lefebre, Master Henry\",NA,,,,,,male\r\n3rd,0,\"Lefebre, Miss Ida\",NA,,,,,,female\r\n3rd,0,\"Lefebre, Miss Jeannie\",NA,,,,,,female\r\n3rd,0,\"Lefebre, Miss Mathilde\",NA,,,,,,female\r\n3rd,0,\"Leinonen, Mr Antti Gustaf\",NA,,,,,,male\r\n3rd,0,\"Lemberopolous, Mr Peter L.\",NA,,,,,,male\r\n3rd,0,\"Lemom, Mr Denis\",NA,,,,,,male\r\n3rd,0,\"Lemon, Miss Mary\",NA,,,,,,female\r\n3rd,0,\"Leonard, Mr Lionel\",NA,,,,,,male\r\n3rd,0,\"Lester, Mr James\",NA,,,,,,male\r\n3rd,0,\"Lindahl, Miss Agda V.\",NA,,,,,,female\r\n3rd,0,\"Lindblom, Miss Augusta Charlotta\",NA,,,,,,female\r\n3rd,0,\"Lindell, Mr Edvard Bengtsson\",NA,,,,,,male\r\n3rd,0,\"Lindell, Mrs Edvard Bengtsson\",NA,,,,,,female\r\n3rd,1,\"Lindqvist, Eino William\",NA,,,,,,male\r\n3rd,0,\"Linehan, Mr Michael\",NA,,,,,,male\r\n3rd,0,\"Ling, Mr Lee\",NA,,,,,,male\r\n3rd,0,\"Lithman, Mr Simon\",NA,,,,,,male\r\n3rd,0,\"Lobb, Mr William Arthur\",NA,,,,,,male\r\n3rd,0,\"Lobb, Mrs William Arthur\",NA,,,,,,female\r\n3rd,0,\"Lockyer, Mr Edward\",NA,,,,,,male\r\n3rd,0,\"Lovell, Mr John\",NA,,,,,,male\r\n3rd,1,\"Lulich, Mr Nicola\",NA,,,,,,male\r\n3rd,0,\"Lundahl, Mr Johan\",NA,,,,,,male\r\n3rd,1,\"Lundin, Miss Olga Elida\",NA,,,,,,female\r\n3rd,0,\"Lundstrom, Mr Thure Edvin\",NA,,,,,,male\r\n3rd,0,\"Lyntakoff, Mr Stanko\",NA,,,,,,male\r\n3rd,0,\"MacKay, Mr George William\",NA,,,,,,male\r\n3rd,1,\"Madigan, Miss Margaret\",NA,,,,,,female\r\n3rd,0,\"Madsen, Mr Frithiof\",NA,,,,,,male\r\n3rd,0,\"Maenpaa, Mr Matti Alexanteri\",NA,,,,,,male\r\n3rd,0,\"Mahon, Miss Delia\",NA,,,,,,female\r\n3rd,0,\"Maisner, Mr Simon\",NA,,,,,,male\r\n3rd,0,\"Makinen, Mr Kalle Edvard\",NA,,,,,,male\r\n3rd,1,\"Mamee, Mr Hanna\",NA,,,,,,male\r\n3rd,0,\"Mangan, Miss Mary\",NA,,,,,,female\r\n3rd,1,\"Mannion, Miss Margareth\",NA,,,,,,female\r\n3rd,0,\"Mansour, Mr Hanna\",NA,,,,,,male\r\n3rd,0,\"Mardirosian, Mr Sarkis\",NA,,,,,,male\r\n3rd,0,\"Marinko, Mr Dmitri\",NA,,,,,,male\r\n3rd,0,\"Markim, Mr Johann\",NA,,,,,,male\r\n3rd,0,\"Markoff, Mr Marin\",NA,,,,,,male\r\n3rd,1,\"Masselmany, Mrs Fatima\",NA,,,,,,female\r\n3rd,0,\"Matinoff, Mr Nicola\",NA,,,,,,male\r\n3rd,1,\"McCarthy, Miss Katie\",NA,,,,,,female\r\n3rd,0,\"McCormack, Mr Thomas J.\",NA,,,,,,male\r\n3rd,0,\"McCoy, Miss Agnes\",NA,,,,,,female\r\n3rd,0,\"McCoy, Miss Alice\",NA,,,,,,female\r\n3rd,0,\"McCoy, Mr Bernard\",NA,,,,,,male\r\n3rd,0,\"McDermott, Miss Delia\",NA,,,,,,female\r\n3rd,0,\"McElroy, Mr Michael\",NA,,,,,,male\r\n3rd,1,\"McGovern, Mrs Hugh\",NA,,,,,,female\r\n3rd,0,\"McGowan, Miss Anna\",NA,,,,,,female\r\n3rd,0,\"McGowan, Miss Katherine\",NA,,,,,,female\r\n3rd,0,\"McMahon, Mr Martin\",NA,,,,,,male\r\n3rd,0,\"McNamee, Mr Neal\",NA,,,,,,male\r\n3rd,0,\"McNamee, Mrs Neal\",NA,,,,,,female\r\n3rd,0,\"Meanwell, Miss Marion Ogden\",NA,,,,,,female\r\n3rd,0,\"Mechen, Mr John\",NA,,,,,,male\r\n3rd,0,\"Meek, Mrs Thomas\",NA,,,,,,female\r\n3rd,0,\"Melkebuk, Mrs Philemon\",NA,,,,,,female\r\n3rd,0,\"Meo, Mr Alfonso\",NA,,,,,,male\r\n3rd,1,\"Midtsjo, Mr Karl Albert\",NA,,,,,,male\r\n3rd,0,\"Mihoff, Mr Stoytcho\",NA,,,,,,male\r\n3rd,0,\"Miles, Mr Frank\",NA,,,,,,male\r\n3rd,0,\"Mineff, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Minkoff, Mr Lazar\",NA,,,,,,male\r\n3rd,0,\"Mirko, Mr Dika\",NA,,,,,,male\r\n3rd,0,\"Mitkoff, Mr Mito\",NA,,,,,,male\r\n3rd,1,\"Mocklare, Miss Helen Mary\",NA,,,,,,female\r\n3rd,0,\"Moen, Mr Sigurd H.\",NA,,,,,,male\r\n3rd,1,\"Moor, Mrs Beila\",NA,,,,,,female\r\n3rd,0,\"Moor, Master Meier\",NA,,,,,,male\r\n3rd,0,\"Moore, Mr Leonard Charles\",NA,,,,,,male\r\n3rd,1,\"Moran, Miss Bertha\",NA,,,,,,female\r\n3rd,0,\"Moran, Mr Daniel J.\",NA,,,,,,male\r\n3rd,0,\"Moran, Mr James\",NA,,,,,,male\r\n3rd,0,\"Morley, Mr Henry Samuel\",NA,,,,,,male\r\n3rd,0,\"Morrow, Mr Thomas Rowan\",NA,,,,,,male\r\n3rd,1,\"Moubarek (Borak), Mr Hanna (John)\",NA,,,,,,male\r\n3rd,0,\"Moubarek, Mrs George\",NA,,,,,,female\r\n3rd,0,\"Moubarek, Master George\",NA,,,,,,male\r\n3rd,0,\"Moubarek, Master William George\",NA,,,,,,male\r\n3rd,0,\"Moss, Albert Johan\",NA,,,,,,male\r\n3rd,0,\"Moussa, Mrs Mantoura Baloics\",NA,,,,,,female\r\n3rd,0,\"Moutal, Mr Rahamin\",NA,,,,,,male\r\n3rd,1,\"Mullins, Miss Katie\",NA,,,,,,female\r\n3rd,0,\"Mulvihill, Miss Bertha E.\",NA,,,,,,female\r\n3rd,0,\"Murdlin, Mr Joseph\",NA,,,,,,male\r\n3rd,0,\"Murphy, Miss Katherine\",NA,,,,,,female\r\n3rd,0,\"Murphy, Miss Margaret\",NA,,,,,,female\r\n3rd,0,\"Murphy, Miss Nora\",NA,,,,,,female\r\n3rd,0,\"Myhrman, Mr Pehr Fabian Oliver Malkolm\",NA,,,,,,male\r\n3rd,1,\"Nackid, Miss Maria\",NA,,,,,,female\r\n3rd,0,\"Nackid, Mr Said\",NA,,,,,,male\r\n3rd,0,\"Nackid, Mrs Said\",NA,,,,,,female\r\n3rd,0,\"Nahill, Mr Toufik\",NA,,,,,,male\r\n3rd,0,\"Naidenoff, Mr Penko\",NA,,,,,,male\r\n3rd,0,\"Nancarrow, W. H.\",NA,,,,,,male\r\n3rd,0,\"Niklasen, Sander\",NA,,,,,,male\r\n3rd,0,\"Nosworthy, Richard C.\",NA,,,,,,male\r\n3rd,1,\"Najib, Miss Adele Kiamie\",NA,,,,,,female\r\n3rd,0,\"Nancarrow, Mr William Henry\",NA,,,,,,male\r\n3rd,0,\"Nankoff, Mr Minko\",NA,,,,,,male\r\n3rd,0,\"Nasr, Mr Mustafa\",NA,,,,,,male\r\n3rd,0,\"Nassr, Mr Saade Jean\",NA,,,,,,male\r\n3rd,0,\"Naughton, Miss Hannah\",NA,,,,,,female\r\n3rd,0,\"Nemaugh, Mr Robert\",NA,,,,,,male\r\n3rd,0,\"Nenkoff, Mr Christo\",NA,,,,,,male\r\n3rd,1,\"Nicola-Yarred, Miss Jamila\",NA,,,,,,female\r\n3rd,0,\"Nicola-Yarred, Master Elias\",NA,,,,,,male\r\n3rd,0,\"Nieminen, Miss Manta Josefina\",NA,,,,,,female\r\n3rd,0,\"Niklasson, Mr Samuel\",NA,,,,,,male\r\n3rd,0,\"Nilsson, Mr August Ferdinand\",NA,,,,,,male\r\n3rd,1,\"Nilsson, Miss Berta Olivia\",NA,,,,,,female\r\n3rd,0,\"Nilsson, Miss Helmina Josefina\",NA,,,,,,female\r\n3rd,0,\"Niskanen, Mr Johan\",NA,,,,,,male\r\n3rd,0,\"Nosworthy, Mr Richard Cater\",NA,,,,,,male\r\n3rd,1,\"Novel, Mansouer\",NA,,,,,,male\r\n3rd,0,\"Nysten, Miss Anna\",NA,,,,,,female\r\n3rd,0,\"Nysveen, Mr Johan H.\",NA,,,,,,male\r\n3rd,0,\"O'Brien, Mr Denis\",NA,,,,,,male\r\n3rd,0,\"O'Brien, Mr Thomas\",NA,,,,,,male\r\n3rd,1,\"O'Brien, Mrs Thomas\",NA,,,,,,female\r\n3rd,0,\"O'Connell, Mr Patrick D.\",NA,,,,,,male\r\n3rd,0,\"O'Connor, Mr Maurice\",NA,,,,,,male\r\n3rd,0,\"O'Connor, Mr Patrick\",NA,,,,,,male\r\n3rd,1,\"Odahl, Mr Nils Martin\",NA,,,,,,male\r\n3rd,0,\"O'Dwyer, Miss Nellie\",NA,,,,,,female\r\n3rd,0,\"Ohman, Miss Velin\",NA,,,,,,female\r\n3rd,0,\"O'Keefe, Mr Patrick\",NA,,,,,,male\r\n3rd,0,\"OLeary, Miss Norah\",NA,,,,,,female\r\n3rd,0,\"Olsen, Master Arthur\",NA,,,,,,male\r\n3rd,0,\"Olsen, Mr Charlie (Carl)\",NA,,,,,,male\r\n3rd,0,\"Olsen, Mr Henry Margido\",NA,,,,,,male\r\n3rd,0,\"Olsen, Mr Ole M.\",NA,,,,,,male\r\n3rd,0,\"Olsson, Miss Elida\",NA,,,,,,female\r\n3rd,0,\"Olsson, Mr Nils Johan\",NA,,,,,,male\r\n3rd,1,\"Olsson, Mr Oscar Johansson\",NA,,,,,,male\r\n3rd,0,\"O'Neill, Miss Bridget\",NA,,,,,,female\r\n3rd,0,\"Oreskovic, Mr Jeko\",NA,,,,,,male\r\n3rd,0,\"Oreskovic, Mr Luka\",NA,,,,,,male\r\n3rd,0,\"Oreskovic, Mr Maria\",NA,,,,,,male\r\n3rd,0,\"Osen, Mr Olof Elon\",NA,,,,,,male\r\n3rd,1,\"Osman, Miss Maria\",NA,,,,,,female\r\n3rd,0,\"O'Sullivan, Miss Bridget\",NA,,,,,,female\r\n3rd,0,\"Panula, Mr Ernesti Arvid\",NA,,,,,,male\r\n3rd,0,\"Panula, Mr Jaako Arnold\",NA,,,,,,male\r\n3rd,0,\"Panula, Master Juha Niilo\",NA,,,,,,male\r\n3rd,0,\"Panula, Mrs John\",NA,,,,,,female\r\n3rd,0,\"Panula, Master Urho Abraham\",NA,,,,,,male\r\n3rd,0,\"Panula, Master William\",NA,,,,,,male\r\n3rd,0,\"Pasic, Mr Jakob\",NA,,,,,,male\r\n3rd,0,\"Paulner, Mr Uscher\",NA,,,,,,male\r\n3rd,0,\"Paulsson, Master Gosta Leonard\",NA,,,,,,male\r\n3rd,0,\"Paulsson, Mrs Nils\",NA,,,,,,female\r\n3rd,0,\"Paulsson, Master Paul Folke\",NA,,,,,,male\r\n3rd,0,\"Paulsson, Miss Stina Viola\",NA,,,,,,female\r\n3rd,0,\"Paulsson, Miss Torborg Danira\",NA,,,,,,female\r\n3rd,0,\"Pavlovic, Mr Stefo\",NA,,,,,,male\r\n3rd,0,\"Peacock, Master Alfred Edward\",NA,,,,,,male\r\n3rd,0,\"Peacock, Mrs Benjamin\",NA,,,,,,female\r\n3rd,0,\"Peacock, Miss Treasteall\",NA,,,,,,female\r\n3rd,0,\"Pearce, Mr Ernest\",NA,,,,,,male\r\n3rd,0,\"Pecruic, Mr Mate\",NA,,,,,,male\r\n3rd,0,\"Pecruic, Mr Tome\",NA,,,,,,male\r\n3rd,0,\"Pedersen, Mr Olaf\",NA,,,,,,male\r\n3rd,0,\"Peduzzi, Mr Joseph\",NA,,,,,,male\r\n3rd,1,\"Pekoniemi, Mr Edvard\",NA,,,,,,male\r\n3rd,0,\"Peltomaki, Nikolai Johannes\",NA,,,,,,male\r\n3rd,0,\"Perkin, Mr John Henry\",NA,,,,,,male\r\n3rd,1,\"Persson, Mr Ernst Ulrik\",NA,,,,,,male\r\n3rd,0,\"Peter (Joseph), Miss Mary\",NA,,,,,,female\r\n3rd,0,\"Peter (Joseph), Mrs Catherine\",NA,,,,,,female\r\n3rd,0,\"Peter (Joseph), Master Michael J.\",NA,,,,,,male\r\n3rd,0,\"Peters, Miss Katie\",NA,,,,,,female\r\n3rd,0,\"Petersen, Mr Marius\",NA,,,,,,male\r\n3rd,0,\"Petranec, Miss Matilda\",NA,,,,,,female\r\n3rd,0,\"Petroff, Mr Nedeca\",NA,,,,,,male\r\n3rd,0,\"Petroff, Mr Pentcho\",NA,,,,,,male\r\n3rd,0,\"Pettersson, Miss Ellen Natalia\",NA,,,,,,female\r\n3rd,0,\"Peterson, Mr Johan Emil\",NA,,,,,,male\r\n3rd,1,\"Pickard (Trembisky), Mr Berk\",NA,,,,,,male\r\n3rd,0,\"Plotcharsky, Mr Vasil\",NA,,,,,,male\r\n3rd,0,\"Potchett, Mr George\",NA,,,,,,male\r\n3rd,0,\"Radeff, Mr Alexander\",NA,,,,,,male\r\n3rd,0,\"Raibid, Mr Razi\",NA,,,,,,male\r\n3rd,0,\"Reed, Mr James George\",NA,,,,,,male\r\n3rd,0,\"Reynolds, Mr Harold\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Albert\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Arthur\",NA,,,,,,male\r\n3rd,0,\"Rice, Master George\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Eric\",NA,,,,,,male\r\n3rd,0,\"Rice, Master Eugene\",NA,,,,,,male\r\n3rd,0,\"Rice, Mrs William\",NA,,,,,,female\r\n3rd,0,\"Riihiivouri, Miss Sanni\",NA,,,,,,female\r\n3rd,0,\"Rintamaki, Mr Matti\",NA,,,,,,male\r\n3rd,1,\"Riordan, Miss Hannah\",NA,,,,,,female\r\n3rd,0,\"Risien, Mr Samuel\",NA,,,,,,male\r\n3rd,0,\"Risien, Mrs Samuel\",NA,,,,,,female\r\n3rd,0,\"Robins, Mr Alexander A.\",NA,,,,,,male\r\n3rd,0,\"Robins, Mrs Alexander A.\",NA,,,,,,female\r\n3rd,0,\"Rommetvedt, Mr Karl Kristian Knut\",NA,,,,,,male\r\n3rd,0,\"Rogers, Mr William John\",NA,,,,,,male\r\n3rd,0,\"Rosblom, Mrs Viktor\",NA,,,,,,female\r\n3rd,0,\"Rosblom, Miss Salli Helena\",NA,,,,,,female\r\n3rd,0,\"Rosblom, Mr Viktor Rickard\",NA,,,,,,male\r\n3rd,1,\"Roth, Miss Sarah\",NA,,,,,,female\r\n3rd,0,\"Rouse, Mr Richard Henry\",NA,,,,,,male\r\n3rd,0,\"Rush, Mr Alfred George John\",NA,,,,,,male\r\n3rd,1,\"Ryan, Mr Edward Ryan\",NA,,,,,,male\r\n3rd,0,\"Ryan, Mr Patrick\",NA,,,,,,male\r\n3rd,0,\"Saad, Mr Amin\",NA,,,,,,male\r\n3rd,1,\"Saad, Khalil\",NA,,,,,,male\r\n3rd,0,\"Sadlier, Mr Matthew\",NA,,,,,,male\r\n3rd,0,\"Sadowitz, Mr Harry\",NA,,,,,,male\r\n3rd,0,\"Sage, Miss Ada\",NA,,,,,,female\r\n3rd,0,\"Sage, Miss Constance\",NA,,,,,,female\r\n3rd,0,\"Sage, Miss Dorothy\",NA,,,,,,female\r\n3rd,0,\"Sage, Mr Douglas\",NA,,,,,,male\r\n3rd,0,\"Sage, Mr Frederick\",NA,,,,,,male\r\n3rd,0,\"Sage, Mr George\",NA,,,,,,male\r\n3rd,0,\"Sage, Mr John\",NA,,,,,,male\r\n3rd,0,\"Sage, Mrs John\",NA,,,,,,female\r\n3rd,0,\"Sage, Miss Stella\",NA,,,,,,female\r\n3rd,0,\"Sage, Thomas (child)\",NA,,,,,,male\r\n3rd,0,\"Sage, Master William\",NA,,,,,,male\r\n3rd,0,\"Salander, Mr Karl Johan\",NA,,,,,,male\r\n3rd,1,\"Salkjelsvik, Miss Anna\",NA,,,,,,female\r\n3rd,0,\"Salonen, Mr Johan Werner\",NA,,,,,,male\r\n3rd,0,\"Samaan, Mr Elias\",NA,,,,,,male\r\n3rd,0,\"Samaan, Mr Hanna\",NA,,,,,,male\r\n3rd,0,\"Samaan, Mr Youssef\",NA,,,,,,male\r\n3rd,1,\"Sandstrom, Miss Hjalmar\",NA,,,,,,female\r\n3rd,0,\"Sandstrom, Miss Beatrice Irene\",NA,,,,,,female\r\n3rd,0,\"Sandstrom, Miss Marguerite Rut\",NA,,,,,,female\r\n3rd,0,\"Sather, Simon Sivertsen\",NA,,,,,,male\r\n3rd,0,\"Saundercock, William Henry\",NA,,,,,,male\r\n3rd,0,\"Sawyer, Mr Frederick\",NA,,,,,,male\r\n3rd,0,\"Scanlan, Mr James\",NA,,,,,,male\r\n3rd,0,\"Sdycoff, Mr Todor\",NA,,,,,,male\r\n3rd,0,Seman Master Betros,NA,,,,,,male\r\n3rd,0,\"Serota, Mr Maurice\",NA,,,,,,male\r\n3rd,0,\"Shaughnesay, Mr Patrick\",NA,,,,,,male\r\n3rd,0,\"Shedid (Sitik), Mr Daher (Docart)\",NA,,,,,,male\r\n3rd,1,\"Sheerlinck, Mr Jean\",NA,,,,,,male\r\n3rd,0,\"Shellard, Mr Frederick B.\",NA,,,,,,male\r\n3rd,1,\"Shine, Miss Ellen\",NA,,,,,,female\r\n3rd,0,\"Shorney, Mr Charles\",NA,,,,,,male\r\n3rd,0,\"Simmons, Mr John\",NA,,,,,,male\r\n3rd,0,\"Sirayanian, Mr Arsun\",NA,,,,,,male\r\n3rd,0,\"Sivic, Mr Husen\",NA,,,,,,male\r\n3rd,0,\"Sivola, Mr Antti\",NA,,,,,,male\r\n3rd,1,\"Sjoblom, Miss Anna Sofia\",NA,,,,,,female\r\n3rd,0,\"Sholt, Mr Peter Andreas Lauritz Andersen\",NA,,,,,,male\r\n3rd,0,\"Skinner, Mr Henry John\",NA,,,,,,male\r\n3rd,0,\"Skoog, Master Harald\",NA,,,,,,male\r\n3rd,0,\"Skoog, Master Karl\",NA,,,,,,male\r\n3rd,0,\"Skoog, Miss Mabel\",NA,,,,,,female\r\n3rd,0,\"Skoog, Miss Margit\",NA,,,,,,female\r\n3rd,0,\"Skoog, Mr William\",NA,,,,,,male\r\n3rd,0,\"Skoog, Mrs William\",NA,,,,,,female\r\n3rd,0,\"Slabenoff, Mr Petco\",NA,,,,,,male\r\n3rd,0,\"Slocovski, Mr Selman\",NA,,,,,,male\r\n3rd,0,\"Smiljanovic, Mr Mile\",NA,,,,,,male\r\n3rd,1,\"Smyth, Miss Julia\",NA,,,,,,female\r\n3rd,0,\"Solvang, Mrs Lena Jacobsen\",NA,,,,,,female\r\n3rd,0,\"Somerton, Mr Francis William\",NA,,,,,,male\r\n3rd,1,\"Sop, Mr Jules\",NA,,,,,,male\r\n3rd,0,\"Spector, Mr Woolf\",NA,,,,,,male\r\n3rd,0,\"Staneff, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Stankovic, Mr Jovan\",NA,,,,,,male\r\n3rd,1,\"Stanley, Miss Amy Zilla Elsie\",NA,,,,,,female\r\n3rd,0,\"Stanley, Mr Edward Roland\",NA,,,,,,male\r\n3rd,0,\"Storey, Mr Thomas\",NA,,,,,,male\r\n3rd,0,\"Stoyehoff, Mr Ilia\",NA,,,,,,male\r\n3rd,0,\"Strandberg, Miss Ida Sofia\",NA,,,,,,female\r\n3rd,1,\"Stranden, Mr Juho\",NA,,,,,,male\r\n3rd,0,\"Strilic, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Strom, Mrs Wilhelm\",NA,,,,,,female\r\n3rd,0,\"Strom, Miss Telma (Selma) Matilda\",NA,,,,,,female\r\n3rd,1,\"Sunderland, Mr Victor Francis\",NA,,,,,,male\r\n3rd,0,\"Sundman, Mr Johan Julian\",NA,,,,,,male\r\n3rd,0,\"Sutehall, Mr Henry, Jr\",NA,,,,,,male\r\n3rd,0,\"Svensson, Mr Johan\",NA,,,,,,male\r\n3rd,1,\"Svensson, Mr Johan Cervin\",NA,,,,,,male\r\n3rd,0,\"Svensson, Mr Olof\",NA,,,,,,male\r\n3rd,0,\"Tannous, Mr Thomas\",NA,,,,,,male\r\n3rd,1,\"Tenglin, Mr Gunnar Isidor\",NA,,,,,,male\r\n3rd,0,\"Theobald, Mr Thomas Leonard\",NA,,,,,,male\r\n3rd,1,\"Thomas, Mrs Alexander\",NA,,,,,,female\r\n3rd,0,\"Thomas, Master Assad Alexander\",NA,,,,,,male\r\n3rd,0,\"Thomas, Mr Charles\",NA,,,,,,male\r\n3rd,0,\"Thomas, Mr John, Jr\",NA,,,,,,male\r\n3rd,0,\"Thomas, Mr John (? 1st/2nd class)\",NA,,,,,,male\r\n3rd,0,\"Thomson, Mr Alexander\",NA,,,,,,male\r\n3rd,0,\"Thorneycroft, Mr Percival\",NA,,,,,,male\r\n3rd,1,\"Thorneycroft, Mrs Percival\",NA,,,,,,female\r\n3rd,0,\"Tikkanen, Mr Juho\",NA,,,,,,male\r\n3rd,0,\"Tobin, Mr Roger\",NA,,,,,,male\r\n3rd,0,\"Todoroff, Mr Lalio\",NA,,,,,,male\r\n3rd,0,\"Toerber, Mr Ernest William\",NA,,,,,,male\r\n3rd,0,\"Tomlin, Mr Ernest Portage\",NA,,,,,,male\r\n3rd,0,\"Torfa, Mr Assad\",NA,,,,,,male\r\n3rd,1,\"Tornquist, Mr William Henry\",NA,,,,,,male\r\n3rd,0,\"Touma (Thomas), Mrs Darwin\",NA,,,,,,female\r\n3rd,0,\"Touma (Thomas), Master George\",NA,,,,,,male\r\n3rd,0,\"Touma (Thomas), Miss Hannah\",NA,,,,,,female\r\n3rd,0,\"Turcin, Mr Stefan\",NA,,,,,,male\r\n3rd,1,\"Turja, Miss Anna Sofia\",NA,,,,,,female\r\n3rd,0,\"Turkula, Mrs Hedvig\",NA,,,,,,female\r\n3rd,0,\"Uzelas, Mr Joso\",NA,,,,,,male\r\n3rd,0,\"Van Billiard, Mr Austin Blyler\",NA,,,,,,male\r\n3rd,0,\"Van Billiard, Master James William\",NA,,,,,,male\r\n3rd,0,\"Van Billiard, Master Walter John\",NA,,,,,,male\r\n3rd,0,\"Van der Planke, Miss Augusta\",NA,,,,,,female\r\n3rd,0,\"Van der Planke, Mr Jules\",NA,,,,,,male\r\n3rd,0,\"Van der Planke, Mrs Jules\",NA,,,,,,female\r\n3rd,0,\"Van der Planke, Mr Leon\",NA,,,,,,male\r\n3rd,0,\"Van der Steen, Mr Leo Peter\",NA,,,,,,male\r\n3rd,0,\"Van de Velde, Mr John Joseph\",NA,,,,,,male\r\n3rd,0,\"Vandewalle, Mr Nestor Cyriel\",NA,,,,,,male\r\n3rd,0,\"Van Impe, Miss Catharine\",NA,,,,,,female\r\n3rd,0,\"Van Impe, Mr Jean Baptiste\",NA,,,,,,male\r\n3rd,0,\"Van Impe, Mrs Jean Baptiste\",NA,,,,,,female\r\n3rd,1,\"Vartunian, Mr David\",NA,,,,,,male\r\n3rd,0,\"Vassilios, Mr Catavelas\",NA,,,,,,male\r\n3rd,0,\"Vendel, Mr Olof Wdvin\",NA,,,,,,male\r\n3rd,0,\"Vereruysse, Mr Victor\",NA,,,,,,male\r\n3rd,0,\"Vestrom, Miss Hulda Amanda Adolfina\",NA,,,,,,female\r\n3rd,0,\"Vonk, Mr Jenko\",NA,,,,,,male\r\n3rd,0,\"Ware, Mr Frederick\",NA,,,,,,male\r\n3rd,0,\"Warren, Mr Charles William\",NA,,,,,,male\r\n3rd,0,\"Wazli, Mr Yousif\",NA,,,,,,male\r\n3rd,0,\"Webber, Mr James\",NA,,,,,,male\r\n3rd,1,\"Wennerstrom, Mr August Edvard\",NA,,,,,,male\r\n3rd,0,\"Wenzel, Mr Linhart\",NA,,,,,,male\r\n3rd,0,\"Widegren, Mr Charles Peter\",NA,,,,,,male\r\n3rd,0,\"Wiklund, Mr Jacob Alfred\",NA,,,,,,male\r\n3rd,1,\"Wilkes, Mrs Ellen\",NA,,,,,,female\r\n3rd,0,\"Willer, Mr Aaron\",NA,,,,,,male\r\n3rd,0,\"Willey, Mr Edward\",NA,,,,,,male\r\n3rd,0,\"Williams, Mr Howard Hugh\",NA,,,,,,male\r\n3rd,0,\"Williams, Mr Leslie\",NA,,,,,,male\r\n3rd,0,\"Windelov, Mr Einar\",NA,,,,,,male\r\n3rd,0,\"Wirz, Mr Albert\",NA,,,,,,male\r\n3rd,0,\"Wiseman, Mr Phillippe\",NA,,,,,,male\r\n3rd,0,\"Wittevrongel, Mr Camiel\",NA,,,,,,male\r\n3rd,1,\"Yalsevac, Mr Ivan\",NA,,,,,,male\r\n3rd,0,\"Yasbeck, Mr Antoni\",NA,,,,,,male\r\n3rd,1,\"Yasbeck, Mrs Antoni\",NA,,,,,,female\r\n3rd,0,\"Youssef, Mr Gerios\",NA,,,,,,male\r\n3rd,0,\"Zabour, Miss Hileni\",NA,,,,,,female\r\n3rd,0,\"Zabour, Miss Tamini\",NA,,,,,,female\r\n3rd,0,\"Zakarian, Mr Artun\",NA,,,,,,male\r\n3rd,0,\"Zakarian, Mr Maprieder\",NA,,,,,,male\r\n3rd,0,\"Zenn, Mr Philip\",NA,,,,,,male\r\n3rd,0,\"Zievens, Rene\",NA,,,,,,female\r\n3rd,0,\"Zimmerman, Leo\",NA,,,,,,male"
  },
  {
    "path": "week-4/week-4-1-supervised-learning-class-empty.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Class 4-1: Supervised learning\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"from sklearn import tree\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from pandas.plotting import scatter_matrix\\n\",\n    \"from sklearn.model_selection import train_test_split\\n\",\n    \"from sklearn import metrics\\n\",\n    \"%matplotlib inline\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Today we're going to look at GSS data asking people whether the government is spending too much or too little on various problems. We're going to try to predict one of the answers from all of the others.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Exploring the data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# load it\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# take a look\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Our usual GSS cleanup\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# For a decision tree to work we can't have any missing values. Drop all rows with any NAs\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The simplest way to see if some variables are going to be predictable from others is to check out the overall correlations.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Building a decision-tree\\n\",\n    \"\\n\",\n    \"We're going to use a machine learning technique called a decision tree to try to predict the answer on one question from the answers on all the others. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# By changing this line and re-running the workbook, we can see how predictiable different variables are or aren't.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Actually applying the decision tree is very much like doing a regresion.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Fit a decision tree to the test data\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Ok, now we need to evaluate the result, by seeing how well it can predict our question from all the others. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Get the predictions\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What percentage did it predict right?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What mistakes did it make?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"So what is this tree thing? We can actually draw it \\n\",\n    \"\\n\",\n    \"To get this working, you will need to install `GraphViz`. On Windows, download it [here](https://graphviz.gitlab.io/download/). On Mac, try `brew install graphviz`\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.tree import export_graphviz\\n\",\n    \"import graphviz\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## A more realistic test\\n\",\n    \"The test of a classifier is not whether it can reproduce the output training data -- it's how well it does on data it's never seen before. So let's split our data into training and test sets, and try this again.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Split off a random third of this data to use for testing.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# The x values don't contain the column we want to predict. The y value is only that column.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Fit a decision tree to the training data only\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# What percentage did it predict right on the training data?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What percentage did it predict right on the test data?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What mistakes did it make?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Random Forest: Improving accuracy with a better classifier\\n\",\n    \"\\n\",\n    \"Sometimes improving accuracy is very difficult. You might just not have a very predictable problem! But we can often do better than just a simple decision tree, by using many trees. This is a \\\"random forest,\\\" and for our purposes it's just a drop-in replacement for the classifier.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.ensemble import RandomForestClassifier\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# What percentage did it predict right on the test data?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What mistakes did it make?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Binary classification metrics\\n\",\n    \"In this section we'll train a basic classifier on our favorite Titantic data, and then calculate some accuracy metrics for a binary predictor where there are only two outcomes: true and false. We'll be using these metrics over and over again in our upcoming discussions of algorithmic accountability.\\n\",\n    \"\\n\",\n    \"For your reference, Wikipedia has an [amazing chart](https://en.wikipedia.org/wiki/Confusion_matrix) of the various things you can calculate from a binary confusion matrix.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# load titanic.csv once more\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# recode the pclass and gender variables so they are numeric\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Set aside a third of the data for testing.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Set up x and y variables and train a decision tree on the pclass and sex features, to predict survived\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create ti_test and ti_test values, and use the classifier to predict yti_test_pred\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Print out the confusion matrix for the classifier. Use the DataFrame trick we saw in class to label the axes.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Ok! What are the number of true positives, true negatives, false positives, and false negatives?\\n\",\n    \"TP = \\n\",\n    \"TN = \\n\",\n    \"FP = \\n\",\n    \"FN = \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Using only the varaibles TP,TN,FP,FN, calculate and print the overall accuracy\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Check that we have the calculation right by comparing to metrics.accuracy_score\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Using only the varaibles TP,TN,FP,FN, calculate and print the false positive rate and the false negative rate\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Now compute and print the precision aka positive predictive value, again from these four variables.\\n\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-4/week-4-1-supervised-learning-class.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Class 4-1: Supervised learning\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"from sklearn import tree\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from pandas.plotting import scatter_matrix\\n\",\n    \"from sklearn.model_selection import train_test_split\\n\",\n    \"from sklearn import metrics\\n\",\n    \"%matplotlib inline\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Today we're going to look at GSS data asking people whether the government is spending too much or too little on various problems. We're going to try to predict one of the answers from all of the others.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Exploring the data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(2869, 21)\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# load it\\n\",\n    \"gss = pd.read_csv('GSS-spending.csv')\\n\",\n    \"gss.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Gss year for this respondent</th>\\n\",\n       \"      <th>Welfare</th>\\n\",\n       \"      <th>Highways and bridges</th>\\n\",\n       \"      <th>Social security</th>\\n\",\n       \"      <th>Mass transportation</th>\\n\",\n       \"      <th>Parks and recreation</th>\\n\",\n       \"      <th>Assistance for childcare</th>\\n\",\n       \"      <th>Supporting scientific research</th>\\n\",\n       \"      <th>Developing alternative energy sources</th>\\n\",\n       \"      <th>Foreign aid</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>Improving the conditions of blacks</th>\\n\",\n       \"      <th>Respondent id number</th>\\n\",\n       \"      <th>Space exploration program</th>\\n\",\n       \"      <th>Improving &amp; protecting environment</th>\\n\",\n       \"      <th>Improving &amp; protecting nations health</th>\\n\",\n       \"      <th>Solving problems of big cities</th>\\n\",\n       \"      <th>Halting rising crime rate</th>\\n\",\n       \"      <th>Dealing with drug addiction</th>\\n\",\n       \"      <th>Improving nations education system</th>\\n\",\n       \"      <th>Ballot used for interview</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>2016</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>Ballot a</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>2016</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>2.0</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Ballot b</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>2016</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Ballot c</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>2016</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Ballot a</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>2016</td>\\n\",\n       \"      <td>Not applicable</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>Too little</td>\\n\",\n       \"      <td>Too much</td>\\n\",\n       \"      <td>Don't know</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>About right</td>\\n\",\n       \"      <td>Not applicable</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>Not applicable</td>\\n\",\n       \"      <td>5.0</td>\\n\",\n       \"      <td>Not applicable</td>\\n\",\n       \"      <td>Not applicable</td>\\n\",\n       \"      <td>Not applicable</td>\\n\",\n       \"      <td>Not applicable</td>\\n\",\n       \"      <td>Not applicable</td>\\n\",\n       \"      <td>Not applicable</td>\\n\",\n       \"      <td>Not applicable</td>\\n\",\n       \"      <td>Ballot c</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 21 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"  Gss year for this respondent                                Welfare  \\\\\\n\",\n       \"0                                               2016      About right   \\n\",\n       \"1                                               2016       Don't know   \\n\",\n       \"2                                               2016       Don't know   \\n\",\n       \"3                                               2016         Too much   \\n\",\n       \"4                                               2016   Not applicable   \\n\",\n       \"\\n\",\n       \"  Highways and bridges Social security Mass transportation  \\\\\\n\",\n       \"0          About right        Too much          Too little   \\n\",\n       \"1           Too little      Don't know          Too little   \\n\",\n       \"2           Too little      Too little          Don't know   \\n\",\n       \"3          About right      Too little            Too much   \\n\",\n       \"4           Too little     About right          Too little   \\n\",\n       \"\\n\",\n       \"  Parks and recreation Assistance for childcare  \\\\\\n\",\n       \"0          About right              About right   \\n\",\n       \"1             Too much               Too little   \\n\",\n       \"2          About right               Don't know   \\n\",\n       \"3           Too little                 Too much   \\n\",\n       \"4             Too much               Don't know   \\n\",\n       \"\\n\",\n       \"  Supporting scientific research          \\\\\\n\",\n       \"0                            About right   \\n\",\n       \"1                             Don't know   \\n\",\n       \"2                             Don't know   \\n\",\n       \"3                             Too little   \\n\",\n       \"4                            About right   \\n\",\n       \"\\n\",\n       \"  Developing alternative energy sources     Foreign aid  \\\\\\n\",\n       \"0                            Too little        Too much   \\n\",\n       \"1                            Too little      Don't know   \\n\",\n       \"2                            Too little        Too much   \\n\",\n       \"3                            Too little        Too much   \\n\",\n       \"4                           About right  Not applicable   \\n\",\n       \"\\n\",\n       \"             ...            Improving the conditions of blacks  \\\\\\n\",\n       \"0            ...                                    Too little   \\n\",\n       \"1            ...                                    Too little   \\n\",\n       \"2            ...                                   About right   \\n\",\n       \"3            ...                                   About right   \\n\",\n       \"4            ...                                Not applicable   \\n\",\n       \"\\n\",\n       \"  Respondent id number  Space exploration program  \\\\\\n\",\n       \"0                  1.0                 Too little   \\n\",\n       \"1                  2.0                 Don't know   \\n\",\n       \"2                  3.0                 Too little   \\n\",\n       \"3                  4.0                About right   \\n\",\n       \"4                  5.0             Not applicable   \\n\",\n       \"\\n\",\n       \"  Improving & protecting environment Improving & protecting nations health  \\\\\\n\",\n       \"0                         Too little                           About right   \\n\",\n       \"1                         Don't know                            Too little   \\n\",\n       \"2                        About right                            Too little   \\n\",\n       \"3                        About right                              Too much   \\n\",\n       \"4                     Not applicable                        Not applicable   \\n\",\n       \"\\n\",\n       \"  Solving problems of big cities Halting rising crime rate  \\\\\\n\",\n       \"0                    About right                Too little   \\n\",\n       \"1                     Don't know                  Too much   \\n\",\n       \"2                     Don't know                Too little   \\n\",\n       \"3                    About right               About right   \\n\",\n       \"4                 Not applicable            Not applicable   \\n\",\n       \"\\n\",\n       \"  Dealing with drug addiction Improving nations education system  \\\\\\n\",\n       \"0                    Too much                        About right   \\n\",\n       \"1                  Too little                         Too little   \\n\",\n       \"2                  Too little                         Too little   \\n\",\n       \"3                  Too little                         Too little   \\n\",\n       \"4              Not applicable                     Not applicable   \\n\",\n       \"\\n\",\n       \"  Ballot used for interview  \\n\",\n       \"0                  Ballot a  \\n\",\n       \"1                  Ballot b  \\n\",\n       \"2                  Ballot c  \\n\",\n       \"3                  Ballot a  \\n\",\n       \"4                  Ballot c  \\n\",\n       \"\\n\",\n       \"[5 rows x 21 columns]\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# take a look\\n\",\n    \"gss.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Not applicable                                                                    1430\\n\",\n       \"Too much                                                                           592\\n\",\n       \"About right                                                                        477\\n\",\n       \"Too little                                                                         316\\n\",\n       \"Don't know                                                                          47\\n\",\n       \"No answer                                                                            5\\n\",\n       \"Data collection: General Social Survey\\\\rCase Selection: (Combined.year = 2016)       1\\n\",\n       \"Name: Welfare, dtype: int64\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"gss['Welfare'].value_counts()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Welfare</th>\\n\",\n       \"      <th>Highways and bridges</th>\\n\",\n       \"      <th>Social security</th>\\n\",\n       \"      <th>Mass transportation</th>\\n\",\n       \"      <th>Parks and recreation</th>\\n\",\n       \"      <th>Assistance for childcare</th>\\n\",\n       \"      <th>Supporting scientific research</th>\\n\",\n       \"      <th>Developing alternative energy sources</th>\\n\",\n       \"      <th>Foreign aid</th>\\n\",\n       \"      <th>Military, armaments, and defense</th>\\n\",\n       \"      <th>Improving the conditions of blacks</th>\\n\",\n       \"      <th>Space exploration program</th>\\n\",\n       \"      <th>Improving &amp; protecting environment</th>\\n\",\n       \"      <th>Improving &amp; protecting nations health</th>\\n\",\n       \"      <th>Solving problems of big cities</th>\\n\",\n       \"      <th>Halting rising crime rate</th>\\n\",\n       \"      <th>Dealing with drug addiction</th>\\n\",\n       \"      <th>Improving nations education system</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>-1.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   Welfare  Highways and bridges  Social security  Mass transportation  \\\\\\n\",\n       \"0      0.0                   0.0              1.0                 -1.0   \\n\",\n       \"1      NaN                  -1.0              NaN                 -1.0   \\n\",\n       \"2      NaN                  -1.0             -1.0                  NaN   \\n\",\n       \"3      1.0                   0.0             -1.0                  1.0   \\n\",\n       \"4      NaN                  -1.0              0.0                 -1.0   \\n\",\n       \"\\n\",\n       \"   Parks and recreation  Assistance for childcare  \\\\\\n\",\n       \"0                   0.0                       0.0   \\n\",\n       \"1                   1.0                      -1.0   \\n\",\n       \"2                   0.0                       NaN   \\n\",\n       \"3                  -1.0                       1.0   \\n\",\n       \"4                   1.0                       NaN   \\n\",\n       \"\\n\",\n       \"   Supporting scientific research          \\\\\\n\",\n       \"0                                     0.0   \\n\",\n       \"1                                     NaN   \\n\",\n       \"2                                     NaN   \\n\",\n       \"3                                    -1.0   \\n\",\n       \"4                                     0.0   \\n\",\n       \"\\n\",\n       \"   Developing alternative energy sources  Foreign aid  \\\\\\n\",\n       \"0                                   -1.0          1.0   \\n\",\n       \"1                                   -1.0          NaN   \\n\",\n       \"2                                   -1.0          1.0   \\n\",\n       \"3                                   -1.0          1.0   \\n\",\n       \"4                                    0.0          NaN   \\n\",\n       \"\\n\",\n       \"   Military, armaments, and defense  Improving the conditions of blacks  \\\\\\n\",\n       \"0                               1.0                                -1.0   \\n\",\n       \"1                               1.0                                -1.0   \\n\",\n       \"2                               NaN                                 0.0   \\n\",\n       \"3                              -1.0                                 0.0   \\n\",\n       \"4                               NaN                                 NaN   \\n\",\n       \"\\n\",\n       \"   Space exploration program  Improving & protecting environment  \\\\\\n\",\n       \"0                       -1.0                                -1.0   \\n\",\n       \"1                        NaN                                 NaN   \\n\",\n       \"2                       -1.0                                 0.0   \\n\",\n       \"3                        0.0                                 0.0   \\n\",\n       \"4                        NaN                                 NaN   \\n\",\n       \"\\n\",\n       \"   Improving & protecting nations health  Solving problems of big cities  \\\\\\n\",\n       \"0                                    0.0                             0.0   \\n\",\n       \"1                                   -1.0                             NaN   \\n\",\n       \"2                                   -1.0                             NaN   \\n\",\n       \"3                                    1.0                             0.0   \\n\",\n       \"4                                    NaN                             NaN   \\n\",\n       \"\\n\",\n       \"   Halting rising crime rate  Dealing with drug addiction  \\\\\\n\",\n       \"0                       -1.0                          1.0   \\n\",\n       \"1                        1.0                         -1.0   \\n\",\n       \"2                       -1.0                         -1.0   \\n\",\n       \"3                        0.0                         -1.0   \\n\",\n       \"4                        NaN                          NaN   \\n\",\n       \"\\n\",\n       \"   Improving nations education system  \\n\",\n       \"0                                 0.0  \\n\",\n       \"1                                -1.0  \\n\",\n       \"2                                -1.0  \\n\",\n       \"3                                -1.0  \\n\",\n       \"4                                 NaN  \"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Our usual GSS cleanup\\n\",\n    \"\\n\",\n    \"# drop the last two rows, which are just notes and do not contain data\\n\",\n    \"gss = gss.iloc[0:-2,:]\\n\",\n    \"\\n\",\n    \"# Drop some columns that don't contain useful information\\n\",\n    \"gss = gss.drop(['Respondent id number',\\n\",\n    \"                'Ballot used for interview',\\n\",\n    \"                'Gss year for this respondent                       '], axis=1)\\n\",\n    \"\\n\",\n    \"# recode answers on a -1, 0, 1 scale\\n\",\n    \"gss = gss.replace({'Too little':-1, 'About right':0, 'Too much':1})\\n\",\n    \"\\n\",\n    \"# Everything else gets NA\\n\",\n    \"gss = gss.replace({'Not applicable' : None, \\n\",\n    \"                   'No answer' : None, \\n\",\n    \"                   'Don\\\\'t know' : None})\\n\",\n    \"\\n\",\n    \"gss.head()\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(966, 18)\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# For a decision tree to work we can't have any missing values. Drop all rows with any NAs\\n\",\n    \"gss = gss.dropna(how='any')\\n\",\n    \"gss.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The simplest way to see if some variables are going to be predictable from others is to check out the overall correlations.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Welfare</th>\\n\",\n       \"      <th>Highways and bridges</th>\\n\",\n       \"      <th>Social security</th>\\n\",\n       \"      <th>Mass transportation</th>\\n\",\n       \"      <th>Parks and recreation</th>\\n\",\n       \"      <th>Assistance for childcare</th>\\n\",\n       \"      <th>Supporting scientific research</th>\\n\",\n       \"      <th>Developing alternative energy sources</th>\\n\",\n       \"      <th>Foreign aid</th>\\n\",\n       \"      <th>Military, armaments, and defense</th>\\n\",\n       \"      <th>Improving the conditions of blacks</th>\\n\",\n       \"      <th>Space exploration program</th>\\n\",\n       \"      <th>Improving &amp; protecting environment</th>\\n\",\n       \"      <th>Improving &amp; protecting nations health</th>\\n\",\n       \"      <th>Solving problems of big cities</th>\\n\",\n       \"      <th>Halting rising crime rate</th>\\n\",\n       \"      <th>Dealing with drug addiction</th>\\n\",\n       \"      <th>Improving nations education system</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Welfare</th>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>-0.006757</td>\\n\",\n       \"      <td>0.155278</td>\\n\",\n       \"      <td>0.143237</td>\\n\",\n       \"      <td>0.070739</td>\\n\",\n       \"      <td>0.237646</td>\\n\",\n       \"      <td>0.102994</td>\\n\",\n       \"      <td>0.193061</td>\\n\",\n       \"      <td>0.237805</td>\\n\",\n       \"      <td>-0.164178</td>\\n\",\n       \"      <td>0.309208</td>\\n\",\n       \"      <td>0.061454</td>\\n\",\n       \"      <td>0.244432</td>\\n\",\n       \"      <td>0.272540</td>\\n\",\n       \"      <td>0.156629</td>\\n\",\n       \"      <td>0.056746</td>\\n\",\n       \"      <td>0.141378</td>\\n\",\n       \"      <td>0.183813</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Highways and bridges</th>\\n\",\n       \"      <td>-0.006757</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.026872</td>\\n\",\n       \"      <td>0.157222</td>\\n\",\n       \"      <td>0.093823</td>\\n\",\n       \"      <td>0.024875</td>\\n\",\n       \"      <td>0.152755</td>\\n\",\n       \"      <td>0.123248</td>\\n\",\n       \"      <td>-0.102287</td>\\n\",\n       \"      <td>0.087240</td>\\n\",\n       \"      <td>-0.002551</td>\\n\",\n       \"      <td>0.111460</td>\\n\",\n       \"      <td>0.004783</td>\\n\",\n       \"      <td>0.010164</td>\\n\",\n       \"      <td>0.064434</td>\\n\",\n       \"      <td>0.037119</td>\\n\",\n       \"      <td>0.031147</td>\\n\",\n       \"      <td>0.071355</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Social security</th>\\n\",\n       \"      <td>0.155278</td>\\n\",\n       \"      <td>0.026872</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.035626</td>\\n\",\n       \"      <td>0.016017</td>\\n\",\n       \"      <td>0.095636</td>\\n\",\n       \"      <td>0.046541</td>\\n\",\n       \"      <td>0.060742</td>\\n\",\n       \"      <td>-0.013267</td>\\n\",\n       \"      <td>0.154493</td>\\n\",\n       \"      <td>0.077135</td>\\n\",\n       \"      <td>-0.063929</td>\\n\",\n       \"      <td>0.054638</td>\\n\",\n       \"      <td>0.195731</td>\\n\",\n       \"      <td>0.127304</td>\\n\",\n       \"      <td>0.152562</td>\\n\",\n       \"      <td>0.112798</td>\\n\",\n       \"      <td>0.165547</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Mass transportation</th>\\n\",\n       \"      <td>0.143237</td>\\n\",\n       \"      <td>0.157222</td>\\n\",\n       \"      <td>0.035626</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.141974</td>\\n\",\n       \"      <td>0.162983</td>\\n\",\n       \"      <td>0.157084</td>\\n\",\n       \"      <td>0.210046</td>\\n\",\n       \"      <td>0.099832</td>\\n\",\n       \"      <td>-0.036082</td>\\n\",\n       \"      <td>0.200415</td>\\n\",\n       \"      <td>0.103661</td>\\n\",\n       \"      <td>0.186438</td>\\n\",\n       \"      <td>0.189207</td>\\n\",\n       \"      <td>0.155335</td>\\n\",\n       \"      <td>0.038188</td>\\n\",\n       \"      <td>0.081053</td>\\n\",\n       \"      <td>0.154244</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Parks and recreation</th>\\n\",\n       \"      <td>0.070739</td>\\n\",\n       \"      <td>0.093823</td>\\n\",\n       \"      <td>0.016017</td>\\n\",\n       \"      <td>0.141974</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.189808</td>\\n\",\n       \"      <td>0.132162</td>\\n\",\n       \"      <td>0.140942</td>\\n\",\n       \"      <td>0.124536</td>\\n\",\n       \"      <td>0.038513</td>\\n\",\n       \"      <td>0.086614</td>\\n\",\n       \"      <td>0.037409</td>\\n\",\n       \"      <td>0.129115</td>\\n\",\n       \"      <td>0.055493</td>\\n\",\n       \"      <td>0.049727</td>\\n\",\n       \"      <td>0.061445</td>\\n\",\n       \"      <td>0.118283</td>\\n\",\n       \"      <td>0.136432</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Assistance for childcare</th>\\n\",\n       \"      <td>0.237646</td>\\n\",\n       \"      <td>0.024875</td>\\n\",\n       \"      <td>0.095636</td>\\n\",\n       \"      <td>0.162983</td>\\n\",\n       \"      <td>0.189808</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.139225</td>\\n\",\n       \"      <td>0.149228</td>\\n\",\n       \"      <td>0.168914</td>\\n\",\n       \"      <td>-0.037380</td>\\n\",\n       \"      <td>0.332467</td>\\n\",\n       \"      <td>0.048239</td>\\n\",\n       \"      <td>0.287310</td>\\n\",\n       \"      <td>0.238023</td>\\n\",\n       \"      <td>0.169320</td>\\n\",\n       \"      <td>0.101540</td>\\n\",\n       \"      <td>0.232961</td>\\n\",\n       \"      <td>0.325700</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Supporting scientific research</th>\\n\",\n       \"      <td>0.102994</td>\\n\",\n       \"      <td>0.152755</td>\\n\",\n       \"      <td>0.046541</td>\\n\",\n       \"      <td>0.157084</td>\\n\",\n       \"      <td>0.132162</td>\\n\",\n       \"      <td>0.139225</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.301037</td>\\n\",\n       \"      <td>0.063412</td>\\n\",\n       \"      <td>0.022838</td>\\n\",\n       \"      <td>0.121517</td>\\n\",\n       \"      <td>0.282843</td>\\n\",\n       \"      <td>0.200086</td>\\n\",\n       \"      <td>0.095339</td>\\n\",\n       \"      <td>0.124031</td>\\n\",\n       \"      <td>0.022404</td>\\n\",\n       \"      <td>0.081014</td>\\n\",\n       \"      <td>0.122090</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Developing alternative energy sources</th>\\n\",\n       \"      <td>0.193061</td>\\n\",\n       \"      <td>0.123248</td>\\n\",\n       \"      <td>0.060742</td>\\n\",\n       \"      <td>0.210046</td>\\n\",\n       \"      <td>0.140942</td>\\n\",\n       \"      <td>0.149228</td>\\n\",\n       \"      <td>0.301037</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.083901</td>\\n\",\n       \"      <td>-0.082246</td>\\n\",\n       \"      <td>0.198386</td>\\n\",\n       \"      <td>0.157213</td>\\n\",\n       \"      <td>0.349311</td>\\n\",\n       \"      <td>0.150867</td>\\n\",\n       \"      <td>0.217295</td>\\n\",\n       \"      <td>0.053943</td>\\n\",\n       \"      <td>0.103840</td>\\n\",\n       \"      <td>0.257278</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Foreign aid</th>\\n\",\n       \"      <td>0.237805</td>\\n\",\n       \"      <td>-0.102287</td>\\n\",\n       \"      <td>-0.013267</td>\\n\",\n       \"      <td>0.099832</td>\\n\",\n       \"      <td>0.124536</td>\\n\",\n       \"      <td>0.168914</td>\\n\",\n       \"      <td>0.063412</td>\\n\",\n       \"      <td>0.083901</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>-0.072585</td>\\n\",\n       \"      <td>0.171882</td>\\n\",\n       \"      <td>0.063627</td>\\n\",\n       \"      <td>0.155224</td>\\n\",\n       \"      <td>0.101357</td>\\n\",\n       \"      <td>0.083383</td>\\n\",\n       \"      <td>0.003054</td>\\n\",\n       \"      <td>0.133562</td>\\n\",\n       \"      <td>0.055645</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Military, armaments, and defense</th>\\n\",\n       \"      <td>-0.164178</td>\\n\",\n       \"      <td>0.087240</td>\\n\",\n       \"      <td>0.154493</td>\\n\",\n       \"      <td>-0.036082</td>\\n\",\n       \"      <td>0.038513</td>\\n\",\n       \"      <td>-0.037380</td>\\n\",\n       \"      <td>0.022838</td>\\n\",\n       \"      <td>-0.082246</td>\\n\",\n       \"      <td>-0.072585</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>-0.124476</td>\\n\",\n       \"      <td>-0.015785</td>\\n\",\n       \"      <td>-0.178785</td>\\n\",\n       \"      <td>-0.053051</td>\\n\",\n       \"      <td>0.012601</td>\\n\",\n       \"      <td>0.195340</td>\\n\",\n       \"      <td>0.047348</td>\\n\",\n       \"      <td>-0.015769</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Improving the conditions of blacks</th>\\n\",\n       \"      <td>0.309208</td>\\n\",\n       \"      <td>-0.002551</td>\\n\",\n       \"      <td>0.077135</td>\\n\",\n       \"      <td>0.200415</td>\\n\",\n       \"      <td>0.086614</td>\\n\",\n       \"      <td>0.332467</td>\\n\",\n       \"      <td>0.121517</td>\\n\",\n       \"      <td>0.198386</td>\\n\",\n       \"      <td>0.171882</td>\\n\",\n       \"      <td>-0.124476</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.056554</td>\\n\",\n       \"      <td>0.322067</td>\\n\",\n       \"      <td>0.282352</td>\\n\",\n       \"      <td>0.279251</td>\\n\",\n       \"      <td>0.167211</td>\\n\",\n       \"      <td>0.278622</td>\\n\",\n       \"      <td>0.257971</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Space exploration program</th>\\n\",\n       \"      <td>0.061454</td>\\n\",\n       \"      <td>0.111460</td>\\n\",\n       \"      <td>-0.063929</td>\\n\",\n       \"      <td>0.103661</td>\\n\",\n       \"      <td>0.037409</td>\\n\",\n       \"      <td>0.048239</td>\\n\",\n       \"      <td>0.282843</td>\\n\",\n       \"      <td>0.157213</td>\\n\",\n       \"      <td>0.063627</td>\\n\",\n       \"      <td>-0.015785</td>\\n\",\n       \"      <td>0.056554</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.130394</td>\\n\",\n       \"      <td>-0.036070</td>\\n\",\n       \"      <td>0.011685</td>\\n\",\n       \"      <td>-0.077942</td>\\n\",\n       \"      <td>-0.003054</td>\\n\",\n       \"      <td>0.000865</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Improving &amp; protecting environment</th>\\n\",\n       \"      <td>0.244432</td>\\n\",\n       \"      <td>0.004783</td>\\n\",\n       \"      <td>0.054638</td>\\n\",\n       \"      <td>0.186438</td>\\n\",\n       \"      <td>0.129115</td>\\n\",\n       \"      <td>0.287310</td>\\n\",\n       \"      <td>0.200086</td>\\n\",\n       \"      <td>0.349311</td>\\n\",\n       \"      <td>0.155224</td>\\n\",\n       \"      <td>-0.178785</td>\\n\",\n       \"      <td>0.322067</td>\\n\",\n       \"      <td>0.130394</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.333838</td>\\n\",\n       \"      <td>0.229727</td>\\n\",\n       \"      <td>0.089156</td>\\n\",\n       \"      <td>0.125008</td>\\n\",\n       \"      <td>0.321849</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Improving &amp; protecting nations health</th>\\n\",\n       \"      <td>0.272540</td>\\n\",\n       \"      <td>0.010164</td>\\n\",\n       \"      <td>0.195731</td>\\n\",\n       \"      <td>0.189207</td>\\n\",\n       \"      <td>0.055493</td>\\n\",\n       \"      <td>0.238023</td>\\n\",\n       \"      <td>0.095339</td>\\n\",\n       \"      <td>0.150867</td>\\n\",\n       \"      <td>0.101357</td>\\n\",\n       \"      <td>-0.053051</td>\\n\",\n       \"      <td>0.282352</td>\\n\",\n       \"      <td>-0.036070</td>\\n\",\n       \"      <td>0.333838</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.264932</td>\\n\",\n       \"      <td>0.206557</td>\\n\",\n       \"      <td>0.186145</td>\\n\",\n       \"      <td>0.254020</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Solving problems of big cities</th>\\n\",\n       \"      <td>0.156629</td>\\n\",\n       \"      <td>0.064434</td>\\n\",\n       \"      <td>0.127304</td>\\n\",\n       \"      <td>0.155335</td>\\n\",\n       \"      <td>0.049727</td>\\n\",\n       \"      <td>0.169320</td>\\n\",\n       \"      <td>0.124031</td>\\n\",\n       \"      <td>0.217295</td>\\n\",\n       \"      <td>0.083383</td>\\n\",\n       \"      <td>0.012601</td>\\n\",\n       \"      <td>0.279251</td>\\n\",\n       \"      <td>0.011685</td>\\n\",\n       \"      <td>0.229727</td>\\n\",\n       \"      <td>0.264932</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.266602</td>\\n\",\n       \"      <td>0.235904</td>\\n\",\n       \"      <td>0.250066</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Halting rising crime rate</th>\\n\",\n       \"      <td>0.056746</td>\\n\",\n       \"      <td>0.037119</td>\\n\",\n       \"      <td>0.152562</td>\\n\",\n       \"      <td>0.038188</td>\\n\",\n       \"      <td>0.061445</td>\\n\",\n       \"      <td>0.101540</td>\\n\",\n       \"      <td>0.022404</td>\\n\",\n       \"      <td>0.053943</td>\\n\",\n       \"      <td>0.003054</td>\\n\",\n       \"      <td>0.195340</td>\\n\",\n       \"      <td>0.167211</td>\\n\",\n       \"      <td>-0.077942</td>\\n\",\n       \"      <td>0.089156</td>\\n\",\n       \"      <td>0.206557</td>\\n\",\n       \"      <td>0.266602</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.275476</td>\\n\",\n       \"      <td>0.153454</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Dealing with drug addiction</th>\\n\",\n       \"      <td>0.141378</td>\\n\",\n       \"      <td>0.031147</td>\\n\",\n       \"      <td>0.112798</td>\\n\",\n       \"      <td>0.081053</td>\\n\",\n       \"      <td>0.118283</td>\\n\",\n       \"      <td>0.232961</td>\\n\",\n       \"      <td>0.081014</td>\\n\",\n       \"      <td>0.103840</td>\\n\",\n       \"      <td>0.133562</td>\\n\",\n       \"      <td>0.047348</td>\\n\",\n       \"      <td>0.278622</td>\\n\",\n       \"      <td>-0.003054</td>\\n\",\n       \"      <td>0.125008</td>\\n\",\n       \"      <td>0.186145</td>\\n\",\n       \"      <td>0.235904</td>\\n\",\n       \"      <td>0.275476</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>0.202474</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Improving nations education system</th>\\n\",\n       \"      <td>0.183813</td>\\n\",\n       \"      <td>0.071355</td>\\n\",\n       \"      <td>0.165547</td>\\n\",\n       \"      <td>0.154244</td>\\n\",\n       \"      <td>0.136432</td>\\n\",\n       \"      <td>0.325700</td>\\n\",\n       \"      <td>0.122090</td>\\n\",\n       \"      <td>0.257278</td>\\n\",\n       \"      <td>0.055645</td>\\n\",\n       \"      <td>-0.015769</td>\\n\",\n       \"      <td>0.257971</td>\\n\",\n       \"      <td>0.000865</td>\\n\",\n       \"      <td>0.321849</td>\\n\",\n       \"      <td>0.254020</td>\\n\",\n       \"      <td>0.250066</td>\\n\",\n       \"      <td>0.153454</td>\\n\",\n       \"      <td>0.202474</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                                         Welfare  Highways and bridges  \\\\\\n\",\n       \"Welfare                                 1.000000             -0.006757   \\n\",\n       \"Highways and bridges                   -0.006757              1.000000   \\n\",\n       \"Social security                         0.155278              0.026872   \\n\",\n       \"Mass transportation                     0.143237              0.157222   \\n\",\n       \"Parks and recreation                    0.070739              0.093823   \\n\",\n       \"Assistance for childcare                0.237646              0.024875   \\n\",\n       \"Supporting scientific research          0.102994              0.152755   \\n\",\n       \"Developing alternative energy sources   0.193061              0.123248   \\n\",\n       \"Foreign aid                             0.237805             -0.102287   \\n\",\n       \"Military, armaments, and defense       -0.164178              0.087240   \\n\",\n       \"Improving the conditions of blacks      0.309208             -0.002551   \\n\",\n       \"Space exploration program               0.061454              0.111460   \\n\",\n       \"Improving & protecting environment      0.244432              0.004783   \\n\",\n       \"Improving & protecting nations health   0.272540              0.010164   \\n\",\n       \"Solving problems of big cities          0.156629              0.064434   \\n\",\n       \"Halting rising crime rate               0.056746              0.037119   \\n\",\n       \"Dealing with drug addiction             0.141378              0.031147   \\n\",\n       \"Improving nations education system      0.183813              0.071355   \\n\",\n       \"\\n\",\n       \"                                        Social security  Mass transportation  \\\\\\n\",\n       \"Welfare                                        0.155278             0.143237   \\n\",\n       \"Highways and bridges                           0.026872             0.157222   \\n\",\n       \"Social security                                1.000000             0.035626   \\n\",\n       \"Mass transportation                            0.035626             1.000000   \\n\",\n       \"Parks and recreation                           0.016017             0.141974   \\n\",\n       \"Assistance for childcare                       0.095636             0.162983   \\n\",\n       \"Supporting scientific research                 0.046541             0.157084   \\n\",\n       \"Developing alternative energy sources          0.060742             0.210046   \\n\",\n       \"Foreign aid                                   -0.013267             0.099832   \\n\",\n       \"Military, armaments, and defense               0.154493            -0.036082   \\n\",\n       \"Improving the conditions of blacks             0.077135             0.200415   \\n\",\n       \"Space exploration program                     -0.063929             0.103661   \\n\",\n       \"Improving & protecting environment             0.054638             0.186438   \\n\",\n       \"Improving & protecting nations health          0.195731             0.189207   \\n\",\n       \"Solving problems of big cities                 0.127304             0.155335   \\n\",\n       \"Halting rising crime rate                      0.152562             0.038188   \\n\",\n       \"Dealing with drug addiction                    0.112798             0.081053   \\n\",\n       \"Improving nations education system             0.165547             0.154244   \\n\",\n       \"\\n\",\n       \"                                        Parks and recreation  \\\\\\n\",\n       \"Welfare                                             0.070739   \\n\",\n       \"Highways and bridges                                0.093823   \\n\",\n       \"Social security                                     0.016017   \\n\",\n       \"Mass transportation                                 0.141974   \\n\",\n       \"Parks and recreation                                1.000000   \\n\",\n       \"Assistance for childcare                            0.189808   \\n\",\n       \"Supporting scientific research                      0.132162   \\n\",\n       \"Developing alternative energy sources               0.140942   \\n\",\n       \"Foreign aid                                         0.124536   \\n\",\n       \"Military, armaments, and defense                    0.038513   \\n\",\n       \"Improving the conditions of blacks                  0.086614   \\n\",\n       \"Space exploration program                           0.037409   \\n\",\n       \"Improving & protecting environment                  0.129115   \\n\",\n       \"Improving & protecting nations health               0.055493   \\n\",\n       \"Solving problems of big cities                      0.049727   \\n\",\n       \"Halting rising crime rate                           0.061445   \\n\",\n       \"Dealing with drug addiction                         0.118283   \\n\",\n       \"Improving nations education system                  0.136432   \\n\",\n       \"\\n\",\n       \"                                        Assistance for childcare  \\\\\\n\",\n       \"Welfare                                                 0.237646   \\n\",\n       \"Highways and bridges                                    0.024875   \\n\",\n       \"Social security                                         0.095636   \\n\",\n       \"Mass transportation                                     0.162983   \\n\",\n       \"Parks and recreation                                    0.189808   \\n\",\n       \"Assistance for childcare                                1.000000   \\n\",\n       \"Supporting scientific research                          0.139225   \\n\",\n       \"Developing alternative energy sources                   0.149228   \\n\",\n       \"Foreign aid                                             0.168914   \\n\",\n       \"Military, armaments, and defense                       -0.037380   \\n\",\n       \"Improving the conditions of blacks                      0.332467   \\n\",\n       \"Space exploration program                               0.048239   \\n\",\n       \"Improving & protecting environment                      0.287310   \\n\",\n       \"Improving & protecting nations health                   0.238023   \\n\",\n       \"Solving problems of big cities                          0.169320   \\n\",\n       \"Halting rising crime rate                               0.101540   \\n\",\n       \"Dealing with drug addiction                             0.232961   \\n\",\n       \"Improving nations education system                      0.325700   \\n\",\n       \"\\n\",\n       \"                                        Supporting scientific research          \\\\\\n\",\n       \"Welfare                                                               0.102994   \\n\",\n       \"Highways and bridges                                                  0.152755   \\n\",\n       \"Social security                                                       0.046541   \\n\",\n       \"Mass transportation                                                   0.157084   \\n\",\n       \"Parks and recreation                                                  0.132162   \\n\",\n       \"Assistance for childcare                                              0.139225   \\n\",\n       \"Supporting scientific research                                        1.000000   \\n\",\n       \"Developing alternative energy sources                                 0.301037   \\n\",\n       \"Foreign aid                                                           0.063412   \\n\",\n       \"Military, armaments, and defense                                      0.022838   \\n\",\n       \"Improving the conditions of blacks                                    0.121517   \\n\",\n       \"Space exploration program                                             0.282843   \\n\",\n       \"Improving & protecting environment                                    0.200086   \\n\",\n       \"Improving & protecting nations health                                 0.095339   \\n\",\n       \"Solving problems of big cities                                        0.124031   \\n\",\n       \"Halting rising crime rate                                             0.022404   \\n\",\n       \"Dealing with drug addiction                                           0.081014   \\n\",\n       \"Improving nations education system                                    0.122090   \\n\",\n       \"\\n\",\n       \"                                        Developing alternative energy sources  \\\\\\n\",\n       \"Welfare                                                              0.193061   \\n\",\n       \"Highways and bridges                                                 0.123248   \\n\",\n       \"Social security                                                      0.060742   \\n\",\n       \"Mass transportation                                                  0.210046   \\n\",\n       \"Parks and recreation                                                 0.140942   \\n\",\n       \"Assistance for childcare                                             0.149228   \\n\",\n       \"Supporting scientific research                                       0.301037   \\n\",\n       \"Developing alternative energy sources                                1.000000   \\n\",\n       \"Foreign aid                                                          0.083901   \\n\",\n       \"Military, armaments, and defense                                    -0.082246   \\n\",\n       \"Improving the conditions of blacks                                   0.198386   \\n\",\n       \"Space exploration program                                            0.157213   \\n\",\n       \"Improving & protecting environment                                   0.349311   \\n\",\n       \"Improving & protecting nations health                                0.150867   \\n\",\n       \"Solving problems of big cities                                       0.217295   \\n\",\n       \"Halting rising crime rate                                            0.053943   \\n\",\n       \"Dealing with drug addiction                                          0.103840   \\n\",\n       \"Improving nations education system                                   0.257278   \\n\",\n       \"\\n\",\n       \"                                        Foreign aid  \\\\\\n\",\n       \"Welfare                                    0.237805   \\n\",\n       \"Highways and bridges                      -0.102287   \\n\",\n       \"Social security                           -0.013267   \\n\",\n       \"Mass transportation                        0.099832   \\n\",\n       \"Parks and recreation                       0.124536   \\n\",\n       \"Assistance for childcare                   0.168914   \\n\",\n       \"Supporting scientific research             0.063412   \\n\",\n       \"Developing alternative energy sources      0.083901   \\n\",\n       \"Foreign aid                                1.000000   \\n\",\n       \"Military, armaments, and defense          -0.072585   \\n\",\n       \"Improving the conditions of blacks         0.171882   \\n\",\n       \"Space exploration program                  0.063627   \\n\",\n       \"Improving & protecting environment         0.155224   \\n\",\n       \"Improving & protecting nations health      0.101357   \\n\",\n       \"Solving problems of big cities             0.083383   \\n\",\n       \"Halting rising crime rate                  0.003054   \\n\",\n       \"Dealing with drug addiction                0.133562   \\n\",\n       \"Improving nations education system         0.055645   \\n\",\n       \"\\n\",\n       \"                                        Military, armaments, and defense  \\\\\\n\",\n       \"Welfare                                                        -0.164178   \\n\",\n       \"Highways and bridges                                            0.087240   \\n\",\n       \"Social security                                                 0.154493   \\n\",\n       \"Mass transportation                                            -0.036082   \\n\",\n       \"Parks and recreation                                            0.038513   \\n\",\n       \"Assistance for childcare                                       -0.037380   \\n\",\n       \"Supporting scientific research                                  0.022838   \\n\",\n       \"Developing alternative energy sources                          -0.082246   \\n\",\n       \"Foreign aid                                                    -0.072585   \\n\",\n       \"Military, armaments, and defense                                1.000000   \\n\",\n       \"Improving the conditions of blacks                             -0.124476   \\n\",\n       \"Space exploration program                                      -0.015785   \\n\",\n       \"Improving & protecting environment                             -0.178785   \\n\",\n       \"Improving & protecting nations health                          -0.053051   \\n\",\n       \"Solving problems of big cities                                  0.012601   \\n\",\n       \"Halting rising crime rate                                       0.195340   \\n\",\n       \"Dealing with drug addiction                                     0.047348   \\n\",\n       \"Improving nations education system                             -0.015769   \\n\",\n       \"\\n\",\n       \"                                        Improving the conditions of blacks  \\\\\\n\",\n       \"Welfare                                                           0.309208   \\n\",\n       \"Highways and bridges                                             -0.002551   \\n\",\n       \"Social security                                                   0.077135   \\n\",\n       \"Mass transportation                                               0.200415   \\n\",\n       \"Parks and recreation                                              0.086614   \\n\",\n       \"Assistance for childcare                                          0.332467   \\n\",\n       \"Supporting scientific research                                    0.121517   \\n\",\n       \"Developing alternative energy sources                             0.198386   \\n\",\n       \"Foreign aid                                                       0.171882   \\n\",\n       \"Military, armaments, and defense                                 -0.124476   \\n\",\n       \"Improving the conditions of blacks                                1.000000   \\n\",\n       \"Space exploration program                                         0.056554   \\n\",\n       \"Improving & protecting environment                                0.322067   \\n\",\n       \"Improving & protecting nations health                             0.282352   \\n\",\n       \"Solving problems of big cities                                    0.279251   \\n\",\n       \"Halting rising crime rate                                         0.167211   \\n\",\n       \"Dealing with drug addiction                                       0.278622   \\n\",\n       \"Improving nations education system                                0.257971   \\n\",\n       \"\\n\",\n       \"                                        Space exploration program  \\\\\\n\",\n       \"Welfare                                                  0.061454   \\n\",\n       \"Highways and bridges                                     0.111460   \\n\",\n       \"Social security                                         -0.063929   \\n\",\n       \"Mass transportation                                      0.103661   \\n\",\n       \"Parks and recreation                                     0.037409   \\n\",\n       \"Assistance for childcare                                 0.048239   \\n\",\n       \"Supporting scientific research                           0.282843   \\n\",\n       \"Developing alternative energy sources                    0.157213   \\n\",\n       \"Foreign aid                                              0.063627   \\n\",\n       \"Military, armaments, and defense                        -0.015785   \\n\",\n       \"Improving the conditions of blacks                       0.056554   \\n\",\n       \"Space exploration program                                1.000000   \\n\",\n       \"Improving & protecting environment                       0.130394   \\n\",\n       \"Improving & protecting nations health                   -0.036070   \\n\",\n       \"Solving problems of big cities                           0.011685   \\n\",\n       \"Halting rising crime rate                               -0.077942   \\n\",\n       \"Dealing with drug addiction                             -0.003054   \\n\",\n       \"Improving nations education system                       0.000865   \\n\",\n       \"\\n\",\n       \"                                        Improving & protecting environment  \\\\\\n\",\n       \"Welfare                                                           0.244432   \\n\",\n       \"Highways and bridges                                              0.004783   \\n\",\n       \"Social security                                                   0.054638   \\n\",\n       \"Mass transportation                                               0.186438   \\n\",\n       \"Parks and recreation                                              0.129115   \\n\",\n       \"Assistance for childcare                                          0.287310   \\n\",\n       \"Supporting scientific research                                    0.200086   \\n\",\n       \"Developing alternative energy sources                             0.349311   \\n\",\n       \"Foreign aid                                                       0.155224   \\n\",\n       \"Military, armaments, and defense                                 -0.178785   \\n\",\n       \"Improving the conditions of blacks                                0.322067   \\n\",\n       \"Space exploration program                                         0.130394   \\n\",\n       \"Improving & protecting environment                                1.000000   \\n\",\n       \"Improving & protecting nations health                             0.333838   \\n\",\n       \"Solving problems of big cities                                    0.229727   \\n\",\n       \"Halting rising crime rate                                         0.089156   \\n\",\n       \"Dealing with drug addiction                                       0.125008   \\n\",\n       \"Improving nations education system                                0.321849   \\n\",\n       \"\\n\",\n       \"                                        Improving & protecting nations health  \\\\\\n\",\n       \"Welfare                                                              0.272540   \\n\",\n       \"Highways and bridges                                                 0.010164   \\n\",\n       \"Social security                                                      0.195731   \\n\",\n       \"Mass transportation                                                  0.189207   \\n\",\n       \"Parks and recreation                                                 0.055493   \\n\",\n       \"Assistance for childcare                                             0.238023   \\n\",\n       \"Supporting scientific research                                       0.095339   \\n\",\n       \"Developing alternative energy sources                                0.150867   \\n\",\n       \"Foreign aid                                                          0.101357   \\n\",\n       \"Military, armaments, and defense                                    -0.053051   \\n\",\n       \"Improving the conditions of blacks                                   0.282352   \\n\",\n       \"Space exploration program                                           -0.036070   \\n\",\n       \"Improving & protecting environment                                   0.333838   \\n\",\n       \"Improving & protecting nations health                                1.000000   \\n\",\n       \"Solving problems of big cities                                       0.264932   \\n\",\n       \"Halting rising crime rate                                            0.206557   \\n\",\n       \"Dealing with drug addiction                                          0.186145   \\n\",\n       \"Improving nations education system                                   0.254020   \\n\",\n       \"\\n\",\n       \"                                        Solving problems of big cities  \\\\\\n\",\n       \"Welfare                                                       0.156629   \\n\",\n       \"Highways and bridges                                          0.064434   \\n\",\n       \"Social security                                               0.127304   \\n\",\n       \"Mass transportation                                           0.155335   \\n\",\n       \"Parks and recreation                                          0.049727   \\n\",\n       \"Assistance for childcare                                      0.169320   \\n\",\n       \"Supporting scientific research                                0.124031   \\n\",\n       \"Developing alternative energy sources                         0.217295   \\n\",\n       \"Foreign aid                                                   0.083383   \\n\",\n       \"Military, armaments, and defense                              0.012601   \\n\",\n       \"Improving the conditions of blacks                            0.279251   \\n\",\n       \"Space exploration program                                     0.011685   \\n\",\n       \"Improving & protecting environment                            0.229727   \\n\",\n       \"Improving & protecting nations health                         0.264932   \\n\",\n       \"Solving problems of big cities                                1.000000   \\n\",\n       \"Halting rising crime rate                                     0.266602   \\n\",\n       \"Dealing with drug addiction                                   0.235904   \\n\",\n       \"Improving nations education system                            0.250066   \\n\",\n       \"\\n\",\n       \"                                        Halting rising crime rate  \\\\\\n\",\n       \"Welfare                                                  0.056746   \\n\",\n       \"Highways and bridges                                     0.037119   \\n\",\n       \"Social security                                          0.152562   \\n\",\n       \"Mass transportation                                      0.038188   \\n\",\n       \"Parks and recreation                                     0.061445   \\n\",\n       \"Assistance for childcare                                 0.101540   \\n\",\n       \"Supporting scientific research                           0.022404   \\n\",\n       \"Developing alternative energy sources                    0.053943   \\n\",\n       \"Foreign aid                                              0.003054   \\n\",\n       \"Military, armaments, and defense                         0.195340   \\n\",\n       \"Improving the conditions of blacks                       0.167211   \\n\",\n       \"Space exploration program                               -0.077942   \\n\",\n       \"Improving & protecting environment                       0.089156   \\n\",\n       \"Improving & protecting nations health                    0.206557   \\n\",\n       \"Solving problems of big cities                           0.266602   \\n\",\n       \"Halting rising crime rate                                1.000000   \\n\",\n       \"Dealing with drug addiction                              0.275476   \\n\",\n       \"Improving nations education system                       0.153454   \\n\",\n       \"\\n\",\n       \"                                        Dealing with drug addiction  \\\\\\n\",\n       \"Welfare                                                    0.141378   \\n\",\n       \"Highways and bridges                                       0.031147   \\n\",\n       \"Social security                                            0.112798   \\n\",\n       \"Mass transportation                                        0.081053   \\n\",\n       \"Parks and recreation                                       0.118283   \\n\",\n       \"Assistance for childcare                                   0.232961   \\n\",\n       \"Supporting scientific research                             0.081014   \\n\",\n       \"Developing alternative energy sources                      0.103840   \\n\",\n       \"Foreign aid                                                0.133562   \\n\",\n       \"Military, armaments, and defense                           0.047348   \\n\",\n       \"Improving the conditions of blacks                         0.278622   \\n\",\n       \"Space exploration program                                 -0.003054   \\n\",\n       \"Improving & protecting environment                         0.125008   \\n\",\n       \"Improving & protecting nations health                      0.186145   \\n\",\n       \"Solving problems of big cities                             0.235904   \\n\",\n       \"Halting rising crime rate                                  0.275476   \\n\",\n       \"Dealing with drug addiction                                1.000000   \\n\",\n       \"Improving nations education system                         0.202474   \\n\",\n       \"\\n\",\n       \"                                        Improving nations education system  \\n\",\n       \"Welfare                                                           0.183813  \\n\",\n       \"Highways and bridges                                              0.071355  \\n\",\n       \"Social security                                                   0.165547  \\n\",\n       \"Mass transportation                                               0.154244  \\n\",\n       \"Parks and recreation                                              0.136432  \\n\",\n       \"Assistance for childcare                                          0.325700  \\n\",\n       \"Supporting scientific research                                    0.122090  \\n\",\n       \"Developing alternative energy sources                             0.257278  \\n\",\n       \"Foreign aid                                                       0.055645  \\n\",\n       \"Military, armaments, and defense                                 -0.015769  \\n\",\n       \"Improving the conditions of blacks                                0.257971  \\n\",\n       \"Space exploration program                                         0.000865  \\n\",\n       \"Improving & protecting environment                                0.321849  \\n\",\n       \"Improving & protecting nations health                             0.254020  \\n\",\n       \"Solving problems of big cities                                    0.250066  \\n\",\n       \"Halting rising crime rate                                         0.153454  \\n\",\n       \"Dealing with drug addiction                                       0.202474  \\n\",\n       \"Improving nations education system                                1.000000  \"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"gss.corr()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Building a decision-tree\\n\",\n    \"\\n\",\n    \"We're going to use a machine learning technique called a decision tree to try to predict the answer on one question from the answers on all the others. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"-1.0    573\\n\",\n       \" 0.0    339\\n\",\n       \" 1.0     54\\n\",\n       \"Name: Social security, dtype: int64\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# By changing this line and re-running the workbook, we can see how predictiable different variables are or aren't.\\n\",\n    \"predict_col = 'Social security'\\n\",\n    \"gss[predict_col].value_counts()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Actually applying the decision tree is very much like doing a regresion.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"DecisionTreeClassifier(class_weight=None, criterion='gini', max_depth=None,\\n\",\n       \"            max_features=None, max_leaf_nodes=None,\\n\",\n       \"            min_impurity_decrease=0.0, min_impurity_split=None,\\n\",\n       \"            min_samples_leaf=1, min_samples_split=2,\\n\",\n       \"            min_weight_fraction_leaf=0.0, presort=False, random_state=None,\\n\",\n       \"            splitter='best')\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Fit a decision tree to the test data\\n\",\n    \"x = gss.drop(predict_col, axis=1).values\\n\",\n    \"y = gss[[predict_col]].values\\n\",\n    \"\\n\",\n    \"dt = tree.DecisionTreeClassifier()\\n\",\n    \"dt.fit(x,y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Ok, now we need to evaluate the result, by seeing how well it can predict our question from all the others. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 1., -1., -1.,  0., -1.,  0.,  0., -1., -1., -1.])\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Get the predictions\\n\",\n    \"y_pred = dt.predict(x)\\n\",\n    \"y_pred[:10]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.99689440993788825\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# What percentage did it predict right?\\n\",\n    \"metrics.accuracy_score(y, y_pred)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Predicted -1</th>\\n\",\n       \"      <th>Predicted 0</th>\\n\",\n       \"      <th>Predicted 1</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True -1</th>\\n\",\n       \"      <td>572</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True 0</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>338</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True 1</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>53</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"         Predicted -1  Predicted 0  Predicted 1\\n\",\n       \"True -1           572            1            0\\n\",\n       \"True 0              1          338            0\\n\",\n       \"True 1              0            1           53\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# What mistakes did it make?\\n\",\n    \"pd.DataFrame(metrics.confusion_matrix(y, y_pred), \\n\",\n    \"             columns=['Predicted -1','Predicted 0','Predicted 1'],\\n\",\n    \"             index=['True -1', 'True 0', 'True 1'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"So what is this tree thing? We can actually draw it \\n\",\n    \"\\n\",\n    \"To get this working, you will need to install `GraphViz`. On Windows, download it [here](https://graphviz.gitlab.io/download/). On Mac, try `brew install graphviz`\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/svg+xml\": [\n       \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\"?>\\n\",\n       \"<!DOCTYPE svg PUBLIC \\\"-//W3C//DTD SVG 1.1//EN\\\"\\n\",\n       \" \\\"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\\\">\\n\",\n       \"<!-- Generated by graphviz version 2.40.1 (20161225.0304)\\n\",\n       \" -->\\n\",\n       \"<!-- Title: Tree Pages: 1 -->\\n\",\n       \"<svg width=\\\"14578pt\\\" height=\\\"1658pt\\\"\\n\",\n       \" viewBox=\\\"0.00 0.00 14578.01 1658.00\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\">\\n\",\n       \"<g id=\\\"graph0\\\" class=\\\"graph\\\" transform=\\\"scale(1 1) rotate(0) translate(4 1654)\\\">\\n\",\n       \"<title>Tree</title>\\n\",\n       \"<polygon fill=\\\"#ffffff\\\" stroke=\\\"transparent\\\" points=\\\"-4,4 -4,-1654 14574.0132,-1654 14574.0132,4 -4,4\\\"/>\\n\",\n       \"<!-- 0 -->\\n\",\n       \"<g id=\\\"node1\\\" class=\\\"node\\\">\\n\",\n       \"<title>0</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4106.1544,-1650C4106.1544,-1650 3859.7519,-1650 3859.7519,-1650 3853.7519,-1650 3847.7519,-1644 3847.7519,-1638 3847.7519,-1638 3847.7519,-1598 3847.7519,-1598 3847.7519,-1592 3853.7519,-1586 3859.7519,-1586 3859.7519,-1586 4106.1544,-1586 4106.1544,-1586 4112.1544,-1586 4118.1544,-1592 4118.1544,-1598 4118.1544,-1598 4118.1544,-1638 4118.1544,-1638 4118.1544,-1644 4112.1544,-1650 4106.1544,-1650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3982.9531\\\" y=\\\"-1634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Military, armaments, and defense &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3982.9531\\\" y=\\\"-1620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.516</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3982.9531\\\" y=\\\"-1606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 676</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3982.9531\\\" y=\\\"-1592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [404, 238, 34]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 1 -->\\n\",\n       \"<g id=\\\"node2\\\" class=\\\"node\\\">\\n\",\n       \"<title>1</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2331.718,-1550C2331.718,-1550 2212.1882,-1550 2212.1882,-1550 2206.1882,-1550 2200.1882,-1544 2200.1882,-1538 2200.1882,-1538 2200.1882,-1498 2200.1882,-1498 2200.1882,-1492 2206.1882,-1486 2212.1882,-1486 2212.1882,-1486 2331.718,-1486 2331.718,-1486 2337.718,-1486 2343.718,-1492 2343.718,-1498 2343.718,-1498 2343.718,-1538 2343.718,-1538 2343.718,-1544 2337.718,-1550 2331.718,-1550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2271.9531\\\" y=\\\"-1534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2271.9531\\\" y=\\\"-1520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.409</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2271.9531\\\" y=\\\"-1506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 248</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2271.9531\\\" y=\\\"-1492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [182, 56, 10]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 0&#45;&gt;1 -->\\n\",\n       \"<g id=\\\"edge1\\\" class=\\\"edge\\\">\\n\",\n       \"<title>0&#45;&gt;1</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3847.6218,-1610.0905C3508.0496,-1590.2441 2627.585,-1538.785 2354.1783,-1522.8057\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2354.1222,-1519.2965 2343.935,-1522.207 2353.7137,-1526.2846 2354.1222,-1519.2965\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2360.5512\\\" y=\\\"-1536.686\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">True</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 148 -->\\n\",\n       \"<g id=\\\"node149\\\" class=\\\"node\\\">\\n\",\n       \"<title>148</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8295.845,-1550C8295.845,-1550 8024.0613,-1550 8024.0613,-1550 8018.0613,-1550 8012.0613,-1544 8012.0613,-1538 8012.0613,-1538 8012.0613,-1498 8012.0613,-1498 8012.0613,-1492 8018.0613,-1486 8024.0613,-1486 8024.0613,-1486 8295.845,-1486 8295.845,-1486 8301.845,-1486 8307.845,-1492 8307.845,-1498 8307.845,-1498 8307.845,-1538 8307.845,-1538 8307.845,-1544 8301.845,-1550 8295.845,-1550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8159.9531\\\" y=\\\"-1534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting nations health &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8159.9531\\\" y=\\\"-1520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.547</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8159.9531\\\" y=\\\"-1506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 428</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8159.9531\\\" y=\\\"-1492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [222, 182, 24]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 0&#45;&gt;148 -->\\n\",\n       \"<g id=\\\"edge148\\\" class=\\\"edge\\\">\\n\",\n       \"<title>0&#45;&gt;148</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4118.0799,-1614.765C4740.9373,-1599.8534 7333.1587,-1537.794 8001.9576,-1521.7825\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8002.2302,-1525.2771 8012.1435,-1521.5387 8002.0626,-1518.2791 8002.2302,-1525.2771\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7994.894\\\" y=\\\"-1535.4344\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">False</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 2 -->\\n\",\n       \"<g id=\\\"node3\\\" class=\\\"node\\\">\\n\",\n       \"<title>2</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1739.304,-1450C1739.304,-1450 1530.6023,-1450 1530.6023,-1450 1524.6023,-1450 1518.6023,-1444 1518.6023,-1438 1518.6023,-1438 1518.6023,-1398 1518.6023,-1398 1518.6023,-1392 1524.6023,-1386 1530.6023,-1386 1530.6023,-1386 1739.304,-1386 1739.304,-1386 1745.304,-1386 1751.304,-1392 1751.304,-1398 1751.304,-1398 1751.304,-1438 1751.304,-1438 1751.304,-1444 1745.304,-1450 1739.304,-1450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1634.9531\\\" y=\\\"-1434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1634.9531\\\" y=\\\"-1420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.115</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1634.9531\\\" y=\\\"-1406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 49</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1634.9531\\\" y=\\\"-1392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [46, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 1&#45;&gt;2 -->\\n\",\n       \"<g id=\\\"edge2\\\" class=\\\"edge\\\">\\n\",\n       \"<title>1&#45;&gt;2</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2200.1194,-1506.7231C2093.728,-1490.0212 1892.7211,-1458.4659 1761.3407,-1437.8411\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1761.639,-1434.3451 1751.2172,-1436.2518 1760.5533,-1441.2604 1761.639,-1434.3451\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 13 -->\\n\",\n       \"<g id=\\\"node14\\\" class=\\\"node\\\">\\n\",\n       \"<title>13</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2402.7071,-1450C2402.7071,-1450 2141.1991,-1450 2141.1991,-1450 2135.1991,-1450 2129.1991,-1444 2129.1991,-1438 2129.1991,-1438 2129.1991,-1398 2129.1991,-1398 2129.1991,-1392 2135.1991,-1386 2141.1991,-1386 2141.1991,-1386 2402.7071,-1386 2402.7071,-1386 2408.7071,-1386 2414.7071,-1392 2414.7071,-1398 2414.7071,-1398 2414.7071,-1438 2414.7071,-1438 2414.7071,-1444 2408.7071,-1450 2402.7071,-1450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2271.9531\\\" y=\\\"-1434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2271.9531\\\" y=\\\"-1420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.459</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2271.9531\\\" y=\\\"-1406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 199</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2271.9531\\\" y=\\\"-1392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [136, 53, 10]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 1&#45;&gt;13 -->\\n\",\n       \"<g id=\\\"edge13\\\" class=\\\"edge\\\">\\n\",\n       \"<title>1&#45;&gt;13</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2271.9531,-1485.8089C2271.9531,-1477.6906 2271.9531,-1468.8517 2271.9531,-1460.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2275.4532,-1460.1307 2271.9531,-1450.1308 2268.4532,-1460.1308 2275.4532,-1460.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 3 -->\\n\",\n       \"<g id=\\\"node4\\\" class=\\\"node\\\">\\n\",\n       \"<title>3</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M947.6486,-1350C947.6486,-1350 744.2576,-1350 744.2576,-1350 738.2576,-1350 732.2576,-1344 732.2576,-1338 732.2576,-1338 732.2576,-1298 732.2576,-1298 732.2576,-1292 738.2576,-1286 744.2576,-1286 744.2576,-1286 947.6486,-1286 947.6486,-1286 953.6486,-1286 959.6486,-1292 959.6486,-1298 959.6486,-1298 959.6486,-1338 959.6486,-1338 959.6486,-1344 953.6486,-1350 947.6486,-1350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"845.9531\\\" y=\\\"-1334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"845.9531\\\" y=\\\"-1320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.278</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"845.9531\\\" y=\\\"-1306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 18</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"845.9531\\\" y=\\\"-1292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [15, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 2&#45;&gt;3 -->\\n\",\n       \"<g id=\\\"edge3\\\" class=\\\"edge\\\">\\n\",\n       \"<title>2&#45;&gt;3</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1518.5335,-1403.2447C1371.7678,-1384.6432 1120.5254,-1352.8 970.1681,-1333.7433\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"970.3268,-1330.2355 959.9661,-1332.4503 969.4466,-1337.18 970.3268,-1330.2355\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 12 -->\\n\",\n       \"<g id=\\\"node13\\\" class=\\\"node\\\">\\n\",\n       \"<title>12</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1682.8594,-1343C1682.8594,-1343 1587.0468,-1343 1587.0468,-1343 1581.0468,-1343 1575.0468,-1337 1575.0468,-1331 1575.0468,-1331 1575.0468,-1305 1575.0468,-1305 1575.0468,-1299 1581.0468,-1293 1587.0468,-1293 1587.0468,-1293 1682.8594,-1293 1682.8594,-1293 1688.8594,-1293 1694.8594,-1299 1694.8594,-1305 1694.8594,-1305 1694.8594,-1331 1694.8594,-1331 1694.8594,-1337 1688.8594,-1343 1682.8594,-1343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1634.9531\\\" y=\\\"-1327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1634.9531\\\" y=\\\"-1313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 31</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1634.9531\\\" y=\\\"-1299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [31, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 2&#45;&gt;12 -->\\n\",\n       \"<g id=\\\"edge12\\\" class=\\\"edge\\\">\\n\",\n       \"<title>2&#45;&gt;12</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1634.9531,-1385.8089C1634.9531,-1375.446 1634.9531,-1363.909 1634.9531,-1353.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1638.4532,-1353.1555 1634.9531,-1343.1555 1631.4532,-1353.1556 1638.4532,-1353.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 4 -->\\n\",\n       \"<g id=\\\"node5\\\" class=\\\"node\\\">\\n\",\n       \"<title>4</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M710.7903,-1250C710.7903,-1250 537.1159,-1250 537.1159,-1250 531.1159,-1250 525.1159,-1244 525.1159,-1238 525.1159,-1238 525.1159,-1198 525.1159,-1198 525.1159,-1192 531.1159,-1186 537.1159,-1186 537.1159,-1186 710.7903,-1186 710.7903,-1186 716.7903,-1186 722.7903,-1192 722.7903,-1198 722.7903,-1198 722.7903,-1238 722.7903,-1238 722.7903,-1244 716.7903,-1250 710.7903,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"623.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"623.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.208</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"623.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 17</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"623.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [15, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 3&#45;&gt;4 -->\\n\",\n       \"<g id=\\\"edge4\\\" class=\\\"edge\\\">\\n\",\n       \"<title>3&#45;&gt;4</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M774.7949,-1285.9467C752.3901,-1275.8545 727.4883,-1264.6375 704.48,-1254.2734\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"705.6444,-1250.9592 695.0892,-1250.0433 702.7694,-1257.3416 705.6444,-1250.9592\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 11 -->\\n\",\n       \"<g id=\\\"node12\\\" class=\\\"node\\\">\\n\",\n       \"<title>11</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M890.0733,-1243C890.0733,-1243 801.8329,-1243 801.8329,-1243 795.8329,-1243 789.8329,-1237 789.8329,-1231 789.8329,-1231 789.8329,-1205 789.8329,-1205 789.8329,-1199 795.8329,-1193 801.8329,-1193 801.8329,-1193 890.0733,-1193 890.0733,-1193 896.0733,-1193 902.0733,-1199 902.0733,-1205 902.0733,-1205 902.0733,-1231 902.0733,-1231 902.0733,-1237 896.0733,-1243 890.0733,-1243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"845.9531\\\" y=\\\"-1227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"845.9531\\\" y=\\\"-1213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"845.9531\\\" y=\\\"-1199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 3&#45;&gt;11 -->\\n\",\n       \"<g id=\\\"edge11\\\" class=\\\"edge\\\">\\n\",\n       \"<title>3&#45;&gt;11</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M845.9531,-1285.8089C845.9531,-1275.446 845.9531,-1263.909 845.9531,-1253.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"849.4532,-1253.1555 845.9531,-1243.1555 842.4532,-1253.1556 849.4532,-1253.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 5 -->\\n\",\n       \"<g id=\\\"node6\\\" class=\\\"node\\\">\\n\",\n       \"<title>5</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M296.7561,-1150C296.7561,-1150 109.1502,-1150 109.1502,-1150 103.1502,-1150 97.1502,-1144 97.1502,-1138 97.1502,-1138 97.1502,-1098 97.1502,-1098 97.1502,-1092 103.1502,-1086 109.1502,-1086 109.1502,-1086 296.7561,-1086 296.7561,-1086 302.7561,-1086 308.7561,-1092 308.7561,-1098 308.7561,-1098 308.7561,-1138 308.7561,-1138 308.7561,-1144 302.7561,-1150 296.7561,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"202.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"202.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.117</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"202.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 16</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"202.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [15, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 4&#45;&gt;5 -->\\n\",\n       \"<g id=\\\"edge5\\\" class=\\\"edge\\\">\\n\",\n       \"<title>4&#45;&gt;5</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M525.2473,-1194.5544C463.4094,-1179.8661 383.4386,-1160.8707 318.6286,-1145.4764\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"319.3102,-1142.0409 308.772,-1143.1351 317.6924,-1148.8515 319.3102,-1142.0409\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 10 -->\\n\",\n       \"<g id=\\\"node11\\\" class=\\\"node\\\">\\n\",\n       \"<title>10</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M668.0733,-1143C668.0733,-1143 579.8329,-1143 579.8329,-1143 573.8329,-1143 567.8329,-1137 567.8329,-1131 567.8329,-1131 567.8329,-1105 567.8329,-1105 567.8329,-1099 573.8329,-1093 579.8329,-1093 579.8329,-1093 668.0733,-1093 668.0733,-1093 674.0733,-1093 680.0733,-1099 680.0733,-1105 680.0733,-1105 680.0733,-1131 680.0733,-1131 680.0733,-1137 674.0733,-1143 668.0733,-1143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"623.9531\\\" y=\\\"-1127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"623.9531\\\" y=\\\"-1113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"623.9531\\\" y=\\\"-1099.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 4&#45;&gt;10 -->\\n\",\n       \"<g id=\\\"edge10\\\" class=\\\"edge\\\">\\n\",\n       \"<title>4&#45;&gt;10</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M623.9531,-1185.8089C623.9531,-1175.446 623.9531,-1163.909 623.9531,-1153.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"627.4532,-1153.1555 623.9531,-1143.1555 620.4532,-1153.1556 627.4532,-1153.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 6 -->\\n\",\n       \"<g id=\\\"node7\\\" class=\\\"node\\\">\\n\",\n       \"<title>6</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M107.8594,-1043C107.8594,-1043 12.0468,-1043 12.0468,-1043 6.0468,-1043 .0468,-1037 .0468,-1031 .0468,-1031 .0468,-1005 .0468,-1005 .0468,-999 6.0468,-993 12.0468,-993 12.0468,-993 107.8594,-993 107.8594,-993 113.8594,-993 119.8594,-999 119.8594,-1005 119.8594,-1005 119.8594,-1031 119.8594,-1031 119.8594,-1037 113.8594,-1043 107.8594,-1043\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"59.9531\\\" y=\\\"-1027.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"59.9531\\\" y=\\\"-1013.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 13</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"59.9531\\\" y=\\\"-999.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [13, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 5&#45;&gt;6 -->\\n\",\n       \"<g id=\\\"edge6\\\" class=\\\"edge\\\">\\n\",\n       \"<title>5&#45;&gt;6</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M156.9199,-1085.8089C140.0942,-1074.0427 121.1041,-1060.7629 104.4178,-1049.0942\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"106.1264,-1046.0181 95.9256,-1043.1555 102.1148,-1051.7546 106.1264,-1046.0181\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 7 -->\\n\",\n       \"<g id=\\\"node8\\\" class=\\\"node\\\">\\n\",\n       \"<title>7</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M255.5874,-1050C255.5874,-1050 150.3188,-1050 150.3188,-1050 144.3188,-1050 138.3188,-1044 138.3188,-1038 138.3188,-1038 138.3188,-998 138.3188,-998 138.3188,-992 144.3188,-986 150.3188,-986 150.3188,-986 255.5874,-986 255.5874,-986 261.5874,-986 267.5874,-992 267.5874,-998 267.5874,-998 267.5874,-1038 267.5874,-1038 267.5874,-1044 261.5874,-1050 255.5874,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"202.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"202.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"202.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"202.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 5&#45;&gt;7 -->\\n\",\n       \"<g id=\\\"edge7\\\" class=\\\"edge\\\">\\n\",\n       \"<title>5&#45;&gt;7</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M202.9531,-1085.8089C202.9531,-1077.6906 202.9531,-1068.8517 202.9531,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"206.4532,-1060.1307 202.9531,-1050.1308 199.4532,-1060.1308 206.4532,-1060.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 8 -->\\n\",\n       \"<g id=\\\"node9\\\" class=\\\"node\\\">\\n\",\n       \"<title>8</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M117.0733,-943C117.0733,-943 28.8329,-943 28.8329,-943 22.8329,-943 16.8329,-937 16.8329,-931 16.8329,-931 16.8329,-905 16.8329,-905 16.8329,-899 22.8329,-893 28.8329,-893 28.8329,-893 117.0733,-893 117.0733,-893 123.0733,-893 129.0733,-899 129.0733,-905 129.0733,-905 129.0733,-931 129.0733,-931 129.0733,-937 123.0733,-943 117.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"72.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"72.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"72.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 7&#45;&gt;8 -->\\n\",\n       \"<g id=\\\"edge8\\\" class=\\\"edge\\\">\\n\",\n       \"<title>7&#45;&gt;8</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M161.1047,-985.8089C145.9489,-974.1506 128.8615,-961.0064 113.7936,-949.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"115.7156,-946.4785 105.6553,-943.1555 111.4476,-952.0269 115.7156,-946.4785\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 9 -->\\n\",\n       \"<g id=\\\"node10\\\" class=\\\"node\\\">\\n\",\n       \"<title>9</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M247.0733,-943C247.0733,-943 158.8329,-943 158.8329,-943 152.8329,-943 146.8329,-937 146.8329,-931 146.8329,-931 146.8329,-905 146.8329,-905 146.8329,-899 152.8329,-893 158.8329,-893 158.8329,-893 247.0733,-893 247.0733,-893 253.0733,-893 259.0733,-899 259.0733,-905 259.0733,-905 259.0733,-931 259.0733,-931 259.0733,-937 253.0733,-943 247.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"202.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"202.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"202.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 7&#45;&gt;9 -->\\n\",\n       \"<g id=\\\"edge9\\\" class=\\\"edge\\\">\\n\",\n       \"<title>7&#45;&gt;9</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M202.9531,-985.8089C202.9531,-975.446 202.9531,-963.909 202.9531,-953.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"206.4532,-953.1555 202.9531,-943.1555 199.4532,-953.1556 206.4532,-953.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 14 -->\\n\",\n       \"<g id=\\\"node15\\\" class=\\\"node\\\">\\n\",\n       \"<title>14</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2216.518,-1350C2216.518,-1350 1995.3883,-1350 1995.3883,-1350 1989.3883,-1350 1983.3883,-1344 1983.3883,-1338 1983.3883,-1338 1983.3883,-1298 1983.3883,-1298 1983.3883,-1292 1989.3883,-1286 1995.3883,-1286 1995.3883,-1286 2216.518,-1286 2216.518,-1286 2222.518,-1286 2228.518,-1292 2228.518,-1298 2228.518,-1298 2228.518,-1338 2228.518,-1338 2228.518,-1344 2222.518,-1350 2216.518,-1350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2105.9531\\\" y=\\\"-1334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2105.9531\\\" y=\\\"-1320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.365</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2105.9531\\\" y=\\\"-1306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 92</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2105.9531\\\" y=\\\"-1292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [71, 18, 3]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 13&#45;&gt;14 -->\\n\",\n       \"<g id=\\\"edge14\\\" class=\\\"edge\\\">\\n\",\n       \"<title>13&#45;&gt;14</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2218.5159,-1385.8089C2202.3738,-1376.0848 2184.5157,-1365.3268 2167.8692,-1355.2989\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2169.6621,-1352.2929 2159.2902,-1350.1308 2166.0499,-1358.289 2169.6621,-1352.2929\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 69 -->\\n\",\n       \"<g id=\\\"node70\\\" class=\\\"node\\\">\\n\",\n       \"<title>69</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2937.2494,-1350C2937.2494,-1350 2826.6569,-1350 2826.6569,-1350 2820.6569,-1350 2814.6569,-1344 2814.6569,-1338 2814.6569,-1338 2814.6569,-1298 2814.6569,-1298 2814.6569,-1292 2820.6569,-1286 2826.6569,-1286 2826.6569,-1286 2937.2494,-1286 2937.2494,-1286 2943.2494,-1286 2949.2494,-1292 2949.2494,-1298 2949.2494,-1298 2949.2494,-1338 2949.2494,-1338 2949.2494,-1344 2943.2494,-1350 2937.2494,-1350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2881.9531\\\" y=\\\"-1334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2881.9531\\\" y=\\\"-1320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.52</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2881.9531\\\" y=\\\"-1306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 107</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2881.9531\\\" y=\\\"-1292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [65, 35, 7]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 13&#45;&gt;69 -->\\n\",\n       \"<g id=\\\"edge69\\\" class=\\\"edge\\\">\\n\",\n       \"<title>13&#45;&gt;69</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2414.5859,-1394.6176C2536.3287,-1374.6597 2706.7868,-1346.7158 2804.6418,-1330.674\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2805.4507,-1334.0882 2814.7527,-1329.0165 2804.3182,-1327.1804 2805.4507,-1334.0882\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 15 -->\\n\",\n       \"<g id=\\\"node16\\\" class=\\\"node\\\">\\n\",\n       \"<title>15</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1476.8872,-1250C1476.8872,-1250 1307.019,-1250 1307.019,-1250 1301.019,-1250 1295.019,-1244 1295.019,-1238 1295.019,-1238 1295.019,-1198 1295.019,-1198 1295.019,-1192 1301.019,-1186 1307.019,-1186 1307.019,-1186 1476.8872,-1186 1476.8872,-1186 1482.8872,-1186 1488.8872,-1192 1488.8872,-1198 1488.8872,-1198 1488.8872,-1238 1488.8872,-1238 1488.8872,-1244 1482.8872,-1250 1476.8872,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1391.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Parks and recreation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1391.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.226</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1391.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 54</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1391.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [47, 7, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 14&#45;&gt;15 -->\\n\",\n       \"<g id=\\\"edge15\\\" class=\\\"edge\\\">\\n\",\n       \"<title>14&#45;&gt;15</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1983.2121,-1300.8094C1846.7187,-1281.6927 1628.4277,-1251.1197 1498.7406,-1232.9562\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1499.177,-1229.4833 1488.7882,-1231.5623 1498.206,-1236.4156 1499.177,-1229.4833\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 42 -->\\n\",\n       \"<g id=\\\"node43\\\" class=\\\"node\\\">\\n\",\n       \"<title>42</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2210.3108,-1250C2210.3108,-1250 2001.5954,-1250 2001.5954,-1250 1995.5954,-1250 1989.5954,-1244 1989.5954,-1238 1989.5954,-1238 1989.5954,-1198 1989.5954,-1198 1989.5954,-1192 1995.5954,-1186 2001.5954,-1186 2001.5954,-1186 2210.3108,-1186 2210.3108,-1186 2216.3108,-1186 2222.3108,-1192 2222.3108,-1198 2222.3108,-1198 2222.3108,-1238 2222.3108,-1238 2222.3108,-1244 2216.3108,-1250 2210.3108,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2105.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2105.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.511</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2105.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 38</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2105.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [24, 11, 3]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 14&#45;&gt;42 -->\\n\",\n       \"<g id=\\\"edge42\\\" class=\\\"edge\\\">\\n\",\n       \"<title>14&#45;&gt;42</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2105.9531,-1285.8089C2105.9531,-1277.6906 2105.9531,-1268.8517 2105.9531,-1260.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2109.4532,-1260.1307 2105.9531,-1250.1308 2102.4532,-1260.1308 2109.4532,-1260.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 16 -->\\n\",\n       \"<g id=\\\"node17\\\" class=\\\"node\\\">\\n\",\n       \"<title>16</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1019.8594,-1150C1019.8594,-1150 924.0468,-1150 924.0468,-1150 918.0468,-1150 912.0468,-1144 912.0468,-1138 912.0468,-1138 912.0468,-1098 912.0468,-1098 912.0468,-1092 918.0468,-1086 924.0468,-1086 924.0468,-1086 1019.8594,-1086 1019.8594,-1086 1025.8594,-1086 1031.8594,-1092 1031.8594,-1098 1031.8594,-1098 1031.8594,-1138 1031.8594,-1138 1031.8594,-1144 1025.8594,-1150 1019.8594,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"971.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"971.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.32</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"971.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 25</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"971.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [20, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 15&#45;&gt;16 -->\\n\",\n       \"<g id=\\\"edge16\\\" class=\\\"edge\\\">\\n\",\n       \"<title>15&#45;&gt;16</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1295.0693,-1194.9324C1217.717,-1176.5152 1111.1794,-1151.1491 1041.9411,-1134.6638\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1042.5429,-1131.2093 1032.0042,-1132.2979 1040.9215,-1138.019 1042.5429,-1131.2093\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 33 -->\\n\",\n       \"<g id=\\\"node34\\\" class=\\\"node\\\">\\n\",\n       \"<title>33</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1517.3108,-1150C1517.3108,-1150 1266.5955,-1150 1266.5955,-1150 1260.5955,-1150 1254.5955,-1144 1254.5955,-1138 1254.5955,-1138 1254.5955,-1098 1254.5955,-1098 1254.5955,-1092 1260.5955,-1086 1266.5955,-1086 1266.5955,-1086 1517.3108,-1086 1517.3108,-1086 1523.3108,-1086 1529.3108,-1092 1529.3108,-1098 1529.3108,-1098 1529.3108,-1138 1529.3108,-1138 1529.3108,-1144 1523.3108,-1150 1517.3108,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1391.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1391.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.128</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1391.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 29</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1391.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [27, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 15&#45;&gt;33 -->\\n\",\n       \"<g id=\\\"edge33\\\" class=\\\"edge\\\">\\n\",\n       \"<title>15&#45;&gt;33</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1391.9531,-1185.8089C1391.9531,-1177.6906 1391.9531,-1168.8517 1391.9531,-1160.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1395.4532,-1160.1307 1391.9531,-1150.1308 1388.4532,-1160.1308 1395.4532,-1160.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 17 -->\\n\",\n       \"<g id=\\\"node18\\\" class=\\\"node\\\">\\n\",\n       \"<title>17</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M768.3108,-1050C768.3108,-1050 559.5954,-1050 559.5954,-1050 553.5954,-1050 547.5954,-1044 547.5954,-1038 547.5954,-1038 547.5954,-998 547.5954,-998 547.5954,-992 553.5954,-986 559.5954,-986 559.5954,-986 768.3108,-986 768.3108,-986 774.3108,-986 780.3108,-992 780.3108,-998 780.3108,-998 780.3108,-1038 780.3108,-1038 780.3108,-1044 774.3108,-1050 768.3108,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"663.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"663.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.49</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"663.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"663.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 16&#45;&gt;17 -->\\n\",\n       \"<g id=\\\"edge17\\\" class=\\\"edge\\\">\\n\",\n       \"<title>16&#45;&gt;17</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M911.8365,-1098.4816C872.2012,-1085.613 819.1491,-1068.3883 772.2959,-1053.1762\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"773.2991,-1049.8221 762.707,-1050.0629 771.1374,-1056.48 773.2991,-1049.8221\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 24 -->\\n\",\n       \"<g id=\\\"node25\\\" class=\\\"node\\\">\\n\",\n       \"<title>24</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1107.845,-1050C1107.845,-1050 836.0613,-1050 836.0613,-1050 830.0613,-1050 824.0613,-1044 824.0613,-1038 824.0613,-1038 824.0613,-998 824.0613,-998 824.0613,-992 830.0613,-986 836.0613,-986 836.0613,-986 1107.845,-986 1107.845,-986 1113.845,-986 1119.845,-992 1119.845,-998 1119.845,-998 1119.845,-1038 1119.845,-1038 1119.845,-1044 1113.845,-1050 1107.845,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"971.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting nations health &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"971.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.198</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"971.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 18</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"971.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [16, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 16&#45;&gt;24 -->\\n\",\n       \"<g id=\\\"edge24\\\" class=\\\"edge\\\">\\n\",\n       \"<title>16&#45;&gt;24</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M971.9531,-1085.8089C971.9531,-1077.6906 971.9531,-1068.8517 971.9531,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"975.4532,-1060.1307 971.9531,-1050.1308 968.4532,-1060.1308 975.4532,-1060.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 18 -->\\n\",\n       \"<g id=\\\"node19\\\" class=\\\"node\\\">\\n\",\n       \"<title>18</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M567.345,-950C567.345,-950 288.5613,-950 288.5613,-950 282.5613,-950 276.5613,-944 276.5613,-938 276.5613,-938 276.5613,-898 276.5613,-898 276.5613,-892 282.5613,-886 288.5613,-886 288.5613,-886 567.345,-886 567.345,-886 573.345,-886 579.345,-892 579.345,-898 579.345,-898 579.345,-938 579.345,-938 579.345,-944 573.345,-950 567.345,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"427.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"427.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.48</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"427.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"427.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 17&#45;&gt;18 -->\\n\",\n       \"<g id=\\\"edge18\\\" class=\\\"edge\\\">\\n\",\n       \"<title>17&#45;&gt;18</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M588.3075,-985.9467C564.278,-975.7648 537.5467,-964.438 512.9065,-953.9972\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"514.1484,-950.7222 503.5753,-950.0433 511.4173,-957.1675 514.1484,-950.7222\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 23 -->\\n\",\n       \"<g id=\\\"node24\\\" class=\\\"node\\\">\\n\",\n       \"<title>23</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M708.0733,-943C708.0733,-943 619.8329,-943 619.8329,-943 613.8329,-943 607.8329,-937 607.8329,-931 607.8329,-931 607.8329,-905 607.8329,-905 607.8329,-899 613.8329,-893 619.8329,-893 619.8329,-893 708.0733,-893 708.0733,-893 714.0733,-893 720.0733,-899 720.0733,-905 720.0733,-905 720.0733,-931 720.0733,-931 720.0733,-937 714.0733,-943 708.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"663.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"663.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"663.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 17&#45;&gt;23 -->\\n\",\n       \"<g id=\\\"edge23\\\" class=\\\"edge\\\">\\n\",\n       \"<title>17&#45;&gt;23</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M663.9531,-985.8089C663.9531,-975.446 663.9531,-963.909 663.9531,-953.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"667.4532,-953.1555 663.9531,-943.1555 660.4532,-953.1556 667.4532,-953.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 19 -->\\n\",\n       \"<g id=\\\"node20\\\" class=\\\"node\\\">\\n\",\n       \"<title>19</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M286.0733,-843C286.0733,-843 197.8329,-843 197.8329,-843 191.8329,-843 185.8329,-837 185.8329,-831 185.8329,-831 185.8329,-805 185.8329,-805 185.8329,-799 191.8329,-793 197.8329,-793 197.8329,-793 286.0733,-793 286.0733,-793 292.0733,-793 298.0733,-799 298.0733,-805 298.0733,-805 298.0733,-831 298.0733,-831 298.0733,-837 292.0733,-843 286.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"241.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"241.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"241.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 18&#45;&gt;19 -->\\n\",\n       \"<g id=\\\"edge19\\\" class=\\\"edge\\\">\\n\",\n       \"<title>18&#45;&gt;19</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M368.3341,-885.9467C345.64,-873.7457 319.8883,-859.9007 297.5787,-847.9062\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"299.0356,-844.7158 288.5705,-843.0631 295.7208,-850.8812 299.0356,-844.7158\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 20 -->\\n\",\n       \"<g id=\\\"node21\\\" class=\\\"node\\\">\\n\",\n       \"<title>20</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M516.0488,-850C516.0488,-850 327.8574,-850 327.8574,-850 321.8574,-850 315.8574,-844 315.8574,-838 315.8574,-838 315.8574,-798 315.8574,-798 315.8574,-792 321.8574,-786 327.8574,-786 327.8574,-786 516.0488,-786 516.0488,-786 522.0488,-786 528.0488,-792 528.0488,-798 528.0488,-798 528.0488,-838 528.0488,-838 528.0488,-844 522.0488,-850 516.0488,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"421.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Assistance for childcare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"421.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"421.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"421.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 18&#45;&gt;20 -->\\n\",\n       \"<g id=\\\"edge20\\\" class=\\\"edge\\\">\\n\",\n       \"<title>18&#45;&gt;20</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M426.0217,-885.8089C425.5346,-877.6906 425.0042,-868.8517 424.4922,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"427.9737,-859.9032 423.881,-850.1308 420.9863,-860.3225 427.9737,-859.9032\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 21 -->\\n\",\n       \"<g id=\\\"node22\\\" class=\\\"node\\\">\\n\",\n       \"<title>21</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M401.0733,-743C401.0733,-743 312.8329,-743 312.8329,-743 306.8329,-743 300.8329,-737 300.8329,-731 300.8329,-731 300.8329,-705 300.8329,-705 300.8329,-699 306.8329,-693 312.8329,-693 312.8329,-693 401.0733,-693 401.0733,-693 407.0733,-693 413.0733,-699 413.0733,-705 413.0733,-705 413.0733,-731 413.0733,-731 413.0733,-737 407.0733,-743 401.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"356.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"356.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"356.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 20&#45;&gt;21 -->\\n\",\n       \"<g id=\\\"edge21\\\" class=\\\"edge\\\">\\n\",\n       \"<title>20&#45;&gt;21</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M401.0289,-785.8089C393.9422,-774.9063 386.0108,-762.7041 378.8505,-751.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"381.6887,-749.6325 373.3042,-743.1555 375.8196,-753.4475 381.6887,-749.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 22 -->\\n\",\n       \"<g id=\\\"node23\\\" class=\\\"node\\\">\\n\",\n       \"<title>22</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M531.0733,-743C531.0733,-743 442.8329,-743 442.8329,-743 436.8329,-743 430.8329,-737 430.8329,-731 430.8329,-731 430.8329,-705 430.8329,-705 430.8329,-699 436.8329,-693 442.8329,-693 442.8329,-693 531.0733,-693 531.0733,-693 537.0733,-693 543.0733,-699 543.0733,-705 543.0733,-705 543.0733,-731 543.0733,-731 543.0733,-737 537.0733,-743 531.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"486.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"486.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"486.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 20&#45;&gt;22 -->\\n\",\n       \"<g id=\\\"edge22\\\" class=\\\"edge\\\">\\n\",\n       \"<title>20&#45;&gt;22</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M442.8773,-785.8089C449.9641,-774.9063 457.8955,-762.7041 465.0558,-751.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"468.0867,-753.4475 470.602,-743.1555 462.2175,-749.6325 468.0867,-753.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 25 -->\\n\",\n       \"<g id=\\\"node26\\\" class=\\\"node\\\">\\n\",\n       \"<title>25</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M913.9908,-950C913.9908,-950 755.9154,-950 755.9154,-950 749.9154,-950 743.9154,-944 743.9154,-938 743.9154,-938 743.9154,-898 743.9154,-898 743.9154,-892 749.9154,-886 755.9154,-886 755.9154,-886 913.9908,-886 913.9908,-886 919.9908,-886 925.9908,-892 925.9908,-898 925.9908,-898 925.9908,-938 925.9908,-938 925.9908,-944 919.9908,-950 913.9908,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"834.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"834.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.117</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"834.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 16</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"834.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [15, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 24&#45;&gt;25 -->\\n\",\n       \"<g id=\\\"edge25\\\" class=\\\"edge\\\">\\n\",\n       \"<title>24&#45;&gt;25</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M927.8514,-985.8089C914.8959,-976.3524 900.6011,-965.9182 887.1891,-956.1285\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"889.113,-953.1995 878.9723,-950.1308 884.9859,-958.8535 889.113,-953.1995\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 30 -->\\n\",\n       \"<g id=\\\"node31\\\" class=\\\"node\\\">\\n\",\n       \"<title>30</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1151.0941,-950C1151.0941,-950 968.8122,-950 968.8122,-950 962.8122,-950 956.8122,-944 956.8122,-938 956.8122,-938 956.8122,-898 956.8122,-898 956.8122,-892 962.8122,-886 968.8122,-886 968.8122,-886 1151.0941,-886 1151.0941,-886 1157.0941,-886 1163.0941,-892 1163.0941,-898 1163.0941,-898 1163.0941,-938 1163.0941,-938 1163.0941,-944 1157.0941,-950 1151.0941,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1059.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1059.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1059.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1059.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 24&#45;&gt;30 -->\\n\",\n       \"<g id=\\\"edge30\\\" class=\\\"edge\\\">\\n\",\n       \"<title>24&#45;&gt;30</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1000.2813,-985.8089C1008.132,-976.8877 1016.7484,-967.0963 1024.932,-957.7968\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1027.6993,-959.9501 1031.6781,-950.1308 1022.4442,-955.3257 1027.6993,-959.9501\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 26 -->\\n\",\n       \"<g id=\\\"node27\\\" class=\\\"node\\\">\\n\",\n       \"<title>26</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M653.8594,-843C653.8594,-843 558.0468,-843 558.0468,-843 552.0468,-843 546.0468,-837 546.0468,-831 546.0468,-831 546.0468,-805 546.0468,-805 546.0468,-799 552.0468,-793 558.0468,-793 558.0468,-793 653.8594,-793 653.8594,-793 659.8594,-793 665.8594,-799 665.8594,-805 665.8594,-805 665.8594,-831 665.8594,-831 665.8594,-837 659.8594,-843 653.8594,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"605.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"605.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 14</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"605.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [14, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 25&#45;&gt;26 -->\\n\",\n       \"<g id=\\\"edge26\\\" class=\\\"edge\\\">\\n\",\n       \"<title>25&#45;&gt;26</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M758.2335,-885.9887C731.7673,-874.7881 701.9845,-862.0086 674.9531,-850 673.0977,-849.1758 671.2163,-848.3351 669.3187,-847.483\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"670.2948,-844.083 659.7411,-843.1496 667.4092,-850.4606 670.2948,-844.083\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 27 -->\\n\",\n       \"<g id=\\\"node28\\\" class=\\\"node\\\">\\n\",\n       \"<title>27</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M974.345,-850C974.345,-850 695.5613,-850 695.5613,-850 689.5613,-850 683.5613,-844 683.5613,-838 683.5613,-838 683.5613,-798 683.5613,-798 683.5613,-792 689.5613,-786 695.5613,-786 695.5613,-786 974.345,-786 974.345,-786 980.345,-786 986.345,-792 986.345,-798 986.345,-798 986.345,-838 986.345,-838 986.345,-844 980.345,-850 974.345,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"834.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"834.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"834.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"834.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 25&#45;&gt;27 -->\\n\",\n       \"<g id=\\\"edge27\\\" class=\\\"edge\\\">\\n\",\n       \"<title>25&#45;&gt;27</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M834.9531,-885.8089C834.9531,-877.6906 834.9531,-868.8517 834.9531,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"838.4532,-860.1307 834.9531,-850.1308 831.4532,-860.1308 838.4532,-860.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 28 -->\\n\",\n       \"<g id=\\\"node29\\\" class=\\\"node\\\">\\n\",\n       \"<title>28</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M814.0733,-743C814.0733,-743 725.8329,-743 725.8329,-743 719.8329,-743 713.8329,-737 713.8329,-731 713.8329,-731 713.8329,-705 713.8329,-705 713.8329,-699 719.8329,-693 725.8329,-693 725.8329,-693 814.0733,-693 814.0733,-693 820.0733,-693 826.0733,-699 826.0733,-705 826.0733,-705 826.0733,-731 826.0733,-731 826.0733,-737 820.0733,-743 814.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"769.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"769.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"769.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 27&#45;&gt;28 -->\\n\",\n       \"<g id=\\\"edge28\\\" class=\\\"edge\\\">\\n\",\n       \"<title>27&#45;&gt;28</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M814.0289,-785.8089C806.9422,-774.9063 799.0108,-762.7041 791.8505,-751.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"794.6887,-749.6325 786.3042,-743.1555 788.8196,-753.4475 794.6887,-749.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 29 -->\\n\",\n       \"<g id=\\\"node30\\\" class=\\\"node\\\">\\n\",\n       \"<title>29</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M944.0733,-743C944.0733,-743 855.8329,-743 855.8329,-743 849.8329,-743 843.8329,-737 843.8329,-731 843.8329,-731 843.8329,-705 843.8329,-705 843.8329,-699 849.8329,-693 855.8329,-693 855.8329,-693 944.0733,-693 944.0733,-693 950.0733,-693 956.0733,-699 956.0733,-705 956.0733,-705 956.0733,-731 956.0733,-731 956.0733,-737 950.0733,-743 944.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"899.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"899.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"899.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 27&#45;&gt;29 -->\\n\",\n       \"<g id=\\\"edge29\\\" class=\\\"edge\\\">\\n\",\n       \"<title>27&#45;&gt;29</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M855.8773,-785.8089C862.9641,-774.9063 870.8955,-762.7041 878.0558,-751.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"881.0867,-753.4475 883.602,-743.1555 875.2175,-749.6325 881.0867,-753.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 31 -->\\n\",\n       \"<g id=\\\"node32\\\" class=\\\"node\\\">\\n\",\n       \"<title>31</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1104.0733,-843C1104.0733,-843 1015.8329,-843 1015.8329,-843 1009.8329,-843 1003.8329,-837 1003.8329,-831 1003.8329,-831 1003.8329,-805 1003.8329,-805 1003.8329,-799 1009.8329,-793 1015.8329,-793 1015.8329,-793 1104.0733,-793 1104.0733,-793 1110.0733,-793 1116.0733,-799 1116.0733,-805 1116.0733,-805 1116.0733,-831 1116.0733,-831 1116.0733,-837 1110.0733,-843 1104.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1059.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1059.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1059.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 30&#45;&gt;31 -->\\n\",\n       \"<g id=\\\"edge31\\\" class=\\\"edge\\\">\\n\",\n       \"<title>30&#45;&gt;31</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1059.9531,-885.8089C1059.9531,-875.446 1059.9531,-863.909 1059.9531,-853.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1063.4532,-853.1555 1059.9531,-843.1555 1056.4532,-853.1556 1063.4532,-853.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 32 -->\\n\",\n       \"<g id=\\\"node33\\\" class=\\\"node\\\">\\n\",\n       \"<title>32</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1234.0733,-843C1234.0733,-843 1145.8329,-843 1145.8329,-843 1139.8329,-843 1133.8329,-837 1133.8329,-831 1133.8329,-831 1133.8329,-805 1133.8329,-805 1133.8329,-799 1139.8329,-793 1145.8329,-793 1145.8329,-793 1234.0733,-793 1234.0733,-793 1240.0733,-793 1246.0733,-799 1246.0733,-805 1246.0733,-805 1246.0733,-831 1246.0733,-831 1246.0733,-837 1240.0733,-843 1234.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1189.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1189.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1189.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 30&#45;&gt;32 -->\\n\",\n       \"<g id=\\\"edge32\\\" class=\\\"edge\\\">\\n\",\n       \"<title>30&#45;&gt;32</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1101.8015,-885.8089C1116.9573,-874.1506 1134.0448,-861.0064 1149.1127,-849.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1151.4587,-852.0269 1157.2509,-843.1555 1147.1907,-846.4785 1151.4587,-852.0269\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 34 -->\\n\",\n       \"<g id=\\\"node35\\\" class=\\\"node\\\">\\n\",\n       \"<title>34</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1414.5452,-1050C1414.5452,-1050 1151.361,-1050 1151.361,-1050 1145.361,-1050 1139.361,-1044 1139.361,-1038 1139.361,-1038 1139.361,-998 1139.361,-998 1139.361,-992 1145.361,-986 1151.361,-986 1151.361,-986 1414.5452,-986 1414.5452,-986 1420.5452,-986 1426.5452,-992 1426.5452,-998 1426.5452,-998 1426.5452,-1038 1426.5452,-1038 1426.5452,-1044 1420.5452,-1050 1414.5452,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1282.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1282.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.069</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1282.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 28</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1282.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [27, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 33&#45;&gt;34 -->\\n\",\n       \"<g id=\\\"edge34\\\" class=\\\"edge\\\">\\n\",\n       \"<title>33&#45;&gt;34</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1356.8649,-1085.8089C1346.849,-1076.62 1335.8269,-1066.508 1325.4208,-1056.9612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1327.7105,-1054.312 1317.9757,-1050.1308 1322.9783,-1059.4702 1327.7105,-1054.312\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 41 -->\\n\",\n       \"<g id=\\\"node42\\\" class=\\\"node\\\">\\n\",\n       \"<title>41</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1545.0733,-1043C1545.0733,-1043 1456.8329,-1043 1456.8329,-1043 1450.8329,-1043 1444.8329,-1037 1444.8329,-1031 1444.8329,-1031 1444.8329,-1005 1444.8329,-1005 1444.8329,-999 1450.8329,-993 1456.8329,-993 1456.8329,-993 1545.0733,-993 1545.0733,-993 1551.0733,-993 1557.0733,-999 1557.0733,-1005 1557.0733,-1005 1557.0733,-1031 1557.0733,-1031 1557.0733,-1037 1551.0733,-1043 1545.0733,-1043\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1500.9531\\\" y=\\\"-1027.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1500.9531\\\" y=\\\"-1013.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1500.9531\\\" y=\\\"-999.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 33&#45;&gt;41 -->\\n\",\n       \"<g id=\\\"edge41\\\" class=\\\"edge\\\">\\n\",\n       \"<title>33&#45;&gt;41</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1427.0414,-1085.8089C1439.5136,-1074.3665 1453.546,-1061.4928 1466.0064,-1050.0612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1468.5309,-1052.4949 1473.5336,-1043.1555 1463.7987,-1047.3368 1468.5309,-1052.4949\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 35 -->\\n\",\n       \"<g id=\\\"node36\\\" class=\\\"node\\\">\\n\",\n       \"<title>35</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1310.8594,-943C1310.8594,-943 1215.0468,-943 1215.0468,-943 1209.0468,-943 1203.0468,-937 1203.0468,-931 1203.0468,-931 1203.0468,-905 1203.0468,-905 1203.0468,-899 1209.0468,-893 1215.0468,-893 1215.0468,-893 1310.8594,-893 1310.8594,-893 1316.8594,-893 1322.8594,-899 1322.8594,-905 1322.8594,-905 1322.8594,-931 1322.8594,-931 1322.8594,-937 1316.8594,-943 1310.8594,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1262.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1262.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 23</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1262.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [23, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 34&#45;&gt;35 -->\\n\",\n       \"<g id=\\\"edge35\\\" class=\\\"edge\\\">\\n\",\n       \"<title>34&#45;&gt;35</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1276.5149,-985.8089C1274.4207,-975.338 1272.0868,-963.6685 1269.9536,-953.0025\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1273.3775,-952.2749 1267.9842,-943.1555 1266.5134,-953.6478 1273.3775,-952.2749\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 36 -->\\n\",\n       \"<g id=\\\"node37\\\" class=\\\"node\\\">\\n\",\n       \"<title>36</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1441.0733,-950C1441.0733,-950 1352.8329,-950 1352.8329,-950 1346.8329,-950 1340.8329,-944 1340.8329,-938 1340.8329,-938 1340.8329,-898 1340.8329,-898 1340.8329,-892 1346.8329,-886 1352.8329,-886 1352.8329,-886 1441.0733,-886 1441.0733,-886 1447.0733,-886 1453.0733,-892 1453.0733,-898 1453.0733,-898 1453.0733,-938 1453.0733,-938 1453.0733,-944 1447.0733,-950 1441.0733,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1396.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1396.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.32</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1396.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1396.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 34&#45;&gt;36 -->\\n\",\n       \"<g id=\\\"edge36\\\" class=\\\"edge\\\">\\n\",\n       \"<title>34&#45;&gt;36</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1319.6509,-985.8089C1330.1263,-976.62 1341.6539,-966.508 1352.5374,-956.9612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1355.1145,-959.3563 1360.3241,-950.1308 1350.4984,-954.094 1355.1145,-959.3563\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 37 -->\\n\",\n       \"<g id=\\\"node38\\\" class=\\\"node\\\">\\n\",\n       \"<title>37</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1381.5874,-850C1381.5874,-850 1276.3188,-850 1276.3188,-850 1270.3188,-850 1264.3188,-844 1264.3188,-838 1264.3188,-838 1264.3188,-798 1264.3188,-798 1264.3188,-792 1270.3188,-786 1276.3188,-786 1276.3188,-786 1381.5874,-786 1381.5874,-786 1387.5874,-786 1393.5874,-792 1393.5874,-798 1393.5874,-798 1393.5874,-838 1393.5874,-838 1393.5874,-844 1387.5874,-850 1381.5874,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1328.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1328.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1328.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1328.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 36&#45;&gt;37 -->\\n\",\n       \"<g id=\\\"edge37\\\" class=\\\"edge\\\">\\n\",\n       \"<title>36&#45;&gt;37</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1375.0632,-885.8089C1369.1787,-877.1553 1362.7376,-867.683 1356.5849,-858.635\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1359.3194,-856.4319 1350.802,-850.1308 1353.5309,-860.3681 1359.3194,-856.4319\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 40 -->\\n\",\n       \"<g id=\\\"node41\\\" class=\\\"node\\\">\\n\",\n       \"<title>40</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1512.0733,-843C1512.0733,-843 1423.8329,-843 1423.8329,-843 1417.8329,-843 1411.8329,-837 1411.8329,-831 1411.8329,-831 1411.8329,-805 1411.8329,-805 1411.8329,-799 1417.8329,-793 1423.8329,-793 1423.8329,-793 1512.0733,-793 1512.0733,-793 1518.0733,-793 1524.0733,-799 1524.0733,-805 1524.0733,-805 1524.0733,-831 1524.0733,-831 1524.0733,-837 1518.0733,-843 1512.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1467.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1467.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1467.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 36&#45;&gt;40 -->\\n\",\n       \"<g id=\\\"edge40\\\" class=\\\"edge\\\">\\n\",\n       \"<title>36&#45;&gt;40</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1419.8088,-885.8089C1427.6263,-874.7983 1436.3849,-862.4623 1444.2666,-851.3614\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1447.1573,-853.3356 1450.0927,-843.1555 1441.4496,-849.2831 1447.1573,-853.3356\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 38 -->\\n\",\n       \"<g id=\\\"node39\\\" class=\\\"node\\\">\\n\",\n       \"<title>38</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1241.0733,-743C1241.0733,-743 1152.8329,-743 1152.8329,-743 1146.8329,-743 1140.8329,-737 1140.8329,-731 1140.8329,-731 1140.8329,-705 1140.8329,-705 1140.8329,-699 1146.8329,-693 1152.8329,-693 1152.8329,-693 1241.0733,-693 1241.0733,-693 1247.0733,-693 1253.0733,-699 1253.0733,-705 1253.0733,-705 1253.0733,-731 1253.0733,-731 1253.0733,-737 1247.0733,-743 1241.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1196.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1196.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1196.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 37&#45;&gt;38 -->\\n\",\n       \"<g id=\\\"edge38\\\" class=\\\"edge\\\">\\n\",\n       \"<title>37&#45;&gt;38</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1286.4609,-785.8089C1271.0719,-774.1506 1253.7216,-761.0064 1238.4219,-749.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1240.2429,-746.4043 1230.1584,-743.1555 1236.0159,-751.984 1240.2429,-746.4043\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 39 -->\\n\",\n       \"<g id=\\\"node40\\\" class=\\\"node\\\">\\n\",\n       \"<title>39</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1371.0733,-743C1371.0733,-743 1282.8329,-743 1282.8329,-743 1276.8329,-743 1270.8329,-737 1270.8329,-731 1270.8329,-731 1270.8329,-705 1270.8329,-705 1270.8329,-699 1276.8329,-693 1282.8329,-693 1282.8329,-693 1371.0733,-693 1371.0733,-693 1377.0733,-693 1383.0733,-699 1383.0733,-705 1383.0733,-705 1383.0733,-731 1383.0733,-731 1383.0733,-737 1377.0733,-743 1371.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1326.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1326.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1326.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 37&#45;&gt;39 -->\\n\",\n       \"<g id=\\\"edge39\\\" class=\\\"edge\\\">\\n\",\n       \"<title>37&#45;&gt;39</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1328.3093,-785.8089C1328.102,-775.446 1327.8713,-763.909 1327.6598,-753.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1331.1556,-753.0835 1327.4562,-743.1555 1324.157,-753.2236 1331.1556,-753.0835\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 43 -->\\n\",\n       \"<g id=\\\"node44\\\" class=\\\"node\\\">\\n\",\n       \"<title>43</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2090.304,-1150C2090.304,-1150 1881.6023,-1150 1881.6023,-1150 1875.6023,-1150 1869.6023,-1144 1869.6023,-1138 1869.6023,-1138 1869.6023,-1098 1869.6023,-1098 1869.6023,-1092 1875.6023,-1086 1881.6023,-1086 1881.6023,-1086 2090.304,-1086 2090.304,-1086 2096.304,-1086 2102.304,-1092 2102.304,-1098 2102.304,-1098 2102.304,-1138 2102.304,-1138 2102.304,-1144 2096.304,-1150 2090.304,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1985.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1985.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.577</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1985.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 26</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1985.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [14, 9, 3]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 42&#45;&gt;43 -->\\n\",\n       \"<g id=\\\"edge43\\\" class=\\\"edge\\\">\\n\",\n       \"<title>42&#45;&gt;43</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2067.3238,-1185.8089C2056.1901,-1176.5308 2043.9271,-1166.3116 2032.3731,-1156.6833\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2034.4329,-1153.8439 2024.51,-1150.1308 2029.9516,-1159.2214 2034.4329,-1153.8439\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 64 -->\\n\",\n       \"<g id=\\\"node65\\\" class=\\\"node\\\">\\n\",\n       \"<title>64</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2320.0488,-1150C2320.0488,-1150 2131.8574,-1150 2131.8574,-1150 2125.8574,-1150 2119.8574,-1144 2119.8574,-1138 2119.8574,-1138 2119.8574,-1098 2119.8574,-1098 2119.8574,-1092 2125.8574,-1086 2131.8574,-1086 2131.8574,-1086 2320.0488,-1086 2320.0488,-1086 2326.0488,-1086 2332.0488,-1092 2332.0488,-1098 2332.0488,-1098 2332.0488,-1138 2332.0488,-1138 2332.0488,-1144 2326.0488,-1150 2320.0488,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2225.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Assistance for childcare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2225.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.278</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2225.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 12</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2225.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [10, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 42&#45;&gt;64 -->\\n\",\n       \"<g id=\\\"edge64\\\" class=\\\"edge\\\">\\n\",\n       \"<title>42&#45;&gt;64</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2144.5824,-1185.8089C2155.7161,-1176.5308 2167.9792,-1166.3116 2179.5332,-1156.6833\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2181.9546,-1159.2214 2187.3962,-1150.1308 2177.4733,-1153.8439 2181.9546,-1159.2214\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 44 -->\\n\",\n       \"<g id=\\\"node45\\\" class=\\\"node\\\">\\n\",\n       \"<title>44</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1826.7561,-1050C1826.7561,-1050 1639.1502,-1050 1639.1502,-1050 1633.1502,-1050 1627.1502,-1044 1627.1502,-1038 1627.1502,-1038 1627.1502,-998 1627.1502,-998 1627.1502,-992 1633.1502,-986 1639.1502,-986 1639.1502,-986 1826.7561,-986 1826.7561,-986 1832.7561,-986 1838.7561,-992 1838.7561,-998 1838.7561,-998 1838.7561,-1038 1838.7561,-1038 1838.7561,-1044 1832.7561,-1050 1826.7561,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1732.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1732.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1732.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1732.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 3, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 43&#45;&gt;44 -->\\n\",\n       \"<g id=\\\"edge44\\\" class=\\\"edge\\\">\\n\",\n       \"<title>43&#45;&gt;44</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1904.8584,-1085.9467C1878.871,-1075.6751 1849.936,-1064.2383 1823.3284,-1053.7214\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1824.6091,-1050.4642 1814.0227,-1050.0433 1822.036,-1056.9742 1824.6091,-1050.4642\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 47 -->\\n\",\n       \"<g id=\\\"node48\\\" class=\\\"node\\\">\\n\",\n       \"<title>47</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2127.3828,-1050C2127.3828,-1050 1868.5234,-1050 1868.5234,-1050 1862.5234,-1050 1856.5234,-1044 1856.5234,-1038 1856.5234,-1038 1856.5234,-998 1856.5234,-998 1856.5234,-992 1862.5234,-986 1868.5234,-986 1868.5234,-986 2127.3828,-986 2127.3828,-986 2133.3828,-986 2139.3828,-992 2139.3828,-998 2139.3828,-998 2139.3828,-1038 2139.3828,-1038 2139.3828,-1044 2133.3828,-1050 2127.3828,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1997.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1997.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.512</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1997.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 22</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1997.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [14, 6, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 43&#45;&gt;47 -->\\n\",\n       \"<g id=\\\"edge47\\\" class=\\\"edge\\\">\\n\",\n       \"<title>43&#45;&gt;47</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1989.8161,-1085.8089C1990.7903,-1077.6906 1991.8509,-1068.8517 1992.8749,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1996.381,-1060.4766 1994.0974,-1050.1308 1989.4308,-1059.6425 1996.381,-1060.4766\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 45 -->\\n\",\n       \"<g id=\\\"node46\\\" class=\\\"node\\\">\\n\",\n       \"<title>45</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1651.0733,-943C1651.0733,-943 1562.8329,-943 1562.8329,-943 1556.8329,-943 1550.8329,-937 1550.8329,-931 1550.8329,-931 1550.8329,-905 1550.8329,-905 1550.8329,-899 1556.8329,-893 1562.8329,-893 1562.8329,-893 1651.0733,-893 1651.0733,-893 1657.0733,-893 1663.0733,-899 1663.0733,-905 1663.0733,-905 1663.0733,-931 1663.0733,-931 1663.0733,-937 1657.0733,-943 1651.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1606.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1606.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1606.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 44&#45;&gt;45 -->\\n\",\n       \"<g id=\\\"edge45\\\" class=\\\"edge\\\">\\n\",\n       \"<title>44&#45;&gt;45</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1692.3924,-985.8089C1677.7029,-974.1506 1661.1412,-961.0064 1646.5369,-949.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1648.6578,-946.6306 1638.6491,-943.1555 1644.3062,-952.1137 1648.6578,-946.6306\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 46 -->\\n\",\n       \"<g id=\\\"node47\\\" class=\\\"node\\\">\\n\",\n       \"<title>46</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1781.0733,-943C1781.0733,-943 1692.8329,-943 1692.8329,-943 1686.8329,-943 1680.8329,-937 1680.8329,-931 1680.8329,-931 1680.8329,-905 1680.8329,-905 1680.8329,-899 1686.8329,-893 1692.8329,-893 1692.8329,-893 1781.0733,-893 1781.0733,-893 1787.0733,-893 1793.0733,-899 1793.0733,-905 1793.0733,-905 1793.0733,-931 1793.0733,-931 1793.0733,-937 1787.0733,-943 1781.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1736.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1736.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1736.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 44&#45;&gt;46 -->\\n\",\n       \"<g id=\\\"edge46\\\" class=\\\"edge\\\">\\n\",\n       \"<title>44&#45;&gt;46</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1734.2408,-985.8089C1734.6553,-975.446 1735.1168,-963.909 1735.5398,-953.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1739.0443,-953.2875 1735.9469,-943.1555 1732.0499,-953.0076 1739.0443,-953.2875\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 48 -->\\n\",\n       \"<g id=\\\"node49\\\" class=\\\"node\\\">\\n\",\n       \"<title>48</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1997.8872,-950C1997.8872,-950 1828.019,-950 1828.019,-950 1822.019,-950 1816.019,-944 1816.019,-938 1816.019,-938 1816.019,-898 1816.019,-898 1816.019,-892 1822.019,-886 1828.019,-886 1828.019,-886 1997.8872,-886 1997.8872,-886 2003.8872,-886 2009.8872,-892 2009.8872,-898 2009.8872,-898 2009.8872,-938 2009.8872,-938 2009.8872,-944 2003.8872,-950 1997.8872,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1912.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Parks and recreation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1912.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.41</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1912.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 19</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1912.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [14, 4, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 47&#45;&gt;48 -->\\n\",\n       \"<g id=\\\"edge48\\\" class=\\\"edge\\\">\\n\",\n       \"<title>47&#45;&gt;48</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1970.5907,-985.8089C1963.0076,-976.8877 1954.685,-967.0963 1946.7804,-957.7968\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1949.4076,-955.4834 1940.2643,-950.1308 1944.074,-960.017 1949.4076,-955.4834\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 61 -->\\n\",\n       \"<g id=\\\"node62\\\" class=\\\"node\\\">\\n\",\n       \"<title>61</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2217.9521,-950C2217.9521,-950 2039.9541,-950 2039.9541,-950 2033.9541,-950 2027.9541,-944 2027.9541,-938 2027.9541,-938 2027.9541,-898 2027.9541,-898 2027.9541,-892 2033.9541,-886 2039.9541,-886 2039.9541,-886 2217.9521,-886 2217.9521,-886 2223.9521,-886 2229.9521,-892 2229.9521,-898 2229.9521,-898 2229.9521,-938 2229.9521,-938 2229.9521,-944 2223.9521,-950 2217.9521,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2128.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2128.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2128.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2128.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 47&#45;&gt;61 -->\\n\",\n       \"<g id=\\\"edge61\\\" class=\\\"edge\\\">\\n\",\n       \"<title>47&#45;&gt;61</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2040.1234,-985.8089C2052.3946,-976.4416 2065.9225,-966.115 2078.6416,-956.4057\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2081.0368,-958.9806 2086.8618,-950.1308 2076.7893,-953.4165 2081.0368,-958.9806\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 49 -->\\n\",\n       \"<g id=\\\"node50\\\" class=\\\"node\\\">\\n\",\n       \"<title>49</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1795.5874,-850C1795.5874,-850 1690.3188,-850 1690.3188,-850 1684.3188,-850 1678.3188,-844 1678.3188,-838 1678.3188,-838 1678.3188,-798 1678.3188,-798 1678.3188,-792 1684.3188,-786 1690.3188,-786 1690.3188,-786 1795.5874,-786 1795.5874,-786 1801.5874,-786 1807.5874,-792 1807.5874,-798 1807.5874,-798 1807.5874,-838 1807.5874,-838 1807.5874,-844 1801.5874,-850 1795.5874,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1742.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1742.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.64</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1742.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1742.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 2, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 48&#45;&gt;49 -->\\n\",\n       \"<g id=\\\"edge49\\\" class=\\\"edge\\\">\\n\",\n       \"<title>48&#45;&gt;49</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1858.2283,-885.8089C1841.6972,-876.0848 1823.4087,-865.3268 1806.3612,-855.2989\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1807.9694,-852.1842 1797.5754,-850.1308 1804.4202,-858.2178 1807.9694,-852.1842\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 54 -->\\n\",\n       \"<g id=\\\"node55\\\" class=\\\"node\\\">\\n\",\n       \"<title>54</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2010.7903,-850C2010.7903,-850 1837.1159,-850 1837.1159,-850 1831.1159,-850 1825.1159,-844 1825.1159,-838 1825.1159,-838 1825.1159,-798 1825.1159,-798 1825.1159,-792 1831.1159,-786 1837.1159,-786 1837.1159,-786 2010.7903,-786 2010.7903,-786 2016.7903,-786 2022.7903,-792 2022.7903,-798 2022.7903,-798 2022.7903,-838 2022.7903,-838 2022.7903,-844 2016.7903,-850 2010.7903,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1923.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1923.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.245</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1923.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 14</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1923.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [12, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 48&#45;&gt;54 -->\\n\",\n       \"<g id=\\\"edge54\\\" class=\\\"edge\\\">\\n\",\n       \"<title>48&#45;&gt;54</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1916.4941,-885.8089C1917.3872,-877.6906 1918.3594,-868.8517 1919.2981,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1922.8043,-860.4535 1920.4187,-850.1308 1915.8462,-859.6881 1922.8043,-860.4535\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 50 -->\\n\",\n       \"<g id=\\\"node51\\\" class=\\\"node\\\">\\n\",\n       \"<title>50</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1664.5967,-750C1664.5967,-750 1413.3095,-750 1413.3095,-750 1407.3095,-750 1401.3095,-744 1401.3095,-738 1401.3095,-738 1401.3095,-698 1401.3095,-698 1401.3095,-692 1407.3095,-686 1413.3095,-686 1413.3095,-686 1664.5967,-686 1664.5967,-686 1670.5967,-686 1676.5967,-692 1676.5967,-698 1676.5967,-698 1676.5967,-738 1676.5967,-738 1676.5967,-744 1670.5967,-750 1664.5967,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1538.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1538.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1538.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1538.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 49&#45;&gt;50 -->\\n\",\n       \"<g id=\\\"edge50\\\" class=\\\"edge\\\">\\n\",\n       \"<title>49&#45;&gt;50</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1678.126,-786.222C1657.5048,-776.1136 1634.5355,-764.8541 1613.2966,-754.4429\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1614.8319,-751.2976 1604.3121,-750.0387 1611.7508,-757.5831 1614.8319,-751.2976\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 53 -->\\n\",\n       \"<g id=\\\"node54\\\" class=\\\"node\\\">\\n\",\n       \"<title>53</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1795.0733,-743C1795.0733,-743 1706.8329,-743 1706.8329,-743 1700.8329,-743 1694.8329,-737 1694.8329,-731 1694.8329,-731 1694.8329,-705 1694.8329,-705 1694.8329,-699 1700.8329,-693 1706.8329,-693 1706.8329,-693 1795.0733,-693 1795.0733,-693 1801.0733,-693 1807.0733,-699 1807.0733,-705 1807.0733,-705 1807.0733,-731 1807.0733,-731 1807.0733,-737 1801.0733,-743 1795.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1750.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1750.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1750.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 49&#45;&gt;53 -->\\n\",\n       \"<g id=\\\"edge53\\\" class=\\\"edge\\\">\\n\",\n       \"<title>49&#45;&gt;53</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1745.5284,-785.8089C1746.3574,-775.446 1747.2804,-763.909 1748.1265,-753.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1751.632,-753.4028 1748.9407,-743.1555 1744.6543,-752.8446 1751.632,-753.4028\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 51 -->\\n\",\n       \"<g id=\\\"node52\\\" class=\\\"node\\\">\\n\",\n       \"<title>51</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1468.0733,-643C1468.0733,-643 1379.8329,-643 1379.8329,-643 1373.8329,-643 1367.8329,-637 1367.8329,-631 1367.8329,-631 1367.8329,-605 1367.8329,-605 1367.8329,-599 1373.8329,-593 1379.8329,-593 1379.8329,-593 1468.0733,-593 1468.0733,-593 1474.0733,-593 1480.0733,-599 1480.0733,-605 1480.0733,-605 1480.0733,-631 1480.0733,-631 1480.0733,-637 1474.0733,-643 1468.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1423.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1423.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1423.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 50&#45;&gt;51 -->\\n\",\n       \"<g id=\\\"edge51\\\" class=\\\"edge\\\">\\n\",\n       \"<title>50&#45;&gt;51</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1501.9334,-685.8089C1488.6505,-674.2586 1473.6903,-661.2497 1460.4519,-649.7381\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1462.7247,-647.0762 1452.882,-643.1555 1458.1314,-652.3585 1462.7247,-647.0762\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 52 -->\\n\",\n       \"<g id=\\\"node53\\\" class=\\\"node\\\">\\n\",\n       \"<title>52</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1598.0733,-643C1598.0733,-643 1509.8329,-643 1509.8329,-643 1503.8329,-643 1497.8329,-637 1497.8329,-631 1497.8329,-631 1497.8329,-605 1497.8329,-605 1497.8329,-599 1503.8329,-593 1509.8329,-593 1509.8329,-593 1598.0733,-593 1598.0733,-593 1604.0733,-593 1610.0733,-599 1610.0733,-605 1610.0733,-605 1610.0733,-631 1610.0733,-631 1610.0733,-637 1604.0733,-643 1598.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1553.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1553.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1553.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 50&#45;&gt;52 -->\\n\",\n       \"<g id=\\\"edge52\\\" class=\\\"edge\\\">\\n\",\n       \"<title>50&#45;&gt;52</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1543.7818,-685.8089C1545.3362,-675.446 1547.0668,-663.909 1548.6532,-653.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1552.1576,-653.5641 1550.1798,-643.1555 1545.235,-652.5257 1552.1576,-653.5641\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 55 -->\\n\",\n       \"<g id=\\\"node56\\\" class=\\\"node\\\">\\n\",\n       \"<title>55</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1994.9908,-750C1994.9908,-750 1836.9154,-750 1836.9154,-750 1830.9154,-750 1824.9154,-744 1824.9154,-738 1824.9154,-738 1824.9154,-698 1824.9154,-698 1824.9154,-692 1830.9154,-686 1836.9154,-686 1836.9154,-686 1994.9908,-686 1994.9908,-686 2000.9908,-686 2006.9908,-692 2006.9908,-698 2006.9908,-698 2006.9908,-738 2006.9908,-738 2006.9908,-744 2000.9908,-750 1994.9908,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1915.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1915.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.142</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1915.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 13</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1915.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [12, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 54&#45;&gt;55 -->\\n\",\n       \"<g id=\\\"edge55\\\" class=\\\"edge\\\">\\n\",\n       \"<title>54&#45;&gt;55</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1921.3778,-785.8089C1920.7284,-777.6906 1920.0213,-768.8517 1919.3386,-760.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1922.81,-759.8198 1918.5236,-750.1308 1915.8323,-760.3781 1922.81,-759.8198\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 60 -->\\n\",\n       \"<g id=\\\"node61\\\" class=\\\"node\\\">\\n\",\n       \"<title>60</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2125.0733,-743C2125.0733,-743 2036.8329,-743 2036.8329,-743 2030.8329,-743 2024.8329,-737 2024.8329,-731 2024.8329,-731 2024.8329,-705 2024.8329,-705 2024.8329,-699 2030.8329,-693 2036.8329,-693 2036.8329,-693 2125.0733,-693 2125.0733,-693 2131.0733,-693 2137.0733,-699 2137.0733,-705 2137.0733,-705 2137.0733,-731 2137.0733,-731 2137.0733,-737 2131.0733,-743 2125.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2080.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2080.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2080.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 54&#45;&gt;60 -->\\n\",\n       \"<g id=\\\"edge60\\\" class=\\\"edge\\\">\\n\",\n       \"<title>54&#45;&gt;60</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1974.4931,-785.8089C1993.2203,-773.8808 2014.3896,-760.3971 2032.8902,-748.6133\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2034.9048,-751.4799 2041.4589,-743.1555 2031.1442,-745.5758 2034.9048,-751.4799\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 56 -->\\n\",\n       \"<g id=\\\"node57\\\" class=\\\"node\\\">\\n\",\n       \"<title>56</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1764.3272,-643C1764.3272,-643 1669.579,-643 1669.579,-643 1663.579,-643 1657.579,-637 1657.579,-631 1657.579,-631 1657.579,-605 1657.579,-605 1657.579,-599 1663.579,-593 1669.579,-593 1669.579,-593 1764.3272,-593 1764.3272,-593 1770.3272,-593 1776.3272,-599 1776.3272,-605 1776.3272,-605 1776.3272,-631 1776.3272,-631 1776.3272,-637 1770.3272,-643 1764.3272,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1716.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1716.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 11</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1716.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [11, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 55&#45;&gt;56 -->\\n\",\n       \"<g id=\\\"edge56\\\" class=\\\"edge\\\">\\n\",\n       \"<title>55&#45;&gt;56</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1852.1672,-685.9467C1827.6712,-673.6372 1799.8454,-659.6544 1775.8309,-647.5868\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1777.3355,-644.4259 1766.8287,-643.0631 1774.1924,-650.6806 1777.3355,-644.4259\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 57 -->\\n\",\n       \"<g id=\\\"node58\\\" class=\\\"node\\\">\\n\",\n       \"<title>57</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1993.7561,-650C1993.7561,-650 1806.1502,-650 1806.1502,-650 1800.1502,-650 1794.1502,-644 1794.1502,-638 1794.1502,-638 1794.1502,-598 1794.1502,-598 1794.1502,-592 1800.1502,-586 1806.1502,-586 1806.1502,-586 1993.7561,-586 1993.7561,-586 1999.7561,-586 2005.7561,-592 2005.7561,-598 2005.7561,-598 2005.7561,-638 2005.7561,-638 2005.7561,-644 1999.7561,-650 1993.7561,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1899.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1899.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1899.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1899.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 55&#45;&gt;57 -->\\n\",\n       \"<g id=\\\"edge57\\\" class=\\\"edge\\\">\\n\",\n       \"<title>55&#45;&gt;57</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1910.8026,-685.8089C1909.4893,-677.6014 1908.0583,-668.6574 1906.6791,-660.0374\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1910.1301,-659.4522 1905.094,-650.1308 1903.218,-660.5582 1910.1301,-659.4522\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 58 -->\\n\",\n       \"<g id=\\\"node59\\\" class=\\\"node\\\">\\n\",\n       \"<title>58</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1806.0733,-543C1806.0733,-543 1717.8329,-543 1717.8329,-543 1711.8329,-543 1705.8329,-537 1705.8329,-531 1705.8329,-531 1705.8329,-505 1705.8329,-505 1705.8329,-499 1711.8329,-493 1717.8329,-493 1717.8329,-493 1806.0733,-493 1806.0733,-493 1812.0733,-493 1818.0733,-499 1818.0733,-505 1818.0733,-505 1818.0733,-531 1818.0733,-531 1818.0733,-537 1812.0733,-543 1806.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1761.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1761.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1761.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 57&#45;&gt;58 -->\\n\",\n       \"<g id=\\\"edge58\\\" class=\\\"edge\\\">\\n\",\n       \"<title>57&#45;&gt;58</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1855.5294,-585.8089C1839.292,-574.0427 1820.9659,-560.7629 1804.8631,-549.0942\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1806.819,-546.1892 1796.6678,-543.1555 1802.7116,-551.8575 1806.819,-546.1892\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 59 -->\\n\",\n       \"<g id=\\\"node60\\\" class=\\\"node\\\">\\n\",\n       \"<title>59</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1936.0733,-543C1936.0733,-543 1847.8329,-543 1847.8329,-543 1841.8329,-543 1835.8329,-537 1835.8329,-531 1835.8329,-531 1835.8329,-505 1835.8329,-505 1835.8329,-499 1841.8329,-493 1847.8329,-493 1847.8329,-493 1936.0733,-493 1936.0733,-493 1942.0733,-493 1948.0733,-499 1948.0733,-505 1948.0733,-505 1948.0733,-531 1948.0733,-531 1948.0733,-537 1942.0733,-543 1936.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1891.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1891.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"1891.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 57&#45;&gt;59 -->\\n\",\n       \"<g id=\\\"edge59\\\" class=\\\"edge\\\">\\n\",\n       \"<title>57&#45;&gt;59</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M1897.3778,-585.8089C1896.5488,-575.446 1895.6258,-563.909 1894.7797,-553.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"1898.252,-552.8446 1893.9656,-543.1555 1891.2743,-553.4028 1898.252,-552.8446\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 62 -->\\n\",\n       \"<g id=\\\"node63\\\" class=\\\"node\\\">\\n\",\n       \"<title>62</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2152.0733,-843C2152.0733,-843 2063.8329,-843 2063.8329,-843 2057.8329,-843 2051.8329,-837 2051.8329,-831 2051.8329,-831 2051.8329,-805 2051.8329,-805 2051.8329,-799 2057.8329,-793 2063.8329,-793 2063.8329,-793 2152.0733,-793 2152.0733,-793 2158.0733,-793 2164.0733,-799 2164.0733,-805 2164.0733,-805 2164.0733,-831 2164.0733,-831 2164.0733,-837 2158.0733,-843 2152.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2107.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2107.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2107.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 61&#45;&gt;62 -->\\n\",\n       \"<g id=\\\"edge62\\\" class=\\\"edge\\\">\\n\",\n       \"<title>61&#45;&gt;62</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2122.193,-885.8089C2119.9941,-875.338 2117.5435,-863.6685 2115.3036,-853.0025\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2118.7163,-852.2227 2113.2358,-843.1555 2111.8658,-853.6614 2118.7163,-852.2227\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 63 -->\\n\",\n       \"<g id=\\\"node64\\\" class=\\\"node\\\">\\n\",\n       \"<title>63</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2282.0733,-843C2282.0733,-843 2193.8329,-843 2193.8329,-843 2187.8329,-843 2181.8329,-837 2181.8329,-831 2181.8329,-831 2181.8329,-805 2181.8329,-805 2181.8329,-799 2187.8329,-793 2193.8329,-793 2193.8329,-793 2282.0733,-793 2282.0733,-793 2288.0733,-793 2294.0733,-799 2294.0733,-805 2294.0733,-805 2294.0733,-831 2294.0733,-831 2294.0733,-837 2288.0733,-843 2282.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2237.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2237.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2237.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 61&#45;&gt;63 -->\\n\",\n       \"<g id=\\\"edge63\\\" class=\\\"edge\\\">\\n\",\n       \"<title>61&#45;&gt;63</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2164.0414,-885.8089C2176.5136,-874.3665 2190.546,-861.4928 2203.0064,-850.0612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2205.5309,-852.4949 2210.5336,-843.1555 2200.7987,-847.3368 2205.5309,-852.4949\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 65 -->\\n\",\n       \"<g id=\\\"node66\\\" class=\\\"node\\\">\\n\",\n       \"<title>65</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2264.0733,-1043C2264.0733,-1043 2175.8329,-1043 2175.8329,-1043 2169.8329,-1043 2163.8329,-1037 2163.8329,-1031 2163.8329,-1031 2163.8329,-1005 2163.8329,-1005 2163.8329,-999 2169.8329,-993 2175.8329,-993 2175.8329,-993 2264.0733,-993 2264.0733,-993 2270.0733,-993 2276.0733,-999 2276.0733,-1005 2276.0733,-1005 2276.0733,-1031 2276.0733,-1031 2276.0733,-1037 2270.0733,-1043 2264.0733,-1043\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2219.9531\\\" y=\\\"-1027.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2219.9531\\\" y=\\\"-1013.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2219.9531\\\" y=\\\"-999.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [7, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 64&#45;&gt;65 -->\\n\",\n       \"<g id=\\\"edge65\\\" class=\\\"edge\\\">\\n\",\n       \"<title>64&#45;&gt;65</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2224.0217,-1085.8089C2223.3999,-1075.446 2222.7077,-1063.909 2222.0731,-1053.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2225.5552,-1052.9279 2221.4625,-1043.1555 2218.5678,-1053.3472 2225.5552,-1052.9279\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 66 -->\\n\",\n       \"<g id=\\\"node67\\\" class=\\\"node\\\">\\n\",\n       \"<title>66</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2577.845,-1050C2577.845,-1050 2306.0613,-1050 2306.0613,-1050 2300.0613,-1050 2294.0613,-1044 2294.0613,-1038 2294.0613,-1038 2294.0613,-998 2294.0613,-998 2294.0613,-992 2300.0613,-986 2306.0613,-986 2306.0613,-986 2577.845,-986 2577.845,-986 2583.845,-986 2589.845,-992 2589.845,-998 2589.845,-998 2589.845,-1038 2589.845,-1038 2589.845,-1044 2583.845,-1050 2577.845,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2441.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting nations health &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2441.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.48</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2441.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2441.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 64&#45;&gt;66 -->\\n\",\n       \"<g id=\\\"edge66\\\" class=\\\"edge\\\">\\n\",\n       \"<title>64&#45;&gt;66</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2295.1881,-1085.9467C2316.9874,-1075.8545 2341.2162,-1064.6375 2363.6026,-1054.2734\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2365.1354,-1057.4207 2372.7396,-1050.0433 2362.1945,-1051.0685 2365.1354,-1057.4207\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 67 -->\\n\",\n       \"<g id=\\\"node68\\\" class=\\\"node\\\">\\n\",\n       \"<title>67</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2421.0733,-943C2421.0733,-943 2332.8329,-943 2332.8329,-943 2326.8329,-943 2320.8329,-937 2320.8329,-931 2320.8329,-931 2320.8329,-905 2320.8329,-905 2320.8329,-899 2326.8329,-893 2332.8329,-893 2332.8329,-893 2421.0733,-893 2421.0733,-893 2427.0733,-893 2433.0733,-899 2433.0733,-905 2433.0733,-905 2433.0733,-931 2433.0733,-931 2433.0733,-937 2427.0733,-943 2421.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2376.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2376.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2376.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 66&#45;&gt;67 -->\\n\",\n       \"<g id=\\\"edge67\\\" class=\\\"edge\\\">\\n\",\n       \"<title>66&#45;&gt;67</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2421.0289,-985.8089C2413.9422,-974.9063 2406.0108,-962.7041 2398.8505,-951.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2401.6887,-949.6325 2393.3042,-943.1555 2395.8196,-953.4475 2401.6887,-949.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 68 -->\\n\",\n       \"<g id=\\\"node69\\\" class=\\\"node\\\">\\n\",\n       \"<title>68</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2551.0733,-943C2551.0733,-943 2462.8329,-943 2462.8329,-943 2456.8329,-943 2450.8329,-937 2450.8329,-931 2450.8329,-931 2450.8329,-905 2450.8329,-905 2450.8329,-899 2456.8329,-893 2462.8329,-893 2462.8329,-893 2551.0733,-893 2551.0733,-893 2557.0733,-893 2563.0733,-899 2563.0733,-905 2563.0733,-905 2563.0733,-931 2563.0733,-931 2563.0733,-937 2557.0733,-943 2551.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2506.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2506.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2506.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 66&#45;&gt;68 -->\\n\",\n       \"<g id=\\\"edge68\\\" class=\\\"edge\\\">\\n\",\n       \"<title>66&#45;&gt;68</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2462.8773,-985.8089C2469.9641,-974.9063 2477.8955,-962.7041 2485.0558,-951.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2488.0867,-953.4475 2490.602,-943.1555 2482.2175,-949.6325 2488.0867,-953.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 70 -->\\n\",\n       \"<g id=\\\"node71\\\" class=\\\"node\\\">\\n\",\n       \"<title>70</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2926.0733,-1250C2926.0733,-1250 2837.8329,-1250 2837.8329,-1250 2831.8329,-1250 2825.8329,-1244 2825.8329,-1238 2825.8329,-1238 2825.8329,-1198 2825.8329,-1198 2825.8329,-1192 2831.8329,-1186 2837.8329,-1186 2837.8329,-1186 2926.0733,-1186 2926.0733,-1186 2932.0733,-1186 2938.0733,-1192 2938.0733,-1198 2938.0733,-1198 2938.0733,-1238 2938.0733,-1238 2938.0733,-1244 2932.0733,-1250 2926.0733,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2881.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2881.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2881.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2881.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 69&#45;&gt;70 -->\\n\",\n       \"<g id=\\\"edge70\\\" class=\\\"edge\\\">\\n\",\n       \"<title>69&#45;&gt;70</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2881.9531,-1285.8089C2881.9531,-1277.6906 2881.9531,-1268.8517 2881.9531,-1260.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2885.4532,-1260.1307 2881.9531,-1250.1308 2878.4532,-1260.1308 2885.4532,-1260.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 73 -->\\n\",\n       \"<g id=\\\"node74\\\" class=\\\"node\\\">\\n\",\n       \"<title>73</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3478.8872,-1250C3478.8872,-1250 3295.0191,-1250 3295.0191,-1250 3289.0191,-1250 3283.0191,-1244 3283.0191,-1238 3283.0191,-1238 3283.0191,-1198 3283.0191,-1198 3283.0191,-1192 3289.0191,-1186 3295.0191,-1186 3295.0191,-1186 3478.8872,-1186 3478.8872,-1186 3484.8872,-1186 3490.8872,-1192 3490.8872,-1198 3490.8872,-1198 3490.8872,-1238 3490.8872,-1238 3490.8872,-1244 3484.8872,-1250 3478.8872,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3386.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Assistance for childcare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3386.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.505</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3386.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 104</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3386.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [65, 33, 6]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 69&#45;&gt;73 -->\\n\",\n       \"<g id=\\\"edge73\\\" class=\\\"edge\\\">\\n\",\n       \"<title>69&#45;&gt;73</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2949.2743,-1304.6691C3031.916,-1288.3044 3173.3406,-1260.2995 3273.0238,-1240.5603\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3273.7099,-1243.9925 3282.8395,-1238.6166 3272.3501,-1237.1258 3273.7099,-1243.9925\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 71 -->\\n\",\n       \"<g id=\\\"node72\\\" class=\\\"node\\\">\\n\",\n       \"<title>71</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2861.0733,-1143C2861.0733,-1143 2772.8329,-1143 2772.8329,-1143 2766.8329,-1143 2760.8329,-1137 2760.8329,-1131 2760.8329,-1131 2760.8329,-1105 2760.8329,-1105 2760.8329,-1099 2766.8329,-1093 2772.8329,-1093 2772.8329,-1093 2861.0733,-1093 2861.0733,-1093 2867.0733,-1093 2873.0733,-1099 2873.0733,-1105 2873.0733,-1105 2873.0733,-1131 2873.0733,-1131 2873.0733,-1137 2867.0733,-1143 2861.0733,-1143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2816.9531\\\" y=\\\"-1127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2816.9531\\\" y=\\\"-1113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2816.9531\\\" y=\\\"-1099.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 70&#45;&gt;71 -->\\n\",\n       \"<g id=\\\"edge71\\\" class=\\\"edge\\\">\\n\",\n       \"<title>70&#45;&gt;71</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2861.0289,-1185.8089C2853.9422,-1174.9063 2846.0108,-1162.7041 2838.8505,-1151.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2841.6887,-1149.6325 2833.3042,-1143.1555 2835.8196,-1153.4475 2841.6887,-1149.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 72 -->\\n\",\n       \"<g id=\\\"node73\\\" class=\\\"node\\\">\\n\",\n       \"<title>72</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2991.0733,-1143C2991.0733,-1143 2902.8329,-1143 2902.8329,-1143 2896.8329,-1143 2890.8329,-1137 2890.8329,-1131 2890.8329,-1131 2890.8329,-1105 2890.8329,-1105 2890.8329,-1099 2896.8329,-1093 2902.8329,-1093 2902.8329,-1093 2991.0733,-1093 2991.0733,-1093 2997.0733,-1093 3003.0733,-1099 3003.0733,-1105 3003.0733,-1105 3003.0733,-1131 3003.0733,-1131 3003.0733,-1137 2997.0733,-1143 2991.0733,-1143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2946.9531\\\" y=\\\"-1127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2946.9531\\\" y=\\\"-1113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2946.9531\\\" y=\\\"-1099.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 70&#45;&gt;72 -->\\n\",\n       \"<g id=\\\"edge72\\\" class=\\\"edge\\\">\\n\",\n       \"<title>70&#45;&gt;72</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2902.8773,-1185.8089C2909.9641,-1174.9063 2917.8955,-1162.7041 2925.0558,-1151.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2928.0867,-1153.4475 2930.602,-1143.1555 2922.2175,-1149.6325 2928.0867,-1153.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 74 -->\\n\",\n       \"<g id=\\\"node75\\\" class=\\\"node\\\">\\n\",\n       \"<title>74</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3516.3828,-1150C3516.3828,-1150 3257.5234,-1150 3257.5234,-1150 3251.5234,-1150 3245.5234,-1144 3245.5234,-1138 3245.5234,-1138 3245.5234,-1098 3245.5234,-1098 3245.5234,-1092 3251.5234,-1086 3257.5234,-1086 3257.5234,-1086 3516.3828,-1086 3516.3828,-1086 3522.3828,-1086 3528.3828,-1092 3528.3828,-1098 3528.3828,-1098 3528.3828,-1138 3528.3828,-1138 3528.3828,-1144 3522.3828,-1150 3516.3828,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3386.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3386.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.475</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3386.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 92</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3386.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [59, 31, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 73&#45;&gt;74 -->\\n\",\n       \"<g id=\\\"edge74\\\" class=\\\"edge\\\">\\n\",\n       \"<title>73&#45;&gt;74</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3386.9531,-1185.8089C3386.9531,-1177.6906 3386.9531,-1168.8517 3386.9531,-1160.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3390.4532,-1160.1307 3386.9531,-1150.1308 3383.4532,-1160.1308 3390.4532,-1160.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 137 -->\\n\",\n       \"<g id=\\\"node138\\\" class=\\\"node\\\">\\n\",\n       \"<title>137</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3993.518,-1150C3993.518,-1150 3772.3883,-1150 3772.3883,-1150 3766.3883,-1150 3760.3883,-1144 3760.3883,-1138 3760.3883,-1138 3760.3883,-1098 3760.3883,-1098 3760.3883,-1092 3766.3883,-1086 3772.3883,-1086 3772.3883,-1086 3993.518,-1086 3993.518,-1086 3999.518,-1086 4005.518,-1092 4005.518,-1098 4005.518,-1098 4005.518,-1138 4005.518,-1138 4005.518,-1144 3999.518,-1150 3993.518,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3882.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3882.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.611</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3882.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 12</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3882.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 2, 4]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 73&#45;&gt;137 -->\\n\",\n       \"<g id=\\\"edge137\\\" class=\\\"edge\\\">\\n\",\n       \"<title>73&#45;&gt;137</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3490.931,-1197.0367C3566.4078,-1181.8196 3669.1207,-1161.1114 3750.4757,-1144.7092\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3751.1769,-1148.1383 3760.2879,-1142.7309 3749.7934,-1141.2764 3751.1769,-1148.1383\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 75 -->\\n\",\n       \"<g id=\\\"node76\\\" class=\\\"node\\\">\\n\",\n       \"<title>75</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3388.4727,-1050C3388.4727,-1050 3133.4336,-1050 3133.4336,-1050 3127.4336,-1050 3121.4336,-1044 3121.4336,-1038 3121.4336,-1038 3121.4336,-998 3121.4336,-998 3121.4336,-992 3127.4336,-986 3133.4336,-986 3133.4336,-986 3388.4727,-986 3388.4727,-986 3394.4727,-986 3400.4727,-992 3400.4727,-998 3400.4727,-998 3400.4727,-1038 3400.4727,-1038 3400.4727,-1044 3394.4727,-1050 3388.4727,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3260.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3260.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.456</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3260.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 85</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3260.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [57, 26, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 74&#45;&gt;75 -->\\n\",\n       \"<g id=\\\"edge75\\\" class=\\\"edge\\\">\\n\",\n       \"<title>74&#45;&gt;75</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3346.3924,-1085.8089C3334.5895,-1076.4416 3321.578,-1066.115 3309.3443,-1056.4057\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3311.4466,-1053.6059 3301.4379,-1050.1308 3307.095,-1059.0889 3311.4466,-1053.6059\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 132 -->\\n\",\n       \"<g id=\\\"node133\\\" class=\\\"node\\\">\\n\",\n       \"<title>132</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3639.6486,-1050C3639.6486,-1050 3436.2576,-1050 3436.2576,-1050 3430.2576,-1050 3424.2576,-1044 3424.2576,-1038 3424.2576,-1038 3424.2576,-998 3424.2576,-998 3424.2576,-992 3430.2576,-986 3436.2576,-986 3436.2576,-986 3639.6486,-986 3639.6486,-986 3645.6486,-986 3651.6486,-992 3651.6486,-998 3651.6486,-998 3651.6486,-1038 3651.6486,-1038 3651.6486,-1044 3645.6486,-1050 3639.6486,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3537.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3537.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.408</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3537.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3537.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 74&#45;&gt;132 -->\\n\",\n       \"<g id=\\\"edge132\\\" class=\\\"edge\\\">\\n\",\n       \"<title>74&#45;&gt;132</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3435.5616,-1085.8089C3449.9757,-1076.2632 3465.894,-1065.7213 3480.7972,-1055.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3483.0307,-1058.5704 3489.4357,-1050.1308 3479.1657,-1052.7342 3483.0307,-1058.5704\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 76 -->\\n\",\n       \"<g id=\\\"node77\\\" class=\\\"node\\\">\\n\",\n       \"<title>76</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3022.9908,-950C3022.9908,-950 2864.9154,-950 2864.9154,-950 2858.9154,-950 2852.9154,-944 2852.9154,-938 2852.9154,-938 2852.9154,-898 2852.9154,-898 2852.9154,-892 2858.9154,-886 2864.9154,-886 2864.9154,-886 3022.9908,-886 3022.9908,-886 3028.9908,-886 3034.9908,-892 3034.9908,-898 3034.9908,-898 3034.9908,-938 3034.9908,-938 3034.9908,-944 3028.9908,-950 3022.9908,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2943.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2943.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.49</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2943.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 28</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2943.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [16, 12, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 75&#45;&gt;76 -->\\n\",\n       \"<g id=\\\"edge76\\\" class=\\\"edge\\\">\\n\",\n       \"<title>75&#45;&gt;76</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3159.3443,-985.9467C3122.6883,-974.3833 3081.3515,-961.3433 3044.7639,-949.8015\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3045.6656,-946.416 3035.0759,-946.7453 3043.5596,-953.0917 3045.6656,-946.416\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 93 -->\\n\",\n       \"<g id=\\\"node94\\\" class=\\\"node\\\">\\n\",\n       \"<title>93</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3386.5967,-950C3386.5967,-950 3135.3095,-950 3135.3095,-950 3129.3095,-950 3123.3095,-944 3123.3095,-938 3123.3095,-938 3123.3095,-898 3123.3095,-898 3123.3095,-892 3129.3095,-886 3135.3095,-886 3135.3095,-886 3386.5967,-886 3386.5967,-886 3392.5967,-886 3398.5967,-892 3398.5967,-898 3398.5967,-898 3398.5967,-938 3398.5967,-938 3398.5967,-944 3392.5967,-950 3386.5967,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3260.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3260.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.421</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3260.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 57</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3260.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [41, 14, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 75&#45;&gt;93 -->\\n\",\n       \"<g id=\\\"edge93\\\" class=\\\"edge\\\">\\n\",\n       \"<title>75&#45;&gt;93</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3260.9531,-985.8089C3260.9531,-977.6906 3260.9531,-968.8517 3260.9531,-960.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3264.4532,-960.1307 3260.9531,-950.1308 3257.4532,-960.1308 3264.4532,-960.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 77 -->\\n\",\n       \"<g id=\\\"node78\\\" class=\\\"node\\\">\\n\",\n       \"<title>77</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2846.845,-850C2846.845,-850 2575.0613,-850 2575.0613,-850 2569.0613,-850 2563.0613,-844 2563.0613,-838 2563.0613,-838 2563.0613,-798 2563.0613,-798 2563.0613,-792 2569.0613,-786 2575.0613,-786 2575.0613,-786 2846.845,-786 2846.845,-786 2852.845,-786 2858.845,-792 2858.845,-798 2858.845,-798 2858.845,-838 2858.845,-838 2858.845,-844 2852.845,-850 2846.845,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2710.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting nations health &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2710.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2710.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 24</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2710.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [16, 8, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 76&#45;&gt;77 -->\\n\",\n       \"<g id=\\\"edge77\\\" class=\\\"edge\\\">\\n\",\n       \"<title>76&#45;&gt;77</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2869.2691,-885.9467C2845.5451,-875.7648 2819.1536,-864.438 2794.8266,-853.9972\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2796.1838,-850.771 2785.614,-850.0433 2793.423,-857.2036 2796.1838,-850.771\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 92 -->\\n\",\n       \"<g id=\\\"node93\\\" class=\\\"node\\\">\\n\",\n       \"<title>92</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2988.0733,-843C2988.0733,-843 2899.8329,-843 2899.8329,-843 2893.8329,-843 2887.8329,-837 2887.8329,-831 2887.8329,-831 2887.8329,-805 2887.8329,-805 2887.8329,-799 2893.8329,-793 2899.8329,-793 2899.8329,-793 2988.0733,-793 2988.0733,-793 2994.0733,-793 3000.0733,-799 3000.0733,-805 3000.0733,-805 3000.0733,-831 3000.0733,-831 3000.0733,-837 2994.0733,-843 2988.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2943.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2943.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2943.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 76&#45;&gt;92 -->\\n\",\n       \"<g id=\\\"edge92\\\" class=\\\"edge\\\">\\n\",\n       \"<title>76&#45;&gt;92</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2943.9531,-885.8089C2943.9531,-875.446 2943.9531,-863.909 2943.9531,-853.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2947.4532,-853.1555 2943.9531,-843.1555 2940.4532,-853.1556 2947.4532,-853.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 78 -->\\n\",\n       \"<g id=\\\"node79\\\" class=\\\"node\\\">\\n\",\n       \"<title>78</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2482.0488,-750C2482.0488,-750 2293.8574,-750 2293.8574,-750 2287.8574,-750 2281.8574,-744 2281.8574,-738 2281.8574,-738 2281.8574,-698 2281.8574,-698 2281.8574,-692 2287.8574,-686 2293.8574,-686 2293.8574,-686 2482.0488,-686 2482.0488,-686 2488.0488,-686 2494.0488,-692 2494.0488,-698 2494.0488,-698 2494.0488,-738 2494.0488,-738 2494.0488,-744 2488.0488,-750 2482.0488,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2387.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Assistance for childcare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2387.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.32</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2387.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 15</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2387.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [12, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 77&#45;&gt;78 -->\\n\",\n       \"<g id=\\\"edge78\\\" class=\\\"edge\\\">\\n\",\n       \"<title>77&#45;&gt;78</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2607.4211,-785.9467C2573.5192,-775.4508 2535.6879,-763.7383 2501.1126,-753.0339\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2502.0408,-749.6574 2491.453,-750.0433 2499.9705,-756.3443 2502.0408,-749.6574\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 85 -->\\n\",\n       \"<g id=\\\"node86\\\" class=\\\"node\\\">\\n\",\n       \"<title>85</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2844.1827,-750C2844.1827,-750 2577.7235,-750 2577.7235,-750 2571.7235,-750 2565.7235,-744 2565.7235,-738 2565.7235,-738 2565.7235,-698 2565.7235,-698 2565.7235,-692 2571.7235,-686 2577.7235,-686 2577.7235,-686 2844.1827,-686 2844.1827,-686 2850.1827,-686 2856.1827,-692 2856.1827,-698 2856.1827,-698 2856.1827,-738 2856.1827,-738 2856.1827,-744 2850.1827,-750 2844.1827,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2710.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting nations health &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2710.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.494</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2710.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2710.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 77&#45;&gt;85 -->\\n\",\n       \"<g id=\\\"edge85\\\" class=\\\"edge\\\">\\n\",\n       \"<title>77&#45;&gt;85</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2710.9531,-785.8089C2710.9531,-777.6906 2710.9531,-768.8517 2710.9531,-760.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2714.4532,-760.1307 2710.9531,-750.1308 2707.4532,-760.1308 2714.4532,-760.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 79 -->\\n\",\n       \"<g id=\\\"node80\\\" class=\\\"node\\\">\\n\",\n       \"<title>79</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2301.5967,-650C2301.5967,-650 2050.3095,-650 2050.3095,-650 2044.3095,-650 2038.3095,-644 2038.3095,-638 2038.3095,-638 2038.3095,-598 2038.3095,-598 2038.3095,-592 2044.3095,-586 2050.3095,-586 2050.3095,-586 2301.5967,-586 2301.5967,-586 2307.5967,-586 2313.5967,-592 2313.5967,-598 2313.5967,-598 2313.5967,-638 2313.5967,-638 2313.5967,-644 2307.5967,-650 2301.5967,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2175.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2175.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.469</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2175.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2175.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 78&#45;&gt;79 -->\\n\",\n       \"<g id=\\\"edge79\\\" class=\\\"edge\\\">\\n\",\n       \"<title>78&#45;&gt;79</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2320.0002,-685.9467C2298.6997,-675.8993 2275.0359,-664.7372 2253.1457,-654.4116\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2254.4224,-651.144 2243.8849,-650.0433 2251.4361,-657.4751 2254.4224,-651.144\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 84 -->\\n\",\n       \"<g id=\\\"node85\\\" class=\\\"node\\\">\\n\",\n       \"<title>84</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2432.0733,-643C2432.0733,-643 2343.8329,-643 2343.8329,-643 2337.8329,-643 2331.8329,-637 2331.8329,-631 2331.8329,-631 2331.8329,-605 2331.8329,-605 2331.8329,-599 2337.8329,-593 2343.8329,-593 2343.8329,-593 2432.0733,-593 2432.0733,-593 2438.0733,-593 2444.0733,-599 2444.0733,-605 2444.0733,-605 2444.0733,-631 2444.0733,-631 2444.0733,-637 2438.0733,-643 2432.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2387.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2387.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2387.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [7, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 78&#45;&gt;84 -->\\n\",\n       \"<g id=\\\"edge84\\\" class=\\\"edge\\\">\\n\",\n       \"<title>78&#45;&gt;84</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2387.9531,-685.8089C2387.9531,-675.446 2387.9531,-663.909 2387.9531,-653.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2391.4532,-653.1555 2387.9531,-643.1555 2384.4532,-653.1556 2391.4532,-653.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 80 -->\\n\",\n       \"<g id=\\\"node81\\\" class=\\\"node\\\">\\n\",\n       \"<title>80</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2165.7561,-550C2165.7561,-550 1978.1502,-550 1978.1502,-550 1972.1502,-550 1966.1502,-544 1966.1502,-538 1966.1502,-538 1966.1502,-498 1966.1502,-498 1966.1502,-492 1972.1502,-486 1978.1502,-486 1978.1502,-486 2165.7561,-486 2165.7561,-486 2171.7561,-486 2177.7561,-492 2177.7561,-498 2177.7561,-498 2177.7561,-538 2177.7561,-538 2177.7561,-544 2171.7561,-550 2165.7561,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2071.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2071.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.278</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2071.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2071.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 79&#45;&gt;80 -->\\n\",\n       \"<g id=\\\"edge80\\\" class=\\\"edge\\\">\\n\",\n       \"<title>79&#45;&gt;80</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2142.4744,-585.8089C2133.0107,-576.7092 2122.6056,-566.7043 2112.7621,-557.2394\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2115.0034,-554.539 2105.3691,-550.1308 2110.1516,-559.5848 2115.0034,-554.539\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 83 -->\\n\",\n       \"<g id=\\\"node84\\\" class=\\\"node\\\">\\n\",\n       \"<title>83</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2296.0733,-543C2296.0733,-543 2207.8329,-543 2207.8329,-543 2201.8329,-543 2195.8329,-537 2195.8329,-531 2195.8329,-531 2195.8329,-505 2195.8329,-505 2195.8329,-499 2201.8329,-493 2207.8329,-493 2207.8329,-493 2296.0733,-493 2296.0733,-493 2302.0733,-493 2308.0733,-499 2308.0733,-505 2308.0733,-505 2308.0733,-531 2308.0733,-531 2308.0733,-537 2302.0733,-543 2296.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2251.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2251.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2251.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 79&#45;&gt;83 -->\\n\",\n       \"<g id=\\\"edge83\\\" class=\\\"edge\\\">\\n\",\n       \"<title>79&#45;&gt;83</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2200.4183,-585.8089C2208.7864,-574.7983 2218.1618,-562.4623 2226.5985,-551.3614\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2229.5706,-553.235 2232.8349,-543.1555 2223.9975,-548.9994 2229.5706,-553.235\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 81 -->\\n\",\n       \"<g id=\\\"node82\\\" class=\\\"node\\\">\\n\",\n       \"<title>81</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2051.0733,-443C2051.0733,-443 1962.8329,-443 1962.8329,-443 1956.8329,-443 1950.8329,-437 1950.8329,-431 1950.8329,-431 1950.8329,-405 1950.8329,-405 1950.8329,-399 1956.8329,-393 1962.8329,-393 1962.8329,-393 2051.0733,-393 2051.0733,-393 2057.0733,-393 2063.0733,-399 2063.0733,-405 2063.0733,-405 2063.0733,-431 2063.0733,-431 2063.0733,-437 2057.0733,-443 2051.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2006.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2006.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2006.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 80&#45;&gt;81 -->\\n\",\n       \"<g id=\\\"edge81\\\" class=\\\"edge\\\">\\n\",\n       \"<title>80&#45;&gt;81</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2051.0289,-485.8089C2043.9422,-474.9063 2036.0108,-462.7041 2028.8505,-451.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2031.6887,-449.6325 2023.3042,-443.1555 2025.8196,-453.4475 2031.6887,-449.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 82 -->\\n\",\n       \"<g id=\\\"node83\\\" class=\\\"node\\\">\\n\",\n       \"<title>82</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2181.0733,-443C2181.0733,-443 2092.8329,-443 2092.8329,-443 2086.8329,-443 2080.8329,-437 2080.8329,-431 2080.8329,-431 2080.8329,-405 2080.8329,-405 2080.8329,-399 2086.8329,-393 2092.8329,-393 2092.8329,-393 2181.0733,-393 2181.0733,-393 2187.0733,-393 2193.0733,-399 2193.0733,-405 2193.0733,-405 2193.0733,-431 2193.0733,-431 2193.0733,-437 2187.0733,-443 2181.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2136.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2136.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2136.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 80&#45;&gt;82 -->\\n\",\n       \"<g id=\\\"edge82\\\" class=\\\"edge\\\">\\n\",\n       \"<title>80&#45;&gt;82</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2092.8773,-485.8089C2099.9641,-474.9063 2107.8955,-462.7041 2115.0558,-451.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2118.0867,-453.4475 2120.602,-443.1555 2112.2175,-449.6325 2118.0867,-453.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 86 -->\\n\",\n       \"<g id=\\\"node87\\\" class=\\\"node\\\">\\n\",\n       \"<title>86</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2691.3555,-650C2691.3555,-650 2474.5508,-650 2474.5508,-650 2468.5508,-650 2462.5508,-644 2462.5508,-638 2462.5508,-638 2462.5508,-598 2462.5508,-598 2462.5508,-592 2468.5508,-586 2474.5508,-586 2474.5508,-586 2691.3555,-586 2691.3555,-586 2697.3555,-586 2703.3555,-592 2703.3555,-598 2703.3555,-598 2703.3555,-638 2703.3555,-638 2703.3555,-644 2697.3555,-650 2691.3555,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2582.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2582.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.278</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2582.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2582.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 85&#45;&gt;86 -->\\n\",\n       \"<g id=\\\"edge86\\\" class=\\\"edge\\\">\\n\",\n       \"<title>85&#45;&gt;86</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2669.7486,-685.8089C2657.7584,-676.4416 2644.5403,-666.115 2632.1124,-656.4057\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2634.1155,-653.5291 2624.0805,-650.1308 2629.806,-659.0453 2634.1155,-653.5291\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 91 -->\\n\",\n       \"<g id=\\\"node92\\\" class=\\\"node\\\">\\n\",\n       \"<title>91</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2822.0733,-643C2822.0733,-643 2733.8329,-643 2733.8329,-643 2727.8329,-643 2721.8329,-637 2721.8329,-631 2721.8329,-631 2721.8329,-605 2721.8329,-605 2721.8329,-599 2727.8329,-593 2733.8329,-593 2733.8329,-593 2822.0733,-593 2822.0733,-593 2828.0733,-593 2834.0733,-599 2834.0733,-605 2834.0733,-605 2834.0733,-631 2834.0733,-631 2834.0733,-637 2828.0733,-643 2822.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2777.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2777.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2777.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 85&#45;&gt;91 -->\\n\",\n       \"<g id=\\\"edge91\\\" class=\\\"edge\\\">\\n\",\n       \"<title>85&#45;&gt;91</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2732.5211,-685.8089C2739.8259,-674.9063 2748.0014,-662.7041 2755.382,-651.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2758.4404,-653.4114 2761.0989,-643.1555 2752.625,-649.5151 2758.4404,-653.4114\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 87 -->\\n\",\n       \"<g id=\\\"node88\\\" class=\\\"node\\\">\\n\",\n       \"<title>87</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2426.0733,-543C2426.0733,-543 2337.8329,-543 2337.8329,-543 2331.8329,-543 2325.8329,-537 2325.8329,-531 2325.8329,-531 2325.8329,-505 2325.8329,-505 2325.8329,-499 2331.8329,-493 2337.8329,-493 2337.8329,-493 2426.0733,-493 2426.0733,-493 2432.0733,-493 2438.0733,-499 2438.0733,-505 2438.0733,-505 2438.0733,-531 2438.0733,-531 2438.0733,-537 2432.0733,-543 2426.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2381.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2381.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2381.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 86&#45;&gt;87 -->\\n\",\n       \"<g id=\\\"edge87\\\" class=\\\"edge\\\">\\n\",\n       \"<title>86&#45;&gt;87</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2518.5261,-585.9467C2493.7839,-573.6372 2465.6784,-559.6544 2441.4227,-547.5868\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2442.8421,-544.3838 2432.3299,-543.0631 2439.7241,-550.6511 2442.8421,-544.3838\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 88 -->\\n\",\n       \"<g id=\\\"node89\\\" class=\\\"node\\\">\\n\",\n       \"<title>88</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2714.435,-550C2714.435,-550 2467.4713,-550 2467.4713,-550 2461.4713,-550 2455.4713,-544 2455.4713,-538 2455.4713,-538 2455.4713,-498 2455.4713,-498 2455.4713,-492 2461.4713,-486 2467.4713,-486 2467.4713,-486 2714.435,-486 2714.435,-486 2720.435,-486 2726.435,-492 2726.435,-498 2726.435,-498 2726.435,-538 2726.435,-538 2726.435,-544 2720.435,-550 2714.435,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2590.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2590.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2590.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2590.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 86&#45;&gt;88 -->\\n\",\n       \"<g id=\\\"edge88\\\" class=\\\"edge\\\">\\n\",\n       \"<title>86&#45;&gt;88</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2585.5284,-585.8089C2586.1779,-577.6906 2586.885,-568.8517 2587.5676,-560.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2591.074,-560.3781 2588.3827,-550.1308 2584.0963,-559.8198 2591.074,-560.3781\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 89 -->\\n\",\n       \"<g id=\\\"node90\\\" class=\\\"node\\\">\\n\",\n       \"<title>89</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2570.0733,-443C2570.0733,-443 2481.8329,-443 2481.8329,-443 2475.8329,-443 2469.8329,-437 2469.8329,-431 2469.8329,-431 2469.8329,-405 2469.8329,-405 2469.8329,-399 2475.8329,-393 2481.8329,-393 2481.8329,-393 2570.0733,-393 2570.0733,-393 2576.0733,-393 2582.0733,-399 2582.0733,-405 2582.0733,-405 2582.0733,-431 2582.0733,-431 2582.0733,-437 2576.0733,-443 2570.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2525.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2525.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2525.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 88&#45;&gt;89 -->\\n\",\n       \"<g id=\\\"edge89\\\" class=\\\"edge\\\">\\n\",\n       \"<title>88&#45;&gt;89</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2570.0289,-485.8089C2562.9422,-474.9063 2555.0108,-462.7041 2547.8505,-451.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2550.6887,-449.6325 2542.3042,-443.1555 2544.8196,-453.4475 2550.6887,-449.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 90 -->\\n\",\n       \"<g id=\\\"node91\\\" class=\\\"node\\\">\\n\",\n       \"<title>90</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2700.0733,-443C2700.0733,-443 2611.8329,-443 2611.8329,-443 2605.8329,-443 2599.8329,-437 2599.8329,-431 2599.8329,-431 2599.8329,-405 2599.8329,-405 2599.8329,-399 2605.8329,-393 2611.8329,-393 2611.8329,-393 2700.0733,-393 2700.0733,-393 2706.0733,-393 2712.0733,-399 2712.0733,-405 2712.0733,-405 2712.0733,-431 2712.0733,-431 2712.0733,-437 2706.0733,-443 2700.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2655.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2655.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2655.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 88&#45;&gt;90 -->\\n\",\n       \"<g id=\\\"edge90\\\" class=\\\"edge\\\">\\n\",\n       \"<title>88&#45;&gt;90</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2611.8773,-485.8089C2618.9641,-474.9063 2626.8955,-462.7041 2634.0558,-451.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2637.0867,-453.4475 2639.602,-443.1555 2631.2175,-449.6325 2637.0867,-453.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 94 -->\\n\",\n       \"<g id=\\\"node95\\\" class=\\\"node\\\">\\n\",\n       \"<title>94</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3330.6418,-850C3330.6418,-850 3127.2644,-850 3127.2644,-850 3121.2644,-850 3115.2644,-844 3115.2644,-838 3115.2644,-838 3115.2644,-798 3115.2644,-798 3115.2644,-792 3121.2644,-786 3127.2644,-786 3127.2644,-786 3330.6418,-786 3330.6418,-786 3336.6418,-786 3342.6418,-792 3342.6418,-798 3342.6418,-798 3342.6418,-838 3342.6418,-838 3342.6418,-844 3336.6418,-850 3330.6418,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3228.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3228.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.571</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3228.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 21</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3228.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [11, 8, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 93&#45;&gt;94 -->\\n\",\n       \"<g id=\\\"edge94\\\" class=\\\"edge\\\">\\n\",\n       \"<title>93&#45;&gt;94</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3250.652,-885.8089C3247.997,-877.5122 3245.1012,-868.4628 3242.3152,-859.7565\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3245.6163,-858.5883 3239.235,-850.1308 3238.9493,-860.7217 3245.6163,-858.5883\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 109 -->\\n\",\n       \"<g id=\\\"node110\\\" class=\\\"node\\\">\\n\",\n       \"<title>109</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3589.3555,-850C3589.3555,-850 3372.5508,-850 3372.5508,-850 3366.5508,-850 3360.5508,-844 3360.5508,-838 3360.5508,-838 3360.5508,-798 3360.5508,-798 3360.5508,-792 3366.5508,-786 3372.5508,-786 3372.5508,-786 3589.3555,-786 3589.3555,-786 3595.3555,-786 3601.3555,-792 3601.3555,-798 3601.3555,-798 3601.3555,-838 3601.3555,-838 3601.3555,-844 3595.3555,-850 3589.3555,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3480.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3480.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.278</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3480.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 36</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3480.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [30, 6, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 93&#45;&gt;109 -->\\n\",\n       \"<g id=\\\"edge109\\\" class=\\\"edge\\\">\\n\",\n       \"<title>93&#45;&gt;109</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3331.4703,-885.9467C3353.6733,-875.8545 3378.3507,-864.6375 3401.1517,-854.2734\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3402.8025,-857.3677 3410.4579,-850.0433 3399.9059,-850.9951 3402.8025,-857.3677\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 95 -->\\n\",\n       \"<g id=\\\"node96\\\" class=\\\"node\\\">\\n\",\n       \"<title>95</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3265.5874,-750C3265.5874,-750 3160.3188,-750 3160.3188,-750 3154.3188,-750 3148.3188,-744 3148.3188,-738 3148.3188,-738 3148.3188,-698 3148.3188,-698 3148.3188,-692 3154.3188,-686 3160.3188,-686 3160.3188,-686 3265.5874,-686 3265.5874,-686 3271.5874,-686 3277.5874,-692 3277.5874,-698 3277.5874,-698 3277.5874,-738 3277.5874,-738 3277.5874,-744 3271.5874,-750 3265.5874,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3212.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3212.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.569</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3212.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 12</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3212.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 7, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 94&#45;&gt;95 -->\\n\",\n       \"<g id=\\\"edge95\\\" class=\\\"edge\\\">\\n\",\n       \"<title>94&#45;&gt;95</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3223.8026,-785.8089C3222.4893,-777.6014 3221.0583,-768.6574 3219.6791,-760.0374\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3223.1301,-759.4522 3218.094,-750.1308 3216.218,-760.5582 3223.1301,-759.4522\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 104 -->\\n\",\n       \"<g id=\\\"node105\\\" class=\\\"node\\\">\\n\",\n       \"<title>104</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3563.6524,-750C3563.6524,-750 3400.2538,-750 3400.2538,-750 3394.2538,-750 3388.2538,-744 3388.2538,-738 3388.2538,-738 3388.2538,-698 3388.2538,-698 3388.2538,-692 3394.2538,-686 3400.2538,-686 3400.2538,-686 3563.6524,-686 3563.6524,-686 3569.6524,-686 3575.6524,-692 3575.6524,-698 3575.6524,-698 3575.6524,-738 3575.6524,-738 3575.6524,-744 3569.6524,-750 3563.6524,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3481.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3481.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.198</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3481.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3481.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [8, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 94&#45;&gt;104 -->\\n\",\n       \"<g id=\\\"edge104\\\" class=\\\"edge\\\">\\n\",\n       \"<title>94&#45;&gt;104</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3310.0479,-785.9467C3336.0352,-775.6751 3364.9703,-764.2383 3391.5779,-753.7214\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3392.8702,-756.9742 3400.8836,-750.0433 3390.2971,-750.4642 3392.8702,-756.9742\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 96 -->\\n\",\n       \"<g id=\\\"node97\\\" class=\\\"node\\\">\\n\",\n       \"<title>96</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3027.6524,-650C3027.6524,-650 2864.2538,-650 2864.2538,-650 2858.2538,-650 2852.2538,-644 2852.2538,-638 2852.2538,-638 2852.2538,-598 2852.2538,-598 2852.2538,-592 2858.2538,-586 2864.2538,-586 2864.2538,-586 3027.6524,-586 3027.6524,-586 3033.6524,-586 3039.6524,-592 3039.6524,-598 3039.6524,-598 3039.6524,-638 3039.6524,-638 3039.6524,-644 3033.6524,-650 3027.6524,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2945.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2945.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2945.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2945.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 95&#45;&gt;96 -->\\n\",\n       \"<g id=\\\"edge96\\\" class=\\\"edge\\\">\\n\",\n       \"<title>95&#45;&gt;96</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3147.979,-693.6651C3115.8135,-681.6181 3076.3663,-666.8439 3040.8925,-653.5578\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3042.0781,-650.2645 3031.4857,-650.0347 3039.6229,-656.8198 3042.0781,-650.2645\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 99 -->\\n\",\n       \"<g id=\\\"node100\\\" class=\\\"node\\\">\\n\",\n       \"<title>99</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3291.9908,-650C3291.9908,-650 3133.9154,-650 3133.9154,-650 3127.9154,-650 3121.9154,-644 3121.9154,-638 3121.9154,-638 3121.9154,-598 3121.9154,-598 3121.9154,-592 3127.9154,-586 3133.9154,-586 3133.9154,-586 3291.9908,-586 3291.9908,-586 3297.9908,-586 3303.9908,-592 3303.9908,-598 3303.9908,-598 3303.9908,-638 3303.9908,-638 3303.9908,-644 3297.9908,-650 3291.9908,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3212.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3212.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3212.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3212.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 6, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 95&#45;&gt;99 -->\\n\",\n       \"<g id=\\\"edge99\\\" class=\\\"edge\\\">\\n\",\n       \"<title>95&#45;&gt;99</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3212.9531,-685.8089C3212.9531,-677.6906 3212.9531,-668.8517 3212.9531,-660.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3216.4532,-660.1307 3212.9531,-650.1308 3209.4532,-660.1308 3216.4532,-660.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 97 -->\\n\",\n       \"<g id=\\\"node98\\\" class=\\\"node\\\">\\n\",\n       \"<title>97</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2844.0733,-543C2844.0733,-543 2755.8329,-543 2755.8329,-543 2749.8329,-543 2743.8329,-537 2743.8329,-531 2743.8329,-531 2743.8329,-505 2743.8329,-505 2743.8329,-499 2749.8329,-493 2755.8329,-493 2755.8329,-493 2844.0733,-493 2844.0733,-493 2850.0733,-493 2856.0733,-499 2856.0733,-505 2856.0733,-505 2856.0733,-531 2856.0733,-531 2856.0733,-537 2850.0733,-543 2844.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2799.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2799.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2799.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 96&#45;&gt;97 -->\\n\",\n       \"<g id=\\\"edge97\\\" class=\\\"edge\\\">\\n\",\n       \"<title>96&#45;&gt;97</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2898.9542,-585.8089C2881.7754,-574.0427 2862.387,-560.7629 2845.3506,-549.0942\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2846.9084,-545.9189 2836.6802,-543.1555 2842.9527,-551.6941 2846.9084,-545.9189\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 98 -->\\n\",\n       \"<g id=\\\"node99\\\" class=\\\"node\\\">\\n\",\n       \"<title>98</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2974.0733,-543C2974.0733,-543 2885.8329,-543 2885.8329,-543 2879.8329,-543 2873.8329,-537 2873.8329,-531 2873.8329,-531 2873.8329,-505 2873.8329,-505 2873.8329,-499 2879.8329,-493 2885.8329,-493 2885.8329,-493 2974.0733,-493 2974.0733,-493 2980.0733,-493 2986.0733,-499 2986.0733,-505 2986.0733,-505 2986.0733,-531 2986.0733,-531 2986.0733,-537 2980.0733,-543 2974.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2929.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2929.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"2929.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 96&#45;&gt;98 -->\\n\",\n       \"<g id=\\\"edge98\\\" class=\\\"edge\\\">\\n\",\n       \"<title>96&#45;&gt;98</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M2940.8026,-585.8089C2939.1445,-575.446 2937.2986,-563.909 2935.6063,-553.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"2939.014,-552.477 2933.978,-543.1555 2932.102,-553.5829 2939.014,-552.477\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 100 -->\\n\",\n       \"<g id=\\\"node101\\\" class=\\\"node\\\">\\n\",\n       \"<title>100</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3266.3108,-550C3266.3108,-550 3015.5955,-550 3015.5955,-550 3009.5955,-550 3003.5955,-544 3003.5955,-538 3003.5955,-538 3003.5955,-498 3003.5955,-498 3003.5955,-492 3009.5955,-486 3015.5955,-486 3015.5955,-486 3266.3108,-486 3266.3108,-486 3272.3108,-486 3278.3108,-492 3278.3108,-498 3278.3108,-498 3278.3108,-538 3278.3108,-538 3278.3108,-544 3272.3108,-550 3266.3108,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3140.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3140.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.245</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3140.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3140.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 6, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 99&#45;&gt;100 -->\\n\",\n       \"<g id=\\\"edge100\\\" class=\\\"edge\\\">\\n\",\n       \"<title>99&#45;&gt;100</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3189.7756,-585.8089C3183.4807,-577.0661 3176.5842,-567.4876 3170.009,-558.3553\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3172.7707,-556.201 3164.0873,-550.1308 3167.09,-560.2912 3172.7707,-556.201\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 103 -->\\n\",\n       \"<g id=\\\"node104\\\" class=\\\"node\\\">\\n\",\n       \"<title>103</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3396.0733,-543C3396.0733,-543 3307.8329,-543 3307.8329,-543 3301.8329,-543 3295.8329,-537 3295.8329,-531 3295.8329,-531 3295.8329,-505 3295.8329,-505 3295.8329,-499 3301.8329,-493 3307.8329,-493 3307.8329,-493 3396.0733,-493 3396.0733,-493 3402.0733,-493 3408.0733,-499 3408.0733,-505 3408.0733,-505 3408.0733,-531 3408.0733,-531 3408.0733,-537 3402.0733,-543 3396.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3351.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3351.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3351.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 99&#45;&gt;103 -->\\n\",\n       \"<g id=\\\"edge103\\\" class=\\\"edge\\\">\\n\",\n       \"<title>99&#45;&gt;103</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3257.6987,-585.8089C3274.0538,-574.0427 3292.5127,-560.7629 3308.7323,-549.0942\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3310.9133,-551.8367 3316.9869,-543.1555 3306.8253,-546.1544 3310.9133,-551.8367\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 101 -->\\n\",\n       \"<g id=\\\"node102\\\" class=\\\"node\\\">\\n\",\n       \"<title>101</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3120.0733,-443C3120.0733,-443 3031.8329,-443 3031.8329,-443 3025.8329,-443 3019.8329,-437 3019.8329,-431 3019.8329,-431 3019.8329,-405 3019.8329,-405 3019.8329,-399 3025.8329,-393 3031.8329,-393 3031.8329,-393 3120.0733,-393 3120.0733,-393 3126.0733,-393 3132.0733,-399 3132.0733,-405 3132.0733,-405 3132.0733,-431 3132.0733,-431 3132.0733,-437 3126.0733,-443 3120.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3075.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3075.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3075.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 6, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 100&#45;&gt;101 -->\\n\",\n       \"<g id=\\\"edge101\\\" class=\\\"edge\\\">\\n\",\n       \"<title>100&#45;&gt;101</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3120.0289,-485.8089C3112.9422,-474.9063 3105.0108,-462.7041 3097.8505,-451.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3100.6887,-449.6325 3092.3042,-443.1555 3094.8196,-453.4475 3100.6887,-449.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 102 -->\\n\",\n       \"<g id=\\\"node103\\\" class=\\\"node\\\">\\n\",\n       \"<title>102</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3250.0733,-443C3250.0733,-443 3161.8329,-443 3161.8329,-443 3155.8329,-443 3149.8329,-437 3149.8329,-431 3149.8329,-431 3149.8329,-405 3149.8329,-405 3149.8329,-399 3155.8329,-393 3161.8329,-393 3161.8329,-393 3250.0733,-393 3250.0733,-393 3256.0733,-393 3262.0733,-399 3262.0733,-405 3262.0733,-405 3262.0733,-431 3262.0733,-431 3262.0733,-437 3256.0733,-443 3250.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3205.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3205.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3205.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 100&#45;&gt;102 -->\\n\",\n       \"<g id=\\\"edge102\\\" class=\\\"edge\\\">\\n\",\n       \"<title>100&#45;&gt;102</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3161.8773,-485.8089C3168.9641,-474.9063 3176.8955,-462.7041 3184.0558,-451.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3187.0867,-453.4475 3189.602,-443.1555 3181.2175,-449.6325 3187.0867,-453.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 105 -->\\n\",\n       \"<g id=\\\"node106\\\" class=\\\"node\\\">\\n\",\n       \"<title>105</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3526.0733,-650C3526.0733,-650 3437.8329,-650 3437.8329,-650 3431.8329,-650 3425.8329,-644 3425.8329,-638 3425.8329,-638 3425.8329,-598 3425.8329,-598 3425.8329,-592 3431.8329,-586 3437.8329,-586 3437.8329,-586 3526.0733,-586 3526.0733,-586 3532.0733,-586 3538.0733,-592 3538.0733,-598 3538.0733,-598 3538.0733,-638 3538.0733,-638 3538.0733,-644 3532.0733,-650 3526.0733,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3481.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3481.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3481.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3481.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 104&#45;&gt;105 -->\\n\",\n       \"<g id=\\\"edge105\\\" class=\\\"edge\\\">\\n\",\n       \"<title>104&#45;&gt;105</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3481.9531,-685.8089C3481.9531,-677.6906 3481.9531,-668.8517 3481.9531,-660.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3485.4532,-660.1307 3481.9531,-650.1308 3478.4532,-660.1308 3485.4532,-660.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 108 -->\\n\",\n       \"<g id=\\\"node109\\\" class=\\\"node\\\">\\n\",\n       \"<title>108</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3656.0733,-643C3656.0733,-643 3567.8329,-643 3567.8329,-643 3561.8329,-643 3555.8329,-637 3555.8329,-631 3555.8329,-631 3555.8329,-605 3555.8329,-605 3555.8329,-599 3561.8329,-593 3567.8329,-593 3567.8329,-593 3656.0733,-593 3656.0733,-593 3662.0733,-593 3668.0733,-599 3668.0733,-605 3668.0733,-605 3668.0733,-631 3668.0733,-631 3668.0733,-637 3662.0733,-643 3656.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3611.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3611.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3611.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [7, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 104&#45;&gt;108 -->\\n\",\n       \"<g id=\\\"edge108\\\" class=\\\"edge\\\">\\n\",\n       \"<title>104&#45;&gt;108</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3523.8015,-685.8089C3538.9573,-674.1506 3556.0448,-661.0064 3571.1127,-649.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3573.4587,-652.0269 3579.2509,-643.1555 3569.1907,-646.4785 3573.4587,-652.0269\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 106 -->\\n\",\n       \"<g id=\\\"node107\\\" class=\\\"node\\\">\\n\",\n       \"<title>106</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3526.0733,-543C3526.0733,-543 3437.8329,-543 3437.8329,-543 3431.8329,-543 3425.8329,-537 3425.8329,-531 3425.8329,-531 3425.8329,-505 3425.8329,-505 3425.8329,-499 3431.8329,-493 3437.8329,-493 3437.8329,-493 3526.0733,-493 3526.0733,-493 3532.0733,-493 3538.0733,-499 3538.0733,-505 3538.0733,-505 3538.0733,-531 3538.0733,-531 3538.0733,-537 3532.0733,-543 3526.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3481.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3481.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3481.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 105&#45;&gt;106 -->\\n\",\n       \"<g id=\\\"edge106\\\" class=\\\"edge\\\">\\n\",\n       \"<title>105&#45;&gt;106</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3481.9531,-585.8089C3481.9531,-575.446 3481.9531,-563.909 3481.9531,-553.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3485.4532,-553.1555 3481.9531,-543.1555 3478.4532,-553.1556 3485.4532,-553.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 107 -->\\n\",\n       \"<g id=\\\"node108\\\" class=\\\"node\\\">\\n\",\n       \"<title>107</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3656.0733,-543C3656.0733,-543 3567.8329,-543 3567.8329,-543 3561.8329,-543 3555.8329,-537 3555.8329,-531 3555.8329,-531 3555.8329,-505 3555.8329,-505 3555.8329,-499 3561.8329,-493 3567.8329,-493 3567.8329,-493 3656.0733,-493 3656.0733,-493 3662.0733,-493 3668.0733,-499 3668.0733,-505 3668.0733,-505 3668.0733,-531 3668.0733,-531 3668.0733,-537 3662.0733,-543 3656.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3611.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3611.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3611.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 105&#45;&gt;107 -->\\n\",\n       \"<g id=\\\"edge107\\\" class=\\\"edge\\\">\\n\",\n       \"<title>105&#45;&gt;107</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3523.8015,-585.8089C3538.9573,-574.1506 3556.0448,-561.0064 3571.1127,-549.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3573.4587,-552.0269 3579.2509,-543.1555 3569.1907,-546.4785 3573.4587,-552.0269\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 110 -->\\n\",\n       \"<g id=\\\"node111\\\" class=\\\"node\\\">\\n\",\n       \"<title>110</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3836.7903,-750C3836.7903,-750 3663.1159,-750 3663.1159,-750 3657.1159,-750 3651.1159,-744 3651.1159,-738 3651.1159,-738 3651.1159,-698 3651.1159,-698 3651.1159,-692 3657.1159,-686 3663.1159,-686 3663.1159,-686 3836.7903,-686 3836.7903,-686 3842.7903,-686 3848.7903,-692 3848.7903,-698 3848.7903,-698 3848.7903,-738 3848.7903,-738 3848.7903,-744 3842.7903,-750 3836.7903,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3749.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3749.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.346</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3749.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 27</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3749.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [21, 6, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 109&#45;&gt;110 -->\\n\",\n       \"<g id=\\\"edge110\\\" class=\\\"edge\\\">\\n\",\n       \"<title>109&#45;&gt;110</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3567.1764,-785.9467C3594.9279,-775.6302 3625.8409,-764.1384 3654.2329,-753.5837\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3655.603,-756.8085 3663.7567,-750.0433 3653.1638,-750.2472 3655.603,-756.8085\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 131 -->\\n\",\n       \"<g id=\\\"node132\\\" class=\\\"node\\\">\\n\",\n       \"<title>131</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3967.0733,-743C3967.0733,-743 3878.8329,-743 3878.8329,-743 3872.8329,-743 3866.8329,-737 3866.8329,-731 3866.8329,-731 3866.8329,-705 3866.8329,-705 3866.8329,-699 3872.8329,-693 3878.8329,-693 3878.8329,-693 3967.0733,-693 3967.0733,-693 3973.0733,-693 3979.0733,-699 3979.0733,-705 3979.0733,-705 3979.0733,-731 3979.0733,-731 3979.0733,-737 3973.0733,-743 3967.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3922.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3922.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3922.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [9, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 109&#45;&gt;131 -->\\n\",\n       \"<g id=\\\"edge131\\\" class=\\\"edge\\\">\\n\",\n       \"<title>109&#45;&gt;131</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3601.6168,-787.8781C3604.7573,-787.2295 3607.8736,-786.602 3610.9531,-786 3719.8301,-764.7171 3752.0066,-782.9011 3857.9531,-750 3860.9205,-749.0785 3863.9205,-748.0369 3866.9191,-746.9069\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3868.5018,-750.0418 3876.4498,-743.0361 3865.8677,-743.5563 3868.5018,-750.0418\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 111 -->\\n\",\n       \"<g id=\\\"node112\\\" class=\\\"node\\\">\\n\",\n       \"<title>111</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3918.6418,-650C3918.6418,-650 3715.2644,-650 3715.2644,-650 3709.2644,-650 3703.2644,-644 3703.2644,-638 3703.2644,-638 3703.2644,-598 3703.2644,-598 3703.2644,-592 3709.2644,-586 3715.2644,-586 3715.2644,-586 3918.6418,-586 3918.6418,-586 3924.6418,-586 3930.6418,-592 3930.6418,-598 3930.6418,-598 3930.6418,-638 3930.6418,-638 3930.6418,-644 3924.6418,-650 3918.6418,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3816.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3816.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.311</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3816.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 26</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3816.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [21, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 110&#45;&gt;111 -->\\n\",\n       \"<g id=\\\"edge111\\\" class=\\\"edge\\\">\\n\",\n       \"<title>110&#45;&gt;111</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3771.5211,-685.8089C3777.3191,-677.1553 3783.6655,-667.683 3789.7277,-658.635\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3792.767,-660.3866 3795.4255,-650.1308 3786.9516,-656.4903 3792.767,-660.3866\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 130 -->\\n\",\n       \"<g id=\\\"node131\\\" class=\\\"node\\\">\\n\",\n       \"<title>130</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4049.0733,-643C4049.0733,-643 3960.8329,-643 3960.8329,-643 3954.8329,-643 3948.8329,-637 3948.8329,-631 3948.8329,-631 3948.8329,-605 3948.8329,-605 3948.8329,-599 3954.8329,-593 3960.8329,-593 3960.8329,-593 4049.0733,-593 4049.0733,-593 4055.0733,-593 4061.0733,-599 4061.0733,-605 4061.0733,-605 4061.0733,-631 4061.0733,-631 4061.0733,-637 4055.0733,-643 4049.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4004.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4004.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4004.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 110&#45;&gt;130 -->\\n\",\n       \"<g id=\\\"edge130\\\" class=\\\"edge\\\">\\n\",\n       \"<title>110&#45;&gt;130</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3846.456,-685.8554C3876.6711,-675.1542 3909.95,-662.7057 3939.9531,-650 3942.0235,-649.1232 3944.1216,-648.2129 3946.2335,-647.278\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3947.8828,-650.373 3955.5384,-643.0489 3944.9864,-644.0003 3947.8828,-650.373\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 112 -->\\n\",\n       \"<g id=\\\"node113\\\" class=\\\"node\\\">\\n\",\n       \"<title>112</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3969.845,-550C3969.845,-550 3698.0613,-550 3698.0613,-550 3692.0613,-550 3686.0613,-544 3686.0613,-538 3686.0613,-538 3686.0613,-498 3686.0613,-498 3686.0613,-492 3692.0613,-486 3698.0613,-486 3698.0613,-486 3969.845,-486 3969.845,-486 3975.845,-486 3981.845,-492 3981.845,-498 3981.845,-498 3981.845,-538 3981.845,-538 3981.845,-544 3975.845,-550 3969.845,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3833.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting nations health &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3833.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.208</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3833.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 17</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3833.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [15, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 111&#45;&gt;112 -->\\n\",\n       \"<g id=\\\"edge112\\\" class=\\\"edge\\\">\\n\",\n       \"<title>111&#45;&gt;112</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3822.4256,-585.8089C3823.8209,-577.6014 3825.3414,-568.6574 3826.8068,-560.0374\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3830.2654,-560.5759 3828.4909,-550.1308 3823.3644,-559.4027 3830.2654,-560.5759\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 123 -->\\n\",\n       \"<g id=\\\"node124\\\" class=\\\"node\\\">\\n\",\n       \"<title>123</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4274.5452,-550C4274.5452,-550 4011.361,-550 4011.361,-550 4005.361,-550 3999.361,-544 3999.361,-538 3999.361,-538 3999.361,-498 3999.361,-498 3999.361,-492 4005.361,-486 4011.361,-486 4011.361,-486 4274.5452,-486 4274.5452,-486 4280.5452,-486 4286.5452,-492 4286.5452,-498 4286.5452,-498 4286.5452,-538 4286.5452,-538 4286.5452,-544 4280.5452,-550 4274.5452,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4142.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4142.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4142.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4142.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 111&#45;&gt;123 -->\\n\",\n       \"<g id=\\\"edge123\\\" class=\\\"edge\\\">\\n\",\n       \"<title>111&#45;&gt;123</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3921.4467,-585.9467C3955.6635,-575.4508 3993.8462,-563.7383 4028.7426,-553.0339\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4029.9581,-556.3221 4038.492,-550.0433 4027.9052,-549.6299 4029.9581,-556.3221\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 113 -->\\n\",\n       \"<g id=\\\"node114\\\" class=\\\"node\\\">\\n\",\n       \"<title>113</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3748.0452,-450C3748.0452,-450 3491.861,-450 3491.861,-450 3485.861,-450 3479.861,-444 3479.861,-438 3479.861,-438 3479.861,-398 3479.861,-398 3479.861,-392 3485.861,-386 3491.861,-386 3491.861,-386 3748.0452,-386 3748.0452,-386 3754.0452,-386 3760.0452,-392 3760.0452,-398 3760.0452,-398 3760.0452,-438 3760.0452,-438 3760.0452,-444 3754.0452,-450 3748.0452,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3619.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3619.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3619.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3619.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 112&#45;&gt;113 -->\\n\",\n       \"<g id=\\\"edge113\\\" class=\\\"edge\\\">\\n\",\n       \"<title>112&#45;&gt;113</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3765.3592,-485.9467C3743.8577,-475.8993 3719.9706,-464.7372 3697.874,-454.4116\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3699.0672,-451.106 3688.5258,-450.0433 3696.1037,-457.4477 3699.0672,-451.106\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 122 -->\\n\",\n       \"<g id=\\\"node123\\\" class=\\\"node\\\">\\n\",\n       \"<title>122</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3878.0733,-443C3878.0733,-443 3789.8329,-443 3789.8329,-443 3783.8329,-443 3777.8329,-437 3777.8329,-431 3777.8329,-431 3777.8329,-405 3777.8329,-405 3777.8329,-399 3783.8329,-393 3789.8329,-393 3789.8329,-393 3878.0733,-393 3878.0733,-393 3884.0733,-393 3890.0733,-399 3890.0733,-405 3890.0733,-405 3890.0733,-431 3890.0733,-431 3890.0733,-437 3884.0733,-443 3878.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3833.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3833.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3833.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [9, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 112&#45;&gt;122 -->\\n\",\n       \"<g id=\\\"edge122\\\" class=\\\"edge\\\">\\n\",\n       \"<title>112&#45;&gt;122</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3833.9531,-485.8089C3833.9531,-475.446 3833.9531,-463.909 3833.9531,-453.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3837.4532,-453.1555 3833.9531,-443.1555 3830.4532,-453.1556 3837.4532,-453.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 114 -->\\n\",\n       \"<g id=\\\"node115\\\" class=\\\"node\\\">\\n\",\n       \"<title>114</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3647.345,-350C3647.345,-350 3368.5613,-350 3368.5613,-350 3362.5613,-350 3356.5613,-344 3356.5613,-338 3356.5613,-338 3356.5613,-298 3356.5613,-298 3356.5613,-292 3362.5613,-286 3368.5613,-286 3368.5613,-286 3647.345,-286 3647.345,-286 3653.345,-286 3659.345,-292 3659.345,-298 3659.345,-298 3659.345,-338 3659.345,-338 3659.345,-344 3653.345,-350 3647.345,-350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3507.9531\\\" y=\\\"-334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3507.9531\\\" y=\\\"-320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.48</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3507.9531\\\" y=\\\"-306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3507.9531\\\" y=\\\"-292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 113&#45;&gt;114 -->\\n\",\n       \"<g id=\\\"edge114\\\" class=\\\"edge\\\">\\n\",\n       \"<title>113&#45;&gt;114</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3583.8991,-385.8089C3573.6076,-376.62 3562.2821,-366.508 3551.5897,-356.9612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3553.73,-354.1802 3543.9396,-350.1308 3549.0679,-359.4017 3553.73,-354.1802\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 121 -->\\n\",\n       \"<g id=\\\"node122\\\" class=\\\"node\\\">\\n\",\n       \"<title>121</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3777.0733,-343C3777.0733,-343 3688.8329,-343 3688.8329,-343 3682.8329,-343 3676.8329,-337 3676.8329,-331 3676.8329,-331 3676.8329,-305 3676.8329,-305 3676.8329,-299 3682.8329,-293 3688.8329,-293 3688.8329,-293 3777.0733,-293 3777.0733,-293 3783.0733,-293 3789.0733,-299 3789.0733,-305 3789.0733,-305 3789.0733,-331 3789.0733,-331 3789.0733,-337 3783.0733,-343 3777.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3732.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3732.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3732.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 113&#45;&gt;121 -->\\n\",\n       \"<g id=\\\"edge121\\\" class=\\\"edge\\\">\\n\",\n       \"<title>113&#45;&gt;121</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3656.329,-385.8089C3669.259,-374.3665 3683.8063,-361.4928 3696.7239,-350.0612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3699.3582,-352.4038 3704.5274,-343.1555 3694.7191,-347.1617 3699.3582,-352.4038\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 115 -->\\n\",\n       \"<g id=\\\"node116\\\" class=\\\"node\\\">\\n\",\n       \"<title>115</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3454.0733,-243C3454.0733,-243 3365.8329,-243 3365.8329,-243 3359.8329,-243 3353.8329,-237 3353.8329,-231 3353.8329,-231 3353.8329,-205 3353.8329,-205 3353.8329,-199 3359.8329,-193 3365.8329,-193 3365.8329,-193 3454.0733,-193 3454.0733,-193 3460.0733,-193 3466.0733,-199 3466.0733,-205 3466.0733,-205 3466.0733,-231 3466.0733,-231 3466.0733,-237 3460.0733,-243 3454.0733,-243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3409.9531\\\" y=\\\"-227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3409.9531\\\" y=\\\"-213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3409.9531\\\" y=\\\"-199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 114&#45;&gt;115 -->\\n\",\n       \"<g id=\\\"edge115\\\" class=\\\"edge\\\">\\n\",\n       \"<title>114&#45;&gt;115</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3476.4059,-285.8089C3465.2981,-274.4745 3452.8139,-261.7355 3441.6906,-250.3851\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3444.1046,-247.8479 3434.6056,-243.1555 3439.1051,-252.7475 3444.1046,-247.8479\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 116 -->\\n\",\n       \"<g id=\\\"node117\\\" class=\\\"node\\\">\\n\",\n       \"<title>116</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3717.518,-250C3717.518,-250 3496.3883,-250 3496.3883,-250 3490.3883,-250 3484.3883,-244 3484.3883,-238 3484.3883,-238 3484.3883,-198 3484.3883,-198 3484.3883,-192 3490.3883,-186 3496.3883,-186 3496.3883,-186 3717.518,-186 3717.518,-186 3723.518,-186 3729.518,-192 3729.518,-198 3729.518,-198 3729.518,-238 3729.518,-238 3729.518,-244 3723.518,-250 3717.518,-250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3606.9531\\\" y=\\\"-234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3606.9531\\\" y=\\\"-220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3606.9531\\\" y=\\\"-206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3606.9531\\\" y=\\\"-192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 114&#45;&gt;116 -->\\n\",\n       \"<g id=\\\"edge116\\\" class=\\\"edge\\\">\\n\",\n       \"<title>114&#45;&gt;116</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3539.8223,-285.8089C3548.831,-276.7092 3558.7359,-266.7043 3568.1061,-257.2394\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3570.5955,-259.6997 3575.1437,-250.1308 3565.6209,-254.7749 3570.5955,-259.6997\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 117 -->\\n\",\n       \"<g id=\\\"node118\\\" class=\\\"node\\\">\\n\",\n       \"<title>117</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3556.0733,-143C3556.0733,-143 3467.8329,-143 3467.8329,-143 3461.8329,-143 3455.8329,-137 3455.8329,-131 3455.8329,-131 3455.8329,-105 3455.8329,-105 3455.8329,-99 3461.8329,-93 3467.8329,-93 3467.8329,-93 3556.0733,-93 3556.0733,-93 3562.0733,-93 3568.0733,-99 3568.0733,-105 3568.0733,-105 3568.0733,-131 3568.0733,-131 3568.0733,-137 3562.0733,-143 3556.0733,-143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3511.9531\\\" y=\\\"-127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3511.9531\\\" y=\\\"-113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3511.9531\\\" y=\\\"-99.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 116&#45;&gt;117 -->\\n\",\n       \"<g id=\\\"edge117\\\" class=\\\"edge\\\">\\n\",\n       \"<title>116&#45;&gt;117</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3576.3716,-185.8089C3565.7064,-174.5824 3553.7323,-161.978 3543.0274,-150.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3545.2759,-147.9949 3535.8509,-143.1555 3540.2009,-152.8162 3545.2759,-147.9949\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 118 -->\\n\",\n       \"<g id=\\\"node119\\\" class=\\\"node\\\">\\n\",\n       \"<title>118</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3806.304,-150C3806.304,-150 3597.6023,-150 3597.6023,-150 3591.6023,-150 3585.6023,-144 3585.6023,-138 3585.6023,-138 3585.6023,-98 3585.6023,-98 3585.6023,-92 3591.6023,-86 3597.6023,-86 3597.6023,-86 3806.304,-86 3806.304,-86 3812.304,-86 3818.304,-92 3818.304,-98 3818.304,-98 3818.304,-138 3818.304,-138 3818.304,-144 3812.304,-150 3806.304,-150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3701.9531\\\" y=\\\"-134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3701.9531\\\" y=\\\"-120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3701.9531\\\" y=\\\"-106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3701.9531\\\" y=\\\"-92.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 116&#45;&gt;118 -->\\n\",\n       \"<g id=\\\"edge118\\\" class=\\\"edge\\\">\\n\",\n       \"<title>116&#45;&gt;118</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3637.5346,-185.8089C3646.0946,-176.7985 3655.4977,-166.9004 3664.4111,-157.518\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3667.0789,-159.7914 3671.4289,-150.1308 3662.0039,-154.9701 3667.0789,-159.7914\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 119 -->\\n\",\n       \"<g id=\\\"node120\\\" class=\\\"node\\\">\\n\",\n       \"<title>119</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3681.0733,-50C3681.0733,-50 3592.8329,-50 3592.8329,-50 3586.8329,-50 3580.8329,-44 3580.8329,-38 3580.8329,-38 3580.8329,-12 3580.8329,-12 3580.8329,-6 3586.8329,0 3592.8329,0 3592.8329,0 3681.0733,0 3681.0733,0 3687.0733,0 3693.0733,-6 3693.0733,-12 3693.0733,-12 3693.0733,-38 3693.0733,-38 3693.0733,-44 3687.0733,-50 3681.0733,-50\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3636.9531\\\" y=\\\"-34.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3636.9531\\\" y=\\\"-20.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3636.9531\\\" y=\\\"-6.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 118&#45;&gt;119 -->\\n\",\n       \"<g id=\\\"edge119\\\" class=\\\"edge\\\">\\n\",\n       \"<title>118&#45;&gt;119</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3679.5838,-85.9947C3673.3501,-77.0756 3666.5639,-67.3661 3660.2767,-58.3706\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3663.0336,-56.2054 3654.436,-50.014 3657.296,-60.2156 3663.0336,-56.2054\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 120 -->\\n\",\n       \"<g id=\\\"node121\\\" class=\\\"node\\\">\\n\",\n       \"<title>120</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3811.0733,-50C3811.0733,-50 3722.8329,-50 3722.8329,-50 3716.8329,-50 3710.8329,-44 3710.8329,-38 3710.8329,-38 3710.8329,-12 3710.8329,-12 3710.8329,-6 3716.8329,0 3722.8329,0 3722.8329,0 3811.0733,0 3811.0733,0 3817.0733,0 3823.0733,-6 3823.0733,-12 3823.0733,-12 3823.0733,-38 3823.0733,-38 3823.0733,-44 3817.0733,-50 3811.0733,-50\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3766.9531\\\" y=\\\"-34.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3766.9531\\\" y=\\\"-20.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3766.9531\\\" y=\\\"-6.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 118&#45;&gt;120 -->\\n\",\n       \"<g id=\\\"edge120\\\" class=\\\"edge\\\">\\n\",\n       \"<title>118&#45;&gt;120</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3724.3224,-85.9947C3730.5562,-77.0756 3737.3424,-67.3661 3743.6296,-58.3706\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3746.6102,-60.2156 3749.4702,-50.014 3740.8727,-56.2054 3746.6102,-60.2156\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 124 -->\\n\",\n       \"<g id=\\\"node125\\\" class=\\\"node\\\">\\n\",\n       \"<title>124</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4186.1827,-450C4186.1827,-450 3919.7235,-450 3919.7235,-450 3913.7235,-450 3907.7235,-444 3907.7235,-438 3907.7235,-438 3907.7235,-398 3907.7235,-398 3907.7235,-392 3913.7235,-386 3919.7235,-386 3919.7235,-386 4186.1827,-386 4186.1827,-386 4192.1827,-386 4198.1827,-392 4198.1827,-398 4198.1827,-398 4198.1827,-438 4198.1827,-438 4198.1827,-444 4192.1827,-450 4186.1827,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4052.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting nations health &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4052.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.245</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4052.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4052.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 123&#45;&gt;124 -->\\n\",\n       \"<g id=\\\"edge124\\\" class=\\\"edge\\\">\\n\",\n       \"<title>123&#45;&gt;124</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4113.9812,-485.8089C4105.952,-476.8877 4097.1398,-467.0963 4088.7702,-457.7968\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4091.162,-455.2223 4081.8708,-450.1308 4085.9589,-459.9051 4091.162,-455.2223\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 129 -->\\n\",\n       \"<g id=\\\"node130\\\" class=\\\"node\\\">\\n\",\n       \"<title>129</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4316.0733,-443C4316.0733,-443 4227.8329,-443 4227.8329,-443 4221.8329,-443 4215.8329,-437 4215.8329,-431 4215.8329,-431 4215.8329,-405 4215.8329,-405 4215.8329,-399 4221.8329,-393 4227.8329,-393 4227.8329,-393 4316.0733,-393 4316.0733,-393 4322.0733,-393 4328.0733,-399 4328.0733,-405 4328.0733,-405 4328.0733,-431 4328.0733,-431 4328.0733,-437 4322.0733,-443 4316.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4271.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4271.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4271.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 123&#45;&gt;129 -->\\n\",\n       \"<g id=\\\"edge129\\\" class=\\\"edge\\\">\\n\",\n       \"<title>123&#45;&gt;129</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4184.4796,-485.8089C4199.5188,-474.1506 4216.4748,-461.0064 4231.4269,-449.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4233.7434,-452.0485 4239.5025,-443.1555 4229.4547,-446.5161 4233.7434,-452.0485\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 125 -->\\n\",\n       \"<g id=\\\"node126\\\" class=\\\"node\\\">\\n\",\n       \"<title>125</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4050.0733,-343C4050.0733,-343 3961.8329,-343 3961.8329,-343 3955.8329,-343 3949.8329,-337 3949.8329,-331 3949.8329,-331 3949.8329,-305 3949.8329,-305 3949.8329,-299 3955.8329,-293 3961.8329,-293 3961.8329,-293 4050.0733,-293 4050.0733,-293 4056.0733,-293 4062.0733,-299 4062.0733,-305 4062.0733,-305 4062.0733,-331 4062.0733,-331 4062.0733,-337 4056.0733,-343 4050.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4005.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4005.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4005.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 124&#45;&gt;125 -->\\n\",\n       \"<g id=\\\"edge125\\\" class=\\\"edge\\\">\\n\",\n       \"<title>124&#45;&gt;125</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4037.8233,-385.8089C4032.8005,-375.1221 4027.1909,-363.1868 4022.0948,-352.344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4025.1975,-350.717 4017.7762,-343.1555 4018.8623,-353.6946 4025.1975,-350.717\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 126 -->\\n\",\n       \"<g id=\\\"node127\\\" class=\\\"node\\\">\\n\",\n       \"<title>126</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4365.6827,-350C4365.6827,-350 4092.2235,-350 4092.2235,-350 4086.2235,-350 4080.2235,-344 4080.2235,-338 4080.2235,-338 4080.2235,-298 4080.2235,-298 4080.2235,-292 4086.2235,-286 4092.2235,-286 4092.2235,-286 4365.6827,-286 4365.6827,-286 4371.6827,-286 4377.6827,-292 4377.6827,-298 4377.6827,-298 4377.6827,-338 4377.6827,-338 4377.6827,-344 4371.6827,-350 4365.6827,-350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4228.9531\\\" y=\\\"-334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4228.9531\\\" y=\\\"-320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4228.9531\\\" y=\\\"-306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4228.9531\\\" y=\\\"-292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 124&#45;&gt;126 -->\\n\",\n       \"<g id=\\\"edge126\\\" class=\\\"edge\\\">\\n\",\n       \"<title>124&#45;&gt;126</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4109.6094,-385.8089C4126.724,-376.0848 4145.6579,-365.3268 4163.3071,-355.2989\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4165.4375,-358.114 4172.403,-350.1308 4161.9794,-352.0278 4165.4375,-358.114\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 127 -->\\n\",\n       \"<g id=\\\"node128\\\" class=\\\"node\\\">\\n\",\n       \"<title>127</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4208.0733,-243C4208.0733,-243 4119.8329,-243 4119.8329,-243 4113.8329,-243 4107.8329,-237 4107.8329,-231 4107.8329,-231 4107.8329,-205 4107.8329,-205 4107.8329,-199 4113.8329,-193 4119.8329,-193 4119.8329,-193 4208.0733,-193 4208.0733,-193 4214.0733,-193 4220.0733,-199 4220.0733,-205 4220.0733,-205 4220.0733,-231 4220.0733,-231 4220.0733,-237 4214.0733,-243 4208.0733,-243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4163.9531\\\" y=\\\"-227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4163.9531\\\" y=\\\"-213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4163.9531\\\" y=\\\"-199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 126&#45;&gt;127 -->\\n\",\n       \"<g id=\\\"edge127\\\" class=\\\"edge\\\">\\n\",\n       \"<title>126&#45;&gt;127</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4208.0289,-285.8089C4200.9422,-274.9063 4193.0108,-262.7041 4185.8505,-251.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4188.6887,-249.6325 4180.3042,-243.1555 4182.8196,-253.4475 4188.6887,-249.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 128 -->\\n\",\n       \"<g id=\\\"node129\\\" class=\\\"node\\\">\\n\",\n       \"<title>128</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4338.0733,-243C4338.0733,-243 4249.8329,-243 4249.8329,-243 4243.8329,-243 4237.8329,-237 4237.8329,-231 4237.8329,-231 4237.8329,-205 4237.8329,-205 4237.8329,-199 4243.8329,-193 4249.8329,-193 4249.8329,-193 4338.0733,-193 4338.0733,-193 4344.0733,-193 4350.0733,-199 4350.0733,-205 4350.0733,-205 4350.0733,-231 4350.0733,-231 4350.0733,-237 4344.0733,-243 4338.0733,-243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4293.9531\\\" y=\\\"-227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4293.9531\\\" y=\\\"-213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4293.9531\\\" y=\\\"-199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 126&#45;&gt;128 -->\\n\",\n       \"<g id=\\\"edge128\\\" class=\\\"edge\\\">\\n\",\n       \"<title>126&#45;&gt;128</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4249.8773,-285.8089C4256.9641,-274.9063 4264.8955,-262.7041 4272.0558,-251.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4275.0867,-253.4475 4277.602,-243.1555 4269.2175,-249.6325 4275.0867,-253.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 133 -->\\n\",\n       \"<g id=\\\"node134\\\" class=\\\"node\\\">\\n\",\n       \"<title>133</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3624.7903,-950C3624.7903,-950 3451.1159,-950 3451.1159,-950 3445.1159,-950 3439.1159,-944 3439.1159,-938 3439.1159,-938 3439.1159,-898 3439.1159,-898 3439.1159,-892 3445.1159,-886 3451.1159,-886 3451.1159,-886 3624.7903,-886 3624.7903,-886 3630.7903,-886 3636.7903,-892 3636.7903,-898 3636.7903,-898 3636.7903,-938 3636.7903,-938 3636.7903,-944 3630.7903,-950 3624.7903,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3537.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3537.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.278</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3537.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3537.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 132&#45;&gt;133 -->\\n\",\n       \"<g id=\\\"edge133\\\" class=\\\"edge\\\">\\n\",\n       \"<title>132&#45;&gt;133</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3537.9531,-985.8089C3537.9531,-977.6906 3537.9531,-968.8517 3537.9531,-960.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3541.4532,-960.1307 3537.9531,-950.1308 3534.4532,-960.1308 3541.4532,-960.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 136 -->\\n\",\n       \"<g id=\\\"node137\\\" class=\\\"node\\\">\\n\",\n       \"<title>136</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3755.0733,-943C3755.0733,-943 3666.8329,-943 3666.8329,-943 3660.8329,-943 3654.8329,-937 3654.8329,-931 3654.8329,-931 3654.8329,-905 3654.8329,-905 3654.8329,-899 3660.8329,-893 3666.8329,-893 3666.8329,-893 3755.0733,-893 3755.0733,-893 3761.0733,-893 3767.0733,-899 3767.0733,-905 3767.0733,-905 3767.0733,-931 3767.0733,-931 3767.0733,-937 3761.0733,-943 3755.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3710.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3710.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3710.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 132&#45;&gt;136 -->\\n\",\n       \"<g id=\\\"edge136\\\" class=\\\"edge\\\">\\n\",\n       \"<title>132&#45;&gt;136</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3593.6437,-985.8089C3614.4662,-973.7728 3638.0285,-960.1529 3658.5448,-948.2938\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3660.5279,-951.1902 3667.434,-943.1555 3657.0248,-945.1298 3660.5279,-951.1902\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 134 -->\\n\",\n       \"<g id=\\\"node135\\\" class=\\\"node\\\">\\n\",\n       \"<title>134</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3720.0733,-843C3720.0733,-843 3631.8329,-843 3631.8329,-843 3625.8329,-843 3619.8329,-837 3619.8329,-831 3619.8329,-831 3619.8329,-805 3619.8329,-805 3619.8329,-799 3625.8329,-793 3631.8329,-793 3631.8329,-793 3720.0733,-793 3720.0733,-793 3726.0733,-793 3732.0733,-799 3732.0733,-805 3732.0733,-805 3732.0733,-831 3732.0733,-831 3732.0733,-837 3726.0733,-843 3720.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3675.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3675.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3675.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 133&#45;&gt;134 -->\\n\",\n       \"<g id=\\\"edge134\\\" class=\\\"edge\\\">\\n\",\n       \"<title>133&#45;&gt;134</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3582.3768,-885.8089C3598.6142,-874.0427 3616.9403,-860.7629 3633.0432,-849.0942\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3635.1947,-851.8575 3641.2385,-843.1555 3631.0872,-846.1892 3635.1947,-851.8575\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 135 -->\\n\",\n       \"<g id=\\\"node136\\\" class=\\\"node\\\">\\n\",\n       \"<title>135</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3850.0733,-843C3850.0733,-843 3761.8329,-843 3761.8329,-843 3755.8329,-843 3749.8329,-837 3749.8329,-831 3749.8329,-831 3749.8329,-805 3749.8329,-805 3749.8329,-799 3755.8329,-793 3761.8329,-793 3761.8329,-793 3850.0733,-793 3850.0733,-793 3856.0733,-793 3862.0733,-799 3862.0733,-805 3862.0733,-805 3862.0733,-831 3862.0733,-831 3862.0733,-837 3856.0733,-843 3850.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3805.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3805.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3805.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 133&#45;&gt;135 -->\\n\",\n       \"<g id=\\\"edge135\\\" class=\\\"edge\\\">\\n\",\n       \"<title>133&#45;&gt;135</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3636.763,-887.8507C3670.2011,-876.8712 3707.5265,-863.7539 3740.9531,-850 3743.0323,-849.1445 3745.1381,-848.2524 3747.2565,-847.3331\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3748.8871,-850.4379 3756.5833,-843.1564 3746.0262,-844.0492 3748.8871,-850.4379\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 138 -->\\n\",\n       \"<g id=\\\"node139\\\" class=\\\"node\\\">\\n\",\n       \"<title>138</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3984.6486,-1050C3984.6486,-1050 3781.2576,-1050 3781.2576,-1050 3775.2576,-1050 3769.2576,-1044 3769.2576,-1038 3769.2576,-1038 3769.2576,-998 3769.2576,-998 3769.2576,-992 3775.2576,-986 3781.2576,-986 3781.2576,-986 3984.6486,-986 3984.6486,-986 3990.6486,-986 3996.6486,-992 3996.6486,-998 3996.6486,-998 3996.6486,-1038 3996.6486,-1038 3996.6486,-1044 3990.6486,-1050 3984.6486,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3882.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3882.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3882.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3882.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 137&#45;&gt;138 -->\\n\",\n       \"<g id=\\\"edge138\\\" class=\\\"edge\\\">\\n\",\n       \"<title>137&#45;&gt;138</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3882.9531,-1085.8089C3882.9531,-1077.6906 3882.9531,-1068.8517 3882.9531,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3886.4532,-1060.1307 3882.9531,-1050.1308 3879.4532,-1060.1308 3886.4532,-1060.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 141 -->\\n\",\n       \"<g id=\\\"node142\\\" class=\\\"node\\\">\\n\",\n       \"<title>141</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4319.3108,-1050C4319.3108,-1050 4068.5955,-1050 4068.5955,-1050 4062.5955,-1050 4056.5955,-1044 4056.5955,-1038 4056.5955,-1038 4056.5955,-998 4056.5955,-998 4056.5955,-992 4062.5955,-986 4068.5955,-986 4068.5955,-986 4319.3108,-986 4319.3108,-986 4325.3108,-986 4331.3108,-992 4331.3108,-998 4331.3108,-998 4331.3108,-1038 4331.3108,-1038 4331.3108,-1044 4325.3108,-1050 4319.3108,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4193.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4193.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.494</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4193.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4193.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 1, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 137&#45;&gt;141 -->\\n\",\n       \"<g id=\\\"edge141\\\" class=\\\"edge\\\">\\n\",\n       \"<title>137&#45;&gt;141</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3982.6387,-1085.9467C4015.1417,-1075.4956 4051.3957,-1063.8384 4084.5707,-1053.1712\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4085.8499,-1056.4364 4094.2985,-1050.0433 4083.7071,-1049.7725 4085.8499,-1056.4364\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 139 -->\\n\",\n       \"<g id=\\\"node140\\\" class=\\\"node\\\">\\n\",\n       \"<title>139</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3885.0733,-943C3885.0733,-943 3796.8329,-943 3796.8329,-943 3790.8329,-943 3784.8329,-937 3784.8329,-931 3784.8329,-931 3784.8329,-905 3784.8329,-905 3784.8329,-899 3790.8329,-893 3796.8329,-893 3796.8329,-893 3885.0733,-893 3885.0733,-893 3891.0733,-893 3897.0733,-899 3897.0733,-905 3897.0733,-905 3897.0733,-931 3897.0733,-931 3897.0733,-937 3891.0733,-943 3885.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3840.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3840.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3840.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 138&#45;&gt;139 -->\\n\",\n       \"<g id=\\\"edge139\\\" class=\\\"edge\\\">\\n\",\n       \"<title>138&#45;&gt;139</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3869.4329,-985.8089C3864.9898,-975.2301 3860.0328,-963.4278 3855.5157,-952.6729\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3858.6178,-951.02 3851.5185,-943.1555 3852.1639,-953.7307 3858.6178,-951.02\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 140 -->\\n\",\n       \"<g id=\\\"node141\\\" class=\\\"node\\\">\\n\",\n       \"<title>140</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4015.0733,-943C4015.0733,-943 3926.8329,-943 3926.8329,-943 3920.8329,-943 3914.8329,-937 3914.8329,-931 3914.8329,-931 3914.8329,-905 3914.8329,-905 3914.8329,-899 3920.8329,-893 3926.8329,-893 3926.8329,-893 4015.0733,-893 4015.0733,-893 4021.0733,-893 4027.0733,-899 4027.0733,-905 4027.0733,-905 4027.0733,-931 4027.0733,-931 4027.0733,-937 4021.0733,-943 4015.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3970.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3970.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3970.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 138&#45;&gt;140 -->\\n\",\n       \"<g id=\\\"edge140\\\" class=\\\"edge\\\">\\n\",\n       \"<title>138&#45;&gt;140</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M3911.2813,-985.8089C3921.1606,-974.5824 3932.2524,-961.978 3942.1685,-950.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"3944.8374,-952.9749 3948.8162,-943.1555 3939.5824,-948.3505 3944.8374,-952.9749\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 142 -->\\n\",\n       \"<g id=\\\"node143\\\" class=\\\"node\\\">\\n\",\n       \"<title>142</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4330.6827,-950C4330.6827,-950 4057.2235,-950 4057.2235,-950 4051.2235,-950 4045.2235,-944 4045.2235,-938 4045.2235,-938 4045.2235,-898 4045.2235,-898 4045.2235,-892 4051.2235,-886 4057.2235,-886 4057.2235,-886 4330.6827,-886 4330.6827,-886 4336.6827,-886 4342.6827,-892 4342.6827,-898 4342.6827,-898 4342.6827,-938 4342.6827,-938 4342.6827,-944 4336.6827,-950 4330.6827,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4193.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4193.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4193.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4193.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 0, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 141&#45;&gt;142 -->\\n\",\n       \"<g id=\\\"edge142\\\" class=\\\"edge\\\">\\n\",\n       \"<title>141&#45;&gt;142</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4193.9531,-985.8089C4193.9531,-977.6906 4193.9531,-968.8517 4193.9531,-960.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4197.4532,-960.1307 4193.9531,-950.1308 4190.4532,-960.1308 4197.4532,-960.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 147 -->\\n\",\n       \"<g id=\\\"node148\\\" class=\\\"node\\\">\\n\",\n       \"<title>147</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4461.0733,-943C4461.0733,-943 4372.8329,-943 4372.8329,-943 4366.8329,-943 4360.8329,-937 4360.8329,-931 4360.8329,-931 4360.8329,-905 4360.8329,-905 4360.8329,-899 4366.8329,-893 4372.8329,-893 4372.8329,-893 4461.0733,-893 4461.0733,-893 4467.0733,-893 4473.0733,-899 4473.0733,-905 4473.0733,-905 4473.0733,-931 4473.0733,-931 4473.0733,-937 4467.0733,-943 4461.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4416.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4416.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4416.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 141&#45;&gt;147 -->\\n\",\n       \"<g id=\\\"edge147\\\" class=\\\"edge\\\">\\n\",\n       \"<title>141&#45;&gt;147</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4270.6472,-985.924C4296.5913,-974.8266 4325.6465,-962.1268 4351.9531,-950 4353.7522,-949.1707 4355.576,-948.3222 4357.4146,-947.4602\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4359.1505,-950.5106 4366.6853,-943.0623 4356.1503,-944.1862 4359.1505,-950.5106\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 143 -->\\n\",\n       \"<g id=\\\"node144\\\" class=\\\"node\\\">\\n\",\n       \"<title>143</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4031.0733,-843C4031.0733,-843 3942.8329,-843 3942.8329,-843 3936.8329,-843 3930.8329,-837 3930.8329,-831 3930.8329,-831 3930.8329,-805 3930.8329,-805 3930.8329,-799 3936.8329,-793 3942.8329,-793 3942.8329,-793 4031.0733,-793 4031.0733,-793 4037.0733,-793 4043.0733,-799 4043.0733,-805 4043.0733,-805 4043.0733,-831 4043.0733,-831 4043.0733,-837 4037.0733,-843 4031.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3986.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3986.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"3986.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 142&#45;&gt;143 -->\\n\",\n       \"<g id=\\\"edge143\\\" class=\\\"edge\\\">\\n\",\n       \"<title>142&#45;&gt;143</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4126.7036,-885.98C4103.0469,-874.6674 4076.2955,-861.82 4051.9531,-850 4050.2135,-849.1553 4048.4483,-848.2966 4046.667,-847.4287\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4048.1907,-844.2777 4037.6691,-843.034 4045.1186,-850.5676 4048.1907,-844.2777\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 144 -->\\n\",\n       \"<g id=\\\"node145\\\" class=\\\"node\\\">\\n\",\n       \"<title>144</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4339.1827,-850C4339.1827,-850 4072.7235,-850 4072.7235,-850 4066.7235,-850 4060.7235,-844 4060.7235,-838 4060.7235,-838 4060.7235,-798 4060.7235,-798 4060.7235,-792 4066.7235,-786 4072.7235,-786 4072.7235,-786 4339.1827,-786 4339.1827,-786 4345.1827,-786 4351.1827,-792 4351.1827,-798 4351.1827,-798 4351.1827,-838 4351.1827,-838 4351.1827,-844 4345.1827,-850 4339.1827,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4205.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting nations health &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4205.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4205.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4205.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 142&#45;&gt;144 -->\\n\",\n       \"<g id=\\\"edge144\\\" class=\\\"edge\\\">\\n\",\n       \"<title>142&#45;&gt;144</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4197.8161,-885.8089C4198.7903,-877.6906 4199.8509,-868.8517 4200.8749,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4204.381,-860.4766 4202.0974,-850.1308 4197.4308,-859.6425 4204.381,-860.4766\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 145 -->\\n\",\n       \"<g id=\\\"node146\\\" class=\\\"node\\\">\\n\",\n       \"<title>145</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4126.0733,-743C4126.0733,-743 4037.8329,-743 4037.8329,-743 4031.8329,-743 4025.8329,-737 4025.8329,-731 4025.8329,-731 4025.8329,-705 4025.8329,-705 4025.8329,-699 4031.8329,-693 4037.8329,-693 4037.8329,-693 4126.0733,-693 4126.0733,-693 4132.0733,-693 4138.0733,-699 4138.0733,-705 4138.0733,-705 4138.0733,-731 4138.0733,-731 4138.0733,-737 4132.0733,-743 4126.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4081.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4081.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4081.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 144&#45;&gt;145 -->\\n\",\n       \"<g id=\\\"edge145\\\" class=\\\"edge\\\">\\n\",\n       \"<title>144&#45;&gt;145</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4166.0362,-785.8089C4151.7138,-774.2586 4135.5828,-761.2497 4121.3083,-749.7381\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4123.1273,-746.7086 4113.146,-743.1555 4118.733,-752.1576 4123.1273,-746.7086\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 146 -->\\n\",\n       \"<g id=\\\"node147\\\" class=\\\"node\\\">\\n\",\n       \"<title>146</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4256.0733,-743C4256.0733,-743 4167.8329,-743 4167.8329,-743 4161.8329,-743 4155.8329,-737 4155.8329,-731 4155.8329,-731 4155.8329,-705 4155.8329,-705 4155.8329,-699 4161.8329,-693 4167.8329,-693 4167.8329,-693 4256.0733,-693 4256.0733,-693 4262.0733,-693 4268.0733,-699 4268.0733,-705 4268.0733,-705 4268.0733,-731 4268.0733,-731 4268.0733,-737 4262.0733,-743 4256.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4211.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4211.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4211.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 144&#45;&gt;146 -->\\n\",\n       \"<g id=\\\"edge146\\\" class=\\\"edge\\\">\\n\",\n       \"<title>144&#45;&gt;146</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4207.8846,-785.8089C4208.5064,-775.446 4209.1986,-763.909 4209.8332,-753.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4213.3385,-753.3472 4210.4438,-743.1555 4206.3511,-752.9279 4213.3385,-753.3472\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 149 -->\\n\",\n       \"<g id=\\\"node150\\\" class=\\\"node\\\">\\n\",\n       \"<title>149</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8253.7561,-1450C8253.7561,-1450 8066.1502,-1450 8066.1502,-1450 8060.1502,-1450 8054.1502,-1444 8054.1502,-1438 8054.1502,-1438 8054.1502,-1398 8054.1502,-1398 8054.1502,-1392 8060.1502,-1386 8066.1502,-1386 8066.1502,-1386 8253.7561,-1386 8253.7561,-1386 8259.7561,-1386 8265.7561,-1392 8265.7561,-1398 8265.7561,-1398 8265.7561,-1438 8265.7561,-1438 8265.7561,-1444 8259.7561,-1450 8253.7561,-1450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8159.9531\\\" y=\\\"-1434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8159.9531\\\" y=\\\"-1420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.506</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8159.9531\\\" y=\\\"-1406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 274</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8159.9531\\\" y=\\\"-1392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [163, 102, 9]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 148&#45;&gt;149 -->\\n\",\n       \"<g id=\\\"edge149\\\" class=\\\"edge\\\">\\n\",\n       \"<title>148&#45;&gt;149</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8159.9531,-1485.8089C8159.9531,-1477.6906 8159.9531,-1468.8517 8159.9531,-1460.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8163.4532,-1460.1307 8159.9531,-1450.1308 8156.4532,-1460.1308 8163.4532,-1460.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 350 -->\\n\",\n       \"<g id=\\\"node351\\\" class=\\\"node\\\">\\n\",\n       \"<title>350</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11911.0488,-1450C11911.0488,-1450 11722.8574,-1450 11722.8574,-1450 11716.8574,-1450 11710.8574,-1444 11710.8574,-1438 11710.8574,-1438 11710.8574,-1398 11710.8574,-1398 11710.8574,-1392 11716.8574,-1386 11722.8574,-1386 11722.8574,-1386 11911.0488,-1386 11911.0488,-1386 11917.0488,-1386 11923.0488,-1392 11923.0488,-1398 11923.0488,-1398 11923.0488,-1438 11923.0488,-1438 11923.0488,-1444 11917.0488,-1450 11911.0488,-1450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11816.9531\\\" y=\\\"-1434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Assistance for childcare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11816.9531\\\" y=\\\"-1420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.574</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11816.9531\\\" y=\\\"-1406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 154</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11816.9531\\\" y=\\\"-1392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [59, 80, 15]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 148&#45;&gt;350 -->\\n\",\n       \"<g id=\\\"edge350\\\" class=\\\"edge\\\">\\n\",\n       \"<title>148&#45;&gt;350</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8307.8412,-1513.956C8908.8279,-1497.5222 11161.6923,-1435.918 11700.6079,-1421.1814\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11700.8248,-1424.6769 11710.7253,-1420.9048 11700.6334,-1417.6795 11700.8248,-1424.6769\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 150 -->\\n\",\n       \"<g id=\\\"node151\\\" class=\\\"node\\\">\\n\",\n       \"<title>150</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7024.9325,-1350C7024.9325,-1350 6912.9738,-1350 6912.9738,-1350 6906.9738,-1350 6900.9738,-1344 6900.9738,-1338 6900.9738,-1338 6900.9738,-1298 6900.9738,-1298 6900.9738,-1292 6906.9738,-1286 6912.9738,-1286 6912.9738,-1286 7024.9325,-1286 7024.9325,-1286 7030.9325,-1286 7036.9325,-1292 7036.9325,-1298 7036.9325,-1298 7036.9325,-1338 7036.9325,-1338 7036.9325,-1344 7030.9325,-1350 7024.9325,-1350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6968.9531\\\" y=\\\"-1334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6968.9531\\\" y=\\\"-1320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.476</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6968.9531\\\" y=\\\"-1306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 191</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6968.9531\\\" y=\\\"-1292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [123, 63, 5]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 149&#45;&gt;150 -->\\n\",\n       \"<g id=\\\"edge150\\\" class=\\\"edge\\\">\\n\",\n       \"<title>149&#45;&gt;150</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8054.2598,-1409.1257C7818.5629,-1389.3358 7254.4057,-1341.9675 7047.0962,-1324.5611\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7047.1631,-1321.0545 7036.9053,-1323.7055 7046.5774,-1328.03 7047.1631,-1321.0545\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 285 -->\\n\",\n       \"<g id=\\\"node286\\\" class=\\\"node\\\">\\n\",\n       \"<title>285</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9254.7903,-1350C9254.7903,-1350 9081.1159,-1350 9081.1159,-1350 9075.1159,-1350 9069.1159,-1344 9069.1159,-1338 9069.1159,-1338 9069.1159,-1298 9069.1159,-1298 9069.1159,-1292 9075.1159,-1286 9081.1159,-1286 9081.1159,-1286 9254.7903,-1286 9254.7903,-1286 9260.7903,-1286 9266.7903,-1292 9266.7903,-1298 9266.7903,-1298 9266.7903,-1338 9266.7903,-1338 9266.7903,-1344 9260.7903,-1350 9254.7903,-1350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9167.9531\\\" y=\\\"-1334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9167.9531\\\" y=\\\"-1320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.545</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9167.9531\\\" y=\\\"-1306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 83</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9167.9531\\\" y=\\\"-1292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [40, 39, 4]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 149&#45;&gt;285 -->\\n\",\n       \"<g id=\\\"edge285\\\" class=\\\"edge\\\">\\n\",\n       \"<title>149&#45;&gt;285</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8265.9216,-1407.4873C8458.5677,-1388.3755 8864.2287,-1348.1314 9059.0298,-1328.8059\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9059.3918,-1332.2872 9068.9974,-1327.817 9058.7007,-1325.3214 9059.3918,-1332.2872\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 151 -->\\n\",\n       \"<g id=\\\"node152\\\" class=\\\"node\\\">\\n\",\n       \"<title>151</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6588.435,-1250C6588.435,-1250 6341.4713,-1250 6341.4713,-1250 6335.4713,-1250 6329.4713,-1244 6329.4713,-1238 6329.4713,-1238 6329.4713,-1198 6329.4713,-1198 6329.4713,-1192 6335.4713,-1186 6341.4713,-1186 6341.4713,-1186 6588.435,-1186 6588.435,-1186 6594.435,-1186 6600.435,-1192 6600.435,-1198 6600.435,-1198 6600.435,-1238 6600.435,-1238 6600.435,-1244 6594.435,-1250 6588.435,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6464.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6464.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.506</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6464.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 94</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6464.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [54, 38, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 150&#45;&gt;151 -->\\n\",\n       \"<g id=\\\"edge151\\\" class=\\\"edge\\\">\\n\",\n       \"<title>150&#45;&gt;151</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6900.9814,-1304.5136C6826.8918,-1289.8132 6706.1376,-1265.8541 6610.4713,-1246.8726\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6610.902,-1243.39 6600.412,-1244.8768 6609.5396,-1250.2561 6610.902,-1243.39\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 216 -->\\n\",\n       \"<g id=\\\"node217\\\" class=\\\"node\\\">\\n\",\n       \"<title>216</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7050.6524,-1250C7050.6524,-1250 6887.2538,-1250 6887.2538,-1250 6881.2538,-1250 6875.2538,-1244 6875.2538,-1238 6875.2538,-1238 6875.2538,-1198 6875.2538,-1198 6875.2538,-1192 6881.2538,-1186 6887.2538,-1186 6887.2538,-1186 7050.6524,-1186 7050.6524,-1186 7056.6524,-1186 7062.6524,-1192 7062.6524,-1198 7062.6524,-1198 7062.6524,-1238 7062.6524,-1238 7062.6524,-1244 7056.6524,-1250 7050.6524,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6968.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6968.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.427</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6968.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 97</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6968.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [69, 25, 3]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 150&#45;&gt;216 -->\\n\",\n       \"<g id=\\\"edge216\\\" class=\\\"edge\\\">\\n\",\n       \"<title>150&#45;&gt;216</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6968.9531,-1285.8089C6968.9531,-1277.6906 6968.9531,-1268.8517 6968.9531,-1260.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6972.4532,-1260.1307 6968.9531,-1250.1308 6965.4532,-1260.1308 6972.4532,-1260.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 152 -->\\n\",\n       \"<g id=\\\"node153\\\" class=\\\"node\\\">\\n\",\n       \"<title>152</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5790.6524,-1150C5790.6524,-1150 5627.2538,-1150 5627.2538,-1150 5621.2538,-1150 5615.2538,-1144 5615.2538,-1138 5615.2538,-1138 5615.2538,-1098 5615.2538,-1098 5615.2538,-1092 5621.2538,-1086 5627.2538,-1086 5627.2538,-1086 5790.6524,-1086 5790.6524,-1086 5796.6524,-1086 5802.6524,-1092 5802.6524,-1098 5802.6524,-1098 5802.6524,-1138 5802.6524,-1138 5802.6524,-1144 5796.6524,-1150 5790.6524,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5708.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5708.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.497</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5708.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 90</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5708.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [54, 34, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 151&#45;&gt;152 -->\\n\",\n       \"<g id=\\\"edge152\\\" class=\\\"edge\\\">\\n\",\n       \"<title>151&#45;&gt;152</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6329.3592,-1200.0643C6181.2064,-1180.4674 5947.1235,-1149.504 5812.8507,-1131.7431\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5812.9356,-1128.2239 5802.563,-1130.3823 5812.0176,-1135.1634 5812.9356,-1128.2239\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 215 -->\\n\",\n       \"<g id=\\\"node216\\\" class=\\\"node\\\">\\n\",\n       \"<title>215</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6509.0733,-1143C6509.0733,-1143 6420.8329,-1143 6420.8329,-1143 6414.8329,-1143 6408.8329,-1137 6408.8329,-1131 6408.8329,-1131 6408.8329,-1105 6408.8329,-1105 6408.8329,-1099 6414.8329,-1093 6420.8329,-1093 6420.8329,-1093 6509.0733,-1093 6509.0733,-1093 6515.0733,-1093 6521.0733,-1099 6521.0733,-1105 6521.0733,-1105 6521.0733,-1131 6521.0733,-1131 6521.0733,-1137 6515.0733,-1143 6509.0733,-1143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6464.9531\\\" y=\\\"-1127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6464.9531\\\" y=\\\"-1113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6464.9531\\\" y=\\\"-1099.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 151&#45;&gt;215 -->\\n\",\n       \"<g id=\\\"edge215\\\" class=\\\"edge\\\">\\n\",\n       \"<title>151&#45;&gt;215</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6464.9531,-1185.8089C6464.9531,-1175.446 6464.9531,-1163.909 6464.9531,-1153.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6468.4532,-1153.1555 6464.9531,-1143.1555 6461.4532,-1153.1556 6468.4532,-1153.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 153 -->\\n\",\n       \"<g id=\\\"node154\\\" class=\\\"node\\\">\\n\",\n       \"<title>153</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5219.5452,-1050C5219.5452,-1050 4956.361,-1050 4956.361,-1050 4950.361,-1050 4944.361,-1044 4944.361,-1038 4944.361,-1038 4944.361,-998 4944.361,-998 4944.361,-992 4950.361,-986 4956.361,-986 4956.361,-986 5219.5452,-986 5219.5452,-986 5225.5452,-986 5231.5452,-992 5231.5452,-998 5231.5452,-998 5231.5452,-1038 5231.5452,-1038 5231.5452,-1044 5225.5452,-1050 5219.5452,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5087.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5087.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.411</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5087.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 40</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5087.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [29, 10, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 152&#45;&gt;153 -->\\n\",\n       \"<g id=\\\"edge153\\\" class=\\\"edge\\\">\\n\",\n       \"<title>152&#45;&gt;153</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5615.3108,-1102.9207C5516.4576,-1087.0023 5359.032,-1061.652 5241.882,-1042.7873\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5242.1731,-1039.2891 5231.7439,-1041.1547 5241.0602,-1046.2001 5242.1731,-1039.2891\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 182 -->\\n\",\n       \"<g id=\\\"node183\\\" class=\\\"node\\\">\\n\",\n       \"<title>182</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5810.6418,-1050C5810.6418,-1050 5607.2644,-1050 5607.2644,-1050 5601.2644,-1050 5595.2644,-1044 5595.2644,-1038 5595.2644,-1038 5595.2644,-998 5595.2644,-998 5595.2644,-992 5601.2644,-986 5607.2644,-986 5607.2644,-986 5810.6418,-986 5810.6418,-986 5816.6418,-986 5822.6418,-992 5822.6418,-998 5822.6418,-998 5822.6418,-1038 5822.6418,-1038 5822.6418,-1044 5816.6418,-1050 5810.6418,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5708.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5708.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.519</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5708.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 50</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5708.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [25, 24, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 152&#45;&gt;182 -->\\n\",\n       \"<g id=\\\"edge182\\\" class=\\\"edge\\\">\\n\",\n       \"<title>152&#45;&gt;182</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5708.9531,-1085.8089C5708.9531,-1077.6906 5708.9531,-1068.8517 5708.9531,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5712.4532,-1060.1307 5708.9531,-1050.1308 5705.4532,-1060.1308 5712.4532,-1060.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 154 -->\\n\",\n       \"<g id=\\\"node155\\\" class=\\\"node\\\">\\n\",\n       \"<title>154</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4849.8594,-950C4849.8594,-950 4754.0468,-950 4754.0468,-950 4748.0468,-950 4742.0468,-944 4742.0468,-938 4742.0468,-938 4742.0468,-898 4742.0468,-898 4742.0468,-892 4748.0468,-886 4754.0468,-886 4754.0468,-886 4849.8594,-886 4849.8594,-886 4855.8594,-886 4861.8594,-892 4861.8594,-898 4861.8594,-898 4861.8594,-938 4861.8594,-938 4861.8594,-944 4855.8594,-950 4849.8594,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4801.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4801.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.331</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4801.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 30</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4801.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [24, 5, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 153&#45;&gt;154 -->\\n\",\n       \"<g id=\\\"edge154\\\" class=\\\"edge\\\">\\n\",\n       \"<title>153&#45;&gt;154</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4996.2808,-985.9467C4955.9352,-971.8399 4909.3046,-955.5355 4871.836,-942.4346\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4872.6166,-938.9998 4862.0218,-939.003 4870.3062,-945.6075 4872.6166,-938.9998\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 175 -->\\n\",\n       \"<g id=\\\"node176\\\" class=\\\"node\\\">\\n\",\n       \"<title>175</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5218.7071,-950C5218.7071,-950 4957.1991,-950 4957.1991,-950 4951.1991,-950 4945.1991,-944 4945.1991,-938 4945.1991,-938 4945.1991,-898 4945.1991,-898 4945.1991,-892 4951.1991,-886 4957.1991,-886 4957.1991,-886 5218.7071,-886 5218.7071,-886 5224.7071,-886 5230.7071,-892 5230.7071,-898 5230.7071,-898 5230.7071,-938 5230.7071,-938 5230.7071,-944 5224.7071,-950 5218.7071,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5087.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5087.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5087.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 10</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5087.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 153&#45;&gt;175 -->\\n\",\n       \"<g id=\\\"edge175\\\" class=\\\"edge\\\">\\n\",\n       \"<title>153&#45;&gt;175</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5087.9531,-985.8089C5087.9531,-977.6906 5087.9531,-968.8517 5087.9531,-960.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5091.4532,-960.1307 5087.9531,-950.1308 5084.4532,-960.1308 5091.4532,-960.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 155 -->\\n\",\n       \"<g id=\\\"node156\\\" class=\\\"node\\\">\\n\",\n       \"<title>155</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4715.4926,-850C4715.4926,-850 4474.4137,-850 4474.4137,-850 4468.4137,-850 4462.4137,-844 4462.4137,-838 4462.4137,-838 4462.4137,-798 4462.4137,-798 4462.4137,-792 4468.4137,-786 4474.4137,-786 4474.4137,-786 4715.4926,-786 4715.4926,-786 4721.4926,-786 4727.4926,-792 4727.4926,-798 4727.4926,-798 4727.4926,-838 4727.4926,-838 4727.4926,-844 4721.4926,-850 4715.4926,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4594.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Military, armaments, and defense &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4594.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.285</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4594.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 29</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4594.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [24, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 154&#45;&gt;155 -->\\n\",\n       \"<g id=\\\"edge155\\\" class=\\\"edge\\\">\\n\",\n       \"<title>154&#45;&gt;155</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4741.8021,-888.9415C4719.5667,-878.1998 4694.0733,-865.8841 4670.6356,-854.5616\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4671.95,-851.3096 4661.4231,-850.1111 4668.905,-857.6126 4671.95,-851.3096\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 174 -->\\n\",\n       \"<g id=\\\"node175\\\" class=\\\"node\\\">\\n\",\n       \"<title>174</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4846.0733,-843C4846.0733,-843 4757.8329,-843 4757.8329,-843 4751.8329,-843 4745.8329,-837 4745.8329,-831 4745.8329,-831 4745.8329,-805 4745.8329,-805 4745.8329,-799 4751.8329,-793 4757.8329,-793 4757.8329,-793 4846.0733,-793 4846.0733,-793 4852.0733,-793 4858.0733,-799 4858.0733,-805 4858.0733,-805 4858.0733,-831 4858.0733,-831 4858.0733,-837 4852.0733,-843 4846.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4801.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4801.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4801.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 154&#45;&gt;174 -->\\n\",\n       \"<g id=\\\"edge174\\\" class=\\\"edge\\\">\\n\",\n       \"<title>154&#45;&gt;174</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4801.9531,-885.8089C4801.9531,-875.446 4801.9531,-863.909 4801.9531,-853.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4805.4532,-853.1555 4801.9531,-843.1555 4798.4532,-853.1556 4805.4532,-853.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 156 -->\\n\",\n       \"<g id=\\\"node157\\\" class=\\\"node\\\">\\n\",\n       \"<title>156</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4548.518,-750C4548.518,-750 4327.3883,-750 4327.3883,-750 4321.3883,-750 4315.3883,-744 4315.3883,-738 4315.3883,-738 4315.3883,-698 4315.3883,-698 4315.3883,-692 4321.3883,-686 4327.3883,-686 4327.3883,-686 4548.518,-686 4548.518,-686 4554.518,-686 4560.518,-692 4560.518,-698 4560.518,-698 4560.518,-738 4560.518,-738 4560.518,-744 4554.518,-750 4548.518,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.363</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 21</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [16, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 155&#45;&gt;156 -->\\n\",\n       \"<g id=\\\"edge156\\\" class=\\\"edge\\\">\\n\",\n       \"<title>155&#45;&gt;156</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4544.4131,-785.8089C4529.2863,-776.174 4512.566,-765.5241 4496.9459,-755.575\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4498.7131,-752.551 4488.3984,-750.1308 4494.9525,-758.4551 4498.7131,-752.551\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 173 -->\\n\",\n       \"<g id=\\\"node174\\\" class=\\\"node\\\">\\n\",\n       \"<title>173</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4679.0733,-743C4679.0733,-743 4590.8329,-743 4590.8329,-743 4584.8329,-743 4578.8329,-737 4578.8329,-731 4578.8329,-731 4578.8329,-705 4578.8329,-705 4578.8329,-699 4584.8329,-693 4590.8329,-693 4590.8329,-693 4679.0733,-693 4679.0733,-693 4685.0733,-693 4691.0733,-699 4691.0733,-705 4691.0733,-705 4691.0733,-731 4691.0733,-731 4691.0733,-737 4685.0733,-743 4679.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4634.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4634.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4634.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [8, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 155&#45;&gt;173 -->\\n\",\n       \"<g id=\\\"edge173\\\" class=\\\"edge\\\">\\n\",\n       \"<title>155&#45;&gt;173</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4607.8296,-785.8089C4612.0611,-775.2301 4616.782,-763.4278 4621.084,-752.6729\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4624.4266,-753.7402 4624.8909,-743.1555 4617.9273,-751.1404 4624.4266,-753.7402\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 157 -->\\n\",\n       \"<g id=\\\"node158\\\" class=\\\"node\\\">\\n\",\n       \"<title>157</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4526.9521,-650C4526.9521,-650 4348.9541,-650 4348.9541,-650 4342.9541,-650 4336.9541,-644 4336.9541,-638 4336.9541,-638 4336.9541,-598 4336.9541,-598 4336.9541,-592 4342.9541,-586 4348.9541,-586 4348.9541,-586 4526.9521,-586 4526.9521,-586 4532.9521,-586 4538.9521,-592 4538.9521,-598 4538.9521,-598 4538.9521,-638 4538.9521,-638 4538.9521,-644 4532.9521,-650 4526.9521,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 15</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [10, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 156&#45;&gt;157 -->\\n\",\n       \"<g id=\\\"edge157\\\" class=\\\"edge\\\">\\n\",\n       \"<title>156&#45;&gt;157</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4437.9531,-685.8089C4437.9531,-677.6906 4437.9531,-668.8517 4437.9531,-660.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4441.4532,-660.1307 4437.9531,-650.1308 4434.4532,-660.1308 4441.4532,-660.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 172 -->\\n\",\n       \"<g id=\\\"node173\\\" class=\\\"node\\\">\\n\",\n       \"<title>172</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4657.0733,-643C4657.0733,-643 4568.8329,-643 4568.8329,-643 4562.8329,-643 4556.8329,-637 4556.8329,-631 4556.8329,-631 4556.8329,-605 4556.8329,-605 4556.8329,-599 4562.8329,-593 4568.8329,-593 4568.8329,-593 4657.0733,-593 4657.0733,-593 4663.0733,-593 4669.0733,-599 4669.0733,-605 4669.0733,-605 4669.0733,-631 4669.0733,-631 4669.0733,-637 4663.0733,-643 4657.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4612.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4612.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4612.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 156&#45;&gt;172 -->\\n\",\n       \"<g id=\\\"edge172\\\" class=\\\"edge\\\">\\n\",\n       \"<title>156&#45;&gt;172</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4494.2875,-685.8089C4515.4452,-673.7188 4539.3993,-660.0308 4560.2179,-648.1344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4561.985,-651.1558 4568.9309,-643.1555 4558.512,-645.0781 4561.985,-651.1558\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 158 -->\\n\",\n       \"<g id=\\\"node159\\\" class=\\\"node\\\">\\n\",\n       \"<title>158</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4539.6418,-550C4539.6418,-550 4336.2644,-550 4336.2644,-550 4330.2644,-550 4324.2644,-544 4324.2644,-538 4324.2644,-538 4324.2644,-498 4324.2644,-498 4324.2644,-492 4330.2644,-486 4336.2644,-486 4336.2644,-486 4539.6418,-486 4539.6418,-486 4545.6418,-486 4551.6418,-492 4551.6418,-498 4551.6418,-498 4551.6418,-538 4551.6418,-538 4551.6418,-544 4545.6418,-550 4539.6418,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.245</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4437.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 157&#45;&gt;158 -->\\n\",\n       \"<g id=\\\"edge158\\\" class=\\\"edge\\\">\\n\",\n       \"<title>157&#45;&gt;158</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4437.9531,-585.8089C4437.9531,-577.6906 4437.9531,-568.8517 4437.9531,-560.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4441.4532,-560.1307 4437.9531,-550.1308 4434.4532,-560.1308 4441.4532,-560.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 163 -->\\n\",\n       \"<g id=\\\"node164\\\" class=\\\"node\\\">\\n\",\n       \"<title>163</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4817.2494,-550C4817.2494,-550 4706.6569,-550 4706.6569,-550 4700.6569,-550 4694.6569,-544 4694.6569,-538 4694.6569,-538 4694.6569,-498 4694.6569,-498 4694.6569,-492 4700.6569,-486 4706.6569,-486 4706.6569,-486 4817.2494,-486 4817.2494,-486 4823.2494,-486 4829.2494,-492 4829.2494,-498 4829.2494,-498 4829.2494,-538 4829.2494,-538 4829.2494,-544 4823.2494,-550 4817.2494,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4761.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4761.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4761.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4761.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 157&#45;&gt;163 -->\\n\",\n       \"<g id=\\\"edge163\\\" class=\\\"edge\\\">\\n\",\n       \"<title>157&#45;&gt;163</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4539.136,-586.7707C4586.2611,-572.2259 4641.4182,-555.2021 4685.0641,-541.7312\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4686.238,-545.0319 4694.761,-538.7383 4684.1735,-538.3432 4686.238,-545.0319\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 159 -->\\n\",\n       \"<g id=\\\"node160\\\" class=\\\"node\\\">\\n\",\n       \"<title>159</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4446.0733,-443C4446.0733,-443 4357.8329,-443 4357.8329,-443 4351.8329,-443 4345.8329,-437 4345.8329,-431 4345.8329,-431 4345.8329,-405 4345.8329,-405 4345.8329,-399 4351.8329,-393 4357.8329,-393 4357.8329,-393 4446.0733,-393 4446.0733,-393 4452.0733,-393 4458.0733,-399 4458.0733,-405 4458.0733,-405 4458.0733,-431 4458.0733,-431 4458.0733,-437 4452.0733,-443 4446.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4401.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4401.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4401.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 158&#45;&gt;159 -->\\n\",\n       \"<g id=\\\"edge159\\\" class=\\\"edge\\\">\\n\",\n       \"<title>158&#45;&gt;159</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4426.3643,-485.8089C4422.556,-475.2301 4418.3071,-463.4278 4414.4354,-452.6729\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4417.6895,-451.3789 4411.0091,-443.1555 4411.1033,-453.75 4417.6895,-451.3789\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 160 -->\\n\",\n       \"<g id=\\\"node161\\\" class=\\\"node\\\">\\n\",\n       \"<title>160</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4676.0488,-450C4676.0488,-450 4487.8574,-450 4487.8574,-450 4481.8574,-450 4475.8574,-444 4475.8574,-438 4475.8574,-438 4475.8574,-398 4475.8574,-398 4475.8574,-392 4481.8574,-386 4487.8574,-386 4487.8574,-386 4676.0488,-386 4676.0488,-386 4682.0488,-386 4688.0488,-392 4688.0488,-398 4688.0488,-398 4688.0488,-438 4688.0488,-438 4688.0488,-444 4682.0488,-450 4676.0488,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4581.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Assistance for childcare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4581.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4581.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4581.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 158&#45;&gt;160 -->\\n\",\n       \"<g id=\\\"edge160\\\" class=\\\"edge\\\">\\n\",\n       \"<title>158&#45;&gt;160</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4484.3083,-485.8089C4498.0541,-476.2632 4513.2345,-465.7213 4527.4468,-455.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4529.4675,-458.7096 4535.6848,-450.1308 4525.4747,-452.96 4529.4675,-458.7096\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 161 -->\\n\",\n       \"<g id=\\\"node162\\\" class=\\\"node\\\">\\n\",\n       \"<title>161</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4511.0733,-343C4511.0733,-343 4422.8329,-343 4422.8329,-343 4416.8329,-343 4410.8329,-337 4410.8329,-331 4410.8329,-331 4410.8329,-305 4410.8329,-305 4410.8329,-299 4416.8329,-293 4422.8329,-293 4422.8329,-293 4511.0733,-293 4511.0733,-293 4517.0733,-293 4523.0733,-299 4523.0733,-305 4523.0733,-305 4523.0733,-331 4523.0733,-331 4523.0733,-337 4517.0733,-343 4511.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4466.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4466.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4466.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 160&#45;&gt;161 -->\\n\",\n       \"<g id=\\\"edge161\\\" class=\\\"edge\\\">\\n\",\n       \"<title>160&#45;&gt;161</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4544.9334,-385.8089C4531.6505,-374.2586 4516.6903,-361.2497 4503.4519,-349.7381\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4505.7247,-347.0762 4495.882,-343.1555 4501.1314,-352.3585 4505.7247,-347.0762\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 162 -->\\n\",\n       \"<g id=\\\"node163\\\" class=\\\"node\\\">\\n\",\n       \"<title>162</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4641.0733,-343C4641.0733,-343 4552.8329,-343 4552.8329,-343 4546.8329,-343 4540.8329,-337 4540.8329,-331 4540.8329,-331 4540.8329,-305 4540.8329,-305 4540.8329,-299 4546.8329,-293 4552.8329,-293 4552.8329,-293 4641.0733,-293 4641.0733,-293 4647.0733,-293 4653.0733,-299 4653.0733,-305 4653.0733,-305 4653.0733,-331 4653.0733,-331 4653.0733,-337 4647.0733,-343 4641.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4596.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4596.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4596.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 160&#45;&gt;162 -->\\n\",\n       \"<g id=\\\"edge162\\\" class=\\\"edge\\\">\\n\",\n       \"<title>160&#45;&gt;162</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4586.7818,-385.8089C4588.3362,-375.446 4590.0668,-363.909 4591.6532,-353.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4595.1576,-353.5641 4593.1798,-343.1555 4588.235,-352.5257 4595.1576,-353.5641\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 164 -->\\n\",\n       \"<g id=\\\"node165\\\" class=\\\"node\\\">\\n\",\n       \"<title>164</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4806.0733,-443C4806.0733,-443 4717.8329,-443 4717.8329,-443 4711.8329,-443 4705.8329,-437 4705.8329,-431 4705.8329,-431 4705.8329,-405 4705.8329,-405 4705.8329,-399 4711.8329,-393 4717.8329,-393 4717.8329,-393 4806.0733,-393 4806.0733,-393 4812.0733,-393 4818.0733,-399 4818.0733,-405 4818.0733,-405 4818.0733,-431 4818.0733,-431 4818.0733,-437 4812.0733,-443 4806.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4761.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4761.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4761.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 163&#45;&gt;164 -->\\n\",\n       \"<g id=\\\"edge164\\\" class=\\\"edge\\\">\\n\",\n       \"<title>163&#45;&gt;164</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4761.9531,-485.8089C4761.9531,-475.446 4761.9531,-463.909 4761.9531,-453.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4765.4532,-453.1555 4761.9531,-443.1555 4758.4532,-453.1556 4765.4532,-453.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 165 -->\\n\",\n       \"<g id=\\\"node166\\\" class=\\\"node\\\">\\n\",\n       \"<title>165</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5017.8872,-450C5017.8872,-450 4848.019,-450 4848.019,-450 4842.019,-450 4836.019,-444 4836.019,-438 4836.019,-438 4836.019,-398 4836.019,-398 4836.019,-392 4842.019,-386 4848.019,-386 4848.019,-386 5017.8872,-386 5017.8872,-386 5023.8872,-386 5029.8872,-392 5029.8872,-398 5029.8872,-398 5029.8872,-438 5029.8872,-438 5029.8872,-444 5023.8872,-450 5017.8872,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4932.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Parks and recreation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4932.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.49</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4932.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4932.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 163&#45;&gt;165 -->\\n\",\n       \"<g id=\\\"edge165\\\" class=\\\"edge\\\">\\n\",\n       \"<title>163&#45;&gt;165</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4816.9999,-485.8089C4833.6282,-476.0848 4852.0243,-465.3268 4869.1721,-455.2989\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4871.1441,-458.2002 4878.0095,-450.1308 4867.6104,-452.1576 4871.1441,-458.2002\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 166 -->\\n\",\n       \"<g id=\\\"node167\\\" class=\\\"node\\\">\\n\",\n       \"<title>166</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4795.0733,-343C4795.0733,-343 4706.8329,-343 4706.8329,-343 4700.8329,-343 4694.8329,-337 4694.8329,-331 4694.8329,-331 4694.8329,-305 4694.8329,-305 4694.8329,-299 4700.8329,-293 4706.8329,-293 4706.8329,-293 4795.0733,-293 4795.0733,-293 4801.0733,-293 4807.0733,-299 4807.0733,-305 4807.0733,-305 4807.0733,-331 4807.0733,-331 4807.0733,-337 4801.0733,-343 4795.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4750.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4750.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4750.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 165&#45;&gt;166 -->\\n\",\n       \"<g id=\\\"edge166\\\" class=\\\"edge\\\">\\n\",\n       \"<title>165&#45;&gt;166</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4874.6162,-385.9467C4852.4102,-373.7457 4827.2123,-359.9007 4805.3825,-347.9062\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4807.0176,-344.8112 4796.5679,-343.0631 4803.6467,-350.9461 4807.0176,-344.8112\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 167 -->\\n\",\n       \"<g id=\\\"node168\\\" class=\\\"node\\\">\\n\",\n       \"<title>167</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5045.3108,-350C5045.3108,-350 4836.5954,-350 4836.5954,-350 4830.5954,-350 4824.5954,-344 4824.5954,-338 4824.5954,-338 4824.5954,-298 4824.5954,-298 4824.5954,-292 4830.5954,-286 4836.5954,-286 4836.5954,-286 5045.3108,-286 5045.3108,-286 5051.3108,-286 5057.3108,-292 5057.3108,-298 5057.3108,-298 5057.3108,-338 5057.3108,-338 5057.3108,-344 5051.3108,-350 5045.3108,-350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4940.9531\\\" y=\\\"-334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4940.9531\\\" y=\\\"-320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.48</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4940.9531\\\" y=\\\"-306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4940.9531\\\" y=\\\"-292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 165&#45;&gt;167 -->\\n\",\n       \"<g id=\\\"edge167\\\" class=\\\"edge\\\">\\n\",\n       \"<title>165&#45;&gt;167</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4935.5284,-385.8089C4936.1779,-377.6906 4936.885,-368.8517 4937.5676,-360.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4941.074,-360.3781 4938.3827,-350.1308 4934.0963,-359.8198 4941.074,-360.3781\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 168 -->\\n\",\n       \"<g id=\\\"node169\\\" class=\\\"node\\\">\\n\",\n       \"<title>168</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5005.5967,-250C5005.5967,-250 4754.3095,-250 4754.3095,-250 4748.3095,-250 4742.3095,-244 4742.3095,-238 4742.3095,-238 4742.3095,-198 4742.3095,-198 4742.3095,-192 4748.3095,-186 4754.3095,-186 4754.3095,-186 5005.5967,-186 5005.5967,-186 5011.5967,-186 5017.5967,-192 5017.5967,-198 5017.5967,-198 5017.5967,-238 5017.5967,-238 5017.5967,-244 5011.5967,-250 5005.5967,-250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4879.9531\\\" y=\\\"-234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4879.9531\\\" y=\\\"-220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4879.9531\\\" y=\\\"-206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4879.9531\\\" y=\\\"-192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 167&#45;&gt;168 -->\\n\",\n       \"<g id=\\\"edge168\\\" class=\\\"edge\\\">\\n\",\n       \"<title>167&#45;&gt;168</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4921.3166,-285.8089C4916.0923,-277.2445 4910.3788,-267.8782 4904.9113,-258.915\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4907.7485,-256.8451 4899.5529,-250.1308 4901.7726,-260.4905 4907.7485,-256.8451\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 171 -->\\n\",\n       \"<g id=\\\"node172\\\" class=\\\"node\\\">\\n\",\n       \"<title>171</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5136.0733,-243C5136.0733,-243 5047.8329,-243 5047.8329,-243 5041.8329,-243 5035.8329,-237 5035.8329,-231 5035.8329,-231 5035.8329,-205 5035.8329,-205 5035.8329,-199 5041.8329,-193 5047.8329,-193 5047.8329,-193 5136.0733,-193 5136.0733,-193 5142.0733,-193 5148.0733,-199 5148.0733,-205 5148.0733,-205 5148.0733,-231 5148.0733,-231 5148.0733,-237 5142.0733,-243 5136.0733,-243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5091.9531\\\" y=\\\"-227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5091.9531\\\" y=\\\"-213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5091.9531\\\" y=\\\"-199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 167&#45;&gt;171 -->\\n\",\n       \"<g id=\\\"edge171\\\" class=\\\"edge\\\">\\n\",\n       \"<title>167&#45;&gt;171</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4989.5616,-285.8089C5007.4917,-273.9347 5027.7493,-260.5191 5045.4853,-248.7734\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5047.5633,-251.5952 5053.9683,-243.1555 5043.6982,-245.759 5047.5633,-251.5952\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 169 -->\\n\",\n       \"<g id=\\\"node170\\\" class=\\\"node\\\">\\n\",\n       \"<title>169</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4859.0733,-143C4859.0733,-143 4770.8329,-143 4770.8329,-143 4764.8329,-143 4758.8329,-137 4758.8329,-131 4758.8329,-131 4758.8329,-105 4758.8329,-105 4758.8329,-99 4764.8329,-93 4770.8329,-93 4770.8329,-93 4859.0733,-93 4859.0733,-93 4865.0733,-93 4871.0733,-99 4871.0733,-105 4871.0733,-105 4871.0733,-131 4871.0733,-131 4871.0733,-137 4865.0733,-143 4859.0733,-143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4814.9531\\\" y=\\\"-127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4814.9531\\\" y=\\\"-113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4814.9531\\\" y=\\\"-99.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 168&#45;&gt;169 -->\\n\",\n       \"<g id=\\\"edge169\\\" class=\\\"edge\\\">\\n\",\n       \"<title>168&#45;&gt;169</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4859.0289,-185.8089C4851.9422,-174.9063 4844.0108,-162.7041 4836.8505,-151.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4839.6887,-149.6325 4831.3042,-143.1555 4833.8196,-153.4475 4839.6887,-149.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 170 -->\\n\",\n       \"<g id=\\\"node171\\\" class=\\\"node\\\">\\n\",\n       \"<title>170</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4989.0733,-143C4989.0733,-143 4900.8329,-143 4900.8329,-143 4894.8329,-143 4888.8329,-137 4888.8329,-131 4888.8329,-131 4888.8329,-105 4888.8329,-105 4888.8329,-99 4894.8329,-93 4900.8329,-93 4900.8329,-93 4989.0733,-93 4989.0733,-93 4995.0733,-93 5001.0733,-99 5001.0733,-105 5001.0733,-105 5001.0733,-131 5001.0733,-131 5001.0733,-137 4995.0733,-143 4989.0733,-143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4944.9531\\\" y=\\\"-127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4944.9531\\\" y=\\\"-113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4944.9531\\\" y=\\\"-99.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 168&#45;&gt;170 -->\\n\",\n       \"<g id=\\\"edge170\\\" class=\\\"edge\\\">\\n\",\n       \"<title>168&#45;&gt;170</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4900.8773,-185.8089C4907.9641,-174.9063 4915.8955,-162.7041 4923.0558,-151.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4926.0867,-153.4475 4928.602,-143.1555 4920.2175,-149.6325 4926.0867,-153.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 176 -->\\n\",\n       \"<g id=\\\"node177\\\" class=\\\"node\\\">\\n\",\n       \"<title>176</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5065.9521,-850C5065.9521,-850 4887.9541,-850 4887.9541,-850 4881.9541,-850 4875.9541,-844 4875.9541,-838 4875.9541,-838 4875.9541,-798 4875.9541,-798 4875.9541,-792 4881.9541,-786 4887.9541,-786 4887.9541,-786 5065.9521,-786 5065.9521,-786 5071.9521,-786 5077.9521,-792 5077.9521,-798 5077.9521,-798 5077.9521,-838 5077.9521,-838 5077.9521,-844 5071.9521,-850 5065.9521,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4976.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4976.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.408</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4976.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4976.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 175&#45;&gt;176 -->\\n\",\n       \"<g id=\\\"edge176\\\" class=\\\"edge\\\">\\n\",\n       \"<title>175&#45;&gt;176</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5052.221,-885.8089C5042.0214,-876.62 5030.7971,-866.508 5020.2001,-856.9612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5022.3906,-854.2238 5012.6183,-850.1308 5017.7052,-859.4245 5022.3906,-854.2238\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 181 -->\\n\",\n       \"<g id=\\\"node182\\\" class=\\\"node\\\">\\n\",\n       \"<title>181</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5196.0733,-843C5196.0733,-843 5107.8329,-843 5107.8329,-843 5101.8329,-843 5095.8329,-837 5095.8329,-831 5095.8329,-831 5095.8329,-805 5095.8329,-805 5095.8329,-799 5101.8329,-793 5107.8329,-793 5107.8329,-793 5196.0733,-793 5196.0733,-793 5202.0733,-793 5208.0733,-799 5208.0733,-805 5208.0733,-805 5208.0733,-831 5208.0733,-831 5208.0733,-837 5202.0733,-843 5196.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5151.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5151.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5151.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 175&#45;&gt;181 -->\\n\",\n       \"<g id=\\\"edge181\\\" class=\\\"edge\\\">\\n\",\n       \"<title>175&#45;&gt;181</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5108.5554,-885.8089C5115.5331,-874.9063 5123.3425,-862.7041 5130.3927,-851.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5133.411,-853.465 5135.8536,-843.1555 5127.515,-849.6916 5133.411,-853.465\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 177 -->\\n\",\n       \"<g id=\\\"node178\\\" class=\\\"node\\\">\\n\",\n       \"<title>177</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4890.8872,-750C4890.8872,-750 4721.019,-750 4721.019,-750 4715.019,-750 4709.019,-744 4709.019,-738 4709.019,-738 4709.019,-698 4709.019,-698 4709.019,-692 4715.019,-686 4721.019,-686 4721.019,-686 4890.8872,-686 4890.8872,-686 4896.8872,-686 4902.8872,-692 4902.8872,-698 4902.8872,-698 4902.8872,-738 4902.8872,-738 4902.8872,-744 4896.8872,-750 4890.8872,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4805.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Parks and recreation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4805.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4805.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4805.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 176&#45;&gt;177 -->\\n\",\n       \"<g id=\\\"edge177\\\" class=\\\"edge\\\">\\n\",\n       \"<title>176&#45;&gt;177</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4921.9064,-785.8089C4905.2781,-776.0848 4886.882,-765.3268 4869.7342,-755.2989\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4871.2959,-752.1576 4860.8967,-750.1308 4867.7622,-758.2002 4871.2959,-752.1576\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 180 -->\\n\",\n       \"<g id=\\\"node181\\\" class=\\\"node\\\">\\n\",\n       \"<title>180</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5021.0733,-743C5021.0733,-743 4932.8329,-743 4932.8329,-743 4926.8329,-743 4920.8329,-737 4920.8329,-731 4920.8329,-731 4920.8329,-705 4920.8329,-705 4920.8329,-699 4926.8329,-693 4932.8329,-693 4932.8329,-693 5021.0733,-693 5021.0733,-693 5027.0733,-693 5033.0733,-699 5033.0733,-705 5033.0733,-705 5033.0733,-731 5033.0733,-731 5033.0733,-737 5027.0733,-743 5021.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4976.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4976.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4976.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 176&#45;&gt;180 -->\\n\",\n       \"<g id=\\\"edge180\\\" class=\\\"edge\\\">\\n\",\n       \"<title>176&#45;&gt;180</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4976.9531,-785.8089C4976.9531,-775.446 4976.9531,-763.909 4976.9531,-753.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4980.4532,-753.1555 4976.9531,-743.1555 4973.4532,-753.1556 4980.4532,-753.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 178 -->\\n\",\n       \"<g id=\\\"node179\\\" class=\\\"node\\\">\\n\",\n       \"<title>178</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4818.0733,-643C4818.0733,-643 4729.8329,-643 4729.8329,-643 4723.8329,-643 4717.8329,-637 4717.8329,-631 4717.8329,-631 4717.8329,-605 4717.8329,-605 4717.8329,-599 4723.8329,-593 4729.8329,-593 4729.8329,-593 4818.0733,-593 4818.0733,-593 4824.0733,-593 4830.0733,-599 4830.0733,-605 4830.0733,-605 4830.0733,-631 4830.0733,-631 4830.0733,-637 4824.0733,-643 4818.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4773.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4773.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4773.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 177&#45;&gt;178 -->\\n\",\n       \"<g id=\\\"edge178\\\" class=\\\"edge\\\">\\n\",\n       \"<title>177&#45;&gt;178</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4795.652,-685.8089C4792.3013,-675.338 4788.5671,-663.6685 4785.1539,-653.0025\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4788.3842,-651.6131 4782.0029,-643.1555 4781.7172,-653.7465 4788.3842,-651.6131\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 179 -->\\n\",\n       \"<g id=\\\"node180\\\" class=\\\"node\\\">\\n\",\n       \"<title>179</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4948.0733,-643C4948.0733,-643 4859.8329,-643 4859.8329,-643 4853.8329,-643 4847.8329,-637 4847.8329,-631 4847.8329,-631 4847.8329,-605 4847.8329,-605 4847.8329,-599 4853.8329,-593 4859.8329,-593 4859.8329,-593 4948.0733,-593 4948.0733,-593 4954.0733,-593 4960.0733,-599 4960.0733,-605 4960.0733,-605 4960.0733,-631 4960.0733,-631 4960.0733,-637 4954.0733,-643 4948.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4903.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4903.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"4903.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 177&#45;&gt;179 -->\\n\",\n       \"<g id=\\\"edge179\\\" class=\\\"edge\\\">\\n\",\n       \"<title>177&#45;&gt;179</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M4837.5004,-685.8089C4848.6081,-674.4745 4861.0923,-661.7355 4872.2157,-650.3851\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"4874.8011,-652.7475 4879.3007,-643.1555 4869.8016,-647.8479 4874.8011,-652.7475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 183 -->\\n\",\n       \"<g id=\\\"node184\\\" class=\\\"node\\\">\\n\",\n       \"<title>183</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5688.4727,-950C5688.4727,-950 5433.4336,-950 5433.4336,-950 5427.4336,-950 5421.4336,-944 5421.4336,-938 5421.4336,-938 5421.4336,-898 5421.4336,-898 5421.4336,-892 5427.4336,-886 5433.4336,-886 5433.4336,-886 5688.4727,-886 5688.4727,-886 5694.4727,-886 5700.4727,-892 5700.4727,-898 5700.4727,-898 5700.4727,-938 5700.4727,-938 5700.4727,-944 5694.4727,-950 5688.4727,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5560.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5560.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.508</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5560.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 36</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5560.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [14, 21, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 182&#45;&gt;183 -->\\n\",\n       \"<g id=\\\"edge183\\\" class=\\\"edge\\\">\\n\",\n       \"<title>182&#45;&gt;183</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5661.3103,-985.8089C5647.1826,-976.2632 5631.5806,-965.7213 5616.9735,-955.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5618.7521,-952.8293 5608.5066,-950.1308 5614.833,-958.6294 5618.7521,-952.8293\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 210 -->\\n\",\n       \"<g id=\\\"node211\\\" class=\\\"node\\\">\\n\",\n       \"<title>210</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5981.5967,-950C5981.5967,-950 5730.3095,-950 5730.3095,-950 5724.3095,-950 5718.3095,-944 5718.3095,-938 5718.3095,-938 5718.3095,-898 5718.3095,-898 5718.3095,-892 5724.3095,-886 5730.3095,-886 5730.3095,-886 5981.5967,-886 5981.5967,-886 5987.5967,-886 5993.5967,-892 5993.5967,-898 5993.5967,-898 5993.5967,-938 5993.5967,-938 5993.5967,-944 5987.5967,-950 5981.5967,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5855.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5855.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.337</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5855.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 14</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5855.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [11, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 182&#45;&gt;210 -->\\n\",\n       \"<g id=\\\"edge210\\\" class=\\\"edge\\\">\\n\",\n       \"<title>182&#45;&gt;210</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5756.274,-985.8089C5770.3063,-976.2632 5785.8029,-965.7213 5800.3113,-955.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5802.4213,-958.6493 5808.7209,-950.1308 5798.484,-952.8616 5802.4213,-958.6493\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 184 -->\\n\",\n       \"<g id=\\\"node185\\\" class=\\\"node\\\">\\n\",\n       \"<title>184</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5455.9521,-850C5455.9521,-850 5277.9541,-850 5277.9541,-850 5271.9541,-850 5265.9541,-844 5265.9541,-838 5265.9541,-838 5265.9541,-798 5265.9541,-798 5265.9541,-792 5271.9541,-786 5277.9541,-786 5277.9541,-786 5455.9521,-786 5455.9521,-786 5461.9521,-786 5467.9521,-792 5467.9521,-798 5467.9521,-798 5467.9521,-838 5467.9521,-838 5467.9521,-844 5461.9521,-850 5455.9521,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5366.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5366.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.298</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5366.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 11</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5366.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 9, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 183&#45;&gt;184 -->\\n\",\n       \"<g id=\\\"edge184\\\" class=\\\"edge\\\">\\n\",\n       \"<title>183&#45;&gt;184</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5498.7698,-885.9467C5479.4519,-875.989 5458.0097,-864.9364 5438.1286,-854.6884\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5439.6094,-851.5141 5429.1171,-850.0433 5436.4021,-857.7361 5439.6094,-851.5141\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 193 -->\\n\",\n       \"<g id=\\\"node194\\\" class=\\\"node\\\">\\n\",\n       \"<title>193</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5714.3555,-850C5714.3555,-850 5497.5508,-850 5497.5508,-850 5491.5508,-850 5485.5508,-844 5485.5508,-838 5485.5508,-838 5485.5508,-798 5485.5508,-798 5485.5508,-792 5491.5508,-786 5497.5508,-786 5497.5508,-786 5714.3555,-786 5714.3555,-786 5720.3555,-786 5726.3555,-792 5726.3555,-798 5726.3555,-798 5726.3555,-838 5726.3555,-838 5726.3555,-844 5720.3555,-850 5714.3555,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5605.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5605.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.538</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5605.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 25</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5605.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [12, 12, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 183&#45;&gt;193 -->\\n\",\n       \"<g id=\\\"edge193\\\" class=\\\"edge\\\">\\n\",\n       \"<title>183&#45;&gt;193</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5575.4391,-885.8089C5579.2128,-877.4229 5583.3325,-868.2681 5587.2891,-859.4757\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5590.5823,-860.6863 5591.4943,-850.1308 5584.1989,-857.8137 5590.5823,-860.6863\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 185 -->\\n\",\n       \"<g id=\\\"node186\\\" class=\\\"node\\\">\\n\",\n       \"<title>185</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5314.5967,-750C5314.5967,-750 5063.3095,-750 5063.3095,-750 5057.3095,-750 5051.3095,-744 5051.3095,-738 5051.3095,-738 5051.3095,-698 5051.3095,-698 5051.3095,-692 5057.3095,-686 5063.3095,-686 5063.3095,-686 5314.5967,-686 5314.5967,-686 5320.5967,-686 5326.5967,-692 5326.5967,-698 5326.5967,-698 5326.5967,-738 5326.5967,-738 5326.5967,-744 5320.5967,-750 5314.5967,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5188.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5188.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.48</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5188.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5188.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 184&#45;&gt;185 -->\\n\",\n       \"<g id=\\\"edge185\\\" class=\\\"edge\\\">\\n\",\n       \"<title>184&#45;&gt;185</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5309.653,-785.8089C5292.344,-776.0848 5273.1949,-765.3268 5255.3451,-755.2989\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5256.5786,-751.9773 5246.1459,-750.1308 5253.15,-758.0802 5256.5786,-751.9773\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 192 -->\\n\",\n       \"<g id=\\\"node193\\\" class=\\\"node\\\">\\n\",\n       \"<title>192</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5445.0733,-743C5445.0733,-743 5356.8329,-743 5356.8329,-743 5350.8329,-743 5344.8329,-737 5344.8329,-731 5344.8329,-731 5344.8329,-705 5344.8329,-705 5344.8329,-699 5350.8329,-693 5356.8329,-693 5356.8329,-693 5445.0733,-693 5445.0733,-693 5451.0733,-693 5457.0733,-699 5457.0733,-705 5457.0733,-705 5457.0733,-731 5457.0733,-731 5457.0733,-737 5451.0733,-743 5445.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5400.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5400.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5400.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 6, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 184&#45;&gt;192 -->\\n\",\n       \"<g id=\\\"edge192\\\" class=\\\"edge\\\">\\n\",\n       \"<title>184&#45;&gt;192</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5377.8981,-785.8089C5381.4949,-775.2301 5385.5077,-763.4278 5389.1643,-752.6729\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5392.4949,-753.75 5392.4002,-743.1555 5385.8674,-751.4966 5392.4949,-753.75\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 186 -->\\n\",\n       \"<g id=\\\"node187\\\" class=\\\"node\\\">\\n\",\n       \"<title>186</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5151.2494,-650C5151.2494,-650 5040.6569,-650 5040.6569,-650 5034.6569,-650 5028.6569,-644 5028.6569,-638 5028.6569,-638 5028.6569,-598 5028.6569,-598 5028.6569,-592 5034.6569,-586 5040.6569,-586 5040.6569,-586 5151.2494,-586 5151.2494,-586 5157.2494,-586 5163.2494,-592 5163.2494,-598 5163.2494,-598 5163.2494,-638 5163.2494,-638 5163.2494,-644 5157.2494,-650 5151.2494,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5095.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5095.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5095.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5095.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 185&#45;&gt;186 -->\\n\",\n       \"<g id=\\\"edge186\\\" class=\\\"edge\\\">\\n\",\n       \"<title>185&#45;&gt;186</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5159.0154,-685.8089C5150.6357,-676.7985 5141.4305,-666.9004 5132.7048,-657.518\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5135.2078,-655.0699 5125.8347,-650.1308 5130.0819,-659.8371 5135.2078,-655.0699\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 191 -->\\n\",\n       \"<g id=\\\"node192\\\" class=\\\"node\\\">\\n\",\n       \"<title>191</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5281.0733,-643C5281.0733,-643 5192.8329,-643 5192.8329,-643 5186.8329,-643 5180.8329,-637 5180.8329,-631 5180.8329,-631 5180.8329,-605 5180.8329,-605 5180.8329,-599 5186.8329,-593 5192.8329,-593 5192.8329,-593 5281.0733,-593 5281.0733,-593 5287.0733,-593 5293.0733,-599 5293.0733,-605 5293.0733,-605 5293.0733,-631 5293.0733,-631 5293.0733,-637 5287.0733,-643 5281.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5236.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5236.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5236.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 185&#45;&gt;191 -->\\n\",\n       \"<g id=\\\"edge191\\\" class=\\\"edge\\\">\\n\",\n       \"<title>185&#45;&gt;191</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5204.4048,-685.8089C5209.5345,-675.1221 5215.2635,-663.1868 5220.468,-652.344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5223.7064,-653.6854 5224.8785,-643.1555 5217.3958,-650.6562 5223.7064,-653.6854\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 187 -->\\n\",\n       \"<g id=\\\"node188\\\" class=\\\"node\\\">\\n\",\n       \"<title>187</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5119.0733,-543C5119.0733,-543 5030.8329,-543 5030.8329,-543 5024.8329,-543 5018.8329,-537 5018.8329,-531 5018.8329,-531 5018.8329,-505 5018.8329,-505 5018.8329,-499 5024.8329,-493 5030.8329,-493 5030.8329,-493 5119.0733,-493 5119.0733,-493 5125.0733,-493 5131.0733,-499 5131.0733,-505 5131.0733,-505 5131.0733,-531 5131.0733,-531 5131.0733,-537 5125.0733,-543 5119.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5074.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5074.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5074.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 186&#45;&gt;187 -->\\n\",\n       \"<g id=\\\"edge187\\\" class=\\\"edge\\\">\\n\",\n       \"<title>186&#45;&gt;187</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5089.193,-585.8089C5086.9941,-575.338 5084.5435,-563.6685 5082.3036,-553.0025\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5085.7163,-552.2227 5080.2358,-543.1555 5078.8658,-553.6614 5085.7163,-552.2227\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 188 -->\\n\",\n       \"<g id=\\\"node189\\\" class=\\\"node\\\">\\n\",\n       \"<title>188</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5249.1966,-550C5249.1966,-550 5160.7097,-550 5160.7097,-550 5154.7097,-550 5148.7097,-544 5148.7097,-538 5148.7097,-538 5148.7097,-498 5148.7097,-498 5148.7097,-492 5154.7097,-486 5160.7097,-486 5160.7097,-486 5249.1966,-486 5249.1966,-486 5255.1966,-486 5261.1966,-492 5261.1966,-498 5261.1966,-498 5261.1966,-538 5261.1966,-538 5261.1966,-544 5255.1966,-550 5249.1966,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5204.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5204.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5204.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5204.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 186&#45;&gt;188 -->\\n\",\n       \"<g id=\\\"edge188\\\" class=\\\"edge\\\">\\n\",\n       \"<title>186&#45;&gt;188</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5131.0414,-585.8089C5141.0573,-576.62 5152.0794,-566.508 5162.4854,-556.9612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5164.928,-559.4702 5169.9306,-550.1308 5160.1957,-554.312 5164.928,-559.4702\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 189 -->\\n\",\n       \"<g id=\\\"node190\\\" class=\\\"node\\\">\\n\",\n       \"<title>189</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5209.0733,-443C5209.0733,-443 5120.8329,-443 5120.8329,-443 5114.8329,-443 5108.8329,-437 5108.8329,-431 5108.8329,-431 5108.8329,-405 5108.8329,-405 5108.8329,-399 5114.8329,-393 5120.8329,-393 5120.8329,-393 5209.0733,-393 5209.0733,-393 5215.0733,-393 5221.0733,-399 5221.0733,-405 5221.0733,-405 5221.0733,-431 5221.0733,-431 5221.0733,-437 5215.0733,-443 5209.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5164.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5164.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5164.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 188&#45;&gt;189 -->\\n\",\n       \"<g id=\\\"edge189\\\" class=\\\"edge\\\">\\n\",\n       \"<title>188&#45;&gt;189</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5192.0767,-485.8089C5187.8452,-475.2301 5183.1242,-463.4278 5178.8223,-452.6729\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5181.979,-451.1404 5175.0153,-443.1555 5175.4796,-453.7402 5181.979,-451.1404\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 190 -->\\n\",\n       \"<g id=\\\"node191\\\" class=\\\"node\\\">\\n\",\n       \"<title>190</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5339.0733,-443C5339.0733,-443 5250.8329,-443 5250.8329,-443 5244.8329,-443 5238.8329,-437 5238.8329,-431 5238.8329,-431 5238.8329,-405 5238.8329,-405 5238.8329,-399 5244.8329,-393 5250.8329,-393 5250.8329,-393 5339.0733,-393 5339.0733,-393 5345.0733,-393 5351.0733,-399 5351.0733,-405 5351.0733,-405 5351.0733,-431 5351.0733,-431 5351.0733,-437 5345.0733,-443 5339.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5294.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5294.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5294.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 188&#45;&gt;190 -->\\n\",\n       \"<g id=\\\"edge190\\\" class=\\\"edge\\\">\\n\",\n       \"<title>188&#45;&gt;190</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5233.9251,-485.8089C5244.029,-474.5824 5255.3729,-461.978 5265.5143,-450.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5268.225,-452.9299 5272.3131,-443.1555 5263.0219,-448.2471 5268.225,-452.9299\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 194 -->\\n\",\n       \"<g id=\\\"node195\\\" class=\\\"node\\\">\\n\",\n       \"<title>194</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5695.304,-750C5695.304,-750 5486.6023,-750 5486.6023,-750 5480.6023,-750 5474.6023,-744 5474.6023,-738 5474.6023,-738 5474.6023,-698 5474.6023,-698 5474.6023,-692 5480.6023,-686 5486.6023,-686 5486.6023,-686 5695.304,-686 5695.304,-686 5701.304,-686 5707.304,-692 5707.304,-698 5707.304,-698 5707.304,-738 5707.304,-738 5707.304,-744 5701.304,-750 5695.304,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5590.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5590.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.533</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5590.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 22</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5590.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [12, 9, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 193&#45;&gt;194 -->\\n\",\n       \"<g id=\\\"edge194\\\" class=\\\"edge\\\">\\n\",\n       \"<title>193&#45;&gt;194</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5601.1245,-785.8089C5599.8933,-777.6014 5598.5517,-768.6574 5597.2587,-760.0374\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5600.7175,-759.5009 5595.7727,-750.1308 5593.795,-760.5393 5600.7175,-759.5009\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 209 -->\\n\",\n       \"<g id=\\\"node210\\\" class=\\\"node\\\">\\n\",\n       \"<title>209</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5825.0733,-743C5825.0733,-743 5736.8329,-743 5736.8329,-743 5730.8329,-743 5724.8329,-737 5724.8329,-731 5724.8329,-731 5724.8329,-705 5724.8329,-705 5724.8329,-699 5730.8329,-693 5736.8329,-693 5736.8329,-693 5825.0733,-693 5825.0733,-693 5831.0733,-693 5837.0733,-699 5837.0733,-705 5837.0733,-705 5837.0733,-731 5837.0733,-731 5837.0733,-737 5831.0733,-743 5825.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5780.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5780.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5780.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 193&#45;&gt;209 -->\\n\",\n       \"<g id=\\\"edge209\\\" class=\\\"edge\\\">\\n\",\n       \"<title>193&#45;&gt;209</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5662.2875,-785.8089C5683.4452,-773.7188 5707.3993,-760.0308 5728.2179,-748.1344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5729.985,-751.1558 5736.9309,-743.1555 5726.512,-745.0781 5729.985,-751.1558\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 195 -->\\n\",\n       \"<g id=\\\"node196\\\" class=\\\"node\\\">\\n\",\n       \"<title>195</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5431.0733,-643C5431.0733,-643 5342.8329,-643 5342.8329,-643 5336.8329,-643 5330.8329,-637 5330.8329,-631 5330.8329,-631 5330.8329,-605 5330.8329,-605 5330.8329,-599 5336.8329,-593 5342.8329,-593 5342.8329,-593 5431.0733,-593 5431.0733,-593 5437.0733,-593 5443.0733,-599 5443.0733,-605 5443.0733,-605 5443.0733,-631 5443.0733,-631 5443.0733,-637 5437.0733,-643 5431.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5386.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5386.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5386.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 194&#45;&gt;195 -->\\n\",\n       \"<g id=\\\"edge195\\\" class=\\\"edge\\\">\\n\",\n       \"<title>194&#45;&gt;195</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5525.1784,-685.8642C5502.0262,-674.5415 5475.8291,-661.7173 5451.9531,-650 5450.4005,-649.238 5448.8272,-648.4656 5447.2398,-647.6861\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5448.5604,-644.4353 5438.0419,-643.1663 5445.4733,-650.7178 5448.5604,-644.4353\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 196 -->\\n\",\n       \"<g id=\\\"node197\\\" class=\\\"node\\\">\\n\",\n       \"<title>196</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5723.3108,-650C5723.3108,-650 5472.5955,-650 5472.5955,-650 5466.5955,-650 5460.5955,-644 5460.5955,-638 5460.5955,-638 5460.5955,-598 5460.5955,-598 5460.5955,-592 5466.5955,-586 5472.5955,-586 5472.5955,-586 5723.3108,-586 5723.3108,-586 5729.3108,-586 5735.3108,-592 5735.3108,-598 5735.3108,-598 5735.3108,-638 5735.3108,-638 5735.3108,-644 5729.3108,-650 5723.3108,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5597.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5597.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.515</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5597.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 20</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5597.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [12, 7, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 194&#45;&gt;196 -->\\n\",\n       \"<g id=\\\"edge196\\\" class=\\\"edge\\\">\\n\",\n       \"<title>194&#45;&gt;196</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5593.2065,-685.8089C5593.7748,-677.6906 5594.3935,-668.8517 5594.9908,-660.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5598.497,-660.3508 5595.704,-650.1308 5591.5141,-659.8619 5598.497,-660.3508\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 197 -->\\n\",\n       \"<g id=\\\"node198\\\" class=\\\"node\\\">\\n\",\n       \"<title>197</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5577.5452,-550C5577.5452,-550 5314.361,-550 5314.361,-550 5308.361,-550 5302.361,-544 5302.361,-538 5302.361,-538 5302.361,-498 5302.361,-498 5302.361,-492 5308.361,-486 5314.361,-486 5314.361,-486 5577.5452,-486 5577.5452,-486 5583.5452,-486 5589.5452,-492 5589.5452,-498 5589.5452,-498 5589.5452,-538 5589.5452,-538 5589.5452,-544 5583.5452,-550 5577.5452,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5445.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5445.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.547</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5445.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 17</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5445.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [9, 7, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 196&#45;&gt;197 -->\\n\",\n       \"<g id=\\\"edge197\\\" class=\\\"edge\\\">\\n\",\n       \"<title>196&#45;&gt;197</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5549.0227,-585.8089C5534.5132,-576.2632 5518.4894,-565.7213 5503.4875,-555.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5505.0697,-552.703 5494.7919,-550.1308 5501.2224,-558.5509 5505.0697,-552.703\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 208 -->\\n\",\n       \"<g id=\\\"node209\\\" class=\\\"node\\\">\\n\",\n       \"<title>208</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5708.0733,-543C5708.0733,-543 5619.8329,-543 5619.8329,-543 5613.8329,-543 5607.8329,-537 5607.8329,-531 5607.8329,-531 5607.8329,-505 5607.8329,-505 5607.8329,-499 5613.8329,-493 5619.8329,-493 5619.8329,-493 5708.0733,-493 5708.0733,-493 5714.0733,-493 5720.0733,-499 5720.0733,-505 5720.0733,-505 5720.0733,-531 5720.0733,-531 5720.0733,-537 5714.0733,-543 5708.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5663.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5663.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5663.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 196&#45;&gt;208 -->\\n\",\n       \"<g id=\\\"edge208\\\" class=\\\"edge\\\">\\n\",\n       \"<title>196&#45;&gt;208</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5619.1992,-585.8089C5626.395,-574.9063 5634.4484,-562.7041 5641.7189,-551.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5644.7631,-553.4296 5647.3505,-543.1555 5638.9209,-549.5737 5644.7631,-553.4296\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 198 -->\\n\",\n       \"<g id=\\\"node199\\\" class=\\\"node\\\">\\n\",\n       \"<title>198</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5486.1966,-450C5486.1966,-450 5397.7097,-450 5397.7097,-450 5391.7097,-450 5385.7097,-444 5385.7097,-438 5385.7097,-438 5385.7097,-398 5385.7097,-398 5385.7097,-392 5391.7097,-386 5397.7097,-386 5397.7097,-386 5486.1966,-386 5486.1966,-386 5492.1966,-386 5498.1966,-392 5498.1966,-398 5498.1966,-398 5498.1966,-438 5498.1966,-438 5498.1966,-444 5492.1966,-450 5486.1966,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5441.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5441.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5441.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 12</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5441.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [8, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 197&#45;&gt;198 -->\\n\",\n       \"<g id=\\\"edge198\\\" class=\\\"edge\\\">\\n\",\n       \"<title>197&#45;&gt;198</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5444.6655,-485.8089C5444.3407,-477.6906 5443.9872,-468.8517 5443.6459,-460.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5447.1353,-459.9828 5443.2384,-450.1308 5440.1409,-460.2627 5447.1353,-459.9828\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 203 -->\\n\",\n       \"<g id=\\\"node204\\\" class=\\\"node\\\">\\n\",\n       \"<title>203</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5806.345,-450C5806.345,-450 5527.5613,-450 5527.5613,-450 5521.5613,-450 5515.5613,-444 5515.5613,-438 5515.5613,-438 5515.5613,-398 5515.5613,-398 5515.5613,-392 5521.5613,-386 5527.5613,-386 5527.5613,-386 5806.345,-386 5806.345,-386 5812.345,-386 5818.345,-392 5818.345,-398 5818.345,-398 5818.345,-438 5818.345,-438 5818.345,-444 5812.345,-450 5806.345,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5666.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5666.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.56</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5666.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5666.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 3, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 197&#45;&gt;203 -->\\n\",\n       \"<g id=\\\"edge203\\\" class=\\\"edge\\\">\\n\",\n       \"<title>197&#45;&gt;203</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5516.7908,-485.9467C5539.0947,-475.8545 5563.8843,-464.6375 5586.789,-454.2734\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5588.4696,-457.3546 5596.1374,-450.0433 5585.5838,-450.9771 5588.4696,-457.3546\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 199 -->\\n\",\n       \"<g id=\\\"node200\\\" class=\\\"node\\\">\\n\",\n       \"<title>199</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5386.7071,-350C5386.7071,-350 5125.1991,-350 5125.1991,-350 5119.1991,-350 5113.1991,-344 5113.1991,-338 5113.1991,-338 5113.1991,-298 5113.1991,-298 5113.1991,-292 5119.1991,-286 5125.1991,-286 5125.1991,-286 5386.7071,-286 5386.7071,-286 5392.7071,-286 5398.7071,-292 5398.7071,-298 5398.7071,-298 5398.7071,-338 5398.7071,-338 5398.7071,-344 5392.7071,-350 5386.7071,-350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5255.9531\\\" y=\\\"-334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5255.9531\\\" y=\\\"-320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5255.9531\\\" y=\\\"-306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5255.9531\\\" y=\\\"-292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 198&#45;&gt;199 -->\\n\",\n       \"<g id=\\\"edge199\\\" class=\\\"edge\\\">\\n\",\n       \"<title>198&#45;&gt;199</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5385.6422,-387.7253C5366.3622,-377.3597 5344.5769,-365.6472 5324.4421,-354.822\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5326.0904,-351.7345 5315.6252,-350.0818 5322.7756,-357.8999 5326.0904,-351.7345\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 202 -->\\n\",\n       \"<g id=\\\"node203\\\" class=\\\"node\\\">\\n\",\n       \"<title>202</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5517.0733,-343C5517.0733,-343 5428.8329,-343 5428.8329,-343 5422.8329,-343 5416.8329,-337 5416.8329,-331 5416.8329,-331 5416.8329,-305 5416.8329,-305 5416.8329,-299 5422.8329,-293 5428.8329,-293 5428.8329,-293 5517.0733,-293 5517.0733,-293 5523.0733,-293 5529.0733,-299 5529.0733,-305 5529.0733,-305 5529.0733,-331 5529.0733,-331 5529.0733,-337 5523.0733,-343 5517.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5472.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5472.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5472.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 198&#45;&gt;202 -->\\n\",\n       \"<g id=\\\"edge202\\\" class=\\\"edge\\\">\\n\",\n       \"<title>198&#45;&gt;202</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5451.9324,-385.8089C5455.1783,-375.338 5458.7959,-363.6685 5462.1024,-353.0025\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5465.5369,-353.7435 5465.1549,-343.1555 5458.8508,-351.6708 5465.5369,-353.7435\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 200 -->\\n\",\n       \"<g id=\\\"node201\\\" class=\\\"node\\\">\\n\",\n       \"<title>200</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5295.0733,-243C5295.0733,-243 5206.8329,-243 5206.8329,-243 5200.8329,-243 5194.8329,-237 5194.8329,-231 5194.8329,-231 5194.8329,-205 5194.8329,-205 5194.8329,-199 5200.8329,-193 5206.8329,-193 5206.8329,-193 5295.0733,-193 5295.0733,-193 5301.0733,-193 5307.0733,-199 5307.0733,-205 5307.0733,-205 5307.0733,-231 5307.0733,-231 5307.0733,-237 5301.0733,-243 5295.0733,-243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5250.9531\\\" y=\\\"-227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5250.9531\\\" y=\\\"-213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5250.9531\\\" y=\\\"-199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 199&#45;&gt;200 -->\\n\",\n       \"<g id=\\\"edge200\\\" class=\\\"edge\\\">\\n\",\n       \"<title>199&#45;&gt;200</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5254.3436,-285.8089C5253.8254,-275.446 5253.2486,-263.909 5252.7198,-253.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5256.206,-252.9683 5252.2109,-243.1555 5249.2147,-253.3179 5256.206,-252.9683\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 201 -->\\n\",\n       \"<g id=\\\"node202\\\" class=\\\"node\\\">\\n\",\n       \"<title>201</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5425.0733,-243C5425.0733,-243 5336.8329,-243 5336.8329,-243 5330.8329,-243 5324.8329,-237 5324.8329,-231 5324.8329,-231 5324.8329,-205 5324.8329,-205 5324.8329,-199 5330.8329,-193 5336.8329,-193 5336.8329,-193 5425.0733,-193 5425.0733,-193 5431.0733,-193 5437.0733,-199 5437.0733,-205 5437.0733,-205 5437.0733,-231 5437.0733,-231 5437.0733,-237 5431.0733,-243 5425.0733,-243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5380.9531\\\" y=\\\"-227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5380.9531\\\" y=\\\"-213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5380.9531\\\" y=\\\"-199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 199&#45;&gt;201 -->\\n\",\n       \"<g id=\\\"edge201\\\" class=\\\"edge\\\">\\n\",\n       \"<title>199&#45;&gt;201</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5296.192,-285.8089C5310.7648,-274.1506 5327.1951,-261.0064 5341.6835,-249.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5343.8864,-252.1356 5349.5087,-243.1555 5339.5135,-246.6695 5343.8864,-252.1356\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 204 -->\\n\",\n       \"<g id=\\\"node205\\\" class=\\\"node\\\">\\n\",\n       \"<title>204</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5743.8872,-350C5743.8872,-350 5574.019,-350 5574.019,-350 5568.019,-350 5562.019,-344 5562.019,-338 5562.019,-338 5562.019,-298 5562.019,-298 5562.019,-292 5568.019,-286 5574.019,-286 5574.019,-286 5743.8872,-286 5743.8872,-286 5749.8872,-286 5755.8872,-292 5755.8872,-298 5755.8872,-298 5755.8872,-338 5755.8872,-338 5755.8872,-344 5749.8872,-350 5743.8872,-350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5658.9531\\\" y=\\\"-334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Parks and recreation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5658.9531\\\" y=\\\"-320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5658.9531\\\" y=\\\"-306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5658.9531\\\" y=\\\"-292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 203&#45;&gt;204 -->\\n\",\n       \"<g id=\\\"edge204\\\" class=\\\"edge\\\">\\n\",\n       \"<title>203&#45;&gt;204</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5664.3778,-385.8089C5663.7284,-377.6906 5663.0213,-368.8517 5662.3386,-360.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5665.81,-359.8198 5661.5236,-350.1308 5658.8323,-360.3781 5665.81,-359.8198\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 207 -->\\n\",\n       \"<g id=\\\"node208\\\" class=\\\"node\\\">\\n\",\n       \"<title>207</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5874.0733,-343C5874.0733,-343 5785.8329,-343 5785.8329,-343 5779.8329,-343 5773.8329,-337 5773.8329,-331 5773.8329,-331 5773.8329,-305 5773.8329,-305 5773.8329,-299 5779.8329,-293 5785.8329,-293 5785.8329,-293 5874.0733,-293 5874.0733,-293 5880.0733,-293 5886.0733,-299 5886.0733,-305 5886.0733,-305 5886.0733,-331 5886.0733,-331 5886.0733,-337 5880.0733,-343 5874.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5829.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5829.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5829.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 203&#45;&gt;207 -->\\n\",\n       \"<g id=\\\"edge207\\\" class=\\\"edge\\\">\\n\",\n       \"<title>203&#45;&gt;207</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5719.4246,-385.8089C5738.9555,-373.8268 5761.0448,-360.2751 5780.314,-348.4535\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5782.2561,-351.3682 5788.9496,-343.1555 5778.5955,-345.4016 5782.2561,-351.3682\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 205 -->\\n\",\n       \"<g id=\\\"node206\\\" class=\\\"node\\\">\\n\",\n       \"<title>205</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5638.0733,-243C5638.0733,-243 5549.8329,-243 5549.8329,-243 5543.8329,-243 5537.8329,-237 5537.8329,-231 5537.8329,-231 5537.8329,-205 5537.8329,-205 5537.8329,-199 5543.8329,-193 5549.8329,-193 5549.8329,-193 5638.0733,-193 5638.0733,-193 5644.0733,-193 5650.0733,-199 5650.0733,-205 5650.0733,-205 5650.0733,-231 5650.0733,-231 5650.0733,-237 5644.0733,-243 5638.0733,-243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5593.9531\\\" y=\\\"-227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5593.9531\\\" y=\\\"-213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5593.9531\\\" y=\\\"-199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 204&#45;&gt;205 -->\\n\",\n       \"<g id=\\\"edge205\\\" class=\\\"edge\\\">\\n\",\n       \"<title>204&#45;&gt;205</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5638.0289,-285.8089C5630.9422,-274.9063 5623.0108,-262.7041 5615.8505,-251.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5618.6887,-249.6325 5610.3042,-243.1555 5612.8196,-253.4475 5618.6887,-249.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 206 -->\\n\",\n       \"<g id=\\\"node207\\\" class=\\\"node\\\">\\n\",\n       \"<title>206</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5768.0733,-243C5768.0733,-243 5679.8329,-243 5679.8329,-243 5673.8329,-243 5667.8329,-237 5667.8329,-231 5667.8329,-231 5667.8329,-205 5667.8329,-205 5667.8329,-199 5673.8329,-193 5679.8329,-193 5679.8329,-193 5768.0733,-193 5768.0733,-193 5774.0733,-193 5780.0733,-199 5780.0733,-205 5780.0733,-205 5780.0733,-231 5780.0733,-231 5780.0733,-237 5774.0733,-243 5768.0733,-243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5723.9531\\\" y=\\\"-227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5723.9531\\\" y=\\\"-213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5723.9531\\\" y=\\\"-199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 204&#45;&gt;206 -->\\n\",\n       \"<g id=\\\"edge206\\\" class=\\\"edge\\\">\\n\",\n       \"<title>204&#45;&gt;206</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5679.8773,-285.8089C5686.9641,-274.9063 5694.8955,-262.7041 5702.0558,-251.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5705.0867,-253.4475 5707.602,-243.1555 5699.2175,-249.6325 5705.0867,-253.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 211 -->\\n\",\n       \"<g id=\\\"node212\\\" class=\\\"node\\\">\\n\",\n       \"<title>211</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5855.0733,-843C5855.0733,-843 5766.8329,-843 5766.8329,-843 5760.8329,-843 5754.8329,-837 5754.8329,-831 5754.8329,-831 5754.8329,-805 5754.8329,-805 5754.8329,-799 5760.8329,-793 5766.8329,-793 5766.8329,-793 5855.0733,-793 5855.0733,-793 5861.0733,-793 5867.0733,-799 5867.0733,-805 5867.0733,-805 5867.0733,-831 5867.0733,-831 5867.0733,-837 5861.0733,-843 5855.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5810.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5810.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5810.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [9, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 210&#45;&gt;211 -->\\n\",\n       \"<g id=\\\"edge211\\\" class=\\\"edge\\\">\\n\",\n       \"<title>210&#45;&gt;211</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5841.4671,-885.8089C5836.6581,-875.1221 5831.2872,-863.1868 5826.4079,-852.344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5829.5686,-850.8385 5822.2731,-843.1555 5823.1851,-853.7111 5829.5686,-850.8385\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 212 -->\\n\",\n       \"<g id=\\\"node213\\\" class=\\\"node\\\">\\n\",\n       \"<title>212</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6105.3108,-850C6105.3108,-850 5896.5954,-850 5896.5954,-850 5890.5954,-850 5884.5954,-844 5884.5954,-838 5884.5954,-838 5884.5954,-798 5884.5954,-798 5884.5954,-792 5890.5954,-786 5896.5954,-786 5896.5954,-786 6105.3108,-786 6105.3108,-786 6111.3108,-786 6117.3108,-792 6117.3108,-798 6117.3108,-798 6117.3108,-838 6117.3108,-838 6117.3108,-844 6111.3108,-850 6105.3108,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6000.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6000.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.48</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6000.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6000.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 210&#45;&gt;212 -->\\n\",\n       \"<g id=\\\"edge212\\\" class=\\\"edge\\\">\\n\",\n       \"<title>210&#45;&gt;212</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5902.6302,-885.8089C5916.4715,-876.2632 5931.7573,-865.7213 5946.0683,-855.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5948.1185,-858.6894 5954.3635,-850.1308 5944.1443,-852.9269 5948.1185,-858.6894\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 213 -->\\n\",\n       \"<g id=\\\"node214\\\" class=\\\"node\\\">\\n\",\n       \"<title>213</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5955.0733,-743C5955.0733,-743 5866.8329,-743 5866.8329,-743 5860.8329,-743 5854.8329,-737 5854.8329,-731 5854.8329,-731 5854.8329,-705 5854.8329,-705 5854.8329,-699 5860.8329,-693 5866.8329,-693 5866.8329,-693 5955.0733,-693 5955.0733,-693 5961.0733,-693 5967.0733,-699 5967.0733,-705 5967.0733,-705 5967.0733,-731 5967.0733,-731 5967.0733,-737 5961.0733,-743 5955.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5910.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5910.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5910.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 212&#45;&gt;213 -->\\n\",\n       \"<g id=\\\"edge213\\\" class=\\\"edge\\\">\\n\",\n       \"<title>212&#45;&gt;213</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5971.9812,-785.8089C5961.8773,-774.5824 5950.5334,-761.978 5940.392,-750.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5942.8843,-748.2471 5933.5931,-743.1555 5937.6813,-752.9299 5942.8843,-748.2471\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 214 -->\\n\",\n       \"<g id=\\\"node215\\\" class=\\\"node\\\">\\n\",\n       \"<title>214</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6085.0733,-743C6085.0733,-743 5996.8329,-743 5996.8329,-743 5990.8329,-743 5984.8329,-737 5984.8329,-731 5984.8329,-731 5984.8329,-705 5984.8329,-705 5984.8329,-699 5990.8329,-693 5996.8329,-693 5996.8329,-693 6085.0733,-693 6085.0733,-693 6091.0733,-693 6097.0733,-699 6097.0733,-705 6097.0733,-705 6097.0733,-731 6097.0733,-731 6097.0733,-737 6091.0733,-743 6085.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6040.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6040.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6040.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 212&#45;&gt;214 -->\\n\",\n       \"<g id=\\\"edge214\\\" class=\\\"edge\\\">\\n\",\n       \"<title>212&#45;&gt;214</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6013.8296,-785.8089C6018.0611,-775.2301 6022.782,-763.4278 6027.084,-752.6729\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6030.4266,-753.7402 6030.8909,-743.1555 6023.9273,-751.1404 6030.4266,-753.7402\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 217 -->\\n\",\n       \"<g id=\\\"node218\\\" class=\\\"node\\\">\\n\",\n       \"<title>217</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6969.345,-1150C6969.345,-1150 6690.5613,-1150 6690.5613,-1150 6684.5613,-1150 6678.5613,-1144 6678.5613,-1138 6678.5613,-1138 6678.5613,-1098 6678.5613,-1098 6678.5613,-1092 6684.5613,-1086 6690.5613,-1086 6690.5613,-1086 6969.345,-1086 6969.345,-1086 6975.345,-1086 6981.345,-1092 6981.345,-1098 6981.345,-1098 6981.345,-1138 6981.345,-1138 6981.345,-1144 6975.345,-1150 6969.345,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6829.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6829.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.545</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6829.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 36</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6829.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [19, 15, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 216&#45;&gt;217 -->\\n\",\n       \"<g id=\\\"edge217\\\" class=\\\"edge\\\">\\n\",\n       \"<title>216&#45;&gt;217</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6924.2075,-1185.8089C6911.0629,-1176.3524 6896.5594,-1165.9182 6882.9517,-1156.1285\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6884.7765,-1153.1296 6874.6149,-1150.1308 6880.6885,-1158.8119 6884.7765,-1153.1296\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 248 -->\\n\",\n       \"<g id=\\\"node249\\\" class=\\\"node\\\">\\n\",\n       \"<title>248</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7228.6459,-1150C7228.6459,-1150 7125.2604,-1150 7125.2604,-1150 7119.2604,-1150 7113.2604,-1144 7113.2604,-1138 7113.2604,-1138 7113.2604,-1098 7113.2604,-1098 7113.2604,-1092 7119.2604,-1086 7125.2604,-1086 7125.2604,-1086 7228.6459,-1086 7228.6459,-1086 7234.6459,-1086 7240.6459,-1092 7240.6459,-1098 7240.6459,-1098 7240.6459,-1138 7240.6459,-1138 7240.6459,-1144 7234.6459,-1150 7228.6459,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7176.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7176.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.301</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7176.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 61</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7176.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [50, 10, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 216&#45;&gt;248 -->\\n\",\n       \"<g id=\\\"edge248\\\" class=\\\"edge\\\">\\n\",\n       \"<title>216&#45;&gt;248</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7035.6239,-1185.9467C7057.4513,-1175.4528 7081.8081,-1163.7428 7104.0698,-1153.0401\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7105.6439,-1156.1668 7113.1399,-1148.6794 7102.6108,-1149.858 7105.6439,-1156.1668\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 218 -->\\n\",\n       \"<g id=\\\"node219\\\" class=\\\"node\\\">\\n\",\n       \"<title>218</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6599.0452,-1050C6599.0452,-1050 6342.861,-1050 6342.861,-1050 6336.861,-1050 6330.861,-1044 6330.861,-1038 6330.861,-1038 6330.861,-998 6330.861,-998 6330.861,-992 6336.861,-986 6342.861,-986 6342.861,-986 6599.0452,-986 6599.0452,-986 6605.0452,-986 6611.0452,-992 6611.0452,-998 6611.0452,-998 6611.0452,-1038 6611.0452,-1038 6611.0452,-1044 6605.0452,-1050 6599.0452,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6470.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6470.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.563</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6470.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 25</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6470.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [10, 13, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 217&#45;&gt;218 -->\\n\",\n       \"<g id=\\\"edge218\\\" class=\\\"edge\\\">\\n\",\n       \"<title>217&#45;&gt;218</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6714.882,-1085.9467C6676.8794,-1075.3611 6634.4346,-1063.538 6595.7403,-1052.7597\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6596.561,-1049.3551 6585.9886,-1050.0433 6594.6826,-1056.0984 6596.561,-1049.3551\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 241 -->\\n\",\n       \"<g id=\\\"node242\\\" class=\\\"node\\\">\\n\",\n       \"<title>241</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6955.3108,-1050C6955.3108,-1050 6704.5955,-1050 6704.5955,-1050 6698.5955,-1050 6692.5955,-1044 6692.5955,-1038 6692.5955,-1038 6692.5955,-998 6692.5955,-998 6692.5955,-992 6698.5955,-986 6704.5955,-986 6704.5955,-986 6955.3108,-986 6955.3108,-986 6961.3108,-986 6967.3108,-992 6967.3108,-998 6967.3108,-998 6967.3108,-1038 6967.3108,-1038 6967.3108,-1044 6961.3108,-1050 6955.3108,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6829.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6829.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.298</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6829.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 11</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6829.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [9, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 217&#45;&gt;241 -->\\n\",\n       \"<g id=\\\"edge241\\\" class=\\\"edge\\\">\\n\",\n       \"<title>217&#45;&gt;241</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6829.9531,-1085.8089C6829.9531,-1077.6906 6829.9531,-1068.8517 6829.9531,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6833.4532,-1060.1307 6829.9531,-1050.1308 6826.4532,-1060.1308 6833.4532,-1060.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 219 -->\\n\",\n       \"<g id=\\\"node220\\\" class=\\\"node\\\">\\n\",\n       \"<title>219</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6384.4727,-950C6384.4727,-950 6129.4336,-950 6129.4336,-950 6123.4336,-950 6117.4336,-944 6117.4336,-938 6117.4336,-938 6117.4336,-898 6117.4336,-898 6117.4336,-892 6123.4336,-886 6129.4336,-886 6129.4336,-886 6384.4727,-886 6384.4727,-886 6390.4727,-886 6396.4727,-892 6396.4727,-898 6396.4727,-898 6396.4727,-938 6396.4727,-938 6396.4727,-944 6390.4727,-950 6384.4727,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6256.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6256.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.541</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6256.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 22</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6256.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [7, 13, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 218&#45;&gt;219 -->\\n\",\n       \"<g id=\\\"edge219\\\" class=\\\"edge\\\">\\n\",\n       \"<title>218&#45;&gt;219</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6402.3592,-985.9467C6380.8577,-975.8993 6356.9706,-964.7372 6334.874,-954.4116\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6336.0672,-951.106 6325.5258,-950.0433 6333.1037,-957.4477 6336.0672,-951.106\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 240 -->\\n\",\n       \"<g id=\\\"node241\\\" class=\\\"node\\\">\\n\",\n       \"<title>240</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6515.0733,-943C6515.0733,-943 6426.8329,-943 6426.8329,-943 6420.8329,-943 6414.8329,-937 6414.8329,-931 6414.8329,-931 6414.8329,-905 6414.8329,-905 6414.8329,-899 6420.8329,-893 6426.8329,-893 6426.8329,-893 6515.0733,-893 6515.0733,-893 6521.0733,-893 6527.0733,-899 6527.0733,-905 6527.0733,-905 6527.0733,-931 6527.0733,-931 6527.0733,-937 6521.0733,-943 6515.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6470.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6470.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6470.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 218&#45;&gt;240 -->\\n\",\n       \"<g id=\\\"edge240\\\" class=\\\"edge\\\">\\n\",\n       \"<title>218&#45;&gt;240</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6470.9531,-985.8089C6470.9531,-975.446 6470.9531,-963.909 6470.9531,-953.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6474.4532,-953.1555 6470.9531,-943.1555 6467.4532,-953.1556 6474.4532,-953.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 220 -->\\n\",\n       \"<g id=\\\"node221\\\" class=\\\"node\\\">\\n\",\n       \"<title>220</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6345.9521,-850C6345.9521,-850 6167.9541,-850 6167.9541,-850 6161.9541,-850 6155.9541,-844 6155.9541,-838 6155.9541,-838 6155.9541,-798 6155.9541,-798 6155.9541,-792 6161.9541,-786 6167.9541,-786 6167.9541,-786 6345.9521,-786 6345.9521,-786 6351.9521,-786 6357.9521,-792 6357.9521,-798 6357.9521,-798 6357.9521,-838 6357.9521,-838 6357.9521,-844 6351.9521,-850 6345.9521,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6256.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6256.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.569</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6256.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 12</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6256.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 5, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 219&#45;&gt;220 -->\\n\",\n       \"<g id=\\\"edge220\\\" class=\\\"edge\\\">\\n\",\n       \"<title>219&#45;&gt;220</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6256.9531,-885.8089C6256.9531,-877.6906 6256.9531,-868.8517 6256.9531,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6260.4532,-860.1307 6256.9531,-850.1308 6253.4532,-860.1308 6260.4532,-860.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 233 -->\\n\",\n       \"<g id=\\\"node234\\\" class=\\\"node\\\">\\n\",\n       \"<title>233</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6593.6486,-850C6593.6486,-850 6390.2576,-850 6390.2576,-850 6384.2576,-850 6378.2576,-844 6378.2576,-838 6378.2576,-838 6378.2576,-798 6378.2576,-798 6378.2576,-792 6384.2576,-786 6390.2576,-786 6390.2576,-786 6593.6486,-786 6593.6486,-786 6599.6486,-786 6605.6486,-792 6605.6486,-798 6605.6486,-798 6605.6486,-838 6605.6486,-838 6605.6486,-844 6599.6486,-850 6593.6486,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6491.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6491.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.34</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6491.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 10</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6491.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 8, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 219&#45;&gt;233 -->\\n\",\n       \"<g id=\\\"edge233\\\" class=\\\"edge\\\">\\n\",\n       \"<title>219&#45;&gt;233</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6332.2783,-885.9467C6356.2059,-875.7648 6382.8239,-864.438 6407.3597,-853.9972\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6408.8203,-857.1795 6416.6514,-850.0433 6406.0794,-850.7384 6408.8203,-857.1795\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 221 -->\\n\",\n       \"<g id=\\\"node222\\\" class=\\\"node\\\">\\n\",\n       \"<title>221</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6378.5967,-750C6378.5967,-750 6127.3095,-750 6127.3095,-750 6121.3095,-750 6115.3095,-744 6115.3095,-738 6115.3095,-738 6115.3095,-698 6115.3095,-698 6115.3095,-692 6121.3095,-686 6127.3095,-686 6127.3095,-686 6378.5967,-686 6378.5967,-686 6384.5967,-686 6390.5967,-692 6390.5967,-698 6390.5967,-698 6390.5967,-738 6390.5967,-738 6390.5967,-744 6384.5967,-750 6378.5967,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6252.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6252.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.568</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6252.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6252.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 5, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 220&#45;&gt;221 -->\\n\",\n       \"<g id=\\\"edge221\\\" class=\\\"edge\\\">\\n\",\n       \"<title>220&#45;&gt;221</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6255.6655,-785.8089C6255.3407,-777.6906 6254.9872,-768.8517 6254.6459,-760.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6258.1353,-759.9828 6254.2384,-750.1308 6251.1409,-760.2627 6258.1353,-759.9828\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 232 -->\\n\",\n       \"<g id=\\\"node233\\\" class=\\\"node\\\">\\n\",\n       \"<title>232</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6509.0733,-743C6509.0733,-743 6420.8329,-743 6420.8329,-743 6414.8329,-743 6408.8329,-737 6408.8329,-731 6408.8329,-731 6408.8329,-705 6408.8329,-705 6408.8329,-699 6414.8329,-693 6420.8329,-693 6420.8329,-693 6509.0733,-693 6509.0733,-693 6515.0733,-693 6521.0733,-699 6521.0733,-705 6521.0733,-705 6521.0733,-731 6521.0733,-731 6521.0733,-737 6515.0733,-743 6509.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6464.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6464.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6464.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 220&#45;&gt;232 -->\\n\",\n       \"<g id=\\\"edge232\\\" class=\\\"edge\\\">\\n\",\n       \"<title>220&#45;&gt;232</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6325.0552,-785.8473C6348.7909,-774.5798 6375.5788,-761.7945 6399.9531,-750 6401.6939,-749.1577 6403.4601,-748.3011 6405.2423,-747.435\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6406.7882,-750.5751 6414.2436,-743.0474 6403.721,-744.2828 6406.7882,-750.5751\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 222 -->\\n\",\n       \"<g id=\\\"node223\\\" class=\\\"node\\\">\\n\",\n       \"<title>222</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6124.6418,-650C6124.6418,-650 5921.2644,-650 5921.2644,-650 5915.2644,-650 5909.2644,-644 5909.2644,-638 5909.2644,-638 5909.2644,-598 5909.2644,-598 5909.2644,-592 5915.2644,-586 5921.2644,-586 5921.2644,-586 6124.6418,-586 6124.6418,-586 6130.6418,-586 6136.6418,-592 6136.6418,-598 6136.6418,-598 6136.6418,-638 6136.6418,-638 6136.6418,-644 6130.6418,-650 6124.6418,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6022.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6022.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.408</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6022.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6022.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 221&#45;&gt;222 -->\\n\",\n       \"<g id=\\\"edge222\\\" class=\\\"edge\\\">\\n\",\n       \"<title>221&#45;&gt;222</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6179.2306,-685.9467C6155.9153,-675.8096 6129.9899,-664.5377 6106.0642,-654.1352\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6107.219,-650.8209 6096.6527,-650.0433 6104.4279,-657.2404 6107.219,-650.8209\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 229 -->\\n\",\n       \"<g id=\\\"node230\\\" class=\\\"node\\\">\\n\",\n       \"<title>229</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6383.3555,-650C6383.3555,-650 6166.5508,-650 6166.5508,-650 6160.5508,-650 6154.5508,-644 6154.5508,-638 6154.5508,-638 6154.5508,-598 6154.5508,-598 6154.5508,-592 6160.5508,-586 6166.5508,-586 6166.5508,-586 6383.3555,-586 6383.3555,-586 6389.3555,-586 6395.3555,-592 6395.3555,-598 6395.3555,-598 6395.3555,-638 6395.3555,-638 6395.3555,-644 6389.3555,-650 6383.3555,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6274.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6274.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6274.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6274.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 221&#45;&gt;229 -->\\n\",\n       \"<g id=\\\"edge229\\\" class=\\\"edge\\\">\\n\",\n       \"<title>221&#45;&gt;229</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6260.0352,-685.8089C6261.8408,-677.6014 6263.8085,-668.6574 6265.7049,-660.0374\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6269.1539,-660.6492 6267.8844,-650.1308 6262.3174,-659.1452 6269.1539,-660.6492\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 223 -->\\n\",\n       \"<g id=\\\"node224\\\" class=\\\"node\\\">\\n\",\n       \"<title>223</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5882.0733,-543C5882.0733,-543 5793.8329,-543 5793.8329,-543 5787.8329,-543 5781.8329,-537 5781.8329,-531 5781.8329,-531 5781.8329,-505 5781.8329,-505 5781.8329,-499 5787.8329,-493 5793.8329,-493 5793.8329,-493 5882.0733,-493 5882.0733,-493 5888.0733,-493 5894.0733,-499 5894.0733,-505 5894.0733,-505 5894.0733,-531 5894.0733,-531 5894.0733,-537 5888.0733,-543 5882.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5837.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5837.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5837.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 222&#45;&gt;223 -->\\n\",\n       \"<g id=\\\"edge223\\\" class=\\\"edge\\\">\\n\",\n       \"<title>222&#45;&gt;223</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M5963.6546,-585.9467C5941.0826,-573.7457 5915.4693,-559.9007 5893.2797,-547.9062\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"5894.7812,-544.7393 5884.3198,-543.0631 5891.4526,-550.8973 5894.7812,-544.7393\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 224 -->\\n\",\n       \"<g id=\\\"node225\\\" class=\\\"node\\\">\\n\",\n       \"<title>224</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6165.4926,-550C6165.4926,-550 5924.4137,-550 5924.4137,-550 5918.4137,-550 5912.4137,-544 5912.4137,-538 5912.4137,-538 5912.4137,-498 5912.4137,-498 5912.4137,-492 5918.4137,-486 5924.4137,-486 5924.4137,-486 6165.4926,-486 6165.4926,-486 6171.4926,-486 6177.4926,-492 6177.4926,-498 6177.4926,-498 6177.4926,-538 6177.4926,-538 6177.4926,-544 6171.4926,-550 6165.4926,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6044.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Military, armaments, and defense &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6044.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6044.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6044.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 222&#45;&gt;224 -->\\n\",\n       \"<g id=\\\"edge224\\\" class=\\\"edge\\\">\\n\",\n       \"<title>222&#45;&gt;224</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6030.0352,-585.8089C6031.8408,-577.6014 6033.8085,-568.6574 6035.7049,-560.0374\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6039.1539,-560.6492 6037.8844,-550.1308 6032.3174,-559.1452 6039.1539,-560.6492\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 225 -->\\n\",\n       \"<g id=\\\"node226\\\" class=\\\"node\\\">\\n\",\n       \"<title>225</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6024.0733,-443C6024.0733,-443 5935.8329,-443 5935.8329,-443 5929.8329,-443 5923.8329,-437 5923.8329,-431 5923.8329,-431 5923.8329,-405 5923.8329,-405 5923.8329,-399 5929.8329,-393 5935.8329,-393 5935.8329,-393 6024.0733,-393 6024.0733,-393 6030.0733,-393 6036.0733,-399 6036.0733,-405 6036.0733,-405 6036.0733,-431 6036.0733,-431 6036.0733,-437 6030.0733,-443 6024.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5979.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5979.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"5979.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 224&#45;&gt;225 -->\\n\",\n       \"<g id=\\\"edge225\\\" class=\\\"edge\\\">\\n\",\n       \"<title>224&#45;&gt;225</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6024.0289,-485.8089C6016.9422,-474.9063 6009.0108,-462.7041 6001.8505,-451.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6004.6887,-449.6325 5996.3042,-443.1555 5998.8196,-453.4475 6004.6887,-449.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 226 -->\\n\",\n       \"<g id=\\\"node227\\\" class=\\\"node\\\">\\n\",\n       \"<title>226</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6154.0733,-450C6154.0733,-450 6065.8329,-450 6065.8329,-450 6059.8329,-450 6053.8329,-444 6053.8329,-438 6053.8329,-438 6053.8329,-398 6053.8329,-398 6053.8329,-392 6059.8329,-386 6065.8329,-386 6065.8329,-386 6154.0733,-386 6154.0733,-386 6160.0733,-386 6166.0733,-392 6166.0733,-398 6166.0733,-398 6166.0733,-438 6166.0733,-438 6166.0733,-444 6160.0733,-450 6154.0733,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6109.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6109.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6109.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6109.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 224&#45;&gt;226 -->\\n\",\n       \"<g id=\\\"edge226\\\" class=\\\"edge\\\">\\n\",\n       \"<title>224&#45;&gt;226</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6065.8773,-485.8089C6071.5022,-477.1553 6077.6592,-467.683 6083.5404,-458.635\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6086.5528,-460.4227 6089.0681,-450.1308 6080.6836,-456.6077 6086.5528,-460.4227\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 227 -->\\n\",\n       \"<g id=\\\"node228\\\" class=\\\"node\\\">\\n\",\n       \"<title>227</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6089.0733,-343C6089.0733,-343 6000.8329,-343 6000.8329,-343 5994.8329,-343 5988.8329,-337 5988.8329,-331 5988.8329,-331 5988.8329,-305 5988.8329,-305 5988.8329,-299 5994.8329,-293 6000.8329,-293 6000.8329,-293 6089.0733,-293 6089.0733,-293 6095.0733,-293 6101.0733,-299 6101.0733,-305 6101.0733,-305 6101.0733,-331 6101.0733,-331 6101.0733,-337 6095.0733,-343 6089.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6044.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6044.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6044.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 226&#45;&gt;227 -->\\n\",\n       \"<g id=\\\"edge227\\\" class=\\\"edge\\\">\\n\",\n       \"<title>226&#45;&gt;227</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6089.0289,-385.8089C6081.9422,-374.9063 6074.0108,-362.7041 6066.8505,-351.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6069.6887,-349.6325 6061.3042,-343.1555 6063.8196,-353.4475 6069.6887,-349.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 228 -->\\n\",\n       \"<g id=\\\"node229\\\" class=\\\"node\\\">\\n\",\n       \"<title>228</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6219.0733,-343C6219.0733,-343 6130.8329,-343 6130.8329,-343 6124.8329,-343 6118.8329,-337 6118.8329,-331 6118.8329,-331 6118.8329,-305 6118.8329,-305 6118.8329,-299 6124.8329,-293 6130.8329,-293 6130.8329,-293 6219.0733,-293 6219.0733,-293 6225.0733,-293 6231.0733,-299 6231.0733,-305 6231.0733,-305 6231.0733,-331 6231.0733,-331 6231.0733,-337 6225.0733,-343 6219.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6174.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6174.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6174.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 226&#45;&gt;228 -->\\n\",\n       \"<g id=\\\"edge228\\\" class=\\\"edge\\\">\\n\",\n       \"<title>226&#45;&gt;228</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6130.8773,-385.8089C6137.9641,-374.9063 6145.8955,-362.7041 6153.0558,-351.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6156.0867,-353.4475 6158.602,-343.1555 6150.2175,-349.6325 6156.0867,-353.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 230 -->\\n\",\n       \"<g id=\\\"node231\\\" class=\\\"node\\\">\\n\",\n       \"<title>230</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6308.0733,-543C6308.0733,-543 6219.8329,-543 6219.8329,-543 6213.8329,-543 6207.8329,-537 6207.8329,-531 6207.8329,-531 6207.8329,-505 6207.8329,-505 6207.8329,-499 6213.8329,-493 6219.8329,-493 6219.8329,-493 6308.0733,-493 6308.0733,-493 6314.0733,-493 6320.0733,-499 6320.0733,-505 6320.0733,-505 6320.0733,-531 6320.0733,-531 6320.0733,-537 6314.0733,-543 6308.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6263.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6263.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6263.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 229&#45;&gt;230 -->\\n\",\n       \"<g id=\\\"edge230\\\" class=\\\"edge\\\">\\n\",\n       \"<title>229&#45;&gt;230</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6271.4121,-585.8089C6270.2722,-575.446 6269.0031,-563.909 6267.8397,-553.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6271.2927,-552.7129 6266.7202,-543.1555 6264.3347,-553.4783 6271.2927,-552.7129\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 231 -->\\n\",\n       \"<g id=\\\"node232\\\" class=\\\"node\\\">\\n\",\n       \"<title>231</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6438.0733,-543C6438.0733,-543 6349.8329,-543 6349.8329,-543 6343.8329,-543 6337.8329,-537 6337.8329,-531 6337.8329,-531 6337.8329,-505 6337.8329,-505 6337.8329,-499 6343.8329,-493 6349.8329,-493 6349.8329,-493 6438.0733,-493 6438.0733,-493 6444.0733,-493 6450.0733,-499 6450.0733,-505 6450.0733,-505 6450.0733,-531 6450.0733,-531 6450.0733,-537 6444.0733,-543 6438.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6393.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6393.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6393.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 229&#45;&gt;231 -->\\n\",\n       \"<g id=\\\"edge231\\\" class=\\\"edge\\\">\\n\",\n       \"<title>229&#45;&gt;231</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6313.2605,-585.8089C6327.0054,-574.2586 6342.486,-561.2497 6356.1848,-549.7381\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6358.6139,-552.2685 6364.018,-543.1555 6354.1105,-546.9095 6358.6139,-552.2685\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 234 -->\\n\",\n       \"<g id=\\\"node235\\\" class=\\\"node\\\">\\n\",\n       \"<title>234</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6639.1966,-750C6639.1966,-750 6550.7097,-750 6550.7097,-750 6544.7097,-750 6538.7097,-744 6538.7097,-738 6538.7097,-738 6538.7097,-698 6538.7097,-698 6538.7097,-692 6544.7097,-686 6550.7097,-686 6550.7097,-686 6639.1966,-686 6639.1966,-686 6645.1966,-686 6651.1966,-692 6651.1966,-698 6651.1966,-698 6651.1966,-738 6651.1966,-738 6651.1966,-744 6645.1966,-750 6639.1966,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6594.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6594.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.198</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6594.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6594.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 8, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 233&#45;&gt;234 -->\\n\",\n       \"<g id=\\\"edge234\\\" class=\\\"edge\\\">\\n\",\n       \"<title>233&#45;&gt;234</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6525.1099,-785.8089C6534.4826,-776.7092 6544.7877,-766.7043 6554.5365,-757.2394\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6557.1217,-759.6078 6561.8584,-750.1308 6552.2456,-754.5854 6557.1217,-759.6078\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 239 -->\\n\",\n       \"<g id=\\\"node240\\\" class=\\\"node\\\">\\n\",\n       \"<title>239</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6769.0733,-743C6769.0733,-743 6680.8329,-743 6680.8329,-743 6674.8329,-743 6668.8329,-737 6668.8329,-731 6668.8329,-731 6668.8329,-705 6668.8329,-705 6668.8329,-699 6674.8329,-693 6680.8329,-693 6680.8329,-693 6769.0733,-693 6769.0733,-693 6775.0733,-693 6781.0733,-699 6781.0733,-705 6781.0733,-705 6781.0733,-731 6781.0733,-731 6781.0733,-737 6775.0733,-743 6769.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6724.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6724.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6724.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 233&#45;&gt;239 -->\\n\",\n       \"<g id=\\\"edge239\\\" class=\\\"edge\\\">\\n\",\n       \"<title>233&#45;&gt;239</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6574.4899,-785.9833C6601.8674,-774.9947 6632.3845,-762.3458 6659.9531,-750 6661.8042,-749.171 6663.68,-748.3196 6665.57,-747.4517\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6667.5118,-750.4077 6675.0904,-743.0039 6664.5489,-744.0656 6667.5118,-750.4077\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 235 -->\\n\",\n       \"<g id=\\\"node236\\\" class=\\\"node\\\">\\n\",\n       \"<title>235</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6682.4926,-650C6682.4926,-650 6441.4137,-650 6441.4137,-650 6435.4137,-650 6429.4137,-644 6429.4137,-638 6429.4137,-638 6429.4137,-598 6429.4137,-598 6429.4137,-592 6435.4137,-586 6441.4137,-586 6441.4137,-586 6682.4926,-586 6682.4926,-586 6688.4926,-586 6694.4926,-592 6694.4926,-598 6694.4926,-598 6694.4926,-638 6694.4926,-638 6694.4926,-644 6688.4926,-650 6682.4926,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6561.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Military, armaments, and defense &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6561.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6561.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6561.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 234&#45;&gt;235 -->\\n\",\n       \"<g id=\\\"edge235\\\" class=\\\"edge\\\">\\n\",\n       \"<title>234&#45;&gt;235</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6584.3301,-685.8089C6581.5921,-677.5122 6578.6059,-668.4628 6575.7328,-659.7565\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6579.0138,-658.5302 6572.5563,-650.1308 6572.3664,-660.7239 6579.0138,-658.5302\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 238 -->\\n\",\n       \"<g id=\\\"node239\\\" class=\\\"node\\\">\\n\",\n       \"<title>238</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6813.0733,-643C6813.0733,-643 6724.8329,-643 6724.8329,-643 6718.8329,-643 6712.8329,-637 6712.8329,-631 6712.8329,-631 6712.8329,-605 6712.8329,-605 6712.8329,-599 6718.8329,-593 6724.8329,-593 6724.8329,-593 6813.0733,-593 6813.0733,-593 6819.0733,-593 6825.0733,-599 6825.0733,-605 6825.0733,-605 6825.0733,-631 6825.0733,-631 6825.0733,-637 6819.0733,-643 6813.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6768.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6768.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6768.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 7, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 234&#45;&gt;238 -->\\n\",\n       \"<g id=\\\"edge238\\\" class=\\\"edge\\\">\\n\",\n       \"<title>234&#45;&gt;238</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6650.9656,-685.8089C6671.9084,-673.7728 6695.607,-660.1529 6716.2419,-648.2938\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6718.2563,-651.173 6725.1825,-643.1555 6714.7683,-645.1039 6718.2563,-651.173\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 236 -->\\n\",\n       \"<g id=\\\"node237\\\" class=\\\"node\\\">\\n\",\n       \"<title>236</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6573.0733,-543C6573.0733,-543 6484.8329,-543 6484.8329,-543 6478.8329,-543 6472.8329,-537 6472.8329,-531 6472.8329,-531 6472.8329,-505 6472.8329,-505 6472.8329,-499 6478.8329,-493 6484.8329,-493 6484.8329,-493 6573.0733,-493 6573.0733,-493 6579.0733,-493 6585.0733,-499 6585.0733,-505 6585.0733,-505 6585.0733,-531 6585.0733,-531 6585.0733,-537 6579.0733,-543 6573.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6528.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6528.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6528.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 235&#45;&gt;236 -->\\n\",\n       \"<g id=\\\"edge236\\\" class=\\\"edge\\\">\\n\",\n       \"<title>235&#45;&gt;236</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6551.3301,-585.8089C6547.8391,-575.2301 6543.9443,-563.4278 6540.3952,-552.6729\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6543.712,-551.555 6537.2545,-543.1555 6537.0646,-553.7487 6543.712,-551.555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 237 -->\\n\",\n       \"<g id=\\\"node238\\\" class=\\\"node\\\">\\n\",\n       \"<title>237</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6703.0733,-543C6703.0733,-543 6614.8329,-543 6614.8329,-543 6608.8329,-543 6602.8329,-537 6602.8329,-531 6602.8329,-531 6602.8329,-505 6602.8329,-505 6602.8329,-499 6608.8329,-493 6614.8329,-493 6614.8329,-493 6703.0733,-493 6703.0733,-493 6709.0733,-493 6715.0733,-499 6715.0733,-505 6715.0733,-505 6715.0733,-531 6715.0733,-531 6715.0733,-537 6709.0733,-543 6703.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6658.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6658.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6658.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 235&#45;&gt;237 -->\\n\",\n       \"<g id=\\\"edge237\\\" class=\\\"edge\\\">\\n\",\n       \"<title>235&#45;&gt;237</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6593.1785,-585.8089C6604.1729,-574.4745 6616.5297,-561.7355 6627.5395,-550.3851\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6630.1019,-552.7704 6634.5522,-543.1555 6625.0774,-547.8966 6630.1019,-552.7704\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 242 -->\\n\",\n       \"<g id=\\\"node243\\\" class=\\\"node\\\">\\n\",\n       \"<title>242</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6808.5967,-950C6808.5967,-950 6557.3095,-950 6557.3095,-950 6551.3095,-950 6545.3095,-944 6545.3095,-938 6545.3095,-938 6545.3095,-898 6545.3095,-898 6545.3095,-892 6551.3095,-886 6557.3095,-886 6557.3095,-886 6808.5967,-886 6808.5967,-886 6814.5967,-886 6820.5967,-892 6820.5967,-898 6820.5967,-898 6820.5967,-938 6820.5967,-938 6820.5967,-944 6814.5967,-950 6808.5967,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6682.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6682.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.18</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6682.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 10</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6682.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [9, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 241&#45;&gt;242 -->\\n\",\n       \"<g id=\\\"edge242\\\" class=\\\"edge\\\">\\n\",\n       \"<title>241&#45;&gt;242</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6782.6322,-985.8089C6768.6,-976.2632 6753.1034,-965.7213 6738.595,-955.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6740.4222,-952.8616 6730.1853,-950.1308 6736.4849,-958.6493 6740.4222,-952.8616\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 247 -->\\n\",\n       \"<g id=\\\"node248\\\" class=\\\"node\\\">\\n\",\n       \"<title>247</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6939.0733,-943C6939.0733,-943 6850.8329,-943 6850.8329,-943 6844.8329,-943 6838.8329,-937 6838.8329,-931 6838.8329,-931 6838.8329,-905 6838.8329,-905 6838.8329,-899 6844.8329,-893 6850.8329,-893 6850.8329,-893 6939.0733,-893 6939.0733,-893 6945.0733,-893 6951.0733,-899 6951.0733,-905 6951.0733,-905 6951.0733,-931 6951.0733,-931 6951.0733,-937 6945.0733,-943 6939.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6894.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6894.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6894.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 241&#45;&gt;247 -->\\n\",\n       \"<g id=\\\"edge247\\\" class=\\\"edge\\\">\\n\",\n       \"<title>241&#45;&gt;247</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6850.8773,-985.8089C6857.9641,-974.9063 6865.8955,-962.7041 6873.0558,-951.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6876.0867,-953.4475 6878.602,-943.1555 6870.2175,-949.6325 6876.0867,-953.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 243 -->\\n\",\n       \"<g id=\\\"node244\\\" class=\\\"node\\\">\\n\",\n       \"<title>243</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6724.0733,-843C6724.0733,-843 6635.8329,-843 6635.8329,-843 6629.8329,-843 6623.8329,-837 6623.8329,-831 6623.8329,-831 6623.8329,-805 6623.8329,-805 6623.8329,-799 6629.8329,-793 6635.8329,-793 6635.8329,-793 6724.0733,-793 6724.0733,-793 6730.0733,-793 6736.0733,-799 6736.0733,-805 6736.0733,-805 6736.0733,-831 6736.0733,-831 6736.0733,-837 6730.0733,-843 6724.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6679.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6679.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6679.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [7, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 242&#45;&gt;243 -->\\n\",\n       \"<g id=\\\"edge243\\\" class=\\\"edge\\\">\\n\",\n       \"<title>242&#45;&gt;243</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6681.9874,-885.8089C6681.6765,-875.446 6681.3304,-863.909 6681.0131,-853.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6684.5062,-853.0461 6680.7078,-843.1555 6677.5093,-853.256 6684.5062,-853.0461\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 244 -->\\n\",\n       \"<g id=\\\"node245\\\" class=\\\"node\\\">\\n\",\n       \"<title>244</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6987.518,-850C6987.518,-850 6766.3883,-850 6766.3883,-850 6760.3883,-850 6754.3883,-844 6754.3883,-838 6754.3883,-838 6754.3883,-798 6754.3883,-798 6754.3883,-792 6760.3883,-786 6766.3883,-786 6766.3883,-786 6987.518,-786 6987.518,-786 6993.518,-786 6999.518,-792 6999.518,-798 6999.518,-798 6999.518,-838 6999.518,-838 6999.518,-844 6993.518,-850 6987.518,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6876.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6876.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6876.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6876.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 242&#45;&gt;244 -->\\n\",\n       \"<g id=\\\"edge244\\\" class=\\\"edge\\\">\\n\",\n       \"<title>242&#45;&gt;244</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6745.1364,-885.9467C6764.4544,-875.989 6785.8965,-864.9364 6805.7776,-854.6884\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6807.5041,-857.7361 6814.7891,-850.0433 6804.2969,-851.5141 6807.5041,-857.7361\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 245 -->\\n\",\n       \"<g id=\\\"node246\\\" class=\\\"node\\\">\\n\",\n       \"<title>245</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6899.0733,-743C6899.0733,-743 6810.8329,-743 6810.8329,-743 6804.8329,-743 6798.8329,-737 6798.8329,-731 6798.8329,-731 6798.8329,-705 6798.8329,-705 6798.8329,-699 6804.8329,-693 6810.8329,-693 6810.8329,-693 6899.0733,-693 6899.0733,-693 6905.0733,-693 6911.0733,-699 6911.0733,-705 6911.0733,-705 6911.0733,-731 6911.0733,-731 6911.0733,-737 6905.0733,-743 6899.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6854.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6854.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6854.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 244&#45;&gt;245 -->\\n\",\n       \"<g id=\\\"edge245\\\" class=\\\"edge\\\">\\n\",\n       \"<title>244&#45;&gt;245</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6869.8711,-785.8089C6867.5675,-775.338 6865.0002,-763.6685 6862.6537,-753.0025\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6866.0543,-752.1699 6860.4873,-743.1555 6859.2178,-753.674 6866.0543,-752.1699\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 246 -->\\n\",\n       \"<g id=\\\"node247\\\" class=\\\"node\\\">\\n\",\n       \"<title>246</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7029.0733,-743C7029.0733,-743 6940.8329,-743 6940.8329,-743 6934.8329,-743 6928.8329,-737 6928.8329,-731 6928.8329,-731 6928.8329,-705 6928.8329,-705 6928.8329,-699 6934.8329,-693 6940.8329,-693 6940.8329,-693 7029.0733,-693 7029.0733,-693 7035.0733,-693 7041.0733,-699 7041.0733,-705 7041.0733,-705 7041.0733,-731 7041.0733,-731 7041.0733,-737 7035.0733,-743 7029.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6984.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6984.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6984.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 244&#45;&gt;246 -->\\n\",\n       \"<g id=\\\"edge246\\\" class=\\\"edge\\\">\\n\",\n       \"<title>244&#45;&gt;246</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6911.7195,-785.8089C6924.0773,-774.3665 6937.981,-761.4928 6950.327,-750.0612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6952.8254,-752.5178 6957.7851,-743.1555 6948.0696,-747.3815 6952.8254,-752.5178\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 249 -->\\n\",\n       \"<g id=\\\"node250\\\" class=\\\"node\\\">\\n\",\n       \"<title>249</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7278.6486,-1050C7278.6486,-1050 7075.2576,-1050 7075.2576,-1050 7069.2576,-1050 7063.2576,-1044 7063.2576,-1038 7063.2576,-1038 7063.2576,-998 7063.2576,-998 7063.2576,-992 7069.2576,-986 7075.2576,-986 7075.2576,-986 7278.6486,-986 7278.6486,-986 7284.6486,-986 7290.6486,-992 7290.6486,-998 7290.6486,-998 7290.6486,-1038 7290.6486,-1038 7290.6486,-1044 7284.6486,-1050 7278.6486,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7176.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7176.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.087</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7176.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 22</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7176.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [21, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 248&#45;&gt;249 -->\\n\",\n       \"<g id=\\\"edge249\\\" class=\\\"edge\\\">\\n\",\n       \"<title>248&#45;&gt;249</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7176.9531,-1085.8089C7176.9531,-1077.6906 7176.9531,-1068.8517 7176.9531,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7180.4532,-1060.1307 7176.9531,-1050.1308 7173.4532,-1060.1308 7180.4532,-1060.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 254 -->\\n\",\n       \"<g id=\\\"node255\\\" class=\\\"node\\\">\\n\",\n       \"<title>254</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7650.7903,-1050C7650.7903,-1050 7477.1159,-1050 7477.1159,-1050 7471.1159,-1050 7465.1159,-1044 7465.1159,-1038 7465.1159,-1038 7465.1159,-998 7465.1159,-998 7465.1159,-992 7471.1159,-986 7477.1159,-986 7477.1159,-986 7650.7903,-986 7650.7903,-986 7656.7903,-986 7662.7903,-992 7662.7903,-998 7662.7903,-998 7662.7903,-1038 7662.7903,-1038 7662.7903,-1044 7656.7903,-1050 7650.7903,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7563.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7563.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.393</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7563.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 39</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7563.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [29, 9, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 248&#45;&gt;254 -->\\n\",\n       \"<g id=\\\"edge254\\\" class=\\\"edge\\\">\\n\",\n       \"<title>248&#45;&gt;254</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7240.8583,-1101.487C7298.9709,-1086.4709 7385.9449,-1063.997 7455.0199,-1046.1481\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7456.2696,-1049.4402 7465.0759,-1043.5497 7454.5183,-1042.6628 7456.2696,-1049.4402\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 250 -->\\n\",\n       \"<g id=\\\"node251\\\" class=\\\"node\\\">\\n\",\n       \"<title>250</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7076.8594,-943C7076.8594,-943 6981.0468,-943 6981.0468,-943 6975.0468,-943 6969.0468,-937 6969.0468,-931 6969.0468,-931 6969.0468,-905 6969.0468,-905 6969.0468,-899 6975.0468,-893 6981.0468,-893 6981.0468,-893 7076.8594,-893 7076.8594,-893 7082.8594,-893 7088.8594,-899 7088.8594,-905 7088.8594,-905 7088.8594,-931 7088.8594,-931 7088.8594,-937 7082.8594,-943 7076.8594,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7028.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7028.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 20</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7028.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [20, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 249&#45;&gt;250 -->\\n\",\n       \"<g id=\\\"edge250\\\" class=\\\"edge\\\">\\n\",\n       \"<title>249&#45;&gt;250</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7129.3103,-985.8089C7111.7365,-973.9347 7091.8814,-960.5191 7074.4978,-948.7734\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7076.4288,-945.8541 7066.1833,-943.1555 7072.5097,-951.6542 7076.4288,-945.8541\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 251 -->\\n\",\n       \"<g id=\\\"node252\\\" class=\\\"node\\\">\\n\",\n       \"<title>251</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7392.6827,-950C7392.6827,-950 7119.2235,-950 7119.2235,-950 7113.2235,-950 7107.2235,-944 7107.2235,-938 7107.2235,-938 7107.2235,-898 7107.2235,-898 7107.2235,-892 7113.2235,-886 7119.2235,-886 7119.2235,-886 7392.6827,-886 7392.6827,-886 7398.6827,-886 7404.6827,-892 7404.6827,-898 7404.6827,-898 7404.6827,-938 7404.6827,-938 7404.6827,-944 7398.6827,-950 7392.6827,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7255.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7255.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7255.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7255.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 249&#45;&gt;251 -->\\n\",\n       \"<g id=\\\"edge251\\\" class=\\\"edge\\\">\\n\",\n       \"<title>249&#45;&gt;251</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7202.3841,-985.8089C7209.3614,-976.9769 7217.0124,-967.2921 7224.2931,-958.0759\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7227.1172,-960.1473 7230.5698,-950.1308 7221.6244,-955.8079 7227.1172,-960.1473\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 252 -->\\n\",\n       \"<g id=\\\"node253\\\" class=\\\"node\\\">\\n\",\n       \"<title>252</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7118.0733,-843C7118.0733,-843 7029.8329,-843 7029.8329,-843 7023.8329,-843 7017.8329,-837 7017.8329,-831 7017.8329,-831 7017.8329,-805 7017.8329,-805 7017.8329,-799 7023.8329,-793 7029.8329,-793 7029.8329,-793 7118.0733,-793 7118.0733,-793 7124.0733,-793 7130.0733,-799 7130.0733,-805 7130.0733,-805 7130.0733,-831 7130.0733,-831 7130.0733,-837 7124.0733,-843 7118.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7073.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7073.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7073.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 251&#45;&gt;252 -->\\n\",\n       \"<g id=\\\"edge252\\\" class=\\\"edge\\\">\\n\",\n       \"<title>251&#45;&gt;252</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7197.6162,-885.9467C7175.4102,-873.7457 7150.2123,-859.9007 7128.3825,-847.9062\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7130.0176,-844.8112 7119.5679,-843.0631 7126.6467,-850.9461 7130.0176,-844.8112\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 253 -->\\n\",\n       \"<g id=\\\"node254\\\" class=\\\"node\\\">\\n\",\n       \"<title>253</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7248.0733,-843C7248.0733,-843 7159.8329,-843 7159.8329,-843 7153.8329,-843 7147.8329,-837 7147.8329,-831 7147.8329,-831 7147.8329,-805 7147.8329,-805 7147.8329,-799 7153.8329,-793 7159.8329,-793 7159.8329,-793 7248.0733,-793 7248.0733,-793 7254.0733,-793 7260.0733,-799 7260.0733,-805 7260.0733,-805 7260.0733,-831 7260.0733,-831 7260.0733,-837 7254.0733,-843 7248.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7203.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7203.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7203.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 251&#45;&gt;253 -->\\n\",\n       \"<g id=\\\"edge253\\\" class=\\\"edge\\\">\\n\",\n       \"<title>251&#45;&gt;253</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7239.2138,-885.8089C7233.6566,-875.1221 7227.4503,-863.1868 7221.812,-852.344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7224.7528,-850.413 7217.034,-843.1555 7218.5423,-853.6425 7224.7528,-850.413\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 255 -->\\n\",\n       \"<g id=\\\"node256\\\" class=\\\"node\\\">\\n\",\n       \"<title>255</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7611.8594,-950C7611.8594,-950 7516.0468,-950 7516.0468,-950 7510.0468,-950 7504.0468,-944 7504.0468,-938 7504.0468,-938 7504.0468,-898 7504.0468,-898 7504.0468,-892 7510.0468,-886 7516.0468,-886 7516.0468,-886 7611.8594,-886 7611.8594,-886 7617.8594,-886 7623.8594,-892 7623.8594,-898 7623.8594,-898 7623.8594,-938 7623.8594,-938 7623.8594,-944 7617.8594,-950 7611.8594,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7563.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7563.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.346</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7563.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 36</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7563.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [28, 8, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 254&#45;&gt;255 -->\\n\",\n       \"<g id=\\\"edge255\\\" class=\\\"edge\\\">\\n\",\n       \"<title>254&#45;&gt;255</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7563.9531,-985.8089C7563.9531,-977.6906 7563.9531,-968.8517 7563.9531,-960.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7567.4532,-960.1307 7563.9531,-950.1308 7560.4532,-960.1308 7567.4532,-960.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 280 -->\\n\",\n       \"<g id=\\\"node281\\\" class=\\\"node\\\">\\n\",\n       \"<title>280</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8022.7071,-950C8022.7071,-950 7761.1991,-950 7761.1991,-950 7755.1991,-950 7749.1991,-944 7749.1991,-938 7749.1991,-938 7749.1991,-898 7749.1991,-898 7749.1991,-892 7755.1991,-886 7761.1991,-886 7761.1991,-886 8022.7071,-886 8022.7071,-886 8028.7071,-886 8034.7071,-892 8034.7071,-898 8034.7071,-898 8034.7071,-938 8034.7071,-938 8034.7071,-944 8028.7071,-950 8022.7071,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7891.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7891.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.667</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7891.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7891.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 254&#45;&gt;280 -->\\n\",\n       \"<g id=\\\"edge280\\\" class=\\\"edge\\\">\\n\",\n       \"<title>254&#45;&gt;280</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7662.8087,-987.8611C7698.7382,-976.907 7739.6489,-964.4342 7776.8616,-953.0889\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7778.1984,-956.3404 7786.743,-950.0763 7776.157,-949.6447 7778.1984,-956.3404\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 256 -->\\n\",\n       \"<g id=\\\"node257\\\" class=\\\"node\\\">\\n\",\n       \"<title>256</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7498.3108,-850C7498.3108,-850 7289.5954,-850 7289.5954,-850 7283.5954,-850 7277.5954,-844 7277.5954,-838 7277.5954,-838 7277.5954,-798 7277.5954,-798 7277.5954,-792 7283.5954,-786 7289.5954,-786 7289.5954,-786 7498.3108,-786 7498.3108,-786 7504.3108,-786 7510.3108,-792 7510.3108,-798 7510.3108,-798 7510.3108,-838 7510.3108,-838 7510.3108,-844 7504.3108,-850 7498.3108,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7393.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7393.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.432</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7393.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 19</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7393.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [13, 6, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 255&#45;&gt;256 -->\\n\",\n       \"<g id=\\\"edge256\\\" class=\\\"edge\\\">\\n\",\n       \"<title>255&#45;&gt;256</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7509.2283,-885.8089C7492.6972,-876.0848 7474.4087,-865.3268 7457.3612,-855.2989\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7458.9694,-852.1842 7448.5754,-850.1308 7455.4202,-858.2178 7458.9694,-852.1842\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 273 -->\\n\",\n       \"<g id=\\\"node274\\\" class=\\\"node\\\">\\n\",\n       \"<title>273</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7748.3108,-850C7748.3108,-850 7539.5954,-850 7539.5954,-850 7533.5954,-850 7527.5954,-844 7527.5954,-838 7527.5954,-838 7527.5954,-798 7527.5954,-798 7527.5954,-792 7533.5954,-786 7539.5954,-786 7539.5954,-786 7748.3108,-786 7748.3108,-786 7754.3108,-786 7760.3108,-792 7760.3108,-798 7760.3108,-798 7760.3108,-838 7760.3108,-838 7760.3108,-844 7754.3108,-850 7748.3108,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7643.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7643.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.208</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7643.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 17</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7643.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [15, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 255&#45;&gt;273 -->\\n\",\n       \"<g id=\\\"edge273\\\" class=\\\"edge\\\">\\n\",\n       \"<title>255&#45;&gt;273</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7589.706,-885.8089C7596.7716,-876.9769 7604.5195,-867.2921 7611.8924,-858.0759\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7614.7346,-860.1259 7618.2485,-850.1308 7609.2685,-855.753 7614.7346,-860.1259\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 257 -->\\n\",\n       \"<g id=\\\"node258\\\" class=\\\"node\\\">\\n\",\n       \"<title>257</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7240.8872,-750C7240.8872,-750 7071.019,-750 7071.019,-750 7065.019,-750 7059.019,-744 7059.019,-738 7059.019,-738 7059.019,-698 7059.019,-698 7059.019,-692 7065.019,-686 7071.019,-686 7071.019,-686 7240.8872,-686 7240.8872,-686 7246.8872,-686 7252.8872,-692 7252.8872,-698 7252.8872,-698 7252.8872,-738 7252.8872,-738 7252.8872,-744 7246.8872,-750 7240.8872,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7155.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Parks and recreation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7155.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.497</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7155.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 13</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7155.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [7, 6, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 256&#45;&gt;257 -->\\n\",\n       \"<g id=\\\"edge257\\\" class=\\\"edge\\\">\\n\",\n       \"<title>256&#45;&gt;257</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7317.6664,-785.9467C7293.4333,-775.7648 7266.4755,-764.438 7241.6265,-753.9972\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7242.7912,-750.6903 7232.2162,-750.0433 7240.0797,-757.1437 7242.7912,-750.6903\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 272 -->\\n\",\n       \"<g id=\\\"node273\\\" class=\\\"node\\\">\\n\",\n       \"<title>272</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7371.0733,-743C7371.0733,-743 7282.8329,-743 7282.8329,-743 7276.8329,-743 7270.8329,-737 7270.8329,-731 7270.8329,-731 7270.8329,-705 7270.8329,-705 7270.8329,-699 7276.8329,-693 7282.8329,-693 7282.8329,-693 7371.0733,-693 7371.0733,-693 7377.0733,-693 7383.0733,-699 7383.0733,-705 7383.0733,-705 7383.0733,-731 7383.0733,-731 7383.0733,-737 7377.0733,-743 7371.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7326.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7326.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7326.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 256&#45;&gt;272 -->\\n\",\n       \"<g id=\\\"edge272\\\" class=\\\"edge\\\">\\n\",\n       \"<title>256&#45;&gt;272</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7372.3851,-785.8089C7365.0803,-774.9063 7356.9049,-762.7041 7349.5242,-751.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7352.2812,-749.5151 7343.8073,-743.1555 7346.4658,-753.4114 7352.2812,-749.5151\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 258 -->\\n\",\n       \"<g id=\\\"node259\\\" class=\\\"node\\\">\\n\",\n       \"<title>258</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6995.0733,-643C6995.0733,-643 6906.8329,-643 6906.8329,-643 6900.8329,-643 6894.8329,-637 6894.8329,-631 6894.8329,-631 6894.8329,-605 6894.8329,-605 6894.8329,-599 6900.8329,-593 6906.8329,-593 6906.8329,-593 6995.0733,-593 6995.0733,-593 7001.0733,-593 7007.0733,-599 7007.0733,-605 7007.0733,-605 7007.0733,-631 7007.0733,-631 7007.0733,-637 7001.0733,-643 6995.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6950.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6950.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6950.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 257&#45;&gt;258 -->\\n\",\n       \"<g id=\\\"edge258\\\" class=\\\"edge\\\">\\n\",\n       \"<title>257&#45;&gt;258</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7089.6866,-685.9027C7066.3662,-674.5834 7039.9844,-661.7515 7015.9531,-650 7014.2158,-649.1505 7012.4528,-648.2875 7010.6733,-647.4159\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7012.202,-644.2674 7001.6824,-643.0068 7009.1198,-650.5523 7012.202,-644.2674\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 259 -->\\n\",\n       \"<g id=\\\"node260\\\" class=\\\"node\\\">\\n\",\n       \"<title>259</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7287.3108,-650C7287.3108,-650 7036.5955,-650 7036.5955,-650 7030.5955,-650 7024.5955,-644 7024.5955,-638 7024.5955,-638 7024.5955,-598 7024.5955,-598 7024.5955,-592 7030.5955,-586 7036.5955,-586 7036.5955,-586 7287.3108,-586 7287.3108,-586 7293.3108,-586 7299.3108,-592 7299.3108,-598 7299.3108,-598 7299.3108,-638 7299.3108,-638 7299.3108,-644 7293.3108,-650 7287.3108,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7161.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7161.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.463</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7161.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 11</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7161.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [7, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 257&#45;&gt;259 -->\\n\",\n       \"<g id=\\\"edge259\\\" class=\\\"edge\\\">\\n\",\n       \"<title>257&#45;&gt;259</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7157.8846,-685.8089C7158.3717,-677.6906 7158.902,-668.8517 7159.414,-660.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7162.92,-660.3225 7160.0253,-650.1308 7155.9325,-659.9032 7162.92,-660.3225\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 260 -->\\n\",\n       \"<g id=\\\"node261\\\" class=\\\"node\\\">\\n\",\n       \"<title>260</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7171.304,-550C7171.304,-550 6962.6023,-550 6962.6023,-550 6956.6023,-550 6950.6023,-544 6950.6023,-538 6950.6023,-538 6950.6023,-498 6950.6023,-498 6950.6023,-492 6956.6023,-486 6962.6023,-486 6962.6023,-486 7171.304,-486 7171.304,-486 7177.304,-486 7183.304,-492 7183.304,-498 7183.304,-498 7183.304,-538 7183.304,-538 7183.304,-544 7177.304,-550 7171.304,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7066.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7066.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.42</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7066.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 10</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7066.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [7, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 259&#45;&gt;260 -->\\n\",\n       \"<g id=\\\"edge260\\\" class=\\\"edge\\\">\\n\",\n       \"<title>259&#45;&gt;260</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7131.3716,-585.8089C7122.8117,-576.7985 7113.4085,-566.9004 7104.4952,-557.518\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7106.9024,-554.9701 7097.4773,-550.1308 7101.8274,-559.7914 7106.9024,-554.9701\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 271 -->\\n\",\n       \"<g id=\\\"node272\\\" class=\\\"node\\\">\\n\",\n       \"<title>271</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7301.0733,-543C7301.0733,-543 7212.8329,-543 7212.8329,-543 7206.8329,-543 7200.8329,-537 7200.8329,-531 7200.8329,-531 7200.8329,-505 7200.8329,-505 7200.8329,-499 7206.8329,-493 7212.8329,-493 7212.8329,-493 7301.0733,-493 7301.0733,-493 7307.0733,-493 7313.0733,-499 7313.0733,-505 7313.0733,-505 7313.0733,-531 7313.0733,-531 7313.0733,-537 7307.0733,-543 7301.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7256.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7256.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7256.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 259&#45;&gt;271 -->\\n\",\n       \"<g id=\\\"edge271\\\" class=\\\"edge\\\">\\n\",\n       \"<title>259&#45;&gt;271</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7192.5346,-585.8089C7203.1998,-574.5824 7215.174,-561.978 7225.8788,-550.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7228.7053,-552.8162 7233.0554,-543.1555 7223.6303,-547.9949 7228.7053,-552.8162\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 261 -->\\n\",\n       \"<g id=\\\"node262\\\" class=\\\"node\\\">\\n\",\n       \"<title>261</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7055.345,-450C7055.345,-450 6776.5613,-450 6776.5613,-450 6770.5613,-450 6764.5613,-444 6764.5613,-438 6764.5613,-438 6764.5613,-398 6764.5613,-398 6764.5613,-392 6770.5613,-386 6776.5613,-386 6776.5613,-386 7055.345,-386 7055.345,-386 7061.345,-386 7067.345,-392 7067.345,-398 7067.345,-398 7067.345,-438 7067.345,-438 7067.345,-444 7061.345,-450 7055.345,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6915.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6915.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6915.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6915.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 260&#45;&gt;261 -->\\n\",\n       \"<g id=\\\"edge261\\\" class=\\\"edge\\\">\\n\",\n       \"<title>260&#45;&gt;261</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7018.3446,-485.8089C7003.9305,-476.2632 6988.0122,-465.7213 6973.109,-455.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6974.7406,-452.7342 6964.4706,-450.1308 6970.8755,-458.5704 6974.7406,-452.7342\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 264 -->\\n\",\n       \"<g id=\\\"node265\\\" class=\\\"node\\\">\\n\",\n       \"<title>264</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7338.4926,-450C7338.4926,-450 7097.4137,-450 7097.4137,-450 7091.4137,-450 7085.4137,-444 7085.4137,-438 7085.4137,-438 7085.4137,-398 7085.4137,-398 7085.4137,-392 7091.4137,-386 7097.4137,-386 7097.4137,-386 7338.4926,-386 7338.4926,-386 7344.4926,-386 7350.4926,-392 7350.4926,-398 7350.4926,-398 7350.4926,-438 7350.4926,-438 7350.4926,-444 7344.4926,-450 7338.4926,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7217.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Military, armaments, and defense &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7217.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.245</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7217.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7217.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 260&#45;&gt;264 -->\\n\",\n       \"<g id=\\\"edge264\\\" class=\\\"edge\\\">\\n\",\n       \"<title>260&#45;&gt;264</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7115.5616,-485.8089C7129.9757,-476.2632 7145.894,-465.7213 7160.7972,-455.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7163.0307,-458.5704 7169.4357,-450.1308 7159.1657,-452.7342 7163.0307,-458.5704\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 262 -->\\n\",\n       \"<g id=\\\"node263\\\" class=\\\"node\\\">\\n\",\n       \"<title>262</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6873.0733,-343C6873.0733,-343 6784.8329,-343 6784.8329,-343 6778.8329,-343 6772.8329,-337 6772.8329,-331 6772.8329,-331 6772.8329,-305 6772.8329,-305 6772.8329,-299 6778.8329,-293 6784.8329,-293 6784.8329,-293 6873.0733,-293 6873.0733,-293 6879.0733,-293 6885.0733,-299 6885.0733,-305 6885.0733,-305 6885.0733,-331 6885.0733,-331 6885.0733,-337 6879.0733,-343 6873.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6828.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6828.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6828.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 261&#45;&gt;262 -->\\n\",\n       \"<g id=\\\"edge262\\\" class=\\\"edge\\\">\\n\",\n       \"<title>261&#45;&gt;262</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6887.9469,-385.8089C6878.1798,-374.5824 6867.214,-361.978 6857.4107,-350.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6860.0427,-348.4027 6850.8384,-343.1555 6854.7616,-352.9973 6860.0427,-348.4027\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 263 -->\\n\",\n       \"<g id=\\\"node264\\\" class=\\\"node\\\">\\n\",\n       \"<title>263</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7003.0733,-343C7003.0733,-343 6914.8329,-343 6914.8329,-343 6908.8329,-343 6902.8329,-337 6902.8329,-331 6902.8329,-331 6902.8329,-305 6902.8329,-305 6902.8329,-299 6908.8329,-293 6914.8329,-293 6914.8329,-293 7003.0733,-293 7003.0733,-293 7009.0733,-293 7015.0733,-299 7015.0733,-305 7015.0733,-305 7015.0733,-331 7015.0733,-331 7015.0733,-337 7009.0733,-343 7003.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6958.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6958.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"6958.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 261&#45;&gt;263 -->\\n\",\n       \"<g id=\\\"edge263\\\" class=\\\"edge\\\">\\n\",\n       \"<title>261&#45;&gt;263</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M6929.7953,-385.8089C6934.3906,-375.1221 6939.5228,-363.1868 6944.1852,-352.344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"6947.4012,-353.7249 6948.1362,-343.1555 6940.9706,-350.9596 6947.4012,-353.7249\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 265 -->\\n\",\n       \"<g id=\\\"node266\\\" class=\\\"node\\\">\\n\",\n       \"<title>265</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7219.0733,-343C7219.0733,-343 7130.8329,-343 7130.8329,-343 7124.8329,-343 7118.8329,-337 7118.8329,-331 7118.8329,-331 7118.8329,-305 7118.8329,-305 7118.8329,-299 7124.8329,-293 7130.8329,-293 7130.8329,-293 7219.0733,-293 7219.0733,-293 7225.0733,-293 7231.0733,-299 7231.0733,-305 7231.0733,-305 7231.0733,-331 7231.0733,-331 7231.0733,-337 7225.0733,-343 7219.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7174.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7174.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7174.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 264&#45;&gt;265 -->\\n\",\n       \"<g id=\\\"edge265\\\" class=\\\"edge\\\">\\n\",\n       \"<title>264&#45;&gt;265</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7204.111,-385.8089C7199.5156,-375.1221 7194.3835,-363.1868 7189.721,-352.344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7192.9357,-350.9596 7185.77,-343.1555 7186.505,-353.7249 7192.9357,-350.9596\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 266 -->\\n\",\n       \"<g id=\\\"node267\\\" class=\\\"node\\\">\\n\",\n       \"<title>266</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7522.7071,-350C7522.7071,-350 7261.1991,-350 7261.1991,-350 7255.1991,-350 7249.1991,-344 7249.1991,-338 7249.1991,-338 7249.1991,-298 7249.1991,-298 7249.1991,-292 7255.1991,-286 7261.1991,-286 7261.1991,-286 7522.7071,-286 7522.7071,-286 7528.7071,-286 7534.7071,-292 7534.7071,-298 7534.7071,-298 7534.7071,-338 7534.7071,-338 7534.7071,-344 7528.7071,-350 7522.7071,-350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7391.9531\\\" y=\\\"-334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7391.9531\\\" y=\\\"-320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7391.9531\\\" y=\\\"-306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7391.9531\\\" y=\\\"-292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 264&#45;&gt;266 -->\\n\",\n       \"<g id=\\\"edge266\\\" class=\\\"edge\\\">\\n\",\n       \"<title>264&#45;&gt;266</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7273.9656,-385.8089C7290.8857,-376.0848 7309.6045,-365.3268 7327.0531,-355.2989\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7329.1195,-358.1482 7336.0456,-350.1308 7325.6314,-352.0791 7329.1195,-358.1482\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 267 -->\\n\",\n       \"<g id=\\\"node268\\\" class=\\\"node\\\">\\n\",\n       \"<title>267</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7347.0733,-243C7347.0733,-243 7258.8329,-243 7258.8329,-243 7252.8329,-243 7246.8329,-237 7246.8329,-231 7246.8329,-231 7246.8329,-205 7246.8329,-205 7246.8329,-199 7252.8329,-193 7258.8329,-193 7258.8329,-193 7347.0733,-193 7347.0733,-193 7353.0733,-193 7359.0733,-199 7359.0733,-205 7359.0733,-205 7359.0733,-231 7359.0733,-231 7359.0733,-237 7353.0733,-243 7347.0733,-243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7302.9531\\\" y=\\\"-227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7302.9531\\\" y=\\\"-213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7302.9531\\\" y=\\\"-199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 266&#45;&gt;267 -->\\n\",\n       \"<g id=\\\"edge267\\\" class=\\\"edge\\\">\\n\",\n       \"<title>266&#45;&gt;267</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7363.3031,-285.8089C7353.3115,-274.5824 7342.0936,-261.978 7332.0649,-250.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7334.6044,-248.2986 7325.3416,-243.1555 7329.3754,-252.9524 7334.6044,-248.2986\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 268 -->\\n\",\n       \"<g id=\\\"node269\\\" class=\\\"node\\\">\\n\",\n       \"<title>268</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7572.8872,-250C7572.8872,-250 7389.0191,-250 7389.0191,-250 7383.0191,-250 7377.0191,-244 7377.0191,-238 7377.0191,-238 7377.0191,-198 7377.0191,-198 7377.0191,-192 7383.0191,-186 7389.0191,-186 7389.0191,-186 7572.8872,-186 7572.8872,-186 7578.8872,-186 7584.8872,-192 7584.8872,-198 7584.8872,-198 7584.8872,-238 7584.8872,-238 7584.8872,-244 7578.8872,-250 7572.8872,-250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7480.9531\\\" y=\\\"-234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Assistance for childcare &lt;= 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7480.9531\\\" y=\\\"-220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7480.9531\\\" y=\\\"-206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7480.9531\\\" y=\\\"-192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 266&#45;&gt;268 -->\\n\",\n       \"<g id=\\\"edge268\\\" class=\\\"edge\\\">\\n\",\n       \"<title>266&#45;&gt;268</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7420.6032,-285.8089C7428.5431,-276.8877 7437.2574,-267.0963 7445.534,-257.7968\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7448.3229,-259.9277 7452.3567,-250.1308 7443.0939,-255.2738 7448.3229,-259.9277\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 269 -->\\n\",\n       \"<g id=\\\"node270\\\" class=\\\"node\\\">\\n\",\n       \"<title>269</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7460.0733,-143C7460.0733,-143 7371.8329,-143 7371.8329,-143 7365.8329,-143 7359.8329,-137 7359.8329,-131 7359.8329,-131 7359.8329,-105 7359.8329,-105 7359.8329,-99 7365.8329,-93 7371.8329,-93 7371.8329,-93 7460.0733,-93 7460.0733,-93 7466.0733,-93 7472.0733,-99 7472.0733,-105 7472.0733,-105 7472.0733,-131 7472.0733,-131 7472.0733,-137 7466.0733,-143 7460.0733,-143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7415.9531\\\" y=\\\"-127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7415.9531\\\" y=\\\"-113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7415.9531\\\" y=\\\"-99.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 268&#45;&gt;269 -->\\n\",\n       \"<g id=\\\"edge269\\\" class=\\\"edge\\\">\\n\",\n       \"<title>268&#45;&gt;269</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7460.0289,-185.8089C7452.9422,-174.9063 7445.0108,-162.7041 7437.8505,-151.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7440.6887,-149.6325 7432.3042,-143.1555 7434.8196,-153.4475 7440.6887,-149.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 270 -->\\n\",\n       \"<g id=\\\"node271\\\" class=\\\"node\\\">\\n\",\n       \"<title>270</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7590.0733,-143C7590.0733,-143 7501.8329,-143 7501.8329,-143 7495.8329,-143 7489.8329,-137 7489.8329,-131 7489.8329,-131 7489.8329,-105 7489.8329,-105 7489.8329,-99 7495.8329,-93 7501.8329,-93 7501.8329,-93 7590.0733,-93 7590.0733,-93 7596.0733,-93 7602.0733,-99 7602.0733,-105 7602.0733,-105 7602.0733,-131 7602.0733,-131 7602.0733,-137 7596.0733,-143 7590.0733,-143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7545.9531\\\" y=\\\"-127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7545.9531\\\" y=\\\"-113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7545.9531\\\" y=\\\"-99.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 268&#45;&gt;270 -->\\n\",\n       \"<g id=\\\"edge270\\\" class=\\\"edge\\\">\\n\",\n       \"<title>268&#45;&gt;270</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7501.8773,-185.8089C7508.9641,-174.9063 7516.8955,-162.7041 7524.0558,-151.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7527.0867,-153.4475 7529.602,-143.1555 7521.2175,-149.6325 7527.0867,-153.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 274 -->\\n\",\n       \"<g id=\\\"node275\\\" class=\\\"node\\\">\\n\",\n       \"<title>274</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7501.0733,-743C7501.0733,-743 7412.8329,-743 7412.8329,-743 7406.8329,-743 7400.8329,-737 7400.8329,-731 7400.8329,-731 7400.8329,-705 7400.8329,-705 7400.8329,-699 7406.8329,-693 7412.8329,-693 7412.8329,-693 7501.0733,-693 7501.0733,-693 7507.0733,-693 7513.0733,-699 7513.0733,-705 7513.0733,-705 7513.0733,-731 7513.0733,-731 7513.0733,-737 7507.0733,-743 7501.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7456.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7456.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7456.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [9, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 273&#45;&gt;274 -->\\n\",\n       \"<g id=\\\"edge274\\\" class=\\\"edge\\\">\\n\",\n       \"<title>273&#45;&gt;274</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7584.0135,-785.9467C7561.1975,-773.7457 7535.3073,-759.9007 7512.8778,-747.9062\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7514.2899,-744.6924 7503.8211,-743.0631 7510.9889,-750.8652 7514.2899,-744.6924\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 275 -->\\n\",\n       \"<g id=\\\"node276\\\" class=\\\"node\\\">\\n\",\n       \"<title>275</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7794.5967,-750C7794.5967,-750 7543.3095,-750 7543.3095,-750 7537.3095,-750 7531.3095,-744 7531.3095,-738 7531.3095,-738 7531.3095,-698 7531.3095,-698 7531.3095,-692 7537.3095,-686 7543.3095,-686 7543.3095,-686 7794.5967,-686 7794.5967,-686 7800.5967,-686 7806.5967,-692 7806.5967,-698 7806.5967,-698 7806.5967,-738 7806.5967,-738 7806.5967,-744 7800.5967,-750 7794.5967,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7668.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7668.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7668.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7668.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 273&#45;&gt;275 -->\\n\",\n       \"<g id=\\\"edge275\\\" class=\\\"edge\\\">\\n\",\n       \"<title>273&#45;&gt;275</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7652.0009,-785.8089C7654.0528,-777.6014 7656.2888,-768.6574 7658.4438,-760.0374\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7661.8905,-760.6811 7660.9204,-750.1308 7655.0995,-758.9833 7661.8905,-760.6811\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 276 -->\\n\",\n       \"<g id=\\\"node277\\\" class=\\\"node\\\">\\n\",\n       \"<title>276</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7633.0488,-650C7633.0488,-650 7444.8574,-650 7444.8574,-650 7438.8574,-650 7432.8574,-644 7432.8574,-638 7432.8574,-638 7432.8574,-598 7432.8574,-598 7432.8574,-592 7438.8574,-586 7444.8574,-586 7444.8574,-586 7633.0488,-586 7633.0488,-586 7639.0488,-586 7645.0488,-592 7645.0488,-598 7645.0488,-598 7645.0488,-638 7645.0488,-638 7645.0488,-644 7639.0488,-650 7633.0488,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7538.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Assistance for childcare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7538.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7538.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7538.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 275&#45;&gt;276 -->\\n\",\n       \"<g id=\\\"edge276\\\" class=\\\"edge\\\">\\n\",\n       \"<title>275&#45;&gt;276</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7627.1047,-685.8089C7614.9272,-676.4416 7601.5026,-666.115 7588.8806,-656.4057\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7590.7834,-653.4537 7580.7231,-650.1308 7586.5154,-659.0021 7590.7834,-653.4537\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 279 -->\\n\",\n       \"<g id=\\\"node280\\\" class=\\\"node\\\">\\n\",\n       \"<title>279</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7763.0733,-643C7763.0733,-643 7674.8329,-643 7674.8329,-643 7668.8329,-643 7662.8329,-637 7662.8329,-631 7662.8329,-631 7662.8329,-605 7662.8329,-605 7662.8329,-599 7668.8329,-593 7674.8329,-593 7674.8329,-593 7763.0733,-593 7763.0733,-593 7769.0733,-593 7775.0733,-599 7775.0733,-605 7775.0733,-605 7775.0733,-631 7775.0733,-631 7775.0733,-637 7769.0733,-643 7763.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7718.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7718.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7718.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 275&#45;&gt;279 -->\\n\",\n       \"<g id=\\\"edge279\\\" class=\\\"edge\\\">\\n\",\n       \"<title>275&#45;&gt;279</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7685.0487,-685.8089C7690.3921,-675.1221 7696.3597,-663.1868 7701.7811,-652.344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7705.0337,-653.6651 7706.3754,-643.1555 7698.7727,-650.5346 7705.0337,-653.6651\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 277 -->\\n\",\n       \"<g id=\\\"node278\\\" class=\\\"node\\\">\\n\",\n       \"<title>277</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7518.0733,-543C7518.0733,-543 7429.8329,-543 7429.8329,-543 7423.8329,-543 7417.8329,-537 7417.8329,-531 7417.8329,-531 7417.8329,-505 7417.8329,-505 7417.8329,-499 7423.8329,-493 7429.8329,-493 7429.8329,-493 7518.0733,-493 7518.0733,-493 7524.0733,-493 7530.0733,-499 7530.0733,-505 7530.0733,-505 7530.0733,-531 7530.0733,-531 7530.0733,-537 7524.0733,-543 7518.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7473.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7473.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7473.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 276&#45;&gt;277 -->\\n\",\n       \"<g id=\\\"edge277\\\" class=\\\"edge\\\">\\n\",\n       \"<title>276&#45;&gt;277</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7518.0289,-585.8089C7510.9422,-574.9063 7503.0108,-562.7041 7495.8505,-551.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7498.6887,-549.6325 7490.3042,-543.1555 7492.8196,-553.4475 7498.6887,-549.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 278 -->\\n\",\n       \"<g id=\\\"node279\\\" class=\\\"node\\\">\\n\",\n       \"<title>278</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7648.0733,-543C7648.0733,-543 7559.8329,-543 7559.8329,-543 7553.8329,-543 7547.8329,-537 7547.8329,-531 7547.8329,-531 7547.8329,-505 7547.8329,-505 7547.8329,-499 7553.8329,-493 7559.8329,-493 7559.8329,-493 7648.0733,-493 7648.0733,-493 7654.0733,-493 7660.0733,-499 7660.0733,-505 7660.0733,-505 7660.0733,-531 7660.0733,-531 7660.0733,-537 7654.0733,-543 7648.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7603.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7603.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7603.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 276&#45;&gt;278 -->\\n\",\n       \"<g id=\\\"edge278\\\" class=\\\"edge\\\">\\n\",\n       \"<title>276&#45;&gt;278</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7559.8773,-585.8089C7566.9641,-574.9063 7574.8955,-562.7041 7582.0558,-551.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7585.0867,-553.4475 7587.602,-543.1555 7579.2175,-549.6325 7585.0867,-553.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 281 -->\\n\",\n       \"<g id=\\\"node282\\\" class=\\\"node\\\">\\n\",\n       \"<title>281</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7993.6486,-850C7993.6486,-850 7790.2576,-850 7790.2576,-850 7784.2576,-850 7778.2576,-844 7778.2576,-838 7778.2576,-838 7778.2576,-798 7778.2576,-798 7778.2576,-792 7784.2576,-786 7790.2576,-786 7790.2576,-786 7993.6486,-786 7993.6486,-786 7999.6486,-786 8005.6486,-792 8005.6486,-798 8005.6486,-798 8005.6486,-838 8005.6486,-838 8005.6486,-844 7999.6486,-850 7993.6486,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7891.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7891.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7891.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7891.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 280&#45;&gt;281 -->\\n\",\n       \"<g id=\\\"edge281\\\" class=\\\"edge\\\">\\n\",\n       \"<title>280&#45;&gt;281</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7891.9531,-885.8089C7891.9531,-877.6906 7891.9531,-868.8517 7891.9531,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7895.4532,-860.1307 7891.9531,-850.1308 7888.4532,-860.1308 7895.4532,-860.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 284 -->\\n\",\n       \"<g id=\\\"node285\\\" class=\\\"node\\\">\\n\",\n       \"<title>284</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8124.0733,-843C8124.0733,-843 8035.8329,-843 8035.8329,-843 8029.8329,-843 8023.8329,-837 8023.8329,-831 8023.8329,-831 8023.8329,-805 8023.8329,-805 8023.8329,-799 8029.8329,-793 8035.8329,-793 8035.8329,-793 8124.0733,-793 8124.0733,-793 8130.0733,-793 8136.0733,-799 8136.0733,-805 8136.0733,-805 8136.0733,-831 8136.0733,-831 8136.0733,-837 8130.0733,-843 8124.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8079.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8079.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8079.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 280&#45;&gt;284 -->\\n\",\n       \"<g id=\\\"edge284\\\" class=\\\"edge\\\">\\n\",\n       \"<title>280&#45;&gt;284</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7952.2132,-885.9467C7975.1513,-873.7457 8001.1799,-859.9007 8023.7294,-847.9062\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8025.6494,-850.8493 8032.8345,-843.0631 8022.3621,-844.6692 8025.6494,-850.8493\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 282 -->\\n\",\n       \"<g id=\\\"node283\\\" class=\\\"node\\\">\\n\",\n       \"<title>282</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7925.0733,-743C7925.0733,-743 7836.8329,-743 7836.8329,-743 7830.8329,-743 7824.8329,-737 7824.8329,-731 7824.8329,-731 7824.8329,-705 7824.8329,-705 7824.8329,-699 7830.8329,-693 7836.8329,-693 7836.8329,-693 7925.0733,-693 7925.0733,-693 7931.0733,-693 7937.0733,-699 7937.0733,-705 7937.0733,-705 7937.0733,-731 7937.0733,-731 7937.0733,-737 7931.0733,-743 7925.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7880.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7880.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7880.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 281&#45;&gt;282 -->\\n\",\n       \"<g id=\\\"edge282\\\" class=\\\"edge\\\">\\n\",\n       \"<title>281&#45;&gt;282</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7888.4121,-785.8089C7887.2722,-775.446 7886.0031,-763.909 7884.8397,-753.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7888.2927,-752.7129 7883.7202,-743.1555 7881.3347,-753.4783 7888.2927,-752.7129\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 283 -->\\n\",\n       \"<g id=\\\"node284\\\" class=\\\"node\\\">\\n\",\n       \"<title>283</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8055.0733,-743C8055.0733,-743 7966.8329,-743 7966.8329,-743 7960.8329,-743 7954.8329,-737 7954.8329,-731 7954.8329,-731 7954.8329,-705 7954.8329,-705 7954.8329,-699 7960.8329,-693 7966.8329,-693 7966.8329,-693 8055.0733,-693 8055.0733,-693 8061.0733,-693 8067.0733,-699 8067.0733,-705 8067.0733,-705 8067.0733,-731 8067.0733,-731 8067.0733,-737 8061.0733,-743 8055.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8010.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8010.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8010.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 281&#45;&gt;283 -->\\n\",\n       \"<g id=\\\"edge283\\\" class=\\\"edge\\\">\\n\",\n       \"<title>281&#45;&gt;283</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7930.2605,-785.8089C7944.0054,-774.2586 7959.486,-761.2497 7973.1848,-749.7381\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7975.6139,-752.2685 7981.018,-743.1555 7971.1105,-746.9095 7975.6139,-752.2685\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 286 -->\\n\",\n       \"<g id=\\\"node287\\\" class=\\\"node\\\">\\n\",\n       \"<title>286</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9288.4926,-1250C9288.4926,-1250 9047.4137,-1250 9047.4137,-1250 9041.4137,-1250 9035.4137,-1244 9035.4137,-1238 9035.4137,-1238 9035.4137,-1198 9035.4137,-1198 9035.4137,-1192 9041.4137,-1186 9047.4137,-1186 9047.4137,-1186 9288.4926,-1186 9288.4926,-1186 9294.4926,-1186 9300.4926,-1192 9300.4926,-1198 9300.4926,-1198 9300.4926,-1238 9300.4926,-1238 9300.4926,-1244 9294.4926,-1250 9288.4926,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9167.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Military, armaments, and defense &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9167.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.547</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9167.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 77</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9167.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [35, 38, 4]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 285&#45;&gt;286 -->\\n\",\n       \"<g id=\\\"edge286\\\" class=\\\"edge\\\">\\n\",\n       \"<title>285&#45;&gt;286</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9167.9531,-1285.8089C9167.9531,-1277.6906 9167.9531,-1268.8517 9167.9531,-1260.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9171.4532,-1260.1307 9167.9531,-1250.1308 9164.4532,-1260.1308 9171.4532,-1260.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 347 -->\\n\",\n       \"<g id=\\\"node348\\\" class=\\\"node\\\">\\n\",\n       \"<title>347</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9584.3555,-1250C9584.3555,-1250 9367.5508,-1250 9367.5508,-1250 9361.5508,-1250 9355.5508,-1244 9355.5508,-1238 9355.5508,-1238 9355.5508,-1198 9355.5508,-1198 9355.5508,-1192 9361.5508,-1186 9367.5508,-1186 9367.5508,-1186 9584.3555,-1186 9584.3555,-1186 9590.3555,-1186 9596.3555,-1192 9596.3555,-1198 9596.3555,-1198 9596.3555,-1238 9596.3555,-1238 9596.3555,-1244 9590.3555,-1250 9584.3555,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9475.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9475.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.278</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9475.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9475.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 285&#45;&gt;347 -->\\n\",\n       \"<g id=\\\"edge347\\\" class=\\\"edge\\\">\\n\",\n       \"<title>285&#45;&gt;347</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9266.6771,-1285.9467C9298.8665,-1275.4956 9334.7709,-1263.8384 9367.6258,-1253.1712\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9368.8294,-1256.4604 9377.2598,-1250.0433 9366.6677,-1249.8025 9368.8294,-1256.4604\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 287 -->\\n\",\n       \"<g id=\\\"node288\\\" class=\\\"node\\\">\\n\",\n       \"<title>287</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9231.6418,-1150C9231.6418,-1150 9028.2644,-1150 9028.2644,-1150 9022.2644,-1150 9016.2644,-1144 9016.2644,-1138 9016.2644,-1138 9016.2644,-1098 9016.2644,-1098 9016.2644,-1092 9022.2644,-1086 9028.2644,-1086 9028.2644,-1086 9231.6418,-1086 9231.6418,-1086 9237.6418,-1086 9243.6418,-1092 9243.6418,-1098 9243.6418,-1098 9243.6418,-1138 9243.6418,-1138 9243.6418,-1144 9237.6418,-1150 9231.6418,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9129.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9129.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.517</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9129.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 34</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9129.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [19, 14, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 286&#45;&gt;287 -->\\n\",\n       \"<g id=\\\"edge287\\\" class=\\\"edge\\\">\\n\",\n       \"<title>286&#45;&gt;287</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9155.7205,-1185.8089C9152.5677,-1177.5122 9149.129,-1168.4628 9145.8206,-1159.7565\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9148.9868,-1158.2353 9142.1628,-1150.1308 9142.4433,-1160.7219 9148.9868,-1158.2353\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 318 -->\\n\",\n       \"<g id=\\\"node319\\\" class=\\\"node\\\">\\n\",\n       \"<title>318</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9389.5874,-1150C9389.5874,-1150 9284.3188,-1150 9284.3188,-1150 9278.3188,-1150 9272.3188,-1144 9272.3188,-1138 9272.3188,-1138 9272.3188,-1098 9272.3188,-1098 9272.3188,-1092 9278.3188,-1086 9284.3188,-1086 9284.3188,-1086 9389.5874,-1086 9389.5874,-1086 9395.5874,-1086 9401.5874,-1092 9401.5874,-1098 9401.5874,-1098 9401.5874,-1138 9401.5874,-1138 9401.5874,-1144 9395.5874,-1150 9389.5874,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9336.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9336.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.545</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9336.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 43</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9336.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [16, 24, 3]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 286&#45;&gt;318 -->\\n\",\n       \"<g id=\\\"edge318\\\" class=\\\"edge\\\">\\n\",\n       \"<title>286&#45;&gt;318</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9222.356,-1185.8089C9238.7899,-1176.0848 9256.9708,-1165.3268 9273.9181,-1155.2989\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9275.8283,-1158.2354 9282.6521,-1150.1308 9272.2635,-1152.2111 9275.8283,-1158.2354\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 288 -->\\n\",\n       \"<g id=\\\"node289\\\" class=\\\"node\\\">\\n\",\n       \"<title>288</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8960.3108,-1050C8960.3108,-1050 8751.5954,-1050 8751.5954,-1050 8745.5954,-1050 8739.5954,-1044 8739.5954,-1038 8739.5954,-1038 8739.5954,-998 8739.5954,-998 8739.5954,-992 8745.5954,-986 8751.5954,-986 8751.5954,-986 8960.3108,-986 8960.3108,-986 8966.3108,-986 8972.3108,-992 8972.3108,-998 8972.3108,-998 8972.3108,-1038 8972.3108,-1038 8972.3108,-1044 8966.3108,-1050 8960.3108,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8855.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8855.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.536</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8855.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 26</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8855.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [12, 13, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 287&#45;&gt;288 -->\\n\",\n       \"<g id=\\\"edge288\\\" class=\\\"edge\\\">\\n\",\n       \"<title>287&#45;&gt;288</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9042.1272,-1085.9467C9013.8599,-1075.6302 8982.3723,-1064.1384 8953.4525,-1053.5837\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8954.3457,-1050.1839 8943.7518,-1050.0433 8951.9457,-1056.7597 8954.3457,-1050.1839\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 315 -->\\n\",\n       \"<g id=\\\"node316\\\" class=\\\"node\\\">\\n\",\n       \"<title>315</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9257.4727,-1050C9257.4727,-1050 9002.4336,-1050 9002.4336,-1050 8996.4336,-1050 8990.4336,-1044 8990.4336,-1038 8990.4336,-1038 8990.4336,-998 8990.4336,-998 8990.4336,-992 8996.4336,-986 9002.4336,-986 9002.4336,-986 9257.4727,-986 9257.4727,-986 9263.4727,-986 9269.4727,-992 9269.4727,-998 9269.4727,-998 9269.4727,-1038 9269.4727,-1038 9269.4727,-1044 9263.4727,-1050 9257.4727,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9129.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9129.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.219</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9129.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9129.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [7, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 287&#45;&gt;315 -->\\n\",\n       \"<g id=\\\"edge315\\\" class=\\\"edge\\\">\\n\",\n       \"<title>287&#45;&gt;315</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9129.9531,-1085.8089C9129.9531,-1077.6906 9129.9531,-1068.8517 9129.9531,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9133.4532,-1060.1307 9129.9531,-1050.1308 9126.4532,-1060.1308 9133.4532,-1060.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 289 -->\\n\",\n       \"<g id=\\\"node290\\\" class=\\\"node\\\">\\n\",\n       \"<title>289</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8666.0488,-950C8666.0488,-950 8477.8574,-950 8477.8574,-950 8471.8574,-950 8465.8574,-944 8465.8574,-938 8465.8574,-938 8465.8574,-898 8465.8574,-898 8465.8574,-892 8471.8574,-886 8477.8574,-886 8477.8574,-886 8666.0488,-886 8666.0488,-886 8672.0488,-886 8678.0488,-892 8678.0488,-898 8678.0488,-898 8678.0488,-938 8678.0488,-938 8678.0488,-944 8672.0488,-950 8666.0488,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8571.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Assistance for childcare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8571.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.475</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8571.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 18</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8571.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [11, 7, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 288&#45;&gt;289 -->\\n\",\n       \"<g id=\\\"edge289\\\" class=\\\"edge\\\">\\n\",\n       \"<title>288&#45;&gt;289</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8764.9219,-985.9467C8735.4955,-975.5854 8702.7023,-964.0384 8672.6201,-953.4461\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8673.5509,-950.0633 8662.9561,-950.0433 8671.226,-956.6659 8673.5509,-950.0633\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 308 -->\\n\",\n       \"<g id=\\\"node309\\\" class=\\\"node\\\">\\n\",\n       \"<title>308</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8908.0733,-950C8908.0733,-950 8819.8329,-950 8819.8329,-950 8813.8329,-950 8807.8329,-944 8807.8329,-938 8807.8329,-938 8807.8329,-898 8807.8329,-898 8807.8329,-892 8813.8329,-886 8819.8329,-886 8819.8329,-886 8908.0733,-886 8908.0733,-886 8914.0733,-886 8920.0733,-892 8920.0733,-898 8920.0733,-898 8920.0733,-938 8920.0733,-938 8920.0733,-944 8914.0733,-950 8908.0733,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8863.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8863.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.406</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8863.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8863.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 6, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 288&#45;&gt;308 -->\\n\",\n       \"<g id=\\\"edge308\\\" class=\\\"edge\\\">\\n\",\n       \"<title>288&#45;&gt;308</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8858.5284,-985.8089C8859.1779,-977.6906 8859.885,-968.8517 8860.5676,-960.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8864.074,-960.3781 8861.3827,-950.1308 8857.0963,-959.8198 8864.074,-960.3781\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 290 -->\\n\",\n       \"<g id=\\\"node291\\\" class=\\\"node\\\">\\n\",\n       \"<title>290</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8390.3555,-850C8390.3555,-850 8173.5508,-850 8173.5508,-850 8167.5508,-850 8161.5508,-844 8161.5508,-838 8161.5508,-838 8161.5508,-798 8161.5508,-798 8161.5508,-792 8167.5508,-786 8173.5508,-786 8173.5508,-786 8390.3555,-786 8390.3555,-786 8396.3555,-786 8402.3555,-792 8402.3555,-798 8402.3555,-798 8402.3555,-838 8402.3555,-838 8402.3555,-844 8396.3555,-850 8390.3555,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8281.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8281.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8281.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 12</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8281.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 6, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 289&#45;&gt;290 -->\\n\",\n       \"<g id=\\\"edge290\\\" class=\\\"edge\\\">\\n\",\n       \"<title>289&#45;&gt;290</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8478.9987,-885.9467C8448.8206,-875.5405 8415.1746,-863.9384 8384.3481,-853.3086\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8385.4734,-849.9945 8374.8787,-850.0433 8383.1914,-856.6121 8385.4734,-849.9945\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 303 -->\\n\",\n       \"<g id=\\\"node304\\\" class=\\\"node\\\">\\n\",\n       \"<title>303</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8711.345,-850C8711.345,-850 8432.5613,-850 8432.5613,-850 8426.5613,-850 8420.5613,-844 8420.5613,-838 8420.5613,-838 8420.5613,-798 8420.5613,-798 8420.5613,-792 8426.5613,-786 8432.5613,-786 8432.5613,-786 8711.345,-786 8711.345,-786 8717.345,-786 8723.345,-792 8723.345,-798 8723.345,-798 8723.345,-838 8723.345,-838 8723.345,-844 8717.345,-850 8711.345,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8571.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8571.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.278</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8571.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8571.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 289&#45;&gt;303 -->\\n\",\n       \"<g id=\\\"edge303\\\" class=\\\"edge\\\">\\n\",\n       \"<title>289&#45;&gt;303</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8571.9531,-885.8089C8571.9531,-877.6906 8571.9531,-868.8517 8571.9531,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8575.4532,-860.1307 8571.9531,-850.1308 8568.4532,-860.1308 8575.4532,-860.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 291 -->\\n\",\n       \"<g id=\\\"node292\\\" class=\\\"node\\\">\\n\",\n       \"<title>291</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8274.9521,-750C8274.9521,-750 8096.9541,-750 8096.9541,-750 8090.9541,-750 8084.9541,-744 8084.9541,-738 8084.9541,-738 8084.9541,-698 8084.9541,-698 8084.9541,-692 8090.9541,-686 8096.9541,-686 8096.9541,-686 8274.9521,-686 8274.9521,-686 8280.9521,-686 8286.9521,-692 8286.9521,-698 8286.9521,-698 8286.9521,-738 8286.9521,-738 8286.9521,-744 8280.9521,-750 8274.9521,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8185.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8185.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.48</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8185.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 10</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8185.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 6, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 290&#45;&gt;291 -->\\n\",\n       \"<g id=\\\"edge291\\\" class=\\\"edge\\\">\\n\",\n       \"<title>290&#45;&gt;291</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8251.0497,-785.8089C8242.3996,-776.7985 8232.8975,-766.9004 8223.8904,-757.518\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8226.2489,-754.9208 8216.7987,-750.1308 8221.1991,-759.7685 8226.2489,-754.9208\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 302 -->\\n\",\n       \"<g id=\\\"node303\\\" class=\\\"node\\\">\\n\",\n       \"<title>302</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8405.0733,-743C8405.0733,-743 8316.8329,-743 8316.8329,-743 8310.8329,-743 8304.8329,-737 8304.8329,-731 8304.8329,-731 8304.8329,-705 8304.8329,-705 8304.8329,-699 8310.8329,-693 8316.8329,-693 8316.8329,-693 8405.0733,-693 8405.0733,-693 8411.0733,-693 8417.0733,-699 8417.0733,-705 8417.0733,-705 8417.0733,-731 8417.0733,-731 8417.0733,-737 8411.0733,-743 8405.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8360.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8360.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8360.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 290&#45;&gt;302 -->\\n\",\n       \"<g id=\\\"edge302\\\" class=\\\"edge\\\">\\n\",\n       \"<title>290&#45;&gt;302</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8307.3841,-785.8089C8316.1677,-774.6904 8326.0191,-762.2203 8334.8553,-751.0352\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8337.6276,-753.172 8341.0802,-743.1555 8332.1348,-748.8327 8337.6276,-753.172\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 292 -->\\n\",\n       \"<g id=\\\"node293\\\" class=\\\"node\\\">\\n\",\n       \"<title>292</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8132.5452,-650C8132.5452,-650 7869.361,-650 7869.361,-650 7863.361,-650 7857.361,-644 7857.361,-638 7857.361,-638 7857.361,-598 7857.361,-598 7857.361,-592 7863.361,-586 7869.361,-586 7869.361,-586 8132.5452,-586 8132.5452,-586 8138.5452,-586 8144.5452,-592 8144.5452,-598 8144.5452,-598 8144.5452,-638 8144.5452,-638 8144.5452,-644 8138.5452,-650 8132.5452,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8000.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8000.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.32</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8000.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8000.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 291&#45;&gt;292 -->\\n\",\n       \"<g id=\\\"edge292\\\" class=\\\"edge\\\">\\n\",\n       \"<title>291&#45;&gt;292</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8126.6546,-685.9467C8108.3158,-676.0339 8087.9696,-665.0359 8069.0829,-654.8269\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8070.6946,-651.7195 8060.2332,-650.0433 8067.366,-657.8775 8070.6946,-651.7195\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 295 -->\\n\",\n       \"<g id=\\\"node296\\\" class=\\\"node\\\">\\n\",\n       \"<title>295</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8383.304,-650C8383.304,-650 8174.6023,-650 8174.6023,-650 8168.6023,-650 8162.6023,-644 8162.6023,-638 8162.6023,-638 8162.6023,-598 8162.6023,-598 8162.6023,-592 8168.6023,-586 8174.6023,-586 8174.6023,-586 8383.304,-586 8383.304,-586 8389.304,-586 8395.304,-592 8395.304,-598 8395.304,-598 8395.304,-638 8395.304,-638 8395.304,-644 8389.304,-650 8383.304,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8278.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8278.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.48</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8278.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8278.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 291&#45;&gt;295 -->\\n\",\n       \"<g id=\\\"edge295\\\" class=\\\"edge\\\">\\n\",\n       \"<title>291&#45;&gt;295</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8215.8908,-685.8089C8224.2706,-676.7985 8233.4758,-666.9004 8242.2014,-657.518\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8244.8243,-659.8371 8249.0715,-650.1308 8239.6984,-655.0699 8244.8243,-659.8371\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 293 -->\\n\",\n       \"<g id=\\\"node294\\\" class=\\\"node\\\">\\n\",\n       \"<title>293</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7980.0733,-543C7980.0733,-543 7891.8329,-543 7891.8329,-543 7885.8329,-543 7879.8329,-537 7879.8329,-531 7879.8329,-531 7879.8329,-505 7879.8329,-505 7879.8329,-499 7885.8329,-493 7891.8329,-493 7891.8329,-493 7980.0733,-493 7980.0733,-493 7986.0733,-493 7992.0733,-499 7992.0733,-505 7992.0733,-505 7992.0733,-531 7992.0733,-531 7992.0733,-537 7986.0733,-543 7980.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7935.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7935.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"7935.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 292&#45;&gt;293 -->\\n\",\n       \"<g id=\\\"edge293\\\" class=\\\"edge\\\">\\n\",\n       \"<title>292&#45;&gt;293</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M7980.0289,-585.8089C7972.9422,-574.9063 7965.0108,-562.7041 7957.8505,-551.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"7960.6887,-549.6325 7952.3042,-543.1555 7954.8196,-553.4475 7960.6887,-549.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 294 -->\\n\",\n       \"<g id=\\\"node295\\\" class=\\\"node\\\">\\n\",\n       \"<title>294</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8110.0733,-543C8110.0733,-543 8021.8329,-543 8021.8329,-543 8015.8329,-543 8009.8329,-537 8009.8329,-531 8009.8329,-531 8009.8329,-505 8009.8329,-505 8009.8329,-499 8015.8329,-493 8021.8329,-493 8021.8329,-493 8110.0733,-493 8110.0733,-493 8116.0733,-493 8122.0733,-499 8122.0733,-505 8122.0733,-505 8122.0733,-531 8122.0733,-531 8122.0733,-537 8116.0733,-543 8110.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8065.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8065.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8065.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 292&#45;&gt;294 -->\\n\",\n       \"<g id=\\\"edge294\\\" class=\\\"edge\\\">\\n\",\n       \"<title>292&#45;&gt;294</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8021.8773,-585.8089C8028.9641,-574.9063 8036.8955,-562.7041 8044.0558,-551.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8047.0867,-553.4475 8049.602,-543.1555 8041.2175,-549.6325 8047.0867,-553.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 296 -->\\n\",\n       \"<g id=\\\"node297\\\" class=\\\"node\\\">\\n\",\n       \"<title>296</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8312.0733,-543C8312.0733,-543 8223.8329,-543 8223.8329,-543 8217.8329,-543 8211.8329,-537 8211.8329,-531 8211.8329,-531 8211.8329,-505 8211.8329,-505 8211.8329,-499 8217.8329,-493 8223.8329,-493 8223.8329,-493 8312.0733,-493 8312.0733,-493 8318.0733,-493 8324.0733,-499 8324.0733,-505 8324.0733,-505 8324.0733,-531 8324.0733,-531 8324.0733,-537 8318.0733,-543 8312.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8267.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8267.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8267.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 295&#45;&gt;296 -->\\n\",\n       \"<g id=\\\"edge296\\\" class=\\\"edge\\\">\\n\",\n       \"<title>295&#45;&gt;296</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8275.4121,-585.8089C8274.2722,-575.446 8273.0031,-563.909 8271.8397,-553.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8275.2927,-552.7129 8270.7202,-543.1555 8268.3347,-553.4783 8275.2927,-552.7129\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 297 -->\\n\",\n       \"<g id=\\\"node298\\\" class=\\\"node\\\">\\n\",\n       \"<title>297</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8442.0733,-550C8442.0733,-550 8353.8329,-550 8353.8329,-550 8347.8329,-550 8341.8329,-544 8341.8329,-538 8341.8329,-538 8341.8329,-498 8341.8329,-498 8341.8329,-492 8347.8329,-486 8353.8329,-486 8353.8329,-486 8442.0733,-486 8442.0733,-486 8448.0733,-486 8454.0733,-492 8454.0733,-498 8454.0733,-498 8454.0733,-538 8454.0733,-538 8454.0733,-544 8448.0733,-550 8442.0733,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8397.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8397.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8397.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8397.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 295&#45;&gt;297 -->\\n\",\n       \"<g id=\\\"edge297\\\" class=\\\"edge\\\">\\n\",\n       \"<title>295&#45;&gt;297</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8317.2605,-585.8089C8328.3015,-576.5308 8340.4623,-566.3116 8351.92,-556.6833\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8354.3134,-559.2438 8359.7175,-550.1308 8349.81,-553.8847 8354.3134,-559.2438\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 298 -->\\n\",\n       \"<g id=\\\"node299\\\" class=\\\"node\\\">\\n\",\n       \"<title>298</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8323.0733,-443C8323.0733,-443 8234.8329,-443 8234.8329,-443 8228.8329,-443 8222.8329,-437 8222.8329,-431 8222.8329,-431 8222.8329,-405 8222.8329,-405 8222.8329,-399 8228.8329,-393 8234.8329,-393 8234.8329,-393 8323.0733,-393 8323.0733,-393 8329.0733,-393 8335.0733,-399 8335.0733,-405 8335.0733,-405 8335.0733,-431 8335.0733,-431 8335.0733,-437 8329.0733,-443 8323.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8278.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8278.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8278.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 297&#45;&gt;298 -->\\n\",\n       \"<g id=\\\"edge298\\\" class=\\\"edge\\\">\\n\",\n       \"<title>297&#45;&gt;298</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8359.6457,-485.8089C8345.9008,-474.2586 8330.4203,-461.2497 8316.7214,-449.7381\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8318.7957,-446.9095 8308.8882,-443.1555 8314.2923,-452.2685 8318.7957,-446.9095\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 299 -->\\n\",\n       \"<g id=\\\"node300\\\" class=\\\"node\\\">\\n\",\n       \"<title>299</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8586.518,-450C8586.518,-450 8365.3883,-450 8365.3883,-450 8359.3883,-450 8353.3883,-444 8353.3883,-438 8353.3883,-438 8353.3883,-398 8353.3883,-398 8353.3883,-392 8359.3883,-386 8365.3883,-386 8365.3883,-386 8586.518,-386 8586.518,-386 8592.518,-386 8598.518,-392 8598.518,-398 8598.518,-398 8598.518,-438 8598.518,-438 8598.518,-444 8592.518,-450 8586.518,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8475.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8475.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8475.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8475.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 297&#45;&gt;299 -->\\n\",\n       \"<g id=\\\"edge299\\\" class=\\\"edge\\\">\\n\",\n       \"<title>297&#45;&gt;299</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8423.0622,-485.8089C8429.9512,-476.9769 8437.5053,-467.2921 8444.6939,-458.0759\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8447.5005,-460.1684 8450.8911,-450.1308 8441.981,-455.8632 8447.5005,-460.1684\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 300 -->\\n\",\n       \"<g id=\\\"node301\\\" class=\\\"node\\\">\\n\",\n       \"<title>300</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8476.0733,-343C8476.0733,-343 8387.8329,-343 8387.8329,-343 8381.8329,-343 8375.8329,-337 8375.8329,-331 8375.8329,-331 8375.8329,-305 8375.8329,-305 8375.8329,-299 8381.8329,-293 8387.8329,-293 8387.8329,-293 8476.0733,-293 8476.0733,-293 8482.0733,-293 8488.0733,-299 8488.0733,-305 8488.0733,-305 8488.0733,-331 8488.0733,-331 8488.0733,-337 8482.0733,-343 8476.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8431.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8431.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8431.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 299&#45;&gt;300 -->\\n\",\n       \"<g id=\\\"edge300\\\" class=\\\"edge\\\">\\n\",\n       \"<title>299&#45;&gt;300</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8461.7891,-385.8089C8457.0869,-375.1221 8451.8353,-363.1868 8447.0645,-352.344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8450.2526,-350.8991 8443.0216,-343.1555 8443.8454,-353.7183 8450.2526,-350.8991\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 301 -->\\n\",\n       \"<g id=\\\"node302\\\" class=\\\"node\\\">\\n\",\n       \"<title>301</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8606.0733,-343C8606.0733,-343 8517.8329,-343 8517.8329,-343 8511.8329,-343 8505.8329,-337 8505.8329,-331 8505.8329,-331 8505.8329,-305 8505.8329,-305 8505.8329,-299 8511.8329,-293 8517.8329,-293 8517.8329,-293 8606.0733,-293 8606.0733,-293 8612.0733,-293 8618.0733,-299 8618.0733,-305 8618.0733,-305 8618.0733,-331 8618.0733,-331 8618.0733,-337 8612.0733,-343 8606.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8561.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8561.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8561.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 299&#45;&gt;301 -->\\n\",\n       \"<g id=\\\"edge301\\\" class=\\\"edge\\\">\\n\",\n       \"<title>299&#45;&gt;301</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8503.6374,-385.8089C8513.1994,-374.6904 8523.9237,-362.2203 8533.5428,-351.0352\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8536.4526,-353.0196 8540.3194,-343.1555 8531.1453,-348.4553 8536.4526,-353.0196\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 304 -->\\n\",\n       \"<g id=\\\"node305\\\" class=\\\"node\\\">\\n\",\n       \"<title>304</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8610.6524,-750C8610.6524,-750 8447.2538,-750 8447.2538,-750 8441.2538,-750 8435.2538,-744 8435.2538,-738 8435.2538,-738 8435.2538,-698 8435.2538,-698 8435.2538,-692 8441.2538,-686 8447.2538,-686 8447.2538,-686 8610.6524,-686 8610.6524,-686 8616.6524,-686 8622.6524,-692 8622.6524,-698 8622.6524,-698 8622.6524,-738 8622.6524,-738 8622.6524,-744 8616.6524,-750 8610.6524,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8528.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8528.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8528.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8528.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 303&#45;&gt;304 -->\\n\",\n       \"<g id=\\\"edge304\\\" class=\\\"edge\\\">\\n\",\n       \"<title>303&#45;&gt;304</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8558.111,-785.8089C8554.505,-777.4229 8550.5684,-768.2681 8546.7877,-759.4757\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8549.935,-757.9348 8542.7694,-750.1308 8543.5043,-760.7001 8549.935,-757.9348\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 307 -->\\n\",\n       \"<g id=\\\"node308\\\" class=\\\"node\\\">\\n\",\n       \"<title>307</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8741.0733,-743C8741.0733,-743 8652.8329,-743 8652.8329,-743 8646.8329,-743 8640.8329,-737 8640.8329,-731 8640.8329,-731 8640.8329,-705 8640.8329,-705 8640.8329,-699 8646.8329,-693 8652.8329,-693 8652.8329,-693 8741.0733,-693 8741.0733,-693 8747.0733,-693 8753.0733,-699 8753.0733,-705 8753.0733,-705 8753.0733,-731 8753.0733,-731 8753.0733,-737 8747.0733,-743 8741.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8696.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8696.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8696.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 303&#45;&gt;307 -->\\n\",\n       \"<g id=\\\"edge307\\\" class=\\\"edge\\\">\\n\",\n       \"<title>303&#45;&gt;307</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8612.192,-785.8089C8626.7648,-774.1506 8643.1951,-761.0064 8657.6835,-749.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8659.8864,-752.1356 8665.5087,-743.1555 8655.5135,-746.6695 8659.8864,-752.1356\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 305 -->\\n\",\n       \"<g id=\\\"node306\\\" class=\\\"node\\\">\\n\",\n       \"<title>305</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8535.0733,-643C8535.0733,-643 8446.8329,-643 8446.8329,-643 8440.8329,-643 8434.8329,-637 8434.8329,-631 8434.8329,-631 8434.8329,-605 8434.8329,-605 8434.8329,-599 8440.8329,-593 8446.8329,-593 8446.8329,-593 8535.0733,-593 8535.0733,-593 8541.0733,-593 8547.0733,-599 8547.0733,-605 8547.0733,-605 8547.0733,-631 8547.0733,-631 8547.0733,-637 8541.0733,-643 8535.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8490.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8490.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8490.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 304&#45;&gt;305 -->\\n\",\n       \"<g id=\\\"edge305\\\" class=\\\"edge\\\">\\n\",\n       \"<title>304&#45;&gt;305</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8516.7205,-685.8089C8512.7006,-675.2301 8508.2157,-663.4278 8504.1288,-652.6729\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8507.3362,-651.2601 8500.5122,-643.1555 8500.7927,-653.7467 8507.3362,-651.2601\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 306 -->\\n\",\n       \"<g id=\\\"node307\\\" class=\\\"node\\\">\\n\",\n       \"<title>306</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8665.0733,-643C8665.0733,-643 8576.8329,-643 8576.8329,-643 8570.8329,-643 8564.8329,-637 8564.8329,-631 8564.8329,-631 8564.8329,-605 8564.8329,-605 8564.8329,-599 8570.8329,-593 8576.8329,-593 8576.8329,-593 8665.0733,-593 8665.0733,-593 8671.0733,-593 8677.0733,-599 8677.0733,-605 8677.0733,-605 8677.0733,-631 8677.0733,-631 8677.0733,-637 8671.0733,-643 8665.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8620.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8620.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8620.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 304&#45;&gt;306 -->\\n\",\n       \"<g id=\\\"edge306\\\" class=\\\"edge\\\">\\n\",\n       \"<title>304&#45;&gt;306</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8558.5689,-685.8089C8568.8973,-674.5824 8580.4933,-661.978 8590.8601,-650.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8593.6152,-652.8846 8597.81,-643.1555 8588.4637,-648.1452 8593.6152,-652.8846\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 309 -->\\n\",\n       \"<g id=\\\"node310\\\" class=\\\"node\\\">\\n\",\n       \"<title>309</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8974.518,-850C8974.518,-850 8753.3883,-850 8753.3883,-850 8747.3883,-850 8741.3883,-844 8741.3883,-838 8741.3883,-838 8741.3883,-798 8741.3883,-798 8741.3883,-792 8747.3883,-786 8753.3883,-786 8753.3883,-786 8974.518,-786 8974.518,-786 8980.518,-786 8986.518,-792 8986.518,-798 8986.518,-798 8986.518,-838 8986.518,-838 8986.518,-844 8980.518,-850 8974.518,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8863.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8863.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.245</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8863.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8863.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 6, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 308&#45;&gt;309 -->\\n\",\n       \"<g id=\\\"edge309\\\" class=\\\"edge\\\">\\n\",\n       \"<title>308&#45;&gt;309</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8863.9531,-885.8089C8863.9531,-877.6906 8863.9531,-868.8517 8863.9531,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8867.4532,-860.1307 8863.9531,-850.1308 8860.4532,-860.1308 8867.4532,-860.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 314 -->\\n\",\n       \"<g id=\\\"node315\\\" class=\\\"node\\\">\\n\",\n       \"<title>314</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9105.0733,-843C9105.0733,-843 9016.8329,-843 9016.8329,-843 9010.8329,-843 9004.8329,-837 9004.8329,-831 9004.8329,-831 9004.8329,-805 9004.8329,-805 9004.8329,-799 9010.8329,-793 9016.8329,-793 9016.8329,-793 9105.0733,-793 9105.0733,-793 9111.0733,-793 9117.0733,-799 9117.0733,-805 9117.0733,-805 9117.0733,-831 9117.0733,-831 9117.0733,-837 9111.0733,-843 9105.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9060.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9060.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9060.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 308&#45;&gt;314 -->\\n\",\n       \"<g id=\\\"edge314\\\" class=\\\"edge\\\">\\n\",\n       \"<title>308&#45;&gt;314</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8920.1418,-889.4778C8945.8799,-876.4128 8976.3767,-860.9322 9002.3965,-847.7242\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9004.0655,-850.8021 9011.3982,-843.1548 9000.897,-844.5603 9004.0655,-850.8021\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 310 -->\\n\",\n       \"<g id=\\\"node311\\\" class=\\\"node\\\">\\n\",\n       \"<title>310</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8952.8872,-750C8952.8872,-750 8783.019,-750 8783.019,-750 8777.019,-750 8771.019,-744 8771.019,-738 8771.019,-738 8771.019,-698 8771.019,-698 8771.019,-692 8777.019,-686 8783.019,-686 8783.019,-686 8952.8872,-686 8952.8872,-686 8958.8872,-686 8964.8872,-692 8964.8872,-698 8964.8872,-698 8964.8872,-738 8964.8872,-738 8964.8872,-744 8958.8872,-750 8952.8872,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8867.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Parks and recreation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8867.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8867.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8867.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 309&#45;&gt;310 -->\\n\",\n       \"<g id=\\\"edge310\\\" class=\\\"edge\\\">\\n\",\n       \"<title>309&#45;&gt;310</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8865.2408,-785.8089C8865.5655,-777.6906 8865.9191,-768.8517 8866.2604,-760.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8869.7653,-760.2627 8866.6679,-750.1308 8862.7709,-759.9828 8869.7653,-760.2627\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 313 -->\\n\",\n       \"<g id=\\\"node314\\\" class=\\\"node\\\">\\n\",\n       \"<title>313</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9083.0733,-743C9083.0733,-743 8994.8329,-743 8994.8329,-743 8988.8329,-743 8982.8329,-737 8982.8329,-731 8982.8329,-731 8982.8329,-705 8982.8329,-705 8982.8329,-699 8988.8329,-693 8994.8329,-693 8994.8329,-693 9083.0733,-693 9083.0733,-693 9089.0733,-693 9095.0733,-699 9095.0733,-705 9095.0733,-705 9095.0733,-731 9095.0733,-731 9095.0733,-737 9089.0733,-743 9083.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9038.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9038.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9038.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 309&#45;&gt;313 -->\\n\",\n       \"<g id=\\\"edge313\\\" class=\\\"edge\\\">\\n\",\n       \"<title>309&#45;&gt;313</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8920.2875,-785.8089C8941.4452,-773.7188 8965.3993,-760.0308 8986.2179,-748.1344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8987.985,-751.1558 8994.9309,-743.1555 8984.512,-745.0781 8987.985,-751.1558\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 311 -->\\n\",\n       \"<g id=\\\"node312\\\" class=\\\"node\\\">\\n\",\n       \"<title>311</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8820.0733,-643C8820.0733,-643 8731.8329,-643 8731.8329,-643 8725.8329,-643 8719.8329,-637 8719.8329,-631 8719.8329,-631 8719.8329,-605 8719.8329,-605 8719.8329,-599 8725.8329,-593 8731.8329,-593 8731.8329,-593 8820.0733,-593 8820.0733,-593 8826.0733,-593 8832.0733,-599 8832.0733,-605 8832.0733,-605 8832.0733,-631 8832.0733,-631 8832.0733,-637 8826.0733,-643 8820.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8775.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8775.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8775.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 310&#45;&gt;311 -->\\n\",\n       \"<g id=\\\"edge311\\\" class=\\\"edge\\\">\\n\",\n       \"<title>310&#45;&gt;311</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8838.3373,-685.8089C8828.0089,-674.5824 8816.4129,-661.978 8806.0462,-650.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8808.4426,-648.1452 8799.0962,-643.1555 8803.2911,-652.8846 8808.4426,-648.1452\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 312 -->\\n\",\n       \"<g id=\\\"node313\\\" class=\\\"node\\\">\\n\",\n       \"<title>312</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8950.0733,-643C8950.0733,-643 8861.8329,-643 8861.8329,-643 8855.8329,-643 8849.8329,-637 8849.8329,-631 8849.8329,-631 8849.8329,-605 8849.8329,-605 8849.8329,-599 8855.8329,-593 8861.8329,-593 8861.8329,-593 8950.0733,-593 8950.0733,-593 8956.0733,-593 8962.0733,-599 8962.0733,-605 8962.0733,-605 8962.0733,-631 8962.0733,-631 8962.0733,-637 8956.0733,-643 8950.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8905.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8905.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8905.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 310&#45;&gt;312 -->\\n\",\n       \"<g id=\\\"edge312\\\" class=\\\"edge\\\">\\n\",\n       \"<title>310&#45;&gt;312</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8880.1857,-685.8089C8884.2057,-675.2301 8888.6906,-663.4278 8892.7774,-652.6729\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8896.1135,-653.7467 8896.394,-643.1555 8889.57,-651.2601 8896.1135,-653.7467\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 316 -->\\n\",\n       \"<g id=\\\"node317\\\" class=\\\"node\\\">\\n\",\n       \"<title>316</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9066.0733,-943C9066.0733,-943 8977.8329,-943 8977.8329,-943 8971.8329,-943 8965.8329,-937 8965.8329,-931 8965.8329,-931 8965.8329,-905 8965.8329,-905 8965.8329,-899 8971.8329,-893 8977.8329,-893 8977.8329,-893 9066.0733,-893 9066.0733,-893 9072.0733,-893 9078.0733,-899 9078.0733,-905 9078.0733,-905 9078.0733,-931 9078.0733,-931 9078.0733,-937 9072.0733,-943 9066.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9021.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9021.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9021.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 315&#45;&gt;316 -->\\n\",\n       \"<g id=\\\"edge316\\\" class=\\\"edge\\\">\\n\",\n       \"<title>315&#45;&gt;316</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9095.1868,-985.8089C9082.829,-974.3665 9068.9253,-961.4928 9056.5792,-950.0612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9058.8367,-947.3815 9049.1211,-943.1555 9054.0808,-952.5178 9058.8367,-947.3815\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 317 -->\\n\",\n       \"<g id=\\\"node318\\\" class=\\\"node\\\">\\n\",\n       \"<title>317</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9196.0733,-943C9196.0733,-943 9107.8329,-943 9107.8329,-943 9101.8329,-943 9095.8329,-937 9095.8329,-931 9095.8329,-931 9095.8329,-905 9095.8329,-905 9095.8329,-899 9101.8329,-893 9107.8329,-893 9107.8329,-893 9196.0733,-893 9196.0733,-893 9202.0733,-893 9208.0733,-899 9208.0733,-905 9208.0733,-905 9208.0733,-931 9208.0733,-931 9208.0733,-937 9202.0733,-943 9196.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9151.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9151.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9151.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [7, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 315&#45;&gt;317 -->\\n\",\n       \"<g id=\\\"edge317\\\" class=\\\"edge\\\">\\n\",\n       \"<title>315&#45;&gt;317</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9137.0352,-985.8089C9139.3388,-975.338 9141.906,-963.6685 9144.2526,-953.0025\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9147.6885,-953.674 9146.4189,-943.1555 9140.852,-952.1699 9147.6885,-953.674\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 319 -->\\n\",\n       \"<g id=\\\"node320\\\" class=\\\"node\\\">\\n\",\n       \"<title>319</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9394.3272,-1050C9394.3272,-1050 9299.579,-1050 9299.579,-1050 9293.579,-1050 9287.579,-1044 9287.579,-1038 9287.579,-1038 9287.579,-998 9287.579,-998 9287.579,-992 9293.579,-986 9299.579,-986 9299.579,-986 9394.3272,-986 9394.3272,-986 9400.3272,-986 9406.3272,-992 9406.3272,-998 9406.3272,-998 9406.3272,-1038 9406.3272,-1038 9406.3272,-1044 9400.3272,-1050 9394.3272,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9346.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9346.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.574</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9346.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 22</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9346.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [11, 9, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 318&#45;&gt;319 -->\\n\",\n       \"<g id=\\\"edge319\\\" class=\\\"edge\\\">\\n\",\n       \"<title>318&#45;&gt;319</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9340.1722,-1085.8089C9340.9841,-1077.6906 9341.868,-1068.8517 9342.7213,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9346.2276,-1060.4294 9343.74,-1050.1308 9339.2623,-1059.7328 9346.2276,-1060.4294\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 338 -->\\n\",\n       \"<g id=\\\"node339\\\" class=\\\"node\\\">\\n\",\n       \"<title>338</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9992.0941,-1050C9992.0941,-1050 9809.8122,-1050 9809.8122,-1050 9803.8122,-1050 9797.8122,-1044 9797.8122,-1038 9797.8122,-1038 9797.8122,-998 9797.8122,-998 9797.8122,-992 9803.8122,-986 9809.8122,-986 9809.8122,-986 9992.0941,-986 9992.0941,-986 9998.0941,-986 10004.0941,-992 10004.0941,-998 10004.0941,-998 10004.0941,-1038 10004.0941,-1038 10004.0941,-1044 9998.0941,-1050 9992.0941,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9900.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9900.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.431</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9900.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 21</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9900.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 15, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 318&#45;&gt;338 -->\\n\",\n       \"<g id=\\\"edge338\\\" class=\\\"edge\\\">\\n\",\n       \"<title>318&#45;&gt;338</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9401.975,-1088.7496C9404.9857,-1087.7543 9407.9878,-1086.8303 9410.9531,-1086 9537.0862,-1050.6809 9686.8418,-1033.3101 9787.3067,-1025.0376\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9787.794,-1028.5097 9797.4802,-1024.2171 9787.2312,-1021.5324 9787.794,-1028.5097\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 320 -->\\n\",\n       \"<g id=\\\"node321\\\" class=\\\"node\\\">\\n\",\n       \"<title>320</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9421.9908,-950C9421.9908,-950 9263.9154,-950 9263.9154,-950 9257.9154,-950 9251.9154,-944 9251.9154,-938 9251.9154,-938 9251.9154,-898 9251.9154,-898 9251.9154,-892 9257.9154,-886 9263.9154,-886 9263.9154,-886 9421.9908,-886 9421.9908,-886 9427.9908,-886 9433.9908,-892 9433.9908,-898 9433.9908,-898 9433.9908,-938 9433.9908,-938 9433.9908,-944 9427.9908,-950 9421.9908,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9342.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9342.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.526</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9342.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 19</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9342.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [11, 7, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 319&#45;&gt;320 -->\\n\",\n       \"<g id=\\\"edge320\\\" class=\\\"edge\\\">\\n\",\n       \"<title>319&#45;&gt;320</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9345.6655,-985.8089C9345.3407,-977.6906 9344.9872,-968.8517 9344.6459,-960.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9348.1353,-959.9828 9344.2384,-950.1308 9341.1409,-960.2627 9348.1353,-959.9828\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 335 -->\\n\",\n       \"<g id=\\\"node336\\\" class=\\\"node\\\">\\n\",\n       \"<title>335</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9647.0941,-950C9647.0941,-950 9464.8122,-950 9464.8122,-950 9458.8122,-950 9452.8122,-944 9452.8122,-938 9452.8122,-938 9452.8122,-898 9452.8122,-898 9452.8122,-892 9458.8122,-886 9464.8122,-886 9464.8122,-886 9647.0941,-886 9647.0941,-886 9653.0941,-886 9659.0941,-892 9659.0941,-898 9659.0941,-898 9659.0941,-938 9659.0941,-938 9659.0941,-944 9653.0941,-950 9647.0941,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9555.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9555.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9555.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9555.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 319&#45;&gt;335 -->\\n\",\n       \"<g id=\\\"edge335\\\" class=\\\"edge\\\">\\n\",\n       \"<title>319&#45;&gt;335</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9406.5644,-989.4778C9429.3524,-978.5745 9455.6566,-965.9888 9479.7819,-954.4456\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9481.3996,-957.5516 9488.9095,-950.0783 9478.3783,-951.2372 9481.3996,-957.5516\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 321 -->\\n\",\n       \"<g id=\\\"node322\\\" class=\\\"node\\\">\\n\",\n       \"<title>321</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9335.0488,-850C9335.0488,-850 9146.8574,-850 9146.8574,-850 9140.8574,-850 9134.8574,-844 9134.8574,-838 9134.8574,-838 9134.8574,-798 9134.8574,-798 9134.8574,-792 9140.8574,-786 9146.8574,-786 9146.8574,-786 9335.0488,-786 9335.0488,-786 9341.0488,-786 9347.0488,-792 9347.0488,-798 9347.0488,-798 9347.0488,-838 9347.0488,-838 9347.0488,-844 9341.0488,-850 9335.0488,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9240.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Assistance for childcare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9240.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.475</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9240.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 18</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9240.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [11, 7, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 320&#45;&gt;321 -->\\n\",\n       \"<g id=\\\"edge321\\\" class=\\\"edge\\\">\\n\",\n       \"<title>320&#45;&gt;321</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9310.1182,-885.8089C9300.8366,-876.7092 9290.6315,-866.7043 9280.9773,-857.2394\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9283.3175,-854.6322 9273.7265,-850.1308 9278.417,-859.6308 9283.3175,-854.6322\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 334 -->\\n\",\n       \"<g id=\\\"node335\\\" class=\\\"node\\\">\\n\",\n       \"<title>334</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9465.0733,-843C9465.0733,-843 9376.8329,-843 9376.8329,-843 9370.8329,-843 9364.8329,-837 9364.8329,-831 9364.8329,-831 9364.8329,-805 9364.8329,-805 9364.8329,-799 9370.8329,-793 9376.8329,-793 9376.8329,-793 9465.0733,-793 9465.0733,-793 9471.0733,-793 9477.0733,-799 9477.0733,-805 9477.0733,-805 9477.0733,-831 9477.0733,-831 9477.0733,-837 9471.0733,-843 9465.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9420.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9420.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9420.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 320&#45;&gt;334 -->\\n\",\n       \"<g id=\\\"edge334\\\" class=\\\"edge\\\">\\n\",\n       \"<title>320&#45;&gt;334</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9368.0622,-885.8089C9376.6504,-874.7983 9386.2725,-862.4623 9394.9313,-851.3614\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9397.9412,-853.1932 9401.3318,-843.1555 9392.4217,-848.888 9397.9412,-853.1932\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 322 -->\\n\",\n       \"<g id=\\\"node323\\\" class=\\\"node\\\">\\n\",\n       \"<title>322</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9328.6486,-750C9328.6486,-750 9125.2576,-750 9125.2576,-750 9119.2576,-750 9113.2576,-744 9113.2576,-738 9113.2576,-738 9113.2576,-698 9113.2576,-698 9113.2576,-692 9119.2576,-686 9125.2576,-686 9125.2576,-686 9328.6486,-686 9328.6486,-686 9334.6486,-686 9340.6486,-692 9340.6486,-698 9340.6486,-698 9340.6486,-738 9340.6486,-738 9340.6486,-744 9334.6486,-750 9328.6486,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9226.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9226.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.498</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9226.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 15</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9226.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [8, 7, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 321&#45;&gt;322 -->\\n\",\n       \"<g id=\\\"edge322\\\" class=\\\"edge\\\">\\n\",\n       \"<title>321&#45;&gt;322</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9236.4464,-785.8089C9235.2973,-777.6014 9234.0452,-768.6574 9232.8384,-760.0374\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9236.3042,-759.5489 9231.4514,-750.1308 9229.3718,-760.5195 9236.3042,-759.5489\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 333 -->\\n\",\n       \"<g id=\\\"node334\\\" class=\\\"node\\\">\\n\",\n       \"<title>333</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9459.0733,-743C9459.0733,-743 9370.8329,-743 9370.8329,-743 9364.8329,-743 9358.8329,-737 9358.8329,-731 9358.8329,-731 9358.8329,-705 9358.8329,-705 9358.8329,-699 9364.8329,-693 9370.8329,-693 9370.8329,-693 9459.0733,-693 9459.0733,-693 9465.0733,-693 9471.0733,-699 9471.0733,-705 9471.0733,-705 9471.0733,-731 9471.0733,-731 9471.0733,-737 9465.0733,-743 9459.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9414.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9414.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9414.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 321&#45;&gt;333 -->\\n\",\n       \"<g id=\\\"edge333\\\" class=\\\"edge\\\">\\n\",\n       \"<title>321&#45;&gt;333</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9296.9656,-785.8089C9317.9084,-773.7728 9341.607,-760.1529 9362.2419,-748.2938\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9364.2563,-751.173 9371.1825,-743.1555 9360.7683,-745.1039 9364.2563,-751.173\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 323 -->\\n\",\n       \"<g id=\\\"node324\\\" class=\\\"node\\\">\\n\",\n       \"<title>323</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9215.6524,-650C9215.6524,-650 9052.2538,-650 9052.2538,-650 9046.2538,-650 9040.2538,-644 9040.2538,-638 9040.2538,-638 9040.2538,-598 9040.2538,-598 9040.2538,-592 9046.2538,-586 9052.2538,-586 9052.2538,-586 9215.6524,-586 9215.6524,-586 9221.6524,-586 9227.6524,-592 9227.6524,-598 9227.6524,-598 9227.6524,-638 9227.6524,-638 9227.6524,-644 9221.6524,-650 9215.6524,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9133.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9133.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.473</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9133.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 13</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9133.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [8, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 322&#45;&gt;323 -->\\n\",\n       \"<g id=\\\"edge323\\\" class=\\\"edge\\\">\\n\",\n       \"<title>322&#45;&gt;323</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9197.0154,-685.8089C9188.6357,-676.7985 9179.4305,-666.9004 9170.7048,-657.518\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9173.2078,-655.0699 9163.8347,-650.1308 9168.0819,-659.8371 9173.2078,-655.0699\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 332 -->\\n\",\n       \"<g id=\\\"node333\\\" class=\\\"node\\\">\\n\",\n       \"<title>332</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9346.0733,-643C9346.0733,-643 9257.8329,-643 9257.8329,-643 9251.8329,-643 9245.8329,-637 9245.8329,-631 9245.8329,-631 9245.8329,-605 9245.8329,-605 9245.8329,-599 9251.8329,-593 9257.8329,-593 9257.8329,-593 9346.0733,-593 9346.0733,-593 9352.0733,-593 9358.0733,-599 9358.0733,-605 9358.0733,-605 9358.0733,-631 9358.0733,-631 9358.0733,-637 9352.0733,-643 9346.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9301.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9301.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9301.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 322&#45;&gt;332 -->\\n\",\n       \"<g id=\\\"edge332\\\" class=\\\"edge\\\">\\n\",\n       \"<title>322&#45;&gt;332</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9251.0964,-685.8089C9259.3544,-674.7983 9268.6064,-662.4623 9276.9321,-651.3614\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9279.8864,-653.2556 9283.0865,-643.1555 9274.2864,-649.0555 9279.8864,-653.2556\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 324 -->\\n\",\n       \"<g id=\\\"node325\\\" class=\\\"node\\\">\\n\",\n       \"<title>324</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9190.9521,-550C9190.9521,-550 9012.9541,-550 9012.9541,-550 9006.9541,-550 9000.9541,-544 9000.9541,-538 9000.9541,-538 9000.9541,-498 9000.9541,-498 9000.9541,-492 9006.9541,-486 9012.9541,-486 9012.9541,-486 9190.9521,-486 9190.9521,-486 9196.9521,-486 9202.9521,-492 9202.9521,-498 9202.9521,-498 9202.9521,-538 9202.9521,-538 9202.9521,-544 9196.9521,-550 9190.9521,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9101.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9101.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.494</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9101.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9101.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 323&#45;&gt;324 -->\\n\",\n       \"<g id=\\\"edge324\\\" class=\\\"edge\\\">\\n\",\n       \"<title>323&#45;&gt;324</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9123.652,-585.8089C9120.997,-577.5122 9118.1012,-568.4628 9115.3152,-559.7565\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9118.6163,-558.5883 9112.235,-550.1308 9111.9493,-560.7217 9118.6163,-558.5883\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 331 -->\\n\",\n       \"<g id=\\\"node332\\\" class=\\\"node\\\">\\n\",\n       \"<title>331</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9321.0733,-543C9321.0733,-543 9232.8329,-543 9232.8329,-543 9226.8329,-543 9220.8329,-537 9220.8329,-531 9220.8329,-531 9220.8329,-505 9220.8329,-505 9220.8329,-499 9226.8329,-493 9232.8329,-493 9232.8329,-493 9321.0733,-493 9321.0733,-493 9327.0733,-493 9333.0733,-499 9333.0733,-505 9333.0733,-505 9333.0733,-531 9333.0733,-531 9333.0733,-537 9327.0733,-543 9321.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9276.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9276.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9276.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 323&#45;&gt;331 -->\\n\",\n       \"<g id=\\\"edge331\\\" class=\\\"edge\\\">\\n\",\n       \"<title>323&#45;&gt;331</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9179.9864,-585.8089C9196.8121,-574.0427 9215.8022,-560.7629 9232.4885,-549.0942\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9234.7915,-551.7546 9240.9807,-543.1555 9230.7799,-546.0181 9234.7915,-551.7546\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 325 -->\\n\",\n       \"<g id=\\\"node326\\\" class=\\\"node\\\">\\n\",\n       \"<title>325</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9009.7071,-450C9009.7071,-450 8748.1991,-450 8748.1991,-450 8742.1991,-450 8736.1991,-444 8736.1991,-438 8736.1991,-438 8736.1991,-398 8736.1991,-398 8736.1991,-392 8742.1991,-386 8748.1991,-386 8748.1991,-386 9009.7071,-386 9009.7071,-386 9015.7071,-386 9021.7071,-392 9021.7071,-398 9021.7071,-398 9021.7071,-438 9021.7071,-438 9021.7071,-444 9015.7071,-450 9009.7071,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8878.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8878.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.32</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8878.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8878.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 324&#45;&gt;325 -->\\n\",\n       \"<g id=\\\"edge325\\\" class=\\\"edge\\\">\\n\",\n       \"<title>324&#45;&gt;325</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9030.4744,-485.9467C9007.8686,-475.8096 8982.7323,-464.5377 8959.5347,-454.1352\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8960.9664,-450.9415 8950.4097,-450.0433 8958.1021,-457.3287 8960.9664,-450.9415\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 328 -->\\n\",\n       \"<g id=\\\"node329\\\" class=\\\"node\\\">\\n\",\n       \"<title>328</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9272.518,-450C9272.518,-450 9051.3883,-450 9051.3883,-450 9045.3883,-450 9039.3883,-444 9039.3883,-438 9039.3883,-438 9039.3883,-398 9039.3883,-398 9039.3883,-392 9045.3883,-386 9051.3883,-386 9051.3883,-386 9272.518,-386 9272.518,-386 9278.518,-386 9284.518,-392 9284.518,-398 9284.518,-398 9284.518,-438 9284.518,-438 9284.518,-444 9278.518,-450 9272.518,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9161.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9161.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9161.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9161.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 324&#45;&gt;328 -->\\n\",\n       \"<g id=\\\"edge328\\\" class=\\\"edge\\\">\\n\",\n       \"<title>324&#45;&gt;328</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9121.2678,-485.8089C9126.4064,-477.2445 9132.0262,-467.8782 9137.4041,-458.915\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9140.5309,-460.5065 9142.6747,-450.1308 9134.5284,-456.905 9140.5309,-460.5065\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 326 -->\\n\",\n       \"<g id=\\\"node327\\\" class=\\\"node\\\">\\n\",\n       \"<title>326</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8804.0733,-343C8804.0733,-343 8715.8329,-343 8715.8329,-343 8709.8329,-343 8703.8329,-337 8703.8329,-331 8703.8329,-331 8703.8329,-305 8703.8329,-305 8703.8329,-299 8709.8329,-293 8715.8329,-293 8715.8329,-293 8804.0733,-293 8804.0733,-293 8810.0733,-293 8816.0733,-299 8816.0733,-305 8816.0733,-305 8816.0733,-331 8816.0733,-331 8816.0733,-337 8810.0733,-343 8804.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8759.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8759.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8759.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 325&#45;&gt;326 -->\\n\",\n       \"<g id=\\\"edge326\\\" class=\\\"edge\\\">\\n\",\n       \"<title>325&#45;&gt;326</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8840.6457,-385.8089C8826.9008,-374.2586 8811.4203,-361.2497 8797.7214,-349.7381\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8799.7957,-346.9095 8789.8882,-343.1555 8795.2923,-352.2685 8799.7957,-346.9095\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 327 -->\\n\",\n       \"<g id=\\\"node328\\\" class=\\\"node\\\">\\n\",\n       \"<title>327</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8934.0733,-343C8934.0733,-343 8845.8329,-343 8845.8329,-343 8839.8329,-343 8833.8329,-337 8833.8329,-331 8833.8329,-331 8833.8329,-305 8833.8329,-305 8833.8329,-299 8839.8329,-293 8845.8329,-293 8845.8329,-293 8934.0733,-293 8934.0733,-293 8940.0733,-293 8946.0733,-299 8946.0733,-305 8946.0733,-305 8946.0733,-331 8946.0733,-331 8946.0733,-337 8940.0733,-343 8934.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8889.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8889.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"8889.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 325&#45;&gt;327 -->\\n\",\n       \"<g id=\\\"edge327\\\" class=\\\"edge\\\">\\n\",\n       \"<title>325&#45;&gt;327</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M8882.4941,-385.8089C8883.6341,-375.446 8884.9031,-363.909 8886.0665,-353.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"8889.5715,-353.4783 8887.186,-343.1555 8882.6135,-352.7129 8889.5715,-353.4783\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 329 -->\\n\",\n       \"<g id=\\\"node330\\\" class=\\\"node\\\">\\n\",\n       \"<title>329</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9141.0733,-343C9141.0733,-343 9052.8329,-343 9052.8329,-343 9046.8329,-343 9040.8329,-337 9040.8329,-331 9040.8329,-331 9040.8329,-305 9040.8329,-305 9040.8329,-299 9046.8329,-293 9052.8329,-293 9052.8329,-293 9141.0733,-293 9141.0733,-293 9147.0733,-293 9153.0733,-299 9153.0733,-305 9153.0733,-305 9153.0733,-331 9153.0733,-331 9153.0733,-337 9147.0733,-343 9141.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9096.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9096.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9096.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 328&#45;&gt;329 -->\\n\",\n       \"<g id=\\\"edge329\\\" class=\\\"edge\\\">\\n\",\n       \"<title>328&#45;&gt;329</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9141.0289,-385.8089C9133.9422,-374.9063 9126.0108,-362.7041 9118.8505,-351.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9121.6887,-349.6325 9113.3042,-343.1555 9115.8196,-353.4475 9121.6887,-349.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 330 -->\\n\",\n       \"<g id=\\\"node331\\\" class=\\\"node\\\">\\n\",\n       \"<title>330</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9271.0733,-343C9271.0733,-343 9182.8329,-343 9182.8329,-343 9176.8329,-343 9170.8329,-337 9170.8329,-331 9170.8329,-331 9170.8329,-305 9170.8329,-305 9170.8329,-299 9176.8329,-293 9182.8329,-293 9182.8329,-293 9271.0733,-293 9271.0733,-293 9277.0733,-293 9283.0733,-299 9283.0733,-305 9283.0733,-305 9283.0733,-331 9283.0733,-331 9283.0733,-337 9277.0733,-343 9271.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9226.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9226.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9226.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 328&#45;&gt;330 -->\\n\",\n       \"<g id=\\\"edge330\\\" class=\\\"edge\\\">\\n\",\n       \"<title>328&#45;&gt;330</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9182.8773,-385.8089C9189.9641,-374.9063 9197.8955,-362.7041 9205.0558,-351.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9208.0867,-353.4475 9210.602,-343.1555 9202.2175,-349.6325 9208.0867,-353.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 336 -->\\n\",\n       \"<g id=\\\"node337\\\" class=\\\"node\\\">\\n\",\n       \"<title>336</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9595.0733,-843C9595.0733,-843 9506.8329,-843 9506.8329,-843 9500.8329,-843 9494.8329,-837 9494.8329,-831 9494.8329,-831 9494.8329,-805 9494.8329,-805 9494.8329,-799 9500.8329,-793 9506.8329,-793 9506.8329,-793 9595.0733,-793 9595.0733,-793 9601.0733,-793 9607.0733,-799 9607.0733,-805 9607.0733,-805 9607.0733,-831 9607.0733,-831 9607.0733,-837 9601.0733,-843 9595.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9550.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9550.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9550.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 335&#45;&gt;336 -->\\n\",\n       \"<g id=\\\"edge336\\\" class=\\\"edge\\\">\\n\",\n       \"<title>335&#45;&gt;336</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9554.3436,-885.8089C9553.8254,-875.446 9553.2486,-863.909 9552.7198,-853.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9556.206,-852.9683 9552.2109,-843.1555 9549.2147,-853.3179 9556.206,-852.9683\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 337 -->\\n\",\n       \"<g id=\\\"node338\\\" class=\\\"node\\\">\\n\",\n       \"<title>337</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9725.0733,-843C9725.0733,-843 9636.8329,-843 9636.8329,-843 9630.8329,-843 9624.8329,-837 9624.8329,-831 9624.8329,-831 9624.8329,-805 9624.8329,-805 9624.8329,-799 9630.8329,-793 9636.8329,-793 9636.8329,-793 9725.0733,-793 9725.0733,-793 9731.0733,-793 9737.0733,-799 9737.0733,-805 9737.0733,-805 9737.0733,-831 9737.0733,-831 9737.0733,-837 9731.0733,-843 9725.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9680.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9680.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9680.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 335&#45;&gt;337 -->\\n\",\n       \"<g id=\\\"edge337\\\" class=\\\"edge\\\">\\n\",\n       \"<title>335&#45;&gt;337</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9596.192,-885.8089C9610.7648,-874.1506 9627.1951,-861.0064 9641.6835,-849.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9643.8864,-852.1356 9649.5087,-843.1555 9639.5135,-846.6695 9643.8864,-852.1356\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 339 -->\\n\",\n       \"<g id=\\\"node340\\\" class=\\\"node\\\">\\n\",\n       \"<title>339</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9948.8594,-950C9948.8594,-950 9853.0468,-950 9853.0468,-950 9847.0468,-950 9841.0468,-944 9841.0468,-938 9841.0468,-938 9841.0468,-898 9841.0468,-898 9841.0468,-892 9847.0468,-886 9853.0468,-886 9853.0468,-886 9948.8594,-886 9948.8594,-886 9954.8594,-886 9960.8594,-892 9960.8594,-898 9960.8594,-898 9960.8594,-938 9960.8594,-938 9960.8594,-944 9954.8594,-950 9948.8594,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9900.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9900.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.117</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9900.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 16</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9900.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 15, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 338&#45;&gt;339 -->\\n\",\n       \"<g id=\\\"edge339\\\" class=\\\"edge\\\">\\n\",\n       \"<title>338&#45;&gt;339</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9900.9531,-985.8089C9900.9531,-977.6906 9900.9531,-968.8517 9900.9531,-960.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9904.4532,-960.1307 9900.9531,-950.1308 9897.4532,-960.1308 9904.4532,-960.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 344 -->\\n\",\n       \"<g id=\\\"node345\\\" class=\\\"node\\\">\\n\",\n       \"<title>344</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10322.435,-950C10322.435,-950 10075.4713,-950 10075.4713,-950 10069.4713,-950 10063.4713,-944 10063.4713,-938 10063.4713,-938 10063.4713,-898 10063.4713,-898 10063.4713,-892 10069.4713,-886 10075.4713,-886 10075.4713,-886 10322.435,-886 10322.435,-886 10328.435,-886 10334.435,-892 10334.435,-898 10334.435,-898 10334.435,-938 10334.435,-938 10334.435,-944 10328.435,-950 10322.435,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10198.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10198.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.32</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10198.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10198.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 338&#45;&gt;344 -->\\n\",\n       \"<g id=\\\"edge344\\\" class=\\\"edge\\\">\\n\",\n       \"<title>338&#45;&gt;344</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9996.4718,-985.9467C10027.4824,-975.5405 10062.0566,-963.9384 10093.7335,-953.3086\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10095.0971,-956.5429 10103.4641,-950.0433 10092.8701,-949.9066 10095.0971,-956.5429\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 340 -->\\n\",\n       \"<g id=\\\"node341\\\" class=\\\"node\\\">\\n\",\n       \"<title>340</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9862.8594,-843C9862.8594,-843 9767.0468,-843 9767.0468,-843 9761.0468,-843 9755.0468,-837 9755.0468,-831 9755.0468,-831 9755.0468,-805 9755.0468,-805 9755.0468,-799 9761.0468,-793 9767.0468,-793 9767.0468,-793 9862.8594,-793 9862.8594,-793 9868.8594,-793 9874.8594,-799 9874.8594,-805 9874.8594,-805 9874.8594,-831 9874.8594,-831 9874.8594,-837 9868.8594,-843 9862.8594,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9814.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9814.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 12</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9814.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 12, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 339&#45;&gt;340 -->\\n\",\n       \"<g id=\\\"edge340\\\" class=\\\"edge\\\">\\n\",\n       \"<title>339&#45;&gt;340</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9873.2688,-885.8089C9863.7068,-874.6904 9852.9826,-862.2203 9843.3634,-851.0352\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9845.761,-848.4553 9836.5869,-843.1555 9840.4537,-853.0196 9845.761,-848.4553\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 341 -->\\n\",\n       \"<g id=\\\"node342\\\" class=\\\"node\\\">\\n\",\n       \"<title>341</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10113.3108,-850C10113.3108,-850 9904.5954,-850 9904.5954,-850 9898.5954,-850 9892.5954,-844 9892.5954,-838 9892.5954,-838 9892.5954,-798 9892.5954,-798 9892.5954,-792 9898.5954,-786 9904.5954,-786 9904.5954,-786 10113.3108,-786 10113.3108,-786 10119.3108,-786 10125.3108,-792 10125.3108,-798 10125.3108,-798 10125.3108,-838 10125.3108,-838 10125.3108,-844 10119.3108,-850 10113.3108,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10008.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10008.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10008.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10008.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 339&#45;&gt;341 -->\\n\",\n       \"<g id=\\\"edge341\\\" class=\\\"edge\\\">\\n\",\n       \"<title>339&#45;&gt;341</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9935.7195,-885.8089C9945.6435,-876.62 9956.5644,-866.508 9966.875,-856.9612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9969.2922,-859.493 9974.2519,-850.1308 9964.5363,-854.3567 9969.2922,-859.493\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 342 -->\\n\",\n       \"<g id=\\\"node343\\\" class=\\\"node\\\">\\n\",\n       \"<title>342</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9988.0733,-743C9988.0733,-743 9899.8329,-743 9899.8329,-743 9893.8329,-743 9887.8329,-737 9887.8329,-731 9887.8329,-731 9887.8329,-705 9887.8329,-705 9887.8329,-699 9893.8329,-693 9899.8329,-693 9899.8329,-693 9988.0733,-693 9988.0733,-693 9994.0733,-693 10000.0733,-699 10000.0733,-705 10000.0733,-705 10000.0733,-731 10000.0733,-731 10000.0733,-737 9994.0733,-743 9988.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9943.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9943.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9943.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 341&#45;&gt;342 -->\\n\",\n       \"<g id=\\\"edge342\\\" class=\\\"edge\\\">\\n\",\n       \"<title>341&#45;&gt;342</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9988.0289,-785.8089C9980.9422,-774.9063 9973.0108,-762.7041 9965.8505,-751.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9968.6887,-749.6325 9960.3042,-743.1555 9962.8196,-753.4475 9968.6887,-749.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 343 -->\\n\",\n       \"<g id=\\\"node344\\\" class=\\\"node\\\">\\n\",\n       \"<title>343</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10118.0733,-743C10118.0733,-743 10029.8329,-743 10029.8329,-743 10023.8329,-743 10017.8329,-737 10017.8329,-731 10017.8329,-731 10017.8329,-705 10017.8329,-705 10017.8329,-699 10023.8329,-693 10029.8329,-693 10029.8329,-693 10118.0733,-693 10118.0733,-693 10124.0733,-693 10130.0733,-699 10130.0733,-705 10130.0733,-705 10130.0733,-731 10130.0733,-731 10130.0733,-737 10124.0733,-743 10118.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10073.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10073.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10073.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 341&#45;&gt;343 -->\\n\",\n       \"<g id=\\\"edge343\\\" class=\\\"edge\\\">\\n\",\n       \"<title>341&#45;&gt;343</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10029.8773,-785.8089C10036.9641,-774.9063 10044.8955,-762.7041 10052.0558,-751.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10055.0867,-753.4475 10057.602,-743.1555 10049.2175,-749.6325 10055.0867,-753.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 345 -->\\n\",\n       \"<g id=\\\"node346\\\" class=\\\"node\\\">\\n\",\n       \"<title>345</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10243.0733,-843C10243.0733,-843 10154.8329,-843 10154.8329,-843 10148.8329,-843 10142.8329,-837 10142.8329,-831 10142.8329,-831 10142.8329,-805 10142.8329,-805 10142.8329,-799 10148.8329,-793 10154.8329,-793 10154.8329,-793 10243.0733,-793 10243.0733,-793 10249.0733,-793 10255.0733,-799 10255.0733,-805 10255.0733,-805 10255.0733,-831 10255.0733,-831 10255.0733,-837 10249.0733,-843 10243.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10198.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10198.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10198.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 344&#45;&gt;345 -->\\n\",\n       \"<g id=\\\"edge345\\\" class=\\\"edge\\\">\\n\",\n       \"<title>344&#45;&gt;345</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10198.9531,-885.8089C10198.9531,-875.446 10198.9531,-863.909 10198.9531,-853.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10202.4532,-853.1555 10198.9531,-843.1555 10195.4532,-853.1556 10202.4532,-853.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 346 -->\\n\",\n       \"<g id=\\\"node347\\\" class=\\\"node\\\">\\n\",\n       \"<title>346</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10373.0733,-843C10373.0733,-843 10284.8329,-843 10284.8329,-843 10278.8329,-843 10272.8329,-837 10272.8329,-831 10272.8329,-831 10272.8329,-805 10272.8329,-805 10272.8329,-799 10278.8329,-793 10284.8329,-793 10284.8329,-793 10373.0733,-793 10373.0733,-793 10379.0733,-793 10385.0733,-799 10385.0733,-805 10385.0733,-805 10385.0733,-831 10385.0733,-831 10385.0733,-837 10379.0733,-843 10373.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10328.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10328.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10328.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 344&#45;&gt;346 -->\\n\",\n       \"<g id=\\\"edge346\\\" class=\\\"edge\\\">\\n\",\n       \"<title>344&#45;&gt;346</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10240.8015,-885.8089C10255.9573,-874.1506 10273.0448,-861.0064 10288.1127,-849.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10290.4587,-852.0269 10296.2509,-843.1555 10286.1907,-846.4785 10290.4587,-852.0269\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 348 -->\\n\",\n       \"<g id=\\\"node349\\\" class=\\\"node\\\">\\n\",\n       \"<title>348</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9520.0733,-1143C9520.0733,-1143 9431.8329,-1143 9431.8329,-1143 9425.8329,-1143 9419.8329,-1137 9419.8329,-1131 9419.8329,-1131 9419.8329,-1105 9419.8329,-1105 9419.8329,-1099 9425.8329,-1093 9431.8329,-1093 9431.8329,-1093 9520.0733,-1093 9520.0733,-1093 9526.0733,-1093 9532.0733,-1099 9532.0733,-1105 9532.0733,-1105 9532.0733,-1131 9532.0733,-1131 9532.0733,-1137 9526.0733,-1143 9520.0733,-1143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9475.9531\\\" y=\\\"-1127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9475.9531\\\" y=\\\"-1113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9475.9531\\\" y=\\\"-1099.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 347&#45;&gt;348 -->\\n\",\n       \"<g id=\\\"edge348\\\" class=\\\"edge\\\">\\n\",\n       \"<title>347&#45;&gt;348</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9475.9531,-1185.8089C9475.9531,-1175.446 9475.9531,-1163.909 9475.9531,-1153.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9479.4532,-1153.1555 9475.9531,-1143.1555 9472.4532,-1153.1556 9479.4532,-1153.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 349 -->\\n\",\n       \"<g id=\\\"node350\\\" class=\\\"node\\\">\\n\",\n       \"<title>349</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9650.0733,-1143C9650.0733,-1143 9561.8329,-1143 9561.8329,-1143 9555.8329,-1143 9549.8329,-1137 9549.8329,-1131 9549.8329,-1131 9549.8329,-1105 9549.8329,-1105 9549.8329,-1099 9555.8329,-1093 9561.8329,-1093 9561.8329,-1093 9650.0733,-1093 9650.0733,-1093 9656.0733,-1093 9662.0733,-1099 9662.0733,-1105 9662.0733,-1105 9662.0733,-1131 9662.0733,-1131 9662.0733,-1137 9656.0733,-1143 9650.0733,-1143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9605.9531\\\" y=\\\"-1127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9605.9531\\\" y=\\\"-1113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"9605.9531\\\" y=\\\"-1099.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 347&#45;&gt;349 -->\\n\",\n       \"<g id=\\\"edge349\\\" class=\\\"edge\\\">\\n\",\n       \"<title>347&#45;&gt;349</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M9517.8015,-1185.8089C9532.9573,-1174.1506 9550.0448,-1161.0064 9565.1127,-1149.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"9567.4587,-1152.0269 9573.2509,-1143.1555 9563.1907,-1146.4785 9567.4587,-1152.0269\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 351 -->\\n\",\n       \"<g id=\\\"node352\\\" class=\\\"node\\\">\\n\",\n       \"<title>351</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11925.3555,-1350C11925.3555,-1350 11708.5508,-1350 11708.5508,-1350 11702.5508,-1350 11696.5508,-1344 11696.5508,-1338 11696.5508,-1338 11696.5508,-1298 11696.5508,-1298 11696.5508,-1292 11702.5508,-1286 11708.5508,-1286 11708.5508,-1286 11925.3555,-1286 11925.3555,-1286 11931.3555,-1286 11937.3555,-1292 11937.3555,-1298 11937.3555,-1298 11937.3555,-1338 11937.3555,-1338 11937.3555,-1344 11931.3555,-1350 11925.3555,-1350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11816.9531\\\" y=\\\"-1334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11816.9531\\\" y=\\\"-1320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.561</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11816.9531\\\" y=\\\"-1306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 70</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11816.9531\\\" y=\\\"-1292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [35, 30, 5]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 350&#45;&gt;351 -->\\n\",\n       \"<g id=\\\"edge351\\\" class=\\\"edge\\\">\\n\",\n       \"<title>350&#45;&gt;351</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11816.9531,-1385.8089C11816.9531,-1377.6906 11816.9531,-1368.8517 11816.9531,-1360.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11820.4532,-1360.1307 11816.9531,-1350.1308 11813.4532,-1360.1308 11820.4532,-1360.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 404 -->\\n\",\n       \"<g id=\\\"node405\\\" class=\\\"node\\\">\\n\",\n       \"<title>404</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12747.9325,-1350C12747.9325,-1350 12635.9738,-1350 12635.9738,-1350 12629.9738,-1350 12623.9738,-1344 12623.9738,-1338 12623.9738,-1338 12623.9738,-1298 12623.9738,-1298 12623.9738,-1292 12629.9738,-1286 12635.9738,-1286 12635.9738,-1286 12747.9325,-1286 12747.9325,-1286 12753.9325,-1286 12759.9325,-1292 12759.9325,-1298 12759.9325,-1298 12759.9325,-1338 12759.9325,-1338 12759.9325,-1344 12753.9325,-1350 12747.9325,-1350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12691.9531\\\" y=\\\"-1334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12691.9531\\\" y=\\\"-1320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.55</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12691.9531\\\" y=\\\"-1306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 84</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12691.9531\\\" y=\\\"-1292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [24, 50, 10]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 350&#45;&gt;404 -->\\n\",\n       \"<g id=\\\"edge404\\\" class=\\\"edge\\\">\\n\",\n       \"<title>350&#45;&gt;404</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11923.3705,-1405.838C12101.7468,-1385.4521 12456.9546,-1344.857 12614.087,-1326.899\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12614.6087,-1330.3622 12624.1466,-1325.7493 12613.8138,-1323.4075 12614.6087,-1330.3622\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 352 -->\\n\",\n       \"<g id=\\\"node353\\\" class=\\\"node\\\">\\n\",\n       \"<title>352</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11658.518,-1250C11658.518,-1250 11437.3883,-1250 11437.3883,-1250 11431.3883,-1250 11425.3883,-1244 11425.3883,-1238 11425.3883,-1238 11425.3883,-1198 11425.3883,-1198 11425.3883,-1192 11431.3883,-1186 11437.3883,-1186 11437.3883,-1186 11658.518,-1186 11658.518,-1186 11664.518,-1186 11670.518,-1192 11670.518,-1198 11670.518,-1198 11670.518,-1238 11670.518,-1238 11670.518,-1244 11664.518,-1250 11658.518,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11547.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11547.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.546</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11547.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 58</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11547.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [26, 29, 3]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 351&#45;&gt;352 -->\\n\",\n       \"<g id=\\\"edge352\\\" class=\\\"edge\\\">\\n\",\n       \"<title>351&#45;&gt;352</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11730.7299,-1285.9467C11702.9784,-1275.6302 11672.0654,-1264.1384 11643.6733,-1253.5837\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11644.7425,-1250.2472 11634.1496,-1250.0433 11642.3033,-1256.8085 11644.7425,-1250.2472\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 395 -->\\n\",\n       \"<g id=\\\"node396\\\" class=\\\"node\\\">\\n\",\n       \"<title>395</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12104.6827,-1250C12104.6827,-1250 11831.2235,-1250 11831.2235,-1250 11825.2235,-1250 11819.2235,-1244 11819.2235,-1238 11819.2235,-1238 11819.2235,-1198 11819.2235,-1198 11819.2235,-1192 11825.2235,-1186 11831.2235,-1186 11831.2235,-1186 12104.6827,-1186 12104.6827,-1186 12110.6827,-1186 12116.6827,-1192 12116.6827,-1198 12116.6827,-1198 12116.6827,-1238 12116.6827,-1238 12116.6827,-1244 12110.6827,-1250 12104.6827,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11967.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11967.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.403</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11967.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 12</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11967.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [9, 1, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 351&#45;&gt;395 -->\\n\",\n       \"<g id=\\\"edge395\\\" class=\\\"edge\\\">\\n\",\n       \"<title>351&#45;&gt;395</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11865.5616,-1285.8089C11879.9757,-1276.2632 11895.894,-1265.7213 11910.7972,-1255.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11913.0307,-1258.5704 11919.4357,-1250.1308 11909.1657,-1252.7342 11913.0307,-1258.5704\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 353 -->\\n\",\n       \"<g id=\\\"node354\\\" class=\\\"node\\\">\\n\",\n       \"<title>353</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11211.304,-1150C11211.304,-1150 11002.6023,-1150 11002.6023,-1150 10996.6023,-1150 10990.6023,-1144 10990.6023,-1138 10990.6023,-1138 10990.6023,-1098 10990.6023,-1098 10990.6023,-1092 10996.6023,-1086 11002.6023,-1086 11002.6023,-1086 11211.304,-1086 11211.304,-1086 11217.304,-1086 11223.304,-1092 11223.304,-1098 11223.304,-1098 11223.304,-1138 11223.304,-1138 11223.304,-1144 11217.304,-1150 11211.304,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.555</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 34</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [19, 12, 3]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 352&#45;&gt;353 -->\\n\",\n       \"<g id=\\\"edge353\\\" class=\\\"edge\\\">\\n\",\n       \"<title>352&#45;&gt;353</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11425.11,-1190.1444C11365.3586,-1176.5953 11293.6176,-1160.3275 11233.3959,-1146.6718\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11233.9759,-1143.2146 11223.4494,-1144.4164 11232.4278,-1150.0412 11233.9759,-1143.2146\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 380 -->\\n\",\n       \"<g id=\\\"node381\\\" class=\\\"node\\\">\\n\",\n       \"<title>380</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11600.5874,-1150C11600.5874,-1150 11495.3188,-1150 11495.3188,-1150 11489.3188,-1150 11483.3188,-1144 11483.3188,-1138 11483.3188,-1138 11483.3188,-1098 11483.3188,-1098 11483.3188,-1092 11489.3188,-1086 11495.3188,-1086 11495.3188,-1086 11600.5874,-1086 11600.5874,-1086 11606.5874,-1086 11612.5874,-1092 11612.5874,-1098 11612.5874,-1098 11612.5874,-1138 11612.5874,-1138 11612.5874,-1144 11606.5874,-1150 11600.5874,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11547.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11547.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.413</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11547.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 24</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11547.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [7, 17, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 352&#45;&gt;380 -->\\n\",\n       \"<g id=\\\"edge380\\\" class=\\\"edge\\\">\\n\",\n       \"<title>352&#45;&gt;380</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11547.9531,-1185.8089C11547.9531,-1177.6906 11547.9531,-1168.8517 11547.9531,-1160.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11551.4532,-1160.1307 11547.9531,-1150.1308 11544.4532,-1160.1308 11551.4532,-1160.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 354 -->\\n\",\n       \"<g id=\\\"node355\\\" class=\\\"node\\\">\\n\",\n       \"<title>354</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10937.0733,-1043C10937.0733,-1043 10848.8329,-1043 10848.8329,-1043 10842.8329,-1043 10836.8329,-1037 10836.8329,-1031 10836.8329,-1031 10836.8329,-1005 10836.8329,-1005 10836.8329,-999 10842.8329,-993 10848.8329,-993 10848.8329,-993 10937.0733,-993 10937.0733,-993 10943.0733,-993 10949.0733,-999 10949.0733,-1005 10949.0733,-1005 10949.0733,-1031 10949.0733,-1031 10949.0733,-1037 10943.0733,-1043 10937.0733,-1043\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10892.9531\\\" y=\\\"-1027.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10892.9531\\\" y=\\\"-1013.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10892.9531\\\" y=\\\"-999.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 353&#45;&gt;354 -->\\n\",\n       \"<g id=\\\"edge354\\\" class=\\\"edge\\\">\\n\",\n       \"<title>353&#45;&gt;354</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11035.5141,-1085.9103C11010.8679,-1074.7035 10983.1314,-1061.94 10957.9531,-1050 10956.2058,-1049.1714 10954.4338,-1048.3268 10952.6466,-1047.4713\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10954.1536,-1044.3124 10943.6255,-1043.1248 10951.1151,-1050.6186 10954.1536,-1044.3124\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 355 -->\\n\",\n       \"<g id=\\\"node356\\\" class=\\\"node\\\">\\n\",\n       \"<title>355</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11234.4727,-1050C11234.4727,-1050 10979.4336,-1050 10979.4336,-1050 10973.4336,-1050 10967.4336,-1044 10967.4336,-1038 10967.4336,-1038 10967.4336,-998 10967.4336,-998 10967.4336,-992 10973.4336,-986 10979.4336,-986 10979.4336,-986 11234.4727,-986 11234.4727,-986 11240.4727,-986 11246.4727,-992 11246.4727,-998 11246.4727,-998 11246.4727,-1038 11246.4727,-1038 11246.4727,-1044 11240.4727,-1050 11234.4727,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.502</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 29</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [19, 7, 3]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 353&#45;&gt;355 -->\\n\",\n       \"<g id=\\\"edge355\\\" class=\\\"edge\\\">\\n\",\n       \"<title>353&#45;&gt;355</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11106.9531,-1085.8089C11106.9531,-1077.6906 11106.9531,-1068.8517 11106.9531,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11110.4532,-1060.1307 11106.9531,-1050.1308 11103.4532,-1060.1308 11110.4532,-1060.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 356 -->\\n\",\n       \"<g id=\\\"node357\\\" class=\\\"node\\\">\\n\",\n       \"<title>356</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10933.3108,-950C10933.3108,-950 10724.5954,-950 10724.5954,-950 10718.5954,-950 10712.5954,-944 10712.5954,-938 10712.5954,-938 10712.5954,-898 10712.5954,-898 10712.5954,-892 10718.5954,-886 10724.5954,-886 10724.5954,-886 10933.3108,-886 10933.3108,-886 10939.3108,-886 10945.3108,-892 10945.3108,-898 10945.3108,-898 10945.3108,-938 10945.3108,-938 10945.3108,-944 10939.3108,-950 10933.3108,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10828.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10828.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.594</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10828.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10828.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 4, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 355&#45;&gt;356 -->\\n\",\n       \"<g id=\\\"edge356\\\" class=\\\"edge\\\">\\n\",\n       \"<title>355&#45;&gt;356</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11017.8451,-985.9467C10989.0404,-975.5854 10956.94,-964.0384 10927.4933,-953.4461\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10928.6279,-950.1347 10918.0335,-950.0433 10926.2585,-956.7216 10928.6279,-950.1347\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 365 -->\\n\",\n       \"<g id=\\\"node366\\\" class=\\\"node\\\">\\n\",\n       \"<title>365</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11235.0452,-950C11235.0452,-950 10978.861,-950 10978.861,-950 10972.861,-950 10966.861,-944 10966.861,-938 10966.861,-938 10966.861,-898 10966.861,-898 10966.861,-892 10972.861,-886 10978.861,-886 10978.861,-886 11235.0452,-886 11235.0452,-886 11241.0452,-886 11247.0452,-892 11247.0452,-898 11247.0452,-898 11247.0452,-938 11247.0452,-938 11247.0452,-944 11241.0452,-950 11235.0452,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.39</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 21</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11106.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [16, 3, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 355&#45;&gt;365 -->\\n\",\n       \"<g id=\\\"edge365\\\" class=\\\"edge\\\">\\n\",\n       \"<title>355&#45;&gt;365</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11106.9531,-985.8089C11106.9531,-977.6906 11106.9531,-968.8517 11106.9531,-960.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11110.4532,-960.1307 11106.9531,-950.1308 11103.4532,-960.1308 11110.4532,-960.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 357 -->\\n\",\n       \"<g id=\\\"node358\\\" class=\\\"node\\\">\\n\",\n       \"<title>357</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10656.4926,-850C10656.4926,-850 10415.4137,-850 10415.4137,-850 10409.4137,-850 10403.4137,-844 10403.4137,-838 10403.4137,-838 10403.4137,-798 10403.4137,-798 10403.4137,-792 10409.4137,-786 10415.4137,-786 10415.4137,-786 10656.4926,-786 10656.4926,-786 10662.4926,-786 10668.4926,-792 10668.4926,-798 10668.4926,-798 10668.4926,-838 10668.4926,-838 10668.4926,-844 10662.4926,-850 10656.4926,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10535.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Military, armaments, and defense &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10535.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10535.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10535.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 356&#45;&gt;357 -->\\n\",\n       \"<g id=\\\"edge357\\\" class=\\\"edge\\\">\\n\",\n       \"<title>356&#45;&gt;357</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10735.0371,-885.9467C10704.5468,-875.5405 10670.5527,-863.9384 10639.4073,-853.3086\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10640.4345,-849.961 10629.84,-850.0433 10638.1734,-856.5858 10640.4345,-849.961\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 360 -->\\n\",\n       \"<g id=\\\"node361\\\" class=\\\"node\\\">\\n\",\n       \"<title>360</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10959.7071,-850C10959.7071,-850 10698.1991,-850 10698.1991,-850 10692.1991,-850 10686.1991,-844 10686.1991,-838 10686.1991,-838 10686.1991,-798 10686.1991,-798 10686.1991,-792 10692.1991,-786 10698.1991,-786 10698.1991,-786 10959.7071,-786 10959.7071,-786 10965.7071,-786 10971.7071,-792 10971.7071,-798 10971.7071,-798 10971.7071,-838 10971.7071,-838 10971.7071,-844 10965.7071,-850 10959.7071,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10828.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10828.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.48</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10828.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10828.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 356&#45;&gt;360 -->\\n\",\n       \"<g id=\\\"edge360\\\" class=\\\"edge\\\">\\n\",\n       \"<title>356&#45;&gt;360</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10828.9531,-885.8089C10828.9531,-877.6906 10828.9531,-868.8517 10828.9531,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10832.4532,-860.1307 10828.9531,-850.1308 10825.4532,-860.1308 10832.4532,-860.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 358 -->\\n\",\n       \"<g id=\\\"node359\\\" class=\\\"node\\\">\\n\",\n       \"<title>358</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10452.0733,-743C10452.0733,-743 10363.8329,-743 10363.8329,-743 10357.8329,-743 10351.8329,-737 10351.8329,-731 10351.8329,-731 10351.8329,-705 10351.8329,-705 10351.8329,-699 10357.8329,-693 10363.8329,-693 10363.8329,-693 10452.0733,-693 10452.0733,-693 10458.0733,-693 10464.0733,-699 10464.0733,-705 10464.0733,-705 10464.0733,-731 10464.0733,-731 10464.0733,-737 10458.0733,-743 10452.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10407.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10407.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10407.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 357&#45;&gt;358 -->\\n\",\n       \"<g id=\\\"edge358\\\" class=\\\"edge\\\">\\n\",\n       \"<title>357&#45;&gt;358</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10494.7486,-785.8089C10479.8259,-774.1506 10463.0014,-761.0064 10448.1652,-749.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10450.1873,-746.5539 10440.1522,-743.1555 10445.8777,-752.0701 10450.1873,-746.5539\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 359 -->\\n\",\n       \"<g id=\\\"node360\\\" class=\\\"node\\\">\\n\",\n       \"<title>359</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10582.0733,-743C10582.0733,-743 10493.8329,-743 10493.8329,-743 10487.8329,-743 10481.8329,-737 10481.8329,-731 10481.8329,-731 10481.8329,-705 10481.8329,-705 10481.8329,-699 10487.8329,-693 10493.8329,-693 10493.8329,-693 10582.0733,-693 10582.0733,-693 10588.0733,-693 10594.0733,-699 10594.0733,-705 10594.0733,-705 10594.0733,-731 10594.0733,-731 10594.0733,-737 10588.0733,-743 10582.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10537.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10537.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10537.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 357&#45;&gt;359 -->\\n\",\n       \"<g id=\\\"edge359\\\" class=\\\"edge\\\">\\n\",\n       \"<title>357&#45;&gt;359</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10536.5969,-785.8089C10536.8042,-775.446 10537.0349,-763.909 10537.2465,-753.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10540.7493,-753.2236 10537.45,-743.1555 10533.7507,-753.0835 10540.7493,-753.2236\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 361 -->\\n\",\n       \"<g id=\\\"node362\\\" class=\\\"node\\\">\\n\",\n       \"<title>361</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10832.6486,-750C10832.6486,-750 10629.2576,-750 10629.2576,-750 10623.2576,-750 10617.2576,-744 10617.2576,-738 10617.2576,-738 10617.2576,-698 10617.2576,-698 10617.2576,-692 10623.2576,-686 10629.2576,-686 10629.2576,-686 10832.6486,-686 10832.6486,-686 10838.6486,-686 10844.6486,-692 10844.6486,-698 10844.6486,-698 10844.6486,-738 10844.6486,-738 10844.6486,-744 10838.6486,-750 10832.6486,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10730.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10730.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10730.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10730.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 360&#45;&gt;361 -->\\n\",\n       \"<g id=\\\"edge361\\\" class=\\\"edge\\\">\\n\",\n       \"<title>360&#45;&gt;361</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10797.4059,-785.8089C10788.5756,-776.7985 10778.8755,-766.9004 10769.6807,-757.518\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10771.9403,-754.8232 10762.4413,-750.1308 10766.9408,-759.7227 10771.9403,-754.8232\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 364 -->\\n\",\n       \"<g id=\\\"node365\\\" class=\\\"node\\\">\\n\",\n       \"<title>364</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10963.0733,-743C10963.0733,-743 10874.8329,-743 10874.8329,-743 10868.8329,-743 10862.8329,-737 10862.8329,-731 10862.8329,-731 10862.8329,-705 10862.8329,-705 10862.8329,-699 10868.8329,-693 10874.8329,-693 10874.8329,-693 10963.0733,-693 10963.0733,-693 10969.0733,-693 10975.0733,-699 10975.0733,-705 10975.0733,-705 10975.0733,-731 10975.0733,-731 10975.0733,-737 10969.0733,-743 10963.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10918.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10918.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10918.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 360&#45;&gt;364 -->\\n\",\n       \"<g id=\\\"edge364\\\" class=\\\"edge\\\">\\n\",\n       \"<title>360&#45;&gt;364</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10857.9251,-785.8089C10868.029,-774.5824 10879.3729,-761.978 10889.5143,-750.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10892.225,-752.9299 10896.3131,-743.1555 10887.0219,-748.2471 10892.225,-752.9299\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 362 -->\\n\",\n       \"<g id=\\\"node363\\\" class=\\\"node\\\">\\n\",\n       \"<title>362</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10656.0733,-643C10656.0733,-643 10567.8329,-643 10567.8329,-643 10561.8329,-643 10555.8329,-637 10555.8329,-631 10555.8329,-631 10555.8329,-605 10555.8329,-605 10555.8329,-599 10561.8329,-593 10567.8329,-593 10567.8329,-593 10656.0733,-593 10656.0733,-593 10662.0733,-593 10668.0733,-599 10668.0733,-605 10668.0733,-605 10668.0733,-631 10668.0733,-631 10668.0733,-637 10662.0733,-643 10656.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10611.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10611.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10611.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 361&#45;&gt;362 -->\\n\",\n       \"<g id=\\\"edge362\\\" class=\\\"edge\\\">\\n\",\n       \"<title>361&#45;&gt;362</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10692.6457,-685.8089C10678.9008,-674.2586 10663.4203,-661.2497 10649.7214,-649.7381\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10651.7957,-646.9095 10641.8882,-643.1555 10647.2923,-652.2685 10651.7957,-646.9095\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 363 -->\\n\",\n       \"<g id=\\\"node364\\\" class=\\\"node\\\">\\n\",\n       \"<title>363</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10786.0733,-643C10786.0733,-643 10697.8329,-643 10697.8329,-643 10691.8329,-643 10685.8329,-637 10685.8329,-631 10685.8329,-631 10685.8329,-605 10685.8329,-605 10685.8329,-599 10691.8329,-593 10697.8329,-593 10697.8329,-593 10786.0733,-593 10786.0733,-593 10792.0733,-593 10798.0733,-599 10798.0733,-605 10798.0733,-605 10798.0733,-631 10798.0733,-631 10798.0733,-637 10792.0733,-643 10786.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10741.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10741.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10741.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 361&#45;&gt;363 -->\\n\",\n       \"<g id=\\\"edge363\\\" class=\\\"edge\\\">\\n\",\n       \"<title>361&#45;&gt;363</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10734.4941,-685.8089C10735.6341,-675.446 10736.9031,-663.909 10738.0665,-653.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10741.5715,-653.4783 10739.186,-643.1555 10734.6135,-652.7129 10741.5715,-653.4783\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 366 -->\\n\",\n       \"<g id=\\\"node367\\\" class=\\\"node\\\">\\n\",\n       \"<title>366</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11204.6418,-850C11204.6418,-850 11001.2644,-850 11001.2644,-850 10995.2644,-850 10989.2644,-844 10989.2644,-838 10989.2644,-838 10989.2644,-798 10989.2644,-798 10989.2644,-792 10995.2644,-786 11001.2644,-786 11001.2644,-786 11204.6418,-786 11204.6418,-786 11210.6418,-786 11216.6418,-792 11216.6418,-798 11216.6418,-798 11216.6418,-838 11216.6418,-838 11216.6418,-844 11210.6418,-850 11204.6418,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11102.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11102.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.34</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11102.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 20</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11102.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [16, 2, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 365&#45;&gt;366 -->\\n\",\n       \"<g id=\\\"edge366\\\" class=\\\"edge\\\">\\n\",\n       \"<title>365&#45;&gt;366</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11105.6655,-885.8089C11105.3407,-877.6906 11104.9872,-868.8517 11104.6459,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11108.1353,-859.9828 11104.2384,-850.1308 11101.1409,-860.2627 11108.1353,-859.9828\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 379 -->\\n\",\n       \"<g id=\\\"node380\\\" class=\\\"node\\\">\\n\",\n       \"<title>379</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11335.0733,-843C11335.0733,-843 11246.8329,-843 11246.8329,-843 11240.8329,-843 11234.8329,-837 11234.8329,-831 11234.8329,-831 11234.8329,-805 11234.8329,-805 11234.8329,-799 11240.8329,-793 11246.8329,-793 11246.8329,-793 11335.0733,-793 11335.0733,-793 11341.0733,-793 11347.0733,-799 11347.0733,-805 11347.0733,-805 11347.0733,-831 11347.0733,-831 11347.0733,-837 11341.0733,-843 11335.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11290.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11290.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11290.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 365&#45;&gt;379 -->\\n\",\n       \"<g id=\\\"edge379\\\" class=\\\"edge\\\">\\n\",\n       \"<title>365&#45;&gt;379</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11165.9311,-885.9467C11188.3811,-873.7457 11213.8559,-859.9007 11235.9256,-847.9062\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11237.7221,-850.9135 11244.837,-843.0631 11234.3795,-844.7631 11237.7221,-850.9135\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 367 -->\\n\",\n       \"<g id=\\\"node368\\\" class=\\\"node\\\">\\n\",\n       \"<title>367</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11195.7561,-750C11195.7561,-750 11008.1502,-750 11008.1502,-750 11002.1502,-750 10996.1502,-744 10996.1502,-738 10996.1502,-738 10996.1502,-698 10996.1502,-698 10996.1502,-692 11002.1502,-686 11008.1502,-686 11008.1502,-686 11195.7561,-686 11195.7561,-686 11201.7561,-686 11207.7561,-692 11207.7561,-698 11207.7561,-698 11207.7561,-738 11207.7561,-738 11207.7561,-744 11201.7561,-750 11195.7561,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11101.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11101.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.142</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11101.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 13</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11101.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [12, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 366&#45;&gt;367 -->\\n\",\n       \"<g id=\\\"edge367\\\" class=\\\"edge\\\">\\n\",\n       \"<title>366&#45;&gt;367</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11102.6312,-785.8089C11102.55,-777.6906 11102.4616,-768.8517 11102.3763,-760.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11105.8743,-760.0952 11102.2744,-750.1308 11098.8747,-760.1653 11105.8743,-760.0952\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 372 -->\\n\",\n       \"<g id=\\\"node373\\\" class=\\\"node\\\">\\n\",\n       \"<title>372</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11516.345,-750C11516.345,-750 11237.5613,-750 11237.5613,-750 11231.5613,-750 11225.5613,-744 11225.5613,-738 11225.5613,-738 11225.5613,-698 11225.5613,-698 11225.5613,-692 11231.5613,-686 11237.5613,-686 11237.5613,-686 11516.345,-686 11516.345,-686 11522.345,-686 11528.345,-692 11528.345,-698 11528.345,-698 11528.345,-738 11528.345,-738 11528.345,-744 11522.345,-750 11516.345,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11376.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11376.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.571</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11376.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11376.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 1, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 366&#45;&gt;372 -->\\n\",\n       \"<g id=\\\"edge372\\\" class=\\\"edge\\\">\\n\",\n       \"<title>366&#45;&gt;372</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11190.779,-785.9467C11219.0463,-775.6302 11250.534,-764.1384 11279.4537,-753.5837\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11280.9605,-756.7597 11289.1545,-750.0433 11278.5606,-750.1839 11280.9605,-756.7597\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 368 -->\\n\",\n       \"<g id=\\\"node369\\\" class=\\\"node\\\">\\n\",\n       \"<title>368</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M10942.0733,-643C10942.0733,-643 10853.8329,-643 10853.8329,-643 10847.8329,-643 10841.8329,-637 10841.8329,-631 10841.8329,-631 10841.8329,-605 10841.8329,-605 10841.8329,-599 10847.8329,-593 10853.8329,-593 10853.8329,-593 10942.0733,-593 10942.0733,-593 10948.0733,-593 10954.0733,-599 10954.0733,-605 10954.0733,-605 10954.0733,-631 10954.0733,-631 10954.0733,-637 10948.0733,-643 10942.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10897.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10897.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"10897.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [8, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 367&#45;&gt;368 -->\\n\",\n       \"<g id=\\\"edge368\\\" class=\\\"edge\\\">\\n\",\n       \"<title>367&#45;&gt;368</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11036.1784,-685.8642C11013.0262,-674.5415 10986.8291,-661.7173 10962.9531,-650 10961.4005,-649.238 10959.8272,-648.4656 10958.2398,-647.6861\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"10959.5604,-644.4353 10949.0419,-643.1663 10956.4733,-650.7178 10959.5604,-644.4353\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 369 -->\\n\",\n       \"<g id=\\\"node370\\\" class=\\\"node\\\">\\n\",\n       \"<title>369</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11247.5452,-650C11247.5452,-650 10984.361,-650 10984.361,-650 10978.361,-650 10972.361,-644 10972.361,-638 10972.361,-638 10972.361,-598 10972.361,-598 10972.361,-592 10978.361,-586 10984.361,-586 10984.361,-586 11247.5452,-586 11247.5452,-586 11253.5452,-586 11259.5452,-592 11259.5452,-598 11259.5452,-598 11259.5452,-638 11259.5452,-638 11259.5452,-644 11253.5452,-650 11247.5452,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11115.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11115.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.32</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11115.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11115.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 367&#45;&gt;369 -->\\n\",\n       \"<g id=\\\"edge369\\\" class=\\\"edge\\\">\\n\",\n       \"<title>367&#45;&gt;369</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11106.4599,-685.8089C11107.6089,-677.6014 11108.8611,-668.6574 11110.0679,-660.0374\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11113.5345,-660.5195 11111.4548,-650.1308 11106.6021,-659.5489 11113.5345,-660.5195\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 370 -->\\n\",\n       \"<g id=\\\"node371\\\" class=\\\"node\\\">\\n\",\n       \"<title>370</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11080.0733,-543C11080.0733,-543 10991.8329,-543 10991.8329,-543 10985.8329,-543 10979.8329,-537 10979.8329,-531 10979.8329,-531 10979.8329,-505 10979.8329,-505 10979.8329,-499 10985.8329,-493 10991.8329,-493 10991.8329,-493 11080.0733,-493 11080.0733,-493 11086.0733,-493 11092.0733,-499 11092.0733,-505 11092.0733,-505 11092.0733,-531 11092.0733,-531 11092.0733,-537 11086.0733,-543 11080.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11035.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11035.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11035.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 369&#45;&gt;370 -->\\n\",\n       \"<g id=\\\"edge370\\\" class=\\\"edge\\\">\\n\",\n       \"<title>369&#45;&gt;370</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11090.2003,-585.8089C11081.3054,-574.6904 11071.3294,-562.2203 11062.3813,-551.0352\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11065.0576,-548.7778 11056.0776,-543.1555 11059.5915,-553.1507 11065.0576,-548.7778\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 371 -->\\n\",\n       \"<g id=\\\"node372\\\" class=\\\"node\\\">\\n\",\n       \"<title>371</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11210.0733,-543C11210.0733,-543 11121.8329,-543 11121.8329,-543 11115.8329,-543 11109.8329,-537 11109.8329,-531 11109.8329,-531 11109.8329,-505 11109.8329,-505 11109.8329,-499 11115.8329,-493 11121.8329,-493 11121.8329,-493 11210.0733,-493 11210.0733,-493 11216.0733,-493 11222.0733,-499 11222.0733,-505 11222.0733,-505 11222.0733,-531 11222.0733,-531 11222.0733,-537 11216.0733,-543 11210.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11165.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11165.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11165.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 369&#45;&gt;371 -->\\n\",\n       \"<g id=\\\"edge371\\\" class=\\\"edge\\\">\\n\",\n       \"<title>369&#45;&gt;371</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11132.0487,-585.8089C11137.3921,-575.1221 11143.3597,-563.1868 11148.7811,-552.344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11152.0337,-553.6651 11153.3754,-543.1555 11145.7727,-550.5346 11152.0337,-553.6651\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 373 -->\\n\",\n       \"<g id=\\\"node374\\\" class=\\\"node\\\">\\n\",\n       \"<title>373</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11393.0733,-643C11393.0733,-643 11304.8329,-643 11304.8329,-643 11298.8329,-643 11292.8329,-637 11292.8329,-631 11292.8329,-631 11292.8329,-605 11292.8329,-605 11292.8329,-599 11298.8329,-593 11304.8329,-593 11304.8329,-593 11393.0733,-593 11393.0733,-593 11399.0733,-593 11405.0733,-599 11405.0733,-605 11405.0733,-605 11405.0733,-631 11405.0733,-631 11405.0733,-637 11399.0733,-643 11393.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11348.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11348.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11348.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 372&#45;&gt;373 -->\\n\",\n       \"<g id=\\\"edge373\\\" class=\\\"edge\\\">\\n\",\n       \"<title>372&#45;&gt;373</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11367.9396,-685.8089C11365.0078,-675.338 11361.7403,-663.6685 11358.7538,-653.0025\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11362.0634,-651.8415 11355.9967,-643.1555 11355.3227,-653.7289 11362.0634,-651.8415\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 374 -->\\n\",\n       \"<g id=\\\"node375\\\" class=\\\"node\\\">\\n\",\n       \"<title>374</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11622.7561,-650C11622.7561,-650 11435.1502,-650 11435.1502,-650 11429.1502,-650 11423.1502,-644 11423.1502,-638 11423.1502,-638 11423.1502,-598 11423.1502,-598 11423.1502,-592 11429.1502,-586 11435.1502,-586 11435.1502,-586 11622.7561,-586 11622.7561,-586 11628.7561,-586 11634.7561,-592 11634.7561,-598 11634.7561,-598 11634.7561,-638 11634.7561,-638 11634.7561,-644 11628.7561,-650 11622.7561,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11528.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11528.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.625</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11528.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11528.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 372&#45;&gt;374 -->\\n\",\n       \"<g id=\\\"edge374\\\" class=\\\"edge\\\">\\n\",\n       \"<title>372&#45;&gt;374</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11425.8836,-685.8089C11440.3931,-676.2632 11456.4168,-665.7213 11471.4187,-655.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11473.6839,-658.5509 11480.1144,-650.1308 11469.8365,-652.703 11473.6839,-658.5509\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 375 -->\\n\",\n       \"<g id=\\\"node376\\\" class=\\\"node\\\">\\n\",\n       \"<title>375</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11548.435,-550C11548.435,-550 11301.4713,-550 11301.4713,-550 11295.4713,-550 11289.4713,-544 11289.4713,-538 11289.4713,-538 11289.4713,-498 11289.4713,-498 11289.4713,-492 11295.4713,-486 11301.4713,-486 11301.4713,-486 11548.435,-486 11548.435,-486 11554.435,-486 11560.435,-492 11560.435,-498 11560.435,-498 11560.435,-538 11560.435,-538 11560.435,-544 11554.435,-550 11548.435,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11424.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11424.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11424.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11424.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 374&#45;&gt;375 -->\\n\",\n       \"<g id=\\\"edge375\\\" class=\\\"edge\\\">\\n\",\n       \"<title>374&#45;&gt;375</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11495.4744,-585.8089C11486.0107,-576.7092 11475.6056,-566.7043 11465.7621,-557.2394\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11468.0034,-554.539 11458.3691,-550.1308 11463.1516,-559.5848 11468.0034,-554.539\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 378 -->\\n\",\n       \"<g id=\\\"node379\\\" class=\\\"node\\\">\\n\",\n       \"<title>378</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11678.0733,-543C11678.0733,-543 11589.8329,-543 11589.8329,-543 11583.8329,-543 11577.8329,-537 11577.8329,-531 11577.8329,-531 11577.8329,-505 11577.8329,-505 11577.8329,-499 11583.8329,-493 11589.8329,-493 11589.8329,-493 11678.0733,-493 11678.0733,-493 11684.0733,-493 11690.0733,-499 11690.0733,-505 11690.0733,-505 11690.0733,-531 11690.0733,-531 11690.0733,-537 11684.0733,-543 11678.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11633.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11633.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11633.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 374&#45;&gt;378 -->\\n\",\n       \"<g id=\\\"edge378\\\" class=\\\"edge\\\">\\n\",\n       \"<title>374&#45;&gt;378</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11562.7538,-585.8089C11574.7683,-574.3665 11588.2857,-561.4928 11600.2888,-550.0612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11602.7122,-552.5866 11607.5398,-543.1555 11597.8846,-547.5176 11602.7122,-552.5866\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 376 -->\\n\",\n       \"<g id=\\\"node377\\\" class=\\\"node\\\">\\n\",\n       \"<title>376</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11404.0733,-443C11404.0733,-443 11315.8329,-443 11315.8329,-443 11309.8329,-443 11303.8329,-437 11303.8329,-431 11303.8329,-431 11303.8329,-405 11303.8329,-405 11303.8329,-399 11309.8329,-393 11315.8329,-393 11315.8329,-393 11404.0733,-393 11404.0733,-393 11410.0733,-393 11416.0733,-399 11416.0733,-405 11416.0733,-405 11416.0733,-431 11416.0733,-431 11416.0733,-437 11410.0733,-443 11404.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11359.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11359.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11359.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 375&#45;&gt;376 -->\\n\",\n       \"<g id=\\\"edge376\\\" class=\\\"edge\\\">\\n\",\n       \"<title>375&#45;&gt;376</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11404.0289,-485.8089C11396.9422,-474.9063 11389.0108,-462.7041 11381.8505,-451.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11384.6887,-449.6325 11376.3042,-443.1555 11378.8196,-453.4475 11384.6887,-449.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 377 -->\\n\",\n       \"<g id=\\\"node378\\\" class=\\\"node\\\">\\n\",\n       \"<title>377</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11534.0733,-443C11534.0733,-443 11445.8329,-443 11445.8329,-443 11439.8329,-443 11433.8329,-437 11433.8329,-431 11433.8329,-431 11433.8329,-405 11433.8329,-405 11433.8329,-399 11439.8329,-393 11445.8329,-393 11445.8329,-393 11534.0733,-393 11534.0733,-393 11540.0733,-393 11546.0733,-399 11546.0733,-405 11546.0733,-405 11546.0733,-431 11546.0733,-431 11546.0733,-437 11540.0733,-443 11534.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11489.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11489.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11489.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 375&#45;&gt;377 -->\\n\",\n       \"<g id=\\\"edge377\\\" class=\\\"edge\\\">\\n\",\n       \"<title>375&#45;&gt;377</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11445.8773,-485.8089C11452.9641,-474.9063 11460.8955,-462.7041 11468.0558,-451.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11471.0867,-453.4475 11473.602,-443.1555 11465.2175,-449.6325 11471.0867,-453.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 381 -->\\n\",\n       \"<g id=\\\"node382\\\" class=\\\"node\\\">\\n\",\n       \"<title>381</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11554.7071,-1050C11554.7071,-1050 11293.1991,-1050 11293.1991,-1050 11287.1991,-1050 11281.1991,-1044 11281.1991,-1038 11281.1991,-1038 11281.1991,-998 11281.1991,-998 11281.1991,-992 11287.1991,-986 11293.1991,-986 11293.1991,-986 11554.7071,-986 11554.7071,-986 11560.7071,-986 11566.7071,-992 11566.7071,-998 11566.7071,-998 11566.7071,-1038 11566.7071,-1038 11566.7071,-1044 11560.7071,-1050 11554.7071,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11423.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11423.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.133</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11423.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 14</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11423.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 13, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 380&#45;&gt;381 -->\\n\",\n       \"<g id=\\\"edge381\\\" class=\\\"edge\\\">\\n\",\n       \"<title>380&#45;&gt;381</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11508.0362,-1085.8089C11496.5313,-1076.5308 11483.8595,-1066.3116 11471.9204,-1056.6833\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11473.7766,-1053.6839 11463.7953,-1050.1308 11469.3823,-1059.1328 11473.7766,-1053.6839\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 386 -->\\n\",\n       \"<g id=\\\"node387\\\" class=\\\"node\\\">\\n\",\n       \"<title>386</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11859.5452,-1050C11859.5452,-1050 11596.361,-1050 11596.361,-1050 11590.361,-1050 11584.361,-1044 11584.361,-1038 11584.361,-1038 11584.361,-998 11584.361,-998 11584.361,-992 11590.361,-986 11596.361,-986 11596.361,-986 11859.5452,-986 11859.5452,-986 11865.5452,-986 11871.5452,-992 11871.5452,-998 11871.5452,-998 11871.5452,-1038 11871.5452,-1038 11871.5452,-1044 11865.5452,-1050 11859.5452,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11727.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11727.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.48</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11727.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 10</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11727.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 380&#45;&gt;386 -->\\n\",\n       \"<g id=\\\"edge386\\\" class=\\\"edge\\\">\\n\",\n       \"<title>380&#45;&gt;386</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11605.8971,-1085.8089C11623.5612,-1075.9955 11643.1203,-1065.1293 11661.3116,-1055.023\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11663.0759,-1058.0468 11670.1178,-1050.1308 11659.6764,-1051.9277 11663.0759,-1058.0468\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 382 -->\\n\",\n       \"<g id=\\\"node383\\\" class=\\\"node\\\">\\n\",\n       \"<title>382</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11380.8594,-943C11380.8594,-943 11285.0468,-943 11285.0468,-943 11279.0468,-943 11273.0468,-937 11273.0468,-931 11273.0468,-931 11273.0468,-905 11273.0468,-905 11273.0468,-899 11279.0468,-893 11285.0468,-893 11285.0468,-893 11380.8594,-893 11380.8594,-893 11386.8594,-893 11392.8594,-899 11392.8594,-905 11392.8594,-905 11392.8594,-931 11392.8594,-931 11392.8594,-937 11386.8594,-943 11380.8594,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11332.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11332.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 10</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11332.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 10, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 381&#45;&gt;382 -->\\n\",\n       \"<g id=\\\"edge382\\\" class=\\\"edge\\\">\\n\",\n       \"<title>381&#45;&gt;382</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11394.6592,-985.8089C11384.4431,-974.5824 11372.9731,-961.978 11362.7191,-950.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11365.1637,-948.196 11355.8447,-943.1555 11359.9865,-952.9073 11365.1637,-948.196\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 383 -->\\n\",\n       \"<g id=\\\"node384\\\" class=\\\"node\\\">\\n\",\n       \"<title>383</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11511.0733,-950C11511.0733,-950 11422.8329,-950 11422.8329,-950 11416.8329,-950 11410.8329,-944 11410.8329,-938 11410.8329,-938 11410.8329,-898 11410.8329,-898 11410.8329,-892 11416.8329,-886 11422.8329,-886 11422.8329,-886 11511.0733,-886 11511.0733,-886 11517.0733,-886 11523.0733,-892 11523.0733,-898 11523.0733,-898 11523.0733,-938 11523.0733,-938 11523.0733,-944 11517.0733,-950 11511.0733,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11466.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11466.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11466.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11466.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 381&#45;&gt;383 -->\\n\",\n       \"<g id=\\\"edge383\\\" class=\\\"edge\\\">\\n\",\n       \"<title>381&#45;&gt;383</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11437.7953,-985.8089C11441.4013,-977.4229 11445.3378,-968.2681 11449.1186,-959.4757\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11452.4019,-960.7001 11453.1369,-950.1308 11445.9712,-957.9348 11452.4019,-960.7001\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 384 -->\\n\",\n       \"<g id=\\\"node385\\\" class=\\\"node\\\">\\n\",\n       \"<title>384</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11465.0733,-843C11465.0733,-843 11376.8329,-843 11376.8329,-843 11370.8329,-843 11364.8329,-837 11364.8329,-831 11364.8329,-831 11364.8329,-805 11364.8329,-805 11364.8329,-799 11370.8329,-793 11376.8329,-793 11376.8329,-793 11465.0733,-793 11465.0733,-793 11471.0733,-793 11477.0733,-799 11477.0733,-805 11477.0733,-805 11477.0733,-831 11477.0733,-831 11477.0733,-837 11471.0733,-843 11465.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11420.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11420.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11420.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 383&#45;&gt;384 -->\\n\",\n       \"<g id=\\\"edge384\\\" class=\\\"edge\\\">\\n\",\n       \"<title>383&#45;&gt;384</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11452.1452,-885.8089C11447.2293,-875.1221 11441.7391,-863.1868 11436.7514,-852.344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11439.8835,-850.7778 11432.5247,-843.1555 11433.5241,-853.7031 11439.8835,-850.7778\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 385 -->\\n\",\n       \"<g id=\\\"node386\\\" class=\\\"node\\\">\\n\",\n       \"<title>385</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11595.0733,-843C11595.0733,-843 11506.8329,-843 11506.8329,-843 11500.8329,-843 11494.8329,-837 11494.8329,-831 11494.8329,-831 11494.8329,-805 11494.8329,-805 11494.8329,-799 11500.8329,-793 11506.8329,-793 11506.8329,-793 11595.0733,-793 11595.0733,-793 11601.0733,-793 11607.0733,-799 11607.0733,-805 11607.0733,-805 11607.0733,-831 11607.0733,-831 11607.0733,-837 11601.0733,-843 11595.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11550.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11550.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11550.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 383&#45;&gt;385 -->\\n\",\n       \"<g id=\\\"edge385\\\" class=\\\"edge\\\">\\n\",\n       \"<title>383&#45;&gt;385</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11493.9936,-885.8089C11503.3332,-874.6904 11513.8081,-862.2203 11523.2035,-851.0352\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11526.0705,-853.0638 11529.8225,-843.1555 11520.7105,-848.5614 11526.0705,-853.0638\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 387 -->\\n\",\n       \"<g id=\\\"node388\\\" class=\\\"node\\\">\\n\",\n       \"<title>387</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11751.7561,-950C11751.7561,-950 11564.1502,-950 11564.1502,-950 11558.1502,-950 11552.1502,-944 11552.1502,-938 11552.1502,-938 11552.1502,-898 11552.1502,-898 11552.1502,-892 11558.1502,-886 11564.1502,-886 11564.1502,-886 11751.7561,-886 11751.7561,-886 11757.7561,-886 11763.7561,-892 11763.7561,-898 11763.7561,-898 11763.7561,-938 11763.7561,-938 11763.7561,-944 11757.7561,-950 11751.7561,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11657.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11657.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.245</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11657.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11657.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 386&#45;&gt;387 -->\\n\",\n       \"<g id=\\\"edge387\\\" class=\\\"edge\\\">\\n\",\n       \"<title>386&#45;&gt;387</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11705.4194,-985.8089C11699.2994,-977.0661 11692.5945,-967.4876 11686.2019,-958.3553\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11689.0466,-956.316 11680.4447,-950.1308 11683.312,-960.3302 11689.0466,-956.316\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 394 -->\\n\",\n       \"<g id=\\\"node395\\\" class=\\\"node\\\">\\n\",\n       \"<title>394</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11882.0733,-943C11882.0733,-943 11793.8329,-943 11793.8329,-943 11787.8329,-943 11781.8329,-937 11781.8329,-931 11781.8329,-931 11781.8329,-905 11781.8329,-905 11781.8329,-899 11787.8329,-893 11793.8329,-893 11793.8329,-893 11882.0733,-893 11882.0733,-893 11888.0733,-893 11894.0733,-899 11894.0733,-905 11894.0733,-905 11894.0733,-931 11894.0733,-931 11894.0733,-937 11888.0733,-943 11882.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11837.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11837.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11837.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 3, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 386&#45;&gt;394 -->\\n\",\n       \"<g id=\\\"edge394\\\" class=\\\"edge\\\">\\n\",\n       \"<title>386&#45;&gt;394</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11763.3633,-985.8089C11775.95,-974.3665 11790.1111,-961.4928 11802.6858,-950.0612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11805.237,-952.4721 11810.282,-943.1555 11800.5282,-947.2925 11805.237,-952.4721\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 388 -->\\n\",\n       \"<g id=\\\"node389\\\" class=\\\"node\\\">\\n\",\n       \"<title>388</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11725.0733,-843C11725.0733,-843 11636.8329,-843 11636.8329,-843 11630.8329,-843 11624.8329,-837 11624.8329,-831 11624.8329,-831 11624.8329,-805 11624.8329,-805 11624.8329,-799 11630.8329,-793 11636.8329,-793 11636.8329,-793 11725.0733,-793 11725.0733,-793 11731.0733,-793 11737.0733,-799 11737.0733,-805 11737.0733,-805 11737.0733,-831 11737.0733,-831 11737.0733,-837 11731.0733,-843 11725.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11680.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11680.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11680.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 387&#45;&gt;388 -->\\n\",\n       \"<g id=\\\"edge388\\\" class=\\\"edge\\\">\\n\",\n       \"<title>387&#45;&gt;388</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11665.3571,-885.8089C11667.7654,-875.338 11670.4494,-863.6685 11672.9026,-853.0025\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11676.3367,-853.6856 11675.1674,-843.1555 11669.5149,-852.1166 11676.3367,-853.6856\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 389 -->\\n\",\n       \"<g id=\\\"node390\\\" class=\\\"node\\\">\\n\",\n       \"<title>389</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12018.5967,-850C12018.5967,-850 11767.3095,-850 11767.3095,-850 11761.3095,-850 11755.3095,-844 11755.3095,-838 11755.3095,-838 11755.3095,-798 11755.3095,-798 11755.3095,-792 11761.3095,-786 11767.3095,-786 11767.3095,-786 12018.5967,-786 12018.5967,-786 12024.5967,-786 12030.5967,-792 12030.5967,-798 12030.5967,-798 12030.5967,-838 12030.5967,-838 12030.5967,-844 12024.5967,-850 12018.5967,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11892.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11892.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11892.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11892.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 387&#45;&gt;389 -->\\n\",\n       \"<g id=\\\"edge389\\\" class=\\\"edge\\\">\\n\",\n       \"<title>387&#45;&gt;389</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11733.2783,-885.9467C11757.2059,-875.7648 11783.8239,-864.438 11808.3597,-853.9972\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11809.8203,-857.1795 11817.6514,-850.0433 11807.0794,-850.7384 11809.8203,-857.1795\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 390 -->\\n\",\n       \"<g id=\\\"node391\\\" class=\\\"node\\\">\\n\",\n       \"<title>390</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11850.0733,-743C11850.0733,-743 11761.8329,-743 11761.8329,-743 11755.8329,-743 11749.8329,-737 11749.8329,-731 11749.8329,-731 11749.8329,-705 11749.8329,-705 11749.8329,-699 11755.8329,-693 11761.8329,-693 11761.8329,-693 11850.0733,-693 11850.0733,-693 11856.0733,-693 11862.0733,-699 11862.0733,-705 11862.0733,-705 11862.0733,-731 11862.0733,-731 11862.0733,-737 11856.0733,-743 11850.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11805.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11805.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11805.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 389&#45;&gt;390 -->\\n\",\n       \"<g id=\\\"edge390\\\" class=\\\"edge\\\">\\n\",\n       \"<title>389&#45;&gt;390</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11864.9469,-785.8089C11855.1798,-774.5824 11844.214,-761.978 11834.4107,-750.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11837.0427,-748.4027 11827.8384,-743.1555 11831.7616,-752.9973 11837.0427,-748.4027\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 391 -->\\n\",\n       \"<g id=\\\"node392\\\" class=\\\"node\\\">\\n\",\n       \"<title>391</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12069.9521,-750C12069.9521,-750 11891.9541,-750 11891.9541,-750 11885.9541,-750 11879.9541,-744 11879.9541,-738 11879.9541,-738 11879.9541,-698 11879.9541,-698 11879.9541,-692 11885.9541,-686 11891.9541,-686 11891.9541,-686 12069.9521,-686 12069.9521,-686 12075.9521,-686 12081.9521,-692 12081.9521,-698 12081.9521,-698 12081.9521,-738 12081.9521,-738 12081.9521,-744 12075.9521,-750 12069.9521,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11980.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11980.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11980.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11980.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 389&#45;&gt;391 -->\\n\",\n       \"<g id=\\\"edge391\\\" class=\\\"edge\\\">\\n\",\n       \"<title>389&#45;&gt;391</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11921.2813,-785.8089C11929.132,-776.8877 11937.7484,-767.0963 11945.932,-757.7968\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11948.6993,-759.9501 11952.6781,-750.1308 11943.4442,-755.3257 11948.6993,-759.9501\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 392 -->\\n\",\n       \"<g id=\\\"node393\\\" class=\\\"node\\\">\\n\",\n       \"<title>392</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11960.0733,-643C11960.0733,-643 11871.8329,-643 11871.8329,-643 11865.8329,-643 11859.8329,-637 11859.8329,-631 11859.8329,-631 11859.8329,-605 11859.8329,-605 11859.8329,-599 11865.8329,-593 11871.8329,-593 11871.8329,-593 11960.0733,-593 11960.0733,-593 11966.0733,-593 11972.0733,-599 11972.0733,-605 11972.0733,-605 11972.0733,-631 11972.0733,-631 11972.0733,-637 11966.0733,-643 11960.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11915.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11915.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11915.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 391&#45;&gt;392 -->\\n\",\n       \"<g id=\\\"edge392\\\" class=\\\"edge\\\">\\n\",\n       \"<title>391&#45;&gt;392</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11960.0289,-685.8089C11952.9422,-674.9063 11945.0108,-662.7041 11937.8505,-651.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11940.6887,-649.6325 11932.3042,-643.1555 11934.8196,-653.4475 11940.6887,-649.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 393 -->\\n\",\n       \"<g id=\\\"node394\\\" class=\\\"node\\\">\\n\",\n       \"<title>393</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12090.0733,-643C12090.0733,-643 12001.8329,-643 12001.8329,-643 11995.8329,-643 11989.8329,-637 11989.8329,-631 11989.8329,-631 11989.8329,-605 11989.8329,-605 11989.8329,-599 11995.8329,-593 12001.8329,-593 12001.8329,-593 12090.0733,-593 12090.0733,-593 12096.0733,-593 12102.0733,-599 12102.0733,-605 12102.0733,-605 12102.0733,-631 12102.0733,-631 12102.0733,-637 12096.0733,-643 12090.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12045.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12045.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12045.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 391&#45;&gt;393 -->\\n\",\n       \"<g id=\\\"edge393\\\" class=\\\"edge\\\">\\n\",\n       \"<title>391&#45;&gt;393</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12001.8773,-685.8089C12008.9641,-674.9063 12016.8955,-662.7041 12024.0558,-651.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12027.0867,-653.4475 12029.602,-643.1555 12021.2175,-649.6325 12027.0867,-653.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 396 -->\\n\",\n       \"<g id=\\\"node397\\\" class=\\\"node\\\">\\n\",\n       \"<title>396</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12098.7071,-1150C12098.7071,-1150 11837.1991,-1150 11837.1991,-1150 11831.1991,-1150 11825.1991,-1144 11825.1991,-1138 11825.1991,-1138 11825.1991,-1098 11825.1991,-1098 11825.1991,-1092 11831.1991,-1086 11837.1991,-1086 11837.1991,-1086 12098.7071,-1086 12098.7071,-1086 12104.7071,-1086 12110.7071,-1092 12110.7071,-1098 12110.7071,-1098 12110.7071,-1138 12110.7071,-1138 12110.7071,-1144 12104.7071,-1150 12098.7071,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11967.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11967.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.18</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11967.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 10</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11967.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [9, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 395&#45;&gt;396 -->\\n\",\n       \"<g id=\\\"edge396\\\" class=\\\"edge\\\">\\n\",\n       \"<title>395&#45;&gt;396</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11967.9531,-1185.8089C11967.9531,-1177.6906 11967.9531,-1168.8517 11967.9531,-1160.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11971.4532,-1160.1307 11967.9531,-1150.1308 11964.4532,-1160.1308 11971.4532,-1160.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 401 -->\\n\",\n       \"<g id=\\\"node402\\\" class=\\\"node\\\">\\n\",\n       \"<title>401</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12318.7903,-1150C12318.7903,-1150 12145.1159,-1150 12145.1159,-1150 12139.1159,-1150 12133.1159,-1144 12133.1159,-1138 12133.1159,-1138 12133.1159,-1098 12133.1159,-1098 12133.1159,-1092 12139.1159,-1086 12145.1159,-1086 12145.1159,-1086 12318.7903,-1086 12318.7903,-1086 12324.7903,-1086 12330.7903,-1092 12330.7903,-1098 12330.7903,-1098 12330.7903,-1138 12330.7903,-1138 12330.7903,-1144 12324.7903,-1150 12318.7903,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12231.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12231.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12231.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12231.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 395&#45;&gt;401 -->\\n\",\n       \"<g id=\\\"edge401\\\" class=\\\"edge\\\">\\n\",\n       \"<title>395&#45;&gt;401</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12052.5737,-1185.9467C12079.6909,-1175.6751 12109.884,-1164.2383 12137.6485,-1153.7214\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12139.247,-1156.8587 12147.3588,-1150.0433 12136.7674,-1150.3126 12139.247,-1156.8587\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 397 -->\\n\",\n       \"<g id=\\\"node398\\\" class=\\\"node\\\">\\n\",\n       \"<title>397</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12015.5874,-1050C12015.5874,-1050 11910.3188,-1050 11910.3188,-1050 11904.3188,-1050 11898.3188,-1044 11898.3188,-1038 11898.3188,-1038 11898.3188,-998 11898.3188,-998 11898.3188,-992 11904.3188,-986 11910.3188,-986 11910.3188,-986 12015.5874,-986 12015.5874,-986 12021.5874,-986 12027.5874,-992 12027.5874,-998 12027.5874,-998 12027.5874,-1038 12027.5874,-1038 12027.5874,-1044 12021.5874,-1050 12015.5874,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11962.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11962.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11962.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11962.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 396&#45;&gt;397 -->\\n\",\n       \"<g id=\\\"edge397\\\" class=\\\"edge\\\">\\n\",\n       \"<title>396&#45;&gt;397</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11966.3436,-1085.8089C11965.9377,-1077.6906 11965.4957,-1068.8517 11965.0691,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11968.5548,-1059.9435 11964.5597,-1050.1308 11961.5635,-1060.2931 11968.5548,-1059.9435\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 400 -->\\n\",\n       \"<g id=\\\"node401\\\" class=\\\"node\\\">\\n\",\n       \"<title>400</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12146.0733,-1043C12146.0733,-1043 12057.8329,-1043 12057.8329,-1043 12051.8329,-1043 12045.8329,-1037 12045.8329,-1031 12045.8329,-1031 12045.8329,-1005 12045.8329,-1005 12045.8329,-999 12051.8329,-993 12057.8329,-993 12057.8329,-993 12146.0733,-993 12146.0733,-993 12152.0733,-993 12158.0733,-999 12158.0733,-1005 12158.0733,-1005 12158.0733,-1031 12158.0733,-1031 12158.0733,-1037 12152.0733,-1043 12146.0733,-1043\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12101.9531\\\" y=\\\"-1027.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12101.9531\\\" y=\\\"-1013.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12101.9531\\\" y=\\\"-999.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 396&#45;&gt;400 -->\\n\",\n       \"<g id=\\\"edge400\\\" class=\\\"edge\\\">\\n\",\n       \"<title>396&#45;&gt;400</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12011.0892,-1085.8089C12026.7113,-1074.1506 12044.3245,-1061.0064 12059.8561,-1049.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12062.3237,-1051.9414 12068.2447,-1043.1555 12058.137,-1046.3314 12062.3237,-1051.9414\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 398 -->\\n\",\n       \"<g id=\\\"node399\\\" class=\\\"node\\\">\\n\",\n       \"<title>398</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12012.0733,-943C12012.0733,-943 11923.8329,-943 11923.8329,-943 11917.8329,-943 11911.8329,-937 11911.8329,-931 11911.8329,-931 11911.8329,-905 11911.8329,-905 11911.8329,-899 11917.8329,-893 11923.8329,-893 11923.8329,-893 12012.0733,-893 12012.0733,-893 12018.0733,-893 12024.0733,-899 12024.0733,-905 12024.0733,-905 12024.0733,-931 12024.0733,-931 12024.0733,-937 12018.0733,-943 12012.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11967.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11967.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"11967.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 397&#45;&gt;398 -->\\n\",\n       \"<g id=\\\"edge398\\\" class=\\\"edge\\\">\\n\",\n       \"<title>397&#45;&gt;398</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M11964.5627,-985.8089C11965.0808,-975.446 11965.6577,-963.909 11966.1865,-953.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"11969.6915,-953.3179 11966.6953,-943.1555 11962.7002,-952.9683 11969.6915,-953.3179\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 399 -->\\n\",\n       \"<g id=\\\"node400\\\" class=\\\"node\\\">\\n\",\n       \"<title>399</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12142.0733,-943C12142.0733,-943 12053.8329,-943 12053.8329,-943 12047.8329,-943 12041.8329,-937 12041.8329,-931 12041.8329,-931 12041.8329,-905 12041.8329,-905 12041.8329,-899 12047.8329,-893 12053.8329,-893 12053.8329,-893 12142.0733,-893 12142.0733,-893 12148.0733,-893 12154.0733,-899 12154.0733,-905 12154.0733,-905 12154.0733,-931 12154.0733,-931 12154.0733,-937 12148.0733,-943 12142.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12097.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12097.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12097.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 397&#45;&gt;399 -->\\n\",\n       \"<g id=\\\"edge399\\\" class=\\\"edge\\\">\\n\",\n       \"<title>397&#45;&gt;399</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12006.4111,-985.8089C12022.1498,-974.1506 12039.8944,-961.0064 12055.5419,-949.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12058.0409,-951.9203 12063.9931,-943.1555 12053.8742,-946.2954 12058.0409,-951.9203\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 402 -->\\n\",\n       \"<g id=\\\"node403\\\" class=\\\"node\\\">\\n\",\n       \"<title>402</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12276.0733,-1043C12276.0733,-1043 12187.8329,-1043 12187.8329,-1043 12181.8329,-1043 12175.8329,-1037 12175.8329,-1031 12175.8329,-1031 12175.8329,-1005 12175.8329,-1005 12175.8329,-999 12181.8329,-993 12187.8329,-993 12187.8329,-993 12276.0733,-993 12276.0733,-993 12282.0733,-993 12288.0733,-999 12288.0733,-1005 12288.0733,-1005 12288.0733,-1031 12288.0733,-1031 12288.0733,-1037 12282.0733,-1043 12276.0733,-1043\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12231.9531\\\" y=\\\"-1027.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12231.9531\\\" y=\\\"-1013.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12231.9531\\\" y=\\\"-999.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 401&#45;&gt;402 -->\\n\",\n       \"<g id=\\\"edge402\\\" class=\\\"edge\\\">\\n\",\n       \"<title>401&#45;&gt;402</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12231.9531,-1085.8089C12231.9531,-1075.446 12231.9531,-1063.909 12231.9531,-1053.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12235.4532,-1053.1555 12231.9531,-1043.1555 12228.4532,-1053.1556 12235.4532,-1053.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 403 -->\\n\",\n       \"<g id=\\\"node404\\\" class=\\\"node\\\">\\n\",\n       \"<title>403</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12406.0733,-1043C12406.0733,-1043 12317.8329,-1043 12317.8329,-1043 12311.8329,-1043 12305.8329,-1037 12305.8329,-1031 12305.8329,-1031 12305.8329,-1005 12305.8329,-1005 12305.8329,-999 12311.8329,-993 12317.8329,-993 12317.8329,-993 12406.0733,-993 12406.0733,-993 12412.0733,-993 12418.0733,-999 12418.0733,-1005 12418.0733,-1005 12418.0733,-1031 12418.0733,-1031 12418.0733,-1037 12412.0733,-1043 12406.0733,-1043\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12361.9531\\\" y=\\\"-1027.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12361.9531\\\" y=\\\"-1013.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12361.9531\\\" y=\\\"-999.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 401&#45;&gt;403 -->\\n\",\n       \"<g id=\\\"edge403\\\" class=\\\"edge\\\">\\n\",\n       \"<title>401&#45;&gt;403</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12273.8015,-1085.8089C12288.9573,-1074.1506 12306.0448,-1061.0064 12321.1127,-1049.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12323.4587,-1052.0269 12329.2509,-1043.1555 12319.1907,-1046.4785 12323.4587,-1052.0269\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 405 -->\\n\",\n       \"<g id=\\\"node406\\\" class=\\\"node\\\">\\n\",\n       \"<title>405</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12822.7071,-1250C12822.7071,-1250 12561.1991,-1250 12561.1991,-1250 12555.1991,-1250 12549.1991,-1244 12549.1991,-1238 12549.1991,-1238 12549.1991,-1198 12549.1991,-1198 12549.1991,-1192 12555.1991,-1186 12561.1991,-1186 12561.1991,-1186 12822.7071,-1186 12822.7071,-1186 12828.7071,-1186 12834.7071,-1192 12834.7071,-1198 12834.7071,-1198 12834.7071,-1238 12834.7071,-1238 12834.7071,-1244 12828.7071,-1250 12822.7071,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12691.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12691.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.531</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12691.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12691.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 2, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 404&#45;&gt;405 -->\\n\",\n       \"<g id=\\\"edge405\\\" class=\\\"edge\\\">\\n\",\n       \"<title>404&#45;&gt;405</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12691.9531,-1285.8089C12691.9531,-1277.6906 12691.9531,-1268.8517 12691.9531,-1260.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12695.4532,-1260.1307 12691.9531,-1250.1308 12688.4532,-1260.1308 12695.4532,-1260.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 414 -->\\n\",\n       \"<g id=\\\"node415\\\" class=\\\"node\\\">\\n\",\n       \"<title>414</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13420.9908,-1250C13420.9908,-1250 13262.9154,-1250 13262.9154,-1250 13256.9154,-1250 13250.9154,-1244 13250.9154,-1238 13250.9154,-1238 13250.9154,-1198 13250.9154,-1198 13250.9154,-1192 13256.9154,-1186 13262.9154,-1186 13262.9154,-1186 13420.9908,-1186 13420.9908,-1186 13426.9908,-1186 13432.9908,-1192 13432.9908,-1198 13432.9908,-1198 13432.9908,-1238 13432.9908,-1238 13432.9908,-1244 13426.9908,-1250 13420.9908,-1250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13341.9531\\\" y=\\\"-1234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13341.9531\\\" y=\\\"-1220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.525</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13341.9531\\\" y=\\\"-1206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 76</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13341.9531\\\" y=\\\"-1192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [19, 48, 9]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 404&#45;&gt;414 -->\\n\",\n       \"<g id=\\\"edge414\\\" class=\\\"edge\\\">\\n\",\n       \"<title>404&#45;&gt;414</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12759.9802,-1307.5343C12874.6004,-1289.9004 13106.7776,-1254.1809 13240.6354,-1233.5873\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13241.5417,-1236.9892 13250.8932,-1232.0092 13240.4772,-1230.0706 13241.5417,-1236.9892\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 406 -->\\n\",\n       \"<g id=\\\"node407\\\" class=\\\"node\\\">\\n\",\n       \"<title>406</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12677.4926,-1150C12677.4926,-1150 12436.4137,-1150 12436.4137,-1150 12430.4137,-1150 12424.4137,-1144 12424.4137,-1138 12424.4137,-1138 12424.4137,-1098 12424.4137,-1098 12424.4137,-1092 12430.4137,-1086 12436.4137,-1086 12436.4137,-1086 12677.4926,-1086 12677.4926,-1086 12683.4926,-1086 12689.4926,-1092 12689.4926,-1098 12689.4926,-1098 12689.4926,-1138 12689.4926,-1138 12689.4926,-1144 12683.4926,-1150 12677.4926,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12556.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Military, armaments, and defense &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12556.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12556.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12556.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 405&#45;&gt;406 -->\\n\",\n       \"<g id=\\\"edge406\\\" class=\\\"edge\\\">\\n\",\n       \"<title>405&#45;&gt;406</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12648.4952,-1185.8089C12635.7289,-1176.3524 12621.6427,-1165.9182 12608.4266,-1156.1285\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12610.4486,-1153.2706 12600.3297,-1150.1308 12606.2819,-1158.8955 12610.4486,-1153.2706\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 409 -->\\n\",\n       \"<g id=\\\"node410\\\" class=\\\"node\\\">\\n\",\n       \"<title>409</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12936.3555,-1150C12936.3555,-1150 12719.5508,-1150 12719.5508,-1150 12713.5508,-1150 12707.5508,-1144 12707.5508,-1138 12707.5508,-1138 12707.5508,-1098 12707.5508,-1098 12707.5508,-1092 12713.5508,-1086 12719.5508,-1086 12719.5508,-1086 12936.3555,-1086 12936.3555,-1086 12942.3555,-1086 12948.3555,-1092 12948.3555,-1098 12948.3555,-1098 12948.3555,-1138 12948.3555,-1138 12948.3555,-1144 12942.3555,-1150 12936.3555,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12827.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12827.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.278</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12827.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12827.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [5, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 405&#45;&gt;409 -->\\n\",\n       \"<g id=\\\"edge409\\\" class=\\\"edge\\\">\\n\",\n       \"<title>405&#45;&gt;409</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12735.733,-1185.8089C12748.5939,-1176.3524 12762.7843,-1165.9182 12776.0984,-1156.1285\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12778.2721,-1158.8745 12784.2553,-1150.1308 12774.1254,-1153.2349 12778.2721,-1158.8745\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 407 -->\\n\",\n       \"<g id=\\\"node408\\\" class=\\\"node\\\">\\n\",\n       \"<title>407</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12536.0733,-1043C12536.0733,-1043 12447.8329,-1043 12447.8329,-1043 12441.8329,-1043 12435.8329,-1037 12435.8329,-1031 12435.8329,-1031 12435.8329,-1005 12435.8329,-1005 12435.8329,-999 12441.8329,-993 12447.8329,-993 12447.8329,-993 12536.0733,-993 12536.0733,-993 12542.0733,-993 12548.0733,-999 12548.0733,-1005 12548.0733,-1005 12548.0733,-1031 12548.0733,-1031 12548.0733,-1037 12542.0733,-1043 12536.0733,-1043\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12491.9531\\\" y=\\\"-1027.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12491.9531\\\" y=\\\"-1013.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12491.9531\\\" y=\\\"-999.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 406&#45;&gt;407 -->\\n\",\n       \"<g id=\\\"edge407\\\" class=\\\"edge\\\">\\n\",\n       \"<title>406&#45;&gt;407</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12536.0289,-1085.8089C12528.9422,-1074.9063 12521.0108,-1062.7041 12513.8505,-1051.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12516.6887,-1049.6325 12508.3042,-1043.1555 12510.8196,-1053.4475 12516.6887,-1049.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 408 -->\\n\",\n       \"<g id=\\\"node409\\\" class=\\\"node\\\">\\n\",\n       \"<title>408</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12666.0733,-1043C12666.0733,-1043 12577.8329,-1043 12577.8329,-1043 12571.8329,-1043 12565.8329,-1037 12565.8329,-1031 12565.8329,-1031 12565.8329,-1005 12565.8329,-1005 12565.8329,-999 12571.8329,-993 12577.8329,-993 12577.8329,-993 12666.0733,-993 12666.0733,-993 12672.0733,-993 12678.0733,-999 12678.0733,-1005 12678.0733,-1005 12678.0733,-1031 12678.0733,-1031 12678.0733,-1037 12672.0733,-1043 12666.0733,-1043\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12621.9531\\\" y=\\\"-1027.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12621.9531\\\" y=\\\"-1013.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12621.9531\\\" y=\\\"-999.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 406&#45;&gt;408 -->\\n\",\n       \"<g id=\\\"edge408\\\" class=\\\"edge\\\">\\n\",\n       \"<title>406&#45;&gt;408</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12577.8773,-1085.8089C12584.9641,-1074.9063 12592.8955,-1062.7041 12600.0558,-1051.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12603.0867,-1053.4475 12605.602,-1043.1555 12597.2175,-1049.6325 12603.0867,-1053.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 410 -->\\n\",\n       \"<g id=\\\"node411\\\" class=\\\"node\\\">\\n\",\n       \"<title>410</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12796.0733,-1043C12796.0733,-1043 12707.8329,-1043 12707.8329,-1043 12701.8329,-1043 12695.8329,-1037 12695.8329,-1031 12695.8329,-1031 12695.8329,-1005 12695.8329,-1005 12695.8329,-999 12701.8329,-993 12707.8329,-993 12707.8329,-993 12796.0733,-993 12796.0733,-993 12802.0733,-993 12808.0733,-999 12808.0733,-1005 12808.0733,-1005 12808.0733,-1031 12808.0733,-1031 12808.0733,-1037 12802.0733,-1043 12796.0733,-1043\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12751.9531\\\" y=\\\"-1027.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12751.9531\\\" y=\\\"-1013.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12751.9531\\\" y=\\\"-999.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 409&#45;&gt;410 -->\\n\",\n       \"<g id=\\\"edge410\\\" class=\\\"edge\\\">\\n\",\n       \"<title>409&#45;&gt;410</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12803.4879,-1085.8089C12795.1198,-1074.7983 12785.7445,-1062.4623 12777.3078,-1051.3614\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12779.9088,-1048.9994 12771.0713,-1043.1555 12774.3356,-1053.235 12779.9088,-1048.9994\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 411 -->\\n\",\n       \"<g id=\\\"node412\\\" class=\\\"node\\\">\\n\",\n       \"<title>411</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13020.0941,-1050C13020.0941,-1050 12837.8122,-1050 12837.8122,-1050 12831.8122,-1050 12825.8122,-1044 12825.8122,-1038 12825.8122,-1038 12825.8122,-998 12825.8122,-998 12825.8122,-992 12831.8122,-986 12837.8122,-986 12837.8122,-986 13020.0941,-986 13020.0941,-986 13026.0941,-986 13032.0941,-992 13032.0941,-998 13032.0941,-998 13032.0941,-1038 13032.0941,-1038 13032.0941,-1044 13026.0941,-1050 13020.0941,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12928.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12928.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12928.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12928.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 409&#45;&gt;411 -->\\n\",\n       \"<g id=\\\"edge411\\\" class=\\\"edge\\\">\\n\",\n       \"<title>409&#45;&gt;411</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12860.4661,-1085.8089C12869.6568,-1076.7092 12879.7618,-1066.7043 12889.3213,-1057.2394\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12891.8574,-1059.6538 12896.5011,-1050.1308 12886.9323,-1054.6794 12891.8574,-1059.6538\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 412 -->\\n\",\n       \"<g id=\\\"node413\\\" class=\\\"node\\\">\\n\",\n       \"<title>412</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12843.0733,-943C12843.0733,-943 12754.8329,-943 12754.8329,-943 12748.8329,-943 12742.8329,-937 12742.8329,-931 12742.8329,-931 12742.8329,-905 12742.8329,-905 12742.8329,-899 12748.8329,-893 12754.8329,-893 12754.8329,-893 12843.0733,-893 12843.0733,-893 12849.0733,-893 12855.0733,-899 12855.0733,-905 12855.0733,-905 12855.0733,-931 12855.0733,-931 12855.0733,-937 12849.0733,-943 12843.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12798.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12798.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12798.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 411&#45;&gt;412 -->\\n\",\n       \"<g id=\\\"edge412\\\" class=\\\"edge\\\">\\n\",\n       \"<title>411&#45;&gt;412</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12887.1047,-985.8089C12871.9489,-974.1506 12854.8615,-961.0064 12839.7936,-949.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12841.7156,-946.4785 12831.6553,-943.1555 12837.4476,-952.0269 12841.7156,-946.4785\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 413 -->\\n\",\n       \"<g id=\\\"node414\\\" class=\\\"node\\\">\\n\",\n       \"<title>413</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12973.0733,-943C12973.0733,-943 12884.8329,-943 12884.8329,-943 12878.8329,-943 12872.8329,-937 12872.8329,-931 12872.8329,-931 12872.8329,-905 12872.8329,-905 12872.8329,-899 12878.8329,-893 12884.8329,-893 12884.8329,-893 12973.0733,-893 12973.0733,-893 12979.0733,-893 12985.0733,-899 12985.0733,-905 12985.0733,-905 12985.0733,-931 12985.0733,-931 12985.0733,-937 12979.0733,-943 12973.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12928.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12928.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12928.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 411&#45;&gt;413 -->\\n\",\n       \"<g id=\\\"edge413\\\" class=\\\"edge\\\">\\n\",\n       \"<title>411&#45;&gt;413</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12928.9531,-985.8089C12928.9531,-975.446 12928.9531,-963.909 12928.9531,-953.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12932.4532,-953.1555 12928.9531,-943.1555 12925.4532,-953.1556 12932.4532,-953.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 415 -->\\n\",\n       \"<g id=\\\"node416\\\" class=\\\"node\\\">\\n\",\n       \"<title>415</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13394.5874,-1150C13394.5874,-1150 13289.3188,-1150 13289.3188,-1150 13283.3188,-1150 13277.3188,-1144 13277.3188,-1138 13277.3188,-1138 13277.3188,-1098 13277.3188,-1098 13277.3188,-1092 13283.3188,-1086 13289.3188,-1086 13289.3188,-1086 13394.5874,-1086 13394.5874,-1086 13400.5874,-1086 13406.5874,-1092 13406.5874,-1098 13406.5874,-1098 13406.5874,-1138 13406.5874,-1138 13406.5874,-1144 13400.5874,-1150 13394.5874,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13341.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Foreign aid &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13341.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.487</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13341.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 68</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13341.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [18, 45, 5]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 414&#45;&gt;415 -->\\n\",\n       \"<g id=\\\"edge415\\\" class=\\\"edge\\\">\\n\",\n       \"<title>414&#45;&gt;415</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13341.9531,-1185.8089C13341.9531,-1177.6906 13341.9531,-1168.8517 13341.9531,-1160.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13345.4532,-1160.1307 13341.9531,-1150.1308 13338.4532,-1160.1308 13345.4532,-1160.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 472 -->\\n\",\n       \"<g id=\\\"node473\\\" class=\\\"node\\\">\\n\",\n       \"<title>472</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13912.4727,-1150C13912.4727,-1150 13657.4336,-1150 13657.4336,-1150 13651.4336,-1150 13645.4336,-1144 13645.4336,-1138 13645.4336,-1138 13645.4336,-1098 13645.4336,-1098 13645.4336,-1092 13651.4336,-1086 13657.4336,-1086 13657.4336,-1086 13912.4727,-1086 13912.4727,-1086 13918.4727,-1086 13924.4727,-1092 13924.4727,-1098 13924.4727,-1098 13924.4727,-1138 13924.4727,-1138 13924.4727,-1144 13918.4727,-1150 13912.4727,-1150\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13784.9531\\\" y=\\\"-1134.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13784.9531\\\" y=\\\"-1120.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.594</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13784.9531\\\" y=\\\"-1106.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13784.9531\\\" y=\\\"-1092.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 3, 4]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 414&#45;&gt;472 -->\\n\",\n       \"<g id=\\\"edge472\\\" class=\\\"edge\\\">\\n\",\n       \"<title>414&#45;&gt;472</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13433.2059,-1197.4012C13491.5071,-1184.2406 13568.4801,-1166.8652 13635.5529,-1151.7247\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13636.3898,-1155.1239 13645.3736,-1149.5078 13634.8484,-1148.2957 13636.3898,-1155.1239\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 416 -->\\n\",\n       \"<g id=\\\"node417\\\" class=\\\"node\\\">\\n\",\n       \"<title>416</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13323.3828,-1050C13323.3828,-1050 13064.5234,-1050 13064.5234,-1050 13058.5234,-1050 13052.5234,-1044 13052.5234,-1038 13052.5234,-1038 13052.5234,-998 13052.5234,-998 13052.5234,-992 13058.5234,-986 13064.5234,-986 13064.5234,-986 13323.3828,-986 13323.3828,-986 13329.3828,-986 13335.3828,-992 13335.3828,-998 13335.3828,-998 13335.3828,-1038 13335.3828,-1038 13335.3828,-1044 13329.3828,-1050 13323.3828,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13193.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13193.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.312</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13193.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 31</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13193.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 25, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 415&#45;&gt;416 -->\\n\",\n       \"<g id=\\\"edge416\\\" class=\\\"edge\\\">\\n\",\n       \"<title>415&#45;&gt;416</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13294.3103,-1085.8089C13280.1826,-1076.2632 13264.5806,-1065.7213 13249.9735,-1055.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13251.7521,-1052.8293 13241.5066,-1050.1308 13247.833,-1058.6294 13251.7521,-1052.8293\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 441 -->\\n\",\n       \"<g id=\\\"node442\\\" class=\\\"node\\\">\\n\",\n       \"<title>441</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13616.3108,-1050C13616.3108,-1050 13365.5955,-1050 13365.5955,-1050 13359.5955,-1050 13353.5955,-1044 13353.5955,-1038 13353.5955,-1038 13353.5955,-998 13353.5955,-998 13353.5955,-992 13359.5955,-986 13365.5955,-986 13365.5955,-986 13616.3108,-986 13616.3108,-986 13622.3108,-986 13628.3108,-992 13628.3108,-998 13628.3108,-998 13628.3108,-1038 13628.3108,-1038 13628.3108,-1044 13622.3108,-1050 13616.3108,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13490.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Supporting scientific research &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13490.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.584</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13490.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 37</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13490.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [12, 20, 5]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 415&#45;&gt;441 -->\\n\",\n       \"<g id=\\\"edge441\\\" class=\\\"edge\\\">\\n\",\n       \"<title>415&#45;&gt;441</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13389.9178,-1085.8089C13404.141,-1076.2632 13419.8484,-1065.7213 13434.5543,-1055.8516\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13436.7254,-1058.6097 13443.0783,-1050.1308 13432.8245,-1052.7973 13436.7254,-1058.6097\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 417 -->\\n\",\n       \"<g id=\\\"node418\\\" class=\\\"node\\\">\\n\",\n       \"<title>417</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13110.8594,-950C13110.8594,-950 13015.0468,-950 13015.0468,-950 13009.0468,-950 13003.0468,-944 13003.0468,-938 13003.0468,-938 13003.0468,-898 13003.0468,-898 13003.0468,-892 13009.0468,-886 13015.0468,-886 13015.0468,-886 13110.8594,-886 13110.8594,-886 13116.8594,-886 13122.8594,-892 13122.8594,-898 13122.8594,-898 13122.8594,-938 13122.8594,-938 13122.8594,-944 13116.8594,-950 13110.8594,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13062.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13062.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.238</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13062.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 29</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13062.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 25, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 416&#45;&gt;417 -->\\n\",\n       \"<g id=\\\"edge417\\\" class=\\\"edge\\\">\\n\",\n       \"<title>416&#45;&gt;417</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13151.7828,-985.8089C13139.5116,-976.4416 13125.9838,-966.115 13113.2646,-956.4057\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13115.1169,-953.4165 13105.0444,-950.1308 13110.8695,-958.9806 13115.1169,-953.4165\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 440 -->\\n\",\n       \"<g id=\\\"node441\\\" class=\\\"node\\\">\\n\",\n       \"<title>440</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13241.0733,-943C13241.0733,-943 13152.8329,-943 13152.8329,-943 13146.8329,-943 13140.8329,-937 13140.8329,-931 13140.8329,-931 13140.8329,-905 13140.8329,-905 13140.8329,-899 13146.8329,-893 13152.8329,-893 13152.8329,-893 13241.0733,-893 13241.0733,-893 13247.0733,-893 13253.0733,-899 13253.0733,-905 13253.0733,-905 13253.0733,-931 13253.0733,-931 13253.0733,-937 13247.0733,-943 13241.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13196.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13196.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13196.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 416&#45;&gt;440 -->\\n\",\n       \"<g id=\\\"edge440\\\" class=\\\"edge\\\">\\n\",\n       \"<title>416&#45;&gt;440</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13194.9189,-985.8089C13195.2297,-975.446 13195.5759,-963.909 13195.8931,-953.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13199.3969,-953.256 13196.1985,-943.1555 13192.4001,-953.0461 13199.3969,-953.256\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 418 -->\\n\",\n       \"<g id=\\\"node419\\\" class=\\\"node\\\">\\n\",\n       \"<title>418</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12837.8872,-850C12837.8872,-850 12668.019,-850 12668.019,-850 12662.019,-850 12656.019,-844 12656.019,-838 12656.019,-838 12656.019,-798 12656.019,-798 12656.019,-792 12662.019,-786 12668.019,-786 12668.019,-786 12837.8872,-786 12837.8872,-786 12843.8872,-786 12849.8872,-792 12849.8872,-798 12849.8872,-798 12849.8872,-838 12849.8872,-838 12849.8872,-844 12843.8872,-850 12837.8872,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12752.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Parks and recreation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12752.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12752.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12752.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 417&#45;&gt;418 -->\\n\",\n       \"<g id=\\\"edge418\\\" class=\\\"edge\\\">\\n\",\n       \"<title>417&#45;&gt;418</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13002.9812,-889.5024C12999.9462,-888.2758 12996.9251,-887.1004 12993.9531,-886 12950.7408,-869.9993 12901.9976,-855.5914 12859.7112,-844.2002\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12860.5173,-840.7929 12849.9528,-841.5938 12858.7109,-847.5558 12860.5173,-840.7929\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 421 -->\\n\",\n       \"<g id=\\\"node422\\\" class=\\\"node\\\">\\n\",\n       \"<title>421</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13202.345,-850C13202.345,-850 12923.5613,-850 12923.5613,-850 12917.5613,-850 12911.5613,-844 12911.5613,-838 12911.5613,-838 12911.5613,-798 12911.5613,-798 12911.5613,-792 12917.5613,-786 12923.5613,-786 12923.5613,-786 13202.345,-786 13202.345,-786 13208.345,-786 13214.345,-792 13214.345,-798 13214.345,-798 13214.345,-838 13214.345,-838 13214.345,-844 13208.345,-850 13202.345,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13062.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13062.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.198</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13062.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 27</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13062.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 24, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 417&#45;&gt;421 -->\\n\",\n       \"<g id=\\\"edge421\\\" class=\\\"edge\\\">\\n\",\n       \"<title>417&#45;&gt;421</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13062.9531,-885.8089C13062.9531,-877.6906 13062.9531,-868.8517 13062.9531,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13066.4532,-860.1307 13062.9531,-850.1308 13059.4532,-860.1308 13066.4532,-860.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 419 -->\\n\",\n       \"<g id=\\\"node420\\\" class=\\\"node\\\">\\n\",\n       \"<title>419</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12667.0733,-743C12667.0733,-743 12578.8329,-743 12578.8329,-743 12572.8329,-743 12566.8329,-737 12566.8329,-731 12566.8329,-731 12566.8329,-705 12566.8329,-705 12566.8329,-699 12572.8329,-693 12578.8329,-693 12578.8329,-693 12667.0733,-693 12667.0733,-693 12673.0733,-693 12679.0733,-699 12679.0733,-705 12679.0733,-705 12679.0733,-731 12679.0733,-731 12679.0733,-737 12673.0733,-743 12667.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12622.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12622.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12622.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 418&#45;&gt;419 -->\\n\",\n       \"<g id=\\\"edge419\\\" class=\\\"edge\\\">\\n\",\n       \"<title>418&#45;&gt;419</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12711.1047,-785.8089C12695.9489,-774.1506 12678.8615,-761.0064 12663.7936,-749.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12665.7156,-746.4785 12655.6553,-743.1555 12661.4476,-752.0269 12665.7156,-746.4785\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 420 -->\\n\",\n       \"<g id=\\\"node421\\\" class=\\\"node\\\">\\n\",\n       \"<title>420</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12797.0733,-743C12797.0733,-743 12708.8329,-743 12708.8329,-743 12702.8329,-743 12696.8329,-737 12696.8329,-731 12696.8329,-731 12696.8329,-705 12696.8329,-705 12696.8329,-699 12702.8329,-693 12708.8329,-693 12708.8329,-693 12797.0733,-693 12797.0733,-693 12803.0733,-693 12809.0733,-699 12809.0733,-705 12809.0733,-705 12809.0733,-731 12809.0733,-731 12809.0733,-737 12803.0733,-743 12797.0733,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12752.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12752.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12752.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 418&#45;&gt;420 -->\\n\",\n       \"<g id=\\\"edge420\\\" class=\\\"edge\\\">\\n\",\n       \"<title>418&#45;&gt;420</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12752.9531,-785.8089C12752.9531,-775.446 12752.9531,-763.909 12752.9531,-753.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12756.4532,-753.1555 12752.9531,-743.1555 12749.4532,-753.1556 12756.4532,-753.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 422 -->\\n\",\n       \"<g id=\\\"node423\\\" class=\\\"node\\\">\\n\",\n       \"<title>422</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12933.3272,-743C12933.3272,-743 12838.579,-743 12838.579,-743 12832.579,-743 12826.579,-737 12826.579,-731 12826.579,-731 12826.579,-705 12826.579,-705 12826.579,-699 12832.579,-693 12838.579,-693 12838.579,-693 12933.3272,-693 12933.3272,-693 12939.3272,-693 12945.3272,-699 12945.3272,-705 12945.3272,-705 12945.3272,-731 12945.3272,-731 12945.3272,-737 12939.3272,-743 12933.3272,-743\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12885.9531\\\" y=\\\"-727.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12885.9531\\\" y=\\\"-713.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 11</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12885.9531\\\" y=\\\"-699.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 11, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 421&#45;&gt;422 -->\\n\",\n       \"<g id=\\\"edge422\\\" class=\\\"edge\\\">\\n\",\n       \"<title>421&#45;&gt;422</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13005.9749,-785.8089C12984.5755,-773.7188 12960.3476,-760.0308 12939.291,-748.1344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12940.9066,-745.0272 12930.4784,-743.1555 12937.4633,-751.1218 12940.9066,-745.0272\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 423 -->\\n\",\n       \"<g id=\\\"node424\\\" class=\\\"node\\\">\\n\",\n       \"<title>423</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13236.7071,-750C13236.7071,-750 12975.1991,-750 12975.1991,-750 12969.1991,-750 12963.1991,-744 12963.1991,-738 12963.1991,-738 12963.1991,-698 12963.1991,-698 12963.1991,-692 12969.1991,-686 12975.1991,-686 12975.1991,-686 13236.7071,-686 13236.7071,-686 13242.7071,-686 13248.7071,-692 13248.7071,-698 13248.7071,-698 13248.7071,-738 13248.7071,-738 13248.7071,-744 13242.7071,-750 13236.7071,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13105.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13105.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.305</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13105.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 16</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13105.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 13, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 421&#45;&gt;423 -->\\n\",\n       \"<g id=\\\"edge423\\\" class=\\\"edge\\\">\\n\",\n       \"<title>421&#45;&gt;423</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13076.7953,-785.8089C13080.4013,-777.4229 13084.3378,-768.2681 13088.1186,-759.4757\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13091.4019,-760.7001 13092.1369,-750.1308 13084.9712,-757.9348 13091.4019,-760.7001\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 424 -->\\n\",\n       \"<g id=\\\"node425\\\" class=\\\"node\\\">\\n\",\n       \"<title>424</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13016.0733,-643C13016.0733,-643 12927.8329,-643 12927.8329,-643 12921.8329,-643 12915.8329,-637 12915.8329,-631 12915.8329,-631 12915.8329,-605 12915.8329,-605 12915.8329,-599 12921.8329,-593 12927.8329,-593 12927.8329,-593 13016.0733,-593 13016.0733,-593 13022.0733,-593 13028.0733,-599 13028.0733,-605 13028.0733,-605 13028.0733,-631 13028.0733,-631 13028.0733,-637 13022.0733,-643 13016.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12971.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12971.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12971.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 423&#45;&gt;424 -->\\n\",\n       \"<g id=\\\"edge424\\\" class=\\\"edge\\\">\\n\",\n       \"<title>423&#45;&gt;424</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13062.8171,-685.8089C13047.195,-674.1506 13029.5818,-661.0064 13014.0502,-649.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13015.7692,-646.3314 13005.6616,-643.1555 13011.5826,-651.9414 13015.7692,-646.3314\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 425 -->\\n\",\n       \"<g id=\\\"node426\\\" class=\\\"node\\\">\\n\",\n       \"<title>425</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13153.8594,-650C13153.8594,-650 13058.0468,-650 13058.0468,-650 13052.0468,-650 13046.0468,-644 13046.0468,-638 13046.0468,-638 13046.0468,-598 13046.0468,-598 13046.0468,-592 13052.0468,-586 13058.0468,-586 13058.0468,-586 13153.8594,-586 13153.8594,-586 13159.8594,-586 13165.8594,-592 13165.8594,-598 13165.8594,-598 13165.8594,-638 13165.8594,-638 13165.8594,-644 13159.8594,-650 13153.8594,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13105.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13105.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.231</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13105.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 15</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13105.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 13, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 423&#45;&gt;425 -->\\n\",\n       \"<g id=\\\"edge425\\\" class=\\\"edge\\\">\\n\",\n       \"<title>423&#45;&gt;425</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13105.9531,-685.8089C13105.9531,-677.6906 13105.9531,-668.8517 13105.9531,-660.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13109.4532,-660.1307 13105.9531,-650.1308 13102.4532,-660.1308 13109.4532,-660.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 426 -->\\n\",\n       \"<g id=\\\"node427\\\" class=\\\"node\\\">\\n\",\n       \"<title>426</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13052.3108,-550C13052.3108,-550 12843.5954,-550 12843.5954,-550 12837.5954,-550 12831.5954,-544 12831.5954,-538 12831.5954,-538 12831.5954,-498 12831.5954,-498 12831.5954,-492 12837.5954,-486 12843.5954,-486 12843.5954,-486 13052.3108,-486 13052.3108,-486 13058.3108,-486 13064.3108,-492 13064.3108,-498 13064.3108,-498 13064.3108,-538 13064.3108,-538 13064.3108,-544 13058.3108,-550 13052.3108,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12947.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12947.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.153</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12947.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 12</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12947.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 11, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 425&#45;&gt;426 -->\\n\",\n       \"<g id=\\\"edge426\\\" class=\\\"edge\\\">\\n\",\n       \"<title>425&#45;&gt;426</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13055.0912,-585.8089C13039.868,-576.174 13023.0412,-565.5241 13007.3217,-555.575\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13009.0413,-552.5213 12998.7197,-550.1308 13005.2977,-558.4362 13009.0413,-552.5213\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 435 -->\\n\",\n       \"<g id=\\\"node436\\\" class=\\\"node\\\">\\n\",\n       \"<title>435</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13357.5452,-550C13357.5452,-550 13094.361,-550 13094.361,-550 13088.361,-550 13082.361,-544 13082.361,-538 13082.361,-538 13082.361,-498 13082.361,-498 13082.361,-492 13088.361,-486 13094.361,-486 13094.361,-486 13357.5452,-486 13357.5452,-486 13363.5452,-486 13369.5452,-492 13369.5452,-498 13369.5452,-498 13369.5452,-538 13369.5452,-538 13369.5452,-544 13363.5452,-550 13357.5452,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13225.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13225.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13225.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13225.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 425&#45;&gt;435 -->\\n\",\n       \"<g id=\\\"edge435\\\" class=\\\"edge\\\">\\n\",\n       \"<title>425&#45;&gt;435</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13144.5824,-585.8089C13155.7161,-576.5308 13167.9792,-566.3116 13179.5332,-556.6833\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13181.9546,-559.2214 13187.3962,-550.1308 13177.4733,-553.8439 13181.9546,-559.2214\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 427 -->\\n\",\n       \"<g id=\\\"node428\\\" class=\\\"node\\\">\\n\",\n       \"<title>427</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12786.0733,-443C12786.0733,-443 12697.8329,-443 12697.8329,-443 12691.8329,-443 12685.8329,-437 12685.8329,-431 12685.8329,-431 12685.8329,-405 12685.8329,-405 12685.8329,-399 12691.8329,-393 12697.8329,-393 12697.8329,-393 12786.0733,-393 12786.0733,-393 12792.0733,-393 12798.0733,-399 12798.0733,-405 12798.0733,-405 12798.0733,-431 12798.0733,-431 12798.0733,-437 12792.0733,-443 12786.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12741.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12741.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12741.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 426&#45;&gt;427 -->\\n\",\n       \"<g id=\\\"edge427\\\" class=\\\"edge\\\">\\n\",\n       \"<title>426&#45;&gt;427</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12881.195,-485.9413C12857.7065,-474.6254 12831.1399,-461.7857 12806.9531,-450 12805.2146,-449.1529 12803.4505,-448.2921 12801.6701,-447.4223\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12803.1963,-444.2726 12792.6757,-443.0205 12800.1192,-450.56 12803.1963,-444.2726\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 428 -->\\n\",\n       \"<g id=\\\"node429\\\" class=\\\"node\\\">\\n\",\n       \"<title>428</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13074.435,-450C13074.435,-450 12827.4713,-450 12827.4713,-450 12821.4713,-450 12815.4713,-444 12815.4713,-438 12815.4713,-438 12815.4713,-398 12815.4713,-398 12815.4713,-392 12821.4713,-386 12827.4713,-386 12827.4713,-386 13074.435,-386 13074.435,-386 13080.435,-386 13086.435,-392 13086.435,-398 13086.435,-398 13086.435,-438 13086.435,-438 13086.435,-444 13080.435,-450 13074.435,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12950.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving the conditions of blacks &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12950.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.219</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12950.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12950.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 7, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 426&#45;&gt;428 -->\\n\",\n       \"<g id=\\\"edge428\\\" class=\\\"edge\\\">\\n\",\n       \"<title>426&#45;&gt;428</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12948.9189,-485.8089C12949.1624,-477.6906 12949.4276,-468.8517 12949.6836,-460.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12953.1877,-460.2312 12949.9892,-450.1308 12946.1908,-460.0213 12953.1877,-460.2312\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 429 -->\\n\",\n       \"<g id=\\\"node430\\\" class=\\\"node\\\">\\n\",\n       \"<title>429</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12897.9521,-350C12897.9521,-350 12719.9541,-350 12719.9541,-350 12713.9541,-350 12707.9541,-344 12707.9541,-338 12707.9541,-338 12707.9541,-298 12707.9541,-298 12707.9541,-292 12713.9541,-286 12719.9541,-286 12719.9541,-286 12897.9521,-286 12897.9521,-286 12903.9521,-286 12909.9521,-292 12909.9521,-298 12909.9521,-298 12909.9521,-338 12909.9521,-338 12909.9521,-344 12903.9521,-350 12897.9521,-350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12808.9531\\\" y=\\\"-334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12808.9531\\\" y=\\\"-320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.245</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12808.9531\\\" y=\\\"-306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12808.9531\\\" y=\\\"-292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 6, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 428&#45;&gt;429 -->\\n\",\n       \"<g id=\\\"edge429\\\" class=\\\"edge\\\">\\n\",\n       \"<title>428&#45;&gt;429</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12905.2418,-385.8089C12891.8135,-376.3524 12876.997,-365.9182 12863.0956,-356.1285\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12864.7701,-353.027 12854.5788,-350.1308 12860.7396,-358.7502 12864.7701,-353.027\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 434 -->\\n\",\n       \"<g id=\\\"node435\\\" class=\\\"node\\\">\\n\",\n       \"<title>434</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13028.0733,-343C13028.0733,-343 12939.8329,-343 12939.8329,-343 12933.8329,-343 12927.8329,-337 12927.8329,-331 12927.8329,-331 12927.8329,-305 12927.8329,-305 12927.8329,-299 12933.8329,-293 12939.8329,-293 12939.8329,-293 13028.0733,-293 13028.0733,-293 13034.0733,-293 13040.0733,-299 13040.0733,-305 13040.0733,-305 13040.0733,-331 13040.0733,-331 13040.0733,-337 13034.0733,-343 13028.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12983.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12983.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12983.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 428&#45;&gt;434 -->\\n\",\n       \"<g id=\\\"edge434\\\" class=\\\"edge\\\">\\n\",\n       \"<title>428&#45;&gt;434</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12961.5762,-385.8089C12965.0672,-375.2301 12968.9619,-363.4278 12972.5111,-352.6729\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12975.8417,-353.7487 12975.6518,-343.1555 12969.1943,-351.555 12975.8417,-353.7487\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 430 -->\\n\",\n       \"<g id=\\\"node431\\\" class=\\\"node\\\">\\n\",\n       \"<title>430</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12769.0733,-243C12769.0733,-243 12680.8329,-243 12680.8329,-243 12674.8329,-243 12668.8329,-237 12668.8329,-231 12668.8329,-231 12668.8329,-205 12668.8329,-205 12668.8329,-199 12674.8329,-193 12680.8329,-193 12680.8329,-193 12769.0733,-193 12769.0733,-193 12775.0733,-193 12781.0733,-199 12781.0733,-205 12781.0733,-205 12781.0733,-231 12781.0733,-231 12781.0733,-237 12775.0733,-243 12769.0733,-243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12724.9531\\\" y=\\\"-227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12724.9531\\\" y=\\\"-213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12724.9531\\\" y=\\\"-199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 429&#45;&gt;430 -->\\n\",\n       \"<g id=\\\"edge430\\\" class=\\\"edge\\\">\\n\",\n       \"<title>429&#45;&gt;430</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12781.9126,-285.8089C12772.573,-274.6904 12762.0982,-262.2203 12752.7027,-251.0352\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12755.1957,-248.5614 12746.0838,-243.1555 12749.8358,-253.0638 12755.1957,-248.5614\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 431 -->\\n\",\n       \"<g id=\\\"node432\\\" class=\\\"node\\\">\\n\",\n       \"<title>431</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12974.6524,-250C12974.6524,-250 12811.2538,-250 12811.2538,-250 12805.2538,-250 12799.2538,-244 12799.2538,-238 12799.2538,-238 12799.2538,-198 12799.2538,-198 12799.2538,-192 12805.2538,-186 12811.2538,-186 12811.2538,-186 12974.6524,-186 12974.6524,-186 12980.6524,-186 12986.6524,-192 12986.6524,-198 12986.6524,-198 12986.6524,-238 12986.6524,-238 12986.6524,-244 12980.6524,-250 12974.6524,-250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12892.9531\\\" y=\\\"-234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12892.9531\\\" y=\\\"-220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.278</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12892.9531\\\" y=\\\"-206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 6</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12892.9531\\\" y=\\\"-192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 429&#45;&gt;431 -->\\n\",\n       \"<g id=\\\"edge431\\\" class=\\\"edge\\\">\\n\",\n       \"<title>429&#45;&gt;431</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12835.9936,-285.8089C12843.4875,-276.8877 12851.7122,-267.0963 12859.5238,-257.7968\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12862.2113,-260.039 12865.9633,-250.1308 12856.8514,-255.5366 12862.2113,-260.039\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 432 -->\\n\",\n       \"<g id=\\\"node433\\\" class=\\\"node\\\">\\n\",\n       \"<title>432</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12872.0733,-143C12872.0733,-143 12783.8329,-143 12783.8329,-143 12777.8329,-143 12771.8329,-137 12771.8329,-131 12771.8329,-131 12771.8329,-105 12771.8329,-105 12771.8329,-99 12777.8329,-93 12783.8329,-93 12783.8329,-93 12872.0733,-93 12872.0733,-93 12878.0733,-93 12884.0733,-99 12884.0733,-105 12884.0733,-105 12884.0733,-131 12884.0733,-131 12884.0733,-137 12878.0733,-143 12872.0733,-143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12827.9531\\\" y=\\\"-127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12827.9531\\\" y=\\\"-113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12827.9531\\\" y=\\\"-99.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 431&#45;&gt;432 -->\\n\",\n       \"<g id=\\\"edge432\\\" class=\\\"edge\\\">\\n\",\n       \"<title>431&#45;&gt;432</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12872.0289,-185.8089C12864.9422,-174.9063 12857.0108,-162.7041 12849.8505,-151.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12852.6887,-149.6325 12844.3042,-143.1555 12846.8196,-153.4475 12852.6887,-149.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 433 -->\\n\",\n       \"<g id=\\\"node434\\\" class=\\\"node\\\">\\n\",\n       \"<title>433</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13002.0733,-143C13002.0733,-143 12913.8329,-143 12913.8329,-143 12907.8329,-143 12901.8329,-137 12901.8329,-131 12901.8329,-131 12901.8329,-105 12901.8329,-105 12901.8329,-99 12907.8329,-93 12913.8329,-93 12913.8329,-93 13002.0733,-93 13002.0733,-93 13008.0733,-93 13014.0733,-99 13014.0733,-105 13014.0733,-105 13014.0733,-131 13014.0733,-131 13014.0733,-137 13008.0733,-143 13002.0733,-143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12957.9531\\\" y=\\\"-127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.32</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12957.9531\\\" y=\\\"-113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"12957.9531\\\" y=\\\"-99.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 431&#45;&gt;433 -->\\n\",\n       \"<g id=\\\"edge433\\\" class=\\\"edge\\\">\\n\",\n       \"<title>431&#45;&gt;433</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M12913.8773,-185.8089C12920.9641,-174.9063 12928.8955,-162.7041 12936.0558,-151.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"12939.0867,-153.4475 12941.602,-143.1555 12933.2175,-149.6325 12939.0867,-153.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 436 -->\\n\",\n       \"<g id=\\\"node437\\\" class=\\\"node\\\">\\n\",\n       \"<title>436</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13322.6418,-450C13322.6418,-450 13119.2644,-450 13119.2644,-450 13113.2644,-450 13107.2644,-444 13107.2644,-438 13107.2644,-438 13107.2644,-398 13107.2644,-398 13107.2644,-392 13113.2644,-386 13119.2644,-386 13119.2644,-386 13322.6418,-386 13322.6418,-386 13328.6418,-386 13334.6418,-392 13334.6418,-398 13334.6418,-398 13334.6418,-438 13334.6418,-438 13334.6418,-444 13328.6418,-450 13322.6418,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13220.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13220.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13220.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13220.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 435&#45;&gt;436 -->\\n\",\n       \"<g id=\\\"edge436\\\" class=\\\"edge\\\">\\n\",\n       \"<title>435&#45;&gt;436</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13224.3436,-485.8089C13223.9377,-477.6906 13223.4957,-468.8517 13223.0691,-460.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13226.5548,-459.9435 13222.5597,-450.1308 13219.5635,-460.2931 13226.5548,-459.9435\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 439 -->\\n\",\n       \"<g id=\\\"node440\\\" class=\\\"node\\\">\\n\",\n       \"<title>439</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13453.0733,-443C13453.0733,-443 13364.8329,-443 13364.8329,-443 13358.8329,-443 13352.8329,-437 13352.8329,-431 13352.8329,-431 13352.8329,-405 13352.8329,-405 13352.8329,-399 13358.8329,-393 13364.8329,-393 13364.8329,-393 13453.0733,-393 13453.0733,-393 13459.0733,-393 13465.0733,-399 13465.0733,-405 13465.0733,-405 13465.0733,-431 13465.0733,-431 13465.0733,-437 13459.0733,-443 13453.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13408.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13408.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13408.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 435&#45;&gt;439 -->\\n\",\n       \"<g id=\\\"edge439\\\" class=\\\"edge\\\">\\n\",\n       \"<title>435&#45;&gt;439</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13284.6106,-485.9467C13306.9386,-473.7457 13332.2749,-459.9007 13354.2247,-447.9062\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13355.9907,-450.9297 13363.0877,-443.0631 13352.634,-444.787 13355.9907,-450.9297\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 437 -->\\n\",\n       \"<g id=\\\"node438\\\" class=\\\"node\\\">\\n\",\n       \"<title>437</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13232.0733,-343C13232.0733,-343 13143.8329,-343 13143.8329,-343 13137.8329,-343 13131.8329,-337 13131.8329,-331 13131.8329,-331 13131.8329,-305 13131.8329,-305 13131.8329,-299 13137.8329,-293 13143.8329,-293 13143.8329,-293 13232.0733,-293 13232.0733,-293 13238.0733,-293 13244.0733,-299 13244.0733,-305 13244.0733,-305 13244.0733,-331 13244.0733,-331 13244.0733,-337 13238.0733,-343 13232.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13187.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13187.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13187.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 436&#45;&gt;437 -->\\n\",\n       \"<g id=\\\"edge437\\\" class=\\\"edge\\\">\\n\",\n       \"<title>436&#45;&gt;437</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13210.3301,-385.8089C13206.8391,-375.2301 13202.9443,-363.4278 13199.3952,-352.6729\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13202.712,-351.555 13196.2545,-343.1555 13196.0646,-353.7487 13202.712,-351.555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 438 -->\\n\",\n       \"<g id=\\\"node439\\\" class=\\\"node\\\">\\n\",\n       \"<title>438</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13362.0733,-343C13362.0733,-343 13273.8329,-343 13273.8329,-343 13267.8329,-343 13261.8329,-337 13261.8329,-331 13261.8329,-331 13261.8329,-305 13261.8329,-305 13261.8329,-299 13267.8329,-293 13273.8329,-293 13273.8329,-293 13362.0733,-293 13362.0733,-293 13368.0733,-293 13374.0733,-299 13374.0733,-305 13374.0733,-305 13374.0733,-331 13374.0733,-331 13374.0733,-337 13368.0733,-343 13362.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13317.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13317.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13317.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 436&#45;&gt;438 -->\\n\",\n       \"<g id=\\\"edge438\\\" class=\\\"edge\\\">\\n\",\n       \"<title>436&#45;&gt;438</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13252.1785,-385.8089C13263.1729,-374.4745 13275.5297,-361.7355 13286.5395,-350.3851\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13289.1019,-352.7704 13293.5522,-343.1555 13284.0774,-347.8966 13289.1019,-352.7704\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 442 -->\\n\",\n       \"<g id=\\\"node443\\\" class=\\\"node\\\">\\n\",\n       \"<title>442</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13565.9521,-950C13565.9521,-950 13387.9541,-950 13387.9541,-950 13381.9541,-950 13375.9541,-944 13375.9541,-938 13375.9541,-938 13375.9541,-898 13375.9541,-898 13375.9541,-892 13381.9541,-886 13387.9541,-886 13387.9541,-886 13565.9521,-886 13565.9521,-886 13571.9521,-886 13577.9521,-892 13577.9521,-898 13577.9521,-898 13577.9521,-938 13577.9521,-938 13577.9521,-944 13571.9521,-950 13565.9521,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13476.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Highways and bridges &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13476.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.615</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13476.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 32</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13476.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [12, 15, 5]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 441&#45;&gt;442 -->\\n\",\n       \"<g id=\\\"edge442\\\" class=\\\"edge\\\">\\n\",\n       \"<title>441&#45;&gt;442</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13486.4464,-985.8089C13485.2973,-977.6014 13484.0452,-968.6574 13482.8384,-960.0374\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13486.3042,-959.5489 13481.4514,-950.1308 13479.3718,-960.5195 13486.3042,-959.5489\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 471 -->\\n\",\n       \"<g id=\\\"node472\\\" class=\\\"node\\\">\\n\",\n       \"<title>471</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13696.0733,-943C13696.0733,-943 13607.8329,-943 13607.8329,-943 13601.8329,-943 13595.8329,-937 13595.8329,-931 13595.8329,-931 13595.8329,-905 13595.8329,-905 13595.8329,-899 13601.8329,-893 13607.8329,-893 13607.8329,-893 13696.0733,-893 13696.0733,-893 13702.0733,-893 13708.0733,-899 13708.0733,-905 13708.0733,-905 13708.0733,-931 13708.0733,-931 13708.0733,-937 13702.0733,-943 13696.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13651.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13651.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13651.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 5, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 441&#45;&gt;471 -->\\n\",\n       \"<g id=\\\"edge471\\\" class=\\\"edge\\\">\\n\",\n       \"<title>441&#45;&gt;471</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13542.7808,-985.8089C13562.072,-973.8268 13583.8903,-960.2751 13602.923,-948.4535\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13604.8046,-951.405 13611.4527,-943.1555 13601.1112,-945.4587 13604.8046,-951.405\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 443 -->\\n\",\n       \"<g id=\\\"node444\\\" class=\\\"node\\\">\\n\",\n       \"<title>443</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13558.6524,-850C13558.6524,-850 13395.2538,-850 13395.2538,-850 13389.2538,-850 13383.2538,-844 13383.2538,-838 13383.2538,-838 13383.2538,-798 13383.2538,-798 13383.2538,-792 13389.2538,-786 13395.2538,-786 13395.2538,-786 13558.6524,-786 13558.6524,-786 13564.6524,-786 13570.6524,-792 13570.6524,-798 13570.6524,-798 13570.6524,-838 13570.6524,-838 13570.6524,-844 13564.6524,-850 13558.6524,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13476.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Mass transportation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13476.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13476.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 12</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13476.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 8, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 442&#45;&gt;443 -->\\n\",\n       \"<g id=\\\"edge443\\\" class=\\\"edge\\\">\\n\",\n       \"<title>442&#45;&gt;443</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13476.9531,-885.8089C13476.9531,-877.6906 13476.9531,-868.8517 13476.9531,-860.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13480.4532,-860.1307 13476.9531,-850.1308 13473.4532,-860.1308 13480.4532,-860.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 450 -->\\n\",\n       \"<g id=\\\"node451\\\" class=\\\"node\\\">\\n\",\n       \"<title>450</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13973.6486,-850C13973.6486,-850 13770.2576,-850 13770.2576,-850 13764.2576,-850 13758.2576,-844 13758.2576,-838 13758.2576,-838 13758.2576,-798 13758.2576,-798 13758.2576,-792 13764.2576,-786 13770.2576,-786 13770.2576,-786 13973.6486,-786 13973.6486,-786 13979.6486,-786 13985.6486,-792 13985.6486,-798 13985.6486,-798 13985.6486,-838 13985.6486,-838 13985.6486,-844 13979.6486,-850 13973.6486,-850\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13871.9531\\\" y=\\\"-834.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13871.9531\\\" y=\\\"-820.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.605</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13871.9531\\\" y=\\\"-806.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 20</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13871.9531\\\" y=\\\"-792.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [10, 7, 3]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 442&#45;&gt;450 -->\\n\",\n       \"<g id=\\\"edge450\\\" class=\\\"edge\\\">\\n\",\n       \"<title>442&#45;&gt;450</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13578.1964,-888.3456C13581.1453,-887.5466 13584.069,-886.7631 13586.9531,-886 13639.6251,-872.0639 13698.1124,-857.8856 13748.3282,-846.1074\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13749.3171,-849.4707 13758.2569,-843.7846 13747.7225,-842.6547 13749.3171,-849.4707\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 444 -->\\n\",\n       \"<g id=\\\"node445\\\" class=\\\"node\\\">\\n\",\n       \"<title>444</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13414.0733,-750C13414.0733,-750 13325.8329,-750 13325.8329,-750 13319.8329,-750 13313.8329,-744 13313.8329,-738 13313.8329,-738 13313.8329,-698 13313.8329,-698 13313.8329,-692 13319.8329,-686 13325.8329,-686 13325.8329,-686 13414.0733,-686 13414.0733,-686 13420.0733,-686 13426.0733,-692 13426.0733,-698 13426.0733,-698 13426.0733,-738 13426.0733,-738 13426.0733,-744 13420.0733,-750 13414.0733,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13369.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13369.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13369.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13369.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 443&#45;&gt;444 -->\\n\",\n       \"<g id=\\\"edge444\\\" class=\\\"edge\\\">\\n\",\n       \"<title>443&#45;&gt;444</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13442.5087,-785.8089C13432.6766,-776.62 13421.8567,-766.508 13411.6416,-756.9612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13414.0289,-754.4017 13404.333,-750.1308 13409.2492,-759.516 13414.0289,-754.4017\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 447 -->\\n\",\n       \"<g id=\\\"node448\\\" class=\\\"node\\\">\\n\",\n       \"<title>447</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13544.0733,-750C13544.0733,-750 13455.8329,-750 13455.8329,-750 13449.8329,-750 13443.8329,-744 13443.8329,-738 13443.8329,-738 13443.8329,-698 13443.8329,-698 13443.8329,-692 13449.8329,-686 13455.8329,-686 13455.8329,-686 13544.0733,-686 13544.0733,-686 13550.0733,-686 13556.0733,-692 13556.0733,-698 13556.0733,-698 13556.0733,-738 13556.0733,-738 13556.0733,-744 13550.0733,-750 13544.0733,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13499.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Welfare &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13499.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.346</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13499.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13499.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 7, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 443&#45;&gt;447 -->\\n\",\n       \"<g id=\\\"edge447\\\" class=\\\"edge\\\">\\n\",\n       \"<title>443&#45;&gt;447</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13484.3571,-785.8089C13486.2448,-777.6014 13488.3019,-768.6574 13490.2845,-760.0374\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13493.7324,-760.6609 13492.5631,-750.1308 13486.9106,-759.0918 13493.7324,-760.6609\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 445 -->\\n\",\n       \"<g id=\\\"node446\\\" class=\\\"node\\\">\\n\",\n       \"<title>445</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13284.0733,-643C13284.0733,-643 13195.8329,-643 13195.8329,-643 13189.8329,-643 13183.8329,-637 13183.8329,-631 13183.8329,-631 13183.8329,-605 13183.8329,-605 13183.8329,-599 13189.8329,-593 13195.8329,-593 13195.8329,-593 13284.0733,-593 13284.0733,-593 13290.0733,-593 13296.0733,-599 13296.0733,-605 13296.0733,-605 13296.0733,-631 13296.0733,-631 13296.0733,-637 13290.0733,-643 13284.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13239.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13239.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13239.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 444&#45;&gt;445 -->\\n\",\n       \"<g id=\\\"edge445\\\" class=\\\"edge\\\">\\n\",\n       \"<title>444&#45;&gt;445</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13328.1047,-685.8089C13312.9489,-674.1506 13295.8615,-661.0064 13280.7936,-649.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13282.7156,-646.4785 13272.6553,-643.1555 13278.4476,-652.0269 13282.7156,-646.4785\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 446 -->\\n\",\n       \"<g id=\\\"node447\\\" class=\\\"node\\\">\\n\",\n       \"<title>446</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13414.0733,-643C13414.0733,-643 13325.8329,-643 13325.8329,-643 13319.8329,-643 13313.8329,-637 13313.8329,-631 13313.8329,-631 13313.8329,-605 13313.8329,-605 13313.8329,-599 13319.8329,-593 13325.8329,-593 13325.8329,-593 13414.0733,-593 13414.0733,-593 13420.0733,-593 13426.0733,-599 13426.0733,-605 13426.0733,-605 13426.0733,-631 13426.0733,-631 13426.0733,-637 13420.0733,-643 13414.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13369.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13369.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13369.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 444&#45;&gt;446 -->\\n\",\n       \"<g id=\\\"edge446\\\" class=\\\"edge\\\">\\n\",\n       \"<title>444&#45;&gt;446</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13369.9531,-685.8089C13369.9531,-675.446 13369.9531,-663.909 13369.9531,-653.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13373.4532,-653.1555 13369.9531,-643.1555 13366.4532,-653.1556 13373.4532,-653.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 448 -->\\n\",\n       \"<g id=\\\"node449\\\" class=\\\"node\\\">\\n\",\n       \"<title>448</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13544.0733,-643C13544.0733,-643 13455.8329,-643 13455.8329,-643 13449.8329,-643 13443.8329,-637 13443.8329,-631 13443.8329,-631 13443.8329,-605 13443.8329,-605 13443.8329,-599 13449.8329,-593 13455.8329,-593 13455.8329,-593 13544.0733,-593 13544.0733,-593 13550.0733,-593 13556.0733,-599 13556.0733,-605 13556.0733,-605 13556.0733,-631 13556.0733,-631 13556.0733,-637 13550.0733,-643 13544.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13499.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13499.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13499.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 447&#45;&gt;448 -->\\n\",\n       \"<g id=\\\"edge448\\\" class=\\\"edge\\\">\\n\",\n       \"<title>447&#45;&gt;448</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13499.9531,-685.8089C13499.9531,-675.446 13499.9531,-663.909 13499.9531,-653.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13503.4532,-653.1555 13499.9531,-643.1555 13496.4532,-653.1556 13503.4532,-653.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 449 -->\\n\",\n       \"<g id=\\\"node450\\\" class=\\\"node\\\">\\n\",\n       \"<title>449</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13674.0733,-643C13674.0733,-643 13585.8329,-643 13585.8329,-643 13579.8329,-643 13573.8329,-637 13573.8329,-631 13573.8329,-631 13573.8329,-605 13573.8329,-605 13573.8329,-599 13579.8329,-593 13585.8329,-593 13585.8329,-593 13674.0733,-593 13674.0733,-593 13680.0733,-593 13686.0733,-599 13686.0733,-605 13686.0733,-605 13686.0733,-631 13686.0733,-631 13686.0733,-637 13680.0733,-643 13674.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13629.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13629.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13629.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 7, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 447&#45;&gt;449 -->\\n\",\n       \"<g id=\\\"edge449\\\" class=\\\"edge\\\">\\n\",\n       \"<title>447&#45;&gt;449</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13541.8015,-685.8089C13556.9573,-674.1506 13574.0448,-661.0064 13589.1127,-649.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13591.4587,-652.0269 13597.2509,-643.1555 13587.1907,-646.4785 13591.4587,-652.0269\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 451 -->\\n\",\n       \"<g id=\\\"node452\\\" class=\\\"node\\\">\\n\",\n       \"<title>451</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13956.8872,-750C13956.8872,-750 13787.019,-750 13787.019,-750 13781.019,-750 13775.019,-744 13775.019,-738 13775.019,-738 13775.019,-698 13775.019,-698 13775.019,-692 13781.019,-686 13787.019,-686 13787.019,-686 13956.8872,-686 13956.8872,-686 13962.8872,-686 13968.8872,-692 13968.8872,-698 13968.8872,-698 13968.8872,-738 13968.8872,-738 13968.8872,-744 13962.8872,-750 13956.8872,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13871.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Parks and recreation &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13871.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.547</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13871.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 17</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13871.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [9, 7, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 450&#45;&gt;451 -->\\n\",\n       \"<g id=\\\"edge451\\\" class=\\\"edge\\\">\\n\",\n       \"<title>450&#45;&gt;451</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13871.9531,-785.8089C13871.9531,-777.6906 13871.9531,-768.8517 13871.9531,-760.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13875.4532,-760.1307 13871.9531,-750.1308 13868.4532,-760.1308 13875.4532,-760.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 466 -->\\n\",\n       \"<g id=\\\"node467\\\" class=\\\"node\\\">\\n\",\n       \"<title>466</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14426.3828,-750C14426.3828,-750 14167.5234,-750 14167.5234,-750 14161.5234,-750 14155.5234,-744 14155.5234,-738 14155.5234,-738 14155.5234,-698 14155.5234,-698 14155.5234,-692 14161.5234,-686 14167.5234,-686 14167.5234,-686 14426.3828,-686 14426.3828,-686 14432.3828,-686 14438.3828,-692 14438.3828,-698 14438.3828,-698 14438.3828,-738 14438.3828,-738 14438.3828,-744 14432.3828,-750 14426.3828,-750\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14296.9531\\\" y=\\\"-734.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14296.9531\\\" y=\\\"-720.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14296.9531\\\" y=\\\"-706.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14296.9531\\\" y=\\\"-692.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 2]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 450&#45;&gt;466 -->\\n\",\n       \"<g id=\\\"edge466\\\" class=\\\"edge\\\">\\n\",\n       \"<title>450&#45;&gt;466</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13985.8453,-791.2018C14036.5377,-779.2742 14096.8498,-765.0831 14150.8149,-752.3855\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"14151.8812,-755.7302 14160.8137,-750.0328 14150.2779,-748.9163 14151.8812,-755.7302\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 452 -->\\n\",\n       \"<g id=\\\"node453\\\" class=\\\"node\\\">\\n\",\n       \"<title>452</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13804.0733,-643C13804.0733,-643 13715.8329,-643 13715.8329,-643 13709.8329,-643 13703.8329,-637 13703.8329,-631 13703.8329,-631 13703.8329,-605 13703.8329,-605 13703.8329,-599 13709.8329,-593 13715.8329,-593 13715.8329,-593 13804.0733,-593 13804.0733,-593 13810.0733,-593 13816.0733,-599 13816.0733,-605 13816.0733,-605 13816.0733,-631 13816.0733,-631 13816.0733,-637 13810.0733,-643 13804.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13759.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13759.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13759.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [3, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 451&#45;&gt;452 -->\\n\",\n       \"<g id=\\\"edge452\\\" class=\\\"edge\\\">\\n\",\n       \"<title>451&#45;&gt;452</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13835.8991,-685.8089C13823.0836,-674.3665 13808.665,-661.4928 13795.8617,-650.0612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13797.9178,-647.2049 13788.1273,-643.1555 13793.2557,-652.4265 13797.9178,-647.2049\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 453 -->\\n\",\n       \"<g id=\\\"node454\\\" class=\\\"node\\\">\\n\",\n       \"<title>453</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14124.345,-650C14124.345,-650 13845.5613,-650 13845.5613,-650 13839.5613,-650 13833.5613,-644 13833.5613,-638 13833.5613,-638 13833.5613,-598 13833.5613,-598 13833.5613,-592 13839.5613,-586 13845.5613,-586 13845.5613,-586 14124.345,-586 14124.345,-586 14130.345,-586 14136.345,-592 14136.345,-598 14136.345,-598 14136.345,-638 14136.345,-638 14136.345,-644 14130.345,-650 14124.345,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13984.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Developing alternative energy sources &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13984.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.561</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13984.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 14</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13984.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [6, 7, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 451&#45;&gt;453 -->\\n\",\n       \"<g id=\\\"edge453\\\" class=\\\"edge\\\">\\n\",\n       \"<title>451&#45;&gt;453</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13908.329,-685.8089C13918.7125,-676.62 13930.139,-666.508 13940.927,-656.9612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13943.4762,-659.379 13948.6454,-650.1308 13938.8371,-654.1369 13943.4762,-659.379\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 454 -->\\n\",\n       \"<g id=\\\"node455\\\" class=\\\"node\\\">\\n\",\n       \"<title>454</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13867.518,-550C13867.518,-550 13646.3883,-550 13646.3883,-550 13640.3883,-550 13634.3883,-544 13634.3883,-538 13634.3883,-538 13634.3883,-498 13634.3883,-498 13634.3883,-492 13640.3883,-486 13646.3883,-486 13646.3883,-486 13867.518,-486 13867.518,-486 13873.518,-486 13879.518,-492 13879.518,-498 13879.518,-498 13879.518,-538 13879.518,-538 13879.518,-544 13873.518,-550 13867.518,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13756.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13756.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.32</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13756.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13756.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 453&#45;&gt;454 -->\\n\",\n       \"<g id=\\\"edge454\\\" class=\\\"edge\\\">\\n\",\n       \"<title>453&#45;&gt;454</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13911.8717,-585.9467C13888.7591,-575.8096 13863.0592,-564.5377 13839.3415,-554.1352\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13840.5756,-550.8547 13830.0118,-550.0433 13837.7639,-557.2652 13840.5756,-550.8547\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 457 -->\\n\",\n       \"<g id=\\\"node458\\\" class=\\\"node\\\">\\n\",\n       \"<title>457</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14074.2247,-550C14074.2247,-550 13909.6815,-550 13909.6815,-550 13903.6815,-550 13897.6815,-544 13897.6815,-538 13897.6815,-538 13897.6815,-498 13897.6815,-498 13897.6815,-492 13903.6815,-486 13909.6815,-486 13909.6815,-486 14074.2247,-486 14074.2247,-486 14080.2247,-486 14086.2247,-492 14086.2247,-498 14086.2247,-498 14086.2247,-538 14086.2247,-538 14086.2247,-544 14080.2247,-550 14074.2247,-550\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13991.9531\\\" y=\\\"-534.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Parks and recreation &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13991.9531\\\" y=\\\"-520.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.494</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13991.9531\\\" y=\\\"-506.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 9</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13991.9531\\\" y=\\\"-492.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 6, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 453&#45;&gt;457 -->\\n\",\n       \"<g id=\\\"edge457\\\" class=\\\"edge\\\">\\n\",\n       \"<title>453&#45;&gt;457</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13987.2065,-585.8089C13987.7748,-577.6906 13988.3935,-568.8517 13988.9908,-560.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13992.497,-560.3508 13989.704,-550.1308 13985.5141,-559.8619 13992.497,-560.3508\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 455 -->\\n\",\n       \"<g id=\\\"node456\\\" class=\\\"node\\\">\\n\",\n       \"<title>455</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13683.0733,-443C13683.0733,-443 13594.8329,-443 13594.8329,-443 13588.8329,-443 13582.8329,-437 13582.8329,-431 13582.8329,-431 13582.8329,-405 13582.8329,-405 13582.8329,-399 13588.8329,-393 13594.8329,-393 13594.8329,-393 13683.0733,-393 13683.0733,-393 13689.0733,-393 13695.0733,-399 13695.0733,-405 13695.0733,-405 13695.0733,-431 13695.0733,-431 13695.0733,-437 13689.0733,-443 13683.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13638.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13638.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13638.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 454&#45;&gt;455 -->\\n\",\n       \"<g id=\\\"edge455\\\" class=\\\"edge\\\">\\n\",\n       \"<title>454&#45;&gt;455</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13718.9677,-485.8089C13705.3382,-474.2586 13689.9878,-461.2497 13676.4041,-449.7381\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13678.5285,-446.9507 13668.6367,-443.1555 13674.0028,-452.2909 13678.5285,-446.9507\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 456 -->\\n\",\n       \"<g id=\\\"node457\\\" class=\\\"node\\\">\\n\",\n       \"<title>456</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13813.0733,-443C13813.0733,-443 13724.8329,-443 13724.8329,-443 13718.8329,-443 13712.8329,-437 13712.8329,-431 13712.8329,-431 13712.8329,-405 13712.8329,-405 13712.8329,-399 13718.8329,-393 13724.8329,-393 13724.8329,-393 13813.0733,-393 13813.0733,-393 13819.0733,-393 13825.0733,-399 13825.0733,-405 13825.0733,-405 13825.0733,-431 13825.0733,-431 13825.0733,-437 13819.0733,-443 13813.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13768.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13768.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13768.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [4, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 454&#45;&gt;456 -->\\n\",\n       \"<g id=\\\"edge456\\\" class=\\\"edge\\\">\\n\",\n       \"<title>454&#45;&gt;456</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13760.8161,-485.8089C13762.0596,-475.446 13763.444,-463.909 13764.7132,-453.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13768.218,-453.5014 13765.9345,-443.1555 13761.2679,-452.6673 13768.218,-453.5014\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 458 -->\\n\",\n       \"<g id=\\\"node459\\\" class=\\\"node\\\">\\n\",\n       \"<title>458</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14081.6418,-450C14081.6418,-450 13878.2644,-450 13878.2644,-450 13872.2644,-450 13866.2644,-444 13866.2644,-438 13866.2644,-438 13866.2644,-398 13866.2644,-398 13866.2644,-392 13872.2644,-386 13878.2644,-386 13878.2644,-386 14081.6418,-386 14081.6418,-386 14087.6418,-386 14093.6418,-392 14093.6418,-398 14093.6418,-398 14093.6418,-438 14093.6418,-438 14093.6418,-444 14087.6418,-450 14081.6418,-450\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13979.9531\\\" y=\\\"-434.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Space exploration program &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13979.9531\\\" y=\\\"-420.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.375</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13979.9531\\\" y=\\\"-406.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 8</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13979.9531\\\" y=\\\"-392.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [2, 6, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 457&#45;&gt;458 -->\\n\",\n       \"<g id=\\\"edge458\\\" class=\\\"edge\\\">\\n\",\n       \"<title>457&#45;&gt;458</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13988.0902,-485.8089C13987.116,-477.6906 13986.0553,-468.8517 13985.0314,-460.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13988.4754,-459.6425 13983.8088,-450.1308 13981.5253,-460.4766 13988.4754,-459.6425\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 465 -->\\n\",\n       \"<g id=\\\"node466\\\" class=\\\"node\\\">\\n\",\n       \"<title>465</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14212.0733,-443C14212.0733,-443 14123.8329,-443 14123.8329,-443 14117.8329,-443 14111.8329,-437 14111.8329,-431 14111.8329,-431 14111.8329,-405 14111.8329,-405 14111.8329,-399 14117.8329,-393 14123.8329,-393 14123.8329,-393 14212.0733,-393 14212.0733,-393 14218.0733,-393 14224.0733,-399 14224.0733,-405 14224.0733,-405 14224.0733,-431 14224.0733,-431 14224.0733,-437 14218.0733,-443 14212.0733,-443\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14167.9531\\\" y=\\\"-427.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14167.9531\\\" y=\\\"-413.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14167.9531\\\" y=\\\"-399.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 457&#45;&gt;465 -->\\n\",\n       \"<g id=\\\"edge465\\\" class=\\\"edge\\\">\\n\",\n       \"<title>457&#45;&gt;465</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14048.6094,-485.8089C14069.888,-473.7188 14093.979,-460.0308 14114.9166,-448.1344\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"14116.7138,-451.1388 14123.6794,-443.1555 14113.2557,-445.0526 14116.7138,-451.1388\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 459 -->\\n\",\n       \"<g id=\\\"node460\\\" class=\\\"node\\\">\\n\",\n       \"<title>459</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13983.7561,-350C13983.7561,-350 13796.1502,-350 13796.1502,-350 13790.1502,-350 13784.1502,-344 13784.1502,-338 13784.1502,-338 13784.1502,-298 13784.1502,-298 13784.1502,-292 13790.1502,-286 13796.1502,-286 13796.1502,-286 13983.7561,-286 13983.7561,-286 13989.7561,-286 13995.7561,-292 13995.7561,-298 13995.7561,-298 13995.7561,-338 13995.7561,-338 13995.7561,-344 13989.7561,-350 13983.7561,-350\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13889.9531\\\" y=\\\"-334.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Halting rising crime rate &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13889.9531\\\" y=\\\"-320.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.245</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13889.9531\\\" y=\\\"-306.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 7</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13889.9531\\\" y=\\\"-292.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 6, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 458&#45;&gt;459 -->\\n\",\n       \"<g id=\\\"edge459\\\" class=\\\"edge\\\">\\n\",\n       \"<title>458&#45;&gt;459</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13950.9812,-385.8089C13942.952,-376.8877 13934.1398,-367.0963 13925.7702,-357.7968\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13928.162,-355.2223 13918.8708,-350.1308 13922.9589,-359.9051 13928.162,-355.2223\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 464 -->\\n\",\n       \"<g id=\\\"node465\\\" class=\\\"node\\\">\\n\",\n       \"<title>464</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14114.0733,-343C14114.0733,-343 14025.8329,-343 14025.8329,-343 14019.8329,-343 14013.8329,-337 14013.8329,-331 14013.8329,-331 14013.8329,-305 14013.8329,-305 14013.8329,-299 14019.8329,-293 14025.8329,-293 14025.8329,-293 14114.0733,-293 14114.0733,-293 14120.0733,-293 14126.0733,-299 14126.0733,-305 14126.0733,-305 14126.0733,-331 14126.0733,-331 14126.0733,-337 14120.0733,-343 14114.0733,-343\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14069.9531\\\" y=\\\"-327.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14069.9531\\\" y=\\\"-313.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14069.9531\\\" y=\\\"-299.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 458&#45;&gt;464 -->\\n\",\n       \"<g id=\\\"edge464\\\" class=\\\"edge\\\">\\n\",\n       \"<title>458&#45;&gt;464</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14008.9251,-385.8089C14019.029,-374.5824 14030.3729,-361.978 14040.5143,-350.7098\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"14043.225,-352.9299 14047.3131,-343.1555 14038.0219,-348.2471 14043.225,-352.9299\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 460 -->\\n\",\n       \"<g id=\\\"node461\\\" class=\\\"node\\\">\\n\",\n       \"<title>460</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13912.5452,-250C13912.5452,-250 13649.361,-250 13649.361,-250 13643.361,-250 13637.361,-244 13637.361,-238 13637.361,-238 13637.361,-198 13637.361,-198 13637.361,-192 13643.361,-186 13649.361,-186 13649.361,-186 13912.5452,-186 13912.5452,-186 13918.5452,-186 13924.5452,-192 13924.5452,-198 13924.5452,-198 13924.5452,-238 13924.5452,-238 13924.5452,-244 13918.5452,-250 13912.5452,-250\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13780.9531\\\" y=\\\"-234.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving nations education system &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13780.9531\\\" y=\\\"-220.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13780.9531\\\" y=\\\"-206.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13780.9531\\\" y=\\\"-192.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 459&#45;&gt;460 -->\\n\",\n       \"<g id=\\\"edge460\\\" class=\\\"edge\\\">\\n\",\n       \"<title>459&#45;&gt;460</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13854.8649,-285.8089C13844.849,-276.62 13833.8269,-266.508 13823.4208,-256.9612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13825.7105,-254.312 13815.9757,-250.1308 13820.9783,-259.4702 13825.7105,-254.312\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 463 -->\\n\",\n       \"<g id=\\\"node464\\\" class=\\\"node\\\">\\n\",\n       \"<title>463</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14043.0733,-243C14043.0733,-243 13954.8329,-243 13954.8329,-243 13948.8329,-243 13942.8329,-237 13942.8329,-231 13942.8329,-231 13942.8329,-205 13942.8329,-205 13942.8329,-199 13948.8329,-193 13954.8329,-193 13954.8329,-193 14043.0733,-193 14043.0733,-193 14049.0733,-193 14055.0733,-199 14055.0733,-205 14055.0733,-205 14055.0733,-231 14055.0733,-231 14055.0733,-237 14049.0733,-243 14043.0733,-243\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13998.9531\\\" y=\\\"-227.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13998.9531\\\" y=\\\"-213.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 4</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13998.9531\\\" y=\\\"-199.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 4, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 459&#45;&gt;463 -->\\n\",\n       \"<g id=\\\"edge463\\\" class=\\\"edge\\\">\\n\",\n       \"<title>459&#45;&gt;463</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13925.0414,-285.8089C13937.5136,-274.3665 13951.546,-261.4928 13964.0064,-250.0612\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13966.5309,-252.4949 13971.5336,-243.1555 13961.7987,-247.3368 13966.5309,-252.4949\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 461 -->\\n\",\n       \"<g id=\\\"node462\\\" class=\\\"node\\\">\\n\",\n       \"<title>461</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13760.0733,-143C13760.0733,-143 13671.8329,-143 13671.8329,-143 13665.8329,-143 13659.8329,-137 13659.8329,-131 13659.8329,-131 13659.8329,-105 13659.8329,-105 13659.8329,-99 13665.8329,-93 13671.8329,-93 13671.8329,-93 13760.0733,-93 13760.0733,-93 13766.0733,-93 13772.0733,-99 13772.0733,-105 13772.0733,-105 13772.0733,-131 13772.0733,-131 13772.0733,-137 13766.0733,-143 13760.0733,-143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13715.9531\\\" y=\\\"-127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13715.9531\\\" y=\\\"-113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13715.9531\\\" y=\\\"-99.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 460&#45;&gt;461 -->\\n\",\n       \"<g id=\\\"edge461\\\" class=\\\"edge\\\">\\n\",\n       \"<title>460&#45;&gt;461</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13760.0289,-185.8089C13752.9422,-174.9063 13745.0108,-162.7041 13737.8505,-151.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13740.6887,-149.6325 13732.3042,-143.1555 13734.8196,-153.4475 13740.6887,-149.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 462 -->\\n\",\n       \"<g id=\\\"node463\\\" class=\\\"node\\\">\\n\",\n       \"<title>462</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13890.0733,-143C13890.0733,-143 13801.8329,-143 13801.8329,-143 13795.8329,-143 13789.8329,-137 13789.8329,-131 13789.8329,-131 13789.8329,-105 13789.8329,-105 13789.8329,-99 13795.8329,-93 13801.8329,-93 13801.8329,-93 13890.0733,-93 13890.0733,-93 13896.0733,-93 13902.0733,-99 13902.0733,-105 13902.0733,-105 13902.0733,-131 13902.0733,-131 13902.0733,-137 13896.0733,-143 13890.0733,-143\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13845.9531\\\" y=\\\"-127.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13845.9531\\\" y=\\\"-113.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13845.9531\\\" y=\\\"-99.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 460&#45;&gt;462 -->\\n\",\n       \"<g id=\\\"edge462\\\" class=\\\"edge\\\">\\n\",\n       \"<title>460&#45;&gt;462</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13801.8773,-185.8089C13808.9641,-174.9063 13816.8955,-162.7041 13824.0558,-151.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13827.0867,-153.4475 13829.602,-143.1555 13821.2175,-149.6325 13827.0867,-153.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 467 -->\\n\",\n       \"<g id=\\\"node468\\\" class=\\\"node\\\">\\n\",\n       \"<title>467</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14427.7071,-650C14427.7071,-650 14166.1991,-650 14166.1991,-650 14160.1991,-650 14154.1991,-644 14154.1991,-638 14154.1991,-638 14154.1991,-598 14154.1991,-598 14154.1991,-592 14160.1991,-586 14166.1991,-586 14166.1991,-586 14427.7071,-586 14427.7071,-586 14433.7071,-586 14439.7071,-592 14439.7071,-598 14439.7071,-598 14439.7071,-638 14439.7071,-638 14439.7071,-644 14433.7071,-650 14427.7071,-650\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14296.9531\\\" y=\\\"-634.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Improving &amp; protecting environment &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14296.9531\\\" y=\\\"-620.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14296.9531\\\" y=\\\"-606.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14296.9531\\\" y=\\\"-592.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 466&#45;&gt;467 -->\\n\",\n       \"<g id=\\\"edge467\\\" class=\\\"edge\\\">\\n\",\n       \"<title>466&#45;&gt;467</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14296.9531,-685.8089C14296.9531,-677.6906 14296.9531,-668.8517 14296.9531,-660.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"14300.4532,-660.1307 14296.9531,-650.1308 14293.4532,-660.1308 14300.4532,-660.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 470 -->\\n\",\n       \"<g id=\\\"node471\\\" class=\\\"node\\\">\\n\",\n       \"<title>470</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14558.0733,-643C14558.0733,-643 14469.8329,-643 14469.8329,-643 14463.8329,-643 14457.8329,-637 14457.8329,-631 14457.8329,-631 14457.8329,-605 14457.8329,-605 14457.8329,-599 14463.8329,-593 14469.8329,-593 14469.8329,-593 14558.0733,-593 14558.0733,-593 14564.0733,-593 14570.0733,-599 14570.0733,-605 14570.0733,-605 14570.0733,-631 14570.0733,-631 14570.0733,-637 14564.0733,-643 14558.0733,-643\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14513.9531\\\" y=\\\"-627.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14513.9531\\\" y=\\\"-613.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14513.9531\\\" y=\\\"-599.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 466&#45;&gt;470 -->\\n\",\n       \"<g id=\\\"edge470\\\" class=\\\"edge\\\">\\n\",\n       \"<title>466&#45;&gt;470</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14370.263,-685.857C14395.3127,-674.7008 14423.4402,-661.982 14448.9531,-650 14450.7036,-649.1779 14452.4782,-648.3391 14454.2679,-647.4887\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"14455.7924,-650.6393 14463.2981,-643.1617 14452.7675,-644.3266 14455.7924,-650.6393\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 468 -->\\n\",\n       \"<g id=\\\"node469\\\" class=\\\"node\\\">\\n\",\n       \"<title>468</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14276.0733,-543C14276.0733,-543 14187.8329,-543 14187.8329,-543 14181.8329,-543 14175.8329,-537 14175.8329,-531 14175.8329,-531 14175.8329,-505 14175.8329,-505 14175.8329,-499 14181.8329,-493 14187.8329,-493 14187.8329,-493 14276.0733,-493 14276.0733,-493 14282.0733,-493 14288.0733,-499 14288.0733,-505 14288.0733,-505 14288.0733,-531 14288.0733,-531 14288.0733,-537 14282.0733,-543 14276.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14231.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14231.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14231.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 467&#45;&gt;468 -->\\n\",\n       \"<g id=\\\"edge468\\\" class=\\\"edge\\\">\\n\",\n       \"<title>467&#45;&gt;468</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14276.0289,-585.8089C14268.9422,-574.9063 14261.0108,-562.7041 14253.8505,-551.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"14256.6887,-549.6325 14248.3042,-543.1555 14250.8196,-553.4475 14256.6887,-549.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 469 -->\\n\",\n       \"<g id=\\\"node470\\\" class=\\\"node\\\">\\n\",\n       \"<title>469</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14406.0733,-543C14406.0733,-543 14317.8329,-543 14317.8329,-543 14311.8329,-543 14305.8329,-537 14305.8329,-531 14305.8329,-531 14305.8329,-505 14305.8329,-505 14305.8329,-499 14311.8329,-493 14317.8329,-493 14317.8329,-493 14406.0733,-493 14406.0733,-493 14412.0733,-493 14418.0733,-499 14418.0733,-505 14418.0733,-505 14418.0733,-531 14418.0733,-531 14418.0733,-537 14412.0733,-543 14406.0733,-543\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14361.9531\\\" y=\\\"-527.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14361.9531\\\" y=\\\"-513.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14361.9531\\\" y=\\\"-499.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 467&#45;&gt;469 -->\\n\",\n       \"<g id=\\\"edge469\\\" class=\\\"edge\\\">\\n\",\n       \"<title>467&#45;&gt;469</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14317.8773,-585.8089C14324.9641,-574.9063 14332.8955,-562.7041 14340.0558,-551.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"14343.0867,-553.4475 14345.602,-543.1555 14337.2175,-549.6325 14343.0867,-553.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 473 -->\\n\",\n       \"<g id=\\\"node474\\\" class=\\\"node\\\">\\n\",\n       \"<title>473</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13895.518,-1050C13895.518,-1050 13674.3883,-1050 13674.3883,-1050 13668.3883,-1050 13662.3883,-1044 13662.3883,-1038 13662.3883,-1038 13662.3883,-998 13662.3883,-998 13662.3883,-992 13668.3883,-986 13674.3883,-986 13674.3883,-986 13895.518,-986 13895.518,-986 13901.518,-986 13907.518,-992 13907.518,-998 13907.518,-998 13907.518,-1038 13907.518,-1038 13907.518,-1044 13901.518,-1050 13895.518,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13784.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Solving problems of big cities &lt;= &#45;0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13784.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.444</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13784.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13784.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 472&#45;&gt;473 -->\\n\",\n       \"<g id=\\\"edge473\\\" class=\\\"edge\\\">\\n\",\n       \"<title>472&#45;&gt;473</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13784.9531,-1085.8089C13784.9531,-1077.6906 13784.9531,-1068.8517 13784.9531,-1060.3186\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13788.4532,-1060.1307 13784.9531,-1050.1308 13781.4532,-1060.1308 13788.4532,-1060.1307\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 476 -->\\n\",\n       \"<g id=\\\"node477\\\" class=\\\"node\\\">\\n\",\n       \"<title>476</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14143.6486,-1050C14143.6486,-1050 13940.2576,-1050 13940.2576,-1050 13934.2576,-1050 13928.2576,-1044 13928.2576,-1038 13928.2576,-1038 13928.2576,-998 13928.2576,-998 13928.2576,-992 13934.2576,-986 13940.2576,-986 13940.2576,-986 14143.6486,-986 14143.6486,-986 14149.6486,-986 14155.6486,-992 14155.6486,-998 14155.6486,-998 14155.6486,-1038 14155.6486,-1038 14155.6486,-1044 14149.6486,-1050 14143.6486,-1050\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14041.9531\\\" y=\\\"-1034.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Dealing with drug addiction &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14041.9531\\\" y=\\\"-1020.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.32</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14041.9531\\\" y=\\\"-1006.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14041.9531\\\" y=\\\"-992.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 4]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 472&#45;&gt;476 -->\\n\",\n       \"<g id=\\\"edge476\\\" class=\\\"edge\\\">\\n\",\n       \"<title>472&#45;&gt;476</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13867.33,-1085.9467C13893.7282,-1075.6751 13923.1207,-1064.2383 13950.149,-1053.7214\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13951.5517,-1056.9314 13959.6019,-1050.0433 13949.0133,-1050.4078 13951.5517,-1056.9314\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 474 -->\\n\",\n       \"<g id=\\\"node475\\\" class=\\\"node\\\">\\n\",\n       \"<title>474</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13826.0733,-943C13826.0733,-943 13737.8329,-943 13737.8329,-943 13731.8329,-943 13725.8329,-937 13725.8329,-931 13725.8329,-931 13725.8329,-905 13725.8329,-905 13725.8329,-899 13731.8329,-893 13737.8329,-893 13737.8329,-893 13826.0733,-893 13826.0733,-893 13832.0733,-893 13838.0733,-899 13838.0733,-905 13838.0733,-905 13838.0733,-931 13838.0733,-931 13838.0733,-937 13832.0733,-943 13826.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13781.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13781.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13781.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [1, 0, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 473&#45;&gt;474 -->\\n\",\n       \"<g id=\\\"edge474\\\" class=\\\"edge\\\">\\n\",\n       \"<title>473&#45;&gt;474</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13783.9874,-985.8089C13783.6765,-975.446 13783.3304,-963.909 13783.0131,-953.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13786.5062,-953.0461 13782.7078,-943.1555 13779.5093,-953.256 13786.5062,-953.0461\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 475 -->\\n\",\n       \"<g id=\\\"node476\\\" class=\\\"node\\\">\\n\",\n       \"<title>475</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13956.0733,-943C13956.0733,-943 13867.8329,-943 13867.8329,-943 13861.8329,-943 13855.8329,-937 13855.8329,-931 13855.8329,-931 13855.8329,-905 13855.8329,-905 13855.8329,-899 13861.8329,-893 13867.8329,-893 13867.8329,-893 13956.0733,-893 13956.0733,-893 13962.0733,-893 13968.0733,-899 13968.0733,-905 13968.0733,-905 13968.0733,-931 13968.0733,-931 13968.0733,-937 13962.0733,-943 13956.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13911.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13911.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"13911.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 2, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 473&#45;&gt;475 -->\\n\",\n       \"<g id=\\\"edge475\\\" class=\\\"edge\\\">\\n\",\n       \"<title>473&#45;&gt;475</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M13825.8358,-985.8089C13840.6418,-974.1506 13857.3349,-961.0064 13872.0552,-949.4157\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"13874.3141,-952.0919 13880.0056,-943.1555 13869.9836,-946.5921 13874.3141,-952.0919\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 477 -->\\n\",\n       \"<g id=\\\"node478\\\" class=\\\"node\\\">\\n\",\n       \"<title>477</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14086.0733,-943C14086.0733,-943 13997.8329,-943 13997.8329,-943 13991.8329,-943 13985.8329,-937 13985.8329,-931 13985.8329,-931 13985.8329,-905 13985.8329,-905 13985.8329,-899 13991.8329,-893 13997.8329,-893 13997.8329,-893 14086.0733,-893 14086.0733,-893 14092.0733,-893 14098.0733,-899 14098.0733,-905 14098.0733,-905 14098.0733,-931 14098.0733,-931 14098.0733,-937 14092.0733,-943 14086.0733,-943\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14041.9531\\\" y=\\\"-927.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14041.9531\\\" y=\\\"-913.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 3</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14041.9531\\\" y=\\\"-899.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 3]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 476&#45;&gt;477 -->\\n\",\n       \"<g id=\\\"edge477\\\" class=\\\"edge\\\">\\n\",\n       \"<title>476&#45;&gt;477</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14041.9531,-985.8089C14041.9531,-975.446 14041.9531,-963.909 14041.9531,-953.3327\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"14045.4532,-953.1555 14041.9531,-943.1555 14038.4532,-953.1556 14045.4532,-953.1555\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 478 -->\\n\",\n       \"<g id=\\\"node479\\\" class=\\\"node\\\">\\n\",\n       \"<title>478</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14369.4926,-950C14369.4926,-950 14128.4137,-950 14128.4137,-950 14122.4137,-950 14116.4137,-944 14116.4137,-938 14116.4137,-938 14116.4137,-898 14116.4137,-898 14116.4137,-892 14122.4137,-886 14128.4137,-886 14128.4137,-886 14369.4926,-886 14369.4926,-886 14375.4926,-886 14381.4926,-892 14381.4926,-898 14381.4926,-898 14381.4926,-938 14381.4926,-938 14381.4926,-944 14375.4926,-950 14369.4926,-950\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14248.9531\\\" y=\\\"-934.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">Military, armaments, and defense &lt;= 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14248.9531\\\" y=\\\"-920.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.5</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14248.9531\\\" y=\\\"-906.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 2</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14248.9531\\\" y=\\\"-892.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 476&#45;&gt;478 -->\\n\",\n       \"<g id=\\\"edge478\\\" class=\\\"edge\\\">\\n\",\n       \"<title>476&#45;&gt;478</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14108.3034,-985.9467C14129.1015,-975.8993 14152.2072,-964.7372 14173.5811,-954.4116\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"14175.1416,-957.5448 14182.6235,-950.0433 14172.0967,-951.2418 14175.1416,-957.5448\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 479 -->\\n\",\n       \"<g id=\\\"node480\\\" class=\\\"node\\\">\\n\",\n       \"<title>479</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14228.0733,-843C14228.0733,-843 14139.8329,-843 14139.8329,-843 14133.8329,-843 14127.8329,-837 14127.8329,-831 14127.8329,-831 14127.8329,-805 14127.8329,-805 14127.8329,-799 14133.8329,-793 14139.8329,-793 14139.8329,-793 14228.0733,-793 14228.0733,-793 14234.0733,-793 14240.0733,-799 14240.0733,-805 14240.0733,-805 14240.0733,-831 14240.0733,-831 14240.0733,-837 14234.0733,-843 14228.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14183.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14183.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14183.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 0, 1]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 478&#45;&gt;479 -->\\n\",\n       \"<g id=\\\"edge479\\\" class=\\\"edge\\\">\\n\",\n       \"<title>478&#45;&gt;479</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14228.0289,-885.8089C14220.9422,-874.9063 14213.0108,-862.7041 14205.8505,-851.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"14208.6887,-849.6325 14200.3042,-843.1555 14202.8196,-853.4475 14208.6887,-849.6325\\\"/>\\n\",\n       \"</g>\\n\",\n       \"<!-- 480 -->\\n\",\n       \"<g id=\\\"node481\\\" class=\\\"node\\\">\\n\",\n       \"<title>480</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14358.0733,-843C14358.0733,-843 14269.8329,-843 14269.8329,-843 14263.8329,-843 14257.8329,-837 14257.8329,-831 14257.8329,-831 14257.8329,-805 14257.8329,-805 14257.8329,-799 14263.8329,-793 14269.8329,-793 14269.8329,-793 14358.0733,-793 14358.0733,-793 14364.0733,-793 14370.0733,-799 14370.0733,-805 14370.0733,-805 14370.0733,-831 14370.0733,-831 14370.0733,-837 14364.0733,-843 14358.0733,-843\\\"/>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14313.9531\\\" y=\\\"-827.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">gini = 0.0</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14313.9531\\\" y=\\\"-813.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">samples = 1</text>\\n\",\n       \"<text text-anchor=\\\"middle\\\" x=\\\"14313.9531\\\" y=\\\"-799.8\\\" font-family=\\\"Helvetica,sans-Serif\\\" font-size=\\\"14.00\\\" fill=\\\"#000000\\\">value = [0, 1, 0]</text>\\n\",\n       \"</g>\\n\",\n       \"<!-- 478&#45;&gt;480 -->\\n\",\n       \"<g id=\\\"edge480\\\" class=\\\"edge\\\">\\n\",\n       \"<title>478&#45;&gt;480</title>\\n\",\n       \"<path fill=\\\"none\\\" stroke=\\\"#000000\\\" d=\\\"M14269.8773,-885.8089C14276.9641,-874.9063 14284.8955,-862.7041 14292.0558,-851.6882\\\"/>\\n\",\n       \"<polygon fill=\\\"#000000\\\" stroke=\\\"#000000\\\" points=\\\"14295.0867,-853.4475 14297.602,-843.1555 14289.2175,-849.6325 14295.0867,-853.4475\\\"/>\\n\",\n       \"</g>\\n\",\n       \"</g>\\n\",\n       \"</svg>\\n\"\n      ],\n      \"text/plain\": [\n       \"<graphviz.files.Source at 0x117d466a0>\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.tree import export_graphviz\\n\",\n    \"import graphviz\\n\",\n    \"\\n\",\n    \"feature_names = gss.columns.drop(predict_col)\\n\",\n    \"export_graphviz(dt, \\n\",\n    \"                feature_names=feature_names, \\n\",\n    \"                rounded=True,\\n\",\n    \"                out_file=\\\"mytree.dot\\\")\\n\",\n    \"with open(\\\"mytree.dot\\\") as f:\\n\",\n    \"    dot_graph = f.read()\\n\",\n    \"graphviz.Source(dot_graph)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## A more realistic test\\n\",\n    \"The test of a classifier is not whether it can reproduce the output training data -- it's how well it does on data it's never seen before. So let's split our data into training and test sets, and try this again.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Split off a random third of this data to use for testing.\\n\",\n    \"train, test = train_test_split(gss, test_size=0.3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(676, 18)\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"train.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(290, 18)\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"test.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# The x values don't contain the column we want to predict. The y value is only that column.\\n\",\n    \"x_train = train.drop(predict_col, axis=1).values\\n\",\n    \"y_train = train[[predict_col]].values\\n\",\n    \"\\n\",\n    \"x_test = test.drop(predict_col, axis=1).values\\n\",\n    \"y_test = test[[predict_col]].values\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"DecisionTreeClassifier(class_weight=None, criterion='gini', max_depth=None,\\n\",\n       \"            max_features=None, max_leaf_nodes=None,\\n\",\n       \"            min_impurity_decrease=0.0, min_impurity_split=None,\\n\",\n       \"            min_samples_leaf=1, min_samples_split=2,\\n\",\n       \"            min_weight_fraction_leaf=0.0, presort=False, random_state=None,\\n\",\n       \"            splitter='best')\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Fit a decision tree to the training data only\\n\",\n    \"dt = tree.DecisionTreeClassifier()\\n\",\n    \"dt.fit(x_train,y_train)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.99704142011834318\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# What percentage did it predict right on the training data?\\n\",\n    \"y_train_pred = dt.predict(x_train)\\n\",\n    \"metrics.accuracy_score(y_train, y_train_pred)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.54482758620689653\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# What percentage did it predict right on the test data?\\n\",\n    \"y_test_pred = dt.predict(x_test)\\n\",\n    \"metrics.accuracy_score(y_test, y_test_pred)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Predicted -1</th>\\n\",\n       \"      <th>Predicted 0</th>\\n\",\n       \"      <th>Predicted 1</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True -1</th>\\n\",\n       \"      <td>108</td>\\n\",\n       \"      <td>53</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True 0</th>\\n\",\n       \"      <td>48</td>\\n\",\n       \"      <td>47</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True 1</th>\\n\",\n       \"      <td>10</td>\\n\",\n       \"      <td>7</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"         Predicted -1  Predicted 0  Predicted 1\\n\",\n       \"True -1           108           53            8\\n\",\n       \"True 0             48           47            6\\n\",\n       \"True 1             10            7            3\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# What mistakes did it make?\\n\",\n    \"pd.DataFrame(metrics.confusion_matrix(y_test, y_test_pred), \\n\",\n    \"             columns=['Predicted -1','Predicted 0','Predicted 1'],\\n\",\n    \"             index=['True -1', 'True 0', 'True 1'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Random Forest: Improving accuracy with a better classifier\\n\",\n    \"\\n\",\n    \"Sometimes improving accuracy is very difficult. You might just not have a very predictable problem! But we can often do better than just a simple decision tree, by using many trees. This is a \\\"random forest,\\\" and for our purposes it's just a drop-in replacement for the classifier.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.ensemble import RandomForestClassifier\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"RandomForestClassifier(bootstrap=True, class_weight=None, criterion='gini',\\n\",\n       \"            max_depth=None, max_features='auto', max_leaf_nodes=None,\\n\",\n       \"            min_impurity_decrease=0.0, min_impurity_split=None,\\n\",\n       \"            min_samples_leaf=1, min_samples_split=2,\\n\",\n       \"            min_weight_fraction_leaf=0.0, n_estimators=10, n_jobs=1,\\n\",\n       \"            oob_score=False, random_state=None, verbose=0,\\n\",\n       \"            warm_start=False)\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"rf = RandomForestClassifier()\\n\",\n    \"rf.fit(x_train,y_train.ravel())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.58620689655172409\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# What percentage did it predict right on the test data?\\n\",\n    \"y_test_pred = rf.predict(x_test)\\n\",\n    \"metrics.accuracy_score(y_test, y_test_pred)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Predicted -1</th>\\n\",\n       \"      <th>Predicted 0</th>\\n\",\n       \"      <th>Predicted 1</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True -1</th>\\n\",\n       \"      <td>136</td>\\n\",\n       \"      <td>33</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True 0</th>\\n\",\n       \"      <td>67</td>\\n\",\n       \"      <td>34</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True 1</th>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>11</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"         Predicted -1  Predicted 0  Predicted 1\\n\",\n       \"True -1           136           33            0\\n\",\n       \"True 0             67           34            0\\n\",\n       \"True 1              9           11            0\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# What mistakes did it make?\\n\",\n    \"pd.DataFrame(metrics.confusion_matrix(y_test, y_test_pred), \\n\",\n    \"             columns=['Predicted -1','Predicted 0','Predicted 1'],\\n\",\n    \"             index=['True -1', 'True 0', 'True 1'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Binary classification metrics\\n\",\n    \"In this section we'll train a basic classifier on our favorite Titantic data, and then calculate some accuracy metrics for a binary predictor where there are only two outcomes: true and false. We'll be using these metrics over and over again in our upcoming discussions of algorithmic accountability.\\n\",\n    \"\\n\",\n    \"For your reference, Wikipedia has an [amazing chart](https://en.wikipedia.org/wiki/Confusion_matrix) of the various things you can calculate from a binary confusion matrix.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# load titanic.csv once more\\n\",\n    \"ti = pd.read_csv('titanic.csv')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# recode the pclass and gender variables so they are numeric\\n\",\n    \"ti.pclass = ti.pclass.replace({'1st':1, '2nd':2, '3rd':3})\\n\",\n    \"ti['female'] = ti.gender.replace({'male':0, 'female':1})\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Set aside a third of the data for testing.\\n\",\n    \"ti_train, ti_test = train_test_split(ti, test_size=0.3, random_state=100)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"DecisionTreeClassifier(class_weight=None, criterion='gini', max_depth=None,\\n\",\n       \"            max_features=None, max_leaf_nodes=None,\\n\",\n       \"            min_impurity_decrease=0.0, min_impurity_split=None,\\n\",\n       \"            min_samples_leaf=1, min_samples_split=2,\\n\",\n       \"            min_weight_fraction_leaf=0.0, presort=False, random_state=None,\\n\",\n       \"            splitter='best')\"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Set up x and y variables and train a decision tree on the pclass and sex features, to predict survived\\n\",\n    \"feature_columns = ['pclass','female']\\n\",\n    \"ti_x = ti_train[feature_columns].values\\n\",\n    \"ti_y = ti_train[['survived']].values\\n\",\n    \"\\n\",\n    \"dt = tree.DecisionTreeClassifier()\\n\",\n    \"dt.fit(ti_x,ti_y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create ti_test and ti_test values, and use the classifier to predict yti_test_pred\\n\",\n    \"ti_x_test = ti_test[feature_columns].values\\n\",\n    \"ti_y_test = ti_test[['survived']].values\\n\",\n    \"ti_y_test_pred = dt.predict(ti_x_test)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Predicted 0</th>\\n\",\n       \"      <th>Predicted 1</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True 0</th>\\n\",\n       \"      <td>255</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True 1</th>\\n\",\n       \"      <td>65</td>\\n\",\n       \"      <td>72</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"        Predicted 0  Predicted 1\\n\",\n       \"True 0          255            2\\n\",\n       \"True 1           65           72\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Print out the confusion matrix for the classifier. Use the DataFrame trick we saw in class to label the axes.\\n\",\n    \"pd.DataFrame(metrics.confusion_matrix(ti_y_test, ti_y_test_pred), \\n\",\n    \"             columns=['Predicted 0','Predicted 1'],\\n\",\n    \"             index=['True 0', 'True 1'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 42,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Ok! What are the number of true positives, true negatives, false positives, and false negatives?\\n\",\n    \"TP = 72\\n\",\n    \"TN = 255\\n\",\n    \"FP = 2\\n\",\n    \"FN = 65\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.8299492385786802\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using only the varaibles TP,TN,FP,FN, calculate and print the overall accuracy\\n\",\n    \"accuracy = (TP+TN)/(TP+TN+FP+FN)\\n\",\n    \"accuracy\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.82994923857868019\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Check that we have the calculation right by comparing to metrics.accuracy_score\\n\",\n    \"metrics.accuracy_score(ti_y_test, ti_y_test_pred)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.007782101167315175\"\n      ]\n     },\n     \"execution_count\": 45,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using only the varaibles TP,TN,FP,FN, calculate and print the false positive rate and the false negative rate\\n\",\n    \"FPR = FP/(FP+TN)\\n\",\n    \"FPR\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.4744525547445255\"\n      ]\n     },\n     \"execution_count\": 46,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"FNR = FN/(FN+TP)\\n\",\n    \"FNR\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.972972972972973\"\n      ]\n     },\n     \"execution_count\": 47,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Now compute and print the precision aka positive predictive value, again from these four variables.\\n\",\n    \"precision = TP/(TP+FP)\\n\",\n    \"precision\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-4/week-4-1-supervised-learning-homework.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Class 4-1 homework: Simple supervised learning\\n\",\n    \"\\n\",\n    \"For this assignment you will use a decision tree to figure out which type of grape was used to make each wine, starting from an analysis of 13 different aspects of chemical composition. \\n\",\n    \"\\n\",\n    \"This is a classic machine learning test data set, originally from [here](https://archive.ics.uci.edu/ml/datasets/wine). I've edited it to remove a space in front of each column name, though!\\n\",\n    \"\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"from sklearn import tree\\n\",\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from pandas.plotting import scatter_matrix\\n\",\n    \"from sklearn.model_selection import train_test_split\\n\",\n    \"from sklearn import metrics\\n\",\n    \"%matplotlib inline\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 1: Using a decision tree to figure out which wine is which\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Load in wine.csv and take a look at it. We will predict the variable \\\"wine_cultivar\\\" \\n\",\n    \"# This variable represents the type of grape: Shiraz, merlot, pinot, etc.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# First let's get an idea of the structure of this data.\\n\",\n    \"# Use scatter_matrix to create a plot of the first few variables, using wine_cultivar as the color.\\n\",\n    \"scatter_matrix(df[['Alcohol','Malic_acid','Ash']],c=df.wine_cultivar)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Create test and training sets\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Split off a random fifth of this data to use for testing. How many rows examples are in each set?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Train a decision tree\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a list of the column names of the features. This is every column except the answer we are predicting.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Fit a decision tree to the training data\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# If you got graphviz to install correctly, draw a picture of the tree here\\n\",\n    \"from sklearn.tree import export_graphviz\\n\",\n    \"import graphviz\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# How well does this tree do on the training data? \\n\",\n    \"# Compute the predicted wine_cultivar, and use this to print out the accuracy and confusion matrix\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Evaluate the decision tree\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Predict wine_cultivar on the test data. What is the accuracy and confusion matrix on the test data?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 2: Binary classification metrics\\n\",\n    \"In this section we'll train a basic classifier on our favorite Titantic data, and then calculate some accuracy metrics for a binary predictor that we will be using over and over again in our upcoming discussion of algorithmic accountability.\\n\",\n    \"\\n\",\n    \"Most of the code for this section is copied from the solution to Homework 3.2. This assignment is just to make sure you understand how to calculate the various accuracy metrics at the end.\\n\",\n    \"\\n\",\n    \"For your reference, Wikipedia has an [amazing chart](https://en.wikipedia.org/wiki/Confusion_matrix) of the various things you can calculate from a binary confusion matrix.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# load titanic.csv once more\\n\",\n    \"ti = pd.read_csv('titanic.csv')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# recode the pclass and gender variables so they are numeric\\n\",\n    \"ti.pclass = ti.pclass.replace({'1st':1, '2nd':2, '3rd':3})\\n\",\n    \"ti['female'] = ti.gender.replace({'male':0, 'female':1})\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Set aside a third of the data for testing.\\n\",\n    \"# (Set random_state to some number to ensure we get the same split each time, \\n\",\n    \"# so everyone's answers will be the same and we can mark this easily.)\\n\",\n    \"ti_train, ti_test = train_test_split(ti, test_size=0.3, random_state=42)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Set up x and y variables and train a decision tree on the pclass and sex features, to predict survived\\n\",\n    \"feature_columns = ['pclass','female']\\n\",\n    \"ti_x = ti_train[feature_columns].values\\n\",\n    \"ti_y = ti_train[['survived']].values\\n\",\n    \"\\n\",\n    \"dt = tree.DecisionTreeClassifier()\\n\",\n    \"dt.fit(ti_x,ti_y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create ti_test and ti_test values, and use the classifier to predict yti_test_pred\\n\",\n    \"ti_x_test = ti_test[feature_columns].values\\n\",\n    \"ti_y_test = ti_test[['survived']].values\\n\",\n    \"ti_y_test_pred = dt.predict(ti_x_test)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Print out the confusion matrix for the classifier. Use the DataFrame trick we saw in class to label the axes.\\n\",\n    \"pd.DataFrame(metrics.confusion_matrix(ti_y_test, ti_y_test_pred), \\n\",\n    \"             columns=['Predicted 0','Predicted 1'],\\n\",\n    \"             index=['True 0', 'True 1'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Ok! What are the number of true positives, true negatives, false positives, and false negatives?\\n\",\n    \"TP = \\n\",\n    \"TN = \\n\",\n    \"FP = \\n\",\n    \"FN = \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Using only the varaibles TP,TN,FP,FN, calculate and print the overall accuracy\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Check that you have your calculation right by comparing to metrics.accuracy_score\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Using only the varaibles TP,TN,FP,FN, calculate and print the false positive rate and the false negative rate\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Now compute and print the precision aka positive predictive value, again from these four variables.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Explain what precision means, in words that an average reader could understand. Also explain what this particular precision value means.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"(Your answer here)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Bonus: Logistic regression classifier on the wine data\\n\",\n    \"Fit a logistic regression to the same wine data. How well does it do?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Fit a LogisticRegression model to the wine data (x_train, y_trin)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# How well does logistic regression do on the training data? Print the accuracy and confusion matrix\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# How well does logistic regression do on the test data (x_test, y_test)? Print the accuracy and confusion matrix\\n\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-4/week-4-2-feature-selection-class.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Class 4-2: Feature selection\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"from sklearn import tree\\n\",\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from pandas.plotting import scatter_matrix\\n\",\n    \"from sklearn.model_selection import train_test_split\\n\",\n    \"from sklearn import metrics\\n\",\n    \"%matplotlib inline\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"In this class we're going to learn more about setting up problems for machine learning. The actual `fit()` call is the easy part; most of the work of applying learning machine learning is usually setting up the data.\\n\",\n    \"\\n\",\n    \"Our first task today will be trying to figure out when a plane is likely to be late. We'll be using\\n\",\n    \" a data set of arrivals at JFK in 2015\\n\",\n    \" \\n\",\n    \"Then we'll build a classifer very similar to one that was used at the New York Times to categorize occupation descriptions in campaign finance data.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1. Guessing late flights\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(45648, 21)\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# load flight data\\n\",\n    \"fl = pd.read_csv('ontime_reports_may_2015_ny.csv')\\n\",\n    \"fl.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>YEAR</th>\\n\",\n       \"      <th>MONTH</th>\\n\",\n       \"      <th>DAY_OF_MONTH</th>\\n\",\n       \"      <th>CARRIER</th>\\n\",\n       \"      <th>FL_NUM</th>\\n\",\n       \"      <th>ORIGIN</th>\\n\",\n       \"      <th>DEST</th>\\n\",\n       \"      <th>DEP_DELAY</th>\\n\",\n       \"      <th>ARR_DELAY</th>\\n\",\n       \"      <th>CANCELLED</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>DIVERTED</th>\\n\",\n       \"      <th>ACTUAL_ELAPSED_TIME</th>\\n\",\n       \"      <th>AIR_TIME</th>\\n\",\n       \"      <th>DISTANCE</th>\\n\",\n       \"      <th>CARRIER_DELAY</th>\\n\",\n       \"      <th>WEATHER_DELAY</th>\\n\",\n       \"      <th>NAS_DELAY</th>\\n\",\n       \"      <th>SECURITY_DELAY</th>\\n\",\n       \"      <th>LATE_AIRCRAFT_DELAY</th>\\n\",\n       \"      <th>Unnamed: 20</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>2015</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>AA</td>\\n\",\n       \"      <td>44</td>\\n\",\n       \"      <td>LAS</td>\\n\",\n       \"      <td>JFK</td>\\n\",\n       \"      <td>-6.0</td>\\n\",\n       \"      <td>-17.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>294.0</td>\\n\",\n       \"      <td>273.0</td>\\n\",\n       \"      <td>2248.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>2015</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>AA</td>\\n\",\n       \"      <td>44</td>\\n\",\n       \"      <td>LAS</td>\\n\",\n       \"      <td>JFK</td>\\n\",\n       \"      <td>-8.0</td>\\n\",\n       \"      <td>-14.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>299.0</td>\\n\",\n       \"      <td>280.0</td>\\n\",\n       \"      <td>2248.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>2015</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>AA</td>\\n\",\n       \"      <td>44</td>\\n\",\n       \"      <td>LAS</td>\\n\",\n       \"      <td>JFK</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>-11.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>294.0</td>\\n\",\n       \"      <td>274.0</td>\\n\",\n       \"      <td>2248.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>2015</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>AA</td>\\n\",\n       \"      <td>44</td>\\n\",\n       \"      <td>LAS</td>\\n\",\n       \"      <td>JFK</td>\\n\",\n       \"      <td>-11.0</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>320.0</td>\\n\",\n       \"      <td>275.0</td>\\n\",\n       \"      <td>2248.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>2015</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>AA</td>\\n\",\n       \"      <td>44</td>\\n\",\n       \"      <td>LAS</td>\\n\",\n       \"      <td>JFK</td>\\n\",\n       \"      <td>-4.0</td>\\n\",\n       \"      <td>-18.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>291.0</td>\\n\",\n       \"      <td>270.0</td>\\n\",\n       \"      <td>2248.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 21 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   YEAR  MONTH  DAY_OF_MONTH CARRIER  FL_NUM ORIGIN DEST  DEP_DELAY  \\\\\\n\",\n       \"0  2015      5             1      AA      44    LAS  JFK       -6.0   \\n\",\n       \"1  2015      5             2      AA      44    LAS  JFK       -8.0   \\n\",\n       \"2  2015      5             3      AA      44    LAS  JFK        0.0   \\n\",\n       \"3  2015      5             4      AA      44    LAS  JFK      -11.0   \\n\",\n       \"4  2015      5             5      AA      44    LAS  JFK       -4.0   \\n\",\n       \"\\n\",\n       \"   ARR_DELAY  CANCELLED     ...      DIVERTED  ACTUAL_ELAPSED_TIME  AIR_TIME  \\\\\\n\",\n       \"0      -17.0        0.0     ...           0.0                294.0     273.0   \\n\",\n       \"1      -14.0        0.0     ...           0.0                299.0     280.0   \\n\",\n       \"2      -11.0        0.0     ...           0.0                294.0     274.0   \\n\",\n       \"3        4.0        0.0     ...           0.0                320.0     275.0   \\n\",\n       \"4      -18.0        0.0     ...           0.0                291.0     270.0   \\n\",\n       \"\\n\",\n       \"   DISTANCE  CARRIER_DELAY  WEATHER_DELAY  NAS_DELAY  SECURITY_DELAY  \\\\\\n\",\n       \"0    2248.0            NaN            NaN        NaN             NaN   \\n\",\n       \"1    2248.0            NaN            NaN        NaN             NaN   \\n\",\n       \"2    2248.0            NaN            NaN        NaN             NaN   \\n\",\n       \"3    2248.0            NaN            NaN        NaN             NaN   \\n\",\n       \"4    2248.0            NaN            NaN        NaN             NaN   \\n\",\n       \"\\n\",\n       \"   LATE_AIRCRAFT_DELAY  Unnamed: 20  \\n\",\n       \"0                  NaN          NaN  \\n\",\n       \"1                  NaN          NaN  \\n\",\n       \"2                  NaN          NaN  \\n\",\n       \"3                  NaN          NaN  \\n\",\n       \"4                  NaN          NaN  \\n\",\n       \"\\n\",\n       \"[5 rows x 21 columns]\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# take a look\\n\",\n    \"fl.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Index(['YEAR', 'MONTH', 'DAY_OF_MONTH', 'CARRIER', 'FL_NUM', 'ORIGIN', 'DEST',\\n\",\n       \"       'DEP_DELAY', 'ARR_DELAY', 'CANCELLED', 'CANCELLATION_CODE', 'DIVERTED',\\n\",\n       \"       'ACTUAL_ELAPSED_TIME', 'AIR_TIME', 'DISTANCE', 'CARRIER_DELAY',\\n\",\n       \"       'WEATHER_DELAY', 'NAS_DELAY', 'SECURITY_DELAY', 'LATE_AIRCRAFT_DELAY',\\n\",\n       \"       'Unnamed: 20'],\\n\",\n       \"      dtype='object')\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# what are the columns?\\n\",\n    \"fl.columns\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>YEAR</th>\\n\",\n       \"      <th>MONTH</th>\\n\",\n       \"      <th>DAY_OF_MONTH</th>\\n\",\n       \"      <th>FL_NUM</th>\\n\",\n       \"      <th>DEP_DELAY</th>\\n\",\n       \"      <th>ARR_DELAY</th>\\n\",\n       \"      <th>CANCELLED</th>\\n\",\n       \"      <th>DIVERTED</th>\\n\",\n       \"      <th>ACTUAL_ELAPSED_TIME</th>\\n\",\n       \"      <th>AIR_TIME</th>\\n\",\n       \"      <th>DISTANCE</th>\\n\",\n       \"      <th>CARRIER_DELAY</th>\\n\",\n       \"      <th>WEATHER_DELAY</th>\\n\",\n       \"      <th>NAS_DELAY</th>\\n\",\n       \"      <th>SECURITY_DELAY</th>\\n\",\n       \"      <th>LATE_AIRCRAFT_DELAY</th>\\n\",\n       \"      <th>Unnamed: 20</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>count</th>\\n\",\n       \"      <td>45648.0</td>\\n\",\n       \"      <td>45648.0</td>\\n\",\n       \"      <td>45648.000000</td>\\n\",\n       \"      <td>45648.000000</td>\\n\",\n       \"      <td>44920.000000</td>\\n\",\n       \"      <td>44703.000000</td>\\n\",\n       \"      <td>45648.000000</td>\\n\",\n       \"      <td>45648.000000</td>\\n\",\n       \"      <td>44703.000000</td>\\n\",\n       \"      <td>44703.000000</td>\\n\",\n       \"      <td>45648.000000</td>\\n\",\n       \"      <td>7854.000000</td>\\n\",\n       \"      <td>7854.000000</td>\\n\",\n       \"      <td>7854.000000</td>\\n\",\n       \"      <td>7854.000000</td>\\n\",\n       \"      <td>7854.000000</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>mean</th>\\n\",\n       \"      <td>2015.0</td>\\n\",\n       \"      <td>5.0</td>\\n\",\n       \"      <td>15.945759</td>\\n\",\n       \"      <td>1696.717885</td>\\n\",\n       \"      <td>10.901158</td>\\n\",\n       \"      <td>2.456099</td>\\n\",\n       \"      <td>0.016912</td>\\n\",\n       \"      <td>0.003790</td>\\n\",\n       \"      <td>167.442856</td>\\n\",\n       \"      <td>139.886853</td>\\n\",\n       \"      <td>1019.913819</td>\\n\",\n       \"      <td>18.123631</td>\\n\",\n       \"      <td>3.029157</td>\\n\",\n       \"      <td>25.238350</td>\\n\",\n       \"      <td>0.061879</td>\\n\",\n       \"      <td>26.114464</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>std</th>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>8.893316</td>\\n\",\n       \"      <td>1422.585661</td>\\n\",\n       \"      <td>43.352321</td>\\n\",\n       \"      <td>46.814900</td>\\n\",\n       \"      <td>0.128943</td>\\n\",\n       \"      <td>0.061446</td>\\n\",\n       \"      <td>88.119647</td>\\n\",\n       \"      <td>85.685890</td>\\n\",\n       \"      <td>710.691183</td>\\n\",\n       \"      <td>51.011949</td>\\n\",\n       \"      <td>20.737081</td>\\n\",\n       \"      <td>48.335216</td>\\n\",\n       \"      <td>1.564925</td>\\n\",\n       \"      <td>50.348603</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>min</th>\\n\",\n       \"      <td>2015.0</td>\\n\",\n       \"      <td>5.0</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>-28.000000</td>\\n\",\n       \"      <td>-69.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>43.000000</td>\\n\",\n       \"      <td>25.000000</td>\\n\",\n       \"      <td>96.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>25%</th>\\n\",\n       \"      <td>2015.0</td>\\n\",\n       \"      <td>5.0</td>\\n\",\n       \"      <td>8.000000</td>\\n\",\n       \"      <td>507.000000</td>\\n\",\n       \"      <td>-5.000000</td>\\n\",\n       \"      <td>-19.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>104.000000</td>\\n\",\n       \"      <td>77.000000</td>\\n\",\n       \"      <td>502.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>50%</th>\\n\",\n       \"      <td>2015.0</td>\\n\",\n       \"      <td>5.0</td>\\n\",\n       \"      <td>16.000000</td>\\n\",\n       \"      <td>1289.000000</td>\\n\",\n       \"      <td>-2.000000</td>\\n\",\n       \"      <td>-9.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>149.000000</td>\\n\",\n       \"      <td>122.000000</td>\\n\",\n       \"      <td>828.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>6.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>75%</th>\\n\",\n       \"      <td>2015.0</td>\\n\",\n       \"      <td>5.0</td>\\n\",\n       \"      <td>24.000000</td>\\n\",\n       \"      <td>2404.000000</td>\\n\",\n       \"      <td>6.000000</td>\\n\",\n       \"      <td>5.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>199.000000</td>\\n\",\n       \"      <td>168.000000</td>\\n\",\n       \"      <td>1183.000000</td>\\n\",\n       \"      <td>17.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>28.000000</td>\\n\",\n       \"      <td>0.000000</td>\\n\",\n       \"      <td>31.000000</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>max</th>\\n\",\n       \"      <td>2015.0</td>\\n\",\n       \"      <td>5.0</td>\\n\",\n       \"      <td>31.000000</td>\\n\",\n       \"      <td>6520.000000</td>\\n\",\n       \"      <td>1324.000000</td>\\n\",\n       \"      <td>1318.000000</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>1.000000</td>\\n\",\n       \"      <td>702.000000</td>\\n\",\n       \"      <td>648.000000</td>\\n\",\n       \"      <td>4983.000000</td>\\n\",\n       \"      <td>1318.000000</td>\\n\",\n       \"      <td>732.000000</td>\\n\",\n       \"      <td>676.000000</td>\\n\",\n       \"      <td>85.000000</td>\\n\",\n       \"      <td>846.000000</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"          YEAR    MONTH  DAY_OF_MONTH        FL_NUM     DEP_DELAY  \\\\\\n\",\n       \"count  45648.0  45648.0  45648.000000  45648.000000  44920.000000   \\n\",\n       \"mean    2015.0      5.0     15.945759   1696.717885     10.901158   \\n\",\n       \"std        0.0      0.0      8.893316   1422.585661     43.352321   \\n\",\n       \"min     2015.0      5.0      1.000000      1.000000    -28.000000   \\n\",\n       \"25%     2015.0      5.0      8.000000    507.000000     -5.000000   \\n\",\n       \"50%     2015.0      5.0     16.000000   1289.000000     -2.000000   \\n\",\n       \"75%     2015.0      5.0     24.000000   2404.000000      6.000000   \\n\",\n       \"max     2015.0      5.0     31.000000   6520.000000   1324.000000   \\n\",\n       \"\\n\",\n       \"          ARR_DELAY     CANCELLED      DIVERTED  ACTUAL_ELAPSED_TIME  \\\\\\n\",\n       \"count  44703.000000  45648.000000  45648.000000         44703.000000   \\n\",\n       \"mean       2.456099      0.016912      0.003790           167.442856   \\n\",\n       \"std       46.814900      0.128943      0.061446            88.119647   \\n\",\n       \"min      -69.000000      0.000000      0.000000            43.000000   \\n\",\n       \"25%      -19.000000      0.000000      0.000000           104.000000   \\n\",\n       \"50%       -9.000000      0.000000      0.000000           149.000000   \\n\",\n       \"75%        5.000000      0.000000      0.000000           199.000000   \\n\",\n       \"max     1318.000000      1.000000      1.000000           702.000000   \\n\",\n       \"\\n\",\n       \"           AIR_TIME      DISTANCE  CARRIER_DELAY  WEATHER_DELAY    NAS_DELAY  \\\\\\n\",\n       \"count  44703.000000  45648.000000    7854.000000    7854.000000  7854.000000   \\n\",\n       \"mean     139.886853   1019.913819      18.123631       3.029157    25.238350   \\n\",\n       \"std       85.685890    710.691183      51.011949      20.737081    48.335216   \\n\",\n       \"min       25.000000     96.000000       0.000000       0.000000     0.000000   \\n\",\n       \"25%       77.000000    502.000000       0.000000       0.000000     0.000000   \\n\",\n       \"50%      122.000000    828.000000       0.000000       0.000000     6.000000   \\n\",\n       \"75%      168.000000   1183.000000      17.000000       0.000000    28.000000   \\n\",\n       \"max      648.000000   4983.000000    1318.000000     732.000000   676.000000   \\n\",\n       \"\\n\",\n       \"       SECURITY_DELAY  LATE_AIRCRAFT_DELAY  Unnamed: 20  \\n\",\n       \"count     7854.000000          7854.000000          0.0  \\n\",\n       \"mean         0.061879            26.114464          NaN  \\n\",\n       \"std          1.564925            50.348603          NaN  \\n\",\n       \"min          0.000000             0.000000          NaN  \\n\",\n       \"25%          0.000000             0.000000          NaN  \\n\",\n       \"50%          0.000000             0.000000          NaN  \\n\",\n       \"75%          0.000000            31.000000          NaN  \\n\",\n       \"max         85.000000           846.000000          NaN  \"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# distribution of each column\\n\",\n    \"fl.describe()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x11bebf4a8>\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Let's look at the column we'll try to predict\\n\",\n    \"fl.ARR_DELAY.hist(bins=50)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"So what makes planes delayed? How would we guess, given all other information, whether the plane will be on time? We can look at various factors to try to find out, including which airline was flying and where they were going.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"CARRIER\\n\",\n       \"B6   -12.0\\n\",\n       \"AA   -10.0\\n\",\n       \"DL   -10.0\\n\",\n       \"MQ    -8.0\\n\",\n       \"UA    -8.0\\n\",\n       \"WN    -8.0\\n\",\n       \"EV    -7.0\\n\",\n       \"OO    -6.0\\n\",\n       \"US    -6.0\\n\",\n       \"F9    -4.5\\n\",\n       \"VX    -4.0\\n\",\n       \"NK    -2.0\\n\",\n       \"HA     1.0\\n\",\n       \"Name: ARR_DELAY, dtype: float64\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(fl.groupby('CARRIER').median()).sort_values('ARR_DELAY')['ARR_DELAY']\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"ORIGIN\\n\",\n       \"STT   -19.5\\n\",\n       \"EWR   -18.0\\n\",\n       \"SRQ   -18.0\\n\",\n       \"SJU   -18.0\\n\",\n       \"IAD   -17.0\\n\",\n       \"BTV   -17.0\\n\",\n       \"SAN   -16.5\\n\",\n       \"PWM   -16.5\\n\",\n       \"PSE   -16.0\\n\",\n       \"MSY   -15.0\\n\",\n       \"BQN   -15.0\\n\",\n       \"MKE   -14.0\\n\",\n       \"SAT   -13.5\\n\",\n       \"SLC   -13.0\\n\",\n       \"BGR   -13.0\\n\",\n       \"LAX   -13.0\\n\",\n       \"PDX   -13.0\\n\",\n       \"SYR   -13.0\\n\",\n       \"DEN   -13.0\\n\",\n       \"LGB   -12.0\\n\",\n       \"SEA   -12.0\\n\",\n       \"FLL   -12.0\\n\",\n       \"JAX   -12.0\\n\",\n       \"ISP   -12.0\\n\",\n       \"ALB   -12.0\\n\",\n       \"OMA   -12.0\\n\",\n       \"BUF   -12.0\\n\",\n       \"JFK   -12.0\\n\",\n       \"HPN   -11.0\\n\",\n       \"CHS   -11.0\\n\",\n       \"       ... \\n\",\n       \"CMH    -7.0\\n\",\n       \"ATL    -7.0\\n\",\n       \"MCI    -7.0\\n\",\n       \"BOS    -7.0\\n\",\n       \"PHX    -6.5\\n\",\n       \"GRR    -6.5\\n\",\n       \"RIC    -6.5\\n\",\n       \"STL    -6.0\\n\",\n       \"RNO    -6.0\\n\",\n       \"ELM    -6.0\\n\",\n       \"MDW    -6.0\\n\",\n       \"RDU    -6.0\\n\",\n       \"MIA    -6.0\\n\",\n       \"CAE    -4.5\\n\",\n       \"DTW    -4.0\\n\",\n       \"IAH    -4.0\\n\",\n       \"DFW    -4.0\\n\",\n       \"GSO    -4.0\\n\",\n       \"ORF    -3.0\\n\",\n       \"SDF    -3.0\\n\",\n       \"HOU    -2.0\\n\",\n       \"BNA    -2.0\\n\",\n       \"BWI    -2.0\\n\",\n       \"CLT    -2.0\\n\",\n       \"DAY    -1.5\\n\",\n       \"MYR    -1.5\\n\",\n       \"PIT     1.0\\n\",\n       \"CHO     3.5\\n\",\n       \"HNL     4.0\\n\",\n       \"DAL     8.0\\n\",\n       \"Name: ARR_DELAY, Length: 92, dtype: float64\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(fl.groupby('ORIGIN').median()).sort_values('ARR_DELAY')['ARR_DELAY']\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The first surprise is that, overall, it seems most flights arrive early!\\n\",\n    \"\\n\",\n    \"But there does seem to be information here -- some airports tend to be delayed a lot more than others. Of course, many other variables will be predictive. \\n\",\n    \"\\n\",\n    \"Of course, we should expect that the departure delay correlates strongly with the arrival delay.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.collections.PathCollection at 0x11c354160>\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.scatter(fl.DEP_DELAY, fl.ARR_DELAY)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Encoding the columns\\n\",\n    \"\\n\",\n    \"We want to use a decision tree to predict whether the plane will be delayed. Before we can do that, we're going to frame the problem a little more specifically.\\n\",\n    \"\\n\",\n    \"- We want to predict: will the plane have an ARR_DELAY greater than 0, a binary variable?\\n\",\n    \"- From data: Everything we would know before the plane takes off. So, not the other DELAY variables, CANCELLED and DIVERTED, or ACTUAL_ELAPSED_TIME.\\n\",\n    \"\\n\",\n    \"The first problem is that we have a bunch of categorical varaibles that need to be turned into numerical variables. This means the first step is some data cleaning.\\n\",\n    \"\\n\",\n    \"Meanwhile the output we want to predict, `ARR_DELAY`, is numerical not categorical. To use a classifier, we have to guess... classes. So to start with, let's divide the flights into delayed and not delayed.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0    0\\n\",\n       \"1    0\\n\",\n       \"2    0\\n\",\n       \"3    1\\n\",\n       \"4    0\\n\",\n       \"Name: ARR_DELAY, dtype: int64\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Predict only whether the arrival was >0 minutes late\\n\",\n    \"fl_output = fl['ARR_DELAY'].apply(lambda x: 1 if x>0 else 0 )\\n\",\n    \"fl_output.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Keep only variables we know before the flight leaves. We'll start with the variables that are already numeric\\n\",\n    \"fl_input = fl[['YEAR', 'MONTH', 'DAY_OF_MONTH', 'AIR_TIME', 'DISTANCE']]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"LGA    9428\\n\",\n       \"JFK    8880\\n\",\n       \"ORD    1837\\n\",\n       \"BUF    1675\\n\",\n       \"ATL    1603\\n\",\n       \"Name: ORIGIN, dtype: int64\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# But what about the 'CARRIER', 'ORIGIN', and 'DEST' columns? They're not numeric, or even ordered \\n\",\n    \"fl['ORIGIN'].value_counts().head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>mycat</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>b</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>b</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>a</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>c</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>a</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>5</th>\\n\",\n       \"      <td>b</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"  mycat\\n\",\n       \"0     b\\n\",\n       \"1     b\\n\",\n       \"2     a\\n\",\n       \"3     c\\n\",\n       \"4     a\\n\",\n       \"5     b\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# To turn categorical variables into numeric variables, we create one binary \\\"dummy\\\" variable for each category\\n\",\n    \"# To demonstrate how this works:\\n\",\n    \"df = pd.DataFrame({'mycat':['b','b','a','c','a','b']})\\n\",\n    \"df\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>category_a</th>\\n\",\n       \"      <th>category_b</th>\\n\",\n       \"      <th>category_c</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>5</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   category_a  category_b  category_c\\n\",\n       \"0           0           1           0\\n\",\n       \"1           0           1           0\\n\",\n       \"2           1           0           0\\n\",\n       \"3           0           0           1\\n\",\n       \"4           1           0           0\\n\",\n       \"5           0           1           0\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pd.get_dummies(df['mycat'],prefix='category')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>YEAR</th>\\n\",\n       \"      <th>MONTH</th>\\n\",\n       \"      <th>DAY_OF_MONTH</th>\\n\",\n       \"      <th>AIR_TIME</th>\\n\",\n       \"      <th>DISTANCE</th>\\n\",\n       \"      <th>CARRIER_AA</th>\\n\",\n       \"      <th>CARRIER_B6</th>\\n\",\n       \"      <th>CARRIER_DL</th>\\n\",\n       \"      <th>CARRIER_EV</th>\\n\",\n       \"      <th>CARRIER_F9</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>FL_NUM_6074</th>\\n\",\n       \"      <th>FL_NUM_6082</th>\\n\",\n       \"      <th>FL_NUM_6119</th>\\n\",\n       \"      <th>FL_NUM_6132</th>\\n\",\n       \"      <th>FL_NUM_6153</th>\\n\",\n       \"      <th>FL_NUM_6229</th>\\n\",\n       \"      <th>FL_NUM_6257</th>\\n\",\n       \"      <th>FL_NUM_6275</th>\\n\",\n       \"      <th>FL_NUM_6482</th>\\n\",\n       \"      <th>FL_NUM_6520</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>2015</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>273.0</td>\\n\",\n       \"      <td>2248.0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>2015</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>280.0</td>\\n\",\n       \"      <td>2248.0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>2015</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>274.0</td>\\n\",\n       \"      <td>2248.0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>2015</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>275.0</td>\\n\",\n       \"      <td>2248.0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>2015</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>270.0</td>\\n\",\n       \"      <td>2248.0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 2120 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   YEAR  MONTH  DAY_OF_MONTH  AIR_TIME  DISTANCE  CARRIER_AA  CARRIER_B6  \\\\\\n\",\n       \"0  2015      5             1     273.0    2248.0           1           0   \\n\",\n       \"1  2015      5             2     280.0    2248.0           1           0   \\n\",\n       \"2  2015      5             3     274.0    2248.0           1           0   \\n\",\n       \"3  2015      5             4     275.0    2248.0           1           0   \\n\",\n       \"4  2015      5             5     270.0    2248.0           1           0   \\n\",\n       \"\\n\",\n       \"   CARRIER_DL  CARRIER_EV  CARRIER_F9     ...       FL_NUM_6074  FL_NUM_6082  \\\\\\n\",\n       \"0           0           0           0     ...                 0            0   \\n\",\n       \"1           0           0           0     ...                 0            0   \\n\",\n       \"2           0           0           0     ...                 0            0   \\n\",\n       \"3           0           0           0     ...                 0            0   \\n\",\n       \"4           0           0           0     ...                 0            0   \\n\",\n       \"\\n\",\n       \"   FL_NUM_6119  FL_NUM_6132  FL_NUM_6153  FL_NUM_6229  FL_NUM_6257  \\\\\\n\",\n       \"0            0            0            0            0            0   \\n\",\n       \"1            0            0            0            0            0   \\n\",\n       \"2            0            0            0            0            0   \\n\",\n       \"3            0            0            0            0            0   \\n\",\n       \"4            0            0            0            0            0   \\n\",\n       \"\\n\",\n       \"   FL_NUM_6275  FL_NUM_6482  FL_NUM_6520  \\n\",\n       \"0            0            0            0  \\n\",\n       \"1            0            0            0  \\n\",\n       \"2            0            0            0  \\n\",\n       \"3            0            0            0  \\n\",\n       \"4            0            0            0  \\n\",\n       \"\\n\",\n       \"[5 rows x 2120 columns]\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Now we have to create a series of dummy variables, \\n\",\n    \"# one dummy variable column for each value of each of the origina categorical columns\\n\",\n    \"def add_dummy_vars_for_col(df, colname):\\n\",\n    \"    dummy_vars = pd.get_dummies(fl[colname], prefix=colname)\\n\",\n    \"    return pd.concat([df, dummy_vars], axis=1)\\n\",\n    \"\\n\",\n    \"fl_input = add_dummy_vars_for_col(fl_input, 'CARRIER')\\n\",\n    \"fl_input = add_dummy_vars_for_col(fl_input, 'ORIGIN')\\n\",\n    \"fl_input = add_dummy_vars_for_col(fl_input, 'DEST')\\n\",\n    \"\\n\",\n    \"# Flight number is a number... but it's really categorical.\\n\",\n    \"# Flight 45 is not more closely related to flight 60 than flight 200.\\n\",\n    \"fl_input = add_dummy_vars_for_col(fl_input, 'FL_NUM')\\n\",\n    \"\\n\",\n    \"fl_input.head()\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(45648, 2120)\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"fl_input.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Fitting and testing the tree\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Put the features and the target column back together so we can split them together into training and test sets\\n\",\n    \"feature_cols = list(fl_input.columns)\\n\",\n    \"target_col = ['ARR_DELAY']\\n\",\n    \"features_and_target = pd.concat([fl_input,fl_output],axis=1)\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(45648, 2121)\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Finally, need to lose any row that have nulls. Let's keep track of how many\\n\",\n    \"features_and_target.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"features_and_target = features_and_target.dropna(how='any')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(44703, 2121)\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"features_and_target.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"train, test = train_test_split(features_and_target, test_size=0.2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"DecisionTreeClassifier(class_weight=None, criterion='gini', max_depth=None,\\n\",\n       \"            max_features=None, max_leaf_nodes=None,\\n\",\n       \"            min_impurity_decrease=0.0, min_impurity_split=None,\\n\",\n       \"            min_samples_leaf=1, min_samples_split=2,\\n\",\n       \"            min_weight_fraction_leaf=0.0, presort=False, random_state=None,\\n\",\n       \"            splitter='best')\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Fit a decision tree to the test data\\n\",\n    \"x_train = train[feature_cols].values\\n\",\n    \"y_train = train[target_col].values\\n\",\n    \"\\n\",\n    \"dt = tree.DecisionTreeClassifier()\\n\",\n    \"dt.fit(x_train,y_train)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.0\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Let's see how well it did on the training\\n\",\n    \"y_train_pred = dt.predict(x_train)\\n\",\n    \"metrics.accuracy_score(y_train_pred, y_train)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.69377027178167994\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Ok, but seriously, on data it's never seen before?\\n\",\n    \"x_test = test[feature_cols].values\\n\",\n    \"y_test = test[target_col].values\\n\",\n    \"y_test_pred = dt.predict(x_test)\\n\",\n    \"metrics.accuracy_score(y_test_pred, y_test)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[5042, 1557],\\n\",\n       \"       [1181, 1161]])\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"metrics.confusion_matrix(y_test_pred, y_test)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There's a better way of testing the accuracy of a classifier: more reliable and fewer lines of code. The idea is to break the original data into K pieces. Then we build K different classifiers, each of which uses one of the K pieces as test data, while the other K-1 pieces become the training data. Then we average the accuracy from each run. \\n\",\n    \"\\n\",\n    \"This is called \\\"cross validation\\\", and there's a function to do it automatically.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.model_selection import cross_val_score\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 0.69567163,  0.68963203,  0.46281177,  0.54239374,  0.57237136])\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"my_classifier = tree.DecisionTreeClassifier()\\n\",\n    \"scores = cross_val_score(my_classifier, \\n\",\n    \"                         features_and_target[feature_cols].values, \\n\",\n    \"                         features_and_target[target_col].values,\\n\",\n    \"                         cv=5)\\n\",\n    \"scores\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.59257610480037293\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"scores.mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 2. Classifying text\\n\",\n    \"\\n\",\n    \"So far, we've classified data points which have binary, numerical, or categorical values. What about classifying text? To do that, first we have to turn the text into vectors. Yup, it's document vector time once more!\\n\",\n    \"\\n\",\n    \"This code was adapted from a New York Times project to standardize campaign finance data to enable new types of analyses. Specifically, it tries to categorize a free-form occupation/employer string into a discrete job category (for example, the strings \\\"LAWYER\\\" and \\\"ATTORNEY\\\" would both be categorized under \\\"LAW\\\"). \\n\",\n    \"\\n\",\n    \"This classifier uses one-letter category codes (e.g. \\\"L\\\" for \\\"law\\\") which are specifically designed for analyzing campaign finance donations, and are maintained by the Center for Responsive Politics. Full documentation [here](https://www.opensecrets.org/resources/ftm/ch12p1.php).\\n\",\n    \"\\n\",\n    \"This section of the notebook was adapted from the [2015 version](https://github.com/datapolitan/lede_algorithms/blob/master/class2_1/EDA_Review.ipynb) of this course by Chase Davis and Richard Dunks, with grateful permission.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import csv, re, string\\n\",\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"from sklearn.feature_extraction.text import CountVectorizer\\n\",\n    \"from sklearn.pipeline import Pipeline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Some basic setup for data-cleaning purposes\\n\",\n    \"punctuation = re.compile('[' + re.escape(string.punctuation) + ']' )\\n\",\n    \"valid_occupation_codes = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'T', 'X', 'Z']\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Title</th>\\n\",\n       \"      <th>Employer</th>\\n\",\n       \"      <th>Code</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>Owner</td>\\n\",\n       \"      <td>First Priority Title Llc</td>\\n\",\n       \"      <td>F4300</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>SENIOR PARTNER</td>\\n\",\n       \"      <td>ARES MANAGEMENT</td>\\n\",\n       \"      <td>Z9500</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>CEO</td>\\n\",\n       \"      <td>HB AGENCY</td>\\n\",\n       \"      <td>Z9500</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>AKERS &amp; ARMEY INSURANCE</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>F3100</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>OWNER</td>\\n\",\n       \"      <td>OPTIONCARE</td>\\n\",\n       \"      <td>Y4000</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                     Title                  Employer   Code\\n\",\n       \"0                    Owner  First Priority Title Llc  F4300\\n\",\n       \"1           SENIOR PARTNER           ARES MANAGEMENT  Z9500\\n\",\n       \"2                      CEO                 HB AGENCY  Z9500\\n\",\n       \"3  AKERS & ARMEY INSURANCE                       NaN  F3100\\n\",\n       \"4                    OWNER                OPTIONCARE  Y4000\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Load the training data. The goal is to predict the first letter of the occupation code\\n\",\n    \"df = pd.read_csv('category-training.csv',names=['Title','Employer','Code'])\\n\",\n    \"df.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Title</th>\\n\",\n       \"      <th>Employer</th>\\n\",\n       \"      <th>Code</th>\\n\",\n       \"      <th>text</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>Owner</td>\\n\",\n       \"      <td>First Priority Title Llc</td>\\n\",\n       \"      <td>F4300</td>\\n\",\n       \"      <td>Owner First Priority Title Llc</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>SENIOR PARTNER</td>\\n\",\n       \"      <td>ARES MANAGEMENT</td>\\n\",\n       \"      <td>Z9500</td>\\n\",\n       \"      <td>SENIOR PARTNER ARES MANAGEMENT</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>CEO</td>\\n\",\n       \"      <td>HB AGENCY</td>\\n\",\n       \"      <td>Z9500</td>\\n\",\n       \"      <td>CEO HB AGENCY</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>AKERS &amp; ARMEY INSURANCE</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>F3100</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>OWNER</td>\\n\",\n       \"      <td>OPTIONCARE</td>\\n\",\n       \"      <td>Y4000</td>\\n\",\n       \"      <td>OWNER OPTIONCARE</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>5</th>\\n\",\n       \"      <td>VI</td>\\n\",\n       \"      <td>NATIONAL COUNCIL OF JEWISH WOMEN</td>\\n\",\n       \"      <td>J5100</td>\\n\",\n       \"      <td>VI NATIONAL COUNCIL OF JEWISH WOMEN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>6</th>\\n\",\n       \"      <td>AESTHETIC &amp; RECONSTRUCTIV</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>H1000</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>MINER</td>\\n\",\n       \"      <td>MCCOY ELKHORN COAL CORPORATION</td>\\n\",\n       \"      <td>E1210</td>\\n\",\n       \"      <td>MINER MCCOY ELKHORN COAL CORPORATION</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>8</th>\\n\",\n       \"      <td>VICE PRESIDENT</td>\\n\",\n       \"      <td>BAYSTATE HEALTH</td>\\n\",\n       \"      <td>H0000</td>\\n\",\n       \"      <td>VICE PRESIDENT BAYSTATE HEALTH</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9</th>\\n\",\n       \"      <td>CHIEF EXEC OFF</td>\\n\",\n       \"      <td>LARTA INST/CHIEF EXEC OFF</td>\\n\",\n       \"      <td>Y4000</td>\\n\",\n       \"      <td>CHIEF EXEC OFF LARTA INST CHIEF EXEC OFF</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                       Title                          Employer   Code  \\\\\\n\",\n       \"0                      Owner          First Priority Title Llc  F4300   \\n\",\n       \"1             SENIOR PARTNER                   ARES MANAGEMENT  Z9500   \\n\",\n       \"2                        CEO                         HB AGENCY  Z9500   \\n\",\n       \"3    AKERS & ARMEY INSURANCE                               NaN  F3100   \\n\",\n       \"4                      OWNER                        OPTIONCARE  Y4000   \\n\",\n       \"5                         VI  NATIONAL COUNCIL OF JEWISH WOMEN  J5100   \\n\",\n       \"6  AESTHETIC & RECONSTRUCTIV                               NaN  H1000   \\n\",\n       \"7                      MINER    MCCOY ELKHORN COAL CORPORATION  E1210   \\n\",\n       \"8             VICE PRESIDENT                   BAYSTATE HEALTH  H0000   \\n\",\n       \"9             CHIEF EXEC OFF         LARTA INST/CHIEF EXEC OFF  Y4000   \\n\",\n       \"\\n\",\n       \"                                       text  \\n\",\n       \"0            Owner First Priority Title Llc  \\n\",\n       \"1            SENIOR PARTNER ARES MANAGEMENT  \\n\",\n       \"2                             CEO HB AGENCY  \\n\",\n       \"3                                       NaN  \\n\",\n       \"4                          OWNER OPTIONCARE  \\n\",\n       \"5       VI NATIONAL COUNCIL OF JEWISH WOMEN  \\n\",\n       \"6                                       NaN  \\n\",\n       \"7      MINER MCCOY ELKHORN COAL CORPORATION  \\n\",\n       \"8            VICE PRESIDENT BAYSTATE HEALTH  \\n\",\n       \"9  CHIEF EXEC OFF LARTA INST CHIEF EXEC OFF  \"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Concatenate the occupation and employer strings together and remove punctuation. \\n\",\n    \"# Both together will be used in prediction\\n\",\n    \"df['text'] = df['Title'] + ' ' + df['Employer']\\n\",\n    \"df['text'] = df['text'].str.replace(punctuation, ' ')  # replace punctuation with spaces to preserve word boundaries\\n\",\n    \"df.head(10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Take only the first letter of the occupation code as the prediction target\\n\",\n    \"df['target'] = df['Code'].str[0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Title</th>\\n\",\n       \"      <th>Employer</th>\\n\",\n       \"      <th>Code</th>\\n\",\n       \"      <th>text</th>\\n\",\n       \"      <th>target</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>Owner</td>\\n\",\n       \"      <td>First Priority Title Llc</td>\\n\",\n       \"      <td>F4300</td>\\n\",\n       \"      <td>Owner First Priority Title Llc</td>\\n\",\n       \"      <td>F</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>SENIOR PARTNER</td>\\n\",\n       \"      <td>ARES MANAGEMENT</td>\\n\",\n       \"      <td>Z9500</td>\\n\",\n       \"      <td>SENIOR PARTNER ARES MANAGEMENT</td>\\n\",\n       \"      <td>Z</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>CEO</td>\\n\",\n       \"      <td>HB AGENCY</td>\\n\",\n       \"      <td>Z9500</td>\\n\",\n       \"      <td>CEO HB AGENCY</td>\\n\",\n       \"      <td>Z</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>AKERS &amp; ARMEY INSURANCE</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>F3100</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>F</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>OWNER</td>\\n\",\n       \"      <td>OPTIONCARE</td>\\n\",\n       \"      <td>Y4000</td>\\n\",\n       \"      <td>OWNER OPTIONCARE</td>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                     Title                  Employer   Code  \\\\\\n\",\n       \"0                    Owner  First Priority Title Llc  F4300   \\n\",\n       \"1           SENIOR PARTNER           ARES MANAGEMENT  Z9500   \\n\",\n       \"2                      CEO                 HB AGENCY  Z9500   \\n\",\n       \"3  AKERS & ARMEY INSURANCE                       NaN  F3100   \\n\",\n       \"4                    OWNER                OPTIONCARE  Y4000   \\n\",\n       \"\\n\",\n       \"                             text target  \\n\",\n       \"0  Owner First Priority Title Llc      F  \\n\",\n       \"1  SENIOR PARTNER ARES MANAGEMENT      Z  \\n\",\n       \"2                   CEO HB AGENCY      Z  \\n\",\n       \"3                             NaN      F  \\n\",\n       \"4                OWNER OPTIONCARE      Y  \"\n      ]\n     },\n     \"execution_count\": 34,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"df.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"24190\"\n      ]\n     },\n     \"execution_count\": 35,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# We still have lots of empty text fields though\\n\",\n    \"df.text.isnull().sum()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"75810\"\n      ]\n     },\n     \"execution_count\": 36,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"df.dropna(how='any', inplace=True)\\n\",\n    \"len(df)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"20000\"\n      ]\n     },\n     \"execution_count\": 37,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# My notebook keeps crashing, so I'm going to take only 20,000 rows\\n\",\n    \"df = df.sample(20000).reset_index(drop=True)\\n\",\n    \"len(df)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Document vectors, again\\n\",\n    \"We now have our text and the training labels. From here we need to turn that text into features... remember document vectors? But fun fact: the CountVectorizer (and TfIdfVectorizer) don't actually need a separate tokenizer. It's super simple to do quick and dirty document vectors.\\n\",\n    \"\\n\",\n    \"We're also going to use the `min_df=2` option which means: throw out any word that doesn't appear in at least two documents. This will cut down the number of features by a factor of three, and generally speed up this slow notebook.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.feature_extraction.text import CountVectorizer\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 55,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Make our training data into vectors!\\n\",\n    \"vectorizer = CountVectorizer(stop_words='english', min_df=2)\\n\",\n    \"matrix = vectorizer.fit_transform(df.text)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 56,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"['10',\\n\",\n       \" '11',\\n\",\n       \" '13',\\n\",\n       \" '1st',\\n\",\n       \" '2000',\\n\",\n       \" '2004',\\n\",\n       \" '2012',\\n\",\n       \" '20th',\\n\",\n       \" '21',\\n\",\n       \" '21st',\\n\",\n       \" '22',\\n\",\n       \" '2nd',\\n\",\n       \" '360',\\n\",\n       \" '3m',\\n\",\n       \" '3rd',\\n\",\n       \" '47',\\n\",\n       \" '800',\\n\",\n       \" '95',\\n\",\n       \" 'aaa',\\n\",\n       \" 'aaron']\"\n      ]\n     },\n     \"execution_count\": 56,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vectorizer.get_feature_names()[:20]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 57,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>10</th>\\n\",\n       \"      <th>11</th>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <th>1st</th>\\n\",\n       \"      <th>2000</th>\\n\",\n       \"      <th>2004</th>\\n\",\n       \"      <th>2012</th>\\n\",\n       \"      <th>20th</th>\\n\",\n       \"      <th>21</th>\\n\",\n       \"      <th>21st</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>zachry</th>\\n\",\n       \"      <th>zack</th>\\n\",\n       \"      <th>zc</th>\\n\",\n       \"      <th>zetlin</th>\\n\",\n       \"      <th>ziegler</th>\\n\",\n       \"      <th>zimmerman</th>\\n\",\n       \"      <th>zook</th>\\n\",\n       \"      <th>zuckerman</th>\\n\",\n       \"      <th>zurich</th>\\n\",\n       \"      <th>zwirn</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 5393 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   10  11  13  1st  2000  2004  2012  20th  21  21st  ...    zachry  zack  zc  \\\\\\n\",\n       \"0   0   0   0    0     0     0     0     0   0     0  ...         0     0   0   \\n\",\n       \"1   0   0   0    0     0     0     0     0   0     0  ...         0     0   0   \\n\",\n       \"2   0   0   0    0     0     0     0     0   0     0  ...         0     0   0   \\n\",\n       \"3   0   0   0    0     0     0     0     0   0     0  ...         0     0   0   \\n\",\n       \"4   0   0   0    0     0     0     0     0   0     0  ...         0     0   0   \\n\",\n       \"\\n\",\n       \"   zetlin  ziegler  zimmerman  zook  zuckerman  zurich  zwirn  \\n\",\n       \"0       0        0          0     0          0       0      0  \\n\",\n       \"1       0        0          0     0          0       0      0  \\n\",\n       \"2       0        0          0     0          0       0      0  \\n\",\n       \"3       0        0          0     0          0       0      0  \\n\",\n       \"4       0        0          0     0          0       0      0  \\n\",\n       \"\\n\",\n       \"[5 rows x 5393 columns]\"\n      ]\n     },\n     \"execution_count\": 57,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Here are the actual document vectors. Because the \\\"documents\\\" are so short, almost every element is zero.\\n\",\n    \"vectors = pd.DataFrame(matrix.toarray(), columns=vectorizer.get_feature_names())\\n\",\n    \"vectors.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Using a decision tree for text classification\\n\",\n    \"This goes pretty much as we've done it before. Really most of the work is data wrangling.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 58,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>target</th>\\n\",\n       \"      <th>10</th>\\n\",\n       \"      <th>11</th>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <th>1st</th>\\n\",\n       \"      <th>2000</th>\\n\",\n       \"      <th>2004</th>\\n\",\n       \"      <th>2012</th>\\n\",\n       \"      <th>20th</th>\\n\",\n       \"      <th>21</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>zachry</th>\\n\",\n       \"      <th>zack</th>\\n\",\n       \"      <th>zc</th>\\n\",\n       \"      <th>zetlin</th>\\n\",\n       \"      <th>ziegler</th>\\n\",\n       \"      <th>zimmerman</th>\\n\",\n       \"      <th>zook</th>\\n\",\n       \"      <th>zuckerman</th>\\n\",\n       \"      <th>zurich</th>\\n\",\n       \"      <th>zwirn</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>X</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>B</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>Y</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>X</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 5394 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"  target  10  11  13  1st  2000  2004  2012  20th  21  ...    zachry  zack  \\\\\\n\",\n       \"0      X   0   0   0    0     0     0     0     0   0  ...         0     0   \\n\",\n       \"1      Y   0   0   0    0     0     0     0     0   0  ...         0     0   \\n\",\n       \"2      B   0   0   0    0     0     0     0     0   0  ...         0     0   \\n\",\n       \"3      Y   0   0   0    0     0     0     0     0   0  ...         0     0   \\n\",\n       \"4      X   0   0   0    0     0     0     0     0   0  ...         0     0   \\n\",\n       \"\\n\",\n       \"   zc  zetlin  ziegler  zimmerman  zook  zuckerman  zurich  zwirn  \\n\",\n       \"0   0       0        0          0     0          0       0      0  \\n\",\n       \"1   0       0        0          0     0          0       0      0  \\n\",\n       \"2   0       0        0          0     0          0       0      0  \\n\",\n       \"3   0       0        0          0     0          0       0      0  \\n\",\n       \"4   0       0        0          0     0          0       0      0  \\n\",\n       \"\\n\",\n       \"[5 rows x 5394 columns]\"\n      ]\n     },\n     \"execution_count\": 58,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Glue the occupation codes back together with the document vectors, into one dataframe\\n\",\n    \"features_and_target = pd.concat([df.target, vectors],axis=1)\\n\",\n    \"features_and_target.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 59,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Split off some test data\\n\",\n    \"train, test = train_test_split(features_and_target, test_size=0.2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"DecisionTreeClassifier(class_weight=None, criterion='gini', max_depth=None,\\n\",\n       \"            max_features=None, max_leaf_nodes=None,\\n\",\n       \"            min_impurity_decrease=0.0, min_impurity_split=None,\\n\",\n       \"            min_samples_leaf=1, min_samples_split=2,\\n\",\n       \"            min_weight_fraction_leaf=0.0, presort=False, random_state=None,\\n\",\n       \"            splitter='best')\"\n      ]\n     },\n     \"execution_count\": 60,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Build a decision tree on the training data\\n\",\n    \"# Normally we would use \\n\",\n    \"#  train.drop('target', axis=1).values\\n\",\n    \"#  train[['target']].values \\n\",\n    \"# But 'target' is also a feature name, because it appears in the bill titles! So we just use direct numeric indexing \\n\",\n    \"x_train = train.iloc[:,1:].values\\n\",\n    \"y_train = train.iloc[:,0].values\\n\",\n    \"\\n\",\n    \"dt = tree.DecisionTreeClassifier()\\n\",\n    \"dt.fit(x_train,y_train)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.45650000000000002\"\n      ]\n     },\n     \"execution_count\": 61,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# We're only going to test how well it did out-of-sample, because the in-sample result will always be nearly perfect\\n\",\n    \"x_test = test.iloc[:,1:].values\\n\",\n    \"y_test = test.iloc[:,0].values\\n\",\n    \"y_test_pred = dt.predict(x_test)\\n\",\n    \"metrics.accuracy_score(y_test_pred, y_test)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is really not very good accuracy, less than 50%. To see if we can do better, first let's look at the confusion matrix to see where it got confused.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 62,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[ 26,   0,   1,   0,   0,   4,   5,   0,   4,   1,   0,   2,   0,\\n\",\n       \"          0,  10,   0],\\n\",\n       \"       [  1,  77,   4,   0,   5,   6,   4,   0,   5,   0,   1,   0,   1,\\n\",\n       \"          3,  28,   4],\\n\",\n       \"       [  1,   6,  50,   4,   2,  11,   9,   6,   8,   2,   0,   2,   3,\\n\",\n       \"          4,  27,   6],\\n\",\n       \"       [  0,   3,   2,   0,   0,   1,   2,   0,   1,   0,   0,   0,   1,\\n\",\n       \"          0,   4,   0],\\n\",\n       \"       [  2,   0,   1,   0,  43,   2,   2,   0,   3,   1,   0,   0,   3,\\n\",\n       \"          0,  13,   2],\\n\",\n       \"       [  2,  10,   5,   0,   6, 289,  17,  17,  35,  11,   1,   4,   7,\\n\",\n       \"          5, 113,  10],\\n\",\n       \"       [  6,   1,   5,   2,   2,  10,  71,   6,  16,   6,   0,   6,   4,\\n\",\n       \"          3,  67,   4],\\n\",\n       \"       [  2,   4,   2,   0,   1,   5,   7, 225,  25,   3,   1,   0,   4,\\n\",\n       \"          4,  58,  17],\\n\",\n       \"       [  3,   2,  11,   0,   1,  26,   6,  15,  19,  10,   1,   3,   3,\\n\",\n       \"          3,  53,   6],\\n\",\n       \"       [  0,   3,   6,   1,   4,   7,   5,   1,  22, 149,   0,   1,   0,\\n\",\n       \"          2,  76,  10],\\n\",\n       \"       [  1,   0,   0,   0,   0,   0,   0,   0,   2,   0,   3,   0,   0,\\n\",\n       \"          2,   3,   0],\\n\",\n       \"       [  0,   2,   3,   1,   2,   5,   3,   1,   1,   0,   1,   9,   1,\\n\",\n       \"          0,  16,   0],\\n\",\n       \"       [  0,   1,   0,   2,   0,   4,   6,   0,   5,   0,   1,   1,  42,\\n\",\n       \"          2,  14,   1],\\n\",\n       \"       [  0,   0,   0,   0,   0,   5,   4,   5,  13,   0,   1,   0,   2,\\n\",\n       \"         89,  35,   5],\\n\",\n       \"       [ 21,  68,  74,  11,  36, 153,  98, 118, 114,  69,  12,  32,  28,\\n\",\n       \"         38, 729,  35],\\n\",\n       \"       [  0,   0,   1,   0,   3,  15,   6,   9,   9,  17,   0,   4,   1,\\n\",\n       \"          5,  28,   5]])\"\n      ]\n     },\n     \"execution_count\": 62,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"metrics.confusion_matrix(y_test_pred, y_test)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Not very helpful. We need to handle our categorical target variable better.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Printing out nice category names\\n\",\n    \"\\n\",\n    \"We are going to build a new classifier, using Pandas categorical types for the target column. This will let us print out a more sensible confusion matrix.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Convert to categorical type\\n\",\n    \"df['target'] = df['target'].astype('category')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0    X\\n\",\n       \"1    Y\\n\",\n       \"2    B\\n\",\n       \"3    Y\\n\",\n       \"4    X\\n\",\n       \"Name: target, dtype: category\\n\",\n       \"Categories (16, object): [A, B, C, D, ..., T, X, Y, Z]\"\n      ]\n     },\n     \"execution_count\": 48,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# If we print it out, it looks like nothing has changed... except the type is now \\\"category\\\"\\n\",\n    \"df.target.head()\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Index(['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'T', 'X',\\n\",\n       \"       'Y', 'Z'],\\n\",\n       \"      dtype='object')\"\n      ]\n     },\n     \"execution_count\": 49,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Pandas has invented numbers for each of our letter codes\\n\",\n    \"df.target.cat.categories\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0    13\\n\",\n       \"1    14\\n\",\n       \"2     1\\n\",\n       \"3    14\\n\",\n       \"4    13\\n\",\n       \"dtype: int8\"\n      ]\n     },\n     \"execution_count\": 50,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# And these numbers are what is actually stored in the column now\\n\",\n    \"df.target.head().cat.codes\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Repeat all of our model building with the training labels in this new type of column\\n\",\n    \"features_and_target = pd.concat([df.target, vectors],axis=1)\\n\",\n    \"train, test = train_test_split(features_and_target, test_size=0.2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 52,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"DecisionTreeClassifier(class_weight=None, criterion='gini', max_depth=None,\\n\",\n       \"            max_features=None, max_leaf_nodes=None,\\n\",\n       \"            min_impurity_decrease=0.0, min_impurity_split=None,\\n\",\n       \"            min_samples_leaf=1, min_samples_split=2,\\n\",\n       \"            min_weight_fraction_leaf=0.0, presort=False, random_state=None,\\n\",\n       \"            splitter='best')\"\n      ]\n     },\n     \"execution_count\": 52,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x_train = train.iloc[:,1:].values\\n\",\n    \"y_train = train.iloc[:,0].values\\n\",\n    \"\\n\",\n    \"dt = tree.DecisionTreeClassifier()\\n\",\n    \"dt.fit(x_train,y_train)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 53,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.43149999999999999\"\n      ]\n     },\n     \"execution_count\": 53,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x_test = test.iloc[:,1:].values\\n\",\n    \"y_test = test.iloc[:,0].values\\n\",\n    \"y_test_pred = dt.predict(x_test)\\n\",\n    \"metrics.accuracy_score(y_test_pred, y_test)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 54,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Guessed A</th>\\n\",\n       \"      <th>Guessed B</th>\\n\",\n       \"      <th>Guessed C</th>\\n\",\n       \"      <th>Guessed D</th>\\n\",\n       \"      <th>Guessed E</th>\\n\",\n       \"      <th>Guessed F</th>\\n\",\n       \"      <th>Guessed G</th>\\n\",\n       \"      <th>Guessed H</th>\\n\",\n       \"      <th>Guessed J</th>\\n\",\n       \"      <th>Guessed K</th>\\n\",\n       \"      <th>Guessed L</th>\\n\",\n       \"      <th>Guessed M</th>\\n\",\n       \"      <th>Guessed T</th>\\n\",\n       \"      <th>Guessed X</th>\\n\",\n       \"      <th>Guessed Y</th>\\n\",\n       \"      <th>Guessed Z</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True A</th>\\n\",\n       \"      <td>25</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>7</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True B</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>65</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>25</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True C</th>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>7</td>\\n\",\n       \"      <td>64</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>14</td>\\n\",\n       \"      <td>16</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>14</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>108</td>\\n\",\n       \"      <td>12</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True D</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True E</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>28</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>12</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True F</th>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>319</td>\\n\",\n       \"      <td>12</td>\\n\",\n       \"      <td>16</td>\\n\",\n       \"      <td>30</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>144</td>\\n\",\n       \"      <td>20</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True G</th>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>12</td>\\n\",\n       \"      <td>13</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>13</td>\\n\",\n       \"      <td>75</td>\\n\",\n       \"      <td>12</td>\\n\",\n       \"      <td>14</td>\\n\",\n       \"      <td>11</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>87</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True H</th>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>268</td>\\n\",\n       \"      <td>21</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"      <td>106</td>\\n\",\n       \"      <td>16</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True J</th>\\n\",\n       \"      <td>11</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>12</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>11</td>\\n\",\n       \"      <td>32</td>\\n\",\n       \"      <td>26</td>\\n\",\n       \"      <td>42</td>\\n\",\n       \"      <td>12</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"      <td>23</td>\\n\",\n       \"      <td>119</td>\\n\",\n       \"      <td>14</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True K</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"      <td>130</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>7</td>\\n\",\n       \"      <td>43</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True L</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>13</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True M</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True T</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>29</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>10</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True X</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>7</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>79</td>\\n\",\n       \"      <td>29</td>\\n\",\n       \"      <td>7</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True Y</th>\\n\",\n       \"      <td>19</td>\\n\",\n       \"      <td>55</td>\\n\",\n       \"      <td>67</td>\\n\",\n       \"      <td>11</td>\\n\",\n       \"      <td>33</td>\\n\",\n       \"      <td>133</td>\\n\",\n       \"      <td>112</td>\\n\",\n       \"      <td>66</td>\\n\",\n       \"      <td>72</td>\\n\",\n       \"      <td>110</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>20</td>\\n\",\n       \"      <td>32</td>\\n\",\n       \"      <td>38</td>\\n\",\n       \"      <td>576</td>\\n\",\n       \"      <td>35</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True Z</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"        Guessed A  Guessed B  Guessed C  Guessed D  Guessed E  Guessed F  \\\\\\n\",\n       \"True A         25          0          0          0          0          3   \\n\",\n       \"True B          0         65          1          1          3          5   \\n\",\n       \"True C          3          7         64          2          4         14   \\n\",\n       \"True D          0          0          2          2          1          0   \\n\",\n       \"True E          2          0          1          0         28          3   \\n\",\n       \"True F          4          8          8          3          9        319   \\n\",\n       \"True G          3         12         13          1          4         13   \\n\",\n       \"True H          3          4          9          0          4          6   \\n\",\n       \"True J         11          6         12          1          5         11   \\n\",\n       \"True K          0          0          3          2          2          9   \\n\",\n       \"True L          0          0          1          0          0          0   \\n\",\n       \"True M          0          0          1          0          0          2   \\n\",\n       \"True T          1          2          4          0          0          1   \\n\",\n       \"True X          0          1          3          1          1          2   \\n\",\n       \"True Y         19         55         67         11         33        133   \\n\",\n       \"True Z          0          1          0          1          0          6   \\n\",\n       \"\\n\",\n       \"        Guessed G  Guessed H  Guessed J  Guessed K  Guessed L  Guessed M  \\\\\\n\",\n       \"True A          8          1          2          1          0          1   \\n\",\n       \"True B          2          2          4          1          0          2   \\n\",\n       \"True C         16          4         14          2          0          4   \\n\",\n       \"True D          0          0          0          0          0          0   \\n\",\n       \"True E          1          2          1          0          0          1   \\n\",\n       \"True F         12         16         30          5          1          9   \\n\",\n       \"True G         75         12         14         11          0          4   \\n\",\n       \"True H          5        268         21          3          1          2   \\n\",\n       \"True J         32         26         42         12          3          1   \\n\",\n       \"True K          3          0          8        130          0          1   \\n\",\n       \"True L          0          0          0          1         13          0   \\n\",\n       \"True M          0          0          0          0          0          8   \\n\",\n       \"True T          5          0          1          1          1          0   \\n\",\n       \"True X          3          3          7          1          3          1   \\n\",\n       \"True Y        112         66         72        110          5         20   \\n\",\n       \"True Z          1          8          5          3          0          1   \\n\",\n       \"\\n\",\n       \"        Guessed T  Guessed X  Guessed Y  Guessed Z  \\n\",\n       \"True A          1          0          7          0  \\n\",\n       \"True B          0          2         25          1  \\n\",\n       \"True C          3          1        108         12  \\n\",\n       \"True D          0          0          0          0  \\n\",\n       \"True E          0          0         12          0  \\n\",\n       \"True F          4          9        144         20  \\n\",\n       \"True G          6          2         87          9  \\n\",\n       \"True H          4          8        106         16  \\n\",\n       \"True J          8         23        119         14  \\n\",\n       \"True K          0          7         43          6  \\n\",\n       \"True L          0          0          3          1  \\n\",\n       \"True M          1          0          5          1  \\n\",\n       \"True T         29          1         10          0  \\n\",\n       \"True X          0         79         29          7  \\n\",\n       \"True Y         32         38        576         35  \\n\",\n       \"True Z          0          4          5          3  \"\n      ]\n     },\n     \"execution_count\": 54,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Now that we have the category names, we can make a much prettier confusion matrix\\n\",\n    \"truecats = \\\"True \\\" + df.target.cat.categories\\n\",\n    \"predcats = \\\"Guessed \\\" + df.target.cat.categories\\n\",\n    \"pd.DataFrame(metrics.confusion_matrix(y_test_pred, y_test, labels=df.target.cat.categories), columns=predcats, index=truecats)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-4/week-4-2-text-classification-homework.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Week 4-2: Text classification\\n\",\n    \"\\n\",\n    \"For this assignment you will build a classifier that figures out the main topics of a bill, from its title.\\n\",\n    \"\\n\",\n    \"Adapted from an [assignment in the 2015 course](https://github.com/datapolitan/lede_algorithms/blob/master/class5_1/bill_classifier.py) by  Richard Dunks and Chase Davis, with permission.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"from sklearn.feature_extraction.text import CountVectorizer\\n\",\n    \"from sklearn.ensemble import RandomForestClassifier\\n\",\n    \"from sklearn import tree\\n\",\n    \"from sklearn.model_selection import train_test_split\\n\",\n    \"from sklearn import metrics\\n\",\n    \"%matplotlib inline\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1. Create document vectors\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Load up bills.csv This is a list of thousands of bill titles from the California legislature, \\n\",\n    \"# and their subject classifications\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Vectorize these suckers with the CountVectorizer, removing stopwords\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# How many different features do we have?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# What words correspond to the first 20 features?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"## 2. Build a classifier\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Make the 'topic' column categorical, so we can print a pretty confusion matrix later\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Glue the topics back together with the document vectors, into one dataframe\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Now split 20% of combined data into a test set\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Build a decision tree on the training data\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Evaluate the tree on the test data and print out the accuracy\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Now print out a nicely labelled confusion natrix\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"What's a case -- an entry in thie matrix -- where the classifier made a particularly large number of errors? Can you guess why?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Looking at this matrix, 7 documents were guessed \\\"Budget, Spending, and Taxes\\\" when they're actually \\\"Housing and Property.\\\" It's possible these documents discussed property taxes, which caused them to be incorrectly classified.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Bonus: try it on new data\\n\",\n    \"How do we apply this to other bill titles? Ones that weren't originally in the test or training set?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Here are some other bills\\n\",\n    \"new_titles = [\\n\",\n    \"    \\\"Public postsecondary education: executive officer compensation.\\\",\\n\",\n    \"    \\\"An act to add Section 236.3 to the Education code, related to the pricing of college textbooks.\\\",\\n\",\n    \"    \\\"Political Reform Act of 1974: campaign disclosures.\\\",\\n\",\n    \"    \\\"An act to add Section 236.3 to the Penal Code, relating to human trafficking.\\\"]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"Your assighnment is to vectorize these titles, and predict their subject using the classifier we built.\\n\",\n    \"The challenge here is to get these new documents encoded with the same features as the classifier expects. That is, we could just run them through `CountVectorizer` but then get_feature_names() would give us a different set of coluns, because the vocabulary of these documents is different.\\n\",\n    \"\\n\",\n    \"The solution is to use the `vocabulary` parameter of `CountVectorizer` like this:\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Make a new vectorizer that maps the same words to the same feature positions as the old vectorizer\\n\",\n    \"new_vectorizer = CountVectorizer(stop_words='english', vocabulary=vectorizer.get_feature_names())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Now use this new_vectorizer to fit the new docs\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Predict the topics of the new documents, using our pre-existing classifier\\n\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-4/wine.csv",
    "content": "wine_cultivar,Alcohol,Malic_acid,Ash,Alcalinity_of_ash,Magnesium,Total_phenols,Flavanoids,Nonflavanoid_phenols,Proanthocyanins,Color_intensity,Hue,OD280_OD315_of_diluted_wines,Proline\n1,14.23,1.71,2.43,15.6,127,2.8,3.06,.28,2.29,5.64,1.04,3.92,1065\n1,13.2,1.78,2.14,11.2,100,2.65,2.76,.26,1.28,4.38,1.05,3.4,1050\n1,13.16,2.36,2.67,18.6,101,2.8,3.24,.3,2.81,5.68,1.03,3.17,1185\n1,14.37,1.95,2.5,16.8,113,3.85,3.49,.24,2.18,7.8,.86,3.45,1480\n1,13.24,2.59,2.87,21,118,2.8,2.69,.39,1.82,4.32,1.04,2.93,735\n1,14.2,1.76,2.45,15.2,112,3.27,3.39,.34,1.97,6.75,1.05,2.85,1450\n1,14.39,1.87,2.45,14.6,96,2.5,2.52,.3,1.98,5.25,1.02,3.58,1290\n1,14.06,2.15,2.61,17.6,121,2.6,2.51,.31,1.25,5.05,1.06,3.58,1295\n1,14.83,1.64,2.17,14,97,2.8,2.98,.29,1.98,5.2,1.08,2.85,1045\n1,13.86,1.35,2.27,16,98,2.98,3.15,.22,1.85,7.22,1.01,3.55,1045\n1,14.1,2.16,2.3,18,105,2.95,3.32,.22,2.38,5.75,1.25,3.17,1510\n1,14.12,1.48,2.32,16.8,95,2.2,2.43,.26,1.57,5,1.17,2.82,1280\n1,13.75,1.73,2.41,16,89,2.6,2.76,.29,1.81,5.6,1.15,2.9,1320\n1,14.75,1.73,2.39,11.4,91,3.1,3.69,.43,2.81,5.4,1.25,2.73,1150\n1,14.38,1.87,2.38,12,102,3.3,3.64,.29,2.96,7.5,1.2,3,1547\n1,13.63,1.81,2.7,17.2,112,2.85,2.91,.3,1.46,7.3,1.28,2.88,1310\n1,14.3,1.92,2.72,20,120,2.8,3.14,.33,1.97,6.2,1.07,2.65,1280\n1,13.83,1.57,2.62,20,115,2.95,3.4,.4,1.72,6.6,1.13,2.57,1130\n1,14.19,1.59,2.48,16.5,108,3.3,3.93,.32,1.86,8.7,1.23,2.82,1680\n1,13.64,3.1,2.56,15.2,116,2.7,3.03,.17,1.66,5.1,.96,3.36,845\n1,14.06,1.63,2.28,16,126,3,3.17,.24,2.1,5.65,1.09,3.71,780\n1,12.93,3.8,2.65,18.6,102,2.41,2.41,.25,1.98,4.5,1.03,3.52,770\n1,13.71,1.86,2.36,16.6,101,2.61,2.88,.27,1.69,3.8,1.11,4,1035\n1,12.85,1.6,2.52,17.8,95,2.48,2.37,.26,1.46,3.93,1.09,3.63,1015\n1,13.5,1.81,2.61,20,96,2.53,2.61,.28,1.66,3.52,1.12,3.82,845\n1,13.05,2.05,3.22,25,124,2.63,2.68,.47,1.92,3.58,1.13,3.2,830\n1,13.39,1.77,2.62,16.1,93,2.85,2.94,.34,1.45,4.8,.92,3.22,1195\n1,13.3,1.72,2.14,17,94,2.4,2.19,.27,1.35,3.95,1.02,2.77,1285\n1,13.87,1.9,2.8,19.4,107,2.95,2.97,.37,1.76,4.5,1.25,3.4,915\n1,14.02,1.68,2.21,16,96,2.65,2.33,.26,1.98,4.7,1.04,3.59,1035\n1,13.73,1.5,2.7,22.5,101,3,3.25,.29,2.38,5.7,1.19,2.71,1285\n1,13.58,1.66,2.36,19.1,106,2.86,3.19,.22,1.95,6.9,1.09,2.88,1515\n1,13.68,1.83,2.36,17.2,104,2.42,2.69,.42,1.97,3.84,1.23,2.87,990\n1,13.76,1.53,2.7,19.5,132,2.95,2.74,.5,1.35,5.4,1.25,3,1235\n1,13.51,1.8,2.65,19,110,2.35,2.53,.29,1.54,4.2,1.1,2.87,1095\n1,13.48,1.81,2.41,20.5,100,2.7,2.98,.26,1.86,5.1,1.04,3.47,920\n1,13.28,1.64,2.84,15.5,110,2.6,2.68,.34,1.36,4.6,1.09,2.78,880\n1,13.05,1.65,2.55,18,98,2.45,2.43,.29,1.44,4.25,1.12,2.51,1105\n1,13.07,1.5,2.1,15.5,98,2.4,2.64,.28,1.37,3.7,1.18,2.69,1020\n1,14.22,3.99,2.51,13.2,128,3,3.04,.2,2.08,5.1,.89,3.53,760\n1,13.56,1.71,2.31,16.2,117,3.15,3.29,.34,2.34,6.13,.95,3.38,795\n1,13.41,3.84,2.12,18.8,90,2.45,2.68,.27,1.48,4.28,.91,3,1035\n1,13.88,1.89,2.59,15,101,3.25,3.56,.17,1.7,5.43,.88,3.56,1095\n1,13.24,3.98,2.29,17.5,103,2.64,2.63,.32,1.66,4.36,.82,3,680\n1,13.05,1.77,2.1,17,107,3,3,.28,2.03,5.04,.88,3.35,885\n1,14.21,4.04,2.44,18.9,111,2.85,2.65,.3,1.25,5.24,.87,3.33,1080\n1,14.38,3.59,2.28,16,102,3.25,3.17,.27,2.19,4.9,1.04,3.44,1065\n1,13.9,1.68,2.12,16,101,3.1,3.39,.21,2.14,6.1,.91,3.33,985\n1,14.1,2.02,2.4,18.8,103,2.75,2.92,.32,2.38,6.2,1.07,2.75,1060\n1,13.94,1.73,2.27,17.4,108,2.88,3.54,.32,2.08,8.90,1.12,3.1,1260\n1,13.05,1.73,2.04,12.4,92,2.72,3.27,.17,2.91,7.2,1.12,2.91,1150\n1,13.83,1.65,2.6,17.2,94,2.45,2.99,.22,2.29,5.6,1.24,3.37,1265\n1,13.82,1.75,2.42,14,111,3.88,3.74,.32,1.87,7.05,1.01,3.26,1190\n1,13.77,1.9,2.68,17.1,115,3,2.79,.39,1.68,6.3,1.13,2.93,1375\n1,13.74,1.67,2.25,16.4,118,2.6,2.9,.21,1.62,5.85,.92,3.2,1060\n1,13.56,1.73,2.46,20.5,116,2.96,2.78,.2,2.45,6.25,.98,3.03,1120\n1,14.22,1.7,2.3,16.3,118,3.2,3,.26,2.03,6.38,.94,3.31,970\n1,13.29,1.97,2.68,16.8,102,3,3.23,.31,1.66,6,1.07,2.84,1270\n1,13.72,1.43,2.5,16.7,108,3.4,3.67,.19,2.04,6.8,.89,2.87,1285\n2,12.37,.94,1.36,10.6,88,1.98,.57,.28,.42,1.95,1.05,1.82,520\n2,12.33,1.1,2.28,16,101,2.05,1.09,.63,.41,3.27,1.25,1.67,680\n2,12.64,1.36,2.02,16.8,100,2.02,1.41,.53,.62,5.75,.98,1.59,450\n2,13.67,1.25,1.92,18,94,2.1,1.79,.32,.73,3.8,1.23,2.46,630\n2,12.37,1.13,2.16,19,87,3.5,3.1,.19,1.87,4.45,1.22,2.87,420\n2,12.17,1.45,2.53,19,104,1.89,1.75,.45,1.03,2.95,1.45,2.23,355\n2,12.37,1.21,2.56,18.1,98,2.42,2.65,.37,2.08,4.6,1.19,2.3,678\n2,13.11,1.01,1.7,15,78,2.98,3.18,.26,2.28,5.3,1.12,3.18,502\n2,12.37,1.17,1.92,19.6,78,2.11,2,.27,1.04,4.68,1.12,3.48,510\n2,13.34,.94,2.36,17,110,2.53,1.3,.55,.42,3.17,1.02,1.93,750\n2,12.21,1.19,1.75,16.8,151,1.85,1.28,.14,2.5,2.85,1.28,3.07,718\n2,12.29,1.61,2.21,20.4,103,1.1,1.02,.37,1.46,3.05,.906,1.82,870\n2,13.86,1.51,2.67,25,86,2.95,2.86,.21,1.87,3.38,1.36,3.16,410\n2,13.49,1.66,2.24,24,87,1.88,1.84,.27,1.03,3.74,.98,2.78,472\n2,12.99,1.67,2.6,30,139,3.3,2.89,.21,1.96,3.35,1.31,3.5,985\n2,11.96,1.09,2.3,21,101,3.38,2.14,.13,1.65,3.21,.99,3.13,886\n2,11.66,1.88,1.92,16,97,1.61,1.57,.34,1.15,3.8,1.23,2.14,428\n2,13.03,.9,1.71,16,86,1.95,2.03,.24,1.46,4.6,1.19,2.48,392\n2,11.84,2.89,2.23,18,112,1.72,1.32,.43,.95,2.65,.96,2.52,500\n2,12.33,.99,1.95,14.8,136,1.9,1.85,.35,2.76,3.4,1.06,2.31,750\n2,12.7,3.87,2.4,23,101,2.83,2.55,.43,1.95,2.57,1.19,3.13,463\n2,12,.92,2,19,86,2.42,2.26,.3,1.43,2.5,1.38,3.12,278\n2,12.72,1.81,2.2,18.8,86,2.2,2.53,.26,1.77,3.9,1.16,3.14,714\n2,12.08,1.13,2.51,24,78,2,1.58,.4,1.4,2.2,1.31,2.72,630\n2,13.05,3.86,2.32,22.5,85,1.65,1.59,.61,1.62,4.8,.84,2.01,515\n2,11.84,.89,2.58,18,94,2.2,2.21,.22,2.35,3.05,.79,3.08,520\n2,12.67,.98,2.24,18,99,2.2,1.94,.3,1.46,2.62,1.23,3.16,450\n2,12.16,1.61,2.31,22.8,90,1.78,1.69,.43,1.56,2.45,1.33,2.26,495\n2,11.65,1.67,2.62,26,88,1.92,1.61,.4,1.34,2.6,1.36,3.21,562\n2,11.64,2.06,2.46,21.6,84,1.95,1.69,.48,1.35,2.8,1,2.75,680\n2,12.08,1.33,2.3,23.6,70,2.2,1.59,.42,1.38,1.74,1.07,3.21,625\n2,12.08,1.83,2.32,18.5,81,1.6,1.5,.52,1.64,2.4,1.08,2.27,480\n2,12,1.51,2.42,22,86,1.45,1.25,.5,1.63,3.6,1.05,2.65,450\n2,12.69,1.53,2.26,20.7,80,1.38,1.46,.58,1.62,3.05,.96,2.06,495\n2,12.29,2.83,2.22,18,88,2.45,2.25,.25,1.99,2.15,1.15,3.3,290\n2,11.62,1.99,2.28,18,98,3.02,2.26,.17,1.35,3.25,1.16,2.96,345\n2,12.47,1.52,2.2,19,162,2.5,2.27,.32,3.28,2.6,1.16,2.63,937\n2,11.81,2.12,2.74,21.5,134,1.6,.99,.14,1.56,2.5,.95,2.26,625\n2,12.29,1.41,1.98,16,85,2.55,2.5,.29,1.77,2.9,1.23,2.74,428\n2,12.37,1.07,2.1,18.5,88,3.52,3.75,.24,1.95,4.5,1.04,2.77,660\n2,12.29,3.17,2.21,18,88,2.85,2.99,.45,2.81,2.3,1.42,2.83,406\n2,12.08,2.08,1.7,17.5,97,2.23,2.17,.26,1.4,3.3,1.27,2.96,710\n2,12.6,1.34,1.9,18.5,88,1.45,1.36,.29,1.35,2.45,1.04,2.77,562\n2,12.34,2.45,2.46,21,98,2.56,2.11,.34,1.31,2.8,.8,3.38,438\n2,11.82,1.72,1.88,19.5,86,2.5,1.64,.37,1.42,2.06,.94,2.44,415\n2,12.51,1.73,1.98,20.5,85,2.2,1.92,.32,1.48,2.94,1.04,3.57,672\n2,12.42,2.55,2.27,22,90,1.68,1.84,.66,1.42,2.7,.86,3.3,315\n2,12.25,1.73,2.12,19,80,1.65,2.03,.37,1.63,3.4,1,3.17,510\n2,12.72,1.75,2.28,22.5,84,1.38,1.76,.48,1.63,3.3,.88,2.42,488\n2,12.22,1.29,1.94,19,92,2.36,2.04,.39,2.08,2.7,.86,3.02,312\n2,11.61,1.35,2.7,20,94,2.74,2.92,.29,2.49,2.65,.96,3.26,680\n2,11.46,3.74,1.82,19.5,107,3.18,2.58,.24,3.58,2.9,.75,2.81,562\n2,12.52,2.43,2.17,21,88,2.55,2.27,.26,1.22,2,.9,2.78,325\n2,11.76,2.68,2.92,20,103,1.75,2.03,.6,1.05,3.8,1.23,2.5,607\n2,11.41,.74,2.5,21,88,2.48,2.01,.42,1.44,3.08,1.1,2.31,434\n2,12.08,1.39,2.5,22.5,84,2.56,2.29,.43,1.04,2.9,.93,3.19,385\n2,11.03,1.51,2.2,21.5,85,2.46,2.17,.52,2.01,1.9,1.71,2.87,407\n2,11.82,1.47,1.99,20.8,86,1.98,1.6,.3,1.53,1.95,.95,3.33,495\n2,12.42,1.61,2.19,22.5,108,2,2.09,.34,1.61,2.06,1.06,2.96,345\n2,12.77,3.43,1.98,16,80,1.63,1.25,.43,.83,3.4,.7,2.12,372\n2,12,3.43,2,19,87,2,1.64,.37,1.87,1.28,.93,3.05,564\n2,11.45,2.4,2.42,20,96,2.9,2.79,.32,1.83,3.25,.8,3.39,625\n2,11.56,2.05,3.23,28.5,119,3.18,5.08,.47,1.87,6,.93,3.69,465\n2,12.42,4.43,2.73,26.5,102,2.2,2.13,.43,1.71,2.08,.92,3.12,365\n2,13.05,5.8,2.13,21.5,86,2.62,2.65,.3,2.01,2.6,.73,3.1,380\n2,11.87,4.31,2.39,21,82,2.86,3.03,.21,2.91,2.8,.75,3.64,380\n2,12.07,2.16,2.17,21,85,2.6,2.65,.37,1.35,2.76,.86,3.28,378\n2,12.43,1.53,2.29,21.5,86,2.74,3.15,.39,1.77,3.94,.69,2.84,352\n2,11.79,2.13,2.78,28.5,92,2.13,2.24,.58,1.76,3,.97,2.44,466\n2,12.37,1.63,2.3,24.5,88,2.22,2.45,.4,1.9,2.12,.89,2.78,342\n2,12.04,4.3,2.38,22,80,2.1,1.75,.42,1.35,2.6,.79,2.57,580\n3,12.86,1.35,2.32,18,122,1.51,1.25,.21,.94,4.1,.76,1.29,630\n3,12.88,2.99,2.4,20,104,1.3,1.22,.24,.83,5.4,.74,1.42,530\n3,12.81,2.31,2.4,24,98,1.15,1.09,.27,.83,5.7,.66,1.36,560\n3,12.7,3.55,2.36,21.5,106,1.7,1.2,.17,.84,5,.78,1.29,600\n3,12.51,1.24,2.25,17.5,85,2,.58,.6,1.25,5.45,.75,1.51,650\n3,12.6,2.46,2.2,18.5,94,1.62,.66,.63,.94,7.1,.73,1.58,695\n3,12.25,4.72,2.54,21,89,1.38,.47,.53,.8,3.85,.75,1.27,720\n3,12.53,5.51,2.64,25,96,1.79,.6,.63,1.1,5,.82,1.69,515\n3,13.49,3.59,2.19,19.5,88,1.62,.48,.58,.88,5.7,.81,1.82,580\n3,12.84,2.96,2.61,24,101,2.32,.6,.53,.81,4.92,.89,2.15,590\n3,12.93,2.81,2.7,21,96,1.54,.5,.53,.75,4.6,.77,2.31,600\n3,13.36,2.56,2.35,20,89,1.4,.5,.37,.64,5.6,.7,2.47,780\n3,13.52,3.17,2.72,23.5,97,1.55,.52,.5,.55,4.35,.89,2.06,520\n3,13.62,4.95,2.35,20,92,2,.8,.47,1.02,4.4,.91,2.05,550\n3,12.25,3.88,2.2,18.5,112,1.38,.78,.29,1.14,8.21,.65,2,855\n3,13.16,3.57,2.15,21,102,1.5,.55,.43,1.3,4,.6,1.68,830\n3,13.88,5.04,2.23,20,80,.98,.34,.4,.68,4.9,.58,1.33,415\n3,12.87,4.61,2.48,21.5,86,1.7,.65,.47,.86,7.65,.54,1.86,625\n3,13.32,3.24,2.38,21.5,92,1.93,.76,.45,1.25,8.42,.55,1.62,650\n3,13.08,3.9,2.36,21.5,113,1.41,1.39,.34,1.14,9.40,.57,1.33,550\n3,13.5,3.12,2.62,24,123,1.4,1.57,.22,1.25,8.60,.59,1.3,500\n3,12.79,2.67,2.48,22,112,1.48,1.36,.24,1.26,10.8,.48,1.47,480\n3,13.11,1.9,2.75,25.5,116,2.2,1.28,.26,1.56,7.1,.61,1.33,425\n3,13.23,3.3,2.28,18.5,98,1.8,.83,.61,1.87,10.52,.56,1.51,675\n3,12.58,1.29,2.1,20,103,1.48,.58,.53,1.4,7.6,.58,1.55,640\n3,13.17,5.19,2.32,22,93,1.74,.63,.61,1.55,7.9,.6,1.48,725\n3,13.84,4.12,2.38,19.5,89,1.8,.83,.48,1.56,9.01,.57,1.64,480\n3,12.45,3.03,2.64,27,97,1.9,.58,.63,1.14,7.5,.67,1.73,880\n3,14.34,1.68,2.7,25,98,2.8,1.31,.53,2.7,13,.57,1.96,660\n3,13.48,1.67,2.64,22.5,89,2.6,1.1,.52,2.29,11.75,.57,1.78,620\n3,12.36,3.83,2.38,21,88,2.3,.92,.5,1.04,7.65,.56,1.58,520\n3,13.69,3.26,2.54,20,107,1.83,.56,.5,.8,5.88,.96,1.82,680\n3,12.85,3.27,2.58,22,106,1.65,.6,.6,.96,5.58,.87,2.11,570\n3,12.96,3.45,2.35,18.5,106,1.39,.7,.4,.94,5.28,.68,1.75,675\n3,13.78,2.76,2.3,22,90,1.35,.68,.41,1.03,9.58,.7,1.68,615\n3,13.73,4.36,2.26,22.5,88,1.28,.47,.52,1.15,6.62,.78,1.75,520\n3,13.45,3.7,2.6,23,111,1.7,.92,.43,1.46,10.68,.85,1.56,695\n3,12.82,3.37,2.3,19.5,88,1.48,.66,.4,.97,10.26,.72,1.75,685\n3,13.58,2.58,2.69,24.5,105,1.55,.84,.39,1.54,8.66,.74,1.8,750\n3,13.4,4.6,2.86,25,112,1.98,.96,.27,1.11,8.5,.67,1.92,630\n3,12.2,3.03,2.32,19,96,1.25,.49,.4,.73,5.5,.66,1.83,510\n3,12.77,2.39,2.28,19.5,86,1.39,.51,.48,.64,9.899999,.57,1.63,470\n3,14.16,2.51,2.48,20,91,1.68,.7,.44,1.24,9.7,.62,1.71,660\n3,13.71,5.65,2.45,20.5,95,1.68,.61,.52,1.06,7.7,.64,1.74,740\n3,13.4,3.91,2.48,23,102,1.8,.75,.43,1.41,7.3,.7,1.56,750\n3,13.27,4.28,2.26,20,120,1.59,.69,.43,1.35,10.2,.59,1.56,835\n3,13.17,2.59,2.37,20,120,1.65,.68,.53,1.46,9.3,.6,1.62,840\n3,14.13,4.1,2.74,24.5,96,2.05,.76,.56,1.35,9.2,.61,1.6,560\n"
  },
  {
    "path": "week-5/compas-scores-two-years-violent.csv",
    "content": "id,name,first,last,compas_screening_date,sex,dob,age,age_cat,race,juv_fel_count,decile_score,juv_misd_count,juv_other_count,priors_count,days_b_screening_arrest,c_jail_in,c_jail_out,c_case_number,c_offense_date,c_arrest_date,c_days_from_compas,c_charge_degree,c_charge_desc,is_recid,r_case_number,r_charge_degree,r_days_from_arrest,r_offense_date,r_charge_desc,r_jail_in,r_jail_out,violent_recid,is_violent_recid,vr_case_number,vr_charge_degree,vr_offense_date,vr_charge_desc,type_of_assessment,decile_score,score_text,screening_date,v_type_of_assessment,v_decile_score,v_score_text,v_screening_date,in_custody,out_custody,priors_count,start,end,event,two_year_recid,two_year_recid\r\n1,miguel hernandez,miguel,hernandez,2013-08-14,Male,1947-04-18,69,Greater than 45,Other,0,1,0,0,0,-1,2013-08-13 06:03:42,2013-08-14 05:41:20,13011352CF10A,2013-08-13,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-14,Risk of Violence,1,Low,2013-08-14,2014-07-07,2014-07-14,0,0,327,0,0,0\r\n3,kevon dixon,kevon,dixon,2013-01-27,Male,1982-01-22,34,25 - 45,African-American,0,3,0,0,0,-1,2013-01-26 03:45:27,2013-02-05 05:36:53,13001275CF10A,2013-01-26,,1,F,Felony Battery w/Prior Convict,1,13009779CF10A,(F3),,2013-07-05,Felony Battery (Dom Strang),,,,1,13009779CF10A,(F3),2013-07-05,Felony Battery (Dom Strang),Risk of Recidivism,3,Low,2013-01-27,Risk of Violence,1,Low,2013-01-27,2013-01-26,2013-02-05,0,9,159,1,1,1\r\n5,marcu brown,marcu,brown,2013-01-13,Male,1993-01-21,23,Less than 25,African-American,0,8,1,0,1,,,,13000570CF10A,2013-01-12,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-13,Risk of Violence,6,Medium,2013-01-13,,,1,0,1174,0,0,0\r\n6,bouthy pierrelouis,bouthy,pierrelouis,2013-03-26,Male,1973-01-22,43,25 - 45,Other,0,1,0,0,2,,,,12014130CF10A,,2013-01-09,76,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-26,Risk of Violence,1,Low,2013-03-26,,,2,0,1102,0,0,0\r\n7,marsha miles,marsha,miles,2013-11-30,Male,1971-08-22,44,25 - 45,Other,0,1,0,0,0,0,2013-11-30 04:50:18,2013-12-01 12:28:56,13022355MM10A,2013-11-30,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-30,Risk of Violence,1,Low,2013-11-30,2013-11-30,2013-12-01,0,1,853,0,0,0\r\n9,steven stewart,steven,stewart,2013-08-30,Male,1973-02-25,43,25 - 45,Other,0,4,0,0,3,-1,2013-08-29 08:55:23,2013-08-30 08:42:13,13012216CF10A,,2013-08-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-30,Risk of Violence,3,Low,2013-08-30,2014-05-22,2014-06-03,3,0,265,0,0,0\r\n10,elizabeth thieme,elizabeth,thieme,2014-03-16,Female,1976-06-03,39,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-15 05:35:34,2014-03-18 04:28:46,14004524MM10A,2014-03-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-18,0,2,747,0,0,0\r\n13,bo bradac,bo,bradac,2013-11-04,Male,1994-06-10,21,Less than 25,Caucasian,0,3,0,0,1,428,2015-01-06 03:55:34,2015-01-07 03:38:44,13000017CF10A,2012-12-31,,308,F,Insurance Fraud,1,15002891MM10A,(M1),0,2015-01-06,Battery,2015-01-06,2015-01-07,,1,15000258CF10A,(F2),2015-01-06,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,3,Low,2013-11-04,Risk of Violence,5,Medium,2013-11-04,2015-01-06,2015-01-07,1,0,428,1,1,1\r\n14,benjamin franc,benjamin,franc,2013-11-26,Male,1988-06-01,27,25 - 45,Caucasian,0,4,0,0,0,-1,2013-11-25 06:31:06,2013-11-26 08:26:57,13016402CF10A,2013-11-25,,1,F,\"Poss 3,4 MDMA (Ecstasy)\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-26,Risk of Violence,4,Low,2013-11-26,2013-11-25,2013-11-26,0,0,857,0,0,0\r\n16,kortney coleman,kortney,coleman,2013-01-01,Female,1978-08-22,37,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-01 03:28:03,2013-01-02 01:12:19,13000053MM10A,2013-01-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-01,Risk of Violence,1,Low,2013-01-01,2013-01-01,2013-01-02,0,1,1186,0,0,0\r\n18,jarrod turbe,jarrod,turbe,2013-10-09,Male,1974-12-02,41,25 - 45,African-American,0,4,0,0,0,-1,2013-10-08 11:53:09,2013-10-09 02:16:51,13014121CF10A,2013-10-08,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-09,Risk of Violence,2,Low,2013-10-09,2013-10-08,2013-10-09,0,0,905,0,0,0\r\n21,mario hernandez,mario,hernandez,2014-03-24,Male,1979-01-25,37,25 - 45,Hispanic,0,1,0,0,0,0,2014-03-24 03:20:57,2014-03-24 09:09:10,14005100MM10A,2014-03-24,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-24,Risk of Violence,1,Low,2014-03-24,2014-03-24,2014-03-24,0,0,739,0,0,0\r\n22,darrious davis,darrious,davis,2013-12-22,Male,1990-06-22,25,25 - 45,African-American,0,10,0,0,3,-1,2013-12-21 05:42:02,2013-12-22 09:11:18,13017598CF10A,2013-12-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-12-22,Risk of Violence,9,High,2013-12-22,2015-03-30,2015-05-31,3,0,463,0,0,0\r\n23,neil heckart,neil,heckart,2013-11-17,Male,1984-12-24,31,25 - 45,Caucasian,0,5,0,0,6,-1,2013-11-16 07:12:12,2013-11-17 08:28:54,13015941CF10A,2013-11-16,,1,F,Driving While License Revoked,1,14010409CF10A,(F3),,2014-07-16,Grand Theft in the 3rd Degree,,,,1,14010409CF10A,(F1),2014-07-16,Kidnapping (Facilitate Felony),Risk of Recidivism,5,Medium,2013-11-17,Risk of Violence,4,Low,2013-11-17,2013-11-16,2013-11-17,6,0,241,1,1,1\r\n28,janel denicola,janel,denicola,2013-11-22,Female,1995-03-22,21,Less than 25,Caucasian,0,4,0,0,0,-2,2013-11-20 04:12:09,2013-11-21 07:53:21,13016112CF10A,2013-11-20,,2,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-22,Risk of Violence,5,Medium,2013-11-22,2013-11-20,2013-11-21,0,0,861,0,0,0\r\n32,russell sottile,russell,sottile,2013-01-25,Male,1973-01-10,43,25 - 45,Caucasian,0,1,0,0,1,-1,2013-01-24 03:43:22,2013-01-25 09:12:10,13003773TC10A,2013-01-24,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-25,Risk of Violence,2,Low,2013-01-25,2013-01-24,2013-01-25,1,0,1162,0,0,0\r\n33,andre ashley,andre,ashley,2013-05-11,Male,1983-08-24,32,25 - 45,Other,0,3,0,0,0,-1,2013-05-10 08:38:16,2013-05-12 03:33:36,13009088MM10A,2013-05-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-11,Risk of Violence,4,Low,2013-05-11,2013-05-10,2013-05-12,0,1,1056,0,0,0\r\n37,deandrae counts,deandrae,counts,2013-05-06,Male,1989-02-08,27,25 - 45,African-American,0,3,0,0,8,-1,2013-05-05 09:07:10,2013-05-22 09:08:22,13006419CF10A,2013-05-05,,1,F,Carrying Concealed Firearm,1,14001039TC10A,(M2),,2013-11-06,Driving License Suspended,,,,1,15002479CF10A,(F3),2015-02-23,Felony Battery,Risk of Recidivism,3,Low,2013-05-06,Risk of Violence,3,Low,2013-05-06,2013-08-30,2013-08-31,8,16,116,0,1,1\r\n38,victoria soltau,victoria,soltau,2013-03-18,Female,1979-09-03,36,25 - 45,Caucasian,0,3,0,0,3,53,2013-05-10 11:15:09,2013-05-11 07:01:59,12018170CF10A,,2012-12-13,95,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-05-10,2013-05-11,3,0,53,0,0,0\r\n40,victor moreno,victor,moreno,2014-10-24,Male,1983-02-03,33,25 - 45,African-American,0,10,0,0,0,0,2014-10-24 12:50:50,2014-12-01 07:49:53,14014284CF10A,2014-10-23,,1,F,Tampering With Physical Evidence,1,15010523CF10A,(F3),,2015-08-15,False Imprisonment,,,,1,15010523CF10A,(M1),2015-08-15,Battery,Risk of Recidivism,10,High,2014-10-24,Risk of Violence,6,Medium,2014-10-24,2015-05-27,2015-06-17,0,38,215,0,1,1\r\n45,mark friedland,mark,friedland,2013-12-30,Male,1960-07-27,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-29 06:37:02,2013-12-31 10:29:24,13017946CF10A,,2013-12-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-30,Risk of Violence,1,Low,2013-12-30,2013-12-29,2013-12-31,0,1,823,0,0,0\r\n51,kurt fowks,kurt,fowks,2013-04-09,Male,1990-02-11,26,25 - 45,Caucasian,0,8,0,2,6,81,2013-06-29 06:05:49,2013-07-11 09:02:10,12022229TC10A,2012-03-23,,382,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-09,Risk of Violence,8,High,2013-04-09,2013-06-29,2013-07-11,6,0,81,0,0,0\r\n55,darling madrano,darling,madrano,2013-01-16,Male,1987-04-10,29,25 - 45,Caucasian,0,2,0,0,0,0,2013-01-16 12:44:00,2013-01-16 06:49:32,13000997MM10A,2013-01-15,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-16,Risk of Violence,2,Low,2013-01-16,2013-01-16,2013-01-16,0,0,1171,0,0,0\r\n56,kiante slocum,kiante,slocum,2013-08-24,Female,1994-08-17,21,Less than 25,African-American,0,8,0,0,2,-1,2013-08-23 10:37:03,2013-11-11 04:30:55,13011710CF10A,,2013-08-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-24,Risk of Violence,8,High,2013-08-24,2015-01-30,2015-01-31,2,79,524,0,0,0\r\n57,porfirio zamot,porfirio,zamot,2013-02-28,Male,1964-11-24,51,Greater than 45,African-American,0,1,0,0,2,-1,2013-02-27 04:44:18,2013-02-28 08:01:39,13004096MM10A,2013-02-27,,1,M,Unlaw Use False Name/Identity,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-28,Risk of Violence,1,Low,2013-02-28,2013-02-27,2013-02-28,2,0,1128,0,0,0\r\n61,brenda plummer,brenda,plummer,2013-02-14,Female,1964-11-11,51,Greater than 45,African-American,0,2,0,0,7,-1,2013-02-13 09:29:56,2013-02-15 01:35:37,13002244CF10A,2013-02-13,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-14,Risk of Violence,2,Low,2013-02-14,2014-07-28,2014-08-05,7,1,529,0,0,0\r\n66,jeffery dowdy,jeffery,dowdy,2014-03-28,Male,1990-05-28,25,25 - 45,Caucasian,0,10,0,0,9,-1,2014-03-27 10:17:55,2014-04-03 09:27:42,14005313MM10A,2014-03-27,,1,M,Battery,1,14004719CF10A,(F2),0,2014-04-05,Agg Battery Grt/Bod/Harm,2014-04-05,2014-04-14,,1,14004719CF10A,(F2),2014-04-05,Agg Battery Grt/Bod/Harm,Risk of Recidivism,10,High,2014-03-28,Risk of Violence,9,High,2014-03-28,2014-04-05,2014-04-14,9,6,8,1,1,1\r\n67,eddie jones,eddie,jones,2014-05-19,Male,1981-01-19,35,25 - 45,African-American,1,8,0,4,13,-1,2014-05-18 04:05:09,2014-05-19 01:47:37,14006899CF10A,2014-05-18,,1,F,Uttering a Forged Instrument,1,14008544MO10A,(MO3),0,2014-05-28,DOC/Fighting/Threatening Words,2014-05-28,2014-05-29,,1,14008544MO10A,(MO3),2014-05-28,DOC/Fighting/Threatening Words,Risk of Recidivism,8,High,2014-05-19,Risk of Violence,3,Low,2014-05-19,2014-05-28,2014-05-29,13,0,9,1,1,1\r\n68,michael harper,michael,harper,2013-08-02,Male,1967-02-19,49,Greater than 45,Caucasian,0,1,0,0,0,0,2013-08-02 04:43:01,2013-08-02 08:31:32,13014548MM10A,2013-08-02,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,2013-08-02,2013-08-02,0,0,973,0,0,0\r\n70,jeffrey pierre,jeffrey,pierre,2013-04-24,Male,1986-10-06,29,25 - 45,African-American,0,4,0,0,0,0,2013-04-24 04:28:24,2013-04-24 08:20:12,13005888CF10A,2013-04-23,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-24,Risk of Violence,3,Low,2013-04-24,2013-04-24,2013-04-24,0,0,1073,0,0,0\r\n72,shinell baxterskeffrey,shinell,baxterskeffrey,2013-11-18,Female,1987-09-29,28,25 - 45,Other,0,2,0,0,0,-1,2013-11-17 09:43:17,2013-11-18 08:03:35,13015965CF10A,2013-11-17,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-18,Risk of Violence,2,Low,2013-11-18,2013-11-17,2013-11-18,0,0,865,0,0,0\r\n77,graciela quevedo,graciela,quevedo,2014-01-22,Female,1952-08-15,63,Greater than 45,Hispanic,0,1,0,0,1,-219,2013-06-17 04:04:07,2013-06-25 08:31:09,13007023CF10A,,2013-06-17,219,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-22,Risk of Violence,1,Low,2014-01-22,2013-06-17,2013-06-25,1,0,800,0,0,0\r\n79,mackenson nelson,mackenson,nelson,2013-03-18,Male,1984-09-24,31,25 - 45,African-American,0,5,0,1,15,-1,2013-03-17 09:02:33,2013-07-31 08:23:26,13003864CF10A,2013-03-17,,1,F,Attempt Armed Burglary Dwell,1,16006319TC10A,(M2),,2016-02-28,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-18,Risk of Violence,7,Medium,2013-03-18,2013-03-17,2013-07-31,15,135,1077,1,0,0\r\n83,jonny romerobarrientos,jonny,romerobarrientos,2013-01-20,Male,1986-01-11,30,25 - 45,Hispanic,0,7,0,0,0,0,2013-01-20 02:50:51,2013-02-12 09:16:13,13001388MM10A,2013-01-20,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-20,Risk of Violence,3,Low,2013-01-20,2013-01-20,2013-02-12,0,23,1167,0,0,0\r\n84,rodney daniels,rodney,daniels,2013-08-27,Male,1967-01-23,49,Greater than 45,African-American,0,1,0,0,4,-1,2013-08-26 09:16:39,2013-08-27 06:57:19,13016325MM10A,2013-08-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,2013-08-26,2013-08-27,4,0,948,0,0,0\r\n85,walter olson,walter,olson,2013-05-28,Male,1962-12-07,53,Greater than 45,Caucasian,0,5,0,0,8,-13,2013-05-15 08:36:10,2013-05-28 10:06:35,13006695CF10A,,2013-05-15,13,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-28,Risk of Violence,2,Low,2013-05-28,2013-05-15,2013-05-28,8,0,1039,0,0,0\r\n87,ronald singletary,ronald,singletary,2013-02-11,Male,1980-06-04,35,25 - 45,African-American,0,3,0,0,5,-1,2013-02-10 07:44:42,2013-02-11 07:04:44,13002065CF10A,2013-02-10,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-11,Risk of Violence,2,Low,2013-02-11,2013-02-10,2013-02-11,5,0,1145,0,0,0\r\n97,victor cabreramacias,victor,cabreramacias,2013-01-08,Male,1954-01-26,62,Greater than 45,Hispanic,0,1,0,0,0,0,2013-01-08 12:33:09,2013-01-08 09:41:28,13001092TC10A,2013-01-07,,1,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-08,Risk of Violence,1,Low,2013-01-08,2013-01-08,2013-01-08,0,0,1179,0,0,0\r\n99,hector hollis,hector,hollis,2014-03-09,Male,1983-02-19,33,25 - 45,Other,0,1,0,0,0,-1,2014-03-08 01:34:03,2014-03-09 10:21:45,14004045MM10A,2014-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-09,Risk of Violence,1,Low,2014-03-09,2014-03-08,2014-03-09,0,0,754,0,0,0\r\n100,merlita hanson,merlita,hanson,2013-09-28,Female,1960-01-03,56,Greater than 45,African-American,0,1,0,0,0,0,2013-09-28 02:52:18,2013-10-01 07:39:52,13018452MM10A,2013-09-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-28,Risk of Violence,1,Low,2013-09-28,2013-09-28,2013-10-01,0,3,916,0,0,0\r\n101,pedro rodriguez,pedro,rodriguez,2013-01-13,Male,1970-05-03,45,Greater than 45,Hispanic,0,1,0,0,6,-1,2013-01-12 05:43:00,2013-09-11 04:51:56,13000734CF10A,2013-01-12,,1,F,Possession of Cocaine,1,14005041TC10A,(M2),,2013-12-02,Operating W/O Valid License,,,,1,14001759MM10A,(M1),2014-02-01,Battery,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-09-11,6,241,323,1,1,1\r\n102,andres bayas,andres,bayas,2013-05-25,Male,1993-10-16,22,Less than 25,Hispanic,0,4,0,0,1,-1,2013-05-24 06:06:17,2013-05-25 07:28:17,13007454CF10A,2013-05-24,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-25,Risk of Violence,6,Medium,2013-05-25,2013-05-24,2013-05-25,1,0,1042,0,0,0\r\n105,alfonzo morgan,alfonzo,morgan,2013-03-07,Male,1976-11-11,39,25 - 45,African-American,0,4,0,0,1,-1,2013-03-06 11:23:53,2013-03-11 09:00:57,04018615MM10A,,2013-03-06,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-07,Risk of Violence,2,Low,2013-03-07,2013-03-06,2013-03-11,1,4,1121,0,0,0\r\n111,phylipe raphael,phylipe,raphael,2013-07-17,Male,1976-03-27,40,25 - 45,African-American,0,2,0,0,2,-15,2013-07-02 03:42:01,2013-07-05 08:13:10,13007958CF10A,,2013-07-02,15,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-17,Risk of Violence,1,Low,2013-07-17,2013-07-02,2013-07-05,2,0,989,0,0,0\r\n114,james wickman,james,wickman,2013-02-19,Male,1993-10-12,22,Less than 25,Caucasian,0,8,0,0,0,-1,2013-02-18 12:24:07,2013-04-17 10:32:09,13002486CF10A,2013-02-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-19,Risk of Violence,6,Medium,2013-02-19,2013-05-03,2013-05-24,0,57,73,0,0,0\r\n115,pentara casaberry,pentara,casaberry,2013-11-08,Female,1989-09-01,26,25 - 45,African-American,0,4,0,0,1,-1,2013-11-07 09:01:45,2013-11-09 09:07:50,13015554CF10A,2013-11-07,,1,F,Poss Cocaine/Intent To Del/Sel,1,13016053CF10A,(M1),0,2013-11-19,Resist/Obstruct W/O Violence,2013-11-19,2014-01-16,,1,13016053CF10A,(F3),2013-11-19,Child Abuse,Risk of Recidivism,4,Low,2013-11-08,Risk of Violence,3,Low,2013-11-08,2013-11-19,2014-01-16,1,1,11,1,1,1\r\n116,david meadows,david,meadows,2014-07-21,Male,1988-10-11,27,25 - 45,Caucasian,0,7,0,0,1,-43,2014-06-08 01:02:27,2014-06-27 09:37:41,14007902CF10A,2014-06-07,,44,F,Burglary Dwelling Assault/Batt,1,15007890CF10A,(M1),24,2015-04-05,Felony Battery w/Prior Convict,2015-04-29,2015-05-17,,1,15007890CF10A,(M1),2015-04-05,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2014-07-21,Risk of Violence,8,High,2014-07-21,2015-06-29,2015-11-13,1,0,258,1,1,1\r\n119,shawn thropes,shawn,thropes,2013-03-04,Male,1983-05-02,32,25 - 45,African-American,0,2,0,0,0,-1,2013-03-03 03:33:48,2013-03-04 07:08:59,13003199CF10A,2013-03-03,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-03-03,2013-03-04,0,0,1124,0,0,0\r\n120,demetrious ellis,demetrious,ellis,2013-02-28,Male,1974-06-28,41,25 - 45,African-American,0,2,0,0,1,-1,2013-02-27 09:49:07,2013-03-01 01:59:16,95026071MM10A,,1998-12-19,5185,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-28,Risk of Violence,2,Low,2013-02-28,2013-02-27,2013-03-01,1,1,1128,0,0,0\r\n122,murvin thomas,murvin,thomas,2013-02-21,Male,1986-03-29,30,25 - 45,African-American,0,10,0,0,8,-1,2013-02-20 02:14:37,2013-02-21 07:47:06,13003606MM10A,2013-02-20,,1,M,Possess Cannabis/20 Grams Or Less,1,13005516CF10A,(M1),0,2013-04-17,Possess Cannabis/20 Grams Or Less,2013-04-17,2013-04-18,,1,15006514CF10A,(F3),2015-04-24,Battery on a Person Over 65,Risk of Recidivism,10,High,2013-02-21,Risk of Violence,9,High,2013-02-21,2013-04-17,2013-04-18,8,0,55,1,1,1\r\n128,kambrel tarver,kambrel,tarver,2013-04-20,Male,1991-01-30,25,25 - 45,African-American,1,10,6,1,14,-1,2013-04-19 02:20:32,2013-04-26 05:45:46,11008067CF10A,,2013-04-19,1,F,arrest case no charge,1,13015805MM10A,(M1),0,2013-07-29,Resist/Obstruct W/O Violence,2013-07-29,2013-08-17,,1,16003005CF10A,(M1),2016-03-09,Battery,Risk of Recidivism,10,High,2013-04-20,Risk of Violence,10,High,2013-04-20,2013-07-29,2013-08-17,14,6,100,1,1,1\r\n130,juster philippe,juster,philippe,2013-10-03,Male,1995-05-06,20,Less than 25,Other,0,5,0,0,0,-1,2013-10-02 05:50:22,2013-10-03 08:15:24,13013834CF10A,2013-10-02,,1,F,Tampering With Physical Evidence,1,14001348CF10A,(F2),0,2014-01-30,Robbery / No Weapon,2014-01-30,2015-03-29,,1,14001348CF10A,(F2),2014-01-30,Agg Battery Grt/Bod/Harm,Risk of Recidivism,5,Medium,2013-10-03,Risk of Violence,8,High,2013-10-03,2014-01-30,2015-03-29,0,0,119,1,1,1\r\n136,terri hamilton,terri,hamilton,2013-03-30,Female,1980-09-16,35,25 - 45,African-American,0,2,0,0,1,-1,2013-03-29 06:55:39,2013-03-30 03:12:37,13000467TC10A,,2013-03-29,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-30,Risk of Violence,1,Low,2013-03-30,2013-03-29,2013-03-30,1,0,1098,0,0,0\r\n142,richard veach,richard,veach,2014-12-13,Male,1991-01-20,25,25 - 45,Caucasian,0,8,0,0,9,-1,2014-12-12 07:27:40,2014-12-13 07:23:49,14016502CF10A,2014-12-12,,1,F,Pos Cannabis W/Intent Sel/Del,1,15028085TC20A,(M2),,2015-05-07,Driving License Suspended,,,,1,15006549MM10A,(M1),2015-06-17,Battery,Risk of Recidivism,8,High,2014-12-13,Risk of Violence,9,High,2014-12-13,2015-07-17,2015-07-19,9,0,145,1,1,1\r\n143,jimmie moss,jimmie,moss,2013-01-04,Male,1944-05-13,71,Greater than 45,African-American,0,7,0,0,12,,,,10023009MM10A,2010-10-23,,804,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-04,Risk of Violence,3,Low,2013-01-04,,,12,0,1183,0,0,0\r\n145,jasmin negron,jasmin,negron,2013-11-14,Female,1995-09-19,20,Less than 25,Caucasian,0,7,0,0,0,-1,2013-11-13 11:21:14,2013-11-14 01:36:21,13015797CF10A,2013-11-13,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-14,Risk of Violence,8,High,2013-11-14,2013-11-13,2013-11-14,0,0,869,0,0,0\r\n147,phillip bishop,phillip,bishop,2013-11-06,Male,1949-05-04,66,Greater than 45,Caucasian,0,1,0,0,3,-64,2013-09-03 04:44:29,2013-10-03 12:15:17,13012424CF10A,2013-09-03,,64,F,Flee/Elude LEO-Agg Flee Unsafe,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-06,Risk of Violence,1,Low,2013-11-06,2013-09-03,2013-10-03,3,0,877,0,0,0\r\n148,deanna murphy,deanna,murphy,2013-04-15,Female,1961-11-10,54,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-15 01:07:24,2013-04-15 07:56:24,13007296MM10A,2013-04-14,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-15,Risk of Violence,1,Low,2013-04-15,2013-04-15,2013-04-15,0,0,1082,0,0,0\r\n150,sharon muriente,sharon,muriente,2013-08-20,Female,1971-05-12,44,25 - 45,Hispanic,0,1,0,0,0,-2,2013-08-18 03:23:05,2013-08-19 06:27:00,13015636MM10A,2013-08-18,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-18,2013-08-19,0,0,955,0,0,0\r\n151,willie morris,willie,morris,2014-11-14,Male,1996-08-15,19,Less than 25,African-American,0,4,0,0,1,-10,2014-11-04 07:39:38,2014-11-13 10:02:51,14015929MM10A,2014-11-04,,10,M,Battery,1,15002656CF10A,(M1),0,2015-02-26,Viol Injunction Protect Dom Violence,2015-02-26,2015-03-04,,1,15002656CF10A,(F3),2015-02-26,Battery on Law Enforc Officer,Risk of Recidivism,4,Low,2014-11-14,Risk of Violence,7,Medium,2014-11-14,2015-02-26,2015-03-04,1,0,104,1,1,1\r\n152,brandon minter,brandon,minter,2014-02-28,Male,1991-11-27,24,Less than 25,African-American,0,2,0,0,1,-137,2013-10-14 04:11:17,2014-02-28 11:20:14,13007744CF10A,,2013-10-14,137,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-28,Risk of Violence,3,Low,2014-02-28,2015-07-16,2015-07-16,1,0,503,0,0,0\r\n153,matthew grant,matthew,grant,2013-09-09,Male,1985-07-24,30,25 - 45,African-American,0,2,0,0,1,-1,2013-09-08 09:39:18,2013-09-09 08:03:09,13012705CF10A,2013-09-08,,1,F,Fail To Redeliv Hire/Leas Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-09,Risk of Violence,2,Low,2013-09-09,2013-09-08,2013-09-09,1,0,935,0,0,0\r\n154,sandra quinones,sandra,quinones,2013-09-05,Female,1977-04-14,39,25 - 45,Caucasian,0,1,0,0,0,-1,2013-09-04 11:36:38,2013-09-06 04:07:01,13012513CF10A,2013-09-04,,1,F,Aggravated Assault W/Dead Weap,1,13020368MM10A,(M1),1,2013-10-27,Battery,2013-10-28,2013-10-28,,1,13020368MM10A,(M1),2013-10-27,Battery,Risk of Recidivism,1,Low,2013-09-05,Risk of Violence,1,Low,2013-09-05,2013-09-04,2013-09-06,0,1,52,1,1,1\r\n157,silvio paulino,silvio,paulino,2013-08-29,Male,1985-10-24,30,25 - 45,Caucasian,0,4,0,0,0,-1,2013-08-28 11:22:24,2013-09-03 10:40:45,13012146CF10A,2013-08-28,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-29,Risk of Violence,2,Low,2013-08-29,2015-01-08,2015-02-04,0,5,497,0,0,0\r\n158,john white,john,white,2014-02-21,Male,1984-06-08,31,25 - 45,Caucasian,0,5,0,0,0,-1,2014-02-20 09:46:47,2014-03-31 09:04:43,14003013MM10A,2014-02-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-21,Risk of Violence,2,Low,2014-02-21,2014-02-20,2014-03-31,0,38,770,0,0,0\r\n159,april mincey,april,mincey,2013-02-26,Female,1976-09-19,39,25 - 45,Caucasian,0,4,0,0,1,-1,2013-02-25 07:42:47,2013-06-12 04:31:04,13002849CF10A,2013-02-25,,1,F,Possession of Morphine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-26,Risk of Violence,3,Low,2013-02-26,2014-03-25,2014-03-30,1,106,392,0,0,0\r\n160,jimmy bell,jimmy,bell,2014-12-04,Male,1957-04-02,59,Greater than 45,African-American,0,9,0,0,14,178,2015-05-31 07:39:18,2015-09-18 01:21:56,12008029CF10A,,2014-03-14,265,F,arrest case no charge,1,15007122CF10A,(F3),0,2015-05-31,Aggravated Assault W/Dead Weap,2015-05-31,2015-09-18,,1,15007122CF10A,(F3),2015-05-31,Aggravated Assault W/Dead Weap,Risk of Recidivism,9,High,2014-12-04,Risk of Violence,4,Low,2014-12-04,2015-05-31,2015-09-18,14,0,178,1,1,1\r\n163,andrew chu,andrew,chu,2013-08-15,Male,1973-01-15,43,25 - 45,Caucasian,0,1,0,0,1,-30,2013-07-16 06:41:37,2013-07-17 07:35:00,13009961CF10A,2013-07-16,,30,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-15,Risk of Violence,1,Low,2013-08-15,2013-07-16,2013-07-17,1,0,960,0,0,0\r\n171,joseph montalvomolina,joseph,montalvomolina,2013-02-15,Male,1982-02-19,34,25 - 45,Caucasian,0,5,0,0,0,0,2013-02-15 10:54:22,2013-03-02 09:04:47,13002550CF10A,2013-02-15,,0,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-15,Risk of Violence,5,Medium,2013-02-15,2014-05-02,2014-07-10,0,15,441,0,0,0\r\n174,gonzales joseph,gonzales,joseph,2013-11-18,Male,1978-09-27,37,25 - 45,African-American,0,2,0,0,3,0,2013-11-18 03:46:24,2013-11-19 10:18:36,13016018CF10A,2013-11-18,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-18,Risk of Violence,1,Low,2013-11-18,2014-02-28,2014-03-07,3,1,102,0,0,0\r\n180,lee wright,lee,wright,2013-10-14,Male,1984-08-19,31,25 - 45,African-American,0,7,0,0,1,-1,2013-10-13 03:47:49,2013-10-14 08:18:17,13019413MM10A,2013-10-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-14,Risk of Violence,8,High,2013-10-14,2013-10-13,2013-10-14,1,0,900,0,0,0\r\n182,margretta martin,margretta,martin,2013-10-29,Female,1985-08-27,30,25 - 45,Other,0,2,0,0,1,-1,2013-10-28 07:07:32,2013-10-29 09:49:38,13015030CF10A,2013-10-28,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-29,Risk of Violence,2,Low,2013-10-29,2014-02-03,2014-02-11,1,0,97,0,0,0\r\n183,robert hauselt,robert,hauselt,2013-02-26,Male,1985-03-18,31,25 - 45,Caucasian,0,10,0,0,13,-1,2013-02-25 06:43:30,2014-06-11 12:57:06,13003002CF10A,,2013-02-26,0,F,arrest case no charge,1,13005853CF10A,(F2),,2013-04-22,Burglary Unoccupied Dwelling,,,,1,14015876MM10A,(M1),2014-11-03,Battery,Risk of Recidivism,10,High,2013-02-26,Risk of Violence,7,Medium,2013-02-26,2013-02-25,2014-06-11,13,0,55,1,1,1\r\n187,isaac johnson,isaac,johnson,2013-12-06,Male,1960-02-11,56,Greater than 45,African-American,0,9,0,0,8,67,2014-02-11 09:01:26,2014-05-02 08:04:43,11014376CF10A,,2013-09-18,79,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-12-06,Risk of Violence,3,Low,2013-12-06,2014-02-11,2014-05-02,8,0,67,0,0,0\r\n189,clifford matthews,clifford,matthews,2013-07-29,Male,1963-07-23,52,Greater than 45,Caucasian,0,9,0,0,3,-2,2013-07-27 10:50:36,2013-07-28 02:01:45,13014255MM10A,2013-07-27,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-07-29,Risk of Violence,6,Medium,2013-07-29,2013-07-27,2013-07-28,3,0,977,0,0,0\r\n192,sue middleton,sue,middleton,2014-03-31,Female,1952-02-19,64,Greater than 45,Caucasian,0,1,0,0,2,-47,2014-02-12 04:23:22,2014-02-12 01:49:55,14005660MU10A,2014-02-11,,48,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-02-12,2014-02-12,2,0,732,0,0,0\r\n194,ryan pottle,ryan,pottle,2013-09-17,Male,1974-03-30,42,25 - 45,Caucasian,0,3,0,0,6,-4,2013-09-13 12:01:41,2013-09-13 09:01:37,13012918CF10A,2013-09-12,,5,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-17,Risk of Violence,1,Low,2013-09-17,2014-10-30,2015-01-24,6,0,408,0,0,0\r\n195,brooke ferrell,brooke,ferrell,2013-12-23,Female,1991-01-14,25,25 - 45,Caucasian,0,4,0,0,2,-1,2013-12-22 01:36:59,2013-12-25 02:33:32,13016742CF10A,,2013-12-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-23,Risk of Violence,5,Medium,2013-12-23,2014-12-17,2015-01-07,2,2,359,0,0,0\r\n197,kyle hoyt,kyle,hoyt,2013-11-19,Male,1985-05-01,30,25 - 45,Caucasian,0,2,0,0,1,-20,2013-10-30 06:36:57,2013-11-03 02:08:43,13015141CF10A,2013-10-30,,20,M,Agg Fleeing and Eluding,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-19,Risk of Violence,2,Low,2013-11-19,2013-10-30,2013-11-03,1,0,864,0,0,0\r\n199,ritesh sukhlall,ritesh,sukhlall,2013-08-29,Male,1987-05-12,28,25 - 45,Caucasian,0,1,0,0,2,,,,12018849CF10A,,2013-03-21,161,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-29,Risk of Violence,2,Low,2013-08-29,,,2,0,946,0,0,0\r\n200,nicola spenceburrell,nicola,spenceburrell,2013-12-30,Female,1978-06-30,37,25 - 45,Other,0,2,0,0,2,-1,2013-12-29 10:42:45,2013-12-31 04:10:00,13012779MM10A,2013-05-22,,222,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-30,Risk of Violence,1,Low,2013-12-30,2013-12-29,2013-12-31,2,1,823,0,0,0\r\n203,pamela goodwin,pamela,goodwin,2014-02-07,Female,1991-09-24,24,Less than 25,African-American,0,2,0,0,0,-1,2014-02-06 01:25:28,2014-02-08 12:00:39,14002123MM10A,2014-02-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-07,Risk of Violence,3,Low,2014-02-07,2014-02-06,2014-02-08,0,1,784,0,0,0\r\n209,jessica ruiz,jessica,ruiz,2014-04-04,Female,1985-06-15,30,25 - 45,Hispanic,0,5,0,0,4,-35,2014-02-28 01:37:01,2014-02-28 09:21:54,14002842CF10A,2014-02-27,,36,F,Battery on Law Enforc Officer,1,14007741MM10A,(M1),1,2014-05-11,Battery,2014-05-12,2014-06-13,,1,14007741MM10A,(M1),2014-05-11,Battery,Risk of Recidivism,5,Medium,2014-04-04,Risk of Violence,5,Medium,2014-04-04,2015-04-10,2015-12-07,4,0,37,1,1,1\r\n215,brandon flanders,brandon,flanders,2013-01-17,Male,1985-04-16,31,25 - 45,African-American,0,2,0,0,1,-1,2013-01-16 05:37:32,2013-01-17 07:15:11,13001130MM10A,2013-01-16,,1,M,Lewdness Violation,1,16012589TC40A,(M2),,2016-03-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-17,Risk of Violence,3,Low,2013-01-17,2013-01-16,2013-01-17,1,0,1140,1,0,0\r\n218,jean murphy,jean,murphy,2013-04-24,Female,1971-02-05,45,Greater than 45,Caucasian,0,4,0,0,4,,,,11000917CF10A,,2012-04-14,375,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-24,Risk of Violence,3,Low,2013-04-24,,,4,0,1073,0,0,0\r\n220,taveunshae livingston,taveunshae,livingston,2013-11-20,Female,1995-09-05,20,Less than 25,African-American,1,10,0,0,1,0,2013-11-20 09:36:33,2013-11-23 04:06:00,13014098CF10A,,2013-11-20,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-11-20,Risk of Violence,10,High,2013-11-20,2014-03-19,2014-03-28,1,3,119,0,0,0\r\n222,gia dreiss,gia,dreiss,2013-05-14,Female,1973-03-13,43,25 - 45,Caucasian,0,1,0,0,0,0,2013-05-14 04:01:02,2013-05-15 03:11:16,13009346MM10A,2013-05-14,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2013-05-14,2013-05-15,0,1,1053,0,0,0\r\n224,travis lee,travis,lee,2014-12-19,Male,1983-08-11,32,25 - 45,African-American,0,6,0,0,11,-2,2014-12-17 02:03:04,2014-12-18 08:41:05,14016717CF10A,2014-12-17,,2,F,Poss Pyrrolidinovalerophenone,1,15000511CF10A,(F3),0,2015-01-12,Poss Pyrrolidinovalerophenone,2015-01-12,2015-02-17,,1,15004732CF10A,(F1),2015-04-10,Manslaughter with Weapon,Risk of Recidivism,6,Medium,2014-12-19,Risk of Violence,5,Medium,2014-12-19,2015-01-12,2015-02-17,11,0,24,1,1,1\r\n225,justin poux,justin,poux,2013-12-26,Male,1982-08-26,33,25 - 45,African-American,0,5,0,0,8,-1,2013-12-25 07:37:38,2013-12-26 01:30:44,13023762MM10A,2013-12-25,,1,M,Assault,1,14003098MM40A,(M1),,2014-07-01,Possess Cannabis/20 Grams Or Less,,,,1,14011238CF10A,(M1),2014-08-16,Battery,Risk of Recidivism,5,Medium,2013-12-26,Risk of Violence,2,Low,2013-12-26,2015-07-16,2015-07-16,8,0,187,1,1,1\r\n231,tichina carr,tichina,carr,2013-12-07,Female,1995-07-13,20,Less than 25,African-American,0,6,0,0,0,0,2013-12-07 03:39:31,2013-12-07 07:28:49,13016953CF10A,2013-12-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-07,Risk of Violence,8,High,2013-12-07,2013-12-07,2013-12-07,0,0,846,0,0,0\r\n232,heather baker,heather,baker,2014-01-27,Female,1989-07-26,26,25 - 45,Caucasian,0,6,0,0,0,-2,2014-01-25 04:45:14,2014-01-26 02:13:40,14002839MU10A,2014-01-25,,2,M,Fail To Obey Police Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-27,Risk of Violence,3,Low,2014-01-27,2014-01-25,2014-01-26,0,0,795,0,0,0\r\n236,carlos lacayo,carlos,lacayo,2014-02-05,Male,1953-02-03,63,Greater than 45,Hispanic,0,1,0,0,1,-26,2014-01-10 09:45:32,2014-01-25 05:08:15,13002681CF10A,,2014-01-10,26,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-05,Risk of Violence,1,Low,2014-02-05,2014-01-10,2014-01-25,1,0,786,0,0,0\r\n238,tiffany reid,tiffany,reid,2014-04-23,Female,1984-02-01,32,25 - 45,African-American,0,10,0,0,4,-7,2014-04-16 09:55:10,2014-04-23 05:27:00,13017942CF10A,,2014-04-16,7,F,arrest case no charge,1,15006709CF10A,(F3),0,2015-05-23,Aggravated Assault W/Dead Weap,2015-05-23,2015-09-18,,1,15006709CF10A,(F3),2015-05-23,Aggravated Assault W/Dead Weap,Risk of Recidivism,10,High,2014-04-23,Risk of Violence,9,High,2014-04-23,2015-05-23,2015-09-18,4,0,395,1,1,1\r\n239,joshua ortiz,joshua,ortiz,2013-09-06,Male,1986-08-27,29,25 - 45,Hispanic,0,4,0,0,1,-1,2013-09-05 06:24:46,2013-09-06 03:39:35,13012529CF10A,2013-09-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-09-05,2013-09-06,1,0,938,0,0,0\r\n240,rabina humphrey,rabina,humphrey,2013-01-10,Female,1969-07-04,46,Greater than 45,Other,0,2,0,0,1,,,,12016046CF10A,2012-10-30,,72,F,Grand Theft in the 1st Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-10,Risk of Violence,1,Low,2013-01-10,,,1,0,1177,0,0,0\r\n242,dwayne powell,dwayne,powell,2013-06-27,Male,1961-03-09,55,Greater than 45,African-American,0,1,0,0,3,-51,2013-05-07 01:06:57,2013-05-08 03:17:33,13008769MM10A,2013-05-06,,52,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-27,Risk of Violence,1,Low,2013-06-27,2013-05-07,2013-05-08,3,0,1009,0,0,0\r\n243,bryan sandrin,bryan,sandrin,2014-02-11,Male,1976-06-30,39,25 - 45,Caucasian,1,4,0,0,1,-1,2014-02-10 10:59:01,2014-02-14 09:09:06,09018753TC10A,2009-07-15,,1672,M,,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-11,Risk of Violence,4,Low,2014-02-11,2014-02-10,2014-02-14,1,3,780,0,0,0\r\n245,jeffery jean,jeffery,jean,2013-03-02,Male,1985-05-30,30,25 - 45,African-American,0,7,0,0,1,0,2013-03-02 01:19:52,2013-05-11 04:23:17,13003159CF10A,2013-03-01,,1,F,Burglary Conveyance Assault/Bat,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-02,Risk of Violence,8,High,2013-03-02,2014-03-04,2014-03-07,1,70,367,0,0,0\r\n246,michael cormier,michael,cormier,2013-09-26,Male,1967-08-21,48,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-09-25 12:51:27,2013-09-26 08:42:11,13018327MM10A,2013-09-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-26,Risk of Violence,1,Low,2013-09-26,2013-09-25,2013-09-26,2,0,918,0,0,0\r\n248,marquis brantley,marquis,brantley,2013-05-16,Male,1993-05-25,22,Less than 25,African-American,0,2,0,0,1,-1,2013-05-15 12:16:21,2013-05-16 09:03:09,13006968CF10A,,2013-05-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-16,Risk of Violence,4,Low,2013-05-16,2014-11-14,2015-05-21,1,0,547,0,0,0\r\n251,tanya gordon,tanya,gordon,2014-03-19,Female,1966-09-25,49,Greater than 45,Caucasian,0,6,0,0,6,-56,2014-01-22 07:46:15,2014-01-27 08:19:45,14000940CF10A,2014-01-22,,56,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-19,Risk of Violence,2,Low,2014-03-19,2014-01-22,2014-01-27,6,0,744,0,0,0\r\n252,matthew segal,matthew,segal,2013-04-20,Male,1984-08-30,31,25 - 45,Caucasian,0,5,0,0,0,0,2013-04-20 02:52:11,2013-04-22 09:19:35,13005685CF10A,2013-04-19,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-20,Risk of Violence,4,Low,2013-04-20,2015-04-09,2015-05-29,0,2,719,0,0,0\r\n257,robello rodriguez,robello,rodriguez,2013-09-09,Male,1992-09-11,23,Less than 25,Hispanic,0,3,0,0,0,-1,2013-09-08 01:03:31,2013-09-08 02:03:07,13012674CF10A,2013-09-07,,2,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-09,Risk of Violence,5,Medium,2013-09-09,2013-09-08,2013-09-08,0,0,935,0,0,0\r\n258,crissie wilson,crissie,wilson,2013-02-18,Female,1984-01-04,32,25 - 45,African-American,0,7,0,0,5,-1,2013-02-17 07:51:04,2013-02-18 10:17:02,13002448CF10A,2013-02-17,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-18,Risk of Violence,3,Low,2013-02-18,2013-02-17,2013-02-18,5,0,1138,0,0,0\r\n259,justo arias,justo,arias,2013-03-05,Male,1963-12-18,52,Greater than 45,Hispanic,0,1,0,0,2,-1,2013-03-04 10:07:00,2013-03-07 11:56:36,13018844TC10A,2013-03-04,,1,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-05,Risk of Violence,1,Low,2013-03-05,2013-06-21,2013-07-26,2,2,108,0,0,0\r\n260,curtis ross,curtis,ross,2013-02-05,Male,1954-02-20,62,Greater than 45,African-American,0,4,0,0,8,0,2013-02-05 12:23:14,2013-02-21 04:06:55,13001749CF10A,2013-02-04,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-05,Risk of Violence,1,Low,2013-02-05,2013-02-05,2013-02-21,8,16,1151,0,0,0\r\n262,melody ford,melody,ford,2013-04-22,Female,1978-08-09,37,25 - 45,Caucasian,0,10,0,0,6,-110,2013-01-02 12:30:44,2013-04-18 09:04:00,13000026CF10A,2013-01-01,,111,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-22,Risk of Violence,4,Low,2013-04-22,2014-06-13,2014-12-18,6,0,417,0,0,0\r\n263,michael loughran,michael,loughran,2013-09-10,Male,1960-08-29,55,Greater than 45,Caucasian,0,1,0,0,1,-45,2013-07-27 04:18:41,2013-08-14 12:12:39,13010542CF10A,2013-07-27,,45,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-07-27,2013-08-14,1,0,934,0,0,0\r\n265,darasan bispham,darasan,bispham,2013-03-18,Male,1987-05-19,28,25 - 45,African-American,0,6,0,0,6,-1,2013-03-17 09:01:58,2013-03-18 01:40:10,13005239MM10A,2013-03-17,,1,M,Resist/Obstruct W/O Violence,1,14060125TC30A,(M2),,2014-07-13,Fail Register Vehicle,,,,1,15003512CF10A,(F2),2015-03-15,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-03-18,Risk of Violence,6,Medium,2013-03-18,2016-03-01,2016-03-17,6,0,482,1,1,1\r\n266,oscar lloranzo,oscar,lloranzo,2013-08-29,Male,1962-04-15,54,Greater than 45,Hispanic,0,1,0,0,2,-1,2013-08-28 02:23:37,2014-03-04 11:31:17,13012142CF10A,2013-08-28,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-29,Risk of Violence,1,Low,2013-08-29,2013-08-28,2014-03-04,2,187,946,0,0,0\r\n267,domingo martinez,domingo,martinez,2013-03-14,Male,1957-08-04,58,Greater than 45,Hispanic,0,2,0,0,0,-1,2013-03-13 10:02:13,2013-03-14 02:21:27,13003707CF10A,2013-03-13,,1,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-14,Risk of Violence,1,Low,2013-03-14,2014-01-10,2014-03-28,0,0,302,0,0,0\r\n269,marcial regidor,marcial,regidor,2014-03-03,Male,1959-12-31,56,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-02 03:51:04,2014-03-03 07:47:20,14002945CF10A,2014-03-02,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-02,2014-03-03,0,0,760,0,0,0\r\n271,shourav rahman,shourav,rahman,2014-01-14,Male,1992-01-07,24,Less than 25,Other,0,2,0,0,0,-1,2014-01-13 09:13:09,2014-01-15 08:37:12,14000576CF10A,2014-01-13,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-14,Risk of Violence,4,Low,2014-01-14,2014-01-13,2014-01-15,0,1,808,0,0,0\r\n279,ronald castaneda,ronald,castaneda,2013-10-25,Male,1958-05-31,57,Greater than 45,Hispanic,0,1,0,0,1,0,2013-10-25 09:20:19,2013-11-14 02:05:31,13014942CF10A,2013-10-25,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-25,Risk of Violence,1,Low,2013-10-25,2013-10-25,2013-11-14,1,20,889,0,0,0\r\n281,richard roberts,richard,roberts,2013-06-11,Male,1949-09-14,66,Greater than 45,African-American,0,1,0,0,3,-10,2013-06-01 11:04:44,2013-06-03 11:25:14,13007789CF10A,2013-06-01,,10,F,Agg Battery Grt/Bod/Harm,1,16000414MM20A,(M1),,2016-01-10,Battery,,,,1,16000414MM20A,(M1),2016-01-10,Battery,Risk of Recidivism,1,Low,2013-06-11,Risk of Violence,1,Low,2013-06-11,2013-06-01,2013-06-03,3,0,943,1,0,0\r\n287,aaron eddins,aaron,eddins,2013-12-24,Male,1978-12-03,37,25 - 45,African-American,0,9,0,0,2,0,2013-12-24 03:40:12,2013-12-24 08:53:51,13023727MM10A,2013-12-24,,0,M,Battery,1,14005925MM10A,(M1),0,2014-04-07,Battery,2014-04-07,2014-05-09,,1,14005925MM10A,(M1),2014-04-07,Battery,Risk of Recidivism,9,High,2013-12-24,Risk of Violence,8,High,2013-12-24,2014-04-07,2014-05-09,2,0,104,1,1,1\r\n291,shad campbell,shad,campbell,2013-02-01,Male,1970-12-18,45,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-01-31 04:11:55,2014-01-25 03:27:03,13001562CF10A,2013-01-31,,1,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-01,Risk of Violence,4,Low,2013-02-01,2013-01-31,2014-01-25,2,358,1155,0,0,0\r\n293,delmario watt,delmario,watt,2014-04-26,Male,1992-12-18,23,Less than 25,African-American,0,3,0,0,0,-1,2014-04-25 10:29:59,2014-04-26 09:57:20,14005797CF10A,2014-04-25,,1,F,Possession of Cannabis,1,15003342CF10A,(F2),0,2015-03-12,Robbery W/Firearm,2015-03-12,2015-09-21,,1,15003342CF10A,(F2),2015-03-12,Robbery W/Firearm,Risk of Recidivism,3,Low,2014-04-26,Risk of Violence,4,Low,2014-04-26,2015-03-12,2015-09-21,0,0,320,1,1,1\r\n294,clifton mccree,clifton,mccree,2014-01-31,Male,1982-03-05,34,25 - 45,African-American,0,2,0,0,2,0,2014-01-31 12:35:27,2014-02-26 05:50:20,14001687MM10A,2014-01-30,,1,M,Battery,1,16002539CF10A,(F3),0,2016-02-28,,2016-02-28,2016-03-22,,0,,,,,Risk of Recidivism,2,Low,2014-01-31,Risk of Violence,1,Low,2014-01-31,2016-02-28,2016-03-22,2,26,758,1,0,0\r\n297,kerry gonzalez,kerry,gonzalez,2013-08-21,Female,1992-04-20,23,Less than 25,African-American,0,4,0,0,1,-1,2013-08-20 11:57:06,2013-08-21 07:50:16,13015960MM10A,2013-08-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-21,Risk of Violence,4,Low,2013-08-21,2013-08-20,2013-08-21,1,0,954,0,0,0\r\n299,douglas eaton,douglas,eaton,2013-09-16,Male,1965-05-28,50,Greater than 45,Caucasian,0,1,0,0,1,-4,2013-09-12 09:32:07,2013-09-14 03:06:18,16000586CF10A,2013-09-12,,4,F,Sexual Performance by a Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2016-02-12,2016-02-13,1,0,879,0,0,0\r\n300,stephanie harvey,stephanie,harvey,2013-11-08,Female,1978-08-31,37,25 - 45,Caucasian,0,3,0,0,0,-1,2013-11-07 02:53:47,2013-11-07 09:00:57,13021013MM10A,2013-11-07,,1,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2013-11-07,2013-11-07,0,0,875,0,0,0\r\n301,jason cypress,jason,cypress,2013-01-06,Male,1972-01-16,44,25 - 45,Caucasian,0,4,0,0,4,0,2013-01-06 04:51:37,2013-01-07 10:41:46,13000313MM10A,2013-01-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-06,Risk of Violence,4,Low,2013-01-06,2013-01-06,2013-01-07,4,1,1181,0,0,0\r\n308,adrean reid,adrean,reid,2013-03-26,Male,1988-08-11,27,25 - 45,African-American,0,2,0,0,0,-1,2013-03-25 12:25:41,2013-03-28 05:58:56,13004320CF10A,2013-03-25,,1,M,Criminal Mischief,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-26,Risk of Violence,3,Low,2013-03-26,2013-03-25,2013-03-28,0,2,1102,0,0,0\r\n310,winnie nerestant,winnie,nerestant,2013-10-29,Female,1988-04-13,28,25 - 45,African-American,0,8,0,0,0,0,2013-10-29 04:01:57,2013-11-27 06:51:07,13015115CF10A,2013-10-28,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-29,Risk of Violence,6,Medium,2013-10-29,2013-10-29,2013-11-27,0,29,885,0,0,0\r\n311,frank gadman,frank,gadman,2013-03-26,Male,1973-01-27,43,25 - 45,Caucasian,0,5,0,0,11,49,2013-05-14 01:49:40,2013-09-12 07:19:52,12017664CF10A,,2013-01-29,56,F,arrest case no charge,1,13009339MM10A,(M1),1,2013-05-13,Battery,2013-05-14,2013-09-12,,1,13009339MM10A,(M1),2013-05-13,Battery,Risk of Recidivism,5,Medium,2013-03-26,Risk of Violence,3,Low,2013-03-26,2013-09-12,2014-10-01,11,0,48,1,1,1\r\n315,damond craig,damond,craig,2013-03-20,Male,1977-06-11,38,25 - 45,African-American,0,1,0,0,2,-1,2013-03-19 04:21:06,2013-03-20 09:34:48,13004002CF10A,2013-03-19,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-05-20,2013-05-20,2,0,61,0,0,0\r\n316,justin castellanos,justin,castellanos,2014-02-26,Male,1989-03-16,27,25 - 45,Caucasian,0,4,0,0,2,-36,2014-01-21 10:31:38,2014-02-26 10:40:06,14000870CF10A,2014-01-21,,36,M,Trespass Struct/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-26,Risk of Violence,3,Low,2014-02-26,2014-01-21,2014-02-26,2,0,765,0,0,0\r\n317,jenay doe,jenay,doe,2013-01-02,Female,1987-10-07,28,25 - 45,African-American,0,9,0,0,1,-1,2013-01-01 06:27:15,2013-02-09 02:24:08,13000032CF10A,,2013-01-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-02,Risk of Violence,7,Medium,2013-01-02,2015-06-10,2015-08-28,1,38,889,0,0,0\r\n320,andreas fountain,andreas,fountain,2013-02-19,Male,1977-08-08,38,25 - 45,African-American,0,9,0,0,15,-1,2013-02-18 09:26:05,2013-02-20 03:43:56,13002469CF10A,2013-02-18,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-19,Risk of Violence,3,Low,2013-02-19,2013-02-18,2013-02-20,15,1,1137,0,0,0\r\n321,joshua edmond,joshua,edmond,2013-10-31,Male,1987-10-28,28,25 - 45,African-American,0,5,0,0,2,-1,2013-10-30 07:57:19,2013-10-31 01:45:23,07028509MM10A,2007-12-15,,2147,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-31,Risk of Violence,4,Low,2013-10-31,2013-10-30,2013-10-31,2,0,883,0,0,0\r\n322,clinton johnson,clinton,johnson,2013-01-10,Male,1971-02-08,45,Greater than 45,African-American,0,6,0,0,3,104,2013-04-24 12:56:21,2013-11-29 03:06:21,12016802CF10A,,2012-12-18,23,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-10,Risk of Violence,4,Low,2013-01-10,2013-04-24,2013-11-29,3,0,104,0,0,0\r\n323,williams rodriguez,williams,rodriguez,2013-01-04,Male,1987-06-14,28,25 - 45,Hispanic,0,2,0,0,0,,,,12026489MM10A,2012-12-30,,5,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-04,Risk of Violence,3,Low,2013-01-04,,,0,0,1183,0,0,0\r\n325,jon fried,jon,fried,2013-03-20,Male,1954-10-19,61,Greater than 45,Caucasian,0,1,0,0,1,-34,2013-02-14 11:17:01,2013-02-15 07:40:39,13002308CF10A,,2013-02-14,34,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-02-14,2013-02-15,1,0,1108,0,0,0\r\n326,tamara powers,tamara,powers,2014-01-13,Female,1964-12-08,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-12 08:37:58,2014-01-13 02:00:36,14001458MU10A,2014-01-12,,1,M,Driving Under The Influence,1,14010147MM10A,(M1),0,2014-07-01,Battery,2014-07-01,2014-09-06,,1,14010147MM10A,(M1),2014-07-01,Battery,Risk of Recidivism,1,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-07-01,2014-09-06,0,0,169,1,1,1\r\n327,matthew dukes,matthew,dukes,2013-10-31,Male,1965-01-27,51,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-10-30 11:27:14,2013-10-31 08:46:16,13020585MM10A,2013-10-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-31,Risk of Violence,2,Low,2013-10-31,2013-10-30,2013-10-31,0,0,883,0,0,0\r\n330,henson thomas,henson,thomas,2013-01-13,Male,1967-08-06,48,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-12 06:40:25,2013-01-13 09:03:52,13000573CF10A,2013-01-12,,1,F,Aggravated Battery (Firearm/Actual Possession),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0,0\r\n332,jessica charnel,jessica,charnel,2013-05-13,Female,1985-07-17,30,25 - 45,African-American,0,7,0,0,2,-1,2013-05-12 06:56:40,2013-05-15 02:06:25,13006795CF10A,2013-05-12,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-13,Risk of Violence,4,Low,2013-05-13,2013-05-12,2013-05-15,2,2,1054,0,0,0\r\n333,tumeka warner,tumeka,warner,2013-11-05,Female,1974-04-25,41,25 - 45,African-American,0,6,0,0,5,0,2013-11-05 02:09:51,2013-11-05 07:57:55,13020890MM10A,2013-11-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-05,Risk of Violence,3,Low,2013-11-05,2013-11-05,2013-11-05,5,0,878,0,0,0\r\n335,kip stubbs,kip,stubbs,2013-02-17,Male,1979-04-03,37,25 - 45,African-American,0,1,0,0,0,-1,2013-02-16 07:22:50,2013-02-18 02:10:02,13003388MM10A,2013-02-16,,1,M,Battery,1,15007263MM10A,(M1),0,2015-07-07,Battery,2015-07-07,2015-07-20,,1,15007263MM10A,(M1),2015-07-07,Battery,Risk of Recidivism,1,Low,2013-02-17,Risk of Violence,1,Low,2013-02-17,2015-07-07,2015-07-20,0,1,870,1,0,0\r\n337,shawn siler,shawn,siler,2013-05-07,Male,1961-08-23,54,Greater than 45,African-American,0,9,0,0,11,-1,2013-05-06 08:51:14,2013-09-13 05:58:39,13006472CF10A,2013-05-06,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-07,Risk of Violence,9,High,2013-05-07,2013-05-06,2013-09-13,11,129,1060,0,0,0\r\n338,kriston douglas,kriston,douglas,2013-05-09,Male,1992-08-26,23,Less than 25,African-American,0,9,0,0,2,-1,2013-05-08 10:09:34,2013-07-19 06:36:57,13006694CF10A,2013-05-08,,1,F,Robbery / Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-09,Risk of Violence,5,Medium,2013-05-09,2013-05-08,2013-07-19,2,71,1058,0,0,0\r\n344,tania quinonez,tania,quinonez,2014-01-25,Male,1974-08-07,41,25 - 45,African-American,0,1,0,0,0,0,2014-01-25 09:44:01,2014-01-26 06:31:19,14001403MM10A,2014-01-25,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-25,Risk of Violence,1,Low,2014-01-25,2014-01-25,2014-01-26,0,1,797,0,0,0\r\n345,edward connell,edward,connell,2013-05-16,Male,1964-02-10,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-15 11:15:03,2013-05-16 08:50:44,13006960CF10A,2013-05-15,,1,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-16,Risk of Violence,1,Low,2013-05-16,2013-05-15,2013-05-16,0,0,1051,0,0,0\r\n348,robert dukes,robert,dukes,2014-02-04,Male,1964-02-12,52,Greater than 45,African-American,0,4,0,0,0,-1,2014-02-03 03:50:35,2014-02-17 02:20:23,14001502CF10A,2014-02-03,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-04,Risk of Violence,3,Low,2014-02-04,2014-02-03,2014-02-17,0,13,787,0,0,0\r\n349,michael cunningham,michael,cunningham,2013-05-17,Male,1987-07-21,28,25 - 45,Caucasian,0,1,0,0,1,-3,2013-05-14 04:20:05,2013-05-17 10:53:34,09011413CF10A,,2013-05-14,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-17,Risk of Violence,2,Low,2013-05-17,2013-05-14,2013-05-17,1,0,1050,0,0,0\r\n350,willie sims,willie,sims,2014-08-06,Male,1985-10-26,30,25 - 45,African-American,0,9,0,2,11,-1,2014-08-05 03:19:41,2014-08-06 08:40:28,14011853MM10A,2014-08-05,,1,M,Battery,1,14017107MM10A,(M1),0,2014-12-03,Trespass After Warning,2014-12-03,2014-12-09,,1,15000025CF10A,(F1),2014-12-20,Robbery W/Firearm,Risk of Recidivism,9,High,2014-08-06,Risk of Violence,4,Low,2014-08-06,2014-12-03,2014-12-09,11,0,119,1,1,1\r\n351,bret petit,bret,petit,2013-09-27,Male,1987-05-13,28,25 - 45,Caucasian,0,5,0,0,1,0,2013-09-27 04:35:20,2013-10-03 08:39:37,13013598CF10A,2013-09-27,,0,F,Criminal Mischief,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-27,Risk of Violence,3,Low,2013-09-27,2013-09-27,2013-10-03,1,6,917,0,0,0\r\n354,william st fleur,william,st fleur,2013-02-22,Male,1993-09-29,22,Less than 25,African-American,0,4,0,0,0,-1,2013-02-21 03:42:13,2013-02-22 01:52:11,13002685CF10A,2013-02-21,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-22,Risk of Violence,6,Medium,2013-02-22,2013-02-21,2013-02-22,0,0,1134,0,0,0\r\n355,gylier lewis,gylier,lewis,2013-03-05,Male,1985-05-18,30,25 - 45,African-American,0,2,0,0,4,0,2013-03-05 04:44:39,2013-03-05 01:41:22,13003312CF10A,2013-03-05,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-05,Risk of Violence,2,Low,2013-03-05,2013-03-05,2013-03-05,4,0,1123,0,0,0\r\n356,giovanni potesta,giovanni,potesta,2013-11-03,Male,1990-06-29,25,25 - 45,Hispanic,0,4,0,0,4,0,2013-11-03 02:47:28,2013-11-04 07:59:32,13015319CF10A,2013-11-03,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-03,Risk of Violence,4,Low,2013-11-03,2013-11-03,2013-11-04,4,1,880,0,0,0\r\n359,gerald magnus,gerald,magnus,2013-12-17,Male,1983-05-20,32,25 - 45,African-American,0,9,1,0,14,-1,2013-12-16 05:05:35,2013-12-17 08:47:25,13017383CF10A,2013-12-16,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-12-17,Risk of Violence,8,High,2013-12-17,2013-12-16,2013-12-17,14,0,836,0,0,0\r\n360,devonn singletary,devonn,singletary,2013-09-11,Male,1989-08-21,26,25 - 45,African-American,0,8,1,0,4,649,2015-06-22 09:31:25,2015-09-06 07:25:45,09001823MM30A,2009-06-02,,1562,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-11,Risk of Violence,6,Medium,2013-09-11,2015-06-22,2015-09-06,4,0,649,0,0,0\r\n361,michael gellert,michael,gellert,2013-01-16,Male,1962-11-03,53,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-15 05:53:17,2013-01-16 07:01:06,13001030MM10A,2013-01-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-16,Risk of Violence,1,Low,2013-01-16,2013-01-15,2013-01-16,1,0,1171,0,0,0\r\n364,jose louis,jose,louis,2013-09-06,Male,1990-09-08,25,25 - 45,African-American,0,3,0,0,0,0,2013-09-06 01:00:30,2013-09-06 09:12:00,13012559CF10A,2013-09-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-09-06,2013-09-06,0,0,938,0,0,0\r\n369,patria barnes,patria,barnes,2013-12-09,Female,1978-06-06,37,25 - 45,Other,0,1,0,0,0,-1,2013-12-08 01:55:28,2013-12-09 02:00:59,13022717MM10A,2013-12-07,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,1,Low,2013-12-09,2013-12-08,2013-12-09,0,0,844,0,0,0\r\n372,claire aspelly,claire,aspelly,2013-10-23,Female,1975-06-08,40,25 - 45,Other,0,2,0,0,3,-1,2013-10-22 09:03:15,2013-10-23 09:05:27,13014829CF10A,2013-10-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-23,Risk of Violence,1,Low,2013-10-23,2013-10-22,2013-10-23,3,0,891,0,0,0\r\n374,anthony kasprow,anthony,kasprow,2014-03-11,Male,1980-01-31,36,25 - 45,Caucasian,0,7,0,0,8,150,2014-08-08 04:01:22,2014-08-30 08:45:38,14003451CF10A,2014-03-11,,0,F,Felony Driving While Lic Suspd,1,14012031MM10A,(M1),0,2014-08-08,Battery,2014-08-08,2014-08-30,,1,14012031MM10A,(M1),2014-08-08,Battery,Risk of Recidivism,7,Medium,2014-03-11,Risk of Violence,9,High,2014-03-11,2014-08-08,2014-08-30,8,0,150,1,1,1\r\n375,michael mackrell,michael,mackrell,2014-02-12,Male,1985-05-14,30,25 - 45,Caucasian,0,2,0,0,4,-140,2013-09-25 02:54:17,2013-11-26 12:02:49,13013491CF10A,2013-09-25,,140,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-12,Risk of Violence,2,Low,2014-02-12,2013-09-25,2013-11-26,4,0,779,0,0,0\r\n376,mark plummer,mark,plummer,2014-03-18,Male,1993-12-22,22,Less than 25,African-American,0,9,0,0,3,161,2014-08-26 09:15:02,2014-08-27 04:21:56,13016165MM10A,2013-08-22,,208,M,Prowling/Loitering,1,14016921TC10A,(M2),128,2014-04-20,Unlaw LicTag/Sticker Attach,2014-08-26,2014-08-27,,1,14017564MM10A,(M1),2014-12-14,Battery,Risk of Recidivism,9,High,2014-03-18,Risk of Violence,9,High,2014-03-18,2016-03-05,2016-03-21,3,0,33,1,1,1\r\n377,ashley emond,ashley,emond,2013-09-30,Female,1991-05-18,24,Less than 25,Caucasian,0,7,0,0,1,-32,2013-08-29 02:32:59,2013-09-27 06:25:27,13016565MM10A,2013-08-29,,32,M,Battery,1,14015676MM10A,(M1),0,2014-10-29,Battery,2014-10-29,2014-10-30,,1,14015676MM10A,(M1),2014-10-29,Battery,Risk of Recidivism,7,Medium,2013-09-30,Risk of Violence,5,Medium,2013-09-30,2014-10-29,2014-10-30,1,0,394,1,1,1\r\n379,andrea rojas,andrea,rojas,2013-03-09,Female,1984-10-16,31,25 - 45,Hispanic,0,2,0,0,0,-1,2013-03-08 09:57:50,2013-03-09 07:56:27,13004727MM10A,2013-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-09,Risk of Violence,2,Low,2013-03-09,2013-03-08,2013-03-09,0,0,1119,0,0,0\r\n383,david suarez,david,suarez,2013-02-04,Male,1992-02-06,24,Less than 25,Hispanic,0,8,0,0,0,-3,2013-02-01 09:51:10,2013-02-02 01:42:28,13002376MM10A,2013-02-01,,3,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-04,Risk of Violence,7,Medium,2013-02-04,2013-02-01,2013-02-02,0,0,1152,0,0,0\r\n384,calvin ellis,calvin,ellis,2014-04-01,Male,1987-01-22,29,25 - 45,African-American,0,3,0,0,1,-1,2014-03-31 02:14:12,2014-04-01 01:22:49,14005495MM10A,2014-03-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-04-01,Risk of Violence,3,Low,2014-04-01,2014-03-31,2014-04-01,1,0,731,0,0,0\r\n385,tyler tenney,tyler,tenney,2013-11-18,Male,1995-07-14,20,Less than 25,African-American,0,8,0,0,1,-1,2013-11-17 04:24:59,2013-11-18 07:25:07,13015983CF10A,2013-11-17,,1,F,Carrying Concealed Firearm,1,14002931CF10A,(F3),0,2014-03-02,Possession Of Methamphetamine,2014-03-02,2014-07-01,,1,14002931CF10A,(F3),2014-03-02,Felony Battery (Dom Strang),Risk of Recidivism,8,High,2013-11-18,Risk of Violence,7,Medium,2013-11-18,2014-03-02,2014-07-01,1,0,104,1,1,1\r\n389,johnny toussaint,johnny,toussaint,2013-03-12,Male,1976-11-20,39,25 - 45,Other,0,1,0,0,0,-1,2013-03-11 10:17:29,2013-03-12 07:59:36,13003569CF10A,2013-03-11,,1,F,Throw In Occupied Dwell,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-10-02,2013-10-03,0,0,204,0,0,0\r\n390,antonio barnes,antonio,barnes,2013-08-07,Male,1988-06-03,27,25 - 45,African-American,0,4,0,0,4,-1,2013-08-06 09:00:30,2013-08-07 08:23:22,13010054CF10A,,2013-08-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-07,Risk of Violence,4,Low,2013-08-07,2015-07-08,2015-07-21,4,0,700,0,0,0\r\n392,gershon rapoport,gershon,rapoport,2013-07-16,Male,1984-09-15,31,25 - 45,Caucasian,0,4,0,0,2,812,2015-10-06 11:57:33,2015-10-17 07:38:17,08008163MM10A,,2010-10-04,1016,M,arrest case no charge,1,15012910CF10A,(F3),0,2015-10-06,Possession of Cocaine,2015-10-06,2015-10-17,,0,,,,,Risk of Recidivism,4,Low,2013-07-16,Risk of Violence,3,Low,2013-07-16,2015-10-06,2015-10-17,2,0,812,1,0,0\r\n393,ruth etienne,ruth,etienne,2013-12-03,Female,1978-08-23,37,25 - 45,African-American,0,1,0,0,2,0,2013-12-03 12:48:34,2013-12-04 07:43:54,13016786CF10A,,2013-12-03,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-03,Risk of Violence,1,Low,2013-12-03,2014-09-23,2014-10-07,2,1,294,0,0,0\r\n396,dominick akinpello,dominick,akinpello,2014-02-19,Male,1995-04-20,20,Less than 25,African-American,0,8,0,0,0,-1,2014-02-18 09:37:20,2014-02-21 04:07:45,14002312CF10A,2014-02-18,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-19,Risk of Violence,6,Medium,2014-02-19,2014-02-18,2014-02-21,0,2,772,0,0,0\r\n398,sebastian claros,sebastian,claros,2013-04-20,Male,1994-04-16,22,Less than 25,Hispanic,0,7,0,1,0,0,2013-04-20 02:16:15,2013-04-22 03:48:37,13005681CF10A,2013-04-20,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-20,Risk of Violence,6,Medium,2013-04-20,2013-06-25,2013-07-02,0,2,66,0,0,0\r\n399,karen storey-broderick,karen,storey-broderick,2013-08-02,Female,1963-09-25,52,Greater than 45,African-American,0,1,0,0,0,-1,2013-08-01 10:03:28,2013-08-02 02:00:46,13010773CF10A,2013-08-01,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,2013-08-01,2013-08-02,0,0,973,0,0,0\r\n402,roselia scott,roselia,scott,2013-11-13,Female,1967-08-30,48,Greater than 45,African-American,0,2,0,0,0,-1,2013-11-12 10:24:10,2013-11-14 06:47:41,13015723CF10A,2013-11-12,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-13,Risk of Violence,3,Low,2013-11-13,2013-11-12,2013-11-14,0,1,870,0,0,0\r\n404,daniel carvallo,daniel,carvallo,2013-04-20,Male,1990-07-20,25,25 - 45,Caucasian,0,5,0,0,0,0,2013-04-20 02:39:55,2013-04-20 07:15:12,13005683CF10A,2013-04-19,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-20,Risk of Violence,4,Low,2013-04-20,2014-04-10,2014-04-15,0,0,355,0,0,0\r\n405,gary hrinda,gary,hrinda,2013-04-08,Male,1988-06-06,27,25 - 45,Caucasian,0,6,0,0,0,-1,2013-04-07 11:02:06,2013-04-09 04:14:39,13004978CF10A,2013-04-07,,1,F,Grand Theft in the 3rd Degree,1,13015848CF10A,(F3),0,2013-11-14,Aggravated Assault W/Dead Weap,2013-11-14,2014-07-14,,1,13015848CF10A,(F3),2013-11-14,Aggravated Assault W/Dead Weap,Risk of Recidivism,6,Medium,2013-04-08,Risk of Violence,7,Medium,2013-04-08,2013-11-14,2014-07-14,0,1,220,1,1,1\r\n408,genny robbins,genny,robbins,2013-12-31,Female,1993-05-16,22,Less than 25,Caucasian,0,3,0,0,1,-1,2013-12-30 10:48:07,2013-12-31 09:49:50,13017994CF10A,2013-12-30,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-31,Risk of Violence,4,Low,2013-12-31,2013-12-30,2013-12-31,1,0,822,0,0,0\r\n409,laroyce odom,laroyce,odom,2014-01-24,Male,1980-12-19,35,25 - 45,African-American,0,10,0,0,2,,,,14001155CF10A,,2014-01-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-24,Risk of Violence,8,High,2014-01-24,2004-06-16,2005-03-04,2,0,798,0,0,0\r\n410,john provenzano,john,provenzano,2013-09-06,Male,1984-04-04,32,25 - 45,Caucasian,0,4,0,0,2,-232,2013-01-17 09:43:27,2013-02-26 11:12:02,12017006CF10A,,2013-01-17,232,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-01-17,2013-02-26,2,0,938,0,0,0\r\n411,jarah king,jarah,king,2013-08-05,Female,1975-03-11,41,25 - 45,African-American,0,3,0,0,2,-1,2013-08-04 07:42:27,2013-08-05 06:31:46,13010816CF10A,2013-08-04,,1,M,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-05,Risk of Violence,1,Low,2013-08-05,2013-08-04,2013-08-05,2,0,970,0,0,0\r\n414,sarah guerrier,sarah,guerrier,2014-01-29,Female,1990-09-14,25,25 - 45,Other,0,2,0,0,0,-1,2014-01-28 10:39:22,2014-01-29 08:33:42,14001235CF10A,2014-01-28,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-29,Risk of Violence,3,Low,2014-01-29,2014-01-28,2014-01-29,0,0,793,0,0,0\r\n415,james martin,james,martin,2013-04-11,Male,1971-10-07,44,25 - 45,African-American,0,7,0,0,24,53,2013-06-03 12:59:33,2013-09-29 05:18:00,13013026TC10A,2013-03-11,,31,M,Opert With Susp DL 2nd Offens,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-11,Risk of Violence,3,Low,2013-04-11,2013-06-03,2013-09-29,24,0,53,0,0,0\r\n417,alfranzwell myers,alfranzwell,myers,2013-04-05,Male,1972-05-07,43,25 - 45,African-American,0,1,0,0,0,-1,2013-04-04 07:55:57,2013-05-15 08:09:02,13004852CF10A,2013-04-04,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-05,Risk of Violence,1,Low,2013-04-05,2013-04-04,2013-05-15,0,40,1092,0,0,0\r\n423,christopher wolter,christopher,wolter,2014-03-05,Male,1978-05-10,37,25 - 45,Caucasian,0,1,0,0,3,-4,2014-03-01 11:39:37,2014-03-04 09:02:34,13015173CF10A,,2014-03-01,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-05,Risk of Violence,1,Low,2014-03-05,2014-03-01,2014-03-04,3,0,758,0,0,0\r\n424,immanuel crafton,immanuel,crafton,2014-06-20,Male,1987-05-17,28,25 - 45,African-American,0,4,0,0,3,299,2015-04-15 09:07:50,2015-04-18 02:29:53,14001214MM40A,2014-03-12,,100,M,Possess Cannabis/20 Grams Or Less,1,15004954CF10A,(F2),0,2015-04-15,Aggravated Battery / Pregnant,2015-04-15,2015-04-18,,1,15004954CF10A,(F2),2015-04-15,Aggravated Battery / Pregnant,Risk of Recidivism,4,Low,2014-06-20,Risk of Violence,3,Low,2014-06-20,2015-04-15,2015-04-18,3,0,299,1,1,1\r\n425,karl weimar,karl,weimar,2013-04-18,Male,1946-03-20,70,Greater than 45,Caucasian,0,1,0,0,1,-13,2013-04-05 11:19:07,2013-04-18 10:45:47,13006582MM10A,2013-04-05,,13,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2013-04-05,2013-04-18,1,0,1079,0,0,0\r\n428,john fox,john,fox,2013-05-01,Male,1970-02-13,46,Greater than 45,Caucasian,0,4,0,0,3,-1,2013-04-30 04:31:44,2013-05-14 09:41:21,06021703CF10A,,2013-04-30,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2013-04-30,2013-05-14,3,13,1066,0,0,0\r\n430,milot bastian,milot,bastian,2014-07-15,Male,1989-09-13,26,25 - 45,African-American,0,8,0,0,1,-1,2014-07-14 06:15:12,2014-07-16 02:43:22,14010769MM10A,2014-07-14,,1,M,Battery,1,15011432CF10A,(F3),0,2015-09-03,Tamper With Witness/Victim/CI,2015-09-03,2015-09-14,,1,15011432CF10A,(F3),2015-09-03,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2014-07-15,Risk of Violence,6,Medium,2014-07-15,2015-09-03,2015-09-14,1,1,415,1,1,1\r\n432,dale quimby,dale,quimby,2014-01-20,Male,1982-01-10,34,25 - 45,Caucasian,0,4,0,0,5,-1,2014-01-19 03:20:12,2014-01-20 07:58:57,14000963MM10A,2014-01-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-20,Risk of Violence,4,Low,2014-01-20,2014-01-19,2014-01-20,5,0,802,0,0,0\r\n435,vladimir ducard,vladimir,ducard,2013-12-04,Male,1981-12-15,34,25 - 45,African-American,0,4,0,0,5,-1,2013-12-03 09:45:00,2013-12-04 08:51:32,13022481MM10A,2013-12-03,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-04,Risk of Violence,4,Low,2013-12-04,2013-12-03,2013-12-04,5,0,849,0,0,0\r\n439,widner francois,widner,francois,2013-10-25,Male,1985-11-11,30,25 - 45,African-American,0,1,0,0,2,-83,2013-08-03 02:56:01,2013-10-25 10:49:05,13004490CF10A,,2013-08-03,83,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-25,Risk of Violence,2,Low,2013-10-25,2013-08-03,2013-10-25,2,0,889,0,0,0\r\n441,mohammed alshibi,mohammed,alshibi,2013-04-09,Male,1991-06-20,24,Less than 25,Other,0,3,0,0,0,-1,2013-04-08 08:55:48,2013-04-09 10:21:22,13005050CF10A,2013-04-08,,1,F,Failure To Return Hired Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-09,Risk of Violence,5,Medium,2013-04-09,2013-04-08,2013-04-09,0,0,1088,0,0,0\r\n442,frans barens,frans,barens,2014-06-30,Male,1982-05-23,33,25 - 45,Caucasian,0,3,0,0,1,-93,2014-03-29 07:09:12,2014-03-29 09:12:15,14012358MU10A,2014-03-29,,93,M,Driving Under The Influence,1,15010566CF10A,(F3),0,2015-08-16,Tamper With Witness/Victim/CI,2015-08-16,2015-08-17,,1,15010566CF10A,(F3),2015-08-16,Felony Battery (Dom Strang),Risk of Recidivism,3,Low,2014-06-30,Risk of Violence,2,Low,2014-06-30,2015-08-16,2015-08-17,1,0,412,1,1,1\r\n445,orlando gomez,orlando,gomez,2013-02-23,Male,1957-11-28,58,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-02-22 07:47:53,2013-02-24 02:27:52,13002760CF10A,2013-02-22,,1,F,Agg Fleeing/Eluding High Speed,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-24,2,1,1133,0,0,0\r\n446,mikerlie debe,mikerlie,debe,2013-01-01,Female,1994-10-09,21,Less than 25,African-American,0,6,0,0,0,0,2013-01-01 04:17:22,2013-01-02 01:14:43,13000062MM10A,2013-01-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-01,Risk of Violence,7,Medium,2013-01-01,2013-01-01,2013-01-02,0,1,1186,0,0,0\r\n450,ernest kinard,ernest,kinard,2013-08-09,Male,1994-08-06,21,Less than 25,African-American,0,5,0,0,1,-36,2013-07-04 07:01:53,2013-08-09 11:23:41,13009398CF10A,2013-07-04,,36,F,Attempted Robbery  No Weapon,1,16003477CF10A,(F2),0,2016-03-21,,2016-03-21,2016-04-01,,0,,,,,Risk of Recidivism,5,Medium,2013-08-09,Risk of Violence,7,Medium,2013-08-09,2016-03-21,2016-04-01,1,0,955,1,0,0\r\n452,steven lux,steven,lux,2013-01-05,Male,1953-06-15,62,Greater than 45,Caucasian,0,1,0,0,0,0,2013-01-05 04:35:31,2013-01-07 03:18:03,13000208CF10A,2013-01-05,,0,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-05,Risk of Violence,1,Low,2013-01-05,2014-03-25,2014-03-26,0,2,444,0,0,0\r\n456,chandra hintz,chandra,hintz,2013-12-02,Male,1979-03-04,37,25 - 45,Caucasian,0,3,0,0,5,-1,2013-12-01 04:23:01,2013-12-12 03:25:01,13016617CF10A,2013-12-01,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-12,5,10,851,0,0,0\r\n459,lunie mathurin,lunie,mathurin,2013-12-01,Female,1983-05-22,32,25 - 45,African-American,0,1,0,0,5,0,2013-12-01 12:02:58,2013-12-01 09:53:20,13016612CF10A,2013-11-29,,2,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-01,Risk of Violence,1,Low,2013-12-01,2013-12-01,2013-12-01,5,0,852,0,0,0\r\n461,juan reyes,juan,reyes,2013-12-31,Male,1992-09-30,23,Less than 25,Hispanic,0,3,0,0,0,-1,2013-12-30 11:58:41,2014-02-14 10:05:11,13017986CF10A,2013-12-30,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-31,Risk of Violence,5,Medium,2013-12-31,2015-04-08,2015-04-22,0,45,463,0,0,0\r\n462,keishon reeves,keishon,reeves,2013-04-08,Male,1988-06-05,27,25 - 45,African-American,0,1,0,0,0,0,2013-04-08 12:40:45,2013-04-09 07:53:30,13006656MM10A,2013-04-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-08,Risk of Violence,2,Low,2013-04-08,2013-04-08,2013-04-09,0,1,1089,0,0,0\r\n465,melissa davis,melissa,davis,2013-05-28,Female,1974-03-11,42,25 - 45,Caucasian,0,2,0,0,0,-3,2013-05-25 04:27:15,2013-05-26 07:10:19,13007473CF10A,2013-05-25,,3,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,1,Low,2013-05-28,2013-07-24,2013-08-12,0,0,57,0,0,0\r\n467,franki vixama,franki,vixama,2013-03-16,Male,1991-07-21,24,Less than 25,Other,0,10,1,0,9,-1,2013-03-15 12:03:21,2013-03-20 02:58:22,13003838CF10A,2013-03-15,,1,F,Resist Officer w/Violence,1,13010824MM10A,(M1),1,2013-06-04,Resist/Obstruct W/O Violence,2013-06-05,2013-07-19,,1,13010824MM10A,(M2),2013-06-04,Assault,Risk of Recidivism,10,High,2013-03-16,Risk of Violence,10,High,2013-03-16,2013-03-15,2013-03-20,9,4,80,1,1,1\r\n468,seymour brown,seymour,brown,2014-01-14,Male,1988-04-23,27,25 - 45,African-American,0,2,0,0,0,0,2014-01-14 03:37:34,2014-01-31 09:03:48,14000626CF10A,2014-01-14,,0,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-14,Risk of Violence,3,Low,2014-01-14,2014-01-14,2014-01-31,0,17,808,0,0,0\r\n474,ann-marie cassagnol,ann-marie,cassagnol,2014-03-22,Female,1964-08-13,51,Greater than 45,Caucasian,0,1,0,0,0,0,2014-03-22 02:29:28,2014-03-23 09:07:31,14004060CF10A,2014-03-21,,1,M,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-22,2014-03-23,0,1,741,0,0,0\r\n475,stephen kushner,stephen,kushner,2013-12-11,Male,1959-11-10,56,Greater than 45,Caucasian,0,1,0,0,0,0,2013-12-11 03:02:20,2013-12-12 08:42:00,13017125CF10A,2013-12-10,,1,M,Battery On Parking Enfor Speci,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2013-12-11,2013-12-12,0,1,842,0,0,0\r\n478,patrick scott,patrick,scott,2013-04-25,Male,1986-09-04,29,25 - 45,African-American,0,9,0,0,7,-1,2013-04-24 05:02:29,2013-04-25 09:15:28,13001900CF10A,,2013-04-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-25,Risk of Violence,6,Medium,2013-04-25,2013-04-24,2013-04-25,7,0,1072,0,0,0\r\n481,david daffron,david,daffron,2013-10-03,Male,1963-02-19,53,Greater than 45,Caucasian,0,1,0,0,6,-176,2013-04-10 03:34:51,2013-10-01 05:23:18,13005144CF10A,,2013-04-10,176,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-04-10,2013-10-01,6,0,911,0,0,0\r\n484,kristopher thibault,kristopher,thibault,2013-02-22,Male,1988-06-24,27,25 - 45,Caucasian,0,5,0,0,8,-1,2013-02-21 07:20:51,2013-04-30 10:43:29,13002078CF10A,,2013-02-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-22,Risk of Violence,3,Low,2013-02-22,2014-02-27,2014-10-24,8,67,370,0,0,0\r\n485,lamuel forbes,lamuel,forbes,2013-03-26,Male,1992-03-15,24,Less than 25,African-American,0,9,1,0,2,-1,2013-03-25 02:04:33,2013-04-13 05:00:10,13004300CF10A,2013-03-25,,1,F,Burglary Structure Unoccup,1,13007869CF10A,(M1),0,2013-06-03,Resist/Obstruct W/O Violence,2013-06-03,2013-07-26,,1,14009712CF10A,(F3),2014-07-15,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2013-03-26,Risk of Violence,9,High,2013-03-26,2013-06-03,2013-07-26,2,18,69,1,1,1\r\n489,michael rosa,michael,rosa,2013-10-04,Male,1988-04-15,28,25 - 45,Caucasian,0,3,0,0,2,0,2013-10-04 01:55:36,2013-10-05 07:07:26,13018910MM10A,2013-10-03,,1,M,Battery,1,14009686TC30A,(M2),,2014-01-19,Driving License Suspended,,,,1,14017790MM10A,(M1),2014-11-27,Battery,Risk of Recidivism,3,Low,2013-10-04,Risk of Violence,4,Low,2013-10-04,2013-10-04,2013-10-05,2,1,107,1,1,1\r\n493,michael peter,michael,peter,2013-03-13,Male,1971-01-06,45,Greater than 45,African-American,0,1,0,0,1,,,,13003680CF10A,2013-03-12,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-13,Risk of Violence,1,Low,2013-03-13,,,1,0,1115,0,0,0\r\n494,carlos vasquez,carlos,vasquez,2013-08-02,Male,1995-01-17,21,Less than 25,Hispanic,0,5,1,0,3,-22,2013-07-11 04:30:33,2013-08-02 06:07:24,13009721CF10A,2013-07-11,,22,F,Grand Theft in the 3rd Degree,1,15011166MM10A,(M1),,2015-10-24,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-02,Risk of Violence,6,Medium,2013-08-02,2014-12-16,2015-01-09,3,0,501,0,0,0\r\n495,kia rodriquez,kia,rodriquez,2013-05-06,Female,1979-07-02,36,25 - 45,African-American,0,7,0,0,0,-1,2013-05-05 08:31:15,2013-05-17 08:35:57,13006433CF10A,2013-05-05,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-06,Risk of Violence,5,Medium,2013-05-06,2013-05-05,2013-05-17,0,11,1061,0,0,0\r\n497,helen carrillo,helen,carrillo,2013-04-04,Female,1992-06-09,23,Less than 25,Hispanic,0,3,0,0,1,0,2013-04-04 01:13:56,2013-04-04 11:28:44,13006418MM10A,2013-04-03,,1,M,Operating W/O Valid License,1,15022411TC10A,(M2),0,2015-07-07,Operating W/O Valid License,2015-07-07,2015-07-17,,0,,,,,Risk of Recidivism,3,Low,2013-04-04,Risk of Violence,4,Low,2013-04-04,2015-07-07,2015-07-17,1,0,824,1,0,0\r\n499,justin knoll,justin,knoll,2014-03-03,Male,1988-02-24,28,25 - 45,Caucasian,0,5,0,0,1,-4,2014-02-27 04:28:02,2014-02-28 08:49:55,14002778CF10A,2014-02-27,,4,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-03,Risk of Violence,3,Low,2014-03-03,2014-07-16,2014-07-17,1,0,135,0,0,0\r\n501,derek huffman,derek,huffman,2013-12-23,Male,1979-05-31,36,25 - 45,Caucasian,0,3,0,0,0,-1,2013-12-22 08:25:20,2013-12-23 01:09:26,13023661MM10A,2013-12-22,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-23,Risk of Violence,3,Low,2013-12-23,2013-12-22,2013-12-23,0,0,830,0,0,0\r\n502,theronardo williams,theronardo,williams,2014-03-13,Male,1992-04-02,24,Less than 25,African-American,0,3,0,0,0,-1,2014-03-12 07:36:15,2014-03-13 01:26:58,14003529CF10A,2014-03-12,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-13,Risk of Violence,4,Low,2014-03-13,2014-03-12,2014-03-13,0,0,750,0,0,0\r\n505,tracee chang-scott,tracee,chang-scott,2014-03-02,Male,1986-05-02,29,25 - 45,African-American,0,1,0,0,0,-1,2014-03-01 02:42:35,2014-03-02 08:38:51,14002914CF10A,2014-03-01,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-02,Risk of Violence,2,Low,2014-03-02,2014-03-01,2014-03-02,0,0,761,0,0,0\r\n509,marilyn cuello,marilyn,cuello,2013-03-22,Female,1986-04-16,30,25 - 45,Caucasian,0,6,0,0,0,0,2013-03-22 12:02:23,2013-03-26 09:46:14,13005576MM10A,2013-03-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-22,Risk of Violence,2,Low,2013-03-22,2013-03-22,2013-03-26,0,4,1106,0,0,0\r\n510,rafael magana,rafael,magana,2013-12-27,Male,1964-05-15,51,Greater than 45,Hispanic,0,1,0,0,1,-1,2013-12-26 04:15:54,2013-12-27 07:50:46,13023827MM10A,2013-12-25,,2,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-27,Risk of Violence,1,Low,2013-12-27,2013-12-26,2013-12-27,1,0,826,0,0,0\r\n511,hudson silva,hudson,silva,2013-12-05,Male,1983-03-08,33,25 - 45,Other,0,1,0,0,3,-94,2013-09-02 03:40:45,2013-09-05 04:28:45,13012376CF10A,2013-09-02,,94,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-05,Risk of Violence,1,Low,2013-12-05,2013-09-02,2013-09-05,3,0,848,0,0,0\r\n512,samantha brown,samantha,brown,2013-12-18,Female,1990-08-10,25,25 - 45,African-American,0,6,0,0,2,-86,2013-09-23 08:31:28,2013-09-25 07:03:03,13013459CF10A,,2013-09-23,86,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-18,Risk of Violence,5,Medium,2013-12-18,2015-06-09,2015-07-06,2,0,538,0,0,0\r\n516,frederick pinkney,frederick,pinkney,2013-02-16,Male,1983-09-14,32,25 - 45,African-American,0,9,1,0,12,-1,2013-02-15 12:13:14,2013-02-17 01:27:01,13002355CF10A,,2013-02-15,1,F,arrest case no charge,1,14007605TC10A,(M2),,2014-02-12,Driving License Suspended,,,,1,15000254CF10A,(F2),2015-01-06,Robbery / No Weapon,Risk of Recidivism,9,High,2013-02-16,Risk of Violence,7,Medium,2013-02-16,2013-02-15,2013-02-17,12,1,361,1,1,1\r\n517,quon gwynn,quon,gwynn,2014-01-31,Male,1992-06-15,23,Less than 25,African-American,0,6,0,1,1,0,2014-01-31 01:04:24,2014-02-01 03:16:14,14001353CF10A,2014-01-30,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-31,Risk of Violence,5,Medium,2014-01-31,2014-01-31,2014-02-01,1,1,791,0,0,0\r\n518,lee humphrey,lee,humphrey,2013-03-25,Male,1968-08-31,47,Greater than 45,African-American,0,3,0,0,3,0,2013-03-25 03:26:29,2013-03-25 07:55:24,13004314CF10A,2013-03-25,,0,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-25,Risk of Violence,2,Low,2013-03-25,2013-06-29,2013-06-30,3,0,96,0,0,0\r\n522,stephen harmon,stephen,harmon,2014-02-25,Male,1978-07-11,37,25 - 45,Caucasian,0,1,0,0,0,-1,2014-02-24 05:11:22,2014-03-15 05:53:52,14002620CF10A,2014-02-25,,0,F,Forging Bank Bills/Promis Note,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,1,Low,2014-02-25,2015-04-13,2015-04-15,0,18,412,0,0,0\r\n524,angel bravo,angel,bravo,2014-02-01,Male,1988-06-11,27,25 - 45,Hispanic,0,8,0,0,0,-1,2014-01-31 02:14:52,2014-02-02 04:25:26,14001734MM10A,2014-01-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-01,Risk of Violence,6,Medium,2014-02-01,2014-01-31,2014-02-02,0,1,790,0,0,0\r\n525,sarada mittapalli,sarada,mittapalli,2013-11-27,Male,1976-07-29,39,25 - 45,Other,0,1,0,0,0,-1,2013-11-26 06:08:42,2013-11-27 02:09:15,13022234MM10A,2013-11-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-27,Risk of Violence,1,Low,2013-11-27,2013-11-26,2013-11-27,0,0,856,0,0,0\r\n526,kayli wagner,kayli,wagner,2013-02-21,Female,1994-10-07,21,Less than 25,Caucasian,0,6,0,2,0,0,2013-02-21 05:16:18,2013-02-21 09:22:51,13002684CF10A,2013-02-21,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-21,Risk of Violence,8,High,2013-02-21,2013-02-21,2013-02-21,0,0,1135,0,0,0\r\n527,barry rabinowitz,barry,rabinowitz,2013-01-31,Male,1946-11-16,69,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-30 08:36:13,2013-01-31 07:20:04,13001514CF10A,2013-01-30,,1,M,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-31,Risk of Violence,1,Low,2013-01-31,2013-01-30,2013-01-31,0,0,1156,0,0,0\r\n530,robert yamin,robert,yamin,2013-11-07,Male,1994-06-29,21,Less than 25,Caucasian,0,6,0,0,2,-1,2013-11-06 07:01:58,2013-11-08 09:11:46,13015487CF10A,,2013-11-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-07,Risk of Violence,6,Medium,2013-11-07,2015-06-07,2015-06-10,2,1,577,0,0,0\r\n532,ryan carr,ryan,carr,2013-12-09,Male,1994-01-24,22,Less than 25,Caucasian,0,4,0,0,0,-2,2013-12-07 01:04:19,2013-12-07 02:19:36,13016886CF10A,2013-12-06,,3,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-09,Risk of Violence,5,Medium,2013-12-09,2013-12-07,2013-12-07,0,0,844,0,0,0\r\n537,mitchell miller,mitchell,miller,2013-10-15,Male,1966-08-19,49,Greater than 45,African-American,0,5,0,0,3,0,2013-10-15 12:10:18,2013-10-19 05:47:48,13014372CF10A,2013-10-14,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-15,Risk of Violence,4,Low,2013-10-15,2015-09-04,2015-09-09,3,4,689,0,0,0\r\n538,andrew flowers,andrew,flowers,2013-01-30,Male,1986-10-24,29,25 - 45,African-American,0,4,0,1,2,-1,2013-01-29 11:52:49,2013-03-21 07:00:48,13002104MM10A,2013-01-29,,1,M,Battery,1,15004089CF10A,(F3),0,2015-03-27,Possession of Cannabis,2015-03-27,2015-03-28,,0,,,,,Risk of Recidivism,4,Low,2013-01-30,Risk of Violence,3,Low,2013-01-30,2015-03-27,2015-03-28,2,50,786,1,0,0\r\n540,john cooper,john,cooper,2013-10-14,Female,1955-09-14,60,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-13 05:34:29,2013-10-14 02:36:01,13019421MM10A,2013-10-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-14,Risk of Violence,1,Low,2013-10-14,2013-10-13,2013-10-14,0,0,900,0,0,0\r\n541,peticia curtis,peticia,curtis,2013-02-05,Female,1989-10-15,26,25 - 45,African-American,0,10,0,0,0,,,,,,,,M,,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-05,Risk of Violence,10,High,2013-02-05,2013-03-30,2013-09-07,0,0,53,0,0,0\r\n543,rudolfo francisco,rudolfo,francisco,2014-04-05,Male,1981-07-06,34,25 - 45,Hispanic,0,5,0,0,2,47,2014-05-22 09:37:00,2014-12-16 06:22:02,12020160MM10A,,2013-07-08,271,M,arrest case no charge,1,14007140CF10A,(F3),0,2014-05-22,Stalking (Aggravated),2014-05-22,2014-12-16,,1,14007140CF10A,(F3),2014-05-22,Stalking (Aggravated),Risk of Recidivism,5,Medium,2014-04-05,Risk of Violence,2,Low,2014-04-05,2014-05-22,2014-12-16,2,0,47,1,1,1\r\n545,jamelia hutchinson,jamelia,hutchinson,2013-03-12,Female,1995-12-06,20,Less than 25,Other,1,4,0,0,1,-21,2013-02-19 08:48:32,2013-02-22 07:41:48,13002495CF10A,,2013-02-19,21,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-12,Risk of Violence,7,Medium,2013-03-12,2014-10-29,2015-01-26,1,0,596,0,0,0\r\n546,jose escobar,jose,escobar,2013-04-22,Male,1980-03-17,36,25 - 45,Hispanic,0,3,0,0,1,0,2013-04-22 02:33:46,2013-07-26 05:05:36,13005775CF10A,2013-04-21,,1,F,Felony/Driving Under Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-22,Risk of Violence,2,Low,2013-04-22,2013-09-29,2013-09-29,1,95,160,0,0,0\r\n547,christopher loosier,christopher,loosier,2013-05-04,Male,1985-07-07,30,25 - 45,Caucasian,0,4,0,0,0,0,2013-05-04 12:45:31,2013-05-06 08:53:01,13006396CF10A,2013-05-03,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-04,Risk of Violence,3,Low,2013-05-04,2013-05-04,2013-05-06,0,2,1063,0,0,0\r\n548,newton smith,newton,smith,2013-06-17,Male,1995-01-28,21,Less than 25,African-American,0,3,1,0,1,-1,2013-06-16 12:36:42,2013-06-16 07:01:42,13008471CF10A,2013-06-15,,2,F,Grand Theft in the 3rd Degree,1,16003711TC20A,(M2),,2016-01-20,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-17,Risk of Violence,6,Medium,2013-06-17,2013-06-16,2013-06-16,1,0,947,1,0,0\r\n553,edward gelsey,edward,gelsey,2013-05-08,Male,1959-01-31,57,Greater than 45,African-American,0,8,0,0,18,,,,08000963CF10A,,2008-04-30,1834,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-08,Risk of Violence,7,Medium,2013-05-08,2002-08-20,2003-11-16,18,0,1059,0,0,0\r\n561,jacob maynard,jacob,maynard,2014-02-04,Male,1982-01-17,34,25 - 45,Caucasian,0,1,0,0,1,0,2014-02-04 03:26:12,2014-02-04 08:29:18,14001956MM10A,2014-02-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-02-04,2014-02-04,1,0,787,0,0,0\r\n567,daria demarinis,daria,demarinis,2013-12-22,Female,1962-11-08,53,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-12-21 05:26:48,2013-12-22 01:41:48,13023548MM10A,2013-12-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-22,Risk of Violence,1,Low,2013-12-22,2013-12-21,2013-12-22,1,0,831,0,0,0\r\n569,stephanie williams,stephanie,williams,2013-12-14,Female,1991-10-11,24,Less than 25,African-American,0,4,0,0,0,-1,2013-12-13 03:13:07,2013-12-14 07:19:53,13017250CF10A,2013-12-13,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-14,Risk of Violence,4,Low,2013-12-14,2013-12-13,2013-12-14,0,0,839,0,0,0\r\n572,frantz pointdujour,frantz,pointdujour,2013-06-12,Male,1974-01-10,42,25 - 45,African-American,0,1,0,0,1,-12,2013-05-31 04:44:14,2013-06-04 10:17:31,13007775CF10A,,2013-05-30,13,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-12,Risk of Violence,1,Low,2013-06-12,2013-05-31,2013-06-04,1,0,1024,0,0,0\r\n573,andre small,andre,small,2013-04-03,Male,1987-10-01,28,25 - 45,African-American,0,3,0,0,1,-1,2013-04-02 12:18:46,2013-04-04 07:54:22,13006354MM10A,2013-04-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-03,Risk of Violence,3,Low,2013-04-03,2013-04-02,2013-04-04,1,1,1094,0,0,0\r\n574,brad dolph,brad,dolph,2014-02-28,Male,1992-03-13,24,Less than 25,Caucasian,0,4,0,0,1,-36,2014-01-23 01:33:51,2014-02-28 11:14:41,14001265MM10A,2014-01-22,,37,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-28,Risk of Violence,4,Low,2014-02-28,2014-01-23,2014-02-28,1,0,763,0,0,0\r\n579,damien waller,damien,waller,2013-02-05,Male,1994-02-10,22,Less than 25,African-American,0,9,0,0,4,-1,2013-02-04 02:09:53,2013-10-22 06:51:11,13001727CF10A,2013-02-04,,1,F,Grand Theft in the 3rd Degree,1,15000864CF10A,(F3),0,2015-01-20,Robbery Sudd Snatch No Weapon,2015-01-20,2015-08-06,,1,15000864CF10A,(F3),2015-01-20,Robbery Sudd Snatch No Weapon,Risk of Recidivism,9,High,2013-02-05,Risk of Violence,9,High,2013-02-05,2015-01-20,2015-08-06,4,574,714,1,1,1\r\n580,tyler gay,tyler,gay,2013-08-12,Male,1994-08-04,21,Less than 25,Caucasian,0,7,0,0,3,-8,2013-08-04 03:23:17,2013-08-10 01:02:53,13010743MM10A,,2013-08-04,8,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-12,Risk of Violence,8,High,2013-08-12,2013-08-04,2013-08-10,3,0,963,0,0,0\r\n584,devaughn bryan,devaughn,bryan,2013-05-16,Male,1980-04-29,35,25 - 45,African-American,0,5,0,0,2,-1,2013-05-15 04:19:38,2013-05-20 09:26:57,13006929CF10A,2013-05-15,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-16,Risk of Violence,5,Medium,2013-05-16,2013-05-15,2013-05-20,2,4,1051,0,0,0\r\n586,marvin butler,marvin,butler,2013-08-07,Male,1962-12-30,53,Greater than 45,African-American,0,1,0,0,2,-1,2013-08-06 07:34:06,2013-08-07 01:05:18,13011035CF10A,2013-08-06,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-07,Risk of Violence,1,Low,2013-08-07,2013-08-06,2013-08-07,2,0,968,0,0,0\r\n587,roger browne,roger,browne,2014-02-11,Male,1955-10-17,60,Greater than 45,African-American,0,1,0,0,1,,,,07006838CF10A,,2010-11-16,1183,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-11,Risk of Violence,1,Low,2014-02-11,2010-06-22,2010-11-22,1,0,780,0,0,0\r\n588,justin nowell,justin,nowell,2013-08-16,Male,1987-02-28,29,25 - 45,African-American,0,4,0,0,7,-1,2013-08-15 04:47:18,2013-08-16 10:21:01,13011483CF10A,2013-08-15,,1,F,Possession of Cocaine,1,16000435MM20A,(M1),,2016-01-28,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-16,Risk of Violence,3,Low,2013-08-16,2015-09-28,2015-10-02,7,0,773,0,0,0\r\n590,andrew calderaro,andrew,calderaro,2013-02-09,Male,1967-10-07,48,Greater than 45,Caucasian,1,8,0,0,23,-1,2013-02-08 07:54:34,2014-02-04 06:26:47,13002009CF10A,2013-02-08,,1,F,Felony Petit Theft,1,14017095CF10A,(F3),,2014-12-28,Felony Petit Theft,,,,1,14017095CF10A,(M1),2014-12-28,Battery,Risk of Recidivism,8,High,2013-02-09,Risk of Violence,5,Medium,2013-02-09,2014-02-04,2014-11-11,23,640,687,1,1,1\r\n594,evelyn rivera,evelyn,rivera,2013-03-25,Female,1964-04-17,52,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-25 04:21:35,2013-03-25 08:42:53,13005850MM10A,2013-03-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-03-25,2013-03-25,0,0,1103,0,0,0\r\n598,willie wilson,willie,wilson,2013-02-13,Male,1987-09-14,28,25 - 45,African-American,0,9,0,0,5,0,2013-02-13 02:14:41,2013-04-05 08:12:59,12002931CF10A,,2013-02-13,0,F,arrest case no charge,1,15026130TC10A,(M2),0,2015-09-22,Operating W/O Valid License,2015-09-22,2015-10-07,,0,,,,,Risk of Recidivism,9,High,2013-02-13,Risk of Violence,6,Medium,2013-02-13,2015-09-22,2015-10-07,5,51,951,1,0,0\r\n599,daniel campos,daniel,campos,2013-12-22,Male,1982-07-02,33,25 - 45,Caucasian,0,3,0,0,3,0,2013-12-22 01:14:52,2013-12-22 07:48:32,13023564MM10A,2013-12-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-22,Risk of Violence,1,Low,2013-12-22,2013-12-22,2013-12-22,3,0,831,0,0,0\r\n600,jessica soto,jessica,soto,2013-04-05,Female,1988-03-02,28,25 - 45,Hispanic,0,2,0,0,0,-1,2013-04-04 03:19:29,2013-04-06 12:28:11,13004844CF10A,,2013-04-04,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-05,Risk of Violence,2,Low,2013-04-05,2013-04-04,2013-04-06,0,1,1092,0,0,0\r\n603,christopher larmond,christopher,larmond,2013-04-05,Male,1987-04-09,29,25 - 45,African-American,1,5,0,0,2,-1,2013-04-04 11:24:09,2013-04-06 08:01:53,13004855CF10A,2013-04-04,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-05,Risk of Violence,5,Medium,2013-04-05,2013-04-04,2013-04-06,2,1,1092,0,0,0\r\n605,gueslly deravine,gueslly,deravine,2013-03-27,Male,1989-11-30,26,25 - 45,African-American,0,7,0,2,6,-34,2013-02-21 01:31:52,2013-02-21 07:44:48,13002675CF10A,2013-02-20,,35,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-27,Risk of Violence,7,Medium,2013-03-27,2013-12-24,2014-02-10,6,0,272,0,0,0\r\n608,christopher tokarz,christopher,tokarz,2013-03-27,Male,1990-05-31,25,25 - 45,Caucasian,0,2,0,0,0,0,2013-03-27 02:09:08,2013-03-27 06:55:04,13004427CF10A,2013-03-26,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-27,Risk of Violence,3,Low,2013-03-27,2013-03-27,2013-03-27,0,0,1101,0,0,0\r\n609,richard kelly,richard,kelly,2013-10-08,Male,1947-10-19,68,Greater than 45,Caucasian,0,1,0,0,2,-150,2013-05-11 07:27:55,2013-05-12 02:24:08,13006761CF10A,2013-05-11,,150,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-08,Risk of Violence,1,Low,2013-10-08,2013-05-11,2013-05-12,2,0,906,0,0,0\r\n611,ephiram burnette,ephiram,burnette,2013-01-04,Male,1959-05-19,56,Greater than 45,African-American,0,3,0,0,5,-1,2013-01-03 05:51:09,2013-01-15 07:43:49,13000103CF10A,2013-01-03,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-04,Risk of Violence,3,Low,2013-01-04,2013-06-11,2013-11-01,5,11,158,0,0,0\r\n612,carlton brown,carlton,brown,2013-09-04,Male,1988-11-16,27,25 - 45,African-American,0,8,0,0,9,-1,2013-09-03 03:15:25,2013-10-25 06:07:27,13012422CF10A,2013-09-03,,1,F,Aggravated Battery / Pregnant,1,14015983CF10A,(F2),0,2014-11-30,Aggravated Battery / Pregnant,2014-11-30,2015-02-04,,1,14015983CF10A,(F2),2014-11-30,Aggravated Battery / Pregnant,Risk of Recidivism,8,High,2013-09-04,Risk of Violence,8,High,2013-09-04,2013-10-29,2013-12-11,9,51,55,0,1,1\r\n616,andre wilson,andre,wilson,2013-02-07,Male,1983-11-30,32,25 - 45,African-American,0,2,0,0,3,0,2013-02-07 02:19:38,2013-02-08 05:35:52,13001912CF10A,2013-02-06,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-07,Risk of Violence,2,Low,2013-02-07,2014-06-16,2014-06-20,3,1,494,0,0,0\r\n617,jean lumene,jean,lumene,2013-11-26,Male,1955-07-16,60,Greater than 45,Other,0,1,0,0,4,-1,2013-11-25 05:03:19,2013-11-26 08:38:12,13016424CF10A,,2013-11-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-26,Risk of Violence,1,Low,2013-11-26,2015-01-08,2015-01-09,4,0,408,0,0,0\r\n621,christopher pantoja,christopher,pantoja,2013-04-29,Male,1992-06-18,23,Less than 25,Hispanic,0,3,0,0,1,-5,2013-04-24 07:55:53,2013-04-29 12:20:11,13010212MM10A,2013-04-24,,5,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-29,Risk of Violence,4,Low,2013-04-29,2013-04-24,2013-04-29,1,0,1068,0,0,0\r\n622,andrew ward,andrew,ward,2013-06-20,Female,1976-04-26,39,25 - 45,Caucasian,0,6,0,0,0,-2,2013-06-18 07:12:57,2013-06-19 06:12:35,13011699MM10A,2013-06-18,,2,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-06-20,Risk of Violence,2,Low,2013-06-20,2013-06-18,2013-06-19,0,0,1016,0,0,0\r\n623,dean serfis,dean,serfis,2013-10-19,Male,1959-05-23,56,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-18 08:52:53,2013-10-19 08:16:43,13019771MM10A,2013-10-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-19,Risk of Violence,1,Low,2013-10-19,2013-10-18,2013-10-19,0,0,895,0,0,0\r\n624,kandice metayer,kandice,metayer,2013-08-24,Female,1993-12-03,22,Less than 25,African-American,0,7,0,0,0,0,2013-08-24 02:29:37,2013-08-24 08:38:38,13011936CF10A,2013-08-23,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-24,Risk of Violence,8,High,2013-08-24,2013-08-24,2013-08-24,0,0,951,0,0,0\r\n627,leroy battie,leroy,battie,2013-04-19,Male,1963-02-06,53,Greater than 45,African-American,0,6,0,0,11,-1,2013-04-18 08:45:19,2013-08-06 09:11:16,13005565CF10A,,2013-04-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-19,Risk of Violence,3,Low,2013-04-19,2013-04-18,2013-08-06,11,109,1078,0,0,0\r\n629,kenny castillo,kenny,castillo,2013-10-28,Male,1995-03-28,21,Less than 25,Hispanic,0,3,0,0,0,0,2013-10-28 03:10:30,2013-10-28 07:42:27,13020395MM10A,2013-10-28,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-28,Risk of Violence,6,Medium,2013-10-28,2013-10-28,2013-10-28,0,0,886,0,0,0\r\n630,daniel fosca,daniel,fosca,2014-02-09,Male,1993-10-02,22,Less than 25,Caucasian,0,3,0,0,0,-1,2014-02-08 09:30:32,2014-02-10 08:41:20,14001802CF10A,2014-02-08,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-09,Risk of Violence,5,Medium,2014-02-09,2014-02-08,2014-02-10,0,1,782,0,0,0\r\n633,leslie fanning,leslie,fanning,2013-04-29,Female,1957-07-29,58,Greater than 45,Caucasian,0,1,0,0,2,-23,2013-04-06 08:22:37,2013-04-07 12:56:04,13006620MM10A,2013-04-06,,23,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-10-29,2013-11-15,2,0,183,0,0,0\r\n639,ronelson stark,ronelson,stark,2013-09-15,Male,1973-10-04,42,25 - 45,Other,0,1,0,0,1,-1,2013-09-14 06:17:52,2013-09-16 07:28:47,13013046CF10A,,2013-09-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-15,Risk of Violence,1,Low,2013-09-15,2013-09-14,2013-09-16,1,1,929,0,0,0\r\n641,edward holloway,edward,holloway,2014-11-03,Male,1986-11-08,29,25 - 45,Caucasian,0,6,0,0,0,0,2014-11-03 02:36:08,2014-11-08 12:48:35,14015878MM10A,2014-11-03,,0,M,Battery,1,15012389MM10A,(M1),,2015-11-29,Battery,,,,1,15012389MM10A,(M1),2015-11-29,Battery,Risk of Recidivism,6,Medium,2014-11-03,Risk of Violence,4,Low,2014-11-03,2014-11-03,2014-11-08,0,5,391,1,1,1\r\n643,courtney battle,courtney,battle,2013-12-02,Male,1987-04-16,29,25 - 45,African-American,0,10,0,0,8,178,2014-05-29 12:37:30,2014-08-25 03:36:26,12002654CF10A,,2012-03-28,614,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-12-02,Risk of Violence,9,High,2013-12-02,2014-05-29,2014-08-25,8,0,178,0,0,0\r\n645,bernard scott,bernard,scott,2013-02-14,Male,1993-11-25,22,Less than 25,African-American,0,7,0,0,3,-1,2013-02-13 05:57:01,2013-05-30 09:53:38,13002233CF10A,2013-02-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-14,Risk of Violence,6,Medium,2013-02-14,2014-04-10,2014-04-16,3,105,420,0,0,0\r\n647,cesar turcios,cesar,turcios,2013-01-18,Male,1979-02-13,37,25 - 45,Caucasian,0,4,0,0,0,0,2013-01-18 05:11:46,2013-01-18 08:38:29,13000889CF10A,2013-01-18,,0,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-18,Risk of Violence,3,Low,2013-01-18,2013-01-18,2013-01-18,0,0,1169,0,0,0\r\n649,alejandro remis,alejandro,remis,2013-08-19,Male,1988-10-11,27,25 - 45,Caucasian,0,1,0,0,3,-22,2013-07-28 02:14:16,2013-07-28 02:01:46,13010525CF10A,2013-07-28,,22,M,Fleeing or Eluding a LEO,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-07-28,2013-07-28,3,0,956,0,0,0\r\n651,ervin watson,ervin,watson,2013-04-12,Male,1990-02-18,26,25 - 45,African-American,0,4,0,0,3,0,2013-04-12 06:16:59,2013-05-15 07:34:15,13005307CF10A,2013-04-12,,0,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-12,Risk of Violence,3,Low,2013-04-12,2013-07-09,2013-07-10,3,33,88,0,0,0\r\n654,aaron hullander,aaron,hullander,2013-12-09,Male,1983-02-19,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-12-08 02:41:16,2013-12-09 08:36:04,13016972CF10A,2013-12-08,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,2,Low,2013-12-09,2013-12-08,2013-12-09,0,0,844,0,0,0\r\n656,sean naar,sean,naar,2013-01-07,Male,1987-01-25,29,25 - 45,African-American,0,6,0,0,2,-1,2013-01-06 10:04:53,2013-01-07 09:20:44,12015053CF10A,,2013-01-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-07,Risk of Violence,3,Low,2013-01-07,2013-01-06,2013-01-07,2,0,1180,0,0,0\r\n660,carlos rosario,carlos,rosario,2013-10-15,Male,1980-04-10,36,25 - 45,Caucasian,0,1,0,0,2,-1,2013-10-14 07:59:18,2013-10-15 07:40:50,13019495MM10A,2013-10-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-15,Risk of Violence,1,Low,2013-10-15,2013-10-14,2013-10-15,2,0,899,0,0,0\r\n662,lisette echevarria,lisette,echevarria,2013-04-26,Female,1991-12-20,24,Less than 25,Caucasian,0,5,0,0,0,0,2013-04-26 02:32:29,2013-04-26 08:01:47,13006023CF10A,2013-04-25,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-26,Risk of Violence,5,Medium,2013-04-26,2013-04-26,2013-04-26,0,0,1071,0,0,0\r\n664,robson de souza,robson,de souza,2013-05-13,Male,1982-03-22,34,25 - 45,Caucasian,0,1,0,0,0,0,2013-05-13 06:00:31,2013-05-13 07:26:25,13009229MM10A,2013-05-13,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-13,2013-05-13,0,0,1054,0,0,0\r\n668,felix manzueta,felix,manzueta,2013-03-12,Male,1990-09-18,25,25 - 45,Hispanic,0,5,0,0,2,-1,2013-03-11 08:47:22,2013-03-12 01:01:00,13003587CF10A,,2013-03-11,1,F,arrest case no charge,1,13008082CF10A,(M1),0,2013-06-07,Resist/Obstruct W/O Violence,2013-06-07,2013-06-09,,1,13008082CF10A,(F2),2013-06-07,Aggravated Battery,Risk of Recidivism,5,Medium,2013-03-12,Risk of Violence,3,Low,2013-03-12,2013-06-07,2013-06-09,2,0,87,1,1,1\r\n673,adriel stockton,adriel,stockton,2014-09-08,Male,1987-08-26,28,25 - 45,Hispanic,0,5,0,0,2,-263,2013-12-19 10:00:03,2013-12-20 12:55:18,12008430MM10A,,2013-12-19,263,M,arrest case no charge,1,15015390CF10A,(F2),0,2015-11-27,Robbery / No Weapon,2015-11-27,2015-12-11,,1,15015390CF10A,(F3),2015-11-27,Battery on a Person Over 65,Risk of Recidivism,5,Medium,2014-09-08,Risk of Violence,3,Low,2014-09-08,2015-11-27,2015-12-11,2,0,445,1,1,1\r\n674,haveard cobb,haveard,cobb,2013-09-24,Male,1991-07-14,24,Less than 25,African-American,0,2,0,0,1,-1,2013-09-23 10:13:09,2013-09-25 09:17:37,13018140MM10A,2013-09-23,,1,M,Battery,1,14009581MM10A,(M1),0,2014-06-18,Battery,2014-06-18,2014-06-19,,1,14009581MM10A,(M1),2014-06-18,Battery,Risk of Recidivism,2,Low,2013-09-24,Risk of Violence,4,Low,2013-09-24,2014-06-18,2014-06-19,1,1,267,1,1,1\r\n675,thomas zaremba,thomas,zaremba,2013-01-22,Male,1954-08-28,61,Greater than 45,Caucasian,0,1,0,0,4,-1,2013-01-21 08:12:45,2013-01-23 02:40:57,01006487CF10D,,2013-01-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-22,Risk of Violence,1,Low,2013-01-22,2013-01-21,2013-01-23,4,1,1165,0,0,0\r\n678,johnnie randell,johnnie,randell,2014-03-05,Female,1965-12-14,50,Greater than 45,African-American,0,2,0,0,3,0,2014-03-05 12:31:35,2014-03-05 08:38:53,14003105CF10A,2014-03-04,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-05,Risk of Violence,1,Low,2014-03-05,2014-03-05,2014-03-05,3,0,758,0,0,0\r\n679,anthony louis,anthony,louis,2013-03-19,Male,1985-07-19,30,25 - 45,African-American,0,1,0,0,1,0,2013-03-19 01:34:13,2013-03-23 12:51:55,13005335MM10A,2013-03-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-19,Risk of Violence,2,Low,2013-03-19,2013-03-19,2013-03-23,1,4,1109,0,0,0\r\n680,broderick alston,broderick,alston,2013-11-30,Male,1977-09-04,38,25 - 45,African-American,0,3,0,0,5,-1,2013-11-29 07:00:11,2013-11-30 12:28:10,13016563CF10A,2013-11-29,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-30,Risk of Violence,2,Low,2013-11-30,2013-11-29,2013-11-30,5,0,853,0,0,0\r\n681,christopher kasten,christopher,kasten,2013-12-13,Male,1991-06-06,24,Less than 25,Caucasian,0,1,0,0,0,-1,2013-12-12 09:51:57,2013-12-13 01:45:42,13023013MM10A,2013-12-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-13,Risk of Violence,2,Low,2013-12-13,2013-12-12,2013-12-13,0,0,840,0,0,0\r\n684,steven wilson,steven,wilson,2013-10-02,Male,1971-03-19,45,Greater than 45,African-American,0,2,0,0,16,-83,2013-07-11 11:35:36,2013-09-14 03:05:59,13010099CF10A,,2013-07-17,77,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,2013-07-11,2013-09-14,16,0,912,0,0,0\r\n687,trevoy williams,trevoy,williams,2014-10-30,Male,1995-08-20,20,Less than 25,Other,0,8,0,1,0,-1,2014-10-29 03:32:22,2014-11-20 08:32:38,14014530CF10A,2014-10-29,,1,F,Possession of Cocaine,1,15003795CF10A,(F3),0,2015-03-20,Possession Of Alprazolam,2015-03-20,2015-04-13,,1,15003795CF10A,(M2),2015-03-20,Assault,Risk of Recidivism,8,High,2014-10-30,Risk of Violence,6,Medium,2014-10-30,2015-03-20,2015-04-13,0,21,141,1,1,1\r\n688,ian turnbull,ian,turnbull,2013-04-17,Male,1989-03-05,27,25 - 45,African-American,0,8,0,0,13,-1,2013-04-16 07:03:53,2013-04-17 10:30:53,13007374MM10A,2013-04-16,,1,M,Possess Cannabis/20 Grams Or Less,1,15004896MM10A,(M1),,2015-04-06,Battery,,,,1,15004896MM10A,(M1),2015-04-06,Battery,Risk of Recidivism,8,High,2013-04-17,Risk of Violence,9,High,2013-04-17,2016-03-18,2016-03-18,13,0,719,1,1,1\r\n689,beverly smith,beverly,smith,2013-08-07,Female,1964-10-23,51,Greater than 45,African-American,0,8,0,0,16,-122,2013-04-07 10:07:51,2013-06-12 10:56:00,13004969CF10A,2013-04-07,,122,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-07,Risk of Violence,1,Low,2013-08-07,2013-04-07,2013-06-12,16,0,968,0,0,0\r\n694,stephen washburn,stephen,washburn,2014-02-16,Male,1987-05-08,28,25 - 45,Caucasian,0,4,0,0,1,0,2014-02-16 12:19:08,2014-02-20 12:30:39,14002157CF10A,2014-02-15,,1,F,Agg Battery Grt/Bod/Harm,1,14011224MM10A,(M2),0,2014-07-23,Assault,2014-07-23,2014-08-14,,1,14011224MM10A,(M2),2014-07-23,Assault,Risk of Recidivism,4,Low,2014-02-16,Risk of Violence,3,Low,2014-02-16,2014-07-23,2014-08-14,1,4,157,1,1,1\r\n700,brandon whitfield,brandon,whitfield,2013-03-05,Male,1989-07-22,26,25 - 45,African-American,1,9,1,0,10,-1,2013-03-04 11:33:53,2013-03-05 04:54:32,13003239CF10A,2013-03-04,,1,F,Aggravated Battery,1,14008023CF10A,(F3),0,2014-06-10,Poss Pyrrolidinovalerophenone,2014-06-10,2014-06-10,,1,15008298CF10A,(F3),2015-06-27,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2013-03-05,Risk of Violence,6,Medium,2013-03-05,2014-06-10,2014-06-10,10,0,462,0,1,1\r\n701,eddie mosley,eddie,mosley,2013-09-11,Male,1987-08-20,28,25 - 45,African-American,0,10,0,0,5,-1,2013-09-10 04:03:57,2013-09-11 08:05:58,13012799CF10A,2013-09-10,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-11,Risk of Violence,10,High,2013-09-11,2013-09-10,2013-09-11,5,0,933,0,0,0\r\n703,robert zinser,robert,zinser,2013-12-12,Male,1953-03-17,63,Greater than 45,Caucasian,0,1,0,0,2,-3,2013-12-09 08:43:05,2013-12-12 10:30:31,13017021CF10A,2013-12-09,,3,F,Felony DUI (level 3),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-12,Risk of Violence,1,Low,2013-12-12,2014-06-25,2014-06-30,2,0,195,0,0,0\r\n704,richard brown,richard,brown,2013-04-17,Male,1973-12-15,42,25 - 45,African-American,0,1,0,0,0,0,2013-04-17 03:45:48,2013-04-18 05:26:44,13005521CF10A,2013-04-17,,0,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-17,Risk of Violence,1,Low,2013-04-17,2013-04-17,2013-04-18,0,1,1080,0,0,0\r\n707,davion silvera,davion,silvera,2013-04-20,Male,1992-06-04,23,Less than 25,African-American,1,6,2,2,6,-1,2013-04-19 04:56:58,2013-04-20 01:49:41,13005638CF10A,2013-04-19,,1,F,Driving While License Revoked,1,15010863CF10A,(F3),0,2015-08-22,False Imprisonment,2015-08-22,2015-08-23,,1,15010863CF10A,(M1),2015-08-22,Battery,Risk of Recidivism,6,Medium,2013-04-20,Risk of Violence,6,Medium,2013-04-20,2013-10-03,2013-10-25,6,0,166,0,0,0\r\n712,derrick stephenson,derrick,stephenson,2014-01-16,Male,1962-03-27,54,Greater than 45,African-American,0,1,0,0,2,-26,2013-12-21 05:27:36,2013-12-22 01:10:00,13023551MM10A,2013-12-21,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-16,Risk of Violence,1,Low,2014-01-16,2013-12-21,2013-12-22,2,0,806,0,0,0\r\n716,larence brown,larence,brown,2014-03-10,Male,1981-02-12,35,25 - 45,African-American,0,2,0,0,1,-1,2014-03-09 10:01:46,2014-03-10 09:42:18,14004071MM10A,2014-03-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-10,Risk of Violence,2,Low,2014-03-10,2014-03-09,2014-03-10,1,0,753,0,0,0\r\n718,tavon session,tavon,session,2013-11-19,Male,1995-09-20,20,Less than 25,African-American,0,10,0,0,1,0,2013-11-19 02:33:54,2013-11-21 03:37:00,13016073CF10A,2013-11-19,,0,F,Fraudulent Use of Credit Card,1,14002743MM10A,(M1),1,2014-02-16,Unlaw Use False Name/Identity,2014-02-17,2014-02-18,,1,15012940CF10A,(F2),2015-10-06,Agg Flee/Eluding (Injury/Prop Damage),Risk of Recidivism,10,High,2013-11-19,Risk of Violence,10,High,2013-11-19,2014-02-07,2014-02-08,1,2,80,0,1,1\r\n720,bradley kirker,bradley,kirker,2013-02-04,Male,1964-08-26,51,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-04 02:44:33,2013-03-11 09:01:18,13001737CF10A,2013-02-04,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-02-04,2013-03-11,0,35,1152,0,0,0\r\n721,christian rivera,christian,rivera,2013-04-27,Male,1991-06-04,24,Less than 25,Hispanic,0,10,0,0,0,0,2013-04-27 02:50:45,2013-04-28 03:43:53,13006075CF10A,2013-04-26,,1,F,\"Poss 3,4 MDMA (Ecstasy)\",0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-27,Risk of Violence,7,Medium,2013-04-27,2013-04-27,2013-04-28,0,1,1070,0,0,0\r\n722,david levy,david,levy,2013-05-30,Male,1979-03-19,37,25 - 45,Caucasian,0,2,0,0,3,-14,2013-05-16 08:42:26,2013-05-23 06:52:01,13007017CF10A,2013-05-16,,14,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-30,Risk of Violence,1,Low,2013-05-30,2013-05-16,2013-05-23,3,0,1037,0,0,0\r\n724,dori klein,dori,klein,2014-02-26,Male,1969-04-17,47,Greater than 45,Caucasian,0,1,0,0,3,-1,2014-02-25 11:20:43,2014-02-26 09:34:42,14002661CF10A,2014-02-25,,1,F,Drivg While Lic Suspd/Revk/Can,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-26,Risk of Violence,1,Low,2014-02-26,2014-02-25,2014-02-26,3,0,765,0,0,0\r\n727,kevin connors,kevin,connors,2013-09-03,Male,1959-05-26,56,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-09-01 11:41:31,2013-09-02 08:47:35,13012358CF10A,2013-09-01,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-03,Risk of Violence,1,Low,2013-09-03,2013-09-01,2013-09-02,0,0,941,0,0,0\r\n730,cuong do,cuong,do,2013-05-16,Male,1981-03-30,35,25 - 45,Asian,0,6,0,0,0,-1,2013-05-15 03:27:43,2013-08-24 05:06:24,13006952CF10A,2013-05-15,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-16,Risk of Violence,4,Low,2013-05-16,2013-05-15,2013-08-24,0,100,1051,0,0,0\r\n731,jorge moreno,jorge,moreno,2013-02-07,Male,1957-09-15,58,Greater than 45,Hispanic,0,1,0,0,1,-11,2013-01-27 07:57:13,2013-02-06 10:02:46,13001341CF10A,2013-01-27,,11,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-07,Risk of Violence,1,Low,2013-02-07,2013-01-27,2013-02-06,1,0,1149,0,0,0\r\n732,richard chacon,richard,chacon,2013-02-06,Male,1986-08-08,29,25 - 45,Hispanic,0,4,0,0,2,-26,2013-01-11 06:07:32,2013-01-12 04:14:13,13000687MM10A,2013-01-11,,26,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-06,Risk of Violence,2,Low,2013-02-06,2013-01-11,2013-01-12,2,0,1150,0,0,0\r\n737,samantha caicedo,samantha,caicedo,2014-04-16,Female,1991-11-01,24,Less than 25,Caucasian,0,9,0,1,6,0,2014-04-16 02:28:47,2014-04-19 11:22:18,14005342CF10A,2014-04-15,,1,F,Poss Contr Subst W/o Prescript,1,16001029MM10A,(M1),0,2016-01-30,Battery,2016-01-30,2016-01-31,,1,16001029MM10A,(M1),2016-01-30,Battery,Risk of Recidivism,9,High,2014-04-16,Risk of Violence,4,Low,2014-04-16,2016-01-30,2016-01-31,6,3,654,1,1,1\r\n738,justin leal,justin,leal,2013-11-06,Male,1995-01-20,21,Less than 25,Caucasian,0,9,0,4,2,-1,2013-11-05 11:10:50,2013-11-14 01:27:06,13020886MM10A,2013-11-05,,1,M,Assault,1,14000150MM20A,(M2),,2013-12-13,Mandatory Susp Possess Alcohol,,,,1,14012093CF10A,(F3),2014-07-15,Battery on Law Enforc Officer,Risk of Recidivism,9,High,2013-11-06,Risk of Violence,9,High,2013-11-06,2013-11-05,2013-11-14,2,8,37,1,1,1\r\n739,spencer clayborne,spencer,clayborne,2013-04-10,Male,1989-09-22,26,25 - 45,African-American,0,9,0,0,2,,,,12024513MM10A,,2013-03-25,16,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-10,Risk of Violence,6,Medium,2013-04-10,,,2,0,1087,0,0,0\r\n743,courtney brownlee,courtney,brownlee,2013-02-13,Male,1989-10-28,26,25 - 45,African-American,0,2,0,0,1,-1,2013-02-12 03:08:29,2013-02-13 08:21:18,13002167CF10A,2013-02-12,,1,F,Cash Item w/Intent to Defraud,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-13,Risk of Violence,3,Low,2013-02-13,2013-02-12,2013-02-13,1,0,1143,0,0,0\r\n745,jessica andujar,jessica,andujar,2013-09-06,Female,1985-12-28,30,25 - 45,Caucasian,0,2,0,0,0,-1,2013-09-05 10:47:19,2013-09-06 11:08:59,13016989MM10A,2013-09-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-06,Risk of Violence,2,Low,2013-09-06,2013-09-05,2013-09-06,0,0,938,0,0,0\r\n752,raymond ondic,raymond,ondic,2014-03-26,Male,1986-08-30,29,25 - 45,Caucasian,0,4,0,0,0,0,2014-03-26 12:14:14,2014-03-27 12:18:56,14005233MM10A,2014-03-25,,1,M,Battery,1,14008675MM10A,(M1),0,2014-05-31,Battery,2014-05-31,2014-06-09,,1,14008675MM10A,(M1),2014-05-31,Battery,Risk of Recidivism,4,Low,2014-03-26,Risk of Violence,4,Low,2014-03-26,2014-05-31,2014-06-09,0,1,66,1,1,1\r\n753,gregory wilson,gregory,wilson,2013-02-18,Male,1961-08-25,54,Greater than 45,African-American,0,1,0,0,0,-1,2013-02-17 03:23:30,2013-02-18 06:40:01,13003415MM10A,2013-02-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-18,Risk of Violence,1,Low,2013-02-18,2013-02-17,2013-02-18,0,0,1138,0,0,0\r\n754,tawfiq hamin,tawfiq,hamin,2013-11-13,Male,1987-01-16,29,25 - 45,African-American,0,4,0,0,4,-1,2013-11-12 01:08:14,2013-11-20 06:26:56,13015733CF10A,2013-11-12,,1,F,False Ownership Info/Pawn Item,1,14006688CF10A,(F3),,2014-01-02,Burglary Unoccupied Dwelling,,,,1,14006870MM10A,(M1),2014-04-24,Battery,Risk of Recidivism,4,Low,2013-11-13,Risk of Violence,4,Low,2013-11-13,2013-11-12,2013-11-20,4,7,50,1,1,1\r\n756,deborah zachary,deborah,zachary,2013-10-11,Female,1956-08-18,59,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-10-09 09:01:32,2013-10-10 07:57:22,13019214MM10A,2013-10-09,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-11,Risk of Violence,1,Low,2013-10-11,2013-10-09,2013-10-10,0,0,903,0,0,0\r\n757,walter anderson,walter,anderson,2013-03-27,Male,1977-11-15,38,25 - 45,African-American,0,5,0,0,0,0,2013-03-27 01:50:02,2013-03-28 08:18:15,13004425CF10A,2013-03-26,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-27,Risk of Violence,1,Low,2013-03-27,2013-03-27,2013-03-28,0,1,1101,0,0,0\r\n760,mark tindall,mark,tindall,2014-09-25,Male,1987-02-11,29,25 - 45,African-American,0,7,0,0,4,-53,2014-08-03 09:45:47,2014-08-29 07:47:26,14010583CF10A,,2014-08-03,53,F,arrest case no charge,1,15001709CF10A,(M1),0,2015-02-05,Resist/Obstruct W/O Violence,2015-02-05,2015-04-23,,1,15001709CF10A,(F3),2015-02-05,Battery on Law Enforc Officer,Risk of Recidivism,7,Medium,2014-09-25,Risk of Violence,6,Medium,2014-09-25,2015-02-05,2015-04-23,4,0,133,1,1,1\r\n764,luis sanchez,luis,sanchez,2013-04-21,Male,1963-10-26,52,Greater than 45,Hispanic,0,3,0,0,20,-1,2013-04-20 10:15:03,2013-05-18 07:59:38,13005646CF10A,2013-04-20,,1,F,False Bomb Report,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-21,Risk of Violence,1,Low,2013-04-21,2013-08-03,2013-08-06,20,27,104,0,0,0\r\n769,zachary libman,zachary,libman,2013-03-09,Male,1989-02-17,27,25 - 45,Caucasian,0,5,0,0,2,0,2013-03-09 02:19:02,2013-03-09 09:06:46,13003509CF10A,2013-03-08,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-09,Risk of Violence,4,Low,2013-03-09,2013-03-09,2013-03-09,2,0,1119,0,0,0\r\n770,freddy cardona,freddy,cardona,2013-04-22,Male,1965-02-15,51,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-04-21 02:10:18,2013-04-22 03:59:29,13007691MM10A,2013-04-21,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2014-09-12,2014-09-12,1,0,508,0,0,0\r\n771,robert newton,robert,newton,2013-10-03,Male,1981-01-02,35,25 - 45,Caucasian,0,2,0,0,1,0,2013-10-03 07:44:08,2013-12-16 08:06:46,13013878CF10A,,2013-10-03,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-03,Risk of Violence,3,Low,2013-10-03,2013-10-03,2013-12-16,1,74,911,0,0,0\r\n774,james adams,james,adams,2013-08-12,Male,1989-10-12,26,25 - 45,African-American,0,7,0,0,1,,,,09011772CF10A,2009-06-24,,1510,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-12,Risk of Violence,4,Low,2013-08-12,,,1,0,963,0,0,0\r\n775,glen myers,glen,myers,2014-02-03,Male,1963-10-09,52,Greater than 45,Caucasian,0,3,0,0,4,-1,2014-02-02 02:24:43,2014-02-03 01:24:23,14001817MM10A,2014-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-03,Risk of Violence,2,Low,2014-02-03,2014-02-02,2014-02-03,4,0,788,0,0,0\r\n779,monica dunlap,monica,dunlap,2013-05-16,Female,1980-08-27,35,25 - 45,African-American,0,2,0,0,12,-54,2013-03-23 12:31:12,2013-03-23 02:23:21,13012402TC10A,2013-03-22,,55,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-16,Risk of Violence,1,Low,2013-05-16,2013-07-16,2013-07-16,12,0,61,0,0,0\r\n781,norman joseph,norman,joseph,2013-03-16,Male,1967-06-13,48,Greater than 45,Other,0,5,0,0,12,0,2013-03-16 03:19:01,2013-03-17 08:00:36,13003858CF10A,2013-03-16,,0,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-16,Risk of Violence,4,Low,2013-03-16,2013-03-16,2013-03-17,12,1,1112,0,0,0\r\n785,chaquiay anglin,chaquiay,anglin,2013-10-27,Female,1989-09-18,26,25 - 45,African-American,0,2,0,0,0,-1,2013-10-26 02:28:18,2013-10-27 08:36:51,13020322MM10A,2013-10-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-27,Risk of Violence,2,Low,2013-10-27,2013-10-26,2013-10-27,0,0,887,0,0,0\r\n786,barbara phetakoune,barbara,phetakoune,2014-01-14,Female,1967-10-29,48,Greater than 45,Caucasian,0,1,0,0,0,0,2014-01-14 04:43:41,2014-01-15 03:21:55,14001976MU10A,2014-01-14,,0,M,Leave Accd/Attend Veh/Less $50,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-14,Risk of Violence,1,Low,2014-01-14,2014-01-14,2014-01-15,0,1,808,0,0,0\r\n787,rayman ruiz,rayman,ruiz,2013-08-27,Male,1985-05-03,30,25 - 45,Hispanic,0,4,0,0,7,-1,2013-08-26 11:08:06,2013-10-03 05:13:08,13016300MM10A,2013-08-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-27,Risk of Violence,5,Medium,2013-08-27,2013-08-26,2013-10-03,7,37,948,0,0,0\r\n788,kareem williams,kareem,williams,2013-11-03,Male,1987-08-02,28,25 - 45,Other,0,1,0,0,2,-1,2013-11-02 05:18:38,2013-11-04 04:03:11,13020690MM10A,2013-11-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-03,Risk of Violence,2,Low,2013-11-03,2013-11-02,2013-11-04,2,1,880,0,0,0\r\n789,oswald mcbride,oswald,mcbride,2013-10-08,Male,1983-02-28,33,25 - 45,African-American,0,3,0,0,2,0,2013-10-08 02:14:25,2013-10-08 11:59:33,13019062MM10A,2013-10-08,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-08,Risk of Violence,3,Low,2013-10-08,2013-12-23,2013-12-24,2,0,76,0,0,0\r\n790,salvatoris williams,salvatoris,williams,2013-04-23,Female,1981-07-19,34,25 - 45,African-American,0,4,0,0,6,-1,2013-04-22 08:12:13,2013-06-13 09:46:00,13005780CF10A,2013-04-22,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-23,Risk of Violence,2,Low,2013-04-23,2015-07-05,2015-07-06,6,51,803,0,0,0\r\n792,sastri abhilash,sastri,abhilash,2013-12-20,Male,1991-01-05,25,25 - 45,Other,0,1,0,0,0,0,2013-12-20 03:36:29,2013-12-20 02:06:03,13023510MM10A,2013-12-20,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-20,Risk of Violence,2,Low,2013-12-20,2013-12-20,2013-12-20,0,0,833,0,0,0\r\n796,juan delgado-roger,juan,delgado-roger,2013-04-10,Male,1991-04-30,24,Less than 25,Caucasian,0,2,0,0,0,0,2013-04-10 01:50:54,2013-04-11 07:15:22,13005116CF10A,2013-04-10,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,3,Low,2013-04-10,2015-01-08,2015-01-14,0,1,638,0,0,0\r\n800,leroy ware,leroy,ware,2013-02-08,Male,1960-06-07,55,Greater than 45,African-American,0,8,0,0,0,61,2013-04-10 01:10:20,2013-05-25 07:54:19,13002796MM10A,2013-02-07,,1,M,Battery,1,13005155CF10A,(F3),0,2013-04-10,Battery on a Person Over 65,2013-04-10,2013-05-25,,1,13005155CF10A,(F3),2013-04-10,Battery on a Person Over 65,Risk of Recidivism,8,High,2013-02-08,Risk of Violence,4,Low,2013-02-08,2013-04-10,2013-05-25,0,0,61,1,1,1\r\n803,kelvin jones,kelvin,jones,2014-01-21,Male,1964-04-07,52,Greater than 45,African-American,0,5,0,0,4,0,2014-01-21 01:50:50,2014-01-22 02:48:22,14002400MU10A,2014-01-21,,0,M,Fail Register Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-21,Risk of Violence,3,Low,2014-01-21,2014-01-21,2014-01-22,4,1,801,0,0,0\r\n806,mckenzie reijonen,mckenzie,reijonen,2013-01-02,Male,1991-07-18,24,Less than 25,Caucasian,0,2,0,0,0,-1,2013-01-01 05:32:16,2013-01-16 06:22:12,13000034CF10A,2013-01-01,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-02,Risk of Violence,3,Low,2013-01-02,2013-01-01,2013-01-16,0,14,1185,0,0,0\r\n807,mauro perez,mauro,perez,2013-01-20,Male,1993-03-15,23,Less than 25,Caucasian,0,9,0,0,0,-1,2013-01-19 07:06:05,2013-01-20 12:29:47,13001351MM10A,2013-01-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-20,Risk of Violence,6,Medium,2013-01-20,2016-01-28,2020-01-01,0,0,1103,0,0,0\r\n808,andrew thomas,andrew,thomas,2013-10-19,Male,1988-05-02,27,25 - 45,Caucasian,0,4,1,3,6,-1,2013-10-18 01:19:43,2013-10-19 08:00:03,13014603CF10A,2013-10-18,,1,F,Felony Battery (Dom Strang),1,16002005CF10A,(F3),,2016-01-08,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-19,Risk of Violence,3,Low,2013-10-19,2016-01-10,2016-01-11,6,0,811,1,0,0\r\n812,antwon hyman,antwon,hyman,2013-08-17,Male,1984-09-04,31,25 - 45,African-American,0,2,0,0,0,-1,2013-08-16 06:01:59,2013-08-16 06:08:13,13011507CF10A,2013-08-16,,1,F,Trespassing/Construction Site,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-17,Risk of Violence,1,Low,2013-08-17,2013-08-16,2013-08-16,0,0,958,0,0,0\r\n814,benjamin levine,benjamin,levine,2014-01-21,Male,1983-06-11,32,25 - 45,Caucasian,0,1,0,0,1,-7,2014-01-14 10:07:59,2014-01-15 01:58:04,14000604CF10A,,2014-01-14,7,F,arrest case no charge,1,15008433MM10A,(M1),0,2015-08-09,Battery,2015-08-09,2015-08-10,,1,15008433MM10A,(M1),2015-08-09,Battery,Risk of Recidivism,1,Low,2014-01-21,Risk of Violence,2,Low,2014-01-21,2015-08-09,2015-08-10,1,0,565,1,1,1\r\n817,arrantes green,arrantes,green,2013-02-21,Male,1978-05-16,37,25 - 45,Other,0,1,0,0,1,-1,2013-02-20 08:05:01,2013-02-25 09:11:42,13002589CF10A,2013-02-20,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-21,Risk of Violence,1,Low,2013-02-21,2013-02-20,2013-02-25,1,4,1135,0,0,0\r\n818,frantz mersier,frantz,mersier,2013-12-08,Male,1990-06-01,25,25 - 45,Caucasian,0,3,0,0,0,0,2013-12-08 01:39:45,2013-12-08 01:45:29,13016946CF10A,2013-12-07,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-08,Risk of Violence,4,Low,2013-12-08,2014-02-12,2014-02-27,0,0,66,0,0,0\r\n820,terrance holland,terrance,holland,2013-01-01,Male,1984-01-11,32,25 - 45,Hispanic,1,10,1,0,20,0,2013-01-01 05:08:53,2013-01-02 03:08:56,12017968CF10A,,2013-01-01,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-01,Risk of Violence,7,Medium,2013-01-01,2013-01-01,2013-01-02,20,1,1186,0,0,0\r\n821,dorcas willis,dorcas,willis,2013-04-25,Male,1980-08-31,35,25 - 45,African-American,0,7,0,0,0,-1,2013-04-24 07:43:40,2013-04-26 08:46:06,13005883CF10A,2013-04-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-25,Risk of Violence,2,Low,2013-04-25,2013-04-24,2013-04-26,0,1,1072,0,0,0\r\n825,alexander marino,alexander,marino,2013-09-09,Male,1991-07-20,24,Less than 25,Caucasian,0,10,0,1,9,-23,2013-08-17 01:46:04,2013-08-27 03:55:32,13015605MM10A,2013-08-17,,23,M,Viol Injunct Domestic Violence,1,13014469CF10A,(F3),0,2013-10-16,Possession Burglary Tools,2013-10-16,2014-10-06,,1,16002201CF10A,(F2),2016-02-19,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2013-09-09,Risk of Violence,8,High,2013-09-09,2013-10-16,2014-10-06,9,0,37,1,1,1\r\n831,malcolm austin,malcolm,austin,2013-03-20,Male,1968-10-11,47,Greater than 45,Caucasian,0,1,0,0,1,0,2013-03-20 02:25:51,2013-03-20 07:51:16,13005458MM10A,2013-03-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-03-20,2013-03-20,1,0,1108,0,0,0\r\n838,derrick goodley,derrick,goodley,2013-01-29,Male,1971-11-14,44,25 - 45,African-American,0,3,0,0,1,0,2013-01-29 06:36:33,2013-01-29 08:34:07,13002096MM10A,2013-01-29,,0,M,Reckless Driving,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-29,2013-01-29,1,0,1158,0,0,0\r\n840,rafael rivera,rafael,rivera,2013-04-17,Male,1988-07-05,27,25 - 45,African-American,0,5,0,0,0,,,,13005535CF10A,2013-04-16,,1,F,Consp Traff Oxycodone 28g><30k,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-17,Risk of Violence,5,Medium,2013-04-17,,,0,0,1080,0,0,0\r\n841,cesar pedraza,cesar,pedraza,2013-12-13,Male,1993-03-25,23,Less than 25,Caucasian,0,2,0,0,2,-1,2013-12-12 11:10:00,2013-12-13 08:47:02,13017191CF10A,2013-12-12,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-13,Risk of Violence,3,Low,2013-12-13,2013-12-12,2013-12-13,2,0,840,0,0,0\r\n842,ana cuba,ana,cuba,2013-02-13,Female,1965-12-30,50,Greater than 45,Hispanic,0,1,0,0,1,,,,12002463CF10A,2009-07-04,,1320,F,Unemployment Compensatn Fraud,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,,,1,0,1143,0,0,0\r\n843,richard harding,richard,harding,2013-10-03,Male,1973-09-28,42,25 - 45,African-American,0,5,0,0,8,-1,2013-10-02 10:41:22,2013-10-04 05:24:16,13007224CF10A,,2013-10-02,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-03,Risk of Violence,2,Low,2013-10-03,2013-10-02,2013-10-04,8,1,911,0,0,0\r\n844,benjamin feast,benjamin,feast,2013-05-22,Male,1957-10-13,58,Greater than 45,African-American,0,6,0,0,6,-1,2013-05-21 03:25:30,2013-10-12 05:17:10,13007238CF10A,2013-05-21,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-22,Risk of Violence,3,Low,2013-05-22,2014-10-15,2014-12-12,6,143,511,0,0,0\r\n847,steven nettleford,steven,nettleford,2013-01-25,Male,1990-02-13,26,25 - 45,African-American,0,6,0,1,3,-1,2013-01-24 09:05:00,2013-01-26 04:55:47,13001179CF10A,2013-01-24,,1,F,Grand Theft (Motor Vehicle),1,15008815CF10A,(F3),0,2015-07-09,Poss Pyrrolidinovalerophenone,2015-07-09,2015-10-18,,0,,,,,Risk of Recidivism,6,Medium,2013-01-25,Risk of Violence,4,Low,2013-01-25,2015-07-09,2015-10-18,3,1,895,1,0,0\r\n848,eva downs,eva,downs,2013-02-04,Female,1968-02-07,48,Greater than 45,Other,0,1,0,0,0,-1,2013-02-03 10:36:16,2013-02-20 12:12:55,13001821CF10A,2013-02-03,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-02-03,2013-02-20,0,16,1152,0,0,0\r\n850,deandre miller,deandre,miller,2013-05-15,Male,1995-03-26,21,Less than 25,African-American,0,5,2,0,3,0,2013-05-15 12:34:33,2013-05-15 07:01:43,13006891CF10A,,2013-05-14,1,F,arrest case no charge,1,14010145CF10A,(F3),0,2014-07-25,Grand Theft in the 3rd Degree,2014-07-25,2014-09-04,,1,15008351CF10A,(F2),2015-06-29,Robbery / No Weapon,Risk of Recidivism,5,Medium,2013-05-15,Risk of Violence,6,Medium,2013-05-15,2014-07-25,2014-09-04,3,0,436,1,1,1\r\n851,keith antolick,keith,antolick,2014-01-31,Male,1952-06-19,63,Greater than 45,Caucasian,0,1,0,0,1,-9,2014-01-22 10:01:17,2014-01-28 03:54:00,14002640MU10A,2014-01-22,,9,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-31,Risk of Violence,1,Low,2014-01-31,2014-01-22,2014-01-28,1,0,791,0,0,0\r\n852,tyrone carter,tyrone,carter,2013-11-18,Male,1993-11-05,22,Less than 25,African-American,0,7,1,0,3,-11,2013-11-07 10:41:34,2013-11-15 08:48:23,12016330CF10A,,2013-11-07,11,F,arrest case no charge,1,15005819CF10A,(F3),,2015-05-04,Burglary Conveyance Unoccup,,,,1,15006218CF10A,(F3),2015-05-11,Felony Battery (Dom Strang),Risk of Recidivism,7,Medium,2013-11-18,Risk of Violence,7,Medium,2013-11-18,2013-11-07,2013-11-15,3,0,532,1,1,1\r\n853,david schultz,david,schultz,2013-02-03,Male,1965-09-25,50,Greater than 45,African-American,0,3,0,0,3,-1,2013-02-02 09:08:31,2013-02-03 06:57:55,13002401MM10A,2013-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-03,Risk of Violence,2,Low,2013-02-03,2013-02-02,2013-02-03,3,0,1153,0,0,0\r\n855,geoffrey salesman,geoffrey,salesman,2013-05-27,Male,1977-07-18,38,25 - 45,African-American,0,1,0,0,0,-1,2013-05-26 10:41:56,2013-06-05 09:47:42,13007530CF10A,2013-05-26,,1,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-05-26,2013-06-05,0,9,1040,0,0,0\r\n856,osvaldo pereyra,osvaldo,pereyra,2013-10-22,Male,1974-06-23,41,25 - 45,Caucasian,0,6,0,0,1,-6,2013-10-16 03:27:50,2013-10-22 10:32:34,13014495CF10A,2013-10-15,,7,F,Sexual Battery / Vict 12 Yrs +,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-22,Risk of Violence,4,Low,2013-10-22,2013-11-27,2013-12-02,1,0,36,0,0,0\r\n857,travis holmes,travis,holmes,2014-02-25,Male,1987-12-07,28,25 - 45,African-American,8,8,0,1,16,-1,2014-02-24 04:17:37,2014-02-25 08:09:24,14002607CF10A,2014-02-24,,1,F,Aggravated Battery / Pregnant,1,15005982CF10A,(M1),0,2015-05-07,Possess Cannabis/20 Grams Or Less,2015-05-07,2015-06-01,,1,15008803CF10A,(F2),2015-06-30,Aggravated Battery / Pregnant,Risk of Recidivism,8,High,2014-02-25,Risk of Violence,9,High,2014-02-25,2015-05-07,2015-06-01,16,0,436,1,1,1\r\n858,shakennea baker,shakennea,baker,2013-11-06,Female,1985-12-07,30,25 - 45,African-American,0,3,0,0,0,0,2013-11-06 03:13:16,2013-11-07 09:03:30,13020963MM10A,2013-11-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-06,Risk of Violence,3,Low,2013-11-06,2013-11-06,2013-11-07,0,1,877,0,0,0\r\n859,rionne holloman,rionne,holloman,2013-04-24,Male,1993-01-28,23,Less than 25,African-American,0,5,0,0,1,0,2013-04-24 02:27:23,2013-04-24 08:08:08,13005889CF10A,2013-04-23,,1,F,Agg Fleeing and Eluding,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-24,Risk of Violence,7,Medium,2013-04-24,2014-02-20,2014-03-28,1,0,302,0,0,0\r\n863,christopher metcalf,christopher,metcalf,2013-09-15,Male,1976-03-12,40,25 - 45,Caucasian,0,4,0,0,5,0,2013-09-15 03:23:56,2013-09-15 07:27:18,13013025CF10A,2013-09-14,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-15,Risk of Violence,1,Low,2013-09-15,2015-10-07,2015-10-16,5,0,752,0,0,0\r\n864,frank carvalho,frank,carvalho,2013-04-25,Male,1991-05-25,24,Less than 25,Hispanic,0,8,0,0,8,0,2013-04-25 02:04:02,2013-04-25 01:19:35,13005907CF10A,2013-04-25,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-25,Risk of Violence,4,Low,2013-04-25,2013-04-25,2013-04-25,8,0,1072,0,0,0\r\n869,mark rawiszer,mark,rawiszer,2013-09-07,Male,1971-09-03,44,25 - 45,Caucasian,0,3,0,0,11,0,2013-09-07 03:37:40,2014-03-06 10:26:26,13017051MM10A,2013-09-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-07,Risk of Violence,6,Medium,2013-09-07,2013-09-07,2014-03-06,11,180,937,0,0,0\r\n870,tanares russ,tanares,russ,2013-10-30,Female,1980-11-13,35,25 - 45,African-American,0,2,0,0,6,-1,2013-10-29 02:27:04,2013-10-30 08:32:44,13015117CF10A,,2013-10-29,1,F,arrest case no charge,1,15005910MM10A,(M1),1,2015-05-29,Battery,2015-05-30,2015-07-17,,1,15005910MM10A,(M1),2015-05-29,Battery,Risk of Recidivism,2,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2015-05-30,2015-07-17,6,0,576,1,1,1\r\n871,attique mohammad,attique,mohammad,2013-02-06,Male,1973-12-25,42,25 - 45,Caucasian,0,1,0,0,0,0,2013-02-06 02:27:50,2013-02-06 07:49:59,13002721MM10A,2013-02-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-06,Risk of Violence,1,Low,2013-02-06,2013-02-06,2013-02-06,0,0,1150,0,0,0\r\n872,anthony deary,anthony,deary,2014-01-24,Male,1978-03-17,38,25 - 45,African-American,0,7,0,0,15,0,2014-01-24 04:04:57,2014-01-24 09:37:14,14001075CF10A,2014-01-23,,1,F,Drivg While Lic Suspd/Revk/Can,1,16014195TC30A,(M2),,2016-03-04,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-24,Risk of Violence,5,Medium,2014-01-24,2014-01-24,2014-01-24,15,0,770,1,0,0\r\n874,jorge fernandez,jorge,fernandez,2013-03-06,Male,1990-01-23,26,25 - 45,Hispanic,0,6,0,0,4,0,2013-03-06 12:02:54,2013-03-06 09:47:10,13003284CF10A,2013-03-05,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-06,Risk of Violence,6,Medium,2013-03-06,2013-03-06,2013-03-06,4,0,1122,0,0,0\r\n875,brittany funchess,brittany,funchess,2013-05-28,Female,1990-05-30,25,25 - 45,African-American,0,3,0,0,0,-1,2013-05-27 09:36:52,2013-05-28 09:04:37,13010161MM10A,2013-05-27,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-28,Risk of Violence,3,Low,2013-05-28,2013-05-27,2013-05-28,0,0,1039,0,0,0\r\n879,alfonso starling,alfonso,starling,2013-05-17,Male,1992-01-19,24,Less than 25,Caucasian,0,4,0,0,1,,,,12011759CF10A,,2012-08-10,280,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-17,Risk of Violence,6,Medium,2013-05-17,,,1,0,1050,0,0,0\r\n880,victor lozada,victor,lozada,2013-08-13,Male,1951-05-12,64,Greater than 45,Hispanic,0,1,0,0,1,-8,2013-08-05 12:41:27,2013-08-13 02:27:19,13010831CF10A,2013-08-04,,9,F,Aggravated Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-13,Risk of Violence,1,Low,2013-08-13,2013-08-05,2013-08-13,1,0,962,0,0,0\r\n886,adriana valencia,adriana,valencia,2013-08-21,Female,1969-08-29,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-20 09:12:14,2013-08-21 09:19:20,13015855MM10A,2013-08-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-21,Risk of Violence,1,Low,2013-08-21,2013-08-20,2013-08-21,0,0,954,0,0,0\r\n887,courtney louis,courtney,louis,2013-03-04,Male,1985-05-11,30,25 - 45,African-American,0,6,0,1,5,-1,2013-03-03 06:23:59,2013-03-04 08:33:50,13003196CF10A,2013-03-03,,1,F,Driving While License Revoked,1,13011913CF10A,(F3),0,2013-08-23,Unauth C/P/S Sounds>1000/Audio,2013-08-23,2013-08-24,,1,14009967MM10A,(M1),2014-06-26,Battery,Risk of Recidivism,6,Medium,2013-03-04,Risk of Violence,6,Medium,2013-03-04,2013-08-23,2013-08-24,5,0,172,1,1,1\r\n888,pamela delgado,pamela,delgado,2014-01-22,Female,1993-11-01,22,Less than 25,Caucasian,0,3,0,0,0,0,2014-01-22 12:55:30,2014-01-22 09:20:36,14001125MM10A,2014-01-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-22,Risk of Violence,4,Low,2014-01-22,2014-01-22,2014-01-22,0,0,800,0,0,0\r\n889,clevor kiffin,clevor,kiffin,2013-03-24,Male,1993-04-06,23,Less than 25,Caucasian,0,4,0,0,1,-1,2013-03-23 10:06:43,2013-04-02 09:22:16,13013358TC10A,,2013-03-23,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-24,Risk of Violence,6,Medium,2013-03-24,2016-02-06,2016-02-07,1,9,1049,0,0,0\r\n893,donnie aguilar,donnie,aguilar,2013-02-25,Male,1985-01-19,31,25 - 45,Hispanic,0,1,0,0,0,-1,2013-02-24 12:26:26,2013-02-25 01:51:33,13003813MM10A,2013-02-23,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,2,Low,2013-02-25,2013-02-24,2013-02-25,0,0,1131,0,0,0\r\n895,patrick cezaire,patrick,cezaire,2013-05-01,Male,1985-03-15,31,25 - 45,Other,0,2,0,0,1,-1,2013-04-30 07:18:35,2013-05-01 03:47:37,13006119CF10A,,2013-04-30,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2014-12-30,2014-12-31,1,0,608,0,0,0\r\n898,antvonte sanders,antvonte,sanders,2013-03-07,Male,1988-02-25,28,25 - 45,African-American,0,8,0,0,4,747,2015-03-24 07:19:51,2015-05-15 10:51:34,12002361CF10A,,2012-03-06,366,F,arrest case no charge,1,15003939CF10A,(F3),0,2015-03-24,Tampering With Physical Evidence,2015-03-24,2015-05-15,,0,,,,,Risk of Recidivism,8,High,2013-03-07,Risk of Violence,7,Medium,2013-03-07,2015-03-24,2015-05-15,4,0,747,1,0,0\r\n899,stephen parra,stephen,parra,2013-03-17,Male,1991-04-08,25,25 - 45,African-American,0,3,0,0,0,-1,2013-03-16 09:16:46,2013-03-17 02:17:18,13005181MM10A,2013-03-16,,1,M,Disorderly Conduct,1,15011037CF10A,(F3),0,2015-08-26,False Imprisonment,2015-08-26,2015-08-29,,1,15011037CF10A,(M1),2015-08-26,Battery,Risk of Recidivism,3,Low,2013-03-17,Risk of Violence,4,Low,2013-03-17,2015-08-26,2015-08-29,0,0,892,1,0,0\r\n900,aaliyah lovo,aaliyah,lovo,2013-11-04,Female,1994-11-10,21,Less than 25,Caucasian,0,7,0,0,0,-1,2013-11-03 01:54:43,2013-11-05 05:54:27,13015312CF10A,2013-11-03,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-04,Risk of Violence,5,Medium,2013-11-04,2013-11-03,2013-11-05,0,1,879,0,0,0\r\n901,odean lawrence,odean,lawrence,2013-01-13,Male,1988-07-18,27,25 - 45,African-American,0,2,0,0,0,-1,2013-01-12 04:24:36,2013-01-13 12:41:13,13000749MM10A,2013-01-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-13,Risk of Violence,3,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0,0\r\n905,luis mora,luis,mora,2013-07-23,Male,1983-05-16,32,25 - 45,Hispanic,0,1,0,0,1,-27,2013-06-26 07:47:32,2013-06-26 08:09:02,13008994CF10A,2013-06-26,,27,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-23,Risk of Violence,1,Low,2013-07-23,2013-06-26,2013-06-26,1,0,983,0,0,0\r\n906,megan mcnulty,megan,mcnulty,2013-09-22,Female,1991-07-28,24,Less than 25,Caucasian,0,5,0,1,0,0,2013-09-22 05:21:34,2013-09-23 02:00:15,13013345CF10A,2013-09-22,,0,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-22,Risk of Violence,5,Medium,2013-09-22,2013-09-22,2013-09-23,0,1,922,0,0,0\r\n909,mellick jackson,mellick,jackson,2014-01-29,Male,1996-04-11,20,Less than 25,African-American,1,3,0,0,1,-1,2014-01-28 12:49:23,2014-01-29 10:42:36,14000687CF10A,,2014-01-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-29,Risk of Violence,6,Medium,2014-01-29,2014-01-28,2014-01-29,1,0,793,0,0,0\r\n914,dwayne donaldson,dwayne,donaldson,2014-12-02,Male,1988-08-02,27,25 - 45,African-American,0,7,0,0,3,-1,2014-12-01 03:21:53,2014-12-07 04:35:04,14016999MM10A,2014-12-01,,1,M,Battery,1,15007366CF10A,(F3),0,2015-06-06,Aggravated Assault w/Firearm,2015-06-06,2015-06-07,,1,15007366CF10A,(F3),2015-06-06,Aggravated Assault w/Firearm,Risk of Recidivism,7,Medium,2014-12-02,Risk of Violence,8,High,2014-12-02,2015-06-06,2015-06-07,3,5,186,1,1,1\r\n916,johhnie scott,johhnie,scott,2013-01-18,Male,1975-06-13,40,25 - 45,African-American,0,2,0,0,0,-1,2013-01-17 05:59:00,2013-01-18 08:48:30,13000829CF10A,2013-01-17,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2013-01-17,2013-01-18,0,0,1169,0,0,0\r\n917,marcus gibbons,marcus,gibbons,2014-12-10,Male,1993-08-17,22,Less than 25,African-American,0,10,0,0,11,0,2014-12-10 01:21:36,2014-12-10 01:26:52,14016372CF10A,2014-12-09,,1,F,Possession of Cocaine,1,15001136CF10A,(F3),0,2015-01-25,Poss Pyrrolidinovalerophenone,2015-01-25,2015-02-28,,1,16001348MM10A,(M1),2016-02-10,Battery,Risk of Recidivism,10,High,2014-12-10,Risk of Violence,8,High,2014-12-10,2015-01-09,2015-01-10,11,0,30,0,1,1\r\n918,vernee mckenzie,vernee,mckenzie,2013-04-16,Female,1977-09-25,38,25 - 45,African-American,0,1,0,0,1,-1,2013-04-15 11:18:52,2013-04-16 09:12:28,13005448CF10A,2013-04-15,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-16,Risk of Violence,1,Low,2013-04-16,2013-04-15,2013-04-16,1,0,1081,0,0,0\r\n921,steve mitchell,steve,mitchell,2013-03-04,Male,1985-11-11,30,25 - 45,African-American,0,7,0,0,1,0,2013-03-04 03:53:19,2013-03-05 01:59:42,13004414MM10A,2013-03-04,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-04,Risk of Violence,4,Low,2013-03-04,2013-04-29,2013-05-09,1,1,56,0,0,0\r\n922,robert golden,robert,golden,2014-05-15,Male,1988-08-12,27,25 - 45,Caucasian,0,6,0,0,6,-1,2014-05-14 02:14:46,2014-06-17 10:56:58,14006740CF10A,,2014-05-14,1,F,arrest case no charge,1,16000579CF10A,(F2),,2016-01-10,Threaten Throw Destruct Device,,,,1,16000579CF10A,(F2),2016-01-10,Threaten Throw Destruct Device,Risk of Recidivism,6,Medium,2014-05-15,Risk of Violence,4,Low,2014-05-15,2015-07-13,2015-07-14,6,33,424,0,1,1\r\n923,edmond shield,edmond,shield,2013-11-06,Male,1972-09-04,43,25 - 45,African-American,0,1,0,0,1,,,,13020969MM10A,2013-11-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-06,Risk of Violence,1,Low,2013-11-06,,,1,0,877,0,0,0\r\n924,cindy lambke,cindy,lambke,2013-10-09,Female,1956-05-13,59,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-09 03:00:19,2013-10-09 08:12:28,13019210MM10A,2013-10-08,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-09,Risk of Violence,1,Low,2013-10-09,2013-10-09,2013-10-09,0,0,905,0,0,0\r\n925,kevin parker,kevin,parker,2013-04-18,Male,1979-01-24,37,25 - 45,Caucasian,0,1,0,0,2,-2,2013-04-16 05:14:39,2013-04-17 05:35:24,13007381MM10A,2013-04-16,,2,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2013-04-16,2013-04-17,2,0,1079,0,0,0\r\n927,remo bosi-godomar,remo,bosi-godomar,2013-09-06,Male,1977-11-06,38,25 - 45,Caucasian,0,1,0,0,0,0,2013-09-06 01:28:27,2013-09-06 10:50:40,13012553CF10A,2013-09-06,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-06,2013-09-06,0,0,938,0,0,0\r\n932,trinidad ramirez-ramirez,trinidad,ramirez-ramirez,2013-09-16,Male,1972-11-06,43,25 - 45,Hispanic,0,1,0,0,1,-44,2013-08-03 01:01:38,2013-09-13 05:55:40,13014658MM10A,2013-08-03,,44,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2013-08-03,2013-09-13,1,0,928,0,0,0\r\n934,jerald peterson,jerald,peterson,2013-04-09,Male,1990-04-20,25,25 - 45,African-American,0,5,0,0,4,-1,2013-04-08 05:49:48,2013-05-10 05:42:55,13005037CF10A,2013-04-08,,1,F,Grand Theft Firearm,1,13008240CF10A,(M1),1,2013-06-11,Possess Cannabis/20 Grams Or Less,2013-06-12,2013-09-11,,1,13013057CF10A,(F1),2013-09-15,Attempt Murder in the First Degree,Risk of Recidivism,5,Medium,2013-04-09,Risk of Violence,4,Low,2013-04-09,2013-04-08,2013-05-10,4,31,63,1,1,1\r\n935,carmelo aquino,carmelo,aquino,2013-12-01,Male,1964-05-31,51,Greater than 45,Caucasian,0,1,0,0,0,0,2013-12-01 12:17:36,2013-12-01 12:33:39,13022352MM10A,2013-11-30,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-01,Risk of Violence,1,Low,2013-12-01,2013-12-01,2013-12-01,0,0,852,0,0,0\r\n937,johell ullda,johell,ullda,2013-12-25,Male,1986-02-28,30,25 - 45,Hispanic,0,5,0,0,6,,,,13017755CF10A,2013-12-24,,1,F,Possession of Cocaine,1,14009698CF10A,(F3),,2014-07-15,Fleeing Or Attmp Eluding A Leo,,,,1,14009698CF10A,(F2),2014-07-15,Agg Assault Law Enforc Officer,Risk of Recidivism,5,Medium,2013-12-25,Risk of Violence,3,Low,2013-12-25,2014-12-16,2020-01-01,6,0,202,1,1,1\r\n944,zechariah faulk,zechariah,faulk,2014-01-03,Male,1987-10-11,28,25 - 45,African-American,0,3,0,0,10,0,2014-01-03 04:56:59,2014-01-03 08:00:20,14000141CF10A,2014-01-03,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-03,Risk of Violence,2,Low,2014-01-03,2014-03-13,2014-03-21,10,0,69,0,0,0\r\n945,laurence thomas,laurence,thomas,2013-10-18,Male,1990-03-31,26,25 - 45,African-American,0,8,0,0,6,,,,13011582MM10A,2013-05-07,,164,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-18,Risk of Violence,8,High,2013-10-18,,,6,0,896,0,0,0\r\n947,lemore noah,lemore,noah,2013-02-24,Female,1992-11-02,23,Less than 25,Caucasian,0,10,0,0,3,-1,2013-02-23 12:49:04,2013-03-01 06:16:35,13002766CF10A,2013-02-23,,1,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-24,Risk of Violence,9,High,2013-02-24,2013-04-03,2013-05-26,3,5,38,0,0,0\r\n948,ashliegh batiste,ashliegh,batiste,2013-01-20,Female,1993-04-28,22,Less than 25,African-American,0,5,0,0,0,-1,2013-01-19 11:57:56,2013-01-27 05:20:46,13001334MO10A,2013-01-19,,1,M,Failure To Pay Taxi Cab Charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-20,Risk of Violence,6,Medium,2013-01-20,2013-01-19,2013-01-27,0,7,1167,0,0,0\r\n951,kelos francois,kelos,francois,2013-10-01,Male,1985-02-18,31,25 - 45,African-American,0,1,0,0,1,-27,2013-09-04 12:57:02,2013-09-04 08:28:00,13016878MM10A,2013-09-03,,28,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2013-09-04,2013-09-04,1,0,913,0,0,0\r\n953,curtis coombs,curtis,coombs,2014-03-10,Male,1986-06-11,29,25 - 45,African-American,0,1,0,0,0,0,2014-03-10 03:51:44,2014-03-11 03:42:19,14009450MU10A,2014-03-10,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-10,Risk of Violence,1,Low,2014-03-10,2014-03-10,2014-03-11,0,1,753,0,0,0\r\n956,jaron thomas,jaron,thomas,2013-10-09,Male,1991-07-23,24,Less than 25,African-American,0,10,0,0,4,-175,2013-04-17 11:36:33,2013-04-18 05:06:12,13005512CF10A,2013-04-17,,175,F,Possession of Cocaine,1,15000796MM10A,(M1),0,2015-01-21,Viol Injunct Domestic Violence,2015-01-21,2015-01-24,,1,15008227CF10A,(F1),2015-06-25,Robbery / Weapon,Risk of Recidivism,10,High,2013-10-09,Risk of Violence,9,High,2013-10-09,2014-10-14,2014-10-17,4,0,370,0,1,1\r\n958,wilfredo alejo-dominguez,wilfredo,alejo-dominguez,2013-02-08,Male,1984-05-18,31,25 - 45,Hispanic,0,2,0,0,0,0,2013-02-08 05:06:56,2013-02-08 08:10:52,13002891MM10A,2013-02-08,,0,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-08,Risk of Violence,2,Low,2013-02-08,2014-08-14,2014-08-19,0,0,552,0,0,0\r\n962,robert rose,robert,rose,2013-08-24,Male,1988-07-24,27,25 - 45,Caucasian,0,9,0,0,5,0,2013-08-24 03:53:34,2013-08-25 08:30:23,13016215MM10A,2013-08-24,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-24,Risk of Violence,7,Medium,2013-08-24,2013-08-24,2013-08-25,5,1,951,0,0,0\r\n963,stephanie coello,stephanie,coello,2013-12-25,Male,1990-10-28,25,25 - 45,Caucasian,0,5,0,0,1,-1,2013-12-24 08:20:02,2013-12-25 12:46:17,13017744CF10A,2013-12-24,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-25,Risk of Violence,3,Low,2013-12-25,2013-12-24,2013-12-25,1,0,828,0,0,0\r\n965,jackson clerisier,jackson,clerisier,2014-02-06,Male,1977-09-13,38,25 - 45,African-American,0,1,0,0,0,-1,2014-02-05 09:19:16,2014-02-07 09:14:53,14001640CF10A,2014-02-05,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-06,Risk of Violence,1,Low,2014-02-06,2014-02-05,2014-02-07,0,1,785,0,0,0\r\n969,luc tismeus,luc,tismeus,2013-02-06,Male,1993-09-23,22,Less than 25,Other,0,9,0,0,0,-1,2013-02-05 04:14:37,2013-02-21 05:24:06,13001811CF10A,2013-02-05,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-06,Risk of Violence,7,Medium,2013-02-06,2013-02-05,2013-02-21,0,15,1150,0,0,0\r\n971,crystal shellman,crystal,shellman,2014-09-10,Female,1957-06-25,58,Greater than 45,African-American,0,2,0,0,4,-14,2014-08-27 09:14:45,2014-08-28 09:22:51,14011695CF10A,2014-08-27,,14,F,\"Poss 3,4 MDMA (Ecstasy)\",1,15000238MM30A,(M2),,2015-01-18,Petit Theft,,,,1,15012748CF10A,(M1),2015-10-02,Battery,Risk of Recidivism,2,Low,2014-09-10,Risk of Violence,1,Low,2014-09-10,2016-02-19,2016-02-21,4,0,130,1,1,1\r\n975,jonathan saintil,jonathan,saintil,2014-02-27,Male,1995-02-05,21,Less than 25,African-American,0,3,0,1,0,-1,2014-02-26 09:16:23,2014-02-27 02:05:20,14002730CF10A,2014-02-26,,1,F,Use Scanning Device to Defraud,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-27,Risk of Violence,5,Medium,2014-02-27,2014-02-26,2014-02-27,0,0,764,0,0,0\r\n977,katavia latson,katavia,latson,2013-12-05,Female,1994-03-03,22,Less than 25,African-American,0,8,0,0,0,-1,2013-12-04 07:09:34,2013-12-05 09:19:46,13016777CF10A,2013-12-04,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-05,Risk of Violence,6,Medium,2013-12-05,2013-12-04,2013-12-05,0,0,848,0,0,0\r\n978,christopher haye,christopher,haye,2013-01-15,Male,1986-02-16,30,25 - 45,African-American,0,2,0,0,0,-1,2013-01-14 07:16:50,2013-01-17 03:17:43,13000619CF10A,2013-01-14,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-15,Risk of Violence,2,Low,2013-01-15,2013-01-14,2013-01-17,0,2,1172,0,0,0\r\n983,glenn rowe,glenn,rowe,2013-12-10,Male,1993-10-19,22,Less than 25,Caucasian,0,4,0,0,2,-40,2013-10-31 02:13:50,2013-11-27 08:48:45,13015187CF10A,2013-10-30,,41,F,Battery on Law Enforc Officer,1,14002283CF10A,(M1),0,2014-02-18,Battery,2014-02-18,2014-05-09,,1,14002283CF10A,(M1),2014-02-18,Battery,Risk of Recidivism,4,Low,2013-12-10,Risk of Violence,6,Medium,2013-12-10,2014-02-18,2014-05-09,2,0,70,1,1,1\r\n988,sondra murrell,sondra,murrell,2013-04-14,Female,1984-09-01,31,25 - 45,African-American,0,6,0,0,10,-1,2013-04-13 09:58:44,2013-04-14 07:39:41,13005347CF10A,2013-04-13,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-14,Risk of Violence,2,Low,2013-04-14,2013-04-13,2013-04-14,10,0,1083,0,0,0\r\n990,brad griffith,brad,griffith,2014-01-09,Female,1970-05-11,45,Greater than 45,Caucasian,0,6,0,0,1,0,2014-01-09 02:26:24,2014-01-10 09:06:22,14000374CF10A,2014-01-09,,0,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-09,Risk of Violence,4,Low,2014-01-09,2014-01-09,2014-01-10,1,1,813,0,0,0\r\n991,joseph belgrave,joseph,belgrave,2013-03-07,Male,1992-08-07,23,Less than 25,African-American,0,7,0,0,4,320,2014-01-21 12:54:18,2014-04-21 09:05:53,12005378CF10A,,2012-04-11,330,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-07,Risk of Violence,9,High,2013-03-07,2014-01-21,2014-04-21,4,0,320,0,0,0\r\n998,steve louiseron,steve,louiseron,2013-09-05,Male,1988-07-19,27,25 - 45,African-American,0,7,0,0,13,-1,2013-09-04 07:58:16,2013-09-06 09:43:19,13012126CF10A,,2013-09-04,1,F,arrest case no charge,1,13014078CF10A,(F3),0,2013-10-07,Tamper With Victim,2013-10-07,2014-03-29,,1,13014078CF10A,(M1),2013-10-07,Battery,Risk of Recidivism,7,Medium,2013-09-05,Risk of Violence,3,Low,2013-09-05,2013-10-07,2014-03-29,13,1,32,1,1,1\r\n999,jonathan nevarez,jonathan,nevarez,2014-07-10,Male,1977-07-26,38,25 - 45,Caucasian,0,1,0,0,1,-1,2014-07-09 06:45:49,2014-07-10 01:39:26,14009397CF10A,2014-07-09,,1,F,Crimin Mischief Damage $1000+,1,15004068MM10A,(M1),0,2015-04-08,Battery,2015-04-08,2015-04-10,,1,15004068MM10A,(M1),2015-04-08,Battery,Risk of Recidivism,1,Low,2014-07-10,Risk of Violence,1,Low,2014-07-10,2015-04-08,2015-04-10,1,0,272,1,1,1\r\n1001,walter samuels,walter,samuels,2014-02-03,Male,1968-09-29,47,Greater than 45,African-American,0,9,0,0,20,-1,2014-02-02 11:48:26,2014-02-04 03:57:20,14001468CF10A,2014-02-02,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-03,Risk of Violence,5,Medium,2014-02-03,2014-02-02,2014-02-04,20,1,788,0,0,0\r\n1002,latif blagman,latif,blagman,2013-10-01,Male,1994-04-06,22,Less than 25,African-American,0,7,1,0,3,-1,2013-09-30 09:47:34,2013-10-01 02:07:40,13013094CF10A,,2013-09-30,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-01,Risk of Violence,7,Medium,2013-10-01,2013-09-30,2013-10-01,3,0,913,0,0,0\r\n1003,kendrick raymond,kendrick,raymond,2014-09-04,Male,1980-09-03,35,25 - 45,African-American,0,9,0,1,1,-1,2014-09-03 11:08:09,2014-11-22 04:31:47,11015078MM10A,2011-07-03,,1159,M,Battery,1,15011271CF10A,(F3),,2015-08-27,Felony Battery (Dom Strang),,,,1,15011271CF10A,(F3),2015-08-27,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2014-09-04,Risk of Violence,3,Low,2014-09-04,2015-08-13,2015-10-27,1,79,357,1,1,1\r\n1005,john brown,john,brown,2014-04-11,Male,1950-09-02,65,Greater than 45,African-American,0,2,0,0,2,-18,2014-03-24 02:29:51,2014-03-29 06:17:09,14016429MM10A,2014-03-24,,18,M,Violation of Injunction Order/Stalking/Cyberstalking,1,15011493CF10A,(F2),1,2015-09-04,Aggrav Battery w/Deadly Weapon,2015-09-05,2015-09-06,,1,15011493CF10A,(F2),2015-09-04,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,2,Low,2014-04-11,Risk of Violence,1,Low,2014-04-11,2015-09-16,2015-10-26,2,0,511,1,1,1\r\n1006,jarrett hankerson,jarrett,hankerson,2014-01-19,Male,1980-08-24,35,25 - 45,African-American,0,4,0,0,0,-1,2014-01-18 05:06:51,2014-01-19 09:04:34,14002370MU10A,2014-01-18,,1,M,Fail To Obey Police Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-19,Risk of Violence,3,Low,2014-01-19,2014-01-18,2014-01-19,0,0,803,0,0,0\r\n1007,jeniqua johnson,jeniqua,johnson,2013-08-05,Female,1982-10-13,33,25 - 45,African-American,0,3,0,0,0,-1,2013-08-04 07:19:39,2013-08-05 09:38:46,13010833CF10A,2013-08-04,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-05,Risk of Violence,2,Low,2013-08-05,2015-02-07,2015-07-17,0,0,551,0,0,0\r\n1008,gregory thornton,gregory,thornton,2013-06-17,Male,1962-12-16,53,Greater than 45,Caucasian,0,1,0,0,1,-10,2013-06-07 03:20:17,2013-06-08 05:43:33,13010982MM10A,2013-06-07,,10,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-17,Risk of Violence,1,Low,2013-06-17,2013-06-07,2013-06-08,1,0,1019,0,0,0\r\n1009,rigoberto vasquezlimas,rigoberto,vasquezlimas,2013-11-05,Male,1964-01-19,52,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-11-04 11:09:47,2013-11-06 01:57:40,13015376CF10A,2013-11-04,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-05,Risk of Violence,1,Low,2013-11-05,2013-11-04,2013-11-06,0,1,878,0,0,0\r\n1014,nijah mcduffie,nijah,mcduffie,2013-12-12,Male,1995-03-26,21,Less than 25,African-American,0,5,0,0,0,-1,2013-12-11 11:08:04,2013-12-12 08:41:41,13017208CF10A,2013-12-11,,1,F,Obstruct Fire Equipment,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-12,Risk of Violence,7,Medium,2013-12-12,2014-09-10,2014-09-24,0,0,272,0,0,0\r\n1015,david washington,david,washington,2014-01-22,Male,1978-10-12,37,25 - 45,African-American,0,4,0,0,11,-1,2014-01-21 07:19:02,2014-01-23 04:03:56,14000875CF10A,2014-01-21,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-22,Risk of Violence,2,Low,2014-01-22,2016-03-02,2016-03-14,11,1,770,0,0,0\r\n1016,ryan chambers,ryan,chambers,2013-04-15,Male,1985-08-01,30,25 - 45,Other,0,9,0,0,4,-1,2013-04-14 09:47:43,2013-04-15 07:07:32,13015943TC10A,2013-04-14,,1,M,Reckless Driving,1,13006811CF10A,(F1),0,2013-05-10,Attempt Murder in the First Degree,2013-05-10,2013-05-17,,1,13006811CF10A,(F1),2013-05-10,Attempt Murder in the First Degree,Risk of Recidivism,9,High,2013-04-15,Risk of Violence,8,High,2013-04-15,2013-05-10,2013-05-17,4,0,25,1,1,1\r\n1017,rickie miranda,rickie,miranda,2014-01-21,Male,1982-11-06,33,25 - 45,Caucasian,0,5,0,0,5,-32,2013-12-20 04:48:41,2014-01-11 03:03:23,13015561CF10A,,2013-12-20,32,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-21,Risk of Violence,2,Low,2014-01-21,2013-12-20,2014-01-11,5,0,801,0,0,0\r\n1018,anthony hansberry,anthony,hansberry,2013-04-10,Male,1984-09-19,31,25 - 45,African-American,0,7,0,0,2,,,,11021360MM10A,2011-09-23,,565,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-10,Risk of Violence,6,Medium,2013-04-10,,,2,0,1087,0,0,0\r\n1020,ivor singh,ivor,singh,2014-02-02,Male,1961-07-08,54,Greater than 45,Other,0,1,0,0,0,0,2014-02-02 12:09:29,2014-02-02 07:50:16,14001441CF10A,2014-02-01,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-02,Risk of Violence,1,Low,2014-02-02,2014-02-02,2014-02-02,0,0,789,0,0,0\r\n1022,albalidia torres,albalidia,torres,2014-01-31,Female,1984-04-23,31,25 - 45,African-American,0,1,0,0,0,0,2014-01-31 01:35:12,2014-01-31 01:27:09,14001682MM10A,2014-01-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-31,Risk of Violence,1,Low,2014-01-31,2014-01-31,2014-01-31,0,0,791,0,0,0\r\n1023,esther catala,esther,catala,2014-02-28,Female,1956-11-30,59,Greater than 45,Caucasian,0,3,0,0,2,26,2014-03-26 09:34:52,2014-04-24 10:32:10,13001158CF10A,2013-01-24,,400,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-28,Risk of Violence,1,Low,2014-02-28,2014-03-26,2014-04-24,2,0,26,0,0,0\r\n1024,jamil robinson,jamil,robinson,2013-09-27,Male,1989-01-15,27,25 - 45,African-American,0,2,0,0,0,-1,2013-09-26 05:55:20,2013-09-27 08:21:29,13013539CF10A,2013-09-26,,1,M,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-27,Risk of Violence,2,Low,2013-09-27,2013-09-26,2013-09-27,0,0,917,0,0,0\r\n1025,jarvarris brown,jarvarris,brown,2013-10-14,Male,1979-09-11,36,25 - 45,African-American,0,7,0,0,0,-1,2013-10-13 05:56:25,2013-10-14 02:07:16,13019418MM10A,2013-10-13,,1,M,Battery,1,14010849MM10A,(M1),,2014-06-03,Battery,,,,1,14010849MM10A,(M1),2014-06-03,Battery,Risk of Recidivism,7,Medium,2013-10-14,Risk of Violence,2,Low,2013-10-14,2013-10-13,2013-10-14,0,0,232,1,1,1\r\n1027,walter hart,walter,hart,2013-04-04,Male,1994-01-08,22,Less than 25,African-American,0,9,0,1,3,0,2013-04-04 07:34:43,2014-02-21 10:11:50,13004835CF10A,,2013-04-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-04,Risk of Violence,8,High,2013-04-04,2013-04-04,2014-02-21,3,323,1093,0,0,0\r\n1030,melissa harris,melissa,harris,2013-04-26,Female,1987-08-20,28,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-25 09:33:39,2013-04-26 08:16:52,13008008MM10A,2013-04-25,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-26,Risk of Violence,2,Low,2013-04-26,2014-04-25,2014-04-26,0,0,364,0,0,0\r\n1034,jameel brinson,jameel,brinson,2013-01-14,Male,1993-02-18,23,Less than 25,African-American,0,10,0,1,2,0,2013-01-14 04:13:05,2013-04-04 07:46:57,13000874MM10A,2013-01-14,,0,M,Battery,1,13010127MM10A,(M2),0,2013-05-27,Petit Theft,2013-05-27,2013-06-18,,1,14005510CF10A,(F1),2014-04-20,Carjacking,Risk of Recidivism,10,High,2013-01-14,Risk of Violence,9,High,2013-01-14,2013-05-27,2013-06-18,2,80,133,1,1,1\r\n1036,vanessa vedrine,vanessa,vedrine,2013-04-27,Male,1988-10-08,27,25 - 45,African-American,0,4,0,0,3,-1,2013-04-26 04:48:56,2013-04-27 01:30:22,13006045CF10A,2013-04-26,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-27,Risk of Violence,3,Low,2013-04-27,2014-08-12,2014-08-13,3,0,472,0,0,0\r\n1037,eihab farraj,eihab,farraj,2013-05-24,Male,1994-08-20,21,Less than 25,Asian,0,6,0,1,0,-1,2013-05-23 04:42:45,2013-05-24 01:33:21,13007387CF10A,2013-05-23,,1,F,Att Tamper w/Physical Evidence,1,14015415CF10A,(F1),0,2014-11-15,Burgl Dwel/Struct/Convey Armed,2014-11-15,2014-12-24,,1,14015415CF10A,(F3),2014-11-15,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-05-24,Risk of Violence,6,Medium,2013-05-24,2014-11-15,2014-12-24,0,0,540,1,1,1\r\n1041,shawnita obasogie,shawnita,obasogie,2013-11-15,Female,1984-02-27,32,25 - 45,African-American,0,2,0,0,2,-43,2013-10-03 12:00:11,2013-10-03 06:36:07,13013850CF10A,2013-10-02,,44,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-15,Risk of Violence,1,Low,2013-11-15,2013-10-03,2013-10-03,2,0,868,0,0,0\r\n1043,timothy gordon,timothy,gordon,2013-08-22,Male,1984-07-22,31,25 - 45,African-American,0,7,0,0,5,-1,2013-08-21 10:33:41,2013-08-28 08:10:48,13008506CF10A,,2013-08-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-22,Risk of Violence,4,Low,2013-08-22,2013-12-11,2013-12-17,5,6,111,0,0,0\r\n1044,andrew ellis,andrew,ellis,2013-09-25,Male,1979-06-04,36,25 - 45,African-American,0,5,1,0,4,-1,2013-09-24 01:15:18,2013-09-26 04:16:06,13018225MM10A,2013-09-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-25,Risk of Violence,2,Low,2013-09-25,2013-09-24,2013-09-26,4,1,919,0,0,0\r\n1046,johnie wilson,johnie,wilson,2013-09-04,Male,1979-07-09,36,25 - 45,African-American,0,5,0,0,1,,,,12003953MM10A,2012-02-26,,556,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-04,Risk of Violence,5,Medium,2013-09-04,,,1,0,940,0,0,0\r\n1049,lonnie paccione,lonnie,paccione,2013-05-03,Male,1963-04-17,53,Greater than 45,Caucasian,0,1,0,0,2,-2,2013-05-01 05:14:23,2013-05-02 05:04:15,13006254CF10A,2013-05-01,,2,F,Deliver Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-03,Risk of Violence,1,Low,2013-05-03,2013-05-01,2013-05-02,2,0,1064,0,0,0\r\n1054,kendrick joseph,kendrick,joseph,2014-01-14,Male,1995-01-16,21,Less than 25,African-American,1,10,0,0,2,-306,2013-03-14 12:55:28,2014-01-02 10:38:00,13005142CF10A,,2013-04-16,273,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-14,Risk of Violence,9,High,2014-01-14,2013-03-14,2014-01-02,2,0,808,0,0,0\r\n1055,john sherbondy,john,sherbondy,2013-08-19,Male,1982-12-17,33,25 - 45,African-American,0,8,0,0,4,236,2014-04-12 02:28:50,2015-03-17 06:32:57,11017912CF10A,,2012-02-09,557,F,arrest case no charge,1,14005295CF10A,(F3),,2014-04-02,Grand Theft in the 3rd Degree,,,,1,14005098CF10A,(F3),2014-04-11,Aggravated Assault w/Firearm,Risk of Recidivism,8,High,2013-08-19,Risk of Violence,6,Medium,2013-08-19,2015-06-23,2020-01-01,4,0,226,1,1,1\r\n1058,donald constant,donald,constant,2013-05-05,Male,1987-12-15,28,25 - 45,African-American,0,4,0,0,2,-1,2013-05-04 08:17:34,2013-05-10 09:32:52,12011021MM10A,,2013-05-04,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-05,Risk of Violence,2,Low,2013-05-05,2013-05-04,2013-05-10,2,5,1062,0,0,0\r\n1059,maceo wright,maceo,wright,2013-09-21,Male,1991-11-26,24,Less than 25,African-American,0,6,0,0,1,-1,2013-09-20 03:56:36,2013-09-21 08:41:09,13017988MM10A,2013-09-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-21,Risk of Violence,4,Low,2013-09-21,2013-09-20,2013-09-21,1,0,923,0,0,0\r\n1060,william karlson,william,karlson,2013-12-19,Male,1971-09-04,44,25 - 45,African-American,0,1,0,0,1,-1,2013-12-18 07:50:18,2013-12-19 08:37:29,13017492CF10A,2013-12-18,,1,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-19,Risk of Violence,1,Low,2013-12-19,2015-03-06,2015-03-07,1,0,442,0,0,0\r\n1061,zacchius boyce,zacchius,boyce,2013-02-27,Male,1969-09-17,46,Greater than 45,African-American,0,1,0,0,0,-1,2013-02-26 07:01:42,2013-02-27 07:50:29,13003011CF10A,2013-02-26,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-27,Risk of Violence,1,Low,2013-02-27,2013-02-26,2013-02-27,0,0,1129,0,0,0\r\n1062,duval dixon,duval,dixon,2013-03-24,Male,1979-01-07,37,25 - 45,African-American,0,3,0,0,6,0,2013-03-24 03:36:52,2013-03-25 07:15:05,13004342CF10A,2013-03-24,,0,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-24,Risk of Violence,5,Medium,2013-03-24,2013-03-24,2013-03-25,6,1,1104,0,0,0\r\n1065,geovani johnson,geovani,johnson,2013-08-22,Male,1988-05-18,27,25 - 45,African-American,0,8,1,0,10,0,2013-08-22 03:03:57,2013-08-22 08:25:10,13011816CF10A,2013-08-22,,0,F,Driving While License Revoked,1,13012248CF10A,(F3),0,2013-08-29,Possession of Cocaine,2013-08-29,2013-08-31,,1,14013212CF10A,(F1),2014-09-29,Robbery W/Firearm,Risk of Recidivism,8,High,2013-08-22,Risk of Violence,7,Medium,2013-08-22,2013-08-29,2013-08-31,10,0,7,1,1,1\r\n1066,lazaro vergara,lazaro,vergara,2013-02-12,Male,1975-05-16,40,25 - 45,Caucasian,0,2,0,0,1,-1,2013-02-11 10:39:48,2013-02-13 10:03:55,13002109CF10A,2013-02-11,,1,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-12,Risk of Violence,1,Low,2013-02-12,2013-02-11,2013-02-13,1,1,1144,0,0,0\r\n1069,bart storm,bart,storm,2014-03-21,Male,1962-07-10,53,Greater than 45,Caucasian,0,1,0,0,1,-6,2014-03-15 04:06:38,2014-03-21 11:05:39,14003705CF10A,,2014-03-14,7,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-21,Risk of Violence,1,Low,2014-03-21,2014-03-15,2014-03-21,1,0,742,0,0,0\r\n1070,anthony newson,anthony,newson,2013-05-23,Male,1989-04-27,26,25 - 45,African-American,0,6,1,0,8,-52,2013-04-01 12:44:34,2013-05-12 02:18:45,13004699CF10A,2013-04-01,,52,F,Attempted Robbery Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-23,Risk of Violence,6,Medium,2013-05-23,2015-09-10,2015-09-15,8,0,840,0,0,0\r\n1072,andre levy,andre,levy,2014-02-02,Male,1987-06-14,28,25 - 45,African-American,0,1,0,0,0,-1,2014-02-01 07:34:55,2014-02-02 07:48:16,14001432CF10A,2014-02-01,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-02,Risk of Violence,3,Low,2014-02-02,2014-02-01,2014-02-02,0,0,789,0,0,0\r\n1073,jonathan vanegas,jonathan,vanegas,2014-02-10,Male,1993-03-01,23,Less than 25,Hispanic,0,4,0,0,0,0,2014-02-10 04:37:45,2014-02-10 08:40:32,14005313MU10A,2014-02-10,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-10,Risk of Violence,5,Medium,2014-02-10,2014-02-10,2014-02-10,0,0,781,0,0,0\r\n1076,victoria hay,victoria,hay,2013-02-12,Female,1969-05-07,46,Greater than 45,Caucasian,0,8,0,0,2,-1,2013-02-11 07:18:03,2013-03-03 05:03:27,13002106CF10A,2013-02-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-12,Risk of Violence,1,Low,2013-02-12,2013-07-10,2013-10-17,2,19,148,0,0,0\r\n1079,markland blackwood,markland,blackwood,2013-07-09,Male,1978-07-21,37,25 - 45,African-American,0,1,0,0,5,,,,13008358CF10A,2013-06-11,,28,F,Aggravated Battery / Pregnant,1,13022826MM10A,(M1),,2013-11-14,Battery,,,,1,13022826MM10A,(M1),2013-11-14,Battery,Risk of Recidivism,1,Low,2013-07-09,Risk of Violence,2,Low,2013-07-09,,,5,0,128,1,1,1\r\n1081,rapheal brown,rapheal,brown,2013-04-10,Male,1971-11-30,44,25 - 45,African-American,0,1,0,1,1,,,,11126344TI30A,2011-11-24,,503,M,Fail To Secure Load,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-10,Risk of Violence,1,Low,2013-04-10,,,1,0,1087,0,0,0\r\n1084,paul henderson,paul,henderson,2013-04-29,Male,1970-07-11,45,Greater than 45,African-American,0,1,0,0,0,-1,2013-04-28 07:46:48,2013-04-30 03:53:04,13008185MM10A,2013-04-28,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-28,2013-04-30,0,1,1068,0,0,0\r\n1086,walter eady,walter,eady,2014-02-28,Male,1993-11-16,22,Less than 25,African-American,0,5,0,0,1,-1,2014-02-27 05:17:46,2014-02-28 01:22:35,14002787CF10A,,2014-02-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-28,Risk of Violence,7,Medium,2014-02-28,2014-05-08,2014-05-28,1,0,69,0,0,0\r\n1087,kevin abreu,kevin,abreu,2014-02-13,Male,1989-10-08,26,25 - 45,Caucasian,0,2,0,0,1,0,2014-02-13 02:31:02,2014-03-01 09:14:16,14001331CF10A,,2014-02-13,0,F,arrest case no charge,1,14033290TC10A,(M2),0,2014-09-14,Lve/Scen/Acc/Veh/Prop/Damage,2014-09-14,2014-10-03,,1,15010287MM10A,(M1),2015-09-30,Battery,Risk of Recidivism,2,Low,2014-02-13,Risk of Violence,3,Low,2014-02-13,2014-09-14,2014-10-03,1,16,213,1,1,1\r\n1088,joseph costino,joseph,costino,2013-01-10,Male,1954-03-12,62,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-09 03:17:14,2013-01-12 03:08:45,13000380CF10A,2013-01-09,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-10,Risk of Violence,1,Low,2013-01-10,2013-01-09,2013-01-12,0,2,1177,0,0,0\r\n1092,angel nunez,angel,nunez,2013-08-08,Male,1991-10-08,24,Less than 25,Hispanic,0,10,0,0,1,-6,2013-08-02 10:27:58,2013-08-08 11:00:55,13010905CF10A,2013-08-02,,6,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-08,Risk of Violence,5,Medium,2013-08-08,2013-11-15,2013-11-19,1,0,99,0,0,0\r\n1093,william baumann,william,baumann,2013-01-14,Male,1994-09-02,21,Less than 25,Caucasian,0,2,0,0,0,-1,2013-01-13 10:04:17,2013-01-14 12:55:21,13000783MM10A,2013-01-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,5,Medium,2013-01-14,2013-01-13,2013-01-14,0,0,1173,0,0,0\r\n1094,caitlin wallace,caitlin,wallace,2014-12-13,Male,1991-03-11,25,25 - 45,Caucasian,0,2,0,0,0,-1,2014-12-12 07:29:14,2014-12-13 07:28:15,14016511CF10A,2014-12-12,,1,F,Felony Battery,1,15015010CF10A,(F2),0,2015-11-19,Agg Battery Grt/Bod/Harm,2015-11-19,2015-11-20,,1,15015010CF10A,(F2),2015-11-19,Agg Battery Grt/Bod/Harm,Risk of Recidivism,2,Low,2014-12-13,Risk of Violence,3,Low,2014-12-13,2015-11-19,2015-11-20,0,0,341,1,1,1\r\n1096,gregory still,gregory,still,2013-01-08,Male,1947-08-26,68,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-07 05:13:05,2013-01-10 09:39:29,13000399MM10A,2013-01-07,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-08,Risk of Violence,1,Low,2013-01-08,2013-01-07,2013-01-10,0,2,1179,0,0,0\r\n1097,brendan casey,brendan,casey,2014-02-20,Male,1974-05-10,41,25 - 45,Caucasian,0,2,0,0,2,-47,2014-01-04 06:03:39,2014-01-04 08:34:05,14000375MU10A,2014-01-04,,47,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-20,Risk of Violence,2,Low,2014-02-20,2014-01-04,2014-01-04,2,0,771,0,0,0\r\n1099,christopher rabold,christopher,rabold,2013-03-02,Male,1994-11-27,21,Less than 25,Caucasian,0,3,0,0,1,-1,2013-03-01 07:29:20,2013-03-02 07:28:52,13003104CF10A,,2013-03-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-02,Risk of Violence,6,Medium,2013-03-02,2013-03-01,2013-03-02,1,0,1126,0,0,0\r\n1101,elsa tejada,elsa,tejada,2014-02-03,Female,1978-11-14,37,25 - 45,Hispanic,0,3,0,0,1,-1,2014-02-02 08:11:13,2014-02-04 04:08:24,14001476CF10A,2014-02-02,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-02,2014-02-04,1,1,788,0,0,0\r\n1103,kalil edwards,kalil,edwards,2013-11-12,Male,1993-06-26,22,Less than 25,African-American,0,8,0,0,0,0,2013-11-12 01:16:29,2013-11-12 08:32:15,13015693CF10A,2013-11-12,,0,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-12,Risk of Violence,5,Medium,2013-11-12,2013-11-12,2013-11-12,0,0,871,0,0,0\r\n1106,gregory osman,gregory,osman,2013-01-29,Male,1974-03-14,42,25 - 45,Caucasian,0,1,0,0,1,-1,2013-01-28 05:40:47,2013-01-29 01:19:50,11015816CF10A,,2013-01-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-28,2013-01-29,1,0,1158,0,0,0\r\n1111,joseph kelley,joseph,kelley,2013-04-01,Male,1967-11-19,48,Greater than 45,African-American,0,6,0,0,2,0,2013-04-01 06:58:00,2013-04-02 12:49:07,13004649CF10A,2013-04-01,,0,F,Fel Drive License Perm Revoke,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-04-01,2013-04-02,2,1,1096,0,0,0\r\n1118,vicky castillo,vicky,castillo,2013-10-01,Female,1970-10-05,45,Greater than 45,Caucasian,0,1,0,0,1,-106,2013-06-17 04:01:20,2013-06-25 08:31:02,13007024CF10A,,2013-06-17,106,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2013-06-17,2013-06-25,1,0,913,0,0,0\r\n1119,tavarus grayheart,tavarus,grayheart,2014-03-13,Male,1992-10-15,23,Less than 25,African-American,0,9,0,1,6,-1,2014-03-12 04:49:26,2014-03-20 09:46:56,14003509CF10A,2014-03-12,,1,F,Grand Theft in the 3rd Degree,1,14027514TC20A,(M2),,2014-04-03,Susp Drivers Lic 1st Offense,,,,1,15015308CF10A,(F2),2015-11-27,Agg Flee/Eluding (Injury/Prop Damage),Risk of Recidivism,9,High,2014-03-13,Risk of Violence,8,High,2014-03-13,2014-03-12,2014-03-20,6,7,21,1,1,1\r\n1120,michall simon,michall,simon,2013-04-07,Male,1991-10-24,24,Less than 25,African-American,0,8,0,0,0,0,2013-04-07 02:55:12,2013-04-08 10:05:58,13005000CF10A,2013-04-06,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-07,Risk of Violence,7,Medium,2013-04-07,2013-04-07,2013-04-08,0,1,1090,0,0,0\r\n1121,deonte knight,deonte,knight,2013-04-25,Male,1987-01-24,29,25 - 45,African-American,0,2,0,0,0,-1,2013-04-24 05:48:18,2013-04-25 11:01:14,13005894CF10A,2013-04-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-25,Risk of Violence,3,Low,2013-04-25,2014-08-12,2014-08-12,0,0,474,0,0,0\r\n1122,jacky voltaire,jacky,voltaire,2013-07-18,Male,1991-05-15,24,Less than 25,African-American,0,3,0,0,0,-3,2013-07-15 11:39:27,2013-07-16 01:15:42,13009914CF10A,2013-07-15,,3,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-18,Risk of Violence,4,Low,2013-07-18,2013-07-15,2013-07-16,0,0,988,0,0,0\r\n1123,willie johnson,willie,johnson,2013-09-09,Male,1965-11-02,50,Greater than 45,African-American,0,9,0,0,11,0,2013-09-09 01:51:41,2013-09-11 04:56:45,13012732CF10A,2013-09-09,,0,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-09,Risk of Violence,6,Medium,2013-09-09,2013-09-09,2013-09-11,11,2,935,0,0,0\r\n1127,norman bushay,norman,bushay,2013-03-05,Male,1992-04-28,23,Less than 25,African-American,0,2,0,0,0,0,2013-03-05 03:06:29,2013-03-05 06:43:38,13003303CF10A,2013-03-05,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-05,Risk of Violence,4,Low,2013-03-05,2013-03-05,2013-03-05,0,0,1123,0,0,0\r\n1128,brenda hernandez,brenda,hernandez,2013-01-05,Female,1994-02-09,22,Less than 25,Caucasian,0,5,0,0,0,-1,2013-01-04 05:04:08,2013-01-06 05:48:14,13000570TC10A,2013-01-04,,1,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-05,Risk of Violence,6,Medium,2013-01-05,2013-01-04,2013-01-06,0,1,1182,0,0,0\r\n1129,kent rizon,kent,rizon,2013-11-13,Male,1980-03-16,36,25 - 45,Other,0,1,0,0,0,-1,2013-11-12 03:12:05,2013-11-19 05:29:28,13015711CF10A,2013-11-12,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-13,Risk of Violence,1,Low,2013-11-13,2013-11-12,2013-11-19,0,6,870,0,0,0\r\n1132,edmund callahan,edmund,callahan,2013-10-23,Female,1963-03-24,53,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-23 02:26:06,2013-10-24 06:18:43,13014806CF10A,2013-10-23,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-23,Risk of Violence,1,Low,2013-10-23,2014-10-27,2014-10-31,0,1,369,0,0,0\r\n1135,john martinelli,john,martinelli,2014-01-13,Male,1991-09-01,24,Less than 25,Caucasian,0,3,0,0,1,-37,2013-12-07 10:28:43,2013-12-08 01:46:26,13016950CF10A,2013-12-07,,37,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-13,Risk of Violence,3,Low,2014-01-13,2014-03-12,2014-04-01,1,0,58,0,0,0\r\n1138,marsha jeanjoseph,marsha,jeanjoseph,2014-01-03,Female,1990-06-12,25,25 - 45,African-American,0,9,0,0,1,0,2014-01-03 02:09:56,2014-01-03 07:33:37,09066249TC30A,,2009-08-18,1599,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-03,Risk of Violence,5,Medium,2014-01-03,2014-01-03,2014-01-03,1,0,819,0,0,0\r\n1140,edwin swinton,edwin,swinton,2013-05-17,Male,1944-05-30,71,Greater than 45,African-American,0,1,0,0,8,-1,2013-05-16 09:36:12,2013-06-10 07:28:18,13006982CF10A,2013-05-16,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-17,Risk of Violence,2,Low,2013-05-17,2013-05-16,2013-06-10,8,24,1050,0,0,0\r\n1141,elliot king,elliot,king,2013-01-12,Male,1976-06-20,39,25 - 45,African-American,0,9,4,0,10,-1,2013-01-11 12:37:30,2013-02-21 07:26:22,04009015TC40A,,2004-11-01,2994,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-12,Risk of Violence,3,Low,2013-01-12,2013-09-07,2013-10-14,10,40,238,0,0,0\r\n1142,lashonn boykin,lashonn,boykin,2014-01-11,Female,1979-04-03,37,25 - 45,African-American,0,5,0,0,0,0,2014-01-11 04:29:19,2014-02-17 08:19:02,14000466CF10A,2014-01-11,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-11,Risk of Violence,3,Low,2014-01-11,2014-01-11,2014-02-17,0,37,811,0,0,0\r\n1144,brittany exantus,brittany,exantus,2013-08-13,Female,1986-06-02,29,25 - 45,African-American,0,5,0,0,3,-1,2013-08-12 08:00:00,2013-08-13 06:43:07,13011319CF10A,2013-08-12,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-13,Risk of Violence,4,Low,2013-08-13,2013-08-12,2013-08-13,3,0,962,0,0,0\r\n1149,sergio sergio,sergio,sergio,2013-01-15,Male,1980-09-19,35,25 - 45,Hispanic,0,7,0,0,5,,,,10010801CF10A,,2011-04-02,654,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,7,Medium,2013-01-15,,,5,0,1172,0,0,0\r\n1152,maxima basil,maxima,basil,2014-01-10,Female,1992-12-30,23,Less than 25,Other,0,10,0,0,0,-1,2014-01-09 02:16:17,2014-01-10 08:41:42,14000393MM10A,2014-01-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-10,Risk of Violence,10,High,2014-01-10,2014-01-09,2014-01-10,0,0,812,0,0,0\r\n1156,latrellias butler,latrellias,butler,2014-03-07,Female,1992-10-27,23,Less than 25,African-American,0,2,0,0,0,-1,2014-03-06 08:02:12,2014-03-07 08:50:57,14003178CF10A,2014-03-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-07,Risk of Violence,3,Low,2014-03-07,2014-03-06,2014-03-07,0,0,756,0,0,0\r\n1157,james tiger,james,tiger,2013-11-05,Male,1988-09-09,27,25 - 45,Native American,0,7,0,0,3,0,2013-11-05 04:32:08,2013-11-06 03:05:48,13020889MM10A,2013-11-05,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-05,Risk of Violence,4,Low,2013-11-05,2013-11-05,2013-11-06,3,1,878,0,0,0\r\n1159,rosalind townsend,rosalind,townsend,2013-09-23,Female,1963-03-28,53,Greater than 45,African-American,0,1,0,0,0,0,2013-09-23 02:29:56,2013-09-23 08:46:28,13013383CF10A,2013-09-23,,0,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-23,2013-09-23,0,0,921,0,0,0\r\n1160,lasha ware,lasha,ware,2013-05-05,Female,1992-10-13,23,Less than 25,African-American,0,7,0,0,0,-1,2013-05-04 10:05:51,2013-05-05 06:07:57,13006404CF10A,2013-05-04,,1,F,Aggrav Battery w/Deadly Weapon,1,16000422MM30A,(M1),,2016-02-21,Criminal Mischief>$200<$1000,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-05,Risk of Violence,7,Medium,2013-05-05,2013-05-04,2013-05-05,0,0,1022,1,0,0\r\n1163,derion mcreed,derion,mcreed,2013-01-04,Male,1990-07-01,25,25 - 45,African-American,0,6,0,0,6,-1,2013-01-03 05:43:48,2013-01-09 05:44:20,13000126CF10A,2013-01-03,,1,F,Burglary Unoccupied Dwelling,1,15014297CF10A,(F3),136,2015-11-02,Grand Theft (Motor Vehicle),2016-03-17,2016-04-15,,0,,,,,Risk of Recidivism,6,Medium,2013-01-04,Risk of Violence,5,Medium,2013-01-04,2014-06-11,2014-06-11,6,5,523,0,0,0\r\n1165,alan messina,alan,messina,2013-08-04,Male,1992-05-23,23,Less than 25,Other,0,4,0,0,2,-1,2013-08-03 07:10:36,2013-08-04 08:13:39,13014666MM10A,2013-08-03,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-04,Risk of Violence,6,Medium,2013-08-04,2014-03-13,2014-03-26,2,0,221,0,0,0\r\n1166,brandon henley,brandon,henley,2014-03-11,Male,1988-10-15,27,25 - 45,African-American,0,9,0,0,4,0,2014-03-11 05:19:53,2014-03-11 08:47:22,14003434CF10A,2014-03-11,,0,F,Pos Cannabis W/Intent Sel/Del,1,14013852CF10A,(F3),,2014-10-13,Grand Theft (Motor Vehicle),,,,1,14013852CF10A,(M2),2014-10-13,Assault,Risk of Recidivism,9,High,2014-03-11,Risk of Violence,7,Medium,2014-03-11,2014-03-11,2014-03-11,4,0,216,1,1,1\r\n1167,roderick wongwon,roderick,wongwon,2013-10-10,Male,1989-09-30,26,25 - 45,African-American,0,3,0,0,2,-106,2013-06-26 01:01:35,2013-06-26 08:16:53,13012228MM10A,2013-06-25,,107,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-10,Risk of Violence,4,Low,2013-10-10,2013-06-26,2013-06-26,2,0,904,0,0,0\r\n1169,dominic mcintosh,dominic,mcintosh,2013-05-20,Male,1987-03-23,29,25 - 45,African-American,0,4,0,0,1,-1,2013-05-19 04:24:50,2013-05-22 12:18:30,13009628MM10A,2013-05-19,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-20,Risk of Violence,3,Low,2013-05-20,2015-06-22,2015-06-26,1,2,763,0,0,0\r\n1171,david humberto,david,humberto,2013-04-18,Male,1988-01-16,28,25 - 45,Hispanic,0,2,0,0,0,-1,2013-04-17 07:59:26,2013-04-18 10:21:13,13005517CF10A,2013-04-17,,1,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-18,Risk of Violence,2,Low,2013-04-18,2013-04-17,2013-04-18,0,0,1079,0,0,0\r\n1172,sergio vankanten,sergio,vankanten,2013-09-22,Male,1984-07-02,31,25 - 45,African-American,0,2,0,0,0,-1,2013-09-21 09:12:18,2013-09-22 08:15:55,13018031MM10A,2013-09-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-22,Risk of Violence,1,Low,2013-09-22,2013-09-21,2013-09-22,0,0,922,0,0,0\r\n1176,alexander pauleuc,alexander,pauleuc,2013-05-28,Male,1990-06-21,25,25 - 45,Caucasian,0,2,0,0,0,-2,2013-05-26 01:54:05,2013-05-26 09:24:25,13010061MM10A,2013-05-25,,3,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,3,Low,2013-05-28,2013-05-26,2013-05-26,0,0,1039,0,0,0\r\n1177,christopher kiefer,christopher,kiefer,2014-02-24,Male,1969-04-02,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-23 12:27:01,2014-02-23 08:15:29,14006834MU10A,2014-02-22,,2,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-23,2014-02-23,0,0,767,0,0,0\r\n1179,lennox cameron,lennox,cameron,2013-03-31,Male,1979-01-06,37,25 - 45,African-American,0,2,0,0,4,-1,2013-03-30 11:29:11,2013-03-31 12:23:51,13004564CF10A,2013-03-30,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-31,Risk of Violence,1,Low,2013-03-31,2013-08-12,2013-08-13,4,0,134,0,0,0\r\n1181,shawanda johnson,shawanda,johnson,2013-08-24,Female,1981-01-12,35,25 - 45,African-American,0,5,0,0,4,-1,2013-08-23 11:46:10,2013-08-25 12:15:56,13011914CF10A,2013-08-23,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-24,Risk of Violence,3,Low,2013-08-24,2013-08-23,2013-08-25,4,1,951,0,0,0\r\n1187,sylas swaskee,sylas,swaskee,2014-10-15,Male,1995-01-10,21,Less than 25,Caucasian,0,9,2,1,2,-1,2014-10-14 06:55:40,2014-10-20 04:58:47,14013865CF10A,2014-10-14,,1,F,Grand Theft (Motor Vehicle),1,15001387CF10A,(F2),,2014-11-26,Robbery Sudd Snatch w/Weapon,,,,1,15001387CF10A,(F2),2014-11-26,Robbery Sudd Snatch w/Weapon,Risk of Recidivism,9,High,2014-10-15,Risk of Violence,8,High,2014-10-15,2014-10-14,2014-10-20,2,5,42,1,1,1\r\n1192,joseph roberts,joseph,roberts,2013-10-11,Male,1959-02-06,57,Greater than 45,African-American,0,6,0,0,11,-1,2013-10-10 04:21:35,2014-02-27 09:34:33,13014202CF10A,2013-10-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-11,Risk of Violence,5,Medium,2013-10-11,2013-10-10,2014-02-27,11,139,903,0,0,0\r\n1193,darren petri,darren,petri,2013-12-30,Male,1968-01-30,48,Greater than 45,Caucasian,0,7,0,0,0,-1,2013-12-29 08:36:14,2014-01-09 09:02:40,13017927CF10A,2013-12-29,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-30,Risk of Violence,4,Low,2013-12-30,2014-12-25,2015-01-05,0,10,360,0,0,0\r\n1194,mackenson revolus,mackenson,revolus,2013-03-06,Male,1979-12-28,36,25 - 45,Other,0,1,0,0,0,-1,2013-03-05 02:14:50,2013-03-10 05:24:10,13003427CF10A,2013-03-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-06,Risk of Violence,1,Low,2013-03-06,2013-03-05,2013-03-10,0,4,1122,0,0,0\r\n1195,latonya ray,latonya,ray,2014-01-09,Female,1979-04-05,37,25 - 45,African-American,0,7,0,0,3,-1,2014-01-08 07:01:21,2014-02-05 10:16:46,14000337CF10A,2014-01-08,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-09,Risk of Violence,4,Low,2014-01-09,2014-01-08,2014-02-05,3,27,813,0,0,0\r\n1196,kevin kendall,kevin,kendall,2013-01-01,Male,1984-09-16,31,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-01 04:29:04,2013-01-06 08:57:53,13000060MM10A,2013-01-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-01,Risk of Violence,2,Low,2013-01-01,2013-01-01,2013-01-06,0,5,1186,0,0,0\r\n1198,dale alderson,dale,alderson,2013-05-10,Male,1985-02-14,31,25 - 45,Caucasian,0,3,0,0,2,0,2013-05-10 02:37:25,2013-05-10 08:03:14,13009071MM10A,2013-05-10,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-10,Risk of Violence,2,Low,2013-05-10,2013-05-10,2013-05-10,2,0,1057,0,0,0\r\n1202,christopher patterson,christopher,patterson,2013-10-20,Male,1983-06-13,32,25 - 45,African-American,0,9,0,1,22,0,2013-10-20 01:59:29,2013-10-20 08:13:18,13013808CF10A,,2013-10-20,0,F,arrest case no charge,1,14004969MM10A,(M1),0,2014-03-21,Viol Injunct Domestic Violence,2014-03-21,2014-05-18,,1,14004969MM10A,(M1),2014-03-21,Battery,Risk of Recidivism,9,High,2013-10-20,Risk of Violence,10,High,2013-10-20,2014-03-21,2014-05-18,22,0,152,1,1,1\r\n1204,elenaida nunez,elenaida,nunez,2014-02-22,Female,1992-11-17,23,Less than 25,Other,0,4,0,0,0,-1,2014-02-21 07:57:15,2014-02-22 08:23:54,14003086MM10A,2014-02-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-22,Risk of Violence,5,Medium,2014-02-22,2014-02-21,2014-02-22,0,0,769,0,0,0\r\n1205,ira butler,ira,butler,2013-10-24,Male,1952-09-20,63,Greater than 45,African-American,0,1,0,0,0,-1,2013-10-23 05:45:37,2013-10-24 01:09:57,13020101MM10A,2013-10-23,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-24,Risk of Violence,1,Low,2013-10-24,2013-10-23,2013-10-24,0,0,890,0,0,0\r\n1206,shamroy west,shamroy,west,2013-09-23,Male,1986-03-04,30,25 - 45,Other,0,1,0,0,0,-1,2013-09-22 01:14:48,2013-09-23 08:25:00,13013349CF10A,2013-09-22,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,2,Low,2013-09-23,2013-09-22,2013-09-23,0,0,921,0,0,0\r\n1207,william emerson,william,emerson,2013-05-14,Male,1989-12-12,26,25 - 45,Caucasian,0,5,0,0,2,-38,2013-04-06 05:56:09,2013-05-03 08:12:04,13004932CF10A,2013-04-06,,38,F,Possession of Cocaine,1,14016260CF10A,(F3),,2014-12-07,Aggravated Assault W/Dead Weap,,,,1,14016260CF10A,(F3),2014-12-07,Aggravated Assault W/Dead Weap,Risk of Recidivism,5,Medium,2013-05-14,Risk of Violence,4,Low,2013-05-14,2016-04-05,2020-01-01,2,0,572,1,1,1\r\n1208,marshal white,marshal,white,2013-05-23,Male,1968-02-14,48,Greater than 45,Caucasian,0,3,0,0,2,,,,13009888MM10A,2013-05-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-23,Risk of Violence,2,Low,2013-05-23,,,2,0,1044,0,0,0\r\n1209,justin may,justin,may,2014-03-12,Male,1995-09-12,20,Less than 25,Caucasian,0,4,0,2,0,-1,2014-03-11 08:50:15,2014-03-12 10:45:26,14003431CF10A,2014-03-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-12,Risk of Violence,7,Medium,2014-03-12,2014-03-11,2014-03-12,0,0,751,0,0,0\r\n1212,rohneisha foy,rohneisha,foy,2013-08-12,Female,1991-08-07,24,Less than 25,African-American,0,5,0,0,1,0,2013-08-12 03:10:53,2013-08-12 08:45:43,13015230MM10A,2013-08-12,,0,M,Battery,1,14008243MM10A,(M2),0,2014-04-24,Exposes Culpable Negligence,2014-04-24,2014-04-25,,1,14008243MM10A,(M1),2014-04-24,Battery,Risk of Recidivism,5,Medium,2013-08-12,Risk of Violence,4,Low,2013-08-12,2014-04-24,2014-04-25,1,0,255,1,1,1\r\n1213,latasha blakegoodwin,latasha,blakegoodwin,2014-01-13,Female,1979-11-29,36,25 - 45,African-American,0,2,0,0,1,-1,2014-01-12 08:52:22,2014-01-13 08:36:10,14003627TC10A,2014-01-12,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-13,Risk of Violence,2,Low,2014-01-13,2014-01-12,2014-01-13,1,0,809,0,0,0\r\n1215,alfonso puello,alfonso,puello,2013-01-06,Male,1933-03-07,83,Greater than 45,Hispanic,0,1,0,0,0,0,2013-01-06 02:36:31,2013-01-07 01:32:52,13000312MM10A,2013-01-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-06,Risk of Violence,1,Low,2013-01-06,2013-01-06,2013-01-07,0,1,1181,0,0,0\r\n1216,mitchell berlanga,mitchell,berlanga,2013-10-15,Male,1987-12-01,28,25 - 45,Caucasian,0,6,0,0,2,0,2013-10-15 01:07:08,2013-10-15 08:16:41,13014370CF10A,2013-10-14,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-15,Risk of Violence,6,Medium,2013-10-15,2013-10-15,2013-10-15,2,0,899,0,0,0\r\n1219,ebony jones,ebony,jones,2014-01-17,Female,1983-01-12,33,25 - 45,African-American,0,2,0,0,0,-1,2014-01-16 08:14:14,2014-01-18 01:21:05,14000961CF10A,2014-01-16,,1,M,Simulation of Legal Process,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-17,Risk of Violence,2,Low,2014-01-17,2014-01-16,2014-01-18,0,1,805,0,0,0\r\n1220,lewis lynn,lewis,lynn,2013-01-13,Male,1977-01-31,39,25 - 45,African-American,0,3,0,0,0,0,2013-01-13 05:35:49,2013-01-13 07:51:04,13000599CF10A,2013-01-13,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-13,Risk of Violence,2,Low,2013-01-13,2013-01-13,2013-01-13,0,0,1174,0,0,0\r\n1221,romoy ramdeen,romoy,ramdeen,2013-12-20,Male,1986-07-27,29,25 - 45,Other,0,7,0,0,3,0,2013-12-20 05:11:31,2013-12-20 08:47:51,13023502MM10A,2013-12-20,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-20,Risk of Violence,5,Medium,2013-12-20,2013-12-20,2013-12-20,3,0,833,0,0,0\r\n1223,bailey greene,bailey,greene,2013-01-07,Female,1996-04-22,19,Less than 25,Caucasian,1,6,1,0,1,140,2013-05-27 02:53:50,2013-05-28 08:50:54,12023004MM10A,2012-09-29,,100,M,Operating W/O Valid License,1,13007558CF10A,(M1),1,2013-05-26,Battery,2013-05-27,2013-05-28,,1,13007558CF10A,(F3),2013-05-26,Aggravated Assault W/dead Weap,Risk of Recidivism,6,Medium,2013-01-07,Risk of Violence,8,High,2013-01-07,2013-05-27,2013-05-28,1,0,139,1,1,1\r\n1227,ricardo rodriguez,ricardo,rodriguez,2013-06-11,Male,1979-12-20,36,25 - 45,Hispanic,0,7,0,0,11,-79,2013-03-24 12:57:37,2013-06-11 11:10:38,13004343CF10A,,2013-04-30,42,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-06-11,Risk of Violence,6,Medium,2013-06-11,2015-12-14,2015-12-17,11,0,916,0,0,0\r\n1228,bradey birdsong,bradey,birdsong,2014-02-13,Female,1986-06-18,29,25 - 45,Caucasian,0,5,0,0,1,,,,09011928CF10A,2009-06-25,,1694,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-13,Risk of Violence,5,Medium,2014-02-13,,,1,0,778,0,0,0\r\n1229,earnest wiley,earnest,wiley,2014-02-11,Male,1980-08-12,35,25 - 45,African-American,0,6,0,0,7,-1,2014-02-10 05:03:39,2014-02-11 08:51:34,14001896CF10A,2014-02-10,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-11,Risk of Violence,2,Low,2014-02-11,2014-02-10,2014-02-11,7,0,780,0,0,0\r\n1230,selvin lopez,selvin,lopez,2014-03-22,Male,1991-06-02,24,Less than 25,African-American,0,3,0,1,0,-1,2014-03-21 08:31:22,2014-03-22 08:04:13,14004035CF10A,2014-03-21,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-22,Risk of Violence,3,Low,2014-03-22,2014-03-21,2014-03-22,0,0,741,0,0,0\r\n1231,russell norman,russell,norman,2013-09-28,Male,1989-06-01,26,25 - 45,Caucasian,0,2,0,0,0,773,2015-11-10 03:24:25,2015-11-19 05:38:35,13018424MM10A,2013-09-27,,1,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-28,Risk of Violence,2,Low,2013-09-28,2015-11-10,2015-11-19,0,0,773,0,0,0\r\n1233,giovanni santiago,giovanni,santiago,2013-08-20,Male,1989-06-19,26,25 - 45,Caucasian,0,4,0,0,8,-1,2013-08-19 03:18:18,2013-08-21 05:06:23,13011612CF10A,,2013-08-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-20,Risk of Violence,4,Low,2013-08-20,2013-08-19,2013-08-21,8,1,955,0,0,0\r\n1234,john harris,john,harris,2013-09-16,Male,1963-10-05,52,Greater than 45,African-American,0,6,0,0,7,,,,13014884MM10A,2013-03-15,,185,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-16,Risk of Violence,1,Low,2013-09-16,2008-08-21,2011-05-12,7,0,928,0,0,0\r\n1235,derek fuller,derek,fuller,2013-03-20,Male,1987-10-21,28,25 - 45,African-American,0,7,0,0,14,-1,2013-03-19 11:58:58,2013-03-20 09:53:42,13003997CF10A,2013-03-19,,1,F,Fleeing or Eluding a LEO,1,14000392CF10A,(M1),0,2014-01-09,Resist/Obstruct W/O Violence,2014-01-09,2014-02-28,,1,14005324CF10A,(F1),2014-04-16,Agg Battery Law Enforc Officer,Risk of Recidivism,7,Medium,2013-03-20,Risk of Violence,8,High,2013-03-20,2014-01-09,2014-02-28,14,0,295,1,1,1\r\n1237,javon jacobs,javon,jacobs,2013-03-08,Male,1983-05-14,32,25 - 45,African-American,0,5,0,0,0,-1,2013-03-07 11:30:49,2013-03-08 02:03:41,13004627MM10A,2013-03-07,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-08,Risk of Violence,2,Low,2013-03-08,2013-03-07,2013-03-08,0,0,1120,0,0,0\r\n1238,sissy zayas,sissy,zayas,2014-08-17,Female,1983-06-15,32,25 - 45,Caucasian,0,3,0,0,1,-1,2014-08-16 12:35:59,2014-08-17 09:00:26,14012384MM10A,2014-08-16,,1,M,Battery,1,15005873MM10A,(M1),0,2015-05-13,Resist/Obstruct W/O Violence,2015-05-13,2015-05-14,,1,15006260CF10A,(F3),2015-05-13,Battery on Law Enforc Officer,Risk of Recidivism,3,Low,2014-08-17,Risk of Violence,1,Low,2014-08-17,2015-05-13,2015-05-14,1,0,269,1,1,1\r\n1240,tacaris mitchell,tacaris,mitchell,2013-04-11,Male,1986-10-10,29,25 - 45,African-American,0,10,1,0,16,-1,2013-04-10 04:38:27,2013-04-27 04:55:16,13005157CF10A,2013-04-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-11,Risk of Violence,7,Medium,2013-04-11,2015-06-08,2020-01-01,16,16,788,0,0,0\r\n1243,sean claesgens,sean,claesgens,2013-02-20,Male,1972-08-02,43,25 - 45,Caucasian,0,1,0,0,0,0,2013-02-20 01:44:52,2013-02-20 06:58:59,13003542MM10A,2013-02-20,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-02-20,2013-02-20,0,0,1136,0,0,0\r\n1244,james stearns,james,stearns,2014-03-24,Male,1968-04-27,47,Greater than 45,Caucasian,0,4,0,0,2,-3,2014-03-21 01:08:20,2014-03-21 09:18:44,14004865CF10A,2014-03-20,,4,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-24,Risk of Violence,5,Medium,2014-03-24,2014-03-21,2014-03-21,2,0,739,0,0,0\r\n1247,keaira meilleur,keaira,meilleur,2013-05-17,Female,1992-07-28,23,Less than 25,African-American,0,3,0,0,1,-1,2013-05-16 06:54:16,2013-05-18 06:20:12,13007007CF10A,,2013-05-16,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-17,Risk of Violence,3,Low,2013-05-17,2013-05-16,2013-05-18,1,1,1050,0,0,0\r\n1248,mircea marton,mircea,marton,2013-09-04,Male,1976-06-07,39,25 - 45,Caucasian,0,2,0,0,2,-1,2013-09-03 11:32:26,2013-09-04 02:17:38,13016877MM10A,2013-09-03,,1,M,Battery,1,15063407TC40A,(M2),,2015-09-29,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-04,Risk of Violence,2,Low,2013-09-04,2013-09-03,2013-09-04,2,0,755,1,0,0\r\n1252,emmanuel philogene,emmanuel,philogene,2013-08-21,Male,1982-12-18,33,25 - 45,Other,0,1,0,0,0,-1,2013-08-20 01:28:52,2013-08-21 07:36:34,13011699CF10A,,2013-08-20,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-21,Risk of Violence,2,Low,2013-08-21,2013-11-09,2013-11-26,0,0,80,0,0,0\r\n1253,romario james,romario,james,2013-03-31,Male,1995-01-02,21,Less than 25,Other,0,3,0,0,0,-1,2013-03-30 03:21:05,2013-03-31 07:12:30,13004601CF10A,2013-03-30,,1,F,Grand Theft of a Fire Extinquisher,1,13007664MM10A,(M2),0,2013-04-20,Prowling/Loitering,2013-04-20,2013-04-21,,1,15001010CF10A,(F1),2015-01-22,Robbery W/Firearm,Risk of Recidivism,3,Low,2013-03-31,Risk of Violence,7,Medium,2013-03-31,2013-04-20,2013-04-21,0,0,20,1,1,1\r\n1254,anthony freeman,anthony,freeman,2013-01-29,Male,1972-08-23,43,25 - 45,African-American,1,8,0,0,20,0,2013-01-29 02:25:12,2013-01-30 04:16:41,13002627CF10A,2013-01-29,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-29,Risk of Violence,4,Low,2013-01-29,2013-03-21,2013-04-13,20,1,51,0,0,0\r\n1255,derek mcnair,derek,mcnair,2013-08-15,Male,1991-03-30,25,25 - 45,African-American,0,8,1,1,3,-1,2013-08-14 07:48:42,2013-08-15 07:42:50,13011422CF10A,2013-08-14,,1,F,Fighting/Baiting Animals,1,14014319CF10A,(F3),,2014-08-19,Aggrav Stalking After Injunctn,,,,1,14014319CF10A,(F3),2014-08-29,Burglary With Assault/battery,Risk of Recidivism,8,High,2013-08-15,Risk of Violence,9,High,2013-08-15,2015-08-24,2015-09-02,3,0,369,1,1,1\r\n1256,john mcfadden,john,mcfadden,2014-03-19,Male,1968-01-03,48,Greater than 45,African-American,1,10,0,0,25,-1,2014-03-18 03:28:44,2014-03-24 11:54:07,14003785CF10A,,2014-03-18,1,F,arrest case no charge,1,14008632CF10A,(F1),-1,2014-06-21,Sexual Battery Victim 12 Yrs +,2014-06-20,2014-07-04,,1,14008632CF10A,(F2),2014-06-21,Agg Battery Grt/Bod/Harm,Risk of Recidivism,10,High,2014-03-19,Risk of Violence,9,High,2014-03-19,2014-04-06,2014-04-10,25,5,18,0,1,1\r\n1257,michael davis,michael,davis,2013-01-01,Male,1993-11-08,22,Less than 25,African-American,0,7,0,1,1,28,2013-01-29 05:28:37,2013-01-30 09:38:30,13000021MM10A,2012-12-31,,1,M,Battery,1,13001421CF10A,(F3),0,2013-01-29,Tampering With Physical Evidence,2013-01-29,2013-01-30,,1,15004778MM10A,(M1),2015-04-27,Battery,Risk of Recidivism,7,Medium,2013-01-01,Risk of Violence,9,High,2013-01-01,2013-01-29,2013-01-30,1,0,28,1,1,1\r\n1258,charles dixon,charles,dixon,2013-04-08,Male,1964-02-14,52,Greater than 45,African-American,1,8,0,0,9,-1,2013-04-07 05:45:06,2013-05-16 03:57:24,13006659MM10A,2013-04-07,,1,M,Battery,1,13008294CF10A,(F1),0,2013-06-11,Robbery / Weapon,2013-06-11,2013-10-29,,1,13008294CF10A,(F3),2013-06-11,Felony Battery w/Prior Convict,Risk of Recidivism,8,High,2013-04-08,Risk of Violence,2,Low,2013-04-08,2013-06-11,2013-10-29,9,38,64,1,1,1\r\n1259,philip milton,philip,milton,2014-09-09,Male,1990-02-22,26,25 - 45,Caucasian,0,4,0,0,5,-1,2014-09-08 04:18:58,2014-10-13 09:23:06,14012245CF10A,2014-09-08,,1,F,Possession of Cocaine,1,15006502CF10A,(F3),0,2015-05-19,Grand Theft in the 3rd Degree,2015-05-19,2015-06-02,,1,15010738CF10A,(F2),2015-08-19,Robbery / No Weapon,Risk of Recidivism,4,Low,2014-09-09,Risk of Violence,3,Low,2014-09-09,2015-01-07,2015-01-23,5,34,120,0,1,1\r\n1261,carl lovett,carl,lovett,2013-04-17,Male,1982-01-05,34,25 - 45,African-American,0,2,0,0,4,-1,2013-04-16 07:26:38,2013-04-17 07:39:37,11019592MM10A,,2013-04-16,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-17,Risk of Violence,2,Low,2013-04-17,2013-04-16,2013-04-17,4,0,1080,0,0,0\r\n1262,justin mccarthy,justin,mccarthy,2013-04-12,Male,1960-01-25,56,Greater than 45,Caucasian,0,1,0,0,4,-1,2013-04-11 02:03:09,2013-04-11 08:11:12,13006988MM10A,2013-04-10,,2,M,Disorderly Intoxication,1,15021106MU10A,(M1),0,2015-07-18,Driving Under The Influence,2015-07-18,2015-07-18,,0,,,,,Risk of Recidivism,1,Low,2013-04-12,Risk of Violence,1,Low,2013-04-12,2015-07-18,2015-07-18,4,0,827,0,0,0\r\n1269,christopher bowers,christopher,bowers,2014-01-03,Male,1986-09-27,29,25 - 45,African-American,0,4,0,0,2,-1,2014-01-02 08:25:01,2014-01-03 01:41:59,14000092MM10A,2014-01-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-03,Risk of Violence,5,Medium,2014-01-03,2014-01-02,2014-01-03,2,0,819,0,0,0\r\n1272,christopher douglas,christopher,douglas,2014-10-20,Male,1978-11-29,37,25 - 45,African-American,0,5,0,0,6,-1,2014-10-19 07:36:23,2014-11-08 12:14:28,14014116CF10A,2014-10-19,,1,F,Felony Petit Theft,1,15000351MM20A,(M2),,2015-01-23,Petit Theft,,,,1,15002624MM10A,(M1),2015-03-04,Battery,Risk of Recidivism,5,Medium,2014-10-20,Risk of Violence,2,Low,2014-10-20,2014-12-07,2014-12-20,6,19,48,0,1,1\r\n1274,umar farooq,umar,farooq,2013-05-06,Male,1973-03-19,43,25 - 45,Other,0,2,0,0,3,-1,2013-05-05 07:01:38,2013-05-06 07:43:11,13006447CF10A,2013-05-05,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-06,Risk of Violence,2,Low,2013-05-06,2013-05-05,2013-05-06,3,0,1061,0,0,0\r\n1275,gregg diprima,gregg,diprima,2013-12-03,Male,1965-02-26,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-02 04:36:30,2013-12-03 10:21:46,13016672CF10A,2013-12-02,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-03,Risk of Violence,1,Low,2013-12-03,2013-12-02,2013-12-03,0,0,850,0,0,0\r\n1282,moise alceus,moise,alceus,2014-03-22,Male,1994-11-18,21,Less than 25,African-American,0,8,0,1,1,-1,2014-03-21 01:15:52,2014-03-23 04:21:27,14003834CF10A,,2014-03-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-22,Risk of Violence,7,Medium,2014-03-22,2014-03-21,2014-03-23,1,1,741,0,0,0\r\n1290,steven coney,steven,coney,2013-04-06,Male,1989-08-02,26,25 - 45,African-American,0,8,1,0,4,-1,2013-04-05 06:54:28,2013-04-06 07:37:58,13006585MM10A,2013-04-05,,1,M,Battery,1,13025171TC10A,(M2),1,2013-05-26,Unlaw LicTag/Sticker Attach,2013-05-27,2013-05-28,,1,13018515MM10A,(M1),2013-09-29,Battery,Risk of Recidivism,8,High,2013-04-06,Risk of Violence,9,High,2013-04-06,2013-11-23,2013-11-24,4,0,50,1,1,1\r\n1292,anthony anello,anthony,anello,2013-05-28,Male,1968-01-19,48,Greater than 45,Caucasian,0,2,0,0,1,0,2013-05-28 05:20:53,2013-05-29 01:36:35,13007601CF10A,2013-05-28,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,1,Low,2013-05-28,2013-08-08,2013-09-11,1,1,72,0,0,0\r\n1295,rhys swan,rhys,swan,2014-03-16,Male,1989-12-08,26,25 - 45,Caucasian,0,4,0,0,0,0,2014-03-16 01:47:02,2014-03-16 01:29:25,14003659CF10A,2014-03-16,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-16,Risk of Violence,3,Low,2014-03-16,2014-03-16,2014-03-16,0,0,747,0,0,0\r\n1296,darrin hill,darrin,hill,2013-09-06,Male,1969-11-14,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-09-05 08:34:14,2013-09-06 08:59:40,13012541CF10A,2013-09-05,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-05,2013-09-06,0,0,938,0,0,0\r\n1297,maria martinez,maria,martinez,2013-02-25,Female,1985-09-04,30,25 - 45,Hispanic,0,2,0,0,1,,,,13002754CF10A,2013-02-22,,3,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-25,Risk of Violence,2,Low,2013-02-25,,,1,0,1131,0,0,0\r\n1298,christopher mejia,christopher,mejia,2013-05-09,Male,1991-07-08,24,Less than 25,African-American,0,9,1,1,7,-1,2013-05-08 07:17:42,2013-05-09 08:54:08,13008923MM10A,2013-05-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-09,Risk of Violence,7,Medium,2013-05-09,2014-04-07,2014-04-17,7,0,333,0,0,0\r\n1300,stephanie jacobs,stephanie,jacobs,2013-04-30,Female,1995-01-06,21,Less than 25,Caucasian,0,5,0,0,0,-1,2013-04-29 05:05:43,2013-04-30 01:18:50,13008295MM10A,2013-04-29,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-30,Risk of Violence,7,Medium,2013-04-30,2013-04-29,2013-04-30,0,0,1067,0,0,0\r\n1304,marques brinson,marques,brinson,2014-03-10,Male,1986-03-16,30,25 - 45,African-American,0,7,0,0,1,,,,12010613CF10A,,2012-07-19,599,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-10,Risk of Violence,5,Medium,2014-03-10,,,1,0,753,0,0,0\r\n1305,johnnie blade,johnnie,blade,2013-02-13,Male,1979-06-01,36,25 - 45,African-American,0,8,0,0,9,0,2013-02-13 12:13:45,2013-02-15 09:20:16,13003127MM10A,2013-02-12,,1,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-13,Risk of Violence,2,Low,2013-02-13,2014-02-11,2014-03-14,9,2,363,0,0,0\r\n1306,ronel desinor,ronel,desinor,2013-01-30,Male,1985-10-12,30,25 - 45,African-American,0,4,0,0,5,-1,2013-01-29 08:02:14,2013-01-30 09:05:26,13001423CF10A,2013-01-29,,1,F,Deliver Cocaine,1,13009034CF10A,(F6),51,2013-05-05,Murder in the First Degree,2013-06-25,2015-08-27,,1,13009034CF10A,(F6),2013-05-05,Murder in the First Degree,Risk of Recidivism,4,Low,2013-01-30,Risk of Violence,3,Low,2013-01-30,2015-08-27,2020-01-01,5,0,95,1,1,1\r\n1310,danielle slocum,danielle,slocum,2013-07-02,Female,1993-08-27,22,Less than 25,Caucasian,0,6,0,0,1,-23,2013-06-09 02:13:11,2013-06-11 01:19:51,13008181CF10A,2013-06-09,,23,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-02,Risk of Violence,7,Medium,2013-07-02,2015-01-07,2015-01-08,1,0,554,0,0,0\r\n1313,raphael ramos,raphael,ramos,2013-02-09,Male,1991-03-24,25,25 - 45,African-American,0,9,0,0,0,-1,2013-02-08 08:15:01,2013-02-18 08:07:07,13002002CF10A,2013-02-08,,1,F,Depriv LEO of Protect/Communic,1,13005513CF10A,(F3),0,2013-04-17,Threat Public Servant,2013-04-17,2013-05-08,,1,13005513CF10A,(F3),2013-04-17,Threat Public Servant,Risk of Recidivism,9,High,2013-02-09,Risk of Violence,8,High,2013-02-09,2013-04-17,2013-05-08,0,9,67,1,1,1\r\n1315,dennis holmes,dennis,holmes,2013-04-25,Male,1992-02-05,24,Less than 25,African-American,0,4,0,0,0,-1,2013-04-24 04:48:41,2013-04-26 08:16:49,13005880CF10A,2013-04-24,,1,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-25,Risk of Violence,5,Medium,2013-04-25,2014-06-23,2014-07-29,0,1,424,0,0,0\r\n1318,rasean collier,rasean,collier,2013-09-25,Male,1976-08-20,39,25 - 45,African-American,0,8,0,0,13,-1,2013-09-24 05:14:32,2013-09-26 04:15:46,13013435CF10A,2013-09-24,,1,F,Burglary Conveyance Unoccup,1,15011067CF10A,(F3),,2015-05-03,Felony Battery w/Prior Convict,,,,1,15011067CF10A,(F3),2015-05-03,Felony Battery w/Prior Convict,Risk of Recidivism,8,High,2013-09-25,Risk of Violence,6,Medium,2013-09-25,2014-01-30,2014-01-30,13,1,127,0,1,1\r\n1320,mohammed ahmed,mohammed,ahmed,2013-09-20,Male,1969-11-28,46,Greater than 45,Other,0,1,0,0,0,-1,2013-09-19 09:16:58,2013-09-24 12:07:46,13013223CF10A,2013-09-19,,1,F,Delivery of 5-Fluoro PB-22,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-12-04,2013-12-05,0,4,75,0,0,0\r\n1323,marquita weal,marquita,weal,2013-03-06,Female,1985-12-02,30,25 - 45,African-American,0,3,0,0,4,-5,2013-03-01 09:18:41,2013-03-02 01:22:32,13003141CF10A,2013-03-01,,5,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-06,Risk of Violence,3,Low,2013-03-06,2013-03-14,2013-03-15,4,0,8,0,0,0\r\n1324,daniele santos,daniele,santos,2013-04-10,Male,1976-04-16,40,25 - 45,Caucasian,0,2,0,0,0,0,2013-04-10 01:58:49,2013-05-02 08:37:47,13005196CF10A,2013-04-10,,0,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,1,Low,2013-04-10,2013-04-10,2013-05-02,0,22,1087,0,0,0\r\n1325,deneen brown,deneen,brown,2014-01-17,Female,1964-04-19,52,Greater than 45,African-American,0,1,0,0,0,-1,2014-01-16 01:59:29,2014-01-18 12:04:19,14000711CF10A,2014-01-16,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-17,Risk of Violence,1,Low,2014-01-17,2014-01-16,2014-01-18,0,1,805,0,0,0\r\n1326,garfield sewell,garfield,sewell,2013-01-31,Male,1992-09-09,23,Less than 25,African-American,1,9,0,1,3,-1,2013-01-30 10:05:42,2013-03-05 01:14:58,13001476CF10A,2013-01-30,,1,F,Grand Theft Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-31,Risk of Violence,10,High,2013-01-31,2015-10-13,2015-12-07,3,33,985,0,0,0\r\n1328,dyesha coleman,dyesha,coleman,2013-09-09,Female,1989-09-07,26,25 - 45,African-American,0,2,0,0,1,-1,2013-09-08 05:10:12,2013-09-09 08:57:08,13017087MM10A,2013-09-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-09,Risk of Violence,2,Low,2013-09-09,2013-09-08,2013-09-09,1,0,935,0,0,0\r\n1330,thomas herring,thomas,herring,2013-01-27,Male,1973-04-23,42,25 - 45,Caucasian,0,4,0,0,3,0,2013-01-27 05:19:10,2013-01-28 02:50:43,13001324CF10A,2013-01-27,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-27,Risk of Violence,2,Low,2013-01-27,2015-11-23,2015-11-30,3,1,1030,0,0,0\r\n1334,jeffery holston,jeffery,holston,2014-01-14,Male,1987-06-20,28,25 - 45,African-American,0,3,0,0,1,-1,2014-01-13 07:36:34,2014-01-15 11:05:00,14000564CF10A,,2014-01-13,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-14,Risk of Violence,2,Low,2014-01-14,2014-01-13,2014-01-15,1,1,808,0,0,0\r\n1335,jacquelyn park,jacquelyn,park,2013-02-26,Female,1979-03-14,37,25 - 45,Caucasian,0,4,0,0,4,,,,12019905MM10A,2012-09-25,,154,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-26,Risk of Violence,2,Low,2013-02-26,,,4,0,1130,0,0,0\r\n1336,sam mitchell,sam,mitchell,2013-03-16,Male,1965-07-26,50,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-03-15 07:13:52,2013-03-16 09:30:06,13003328CF10A,2010-11-20,,847,F,Crim Use of Personal ID Info,1,15020844TC20A,(M2),,2015-04-01,Expired DL More Than 6 Months,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-16,Risk of Violence,1,Low,2013-03-16,2013-03-15,2013-03-16,1,0,746,1,0,0\r\n1342,tony woodberry,tony,woodberry,2014-03-01,Male,1983-12-01,32,25 - 45,African-American,0,7,0,0,1,-1,2014-02-28 05:05:08,2014-03-01 10:44:41,14000591CF10A,,2014-02-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-01,Risk of Violence,2,Low,2014-03-01,2014-02-28,2014-03-01,1,0,762,0,0,0\r\n1344,daryle mckever,daryle,mckever,2014-01-29,Male,1964-05-11,51,Greater than 45,African-American,0,2,0,0,3,-1,2014-01-28 04:06:13,2014-01-29 09:09:45,14001238CF10A,2014-01-28,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-29,Risk of Violence,1,Low,2014-01-29,2014-01-28,2014-01-29,3,0,793,0,0,0\r\n1346,xavier copeland,xavier,copeland,2013-10-22,Male,1983-11-13,32,25 - 45,African-American,0,5,0,0,4,0,2013-10-22 04:13:12,2014-02-07 04:46:43,13014764CF10A,,2013-10-22,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-22,Risk of Violence,2,Low,2013-10-22,2013-10-22,2014-02-07,4,108,892,0,0,0\r\n1348,nikesha young,nikesha,young,2013-08-14,Female,1986-05-04,29,25 - 45,African-American,0,5,0,0,1,7,2013-08-21 12:34:09,2014-02-17 03:11:38,10002822CF10A,,2013-03-21,146,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-14,Risk of Violence,4,Low,2013-08-14,2013-08-21,2014-02-17,1,0,7,0,0,0\r\n1349,armando frias,armando,frias,2013-09-21,Male,1972-04-30,43,25 - 45,Hispanic,0,1,0,0,0,-1,2013-09-20 10:07:27,2013-09-21 08:40:20,13017971MM10A,2013-09-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-21,Risk of Violence,1,Low,2013-09-21,2013-09-20,2013-09-21,0,0,923,0,0,0\r\n1351,dionte moore,dionte,moore,2013-01-30,Male,1989-12-28,26,25 - 45,African-American,0,7,0,0,9,-1,2013-01-29 07:56:52,2013-02-09 12:41:02,13001410CF10A,2013-01-29,,1,F,Driving While License Revoked,1,13014307MM10A,(M1),1,2013-07-28,Battery,2013-07-29,2013-09-17,,1,13014307MM10A,(M1),2013-07-28,Battery,Risk of Recidivism,7,Medium,2013-01-30,Risk of Violence,7,Medium,2013-01-30,2013-04-30,2013-05-14,9,10,90,0,1,1\r\n1354,hector contreras,hector,contreras,2014-03-03,Male,1989-02-11,27,25 - 45,Hispanic,0,1,0,0,1,-1,2014-03-02 07:59:01,2014-03-03 02:03:23,11007679TC40A,2011-02-04,,1123,M,Expired DL More Than 6 Months,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,2,Low,2014-03-03,2014-03-02,2014-03-03,1,0,760,0,0,0\r\n1356,gina paez,gina,paez,2013-05-13,Female,1958-07-28,57,Greater than 45,Hispanic,0,2,0,0,1,-1,2013-05-12 10:44:04,2013-05-13 01:07:10,13009141MM10A,2013-05-05,,8,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-12,2013-05-13,1,0,1054,0,0,0\r\n1360,michelet orisme,michelet,orisme,2013-11-19,Male,1983-07-20,32,25 - 45,African-American,0,1,0,0,3,-1,2013-11-18 10:28:15,2013-11-21 05:15:36,13016023CF10A,2013-11-18,,1,F,Burglary Unoccupied Dwelling,1,14044073TC20A,(M2),,2014-06-10,Unlaw LicTag/Sticker Attach,,,,1,15004977CF10A,(F3),2015-03-29,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2013-11-19,Risk of Violence,2,Low,2013-11-19,2013-11-18,2013-11-21,3,2,203,1,1,1\r\n1366,nora demmert,nora,demmert,2013-11-19,Female,1973-10-30,42,25 - 45,Caucasian,0,1,0,0,0,0,2013-11-19 03:21:39,2013-11-19 08:57:44,13021759MM10A,2013-11-19,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-19,Risk of Violence,1,Low,2013-11-19,2013-11-19,2013-11-19,0,0,864,0,0,0\r\n1368,anthony grab,anthony,grab,2013-07-03,Male,1989-07-31,26,25 - 45,Caucasian,0,4,0,0,4,-52,2013-05-12 05:57:19,2013-05-31 06:08:17,13009157MM10A,2013-05-12,,52,M,Battery,1,15010874CF10A,(M1),0,2015-08-23,Refuse Submit Blood/Breath Test,2015-08-23,2015-08-25,,1,15010874CF10A,(F2),2015-08-23,Agg Fleeing/Eluding High Speed,Risk of Recidivism,4,Low,2013-07-03,Risk of Violence,4,Low,2013-07-03,2015-08-23,2015-08-25,4,0,781,1,0,0\r\n1369,amanda johnson,amanda,johnson,2014-01-30,Female,1987-12-09,28,25 - 45,Caucasian,0,4,0,1,3,-1,2014-01-29 03:14:43,2014-03-15 05:32:38,14001614MM10A,2014-01-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-30,Risk of Violence,3,Low,2014-01-30,2014-01-29,2014-03-15,3,44,792,0,0,0\r\n1370,theresa brooks,theresa,brooks,2013-12-09,Female,1963-01-13,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-08 05:37:02,2013-12-09 02:01:16,13022709MM10A,2013-12-08,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,1,Low,2013-12-09,2013-12-08,2013-12-09,0,0,844,0,0,0\r\n1372,diego fernandez,diego,fernandez,2013-04-13,Male,1992-01-19,24,Less than 25,Caucasian,0,2,0,0,0,-1,2013-04-12 04:15:18,2013-04-13 04:49:36,13005316CF10A,2013-04-12,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-13,Risk of Violence,3,Low,2013-04-13,2013-04-12,2013-04-13,0,0,1084,0,0,0\r\n1375,roberto hernandez-castro,roberto,hernandez-castro,2013-02-05,Male,1987-05-07,28,25 - 45,Hispanic,0,2,0,0,1,-9,2013-01-27 07:59:24,2013-02-05 01:27:22,13001342CF10A,2013-01-27,,9,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-05,Risk of Violence,2,Low,2013-02-05,2013-01-27,2013-02-05,1,0,1151,0,0,0\r\n1376,william arenas,william,arenas,2013-12-07,Male,1987-09-26,28,25 - 45,Hispanic,0,5,0,0,1,-1,2013-12-06 10:35:46,2013-12-08 02:23:57,13016897CF10A,2013-12-06,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-07,Risk of Violence,4,Low,2013-12-07,2014-01-30,2014-01-31,1,1,54,0,0,0\r\n1382,leon hatcher,leon,hatcher,2013-12-06,Male,1991-03-08,25,25 - 45,African-American,0,2,0,0,0,0,2013-12-06 03:45:12,2013-12-07 09:02:36,13022645MM10A,2013-12-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-06,Risk of Violence,4,Low,2013-12-06,2013-12-06,2013-12-07,0,1,847,0,0,0\r\n1384,willis weber,willis,weber,2013-08-22,Male,1963-10-04,52,Greater than 45,Caucasian,0,5,0,0,1,-5,2013-08-17 11:01:00,2013-08-21 09:42:10,99013179CF10A,,2000-10-13,4696,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-22,Risk of Violence,3,Low,2013-08-22,2013-08-17,2013-08-21,1,0,953,0,0,0\r\n1385,christopher harris,christopher,harris,2013-11-20,Male,1988-03-22,28,25 - 45,African-American,0,2,0,0,4,-1,2013-11-19 09:37:06,2013-11-20 08:36:56,13021767MM10A,2013-11-19,,1,M,Battery,1,13017293CF10A,(M1),4,2013-12-10,Burglary Dwelling Assault/Batt,2013-12-14,2014-06-23,,1,13017293CF10A,(M1),2013-12-10,Burglary Dwelling Assault/Batt,Risk of Recidivism,2,Low,2013-11-20,Risk of Violence,3,Low,2013-11-20,2013-12-14,2014-06-23,4,0,20,1,1,1\r\n1395,breon clark,breon,clark,2014-08-04,Male,1994-04-21,21,Less than 25,African-American,0,9,0,0,2,-1,2014-08-03 02:26:32,2014-08-04 01:34:32,14010574CF10A,2014-08-03,,1,F,Possession of Cocaine,1,14012837CF10A,(F3),0,2014-09-22,Tamper With Victim,2014-09-22,2014-10-11,,1,14012837CF10A,(F3),2014-09-22,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2014-08-04,Risk of Violence,6,Medium,2014-08-04,2014-09-22,2014-10-11,2,0,49,1,1,1\r\n1396,jerry byrd,jerry,byrd,2014-02-11,Male,1983-11-11,32,25 - 45,African-American,0,10,0,0,19,-1,2014-02-10 06:04:29,2014-02-25 05:50:02,14001892CF10A,2014-02-10,,1,F,Possession of Cocaine,1,14009086CF10A,(F3),,2014-07-01,Poss Pyrrolidinovalerophenone,,,,1,14013915CF10A,(F3),2014-10-15,Battery on Law Enforc Officer,Risk of Recidivism,10,High,2014-02-11,Risk of Violence,10,High,2014-02-11,2014-02-10,2014-02-25,19,14,140,1,1,1\r\n1397,marion scriven,marion,scriven,2013-03-12,Male,1952-06-08,63,Greater than 45,African-American,0,9,0,0,3,-1,2013-03-11 01:34:23,2013-10-17 05:14:49,06023809MM10A,2006-11-22,,2302,M,Trespass Structure/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-03-11,2013-10-17,3,219,1116,0,0,0\r\n1399,james dean,james,dean,2013-01-22,Male,1986-11-21,29,25 - 45,Caucasian,0,3,0,0,2,0,2013-01-22 12:12:24,2013-01-24 11:34:19,13000988CF10A,2013-01-21,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-22,Risk of Violence,3,Low,2013-01-22,2013-01-22,2013-01-24,2,2,1165,0,0,0\r\n1402,darril wilson,darril,wilson,2013-09-21,Male,1969-10-06,46,Greater than 45,African-American,0,1,0,0,0,0,2013-09-21 04:23:43,2013-09-22 07:45:05,13018026MM10A,2013-09-21,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-21,Risk of Violence,1,Low,2013-09-21,2013-09-21,2013-09-22,0,1,923,0,0,0\r\n1403,patrick foy,patrick,foy,2013-10-11,Male,1993-02-10,23,Less than 25,African-American,0,10,0,0,5,-45,2013-08-27 09:03:34,2013-10-11 05:43:45,13011599CF10A,,2013-08-27,45,F,arrest case no charge,1,13017258CF10A,(M1),0,2013-12-13,Resist/Obstruct W/O Violence,2013-12-13,2014-01-15,,1,13017258CF10A,(M1),2013-12-13,Battery,Risk of Recidivism,10,High,2013-10-11,Risk of Violence,8,High,2013-10-11,2013-12-13,2014-01-15,5,0,63,1,1,1\r\n1410,derrick dismuke,derrick,dismuke,2013-11-04,Male,1988-06-04,27,25 - 45,African-American,0,2,0,0,1,-3,2013-11-01 07:50:16,2013-11-04 10:41:00,12002308CF10A,,2013-11-01,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-04,Risk of Violence,3,Low,2013-11-04,2015-06-17,2015-06-24,1,0,590,0,0,0\r\n1411,leonor ramirez,leonor,ramirez,2014-02-17,Female,1946-05-22,69,Greater than 45,Hispanic,0,1,0,0,0,0,2014-02-17 12:41:46,2014-02-17 10:01:43,14006018MU10A,2014-02-16,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-17,Risk of Violence,1,Low,2014-02-17,2014-02-17,2014-02-17,0,0,774,0,0,0\r\n1412,jorge castaneda,jorge,castaneda,2014-03-31,Male,1969-03-26,47,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-03-30 07:29:05,2014-03-31 08:24:40,14005457MM10A,2014-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-30,2014-03-31,0,0,732,0,0,0\r\n1418,elvis duran,elvis,duran,2013-05-15,Male,1970-05-18,45,Greater than 45,Hispanic,0,3,0,0,1,-1,2013-05-14 03:08:49,2013-09-19 05:01:54,13006893CF10A,2013-05-14,,1,F,Sex Offender Fail Comply W/Law,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-15,Risk of Violence,3,Low,2013-05-15,2013-05-14,2013-09-19,1,127,1052,0,0,0\r\n1419,consuelo mella,consuelo,mella,2014-01-24,Female,1982-12-22,33,25 - 45,Caucasian,0,1,0,0,1,0,2014-01-24 02:49:16,2014-01-24 09:38:22,14001387MM10A,2014-01-24,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-24,Risk of Violence,1,Low,2014-01-24,2014-01-24,2014-01-24,1,0,798,0,0,0\r\n1427,clinton mccutcheon,clinton,mccutcheon,2013-05-10,Male,1983-05-09,32,25 - 45,African-American,0,9,0,0,14,-1,2013-05-09 03:22:53,2013-05-11 05:44:32,13006678CF10A,2013-05-09,,1,F,Grand Theft (Motor Vehicle),1,14012056MM10A,(M1),0,2014-08-09,Possess Cannabis/20 Grams Or Less,2014-08-09,2014-08-10,,1,15015672CF10A,(F2),2015-12-07,Throw Deadly Missile Into Veh,Risk of Recidivism,9,High,2013-05-10,Risk of Violence,6,Medium,2013-05-10,2014-06-27,2014-07-01,14,1,413,0,1,1\r\n1428,joshua frazier,joshua,frazier,2013-05-21,Male,1991-04-21,24,Less than 25,African-American,0,7,0,0,2,-1,2013-05-20 04:06:09,2013-05-21 07:18:03,13007199CF10A,2013-05-20,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-21,Risk of Violence,5,Medium,2013-05-21,2014-04-03,2014-04-04,2,0,317,0,0,0\r\n1430,carlos mejia,carlos,mejia,2013-10-07,Male,1969-01-25,47,Greater than 45,Hispanic,0,4,0,0,0,-4,2013-10-03 01:34:28,2013-10-04 09:18:53,13018838MM10A,2013-10-03,,4,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-10-03,2013-10-04,0,0,907,0,0,0\r\n1431,thomas purvis,thomas,purvis,2014-03-05,Male,1990-11-04,25,25 - 45,Caucasian,0,5,0,0,1,-1,2014-03-04 08:15:39,2014-03-05 08:39:30,14003063CF10A,2014-03-04,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-05,Risk of Violence,3,Low,2014-03-05,2014-11-17,2014-11-24,1,0,257,0,0,0\r\n1433,destin ross,destin,ross,2013-11-23,Male,1995-02-28,21,Less than 25,African-American,0,8,0,0,1,-1,2013-11-22 12:16:41,2014-03-11 01:05:27,13016233CF10A,2013-11-22,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-23,Risk of Violence,7,Medium,2013-11-23,2013-11-22,2014-03-11,1,108,860,0,0,0\r\n1436,kashema dawkins,kashema,dawkins,2014-07-23,Male,1993-10-06,22,Less than 25,African-American,1,7,1,0,6,-1,2014-07-22 03:12:05,2014-07-24 06:06:22,14010014CF10A,,2014-07-22,1,F,arrest case no charge,1,14015889MM10A,(M1),0,2014-11-03,Battery,2014-11-03,2014-11-04,,1,14015889MM10A,(M1),2014-11-03,Battery,Risk of Recidivism,7,Medium,2014-07-23,Risk of Violence,5,Medium,2014-07-23,2014-11-03,2014-11-04,6,1,103,1,1,1\r\n1438,jennifer brown,jennifer,brown,2013-01-17,Female,1989-05-04,26,25 - 45,Caucasian,0,6,0,0,0,-1,2013-01-16 04:30:06,2013-01-17 03:36:21,13000765CF10A,2013-01-16,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-17,Risk of Violence,6,Medium,2013-01-17,2013-01-16,2013-01-17,0,0,1170,0,0,0\r\n1439,adrian mendieta,adrian,mendieta,2014-03-11,Male,1995-08-24,20,Less than 25,Caucasian,0,4,0,0,0,-1,2014-03-10 03:13:49,2014-03-11 10:33:16,14003382CF10A,2014-03-10,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-11,Risk of Violence,6,Medium,2014-03-11,2014-03-10,2014-03-11,0,0,752,0,0,0\r\n1445,ernest ford,ernest,ford,2013-01-03,Male,1982-05-26,33,25 - 45,African-American,0,7,0,0,7,0,2013-01-03 12:47:06,2013-03-23 05:13:54,13000079CF10A,2013-01-02,,1,F,Possession of Cocaine,1,13012253CF10A,(F2),,2013-07-16,Strong Armed  Robbery,,,,1,13012253CF10A,(F2),2013-07-16,Strong Armed  Robbery,Risk of Recidivism,7,Medium,2013-01-03,Risk of Violence,9,High,2013-01-03,2013-01-03,2013-03-23,7,79,194,1,1,1\r\n1446,lloren andreu,lloren,andreu,2014-02-04,Male,1980-09-16,35,25 - 45,Caucasian,0,1,0,0,2,-1,2014-02-03 10:17:08,2014-02-04 07:35:43,14001499CF10A,2014-02-03,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,2,Low,2014-02-04,2014-02-03,2014-02-04,2,0,787,0,0,0\r\n1447,mark marchant,mark,marchant,2013-11-26,Male,1975-03-29,41,25 - 45,Caucasian,0,1,0,0,5,-1,2013-11-25 07:40:00,2013-11-26 10:02:41,13016427CF10A,2013-11-25,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-26,Risk of Violence,1,Low,2013-11-26,2013-11-25,2013-11-26,5,0,857,0,0,0\r\n1448,christian ayers,christian,ayers,2013-01-16,Male,1992-09-04,23,Less than 25,Caucasian,0,3,0,0,0,0,2013-01-16 03:21:38,2013-01-18 06:02:43,13001147MM10A,2013-01-16,,0,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-16,Risk of Violence,5,Medium,2013-01-16,2013-01-16,2013-01-18,0,2,1171,0,0,0\r\n1455,ally chattman,ally,chattman,2013-02-23,Male,1961-09-18,54,Greater than 45,African-American,0,1,0,0,0,-1,2013-02-22 10:36:11,2013-02-24 02:27:44,13002755CF10A,2013-02-22,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-24,0,1,1133,0,0,0\r\n1458,timothy campos,timothy,campos,2013-10-10,Male,1993-07-11,22,Less than 25,Caucasian,0,3,0,0,0,-4,2013-10-06 03:03:50,2013-10-07 08:17:57,13018996MM10A,2013-10-05,,5,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-10,Risk of Violence,5,Medium,2013-10-10,2014-01-15,2014-01-16,0,0,97,0,0,0\r\n1462,carlos gabriele,carlos,gabriele,2013-12-17,Male,1986-02-27,30,25 - 45,Hispanic,0,1,0,0,1,-9,2013-12-08 10:10:54,2013-12-16 08:47:38,13022712MM10A,2013-12-08,,9,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-17,Risk of Violence,2,Low,2013-12-17,2013-12-08,2013-12-16,1,0,836,0,0,0\r\n1464,erika machado,erika,machado,2013-12-20,Female,1992-03-30,24,Less than 25,Hispanic,0,6,0,0,2,48,2014-02-06 03:33:18,2014-02-07 02:49:24,13008860CF10A,2013-06-24,,179,F,Possession of Cocaine,1,14002114MM10A,(M1),0,2014-02-06,Trespass Other Struct/Convey,2014-02-06,2014-02-07,,1,15006900MM10A,(M1),2015-06-27,Battery,Risk of Recidivism,6,Medium,2013-12-20,Risk of Violence,3,Low,2013-12-20,2014-02-06,2014-02-07,2,0,48,1,1,1\r\n1470,steve kolbjornsen,steve,kolbjornsen,2013-03-17,Male,1961-12-12,54,Greater than 45,African-American,0,5,0,0,4,-1,2013-03-16 11:33:04,2013-06-03 08:21:57,13005186MM10A,2013-03-16,,1,M,Battery,1,13010754MM10A,(M1),0,2013-06-04,Petit Theft $100- $300,2013-06-04,2013-12-12,,1,13010754MM10A,(M1),2013-06-04,Battery,Risk of Recidivism,5,Medium,2013-03-17,Risk of Violence,4,Low,2013-03-17,2013-06-04,2013-12-12,4,78,79,1,1,1\r\n1471,parker frederick,parker,frederick,2013-08-29,Male,1993-10-22,22,Less than 25,Caucasian,0,5,0,0,2,-1,2013-08-28 11:26:11,2013-09-11 08:03:33,13016503MM10A,2013-08-28,,1,M,Battery,1,14002633CF10A,(F3),0,2014-02-24,\"Poss3,4 Methylenedioxymethcath\",2014-02-24,2014-04-02,,1,15010952CF10A,(F3),2015-08-22,Felony Battery (Dom Strang),Risk of Recidivism,5,Medium,2013-08-29,Risk of Violence,6,Medium,2013-08-29,2014-02-24,2014-04-02,2,13,179,1,1,1\r\n1472,raymond carlson,raymond,carlson,2013-12-11,Male,1978-01-25,38,25 - 45,Caucasian,0,1,0,0,2,-64,2013-10-08 03:58:44,2013-10-12 10:37:11,13014123CF10A,2013-10-08,,64,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2014-03-05,2014-04-17,2,0,84,0,0,0\r\n1473,benjamin robinson,benjamin,robinson,2013-02-02,Male,1989-07-04,26,25 - 45,African-American,0,4,0,0,0,-1,2013-02-01 06:04:12,2013-02-02 05:16:40,13002360MM10A,2013-02-01,,1,M,Battery,1,13002713MM10A,(M1),0,2013-02-06,Resist/Obstruct W/O Violence,2013-02-06,2013-02-07,,1,15010096CF10A,(F2),2015-05-20,Agg Battery Grt/Bod/Harm,Risk of Recidivism,4,Low,2013-02-02,Risk of Violence,3,Low,2013-02-02,2013-02-06,2013-02-07,0,0,4,1,1,1\r\n1474,sasha coar,sasha,coar,2014-02-11,Female,1995-07-29,20,Less than 25,African-American,0,4,0,0,0,-1,2014-02-10 07:08:16,2014-02-11 11:50:51,14001883CF10A,2014-02-10,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-11,Risk of Violence,6,Medium,2014-02-11,2014-02-10,2014-02-11,0,0,780,0,0,0\r\n1475,hugo orbera,hugo,orbera,2013-04-10,Male,1960-04-18,56,Greater than 45,Hispanic,0,1,0,0,0,,,,,,,,M,,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-10,Risk of Violence,1,Low,2013-04-10,2013-04-02,2013-04-10,0,0,1087,0,0,0\r\n1481,aaron rolle,aaron,rolle,2013-04-12,Male,1986-09-06,29,25 - 45,African-American,0,1,0,0,0,-1,2013-04-11 02:03:54,2013-04-13 04:17:04,13005240CF10A,2013-04-11,,1,F,Sale/Del Counterfeit Cont Subs,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-12,Risk of Violence,2,Low,2013-04-12,2013-11-07,2013-11-10,0,1,209,0,0,0\r\n1482,kewuana jones,kewuana,jones,2013-12-16,Female,1992-04-25,23,Less than 25,African-American,0,7,0,0,6,-18,2013-11-28 11:32:18,2013-12-16 06:10:23,13022280MM10A,2013-11-28,,18,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-16,Risk of Violence,5,Medium,2013-12-16,2013-11-28,2013-12-16,6,0,837,0,0,0\r\n1483,harvell watson,harvell,watson,2014-01-22,Male,1980-08-21,35,25 - 45,African-American,0,1,0,0,1,-1,2014-01-21 05:56:47,2014-01-30 10:03:30,13009266MM10A,,2014-01-21,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-22,Risk of Violence,1,Low,2014-01-22,2014-01-21,2014-01-30,1,8,800,0,0,0\r\n1485,mitchell knight,mitchell,knight,2013-11-20,Male,1995-03-23,21,Less than 25,African-American,0,7,0,0,1,-18,2013-11-02 01:59:31,2013-11-03 01:26:39,13020677MM10A,2013-11-02,,18,M,Battery,1,14000114MM30A,(M1),596,2013-12-20,Possess Cannabis/20 Grams Or Less,2015-08-08,2015-08-08,,1,15012709MM10A,(M1),2015-11-11,Battery,Risk of Recidivism,7,Medium,2013-11-20,Risk of Violence,6,Medium,2013-11-20,2015-08-08,2015-08-08,1,0,30,1,1,1\r\n1486,luis taveras,luis,taveras,2013-10-08,Male,1990-09-12,25,25 - 45,Hispanic,0,3,0,0,0,-1,2013-10-07 07:18:19,2013-10-08 03:39:39,13014061CF10A,2013-10-07,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-08,Risk of Violence,6,Medium,2013-10-08,2013-10-07,2013-10-08,0,0,906,0,0,0\r\n1491,joan thomas,joan,thomas,2014-01-12,Female,1985-12-16,30,25 - 45,African-American,0,4,0,0,3,-1,2014-01-11 07:06:04,2014-02-06 09:34:49,14000468CF10A,2014-01-11,,1,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-12,Risk of Violence,4,Low,2014-01-12,2014-01-11,2014-02-06,3,25,810,0,0,0\r\n1496,demetris russaw,demetris,russaw,2013-04-25,Male,1992-05-24,23,Less than 25,African-American,0,7,0,0,2,-1,2013-04-24 03:10:43,2013-04-30 07:30:08,12009173CF10A,,2013-04-24,1,F,arrest case no charge,1,14002871MM20A,(M2),,2014-10-07,Operating W/O Valid License,,,,1,16002777CF10A,(F1),2016-03-04,Burglary With Assault/battery,Risk of Recidivism,7,Medium,2013-04-25,Risk of Violence,6,Medium,2013-04-25,2013-04-24,2013-04-30,2,5,530,1,1,1\r\n1497,jesse bernstein,jesse,bernstein,2013-07-29,Male,1983-04-21,32,25 - 45,Caucasian,1,4,0,0,8,-2,2013-07-27 10:35:38,2013-07-29 11:27:25,13010543CF10A,2013-07-27,,2,F,Burglary Dwelling Occupied,1,15013246MM10A,(M1),,2015-12-23,Tresspass in Struct/Convey Occupy,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-29,Risk of Violence,4,Low,2013-07-29,2013-07-27,2013-07-29,8,0,877,1,0,0\r\n1498,jerry seal,jerry,seal,2013-12-11,Male,1963-09-19,52,Greater than 45,Caucasian,0,1,0,0,1,-111,2013-08-22 10:06:49,2013-08-24 02:22:11,13011800CF10A,2013-08-22,,111,F,Possession Child Pornography,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2016-01-21,2016-01-23,1,0,771,0,0,0\r\n1501,peter rapone,peter,rapone,2013-08-16,Male,1973-12-10,42,25 - 45,Caucasian,0,1,0,0,0,0,2013-08-16 03:31:01,2013-08-16 09:14:20,13015538MM10A,2013-08-16,,0,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-16,Risk of Violence,1,Low,2013-08-16,2013-08-16,2013-08-16,0,0,959,0,0,0\r\n1508,chantel thomas,chantel,thomas,2014-01-06,Female,1993-08-06,22,Less than 25,African-American,0,3,0,0,0,-2,2014-01-04 11:57:59,2014-01-05 01:34:22,14000168MM10A,2014-01-04,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-06,Risk of Violence,4,Low,2014-01-06,2014-01-04,2014-01-05,0,0,816,0,0,0\r\n1509,hugo garcia,hugo,garcia,2013-01-26,Male,1970-10-12,45,Greater than 45,Hispanic,0,1,0,0,2,-1,2013-01-25 07:53:49,2013-03-13 12:29:31,13001254CF10A,2013-01-25,,1,F,Sex Battery Deft 18+/Vict 11-,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-26,Risk of Violence,2,Low,2013-01-26,2013-01-25,2013-03-13,2,46,1161,0,0,0\r\n1511,duane miller,duane,miller,2013-11-10,Male,1986-09-16,29,25 - 45,African-American,0,2,0,0,0,-1,2013-11-09 08:24:05,2013-11-10 02:36:02,13021182MM10A,2013-11-09,,1,M,Posses/Disply Susp/Revk/Frd DL,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-10,Risk of Violence,3,Low,2013-11-10,2013-11-09,2013-11-10,0,0,873,0,0,0\r\n1512,thomas evans,thomas,evans,2013-09-09,Male,1961-08-11,54,Greater than 45,African-American,0,2,0,0,2,,,,10011555CF10A,2010-06-24,,1173,M,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-09,Risk of Violence,3,Low,2013-09-09,2008-03-06,2008-07-11,2,0,935,0,0,0\r\n1513,willie carter,willie,carter,2013-01-24,Male,1986-04-14,30,25 - 45,African-American,0,5,0,0,6,-1,2013-01-23 04:50:53,2013-01-26 03:15:43,13001097CF10A,,2013-01-23,1,F,arrest case no charge,1,14011625CF10A,(F2),282,2014-05-25,Aggravated Battery / Pregnant,2015-03-03,2015-04-15,,1,14011625CF10A,(F2),2014-05-25,Aggravated Battery / Pregnant,Risk of Recidivism,5,Medium,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-06-05,2013-07-26,6,2,132,0,1,1\r\n1515,rufus jackson,rufus,jackson,2013-10-23,Male,1964-11-14,51,Greater than 45,African-American,0,4,0,0,17,0,2013-10-23 02:05:52,2013-10-23 07:52:30,13020090MM10A,2013-10-22,,1,M,DUI Blood Alcohol Above 0.20,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-23,Risk of Violence,1,Low,2013-10-23,2013-10-23,2013-10-23,17,0,891,0,0,0\r\n1517,gearrard holmes,gearrard,holmes,2014-08-14,Male,1988-11-21,27,25 - 45,African-American,0,3,0,0,3,88,2014-11-10 10:05:14,2015-09-08 09:20:53,14006822CF10A,2014-05-16,,90,F,Burglary Conveyance Armed,1,14015078CF10A,(M2),3,2014-11-07,Fail To Obey Police Officer,2014-11-10,2015-09-08,,1,14015078CF10A,(F2),2014-11-07,Agg Assault Law Enforc Officer,Risk of Recidivism,3,Low,2014-08-14,Risk of Violence,2,Low,2014-08-14,2014-11-10,2015-09-08,3,0,85,1,1,1\r\n1520,eric evenson,eric,evenson,2013-10-01,Male,1991-07-09,24,Less than 25,Caucasian,0,6,0,0,2,-27,2013-09-04 06:36:53,2013-09-04 06:53:03,13012482CF10A,2013-09-04,,27,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-01,Risk of Violence,5,Medium,2013-10-01,2013-10-31,2013-11-13,2,0,30,0,0,0\r\n1522,blake robinson,blake,robinson,2013-02-04,Male,1992-06-07,23,Less than 25,African-American,0,7,0,0,2,-1,2013-02-03 05:45:03,2013-02-08 11:19:06,13002455MM10A,2013-02-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-04,Risk of Violence,6,Medium,2013-02-04,2013-02-03,2013-02-08,2,4,1152,0,0,0\r\n1523,annmarie young,annmarie,young,2013-04-27,Female,1973-11-20,42,25 - 45,Other,0,3,0,0,2,496,2014-09-05 04:36:17,2014-09-19 06:50:50,13008081MM10A,2013-04-26,,1,M,Crim Attempt/Solicit/Consp,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-27,Risk of Violence,2,Low,2013-04-27,2014-09-05,2014-09-19,2,0,496,0,0,0\r\n1526,nelson olivio,nelson,olivio,2013-12-12,Male,1979-06-11,36,25 - 45,African-American,0,4,0,0,5,-1,2013-12-11 05:02:29,2013-12-12 01:44:46,13017126CF10A,2013-12-11,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-12,Risk of Violence,2,Low,2013-12-12,2013-12-11,2013-12-12,5,0,841,0,0,0\r\n1529,richard edward,richard,edward,2014-07-28,Female,1977-10-06,38,25 - 45,African-American,0,7,1,0,8,,,,14011447MM10A,2014-07-27,,1,M,Battery,1,15046846TC20A,(M2),,2015-08-18,Susp Drivers Lic 1st Offense,,,,1,15011417MM10A,(M1),2015-10-29,Battery,Risk of Recidivism,7,Medium,2014-07-28,Risk of Violence,4,Low,2014-07-28,2006-07-11,2008-11-24,8,0,386,1,1,1\r\n1530,marcelo davila,marcelo,davila,2014-03-31,Male,1947-04-09,69,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-03-30 06:30:00,2014-03-31 01:49:24,14005471MM10A,2014-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-30,2014-03-31,0,0,732,0,0,0\r\n1532,leonardo collazos,leonardo,collazos,2013-04-27,Male,1956-07-21,59,Greater than 45,Hispanic,0,1,0,0,1,-1,2013-04-26 10:39:22,2013-04-27 01:07:17,92078761TC20A,1992-07-02,,7604,M,License Suspended Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-26,2013-04-27,1,0,1070,0,0,0\r\n1533,isaac smith,isaac,smith,2014-01-14,Male,1976-05-09,39,25 - 45,African-American,0,6,0,0,1,-9,2014-01-05 09:54:57,2014-01-10 07:58:25,12016467CF10A,,2014-01-05,9,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-14,Risk of Violence,1,Low,2014-01-14,2014-01-05,2014-01-10,1,0,808,0,0,0\r\n1534,trevor parker,trevor,parker,2013-05-06,Male,1986-04-23,29,25 - 45,African-American,0,6,0,0,2,-1,2013-05-05 10:38:59,2013-06-12 05:40:10,13006444CF10A,2013-05-05,,1,F,Burglary Conveyance Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-06,Risk of Violence,3,Low,2013-05-06,2013-05-05,2013-06-12,2,37,1061,0,0,0\r\n1536,emmanuel treveus,emmanuel,treveus,2014-02-16,Male,1987-12-23,28,25 - 45,African-American,0,4,0,0,1,,,,08003795CF10A,2008-02-25,,2183,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-16,Risk of Violence,6,Medium,2014-02-16,,,1,0,775,0,0,0\r\n1538,daniel white,daniel,white,2013-03-22,Male,1971-08-18,44,25 - 45,Caucasian,0,3,0,0,6,0,2013-03-22 12:07:37,2013-03-22 08:51:12,13004116CF10A,2013-03-21,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-22,Risk of Violence,1,Low,2013-03-22,2013-03-22,2013-03-22,6,0,1106,0,0,0\r\n1540,jovan bailey,jovan,bailey,2013-02-17,Male,1990-11-20,25,25 - 45,African-American,0,5,0,0,2,-1,2013-02-16 04:14:17,2013-04-15 04:35:16,13002415CF10A,2013-02-16,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-17,Risk of Violence,6,Medium,2013-02-17,2015-03-03,2015-04-30,2,57,744,0,0,0\r\n1541,learby labath,learby,labath,2014-01-20,Male,1984-08-06,31,25 - 45,African-American,0,10,0,0,0,0,2014-01-20 03:43:59,2014-01-20 09:17:53,14000845CF10A,2014-01-20,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-20,Risk of Violence,10,High,2014-01-20,2014-01-20,2014-01-20,0,0,802,0,0,0\r\n1542,tavares felder,tavares,felder,2013-02-03,Male,1980-06-10,35,25 - 45,African-American,0,7,1,0,17,-1,2013-02-02 01:30:39,2013-02-04 03:00:27,13002391MM10A,2013-02-02,,1,M,Battery,1,13008151CF10A,(F3),1,2013-06-08,Grand Theft in the 3rd Degree,2013-06-09,2014-02-12,,1,13008151CF10A,(F3),2013-06-08,Child Abuse,Risk of Recidivism,7,Medium,2013-02-03,Risk of Violence,2,Low,2013-02-03,2013-03-14,2013-04-16,17,1,39,0,1,1\r\n1545,evens jeanbaptiste,evens,jeanbaptiste,2013-11-23,Male,1983-02-19,33,25 - 45,African-American,0,5,0,0,1,0,2013-11-23 12:34:52,2013-11-25 10:32:35,13016319CF10A,2013-11-22,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-23,Risk of Violence,4,Low,2013-11-23,2013-11-23,2013-11-25,1,2,860,0,0,0\r\n1549,dedrick williams,dedrick,williams,2014-04-24,Male,1996-03-23,20,Less than 25,African-American,1,10,0,1,1,-51,2014-03-04 08:08:45,2014-03-06 05:40:10,14003031CF10A,,2014-03-05,50,F,arrest case no charge,1,14011919CF10A,(F3),,2014-05-18,Aggravated Assault w/Firearm,,,,1,14011919CF10A,(F3),2014-05-18,Aggravated Assault w/Firearm,Risk of Recidivism,10,High,2014-04-24,Risk of Violence,10,High,2014-04-24,2014-03-04,2014-03-06,1,0,24,1,1,1\r\n1550,keith dillman,keith,dillman,2014-03-03,Male,1955-11-01,60,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-03-02 12:41:55,2014-03-03 08:09:50,13014186CF10A,,2014-03-02,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-02,2014-03-03,1,0,760,0,0,0\r\n1551,francisco gonzalez,francisco,gonzalez,2014-01-19,Male,1962-06-19,53,Greater than 45,Hispanic,0,1,0,0,0,0,2014-01-19 05:06:52,2014-01-20 12:41:21,14000962MM10A,2014-01-19,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-19,Risk of Violence,1,Low,2014-01-19,2014-01-19,2014-01-20,0,1,803,0,0,0\r\n1554,roger baladi,roger,baladi,2013-12-11,Male,1990-07-15,25,25 - 45,Hispanic,0,2,0,0,1,-106,2013-08-27 02:38:09,2013-09-28 02:10:00,13011657CF10A,,2013-08-27,106,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-11,Risk of Violence,3,Low,2013-12-11,2013-08-27,2013-09-28,1,0,842,0,0,0\r\n1556,lias corker,lias,corker,2013-12-13,Male,1989-01-25,27,25 - 45,African-American,2,7,1,0,5,76,2014-02-27 01:40:20,2014-09-18 07:01:56,13009236CF10A,2013-06-28,,168,F,Robbery W/Firearm,1,14002766CF10A,(F3),1,2014-02-26,Robbery Sudd Snatch No Weapon,2014-02-27,2014-09-18,,1,14002766CF10A,(F3),2014-02-26,Robbery Sudd Snatch No Weapon,Risk of Recidivism,7,Medium,2013-12-13,Risk of Violence,8,High,2013-12-13,2015-07-25,2015-09-27,5,0,75,1,1,1\r\n1557,victoria phillips,victoria,phillips,2013-12-16,Female,1961-05-05,54,Greater than 45,African-American,0,1,0,0,0,-1,2013-12-15 02:13:35,2013-12-16 07:55:36,13017330CF10A,2013-12-15,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,0,0,837,0,0,0\r\n1558,lucia arne,lucia,arne,2014-01-09,Female,1989-06-09,26,25 - 45,African-American,0,5,0,1,3,-305,2013-03-10 05:04:36,2013-03-11 05:35:50,14004080MM10A,2014-01-02,,7,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-09,Risk of Violence,5,Medium,2014-01-09,2013-03-10,2013-03-11,3,0,813,0,0,0\r\n1559,heriberto castro,heriberto,castro,2014-03-05,Male,1991-06-27,24,Less than 25,Caucasian,1,4,2,0,3,-1,2014-03-04 11:56:23,2014-03-06 04:15:00,14003704MM10A,2014-03-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-05,Risk of Violence,5,Medium,2014-03-05,2014-03-04,2014-03-06,3,1,758,0,0,0\r\n1562,juan perez,juan,perez,2013-03-25,Male,1989-05-24,26,25 - 45,Hispanic,0,3,0,0,0,-1,2013-03-24 03:23:32,2013-03-26 11:28:11,13004394CF10A,2013-03-24,,1,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-25,Risk of Violence,3,Low,2013-03-25,2013-05-13,2013-06-08,0,1,49,0,0,0\r\n1563,catherine blackwood,catherine,blackwood,2013-08-01,Female,1941-03-08,75,Greater than 45,African-American,0,1,0,0,5,-1,2013-07-31 04:54:07,2013-08-01 07:43:39,13010258CF10A,,2013-07-31,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2013-07-31,2013-08-01,5,0,974,0,0,0\r\n1566,ulysses davis,ulysses,davis,2013-11-19,Male,1959-05-04,56,Greater than 45,African-American,0,3,0,0,8,-106,2013-08-05 07:30:16,2013-10-16 11:44:03,08021349CF10A,,2013-08-05,106,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-19,Risk of Violence,3,Low,2013-11-19,2013-08-05,2013-10-16,8,0,864,0,0,0\r\n1571,kurt vanasse,kurt,vanasse,2013-03-25,Male,1969-08-16,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-24 09:03:12,2013-03-25 07:14:16,13004271CF10A,2013-03-24,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-03-24,2013-03-25,0,0,1103,0,0,0\r\n1572,jahmara rawlins,jahmara,rawlins,2013-01-19,Male,1988-07-18,27,25 - 45,African-American,0,2,0,0,1,0,2013-01-19 03:06:53,2013-01-26 01:55:00,13000898CF10A,,2013-01-19,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-19,Risk of Violence,5,Medium,2013-01-19,2013-01-19,2013-01-26,1,7,1168,0,0,0\r\n1573,johnie walton,johnie,walton,2014-02-04,Male,1991-06-12,24,Less than 25,African-American,0,6,0,0,1,,,,12021892TC10A,,2012-11-03,458,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-04,Risk of Violence,6,Medium,2014-02-04,,,1,0,787,0,0,0\r\n1577,reynold cadet,reynold,cadet,2013-04-29,Male,1957-03-27,59,Greater than 45,African-American,0,1,0,0,2,0,2013-04-29 01:05:52,2013-04-29 06:35:40,13008155MM10A,2013-04-28,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-29,2013-04-29,2,0,1068,0,0,0\r\n1578,masoom ali,masoom,ali,2013-12-20,Male,1976-07-18,39,25 - 45,Caucasian,0,1,0,0,1,-15,2013-12-05 03:06:12,2013-12-20 01:58:00,13016994CF10A,2013-12-05,,15,F,Money Launder 100K or More Dols,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-20,Risk of Violence,1,Low,2013-12-20,2013-12-05,2013-12-20,1,0,833,0,0,0\r\n1581,gregory ponce,gregory,ponce,2013-04-19,Male,1970-04-09,46,Greater than 45,Caucasian,0,4,0,0,5,-1,2013-04-18 07:24:02,2013-04-30 07:30:20,13007528MM10A,2013-04-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-18,2013-04-30,5,11,1078,0,0,0\r\n1584,stevenson charles,stevenson,charles,2013-01-15,Male,1991-03-03,25,25 - 45,Other,0,2,0,0,1,-1,2013-01-14 09:27:00,2013-01-15 01:39:19,13000655CF10A,2013-01-04,,11,F,Fraudulent Use of Credit Card,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-15,Risk of Violence,3,Low,2013-01-15,2013-01-14,2013-01-15,1,0,1172,0,0,0\r\n1587,ricardo moreno,ricardo,moreno,2013-04-03,Male,1960-10-20,55,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-04-02 11:56:46,2013-04-04 10:21:45,13004810CF10A,2013-04-02,,1,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-03,Risk of Violence,1,Low,2013-04-03,2015-10-15,2015-10-20,2,1,925,0,0,0\r\n1590,mark harden,mark,harden,2014-03-27,Male,1972-07-19,43,25 - 45,African-American,0,1,0,0,0,-1,2014-03-26 05:00:03,2014-03-27 08:19:09,14005244MM10A,2014-03-26,,1,M,Battery,1,15000453MM10A,(M1),,2014-12-08,Battery,,,,1,15000453MM10A,(M1),2014-12-08,Battery,Risk of Recidivism,1,Low,2014-03-27,Risk of Violence,1,Low,2014-03-27,2014-12-30,2015-01-04,0,0,256,1,1,1\r\n1591,dawn kluenie,dawn,kluenie,2014-02-06,Female,1962-09-11,53,Greater than 45,Caucasian,0,1,0,0,0,0,2014-02-06 05:04:01,2014-02-07 02:27:21,14004832MU10A,2014-02-06,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-06,Risk of Violence,1,Low,2014-02-06,2014-02-06,2014-02-07,0,1,785,0,0,0\r\n1594,bianca adhemar,bianca,adhemar,2013-12-27,Female,1994-07-18,21,Less than 25,African-American,0,5,0,0,0,-1,2013-12-26 06:12:11,2013-12-27 07:35:36,13023836MM10A,2013-12-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-27,Risk of Violence,6,Medium,2013-12-27,2013-12-26,2013-12-27,0,0,826,0,0,0\r\n1597,phillip hopson,phillip,hopson,2013-04-08,Male,1975-08-23,40,25 - 45,African-American,0,1,0,0,0,-1,2013-04-07 03:56:49,2013-04-09 11:36:38,13005021CF10A,2013-04-07,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-08,Risk of Violence,1,Low,2013-04-08,2013-04-07,2013-04-09,0,1,1089,0,0,0\r\n1599,elisa garcia,elisa,garcia,2014-03-08,Female,1979-02-02,37,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-07 06:26:42,2014-03-08 09:43:00,14009244MU10A,2014-03-07,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-08,Risk of Violence,1,Low,2014-03-08,2014-03-07,2014-03-08,0,0,755,0,0,0\r\n1602,ronald shelton,ronald,shelton,2013-08-10,Male,1983-08-06,32,25 - 45,African-American,0,2,0,0,2,-1,2013-08-09 11:28:35,2013-08-11 03:36:21,13011211CF10A,2013-08-09,,1,M,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-10,Risk of Violence,2,Low,2013-08-10,2013-08-09,2013-08-11,2,1,965,0,0,0\r\n1605,algin peralta,algin,peralta,2014-03-10,Male,1993-10-10,22,Less than 25,Hispanic,0,3,0,0,0,-1,2014-03-09 10:59:23,2014-03-10 03:29:33,14009275MU10A,2014-03-09,,1,M,Possess Drug Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-10,Risk of Violence,5,Medium,2014-03-10,2015-05-06,2015-05-08,0,0,422,0,0,0\r\n1606,faris roperto,faris,roperto,2013-09-17,Female,1984-09-19,31,25 - 45,African-American,0,8,0,0,0,-1,2013-09-16 07:41:46,2013-09-18 08:56:28,13013084CF10A,2013-09-16,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-17,Risk of Violence,5,Medium,2013-09-17,2013-09-16,2013-09-18,0,1,927,0,0,0\r\n1611,roderick goddard,roderick,goddard,2013-03-30,Male,1968-05-28,47,Greater than 45,African-American,0,3,0,0,4,0,2013-03-30 03:56:44,2013-03-30 07:56:58,13004577CF10A,2013-03-30,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-30,Risk of Violence,2,Low,2013-03-30,2013-03-30,2013-03-30,4,0,1098,0,0,0\r\n1613,melek rodney,melek,rodney,2013-03-04,Male,1980-01-12,36,25 - 45,African-American,0,3,0,0,2,-2,2013-03-02 08:36:51,2013-03-03 08:52:32,13003151CF10A,2013-03-02,,2,F,Crim Use of Personal ID Info,1,16000286MM20A,(M1),,2016-01-20,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2014-07-08,2014-07-14,2,0,491,0,0,0\r\n1615,crystal lyerla,crystal,lyerla,2013-11-08,Female,1977-06-22,38,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-07 02:09:05,2013-11-08 09:00:47,13015557CF10A,2013-11-07,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2013-11-07,2013-11-08,0,0,875,0,0,0\r\n1618,gregory lundy,gregory,lundy,2014-03-13,Male,1980-11-13,35,25 - 45,Other,0,1,0,0,0,-1,2014-03-12 03:20:25,2014-03-14 09:36:01,14003518CF10A,2014-03-12,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-13,Risk of Violence,1,Low,2014-03-13,2014-03-12,2014-03-14,0,1,750,0,0,0\r\n1620,alan suarezmesa,alan,suarezmesa,2013-12-16,Male,1963-01-22,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-15 11:06:25,2013-12-16 08:27:56,13017337CF10A,2013-12-15,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,0,0,837,0,0,0\r\n1622,carlwell wilson,carlwell,wilson,2013-03-10,Male,1962-10-20,53,Greater than 45,African-American,0,3,0,0,2,-1,2013-03-09 09:26:47,2013-03-10 01:02:25,13003508CF10A,2013-03-09,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-10,Risk of Violence,1,Low,2013-03-10,2013-03-09,2013-03-10,2,0,1118,0,0,0\r\n1623,edward johnson,edward,johnson,2013-10-22,Male,1958-10-07,57,Greater than 45,African-American,0,7,0,0,19,-1,2013-10-21 11:00:46,2014-02-16 03:07:18,13016096CF10A,2013-10-21,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-22,Risk of Violence,4,Low,2013-10-22,2013-10-21,2014-02-16,19,117,892,0,0,0\r\n1625,deon jackson,deon,jackson,2013-02-19,Male,1994-10-31,21,Less than 25,African-American,0,10,0,0,0,-5,2013-02-14 06:35:26,2013-02-15 07:40:52,13002307CF10A,2013-02-14,,5,F,Grand Theft in the 3rd Degree,1,13015785TC10A,(M2),0,2013-04-11,Operating W/O Valid License,2013-04-11,2013-04-12,,1,14009181MM10A,(M1),2014-06-10,Battery,Risk of Recidivism,10,High,2013-02-19,Risk of Violence,9,High,2013-02-19,2013-04-11,2013-04-12,0,0,51,1,1,1\r\n1627,yashell eaton,yashell,eaton,2013-01-30,Female,1991-10-10,24,Less than 25,African-American,0,3,0,0,1,279,2013-11-05 01:27:08,2013-11-19 05:29:00,12018695CF10A,2012-12-26,,35,F,Aggravated Assault W/dead Weap,1,15002706MM20A,(M1),,2015-10-15,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-30,Risk of Violence,4,Low,2013-01-30,2013-11-05,2013-11-19,1,0,279,0,0,0\r\n1629,berton michel,berton,michel,2014-02-09,Male,1988-09-09,27,25 - 45,African-American,0,5,0,0,2,-1,2014-02-08 07:03:51,2014-03-01 05:08:57,14001777CF10A,2014-02-08,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-09,Risk of Violence,4,Low,2014-02-09,2014-02-08,2014-03-01,2,20,782,0,0,0\r\n1630,elexis garcia,elexis,garcia,2013-05-25,Female,1966-06-14,49,Greater than 45,Caucasian,0,5,0,0,4,0,2013-05-25 12:09:30,2013-05-29 05:21:54,12010393CF10A,,2013-05-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-25,Risk of Violence,1,Low,2013-05-25,2013-05-25,2013-05-29,4,4,1042,0,0,0\r\n1631,raymond rakoski,raymond,rakoski,2013-10-08,Male,1968-06-09,47,Greater than 45,Caucasian,0,3,0,0,1,-1,2013-10-07 11:30:18,2013-10-08 08:26:31,13014082CF10A,2013-10-07,,1,F,Possession of Cocaine,1,15003313MM10A,(M1),0,2015-03-20,Battery,2015-03-20,2015-07-28,,1,15003313MM10A,(M1),2015-03-20,Battery,Risk of Recidivism,3,Low,2013-10-08,Risk of Violence,1,Low,2013-10-08,2015-03-20,2015-07-28,1,0,528,1,1,1\r\n1634,moris lucero,moris,lucero,2013-03-30,Male,1971-11-15,44,25 - 45,Caucasian,0,1,0,0,3,0,2013-03-30 04:02:21,2013-03-30 08:06:38,13004561CF10A,2013-03-30,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-30,Risk of Violence,1,Low,2013-03-30,2013-03-30,2013-03-30,3,0,1098,0,0,0\r\n1637,dakenson placide,dakenson,placide,2013-06-10,Male,1981-12-09,34,25 - 45,African-American,0,1,0,0,1,-17,2013-05-24 11:07:40,2013-05-26 01:55:21,13007416CF10A,2013-05-24,,17,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-10,Risk of Violence,1,Low,2013-06-10,2013-05-24,2013-05-26,1,0,1026,0,0,0\r\n1639,harold coronado-cruz,harold,coronado-cruz,2013-12-13,Male,1977-08-04,38,25 - 45,Hispanic,0,4,0,0,0,-1,2013-12-12 01:10:17,2013-12-13 03:24:28,13017189CF10A,2013-12-12,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-13,Risk of Violence,5,Medium,2013-12-13,2013-12-12,2013-12-13,0,0,840,0,0,0\r\n1640,michael phelan,michael,phelan,2013-01-03,Male,1965-05-08,50,Greater than 45,Caucasian,0,1,0,0,2,0,2013-01-03 02:20:43,2013-01-03 10:00:03,13000195MM10A,2013-01-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2013-01-03,2013-01-03,2,0,1184,0,0,0\r\n1642,preston roman,preston,roman,2014-03-18,Male,1986-10-09,29,25 - 45,Caucasian,0,6,0,0,1,0,2014-03-18 03:06:23,2014-03-18 08:25:34,14004701MM10A,2014-03-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-18,Risk of Violence,4,Low,2014-03-18,2014-03-18,2014-03-18,1,0,745,0,0,0\r\n1643,lance hayes,lance,hayes,2013-04-27,Male,1989-12-12,26,25 - 45,Caucasian,0,4,0,0,0,0,2013-04-27 02:42:38,2013-04-27 07:36:35,13006071CF10A,2013-04-27,,0,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-27,Risk of Violence,4,Low,2013-04-27,2013-04-27,2013-04-27,0,0,1070,0,0,0\r\n1644,randy garciagarcia,randy,garciagarcia,2013-11-29,Male,1971-06-08,44,25 - 45,Hispanic,0,1,0,0,2,,,,10008298MM10A,,2011-07-13,870,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-29,Risk of Violence,1,Low,2013-11-29,,,2,0,854,0,0,0\r\n1646,maximo castro,maximo,castro,2013-04-05,Male,1968-09-12,47,Greater than 45,Hispanic,0,1,0,0,0,0,2013-04-05 02:12:18,2013-04-06 05:06:49,13006562MM10A,2013-04-05,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-05,Risk of Violence,1,Low,2013-04-05,2013-04-05,2013-04-06,0,1,1092,0,0,0\r\n1648,lonny paul,lonny,paul,2013-11-16,Male,1966-12-21,49,Greater than 45,Caucasian,0,1,0,0,0,0,2013-11-16 02:12:56,2013-11-16 08:03:22,13015923CF10A,2013-11-16,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-16,Risk of Violence,1,Low,2013-11-16,2013-11-16,2013-11-16,0,0,867,0,0,0\r\n1651,bernard crenshaw,bernard,crenshaw,2013-03-13,Male,1967-02-23,49,Greater than 45,African-American,0,3,0,0,1,0,2013-03-13 01:26:25,2013-04-01 09:47:06,13003696CF10A,2013-03-13,,0,F,Resist Officer w/Violence,1,13007610CF10A,(M2),0,2013-05-28,Trespass Structure/Conveyance,2013-05-28,2013-08-02,,1,13007610CF10A,(F3),2013-05-28,Battery on Law Enforc Officer,Risk of Recidivism,3,Low,2013-03-13,Risk of Violence,1,Low,2013-03-13,2013-05-28,2013-08-02,1,19,76,1,1,1\r\n1652,robert reeves,robert,reeves,2013-03-21,Male,1957-01-13,59,Greater than 45,Caucasian,0,1,0,0,2,0,2013-03-21 12:43:41,2013-04-03 07:34:10,13003954CF10A,,2013-03-21,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,1,Low,2013-03-21,2013-03-21,2013-04-03,2,13,1107,0,0,0\r\n1653,christian hughes,christian,hughes,2013-11-22,Male,1983-12-30,32,25 - 45,Caucasian,0,5,0,0,6,-29,2013-10-24 12:41:00,2013-11-21 09:37:40,13020104MM10A,2013-10-23,,30,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-22,Risk of Violence,4,Low,2013-11-22,2013-10-24,2013-11-21,6,0,861,0,0,0\r\n1655,courtland rich,courtland,rich,2013-01-22,Male,1992-04-04,24,Less than 25,African-American,0,2,0,2,1,0,2013-01-22 12:22:03,2013-01-22 01:49:40,13003080TC10A,2013-01-21,,1,M,Susp Drivers Lic 1st Offense,1,14002053CF10A,(F2),0,2014-02-13,Aggravated Battery / Pregnant,2014-02-13,2014-02-14,,1,14002053CF10A,(F2),2014-02-13,Aggravated Battery / Pregnant,Risk of Recidivism,2,Low,2013-01-22,Risk of Violence,4,Low,2013-01-22,2014-02-13,2014-02-14,1,0,387,1,1,1\r\n1656,alberto lorenzo-luaces,alberto,lorenzo-luaces,2014-01-06,Male,1975-08-24,40,25 - 45,Hispanic,0,2,0,0,0,-2,2014-01-04 01:41:51,2014-01-05 08:41:28,14000372MU10A,2014-01-03,,3,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-01-04,2014-01-05,0,0,816,0,0,0\r\n1657,timothy davis,timothy,davis,2013-02-02,Male,1983-10-19,32,25 - 45,African-American,0,1,0,0,0,0,2013-02-02 12:08:15,2013-02-02 05:41:52,13001647CF10A,2013-02-01,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-02,Risk of Violence,2,Low,2013-02-02,2013-02-02,2013-02-02,0,0,1154,0,0,0\r\n1658,roxana ebanks,roxana,ebanks,2013-05-20,Female,1961-06-28,54,Greater than 45,Hispanic,0,1,0,0,0,0,2013-05-20 03:07:28,2013-05-20 07:36:27,13009723MM10A,2013-05-20,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-20,Risk of Violence,1,Low,2013-05-20,2013-05-20,2013-05-20,0,0,1047,0,0,0\r\n1660,tommy turner,tommy,turner,2013-02-06,Male,1988-09-13,27,25 - 45,African-American,0,10,0,1,9,-1,2013-02-05 11:27:02,2015-04-16 06:28:26,12016850CF10A,,2013-02-06,0,F,arrest case no charge,1,13003421CF10A,(F3),,2013-03-06,Fraudulent Use Credit Card,,,,1,13003421CF10A,(F1),2013-03-06,Robbery W/Deadly Weapon,Risk of Recidivism,10,High,2013-02-06,Risk of Violence,5,Medium,2013-02-06,2013-02-05,2015-04-16,9,0,28,1,1,1\r\n1663,magda ramos,magda,ramos,2013-02-12,Female,1975-10-09,40,25 - 45,Hispanic,0,1,0,0,1,,,,12023207MM10A,2012-11-11,,93,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-12,Risk of Violence,1,Low,2013-02-12,,,1,0,1144,0,0,0\r\n1664,jose diz,jose,diz,2013-02-07,Male,1991-01-28,25,25 - 45,Caucasian,0,8,0,0,2,0,2013-02-07 03:40:18,2013-02-19 08:46:34,13005872TC10A,2013-02-07,,0,M,Opert With Susp DL 2nd Offens,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-07,Risk of Violence,4,Low,2013-02-07,2014-07-17,2014-07-24,2,12,525,0,0,0\r\n1665,ephrain caneus,ephrain,caneus,2013-03-27,Male,1982-03-07,34,25 - 45,African-American,0,6,0,0,1,,,,08003375MM20A,2008-10-14,,1625,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-27,Risk of Violence,7,Medium,2013-03-27,,,1,0,1101,0,0,0\r\n1668,michael mason,michael,mason,2013-03-26,Male,1979-04-08,37,25 - 45,African-American,2,9,0,0,18,-1,2013-03-25 05:57:23,2013-03-26 07:50:11,13007842MM10A,2013-02-27,,27,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-26,Risk of Violence,9,High,2013-03-26,2013-05-16,2013-05-17,18,0,51,0,0,0\r\n1670,kevin eason,kevin,eason,2013-04-05,Male,1992-09-25,23,Less than 25,African-American,0,6,0,0,1,0,2013-04-05 06:11:22,2013-04-06 05:17:31,13004912CF10A,2013-04-05,,0,F,Unauth Poss ID Card or DL,1,14001386CF10A,(M1),1,2014-01-30,Battery,2014-01-31,2014-03-30,,1,14001386CF10A,(F1),2014-01-30,Aggrav Child Abuse-Causes Harm,Risk of Recidivism,6,Medium,2013-04-05,Risk of Violence,6,Medium,2013-04-05,2014-01-08,2014-01-09,1,1,278,0,1,1\r\n1672,tequisha bradley,tequisha,bradley,2014-03-23,Female,1996-02-27,20,Less than 25,African-American,0,8,0,0,0,0,2014-03-23 12:24:11,2014-03-23 09:07:20,14004082CF10A,2014-03-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-23,Risk of Violence,7,Medium,2014-03-23,2014-03-23,2014-03-23,0,0,740,0,0,0\r\n1673,wesley bates,wesley,bates,2013-11-21,Male,1986-08-27,29,25 - 45,Caucasian,0,7,0,0,7,-67,2013-09-15 11:28:16,2013-10-31 02:34:47,13017571MM10A,2013-09-15,,67,M,Criminal Mischief Damage <$200,1,14001373MM40A,(M2),,2014-02-28,Petit Theft,,,,1,14011195MM10A,(M1),2014-06-13,Assault On Law Enforc Officer,Risk of Recidivism,7,Medium,2013-11-21,Risk of Violence,6,Medium,2013-11-21,2016-03-17,2016-04-08,7,0,99,1,1,1\r\n1674,casey jones,casey,jones,2013-09-30,Male,1991-10-02,24,Less than 25,African-American,0,2,0,0,1,-59,2013-08-02 03:49:19,2013-09-29 12:20:02,13010915CF10A,2013-08-01,,60,F,Robbery W/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-30,Risk of Violence,3,Low,2013-09-30,2013-08-02,2013-09-29,1,0,914,0,0,0\r\n1676,alicia weston,alicia,weston,2014-01-07,Female,1961-12-31,54,Greater than 45,Caucasian,0,3,0,0,1,-48,2013-11-20 08:51:44,2013-12-17 04:04:13,13016119CF10A,2013-11-19,,49,M,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-07,Risk of Violence,2,Low,2014-01-07,2013-11-20,2013-12-17,1,0,815,0,0,0\r\n1678,fulton pryer,fulton,pryer,2013-02-26,Male,1949-12-21,66,Greater than 45,African-American,0,1,0,0,3,-36,2013-01-21 01:43:02,2013-01-21 08:18:41,13000930CF10A,2013-01-20,,37,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-26,Risk of Violence,1,Low,2013-02-26,2013-06-07,2013-06-08,3,0,101,0,0,0\r\n1680,alan cross,alan,cross,2013-03-29,Male,1966-02-13,50,Greater than 45,Caucasian,0,2,0,0,8,-14,2013-03-15 12:34:40,2013-03-27 09:11:27,13003756CF10A,,2013-03-15,14,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-29,Risk of Violence,5,Medium,2013-03-29,2013-03-15,2013-03-27,8,0,1099,0,0,0\r\n1681,gerard gay,gerard,gay,2013-02-05,Male,1965-08-18,50,Greater than 45,African-American,0,2,0,0,7,-1,2013-02-04 07:31:30,2013-02-05 01:26:00,13001728CF10A,2013-02-04,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-05,Risk of Violence,1,Low,2013-02-05,2013-02-04,2013-02-05,7,0,1151,0,0,0\r\n1682,paul sifuentes,paul,sifuentes,2013-04-20,Male,1975-07-19,40,25 - 45,Caucasian,0,1,0,0,3,-1,2013-04-19 04:19:17,2013-04-20 09:50:23,13005624CF10A,2013-04-19,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-20,Risk of Violence,1,Low,2013-04-20,2013-04-19,2013-04-20,3,0,1077,0,0,0\r\n1683,krystal strobridge,krystal,strobridge,2013-01-17,Female,1986-01-12,30,25 - 45,African-American,0,7,0,0,4,213,2013-08-18 06:15:00,2013-08-19 05:48:42,11037540TC10A,2011-07-24,,543,M,Operating W/O Valid License,1,13017910MM10A,(M1),0,2013-08-18,Petit Theft $100- $300,2013-08-18,2013-08-19,,1,15001791CF10A,(F3),2015-01-01,Child Abuse,Risk of Recidivism,7,Medium,2013-01-17,Risk of Violence,6,Medium,2013-01-17,2013-08-18,2013-08-19,4,0,213,1,1,1\r\n1684,ashley deal,ashley,deal,2013-02-07,Female,1992-01-27,24,Less than 25,Caucasian,0,7,0,0,2,-1,2013-02-06 04:14:19,2013-02-08 08:31:47,12017180CF10A,,2013-02-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-07,Risk of Violence,5,Medium,2013-02-07,2013-07-27,2013-09-06,2,1,170,0,0,0\r\n1686,lonnae baker,lonnae,baker,2014-05-09,Female,1992-07-09,23,Less than 25,African-American,0,5,0,0,3,-1,2014-05-08 09:00:55,2014-05-09 01:44:12,14006418CF10A,,2014-05-08,1,F,arrest case no charge,1,14041490TC20A,(M2),55,2014-05-23,Operating W/O Valid License,2014-07-17,2014-07-29,,1,16000543MM10A,(M1),2016-01-16,Battery,Risk of Recidivism,5,Medium,2014-05-09,Risk of Violence,3,Low,2014-05-09,2016-01-17,2016-02-24,3,0,14,1,1,1\r\n1691,demetrius richardson,demetrius,richardson,2013-03-15,Male,1991-03-10,25,25 - 45,Caucasian,0,10,0,2,4,-10,2013-03-05 04:57:56,2013-03-06 08:00:56,13007819MM10A,2013-03-11,,4,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-03-15,Risk of Violence,7,Medium,2013-03-15,2013-08-12,2013-11-01,4,0,150,0,0,0\r\n1692,edy chavarriacalderon,edy,chavarriacalderon,2013-07-26,Male,1969-06-19,46,Greater than 45,Caucasian,0,1,0,0,1,-2,2013-07-24 11:48:45,2013-07-26 10:35:23,13014036MM10A,2013-07-24,,2,M,Viol Pretrial Release Dom Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-26,Risk of Violence,1,Low,2013-07-26,2013-07-24,2013-07-26,1,0,980,0,0,0\r\n1696,karen colato,karen,colato,2013-12-02,Female,1980-11-17,35,25 - 45,Hispanic,0,8,0,0,10,-40,2013-10-23 11:36:27,2013-11-23 05:17:01,13016099CF10A,2013-10-23,,40,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-02,Risk of Violence,5,Medium,2013-12-02,2013-10-23,2013-11-23,10,0,851,0,0,0\r\n1697,orlando kirlew,orlando,kirlew,2013-01-08,Male,1990-09-07,25,25 - 45,Other,0,5,0,0,1,-1,2013-01-07 07:39:01,2013-09-30 08:47:34,13000289CF10A,2013-01-07,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-08,Risk of Violence,3,Low,2013-01-08,2013-01-07,2013-09-30,1,265,1179,0,0,0\r\n1698,vanessa cardellaadams,vanessa,cardellaadams,2013-10-01,Female,1993-06-03,22,Less than 25,Caucasian,0,3,0,0,0,-1,2013-09-30 02:52:30,2013-09-30 02:08:31,13018595MM10A,2013-09-30,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-01,Risk of Violence,4,Low,2013-10-01,2013-09-30,2013-09-30,0,0,913,0,0,0\r\n1699,elizabeth velazquezlugo,elizabeth,velazquezlugo,2013-12-13,Female,1983-05-28,32,25 - 45,Caucasian,0,2,0,0,1,-1,2013-12-12 03:30:30,2013-12-14 04:07:22,13017184CF10A,2013-12-12,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-13,Risk of Violence,1,Low,2013-12-13,2013-12-12,2013-12-14,1,1,840,0,0,0\r\n1705,donte dixon,donte,dixon,2013-08-22,Male,1986-01-30,30,25 - 45,African-American,0,5,0,0,10,92,2013-11-22 07:21:10,2014-03-07 12:51:28,12006838CF10A,,2013-02-05,198,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-22,Risk of Violence,7,Medium,2013-08-22,2013-11-22,2014-03-07,10,0,92,0,0,0\r\n1706,andy wells,andy,wells,2014-06-02,Male,1983-03-08,33,25 - 45,African-American,0,5,0,0,4,-1,2014-06-01 09:28:27,2014-06-03 03:12:10,14008729MM10A,2014-06-01,,1,M,Battery,1,14011982MM10A,(M1),1,2014-08-06,Battery,2014-08-07,2014-08-08,,1,14011982MM10A,(M1),2014-08-06,Battery,Risk of Recidivism,5,Medium,2014-06-02,Risk of Violence,6,Medium,2014-06-02,2014-06-01,2014-06-03,4,1,65,1,1,1\r\n1707,nolasco pena,nolasco,pena,2013-01-03,Male,1991-06-22,24,Less than 25,African-American,0,2,0,0,0,0,2013-01-03 12:11:06,2013-01-03 07:16:21,13000095CF10A,2013-01-02,,1,F,Poss Unlaw Issue Driver Licenc,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-03,Risk of Violence,3,Low,2013-01-03,2013-01-03,2013-01-03,0,0,1184,0,0,0\r\n1710,marc corley,marc,corley,2013-04-01,Male,1978-07-20,37,25 - 45,Caucasian,0,2,0,0,0,-1,2013-03-31 03:19:09,2013-04-01 01:49:26,13006170MM10A,2013-03-30,,2,M,Susp Drivers Lic 1st Offense,1,15004715CF10A,(F3),-1,2015-04-10,Grand Theft in the 3rd Degree,2015-04-09,2015-04-11,,0,,,,,Risk of Recidivism,2,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2015-04-09,2015-04-11,0,0,739,1,0,0\r\n1711,christina garrison,christina,garrison,2014-01-07,Female,1976-01-29,40,25 - 45,Caucasian,0,1,0,0,0,0,2014-01-07 02:07:12,2014-01-07 08:02:01,14000280MM10A,2014-01-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-07,Risk of Violence,1,Low,2014-01-07,2014-01-07,2014-01-07,0,0,815,0,0,0\r\n1714,marsell mccullough,marsell,mccullough,2013-04-30,Male,1989-01-02,27,25 - 45,Caucasian,0,10,0,0,1,506,2014-09-18 12:45:14,2015-05-06 04:54:06,12004080CF10A,2012-03-17,,409,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-30,Risk of Violence,10,High,2013-04-30,2014-09-18,2015-05-06,1,0,506,0,0,0\r\n1715,earl williams,earl,williams,2013-03-25,Male,1972-07-16,43,25 - 45,African-American,0,6,0,0,9,-1,2013-03-24 08:22:40,2013-03-25 07:55:14,13005794CF10A,2013-03-24,,1,F,Felony Battery,1,13005994MM10A,(M1),0,2013-03-27,Viol Prot Injunc Repeat Viol,2013-03-27,2013-06-14,,1,15006683MM10A,(M1),2015-06-21,Battery,Risk of Recidivism,6,Medium,2013-03-25,Risk of Violence,2,Low,2013-03-25,2013-03-27,2013-06-14,9,0,2,1,1,1\r\n1716,chad bouma,chad,bouma,2013-09-16,Male,1989-08-31,26,25 - 45,Caucasian,0,4,0,0,11,-56,2013-07-22 06:01:53,2013-09-16 12:04:00,13011493CF10A,,2013-08-14,33,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-16,Risk of Violence,3,Low,2013-09-16,2013-07-22,2013-09-16,11,0,928,0,0,0\r\n1718,justin floyd,justin,floyd,2013-05-21,Male,1991-01-26,25,25 - 45,African-American,0,9,1,0,11,-1,2013-05-20 05:02:22,2013-05-27 02:35:13,13007190CF10A,2013-05-20,,1,F,Grand Theft in the 3rd Degree,1,13014216CF10A,(F3),0,2013-10-10,Aggravated Assault W/Dead Weap,2013-10-10,2014-06-19,,1,13014216CF10A,(F3),2013-10-10,Aggravated Assault W/Dead Weap,Risk of Recidivism,9,High,2013-05-21,Risk of Violence,8,High,2013-05-21,2013-10-10,2014-06-19,11,6,142,1,1,1\r\n1724,jeffrey basham,jeffrey,basham,2013-09-27,Male,1963-02-27,53,Greater than 45,Caucasian,0,6,0,0,1,-246,2013-01-24 05:33:23,2013-03-16 05:49:00,13001168CF10A,,2013-01-24,246,F,arrest case no charge,1,15008489TC20A,(M2),,2015-01-28,Unlaw LicTag/Sticker Attach,,,,1,15009771MO10A,(MO3),2015-09-04,Battery,Risk of Recidivism,6,Medium,2013-09-27,Risk of Violence,2,Low,2013-09-27,2013-01-24,2013-03-16,1,0,488,1,1,1\r\n1725,yesenia rosas,yesenia,rosas,2013-01-24,Female,1989-03-04,27,25 - 45,Hispanic,0,3,0,0,0,,,,13001074CF10A,2013-01-23,,1,F,Grand Theft in the 3rd Degree,1,15018081TC20A,(M2),,2015-03-12,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-24,Risk of Violence,3,Low,2013-01-24,,,0,0,777,1,0,0\r\n1727,patsy kennedy,patsy,kennedy,2013-02-20,Female,1964-02-12,52,Greater than 45,African-American,0,1,0,0,1,-28,2013-01-23 11:28:00,2013-01-24 05:00:54,13001073CF10A,2013-01-23,,28,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-01-23,2013-01-24,1,0,1136,0,0,0\r\n1730,arthur mcqueen,arthur,mcqueen,2014-03-04,Male,1968-08-25,47,Greater than 45,African-American,0,4,0,0,5,-1,2014-03-03 09:34:24,2014-03-04 09:28:47,14005532MM10A,,2014-03-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-04,Risk of Violence,1,Low,2014-03-04,2014-03-03,2014-03-04,5,0,759,0,0,0\r\n1731,kenneth cash,kenneth,cash,2013-02-08,Male,1966-01-03,50,Greater than 45,Caucasian,0,1,0,0,1,,,,12013597CF10A,2012-09-14,,147,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-08,Risk of Violence,1,Low,2013-02-08,,,1,0,1148,0,0,0\r\n1733,brenda inman,brenda,inman,2013-05-23,Female,1963-06-17,52,Greater than 45,Caucasian,0,7,0,0,6,0,2013-05-23 01:18:11,2013-06-25 08:29:01,08017042MM10A,2008-05-17,,1832,M,Theft/To Deprive,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-23,Risk of Violence,2,Low,2013-05-23,2013-05-23,2013-06-25,6,33,1044,0,0,0\r\n1734,vanessa albino,vanessa,albino,2013-01-02,Female,1974-07-20,41,25 - 45,Caucasian,0,1,0,0,0,,,,12026484MM10A,2012-12-30,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-02,Risk of Violence,1,Low,2013-01-02,,,0,0,1185,0,0,0\r\n1735,jeffrey dolgan,jeffrey,dolgan,2014-02-03,Male,1978-11-13,37,25 - 45,Caucasian,0,1,0,0,0,0,2014-02-03 03:16:01,2014-02-03 08:15:52,14001871MM10A,2014-02-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-03,Risk of Violence,2,Low,2014-02-03,2014-02-03,2014-02-03,0,0,788,0,0,0\r\n1736,laque vallejo,laque,vallejo,2013-08-23,Female,1992-02-09,24,Less than 25,African-American,0,7,0,0,0,-1,2013-08-22 07:13:26,2013-08-23 07:19:05,13011801CF10A,2013-08-22,,1,F,Retail Theft $300 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-23,Risk of Violence,5,Medium,2013-08-23,2013-08-22,2013-08-23,0,0,952,0,0,0\r\n1737,moeshae reed,moeshae,reed,2013-09-10,Female,1981-09-09,34,25 - 45,African-American,0,9,0,0,14,-1,2013-09-09 10:18:23,2013-09-13 08:09:26,13012724CF10A,2013-09-09,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-10,Risk of Violence,8,High,2013-09-10,2014-07-17,2014-08-20,14,3,310,0,0,0\r\n1747,christopher babecki,christopher,babecki,2013-12-11,Male,1984-05-06,31,25 - 45,Caucasian,0,5,0,0,3,-37,2013-11-04 09:31:52,2013-12-06 11:28:52,13020821MM10A,2013-11-04,,37,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-11,Risk of Violence,7,Medium,2013-12-11,2014-05-21,2014-05-28,3,0,161,0,0,0\r\n1749,sheila trovato,sheila,trovato,2013-10-03,Female,1953-10-02,62,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-03 02:12:45,2013-10-03 08:30:26,13018829MM10A,2013-10-02,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-10-03,2013-10-03,0,0,911,0,0,0\r\n1752,cynthia cardoza,cynthia,cardoza,2013-03-20,Female,1956-02-27,60,Greater than 45,Caucasian,0,7,0,0,0,0,2013-03-20 03:59:30,2013-04-02 11:35:13,13004060CF10A,2013-03-20,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-20,Risk of Violence,3,Low,2013-03-20,2013-03-20,2013-04-02,0,13,1108,0,0,0\r\n1754,norberto garcia,norberto,garcia,2014-03-03,Male,1980-11-27,35,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-02 08:33:08,2014-03-03 09:10:46,14003572MM10A,2014-03-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-02,2014-03-03,0,0,760,0,0,0\r\n1755,samyrah carter,samyrah,carter,2013-10-07,Female,1991-05-12,24,Less than 25,African-American,0,7,0,0,0,-1,2013-10-06 11:32:23,2013-10-07 06:38:36,13014025CF10A,2013-10-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-07,Risk of Violence,5,Medium,2013-10-07,2013-10-06,2013-10-07,0,0,907,0,0,0\r\n1756,catherine capozzi,catherine,capozzi,2014-01-09,Female,1959-08-03,56,Greater than 45,Caucasian,0,2,0,0,1,-60,2013-11-10 03:07:19,2013-11-14 04:25:14,13015656CF10A,,2013-11-10,60,F,arrest case no charge,1,14012699MM10A,(M1),1,2014-08-23,Battery,2014-08-24,2014-09-04,,1,14012699MM10A,(M1),2014-08-23,Battery,Risk of Recidivism,2,Low,2014-01-09,Risk of Violence,1,Low,2014-01-09,2014-08-24,2014-09-04,1,0,226,1,1,1\r\n1757,christopher crespo,christopher,crespo,2013-04-26,Male,1985-09-23,30,25 - 45,Caucasian,0,1,0,0,0,0,2013-04-26 04:51:20,2013-04-26 01:38:42,13008070MM10A,2013-04-26,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-26,Risk of Violence,2,Low,2013-04-26,2013-04-26,2013-04-26,0,0,1071,0,0,0\r\n1759,derrick key,derrick,key,2013-01-15,Male,1974-08-28,41,25 - 45,Caucasian,0,9,0,0,17,171,2013-07-05 04:18:32,2013-08-21 10:32:00,12014461MM10A,2012-07-13,,186,M,Driving License Suspended,1,14003946CF10A,(F3),1,2014-03-20,Robbery Sudd Snatch No Weapon,2014-03-21,2014-10-01,,1,14003946CF10A,(F3),2014-03-20,Robbery Sudd Snatch No Weapon,Risk of Recidivism,9,High,2013-01-15,Risk of Violence,6,Medium,2013-01-15,2013-07-05,2013-08-21,17,0,171,0,1,1\r\n1764,rachel chamberlain,rachel,chamberlain,2013-12-18,Female,1987-05-31,28,25 - 45,Caucasian,0,4,0,0,0,-1,2013-12-17 03:11:35,2013-12-17 08:52:31,13023371MO10A,2013-12-17,,1,M,Intoxicated/Safety Of Another,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-18,Risk of Violence,3,Low,2013-12-18,2013-12-17,2013-12-17,0,0,835,0,0,0\r\n1765,tramail kelly,tramail,kelly,2013-09-18,Male,1993-03-02,23,Less than 25,African-American,0,10,1,0,1,689,2015-08-08 12:21:20,2015-08-12 08:08:19,11026244MO10A,2011-11-16,,672,M,Gambling/Gamb Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-18,Risk of Violence,8,High,2013-09-18,2015-08-08,2015-08-12,1,0,689,0,0,0\r\n1768,paulette clarke,paulette,clarke,2013-10-02,Male,1959-06-24,56,Greater than 45,African-American,0,1,0,0,0,-1,2013-10-01 01:21:21,2013-10-02 12:35:21,13013701CF10A,2013-09-30,,2,F,Neglect/Abuse Elderly Person,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,2013-10-01,2013-10-02,0,0,912,0,0,0\r\n1772,jose morales,jose,morales,2013-04-12,Male,1978-05-01,37,25 - 45,Hispanic,0,2,1,0,4,,,,12015794CF10A,,2012-10-25,169,F,arrest case no charge,1,15014332CF10A,(F1),,2015-10-12,Conspire Traffic Illegal Drugs,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-12,Risk of Violence,2,Low,2013-04-12,,,4,0,913,1,0,0\r\n1774,adam rosario,adam,rosario,2014-03-29,Male,1993-03-01,23,Less than 25,Caucasian,0,2,1,0,1,-1,2014-03-28 11:35:16,2014-03-29 09:58:14,14005385MM10A,2014-03-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-29,Risk of Violence,4,Low,2014-03-29,2014-03-28,2014-03-29,1,0,734,0,0,0\r\n1777,tamera bankston,tamera,bankston,2013-01-23,Female,1994-07-04,21,Less than 25,African-American,1,7,2,2,3,539,2014-07-16 04:03:46,2014-09-13 05:41:15,12015061CF10A,2012-04-13,,285,F,Grand Theft In The 3Rd Degree,1,15009884MM10A,(M1),1,2015-09-18,Battery,2015-09-19,2015-10-14,,1,15009884MM10A,(M1),2015-09-18,Battery,Risk of Recidivism,7,Medium,2013-01-23,Risk of Violence,8,High,2013-01-23,2014-07-16,2014-09-13,3,0,539,0,0,0\r\n1780,portia cooper,portia,cooper,2013-09-06,Female,1981-01-16,35,25 - 45,African-American,0,5,0,0,2,-1,2013-09-05 05:55:01,2013-09-19 09:03:27,08010781CF10A,,2013-09-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-06,Risk of Violence,2,Low,2013-09-06,2013-09-05,2013-09-19,2,13,938,0,0,0\r\n1781,brandon burwell,brandon,burwell,2013-03-30,Male,1982-08-20,33,25 - 45,Caucasian,0,3,0,0,3,0,2013-03-30 03:59:43,2013-03-30 08:08:08,13013468TC10A,2013-03-30,,0,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-30,Risk of Violence,3,Low,2013-03-30,2013-03-30,2013-03-30,3,0,1098,0,0,0\r\n1783,bryan santana,bryan,santana,2013-05-12,Male,1994-06-25,21,Less than 25,Hispanic,0,4,0,0,0,-1,2013-05-11 03:01:10,2013-05-15 07:34:44,13006789CF10A,2013-05-11,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-12,Risk of Violence,6,Medium,2013-05-12,2015-09-02,2015-10-10,0,3,843,0,0,0\r\n1786,jeremiah wilson,jeremiah,wilson,2013-02-18,Male,1974-06-17,41,25 - 45,African-American,2,9,1,0,9,-1,2013-02-17 06:51:32,2013-02-18 06:40:08,13003422MO10A,2013-02-17,,1,M,Poss Of Controlled Substance,1,15008152MM10A,(M1),1,2015-08-01,Resist/Obstruct W/O Violence,2015-08-02,2015-08-02,,0,,,,,Risk of Recidivism,9,High,2013-02-18,Risk of Violence,5,Medium,2013-02-18,2015-09-27,2015-09-28,9,0,894,1,0,0\r\n1787,keenen stinson,keenen,stinson,2013-10-14,Male,1992-03-13,24,Less than 25,African-American,0,5,0,0,0,-1,2013-10-13 05:01:13,2013-10-17 05:14:26,13014326CF10A,2013-10-13,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-14,Risk of Violence,7,Medium,2013-10-14,2013-10-13,2013-10-17,0,3,900,0,0,0\r\n1792,nelson osceola,nelson,osceola,2013-01-19,Male,1990-10-02,25,25 - 45,Native American,0,9,0,0,7,0,2013-01-19 12:25:22,2013-01-20 07:58:22,13000903CF10A,2013-01-19,,0,F,Burglary Conveyance Assault/Bat,1,15004061CF10A,(F3),,2015-03-11,Neglect Child / No Bodily Harm,,,,1,15007467CF10A,(F2),2015-03-19,Neglect Child / Bodily Harm,Risk of Recidivism,9,High,2013-01-19,Risk of Violence,6,Medium,2013-01-19,2015-02-22,2015-02-28,7,1,764,0,0,0\r\n1794,darron wilson,darron,wilson,2013-04-13,Male,1966-09-18,49,Greater than 45,African-American,0,2,0,0,3,0,2013-04-13 03:06:25,2013-04-14 04:33:37,13005332CF10A,2013-04-13,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-13,Risk of Violence,1,Low,2013-04-13,2013-04-13,2013-04-14,3,1,1084,0,0,0\r\n1795,kassandra cruz,kassandra,cruz,2013-04-24,Female,1993-08-06,22,Less than 25,Hispanic,0,6,0,0,0,0,2013-04-24 03:08:06,2013-04-24 08:19:38,13005902CF10A,2013-04-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-24,Risk of Violence,6,Medium,2013-04-24,2013-04-24,2013-04-24,0,0,1073,0,0,0\r\n1797,ciara mcgriff,ciara,mcgriff,2014-04-02,Female,1988-08-17,27,25 - 45,African-American,0,9,0,0,3,-1,2014-04-01 07:29:54,2014-04-04 09:24:50,14004550CF10A,2014-04-01,,1,F,Grand Theft (Motor Vehicle),1,15006946MM10A,(M1),0,2015-06-28,Misuse Of Wireless 911 System,2015-06-28,2015-07-21,,1,15006946MM10A,(M1),2015-06-28,Battery,Risk of Recidivism,9,High,2014-04-02,Risk of Violence,6,Medium,2014-04-02,2015-06-28,2015-07-21,3,2,452,1,1,1\r\n1798,robert boyd,robert,boyd,2013-10-21,Male,1983-08-01,32,25 - 45,African-American,0,7,0,0,4,302,2014-08-19 12:08:06,2015-02-26 05:29:25,11020553CF10A,,2012-02-20,609,F,arrest case no charge,1,14012503MM10A,(M1),0,2014-08-19,Resist/Obstruct W/O Violence,2014-08-19,2015-02-26,,1,15007322CF10A,(F3),2015-04-01,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2013-10-21,Risk of Violence,6,Medium,2013-10-21,2014-08-19,2015-02-26,4,0,302,1,1,1\r\n1800,darryl mckinney,darryl,mckinney,2013-12-26,Male,1965-06-22,50,Greater than 45,African-American,0,5,0,0,4,-3,2013-12-23 11:01:49,2013-12-25 12:33:55,13023697MM10A,2013-12-23,,3,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-26,Risk of Violence,2,Low,2013-12-26,2013-12-23,2013-12-25,4,0,827,0,0,0\r\n1801,sadieanne bailey,sadieanne,bailey,2014-01-28,Female,1992-10-03,23,Less than 25,African-American,0,3,0,0,0,0,2014-01-28 02:07:15,2014-01-28 08:01:14,14001560MM10A,2014-01-28,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-28,Risk of Violence,3,Low,2014-01-28,2014-01-28,2014-01-28,0,0,794,0,0,0\r\n1803,jasmine milan,jasmine,milan,2014-01-05,Male,1981-06-24,34,25 - 45,Caucasian,0,4,0,0,0,-1,2014-01-04 11:00:17,2014-01-05 08:05:12,14000188MM10A,2014-01-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-05,Risk of Violence,2,Low,2014-01-05,2014-01-04,2014-01-05,0,0,817,0,0,0\r\n1804,steve chin,steve,chin,2013-05-29,Male,1980-10-19,35,25 - 45,African-American,0,4,0,0,1,,,,13010257MM10A,2013-05-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-29,Risk of Violence,2,Low,2013-05-29,,,1,0,1038,0,0,0\r\n1809,diego rocha,diego,rocha,2013-08-13,Male,1990-09-13,25,25 - 45,Other,0,4,0,0,1,-1,2013-08-12 08:23:20,2013-10-09 09:34:57,13015229MM10A,2013-08-12,,1,M,Battery,1,14004438MM10A,(M2),,2014-01-12,Petit Theft,,,,1,14013733CF10A,(F2),2014-10-11,Robbery / No Weapon,Risk of Recidivism,4,Low,2013-08-13,Risk of Violence,6,Medium,2013-08-13,2013-08-12,2013-10-09,1,57,152,1,1,1\r\n1810,ulises gonzalezsanchez,ulises,gonzalezsanchez,2013-11-03,Male,1985-07-11,30,25 - 45,Hispanic,0,1,0,0,0,-1,2013-11-02 07:39:34,2013-11-03 01:25:34,13020683MM10A,2013-11-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-03,Risk of Violence,1,Low,2013-11-03,2013-11-02,2013-11-03,0,0,880,0,0,0\r\n1815,derek billie,derek,billie,2013-02-10,Male,1974-02-12,42,25 - 45,Native American,0,2,0,0,0,-1,2013-02-09 02:53:17,2013-02-12 05:49:29,13002924MM10A,2013-02-09,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-10,Risk of Violence,1,Low,2013-02-10,2013-02-09,2013-02-12,0,2,1146,0,0,0\r\n1819,beville quintal,beville,quintal,2013-10-02,Male,1991-08-19,24,Less than 25,Other,0,6,0,0,5,-1,2013-10-01 10:04:46,2013-10-02 11:33:20,13013765CF10A,2013-10-01,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-02,Risk of Violence,5,Medium,2013-10-02,2013-10-01,2013-10-02,5,0,912,0,0,0\r\n1820,bobby sturdivant,bobby,sturdivant,2013-10-30,Male,1964-04-11,52,Greater than 45,African-American,0,1,0,0,3,-1,2013-10-29 08:09:10,2013-10-30 02:04:02,13015109CF10A,,2013-10-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-30,Risk of Violence,2,Low,2013-10-30,2014-12-15,2014-12-15,3,0,411,0,0,0\r\n1821,daphne nunez,daphne,nunez,2014-01-13,Female,1989-07-01,26,25 - 45,Caucasian,0,3,0,0,3,-1,2014-01-12 07:47:15,2014-01-13 02:00:29,14000574MM10A,2014-01-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-13,Risk of Violence,3,Low,2014-01-13,2014-01-12,2014-01-13,3,0,809,0,0,0\r\n1823,jesus zacarias,jesus,zacarias,2013-03-31,Male,1977-11-22,38,25 - 45,Hispanic,0,1,0,0,0,0,2013-03-31 03:07:51,2013-04-01 06:36:12,13004624CF10A,2013-03-31,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-31,Risk of Violence,1,Low,2013-03-31,2013-03-31,2013-04-01,0,1,1097,0,0,0\r\n1826,christopher kirwan,christopher,kirwan,2013-04-05,Male,1969-04-04,47,Greater than 45,Caucasian,0,1,0,0,2,,,,13001190TC10A,2012-12-26,,100,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-05,Risk of Violence,1,Low,2013-04-05,,,2,0,1092,0,0,0\r\n1827,alexander blackshure,alexander,blackshure,2013-08-29,Male,1991-03-23,25,25 - 45,African-American,0,7,0,0,5,77,2013-11-14 09:36:58,2014-01-10 10:22:00,13012145CF10A,,2013-08-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-29,Risk of Violence,5,Medium,2013-08-29,2013-11-14,2014-01-10,5,0,77,0,0,0\r\n1829,jorge valenzuela,jorge,valenzuela,2013-03-14,Female,1985-10-22,30,25 - 45,Caucasian,0,5,0,0,0,0,2013-03-14 02:57:45,2013-03-15 06:01:08,13003758CF10A,2013-03-14,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-14,Risk of Violence,2,Low,2013-03-14,2013-03-14,2013-03-15,0,1,1114,0,0,0\r\n1830,brion altidor,brion,altidor,2014-09-29,Male,1995-08-30,20,Less than 25,African-American,0,10,0,0,0,-1,2014-09-28 05:46:42,2014-10-02 08:08:29,14014308MM10A,2014-09-28,,1,M,Battery,1,14014114CF10A,(M1),0,2014-10-19,Resist/Obstruct W/O Violence,2014-10-19,2014-11-03,,1,14014114CF10A,(F3),2014-10-19,Aggravated Assault W/Dead Weap,Risk of Recidivism,10,High,2014-09-29,Risk of Violence,10,High,2014-09-29,2014-10-19,2014-11-03,0,3,20,1,1,1\r\n1832,ebony taylor,ebony,taylor,2013-01-09,Female,1987-01-12,29,25 - 45,African-American,0,10,0,0,2,64,2013-03-14 01:32:51,2013-03-16 09:48:32,12017819CF10A,2012-12-06,,34,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-09,Risk of Violence,10,High,2013-01-09,2013-03-14,2013-03-16,2,0,64,0,0,0\r\n1833,marion rickard,marion,rickard,2013-03-25,Male,1992-04-18,24,Less than 25,Asian,0,3,0,0,0,-1,2013-03-24 09:12:24,2013-03-25 07:15:23,13004274CF10A,2013-03-24,,1,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-25,Risk of Violence,4,Low,2013-03-25,2013-03-24,2013-03-25,0,0,1103,0,0,0\r\n1834,adrian lesniewski,adrian,lesniewski,2013-02-21,Male,1984-12-04,31,25 - 45,Caucasian,0,4,0,0,0,-1,2013-02-20 08:50:03,2013-05-09 06:18:55,13002580CF10A,2013-02-20,,1,F,Del of JWH-250 2-Methox 1-Pentyl,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-21,Risk of Violence,5,Medium,2013-02-21,2013-02-20,2013-05-09,0,77,1135,0,0,0\r\n1840,elisa lamotta,elisa,lamotta,2013-09-23,Female,1961-10-06,54,Greater than 45,Caucasian,0,2,0,0,12,-175,2013-04-01 09:07:35,2013-09-19 09:03:22,13004659CF10A,2013-04-01,,175,F,Purchasing Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-04-01,2013-09-19,12,0,921,0,0,0\r\n1841,alexandra spinney,alexandra,spinney,2013-02-21,Female,1979-02-12,37,25 - 45,Caucasian,0,3,0,0,1,-25,2013-01-27 04:29:27,2013-01-28 08:30:45,13001917MM10A,2013-01-27,,25,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-21,Risk of Violence,2,Low,2013-02-21,2013-01-27,2013-01-28,1,0,1135,0,0,0\r\n1845,diana innocent,diana,innocent,2013-02-27,Female,1982-04-29,33,25 - 45,African-American,0,2,0,0,1,-2,2013-02-25 10:43:20,2013-02-26 01:28:27,13002865CF10A,2013-02-25,,2,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-27,Risk of Violence,2,Low,2013-02-27,2013-02-25,2013-02-26,1,0,1129,0,0,0\r\n1846,javaris mosley,javaris,mosley,2014-03-27,Male,1995-08-23,20,Less than 25,African-American,0,9,0,0,1,-83,2014-01-03 02:01:50,2014-03-27 10:13:13,14000137CF10A,,2014-02-05,50,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-27,Risk of Violence,8,High,2014-03-27,2014-01-03,2014-03-27,1,0,736,0,0,0\r\n1847,mark ramsey,mark,ramsey,2013-03-25,Male,1974-02-25,42,25 - 45,African-American,0,1,0,0,0,0,2013-03-25 12:03:45,2013-03-25 09:43:32,13005748MM10A,2013-03-24,,1,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-06-13,2013-07-12,0,0,80,0,0,0\r\n1850,michael gibbons,michael,gibbons,2013-02-14,Male,1983-09-06,32,25 - 45,African-American,0,6,0,0,4,-1,2013-02-13 05:34:20,2014-04-03 06:22:15,13002338CF10A,,2013-02-14,0,F,arrest case no charge,1,15003548MM10A,(M1),308,2015-03-06,Battery,2016-01-08,2016-01-09,,1,15003548MM10A,(M1),2015-03-06,Battery,Risk of Recidivism,6,Medium,2013-02-14,Risk of Violence,7,Medium,2013-02-14,2014-04-03,2014-12-18,4,672,750,1,1,1\r\n1852,james harriott,james,harriott,2014-08-17,Male,1987-07-05,28,25 - 45,African-American,0,7,0,0,7,-1,2014-08-16 05:41:44,2014-08-18 02:54:31,14011222CF10A,2014-08-16,,1,F,Aggravated Assault W/Dead Weap,1,14002778MM20A,(M2),,2014-09-04,Poss Of RX Without RX,,,,1,15016452CF10A,(F2),2015-12-25,Aggravated Battery,Risk of Recidivism,7,Medium,2014-08-17,Risk of Violence,6,Medium,2014-08-17,2014-08-16,2014-08-18,7,1,18,1,1,1\r\n1853,kenneth hergert,kenneth,hergert,2013-02-14,Male,1977-07-23,38,25 - 45,Caucasian,0,4,0,0,0,0,2013-02-14 05:26:52,2013-07-22 06:55:53,13002326CF10A,2013-02-14,,0,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-14,Risk of Violence,2,Low,2013-02-14,2013-02-14,2013-07-22,0,158,1142,0,0,0\r\n1854,varian powell,varian,powell,2013-02-08,Male,1977-08-24,38,25 - 45,African-American,0,4,0,0,3,-1,2013-02-07 08:57:01,2013-02-08 09:37:20,13001917CF10A,2013-02-07,,1,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-08,Risk of Violence,1,Low,2013-02-08,2013-02-07,2013-02-08,3,0,1148,0,0,0\r\n1856,kole roundtree,kole,roundtree,2014-03-05,Male,1994-12-24,21,Less than 25,Caucasian,0,4,0,0,1,-301,2013-05-08 04:53:15,2013-05-09 04:31:29,14003062CF10A,2014-03-04,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-05,Risk of Violence,5,Medium,2014-03-05,2013-05-08,2013-05-09,1,0,758,0,0,0\r\n1859,nicole moncur,nicole,moncur,2013-02-24,Female,1981-09-15,34,25 - 45,African-American,0,3,0,0,0,-1,2013-02-23 03:07:35,2013-02-24 06:13:24,13003783MM10A,2013-02-23,,1,M,Battery,1,15001319MM20A,(M1),,2015-05-08,Possess Cannabis/20 Grams Or Less,,,,1,15010338CF10A,(F3),2015-08-10,Battery on Law Enforc Officer,Risk of Recidivism,3,Low,2013-02-24,Risk of Violence,2,Low,2013-02-24,2015-08-11,2015-10-22,0,0,803,1,0,0\r\n1864,evens gustave,evens,gustave,2013-02-22,Male,1977-08-13,38,25 - 45,African-American,0,2,0,0,1,-1,2013-02-21 07:43:08,2013-03-01 08:19:03,12025265MM10A,,2013-02-21,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-22,Risk of Violence,2,Low,2013-02-22,2013-02-21,2013-03-01,1,7,1134,0,0,0\r\n1865,mario brown,mario,brown,2013-11-20,Male,1979-11-24,36,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-19 06:28:12,2013-12-14 04:30:00,13016070CF10A,2013-11-19,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-20,Risk of Violence,1,Low,2013-11-20,2013-11-19,2013-12-14,0,24,863,0,0,0\r\n1866,harold luzon,harold,luzon,2014-01-03,Male,1984-02-11,32,25 - 45,Hispanic,0,2,0,0,0,-6,2013-12-28 04:21:31,2014-01-03 05:33:42,13023903MM10A,2013-12-28,,6,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-03,Risk of Violence,2,Low,2014-01-03,2013-12-28,2014-01-03,0,0,819,0,0,0\r\n1868,kamal smith,kamal,smith,2013-05-22,Male,1992-05-02,23,Less than 25,African-American,0,9,0,0,0,-1,2013-05-21 10:03:18,2013-05-22 08:06:02,13009802MM10A,2013-05-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-22,Risk of Violence,8,High,2013-05-22,2013-05-21,2013-05-22,0,0,1045,0,0,0\r\n1869,todd hayes,todd,hayes,2013-09-21,Male,1968-07-05,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-09-20 11:27:11,2013-09-21 08:40:49,13017986MM10A,2013-09-20,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-21,Risk of Violence,1,Low,2013-09-21,2013-09-20,2013-09-21,0,0,923,0,0,0\r\n1870,nathaniel heron,nathaniel,heron,2013-10-28,Male,1995-08-23,20,Less than 25,African-American,0,3,0,0,0,0,2013-10-28 04:46:03,2013-10-28 01:37:14,13015047CF10A,2013-10-28,,0,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-28,Risk of Violence,6,Medium,2013-10-28,2013-10-28,2013-10-28,0,0,886,0,0,0\r\n1872,jarrell weaver,jarrell,weaver,2013-11-01,Male,1980-12-28,35,25 - 45,African-American,0,1,0,0,0,-1,2013-10-31 02:23:41,2013-11-01 01:40:24,13020575MM10A,2013-10-30,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-01,Risk of Violence,1,Low,2013-11-01,2013-10-31,2013-11-01,0,0,882,0,0,0\r\n1873,virgini ocio,virgini,ocio,2013-10-10,Female,1986-03-12,30,25 - 45,Caucasian,0,3,0,0,1,-82,2013-07-20 10:18:05,2013-08-31 06:13:40,13010192CF10A,2013-07-20,,82,F,Possession Of Lorazepam,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-10,Risk of Violence,2,Low,2013-10-10,2013-07-20,2013-08-31,1,0,904,0,0,0\r\n1874,nathalie joseph,nathalie,joseph,2014-02-13,Female,1988-01-24,28,25 - 45,Caucasian,0,4,0,0,1,-1,2014-02-12 02:08:55,2014-02-13 08:48:41,14002471MM10A,2014-02-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-13,Risk of Violence,4,Low,2014-02-13,2014-02-12,2014-02-13,1,0,778,0,0,0\r\n1876,julie gallardo,julie,gallardo,2013-08-06,Female,1970-12-30,45,Greater than 45,Caucasian,0,3,0,0,3,336,2014-07-08 01:11:12,2014-08-21 11:06:28,12007678MM10A,2012-04-13,,480,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-06,Risk of Violence,2,Low,2013-08-06,2014-07-08,2014-08-21,3,0,336,0,0,0\r\n1879,roosevelt roberts,roosevelt,roberts,2013-01-15,Male,1994-02-11,22,Less than 25,African-American,0,9,0,0,0,-1,2013-01-14 12:35:16,2013-01-15 06:41:16,13000645CF10A,2013-01-14,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-15,Risk of Violence,9,High,2013-01-15,2013-01-14,2013-01-15,0,0,1172,0,0,0\r\n1880,renee sopon,renee,sopon,2013-11-04,Male,1995-05-23,20,Less than 25,Other,0,10,8,1,8,-1,2013-11-03 07:03:06,2013-11-04 08:10:42,13015300CF10A,2013-11-03,,1,F,Driving While License Revoked,1,13015756CF10A,(F3),0,2013-11-13,Driving While License Revoked,2013-11-13,2013-11-13,,1,14001059CF10A,(F2),2014-01-24,Agg Fleeing/Eluding High Speed,Risk of Recidivism,10,High,2013-11-04,Risk of Violence,8,High,2013-11-04,2013-11-13,2013-11-13,8,0,9,0,1,1\r\n1881,lydia mosssolomon,lydia,mosssolomon,2013-08-30,Female,1974-04-05,42,25 - 45,African-American,0,1,0,0,0,31,2013-09-30 06:56:01,2013-10-02 09:53:16,13016661MM10A,2013-08-30,,0,M,Battery,1,13020336MM10A,(M1),0,2013-09-30,Battery,2013-09-30,2013-10-02,,1,13013716CF10A,(F2),2013-09-30,Agg Battery Grt/Bod/Harm,Risk of Recidivism,1,Low,2013-08-30,Risk of Violence,1,Low,2013-08-30,2013-09-30,2013-10-02,0,0,31,1,1,1\r\n1882,zachary santiago,zachary,santiago,2013-05-08,Male,1991-07-08,24,Less than 25,African-American,1,9,1,0,8,-54,2013-03-15 10:50:11,2013-05-01 10:54:09,09007486CF10A,,2013-03-15,54,F,arrest case no charge,1,13016276CF10A,(F3),0,2013-11-22,Possession Of Lorazepam,2013-11-22,2013-12-04,,1,14003873CF10A,(F3),2014-03-19,Agg Fleeing and Eluding,Risk of Recidivism,9,High,2013-05-08,Risk of Violence,10,High,2013-05-08,2013-11-22,2013-12-04,8,0,198,1,1,1\r\n1883,rolfi hernandez,rolfi,hernandez,2014-02-10,Male,1975-06-27,40,25 - 45,Hispanic,0,1,0,0,0,0,2014-02-10 01:41:01,2014-02-10 08:22:50,14002280MM10A,2014-02-10,,0,M,Solic to Commit Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-10,Risk of Violence,1,Low,2014-02-10,2014-02-10,2014-02-10,0,0,781,0,0,0\r\n1884,michael rivera,michael,rivera,2013-12-29,Male,1988-11-03,27,25 - 45,Other,0,4,0,0,1,-1,2013-12-28 10:43:59,2014-01-03 08:51:14,13017908CF10A,2013-12-28,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-29,Risk of Violence,4,Low,2013-12-29,2013-12-28,2014-01-03,1,5,824,0,0,0\r\n1886,timothy thompson,timothy,thompson,2013-05-03,Male,1955-11-07,60,Greater than 45,African-American,0,3,0,0,12,-1,2013-05-02 10:16:05,2013-05-03 12:40:40,13006304CF10A,2013-05-02,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-03,Risk of Violence,1,Low,2013-05-03,2014-06-16,2014-06-18,12,0,409,0,0,0\r\n1888,jacoby kirksey,jacoby,kirksey,2013-01-26,Male,1983-02-27,33,25 - 45,African-American,0,5,0,0,6,-1,2013-01-25 10:07:00,2013-01-26 07:41:44,13001831MM10A,2013-01-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-26,Risk of Violence,4,Low,2013-01-26,2013-03-08,2013-03-26,6,0,41,0,0,0\r\n1893,anthony petersen,anthony,petersen,2013-03-10,Male,1992-02-22,24,Less than 25,Caucasian,0,8,0,0,4,-1,2013-03-09 08:48:08,2013-03-10 07:11:28,13004746MM10A,2013-03-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-10,Risk of Violence,4,Low,2013-03-10,2013-08-16,2013-08-21,4,0,159,0,0,0\r\n1895,marques hawks,marques,hawks,2013-02-07,Male,1987-03-21,29,25 - 45,African-American,1,10,1,1,4,0,2013-02-07 02:10:43,2014-01-28 06:29:27,13001905CF10A,2013-02-06,,1,F,Carjacking with a Firearm,1,13002946CF10A,(F2),,2013-02-25,Poss Wep Conv Felon,,,,1,15014881CF10A,(F2),2015-11-16,Attempted Robbery Firearm,Risk of Recidivism,10,High,2013-02-07,Risk of Violence,9,High,2013-02-07,2013-02-07,2014-01-28,4,0,18,1,1,1\r\n1899,kelby contreras,kelby,contreras,2013-03-07,Male,1983-08-03,32,25 - 45,Hispanic,0,1,0,0,0,-1,2013-03-06 08:29:29,2013-03-07 08:09:09,13004553MM10A,2013-03-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-07,Risk of Violence,1,Low,2013-03-07,2013-03-06,2013-03-07,0,0,1121,0,0,0\r\n1900,william king,william,king,2013-03-06,Male,1985-08-29,30,25 - 45,Caucasian,0,5,0,0,10,123,2013-07-07 12:51:23,2013-10-24 09:20:44,12002830CF10A,,2012-02-22,378,F,arrest case no charge,1,13012890MM10A,(M1),0,2013-07-07,Battery,2013-07-07,2013-10-24,,1,13012890MM10A,(M1),2013-07-07,Battery,Risk of Recidivism,5,Medium,2013-03-06,Risk of Violence,2,Low,2013-03-06,2013-07-07,2013-10-24,10,0,123,1,1,1\r\n1904,kishu ramsay,kishu,ramsay,2013-01-16,Male,1984-01-29,32,25 - 45,African-American,0,4,0,0,1,0,2013-01-16 12:41:51,2013-01-16 06:44:28,13000729CF10A,2013-01-16,,0,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-16,Risk of Violence,3,Low,2013-01-16,2013-01-16,2013-01-16,1,0,1171,0,0,0\r\n1905,crystal fallon,crystal,fallon,2013-01-29,Male,1988-06-10,27,25 - 45,Other,0,1,0,0,0,-2,2013-01-27 06:21:47,2013-01-29 10:59:25,13001334CF10A,2013-01-27,,2,F,Robbery / Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-29,Risk of Violence,2,Low,2013-01-29,2013-03-26,2013-04-05,0,0,56,0,0,0\r\n1906,gregory stinson,gregory,stinson,2013-03-27,Male,1985-10-30,30,25 - 45,Caucasian,0,4,0,0,3,-1,2013-03-26 09:34:36,2013-03-27 01:22:00,13005927MM10A,2013-03-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-27,Risk of Violence,3,Low,2013-03-27,2013-03-26,2013-03-27,3,0,1101,0,0,0\r\n1909,carl feest,carl,feest,2013-10-05,Male,1959-01-06,57,Greater than 45,Caucasian,0,2,0,0,0,0,2013-10-05 03:02:31,2013-10-06 08:39:57,13018963MM10A,2013-10-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-05,Risk of Violence,2,Low,2013-10-05,2013-10-05,2013-10-06,0,1,909,0,0,0\r\n1913,malcom mckenzie,malcom,mckenzie,2014-03-25,Male,1995-01-26,21,Less than 25,African-American,0,4,0,0,0,-1,2014-03-24 07:15:06,2014-03-25 01:35:56,14004184CF10A,2014-03-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-25,Risk of Violence,6,Medium,2014-03-25,2014-03-24,2014-03-25,0,0,738,0,0,0\r\n1914,roshod graham,roshod,graham,2013-11-27,Male,1993-12-28,22,Less than 25,African-American,0,5,0,0,0,-1,2013-11-26 06:06:07,2013-12-31 07:52:49,13016491CF10A,2013-11-26,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-27,Risk of Violence,7,Medium,2013-11-27,2015-06-02,2015-07-03,0,34,552,0,0,0\r\n1916,darren lowder,darren,lowder,2013-06-17,Female,1961-08-26,54,Greater than 45,Caucasian,0,2,0,0,1,-95,2013-03-14 04:18:49,2013-05-29 04:45:59,13003730CF10A,2013-03-14,,95,F,Battery Emergency Care Provide,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-17,Risk of Violence,2,Low,2013-06-17,2013-03-14,2013-05-29,1,0,1019,0,0,0\r\n1917,william maloy,william,maloy,2013-10-21,Male,1957-08-03,58,Greater than 45,Caucasian,0,3,0,0,2,-9,2013-10-12 08:52:39,2013-10-17 04:51:37,13014297CF10A,2013-10-12,,9,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-21,Risk of Violence,2,Low,2013-10-21,2013-10-12,2013-10-17,2,0,893,0,0,0\r\n1924,kadarell collins,kadarell,collins,2014-07-09,Male,1996-01-01,20,Less than 25,African-American,0,10,0,0,0,-1,2014-07-08 02:25:20,2015-02-02 06:30:23,14009374CF10A,2014-07-08,,1,F,Burglary Unoccupied Dwelling,1,15008251CF10A,(F3),0,2015-06-26,False Imprisonment,2015-06-26,2015-11-10,,1,15008251CF10A,(M1),2015-06-26,Battery,Risk of Recidivism,10,High,2014-07-09,Risk of Violence,10,High,2014-07-09,2015-06-26,2015-11-10,0,208,352,1,1,1\r\n1925,roylon coppin,roylon,coppin,2013-01-06,Male,1975-06-21,40,25 - 45,Other,0,1,0,0,0,-1,2013-01-05 08:58:58,2013-01-06 01:15:19,13000258MM10A,2013-01-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-06,Risk of Violence,1,Low,2013-01-06,2013-01-05,2013-01-06,0,0,1181,0,0,0\r\n1926,brenda izzo,brenda,izzo,2013-07-02,Female,1970-06-30,45,Greater than 45,Caucasian,0,2,0,0,5,-1,2013-07-01 03:16:14,2013-07-01 07:50:03,13012569MM10A,2013-06-30,,2,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-02,Risk of Violence,2,Low,2013-07-02,2013-07-01,2013-07-01,5,0,1004,0,0,0\r\n1928,ivan dejesus,ivan,dejesus,2013-09-20,Male,1993-04-08,23,Less than 25,Hispanic,0,9,0,0,4,-27,2013-08-24 04:52:55,2013-09-20 11:57:40,13011932CF10A,2013-08-24,,27,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-20,Risk of Violence,8,High,2013-09-20,2014-04-22,2014-04-29,4,0,214,0,0,0\r\n1930,hope avery,hope,avery,2013-04-17,Female,1962-06-17,53,Greater than 45,Caucasian,0,3,0,0,1,-1,2013-04-16 09:32:04,2013-04-17 09:11:10,13007394MM10A,2013-04-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,1,Low,2013-04-17,2013-04-16,2013-04-17,1,0,1080,0,0,0\r\n1931,lloyd kapell,lloyd,kapell,2014-02-07,Male,1971-10-01,44,25 - 45,Caucasian,0,1,0,0,0,-1,2014-02-06 09:12:43,2014-02-08 09:33:59,14001700CF10A,2014-02-06,,1,M,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-07,Risk of Violence,1,Low,2014-02-07,2014-02-06,2014-02-08,0,1,784,0,0,0\r\n1938,heidi mione,heidi,mione,2013-04-09,Female,1972-01-28,44,25 - 45,Caucasian,0,5,0,0,1,-6,2013-04-03 11:25:15,2013-04-08 08:29:22,13006437MM10A,2013-04-03,,6,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-09,Risk of Violence,2,Low,2013-04-09,2014-06-16,2014-06-16,1,0,433,0,0,0\r\n1941,brian spurgin,brian,spurgin,2013-08-07,Male,1987-05-11,28,25 - 45,African-American,0,1,0,0,0,0,2013-08-07 02:46:35,2013-08-07 07:56:41,13014913MM10A,2013-08-06,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-07,Risk of Violence,2,Low,2013-08-07,2013-08-07,2013-08-07,0,0,968,0,0,0\r\n1942,rainel garciacoto,rainel,garciacoto,2013-02-13,Male,1987-05-04,28,25 - 45,Caucasian,0,1,0,0,2,-1,2013-02-12 03:30:44,2013-02-13 08:00:37,13003124MM10A,2013-02-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,2,Low,2013-02-13,2013-02-12,2013-02-13,2,0,1143,0,0,0\r\n1945,leon glen,leon,glen,2013-08-09,Male,1988-01-14,28,25 - 45,African-American,0,2,0,0,0,0,2013-08-09 12:26:04,2013-08-09 08:35:47,13011148CF10A,2013-08-08,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-09,Risk of Violence,3,Low,2013-08-09,2013-08-09,2013-08-09,0,0,966,0,0,0\r\n1948,william carlisle,william,carlisle,2013-02-05,Male,1962-10-01,53,Greater than 45,Caucasian,0,1,0,0,4,0,2013-02-05 01:15:32,2013-02-05 01:07:11,13001750CF10A,2013-02-04,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-05,Risk of Violence,1,Low,2013-02-05,2013-06-14,2013-06-15,4,0,129,0,0,0\r\n1949,miguel arango,miguel,arango,2013-03-28,Male,1968-09-28,47,Greater than 45,Hispanic,0,5,0,0,1,-1,2013-03-27 10:42:36,2013-09-27 09:55:14,12007727CF10A,,2013-03-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-28,Risk of Violence,3,Low,2013-03-28,2013-03-27,2013-09-27,1,183,1100,0,0,0\r\n1951,javionne floyd,javionne,floyd,2014-03-27,Male,1995-05-06,20,Less than 25,African-American,0,3,0,0,1,-24,2014-03-03 02:12:12,2014-03-04 08:49:31,14002997CF10A,2014-03-03,,24,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-27,Risk of Violence,5,Medium,2014-03-27,2014-03-03,2014-03-04,1,0,736,0,0,0\r\n1952,jason vallmyr,jason,vallmyr,2013-12-05,Male,1995-03-10,21,Less than 25,African-American,0,6,0,0,0,-6,2013-11-29 12:22:02,2013-11-29 12:51:37,13022298MM10A,2013-11-28,,7,M,Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-05,Risk of Violence,6,Medium,2013-12-05,2013-11-29,2013-11-29,0,0,848,0,0,0\r\n1955,richard carino,richard,carino,2013-05-07,Male,1956-03-24,60,Greater than 45,Hispanic,0,1,0,0,1,-18,2013-04-19 09:31:28,2013-05-07 10:46:55,13005608CF10A,2013-04-19,,18,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-07,Risk of Violence,1,Low,2013-05-07,2013-04-19,2013-05-07,1,0,1060,0,0,0\r\n1957,yoandy vidal,yoandy,vidal,2013-05-11,Male,1986-04-10,30,25 - 45,Caucasian,0,1,0,0,0,-1,2013-05-10 09:23:33,2013-05-11 06:40:57,13009093MM10A,2013-05-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-11,Risk of Violence,2,Low,2013-05-11,2013-05-10,2013-05-11,0,0,1056,0,0,0\r\n1965,anthony donaldson,anthony,donaldson,2014-10-20,Female,1989-10-06,26,25 - 45,African-American,0,9,0,0,5,-1,2014-10-19 08:39:38,2014-10-26 04:44:30,14014117CF10A,2014-10-19,,1,F,Poss Pyrrolidinovalerophenone,1,15001313CF10A,(F3),,2015-01-28,Introduce Contraband Into Jail,,,,1,15001313CF10A,(F1),2015-01-28,Robbery W/Firearm,Risk of Recidivism,9,High,2014-10-20,Risk of Violence,6,Medium,2014-10-20,2014-10-19,2014-10-26,5,6,100,1,1,1\r\n1966,diego bruna,diego,bruna,2013-09-08,Male,1994-07-05,21,Less than 25,Hispanic,0,5,0,0,0,-1,2013-09-07 11:52:57,2013-09-09 02:51:42,13012668CF10A,2013-09-07,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-08,Risk of Violence,5,Medium,2013-09-08,2013-09-07,2013-09-09,0,1,936,0,0,0\r\n1967,rachael small,rachael,small,2013-03-07,Female,1976-09-25,39,25 - 45,African-American,0,2,0,0,1,-1,2013-03-06 10:19:56,2013-03-07 01:54:02,12009076CF10A,,2013-03-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-07,Risk of Violence,1,Low,2013-03-07,2016-04-11,2020-01-01,1,0,1131,0,0,0\r\n1968,mariot severe,mariot,severe,2013-02-25,Male,1985-06-30,30,25 - 45,Other,0,2,0,0,0,-1,2013-02-24 08:50:29,2013-03-02 06:34:47,13002818CF10A,2013-02-24,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-25,Risk of Violence,2,Low,2013-02-25,2013-02-24,2013-03-02,0,5,1131,0,0,0\r\n1971,emanuel scott,emanuel,scott,2013-09-16,Male,1972-01-14,44,25 - 45,African-American,0,5,0,0,2,-1,2013-09-15 02:38:49,2013-09-17 07:18:54,13009901CF10A,,2013-09-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-16,Risk of Violence,2,Low,2013-09-16,2015-05-27,2015-06-07,2,1,618,0,0,0\r\n1972,philip dubicki,philip,dubicki,2013-09-08,Male,1970-10-15,45,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-09-07 09:24:01,2013-09-10 08:25:31,13017061MM10A,2013-09-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-08,Risk of Violence,2,Low,2013-09-08,2013-09-07,2013-09-10,0,2,936,0,0,0\r\n1974,jamal brown,jamal,brown,2013-09-10,Male,1986-01-17,30,25 - 45,African-American,0,1,0,0,1,-1,2013-09-09 09:55:03,2013-09-10 07:42:41,13012735CF10A,2013-09-09,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,2,Low,2013-09-10,2015-07-26,2015-07-30,1,0,684,0,0,0\r\n1975,kelvin nguyen,kelvin,nguyen,2013-12-03,Male,1978-02-27,38,25 - 45,Asian,0,1,0,0,2,0,2013-12-03 05:13:10,2013-12-11 11:56:18,13016734CF10A,2013-12-03,,0,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-03,Risk of Violence,1,Low,2013-12-03,2013-12-03,2013-12-11,2,8,850,0,0,0\r\n1980,derrick williamson,derrick,williamson,2013-10-09,Male,1978-07-11,37,25 - 45,African-American,0,4,0,0,1,-139,2013-05-23 01:57:09,2013-06-28 05:54:52,13007371CF10A,2013-05-22,,140,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-09,Risk of Violence,4,Low,2013-10-09,2013-05-23,2013-06-28,1,0,905,0,0,0\r\n1982,haryidial lall,haryidial,lall,2013-12-26,Male,1970-01-19,46,Greater than 45,Asian,0,1,0,0,0,-1,2013-12-25 09:48:26,2013-12-26 01:21:51,13023752MM10A,2013-12-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-26,Risk of Violence,1,Low,2013-12-26,2013-12-25,2013-12-26,0,0,827,0,0,0\r\n1983,ricardo quinones,ricardo,quinones,2013-12-20,Male,1973-08-31,42,25 - 45,African-American,0,1,0,0,0,-1,2013-12-19 12:18:58,2013-12-20 08:03:46,13017540CF10A,2013-12-19,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-20,Risk of Violence,1,Low,2013-12-20,2013-12-19,2013-12-20,0,0,833,0,0,0\r\n1985,lawrence bocksey,lawrence,bocksey,2013-07-15,Male,1950-07-02,65,Greater than 45,Caucasian,0,1,0,0,2,-84,2013-04-22 03:17:28,2013-04-26 05:56:36,13007802MM10A,2013-05-16,,60,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-15,Risk of Violence,1,Low,2013-07-15,2013-04-22,2013-04-26,2,0,991,0,0,0\r\n1987,michael armenti,michael,armenti,2013-02-11,Male,1962-04-04,54,Greater than 45,Caucasian,0,2,0,0,4,-1,2013-02-10 05:05:00,2013-02-13 09:32:59,13002939MM10A,2013-02-10,,1,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-10,2013-02-13,4,2,1145,0,0,0\r\n1994,eric toledo,eric,toledo,2014-06-08,Male,1987-02-28,29,25 - 45,Caucasian,0,10,0,0,7,-1,2014-06-07 01:31:38,2014-06-08 08:07:43,14009029MM10A,2014-06-06,,2,M,Battery,1,14010274CF10A,(F2),0,2014-07-28,Aggrav Battery w/Deadly Weapon,2014-07-28,2014-08-23,,1,14010274CF10A,(F2),2014-07-28,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2014-06-08,Risk of Violence,7,Medium,2014-06-08,2014-07-28,2014-08-23,7,0,50,1,1,1\r\n1995,dino salerno,dino,salerno,2013-03-21,Male,1964-09-03,51,Greater than 45,Caucasian,0,1,0,0,7,-1,2013-03-20 03:05:46,2013-04-04 01:57:07,13004020CF10A,2013-03-20,,1,F,Burglary Conveyance Unoccup,1,13005785CF10A,(F1),0,2013-04-22,Falsely Personating Officer,2013-04-22,2013-12-18,,1,13005785CF10A,(M1),2013-04-22,Battery,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,1,Low,2013-03-21,2013-04-22,2013-12-18,7,14,32,1,1,1\r\n1999,melton mustafa,melton,mustafa,2013-03-04,Male,1972-01-17,44,25 - 45,African-American,0,1,0,0,0,0,2013-03-04 05:50:37,2013-03-04 08:33:41,13004436MM10A,2013-03-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-03-04,2013-03-04,0,0,1124,0,0,0\r\n2002,john walsh,john,walsh,2013-03-04,Male,1967-02-04,49,Greater than 45,Caucasian,0,5,0,0,12,-24,2013-02-08 10:08:21,2013-03-02 01:59:17,13002878MM10A,2013-02-08,,24,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-04-25,2013-04-28,12,0,52,0,0,0\r\n2010,leanord anderson,leanord,anderson,2014-02-17,Male,1988-07-22,27,25 - 45,African-American,0,3,0,0,0,-1,2014-02-16 01:43:32,2014-02-17 07:58:42,14002686MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-17,Risk of Violence,3,Low,2014-02-17,2014-02-16,2014-02-17,0,0,774,0,0,0\r\n2014,eric blue,eric,blue,2013-09-25,Male,1986-01-30,30,25 - 45,Caucasian,0,2,0,0,0,-1,2013-09-24 03:13:59,2013-09-24 08:14:17,13013423CF10A,2013-09-24,,1,M,DUI - Property Damage/Personal Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-25,Risk of Violence,1,Low,2013-09-25,2013-09-24,2013-09-24,0,0,919,0,0,0\r\n2018,andrew medley,andrew,medley,2013-01-24,Male,1994-01-03,22,Less than 25,African-American,0,10,3,1,6,,,,12017104CF10A,,2012-11-22,63,F,arrest case no charge,1,14007482CF10A,(F2),,2013-06-21,Aggrav Battery w/Deadly Weapon,,,,1,14007482CF10A,(F2),2013-06-21,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2013-01-24,Risk of Violence,10,High,2013-01-24,,,6,0,148,1,1,1\r\n2020,nelson cajas,nelson,cajas,2013-10-30,Male,1988-01-07,28,25 - 45,Hispanic,0,7,0,0,11,0,2013-10-30 04:01:31,2013-10-31 03:20:00,13020499MM10A,2013-10-30,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-30,Risk of Violence,7,Medium,2013-10-30,2015-08-12,2015-08-20,11,1,651,0,0,0\r\n2021,sam wu,sam,wu,2014-03-12,Male,1970-06-05,45,Greater than 45,Other,0,1,0,0,0,-1,2014-03-11 04:52:30,2014-03-12 08:48:41,14004229MM10A,2014-03-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-12,Risk of Violence,1,Low,2014-03-12,2014-03-11,2014-03-12,0,0,751,0,0,0\r\n2024,deborah lachance,deborah,lachance,2013-08-12,Female,1965-03-03,51,Greater than 45,Caucasian,0,5,0,0,5,0,2013-08-12 11:55:55,2013-09-14 05:58:00,13011336CF10A,,2013-08-12,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-12,Risk of Violence,2,Low,2013-08-12,2013-08-12,2013-09-14,5,33,963,0,0,0\r\n2029,troy williams,troy,williams,2013-04-18,Male,1972-04-28,43,25 - 45,African-American,0,3,0,0,2,-1,2013-04-17 10:37:05,2013-04-23 10:16:03,11008772CF10A,,2013-04-17,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2014-07-11,2014-07-16,2,5,449,0,0,0\r\n2033,lenna lacey,lenna,lacey,2013-11-25,Female,1953-02-02,63,Greater than 45,African-American,0,4,0,0,1,,,,06007045CF10A,2005-12-15,,2902,F,Exploit Elderly Person 20-100K,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,,,1,0,858,0,0,0\r\n2034,joshua mason,joshua,mason,2013-08-13,Male,1978-06-04,37,25 - 45,Caucasian,0,2,0,0,2,-1,2013-08-12 08:43:05,2013-08-13 08:22:25,13011313CF10A,2013-08-12,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-13,Risk of Violence,1,Low,2013-08-13,2013-08-12,2013-08-13,2,0,962,0,0,0\r\n2037,eric wardlaw,eric,wardlaw,2013-08-22,Male,1990-01-06,26,25 - 45,African-American,0,2,0,0,0,-1,2013-08-21 09:03:22,2013-08-22 08:18:17,13015967MM10A,2013-08-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-22,Risk of Violence,3,Low,2013-08-22,2013-08-21,2013-08-22,0,0,953,0,0,0\r\n2038,krishna bahadosingh,krishna,bahadosingh,2013-03-08,Male,1983-12-05,32,25 - 45,Other,0,3,0,0,4,0,2013-03-08 12:04:54,2013-03-08 02:03:36,13003416CF10A,2013-03-07,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-08,Risk of Violence,2,Low,2013-03-08,2013-03-08,2013-03-08,4,0,1120,0,0,0\r\n2040,marvel torres,marvel,torres,2013-05-29,Male,1977-01-02,39,25 - 45,Hispanic,0,4,0,0,3,-21,2013-05-08 10:08:57,2013-05-22 07:51:07,13002890CF10A,,2013-05-08,21,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-05-08,2013-05-22,3,0,1038,0,0,0\r\n2042,melinda delions,melinda,delions,2013-12-05,Female,1957-12-05,58,Greater than 45,African-American,0,1,0,0,4,-1,2013-12-04 02:04:11,2013-12-05 09:54:31,13016783CF10A,2013-12-04,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-05,Risk of Violence,1,Low,2013-12-05,2013-12-04,2013-12-05,4,0,848,0,0,0\r\n2044,nicholas kerlew,nicholas,kerlew,2013-03-11,Male,1982-09-18,33,25 - 45,Other,0,2,0,0,0,-1,2013-03-10 04:24:37,2013-03-11 01:32:37,13004816MM10A,2013-03-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-11,Risk of Violence,3,Low,2013-03-11,2013-03-10,2013-03-11,0,0,1117,0,0,0\r\n2045,alyssa verola,alyssa,verola,2013-10-31,Female,1993-05-05,22,Less than 25,Caucasian,0,3,0,1,1,-22,2013-10-09 01:32:37,2013-10-09 06:32:48,13019125MM10A,2013-10-09,,22,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-31,Risk of Violence,4,Low,2013-10-31,2013-10-09,2013-10-09,1,0,883,0,0,0\r\n2052,bryan berry,bryan,berry,2013-11-14,Male,1972-09-30,43,25 - 45,Caucasian,0,1,0,0,2,-10,2013-11-04 09:10:03,2013-11-06 06:20:54,13015394CF10A,,2013-11-04,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-11-04,2013-11-06,2,0,869,0,0,0\r\n2053,jeff rosemberg,jeff,rosemberg,2013-05-10,Male,1993-04-19,23,Less than 25,African-American,0,7,0,0,0,-1,2013-05-09 10:04:43,2013-05-10 08:01:13,13008990MM10A,2013-05-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-10,Risk of Violence,6,Medium,2013-05-10,2013-05-09,2013-05-10,0,0,1057,0,0,0\r\n2054,greymi rosa,greymi,rosa,2014-02-25,Male,1991-03-26,25,25 - 45,Caucasian,0,2,0,0,0,-1,2014-02-24 07:11:53,2014-02-25 08:52:44,14002604CF10A,2014-02-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-25,Risk of Violence,4,Low,2014-02-25,2014-02-24,2014-02-25,0,0,766,0,0,0\r\n2055,jervon jarrett,jervon,jarrett,2013-12-19,Male,1993-06-29,22,Less than 25,African-American,0,9,0,0,6,-1,2013-12-18 08:38:29,2013-12-19 08:44:42,13010115CF10A,,2013-12-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-12-19,Risk of Violence,9,High,2013-12-19,2015-01-28,2015-03-07,6,0,405,0,0,0\r\n2056,timothy bass,timothy,bass,2013-01-19,Male,1986-02-20,30,25 - 45,African-American,0,4,0,0,6,-1,2013-01-18 10:56:13,2013-06-01 02:07:27,13000882CF10A,2013-01-18,,1,F,Poss of Methylethcathinone,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-19,Risk of Violence,4,Low,2013-01-19,2013-01-18,2013-06-01,6,133,1168,0,0,0\r\n2057,christopher denis,christopher,denis,2013-03-14,Male,1991-01-15,25,25 - 45,African-American,0,9,3,1,15,-1,2013-03-13 05:33:27,2013-03-15 05:42:00,13003713CF10A,2013-03-13,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14004265CF10A,(F1),,2013-08-08,Aggrav Child Abuse-Agg Battery,,,,1,14004265CF10A,(F1),2013-08-08,Aggrav Child Abuse-Agg Battery,Risk of Recidivism,9,High,2013-03-14,Risk of Violence,7,Medium,2013-03-14,2013-03-13,2013-03-15,15,1,147,1,1,1\r\n2059,jaircinio munoz,jaircinio,munoz,2013-09-10,Male,1976-05-20,39,25 - 45,Hispanic,0,1,0,0,0,-1,2013-09-09 09:26:40,2013-09-10 07:41:44,13012730CF10A,2013-09-09,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-09,2013-09-10,0,0,934,0,0,0\r\n2062,edward horton,edward,horton,2013-03-17,Male,1956-11-01,59,Greater than 45,African-American,0,4,0,0,1,-1,2013-03-16 07:33:09,2013-03-17 01:48:47,13003849CF10A,2013-03-16,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-17,Risk of Violence,1,Low,2013-03-17,2013-03-16,2013-03-17,1,0,1111,0,0,0\r\n2063,ivan gomez,ivan,gomez,2013-09-06,Male,1995-02-20,21,Less than 25,Hispanic,0,9,0,2,1,-8,2013-08-29 09:50:39,2013-08-31 06:13:37,13012227CF10A,,2013-08-29,8,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-06,Risk of Violence,8,High,2013-09-06,2013-08-29,2013-08-31,1,0,938,0,0,0\r\n2065,wayne zafir,wayne,zafir,2013-02-17,Male,1982-04-08,34,25 - 45,Caucasian,0,2,0,0,2,-1,2013-02-16 05:53:02,2013-02-17 07:51:42,11004179MO10A,,2013-02-16,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-17,Risk of Violence,2,Low,2013-02-17,2013-02-16,2013-02-17,2,0,1139,0,0,0\r\n2066,loren moscovich,loren,moscovich,2013-04-19,Male,1979-07-21,36,25 - 45,Caucasian,0,4,0,0,6,-25,2013-03-25 01:15:03,2013-03-25 08:01:36,13004269CF10A,2013-03-24,,26,F,Possession Of Buprenorphine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-19,Risk of Violence,2,Low,2013-04-19,2013-03-25,2013-03-25,6,0,1078,0,0,0\r\n2069,cortez harris,cortez,harris,2013-01-30,Male,1993-02-09,23,Less than 25,African-American,0,3,0,0,0,-1,2013-01-29 05:36:47,2013-01-30 07:49:51,13001436CF10A,2013-01-29,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-30,Risk of Violence,5,Medium,2013-01-30,2014-01-30,2014-05-27,0,0,365,0,0,0\r\n2070,leoplean price,leoplean,price,2013-01-21,Male,1983-08-19,32,25 - 45,African-American,0,8,0,0,2,0,2013-01-21 02:06:58,2013-05-10 08:38:41,12010556MM10A,,2013-01-21,0,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-21,Risk of Violence,5,Medium,2013-01-21,2013-01-21,2013-05-10,2,109,1166,0,0,0\r\n2072,susan scarlette,susan,scarlette,2013-04-29,Female,1949-07-06,66,Greater than 45,Caucasian,0,1,0,0,1,-46,2013-03-14 02:52:45,2013-04-11 07:51:43,13005079MM10A,2013-03-14,,46,M,Tresspass Struct/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-03-14,2013-04-11,1,0,1068,0,0,0\r\n2074,waldren wright,waldren,wright,2014-03-06,Male,1949-09-24,66,Greater than 45,Other,0,1,0,0,0,-1,2014-03-05 02:20:03,2014-03-06 10:24:47,14003104CF10A,2014-03-05,,1,M,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-06,Risk of Violence,1,Low,2014-03-06,2014-03-05,2014-03-06,0,0,757,0,0,0\r\n2075,justine woodward,justine,woodward,2013-05-20,Female,1991-11-21,24,Less than 25,Caucasian,0,6,0,0,0,-1,2013-05-19 07:00:07,2013-06-12 01:57:48,13009851MM10A,2013-05-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-20,Risk of Violence,4,Low,2013-05-20,2013-05-19,2013-06-12,0,23,1047,0,0,0\r\n2077,issac tisdale,issac,tisdale,2013-03-15,Male,1987-10-18,28,25 - 45,African-American,0,7,0,0,1,-1,2013-03-14 08:59:25,2013-03-16 05:45:01,13005067MM10A,2013-03-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-15,Risk of Violence,3,Low,2013-03-15,2013-03-14,2013-03-16,1,1,1113,0,0,0\r\n2078,robert maldonado,robert,maldonado,2014-06-29,Male,1972-07-15,43,25 - 45,Caucasian,0,5,0,0,4,0,2014-06-29 03:34:28,2014-07-01 05:12:10,14008946CF10A,2014-06-29,,0,F,Burglary Dwelling Occupied,1,16001796MM10A,(M1),,2015-12-30,Stalking,,,,1,15016619CF10A,(F3),2015-12-30,Stalking (Aggravated),Risk of Recidivism,5,Medium,2014-06-29,Risk of Violence,2,Low,2014-06-29,2014-06-29,2014-07-01,4,2,549,1,1,1\r\n2079,jameson hinzey,jameson,hinzey,2013-12-28,Male,1980-08-07,35,25 - 45,African-American,0,2,0,0,3,-1,2013-12-27 03:35:30,2014-01-07 10:11:46,13023882MM10A,2013-12-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-28,Risk of Violence,2,Low,2013-12-28,2013-12-27,2014-01-07,3,10,825,0,0,0\r\n2085,jeff fendt,jeff,fendt,2014-04-21,Male,1982-06-27,33,25 - 45,Caucasian,0,2,0,0,0,,,,14005492CF10A,2014-04-19,,2,F,Poss Alprazolam W/int Sell/Del,1,14011779MM10A,(M1),,2014-06-28,Battery,,,,1,14011779MM10A,(M1),2014-06-28,Battery,Risk of Recidivism,2,Low,2014-04-21,Risk of Violence,2,Low,2014-04-21,,,0,0,68,1,1,1\r\n2087,dominick jenkins,dominick,jenkins,2013-12-13,Male,1993-10-10,22,Less than 25,African-American,0,6,0,0,1,-1,2013-12-12 03:05:58,2013-12-16 05:21:20,13023024MM10A,2013-12-12,,1,M,Battery,1,14003076MM10A,(M1),,2014-02-21,Battery,,,,1,14003076MM10A,(M1),2014-02-21,Battery,Risk of Recidivism,6,Medium,2013-12-13,Risk of Violence,7,Medium,2013-12-13,2013-12-12,2013-12-16,1,3,70,1,1,1\r\n2089,brian cunningham,brian,cunningham,2013-01-20,Male,1986-11-22,29,25 - 45,African-American,0,1,0,0,0,0,2013-01-20 01:46:36,2013-01-20 12:12:09,13000911CF10A,2013-01-19,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-20,Risk of Violence,2,Low,2013-01-20,2013-01-20,2013-01-20,0,0,1167,0,0,0\r\n2090,loreia nelson,loreia,nelson,2014-02-15,Female,1993-03-02,23,Less than 25,African-American,0,4,0,0,0,-1,2014-02-14 02:04:23,2014-02-16 03:42:24,14002620MM10A,2014-02-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-15,Risk of Violence,5,Medium,2014-02-15,2014-02-14,2014-02-16,0,1,776,0,0,0\r\n2091,willie brown,willie,brown,2013-10-03,Male,1953-04-27,62,Greater than 45,African-American,0,9,0,0,15,-36,2013-08-28 06:07:53,2013-10-03 12:14:08,13012257CF10A,,2013-08-29,35,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-03,Risk of Violence,9,High,2013-10-03,2013-08-28,2013-10-03,15,0,911,0,0,0\r\n2093,deanna dye,deanna,dye,2013-07-29,Female,1983-01-02,33,25 - 45,Caucasian,0,2,0,0,0,-2,2013-07-27 02:32:45,2013-07-28 02:02:00,13014224MM10A,2013-07-26,,3,M,Offer Agree Secure For Lewd Act,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-09-14,2013-09-15,0,0,47,0,0,0\r\n2094,hassan baker,hassan,baker,2013-01-31,Male,1981-01-02,35,25 - 45,African-American,0,4,0,0,1,0,2013-01-31 12:15:06,2013-01-31 08:06:24,13002170MO10A,2013-01-30,,1,M,Prostitution/Lewdness/Assign,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-31,Risk of Violence,2,Low,2013-01-31,2013-01-31,2013-01-31,1,0,1156,0,0,0\r\n2095,jamie rosen,jamie,rosen,2013-05-05,Male,1963-04-12,53,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-05 06:01:13,2013-05-05 07:11:34,13006441CF10A,2013-05-05,,0,F,Possession Of Alprazolam,1,15011038CF10A,(F3),0,2015-08-26,Possession of Oxycodone,2015-08-26,2015-08-26,,0,,,,,Risk of Recidivism,1,Low,2013-05-05,Risk of Violence,1,Low,2013-05-05,2015-08-26,2015-08-26,0,0,843,0,0,0\r\n2098,teresa lliteras,teresa,lliteras,2013-04-11,Female,1967-10-21,48,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-10 12:13:15,2013-04-11 01:05:57,13006984MM10A,2013-04-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-11,Risk of Violence,1,Low,2013-04-11,2013-04-10,2013-04-11,0,0,1086,0,0,0\r\n2099,mamose florial,mamose,florial,2013-02-04,Female,1983-04-18,33,25 - 45,African-American,0,2,0,0,1,-10,2013-01-25 11:03:35,2013-01-26 08:47:49,13001266CF10A,2013-01-25,,10,F,Neglect Child / Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-01-25,2013-01-26,1,0,1152,0,0,0\r\n2100,james shupe,james,shupe,2013-04-29,Male,1971-10-29,44,25 - 45,Caucasian,0,1,0,0,0,0,2013-04-29 02:46:23,2013-04-30 03:52:16,13018330TC10A,2013-04-29,,0,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-29,2013-04-30,0,1,1068,0,0,0\r\n2104,adlai goulbourne,adlai,goulbourne,2014-02-20,Male,1959-05-03,56,Greater than 45,Other,0,1,0,0,9,-147,2013-09-26 11:51:00,2014-02-12 10:41:00,13013562CF10A,2013-09-26,,147,F,Trespass Structure w/Dang Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-20,Risk of Violence,1,Low,2014-02-20,2013-09-26,2014-02-12,9,0,771,0,0,0\r\n2105,agustin perez-vidal,agustin,perez-vidal,2013-02-14,Male,1964-12-14,51,Greater than 45,Hispanic,0,1,0,0,1,-18,2013-01-27 07:54:35,2013-02-13 09:34:33,13001339CF10A,2013-01-27,,18,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-14,Risk of Violence,1,Low,2013-02-14,2015-03-18,2016-04-11,1,0,762,0,0,0\r\n2108,carlos campo,carlos,campo,2013-10-27,Male,1994-12-01,21,Less than 25,Hispanic,0,7,0,0,0,0,2013-10-27 02:30:11,2013-10-27 08:17:23,13015005CF10A,2013-10-26,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-27,Risk of Violence,6,Medium,2013-10-27,2014-03-05,2014-03-13,0,0,129,0,0,0\r\n2109,louis sells,louis,sells,2013-01-02,Male,1989-05-17,26,25 - 45,Caucasian,0,5,0,0,0,0,2013-01-02 07:21:57,2013-01-02 07:31:59,13000096CF10A,2013-01-02,,0,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-02,Risk of Violence,4,Low,2013-01-02,2013-01-02,2013-01-02,0,0,1185,0,0,0\r\n2110,antwane jones,antwane,jones,2013-09-29,Male,1994-01-02,22,Less than 25,African-American,0,9,3,0,3,0,2013-09-29 03:40:47,2013-09-29 06:47:56,13013659CF10A,2013-09-29,,0,F,Possession of Benzylpiperazine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-29,Risk of Violence,10,High,2013-09-29,2013-09-29,2013-09-29,3,0,915,0,0,0\r\n2111,troy gayle,troy,gayle,2013-03-27,Male,1986-11-19,29,25 - 45,African-American,0,2,0,0,0,-1,2013-03-26 07:25:39,2013-03-27 11:45:55,13005919MM10A,2013-03-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-27,Risk of Violence,3,Low,2013-03-27,2013-03-26,2013-03-27,0,0,1101,0,0,0\r\n2115,javier valdes,javier,valdes,2013-11-13,Male,1972-04-04,44,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-12 09:19:23,2013-11-13 08:07:52,13021311MM10A,2013-11-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-13,Risk of Violence,1,Low,2013-11-13,2013-11-12,2013-11-13,0,0,870,0,0,0\r\n2116,peter cunningham,peter,cunningham,2013-08-22,Male,1975-03-24,41,25 - 45,African-American,0,5,0,0,2,-1,2013-08-21 10:34:23,2013-09-05 09:41:59,11015633CF10A,,2013-08-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-22,Risk of Violence,3,Low,2013-08-22,2013-08-21,2013-09-05,2,14,953,0,0,0\r\n2121,ashley hannah,ashley,hannah,2013-11-08,Female,1987-10-16,28,25 - 45,African-American,0,4,0,1,4,0,2013-11-08 03:39:55,2013-11-08 09:33:05,13015575CF10A,2013-11-08,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-08,Risk of Violence,3,Low,2013-11-08,2013-11-08,2013-11-08,4,0,875,0,0,0\r\n2125,jason landress,jason,landress,2014-03-10,Male,1984-08-06,31,25 - 45,Caucasian,0,3,0,0,7,-1,2014-03-09 04:46:09,2014-03-10 09:42:05,14004057MM10A,2014-03-09,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-10,Risk of Violence,2,Low,2014-03-10,2014-03-09,2014-03-10,7,0,753,0,0,0\r\n2129,michael cedieu,michael,cedieu,2013-11-15,Male,1995-10-15,20,Less than 25,African-American,0,4,0,2,0,-1,2013-11-14 06:08:57,2013-11-15 08:54:29,13015856CF10A,2013-11-14,,1,F,Tampering With Physical Evidence,1,16000010MM30A,(M1),59,2015-12-19,Possess Cannabis/20 Grams Or Less,2016-02-16,2016-02-17,,1,16002340CF10A,(F2),2016-02-22,Agg Fleeing/Eluding High Speed,Risk of Recidivism,4,Low,2013-11-15,Risk of Violence,7,Medium,2013-11-15,2014-03-12,2014-03-12,0,0,117,0,0,0\r\n2131,tholome johnson,tholome,johnson,2013-02-27,Male,1979-11-15,36,25 - 45,African-American,0,8,0,0,0,0,2013-02-27 01:25:04,2013-02-28 04:12:46,13002940CF10A,2013-02-27,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-27,Risk of Violence,2,Low,2013-02-27,2013-02-27,2013-02-28,0,1,1129,0,0,0\r\n2134,willis barnes,willis,barnes,2013-08-14,Male,1992-09-08,23,Less than 25,African-American,1,9,0,0,1,-1,2013-08-13 04:31:54,2013-08-18 04:39:19,13015313MM10A,2013-08-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-14,Risk of Violence,9,High,2013-08-14,2013-08-13,2013-08-18,1,4,961,0,0,0\r\n2140,rose mosco,rose,mosco,2013-03-01,Female,1956-08-30,59,Greater than 45,Caucasian,0,1,0,0,1,-21,2013-02-08 08:25:17,2013-02-13 09:36:45,13002086CF10A,2013-02-08,,21,F,Grand Theft in the 1st Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2015-10-22,2015-10-29,1,0,965,0,0,0\r\n2141,ricardo britt,ricardo,britt,2013-04-26,Male,1978-04-24,37,25 - 45,Caucasian,0,2,0,0,0,-4,2013-04-22 02:29:12,2013-04-23 03:38:43,13005777CF10A,2013-04-21,,5,F,Cruelty Toward Child,1,13013838MM10A,(M1),1,2013-07-20,Viol Pretrial Release Dom Viol,2013-07-21,2013-08-05,,1,15001691CF10A,(F3),2015-02-04,Felony Battery w/Prior Convict,Risk of Recidivism,2,Low,2013-04-26,Risk of Violence,1,Low,2013-04-26,2015-02-04,2015-04-06,0,0,85,1,1,1\r\n2147,german valerio,german,valerio,2013-10-03,Male,1984-09-21,31,25 - 45,African-American,0,2,0,0,0,-1,2013-10-02 06:36:42,2013-10-03 08:18:14,13013855CF10A,2013-10-02,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-03,Risk of Violence,4,Low,2013-10-03,2013-10-02,2013-10-03,0,0,911,0,0,0\r\n2148,stephanie hay,stephanie,hay,2014-07-13,Female,1977-05-19,38,25 - 45,African-American,0,10,0,0,14,-1,2014-07-12 06:46:27,2014-07-17 05:29:07,14009547CF10A,2014-07-12,,1,F,Possession of Cocaine,1,15001666CF10A,(F3),0,2015-02-05,Battery on a Person Over 65,2015-02-05,2015-05-18,,1,15001666CF10A,(F3),2015-02-05,Battery on a Person Over 65,Risk of Recidivism,10,High,2014-07-13,Risk of Violence,3,Low,2014-07-13,2014-08-11,2014-09-12,14,4,29,0,1,1\r\n2150,tyrell wright,tyrell,wright,2014-08-29,Male,1988-06-20,27,25 - 45,African-American,0,8,0,0,3,-1,2014-08-28 12:41:52,2014-08-29 01:55:31,14011761CF10A,2014-08-28,,1,F,Grand Theft in the 3rd Degree,1,14015178MM10A,(M1),0,2014-10-18,Battery,2014-10-18,2014-10-26,,1,14015178MM10A,(M1),2014-10-18,Battery,Risk of Recidivism,8,High,2014-08-29,Risk of Violence,6,Medium,2014-08-29,2014-10-18,2014-10-26,3,0,50,1,1,1\r\n2152,nikeisha porter,nikeisha,porter,2013-11-26,Female,1974-01-16,42,25 - 45,African-American,0,2,0,0,2,-1,2013-11-25 05:04:34,2013-11-26 09:36:13,13016423CF10A,2013-11-25,,1,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-26,Risk of Violence,1,Low,2013-11-26,2013-11-25,2013-11-26,2,0,857,0,0,0\r\n2153,cortay wells,cortay,wells,2014-02-06,Male,1993-05-02,22,Less than 25,African-American,0,8,0,0,3,-1,2014-02-05 03:18:50,2014-03-03 08:00:17,14001653CF10A,2014-02-05,,1,F,Uttering a Forged Instrument,1,14005187CF10A,(F3),0,2014-04-13,Grand Theft Dwell Property,2014-04-13,2014-06-05,,1,16000123CF10A,(F3),2016-01-04,Aggravated Assault w/Firearm,Risk of Recidivism,8,High,2014-02-06,Risk of Violence,5,Medium,2014-02-06,2014-04-13,2014-06-05,3,25,66,1,1,1\r\n2154,romaine smith,romaine,smith,2013-03-01,Male,1995-01-17,21,Less than 25,Other,0,6,0,0,0,-1,2013-02-28 07:56:43,2013-03-02 05:27:36,13003060CF10A,2013-02-28,,1,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-01,Risk of Violence,8,High,2013-03-01,2013-02-28,2013-03-02,0,1,1127,0,0,0\r\n2155,carl haberstroh,carl,haberstroh,2013-09-24,Male,1958-07-10,57,Greater than 45,Caucasian,0,7,0,0,15,-32,2013-08-23 03:39:59,2013-09-12 10:31:00,07023637CF10A,,2013-08-23,32,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-24,Risk of Violence,3,Low,2013-09-24,2013-08-23,2013-09-12,15,0,920,0,0,0\r\n2159,patrick keane,patrick,keane,2013-05-09,Male,1963-06-20,52,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-05-08 02:05:44,2013-05-09 09:08:14,13006115MM10A,2013-03-29,,41,M,Tresspass Struct/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-09,Risk of Violence,1,Low,2013-05-09,2013-05-08,2013-05-09,2,0,1058,0,0,0\r\n2161,alfredo rasco,alfredo,rasco,2013-05-23,Male,1987-03-04,29,25 - 45,Caucasian,0,3,0,0,0,-1,2013-05-22 08:43:56,2013-05-23 08:01:27,13009896MM10A,2013-05-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-23,Risk of Violence,3,Low,2013-05-23,2013-05-22,2013-05-23,0,0,1044,0,0,0\r\n2162,reneca turner-davis,reneca,turner-davis,2013-01-24,Female,1978-09-30,37,25 - 45,African-American,0,4,0,0,0,0,2013-01-24 01:57:20,2013-01-29 05:24:05,13001704MM10A,2013-01-24,,0,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-01-24,2013-01-29,0,5,1163,0,0,0\r\n2163,lavinel zurz,lavinel,zurz,2013-04-14,Male,1981-06-19,34,25 - 45,Caucasian,0,2,0,1,0,-1,2013-04-13 09:32:38,2013-04-14 07:21:18,13005341CF10A,2013-04-13,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-14,Risk of Violence,1,Low,2013-04-14,2015-01-16,2015-01-22,0,0,642,0,0,0\r\n2165,parris brady,parris,brady,2013-01-24,Male,1963-01-20,53,Greater than 45,African-American,0,1,0,0,0,0,2013-01-24 03:10:35,2013-01-25 12:12:01,13001715MM10A,2013-01-23,,1,M,Battery,1,13012068MM10A,(M1),0,2013-06-24,Viol Pretrial Release Dom Viol,2013-06-24,2013-06-25,,1,13013714MM10A,(M1),2013-06-24,Battery,Risk of Recidivism,1,Low,2013-01-24,Risk of Violence,1,Low,2013-01-24,2013-06-24,2013-06-25,0,1,151,1,1,1\r\n2168,christopher baptista,christopher,baptista,2013-08-23,Male,1980-09-20,35,25 - 45,Hispanic,0,3,0,0,0,-7,2013-08-16 04:54:32,2013-08-17 07:16:37,13015540MM10A,2013-08-16,,7,M,Reckless Driving,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-23,Risk of Violence,2,Low,2013-08-23,2014-11-26,2014-12-02,0,0,460,0,0,0\r\n2169,carlos ariastabima,carlos,ariastabima,2013-05-20,Male,1987-12-21,28,25 - 45,Caucasian,0,4,0,0,1,-1,2013-05-19 05:41:59,2013-05-23 12:31:34,13007152CF10A,2013-05-19,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-20,Risk of Violence,2,Low,2013-05-20,2013-05-19,2013-05-23,1,3,1047,0,0,0\r\n2170,timothy stevens,timothy,stevens,2013-04-30,Male,1994-07-09,21,Less than 25,African-American,0,8,0,0,1,-1,2013-04-29 10:52:26,2013-04-30 07:18:46,13006135CF10A,2013-04-29,,1,F,Grand Theft Dwell Property,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-30,Risk of Violence,9,High,2013-04-30,2013-04-29,2013-04-30,1,0,1067,0,0,0\r\n2171,leighton quarrie,leighton,quarrie,2013-11-20,Male,1994-04-06,22,Less than 25,African-American,0,7,0,0,1,13,2013-12-03 12:53:50,2014-01-16 03:17:58,13016082CF10A,2013-11-19,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-20,Risk of Violence,6,Medium,2013-11-20,2013-12-03,2014-01-16,1,0,13,0,0,0\r\n2176,paul chermak,paul,chermak,2013-10-29,Male,1974-03-24,42,25 - 45,Caucasian,0,3,0,0,1,-1,2013-10-28 08:04:32,2013-10-29 02:05:32,13020406MM10A,2013-10-28,,1,M,Battery,1,14003974CF10A,(F3),0,2014-03-20,Possession of Methadone,2014-03-20,2014-03-21,,1,14003974CF10A,(M1),2014-03-20,Battery,Risk of Recidivism,3,Low,2013-10-29,Risk of Violence,2,Low,2013-10-29,2014-03-20,2014-03-21,1,0,142,1,1,1\r\n2179,anthony jackson,anthony,jackson,2013-12-28,Male,1961-06-04,54,Greater than 45,African-American,0,1,0,0,9,0,2013-12-28 01:57:40,2013-12-29 02:05:51,01098533TC30A,,2003-03-16,3940,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-28,Risk of Violence,1,Low,2013-12-28,2013-12-28,2013-12-29,9,1,825,0,0,0\r\n2180,kory plummer,kory,plummer,2013-09-23,Male,1977-03-11,39,25 - 45,Other,0,2,0,0,1,-1,2013-09-22 10:25:30,2013-09-23 01:52:27,13013355CF10A,2013-09-22,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14006533MM10A,(M1),0,2014-03-26,Resist/Obstruct W/O Violence,2014-03-26,2014-04-29,,1,14004270CF10A,(M1),2014-03-26,Battery,Risk of Recidivism,2,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-12-11,2013-12-17,1,0,79,0,1,1\r\n2183,craig coleman,craig,coleman,2014-01-07,Male,1974-10-14,41,25 - 45,African-American,0,1,0,0,0,0,2014-01-07 04:31:06,2014-01-08 03:21:00,14000285MM10A,2014-01-07,,0,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-07,Risk of Violence,1,Low,2014-01-07,2014-01-07,2014-01-08,0,1,815,0,0,0\r\n2186,herbert hawkins,herbert,hawkins,2013-02-11,Male,1972-12-26,43,25 - 45,Caucasian,0,2,0,0,1,-1,2013-02-10 09:37:38,2013-04-16 07:46:56,13002044CF10A,2013-02-10,,1,F,Felony Battery (Dom Strang),1,14013163CF10A,(F3),1,2014-09-28,Felony Battery w/Prior Convict,2014-09-29,2015-02-19,,1,14013163CF10A,(F3),2014-09-28,Felony Battery (Dom Strang),Risk of Recidivism,2,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-10-06,2013-11-19,1,64,237,0,1,1\r\n2188,shaka ruddock,shaka,ruddock,2013-04-20,Male,1994-02-13,22,Less than 25,African-American,0,3,0,0,0,-1,2013-04-19 11:33:48,2013-04-20 01:40:27,13017081TC10A,2013-04-18,,2,M,Susp Drivers Lic 1st Offense,1,13026359TC10A,(M2),,2013-05-05,Driving License Suspended,,,,1,14002769CF10A,(F3),2014-02-27,Battery on Law Enforc Officer,Risk of Recidivism,3,Low,2013-04-20,Risk of Violence,5,Medium,2013-04-20,2014-02-27,2014-03-02,0,0,15,1,1,1\r\n2190,raul terrero,raul,terrero,2013-12-04,Male,1973-11-05,42,25 - 45,Hispanic,0,5,0,0,3,,,,13038758TC10A,2013-08-26,,100,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-04,Risk of Violence,3,Low,2013-12-04,,,3,0,849,0,0,0\r\n2194,tawana williams,tawana,williams,2013-01-25,Female,1973-07-14,42,25 - 45,African-American,0,3,0,0,2,-1,2013-01-24 11:48:41,2013-02-28 05:30:45,13008351TC10A,,2013-01-24,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-25,Risk of Violence,1,Low,2013-01-25,2013-01-24,2013-02-28,2,34,1162,0,0,0\r\n2196,robert mauney,robert,mauney,2014-02-03,Male,1966-07-24,49,Greater than 45,African-American,0,2,0,0,4,0,2014-02-03 12:18:15,2014-03-11 08:20:05,14001792MM10A,2014-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-03,2014-03-11,4,36,788,0,0,0\r\n2198,james ravino,james,ravino,2013-10-22,Male,1963-09-05,52,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-10-21 11:28:17,2013-11-15 09:18:28,13014717CF10A,2013-10-21,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-21,2013-11-15,1,24,892,0,0,0\r\n2201,melinda huffman,melinda,huffman,2013-11-25,Female,1955-04-28,60,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-11-24 04:19:55,2013-11-25 09:02:04,13016357CF10A,2013-11-24,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,2013-11-24,2013-11-25,2,0,858,0,0,0\r\n2205,teresa-marie holness,teresa-marie,holness,2013-03-13,Female,1993-01-26,23,Less than 25,African-American,0,6,0,0,0,-1,2013-03-12 06:19:34,2013-03-13 08:18:42,13004934MM10A,2013-03-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-13,Risk of Violence,6,Medium,2013-03-13,2013-03-12,2013-03-13,0,0,1115,0,0,0\r\n2206,theodore blount,theodore,blount,2013-01-30,Male,1985-11-16,30,25 - 45,African-American,0,7,0,0,2,-1,2013-01-29 08:26:44,2013-01-30 08:54:42,07049837TC10A,2007-12-21,,1867,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-30,Risk of Violence,6,Medium,2013-01-30,2014-01-05,2014-04-15,2,0,340,0,0,0\r\n2208,mario baptiste,mario,baptiste,2013-08-26,Male,1984-02-09,32,25 - 45,African-American,0,7,0,0,2,0,2013-08-26 03:38:03,2013-08-27 05:13:33,13012049CF10A,2013-08-26,,0,F,Driving While License Revoked,1,14009957MM10A,(M1),0,2014-06-26,Battery,2014-06-26,2014-06-28,,1,14009957MM10A,(M1),2014-06-26,Battery,Risk of Recidivism,7,Medium,2013-08-26,Risk of Violence,5,Medium,2013-08-26,2014-06-26,2014-06-28,2,1,304,1,1,1\r\n2215,ricky farlow,ricky,farlow,2013-12-17,Male,1993-06-23,22,Less than 25,African-American,0,5,0,0,3,20,2014-01-06 01:56:32,2014-08-08 10:08:29,13016648CF10A,,2013-11-26,21,F,arrest case no charge,1,14000536CF10A,(F3),0,2014-01-06,Resist Officer w/Violence,2014-01-06,2014-08-08,,1,14000536CF10A,(F3),2014-01-06,Battery on Law Enforc Officer,Risk of Recidivism,5,Medium,2013-12-17,Risk of Violence,8,High,2013-12-17,2014-01-06,2014-08-08,3,0,20,1,1,1\r\n2216,dainsley mckenzie,dainsley,mckenzie,2013-02-15,Male,1971-09-05,44,25 - 45,African-American,0,2,0,0,2,-1,2013-02-14 06:58:25,2013-02-16 01:33:11,13002293CF10A,2013-02-14,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-15,Risk of Violence,1,Low,2013-02-15,2013-02-14,2013-02-16,2,1,1141,0,0,0\r\n2217,patrick kallman,patrick,kallman,2013-05-26,Male,1984-04-06,32,25 - 45,Caucasian,0,4,0,0,3,-1,2013-05-25 06:05:51,2013-08-19 09:19:45,13007491CF10A,2013-05-25,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-26,Risk of Violence,4,Low,2013-05-26,2015-01-29,2015-02-01,3,85,613,0,0,0\r\n2218,markee singletary,markee,singletary,2013-09-21,Female,1989-04-13,27,25 - 45,African-American,0,2,0,0,1,-1,2013-09-20 11:29:45,2013-09-21 08:27:05,13017989MM10A,2013-09-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-21,Risk of Violence,2,Low,2013-09-21,2013-09-20,2013-09-21,1,0,923,0,0,0\r\n2221,james ursia,james,ursia,2014-09-22,Male,1954-09-26,61,Greater than 45,Caucasian,0,2,0,0,3,0,2014-09-22 07:01:15,2014-09-23 03:26:36,14014041MM10A,2014-09-22,,0,M,Battery,1,14038792MU10A,(M1),0,2014-10-20,Refuse Submit Blood/Breath Test,2014-10-20,2014-10-20,,1,15008835CF10A,(F2),2015-07-09,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,2,Low,2014-09-22,Risk of Violence,1,Low,2014-09-22,2014-10-20,2014-10-20,3,1,28,0,1,1\r\n2222,billy henley,billy,henley,2013-08-07,Male,1947-02-24,69,Greater than 45,African-American,0,1,0,0,3,0,2013-08-07 02:40:49,2013-08-07 08:00:30,13014927MM10A,2013-08-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-07,Risk of Violence,2,Low,2013-08-07,2013-08-07,2013-08-07,3,0,968,0,0,0\r\n2223,leo beckford,leo,beckford,2013-08-14,Male,1964-08-24,51,Greater than 45,Other,0,1,0,0,2,-1,2013-08-13 06:08:08,2013-09-16 07:20:06,13011387CF10A,2013-08-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-14,Risk of Violence,1,Low,2013-08-14,2013-08-13,2013-09-16,2,33,961,0,0,0\r\n2224,alexandra figueroa,alexandra,figueroa,2014-01-30,Female,1995-02-16,21,Less than 25,Caucasian,0,6,0,0,1,-1,2014-01-29 07:19:41,2014-01-31 03:52:13,14000347CF10A,2013-11-05,,86,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-30,Risk of Violence,6,Medium,2014-01-30,2015-03-23,2015-04-10,1,1,417,0,0,0\r\n2231,james scott,james,scott,2013-01-31,Male,1992-01-17,24,Less than 25,African-American,0,9,5,0,12,0,2013-01-31 03:56:16,2013-03-09 03:03:58,12047991TC10A,,2013-01-31,0,M,arrest case no charge,1,13002145CF10A,(M2),42,2013-02-07,Petit Theft,2013-03-21,2013-05-25,,1,14001817CF10A,(F1),2014-02-09,Agg Battery Law Enforc Officer,Risk of Recidivism,9,High,2013-01-31,Risk of Violence,9,High,2013-01-31,2013-01-31,2013-03-09,12,0,7,1,1,1\r\n2234,guillermo mena,guillermo,mena,2013-09-23,Male,1959-02-10,57,Greater than 45,Hispanic,0,1,0,0,3,-2,2013-09-21 01:28:03,2013-09-22 01:50:17,13013319CF10A,2013-09-21,,2,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-21,2013-09-22,3,0,921,0,0,0\r\n2235,joseph navarro,joseph,navarro,2013-08-06,Male,1985-11-02,30,25 - 45,Caucasian,0,7,0,0,6,-1,2013-08-05 09:52:27,2013-08-12 07:37:35,13004813CF10A,,2013-08-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-06,Risk of Violence,8,High,2013-08-06,2013-08-05,2013-08-12,6,6,969,0,0,0\r\n2237,alrick harris,alrick,harris,2013-08-23,Male,1991-12-12,24,Less than 25,African-American,0,7,0,1,4,-1,2013-08-22 04:33:49,2013-08-27 01:19:42,13011830CF10A,2013-08-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-23,Risk of Violence,4,Low,2013-08-23,2014-04-12,2014-04-13,4,4,232,0,0,0\r\n2239,amy gildon,amy,gildon,2013-10-29,Female,1985-11-04,30,25 - 45,Caucasian,0,7,0,0,7,-18,2013-10-11 07:33:17,2013-10-29 05:43:13,13011376MM10A,,2013-10-12,17,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-29,Risk of Violence,3,Low,2013-10-29,2013-10-11,2013-10-29,7,0,885,0,0,0\r\n2243,david tal-mason,david,tal-mason,2014-07-21,Male,1958-12-14,57,Greater than 45,Caucasian,0,2,0,0,0,,,,,,,,M,,1,14015383CF10A,(F3),0,2014-11-15,Resist Officer w/Violence,2014-11-15,2014-11-16,,1,14015383CF10A,(F3),2014-11-15,Battery on Law Enforc Officer,Risk of Recidivism,2,Low,2014-07-21,Risk of Violence,1,Low,2014-07-21,2014-11-15,2014-11-16,0,0,117,1,1,1\r\n2245,rebecca lowery,rebecca,lowery,2013-01-02,Female,1960-04-18,56,Greater than 45,Caucasian,0,8,0,0,1,-1,2013-01-01 08:39:42,2013-06-20 05:12:00,13000039CF10A,2013-01-01,,1,F,Felony DUI (level 3),0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-02,Risk of Violence,3,Low,2013-01-02,2013-06-20,2014-01-21,1,384,1185,0,0,0\r\n2246,adrian mclemore,adrian,mclemore,2013-02-20,Male,1994-06-27,21,Less than 25,African-American,0,8,0,0,1,-8,2013-02-12 01:28:50,2013-02-20 09:54:56,13002192CF10A,,2013-02-12,8,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-20,Risk of Violence,8,High,2013-02-20,2013-03-29,2013-12-12,1,0,37,0,0,0\r\n2247,anthony perry,anthony,perry,2013-01-05,Male,1984-08-15,31,25 - 45,African-American,3,10,0,0,6,-1,2013-01-04 04:19:50,2013-02-04 12:38:13,13000174CF10A,2013-01-04,,1,F,Resist Officer w/Violence,1,13009179CF10A,(F3),0,2013-06-29,Felony Battery w/Prior Convict,2013-06-29,2014-11-18,,1,13009179CF10A,(F3),2013-06-29,Felony Battery (Dom Strang),Risk of Recidivism,10,High,2013-01-05,Risk of Violence,6,Medium,2013-01-05,2013-06-29,2014-11-18,6,30,175,1,1,1\r\n2248,markiesha gill,markiesha,gill,2013-04-18,Female,1992-09-11,23,Less than 25,African-American,0,9,0,0,1,-1,2013-04-17 03:45:44,2013-04-18 09:35:33,13005529CF10A,,2013-04-17,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-18,Risk of Violence,8,High,2013-04-18,2013-04-17,2013-04-18,1,0,1079,0,0,0\r\n2252,jacques alinstant,jacques,alinstant,2013-06-17,Male,1973-08-20,42,25 - 45,Other,0,1,0,0,1,-13,2013-06-04 03:44:44,2013-06-04 07:34:46,13010751MM10A,2013-06-04,,13,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-17,Risk of Violence,1,Low,2013-06-17,2013-06-04,2013-06-04,1,0,1019,0,0,0\r\n2256,anthony wierengo,anthony,wierengo,2013-01-12,Male,1951-08-20,64,Greater than 45,Caucasian,0,3,0,0,0,-1,2013-01-11 08:49:41,2013-04-30 06:24:32,13000501CF10A,2013-01-11,,1,F,Sex Offender Fail Comply W/Law,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-12,Risk of Violence,2,Low,2013-01-12,2013-04-30,2013-11-15,0,307,1175,0,0,0\r\n2258,almalinda gonzalez,almalinda,gonzalez,2014-12-28,Female,1995-01-11,21,Less than 25,Caucasian,0,6,0,0,0,-1,2014-12-27 09:18:01,2014-12-28 01:35:14,14017089CF10A,2014-12-27,,1,F,Grand Theft in the 3rd Degree,1,15005073CF10A,(F3),0,2015-04-17,Grand Theft in the 3rd Degree,2015-04-17,2015-04-18,,1,15002242MM20A,(M1),2015-08-15,Battery,Risk of Recidivism,6,Medium,2014-12-28,Risk of Violence,6,Medium,2014-12-28,2015-04-17,2015-04-18,0,0,110,1,1,1\r\n2259,lee williams,lee,williams,2013-10-30,Male,1979-12-04,36,25 - 45,African-American,0,3,0,0,5,17,2013-11-16 02:26:39,2013-11-27 05:46:49,08018965CF10A,,2011-08-27,795,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-30,Risk of Violence,2,Low,2013-10-30,2013-11-16,2013-11-27,5,0,17,0,0,0\r\n2261,ernestine parrish,ernestine,parrish,2013-08-30,Female,1965-11-17,50,Greater than 45,African-American,0,1,0,0,1,-1,2013-08-29 06:41:54,2013-08-30 08:31:24,12014982CF10A,,2013-08-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-30,Risk of Violence,1,Low,2013-08-30,2013-08-29,2013-08-30,1,0,945,0,0,0\r\n2263,reuben billie,reuben,billie,2013-04-26,Male,1987-12-22,28,25 - 45,Native American,0,3,0,0,2,-1,2013-04-25 08:44:42,2013-06-13 10:12:31,13005974CF10A,2013-04-25,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-26,Risk of Violence,4,Low,2013-04-26,2013-04-25,2013-06-13,2,48,1071,0,0,0\r\n2268,lauren perry,lauren,perry,2013-01-28,Female,1990-04-20,25,25 - 45,Caucasian,0,7,0,0,5,-3,2013-01-25 01:47:43,2013-01-25 09:37:49,13001264CF10A,2013-01-24,,4,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-28,Risk of Violence,4,Low,2013-01-28,2013-02-15,2013-02-20,5,0,18,0,0,0\r\n2269,patricia maccall,patricia,maccall,2013-09-12,Female,1969-04-19,47,Greater than 45,African-American,0,6,0,0,1,,,,11013532CF10A,2011-08-12,,762,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-12,Risk of Violence,3,Low,2013-09-12,,,1,0,932,0,0,0\r\n2272,freddy romero,freddy,romero,2013-11-01,Male,1963-01-11,53,Greater than 45,Hispanic,0,10,0,0,4,,,,11007863CF10A,,2012-06-29,490,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-11-01,Risk of Violence,5,Medium,2013-11-01,2012-06-27,2012-07-01,4,0,882,0,0,0\r\n2274,joseph diaz,joseph,diaz,2014-04-09,Male,1961-06-21,54,Greater than 45,Caucasian,0,4,0,0,14,-1,2014-04-08 09:56:20,2014-05-06 10:12:47,14005998MM10A,2014-04-08,,1,M,Battery,1,14007611MM10A,(M1),0,2014-05-07,Resist/Obstruct W/O Violence,2014-05-07,2014-08-05,,1,15007515CF10A,(F3),2015-06-09,Battery Emergency Care Provide,Risk of Recidivism,4,Low,2014-04-09,Risk of Violence,3,Low,2014-04-09,2014-05-07,2014-08-05,14,27,28,1,1,1\r\n2276,oneil ebanks,oneil,ebanks,2013-12-27,Male,1979-01-14,37,25 - 45,Other,0,1,0,0,6,-1,2013-12-26 04:59:22,2013-12-27 08:15:19,13023823MM10A,2013-12-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-27,Risk of Violence,2,Low,2013-12-27,2013-12-26,2013-12-27,6,0,826,0,0,0\r\n2277,omar sao,omar,sao,2013-11-07,Male,1990-09-22,25,25 - 45,Caucasian,0,9,0,1,5,-1,2013-11-06 11:10:50,2013-11-21 09:35:41,13013970MM10A,,2013-11-06,1,M,arrest case no charge,1,14067085TC40A,(M1),18,2014-09-29,Opert With Susp DL 2nd Offens,2014-10-17,2014-10-18,,1,15009628CF10A,(F3),2015-03-16,Felony Battery w/Prior Convict,Risk of Recidivism,9,High,2013-11-07,Risk of Violence,8,High,2013-11-07,2013-11-06,2013-11-21,5,14,326,1,1,1\r\n2279,james burns,james,burns,2014-03-22,Male,1981-03-25,35,25 - 45,African-American,0,7,0,0,2,-1,2014-03-21 03:10:20,2014-03-22 08:07:10,14004981MM10A,2014-03-21,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-22,Risk of Violence,4,Low,2014-03-22,2014-03-21,2014-03-22,2,0,741,0,0,0\r\n2282,shawn flecther,shawn,flecther,2014-03-23,Male,1984-01-18,32,25 - 45,African-American,0,3,0,0,2,,,,10019917CF10B,,2012-05-15,677,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-23,Risk of Violence,3,Low,2014-03-23,,,2,0,740,0,0,0\r\n2283,alton roberts,alton,roberts,2013-04-09,Male,1990-10-26,25,25 - 45,African-American,0,10,0,0,8,-1,2013-04-08 05:47:18,2013-04-10 01:26:53,13006769MM10A,2013-04-08,,1,M,Battery,1,13011245CF10A,(F3),0,2013-08-10,Attempted Robbery  No Weapon,2013-08-10,2013-10-02,,1,13011245CF10A,(F3),2013-08-10,Attempted Robbery  No Weapon,Risk of Recidivism,10,High,2013-04-09,Risk of Violence,10,High,2013-04-09,2013-04-23,2013-04-26,8,1,14,0,1,1\r\n2284,kenneth alvarez,kenneth,alvarez,2013-12-02,Male,1982-08-28,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-12-01 10:12:15,2013-12-02 01:55:48,13022369MM10A,2013-12-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-02,0,0,851,0,0,0\r\n2285,alexander santana,alexander,santana,2013-03-12,Male,1986-05-22,29,25 - 45,African-American,0,3,0,0,7,-1,2013-03-11 06:21:47,2013-03-13 02:21:18,13003329CF10A,,2013-03-11,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-12,Risk of Violence,4,Low,2013-03-12,2013-06-12,2013-06-14,7,1,92,0,0,0\r\n2286,jeffrey sabogal,jeffrey,sabogal,2013-02-21,Male,1989-03-09,27,25 - 45,Hispanic,0,4,0,0,2,-1,2013-02-20 06:36:20,2013-02-21 01:30:47,13003618MM10A,2013-02-20,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-21,Risk of Violence,3,Low,2013-02-21,2013-02-20,2013-02-21,2,0,1135,0,0,0\r\n2289,chloe bridges,chloe,bridges,2014-03-26,Female,1995-06-26,20,Less than 25,Caucasian,0,10,2,1,3,-1,2014-03-25 06:58:54,2014-03-26 01:23:55,14005167MM10A,2014-03-25,,1,M,Battery,1,15008702MM10A,(M1),0,2015-08-17,Battery,2015-08-17,2015-08-18,,1,15008702MM10A,(M1),2015-08-17,Battery,Risk of Recidivism,10,High,2014-03-26,Risk of Violence,8,High,2014-03-26,2014-04-22,2014-05-28,3,0,27,0,1,1\r\n2291,joseph mcmahon,joseph,mcmahon,2013-06-17,Male,1943-12-30,72,Greater than 45,Caucasian,0,1,0,0,1,-23,2013-05-25 07:53:47,2013-05-26 08:34:25,13010046MM10A,2013-05-25,,23,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-17,Risk of Violence,1,Low,2013-06-17,2013-05-25,2013-05-26,1,0,1019,0,0,0\r\n2292,alex kantzelis,alex,kantzelis,2013-04-17,Male,1977-06-11,38,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-16 03:54:04,2013-04-18 10:30:00,13005461CF10A,2013-04-16,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-17,Risk of Violence,1,Low,2013-04-17,2014-10-14,2014-10-17,0,1,545,0,0,0\r\n2293,santos perez,santos,perez,2013-03-09,Male,1975-08-31,40,25 - 45,Caucasian,0,2,0,0,0,-1,2013-03-08 09:44:15,2013-03-09 01:22:15,13003459CF10A,2013-03-08,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2013-03-08,2013-03-09,0,0,1119,0,0,0\r\n2294,jose pascual,jose,pascual,2014-03-13,Male,1993-01-25,23,Less than 25,Caucasian,0,3,0,0,0,-1,2014-03-12 12:50:45,2014-03-13 10:24:23,14003530CF10A,2014-03-12,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-13,Risk of Violence,4,Low,2014-03-13,2014-03-12,2014-03-13,0,0,750,0,0,0\r\n2297,kyle cossick,kyle,cossick,2014-05-19,Male,1995-01-10,21,Less than 25,Caucasian,0,8,0,0,5,-10,2014-05-09 09:30:19,2014-05-11 01:49:57,14006500CF10A,2014-05-09,,10,F,Poss Pyrrolidinovalerophenone,1,14016163CF10A,(F2),36,2014-10-29,Agg Battery Grt/Bod/Harm,2014-12-04,2015-09-11,,1,14016163CF10A,(F2),2014-10-29,Agg Battery Grt/Bod/Harm,Risk of Recidivism,8,High,2014-05-19,Risk of Violence,8,High,2014-05-19,2016-03-23,2016-03-29,5,0,163,1,1,1\r\n2303,leah hein,leah,hein,2014-01-10,Female,1975-04-11,41,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-09 08:49:51,2014-01-10 01:49:35,14000418MM10A,2014-01-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-10,Risk of Violence,1,Low,2014-01-10,2014-01-09,2014-01-10,0,0,812,0,0,0\r\n2306,george zargos,george,zargos,2013-05-16,Male,1959-08-15,56,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-05-15 06:33:00,2013-05-17 09:07:02,13009401MM10A,2013-05-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-16,Risk of Violence,1,Low,2013-05-16,2013-05-15,2013-05-17,1,1,1051,0,0,0\r\n2307,billy johnson,billy,johnson,2013-05-03,Male,1961-01-18,55,Greater than 45,Caucasian,0,7,0,0,11,-1,2013-05-02 03:15:21,2013-06-28 09:30:37,11083457TC20A,,2012-05-30,338,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-03,Risk of Violence,3,Low,2013-05-03,2013-10-01,2013-10-19,11,56,151,0,0,0\r\n2310,lloyd sterling,lloyd,sterling,2013-08-24,Male,1987-05-17,28,25 - 45,African-American,0,2,0,0,3,-1,2013-08-23 12:58:10,2013-08-24 09:05:06,13011917CF10A,2013-08-23,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-24,Risk of Violence,2,Low,2013-08-24,2013-08-23,2013-08-24,3,0,951,0,0,0\r\n2311,barrington christie,barrington,christie,2013-05-02,Male,1985-03-03,31,25 - 45,Other,0,2,0,0,2,-1,2013-05-01 03:08:07,2013-05-14 11:36:33,13006246CF10A,,2013-05-01,1,F,arrest case no charge,1,14009764CF10A,(M1),140,2014-03-07,Viol Injunct Domestic Violence,2014-07-25,2014-07-29,,1,14009764CF10A,(F2),2014-03-07,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,2,Low,2013-05-02,Risk of Violence,4,Low,2013-05-02,2013-05-01,2013-05-14,2,12,309,1,1,1\r\n2314,michael barfield,michael,barfield,2013-05-17,Male,1959-09-19,56,Greater than 45,African-American,0,2,0,0,3,-49,2013-03-29 09:31:42,2013-05-17 10:53:22,13006073MM10A,2013-03-29,,49,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-17,Risk of Violence,1,Low,2013-05-17,2013-07-14,2013-08-05,3,0,58,0,0,0\r\n2316,michael burgess,michael,burgess,2013-04-15,Male,1963-03-17,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-14 09:55:04,2013-04-15 07:44:31,13007213MM10A,2013-04-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-15,Risk of Violence,1,Low,2013-04-15,2013-04-14,2013-04-15,0,0,1082,0,0,0\r\n2321,terrance williams,terrance,williams,2013-03-02,Male,1982-11-19,33,25 - 45,African-American,0,6,0,0,7,-1,2013-03-01 05:09:59,2013-03-03 04:26:19,13004224MM10A,2013-03-01,,1,M,Viol Prot Injunc Repeat Viol,1,14008781CF10A,(F3),0,2014-05-30,Felony Battery w/Prior Convict,2014-05-30,2014-05-31,,1,14008676MM10A,(M1),2014-05-30,Battery,Risk of Recidivism,6,Medium,2013-03-02,Risk of Violence,7,Medium,2013-03-02,2013-12-12,2014-04-21,7,1,285,0,1,1\r\n2322,kirk jenkins,kirk,jenkins,2013-04-26,Male,1982-01-16,34,25 - 45,African-American,0,7,0,0,15,-6,2013-04-20 04:52:17,2013-04-26 10:39:19,13005663CF10A,,2013-04-20,6,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-26,Risk of Violence,7,Medium,2013-04-26,2013-12-12,2013-12-16,15,0,230,0,0,0\r\n2326,jerrod moore,jerrod,moore,2013-01-15,Male,1983-11-15,32,25 - 45,African-American,0,8,0,0,12,-1,2013-01-14 02:13:57,2013-01-15 06:58:20,13000626CF10A,2013-01-14,,1,F,Possession of Cocaine,1,16000466CF10A,(F3),0,2016-01-12,,2016-01-12,2016-01-13,,0,,,,,Risk of Recidivism,8,High,2013-01-15,Risk of Violence,6,Medium,2013-01-15,2016-01-12,2016-01-13,12,0,1092,1,0,0\r\n2328,christopher piperwang,christopher,piperwang,2013-01-10,Male,1991-12-01,24,Less than 25,Asian,0,2,0,0,0,0,2013-01-10 02:33:14,2013-01-10 06:49:00,13000598MM10A,2013-01-09,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-10,Risk of Violence,3,Low,2013-01-10,2013-01-10,2013-01-10,0,0,1177,0,0,0\r\n2332,michael hin,michael,hin,2013-04-30,Male,1960-01-23,56,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-30 12:38:57,2013-04-30 07:45:44,13006137CF10A,2013-04-29,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-30,Risk of Violence,1,Low,2013-04-30,2013-04-30,2013-04-30,0,0,1067,0,0,0\r\n2334,gabriel lovato,gabriel,lovato,2013-01-07,Male,1979-10-17,36,25 - 45,Hispanic,0,4,0,0,1,30,2013-02-06 10:09:18,2013-05-24 06:02:05,12018293CF10A,2012-12-16,,22,F,Aggravated Battery,1,13001876CF10A,(F7),,2013-02-06,Armed Kidnapping,,,,1,13001876CF10A,(F7),2013-02-06,Armed Kidnapping,Risk of Recidivism,4,Low,2013-01-07,Risk of Violence,4,Low,2013-01-07,2013-02-06,2013-05-24,1,0,30,1,1,1\r\n2335,joey willingham,joey,willingham,2013-05-14,Male,1988-03-18,28,25 - 45,African-American,0,6,0,0,4,0,2013-05-14 03:57:54,2013-06-04 05:09:09,13006892CF10A,2013-05-13,,1,F,Burglary Dwelling Assault/Batt,1,13014757MM10A,(M1),1,2013-08-05,Viol Injunct Domestic Violence,2013-08-06,2013-08-16,,1,15007770CF10A,(F3),2015-06-13,Robbery Sudd Snatch No Weapon,Risk of Recidivism,6,Medium,2013-05-14,Risk of Violence,5,Medium,2013-05-14,2013-05-14,2013-06-04,4,21,83,1,1,1\r\n2338,osvaldo rodriquez,osvaldo,rodriquez,2013-08-27,Male,1957-03-28,59,Greater than 45,Hispanic,0,1,0,0,0,-2,2013-08-25 04:54:17,2013-08-26 08:49:40,13016251MM10A,2013-08-25,,2,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,2013-08-25,2013-08-26,0,0,948,0,0,0\r\n2342,glorisha davis,glorisha,davis,2013-11-03,Female,1986-11-30,29,25 - 45,African-American,0,8,0,0,11,-1,2013-11-02 11:52:10,2013-11-03 07:25:02,13015266CF10A,2013-11-02,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-03,Risk of Violence,5,Medium,2013-11-03,2013-11-02,2013-11-03,11,0,880,0,0,0\r\n2343,david hutton,david,hutton,2014-03-19,Male,1944-01-22,72,Greater than 45,Caucasian,0,1,0,0,3,-5,2014-03-14 12:25:05,2014-03-19 02:55:55,75003147CF10A,,2014-03-14,5,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-19,Risk of Violence,1,Low,2014-03-19,2014-03-14,2014-03-19,3,0,744,0,0,0\r\n2349,jean joseph,jean,joseph,2013-07-31,Male,1971-03-12,45,Greater than 45,African-American,0,9,0,0,3,6,2013-08-06 05:19:17,2013-09-11 11:36:45,13009009CF10A,2013-06-26,,35,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-07-31,Risk of Violence,1,Low,2013-07-31,2013-08-06,2013-09-11,3,0,6,0,0,0\r\n2352,evience aime,evience,aime,2013-01-02,Male,1970-12-06,45,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-01 11:17:23,2013-01-02 07:35:39,13000056MM10A,2013-01-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-02,Risk of Violence,1,Low,2013-01-02,2013-01-01,2013-01-02,0,0,1185,0,0,0\r\n2353,edward marko,edward,marko,2014-02-12,Male,1968-06-14,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-11 08:50:50,2014-02-12 08:19:27,14002371MM10A,2014-02-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-12,Risk of Violence,1,Low,2014-02-12,2014-02-11,2014-02-12,0,0,779,0,0,0\r\n2357,cornelius mccloud,cornelius,mccloud,2014-03-05,Male,1982-01-22,34,25 - 45,African-American,0,3,0,0,2,,,,13070495NI20A,2013-10-28,,128,M,Ride Tri-Rail Without Paying,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-05,Risk of Violence,2,Low,2014-03-05,2007-07-26,2008-03-22,2,0,758,0,0,0\r\n2360,zaire stroman,zaire,stroman,2013-04-10,Male,1994-03-02,22,Less than 25,Hispanic,0,3,0,0,2,102,2013-07-21 08:15:37,2013-07-22 02:48:13,12011072CF10A,,2012-07-27,257,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-10,Risk of Violence,6,Medium,2013-04-10,2013-07-21,2013-07-22,2,0,102,0,0,0\r\n2363,christopher agapay,christopher,agapay,2013-09-12,Male,1974-10-30,41,25 - 45,Caucasian,0,1,0,0,5,-1,2013-09-11 06:57:23,2013-09-12 08:29:30,13012876CF10A,2013-09-11,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2013-09-11,2013-09-12,5,0,932,0,0,0\r\n2365,james yarbough,james,yarbough,2014-01-21,Male,1966-04-30,49,Greater than 45,Caucasian,0,3,0,0,1,-16,2014-01-05 12:24:06,2014-01-18 09:56:35,14000164CF10A,2014-01-04,,17,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-21,Risk of Violence,1,Low,2014-01-21,2014-01-05,2014-01-18,1,0,801,0,0,0\r\n2366,john lopez,john,lopez,2013-10-07,Male,1989-11-27,26,25 - 45,Hispanic,0,1,0,0,0,-1,2013-10-06 06:10:59,2013-10-07 02:03:13,13018986MM10A,2013-10-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-07,Risk of Violence,2,Low,2013-10-07,2013-10-06,2013-10-07,0,0,907,0,0,0\r\n2367,barbara magnum,barbara,magnum,2013-12-17,Female,1981-11-06,34,25 - 45,Caucasian,0,3,0,0,2,-49,2013-10-29 08:31:46,2013-12-09 09:47:28,13015084CF10A,2013-10-29,,49,F,Uttering a Forged Instrument,1,14006913MM10A,(M1),,2014-02-08,Petit Theft $100- $300,,,,1,14004799CF10A,(F2),2014-04-04,Robbery / No Weapon,Risk of Recidivism,3,Low,2013-12-17,Risk of Violence,2,Low,2013-12-17,2014-04-04,2014-10-15,2,0,53,1,1,1\r\n2370,shadae scott,shadae,scott,2013-10-21,Female,1987-06-28,28,25 - 45,African-American,0,3,0,0,0,-1,2013-10-20 09:56:04,2013-10-21 09:59:59,13019834MM10A,2013-10-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-21,Risk of Violence,3,Low,2013-10-21,2013-10-20,2013-10-21,0,0,893,0,0,0\r\n2371,caesar silva,caesar,silva,2013-03-30,Male,1982-11-02,33,25 - 45,Caucasian,0,2,0,0,2,-1,2013-03-29 10:41:27,2013-03-31 02:30:16,13020967TC10A,2013-03-29,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-30,Risk of Violence,2,Low,2013-03-30,2013-03-29,2013-03-31,2,1,1098,0,0,0\r\n2372,jospeh lenoir,jospeh,lenoir,2013-11-12,Male,1969-06-28,46,Greater than 45,African-American,0,7,0,0,0,0,2013-11-12 12:24:02,2013-11-13 02:28:20,13015695CF10A,2013-11-11,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-12,Risk of Violence,4,Low,2013-11-12,2013-11-12,2013-11-13,0,1,871,0,0,0\r\n2374,rakesh davis,rakesh,davis,2013-03-07,Male,1994-04-21,21,Less than 25,African-American,0,4,0,0,0,-1,2013-03-06 12:46:52,2013-03-08 05:32:23,13004552MM10A,2013-03-06,,1,M,Disrupting School Function,1,16000621MM10A,(M2),,2015-12-31,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-07,Risk of Violence,6,Medium,2013-03-07,2013-03-06,2013-03-08,0,1,1029,1,0,0\r\n2380,lorena aristizabal,lorena,aristizabal,2013-12-11,Female,1987-06-25,28,25 - 45,Hispanic,0,5,0,0,2,-68,2013-10-04 02:31:01,2013-10-11 10:49:07,13018003MM10A,,2013-10-07,65,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-11,Risk of Violence,4,Low,2013-12-11,2013-10-04,2013-10-11,2,0,842,0,0,0\r\n2383,adrian phillips,adrian,phillips,2013-01-03,Male,1987-03-12,29,25 - 45,Other,0,1,0,0,0,-1,2013-01-02 08:04:21,2013-01-03 11:24:59,13000084CF10A,2013-01-02,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2013-01-02,2013-01-03,0,0,1184,0,0,0\r\n2387,antwan davis,antwan,davis,2013-05-10,Male,1995-03-16,21,Less than 25,Caucasian,0,8,0,0,0,0,2013-05-10 02:20:24,2013-05-14 05:41:25,13006723CF10A,2013-05-09,,1,F,Grand Theft in the 3rd Degree,1,13013645CF10A,(F2),1,2013-09-28,Robbery / No Weapon,2013-09-29,2013-10-03,,1,13013645CF10A,(F2),2013-09-28,Robbery / No Weapon,Risk of Recidivism,8,High,2013-05-10,Risk of Violence,10,High,2013-05-10,2013-05-10,2013-05-14,0,4,141,1,1,1\r\n2388,isnor richardson,isnor,richardson,2013-02-15,Male,1989-11-08,26,25 - 45,Other,0,7,0,0,0,-1,2013-02-14 12:24:49,2013-02-15 07:56:24,13002327CF10A,2013-02-14,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-15,Risk of Violence,5,Medium,2013-02-15,2013-02-14,2013-02-15,0,0,1141,0,0,0\r\n2389,stanley lemorin,stanley,lemorin,2013-04-29,Male,1981-09-18,34,25 - 45,African-American,0,1,0,0,3,-4,2013-04-25 12:41:50,2013-04-26 07:20:08,12018748MM10A,,2013-04-25,4,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-25,2013-04-26,3,0,1068,0,0,0\r\n2393,ramone hall,ramone,hall,2014-03-21,Male,1993-07-18,22,Less than 25,African-American,0,3,0,0,0,-1,2014-03-20 06:54:43,2014-03-21 08:13:07,14003963CF10A,2014-03-20,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-21,Risk of Violence,5,Medium,2014-03-21,2014-03-20,2014-03-21,0,0,742,0,0,0\r\n2396,patricia yates,patricia,yates,2013-05-18,Female,1959-01-12,57,Greater than 45,Caucasian,0,4,0,0,0,-1,2013-05-17 03:48:40,2013-05-18 08:14:16,13009555MM10A,2013-05-17,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-18,Risk of Violence,1,Low,2013-05-18,2013-05-17,2013-05-18,0,0,1049,0,0,0\r\n2398,pamela corriveau,pamela,corriveau,2013-06-21,Female,1959-09-21,56,Greater than 45,Caucasian,0,1,0,0,1,-20,2013-06-01 06:55:42,2013-06-02 08:24:40,13007797CF10A,2013-06-01,,20,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-21,Risk of Violence,1,Low,2013-06-21,2013-06-01,2013-06-02,1,0,1015,0,0,0\r\n2400,michael mack,michael,mack,2013-05-01,Male,1986-02-02,30,25 - 45,African-American,0,8,2,2,11,-1,2013-04-30 09:54:32,2013-05-01 08:55:25,13006213CF10A,2013-04-30,,1,F,Strong Armed  Robbery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-01,Risk of Violence,3,Low,2013-05-01,2013-06-25,2013-06-27,11,0,55,0,0,0\r\n2401,jason sucarichi,jason,sucarichi,2014-03-17,Male,1986-08-07,29,25 - 45,African-American,0,1,0,0,2,-1,2014-03-16 09:38:22,2014-03-17 02:19:07,14010461MU10A,2014-03-16,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-16,2014-03-17,2,0,746,0,0,0\r\n2404,demetrius robinson,demetrius,robinson,2013-10-03,Male,1980-02-03,36,25 - 45,African-American,2,10,0,0,5,-64,2013-07-31 06:00:39,2013-08-02 04:52:28,13010709CF10A,2013-07-31,,64,F,Poss Trifluoromethylphenylpipe,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-10-03,Risk of Violence,8,High,2013-10-03,2015-02-25,2015-06-24,5,0,510,0,0,0\r\n2405,yvelourdes duval,yvelourdes,duval,2014-02-26,Female,1992-04-05,24,Less than 25,African-American,0,3,0,0,0,-1,2014-02-25 09:55:41,2014-02-26 09:35:41,14002656CF10A,2014-02-25,,1,F,Felony Batt(Great Bodily Harm),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-26,Risk of Violence,4,Low,2014-02-26,2014-02-25,2014-02-26,0,0,765,0,0,0\r\n2406,everley davis,everley,davis,2013-01-28,Female,1946-04-17,70,Greater than 45,African-American,0,1,0,0,1,-1,2013-01-27 07:29:53,2013-01-29 07:21:13,12016368CF10A,,2013-01-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-01-29,1,1,1159,0,0,0\r\n2408,paula randazzo,paula,randazzo,2013-01-17,Female,1970-11-09,45,Greater than 45,Caucasian,0,1,0,0,1,-11,2013-01-06 09:52:49,2013-01-07 01:30:27,13000288MM10A,2013-01-06,,11,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-17,Risk of Violence,1,Low,2013-01-17,2013-01-06,2013-01-07,1,0,1170,0,0,0\r\n2410,tiffany torres,tiffany,torres,2013-10-21,Female,1982-05-12,33,25 - 45,Hispanic,0,4,0,0,2,-1,2013-10-20 05:05:52,2013-10-22 05:40:12,13019860MM10A,2013-10-20,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-21,Risk of Violence,2,Low,2013-10-21,2013-10-20,2013-10-22,2,1,893,0,0,0\r\n2411,tedra roach,tedra,roach,2013-01-19,Female,1976-05-31,39,25 - 45,African-American,0,5,1,0,6,0,2013-01-19 02:54:51,2013-01-20 01:40:51,13000899CF10A,2013-01-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-19,Risk of Violence,2,Low,2013-01-19,2013-01-19,2013-01-20,6,1,1168,0,0,0\r\n2412,ahmed gamaa,ahmed,gamaa,2013-05-02,Male,1991-04-17,25,25 - 45,Caucasian,0,4,1,0,6,-16,2013-04-16 09:53:01,2013-04-18 07:30:00,13003961CF10A,,2013-04-16,16,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-02,Risk of Violence,3,Low,2013-05-02,2013-04-16,2013-04-18,6,0,1065,0,0,0\r\n2415,carlos allen,carlos,allen,2013-01-31,Male,1968-01-03,48,Greater than 45,Hispanic,0,1,0,0,1,0,2013-01-31 02:01:00,2013-02-01 05:20:16,13002281MM10A,2013-01-30,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-31,Risk of Violence,1,Low,2013-01-31,2013-01-31,2013-02-01,1,1,1156,0,0,0\r\n2418,arismendy guareno-corona,arismendy,guareno-corona,2013-05-12,Male,1970-02-03,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-11 12:25:37,2013-05-12 07:06:09,13006769CF10A,2013-05-11,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-12,Risk of Violence,1,Low,2013-05-12,2013-05-11,2013-05-12,0,0,1055,0,0,0\r\n2420,cody rickard,cody,rickard,2013-01-24,Male,1987-10-20,28,25 - 45,Caucasian,0,2,0,0,0,0,2013-01-24 12:35:09,2013-01-27 08:05:49,13001601MM10A,2013-01-23,,1,M,Battery,1,14001333CF10A,(F3),,2013-06-24,Felony Battery (Dom Strang),,,,1,14001333CF10A,(F3),2013-06-24,Felony Battery (Dom Strang),Risk of Recidivism,2,Low,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-01-24,2013-01-27,0,3,151,1,1,1\r\n2421,richard werhle,richard,werhle,2013-03-28,Male,1983-06-24,32,25 - 45,Caucasian,0,2,0,0,1,,,,12016504MM10A,2012-08-11,,229,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,,,1,0,1100,0,0,0\r\n2422,william adams,william,adams,2014-01-29,Male,1989-03-25,27,25 - 45,African-American,0,2,0,0,1,-1,2014-01-28 08:05:58,2014-01-29 09:07:24,14001249CF10A,2014-01-28,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-29,Risk of Violence,2,Low,2014-01-29,2014-01-28,2014-01-29,1,0,793,0,0,0\r\n2425,joseph stunneck,joseph,stunneck,2013-08-21,Male,1972-07-29,43,25 - 45,Caucasian,0,7,0,0,11,16,2013-09-06 05:24:24,2013-11-22 04:21:07,13000251CF10A,2013-01-06,,227,F,Felony DUI (level 3),1,14015797CF10A,(M1),1,2014-11-23,Resist/Obstruct W/O Violence,2014-11-24,2015-01-28,,1,14015797CF10A,(F3),2014-11-23,Battery on a Person Over 65,Risk of Recidivism,7,Medium,2013-08-21,Risk of Violence,4,Low,2013-08-21,2013-09-06,2013-11-22,11,0,16,0,1,1\r\n2428,gregory barnes,gregory,barnes,2013-02-04,Male,1980-07-30,35,25 - 45,African-American,0,9,4,17,12,,,,11001881CF10A,2011-02-01,,734,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-04,Risk of Violence,4,Low,2013-02-04,2003-08-28,2010-07-29,12,0,1152,0,0,0\r\n2429,ivan chebaux-mcginty,ivan,chebaux-mcginty,2013-08-21,Male,1986-09-30,29,25 - 45,Caucasian,0,3,0,0,1,-22,2013-07-30 09:15:09,2013-07-31 01:52:59,13010656CF10A,2013-07-30,,22,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-21,Risk of Violence,2,Low,2013-08-21,2014-07-16,2014-09-16,1,0,329,0,0,0\r\n2431,melissa dowds,melissa,dowds,2013-11-23,Female,1995-06-25,20,Less than 25,Caucasian,0,4,0,0,0,0,2013-11-23 05:18:46,2013-11-23 09:23:39,13016306CF10A,2013-11-23,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-23,Risk of Violence,6,Medium,2013-11-23,2013-11-23,2013-11-23,0,0,860,0,0,0\r\n2432,zebedee taylor,zebedee,taylor,2013-12-18,Male,1986-11-12,29,25 - 45,African-American,0,1,0,0,0,-1,2013-12-17 09:14:03,2013-12-18 01:06:10,13017424CF10A,2013-12-17,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-18,Risk of Violence,2,Low,2013-12-18,2013-12-17,2013-12-18,0,0,835,0,0,0\r\n2437,nickenson metelus,nickenson,metelus,2014-01-10,Male,1987-12-02,28,25 - 45,Other,0,2,0,0,3,,,,13006130CF10A,,2013-05-06,249,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-10,Risk of Violence,3,Low,2014-01-10,,,3,0,812,0,0,0\r\n2438,charles tientn,charles,tientn,2013-08-20,Male,1948-10-07,67,Greater than 45,Asian,0,1,0,0,0,-1,2013-08-19 09:39:32,2013-08-20 01:59:18,13015742MM10A,2013-08-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-19,2013-08-20,0,0,955,0,0,0\r\n2439,michelle hall,michelle,hall,2013-02-03,Female,1970-02-22,46,Greater than 45,African-American,0,5,0,0,1,,,,10024514TC40A,2010-03-30,,1041,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-03,Risk of Violence,1,Low,2013-02-03,,,1,0,1153,0,0,0\r\n2441,christopher lokai,christopher,lokai,2013-08-13,Male,1990-12-01,25,25 - 45,Other,0,2,0,0,0,-1,2013-08-12 10:12:43,2013-08-13 08:19:01,13011338CF10A,2013-08-12,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-13,Risk of Violence,3,Low,2013-08-13,2013-08-12,2013-08-13,0,0,962,0,0,0\r\n2442,willie ryan,willie,ryan,2013-05-16,Male,1991-10-04,24,Less than 25,African-American,0,9,2,1,8,-1,2013-05-15 06:50:18,2013-05-16 04:10:04,13006935CF10A,,2013-05-15,1,F,arrest case no charge,1,14035115TC20A,(M2),20,2014-05-15,Operating W/O Valid License,2014-06-04,2014-06-21,,1,14008503CF10A,(F2),2014-06-19,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2013-05-16,Risk of Violence,9,High,2013-05-16,2014-11-18,2015-02-07,8,0,364,1,1,1\r\n2443,joel cadet,joel,cadet,2013-05-11,Male,1987-03-23,29,25 - 45,Other,0,6,0,0,3,-1,2013-05-10 05:06:24,2013-11-04 03:54:40,13006740CF10A,2013-05-10,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-11,Risk of Violence,2,Low,2013-05-11,2013-05-10,2013-11-04,3,177,1056,0,0,0\r\n2444,brian williams,brian,williams,2013-02-02,Male,1970-04-21,45,Greater than 45,African-American,0,6,0,0,2,-1,2013-02-01 10:14:11,2013-03-02 04:50:50,12001097MO40A,2012-02-23,,345,M,Carry Open/Uncov Bev In Pub,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-02,Risk of Violence,2,Low,2013-02-02,2013-02-01,2013-03-02,2,28,1154,0,0,0\r\n2451,david manning,david,manning,2014-02-05,Male,1955-03-01,61,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-04 08:06:57,2014-02-05 01:12:10,14004521MU10A,2014-02-04,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-05,Risk of Violence,1,Low,2014-02-05,2014-02-04,2014-02-05,0,0,786,0,0,0\r\n2454,jermane fearon,jermane,fearon,2013-06-14,Male,1984-02-13,32,25 - 45,Other,0,1,0,0,1,-15,2013-05-30 04:25:33,2013-06-14 11:57:29,13007725CF10A,2013-05-30,,15,F,Robbery W/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-14,Risk of Violence,1,Low,2013-06-14,2013-05-30,2013-06-14,1,0,1022,0,0,0\r\n2456,david odak,david,odak,2013-02-21,Male,1972-07-08,43,25 - 45,Caucasian,0,6,0,0,9,-2,2013-02-19 09:10:57,2013-02-20 06:59:39,13002527CF10A,2013-02-19,,2,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-21,Risk of Violence,1,Low,2013-02-21,2013-02-19,2013-02-20,9,0,1135,0,0,0\r\n2457,bryan scott,bryan,scott,2014-01-25,Male,1983-09-01,32,25 - 45,Other,0,1,0,0,0,-1,2014-01-24 01:37:33,2014-01-25 08:23:35,14001389MM10A,2014-01-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-25,Risk of Violence,1,Low,2014-01-25,2014-01-24,2014-01-25,0,0,797,0,0,0\r\n2459,rich omoruyi,rich,omoruyi,2014-02-12,Male,1979-11-10,36,25 - 45,African-American,0,5,0,0,0,-1,2014-02-11 12:51:04,2014-02-12 08:49:49,14001958CF10A,2014-02-11,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-12,Risk of Violence,2,Low,2014-02-12,2014-02-11,2014-02-12,0,0,779,0,0,0\r\n2462,lewis dufreme,lewis,dufreme,2013-04-16,Male,1984-02-10,32,25 - 45,African-American,0,2,0,0,1,,,,10024535MM10A,2010-11-13,,885,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-16,Risk of Violence,6,Medium,2013-04-16,,,1,0,1081,0,0,0\r\n2464,ronald shelton,ronald,shelton,2013-05-29,Male,1958-06-02,57,Greater than 45,African-American,0,9,0,0,12,-1,2013-05-28 08:29:39,2013-07-18 03:49:07,13007619CF10A,2013-05-28,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-29,Risk of Violence,6,Medium,2013-05-29,2013-05-28,2013-07-18,12,50,1038,0,0,0\r\n2465,marques medders,marques,medders,2013-01-14,Male,1978-11-17,37,25 - 45,African-American,0,7,0,0,2,0,2013-01-14 04:05:27,2013-01-14 08:46:06,13000635CF10A,2013-01-14,,0,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-14,Risk of Violence,6,Medium,2013-01-14,2013-01-14,2013-01-14,2,0,1173,0,0,0\r\n2467,stacy coley,stacy,coley,2013-10-23,Male,1971-10-03,44,25 - 45,African-American,0,6,0,0,6,-1,2013-10-22 04:50:30,2013-10-24 03:57:27,13014755CF10A,,2013-10-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-23,Risk of Violence,2,Low,2013-10-23,2013-10-22,2013-10-24,6,1,891,0,0,0\r\n2470,kennedy stevens,kennedy,stevens,2013-01-24,Male,1965-03-09,51,Greater than 45,African-American,0,2,0,0,8,,,,11019376CF10A,,2011-11-04,447,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-24,Risk of Violence,1,Low,2013-01-24,,,8,0,1163,0,0,0\r\n2471,jesus regueiro,jesus,regueiro,2013-04-15,Male,1970-09-14,45,Greater than 45,Hispanic,0,6,0,0,4,,,,12017200CF10A,2012-11-26,,140,F,Agg Assault Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-15,Risk of Violence,4,Low,2013-04-15,1999-12-03,2005-01-25,4,0,1082,0,0,0\r\n2472,william baumgartner,william,baumgartner,2013-09-24,Male,1987-07-27,28,25 - 45,Caucasian,0,8,0,2,9,112,2014-01-14 05:32:52,2014-05-11 04:56:33,12024497MM10A,2012-12-01,,297,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-24,Risk of Violence,6,Medium,2013-09-24,2014-01-14,2014-05-11,9,0,112,0,0,0\r\n2474,stevie johnson,stevie,johnson,2013-05-04,Male,1970-07-31,45,Greater than 45,African-American,0,7,0,0,8,-1,2013-05-03 07:04:28,2013-05-04 01:16:42,11009021CF10A,,2013-05-04,0,F,arrest case no charge,1,13039021TC10A,(M2),,2013-09-20,Driving License Suspended,,,,1,13017860CF10A,(M1),2013-12-27,Aggravated Battery / Pregnant,Risk of Recidivism,7,Medium,2013-05-04,Risk of Violence,4,Low,2013-05-04,2016-03-24,2020-01-01,8,0,139,1,1,1\r\n2475,norman willis,norman,willis,2013-03-29,Male,1967-11-27,48,Greater than 45,Other,0,1,0,0,1,-1,2013-03-28 08:32:43,2013-03-30 09:14:35,13004140CF10A,,2013-03-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-29,Risk of Violence,1,Low,2013-03-29,2013-03-28,2013-03-30,1,1,1099,0,0,0\r\n2478,christopher fernando,christopher,fernando,2013-03-17,Male,1990-06-27,25,25 - 45,African-American,0,3,0,0,0,-1,2013-03-16 04:30:03,2013-03-18 03:05:32,13003861CF10A,2013-03-16,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-17,Risk of Violence,4,Low,2013-03-17,2013-03-16,2013-03-18,0,1,1111,0,0,0\r\n2480,robert mcpherson,robert,mcpherson,2013-09-30,Male,1973-04-13,43,25 - 45,African-American,0,1,0,0,1,-1,2013-09-29 03:52:01,2013-09-30 08:01:14,08023370CF10A,,2013-09-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-29,2013-09-30,1,0,914,0,0,0\r\n2482,gary dyer,gary,dyer,2014-03-10,Male,1985-06-10,30,25 - 45,African-American,0,1,0,0,0,0,2014-03-10 03:07:16,2014-03-10 09:40:37,14004143MM10A,2014-03-10,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-10,Risk of Violence,1,Low,2014-03-10,2014-03-10,2014-03-10,0,0,753,0,0,0\r\n2484,alexander salow,alexander,salow,2013-09-23,Male,1965-10-09,50,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-09-21 08:09:22,2013-09-22 06:17:33,13018028MM10A,2013-09-21,,2,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-21,2013-09-22,0,0,921,0,0,0\r\n2485,angelika hawkins,angelika,hawkins,2013-10-08,Female,1984-06-03,31,25 - 45,African-American,0,2,0,0,2,-1,2013-10-07 05:44:38,2013-10-08 09:17:55,13014074CF10A,2013-10-07,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-08,Risk of Violence,2,Low,2013-10-08,2015-04-16,2015-04-21,2,0,555,0,0,0\r\n2486,lori koons,lori,koons,2013-11-08,Female,1982-09-18,33,25 - 45,Caucasian,0,6,0,0,7,-6,2013-11-02 07:20:05,2013-11-03 01:50:08,13020679MM10A,2013-11-02,,6,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-08,Risk of Violence,2,Low,2013-11-08,2013-11-02,2013-11-03,7,0,875,0,0,0\r\n2487,jermaine bowens,jermaine,bowens,2013-11-07,Male,1984-04-02,32,25 - 45,African-American,0,5,0,0,1,-1,2013-11-06 10:29:11,2013-11-26 06:16:00,13015485CF10A,2013-11-06,,1,F,False Ownership Info/Pawn Item,1,14017075CF10A,(F1),0,2014-12-27,Tampering with a Victim,2014-12-27,2015-02-02,,1,14017075CF10A,(F3),2014-12-27,Felony Battery (Dom Strang),Risk of Recidivism,5,Medium,2013-11-07,Risk of Violence,5,Medium,2013-11-07,2014-12-27,2015-02-02,1,19,415,1,1,1\r\n2489,gerald ocasio,gerald,ocasio,2013-03-28,Male,1993-12-21,22,Less than 25,Hispanic,0,6,0,0,0,-1,2013-03-27 07:30:55,2013-03-28 08:32:07,13004437CF10A,2013-03-27,,1,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-28,Risk of Violence,7,Medium,2013-03-28,2015-04-22,2015-05-07,0,0,755,0,0,0\r\n2495,kyle rivera,kyle,rivera,2013-03-01,Male,1994-12-12,21,Less than 25,Caucasian,0,5,0,0,0,0,2013-03-01 12:01:48,2013-03-01 01:51:31,13003032CF10A,2013-02-28,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-01,Risk of Violence,7,Medium,2013-03-01,2013-03-01,2013-03-01,0,0,1127,0,0,0\r\n2496,matthew daley,matthew,daley,2013-01-22,Male,1993-07-05,22,Less than 25,Other,0,9,0,0,1,,,,12005333CF10A,2012-04-10,,287,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-22,Risk of Violence,8,High,2013-01-22,,,1,0,1165,0,0,0\r\n2497,jean phanord,jean,phanord,2013-10-18,Male,1963-08-03,52,Greater than 45,Other,0,1,0,0,2,-1,2013-10-17 07:46:29,2013-10-18 07:52:25,13014545CF10A,,2013-10-17,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-18,Risk of Violence,1,Low,2013-10-18,2014-01-08,2014-01-15,2,0,82,0,0,0\r\n2498,william sternal,william,sternal,2013-09-29,Male,1966-07-01,49,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-09-28 06:28:33,2013-09-29 07:31:01,13018477MM10A,2013-09-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-29,Risk of Violence,1,Low,2013-09-29,2013-09-28,2013-09-29,2,0,915,0,0,0\r\n2501,devonte farley,devonte,farley,2013-08-28,Male,1993-09-11,22,Less than 25,African-American,0,2,0,0,0,-1,2013-08-27 05:03:28,2013-08-28 07:45:25,13012088CF10A,2013-08-27,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-28,Risk of Violence,4,Low,2013-08-28,2013-08-27,2013-08-28,0,0,947,0,0,0\r\n2502,fernando moreno,fernando,moreno,2013-04-19,Male,1971-04-07,45,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-04-18 04:57:29,2013-05-01 09:03:25,13005572CF10A,2013-04-18,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-18,2013-05-01,0,12,1078,0,0,0\r\n2507,berman stfleur,berman,stfleur,2013-03-17,Male,1988-02-24,28,25 - 45,African-American,0,6,0,0,5,-1,2013-03-16 04:56:02,2013-03-17 08:00:45,13005170MM10A,2013-03-16,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-17,Risk of Violence,2,Low,2013-03-17,2013-03-16,2013-03-17,5,0,1111,0,0,0\r\n2509,luben augustin,luben,augustin,2013-10-31,Male,1994-11-24,21,Less than 25,African-American,0,5,0,0,1,-1,2013-10-30 04:56:29,2013-11-10 09:03:31,13015144CF10A,2013-10-30,,1,F,Grand Theft in the 3rd Degree,1,14000335MM10A,(M2),99,2013-11-04,Disorderly Conduct,2014-02-11,2014-03-16,,1,14000335MM10A,(M1),2013-11-04,Battery,Risk of Recidivism,5,Medium,2013-10-31,Risk of Violence,8,High,2013-10-31,2013-10-30,2013-11-10,1,0,4,1,1,1\r\n2511,julian ruiz,julian,ruiz,2014-02-11,Male,1979-03-21,37,25 - 45,Hispanic,0,3,0,1,2,-1,2014-02-10 05:10:21,2014-02-11 08:51:53,14002287MM10A,2014-02-10,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-11,Risk of Violence,3,Low,2014-02-11,2014-02-10,2014-02-11,2,0,780,0,0,0\r\n2515,steven thompson,steven,thompson,2013-11-02,Male,1987-06-13,28,25 - 45,African-American,2,10,1,0,11,-1,2013-11-01 07:35:10,2013-11-27 07:48:37,13015262CF10A,2013-11-01,,1,F,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-11-02,Risk of Violence,5,Medium,2013-11-02,2013-11-01,2013-11-27,11,25,881,0,0,0\r\n2516,sha-de williams,sha-de,williams,2013-01-16,Male,1992-02-24,24,Less than 25,African-American,0,3,0,0,1,-1,2013-01-15 06:16:11,2013-01-16 08:39:11,13000683CF10A,2013-01-15,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-16,Risk of Violence,6,Medium,2013-01-16,2013-01-15,2013-01-16,1,0,1171,0,0,0\r\n2517,joel jasmin,joel,jasmin,2013-09-24,Male,1972-02-02,44,25 - 45,African-American,0,3,0,0,9,73,2013-12-06 12:47:03,2014-02-10 10:51:40,09020924CF10A,,2013-05-15,132,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-24,Risk of Violence,1,Low,2013-09-24,2013-12-06,2014-02-10,9,0,73,0,0,0\r\n2518,jamie rodriguez,jamie,rodriguez,2014-03-18,Male,1990-07-04,25,25 - 45,Hispanic,0,8,0,4,5,,,,10020252CF10A,,2010-11-11,1223,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-18,Risk of Violence,7,Medium,2014-03-18,,,5,0,745,0,0,0\r\n2519,ronnie thomas,ronnie,thomas,2014-11-15,Male,1983-05-20,32,25 - 45,African-American,1,7,3,0,24,-1,2014-11-14 10:48:40,2014-11-17 08:11:13,14015405CF10A,2014-11-14,,1,F,Driving While License Revoked,1,15008613CF10A,(F3),0,2015-07-05,Felony Battery (Dom Strang),2015-07-05,2015-09-22,,1,15008613CF10A,(F3),2015-07-05,Felony Battery (Dom Strang),Risk of Recidivism,7,Medium,2014-11-15,Risk of Violence,6,Medium,2014-11-15,2015-07-05,2015-09-22,24,2,232,1,1,1\r\n2521,dyneisha smith,dyneisha,smith,2013-11-15,Female,1992-01-18,24,Less than 25,African-American,0,5,0,0,1,-1,2013-11-14 09:08:19,2013-11-15 02:04:30,13015864CF10A,2013-11-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-15,Risk of Violence,4,Low,2013-11-15,2016-03-28,2016-03-29,1,0,864,0,0,0\r\n2523,james thompson,james,thompson,2014-03-22,Male,1958-11-17,57,Greater than 45,African-American,0,3,0,0,19,-1,2014-03-21 06:27:23,2014-03-22 08:09:32,14004043CF10A,2014-03-21,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-21,2014-03-22,19,0,741,0,0,0\r\n2524,mikhail grant,mikhail,grant,2013-05-14,Male,1995-02-11,21,Less than 25,Other,0,6,0,0,0,-1,2013-05-13 06:53:22,2013-05-14 06:24:49,13009253MM10A,2013-05-13,,1,M,Prowling/Loitering,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-14,Risk of Violence,7,Medium,2013-05-14,2013-05-13,2013-05-14,0,0,1053,0,0,0\r\n2525,nicolas latorre-galan,nicolas,latorre-galan,2013-04-24,Male,1988-03-08,28,25 - 45,Caucasian,0,2,0,0,0,0,2013-04-24 12:33:13,2013-04-24 08:20:16,13005803CF10A,2013-04-23,,1,F,Counterfeit Lic Plates/Sticker,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-24,Risk of Violence,2,Low,2013-04-24,2013-12-05,2013-12-05,0,0,225,0,0,0\r\n2526,mark vitale,mark,vitale,2013-03-20,Male,1964-12-06,51,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-20 12:24:11,2013-06-20 09:35:19,13005436MM10A,2013-03-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-03-20,2013-06-20,0,92,1108,0,0,0\r\n2532,tyrone santos,tyrone,santos,2013-08-17,Male,1990-07-12,25,25 - 45,African-American,0,7,1,0,6,-1,2013-08-16 10:52:42,2013-09-18 05:34:14,13012752MO10A,,2013-08-17,0,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-17,Risk of Violence,5,Medium,2013-08-17,2013-08-16,2013-09-18,6,32,958,0,0,0\r\n2533,ariel fallacaro,ariel,fallacaro,2014-07-04,Male,1996-06-17,19,Less than 25,Caucasian,0,6,0,0,0,-1,2014-07-03 09:58:44,2014-07-06 04:26:19,14010278MM10A,2014-07-03,,1,M,Battery,1,15005806MM10A,(M1),0,2015-05-27,Battery,2015-05-27,2015-06-01,,1,15005806MM10A,(M1),2015-05-27,Battery,Risk of Recidivism,6,Medium,2014-07-04,Risk of Violence,9,High,2014-07-04,2015-05-27,2015-06-01,0,2,327,1,1,1\r\n2536,jewel johnson,jewel,johnson,2014-01-08,Male,1959-04-08,57,Greater than 45,African-American,0,10,0,0,27,-9,2013-12-30 09:12:41,2014-01-08 10:44:51,13015205MM10A,,2013-12-30,9,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-08,Risk of Violence,9,High,2014-01-08,2013-12-30,2014-01-08,27,0,814,0,0,0\r\n2537,jasmine young,jasmine,young,2013-04-08,Female,1988-10-17,27,25 - 45,African-American,0,2,0,0,0,0,2013-04-08 04:39:41,2013-04-09 02:11:14,13006767MM10A,2013-04-08,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-08,Risk of Violence,3,Low,2013-04-08,2013-04-08,2013-04-09,0,1,1089,0,0,0\r\n2538,walter meixner,walter,meixner,2013-01-13,Male,1950-02-18,66,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-12 02:09:03,2013-01-31 09:56:14,00022077MM10A,,2013-01-12,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-31,1,18,1174,0,0,0\r\n2539,jamia dixon,jamia,dixon,2014-02-24,Female,1990-10-16,25,25 - 45,African-American,0,7,0,0,4,-46,2014-01-09 01:09:58,2014-01-25 03:15:07,12002493MM20A,,2014-01-09,46,M,arrest case no charge,1,15004321MM10A,(M1),,2014-12-22,Criminal Mischief>$200<$1000,,,,1,15008191CF10A,(F3),2015-03-10,Stalking (Aggravated),Risk of Recidivism,7,Medium,2014-02-24,Risk of Violence,3,Low,2014-02-24,2015-10-20,2015-12-19,4,0,301,1,1,1\r\n2540,jeramey wilkerson,jeramey,wilkerson,2013-01-26,Male,1995-01-04,21,Less than 25,Caucasian,0,3,0,0,0,0,2013-01-26 04:26:50,2013-01-26 07:17:27,13001296CF10A,,2013-01-26,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-26,Risk of Violence,6,Medium,2013-01-26,2013-01-26,2013-01-26,0,0,1161,0,0,0\r\n2541,shane bohannon,shane,bohannon,2013-03-11,Male,1970-07-04,45,Greater than 45,Caucasian,0,2,0,0,1,0,2013-03-11 12:31:05,2013-03-11 01:32:29,13003523CF10A,2013-03-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-03-11,2013-03-11,1,0,1117,0,0,0\r\n2542,kevin mouzon,kevin,mouzon,2013-10-21,Male,1977-04-22,38,25 - 45,African-American,0,6,0,0,6,-205,2013-03-30 11:14:51,2013-10-19 02:01:56,13004567CF10A,2013-03-30,,205,F,Aggravated Assault,1,14018115MM10A,(M2),0,2014-12-28,Criminal Mischief,2014-12-28,2015-01-06,,1,16001032CF10A,(F3),2016-01-26,Threat Public Servant,Risk of Recidivism,6,Medium,2013-10-21,Risk of Violence,7,Medium,2013-10-21,2014-09-07,2014-09-10,6,0,321,0,1,1\r\n2543,jermaine hall,jermaine,hall,2013-01-21,Male,1979-03-13,37,25 - 45,African-American,2,8,3,0,24,-1,2013-01-20 03:28:03,2013-02-09 02:24:01,13000929CF10A,2013-01-20,,1,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-21,Risk of Violence,4,Low,2013-01-21,2013-01-20,2013-02-09,24,19,1166,0,0,0\r\n2546,eugene hanon,eugene,hanon,2013-08-17,Male,1951-12-14,64,Greater than 45,African-American,0,4,0,0,0,-1,2013-08-16 07:03:11,2013-08-20 07:40:15,13011518CF10A,2013-08-16,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-17,Risk of Violence,1,Low,2013-08-17,2013-08-16,2013-08-20,0,3,958,0,0,0\r\n2548,tony mcneil,tony,mcneil,2013-02-08,Male,1985-11-07,30,25 - 45,African-American,0,6,0,0,1,-1,2013-02-07 03:51:09,2013-02-08 02:09:27,13001914CF10A,2013-02-07,,1,F,Deliver Cocaine,1,13008049MM10A,(M1),0,2013-04-01,Reckless Display Of Weapon,2013-04-01,2013-04-01,,1,13004666CF10A,(F2),2013-04-01,Agg Assault Law Enforc Officer,Risk of Recidivism,6,Medium,2013-02-08,Risk of Violence,4,Low,2013-02-08,2013-04-01,2013-04-01,1,0,52,0,1,1\r\n2549,manuel mena,manuel,mena,2013-08-14,Male,1954-10-24,61,Greater than 45,African-American,0,1,0,0,1,-1,2013-08-13 03:15:42,2013-08-15 04:26:06,13008322MM10A,,2013-08-13,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-14,Risk of Violence,1,Low,2013-08-14,2013-08-13,2013-08-15,1,1,961,0,0,0\r\n2550,resendiz santiago,resendiz,santiago,2013-12-19,Male,1982-08-18,33,25 - 45,Caucasian,0,3,0,0,0,,,,13017464CF10A,2013-12-18,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-19,Risk of Violence,3,Low,2013-12-19,,,0,0,834,0,0,0\r\n2554,lisa fogarty,lisa,fogarty,2014-02-28,Female,1966-08-24,49,Greater than 45,Caucasian,0,2,0,0,8,-10,2014-02-18 11:26:46,2014-02-27 04:09:20,13017790CF10A,,2014-02-18,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-28,Risk of Violence,1,Low,2014-02-28,2014-02-18,2014-02-27,8,0,763,0,0,0\r\n2556,dirrick stephens,dirrick,stephens,2013-02-10,Male,1992-08-27,23,Less than 25,African-American,0,7,0,0,0,0,2013-02-10 12:53:04,2013-02-11 07:30:44,13002033CF10A,2013-02-09,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-10,Risk of Violence,5,Medium,2013-02-10,2013-02-10,2013-02-11,0,1,1146,0,0,0\r\n2557,roberto paul,roberto,paul,2013-11-14,Male,1982-05-10,33,25 - 45,African-American,0,8,0,0,14,-79,2013-08-27 09:01:15,2013-11-03 02:08:38,13012078CF10A,2013-08-27,,79,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-14,Risk of Violence,5,Medium,2013-11-14,2013-08-27,2013-11-03,14,0,869,0,0,0\r\n2560,adesh persaud,adesh,persaud,2013-07-29,Male,1994-09-07,21,Less than 25,Caucasian,0,9,0,0,0,-2,2013-07-27 11:47:49,2013-07-28 05:43:39,13010541CF10A,2013-07-27,,2,F,Sale/Del Cannabis At/Near Scho,1,13012997CF10A,(F3),0,2013-09-14,Possession Of Alprazolam,2013-09-14,2013-10-07,,1,13021891MM10A,(M1),2013-11-21,Battery,Risk of Recidivism,9,High,2013-07-29,Risk of Violence,6,Medium,2013-07-29,2013-09-14,2013-10-07,0,0,47,1,1,1\r\n2562,michael milla,michael,milla,2013-08-20,Male,1989-05-06,26,25 - 45,Hispanic,0,4,0,1,7,0,2013-08-20 12:51:18,2013-08-22 05:25:59,13015725MM10A,2013-08-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-20,Risk of Violence,4,Low,2013-08-20,2013-08-20,2013-08-22,7,2,955,0,0,0\r\n2566,melvin stewart,melvin,stewart,2013-01-02,Male,1989-02-28,27,25 - 45,African-American,0,9,0,1,2,-1,2013-01-01 09:18:48,2013-01-02 11:09:35,13000050MM10A,2013-01-01,,1,M,Possess Cannabis/20 Grams Or Less,1,15015534TC20A,(M2),,2015-02-25,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2013-01-02,Risk of Violence,4,Low,2013-01-02,2014-01-07,2014-01-29,2,0,370,0,0,0\r\n2567,ronnie foley,ronnie,foley,2013-01-04,Male,1977-09-16,38,25 - 45,Caucasian,0,6,0,0,1,0,2013-01-04 12:48:45,2013-01-19 09:25:50,13000194MM10A,2013-01-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-04,Risk of Violence,3,Low,2013-01-04,2013-01-04,2013-01-19,1,15,1183,0,0,0\r\n2569,elie boujaoude,elie,boujaoude,2014-03-05,Male,1989-09-15,26,25 - 45,Caucasian,0,2,0,0,0,-1,2014-03-04 04:15:31,2014-03-05 01:44:19,14003719MM10A,2014-03-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-05,Risk of Violence,3,Low,2014-03-05,2014-03-04,2014-03-05,0,0,758,0,0,0\r\n2574,slade hanson,slade,hanson,2013-04-02,Male,1993-02-22,23,Less than 25,Caucasian,0,7,0,1,2,0,2013-04-02 02:25:10,2013-04-15 09:11:23,13004653CF10A,2013-04-02,,0,F,Poss of Firearm by Convic Felo,1,15010282CF10A,(F3),,2015-08-10,Possession of Cannabis,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-02,Risk of Violence,6,Medium,2013-04-02,2013-04-02,2013-04-15,2,13,860,1,0,0\r\n2579,areej dorriety,areej,dorriety,2014-03-20,Female,1979-07-08,36,25 - 45,African-American,0,1,0,0,0,0,2014-03-20 05:28:52,2014-03-20 10:13:58,14011173MU10A,2014-03-20,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-20,Risk of Violence,1,Low,2014-03-20,2014-03-20,2014-03-20,0,0,743,0,0,0\r\n2580,jaqueline roberts,jaqueline,roberts,2013-04-03,Male,1957-08-06,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-04-02 11:17:17,2013-06-21 10:09:13,13004741CF10A,,2013-04-02,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-03,Risk of Violence,1,Low,2013-04-03,2016-02-04,2020-01-01,1,79,1037,0,0,0\r\n2582,drew pressotto,drew,pressotto,2013-10-04,Male,1969-08-25,46,Greater than 45,Caucasian,0,3,0,0,5,125,2014-02-06 04:42:19,2014-02-06 10:06:22,12008332TC10A,,2013-02-06,240,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-04,Risk of Violence,2,Low,2013-10-04,2014-02-06,2014-02-06,5,0,125,0,0,0\r\n2583,becky nichols,becky,nichols,2013-09-12,Female,1980-12-18,35,25 - 45,Caucasian,0,3,0,0,4,-30,2013-08-13 08:23:34,2013-08-27 06:21:58,13015812CF10A,2013-08-13,,30,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-12,Risk of Violence,4,Low,2013-09-12,2015-11-28,2015-12-21,4,0,807,0,0,0\r\n2584,demarcus atkins,demarcus,atkins,2013-05-06,Male,1992-06-23,23,Less than 25,African-American,0,7,0,0,3,-1,2013-05-05 05:12:30,2013-05-06 08:15:16,13012264CF10A,2013-05-05,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-06,Risk of Violence,5,Medium,2013-05-06,2013-09-17,2013-09-18,3,0,134,0,0,0\r\n2586,chad burnside,chad,burnside,2013-12-23,Male,1975-12-09,40,25 - 45,Caucasian,0,1,0,0,1,-21,2013-12-02 03:16:31,2013-12-23 11:40:21,13016679CF10A,2013-12-02,,21,F,Attempted Robbery  No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-02,2013-12-23,1,0,830,0,0,0\r\n2588,jeffrey insua,jeffrey,insua,2013-10-14,Male,1984-06-06,31,25 - 45,Hispanic,0,3,0,0,3,-1,2013-10-13 03:10:18,2013-10-14 02:35:46,13014328CF10A,2013-10-13,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-14,Risk of Violence,3,Low,2013-10-14,2013-10-13,2013-10-14,3,0,900,0,0,0\r\n2589,arlene gonzalez,arlene,gonzalez,2013-05-22,Female,1981-12-22,34,25 - 45,Hispanic,0,4,0,0,5,0,2013-05-22 01:22:00,2013-05-23 03:30:07,13007303CF10A,2013-05-21,,1,F,Live on Earnings of Prostitute,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-22,Risk of Violence,2,Low,2013-05-22,2013-05-22,2013-05-23,5,1,1045,0,0,0\r\n2593,tanisha benjamin,tanisha,benjamin,2013-05-17,Female,1989-08-31,26,25 - 45,African-American,0,5,0,0,3,-27,2013-04-20 02:01:12,2013-05-17 10:53:39,13005671CF10A,2013-04-20,,27,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-17,Risk of Violence,3,Low,2013-05-17,2013-04-20,2013-05-17,3,0,1050,0,0,0\r\n2594,arthur campbell,arthur,campbell,2013-02-10,Male,1967-01-11,49,Greater than 45,African-American,0,1,0,0,1,0,2013-02-10 02:43:29,2013-03-07 01:58:42,13002059CF10A,2013-02-10,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-10,Risk of Violence,1,Low,2013-02-10,2013-02-10,2013-03-07,1,25,1146,0,0,0\r\n2595,lucia abreu,lucia,abreu,2013-08-25,Female,1968-07-24,47,Greater than 45,Hispanic,0,1,0,0,0,0,2013-08-25 04:06:09,2013-08-26 07:32:33,13016278MM10A,2013-08-25,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-25,Risk of Violence,1,Low,2013-08-25,2013-08-25,2013-08-26,0,1,950,0,0,0\r\n2599,monique falcon,monique,falcon,2013-03-07,Female,1970-07-14,45,Greater than 45,Native American,0,2,0,0,1,,,,10017138MM10A,,2012-10-11,147,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-07,Risk of Violence,1,Low,2013-03-07,,,1,0,1121,0,0,0\r\n2602,richard lindo,richard,lindo,2013-10-07,Male,1969-02-05,47,Greater than 45,African-American,0,2,0,0,6,0,2013-10-07 03:07:53,2013-10-12 05:24:47,13014052CF10A,2013-10-07,,0,F,Att Tamper w/Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-10-07,2013-10-12,6,5,907,0,0,0\r\n2605,isaac ramirez,isaac,ramirez,2013-02-22,Male,1971-01-05,45,Greater than 45,Hispanic,0,8,0,0,1,378,2014-03-07 09:43:42,2014-03-13 08:26:17,13001306MM10A,2013-01-16,,37,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-22,Risk of Violence,4,Low,2013-02-22,2014-03-07,2014-03-13,1,0,378,0,0,0\r\n2606,jeremy daniel,jeremy,daniel,2013-03-01,Male,1989-04-16,27,25 - 45,African-American,0,9,0,0,10,-1,2013-02-28 11:54:44,2013-03-08 08:37:14,12000192CF10A,,2013-02-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-01,Risk of Violence,8,High,2013-03-01,2013-02-28,2013-03-08,10,7,1127,0,0,0\r\n2607,carmen fontes,carmen,fontes,2013-12-31,Female,1963-09-01,52,Greater than 45,Caucasian,0,1,0,0,0,0,2013-12-31 12:19:12,2013-12-31 12:53:38,13024008MM10A,2013-12-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-31,Risk of Violence,1,Low,2013-12-31,2013-12-31,2013-12-31,0,0,822,0,0,0\r\n2609,michael anderson,michael,anderson,2013-02-27,Male,1991-01-03,25,25 - 45,African-American,0,7,0,1,9,0,2013-02-27 04:07:32,2013-03-01 11:04:29,13002975CF10A,2013-02-26,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-27,Risk of Violence,4,Low,2013-02-27,2014-08-18,2014-09-05,9,2,537,0,0,0\r\n2610,melvin eberhart,melvin,eberhart,2013-09-26,Male,1964-06-07,51,Greater than 45,African-American,0,2,0,0,1,-1,2013-09-25 09:56:06,2014-03-07 03:16:11,13002843CF10A,,2013-09-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-26,Risk of Violence,2,Low,2013-09-26,2013-09-25,2014-03-07,1,162,918,0,0,0\r\n2611,shanteka arvinger,shanteka,arvinger,2013-02-01,Female,1986-07-27,29,25 - 45,African-American,0,2,0,0,1,0,2013-02-01 02:58:03,2013-02-01 01:55:45,13002339MM10A,2013-02-01,,0,M,Refuse to Supply DNA Sample,1,15009692CF10A,(F3),0,2015-07-28,Crimin Mischief Damage $1000+,2015-07-28,2015-10-01,,0,,,,,Risk of Recidivism,2,Low,2013-02-01,Risk of Violence,2,Low,2013-02-01,2015-07-28,2015-10-01,1,0,907,1,0,0\r\n2612,delponjarai howard,delponjarai,howard,2013-05-11,Male,1976-06-10,39,25 - 45,African-American,0,3,0,0,1,,,,96015521CF10A,,1997-06-18,5806,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-11,Risk of Violence,2,Low,2013-05-11,2004-08-17,2006-01-17,1,0,1056,0,0,0\r\n2613,holger doerr,holger,doerr,2014-03-16,Male,1969-08-18,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-15 05:47:39,2014-03-16 01:19:00,14003736CF10A,2014-03-15,,1,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-16,0,0,747,0,0,0\r\n2614,joseph parisi,joseph,parisi,2014-01-06,Male,1987-06-14,28,25 - 45,Caucasian,0,4,0,0,6,-2,2014-01-04 09:16:10,2014-01-06 11:05:22,14000157CF10A,2014-01-04,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-06,Risk of Violence,3,Low,2014-01-06,2014-08-12,2014-10-17,6,0,218,0,0,0\r\n2615,howard carter,howard,carter,2014-02-08,Male,1958-08-19,57,Greater than 45,African-American,0,1,0,0,0,-1,2014-02-07 07:32:03,2014-02-08 09:00:33,14001734CF10A,2014-02-07,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-08,Risk of Violence,1,Low,2014-02-08,2014-02-07,2014-02-08,0,0,783,0,0,0\r\n2616,andres tejera,andres,tejera,2013-01-18,Male,1993-03-10,23,Less than 25,Hispanic,0,5,0,0,2,-1,2013-01-17 06:30:04,2013-01-18 01:51:21,13000838CF10A,2013-01-17,,1,F,Sel/Pur/Mfr/Del Control Substa,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-18,Risk of Violence,5,Medium,2013-01-18,2013-01-17,2013-01-18,2,0,1169,0,0,0\r\n2619,kenyetta mattocks,kenyetta,mattocks,2014-03-16,Male,1989-03-25,27,25 - 45,African-American,0,3,0,0,3,-1,2014-03-15 03:18:42,2014-03-27 08:42:37,13016144CF10A,,2014-03-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-16,Risk of Violence,2,Low,2014-03-16,2014-03-15,2014-03-27,3,11,747,0,0,0\r\n2621,anthony cortes,anthony,cortes,2014-11-14,Male,1985-02-21,31,25 - 45,Caucasian,0,7,0,0,1,-1,2014-11-13 05:26:22,2014-12-16 04:07:30,14015242CF10A,2014-11-13,,1,F,Grand Theft in the 3rd Degree,1,16000111MM10A,(M1),0,2016-01-04,Possess Drug Paraphernalia,2016-01-04,2016-01-28,,1,16000111MM10A,(M1),2016-01-04,Battery,Risk of Recidivism,7,Medium,2014-11-14,Risk of Violence,2,Low,2014-11-14,2016-01-04,2016-01-28,1,32,416,1,1,1\r\n2623,joseph skipper,joseph,skipper,2014-03-21,Male,1978-11-08,37,25 - 45,African-American,0,2,0,0,8,-1,2014-03-20 07:04:53,2014-03-21 08:33:26,14003962CF10A,2014-03-20,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-21,Risk of Violence,1,Low,2014-03-21,2014-03-20,2014-03-21,8,0,742,0,0,0\r\n2624,lance geddes,lance,geddes,2013-05-08,Male,1964-04-20,51,Greater than 45,African-American,0,2,0,0,0,0,2013-05-08 02:42:29,2013-05-09 09:51:05,13006593CF10A,2013-05-08,,0,F,Possession of Cocaine,1,13023400MM10A,(M1),,2013-11-15,Battery,,,,1,13023400MM10A,(M1),2013-11-15,Battery,Risk of Recidivism,2,Low,2013-05-08,Risk of Violence,1,Low,2013-05-08,2013-05-14,2013-05-16,0,1,6,0,1,1\r\n2625,reinaldo rodriguez-hernandez,reinaldo,rodriguez-hernandez,2014-01-27,Male,1964-10-09,51,Greater than 45,Hispanic,0,2,0,0,3,-86,2013-11-02 05:23:27,2013-11-04 09:22:03,14000648MM10A,2014-01-13,,14,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2013-11-02,2013-11-04,3,0,795,0,0,0\r\n2630,kena boone,kena,boone,2013-01-17,Male,1987-07-26,28,25 - 45,African-American,0,6,1,0,8,-1,2013-01-16 11:54:04,2013-02-26 04:08:32,13000756CF10A,2013-01-16,,1,F,Resist Officer w/Violence,1,15009403CF10A,(M1),0,2015-07-21,Possess Drug Paraphernalia,2015-07-21,2015-07-22,,0,,,,,Risk of Recidivism,6,Medium,2013-01-17,Risk of Violence,6,Medium,2013-01-17,2013-06-17,2013-06-19,8,40,151,0,0,0\r\n2632,frank ciccio,frank,ciccio,2014-01-16,Male,1959-12-29,56,Greater than 45,Caucasian,0,1,0,0,4,0,2014-01-16 02:39:17,2014-01-23 10:04:18,14000691CF10A,2014-01-16,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-16,Risk of Violence,1,Low,2014-01-16,2014-01-16,2014-01-23,4,7,806,0,0,0\r\n2634,ruben soto,ruben,soto,2013-03-19,Male,1989-09-01,26,25 - 45,Caucasian,0,6,0,0,7,-1,2013-03-18 07:27:49,2013-04-05 08:05:25,13003934CF10A,2013-03-18,,1,F,Burglary Dwelling Occupied,1,13036773TC10A,(M2),,2013-09-22,Susp Drivers Lic 1st Offense,,,,1,13023373MM10A,(M2),2013-12-17,Assault,Risk of Recidivism,6,Medium,2013-03-19,Risk of Violence,4,Low,2013-03-19,2013-03-18,2013-04-05,7,17,187,1,1,1\r\n2637,jaime niedda,jaime,niedda,2014-07-27,Male,1982-09-12,33,25 - 45,Caucasian,0,8,0,0,7,-1,2014-07-26 03:22:27,2014-07-27 08:26:01,14010205CF10A,2014-07-26,,1,F,Felony Battery (Dom Strang),1,15011722MM10A,(M1),0,2015-11-08,Battery,2015-11-08,2015-11-10,,1,15011722MM10A,(M1),2015-11-08,Battery,Risk of Recidivism,8,High,2014-07-27,Risk of Violence,2,Low,2014-07-27,2015-08-01,2015-08-02,7,0,370,0,1,1\r\n2638,ameer badal,ameer,badal,2013-09-03,Male,1992-05-06,23,Less than 25,Caucasian,0,4,0,3,0,-2,2013-09-01 06:04:07,2013-09-02 08:50:01,13016724MM10A,2013-09-01,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-03,Risk of Violence,3,Low,2013-09-03,2013-09-01,2013-09-02,0,0,941,0,0,0\r\n2639,jonathan coby,jonathan,coby,2013-09-30,Male,1984-05-18,31,25 - 45,African-American,0,2,0,0,0,0,2013-09-30 04:48:28,2013-09-30 08:01:23,13018613MM10A,2013-09-30,,0,M,Poss Drugs W/O A Prescription,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-30,Risk of Violence,2,Low,2013-09-30,2013-09-30,2013-09-30,0,0,914,0,0,0\r\n2641,alphanso clarke,alphanso,clarke,2013-02-19,Male,1985-04-08,31,25 - 45,Other,0,3,0,0,0,-1,2013-02-18 02:32:16,2013-02-19 06:53:35,13003455MM10A,2013-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-19,Risk of Violence,3,Low,2013-02-19,2013-02-18,2013-02-19,0,0,1137,0,0,0\r\n2642,carlos delcid,carlos,delcid,2013-09-23,Male,1996-05-11,19,Less than 25,Hispanic,1,9,0,0,1,-12,2013-09-11 07:10:26,2013-09-16 06:40:29,13012824CF10A,,2013-09-11,12,F,arrest case no charge,1,15011680MM10A,(M1),0,2015-11-07,Battery,2015-11-07,2015-11-10,,1,15011680MM10A,(M1),2015-11-07,Battery,Risk of Recidivism,9,High,2013-09-23,Risk of Violence,10,High,2013-09-23,2015-11-07,2015-11-10,1,0,775,1,0,0\r\n2643,benjamin chase,benjamin,chase,2013-03-01,Male,1983-06-25,32,25 - 45,Caucasian,0,1,0,0,0,0,2013-03-01 03:05:20,2013-03-01 08:05:57,13003113CF10A,2013-03-01,,0,F,Aggravated Assault W/o Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-03-01,2013-03-01,0,0,1127,0,0,0\r\n2645,elsie figueroa,elsie,figueroa,2013-06-07,Female,1968-03-14,48,Greater than 45,Hispanic,0,6,0,0,9,-87,2013-03-12 05:15:17,2013-05-08 09:35:00,07010629CF10A,,2013-03-12,87,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-06-07,Risk of Violence,6,Medium,2013-06-07,2013-03-12,2013-05-08,9,0,1029,0,0,0\r\n2649,douglas delarosa,douglas,delarosa,2013-09-20,Male,1950-01-31,66,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-09-19 10:18:25,2013-09-20 08:42:02,13013213CF10A,,2013-09-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-09-19,2013-09-20,1,0,924,0,0,0\r\n2650,tanamra brackett,tanamra,brackett,2014-03-25,Female,1975-06-30,40,25 - 45,African-American,0,1,0,0,0,0,2014-03-25 12:36:32,2014-03-25 08:18:56,14004157CF10A,2014-03-24,,1,F,Grand Theft in the 1st Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-25,Risk of Violence,1,Low,2014-03-25,2014-03-25,2014-03-25,0,0,738,0,0,0\r\n2651,herbert lindsey,herbert,lindsey,2013-08-02,Male,1956-12-13,59,Greater than 45,African-American,0,2,0,0,4,0,2013-08-02 04:48:15,2013-08-03 04:06:59,13014713MM10A,2013-08-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-02,Risk of Violence,2,Low,2013-08-02,2013-08-02,2013-08-03,4,1,973,0,0,0\r\n2652,felix payne,felix,payne,2013-10-31,Male,1990-06-21,25,25 - 45,African-American,0,7,0,0,5,118,2014-02-26 09:11:49,2014-05-22 11:09:00,11018917CF10A,,2013-07-03,120,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-31,Risk of Violence,7,Medium,2013-10-31,2014-02-26,2014-05-22,5,0,118,0,0,0\r\n2654,michael duplessy,michael,duplessy,2013-10-18,Male,1988-09-30,27,25 - 45,African-American,0,7,0,0,3,-23,2013-09-25 04:20:19,2013-09-26 09:32:53,13010603TC20A,2013-01-09,,282,M,Leave Accd/Attend Veh/Less $50,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-18,Risk of Violence,3,Low,2013-10-18,2013-09-25,2013-09-26,3,0,896,0,0,0\r\n2655,giovanni bonair,giovanni,bonair,2013-01-10,Male,1993-11-17,22,Less than 25,African-American,0,3,0,0,0,-1,2013-01-09 08:21:48,2013-01-10 01:28:55,13000390CF10A,2013-01-09,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-10,Risk of Violence,6,Medium,2013-01-10,2013-01-09,2013-01-10,0,0,1177,0,0,0\r\n2656,douglas bergman,douglas,bergman,2013-05-17,Male,1958-01-31,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-05-16 01:20:39,2013-05-17 01:12:54,13007010CF10A,2013-05-16,,1,F,Fel Drive License Perm Revoke,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-17,Risk of Violence,1,Low,2013-05-17,2014-01-13,2014-01-16,1,0,241,0,0,0\r\n2657,roy jones,roy,jones,2013-03-06,Male,1967-02-20,49,Greater than 45,African-American,0,1,0,0,1,,,,13004499MM10A,2013-03-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-06,Risk of Violence,1,Low,2013-03-06,,,1,0,1122,0,0,0\r\n2658,ernesto chao,ernesto,chao,2014-01-06,Male,1986-09-28,29,25 - 45,Caucasian,0,3,0,0,2,-2,2014-01-04 09:12:16,2014-01-06 11:05:13,14000156CF10A,2014-01-04,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-06,Risk of Violence,2,Low,2014-01-06,2014-01-04,2014-01-06,2,0,816,0,0,0\r\n2662,fernando lopez,fernando,lopez,2013-12-04,Male,1991-07-17,24,Less than 25,African-American,0,4,0,0,2,203,2014-06-25 08:43:02,2014-07-01 11:20:30,12013210CF10A,2012-09-07,,453,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-04,Risk of Violence,3,Low,2013-12-04,2014-06-25,2014-07-01,2,0,203,0,0,0\r\n2664,lawrence cottle,lawrence,cottle,2013-11-13,Male,1988-11-27,27,25 - 45,African-American,0,8,0,0,0,-1,2013-11-12 08:49:59,2014-01-12 07:13:33,13015730CF10A,2013-11-12,,1,F,Aggravated Assault W/Dead Weap,1,15008602CF10A,(F2),0,2015-07-05,Throw Deadly Missile Into Veh,2015-07-05,2015-07-08,,1,15008602CF10A,(F2),2015-07-05,Throw Deadly Missile Into Veh,Risk of Recidivism,8,High,2013-11-13,Risk of Violence,7,Medium,2013-11-13,2014-08-09,2014-09-11,0,60,269,0,1,1\r\n2667,david turner,david,turner,2013-03-04,Male,1991-08-26,24,Less than 25,Caucasian,0,5,0,0,0,-3,2013-03-01 11:53:52,2013-03-03 01:39:58,13003099CF10A,2013-03-01,,3,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-04,Risk of Violence,4,Low,2013-03-04,2015-04-11,2015-04-16,0,0,768,0,0,0\r\n2668,shannon morsillo,shannon,morsillo,2013-09-16,Female,1980-05-22,35,25 - 45,Caucasian,0,4,1,0,3,0,2013-09-16 02:49:07,2013-09-16 07:49:06,13013067CF10A,2013-09-16,,0,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-16,Risk of Violence,2,Low,2013-09-16,2013-09-16,2013-09-16,3,0,928,0,0,0\r\n2669,bruce siegel,bruce,siegel,2013-02-20,Male,1950-05-31,65,Greater than 45,Caucasian,0,3,0,0,4,,,,12025503MM10A,2012-12-14,,68,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,,,4,0,1136,0,0,0\r\n2672,ivory miller,ivory,miller,2013-05-02,Male,1985-12-17,30,25 - 45,African-American,1,9,0,0,5,-1,2013-05-01 01:32:49,2013-05-03 03:49:21,13006251CF10A,2013-05-01,,1,F,Aggravated Assault W/dead Weap,1,14010717MM10A,(M1),0,2014-07-13,Resist/Obstruct W/O Violence,2014-07-13,2014-07-16,,1,14010717MM10A,(M1),2014-07-13,Battery,Risk of Recidivism,9,High,2013-05-02,Risk of Violence,6,Medium,2013-05-02,2014-07-13,2014-07-16,5,1,437,1,1,1\r\n2673,jarvis mccloud,jarvis,mccloud,2013-01-18,Male,1992-06-26,23,Less than 25,African-American,0,2,1,1,1,-1,2013-01-17 01:19:27,2013-01-19 09:27:19,13000826CF10A,2013-01-17,,1,F,Possession Burglary Tools,1,15010350MM10A,(M1),,2015-09-07,Battery,,,,1,15010350MM10A,(M1),2015-09-07,Battery,Risk of Recidivism,2,Low,2013-01-18,Risk of Violence,4,Low,2013-01-18,2013-08-29,2013-09-05,1,1,223,0,0,0\r\n2676,jonathan gordon,jonathan,gordon,2014-07-02,Male,1983-04-28,32,25 - 45,Caucasian,0,4,0,0,2,-27,2014-06-05 11:53:48,2014-06-06 02:23:00,14007774CF10A,2014-06-05,,27,F,Possession Of Heroin,1,15001926CF10A,(F7),,2015-02-05,Burglary Dwelling Armed,,,,1,15001926CF10A,(F7),2015-02-05,Burglary Dwelling Armed,Risk of Recidivism,4,Low,2014-07-02,Risk of Violence,1,Low,2014-07-02,2014-06-05,2014-06-06,2,0,218,1,1,1\r\n2677,nicholas staggewise,nicholas,staggewise,2013-09-24,Male,1994-02-28,22,Less than 25,Caucasian,0,5,0,0,2,-1,2013-09-23 09:01:58,2013-09-27 03:54:42,13013378CF10A,,2013-09-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-24,Risk of Violence,5,Medium,2013-09-24,2013-09-23,2013-09-27,2,3,920,0,0,0\r\n2678,kevin pierrelouis,kevin,pierrelouis,2013-12-28,Male,1994-10-06,21,Less than 25,African-American,0,3,0,0,0,-1,2013-12-27 04:28:14,2013-12-28 08:24:11,13023881MM10A,2013-12-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-28,Risk of Violence,5,Medium,2013-12-28,2013-12-27,2013-12-28,0,0,825,0,0,0\r\n2679,kelli smith,kelli,smith,2013-05-15,Female,1972-08-01,43,25 - 45,Caucasian,0,2,0,0,0,-1,2013-05-14 12:38:54,2013-05-14 11:35:49,13009244MM10A,2013-05-13,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-15,Risk of Violence,1,Low,2013-05-15,2013-05-14,2013-05-14,0,0,1052,0,0,0\r\n2680,jazze johnson,jazze,johnson,2013-05-14,Male,1986-09-29,29,25 - 45,African-American,0,8,0,0,0,-1,2013-05-13 07:26:35,2013-05-16 03:43:24,13006827CF10A,2013-05-13,,1,F,Poss of Cocaine W/I/D/S 1000FT Park,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-14,Risk of Violence,4,Low,2013-05-14,2015-05-04,2015-08-19,0,2,720,0,0,0\r\n2681,terrill morley,terrill,morley,2014-02-15,Male,1972-08-04,43,25 - 45,African-American,0,3,0,0,1,0,2014-02-15 03:04:19,2014-02-17 01:40:03,14002175CF10A,2014-02-14,,1,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-15,Risk of Violence,3,Low,2014-02-15,2014-02-15,2014-02-17,1,2,776,0,0,0\r\n2682,reynard burrows,reynard,burrows,2014-03-29,Male,1990-08-26,25,25 - 45,African-American,0,2,0,0,1,-1,2014-03-28 03:44:26,2014-03-30 04:49:22,14004408CF10A,,2014-03-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-29,Risk of Violence,3,Low,2014-03-29,2014-03-28,2014-03-30,1,1,734,0,0,0\r\n2683,rita iscaro,rita,iscaro,2013-10-09,Male,1968-10-30,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-08 05:57:00,2013-10-09 08:10:17,13019142MM10A,2013-10-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-09,Risk of Violence,1,Low,2013-10-09,2013-10-08,2013-10-09,0,0,905,0,0,0\r\n2685,terri-ann gray,terri-ann,gray,2013-04-25,Female,1994-09-29,21,Less than 25,African-American,0,5,0,0,0,-2,2013-04-23 09:24:55,2013-04-24 01:57:08,13005850CF10A,2013-04-23,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-25,Risk of Violence,6,Medium,2013-04-25,2013-04-23,2013-04-24,0,0,1072,0,0,0\r\n2686,latia johnson,latia,johnson,2013-05-06,Female,1990-10-08,25,25 - 45,African-American,0,6,0,0,1,-100,2013-01-26 12:47:52,2013-01-26 08:48:00,09002935MM10A,2009-02-02,,1554,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-06,Risk of Violence,3,Low,2013-05-06,2013-01-26,2013-01-26,1,0,1061,0,0,0\r\n2687,jose somarriba-barrera,jose,somarriba-barrera,2013-10-19,Male,1961-12-05,54,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-19 12:42:06,2013-10-19 08:14:50,13019783MM10A,2013-10-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-19,Risk of Violence,1,Low,2013-10-19,2013-10-19,2013-10-19,0,0,895,0,0,0\r\n2688,brian fields,brian,fields,2013-02-07,Male,1982-01-19,34,25 - 45,African-American,0,1,0,1,3,-1,2013-02-06 12:54:19,2013-03-12 09:26:08,13001879CF10A,2013-02-06,,1,F,Lewd Act Presence Child 16-,1,13002546CF10A,(F1),32,2013-02-15,Sex Batt Faml/Cust Vict 12-17Y,2013-03-19,2013-03-20,,1,13002546CF10A,(F1),2013-02-15,Sex Batt Faml/Cust Vict 12-17Y,Risk of Recidivism,1,Low,2013-02-07,Risk of Violence,1,Low,2013-02-07,2013-02-06,2013-03-12,3,0,8,1,1,1\r\n2689,laura elsy,laura,elsy,2013-04-08,Female,1988-03-21,28,25 - 45,African-American,0,2,0,0,2,-1,2013-04-07 06:55:46,2013-04-08 08:22:48,13006661MM10A,2013-04-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-08,Risk of Violence,2,Low,2013-04-08,2013-04-07,2013-04-08,2,0,1089,0,0,0\r\n2691,kelly lestrade,kelly,lestrade,2013-01-31,Male,1961-11-24,54,Greater than 45,African-American,0,1,0,0,0,0,2013-01-31 12:10:19,2013-01-31 07:49:24,13002173MO10A,2013-01-30,,1,M,Soliciting For Prostitution,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-31,Risk of Violence,1,Low,2013-01-31,2013-01-31,2013-01-31,0,0,1156,0,0,0\r\n2696,antonio taylor,antonio,taylor,2013-10-30,Male,1981-09-28,34,25 - 45,African-American,0,4,0,0,2,-1,2013-10-29 05:28:11,2013-10-30 02:05:14,13015099CF10A,2013-10-29,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2015-07-17,2015-07-18,2,0,625,0,0,0\r\n2697,arturo torres,arturo,torres,2013-11-05,Male,1965-08-01,50,Greater than 45,Hispanic,0,9,0,0,11,-210,2013-04-09 12:06:10,2013-08-01 11:15:00,13007781MM10A,2013-04-09,,210,M,Extradition/Defendants,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-05,Risk of Violence,3,Low,2013-11-05,2013-04-09,2013-08-01,11,0,878,0,0,0\r\n2700,chantel fleurima,chantel,fleurima,2014-02-06,Male,1993-06-09,22,Less than 25,African-American,0,4,0,0,0,-1,2014-02-05 06:45:32,2014-02-06 08:17:45,14001662CF10A,2014-02-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-06,Risk of Violence,5,Medium,2014-02-06,2014-02-05,2014-02-06,0,0,785,0,0,0\r\n2703,willie butler,willie,butler,2014-01-22,Male,1964-09-08,51,Greater than 45,African-American,0,7,0,0,3,0,2014-01-22 12:07:26,2014-01-22 08:34:55,14000928CF10A,2014-01-21,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-22,Risk of Violence,4,Low,2014-01-22,2014-01-22,2014-01-22,3,0,800,0,0,0\r\n2706,ashley collins,ashley,collins,2013-04-04,Female,1987-10-25,28,25 - 45,African-American,0,5,0,0,1,-43,2013-02-20 01:20:12,2013-02-21 09:23:01,13002615CF10A,2013-02-20,,43,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-04,Risk of Violence,5,Medium,2013-04-04,2013-10-16,2013-10-21,1,0,195,0,0,0\r\n2707,michael burkland,michael,burkland,2013-10-01,Male,1979-09-19,36,25 - 45,Caucasian,0,7,0,0,6,-126,2013-05-28 04:14:16,2013-05-30 12:55:17,13007627CF10A,2013-05-23,,131,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-01,Risk of Violence,3,Low,2013-10-01,2015-04-24,2015-05-06,6,0,570,0,0,0\r\n2708,atley greenslade,atley,greenslade,2013-01-24,Male,1987-09-12,28,25 - 45,African-American,0,6,0,1,5,-1,2013-01-23 11:19:27,2013-02-20 07:44:00,11006005MM10A,,2013-01-23,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-24,Risk of Violence,5,Medium,2013-01-24,2013-01-23,2013-02-20,5,27,1163,0,0,0\r\n2713,justin hyde,justin,hyde,2013-05-05,Male,1973-04-03,43,25 - 45,Caucasian,0,2,0,0,4,0,2013-05-05 03:19:14,2013-05-07 10:46:44,13008692MM10A,2013-05-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-05,Risk of Violence,4,Low,2013-05-05,2013-05-05,2013-05-07,4,2,1062,0,0,0\r\n2714,lazaro diaz,lazaro,diaz,2013-12-29,Male,1970-05-09,45,Greater than 45,Hispanic,0,6,0,0,1,-1,2013-12-28 11:13:04,2014-01-24 05:22:59,13023914MM10A,2013-12-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-29,Risk of Violence,3,Low,2013-12-29,2013-12-28,2014-01-24,1,26,824,0,0,0\r\n2720,asael rodriguez,asael,rodriguez,2013-04-01,Male,1974-11-05,41,25 - 45,Hispanic,0,1,0,0,1,-1,2013-03-31 07:44:17,2013-07-23 07:27:00,13004615CF10A,2013-03-31,,1,M,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-03-31,2013-07-23,1,113,1096,0,0,0\r\n2721,fandy fleurinord,fandy,fleurinord,2014-08-19,Male,1991-02-12,25,25 - 45,Other,20,10,0,0,24,-1,2014-08-18 10:49:05,2014-08-19 07:37:38,14011300CF10A,,2014-08-18,1,F,arrest case no charge,1,14015651MM10A,(M1),1,2014-09-28,Battery,2014-09-29,2015-02-05,,1,14013123CF10A,(F2),2014-09-28,Aggravated Battery / Pregnant,Risk of Recidivism,10,High,2014-08-19,Risk of Violence,6,Medium,2014-08-19,2014-09-29,2015-02-05,24,0,40,1,1,1\r\n2722,miguel rodriguez,miguel,rodriguez,2014-02-11,Male,1980-11-21,35,25 - 45,Hispanic,0,9,1,0,12,-1,2014-02-10 02:02:43,2014-02-20 10:54:05,14001877CF10A,2014-02-10,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-11,Risk of Violence,6,Medium,2014-02-11,2014-02-10,2014-02-20,12,9,780,0,0,0\r\n2728,wailim ng,wailim,ng,2014-02-27,Male,1991-07-05,24,Less than 25,Asian,0,3,0,0,0,-1,2014-02-26 03:41:51,2014-02-27 08:32:16,14003374MM10A,2014-02-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-27,Risk of Violence,4,Low,2014-02-27,2014-02-26,2014-02-27,0,0,764,0,0,0\r\n2730,braxton davis,braxton,davis,2013-08-08,Male,1994-11-13,21,Less than 25,African-American,0,6,0,0,3,34,2013-09-11 04:54:32,2013-11-13 06:42:11,13009258CF10A,2013-07-01,,38,F,Grand Theft (Motor Vehicle),1,13017303MM10A,(M1),0,2013-09-11,Resist/Obstruct W/O Violence,2013-09-11,2013-11-13,,1,15012154CF10A,(F2),2015-08-25,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-08-08,Risk of Violence,6,Medium,2013-08-08,2013-09-11,2013-11-13,3,0,34,1,1,1\r\n2731,arturo martinez,arturo,martinez,2013-08-26,Male,1987-10-23,28,25 - 45,Hispanic,0,4,0,0,0,-1,2013-08-25 01:21:23,2013-08-25 08:19:25,13011964CF10A,2013-08-25,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-26,Risk of Violence,4,Low,2013-08-26,2014-01-22,2014-01-24,0,0,149,0,0,0\r\n2733,louis ramo,louis,ramo,2013-10-24,Male,1957-01-11,59,Greater than 45,Other,0,1,0,0,1,,,,13014470CF10A,2013-10-15,,9,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-24,Risk of Violence,1,Low,2013-10-24,,,1,0,890,0,0,0\r\n2735,morell jones,morell,jones,2014-12-08,Male,1986-11-22,29,25 - 45,African-American,0,10,1,0,13,0,2014-12-08 12:41:35,2014-12-10 05:10:10,14016327CF10A,2014-12-08,,0,F,Poss Pyrrolidinovalerophenone,1,14016590CF10A,(F3),0,2014-12-14,Resist Officer w/Violence,2014-12-14,2015-11-24,,1,14016590CF10A,(M1),2014-12-14,Battery,Risk of Recidivism,10,High,2014-12-08,Risk of Violence,10,High,2014-12-08,2014-12-14,2015-11-24,13,2,6,1,1,1\r\n2737,kataruis brantley,kataruis,brantley,2014-03-06,Male,1989-06-19,26,25 - 45,African-American,0,8,0,0,9,-1,2014-03-05 09:51:09,2014-03-08 01:29:05,14003097CF10A,2014-03-05,,1,F,Drivg While Lic Suspd/Revk/Can,1,14004347CF10A,(F2),0,2014-03-27,Armed False Imprisonment,2014-03-27,2014-10-24,,1,14004347CF10A,(F2),2014-03-27,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,8,High,2014-03-06,Risk of Violence,7,Medium,2014-03-06,2014-03-27,2014-10-24,9,2,21,1,1,1\r\n2738,lucane jean-baptiste,lucane,jean-baptiste,2014-03-01,Male,1984-09-08,31,25 - 45,Other,0,1,0,0,0,-1,2014-02-28 09:25:17,2014-03-03 04:49:52,14003506MM10A,2014-02-28,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-01,Risk of Violence,1,Low,2014-03-01,2014-02-28,2014-03-03,0,2,762,0,0,0\r\n2745,nicholas lewis,nicholas,lewis,2013-04-07,Male,1987-10-06,28,25 - 45,Caucasian,0,7,0,0,0,0,2013-04-07 02:56:56,2013-04-08 03:59:28,13005001CF10A,2013-04-06,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-07,Risk of Violence,3,Low,2013-04-07,2013-11-29,2013-12-05,0,1,236,0,0,0\r\n2748,robert fox,robert,fox,2013-04-19,Male,1971-11-18,44,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-18 02:39:42,2013-04-18 07:19:45,13007540MM10A,2013-04-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-18,2013-04-18,0,0,1078,0,0,0\r\n2749,carlos zuniga,carlos,zuniga,2013-05-11,Male,1973-08-13,42,25 - 45,African-American,0,5,0,0,7,-1,2013-05-10 07:11:40,2013-05-11 06:30:56,13006749CF10A,2013-05-10,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-11,Risk of Violence,3,Low,2013-05-11,2016-01-19,2016-01-20,7,0,983,0,0,0\r\n2750,cedric scott,cedric,scott,2013-05-23,Male,1976-04-24,39,25 - 45,African-American,0,7,0,0,5,-1,2013-05-22 02:25:27,2013-05-26 02:44:47,13007308CF10A,2013-05-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-23,Risk of Violence,4,Low,2013-05-23,2013-06-24,2013-07-04,5,3,32,0,0,0\r\n2751,maribell guzman,maribell,guzman,2013-12-18,Female,1969-05-31,46,Greater than 45,Hispanic,0,1,0,0,2,-1,2013-12-17 03:27:50,2013-12-20 07:38:29,13017408CF10A,2013-12-17,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-18,Risk of Violence,1,Low,2013-12-18,2013-12-17,2013-12-20,2,2,835,0,0,0\r\n2752,gino rijos,gino,rijos,2013-08-26,Male,1960-06-17,55,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-08-25 06:52:16,2013-09-04 08:36:18,13016258MM10A,2013-08-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-26,Risk of Violence,3,Low,2013-08-26,2013-08-25,2013-09-04,0,9,949,0,0,0\r\n2754,jennifer vitulano,jennifer,vitulano,2013-11-11,Female,1984-10-23,31,25 - 45,Caucasian,0,9,0,0,0,-1,2013-11-10 05:13:10,2013-11-15 03:36:58,13021208MM10A,2013-11-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-11,Risk of Violence,5,Medium,2013-11-11,2013-11-10,2013-11-15,0,4,872,0,0,0\r\n2758,jerome traverso,jerome,traverso,2013-09-18,Male,1991-04-06,25,25 - 45,African-American,0,2,0,0,0,-1,2013-09-17 07:20:44,2013-09-18 01:35:06,13013115CF10A,2013-09-17,,1,F,Poss Tetrahydrocannabinols,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-18,Risk of Violence,4,Low,2013-09-18,2013-09-17,2013-09-18,0,0,926,0,0,0\r\n2759,andrew millican,andrew,millican,2014-02-06,Male,1984-03-19,32,25 - 45,Caucasian,0,7,0,2,6,0,2014-02-06 04:39:20,2014-02-06 08:49:20,14004843MU10A,2014-02-06,,0,M,Refuse Submit Blood/Breath Test,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-06,Risk of Violence,4,Low,2014-02-06,2014-02-06,2014-02-06,6,0,785,0,0,0\r\n2760,frantz pierre,frantz,pierre,2013-03-11,Male,1979-12-03,36,25 - 45,African-American,0,5,0,0,2,-1,2013-03-10 07:15:50,2013-03-11 01:32:19,13003518CF10A,2013-03-10,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-11,Risk of Violence,4,Low,2013-03-11,2013-03-10,2013-03-11,2,0,1117,0,0,0\r\n2764,daniel muller,daniel,muller,2013-12-22,Male,1977-03-14,39,25 - 45,Caucasian,0,4,0,0,2,0,2013-12-22 12:50:58,2013-12-22 08:44:32,13023560MM10A,2013-12-21,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-22,Risk of Violence,2,Low,2013-12-22,2013-12-22,2013-12-22,2,0,831,0,0,0\r\n2765,andrienna sanchez,andrienna,sanchez,2013-08-01,Female,1989-09-08,26,25 - 45,African-American,0,2,0,0,0,0,2013-08-01 12:06:58,2013-08-01 07:33:02,13014467MM10A,2013-07-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-01,Risk of Violence,2,Low,2013-08-01,2013-08-01,2013-08-01,0,0,974,0,0,0\r\n2770,glenika pratt,glenika,pratt,2013-02-01,Female,1993-04-21,22,Less than 25,Other,0,4,0,0,0,-1,2013-01-31 04:40:20,2013-02-02 12:53:20,13001571CF10A,2013-01-31,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-01,Risk of Violence,5,Medium,2013-02-01,2013-01-31,2013-02-02,0,1,1155,0,0,0\r\n2771,gregory oktavec,gregory,oktavec,2013-04-22,Male,1979-01-31,37,25 - 45,Caucasian,0,1,0,0,3,-1,2013-04-21 07:57:11,2013-04-22 03:57:11,13007680MM10A,2013-04-21,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2013-04-21,2013-04-22,3,0,1075,0,0,0\r\n2776,rico davila,rico,davila,2013-01-12,Male,1975-03-11,41,25 - 45,Caucasian,0,6,0,0,9,-1,2013-01-11 08:17:58,2013-02-13 05:54:09,13000697MM10A,2013-01-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-12,Risk of Violence,2,Low,2013-01-12,2013-01-11,2013-02-13,9,32,1175,0,0,0\r\n2777,joe sanders,joe,sanders,2013-04-01,Male,1990-09-01,25,25 - 45,African-American,0,3,0,0,1,0,2013-04-01 01:23:05,2013-04-01 02:19:10,13006198MM10A,2013-03-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-01,Risk of Violence,3,Low,2013-04-01,2013-04-01,2013-04-01,1,0,1096,0,0,0\r\n2779,melody odonnell,melody,odonnell,2013-08-23,Female,1959-04-15,57,Greater than 45,Caucasian,0,1,0,0,3,,,,12006701CF10A,2012-05-05,,475,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-23,Risk of Violence,1,Low,2013-08-23,,,3,0,952,0,0,0\r\n2780,jaime londono,jaime,londono,2013-12-10,Male,1957-08-18,58,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-09 10:34:54,2013-12-10 01:12:56,13022803MM10A,2013-12-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-10,Risk of Violence,1,Low,2013-12-10,2013-12-09,2013-12-10,0,0,843,0,0,0\r\n2782,charles hill,charles,hill,2014-08-20,Male,1971-11-13,44,25 - 45,African-American,2,9,0,0,19,-17,2014-08-03 01:39:31,2014-08-20 11:15:38,14011744MM10A,2014-08-03,,17,M,Battery,1,15002584CF10A,(M1),57,2015-01-07,Aggravated Battery / Pregnant,2015-03-05,2015-05-11,,1,15002584CF10A,(M1),2015-01-07,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2014-08-20,Risk of Violence,6,Medium,2014-08-20,2015-03-05,2015-05-11,19,0,140,1,1,1\r\n2786,corey mathis,corey,mathis,2013-05-27,Male,1987-11-21,28,25 - 45,African-American,0,4,0,0,1,0,2013-05-27 12:20:56,2013-06-12 10:12:20,13007555CF10A,2013-05-26,,1,F,Aggrav Stalking After Injunctn,1,15007291MM10A,(M1),0,2015-07-08,Possess Cannabis/20 Grams Or Less,2015-07-08,2015-07-09,,0,,,,,Risk of Recidivism,4,Low,2013-05-27,Risk of Violence,5,Medium,2013-05-27,2015-07-08,2015-07-09,1,16,772,1,0,0\r\n2788,glenn miller,glenn,miller,2013-12-25,Male,1962-03-11,54,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-24 11:18:23,2013-12-31 04:10:32,13017736CF10A,2013-12-24,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-25,Risk of Violence,1,Low,2013-12-25,2013-12-24,2013-12-31,0,6,828,0,0,0\r\n2789,justin herrera,justin,herrera,2013-04-14,Male,1994-08-28,21,Less than 25,Hispanic,0,4,0,0,0,657,2015-01-31 08:35:49,2015-03-25 08:41:02,13007134MM10A,2013-04-13,,1,M,Battery,1,15001448CF10A,(M1),0,2015-01-31,Criminal Mischief>$200<$1000,2015-01-31,2015-03-25,,1,15002607MM10A,(M1),2015-01-31,Battery,Risk of Recidivism,4,Low,2013-04-14,Risk of Violence,6,Medium,2013-04-14,2015-01-31,2015-03-25,0,0,657,1,1,1\r\n2790,francia omana,francia,omana,2013-11-13,Male,1972-09-10,43,25 - 45,Caucasian,0,4,0,0,0,-1,2013-11-12 09:31:37,2013-11-13 03:53:01,13021320MM10A,2013-11-12,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-13,Risk of Violence,1,Low,2013-11-13,2013-11-12,2013-11-13,0,0,870,0,0,0\r\n2792,johny dabrezil,johny,dabrezil,2013-09-05,Male,1984-12-12,31,25 - 45,African-American,0,10,0,0,5,0,2013-09-05 01:39:00,2013-09-05 07:44:12,13016952MM10A,2013-09-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-05,Risk of Violence,10,High,2013-09-05,2013-09-05,2013-09-05,5,0,939,0,0,0\r\n2793,jerome shaw,jerome,shaw,2013-02-03,Male,1985-05-02,30,25 - 45,African-American,4,10,1,0,11,0,2013-02-03 02:23:20,2013-05-31 05:51:07,13001696CF10A,2013-02-03,,0,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-03,Risk of Violence,9,High,2013-02-03,2013-02-03,2013-05-31,11,117,1153,0,0,0\r\n2800,emory harden,emory,harden,2013-04-15,Male,1991-10-04,24,Less than 25,African-American,0,7,0,0,0,-1,2013-04-14 10:11:00,2013-04-15 03:52:07,13007185MM10A,2013-04-14,,1,M,Possess Drug Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-15,Risk of Violence,4,Low,2013-04-15,2013-04-14,2013-04-15,0,0,1082,0,0,0\r\n2802,nelson zuniga,nelson,zuniga,2014-02-13,Male,1972-05-16,43,25 - 45,Caucasian,0,1,0,0,0,0,2014-02-13 04:10:00,2014-02-13 12:52:46,14005820MU10A,2014-02-13,,0,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-13,Risk of Violence,1,Low,2014-02-13,2014-02-13,2014-02-13,0,0,778,0,0,0\r\n2805,tommie johnson,tommie,johnson,2013-08-23,Male,1964-09-13,51,Greater than 45,African-American,0,7,0,0,4,-44,2013-07-10 02:17:57,2013-08-09 08:53:49,13005432CF10A,,2013-07-09,45,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-23,Risk of Violence,6,Medium,2013-08-23,2013-07-10,2013-08-09,4,0,952,0,0,0\r\n2807,jeffrey mateo,jeffrey,mateo,2013-03-27,Male,1991-08-30,24,Less than 25,Hispanic,0,10,0,0,11,-15,2013-03-12 11:19:44,2013-03-13 01:53:48,13003630CF10A,2013-03-12,,15,F,Solicit Deliver Cocaine,1,13016634MM10A,(M1),0,2013-08-30,Battery,2013-08-30,2013-11-16,,1,13016634MM10A,(M1),2013-08-30,Battery,Risk of Recidivism,10,High,2013-03-27,Risk of Violence,8,High,2013-03-27,2013-08-30,2013-11-16,11,0,156,1,1,1\r\n2808,jose saborit,jose,saborit,2013-01-22,Male,1984-07-19,31,25 - 45,African-American,0,3,0,0,1,309,2013-11-27 09:45:07,2014-07-15 06:07:00,12018175CF10A,2012-12-13,,40,F,Attempt Burglary (Struct),1,16001489MM40A,(M1),,2016-02-26,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-22,Risk of Violence,2,Low,2013-01-22,2013-11-27,2014-07-15,1,0,309,0,0,0\r\n2809,kensley petit-frere,kensley,petit-frere,2013-01-10,Male,1992-08-16,23,Less than 25,African-American,0,3,0,0,0,-1,2013-01-09 05:06:14,2013-01-11 03:18:41,13000399CF10A,2013-01-09,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-10,Risk of Violence,4,Low,2013-01-10,2013-01-09,2013-01-11,0,1,1177,0,0,0\r\n2813,franklin green,franklin,green,2014-06-11,Male,1989-11-01,26,25 - 45,African-American,2,10,1,0,8,-85,2014-03-18 08:15:36,2014-06-11 01:10:37,14004699MM10A,2014-03-18,,85,M,Prowling/Loitering,1,15001760CF10A,(F3),0,2015-02-07,Possession Of Alprazolam,2015-02-07,2015-02-07,,1,15010569CF10A,(F3),2015-08-16,Battery on Law Enforc Officer,Risk of Recidivism,10,High,2014-06-11,Risk of Violence,7,Medium,2014-06-11,2015-02-07,2015-02-07,8,0,241,0,1,1\r\n2817,jonathan waskiw,jonathan,waskiw,2014-01-02,Male,1988-04-23,27,25 - 45,Caucasian,0,9,0,0,1,-1,2014-01-01 04:41:12,2014-01-02 08:10:32,13012717CF10A,,2014-01-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-02,Risk of Violence,7,Medium,2014-01-02,2014-01-01,2014-01-02,1,0,820,0,0,0\r\n2820,eric tessler,eric,tessler,2013-04-07,Male,1950-01-16,66,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-06 11:23:02,2013-04-07 01:22:00,13006627MM10A,2013-04-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-07,Risk of Violence,1,Low,2013-04-07,2013-04-06,2013-04-07,0,0,1090,0,0,0\r\n2821,courtney robichaud,courtney,robichaud,2013-11-14,Female,1979-04-24,36,25 - 45,Caucasian,0,4,0,1,3,0,2013-11-14 04:58:52,2013-12-09 09:49:51,13015818CF10A,2013-11-14,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-12-16,2013-12-18,3,25,32,0,0,0\r\n2828,diamond adamson,diamond,adamson,2014-10-29,Female,1993-07-17,22,Less than 25,African-American,0,7,0,0,0,0,2014-10-29 01:41:40,2014-10-29 07:55:17,14015675MM10A,2014-10-28,,1,M,Battery,1,14100640TC30A,(M2),,2014-11-11,Operating W/O Valid License,,,,1,15003583MM10A,(M1),2015-03-26,Battery,Risk of Recidivism,7,Medium,2014-10-29,Risk of Violence,5,Medium,2014-10-29,2015-03-26,2015-03-29,0,0,13,1,1,1\r\n2829,kelvin morales,kelvin,morales,2013-10-06,Male,1990-12-16,25,25 - 45,Hispanic,0,3,0,1,1,-1,2013-10-05 07:50:24,2013-10-06 07:37:01,13013986CF10A,2013-10-05,,1,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-06,Risk of Violence,3,Low,2013-10-06,2013-10-05,2013-10-06,1,0,908,0,0,0\r\n2830,roosevelt major,roosevelt,major,2013-02-14,Male,1959-09-04,56,Greater than 45,African-American,0,1,0,0,4,-1,2013-02-13 04:09:26,2013-02-15 05:28:41,13002267CF10A,2013-02-13,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-14,Risk of Violence,1,Low,2013-02-14,2013-02-13,2013-02-15,4,1,1142,0,0,0\r\n2834,jonathan harjo,jonathan,harjo,2013-11-05,Male,1987-03-19,29,25 - 45,Native American,0,2,0,0,1,37,2013-12-12 07:24:22,2014-01-14 08:20:31,13006333CF10A,2013-05-02,,187,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-05,Risk of Violence,2,Low,2013-11-05,2013-12-12,2014-01-14,1,0,37,0,0,0\r\n2837,naomi werman,naomi,werman,2014-02-19,Female,1958-02-24,58,Greater than 45,African-American,0,1,0,0,3,-18,2014-02-01 02:52:11,2014-02-19 11:14:31,13005769MM10A,,2014-02-18,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-19,Risk of Violence,1,Low,2014-02-19,2014-02-01,2014-02-19,3,0,772,0,0,0\r\n2841,clayton bigger,clayton,bigger,2013-05-02,Male,1991-11-10,24,Less than 25,Caucasian,0,5,1,2,3,0,2013-05-02 01:33:22,2013-05-02 04:51:19,13008474MM10A,2013-05-02,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-02,Risk of Violence,6,Medium,2013-05-02,2013-05-02,2013-05-02,3,0,1065,0,0,0\r\n2842,demetrius coleman,demetrius,coleman,2013-04-12,Male,1993-11-09,22,Less than 25,African-American,0,3,0,0,0,-1,2013-04-11 05:01:46,2013-06-21 05:27:12,13005241CF10A,2013-04-11,,1,F,Burglary Dwelling Armed,1,14014862MM10A,(M1),0,2014-10-10,Battery,2014-10-10,2015-01-15,,1,14014862MM10A,(M1),2014-10-10,Battery,Risk of Recidivism,3,Low,2013-04-12,Risk of Violence,6,Medium,2013-04-12,2014-10-10,2015-01-15,0,70,546,1,1,1\r\n2843,william cody,william,cody,2014-01-13,Male,1976-11-11,39,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-12 07:47:58,2014-01-13 02:23:05,14000575MM10A,2014-01-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-01-12,2014-01-13,0,0,809,0,0,0\r\n2848,garrick crawford,garrick,crawford,2013-12-15,Male,1992-11-04,23,Less than 25,Caucasian,0,8,0,0,0,0,2013-12-15 05:17:34,2013-12-18 06:00:00,13023226MM10A,2013-12-15,,0,M,Viol Pretrial Release Dom Viol,1,14002300CF10A,(F2),0,2014-02-18,Robbery / No Weapon,2014-02-18,2014-03-21,,1,14002300CF10A,(F2),2014-02-18,Robbery / No Weapon,Risk of Recidivism,8,High,2013-12-15,Risk of Violence,9,High,2013-12-15,2014-02-18,2014-03-21,0,3,65,1,1,1\r\n2851,yves exilus,yves,exilus,2014-02-02,Male,1977-01-01,39,25 - 45,Other,0,5,0,0,6,-1,2014-02-01 07:53:55,2014-02-27 09:58:59,14001446CF10A,2014-02-01,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-02,Risk of Violence,1,Low,2014-02-02,2014-02-01,2014-02-27,6,25,789,0,0,0\r\n2852,jeffrey joseph,jeffrey,joseph,2013-09-19,Male,1990-09-25,25,25 - 45,African-American,0,8,0,0,0,0,2013-09-19 04:53:03,2013-09-21 01:36:58,13013235CF10A,2013-09-19,,0,F,Felony Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-19,Risk of Violence,6,Medium,2013-09-19,2014-05-16,2014-07-31,0,2,239,0,0,0\r\n2856,marcus harvey,marcus,harvey,2013-08-22,Male,1990-03-17,26,25 - 45,African-American,0,6,0,0,6,-1,2013-08-21 12:18:44,2013-08-23 04:24:07,13011858CF10A,,2013-08-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-22,Risk of Violence,6,Medium,2013-08-22,2013-08-21,2013-08-23,6,1,953,0,0,0\r\n2857,shivaughn barrett,shivaughn,barrett,2013-01-08,Male,1990-09-07,25,25 - 45,African-American,0,9,0,1,2,-1,2013-01-07 07:36:11,2013-10-08 11:00:00,13000269CF10A,2013-01-07,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-08,Risk of Violence,8,High,2013-01-08,2014-06-06,2014-07-10,2,273,514,0,0,0\r\n2860,ricardo sinclair,ricardo,sinclair,2013-12-09,Male,1979-12-26,36,25 - 45,African-American,0,1,0,0,0,-3,2013-12-06 05:42:25,2013-12-07 02:22:24,13016913CF10A,2013-12-06,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,1,Low,2013-12-09,2014-11-19,2014-11-26,0,0,345,0,0,0\r\n2864,benjamin sapp,benjamin,sapp,2013-10-02,Male,1981-01-20,35,25 - 45,African-American,0,4,0,0,7,-23,2013-09-09 02:47:53,2013-09-09 07:07:40,13012753CF10A,2013-09-08,,24,F,Resist Officer w/Violence,1,14016290MM10A,(M1),0,2014-11-13,Battery,2014-11-13,2014-11-14,,1,14016290MM10A,(M1),2014-11-13,Battery,Risk of Recidivism,4,Low,2013-10-02,Risk of Violence,2,Low,2013-10-02,2014-11-13,2014-11-14,7,0,407,1,1,1\r\n2865,jovaughn walker,jovaughn,walker,2013-08-21,Male,1994-02-20,22,Less than 25,African-American,0,4,0,0,2,-1,2013-08-20 11:12:08,2013-08-22 07:39:05,13011708CF10A,2013-08-20,,1,F,Crim Use of Personal ID Info,1,14020971TC10A,(M2),0,2014-06-05,Unlaw LicTag/Sticker Attach,2014-06-05,2014-06-06,,1,16002969CF10A,(F3),2016-02-07,Aggravated Assault,Risk of Recidivism,4,Low,2013-08-21,Risk of Violence,6,Medium,2013-08-21,2014-06-05,2014-06-06,2,1,288,1,1,1\r\n2867,antonio monero,antonio,monero,2013-05-11,Male,1990-08-23,25,25 - 45,Caucasian,0,2,0,0,0,0,2013-05-11 01:13:34,2013-05-11 06:35:21,13006746CF10A,2013-05-10,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-11,Risk of Violence,3,Low,2013-05-11,2013-05-11,2013-05-11,0,0,1056,0,0,0\r\n2868,phillip rasskazov,phillip,rasskazov,2013-01-12,Male,1991-08-24,24,Less than 25,Caucasian,0,7,0,0,0,,,,13000699MM10A,2013-01-11,,1,M,Crim Attempt/Solicit/Consp,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-12,Risk of Violence,4,Low,2013-01-12,,,0,0,1175,0,0,0\r\n2869,domingo alonzo,domingo,alonzo,2013-11-12,Male,1979-10-25,36,25 - 45,Hispanic,0,1,0,0,0,-7,2013-11-05 07:01:36,2013-11-06 08:05:18,13020898MM10A,2013-11-05,,7,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-12,Risk of Violence,1,Low,2013-11-12,2013-11-05,2013-11-06,0,0,871,0,0,0\r\n2870,makeel stevens,makeel,stevens,2013-01-15,Male,1991-12-30,24,Less than 25,African-American,0,7,0,0,2,-1,2013-01-14 11:05:52,2013-01-26 12:04:24,13002145TC10A,2013-01-14,,1,M,Susp Drivers Lic 1st Offense,1,13023353MM10A,(M1),0,2013-11-25,Possess Cannabis/20 Grams Or Less,2013-11-25,2013-11-26,,1,14007409CF10A,(F3),2014-05-28,Aggravated Assault w/Firearm,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,7,Medium,2013-01-15,2013-01-30,2013-01-31,2,11,15,0,1,1\r\n2879,kyle sharp,kyle,sharp,2013-07-08,Male,1986-12-22,29,25 - 45,Caucasian,0,3,0,0,0,-2,2013-07-06 01:44:27,2013-07-07 01:34:55,13012829MM10A,2013-07-05,,3,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-08,Risk of Violence,1,Low,2013-07-08,2013-07-06,2013-07-07,0,0,998,0,0,0\r\n2880,chad hohle,chad,hohle,2013-09-16,Male,1965-05-14,50,Greater than 45,Caucasian,0,3,0,0,8,-1,2013-09-15 11:12:24,2014-03-07 03:16:00,13013027CF10A,2013-09-15,,1,F,DWI w/Inj Susp Lic / Habit Off,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-16,Risk of Violence,2,Low,2013-09-16,2013-09-15,2014-03-07,8,172,928,0,0,0\r\n2887,antonio lightbourn,antonio,lightbourn,2013-04-29,Male,1988-07-19,27,25 - 45,African-American,0,1,0,0,0,-1,2013-04-28 08:51:15,2013-04-29 12:45:59,13008159MM10A,2013-04-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,2,Low,2013-04-29,2013-04-28,2013-04-29,0,0,1068,0,0,0\r\n2891,gerald pena,gerald,pena,2013-02-16,Male,1994-04-20,21,Less than 25,Hispanic,0,5,0,0,1,-1,2013-02-15 11:10:37,2013-02-16 01:18:11,13003330MM10A,2013-02-15,,1,M,Possess Cannabis/20 Grams Or Less,1,14015184MO10A,(MO3),0,2014-10-18,Loitering/Prowling,2014-10-18,2014-10-19,,1,15006218MM10A,(M1),2015-06-07,Battery,Risk of Recidivism,5,Medium,2013-02-16,Risk of Violence,5,Medium,2013-02-16,2014-10-18,2014-10-19,1,0,609,1,1,1\r\n2892,edward tuck,edward,tuck,2013-05-19,Male,1958-03-18,58,Greater than 45,African-American,0,1,0,0,1,-1,2013-05-18 08:22:32,2013-07-18 08:18:26,12001737CF10A,,2013-05-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-19,Risk of Violence,1,Low,2013-05-19,2013-05-18,2013-07-18,1,60,1048,0,0,0\r\n2893,branden tyler,branden,tyler,2013-03-12,Male,1989-01-22,27,25 - 45,African-American,0,8,0,0,4,-1,2013-03-11 08:04:33,2013-04-13 08:56:18,13003596CF10A,2013-03-11,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-12,Risk of Violence,5,Medium,2013-03-12,2013-03-11,2013-04-13,4,32,1116,0,0,0\r\n2898,melissa mccaffery,melissa,mccaffery,2013-06-05,Female,1984-06-17,31,25 - 45,Caucasian,0,3,0,0,0,-5,2013-05-31 11:07:01,2013-06-01 08:46:14,13010493MM10A,2013-05-31,,5,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-05,Risk of Violence,2,Low,2013-06-05,2013-05-31,2013-06-01,0,0,1031,0,0,0\r\n2900,franck dozil,franck,dozil,2013-01-21,Male,1991-11-24,24,Less than 25,African-American,0,7,0,0,3,-1,2013-01-20 11:28:26,2013-01-27 02:04:07,12014745MM10A,,2013-01-20,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-21,Risk of Violence,7,Medium,2013-01-21,2013-01-20,2013-01-27,3,6,1166,0,0,0\r\n2902,robert hecht,robert,hecht,2013-10-09,Male,1972-07-14,43,25 - 45,Caucasian,0,1,0,0,0,-1,2013-10-08 05:27:12,2013-10-09 08:26:03,13019124MM10A,2013-10-08,,1,M,DUI- Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-09,Risk of Violence,1,Low,2013-10-09,2013-10-08,2013-10-09,0,0,905,0,0,0\r\n2908,breon barnes,breon,barnes,2013-08-27,Male,1993-01-11,23,Less than 25,African-American,0,5,0,0,0,-1,2013-08-26 03:02:44,2013-08-29 04:55:55,13012043CF10A,2013-08-26,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-27,Risk of Violence,6,Medium,2013-08-27,2014-08-29,2014-12-26,0,2,367,0,0,0\r\n2910,sergio garcia,sergio,garcia,2013-10-16,Male,1974-02-13,42,25 - 45,Caucasian,0,4,0,0,0,-1,2013-10-15 10:30:48,2013-10-16 08:02:49,13019573MM10A,2013-10-15,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-16,Risk of Violence,1,Low,2013-10-16,2013-10-15,2013-10-16,0,0,898,0,0,0\r\n2911,shrieff poole,shrieff,poole,2014-08-14,Male,1981-05-14,34,25 - 45,African-American,0,2,0,0,0,,,,08022579MO10A,,2009-10-05,1774,M,arrest case no charge,1,14003292MM20A,(M1),,2014-11-29,Battery,,,,1,14003292MM20A,(M1),2014-11-29,Battery,Risk of Recidivism,2,Low,2014-08-14,Risk of Violence,2,Low,2014-08-14,,,0,0,107,1,1,1\r\n2913,jeremiah jennings,jeremiah,jennings,2013-08-19,Male,1985-09-11,30,25 - 45,African-American,0,10,3,0,18,-1,2013-08-18 07:29:15,2013-09-05 04:16:47,13015618MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-19,Risk of Violence,8,High,2013-08-19,2015-03-03,2015-03-09,18,17,561,0,0,0\r\n2914,terell rogers,terell,rogers,2013-01-09,Male,1986-08-13,29,25 - 45,African-American,0,9,0,0,1,-1,2013-01-08 06:02:56,2013-10-25 08:31:58,13000322CF10A,2013-01-08,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-09,Risk of Violence,7,Medium,2013-01-09,2013-01-08,2013-10-25,1,289,1178,0,0,0\r\n2917,kevin walsh,kevin,walsh,2013-04-15,Male,1989-06-12,26,25 - 45,Caucasian,0,4,0,1,3,-4,2013-04-11 01:25:44,2013-04-13 08:03:53,13007508MM10A,2013-04-11,,4,M,Petit Theft $100- $300,1,16000938MM40A,(M2),,2016-02-03,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-15,Risk of Violence,4,Low,2013-04-15,2013-07-29,2013-10-22,3,0,105,0,0,0\r\n2922,anthony dees,anthony,dees,2013-02-22,Male,1965-02-19,51,Greater than 45,African-American,0,7,0,0,5,0,2013-02-22 12:10:28,2013-02-27 05:48:51,11046593TC10A,2011-09-18,,523,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-22,Risk of Violence,5,Medium,2013-02-22,2013-02-22,2013-02-27,5,5,1134,0,0,0\r\n2923,danue walker,danue,walker,2013-08-01,Male,1979-06-11,36,25 - 45,Other,0,1,0,0,0,0,2013-08-01 12:11:18,2013-08-01 08:31:19,13014475MM10A,2013-07-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2013-08-01,2013-08-01,0,0,974,0,0,0\r\n2925,tyrone reyna,tyrone,reyna,2013-11-06,Male,1953-06-25,62,Greater than 45,Hispanic,0,1,0,0,0,-2,2013-11-04 01:53:24,2013-11-05 07:23:37,13020735MM10A,2013-11-03,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-06,Risk of Violence,1,Low,2013-11-06,2013-11-04,2013-11-05,0,0,877,0,0,0\r\n2928,rashaad davis,rashaad,davis,2014-02-26,Male,1980-12-31,35,25 - 45,African-American,0,2,0,0,1,-1,2014-02-25 02:40:00,2014-02-26 09:09:55,10077131TC30A,2010-07-17,,1320,M,Violation License Restrictions,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-26,Risk of Violence,1,Low,2014-02-26,2014-02-25,2014-02-26,1,0,765,0,0,0\r\n2929,andres carmona,andres,carmona,2013-05-24,Male,1994-02-05,22,Less than 25,Caucasian,0,3,0,0,0,0,2013-05-24 04:43:42,2013-05-28 02:26:27,13007417CF10A,2013-05-24,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-24,Risk of Violence,5,Medium,2013-05-24,2013-09-09,2013-10-23,0,4,108,0,0,0\r\n2931,maxim ambroise,maxim,ambroise,2013-08-05,Male,1976-03-24,40,25 - 45,African-American,0,2,0,0,0,-3,2013-08-02 07:56:17,2013-08-03 08:03:57,13010927CF10A,2013-08-02,,3,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-05,Risk of Violence,1,Low,2013-08-05,2013-08-02,2013-08-03,0,0,970,0,0,0\r\n2932,john sirmons,john,sirmons,2014-02-06,Male,1979-06-13,36,25 - 45,African-American,0,2,0,0,2,0,2014-02-06 06:31:29,2014-02-07 04:00:17,14001690CF10A,2014-02-06,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-06,Risk of Violence,1,Low,2014-02-06,2014-02-06,2014-02-07,2,1,785,0,0,0\r\n2935,robert jacob,robert,jacob,2013-07-10,Male,1947-02-09,69,Greater than 45,Caucasian,0,1,0,0,0,-3,2013-07-07 11:26:52,2013-07-08 08:36:55,13012874MM10A,2013-07-07,,3,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-10,Risk of Violence,1,Low,2013-07-10,2013-07-07,2013-07-08,0,0,996,0,0,0\r\n2936,fabrice alexandre,fabrice,alexandre,2014-01-25,Male,1988-10-02,27,25 - 45,African-American,0,4,1,0,1,-1,2014-01-24 04:31:18,2014-02-01 04:57:27,14001056CF10A,2014-01-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-25,Risk of Violence,3,Low,2014-01-25,2014-01-24,2014-02-01,1,7,797,0,0,0\r\n2938,eric alston,eric,alston,2013-10-04,Male,1988-05-01,27,25 - 45,African-American,0,1,0,0,1,-2,2013-10-02 03:21:20,2013-10-04 12:05:39,13013849CF10A,2013-10-02,,2,F,Throw Deadly Missile Into Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-04,Risk of Violence,2,Low,2013-10-04,2014-04-10,2014-04-11,1,0,188,0,0,0\r\n2939,monica mompremier,monica,mompremier,2013-01-31,Female,1991-04-22,24,Less than 25,African-American,0,6,0,0,6,-1,2013-01-30 07:28:56,2013-12-06 07:37:33,11005074MM10B,,2013-01-30,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-31,Risk of Violence,7,Medium,2013-01-31,2015-01-12,2015-04-21,6,309,711,0,0,0\r\n2943,yuli gurlanik,yuli,gurlanik,2013-07-17,Male,1973-10-04,42,25 - 45,Caucasian,0,1,0,0,0,-7,2013-07-10 08:16:29,2013-07-13 03:05:27,13009676CF10A,2013-07-10,,7,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-17,Risk of Violence,1,Low,2013-07-17,2013-07-10,2013-07-13,0,0,989,0,0,0\r\n2946,juan guacaneme,juan,guacaneme,2013-10-16,Male,1990-10-06,25,25 - 45,Caucasian,0,3,0,0,1,-1,2013-10-15 04:42:54,2013-10-16 11:36:39,13014417CF10A,2013-10-15,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-16,Risk of Violence,2,Low,2013-10-16,2014-09-09,2014-09-10,1,0,328,0,0,0\r\n2951,michael clarke,michael,clarke,2013-11-28,Male,1990-05-07,25,25 - 45,African-American,0,4,0,0,0,-1,2013-11-27 09:02:38,2013-12-04 10:11:40,13016534CF10A,2013-11-27,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-28,Risk of Violence,4,Low,2013-11-28,2015-12-02,2015-12-03,0,6,734,0,0,0\r\n2952,gaellen fabre,gaellen,fabre,2013-03-07,Male,1993-12-14,22,Less than 25,African-American,0,3,0,0,0,-1,2013-03-06 08:19:03,2013-03-07 06:09:53,13003369CF10A,2013-03-06,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-07,Risk of Violence,5,Medium,2013-03-07,2013-03-06,2013-03-07,0,0,1121,0,0,0\r\n2954,philip picard,philip,picard,2013-02-06,Male,1994-08-22,21,Less than 25,Caucasian,0,4,0,0,0,-1,2013-02-05 07:50:29,2013-02-06 02:23:08,13001783CF10A,2013-02-05,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-06,Risk of Violence,7,Medium,2013-02-06,2013-02-05,2013-02-06,0,0,1150,0,0,0\r\n2955,christopher bryant,christopher,bryant,2013-09-08,Male,1985-09-11,30,25 - 45,African-American,0,2,0,0,1,0,2013-09-08 06:44:39,2013-09-10 03:35:08,13017093MM10A,2013-09-08,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-08,Risk of Violence,3,Low,2013-09-08,2013-09-08,2013-09-10,1,2,936,0,0,0\r\n2956,robert lallier,robert,lallier,2013-11-16,Male,1969-12-13,46,Greater than 45,Caucasian,0,5,0,0,9,0,2013-11-16 02:06:57,2013-11-20 05:42:41,13021581MM10A,2013-11-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-16,Risk of Violence,2,Low,2013-11-16,2013-11-16,2013-11-20,9,4,867,0,0,0\r\n2959,corey brown,corey,brown,2013-01-17,Male,1989-08-31,26,25 - 45,African-American,0,7,0,0,2,0,2013-01-17 05:17:57,2013-01-17 07:05:29,13001189MM10A,2013-01-17,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-17,Risk of Violence,7,Medium,2013-01-17,2013-01-17,2013-01-17,2,0,1170,0,0,0\r\n2962,david brown,david,brown,2013-08-29,Male,1976-01-15,40,25 - 45,African-American,0,1,0,0,1,-1,2013-08-28 06:36:56,2013-08-29 07:57:29,13016493MM10A,2013-08-27,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-29,Risk of Violence,2,Low,2013-08-29,2013-08-28,2013-08-29,1,0,946,0,0,0\r\n2963,dennis figueroalopez,dennis,figueroalopez,2013-10-03,Male,1981-06-25,34,25 - 45,Caucasian,0,4,0,0,0,-1,2013-10-02 07:42:44,2013-10-30 09:15:07,13013823CF10A,2013-10-02,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-03,Risk of Violence,3,Low,2013-10-03,2013-10-02,2013-10-30,0,27,911,0,0,0\r\n2965,stefano forero,stefano,forero,2013-02-16,Male,1987-11-20,28,25 - 45,Hispanic,0,5,0,0,3,-1,2013-02-15 07:09:29,2013-02-16 01:16:11,12078938TC20A,,2013-02-15,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-16,Risk of Violence,5,Medium,2013-02-16,2013-07-03,2013-07-04,3,0,137,0,0,0\r\n2969,ralph woodward,ralph,woodward,2014-05-01,Male,1956-11-18,59,Greater than 45,Caucasian,0,1,0,0,3,0,2014-05-01 04:27:00,2014-05-02 11:39:39,14016793MU10A,2014-05-01,,0,M,Driving Under The Influence,1,14017883MM10A,(M1),0,2014-12-19,Battery,2014-12-19,2015-01-03,,1,14017883MM10A,(M1),2014-12-19,Battery,Risk of Recidivism,1,Low,2014-05-01,Risk of Violence,1,Low,2014-05-01,2014-11-20,2014-11-23,3,1,203,0,1,1\r\n2970,charles frye,charles,frye,2013-02-10,Male,1979-01-08,37,25 - 45,Native American,0,2,0,0,0,-1,2013-02-09 11:48:32,2013-02-10 08:32:47,13002039CF10A,2013-02-09,,1,F,\"Aggr Child Abuse-Torture,Punish\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-10,Risk of Violence,1,Low,2013-02-10,2013-02-09,2013-02-10,0,0,1146,0,0,0\r\n2972,aston bailey,aston,bailey,2014-02-23,Male,1965-11-28,50,Greater than 45,African-American,0,1,0,0,0,-1,2014-02-22 01:33:06,2014-02-24 02:04:00,14002523CF10A,2014-02-22,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-23,Risk of Violence,1,Low,2014-02-23,2014-02-22,2014-02-24,0,1,768,0,0,0\r\n2974,jeffrey scott,jeffrey,scott,2013-08-01,Male,1958-09-03,57,Greater than 45,African-American,0,5,0,0,8,-1,2013-07-31 05:54:37,2013-11-08 03:35:51,13013043CF10A,2013-07-31,,1,F,Felony Battery w/Prior Convict,1,13015640CF10A,(F2),0,2013-11-10,Throw Missile Into Pub/Priv Dw,2013-11-10,2014-05-14,,1,13015640CF10A,(F2),2013-11-10,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,5,Medium,2013-08-01,Risk of Violence,2,Low,2013-08-01,2013-11-10,2014-05-14,8,99,101,1,1,1\r\n2976,johan wyngaarde,johan,wyngaarde,2013-04-16,Male,1984-07-14,31,25 - 45,African-American,0,5,0,0,5,-1,2013-04-15 09:48:22,2013-04-16 07:51:31,13007298MM10A,2013-04-15,,1,M,Assault,1,15008901CF10A,(F3),0,2015-07-10,Possession Of Heroin,2015-07-10,2015-07-13,,0,,,,,Risk of Recidivism,5,Medium,2013-04-16,Risk of Violence,5,Medium,2013-04-16,2013-08-05,2013-08-08,5,0,111,0,0,0\r\n2977,patricia gibson,patricia,gibson,2014-03-01,Female,1965-01-27,51,Greater than 45,African-American,0,7,0,0,1,,,,10020216MM10A,2010-09-19,,1259,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-01,Risk of Violence,2,Low,2014-03-01,,,1,0,762,0,0,0\r\n2979,horace davis,horace,davis,2013-08-05,Male,1971-12-24,44,25 - 45,African-American,0,8,0,0,9,-28,2013-07-08 03:02:29,2013-08-02 11:00:32,13009558CF10A,2013-07-08,,28,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-05,Risk of Violence,6,Medium,2013-08-05,2014-07-23,2014-07-31,9,0,352,0,0,0\r\n2983,vanessa gonzalez,vanessa,gonzalez,2014-01-19,Female,1990-09-21,25,25 - 45,Caucasian,0,4,0,0,0,-1,2014-01-18 06:18:49,2014-01-19 08:45:11,14000808CF10A,2014-01-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-19,Risk of Violence,3,Low,2014-01-19,2014-01-18,2014-01-19,0,0,803,0,0,0\r\n2984,augusta howard,augusta,howard,2013-08-01,Male,1965-02-14,51,Greater than 45,African-American,0,3,0,0,5,-1,2013-07-31 04:28:15,2013-07-31 09:19:37,97045105TC30A,,1999-12-09,4984,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-01,Risk of Violence,3,Low,2013-08-01,2013-07-31,2013-07-31,5,0,974,0,0,0\r\n2988,blair wright,blair,wright,2013-11-18,Male,1958-08-21,57,Greater than 45,Caucasian,0,1,0,0,2,-11,2013-11-07 01:02:54,2013-11-09 02:40:38,13015742CF10A,,2013-11-07,11,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-18,Risk of Violence,1,Low,2013-11-18,2013-12-24,2013-12-24,2,0,36,0,0,0\r\n2990,antonio rivas,antonio,rivas,2013-12-09,Male,1960-07-14,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-08 10:00:24,2013-12-09 08:45:38,13022716MM10A,2013-12-08,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,1,Low,2013-12-09,2013-12-08,2013-12-09,0,0,844,0,0,0\r\n2992,elithanne lucthamas,elithanne,lucthamas,2014-03-25,Female,1974-02-12,42,25 - 45,African-American,0,1,0,0,0,0,2014-03-25 03:00:23,2014-03-25 08:06:06,14004243CF10A,2014-03-25,,0,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-25,Risk of Violence,1,Low,2014-03-25,2014-03-25,2014-03-25,0,0,738,0,0,0\r\n2995,richard kemp,richard,kemp,2013-03-18,Male,1957-08-27,58,Greater than 45,African-American,0,9,0,0,16,-47,2013-01-30 04:44:55,2013-02-28 10:10:00,13001521CF10A,2013-01-30,,47,F,Felony Petit Theft,1,15014932CF10A,(F3),0,2015-11-17,Grand Theft in the 3rd Degree,2015-11-17,2015-12-22,,0,,,,,Risk of Recidivism,9,High,2013-03-18,Risk of Violence,9,High,2013-03-18,2014-06-27,2014-09-26,16,0,466,0,0,0\r\n2996,ilyess benamor,ilyess,benamor,2013-04-20,Male,1994-09-01,21,Less than 25,Other,0,4,0,0,0,-1,2013-04-19 11:52:35,2013-05-18 08:03:09,13005634CF10A,2013-04-19,,1,F,Purchase Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,5,Medium,2013-04-20,2013-04-19,2013-05-18,0,28,1077,0,0,0\r\n2998,julissa licona,julissa,licona,2013-09-04,Female,1991-07-22,24,Less than 25,Hispanic,0,4,0,0,0,0,2013-09-04 01:32:50,2013-09-04 01:46:03,13016860MM10A,2013-09-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-04,Risk of Violence,4,Low,2013-09-04,2013-09-04,2013-09-04,0,0,940,0,0,0\r\n3003,trevor russell,trevor,russell,2013-08-18,Male,1974-02-13,42,25 - 45,African-American,0,4,0,0,1,0,2013-08-18 01:50:02,2013-08-19 03:46:45,13011575CF10A,2013-08-17,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-18,Risk of Violence,2,Low,2013-08-18,2013-08-18,2013-08-19,1,1,957,0,0,0\r\n3005,chadwayne maragh,chadwayne,maragh,2013-05-25,Male,1994-10-14,21,Less than 25,African-American,0,6,0,0,1,-1,2013-05-24 04:57:35,2013-06-01 04:53:45,12017982CF10A,,2013-05-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-25,Risk of Violence,6,Medium,2013-05-25,2013-05-24,2013-06-01,1,7,1042,0,0,0\r\n3009,karl saldana,karl,saldana,2013-04-22,Male,1959-12-26,56,Greater than 45,Hispanic,0,4,0,0,8,,,,12007837CF10A,2012-05-27,,330,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-22,Risk of Violence,3,Low,2013-04-22,,,8,0,1075,0,0,0\r\n3010,thomas handy,thomas,handy,2013-10-03,Male,1957-09-17,58,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-03 02:20:47,2013-10-03 07:55:20,13018830MM10A,2013-10-02,,1,M,DUI Blood Alcohol Above 0.20,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-10-03,2013-10-03,0,0,911,0,0,0\r\n3020,devonah daniels,devonah,daniels,2013-02-26,Male,1969-11-23,46,Greater than 45,African-American,0,9,0,0,2,-1,2013-02-25 08:20:16,2013-02-26 06:41:08,13002868CF10A,2013-02-25,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-26,Risk of Violence,4,Low,2013-02-26,2013-11-12,2013-12-18,2,0,259,0,0,0\r\n3022,willie terry,willie,terry,2013-01-17,Male,1981-03-22,35,25 - 45,African-American,0,5,0,0,4,-1,2013-01-16 10:14:25,2013-02-15 01:55:17,13001137MM10A,2013-01-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-17,Risk of Violence,6,Medium,2013-01-17,2013-01-16,2013-02-15,4,29,1170,0,0,0\r\n3025,troy harris,troy,harris,2013-11-19,Male,1973-09-24,42,25 - 45,African-American,0,5,0,0,2,-1,2013-11-18 05:25:49,2013-11-19 02:03:11,13015997CF10A,2013-11-18,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-19,Risk of Violence,4,Low,2013-11-19,2013-11-18,2013-11-19,2,0,864,0,0,0\r\n3030,glenardo stubbs,glenardo,stubbs,2013-04-29,Male,1979-03-14,37,25 - 45,African-American,0,3,0,0,12,-74,2013-02-14 04:39:29,2013-03-11 09:00:46,11010599CF10A,,2013-02-14,74,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-29,Risk of Violence,2,Low,2013-04-29,2013-07-25,2013-08-22,12,0,87,0,0,0\r\n3032,geovanni casteel,geovanni,casteel,2013-02-04,Male,1983-09-14,32,25 - 45,African-American,0,4,0,1,8,-1,2013-02-03 06:34:52,2013-02-07 11:43:19,13001707CF10A,2013-02-03,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-04,Risk of Violence,2,Low,2013-02-04,2013-04-05,2013-05-14,8,3,60,0,0,0\r\n3033,julo victor,julo,victor,2013-03-11,Male,1984-09-22,31,25 - 45,Other,0,6,0,0,5,-1,2013-03-10 08:28:08,2013-03-13 12:29:20,13003527CF10A,2013-03-10,,1,F,Grand Theft in the 3rd Degree,1,15008288MM10A,(M1),0,2015-08-05,Possess Cannabis/20 Grams Or Less,2015-08-05,2015-08-06,,0,,,,,Risk of Recidivism,6,Medium,2013-03-11,Risk of Violence,4,Low,2013-03-11,2015-08-05,2015-08-06,5,2,877,1,0,0\r\n3034,shemeka suggs,shemeka,suggs,2013-05-01,Female,1982-06-27,33,25 - 45,African-American,0,1,0,0,1,-1,2013-04-30 12:54:45,2013-05-02 12:26:52,13008355MM10A,2013-04-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2013-04-30,2013-05-02,1,1,1066,0,0,0\r\n3035,ivan parra,ivan,parra,2013-01-10,Male,1990-10-28,25,25 - 45,Caucasian,0,4,0,0,4,-1,2013-01-09 02:20:36,2013-07-11 06:30:31,13000358CF10A,2013-01-09,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-10,Risk of Violence,4,Low,2013-01-10,2013-07-11,2013-12-01,4,325,1177,0,0,0\r\n3036,tanika brownlee,tanika,brownlee,2014-03-20,Female,1982-11-01,33,25 - 45,African-American,0,1,0,0,0,-1,2014-03-19 08:34:38,2014-03-20 10:14:22,14004793MM10A,2014-03-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-20,Risk of Violence,1,Low,2014-03-20,2014-03-19,2014-03-20,0,0,743,0,0,0\r\n3037,xavier ramos,xavier,ramos,2013-12-13,Male,1995-02-01,21,Less than 25,Hispanic,0,5,0,0,1,-1,2013-12-12 10:48:59,2013-12-13 08:38:42,13013750CF10A,,2013-12-12,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-13,Risk of Violence,9,High,2013-12-13,2013-12-12,2013-12-13,1,0,840,0,0,0\r\n3038,charlotte nicholas,charlotte,nicholas,2013-09-06,Female,1951-09-19,64,Greater than 45,Caucasian,0,3,0,0,7,123,2014-01-07 01:01:49,2014-03-24 04:05:57,12010888MM10A,2012-03-19,,536,M,Expired DL More Than 6 Months,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2014-01-07,2014-03-24,7,0,123,0,0,0\r\n3040,samuel clarke,samuel,clarke,2013-11-06,Male,1959-09-03,56,Greater than 45,African-American,0,1,0,0,1,-22,2013-10-15 09:44:46,2013-10-18 07:16:45,13014397CF10A,,2013-10-15,22,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-06,Risk of Violence,1,Low,2013-11-06,2013-10-15,2013-10-18,1,0,877,0,0,0\r\n3041,david munoz,david,munoz,2013-01-28,Male,1977-10-13,38,25 - 45,Caucasian,0,3,0,0,0,-1,2013-01-27 09:20:52,2013-01-30 05:11:21,13001930MM10A,2013-01-27,,1,M,Battery,1,14013062MM10A,(M1),0,2014-08-31,Battery,2014-08-31,2014-09-01,,1,14013062MM10A,(M1),2014-08-31,Battery,Risk of Recidivism,3,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2014-08-31,2014-09-01,0,2,580,1,1,1\r\n3042,lawanneka burton,lawanneka,burton,2013-03-09,Female,1975-12-07,40,25 - 45,African-American,0,1,0,0,4,-1,2013-03-08 06:47:59,2013-03-09 12:05:57,13000085MM30A,,2013-03-08,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2013-03-08,2013-03-09,4,0,1119,0,0,0\r\n3043,christon clark,christon,clark,2013-07-12,Male,1981-09-09,34,25 - 45,African-American,0,7,0,0,3,-105,2013-03-29 10:29:49,2013-07-02 09:55:00,10016002CF10A,,2013-03-29,105,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-07-12,Risk of Violence,6,Medium,2013-07-12,2013-12-28,2014-04-23,3,0,169,0,0,0\r\n3046,zackery mcburrows,zackery,mcburrows,2013-08-09,Male,1988-04-05,28,25 - 45,African-American,0,4,0,1,4,-1,2013-08-08 07:17:53,2013-08-09 08:35:26,13011107CF10A,2013-08-08,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-09,Risk of Violence,3,Low,2013-08-09,2013-09-25,2013-10-19,4,0,47,0,0,0\r\n3051,maurice terry,maurice,terry,2013-01-18,Male,1964-06-09,51,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-17 06:26:46,2013-01-18 08:47:55,13001194MM10A,2013-01-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2013-01-17,2013-01-18,0,0,1169,0,0,0\r\n3053,bryan boyd,bryan,boyd,2013-09-16,Male,1980-11-01,35,25 - 45,African-American,0,2,0,0,2,-1,2013-09-15 05:04:42,2013-09-17 04:20:35,13017567MM10A,2013-09-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-16,Risk of Violence,2,Low,2013-09-16,2013-09-15,2013-09-17,2,1,928,0,0,0\r\n3055,leonard newton,leonard,newton,2013-01-24,Male,1954-09-05,61,Greater than 45,African-American,0,2,0,0,5,-13,2013-01-11 04:45:49,2013-01-23 08:42:55,13000529CF10A,2013-01-11,,13,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-24,Risk of Violence,1,Low,2013-01-24,2013-06-30,2013-08-16,5,0,157,0,0,0\r\n3056,tommy moore,tommy,moore,2014-03-05,Male,1990-05-12,25,25 - 45,African-American,0,3,0,0,0,0,2014-03-05 05:26:09,2014-03-06 08:20:58,14003107CF10A,2014-03-05,,0,F,Poss Unlaw Issue Driver Licenc,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-05,Risk of Violence,4,Low,2014-03-05,2014-03-05,2014-03-06,0,1,758,0,0,0\r\n3058,jamar johnson,jamar,johnson,2013-02-17,Male,1989-08-25,26,25 - 45,African-American,0,5,0,0,0,0,2013-02-17 01:06:03,2013-02-17 11:01:50,13003392MM10A,2013-02-16,,1,M,Petit Theft,1,16007599MU10A,(M1),0,2016-03-26,,2016-03-26,2016-03-27,,0,,,,,Risk of Recidivism,5,Medium,2013-02-17,Risk of Violence,4,Low,2013-02-17,2016-03-26,2016-03-27,0,0,1133,1,0,0\r\n3064,alexey ryabov,alexey,ryabov,2014-02-02,Male,1973-06-28,42,25 - 45,Caucasian,0,1,0,0,1,-1,2014-02-01 11:16:39,2014-02-04 05:23:00,14001775MM10A,2014-02-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-02,Risk of Violence,1,Low,2014-02-02,2014-02-01,2014-02-04,1,2,789,0,0,0\r\n3066,cowania ferguson,cowania,ferguson,2013-04-01,Female,1991-03-28,25,25 - 45,African-American,0,4,0,0,1,-10,2013-03-22 09:50:36,2013-03-23 07:50:42,13004189CF10A,2013-03-22,,10,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-01,Risk of Violence,4,Low,2013-04-01,2015-02-18,2015-02-24,1,0,688,0,0,0\r\n3068,zachery griffin,zachery,griffin,2013-03-01,Male,1985-04-12,31,25 - 45,African-American,0,7,0,0,9,-1,2013-02-28 10:35:31,2013-03-01 08:06:02,13003064CF10A,2013-02-28,,1,F,Poss of Methylethcathinone,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-01,Risk of Violence,3,Low,2013-03-01,2015-06-02,2020-01-01,9,0,823,0,0,0\r\n3069,david paris,david,paris,2013-05-29,Male,1980-09-25,35,25 - 45,Caucasian,0,2,0,1,1,-1,2013-05-28 03:54:12,2013-05-29 04:20:25,13007625CF10A,2013-05-28,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-05-28,2013-05-29,1,0,1038,0,0,0\r\n3074,brian denby,brian,denby,2013-01-29,Male,1982-02-23,34,25 - 45,Caucasian,0,1,0,0,0,-1,2013-01-28 01:41:49,2013-05-24 07:34:24,13001398CF10A,2013-01-28,,1,F,Lewd/Lasc Battery Pers 12+/<16,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-28,2013-05-24,0,115,1158,0,0,0\r\n3075,ronaldo blevins,ronaldo,blevins,2013-09-05,Male,1969-11-23,46,Greater than 45,Caucasian,0,1,0,0,5,-93,2013-06-04 12:36:33,2013-06-04 12:47:00,13015202TC10A,,2013-06-04,93,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-05,Risk of Violence,1,Low,2013-09-05,2013-12-18,2013-12-19,5,0,104,0,0,0\r\n3078,clara torres,clara,torres,2013-08-12,Female,1982-08-12,33,25 - 45,Caucasian,0,2,0,0,1,-1,2013-08-11 09:15:50,2013-08-12 02:12:09,13015161MM10A,2013-08-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-12,Risk of Violence,2,Low,2013-08-12,2013-08-11,2013-08-12,1,0,963,0,0,0\r\n3081,livingstone wright,livingstone,wright,2014-02-18,Male,1986-03-01,30,25 - 45,African-American,0,2,0,1,3,-1,2014-02-17 08:23:12,2014-02-18 01:12:50,14002242CF10A,2014-02-17,,1,F,Carrying Concealed Firearm,1,16012051TC40A,(M2),,2016-03-01,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-18,Risk of Violence,2,Low,2014-02-18,2014-02-17,2014-02-18,3,0,742,1,0,0\r\n3084,yolanda young,yolanda,young,2013-12-12,Female,1966-03-07,50,Greater than 45,African-American,0,4,0,0,7,-1,2013-12-11 07:36:50,2013-12-12 09:27:58,13022943MM10A,2013-12-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-12,Risk of Violence,1,Low,2013-12-12,2013-12-11,2013-12-12,7,0,841,0,0,0\r\n3085,winston forbes,winston,forbes,2013-05-02,Male,1994-06-03,21,Less than 25,African-American,0,5,0,0,0,-1,2013-05-01 07:42:32,2013-06-20 11:32:07,13006268CF10A,2013-05-01,,1,F,Burglary Dwelling Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-02,Risk of Violence,7,Medium,2013-05-02,2014-02-24,2014-05-16,0,49,298,0,0,0\r\n3089,phyllis laurent,phyllis,laurent,2013-04-14,Female,1992-05-08,23,Less than 25,African-American,0,4,0,0,0,-1,2013-04-13 12:17:02,2013-04-14 07:40:07,13007166MM10A,2013-04-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-14,Risk of Violence,4,Low,2013-04-14,2013-04-13,2013-04-14,0,0,1083,0,0,0\r\n3090,james bradley,james,bradley,2013-01-27,Male,1990-06-05,25,25 - 45,African-American,0,6,0,0,1,0,2013-01-27 06:04:54,2013-01-29 04:29:16,13001315CF10A,2013-01-27,,0,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-27,Risk of Violence,6,Medium,2013-01-27,2015-03-30,2015-04-28,1,2,792,0,0,0\r\n3093,tristynn francis,tristynn,francis,2013-08-20,Female,1991-11-03,24,Less than 25,Caucasian,0,5,0,0,1,-1,2013-08-19 04:57:00,2013-08-20 06:13:54,13011618CF10A,,2013-08-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-20,Risk of Violence,4,Low,2013-08-20,2013-08-19,2013-08-20,1,0,955,0,0,0\r\n3096,emmanuel raymond,emmanuel,raymond,2013-08-18,Male,1955-07-08,60,Greater than 45,African-American,0,1,0,0,0,-1,2013-08-17 04:50:08,2013-08-19 07:18:58,13011535CF10A,2013-08-17,,1,F,Grand Theft in the 3rd Degree,1,15001770MM30A,(M1),,2015-11-08,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-18,Risk of Violence,1,Low,2013-08-18,2013-08-17,2013-08-19,0,1,812,1,0,0\r\n3101,claudy joseph,claudy,joseph,2013-01-16,Male,1986-01-30,30,25 - 45,African-American,0,2,0,0,2,-1,2013-01-15 09:30:53,2013-01-16 01:24:06,12006115CF10A,,2013-01-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-16,Risk of Violence,3,Low,2013-01-16,2014-12-22,2014-12-23,2,0,705,0,0,0\r\n3104,johane kemp,johane,kemp,2013-04-30,Female,1983-10-22,32,25 - 45,Other,0,1,0,0,0,-1,2013-04-29 06:48:57,2013-04-30 02:02:05,13008298MM10A,2013-04-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-30,Risk of Violence,1,Low,2013-04-30,2013-04-29,2013-04-30,0,0,1067,0,0,0\r\n3107,richard lemmon,richard,lemmon,2014-03-28,Male,1970-03-27,46,Greater than 45,Caucasian,0,1,0,0,0,0,2014-03-28 03:06:42,2014-03-28 01:21:28,14012341MU10A,2014-03-27,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-28,Risk of Violence,1,Low,2014-03-28,2014-03-28,2014-03-28,0,0,735,0,0,0\r\n3110,paola arango,paola,arango,2014-06-14,Male,1994-10-21,21,Less than 25,Caucasian,0,4,0,1,0,-1,2014-06-13 03:47:26,2014-06-14 01:59:39,14009363MM10A,2014-06-13,,1,M,Battery,1,15001697MM20A,(M1),,2015-06-29,Battery,,,,1,15001697MM20A,(M1),2015-06-29,Battery,Risk of Recidivism,4,Low,2014-06-14,Risk of Violence,5,Medium,2014-06-14,2014-06-13,2014-06-14,0,0,380,1,1,1\r\n3111,broderick westbrook,broderick,westbrook,2013-04-01,Male,1987-05-02,28,25 - 45,African-American,4,9,0,0,6,,,,11025606MM10A,2011-11-21,,497,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-01,Risk of Violence,9,High,2013-04-01,2005-01-18,2006-07-17,6,0,1096,0,0,0\r\n3112,emmanuel brown,emmanuel,brown,2013-05-22,Male,1980-08-20,35,25 - 45,African-American,0,8,0,0,0,-1,2013-05-21 04:36:41,2013-05-22 07:44:42,13007247CF10A,2013-05-21,,1,F,Pos Cannabis W/Intent Sel/Del,1,16008420TC40A,(M2),,2016-01-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2013-05-22,Risk of Violence,2,Low,2013-05-22,2013-05-21,2013-05-22,0,0,955,1,0,0\r\n3115,mary oneal,mary,oneal,2013-10-09,Female,1975-12-03,40,25 - 45,African-American,0,4,0,0,7,-33,2013-09-06 05:20:15,2013-09-08 01:45:57,13017027MM10A,2013-09-06,,33,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-09,Risk of Violence,1,Low,2013-10-09,2014-01-21,2014-01-24,7,0,104,0,0,0\r\n3118,jarrod jones,jarrod,jones,2013-04-27,Male,1987-04-30,28,25 - 45,African-American,0,4,0,0,2,0,2013-04-27 10:40:34,2013-04-30 07:29:42,13008138MM10A,2013-04-27,,0,M,Resist/Obstruct W/O Violence,1,15007603CF10A,(F3),0,2015-06-10,Retail Theft $300 1st Offense,2015-06-10,2015-06-11,,0,,,,,Risk of Recidivism,4,Low,2013-04-27,Risk of Violence,3,Low,2013-04-27,2015-01-05,2015-01-06,2,3,618,0,0,0\r\n3122,shawn carter,shawn,carter,2013-05-19,Male,1969-08-24,46,Greater than 45,Caucasian,0,4,0,1,2,-1,2013-05-18 04:22:57,2013-05-21 07:08:22,13009578MM10A,2013-05-18,,1,M,Possess Cannabis/20 Grams Or Less,1,15006360MO10A,(CO3),0,2015-06-11,Drink/Premises Licensed Estab,2015-06-11,2015-06-12,,0,,,,,Risk of Recidivism,4,Low,2013-05-19,Risk of Violence,1,Low,2013-05-19,2015-06-11,2015-06-12,2,2,753,1,0,0\r\n3129,derick daniels,derick,daniels,2013-10-30,Male,1959-10-13,56,Greater than 45,African-American,0,2,0,0,1,-1,2013-10-29 08:23:19,2013-10-30 06:28:18,13013916CF10A,,2013-10-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2013-10-29,2013-10-30,1,0,884,0,0,0\r\n3130,loki fields,loki,fields,2013-05-07,Male,1975-03-11,41,25 - 45,African-American,0,6,0,0,19,-71,2013-02-25 01:38:54,2013-04-28 01:58:15,13002850CF10A,2013-02-25,,71,F,Driving While License Revoked,1,15012102CF10A,(F1),,2015-09-18,Possession Of Cocaine 1000FT Sch,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-07,Risk of Violence,3,Low,2013-05-07,2013-02-25,2013-04-28,19,0,864,1,0,0\r\n3134,kelcie jumper,kelcie,jumper,2014-01-31,Male,1992-03-05,24,Less than 25,African-American,0,4,0,0,1,-1,2014-01-30 11:29:50,2014-01-31 08:13:34,14001699MM10A,2014-01-30,,1,M,Battery,1,14013041MM10A,(M1),0,2014-08-31,Battery,2014-08-31,2014-09-01,,1,14013041MM10A,(M1),2014-08-31,Battery,Risk of Recidivism,4,Low,2014-01-31,Risk of Violence,6,Medium,2014-01-31,2014-08-31,2014-09-01,1,0,212,1,1,1\r\n3135,cornelius brown,cornelius,brown,2013-02-04,Male,1990-09-09,25,25 - 45,African-American,0,8,0,1,7,507,2014-06-26 11:31:47,2014-07-09 06:02:45,12018443CF10A,2012-12-19,,47,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-04,Risk of Violence,9,High,2013-02-04,2014-06-26,2014-07-09,7,0,507,0,0,0\r\n3136,xochitl roberts,xochitl,roberts,2014-02-17,Female,1982-10-20,33,25 - 45,Caucasian,0,1,0,0,0,-1,2014-02-16 11:09:24,2014-02-17 01:44:55,14002693MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-17,Risk of Violence,1,Low,2014-02-17,2014-02-16,2014-02-17,0,0,774,0,0,0\r\n3137,steven wilson,steven,wilson,2013-02-24,Male,1967-06-29,48,Greater than 45,Caucasian,0,8,0,0,2,-1,2013-02-23 02:23:02,2013-02-27 08:21:29,13008289TC10A,,2013-02-23,1,M,arrest case no charge,1,15009605MM10A,(M1),0,2015-09-09,Battery,2015-09-09,2015-09-10,,1,15009605MM10A,(M1),2015-09-09,Battery,Risk of Recidivism,8,High,2013-02-24,Risk of Violence,5,Medium,2013-02-24,2013-08-26,2013-08-27,2,3,183,0,0,0\r\n3139,jose llerena,jose,llerena,2013-12-07,Male,1990-09-03,25,25 - 45,Hispanic,0,7,0,0,0,-1,2013-12-06 05:45:53,2013-12-07 01:44:27,13016910CF10A,2013-12-06,,1,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-07,Risk of Violence,5,Medium,2013-12-07,2014-06-18,2014-06-18,0,0,193,0,0,0\r\n3146,dayner rodriguez,dayner,rodriguez,2014-08-03,Male,1979-01-19,37,25 - 45,Hispanic,0,3,0,0,0,-1,2014-08-02 08:54:03,2014-08-05 04:53:29,14010547CF10A,2014-08-02,,1,F,Tamper With Witness/Victim/CI,1,15015294CF10A,(F2),1,2015-11-27,Throw Deadly Missile Into Veh,2015-11-28,2015-12-01,,1,15012743MM10A,(M1),2015-11-27,Battery,Risk of Recidivism,3,Low,2014-08-03,Risk of Violence,2,Low,2014-08-03,2014-08-02,2014-08-05,0,2,481,1,1,1\r\n3152,kimberly willie,kimberly,willie,2013-12-11,Female,1972-12-25,43,25 - 45,Caucasian,0,8,0,0,7,-21,2013-11-20 09:22:12,2013-11-29 01:21:20,13016158CF10A,2013-11-20,,21,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-11,Risk of Violence,4,Low,2013-12-11,2013-11-20,2013-11-29,7,0,842,0,0,0\r\n3153,shane eisner,shane,eisner,2013-04-22,Male,1983-06-21,32,25 - 45,Caucasian,0,3,0,0,0,0,2013-04-22 02:12:26,2013-04-23 03:37:52,13005786CF10A,2013-04-21,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-22,Risk of Violence,2,Low,2013-04-22,2013-06-14,2013-06-19,0,1,53,0,0,0\r\n3154,dane whyte,dane,whyte,2013-09-14,Male,1982-08-19,33,25 - 45,Other,0,7,0,0,3,-1,2013-09-13 09:19:08,2013-09-14 07:26:07,13012946CF10A,,2013-09-13,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-14,Risk of Violence,2,Low,2013-09-14,2013-11-04,2013-11-05,3,0,51,0,0,0\r\n3156,michael leigh,michael,leigh,2013-10-04,Male,1966-10-15,49,Greater than 45,Caucasian,0,1,0,0,4,-11,2013-09-23 10:48:21,2013-09-29 02:37:04,13013400CF10A,2013-09-18,,16,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-04,Risk of Violence,2,Low,2013-10-04,2013-09-23,2013-09-29,4,0,910,0,0,0\r\n3157,max lerner,max,lerner,2013-01-15,Male,1991-04-21,24,Less than 25,Caucasian,0,4,0,0,0,-1,2013-01-14 12:16:45,2013-02-02 02:34:30,13000630CF10A,2013-01-14,,1,F,Robbery W/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-15,Risk of Violence,5,Medium,2013-01-15,2013-01-14,2013-02-02,0,18,1172,0,0,0\r\n3158,dontay lubin,dontay,lubin,2013-03-20,Male,1990-01-29,26,25 - 45,African-American,0,9,0,0,1,0,2013-03-20 12:31:18,2013-03-20 08:23:50,13003991CF10A,2013-03-19,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-20,Risk of Violence,8,High,2013-03-20,2013-10-30,2013-11-02,1,0,224,0,0,0\r\n3159,robert potenziani,robert,potenziani,2013-12-23,Male,1974-02-10,42,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-22 11:07:53,2013-12-24 06:33:34,13017633CF10A,2013-12-22,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-22,2013-12-24,0,1,830,0,0,0\r\n3161,jaime rivas,jaime,rivas,2013-01-29,Male,1979-12-21,36,25 - 45,Hispanic,0,1,0,0,0,0,2013-01-29 04:06:41,2013-01-29 08:19:17,13001426CF10A,2013-01-29,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-29,2013-01-29,0,0,1158,0,0,0\r\n3162,christopher neff,christopher,neff,2014-04-11,Male,1986-06-19,29,25 - 45,Caucasian,0,7,0,1,7,-1,2014-04-10 11:56:45,2014-05-08 05:09:20,14006220MM10A,2014-04-10,,1,M,Battery,1,14013070MM10A,(M2),0,2014-08-31,Trespass Structure/Conveyance,2014-08-31,2014-09-06,,1,14013070MM10A,(M1),2014-08-31,Assault On Law Enforc Officer,Risk of Recidivism,7,Medium,2014-04-11,Risk of Violence,6,Medium,2014-04-11,2014-08-31,2014-09-06,7,27,142,1,1,1\r\n3163,stephen peters,stephen,peters,2013-09-09,Male,1976-08-22,39,25 - 45,Caucasian,0,3,0,0,0,0,2013-09-09 02:46:49,2013-09-27 03:40:24,13017188MM10A,2013-09-09,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-09,Risk of Violence,3,Low,2013-09-09,2013-09-09,2013-09-27,0,18,935,0,0,0\r\n3169,adriana jurado,adriana,jurado,2013-12-02,Male,1963-04-05,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-01 05:45:15,2013-12-02 01:31:10,13022379MM10A,2013-12-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-02,0,0,851,0,0,0\r\n3174,angeles etienne,angeles,etienne,2014-02-22,Male,1995-04-09,21,Less than 25,Other,0,5,0,0,0,-1,2014-02-21 04:58:53,2014-02-27 12:46:17,14002490CF10A,2014-02-21,,1,F,Burglary Structure Unoccup,1,14008615MM10A,(M2),0,2014-05-29,Trespass Struct/Conveyance,2014-05-29,2014-05-30,,1,15001591CF10A,(F1),2015-01-21,Robbery W/Firearm,Risk of Recidivism,5,Medium,2014-02-22,Risk of Violence,8,High,2014-02-22,2014-05-29,2014-05-30,0,5,96,1,1,1\r\n3176,sherwin samuel,sherwin,samuel,2013-10-19,Male,1974-09-22,41,25 - 45,African-American,0,5,0,0,4,-1,2013-10-18 09:30:02,2013-10-19 08:19:06,13014610CF10A,2013-10-18,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-19,Risk of Violence,2,Low,2013-10-19,2013-10-18,2013-10-19,4,0,895,0,0,0\r\n3177,bedson petithomme,bedson,petithomme,2013-05-09,Male,1981-09-21,34,25 - 45,African-American,0,2,0,0,4,378,2014-05-22 03:04:26,2015-11-03 06:27:10,13004134CF10A,2012-10-02,,219,F,Aggravated Battery / Pregnant,1,14010379TC10A,(M2),,2014-02-26,Fail Register Vehicle,,,,1,14007376CF10A,(F2),2014-05-21,Sexual Battery / Vict 12 Yrs +,Risk of Recidivism,2,Low,2013-05-09,Risk of Violence,1,Low,2013-05-09,2015-11-03,2016-04-02,4,0,293,1,1,1\r\n3178,alexander khan,alexander,khan,2014-11-09,Male,1993-06-10,22,Less than 25,Caucasian,0,8,0,2,5,-2,2014-11-07 08:17:57,2014-11-12 04:12:00,14015012CF10A,2014-11-07,,2,F,Possession Of Alprazolam,1,14015400CF10A,(F3),0,2014-11-15,Possession of Cocaine,2014-11-15,2014-12-20,,1,15004748CF10A,(F3),2015-04-10,Battery on Law Enforc Officer,Risk of Recidivism,8,High,2014-11-09,Risk of Violence,6,Medium,2014-11-09,2014-11-15,2014-12-20,5,3,6,1,1,1\r\n3181,sean vasquez,sean,vasquez,2013-02-01,Male,1993-09-27,22,Less than 25,Caucasian,0,7,0,2,0,-1,2013-01-31 10:40:18,2013-02-03 09:00:10,13001555CF10A,2013-01-31,,1,F,Grand Theft (Motor Vehicle),1,13015139MM10A,(M1),1,2013-08-11,Battery,2013-08-12,2013-11-07,,1,13015139MM10A,(M1),2013-08-11,Battery,Risk of Recidivism,7,Medium,2013-02-01,Risk of Violence,6,Medium,2013-02-01,2013-05-04,2013-05-10,0,2,92,0,1,1\r\n3182,christopher rich,christopher,rich,2013-01-03,Male,1990-09-03,25,25 - 45,African-American,0,5,0,0,2,-1,2013-01-02 11:31:06,2013-01-29 09:34:50,13000085CF10A,2013-01-02,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-03,Risk of Violence,3,Low,2013-01-03,2013-01-02,2013-01-29,2,26,1184,0,0,0\r\n3186,alexandra dovolis,alexandra,dovolis,2013-11-26,Female,1988-05-06,27,25 - 45,Caucasian,0,3,0,0,2,-34,2013-10-23 07:51:42,2013-10-24 08:39:18,13014864CF10A,2013-10-23,,34,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-26,Risk of Violence,3,Low,2013-11-26,2014-08-06,2014-08-13,2,0,253,0,0,0\r\n3188,errol freckleton,errol,freckleton,2013-02-20,Male,1964-08-03,51,Greater than 45,Other,0,1,0,0,2,-1,2013-02-19 03:55:09,2013-02-20 07:10:16,13002528CF10A,,2013-02-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-02-19,2013-02-20,2,0,1136,0,0,0\r\n3190,jonathan garber,jonathan,garber,2013-01-12,Male,1991-06-03,24,Less than 25,African-American,0,3,0,1,0,0,2013-01-12 12:29:56,2013-01-12 01:19:46,13000527CF10A,2013-01-11,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-12,Risk of Violence,5,Medium,2013-01-12,2013-01-12,2013-01-12,0,0,1175,0,0,0\r\n3191,marlon miller,marlon,miller,2013-08-27,Male,1978-10-13,37,25 - 45,African-American,0,4,0,0,4,0,2013-08-27 02:58:00,2013-11-28 02:15:32,12014646CF10A,,2013-08-27,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-27,Risk of Violence,2,Low,2013-08-27,2013-08-27,2013-11-28,4,93,948,0,0,0\r\n3192,brad clark,brad,clark,2013-04-29,Male,1979-03-14,37,25 - 45,Caucasian,0,1,0,0,0,-3,2013-04-26 04:52:50,2013-04-26 07:29:03,13008331MM10A,2013-04-26,,3,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-26,2013-04-26,0,0,1068,0,0,0\r\n3197,lamar queenbourrows,lamar,queenbourrows,2013-01-22,Female,1988-12-13,27,25 - 45,Other,0,2,0,0,0,-1,2013-01-21 11:20:20,2013-01-22 09:49:51,13001428MM10A,2013-01-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-22,Risk of Violence,2,Low,2013-01-22,2013-01-21,2013-01-22,0,0,1165,0,0,0\r\n3198,travis moss,travis,moss,2013-01-31,Male,1995-01-26,21,Less than 25,Other,0,6,0,0,0,-1,2013-01-30 07:10:03,2013-02-04 10:22:57,13001504CF10A,2013-01-30,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-31,Risk of Violence,6,Medium,2013-01-31,2013-05-08,2013-09-10,0,4,97,0,0,0\r\n3200,javon harris,javon,harris,2013-01-21,Male,1980-05-10,35,25 - 45,African-American,0,1,0,0,1,0,2013-01-21 03:33:22,2013-01-22 06:23:53,13000986CF10A,2013-01-21,,0,F,Aggravated Battery / Pregnant,1,13004540CF10A,(F2),0,2013-03-29,Aggravated Battery / Pregnant,2013-03-29,2013-03-31,,1,13004540CF10A,(F2),2013-03-29,Aggravated Battery / Pregnant,Risk of Recidivism,1,Low,2013-01-21,Risk of Violence,1,Low,2013-01-21,2013-03-29,2013-03-31,1,1,67,1,1,1\r\n3203,cassandra hendricks,cassandra,hendricks,2013-10-09,Female,1991-08-17,24,Less than 25,Caucasian,0,8,0,0,0,-1,2013-10-08 12:11:04,2013-11-14 06:47:36,13014106CF10A,2013-10-08,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-09,Risk of Violence,5,Medium,2013-10-09,2014-01-27,2014-04-21,0,36,110,0,0,0\r\n3204,jeffery turcotte,jeffery,turcotte,2013-03-08,Male,1995-02-27,21,Less than 25,Other,1,7,0,0,1,,,,12016746CF10A,,2012-11-15,113,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-08,Risk of Violence,8,High,2013-03-08,,,1,0,1120,0,0,0\r\n3205,john gough,john,gough,2013-01-22,Male,1967-04-18,49,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-01-21 01:43:09,2013-01-22 09:04:24,13001417MM10A,2013-01-21,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-22,Risk of Violence,1,Low,2013-01-22,2013-08-25,2013-09-09,2,0,215,0,0,0\r\n3206,derrico miller,derrico,miller,2013-09-03,Male,1977-06-22,38,25 - 45,African-American,0,6,0,0,9,-5,2013-08-29 04:44:36,2013-09-01 02:25:46,13008193CF10A,,2013-08-30,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-03,Risk of Violence,8,High,2013-09-03,2014-04-23,2014-05-01,9,0,232,0,0,0\r\n3207,motilall nokta,motilall,nokta,2013-07-10,Male,1955-03-08,61,Greater than 45,Other,0,1,0,0,0,-1,2013-07-09 08:23:34,2013-07-10 01:55:35,13013043MM10A,2013-07-09,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-10,Risk of Violence,1,Low,2013-07-10,2013-07-09,2013-07-10,0,0,996,0,0,0\r\n3208,tyara thomas,tyara,thomas,2014-01-12,Female,1986-04-03,30,25 - 45,African-American,0,2,0,0,0,0,2014-01-12 01:20:12,2014-01-12 07:13:40,14000555MM10A,2014-01-12,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-12,Risk of Violence,2,Low,2014-01-12,2014-01-12,2014-01-12,0,0,810,0,0,0\r\n3209,keon lamar,keon,lamar,2013-04-26,Male,1993-08-15,22,Less than 25,African-American,0,6,0,0,3,-1,2013-04-25 03:56:18,2013-08-31 05:22:10,13005931CF10A,2013-04-25,,1,F,Battery on a Person Over 65,1,15012390CF10A,(M1),0,2015-09-24,Battery,2015-09-24,2015-11-03,,1,15012390CF10A,(F3),2015-09-24,Aggravated Assault W/Dead Weap,Risk of Recidivism,6,Medium,2013-04-26,Risk of Violence,5,Medium,2013-04-26,2015-09-24,2015-11-03,3,127,881,1,0,0\r\n3215,paul degiovanni,paul,degiovanni,2013-11-16,Male,1963-08-23,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-15 11:16:23,2013-11-16 08:06:35,13021541MM10A,2013-11-15,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-16,Risk of Violence,1,Low,2013-11-16,2013-11-15,2013-11-16,0,0,867,0,0,0\r\n3217,joseph villa,joseph,villa,2014-03-24,Male,1989-06-26,26,25 - 45,Caucasian,0,2,0,0,0,-1,2014-03-23 06:32:39,2014-03-24 02:29:51,14004090CF10A,2014-03-23,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-24,Risk of Violence,3,Low,2014-03-24,2014-03-23,2014-03-24,0,0,739,0,0,0\r\n3218,robertson saintgermain,robertson,saintgermain,2014-03-15,Male,1989-12-15,26,25 - 45,Other,0,4,0,0,0,-1,2014-03-14 03:02:25,2014-03-15 07:47:36,14004479MM10A,2014-03-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-15,Risk of Violence,2,Low,2014-03-15,2014-03-14,2014-03-15,0,0,748,0,0,0\r\n3222,nicholas bynum,nicholas,bynum,2013-10-24,Male,1986-05-29,29,25 - 45,African-American,0,7,1,0,6,-55,2013-08-30 05:39:42,2013-08-30 08:16:58,13012288CF10A,2013-08-30,,55,F,Felon in Pos of Firearm or Amm,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-24,Risk of Violence,5,Medium,2013-10-24,2014-08-21,2014-08-29,6,0,301,0,0,0\r\n3226,joshua jones,joshua,jones,2013-02-11,Male,1987-04-17,29,25 - 45,African-American,0,8,0,0,4,-1,2013-02-10 06:11:44,2013-05-01 08:08:58,12017246CF10A,,2013-02-09,2,F,arrest case no charge,1,15013975CF10A,(F3),49,2015-09-17,Felony Battery w/Prior Convict,2015-11-05,2015-12-03,,1,15013975CF10A,(F3),2015-09-17,Felony Battery w/Prior Convict,Risk of Recidivism,8,High,2013-02-11,Risk of Violence,9,High,2013-02-11,2014-11-30,2015-03-05,4,79,657,0,0,0\r\n3229,albert baldocchi,albert,baldocchi,2013-02-09,Male,1990-01-11,26,25 - 45,Caucasian,0,5,0,0,2,-1,2013-02-08 10:04:37,2013-02-09 01:03:16,13002012CF10A,2013-02-08,,1,F,D.U.I. Serious Bodily Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-09,Risk of Violence,6,Medium,2013-02-09,2013-02-08,2013-02-09,2,0,1147,0,0,0\r\n3230,stephanie smith,stephanie,smith,2014-01-07,Female,1969-11-30,46,Greater than 45,African-American,0,4,0,0,4,-1,2014-01-06 07:12:43,2014-01-07 01:36:40,14000304CF10A,,2014-01-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-07,Risk of Violence,3,Low,2014-01-07,2014-01-06,2014-01-07,4,0,815,0,0,0\r\n3232,marlo warthen,marlo,warthen,2014-03-22,Female,1969-09-02,46,Greater than 45,African-American,0,1,0,0,0,-1,2014-03-21 09:47:15,2014-03-22 10:57:18,14004048CF10A,2014-03-21,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-21,2014-03-22,0,0,741,0,0,0\r\n3234,jon smith,jon,smith,2013-03-21,Male,1976-11-25,39,25 - 45,Caucasian,0,1,0,0,8,-56,2013-01-24 05:38:16,2013-01-25 12:01:11,13001181CF10A,2013-01-24,,56,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,3,Low,2013-03-21,2013-01-24,2013-01-25,8,0,1107,0,0,0\r\n3236,earl brewer,earl,brewer,2014-02-22,Male,1986-10-07,29,25 - 45,African-American,0,10,0,0,12,-1,2014-02-21 09:47:22,2014-02-27 09:02:04,14002487CF10A,2014-02-21,,1,F,Possession of Cocaine,1,14010954MM10A,(M2),,2014-07-17,Disorderly Conduct,,,,1,15008215CF10A,(F2),2015-06-25,Strong Armed  Robbery,Risk of Recidivism,10,High,2014-02-22,Risk of Violence,7,Medium,2014-02-22,2014-04-01,2014-04-02,12,5,38,0,1,1\r\n3237,ignacio beguiristain,ignacio,beguiristain,2013-12-03,Male,1975-03-31,41,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-03 12:26:01,2013-12-03 08:36:18,13022422MM10A,2013-12-02,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-03,Risk of Violence,1,Low,2013-12-03,2013-12-03,2013-12-03,0,0,850,0,0,0\r\n3240,chasidy walker,chasidy,walker,2013-12-08,Female,1990-05-16,25,25 - 45,African-American,0,7,0,0,5,-1,2013-12-07 11:35:44,2013-12-08 07:59:31,13016958CF10A,2013-12-07,,1,F,Poss Anti-Shoplifting Device,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-08,Risk of Violence,3,Low,2013-12-08,2014-01-12,2014-01-12,5,0,35,0,0,0\r\n3242,maurice bradwell,maurice,bradwell,2013-01-16,Male,1992-07-08,23,Less than 25,African-American,1,7,0,0,2,-1,2013-01-15 04:57:11,2013-02-02 11:24:05,13000722CF10A,2013-01-15,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-16,Risk of Violence,5,Medium,2013-01-16,2015-02-08,2015-05-19,2,17,753,0,0,0\r\n3246,christopher connelly,christopher,connelly,2013-11-20,Male,1985-06-22,30,25 - 45,Caucasian,0,3,0,0,0,-1,2013-11-19 07:21:09,2013-11-19 08:05:35,13021771MM10A,2013-11-19,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-20,Risk of Violence,2,Low,2013-11-20,2013-11-19,2013-11-19,0,0,863,0,0,0\r\n3247,joseph farina,joseph,farina,2013-04-26,Male,1981-06-14,34,25 - 45,Caucasian,0,6,0,0,1,-1,2013-04-25 10:30:51,2013-04-28 06:19:11,13003794CF10A,,2013-04-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-26,Risk of Violence,4,Low,2013-04-26,2013-04-25,2013-04-28,1,2,1071,0,0,0\r\n3250,peter castanon,peter,castanon,2013-12-10,Male,1964-04-02,52,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-12-09 06:05:20,2013-12-11 03:04:00,11014702CF10A,,2013-12-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-10,Risk of Violence,1,Low,2013-12-10,2013-12-09,2013-12-11,2,1,843,0,0,0\r\n3255,keith johnson,keith,johnson,2013-10-01,Male,1964-10-10,51,Greater than 45,African-American,0,2,0,0,4,-26,2013-09-05 09:34:45,2013-09-13 05:55:53,13034797TC10A,2013-09-05,,26,M,Susp Drivers Lic 1st Offense,1,15072869TC40A,(M2),1,2015-11-19,Unlaw LicTag/Sticker Attach,2015-11-20,2015-11-25,,0,,,,,Risk of Recidivism,2,Low,2013-10-01,Risk of Violence,2,Low,2013-10-01,2015-11-20,2015-11-25,4,0,779,1,0,0\r\n3261,lori foerster,lori,foerster,2013-09-10,Female,1967-03-24,49,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-09-09 05:23:57,2013-09-10 09:54:48,13012733CF10A,,2013-09-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-09,2013-09-10,1,0,934,0,0,0\r\n3262,chayla burley,chayla,burley,2013-10-17,Female,1989-11-30,26,25 - 45,African-American,0,6,0,0,9,404,2014-11-25 06:52:56,2014-11-27 04:40:19,13041841TC10A,2013-10-04,,13,M,Driving License Suspended,1,14016781MM10A,(M1),0,2014-11-25,Battery,2014-11-25,2014-11-27,,1,14016781MM10A,(M1),2014-11-25,Battery,Risk of Recidivism,6,Medium,2013-10-17,Risk of Violence,4,Low,2013-10-17,2014-11-25,2014-11-27,9,0,404,1,1,1\r\n3265,cynthia montalvo,cynthia,montalvo,2013-04-28,Female,1968-04-28,47,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-28 04:12:23,2013-04-28 07:53:11,13006111CF10A,2013-04-28,,0,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-28,Risk of Violence,1,Low,2013-04-28,2013-04-28,2013-04-28,0,0,1069,0,0,0\r\n3267,byran george,byran,george,2013-08-03,Male,1989-01-23,27,25 - 45,African-American,0,2,0,0,0,0,2013-08-03 07:19:15,2013-08-04 07:57:02,13014653MM10A,2013-08-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-03,Risk of Violence,3,Low,2013-08-03,2013-08-03,2013-08-04,0,1,972,0,0,0\r\n3274,craig lawrence,craig,lawrence,2013-06-20,Male,1994-09-25,21,Less than 25,African-American,0,6,0,0,0,-2,2013-06-18 04:27:00,2013-06-19 08:00:00,13008608CF10A,2013-06-18,,2,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-06-20,Risk of Violence,6,Medium,2013-06-20,2013-06-18,2013-06-19,0,0,1016,0,0,0\r\n3281,jason may,jason,may,2013-04-20,Male,1985-09-08,30,25 - 45,Caucasian,0,4,0,0,3,-1,2013-04-19 02:21:45,2013-05-01 10:53:53,13005613CF10A,2013-04-19,,1,F,Crimin Mischief Damage $1000+,1,13038248TC10A,(M2),0,2013-09-15,Susp Drivers Lic 1st Offense,2013-09-15,2013-09-16,,1,14000777CF10A,(F3),2014-01-18,Felony Battery (Dom Strang),Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,4,Low,2013-04-20,2013-09-15,2013-09-16,3,11,148,1,1,1\r\n3283,ernesto arduz,ernesto,arduz,2014-02-09,Male,1945-05-11,70,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-08 11:37:08,2014-02-09 01:58:03,14005073MU10A,2014-02-08,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-09,Risk of Violence,1,Low,2014-02-09,2014-02-08,2014-02-09,0,0,782,0,0,0\r\n3289,levar dawson,levar,dawson,2013-02-19,Male,1977-05-13,38,25 - 45,African-American,0,6,0,0,15,0,2013-02-19 01:33:33,2013-04-15 11:26:03,13002465CF10A,2013-02-18,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-19,Risk of Violence,5,Medium,2013-02-19,2014-10-06,2014-10-07,15,55,594,0,0,0\r\n3290,kervin bonhometre,kervin,bonhometre,2013-03-13,Male,1986-07-16,29,25 - 45,African-American,0,4,0,0,0,0,2013-03-13 02:31:11,2013-03-13 08:19:46,13003682CF10A,2013-03-12,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-13,Risk of Violence,2,Low,2013-03-13,2013-03-13,2013-03-13,0,0,1115,0,0,0\r\n3292,saul carrion,saul,carrion,2013-10-10,Male,1977-11-19,38,25 - 45,Hispanic,0,4,0,0,3,-21,2013-09-19 02:22:11,2013-09-19 08:08:14,13013183CF10A,2013-09-19,,21,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-10,Risk of Violence,1,Low,2013-10-10,2013-09-19,2013-09-19,3,0,904,0,0,0\r\n3293,jehan gersbach,jehan,gersbach,2013-07-15,Female,1988-08-16,27,25 - 45,Caucasian,0,3,0,0,0,-4,2013-07-11 11:54:13,2013-07-12 01:44:05,13009762CF10A,2013-07-11,,4,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-15,Risk of Violence,2,Low,2013-07-15,2013-07-11,2013-07-12,0,0,991,0,0,0\r\n3295,eduard blanco,eduard,blanco,2013-01-11,Male,1971-08-13,44,25 - 45,Hispanic,0,1,0,0,0,0,2013-01-11 02:52:46,2013-01-11 07:46:30,13000684MM10A,2013-01-11,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-11,Risk of Violence,1,Low,2013-01-11,2013-01-11,2013-01-11,0,0,1176,0,0,0\r\n3298,olayo montiel,olayo,montiel,2013-01-26,Male,1985-03-06,31,25 - 45,Caucasian,0,5,0,0,6,-1,2013-01-25 03:14:43,2013-01-26 08:15:46,13001845MM10A,2013-01-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-26,Risk of Violence,5,Medium,2013-01-26,2013-01-25,2013-01-26,6,0,1161,0,0,0\r\n3301,rut ruiz,rut,ruiz,2013-10-02,Female,1985-11-09,30,25 - 45,African-American,0,2,0,0,0,-1,2013-10-01 09:36:03,2013-10-02 08:15:00,13018711MM10A,2013-10-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,2,Low,2013-10-02,2013-10-01,2013-10-02,0,0,912,0,0,0\r\n3304,courtney tracey,courtney,tracey,2013-02-16,Male,1975-07-07,40,25 - 45,African-American,0,2,0,0,3,-1,2013-02-15 05:22:50,2013-02-16 07:12:34,13002368CF10A,2013-02-15,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-16,Risk of Violence,1,Low,2013-02-16,2013-02-15,2013-02-16,3,0,1140,0,0,0\r\n3305,lauren obrien,lauren,obrien,2013-05-07,Female,1966-10-15,49,Greater than 45,Caucasian,0,2,0,0,3,1025,2016-02-26 06:26:45,2016-02-27 09:07:48,12014029CF10A,2012-09-23,,226,F,Resist Officer w/Violence,1,16004917MU10A,(M1),0,2016-02-26,,2016-02-26,2016-02-27,,0,,,,,Risk of Recidivism,2,Low,2013-05-07,Risk of Violence,1,Low,2013-05-07,2016-02-26,2016-02-27,3,0,1025,1,0,0\r\n3306,mauricio molina,mauricio,molina,2013-03-10,Male,1983-01-03,33,25 - 45,Caucasian,0,3,0,0,1,0,2013-03-10 01:25:31,2013-03-11 08:03:14,13012709TC10A,2013-03-09,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-10,Risk of Violence,2,Low,2013-03-10,2013-03-10,2013-03-11,1,1,1118,0,0,0\r\n3310,miguel torres,miguel,torres,2013-04-17,Male,1984-05-18,31,25 - 45,Hispanic,0,3,1,0,1,0,2013-04-17 01:33:57,2013-04-18 10:26:00,13007440MM10A,2013-04-17,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,5,Medium,2013-04-17,2013-08-04,2013-09-10,1,1,109,0,0,0\r\n3312,michael levy,michael,levy,2013-01-13,Male,1954-12-22,61,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-12 04:10:37,2013-01-13 01:00:33,13000727MM10A,2013-01-12,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,1,0,1174,0,0,0\r\n3314,michael mariani,michael,mariani,2013-09-05,Male,1985-04-29,30,25 - 45,Caucasian,0,4,0,0,2,-1,2013-09-04 08:06:26,2013-09-05 07:57:54,13012489CF10A,2013-09-04,,1,F,Use Of 2 Way Device To Fac Fel,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-05,Risk of Violence,3,Low,2013-09-05,2013-09-04,2013-09-05,2,0,939,0,0,0\r\n3315,david margadonna,david,margadonna,2013-10-05,Male,1954-01-18,62,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-04 03:37:56,2013-10-06 04:38:04,13018914MM10A,2013-10-04,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-05,Risk of Violence,1,Low,2013-10-05,2013-10-04,2013-10-06,0,1,909,0,0,0\r\n3318,paul haddad,paul,haddad,2013-03-07,Male,1968-03-01,48,Greater than 45,Caucasian,0,6,0,0,9,-1,2013-03-06 04:52:48,2013-03-07 06:01:55,13003370CF10A,2013-03-06,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-07,Risk of Violence,1,Low,2013-03-07,2014-09-07,2014-09-17,9,0,549,0,0,0\r\n3319,kimberly wisniewski,kimberly,wisniewski,2013-12-25,Female,1975-05-27,40,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-24 01:22:24,2013-12-25 12:46:12,13017732CF10A,2013-12-24,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-25,Risk of Violence,1,Low,2013-12-25,2013-12-24,2013-12-25,0,0,828,0,0,0\r\n3320,christopher hendricks,christopher,hendricks,2013-12-17,Male,1991-07-29,24,Less than 25,Caucasian,0,4,0,0,0,-1,2013-12-16 04:56:49,2013-12-19 04:53:49,13017365CF10A,2013-12-16,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-17,Risk of Violence,5,Medium,2013-12-17,2013-12-16,2013-12-19,0,2,836,0,0,0\r\n3324,christopher obrien,christopher,obrien,2013-02-12,Male,1952-12-08,63,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-12 01:53:55,2013-02-12 08:00:45,13003098MM10A,2013-02-11,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-12,Risk of Violence,1,Low,2013-02-12,2013-02-12,2013-02-12,0,0,1144,0,0,0\r\n3325,julio rodriguezcruz,julio,rodriguezcruz,2013-05-13,Male,1969-07-07,46,Greater than 45,Hispanic,0,1,0,0,0,,,,12007422MO10A,,2012-04-09,399,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2014-07-17,2015-03-01,0,0,430,0,0,0\r\n3326,jamal murray,jamal,murray,2013-01-03,Male,1982-06-04,33,25 - 45,African-American,0,10,0,0,4,-1,2013-01-02 06:52:47,2013-01-03 09:21:03,13000071CF10A,2013-01-02,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-03,Risk of Violence,9,High,2013-01-03,2015-05-21,2020-01-01,4,0,868,0,0,0\r\n3328,merlene reid,merlene,reid,2013-01-23,Female,1994-12-15,21,Less than 25,African-American,1,6,0,0,1,81,2013-04-14 03:23:56,2013-04-15 03:16:10,13000263CF10A,2012-11-05,,79,F,Robbery Sudd Snatch No Weapon,1,13007188MM10A,(M2),0,2013-04-14,Petit Theft,2013-04-14,2013-04-15,,1,14005084CF10A,(F2),2014-04-11,Agg Fleeing/Eluding High Speed,Risk of Recidivism,6,Medium,2013-01-23,Risk of Violence,6,Medium,2013-01-23,2013-04-14,2013-04-15,1,0,81,1,1,1\r\n3332,jean maxime,jean,maxime,2013-09-05,Male,1964-11-07,51,Greater than 45,African-American,0,1,0,0,1,-17,2013-08-19 01:28:26,2013-08-26 07:15:46,13011616CF10A,2013-08-19,,17,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-05,Risk of Violence,1,Low,2013-09-05,2016-02-11,2016-02-23,1,0,889,0,0,0\r\n3333,keith plews,keith,plews,2013-02-07,Male,1976-12-11,39,25 - 45,Caucasian,0,1,0,0,3,-1,2013-02-06 07:58:18,2013-02-07 10:26:20,12017764CF10A,,2013-02-06,1,F,arrest case no charge,1,14017501MM10A,(M1),0,2014-12-12,Resist/Obstruct W/O Violence,2014-12-12,2015-01-06,,1,14017501MM10A,(M1),2014-12-12,Assault On Law Enforc Officer,Risk of Recidivism,1,Low,2013-02-07,Risk of Violence,1,Low,2013-02-07,2014-12-12,2015-01-06,3,0,673,1,1,1\r\n3338,robert cannon,robert,cannon,2013-12-16,Male,1994-01-07,22,Less than 25,African-American,0,6,0,0,0,-2,2013-12-14 09:58:29,2013-12-15 01:35:55,13023191MM10A,2013-12-14,,2,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-16,Risk of Violence,5,Medium,2013-12-16,2014-02-19,2014-02-27,0,0,65,0,0,0\r\n3339,gregory luff,gregory,luff,2013-02-22,Male,1956-11-07,59,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-02-21 11:47:36,2013-02-22 01:28:06,13002672CF10A,2013-02-21,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-22,Risk of Violence,1,Low,2013-02-22,2013-02-21,2013-02-22,0,0,1134,0,0,0\r\n3340,deon warren,deon,warren,2014-04-01,Male,1977-08-06,38,25 - 45,African-American,0,7,5,0,37,-1,2014-03-31 08:38:47,2014-05-01 05:20:12,14025752TC30A,,2014-03-31,1,M,arrest case no charge,1,14012415CF10A,(F3),,2014-08-17,Stalking (Aggravated),,,,1,14012415CF10A,(F3),2014-08-17,Stalking (Aggravated),Risk of Recidivism,7,Medium,2014-04-01,Risk of Violence,2,Low,2014-04-01,2014-03-31,2014-05-01,37,30,138,1,1,1\r\n3341,jack desrouleaux,jack,desrouleaux,2013-05-15,Male,1993-01-22,23,Less than 25,African-American,0,6,0,0,2,0,2013-05-15 12:48:05,2014-01-08 08:48:48,12011362CF10A,,2013-05-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-15,Risk of Violence,5,Medium,2013-05-15,2013-05-15,2014-01-08,2,238,1052,0,0,0\r\n3343,leroy farmer,leroy,farmer,2013-06-21,Male,1995-04-21,20,Less than 25,African-American,1,3,0,0,1,-37,2013-05-15 12:55:12,2013-05-31 11:04:55,13006815CF10A,,2013-05-15,37,F,arrest case no charge,1,13011601CF10A,(F2),0,2013-08-19,Robbery / No Weapon,2013-08-19,2014-01-09,,1,13011601CF10A,(F2),2013-08-19,Robbery / No Weapon,Risk of Recidivism,3,Low,2013-06-21,Risk of Violence,7,Medium,2013-06-21,2013-08-19,2014-01-09,1,0,59,1,1,1\r\n3344,demetrius johnson,demetrius,johnson,2013-04-01,Male,1977-08-06,38,25 - 45,African-American,0,7,0,0,2,0,2013-04-01 10:35:17,2013-10-11 05:44:04,13004667CF10A,2013-04-01,,0,F,Burglary Dwelling Assault/Batt,1,14000793CF10A,(F3),1,2014-01-18,Stalking (Aggravated),2014-01-19,2014-01-31,,1,14000793CF10A,(F3),2014-01-18,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-04-01,Risk of Violence,3,Low,2013-04-01,2013-04-01,2013-10-11,2,193,292,1,1,1\r\n3345,denny ricatti,denny,ricatti,2013-01-26,Female,1982-02-13,34,25 - 45,Caucasian,0,3,0,0,2,-1,2013-01-25 06:05:27,2013-01-26 09:13:23,13001250CF10A,2013-01-25,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-26,Risk of Violence,2,Low,2013-01-26,2013-01-25,2013-01-26,2,0,1161,0,0,0\r\n3350,yvon agenord,yvon,agenord,2013-11-05,Male,1984-11-05,31,25 - 45,African-American,0,1,0,0,1,-14,2013-10-22 11:46:11,2013-11-05 11:20:18,13014734CF10A,2013-10-21,,15,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-05,Risk of Violence,2,Low,2013-11-05,2013-10-22,2013-11-05,1,0,878,0,0,0\r\n3356,peter mercogliano,peter,mercogliano,2014-01-17,Male,1955-11-07,60,Greater than 45,Caucasian,0,1,0,0,3,-120,2013-09-19 04:36:11,2014-01-17 12:32:44,13013207CF10A,2013-09-19,,120,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-17,Risk of Violence,2,Low,2014-01-17,2013-09-19,2014-01-17,3,0,805,0,0,0\r\n3357,willie titus,willie,titus,2014-03-29,Male,1972-11-24,43,25 - 45,African-American,0,4,0,0,0,-1,2014-03-28 09:13:42,2014-03-29 10:09:02,14004379CF10A,2014-03-28,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-29,Risk of Violence,1,Low,2014-03-29,2014-03-28,2014-03-29,0,0,734,0,0,0\r\n3358,donald brundidge,donald,brundidge,2014-03-11,Male,1976-02-15,40,25 - 45,African-American,0,1,0,0,1,-1,2014-03-10 09:24:25,2014-03-12 09:09:50,14003372CF10A,,2014-03-10,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-11,Risk of Violence,1,Low,2014-03-11,2014-03-10,2014-03-12,1,1,752,0,0,0\r\n3361,eyzzaquirre walquer,eyzzaquirre,walquer,2013-10-07,Male,1989-12-13,26,25 - 45,African-American,0,6,0,0,1,,,,10012932CF10A,,2012-01-22,624,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-07,Risk of Violence,7,Medium,2013-10-07,,,1,0,907,0,0,0\r\n3371,zachery derenoncourt,zachery,derenoncourt,2013-08-22,Male,1994-01-11,22,Less than 25,African-American,0,3,0,1,0,-1,2013-08-21 06:04:09,2013-08-22 04:45:08,13011772CF10A,2013-08-21,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-22,Risk of Violence,5,Medium,2013-08-22,2013-08-21,2013-08-22,0,0,953,0,0,0\r\n3376,marie altenor,marie,altenor,2013-12-15,Female,1975-09-12,40,25 - 45,Other,0,1,0,0,0,-1,2013-12-14 05:59:05,2013-12-15 09:12:57,13017298CF10A,2013-12-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-15,Risk of Violence,1,Low,2013-12-15,2013-12-14,2013-12-15,0,0,838,0,0,0\r\n3377,kelly abernath,kelly,abernath,2013-09-28,Female,1978-11-15,37,25 - 45,Caucasian,0,1,0,0,0,,,,13013637CF10A,2013-09-28,,0,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-28,Risk of Violence,1,Low,2013-09-28,,,0,0,916,0,0,0\r\n3379,jacques duvignaud,jacques,duvignaud,2013-02-17,Male,1994-08-05,21,Less than 25,Other,0,4,0,0,1,982,2015-10-27 11:54:28,2015-11-02 09:32:34,13002420CF10A,2013-02-16,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-17,Risk of Violence,6,Medium,2013-02-17,2015-10-27,2015-11-02,1,0,982,0,0,0\r\n3380,valarie salters,valarie,salters,2013-09-30,Female,1970-11-27,45,Greater than 45,African-American,0,4,0,0,1,-1,2013-09-29 01:24:57,2013-10-05 09:22:55,13013670CF10A,2013-09-29,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-30,Risk of Violence,2,Low,2013-09-30,2013-09-29,2013-10-05,1,5,914,0,0,0\r\n3384,dominic disalvo,dominic,disalvo,2013-09-05,Male,1994-07-25,21,Less than 25,Caucasian,0,8,1,2,1,-1,2013-09-04 08:11:26,2013-09-17 04:53:45,13012512CF10A,2013-09-04,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-05,Risk of Violence,9,High,2013-09-05,2015-05-29,2015-06-03,1,12,631,0,0,0\r\n3385,jeffery johnson,jeffery,johnson,2013-03-10,Male,1965-10-01,50,Greater than 45,African-American,1,9,0,0,7,,,,10000637MM10A,2010-01-11,,1154,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-10,Risk of Violence,4,Low,2013-03-10,,,7,0,1118,0,0,0\r\n3386,robert kingery,robert,kingery,2013-11-08,Male,1980-05-11,35,25 - 45,Caucasian,0,5,0,0,6,-10,2013-10-29 08:37:39,2013-10-31 02:30:32,13015104CF10A,2013-10-29,,10,F,Battery on a Person Over 65,1,14002224CF10A,(M2),1,2014-02-17,Susp Drivers Lic 1st Offense,2014-02-18,2014-03-24,,1,15011833MM10A,(M2),2015-11-11,Assault,Risk of Recidivism,5,Medium,2013-11-08,Risk of Violence,4,Low,2013-11-08,2015-11-12,2015-11-25,6,0,101,1,1,1\r\n3387,ramon harris,ramon,harris,2013-06-03,Male,1963-07-18,52,Greater than 45,African-American,0,1,0,0,1,1,2013-06-04 11:14:23,2013-08-14 08:45:53,13010504MM10A,2013-06-01,,2,M,Viol Injunct Domestic Violence,1,13007934CF10A,(M1),0,2013-06-04,Viol Injunction Protect Dom Vi,2013-06-04,2013-08-14,,1,13007934CF10A,(F2),2013-06-04,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,1,Low,2013-06-03,Risk of Violence,1,Low,2013-06-03,2013-06-04,2013-08-14,1,0,1,1,1,1\r\n3390,kevin oconnell,kevin,oconnell,2013-08-06,Male,1967-07-25,48,Greater than 45,Caucasian,0,1,0,0,0,0,2013-08-06 03:46:18,2013-08-06 07:43:53,13014856MM10A,2013-08-06,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-06,Risk of Violence,1,Low,2013-08-06,2014-11-20,2014-11-25,0,0,471,0,0,0\r\n3392,raymond burr,raymond,burr,2013-03-09,Male,1968-02-05,48,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-08 05:10:48,2013-03-09 08:03:03,13004719MM10A,2013-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2013-03-08,2013-03-09,0,0,1119,0,0,0\r\n3396,clarence oliver,clarence,oliver,2014-02-16,Male,1968-05-20,47,Greater than 45,African-American,0,5,0,0,0,-1,2014-02-15 05:33:03,2014-02-18 09:23:00,14002659MM10A,2014-02-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-16,Risk of Violence,3,Low,2014-02-16,2014-02-15,2014-02-18,0,2,775,0,0,0\r\n3397,freddie austin,freddie,austin,2013-10-19,Male,1954-01-25,62,Greater than 45,African-American,0,7,0,0,1,,,,12003226MM10A,2012-02-14,,613,M,Possess Drug Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-19,Risk of Violence,6,Medium,2013-10-19,2005-01-04,2008-01-26,1,0,895,0,0,0\r\n3399,michael habersham,michael,habersham,2013-02-21,Male,1980-06-27,35,25 - 45,African-American,3,10,0,0,13,-1,2013-02-20 04:28:30,2013-02-21 02:00:22,13002617CF10A,2013-02-20,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-21,Risk of Violence,5,Medium,2013-02-21,2014-03-20,2014-09-02,13,0,392,0,0,0\r\n3404,eugene vaughn,eugene,vaughn,2013-07-01,Male,1963-06-10,52,Greater than 45,African-American,0,1,0,0,2,-5,2013-06-26 02:12:03,2013-06-29 04:23:12,11000301CF10A,,2013-06-26,5,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-01,Risk of Violence,1,Low,2013-07-01,2013-06-26,2013-06-29,2,0,1005,0,0,0\r\n3405,charletha nesmith,charletha,nesmith,2013-03-20,Female,1977-02-10,39,25 - 45,African-American,0,2,1,0,7,114,2013-07-12 12:45:34,2014-01-07 03:49:13,12018408CF10A,2012-12-18,,92,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-07-12,2014-01-07,7,0,114,0,0,0\r\n3406,aladdin ruiz,aladdin,ruiz,2014-01-10,Male,1995-02-13,21,Less than 25,Caucasian,0,8,0,0,0,-1,2014-01-09 11:12:45,2014-01-18 12:46:35,14000392MM10A,2014-01-09,,1,M,Battery,1,14003688CF10A,(F3),0,2014-03-16,Felony Battery (Dom Strang),2014-03-16,2014-04-30,,1,14006595MM10A,(M1),2014-03-16,Battery,Risk of Recidivism,8,High,2014-01-10,Risk of Violence,9,High,2014-01-10,2014-03-16,2014-04-30,0,8,65,1,1,1\r\n3407,greg godette,greg,godette,2014-02-10,Male,1962-10-24,53,Greater than 45,Caucasian,0,1,0,0,1,-2,2014-02-08 04:19:13,2014-02-09 07:31:52,14001786CF10A,2014-02-07,,3,M,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-10,Risk of Violence,1,Low,2014-02-10,2014-02-08,2014-02-09,1,0,781,0,0,0\r\n3409,stephen vaughn,stephen,vaughn,2014-01-10,Male,1993-07-05,22,Less than 25,African-American,0,6,0,0,0,-1,2014-01-09 05:27:43,2014-01-12 03:57:27,14000396MM10A,2014-01-09,,1,M,Open Carrying Of Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-10,Risk of Violence,8,High,2014-01-10,2014-01-09,2014-01-12,0,2,812,0,0,0\r\n3410,keithon hunter,keithon,hunter,2013-02-24,Male,1970-12-15,45,Greater than 45,African-American,0,3,0,0,1,-1,2013-02-23 11:52:38,2013-02-26 08:07:15,13001358CF10A,,2013-02-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-24,Risk of Violence,1,Low,2013-02-24,2015-01-22,2015-02-26,1,2,697,0,0,0\r\n3411,haley belba,haley,belba,2014-01-09,Female,1988-12-10,27,25 - 45,Caucasian,0,2,0,0,0,-1,2014-01-08 04:06:52,2014-01-09 06:22:32,14000319CF10A,2014-01-08,,1,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-09,Risk of Violence,2,Low,2014-01-09,2014-01-08,2014-01-09,0,0,813,0,0,0\r\n3412,alexander schwartz,alexander,schwartz,2013-02-04,Male,1990-10-06,25,25 - 45,Caucasian,0,2,0,0,0,-1,2013-02-03 11:41:54,2013-02-04 07:33:19,13002440MM10A,2013-02-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-04,Risk of Violence,3,Low,2013-02-04,2013-04-14,2013-04-15,0,0,69,0,0,0\r\n3417,joseph scognamiglio,joseph,scognamiglio,2014-02-13,Male,1987-11-11,28,25 - 45,Caucasian,0,3,0,0,3,-1,2014-02-12 07:14:00,2014-02-13 09:25:50,14001485CF10A,,2014-02-12,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-13,Risk of Violence,2,Low,2014-02-13,2014-02-12,2014-02-13,3,0,778,0,0,0\r\n3418,michael reed,michael,reed,2013-10-30,Male,1980-04-08,36,25 - 45,African-American,0,2,0,0,3,-1,2013-10-29 03:05:24,2013-10-31 12:47:14,13020458MM10A,2013-10-29,,1,M,Battery,1,14007209TC10A,(M2),,2013-12-03,Driving License Suspended,,,,1,14001861MM10A,(M1),2014-01-12,Battery,Risk of Recidivism,2,Low,2013-10-30,Risk of Violence,2,Low,2013-10-30,2013-10-29,2013-10-31,3,1,34,1,1,1\r\n3420,merrill joseph,merrill,joseph,2013-05-06,Male,1974-04-11,42,25 - 45,African-American,0,2,0,0,1,0,2013-05-06 02:34:41,2013-05-06 07:48:39,13006496CF10A,2013-05-06,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-05-06,2013-05-06,1,0,1061,0,0,0\r\n3423,jamie anderson,jamie,anderson,2013-04-15,Female,1983-04-12,33,25 - 45,Caucasian,0,2,0,0,2,-29,2013-03-17 11:15:34,2013-03-18 01:35:54,13003885CF10A,2013-03-17,,29,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-15,Risk of Violence,1,Low,2013-04-15,2013-03-17,2013-03-18,2,0,1082,0,0,0\r\n3427,christina parker,christina,parker,2014-03-16,Female,1973-09-10,42,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-15 05:38:42,2014-03-16 07:22:05,14004499MM10A,2014-03-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-16,0,0,747,0,0,0\r\n3431,candace oneal,candace,oneal,2013-01-14,Female,1987-07-23,28,25 - 45,African-American,0,2,0,0,0,0,2013-01-14 01:05:43,2013-01-14 06:50:40,13000796MM10A,2013-01-14,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,2,Low,2013-01-14,2013-01-14,2013-01-14,0,0,1173,0,0,0\r\n3434,stanley rich,stanley,rich,2014-07-16,Male,1988-11-16,27,25 - 45,African-American,0,10,0,0,25,18,2014-08-03 09:08:30,2014-09-13 04:26:01,14004591CF10A,,2014-05-27,50,F,arrest case no charge,1,14010582CF10A,(F2),0,2014-08-03,Aggravated Battery / Pregnant,2014-08-03,2014-09-13,,1,14010582CF10A,(F2),2014-08-03,Aggravated Battery / Pregnant,Risk of Recidivism,10,High,2014-07-16,Risk of Violence,9,High,2014-07-16,2014-08-03,2014-09-13,25,0,18,1,1,1\r\n3437,lizibell aviles,lizibell,aviles,2013-08-27,Female,1994-09-01,21,Less than 25,Caucasian,0,6,0,0,0,-1,2013-08-26 08:11:05,2013-08-29 05:55:18,13012029CF10A,2013-08-26,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-27,Risk of Violence,7,Medium,2013-08-27,2013-08-26,2013-08-29,0,2,948,0,0,0\r\n3439,jose santos,jose,santos,2013-02-24,Male,1980-04-06,36,25 - 45,Caucasian,0,1,0,0,0,-1,2013-02-23 08:43:27,2013-02-24 06:58:35,13002795CF10A,2013-02-23,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-24,Risk of Violence,1,Low,2013-02-24,2013-02-23,2013-02-24,0,0,1132,0,0,0\r\n3445,mark asbell,mark,asbell,2013-10-04,Male,1987-11-13,28,25 - 45,Caucasian,0,3,0,0,1,-25,2013-09-09 02:13:27,2013-10-03 07:53:47,13017198MM10A,2013-09-08,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-04,Risk of Violence,4,Low,2013-10-04,2013-09-09,2013-10-03,1,0,910,0,0,0\r\n3451,jon clouse,jon,clouse,2013-01-31,Male,1970-01-22,46,Greater than 45,Caucasian,0,2,0,0,2,266,2013-10-24 12:44:58,2013-12-09 10:08:01,10016285TC10A,2010-04-20,,1017,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-31,Risk of Violence,1,Low,2013-01-31,2013-10-24,2013-12-09,2,0,266,0,0,0\r\n3452,demetrice boone,demetrice,boone,2013-08-02,Male,1982-03-01,34,25 - 45,African-American,0,1,0,0,3,-1,2013-08-01 08:24:27,2013-08-02 01:23:50,13010777CF10A,2013-08-01,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,2,Low,2013-08-02,2013-08-01,2013-08-02,3,0,973,0,0,0\r\n3455,passha davis,passha,davis,2013-02-25,Female,1991-02-22,25,25 - 45,African-American,0,3,0,0,1,-1,2013-02-24 06:37:00,2013-02-28 08:18:55,13002836CF10A,2013-02-24,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-25,Risk of Violence,3,Low,2013-02-25,2013-02-24,2013-02-28,1,3,1131,0,0,0\r\n3456,daniel dayes,daniel,dayes,2013-01-01,Male,1994-08-25,21,Less than 25,African-American,0,8,1,0,1,0,2013-01-01 10:37:34,2013-01-02 01:16:38,13000061MM10A,2013-01-01,,0,M,Assault,1,15000836CF10A,(F3),1,2015-01-19,Robbery Sudd Snatch No Weapon,2015-01-20,2015-01-23,,1,15000836CF10A,(F3),2015-01-19,Robbery Sudd Snatch No Weapon,Risk of Recidivism,8,High,2013-01-01,Risk of Violence,8,High,2013-01-01,2013-01-01,2013-01-02,1,1,748,1,0,0\r\n3457,michael cunningham,michael,cunningham,2014-03-17,Male,1968-02-17,48,Greater than 45,African-American,0,1,0,0,1,-1,2014-03-16 08:38:24,2014-03-17 01:44:33,14003689CF10A,2014-03-16,,1,F,Hiring with Intent to Defraud,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-16,2014-03-17,1,0,746,0,0,0\r\n3458,jose chavez,jose,chavez,2013-01-26,Male,1978-11-27,37,25 - 45,Caucasian,0,2,0,0,1,-1,2013-01-25 10:39:04,2013-01-26 08:15:41,13001825MM10A,2013-01-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-26,Risk of Violence,3,Low,2013-01-26,2013-01-25,2013-01-26,1,0,1161,0,0,0\r\n3462,vidal cervantes,vidal,cervantes,2014-02-02,Male,1978-12-23,37,25 - 45,Caucasian,0,1,0,0,1,-1,2014-02-01 04:29:57,2014-02-02 08:38:06,14001782MM10A,2014-02-01,,1,M,Battery,1,15006794MM10A,(M1),1,2015-06-24,Battery,2015-06-25,2015-06-25,,1,15006794MM10A,(M1),2015-06-24,Battery,Risk of Recidivism,1,Low,2014-02-02,Risk of Violence,1,Low,2014-02-02,2015-06-25,2015-06-25,1,0,507,1,1,1\r\n3463,john grant,john,grant,2014-02-10,Male,1976-09-03,39,25 - 45,Caucasian,0,3,0,0,1,-3,2014-02-07 01:11:10,2014-02-07 09:15:23,14001744CF10A,2014-02-06,,4,F,Solicit Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-10,Risk of Violence,4,Low,2014-02-10,2014-06-27,2014-06-28,1,0,137,0,0,0\r\n3465,herold delinois,herold,delinois,2013-09-27,Male,1967-04-05,49,Greater than 45,Other,0,1,0,0,2,-1,2013-09-26 10:20:24,2013-09-27 01:35:34,13013684CF10A,,2013-09-26,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-27,Risk of Violence,1,Low,2013-09-27,2013-09-26,2013-09-27,2,0,917,0,0,0\r\n3468,oneil kerone,oneil,kerone,2013-10-15,Male,1981-02-22,35,25 - 45,African-American,0,10,0,0,3,,,,10017061CF10A,2010-09-21,,1120,F,Aggravated Battery / Pregnant,1,15011321CF10A,(F3),,2015-06-14,False Imprisonment,,,,1,15011321CF10A,(F3),2015-06-14,Felony Battery w/Prior Convict,Risk of Recidivism,10,High,2013-10-15,Risk of Violence,10,High,2013-10-15,,,3,0,607,1,1,1\r\n3475,donald duke,donald,duke,2013-03-30,Male,1973-04-01,43,25 - 45,Caucasian,0,5,0,0,5,-1,2013-03-29 11:13:36,2013-03-30 04:31:13,13004530CF10A,2013-03-29,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-30,Risk of Violence,6,Medium,2013-03-30,2013-03-29,2013-03-30,5,0,1098,0,0,0\r\n3480,willie wiggins,willie,wiggins,2013-01-03,Male,1962-05-02,53,Greater than 45,African-American,0,2,0,0,1,-1,2013-01-02 10:49:04,2013-01-03 01:20:01,13000112MM10A,2013-01-02,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2013-01-02,2013-01-03,1,0,1184,0,0,0\r\n3483,jason herring,jason,herring,2013-10-10,Male,1976-11-24,39,25 - 45,Caucasian,0,1,0,0,0,-1,2013-10-09 02:26:58,2013-10-11 10:06:16,13019192MM10A,2013-10-09,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-10,Risk of Violence,1,Low,2013-10-10,2013-10-17,2013-10-22,0,1,7,0,0,0\r\n3487,raul calvet,raul,calvet,2013-05-29,Male,1967-04-02,49,Greater than 45,Caucasian,0,6,0,0,7,,,,13007602CF10A,2013-05-28,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-29,Risk of Violence,4,Low,2013-05-29,,,7,0,1038,0,0,0\r\n3488,james conroy,james,conroy,2013-07-15,Male,1980-02-03,36,25 - 45,Caucasian,0,1,0,0,2,-4,2013-07-11 11:11:06,2013-07-12 08:34:26,13009750CF10A,2013-07-11,,4,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-15,Risk of Violence,1,Low,2013-07-15,2013-07-11,2013-07-12,2,0,991,0,0,0\r\n3489,wilnika wilson,wilnika,wilson,2013-02-07,Female,1991-11-21,24,Less than 25,African-American,0,9,0,0,1,-1,2013-02-06 10:07:57,2013-02-10 04:53:33,12016323CF10A,,2013-02-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-07,Risk of Violence,5,Medium,2013-02-07,2013-12-13,2013-12-26,1,3,309,0,0,0\r\n3491,rogrigo penaranda,rogrigo,penaranda,2014-02-01,Male,1980-10-04,35,25 - 45,Hispanic,0,2,0,0,0,-1,2014-01-31 03:23:35,2014-02-01 10:09:54,14001745MM10A,2014-01-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-01,Risk of Violence,1,Low,2014-02-01,2014-01-31,2014-02-01,0,0,790,0,0,0\r\n3492,roderick thomas,roderick,thomas,2014-03-10,Male,1993-01-07,23,Less than 25,African-American,0,7,0,0,3,0,2014-03-10 02:25:18,2014-03-11 02:54:42,14003369CF10A,2014-03-09,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-10,Risk of Violence,5,Medium,2014-03-10,2014-03-10,2014-03-11,3,1,753,0,0,0\r\n3493,gymmy justin,gymmy,justin,2013-04-02,Male,1990-01-06,26,25 - 45,African-American,0,2,0,0,2,-1,2013-04-01 11:49:53,2013-04-02 12:59:44,13004676CF10A,2013-04-01,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-02,Risk of Violence,3,Low,2013-04-02,2013-06-27,2013-06-28,2,0,86,0,0,0\r\n3499,johnny masses,johnny,masses,2013-01-07,Female,1985-09-20,30,25 - 45,African-American,0,10,3,2,14,0,2013-01-07 04:56:40,2013-01-12 08:50:28,13000270CF10A,2013-01-07,,0,F,Carrying Concealed Firearm,1,14003094CF10A,(M1),1,2014-03-04,Resist/Obstruct W/O Violence,2014-03-05,2014-04-11,,1,14004826MM10A,(M1),2014-03-04,Assault Law Enforcement Officer,Risk of Recidivism,10,High,2013-01-07,Risk of Violence,7,Medium,2013-01-07,2013-04-06,2013-04-13,14,5,89,0,1,1\r\n3500,justin darrall,justin,darrall,2013-03-19,Male,1990-08-03,25,25 - 45,Caucasian,0,6,0,0,2,0,2013-03-19 03:36:03,2013-03-20 04:10:08,13005428MM10A,2013-03-19,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-19,Risk of Violence,6,Medium,2013-03-19,2013-03-19,2013-03-20,2,1,1109,0,0,0\r\n3504,jacolby floyd,jacolby,floyd,2013-06-28,Male,1990-03-12,26,25 - 45,African-American,0,4,0,0,2,-29,2013-05-30 07:22:09,2013-06-28 05:34:53,13010391MM10A,2013-05-30,,29,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-28,Risk of Violence,4,Low,2013-06-28,2013-05-30,2013-06-28,2,0,1008,0,0,0\r\n3506,timothy newson,timothy,newson,2013-08-23,Male,1989-06-13,26,25 - 45,African-American,0,8,0,0,7,-49,2013-07-05 09:14:47,2013-07-06 07:12:01,13012786MM10A,2013-07-05,,49,M,Carrying A Concealed Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-23,Risk of Violence,6,Medium,2013-08-23,2014-06-19,2014-06-24,7,0,300,0,0,0\r\n3507,paulo lapa,paulo,lapa,2013-05-20,Male,1955-08-16,60,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-05-19 06:07:29,2013-05-20 06:56:01,13007127CF10A,2013-05-19,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-20,Risk of Violence,1,Low,2013-05-20,2015-07-15,2015-07-20,0,0,786,0,0,0\r\n3508,elexus shell,elexus,shell,2014-03-14,Female,1995-12-05,20,Less than 25,African-American,0,5,0,0,0,-1,2014-03-13 10:29:12,2014-03-14 08:36:11,14003646CF10A,2014-03-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-14,Risk of Violence,7,Medium,2014-03-14,2014-03-13,2014-03-14,0,0,749,0,0,0\r\n3511,angel navarro,angel,navarro,2014-03-20,Male,1992-10-14,23,Less than 25,Caucasian,0,3,0,0,0,0,2014-03-20 03:17:09,2014-03-20 09:58:54,14003947CF10A,2014-03-20,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-20,Risk of Violence,4,Low,2014-03-20,2014-03-20,2014-03-20,0,0,743,0,0,0\r\n3512,christopher stewart,christopher,stewart,2013-04-10,Male,1989-09-21,26,25 - 45,African-American,0,7,0,0,5,-1,2013-04-09 11:57:35,2013-04-16 10:03:13,13005083CF10A,,2013-04-09,1,F,arrest case no charge,1,13009521CF10A,(F7),,2013-06-13,Burglary Conveyance Assault/Bat,,,,1,13009521CF10A,(F7),2013-06-13,Burglary Conveyance Assault/Bat,Risk of Recidivism,7,Medium,2013-04-10,Risk of Violence,6,Medium,2013-04-10,2013-04-09,2013-04-16,5,6,64,1,1,1\r\n3515,james true,james,true,2014-01-07,Male,1975-09-03,40,25 - 45,Caucasian,0,1,0,0,4,0,2014-01-07 02:22:12,2014-01-08 03:19:00,14001010MU10A,2014-01-06,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-07,Risk of Violence,1,Low,2014-01-07,2014-04-11,2014-04-15,4,1,94,0,0,0\r\n3516,onique williams,onique,williams,2014-03-03,Male,1987-06-20,28,25 - 45,Other,0,3,0,0,1,-1,2014-03-02 04:53:07,2014-03-03 08:04:38,14002949CF10A,2014-03-02,,1,F,Felony Driving While Lic Suspd,1,15011203MM10A,(M1),1,2015-10-25,Battery,2015-10-26,2015-10-31,,1,15011203MM10A,(M1),2015-10-25,Battery,Risk of Recidivism,3,Low,2014-03-03,Risk of Violence,3,Low,2014-03-03,2015-10-26,2015-10-31,1,0,601,1,1,1\r\n3523,jesus melero,jesus,melero,2014-02-13,Male,1962-05-20,53,Greater than 45,Caucasian,0,1,0,0,1,-12,2014-02-01 11:21:58,2014-02-13 10:41:33,14001208CF10A,,2014-02-01,12,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-13,Risk of Violence,1,Low,2014-02-13,2014-02-01,2014-02-13,1,0,778,0,0,0\r\n3525,anthony allegretti,anthony,allegretti,2013-04-19,Male,1959-09-09,56,Greater than 45,Caucasian,0,2,0,0,5,-45,2013-03-05 03:44:35,2013-03-13 07:58:40,13003297CF10A,2013-03-05,,45,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-03-05,2013-03-13,5,0,1078,0,0,0\r\n3528,shameka peterson,shameka,peterson,2013-08-20,Female,1991-11-04,24,Less than 25,African-American,0,3,0,0,0,-1,2013-08-19 09:16:36,2013-08-20 07:47:23,13011621CF10A,2013-08-19,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-20,Risk of Violence,3,Low,2013-08-20,2013-08-19,2013-08-20,0,0,955,0,0,0\r\n3529,isaac pardo,isaac,pardo,2013-03-18,Male,1985-01-17,31,25 - 45,Hispanic,0,1,0,0,0,-5,2013-03-13 03:41:11,2013-03-14 07:33:57,13003684CF10A,2013-03-13,,5,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-13,2013-03-14,0,0,1110,0,0,0\r\n3531,sonia burca,sonia,burca,2013-02-08,Female,1982-06-20,33,25 - 45,Caucasian,0,3,0,0,2,-1,2013-02-07 12:53:38,2013-02-07 07:17:58,13001870CF10A,2013-02-06,,2,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-08,Risk of Violence,2,Low,2013-02-08,2013-05-17,2013-06-27,2,0,98,0,0,0\r\n3533,michael gonzalez,michael,gonzalez,2013-03-23,Male,1989-06-03,26,25 - 45,Caucasian,0,10,3,0,8,-1,2013-03-22 06:22:56,2013-05-03 03:49:00,13004177CF10A,2013-03-22,,1,F,Robbery / Weapon,1,14000546CF10A,(F3),,2013-11-07,Grand Theft in the 3rd Degree,,,,1,14000309CF10A,(F3),2013-12-30,Aggravated Assault w/Firearm,Risk of Recidivism,10,High,2013-03-23,Risk of Violence,7,Medium,2013-03-23,2013-03-22,2013-05-03,8,41,229,1,1,1\r\n3534,derik pollard,derik,pollard,2013-06-27,Male,1959-06-13,56,Greater than 45,Caucasian,0,1,0,0,1,-65,2013-04-23 07:19:10,2013-04-26 01:43:59,13005816CF10A,2013-04-23,,65,M,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-27,Risk of Violence,1,Low,2013-06-27,2013-04-23,2013-04-26,1,0,1009,0,0,0\r\n3535,douglas states,douglas,states,2013-04-19,Male,1984-01-29,32,25 - 45,Caucasian,0,2,0,0,2,-1,2013-04-18 10:07:01,2013-04-19 07:21:29,13005584CF10A,2013-04-18,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-19,Risk of Violence,2,Low,2013-04-19,2013-12-09,2013-12-10,2,0,234,0,0,0\r\n3536,oscar tapia,oscar,tapia,2014-09-08,Male,1990-06-14,25,25 - 45,Caucasian,0,2,0,0,0,0,2014-09-08 03:42:10,2014-09-11 03:44:41,14012251CF10A,,2014-09-08,0,F,arrest case no charge,1,15003130CF10A,(F3),0,2015-03-07,Tamper With Witness/Victim/CI,2015-03-07,2015-03-08,,1,15003130CF10A,(M1),2015-03-07,Battery,Risk of Recidivism,2,Low,2014-09-08,Risk of Violence,3,Low,2014-09-08,2015-03-07,2015-03-08,0,3,180,1,1,1\r\n3538,marvon jemmott,marvon,jemmott,2013-12-14,Male,1995-01-17,21,Less than 25,African-American,0,2,0,0,1,-1,2013-12-13 07:02:10,2013-12-14 01:30:41,13017261CF10A,2013-12-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-14,Risk of Violence,5,Medium,2013-12-14,2014-11-12,2014-12-24,1,0,333,0,0,0\r\n3539,zaviaus smith,zaviaus,smith,2013-04-13,Male,1977-07-29,38,25 - 45,African-American,0,5,0,0,3,0,2013-04-13 01:46:54,2013-04-14 07:38:52,13006908CF10A,2013-04-12,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-13,Risk of Violence,6,Medium,2013-04-13,2013-04-13,2013-04-14,3,1,1084,0,0,0\r\n3540,patrick santoni,patrick,santoni,2013-10-09,Male,1992-05-26,23,Less than 25,Caucasian,0,2,0,0,0,-4,2013-10-05 05:06:33,2013-10-06 07:58:45,13013989CF10A,2013-10-05,,4,F,Fleeing Or Attmp Eluding A Leo,1,16001749MM10A,(M1),0,2016-02-23,Resist/Obstruct W/O Violence,2016-02-23,2016-02-24,,0,,,,,Risk of Recidivism,2,Low,2013-10-09,Risk of Violence,3,Low,2013-10-09,2016-02-23,2016-02-24,0,0,867,1,0,0\r\n3541,royston walker,royston,walker,2014-01-23,Male,1948-05-14,67,Greater than 45,African-American,0,1,0,0,4,,,,13039262TC10A,2013-08-03,,173,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-23,Risk of Violence,1,Low,2014-01-23,,,4,0,799,0,0,0\r\n3542,david hise,david,hise,2014-03-28,Male,1996-01-23,20,Less than 25,Caucasian,0,6,0,1,0,-1,2014-03-27 01:13:30,2014-04-04 08:54:48,14004339CF10A,,2014-03-27,1,F,arrest case no charge,1,15000397CF10A,(F3),0,2015-01-09,Grand Theft in the 3rd Degree,2015-01-09,2015-02-05,,1,15000397CF10A,(F1),2015-01-09,Aid/Abet Burglary Assault/Batt,Risk of Recidivism,6,Medium,2014-03-28,Risk of Violence,7,Medium,2014-03-28,2015-01-09,2015-02-05,0,7,287,1,1,1\r\n3544,janel williams,janel,williams,2014-01-14,Male,1991-07-07,24,Less than 25,African-American,0,2,0,0,1,-1,2014-01-13 09:14:52,2014-01-19 09:29:15,14000577CF10A,2014-01-13,,1,F,Burglary Unoccupied Dwelling,1,14013919MM10A,(M1),0,2014-09-18,Battery,2014-09-18,2015-01-05,,1,14013919MM10A,(M1),2014-09-18,Battery,Risk of Recidivism,2,Low,2014-01-14,Risk of Violence,3,Low,2014-01-14,2014-09-18,2015-01-05,1,5,247,1,1,1\r\n3546,richard santos,richard,santos,2014-02-20,Male,1992-12-11,23,Less than 25,Hispanic,0,2,0,0,0,0,2014-02-20 01:30:24,2014-02-20 08:53:21,14002359CF10A,2014-02-19,,1,F,Agg Fleeing/Eluding High Speed,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-20,Risk of Violence,3,Low,2014-02-20,2014-02-20,2014-02-20,0,0,771,0,0,0\r\n3547,timothy young,timothy,young,2013-03-09,Male,1967-03-22,49,Greater than 45,African-American,0,4,0,0,3,-1,2013-03-08 08:30:08,2013-03-09 08:10:58,12017244CF10A,,2013-03-08,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2013-03-08,2013-03-09,3,0,1119,0,0,0\r\n3552,john macpherson,john,macpherson,2014-03-14,Male,1987-07-17,28,25 - 45,Caucasian,0,3,0,0,0,0,2014-03-14 03:35:23,2014-03-27 08:45:42,14004467MM10A,2014-03-14,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-14,Risk of Violence,2,Low,2014-03-14,2014-03-14,2014-03-27,0,13,749,0,0,0\r\n3554,claude grenon,claude,grenon,2013-01-26,Male,1949-02-18,67,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-01-25 03:23:20,2013-01-26 09:12:07,13001269CF10A,,2013-01-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-26,Risk of Violence,1,Low,2013-01-26,2013-01-25,2013-01-26,3,0,1161,0,0,0\r\n3556,angel dejesus,angel,dejesus,2013-11-28,Male,1983-04-06,33,25 - 45,Hispanic,0,1,0,0,0,0,2013-11-28 02:33:43,2013-11-29 08:55:05,13016553CF10A,2013-11-28,,0,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-28,Risk of Violence,1,Low,2013-11-28,2013-11-28,2013-11-29,0,1,855,0,0,0\r\n3560,michael murdough,michael,murdough,2013-11-06,Male,1975-09-23,40,25 - 45,Caucasian,0,3,0,0,4,-80,2013-08-18 01:02:37,2013-11-04 12:02:25,01004839CF10A,,2013-08-26,72,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-06,Risk of Violence,4,Low,2013-11-06,2013-08-18,2013-11-04,4,0,877,0,0,0\r\n3562,craig lattimore,craig,lattimore,2013-02-16,Male,1963-09-03,52,Greater than 45,African-American,0,1,0,0,0,-1,2013-02-15 07:20:36,2013-02-16 07:12:26,13002365CF10A,2013-02-15,,1,F,Solicitation On Felony 3 Deg,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-16,Risk of Violence,1,Low,2013-02-16,2013-02-15,2013-02-16,0,0,1140,0,0,0\r\n3566,steven corey,steven,corey,2013-08-01,Male,1993-11-30,22,Less than 25,Caucasian,0,9,0,0,1,-1,2013-07-31 02:58:40,2013-08-01 09:55:06,13010696CF10A,2013-07-31,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-01,Risk of Violence,9,High,2013-08-01,2013-12-05,2013-12-07,1,0,126,0,0,0\r\n3568,emad abdelquader,emad,abdelquader,2013-02-19,Male,1979-12-09,36,25 - 45,Caucasian,0,7,0,0,9,-42,2013-01-08 03:25:44,2013-01-09 02:55:36,13000318CF10A,2013-01-08,,42,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-19,Risk of Violence,3,Low,2013-02-19,2014-12-16,2015-06-12,9,0,665,0,0,0\r\n3570,julio salem,julio,salem,2014-11-28,Male,1975-09-12,40,25 - 45,Caucasian,0,1,0,0,0,-1,2014-11-27 04:39:17,2014-11-28 01:49:05,14016882MM10A,2014-11-27,,1,M,Battery,1,15012294MM10A,(M1),0,2015-11-20,Giving False Crime Report,2015-11-20,2015-11-22,,1,15012158MM10A,(M1),2015-11-20,Battery,Risk of Recidivism,1,Low,2014-11-28,Risk of Violence,1,Low,2014-11-28,2015-11-20,2015-11-22,0,0,357,1,1,1\r\n3571,donny evans,donny,evans,2013-04-12,Male,1985-09-10,30,25 - 45,Caucasian,0,8,0,0,1,0,2013-04-12 05:23:21,2013-04-12 08:19:16,13007109MM10A,2013-04-12,,0,M,Expired DL More Than 6 Months,1,14006749MM10A,(M1),0,2014-04-21,Battery,2014-04-21,2014-04-22,,1,14006749MM10A,(M1),2014-04-21,Battery,Risk of Recidivism,8,High,2013-04-12,Risk of Violence,6,Medium,2013-04-12,2014-04-21,2014-04-22,1,0,374,1,1,1\r\n3573,jonas garcon,jonas,garcon,2013-10-24,Male,1973-10-07,42,25 - 45,African-American,0,1,0,0,1,-1,2013-10-23 09:26:43,2013-10-24 01:16:59,13003080CF10A,,2013-10-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-24,Risk of Violence,1,Low,2013-10-24,2013-11-14,2013-11-15,1,0,21,0,0,0\r\n3576,christopher moreno,christopher,moreno,2013-03-13,Male,1970-03-27,46,Greater than 45,Caucasian,0,2,0,0,4,-5,2013-03-08 11:15:24,2013-03-11 03:23:55,13003470CF10A,2013-03-08,,5,F,Video Voyeur-<24Y on Child >16,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-13,Risk of Violence,1,Low,2013-03-13,2013-03-08,2013-03-11,4,0,1115,0,0,0\r\n3577,jerome green,jerome,green,2014-02-06,Male,1977-07-13,38,25 - 45,African-American,0,3,0,0,4,0,2014-02-06 12:36:29,2014-02-06 09:10:10,14001657CF10A,2014-02-05,,1,F,Sell or Offer for Sale Counterfeit Goods,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-06,Risk of Violence,2,Low,2014-02-06,2014-02-06,2014-02-06,4,0,785,0,0,0\r\n3578,michael visconti,michael,visconti,2013-08-28,Male,1976-04-22,39,25 - 45,Hispanic,0,1,0,0,2,-113,2013-05-07 12:41:47,2013-08-20 10:59:38,13006464CF10A,2013-05-06,,114,F,Crimin Mischief Damage $1000+,1,14000241MM10A,(M1),1,2014-01-06,Assault On Law Enforc Officer,2014-01-07,2014-03-11,,1,14000241MM10A,(M1),2014-01-06,Assault On Law Enforc Officer,Risk of Recidivism,1,Low,2013-08-28,Risk of Violence,2,Low,2013-08-28,2014-03-11,2015-05-04,2,0,131,1,1,1\r\n3584,amadeo pabon,amadeo,pabon,2014-02-01,Male,1989-07-13,26,25 - 45,Caucasian,0,5,0,0,0,-1,2014-01-31 07:36:44,2014-02-01 08:44:54,14001389CF10A,2014-01-31,,1,M,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-01,Risk of Violence,4,Low,2014-02-01,2014-01-31,2014-02-01,0,0,790,0,0,0\r\n3591,andres varela,andres,varela,2013-08-13,Male,1989-01-02,27,25 - 45,Hispanic,0,3,0,0,2,-10,2013-08-03 10:33:08,2013-08-13 10:45:31,13010874CF10A,2013-08-03,,10,F,Lewd/Lasc Battery Pers 12+/<16,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-13,Risk of Violence,2,Low,2013-08-13,2013-08-03,2013-08-13,2,0,962,0,0,0\r\n3593,mark depalma,mark,depalma,2013-09-27,Male,1954-07-24,61,Greater than 45,Caucasian,0,4,0,0,1,0,2013-09-27 04:19:45,2013-09-28 05:16:53,13013737CF10A,,2013-09-27,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-27,Risk of Violence,2,Low,2013-09-27,2013-09-27,2013-09-28,1,1,917,0,0,0\r\n3596,carlos ramirezdiaz,carlos,ramirezdiaz,2013-05-04,Male,1958-10-11,57,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-04 12:03:36,2013-06-01 05:43:28,13006410CF10A,2013-05-03,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2013-05-04,2013-06-01,0,28,1063,0,0,0\r\n3597,steven filizzola,steven,filizzola,2013-12-23,Male,1992-03-24,24,Less than 25,Caucasian,0,5,0,3,3,-1,2013-12-22 06:05:43,2013-12-23 07:54:43,13023579MM10A,2013-12-22,,1,M,Battery,1,15006657MM10A,(M1),0,2015-06-20,Battery,2015-06-20,2015-06-22,,1,15006657MM10A,(M1),2015-06-20,Battery,Risk of Recidivism,5,Medium,2013-12-23,Risk of Violence,4,Low,2013-12-23,2015-06-20,2015-06-22,3,0,544,1,1,1\r\n3598,sterlyn ayres,sterlyn,ayres,2013-04-19,Male,1981-09-10,34,25 - 45,African-American,0,1,0,0,1,-1,2013-04-18 08:16:22,2013-04-19 07:23:23,13004136CF10A,,2013-04-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,2,Low,2013-04-19,2013-04-18,2013-04-19,1,0,1078,0,0,0\r\n3600,alberto pagan,alberto,pagan,2013-05-26,Male,1988-07-05,27,25 - 45,Hispanic,0,2,0,0,1,-1,2013-05-25 11:25:22,2013-05-27 04:29:59,13007466CF10A,2013-05-25,,1,F,Throw Missile Into Pub/Priv Dw,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-26,Risk of Violence,3,Low,2013-05-26,2013-05-25,2013-05-27,1,1,1041,0,0,0\r\n3602,jahara graham,jahara,graham,2013-05-19,Male,1981-01-04,35,25 - 45,African-American,0,8,0,0,10,0,2013-05-19 12:58:48,2013-05-20 02:43:09,13009593MM10A,2013-05-18,,1,M,Viol Prot Injunc Repeat Viol,1,13014978CF10A,(F3),1,2013-10-25,Tampering With Physical Evidence,2013-10-26,2013-10-26,,1,13014978CF10A,(F3),2013-10-25,Agg Fleeing and Eluding,Risk of Recidivism,8,High,2013-05-19,Risk of Violence,3,Low,2013-05-19,2013-05-19,2013-05-20,10,1,159,1,1,1\r\n3604,phillip hunt,phillip,hunt,2013-03-08,Male,1962-05-24,53,Greater than 45,Other,0,5,0,0,1,733,2015-03-11 07:45:41,2015-03-16 09:42:12,12010684CF10A,,2012-12-06,92,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-08,Risk of Violence,2,Low,2013-03-08,2015-03-11,2015-03-16,1,0,733,0,0,0\r\n3605,victor levell,victor,levell,2013-11-11,Male,1971-10-17,44,25 - 45,African-American,0,1,0,0,0,-1,2013-11-10 03:52:01,2013-11-11 07:55:14,13015658CF10A,2013-11-10,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-11,Risk of Violence,2,Low,2013-11-11,2014-01-23,2014-06-04,0,0,73,0,0,0\r\n3611,randall zucker,randall,zucker,2013-10-03,Male,1955-01-05,61,Greater than 45,Caucasian,0,6,0,0,10,-1,2013-10-02 11:48:45,2013-10-25 08:32:28,13013818CF10A,2013-10-02,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-03,Risk of Violence,5,Medium,2013-10-03,2013-12-24,2014-01-08,10,22,82,0,0,0\r\n3617,ronald burns,ronald,burns,2013-12-29,Male,1973-07-16,42,25 - 45,African-American,0,1,0,0,4,0,2013-12-29 04:03:24,2013-12-29 07:27:08,08058411TC40A,2008-06-29,,2009,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-29,Risk of Violence,1,Low,2013-12-29,2015-11-23,2015-12-07,4,0,694,0,0,0\r\n3619,willie clark,willie,clark,2013-08-06,Male,1977-02-09,39,25 - 45,African-American,0,2,0,0,4,-32,2013-07-05 12:39:54,2013-07-12 08:26:45,13011031CF10A,2013-08-06,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-06,Risk of Violence,2,Low,2013-08-06,2013-09-18,2013-10-02,4,0,43,0,0,0\r\n3620,stella ashen,stella,ashen,2013-12-16,Female,1963-01-03,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-15 12:10:10,2013-12-16 01:08:05,13023231MM10A,2013-12-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,0,0,837,0,0,0\r\n3622,leonard joiner,leonard,joiner,2013-01-17,Male,1989-12-16,26,25 - 45,African-American,0,10,0,0,3,-1,2013-01-16 07:22:02,2013-01-18 05:35:35,13001101MO10A,2013-01-16,,1,M,Poss Of Controlled Substance,1,15004511CF10A,(F3),0,2015-04-06,Grand Theft in the 3rd Degree,2015-04-06,2015-04-06,,0,,,,,Risk of Recidivism,10,High,2013-01-17,Risk of Violence,9,High,2013-01-17,2015-04-06,2015-04-06,3,1,809,0,0,0\r\n3626,juan conde,juan,conde,2014-02-12,Male,1966-01-16,50,Greater than 45,Caucasian,0,7,0,0,0,-1,2014-02-11 04:53:10,2014-03-13 10:02:48,14001935CF10A,2014-02-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-12,Risk of Violence,2,Low,2014-02-12,2014-07-02,2014-07-10,0,29,140,0,0,0\r\n3627,mark montalvo,mark,montalvo,2013-01-26,Male,1972-04-07,44,25 - 45,Caucasian,3,7,0,0,16,-1,2013-01-25 06:55:19,2013-04-17 04:51:55,13001817MM10A,2013-01-25,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-26,Risk of Violence,3,Low,2013-01-26,2013-01-25,2013-04-17,16,81,1161,0,0,0\r\n3628,kwamane harris,kwamane,harris,2014-10-07,Male,1991-08-07,24,Less than 25,African-American,0,6,1,3,4,-1,2014-10-06 01:51:55,2014-10-07 06:59:41,14013476CF10A,2014-10-06,,1,F,Agg Assault W/int Com Fel Dome,1,15001799CF10A,(F3),6,2015-02-02,Felony Battery (Dom Strang),2015-02-08,2015-02-09,,1,15001799CF10A,(F3),2015-02-02,Felony Battery (Dom Strang),Risk of Recidivism,6,Medium,2014-10-07,Risk of Violence,6,Medium,2014-10-07,2014-11-07,2014-11-21,4,0,31,0,1,1\r\n3630,patricio regaldo,patricio,regaldo,2013-05-11,Male,1965-10-20,50,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-11 03:05:18,2013-05-13 07:50:55,13006755CF10A,2013-05-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-11,Risk of Violence,1,Low,2013-05-11,2013-05-11,2013-05-13,0,2,1056,0,0,0\r\n3631,danielle sites,danielle,sites,2014-02-08,Female,1980-04-08,36,25 - 45,Caucasian,0,1,0,0,0,0,2014-02-08 04:16:48,2014-02-09 06:28:32,14002209MM10A,2014-02-08,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-08,Risk of Violence,1,Low,2014-02-08,2014-02-08,2014-02-09,0,1,783,0,0,0\r\n3634,miguel palacios,miguel,palacios,2013-03-29,Male,1976-07-21,39,25 - 45,Caucasian,0,3,0,0,0,-1,2013-03-28 05:41:23,2013-05-21 11:04:40,13004697CF10A,,2013-03-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-29,Risk of Violence,2,Low,2013-03-29,2013-03-28,2013-05-21,0,53,1099,0,0,0\r\n3635,tierra peterson,tierra,peterson,2013-03-12,Female,1991-12-09,24,Less than 25,African-American,0,4,0,0,2,729,2015-03-11 11:49:34,2015-03-25 08:27:11,13002573CF10A,2012-12-12,,90,F,Crim Use Of Personal Id Info,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-12,Risk of Violence,4,Low,2013-03-12,2015-03-11,2015-03-25,2,0,729,0,0,0\r\n3636,sarah grissett,sarah,grissett,2013-05-12,Female,1961-05-28,54,Greater than 45,African-American,0,6,0,0,7,-1,2013-05-11 09:03:48,2013-05-30 05:36:11,13006784CF10A,2013-05-11,,1,F,Fraudulent Use of Credit Card,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-12,Risk of Violence,1,Low,2013-05-12,2013-05-11,2013-05-30,7,18,1055,0,0,0\r\n3639,samuel bennett,samuel,bennett,2013-08-07,Male,1987-01-05,29,25 - 45,African-American,0,2,0,0,0,0,2013-08-07 04:13:32,2013-08-08 01:51:29,13011057CF10A,2013-08-06,,1,M,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-07,Risk of Violence,2,Low,2013-08-07,2013-08-07,2013-08-08,0,1,968,0,0,0\r\n3641,michael flores,michael,flores,2014-01-26,Male,1989-05-26,26,25 - 45,Caucasian,0,6,0,0,0,-1,2014-01-25 11:17:21,2014-01-26 08:05:58,14001432MM10A,2014-01-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-26,Risk of Violence,2,Low,2014-01-26,2014-01-25,2014-01-26,0,0,796,0,0,0\r\n3645,moises delgado,moises,delgado,2013-11-18,Male,1981-11-08,34,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-17 08:34:35,2013-11-18 08:26:12,13021606MM10A,2013-11-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-18,Risk of Violence,2,Low,2013-11-18,2013-11-17,2013-11-18,0,0,865,0,0,0\r\n3647,alliyah anderson,alliyah,anderson,2013-12-24,Male,1995-04-24,20,Less than 25,African-American,0,3,0,0,0,-1,2013-12-23 07:21:11,2013-12-25 03:56:33,13017700CF10A,2013-12-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-24,Risk of Violence,6,Medium,2013-12-24,2013-12-23,2013-12-25,0,1,829,0,0,0\r\n3649,sean cherfils,sean,cherfils,2014-05-10,Male,1990-01-12,26,25 - 45,African-American,0,8,0,0,4,0,2014-05-10 12:21:42,2014-05-11 01:42:50,14006519CF10A,2014-05-10,,0,F,Possession Of Methamphetamine,1,15003282MM10A,(M1),0,2015-03-19,Resist/Obstruct W/O Violence,2015-03-19,2015-03-20,,1,16000812MM10A,(M1),2016-01-23,Battery,Risk of Recidivism,8,High,2014-05-10,Risk of Violence,6,Medium,2014-05-10,2015-03-19,2015-03-20,4,1,313,1,1,1\r\n3653,justin lynch,justin,lynch,2013-01-10,Male,1990-02-28,26,25 - 45,African-American,0,2,0,0,0,-1,2013-01-09 10:58:44,2013-01-10 01:20:58,13000400CF10A,2013-01-09,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-10,Risk of Violence,3,Low,2013-01-10,2013-01-09,2013-01-10,0,0,1177,0,0,0\r\n3655,gregory willey,gregory,willey,2013-03-31,Male,1960-11-26,55,Greater than 45,African-American,0,4,0,0,1,-1,2013-03-30 08:52:46,2013-03-31 02:25:58,13004581CF10A,2013-03-30,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-31,Risk of Violence,1,Low,2013-03-31,2013-03-30,2013-03-31,1,0,1097,0,0,0\r\n3656,duson charles,duson,charles,2013-04-25,Male,1993-07-23,22,Less than 25,African-American,0,9,0,0,0,-1,2013-04-24 01:27:25,2013-04-26 04:29:27,13007972MM10A,2013-04-24,,1,M,Prowling/Loitering,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-25,Risk of Violence,7,Medium,2013-04-25,2013-04-24,2013-04-26,0,1,1072,0,0,0\r\n3657,lanique lee,lanique,lee,2014-02-16,Female,1989-08-23,26,25 - 45,African-American,0,4,0,0,0,-1,2014-02-15 02:28:22,2014-02-16 09:23:55,14002664MM10A,2014-02-15,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-16,Risk of Violence,3,Low,2014-02-16,2014-02-15,2014-02-16,0,0,775,0,0,0\r\n3658,hassan ahmed,hassan,ahmed,2013-02-10,Male,1959-09-15,56,Greater than 45,Other,0,1,0,0,0,0,2013-02-10 07:14:52,2013-02-11 07:22:42,13002949MM10A,2013-02-10,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-10,Risk of Violence,1,Low,2013-02-10,2013-02-10,2013-02-11,0,1,1146,0,0,0\r\n3659,francisco sanchezferrans,francisco,sanchezferrans,2013-02-27,Male,1949-08-09,66,Greater than 45,Caucasian,0,1,0,0,1,331,2014-01-24 10:33:08,2014-07-10 12:38:49,11012504CF10A,,2013-02-26,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-27,Risk of Violence,2,Low,2013-02-27,2014-01-24,2014-07-10,1,0,331,0,0,0\r\n3660,terrence adderly,terrence,adderly,2013-10-23,Male,1969-12-08,46,Greater than 45,Other,0,3,0,0,2,-1,2013-10-22 04:07:57,2013-10-23 04:12:28,13014750CF10A,2013-10-22,,1,F,Possession Of Diazepam,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-23,Risk of Violence,4,Low,2013-10-23,2013-10-22,2013-10-23,2,0,891,0,0,0\r\n3662,jamar dukes,jamar,dukes,2013-03-25,Male,1988-02-10,28,25 - 45,African-American,0,7,0,0,4,-1,2013-03-24 11:47:45,2013-04-23 09:07:38,13004248CF10A,2013-03-24,,1,F,Burglary Structure Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-25,Risk of Violence,9,High,2013-03-25,2013-03-24,2013-04-23,4,29,1103,0,0,0\r\n3663,andre laidlaw,andre,laidlaw,2013-01-31,Male,1982-08-22,33,25 - 45,African-American,0,6,0,0,8,-1,2013-01-30 11:49:24,2013-02-01 09:53:16,13001501CF10A,2013-01-30,,1,F,Possession of Oxycodone,1,15039267TC30A,(M2),,2015-05-26,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-31,Risk of Violence,5,Medium,2013-01-31,2013-01-30,2013-02-01,8,1,845,1,0,0\r\n3666,marquita young,marquita,young,2014-01-05,Female,1984-07-27,31,25 - 45,African-American,0,2,0,0,0,-1,2014-01-04 09:31:56,2014-01-05 01:37:46,14000173MM10A,2014-01-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-05,Risk of Violence,2,Low,2014-01-05,2014-01-04,2014-01-05,0,0,817,0,0,0\r\n3667,dywahn bethea,dywahn,bethea,2013-01-15,Male,1989-10-18,26,25 - 45,African-American,0,5,0,0,1,0,2013-01-15 05:01:03,2013-01-15 06:43:13,13001017MO10A,2013-01-15,,0,M,Poss Of Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-15,Risk of Violence,4,Low,2013-01-15,2013-01-15,2013-01-15,1,0,1172,0,0,0\r\n3668,ayinde crespo,ayinde,crespo,2013-10-25,Male,1980-07-23,35,25 - 45,African-American,0,5,0,0,4,,,,11025642MO10A,2011-11-03,,722,M,Poss Of Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-25,Risk of Violence,2,Low,2013-10-25,,,4,0,889,0,0,0\r\n3669,roxana stewart,roxana,stewart,2014-03-10,Female,1974-09-01,41,25 - 45,Caucasian,0,7,0,0,12,-45,2014-01-24 08:31:19,2014-02-04 06:41:24,14003149CF10A,2014-01-24,,45,F,Felony Battery w/Prior Convict,1,15003741MM10A,(M1),0,2015-03-31,Battery,2015-03-31,2015-04-13,,1,15003741MM10A,(M1),2015-03-31,Battery,Risk of Recidivism,7,Medium,2014-03-10,Risk of Violence,5,Medium,2014-03-10,2015-03-31,2015-04-13,12,0,386,1,1,1\r\n3671,jason mills,jason,mills,2013-04-13,Male,1981-05-28,34,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-12 08:57:34,2013-04-13 08:11:57,13007128MM10A,2013-04-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-13,Risk of Violence,1,Low,2013-04-13,2013-04-12,2013-04-13,0,0,1084,0,0,0\r\n3673,dwayne taylor,dwayne,taylor,2013-04-26,Male,1983-01-04,33,25 - 45,Other,0,1,0,0,0,-1,2013-04-25 06:50:35,2013-04-26 08:17:42,13005932CF10A,2013-04-25,,1,F,Sell or Offer for Sale Counterfeit Goods,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-26,Risk of Violence,1,Low,2013-04-26,2013-04-25,2013-04-26,0,0,1071,0,0,0\r\n3674,shawnnette longley,shawnnette,longley,2014-02-16,Female,1983-11-08,32,25 - 45,African-American,0,2,0,0,0,-1,2014-02-15 03:23:21,2014-02-16 02:27:00,14002320CF10A,2014-02-15,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-16,Risk of Violence,1,Low,2014-02-16,2014-02-15,2014-02-16,0,0,775,0,0,0\r\n3675,shaun mckinley,shaun,mckinley,2013-09-13,Male,1979-02-07,37,25 - 45,African-American,0,6,0,0,9,0,2013-09-13 03:59:13,2013-09-14 04:59:30,13012938CF10A,2013-09-12,,1,F,Poss Cocaine/Intent To Del/Sel,1,14006946CF10A,(F3),0,2014-05-19,False Imprisonment,2014-05-19,2014-12-09,,1,14006946CF10A,(F2),2014-05-19,Agg Battery Grt/Bod/Harm,Risk of Recidivism,6,Medium,2013-09-13,Risk of Violence,9,High,2013-09-13,2014-05-19,2014-12-09,9,1,248,1,1,1\r\n3676,bennie peele,bennie,peele,2013-06-06,Male,1965-09-29,50,Greater than 45,African-American,0,5,0,0,1,-22,2013-05-15 11:16:40,2013-05-16 02:04:44,13006966CF10A,2013-05-15,,22,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-06-06,Risk of Violence,5,Medium,2013-06-06,2013-05-15,2013-05-16,1,0,1030,0,0,0\r\n3678,derek suarez,derek,suarez,2013-09-12,Male,1981-03-05,35,25 - 45,Caucasian,0,2,0,0,1,-1,2013-09-11 10:29:21,2013-09-14 03:06:09,13013034CF10A,,2013-09-11,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2013-09-11,2013-09-14,1,2,932,0,0,0\r\n3681,jacqueline battle,jacqueline,battle,2013-05-02,Female,1963-08-16,52,Greater than 45,African-American,0,9,0,0,8,-1,2013-05-01 09:03:54,2013-06-13 10:32:00,13006255CF10A,,2013-05-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-02,Risk of Violence,7,Medium,2013-05-02,2014-09-11,2014-10-16,8,42,497,0,0,0\r\n3684,jarvis cure,jarvis,cure,2013-12-18,Male,1989-11-04,26,25 - 45,African-American,0,7,1,2,5,-1,2013-12-17 06:58:28,2013-12-23 08:06:12,13017402CF10A,2013-12-17,,1,F,Shoot In Occupied Dwell,1,14000143MM10A,(M1),0,2014-01-03,Resist/Obstruct W/O Violence,2014-01-03,2014-01-16,,1,14006197CF10A,(M1),2014-05-03,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,7,Medium,2013-12-18,Risk of Violence,7,Medium,2013-12-18,2014-01-03,2014-01-16,5,5,16,1,1,1\r\n3685,raymon frazier,raymon,frazier,2013-01-27,Male,1979-12-02,36,25 - 45,African-American,0,9,0,0,1,,,,03002467TC10A,,2003-01-15,3665,M,arrest case no charge,1,14013106TC10A,(M2),,2014-03-21,Operating W/O Valid License,,,,1,15016021CF10A,(F7),2015-12-11,Burglary Dwelling Armed,Risk of Recidivism,9,High,2013-01-27,Risk of Violence,6,Medium,2013-01-27,2009-10-08,2010-12-30,1,0,418,1,1,1\r\n3691,daniel levy,daniel,levy,2014-10-08,Male,1996-09-14,19,Less than 25,Other,0,9,0,0,0,-1,2014-10-07 03:10:54,2014-10-08 08:30:31,14014703MM10A,2014-10-07,,1,M,Battery,1,15005201CF10A,(F3),0,2015-04-21,Aggravated Assault W/Dead Weap,2015-04-21,2015-05-27,,1,15005201CF10A,(F3),2015-04-21,Aggravated Assault W/Dead Weap,Risk of Recidivism,9,High,2014-10-08,Risk of Violence,9,High,2014-10-08,2015-04-21,2015-05-27,0,0,195,1,1,1\r\n3693,jordan carson,jordan,carson,2014-03-15,Male,1991-08-22,24,Less than 25,African-American,0,2,0,0,0,0,2014-03-15 01:13:11,2014-03-16 08:35:16,14004527MM10A,2014-03-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-15,Risk of Violence,3,Low,2014-03-15,2015-06-12,2015-06-22,0,1,454,0,0,0\r\n3696,deandre fleury,deandre,fleury,2013-01-31,Male,1995-01-18,21,Less than 25,African-American,0,9,1,0,1,-1,2013-01-30 07:13:30,2013-01-31 07:16:59,13001505CF10A,2013-01-30,,1,F,Robbery / No Weapon,1,15001200MM20A,(M1),,2015-04-15,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,9,High,2013-01-31,Risk of Violence,8,High,2013-01-31,2013-01-30,2013-01-31,1,0,804,1,0,0\r\n3697,adolfo casco,adolfo,casco,2013-01-27,Male,1962-01-06,54,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-26 07:42:36,2013-01-27 01:56:31,13001884MM10A,2013-01-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-27,Risk of Violence,2,Low,2013-01-27,2013-01-26,2013-01-27,0,0,1160,0,0,0\r\n3698,stephen kasdorf,stephen,kasdorf,2013-11-11,Male,1966-05-01,49,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-10 11:42:59,2014-01-23 05:55:25,13015646CF10A,2013-11-10,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-11,Risk of Violence,1,Low,2013-11-11,2014-10-25,2014-11-03,0,73,348,0,0,0\r\n3699,alexander johnson,alexander,johnson,2013-02-13,Male,1973-09-17,42,25 - 45,Caucasian,0,2,0,0,1,0,2013-02-13 12:16:53,2013-12-03 10:21:52,13002280CF10A,,2013-02-13,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2014-03-28,2014-04-25,1,293,408,0,0,0\r\n3701,bruce gadson,bruce,gadson,2013-10-23,Male,1955-02-04,61,Greater than 45,African-American,0,4,0,0,30,-56,2013-08-28 12:56:40,2013-10-17 12:53:19,11006754CF10A,,2013-08-28,56,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-23,Risk of Violence,2,Low,2013-10-23,2013-08-28,2013-10-17,30,0,891,0,0,0\r\n3703,ramon velez-cupeles,ramon,velez-cupeles,2013-10-20,Male,1942-04-07,74,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-20 12:02:11,2013-10-21 09:18:21,13019809MM10A,2013-10-19,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-20,Risk of Violence,1,Low,2013-10-20,2013-10-20,2013-10-21,0,1,894,0,0,0\r\n3704,gina leon,gina,leon,2013-01-03,Female,1978-03-01,38,25 - 45,Hispanic,0,1,0,0,0,0,2013-01-03 02:25:14,2013-01-03 06:46:16,13000121CF10A,2013-01-03,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2013-01-03,2013-01-03,0,0,1184,0,0,0\r\n3705,byron calhoun,byron,calhoun,2014-02-11,Male,1940-07-23,75,Greater than 45,Caucasian,0,1,0,0,2,,,,13078801TC20A,2013-12-15,,58,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-11,Risk of Violence,1,Low,2014-02-11,,,2,0,780,0,0,0\r\n3706,keisha grant,keisha,grant,2013-04-09,Female,1976-11-01,39,25 - 45,African-American,0,1,0,0,1,-1,2013-04-08 08:24:50,2013-04-09 02:11:07,12000242CF10A,,2013-04-09,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-09,Risk of Violence,1,Low,2013-04-09,2013-04-08,2013-04-09,1,0,1088,0,0,0\r\n3708,katt mcnish,katt,mcnish,2013-05-12,Female,1976-05-14,39,25 - 45,Caucasian,0,-1,0,0,0,-1,2013-05-11 05:10:47,2013-05-12 05:55:20,13009096MM10A,2013-05-11,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,-1,N/A,2013-05-12,Risk of Violence,1,Low,2013-05-12,2013-05-11,2013-05-12,0,0,1055,0,0,0\r\n3709,tesa edwards,tesa,edwards,2013-04-14,Female,1977-11-17,38,25 - 45,African-American,0,1,0,0,0,-1,2013-04-13 02:34:02,2013-04-17 11:11:49,13005334CF10A,,2013-04-13,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-14,Risk of Violence,1,Low,2013-04-14,2013-04-13,2013-04-17,0,3,1083,0,0,0\r\n3712,john mathis,john,mathis,2013-03-05,Male,1962-08-31,53,Greater than 45,African-American,0,1,0,0,2,,,,05014965CF10A,,2008-10-21,1596,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-05,Risk of Violence,1,Low,2013-03-05,,,2,0,1123,0,0,0\r\n3714,allatia hogan,allatia,hogan,2013-04-05,Male,1963-01-20,53,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-04-04 11:14:20,2013-04-05 09:47:00,13006497MM10A,2013-04-04,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-05,Risk of Violence,1,Low,2013-04-05,2013-04-04,2013-04-05,1,0,1092,0,0,0\r\n3716,jeffrey jackson,jeffrey,jackson,2013-05-02,Male,1962-09-08,53,Greater than 45,African-American,0,7,0,0,4,,,,12005643CF10A,2012-04-16,,381,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-02,Risk of Violence,1,Low,2013-05-02,,,4,0,1065,0,0,0\r\n3719,marvin robins,marvin,robins,2013-01-30,Male,1993-02-13,23,Less than 25,African-American,0,9,1,0,2,-1,2013-01-29 05:48:24,2013-04-16 01:26:37,13001446CF10A,2013-01-29,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-30,Risk of Violence,9,High,2013-01-30,2013-01-29,2013-04-16,2,76,1157,0,0,0\r\n3721,tania quaknine,tania,quaknine,2013-10-10,Female,1951-07-21,64,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-10-09 04:50:03,2013-10-10 09:49:38,13014150CF10A,,2013-10-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-10,Risk of Violence,1,Low,2013-10-10,2013-10-09,2013-10-10,1,0,904,0,0,0\r\n3724,patricio guillen,patricio,guillen,2013-01-07,Male,1977-06-25,38,25 - 45,Hispanic,0,1,0,0,1,,,,12020597MM10A,2012-10-05,,94,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-07,Risk of Violence,1,Low,2013-01-07,,,1,0,1180,0,0,0\r\n3726,norma villalobos,norma,villalobos,2014-03-03,Female,1975-02-08,41,25 - 45,Hispanic,0,1,0,0,0,0,2014-03-03 02:43:25,2014-03-03 05:22:22,14003002CF10A,2014-03-02,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-03,2014-03-03,0,0,760,0,0,0\r\n3728,nikson suffrin,nikson,suffrin,2013-09-03,Male,1962-10-12,53,Greater than 45,Other,0,1,0,0,0,0,2013-09-03 03:51:17,2013-09-03 09:08:08,13016861MM10A,2013-09-03,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-03,Risk of Violence,1,Low,2013-09-03,2013-09-03,2013-09-03,0,0,941,0,0,0\r\n3729,enrick williams,enrick,williams,2013-12-01,Male,1982-02-12,34,25 - 45,African-American,0,1,0,0,0,-1,2013-11-30 04:17:12,2013-12-02 11:39:59,13016610CF10A,2013-11-30,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-01,Risk of Violence,1,Low,2013-12-01,2013-11-30,2013-12-02,0,1,852,0,0,0\r\n3732,christopher shuman,christopher,shuman,2013-09-09,Male,1990-02-23,26,25 - 45,African-American,0,1,0,0,1,-1,2013-09-08 08:06:42,2013-10-10 10:15:22,13012693CF10A,2013-09-08,,1,M,Criminal Mischief Damage <$200,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-09,Risk of Violence,2,Low,2013-09-09,2013-09-08,2013-10-10,1,31,935,0,0,0\r\n3736,fidel novoa,fidel,novoa,2013-08-01,Male,1971-06-22,44,25 - 45,Caucasian,0,2,0,0,4,-1,2013-07-31 07:09:10,2013-08-02 04:53:29,13010702CF10A,2013-07-31,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-01,Risk of Violence,3,Low,2013-08-01,2013-12-17,2013-12-20,4,1,138,0,0,0\r\n3737,phylichia maggie,phylichia,maggie,2014-02-20,Female,1988-05-09,27,25 - 45,Caucasian,0,2,0,0,0,0,2014-02-20 02:52:25,2014-02-25 06:09:33,14002431CF10A,2014-02-19,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-20,Risk of Violence,2,Low,2014-02-20,2014-02-20,2014-02-25,0,5,771,0,0,0\r\n3738,brandon hare,brandon,hare,2013-12-31,Male,1987-09-06,28,25 - 45,Caucasian,0,9,0,0,14,-1,2013-12-30 11:05:49,2013-12-31 07:56:01,13017995CF10A,2013-12-30,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-12-31,Risk of Violence,3,Low,2013-12-31,2013-12-30,2013-12-31,14,0,822,0,0,0\r\n3739,jorge vega,jorge,vega,2013-11-21,Male,1960-07-27,55,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-11-20 08:04:03,2013-11-21 08:17:32,13021839MM10A,2013-11-20,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-21,Risk of Violence,1,Low,2013-11-21,2013-11-20,2013-11-21,1,0,862,0,0,0\r\n3740,nadjeda delva,nadjeda,delva,2013-12-23,Female,1993-11-26,22,Less than 25,African-American,0,4,0,0,2,-60,2013-10-24 03:13:54,2013-12-23 02:23:51,13014862CF10A,,2013-10-24,60,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-23,Risk of Violence,5,Medium,2013-12-23,2013-10-24,2013-12-23,2,0,830,0,0,0\r\n3741,sean fleming,sean,fleming,2014-01-07,Male,1980-03-30,36,25 - 45,African-American,0,5,0,0,15,-1,2014-01-06 11:23:46,2014-01-08 08:09:38,12011657CF10A,,2014-01-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-07,Risk of Violence,1,Low,2014-01-07,2014-04-11,2014-04-22,15,1,94,0,0,0\r\n3743,lawrence gaston,lawrence,gaston,2013-08-26,Male,1993-04-08,23,Less than 25,African-American,0,4,0,0,1,-1,2013-08-25 07:36:07,2013-08-26 07:55:05,13002091CF10A,,2013-08-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-26,Risk of Violence,6,Medium,2013-08-26,2013-10-26,2013-10-29,1,0,61,0,0,0\r\n3744,franklin rouse,franklin,rouse,2013-01-03,Male,1959-09-15,56,Greater than 45,African-American,0,1,0,0,1,0,2013-01-03 01:16:58,2013-01-03 01:37:26,13000175MM10A,2013-01-02,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2013-01-03,2013-01-03,1,0,1184,0,0,0\r\n3747,angel santiago,angel,santiago,2013-05-26,Male,1978-04-27,37,25 - 45,Caucasian,0,6,0,0,1,-1,2013-05-25 05:53:02,2013-05-26 08:34:47,13010080MM10A,2013-05-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-26,Risk of Violence,4,Low,2013-05-26,2013-05-25,2013-05-26,1,0,1041,0,0,0\r\n3758,dexter haynes,dexter,haynes,2014-02-27,Male,1970-05-23,45,Greater than 45,African-American,0,2,0,0,3,0,2014-02-27 09:17:50,2014-03-01 04:32:54,14003495MM10A,2014-02-27,,0,M,Viol Pretrial Release Dom Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-27,Risk of Violence,2,Low,2014-02-27,2014-02-27,2014-03-01,3,2,764,0,0,0\r\n3759,janice demps,janice,demps,2013-01-29,Female,1984-09-29,31,25 - 45,African-American,0,8,0,0,14,-1,2013-01-28 12:24:29,2013-01-30 07:55:23,13001368CF10A,2013-01-28,,1,F,Aggravated Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-29,Risk of Violence,8,High,2013-01-29,2013-02-05,2013-03-01,14,1,7,0,0,0\r\n3761,richard haynes,richard,haynes,2014-03-08,Male,1973-09-22,42,25 - 45,African-American,0,5,0,0,7,-1,2014-03-07 11:33:05,2014-03-09 09:14:28,14003251CF10A,2014-03-07,,1,F,Felony Battery (Dom Strang),1,14014314CF10A,(M1),70,2014-09-15,Viol Pretrial Release Dom Viol,2014-11-24,2014-11-28,,1,14014314CF10A,(F3),2014-09-15,Felony Battery w/Prior Convict,Risk of Recidivism,5,Medium,2014-03-08,Risk of Violence,1,Low,2014-03-08,2014-03-07,2014-03-09,7,1,191,1,1,1\r\n3768,natacha cherenfant,natacha,cherenfant,2013-01-02,Female,1980-03-01,36,25 - 45,African-American,0,1,0,0,1,0,2013-01-02 12:43:11,2013-01-02 01:12:11,13000055MM10A,2013-01-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-02,Risk of Violence,1,Low,2013-01-02,2013-01-02,2013-01-02,1,0,1185,0,0,0\r\n3769,gregory tauber,gregory,tauber,2013-01-24,Male,1961-10-31,54,Greater than 45,Caucasian,0,1,0,0,0,0,2013-01-24 02:06:19,2013-01-24 07:10:20,13001702MM10A,2013-01-24,,0,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-24,Risk of Violence,1,Low,2013-01-24,2013-01-24,2013-01-24,0,0,1163,0,0,0\r\n3773,henry perez-betancur,henry,perez-betancur,2013-08-23,Male,1992-08-21,23,Less than 25,Hispanic,0,7,0,0,0,-1,2013-08-22 07:07:54,2013-08-23 10:48:29,13016030MM10A,2013-08-22,,1,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-23,Risk of Violence,5,Medium,2013-08-23,2013-08-22,2013-08-23,0,0,952,0,0,0\r\n3774,stuart rubin,stuart,rubin,2013-05-31,Male,1954-10-24,61,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-31 03:36:36,2013-05-31 08:16:20,13010483MM10A,2013-05-31,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-31,Risk of Violence,1,Low,2013-05-31,2013-05-31,2013-05-31,0,0,1036,0,0,0\r\n3776,lisset llauro,lisset,llauro,2013-09-17,Female,1974-01-13,42,25 - 45,Caucasian,0,1,0,0,0,-1,2013-09-16 06:13:55,2013-09-17 01:54:04,13017639MM10A,2013-09-16,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-17,Risk of Violence,1,Low,2013-09-17,2013-09-16,2013-09-17,0,0,927,0,0,0\r\n3779,lenworth litherland,lenworth,litherland,2014-03-19,Male,1988-10-26,27,25 - 45,African-American,0,5,0,0,1,-1,2014-03-18 07:44:35,2014-03-20 12:10:34,14003802CF10A,2014-03-18,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-19,Risk of Violence,3,Low,2014-03-19,2014-03-18,2014-03-20,1,1,744,0,0,0\r\n3780,joshua doyle,joshua,doyle,2013-03-04,Male,1991-11-01,24,Less than 25,Caucasian,0,3,0,0,2,-18,2013-02-14 08:04:32,2013-03-01 08:19:07,13003251MM10A,2013-02-14,,18,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-04,Risk of Violence,5,Medium,2013-03-04,2013-02-14,2013-03-01,2,0,1124,0,0,0\r\n3781,raymond wallace,raymond,wallace,2014-02-07,Male,1982-11-27,33,25 - 45,African-American,0,5,0,0,14,-59,2013-12-10 01:15:13,2013-12-10 01:29:23,13017016CF10A,2013-12-09,,60,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-07,Risk of Violence,2,Low,2014-02-07,2013-12-10,2013-12-10,14,0,784,0,0,0\r\n3783,carlos montalvo,carlos,montalvo,2013-11-01,Male,1977-10-12,38,25 - 45,Caucasian,0,1,0,0,0,-7,2013-10-25 02:52:06,2013-11-01 10:33:01,13016097CF10A,2013-10-25,,7,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-01,Risk of Violence,1,Low,2013-11-01,2013-10-25,2013-11-01,0,0,882,0,0,0\r\n3785,christian hernandez,christian,hernandez,2013-01-23,Male,1994-08-05,21,Less than 25,Caucasian,0,3,1,1,1,-1,2013-01-22 11:18:53,2013-01-23 07:03:36,13001503MM10A,2013-01-22,,1,M,Unl/Disturb Education/Instui,1,16002824CF10A,(F3),0,2016-03-04,,2016-03-04,2016-03-04,,0,,,,,Risk of Recidivism,3,Low,2013-01-23,Risk of Violence,6,Medium,2013-01-23,2016-03-04,2016-03-04,1,0,1136,0,0,0\r\n3788,derec lamons,derec,lamons,2013-08-23,Male,1976-10-15,39,25 - 45,Caucasian,0,4,0,0,0,-1,2013-08-22 12:52:57,2013-08-22 07:49:32,13011815CF10A,2013-08-21,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-23,Risk of Violence,1,Low,2013-08-23,2013-08-22,2013-08-22,0,0,952,0,0,0\r\n3789,alexander smith,alexander,smith,2013-03-21,Male,1986-09-28,29,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-20 07:49:16,2013-03-21 11:28:05,13004036CF10A,2013-03-20,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,2,Low,2013-03-21,2013-10-10,2013-10-12,0,0,203,0,0,0\r\n3790,evan mcgrath,evan,mcgrath,2013-08-19,Male,1986-09-03,29,25 - 45,Caucasian,0,3,0,0,1,-2,2013-08-17 11:18:48,2013-08-18 02:02:42,13011560CF10A,2013-08-17,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-19,Risk of Violence,4,Low,2013-08-19,2013-08-17,2013-08-18,1,0,956,0,0,0\r\n3792,dale gross,dale,gross,2013-10-01,Male,1950-12-21,65,Greater than 45,Caucasian,0,4,0,0,6,-61,2013-08-01 09:47:30,2013-09-25 03:19:43,13010776CF10A,,2013-08-27,35,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2015-11-13,2015-12-06,6,0,773,0,0,0\r\n3797,robert reed,robert,reed,2013-05-19,Male,1972-02-17,44,25 - 45,African-American,1,6,0,0,7,-1,2013-05-18 04:20:47,2013-06-11 09:20:26,13007108CF10A,2013-05-18,,1,F,Poss of Cocaine W/I/D/S 1000FT Park,1,16000964CF10A,(F3),1,2016-01-22,,2016-01-23,2016-01-23,,0,,,,,Risk of Recidivism,6,Medium,2013-05-19,Risk of Violence,4,Low,2013-05-19,2013-05-18,2013-06-11,7,23,978,1,0,0\r\n3799,mckenzie alcime,mckenzie,alcime,2013-01-07,Male,1988-08-23,27,25 - 45,African-American,0,2,0,0,0,-1,2013-01-06 10:11:15,2013-01-08 05:20:20,13000581TC10A,2013-01-06,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-07,Risk of Violence,2,Low,2013-01-07,2013-01-06,2013-01-08,0,1,1180,0,0,0\r\n3800,asim hamin,asim,hamin,2013-03-09,Male,1988-10-05,27,25 - 45,African-American,0,7,0,0,8,-1,2013-03-08 01:58:58,2013-04-26 07:01:57,13003448CF10A,2013-03-08,,1,F,Felony Battery (Dom Strang),1,13047821TC10A,(M1),0,2013-12-13,Opert With Susp DL 2nd Offens,2013-12-13,2013-12-18,,1,14003856CF10A,(F3),2014-03-19,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2013-03-09,Risk of Violence,8,High,2013-03-09,2013-12-13,2013-12-18,8,48,279,1,1,1\r\n3801,michael szerkins,michael,szerkins,2013-05-13,Male,1954-12-01,61,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-13 03:50:59,2013-05-15 09:15:24,13009243MM10A,2013-05-13,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-13,2013-05-15,0,2,1054,0,0,0\r\n3804,ryan wisdom,ryan,wisdom,2013-11-26,Male,1988-07-31,27,25 - 45,African-American,0,1,0,0,1,-1,2013-11-25 12:24:22,2013-11-26 08:18:25,13022177MM10A,2013-11-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-26,Risk of Violence,2,Low,2013-11-26,2013-11-25,2013-11-26,1,0,857,0,0,0\r\n3809,samuel giard,samuel,giard,2014-09-14,Male,1989-05-10,26,25 - 45,Caucasian,0,4,0,0,9,0,2014-09-14 01:12:37,2014-09-15 07:09:10,14062113NI40A,2014-09-14,,0,M,Violation Of Boater Safety Id,1,15010270TC40A,(M2),,2015-02-04,Driving License Suspended,,,,1,15010748MM10A,(M1),2015-08-03,Battery,Risk of Recidivism,4,Low,2014-09-14,Risk of Violence,3,Low,2014-09-14,2014-09-14,2014-09-15,9,1,143,1,1,1\r\n3814,eddie johnson,eddie,johnson,2013-04-03,Male,1990-10-11,25,25 - 45,African-American,0,4,0,0,2,-23,2013-03-11 01:09:41,2013-03-29 10:21:52,11000274CF10A,,2013-03-11,23,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-03,Risk of Violence,4,Low,2013-04-03,2014-05-13,2015-01-15,2,0,405,0,0,0\r\n3816,adeler filossaint,adeler,filossaint,2013-02-11,Male,1992-11-18,23,Less than 25,Other,0,10,0,0,5,-1,2013-02-10 06:01:35,2013-03-14 09:11:16,13002930MM10A,2013-02-10,,1,M,Resist/Obstruct W/O Violence,1,14000890MM10A,(M1),0,2014-01-17,Battery,2014-01-17,2014-03-01,,1,14000890MM10A,(M1),2014-01-17,Battery,Risk of Recidivism,10,High,2013-02-11,Risk of Violence,9,High,2013-02-11,2014-01-17,2014-03-01,5,31,340,1,1,1\r\n3818,ike black,ike,black,2013-02-07,Male,1992-08-21,23,Less than 25,African-American,0,4,0,0,1,0,2013-02-07 12:42:48,2013-02-10 04:25:55,13005772TC10A,2013-02-06,,1,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-07,Risk of Violence,6,Medium,2013-02-07,2013-02-07,2013-02-10,1,3,1149,0,0,0\r\n3820,david pennant,david,pennant,2013-03-24,Male,1986-03-19,30,25 - 45,Other,0,1,1,1,3,-1,2013-03-23 08:35:07,2013-03-24 07:23:39,13005730MM10A,2013-03-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-24,Risk of Violence,1,Low,2013-03-24,2013-03-23,2013-03-24,3,0,1104,0,0,0\r\n3821,tangela jones,tangela,jones,2013-05-03,Female,1970-09-05,45,Greater than 45,African-American,0,3,0,0,2,-1,2013-05-02 07:08:13,2013-05-14 06:04:00,13006300CF10A,2013-05-02,,1,F,False Motor Veh Insurance Card,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-03,Risk of Violence,1,Low,2013-05-03,2014-09-24,2014-09-30,2,11,509,0,0,0\r\n3830,natasha daniels,natasha,daniels,2013-12-08,Female,1989-07-07,26,25 - 45,African-American,0,2,0,0,0,-1,2013-12-07 10:51:37,2013-12-08 03:56:34,13022666MM10A,2013-12-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-08,Risk of Violence,2,Low,2013-12-08,2013-12-07,2013-12-08,0,0,845,0,0,0\r\n3831,kameron koepke,kameron,koepke,2013-03-22,Male,1994-10-27,21,Less than 25,Caucasian,0,8,0,0,0,-1,2013-03-21 03:09:22,2013-03-28 07:17:08,13004094CF10A,,2013-03-21,1,F,arrest case no charge,1,14003224CF10A,(F3),118,2014-01-01,Felony Batt(Great Bodily Harm),2014-04-29,2014-07-24,,1,14003224CF10A,(F3),2014-01-01,Felony Batt(Great Bodily Harm),Risk of Recidivism,8,High,2013-03-22,Risk of Violence,7,Medium,2013-03-22,2013-03-21,2013-03-28,0,6,285,1,1,1\r\n3834,miguel ocasio,miguel,ocasio,2013-06-13,Male,1952-08-16,63,Greater than 45,African-American,0,6,0,0,1,,,,12009681CF10A,2012-07-01,,347,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-06-13,Risk of Violence,2,Low,2013-06-13,,,1,0,1023,0,0,0\r\n3835,mary watson,mary,watson,2013-09-20,Female,1953-07-28,62,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-09-19 11:42:41,2013-09-23 09:16:00,13042937TC10A,2013-09-19,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-09-19,2013-09-23,0,3,924,0,0,0\r\n3836,stephen parsons,stephen,parsons,2013-12-16,Male,1968-01-21,48,Greater than 45,Caucasian,0,3,0,0,0,-1,2013-12-15 03:12:29,2014-01-11 05:31:30,13017331CF10A,2013-12-15,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-16,Risk of Violence,2,Low,2013-12-16,2013-12-15,2014-01-11,0,26,837,0,0,0\r\n3838,clearence jenkins,clearence,jenkins,2013-03-20,Male,1963-03-17,53,Greater than 45,African-American,0,1,0,0,1,-1,2013-03-19 09:19:48,2013-03-20 07:46:30,12026002MM10A,2012-12-20,,90,M,DWLS Susp/Cancel Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-03-19,2013-03-20,1,0,1108,0,0,0\r\n3840,kenneth sewell,kenneth,sewell,2013-01-06,Male,1987-12-21,28,25 - 45,African-American,1,10,1,0,5,-1,2013-01-05 09:01:27,2013-05-22 06:02:36,13000201CF10A,2013-01-05,,1,F,Aggrav Stalking After Injunctn,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-06,Risk of Violence,10,High,2013-01-06,2013-01-05,2013-05-22,5,136,1181,0,0,0\r\n3841,michael digiulio,michael,digiulio,2013-11-03,Male,1960-01-29,56,Greater than 45,Caucasian,0,2,0,0,1,0,2013-11-03 04:56:58,2013-11-04 08:10:50,13015318CF10A,2013-11-03,,0,F,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-03,Risk of Violence,1,Low,2013-11-03,2013-11-03,2013-11-04,1,1,880,0,0,0\r\n3842,emilio colon,emilio,colon,2013-12-13,Male,1981-03-18,35,25 - 45,Hispanic,0,1,0,0,2,-8,2013-12-05 08:08:18,2013-12-13 11:03:04,13016991CF10A,,2013-12-05,8,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-13,Risk of Violence,1,Low,2013-12-13,2013-12-05,2013-12-13,2,0,840,0,0,0\r\n3853,jerry grant,jerry,grant,2013-05-09,Male,1981-02-03,35,25 - 45,African-American,0,5,0,0,4,0,2013-05-09 02:12:42,2013-05-10 12:01:27,12058957TC10A,2012-12-01,,159,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-09,Risk of Violence,6,Medium,2013-05-09,2014-08-30,2014-09-09,4,1,478,0,0,0\r\n3855,edward schuster,edward,schuster,2013-03-27,Male,1955-06-29,60,Greater than 45,Caucasian,0,1,0,0,3,,,,13000497TC10A,2012-12-15,,102,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-27,Risk of Violence,1,Low,2013-03-27,,,3,0,1101,0,0,0\r\n3856,sarrah pierre,sarrah,pierre,2013-04-17,Female,1979-03-13,37,25 - 45,African-American,1,3,0,0,7,-1,2013-04-16 07:54:08,2013-04-18 05:56:28,13005446CF10A,2013-04-16,,1,F,Deliver Cocaine 1000FT Store,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,1,Low,2013-04-17,2013-04-16,2013-04-18,7,1,1080,0,0,0\r\n3857,tanesha mcintyre,tanesha,mcintyre,2013-08-27,Female,1984-02-10,32,25 - 45,African-American,0,2,0,0,0,0,2013-08-27 05:00:17,2013-08-27 06:54:07,13012108CF10A,2013-08-26,,1,F,Uttering Forged Bills,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,2013-08-27,2013-08-27,0,0,948,0,0,0\r\n3860,john vansteenkiste,john,vansteenkiste,2013-01-13,Male,1962-08-11,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-12 11:41:12,2013-01-13 12:56:59,13000762MM10A,2013-01-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0,0\r\n3862,brandon emmert,brandon,emmert,2014-01-10,Male,1983-10-11,32,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-09 09:03:15,2014-01-10 01:14:04,14000417MM10A,2014-01-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-10,Risk of Violence,1,Low,2014-01-10,2014-01-09,2014-01-10,0,0,812,0,0,0\r\n3863,jules canuet,jules,canuet,2013-01-02,Male,1989-10-17,26,25 - 45,Caucasian,0,2,0,0,0,-1,2013-01-01 05:21:55,2013-01-02 01:16:14,13000035MM10A,2013-01-01,,1,M,Criminal Mischief Damage <$200,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-02,Risk of Violence,3,Low,2013-01-02,2013-01-01,2013-01-02,0,0,1185,0,0,0\r\n3864,randy munoz,randy,munoz,2014-03-31,Male,1955-03-29,61,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-30 03:50:52,2014-04-01 04:11:15,14012364MU10A,2014-03-30,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-30,2014-04-01,0,1,732,0,0,0\r\n3865,dave pascal,dave,pascal,2014-02-17,Male,1995-03-21,21,Less than 25,African-American,0,10,0,0,0,-1,2014-02-16 03:54:36,2014-02-17 01:12:04,14002687MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-02-17,Risk of Violence,7,Medium,2014-02-17,2014-02-16,2014-02-17,0,0,774,0,0,0\r\n3867,perry mcqueen,perry,mcqueen,2014-02-06,Male,1947-03-26,69,Greater than 45,African-American,0,5,0,0,22,-1,2014-02-05 05:31:46,2014-02-06 09:10:18,14002029MM10A,2014-02-05,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-06,Risk of Violence,4,Low,2014-02-06,2014-02-05,2014-02-06,22,0,785,0,0,0\r\n3869,jovelton joseph,jovelton,joseph,2013-09-23,Male,1989-10-19,26,25 - 45,African-American,0,4,0,0,0,0,2013-09-23 06:12:00,2013-09-23 08:25:00,13018163MM10A,2013-09-23,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-23,Risk of Violence,4,Low,2013-09-23,2013-09-23,2013-09-23,0,0,921,0,0,0\r\n3870,glenn shelton,glenn,shelton,2014-11-05,Male,1985-12-17,30,25 - 45,African-American,0,10,0,0,9,-1,2014-11-04 08:54:31,2015-05-19 11:36:21,14015489CF10A,2014-11-05,,0,F,Poss of Firearm by Convic Felo,1,15012961CF10A,(F3),,2015-10-07,Threat Public Servant,,,,1,15012961CF10A,(F3),2015-10-07,Threat Public Servant,Risk of Recidivism,10,High,2014-11-05,Risk of Violence,7,Medium,2014-11-05,2015-08-26,2015-08-29,9,195,294,0,1,1\r\n3872,christopher akel,christopher,akel,2014-02-25,Male,1994-05-24,21,Less than 25,Caucasian,0,4,0,0,1,-5,2014-02-20 10:39:19,2014-02-21 08:22:00,13007144CF10A,,2014-02-20,5,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-25,Risk of Violence,5,Medium,2014-02-25,2015-03-09,2015-03-16,1,0,377,0,0,0\r\n3879,joseph sessa,joseph,sessa,2014-01-08,Male,1975-01-18,41,25 - 45,Caucasian,0,2,0,0,0,0,2014-01-08 01:08:31,2014-01-08 09:45:35,14001011MU10A,2014-01-07,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,1,Low,2014-01-08,2014-01-08,2014-01-08,0,0,814,0,0,0\r\n3882,joseph kimball,joseph,kimball,2013-09-18,Male,1993-09-27,22,Less than 25,Caucasian,0,3,0,0,0,-2,2013-09-16 07:14:35,2013-09-17 07:20:32,13013075CF10A,2013-09-16,,2,F,Aggravated Battery On 65/Older,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-18,Risk of Violence,5,Medium,2013-09-18,2013-09-16,2013-09-17,0,0,926,0,0,0\r\n3884,todd livingston,todd,livingston,2013-09-06,Female,1961-05-18,54,Greater than 45,Caucasian,0,3,0,0,0,0,2013-09-06 02:07:01,2013-09-26 10:18:23,13012610CF10A,2013-09-05,,1,F,Agg Battery Grt/Bod/Harm,1,14048970TC20A,(M2),,2014-07-01,Driving License Suspended,,,,1,14017830MM10A,(M1),2014-12-18,Battery,Risk of Recidivism,3,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-06,2013-09-26,0,20,298,1,1,1\r\n3885,richard espinoza,richard,espinoza,2014-09-15,Male,1965-10-19,50,Greater than 45,Caucasian,0,1,0,0,2,-1,2014-09-14 06:27:22,2014-09-15 01:04:02,14013688MM10A,2014-09-14,,1,M,Battery,1,15012781MM10A,(M1),0,2015-12-10,Battery,2015-12-10,2015-12-11,,1,15012781MM10A,(M1),2015-12-10,Battery,Risk of Recidivism,1,Low,2014-09-15,Risk of Violence,1,Low,2014-09-15,2015-12-10,2015-12-11,2,0,451,1,1,1\r\n3888,linda jackson,linda,jackson,2013-01-25,Female,1965-08-30,50,Greater than 45,African-American,0,2,0,0,5,,,,08020765CF10A,,2012-07-27,182,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-25,Risk of Violence,1,Low,2013-01-25,,,5,0,1162,0,0,0\r\n3890,orville forrest,orville,forrest,2013-10-22,Male,1978-08-21,37,25 - 45,Other,2,3,0,0,11,-1,2013-10-21 09:53:38,2013-10-22 11:18:14,13014700CF10A,2013-10-21,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-21,2013-10-22,11,0,892,0,0,0\r\n3898,robert smitley,robert,smitley,2013-06-04,Male,1963-03-09,53,Greater than 45,Caucasian,0,1,0,0,2,-32,2013-05-03 04:03:18,2013-05-20 10:27:12,13006363CF10A,2013-05-03,,32,F,Possess/Use Weapon 1 Deg Felon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-04,Risk of Violence,1,Low,2013-06-04,2014-06-24,2014-06-26,2,0,385,0,0,0\r\n3902,george esteves,george,esteves,2014-01-02,Male,1989-09-28,26,25 - 45,Caucasian,0,4,0,0,5,0,2014-01-02 05:35:15,2014-01-02 08:43:04,14000274MU10A,2014-01-02,,0,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-02,Risk of Violence,4,Low,2014-01-02,2014-01-30,2014-01-31,5,0,28,0,0,0\r\n3904,linda hadley,linda,hadley,2013-02-04,Female,1957-02-02,59,Greater than 45,African-American,0,2,0,0,0,-1,2013-02-03 08:59:23,2013-02-04 08:01:44,13002444MM10A,2013-02-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-02-03,2013-02-04,0,0,1152,0,0,0\r\n3907,nelson valle,nelson,valle,2013-02-25,Male,1949-04-13,67,Greater than 45,Hispanic,0,1,0,0,0,-3,2013-02-22 12:31:22,2013-02-23 04:33:50,13002677CF10A,2013-02-21,,4,F,Solicitation On Felony 3 Deg,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,1,Low,2013-02-25,2013-02-22,2013-02-23,0,0,1131,0,0,0\r\n3911,rafael lopez,rafael,lopez,2013-09-23,Male,1971-03-27,45,Greater than 45,Hispanic,0,6,0,0,8,-1,2013-09-22 06:06:07,2013-09-23 08:07:27,13013341CF10A,2013-09-22,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-23,Risk of Violence,3,Low,2013-09-23,2015-03-26,2015-05-11,8,0,549,0,0,0\r\n3912,thomas rousseau,thomas,rousseau,2013-01-14,Male,1981-02-11,35,25 - 45,Caucasian,0,2,0,0,4,,,,12043635TC10A,2012-07-31,,167,M,Fail Obey Driv Lic Restrictions,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,4,Low,2013-01-14,,,4,0,1173,0,0,0\r\n3917,desmond elliott,desmond,elliott,2013-01-15,Male,1993-08-07,22,Less than 25,African-American,0,3,0,1,0,0,2013-01-15 12:31:43,2013-01-15 01:17:47,13000631CF10A,2013-01-14,,1,F,Carjacking w/o Deadly Weapon,1,15013928CF10A,(F3),,2015-10-25,Possession of Cannabis,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-15,Risk of Violence,6,Medium,2013-01-15,2015-01-19,2015-07-30,0,0,734,0,0,0\r\n3920,ovento saintval,ovento,saintval,2013-04-30,Male,1989-03-03,27,25 - 45,Other,0,5,0,0,0,-1,2013-04-29 03:55:56,2013-05-01 03:19:29,13008305MM10A,2013-04-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-30,Risk of Violence,3,Low,2013-04-30,2013-04-29,2013-05-01,0,1,1067,0,0,0\r\n3924,theona alleyne,theona,alleyne,2013-01-03,Female,1979-01-12,37,25 - 45,African-American,0,6,0,0,13,-1,2013-01-02 10:03:55,2013-01-04 01:05:33,13000091CF10A,2013-01-02,,1,F,Felony Driving While Lic Suspd,1,15007257CF10A,(F3),0,2015-06-03,Grand Theft in the 3rd Degree,2015-06-03,2015-06-04,,0,,,,,Risk of Recidivism,6,Medium,2013-01-03,Risk of Violence,3,Low,2013-01-03,2015-06-03,2015-06-04,13,1,881,1,0,0\r\n3930,roberto serrano,roberto,serrano,2013-02-23,Male,1970-06-14,45,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-02-22 12:35:53,2013-02-23 08:32:59,11008987MM10A,,2013-02-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-23,2,0,1133,0,0,0\r\n3934,christopher johnston,christopher,johnston,2013-01-27,Male,1964-03-02,52,Greater than 45,African-American,0,5,0,0,7,-1,2013-01-26 11:27:48,2013-07-27 05:42:20,13001272CF10A,2013-01-26,,1,F,Felony Petit Theft,1,15009989CF10A,(M1),1,2015-08-02,Trespass Other Struct/Conve,2015-08-03,2015-09-04,,0,,,,,Risk of Recidivism,5,Medium,2013-01-27,Risk of Violence,1,Low,2013-01-27,2014-03-09,2014-03-11,7,181,406,0,0,0\r\n3935,alexandria smith,alexandria,smith,2013-08-25,Female,1995-04-07,21,Less than 25,African-American,0,6,0,0,0,-1,2013-08-24 08:03:44,2013-08-25 08:34:40,13011944CF10A,2013-08-24,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-25,Risk of Violence,8,High,2013-08-25,2013-08-24,2013-08-25,0,0,950,0,0,0\r\n3938,marcus tanner,marcus,tanner,2013-01-25,Male,1982-11-05,33,25 - 45,Caucasian,0,6,0,0,3,-1,2013-01-24 03:35:01,2013-01-25 08:05:03,13000805CF10A,,2013-01-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-25,Risk of Violence,6,Medium,2013-01-25,2013-01-24,2013-01-25,3,0,1162,0,0,0\r\n3939,jamar terry,jamar,terry,2013-04-25,Male,1989-08-30,26,25 - 45,African-American,1,10,0,0,3,-1,2013-04-24 07:41:36,2013-04-28 04:07:36,13006853CF10A,2013-04-24,,1,F,Felony Battery w/Prior Convict,1,14000865MM30A,(M1),74,2014-05-16,Possess Cannabis/20 Grams Or Less,2014-07-29,2014-07-30,,1,14017051CF10A,(F3),2014-12-26,Child Abuse,Risk of Recidivism,10,High,2013-04-25,Risk of Violence,9,High,2013-04-25,2013-04-24,2013-04-28,3,3,386,1,1,1\r\n3941,daniel asdot,daniel,asdot,2014-01-06,Male,1978-12-28,37,25 - 45,Caucasian,0,3,0,0,0,-1,2014-01-05 06:54:49,2014-01-07 03:15:44,14000193MM10A,2014-01-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-01-05,2014-01-07,0,1,816,0,0,0\r\n3947,shoaib khan,shoaib,khan,2013-09-30,Male,1975-08-13,40,25 - 45,Other,0,1,0,0,1,0,2013-09-30 02:19:47,2013-10-01 02:06:16,13013707CF10A,2013-09-30,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-30,2013-10-01,1,1,914,0,0,0\r\n3948,courtney patterson,courtney,patterson,2013-03-21,Male,1995-03-22,21,Less than 25,African-American,1,5,0,0,1,-2,2013-03-19 11:59:13,2013-03-20 09:11:13,13003020CF10A,,2013-03-19,2,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-21,Risk of Violence,7,Medium,2013-03-21,2013-03-19,2013-03-20,1,0,1107,0,0,0\r\n3952,michael gardner,michael,gardner,2013-01-28,Male,1979-04-02,37,25 - 45,Caucasian,0,4,0,0,0,-1,2013-01-27 11:03:53,2013-01-28 08:38:10,13001925MM10A,2013-01-27,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-01-28,0,0,1159,0,0,0\r\n3957,eyxnor jaramillo,eyxnor,jaramillo,2014-01-07,Male,1991-11-18,24,Less than 25,Hispanic,0,2,0,0,1,-78,2013-10-21 04:29:01,2013-10-22 05:13:16,13014721CF10A,2013-10-21,,78,M,Contribute Delinquency Of A Minor,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-07,Risk of Violence,4,Low,2014-01-07,2013-10-21,2013-10-22,1,0,815,0,0,0\r\n3958,giuseppe montalbano,giuseppe,montalbano,2013-12-25,Male,1971-04-26,44,25 - 45,Caucasian,0,1,0,0,0,-1,2013-12-24 05:58:16,2013-12-25 08:38:42,13017737CF10A,2013-12-24,,1,F,Use of Anti-Shoplifting Device,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-25,Risk of Violence,1,Low,2013-12-25,2013-12-24,2013-12-25,0,0,828,0,0,0\r\n3960,christopher kearney,christopher,kearney,2013-10-24,Male,1985-06-19,30,25 - 45,African-American,0,2,0,0,0,-1,2013-10-23 09:15:21,2013-10-24 09:33:45,13014815CF10A,2013-10-23,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-24,Risk of Violence,2,Low,2013-10-24,2013-10-23,2013-10-24,0,0,890,0,0,0\r\n3961,victor quinones,victor,quinones,2013-10-28,Male,1975-09-30,40,25 - 45,Hispanic,0,1,0,0,0,0,2013-10-28 01:12:00,2013-10-28 07:15:34,13015011CF10A,2013-10-27,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-28,Risk of Violence,1,Low,2013-10-28,2013-10-28,2013-10-28,0,0,886,0,0,0\r\n3963,john trentman,john,trentman,2014-02-19,Male,1967-03-09,49,Greater than 45,Caucasian,0,1,0,0,1,-22,2014-01-28 12:27:03,2014-01-30 08:45:35,14001192CF10A,2014-01-27,,23,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-19,Risk of Violence,1,Low,2014-02-19,2014-01-28,2014-01-30,1,0,772,0,0,0\r\n3965,edmund witkowski,edmund,witkowski,2014-01-07,Male,1948-06-07,67,Greater than 45,Caucasian,0,1,0,0,0,0,2014-01-07 04:54:59,2014-01-07 08:19:22,14001015MU10A,2014-01-07,,0,M,DUI- Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-07,Risk of Violence,1,Low,2014-01-07,2014-01-07,2014-01-07,0,0,815,0,0,0\r\n3972,barnabas miller,barnabas,miller,2013-08-26,Male,1984-07-13,31,25 - 45,Caucasian,0,7,0,0,6,-1,2013-08-25 02:54:37,2013-09-04 08:36:01,13016260MM10A,2013-08-25,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-26,Risk of Violence,3,Low,2013-08-26,2015-11-03,2020-01-01,6,9,799,0,0,0\r\n3974,ben ali,ben,ali,2013-10-10,Male,1985-07-26,30,25 - 45,African-American,0,3,0,0,7,-1,2013-10-09 06:16:32,2013-10-10 05:30:06,13014164CF10A,2013-10-09,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-10,Risk of Violence,3,Low,2013-10-10,2014-05-02,2014-06-21,7,0,204,0,0,0\r\n3975,anthony madeira,anthony,madeira,2013-12-21,Male,1988-04-15,28,25 - 45,Caucasian,0,2,0,0,1,-1,2013-12-20 11:13:53,2013-12-21 08:55:44,13023517MM10A,2013-12-20,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-21,Risk of Violence,2,Low,2013-12-21,2013-12-20,2013-12-21,1,0,832,0,0,0\r\n3977,david wilson,david,wilson,2013-12-02,Male,1960-10-21,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-01 08:17:45,2013-12-02 01:55:29,13022371MM10A,2013-12-01,,1,M,DUI- Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-02,0,0,851,0,0,0\r\n3978,cristina warman,cristina,warman,2013-01-03,Female,1992-01-19,24,Less than 25,Caucasian,0,3,0,0,1,,,,12018707CF10A,2012-12-26,,8,F,False Ownership Info/Pawn Item,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-03,Risk of Violence,4,Low,2013-01-03,,,1,0,1184,0,0,0\r\n3979,orlis deltoro,orlis,deltoro,2013-02-11,Male,1973-11-10,42,25 - 45,Caucasian,0,3,0,0,0,-1,2013-02-10 01:50:22,2013-02-12 09:14:42,13002945MM10A,2013-02-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-10,2013-02-12,0,1,1145,0,0,0\r\n3981,james coleman,james,coleman,2014-05-22,Male,1972-10-23,43,25 - 45,African-American,0,5,0,0,4,0,2014-05-22 04:41:27,2014-05-23 03:56:30,14008273MM10A,2014-05-22,,0,M,Viol Pretrial Release Dom Viol,1,14013569MM10A,(M1),,2014-08-12,Viol Pretrial Release Dom Viol,,,,1,14014899CF10A,(F3),2014-11-06,Felony Battery (Dom Strang),Risk of Recidivism,5,Medium,2014-05-22,Risk of Violence,4,Low,2014-05-22,2014-05-22,2014-05-23,4,1,82,1,1,1\r\n3982,marleme louima,marleme,louima,2013-02-26,Male,1971-07-03,44,25 - 45,African-American,0,1,0,0,0,0,2013-02-26 03:50:14,2013-04-09 07:40:28,13002928CF10A,2013-02-26,,0,F,Aggrav Child Abuse-Causes Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-26,Risk of Violence,1,Low,2013-02-26,2013-02-26,2013-04-09,0,42,1130,0,0,0\r\n3984,david burgos,david,burgos,2013-01-24,Male,1990-06-29,25,25 - 45,Caucasian,0,7,0,0,0,256,2013-10-07 04:46:47,2013-10-08 03:10:56,13001711MM10A,2013-01-24,,0,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-24,Risk of Violence,5,Medium,2013-01-24,2013-10-07,2013-10-08,0,0,256,0,0,0\r\n3991,franco garcia,franco,garcia,2013-08-04,Male,1986-10-05,29,25 - 45,Hispanic,0,2,0,0,0,-1,2013-08-03 08:35:21,2013-08-05 04:16:09,13014644MM10A,2013-08-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-04,Risk of Violence,2,Low,2013-08-04,2013-08-03,2013-08-05,0,1,971,0,0,0\r\n3993,tony figueroa,tony,figueroa,2013-10-28,Male,1974-08-04,41,25 - 45,Hispanic,0,2,0,0,2,-132,2013-06-18 09:13:15,2013-10-25 06:02:07,13006123CF10A,,2013-06-18,132,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-28,Risk of Violence,2,Low,2013-10-28,2015-10-28,2015-11-11,2,0,730,0,0,0\r\n3994,efrain morales,efrain,morales,2014-01-06,Male,1985-03-07,31,25 - 45,Hispanic,0,5,0,0,0,-3,2014-01-03 08:06:18,2014-01-04 01:34:34,14000131MM10A,2014-01-03,,3,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-06,Risk of Violence,2,Low,2014-01-06,2014-01-03,2014-01-04,0,0,816,0,0,0\r\n3999,guiteau auguste,guiteau,auguste,2013-02-26,Male,1974-05-20,41,25 - 45,African-American,0,1,0,0,1,-1,2013-02-25 05:22:38,2013-02-27 05:48:55,13002855CF10A,2013-02-25,,1,F,Grand Theft Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-26,Risk of Violence,1,Low,2013-02-26,2013-02-25,2013-02-27,1,1,1130,0,0,0\r\n4002,jeffrey richardson,jeffrey,richardson,2013-03-09,Male,1986-12-29,29,25 - 45,African-American,0,5,0,0,0,-1,2013-03-08 03:17:45,2013-04-19 08:34:18,13004701MM10A,2013-03-08,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-09,Risk of Violence,3,Low,2013-03-09,2013-04-23,2013-05-03,0,41,45,0,0,0\r\n4003,ryan dundas,ryan,dundas,2013-05-19,Male,1989-05-02,26,25 - 45,Caucasian,0,2,0,0,0,-1,2013-05-18 11:23:09,2013-05-19 12:50:42,13009580MM10A,2013-05-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-19,Risk of Violence,3,Low,2013-05-19,2013-05-18,2013-05-19,0,0,1048,0,0,0\r\n4004,lyntina marshall,lyntina,marshall,2013-09-23,Female,1988-06-17,27,25 - 45,African-American,0,3,0,0,1,0,2013-09-23 12:15:53,2013-11-07 02:18:29,13006658CF10A,,2013-09-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-23,Risk of Violence,3,Low,2013-09-23,2013-09-23,2013-11-07,1,45,921,0,0,0\r\n4005,joseph lapoint,joseph,lapoint,2013-09-18,Male,1981-02-10,35,25 - 45,Caucasian,0,2,0,0,4,-1,2013-09-17 07:57:04,2013-10-18 09:02:20,13017723MM10A,2013-09-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-18,Risk of Violence,3,Low,2013-09-18,2013-09-17,2013-10-18,4,30,926,0,0,0\r\n4006,richard turello,richard,turello,2013-02-16,Male,1961-11-18,54,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-02-15 11:29:24,2013-02-16 01:02:04,13002373CF10A,2013-02-15,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-16,Risk of Violence,1,Low,2013-02-16,2013-05-22,2013-06-13,1,0,95,0,0,0\r\n4010,jeremiah lewis,jeremiah,lewis,2014-02-02,Male,1995-06-12,20,Less than 25,African-American,0,6,0,0,0,-1,2014-02-01 09:21:02,2014-02-02 07:48:18,14001448CF10A,2014-02-01,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-02,Risk of Violence,6,Medium,2014-02-02,2014-02-01,2014-02-02,0,0,789,0,0,0\r\n4011,christopher dunn,christopher,dunn,2013-07-08,Male,1989-02-09,27,25 - 45,Caucasian,0,6,0,0,0,-3,2013-07-05 02:10:44,2013-07-06 07:33:50,13009939CF10A,,2013-07-05,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-08,Risk of Violence,5,Medium,2013-07-08,2013-09-04,2013-09-05,0,0,58,0,0,0\r\n4012,shaquille stephens,shaquille,stephens,2013-03-22,Male,1994-07-30,21,Less than 25,African-American,0,7,0,0,1,-1,2013-03-21 06:38:57,2013-03-23 04:48:56,13004110CF10A,2013-03-21,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-22,Risk of Violence,7,Medium,2013-03-22,2013-10-09,2013-11-15,1,1,201,0,0,0\r\n4016,christopher john,christopher,john,2014-02-12,Male,1988-05-24,27,25 - 45,Caucasian,0,7,0,0,4,-42,2014-01-01 11:58:12,2014-02-12 11:17:33,14000057CF10A,2014-01-01,,42,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-12,Risk of Violence,2,Low,2014-02-12,2014-01-01,2014-02-12,4,0,779,0,0,0\r\n4018,jerome simmins,jerome,simmins,2013-04-02,Male,1961-11-22,54,Greater than 45,African-American,0,1,0,0,0,-1,2013-04-01 12:29:20,2013-04-02 12:43:55,13006256MM10A,2013-04-01,,1,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-02,Risk of Violence,1,Low,2013-04-02,2014-03-03,2014-03-12,0,0,335,0,0,0\r\n4021,derrick hepburn,derrick,hepburn,2013-06-06,Male,1977-03-19,39,25 - 45,African-American,0,1,0,0,1,-6,2013-05-31 10:13:39,2013-06-05 09:47:23,08001926CF10A,,2013-05-31,6,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-06,Risk of Violence,1,Low,2013-06-06,2013-05-31,2013-06-05,1,0,1030,0,0,0\r\n4022,kianna myers,kianna,myers,2014-02-27,Female,1993-10-10,22,Less than 25,Caucasian,0,7,1,1,2,,,,11018746CF10A,,2012-04-17,681,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-27,Risk of Violence,5,Medium,2014-02-27,,,2,0,764,0,0,0\r\n4023,hazel baptist-murillo,hazel,baptist-murillo,2013-09-17,Female,1983-02-24,33,25 - 45,Caucasian,0,1,0,0,0,-2,2013-09-15 11:15:31,2013-09-16 02:27:48,13017582MM10A,2013-09-15,,2,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-17,Risk of Violence,1,Low,2013-09-17,2013-09-15,2013-09-16,0,0,927,0,0,0\r\n4028,natasha brown,natasha,brown,2013-10-14,Female,1980-05-20,35,25 - 45,African-American,0,4,0,0,0,-1,2013-10-13 05:47:56,2013-10-14 05:04:52,13019419MM10A,2013-10-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-14,Risk of Violence,2,Low,2013-10-14,2013-10-13,2013-10-14,0,0,900,0,0,0\r\n4031,allan harris,allan,harris,2013-09-04,Male,1962-07-21,53,Greater than 45,African-American,0,1,0,0,0,-3,2013-09-01 09:05:41,2013-09-02 08:16:10,13016732MM10A,2013-09-01,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-09-01,2013-09-02,0,0,940,0,0,0\r\n4032,eric broadway,eric,broadway,2013-02-08,Male,1987-11-24,28,25 - 45,Caucasian,0,4,0,1,2,-1,2013-02-07 04:53:39,2013-02-20 07:44:08,13002766MM10A,2013-02-07,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-08,Risk of Violence,3,Low,2013-02-08,2015-01-14,2015-01-28,2,12,705,0,0,0\r\n4033,aaron gilliam,aaron,gilliam,2013-02-07,Male,1989-07-18,26,25 - 45,African-American,0,8,0,0,0,-1,2013-02-06 10:27:22,2013-02-07 08:07:33,13001859CF10A,2013-02-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-07,Risk of Violence,4,Low,2013-02-07,2013-02-06,2013-02-07,0,0,1149,0,0,0\r\n4035,ronal jean,ronal,jean,2013-04-04,Male,1985-05-15,30,25 - 45,African-American,0,3,0,0,1,1040,2016-02-08 05:28:51,2016-02-25 09:37:50,10009122CF10A,,2010-05-20,1050,F,arrest case no charge,1,16001733CF10A,(F3),0,2016-02-08,False Motor Veh Insurance Card,2016-02-08,2016-02-25,,0,,,,,Risk of Recidivism,3,Low,2013-04-04,Risk of Violence,2,Low,2013-04-04,2016-02-08,2016-02-25,1,0,1040,1,0,0\r\n4036,brandon mcneil,brandon,mcneil,2013-03-26,Male,1984-11-30,31,25 - 45,African-American,0,5,1,0,3,0,2013-03-26 03:40:52,2013-03-27 02:26:05,13004378CF10A,2013-03-26,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-26,Risk of Violence,5,Medium,2013-03-26,2013-03-26,2013-03-27,3,1,1102,0,0,0\r\n4039,jorge rodriguez,jorge,rodriguez,2014-02-07,Male,1982-11-13,33,25 - 45,Hispanic,0,4,0,0,1,0,2014-02-07 03:22:03,2014-02-07 09:16:46,14005066MU10A,2014-02-07,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-07,Risk of Violence,2,Low,2014-02-07,2014-02-07,2014-02-07,1,0,784,0,0,0\r\n4041,cedrial brown,cedrial,brown,2014-01-11,Male,1987-11-26,28,25 - 45,African-American,0,7,0,0,1,0,2014-01-11 05:21:34,2014-01-11 08:39:59,14000469CF10A,2014-01-11,,0,F,Possession of Codeine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-11,Risk of Violence,7,Medium,2014-01-11,2014-01-11,2014-01-11,1,0,811,0,0,0\r\n4047,sade kendirck,sade,kendirck,2013-10-09,Female,1993-08-07,22,Less than 25,African-American,0,6,0,0,1,,,,12008794MM10A,2012-04-29,,528,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-09,Risk of Violence,7,Medium,2013-10-09,,,1,0,905,0,0,0\r\n4049,michael poveda,michael,poveda,2014-10-13,Male,1992-09-17,23,Less than 25,Caucasian,0,6,0,4,4,0,2014-10-13 12:49:23,2014-10-13 01:44:37,14013790CF10A,2014-10-12,,1,F,Poss Pyrrolidinovalerophenone,1,15014449TC30A,(M2),,2015-02-18,Operating W/O Valid License,,,,1,15006412CF10A,(F3),2015-05-17,Battery on Law Enforc Officer,Risk of Recidivism,6,Medium,2014-10-13,Risk of Violence,4,Low,2014-10-13,2015-03-13,2015-03-18,4,0,128,1,1,1\r\n4052,lonnie childress,lonnie,childress,2013-01-05,Male,1979-10-31,36,25 - 45,African-American,0,5,0,0,6,-1,2013-01-04 03:10:09,2013-03-29 10:22:04,13000167CF10A,2013-01-04,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-05,Risk of Violence,5,Medium,2013-01-05,2013-01-04,2013-03-29,6,83,1182,0,0,0\r\n4054,james smith,james,smith,2013-03-30,Male,1994-04-16,22,Less than 25,African-American,0,3,0,0,0,-1,2013-03-29 06:04:18,2013-03-30 04:10:47,13004554CF10A,2013-03-29,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-30,Risk of Violence,5,Medium,2013-03-30,2013-03-29,2013-03-30,0,0,1098,0,0,0\r\n4058,christina crianza,christina,crianza,2013-05-23,Male,1970-08-17,45,Greater than 45,Caucasian,0,1,0,0,1,,,,11028333MM10A,2011-12-29,,511,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-23,Risk of Violence,1,Low,2013-05-23,,,1,0,1044,0,0,0\r\n4060,max metayer,max,metayer,2013-04-29,Male,1978-08-22,37,25 - 45,African-American,0,2,0,0,3,-1,2013-04-28 10:44:17,2013-04-29 06:35:59,13008180MM10A,2013-04-28,,1,M,Battery,1,15044627TC30A,(M2),,2015-06-08,Fraud Obtain/ Use Disable Permit,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-28,2013-04-29,3,0,770,1,0,0\r\n4061,bess lamb,bess,lamb,2013-01-13,Female,1964-03-09,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-12 07:04:33,2013-01-13 01:52:34,13000720MM10A,2013-01-12,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0,0\r\n4062,guillermo zuniga,guillermo,zuniga,2013-08-16,Male,1989-06-24,26,25 - 45,Caucasian,0,2,0,0,0,0,2013-08-16 06:08:42,2013-08-18 05:08:01,13011530CF10A,2013-08-16,,0,F,Aggravated Battery,1,15051974TC20A,(M2),,2015-09-17,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-16,Risk of Violence,3,Low,2013-08-16,2013-08-16,2013-08-18,0,2,762,1,0,0\r\n4064,lanette garcia,lanette,garcia,2014-03-18,Female,1983-02-03,33,25 - 45,Caucasian,0,4,0,0,2,-1,2014-03-17 09:15:29,2014-03-31 10:02:05,14003828CF10A,,2014-03-18,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-18,Risk of Violence,2,Low,2014-03-18,2014-03-17,2014-03-31,2,13,745,0,0,0\r\n4068,angela margison,angela,margison,2013-08-12,Female,1961-02-04,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-11 06:49:45,2013-08-12 09:32:58,13015173MM10A,2013-08-11,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-12,Risk of Violence,1,Low,2013-08-12,2014-05-20,2014-05-21,0,0,281,0,0,0\r\n4070,andrew pardo,andrew,pardo,2014-02-02,Male,1979-01-17,37,25 - 45,African-American,0,1,0,0,2,0,2014-02-02 09:39:48,2014-02-03 08:48:52,13043243TC10A,2013-10-04,,121,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-02,Risk of Violence,1,Low,2014-02-02,2014-02-02,2014-02-03,2,1,789,0,0,0\r\n4072,phillip jaggon,phillip,jaggon,2013-10-04,Male,1974-08-17,41,25 - 45,African-American,0,1,0,0,0,0,2013-10-04 02:06:11,2014-03-30 04:15:17,13013943CF10A,2013-10-03,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-04,Risk of Violence,1,Low,2013-10-04,2013-10-04,2014-03-30,0,177,910,0,0,0\r\n4073,andrew deabenderfer,andrew,deabenderfer,2013-03-06,Male,1989-08-14,26,25 - 45,Caucasian,0,2,0,0,0,-1,2013-03-05 09:28:44,2013-03-06 07:12:03,13004487MM10A,2013-03-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-06,Risk of Violence,3,Low,2013-03-06,2016-02-23,2016-02-23,0,0,1084,0,0,0\r\n4075,eric page,eric,page,2013-04-08,Male,1975-04-15,41,25 - 45,African-American,0,5,0,0,13,-1,2013-04-07 11:54:14,2013-04-10 05:02:21,13005012CF10A,2013-04-07,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-08,Risk of Violence,5,Medium,2013-04-08,2013-11-09,2013-11-14,13,2,215,0,0,0\r\n4076,anderson carrington,anderson,carrington,2013-02-18,Male,1983-01-31,33,25 - 45,African-American,0,6,0,0,6,-1,2013-02-17 07:07:48,2013-02-18 02:48:50,13002445CF10A,2013-02-17,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-18,Risk of Violence,2,Low,2013-02-18,2013-02-17,2013-02-18,6,0,1138,0,0,0\r\n4080,alex diaz,alex,diaz,2013-10-30,Male,1992-05-11,23,Less than 25,African-American,0,5,0,0,0,-1,2013-10-29 06:06:57,2013-10-31 02:30:08,13015107CF10A,2013-10-29,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-30,Risk of Violence,6,Medium,2013-10-30,2013-10-29,2013-10-31,0,1,884,0,0,0\r\n4081,james liantonio,james,liantonio,2014-03-08,Male,1988-10-10,27,25 - 45,Caucasian,0,3,0,0,1,-1,2014-03-07 07:32:26,2014-03-08 09:08:08,13016455CF10A,,2014-03-07,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-08,Risk of Violence,2,Low,2014-03-08,2014-03-07,2014-03-08,1,0,755,0,0,0\r\n4082,alexander brock,alexander,brock,2014-03-26,Male,1991-12-09,24,Less than 25,Caucasian,0,5,0,0,0,0,2014-03-26 12:17:11,2014-05-02 11:11:37,14004295CF10A,2014-03-25,,1,F,Tamper With Victim,1,15004465MM10A,(M1),0,2015-04-19,Viol Injunct Domestic Violence,2015-04-19,2015-08-15,,1,15011678MM10A,(M1),2015-11-06,Battery,Risk of Recidivism,5,Medium,2014-03-26,Risk of Violence,5,Medium,2014-03-26,2014-06-18,2014-07-11,0,37,84,0,1,1\r\n4083,giovanni simpson,giovanni,simpson,2013-05-14,Male,1992-07-31,23,Less than 25,Other,0,8,0,0,2,,,,11012675MM10A,,2013-05-13,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-14,Risk of Violence,7,Medium,2013-05-14,,,2,0,1053,0,0,0\r\n4084,evans sainvil,evans,sainvil,2013-04-22,Male,1985-05-13,30,25 - 45,African-American,0,9,1,0,10,0,2013-04-22 12:52:54,2013-07-25 06:28:53,13005734CF10A,,2013-04-22,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-22,Risk of Violence,6,Medium,2013-04-22,2013-07-25,2014-01-30,10,283,1075,0,0,0\r\n4085,thomas wright,thomas,wright,2013-02-19,Male,1961-01-05,55,Greater than 45,Caucasian,0,3,0,0,1,0,2013-02-19 03:15:37,2013-02-20 01:09:10,13002525CF10A,2013-02-19,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-19,Risk of Violence,2,Low,2013-02-19,2013-07-01,2013-07-09,1,1,132,0,0,0\r\n4087,tara bostick,tara,bostick,2014-03-03,Female,1974-06-11,41,25 - 45,African-American,0,6,1,0,6,-65,2013-12-28 06:57:04,2013-12-29 02:16:19,13023904MM10A,2013-12-28,,65,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-03,Risk of Violence,2,Low,2014-03-03,2013-12-28,2013-12-29,6,0,760,0,0,0\r\n4088,matthew moore,matthew,moore,2013-02-14,Male,1981-03-01,35,25 - 45,African-American,0,3,0,0,0,0,2013-02-14 02:05:55,2013-02-15 01:58:22,13002333CF10A,2013-02-14,,0,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-14,Risk of Violence,1,Low,2013-02-14,2013-02-14,2013-02-15,0,1,1142,0,0,0\r\n4099,travon burton,travon,burton,2014-02-19,Male,1995-08-02,20,Less than 25,African-American,0,4,0,0,1,-22,2014-01-28 12:36:10,2014-01-29 01:59:17,14001563MM10A,2014-01-28,,22,M,Prowling/Loitering,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-19,Risk of Violence,6,Medium,2014-02-19,2014-01-28,2014-01-29,1,0,772,0,0,0\r\n4101,dorron tate,dorron,tate,2013-09-25,Male,1985-04-04,31,25 - 45,African-American,0,10,2,0,8,-1,2013-09-24 10:11:44,2013-09-28 05:02:49,13018231MM10A,2013-09-24,,1,M,Battery,1,14025291TC10A,(M2),0,2014-07-10,Susp Drivers Lic 1st Offense,2014-07-10,2014-07-11,,1,15003600CF10A,(F3),2015-01-20,Felony Battery (Dom Strang),Risk of Recidivism,10,High,2013-09-25,Risk of Violence,10,High,2013-09-25,2014-07-10,2014-07-11,8,3,288,1,1,1\r\n4102,dequontra perdue,dequontra,perdue,2013-05-24,Male,1993-07-31,22,Less than 25,African-American,0,9,1,0,2,,,,11013456CF10A,,2013-05-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-24,Risk of Violence,7,Medium,2013-05-24,,,2,0,1043,0,0,0\r\n4105,elliot alvarado,elliot,alvarado,2014-05-19,Male,1982-08-02,33,25 - 45,Caucasian,0,9,0,0,7,-1,2014-05-18 12:59:59,2014-05-19 08:39:12,14006919CF10A,2014-05-18,,1,F,Neglect Child / No Bodily Harm,1,14011974CF10A,(M1),0,2014-09-02,Viol Injunct Domestic Violence,2014-09-02,2014-10-03,,1,14011974CF10A,(F7),2014-09-02,Burglary Conveyance Assault/Bat,Risk of Recidivism,9,High,2014-05-19,Risk of Violence,9,High,2014-05-19,2014-09-02,2014-10-03,7,0,106,1,1,1\r\n4106,steven adams,steven,adams,2014-01-18,Male,1971-05-29,44,25 - 45,Caucasian,0,6,0,0,6,-1,2014-01-17 05:32:07,2014-10-14 06:07:45,12001442CF10A,,2014-01-17,1,F,arrest case no charge,1,15007695MM10A,(M1),,2015-07-19,Battery,,,,1,15007695MM10A,(M1),2015-07-19,Battery,Risk of Recidivism,6,Medium,2014-01-18,Risk of Violence,4,Low,2014-01-18,2014-10-14,2015-02-25,6,403,547,1,1,1\r\n4108,craig johnson,craig,johnson,2013-02-06,Male,1974-11-09,41,25 - 45,African-American,0,9,0,0,25,-1,2013-02-05 05:31:42,2013-08-10 05:00:46,13001804CF10A,2013-02-05,,1,F,Possession of Cocaine,1,14014277MM10A,(M1),0,2014-09-27,Battery,2014-09-27,2014-10-29,,1,14014277MM10A,(M1),2014-09-27,Battery,Risk of Recidivism,9,High,2013-02-06,Risk of Violence,9,High,2013-02-06,2013-11-25,2014-07-25,25,185,292,0,1,1\r\n4111,willie ross,willie,ross,2014-01-07,Male,1960-02-17,56,Greater than 45,African-American,0,8,0,0,9,0,2014-01-07 12:09:17,2014-01-08 04:07:24,05034850TC10A,,2006-10-12,2644,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-01-07,Risk of Violence,5,Medium,2014-01-07,2014-01-07,2014-01-08,9,1,815,0,0,0\r\n4112,damian levy,damian,levy,2013-09-05,Male,1995-04-18,21,Less than 25,African-American,0,3,0,0,1,-10,2013-08-26 06:22:19,2013-08-28 11:07:09,13012050CF10A,2013-08-26,,10,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-05,Risk of Violence,6,Medium,2013-09-05,2013-08-26,2013-08-28,1,0,939,0,0,0\r\n4117,inger kirkeleit,inger,kirkeleit,2013-02-21,Female,1968-01-21,48,Greater than 45,Caucasian,0,1,0,0,1,0,2013-02-21 12:21:36,2013-02-22 01:04:45,13003613MM10A,2013-02-20,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-21,Risk of Violence,1,Low,2013-02-21,2013-02-21,2013-02-22,1,1,1135,0,0,0\r\n4120,sergio rastelli,sergio,rastelli,2013-10-22,Male,1976-06-08,39,25 - 45,Caucasian,0,1,0,0,2,-26,2013-09-26 06:13:26,2013-09-29 02:36:41,13013553CF10A,2013-09-26,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-09-26,2013-09-29,2,0,892,0,0,0\r\n4121,tiago dossantos,tiago,dossantos,2013-01-26,Male,1985-01-06,31,25 - 45,Hispanic,0,2,0,0,0,-1,2013-01-25 11:48:14,2013-01-27 04:00:15,13001223CF10A,2013-01-25,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-26,Risk of Violence,2,Low,2013-01-26,2013-01-25,2013-01-27,0,1,1161,0,0,0\r\n4122,angelica garcia,angelica,garcia,2013-04-09,Female,1991-03-28,25,25 - 45,Caucasian,0,6,0,0,0,-1,2013-04-08 11:29:18,2013-04-09 08:33:10,13005108CF10A,2013-04-08,,1,F,Abuse Without Great Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-09,Risk of Violence,4,Low,2013-04-09,2013-04-08,2013-04-09,0,0,1088,0,0,0\r\n4123,kenneth kiester,kenneth,kiester,2013-12-17,Male,1965-01-13,51,Greater than 45,Caucasian,0,1,0,0,1,-83,2013-09-25 07:10:01,2013-09-28 02:10:00,13012734CF10A,,2013-09-25,83,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-17,Risk of Violence,1,Low,2013-12-17,2013-09-25,2013-09-28,1,0,836,0,0,0\r\n4125,ebony mcphee,ebony,mcphee,2013-11-07,Female,1987-10-04,28,25 - 45,African-American,0,5,0,0,3,-16,2013-10-22 07:20:56,2013-11-07 12:54:50,13014757CF10A,2013-10-22,,16,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-07,Risk of Violence,4,Low,2013-11-07,2013-10-22,2013-11-07,3,0,876,0,0,0\r\n4126,michael simpson,michael,simpson,2013-12-14,Male,1985-08-11,30,25 - 45,African-American,0,2,0,0,0,-1,2013-12-13 10:27:58,2013-12-14 08:35:08,13017269CF10A,2013-12-13,,1,F,Possession of Oxycodone,1,15000490MM10A,(M1),,2014-12-17,Battery,,,,1,15000490MM10A,(M1),2014-12-17,Battery,Risk of Recidivism,2,Low,2013-12-14,Risk of Violence,2,Low,2013-12-14,2013-12-13,2013-12-14,0,0,368,1,1,1\r\n4127,raven harrison,raven,harrison,2014-07-07,Female,1996-06-25,19,Less than 25,African-American,0,8,0,0,0,-1,2014-07-06 03:06:43,2014-07-07 07:43:34,14010364MM10A,2014-07-06,,1,M,Exposes Culpable Negligence,1,15007005CF10A,(F3),0,2015-05-29,Child Abuse,2015-05-29,2015-05-31,,1,15007005CF10A,(F3),2015-05-29,Child Abuse,Risk of Recidivism,8,High,2014-07-07,Risk of Violence,8,High,2014-07-07,2015-05-29,2015-05-31,0,0,326,1,1,1\r\n4130,barney arnold,barney,arnold,2014-01-24,Male,1958-06-24,57,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-23 11:57:32,2014-01-28 06:37:34,14000999CF10A,2014-01-23,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-24,Risk of Violence,1,Low,2014-01-24,2014-01-23,2014-01-28,0,4,798,0,0,0\r\n4136,charles rigg,charles,rigg,2014-02-20,Male,1990-01-13,26,25 - 45,African-American,0,5,0,2,0,-1,2014-02-19 05:20:26,2014-02-20 02:30:11,14002357CF10A,2014-02-19,,1,F,Traffick Amphetamine 28g><200g,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-20,Risk of Violence,2,Low,2014-02-20,2014-02-19,2014-02-20,0,0,771,0,0,0\r\n4140,tammi williams,tammi,williams,2013-04-25,Female,1975-01-06,41,25 - 45,Caucasian,0,1,0,0,1,,,,12015700MM10A,2011-05-26,,700,M,Compulsory Sch Attnd Violation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-25,Risk of Violence,1,Low,2013-04-25,,,1,0,1072,0,0,0\r\n4141,chad williams,chad,williams,2013-02-20,Male,1979-01-05,37,25 - 45,African-American,0,6,0,0,5,-29,2013-01-22 04:11:17,2013-01-22 05:54:26,13001015CF10A,2013-01-22,,29,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-20,Risk of Violence,4,Low,2013-02-20,2013-01-22,2013-01-22,5,0,1136,0,0,0\r\n4143,eric floyd,eric,floyd,2013-12-28,Male,1967-07-12,48,Greater than 45,African-American,0,1,0,0,0,0,2013-12-28 05:20:56,2013-12-30 09:31:15,13017902CF10A,2013-12-28,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-28,Risk of Violence,1,Low,2013-12-28,2013-12-28,2013-12-30,0,2,825,0,0,0\r\n4144,herman davis,herman,davis,2013-03-22,Male,1994-12-09,21,Less than 25,African-American,0,9,0,1,0,-1,2013-03-21 06:33:48,2013-03-23 07:11:35,13004111CF10A,2013-03-21,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-22,Risk of Violence,9,High,2013-03-22,2013-03-21,2013-03-23,0,1,1106,0,0,0\r\n4152,jorge aragon,jorge,aragon,2013-05-09,Male,1986-08-08,29,25 - 45,Hispanic,0,2,0,1,1,,,,12021485MM10A,2012-10-16,,205,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-09,Risk of Violence,2,Low,2013-05-09,,,1,0,1058,0,0,0\r\n4154,otis shelly,otis,shelly,2013-11-25,Male,1964-02-18,52,Greater than 45,African-American,0,1,0,0,1,-21,2013-11-04 12:37:14,2013-11-14 09:19:52,13002077MM10A,,2013-11-03,22,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,2013-11-04,2013-11-14,1,0,858,0,0,0\r\n4158,mark girlie,mark,girlie,2014-02-04,Male,1996-10-09,19,Less than 25,African-American,1,10,0,1,1,-40,2013-12-26 11:14:21,2014-01-31 06:41:01,13017159CF10A,,2013-12-26,40,F,arrest case no charge,1,15006535CF10A,(F3),0,2015-05-20,Attempted Escape,2015-05-20,2015-06-21,,1,15013989CF10A,(F3),2015-10-27,Robbery Sudd Snatch No Weapon,Risk of Recidivism,10,High,2014-02-04,Risk of Violence,10,High,2014-02-04,2014-04-09,2014-05-07,1,0,64,0,1,1\r\n4161,van lewis,van,lewis,2013-03-04,Male,1961-05-27,54,Greater than 45,African-American,0,1,0,0,0,0,2013-03-04 03:35:08,2013-03-04 07:18:36,13004426MM10A,2013-03-04,,0,M,Battery,1,15010370CF10A,(M1),374,2014-12-26,Battery,2016-01-04,2016-01-06,,1,15010370CF10A,(F3),2014-12-26,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2016-01-04,2016-01-06,0,0,662,1,1,1\r\n4164,nicole magnus,nicole,magnus,2013-01-10,Female,1975-11-12,40,25 - 45,Caucasian,0,4,0,0,4,-1,2013-01-09 03:40:18,2013-01-11 06:28:12,13000361CF10A,2013-01-09,,1,F,Possession of Cocaine,1,15007423CF10A,(F3),0,2015-06-07,Possession of Cocaine,2015-06-07,2015-07-11,,0,,,,,Risk of Recidivism,4,Low,2013-01-10,Risk of Violence,1,Low,2013-01-10,2014-07-28,2014-09-23,4,1,564,0,0,0\r\n4165,eric mitchell,eric,mitchell,2013-04-13,Male,1993-11-23,22,Less than 25,African-American,0,7,0,0,0,0,2013-04-13 06:02:46,2013-04-24 09:03:40,13005339CF10A,2013-04-13,,0,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-13,Risk of Violence,6,Medium,2013-04-13,2013-04-13,2013-04-24,0,11,1084,0,0,0\r\n4168,christopher amity,christopher,amity,2013-08-03,Male,1966-02-11,50,Greater than 45,Caucasian,0,4,0,0,10,-1,2013-08-02 11:21:02,2013-08-03 07:59:48,13010919CF10A,2013-08-02,,1,F,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-03,Risk of Violence,2,Low,2013-08-03,2013-08-02,2013-08-03,10,0,972,0,0,0\r\n4169,joseph sisto,joseph,sisto,2013-01-07,Male,1981-03-26,35,25 - 45,Caucasian,0,3,0,0,2,0,2013-01-07 02:38:57,2013-01-07 09:00:03,13000389MM10A,2013-01-07,,0,M,Battery,1,15007671MM10A,(M2),0,2015-07-18,Disorderly Intoxication,2015-07-18,2015-07-18,,0,,,,,Risk of Recidivism,3,Low,2013-01-07,Risk of Violence,4,Low,2013-01-07,2015-07-18,2015-07-18,2,0,922,0,0,0\r\n4171,denzel lewis,denzel,lewis,2014-02-02,Male,1994-06-29,21,Less than 25,African-American,0,7,0,0,0,-1,2014-02-01 03:12:15,2014-02-03 08:44:42,14001445CF10A,2014-02-01,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-02,Risk of Violence,6,Medium,2014-02-02,2014-02-01,2014-02-03,0,1,789,0,0,0\r\n4178,ocon sanderns,ocon,sanderns,2013-01-10,Male,1988-04-30,27,25 - 45,Caucasian,0,3,0,0,0,-1,2013-01-09 04:23:59,2013-01-14 03:21:25,13000375CF10A,2013-01-09,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-10,Risk of Violence,4,Low,2013-01-10,2013-01-09,2013-01-14,0,4,1177,0,0,0\r\n4180,tiffany martinez,tiffany,martinez,2013-04-08,Female,1978-01-26,38,25 - 45,Hispanic,0,9,0,0,20,-1,2013-04-07 07:10:02,2013-04-09 05:16:12,13004994CF10A,2013-04-07,,1,F,Battery on Law Enforc Officer,1,13006243CF10A,(F3),0,2013-05-01,Possession of Cocaine,2013-05-01,2013-08-28,,1,14006707MM10A,(M1),2014-04-22,Battery,Risk of Recidivism,9,High,2013-04-08,Risk of Violence,3,Low,2013-04-08,2013-05-01,2013-08-28,20,1,23,1,1,1\r\n4182,jerod mcdade,jerod,mcdade,2013-09-04,Male,1984-03-27,32,25 - 45,Caucasian,0,5,0,0,0,0,2013-09-04 02:13:30,2013-09-11 04:08:12,13012496CF10A,2013-09-04,,0,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-04,Risk of Violence,2,Low,2013-09-04,2013-09-04,2013-09-11,0,7,940,0,0,0\r\n4183,brian daly,brian,daly,2013-08-22,Male,1956-05-30,59,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-21 04:14:52,2013-08-22 08:38:16,13011738CF10A,2013-08-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-22,Risk of Violence,1,Low,2013-08-22,2013-08-21,2013-08-22,0,0,953,0,0,0\r\n4186,sidney perkins,sidney,perkins,2013-04-30,Male,1956-11-21,59,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-30 02:41:16,2013-04-30 07:55:38,13006208CF10A,2013-04-30,,0,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-30,Risk of Violence,1,Low,2013-04-30,2013-04-30,2013-04-30,0,0,1067,0,0,0\r\n4191,vitali kavaliou,vitali,kavaliou,2013-08-07,Female,1981-04-06,35,25 - 45,Caucasian,0,4,0,0,2,,,,13011002CF10A,2013-08-06,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-07,Risk of Violence,2,Low,2013-08-07,,,2,0,968,0,0,0\r\n4193,victor osejo,victor,osejo,2013-07-29,Male,1971-06-14,44,25 - 45,Hispanic,0,1,0,0,0,-2,2013-07-27 01:40:29,2013-07-28 02:47:19,13014254MM10A,2013-07-27,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-07-27,2013-07-28,0,0,977,0,0,0\r\n4194,andrew jones,andrew,jones,2013-03-04,Male,1975-10-14,40,25 - 45,African-American,0,8,0,0,7,129,2013-07-11 12:59:59,2013-08-16 04:40:46,12018428CF10A,2012-12-17,,77,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-04,Risk of Violence,9,High,2013-03-04,2013-07-11,2013-08-16,7,0,129,0,0,0\r\n4195,miazotiann white,miazotiann,white,2013-07-11,Female,1985-01-19,31,25 - 45,African-American,0,6,0,0,0,-2,2013-07-09 03:27:31,2013-07-11 01:36:23,13013042MM10A,2013-07-06,,5,M,Battery,1,14011470MM10A,(M1),0,2014-07-02,Resist/Obstruct W/O Violence,2014-07-02,2014-11-07,,1,14011470MM10A,(M1),2014-07-02,Battery,Risk of Recidivism,6,Medium,2013-07-11,Risk of Violence,4,Low,2013-07-11,2014-07-02,2014-11-07,0,0,356,1,1,1\r\n4196,keanne sibblies,keanne,sibblies,2014-01-23,Female,1983-11-17,32,25 - 45,African-American,0,3,0,0,0,-1,2014-01-22 12:13:03,2014-01-23 05:54:47,14000944CF10A,2014-01-22,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-23,Risk of Violence,2,Low,2014-01-23,2014-01-22,2014-01-23,0,0,799,0,0,0\r\n4199,sean delegal,sean,delegal,2013-08-22,Male,1993-09-01,22,Less than 25,Caucasian,1,4,0,0,2,-1,2013-08-21 01:46:04,2013-08-22 09:03:13,13011660CF10A,,2013-08-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-22,Risk of Violence,6,Medium,2013-08-22,2014-08-11,2014-12-23,2,0,354,0,0,0\r\n4203,jason grillo,jason,grillo,2014-02-15,Male,1981-10-07,34,25 - 45,Caucasian,0,4,0,0,2,-1,2014-02-14 09:45:03,2014-02-17 01:11:31,11013444CF10A,,2014-02-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-15,Risk of Violence,2,Low,2014-02-15,2014-02-14,2014-02-17,2,2,776,0,0,0\r\n4204,james dameus,james,dameus,2013-12-25,Male,1985-06-09,30,25 - 45,African-American,0,3,1,0,7,-1,2013-12-24 06:07:41,2013-12-26 03:11:34,13017747CF10A,,2013-12-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-25,Risk of Violence,2,Low,2013-12-25,2013-12-24,2013-12-26,7,1,828,0,0,0\r\n4211,nesler dumera,nesler,dumera,2013-09-06,Male,1969-08-24,46,Greater than 45,Other,0,1,0,0,0,0,2013-09-06 01:01:48,2013-09-06 09:07:05,13012561CF10A,2013-09-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-06,2013-09-06,0,0,938,0,0,0\r\n4217,peter borkowicz,peter,borkowicz,2014-06-07,Male,1980-07-18,35,25 - 45,Caucasian,0,5,0,0,2,0,2014-06-07 03:26:40,2014-06-08 03:06:00,14007890CF10A,2014-06-07,,0,F,Battery On Fire Fighter,1,14012344MM10A,(M1),1,2014-08-15,Battery,2014-08-16,2014-08-17,,1,14012344MM10A,(M1),2014-08-15,Battery,Risk of Recidivism,5,Medium,2014-06-07,Risk of Violence,4,Low,2014-06-07,2014-06-07,2014-06-08,2,1,69,1,1,1\r\n4219,jamaal alleyne,jamaal,alleyne,2013-01-13,Male,1981-01-12,35,25 - 45,African-American,0,1,0,0,0,-1,2013-01-12 01:36:43,2013-01-13 01:22:39,13000566CF10A,2013-01-12,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0,0\r\n4223,shatara brown,shatara,brown,2013-02-12,Female,1985-11-10,30,25 - 45,African-American,0,9,0,0,9,-1,2013-02-11 03:29:53,2013-10-12 05:40:21,13002100CF10A,2013-02-11,,1,F,Felony Petit Theft,1,14007775MM10A,(M1),0,2014-05-12,Battery,2014-05-12,2014-06-03,,1,14007775MM10A,(M1),2014-05-12,Battery,Risk of Recidivism,9,High,2013-02-12,Risk of Violence,5,Medium,2013-02-12,2014-05-12,2014-06-03,9,242,454,1,1,1\r\n4228,thomas fairbrother,thomas,fairbrother,2013-11-28,Male,1985-01-30,31,25 - 45,Caucasian,0,8,1,1,4,0,2013-11-28 02:42:55,2013-11-30 02:26:32,13011876CF10A,,2013-11-28,0,F,arrest case no charge,1,14007947MM10A,(M1),0,2014-05-15,Viol Pretrial Release Dom Viol,2014-05-15,2014-06-12,,1,14016221CF10A,(F7),2014-12-05,Kidnapping / Domestic Violence,Risk of Recidivism,8,High,2013-11-28,Risk of Violence,6,Medium,2013-11-28,2014-05-15,2014-06-12,4,2,168,1,1,1\r\n4230,anthony gonzalez,anthony,gonzalez,2013-05-24,Male,1985-03-04,31,25 - 45,Hispanic,0,10,0,0,0,-1,2013-05-23 07:29:12,2013-08-12 07:13:27,13007366CF10A,2013-05-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-05-24,Risk of Violence,7,Medium,2013-05-24,2013-05-23,2013-08-12,0,80,1043,0,0,0\r\n4232,dwight gray,dwight,gray,2013-01-24,Male,1979-06-29,36,25 - 45,African-American,0,5,0,0,5,-1,2013-01-23 03:15:23,2013-01-24 06:43:56,13007417MM10A,2013-01-23,,1,M,Battery,1,13012040CF10A,(F2),0,2013-08-26,Aggravated Battery,2013-08-26,2013-09-26,,1,13012040CF10A,(F2),2013-08-26,Aggravated Battery,Risk of Recidivism,5,Medium,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-08-26,2013-09-26,5,0,214,1,1,1\r\n4233,andre hamilton,andre,hamilton,2013-01-28,Male,1976-09-22,39,25 - 45,African-American,0,1,0,0,2,-1,2013-01-27 03:53:11,2013-03-15 09:27:18,12059636TC10A,2012-11-11,,78,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-03-15,2,46,1159,0,0,0\r\n4239,derek modia,derek,modia,2013-08-28,Male,1981-02-06,35,25 - 45,Hispanic,0,3,0,1,0,-1,2013-08-27 08:38:36,2013-08-29 05:49:45,13012098CF10A,2013-08-27,,1,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-28,Risk of Violence,2,Low,2013-08-28,2013-08-27,2013-08-29,0,1,947,0,0,0\r\n4245,bari saunders,bari,saunders,2013-09-23,Male,1978-09-22,37,25 - 45,African-American,0,3,0,0,0,-1,2013-09-22 07:58:55,2013-09-25 02:31:32,13018048MM10A,2013-09-22,,1,M,Contribute Delinquency Of A Minor,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-22,2013-09-25,0,2,921,0,0,0\r\n4247,paul roberts,paul,roberts,2013-02-07,Male,1990-08-19,25,25 - 45,African-American,0,6,0,2,3,0,2013-02-07 03:50:07,2013-02-14 08:43:04,13005950TC10A,2010-11-19,,811,M,Oper Motorcycle W/O Valid DL,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-07,Risk of Violence,3,Low,2013-02-07,2014-09-10,2014-09-18,3,7,580,0,0,0\r\n4250,ariana culmer,ariana,culmer,2013-05-27,Female,1989-02-27,27,25 - 45,African-American,0,3,0,0,0,-1,2013-05-26 10:59:20,2013-05-27 06:40:51,13007523CF10A,2013-05-26,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-27,Risk of Violence,3,Low,2013-05-27,2013-05-26,2013-05-27,0,0,1040,0,0,0\r\n4252,raphael cabrices,raphael,cabrices,2013-08-08,Male,1968-04-27,47,Greater than 45,Caucasian,0,1,0,0,2,-25,2013-07-14 06:16:40,2013-07-15 09:09:22,13013312MM10A,2013-07-14,,25,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-08,Risk of Violence,1,Low,2013-08-08,2013-07-14,2013-07-15,2,0,967,0,0,0\r\n4254,kenneth fennell,kenneth,fennell,2013-12-04,Male,1969-08-15,46,Greater than 45,African-American,0,6,0,0,12,-1,2013-12-03 06:33:18,2013-12-06 05:45:30,13016714CF10A,2013-12-03,,1,M,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-04,Risk of Violence,4,Low,2013-12-04,2014-11-13,2015-01-25,12,2,344,0,0,0\r\n4255,maximo diaz,maximo,diaz,2013-04-19,Male,1989-03-14,27,25 - 45,Caucasian,0,5,0,0,0,-1,2013-04-18 10:25:11,2013-04-19 07:26:45,13005567CF10A,2013-04-18,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-19,Risk of Violence,6,Medium,2013-04-19,2013-04-18,2013-04-19,0,0,1078,0,0,0\r\n4256,don mixon,don,mixon,2013-11-18,Male,1981-10-18,34,25 - 45,African-American,0,9,0,0,0,-1,2013-11-17 02:12:32,2013-11-19 10:37:14,13015978CF10A,2013-11-17,,1,F,Felony Battery w/Prior Convict,1,14005373CF10A,(F3),0,2014-04-17,Felony Battery (Dom Strang),2014-04-17,2014-04-22,,1,14005373CF10A,(F3),2014-04-17,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2013-11-18,Risk of Violence,8,High,2013-11-18,2014-04-17,2014-04-22,0,1,150,1,1,1\r\n4257,jessie davis,jessie,davis,2013-03-23,Male,1985-05-06,30,25 - 45,African-American,0,7,0,0,4,163,2013-09-02 02:00:52,2013-09-03 07:55:00,12023063MM10A,2012-09-20,,184,M,Driving License Suspended,1,13017786MM10A,(M1),0,2013-09-18,Battery,2013-09-18,2013-09-23,,1,13017786MM10A,(M1),2013-09-18,Battery,Risk of Recidivism,7,Medium,2013-03-23,Risk of Violence,5,Medium,2013-03-23,2013-09-02,2013-09-03,4,0,163,0,1,1\r\n4258,thomas defelice,thomas,defelice,2014-02-05,Male,1991-02-04,25,25 - 45,Caucasian,0,2,0,0,0,-1,2014-02-04 05:25:58,2014-02-04 08:29:26,14004520MU10A,2014-02-04,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-05,Risk of Violence,3,Low,2014-02-05,2014-02-04,2014-02-04,0,0,786,0,0,0\r\n4260,tony lucien,tony,lucien,2013-05-04,Male,1990-03-23,26,25 - 45,African-American,0,5,1,0,5,-1,2013-05-03 04:28:53,2013-05-04 07:11:20,13014746TC20A,,2013-05-03,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-04,Risk of Violence,4,Low,2013-05-04,2013-05-03,2013-05-04,5,0,1063,0,0,0\r\n4265,larry mitchell,larry,mitchell,2014-02-25,Male,1955-07-08,60,Greater than 45,African-American,0,8,0,0,9,-1,2014-02-24 09:52:30,2014-02-25 09:47:44,14002613CF10A,2014-02-24,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-25,Risk of Violence,1,Low,2014-02-25,2014-02-24,2014-02-25,9,0,766,0,0,0\r\n4267,alrick francis,alrick,francis,2013-05-15,Male,1967-02-24,49,Greater than 45,Other,0,1,0,0,0,-1,2013-05-14 01:25:33,2013-05-15 02:11:30,13009335MM10A,2013-05-14,,1,M,Battery,1,13012803MM10A,(M1),1,2013-07-04,Viol Injunction Protect Dom Vi,2013-07-05,2013-07-24,,1,13012803MM10A,(M1),2013-07-04,Battery,Risk of Recidivism,1,Low,2013-05-15,Risk of Violence,1,Low,2013-05-15,2013-07-05,2013-07-24,0,0,50,1,1,1\r\n4270,matthew george,matthew,george,2013-07-15,Male,1994-05-19,21,Less than 25,African-American,0,4,0,0,0,-3,2013-07-12 04:13:33,2013-07-13 01:37:10,13009824CF10A,2013-07-12,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-15,Risk of Violence,7,Medium,2013-07-15,2013-07-12,2013-07-13,0,0,991,0,0,0\r\n4275,joseph perez,joseph,perez,2013-05-26,Male,1962-11-12,53,Greater than 45,Caucasian,0,3,0,0,1,283,2014-03-05 12:46:04,2014-04-07 03:13:23,13007573CF10A,,2013-05-26,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2014-03-05,2014-04-07,1,0,283,0,0,0\r\n4276,larenz daniel,larenz,daniel,2014-08-08,Male,1994-07-07,21,Less than 25,African-American,0,4,0,0,0,16,2014-08-24 05:26:00,2014-09-24 04:08:57,14010775CF10A,2014-08-07,,1,F,Felony Battery (Dom Strang),1,14011545CF10A,(F2),0,2014-08-24,Sexual Battery / Vict 12 Yrs +,2014-08-24,2014-09-24,,1,14011545CF10A,(F2),2014-08-24,Sexual Battery / Vict 12 Yrs +,Risk of Recidivism,4,Low,2014-08-08,Risk of Violence,8,High,2014-08-08,2014-08-24,2014-09-24,0,0,16,1,1,1\r\n4280,edwin chaj,edwin,chaj,2013-12-18,Male,1986-09-12,29,25 - 45,Hispanic,0,9,0,0,1,-2,2013-12-16 09:49:44,2013-12-17 08:43:38,13023292MM10A,2013-12-16,,2,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-12-18,Risk of Violence,3,Low,2013-12-18,2013-12-16,2013-12-17,1,0,835,0,0,0\r\n4281,charles major,charles,major,2013-11-14,Male,1986-09-08,29,25 - 45,African-American,0,4,0,0,4,-26,2013-10-19 05:44:44,2013-10-20 05:26:25,13019815MM10A,2013-10-19,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-14,Risk of Violence,2,Low,2013-11-14,2013-10-19,2013-10-20,4,0,869,0,0,0\r\n4282,marquis rodriguez,marquis,rodriguez,2014-01-13,Male,1994-09-25,21,Less than 25,Hispanic,0,3,0,0,0,0,2014-01-13 01:33:12,2014-01-14 01:25:50,14000651MM10A,2014-01-13,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-13,Risk of Violence,6,Medium,2014-01-13,2014-01-13,2014-01-14,0,1,809,0,0,0\r\n4283,monet walkerfinch,monet,walkerfinch,2013-06-18,Female,1991-10-10,24,Less than 25,African-American,0,7,0,0,2,569,2015-01-08 11:47:35,2015-01-16 08:46:50,12009527MM10A,2012-05-08,,406,M,Battery,1,15000378CF10A,(M1),0,2015-01-08,Criminal Mischief>$200<$1000,2015-01-08,2015-01-16,,1,15000378CF10A,(F2),2015-01-08,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,7,Medium,2013-06-18,Risk of Violence,5,Medium,2013-06-18,2015-01-08,2015-01-16,2,0,569,1,1,1\r\n4288,roger nettles,roger,nettles,2013-08-06,Male,1964-12-17,51,Greater than 45,Caucasian,0,1,0,0,2,0,2013-08-06 04:40:40,2013-08-29 04:07:37,13011015CF10A,2013-08-05,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-06,Risk of Violence,1,Low,2013-08-06,2013-08-06,2013-08-29,2,23,969,0,0,0\r\n4290,james luxama,james,luxama,2013-01-10,Male,1986-12-19,29,25 - 45,African-American,0,1,0,0,1,0,2013-01-10 03:43:24,2013-01-10 07:10:02,13001781TC10A,2013-01-10,,0,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-10,Risk of Violence,2,Low,2013-01-10,2013-01-10,2013-01-10,1,0,1177,0,0,0\r\n4292,samantha baubriant,samantha,baubriant,2013-04-26,Female,1991-12-10,24,Less than 25,Other,0,5,0,0,0,0,2013-04-26 05:00:40,2013-04-26 08:04:26,13006034CF10A,2013-04-25,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-26,Risk of Violence,5,Medium,2013-04-26,2013-04-26,2013-04-26,0,0,1071,0,0,0\r\n4296,juan moralessantos,juan,moralessantos,2013-02-21,Male,1978-11-24,37,25 - 45,Hispanic,0,2,0,0,5,-1,2013-02-20 05:14:02,2013-02-21 09:26:46,13002600CF10A,2013-02-20,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-21,Risk of Violence,1,Low,2013-02-21,2013-02-20,2013-02-21,5,0,1135,0,0,0\r\n4298,graciela mino,graciela,mino,2013-10-14,Female,1962-02-28,54,Greater than 45,Hispanic,0,1,0,0,2,,,,11050306TC10A,2011-09-14,,761,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-14,Risk of Violence,1,Low,2013-10-14,,,2,0,900,0,0,0\r\n4299,lina walsh,lina,walsh,2013-04-09,Female,1964-11-17,51,Greater than 45,Caucasian,0,9,0,0,14,,,,12008113CF10A,2012-06-01,,312,F,Traffick Hydrocodone   4g><14g,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-09,Risk of Violence,6,Medium,2013-04-09,2001-02-14,2001-11-04,14,0,1088,0,0,0\r\n4300,roy munro,roy,munro,2014-03-12,Male,1962-06-11,53,Greater than 45,Caucasian,0,1,0,0,1,-21,2014-02-19 10:59:41,2014-03-12 11:18:36,14002370CF10A,2014-02-19,,21,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-12,Risk of Violence,1,Low,2014-03-12,2014-02-19,2014-03-12,1,0,751,0,0,0\r\n4301,cedrick white,cedrick,white,2014-02-19,Male,1984-05-20,31,25 - 45,African-American,0,3,0,0,2,,,,14001486CF10A,,2014-02-05,14,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-19,Risk of Violence,3,Low,2014-02-19,,,2,0,772,0,0,0\r\n4303,cleve george,cleve,george,2013-02-08,Male,1990-11-27,25,25 - 45,African-American,0,8,0,0,5,-1,2013-02-07 03:54:36,2013-03-14 07:25:50,13001902CF10A,2013-02-07,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-08,Risk of Violence,6,Medium,2013-02-08,2013-02-07,2013-03-14,5,34,1148,0,0,0\r\n4305,andre viruez,andre,viruez,2013-08-09,Male,1977-11-12,38,25 - 45,Hispanic,0,1,0,0,0,0,2013-08-09 01:10:56,2013-08-10 03:49:00,13015053MM10A,2013-08-08,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-09,Risk of Violence,1,Low,2013-08-09,2013-08-09,2013-08-10,0,1,966,0,0,0\r\n4306,benjamin joseph,benjamin,joseph,2013-01-20,Male,1993-11-28,22,Less than 25,African-American,0,10,1,1,3,0,2013-01-20 03:49:43,2013-12-05 06:38:32,13000931CF10A,,2013-01-20,0,F,arrest case no charge,1,13014396CF10A,(F3),,2013-10-08,Battery Upon Detainee,,,,1,13014396CF10A,(F3),2013-10-08,Battery Upon Detainee,Risk of Recidivism,10,High,2013-01-20,Risk of Violence,10,High,2013-01-20,2013-01-20,2013-12-05,3,0,261,1,1,1\r\n4307,devonte fowler,devonte,fowler,2013-01-30,Male,1994-06-09,21,Less than 25,African-American,0,8,0,0,1,-1,2013-01-29 01:41:22,2013-02-11 12:05:37,13001435CF10A,2013-01-29,,1,F,Poss/Sell/Del Cocaine 1000FT Sch,1,15005882MM10A,(M1),,2015-05-29,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2013-01-30,Risk of Violence,8,High,2013-01-30,2014-04-22,2014-05-08,1,12,447,0,0,0\r\n4314,deon daniels,deon,daniels,2014-07-16,Male,1987-09-21,28,25 - 45,African-American,0,7,1,0,14,29,2014-08-14 01:01:25,2014-09-03 09:23:36,13023200MM10A,2013-12-15,,213,M,Resist/Obstruct W/O Violence,1,14011104CF10A,(F3),0,2014-08-14,Grand Theft (Motor Vehicle),2014-08-14,2014-09-03,,1,15009100CF10A,(F3),2015-07-15,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2014-07-16,Risk of Violence,8,High,2014-07-16,2014-08-14,2014-09-03,14,0,29,1,1,1\r\n4317,juno valdemas,juno,valdemas,2013-03-20,Male,1990-05-20,25,25 - 45,African-American,0,6,0,0,1,-1,2013-03-19 01:12:22,2013-03-20 01:14:42,13005424MM10A,2013-03-19,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-20,Risk of Violence,5,Medium,2013-03-20,2013-03-19,2013-03-20,1,0,1108,0,0,0\r\n4319,donald carlo,donald,carlo,2013-12-27,Male,1959-12-15,56,Greater than 45,Caucasian,0,4,0,0,2,-4,2013-12-23 09:10:10,2013-12-26 08:40:49,13017686CF10A,2013-12-23,,4,F,Felony/Driving Under Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-27,Risk of Violence,1,Low,2013-12-27,2013-12-23,2013-12-26,2,0,826,0,0,0\r\n4320,cemar knight,cemar,knight,2013-05-03,Male,1982-01-07,34,25 - 45,African-American,0,9,0,0,22,-29,2013-04-04 05:00:38,2013-04-06 04:51:59,13005984CF10A,2013-04-04,,29,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-03,Risk of Violence,4,Low,2013-05-03,2013-12-03,2013-12-11,22,0,214,0,0,0\r\n4322,marco logatti,marco,logatti,2013-12-05,Male,1980-11-15,35,25 - 45,Hispanic,0,7,0,0,7,0,2013-12-05 02:13:10,2013-12-06 04:02:34,13016996CF10A,,2013-12-05,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-05,Risk of Violence,4,Low,2013-12-05,2013-12-20,2014-03-12,7,1,15,0,0,0\r\n4324,colby lecain,colby,lecain,2013-06-24,Male,1993-10-06,22,Less than 25,Caucasian,0,5,0,2,0,-3,2013-06-21 12:31:31,2013-06-21 07:33:13,13008728CF10A,2013-06-20,,4,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-06-24,Risk of Violence,6,Medium,2013-06-24,2013-12-10,2013-12-19,0,0,169,0,0,0\r\n4328,lynval chambers,lynval,chambers,2013-04-24,Male,1993-01-30,23,Less than 25,African-American,0,8,0,0,0,-1,2013-04-23 06:47:37,2013-04-25 08:21:03,13005808CF10A,2013-04-23,,1,F,Grand Theft in the 3rd Degree,1,14005363CF10A,(F1),23,2014-01-09,Robbery W/Firearm,2014-02-01,2014-02-06,,1,14005363CF10A,(F1),2014-01-09,Robbery W/Firearm,Risk of Recidivism,8,High,2013-04-24,Risk of Violence,8,High,2013-04-24,2013-05-15,2013-06-22,0,1,21,0,1,1\r\n4329,aubray mathis,aubray,mathis,2013-09-27,Male,1985-08-22,30,25 - 45,African-American,0,10,0,0,4,-1,2013-09-26 07:37:18,2013-11-19 09:00:53,13018331MM10A,2013-09-26,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-27,Risk of Violence,6,Medium,2013-09-27,2013-09-26,2013-11-19,4,53,917,0,0,0\r\n4330,damon nicholas,damon,nicholas,2014-03-27,Male,1973-10-18,42,25 - 45,African-American,0,6,0,0,1,0,2014-03-27 02:19:13,2014-04-02 05:22:52,14005328MM10A,2014-03-27,,0,M,Viol Pretrial Release Dom Viol,1,14011319CF10A,(F3),0,2014-07-17,Felony Battery w/Prior Convict,2014-07-17,2014-12-19,,1,14011319CF10A,(F3),2014-07-17,Felony Battery w/Prior Convict,Risk of Recidivism,6,Medium,2014-03-27,Risk of Violence,3,Low,2014-03-27,2014-04-17,2014-04-25,1,6,21,0,1,1\r\n4331,john grant,john,grant,2013-01-07,Male,1966-03-04,50,Greater than 45,African-American,0,8,0,2,24,0,2013-01-07 02:25:09,2013-02-08 11:34:13,13001089TC10A,2013-01-06,,1,M,Susp Drivers Lic 1st Offense,1,13012698MM10A,(M2),0,2013-07-03,Criminal Mischief Damage <$200,2013-07-03,2013-09-04,,1,15007894CF10A,(F3),2015-06-18,Robbery Sudd Snatch No Weapon,Risk of Recidivism,8,High,2013-01-07,Risk of Violence,8,High,2013-01-07,2013-04-04,2013-05-22,24,32,87,0,1,1\r\n4335,oceal brown,oceal,brown,2013-10-30,Male,1978-11-14,37,25 - 45,African-American,0,9,0,0,0,-1,2013-10-29 08:50:13,2013-10-30 08:06:26,13015079CF10A,2013-10-29,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-30,Risk of Violence,3,Low,2013-10-30,2016-02-02,2016-02-10,0,0,825,0,0,0\r\n4336,marvis washington,marvis,washington,2013-11-04,Male,1992-08-28,23,Less than 25,African-American,0,4,0,0,1,0,2013-11-04 05:37:01,2013-11-05 03:43:13,13015359CF10A,2013-11-04,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-04,Risk of Violence,5,Medium,2013-11-04,2013-11-04,2013-11-05,1,1,879,0,0,0\r\n4337,anthony phillips,anthony,phillips,2013-01-27,Male,1974-07-13,41,25 - 45,Caucasian,0,1,0,0,0,-1,2013-01-26 05:52:41,2013-01-27 08:13:40,13001282CF10A,2013-01-26,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-27,Risk of Violence,1,Low,2013-01-27,2013-01-26,2013-01-27,0,0,1160,0,0,0\r\n4338,louis smith,louis,smith,2013-09-26,Male,1965-11-24,50,Greater than 45,African-American,1,2,0,0,5,29,2013-10-25 12:48:33,2013-11-26 02:04:24,13005180CF10A,2013-04-10,,169,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-26,Risk of Violence,1,Low,2013-09-26,2013-10-25,2013-11-26,5,0,29,0,0,0\r\n4339,david otero,david,otero,2014-12-26,Male,1974-05-14,41,25 - 45,Hispanic,0,10,0,0,19,-1,2014-12-25 06:50:18,2015-02-06 05:56:01,14017039CF10A,2014-12-25,,1,F,Felony Petit Theft,1,15001917CF10A,(F2),0,2015-02-10,Throw Deadly Missile Into Veh,2015-02-10,2015-03-16,,1,15001917CF10A,(F2),2015-02-10,Throw Deadly Missile Into Veh,Risk of Recidivism,10,High,2014-12-26,Risk of Violence,9,High,2014-12-26,2015-02-10,2015-03-16,19,42,46,1,1,1\r\n4341,christopher sinclair,christopher,sinclair,2013-12-14,Male,1976-02-07,40,25 - 45,Other,0,7,0,0,8,-1,2013-12-13 03:49:59,2014-01-22 08:33:50,13017253CF10A,2013-12-13,,1,F,Possession of Cocaine,1,14004730CF10A,(F3),0,2014-04-05,Battery on a Person Over 65,2014-04-05,2015-03-10,,1,14004730CF10A,(F3),2014-04-05,Battery on a Person Over 65,Risk of Recidivism,7,Medium,2013-12-14,Risk of Violence,4,Low,2013-12-14,2014-04-05,2015-03-10,8,39,112,1,1,1\r\n4356,sebastian bocanegra,sebastian,bocanegra,2013-10-02,Male,1992-05-06,23,Less than 25,Caucasian,0,2,0,0,0,-1,2013-10-01 06:26:22,2013-10-02 07:41:14,13013795CF10A,2013-10-01,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,4,Low,2013-10-02,2013-10-01,2013-10-02,0,0,912,0,0,0\r\n4358,rajdaye maharajh,rajdaye,maharajh,2013-10-22,Female,1951-05-12,64,Greater than 45,Other,0,1,0,0,0,-1,2013-10-21 11:27:18,2013-10-22 01:59:46,13014719CF10A,2013-10-21,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-21,2013-10-22,0,0,892,0,0,0\r\n4360,charles delisi,charles,delisi,2013-08-12,Male,1964-05-10,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-11 08:16:15,2013-08-12 07:21:52,13015168MM10A,2013-08-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-12,Risk of Violence,1,Low,2013-08-12,2013-08-11,2013-08-12,0,0,963,0,0,0\r\n4365,robert roser,robert,roser,2013-09-25,Male,1972-08-01,43,25 - 45,Caucasian,0,5,0,0,1,,,,12018010CF10A,2012-12-10,,289,F,Del Morphine at/near Park,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-25,Risk of Violence,3,Low,2013-09-25,,,1,0,919,0,0,0\r\n4367,shanta jackson,shanta,jackson,2013-05-06,Female,1980-05-23,35,25 - 45,African-American,0,6,0,0,3,0,2013-05-06 03:16:04,2013-05-07 02:38:52,13008750MM10A,2013-05-06,,0,M,Battery,1,13017067CF10A,(F2),26,2013-11-14,Aggrav Battery w/Deadly Weapon,2013-12-10,2013-12-11,,1,13017067CF10A,(F2),2013-11-14,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-05-06,Risk of Violence,3,Low,2013-05-06,2013-05-06,2013-05-07,3,1,192,1,1,1\r\n4370,kenneth goodman,kenneth,goodman,2013-02-09,Male,1986-12-08,29,25 - 45,African-American,0,9,0,0,2,0,2013-02-09 12:03:25,2013-07-19 12:35:09,13001981CF10A,2013-02-08,,1,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-09,Risk of Violence,6,Medium,2013-02-09,2014-02-19,2014-04-11,2,160,375,0,0,0\r\n4371,michael higgins,michael,higgins,2014-01-06,Male,1959-01-27,57,Greater than 45,Caucasian,0,1,0,0,0,-3,2014-01-03 04:30:49,2014-01-05 01:29:28,14000123MM10A,2014-01-03,,3,M,Prowling/Loitering,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-01-03,2014-01-05,0,0,816,0,0,0\r\n4375,jose ortiz,jose,ortiz,2014-01-06,Male,1978-11-17,37,25 - 45,Caucasian,0,5,0,0,1,-203,2013-06-17 12:51:06,2013-06-17 08:23:52,13011612MO10A,2013-06-16,,204,M,Disorderly Conduct,1,15008312CF10A,(M2),1,2015-06-26,Renting For Prostitution,2015-06-27,2015-07-29,,1,14016795MO10A,(MO3),2014-10-27,DOC/Engage In Fighting,Risk of Recidivism,5,Medium,2014-01-06,Risk of Violence,2,Low,2014-01-06,2015-08-18,2015-08-19,1,0,536,1,1,1\r\n4376,rosetta francis,rosetta,francis,2014-02-16,Female,1992-12-21,23,Less than 25,Other,0,5,0,0,0,-1,2014-02-15 11:55:36,2014-02-16 09:24:05,14002663MM10A,2014-02-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-16,Risk of Violence,5,Medium,2014-02-16,2014-02-15,2014-02-16,0,0,775,0,0,0\r\n4381,lee wechsler,lee,wechsler,2013-07-22,Male,1960-04-26,55,Greater than 45,Caucasian,0,1,0,0,1,-3,2013-07-19 10:31:24,2013-07-20 01:24:07,13013759MM10A,2013-07-19,,3,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-22,Risk of Violence,1,Low,2013-07-22,2013-07-19,2013-07-20,1,0,984,0,0,0\r\n4387,leroy anglin,leroy,anglin,2013-11-13,Male,1987-10-09,28,25 - 45,African-American,0,9,1,0,6,-1,2013-11-12 07:13:43,2013-11-15 04:09:00,13015719CF10A,2013-11-12,,1,F,Grand Theft in the 3rd Degree,1,15016610CF10A,(F2),,2015-11-11,Aggravated Battery / Pregnant,,,,1,15016610CF10A,(F2),2015-11-11,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2013-11-13,Risk of Violence,8,High,2013-11-13,2015-03-12,2015-03-13,6,2,484,0,1,1\r\n4389,michael hatcher,michael,hatcher,2014-02-08,Male,1991-01-07,25,25 - 45,Caucasian,0,6,0,0,1,-1,2014-02-07 09:17:42,2014-02-08 10:18:18,14001754CF10A,2014-02-07,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-08,Risk of Violence,3,Low,2014-02-08,2015-07-24,2015-08-03,1,0,531,0,0,0\r\n4390,john deprima,john,deprima,2014-02-01,Male,1949-05-11,66,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-31 03:48:54,2014-02-01 10:09:47,14001409CF10A,2014-01-31,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-01,Risk of Violence,1,Low,2014-02-01,2014-01-31,2014-02-01,0,0,790,0,0,0\r\n4391,leonard daley,leonard,daley,2013-04-14,Male,1987-09-15,28,25 - 45,African-American,0,2,0,0,3,0,2013-04-14 03:12:34,2013-04-14 07:22:40,13005373CF10A,2013-04-14,,0,M,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-14,Risk of Violence,2,Low,2013-04-14,2013-04-14,2013-04-14,3,0,1083,0,0,0\r\n4394,trevon madison,trevon,madison,2013-10-07,Male,1991-09-02,24,Less than 25,African-American,0,5,0,0,0,-2,2013-10-05 12:06:59,2013-10-06 08:54:21,13018920MM10A,2013-10-04,,3,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-07,Risk of Violence,5,Medium,2013-10-07,2013-10-05,2013-10-06,0,0,907,0,0,0\r\n4400,richard kirk,richard,kirk,2014-03-27,Male,1943-01-11,73,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-26 01:18:07,2014-03-27 01:44:58,14005228MM10A,2014-03-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-27,Risk of Violence,1,Low,2014-03-27,2014-03-26,2014-03-27,0,0,736,0,0,0\r\n4401,solomon mccarter,solomon,mccarter,2013-11-24,Male,1971-09-24,44,25 - 45,African-American,0,2,0,0,0,-1,2013-11-23 03:13:53,2013-11-25 09:02:22,13016444CF10A,,2013-11-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-24,Risk of Violence,1,Low,2013-11-24,2013-11-23,2013-11-25,0,1,859,0,0,0\r\n4402,carlos perezzambrano,carlos,perezzambrano,2013-11-14,Male,1973-10-30,42,25 - 45,Hispanic,0,1,0,0,0,0,2013-11-14 05:48:10,2013-11-18 07:36:03,13021457MM10A,2013-11-14,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-11-14,2013-11-18,0,4,869,0,0,0\r\n4403,jason howell,jason,howell,2014-03-20,Male,1976-02-01,40,25 - 45,African-American,0,7,0,0,6,-1,2014-03-19 04:33:21,2014-03-21 02:41:52,14003853CF10A,2014-03-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-20,Risk of Violence,4,Low,2014-03-20,2014-03-19,2014-03-21,6,1,743,0,0,0\r\n4406,nathaniel echevarria,nathaniel,echevarria,2013-04-24,Male,1995-01-12,21,Less than 25,Hispanic,0,10,0,0,0,0,2013-04-24 03:00:42,2013-05-01 04:39:21,13005900CF10A,2013-04-23,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-24,Risk of Violence,8,High,2013-04-24,2013-07-17,2013-07-24,0,7,84,0,0,0\r\n4407,frederick bedell,frederick,bedell,2013-01-03,Male,1959-11-28,56,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-01-01 12:26:08,2013-01-02 07:32:07,13000025MM10A,2012-12-31,,3,M,Battery,1,14006576MM10A,(M1),0,2014-04-19,Resist/Obstruct W/O Violence,2014-04-19,2014-04-20,,1,14014539CF10A,(F2),2014-10-29,Aggravated Battery / Pregnant,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2014-04-19,2014-04-20,0,0,471,1,1,1\r\n4408,jermaine buchanan,jermaine,buchanan,2013-01-03,Male,1973-11-15,42,25 - 45,African-American,0,1,0,0,3,-1,2013-01-02 09:17:36,2013-01-03 11:24:54,13000072CF10A,2013-01-02,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2013-01-02,2013-01-03,3,0,1184,0,0,0\r\n4411,david garrison,david,garrison,2013-01-15,Male,1966-01-13,50,Greater than 45,Caucasian,0,3,0,0,1,-1,2013-01-14 11:58:48,2013-01-16 08:10:14,10018309CF10A,,2013-01-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-15,Risk of Violence,1,Low,2013-01-15,2013-01-14,2013-01-16,1,1,1172,0,0,0\r\n4414,jesus guzmansilva,jesus,guzmansilva,2014-02-16,Male,1981-12-09,34,25 - 45,Caucasian,0,2,0,0,0,-1,2014-02-15 08:15:10,2014-02-16 09:38:43,14002644MM10A,2014-02-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-16,Risk of Violence,2,Low,2014-02-16,2014-02-15,2014-02-16,0,0,775,0,0,0\r\n4415,rodney monroe,rodney,monroe,2014-03-21,Male,1968-12-13,47,Greater than 45,African-American,0,1,0,0,1,-1,2014-03-20 02:12:50,2014-03-22 03:16:24,14004872MM10A,2014-03-20,,1,M,Battery,1,15008617CF10A,(F3),0,2015-07-05,Grand Theft in the 3rd Degree,2015-07-05,2015-07-06,,1,15008617CF10A,(F3),2015-07-05,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2014-03-21,Risk of Violence,1,Low,2014-03-21,2015-07-05,2015-07-06,1,1,471,1,1,1\r\n4416,charles laurie,charles,laurie,2013-12-19,Male,1957-09-11,58,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-12-18 01:38:23,2013-12-20 08:48:46,13017461CF10A,2013-12-18,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-19,Risk of Violence,1,Low,2013-12-19,2013-12-18,2013-12-20,3,1,834,0,0,0\r\n4418,erik wantuck,erik,wantuck,2013-07-05,Male,1967-08-30,48,Greater than 45,Caucasian,0,4,0,0,3,-7,2013-06-28 02:46:46,2013-06-28 08:24:49,13009140CF10A,2013-06-28,,7,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-05,Risk of Violence,1,Low,2013-07-05,2015-05-06,2015-05-07,3,0,670,0,0,0\r\n4419,christina ramage,christina,ramage,2014-01-27,Female,1996-01-08,20,Less than 25,Caucasian,0,3,0,0,0,-2,2014-01-25 11:11:50,2014-01-26 02:05:49,14001095CF10A,2014-01-25,,2,F,Grand Theft in the 3rd Degree,1,16002393MM10A,(M2),0,2016-03-13,Criminal Mischief Damage <$200,2016-03-13,2016-03-16,,1,16002393MM10A,(M1),2016-03-13,Battery,Risk of Recidivism,3,Low,2014-01-27,Risk of Violence,6,Medium,2014-01-27,2016-03-13,2016-03-16,0,0,776,1,0,0\r\n4422,antwon jenkins,antwon,jenkins,2013-11-17,Male,1987-01-13,29,25 - 45,African-American,0,9,0,0,0,-1,2013-11-16 08:17:51,2013-11-17 08:20:01,13015943CF10A,2013-11-16,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-17,Risk of Violence,6,Medium,2013-11-17,2013-11-16,2013-11-17,0,0,866,0,0,0\r\n4425,jameka ferguson,jameka,ferguson,2013-09-16,Male,1977-11-16,38,25 - 45,Other,0,1,0,0,1,-1,2013-09-15 09:33:33,2013-09-16 07:05:06,14007854MM10A,2013-09-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,2,Low,2013-09-16,2013-09-15,2013-09-16,1,0,928,0,0,0\r\n4426,christin butler,christin,butler,2014-03-11,Female,1972-05-01,43,25 - 45,Caucasian,0,2,0,0,0,0,2014-03-11 04:14:22,2014-03-11 08:42:40,14003418CF10A,2014-03-11,,0,M,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-11,Risk of Violence,1,Low,2014-03-11,2016-02-23,2016-02-26,0,0,714,0,0,0\r\n4428,samuels semper,samuels,semper,2013-04-23,Male,1980-11-06,35,25 - 45,African-American,0,9,0,0,1,,,,08021895MM10A,,2009-04-13,1471,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-23,Risk of Violence,6,Medium,2013-04-23,,,1,0,1074,0,0,0\r\n4430,mason lopez,mason,lopez,2013-03-17,Male,1990-10-24,25,25 - 45,Hispanic,0,3,0,0,2,-1,2013-03-16 01:12:33,2013-03-17 02:03:07,13005188MM10A,2013-03-16,,1,M,Battery,1,13085435TC40A,(M2),92,2013-12-09,Driving License Suspended,2014-03-11,2014-03-14,,1,15008838CF10A,(F2),2015-07-09,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,3,Low,2013-03-17,Risk of Violence,5,Medium,2013-03-17,2015-07-09,2015-07-27,2,0,267,1,1,1\r\n4432,bradley gaskins,bradley,gaskins,2013-03-31,Male,1994-02-01,22,Less than 25,Caucasian,0,7,0,3,0,-1,2013-03-30 08:02:38,2013-03-31 02:54:22,09014657TI20A,2009-02-13,,1507,M,Possess Tobacco Product Under 18,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-31,Risk of Violence,10,High,2013-03-31,2013-03-30,2013-03-31,0,0,1097,0,0,0\r\n4433,stefanie miranda,stefanie,miranda,2014-04-01,Female,1984-01-05,32,25 - 45,Hispanic,0,2,0,0,1,-11,2014-03-21 11:15:52,2014-04-01 10:27:40,14004011CF10A,2014-03-21,,11,M,Burglary Conveyance Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-04-01,Risk of Violence,2,Low,2014-04-01,2014-03-21,2014-04-01,1,0,731,0,0,0\r\n4434,eric redmond,eric,redmond,2013-03-25,Male,1989-06-19,26,25 - 45,Caucasian,0,7,0,0,9,-1,2013-03-24 02:25:59,2013-03-25 08:04:10,13005756MM10A,2013-03-24,,1,M,Possess Cannabis/20 Grams Or Less,1,14007041MO10A,(M1),1,2014-04-28,Trespass After Warning,2014-04-29,2014-04-29,,1,15001565MM10A,(M2),2015-02-06,Assault,Risk of Recidivism,7,Medium,2013-03-25,Risk of Violence,5,Medium,2013-03-25,2013-08-18,2013-08-20,9,0,146,0,1,1\r\n4435,vivienne campbell,vivienne,campbell,2013-02-27,Female,1967-11-20,48,Greater than 45,Other,0,1,0,0,0,-1,2013-02-26 04:52:54,2013-02-27 09:49:05,13002930CF10A,2013-02-26,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-27,Risk of Violence,1,Low,2013-02-27,2013-02-26,2013-02-27,0,0,1129,0,0,0\r\n4437,george massie,george,massie,2013-06-25,Male,1944-10-09,71,Greater than 45,Caucasian,0,1,0,0,1,-28,2013-05-28 10:34:00,2013-06-01 09:54:23,13010258MM10A,2013-05-28,,28,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-25,Risk of Violence,1,Low,2013-06-25,2013-05-28,2013-06-01,1,0,1011,0,0,0\r\n4438,ursula fontaine,ursula,fontaine,2013-01-24,Female,1955-04-05,61,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-23 01:23:24,2013-01-23 02:14:29,13001511MM10A,2013-01-23,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-24,Risk of Violence,1,Low,2013-01-24,2013-01-23,2013-01-23,0,0,1163,0,0,0\r\n4439,gabriela ulpiano,gabriela,ulpiano,2013-10-14,Female,1993-06-10,22,Less than 25,Caucasian,0,5,0,0,2,-22,2013-09-22 07:56:23,2013-09-23 01:51:40,13018053MM10A,2013-09-22,,22,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-14,Risk of Violence,5,Medium,2013-10-14,2014-07-21,2014-07-24,2,0,280,0,0,0\r\n4440,darrell roberts,darrell,roberts,2014-12-23,Male,1986-05-01,29,25 - 45,African-American,0,2,0,0,1,82,2015-03-15 12:28:10,2015-04-22 01:45:21,10027144MM10A,2010-12-18,,1466,M,DUI Blood Alcohol Above 0.20,1,15003080MM10A,(M1),1,2015-03-14,Battery,2015-03-15,2015-04-22,,1,15003080MM10A,(M1),2015-03-14,Battery,Risk of Recidivism,2,Low,2014-12-23,Risk of Violence,2,Low,2014-12-23,2015-03-15,2015-04-22,1,0,81,1,1,1\r\n4441,carolyn weaver,carolyn,weaver,2013-04-02,Female,1962-01-27,54,Greater than 45,Caucasian,0,2,0,0,1,-22,2013-03-11 04:01:35,2013-03-11 07:47:17,13004883MM10A,2013-03-11,,22,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-02,Risk of Violence,1,Low,2013-04-02,2013-03-11,2013-03-11,1,0,1095,0,0,0\r\n4442,joseph criscione,joseph,criscione,2013-11-23,Male,1991-11-02,24,Less than 25,Caucasian,0,9,2,0,6,-1,2013-11-22 08:34:45,2013-11-23 10:16:31,13016231CF10A,,2013-11-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-23,Risk of Violence,7,Medium,2013-11-23,2013-11-22,2013-11-23,6,0,860,0,0,0\r\n4443,allyson glass,allyson,glass,2013-01-14,Female,1987-12-31,28,25 - 45,Caucasian,0,5,0,0,0,-1,2013-01-13 04:58:10,2013-01-14 06:50:27,13000595CF10A,2013-01-13,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-14,Risk of Violence,3,Low,2013-01-14,2013-01-13,2013-01-14,0,0,1173,0,0,0\r\n4444,alexandria dalton,alexandria,dalton,2013-05-22,Female,1990-12-15,25,25 - 45,Caucasian,0,10,0,0,2,0,2013-05-22 02:20:05,2013-11-19 05:29:00,13007287CF10A,2013-05-21,,1,F,Escape,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-05-22,Risk of Violence,8,High,2013-05-22,2013-05-22,2013-11-19,2,181,1045,0,0,0\r\n4445,veronica miller,veronica,miller,2013-07-18,Female,1993-11-23,22,Less than 25,African-American,0,5,0,0,1,-28,2013-06-20 04:36:36,2013-07-03 10:00:15,13008731CF10A,2013-06-20,,28,F,Murder in the First Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-18,Risk of Violence,5,Medium,2013-07-18,2014-03-09,2014-08-27,1,0,234,0,0,0\r\n4448,joseph clagett,joseph,clagett,2014-01-20,Male,1980-04-30,35,25 - 45,African-American,0,4,0,0,0,-1,2014-01-19 07:31:22,2014-01-20 08:17:30,14000838CF10A,2014-01-19,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-20,Risk of Violence,3,Low,2014-01-20,2014-01-19,2014-01-20,0,0,802,0,0,0\r\n4450,ameer abdulmalik,ameer,abdulmalik,2014-01-27,Male,1994-10-01,21,Less than 25,African-American,0,3,0,0,0,-1,2014-01-26 03:55:36,2014-01-27 08:34:04,14001154CF10A,2014-01-26,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-27,Risk of Violence,5,Medium,2014-01-27,2014-01-26,2014-01-27,0,0,795,0,0,0\r\n4451,george brent,george,brent,2013-01-12,Male,1967-03-09,49,Greater than 45,Caucasian,0,1,0,0,1,0,2013-01-12 04:12:16,2013-01-16 08:38:51,13000576CF10A,2013-01-12,,0,M,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-12,Risk of Violence,1,Low,2013-01-12,2013-03-21,2013-03-22,1,4,68,0,0,0\r\n4459,timothy towns,timothy,towns,2013-08-12,Male,1994-06-12,21,Less than 25,African-American,0,4,0,0,1,-40,2013-07-03 10:42:54,2013-07-16 08:11:11,12012009CF10A,,2013-07-03,40,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-12,Risk of Violence,6,Medium,2013-08-12,2014-01-10,2014-03-15,1,0,151,0,0,0\r\n4461,renato schossler,renato,schossler,2013-04-04,Male,1951-04-24,64,Greater than 45,Caucasian,0,1,0,0,8,-1,2013-04-03 10:47:23,2013-04-04 07:38:50,13004781CF10A,2013-04-03,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-04,Risk of Violence,1,Low,2013-04-04,2013-04-03,2013-04-04,8,0,1093,0,0,0\r\n4462,sherise wright,sherise,wright,2013-10-01,Female,1990-01-19,26,25 - 45,African-American,0,3,0,0,1,35,2013-11-05 06:24:56,2013-12-19 10:27:50,13002846CF10A,,2013-03-18,197,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-01,Risk of Violence,2,Low,2013-10-01,2013-11-05,2013-12-19,1,0,35,0,0,0\r\n4464,gervan mcglashan,gervan,mcglashan,2013-05-18,Male,1978-10-02,37,25 - 45,African-American,0,2,0,0,3,-1,2013-05-17 05:42:47,2013-05-18 07:44:03,13009556MM10A,2013-05-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-18,Risk of Violence,2,Low,2013-05-18,2013-12-18,2013-12-20,3,0,214,0,0,0\r\n4466,andrea davidson,andrea,davidson,2013-09-30,Female,1981-10-09,34,25 - 45,African-American,0,7,0,0,1,-1,2013-09-29 11:30:37,2014-01-23 12:04:18,13013656CF10A,2013-09-29,,1,F,Neglect Child / No Bodily Harm,1,15015747CF10A,(F3),,2015-12-09,Battery on Law Enforc Officer,,,,1,15015747CF10A,(F3),2015-12-09,Battery on Law Enforc Officer,Risk of Recidivism,7,Medium,2013-09-30,Risk of Violence,3,Low,2013-09-30,2013-09-29,2014-01-23,1,115,800,1,1,1\r\n4468,adolfo laurent,adolfo,laurent,2013-06-19,Male,1956-02-22,60,Greater than 45,Hispanic,0,1,0,0,4,-15,2013-06-04 01:12:55,2013-06-10 06:24:13,13007935CF10A,2013-06-03,,16,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-19,Risk of Violence,1,Low,2013-06-19,2013-11-16,2013-11-23,4,0,150,0,0,0\r\n4469,david swan,david,swan,2013-05-27,Male,1957-09-28,58,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-26 10:29:50,2013-05-27 06:15:59,13010092MM10A,2013-05-26,,1,M,Viol Injunction Protect Dom Vi,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-05-26,2013-05-27,0,0,1040,0,0,0\r\n4471,edgar cisneros,edgar,cisneros,2013-11-15,Male,1988-08-24,27,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-14 05:01:31,2013-11-15 02:59:54,13015860CF10A,2013-11-14,,1,F,Use Computer for Child Exploit,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-15,Risk of Violence,2,Low,2013-11-15,2014-07-01,2014-08-27,0,0,228,0,0,0\r\n4475,sindy gourdet,sindy,gourdet,2013-05-13,Male,1990-10-25,25,25 - 45,African-American,0,2,0,2,0,0,2013-05-13 01:14:04,2013-05-13 01:57:13,13009149MM10A,2013-05-12,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-13,Risk of Violence,3,Low,2013-05-13,2013-11-12,2013-11-14,0,0,183,0,0,0\r\n4478,jason martin,jason,martin,2013-04-23,Male,1959-07-05,56,Greater than 45,African-American,0,8,0,0,24,22,2013-05-15 01:57:35,2013-05-21 11:04:32,13000995CF10A,2013-01-21,,92,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-23,Risk of Violence,4,Low,2013-04-23,2013-05-15,2013-05-21,24,0,22,0,0,0\r\n4479,vladimir fontaine,vladimir,fontaine,2013-08-25,Male,1982-12-12,33,25 - 45,African-American,0,1,0,0,2,-1,2013-08-24 06:47:25,2013-08-25 08:17:55,13016205MM10A,2013-08-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-25,Risk of Violence,2,Low,2013-08-25,2013-08-24,2013-08-25,2,0,950,0,0,0\r\n4481,richard francis,richard,francis,2013-07-02,Male,1968-12-10,47,Greater than 45,African-American,0,7,0,0,15,-60,2013-05-03 03:11:46,2013-07-02 10:44:18,13006347CF10A,2013-05-03,,60,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-07-02,Risk of Violence,2,Low,2013-07-02,2013-05-03,2013-07-02,15,0,1004,0,0,0\r\n4483,terrance irvin,terrance,irvin,2013-10-12,Male,1984-04-10,32,25 - 45,African-American,0,7,0,0,6,-1,2013-10-11 05:38:14,2013-10-15 07:11:17,13014279CF10A,2013-10-11,,1,F,Grand Theft in the 3rd Degree,1,13017581CF10A,(F3),1,2013-12-20,Felony Battery w/Prior Convict,2013-12-21,2014-02-21,,1,13017581CF10A,(F3),2013-12-20,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-10-12,Risk of Violence,4,Low,2013-10-12,2013-10-11,2013-10-15,6,3,69,1,1,1\r\n4491,rovens daphnis,rovens,daphnis,2013-01-04,Male,1990-07-05,25,25 - 45,African-American,0,4,0,0,1,-1,2013-01-03 09:57:32,2013-01-04 01:36:49,13000138CF10A,2013-01-03,,1,F,Possession of Hydrocodone,1,13006172CF10A,(M1),1,2013-04-29,Resist/Obstruct W/O Violence,2013-04-30,2013-12-03,,1,13006172CF10A,(M1),2013-04-29,Battery,Risk of Recidivism,4,Low,2013-01-04,Risk of Violence,5,Medium,2013-01-04,2013-03-11,2013-03-15,1,0,66,0,1,1\r\n4492,linsey calliste,linsey,calliste,2014-02-02,Female,1995-11-17,20,Less than 25,African-American,0,4,0,0,0,-1,2014-02-01 10:09:26,2014-02-02 08:52:57,14001455CF10A,2014-02-01,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-02,Risk of Violence,6,Medium,2014-02-02,2014-02-01,2014-02-02,0,0,789,0,0,0\r\n4493,kenneth everett,kenneth,everett,2014-02-19,Male,1983-06-01,32,25 - 45,African-American,0,9,0,4,9,-1,2014-02-18 06:56:00,2014-02-19 02:08:42,14002314CF10A,2014-02-18,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-19,Risk of Violence,7,Medium,2014-02-19,2014-03-31,2014-04-01,9,0,40,0,0,0\r\n4494,auta goudreau,auta,goudreau,2013-01-06,Female,1966-06-22,49,Greater than 45,African-American,0,1,0,0,0,0,2013-01-06 03:17:29,2013-01-07 08:39:20,13000247CF10A,2013-01-06,,0,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-06,Risk of Violence,2,Low,2013-01-06,2013-01-06,2013-01-07,0,1,1181,0,0,0\r\n4495,kadijah julien,kadijah,julien,2013-09-03,Male,1993-10-28,22,Less than 25,African-American,0,3,0,0,1,-4,2013-08-30 03:45:48,2013-08-31 06:14:35,13012305CF10A,2013-08-30,,4,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-03,Risk of Violence,5,Medium,2013-09-03,2013-08-30,2013-08-31,1,0,941,0,0,0\r\n4496,brandon brown-cruz,brandon,brown-cruz,2013-11-09,Male,1991-11-13,24,Less than 25,African-American,0,3,0,0,0,-1,2013-11-08 12:56:47,2013-11-09 02:08:10,13015602CF10A,2013-11-08,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-09,Risk of Violence,4,Low,2013-11-09,2013-11-08,2013-11-09,0,0,874,0,0,0\r\n4500,henry carter,henry,carter,2013-05-18,Male,1986-10-31,29,25 - 45,African-American,0,8,0,0,5,,,,10017179CF10A,2010-09-23,,968,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-18,Risk of Violence,5,Medium,2013-05-18,2009-03-17,2010-01-29,5,0,1049,0,0,0\r\n4502,thomas hansler,thomas,hansler,2013-04-04,Male,1966-08-30,49,Greater than 45,Caucasian,0,1,0,0,1,,,,11020517MM10A,2011-09-13,,569,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-04,Risk of Violence,1,Low,2013-04-04,,,1,0,1093,0,0,0\r\n4505,zackary salamone,zackary,salamone,2013-03-05,Male,1993-05-05,22,Less than 25,Caucasian,0,6,0,0,0,-1,2013-03-04 08:02:42,2013-03-05 09:56:34,13003258CF10A,2013-03-04,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-05,Risk of Violence,5,Medium,2013-03-05,2013-10-10,2013-10-22,0,0,219,0,0,0\r\n4506,garcia hilaire,garcia,hilaire,2014-02-18,Male,1981-12-29,34,25 - 45,African-American,3,10,0,0,8,,,,11014207CF10A,,2011-08-24,909,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-02-18,Risk of Violence,7,Medium,2014-02-18,2006-03-23,2010-02-21,8,0,773,0,0,0\r\n4508,laver dent,laver,dent,2013-04-29,Female,1989-10-03,26,25 - 45,African-American,0,5,0,0,3,-1,2013-04-28 09:29:51,2013-04-29 08:39:30,13006099CF10A,2013-04-28,,1,F,Aggravated Assault W/dead Weap,1,15015089CF10A,(F3),,2015-11-21,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-29,Risk of Violence,4,Low,2013-04-29,2013-04-28,2013-04-29,3,0,936,1,0,0\r\n4510,carlos calle,carlos,calle,2013-03-09,Male,1962-04-13,54,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-03-08 01:01:34,2013-04-16 01:26:45,13004726MM10A,2013-03-08,,1,M,Battery,1,15035132TC20A,(M1),,2015-06-06,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2014-09-10,2014-09-18,2,38,550,0,0,0\r\n4511,tommie carter,tommie,carter,2013-01-09,Male,1956-07-08,59,Greater than 45,African-American,0,1,0,0,1,-1,2013-01-08 07:37:28,2013-01-09 12:43:37,13000317CF10A,2013-01-08,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-09,Risk of Violence,1,Low,2013-01-09,2013-01-08,2013-01-09,1,0,1178,0,0,0\r\n4513,jackson exalus,jackson,exalus,2013-05-19,Male,1991-11-25,24,Less than 25,Other,0,4,0,0,1,-1,2013-05-18 05:53:46,2013-05-23 03:55:02,13007120CF10A,2013-05-18,,1,F,Aggravated Assault W/dead Weap,1,15004135MM10A,(M1),1,2015-03-11,Resist/Obstruct W/O Violence,2015-03-12,2015-04-21,,1,15004135MM10A,(M1),2015-03-11,Battery,Risk of Recidivism,4,Low,2013-05-19,Risk of Violence,6,Medium,2013-05-19,2013-05-18,2013-05-23,1,4,661,1,1,1\r\n4514,rod robinson,rod,robinson,2013-12-26,Male,1951-10-08,64,Greater than 45,African-American,0,7,0,0,20,-1,2013-12-25 10:09:07,2013-12-27 11:47:33,13017781CF10A,2013-12-25,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-26,Risk of Violence,1,Low,2013-12-26,2013-12-25,2013-12-27,20,1,827,0,0,0\r\n4517,jameeka obriant,jameeka,obriant,2013-06-27,Female,1993-05-16,22,Less than 25,African-American,0,4,0,0,0,-7,2013-06-20 10:32:45,2013-06-26 09:05:59,13008701CF10A,2013-06-20,,7,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-27,Risk of Violence,5,Medium,2013-06-27,2013-06-20,2013-06-26,0,0,1009,0,0,0\r\n4520,rakesha hills,rakesha,hills,2013-09-26,Female,1986-04-01,30,25 - 45,African-American,0,6,0,0,3,0,2013-09-26 04:53:11,2013-10-08 05:32:22,13013530CF10A,2013-09-26,,0,F,Felony Driving While Lic Suspd,1,14003801MM10A,(M1),0,2014-03-05,Battery,2014-03-05,2014-03-06,,1,14003801MM10A,(M1),2014-03-05,Battery,Risk of Recidivism,6,Medium,2013-09-26,Risk of Violence,3,Low,2013-09-26,2014-03-05,2014-03-06,3,12,160,1,1,1\r\n4521,harriet blake,harriet,blake,2013-12-06,Female,1989-04-18,27,25 - 45,Caucasian,0,5,0,0,0,0,2013-12-06 03:15:24,2013-12-06 09:29:08,13016895CF10A,2013-12-06,,0,F,,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-06,Risk of Violence,3,Low,2013-12-06,2013-12-06,2013-12-06,0,0,847,0,0,0\r\n4524,matthew haffner,matthew,haffner,2013-12-30,Male,1995-12-02,20,Less than 25,Caucasian,0,4,0,2,0,-3,2013-12-27 01:47:20,2013-12-27 08:51:11,13017820CF10A,2013-12-26,,4,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-30,Risk of Violence,7,Medium,2013-12-30,2013-12-27,2013-12-27,0,0,823,0,0,0\r\n4527,everson alexis,everson,alexis,2014-01-28,Male,1978-05-03,37,25 - 45,Other,0,1,0,0,0,-1,2014-01-27 04:34:50,2014-01-28 08:12:42,14001503MM10A,2014-01-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-28,Risk of Violence,1,Low,2014-01-28,2014-01-27,2014-01-28,0,0,794,0,0,0\r\n4530,andre eaton,andre,eaton,2013-11-27,Male,1990-07-15,25,25 - 45,Other,0,2,0,0,2,0,2013-11-27 12:32:45,2013-11-27 02:52:06,13016493CF10A,2013-11-26,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-27,Risk of Violence,3,Low,2013-11-27,2015-04-10,2015-04-11,2,0,499,0,0,0\r\n4534,lakesia hawkins,lakesia,hawkins,2014-02-05,Female,1983-04-29,32,25 - 45,African-American,0,2,0,0,0,-1,2014-02-04 12:32:17,2014-02-05 09:57:20,14001960MM10A,2014-02-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-05,Risk of Violence,1,Low,2014-02-05,2014-02-04,2014-02-05,0,0,786,0,0,0\r\n4536,dena gaines,dena,gaines,2013-08-19,Female,1971-07-03,44,25 - 45,Caucasian,0,1,0,0,1,-3,2013-08-16 09:32:39,2013-08-17 06:40:59,13011514CF10A,2013-08-16,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-10-15,2013-10-16,1,0,57,0,0,0\r\n4537,alphonse mills,alphonse,mills,2013-03-09,Male,1975-04-10,41,25 - 45,African-American,0,4,0,0,8,-1,2013-03-08 11:20:25,2013-03-10 01:38:59,13003467CF10A,2013-03-08,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-09,Risk of Violence,2,Low,2013-03-09,2016-02-10,2016-02-10,8,1,1068,0,0,0\r\n4541,jeffrey chidsey,jeffrey,chidsey,2013-03-18,Male,1985-11-10,30,25 - 45,Caucasian,0,2,0,0,3,21,2013-04-08 04:09:44,2013-05-04 02:26:09,15014942CF10A,2009-08-17,,1309,F,Murder In 2nd Degree W/firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-18,Risk of Violence,2,Low,2013-03-18,2013-04-08,2013-05-04,3,0,21,0,0,0\r\n4544,bradford crayton,bradford,crayton,2013-05-24,Male,1988-10-17,27,25 - 45,African-American,0,5,0,0,2,0,2013-05-24 04:38:03,2013-05-31 10:05:39,13010012MM10A,2013-05-24,,0,M,Battery,1,14003318CF10A,(M1),0,2014-03-09,Battery,2014-03-09,2014-05-16,,1,14003318CF10A,(F2),2014-03-09,Agg Battery Grt/Bod/Harm,Risk of Recidivism,5,Medium,2013-05-24,Risk of Violence,6,Medium,2013-05-24,2014-03-09,2014-05-16,2,7,289,1,1,1\r\n4552,felix regis,felix,regis,2014-01-08,Male,1992-10-24,23,Less than 25,African-American,0,2,0,0,1,-45,2013-11-24 07:49:16,2013-11-24 08:12:10,13016330CF10A,2013-11-24,,45,F,,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,3,Low,2014-01-08,2014-08-28,2014-08-30,1,0,232,0,0,0\r\n4553,francisco sanchezlagomarcino,francisco,sanchezlagomarcino,2013-04-27,Male,1981-12-15,34,25 - 45,Hispanic,0,3,0,0,2,0,2013-04-27 02:33:25,2013-04-27 07:29:37,13020330TC10A,2013-04-27,,0,M,Operating W/O Valid License,1,16000043CF10A,(M2),0,2016-01-01,Unlaw LicTag/Sticker Attach,2016-01-01,2016-01-03,,0,,,,,Risk of Recidivism,3,Low,2013-04-27,Risk of Violence,2,Low,2013-04-27,2016-01-01,2016-01-03,2,0,979,1,0,0\r\n4554,patrick jean,patrick,jean,2013-12-06,Male,1983-04-03,33,25 - 45,African-American,0,10,0,0,1,,,,04017955CF10A,,2013-11-29,7,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-12-06,Risk of Violence,6,Medium,2013-12-06,,,1,0,847,0,0,0\r\n4556,carmelle prospere,carmelle,prospere,2014-03-23,Female,1983-02-10,33,25 - 45,African-American,0,4,0,0,3,-1,2014-03-22 07:22:13,2014-03-23 09:07:58,14005016MM10A,2014-03-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-23,Risk of Violence,1,Low,2014-03-23,2014-03-22,2014-03-23,3,0,740,0,0,0\r\n4557,nicholas brady,nicholas,brady,2013-07-16,Male,1982-08-27,33,25 - 45,Caucasian,0,5,0,0,3,-42,2013-06-04 12:15:50,2013-07-15 11:24:04,13007866CF10A,2013-06-03,,43,F,False Ownership Info/Pawn Item,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-16,Risk of Violence,3,Low,2013-07-16,2013-09-09,2014-01-26,3,0,55,0,0,0\r\n4558,daniel cox,daniel,cox,2014-02-26,Male,1983-01-19,33,25 - 45,Caucasian,0,1,0,0,0,-1,2014-02-25 04:14:26,2014-03-04 02:26:37,14002666CF10A,2014-02-25,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-26,Risk of Violence,2,Low,2014-02-26,2014-02-25,2014-03-04,0,6,765,0,0,0\r\n4559,david doughty,david,doughty,2014-02-18,Male,1975-03-26,41,25 - 45,African-American,0,6,0,0,2,46,2014-04-05 12:50:01,2014-04-17 03:15:17,13017774MM10A,,2013-12-23,57,M,arrest case no charge,1,14005800MO10A,(MO3),0,2014-04-05,Petit Theft,2014-04-05,2014-04-17,,1,14006612MM10A,(M1),2014-04-20,Battery,Risk of Recidivism,6,Medium,2014-02-18,Risk of Violence,5,Medium,2014-02-18,2014-04-05,2014-04-17,2,0,46,1,1,1\r\n4560,angel hernandez,angel,hernandez,2013-10-01,Male,1978-09-04,37,25 - 45,Hispanic,0,1,0,0,1,-1,2013-09-30 10:22:08,2013-10-01 07:31:46,13018614MM10A,2013-09-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2013-09-30,2013-10-01,1,0,913,0,0,0\r\n4562,adrien petit,adrien,petit,2013-08-16,Male,1988-04-01,28,25 - 45,African-American,0,5,0,0,9,-1,2013-08-15 12:50:23,2013-08-17 04:14:04,13015497MM10A,2013-08-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-16,Risk of Violence,4,Low,2013-08-16,2013-08-15,2013-08-17,9,1,959,0,0,0\r\n4563,chercolby sweet-foy,chercolby,sweet-foy,2013-02-26,Female,1990-12-16,25,25 - 45,African-American,0,5,0,0,0,-1,2013-02-25 10:08:13,2013-02-26 12:52:06,13002860CF10A,2013-02-25,,1,F,Aggravated Assault W/dead Weap,1,13010198CF10A,(F3),0,2013-07-20,Agg Assault W/int Com Fel Dome,2013-07-20,2013-07-21,,1,13010198CF10A,(F3),2013-07-20,Agg Assault W/int Com Fel Dome,Risk of Recidivism,5,Medium,2013-02-26,Risk of Violence,5,Medium,2013-02-26,2013-07-20,2013-07-21,0,0,144,1,1,1\r\n4566,latura hall,latura,hall,2013-02-03,Female,1985-09-24,30,25 - 45,African-American,0,4,0,0,1,-1,2013-02-02 05:10:03,2013-02-04 05:37:02,13002402MM10A,2013-02-02,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-03,Risk of Violence,3,Low,2013-02-03,2013-02-02,2013-02-04,1,1,1153,0,0,0\r\n4567,valencia wilsonbrown,valencia,wilsonbrown,2013-04-19,Female,1968-08-04,47,Greater than 45,African-American,0,2,0,0,0,-2,2013-04-17 11:16:09,2013-04-18 08:01:15,13007461MM10A,2013-04-17,,2,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-17,2013-04-18,0,0,1078,0,0,0\r\n4569,tyson harper,tyson,harper,2013-08-29,Male,1978-10-02,37,25 - 45,Caucasian,0,5,0,0,5,-105,2013-05-16 10:40:48,2013-08-29 10:25:21,12002486MM10A,,2013-05-17,104,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-29,Risk of Violence,1,Low,2013-08-29,2014-07-18,2014-12-02,5,0,323,0,0,0\r\n4574,christian mcdaniel,christian,mcdaniel,2013-01-13,Male,1984-11-25,31,25 - 45,Caucasian,0,8,0,0,9,0,2013-01-13 03:26:50,2013-05-10 01:28:33,11014072CF10A,,2013-01-13,0,F,arrest case no charge,1,14000700CF10A,(F3),0,2014-01-17,Possession of Cocaine,2014-01-17,2014-01-17,,1,14004052CF10A,(F3),2014-03-22,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2013-01-13,Risk of Violence,4,Low,2013-01-13,2014-01-17,2014-01-17,9,117,369,0,1,1\r\n4576,christina deluca,christina,deluca,2013-03-20,Female,1986-01-18,30,25 - 45,Caucasian,0,3,0,0,1,-43,2013-02-05 04:36:11,2013-02-05 07:27:49,13001785CF10A,2013-02-05,,43,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-20,Risk of Violence,2,Low,2013-03-20,2013-02-05,2013-02-05,1,0,1108,0,0,0\r\n4581,frank battle,frank,battle,2013-09-10,Male,1955-09-10,60,Greater than 45,African-American,0,9,0,0,10,,,,12005812CF10A,,2013-05-29,104,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-10,Risk of Violence,4,Low,2013-09-10,2008-02-21,2009-08-18,10,0,934,0,0,0\r\n4582,renee monroe,renee,monroe,2013-03-19,Female,1969-07-27,46,Greater than 45,African-American,0,8,0,0,7,-1,2013-03-18 11:13:20,2013-04-06 08:43:39,13005330MM10A,2013-03-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-19,Risk of Violence,3,Low,2013-03-19,2013-03-18,2013-04-06,7,18,1109,0,0,0\r\n4584,scott jonas,scott,jonas,2013-04-18,Male,1953-09-17,62,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-04-17 12:42:29,2013-04-18 01:50:29,13007466MM10A,2013-04-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2013-04-17,2013-04-18,3,0,1079,0,0,0\r\n4591,clinton johnson,clinton,johnson,2013-01-06,Male,1991-01-15,25,25 - 45,Caucasian,0,9,2,1,9,0,2013-01-06 04:36:22,2013-03-01 07:44:45,12007890CF10A,,2013-01-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-06,Risk of Violence,9,High,2013-01-06,2013-01-06,2013-03-01,9,54,1181,0,0,0\r\n4593,talal abouhana,talal,abouhana,2013-02-17,Male,1978-04-19,38,25 - 45,Asian,0,1,0,0,0,-1,2013-02-16 08:04:12,2013-02-17 01:58:20,13003376MM10A,2013-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-17,Risk of Violence,1,Low,2013-02-17,2013-02-16,2013-02-17,0,0,1139,0,0,0\r\n4598,nikevis mitchell,nikevis,mitchell,2013-05-10,Male,1986-05-07,29,25 - 45,African-American,0,10,0,0,5,-1,2013-05-09 01:29:58,2013-05-11 06:16:17,13006644CF10A,2013-05-09,,1,F,Possession Burglary Tools,1,15001535MM30A,(M1),,2015-09-10,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,10,High,2013-05-10,Risk of Violence,8,High,2013-05-10,2013-05-09,2013-05-11,5,1,853,1,0,0\r\n4603,eric taylor,eric,taylor,2013-02-16,Male,1976-08-08,39,25 - 45,African-American,0,3,0,0,2,0,2013-02-16 03:49:30,2013-02-16 08:09:00,13002423CF10A,2013-02-16,,0,F,Possession of Cannabis,1,15025409TC10A,(M2),,2015-09-01,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-16,Risk of Violence,1,Low,2013-02-16,2013-02-16,2013-02-16,2,0,927,1,0,0\r\n4604,ovidio vasquez,ovidio,vasquez,2013-02-28,Male,1968-01-08,48,Greater than 45,Hispanic,0,1,0,0,1,0,2013-02-28 02:24:37,2013-08-14 11:30:08,13004137MM10A,2013-02-27,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-28,Risk of Violence,1,Low,2013-02-28,2013-02-28,2013-08-14,1,167,1128,0,0,0\r\n4605,suzette tillit,suzette,tillit,2013-05-04,Male,1984-07-15,31,25 - 45,Other,0,1,0,0,3,-1,2013-05-03 12:37:24,2013-05-04 05:39:19,13008631MM10A,2013-05-03,,1,M,Battery,1,14001219MM30A,(M2),,2013-12-20,Criminal Mischief,,,,1,14001219MM30A,(M1),2013-12-20,Battery,Risk of Recidivism,1,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2013-05-03,2013-05-04,3,0,230,1,1,1\r\n4609,suong huynh,suong,huynh,2013-11-09,Male,1965-10-18,50,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-08 09:47:29,2013-11-09 01:50:35,13021131MM10A,2013-11-08,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-09,Risk of Violence,1,Low,2013-11-09,2013-12-09,2013-12-10,0,0,30,0,0,0\r\n4611,alonzo long,alonzo,long,2013-09-27,Male,1988-07-07,27,25 - 45,African-American,0,1,0,0,0,0,2013-09-27 01:08:40,2013-09-28 01:42:06,13018441MM10A,2013-09-27,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-27,Risk of Violence,2,Low,2013-09-27,2013-09-27,2013-09-28,0,1,917,0,0,0\r\n4613,shirlene joseph,shirlene,joseph,2013-01-11,Female,1983-06-27,32,25 - 45,African-American,0,3,0,0,2,340,2013-12-17 12:16:41,2014-03-05 04:11:58,12001290CF10A,2012-01-25,,352,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-11,Risk of Violence,2,Low,2013-01-11,2013-12-17,2014-03-05,2,0,340,0,0,0\r\n4615,alexus jackson,alexus,jackson,2013-01-19,Female,1992-01-10,24,Less than 25,African-American,0,6,0,0,2,0,2013-01-19 06:28:29,2013-02-19 03:54:59,13003068TC10A,2013-01-19,,0,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-19,Risk of Violence,5,Medium,2013-01-19,2014-01-09,2014-01-09,2,31,355,0,0,0\r\n4618,alex louissaint,alex,louissaint,2013-10-22,Male,1995-01-05,21,Less than 25,African-American,1,6,1,0,2,-32,2013-09-20 10:32:05,2013-10-12 02:22:27,13013098CF10A,,2013-09-20,32,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-22,Risk of Violence,8,High,2013-10-22,2013-09-20,2013-10-12,2,0,892,0,0,0\r\n4620,fabio viana,fabio,viana,2013-02-18,Male,1974-12-10,41,25 - 45,Caucasian,0,2,0,0,0,0,2013-02-18 01:26:20,2013-02-18 06:29:40,13002455CF10A,2013-02-17,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-18,Risk of Violence,1,Low,2013-02-18,2013-02-18,2013-02-18,0,0,1138,0,0,0\r\n4622,donarth harris,donarth,harris,2013-05-22,Male,1977-12-15,38,25 - 45,Other,0,3,0,0,1,-1,2013-05-21 04:55:10,2013-05-22 03:30:14,13007263CF10A,2013-05-21,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-22,Risk of Violence,3,Low,2013-05-22,2013-05-21,2013-05-22,1,0,1045,0,0,0\r\n4624,prince brown,prince,brown,2014-01-04,Male,1983-09-17,32,25 - 45,African-American,0,8,0,0,2,0,2014-01-04 02:55:07,2014-01-23 10:05:15,14000150CF10A,2014-01-03,,1,F,Possession of Cocaine,1,14005731MM10A,(M1),0,2014-04-02,Battery,2014-04-02,2014-04-24,,1,14005731MM10A,(M1),2014-04-02,Battery,Risk of Recidivism,8,High,2014-01-04,Risk of Violence,6,Medium,2014-01-04,2014-04-02,2014-04-24,2,19,88,1,1,1\r\n4625,joseph massucco,joseph,massucco,2013-10-15,Male,1989-04-16,27,25 - 45,Caucasian,0,6,0,0,5,414,2014-12-03 01:33:47,2015-01-02 01:47:50,13014425CF10A,2013-10-15,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-15,Risk of Violence,3,Low,2013-10-15,2014-12-03,2015-01-02,5,0,414,0,0,0\r\n4626,amanda olek,amanda,olek,2013-01-22,Female,1992-02-05,24,Less than 25,Caucasian,0,5,0,0,1,,,,12013500CF10A,2012-09-13,,131,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-22,Risk of Violence,4,Low,2013-01-22,,,1,0,1165,0,0,0\r\n4628,james johnson,james,johnson,2013-02-08,Male,1991-03-23,25,25 - 45,Caucasian,0,9,0,0,1,0,2013-02-08 03:23:59,2013-04-08 04:29:04,13001970CF10A,2013-02-08,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-08,Risk of Violence,9,High,2013-02-08,2013-07-22,2013-07-30,1,59,164,0,0,0\r\n4629,kevin burns,kevin,burns,2013-10-10,Male,1961-04-16,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-09 05:20:59,2013-11-08 10:11:50,13019211MM10A,2013-10-09,,1,M,Battery,1,15009586MM10A,(M1),,2015-08-19,Battery,,,,1,15009586MM10A,(M1),2015-08-19,Battery,Risk of Recidivism,1,Low,2013-10-10,Risk of Violence,2,Low,2013-10-10,2013-10-09,2013-11-08,0,29,678,1,1,1\r\n4631,andre veira,andre,veira,2014-07-05,Male,1987-11-07,28,25 - 45,African-American,1,10,0,0,7,-1,2014-07-04 08:01:25,2014-07-05 08:26:16,14009213CF10A,2014-07-04,,1,F,Grand Theft in the 3rd Degree,1,14096127TC30A,(M2),78,2014-11-20,Operating W/O Valid License,2015-02-06,2015-02-07,,1,15006923CF10A,(F3),2015-03-01,Felony Battery (Dom Strang),Risk of Recidivism,10,High,2014-07-05,Risk of Violence,7,Medium,2014-07-05,2014-11-12,2014-11-13,7,0,130,0,1,1\r\n4639,claudia arbelaez,claudia,arbelaez,2014-01-12,Female,1977-02-09,39,25 - 45,Hispanic,0,4,0,2,10,-1,2014-01-11 09:59:10,2014-01-12 02:30:18,14000497CF10A,2014-01-11,,1,F,Battery on a Person Over 65,1,14011313CF10A,(M1),1,2014-08-18,Resist/Obstruct W/O Violence,2014-08-19,2014-10-07,,1,14011313CF10A,(F3),2014-08-18,Battery on Law Enforc Officer,Risk of Recidivism,4,Low,2014-01-12,Risk of Violence,3,Low,2014-01-12,2016-03-23,2016-03-24,10,0,218,1,1,1\r\n4641,elizabeth maddox,elizabeth,maddox,2013-01-02,Female,1981-02-20,35,25 - 45,Caucasian,0,4,0,0,1,-1,2013-01-01 10:04:07,2013-01-02 01:12:01,13000041MM10A,2013-01-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-02,Risk of Violence,2,Low,2013-01-02,2013-01-01,2013-01-02,1,0,1185,0,0,0\r\n4643,devorist calloway,devorist,calloway,2013-05-07,Male,1984-01-25,32,25 - 45,African-American,0,10,1,3,12,-1,2013-05-06 08:54:39,2013-05-08 02:59:50,13008754MM10A,2013-05-06,,1,M,Battery,1,13008651CF10A,(F3),0,2013-06-19,Pos Cannabis W/Intent Sel/Del,2013-06-19,2013-06-20,,1,14012818MM10A,(M1),2014-06-13,Battery,Risk of Recidivism,10,High,2013-05-07,Risk of Violence,6,Medium,2013-05-07,2013-06-19,2013-06-20,12,1,43,1,1,1\r\n4645,denzle langley,denzle,langley,2013-10-03,Male,1947-04-04,69,Greater than 45,Other,0,1,0,0,0,-1,2013-10-02 11:30:23,2013-10-03 08:15:01,13018771MM10A,2013-10-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-10-02,2013-10-03,0,0,911,0,0,0\r\n4647,mateus slovinski,mateus,slovinski,2013-12-16,Male,1994-10-17,21,Less than 25,Caucasian,0,6,0,1,1,-21,2013-11-25 09:39:37,2013-11-26 02:01:43,13022149MM10A,2013-11-25,,21,M,Criminal Mischief Damage <$200,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-16,Risk of Violence,8,High,2013-12-16,2013-11-25,2013-11-26,1,0,837,0,0,0\r\n4648,imad farah,imad,farah,2013-05-08,Male,1974-11-11,41,25 - 45,Caucasian,0,1,0,0,1,0,2013-05-08 10:07:34,2013-05-10 11:57:26,12018476CF10A,,2013-05-08,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-08,Risk of Violence,1,Low,2013-05-08,2013-05-08,2013-05-10,1,2,1059,0,0,0\r\n4649,wilkins robles,wilkins,robles,2013-07-15,Male,1994-08-02,21,Less than 25,Hispanic,0,5,0,0,0,-3,2013-07-12 04:10:13,2013-07-13 01:26:10,13009825CF10A,2013-07-12,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-15,Risk of Violence,6,Medium,2013-07-15,2013-07-12,2013-07-13,0,0,991,0,0,0\r\n4651,zachary simon,zachary,simon,2013-01-27,Male,1977-05-27,38,25 - 45,African-American,0,8,0,0,0,-1,2013-01-26 08:27:54,2013-01-31 08:48:08,13001280CF10A,2013-01-26,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-27,Risk of Violence,6,Medium,2013-01-27,2013-01-26,2013-01-31,0,4,1160,0,0,0\r\n4655,mckenzy bienaime,mckenzy,bienaime,2013-05-04,Male,1984-05-08,31,25 - 45,Caucasian,0,8,0,0,10,185,2013-11-05 12:03:59,2013-11-05 02:05:25,11018233MM10A,2011-08-13,,630,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-04,Risk of Violence,4,Low,2013-05-04,2013-11-05,2013-11-05,10,0,185,0,0,0\r\n4657,pablo cabrera,pablo,cabrera,2013-08-27,Male,1980-09-17,35,25 - 45,Caucasian,0,2,0,0,2,0,2013-08-27 01:13:03,2013-09-30 06:47:08,13016322MM10A,2013-08-27,,0,M,Viol Prot Injunc Repeat Viol,1,14001030MM10A,(M1),183,2013-11-13,Viol Injunct Domestic Violence,2014-05-15,2014-07-03,,1,15001398CF10A,(F3),2014-07-01,Stalking (Aggravated),Risk of Recidivism,2,Low,2013-08-27,Risk of Violence,3,Low,2013-08-27,2013-08-27,2013-09-30,2,34,78,1,1,1\r\n4658,bendik bienaime,bendik,bienaime,2013-03-27,Male,1981-08-26,34,25 - 45,African-American,0,6,0,0,5,-13,2013-03-14 10:36:21,2013-03-16 12:30:05,13005092MM10A,2013-03-14,,13,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-27,Risk of Violence,6,Medium,2013-03-27,2013-03-14,2013-03-16,5,0,1101,0,0,0\r\n4659,steven cooper,steven,cooper,2013-12-11,Male,1963-11-13,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-10 06:48:24,2013-12-11 01:30:42,13022861MM10A,2013-12-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2013-12-10,2013-12-11,0,0,842,0,0,0\r\n4660,raphale demeritte,raphale,demeritte,2013-01-08,Male,1994-10-16,21,Less than 25,African-American,0,8,0,0,0,-1,2013-01-07 09:42:31,2013-01-09 01:05:12,13000282CF10A,,2013-01-07,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-08,Risk of Violence,8,High,2013-01-08,2014-07-08,2014-07-08,0,1,546,0,0,0\r\n4661,patrick clark,patrick,clark,2014-03-06,Male,1973-03-17,43,25 - 45,African-American,0,2,0,0,8,-1,2014-03-05 03:32:15,2014-03-06 08:44:10,14003805MM10A,2014-03-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-06,Risk of Violence,2,Low,2014-03-06,2014-03-05,2014-03-06,8,0,757,0,0,0\r\n4662,nicole coggio,nicole,coggio,2013-01-28,Female,1983-09-20,32,25 - 45,Caucasian,0,2,0,0,0,-1,2013-01-27 12:16:14,2013-01-28 12:35:10,13001301CF10A,2013-01-26,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-28,Risk of Violence,2,Low,2013-01-28,2013-01-27,2013-01-28,0,0,1159,0,0,0\r\n4665,briana adhemar,briana,adhemar,2013-12-27,Female,1994-07-18,21,Less than 25,African-American,0,4,0,0,0,-1,2013-12-26 06:13:31,2013-12-27 07:35:30,13023835MM10A,2013-12-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-27,Risk of Violence,5,Medium,2013-12-27,2013-12-26,2013-12-27,0,0,826,0,0,0\r\n4668,flora valliere,flora,valliere,2013-12-24,Female,1950-12-04,65,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-12-23 12:11:10,2013-12-23 01:21:39,13017624CF10A,2013-12-22,,2,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-24,Risk of Violence,1,Low,2013-12-24,2013-12-23,2013-12-23,1,0,829,0,0,0\r\n4670,vashty mayor,vashty,mayor,2013-02-16,Female,1988-07-14,27,25 - 45,Caucasian,0,3,0,0,0,0,2013-02-16 04:48:14,2013-02-17 09:06:22,13003401MM10A,2013-02-16,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-16,Risk of Violence,3,Low,2013-02-16,2013-02-16,2013-02-17,0,1,1140,0,0,0\r\n4673,romel jeanlouis,romel,jeanlouis,2013-03-19,Male,1990-12-04,25,25 - 45,African-American,0,8,0,1,1,620,2014-11-29 10:21:00,2015-03-14 04:18:32,13005309MM10A,2013-03-18,,1,M,Possess Cannabis/20 Grams Or Less,1,16002988CF10A,(F3),,2016-03-09,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-19,Risk of Violence,8,High,2013-03-19,2014-11-29,2015-03-14,1,0,620,0,0,0\r\n4677,annonce georges,annonce,georges,2013-12-07,Male,1973-11-11,42,25 - 45,Other,0,3,0,0,6,-1,2013-12-06 03:17:43,2013-12-07 07:51:47,13022647MM10A,2013-12-06,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-07,Risk of Violence,1,Low,2013-12-07,2015-08-01,2015-08-01,6,0,602,0,0,0\r\n4678,larry king,larry,king,2013-04-22,Male,1952-08-16,63,Greater than 45,African-American,0,3,0,0,6,-1,2013-04-21 11:10:45,2013-05-16 06:46:14,10016314CF10A,,2013-04-22,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-22,Risk of Violence,2,Low,2013-04-22,2013-04-21,2013-05-16,6,24,1075,0,0,0\r\n4679,jose rivera,jose,rivera,2013-08-10,Male,1975-06-05,40,25 - 45,Caucasian,0,2,0,0,0,0,2013-08-10 12:52:53,2013-08-10 09:20:05,13015056MM10A,2013-08-09,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-10,Risk of Violence,1,Low,2013-08-10,2013-08-10,2013-08-10,0,0,965,0,0,0\r\n4680,ricardo centurion,ricardo,centurion,2013-04-12,Male,1981-11-16,34,25 - 45,Hispanic,0,2,0,0,0,-1,2013-04-11 09:53:54,2013-04-12 09:11:30,13005255CF10A,2013-04-11,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-12,Risk of Violence,3,Low,2013-04-12,2013-04-11,2013-04-12,0,0,1085,0,0,0\r\n4682,russell desvergers,russell,desvergers,2013-10-09,Male,1988-05-19,27,25 - 45,Caucasian,0,2,0,0,1,-1,2013-10-08 11:08:37,2013-10-09 08:35:23,13019140MM10A,2013-10-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-09,Risk of Violence,2,Low,2013-10-09,2013-10-08,2013-10-09,1,0,905,0,0,0\r\n4683,josue sanchez,josue,sanchez,2014-03-17,Male,1986-08-05,29,25 - 45,Hispanic,0,1,0,0,0,-1,2014-03-16 05:03:20,2014-03-17 08:53:08,14004563MM10A,2014-03-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-16,2014-03-17,0,0,746,0,0,0\r\n4686,andria vassell,andria,vassell,2013-05-14,Female,1965-07-25,50,Greater than 45,African-American,0,1,0,0,0,-1,2013-05-13 09:20:14,2013-05-14 09:21:11,13009247MM10A,2013-05-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,2,Low,2013-05-14,2013-05-13,2013-05-14,0,0,1053,0,0,0\r\n4688,tramaine conley,tramaine,conley,2013-05-13,Male,1984-05-12,31,25 - 45,African-American,0,2,0,0,1,,,,13012254TC10A,2013-03-06,,68,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,,,1,0,1054,0,0,0\r\n4692,george sisler,george,sisler,2013-04-30,Male,1968-08-12,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-29 09:40:41,2013-04-30 01:06:20,13008304MM10A,2013-04-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-30,Risk of Violence,1,Low,2013-04-30,2013-04-29,2013-04-30,0,0,1067,0,0,0\r\n4694,joseph torres,joseph,torres,2014-01-27,Male,1971-11-17,44,25 - 45,Caucasian,0,4,0,0,2,-2,2014-01-25 12:28:35,2014-01-25 04:53:46,14001375MM10A,2014-01-24,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2014-01-25,2014-01-25,2,0,795,0,0,0\r\n4696,jorge hourruitiner,jorge,hourruitiner,2013-12-26,Male,1960-03-03,56,Greater than 45,Hispanic,0,1,0,0,0,-2,2013-12-24 10:08:42,2013-12-25 11:53:05,13017769CF10A,2013-12-24,,2,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-26,Risk of Violence,1,Low,2013-12-26,2013-12-24,2013-12-25,0,0,827,0,0,0\r\n4697,eliott arcia,eliott,arcia,2013-10-13,Male,1992-10-05,23,Less than 25,African-American,0,3,0,0,0,-1,2013-10-12 10:31:42,2013-10-25 08:54:33,13019373MM10A,2013-10-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-13,Risk of Violence,5,Medium,2013-10-13,2013-10-12,2013-10-25,0,12,901,0,0,0\r\n4698,abe navarro,abe,navarro,2013-03-20,Male,1961-12-22,54,Greater than 45,African-American,0,6,0,0,10,0,2013-03-20 01:48:12,2013-04-19 07:33:20,13004033CF10A,2013-03-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-03-20,2013-04-19,10,30,1108,0,0,0\r\n4701,robert sellars,robert,sellars,2013-08-18,Male,1977-04-27,38,25 - 45,Caucasian,0,10,0,0,17,-1,2013-08-17 04:00:03,2014-02-13 10:28:00,13011554CF10A,2013-08-17,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-18,Risk of Violence,8,High,2013-08-18,2013-08-17,2014-02-13,17,179,957,0,0,0\r\n4703,gary camilo,gary,camilo,2013-02-11,Male,1990-12-10,25,25 - 45,Hispanic,0,2,0,0,0,0,2013-02-11 04:13:47,2013-02-11 06:53:25,13002139CF10A,2013-02-10,,1,F,Pos Cannabis W/Intent Sel/Del,1,13022555MM10A,(M1),,2013-11-06,Possess Cannabis/20 Grams Or Less,,,,1,15011390MM10A,(M1),2015-10-29,Battery,Risk of Recidivism,2,Low,2013-02-11,Risk of Violence,3,Low,2013-02-11,2013-06-27,2013-06-28,0,0,136,0,1,1\r\n4708,jean valeus,jean,valeus,2013-12-18,Male,1984-11-25,31,25 - 45,African-American,0,2,0,0,4,-70,2013-10-09 10:45:21,2013-12-18 10:47:06,13015383CF10A,,2013-11-01,47,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-18,Risk of Violence,1,Low,2013-12-18,2013-10-09,2013-12-18,4,0,835,0,0,0\r\n4711,carline germaine,carline,germaine,2013-08-08,Female,1977-03-01,39,25 - 45,African-American,0,1,0,0,1,-42,2013-06-27 08:42:08,2013-07-03 01:12:28,13009223CF10A,,2013-06-28,41,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-08,Risk of Violence,1,Low,2013-08-08,2013-06-27,2013-07-03,1,0,967,0,0,0\r\n4712,paul johnson,paul,johnson,2014-01-08,Male,1959-06-25,56,Greater than 45,African-American,0,2,0,0,6,-1,2014-01-07 11:08:37,2014-01-08 12:23:20,14000263CF10A,2014-01-07,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,1,Low,2014-01-08,2014-03-03,2014-03-11,6,0,54,0,0,0\r\n4718,jeffery mann,jeffery,mann,2013-08-07,Male,1976-11-29,39,25 - 45,Caucasian,0,1,0,0,1,-29,2013-07-09 03:08:15,2013-08-07 10:44:26,13009621CF10A,2013-07-09,,29,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-07,Risk of Violence,1,Low,2013-08-07,2013-07-09,2013-08-07,1,0,968,0,0,0\r\n4719,lindsey jorgensen,lindsey,jorgensen,2013-12-28,Male,1986-06-01,29,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-28 06:06:48,2013-12-29 02:05:08,13023925MM10A,2013-12-28,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-28,Risk of Violence,2,Low,2013-12-28,2013-12-28,2013-12-29,0,1,825,0,0,0\r\n4720,alexandria smiley,alexandria,smiley,2013-02-12,Female,1988-04-02,28,25 - 45,Caucasian,0,8,0,0,3,,,,10018447CF10A,2010-10-14,,852,F,Felony Committing Prostitution,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-12,Risk of Violence,3,Low,2013-02-12,,,3,0,1144,0,0,0\r\n4722,daniel heim,daniel,heim,2013-12-09,Male,1989-10-24,26,25 - 45,Caucasian,0,5,0,0,0,-2,2013-12-07 11:51:28,2013-12-08 02:29:07,13022678MM10A,2013-12-07,,2,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-09,Risk of Violence,3,Low,2013-12-09,2013-12-07,2013-12-08,0,0,844,0,0,0\r\n4725,sharon johnson,sharon,johnson,2013-02-28,Female,1964-12-02,51,Greater than 45,African-American,1,10,0,0,10,173,2013-08-20 06:30:52,2013-10-24 11:30:00,11019445CF10A,,2012-08-16,196,F,arrest case no charge,1,16002338MM10A,(M2),,2016-02-25,Petit Theft,,,,0,,,,,Risk of Recidivism,10,High,2013-02-28,Risk of Violence,6,Medium,2013-02-28,2013-08-20,2013-10-24,10,0,173,0,0,0\r\n4726,venetta mapp,venetta,mapp,2014-03-07,Female,1958-02-15,58,Greater than 45,Other,0,1,0,0,0,-1,2014-03-06 07:46:10,2014-03-07 09:31:06,14003198CF10A,2014-03-06,,1,F,Harass Witness/Victm/Informnt,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-07,Risk of Violence,1,Low,2014-03-07,2014-03-06,2014-03-07,0,0,756,0,0,0\r\n4731,taro beneby,taro,beneby,2013-08-17,Male,1994-11-27,21,Less than 25,African-American,0,5,0,0,0,-1,2013-08-16 08:09:44,2013-09-27 10:31:00,13011520CF10A,2013-08-16,,1,F,Grand Theft in the 3rd Degree,1,14002797CF10A,(F3),,2013-11-01,Child Abuse,,,,1,14002797CF10A,(F3),2013-11-01,Child Abuse,Risk of Recidivism,5,Medium,2013-08-17,Risk of Violence,7,Medium,2013-08-17,2013-08-16,2013-09-27,0,41,76,1,1,1\r\n4732,glenn weston,glenn,weston,2013-02-16,Male,1995-01-31,21,Less than 25,African-American,0,5,0,0,0,-1,2013-02-15 02:16:11,2013-04-03 01:53:18,13002367CF10A,2013-02-15,,1,F,Burglary Unoccupied Dwelling,1,15064458TC40A,(M2),,2015-11-04,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-16,Risk of Violence,8,High,2013-02-16,2013-02-15,2013-04-03,0,46,991,1,0,0\r\n4735,clevent louima,clevent,louima,2013-08-11,Male,1992-10-09,23,Less than 25,African-American,0,7,0,0,0,-1,2013-08-10 04:10:11,2013-08-12 07:20:06,13011247CF10A,2013-08-10,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-11,Risk of Violence,8,High,2013-08-11,2014-01-01,2014-06-03,0,1,143,0,0,0\r\n4737,david robinson,david,robinson,2013-08-23,Male,1970-02-28,46,Greater than 45,African-American,0,4,0,0,3,-1,2013-08-22 10:32:02,2013-08-24 12:37:15,13011344CF10A,,2013-08-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-23,Risk of Violence,3,Low,2013-08-23,2013-08-22,2013-08-24,3,1,952,0,0,0\r\n4743,william rodriguez,william,rodriguez,2013-05-09,Male,1980-08-25,35,25 - 45,Hispanic,0,7,0,0,5,0,2013-05-09 02:43:09,2013-05-09 07:43:17,13006654CF10A,2013-05-09,,0,F,Possession of Cocaine,1,15007532CF10A,(F3),,2015-06-07,Felony Batt(Great Bodily Harm),,,,1,15007532CF10A,(F3),2015-06-07,Felony Batt(Great Bodily Harm),Risk of Recidivism,7,Medium,2013-05-09,Risk of Violence,5,Medium,2013-05-09,2016-03-08,2020-01-01,5,0,759,1,0,0\r\n4747,authry heard,authry,heard,2013-06-13,Male,1981-09-06,34,25 - 45,African-American,0,7,0,0,12,-63,2013-04-11 12:32:24,2013-06-12 11:30:22,13005174CF10A,2013-04-10,,64,F,Deliver Cocaine,1,16005747TC30A,(M2),,2015-09-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-06-13,Risk of Violence,6,Medium,2013-06-13,2013-04-11,2013-06-12,12,0,811,1,0,0\r\n4748,ebony wooden,ebony,wooden,2014-01-31,Female,1986-01-10,30,25 - 45,African-American,0,3,0,0,0,0,2014-01-31 01:38:00,2014-01-31 01:25:37,14001683MM10A,2014-01-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-31,Risk of Violence,2,Low,2014-01-31,2014-01-31,2014-01-31,0,0,791,0,0,0\r\n4749,denny rivera,denny,rivera,2014-01-24,Male,1968-10-09,47,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-01-23 06:45:57,2014-01-24 11:04:07,14001002CF10A,2014-01-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-24,Risk of Violence,1,Low,2014-01-24,2014-01-23,2014-01-24,1,0,798,0,0,0\r\n4750,david ellis,david,ellis,2013-06-26,Male,1985-09-20,30,25 - 45,Caucasian,0,4,0,0,4,-25,2013-06-01 07:39:34,2013-06-05 03:36:50,13007791CF10A,2013-06-01,,25,F,Use of Anti-Shoplifting Device,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-26,Risk of Violence,2,Low,2013-06-26,2013-10-31,2013-11-07,4,0,127,0,0,0\r\n4753,jose carrascoe,jose,carrascoe,2013-12-01,Male,1982-08-31,33,25 - 45,Hispanic,0,1,0,0,0,,,,13022344MM10A,2013-11-30,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-01,Risk of Violence,1,Low,2013-12-01,,,0,0,852,0,0,0\r\n4754,robert kathary,robert,kathary,2013-02-22,Male,1969-01-15,47,Greater than 45,African-American,0,1,0,0,1,-23,2013-01-30 02:41:32,2013-01-31 02:44:11,13001490CF10A,2013-01-30,,23,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-22,Risk of Violence,1,Low,2013-02-22,2013-05-03,2013-05-28,1,0,70,0,0,0\r\n4760,samuel lamie,samuel,lamie,2013-07-22,Male,1965-11-24,50,Greater than 45,Caucasian,0,2,0,0,11,-31,2013-06-21 11:46:14,2013-07-18 08:18:43,12016410CF10A,,2013-06-21,31,F,arrest case no charge,1,14007834CF10A,(F2),0,2014-06-06,Agg Battery Grt/Bod/Harm,2014-06-06,2014-09-04,,1,14007834CF10A,(F2),2014-06-06,Agg Battery Grt/Bod/Harm,Risk of Recidivism,2,Low,2013-07-22,Risk of Violence,1,Low,2013-07-22,2014-06-06,2014-09-04,11,0,319,1,1,1\r\n4763,jessica brekke,jessica,brekke,2013-04-04,Male,1992-04-10,24,Less than 25,Caucasian,0,3,0,2,1,-1,2013-04-03 11:02:12,2013-04-04 01:29:44,13004768CF10A,2013-04-03,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-04,Risk of Violence,4,Low,2013-04-04,2013-04-03,2013-04-04,1,0,1093,0,0,0\r\n4764,ssecrette brown,ssecrette,brown,2013-01-14,Female,1993-10-07,22,Less than 25,African-American,0,9,0,0,2,,,,12016221CF10A,2012-11-03,,72,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-14,Risk of Violence,6,Medium,2013-01-14,,,2,0,1173,0,0,0\r\n4765,andrew barnett,andrew,barnett,2013-08-20,Male,1970-09-06,45,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-08-19 04:52:26,2013-08-20 07:11:45,13011617CF10A,2013-08-19,,1,F,Aggrav Stalking After Injunctn,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-19,2013-08-20,3,0,955,0,0,0\r\n4767,victor malaric,victor,malaric,2013-03-24,Male,1977-01-06,39,25 - 45,Caucasian,0,2,0,0,3,0,2013-03-24 02:38:00,2013-03-24 08:58:43,13004251CF10A,2013-03-24,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-24,Risk of Violence,1,Low,2013-03-24,2013-03-24,2013-03-24,3,0,1104,0,0,0\r\n4769,sean mccabe,sean,mccabe,2013-08-15,Male,1976-04-17,40,25 - 45,Caucasian,0,3,0,0,1,-1,2013-08-14 11:28:56,2013-09-25 11:09:03,13011437CF10A,2013-08-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-15,Risk of Violence,1,Low,2013-08-15,2014-06-02,2014-06-09,1,41,291,0,0,0\r\n4772,bernard parker,bernard,parker,2013-01-21,Male,1991-08-16,24,Less than 25,African-American,0,10,0,0,0,-1,2013-01-20 09:19:10,2013-01-21 08:17:47,13000939CF10A,2013-01-20,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-21,Risk of Violence,6,Medium,2013-01-21,2013-01-20,2013-01-21,0,0,1166,0,0,0\r\n4773,alexandrea miles,alexandrea,miles,2014-01-05,Male,1992-12-30,23,Less than 25,African-American,0,7,0,1,1,-1,2014-01-04 09:53:02,2014-01-05 08:05:17,12005832CF10A,2012-04-18,,627,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-05,Risk of Violence,4,Low,2014-01-05,2014-01-04,2014-01-05,1,0,817,0,0,0\r\n4774,douglas mason,douglas,mason,2013-03-01,Male,1954-10-05,61,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-01 05:14:32,2013-03-01 01:48:41,13004215MM10A,2013-03-01,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-03-01,2013-03-01,0,0,1127,0,0,0\r\n4780,jeffrey tapia,jeffrey,tapia,2014-01-02,Male,1993-02-14,23,Less than 25,Caucasian,0,6,0,0,2,-20,2013-12-13 02:14:06,2013-12-21 02:08:04,13017246CF10A,2013-12-12,,21,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-02,Risk of Violence,7,Medium,2014-01-02,2013-12-13,2013-12-21,2,0,820,0,0,0\r\n4784,arthur morgan,arthur,morgan,2013-04-11,Male,1976-01-15,40,25 - 45,African-American,1,8,0,0,15,-1,2013-04-10 11:19:32,2013-06-04 05:08:34,07016234CF10A,,2013-04-10,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-11,Risk of Violence,6,Medium,2013-04-11,2013-04-10,2013-06-04,15,54,1086,0,0,0\r\n4787,paul brown,paul,brown,2013-01-03,Male,1971-06-16,44,25 - 45,African-American,0,2,0,0,0,-1,2013-01-02 11:12:01,2013-01-06 01:18:20,13000082CF10A,,2013-01-02,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2013-01-02,2013-01-06,0,3,1184,0,0,0\r\n4792,nicole hewitt,nicole,hewitt,2013-10-29,Female,1994-04-11,22,Less than 25,African-American,0,9,1,0,3,-2,2013-10-27 04:53:42,2013-10-28 07:53:41,13020365MM10A,2013-10-27,,2,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-29,Risk of Violence,6,Medium,2013-10-29,2013-10-27,2013-10-28,3,0,885,0,0,0\r\n4795,lancy duggins,lancy,duggins,2013-05-15,Male,1958-12-27,57,Greater than 45,African-American,0,8,0,0,2,,,,11003377CF10A,2011-02-23,,812,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-15,Risk of Violence,4,Low,2013-05-15,2003-05-16,2003-11-08,2,0,1052,0,0,0\r\n4796,cassio slowden,cassio,slowden,2013-03-23,Male,1991-10-05,24,Less than 25,Other,0,6,0,0,5,-1,2013-03-22 03:39:01,2013-03-27 12:03:14,13000174MM10A,,2013-03-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-23,Risk of Violence,4,Low,2013-03-23,2013-11-27,2013-12-04,5,4,249,0,0,0\r\n4797,claudio tamarez,claudio,tamarez,2013-04-14,Male,1983-02-08,33,25 - 45,Caucasian,0,4,0,0,9,0,2013-04-14 01:37:01,2013-04-14 07:07:32,13005352CF10A,2013-04-14,,0,F,Possession Of Phentermine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-14,Risk of Violence,3,Low,2013-04-14,2013-06-12,2013-06-13,9,0,59,0,0,0\r\n4801,elie dubois,elie,dubois,2013-08-22,Male,1984-12-29,31,25 - 45,Other,0,1,1,0,5,-1,2013-08-21 01:16:09,2013-08-22 08:48:59,13010985CF10A,,2013-08-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-22,Risk of Violence,2,Low,2013-08-22,2013-09-16,2013-11-09,5,0,25,0,0,0\r\n4802,stephen marsh,stephen,marsh,2014-03-28,Male,1959-09-19,56,Greater than 45,Caucasian,0,5,0,0,7,-38,2014-02-18 07:26:02,2014-02-27 08:35:02,14002311CF10A,2014-02-18,,38,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-28,Risk of Violence,1,Low,2014-03-28,2014-02-18,2014-02-27,7,0,735,0,0,0\r\n4804,cristino lozano,cristino,lozano,2013-09-16,Male,1949-03-24,67,Greater than 45,Hispanic,0,1,0,0,2,67,2013-11-22 01:09:28,2014-02-28 04:55:27,13011978CF10A,2013-03-24,,176,F,Fel Drive License Perm Revoke,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2013-11-22,2014-02-28,2,0,67,0,0,0\r\n4808,john williams,john,williams,2013-02-21,Male,1958-10-08,57,Greater than 45,African-American,0,8,0,0,23,-1,2013-02-20 01:25:04,2013-03-22 05:54:39,13002585CF10A,,2013-02-20,1,F,arrest case no charge,1,15015357CF10A,(F2),,2015-11-29,Robbery / No Weapon,,,,1,15015357CF10A,(F2),2015-11-29,Robbery / No Weapon,Risk of Recidivism,8,High,2013-02-21,Risk of Violence,7,Medium,2013-02-21,2013-11-20,2014-08-07,23,29,272,0,1,1\r\n4811,francis gibbons,francis,gibbons,2013-08-05,Male,1951-04-01,65,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-08-04 08:51:09,2013-08-27 12:24:30,13010824CF10A,2013-08-04,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-05,Risk of Violence,2,Low,2013-08-05,2013-09-26,2013-10-09,3,22,52,0,0,0\r\n4812,peyton nunes,peyton,nunes,2013-02-27,Female,1993-10-23,22,Less than 25,Caucasian,0,9,0,0,0,-1,2013-02-26 04:51:22,2013-02-27 09:49:12,13003994MM10A,2013-02-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-27,Risk of Violence,7,Medium,2013-02-27,2013-02-26,2013-02-27,0,0,1129,0,0,0\r\n4815,nicole howard,nicole,howard,2013-08-14,Female,1981-04-10,35,25 - 45,African-American,0,6,0,0,2,-15,2013-07-30 05:05:43,2013-08-14 02:10:10,12012951CF10A,,2013-07-30,15,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-14,Risk of Violence,2,Low,2013-08-14,2014-04-03,2014-04-24,2,0,232,0,0,0\r\n4817,jacob humes,jacob,humes,2013-01-27,Male,1987-01-05,29,25 - 45,African-American,0,3,1,0,2,-1,2013-01-26 01:09:16,2013-01-28 03:32:20,13001886MM10A,2013-01-26,,1,M,Battery,1,13009010CF10A,(F3),0,2013-06-26,Aggravated Assault W/dead Weap,2013-06-26,2013-06-29,,1,13009010CF10A,(F3),2013-06-26,Aggravated Assault W/dead Weap,Risk of Recidivism,3,Low,2013-01-27,Risk of Violence,4,Low,2013-01-27,2013-06-26,2013-06-29,2,1,150,1,1,1\r\n4821,cambrell smart,cambrell,smart,2014-01-27,Male,1993-10-29,22,Less than 25,African-American,0,10,0,0,5,-91,2013-10-28 04:00:42,2013-10-29 04:10:51,13014176MM10A,,2013-12-18,40,M,arrest case no charge,1,15012428CF10A,(F3),,2015-08-25,False Imprisonment,,,,1,15012428CF10A,(F2),2015-08-25,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2014-01-27,Risk of Violence,6,Medium,2014-01-27,2014-06-28,2014-11-25,5,0,152,0,1,1\r\n4824,quavon moore,quavon,moore,2013-10-14,Male,1985-03-12,31,25 - 45,African-American,0,8,0,0,6,-39,2013-09-05 04:24:09,2013-09-24 10:11:00,13007122MM10A,,2013-09-05,39,M,arrest case no charge,1,16000353CF10A,(M1),0,2016-01-09,Battery,2016-01-09,2016-02-11,,1,16000353CF10A,(F3),2016-01-09,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2013-10-14,Risk of Violence,5,Medium,2013-10-14,2014-01-02,2014-01-10,6,0,80,0,0,0\r\n4827,lynell freeman,lynell,freeman,2013-04-18,Female,1959-10-21,56,Greater than 45,African-American,0,1,0,0,1,-1,2013-04-17 05:00:58,2013-04-18 05:52:26,13005508CF10A,2013-04-17,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2013-04-17,2013-04-18,1,0,1079,0,0,0\r\n4828,austin kanefsky,austin,kanefsky,2013-08-27,Male,1991-02-25,25,25 - 45,Caucasian,0,6,0,0,2,-29,2013-07-29 09:57:48,2013-08-27 10:56:42,13007305CF10A,,2013-08-13,14,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-27,Risk of Violence,5,Medium,2013-08-27,2013-07-29,2013-08-27,2,0,948,0,0,0\r\n4831,gian morales,gian,morales,2013-05-20,Male,1982-07-08,33,25 - 45,Caucasian,0,4,0,0,10,0,2013-05-20 02:19:52,2013-05-21 04:20:08,13009727MM10A,2013-05-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-20,Risk of Violence,2,Low,2013-05-20,2013-05-20,2013-05-21,10,1,1047,0,0,0\r\n4833,kevin lowe,kevin,lowe,2013-02-11,Male,1990-09-28,25,25 - 45,Caucasian,0,5,0,0,2,-1,2013-02-10 11:12:43,2013-02-12 12:21:21,13002073CF10A,2013-02-10,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-11,Risk of Violence,6,Medium,2013-02-11,2014-05-21,2014-07-16,2,1,464,0,0,0\r\n4834,miesha mills,miesha,mills,2013-05-05,Female,1988-04-29,27,25 - 45,African-American,0,5,0,0,3,-1,2013-05-04 06:24:35,2013-05-05 03:34:33,13006415CF10A,2013-05-04,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-05,Risk of Violence,3,Low,2013-05-05,2014-05-13,2014-05-20,3,0,373,0,0,0\r\n4835,steven moss,steven,moss,2013-04-02,Male,1978-07-10,37,25 - 45,African-American,0,10,0,0,1,-1,2013-04-01 05:11:13,2013-04-04 08:57:34,13004687CF10A,2013-04-01,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-02,Risk of Violence,10,High,2013-04-02,2013-08-28,2013-09-12,1,2,148,0,0,0\r\n4837,edward burks,edward,burks,2013-06-03,Male,1974-12-12,41,25 - 45,Caucasian,0,1,0,0,2,-3,2013-05-31 08:17:28,2013-06-01 08:45:39,13028890TC10A,,2013-05-31,3,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-03,Risk of Violence,1,Low,2013-06-03,2013-05-31,2013-06-01,2,0,1033,0,0,0\r\n4839,charles tarver,charles,tarver,2013-12-24,Male,1980-11-17,35,25 - 45,African-American,0,8,0,1,5,-19,2013-12-05 01:07:45,2013-12-11 11:57:00,13018015CF10A,2013-12-08,,16,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-24,Risk of Violence,5,Medium,2013-12-24,2014-03-26,2014-04-25,5,0,92,0,0,0\r\n4841,kenneth apollo,kenneth,apollo,2014-01-03,Male,1960-08-02,55,Greater than 45,Caucasian,0,1,0,0,0,0,2014-01-03 02:44:39,2014-01-05 08:46:26,14000129MM10A,2014-01-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-03,Risk of Violence,1,Low,2014-01-03,2014-01-03,2014-01-05,0,2,819,0,0,0\r\n4844,tamoy garwood,tamoy,garwood,2013-03-18,Female,1991-12-23,24,Less than 25,African-American,0,5,0,0,1,,,,11004198CF10A,,2011-06-29,628,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-18,Risk of Violence,5,Medium,2013-03-18,,,1,0,1110,0,0,0\r\n4845,christopher lloyd,christopher,lloyd,2013-10-04,Male,1990-02-14,26,25 - 45,African-American,0,2,0,0,2,0,2013-10-04 05:39:27,2013-10-08 01:24:50,13013952CF10A,2013-10-04,,0,F,Burglary Conveyance Unoccup,1,15004226MM10A,(M1),0,2015-04-13,Battery,2015-04-13,2015-06-18,,1,15004226MM10A,(M1),2015-04-13,Battery,Risk of Recidivism,2,Low,2013-10-04,Risk of Violence,3,Low,2013-10-04,2014-06-18,2014-06-24,2,4,257,0,1,1\r\n4846,suniel foskin,suniel,foskin,2013-05-22,Male,1981-01-15,35,25 - 45,African-American,0,3,0,0,7,-1,2013-05-21 06:58:18,2013-12-02 09:26:04,13004135CF10A,,2013-05-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-22,Risk of Violence,3,Low,2013-05-22,2013-05-21,2013-12-02,7,194,1045,0,0,0\r\n4847,tracy gallagher,tracy,gallagher,2013-02-16,Male,1966-04-01,50,Greater than 45,Caucasian,0,4,0,0,3,0,2013-02-16 05:51:43,2013-03-13 10:56:47,13003880MM10A,2013-02-16,,0,M,Reckless Driving,1,15001637CF10A,(F3),43,2015-01-07,Battery on a Person Over 65,2015-02-19,2015-02-20,,1,15001637CF10A,(F3),2015-01-07,Battery on a Person Over 65,Risk of Recidivism,4,Low,2013-02-16,Risk of Violence,6,Medium,2013-02-16,2013-02-16,2013-03-13,3,25,690,1,1,1\r\n4848,corey durpee,corey,durpee,2013-05-24,Male,1985-10-28,30,25 - 45,African-American,0,8,0,0,1,,,,10010372MM10A,2010-04-15,,1135,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-24,Risk of Violence,9,High,2013-05-24,,,1,0,1043,0,0,0\r\n4860,simone campbell,simone,campbell,2014-01-17,Female,1991-08-24,24,Less than 25,African-American,0,2,0,0,0,-1,2014-01-16 10:15:11,2014-01-17 01:26:50,14000840MM10A,2014-01-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-17,Risk of Violence,3,Low,2014-01-17,2014-01-16,2014-01-17,0,0,805,0,0,0\r\n4861,shem lampley,shem,lampley,2013-01-23,Male,1982-02-13,34,25 - 45,African-American,0,8,0,0,6,-1,2013-01-22 07:32:23,2013-02-05 07:22:29,11018844CF10A,,2013-01-22,1,F,arrest case no charge,1,13007122CF10A,(M1),1,2013-05-18,Unlaw Malic Strike K9/Horses,2013-05-19,2014-05-27,,1,13007122CF10A,(F2),2013-05-18,Agg Battery Grt/Bod/Harm,Risk of Recidivism,8,High,2013-01-23,Risk of Violence,9,High,2013-01-23,2013-04-20,2013-04-24,6,13,87,0,1,1\r\n4862,bernard andrews,bernard,andrews,2014-04-18,Male,1992-04-05,24,Less than 25,Other,0,8,0,0,3,-1,2014-04-17 09:15:00,2014-04-20 11:07:10,14006531MM10A,2014-04-17,,1,M,Battery,1,14002668MM40A,(M1),135,2014-06-11,Theft/To Deprive,2014-10-24,2014-11-01,,1,15000311MM10A,(M1),2014-12-13,Battery,Risk of Recidivism,8,High,2014-04-18,Risk of Violence,7,Medium,2014-04-18,2014-04-17,2014-04-20,3,2,54,1,1,1\r\n4864,casey herard,casey,herard,2013-02-14,Female,1985-08-05,30,25 - 45,African-American,0,6,1,0,4,-1,2013-02-13 11:45:50,2013-02-15 08:31:36,13002247CF10A,2013-02-13,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-14,Risk of Violence,2,Low,2013-02-14,2013-11-20,2013-12-21,4,1,279,0,0,0\r\n4865,andriane kirkpatrick,andriane,kirkpatrick,2013-02-14,Female,1980-10-14,35,25 - 45,Hispanic,0,2,0,0,0,0,2013-02-14 04:49:00,2013-02-14 07:54:07,13003253MM10A,2013-02-14,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-14,Risk of Violence,1,Low,2013-02-14,2013-02-14,2013-02-14,0,0,1142,0,0,0\r\n4870,joshua dundis,joshua,dundis,2013-09-23,Male,1992-01-30,24,Less than 25,Caucasian,0,2,0,0,1,-8,2013-09-15 11:32:16,2013-09-18 09:20:54,13017572MM10A,2013-09-15,,8,M,Criminal Mischief Damage <$200,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-23,Risk of Violence,3,Low,2013-09-23,2013-09-15,2013-09-18,1,0,921,0,0,0\r\n4872,jonadia hyppolite,jonadia,hyppolite,2013-12-07,Female,1987-11-05,28,25 - 45,African-American,0,3,0,0,3,-1,2013-12-06 07:42:39,2013-12-07 08:47:36,13016906CF10A,2013-12-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-07,Risk of Violence,3,Low,2013-12-07,2013-12-06,2013-12-07,3,0,846,0,0,0\r\n4876,nezam alli,nezam,alli,2013-08-02,Male,1965-09-10,50,Greater than 45,Other,0,1,0,0,5,-91,2013-05-03 03:45:11,2013-08-02 10:31:12,12015804CF10A,,2013-05-03,91,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,2013-05-03,2013-08-02,5,0,973,0,0,0\r\n4881,roderick ferguson,roderick,ferguson,2013-11-23,Male,1984-06-25,31,25 - 45,African-American,0,6,0,0,0,-1,2013-11-22 09:00:54,2013-11-24 09:02:53,13016288CF10A,2013-11-22,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-23,Risk of Violence,3,Low,2013-11-23,2014-02-17,2014-04-04,0,1,86,0,0,0\r\n4884,davis jirka,davis,jirka,2013-12-30,Male,1985-02-05,31,25 - 45,Caucasian,0,1,0,0,0,-1,2013-12-29 08:40:23,2013-12-30 08:05:20,14000105MM10A,2013-12-29,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-30,Risk of Violence,2,Low,2013-12-30,2013-12-29,2013-12-30,0,0,823,0,0,0\r\n4885,vanessa belotte,vanessa,belotte,2013-02-27,Female,1983-10-10,32,25 - 45,African-American,0,2,0,0,3,-1,2013-02-26 02:16:05,2013-03-28 10:47:42,13003010CF10A,,2013-02-26,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-27,Risk of Violence,2,Low,2013-02-27,2013-05-06,2013-05-07,3,29,68,0,0,0\r\n4887,frank schmidt,frank,schmidt,2013-06-10,Male,1987-03-20,29,25 - 45,Caucasian,0,5,0,0,6,-3,2013-06-07 12:58:38,2013-06-08 07:37:28,13008038CF10A,2013-06-06,,4,F,Possession of Hydromorphone,1,14011787CF10A,(M1),0,2014-08-29,Battery,2014-08-29,2014-09-30,,1,14011787CF10A,(M1),2014-08-29,Aggravated Battery / Pregnant,Risk of Recidivism,5,Medium,2013-06-10,Risk of Violence,2,Low,2013-06-10,2013-08-07,2013-08-30,6,0,58,0,1,1\r\n4888,pj lawton,pj,lawton,2013-01-31,Male,1956-06-22,59,Greater than 45,African-American,0,3,0,0,3,-8,2013-01-23 08:25:05,2013-01-31 10:46:32,12009951CF10A,,2013-01-23,8,F,arrest case no charge,1,15001535CF10A,(M1),0,2015-02-02,Possess Cannabis/20 Grams Or Less,2015-02-02,2015-02-03,,0,,,,,Risk of Recidivism,3,Low,2013-01-31,Risk of Violence,2,Low,2013-01-31,2015-02-02,2015-02-03,3,0,732,1,0,0\r\n4890,rivenson joseph,rivenson,joseph,2014-04-13,Male,1992-01-05,24,Less than 25,African-American,0,2,0,0,1,-1,2014-04-12 12:19:56,2014-04-13 09:21:08,14006232MM10A,2014-04-11,,2,M,Battery,1,15000217MM10A,(M1),0,2015-01-06,Battery,2015-01-06,2015-01-07,,1,15000217MM10A,(M1),2015-01-06,Battery,Risk of Recidivism,2,Low,2014-04-13,Risk of Violence,5,Medium,2014-04-13,2015-01-06,2015-01-07,1,0,268,1,1,1\r\n4891,kayla sutton,kayla,sutton,2013-05-22,Female,1988-11-12,27,25 - 45,Caucasian,0,4,0,0,1,-66,2013-03-17 06:36:07,2013-03-18 05:46:07,13003883CF10A,2013-03-17,,66,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-22,Risk of Violence,3,Low,2013-05-22,2014-07-29,2014-09-12,1,0,433,0,0,0\r\n4893,gervens souarin,gervens,souarin,2013-03-05,Male,1982-12-05,33,25 - 45,African-American,0,10,0,0,0,-1,2013-03-04 07:56:17,2013-07-24 07:34:26,13003247CF10A,2013-03-04,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-03-05,Risk of Violence,6,Medium,2013-03-05,2013-03-04,2013-07-24,0,141,1123,0,0,0\r\n4894,joyce jacques,joyce,jacques,2013-10-11,Female,1980-11-09,35,25 - 45,Other,0,1,0,0,0,-1,2013-10-10 04:48:42,2013-10-11 02:16:44,13019260MM10A,2013-10-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-11,Risk of Violence,1,Low,2013-10-11,2013-10-10,2013-10-11,0,0,903,0,0,0\r\n4900,louisette jean,louisette,jean,2013-07-29,Female,1975-12-09,40,25 - 45,Other,0,1,0,0,0,-4,2013-07-25 06:29:10,2013-07-29 11:27:13,13010446CF10A,,2013-07-25,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-07-25,2013-07-29,0,0,977,0,0,0\r\n4902,jose delacruz,jose,delacruz,2013-02-19,Male,1963-02-19,53,Greater than 45,Hispanic,0,2,0,0,3,,,,13003467MM10A,2013-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-19,Risk of Violence,3,Low,2013-02-19,,,3,0,1137,0,0,0\r\n4904,kevin grant,kevin,grant,2013-02-19,Male,1970-10-07,45,Greater than 45,Other,0,3,0,0,0,-1,2013-02-18 01:05:12,2013-02-19 06:50:04,13003464MM10A,2013-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-19,Risk of Violence,1,Low,2013-02-19,2013-02-18,2013-02-19,0,0,1137,0,0,0\r\n4906,vincent moorman,vincent,moorman,2013-02-12,Male,1991-09-05,24,Less than 25,African-American,1,9,0,1,9,-7,2013-02-05 02:02:29,2013-02-09 04:42:56,12009778MM10A,,2013-02-05,7,M,arrest case no charge,1,13006351CF10A,(M1),0,2013-05-03,Resist/Obstruct W/O Violence,2013-05-03,2014-02-23,,1,13006351CF10A,(F3),2013-05-03,Attempt Burglary (Struct),Risk of Recidivism,9,High,2013-02-12,Risk of Violence,7,Medium,2013-02-12,2013-05-03,2014-02-23,9,0,80,1,1,1\r\n4909,christian duranfernandez,christian,duranfernandez,2013-05-21,Male,1991-02-12,25,25 - 45,Hispanic,0,2,0,0,0,-1,2013-05-20 01:33:21,2013-05-24 05:02:36,13009737MM10A,2013-05-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-21,Risk of Violence,4,Low,2013-05-21,2013-05-20,2013-05-24,0,3,1046,0,0,0\r\n4911,doll pierre louis,doll,pierre louis,2014-03-11,Male,1991-10-23,24,Less than 25,African-American,0,9,0,0,0,-1,2014-03-10 02:01:58,2014-03-11 10:42:11,14003387CF10A,2014-03-10,,1,F,\"Possession Of 3,4Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-11,Risk of Violence,9,High,2014-03-11,2014-03-10,2014-03-11,0,0,752,0,0,0\r\n4912,david cuellar,david,cuellar,2013-04-06,Male,1993-02-28,23,Less than 25,Hispanic,0,8,0,0,6,-1,2013-04-05 03:50:59,2013-05-09 09:31:20,13006559MM10A,2013-04-05,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-06,Risk of Violence,5,Medium,2013-04-06,2013-04-05,2013-05-09,6,33,1091,0,0,0\r\n4914,david kennedy,david,kennedy,2013-08-22,Male,1993-01-07,23,Less than 25,African-American,0,8,1,0,7,-1,2013-08-21 01:25:33,2013-08-22 06:49:00,13011767CF10A,2013-08-21,,1,F,Carrying Concealed Firearm,1,14009472MM10A,(M1),,2014-04-03,Battery,,,,1,14009472MM10A,(M1),2014-04-03,Battery,Risk of Recidivism,8,High,2013-08-22,Risk of Violence,7,Medium,2013-08-22,2016-03-28,2016-04-01,7,0,224,1,1,1\r\n4917,nancy gayoso,nancy,gayoso,2013-08-02,Female,1968-04-23,47,Greater than 45,Hispanic,0,1,0,0,2,,,,03004219CF10A,,2003-03-08,3800,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,,,2,0,973,0,0,0\r\n4921,carlos posada,carlos,posada,2013-09-16,Male,1967-05-05,48,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-09-15 12:13:53,2013-09-15 01:11:55,13017544MM10A,2013-09-14,,2,M,DUI/Property Damage/Persnl Inj,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2013-09-15,2013-09-15,0,0,928,0,0,0\r\n4922,omar perez,omar,perez,2013-10-14,Male,1980-07-18,35,25 - 45,Hispanic,0,2,0,0,0,,,,13019406MM10A,2013-10-13,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-14,Risk of Violence,1,Low,2013-10-14,,,0,0,900,0,0,0\r\n4925,peter accetta,peter,accetta,2013-03-30,Male,1954-01-27,62,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-29 11:06:18,2013-03-30 08:00:38,13004542CF10A,2013-03-29,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-30,Risk of Violence,1,Low,2013-03-30,2013-03-29,2013-03-30,0,0,1098,0,0,0\r\n4926,rodney smith,rodney,smith,2013-10-31,Male,1964-01-13,52,Greater than 45,African-American,0,3,0,0,19,,,,12008902CF10A,,2012-11-16,349,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-31,Risk of Violence,1,Low,2013-10-31,2006-09-05,2009-04-26,19,0,883,0,0,0\r\n4928,junior bouquette,junior,bouquette,2013-03-22,Male,1990-08-10,25,25 - 45,Other,0,3,0,0,1,-1,2013-03-21 07:26:42,2013-03-22 10:25:37,13004115CF10A,2013-03-21,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-22,Risk of Violence,3,Low,2013-03-22,2015-10-01,2015-10-19,1,0,923,0,0,0\r\n4929,anthony mitchell,anthony,mitchell,2013-02-21,Male,1967-03-31,49,Greater than 45,African-American,0,7,0,0,1,-1,2013-02-20 01:41:20,2013-03-02 09:15:54,13005582MM10A,2013-02-20,,1,M,Assault,1,16002152MM10A,(M1),0,2016-03-05,Battery,2016-03-05,2016-03-17,,1,16002152MM10A,(M1),2016-03-05,Battery,Risk of Recidivism,7,Medium,2013-02-21,Risk of Violence,4,Low,2013-02-21,2014-01-26,2014-01-31,1,9,339,0,0,0\r\n4931,stephen cotillo,stephen,cotillo,2014-01-27,Male,1965-08-16,50,Greater than 45,Caucasian,0,1,0,0,0,0,2014-01-27 06:59:07,2014-03-04 01:51:57,14001186CF10A,2014-01-27,,0,F,Felony Battery (Dom Strang),1,14004278CF10A,(F3),0,2014-03-26,Felony Battery (Dom Strang),2014-03-26,2014-06-13,,1,14004278CF10A,(F3),2014-03-26,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2014-03-26,2014-06-13,0,36,58,1,1,1\r\n4933,brian willoughby,brian,willoughby,2013-08-02,Male,1978-11-07,37,25 - 45,African-American,0,8,0,0,14,-1,2013-08-01 07:15:54,2013-08-02 08:36:19,13010768CF10A,2013-08-01,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-02,Risk of Violence,3,Low,2013-08-02,2013-08-01,2013-08-02,14,0,973,0,0,0\r\n4934,erick dygert,erick,dygert,2013-02-04,Male,1989-04-27,26,25 - 45,Caucasian,0,2,0,0,0,0,2013-02-04 05:18:52,2013-02-05 08:10:46,13002544MM10A,2013-02-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-04,Risk of Violence,3,Low,2013-02-04,2013-02-04,2013-02-05,0,1,1152,0,0,0\r\n4935,brian semil,brian,semil,2013-01-14,Male,1987-10-08,28,25 - 45,African-American,0,10,2,0,21,-1,2013-01-13 07:08:36,2013-01-14 08:33:28,13000613CF10A,2013-01-13,,1,F,Driving While License Revoked,1,15002657CF10A,(F3),1,2015-02-25,Burglary Conveyance Unoccup,2015-02-26,2015-03-08,,1,15002657CF10A,(M1),2015-02-25,Battery,Risk of Recidivism,10,High,2013-01-14,Risk of Violence,10,High,2013-01-14,2015-03-11,2015-06-25,21,0,772,1,0,0\r\n4937,donovan elliott,donovan,elliott,2013-03-18,Male,1967-10-17,48,Greater than 45,Other,0,2,0,0,4,-1,2013-03-17 04:45:11,2013-03-18 07:05:54,13003891CF10A,2013-03-17,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-17,2013-03-18,4,0,1110,0,0,0\r\n4938,chevane robinson,chevane,robinson,2014-01-06,Male,1991-04-07,25,25 - 45,African-American,0,4,0,0,1,-80,2013-10-18 01:38:25,2013-10-19 02:03:28,13014562CF10A,2013-10-17,,81,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-06,Risk of Violence,4,Low,2014-01-06,2015-01-02,2015-01-09,1,0,361,0,0,0\r\n4939,romaine plummer,romaine,plummer,2013-08-20,Male,1995-06-18,20,Less than 25,African-American,0,8,1,0,1,0,2013-08-20 02:40:22,2013-08-20 07:11:30,13011669CF10A,2013-08-19,,1,F,Grand Theft (Motor Vehicle),1,13012019CF10A,(F1),2,2013-08-24,Armed Carjacking,2013-08-26,2014-07-31,,1,13012019CF10A,(F1),2013-08-24,Armed Carjacking,Risk of Recidivism,8,High,2013-08-20,Risk of Violence,10,High,2013-08-20,2014-07-31,2020-01-01,1,0,4,1,1,1\r\n4941,robert leon,robert,leon,2013-08-24,Male,1989-10-25,26,25 - 45,Hispanic,0,1,0,0,1,-1,2013-08-23 11:30:03,2013-08-25 03:40:23,13016179MM10A,2013-08-23,,1,M,Reckless Driving,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-24,Risk of Violence,2,Low,2013-08-24,2013-08-23,2013-08-25,1,1,951,0,0,0\r\n4948,michael liberatore,michael,liberatore,2013-03-09,Male,1986-11-14,29,25 - 45,Caucasian,0,4,0,0,1,-1,2013-03-08 03:18:08,2013-03-22 08:45:58,13003457CF10A,2013-03-08,,1,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-09,Risk of Violence,2,Low,2013-03-09,2013-03-08,2013-03-22,1,13,1119,0,0,0\r\n4949,shawn garner,shawn,garner,2014-01-04,Male,1969-11-08,46,Greater than 45,Caucasian,0,4,0,0,4,0,2014-01-04 02:43:27,2014-01-05 08:14:11,14000155CF10A,2014-01-04,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-04,Risk of Violence,1,Low,2014-01-04,2014-01-04,2014-01-05,4,1,818,0,0,0\r\n4950,aslet augustin,aslet,augustin,2013-01-07,Male,1991-09-19,24,Less than 25,African-American,0,4,0,0,0,0,2013-01-07 03:32:06,2013-01-08 02:56:38,13000272CF10A,2013-01-07,,0,F,Pos Cannabis W/Intent Sel/Del,1,15001016MM20A,(M2),,2015-03-28,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-07,Risk of Violence,5,Medium,2013-01-07,2013-01-07,2013-01-08,0,1,810,1,0,0\r\n4951,maria garcia,maria,garcia,2014-03-17,Female,1964-09-11,51,Greater than 45,Hispanic,0,1,0,0,2,0,2014-03-17 06:13:55,2014-03-17 08:07:49,14004626MM10A,2014-03-17,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-17,2014-03-17,2,0,746,0,0,0\r\n4956,cornelius jones,cornelius,jones,2013-02-23,Male,1987-04-19,29,25 - 45,African-American,0,8,0,0,5,0,2013-02-23 02:42:31,2013-02-24 03:36:20,13002779CF10A,2013-02-23,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-23,Risk of Violence,4,Low,2013-02-23,2013-09-02,2013-10-27,5,1,191,0,0,0\r\n4959,george rodriguez,george,rodriguez,2014-01-04,Male,1959-05-14,56,Greater than 45,Hispanic,0,2,0,0,10,-1,2014-01-03 11:38:48,2014-01-16 12:08:40,14000149MM10A,2014-01-03,,1,M,Battery,1,15001201CF10A,(F3),,2015-01-26,Battery on Law Enforc Officer,,,,1,15001201CF10A,(F3),2015-01-26,Battery on Law Enforc Officer,Risk of Recidivism,2,Low,2014-01-04,Risk of Violence,1,Low,2014-01-04,2014-01-03,2014-01-16,10,12,387,1,1,1\r\n4962,manuel camposeco-mendez,manuel,camposeco-mendez,2013-07-25,Male,1985-02-03,31,25 - 45,Hispanic,0,2,0,0,1,-75,2013-05-11 07:52:30,2013-05-14 11:01:18,13009129MM10A,2013-05-11,,75,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-25,Risk of Violence,1,Low,2013-07-25,2013-05-11,2013-05-14,1,0,981,0,0,0\r\n4965,rochilun manasse,rochilun,manasse,2013-08-19,Male,1968-04-02,48,Greater than 45,Other,0,1,0,0,0,-1,2013-08-18 06:22:59,2013-08-19 05:44:31,13015630MM10A,2013-08-18,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-19,0,0,956,0,0,0\r\n4968,nathaniel ward,nathaniel,ward,2013-06-26,Male,1948-04-05,68,Greater than 45,African-American,0,2,0,0,1,-37,2013-05-20 07:22:20,2013-06-15 12:40:01,13007185CF10A,,2013-05-20,37,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-26,Risk of Violence,1,Low,2013-06-26,2013-05-20,2013-06-15,1,0,1010,0,0,0\r\n4969,jamal jones,jamal,jones,2013-10-02,Male,1992-03-26,24,Less than 25,African-American,0,4,0,0,1,-1,2013-10-01 03:10:38,2013-10-02 07:32:09,13018696MM10A,2013-10-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-02,Risk of Violence,4,Low,2013-10-02,2013-10-01,2013-10-02,1,0,912,0,0,0\r\n4970,timar honewell,timar,honewell,2013-10-02,Male,1983-11-14,32,25 - 45,African-American,0,2,0,0,1,-1,2013-10-01 06:53:20,2013-10-02 04:24:04,13013789CF10A,,2013-10-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,2,Low,2013-10-02,2013-10-01,2013-10-02,1,0,912,0,0,0\r\n4972,fausto zepeda,fausto,zepeda,2013-10-01,Male,1959-06-29,56,Greater than 45,Hispanic,0,1,0,0,4,,,,10006540CF10B,2010-04-13,,1267,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,,,4,0,913,0,0,0\r\n4978,denzel obrien,denzel,obrien,2013-04-28,Male,1991-01-08,25,25 - 45,African-American,0,3,0,0,1,-1,2013-04-27 05:25:08,2013-04-28 01:21:18,10010032CF10A,,2013-04-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-28,Risk of Violence,6,Medium,2013-04-28,2014-04-29,2014-07-11,1,0,366,0,0,0\r\n4980,xavier serrano,xavier,serrano,2013-12-05,Male,1986-09-12,29,25 - 45,Caucasian,0,3,0,0,1,-1,2013-12-04 08:04:24,2014-01-16 11:00:21,13022549MM10A,2013-12-04,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-05,Risk of Violence,2,Low,2013-12-05,2013-12-04,2014-01-16,1,42,848,0,0,0\r\n4982,franklin cedeno,franklin,cedeno,2013-08-11,Male,1977-12-30,38,25 - 45,Caucasian,0,1,0,0,2,-1,2013-08-10 01:32:23,2013-08-11 07:07:19,13015105MM10A,2013-08-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-11,Risk of Violence,2,Low,2013-08-11,2013-08-10,2013-08-11,2,0,964,0,0,0\r\n4993,jamie osorio,jamie,osorio,2013-02-01,Male,1963-07-26,52,Greater than 45,Hispanic,0,4,0,0,3,-1,2013-01-31 10:43:21,2013-02-14 06:00:43,13001559CF10A,2013-01-31,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-01,Risk of Violence,3,Low,2013-02-01,2015-04-21,2016-03-30,3,13,809,0,0,0\r\n4995,raymond manganiotis,raymond,manganiotis,2013-06-21,Male,1963-01-25,53,Greater than 45,Caucasian,0,-1,0,0,3,-10,2013-06-11 02:07:31,2013-06-21 05:30:17,13008275CF10A,2013-06-10,,11,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,-1,N/A,2013-06-21,Risk of Violence,4,Low,2013-06-21,2013-06-11,2013-06-21,3,0,1015,0,0,0\r\n4996,carlos ramos,carlos,ramos,2013-11-12,Male,1989-02-18,27,25 - 45,Caucasian,0,1,0,0,1,0,2013-11-12 01:08:55,2013-11-13 02:28:14,13015698CF10A,2013-11-11,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-12,Risk of Violence,2,Low,2013-11-12,2013-11-12,2013-11-13,1,1,871,0,0,0\r\n4998,john intindola,john,intindola,2013-05-16,Male,1982-08-03,33,25 - 45,Caucasian,0,2,0,0,1,-1,2013-05-15 06:27:22,2013-05-16 04:09:53,13006957CF10A,,2013-05-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-16,Risk of Violence,2,Low,2013-05-16,2013-05-15,2013-05-16,1,0,1051,0,0,0\r\n5009,samia aviles,samia,aviles,2013-10-27,Female,1987-03-11,29,25 - 45,Caucasian,0,2,0,0,0,-1,2013-10-26 05:21:11,2013-10-28 03:08:35,13020331MM10A,2013-10-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-27,Risk of Violence,2,Low,2013-10-27,2013-10-26,2013-10-28,0,1,887,0,0,0\r\n5010,cori butler,cori,butler,2013-06-05,Male,1977-07-05,38,25 - 45,African-American,0,9,0,0,19,-4,2013-06-01 09:43:13,2013-06-02 08:07:58,13007397CF10A,,2013-06-01,4,F,arrest case no charge,1,13014308CF10A,(F3),0,2013-10-12,Possession of Cocaine,2013-10-12,2013-10-12,,1,13016265CF10A,(F2),2013-11-22,Throw Deadly Missile Into Veh,Risk of Recidivism,9,High,2013-06-05,Risk of Violence,5,Medium,2013-06-05,2013-08-23,2013-08-25,19,0,79,0,1,1\r\n5012,william calder,william,calder,2013-04-08,Male,1986-08-02,29,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-07 09:28:07,2013-04-08 07:50:27,13006655MO10A,2013-04-07,,1,M,Poss Of Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-08,Risk of Violence,2,Low,2013-04-08,2013-04-07,2013-04-08,0,0,1089,0,0,0\r\n5020,nathaniel adderly,nathaniel,adderly,2014-01-18,Male,1974-11-12,41,25 - 45,African-American,0,7,0,0,0,-1,2014-01-17 10:36:32,2014-01-18 01:22:01,14000775CF10A,2014-01-17,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-18,Risk of Violence,1,Low,2014-01-18,2014-01-17,2014-01-18,0,0,804,0,0,0\r\n5022,tarzan saulsby,tarzan,saulsby,2013-04-11,Male,1956-07-27,59,Greater than 45,African-American,0,4,0,0,8,-1,2013-04-10 05:27:44,2013-04-15 09:13:23,13005158CF10A,2013-04-10,,1,F,Possession of Cocaine,1,15007826CF10A,(F3),0,2015-06-17,Possession of Cocaine,2015-06-17,2015-10-11,,0,,,,,Risk of Recidivism,4,Low,2013-04-11,Risk of Violence,2,Low,2013-04-11,2014-02-19,2014-03-01,8,4,314,0,0,0\r\n5023,christian torres,christian,torres,2013-12-13,Male,1994-10-04,21,Less than 25,Caucasian,0,4,0,0,1,-1,2013-12-12 11:06:24,2013-12-13 01:47:07,13023012MM10A,2013-12-12,,1,M,Battery,1,14008832MM10A,(M1),0,2014-06-03,Battery,2014-06-03,2014-06-04,,1,14008832MM10A,(M1),2014-06-03,Battery,Risk of Recidivism,4,Low,2013-12-13,Risk of Violence,7,Medium,2013-12-13,2014-06-03,2014-06-04,1,0,172,1,1,1\r\n5033,cian campbell,cian,campbell,2014-03-04,Male,1985-07-09,30,25 - 45,African-American,0,1,0,0,0,-1,2014-03-03 02:22:21,2014-03-04 10:10:53,14003014CF10A,2014-03-02,,2,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-04,Risk of Violence,2,Low,2014-03-04,2014-03-03,2014-03-04,0,0,759,0,0,0\r\n5035,james reeves,james,reeves,2013-04-06,Male,1972-07-21,43,25 - 45,Caucasian,0,5,0,0,4,-1,2013-04-05 10:35:56,2013-05-23 07:05:55,13004902CF10A,2013-04-05,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-06,Risk of Violence,1,Low,2013-04-06,2013-04-05,2013-05-23,4,47,1091,0,0,0\r\n5037,tess giesen,tess,giesen,2014-01-09,Female,1991-07-12,24,Less than 25,Caucasian,0,9,0,1,2,-2,2014-01-07 05:06:31,2014-01-07 08:45:09,14000267CF10A,2014-01-06,,3,F,Obtain Control Substance By Fraud,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-09,Risk of Violence,4,Low,2014-01-09,2014-01-07,2014-01-07,2,0,813,0,0,0\r\n5042,napoleon culver,napoleon,culver,2013-05-26,Male,1971-01-12,45,Greater than 45,African-American,0,7,0,0,13,-1,2013-05-25 08:32:38,2013-05-31 11:05:15,13010055MM10A,2013-05-25,,1,M,Viol Injunction Protect Dom Vi,1,15005663CF10A,(F3),1,2015-04-29,Felony Battery w/Prior Convict,2015-04-30,2015-04-30,,1,15005663CF10A,(F3),2015-04-29,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-05-26,Risk of Violence,6,Medium,2013-05-26,2013-06-13,2013-08-08,13,5,18,0,1,1\r\n5043,omar yunis,omar,yunis,2013-01-03,Male,1992-08-29,23,Less than 25,Caucasian,0,9,0,1,0,0,2013-01-03 12:02:47,2013-01-22 08:41:13,13000075CF10A,2013-01-02,,1,F,False Imprisonment,1,14008442MM10A,(M1),1,2014-05-26,Battery,2014-05-27,2014-06-06,,1,14008442MM10A,(M1),2014-05-26,Battery,Risk of Recidivism,9,High,2013-01-03,Risk of Violence,9,High,2013-01-03,2013-01-03,2013-01-22,0,19,508,1,1,1\r\n5045,karen darnell,karen,darnell,2013-07-18,Female,1976-02-20,40,25 - 45,Caucasian,0,10,0,0,5,16,2013-08-03 02:48:08,2013-09-27 10:30:43,12004314CF10A,2012-03-22,,483,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-07-18,Risk of Violence,3,Low,2013-07-18,2013-08-03,2013-09-27,5,0,16,0,0,0\r\n5046,nashavia hemingway,nashavia,hemingway,2013-10-29,Female,1992-11-05,23,Less than 25,African-American,0,7,0,0,0,-1,2013-10-28 05:52:52,2013-10-30 12:28:17,13015043CF10A,2013-10-28,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-29,Risk of Violence,6,Medium,2013-10-29,2013-10-28,2013-10-30,0,1,885,0,0,0\r\n5047,cipher allah,cipher,allah,2013-03-22,Male,1976-12-13,39,25 - 45,African-American,0,2,0,0,3,-1,2013-03-21 03:33:14,2013-03-22 09:40:17,13004088CF10A,,2013-03-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-22,Risk of Violence,3,Low,2013-03-22,2013-03-21,2013-03-22,3,0,1106,0,0,0\r\n5049,jennifer nguyen,jennifer,nguyen,2013-07-08,Female,1989-05-04,26,25 - 45,Caucasian,0,2,0,0,0,-2,2013-07-06 01:41:52,2013-07-06 09:09:51,13012793MM10A,2013-07-05,,3,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-08,Risk of Violence,2,Low,2013-07-08,2013-07-06,2013-07-06,0,0,998,0,0,0\r\n5050,tevin williams,tevin,williams,2013-08-06,Male,1994-08-24,21,Less than 25,African-American,0,4,0,0,0,0,2013-08-06 03:34:21,2013-08-07 08:33:52,13014863MM10A,2013-08-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-06,Risk of Violence,6,Medium,2013-08-06,2013-08-06,2013-08-07,0,1,969,0,0,0\r\n5051,steven grimmer,steven,grimmer,2013-03-05,Male,1985-12-26,30,25 - 45,Caucasian,0,3,1,1,3,-1,2013-03-04 02:15:12,2013-05-08 10:08:45,13003259CF10A,2013-03-04,,1,F,Tampering with a Victim,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-05,Risk of Violence,3,Low,2013-03-05,2013-03-04,2013-05-08,3,64,1123,0,0,0\r\n5052,amer raja,amer,raja,2013-09-04,Male,1972-04-01,44,25 - 45,Caucasian,0,4,0,0,0,0,2013-09-04 12:17:51,2013-09-16 07:36:54,13012428CF10A,2013-09-03,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-09-04,2013-09-16,0,12,940,0,0,0\r\n5054,joseph maquez,joseph,maquez,2013-02-14,Male,1992-11-15,23,Less than 25,African-American,0,4,0,0,0,-1,2013-02-13 09:00:36,2013-02-15 05:30:29,13003188MM10A,2013-02-13,,1,M,Lewdness Violation,1,15018235TC40A,(M2),,2015-03-06,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-14,Risk of Violence,5,Medium,2013-02-14,2013-02-13,2013-02-15,0,1,750,1,0,0\r\n5057,jondra grier,jondra,grier,2014-02-04,Female,1966-09-27,49,Greater than 45,African-American,0,1,0,0,1,-1,2014-02-03 05:28:44,2014-02-04 01:31:25,14001512CF10A,2014-02-03,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-02-03,2014-02-04,1,0,787,0,0,0\r\n5064,joshua flewellyn,joshua,flewellyn,2013-10-04,Male,1987-04-29,28,25 - 45,Caucasian,0,2,0,0,2,-1,2013-10-03 03:57:15,2013-10-13 05:03:29,13008300CF10A,,2013-10-03,1,F,arrest case no charge,1,14069451TC20A,(M2),,2014-10-02,Operating W/O Valid License,,,,1,14014624MM10A,(M1),2014-10-05,Battery,Risk of Recidivism,2,Low,2013-10-04,Risk of Violence,3,Low,2013-10-04,2013-10-03,2013-10-13,2,9,363,1,1,1\r\n5065,christopher sternberg,christopher,sternberg,2013-10-08,Male,1973-09-22,42,25 - 45,Caucasian,0,4,0,0,2,-43,2013-08-26 07:56:02,2013-10-06 06:12:54,13016328MM10A,2013-08-26,,43,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-08,Risk of Violence,5,Medium,2013-10-08,2013-08-26,2013-10-06,2,0,906,0,0,0\r\n5066,youvens horace,youvens,horace,2013-04-07,Male,1992-05-15,23,Less than 25,Other,0,6,2,0,7,0,2013-04-07 03:12:39,2013-04-16 10:03:25,13004966CF10A,2013-04-06,,1,F,Carrying Concealed Firearm,1,13014105MM10A,(M1),0,2013-07-25,Resist/Obstruct W/O Violence,2013-07-25,2013-07-31,,1,14010273CF10A,(F2),2014-07-26,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-04-07,Risk of Violence,8,High,2013-04-07,2013-07-25,2013-07-31,7,9,109,1,1,1\r\n5067,johnna jones,johnna,jones,2014-08-10,Female,1991-09-04,24,Less than 25,African-American,0,6,0,0,2,-1,2014-08-09 08:59:23,2014-08-10 09:28:19,14010851CF10A,2014-08-09,,1,F,Felony Driving While Lic Suspd,1,15000271MM30A,(M1),,2015-01-11,Possess Drug Paraphernalia,,,,1,15015879CF10A,(F7),2015-12-10,Burglary Dwelling Armed,Risk of Recidivism,6,Medium,2014-08-10,Risk of Violence,4,Low,2014-08-10,2014-08-09,2014-08-10,2,0,154,1,1,1\r\n5068,jarod singh,jarod,singh,2014-01-22,Male,1984-06-26,31,25 - 45,Caucasian,0,7,0,0,0,0,2014-01-22 12:19:55,2014-01-22 08:35:10,14000913CF10A,2014-01-21,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-22,Risk of Violence,6,Medium,2014-01-22,2014-01-22,2014-01-22,0,0,800,0,0,0\r\n5071,daniel reid,daniel,reid,2013-04-08,Male,1990-08-28,25,25 - 45,African-American,0,2,0,0,1,-1,2013-04-07 08:23:40,2013-04-08 07:34:25,13004984CF10A,,2013-04-07,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-08,Risk of Violence,3,Low,2013-04-08,2013-12-19,2014-04-16,1,0,255,0,0,0\r\n5073,john walker,john,walker,2013-10-02,Male,1960-08-31,55,Greater than 45,African-American,0,2,0,0,12,,,,09013094CF10A,,2010-08-06,1153,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,1998-12-01,2001-06-08,12,0,912,0,0,0\r\n5075,steven toussaint,steven,toussaint,2013-01-13,Male,1989-08-25,26,25 - 45,African-American,1,10,3,0,24,-1,2013-01-12 11:37:16,2013-04-08 08:36:41,13000716MM10A,2013-01-12,,1,M,Resist/Obstruct W/O Violence,1,14007646CF10A,(F3),,2014-04-02,Fleeing Or Attmp Eluding A Leo,,,,1,14007646CF10A,(F2),2014-04-01,Agg Assault Law Enforc Officer,Risk of Recidivism,10,High,2013-01-13,Risk of Violence,10,High,2013-01-13,2013-01-12,2013-04-08,24,85,444,1,1,1\r\n5078,sophie robinson,sophie,robinson,2013-04-18,Male,1988-07-24,27,25 - 45,African-American,0,7,0,0,1,-1,2013-04-17 10:42:28,2013-04-23 07:14:50,12015243CF10A,,2013-04-17,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-18,Risk of Violence,4,Low,2013-04-18,2013-04-17,2013-04-23,1,5,1079,0,0,0\r\n5079,bowie balentine,bowie,balentine,2013-09-05,Male,1990-01-24,26,25 - 45,Caucasian,0,2,0,0,3,-123,2013-05-05 06:10:13,2013-05-06 07:43:27,13008695MM10A,2013-05-05,,123,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-05,Risk of Violence,3,Low,2013-09-05,2013-05-05,2013-05-06,3,0,939,0,0,0\r\n5084,regina battle,regina,battle,2013-01-01,Female,1988-06-28,27,25 - 45,African-American,0,4,0,0,0,,,,13000002MM10A,2012-12-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-01,Risk of Violence,3,Low,2013-01-01,,,0,0,1186,0,0,0\r\n5086,zeke zikria,zeke,zikria,2013-04-26,Male,1969-11-11,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-25 05:09:02,2013-04-27 04:59:30,13005960CF10A,2013-04-25,,1,F,Possession of Cocaine,1,15006848CF10A,(M1),1,2015-05-25,Resist/Obstruct W/O Violence,2015-05-26,2015-05-27,,1,15006848CF10A,(F3),2015-05-25,Battery on Law Enforc Officer,Risk of Recidivism,1,Low,2013-04-26,Risk of Violence,1,Low,2013-04-26,2013-09-24,2013-10-01,0,1,151,0,0,0\r\n5088,lizzette graf,lizzette,graf,2013-02-10,Female,1977-12-12,38,25 - 45,Caucasian,0,6,0,0,1,-1,2013-02-09 03:23:30,2013-02-10 08:17:31,13002923MM10A,2013-02-09,,1,M,Battery,1,14007946MM10A,(M1),1,2014-05-14,Resist/Obstruct W/O Violence,2014-05-15,2014-05-15,,1,14010189CF10A,(M1),2014-07-26,Battery,Risk of Recidivism,6,Medium,2013-02-10,Risk of Violence,4,Low,2013-02-10,2014-07-26,2014-08-29,1,0,458,1,1,1\r\n5094,lakeinyas david,lakeinyas,david,2013-02-13,Female,1992-01-17,24,Less than 25,African-American,0,5,0,0,0,-1,2013-02-12 11:40:28,2013-02-13 10:02:55,13003103MM10A,2013-02-12,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-13,Risk of Violence,5,Medium,2013-02-13,2013-02-12,2013-02-13,0,0,1143,0,0,0\r\n5096,romania graham,romania,graham,2014-03-23,Female,1977-08-24,38,25 - 45,African-American,0,4,0,0,0,-1,2014-03-22 09:07:19,2014-03-23 09:07:42,14005138MM10A,2014-03-22,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-23,Risk of Violence,1,Low,2014-03-23,2014-03-22,2014-03-23,0,0,740,0,0,0\r\n5099,cornelius toney,cornelius,toney,2013-11-24,Male,1968-03-12,48,Greater than 45,African-American,0,3,0,0,6,-1,2013-11-23 10:19:26,2013-11-25 03:46:03,11020634CF10A,,2013-11-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-24,Risk of Violence,2,Low,2013-11-24,2013-11-23,2013-11-25,6,1,859,0,0,0\r\n5103,robert rodriguez,robert,rodriguez,2013-11-06,Male,1986-01-14,30,25 - 45,Hispanic,0,9,0,0,7,-1,2013-11-05 01:13:15,2013-11-06 08:26:17,13015426CF10A,2013-11-05,,1,F,Agg Assault W/int Com Fel Dome,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-06,Risk of Violence,7,Medium,2013-11-06,2013-11-05,2013-11-06,7,0,877,0,0,0\r\n5107,kendrick edwards,kendrick,edwards,2013-02-14,Male,1988-07-21,27,25 - 45,African-American,0,10,0,0,8,53,2013-04-08 11:15:07,2013-05-06 02:00:57,11014296CF10A,,2012-04-26,294,F,arrest case no charge,1,13008051MM10A,(M2),0,2013-04-08,Petit Theft,2013-04-08,2013-05-06,,1,13019631MM10A,(M1),2013-10-16,Battery,Risk of Recidivism,10,High,2013-02-14,Risk of Violence,9,High,2013-02-14,2013-04-08,2013-05-06,8,0,53,1,1,1\r\n5108,terry spunger,terry,spunger,2013-03-01,Male,1961-02-05,55,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-01 04:41:49,2013-03-02 05:03:07,13004220MM10A,2013-03-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-03-01,2013-03-02,0,1,1127,0,0,0\r\n5111,rashaun dubose,rashaun,dubose,2013-02-07,Male,1990-12-24,25,25 - 45,African-American,0,3,0,0,1,,,,12015375CF10A,2012-10-17,,113,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-07,Risk of Violence,4,Low,2013-02-07,,,1,0,1149,0,0,0\r\n5112,ferondo randall,ferondo,randall,2014-07-29,Male,1975-07-23,40,25 - 45,African-American,0,7,0,0,5,0,2014-07-29 01:35:57,2014-08-28 10:17:57,07022329CF10A,,2009-03-06,1971,F,arrest case no charge,1,16000806CF10A,(F3),,2015-09-21,Grand Theft in the 3rd Degree,,,,1,16002009CF10A,(F7),2016-02-17,Armed Sex Batt/vict 12 Yrs +,Risk of Recidivism,7,Medium,2014-07-29,Risk of Violence,7,Medium,2014-07-29,2014-07-29,2014-08-28,5,30,419,1,1,1\r\n5118,alfred tucker,alfred,tucker,2013-09-20,Male,1982-09-26,33,25 - 45,Native American,1,7,0,0,9,72,2013-12-01 02:12:39,2014-01-24 08:43:45,13008048CF10A,2013-06-06,,106,M,Aggravated Battery,1,13016642CF10A,(M1),0,2013-12-01,Resist/Obstruct W/O Violence,2013-12-01,2014-01-24,,1,13016642CF10A,(F3),2013-12-01,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-09-20,Risk of Violence,9,High,2013-09-20,2013-12-01,2014-01-24,9,0,72,1,1,1\r\n5120,donnalie higgs,donnalie,higgs,2013-01-10,Female,1959-03-04,57,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-09 11:18:00,2013-03-28 04:57:43,13000533MM10A,2013-01-09,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-10,Risk of Violence,1,Low,2013-01-10,2013-01-09,2013-03-28,0,77,1177,0,0,0\r\n5121,adrian grey,adrian,grey,2013-09-17,Male,1990-05-04,25,25 - 45,African-American,0,2,0,0,0,-1,2013-09-16 02:13:27,2013-09-23 08:24:38,13017637MM10A,2013-09-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-17,Risk of Violence,4,Low,2013-09-17,2013-09-16,2013-09-23,0,6,927,0,0,0\r\n5123,wisler isme,wisler,isme,2013-09-20,Male,1985-02-21,31,25 - 45,African-American,0,3,0,0,3,-1,2013-09-19 06:33:00,2013-10-05 01:36:21,13013231CF10A,2013-09-19,,1,F,Burglary Dwelling Assault/Batt,1,14007318MM10A,(M1),0,2014-05-02,Viol Injunct Domestic Violence,2014-05-02,2014-05-03,,1,14009103CF10A,(F2),2014-06-23,Neglect Child / Bodily Harm,Risk of Recidivism,3,Low,2013-09-20,Risk of Violence,2,Low,2013-09-20,2014-05-02,2014-05-03,3,15,224,1,1,1\r\n5126,michael fashaw,michael,fashaw,2014-02-03,Male,1972-06-18,43,25 - 45,African-American,0,4,0,0,7,0,2014-02-03 05:06:08,2014-02-04 02:56:14,13015886CF10A,,2014-02-03,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-03,Risk of Violence,3,Low,2014-02-03,2014-02-03,2014-02-04,7,1,788,0,0,0\r\n5127,marissa guedes,marissa,guedes,2013-11-18,Female,1990-07-19,25,25 - 45,Caucasian,0,4,0,0,0,-1,2013-11-17 11:43:24,2013-11-18 08:05:43,13021622MM10A,2013-11-17,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-18,Risk of Violence,3,Low,2013-11-18,2015-11-11,2015-11-16,0,0,723,0,0,0\r\n5128,jose gomez,jose,gomez,2013-01-14,Male,1977-02-02,39,25 - 45,Hispanic,0,2,0,0,1,-1,2013-01-13 11:17:44,2013-01-14 06:32:32,13000794MM10A,2013-01-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,2,Low,2013-01-14,2013-01-13,2013-01-14,1,0,1173,0,0,0\r\n5130,dorjan williams,dorjan,williams,2013-09-11,Male,1975-12-12,40,25 - 45,African-American,0,1,0,0,1,-1,2013-09-10 09:23:16,2013-09-12 05:32:53,13012795CF10A,2013-09-10,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-11,Risk of Violence,1,Low,2013-09-11,2013-09-10,2013-09-12,1,1,933,0,0,0\r\n5132,freddie lockhart,freddie,lockhart,2013-01-16,Male,1980-06-18,35,25 - 45,African-American,0,7,0,0,2,-1,2013-01-15 12:23:05,2013-01-16 06:52:56,13001004MM10A,2013-01-15,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-16,Risk of Violence,4,Low,2013-01-16,2013-01-15,2013-01-16,2,0,1171,0,0,0\r\n5142,stephanie hardy,stephanie,hardy,2013-12-06,Female,1965-07-26,50,Greater than 45,African-American,0,3,0,0,4,-1,2013-12-05 02:24:02,2013-12-18 10:47:36,13016826CF10A,2013-12-04,,2,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-06,Risk of Violence,1,Low,2013-12-06,2015-01-20,2015-05-04,4,12,410,0,0,0\r\n5143,arielle welcher,arielle,welcher,2014-03-26,Female,1993-02-05,23,Less than 25,Caucasian,0,6,0,0,1,0,2014-03-26 01:42:17,2014-03-27 03:07:45,14005239MM10A,2014-03-26,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-26,Risk of Violence,4,Low,2014-03-26,2014-03-26,2014-03-27,1,1,737,0,0,0\r\n5150,christopher hamilton,christopher,hamilton,2013-10-21,Male,1977-08-30,38,25 - 45,African-American,0,1,0,0,1,-1,2013-10-20 09:39:34,2013-10-24 09:18:44,13019861MM10A,2013-10-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-21,Risk of Violence,1,Low,2013-10-21,2013-10-20,2013-10-24,1,3,893,0,0,0\r\n5151,donna inman,donna,inman,2013-12-23,Female,1961-08-31,54,Greater than 45,Caucasian,0,2,0,0,2,-3,2013-12-20 01:27:45,2013-12-20 08:11:49,13017519CF10A,,2013-12-19,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-20,2013-12-20,2,0,830,0,0,0\r\n5155,brandon lewis,brandon,lewis,2013-03-10,Male,1987-07-29,28,25 - 45,African-American,0,10,0,0,18,-1,2013-03-09 08:14:54,2013-03-21 09:56:34,13003502CF10A,2013-03-09,,1,F,Deliver Cannabis,1,14000814MM30A,(M1),,2014-05-02,Possess Cannabis/20 Grams Or Less,,,,1,14013392MM10A,(M1),2014-07-29,Battery,Risk of Recidivism,10,High,2013-03-10,Risk of Violence,7,Medium,2013-03-10,2013-07-01,2013-07-19,18,11,113,0,1,1\r\n5158,silburn edwards,silburn,edwards,2013-03-23,Male,1966-11-18,49,Greater than 45,African-American,0,1,0,0,1,-1,2013-03-22 10:06:06,2013-03-24 09:17:51,12018751MM10A,,2013-03-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-23,Risk of Violence,1,Low,2013-03-23,2013-03-22,2013-03-24,1,1,1105,0,0,0\r\n5160,william smith,william,smith,2013-01-15,Male,1979-06-26,36,25 - 45,African-American,0,7,0,0,11,-1,2013-01-14 06:43:21,2013-01-15 03:48:05,13000633CF10A,2013-01-14,,1,F,Driving While License Revoked,1,15008412MM10A,(M1),0,2015-08-09,Credit Card Theft,2015-08-09,2015-08-10,,0,,,,,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,3,Low,2013-01-15,2015-08-09,2015-08-10,11,0,936,1,0,0\r\n5161,tequina montague,tequina,montague,2014-03-07,Female,1989-10-12,26,25 - 45,African-American,0,9,0,0,2,,,,10002862CF10A,,2012-06-11,634,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-07,Risk of Violence,8,High,2014-03-07,,,2,0,756,0,0,0\r\n5162,doreena nicholas,doreena,nicholas,2013-05-10,Female,1974-08-14,41,25 - 45,Caucasian,0,3,0,0,0,-1,2013-05-09 05:59:32,2013-05-10 10:01:12,13006649CF10A,2013-05-09,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-10,Risk of Violence,1,Low,2013-05-10,2013-05-09,2013-05-10,0,0,1057,0,0,0\r\n5166,richard dpugh,richard,dpugh,2013-11-06,Male,1975-10-04,40,25 - 45,Caucasian,1,9,0,0,9,-1,2013-11-05 03:16:54,2013-11-06 02:05:35,10000805CF10A,,2013-11-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-06,Risk of Violence,6,Medium,2013-11-06,2013-11-05,2013-11-06,9,0,877,0,0,0\r\n5167,robert sullivan,robert,sullivan,2013-12-06,Male,1987-02-23,29,25 - 45,Caucasian,0,8,0,1,8,-54,2013-10-13 02:27:45,2013-10-13 01:55:47,13019398MM10A,2013-10-13,,54,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-06,Risk of Violence,4,Low,2013-12-06,2013-10-13,2013-10-13,8,0,847,0,0,0\r\n5171,giovani castano,giovani,castano,2013-04-11,Male,1982-05-15,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-10 11:35:35,2013-04-11 07:36:36,13005191CF10A,2013-04-10,,1,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-11,Risk of Violence,1,Low,2013-04-11,2013-12-09,2014-01-10,0,0,242,0,0,0\r\n5172,damian nance,damian,nance,2013-11-26,Male,1989-11-21,26,25 - 45,African-American,0,7,0,0,7,-19,2013-11-07 09:49:10,2013-11-26 12:03:33,13015540CF10A,2013-11-07,,19,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-26,Risk of Violence,6,Medium,2013-11-26,2014-07-31,2014-08-01,7,0,247,0,0,0\r\n5174,kamal warren,kamal,warren,2013-08-02,Male,1980-05-03,35,25 - 45,African-American,0,2,0,0,1,-1,2013-08-01 10:22:57,2013-08-02 08:24:40,13010758CF10A,2013-08-01,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,2013-08-01,2013-08-02,1,0,973,0,0,0\r\n5176,stephon roberson,stephon,roberson,2014-03-02,Male,1988-12-01,27,25 - 45,African-American,0,2,0,0,3,-1,2014-03-01 05:05:24,2014-03-02 08:32:37,13013426TC20A,2013-03-02,,365,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-02,Risk of Violence,4,Low,2014-03-02,2014-03-01,2014-03-02,3,0,761,0,0,0\r\n5178,britanya lewis,britanya,lewis,2013-12-02,Female,1984-07-06,31,25 - 45,African-American,0,5,0,0,3,-1,2013-12-01 08:31:46,2014-02-01 04:56:59,11008341CF10A,,2013-12-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-02,Risk of Violence,3,Low,2013-12-02,2014-02-14,2014-02-15,3,61,74,0,0,0\r\n5180,mourica evans,mourica,evans,2013-11-02,Female,1983-11-11,32,25 - 45,Other,0,2,0,0,0,-1,2013-11-01 10:58:38,2013-11-03 12:25:21,13020651MM10A,2013-11-01,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-02,Risk of Violence,2,Low,2013-11-02,2013-11-01,2013-11-03,0,1,881,0,0,0\r\n5181,jose jimenez,jose,jimenez,2013-04-01,Male,1965-06-29,50,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-03-31 08:19:14,2013-04-01 05:49:39,13004616CF10A,2013-03-31,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-03-31,2013-04-01,1,0,1096,0,0,0\r\n5182,anthony walters,anthony,walters,2013-03-01,Male,1963-11-30,52,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-02-28 09:15:47,2013-03-01 01:42:15,13002888CF10A,,2013-02-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-02-28,2013-03-01,1,0,1127,0,0,0\r\n5183,jonathan russell,jonathan,russell,2013-02-05,Male,1991-07-01,24,Less than 25,African-American,0,4,0,0,1,-1,2013-02-04 03:27:19,2013-02-06 10:01:51,13002559MM10A,2013-02-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-05,Risk of Violence,4,Low,2013-02-05,2013-02-04,2013-02-06,1,1,1151,0,0,0\r\n5184,daryll orr,daryll,orr,2013-03-23,Male,1977-12-24,38,25 - 45,African-American,0,4,0,0,0,0,2013-03-23 03:28:13,2013-03-24 06:34:49,13004205CF10A,2013-03-22,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-23,Risk of Violence,3,Low,2013-03-23,2015-03-18,2015-03-24,0,1,725,0,0,0\r\n5186,azell moreland,azell,moreland,2013-03-28,Male,1961-07-12,54,Greater than 45,African-American,0,8,0,0,11,-1,2013-03-27 05:20:57,2013-03-28 07:45:04,11018142CF10A,,2013-03-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-28,Risk of Violence,3,Low,2013-03-28,2013-03-27,2013-03-28,11,0,1100,0,0,0\r\n5187,james hines,james,hines,2013-08-18,Male,1944-05-11,71,Greater than 45,Caucasian,0,2,0,0,13,-1,2013-08-17 11:16:45,2013-08-18 02:28:59,13011540CF10A,2013-08-17,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-18,Risk of Violence,1,Low,2013-08-18,2013-08-17,2013-08-18,13,0,957,0,0,0\r\n5189,tara ketola,tara,ketola,2013-09-09,Female,1977-03-14,39,25 - 45,Caucasian,0,4,0,0,1,-1,2013-09-08 04:59:45,2013-10-17 09:28:05,13012681CF10A,2013-09-07,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2013-09-08,2013-10-17,1,38,935,0,0,0\r\n5193,dorean nairn,dorean,nairn,2013-01-01,Female,1979-11-15,36,25 - 45,African-American,0,6,0,0,5,0,2013-01-01 05:49:29,2013-01-02 01:39:04,13000031CF10A,2013-01-01,,0,F,Battery on Law Enforc Officer,1,13005201MM10A,(M1),0,2013-03-16,Battery,2013-03-16,2013-03-16,,1,13005201MM10A,(M1),2013-03-16,Battery,Risk of Recidivism,6,Medium,2013-01-01,Risk of Violence,4,Low,2013-01-01,2013-03-16,2013-03-16,5,1,74,0,1,1\r\n5194,gregory dennis,gregory,dennis,2013-12-16,Male,1960-08-06,55,Greater than 45,African-American,0,1,0,0,0,-1,2013-12-15 07:09:08,2013-12-16 01:30:18,13017327CF10A,2013-12-15,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,0,0,837,0,0,0\r\n5196,orranda uragavidal,orranda,uragavidal,2013-03-15,Male,1982-09-03,33,25 - 45,Hispanic,0,4,0,0,1,,,,11012836CF10A,,2012-02-09,400,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-15,Risk of Violence,3,Low,2013-03-15,,,1,0,1113,0,0,0\r\n5197,fredrick hill,fredrick,hill,2013-05-13,Male,1970-06-18,45,Greater than 45,African-American,0,3,0,0,0,,,,,,,,M,,1,14003266MO10A,(MO3),0,2014-02-25,Trespass,2014-02-25,2014-02-26,,1,15013090CF10A,(F1),2015-10-09,Robbery / Weapon,Risk of Recidivism,3,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2014-02-25,2014-02-26,0,0,288,1,1,1\r\n5198,kyle thompson,kyle,thompson,2013-10-30,Male,1989-02-10,27,25 - 45,Caucasian,0,4,0,0,0,0,2013-10-30 05:18:21,2013-11-08 04:56:54,13015142CF10A,2013-10-30,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-30,Risk of Violence,3,Low,2013-10-30,2013-10-30,2013-11-08,0,9,884,0,0,0\r\n5204,latoria adams,latoria,adams,2014-02-10,Female,1984-12-16,31,25 - 45,African-American,0,8,2,0,10,-3,2014-02-07 03:57:04,2014-02-08 09:36:26,14001761CF10A,2014-02-07,,3,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-10,Risk of Violence,4,Low,2014-02-10,2015-06-18,2015-06-24,10,0,493,0,0,0\r\n5205,roy roberts,roy,roberts,2013-04-07,Male,1991-08-15,24,Less than 25,Caucasian,0,9,0,0,8,0,2013-04-07 03:41:57,2013-05-14 05:41:37,10013335CF10B,,2013-04-07,0,F,arrest case no charge,1,15063411TC40A,(M2),,2015-10-26,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2013-04-07,Risk of Violence,9,High,2013-04-07,2013-04-07,2013-05-14,8,37,932,1,0,0\r\n5209,gary kuchta,gary,kuchta,2013-04-05,Male,1989-04-23,26,25 - 45,Caucasian,0,3,0,0,0,-1,2013-04-04 10:35:20,2013-04-05 01:26:38,13004840CF10A,2013-04-04,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-05,Risk of Violence,3,Low,2013-04-05,2013-04-04,2013-04-05,0,0,1092,0,0,0\r\n5211,frank aguiar,frank,aguiar,2013-05-07,Male,1987-02-17,29,25 - 45,Hispanic,0,3,0,0,0,,,,13006397CF10A,2013-05-04,,3,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-07,Risk of Violence,2,Low,2013-05-07,,,0,0,1060,0,0,0\r\n5213,christopher batista,christopher,batista,2013-04-10,Male,1982-12-06,33,25 - 45,Hispanic,0,2,0,0,3,-51,2013-02-18 10:14:21,2013-02-19 09:12:09,10035723TC10A,2010-07-20,,995,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,2,Low,2013-04-10,2013-02-18,2013-02-19,3,0,1087,0,0,0\r\n5215,andrew renshaw,andrew,renshaw,2013-04-15,Male,1986-12-18,29,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-14 09:00:15,2013-04-15 08:50:37,13005379CF10A,2013-04-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-15,Risk of Violence,3,Low,2013-04-15,2013-04-14,2013-04-15,0,0,1082,0,0,0\r\n5217,maurice jones,maurice,jones,2014-01-04,Male,1978-12-04,37,25 - 45,African-American,0,1,0,0,0,-1,2014-01-03 09:10:13,2014-01-04 01:42:06,14000133CF10A,2014-01-03,,1,F,Felony Battery (Dom Strang),1,15005809MM10A,(M1),0,2015-05-27,Battery,2015-05-27,2015-05-28,,1,15005809MM10A,(M1),2015-05-27,Battery,Risk of Recidivism,1,Low,2014-01-04,Risk of Violence,1,Low,2014-01-04,2015-05-27,2015-05-28,0,0,508,1,1,1\r\n5218,troy brunetto,troy,brunetto,2013-02-05,Male,1969-06-30,46,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-02-04 07:51:30,2013-02-05 01:17:07,13001745CF10A,2013-02-04,,1,F,Solicit To Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-05,Risk of Violence,1,Low,2013-02-05,2014-02-19,2014-03-02,2,0,379,0,0,0\r\n5226,delvin williams,delvin,williams,2013-12-31,Male,1980-05-19,35,25 - 45,African-American,0,10,0,0,27,-103,2013-09-19 02:37:27,2013-09-20 07:48:53,13017992CF10A,2013-12-30,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-12-31,Risk of Violence,6,Medium,2013-12-31,2013-09-19,2013-09-20,27,0,822,0,0,0\r\n5227,darrell thomas,darrell,thomas,2013-01-15,Male,1968-02-10,48,Greater than 45,African-American,0,8,0,0,10,,,,12008776CF10A,2012-06-14,,215,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-15,Risk of Violence,6,Medium,2013-01-15,1992-06-10,1999-05-08,10,0,1172,0,0,0\r\n5236,ewexta dove,ewexta,dove,2013-02-28,Male,1990-12-14,25,25 - 45,African-American,0,10,1,1,8,,,,09007328CF10A,,2013-02-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-28,Risk of Violence,8,High,2013-02-28,2009-09-08,2011-04-14,8,0,1128,0,0,0\r\n5243,deangelo perpall,deangelo,perpall,2013-02-13,Male,1993-04-02,23,Less than 25,African-American,0,9,0,0,0,-1,2013-02-12 04:51:57,2013-02-27 01:07:06,13002183CF10A,2013-02-12,,1,F,Burglary Unoccupied Dwelling,1,13004993MM10A,(M2),0,2013-03-13,Prowling/Loitering,2013-03-13,2013-03-14,,1,13016774MM10A,(M1),2013-09-02,Battery,Risk of Recidivism,9,High,2013-02-13,Risk of Violence,6,Medium,2013-02-13,2013-03-13,2013-03-14,0,14,28,1,1,1\r\n5244,teresa bennett,teresa,bennett,2013-03-13,Male,1972-05-01,43,25 - 45,Caucasian,0,1,0,0,2,-26,2013-02-15 04:05:37,2013-02-16 05:59:32,13002346CF10A,2013-02-15,,26,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-13,Risk of Violence,1,Low,2013-03-13,2013-02-15,2013-02-16,2,0,1115,0,0,0\r\n5246,stacey wiederin,stacey,wiederin,2013-09-13,Female,1963-04-02,53,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-09-11 08:14:19,2013-09-12 06:57:04,13017313MM10A,2013-09-11,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-13,Risk of Violence,1,Low,2013-09-13,2013-09-11,2013-09-12,0,0,931,0,0,0\r\n5248,lagary roberson,lagary,roberson,2013-11-26,Male,1990-08-10,25,25 - 45,African-American,1,9,0,0,4,,,,13019968MM10A,2013-08-19,,99,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-26,Risk of Violence,7,Medium,2013-11-26,,,4,0,857,0,0,0\r\n5249,devin dorvil,devin,dorvil,2013-03-13,Male,1987-06-19,28,25 - 45,African-American,0,4,0,0,0,0,2013-03-13 02:29:55,2013-03-13 08:19:55,13003681CF10A,2013-03-12,,1,F,Offn Against Intellectual Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-13,Risk of Violence,5,Medium,2013-03-13,2013-03-13,2013-03-13,0,0,1115,0,0,0\r\n5251,ryan benitez,ryan,benitez,2013-04-18,Male,1994-09-13,21,Less than 25,Caucasian,0,3,0,0,1,-1,2013-04-17 03:21:05,2013-04-18 07:22:12,13005515CF10A,2013-04-17,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-18,Risk of Violence,5,Medium,2013-04-18,2013-04-17,2013-04-18,1,0,1079,0,0,0\r\n5252,andre foulks,andre,foulks,2013-12-10,Male,1984-10-17,31,25 - 45,Other,0,2,0,0,0,-1,2013-12-09 07:40:01,2013-12-18 09:34:07,13022792MM10A,2013-12-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-10,Risk of Violence,2,Low,2013-12-10,2013-12-09,2013-12-18,0,8,843,0,0,0\r\n5255,soyeka williams,soyeka,williams,2014-03-11,Female,1980-11-01,35,25 - 45,African-American,0,1,0,0,1,-1,2014-03-10 07:27:18,2014-03-11 12:57:04,14002986CF10A,,2014-03-10,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-11,Risk of Violence,1,Low,2014-03-11,2014-03-10,2014-03-11,1,0,752,0,0,0\r\n5258,randy huffman,randy,huffman,2013-04-06,Male,1960-05-12,55,Greater than 45,Caucasian,0,3,0,0,3,0,2013-04-06 02:24:02,2013-04-07 06:31:22,13006629MM10A,2013-04-05,,1,M,Viol Injunction Protect Dom Vi,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-06,Risk of Violence,1,Low,2013-04-06,2013-04-06,2013-04-07,3,1,1091,0,0,0\r\n5260,bach ketant,bach,ketant,2013-07-10,Male,1988-01-04,28,25 - 45,African-American,0,3,0,0,0,-2,2013-07-08 04:09:27,2013-07-09 01:46:35,13012968MM10A,2013-07-08,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-10,Risk of Violence,3,Low,2013-07-10,2013-07-08,2013-07-09,0,0,996,0,0,0\r\n5261,alexander gorshechnikov,alexander,gorshechnikov,2014-01-25,Male,1971-10-04,44,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-24 05:19:29,2014-01-26 09:50:54,14001384MM10A,2014-01-24,,1,M,Battery,1,16000036MM10A,(M1),0,2016-01-01,Battery,2016-01-01,2016-01-02,,1,16000036MM10A,(M1),2016-01-01,Battery,Risk of Recidivism,1,Low,2014-01-25,Risk of Violence,1,Low,2014-01-25,2016-01-01,2016-01-02,0,1,706,1,1,1\r\n5262,grace margri,grace,margri,2013-10-01,Female,1967-07-08,48,Greater than 45,Caucasian,0,1,0,0,2,-66,2013-07-27 12:28:26,2013-08-29 08:31:34,13010505CF10A,2013-07-26,,67,F,Abuse Without Great Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2013-07-27,2013-08-29,2,0,913,0,0,0\r\n5264,kirk myrie,kirk,myrie,2013-01-15,Male,1992-06-01,23,Less than 25,Other,0,7,0,0,2,-1,2013-01-14 07:27:31,2013-02-28 08:04:57,13000877MM10A,2013-01-14,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,9,High,2013-01-15,2013-06-17,2013-06-18,2,44,153,0,0,0\r\n5266,george bennington,george,bennington,2013-02-09,Male,1966-02-06,50,Greater than 45,Caucasian,0,3,0,0,2,0,2013-02-09 02:34:06,2013-02-10 02:41:17,13002026CF10A,2013-02-08,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-09,Risk of Violence,6,Medium,2013-02-09,2015-06-02,2015-06-02,2,1,843,0,0,0\r\n5270,mohan nihal,mohan,nihal,2013-04-26,Male,1984-11-18,31,25 - 45,African-American,0,4,0,0,0,0,2013-04-26 12:08:59,2013-05-18 07:59:34,13008009MM10A,2013-04-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-26,Risk of Violence,3,Low,2013-04-26,2013-04-26,2013-05-18,0,22,1071,0,0,0\r\n5272,jaime bedoya,jaime,bedoya,2013-11-20,Male,1973-09-15,42,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-19 08:34:22,2013-11-20 09:27:32,13016071CF10A,2013-11-19,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-20,Risk of Violence,1,Low,2013-11-20,2013-11-19,2013-11-20,0,0,863,0,0,0\r\n5275,xavier larkins,xavier,larkins,2014-03-18,Male,1986-11-09,29,25 - 45,African-American,0,10,0,0,5,,,,11001435CF10A,,2012-06-13,643,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-03-18,Risk of Violence,9,High,2014-03-18,2008-10-16,2010-02-23,5,0,745,0,0,0\r\n5276,michael bowers,michael,bowers,2013-01-19,Male,1968-03-30,48,Greater than 45,Caucasian,0,1,0,0,1,,,,11015127CF10A,2011-09-10,,497,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-19,Risk of Violence,1,Low,2013-01-19,,,1,0,1168,0,0,0\r\n5281,juan reinoso amaya,juan,reinoso amaya,2013-01-07,Male,1993-02-21,23,Less than 25,Hispanic,0,3,0,0,0,0,2013-01-07 07:51:24,2013-01-09 09:11:54,13000390MM10A,2013-01-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-07,Risk of Violence,5,Medium,2013-01-07,2013-01-07,2013-01-09,0,2,1180,0,0,0\r\n5287,kaeron holness,kaeron,holness,2013-12-09,Male,1983-10-11,32,25 - 45,Other,0,2,0,0,0,0,2013-12-09 03:22:12,2013-12-09 09:18:54,13017027CF10A,2013-12-09,,0,M,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-09,Risk of Violence,2,Low,2013-12-09,2013-12-09,2013-12-09,0,0,844,0,0,0\r\n5290,david church,david,church,2013-04-29,Male,1949-03-21,67,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-28 05:37:37,2013-04-29 06:49:40,13008158MM10A,2013-04-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-28,2013-04-29,0,0,1068,0,0,0\r\n5293,sandy francois,sandy,francois,2013-12-18,Female,1983-09-18,32,25 - 45,African-American,0,7,0,0,11,0,2013-12-18 02:14:29,2013-12-18 08:08:44,13017465CF10A,2013-12-18,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-18,Risk of Violence,4,Low,2013-12-18,2013-12-18,2013-12-18,11,0,835,0,0,0\r\n5294,rodney alvarez,rodney,alvarez,2013-11-06,Male,1971-10-20,44,25 - 45,African-American,0,4,0,0,7,0,2013-11-06 01:43:25,2013-11-07 09:49:04,13015495CF10A,,2013-11-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-06,Risk of Violence,3,Low,2013-11-06,2015-07-21,2015-07-25,7,1,622,0,0,0\r\n5298,dominic rayoni,dominic,rayoni,2013-10-13,Male,1988-03-15,28,25 - 45,Caucasian,0,4,1,0,9,-1,2013-10-12 10:09:36,2013-10-13 07:27:48,13019343MM10A,2013-10-12,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-13,Risk of Violence,3,Low,2013-10-13,2014-01-22,2014-01-27,9,0,101,0,0,0\r\n5307,andrew henderson,andrew,henderson,2014-03-05,Male,1979-12-29,36,25 - 45,African-American,0,4,0,0,4,-215,2013-08-02 03:33:55,2013-08-02 01:47:55,13010932CF10A,2013-08-02,,215,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-05,Risk of Violence,2,Low,2014-03-05,2013-08-02,2013-08-02,4,0,758,0,0,0\r\n5308,andre alfred,andre,alfred,2013-01-20,Male,1980-02-13,36,25 - 45,Other,0,2,0,0,8,-1,2013-01-19 05:26:09,2013-01-21 02:10:52,12005397MO10A,,2013-01-19,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-20,Risk of Violence,2,Low,2013-01-20,2013-11-04,2013-11-04,8,1,288,0,0,0\r\n5309,kristen waun,kristen,waun,2013-05-22,Female,1990-04-30,25,25 - 45,Caucasian,0,4,0,0,0,0,2013-05-22 01:26:39,2013-05-24 08:30:15,13009879MM10A,2013-05-21,,1,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-22,Risk of Violence,4,Low,2013-05-22,2013-05-22,2013-05-24,0,2,1045,0,0,0\r\n5314,damian francis,damian,francis,2013-10-22,Male,1983-01-03,33,25 - 45,African-American,0,2,0,0,4,-9,2013-10-13 10:41:40,2013-10-21 09:18:54,12014902CF10A,,2013-10-13,9,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-22,Risk of Violence,2,Low,2013-10-22,2013-10-13,2013-10-21,4,0,892,0,0,0\r\n5315,fernando martinez-salas,fernando,martinez-salas,2013-10-15,Male,1977-05-30,38,25 - 45,Hispanic,0,1,0,0,0,0,2013-10-15 03:11:18,2013-10-15 07:48:38,13019552MM10A,2013-10-15,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-15,Risk of Violence,1,Low,2013-10-15,2013-10-15,2013-10-15,0,0,899,0,0,0\r\n5318,napoleon savinon,napoleon,savinon,2013-04-03,Male,1963-09-15,52,Greater than 45,Hispanic,0,3,0,0,5,-1,2013-04-02 10:32:57,2013-04-09 07:06:41,13004740CF10A,2013-04-02,,1,F,Aggrav Battery w/Deadly Weapon,1,14009027CF10A,(F5),,2014-06-15,Sex Battery Deft 18+/Vict 11-,,,,1,14009027CF10A,(F5),2014-06-15,Sex Battery Deft 18+/Vict 11-,Risk of Recidivism,3,Low,2013-04-03,Risk of Violence,1,Low,2013-04-03,2013-04-02,2013-04-09,5,6,438,1,1,1\r\n5322,jesus almeida-garcia,jesus,almeida-garcia,2014-02-25,Male,1965-08-06,50,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-24 09:23:08,2014-02-25 09:04:38,14002630CF10A,2014-02-24,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,1,Low,2014-02-25,2014-02-24,2014-02-25,0,0,766,0,0,0\r\n5323,darron kelly,darron,kelly,2013-05-14,Male,1978-09-28,37,25 - 45,African-American,0,1,0,0,4,135,2013-09-26 08:48:26,2013-09-27 08:33:20,13013096CF10A,2013-05-13,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2013-09-26,2013-09-27,4,0,135,0,0,0\r\n5324,rodney mcfadden,rodney,mcfadden,2014-01-01,Male,1957-05-11,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-12-31 06:12:18,2014-01-01 01:31:02,14000027CF10A,2013-12-31,,1,F,Aggravated Assault W/Dead Weap,1,15010373MM10A,(M1),0,2015-10-02,Battery,2015-10-02,2015-10-02,,1,15010373MM10A,(M1),2015-10-02,Battery,Risk of Recidivism,1,Low,2014-01-01,Risk of Violence,1,Low,2014-01-01,2015-10-02,2015-10-02,1,0,639,0,1,1\r\n5331,jonathan fanfan,jonathan,fanfan,2013-09-08,Male,1988-08-15,27,25 - 45,African-American,0,1,0,0,0,0,2013-09-08 04:52:18,2013-09-09 01:35:06,13017089MM10A,2013-09-08,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-08,Risk of Violence,2,Low,2013-09-08,2013-09-08,2013-09-09,0,1,936,0,0,0\r\n5332,jason brantman,jason,brantman,2013-08-19,Male,1977-02-11,39,25 - 45,Caucasian,0,3,0,0,5,-21,2013-07-29 05:42:49,2013-08-17 01:21:33,13010611CF10A,2013-07-29,,21,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-19,Risk of Violence,2,Low,2013-08-19,2013-07-29,2013-08-17,5,0,956,0,0,0\r\n5333,michael times,michael,times,2013-12-30,Male,1991-06-25,24,Less than 25,African-American,0,3,0,0,0,-1,2013-12-29 05:48:49,2013-12-30 08:21:33,13017934CF10A,2013-12-29,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-30,Risk of Violence,4,Low,2013-12-30,2015-06-22,2015-06-29,0,0,539,0,0,0\r\n5334,tarik carter,tarik,carter,2013-02-03,Male,1977-08-14,38,25 - 45,African-American,1,7,0,0,8,-1,2013-02-02 12:18:07,2013-02-04 03:00:05,13002405MM10A,2013-02-01,,2,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-03,Risk of Violence,6,Medium,2013-02-03,2013-02-02,2013-02-04,8,1,1153,0,0,0\r\n5335,robert moran,robert,moran,2013-12-02,Male,1963-08-29,52,Greater than 45,Caucasian,0,2,0,0,7,-23,2013-11-09 12:08:27,2013-11-10 07:41:16,13015625CF10A,2013-11-09,,23,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-11-09,2013-11-10,7,0,851,0,0,0\r\n5342,willie molina,willie,molina,2013-04-15,Male,1969-03-03,47,Greater than 45,Caucasian,0,5,0,0,3,0,2013-04-15 06:04:22,2013-06-17 08:28:27,13007294MM10A,2013-04-15,,0,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-15,Risk of Violence,1,Low,2013-04-15,2013-04-15,2013-06-17,3,63,1082,0,0,0\r\n5344,geoffrey wasserman,geoffrey,wasserman,2013-04-16,Male,1984-03-11,32,25 - 45,Caucasian,0,1,0,0,0,-7,2013-04-09 03:37:17,2013-04-10 02:15:00,13005106CF10A,2013-04-09,,7,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-16,Risk of Violence,2,Low,2013-04-16,2013-04-09,2013-04-10,0,0,1081,0,0,0\r\n5346,antonio walker,antonio,walker,2013-04-06,Male,1981-12-01,34,25 - 45,African-American,0,7,1,0,27,-1,2013-04-05 10:45:22,2013-04-06 07:30:25,13006587MM10A,2013-04-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-06,Risk of Violence,3,Low,2013-04-06,2013-04-05,2013-04-06,27,0,1091,0,0,0\r\n5347,kenneth jones,kenneth,jones,2013-11-26,Male,1973-11-01,42,25 - 45,African-American,0,6,0,0,5,-1,2013-11-25 03:04:52,2013-11-28 02:16:07,14000353CF10A,2013-11-25,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-26,Risk of Violence,6,Medium,2013-11-26,2014-10-02,2014-11-26,5,2,310,0,0,0\r\n5351,colter thompson,colter,thompson,2013-04-09,Male,1994-07-15,21,Less than 25,Caucasian,0,5,0,1,0,-1,2013-04-08 11:48:28,2013-04-09 02:03:42,13006759MM10A,2013-04-08,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-09,Risk of Violence,7,Medium,2013-04-09,2013-04-08,2013-04-09,0,0,1088,0,0,0\r\n5355,ernest bower,ernest,bower,2013-06-11,Male,1960-10-25,55,Greater than 45,Hispanic,0,1,0,0,2,-32,2013-05-10 11:19:49,2013-06-07 10:53:02,13006730CF10A,2013-05-10,,32,F,Traffick Oxycodone     4g><14g,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-11,Risk of Violence,1,Low,2013-06-11,2013-05-10,2013-06-07,2,0,1025,0,0,0\r\n5360,bruce spillane,bruce,spillane,2013-09-07,Male,1963-11-26,52,Greater than 45,Caucasian,0,2,0,0,8,0,2013-09-07 01:01:02,2013-10-16 09:20:34,12015996CF10A,,2013-09-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-07,Risk of Violence,1,Low,2013-09-07,2013-09-07,2013-10-16,8,39,937,0,0,0\r\n5363,machell howell,machell,howell,2013-08-10,Male,1988-11-21,27,25 - 45,African-American,0,2,0,0,1,-1,2013-08-09 03:34:53,2013-08-11 09:11:25,13015068MM10A,2013-08-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-10,Risk of Violence,4,Low,2013-08-10,2013-08-09,2013-08-11,1,1,965,0,0,0\r\n5364,lisette artze,lisette,artze,2013-12-28,Female,1988-09-23,27,25 - 45,Caucasian,0,5,0,0,0,0,2013-12-28 11:18:59,2013-12-29 06:17:42,13023916MM10A,2013-12-28,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-28,Risk of Violence,3,Low,2013-12-28,2013-12-28,2013-12-29,0,1,825,0,0,0\r\n5365,sergi shokov,sergi,shokov,2014-03-04,Male,1959-09-01,56,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-03 04:19:53,2014-03-04 09:05:49,14003010CF10A,2014-03-03,,1,F,Retail Theft $300 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-04,Risk of Violence,1,Low,2014-03-04,2014-03-03,2014-03-04,0,0,759,0,0,0\r\n5369,sem joseph,sem,joseph,2013-07-11,Male,1970-12-09,45,Greater than 45,African-American,0,1,0,0,0,-6,2013-07-05 06:13:45,2013-07-05 08:09:49,13050561TC40A,2013-07-05,,6,M,Interfere W/Traf Cont Dev RR,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-11,Risk of Violence,1,Low,2013-07-11,2013-07-05,2013-07-05,0,0,995,0,0,0\r\n5370,sibthorpe latourclarke,sibthorpe,latourclarke,2013-11-20,Male,1992-06-04,23,Less than 25,African-American,0,2,0,0,1,-39,2013-10-12 01:23:28,2013-11-20 10:30:07,13019326MM10A,2013-10-12,,39,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-20,Risk of Violence,4,Low,2013-11-20,2015-02-18,2015-03-11,1,0,455,0,0,0\r\n5372,quita griffith,quita,griffith,2013-12-16,Female,1986-12-17,29,25 - 45,African-American,0,2,0,0,0,-3,2013-12-13 11:10:42,2013-12-14 01:25:05,13017266CF10A,2013-12-13,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-16,Risk of Violence,2,Low,2013-12-16,2013-12-13,2013-12-14,0,0,837,0,0,0\r\n5373,brayan colon,brayan,colon,2013-02-19,Male,1994-12-26,21,Less than 25,Hispanic,0,3,0,0,0,-5,2013-02-14 06:57:35,2013-02-15 04:33:41,13002305CF10A,,2013-02-14,5,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-19,Risk of Violence,6,Medium,2013-02-19,2013-11-18,2013-11-21,0,0,272,0,0,0\r\n5377,tilford baynham,tilford,baynham,2013-08-28,Male,1946-06-24,69,Greater than 45,African-American,0,6,0,0,3,,,,09005522CF10A,,2012-10-17,315,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-28,Risk of Violence,1,Low,2013-08-28,,,3,0,947,0,0,0\r\n5379,xavier melton,xavier,melton,2013-08-26,Male,1989-02-08,27,25 - 45,African-American,0,8,1,0,11,-1,2013-08-25 08:21:11,2013-08-30 04:19:35,13011974CF10A,2013-08-25,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-26,Risk of Violence,6,Medium,2013-08-26,2014-01-24,2014-01-26,11,4,151,0,0,0\r\n5381,gairy palmer,gairy,palmer,2013-03-31,Male,1977-12-28,38,25 - 45,African-American,0,1,0,0,4,-1,2013-03-30 10:14:17,2013-03-31 06:37:54,13013466TC10A,2013-03-30,,1,M,Susp Drivers Lic 1st Offense,1,15021670TC40A,(M2),,2015-04-09,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-31,Risk of Violence,1,Low,2013-03-31,2013-03-30,2013-03-31,4,0,739,1,0,0\r\n5382,fernand elizee,fernand,elizee,2013-02-20,Male,1986-01-06,30,25 - 45,Other,0,1,0,0,0,-1,2013-02-19 07:44:17,2013-02-20 06:33:35,13002516CF10A,2013-02-19,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,2,Low,2013-02-20,2013-02-19,2013-02-20,0,0,1136,0,0,0\r\n5383,nicholaus macklin,nicholaus,macklin,2014-08-06,Female,1996-05-09,19,Less than 25,African-American,0,9,0,0,1,-1,2014-08-05 07:05:17,2015-10-13 07:10:00,14010672CF10A,2014-08-05,,1,F,Burglary Unoccupied Dwelling,1,14011444CF10A,(F2),,2014-08-21,Dealing in Stolen Property,,,,1,14011444CF10A,(F1),2014-08-21,Robbery W/Firearm,Risk of Recidivism,9,High,2014-08-06,Risk of Violence,7,Medium,2014-08-06,2014-08-05,2015-10-13,1,0,15,1,1,1\r\n5386,michelle hunter,michelle,hunter,2013-09-12,Female,1978-08-20,37,25 - 45,Caucasian,0,1,0,0,1,-1,2013-09-11 07:49:15,2013-09-12 08:10:44,13012854CF10A,2013-09-11,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2013-09-11,2013-09-12,1,0,932,0,0,0\r\n5387,shanna kettle,shanna,kettle,2013-03-31,Male,1981-09-26,34,25 - 45,African-American,0,1,0,0,0,-1,2013-03-30 06:53:38,2013-04-01 12:45:32,13006130MM10A,2013-03-30,,1,M,Battery,1,13014886MM10A,(M1),,2013-06-06,Battery,,,,1,13014886MM10A,(M1),2013-06-06,Battery,Risk of Recidivism,1,Low,2013-03-31,Risk of Violence,1,Low,2013-03-31,2013-03-30,2013-04-01,0,1,67,1,1,1\r\n5389,romario hayden,romario,hayden,2013-09-21,Male,1994-11-23,21,Less than 25,African-American,0,8,0,1,1,-1,2013-09-20 07:24:36,2013-09-21 08:53:45,13013282CF10A,2013-09-20,,1,F,Purchase Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-21,Risk of Violence,7,Medium,2013-09-21,2015-11-10,2015-11-17,1,0,780,0,0,0\r\n5391,alison hadler,alison,hadler,2013-12-31,Female,1978-03-14,38,25 - 45,Caucasian,0,4,0,0,3,-1,2013-12-30 09:55:02,2013-12-31 07:52:56,13016091CF10A,,2013-12-30,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-31,Risk of Violence,2,Low,2013-12-31,2015-10-07,2015-11-09,3,0,645,0,0,0\r\n5392,kenneth rolle,kenneth,rolle,2014-02-27,Male,1968-06-08,47,Greater than 45,African-American,0,4,0,0,1,0,2014-02-27 02:05:42,2014-02-28 10:09:28,14003442MM10A,2014-02-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-27,Risk of Violence,5,Medium,2014-02-27,2014-02-27,2014-02-28,1,1,764,0,0,0\r\n5394,christopher smith,christopher,smith,2013-03-10,Male,1960-01-21,56,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-03-09 06:43:22,2013-09-16 12:03:42,13003483CF10A,2013-03-09,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-10,Risk of Violence,2,Low,2013-03-10,2013-03-09,2013-09-16,3,190,1118,0,0,0\r\n5398,charles collins,charles,collins,2013-02-23,Male,1992-10-29,23,Less than 25,African-American,0,8,0,0,0,-1,2013-02-22 05:25:17,2013-02-23 08:37:38,13003747MM10A,2013-02-22,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-23,Risk of Violence,8,High,2013-02-23,2014-10-16,2014-11-15,0,0,600,0,0,0\r\n5399,thomas raby,thomas,raby,2013-07-18,Male,1958-08-02,57,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-07-16 09:13:15,2013-07-18 11:14:39,13009971CF10A,2013-07-16,,2,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-18,Risk of Violence,1,Low,2013-07-18,2013-07-16,2013-07-18,0,0,988,0,0,0\r\n5400,bryan jackson,bryan,jackson,2014-01-30,Male,1990-12-03,25,25 - 45,African-American,0,7,1,0,9,-17,2014-01-13 12:56:03,2014-01-26 01:00:56,14001025CF10A,,2014-01-24,6,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-30,Risk of Violence,4,Low,2014-01-30,2014-01-13,2014-01-26,9,0,792,0,0,0\r\n5402,neyesha brunson,neyesha,brunson,2013-02-14,Female,1992-05-18,23,Less than 25,African-American,0,10,0,0,2,16,2013-03-02 04:43:32,2013-06-26 08:30:17,13001252CF10A,2013-01-25,,20,F,Battery on Law Enforc Officer,1,13009492CF10A,(F3),0,2013-07-07,Felony Battery w/Prior Convict,2013-07-07,2013-10-12,,1,13009492CF10A,(F3),2013-07-07,Felony Battery w/Prior Convict,Risk of Recidivism,10,High,2013-02-14,Risk of Violence,9,High,2013-02-14,2013-03-02,2013-06-26,2,0,16,0,1,1\r\n5404,keisha jones,keisha,jones,2013-10-18,Female,1979-12-31,36,25 - 45,African-American,0,5,0,0,2,-2,2013-10-16 05:52:30,2013-10-17 05:04:11,13019626MM10A,2013-10-16,,2,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-18,Risk of Violence,3,Low,2013-10-18,2013-10-16,2013-10-17,2,0,896,0,0,0\r\n5405,corey kendrick,corey,kendrick,2014-02-07,Male,1975-02-27,41,25 - 45,African-American,0,5,0,0,5,-1,2014-02-06 05:13:21,2014-02-07 01:43:46,11033444TC20A,2011-05-08,,1006,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-07,Risk of Violence,6,Medium,2014-02-07,2014-02-06,2014-02-07,5,0,784,0,0,0\r\n5406,victor guevaramolina,victor,guevaramolina,2013-05-08,Male,1984-11-23,31,25 - 45,Hispanic,0,3,0,0,2,-69,2013-02-28 07:13:35,2013-04-19 01:11:35,13003030CF10A,2013-02-28,,69,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-08,Risk of Violence,2,Low,2013-05-08,2013-02-28,2013-04-19,2,0,1059,0,0,0\r\n5410,marta lopes,marta,lopes,2013-05-24,Female,1977-01-04,39,25 - 45,Other,0,1,0,0,0,-1,2013-05-23 08:14:20,2013-05-24 11:46:12,13007634CF10A,2013-05-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-24,Risk of Violence,1,Low,2013-05-24,2013-05-23,2013-05-24,0,0,1043,0,0,0\r\n5411,claude jones,claude,jones,2013-08-29,Male,1994-09-21,21,Less than 25,African-American,0,6,0,0,1,-1,2013-08-28 11:29:05,2013-08-30 01:35:02,13012170CF10A,,2013-08-28,1,F,arrest case no charge,1,14053639TC40A,(M2),,2014-05-10,Leave Acc/Attend Veh/More $50,,,,1,15012388CF10A,(F2),2015-09-24,Robbery / No Weapon,Risk of Recidivism,6,Medium,2013-08-29,Risk of Violence,6,Medium,2013-08-29,2013-11-05,2013-11-15,1,1,68,0,1,1\r\n5416,jimmy toussaint,jimmy,toussaint,2013-04-29,Male,1984-05-21,31,25 - 45,African-American,0,4,0,0,2,-1,2013-04-28 02:35:06,2013-04-30 03:26:44,13018188TC10A,2013-04-28,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-29,Risk of Violence,6,Medium,2013-04-29,2014-04-20,2014-04-21,2,1,356,0,0,0\r\n5417,brian walters,brian,walters,2013-02-04,Male,1978-07-11,37,25 - 45,Caucasian,0,1,0,0,0,-2,2013-02-02 09:07:40,2013-02-03 08:50:00,13002400MM10A,2013-02-02,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,2,Low,2013-02-04,2013-02-02,2013-02-03,0,0,1152,0,0,0\r\n5418,henry noel,henry,noel,2013-02-07,Male,1988-08-05,27,25 - 45,African-American,0,2,0,0,0,-1,2013-02-06 10:17:43,2013-02-08 06:25:22,13001858CF10A,2013-02-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-07,Risk of Violence,4,Low,2013-02-07,2013-02-06,2013-02-08,0,1,1149,0,0,0\r\n5423,barry dambra,barry,dambra,2013-11-22,Male,1956-08-16,59,Greater than 45,Caucasian,0,1,0,0,2,-19,2013-11-03 10:51:50,2013-11-22 06:16:52,13015326CF10A,2013-11-03,,19,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-22,Risk of Violence,1,Low,2013-11-22,2013-11-03,2013-11-22,2,0,861,0,0,0\r\n5426,james haynes,james,haynes,2013-12-17,Male,1976-09-20,39,25 - 45,Caucasian,0,10,0,0,21,-216,2013-05-15 09:02:56,2013-11-25 11:29:51,13006931CF10A,2013-05-15,,216,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-12-17,Risk of Violence,10,High,2013-12-17,2015-07-23,2015-10-12,21,0,583,0,0,0\r\n5427,erricka gordon,erricka,gordon,2013-05-17,Female,1972-11-30,43,25 - 45,African-American,0,3,0,0,2,-1,2013-05-16 06:12:00,2013-05-18 08:14:28,13006987CF10A,2013-05-16,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-17,Risk of Violence,1,Low,2013-05-17,2013-11-06,2013-11-21,2,1,173,0,0,0\r\n5431,heather fleischer,heather,fleischer,2013-07-30,Female,1973-01-19,43,25 - 45,Caucasian,0,2,0,0,3,9,2013-08-08 06:27:18,2013-08-09 06:29:52,13013799MM10A,2013-07-20,,10,M,Viol Injunct Domestic Violence,1,13015001MM10A,(M1),0,2013-08-08,Viol Injunct Domestic Violence,2013-08-08,2013-08-09,,1,13016744MM10A,(M1),2013-09-01,Battery,Risk of Recidivism,2,Low,2013-07-30,Risk of Violence,1,Low,2013-07-30,2013-08-08,2013-08-09,3,0,9,1,1,1\r\n5436,monique young,monique,young,2013-05-02,Female,1961-07-13,54,Greater than 45,Caucasian,0,2,0,0,1,-4,2013-04-28 04:26:40,2013-05-01 06:20:52,13008165MM10A,2013-04-28,,4,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-02,Risk of Violence,1,Low,2013-05-02,2013-04-28,2013-05-01,1,0,1065,0,0,0\r\n5439,richenel metayer,richenel,metayer,2013-11-05,Male,1980-04-07,36,25 - 45,Other,0,4,0,0,3,-1,2013-11-04 12:26:37,2013-12-20 09:17:28,13020836MM10A,2013-11-04,,1,M,Viol Injunct Domestic Violence,1,14009088MM10A,(M1),0,2014-06-08,Viol Prot Injunc Repeat Viol,2014-06-08,2015-02-20,,1,14008782CF10A,(F3),2014-06-08,Felony Battery w/Prior Convict,Risk of Recidivism,4,Low,2013-11-05,Risk of Violence,3,Low,2013-11-05,2014-06-08,2015-02-20,3,45,215,1,1,1\r\n5441,joseph pendergrass,joseph,pendergrass,2013-05-04,Male,1959-05-11,56,Greater than 45,African-American,0,4,0,0,0,-1,2013-05-03 02:27:09,2013-05-05 01:57:23,13008632MM10A,2013-05-03,,1,M,Tresspass in Structure or Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2013-05-03,2013-05-05,0,1,1063,0,0,0\r\n5443,malcolm ricks,malcolm,ricks,2013-05-29,Male,1990-09-08,25,25 - 45,African-American,1,9,0,0,2,-1,2013-05-28 05:50:56,2013-05-29 07:54:28,13007596CF10A,2013-05-28,,1,F,Possession of Cocaine,1,16002819CF10A,(M1),1,2016-03-03,,2016-03-04,2016-03-04,,0,,,,,Risk of Recidivism,9,High,2013-05-29,Risk of Violence,7,Medium,2013-05-29,2014-10-09,2014-10-10,2,0,498,0,0,0\r\n5445,jean edmond,jean,edmond,2013-01-17,Male,1982-02-28,34,25 - 45,African-American,0,10,2,0,9,,,,12055993TC10A,2012-10-29,,80,M,Susp Drivers Lic 1st Offense,1,13013709TC10A,(M2),,2013-02-19,Driving License Suspended,,,,1,14004311CF10A,(F6),2013-11-14,Murder in the First Degree,Risk of Recidivism,10,High,2013-01-17,Risk of Violence,9,High,2013-01-17,2006-11-20,2007-01-01,9,0,33,1,1,1\r\n5446,osmar berges,osmar,berges,2014-02-08,Male,1967-12-09,48,Greater than 45,African-American,0,6,0,0,4,-1,2014-02-07 08:43:01,2014-02-08 10:23:55,14001736CF10A,2014-02-07,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-08,Risk of Violence,3,Low,2014-02-08,2015-06-17,2015-07-01,4,0,494,0,0,0\r\n5447,james lapaix,james,lapaix,2013-12-08,Male,1981-10-03,34,25 - 45,African-American,1,10,0,0,21,-1,2013-12-07 10:49:28,2013-12-13 05:26:14,13022660MM10A,2013-12-07,,1,M,Battery,1,14004993MM10A,(M2),0,2014-03-22,Driving License Suspended,2014-03-22,2014-11-12,,1,14004993MM10A,(M1),2014-03-22,Battery,Risk of Recidivism,10,High,2013-12-08,Risk of Violence,10,High,2013-12-08,2014-03-22,2014-11-12,21,5,104,1,1,1\r\n5448,jose pareja,jose,pareja,2013-04-14,Male,1987-10-07,28,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-13 09:40:01,2013-04-14 02:57:23,13005350CF10A,2013-04-13,,1,F,Traffick Oxycodone     4g><14g,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-14,Risk of Violence,2,Low,2013-04-14,2013-04-13,2013-04-14,0,0,1083,0,0,0\r\n5449,hermes perez,hermes,perez,2013-11-17,Male,1983-05-27,32,25 - 45,Caucasian,0,3,0,0,1,-1,2013-11-16 01:11:58,2013-11-17 08:28:49,13015954CF10A,2013-11-16,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-17,Risk of Violence,2,Low,2013-11-17,2015-07-15,2015-08-08,1,0,605,0,0,0\r\n5451,jamie winkleblech,jamie,winkleblech,2014-03-11,Female,1985-02-02,31,25 - 45,Caucasian,0,1,0,0,2,-1,2014-03-10 11:24:08,2014-03-12 03:59:12,14003385CF10A,2014-03-10,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-11,Risk of Violence,1,Low,2014-03-11,2014-03-10,2014-03-12,2,1,752,0,0,0\r\n5455,christine powers,christine,powers,2014-01-16,Female,1983-09-04,32,25 - 45,Caucasian,0,2,0,1,4,-1,2014-01-15 05:18:19,2014-01-15 09:27:23,14000652CF10A,2014-01-15,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-16,Risk of Violence,1,Low,2014-01-16,2014-01-15,2014-01-15,4,0,806,0,0,0\r\n5459,hering bolano,hering,bolano,2014-03-15,Male,1967-07-21,48,Greater than 45,African-American,0,1,0,0,0,0,2014-03-15 01:10:22,2014-03-16 01:46:30,14003674CF10A,2014-03-14,,1,M,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-15,Risk of Violence,1,Low,2014-03-15,2014-03-15,2014-03-16,0,1,748,0,0,0\r\n5460,anthony demps,anthony,demps,2013-06-26,Male,1990-06-27,25,25 - 45,African-American,1,9,2,0,9,43,2013-08-08 10:16:20,2013-09-27 05:24:31,11019440CF10A,,2013-06-06,20,F,arrest case no charge,1,13011104CF10A,(F3),0,2013-08-08,Grand Theft (Motor Vehicle),2013-08-08,2013-09-27,,1,16000237MM10A,(M1),2015-10-07,Battery,Risk of Recidivism,9,High,2013-06-26,Risk of Violence,9,High,2013-06-26,2013-08-08,2013-09-27,9,0,43,1,1,1\r\n5461,willie starkey,willie,starkey,2013-12-16,Male,1981-03-22,35,25 - 45,African-American,0,2,0,0,1,0,2013-12-16 03:09:50,2013-12-16 08:23:44,13017369CF10A,2013-12-16,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-16,2013-12-16,1,0,837,0,0,0\r\n5473,terrance gordon,terrance,gordon,2014-03-26,Male,1993-11-22,22,Less than 25,African-American,0,2,0,0,0,-1,2014-03-25 03:44:15,2014-03-26 09:01:59,14004227CF10A,2014-03-25,,1,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-26,Risk of Violence,4,Low,2014-03-26,2014-03-25,2014-03-26,0,0,737,0,0,0\r\n5474,demarr labordeaux,demarr,labordeaux,2013-04-05,Male,1987-04-28,28,25 - 45,African-American,0,5,0,0,4,0,2013-04-05 01:20:12,2013-04-05 01:32:17,13004854CF10A,2013-04-04,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-05,Risk of Violence,5,Medium,2013-04-05,2014-10-15,2014-10-16,4,0,558,0,0,0\r\n5475,robert watts,robert,watts,2013-05-09,Male,1990-03-11,26,25 - 45,African-American,0,2,0,0,0,-1,2013-05-08 04:58:36,2013-05-09 07:23:44,13008904MM10A,2013-05-08,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-09,Risk of Violence,3,Low,2013-05-09,2013-05-08,2013-05-09,0,0,1058,0,0,0\r\n5477,brian wagner,brian,wagner,2013-04-11,Male,1982-03-20,34,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-10 11:41:34,2013-04-11 07:33:54,13005190CF10A,2013-04-10,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-11,Risk of Violence,1,Low,2013-04-11,2013-04-10,2013-04-11,0,0,1086,0,0,0\r\n5479,anthony bones,anthony,bones,2013-01-12,Male,1993-08-19,22,Less than 25,African-American,0,9,0,0,3,-1,2013-01-11 05:12:24,2013-02-14 04:12:48,13000502CF10A,2013-01-11,,1,F,Agg Assault W/int Com Fel Dome,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-12,Risk of Violence,9,High,2013-01-12,2015-01-08,2015-03-12,3,33,726,0,0,0\r\n5483,joseph webb,joseph,webb,2014-03-03,Male,1971-09-22,44,25 - 45,Caucasian,0,2,0,0,5,0,2014-03-03 10:15:24,2014-03-10 10:03:52,14003005CF10A,,2014-03-03,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-03,2014-03-10,5,7,760,0,0,0\r\n5484,robert bianco,robert,bianco,2013-11-25,Male,1958-09-05,57,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-11-24 07:32:33,2013-12-11 11:30:00,13016331CF10A,2013-11-24,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,2013-11-24,2013-12-11,1,16,858,0,0,0\r\n5487,ranell peebles,ranell,peebles,2013-03-08,Male,1981-06-15,34,25 - 45,African-American,0,3,0,0,0,,,,13003405CF10A,2013-03-07,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-08,Risk of Violence,4,Low,2013-03-08,,,0,0,1120,0,0,0\r\n5491,michael davis,michael,davis,2013-08-16,Male,1995-04-21,20,Less than 25,Caucasian,0,4,0,0,0,-1,2013-08-15 11:34:07,2013-08-16 01:47:50,13011485CF10A,2013-08-15,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-16,Risk of Violence,7,Medium,2013-08-16,2013-08-15,2013-08-16,0,0,959,0,0,0\r\n5492,david hayes,david,hayes,2014-01-14,Male,1980-08-12,35,25 - 45,Caucasian,0,9,0,0,2,-50,2013-11-25 05:40:33,2013-11-26 08:44:57,13016409CF10A,2013-11-25,,50,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-14,Risk of Violence,5,Medium,2014-01-14,2014-03-26,2014-04-08,2,0,71,0,0,0\r\n5495,johnnie dixon,johnnie,dixon,2013-05-30,Male,1955-12-17,60,Greater than 45,African-American,0,3,0,0,13,-13,2013-05-17 08:51:50,2013-05-18 07:54:03,13007090CF10A,2013-05-17,,13,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-30,Risk of Violence,1,Low,2013-05-30,2013-05-17,2013-05-18,13,0,1037,0,0,0\r\n5496,shanice king,shanice,king,2014-02-21,Female,1993-05-27,22,Less than 25,African-American,0,5,0,0,2,-1,2014-02-20 01:45:43,2014-02-21 10:18:02,14002407CF10A,2014-02-20,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-21,Risk of Violence,7,Medium,2014-02-21,2014-02-20,2014-02-21,2,0,770,0,0,0\r\n5497,douglas duarte,douglas,duarte,2013-03-11,Male,1972-12-13,43,25 - 45,Hispanic,0,1,0,0,0,-1,2013-03-10 08:27:36,2013-03-11 07:22:36,13004808MM10A,2013-03-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-03-10,2013-03-11,0,0,1117,0,0,0\r\n5500,william boyance,william,boyance,2013-09-23,Male,1943-11-12,72,Greater than 45,Caucasian,0,4,0,0,7,-1,2013-09-22 12:36:34,2013-09-22 02:15:20,13013322CF10A,2013-09-21,,2,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-22,2013-09-22,7,0,921,0,0,0\r\n5505,bruce davis,bruce,davis,2013-08-08,Male,1956-02-06,60,Greater than 45,African-American,0,1,0,0,0,-1,2013-08-07 09:07:30,2014-03-13 12:32:21,13011062CF10A,2013-08-07,,1,F,Att Burgl Struc/Conv Dwel/Occp,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-08,Risk of Violence,1,Low,2013-08-08,2016-01-05,2016-01-18,0,217,880,0,0,0\r\n5507,patwayne walters,patwayne,walters,2013-01-01,Male,1972-10-24,43,25 - 45,Other,0,2,0,0,2,,,,13000001TC10A,2012-12-31,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-01,Risk of Violence,1,Low,2013-01-01,,,2,0,1186,0,0,0\r\n5508,eric francois,eric,francois,2013-06-19,Male,1985-08-17,30,25 - 45,African-American,0,4,0,0,1,-5,2013-06-14 01:37:37,2013-06-16 07:28:46,13011443MM10A,2013-06-14,,5,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-19,Risk of Violence,6,Medium,2013-06-19,2013-06-14,2013-06-16,1,0,1017,0,0,0\r\n5511,tracy primose,tracy,primose,2013-11-03,Female,1972-12-12,43,25 - 45,Caucasian,0,6,0,0,0,-1,2013-11-02 09:36:41,2013-12-02 08:15:22,13020687MM10A,2013-11-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-03,Risk of Violence,1,Low,2013-11-03,2013-11-02,2013-12-02,0,29,880,0,0,0\r\n5512,angel lopez,angel,lopez,2013-02-25,Male,1967-11-14,48,Greater than 45,Hispanic,0,1,0,0,1,-8,2013-02-17 12:27:13,2013-02-23 08:12:19,13003395MM10A,2013-02-16,,9,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,1,Low,2013-02-25,2013-02-17,2013-02-23,1,0,1131,0,0,0\r\n5514,turgay fodul,turgay,fodul,2013-02-11,Male,1961-07-01,54,Greater than 45,Other,0,1,0,0,0,0,2013-02-11 12:00:23,2013-02-11 07:22:50,13002959MM10A,2013-02-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-11,2013-02-11,0,0,1145,0,0,0\r\n5515,shawn demetrius,shawn,demetrius,2013-08-25,Male,1970-06-11,45,Greater than 45,African-American,0,1,0,0,1,-1,2013-08-24 06:22:37,2013-08-26 08:51:07,13016203MM10A,2013-08-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-25,Risk of Violence,1,Low,2013-08-25,2013-08-24,2013-08-26,1,1,950,0,0,0\r\n5517,junior savoir,junior,savoir,2013-03-19,Male,1979-05-25,36,25 - 45,Other,0,4,0,0,0,-1,2013-03-18 10:24:17,2013-03-22 05:52:34,13003946CF10A,2013-03-18,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-19,Risk of Violence,2,Low,2013-03-19,2013-03-18,2013-03-22,0,3,1109,0,0,0\r\n5518,john hartsock,john,hartsock,2013-08-26,Male,1985-03-26,31,25 - 45,Caucasian,0,1,0,0,1,0,2013-08-26 02:58:09,2013-08-26 01:26:58,13016323MM10A,2013-08-25,,1,M,Driving Under The Influence,1,16002812CF10A,(M1),0,2016-03-05,,2016-03-05,2016-03-10,,0,,,,,Risk of Recidivism,1,Low,2013-08-26,Risk of Violence,1,Low,2013-08-26,2016-03-05,2016-03-10,1,0,922,1,0,0\r\n5519,derric taylor,derric,taylor,2013-04-25,Male,1976-03-10,40,25 - 45,African-American,0,1,0,0,0,-1,2013-04-24 05:34:54,2013-04-26 09:40:31,13007964MM10A,2013-04-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-25,Risk of Violence,1,Low,2013-04-25,2013-04-24,2013-04-26,0,1,1072,0,0,0\r\n5520,robert gilbert,robert,gilbert,2013-12-30,Male,1966-02-18,50,Greater than 45,Caucasian,0,1,0,0,1,-4,2013-12-26 09:12:06,2013-12-28 02:38:17,13017960CF10A,,2013-12-26,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-30,Risk of Violence,1,Low,2013-12-30,2013-12-26,2013-12-28,1,0,823,0,0,0\r\n5522,tina james,tina,james,2013-06-25,Female,1989-08-13,26,25 - 45,Other,0,6,0,0,1,-24,2013-06-01 05:12:35,2013-06-02 01:56:35,08021085MM10A,,2009-10-15,1349,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-06-25,Risk of Violence,4,Low,2013-06-25,2015-11-12,2015-11-12,1,0,870,0,0,0\r\n5524,robinson benjamin,robinson,benjamin,2013-09-04,Male,1974-08-18,41,25 - 45,African-American,0,4,0,0,7,0,2013-09-04 10:54:08,2013-09-05 07:50:31,12012054CF10A,,2013-09-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-09-04,2013-09-05,7,1,940,0,0,0\r\n5528,carly lipper,carly,lipper,2013-05-28,Female,1987-10-07,28,25 - 45,Caucasian,0,6,0,0,0,-1,2013-05-27 05:16:29,2013-05-29 05:22:26,13007533CF10A,2013-05-27,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-28,Risk of Violence,3,Low,2013-05-28,2013-08-24,2013-09-10,0,1,88,0,0,0\r\n5530,raymond joseph,raymond,joseph,2014-01-15,Male,1986-02-17,30,25 - 45,African-American,0,1,0,0,1,-48,2013-11-28 12:42:35,2014-01-15 10:22:07,13016540CF10A,2013-11-28,,48,F,Murder in 2nd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-15,Risk of Violence,2,Low,2014-01-15,2013-11-28,2014-01-15,1,0,807,0,0,0\r\n5534,julio ibanez,julio,ibanez,2013-01-09,Male,1980-10-28,35,25 - 45,Hispanic,0,2,0,0,5,-1,2013-01-08 02:08:35,2013-01-08 06:56:18,13000391MM10A,2013-01-07,,2,M,Reckless Driving,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-09,Risk of Violence,1,Low,2013-01-09,2013-01-08,2013-01-08,5,0,1178,0,0,0\r\n5536,michael grisham,michael,grisham,2014-02-12,Male,1970-11-09,45,Greater than 45,African-American,0,9,0,0,1,-70,2013-12-04 08:10:54,2014-02-04 11:10:00,13001861CF10A,,2013-12-04,70,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-12,Risk of Violence,8,High,2014-02-12,2013-12-04,2014-02-04,1,0,779,0,0,0\r\n5542,sabrina milton,sabrina,milton,2013-11-04,Female,1985-11-07,30,25 - 45,African-American,0,2,0,0,0,-2,2013-11-02 11:13:20,2013-11-03 01:50:01,13020691MM10A,2013-11-02,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-04,Risk of Violence,2,Low,2013-11-04,2013-11-02,2013-11-03,0,0,879,0,0,0\r\n5543,earl sharp,earl,sharp,2013-05-22,Male,1971-02-12,45,Greater than 45,Caucasian,0,3,0,0,3,-1,2013-05-21 11:38:18,2013-08-22 09:33:30,13009780MM10A,2013-05-21,,1,M,Battery,1,14000931MM40A,(M1),,2013-11-24,Battery,,,,1,14000931MM40A,(M1),2013-11-24,Battery,Risk of Recidivism,3,Low,2013-05-22,Risk of Violence,2,Low,2013-05-22,2013-05-21,2013-08-22,3,92,186,1,1,1\r\n5544,jennifer wiggs,jennifer,wiggs,2013-04-15,Female,1991-08-13,24,Less than 25,African-American,0,4,0,0,2,-1,2013-04-14 01:58:48,2013-04-15 07:59:24,13005361CF10A,2013-04-14,,1,F,Forging Bank Bills/Promis Note,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-15,Risk of Violence,4,Low,2013-04-15,2014-10-03,2014-10-08,2,0,536,0,0,0\r\n5546,mark onufer,mark,onufer,2013-11-20,Male,1959-11-02,56,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-19 08:52:59,2013-11-20 08:31:12,13021768MM10A,2013-11-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-20,Risk of Violence,1,Low,2013-11-20,2013-11-19,2013-11-20,0,0,863,0,0,0\r\n5550,stanley rivers,stanley,rivers,2013-05-18,Male,1992-01-28,24,Less than 25,African-American,0,10,4,0,14,-1,2013-05-17 05:23:41,2013-11-13 05:58:39,13007047CF10A,2013-05-17,,1,F,Grand Theft (Motor Vehicle),1,14009008CF10A,(F2),,2014-06-30,Robbery,,,,1,14009008CF10A,(F2),2014-06-30,Robbery,Risk of Recidivism,10,High,2013-05-18,Risk of Violence,10,High,2013-05-18,2014-06-25,2014-08-26,14,179,408,1,1,1\r\n5551,terry ross,terry,ross,2013-08-03,Male,1977-10-25,38,25 - 45,African-American,0,6,0,0,11,-1,2013-08-02 09:45:18,2013-08-20 10:59:27,13010926CF10A,2013-08-02,,1,F,Felony Batt(Great Bodily Harm),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-03,Risk of Violence,2,Low,2013-08-03,2013-08-02,2013-08-20,11,17,972,0,0,0\r\n5553,belal jabr,belal,jabr,2013-04-11,Male,1994-02-15,22,Less than 25,Caucasian,0,3,0,0,0,-1,2013-04-10 07:51:06,2013-04-11 07:48:52,13005168CF10A,2013-04-10,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-11,Risk of Violence,5,Medium,2013-04-11,2013-04-10,2013-04-11,0,0,1086,0,0,0\r\n5554,jean innocent,jean,innocent,2013-10-11,Male,1988-01-13,28,25 - 45,African-American,0,8,0,0,5,-1,2013-10-10 06:23:41,2013-10-11 08:20:50,12003079MM10A,,2013-10-10,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-11,Risk of Violence,6,Medium,2013-10-11,2013-10-10,2013-10-11,5,0,903,0,0,0\r\n5558,jesse montooth,jesse,montooth,2013-04-23,Male,1990-11-13,25,25 - 45,Caucasian,0,3,0,0,1,0,2013-04-23 02:54:38,2013-06-04 09:05:42,13007880MM10A,2013-04-23,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-23,Risk of Violence,4,Low,2013-04-23,2013-06-22,2013-06-26,1,42,60,0,0,0\r\n5560,fernando padron,fernando,padron,2013-02-04,Male,1963-01-08,53,Greater than 45,Hispanic,0,1,0,0,1,-1,2013-02-03 04:59:00,2013-02-04 07:14:28,13001693CF10A,2013-02-03,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-04-13,2013-04-13,1,0,68,0,0,0\r\n5561,christopher hall,christopher,hall,2013-10-29,Male,1985-05-09,30,25 - 45,African-American,0,1,0,0,0,-1,2013-10-28 04:30:30,2013-10-30 09:15:16,13015053CF10A,2013-10-28,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-29,Risk of Violence,1,Low,2013-10-29,2013-10-28,2013-10-30,0,1,885,0,0,0\r\n5563,steven benghiat,steven,benghiat,2013-04-19,Male,1982-12-22,33,25 - 45,Caucasian,0,6,0,0,0,0,2013-04-19 03:25:56,2013-04-19 07:26:13,13005630CF10A,2013-04-19,,0,F,Possession of Cocaine,1,14004481MM10A,(M1),0,2014-03-14,Battery,2014-03-14,2014-04-11,,1,14004481MM10A,(M1),2014-03-14,Battery,Risk of Recidivism,6,Medium,2013-04-19,Risk of Violence,3,Low,2013-04-19,2014-03-14,2014-04-11,0,0,329,1,1,1\r\n5564,kimiko wilkinson,kimiko,wilkinson,2013-02-09,Male,1980-12-14,35,25 - 45,African-American,0,4,0,0,5,-1,2013-02-08 01:19:12,2013-09-21 04:54:31,13002152CF10A,2013-02-08,,1,F,Aggrav Stalking After Injunctn,1,14007768CF10A,(F3),0,2014-06-05,Possession of Cocaine,2014-06-05,2015-02-02,,1,15000832MM20A,(M1),2015-02-25,Battery,Risk of Recidivism,4,Low,2013-02-09,Risk of Violence,3,Low,2013-02-09,2014-06-05,2015-02-02,5,224,481,1,1,1\r\n5567,mary mckinley,mary,mckinley,2013-12-27,Female,1982-10-19,33,25 - 45,African-American,0,2,0,0,0,-1,2013-12-26 06:52:59,2013-12-28 01:05:30,13017838CF10A,2013-12-26,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-27,Risk of Violence,2,Low,2013-12-27,2013-12-26,2013-12-28,0,1,826,0,0,0\r\n5568,viven mcdonald,viven,mcdonald,2013-04-03,Male,1950-10-03,65,Greater than 45,African-American,0,10,0,0,11,,,,07003603CF10A,2007-02-23,,2231,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-03,Risk of Violence,4,Low,2013-04-03,2007-03-02,2007-05-16,11,0,1094,0,0,0\r\n5569,michael kuruvilla,michael,kuruvilla,2013-09-26,Male,1956-06-11,59,Greater than 45,Other,0,1,0,0,1,-25,2013-09-01 10:54:33,2013-09-02 01:06:24,13016750MM10A,2013-09-01,,25,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-26,Risk of Violence,1,Low,2013-09-26,2013-09-01,2013-09-02,1,0,918,0,0,0\r\n5572,sharon rouis,sharon,rouis,2014-01-09,Female,1978-09-30,37,25 - 45,African-American,0,5,0,0,4,,,,12015065MO10A,,2014-01-08,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-09,Risk of Violence,3,Low,2014-01-09,,,4,0,813,0,0,0\r\n5573,marcie denney,marcie,denney,2013-09-13,Female,1982-10-12,33,25 - 45,Caucasian,0,7,0,0,1,-1,2013-09-12 10:04:43,2013-12-06 04:12:00,11012788CF10A,,2013-09-12,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-13,Risk of Violence,5,Medium,2013-09-13,2013-09-12,2013-12-06,1,84,931,0,0,0\r\n5576,robert osceola,robert,osceola,2014-11-05,Male,1989-12-13,26,25 - 45,Native American,0,8,0,0,11,64,2015-01-08 12:49:54,2015-09-07 02:50:46,14013671CF10A,2014-06-08,,150,F,Possession of Cocaine,1,16000600MM40A,(M1),,2015-12-28,Battery,,,,1,16000600MM40A,(M1),2015-12-28,Battery,Risk of Recidivism,8,High,2014-11-05,Risk of Violence,5,Medium,2014-11-05,2015-01-08,2015-09-07,11,0,64,0,1,1\r\n5578,edward mckennie,edward,mckennie,2013-11-07,Male,1991-09-18,24,Less than 25,African-American,0,10,0,3,3,-1,2013-11-06 06:35:18,2013-12-20 09:11:24,13015455CF10A,2013-11-06,,1,F,Aggravated Assault W/Dead Weap,1,14013568MM10A,(M1),,2014-08-06,Battery,,,,1,14013568MM10A,(M1),2014-08-06,Battery,Risk of Recidivism,10,High,2013-11-07,Risk of Violence,9,High,2013-11-07,2013-11-06,2013-12-20,3,43,272,1,1,1\r\n5579,nathaniel scarborough,nathaniel,scarborough,2013-04-03,Male,1972-09-18,43,25 - 45,African-American,0,9,0,0,5,-1,2013-04-02 11:44:15,2013-04-03 02:42:40,13004734CF10A,2013-04-02,,1,F,Poss Wep Conv Felon,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-03,Risk of Violence,5,Medium,2013-04-03,2013-04-02,2013-04-03,5,0,1094,0,0,0\r\n5583,jimmy sheppard,jimmy,sheppard,2014-05-30,Male,1978-12-24,37,25 - 45,African-American,0,7,0,0,11,-1,2014-05-29 08:59:15,2014-05-30 01:17:20,14008621MM10A,2014-05-29,,1,M,Battery,1,15010158MM10A,(M1),0,2015-09-26,Battery,2015-09-26,2015-11-25,,1,15010158MM10A,(M1),2015-09-26,Battery,Risk of Recidivism,7,Medium,2014-05-30,Risk of Violence,3,Low,2014-05-30,2014-09-17,2014-09-19,11,0,110,0,1,1\r\n5584,charles hawkins,charles,hawkins,2013-04-04,Male,1962-12-23,53,Greater than 45,African-American,0,7,0,0,13,-1,2013-04-03 04:57:52,2013-07-03 10:10:58,13004786CF10A,2013-04-03,,1,F,Poss of Cocaine W/I/D/S 1000FT Park,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-04,Risk of Violence,6,Medium,2013-04-04,2013-04-03,2013-07-03,13,90,1093,0,0,0\r\n5585,montrez harris,montrez,harris,2013-03-06,Male,1972-11-11,43,25 - 45,African-American,0,1,0,0,4,-39,2013-01-26 04:30:09,2013-03-05 10:02:24,10014591CF10A,,2013-01-26,39,F,arrest case no charge,1,16000518MM10A,(M2),1,2016-01-15,Unnatural/Lascivious Act,2016-01-16,2016-01-21,,0,,,,,Risk of Recidivism,1,Low,2013-03-06,Risk of Violence,1,Low,2013-03-06,2016-01-16,2016-01-21,4,0,1045,1,0,0\r\n5590,toni giarraputo,toni,giarraputo,2013-09-10,Female,1985-10-16,30,25 - 45,Caucasian,0,3,0,0,1,-27,2013-08-14 03:54:15,2013-08-14 08:26:49,13015398MM10A,2013-08-14,,27,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-10,Risk of Violence,2,Low,2013-09-10,2013-08-14,2013-08-14,1,0,934,0,0,0\r\n5593,fidel salnave,fidel,salnave,2013-01-29,Male,1978-07-04,37,25 - 45,Caucasian,0,4,0,0,4,0,2013-01-29 03:26:56,2013-01-29 09:19:35,13001419CF10A,2013-01-29,,0,M,Aggravated Battery / Pregnant,1,13016502MM10A,(M1),1,2013-08-28,Viol Injunct Domestic Violence,2013-08-29,2013-10-03,,1,14008377MM10A,(M2),2014-05-25,Assault,Risk of Recidivism,4,Low,2013-01-29,Risk of Violence,3,Low,2013-01-29,2015-01-21,2015-03-20,4,0,211,1,1,1\r\n5596,brian addeo,brian,addeo,2013-10-12,Male,1991-01-10,25,25 - 45,Caucasian,0,6,0,0,0,-1,2013-10-11 06:21:59,2013-10-13 07:53:41,13014255CF10A,2013-10-11,,1,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-12,Risk of Violence,4,Low,2013-10-12,2013-10-11,2013-10-13,0,1,902,0,0,0\r\n5598,melvin barraza,melvin,barraza,2013-08-30,Male,1989-10-04,26,25 - 45,Hispanic,0,5,0,0,1,0,2013-08-30 11:51:04,2013-08-31 01:57:53,13010846CF10A,,2013-08-30,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-30,Risk of Violence,3,Low,2013-08-30,2013-08-30,2013-08-31,1,1,945,0,0,0\r\n5599,elena gokun-diazyepez,elena,gokun-diazyepez,2013-01-28,Female,1988-02-19,28,25 - 45,Caucasian,0,6,0,0,0,-2,2013-01-26 04:03:40,2013-01-27 02:03:52,13001879MO10A,2013-01-26,,2,M,DOC/Cause Public Danger,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-28,Risk of Violence,2,Low,2013-01-28,2013-01-26,2013-01-27,0,0,1159,0,0,0\r\n5601,jong lee,jong,lee,2013-01-12,Male,1957-04-28,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-11 05:59:50,2013-01-14 11:02:16,13000662CF10A,,2013-01-11,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-12,Risk of Violence,1,Low,2013-01-12,2014-02-04,2014-02-14,1,2,388,0,0,0\r\n5604,michael ottey,michael,ottey,2014-01-03,Male,1983-04-17,33,25 - 45,African-American,0,5,0,0,8,0,2014-01-03 06:25:02,2014-01-06 01:29:56,14000145CF10A,2014-01-03,,0,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-03,Risk of Violence,3,Low,2014-01-03,2014-01-03,2014-01-06,8,3,819,0,0,0\r\n5605,patrick housen,patrick,housen,2014-01-19,Male,1977-09-08,38,25 - 45,African-American,0,1,0,0,0,-1,2014-01-18 01:29:20,2014-01-19 09:10:09,14000782CF10A,,2014-01-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-19,Risk of Violence,1,Low,2014-01-19,2014-01-18,2014-01-19,0,0,803,0,0,0\r\n5607,amon brasher,amon,brasher,2014-01-08,Male,1977-10-08,38,25 - 45,Caucasian,0,3,0,0,2,-21,2013-12-18 08:35:42,2014-01-06 09:27:23,13017460CF10A,2013-12-18,,21,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-08,Risk of Violence,2,Low,2014-01-08,2013-12-18,2014-01-06,2,0,814,0,0,0\r\n5612,eddie mcgowan,eddie,mcgowan,2014-03-04,Male,1958-10-14,57,Greater than 45,African-American,0,5,0,0,9,,,,13016798CF10A,2013-12-04,,90,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-04,Risk of Violence,5,Medium,2014-03-04,2000-06-27,2002-01-19,9,0,759,0,0,0\r\n5614,kandyce sapp,kandyce,sapp,2014-11-14,Male,1983-01-30,33,25 - 45,African-American,0,8,0,0,2,-1,2014-11-13 12:10:56,2014-11-14 08:36:47,14015275CF10A,2014-11-13,,1,F,Aggrav Battery w/Deadly Weapon,1,15007478MM10A,(M1),0,2015-07-13,Trespass Other Struct/Convey,2015-07-13,2015-07-13,,1,15010885MM10A,(M1),2015-10-17,Battery,Risk of Recidivism,8,High,2014-11-14,Risk of Violence,7,Medium,2014-11-14,2015-07-13,2015-07-13,2,0,241,0,1,1\r\n5617,james torgerson,james,torgerson,2014-01-20,Male,1957-10-13,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-01-19 09:53:29,2014-01-20 08:18:08,14000969MM10A,2014-01-18,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-20,Risk of Violence,1,Low,2014-01-20,2014-01-19,2014-01-20,1,0,802,0,0,0\r\n5618,jose uman,jose,uman,2013-09-14,Male,1964-08-06,51,Greater than 45,Caucasian,0,1,0,0,1,,,,13017500MM10A,2013-09-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-14,Risk of Violence,1,Low,2013-09-14,,,1,0,930,0,0,0\r\n5621,james williams,james,williams,2013-04-12,Male,1962-12-18,53,Greater than 45,Caucasian,0,4,0,0,2,-1,2013-04-11 11:19:05,2013-05-22 02:10:17,13005238CF10A,2013-04-11,,1,F,Fail Sex Offend Report Bylaw,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-12,Risk of Violence,2,Low,2013-04-12,2013-04-11,2013-05-22,2,40,1085,0,0,0\r\n5627,delvin mcdougle,delvin,mcdougle,2014-05-29,Male,1980-09-08,35,25 - 45,African-American,0,8,0,0,6,-1,2014-05-28 07:21:57,2014-06-08 04:15:39,14007415CF10A,2014-05-28,,1,F,Uttering a Forged Instrument,1,14008665CF10A,(F1),1,2014-06-22,Aggravated Battery On 65/Older,2014-06-23,2015-12-03,,1,14008665CF10A,(F1),2014-06-22,Aggravated Battery On 65/Older,Risk of Recidivism,8,High,2014-05-29,Risk of Violence,6,Medium,2014-05-29,2014-05-28,2014-06-08,6,10,24,1,1,1\r\n5628,norman regg,norman,regg,2013-09-30,Male,1976-06-22,39,25 - 45,Caucasian,0,1,0,0,1,-1,2013-09-29 04:31:28,2013-09-30 08:43:42,13012761CF10A,,2013-09-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-29,2013-09-30,1,0,914,0,0,0\r\n5631,martin cordero,martin,cordero,2013-02-22,Male,1979-07-28,36,25 - 45,Hispanic,0,9,0,0,1,-14,2013-02-08 07:10:53,2013-02-22 10:51:00,13003154MM10A,2013-02-08,,14,M,Extradition/Defendants,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-22,Risk of Violence,4,Low,2013-02-22,2013-02-08,2013-02-22,1,0,1134,0,0,0\r\n5633,archange pierre,archange,pierre,2013-03-02,Male,1978-08-13,37,25 - 45,African-American,0,2,0,0,0,-1,2013-03-01 07:33:15,2013-03-02 01:13:00,13004231MM10A,2013-03-01,,1,M,Tresspass Struct/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-02,Risk of Violence,2,Low,2013-03-02,2013-03-01,2013-03-02,0,0,1126,0,0,0\r\n5634,jacek jodlowski,jacek,jodlowski,2013-05-13,Male,1976-12-08,39,25 - 45,Caucasian,0,1,0,0,0,-1,2013-05-12 09:23:55,2013-05-15 10:49:50,13006799CF10A,2013-05-12,,1,F,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-12,2013-05-15,0,2,1054,0,0,0\r\n5635,lisa kaye,lisa,kaye,2013-11-26,Female,1963-10-08,52,Greater than 45,Caucasian,0,1,0,0,3,-25,2013-11-01 03:19:41,2013-11-01 07:54:46,13020656MM10A,2013-11-01,,25,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-26,Risk of Violence,1,Low,2013-11-26,2013-11-01,2013-11-01,3,0,857,0,0,0\r\n5637,alexander jolly,alexander,jolly,2014-02-23,Male,1955-08-02,60,Greater than 45,Other,0,1,0,0,1,-1,2014-02-22 05:53:23,2014-02-23 08:19:26,14003111MM10A,2014-02-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-23,Risk of Violence,1,Low,2014-02-23,2014-02-22,2014-02-23,1,0,768,0,0,0\r\n5638,israel lopez,israel,lopez,2013-05-29,Male,1979-01-15,37,25 - 45,Hispanic,0,1,0,0,2,-1,2013-05-28 03:04:23,2013-05-29 02:34:17,13007603CF10A,2013-05-28,,1,M,Aggravated Battery / Pregnant,1,15053446TC20A,(M2),,2015-09-26,Permit Unauthorized Minor Drv,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-05-28,2013-05-29,2,0,850,1,0,0\r\n5644,raul casanova-costa,raul,casanova-costa,2014-06-24,Male,1971-08-18,44,25 - 45,Hispanic,0,1,0,0,0,,,,,,,,M,,1,15004530CF10A,(F3),0,2015-04-06,Resist Officer w/Violence,2015-04-06,2015-04-06,,1,15004530CF10A,(F3),2015-04-06,Battery on Law Enforc Officer,Risk of Recidivism,1,Low,2014-06-24,Risk of Violence,1,Low,2014-06-24,2015-04-06,2015-04-06,0,0,286,0,1,1\r\n5646,malcolm turner,malcolm,turner,2013-04-26,Male,1992-08-05,23,Less than 25,African-American,0,6,0,0,6,0,2013-04-26 05:16:50,2013-04-27 07:43:41,13006041CF10A,2013-04-26,,0,F,Possession of Cocaine,1,13014271MM10A,(M2),30,2013-06-27,Petit Theft,2013-07-27,2013-09-23,,1,15016350CF10A,(F3),2015-12-22,Battery on Law Enforc Officer,Risk of Recidivism,6,Medium,2013-04-26,Risk of Violence,7,Medium,2013-04-26,2013-04-26,2013-04-27,6,1,62,1,1,1\r\n5649,jessica thomson,jessica,thomson,2013-10-15,Female,1987-12-09,28,25 - 45,Caucasian,0,3,0,0,2,-36,2013-09-09 12:02:08,2013-10-15 09:12:52,13008998CF10A,,2013-09-09,36,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-15,Risk of Violence,2,Low,2013-10-15,2013-09-09,2013-10-15,2,0,899,0,0,0\r\n5650,ricauter espino,ricauter,espino,2013-08-07,Male,1987-05-14,28,25 - 45,African-American,0,4,0,0,5,0,2013-08-07 01:24:56,2013-08-07 11:21:37,13011027CF10A,2013-08-06,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-07,Risk of Violence,4,Low,2013-08-07,2013-08-07,2013-08-07,5,0,968,0,0,0\r\n5651,patrick tinnell,patrick,tinnell,2013-05-03,Male,1977-12-06,38,25 - 45,Caucasian,0,5,0,0,12,-1,2013-05-02 09:10:49,2013-05-03 07:35:53,13006461CF10A,2013-05-02,,1,F,Grand Theft of the 2nd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-03,Risk of Violence,3,Low,2013-05-03,2013-05-02,2013-05-03,12,0,1064,0,0,0\r\n5654,brian haynes,brian,haynes,2013-10-19,Male,1973-12-17,42,25 - 45,African-American,0,5,0,0,0,-1,2013-10-18 10:21:40,2013-10-19 08:50:58,13014602CF10A,2013-10-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-19,Risk of Violence,5,Medium,2013-10-19,2013-10-18,2013-10-19,0,0,895,0,0,0\r\n5655,jennifer vazquez,jennifer,vazquez,2014-01-16,Female,1990-06-13,25,25 - 45,Caucasian,0,3,0,0,0,-1,2014-01-15 11:55:47,2014-01-16 02:31:04,14000752MM10A,2014-01-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-16,Risk of Violence,3,Low,2014-01-16,2014-01-15,2014-01-16,0,0,806,0,0,0\r\n5657,jeff reveille,jeff,reveille,2013-02-27,Male,1983-10-16,32,25 - 45,African-American,0,9,0,0,7,0,2013-02-27 05:00:06,2013-04-05 06:02:00,13002969CF10A,2013-02-27,,0,F,Grand Theft (Motor Vehicle),1,13010688CF10A,(F3),0,2013-07-31,Tampering With Physical Evidence,2013-07-31,2013-10-11,,1,16000257MM10A,(M1),2016-01-07,Battery,Risk of Recidivism,9,High,2013-02-27,Risk of Violence,9,High,2013-02-27,2013-07-31,2013-10-11,7,37,154,1,1,1\r\n5659,stacy massaro,stacy,massaro,2013-10-09,Female,1981-03-30,35,25 - 45,Caucasian,0,5,0,0,1,-30,2013-09-09 12:52:13,2013-10-08 08:55:56,13017187MM10A,2013-09-09,,30,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-09,Risk of Violence,2,Low,2013-10-09,2013-09-09,2013-10-08,1,0,905,0,0,0\r\n5660,justin scharenbroich,justin,scharenbroich,2013-02-19,Male,1978-11-15,37,25 - 45,Caucasian,0,5,0,0,0,-1,2013-02-18 12:07:07,2013-06-25 07:31:42,13002625CF10A,2013-02-18,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-19,Risk of Violence,3,Low,2013-02-19,2013-02-18,2013-06-25,0,126,1137,0,0,0\r\n5664,margaret idowu,margaret,idowu,2013-10-22,Female,1983-03-02,33,25 - 45,African-American,0,2,0,0,2,0,2013-10-22 04:22:46,2013-10-22 07:31:15,13014747CF10A,2013-10-22,,0,F,Failure To Return Hired Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-22,2013-10-22,2,0,892,0,0,0\r\n5665,francine jackson,francine,jackson,2013-02-04,Female,1964-12-14,51,Greater than 45,Caucasian,0,3,0,0,4,-11,2013-01-24 07:21:41,2013-02-01 09:41:37,13001159CF10A,,2013-01-24,11,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-03-28,2013-04-16,4,0,52,0,0,0\r\n5666,erick philhower,erick,philhower,2013-04-18,Male,1976-04-27,39,25 - 45,Caucasian,0,4,0,0,3,-1,2013-04-17 09:27:09,2013-04-20 07:47:57,13005487CF10A,2013-04-17,,1,F,Possession of Hydromorphone,1,15014306CF10A,(F3),1,2015-11-02,Poss Pyrrolidinovalerophenone,2015-11-03,2015-11-12,,0,,,,,Risk of Recidivism,4,Low,2013-04-18,Risk of Violence,2,Low,2013-04-18,2013-04-17,2013-04-20,3,2,928,1,0,0\r\n5667,fermin grajales,fermin,grajales,2013-03-27,Male,1980-10-28,35,25 - 45,Hispanic,0,6,0,0,5,-1,2013-03-26 05:31:34,2013-03-28 08:56:16,13005903MM10A,2013-03-26,,1,M,Viol Pretrial Release Dom Viol,1,14001502MM10A,(M1),0,2014-01-27,Battery,2014-01-27,2014-01-28,,1,14001502MM10A,(M2),2014-01-27,Assault,Risk of Recidivism,6,Medium,2013-03-27,Risk of Violence,6,Medium,2013-03-27,2014-01-27,2014-01-28,5,1,306,1,1,1\r\n5668,allen killings,allen,killings,2013-05-19,Male,1975-09-27,40,25 - 45,African-American,0,7,0,0,3,-1,2013-05-18 09:53:50,2013-05-31 10:07:03,13007111CF10A,2013-05-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-19,Risk of Violence,8,High,2013-05-19,2013-05-18,2013-05-31,3,12,1048,0,0,0\r\n5672,peter mcfield,peter,mcfield,2013-11-25,Male,1979-02-25,37,25 - 45,Other,0,1,0,0,0,-1,2013-11-24 08:53:31,2013-11-25 08:20:59,13022078MM10A,2013-11-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,2013-11-24,2013-11-25,0,0,858,0,0,0\r\n5675,william shaw,william,shaw,2013-08-14,Male,1968-05-17,47,Greater than 45,Caucasian,0,3,0,0,5,0,2013-08-14 05:45:53,2013-08-14 09:05:13,13015381MM10A,2013-08-14,,0,M,Viol Injunct Domestic Violence,1,13015080CF10A,(F2),0,2013-10-29,Aggrav Battery w/Deadly Weapon,2013-10-29,2013-11-10,,1,13015080CF10A,(F2),2013-10-29,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,3,Low,2013-08-14,Risk of Violence,2,Low,2013-08-14,2013-10-29,2013-11-10,5,0,76,1,1,1\r\n5676,emily vanhuss,emily,vanhuss,2013-01-14,Female,1993-01-17,23,Less than 25,Caucasian,0,7,0,0,0,-1,2013-01-13 04:51:21,2013-01-14 01:37:46,13000785MO10A,2013-01-13,,1,M,Poss Of Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-14,Risk of Violence,5,Medium,2013-01-14,2013-01-13,2013-01-14,0,0,1173,0,0,0\r\n5677,robert griffin,robert,griffin,2013-10-03,Male,1953-03-06,63,Greater than 45,Caucasian,0,4,0,0,10,0,2013-10-03 02:28:42,2013-10-05 04:18:17,13013891CF10A,2013-10-03,,0,F,Corrupt Public Servant,1,14013119CF10A,(M2),1,2014-09-27,Disorderly Intoxication,2014-09-28,2014-10-28,,1,14013119CF10A,(F3),2014-09-27,Battery on Law Enforc Officer,Risk of Recidivism,4,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-12-12,2013-12-14,10,2,70,0,1,1\r\n5678,larry motts,larry,motts,2013-05-17,Male,1978-04-01,38,25 - 45,African-American,0,9,1,0,16,-1,2013-05-16 05:17:01,2014-01-13 02:08:20,13007004CF10A,2013-05-16,,1,F,Poss of Cocaine W/I/D/S 1000FT Park,1,15007157CF10A,(F3),1,2015-05-31,Felony Battery w/Prior Convict,2015-06-01,2015-10-13,,1,15007157CF10A,(F3),2015-05-31,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2013-05-17,Risk of Violence,10,High,2013-05-17,2013-05-16,2014-01-13,16,241,744,1,1,1\r\n5681,kelsian kelly,kelsian,kelly,2013-12-08,Male,1985-02-15,31,25 - 45,African-American,0,8,0,0,4,-1,2013-12-07 04:12:04,2013-12-31 08:45:57,13016933CF10A,2013-12-07,,1,F,Tampering With Physical Evidence,1,14001057CF10A,(F2),0,2014-01-24,Deliver Cocaine,2014-01-24,2014-02-18,,1,14016345CF10A,(F1),2014-12-06,Attempt Felony Murder,Risk of Recidivism,8,High,2013-12-08,Risk of Violence,3,Low,2013-12-08,2014-01-24,2014-02-18,4,23,47,1,1,1\r\n5684,rupert lyn,rupert,lyn,2013-04-20,Male,1992-06-10,23,Less than 25,African-American,0,3,0,0,0,0,2013-04-20 02:46:27,2013-04-21 04:15:10,13005684CF10A,2013-04-19,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-20,Risk of Violence,3,Low,2013-04-20,2013-04-20,2013-04-21,0,1,1077,0,0,0\r\n5685,mario raudales,mario,raudales,2013-05-28,Male,1977-11-04,38,25 - 45,Hispanic,0,5,0,0,1,-1,2013-05-27 06:31:39,2013-09-30 12:05:07,13010139MM10A,2013-05-27,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-28,Risk of Violence,2,Low,2013-05-28,2013-05-27,2013-09-30,1,125,1039,0,0,0\r\n5686,anne schatzberg,anne,schatzberg,2013-07-29,Female,1968-06-24,47,Greater than 45,Caucasian,0,1,0,0,0,-3,2013-07-26 04:10:44,2013-07-26 06:52:48,13014193MM10A,2013-07-26,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-07-26,2013-07-26,0,0,977,0,0,0\r\n5689,joseph cioffi,joseph,cioffi,2013-07-05,Male,1993-05-23,22,Less than 25,Caucasian,0,4,0,0,1,-11,2013-06-24 09:31:14,2013-07-03 09:11:19,13008886CF10A,2013-06-24,,11,F,Grand Theft (Motor Vehicle),1,16005176TC20A,(M2),,2016-02-03,Driving while DL Susp / Financial Resp,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-05,Risk of Violence,5,Medium,2013-07-05,2013-06-24,2013-07-03,1,0,943,1,0,0\r\n5691,thomas bickis,thomas,bickis,2013-01-24,Male,1989-07-13,26,25 - 45,Caucasian,0,3,0,0,1,318,2013-12-08 10:09:26,2013-12-16 09:14:25,12015728MM10A,2012-07-31,,177,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-24,Risk of Violence,4,Low,2013-01-24,2013-12-08,2013-12-16,1,0,318,0,0,0\r\n5695,maria sherman,maria,sherman,2013-05-07,Female,1950-07-29,65,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-07 02:20:22,2013-05-08 03:00:01,13008835MM10A,2013-05-06,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-07,Risk of Violence,1,Low,2013-05-07,2013-05-07,2013-05-08,0,1,1060,0,0,0\r\n5697,taketha lherisse,taketha,lherisse,2013-08-24,Female,1993-05-05,22,Less than 25,African-American,0,3,0,0,0,-1,2013-08-23 05:49:07,2013-08-24 08:38:31,13016167MM10A,2013-08-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-24,Risk of Violence,4,Low,2013-08-24,2013-08-23,2013-08-24,0,0,951,0,0,0\r\n5698,glenn nieves,glenn,nieves,2013-04-01,Male,1981-05-19,34,25 - 45,Hispanic,0,1,0,0,0,0,2013-04-01 04:50:00,2013-04-01 06:11:43,13006252MM10A,2013-04-01,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-04-01,2013-04-01,0,0,1096,0,0,0\r\n5699,concepcion leon,concepcion,leon,2013-11-03,Female,1977-11-13,38,25 - 45,Hispanic,0,1,0,0,0,-1,2013-11-02 06:52:51,2013-11-03 04:33:47,13015289CF10A,2013-11-01,,2,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-03,Risk of Violence,1,Low,2013-11-03,2013-11-02,2013-11-03,0,0,880,0,0,0\r\n5703,pedro lopezgaya,pedro,lopezgaya,2013-04-29,Male,1966-06-12,49,Greater than 45,Hispanic,0,1,0,0,0,-3,2013-04-26 11:44:31,2013-04-27 01:18:43,13006015CF10A,2013-04-26,,3,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-26,2013-04-27,0,0,1068,0,0,0\r\n5707,lee williams,lee,williams,2014-02-25,Male,1959-12-31,56,Greater than 45,African-American,0,4,0,0,7,-167,2013-09-11 05:00:11,2013-10-30 09:57:26,13012848CF10A,2013-09-11,,167,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-25,Risk of Violence,4,Low,2014-02-25,2015-09-28,2015-10-20,7,0,580,0,0,0\r\n5716,brisley pierre,brisley,pierre,2014-02-16,Male,1981-10-19,34,25 - 45,African-American,0,1,0,0,5,-1,2014-02-15 05:36:32,2014-02-19 07:34:06,14002167CF10A,2014-02-15,,1,F,Agg Assault W/int Com Fel Dome,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-16,Risk of Violence,2,Low,2014-02-16,2014-02-15,2014-02-19,5,3,775,0,0,0\r\n5719,brushod goodrum,brushod,goodrum,2014-01-28,Male,1995-04-14,21,Less than 25,African-American,0,7,1,2,1,-1,2014-01-27 07:40:16,2014-01-28 01:36:11,14001185CF10A,2014-01-27,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-28,Risk of Violence,9,High,2014-01-28,2014-08-31,2014-09-17,1,0,215,0,0,0\r\n5722,richard campbell,richard,campbell,2013-10-24,Male,1969-10-19,46,Greater than 45,African-American,0,4,0,0,9,-1,2013-10-23 11:12:17,2013-10-28 12:40:39,13014822CF10A,2013-10-23,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-24,Risk of Violence,2,Low,2013-10-24,2013-10-23,2013-10-28,9,4,890,0,0,0\r\n5723,carleb charles,carleb,charles,2013-04-29,Male,1993-10-11,22,Less than 25,African-American,0,6,0,0,2,250,2014-01-04 11:06:47,2014-03-24 09:35:08,13002797MM10A,2013-01-14,,105,M,Battery,1,14000176MM10A,(M1),0,2014-01-04,Resist/Obstruct W/O Violence,2014-01-04,2014-03-24,,1,14000176MM10A,(M2),2014-01-04,Assault,Risk of Recidivism,6,Medium,2013-04-29,Risk of Violence,6,Medium,2013-04-29,2014-01-04,2014-03-24,2,0,250,1,1,1\r\n5724,malcolm yount,malcolm,yount,2013-05-03,Male,1959-02-21,57,Greater than 45,Caucasian,0,4,0,0,1,-1,2013-05-02 02:18:14,2013-05-03 07:15:08,13008536MM10A,2013-05-02,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-03,Risk of Violence,3,Low,2013-05-03,2015-01-01,2015-01-13,1,0,608,0,0,0\r\n5727,michael stephenson,michael,stephenson,2013-05-23,Male,1975-07-16,40,25 - 45,African-American,0,5,0,0,21,-1,2013-05-22 07:09:03,2013-06-21 05:30:00,13007315CF10A,2013-05-22,,1,F,Felony Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-23,Risk of Violence,3,Low,2013-05-23,2013-05-22,2013-06-21,21,29,1044,0,0,0\r\n5728,shameka wright,shameka,wright,2013-03-16,Female,1985-06-13,30,25 - 45,African-American,0,2,0,0,1,-1,2013-03-15 11:21:37,2013-03-16 07:55:41,12016112CF10A,,2013-03-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-16,Risk of Violence,1,Low,2013-03-16,2013-03-15,2013-03-16,1,0,1112,0,0,0\r\n5729,michael woodson,michael,woodson,2013-12-17,Male,1994-12-28,21,Less than 25,Caucasian,0,7,1,0,4,-1,2013-12-16 03:44:25,2014-01-18 05:14:41,13023279MM10A,2013-12-16,,1,M,Battery,1,14009393CF10A,(F2),0,2014-07-09,Robbery / No Weapon,2014-07-09,2015-03-08,,1,14009393CF10A,(F2),2014-07-09,Robbery / No Weapon,Risk of Recidivism,7,Medium,2013-12-17,Risk of Violence,6,Medium,2013-12-17,2014-07-09,2015-03-08,4,32,204,1,1,1\r\n5730,sylena mayes,sylena,mayes,2014-02-09,Female,1976-05-24,39,25 - 45,African-American,0,10,2,0,22,-1,2014-02-08 09:20:45,2014-02-12 09:20:16,14001779CF10A,2014-02-08,,1,F,Possession of Cocaine,1,14001331MM40A,(M1),,2014-03-02,Resist/Obstruct W/O Violence,,,,1,15007147CF10A,(F2),2015-05-24,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2014-02-09,Risk of Violence,3,Low,2014-02-09,2014-02-08,2014-02-12,22,3,21,1,1,1\r\n5733,nadege fixalant,nadege,fixalant,2013-03-22,Male,1991-11-03,24,Less than 25,African-American,0,3,0,0,0,0,2013-03-22 12:42:13,2013-03-22 01:31:13,13004083CF10A,2013-03-20,,2,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-22,Risk of Violence,4,Low,2013-03-22,2013-03-22,2013-03-22,0,0,1106,0,0,0\r\n5736,susan abrames,susan,abrames,2013-10-19,Female,1971-02-21,45,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-19 05:10:30,2013-10-20 08:38:16,13019810MM10A,2013-10-19,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-19,Risk of Violence,1,Low,2013-10-19,2013-10-19,2013-10-20,0,1,895,0,0,0\r\n5738,ornan antoine,ornan,antoine,2013-09-09,Male,1964-06-14,51,Greater than 45,African-American,0,3,0,0,3,-18,2013-08-22 02:08:31,2013-08-24 05:03:08,13011842CF10A,2013-08-22,,18,F,DWI w/Inj Susp Lic / Habit Off,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-09,Risk of Violence,2,Low,2013-09-09,2013-08-22,2013-08-24,3,0,935,0,0,0\r\n5741,aleksandr do,aleksandr,do,2013-05-08,Male,1988-09-01,27,25 - 45,Caucasian,0,2,0,0,0,-1,2013-05-07 11:30:29,2013-05-09 04:30:45,13008830MM10A,2013-05-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-08,Risk of Violence,3,Low,2013-05-08,2013-05-07,2013-05-09,0,1,1059,0,0,0\r\n5742,joseph lopez,joseph,lopez,2014-01-17,Male,1983-06-21,32,25 - 45,African-American,0,2,0,0,1,-1,2014-01-16 11:12:39,2014-01-17 09:32:03,13015447CF10A,,2014-01-16,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-17,Risk of Violence,3,Low,2014-01-17,2014-01-16,2014-01-17,1,0,805,0,0,0\r\n5743,wayne jensen,wayne,jensen,2013-08-26,Male,1966-07-22,49,Greater than 45,Caucasian,0,1,0,0,0,-3,2013-08-23 11:31:53,2013-08-24 02:16:48,13016182MM10A,2013-08-23,,3,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-26,Risk of Violence,1,Low,2013-08-26,2013-08-23,2013-08-24,0,0,949,0,0,0\r\n5745,kelvin howard,kelvin,howard,2013-08-19,Male,1986-06-10,29,25 - 45,African-American,0,3,0,0,2,-1,2013-08-18 07:04:42,2013-09-14 08:47:48,13011585CF10A,2013-08-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-19,Risk of Violence,2,Low,2013-08-19,2013-08-18,2013-09-14,2,26,956,0,0,0\r\n5749,mories abdo,mories,abdo,2013-02-16,Male,1985-10-09,30,25 - 45,Asian,0,3,0,0,6,-1,2013-02-15 04:08:23,2013-02-16 01:20:46,13003356MM10A,2013-02-15,,1,M,Battery,1,15001199MM30A,(M1),,2015-07-02,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-16,Risk of Violence,2,Low,2013-02-16,2013-02-15,2013-02-16,6,0,866,1,0,0\r\n5750,rodney lewis,rodney,lewis,2013-06-13,Male,1960-06-05,55,Greater than 45,African-American,0,6,0,0,12,-69,2013-04-05 02:27:27,2013-06-13 11:42:07,13004885CF10A,2013-04-04,,70,F,Possession of Cocaine,1,14004500CF10A,(F2),0,2014-03-31,Aggravated Battery / Pregnant,2014-03-31,2014-06-17,,1,14004500CF10A,(F2),2014-03-31,Aggravated Battery / Pregnant,Risk of Recidivism,6,Medium,2013-06-13,Risk of Violence,2,Low,2013-06-13,2014-03-31,2014-06-17,12,0,291,1,1,1\r\n5753,christopher ayala,christopher,ayala,2013-01-19,Male,1985-10-17,30,25 - 45,Caucasian,0,4,0,0,0,0,2013-01-19 02:18:46,2013-03-16 11:21:32,13001326MM10A,2013-01-18,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-19,Risk of Violence,5,Medium,2013-01-19,2014-07-16,2014-07-23,0,56,543,0,0,0\r\n5755,jean korkis,jean,korkis,2013-07-26,Male,1959-06-05,56,Greater than 45,Caucasian,0,1,0,0,2,-39,2013-06-17 02:41:04,2013-06-18 06:41:41,13008550CF10A,2013-06-17,,39,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-26,Risk of Violence,1,Low,2013-07-26,2013-06-17,2013-06-18,2,0,980,0,0,0\r\n5756,rafael mondelus,rafael,mondelus,2013-09-25,Male,1982-08-25,33,25 - 45,African-American,0,6,0,0,4,0,2013-09-25 12:23:32,2013-09-25 08:09:19,13013442CF10A,2013-09-24,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-25,Risk of Violence,2,Low,2013-09-25,2013-11-17,2013-11-18,4,0,53,0,0,0\r\n5757,seccunda davis,seccunda,davis,2013-08-19,Male,1987-05-13,28,25 - 45,African-American,0,2,0,0,1,-1,2013-08-18 07:25:24,2013-08-19 09:01:42,13015644MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-19,Risk of Violence,3,Low,2013-08-19,2013-08-18,2013-08-19,1,0,956,0,0,0\r\n5759,brandon mccutchen,brandon,mccutchen,2013-03-22,Male,1987-03-04,29,25 - 45,African-American,0,8,0,0,1,-1,2013-03-21 05:39:06,2013-05-01 02:42:24,13004341CF10A,2013-03-21,,1,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-22,Risk of Violence,8,High,2013-03-22,2013-03-21,2013-05-01,1,40,1106,0,0,0\r\n5760,stuart velky,stuart,velky,2014-03-16,Male,1978-01-13,38,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-15 11:22:26,2014-03-16 08:27:01,14010440MU10A,2014-03-15,,1,M,DUI Blood Alcohol Above 0.20,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-16,0,0,747,0,0,0\r\n5761,ian mullarky,ian,mullarky,2014-03-25,Male,1978-12-19,37,25 - 45,Caucasian,0,3,0,0,0,-1,2014-03-24 09:41:54,2014-03-25 08:54:16,14004178CF10A,2014-03-24,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-25,Risk of Violence,2,Low,2014-03-25,2014-03-24,2014-03-25,0,0,738,0,0,0\r\n5763,ray ortiz,ray,ortiz,2013-02-24,Male,1985-11-25,30,25 - 45,Hispanic,0,2,0,0,0,0,2013-02-24 04:24:51,2013-02-24 06:38:51,13002815CF10A,2013-02-24,,0,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-24,Risk of Violence,2,Low,2013-02-24,2013-02-24,2013-02-24,0,0,1132,0,0,0\r\n5765,cornelius green,cornelius,green,2013-04-09,Male,1964-05-18,51,Greater than 45,African-American,1,9,0,1,19,-1,2013-04-08 06:47:45,2013-04-21 11:55:21,13005068CF10A,2013-04-08,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-09,Risk of Violence,4,Low,2013-04-09,2014-03-19,2014-03-25,19,12,344,0,0,0\r\n5768,henry rumph,henry,rumph,2013-10-24,Male,1950-11-16,65,Greater than 45,African-American,0,5,0,0,7,-1,2013-10-23 04:20:47,2013-10-24 02:07:45,13014809CF10A,2013-10-23,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-24,Risk of Violence,1,Low,2013-10-24,2015-06-23,2015-07-14,7,0,607,0,0,0\r\n5769,naita james,naita,james,2013-12-16,Female,1983-09-08,32,25 - 45,African-American,0,1,0,0,1,-1,2013-12-15 05:33:45,2013-12-16 01:04:00,13023234MM10A,2013-12-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,1,0,837,0,0,0\r\n5773,elijah horne,elijah,horne,2013-01-17,Male,1980-11-27,35,25 - 45,African-American,0,4,0,0,1,-1,2013-01-16 11:55:37,2013-01-17 07:15:00,13000782CF10A,2013-01-16,,1,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-17,Risk of Violence,3,Low,2013-01-17,2015-10-27,2015-10-27,1,0,1013,0,0,0\r\n5774,roger barteau,roger,barteau,2013-06-12,Male,1958-07-10,57,Greater than 45,Caucasian,0,1,0,0,1,-26,2013-05-17 10:57:12,2013-05-18 04:35:45,13007075CF10A,2013-05-17,,26,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-12,Risk of Violence,1,Low,2013-06-12,2013-05-17,2013-05-18,1,0,1024,0,0,0\r\n5776,michael cortez,michael,cortez,2013-01-24,Male,1990-04-05,26,25 - 45,Caucasian,0,3,0,0,1,0,2013-01-24 12:37:35,2013-01-24 10:48:46,13001101CF10A,,2013-01-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-01-24,2013-01-24,1,0,1163,0,0,0\r\n5778,lorraine francisco,lorraine,francisco,2014-09-17,Female,1992-11-22,23,Less than 25,Hispanic,0,8,3,1,7,-228,2014-02-01 04:16:53,2014-02-02 08:56:00,14001216MM40A,2014-03-02,,199,M,Battery,1,15005890CF10A,(M1),0,2015-05-05,Battery,2015-05-05,2015-06-10,,1,15005890CF10A,(M1),2015-05-05,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2014-09-17,Risk of Violence,5,Medium,2014-09-17,2015-05-05,2015-06-10,7,0,230,1,1,1\r\n5779,ralph johnson,ralph,johnson,2014-05-06,Female,1979-10-12,36,25 - 45,African-American,2,6,0,0,4,-1,2014-05-05 07:23:18,2014-05-07 03:34:51,14007449MM10A,2014-05-05,,1,M,Battery,1,15000954MM20A,(M2),,2015-03-15,Trespass Struct/Conveyance,,,,1,15010665MM10A,(M2),2015-09-10,Assault,Risk of Recidivism,6,Medium,2014-05-06,Risk of Violence,3,Low,2014-05-06,2014-05-05,2014-05-07,4,1,313,1,1,1\r\n5784,daniel murphy,daniel,murphy,2014-12-12,Male,1981-04-11,35,25 - 45,Caucasian,0,5,0,0,3,-1,2014-12-11 04:17:47,2014-12-12 08:48:06,14016475CF10A,2014-12-11,,1,F,Possession of Cocaine,1,14018078MM10A,(M1),1,2014-12-26,Battery,2014-12-27,2015-02-20,,1,14018078MM10A,(M1),2014-12-26,Battery,Risk of Recidivism,5,Medium,2014-12-12,Risk of Violence,3,Low,2014-12-12,2015-03-13,2015-04-27,3,0,14,1,1,1\r\n5785,wilny marc,wilny,marc,2013-12-13,Male,1982-09-17,33,25 - 45,African-American,0,1,0,0,0,-1,2013-12-12 03:14:03,2013-12-13 01:14:04,13017194CF10A,2013-12-12,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-13,Risk of Violence,1,Low,2013-12-13,2015-04-07,2015-04-14,0,0,480,0,0,0\r\n5787,teresa hoagland,teresa,hoagland,2013-05-05,Male,1969-03-04,47,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-05 04:15:36,2013-05-06 12:09:26,13008693MM10A,2013-05-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-05,Risk of Violence,1,Low,2013-05-05,2013-05-05,2013-05-06,0,1,1062,0,0,0\r\n5789,joana gomezmartinez,joana,gomezmartinez,2013-08-24,Female,1962-06-24,53,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-08-23 05:20:55,2013-08-24 02:07:54,13016181MM10A,2013-08-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-24,Risk of Violence,1,Low,2013-08-24,2013-08-23,2013-08-24,0,0,951,0,0,0\r\n5790,sunil mooken,sunil,mooken,2014-03-05,Male,1985-01-27,31,25 - 45,Other,0,5,0,0,6,,,,12007246CF10A,2012-05-15,,659,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-05,Risk of Violence,4,Low,2014-03-05,,,6,0,758,0,0,0\r\n5793,tisa spears,tisa,spears,2014-04-30,Female,1979-11-02,36,25 - 45,African-American,0,3,0,0,1,-1,2014-04-29 07:18:20,2014-04-30 01:35:33,14005932CF10A,2014-04-29,,1,F,Possession of Cocaine,1,15007369MM10A,(M2),0,2015-07-10,Trespass Struct/Conveyance,2015-07-10,2015-08-02,,1,15012057CF10A,(F3),2015-09-17,Aggravated Assault W/Dead Weap,Risk of Recidivism,3,Low,2014-04-30,Risk of Violence,2,Low,2014-04-30,2014-08-28,2014-09-10,1,0,120,0,1,1\r\n5795,kristen murphy,kristen,murphy,2013-12-26,Female,1991-04-19,25,25 - 45,Caucasian,0,3,0,0,0,-1,2013-12-25 01:14:05,2013-12-26 01:09:50,13023764MM10A,2013-12-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-26,Risk of Violence,3,Low,2013-12-26,2013-12-25,2013-12-26,0,0,827,0,0,0\r\n5797,alfred melchor,alfred,melchor,2013-03-20,Male,1963-10-27,52,Greater than 45,Hispanic,0,6,0,0,10,0,2013-03-20 02:15:51,2013-08-16 04:04:46,13005391CF10A,2013-03-19,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-20,Risk of Violence,7,Medium,2013-03-20,2014-10-05,2014-10-08,10,149,564,0,0,0\r\n5799,eliezer rosario,eliezer,rosario,2013-09-10,Male,1992-05-18,23,Less than 25,Hispanic,0,7,0,0,3,249,2014-05-17 12:45:30,2015-02-18 10:30:00,12023915MM10A,2012-11-22,,292,M,Battery,1,14007817CF10A,(F3),0,2014-05-17,Felony Battery w/Prior Convict,2014-05-17,2015-02-18,,1,14008030MM10A,(M1),2014-05-17,Battery,Risk of Recidivism,7,Medium,2013-09-10,Risk of Violence,8,High,2013-09-10,2014-05-17,2015-02-18,3,0,249,1,1,1\r\n5800,kayode kasali,kayode,kasali,2014-01-02,Male,1982-03-31,34,25 - 45,African-American,0,3,0,0,7,-245,2013-05-02 05:02:48,2013-05-10 01:12:23,13023769MM10A,2013-09-14,,110,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-02,Risk of Violence,2,Low,2014-01-02,2013-05-02,2013-05-10,7,0,820,0,0,0\r\n5809,thelbert brayboy,thelbert,brayboy,2013-02-05,Male,1970-11-17,45,Greater than 45,African-American,1,7,0,1,20,-1,2013-02-04 07:35:17,2013-03-23 05:13:19,94002444TC20A,,2013-02-05,0,M,arrest case no charge,1,15004458CF10A,(F2),0,2015-04-05,S/M/D/P/W/Int 1000 Sch/Child C,2015-04-05,2015-05-08,,0,,,,,Risk of Recidivism,7,Medium,2013-02-05,Risk of Violence,2,Low,2013-02-05,2015-04-05,2015-05-08,20,46,789,1,0,0\r\n5810,david heller,david,heller,2014-05-27,Male,1974-01-24,42,25 - 45,African-American,0,5,0,0,10,-1,2014-05-26 11:28:58,2014-05-27 08:41:35,14041804TC30A,2014-05-10,,17,M,Driving License Suspended,1,15009060MM10A,(M1),132,2015-03-29,Battery,2015-08-08,2015-08-15,,1,15009060MM10A,(M1),2015-03-29,Battery,Risk of Recidivism,5,Medium,2014-05-27,Risk of Violence,1,Low,2014-05-27,2014-06-26,2014-06-27,10,0,30,0,1,1\r\n5812,lattee bryant,lattee,bryant,2013-10-16,Male,1966-09-13,49,Greater than 45,African-American,0,4,0,0,4,-26,2013-09-20 05:43:27,2013-09-21 09:04:42,13013261CF10A,2013-09-20,,26,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-16,Risk of Violence,1,Low,2013-10-16,2014-01-23,2014-02-13,4,0,99,0,0,0\r\n5814,michael ramos,michael,ramos,2014-11-20,Male,1975-08-30,40,25 - 45,Caucasian,0,8,0,0,0,-1,2014-11-19 03:55:33,2014-12-19 01:16:35,14016534MM10A,2014-11-19,,1,M,Petit Theft,1,15001771CF10A,(F2),,2015-02-07,Agg Battery Grt/Bod/Harm,,,,1,15001771CF10A,(F2),2015-02-07,Agg Battery Grt/Bod/Harm,Risk of Recidivism,8,High,2014-11-20,Risk of Violence,10,High,2014-11-20,2014-11-19,2014-12-19,0,29,79,1,1,1\r\n5818,jeremy anderson,jeremy,anderson,2013-03-19,Male,1992-07-06,23,Less than 25,African-American,0,5,0,0,0,-1,2013-03-18 09:03:00,2013-03-20 10:13:45,13003923CF10A,2013-03-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-19,Risk of Violence,7,Medium,2013-03-19,2013-04-18,2013-10-25,0,1,30,0,0,0\r\n5821,tyler roberts,tyler,roberts,2014-01-21,Male,1984-10-15,31,25 - 45,Caucasian,0,5,0,0,3,0,2014-01-21 01:48:08,2014-01-21 08:50:46,14001009MM10A,2014-01-21,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-21,Risk of Violence,4,Low,2014-01-21,2014-01-21,2014-01-21,3,0,801,0,0,0\r\n5824,kerryann murphy,kerryann,murphy,2013-12-19,Female,1987-04-30,28,25 - 45,African-American,0,2,0,0,0,0,2013-12-19 03:23:34,2013-12-20 02:03:00,13023488MM10A,2013-12-19,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-19,Risk of Violence,2,Low,2013-12-19,2013-12-19,2013-12-20,0,1,834,0,0,0\r\n5826,roy raidi,roy,raidi,2013-03-04,Male,1971-04-09,45,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-04 04:31:18,2013-04-10 05:02:33,13003246CF10A,2013-03-04,,0,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2014-07-28,2014-09-06,0,37,511,0,0,0\r\n5828,julius grant,julius,grant,2013-03-31,Male,1977-01-07,39,25 - 45,African-American,0,8,0,0,7,0,2013-03-31 02:37:57,2013-03-31 06:29:12,13004618CF10A,2013-03-30,,1,F,Aggravated Battery / Pregnant,1,13011471CF10A,(F3),0,2013-08-15,Felony Battery (Dom Strang),2013-08-15,2013-09-19,,1,13011471CF10A,(F3),2013-08-15,Felony Battery (Dom Strang),Risk of Recidivism,8,High,2013-03-31,Risk of Violence,6,Medium,2013-03-31,2013-08-15,2013-09-19,7,0,137,1,1,1\r\n5830,andrew marold,andrew,marold,2013-03-13,Male,1990-05-02,25,25 - 45,Caucasian,0,4,0,0,2,-63,2013-01-09 07:22:43,2013-02-21 01:03:50,13000396CF10A,2013-01-09,,63,F,Burglary Conveyance Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-13,Risk of Violence,4,Low,2013-03-13,2015-01-16,2015-02-17,2,0,674,0,0,0\r\n5831,livingston graham,livingston,graham,2014-01-03,Male,1991-07-23,24,Less than 25,African-American,0,2,1,0,1,-1,2014-01-02 08:32:23,2014-01-03 01:34:37,14000081CF10A,2014-01-02,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-03,Risk of Violence,4,Low,2014-01-03,2014-01-02,2014-01-03,1,0,819,0,0,0\r\n5832,timothy peterson,timothy,peterson,2013-06-07,Male,1969-09-15,46,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-06-06 02:04:55,2013-06-07 04:35:36,11012041CF10A,,2013-06-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-07,Risk of Violence,1,Low,2013-06-07,2014-08-15,2014-08-17,1,0,434,0,0,0\r\n5833,kerry richard,kerry,richard,2013-01-11,Male,1968-11-08,47,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-01-10 04:27:00,2013-01-12 05:11:50,13000441CF10A,2013-01-10,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-11,Risk of Violence,1,Low,2013-01-11,2013-01-10,2013-01-12,3,1,1176,0,0,0\r\n5835,anthony turk,anthony,turk,2013-07-16,Male,1961-07-19,54,Greater than 45,Caucasian,0,4,0,0,2,66,2013-09-20 10:17:48,2013-09-20 09:05:55,13049962TC30A,2013-04-06,,101,M,Leave Acc/Attend Veh/More $50,1,13017967MM10A,(M1),0,2013-09-20,Harass Witness/Victim/Information,2013-09-20,2013-09-20,,1,13017967MM10A,(M1),2013-09-20,Battery,Risk of Recidivism,4,Low,2013-07-16,Risk of Violence,3,Low,2013-07-16,2013-09-20,2013-09-20,2,0,66,0,1,1\r\n5837,kristi chudicek,kristi,chudicek,2013-08-20,Female,1981-06-20,34,25 - 45,Caucasian,0,2,0,0,0,-2,2013-08-18 04:06:40,2013-08-19 06:27:43,13015629MM10A,2013-08-18,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-18,2013-08-19,0,0,955,0,0,0\r\n5841,alexis lopezmunoz,alexis,lopezmunoz,2013-01-15,Male,1988-07-22,27,25 - 45,Caucasian,0,6,0,0,1,,,,12019864MM10A,2012-08-18,,150,M,Poss Drugs W/O A Prescription,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-15,Risk of Violence,3,Low,2013-01-15,,,1,0,1172,0,0,0\r\n5846,mizraim santiago,mizraim,santiago,2013-07-23,Male,1981-11-04,34,25 - 45,Hispanic,0,2,0,0,3,-6,2013-07-17 03:59:03,2013-07-22 09:39:53,13013591MM10A,2013-07-17,,6,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-23,Risk of Violence,2,Low,2013-07-23,2013-12-09,2013-12-12,3,0,139,0,0,0\r\n5847,gregory pierresaint,gregory,pierresaint,2013-07-01,Male,1983-10-11,32,25 - 45,African-American,0,5,0,0,1,-115,2013-03-08 01:31:21,2013-03-08 11:32:21,13003407CF10A,2013-03-08,,115,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-01,Risk of Violence,5,Medium,2013-07-01,2014-03-05,2014-06-29,1,0,247,0,0,0\r\n5849,megan mickens,megan,mickens,2013-04-13,Male,1986-12-19,29,25 - 45,African-American,0,6,0,0,0,0,2013-04-13 07:45:58,2013-04-14 07:39:52,13007156MM10A,2013-04-13,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-13,Risk of Violence,3,Low,2013-04-13,2013-04-13,2013-04-14,0,1,1084,0,0,0\r\n5852,dorothy burgess,dorothy,burgess,2013-04-19,Female,1960-07-30,55,Greater than 45,African-American,0,1,0,0,1,-1,2013-04-18 08:53:43,2013-04-19 07:50:03,13005573CF10A,2013-04-18,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-18,2013-04-19,1,0,1078,0,0,0\r\n5854,roseson sterlin,roseson,sterlin,2013-02-23,Male,1989-06-20,26,25 - 45,African-American,0,3,0,0,0,-1,2013-02-22 06:44:05,2013-02-23 08:31:02,12025639MO10A,,2013-02-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-23,Risk of Violence,3,Low,2013-02-23,2013-02-22,2013-02-23,0,0,1133,0,0,0\r\n5857,charlie stanley,charlie,stanley,2014-01-11,Male,1991-07-02,24,Less than 25,African-American,0,7,0,0,1,0,2014-01-11 04:54:38,2014-01-11 07:57:07,14000494CF10A,2014-01-11,,0,F,Possession of Codeine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-11,Risk of Violence,7,Medium,2014-01-11,2014-01-11,2014-01-11,1,0,811,0,0,0\r\n5858,juan hidalgo,juan,hidalgo,2013-02-16,Male,1986-08-13,29,25 - 45,Caucasian,0,2,0,0,0,0,2013-02-16 04:44:47,2013-02-17 01:53:27,13003400MM10A,2013-02-16,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-16,Risk of Violence,2,Low,2013-02-16,2013-02-16,2013-02-17,0,1,1140,0,0,0\r\n5867,kenroy whitley,kenroy,whitley,2013-07-25,Male,1985-01-13,31,25 - 45,Other,0,2,0,0,0,-1,2013-07-24 02:09:40,2013-07-24 07:18:14,13014019MM10A,2013-07-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-25,Risk of Violence,2,Low,2013-07-25,2013-07-24,2013-07-24,0,0,981,0,0,0\r\n5869,javier gonzalez,javier,gonzalez,2013-01-30,Male,1989-10-27,26,25 - 45,Caucasian,1,6,0,0,2,-1,2013-01-29 07:52:58,2013-01-30 01:21:46,13001427CF10A,2013-01-29,,1,F,Possession of Cannabis,1,15011956CF10A,(F3),0,2015-09-15,Possession of Cannabis,2015-09-15,2015-09-16,,0,,,,,Risk of Recidivism,6,Medium,2013-01-30,Risk of Violence,8,High,2013-01-30,2015-09-15,2015-09-16,2,0,958,1,0,0\r\n5871,david wilkinson,david,wilkinson,2013-09-15,Male,1961-12-12,54,Greater than 45,Caucasian,0,2,0,0,2,0,2013-09-15 01:38:34,2013-12-21 04:45:56,13011098CF10A,,2013-09-15,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-15,Risk of Violence,1,Low,2013-09-15,2013-09-15,2013-12-21,2,97,929,0,0,0\r\n5873,eric mobley,eric,mobley,2014-01-19,Male,1982-06-13,33,25 - 45,African-American,0,8,0,0,14,-1,2014-01-18 09:19:00,2014-01-19 08:18:53,14000779CF10A,2014-01-18,,1,F,Possession of Cocaine,1,14005340CF10A,(F7),,2014-04-15,Burglary Structure Assault/Batt,,,,1,14005340CF10A,(F3),2014-04-15,Attempted Robbery  No Weapon,Risk of Recidivism,8,High,2014-01-19,Risk of Violence,4,Low,2014-01-19,2014-01-18,2014-01-19,14,0,86,1,1,1\r\n5877,joseph pryor,joseph,pryor,2013-03-02,Male,1980-09-19,35,25 - 45,African-American,0,9,1,0,8,0,2013-03-02 02:57:33,2013-10-27 05:59:54,13003145CF10A,2013-03-02,,0,F,Driving While License Revoked,1,16003411CF10A,(F3),1,2016-03-18,,2016-03-19,2016-03-20,,0,,,,,Risk of Recidivism,9,High,2013-03-02,Risk of Violence,8,High,2013-03-02,2013-03-02,2013-10-27,8,239,1112,1,0,0\r\n5880,addison oliver,addison,oliver,2014-03-26,Male,1990-11-11,25,25 - 45,African-American,0,2,0,0,0,-1,2014-03-25 06:30:51,2014-03-26 01:51:19,14004231CF10A,2014-03-25,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-26,Risk of Violence,3,Low,2014-03-26,2014-03-25,2014-03-26,0,0,737,0,0,0\r\n5881,ken delva,ken,delva,2013-02-06,Male,1990-08-01,25,25 - 45,African-American,0,5,0,0,0,0,2013-02-06 03:18:44,2013-02-06 07:56:34,13001863CF10A,2013-02-05,,1,F,\"Del 3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-06,Risk of Violence,3,Low,2013-02-06,2013-02-06,2013-02-06,0,0,1150,0,0,0\r\n5886,glenn bard,glenn,bard,2013-11-04,Male,1963-02-12,53,Greater than 45,Caucasian,0,1,0,0,0,0,2013-11-04 02:03:04,2013-11-08 09:12:49,13020833MM10A,2013-11-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-04,Risk of Violence,1,Low,2013-11-04,2013-11-04,2013-11-08,0,4,879,0,0,0\r\n5891,david gutman,david,gutman,2013-11-03,Male,1974-05-15,41,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-02 04:53:44,2013-11-03 12:58:20,13015277CF10A,2013-11-02,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-03,Risk of Violence,1,Low,2013-11-03,2013-11-02,2013-11-03,0,0,880,0,0,0\r\n5895,kevin sasnett,kevin,sasnett,2013-09-27,Male,1992-01-26,24,Less than 25,Caucasian,0,4,0,0,1,0,2013-09-27 04:19:07,2013-09-27 08:59:08,13013610CF10A,2013-09-27,,0,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-27,Risk of Violence,3,Low,2013-09-27,2013-09-27,2013-09-27,1,0,917,0,0,0\r\n5896,carlos pastrana,carlos,pastrana,2013-04-01,Male,1977-10-01,38,25 - 45,Caucasian,0,2,0,0,8,-32,2013-02-28 06:48:26,2013-02-28 08:42:31,13003066CF10A,2013-02-28,,32,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-01,Risk of Violence,4,Low,2013-04-01,2014-04-24,2014-12-22,8,0,388,0,0,0\r\n5898,luis gonzalez,luis,gonzalez,2013-12-26,Male,1992-05-22,23,Less than 25,Caucasian,0,2,0,0,0,-1,2013-12-25 01:48:57,2013-12-26 01:13:22,13023750MM10A,2013-12-24,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-26,Risk of Violence,4,Low,2013-12-26,2013-12-25,2013-12-26,0,0,827,0,0,0\r\n5899,freddy hall,freddy,hall,2013-05-23,Male,1973-12-10,42,25 - 45,African-American,0,1,0,0,0,-1,2013-05-22 01:03:43,2013-05-23 04:44:30,13007324CF10A,2013-05-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-23,Risk of Violence,1,Low,2013-05-23,2013-05-22,2013-05-23,0,0,1044,0,0,0\r\n5900,matthew logiudice,matthew,logiudice,2013-09-09,Male,1983-09-10,32,25 - 45,Caucasian,0,5,0,0,4,-47,2013-07-24 08:22:37,2013-07-29 11:10:43,13010358CF10A,2013-07-24,,47,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-09,Risk of Violence,1,Low,2013-09-09,2015-06-30,2015-07-03,4,0,659,0,0,0\r\n5901,joshua perez,joshua,perez,2014-04-01,Male,1992-02-25,24,Less than 25,Hispanic,0,7,0,0,3,597,2015-11-19 12:47:48,2015-11-20 06:12:53,14005094MM10A,2014-03-24,,8,M,Battery,1,15005902MM10A,(M1),,2015-05-29,Viol Pretrial Release Dom Viol,,,,1,15012271CF10A,(F3),2015-09-21,Stalking (Aggravated),Risk of Recidivism,7,Medium,2014-04-01,Risk of Violence,8,High,2014-04-01,2015-11-19,2015-11-20,3,0,423,1,1,1\r\n5906,jerline jean,jerline,jean,2014-03-09,Female,1983-10-30,32,25 - 45,African-American,0,6,0,0,3,-1,2014-03-08 08:03:14,2014-03-09 12:18:14,14003307CF10A,2014-03-08,,1,M,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-09,Risk of Violence,4,Low,2014-03-09,2014-03-08,2014-03-09,3,0,754,0,0,0\r\n5907,anthony williams,anthony,williams,2013-09-25,Male,1975-08-20,40,25 - 45,African-American,0,9,0,0,13,-1,2013-09-24 07:30:04,2013-09-25 08:13:07,13013438CF10A,,2013-09-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-25,Risk of Violence,3,Low,2013-09-25,2015-05-13,2015-05-18,13,0,595,0,0,0\r\n5912,julio esquiagola,julio,esquiagola,2013-05-09,Male,1973-08-13,42,25 - 45,Hispanic,0,1,0,0,1,-118,2013-01-11 01:09:26,2013-05-09 10:55:33,13000335CF10A,,2013-01-10,119,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-09,Risk of Violence,1,Low,2013-05-09,2013-01-11,2013-05-09,1,0,1058,0,0,0\r\n5914,donald perdue,donald,perdue,2013-03-28,Male,1989-01-13,27,25 - 45,African-American,0,3,0,0,2,0,2013-03-28 01:22:58,2013-03-28 08:31:54,13004446CF10A,2013-03-27,,1,F,Lease For Purpose Trafficking,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-28,Risk of Violence,4,Low,2013-03-28,2015-03-17,2015-03-17,2,0,719,0,0,0\r\n5917,clifford proctor,clifford,proctor,2013-04-07,Male,1983-12-16,32,25 - 45,African-American,0,4,0,0,1,-1,2013-04-06 05:35:58,2013-04-10 05:02:49,13006617MM10A,2013-04-06,,1,M,DUI Blood Alcohol Above 0.20,1,13012009CF10A,(F1),1,2013-08-24,Home Invasion Robbery,2013-08-25,2013-10-22,,1,13012009CF10A,(F1),2013-08-24,Home Invasion Robbery,Risk of Recidivism,4,Low,2013-04-07,Risk of Violence,2,Low,2013-04-07,2013-04-06,2013-04-10,1,3,139,1,1,1\r\n5918,gregory polynice,gregory,polynice,2014-07-17,Male,1978-01-06,38,25 - 45,African-American,0,7,0,0,2,43,2014-08-29 09:49:28,2014-09-05 02:03:17,13004858MM10A,,2014-05-12,66,M,arrest case no charge,1,15003672MM10A,(M1),0,2015-03-29,Resist/Obstruct W/O Violence,2015-03-29,2015-04-21,,1,15003672MM10A,(M1),2015-03-29,Battery,Risk of Recidivism,7,Medium,2014-07-17,Risk of Violence,4,Low,2014-07-17,2014-08-29,2014-09-05,2,0,43,0,1,1\r\n5923,jesus valencia,jesus,valencia,2013-08-19,Male,1986-07-26,29,25 - 45,Caucasian,0,2,0,0,2,-1,2013-08-18 08:19:55,2013-08-22 03:45:12,13011580CF10A,2013-08-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-19,Risk of Violence,3,Low,2013-08-19,2013-08-18,2013-08-22,2,3,956,0,0,0\r\n5924,marckenson demard,marckenson,demard,2013-08-13,Male,1987-10-06,28,25 - 45,African-American,0,3,0,0,7,,,,12018329CF10A,2012-12-17,,239,M,Resist/Obstruct W/O Violence,1,14013814CF10A,(F3),,2014-09-20,Battery on Law Enforc Officer,,,,1,14013814CF10A,(F3),2014-09-20,Battery on Law Enforc Officer,Risk of Recidivism,3,Low,2013-08-13,Risk of Violence,2,Low,2013-08-13,,,7,0,403,1,1,1\r\n5926,evens pericles,evens,pericles,2013-01-03,Male,1966-10-13,49,Greater than 45,African-American,0,1,0,0,0,0,2013-01-03 02:58:10,2013-01-03 07:35:13,13000196MM10A,2013-01-03,,0,M,Poss Of RX Without RX,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2013-01-03,2013-01-03,0,0,1184,0,0,0\r\n5928,jeremy joyce,jeremy,joyce,2014-02-04,Male,1965-08-03,50,Greater than 45,Caucasian,0,1,0,0,0,-2,2014-02-02 05:06:04,2014-02-04 12:04:14,14001463CF10A,2014-02-02,,2,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-02-02,2014-02-04,0,0,787,0,0,0\r\n5931,kristina cowley,kristina,cowley,2013-02-02,Female,1987-08-04,28,25 - 45,Caucasian,0,7,0,0,1,-1,2013-02-01 10:36:23,2013-02-11 06:46:31,11000338CF10A,,2013-02-01,1,F,arrest case no charge,1,15002806CF10A,(F3),0,2015-03-01,Grand Theft in the 3rd Degree,2015-03-01,2015-03-02,,0,,,,,Risk of Recidivism,7,Medium,2013-02-02,Risk of Violence,3,Low,2013-02-02,2015-03-01,2015-03-02,1,9,757,1,0,0\r\n5937,jason robertson,jason,robertson,2014-12-10,Male,1990-11-13,25,25 - 45,African-American,0,2,0,0,0,0,2014-12-10 01:56:11,2014-12-10 08:00:57,14017410MM10A,2014-12-10,,0,M,Battery,1,15008143CF10A,(F1),-1,2015-06-23,Robbery W/Firearm,2015-06-22,2015-08-07,,1,15008143CF10A,(F3),2015-06-23,Aggravated Assault w/Firearm,Risk of Recidivism,2,Low,2014-12-10,Risk of Violence,3,Low,2014-12-10,2015-06-22,2015-08-07,0,0,195,1,1,1\r\n5938,fernando walker,fernando,walker,2014-11-19,Male,1990-12-29,25,25 - 45,African-American,0,3,0,0,4,-1,2014-11-18 07:32:19,2014-11-27 08:30:00,14016533MM10A,2014-11-18,,1,M,Battery,1,15009401MM10A,(M1),0,2015-09-04,Battery,2015-09-04,2015-09-05,,1,15009401MM10A,(M1),2015-09-04,Battery,Risk of Recidivism,3,Low,2014-11-19,Risk of Violence,3,Low,2014-11-19,2015-09-04,2015-09-05,4,8,289,1,1,1\r\n5939,robert crot,robert,crot,2013-02-25,Male,1971-01-10,45,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-02-24 11:48:29,2013-02-25 06:52:51,13002841CF10A,2013-02-24,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,1,Low,2013-02-25,2013-02-24,2013-02-25,2,0,1131,0,0,0\r\n5943,julian bastian,julian,bastian,2013-03-18,Male,1979-02-10,37,25 - 45,Other,0,1,0,0,2,-1,2013-03-17 11:28:06,2013-04-15 11:25:52,13003879CF10A,2013-03-17,,1,F,Lewd/Lasciv Molest Elder Persn,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-17,2013-04-15,2,28,1110,0,0,0\r\n5946,alexandro castro,alexandro,castro,2014-03-22,Male,1991-09-05,24,Less than 25,Hispanic,0,2,0,0,0,-1,2014-03-21 09:50:03,2014-03-23 09:11:20,14004982MM10A,2014-03-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-22,Risk of Violence,3,Low,2014-03-22,2014-03-21,2014-03-23,0,1,741,0,0,0\r\n5947,carmine dagnell,carmine,dagnell,2013-03-23,Male,1975-09-17,40,25 - 45,Caucasian,0,1,0,0,2,-1,2013-03-22 11:22:26,2013-03-24 05:59:53,05020781MM10A,,2013-03-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-23,Risk of Violence,1,Low,2013-03-23,2013-03-22,2013-03-24,2,1,1105,0,0,0\r\n5948,gary schwab,gary,schwab,2013-01-02,Male,1955-10-01,60,Greater than 45,Caucasian,0,1,0,0,1,,,,12025273MM10A,2012-12-11,,22,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-02,Risk of Violence,1,Low,2013-01-02,,,1,0,1185,0,0,0\r\n5951,lizzethe rivas,lizzethe,rivas,2013-06-04,Female,1983-01-26,33,25 - 45,Hispanic,0,2,0,0,0,-2,2013-06-02 04:46:03,2013-06-03 02:11:03,13007822CF10A,2013-06-02,,2,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-04,Risk of Violence,1,Low,2013-06-04,2013-06-02,2013-06-03,0,0,1032,0,0,0\r\n5952,jerry boston,jerry,boston,2013-03-06,Male,1984-06-09,31,25 - 45,African-American,0,9,0,1,6,,,,10001656CF10A,,2010-03-22,1080,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-06,Risk of Violence,8,High,2013-03-06,,,6,0,1122,0,0,0\r\n5953,rolando pena,rolando,pena,2013-09-06,Male,1962-12-23,53,Greater than 45,Hispanic,0,2,0,0,18,0,2013-09-06 03:05:03,2013-09-07 05:14:11,13012609CF10A,,2013-09-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-06,2013-09-07,18,1,938,0,0,0\r\n5954,jose ramos-otero,jose,ramos-otero,2014-03-26,Male,1960-10-15,55,Greater than 45,Hispanic,0,1,0,0,0,-7,2014-03-19 11:32:30,2014-03-25 06:06:45,14004794MM10A,2014-03-19,,7,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-26,Risk of Violence,1,Low,2014-03-26,2014-03-19,2014-03-25,0,0,737,0,0,0\r\n5955,george joseph,george,joseph,2014-03-26,Male,1979-08-15,36,25 - 45,Caucasian,0,6,0,0,4,,,,12025593MM10A,2012-12-16,,465,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-26,Risk of Violence,4,Low,2014-03-26,2008-04-22,2009-02-01,4,0,737,0,0,0\r\n5957,jean joseph,jean,joseph,2013-10-25,Male,1986-02-23,30,25 - 45,Other,0,9,0,0,6,-1,2013-10-24 07:05:58,2013-11-11 02:16:33,13014877CF10A,2013-10-24,,1,F,Aggravated Assault W/Dead Weap,1,14000195MM10A,(M1),0,2014-01-05,Battery,2014-01-05,2014-02-04,,1,14000195MM10A,(M1),2014-01-05,Battery,Risk of Recidivism,9,High,2013-10-25,Risk of Violence,7,Medium,2013-10-25,2014-01-05,2014-02-04,6,17,72,1,1,1\r\n5960,ginge brien,ginge,brien,2013-12-07,Male,1960-06-05,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-06 11:16:06,2013-12-07 07:45:33,13022640MM10A,2013-12-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-07,Risk of Violence,1,Low,2013-12-07,2013-12-06,2013-12-07,0,0,846,0,0,0\r\n5964,crystal sylvester,crystal,sylvester,2013-03-05,Female,1993-02-14,23,Less than 25,African-American,0,3,0,0,1,-6,2013-02-27 09:17:36,2013-02-28 07:44:18,13002979CF10A,,2013-02-27,6,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-05,Risk of Violence,4,Low,2013-03-05,2013-02-27,2013-02-28,1,0,1123,0,0,0\r\n5967,attilla kennedy,attilla,kennedy,2013-04-02,Female,1976-03-06,40,25 - 45,African-American,0,10,0,0,13,752,2015-04-24 12:13:42,2015-08-10 11:42:44,12016990CF10A,2012-11-20,,133,F,Possession of Cocaine,1,13006385CF10A,(F3),,2013-05-03,Possession of Cocaine,,,,1,15005350CF10A,(F3),2015-04-23,Felony Battery w/Prior Convict,Risk of Recidivism,10,High,2013-04-02,Risk of Violence,9,High,2013-04-02,2016-01-24,2016-02-20,13,0,31,1,1,1\r\n5970,luis molina,luis,molina,2013-05-29,Male,1983-11-06,32,25 - 45,Caucasian,0,1,0,0,2,0,2013-05-29 04:36:00,2013-05-30 04:49:03,13007646CF10A,2013-05-29,,0,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-10-14,2013-10-15,2,1,138,0,0,0\r\n5971,jason ankney,jason,ankney,2013-09-09,Male,1969-02-06,47,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-09-08 01:42:14,2013-09-21 04:20:31,12018532CF10A,,2013-09-08,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2014-04-21,2014-06-17,3,12,224,0,0,0\r\n5974,kionte martin,kionte,martin,2013-08-09,Male,1993-08-14,22,Less than 25,African-American,0,6,1,0,1,-1,2013-08-08 01:54:57,2013-08-09 08:15:00,13011146CF10A,2013-08-08,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-09,Risk of Violence,7,Medium,2013-08-09,2013-08-08,2013-08-09,1,0,966,0,0,0\r\n5975,bernardo camejo,bernardo,camejo,2014-02-20,Male,1968-08-09,47,Greater than 45,Caucasian,0,1,0,0,2,-1,2014-02-19 05:36:32,2014-02-21 04:14:33,14002337CF10A,2014-02-19,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-20,Risk of Violence,2,Low,2014-02-20,2014-02-19,2014-02-21,2,1,771,0,0,0\r\n5978,tyrone baptiste,tyrone,baptiste,2013-08-10,Male,1988-03-12,28,25 - 45,African-American,0,8,0,0,5,-1,2013-08-09 10:07:19,2013-09-13 07:58:19,13011203CF10A,2013-08-08,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-10,Risk of Violence,4,Low,2013-08-10,2013-11-26,2014-02-27,5,34,108,0,0,0\r\n5984,william neal,william,neal,2014-02-12,Male,1981-07-23,34,25 - 45,African-American,0,2,0,0,4,-1,2014-02-11 09:02:44,2014-02-12 08:26:32,14002367MM10A,2014-02-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-12,Risk of Violence,2,Low,2014-02-12,2014-02-11,2014-02-12,4,0,779,0,0,0\r\n5985,robert diers,robert,diers,2013-02-22,Male,1951-03-30,65,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-22 04:53:05,2013-02-23 04:06:29,13003749MM10A,2013-02-22,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-22,Risk of Violence,1,Low,2013-02-22,2013-03-15,2013-04-07,0,1,21,0,0,0\r\n5988,marialys hollmann,marialys,hollmann,2013-03-24,Female,1992-07-29,23,Less than 25,Caucasian,0,3,0,0,0,-1,2013-03-23 09:45:20,2013-03-24 06:30:07,13005714MM10A,2013-03-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-24,Risk of Violence,3,Low,2013-03-24,2013-03-23,2013-03-24,0,0,1104,0,0,0\r\n5989,maggi allaire,maggi,allaire,2014-01-27,Female,1971-07-01,44,25 - 45,Caucasian,0,1,0,0,0,-2,2014-01-25 02:52:12,2014-01-26 02:01:51,14001425MM10A,2014-01-25,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2014-01-25,2014-01-26,0,0,795,0,0,0\r\n5990,zamir villeda,zamir,villeda,2013-03-06,Male,1994-09-10,21,Less than 25,Hispanic,1,8,0,0,1,88,2013-06-02 03:07:52,2014-11-11 05:11:05,12002996CF10A,,2012-04-19,321,F,arrest case no charge,1,13007811CF10A,(F3),1,2013-06-01,Resist Officer w/Violence,2013-06-02,2014-11-11,,1,13007811CF10A,(F3),2013-06-01,Battery on Law Enforc Officer,Risk of Recidivism,8,High,2013-03-06,Risk of Violence,9,High,2013-03-06,2015-06-30,2015-08-08,1,0,87,1,1,1\r\n5992,donnell george,donnell,george,2013-01-22,Male,1991-08-16,24,Less than 25,African-American,0,3,0,0,1,-1,2013-01-21 11:07:10,2013-01-22 01:58:45,13001429MM10A,2013-01-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-22,Risk of Violence,5,Medium,2013-01-22,2013-01-21,2013-01-22,1,0,1165,0,0,0\r\n5993,edward dulom,edward,dulom,2013-12-01,Male,1964-09-30,51,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-11-30 06:59:05,2013-12-01 12:41:20,13022330MM10A,2013-11-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-01,Risk of Violence,1,Low,2013-12-01,2013-11-30,2013-12-01,1,0,852,0,0,0\r\n5995,joshua drew,joshua,drew,2013-09-17,Male,1977-04-16,39,25 - 45,Caucasian,0,6,0,0,6,-1,2013-09-16 04:22:28,2013-09-17 01:52:57,13011664CF10A,,2013-09-16,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-17,Risk of Violence,2,Low,2013-09-17,2013-09-16,2013-09-17,6,0,927,0,0,0\r\n5997,jedidiah rocha,jedidiah,rocha,2013-12-03,Male,1991-07-14,24,Less than 25,Caucasian,0,6,0,0,1,-5,2013-11-28 09:36:08,2013-11-29 01:37:48,13016555CF10A,2013-11-28,,5,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-03,Risk of Violence,4,Low,2013-12-03,2013-11-28,2013-11-29,1,0,850,0,0,0\r\n6001,james baker,james,baker,2014-08-27,Male,1984-07-03,31,25 - 45,African-American,0,10,0,2,11,0,2014-08-27 12:36:35,2014-08-27 01:58:47,14011706CF10A,2014-08-26,,1,F,Poss Pyrrolidinovalerophenone,1,15009531MM10A,(M1),0,2015-09-08,Possess Cannabis/20 Grams Or Less,2015-09-08,2015-09-09,,1,15002947MM20A,(M1),2015-11-15,Battery,Risk of Recidivism,10,High,2014-08-27,Risk of Violence,7,Medium,2014-08-27,2015-09-08,2015-09-09,11,0,377,1,1,1\r\n6002,sabrina day,sabrina,day,2013-12-23,Female,1980-10-31,35,25 - 45,African-American,0,2,0,0,0,-1,2013-12-22 07:28:40,2013-12-23 01:00:39,13023599MM10A,2013-12-22,,1,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-22,2013-12-23,0,0,830,0,0,0\r\n6004,wisler vilcant,wisler,vilcant,2013-12-07,Male,1985-08-24,30,25 - 45,Other,0,1,0,0,0,-1,2013-12-06 07:43:48,2013-12-07 05:08:06,13016901CF10A,2013-12-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-07,Risk of Violence,1,Low,2013-12-07,2013-12-06,2013-12-07,0,0,846,0,0,0\r\n6005,john ballew,john,ballew,2013-10-31,Male,1981-10-21,34,25 - 45,Caucasian,0,7,0,0,8,-104,2013-07-19 07:56:06,2013-09-26 10:15:00,13010142CF10A,2013-07-19,,104,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-31,Risk of Violence,4,Low,2013-10-31,2015-11-05,2015-11-06,8,0,735,0,0,0\r\n6006,chaneka pace,chaneka,pace,2013-08-05,Female,1976-05-26,39,25 - 45,African-American,0,6,0,0,4,-3,2013-08-02 05:56:52,2013-08-05 11:16:27,13010929CF10A,2013-08-02,,3,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-05,Risk of Violence,1,Low,2013-08-05,2015-07-06,2015-07-07,4,0,700,0,0,0\r\n6009,robens joseph,robens,joseph,2013-10-21,Male,1986-09-19,29,25 - 45,African-American,0,2,0,0,6,702,2015-09-23 05:41:57,2015-09-28 07:54:58,13011806CF10A,2013-08-22,,60,M,Felony Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-21,Risk of Violence,2,Low,2013-10-21,2015-09-23,2015-09-28,6,0,702,0,0,0\r\n6010,noel medina,noel,medina,2013-10-06,Male,1965-03-25,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-05 03:53:47,2013-10-06 08:40:20,13018938MM10A,2013-10-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-06,Risk of Violence,1,Low,2013-10-06,2013-10-05,2013-10-06,0,0,908,0,0,0\r\n6011,richard hough,richard,hough,2013-05-16,Male,1993-09-09,22,Less than 25,Caucasian,0,7,0,1,1,-1,2013-05-15 10:31:31,2014-01-07 05:52:28,13006949CF10A,,2013-05-12,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-16,Risk of Violence,5,Medium,2013-05-16,2013-05-15,2014-01-07,1,236,1051,0,0,0\r\n6013,rachel gonzales,rachel,gonzales,2013-11-08,Male,1986-09-05,29,25 - 45,Caucasian,0,2,0,0,2,-24,2013-10-15 09:16:10,2013-11-07 08:56:00,13014430CF10A,,2013-10-15,24,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-08,Risk of Violence,3,Low,2013-11-08,2013-10-15,2013-11-07,2,0,875,0,0,0\r\n6021,lee ferrell,lee,ferrell,2013-03-19,Male,1983-04-09,33,25 - 45,Caucasian,0,4,0,0,3,-16,2013-03-03 11:33:17,2013-03-15 06:19:23,13004319MM10A,2013-03-03,,16,M,Battery,1,13010984CF10A,(F3),,2013-06-07,Felony Battery w/Prior Convict,,,,1,13010984CF10A,(F3),2013-06-07,Felony Battery w/Prior Convict,Risk of Recidivism,4,Low,2013-03-19,Risk of Violence,3,Low,2013-03-19,2015-09-23,2015-10-15,3,0,80,1,1,1\r\n6023,brunel petit-frere,brunel,petit-frere,2013-02-21,Male,1962-02-09,54,Greater than 45,Other,0,1,0,0,0,-1,2013-02-20 08:56:34,2013-03-20 07:19:46,13002614CF10A,2013-02-20,,1,F,Aggravated Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-21,Risk of Violence,1,Low,2013-02-21,2013-02-20,2013-03-20,0,27,1135,0,0,0\r\n6024,andrew ivy,andrew,ivy,2014-03-05,Male,1985-06-28,30,25 - 45,African-American,0,2,0,0,3,-166,2013-09-20 03:50:32,2013-09-21 04:35:03,13014777CF10A,2013-09-20,,166,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-05,Risk of Violence,2,Low,2014-03-05,2015-06-25,2015-07-06,3,0,477,0,0,0\r\n6030,jean valcourt,jean,valcourt,2013-10-01,Male,1968-03-19,48,Greater than 45,African-American,0,4,0,0,10,0,2013-10-01 05:10:48,2014-03-25 08:17:12,13013771CF10A,2013-10-01,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2013-10-01,2014-03-25,10,175,913,0,0,0\r\n6032,david walters,david,walters,2013-11-24,Male,1992-10-11,23,Less than 25,African-American,0,8,0,0,0,-1,2013-11-23 05:23:08,2013-11-26 09:28:08,13022026MM10A,2013-11-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-24,Risk of Violence,7,Medium,2013-11-24,2013-11-23,2013-11-26,0,2,859,0,0,0\r\n6034,louis tieso,louis,tieso,2013-09-19,Male,1993-04-09,23,Less than 25,Caucasian,0,7,0,0,2,-1,2013-09-18 08:45:23,2013-10-03 12:14:36,13013179CF10A,2013-09-18,,1,F,Grand Theft in the 3rd Degree,1,14016785CF10A,(M2),1,2014-12-18,Lve/Scen/Acc/Veh/Prop/Damage,2014-12-19,2015-01-29,,1,15003343CF10A,(F1),2015-03-12,Robbery W/Firearm,Risk of Recidivism,7,Medium,2013-09-19,Risk of Violence,6,Medium,2013-09-19,2013-10-17,2013-10-18,2,14,28,0,1,1\r\n6035,rehan kazi,rehan,kazi,2013-10-13,Male,1968-08-09,47,Greater than 45,Asian,0,1,0,0,1,0,2013-10-13 02:20:11,2013-10-14 07:54:28,13019417MM10A,2013-10-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-13,Risk of Violence,1,Low,2013-10-13,2013-12-05,2013-12-06,1,1,53,0,0,0\r\n6036,james nelson,james,nelson,2013-05-02,Male,1994-06-14,21,Less than 25,Other,0,4,0,0,0,-1,2013-05-01 07:59:10,2013-05-03 09:30:47,13006266CF10A,2013-05-01,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-02,Risk of Violence,6,Medium,2013-05-02,2014-10-20,2014-10-24,0,1,536,0,0,0\r\n6041,ramon abreu,ramon,abreu,2014-02-25,Male,1967-12-05,48,Greater than 45,Caucasian,0,1,0,0,2,-1,2014-02-24 10:00:14,2014-02-25 09:19:31,14001974CF10A,,2014-02-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,1,Low,2014-02-25,2014-02-24,2014-02-25,2,0,766,0,0,0\r\n6043,david guitar,david,guitar,2013-03-28,Male,1966-03-28,50,Greater than 45,Caucasian,0,3,0,0,3,-1,2013-03-27 09:19:27,2013-04-10 10:26:19,13004415CF10A,2013-03-27,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-27,2013-04-10,3,13,1100,0,0,0\r\n6045,sean miller,sean,miller,2013-12-09,Male,1977-01-09,39,25 - 45,Caucasian,0,3,0,0,2,,,,10026202MM10A,2010-11-08,,1127,M,Opert With Susp DL 2ND Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-09,Risk of Violence,1,Low,2013-12-09,,,2,0,844,0,0,0\r\n6046,michael jackson,michael,jackson,2013-02-01,Male,1966-09-02,49,Greater than 45,African-American,2,3,0,0,13,-1,2013-01-31 08:34:57,2013-02-01 01:50:18,13001572CF10A,2013-01-31,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-01,Risk of Violence,2,Low,2013-02-01,2013-01-31,2013-02-01,13,0,1155,0,0,0\r\n6047,brian todd,brian,todd,2014-02-21,Male,1958-01-08,58,Greater than 45,Caucasian,0,5,0,0,2,-1,2014-02-20 07:21:42,2014-02-25 08:15:11,14002433CF10A,2014-02-20,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-21,Risk of Violence,2,Low,2014-02-21,2014-02-20,2014-02-25,2,4,770,0,0,0\r\n6048,laurence couch,laurence,couch,2013-10-11,Male,1984-10-05,31,25 - 45,African-American,0,8,0,0,6,0,2013-10-11 04:20:25,2013-10-11 08:02:17,13014253CF10A,2013-10-11,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-11,Risk of Violence,6,Medium,2013-10-11,2013-11-25,2013-12-13,6,0,45,0,0,0\r\n6051,cedrick camper,cedrick,camper,2013-11-13,Male,1993-01-27,23,Less than 25,African-American,0,7,0,2,1,-1,2013-11-12 01:26:14,2013-11-13 01:00:19,13021304MM10A,2013-11-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-13,Risk of Violence,5,Medium,2013-11-13,2013-11-12,2013-11-13,1,0,870,0,0,0\r\n6058,leon wallace,leon,wallace,2013-01-03,Male,1983-04-15,33,25 - 45,Other,0,1,0,0,0,-1,2013-01-02 10:07:28,2013-03-27 01:38:36,13000069CF10A,,2013-01-02,1,F,arrest case no charge,1,14008015MM10A,(M1),0,2014-05-17,Viol Injunct Domestic Violence,2014-05-17,2014-05-18,,1,16002185MM10A,(M1),2016-03-05,Battery,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2014-05-17,2014-05-18,0,83,499,1,1,1\r\n6062,michael campanile,michael,campanile,2013-09-25,Male,1958-08-03,57,Greater than 45,Caucasian,0,2,0,0,6,-23,2013-09-02 03:00:19,2013-09-03 07:50:44,13012396CF10A,2013-09-01,,24,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-25,Risk of Violence,2,Low,2013-09-25,2013-09-02,2013-09-03,6,0,919,0,0,0\r\n6064,brooke bassininsky,brooke,bassininsky,2013-12-16,Female,1984-11-21,31,25 - 45,Caucasian,0,2,0,0,0,-3,2013-12-13 09:11:19,2013-12-14 03:44:07,13023149MM10A,2013-12-13,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-16,Risk of Violence,2,Low,2013-12-16,2013-12-13,2013-12-14,0,0,837,0,0,0\r\n6065,clarence jackson,clarence,jackson,2013-05-19,Male,1958-12-29,57,Greater than 45,African-American,0,6,0,0,19,-1,2013-05-18 08:31:01,2013-05-21 12:47:29,13007095CF10A,2013-05-18,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-19,Risk of Violence,1,Low,2013-05-19,2014-04-10,2014-04-10,19,2,326,0,0,0\r\n6066,larry derose,larry,derose,2013-11-11,Male,1958-07-08,57,Greater than 45,Caucasian,0,5,0,0,12,0,2013-11-11 02:40:13,2013-11-14 09:18:15,13021252MM10A,2013-11-10,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-11,Risk of Violence,1,Low,2013-11-11,2014-06-09,2014-06-09,12,3,210,0,0,0\r\n6071,calvin sims,calvin,sims,2013-12-15,Male,1971-01-31,45,Greater than 45,African-American,0,3,0,0,11,-1,2013-12-14 09:06:52,2013-12-15 08:50:15,13017297CF10A,2013-12-14,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-15,Risk of Violence,3,Low,2013-12-15,2013-12-14,2013-12-15,11,0,838,0,0,0\r\n6073,daniel urrea,daniel,urrea,2013-12-15,Male,1973-11-05,42,25 - 45,Caucasian,0,5,0,0,0,0,2013-12-15 06:01:30,2013-12-15 08:40:14,13017335CF10A,2013-12-15,,0,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-15,Risk of Violence,2,Low,2013-12-15,2013-12-15,2013-12-15,0,0,838,0,0,0\r\n6074,steve rosewell,steve,rosewell,2013-05-15,Male,1967-11-02,48,Greater than 45,Other,0,2,0,0,7,-1,2013-05-14 06:11:09,2013-05-15 02:02:18,13006894CF10A,2013-05-14,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-15,Risk of Violence,2,Low,2013-05-15,2013-05-14,2013-05-15,7,0,1052,0,0,0\r\n6077,matthew arboleda,matthew,arboleda,2013-05-25,Male,1993-03-28,23,Less than 25,Caucasian,0,4,0,0,0,521,2014-10-28 07:54:03,2014-11-04 09:20:29,13007450CF10A,2013-05-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-25,Risk of Violence,5,Medium,2013-05-25,2014-10-28,2014-11-04,0,0,521,0,0,0\r\n6078,jamie hamilton,jamie,hamilton,2013-12-02,Female,1987-09-28,28,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-01 11:59:34,2013-12-02 09:37:16,13016640CF10A,2013-12-01,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-02,Risk of Violence,2,Low,2013-12-02,2013-12-01,2013-12-02,0,0,851,0,0,0\r\n6079,gayvon garrett,gayvon,garrett,2013-04-01,Male,1974-07-13,41,25 - 45,African-American,0,7,0,0,3,,,,09006688CF10A,2009-04-09,,1453,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-01,Risk of Violence,3,Low,2013-04-01,,,3,0,1096,0,0,0\r\n6080,tazomi natta,tazomi,natta,2013-04-27,Male,1990-07-28,25,25 - 45,African-American,0,2,0,0,1,-1,2013-04-26 03:45:27,2013-04-27 07:36:12,13008099MM10A,2013-04-26,,1,M,Battery,1,14002675CF10A,(F2),8,2014-02-17,Throw Deadly Missile Into Veh,2014-02-25,2014-02-27,,1,14002675CF10A,(F3),2014-02-17,Aggravated Assault w/Firearm,Risk of Recidivism,2,Low,2013-04-27,Risk of Violence,3,Low,2013-04-27,2015-11-19,2020-01-01,1,0,296,1,1,1\r\n6081,lorraine rivera,lorraine,rivera,2013-08-05,Female,1981-10-14,34,25 - 45,Caucasian,0,5,0,0,3,-1,2013-08-04 09:41:27,2013-08-14 10:01:13,13014594MM10A,2013-08-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-05,Risk of Violence,2,Low,2013-08-05,2013-08-04,2013-08-14,3,9,970,0,0,0\r\n6084,antonio jarrett,antonio,jarrett,2013-12-13,Male,1988-05-26,27,25 - 45,African-American,0,2,0,0,0,-1,2013-12-12 02:19:40,2013-12-13 02:51:00,13017204CF10A,2013-12-12,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-13,Risk of Violence,4,Low,2013-12-13,2013-12-12,2013-12-13,0,0,840,0,0,0\r\n6085,fredrick adger,fredrick,adger,2013-10-07,Male,1976-09-02,39,25 - 45,African-American,0,4,0,0,4,0,2013-10-07 04:26:58,2013-11-16 08:34:09,13014064CF10A,2013-10-07,,0,F,Aggrav Child Abuse-Agg Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,2,Low,2013-10-07,2013-10-07,2013-11-16,4,40,907,0,0,0\r\n6087,wendy wilson,wendy,wilson,2013-01-09,Female,1961-01-29,55,Greater than 45,Caucasian,0,4,0,0,6,1001,2015-10-07 07:01:04,2015-11-13 05:08:21,12009689CF10A,2012-07-01,,192,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-09,Risk of Violence,1,Low,2013-01-09,2015-10-07,2015-11-13,6,0,1001,0,0,0\r\n6089,ladarious smith,ladarious,smith,2013-11-25,Male,1989-04-05,27,25 - 45,African-American,0,5,0,0,4,-1,2013-11-24 12:20:22,2014-01-14 08:48:27,13016142CF10A,,2013-11-24,1,F,arrest case no charge,1,14011034MM10A,(M1),0,2014-07-19,Battery,2014-07-19,2014-08-23,,1,14011034MM10A,(M1),2014-07-19,Battery,Risk of Recidivism,5,Medium,2013-11-25,Risk of Violence,6,Medium,2013-11-25,2014-07-19,2014-08-23,4,50,236,1,1,1\r\n6097,lawrence andrews,lawrence,andrews,2014-05-25,Male,1989-11-27,26,25 - 45,Caucasian,0,9,0,0,2,-1,2014-05-24 08:49:20,2014-05-25 08:41:34,14007260CF10A,2014-05-24,,1,F,Aggravated Assault W/Dead Weap,1,14013516CF10A,(F3),77,2014-08-28,Felony Battery w/Prior Convict,2014-11-13,2014-11-21,,1,14013516CF10A,(F3),2014-08-28,Felony Battery w/Prior Convict,Risk of Recidivism,9,High,2014-05-25,Risk of Violence,8,High,2014-05-25,2016-03-16,2016-04-08,2,0,95,1,1,1\r\n6099,joseph keel,joseph,keel,2013-05-21,Male,1983-04-17,33,25 - 45,African-American,0,10,0,0,17,,,,12004964CF10A,,2012-12-05,167,F,arrest case no charge,1,14012027CF10A,(F2),,2014-06-13,Throw In Occupied Dwell,,,,1,14012027CF10A,(F2),2014-06-13,Throw In Occupied Dwell,Risk of Recidivism,10,High,2013-05-21,Risk of Violence,10,High,2013-05-21,,,17,0,388,1,1,1\r\n6101,leung fong-aguilar,leung,fong-aguilar,2013-08-21,Male,1988-09-11,27,25 - 45,Caucasian,0,2,0,0,0,-1,2013-08-20 10:24:22,2013-08-21 07:44:13,13015840MM10A,2013-08-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-21,Risk of Violence,2,Low,2013-08-21,2013-08-20,2013-08-21,0,0,954,0,0,0\r\n6105,jarvis jones,jarvis,jones,2013-10-10,Male,1987-03-24,29,25 - 45,African-American,0,2,0,0,4,-1,2013-10-09 04:48:19,2013-10-10 08:39:57,13014181CF10A,2013-10-09,,1,F,Felony Driving While Lic Suspd,1,16000978CF10A,(F3),0,2016-01-23,Use of Anti-Shoplifting Device,2016-01-23,2016-01-24,,0,,,,,Risk of Recidivism,2,Low,2013-10-10,Risk of Violence,2,Low,2013-10-10,2014-03-21,2014-03-22,4,0,162,0,0,0\r\n6106,derrius davis,derrius,davis,2013-08-24,Male,1988-08-20,27,25 - 45,African-American,0,6,0,0,7,-1,2013-08-23 11:30:37,2013-08-28 03:25:56,13011893CF10A,2013-08-23,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-24,Risk of Violence,4,Low,2013-08-24,2013-08-23,2013-08-28,7,4,951,0,0,0\r\n6107,yaneia camejogarzon,yaneia,camejogarzon,2014-01-01,Female,1991-08-14,24,Less than 25,Caucasian,0,8,0,0,0,-1,2013-12-31 05:48:21,2014-01-02 03:47:34,14000021CF10A,2013-12-31,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-01-01,Risk of Violence,5,Medium,2014-01-01,2015-03-17,2015-03-24,0,1,440,0,0,0\r\n6109,tristan fernandez,tristan,fernandez,2013-09-11,Male,1995-08-11,20,Less than 25,Caucasian,0,3,0,0,0,-1,2013-09-10 10:25:50,2013-09-11 01:42:53,13012788CF10A,2013-09-10,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-11,Risk of Violence,6,Medium,2013-09-11,2013-09-10,2013-09-11,0,0,933,0,0,0\r\n6110,lauren emigh,lauren,emigh,2013-11-22,Female,1992-07-18,23,Less than 25,Caucasian,0,3,0,0,0,-1,2013-11-21 02:57:55,2013-11-21 09:38:19,13016183CF10A,2013-11-21,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-22,Risk of Violence,3,Low,2013-11-22,2015-05-13,2015-06-25,0,0,537,0,0,0\r\n6111,veronica talavera,veronica,talavera,2013-01-02,Female,1967-10-28,48,Greater than 45,African-American,0,1,0,0,0,0,2013-01-02 02:49:09,2013-01-02 07:16:44,13000133MM10A,2013-01-02,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-02,Risk of Violence,1,Low,2013-01-02,2013-01-02,2013-01-02,0,0,1185,0,0,0\r\n6114,shannon clark,shannon,clark,2013-08-21,Female,1974-11-01,41,25 - 45,Caucasian,0,5,0,0,3,-1,2013-08-20 06:27:59,2013-08-21 09:19:32,13011676CF10A,2013-08-20,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-21,Risk of Violence,2,Low,2013-08-21,2013-08-20,2013-08-21,3,0,954,0,0,0\r\n6118,denise lefebvre,denise,lefebvre,2014-01-17,Female,1961-09-11,54,Greater than 45,Caucasian,0,5,0,0,7,-98,2013-10-11 10:08:29,2013-10-31 12:19:48,92019087CF10A,,2013-10-11,98,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-17,Risk of Violence,2,Low,2014-01-17,2013-10-11,2013-10-31,7,0,805,0,0,0\r\n6119,shantavia robinson,shantavia,robinson,2013-04-09,Female,1990-07-02,25,25 - 45,African-American,0,10,0,0,5,,,,12005762MM10A,2012-03-16,,389,M,Trespass Structure/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-09,Risk of Violence,9,High,2013-04-09,,,5,0,1088,0,0,0\r\n6123,briana angelini,briana,angelini,2013-12-20,Female,1994-03-03,22,Less than 25,Caucasian,0,3,0,0,2,-1,2013-12-19 08:49:18,2013-12-20 07:52:14,13017517CF10A,,2013-12-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-20,Risk of Violence,4,Low,2013-12-20,2013-12-19,2013-12-20,2,0,833,0,0,0\r\n6125,jocelyn ducardy,jocelyn,ducardy,2014-03-24,Male,1984-02-22,32,25 - 45,African-American,0,1,0,0,7,-1,2014-03-23 09:07:04,2014-03-24 02:30:02,14004092CF10A,2014-03-23,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-24,Risk of Violence,1,Low,2014-03-24,2014-03-23,2014-03-24,7,0,739,0,0,0\r\n6127,ray lambert,ray,lambert,2013-10-28,Male,1971-09-19,44,25 - 45,African-American,0,1,0,0,0,-1,2013-10-27 03:36:19,2013-10-29 04:11:32,13020339MM10A,2013-10-27,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-28,Risk of Violence,1,Low,2013-10-28,2015-03-04,2015-03-06,0,1,492,0,0,0\r\n6129,venorrice wells,venorrice,wells,2013-08-22,Male,1987-10-11,28,25 - 45,African-American,0,1,0,0,1,-90,2013-05-24 09:25:40,2013-07-12 01:01:04,13007436CF10A,2013-05-24,,90,F,Burglary Conveyance Assault/Bat,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-22,Risk of Violence,2,Low,2013-08-22,2013-05-24,2013-07-12,1,0,953,0,0,0\r\n6131,leroy rolle,leroy,rolle,2013-12-15,Male,1956-02-08,60,Greater than 45,African-American,0,1,0,0,3,-1,2013-12-14 11:18:05,2013-12-15 08:36:52,13023183MM10A,2013-12-14,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-15,Risk of Violence,1,Low,2013-12-15,2013-12-14,2013-12-15,3,0,838,0,0,0\r\n6133,joseph suarez,joseph,suarez,2013-02-13,Male,1967-02-06,49,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-13 12:43:40,2013-02-13 07:55:01,13002177CF10A,2013-02-12,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2013-02-13,2013-02-13,0,0,1143,0,0,0\r\n6134,christopher jones,christopher,jones,2013-09-30,Male,1983-08-04,32,25 - 45,African-American,0,4,0,0,9,-59,2013-08-02 03:29:13,2013-09-28 07:20:42,13010912CF10A,2013-08-01,,60,F,Robbery W/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-30,Risk of Violence,3,Low,2013-09-30,2013-08-02,2013-09-28,9,0,914,0,0,0\r\n6135,james francois,james,francois,2013-09-18,Male,1986-01-03,30,25 - 45,African-American,0,4,0,0,10,0,2013-09-18 03:06:31,2013-09-20 01:52:58,13017795MM10A,2013-09-18,,0,M,Battery,1,13021228MM10A,(M1),0,2013-11-11,Possess Cannabis/20 Grams Or Less,2013-11-11,2013-11-13,,1,14007748MM10A,(M1),2014-05-11,Battery,Risk of Recidivism,4,Low,2013-09-18,Risk of Violence,5,Medium,2013-09-18,2013-11-11,2013-11-13,10,2,54,1,1,1\r\n6137,jesse teplicki,jesse,teplicki,2013-01-16,Male,1964-04-16,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-15 03:54:42,2013-01-16 04:51:43,13000693CF10A,2013-01-15,,1,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-16,Risk of Violence,1,Low,2013-01-16,2013-01-15,2013-01-16,0,0,1171,0,0,0\r\n6139,latavia bertrane,latavia,bertrane,2014-02-22,Female,1988-12-20,27,25 - 45,African-American,0,10,0,0,1,,,,11005752CF10A,2011-04-03,,1056,M,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-02-22,Risk of Violence,9,High,2014-02-22,,,1,0,769,0,0,0\r\n6140,james gefrard,james,gefrard,2014-01-13,Male,1981-12-24,34,25 - 45,African-American,0,10,0,0,0,-1,2014-01-12 09:56:37,2014-01-14 01:14:37,14000523CF10A,2014-01-12,,1,F,Poss Wep Conv Felon,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-13,Risk of Violence,9,High,2014-01-13,2014-01-12,2014-01-14,0,1,809,0,0,0\r\n6143,gerard mariney,gerard,mariney,2013-05-11,Male,1960-12-12,55,Greater than 45,African-American,0,4,0,0,5,-1,2013-05-10 11:31:10,2013-05-14 01:32:21,13006732CF10A,2013-05-10,,1,F,Felony Battery w/Prior Convict,1,13011138MM10A,(M1),1,2013-06-09,Viol Pretrial Release Dom Viol,2013-06-10,2013-07-25,,1,14000515MM10A,(M1),2014-01-10,Battery,Risk of Recidivism,4,Low,2013-05-11,Risk of Violence,1,Low,2013-05-11,2013-05-10,2013-05-14,5,3,29,1,1,1\r\n6145,derek williams,derek,williams,2013-09-06,Male,1978-08-29,37,25 - 45,African-American,0,6,0,0,6,,,,12004489MM10A,2012-03-03,,552,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-06,Risk of Violence,5,Medium,2013-09-06,2005-12-08,2006-09-04,6,0,938,0,0,0\r\n6146,marc jean,marc,jean,2013-02-19,Male,1982-09-29,33,25 - 45,African-American,0,7,0,0,0,-1,2013-02-18 06:09:43,2013-02-19 01:30:31,13004166MM10A,2013-02-18,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-19,Risk of Violence,7,Medium,2013-02-19,2013-02-18,2013-02-19,0,0,1137,0,0,0\r\n6148,nicole pratt,nicole,pratt,2013-05-01,Female,1989-02-05,27,25 - 45,African-American,0,2,0,0,0,0,2013-05-01 05:32:30,2013-05-02 12:23:41,13008466MM10A,2013-05-01,,0,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2013-05-01,2013-05-02,0,1,1066,0,0,0\r\n6150,virgina tongyai,virgina,tongyai,2013-04-19,Male,1982-11-13,33,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-18 03:40:20,2013-06-11 01:18:17,13005554CF10A,2013-04-18,,1,F,Burglary Assault/Battery Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-19,Risk of Violence,2,Low,2013-04-19,2013-04-18,2013-06-11,0,53,1078,0,0,0\r\n6152,arrington montgomery,arrington,montgomery,2014-02-05,Male,1989-11-22,26,25 - 45,African-American,0,2,0,0,0,-1,2014-02-04 03:22:51,2014-02-06 09:10:51,14001958MM10A,2014-02-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-05,Risk of Violence,2,Low,2014-02-05,2014-02-04,2014-02-06,0,1,786,0,0,0\r\n6153,teras hope,teras,hope,2013-02-11,Male,1986-11-29,29,25 - 45,African-American,0,5,0,0,0,-1,2013-02-10 08:16:13,2013-02-12 05:23:27,13002935MM10A,2013-02-10,,1,M,DWLS Canceled Disqul 1st Off,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-11,Risk of Violence,2,Low,2013-02-11,2013-02-10,2013-02-12,0,1,1145,0,0,0\r\n6154,steve marcelin,steve,marcelin,2013-02-25,Male,1983-09-22,32,25 - 45,African-American,0,3,0,0,1,0,2013-02-25 06:09:27,2013-02-25 07:08:19,13003938MM10A,2013-02-25,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-25,Risk of Violence,4,Low,2013-02-25,2013-02-25,2013-02-25,1,0,1131,0,0,0\r\n6156,matthew graf,matthew,graf,2013-02-09,Male,1978-08-13,37,25 - 45,Caucasian,0,1,0,0,4,0,2013-02-09 12:56:56,2013-02-10 08:05:29,13002922MM10A,2013-02-09,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-09,Risk of Violence,1,Low,2013-02-09,2013-02-09,2013-02-10,4,1,1147,0,0,0\r\n6159,kenneth thomas,kenneth,thomas,2013-02-24,Male,1984-07-06,31,25 - 45,African-American,0,10,0,0,15,0,2013-02-24 02:24:03,2013-06-08 03:36:28,12015649CF10A,,2013-02-24,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-24,Risk of Violence,7,Medium,2013-02-24,2014-06-16,2014-06-16,15,104,477,0,0,0\r\n6161,michael marti,michael,marti,2013-04-06,Male,1984-08-13,31,25 - 45,African-American,0,4,0,0,6,0,2013-04-06 05:10:18,2013-05-17 06:20:04,12013508CF10A,,2013-04-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-06,Risk of Violence,2,Low,2013-04-06,2013-11-06,2013-12-12,6,41,214,0,0,0\r\n6162,summer sands,summer,sands,2013-11-13,Female,1980-03-07,36,25 - 45,Caucasian,0,3,0,0,2,-1,2013-11-12 12:13:54,2013-11-14 09:49:20,13015714CF10A,2013-11-12,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-13,Risk of Violence,3,Low,2013-11-13,2013-11-12,2013-11-14,2,1,870,0,0,0\r\n6163,rashon king,rashon,king,2013-12-01,Male,1980-05-04,35,25 - 45,African-American,0,6,0,0,4,-309,2013-01-26 01:59:45,2013-02-01 09:53:09,13021716MO10A,2013-11-11,,20,M,Poss Of Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-01,Risk of Violence,7,Medium,2013-12-01,2013-01-26,2013-02-01,4,0,852,0,0,0\r\n6164,thaffi wilson,thaffi,wilson,2014-02-24,Female,1978-10-19,37,25 - 45,African-American,0,1,0,0,1,-11,2014-02-13 01:39:00,2014-02-22 01:33:17,14002070CF10A,2014-02-13,,11,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-13,2014-02-22,1,0,767,0,0,0\r\n6165,patrick burrows,patrick,burrows,2013-04-20,Male,1981-10-31,34,25 - 45,Caucasian,0,2,0,0,5,-1,2013-04-19 03:20:12,2013-04-25 05:18:59,13007855MM10A,2013-03-08,,43,M,Petit Theft,1,13001415MM20A,(M2),,2013-05-17,Petit Theft,,,,1,15016210CF10A,(F2),2015-12-19,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,2,Low,2013-04-20,Risk of Violence,4,Low,2013-04-20,2013-04-19,2013-04-25,5,5,27,1,1,1\r\n6167,kim hopkins,kim,hopkins,2013-09-11,Female,1965-05-04,50,Greater than 45,African-American,0,6,0,0,12,316,2014-07-24 11:59:36,2015-10-02 09:23:38,12024138MM10A,2012-11-26,,289,M,Battery,1,14010110CF10A,(F3),0,2014-07-24,Tampering With Physical Evidence,2014-07-24,2015-10-02,,1,14010110CF10A,(F2),2014-07-24,Attempt Murder in the First Degree,Risk of Recidivism,6,Medium,2013-09-11,Risk of Violence,3,Low,2013-09-11,2014-07-24,2015-10-02,12,0,316,1,1,1\r\n6171,felisha jones,felisha,jones,2013-06-21,Female,1971-01-17,45,Greater than 45,African-American,0,1,0,0,1,-4,2013-06-17 11:22:11,2013-06-20 09:23:01,13008542CF10A,2013-06-17,,4,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-21,Risk of Violence,1,Low,2013-06-21,2013-06-17,2013-06-20,1,0,1015,0,0,0\r\n6173,cephus melton,cephus,melton,2013-03-04,Male,1945-11-12,70,Greater than 45,African-American,0,1,0,0,0,-1,2013-03-03 05:55:08,2013-03-04 07:31:12,13004314MM10A,2013-03-03,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-03-03,2013-03-04,0,0,1124,0,0,0\r\n6175,ronald mccloud,ronald,mccloud,2013-08-23,Male,1989-10-25,26,25 - 45,African-American,0,4,0,0,2,607,2015-04-22 04:27:32,2015-05-29 09:39:22,10011424CF10A,,2010-06-23,1157,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-23,Risk of Violence,4,Low,2013-08-23,2015-04-22,2015-05-29,2,0,607,0,0,0\r\n6177,patrick frazier,patrick,frazier,2014-01-15,Male,1993-01-12,23,Less than 25,African-American,1,9,0,0,4,-1,2014-01-14 03:17:08,2014-01-17 03:58:38,13017444CF10A,,2014-01-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-15,Risk of Violence,9,High,2014-01-15,2015-05-26,2015-06-02,4,2,496,0,0,0\r\n6178,jonathan cooper,jonathan,cooper,2014-01-02,Male,1989-01-05,27,25 - 45,Caucasian,0,4,0,0,5,-12,2013-12-21 05:45:16,2013-12-23 06:49:08,14006947TC10A,2013-12-21,,12,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-02,Risk of Violence,3,Low,2014-01-02,2013-12-21,2013-12-23,5,0,820,0,0,0\r\n6180,antonio rivera,antonio,rivera,2013-01-18,Male,1993-04-17,23,Less than 25,African-American,0,3,0,0,2,334,2013-12-18 06:29:40,2014-03-28 12:09:52,12017929CF10A,,2013-01-18,0,M,arrest case no charge,1,13016098CF10A,(F2),59,2013-10-20,Robbery / No Weapon,2013-12-18,2014-03-28,,1,13016098CF10A,(F2),2013-10-20,Robbery / No Weapon,Risk of Recidivism,3,Low,2013-01-18,Risk of Violence,4,Low,2013-01-18,2015-02-16,2015-03-04,2,0,275,1,1,1\r\n6182,nicholas lindsey,nicholas,lindsey,2013-02-26,Male,1989-10-11,26,25 - 45,African-American,0,5,0,0,0,-1,2013-02-25 09:12:24,2013-02-26 06:38:57,13003930MM10A,2013-02-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-26,Risk of Violence,3,Low,2013-02-26,2015-02-27,2015-02-28,0,0,731,0,0,0\r\n6183,alexis baldinger,alexis,baldinger,2013-03-07,Female,1992-07-05,23,Less than 25,Caucasian,0,6,0,0,2,-1,2013-03-06 09:57:15,2013-03-07 07:12:13,13004534MM10A,2013-03-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-07,Risk of Violence,4,Low,2013-03-07,2013-03-06,2013-03-07,2,0,1121,0,0,0\r\n6189,mireya cuevas,mireya,cuevas,2013-01-14,Female,1970-01-05,46,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-01-13 01:54:20,2013-02-07 08:44:30,13000609CF10A,2013-01-12,,2,F,Felony Batt(Great Bodily Harm),1,16000872MM10A,(M1),0,2016-01-25,Battery,2016-01-25,2016-01-26,,1,16000872MM10A,(M1),2016-01-25,Battery,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,1,Low,2013-01-14,2016-01-25,2016-01-26,1,24,1106,1,0,0\r\n6191,ciprianna spann,ciprianna,spann,2013-05-08,Female,1988-12-08,27,25 - 45,African-American,1,5,0,0,1,0,2013-05-08 10:06:06,2013-06-04 06:24:40,08003834CF10A,,2013-05-08,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-08,Risk of Violence,4,Low,2013-05-08,2013-05-08,2013-06-04,1,27,1059,0,0,0\r\n6192,brad thompson,brad,thompson,2013-02-21,Male,1970-09-12,45,Greater than 45,Caucasian,0,2,0,0,7,-1,2013-02-20 05:56:15,2013-02-21 07:41:49,13004702CF10A,2013-02-20,,1,F,Felony Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-21,Risk of Violence,2,Low,2013-02-21,2013-02-20,2013-02-21,7,0,1135,0,0,0\r\n6193,antwain smith,antwain,smith,2013-10-21,Male,1973-12-27,42,25 - 45,African-American,0,5,0,0,1,-12,2013-10-09 12:43:56,2013-10-17 09:27:59,01007205MM10A,,2013-10-09,12,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-21,Risk of Violence,2,Low,2013-10-21,2013-10-09,2013-10-17,1,0,893,0,0,0\r\n6198,richard fiora,richard,fiora,2013-09-24,Male,1966-12-22,49,Greater than 45,Caucasian,0,4,0,0,3,0,2013-09-24 02:46:20,2013-09-24 07:16:50,13013433CF10A,2013-09-24,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-24,Risk of Violence,2,Low,2013-09-24,2014-04-10,2014-05-02,3,0,198,0,0,0\r\n6200,miguel palazuelos,miguel,palazuelos,2013-10-14,Male,1987-03-24,29,25 - 45,Hispanic,0,2,0,0,0,0,2013-10-14 05:56:17,2013-10-14 02:00:55,13014371CF10A,2013-10-14,,0,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-14,Risk of Violence,2,Low,2013-10-14,2013-10-14,2013-10-14,0,0,900,0,0,0\r\n6201,mary ledbetter,mary,ledbetter,2013-10-16,Female,1964-03-24,52,Greater than 45,Caucasian,0,1,0,0,1,-8,2013-10-08 04:39:44,2013-10-11 10:06:11,13014108CF10A,2013-10-08,,8,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-16,Risk of Violence,1,Low,2013-10-16,2013-11-21,2013-11-23,1,0,36,0,0,0\r\n6202,douglas pineda,douglas,pineda,2014-02-03,Male,1978-09-12,37,25 - 45,Hispanic,0,1,0,0,4,0,2014-02-03 03:30:54,2014-02-04 04:02:26,14001881MM10A,2014-02-03,,0,M,Battery,1,14011609TC20A,(M2),,2014-02-12,Operating W/O Valid License,,,,1,15016503CF10A,(F3),2015-12-27,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-03,2014-02-04,4,1,9,1,1,1\r\n6203,phillip frost,phillip,frost,2013-03-18,Male,1990-04-05,26,25 - 45,African-American,0,3,0,0,1,-1,2013-03-17 01:16:50,2013-03-24 03:44:00,13005218MM10A,2013-03-17,,1,M,Battery,1,15041727TC20A,(M2),,2015-07-18,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-18,Risk of Violence,4,Low,2013-03-18,2013-03-17,2013-03-24,1,6,852,1,0,0\r\n6206,marcelo silva,marcelo,silva,2014-01-23,Male,1968-06-04,47,Greater than 45,Hispanic,0,1,0,0,1,-27,2013-12-27 08:28:22,2014-01-13 09:12:03,10014588CF10A,,2013-12-27,27,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-23,Risk of Violence,1,Low,2014-01-23,2013-12-27,2014-01-13,1,0,799,0,0,0\r\n6208,jodarian warner,jodarian,warner,2013-01-11,Male,1991-02-19,25,25 - 45,African-American,0,6,0,0,1,0,2013-01-11 12:35:37,2013-01-11 01:14:09,13000430CF10A,2013-01-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-11,Risk of Violence,6,Medium,2013-01-11,2013-01-11,2013-01-11,1,0,1176,0,0,0\r\n6210,jeffrey orys,jeffrey,orys,2014-07-28,Male,1994-05-24,21,Less than 25,African-American,1,10,0,0,1,-1,2014-07-27 08:09:50,2014-08-02 04:56:49,14010231CF10A,2014-07-27,,1,F,Burglary Conveyance Unoccup,1,14014010CF10A,(F3),0,2014-10-17,Tampering With Physical Evidence,2014-10-17,2015-02-24,,1,14014010CF10A,(F3),2014-10-17,Robbery Sudd Snatch No Weapon,Risk of Recidivism,10,High,2014-07-28,Risk of Violence,9,High,2014-07-28,2014-10-17,2015-02-24,1,5,81,1,1,1\r\n6212,mark murray,mark,murray,2013-03-30,Male,1968-02-10,48,Greater than 45,African-American,0,1,0,0,0,0,2013-03-30 03:01:12,2013-03-31 06:57:38,13006154MM10A,2013-03-30,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-30,Risk of Violence,1,Low,2013-03-30,2013-03-30,2013-03-31,0,1,1098,0,0,0\r\n6213,joanna english,joanna,english,2013-03-20,Female,1976-04-06,40,25 - 45,Caucasian,0,2,0,0,1,-55,2013-01-24 11:43:37,2013-01-25 08:58:42,13001192CF10A,2013-01-24,,55,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-10-06,2013-10-06,1,0,200,0,0,0\r\n6215,jamielle whittaker,jamielle,whittaker,2013-12-17,Female,1992-02-28,24,Less than 25,Other,0,3,0,0,0,-1,2013-12-16 08:36:34,2013-12-17 09:48:55,13017373CF10A,2013-12-16,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-17,Risk of Violence,3,Low,2013-12-17,2013-12-16,2013-12-17,0,0,836,0,0,0\r\n6216,kenneth haggins,kenneth,haggins,2013-04-20,Male,1993-04-21,22,Less than 25,African-American,0,4,0,0,0,-1,2013-04-19 11:29:08,2013-04-20 01:45:16,13005629CF10A,2013-04-19,,1,F,Burglary Dwelling Occupied,1,14002519CF10A,(F3),0,2014-02-22,Possession of Cannabis,2014-02-22,2014-02-23,,1,15011072MM10A,(M1),2015-10-01,Battery,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,5,Medium,2013-04-20,2014-02-22,2014-02-23,0,0,308,1,1,1\r\n6219,robert coleman,robert,coleman,2013-03-28,Male,1980-01-25,36,25 - 45,African-American,0,8,0,0,4,,,,11028234MM10A,,2013-03-27,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-28,Risk of Violence,5,Medium,2013-03-28,,,4,0,1100,0,0,0\r\n6221,kenneth scott,kenneth,scott,2013-01-22,Male,1977-10-30,38,25 - 45,Caucasian,0,2,0,0,2,0,2013-01-22 02:44:16,2013-02-19 08:46:07,13001490MM10A,2013-01-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-22,Risk of Violence,1,Low,2013-01-22,2015-01-09,2015-01-09,2,28,717,0,0,0\r\n6223,leroy bailey,leroy,bailey,2013-10-22,Male,1961-05-15,54,Greater than 45,Other,0,1,0,0,2,-1,2013-10-21 09:41:20,2013-10-22 08:05:35,13019946MM10A,2013-10-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-21,2013-10-22,2,0,892,0,0,0\r\n6224,isaac salmeronoliva,isaac,salmeronoliva,2013-01-21,Male,1991-08-06,24,Less than 25,Hispanic,0,4,0,0,1,0,2013-01-21 11:48:52,2013-02-01 08:09:36,13000972CF10A,,2013-01-21,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-21,Risk of Violence,4,Low,2013-01-21,2013-01-21,2013-02-01,1,11,1166,0,0,0\r\n6226,katherine pugliese,katherine,pugliese,2013-04-08,Female,1972-03-05,44,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-07 09:28:33,2013-04-08 08:23:11,13006658MM10A,2013-04-07,,1,M,Disorderly Conduct,1,14005177CF10A,(M2),1,2014-04-12,Criminal Mischief Damage <$200,2014-04-13,2014-06-20,,1,14005177CF10A,(M1),2014-04-12,Battery,Risk of Recidivism,1,Low,2013-04-08,Risk of Violence,1,Low,2013-04-08,2015-05-24,2015-06-27,0,0,369,1,1,1\r\n6228,kevin watrous,kevin,watrous,2013-10-30,Male,1952-03-22,64,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-29 11:55:33,2013-10-30 08:18:51,13020467MM10A,2013-10-29,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2013-10-29,2013-10-30,0,0,884,0,0,0\r\n6230,julietta gustave,julietta,gustave,2013-08-19,Female,1970-11-04,45,Greater than 45,Other,0,1,0,0,0,-1,2013-08-18 09:01:18,2013-08-19 08:01:53,13015663MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-19,0,0,956,0,0,0\r\n6231,torrence howard,torrence,howard,2013-10-10,Male,1966-07-31,49,Greater than 45,African-American,0,5,0,0,1,-1,2013-10-09 04:35:47,2013-10-14 09:00:33,13014180CF10A,2013-10-09,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-10,Risk of Violence,6,Medium,2013-10-10,2013-10-09,2013-10-14,1,4,904,0,0,0\r\n6234,delvea crew,delvea,crew,2013-08-01,Female,1971-02-20,45,Greater than 45,African-American,0,7,0,0,3,,,,95012273CF10A,1995-07-13,,6594,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-01,Risk of Violence,2,Low,2013-08-01,,,3,0,974,0,0,0\r\n6236,phat huynh,phat,huynh,2014-03-02,Male,1982-09-13,33,25 - 45,Asian,0,1,0,0,0,-1,2014-03-01 11:10:20,2014-03-02 07:53:27,14003542MM10A,2014-03-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-02,Risk of Violence,1,Low,2014-03-02,2014-03-01,2014-03-02,0,0,761,0,0,0\r\n6238,raymond martinez,raymond,martinez,2013-03-29,Male,1971-12-09,44,25 - 45,Hispanic,0,2,0,0,2,-1,2013-03-28 05:17:58,2013-03-29 09:19:00,13004500CF10A,2013-03-28,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-29,Risk of Violence,1,Low,2013-03-29,2013-03-28,2013-03-29,2,0,1099,0,0,0\r\n6239,winston stanley,winston,stanley,2013-09-10,Male,1964-12-28,51,Greater than 45,African-American,0,1,0,0,3,-1,2013-09-09 08:22:20,2013-09-12 08:28:20,13012748CF10A,,2013-09-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-09,2013-09-12,3,2,934,0,0,0\r\n6240,william jamison,william,jamison,2013-01-27,Male,1965-10-07,50,Greater than 45,African-American,0,1,0,0,0,0,2013-01-27 03:37:16,2013-01-28 02:50:27,13001318CF10A,2013-01-27,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-27,Risk of Violence,1,Low,2013-01-27,2014-03-05,2014-03-09,0,1,402,0,0,0\r\n6241,jason cousino,jason,cousino,2013-10-11,Male,1982-12-29,33,25 - 45,Caucasian,0,2,2,0,2,-22,2013-09-19 09:34:52,2013-10-11 06:19:13,13017888MM10A,2013-09-19,,22,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-11,Risk of Violence,2,Low,2013-10-11,2013-09-19,2013-10-11,2,0,903,0,0,0\r\n6242,josefa opert,josefa,opert,2014-01-16,Female,1962-01-29,54,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-15 02:16:34,2014-02-14 01:29:00,14000766MM10A,2014-01-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-16,Risk of Violence,1,Low,2014-01-16,2014-01-15,2014-02-14,0,29,806,0,0,0\r\n6245,michael ciriago,michael,ciriago,2014-02-20,Male,1982-09-23,33,25 - 45,Caucasian,0,9,0,1,14,-78,2013-12-04 09:02:14,2014-02-12 11:17:42,13016873CF10A,,2013-12-04,78,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-20,Risk of Violence,8,High,2014-02-20,2014-11-25,2014-12-06,14,0,278,0,0,0\r\n6248,scott jimison,scott,jimison,2013-10-23,Male,1981-08-05,34,25 - 45,Caucasian,0,1,0,0,3,-1,2013-10-22 09:14:51,2013-10-23 11:28:30,13014740CF10A,2013-10-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-23,Risk of Violence,1,Low,2013-10-23,2013-10-22,2013-10-23,3,0,891,0,0,0\r\n6250,kalif fletcher,kalif,fletcher,2013-01-17,Male,1994-06-07,21,Less than 25,African-American,0,9,0,0,1,-1,2013-01-16 04:32:53,2013-01-17 07:40:18,13000768CF10A,2013-01-16,,1,F,Bribery Athletic Contests,1,13008535MM10A,(M1),1,2013-05-02,Resist/Obstruct W/O Violence,2013-05-03,2013-05-04,,1,13016054CF10A,(M2),2013-11-19,Assault,Risk of Recidivism,9,High,2013-01-17,Risk of Violence,8,High,2013-01-17,2015-08-08,2015-09-21,1,0,105,1,1,1\r\n6251,kenson jeanpierre,kenson,jeanpierre,2013-10-05,Male,1982-10-06,33,25 - 45,African-American,0,4,0,0,5,0,2013-10-05 12:47:51,2013-10-05 07:14:01,13013964CF10A,2013-10-04,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-05,Risk of Violence,2,Low,2013-10-05,2013-10-05,2013-10-05,5,0,909,0,0,0\r\n6256,johnny jones,johnny,jones,2013-01-24,Male,1983-10-13,32,25 - 45,African-American,0,7,0,1,9,-1,2013-01-23 08:51:29,2013-02-15 09:20:28,11017426MM10A,,2013-01-23,1,M,arrest case no charge,1,13020739MM10A,(M1),1,2013-09-24,Resist/Obstruct W/O Violence,2013-09-25,2013-09-25,,1,15007306MM10A,(M1),2015-05-07,Battery,Risk of Recidivism,7,Medium,2013-01-24,Risk of Violence,4,Low,2013-01-24,2013-01-23,2013-02-15,9,22,243,1,1,1\r\n6259,nicholas satterfield,nicholas,satterfield,2014-01-01,Male,1970-06-26,45,Greater than 45,Caucasian,0,1,0,0,1,0,2014-01-01 03:58:45,2014-01-02 12:15:31,14000050MM10A,2014-01-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-01,Risk of Violence,1,Low,2014-01-01,2014-01-01,2014-01-02,1,1,821,0,0,0\r\n6264,nikki howard,nikki,howard,2014-02-13,Female,1986-11-12,29,25 - 45,African-American,0,10,0,0,0,-1,2014-02-12 09:29:02,2014-02-14 05:18:35,14002005CF10A,2014-02-12,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-02-13,Risk of Violence,7,Medium,2014-02-13,2014-02-12,2014-02-14,0,1,778,0,0,0\r\n6266,steven hill,steven,hill,2013-05-04,Male,1971-08-02,44,25 - 45,African-American,0,3,0,0,3,-86,2013-02-07 01:19:01,2013-02-08 06:24:09,13021431TC10A,2013-05-03,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2013-02-07,2013-02-08,3,0,1063,0,0,0\r\n6268,brittany woodard,brittany,woodard,2014-01-29,Female,1988-03-22,28,25 - 45,African-American,0,3,0,0,0,-1,2014-01-28 10:38:19,2014-01-29 02:13:39,14001234CF10A,2014-01-28,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-29,Risk of Violence,3,Low,2014-01-29,2014-01-28,2014-01-29,0,0,793,0,0,0\r\n6271,arthur fogel,arthur,fogel,2014-01-01,Male,1989-03-10,27,25 - 45,Caucasian,0,3,0,0,1,-1,2013-12-31 09:37:13,2014-01-01 08:36:34,14000025CF10A,2013-12-31,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-01,Risk of Violence,2,Low,2014-01-01,2013-12-31,2014-01-01,1,0,821,0,0,0\r\n6278,chianti white,chianti,white,2014-03-25,Female,1985-06-06,30,25 - 45,African-American,0,2,0,0,0,0,2014-03-25 12:40:00,2014-03-25 09:14:31,14004158CF10A,2014-03-24,,1,F,Grand Theft on 65 Yr or Older,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-25,Risk of Violence,3,Low,2014-03-25,2014-03-25,2014-03-25,0,0,738,0,0,0\r\n6280,christopher guyer,christopher,guyer,2013-04-11,Male,1983-07-06,32,25 - 45,African-American,0,7,0,0,0,-1,2013-04-10 09:50:36,2013-04-12 06:00:18,13006970MM10A,2013-04-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-11,Risk of Violence,2,Low,2013-04-11,2013-04-10,2013-04-12,0,1,1086,0,0,0\r\n6281,john smith,john,smith,2013-08-23,Male,1988-11-18,27,25 - 45,Caucasian,0,4,0,0,5,-1,2013-08-22 10:46:01,2013-08-23 08:10:56,13011811CF10A,2013-08-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-23,Risk of Violence,3,Low,2013-08-23,2013-08-22,2013-08-23,5,0,952,0,0,0\r\n6283,carla silva,carla,silva,2013-09-23,Female,1954-03-01,62,Greater than 45,Other,0,-1,0,0,1,-2,2013-09-21 10:16:36,2013-09-22 01:50:26,13013329CF10A,2013-09-21,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,-1,N/A,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-21,2013-09-22,1,0,921,0,0,0\r\n6284,vestin madaire,vestin,madaire,2013-05-14,Male,1995-03-11,21,Less than 25,African-American,0,5,0,0,0,-1,2013-05-13 07:56:26,2013-05-15 01:24:31,13006837CF10A,2013-05-13,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-14,Risk of Violence,7,Medium,2013-05-14,2015-03-17,2015-03-24,0,1,672,0,0,0\r\n6287,walter rojas,walter,rojas,2013-04-08,Male,1984-04-13,32,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-07 07:03:09,2013-04-26 08:49:05,13006645MM10A,2013-04-07,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-08,Risk of Violence,1,Low,2013-04-08,2013-04-07,2013-04-26,0,18,1089,0,0,0\r\n6292,alvin farquharson,alvin,farquharson,2014-02-13,Male,1959-09-21,56,Greater than 45,African-American,0,1,0,0,3,-28,2014-01-16 12:26:12,2014-01-31 09:03:56,13007787MM10A,,2014-01-16,28,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-13,Risk of Violence,1,Low,2014-02-13,2014-01-16,2014-01-31,3,0,778,0,0,0\r\n6293,yolette comete,yolette,comete,2013-02-23,Female,1971-04-26,44,25 - 45,African-American,0,1,0,0,0,-1,2013-02-22 01:00:39,2013-02-23 08:11:29,13003758MM10A,2013-02-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-23,0,0,1133,0,0,0\r\n6297,brenda gonzalez,brenda,gonzalez,2013-05-21,Female,1991-01-19,25,25 - 45,Caucasian,0,7,0,0,6,-1,2013-05-20 07:27:50,2013-06-14 04:06:44,12015023CF10A,,2013-05-21,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-21,Risk of Violence,4,Low,2013-05-21,2013-05-20,2013-06-14,6,24,1046,0,0,0\r\n6299,ashanna simms,ashanna,simms,2013-09-10,Female,1995-06-27,20,Less than 25,African-American,0,5,0,0,0,-1,2013-09-09 08:08:27,2013-09-10 07:49:28,13017201MM10A,2013-09-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-10,Risk of Violence,7,Medium,2013-09-10,2013-09-09,2013-09-10,0,0,934,0,0,0\r\n6300,george snellturner,george,snellturner,2014-01-02,Male,1980-09-29,35,25 - 45,African-American,0,5,0,0,1,-1,2014-01-01 11:50:43,2014-01-03 01:39:37,02001473MM30A,2002-04-23,,4272,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-02,Risk of Violence,5,Medium,2014-01-02,2014-01-01,2014-01-03,1,1,820,0,0,0\r\n6302,micheal brown,micheal,brown,2014-02-02,Male,1992-03-29,24,Less than 25,African-American,0,3,0,0,0,-1,2014-02-01 03:37:21,2014-02-02 07:55:32,14001777MM10A,2014-02-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-02,Risk of Violence,4,Low,2014-02-02,2014-02-01,2014-02-02,0,0,789,0,0,0\r\n6303,zulma ramos,zulma,ramos,2013-09-30,Female,1975-04-29,40,25 - 45,Hispanic,0,2,0,0,2,-7,2013-09-23 10:17:27,2013-09-27 08:51:45,13042343TC10A,,2013-09-23,7,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-23,2013-09-27,2,0,914,0,0,0\r\n6305,kentrell sibblis,kentrell,sibblis,2014-01-15,Female,1994-09-01,21,Less than 25,African-American,0,3,0,0,2,-72,2013-11-04 02:27:29,2013-11-05 02:13:57,14000244MM30A,2014-01-03,,12,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-15,Risk of Violence,5,Medium,2014-01-15,2013-11-04,2013-11-05,2,0,807,0,0,0\r\n6312,james walton,james,walton,2014-08-06,Male,1977-06-27,38,25 - 45,African-American,0,5,0,0,9,-1,2014-08-05 07:00:13,2014-08-07 05:07:25,14010662CF10A,2014-08-05,,1,F,Grand Theft in the 3rd Degree,1,14014846MM10A,(M2),0,2014-09-10,Trespass Struct/Conveyance,2014-09-10,2014-09-11,,1,14014846MM10A,(M1),2014-09-10,Battery,Risk of Recidivism,5,Medium,2014-08-06,Risk of Violence,4,Low,2014-08-06,2014-09-10,2014-09-11,9,1,35,1,1,1\r\n6317,richard mendez,richard,mendez,2013-04-06,Male,1980-03-23,36,25 - 45,Caucasian,0,6,0,0,9,0,2013-04-06 01:15:11,2013-04-25 06:15:47,12005343CF10A,,2013-04-06,0,F,arrest case no charge,1,14005379MM10A,(M1),1,2014-03-28,Battery,2014-03-29,2014-04-10,,1,14005379MM10A,(M1),2014-03-28,Battery,Risk of Recidivism,6,Medium,2013-04-06,Risk of Violence,4,Low,2013-04-06,2013-04-25,2013-11-25,9,233,356,1,1,1\r\n6321,andrew williams,andrew,williams,2013-02-23,Male,1983-07-06,32,25 - 45,African-American,0,6,0,0,3,,,,11013722MM10A,2011-05-12,,653,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-23,Risk of Violence,3,Low,2013-02-23,2004-06-17,2007-11-05,3,0,1133,0,0,0\r\n6324,mitchell machado,mitchell,machado,2013-04-26,Male,1993-02-23,23,Less than 25,Hispanic,0,7,0,1,2,-1,2013-04-25 02:38:32,2013-05-30 09:53:56,13005930CF10A,2013-04-25,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-26,Risk of Violence,5,Medium,2013-04-26,2013-04-25,2013-05-30,2,34,1071,0,0,0\r\n6326,luis velasques,luis,velasques,2013-01-27,Male,1993-02-08,23,Less than 25,Caucasian,0,8,0,0,3,-1,2013-01-26 07:15:26,2013-02-21 09:21:04,13001862MM10A,2013-01-26,,1,M,Petit Theft,1,13005848MM10A,(M1),0,2013-03-25,Battery,2013-03-25,2013-05-23,,1,13005848MM10A,(M1),2013-03-25,Battery,Risk of Recidivism,8,High,2013-01-27,Risk of Violence,6,Medium,2013-01-27,2013-03-25,2013-05-23,3,25,57,1,1,1\r\n6328,joseph hepburn,joseph,hepburn,2013-10-21,Female,1947-06-27,68,Greater than 45,African-American,0,2,0,0,5,-4,2013-10-17 11:55:00,2013-10-18 07:57:32,13014557CF10A,2013-10-17,,4,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-21,Risk of Violence,1,Low,2013-10-21,2013-10-17,2013-10-18,5,0,893,0,0,0\r\n6330,alexandra bastante,alexandra,bastante,2013-04-23,Female,1989-09-12,26,25 - 45,Caucasian,0,5,0,0,2,0,2013-04-23 04:28:21,2013-04-23 07:38:37,13007875MM10A,2013-04-23,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-23,Risk of Violence,4,Low,2013-04-23,2013-04-23,2013-04-23,2,0,1074,0,0,0\r\n6332,mark evans,mark,evans,2014-05-23,Male,1965-03-03,51,Greater than 45,African-American,0,4,0,0,0,-1,2014-05-22 04:51:07,2014-05-23 08:08:14,14007156CF10A,2014-05-22,,1,F,Possession of Cocaine,1,14043815TC40A,(M2),,2014-06-16,Driving License Suspended,,,,1,16000727CF10A,(F3),2016-01-16,Child Abuse,Risk of Recidivism,4,Low,2014-05-23,Risk of Violence,1,Low,2014-05-23,2016-01-18,2016-01-22,0,0,24,1,1,1\r\n6335,brittany shenett,brittany,shenett,2014-02-14,Male,1991-03-18,25,25 - 45,African-American,0,2,0,0,0,-1,2014-02-13 08:49:07,2014-02-14 01:09:30,14002560MM10A,2014-02-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-14,Risk of Violence,3,Low,2014-02-14,2014-02-13,2014-02-14,0,0,777,0,0,0\r\n6337,john coleman,john,coleman,2014-02-04,Male,1964-08-14,51,Greater than 45,African-American,0,5,0,0,14,-11,2014-01-24 12:28:43,2014-02-01 10:20:54,10008126CF10A,,2014-01-24,11,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-04,Risk of Violence,2,Low,2014-02-04,2015-07-27,2015-09-10,14,0,538,0,0,0\r\n6341,wally germain-philistin,wally,germain-philistin,2014-01-22,Male,1980-01-23,36,25 - 45,Other,0,1,0,0,0,-1,2014-01-21 12:17:06,2014-01-24 03:19:22,14001013MM10A,2014-01-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-22,Risk of Violence,1,Low,2014-01-22,2014-01-21,2014-01-24,0,2,800,0,0,0\r\n6344,christopher anchia,christopher,anchia,2013-05-02,Male,1987-11-16,28,25 - 45,Caucasian,0,7,0,0,5,-76,2013-02-15 04:11:18,2013-02-21 12:49:55,12015748MM10A,,2012-10-31,183,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-02,Risk of Violence,6,Medium,2013-05-02,2015-08-31,2015-09-03,5,0,851,0,0,0\r\n6345,bryant yopp,bryant,yopp,2013-08-06,Male,1995-06-16,20,Less than 25,African-American,0,3,0,0,0,-4,2013-08-02 12:53:34,2013-08-06 10:33:58,13010785CF10A,2013-08-01,,5,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-06,Risk of Violence,6,Medium,2013-08-06,2013-08-02,2013-08-06,0,0,969,0,0,0\r\n6349,gerald mackey,gerald,mackey,2013-09-11,Female,1985-04-17,31,25 - 45,African-American,0,2,0,0,0,0,2013-09-11 02:25:29,2013-09-12 05:28:48,13012845CF10A,2013-09-10,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-11,Risk of Violence,2,Low,2013-09-11,2013-09-11,2013-09-12,0,1,933,0,0,0\r\n6353,frantz guerrier,frantz,guerrier,2013-05-27,Male,1958-08-08,57,Greater than 45,African-American,0,1,0,0,0,0,2013-05-27 01:52:05,2013-05-28 01:12:21,13010156MM10A,2013-05-27,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-05-27,2013-05-28,0,1,1040,0,0,0\r\n6356,danny diaz,danny,diaz,2014-04-04,Male,1980-05-24,35,25 - 45,Hispanic,0,1,0,0,3,-23,2014-03-12 08:21:31,2014-03-22 02:23:24,14003503CF10A,2014-03-12,,23,F,Burglary Structure Unoccup,1,15008627MM10A,(M1),0,2015-08-15,Battery,2015-08-15,2015-09-26,,1,15008627MM10A,(M1),2015-08-15,Battery,Risk of Recidivism,1,Low,2014-04-04,Risk of Violence,2,Low,2014-04-04,2015-08-15,2015-09-26,3,0,498,1,1,1\r\n6360,laura viera,laura,viera,2014-03-20,Male,1977-01-22,39,25 - 45,Caucasian,0,3,0,0,0,-1,2014-03-19 08:21:38,2014-03-20 10:14:17,14003890CF10A,2014-03-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-20,Risk of Violence,2,Low,2014-03-20,2014-03-19,2014-03-20,0,0,743,0,0,0\r\n6361,pierre breedlove,pierre,breedlove,2013-01-05,Male,1992-03-06,24,Less than 25,African-American,0,7,1,0,1,-1,2013-01-04 03:20:01,2013-02-06 10:00:42,13000178CF10A,2013-01-04,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-05,Risk of Violence,7,Medium,2013-01-05,2013-01-04,2013-02-06,1,32,1182,0,0,0\r\n6362,grace alvarado,grace,alvarado,2013-09-20,Female,1986-06-22,29,25 - 45,Hispanic,0,4,0,0,0,-1,2013-09-19 01:59:44,2013-09-20 07:48:00,13013217CF10A,2013-09-19,,1,F,Aggrav Battery w/Deadly Weapon,1,14002358TC30A,(M2),,2013-12-18,Unlaw LicTag/Sticker Attach,,,,1,15012789CF10A,(F2),2015-10-03,Agg Battery Grt/Bod/Harm,Risk of Recidivism,4,Low,2013-09-20,Risk of Violence,2,Low,2013-09-20,2015-10-03,2015-10-13,0,0,89,1,1,1\r\n6369,jason gomez,jason,gomez,2013-12-05,Male,1979-10-03,36,25 - 45,Caucasian,0,5,0,0,2,,,,09012616CF10B,,2010-08-04,1219,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-05,Risk of Violence,3,Low,2013-12-05,,,2,0,848,0,0,0\r\n6372,napoleon wilson,napoleon,wilson,2014-10-28,Male,1989-08-31,26,25 - 45,African-American,0,6,0,0,4,0,2014-10-28 01:38:25,2014-12-12 08:07:45,14014474CF10A,2014-10-27,,1,F,Burglary Dwelling Occupied,1,15007307CF10A,(M1),0,2015-06-04,Resist/Obstruct W/O Violence,2015-06-04,2015-06-20,,1,15007307CF10A,(F1),2015-06-04,Aggrav Child Abuse-Agg Battery,Risk of Recidivism,6,Medium,2014-10-28,Risk of Violence,3,Low,2014-10-28,2015-06-04,2015-06-20,4,45,219,1,1,1\r\n6376,courtney brown,courtney,brown,2013-09-20,Male,1955-07-06,60,Greater than 45,African-American,0,1,0,0,2,0,2013-09-20 12:40:56,2013-09-21 04:29:15,13013224CF10A,2013-09-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-09-20,2013-09-21,2,1,924,0,0,0\r\n6379,daniel harris,daniel,harris,2013-01-15,Male,1994-04-14,22,Less than 25,Caucasian,0,6,0,1,1,-1,2013-01-14 04:29:03,2013-01-15 01:53:43,13000646CF10A,2013-01-14,,1,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-15,Risk of Violence,7,Medium,2013-01-15,2013-04-07,2013-04-11,1,0,82,0,0,0\r\n6380,dantae sylvain,dantae,sylvain,2013-08-09,Male,1987-06-16,28,25 - 45,African-American,0,7,0,0,3,0,2013-08-09 03:57:00,2013-08-09 08:19:19,13011208CF10A,,2013-08-09,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-09,Risk of Violence,8,High,2013-08-09,2013-08-09,2013-08-09,3,0,966,0,0,0\r\n6382,eric shaw,eric,shaw,2013-01-16,Male,1987-12-14,28,25 - 45,African-American,0,2,0,0,2,-1,2013-01-15 07:30:10,2013-05-20 09:16:44,12011014CF10A,,2013-01-15,1,F,arrest case no charge,1,15012141MM10A,(M1),0,2015-11-20,Resist/Obstruct W/O Violence,2015-11-20,2015-11-20,,0,,,,,Risk of Recidivism,2,Low,2013-01-16,Risk of Violence,3,Low,2013-01-16,2013-07-05,2013-07-10,2,124,170,0,0,0\r\n6383,william walker,william,walker,2013-12-23,Male,1960-05-10,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-22 12:42:17,2013-12-22 01:00:00,13023553MM10A,2013-12-21,,2,M,Battery,1,14009604CF10A,(F3),0,2014-07-14,Felony Battery (Dom Strang),2014-07-14,2014-07-17,,1,14009604CF10A,(F3),2014-07-14,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2014-07-14,2014-07-17,0,0,203,1,1,1\r\n6386,michael mora,michael,mora,2013-03-04,Male,1988-01-22,28,25 - 45,Hispanic,0,3,0,0,2,-1,2013-03-03 10:29:13,2013-03-05 09:58:12,13003218CF10A,2013-03-03,,1,F,Kidnapping / Domestic Violence,1,14049511TC30A,(M2),,2014-05-24,Driving License Suspended,,,,1,15004727MM10A,(M1),2015-04-25,Battery,Risk of Recidivism,3,Low,2013-03-04,Risk of Violence,2,Low,2013-03-04,2013-03-03,2013-03-05,2,1,446,1,1,1\r\n6387,kimberly santiago,kimberly,santiago,2014-02-11,Female,1994-02-11,22,Less than 25,Hispanic,0,2,0,0,0,-1,2014-02-10 10:29:08,2014-02-11 01:22:50,14002284MM10A,2014-02-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-11,Risk of Violence,4,Low,2014-02-11,2014-02-10,2014-02-11,0,0,780,0,0,0\r\n6390,jean prince,jean,prince,2013-08-15,Male,1970-12-02,45,Greater than 45,African-American,0,1,0,0,5,230,2014-04-02 04:38:03,2014-04-03 09:26:00,14012353CF10A,2012-12-25,,233,F,Felony/Driving Under Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-15,Risk of Violence,1,Low,2013-08-15,2014-04-02,2014-04-03,5,0,230,0,0,0\r\n6393,markell hill,markell,hill,2014-05-18,Male,1991-05-03,24,Less than 25,African-American,0,6,0,0,1,-1,2014-05-17 11:21:14,2014-05-19 03:52:52,14008029MM10A,2014-05-17,,1,M,Battery,1,15009770CF10A,(F3),6,2015-07-23,Robbery Sudd Snatch No Weapon,2015-07-29,2015-11-20,,1,15009770CF10A,(F3),2015-07-23,Robbery Sudd Snatch No Weapon,Risk of Recidivism,6,Medium,2014-05-18,Risk of Violence,6,Medium,2014-05-18,2014-05-17,2014-05-19,1,1,431,1,1,1\r\n6394,gary payne,gary,payne,2013-01-22,Male,1968-07-26,47,Greater than 45,African-American,0,2,0,0,1,-1,2013-01-21 05:34:28,2013-03-12 01:00:34,97011469CF10A,,2013-01-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-22,Risk of Violence,3,Low,2013-01-22,2013-01-21,2013-03-12,1,49,1165,0,0,0\r\n6395,victorino perrone,victorino,perrone,2013-08-27,Male,1959-03-13,57,Greater than 45,Caucasian,0,1,0,0,1,,,,09000226MM10A,2009-01-03,,1697,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,,,1,0,948,0,0,0\r\n6396,bobby cook,bobby,cook,2013-03-15,Male,1961-08-29,54,Greater than 45,Caucasian,0,1,0,0,6,0,2013-03-15 01:04:54,2013-03-16 01:02:43,13003830CF10A,2013-03-15,,0,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-15,Risk of Violence,1,Low,2013-03-15,2013-03-15,2013-03-16,6,1,1113,0,0,0\r\n6398,claudia campos,claudia,campos,2013-03-28,Female,1973-12-03,42,25 - 45,Caucasian,0,2,0,0,0,-1,2013-03-27 02:21:15,2013-03-28 07:29:08,13005983MM10A,2013-03-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-27,2013-03-28,0,0,1100,0,0,0\r\n6399,joshua visbal,joshua,visbal,2013-03-22,Male,1980-12-08,35,25 - 45,Caucasian,0,3,0,0,5,-20,2013-03-02 11:26:56,2013-03-03 09:01:52,13003157CF10A,2013-03-02,,20,F,Cruelty to Animals,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-22,Risk of Violence,2,Low,2013-03-22,2013-03-02,2013-03-03,5,0,1106,0,0,0\r\n6401,peter liberatore,peter,liberatore,2013-02-13,Male,1962-06-09,53,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-02-12 11:20:43,2013-02-13 07:54:55,13002178CF10A,2013-02-12,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2013-02-12,2013-02-13,1,0,1143,0,0,0\r\n6402,patricia garcon,patricia,garcon,2014-02-28,Female,1985-03-02,31,25 - 45,African-American,0,3,0,0,2,-1,2014-02-27 05:08:53,2014-03-01 05:09:38,14003432MM10A,2014-02-27,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-28,Risk of Violence,2,Low,2014-02-28,2014-02-27,2014-03-01,2,1,763,0,0,0\r\n6405,gael oriorden,gael,oriorden,2013-08-08,Male,1932-09-24,83,Greater than 45,Caucasian,0,1,0,0,4,,,,05006279CF10A,,2009-09-15,1423,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-08,Risk of Violence,1,Low,2013-08-08,,,4,0,967,0,0,0\r\n6406,raul pina,raul,pina,2013-08-27,Male,1969-04-21,46,Greater than 45,Hispanic,0,6,0,0,15,,,,13012473CF10A,2013-04-30,,119,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-27,Risk of Violence,7,Medium,2013-08-27,2009-07-30,2010-04-05,15,0,948,0,0,0\r\n6412,javaughn kerr,javaughn,kerr,2013-08-15,Male,1993-03-21,23,Less than 25,Other,0,10,0,0,4,-1,2013-08-14 05:29:49,2013-08-16 10:55:19,13011433CF10A,2013-08-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-15,Risk of Violence,10,High,2013-08-15,2013-08-14,2013-08-16,4,1,960,0,0,0\r\n6413,deonta harvard,deonta,harvard,2013-08-06,Male,1969-03-18,47,Greater than 45,African-American,0,4,0,0,9,-1,2013-08-05 06:18:35,2013-10-09 05:46:08,13013581CF10A,2013-08-05,,1,F,Felony Battery w/Prior Convict,1,15016053CF10A,(F3),0,2015-12-15,Possession Of Clonazepam,2015-12-15,2015-12-16,,0,,,,,Risk of Recidivism,4,Low,2013-08-06,Risk of Violence,2,Low,2013-08-06,2015-12-15,2015-12-16,9,64,861,1,0,0\r\n6414,jose monserrate,jose,monserrate,2013-02-17,Male,1984-05-31,31,25 - 45,Hispanic,0,6,0,0,4,,,,13002382CF10A,2013-02-16,,1,F,Agg Fleeing and Eluding,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-17,Risk of Violence,2,Low,2013-02-17,2015-11-12,2020-01-01,4,0,998,0,0,0\r\n6415,tracy parker,tracy,parker,2013-09-17,Male,1965-11-07,50,Greater than 45,African-American,0,8,0,0,0,,,,,,,,M,,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-17,Risk of Violence,5,Medium,2013-09-17,2013-09-16,2013-10-10,0,23,927,0,0,0\r\n6422,lateria green,lateria,green,2013-10-15,Female,1993-12-02,22,Less than 25,African-American,0,9,1,0,2,-1,2013-10-14 09:45:50,2013-10-17 09:23:49,13014368CF10A,2013-10-14,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-15,Risk of Violence,8,High,2013-10-15,2013-10-14,2013-10-17,2,2,899,0,0,0\r\n6424,jorge sinisterra,jorge,sinisterra,2013-02-08,Male,1971-04-04,45,Greater than 45,Hispanic,0,1,0,0,1,-22,2013-01-17 06:04:20,2013-01-17 06:56:34,13001205MM10A,2013-01-17,,22,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-08,Risk of Violence,1,Low,2013-02-08,2013-01-17,2013-01-17,1,0,1148,0,0,0\r\n6425,sharhonda campbell,sharhonda,campbell,2014-01-22,Female,1986-01-30,30,25 - 45,African-American,0,2,0,0,2,-1,2014-01-21 11:10:03,2014-01-22 09:10:18,14000868CF10A,2014-01-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-22,Risk of Violence,2,Low,2014-01-22,2014-01-21,2014-01-22,2,0,800,0,0,0\r\n6427,tavares williams,tavares,williams,2013-11-14,Male,1980-01-04,36,25 - 45,African-American,0,2,0,0,4,,,,06093744TC20A,2006-10-14,,2588,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-14,Risk of Violence,3,Low,2013-11-14,,,4,0,869,0,0,0\r\n6430,lefort eugene,lefort,eugene,2013-04-22,Male,1966-03-07,50,Greater than 45,African-American,0,1,0,0,0,0,2013-04-22 01:45:49,2013-04-22 06:41:19,13007798MM10A,2013-04-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2013-04-22,2013-04-22,0,0,1075,0,0,0\r\n6431,janelle levybuissereth,janelle,levybuissereth,2014-07-09,Female,1991-11-28,24,Less than 25,Other,0,4,0,0,2,-1,2014-07-08 03:40:37,2014-07-09 07:31:40,14009362CF10A,2014-07-08,,1,F,Possession Of Methamphetamine,1,14013717CF10A,(F2),0,2014-10-11,Aggravated Battery,2014-10-11,2014-11-13,,1,14013717CF10A,(F2),2014-10-11,Aggravated Battery,Risk of Recidivism,4,Low,2014-07-09,Risk of Violence,3,Low,2014-07-09,2014-10-11,2014-11-13,2,0,94,1,1,1\r\n6432,shaneen avramides,shaneen,avramides,2013-02-11,Female,1973-04-20,42,25 - 45,Caucasian,0,5,0,0,3,-3,2013-02-08 09:19:36,2013-02-09 01:26:38,13001984CF10A,2013-02-08,,3,F,False Ownership Info/Pawn Item,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-11,Risk of Violence,1,Low,2013-02-11,2014-09-08,2014-09-16,3,0,574,0,0,0\r\n6434,valerie alberto,valerie,alberto,2013-07-08,Female,1987-12-30,28,25 - 45,Hispanic,0,3,0,0,2,,,,11019061CF10A,2011-11-19,,597,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-08,Risk of Violence,3,Low,2013-07-08,,,2,0,998,0,0,0\r\n6436,prem alvarez,prem,alvarez,2013-03-24,Male,1985-04-10,31,25 - 45,Hispanic,0,1,0,0,0,0,2013-03-24 07:11:37,2013-03-25 08:17:18,13005765MM10A,2013-03-24,,0,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-24,Risk of Violence,1,Low,2013-03-24,2013-03-24,2013-03-25,0,1,1104,0,0,0\r\n6439,brion daniels,brion,daniels,2014-09-28,Male,1991-02-13,25,25 - 45,African-American,0,9,0,0,5,-1,2014-09-27 04:41:31,2014-11-20 10:01:09,14013078CF10A,,2014-09-27,1,F,arrest case no charge,1,14017393MM10A,(M1),0,2014-12-10,Battery,2014-12-10,2015-01-22,,1,14017393MM10A,(M1),2014-12-10,Battery,Risk of Recidivism,9,High,2014-09-28,Risk of Violence,6,Medium,2014-09-28,2014-12-10,2015-01-22,5,53,73,1,1,1\r\n6441,renard kitchen,renard,kitchen,2013-05-12,Male,1979-07-29,36,25 - 45,African-American,0,5,0,0,4,0,2013-05-12 01:05:46,2013-05-13 03:22:20,13006791CF10A,2013-05-11,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-12,Risk of Violence,3,Low,2013-05-12,2013-11-12,2014-01-07,4,1,184,0,0,0\r\n6443,trevor cox,trevor,cox,2013-04-14,Male,1987-12-30,28,25 - 45,Caucasian,0,5,0,0,5,0,2013-04-14 03:00:32,2013-04-14 07:15:58,13005377CF10A,2013-04-14,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-14,Risk of Violence,4,Low,2013-04-14,2013-04-14,2013-04-14,5,0,1083,0,0,0\r\n6446,joseph letohic,joseph,letohic,2014-11-22,Male,1984-07-11,31,25 - 45,Caucasian,0,1,0,0,0,-1,2014-11-21 08:37:59,2014-11-22 08:22:21,14016652MM10A,2014-11-21,,1,M,Battery,1,15010812MM10A,(M1),1,2015-10-14,Battery,2015-10-15,2015-10-16,,1,15010812MM10A,(M1),2015-10-14,Battery,Risk of Recidivism,1,Low,2014-11-22,Risk of Violence,1,Low,2014-11-22,2015-10-15,2015-10-16,0,0,326,1,1,1\r\n6447,jodelyn orne,jodelyn,orne,2013-02-09,Male,1992-09-13,23,Less than 25,African-American,0,4,0,0,0,-1,2013-02-08 06:33:18,2013-02-11 08:47:47,13001976CF10A,2013-02-08,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-09,Risk of Violence,6,Medium,2013-02-09,2014-08-28,2015-04-28,0,2,565,0,0,0\r\n6448,emigdio rodriguez,emigdio,rodriguez,2013-04-12,Male,1987-02-10,29,25 - 45,Caucasian,0,6,0,0,4,-1,2013-04-11 11:52:52,2013-04-18 11:54:40,13007014MM10A,2013-04-11,,1,M,Viol Injunct Domestic Violence,1,13009787MM10A,(M2),0,2013-05-21,Prowling/Loitering,2013-05-21,2013-05-21,,1,14018152MM10A,(M1),2014-12-29,Battery,Risk of Recidivism,6,Medium,2013-04-12,Risk of Violence,3,Low,2013-04-12,2013-05-21,2013-05-21,4,6,39,0,1,1\r\n6450,rashid labonte,rashid,labonte,2013-01-10,Male,1982-03-23,34,25 - 45,African-American,0,5,0,0,1,-1,2013-01-09 01:08:47,2013-01-10 05:09:51,13000388CF10A,2013-01-09,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-10,Risk of Violence,3,Low,2013-01-10,2013-01-09,2013-01-10,1,0,1177,0,0,0\r\n6458,magalys aulet,magalys,aulet,2013-04-07,Female,1979-12-25,36,25 - 45,Hispanic,0,2,0,0,0,0,2013-04-07 02:43:54,2013-04-07 06:10:19,13005023CF10A,2013-04-06,,1,M,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-07,Risk of Violence,1,Low,2013-04-07,2013-04-07,2013-04-07,0,0,1090,0,0,0\r\n6462,keyon bolden,keyon,bolden,2013-12-12,Male,1992-04-21,23,Less than 25,African-American,0,8,0,2,3,-1,2013-12-11 08:58:31,2013-12-12 08:41:19,13017196CF10A,2013-12-11,,1,F,Grand Theft (Motor Vehicle),1,14026033TC20A,(M2),57,2014-04-05,Driving License Suspended,2014-06-01,2014-06-01,,1,14011407CF10A,(F2),2014-07-30,Throw Deadly Missile Into Veh,Risk of Recidivism,8,High,2013-12-12,Risk of Violence,8,High,2013-12-12,2015-01-18,2015-03-27,3,0,114,1,1,1\r\n6463,lenaris pope,lenaris,pope,2013-05-25,Male,1984-12-07,31,25 - 45,African-American,0,8,0,0,15,0,2013-05-25 12:00:10,2013-05-25 07:36:34,13007447CF10A,2013-05-24,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-25,Risk of Violence,3,Low,2013-05-25,2014-06-24,2014-08-19,15,0,395,0,0,0\r\n6466,tyrone palacios,tyrone,palacios,2013-11-18,Male,1963-04-07,53,Greater than 45,Caucasian,0,1,0,0,0,0,2013-11-18 04:04:43,2013-11-18 02:15:16,13021683MM10A,2013-11-18,,0,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-18,Risk of Violence,1,Low,2013-11-18,2013-11-18,2013-11-18,0,0,865,0,0,0\r\n6467,christopher hampton,christopher,hampton,2014-02-06,Male,1982-03-20,34,25 - 45,African-American,0,7,0,0,12,0,2014-02-06 12:40:18,2014-03-13 05:43:50,14001658CF10A,2014-02-05,,1,F,Unauth C/P/S Sounds>1000/Audio,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-06,Risk of Violence,5,Medium,2014-02-06,2014-02-06,2014-03-13,12,35,785,0,0,0\r\n6468,marlene russell,marlene,russell,2013-11-08,Female,1953-04-11,63,Greater than 45,African-American,0,1,0,0,1,0,2013-11-08 03:13:23,2013-11-08 09:33:45,13015594CF10A,2013-11-07,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2013-11-08,2013-11-08,1,0,875,0,0,0\r\n6470,rakeem baptiste,rakeem,baptiste,2014-10-04,Female,1995-03-26,21,Less than 25,African-American,0,7,0,0,0,0,2014-10-04 05:09:06,2014-10-04 07:38:51,14013392CF10A,2014-10-04,,0,F,Possession Of Alprazolam,1,14014149CF10A,(F2),0,2014-10-20,Aggrav Battery w/Deadly Weapon,2014-10-20,2014-11-18,,1,14014149CF10A,(F2),2014-10-20,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,7,Medium,2014-10-04,Risk of Violence,6,Medium,2014-10-04,2014-10-20,2014-11-18,0,0,16,1,1,1\r\n6475,yves stlouis,yves,stlouis,2013-05-29,Male,1972-11-20,43,25 - 45,African-American,0,1,0,0,1,,,,09019388MM10A,2009-08-13,,1385,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,,,1,0,1038,0,0,0\r\n6477,brian piggott,brian,piggott,2014-11-13,Male,1958-01-18,58,Greater than 45,Caucasian,0,5,0,0,4,0,2014-11-13 11:35:04,2014-11-14 09:12:36,14015270CF10A,2014-11-13,,0,F,Felony Petit Theft,1,15000894MM10A,(M1),0,2015-01-23,Resist/Obstruct W/O Violence,2015-01-23,2015-03-12,,1,15001923MM10A,(M1),2015-02-12,Battery,Risk of Recidivism,5,Medium,2014-11-13,Risk of Violence,3,Low,2014-11-13,2015-01-23,2015-03-12,4,1,71,1,1,1\r\n6481,bria harcum,bria,harcum,2013-01-31,Female,1992-06-19,23,Less than 25,African-American,0,4,0,0,0,-1,2013-01-30 10:25:05,2013-02-01 02:10:14,13002159MM10A,2013-01-30,,1,M,Battery,1,15006087MM10A,(M1),1,2015-06-02,Possess Cannabis/20 Grams Or Less,2015-06-03,2015-06-03,,1,15008017MM10A,(M1),2015-07-28,Battery,Risk of Recidivism,4,Low,2013-01-31,Risk of Violence,4,Low,2013-01-31,2014-07-07,2014-07-22,0,1,522,0,0,0\r\n6483,laird mcmahon,laird,mcmahon,2013-07-09,Male,1959-11-06,56,Greater than 45,Caucasian,0,2,0,0,13,-13,2013-06-26 10:01:48,2013-07-03 08:32:05,12000792CF10A,,2013-06-26,13,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-09,Risk of Violence,1,Low,2013-07-09,2013-06-26,2013-07-03,13,0,997,0,0,0\r\n6484,linda mashaw,linda,mashaw,2013-12-11,Female,1963-06-02,52,Greater than 45,Caucasian,0,1,0,0,0,-6,2013-12-05 11:56:49,2013-12-06 02:06:17,13016847CF10A,2013-12-05,,6,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2013-12-05,2013-12-06,0,0,842,0,0,0\r\n6485,tyrone dalton,tyrone,dalton,2013-03-27,Male,1959-07-30,56,Greater than 45,African-American,0,2,0,0,0,-1,2013-03-26 11:29:32,2013-04-02 10:35:48,13004366CF10A,2013-03-26,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-27,Risk of Violence,1,Low,2013-03-27,2013-03-26,2013-04-02,0,6,1101,0,0,0\r\n6487,lloy phillips,lloy,phillips,2014-02-13,Female,1978-07-11,37,25 - 45,African-American,0,1,0,0,0,-1,2014-02-12 08:58:01,2014-02-13 12:55:43,14002470MM10A,2014-02-12,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-13,Risk of Violence,1,Low,2014-02-13,2014-02-12,2014-02-13,0,0,778,0,0,0\r\n6488,michelle rubin-furtado,michelle,rubin-furtado,2013-09-30,Female,1965-09-22,50,Greater than 45,Caucasian,0,1,0,0,0,0,2013-09-30 12:58:02,2013-10-02 07:23:30,13018508MM10A,2013-09-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-30,2013-10-02,0,2,914,0,0,0\r\n6490,reginald harris,reginald,harris,2013-03-12,Male,1993-08-20,22,Less than 25,African-American,0,5,0,0,0,-1,2013-03-11 10:30:13,2013-03-12 01:07:23,13003588CF10A,2013-03-11,,1,F,Possession of Cocaine,1,13021752MM10A,(M2),1,2013-11-18,Assault,2013-11-19,2013-11-26,,1,13021752MM10A,(M2),2013-11-18,Assault,Risk of Recidivism,5,Medium,2013-03-12,Risk of Violence,5,Medium,2013-03-12,2014-02-13,2014-09-11,0,0,251,1,1,1\r\n6491,maria cecil,maria,cecil,2013-08-02,Female,1972-06-13,43,25 - 45,Caucasian,0,1,0,0,0,0,2013-08-02 01:25:54,2013-08-02 07:52:49,13014710MM10A,2013-08-02,,0,M,Battery,1,14017228MM10A,(M1),0,2014-12-08,Battery,2014-12-08,2014-12-08,,1,14017228MM10A,(M1),2014-12-08,Battery,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,2014-12-08,2014-12-08,0,0,493,0,1,1\r\n6492,michael bleier,michael,bleier,2013-01-12,Male,1985-10-18,30,25 - 45,Caucasian,0,2,0,0,1,-1,2013-01-11 03:35:40,2013-02-15 09:20:24,13000691MM10A,2013-01-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-12,Risk of Violence,2,Low,2013-01-12,2013-01-11,2013-02-15,1,34,1175,0,0,0\r\n6495,darren ip,darren,ip,2013-02-25,Male,1986-10-21,29,25 - 45,Asian,0,1,0,0,0,-1,2013-02-24 04:36:56,2013-02-25 01:34:48,13002837CF10A,2013-02-24,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,2,Low,2013-02-25,2013-02-24,2013-02-25,0,0,1131,0,0,0\r\n6496,isaac cabrera,isaac,cabrera,2013-03-31,Male,1991-12-04,24,Less than 25,Caucasian,0,2,0,0,0,-1,2013-03-30 09:22:07,2013-03-31 02:54:13,13004598CF10A,2013-03-30,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-31,Risk of Violence,3,Low,2013-03-31,2013-03-30,2013-03-31,0,0,1097,0,0,0\r\n6497,markei smith,markei,smith,2013-09-08,Male,1986-11-05,29,25 - 45,African-American,0,8,0,0,7,-1,2013-09-07 09:27:43,2013-09-08 06:44:09,13017071MM10A,2013-09-07,,1,M,Battery,1,14003492CF10A,(M1),0,2014-03-12,Unlaw Malic Strike K9/Horses,2014-03-12,2014-04-17,,1,14003492CF10A,(F2),2014-03-12,Agg Battery Grt/Bod/Harm,Risk of Recidivism,8,High,2013-09-08,Risk of Violence,3,Low,2013-09-08,2014-03-12,2014-04-17,7,0,185,1,1,1\r\n6498,andrea norris,andrea,norris,2013-01-15,Female,1989-03-31,27,25 - 45,Caucasian,0,3,0,0,3,,,,12018748CF10A,2012-12-27,,19,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-15,Risk of Violence,3,Low,2013-01-15,,,3,0,1172,0,0,0\r\n6500,amanda mion,amanda,mion,2013-10-02,Female,1991-10-30,24,Less than 25,Caucasian,0,4,0,0,0,-2,2013-09-30 07:53:28,2013-10-01 02:11:36,13013724CF10A,2013-09-30,,2,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-02,Risk of Violence,5,Medium,2013-10-02,2013-09-30,2013-10-01,0,0,912,0,0,0\r\n6501,merdis johnson,merdis,johnson,2013-11-07,Female,1941-06-08,74,Greater than 45,African-American,0,1,0,0,0,-1,2013-11-06 11:55:36,2013-11-07 02:32:47,13015489CF10A,2013-11-06,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-07,Risk of Violence,1,Low,2013-11-07,2013-11-06,2013-11-07,0,0,876,0,0,0\r\n6502,nathan mosley,nathan,mosley,2013-08-30,Male,1988-06-19,27,25 - 45,African-American,0,7,0,1,8,0,2013-08-30 12:08:49,2013-08-31 04:11:35,13006881MM10A,,2013-08-29,1,M,arrest case no charge,1,14002197CF10A,(F3),0,2014-02-16,Drivg While Lic Suspd/Revk/Can,2014-02-16,2014-02-18,,1,15004206MM10A,(M1),2015-04-12,Battery,Risk of Recidivism,7,Medium,2013-08-30,Risk of Violence,5,Medium,2013-08-30,2014-02-16,2014-02-18,8,1,170,1,1,1\r\n6505,sean gayle,sean,gayle,2013-10-26,Male,1987-04-14,29,25 - 45,Caucasian,0,2,0,0,5,0,2013-10-26 02:22:33,2013-10-26 08:52:16,13014983CF10A,2013-10-26,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-26,Risk of Violence,3,Low,2013-10-26,2013-10-26,2013-10-26,5,0,888,0,0,0\r\n6508,latara doe,latara,doe,2013-11-20,Female,1981-02-15,35,25 - 45,African-American,0,3,0,0,5,-1,2013-11-19 12:43:57,2013-11-20 09:48:47,13016050CF10A,2013-11-19,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-20,Risk of Violence,3,Low,2013-11-20,2013-11-19,2013-11-20,5,0,863,0,0,0\r\n6512,sean barnes,sean,barnes,2013-12-06,Male,1979-08-19,36,25 - 45,Caucasian,0,2,0,0,1,-1,2013-12-05 08:09:58,2013-12-06 09:55:53,13017002CF10A,,2013-12-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-06,Risk of Violence,1,Low,2013-12-06,2013-12-05,2013-12-06,1,0,847,0,0,0\r\n6514,denim thomas,denim,thomas,2013-01-10,Male,1989-08-15,26,25 - 45,Caucasian,0,4,0,0,2,0,2013-01-10 12:22:27,2013-01-12 02:52:10,13000386CF10A,2013-01-09,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-10,Risk of Violence,7,Medium,2013-01-10,2015-05-01,2015-05-28,2,2,841,0,0,0\r\n6518,dave walker,dave,walker,2013-01-06,Male,1988-01-09,28,25 - 45,African-American,0,5,0,0,1,,,,09018697MM10A,2009-08-07,,1248,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-06,Risk of Violence,5,Medium,2013-01-06,,,1,0,1181,0,0,0\r\n6520,miesha jones,miesha,jones,2014-01-22,Female,1989-08-04,26,25 - 45,African-American,0,5,0,0,1,-1,2014-01-21 05:58:42,2014-01-22 09:20:42,14000884CF10A,,2014-01-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-22,Risk of Violence,4,Low,2014-01-22,2014-01-21,2014-01-22,1,0,800,0,0,0\r\n6524,jordan rodriguez,jordan,rodriguez,2013-04-25,Male,1987-12-01,28,25 - 45,Caucasian,0,3,0,0,0,-1,2013-04-24 06:15:34,2013-04-26 04:51:42,13005908CF10A,2013-04-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-25,Risk of Violence,2,Low,2013-04-25,2014-01-22,2014-01-29,0,1,272,0,0,0\r\n6525,martin chauncey,martin,chauncey,2013-03-11,Male,1964-06-20,51,Greater than 45,Caucasian,0,1,0,0,1,-2,2013-03-09 10:28:41,2013-03-10 01:03:52,13003507CF10A,2013-03-09,,2,F,Possession Of Alprazolam,1,13048905TC10A,(M2),,2013-11-23,Ped Obstruct Traf/No Permit Sol,,,,1,15004302CF10A,(F3),2015-04-01,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-05-28,2013-07-05,1,0,78,0,1,1\r\n6526,iliana fernandez,iliana,fernandez,2014-01-21,Female,1980-06-23,35,25 - 45,Hispanic,0,2,0,0,0,-1,2014-01-20 09:04:36,2014-01-21 09:57:17,14000989MM10A,2014-01-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-21,Risk of Violence,1,Low,2014-01-21,2014-01-20,2014-01-21,0,0,801,0,0,0\r\n6527,vanessa malcolm,vanessa,malcolm,2014-03-02,Female,1992-05-24,23,Less than 25,African-American,0,2,0,0,0,-1,2014-03-01 02:14:47,2014-03-02 08:12:14,14003540MM10A,2014-03-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-02,Risk of Violence,3,Low,2014-03-02,2014-03-01,2014-03-02,0,0,761,0,0,0\r\n6533,jessica cajete,jessica,cajete,2013-09-23,Female,1992-08-11,23,Less than 25,Hispanic,0,4,1,0,2,-1,2013-09-22 01:21:07,2013-09-23 09:39:36,13018067MM10A,2013-09-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-23,Risk of Violence,6,Medium,2013-09-23,2013-09-22,2013-09-23,2,0,921,0,0,0\r\n6534,shimeko johnson,shimeko,johnson,2013-09-20,Female,1983-02-01,33,25 - 45,African-American,0,7,0,0,5,-1,2013-09-19 10:53:46,2014-03-25 03:47:18,13013220CF10A,2013-09-19,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-20,Risk of Violence,5,Medium,2013-09-20,2016-03-24,2020-01-01,5,186,916,0,0,0\r\n6536,karl smith,karl,smith,2013-05-15,Male,1956-11-12,59,Greater than 45,Caucasian,0,1,0,0,3,-3,2013-05-12 05:17:01,2013-05-14 07:57:33,13009151MM10A,2013-05-11,,4,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-15,Risk of Violence,1,Low,2013-05-15,2013-05-12,2013-05-14,3,0,1052,0,0,0\r\n6537,alejandro cabrera,alejandro,cabrera,2013-09-23,Male,1990-03-30,26,25 - 45,Caucasian,0,4,0,0,4,0,2013-09-23 12:36:24,2013-09-26 08:28:31,13013392CF10A,2013-09-23,,0,F,Tamper With Witness/Victim/CI,1,13014027CF10A,(M1),0,2013-10-06,Viol Pretrial Release Dom Viol,2013-10-06,2013-12-17,,1,13014027CF10A,(M1),2013-10-06,Battery,Risk of Recidivism,4,Low,2013-09-23,Risk of Violence,3,Low,2013-09-23,2013-10-06,2013-12-17,4,3,13,1,1,1\r\n6538,rosario pennachio,rosario,pennachio,2013-03-20,Male,1979-09-30,36,25 - 45,Caucasian,0,1,0,0,0,,,,,,,,M,,1,16000097MM10A,(M2),,2015-12-07,Trespass Struct/Conveyance,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-02-16,2013-03-19,0,0,992,1,0,0\r\n6539,pathelin felix,pathelin,felix,2014-03-27,Male,1977-09-02,38,25 - 45,Other,0,1,0,0,2,-1,2014-03-26 05:07:09,2014-03-27 01:44:46,14004307CF10A,2014-03-26,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-27,Risk of Violence,1,Low,2014-03-27,2014-03-26,2014-03-27,2,0,736,0,0,0\r\n6546,michael miranda,michael,miranda,2013-11-25,Male,1987-11-11,28,25 - 45,Hispanic,0,8,0,0,2,-1,2013-11-24 03:03:07,2013-11-27 08:15:41,13016343CF10A,2013-11-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-25,Risk of Violence,6,Medium,2013-11-25,2013-11-24,2013-11-27,2,2,858,0,0,0\r\n6551,max connolly,max,connolly,2013-12-24,Male,1976-03-04,40,25 - 45,Caucasian,0,4,0,0,1,-1,2013-12-23 09:56:19,2013-12-25 01:50:51,13023696MM10A,2013-12-23,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-24,Risk of Violence,3,Low,2013-12-24,2013-12-23,2013-12-25,1,1,829,0,0,0\r\n6553,joshua rinchere,joshua,rinchere,2013-01-03,Male,1991-11-21,24,Less than 25,African-American,0,6,1,2,2,561,2014-07-18 05:54:57,2014-07-18 12:53:51,12017517MM10A,2011-12-06,,394,M,Cause Anoth Phone Ring Repeat,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-03,Risk of Violence,7,Medium,2013-01-03,2014-07-18,2014-07-18,2,0,561,0,0,0\r\n6554,amber howell,amber,howell,2013-12-21,Female,1990-01-02,26,25 - 45,African-American,0,4,0,0,0,-1,2013-12-20 03:42:01,2013-12-21 01:56:09,13017566CF10A,2013-12-20,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-21,Risk of Violence,4,Low,2013-12-21,2015-09-10,2015-09-10,0,0,628,0,0,0\r\n6557,cleveland daniels,cleveland,daniels,2013-08-15,Male,1956-07-16,59,Greater than 45,African-American,0,6,0,0,5,,,,09001028TC10A,2008-09-28,,1782,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-15,Risk of Violence,4,Low,2013-08-15,1997-07-17,2000-10-11,5,0,960,0,0,0\r\n6560,annette jackson,annette,jackson,2013-12-02,Female,1961-08-13,54,Greater than 45,African-American,0,4,0,0,6,-1,2013-12-01 02:04:46,2013-12-02 09:23:47,13016643CF10A,2013-12-01,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-02,6,0,851,0,0,0\r\n6563,brian esporrin,brian,esporrin,2014-01-27,Male,1984-09-29,31,25 - 45,Caucasian,0,7,0,0,4,-1,2014-01-26 09:54:39,2014-02-22 05:13:12,14001451MM10A,2014-01-26,,1,M,Battery,1,14003079MM20A,(M2),,2014-10-17,Driving License Suspended,,,,1,16002416MM10A,(M1),2016-03-01,Battery,Risk of Recidivism,7,Medium,2014-01-27,Risk of Violence,7,Medium,2014-01-27,2014-01-26,2014-02-22,4,26,263,1,1,1\r\n6564,gilberto padua,gilberto,padua,2013-05-22,Male,1982-01-15,34,25 - 45,Caucasian,0,3,0,0,0,-1,2013-05-21 11:08:14,2013-05-22 07:36:48,13007242CF10A,2013-05-21,,1,F,Grand Theft in the 3rd Degree,1,15012253MM10A,(M1),,2015-11-01,Battery,,,,1,15012253MM10A,(M1),2015-11-01,Battery,Risk of Recidivism,3,Low,2013-05-22,Risk of Violence,2,Low,2013-05-22,2015-07-02,2015-07-09,0,0,771,0,0,0\r\n6570,michael andrews,michael,andrews,2013-03-08,Male,1969-02-01,47,Greater than 45,Caucasian,0,4,0,0,2,-7,2013-03-01 05:20:32,2013-03-07 08:32:27,13003102CF10A,2013-03-01,,7,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-08,Risk of Violence,1,Low,2013-03-08,2013-09-13,2013-09-20,2,0,189,0,0,0\r\n6571,wyle myrick,wyle,myrick,2013-01-15,Male,1964-12-15,51,Greater than 45,African-American,0,8,0,1,12,-1,2013-01-14 09:08:43,2013-01-15 01:17:37,13000651CF10A,2013-01-14,,1,F,Felony Driving While Lic Suspd,1,14088029TC30A,(M2),,2014-10-17,Driving License Suspended,,,,1,15000544CF10A,(F3),2014-10-23,Felony Battery (Dom Strang),Risk of Recidivism,8,High,2013-01-15,Risk of Violence,3,Low,2013-01-15,2015-01-29,2015-03-04,12,0,640,1,1,1\r\n6572,matthew bohl,matthew,bohl,2013-09-11,Male,1990-06-27,25,25 - 45,Caucasian,0,3,0,0,1,-23,2013-08-19 12:20:34,2013-08-19 07:02:51,12015964CF10A,,2013-08-18,24,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-11,Risk of Violence,3,Low,2013-09-11,2013-08-19,2013-08-19,1,0,933,0,0,0\r\n6573,damian wright,damian,wright,2013-03-21,Male,1990-12-28,25,25 - 45,Other,0,2,0,0,0,-1,2013-03-20 03:26:30,2013-04-09 08:53:54,13004045CF10A,2013-03-20,,1,F,Felony Battery,1,13012915MM10A,(M1),0,2013-07-07,Battery,2013-07-07,2013-09-21,,1,13012915MM10A,(M1),2013-07-07,Battery,Risk of Recidivism,2,Low,2013-03-21,Risk of Violence,4,Low,2013-03-21,2013-07-07,2013-09-21,0,19,108,1,1,1\r\n6575,alberto espino,alberto,espino,2013-02-22,Male,1971-05-11,44,25 - 45,Hispanic,0,1,0,0,2,367,2014-02-24 11:33:39,2014-02-25 09:19:16,12017050CF10A,,2012-12-05,79,F,arrest case no charge,1,14003599CF10A,(F3),,2014-02-18,Child Abuse,,,,1,14003599CF10A,(F3),2014-02-18,Child Abuse,Risk of Recidivism,1,Low,2013-02-22,Risk of Violence,2,Low,2013-02-22,2014-02-24,2014-02-25,2,0,361,1,1,1\r\n6577,michael spetsieris,michael,spetsieris,2013-02-08,Male,1979-12-07,36,25 - 45,Caucasian,0,2,0,0,1,-1,2013-02-07 05:59:46,2013-02-08 02:14:56,13002149CF10A,,2013-02-07,1,F,arrest case no charge,1,15002345MM10A,(M1),0,2015-02-25,Child Neglect/Delinquency,2015-02-25,2015-04-28,,1,15002345MM10A,(M1),2015-02-25,Battery,Risk of Recidivism,2,Low,2013-02-08,Risk of Violence,3,Low,2013-02-08,2015-02-25,2015-04-28,1,0,747,1,0,0\r\n6578,jake jacob,jake,jacob,2013-03-06,Male,1938-05-15,77,Greater than 45,Caucasian,0,1,0,0,3,,,,07014679CF10A,,2008-06-02,1738,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-06,Risk of Violence,1,Low,2013-03-06,,,3,0,1122,0,0,0\r\n6580,brent jardine,brent,jardine,2013-03-18,Male,1966-10-28,49,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-18 12:03:32,2013-03-18 02:06:52,13005225MM10A,2013-03-17,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-18,2013-03-18,0,0,1110,0,0,0\r\n6583,thaddaus holmes,thaddaus,holmes,2013-04-05,Male,1984-12-24,31,25 - 45,African-American,0,7,0,0,0,-1,2013-04-04 10:04:39,2013-04-05 09:22:00,13004851CF10A,2013-04-04,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-05,Risk of Violence,4,Low,2013-04-05,2014-11-20,2015-03-20,0,0,594,0,0,0\r\n6584,daniel ganten,daniel,ganten,2014-03-11,Male,1986-03-30,30,25 - 45,Caucasian,0,3,0,1,1,-1,2014-03-10 03:11:33,2014-03-11 01:26:00,14003379CF10A,2014-03-10,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-11,Risk of Violence,3,Low,2014-03-11,2014-08-28,2014-08-29,1,0,170,0,0,0\r\n6587,bernard bellamy,bernard,bellamy,2013-10-15,Male,1994-11-10,21,Less than 25,African-American,0,9,1,0,1,-1,2013-10-14 05:20:14,2015-01-13 06:24:21,13014382CF10A,2013-10-14,,1,F,Att Burgl Unoccupied Dwel,1,14015162CF10A,(F3),160,2014-10-24,Battery Upon Detainee,2015-04-02,2015-04-16,,1,14015162CF10A,(F3),2014-10-24,Battery Upon Detainee,Risk of Recidivism,9,High,2013-10-15,Risk of Violence,8,High,2013-10-15,2013-10-14,2015-01-13,1,0,374,1,1,1\r\n6588,lawrence mincey,lawrence,mincey,2013-12-07,Male,1994-08-29,21,Less than 25,African-American,0,4,0,0,0,-1,2013-12-06 11:23:29,2013-12-07 01:44:43,13016905CF10A,2013-12-06,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-07,Risk of Violence,6,Medium,2013-12-07,2013-12-06,2013-12-07,0,0,846,0,0,0\r\n6591,flora emery,flora,emery,2014-02-24,Female,1951-02-20,65,Greater than 45,African-American,0,1,0,0,0,-1,2014-02-23 10:06:57,2014-02-24 09:55:50,14002554CF10A,2014-02-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-23,2014-02-24,0,0,767,0,0,0\r\n6592,marlene decarlos,marlene,decarlos,2014-02-06,Female,1956-08-17,59,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-05 04:46:13,2014-02-05 09:09:15,14004643MU10A,2014-02-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-06,Risk of Violence,1,Low,2014-02-06,2014-02-05,2014-02-05,0,0,785,0,0,0\r\n6593,robert heagle,robert,heagle,2013-11-18,Male,1957-01-23,59,Greater than 45,African-American,0,1,0,0,0,-1,2013-11-17 10:33:58,2013-11-19 08:59:35,13021612MM10A,2013-11-17,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-18,Risk of Violence,1,Low,2013-11-18,2013-11-17,2013-11-19,0,1,865,0,0,0\r\n6594,trevant taylor,trevant,taylor,2013-03-15,Male,1992-03-07,24,Less than 25,African-American,0,7,0,0,0,-1,2013-03-14 08:45:46,2013-03-17 08:58:08,13005088MM10A,2013-03-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-15,Risk of Violence,7,Medium,2013-03-15,2013-03-14,2013-03-17,0,2,1113,0,0,0\r\n6595,benjamin fanfan,benjamin,fanfan,2013-02-20,Male,1975-04-24,40,25 - 45,African-American,0,1,0,0,0,0,2013-02-20 06:23:55,2013-02-21 08:02:45,13002591CF10A,2013-02-19,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-02-20,2013-02-21,0,1,1136,0,0,0\r\n6597,charles harvey,charles,harvey,2013-03-18,Male,1981-04-28,34,25 - 45,African-American,1,9,0,0,10,-1,2013-03-17 08:10:17,2013-03-18 02:41:05,13003878CF10A,2013-03-17,,1,F,Possession Of Alprazolam,1,14005915CF10A,(F3),,2013-05-20,Grand Theft in the 3rd Degree,,,,1,13016846CF10A,(M1),2013-12-05,Battery,Risk of Recidivism,9,High,2013-03-18,Risk of Violence,4,Low,2013-03-18,2014-02-04,2014-06-10,10,0,63,1,1,1\r\n6601,herbert morris,herbert,morris,2014-02-24,Male,1964-01-01,52,Greater than 45,African-American,0,1,0,0,1,-1,2014-02-23 02:25:36,2014-02-24 01:35:35,14002552CF10A,2014-02-23,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-23,2014-02-24,1,0,767,0,0,0\r\n6603,moses martin,moses,martin,2014-08-07,Male,1991-05-09,24,Less than 25,African-American,0,9,0,0,15,-31,2014-07-07 11:37:13,2014-07-12 02:11:41,11004711CF10A,,2014-07-07,31,F,arrest case no charge,1,15015032CF10A,(F3),,2015-11-18,Battery Upon Detainee,,,,1,15015032CF10A,(F3),2015-11-18,Battery Upon Detainee,Risk of Recidivism,9,High,2014-08-07,Risk of Violence,9,High,2014-08-07,2014-09-12,2015-01-09,15,0,36,0,1,1\r\n6604,stacey lewis,stacey,lewis,2013-05-26,Male,1978-02-03,38,25 - 45,African-American,0,3,0,0,2,-1,2013-05-25 08:47:26,2013-05-28 01:16:45,13007501CF10A,2013-05-25,,1,F,Aggrav Battery w/Deadly Weapon,1,14002354MM40A,(M1),,2014-05-16,Possess Cannabis/20 Grams Or Less,,,,1,15012816CF10A,(F3),2015-10-03,Agg Assault W/int Com Fel Dome,Risk of Recidivism,3,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2013-05-25,2013-05-28,2,2,355,1,1,1\r\n6605,whitney bennett,whitney,bennett,2013-07-23,Female,1993-06-16,22,Less than 25,African-American,0,8,0,0,0,-6,2013-07-17 11:09:16,2013-07-18 07:36:50,13010011CF10A,2013-07-17,,6,F,Poss of Methylethcathinone,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-07-23,Risk of Violence,8,High,2013-07-23,2014-01-17,2014-01-18,0,0,178,0,0,0\r\n6606,gerraro bell,gerraro,bell,2013-02-01,Male,1972-12-21,43,25 - 45,African-American,0,5,0,0,0,-1,2013-01-31 08:25:07,2013-02-03 08:56:37,13001554CF10A,2013-01-31,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-01,Risk of Violence,3,Low,2013-02-01,2013-01-31,2013-02-03,0,2,1155,0,0,0\r\n6611,darryl stringer,darryl,stringer,2013-10-04,Male,1960-11-16,55,Greater than 45,African-American,0,1,0,0,0,-1,2013-10-03 06:04:09,2013-10-04 08:21:14,13013904CF10A,2013-10-03,,1,F,Failure To Return Hired Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-04,Risk of Violence,1,Low,2013-10-04,2014-01-15,2014-02-21,0,0,103,0,0,0\r\n6613,trenton bractley,trenton,bractley,2013-12-14,Male,1989-09-03,26,25 - 45,African-American,0,2,0,0,2,-1,2013-12-13 03:52:22,2013-12-22 01:52:00,13017254CF10A,2013-12-13,,1,F,Burglary Unoccupied Dwelling,1,16002864CF10A,(F3),,2016-03-06,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-14,Risk of Violence,3,Low,2013-12-14,2015-06-12,2015-06-23,2,8,545,0,0,0\r\n6614,juan villa,juan,villa,2013-11-22,Male,1993-01-08,23,Less than 25,Caucasian,0,2,0,1,1,-1,2013-11-21 07:44:23,2013-11-22 05:14:14,13021926MM10A,2013-11-21,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-22,Risk of Violence,3,Low,2013-11-22,2013-11-21,2013-11-22,1,0,861,0,0,0\r\n6615,alison coutain,alison,coutain,2013-05-26,Female,1968-12-28,47,Greater than 45,Other,0,1,0,0,0,-1,2013-05-25 09:23:37,2013-05-28 10:06:23,13007499CF10A,2013-05-25,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2013-05-25,2013-05-28,0,2,1041,0,0,0\r\n6626,terril bishop,terril,bishop,2013-05-26,Male,1989-11-26,26,25 - 45,African-American,0,2,0,0,0,-1,2013-05-25 05:26:05,2013-05-27 06:22:44,13007482CF10A,2013-05-25,,1,F,Felony Batt(Great Bodily Harm),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-26,Risk of Violence,3,Low,2013-05-26,2013-05-25,2013-05-27,0,1,1041,0,0,0\r\n6627,patrick hoosue,patrick,hoosue,2014-01-27,Male,1974-09-24,41,25 - 45,Hispanic,0,1,0,0,1,-38,2013-12-20 12:51:29,2014-01-19 06:50:56,10000783MM30A,2010-05-04,,1364,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2015-01-26,2015-03-17,1,0,364,0,0,0\r\n6633,ryan chitwood,ryan,chitwood,2013-06-14,Male,1986-02-09,30,25 - 45,Caucasian,0,4,0,0,3,225,2014-01-25 03:44:17,2014-04-05 04:50:01,12018809CF10A,2012-12-29,,167,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-14,Risk of Violence,3,Low,2013-06-14,2014-01-25,2014-04-05,3,0,225,0,0,0\r\n6636,brandon guerra,brandon,guerra,2013-12-31,Male,1994-11-07,21,Less than 25,Caucasian,0,3,0,1,0,-1,2013-12-30 11:33:39,2013-12-31 07:58:02,13017982CF10A,2013-12-30,,1,M,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-31,Risk of Violence,5,Medium,2013-12-31,2013-12-30,2013-12-31,0,0,822,0,0,0\r\n6637,alexandra donovan,alexandra,donovan,2013-02-24,Female,1984-01-25,32,25 - 45,Caucasian,0,1,0,1,0,-1,2013-02-23 05:11:38,2013-02-24 06:41:29,13003781MM10A,2013-02-22,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-24,Risk of Violence,1,Low,2013-02-24,2013-02-23,2013-02-24,0,0,1132,0,0,0\r\n6639,llewellyn jones,llewellyn,jones,2013-10-10,Male,1964-11-23,51,Greater than 45,African-American,0,1,0,0,3,0,2013-10-10 01:07:03,2013-10-10 08:58:56,13014209CF10A,2013-10-10,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-10,Risk of Violence,1,Low,2013-10-10,2013-10-10,2013-10-10,3,0,904,0,0,0\r\n6642,shawn harbison,shawn,harbison,2014-02-14,Male,1980-11-28,35,25 - 45,Caucasian,0,3,0,0,2,-1,2014-02-13 01:00:49,2014-02-14 01:28:38,14002072CF10A,2014-02-13,,1,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-14,Risk of Violence,2,Low,2014-02-14,2014-02-13,2014-02-14,2,0,777,0,0,0\r\n6645,tiffany morgan,tiffany,morgan,2013-09-06,Female,1978-07-10,37,25 - 45,African-American,0,1,0,0,3,-1,2013-09-05 07:35:42,2013-10-04 08:46:45,13010467CF10A,,2013-09-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-05,2013-10-04,3,28,938,0,0,0\r\n6650,luke brooks,luke,brooks,2013-01-18,Male,1991-11-18,24,Less than 25,African-American,0,8,0,0,0,-1,2013-01-17 07:29:28,2013-01-19 03:27:48,13001210MM10A,2013-01-17,,1,M,Battery,1,14011487MM10A,(M1),0,2014-07-28,Battery,2014-07-28,2014-07-29,,1,14011487MM10A,(M1),2014-07-28,Battery,Risk of Recidivism,8,High,2013-01-18,Risk of Violence,8,High,2013-01-18,2014-07-28,2014-07-29,0,1,556,1,1,1\r\n6651,niesha johnson,niesha,johnson,2013-02-01,Female,1983-03-18,33,25 - 45,African-American,0,4,0,0,3,-1,2013-01-31 11:52:39,2013-02-02 12:53:13,13002276MM10A,2013-01-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-01,Risk of Violence,3,Low,2013-02-01,2013-01-31,2013-02-02,3,1,1155,0,0,0\r\n6653,karlijo teague,karlijo,teague,2014-01-06,Female,1985-12-08,30,25 - 45,Caucasian,0,6,0,0,4,-1,2014-01-05 09:58:29,2014-02-04 01:08:43,13004640CF10A,,2014-01-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-06,Risk of Violence,5,Medium,2014-01-06,2014-01-05,2014-02-04,4,29,816,0,0,0\r\n6655,nicole daley,nicole,daley,2013-10-30,Female,1974-01-12,42,25 - 45,African-American,0,1,0,0,1,-10,2013-10-20 12:32:39,2013-10-20 06:19:35,13014644CF10A,,2013-10-20,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2013-10-20,2013-10-20,1,0,884,0,0,0\r\n6657,shanta mcfadden,shanta,mcfadden,2014-01-07,Female,1975-07-04,40,25 - 45,African-American,0,7,0,0,15,-1,2014-01-06 11:02:48,2014-03-13 06:17:07,14000345CF10A,,2014-01-07,0,F,arrest case no charge,1,15007638CF10A,(F3),,2014-12-01,Crim Use of Personal ID Info,,,,1,15001258CF10A,(F3),2015-01-27,Agg Fleeing and Eluding,Risk of Recidivism,7,Medium,2014-01-07,Risk of Violence,6,Medium,2014-01-07,2014-01-06,2014-03-13,15,65,328,1,1,1\r\n6659,odige greguer,odige,greguer,2014-03-02,Male,1994-10-11,21,Less than 25,African-American,0,7,0,0,0,0,2014-03-02 01:56:04,2014-03-05 03:46:32,14002935CF10A,2014-03-02,,0,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-02,Risk of Violence,8,High,2014-03-02,2014-03-02,2014-03-05,0,3,761,0,0,0\r\n6661,christopher henderson,christopher,henderson,2013-12-30,Male,1991-11-08,24,Less than 25,Caucasian,0,2,0,0,0,0,2013-12-30 06:38:43,2013-12-30 08:21:57,13017997CF10A,2013-12-30,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-30,Risk of Violence,3,Low,2013-12-30,2013-12-30,2013-12-30,0,0,823,0,0,0\r\n6662,james mchelen,james,mchelen,2013-04-22,Male,1974-07-20,41,25 - 45,African-American,0,1,0,0,0,-1,2013-04-21 11:38:31,2013-04-22 07:28:57,13005699CF10A,2013-04-21,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2013-04-21,2013-04-22,0,0,1075,0,0,0\r\n6663,vincent cash,vincent,cash,2013-10-03,Male,1976-12-18,39,25 - 45,African-American,0,4,0,0,1,-1,2013-10-02 05:59:48,2013-10-03 07:59:23,13013821CF10A,2013-10-02,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-03,Risk of Violence,2,Low,2013-10-03,2013-10-02,2013-10-03,1,0,911,0,0,0\r\n6665,laquana crawford,laquana,crawford,2013-01-25,Female,1992-03-18,24,Less than 25,African-American,0,8,0,0,3,-1,2013-01-24 01:05:25,2013-01-24 02:11:02,13001085CF10A,2013-01-23,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-25,Risk of Violence,10,High,2013-01-25,2013-03-22,2013-03-26,3,0,56,0,0,0\r\n6667,zaysha clark,zaysha,clark,2013-05-30,Female,1992-04-03,24,Less than 25,African-American,0,4,0,0,1,-23,2013-05-07 04:49:30,2013-05-08 01:00:01,13006539CF10A,2013-05-07,,23,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-30,Risk of Violence,4,Low,2013-05-30,2014-07-11,2014-08-22,1,0,407,0,0,0\r\n6669,percel kinder,percel,kinder,2013-08-22,Male,1976-07-22,39,25 - 45,African-American,0,10,0,0,35,-45,2013-07-08 12:14:46,2013-07-12 05:10:47,13005132CF10A,,2013-07-08,45,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-22,Risk of Violence,8,High,2013-08-22,2013-10-08,2013-10-22,35,0,47,0,0,0\r\n6679,amanda england,amanda,england,2014-07-08,Female,1990-03-12,26,25 - 45,Other,0,7,0,0,4,-1,2014-07-07 10:28:01,2014-07-09 10:06:53,14010484MM10A,2014-07-07,,1,M,Battery,1,14017040CF10A,(F3),0,2014-12-24,Felony Battery w/Prior Convict,2014-12-24,2014-12-25,,1,14017040CF10A,(F3),2014-12-24,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2014-07-08,Risk of Violence,4,Low,2014-07-08,2014-12-24,2014-12-25,4,1,169,1,1,1\r\n6685,derriviann rollins,derriviann,rollins,2013-01-09,Male,1972-03-15,44,25 - 45,African-American,0,5,0,0,0,-1,2013-01-08 05:46:22,2013-02-11 09:37:00,13000460MM10A,2013-01-08,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-09,Risk of Violence,4,Low,2013-01-09,2013-01-08,2013-02-11,0,33,1178,0,0,0\r\n6688,thomas mosiman,thomas,mosiman,2013-12-10,Male,1973-07-08,42,25 - 45,Caucasian,0,4,0,0,0,-1,2013-12-09 09:39:35,2013-12-10 01:03:57,13017038CF10A,2013-12-09,,1,F,Possession of LSD,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-10,Risk of Violence,1,Low,2013-12-10,2013-12-09,2013-12-10,0,0,843,0,0,0\r\n6689,jays batchanoo,jays,batchanoo,2014-02-10,Male,1971-01-05,45,Greater than 45,Caucasian,0,1,0,0,1,-2,2014-02-08 05:55:50,2014-02-09 08:45:07,14005077MU10A,2014-02-08,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-10,Risk of Violence,1,Low,2014-02-10,2014-02-08,2014-02-09,1,0,781,0,0,0\r\n6690,marcus walker,marcus,walker,2013-05-17,Male,1990-11-26,25,25 - 45,African-American,0,10,1,0,7,-1,2013-05-16 04:11:47,2013-06-05 09:16:19,13007009CF10A,2013-05-16,,1,F,Resist Officer w/Violence,1,15005653CF10A,(F3),,2015-04-30,Poss Pyrrolidinovalerophenone,,,,1,16002008MM10A,(M1),2016-02-10,Battery,Risk of Recidivism,10,High,2013-05-17,Risk of Violence,10,High,2013-05-17,2014-03-07,2014-04-13,7,19,294,0,1,1\r\n6691,deanna headley,deanna,headley,2013-02-20,Female,1987-08-28,28,25 - 45,Caucasian,0,9,0,0,7,606,2014-10-19 09:33:27,2015-03-13 06:27:01,11014152CF10A,,2012-06-21,244,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-20,Risk of Violence,6,Medium,2013-02-20,2014-10-19,2015-03-13,7,0,606,0,0,0\r\n6692,kalim bordones,kalim,bordones,2013-12-12,Male,1982-06-04,33,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-11 01:52:15,2013-12-16 11:33:44,13017134CF10A,2013-12-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-12,Risk of Violence,1,Low,2013-12-12,2013-12-11,2013-12-16,0,4,841,0,0,0\r\n6693,nicholas higgins,nicholas,higgins,2013-04-15,Male,1990-05-21,25,25 - 45,Caucasian,0,3,0,0,0,-1,2013-04-14 06:30:50,2013-04-17 09:00:35,13007216MM10A,2013-04-14,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-15,Risk of Violence,4,Low,2013-04-15,2013-04-14,2013-04-17,0,2,1082,0,0,0\r\n6695,dalonnte king,dalonnte,king,2013-05-31,Male,1984-01-04,32,25 - 45,African-American,0,4,1,0,5,-10,2013-05-21 04:49:19,2013-05-30 09:32:59,11004931CF10A,,2013-05-21,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-31,Risk of Violence,2,Low,2013-05-31,2013-05-21,2013-05-30,5,0,1036,0,0,0\r\n6696,dwayne means,dwayne,means,2013-05-10,Male,1992-10-30,23,Less than 25,African-American,0,7,0,0,0,-1,2013-05-09 11:11:46,2013-05-13 07:39:52,13006646CF10A,2013-05-09,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-10,Risk of Violence,5,Medium,2013-05-10,2013-05-09,2013-05-13,0,3,1057,0,0,0\r\n6697,kevin carr,kevin,carr,2013-01-07,Male,1976-05-29,39,25 - 45,Caucasian,0,5,0,0,0,-1,2013-01-06 10:10:12,2013-01-08 05:21:24,13000304MM10A,2013-01-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-07,Risk of Violence,2,Low,2013-01-07,2013-01-06,2013-01-08,0,1,1180,0,0,0\r\n6698,roy harris,roy,harris,2013-12-03,Male,1989-01-08,27,25 - 45,African-American,0,8,0,0,12,-1,2013-12-02 01:10:34,2013-12-03 01:33:52,13016662CF10A,2013-12-02,,1,F,Grand Theft Firearm,1,14006164CF10A,(M1),0,2014-05-02,Resist/Obstruct W/O Violence,2014-05-02,2014-05-03,,1,15002728MM10A,(M1),2015-03-07,Battery,Risk of Recidivism,8,High,2013-12-03,Risk of Violence,4,Low,2013-12-03,2014-05-02,2014-05-03,12,0,150,1,1,1\r\n6699,yajaira sosa,yajaira,sosa,2013-12-06,Female,1980-08-24,35,25 - 45,Caucasian,0,7,0,0,4,-1,2013-12-05 07:28:23,2013-12-07 04:01:47,13022583MM10A,2013-12-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-06,Risk of Violence,2,Low,2013-12-06,2013-12-05,2013-12-07,4,1,847,0,0,0\r\n6701,kwatavis campbell,kwatavis,campbell,2013-10-25,Male,1992-04-26,23,Less than 25,African-American,0,5,0,0,1,-58,2013-08-28 03:10:21,2013-08-30 05:38:20,13012168CF10A,2013-08-28,,58,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-25,Risk of Violence,6,Medium,2013-10-25,2014-02-19,2014-03-08,1,0,117,0,0,0\r\n6702,linell remekie,linell,remekie,2013-08-29,Female,1977-06-14,38,25 - 45,African-American,0,1,0,0,0,0,2013-08-29 05:44:52,2013-08-30 03:36:06,13016553MM10A,2013-08-29,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-29,Risk of Violence,1,Low,2013-08-29,2013-08-29,2013-08-30,0,1,946,0,0,0\r\n6703,brandon brooks,brandon,brooks,2013-03-25,Male,1985-06-15,30,25 - 45,African-American,0,2,0,0,4,-10,2013-03-15 05:52:37,2013-03-22 09:44:51,12016249CF10A,,2013-03-15,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-25,Risk of Violence,2,Low,2013-03-25,2013-03-15,2013-03-22,4,0,1103,0,0,0\r\n6704,michael hafford,michael,hafford,2013-12-17,Male,1985-12-28,30,25 - 45,Caucasian,0,5,0,0,1,-1,2013-12-16 10:45:49,2014-01-14 10:17:39,13017366CF10A,2013-12-16,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-17,Risk of Violence,2,Low,2013-12-17,2015-01-13,2015-01-21,1,28,392,0,0,0\r\n6705,crystal smith,crystal,smith,2013-02-13,Female,1986-02-12,30,25 - 45,Caucasian,0,8,0,0,0,0,2013-02-13 04:01:09,2013-02-13 08:39:18,13003177MM10A,2013-02-13,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-13,Risk of Violence,5,Medium,2013-02-13,2013-02-13,2013-02-13,0,0,1143,0,0,0\r\n6708,carey banton,carey,banton,2013-05-02,Male,1984-06-19,31,25 - 45,African-American,0,2,0,0,2,-1,2013-05-01 04:24:59,2013-05-03 09:29:24,13006281CF10A,2013-05-01,,1,F,Grand Theft in the 3rd Degree,1,15011802MM10A,(M2),0,2015-11-11,Petit Theft,2015-11-11,2015-11-12,,0,,,,,Risk of Recidivism,2,Low,2013-05-02,Risk of Violence,2,Low,2013-05-02,2014-07-19,2014-07-19,2,1,443,0,0,0\r\n6712,melanie graham,melanie,graham,2013-01-07,Female,1974-04-29,41,25 - 45,Caucasian,0,2,0,0,1,,,,12024683MM10A,2012-12-03,,35,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-07,Risk of Violence,1,Low,2013-01-07,,,1,0,1180,0,0,0\r\n6713,emmanuel jeanbaptiste,emmanuel,jeanbaptiste,2013-10-15,Male,1981-10-05,34,25 - 45,Other,0,2,0,0,0,-1,2013-10-14 03:41:56,2014-01-30 04:50:11,13014393CF10A,2013-10-14,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-15,Risk of Violence,2,Low,2013-10-15,2013-10-14,2014-01-30,0,107,899,0,0,0\r\n6715,stephanie derisse,stephanie,derisse,2013-08-04,Female,1990-11-24,25,25 - 45,African-American,0,5,0,0,0,-1,2013-08-03 01:49:54,2013-09-16 07:24:51,13014667MM10A,2013-08-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-04,Risk of Violence,4,Low,2013-08-04,2013-08-03,2013-09-16,0,43,971,0,0,0\r\n6717,stefany gallego,stefany,gallego,2013-02-19,Female,1989-05-19,26,25 - 45,Caucasian,0,6,0,0,1,-13,2013-02-06 10:37:48,2013-02-15 07:52:31,13001852CF10A,2013-02-06,,13,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-19,Risk of Violence,4,Low,2013-02-19,2013-02-06,2013-02-15,1,0,1137,0,0,0\r\n6721,kim mceachrane,kim,mceachrane,2013-03-25,Female,1978-06-17,37,25 - 45,African-American,0,1,0,0,0,-1,2013-03-24 06:22:00,2013-03-25 01:56:07,13005770MM10A,2013-03-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-03-24,2013-03-25,0,0,1103,0,0,0\r\n6722,rocco rombardo,rocco,rombardo,2013-12-27,Male,1982-02-28,34,25 - 45,Caucasian,0,5,0,1,3,-1,2013-12-26 08:22:16,2013-12-27 07:03:25,13023815MM10A,2013-12-26,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-27,Risk of Violence,5,Medium,2013-12-27,2013-12-26,2013-12-27,3,0,826,0,0,0\r\n6729,marilyn mejias,marilyn,mejias,2013-10-13,Female,1977-11-11,38,25 - 45,Hispanic,0,2,0,0,0,-1,2013-10-12 02:23:33,2013-11-06 11:22:29,13014318CF10A,2013-10-12,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-13,Risk of Violence,1,Low,2013-10-13,2013-10-12,2013-11-06,0,24,901,0,0,0\r\n6730,articia carter,articia,carter,2014-02-16,Female,1984-11-07,31,25 - 45,African-American,0,6,0,0,0,-1,2014-02-15 03:11:00,2014-02-17 12:42:48,14002660MM10A,2014-02-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-16,Risk of Violence,5,Medium,2014-02-16,2014-02-15,2014-02-17,0,1,775,0,0,0\r\n6731,linette alonso,linette,alonso,2013-04-10,Female,1986-08-21,29,25 - 45,Caucasian,0,2,0,0,0,0,2013-04-10 01:34:30,2013-04-10 08:51:16,13006873MM10A,2013-04-09,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,2,Low,2013-04-10,2013-04-10,2013-04-10,0,0,1087,0,0,0\r\n6733,sanjay sookhoo,sanjay,sookhoo,2013-02-01,Male,1993-07-30,22,Less than 25,African-American,0,4,0,0,0,-1,2013-01-31 02:25:40,2013-02-01 08:48:35,13001553CF10A,2013-01-31,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-01,Risk of Violence,6,Medium,2013-02-01,2015-10-26,2015-10-27,0,0,997,0,0,0\r\n6735,carmen manzanares,carmen,manzanares,2014-03-24,Female,1964-12-03,51,Greater than 45,Hispanic,0,1,0,0,0,-3,2014-03-21 10:24:01,2014-03-22 01:21:00,14004986MM10A,2014-03-21,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-24,Risk of Violence,1,Low,2014-03-24,2014-03-21,2014-03-22,0,0,739,0,0,0\r\n6739,dwayne cormier,dwayne,cormier,2014-12-30,Male,1968-09-01,47,Greater than 45,African-American,0,8,0,0,0,-1,2014-12-29 01:25:41,2014-12-30 07:58:52,14017157CF10A,2014-12-29,,1,F,Poss Pyrrolidinovalerophenone,1,15002041CF10A,(F2),1,2015-02-12,Robbery / No Weapon,2015-02-13,2015-09-21,,1,15002041CF10A,(F2),2015-02-12,Robbery / No Weapon,Risk of Recidivism,8,High,2014-12-30,Risk of Violence,6,Medium,2014-12-30,2015-02-13,2015-09-21,0,0,44,1,1,1\r\n6741,richllen metellus,richllen,metellus,2013-10-10,Male,1994-05-10,21,Less than 25,African-American,0,4,0,0,1,-1,2013-10-09 04:32:43,2013-10-10 05:30:24,13014178CF10A,2013-10-09,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-10,Risk of Violence,6,Medium,2013-10-10,2013-10-09,2013-10-10,1,0,904,0,0,0\r\n6747,neville henry,neville,henry,2013-03-07,Male,1992-11-02,23,Less than 25,African-American,0,9,0,1,5,-1,2013-03-06 05:57:50,2013-03-11 05:35:56,13003336CF10A,2013-03-06,,1,F,Grand Theft in the 3rd Degree,1,13007031MO10A,(MO3),0,2013-04-11,Retail Theft,2013-04-11,2013-04-26,,1,15000216MM10A,(M1),2015-01-06,Battery,Risk of Recidivism,9,High,2013-03-07,Risk of Violence,9,High,2013-03-07,2013-04-11,2013-04-26,5,4,35,1,1,1\r\n6748,fred alcius,fred,alcius,2013-09-16,Male,1992-04-26,23,Less than 25,Other,0,3,0,0,0,-1,2013-09-15 08:38:11,2013-09-16 07:24:21,13017574MM10A,2013-09-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-16,Risk of Violence,4,Low,2013-09-16,2013-09-15,2013-09-16,0,0,928,0,0,0\r\n6749,valentina parrish,valentina,parrish,2013-10-25,Female,1992-01-27,24,Less than 25,Caucasian,0,10,0,0,0,-1,2013-10-24 01:30:17,2013-10-24 09:21:19,13020094MM10A,2013-10-23,,2,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-10-25,Risk of Violence,6,Medium,2013-10-25,2014-02-13,2014-02-21,0,0,111,0,0,0\r\n6754,juliana byczkowski,juliana,byczkowski,2013-08-07,Female,1993-03-08,23,Less than 25,Hispanic,0,4,0,0,0,-2,2013-08-05 09:00:16,2013-08-06 01:36:03,13014751MM10A,2013-08-05,,2,M,Possess Drug Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-07,Risk of Violence,5,Medium,2013-08-07,2013-08-05,2013-08-06,0,0,968,0,0,0\r\n6755,camille hendricks,camille,hendricks,2014-11-19,Female,1996-06-24,19,Less than 25,African-American,0,4,0,0,0,-1,2014-11-18 01:22:13,2014-11-19 10:10:03,14016488MM10A,2014-11-18,,1,M,Criminal Mischief Damage <$200,1,16000229MM10A,(M1),,2015-07-19,Battery,,,,1,16000229MM10A,(M1),2015-07-19,Battery,Risk of Recidivism,4,Low,2014-11-19,Risk of Violence,6,Medium,2014-11-19,2014-11-18,2014-11-19,0,0,242,1,1,1\r\n6756,ryan leonard,ryan,leonard,2014-01-24,Male,1984-02-22,32,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-23 06:22:42,2014-01-29 01:56:31,14000996CF10A,2014-01-23,,1,F,Grand Theft (Motor Vehicle),1,15006693MM10A,(M1),,2015-06-21,Possess Cannabis/20 Grams Or Less,,,,1,15009879CF10A,(F7),2015-07-31,Burglary Dwelling Assault/Batt,Risk of Recidivism,1,Low,2014-01-24,Risk of Violence,2,Low,2014-01-24,2014-01-23,2014-01-29,0,5,513,1,1,1\r\n6758,jaime stepp,jaime,stepp,2013-03-25,Female,1976-06-25,39,25 - 45,Caucasian,0,1,0,0,0,-3,2013-03-22 04:27:55,2013-03-23 02:26:59,13005657MM10A,2013-03-22,,3,M,Lve/Scen/Acc/Veh/Prop/Damage,1,14012287MM10A,(M1),0,2014-08-13,Battery,2014-08-13,2014-08-14,,1,14012287MM10A,(M1),2014-08-13,Battery,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2014-08-13,2014-08-14,0,0,506,1,1,1\r\n6760,oba ifill,oba,ifill,2013-01-04,Male,1982-06-05,33,25 - 45,African-American,0,7,0,0,2,-1,2013-01-03 10:41:22,2013-09-19 06:33:59,13000139CF10A,2013-01-03,,1,F,Tamper With Witness,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-04,Risk of Violence,7,Medium,2013-01-04,2013-01-03,2013-09-19,2,258,1183,0,0,0\r\n6763,alicia heeralal,alicia,heeralal,2014-01-11,Female,1980-03-09,36,25 - 45,Caucasian,0,2,0,0,0,-1,2014-01-10 10:17:29,2014-01-11 01:14:10,14000517MM10A,2014-01-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-11,Risk of Violence,1,Low,2014-01-11,2014-01-10,2014-01-11,0,0,811,0,0,0\r\n6765,john sanchez,john,sanchez,2014-03-04,Male,1955-02-08,61,Greater than 45,Hispanic,0,1,0,0,1,-81,2013-12-13 09:41:31,2014-03-04 10:10:43,13017239CF10A,2013-12-13,,81,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-04,Risk of Violence,1,Low,2014-03-04,2013-12-13,2014-03-04,1,0,759,0,0,0\r\n6769,maria marineau,maria,marineau,2013-08-23,Female,1976-02-13,40,25 - 45,Caucasian,0,2,0,0,0,0,2013-08-23 04:51:28,2013-08-23 07:18:31,13011899CF10A,2013-08-23,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-23,Risk of Violence,1,Low,2013-08-23,2013-08-23,2013-08-23,0,0,952,0,0,0\r\n6771,jeffrey sims,jeffrey,sims,2013-09-04,Male,1963-02-18,53,Greater than 45,African-American,0,7,0,0,4,-4,2013-08-31 09:11:48,2013-09-02 08:18:28,13012323CF10A,2013-08-31,,4,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-08-31,2013-09-02,4,0,940,0,0,0\r\n6773,michelle gonzalez,michelle,gonzalez,2013-10-28,Female,1987-07-10,28,25 - 45,Caucasian,0,2,0,0,0,-1,2013-10-27 10:37:31,2013-10-28 08:11:04,13020372MM10A,2013-10-27,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-28,Risk of Violence,2,Low,2013-10-28,2013-10-27,2013-10-28,0,0,886,0,0,0\r\n6774,rosa zacariasreyes,rosa,zacariasreyes,2013-10-07,Male,1978-02-22,38,25 - 45,Hispanic,0,2,0,0,2,0,2013-10-07 03:09:55,2013-11-05 11:20:31,09021940MM10A,2009-09-13,,1485,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-10-07,2013-11-05,2,29,907,0,0,0\r\n6776,shawn beteza,shawn,beteza,2013-11-09,Male,1960-09-12,55,Greater than 45,Caucasian,0,3,0,0,0,-1,2013-11-08 11:23:28,2013-11-09 02:08:01,13015599CF10A,2013-11-08,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-09,Risk of Violence,1,Low,2013-11-09,2013-11-08,2013-11-09,0,0,874,0,0,0\r\n6778,steven khan,steven,khan,2013-08-22,Male,1993-09-01,22,Less than 25,African-American,1,7,0,0,1,-1,2013-08-21 06:28:25,2013-08-23 04:24:26,13015966MM10A,2013-08-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-22,Risk of Violence,6,Medium,2013-08-22,2013-08-21,2013-08-23,1,1,953,0,0,0\r\n6780,tiffaney batson,tiffaney,batson,2013-11-20,Female,1981-05-16,34,25 - 45,African-American,0,1,0,0,1,-1,2013-11-19 05:25:02,2013-11-21 09:38:50,13016064CF10A,2013-11-19,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-20,Risk of Violence,1,Low,2013-11-20,2013-11-19,2013-11-21,1,1,863,0,0,0\r\n6781,danald champ,danald,champ,2013-05-15,Male,1961-01-05,55,Greater than 45,Caucasian,0,2,0,0,1,-17,2013-04-28 07:24:17,2013-05-02 08:55:43,13008161MM10A,2013-04-28,,17,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-15,Risk of Violence,3,Low,2013-05-15,2013-04-28,2013-05-02,1,0,1052,0,0,0\r\n6782,luis ayalaadorno,luis,ayalaadorno,2013-02-17,Male,1991-12-11,24,Less than 25,Hispanic,0,8,0,0,2,0,2013-02-17 12:51:20,2013-05-20 05:55:11,11006737CF10A,,2013-02-16,1,F,arrest case no charge,1,15007127CF10A,(F2),0,2015-05-31,Aggravated Battery / Pregnant,2015-05-31,2015-06-01,,1,15007127CF10A,(F2),2015-05-31,Aggravated Battery / Pregnant,Risk of Recidivism,8,High,2013-02-17,Risk of Violence,6,Medium,2013-02-17,2015-04-11,2015-04-12,2,92,783,0,0,0\r\n6784,zida boubacar,zida,boubacar,2013-09-09,Male,1975-04-07,41,25 - 45,Other,0,1,0,0,0,0,2013-09-09 04:00:04,2013-09-09 08:07:16,13017204MM10A,2013-09-09,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2013-09-09,2013-09-09,0,0,935,0,0,0\r\n6786,jose granados,jose,granados,2013-07-15,Male,1975-01-02,41,25 - 45,Hispanic,0,3,0,0,0,-2,2013-07-13 07:47:49,2013-07-14 01:34:09,13009842CF10A,2013-07-13,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-15,Risk of Violence,1,Low,2013-07-15,2013-07-13,2013-07-14,0,0,991,0,0,0\r\n6788,barry bell,barry,bell,2013-02-06,Male,1955-01-20,61,Greater than 45,African-American,0,3,0,0,12,-1,2013-02-05 05:43:08,2013-10-05 05:26:21,13002961CF10A,2013-02-05,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-06,Risk of Violence,4,Low,2013-02-06,2013-02-05,2013-10-05,12,241,1150,0,0,0\r\n6791,telford wallace,telford,wallace,2013-04-27,Male,1958-05-09,57,Greater than 45,African-American,0,1,0,0,3,0,2013-04-27 06:02:34,2013-04-29 01:41:38,13006054CF10A,2013-04-27,,0,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-27,2013-04-29,3,2,1070,0,0,0\r\n6793,abigail pomales,abigail,pomales,2013-10-20,Female,1977-10-10,38,25 - 45,Caucasian,0,3,0,0,2,-1,2013-10-19 06:29:28,2013-10-20 05:02:11,13019813MM10A,2013-10-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-20,Risk of Violence,2,Low,2013-10-20,2013-10-19,2013-10-20,2,0,894,0,0,0\r\n6796,tony stricklin,tony,stricklin,2014-11-28,Male,1992-08-20,23,Less than 25,African-American,0,2,0,0,0,-1,2014-11-27 03:02:28,2014-11-28 01:33:26,14015921CF10A,2014-11-27,,1,F,Fleeing Or Attmp Eluding A Leo,1,15004991CF10A,(M1),0,2015-04-16,Resist/Obstruct W/O Violence,2015-04-16,2015-05-29,,1,15004991CF10A,(F3),2015-04-16,Battery on Law Enforc Officer,Risk of Recidivism,2,Low,2014-11-28,Risk of Violence,3,Low,2014-11-28,2015-04-16,2015-05-29,0,0,139,1,1,1\r\n6798,adam young,adam,young,2013-11-19,Male,1992-04-24,23,Less than 25,Caucasian,0,5,0,0,3,-1,2013-11-18 11:04:11,2013-11-28 03:13:08,13016026CF10A,2013-11-18,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-19,Risk of Violence,6,Medium,2013-11-19,2013-11-18,2013-11-28,3,9,864,0,0,0\r\n6800,jahreal young,jahreal,young,2013-12-10,Male,1995-06-03,20,Less than 25,African-American,0,3,0,0,0,-1,2013-12-09 07:22:09,2013-12-10 01:53:59,13017043CF10A,2013-12-09,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-10,Risk of Violence,5,Medium,2013-12-10,2013-12-09,2013-12-10,0,0,843,0,0,0\r\n6801,edmund bruguier,edmund,bruguier,2013-10-04,Male,1971-06-27,44,25 - 45,Caucasian,0,8,0,0,1,-1,2013-10-03 06:09:07,2013-10-04 08:07:14,13013889CF10A,2013-10-03,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-04,Risk of Violence,5,Medium,2013-10-04,2013-10-03,2013-10-04,1,0,910,0,0,0\r\n6802,genevieve savage,genevieve,savage,2014-01-10,Female,1977-10-11,38,25 - 45,Caucasian,0,1,0,0,1,-23,2013-12-18 11:16:17,2013-12-20 06:03:00,13023417MM10A,2013-12-18,,23,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-10,Risk of Violence,1,Low,2014-01-10,2013-12-18,2013-12-20,1,0,812,0,0,0\r\n6808,willins louis,willins,louis,2013-12-27,Male,1983-05-16,32,25 - 45,Other,0,1,0,0,0,-1,2013-12-26 06:54:13,2013-12-27 09:23:36,14002330CF10A,2013-12-26,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-27,Risk of Violence,2,Low,2013-12-27,2014-05-05,2014-05-06,0,0,129,0,0,0\r\n6809,xavier gilbert,xavier,gilbert,2013-11-20,Male,1986-11-21,29,25 - 45,African-American,0,6,0,0,0,0,2013-11-20 02:07:01,2013-11-21 03:36:00,13016124CF10A,2013-11-20,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-20,Risk of Violence,3,Low,2013-11-20,2013-11-20,2013-11-21,0,1,863,0,0,0\r\n6811,lorenzo pulliam,lorenzo,pulliam,2013-01-17,Male,1992-09-20,23,Less than 25,African-American,0,9,0,0,3,-1,2013-01-16 09:46:14,2013-03-01 09:56:04,13000750CF10A,2013-01-16,,1,F,Grand Theft (Motor Vehicle),1,13006238CF10A,(F2),0,2013-05-01,Robbery / No Weapon,2013-05-01,2013-09-17,,1,13006238CF10A,(F2),2013-05-01,Robbery / No Weapon,Risk of Recidivism,9,High,2013-01-17,Risk of Violence,8,High,2013-01-17,2013-05-01,2013-09-17,3,43,104,1,1,1\r\n6812,ryan wert,ryan,wert,2013-12-19,Male,1991-08-12,24,Less than 25,Caucasian,0,4,0,1,1,-23,2013-11-26 11:09:43,2013-11-28 12:59:40,13016495CF10A,2013-11-26,,23,F,Possession of Morphine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-19,Risk of Violence,4,Low,2013-12-19,2013-11-26,2013-11-28,1,0,834,0,0,0\r\n6813,veugopalan devaswamparambil,veugopalan,devaswamparambil,2014-02-03,Male,1970-05-13,45,Greater than 45,Other,0,1,0,0,0,0,2014-02-03 03:10:19,2014-02-03 01:15:51,14004308MU10A,2014-02-03,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-03,2014-02-03,0,0,788,0,0,0\r\n6815,gregory taylor,gregory,taylor,2014-03-20,Male,1995-02-08,21,Less than 25,African-American,0,9,1,0,2,-1,2014-03-19 07:43:15,2014-03-20 09:45:37,14003851CF10A,2014-03-19,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-20,Risk of Violence,7,Medium,2014-03-20,2014-03-19,2014-03-20,2,0,743,0,0,0\r\n6816,tereese king,tereese,king,2013-10-05,Female,1986-08-08,29,25 - 45,African-American,0,2,0,0,0,0,2013-10-05 04:27:04,2013-10-06 08:51:00,13018956MM10A,2013-10-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-05,Risk of Violence,2,Low,2013-10-05,2013-10-05,2013-10-06,0,1,909,0,0,0\r\n6820,frank hamilton,frank,hamilton,2013-08-07,Male,1990-05-01,25,25 - 45,African-American,0,3,0,0,1,0,2013-08-07 04:39:32,2013-08-07 08:25:38,13011052CF10A,2013-08-07,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-07,Risk of Violence,4,Low,2013-08-07,2013-08-07,2013-08-07,1,0,968,0,0,0\r\n6824,paul gonzalez,paul,gonzalez,2013-01-03,Male,1970-01-25,46,Greater than 45,Hispanic,0,3,0,0,13,-1,2013-01-02 05:11:36,2013-05-24 03:31:20,13000057CF10A,2013-01-02,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2013-01-02,2013-05-24,13,141,1184,0,0,0\r\n6828,kelvin diaz,kelvin,diaz,2013-12-15,Male,1988-08-02,27,25 - 45,Caucasian,0,2,0,0,2,-1,2013-12-14 06:09:17,2013-12-16 02:52:14,13017296CF10A,2013-12-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-15,Risk of Violence,3,Low,2013-12-15,2013-12-14,2013-12-16,2,1,838,0,0,0\r\n6829,michael lewis,michael,lewis,2013-01-09,Male,1966-09-11,49,Greater than 45,African-American,0,2,0,0,0,,,,,,,,M,,1,15001201MO10A,(MO3),1,2015-01-28,Disorderly Conduct,2015-01-29,2015-04-13,,0,,,,,Risk of Recidivism,2,Low,2013-01-09,Risk of Violence,2,Low,2013-01-09,2013-01-09,2013-01-10,0,1,749,1,0,0\r\n6834,roberto sevilla,roberto,sevilla,2014-03-18,Male,1979-03-17,37,25 - 45,Hispanic,0,1,0,0,1,-1,2014-03-17 06:38:54,2014-03-19 10:23:01,14003762CF10A,2014-03-17,,1,F,Aggravated Battery On 65/Older,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-18,Risk of Violence,1,Low,2014-03-18,2014-03-17,2014-03-19,1,1,745,0,0,0\r\n6836,alexander lopez,alexander,lopez,2014-03-26,Male,1994-06-21,21,Less than 25,Caucasian,0,3,0,0,0,-1,2014-03-25 03:55:09,2014-03-27 03:42:00,14004241CF10A,2014-03-25,,1,F,False Ownership Info/Pawn Item,1,14009053MM10A,(M1),0,2014-06-07,Battery,2014-06-07,2014-06-08,,1,14009053MM10A,(M1),2014-06-07,Battery,Risk of Recidivism,3,Low,2014-03-26,Risk of Violence,5,Medium,2014-03-26,2014-06-07,2014-06-08,0,1,73,1,1,1\r\n6847,lisa byrum,lisa,byrum,2014-01-31,Female,1987-07-06,28,25 - 45,African-American,0,7,0,0,4,-1,2014-01-30 06:24:26,2014-02-01 09:12:42,13017167CF10A,,2014-01-30,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-31,Risk of Violence,3,Low,2014-01-31,2014-01-30,2014-02-01,4,1,791,0,0,0\r\n6857,malina campbell,malina,campbell,2013-03-20,Female,1987-09-08,28,25 - 45,African-American,0,2,0,0,0,0,2013-03-20 03:43:32,2013-03-21 01:37:09,13005459MM10A,2013-03-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-20,Risk of Violence,2,Low,2013-03-20,2013-03-20,2013-03-21,0,1,1108,0,0,0\r\n6858,gregory beder,gregory,beder,2013-11-12,Male,1957-06-13,58,Greater than 45,Caucasian,0,2,0,0,3,-4,2013-11-08 10:40:39,2013-11-09 01:44:01,13021139MM10A,2013-11-08,,4,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-12,Risk of Violence,1,Low,2013-11-12,2013-11-08,2013-11-09,3,0,871,0,0,0\r\n6859,jacob baziak,jacob,baziak,2014-05-16,Male,1993-09-25,22,Less than 25,Caucasian,0,4,0,0,0,-1,2014-05-15 07:37:39,2014-05-21 08:48:32,14006771CF10A,2014-05-15,,1,F,Harm Public Servant Or Family,1,15001138MM10A,(M1),0,2015-01-28,Criminal Mischief>$200<$1000,2015-01-28,2015-02-06,,1,15001138MM10A,(M1),2015-01-28,Battery,Risk of Recidivism,4,Low,2014-05-16,Risk of Violence,5,Medium,2014-05-16,2015-01-28,2015-02-06,0,5,257,1,1,1\r\n6862,donald jarrett,donald,jarrett,2013-12-17,Male,1984-11-20,31,25 - 45,African-American,0,4,0,0,5,-1,2013-12-16 07:40:55,2013-12-18 10:47:22,13017381CF10A,2013-12-16,,1,F,Cruelty Toward Child,1,16000452MM30A,(M1),,2016-03-01,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-17,Risk of Violence,3,Low,2013-12-17,2013-12-16,2013-12-18,5,1,805,1,0,0\r\n6863,james brantley,james,brantley,2013-03-24,Male,1983-01-11,33,25 - 45,African-American,0,3,0,0,0,0,2013-03-24 07:30:48,2013-05-03 09:30:14,13004270CF10A,2013-03-24,,0,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-24,Risk of Violence,3,Low,2013-03-24,2013-03-24,2013-05-03,0,40,1104,0,0,0\r\n6866,mariah jackson,mariah,jackson,2014-01-29,Female,1993-02-28,23,Less than 25,African-American,0,5,1,0,1,0,2014-01-29 12:59:29,2014-01-29 07:47:45,14001630MM10A,2014-01-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-29,Risk of Violence,5,Medium,2014-01-29,2014-01-29,2014-01-29,1,0,793,0,0,0\r\n6870,raymond siggins,raymond,siggins,2013-09-20,Male,1983-09-24,32,25 - 45,Caucasian,0,10,0,0,11,-1,2013-09-19 02:19:06,2014-02-07 08:54:45,13013226CF10A,2013-09-19,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-20,Risk of Violence,9,High,2013-09-20,2013-09-19,2014-02-07,11,140,924,0,0,0\r\n6872,calvin chamblis,calvin,chamblis,2013-01-08,Male,1958-05-18,57,Greater than 45,African-American,0,2,0,0,2,,,,13000285CF10A,2013-01-07,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-08,Risk of Violence,1,Low,2013-01-08,,,2,0,1179,0,0,0\r\n6875,nicholas scafidi,nicholas,scafidi,2013-04-07,Male,1993-12-01,22,Less than 25,Caucasian,0,8,0,0,0,0,2013-04-07 02:58:17,2013-04-08 03:59:46,13005002CF10A,2013-04-07,,0,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-07,Risk of Violence,8,High,2013-04-07,2013-04-07,2013-04-08,0,1,1090,0,0,0\r\n6877,lashunda barbary,lashunda,barbary,2013-04-17,Female,1981-03-03,35,25 - 45,African-American,0,2,0,0,2,-1,2013-04-16 01:34:39,2013-04-17 06:59:17,13005445CF10A,2013-04-15,,2,F,Aggrav Child Abuse-Agg Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-17,Risk of Violence,1,Low,2013-04-17,2013-07-24,2013-10-04,2,0,98,0,0,0\r\n6881,elvis morales,elvis,morales,2013-07-23,Male,1981-04-17,35,25 - 45,Hispanic,0,1,0,0,2,-14,2013-07-09 12:32:41,2013-07-23 10:10:46,13009554CF10A,2013-07-08,,15,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-23,Risk of Violence,1,Low,2013-07-23,2015-03-17,2015-11-14,2,0,602,0,0,0\r\n6883,diane gay,diane,gay,2013-05-13,Female,1961-05-15,54,Greater than 45,Caucasian,0,2,0,0,1,-7,2013-05-06 04:01:50,2013-05-10 08:38:25,13008747MM10A,2013-05-06,,7,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2014-05-16,2014-05-16,1,0,368,0,0,0\r\n6884,cameron weaver,cameron,weaver,2013-08-11,Male,1987-03-16,29,25 - 45,Caucasian,0,8,0,0,0,-1,2013-08-10 05:05:35,2013-11-08 03:38:30,13011238CF10A,2013-08-10,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-11,Risk of Violence,3,Low,2013-08-11,2013-08-10,2013-11-08,0,89,964,0,0,0\r\n6888,demetrius bryant,demetrius,bryant,2013-02-09,Female,1979-08-03,36,25 - 45,African-American,0,6,0,0,0,0,2013-02-09 04:56:26,2013-02-10 01:22:54,11003479MO40A,,2013-02-09,0,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-09,Risk of Violence,2,Low,2013-02-09,2013-02-09,2013-02-10,0,1,1147,0,0,0\r\n6893,gilton bain,gilton,bain,2013-03-02,Male,1990-09-23,25,25 - 45,African-American,0,5,0,0,0,0,2013-03-02 01:54:09,2013-03-04 09:44:28,13003163CF10A,2013-03-01,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-02,Risk of Violence,5,Medium,2013-03-02,2013-03-02,2013-03-04,0,2,1126,0,0,0\r\n6894,brian cole,brian,cole,2013-08-01,Male,1987-01-28,29,25 - 45,African-American,0,5,0,0,2,-1,2013-07-31 06:22:13,2013-08-01 08:25:25,11078240TC20A,2011-11-05,,635,M,Fail Register Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-01,Risk of Violence,3,Low,2013-08-01,2013-07-31,2013-08-01,2,0,974,0,0,0\r\n6896,juan prebal,juan,prebal,2013-11-30,Male,1985-02-20,31,25 - 45,Hispanic,0,10,0,0,0,0,2013-11-30 05:18:06,2013-11-30 01:05:02,13016608CF10A,2013-11-30,,0,F,Possession of Cocaine,1,14000745CF10A,(F2),0,2014-01-17,Robbery / No Weapon,2014-01-17,2014-03-08,,1,14000745CF10A,(F2),2014-01-17,Robbery / No Weapon,Risk of Recidivism,10,High,2013-11-30,Risk of Violence,9,High,2013-11-30,2014-01-17,2014-03-08,0,0,48,1,1,1\r\n6898,wilner mascary,wilner,mascary,2013-09-26,Male,1953-06-12,62,Greater than 45,African-American,0,1,0,0,4,,,,12013816CF10A,,2012-09-20,371,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-26,Risk of Violence,1,Low,2013-09-26,,,4,0,918,0,0,0\r\n6899,eric smithberg,eric,smithberg,2013-01-10,Male,1976-11-11,39,25 - 45,Caucasian,0,2,0,0,0,0,2013-01-10 02:12:21,2013-01-10 07:13:09,13000586MM10A,2013-01-09,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-10,Risk of Violence,2,Low,2013-01-10,2013-01-10,2013-01-10,0,0,1177,0,0,0\r\n6901,melinda white,melinda,white,2014-01-23,Female,1992-06-29,23,Less than 25,African-American,0,7,0,0,0,0,2014-01-23 01:39:34,2014-01-23 08:11:47,14001015CF10A,2014-01-23,,0,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-23,Risk of Violence,4,Low,2014-01-23,2014-01-23,2014-01-23,0,0,799,0,0,0\r\n6904,nia-tarin mars,nia-tarin,mars,2013-12-23,Female,1993-04-09,23,Less than 25,African-American,0,4,0,0,1,-1,2013-12-22 09:21:51,2013-12-23 04:21:18,13017645CF10A,,2013-12-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-23,Risk of Violence,4,Low,2013-12-23,2013-12-22,2013-12-23,1,0,830,0,0,0\r\n6906,yaquelyn iranzo,yaquelyn,iranzo,2013-06-17,Female,1978-10-08,37,25 - 45,Hispanic,0,3,0,0,0,-3,2013-06-14 10:05:29,2013-06-15 01:27:00,13011462MM10A,2013-06-14,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-17,Risk of Violence,3,Low,2013-06-17,2013-06-14,2013-06-15,0,0,1019,0,0,0\r\n6912,zelda kinchen,zelda,kinchen,2014-02-26,Female,1955-04-10,61,Greater than 45,African-American,0,6,0,0,1,-79,2013-12-09 10:48:15,2014-01-30 10:28:00,11014615CF10A,,2013-12-09,79,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-26,Risk of Violence,3,Low,2014-02-26,2013-12-09,2014-01-30,1,0,765,0,0,0\r\n6915,delama casimir,delama,casimir,2013-01-13,Male,1985-12-12,30,25 - 45,African-American,0,7,1,0,9,-1,2013-01-12 01:44:17,2013-01-20 02:33:15,13000551CF10A,2013-01-12,,1,F,Criminal Mischief,1,14005038CF10A,(F3),0,2014-04-11,Grand Theft in the 3rd Degree,2014-04-11,2014-05-16,,1,14015208MM10A,(M1),2014-10-19,Battery,Risk of Recidivism,7,Medium,2013-01-13,Risk of Violence,2,Low,2013-01-13,2014-04-11,2014-05-16,9,7,453,1,1,1\r\n6916,carl fleming,carl,fleming,2013-02-23,Male,1992-11-04,23,Less than 25,African-American,0,6,0,0,1,-1,2013-02-22 09:55:37,2013-03-30 04:46:32,13002762CF10A,2013-02-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-23,Risk of Violence,5,Medium,2013-02-23,2013-02-22,2013-03-30,1,35,1133,0,0,0\r\n6919,savanna saintilus,savanna,saintilus,2013-01-10,Female,1988-06-30,27,25 - 45,African-American,0,3,0,0,0,-2,2013-01-08 07:18:36,2013-01-09 01:34:00,13000307CF10A,2013-01-08,,2,F,Neglect Child / Bodily Harm,1,14002273CF10A,(F2),0,2014-02-18,Aggrav Battery w/Deadly Weapon,2014-02-18,2014-05-23,,1,14002273CF10A,(F2),2014-02-18,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,3,Low,2013-01-10,Risk of Violence,3,Low,2013-01-10,2014-02-18,2014-05-23,0,0,404,1,1,1\r\n6920,travis reed,travis,reed,2013-02-06,Male,1977-12-12,38,25 - 45,African-American,0,6,1,0,10,-1,2013-02-05 08:38:14,2013-02-06 02:15:49,13001791CF10A,2013-02-05,,1,M,Possess Cannabis 1000FTSch,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-06,Risk of Violence,2,Low,2013-02-06,2014-06-27,2014-07-02,10,0,506,0,0,0\r\n6921,sheridan collier,sheridan,collier,2014-02-01,Male,1973-08-10,42,25 - 45,African-American,0,1,0,0,1,-1,2014-01-31 07:36:13,2014-02-02 04:00:35,13016504CF10A,,2014-01-31,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-01,Risk of Violence,1,Low,2014-02-01,2014-12-04,2014-12-12,1,1,306,0,0,0\r\n6923,terrance moye,terrance,moye,2013-04-06,Male,1984-08-01,31,25 - 45,African-American,0,3,0,0,0,-1,2013-04-05 12:30:30,2013-04-06 08:02:02,13005072CF10A,2013-04-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-06,Risk of Violence,2,Low,2013-04-06,2013-04-05,2013-04-06,0,0,1091,0,0,0\r\n6927,boston johnson,boston,johnson,2013-11-12,Male,1972-07-01,43,25 - 45,African-American,0,5,0,0,1,-1,2013-11-11 06:15:16,2013-11-16 12:03:49,13021226MM10A,2013-11-11,,1,M,Battery,1,15009798MM10A,(M1),0,2015-09-15,Battery,2015-09-15,2015-09-20,,1,15009798MM10A,(M1),2015-09-15,Battery,Risk of Recidivism,5,Medium,2013-11-12,Risk of Violence,4,Low,2013-11-12,2015-09-15,2015-09-20,1,4,672,1,1,1\r\n6929,glenn morris,glenn,morris,2013-09-07,Male,1976-12-03,39,25 - 45,Caucasian,0,3,0,0,0,-1,2013-09-06 10:19:32,2013-09-12 08:10:36,13012607CF10A,2013-09-06,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-07,Risk of Violence,1,Low,2013-09-07,2013-09-06,2013-09-12,0,5,937,0,0,0\r\n6931,marcus posey,marcus,posey,2013-02-04,Male,1984-08-23,31,25 - 45,African-American,0,2,0,0,0,-1,2013-02-03 10:14:16,2013-02-07 05:51:57,13001692CF10A,2013-02-03,,1,M,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-04,Risk of Violence,2,Low,2013-02-04,2013-02-03,2013-02-07,0,3,1152,0,0,0\r\n6934,roger byrum,roger,byrum,2013-12-19,Female,1982-06-21,33,25 - 45,African-American,0,3,0,0,0,0,2013-12-19 03:05:43,2013-12-21 09:50:58,13017526CF10A,2013-12-19,,0,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-19,Risk of Violence,2,Low,2013-12-19,2013-12-19,2013-12-21,0,2,834,0,0,0\r\n6935,zachary moore,zachary,moore,2013-01-27,Male,1994-08-13,21,Less than 25,Caucasian,0,5,1,0,1,115,2013-05-22 07:12:57,2013-05-28 06:47:30,13001323CF10A,2013-01-27,,0,F,Possession of Cocaine,1,13015575MM10A,(M1),0,2013-08-17,Resist/Obstruct W/O Violence,2013-08-17,2013-09-17,,1,14011902CF10A,(F2),2014-09-01,Robbery / No Weapon,Risk of Recidivism,5,Medium,2013-01-27,Risk of Violence,7,Medium,2013-01-27,2013-05-22,2013-05-28,1,0,115,0,1,1\r\n6936,nickles stfleur,nickles,stfleur,2013-12-16,Male,1992-09-19,23,Less than 25,African-American,0,6,0,0,1,-1,2013-12-15 04:22:32,2014-04-14 11:42:17,13017336CF10A,2013-12-15,,1,F,Aggravated Battery / Pregnant,1,14015878CF10A,(F3),,2014-09-25,Felony Battery (Dom Strang),,,,1,14015878CF10A,(F3),2014-09-25,Felony Battery (Dom Strang),Risk of Recidivism,6,Medium,2013-12-16,Risk of Violence,8,High,2013-12-16,2013-12-15,2014-04-14,1,119,283,1,1,1\r\n6937,maricelis hernandez,maricelis,hernandez,2013-04-17,Female,1987-01-26,29,25 - 45,Caucasian,0,4,0,0,0,-1,2013-04-16 02:44:06,2013-05-14 08:05:34,13005536CF10A,2013-04-16,,1,F,Consp Traff Oxycodone  4g><14g,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-17,Risk of Violence,3,Low,2013-04-17,2013-04-16,2013-05-14,0,27,1080,0,0,0\r\n6939,michael madia,michael,madia,2013-01-16,Male,1954-03-10,62,Greater than 45,Caucasian,0,1,0,0,2,-4,2013-01-12 01:16:30,2013-01-15 07:17:11,13001825CF10A,2013-01-11,,5,F,Solicit Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-16,Risk of Violence,1,Low,2013-01-16,2013-02-06,2013-02-07,2,0,21,0,0,0\r\n6944,ella burburan,ella,burburan,2014-03-18,Female,1971-05-27,44,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-17 06:48:31,2014-03-18 01:08:58,14004619MM10A,2014-03-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-18,Risk of Violence,1,Low,2014-03-18,2014-03-17,2014-03-18,0,0,745,0,0,0\r\n6948,isaac gray,isaac,gray,2013-03-18,Male,1986-04-18,30,25 - 45,African-American,0,5,0,0,0,0,2013-03-18 03:34:14,2013-03-18 06:25:19,13003921CF10A,2013-03-18,,0,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-18,Risk of Violence,3,Low,2013-03-18,2013-03-18,2013-03-18,0,0,1110,0,0,0\r\n6950,kenneth mcminn,kenneth,mcminn,2013-03-09,Male,1964-04-26,51,Greater than 45,Caucasian,0,6,0,0,3,-1,2013-03-08 12:35:15,2013-03-25 08:50:15,13003469CF10A,2013-03-08,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-09,Risk of Violence,3,Low,2013-03-09,2014-07-19,2014-07-28,3,16,497,0,0,0\r\n6952,keon johnson,keon,johnson,2014-02-03,Male,1994-07-30,21,Less than 25,African-American,0,5,0,0,0,-1,2014-02-02 11:07:12,2014-02-05 07:54:36,14001471CF10A,2014-02-02,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-03,Risk of Violence,6,Medium,2014-02-03,2014-02-02,2014-02-05,0,2,788,0,0,0\r\n6957,akeine banner,akeine,banner,2013-01-02,Male,1988-11-10,27,25 - 45,African-American,0,9,0,0,3,-1,2013-01-01 03:16:15,2013-01-10 04:12:28,13000047CF10A,2013-01-01,,1,F,Carrying Concealed Firearm,1,13017941CF10A,(F1),1,2013-12-28,Robbery W/Firearm,2013-12-29,2015-04-02,,1,13017941CF10A,(F1),2013-12-28,Robbery W/Firearm,Risk of Recidivism,9,High,2013-01-02,Risk of Violence,5,Medium,2013-01-02,2013-01-01,2013-01-10,3,8,360,1,1,1\r\n6959,cedgar caraveo,cedgar,caraveo,2013-04-20,Male,1987-10-30,28,25 - 45,Hispanic,0,4,0,0,0,0,2013-04-20 05:28:13,2013-04-20 07:17:54,13005679CF10A,2013-04-20,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,2,Low,2013-04-20,2013-04-20,2013-04-20,0,0,1077,0,0,0\r\n6960,judy fleurimond,judy,fleurimond,2013-10-28,Female,1985-03-31,31,25 - 45,African-American,0,1,0,0,0,-1,2013-10-27 01:53:54,2013-10-29 08:51:33,13015008CF10A,2013-10-27,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-28,Risk of Violence,1,Low,2013-10-28,2013-10-27,2013-10-29,0,1,886,0,0,0\r\n6963,elizabeth carlson,elizabeth,carlson,2013-10-02,Female,1967-03-01,49,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-10-01 06:01:14,2013-10-02 03:31:06,13013862CF10A,2013-10-01,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,2013-10-01,2013-10-02,2,0,912,0,0,0\r\n6965,kela simpson,kela,simpson,2013-04-19,Female,1974-09-12,41,25 - 45,Other,0,3,0,0,2,-1,2013-04-18 08:43:09,2013-05-04 02:25:51,04016984CF10C,,2013-04-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-19,Risk of Violence,3,Low,2013-04-19,2014-11-08,2015-01-15,2,15,568,0,0,0\r\n6967,edwin oliva,edwin,oliva,2013-10-24,Male,1995-08-05,20,Less than 25,Caucasian,0,4,0,5,0,-1,2013-10-23 05:29:31,2013-10-24 09:33:22,13020111MM10A,2013-10-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-24,Risk of Violence,7,Medium,2013-10-24,2013-10-23,2013-10-24,0,0,890,0,0,0\r\n6975,antwoin graham,antwoin,graham,2013-04-08,Male,1992-12-19,23,Less than 25,African-American,0,9,1,0,4,0,2013-04-08 12:39:29,2013-10-18 05:35:27,13001063CF10A,,2013-04-07,1,F,arrest case no charge,1,13023858MM10A,(M1),0,2013-11-20,Trespass Struct/Convey Occupy,2013-11-20,2014-12-23,,1,13016111CF10A,(F7),2013-11-20,Burglary Dwelling Assault/Batt,Risk of Recidivism,9,High,2013-04-08,Risk of Violence,9,High,2013-04-08,2013-11-20,2014-12-23,4,193,226,1,1,1\r\n6976,mathew miranda,mathew,miranda,2013-12-10,Male,1989-11-01,26,25 - 45,Caucasian,0,4,0,0,0,-1,2013-12-09 11:19:57,2013-12-12 09:19:18,13022788MM10A,2013-12-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-10,Risk of Violence,3,Low,2013-12-10,2013-12-09,2013-12-12,0,2,843,0,0,0\r\n6979,piero delsolar,piero,delsolar,2013-03-23,Male,1987-05-31,28,25 - 45,Caucasian,0,2,0,0,1,0,2013-03-23 05:48:15,2013-03-24 07:18:54,13005703MM10A,2013-03-23,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-23,Risk of Violence,2,Low,2013-03-23,2013-03-23,2013-03-24,1,1,1105,0,0,0\r\n6983,ricky burley,ricky,burley,2013-06-28,Male,1964-01-28,52,Greater than 45,African-American,0,1,0,0,4,-5,2013-06-23 12:28:04,2013-06-28 12:05:48,13012027MM10A,2013-06-23,,5,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-28,Risk of Violence,1,Low,2013-06-28,2013-06-23,2013-06-28,4,0,1008,0,0,0\r\n6986,adam rivera,adam,rivera,2013-12-16,Male,1979-07-15,36,25 - 45,Hispanic,0,5,0,0,1,-1,2013-12-15 10:34:57,2013-12-19 10:27:31,13023230MM10A,2013-12-15,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-16,Risk of Violence,3,Low,2013-12-16,2013-12-15,2013-12-19,1,3,837,0,0,0\r\n6988,abraham gutierrez,abraham,gutierrez,2013-06-24,Male,1962-03-24,54,Greater than 45,Hispanic,0,5,0,0,5,149,2013-11-20 02:24:22,2014-02-22 01:33:10,11015284CF10A,2011-09-13,,650,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-06-24,Risk of Violence,1,Low,2013-06-24,2013-11-20,2014-02-22,5,0,149,0,0,0\r\n6990,vanessa gause,vanessa,gause,2013-10-07,Male,1962-02-25,54,Greater than 45,African-American,0,6,0,0,3,-66,2013-08-02 09:41:15,2013-10-07 11:12:37,13027058TC10A,2013-06-04,,125,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-07,Risk of Violence,2,Low,2013-10-07,2013-08-02,2013-10-07,3,0,907,0,0,0\r\n6999,shaquille brown,shaquille,brown,2014-02-20,Male,1993-06-25,22,Less than 25,African-American,0,4,0,0,0,0,2014-02-20 12:25:52,2014-02-20 08:57:04,14002366CF10A,2014-02-19,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-20,Risk of Violence,4,Low,2014-02-20,2014-02-20,2014-02-20,0,0,771,0,0,0\r\n7004,brandon wong,brandon,wong,2013-05-04,Male,1992-03-16,24,Less than 25,Caucasian,0,6,0,2,2,-1,2013-05-03 04:07:08,2013-06-05 01:25:37,13006345CF10A,2013-05-03,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-04,Risk of Violence,5,Medium,2013-05-04,2013-05-03,2013-06-05,2,32,1063,0,0,0\r\n7005,fredrick martin,fredrick,martin,2013-04-25,Male,1983-10-03,32,25 - 45,African-American,0,8,0,0,2,,,,09010099CF10A,,2009-05-29,1427,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-25,Risk of Violence,8,High,2013-04-25,2006-03-09,2006-11-08,2,0,1072,0,0,0\r\n7007,sabrina roper,sabrina,roper,2013-04-30,Female,1981-10-23,34,25 - 45,African-American,0,3,0,0,6,-1,2013-04-29 08:31:32,2013-04-30 01:17:31,13005982CF10A,,2013-04-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-30,Risk of Violence,2,Low,2013-04-30,2013-04-29,2013-04-30,6,0,1067,0,0,0\r\n7011,stephanie nevels,stephanie,nevels,2013-05-05,Male,1964-07-22,51,Greater than 45,African-American,0,5,0,0,8,-1,2013-05-04 09:20:34,2013-05-30 06:14:31,09002853MO30A,2009-08-28,,1346,M,Consume Alcoholic Bev Pub,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-05,Risk of Violence,1,Low,2013-05-05,2013-05-04,2013-05-30,8,25,1062,0,0,0\r\n7012,joe thetais,joe,thetais,2013-10-20,Male,1987-04-25,28,25 - 45,African-American,0,2,0,0,0,-1,2013-10-19 09:52:35,2013-10-20 08:40:59,13014659CF10A,2013-10-19,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-20,Risk of Violence,3,Low,2013-10-20,2013-10-19,2013-10-20,0,0,894,0,0,0\r\n7015,daniel rosario,daniel,rosario,2013-03-09,Male,1992-12-08,23,Less than 25,Caucasian,0,2,0,0,0,0,2013-03-09 05:57:11,2013-03-10 07:02:54,13003495CF10A,2013-03-09,,0,F,Poss Unlaw Issue Id,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-09,Risk of Violence,5,Medium,2013-03-09,2013-03-09,2013-03-10,0,1,1119,0,0,0\r\n7023,bryan burnett,bryan,burnett,2013-01-30,Male,1990-09-14,25,25 - 45,Caucasian,0,5,0,0,2,-1,2013-01-29 08:35:09,2013-02-07 09:32:54,13001431CF10A,2013-01-29,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-30,Risk of Violence,3,Low,2013-01-30,2013-01-29,2013-02-07,2,8,1157,0,0,0\r\n7024,jon lamore,jon,lamore,2013-09-11,Male,1988-03-23,28,25 - 45,Caucasian,0,7,0,0,2,-1,2013-09-10 11:51:18,2013-09-11 01:36:16,13012812CF10A,2013-09-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-11,Risk of Violence,8,High,2013-09-11,2013-12-24,2014-03-21,2,0,104,0,0,0\r\n7025,shellene thorpe,shellene,thorpe,2014-03-26,Female,1983-06-17,32,25 - 45,African-American,0,1,0,0,0,0,2014-03-26 12:39:59,2014-03-26 08:10:27,14005238MM10A,2014-03-25,,1,M,Battery,1,14016669MM10A,(M1),0,2014-11-22,Battery,2014-11-22,2014-11-23,,1,14016669MM10A,(M1),2014-11-22,Battery,Risk of Recidivism,1,Low,2014-03-26,Risk of Violence,1,Low,2014-03-26,2014-11-22,2014-11-23,0,0,241,1,1,1\r\n7026,rashidi nightingale,rashidi,nightingale,2013-05-10,Male,1980-04-28,35,25 - 45,African-American,0,4,0,0,7,-1,2013-05-09 11:20:35,2013-06-07 09:22:48,13004701CF10A,,2013-05-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-10,Risk of Violence,3,Low,2013-05-10,2013-05-09,2013-06-07,7,28,1057,0,0,0\r\n7029,robie brown,robie,brown,2013-10-05,Male,1982-11-28,33,25 - 45,African-American,0,9,0,0,16,0,2013-10-05 12:52:57,2013-11-07 12:55:45,13018928MM10A,2013-10-04,,1,M,Susp Drivers Lic 1st Offense,1,14000757MM40A,(M1),,2014-02-23,Possess Cannabis/20 Grams Or Less,,,,1,16000514MM10A,(M1),2015-12-14,Battery,Risk of Recidivism,9,High,2013-10-05,Risk of Violence,9,High,2013-10-05,2013-10-05,2013-11-07,16,33,141,1,1,1\r\n7030,semisi afu,semisi,afu,2013-08-26,Male,1986-04-19,30,25 - 45,Other,0,1,0,0,1,-1,2013-08-25 09:40:47,2013-08-27 05:13:19,13011997CF10A,2013-08-25,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-26,Risk of Violence,2,Low,2013-08-26,2013-08-25,2013-08-27,1,1,949,0,0,0\r\n7032,kathy floris,kathy,floris,2013-06-24,Female,1958-02-08,58,Greater than 45,Caucasian,0,2,0,0,1,-3,2013-06-21 12:44:56,2013-06-21 07:42:46,13011894MM10A,2013-06-20,,4,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-24,Risk of Violence,1,Low,2013-06-24,2013-06-21,2013-06-21,1,0,1012,0,0,0\r\n7033,ervin jones,ervin,jones,2013-09-24,Male,1993-10-04,22,Less than 25,African-American,0,7,0,0,2,0,2013-09-24 12:16:02,2013-10-08 05:22:15,13013430CF10A,2013-09-23,,1,F,Felony Battery (Dom Strang),1,15016323CF10A,(F3),,2015-12-22,False Imprisonment,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-24,Risk of Violence,6,Medium,2013-09-24,2015-05-15,2015-05-22,2,14,598,0,0,0\r\n7034,matthew dameron,matthew,dameron,2013-01-25,Male,1987-07-13,28,25 - 45,Caucasian,0,3,0,0,2,3,2013-01-28 03:35:04,2013-01-30 07:33:30,13000290CF10A,2013-01-07,,18,F,Possession of Oxycodone,1,13001383CF10A,(F1),0,2013-01-28,Robbery W/Firearm,2013-01-28,2013-01-30,,1,13001383CF10A,(F1),2013-01-28,Robbery W/Firearm,Risk of Recidivism,3,Low,2013-01-25,Risk of Violence,3,Low,2013-01-25,2013-01-28,2013-01-30,2,0,3,1,1,1\r\n7037,juan hawthorne,juan,hawthorne,2014-12-30,Male,1989-06-22,26,25 - 45,African-American,0,10,1,0,6,-1,2014-12-29 03:29:14,2015-01-02 11:16:53,14017146CF10A,2014-12-29,,1,F,Poss Pyrrolidinovalerophenone,1,15000773CF10A,(F3),1,2015-01-17,Grand Theft (Motor Vehicle),2015-01-18,2015-03-05,,1,15000773CF10A,(F3),2015-01-17,Battery on Law Enforc Officer,Risk of Recidivism,10,High,2014-12-30,Risk of Violence,9,High,2014-12-30,2014-12-29,2015-01-02,6,3,18,1,1,1\r\n7040,eriberto gomez,eriberto,gomez,2013-04-07,Male,1992-10-30,23,Less than 25,Caucasian,0,9,0,0,0,0,2013-04-07 03:08:55,2013-04-08 08:21:53,13005008CF10A,2013-04-07,,0,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-07,Risk of Violence,9,High,2013-04-07,2013-04-07,2013-04-08,0,1,1090,0,0,0\r\n7043,rashad emmons,rashad,emmons,2013-03-28,Male,1989-09-21,26,25 - 45,African-American,0,3,0,0,0,-1,2013-03-27 10:33:56,2013-03-29 09:13:24,13004747CF10A,,2013-03-28,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-28,Risk of Violence,3,Low,2013-03-28,2013-03-27,2013-03-29,0,1,1100,0,0,0\r\n7044,charlie simmons,charlie,simmons,2013-10-30,Male,1990-11-27,25,25 - 45,African-American,0,5,0,0,1,0,2013-10-30 02:46:22,2013-10-30 08:28:58,13015140CF10A,2013-10-29,,1,F,Uttering Forged Bills,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-30,Risk of Violence,6,Medium,2013-10-30,2013-10-30,2013-10-30,1,0,884,0,0,0\r\n7047,daniel billie,daniel,billie,2013-04-03,Male,1976-03-08,40,25 - 45,Native American,0,6,0,0,2,-1,2013-04-02 08:40:37,2013-04-03 08:44:24,13006373MM10A,2013-04-02,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-03,Risk of Violence,2,Low,2013-04-03,2013-04-02,2013-04-03,2,0,1094,0,0,0\r\n7050,miguel arrietarosales,miguel,arrietarosales,2013-08-21,Male,1976-01-01,40,25 - 45,Hispanic,0,2,0,0,1,,,,12003419MM10A,2012-02-18,,550,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-21,Risk of Violence,2,Low,2013-08-21,,,1,0,954,0,0,0\r\n7051,reginald herman,reginald,herman,2013-12-18,Male,1959-09-22,56,Greater than 45,African-American,0,1,0,0,1,-1,2013-12-17 05:46:51,2013-12-18 10:30:00,13017434CF10A,2013-12-17,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-18,Risk of Violence,1,Low,2013-12-18,2013-12-17,2013-12-18,1,0,835,0,0,0\r\n7052,mark bird,mark,bird,2013-09-20,Male,1964-06-11,51,Greater than 45,Caucasian,0,2,0,0,3,-87,2013-06-25 10:02:01,2013-09-19 12:07:40,07017047CF10A,,2013-06-25,87,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-20,Risk of Violence,2,Low,2013-09-20,2013-12-26,2014-04-14,3,0,97,0,0,0\r\n7053,desta celestin,desta,celestin,2013-04-13,Male,1979-11-17,36,25 - 45,African-American,0,4,0,0,0,-1,2013-04-12 05:15:11,2014-01-17 10:44:53,13005303CF10A,2013-04-12,,1,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-13,Risk of Violence,3,Low,2013-04-13,2013-04-12,2014-01-17,0,279,1084,0,0,0\r\n7054,victor fals,victor,fals,2013-03-11,Male,1964-08-16,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-10 12:30:54,2013-03-12 09:49:53,13004810MM10A,2013-03-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-03-10,2013-03-12,0,1,1117,0,0,0\r\n7055,max williams,max,williams,2013-08-30,Male,1990-05-14,25,25 - 45,Caucasian,0,5,0,0,2,,,,13012214CF10A,2013-08-29,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-30,Risk of Violence,3,Low,2013-08-30,,,2,0,945,0,0,0\r\n7058,adrian dorsett,adrian,dorsett,2013-01-09,Male,1993-11-29,22,Less than 25,African-American,0,6,1,0,1,,,,09024265TC10A,2009-08-17,,1241,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-09,Risk of Violence,9,High,2013-01-09,,,1,0,1178,0,0,0\r\n7060,juanita sawyer,juanita,sawyer,2013-04-21,Female,1980-05-19,35,25 - 45,African-American,2,8,0,0,9,-1,2013-04-20 09:10:17,2013-10-11 06:10:26,13005080CF10A,,2013-04-20,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-21,Risk of Violence,7,Medium,2013-04-21,2013-04-20,2013-10-11,9,173,1076,0,0,0\r\n7067,tyler anderson,tyler,anderson,2013-03-01,Male,1994-02-27,22,Less than 25,Caucasian,0,9,1,0,2,0,2013-03-01 02:35:25,2013-03-02 09:45:12,13003112CF10A,2013-03-01,,0,F,Poss F/Arm Delinq,1,13025122TC10A,(M2),,2013-06-17,Operating W/O Valid License,,,,1,14011631CF10A,(F3),2014-08-26,Battery on Law Enforc Officer,Risk of Recidivism,9,High,2013-03-01,Risk of Violence,7,Medium,2013-03-01,2013-06-17,2013-11-07,2,1,108,1,1,1\r\n7068,darrell evans,darrell,evans,2013-02-20,Male,1972-06-09,43,25 - 45,Caucasian,0,1,0,0,2,-41,2013-01-10 05:45:14,2013-02-20 01:46:33,13000471CF10A,,2013-01-10,41,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-01-10,2013-02-20,2,0,1136,0,0,0\r\n7070,deondre bowden,deondre,bowden,2013-08-07,Male,1993-12-11,22,Less than 25,African-American,0,6,0,0,2,-64,2013-06-04 09:32:44,2013-07-24 07:39:53,13007927CF10A,2013-06-04,,64,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-07,Risk of Violence,7,Medium,2013-08-07,2013-06-04,2013-07-24,2,0,968,0,0,0\r\n7073,freddy crespo,freddy,crespo,2013-02-06,Male,1984-11-11,31,25 - 45,African-American,0,10,0,0,4,67,2013-04-14 05:41:17,2013-06-01 04:53:55,13002220MM10A,2013-01-02,,35,M,Possess Cannabis/20 Grams Or Less,1,13010232MM10A,(M1),,2013-04-13,Battery,,,,1,13010232MM10A,(M1),2013-04-13,Battery,Risk of Recidivism,10,High,2013-02-06,Risk of Violence,8,High,2013-02-06,2016-03-26,2016-03-27,4,0,66,1,1,1\r\n7079,travis bradford,travis,bradford,2013-04-08,Male,1990-04-26,25,25 - 45,Caucasian,0,7,0,1,3,-1,2013-04-07 05:01:37,2013-04-15 02:07:02,13004974CF10A,2013-04-06,,2,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-08,Risk of Violence,5,Medium,2013-04-08,2013-04-07,2013-04-15,3,7,1089,0,0,0\r\n7080,miriam torres,miriam,torres,2013-08-01,Female,1963-06-03,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-07-31 09:14:55,2013-08-01 07:36:57,13014466MM10A,2013-07-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2013-07-31,2013-08-01,0,0,974,0,0,0\r\n7082,anthony martinez,anthony,martinez,2013-01-19,Male,1980-11-01,35,25 - 45,Hispanic,0,7,0,0,0,-1,2013-01-18 07:51:52,2013-01-19 07:34:56,13000885CF10A,2013-01-18,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-19,Risk of Violence,4,Low,2013-01-19,2013-01-18,2013-01-19,0,0,1168,0,0,0\r\n7084,amanda blankenship,amanda,blankenship,2013-07-22,Female,1991-08-24,24,Less than 25,Caucasian,0,5,0,0,0,-3,2013-07-19 07:41:18,2013-07-20 01:59:43,13010141CF10A,2013-07-19,,3,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-22,Risk of Violence,2,Low,2013-07-22,2014-01-09,2014-02-04,0,0,171,0,0,0\r\n7087,walter pharicien,walter,pharicien,2013-09-20,Male,1959-02-18,57,Greater than 45,Other,0,1,0,0,0,0,2013-09-20 12:53:41,2013-09-27 09:19:14,13013238CF10A,2013-09-19,,1,F,Aggravated Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-09-20,2013-09-27,0,7,924,0,0,0\r\n7092,james fields,james,fields,2013-09-07,Male,1978-03-19,38,25 - 45,Caucasian,0,1,0,0,2,-1,2013-09-06 08:02:17,2013-09-07 08:08:36,13012624CF10A,,2013-09-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-07,Risk of Violence,1,Low,2013-09-07,2013-09-06,2013-09-07,2,0,937,0,0,0\r\n7093,davel mcdonald,davel,mcdonald,2013-10-07,Male,1993-05-19,22,Less than 25,African-American,0,3,0,0,1,-66,2013-08-02 03:44:18,2013-10-04 08:35:25,13010914CF10A,2013-08-01,,67,F,Robbery W/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-07,Risk of Violence,5,Medium,2013-10-07,2013-08-02,2013-10-04,1,0,907,0,0,0\r\n7095,ronald baquedano-rivera,ronald,baquedano-rivera,2013-03-04,Male,1989-12-09,26,25 - 45,Hispanic,0,5,0,0,1,-2,2013-03-02 05:50:22,2013-03-03 09:01:18,13004278MM10A,2013-03-02,,2,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-04,Risk of Violence,3,Low,2013-03-04,2013-03-02,2013-03-03,1,0,1124,0,0,0\r\n7097,darryl weaver,darryl,weaver,2013-10-25,Male,1990-11-03,25,25 - 45,African-American,2,10,3,0,8,-230,2013-03-09 01:07:58,2013-09-10 10:03:00,12010496CF10A,,2013-09-09,46,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-10-25,Risk of Violence,9,High,2013-10-25,2015-04-07,2015-05-18,8,0,529,0,0,0\r\n7099,dathmus lane,dathmus,lane,2013-10-14,Male,1982-01-03,34,25 - 45,African-American,0,2,0,0,2,-1,2013-10-13 07:34:35,2013-10-14 10:04:31,13014341CF10A,2013-10-13,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-14,Risk of Violence,1,Low,2013-10-14,2013-10-13,2013-10-14,2,0,900,0,0,0\r\n7101,danyelle lampert,danyelle,lampert,2013-12-14,Female,1991-08-12,24,Less than 25,Caucasian,0,5,0,0,0,-1,2013-12-13 03:20:31,2013-12-14 01:25:18,13017257CF10A,2013-12-13,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-14,Risk of Violence,4,Low,2013-12-14,2014-07-05,2014-07-16,0,0,203,0,0,0\r\n7103,luis miranda,luis,miranda,2013-07-16,Male,1991-12-20,24,Less than 25,Other,0,5,0,0,4,-40,2013-06-06 08:04:10,2013-07-16 11:39:42,13008187CF10A,2013-06-06,,40,F,Shoot Into Vehicle,1,16003113CF10A,(F1),,2016-03-12,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-16,Risk of Violence,7,Medium,2013-07-16,2013-06-06,2013-07-16,4,0,970,1,0,0\r\n7104,daniel merico,daniel,merico,2013-01-24,Male,1967-01-28,49,Greater than 45,Caucasian,0,6,0,0,4,0,2013-01-24 02:26:10,2013-02-10 04:25:50,13001695MO10A,2013-01-23,,1,M,Battery Spouse Or Girlfriend,1,13013250MM10A,(M2),0,2013-07-12,Disorderly Intoxication,2013-07-12,2013-07-15,,1,13021680MM10A,(M1),2013-11-18,Battery,Risk of Recidivism,6,Medium,2013-01-24,Risk of Violence,4,Low,2013-01-24,2013-07-12,2013-07-15,4,17,169,1,1,1\r\n7109,roberto puertas,roberto,puertas,2013-02-05,Male,1961-01-09,55,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-02-04 07:14:30,2013-02-05 07:13:24,13001744CF10A,2013-02-04,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-05,Risk of Violence,1,Low,2013-02-05,2013-02-04,2013-02-05,0,0,1151,0,0,0\r\n7110,joseph flynn,joseph,flynn,2013-10-04,Male,1990-08-19,25,25 - 45,Caucasian,0,4,0,1,1,,,,11020217CF10A,2011-12-12,,662,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-04,Risk of Violence,6,Medium,2013-10-04,,,1,0,910,0,0,0\r\n7112,nathaniel owens,nathaniel,owens,2014-08-17,Male,1960-07-24,55,Greater than 45,African-American,0,7,0,0,10,-1,2014-08-16 02:53:35,2014-08-20 09:38:09,14012374MM10A,2014-08-16,,1,M,Battery,1,14012369CF10A,(F3),0,2014-09-11,Felony Petit Theft,2014-09-11,2015-02-26,,1,15004156CF10A,(F3),2015-03-29,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2014-08-17,Risk of Violence,4,Low,2014-08-17,2014-09-11,2015-02-26,10,3,25,1,1,1\r\n7116,carl schurman,carl,schurman,2013-08-01,Male,1983-08-31,32,25 - 45,African-American,0,8,0,0,9,-1,2013-07-31 06:29:02,2013-11-20 04:58:00,13010683CF10A,2013-07-31,,1,F,Burglary Dwelling Occupied,1,16014602TC30A,(M2),,2016-03-03,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,8,High,2013-08-01,Risk of Violence,8,High,2013-08-01,2013-07-31,2013-11-20,9,111,945,1,0,0\r\n7117,charles miller,charles,miller,2013-01-19,Male,1960-08-06,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-18 06:53:17,2013-01-19 01:06:33,13000888CF10A,2013-01-18,,1,F,Driving While License Revoked,1,16007678TC10A,(M2),,2016-02-09,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-19,Risk of Violence,1,Low,2013-01-19,2013-01-18,2013-01-19,0,0,1116,1,0,0\r\n7119,jeramiah baxter,jeramiah,baxter,2013-08-15,Male,1992-05-26,23,Less than 25,African-American,0,5,0,0,3,0,2013-08-15 01:53:22,2013-08-21 08:27:53,13015466MM10A,2013-08-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-15,Risk of Violence,6,Medium,2013-08-15,2013-08-15,2013-08-21,3,6,960,0,0,0\r\n7120,brian wheeler,brian,wheeler,2013-02-05,Male,1962-02-10,54,Greater than 45,Caucasian,0,4,0,0,2,-29,2013-01-07 01:25:56,2013-02-05 11:05:26,13000241CF10A,,2013-01-07,29,F,arrest case no charge,1,13014961CF10A,(F3),1,2013-10-25,Burglary Conveyance Unoccup,2013-10-26,2013-12-05,,1,15012924CF10A,(F3),2015-10-05,Aggravated Assault W/Dead Weap,Risk of Recidivism,4,Low,2013-02-05,Risk of Violence,2,Low,2013-02-05,2013-10-26,2013-12-05,2,0,262,1,1,1\r\n7121,samih debbik,samih,debbik,2013-04-04,Male,1975-06-07,40,25 - 45,Asian,0,1,0,0,0,-1,2013-04-03 04:56:38,2013-04-23 03:20:28,13004784CF10A,2013-04-03,,1,F,Delivery Of Drug Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-04,Risk of Violence,1,Low,2013-04-04,2013-04-03,2013-04-23,0,19,1093,0,0,0\r\n7123,shane coombs,shane,coombs,2014-01-16,Male,1988-06-03,27,25 - 45,African-American,0,2,0,0,0,-1,2014-01-15 06:44:59,2014-01-16 08:03:23,14000753MM10A,2014-01-15,,1,M,Battery,1,15008080CF10A,(F2),120,2015-04-10,Aggravated Battery / Pregnant,2015-08-08,2015-08-09,,1,15008080CF10A,(F2),2015-04-10,Aggravated Battery / Pregnant,Risk of Recidivism,2,Low,2014-01-16,Risk of Violence,3,Low,2014-01-16,2015-10-02,2015-10-10,0,0,449,1,1,1\r\n7124,john masselli,john,masselli,2013-06-28,Male,1979-04-28,36,25 - 45,Caucasian,0,1,0,0,4,85,2013-09-21 12:09:15,2013-10-03 06:25:33,13007937MM10A,2013-02-22,,126,M,Theft,1,13014099CF10A,(F3),0,2013-10-08,Corrupt Public Servant,2013-10-08,2014-05-22,,1,13014099CF10A,(F3),2013-10-08,Battery on Law Enforc Officer,Risk of Recidivism,1,Low,2013-06-28,Risk of Violence,1,Low,2013-06-28,2013-09-21,2013-10-03,4,0,85,0,1,1\r\n7125,erika isaac,erika,isaac,2013-03-18,Female,1986-06-03,29,25 - 45,African-American,0,7,0,0,5,0,2013-03-18 02:41:56,2013-03-19 07:45:36,13003935CF10A,2013-03-17,,1,F,Felony Battery (Dom Strang),1,16002633CF10A,(M1),0,2016-03-01,,2016-03-01,2016-03-02,,0,,,,,Risk of Recidivism,7,Medium,2013-03-18,Risk of Violence,3,Low,2013-03-18,2016-03-01,2016-03-02,5,1,1079,1,0,0\r\n7126,marilyn menendez,marilyn,menendez,2014-03-30,Female,1971-04-15,45,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-29 09:57:52,2014-03-30 08:36:23,14005437MM10A,2014-03-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-30,Risk of Violence,1,Low,2014-03-30,2014-03-29,2014-03-30,0,0,733,0,0,0\r\n7127,larry dieuveut,larry,dieuveut,2013-05-21,Male,1991-02-27,25,25 - 45,Other,0,6,0,0,2,-1,2013-05-20 03:24:37,2013-07-23 09:26:20,13009725MM10A,2013-05-20,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-21,Risk of Violence,6,Medium,2013-05-21,2013-05-20,2013-07-23,2,63,1046,0,0,0\r\n7130,daniel maiani,daniel,maiani,2013-11-12,Male,1975-12-07,40,25 - 45,Caucasian,0,3,0,0,4,-1,2013-11-11 01:20:20,2013-12-14 05:53:08,13015675CF10A,2013-11-11,,1,F,Tamper With Witness/Victim/CI,1,15002142MM10A,(M1),0,2015-02-21,Battery,2015-02-21,2015-02-22,,1,15002142MM10A,(M1),2015-02-21,Battery,Risk of Recidivism,3,Low,2013-11-12,Risk of Violence,5,Medium,2013-11-12,2015-02-21,2015-02-22,4,32,466,1,1,1\r\n7131,joel curtis,joel,curtis,2013-08-25,Male,1977-11-27,38,25 - 45,African-American,0,4,0,0,7,-1,2013-08-24 08:32:05,2013-08-31 06:13:17,13006858CF10A,,2013-08-24,1,F,arrest case no charge,1,14011159CF10A,(F3),81,2014-06-16,Child Abuse,2014-09-05,2014-09-06,,1,14011159CF10A,(F3),2014-06-16,Child Abuse,Risk of Recidivism,4,Low,2013-08-25,Risk of Violence,4,Low,2013-08-25,2013-11-05,2013-11-20,7,6,72,0,1,1\r\n7132,clee farr,clee,farr,2013-02-08,Male,1955-12-22,60,Greater than 45,Caucasian,0,-1,0,0,0,-1,2013-02-07 09:00:40,2013-02-08 08:10:45,13001918CF10A,2013-02-07,,1,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,-1,N/A,2013-02-08,Risk of Violence,5,Medium,2013-02-08,2013-02-07,2013-02-08,0,0,1148,0,0,0\r\n7135,robert allegretti,robert,allegretti,2013-07-10,Male,1958-07-07,57,Greater than 45,Caucasian,0,4,0,0,3,-176,2013-01-15 11:20:48,2013-02-15 09:33:26,13000708CF10A,2013-01-15,,176,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-10,Risk of Violence,2,Low,2013-07-10,2013-01-15,2013-02-15,3,0,996,0,0,0\r\n7136,lashaver willis,lashaver,willis,2014-06-24,Male,1989-05-11,26,25 - 45,African-American,0,10,0,0,3,0,2014-06-24 01:15:54,2014-07-07 08:48:40,14008695CF10A,2014-06-24,,0,F,Burglary Unoccupied Dwelling,1,14011074CF10A,(F3),0,2014-08-13,Aggravated Assault W/Dead Weap,2014-08-13,2014-09-11,,1,14011074CF10A,(F3),2014-08-13,Aggravated Assault W/Dead Weap,Risk of Recidivism,10,High,2014-06-24,Risk of Violence,8,High,2014-06-24,2014-08-13,2014-09-11,3,13,50,1,1,1\r\n7139,iffanise fleurinord,iffanise,fleurinord,2013-06-19,Female,1978-07-15,37,25 - 45,African-American,0,1,0,0,0,-1,2013-06-18 04:05:52,2013-06-19 10:46:07,13008618CF10A,2013-06-18,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-19,Risk of Violence,1,Low,2013-06-19,2013-06-18,2013-06-19,0,0,1017,0,0,0\r\n7141,edgar puglia,edgar,puglia,2014-03-19,Male,1975-03-25,41,25 - 45,Caucasian,0,1,0,0,1,-1,2014-03-18 09:24:52,2014-03-19 10:49:59,14003804CF10A,2014-03-18,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-19,Risk of Violence,1,Low,2014-03-19,2014-03-18,2014-03-19,1,0,744,0,0,0\r\n7142,ruth pichonot,ruth,pichonot,2013-11-22,Female,1982-05-17,33,25 - 45,Other,0,2,0,0,0,-1,2013-11-21 10:18:43,2013-11-22 03:53:50,13016164CF10A,2013-11-21,,1,F,Poss Unlaw Issue Driver Licenc,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-22,Risk of Violence,1,Low,2013-11-22,2015-01-11,2015-03-07,0,0,415,0,0,0\r\n7143,emmet sands,emmet,sands,2013-02-07,Male,1959-03-24,57,Greater than 45,African-American,0,1,0,0,1,-1,2013-02-06 04:49:40,2013-02-07 09:30:56,13001120CF10A,,2013-02-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-07,Risk of Violence,1,Low,2013-02-07,2013-02-06,2013-02-07,1,0,1149,0,0,0\r\n7144,james capers,james,capers,2013-02-09,Male,1982-02-08,34,25 - 45,African-American,0,9,0,0,3,-1,2013-02-08 07:06:22,2013-02-09 08:16:30,10047214TC10A,,2013-02-08,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-09,Risk of Violence,7,Medium,2013-02-09,2016-01-12,2016-01-13,3,0,1067,0,0,0\r\n7145,stanley mccray,stanley,mccray,2013-05-25,Male,1986-07-09,29,25 - 45,African-American,0,4,0,0,1,-1,2013-05-24 04:41:00,2013-05-25 07:37:19,13007426CF10A,2013-05-24,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14011594MM10A,(M1),,2014-04-27,Battery,,,,1,14011594MM10A,(M1),2014-04-27,Battery,Risk of Recidivism,4,Low,2013-05-25,Risk of Violence,5,Medium,2013-05-25,2013-05-24,2013-05-25,1,0,337,1,1,1\r\n7148,james morales,james,morales,2013-01-28,Male,1970-10-16,45,Greater than 45,Hispanic,0,7,0,0,8,0,2013-01-28 01:23:09,2013-01-29 04:24:47,13001375CF10A,2013-01-27,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-28,Risk of Violence,5,Medium,2013-01-28,2013-01-28,2013-01-29,8,1,1159,0,0,0\r\n7149,joshua morla,joshua,morla,2013-01-25,Male,1993-06-04,22,Less than 25,Caucasian,0,4,0,0,1,-8,2013-01-17 01:03:08,2013-01-25 10:04:05,13000789CF10A,2013-01-16,,9,F,Aggravated Assault w/Firearm,1,15011185TC40A,(M2),,2015-02-16,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-25,Risk of Violence,5,Medium,2013-01-25,2013-05-31,2013-06-11,1,0,126,0,0,0\r\n7153,jalandon love,jalandon,love,2014-02-15,Male,1994-10-08,21,Less than 25,African-American,0,4,0,0,0,-1,2014-02-14 08:57:29,2014-03-31 09:03:31,14002622MM10A,2014-02-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-15,Risk of Violence,6,Medium,2014-02-15,2014-02-14,2014-03-31,0,44,776,0,0,0\r\n7154,james cantwell,james,cantwell,2013-02-03,Male,1959-11-05,56,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-02-02 06:39:31,2013-02-03 07:26:51,13002383MM10A,2013-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-03,Risk of Violence,1,Low,2013-02-03,2013-02-02,2013-02-03,1,0,1153,0,0,0\r\n7156,derek joy,derek,joy,2013-01-04,Male,1967-11-17,48,Greater than 45,African-American,0,3,0,0,4,-1,2013-01-03 07:50:37,2013-01-04 06:15:54,13000134CF10A,2013-01-03,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-04,Risk of Violence,3,Low,2013-01-04,2013-01-03,2013-01-04,4,0,1183,0,0,0\r\n7157,albeiro munoz,albeiro,munoz,2014-03-09,Male,1988-07-10,27,25 - 45,Hispanic,0,2,0,0,1,-1,2014-03-08 05:10:54,2014-03-09 10:11:30,14004039MM10A,2014-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-09,Risk of Violence,2,Low,2014-03-09,2014-03-08,2014-03-09,1,0,754,0,0,0\r\n7159,matthew rodriguez,matthew,rodriguez,2013-09-24,Male,1981-12-28,34,25 - 45,Hispanic,0,2,0,0,1,-1,2013-09-23 08:44:05,2013-09-27 09:07:34,13013387CF10A,2013-09-23,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-24,Risk of Violence,2,Low,2013-09-24,2014-09-17,2014-11-07,1,3,358,0,0,0\r\n7163,jason hicks,jason,hicks,2013-01-27,Male,1982-10-04,33,25 - 45,African-American,0,3,1,0,6,-1,2013-01-26 11:35:43,2013-01-28 08:41:00,13003947TC10A,,2013-01-26,1,M,arrest case no charge,1,14009256MM10A,(M1),0,2014-06-11,Battery,2014-06-11,2014-06-13,,1,14009256MM10A,(M1),2014-06-11,Battery,Risk of Recidivism,3,Low,2013-01-27,Risk of Violence,3,Low,2013-01-27,2014-06-11,2014-06-13,6,1,500,1,1,1\r\n7164,doriano dalessandro,doriano,dalessandro,2013-03-30,Male,1957-07-26,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-03-29 11:57:12,2013-03-31 03:36:36,04000079CF10A,2004-01-01,,3376,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-30,Risk of Violence,1,Low,2013-03-30,2013-03-29,2013-03-31,1,1,1098,0,0,0\r\n7166,brandy jones,brandy,jones,2013-07-22,Female,1982-07-15,33,25 - 45,African-American,0,5,0,0,1,-3,2013-07-19 06:23:11,2013-07-20 01:49:29,13010176CF10A,2013-07-19,,3,F,Fail To Redeliv Hire/Leas Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-22,Risk of Violence,2,Low,2013-07-22,2013-07-19,2013-07-20,1,0,984,0,0,0\r\n7167,sandra victorremedor,sandra,victorremedor,2013-01-28,Female,1975-08-16,40,25 - 45,African-American,0,5,0,0,2,-1,2013-01-27 08:40:41,2013-05-08 05:42:39,13001926MM10A,2013-01-27,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-05-08,2,100,1159,0,0,0\r\n7170,tyler ashton,tyler,ashton,2013-02-19,Male,1994-03-16,22,Less than 25,Caucasian,0,5,0,0,0,0,2013-02-19 03:51:56,2013-02-20 03:44:09,13002518CF10A,2013-02-19,,0,F,Possession of Cocaine,1,15011112CF10A,(F3),,2015-07-24,False Ownership Info/Pawn Item,,,,1,15010547CF10A,(F3),2015-08-15,Attempted Robbery  No Weapon,Risk of Recidivism,5,Medium,2013-02-19,Risk of Violence,6,Medium,2013-02-19,2013-02-19,2013-02-20,0,1,885,1,0,0\r\n7171,brian pearson,brian,pearson,2013-03-15,Male,1976-09-18,39,25 - 45,Caucasian,0,3,0,0,2,-1,2013-03-14 05:07:03,2013-03-22 09:45:55,13003382CF10A,,2013-03-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-15,Risk of Violence,1,Low,2013-03-15,2014-07-01,2014-07-16,2,7,473,0,0,0\r\n7173,ketchmarken sainthilaire,ketchmarken,sainthilaire,2014-03-31,Male,1986-01-05,30,25 - 45,Other,0,8,0,0,2,,,,09001262CF10A,2009-01-21,,1895,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-31,Risk of Violence,4,Low,2014-03-31,,,2,0,732,0,0,0\r\n7175,annquinette rucker,annquinette,rucker,2013-05-29,Female,1992-05-22,23,Less than 25,African-American,0,8,0,0,3,-37,2013-04-22 09:47:57,2013-05-29 10:09:04,13005732CF10A,2013-04-22,,37,F,Burglary Conveyance Unoccup,1,16002624CF10A,(F3),0,2016-03-01,,2016-03-01,2016-03-02,,0,,,,,Risk of Recidivism,8,High,2013-05-29,Risk of Violence,7,Medium,2013-05-29,2013-12-02,2014-02-14,3,0,187,0,0,0\r\n7176,randy pearson,randy,pearson,2013-05-27,Male,1981-02-06,35,25 - 45,Caucasian,0,1,0,1,1,0,2013-05-27 12:28:20,2013-05-27 12:40:41,13007513CF10A,2013-05-26,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-05-27,2013-05-27,1,0,1040,0,0,0\r\n7177,luis caro,luis,caro,2013-05-07,Male,1994-02-10,22,Less than 25,Hispanic,0,2,0,0,0,-1,2013-05-06 07:58:25,2013-05-07 07:41:29,13019327TC10A,2013-05-06,,1,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-07,Risk of Violence,5,Medium,2013-05-07,2013-05-06,2013-05-07,0,0,1060,0,0,0\r\n7180,alex esteves,alex,esteves,2013-08-10,Male,1979-01-12,37,25 - 45,Hispanic,0,4,0,0,4,-1,2013-08-09 11:34:29,2013-08-10 06:58:49,13011212CF10A,2013-08-09,,1,M,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-10,Risk of Violence,3,Low,2013-08-10,2013-08-09,2013-08-10,4,0,965,0,0,0\r\n7183,charles dean,charles,dean,2014-02-12,Male,1977-10-10,38,25 - 45,African-American,1,8,0,4,14,,,,07012379CF10A,,2011-07-25,933,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-12,Risk of Violence,4,Low,2014-02-12,,,14,0,779,0,0,0\r\n7185,pablo martinez,pablo,martinez,2014-03-30,Male,1956-03-02,60,Greater than 45,Hispanic,0,4,0,0,0,-1,2014-03-29 08:36:56,2014-03-30 07:53:26,14004434CF10A,2014-03-29,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-30,Risk of Violence,1,Low,2014-03-30,2014-03-29,2014-03-30,0,0,733,0,0,0\r\n7186,lina scalisi,lina,scalisi,2014-01-23,Female,1977-01-28,39,25 - 45,Caucasian,0,4,0,0,1,-1,2014-01-22 01:55:59,2014-01-29 08:33:18,13017791CF10A,,2014-01-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-23,Risk of Violence,4,Low,2014-01-23,2014-01-22,2014-01-29,1,6,799,0,0,0\r\n7188,jimmie harrold,jimmie,harrold,2013-05-30,Male,1990-07-11,25,25 - 45,African-American,0,4,0,0,1,,,,12018968MO10A,,2012-12-16,165,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-30,Risk of Violence,3,Low,2013-05-30,2015-06-04,2016-01-24,1,0,735,0,0,0\r\n7192,ina youngbell,ina,youngbell,2013-04-19,Female,1945-10-24,70,Greater than 45,Other,0,1,0,0,0,-1,2013-04-18 08:51:08,2013-04-19 08:09:20,13005558CF10A,2013-04-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-18,2013-04-19,0,0,1078,0,0,0\r\n7196,derrick jackson,derrick,jackson,2013-08-13,Male,1962-07-17,53,Greater than 45,African-American,0,2,0,0,6,-1,2013-08-12 09:25:09,2013-08-13 08:16:30,13009117CF10A,,2013-08-12,1,F,arrest case no charge,1,15004500MM40A,(M2),139,2015-10-30,Solicit ProstitutionViolation,2016-03-17,2016-03-18,,0,,,,,Risk of Recidivism,2,Low,2013-08-13,Risk of Violence,2,Low,2013-08-13,2016-03-17,2016-03-18,6,0,808,1,0,0\r\n7197,edgard rojas,edgard,rojas,2013-03-05,Male,1979-03-21,37,25 - 45,Caucasian,0,6,0,0,0,-5,2013-02-28 08:59:51,2013-03-01 08:05:40,13003067CF10A,2013-02-28,,5,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-05,Risk of Violence,3,Low,2013-03-05,2013-12-18,2014-01-08,0,0,288,0,0,0\r\n7199,justin bates,justin,bates,2013-10-28,Male,1988-01-07,28,25 - 45,African-American,0,6,0,0,1,-1,2013-10-27 07:38:34,2013-10-28 07:32:59,13015018CF10A,2013-10-27,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-28,Risk of Violence,4,Low,2013-10-28,2013-10-27,2013-10-28,1,0,886,0,0,0\r\n7200,johnny borden,johnny,borden,2013-02-20,Male,1994-06-27,21,Less than 25,African-American,0,6,0,0,1,-1,2013-02-19 10:55:43,2013-07-26 05:37:05,13002156CF10A,,2013-02-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-20,Risk of Violence,7,Medium,2013-02-20,2013-02-19,2013-07-26,1,156,1136,0,0,0\r\n7202,yarvis mcclemore,yarvis,mcclemore,2013-09-11,Male,1984-01-05,32,25 - 45,African-American,0,10,0,0,2,,,,09013778CF10A,,2010-05-20,1210,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-11,Risk of Violence,10,High,2013-09-11,2007-07-31,2009-02-13,2,0,933,0,0,0\r\n7203,paul fraser,paul,fraser,2013-05-01,Male,1959-09-15,56,Greater than 45,African-American,0,1,0,0,0,-1,2013-04-30 10:09:35,2013-05-06 09:12:18,13006284CF10A,2013-04-30,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2013-04-30,2013-05-06,0,5,1066,0,0,0\r\n7204,robert rall,robert,rall,2014-03-09,Male,1985-11-20,30,25 - 45,Caucasian,0,3,0,0,3,-1,2014-03-08 08:19:22,2014-03-09 10:12:02,14004020MM10A,2014-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-09,Risk of Violence,2,Low,2014-03-09,2014-03-08,2014-03-09,3,0,754,0,0,0\r\n7210,ian ford,ian,ford,2013-02-02,Male,1988-08-07,27,25 - 45,African-American,0,8,0,0,1,-1,2013-02-01 03:25:36,2013-02-03 02:50:32,13001621CF10A,2013-02-01,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-02,Risk of Violence,9,High,2013-02-02,2015-12-30,2020-01-01,1,1,1061,0,0,0\r\n7211,troy holaway,troy,holaway,2013-10-31,Male,1974-12-03,41,25 - 45,African-American,0,7,0,1,7,0,2013-10-31 01:40:09,2013-11-01 09:24:26,13020561MM10A,2013-10-30,,1,M,Battery,1,14002548MM10A,(M1),0,2014-02-13,Viol Pretrial Release Dom Viol,2014-02-13,2014-02-21,,1,15006834CF10A,(F7),2015-05-25,Burglary Dwelling Assault/Batt,Risk of Recidivism,7,Medium,2013-10-31,Risk of Violence,3,Low,2013-10-31,2014-02-13,2014-02-21,7,1,105,1,1,1\r\n7216,raymond mcclame,raymond,mcclame,2014-03-04,Male,1983-11-15,32,25 - 45,African-American,0,8,1,3,7,-1,2014-03-03 10:36:05,2014-03-04 09:24:02,14004519CF10A,2014-03-03,,1,F,Felony Battery w/Prior Convict,1,14014639MM10A,(M1),0,2014-10-05,Resist/Obstruct W/O Violence,2014-10-05,2014-10-06,,1,15012685CF10A,(F3),2015-09-07,Felony Battery w/Prior Convict,Risk of Recidivism,8,High,2014-03-04,Risk of Violence,6,Medium,2014-03-04,2014-04-17,2014-04-18,7,0,44,0,1,1\r\n7217,phillip marks,phillip,marks,2014-02-26,Male,1989-10-14,26,25 - 45,Caucasian,0,5,0,0,7,-126,2013-10-23 03:44:15,2013-10-24 05:09:27,13013931CF10A,,2013-10-23,126,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-26,Risk of Violence,3,Low,2014-02-26,2013-10-23,2013-10-24,7,0,765,0,0,0\r\n7218,james pierrelouis,james,pierrelouis,2013-02-20,Male,1984-09-25,31,25 - 45,African-American,0,4,0,0,0,,,,13003590MM10A,2013-02-20,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-20,Risk of Violence,2,Low,2013-02-20,,,0,0,1136,0,0,0\r\n7219,marlon mcdonald,marlon,mcdonald,2013-04-01,Male,1983-10-13,32,25 - 45,African-American,0,4,0,0,3,-1,2013-03-31 05:22:21,2013-04-01 02:19:01,13004632CF10A,2013-03-31,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-01,Risk of Violence,5,Medium,2013-04-01,2015-05-04,2015-06-25,3,0,763,0,0,0\r\n7223,howard hendricks,howard,hendricks,2013-05-13,Male,1970-03-10,46,Greater than 45,African-American,0,1,0,0,3,-1,2013-05-12 09:38:38,2013-05-14 08:29:03,13006803CF10A,2013-05-12,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-12,2013-05-14,3,1,1054,0,0,0\r\n7224,nicholas simmons,nicholas,simmons,2014-08-25,Male,1991-10-10,24,Less than 25,African-American,0,3,0,0,1,-1,2014-08-24 05:19:36,2014-08-25 01:11:27,14011556CF10A,2014-08-24,,1,F,Felony Battery (Dom Strang),1,15046966TC40A,(M2),,2015-08-10,Susp Drivers Lic 1st Offense,,,,1,15013304CF10A,(M1),2015-10-14,Battery,Risk of Recidivism,3,Low,2014-08-25,Risk of Violence,3,Low,2014-08-25,2016-02-15,2016-02-16,1,0,350,1,1,1\r\n7227,jorge gamboa,jorge,gamboa,2013-11-23,Male,1965-08-20,50,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-11-22 07:53:52,2013-12-04 05:08:47,13016241CF10A,2013-11-22,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-23,Risk of Violence,1,Low,2013-11-23,2013-11-22,2013-12-04,3,11,860,0,0,0\r\n7231,wilfred conille,wilfred,conille,2013-05-24,Male,1979-04-05,37,25 - 45,African-American,0,7,0,0,3,-1,2013-05-23 12:12:34,2013-05-24 08:38:00,13009933MM10A,2013-05-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-24,Risk of Violence,3,Low,2013-05-24,2013-05-23,2013-05-24,3,0,1043,0,0,0\r\n7234,leonardo mendez,leonardo,mendez,2014-02-25,Male,1978-06-12,37,25 - 45,Hispanic,0,5,0,0,1,0,2014-02-25 04:14:02,2014-02-27 02:35:00,14002651CF10A,2014-02-25,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-25,Risk of Violence,1,Low,2014-02-25,2014-02-25,2014-02-27,1,2,766,0,0,0\r\n7235,joseph pegnatore,joseph,pegnatore,2013-05-15,Male,1994-11-05,21,Less than 25,Caucasian,0,6,0,0,1,-43,2013-04-02 12:51:03,2013-04-29 10:21:07,13004725CF10A,2013-04-02,,43,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-15,Risk of Violence,9,High,2013-05-15,2014-03-07,2014-03-16,1,0,296,0,0,0\r\n7236,miguel morales,miguel,morales,2013-08-05,Male,1940-09-29,75,Greater than 45,Hispanic,0,1,0,0,1,-112,2013-04-15 07:19:51,2013-07-26 08:45:38,13005467CF10A,,2013-04-16,111,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-05,Risk of Violence,1,Low,2013-08-05,2013-04-15,2013-07-26,1,0,970,0,0,0\r\n7237,john sarver,john,sarver,2014-01-10,Male,1975-04-28,40,25 - 45,Caucasian,0,4,0,0,3,0,2014-01-10 02:56:51,2014-02-19 11:13:51,14001418MU10A,2014-01-10,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-10,Risk of Violence,3,Low,2014-01-10,2014-01-10,2014-02-19,3,40,812,0,0,0\r\n7238,mildred jordan,mildred,jordan,2013-01-18,Female,1962-11-20,53,Greater than 45,Caucasian,0,1,0,0,0,0,2013-01-18 04:05:07,2013-01-18 08:05:05,13001298MM10A,2013-01-17,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2013-01-18,2013-01-18,0,0,1169,0,0,0\r\n7240,robert armstrong,robert,armstrong,2014-03-23,Male,1982-09-21,33,25 - 45,African-American,0,3,0,0,4,-1,2014-03-22 02:06:49,2014-03-23 09:32:47,14005014MM10A,2014-03-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-23,Risk of Violence,1,Low,2014-03-23,2014-03-22,2014-03-23,4,0,740,0,0,0\r\n7242,alexis carty,alexis,carty,2013-10-07,Female,1994-01-16,22,Less than 25,African-American,0,4,0,0,0,-1,2013-10-06 01:06:40,2013-10-07 08:44:19,13018987MM10A,2013-10-05,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,5,Medium,2013-10-07,2013-10-06,2013-10-07,0,0,907,0,0,0\r\n7245,shantrill lanier,shantrill,lanier,2013-09-12,Male,1990-10-18,25,25 - 45,African-American,0,8,0,0,5,-1,2013-09-11 10:12:35,2013-09-15 03:38:22,13017315MM10A,2013-09-11,,1,M,Battery,1,13015774CF10A,(F2),0,2013-11-13,Burglary Unoccupied Dwelling,2013-11-13,2013-12-28,,1,15007310MM10A,(M1),2015-04-30,Battery,Risk of Recidivism,8,High,2013-09-12,Risk of Violence,6,Medium,2013-09-12,2013-11-13,2013-12-28,5,3,62,1,1,1\r\n7246,christopher vanburen,christopher,vanburen,2013-09-12,Male,1991-09-10,24,Less than 25,Caucasian,0,2,0,0,2,-1,2013-09-11 05:34:21,2013-09-12 08:29:00,13012869CF10A,,2013-09-11,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-12,Risk of Violence,4,Low,2013-09-12,2013-09-11,2013-09-12,2,0,932,0,0,0\r\n7249,windeline rosume,windeline,rosume,2013-02-09,Female,1989-09-11,26,25 - 45,African-American,0,7,0,0,1,0,2013-02-09 04:50:20,2013-02-11 05:17:53,13002015CF10A,,2013-02-09,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-09,Risk of Violence,6,Medium,2013-02-09,2013-02-09,2013-02-11,1,2,1147,0,0,0\r\n7250,james woodfork,james,woodfork,2013-02-28,Male,1959-11-11,56,Greater than 45,African-American,0,4,0,0,9,,,,12012959CF10A,,2012-09-03,178,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-28,Risk of Violence,2,Low,2013-02-28,1995-07-20,2000-11-01,9,0,1128,0,0,0\r\n7257,tiberio rapisarda,tiberio,rapisarda,2013-12-15,Male,1991-08-21,24,Less than 25,Caucasian,0,3,0,0,1,-1,2013-12-14 08:26:15,2013-12-15 09:06:30,13017282CF10A,2013-12-14,,1,F,Pos Cannabis W/Intent Sel/Del,1,14003842CF10A,(F7),,2014-01-09,Burglary Dwelling Assault/Batt,,,,1,14003842CF10A,(F7),2014-01-09,Burglary Dwelling Assault/Batt,Risk of Recidivism,3,Low,2013-12-15,Risk of Violence,4,Low,2013-12-15,2014-01-12,2014-01-13,1,0,25,1,1,1\r\n7259,courtney harbison,courtney,harbison,2013-11-21,Male,1989-12-07,26,25 - 45,Caucasian,0,5,0,0,5,-1,2013-11-20 12:21:01,2013-11-26 05:30:07,13021823MM10A,2013-11-20,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-21,Risk of Violence,6,Medium,2013-11-21,2013-11-20,2013-11-26,5,5,862,0,0,0\r\n7263,terry flowers,terry,flowers,2013-01-18,Male,1950-06-08,65,Greater than 45,Caucasian,0,6,0,0,3,,,,09002234CF10A,,2012-07-17,185,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-18,Risk of Violence,1,Low,2013-01-18,,,3,0,1169,0,0,0\r\n7265,jackie kittles,jackie,kittles,2013-09-17,Male,1951-08-31,64,Greater than 45,African-American,0,6,0,0,13,-28,2013-08-20 04:49:05,2013-08-21 07:35:28,13011685CF10A,2013-08-20,,28,M,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-17,Risk of Violence,2,Low,2013-09-17,2013-08-20,2013-08-21,13,0,927,0,0,0\r\n7266,andrew semple,andrew,semple,2014-02-06,Male,1991-05-24,24,Less than 25,Caucasian,0,2,0,0,0,-1,2014-02-05 07:22:17,2014-02-06 09:10:58,14001639CF10A,2014-02-05,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-06,Risk of Violence,3,Low,2014-02-06,2014-08-26,2014-09-03,0,0,201,0,0,0\r\n7268,antonio amos,antonio,amos,2013-09-27,Male,1981-01-12,35,25 - 45,African-American,0,6,0,0,29,-101,2013-06-18 07:13:32,2013-07-20 02:29:18,13008843CF10A,2013-06-18,,101,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-27,Risk of Violence,8,High,2013-09-27,2016-03-20,2016-03-29,29,0,905,0,0,0\r\n7269,sharon ravitz,sharon,ravitz,2013-02-27,Female,1958-12-11,57,Greater than 45,Caucasian,0,1,0,0,0,-5,2013-02-22 09:42:37,2013-02-23 07:56:35,13003737MM10A,2013-02-22,,5,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-27,Risk of Violence,1,Low,2013-02-27,2013-02-22,2013-02-23,0,0,1129,0,0,0\r\n7271,lynda luck,lynda,luck,2013-05-27,Female,1969-06-04,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-26 11:07:51,2013-05-28 07:56:52,13010109MM10A,2013-05-26,,1,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-06-10,2013-06-13,0,1,14,0,0,0\r\n7272,daniel black,daniel,black,2013-02-17,Male,1959-09-02,56,Greater than 45,African-American,0,5,0,0,16,-1,2013-02-16 11:36:19,2013-02-17 01:39:22,13002391CF10A,2013-02-16,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-17,Risk of Violence,2,Low,2013-02-17,2014-04-24,2014-09-14,16,0,431,0,0,0\r\n7275,angie luti,angie,luti,2013-11-08,Female,1977-04-05,39,25 - 45,Caucasian,0,2,0,0,0,-1,2013-11-07 02:45:39,2013-11-07 09:01:07,13021012MM10A,2013-11-07,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2013-11-07,2013-11-07,0,0,875,0,0,0\r\n7276,wesley tole,wesley,tole,2014-02-10,Male,1947-05-15,68,Greater than 45,Caucasian,0,1,0,0,4,-1,2014-02-09 03:36:05,2014-02-20 08:48:46,14002261MM10A,2014-01-05,,36,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-10,Risk of Violence,1,Low,2014-02-10,2014-02-09,2014-02-20,4,10,781,0,0,0\r\n7279,jovan larrieux,jovan,larrieux,2013-12-27,Male,1988-01-21,28,25 - 45,African-American,0,3,0,0,1,-1,2013-12-26 05:11:53,2013-12-27 08:03:01,13024021MM10A,2013-12-26,,1,M,Battery,1,15002582CF10A,(F2),155,2014-11-24,Aggravated Battery / Pregnant,2015-04-28,2015-04-29,,1,15002582CF10A,(F2),2014-11-24,Aggravated Battery / Pregnant,Risk of Recidivism,3,Low,2013-12-27,Risk of Violence,3,Low,2013-12-27,2015-10-20,2015-10-27,1,0,332,1,1,1\r\n7281,donald keltner,donald,keltner,2013-08-28,Male,1977-06-23,38,25 - 45,Caucasian,0,1,0,0,0,-1,2013-08-27 12:55:12,2013-08-28 10:01:11,13016410MM10A,2013-08-27,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-28,Risk of Violence,1,Low,2013-08-28,2013-08-27,2013-08-28,0,0,947,0,0,0\r\n7283,jeremiah young,jeremiah,young,2014-01-27,Female,1990-07-26,25,25 - 45,African-American,0,10,0,0,3,-23,2014-01-04 03:28:31,2014-01-05 08:57:38,13020661MM10A,,2014-01-04,23,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-27,Risk of Violence,8,High,2014-01-27,2014-01-04,2014-01-05,3,0,795,0,0,0\r\n7284,david harris,david,harris,2013-01-04,Male,1991-04-18,25,25 - 45,Caucasian,0,5,0,1,2,0,2013-01-04 12:58:41,2013-01-05 06:15:10,13000140CF10A,2013-01-03,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-04,Risk of Violence,4,Low,2013-01-04,2013-03-26,2013-03-28,2,1,81,0,0,0\r\n7286,michael hernandez,michael,hernandez,2013-03-19,Male,1985-03-07,31,25 - 45,Caucasian,0,5,0,0,2,0,2013-03-19 04:52:54,2013-04-04 08:16:47,13003980CF10A,2013-03-19,,0,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-19,Risk of Violence,5,Medium,2013-03-19,2013-03-19,2013-04-04,2,16,1109,0,0,0\r\n7291,jarel bynes,jarel,bynes,2013-03-26,Male,1985-01-27,31,25 - 45,African-American,0,7,0,0,2,,,,10020426CF10A,2010-11-18,,859,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-26,Risk of Violence,4,Low,2013-03-26,,,2,0,1102,0,0,0\r\n7292,kakeen thomas,kakeen,thomas,2013-03-13,Female,1980-07-09,35,25 - 45,African-American,0,8,0,0,13,0,2013-03-13 01:13:54,2013-03-15 10:13:46,13003693CF10A,2013-03-12,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-13,Risk of Violence,5,Medium,2013-03-13,2013-03-13,2013-03-15,13,2,1115,0,0,0\r\n7293,vincent gordon,vincent,gordon,2013-12-13,Male,1981-07-24,34,25 - 45,African-American,0,8,6,1,19,-1,2013-12-12 07:17:08,2013-12-13 09:22:13,13014771MM10A,,2013-12-12,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-13,Risk of Violence,4,Low,2013-12-13,2013-12-12,2013-12-13,19,0,840,0,0,0\r\n7296,robert livingston,robert,livingston,2013-03-05,Male,1958-08-22,57,Greater than 45,Other,0,1,0,0,0,-1,2013-03-04 07:27:27,2013-03-05 02:00:07,13004427MM10A,2013-03-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-05,Risk of Violence,1,Low,2013-03-05,2013-03-04,2013-03-05,0,0,1123,0,0,0\r\n7298,latonya griffin,latonya,griffin,2013-10-22,Female,1973-11-12,42,25 - 45,African-American,0,2,0,0,1,-1,2013-10-21 06:00:21,2013-10-22 01:59:31,13014714CF10A,2013-10-21,,1,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-21,2013-10-22,1,0,892,0,0,0\r\n7300,james cerpa,james,cerpa,2014-03-25,Male,1991-10-03,24,Less than 25,Caucasian,0,9,0,0,1,-60,2014-01-24 10:32:35,2014-03-03 01:21:54,13004982CF10A,,2014-01-24,60,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-25,Risk of Violence,8,High,2014-03-25,2014-01-24,2014-03-03,1,0,738,0,0,0\r\n7302,telly thomas,telly,thomas,2014-06-07,Male,1975-01-28,41,25 - 45,African-American,1,10,1,0,24,-1,2014-06-06 07:27:50,2014-06-07 10:30:56,14007846CF10A,2014-06-06,,1,F,Possession of Cocaine,1,15005575CF10A,(F7),0,2015-04-28,Burglary Dwelling Assault/Batt,2015-04-28,2015-12-07,,1,15005575CF10A,(F7),2015-04-28,Burglary Dwelling Assault/Batt,Risk of Recidivism,10,High,2014-06-07,Risk of Violence,3,Low,2014-06-07,2014-06-19,2014-06-26,24,0,12,0,1,1\r\n7304,hannsataky moriaux,hannsataky,moriaux,2013-08-04,Male,1989-01-31,27,25 - 45,Caucasian,0,2,0,0,0,-1,2013-08-03 04:44:27,2013-08-04 07:42:20,13010872CF10A,2013-08-03,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-04,Risk of Violence,3,Low,2013-08-04,2013-08-03,2013-08-04,0,0,971,0,0,0\r\n7310,eid ayoub,eid,ayoub,2013-02-02,Male,1981-12-17,34,25 - 45,Caucasian,0,2,0,0,5,0,2013-02-02 03:10:41,2013-02-03 07:07:09,13001667CF10A,2013-02-02,,0,F,Possession of Cocaine,1,15007181CF10A,(F3),0,2015-06-02,Use Scanning Device to Defraud,2015-06-02,2015-11-09,,0,,,,,Risk of Recidivism,2,Low,2013-02-02,Risk of Violence,2,Low,2013-02-02,2013-12-02,2013-12-18,5,1,303,0,0,0\r\n7311,pedro bianchini,pedro,bianchini,2013-02-04,Male,1965-07-22,50,Greater than 45,Hispanic,0,1,0,0,0,0,2013-02-04 01:55:09,2013-02-04 10:08:08,13002557MM10A,2013-02-03,,1,M,DUI- Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-02-04,2013-02-04,0,0,1152,0,0,0\r\n7312,alan sorto,alan,sorto,2014-04-06,Male,1990-05-02,25,25 - 45,Caucasian,0,8,1,0,6,0,2014-04-06 02:30:39,2014-04-06 07:45:48,14004746CF10A,2014-04-05,,1,F,Crim Use of Personal ID Info,1,16001768MM10A,(M1),,2016-01-11,Battery,,,,1,16001768MM10A,(M1),2016-01-11,Battery,Risk of Recidivism,8,High,2014-04-06,Risk of Violence,6,Medium,2014-04-06,2014-04-06,2014-04-06,6,0,645,1,1,1\r\n7316,mauricio arias,mauricio,arias,2013-01-28,Male,1976-10-24,39,25 - 45,Hispanic,0,3,0,0,2,,,,12018690MM10A,2012-09-08,,142,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,,,2,0,1159,0,0,0\r\n7317,kenata williams,kenata,williams,2013-01-03,Male,1988-07-25,27,25 - 45,African-American,0,7,0,0,2,-1,2013-01-02 07:07:44,2013-03-26 10:38:08,11019434CF10A,,2012-07-18,169,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-03,Risk of Violence,6,Medium,2013-01-03,2015-05-27,2015-11-01,2,82,874,0,0,0\r\n7318,jamesley charles,jamesley,charles,2013-05-23,Male,1991-02-06,25,25 - 45,African-American,0,3,0,0,3,,,,12015700CF10A,,2012-11-28,176,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-23,Risk of Violence,3,Low,2013-05-23,,,3,0,1044,0,0,0\r\n7321,carlo johnson,carlo,johnson,2013-01-31,Male,1988-12-02,27,25 - 45,African-American,0,5,0,0,0,-1,2013-01-30 08:22:40,2013-01-31 07:32:24,13001518CF10A,2013-01-30,,1,F,Uttering Forged Credit Card,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-31,Risk of Violence,6,Medium,2013-01-31,2014-05-31,2014-06-05,0,0,485,0,0,0\r\n7324,ivan gonzalez,ivan,gonzalez,2013-01-19,Male,1985-10-07,30,25 - 45,Caucasian,0,1,0,0,0,-1,2013-01-18 08:26:44,2013-01-19 01:18:54,13000868CF10A,2013-01-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-19,Risk of Violence,2,Low,2013-01-19,2013-01-18,2013-01-19,0,0,1168,0,0,0\r\n7326,joshua oliver,joshua,oliver,2013-02-02,Male,1992-03-04,24,Less than 25,African-American,0,8,0,0,3,-1,2013-02-01 11:43:49,2013-04-18 07:00:00,13001604CF10A,2013-02-01,,1,F,Pos Cannabis W/Intent Sel/Del,1,16000485MM30A,(M1),,2016-03-16,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2013-02-02,Risk of Violence,7,Medium,2013-02-02,2014-04-23,2014-05-06,3,75,445,0,0,0\r\n7327,carlos walker,carlos,walker,2013-05-12,Male,1977-03-18,39,25 - 45,African-American,0,1,0,0,0,-1,2013-05-11 03:06:34,2013-05-12 07:30:59,13009117MM10A,2013-05-11,,1,M,Assault,1,15015990CF10A,(F3),,2015-12-14,Aggravated Assault W/Dead Weap,,,,1,15015990CF10A,(F3),2015-12-14,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2013-05-12,Risk of Violence,1,Low,2013-05-12,2015-12-15,2015-12-16,0,0,946,1,0,0\r\n7328,lamar mccullough,lamar,mccullough,2013-05-25,Male,1984-04-18,32,25 - 45,African-American,0,6,0,0,6,55,2013-07-19 11:55:28,2013-08-23 04:43:22,12008652CF10A,2012-06-12,,347,F,Possession of Cannabis,1,13016062MM10A,(M1),0,2013-07-19,Resist/Obstruct W/O Violence,2013-07-19,2013-08-23,,1,13010150CF10A,(F1),2013-07-19,Burglary With Assault/battery,Risk of Recidivism,6,Medium,2013-05-25,Risk of Violence,4,Low,2013-05-25,2013-07-19,2013-08-23,6,0,55,1,1,1\r\n7334,antonio philmore,antonio,philmore,2013-03-01,Male,1989-12-15,26,25 - 45,African-American,0,10,1,0,24,0,2013-03-01 01:25:58,2013-03-01 08:28:35,13003052CF10A,2013-02-28,,1,F,Driving While License Revoked,1,14007346CF10A,(F3),0,2014-05-27,Driving While License Revoked,2014-05-27,2014-05-28,,1,15003134CF10A,(F3),2015-03-07,Felony Battery (Dom Strang),Risk of Recidivism,10,High,2013-03-01,Risk of Violence,7,Medium,2013-03-01,2013-10-10,2013-10-16,24,0,223,0,1,1\r\n7337,kenauld chevelon,kenauld,chevelon,2013-02-02,Male,1985-11-13,30,25 - 45,Other,0,1,0,0,2,-1,2013-02-01 07:57:47,2013-02-02 08:53:50,13001613CF10A,,2013-02-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-02,Risk of Violence,2,Low,2013-02-02,2013-02-01,2013-02-02,2,0,1154,0,0,0\r\n7338,kerome paisley,kerome,paisley,2013-12-05,Male,1995-07-05,20,Less than 25,African-American,1,10,1,1,4,14,2013-12-19 04:03:39,2014-12-30 06:19:19,13010552CF10A,2013-07-23,,135,F,Grand Theft in the 3rd Degree,1,13017503CF10A,(F2),1,2013-12-18,Grand Theft of the 2nd Degree,2013-12-19,2014-12-30,,1,13017503CF10A,(F2),2013-12-18,Agg Assault Law Enforc Officer,Risk of Recidivism,10,High,2013-12-05,Risk of Violence,7,Medium,2013-12-05,2014-12-30,2020-01-01,4,0,13,1,1,1\r\n7343,ryan shields,ryan,shields,2013-03-20,Male,1991-03-27,25,25 - 45,Caucasian,0,3,0,0,0,-1,2013-03-19 04:15:00,2013-03-20 07:31:24,13004001CF10A,2013-03-19,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-20,Risk of Violence,4,Low,2013-03-20,2016-02-11,2016-04-09,0,0,1058,0,0,0\r\n7344,chamoy wright,chamoy,wright,2013-02-11,Male,1990-07-19,25,25 - 45,African-American,0,5,0,0,2,-1,2013-02-10 03:23:16,2013-02-11 07:27:53,13002070CF10A,2013-02-10,,1,F,Crimin Mischief Damage $1000+,1,13009112CF10A,(F2),136,2013-05-17,Shoot/Throw Into Vehicle,2013-09-30,2013-10-01,,1,13009112CF10A,(F2),2013-05-17,Shoot/Throw Into Vehicle,Risk of Recidivism,5,Medium,2013-02-11,Risk of Violence,5,Medium,2013-02-11,2013-09-30,2013-10-01,2,0,95,1,1,1\r\n7347,janey martin,janey,martin,2013-08-22,Female,1990-05-03,25,25 - 45,African-American,0,7,0,0,0,-1,2013-08-21 05:03:37,2013-08-26 08:41:40,13011728CF10A,2013-08-21,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-22,Risk of Violence,5,Medium,2013-08-22,2013-08-21,2013-08-26,0,4,953,0,0,0\r\n7348,rashidi lee,rashidi,lee,2013-03-28,Male,1977-10-11,38,25 - 45,African-American,0,2,0,0,0,0,2013-03-28 01:18:25,2013-03-29 03:48:52,13005982MM10A,2013-03-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-28,2013-03-29,0,1,1100,0,0,0\r\n7351,francisco jimenezpagan,francisco,jimenezpagan,2013-09-22,Male,1976-03-01,40,25 - 45,Hispanic,0,5,0,0,0,0,2013-09-22 03:48:15,2013-11-26 01:12:39,13013360CF10A,2013-09-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-22,Risk of Violence,1,Low,2013-09-22,2013-09-22,2013-11-26,0,65,922,0,0,0\r\n7354,debra tripp,debra,tripp,2013-10-30,Female,1967-04-15,49,Greater than 45,Caucasian,0,2,0,0,4,-1,2013-10-29 05:20:32,2013-11-02 02:40:16,13020469MM10A,2013-10-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2013-10-29,2013-11-02,4,3,884,0,0,0\r\n7355,melissa becker,melissa,becker,2013-08-05,Female,1980-04-23,35,25 - 45,Caucasian,0,3,0,0,2,-3,2013-08-02 11:15:20,2013-08-04 08:22:38,13014709MM10A,2013-08-02,,3,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-05,Risk of Violence,1,Low,2013-08-05,2013-09-18,2013-10-01,2,0,44,0,0,0\r\n7358,shanairj mckenziewallace,shanairj,mckenziewallace,2013-12-20,Male,1990-11-11,25,25 - 45,Other,0,4,0,0,0,-1,2013-12-19 11:03:21,2013-12-21 04:28:19,13017513CF10A,2013-12-19,,1,F,Felony Batt(Great Bodily Harm),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-20,Risk of Violence,3,Low,2013-12-20,2013-12-19,2013-12-21,0,1,833,0,0,0\r\n7359,rafael guerrero,rafael,guerrero,2013-12-25,Male,1994-05-18,21,Less than 25,Caucasian,0,4,0,0,1,-1,2013-12-24 03:45:52,2013-12-25 02:37:17,13017762CF10A,2013-12-24,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-25,Risk of Violence,6,Medium,2013-12-25,2014-10-29,2014-11-17,1,0,308,0,0,0\r\n7360,alyza russell,alyza,russell,2013-10-07,Female,1991-04-25,24,Less than 25,Caucasian,0,4,0,0,2,-96,2013-07-03 07:12:06,2013-07-06 02:55:40,13009518CF10A,,2013-07-03,96,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,3,Low,2013-10-07,2013-07-03,2013-07-06,2,0,907,0,0,0\r\n7361,oscar martinez,oscar,martinez,2013-04-30,Male,1970-07-28,45,Greater than 45,Hispanic,0,3,0,0,1,,,,09010005CF10A,,2012-03-02,424,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-30,Risk of Violence,3,Low,2013-04-30,,,1,0,1067,0,0,0\r\n7365,shalev roae,shalev,roae,2013-05-22,Male,1987-06-28,28,25 - 45,Caucasian,0,3,0,0,3,-1,2013-05-21 07:48:21,2013-07-11 02:10:57,13007266CF10A,2013-05-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-22,Risk of Violence,2,Low,2013-05-22,2013-05-21,2013-07-11,3,50,1045,0,0,0\r\n7368,jaime forte,jaime,forte,2013-01-30,Female,1982-03-04,34,25 - 45,African-American,0,9,0,0,1,148,2013-06-27 04:22:40,2013-07-18 11:55:00,06015054MM10A,2006-08-01,,2374,M,Unlaw Use False Name/Identity,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-30,Risk of Violence,7,Medium,2013-01-30,2013-06-27,2013-07-18,1,0,148,0,0,0\r\n7370,coral norfus,coral,norfus,2013-03-24,Male,1958-05-12,57,Greater than 45,African-American,0,7,0,0,8,-1,2013-03-23 07:39:14,2013-03-28 08:55:47,13005693MM10A,2013-03-23,,1,M,Misuse Of 911 Or E911 System,1,15010914CF10A,(F3),0,2015-08-23,Aggravated Assault W/Dead Weap,2015-08-23,2015-09-23,,1,15010914CF10A,(F3),2015-08-23,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2013-03-24,Risk of Violence,5,Medium,2013-03-24,2015-08-23,2015-09-23,8,4,882,1,0,0\r\n7373,sammy worthy,sammy,worthy,2013-02-02,Male,1976-04-17,40,25 - 45,African-American,0,9,0,0,15,-1,2013-02-01 05:27:23,2013-04-14 11:31:39,13001606CF10A,2013-02-01,,1,F,Pos Cannabis W/Intent Sel/Del,1,13011940CF10A,(F2),0,2013-08-24,Poss Cocaine/Intent To Del/Sel,2013-08-24,2014-05-29,,1,15008682CF10A,(F2),2015-06-13,Throw Deadly Missile Into Veh,Risk of Recidivism,9,High,2013-02-02,Risk of Violence,7,Medium,2013-02-02,2013-08-24,2014-05-29,15,71,203,1,1,1\r\n7381,temisa brown,temisa,brown,2013-11-24,Female,1972-09-19,43,25 - 45,African-American,0,6,0,0,0,0,2013-11-24 12:15:06,2013-11-24 09:16:59,13016296CF10A,2013-11-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-24,Risk of Violence,1,Low,2013-11-24,2014-07-07,2014-09-02,0,0,225,0,0,0\r\n7384,barry nelson,barry,nelson,2013-08-10,Male,1993-02-17,23,Less than 25,African-American,0,7,0,0,1,,,,11017324CF10A,,2013-08-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-10,Risk of Violence,7,Medium,2013-08-10,,,1,0,965,0,0,0\r\n7387,braden hampton,braden,hampton,2013-10-23,Male,1972-08-26,43,25 - 45,Caucasian,0,6,0,0,12,-1,2013-10-22 07:27:02,2013-12-13 11:43:06,13014769CF10A,2013-10-22,,1,F,False Ownership Info/Pawn Item,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-23,Risk of Violence,3,Low,2013-10-23,2013-10-22,2013-12-13,12,51,891,0,0,0\r\n7388,tulsiram harnarrine,tulsiram,harnarrine,2013-09-12,Male,1983-05-26,32,25 - 45,Asian,0,1,0,0,0,-1,2013-09-11 03:41:17,2013-09-12 08:28:43,13017326MM10A,2013-09-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2013-09-11,2013-09-12,0,0,932,0,0,0\r\n7391,davonte resiles,davonte,resiles,2013-12-31,Male,1994-09-12,21,Less than 25,African-American,0,9,0,0,0,-1,2013-12-30 07:11:21,2014-01-01 02:59:37,13017991CF10A,2013-12-30,,1,F,Poss F/Arm Delinq,1,14012657CF10A,(F6),,2014-09-08,Murder in the First Degree,,,,1,14012657CF10A,(F6),2014-09-08,Murder in the First Degree,Risk of Recidivism,9,High,2013-12-31,Risk of Violence,9,High,2013-12-31,2013-12-30,2014-01-01,0,1,251,1,1,1\r\n7392,darren bryant,darren,bryant,2013-09-09,Male,1965-04-16,51,Greater than 45,African-American,0,3,0,0,2,-1,2013-09-08 09:34:56,2013-10-03 08:51:19,13014849CF10A,2013-09-08,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2013-12-04,2013-12-13,2,24,86,0,0,0\r\n7393,rasheem chamberlain,rasheem,chamberlain,2014-03-27,Male,1996-03-18,20,Less than 25,African-American,0,10,0,0,0,-1,2014-03-26 09:51:33,2014-04-07 08:56:16,14004306CF10A,2014-03-26,,1,M,Operating W/O Valid License,1,15001908MM10A,(M2),,2014-12-26,Criminal Mischief Damage <$200,,,,1,15001908MM10A,(M1),2014-12-26,Battery,Risk of Recidivism,10,High,2014-03-27,Risk of Violence,10,High,2014-03-27,2014-03-26,2014-04-07,0,11,274,1,1,1\r\n7394,jorge insua,jorge,insua,2013-12-04,Male,1976-05-16,39,25 - 45,Caucasian,0,1,0,0,1,-99,2013-08-27 02:30:28,2013-08-28 11:08:52,11016387CF10A,,2013-08-27,99,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-04,Risk of Violence,2,Low,2013-12-04,2013-08-27,2013-08-28,1,0,849,0,0,0\r\n7396,jose figueroa,jose,figueroa,2014-03-05,Male,1957-11-19,58,Greater than 45,Hispanic,0,1,0,0,1,-2,2014-03-03 02:58:09,2014-03-05 04:31:06,14003646MM10A,2014-03-03,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-05,Risk of Violence,1,Low,2014-03-05,2014-03-03,2014-03-05,1,0,758,0,0,0\r\n7399,barissa clarke,barissa,clarke,2013-05-14,Female,1987-06-24,28,25 - 45,Other,0,2,0,1,1,0,2013-05-14 02:30:57,2013-05-14 07:42:24,13006906CF10A,2013-05-14,,0,F,Agg Abuse Elderlly/Disabled Adult,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-14,Risk of Violence,2,Low,2013-05-14,2013-05-14,2013-05-14,1,0,1053,0,0,0\r\n7400,amari joseph,amari,joseph,2013-08-29,Female,1986-02-09,30,25 - 45,African-American,0,3,0,0,2,-1,2013-08-28 09:16:57,2013-08-29 07:25:16,13016486MM10A,2013-08-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-29,Risk of Violence,2,Low,2013-08-29,2013-08-28,2013-08-29,2,0,946,0,0,0\r\n7406,robert singh,robert,singh,2013-03-23,Male,1994-01-19,22,Less than 25,African-American,0,9,0,0,1,0,2013-03-23 01:18:11,2013-04-30 07:29:04,12007973CF10A,,2013-03-23,0,F,arrest case no charge,1,14009004MM10A,(M1),0,2014-06-06,Battery,2014-06-06,2014-07-09,,1,14009004MM10A,(M1),2014-06-06,Battery,Risk of Recidivism,9,High,2013-03-23,Risk of Violence,9,High,2013-03-23,2013-07-24,2013-08-20,1,38,123,0,1,1\r\n7410,steven dinapoli,steven,dinapoli,2013-04-03,Male,1965-04-26,50,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-04-02 08:14:47,2013-04-03 08:17:43,13004723CF10A,2013-04-02,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-03,Risk of Violence,2,Low,2013-04-03,2013-04-02,2013-04-03,1,0,1094,0,0,0\r\n7411,steven nance,steven,nance,2013-02-28,Male,1986-03-11,30,25 - 45,African-American,0,9,0,0,5,-1,2013-02-27 02:39:10,2013-02-28 11:47:13,13002993CF10A,2013-02-27,,1,M,Aggravated Assault W/dead Weap,1,15000565MM30A,(M1),,2015-03-18,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,9,High,2013-02-28,Risk of Violence,8,High,2013-02-28,2015-02-21,2015-03-09,5,0,723,0,0,0\r\n7412,robert rees,robert,rees,2014-10-26,Male,1987-05-17,28,25 - 45,Caucasian,0,2,0,0,0,-1,2014-10-25 08:45:48,2014-10-26 08:24:24,14014389CF10A,2014-10-25,,1,F,Felony Battery (Dom Strang),1,15001706MM30A,(M1),,2015-07-12,Cruelty To Animals,,,,1,15001706MM30A,(M1),2015-07-12,Cruelty To Animals,Risk of Recidivism,2,Low,2014-10-26,Risk of Violence,2,Low,2014-10-26,2014-10-25,2014-10-26,0,0,259,1,1,1\r\n7416,lance gonzalez,lance,gonzalez,2014-02-11,Male,1989-12-19,26,25 - 45,Hispanic,0,1,0,1,2,0,2014-02-11 12:38:04,2014-02-11 08:51:19,14002285MM10A,2014-02-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-11,Risk of Violence,2,Low,2014-02-11,2014-02-11,2014-02-11,2,0,780,0,0,0\r\n7417,laurel femia,laurel,femia,2013-01-27,Female,1964-10-01,51,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-01-26 10:20:37,2013-01-28 08:30:53,13001277CF10A,2013-01-26,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-27,Risk of Violence,1,Low,2013-01-27,2013-01-26,2013-01-28,0,1,1160,0,0,0\r\n7419,mark clarke,mark,clarke,2013-02-24,Male,1994-08-11,21,Less than 25,African-American,0,7,0,0,1,0,2013-02-24 02:13:05,2013-02-27 08:20:45,13002786CF10A,2013-02-24,,0,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-24,Risk of Violence,7,Medium,2013-02-24,2013-02-24,2013-02-27,1,3,1132,0,0,0\r\n7420,joshe bittelman,joshe,bittelman,2013-02-26,Male,1986-04-26,29,25 - 45,Caucasian,0,2,0,0,0,-1,2013-02-25 09:36:50,2013-02-26 12:43:55,13002853CF10A,2013-02-25,,1,F,Grand Theft in the 3rd Degree,1,14004663CF10A,(M1),0,2014-04-03,Resist/Obstruct W/O Violence,2014-04-03,2014-04-17,,1,14004663CF10A,(F2),2014-04-03,Agg Fleeing/Eluding High Speed,Risk of Recidivism,2,Low,2013-02-26,Risk of Violence,3,Low,2013-02-26,2014-04-03,2014-04-17,0,0,401,1,1,1\r\n7421,efrain apointe,efrain,apointe,2014-02-19,Male,1972-11-24,43,25 - 45,Caucasian,0,4,0,0,0,-1,2014-02-18 05:27:55,2014-02-19 02:01:25,14002818MM10A,2014-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-19,Risk of Violence,2,Low,2014-02-19,2014-02-18,2014-02-19,0,0,772,0,0,0\r\n7422,kadeem banton,kadeem,banton,2013-04-20,Male,1994-03-26,22,Less than 25,African-American,0,4,0,0,1,0,2013-04-20 12:32:51,2013-04-22 09:19:28,13005640CF10A,,2013-04-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,6,Medium,2013-04-20,2014-02-03,2014-03-11,1,2,289,0,0,0\r\n7424,jason banton,jason,banton,2013-04-27,Male,1979-06-29,36,25 - 45,African-American,0,1,0,0,0,0,2013-04-27 04:02:04,2013-04-28 03:43:31,13006069CF10A,2013-04-26,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-27,2013-04-28,0,1,1070,0,0,0\r\n7425,octavious harris,octavious,harris,2013-12-12,Male,1991-06-28,24,Less than 25,African-American,0,2,0,0,0,-1,2013-12-11 11:10:23,2013-12-12 08:41:07,13017207CF10A,2013-12-11,,1,F,Obstruct Fire Equipment,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-12,Risk of Violence,3,Low,2013-12-12,2013-12-11,2013-12-12,0,0,841,0,0,0\r\n7426,terris williams,terris,williams,2013-09-04,Male,1989-09-17,26,25 - 45,African-American,0,6,1,0,5,-1,2013-09-03 01:43:48,2013-09-04 04:59:20,13012458CF10A,2013-09-03,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-04,Risk of Violence,7,Medium,2013-09-04,2013-09-03,2013-09-04,5,0,940,0,0,0\r\n7427,kevin beach,kevin,beach,2013-01-12,Male,1988-12-09,27,25 - 45,African-American,0,8,0,0,8,0,2013-01-12 05:16:10,2013-01-12 08:53:13,13000565CF10A,2013-01-12,,0,M,Criminal Mischief Damage <$200,1,16002719MM10A,(M1),1,2016-03-21,,2016-03-22,2016-03-22,,0,,,,,Risk of Recidivism,8,High,2013-01-12,Risk of Violence,7,Medium,2013-01-12,2014-01-28,2014-03-06,8,0,381,0,0,0\r\n7432,john pitre,john,pitre,2013-04-29,Male,1990-01-19,26,25 - 45,Caucasian,0,5,0,0,2,0,2013-04-29 12:10:42,2013-04-29 06:51:38,13004470CF10A,,2013-04-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-29,Risk of Violence,3,Low,2013-04-29,2013-04-29,2013-04-29,2,0,1068,0,0,0\r\n7434,billy aiken,billy,aiken,2013-08-23,Male,1991-09-24,24,Less than 25,African-American,0,4,0,0,1,-163,2013-03-13 10:29:02,2013-08-16 09:09:04,12006423CF10A,,2013-03-13,163,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-23,Risk of Violence,5,Medium,2013-08-23,2013-03-13,2013-08-16,1,0,952,0,0,0\r\n7435,elizabeth joseph,elizabeth,joseph,2013-04-08,Female,1987-02-20,29,25 - 45,African-American,0,4,0,0,0,-3,2013-04-05 11:21:31,2013-04-06 01:18:28,13004907CF10A,2013-04-05,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-08,Risk of Violence,2,Low,2013-04-08,2013-04-05,2013-04-06,0,0,1089,0,0,0\r\n7440,chaddie harrison,chaddie,harrison,2013-08-09,Male,1981-04-25,34,25 - 45,African-American,1,6,0,0,5,0,2013-08-09 01:05:06,2013-08-09 08:05:00,13012757CF10A,2013-08-08,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-09,Risk of Violence,2,Low,2013-08-09,2013-08-09,2013-08-09,5,0,966,0,0,0\r\n7441,mikhail watson,mikhail,watson,2013-02-06,Male,1992-06-03,23,Less than 25,Other,0,4,0,0,2,-1,2013-02-05 11:15:36,2013-02-07 09:22:57,13001810CF10A,2013-02-05,,1,F,\"Deliver 3,4 Methylenediox\",1,15003101CF10A,(F3),0,2015-03-05,Carrying Concealed Firearm,2015-03-05,2015-03-06,,0,,,,,Risk of Recidivism,4,Low,2013-02-06,Risk of Violence,5,Medium,2013-02-06,2013-04-26,2013-04-26,2,1,79,0,0,0\r\n7443,christine king,christine,king,2013-08-02,Female,1986-11-01,29,25 - 45,African-American,0,2,0,0,1,-1,2013-08-01 06:50:52,2013-08-02 02:08:47,13014515MM10A,2013-08-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-02,Risk of Violence,2,Low,2013-08-02,2013-08-01,2013-08-02,1,0,973,0,0,0\r\n7444,daryll burgess,daryll,burgess,2013-02-01,Male,1991-06-22,24,Less than 25,African-American,0,5,0,0,1,0,2013-02-01 06:22:17,2013-02-02 03:17:53,13001635CF10A,2013-02-01,,0,F,Grand Theft (Motor Vehicle),1,15030363TC20A,(M2),,2015-05-17,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-01,Risk of Violence,5,Medium,2013-02-01,2013-02-01,2013-02-02,1,1,835,1,0,0\r\n7446,paul mcmullin,paul,mcmullin,2014-03-17,Male,1966-01-28,50,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-16 06:13:41,2014-03-17 02:19:32,14003714CF10A,2014-03-16,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-16,2014-03-17,0,0,746,0,0,0\r\n7447,jelissa jolly,jelissa,jolly,2013-03-11,Female,1991-10-08,24,Less than 25,African-American,0,7,0,0,0,-1,2013-03-10 08:01:47,2013-03-11 06:44:38,13004791MM10A,2013-03-10,,1,M,Criminal Mischief>$200<$1000,1,15060273TC30A,(M2),,2015-09-01,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-11,Risk of Violence,5,Medium,2013-03-11,2013-03-10,2013-03-11,0,0,904,1,0,0\r\n7448,mary davis,mary,davis,2014-02-17,Female,1984-07-31,31,25 - 45,African-American,0,3,0,0,0,0,2014-02-17 12:34:37,2014-02-17 09:33:27,14002215CF10A,2014-02-16,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-17,Risk of Violence,1,Low,2014-02-17,2014-10-28,2014-10-31,0,0,253,0,0,0\r\n7451,stephen korelisha,stephen,korelisha,2013-02-20,Male,1952-12-08,63,Greater than 45,Caucasian,0,1,0,0,1,,,,12002724MM10A,2012-02-08,,378,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,,,1,0,1136,0,0,0\r\n7455,etienne dozil,etienne,dozil,2013-01-09,Male,1993-12-18,22,Less than 25,African-American,0,7,0,0,0,-1,2013-01-08 02:04:01,2013-01-09 12:43:02,13000309CF10A,2013-01-08,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-09,Risk of Violence,7,Medium,2013-01-09,2013-11-25,2013-12-10,0,0,320,0,0,0\r\n7465,brandon castillo,brandon,castillo,2013-03-06,Male,1993-12-24,22,Less than 25,Caucasian,0,3,0,0,0,-1,2013-03-05 01:56:24,2013-03-06 07:34:50,13003294CF10A,2013-03-05,,1,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-06,Risk of Violence,6,Medium,2013-03-06,2013-03-05,2013-03-06,0,0,1122,0,0,0\r\n7466,daniel monteferante,daniel,monteferante,2013-03-23,Male,1988-04-21,27,25 - 45,Caucasian,0,2,0,0,0,0,2013-03-23 07:09:29,2013-03-24 07:23:23,13005721MM10A,2013-03-23,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-23,Risk of Violence,3,Low,2013-03-23,2013-03-23,2013-03-24,0,1,1105,0,0,0\r\n7467,catrice telfort,catrice,telfort,2013-08-30,Female,1994-10-15,21,Less than 25,Other,0,4,0,0,0,-1,2013-08-29 09:09:59,2013-08-30 08:31:19,13016563MM10A,2013-08-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-30,Risk of Violence,5,Medium,2013-08-30,2013-08-29,2013-08-30,0,0,945,0,0,0\r\n7472,richard sofer,richard,sofer,2013-03-18,Male,1935-12-24,80,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-17 12:58:22,2013-03-18 02:20:57,13005234MM10A,2013-03-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-17,2013-03-18,0,0,1110,0,0,0\r\n7475,anthony cardullo,anthony,cardullo,2013-08-28,Male,1957-06-05,58,Greater than 45,Caucasian,0,1,0,0,1,-42,2013-07-17 01:45:43,2013-07-17 07:42:45,13013514MM10A,2013-07-16,,43,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-28,Risk of Violence,1,Low,2013-08-28,2013-07-17,2013-07-17,1,0,947,0,0,0\r\n7476,kerry francois,kerry,francois,2013-09-22,Male,1947-12-18,68,Greater than 45,African-American,0,4,0,0,6,-1,2013-09-21 10:10:59,2013-09-24 04:44:52,13018011MM10A,2013-09-21,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-22,Risk of Violence,1,Low,2013-09-22,2015-06-24,2015-06-26,6,2,640,0,0,0\r\n7477,roderick thomas,roderick,thomas,2013-02-12,Male,1992-05-28,23,Less than 25,African-American,0,8,0,0,1,0,2013-02-12 02:32:57,2013-02-14 03:14:28,13002206CF10A,2013-02-12,,0,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-12,Risk of Violence,5,Medium,2013-02-12,2013-06-29,2013-08-15,1,2,137,0,0,0\r\n7479,david oconnell,david,oconnell,2013-03-31,Male,1992-01-20,24,Less than 25,Caucasian,0,10,0,0,0,-1,2013-03-30 10:27:46,2013-04-15 09:08:38,13004573CF10A,2013-03-30,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-03-31,Risk of Violence,7,Medium,2013-03-31,2013-07-11,2013-07-25,0,15,102,0,0,0\r\n7480,nathan strickland,nathan,strickland,2014-03-25,Male,1975-02-23,41,25 - 45,Caucasian,0,1,0,0,2,-42,2014-02-11 09:19:52,2014-03-25 10:21:03,14001939CF10A,2014-02-11,,42,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-25,Risk of Violence,1,Low,2014-03-25,2014-02-11,2014-03-25,2,0,738,0,0,0\r\n7481,santiago pinzon,santiago,pinzon,2013-04-10,Male,1995-01-17,21,Less than 25,Caucasian,0,8,0,1,0,-1,2013-04-09 07:15:24,2013-04-10 08:13:56,13005098CF10A,2013-04-09,,1,F,Battery on Law Enforc Officer,1,13009545CF10A,(F2),0,2013-07-08,Robbery / No Weapon,2013-07-08,2013-10-05,,1,13009545CF10A,(F2),2013-07-08,Robbery / No Weapon,Risk of Recidivism,8,High,2013-04-10,Risk of Violence,7,Medium,2013-04-10,2013-07-08,2013-10-05,0,0,89,1,1,1\r\n7482,tegray whilby,tegray,whilby,2014-04-09,Male,1990-03-12,26,25 - 45,African-American,0,4,0,0,3,0,2014-04-09 03:30:16,2014-04-10 08:41:45,14006052MM10A,2014-04-09,,0,M,Battery,1,14008252CF10A,(F3),0,2014-06-14,Felony Battery (Dom Strang),2014-06-14,2014-06-18,,1,14008252CF10A,(F3),2014-06-14,Felony Battery (Dom Strang),Risk of Recidivism,4,Low,2014-04-09,Risk of Violence,5,Medium,2014-04-09,2014-06-14,2014-06-18,3,1,66,1,1,1\r\n7485,joel valentin,joel,valentin,2013-12-28,Male,1977-01-15,39,25 - 45,Hispanic,0,1,0,0,0,,,,13023875MM10A,2013-12-27,,1,M,Battery,1,14014711MM10A,(M1),,2014-10-07,Battery,,,,1,14014711MM10A,(M1),2014-10-07,Battery,Risk of Recidivism,1,Low,2013-12-28,Risk of Violence,1,Low,2013-12-28,,,0,0,283,1,1,1\r\n7487,christopher dalessandro,christopher,dalessandro,2013-09-15,Male,1980-04-02,36,25 - 45,Caucasian,0,5,0,0,1,-1,2013-09-14 07:24:56,2013-09-15 04:24:09,13012993CF10A,2013-09-14,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-15,Risk of Violence,1,Low,2013-09-15,2013-09-14,2013-09-15,1,0,929,0,0,0\r\n7488,densmore daniels,densmore,daniels,2013-12-19,Male,1994-10-20,21,Less than 25,African-American,0,8,0,0,0,-1,2013-12-18 01:10:47,2014-01-21 11:37:54,13017467CF10A,2013-12-18,,1,F,Aggravated Battery,1,14015133CF10A,(M1),0,2014-11-11,Aggravated Battery / Pregnant,2014-11-11,2014-11-12,,1,14015133CF10A,(M1),2014-11-11,Aggravated Battery / Pregnant,Risk of Recidivism,8,High,2013-12-19,Risk of Violence,7,Medium,2013-12-19,2014-04-23,2014-04-28,0,33,125,0,1,1\r\n7490,latoya neal,latoya,neal,2013-02-02,Female,1984-11-03,31,25 - 45,African-American,0,5,0,0,1,-1,2013-02-01 09:12:20,2013-02-02 05:51:04,11017327MM10A,,2013-02-01,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-02,Risk of Violence,3,Low,2013-02-02,2013-02-01,2013-02-02,1,0,1154,0,0,0\r\n7495,michael somers,michael,somers,2013-02-19,Male,1966-10-31,49,Greater than 45,Caucasian,0,8,0,0,4,-8,2013-02-11 01:58:24,2013-02-15 08:53:04,13003037MM10A,2013-02-11,,8,M,Disorderly Conduct,1,16000105CF10A,(F2),,2016-01-03,Arson in the Second Degree,,,,1,16000105CF10A,(F2),2016-01-03,Arson in the Second Degree,Risk of Recidivism,8,High,2013-02-19,Risk of Violence,3,Low,2013-02-19,2013-02-11,2013-02-15,4,0,1048,1,0,0\r\n7496,peter reilly,peter,reilly,2013-10-20,Male,1992-02-25,24,Less than 25,Caucasian,0,9,0,0,0,0,2013-10-20 01:51:38,2013-10-22 07:47:53,13014672CF10A,2013-10-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-20,Risk of Violence,7,Medium,2013-10-20,2013-10-20,2013-10-22,0,2,894,0,0,0\r\n7499,siarhei marakin,siarhei,marakin,2013-10-21,Male,1971-08-07,44,25 - 45,Caucasian,0,1,0,0,1,-22,2013-09-29 04:09:48,2013-09-30 12:00:01,13018503MM10A,2013-09-29,,22,M,Battery,1,15032494MU10A,(M2),0,2015-12-01,Reckless Driving,2015-12-01,2015-12-02,,0,,,,,Risk of Recidivism,1,Low,2013-10-21,Risk of Violence,1,Low,2013-10-21,2015-12-01,2015-12-02,1,0,771,1,0,0\r\n7500,shantegra godfrey,shantegra,godfrey,2013-09-04,Female,1990-08-18,25,25 - 45,African-American,0,3,0,0,1,-13,2013-08-22 05:18:15,2013-09-04 05:19:31,13011839CF10A,2013-08-22,,13,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-04,Risk of Violence,4,Low,2013-09-04,2014-04-03,2014-04-08,1,0,211,0,0,0\r\n7503,vinessia gray,vinessia,gray,2013-12-06,Male,1990-10-06,25,25 - 45,African-American,0,2,0,0,1,-1,2013-12-05 09:04:52,2013-12-06 08:24:30,13016849CF10A,,2013-12-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-06,Risk of Violence,3,Low,2013-12-06,2014-12-01,2014-12-05,1,0,360,0,0,0\r\n7508,meyer renteria,meyer,renteria,2013-10-21,Male,1971-04-30,44,25 - 45,Hispanic,0,1,0,0,0,-1,2013-10-20 01:02:00,2013-10-21 07:40:50,13019856MM10A,2013-10-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-21,Risk of Violence,1,Low,2013-10-21,2013-10-20,2013-10-21,0,0,893,0,0,0\r\n7510,irving emmanuel,irving,emmanuel,2013-05-07,Male,1982-09-18,33,25 - 45,African-American,0,1,0,0,0,-1,2013-05-06 11:44:29,2013-05-07 01:25:39,13006548CF10A,2013-05-06,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-07,Risk of Violence,1,Low,2013-05-07,2013-05-06,2013-05-07,0,0,1060,0,0,0\r\n7511,akeem james,akeem,james,2014-11-09,Male,1996-03-07,20,Less than 25,African-American,0,7,0,0,0,-1,2014-11-08 01:54:07,2014-11-09 06:36:07,14015007CF10A,2014-11-08,,1,F,Aggrav Battery w/Deadly Weapon,1,15000314MM10A,(M1),1,2015-01-08,Viol Pretrial Release Dom Viol,2015-01-09,2015-03-18,,1,15000314MM10A,(M1),2015-01-08,Battery,Risk of Recidivism,7,Medium,2014-11-09,Risk of Violence,7,Medium,2014-11-09,2015-01-09,2015-03-18,0,0,60,1,1,1\r\n7514,belinda triana,belinda,triana,2013-03-26,Male,1972-01-06,44,25 - 45,Caucasian,0,5,0,0,3,-4,2013-03-22 11:44:12,2013-03-23 07:50:49,13004194CF10A,2013-03-22,,4,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-26,Risk of Violence,1,Low,2013-03-26,2014-02-05,2014-03-06,3,0,316,0,0,0\r\n7517,denise jackson-minott,denise,jackson-minott,2013-03-23,Female,1974-07-24,41,25 - 45,African-American,0,1,0,0,0,0,2013-03-23 03:53:04,2013-03-24 06:30:15,13005720MM10A,2013-03-23,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-23,Risk of Violence,1,Low,2013-03-23,2013-03-23,2013-03-24,0,1,1105,0,0,0\r\n7519,haywood farrow,haywood,farrow,2013-02-20,Male,1985-11-30,30,25 - 45,African-American,0,5,0,0,1,-1,2013-02-19 11:27:33,2013-03-13 05:49:26,13002530CF10A,2013-02-19,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-20,Risk of Violence,2,Low,2013-02-20,2013-02-19,2013-03-13,1,21,1136,0,0,0\r\n7520,rosalia poirier,rosalia,poirier,2013-03-10,Female,1992-07-30,23,Less than 25,Caucasian,0,6,0,0,0,,,,12000487MO30A,,2012-09-20,171,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-10,Risk of Violence,5,Medium,2013-03-10,,,0,0,1118,0,0,0\r\n7523,cedric fraser,cedric,fraser,2014-10-05,Male,1989-12-08,26,25 - 45,African-American,0,1,0,0,1,-1,2014-10-04 09:26:00,2014-10-05 01:23:01,14013402CF10A,2014-10-04,,1,F,Grand Theft in the 3rd Degree,1,14016939CF10A,(F3),,2014-11-16,Felony Batt(Great Bodily Harm),,,,1,14016939CF10A,(F3),2014-11-16,Felony Batt(Great Bodily Harm),Risk of Recidivism,1,Low,2014-10-05,Risk of Violence,2,Low,2014-10-05,2014-10-04,2014-10-05,1,0,42,1,1,1\r\n7524,tatiana quiruz,tatiana,quiruz,2013-09-09,Female,1984-03-09,32,25 - 45,Hispanic,0,2,0,0,0,-3,2013-09-06 01:25:48,2013-09-06 09:12:22,13012552CF10A,2013-09-05,,4,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2013-09-06,2013-09-06,0,0,935,0,0,0\r\n7525,christopher hernandez,christopher,hernandez,2013-07-09,Male,1990-02-16,26,25 - 45,Caucasian,0,4,0,0,2,-60,2013-05-10 03:57:24,2013-05-10 08:47:36,13007633CF10A,2013-05-10,,60,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-09,Risk of Violence,4,Low,2013-07-09,2013-05-10,2013-05-10,2,0,997,0,0,0\r\n7530,denise smith,denise,smith,2014-01-02,Female,1972-05-13,43,25 - 45,African-American,0,9,0,1,9,-1,2014-01-01 04:58:59,2014-01-03 04:58:13,14000041MM10A,2014-01-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-02,Risk of Violence,7,Medium,2014-01-02,2014-01-01,2014-01-03,9,1,820,0,0,0\r\n7536,christian johnson,christian,johnson,2014-01-28,Male,1977-01-12,39,25 - 45,Caucasian,0,1,0,0,1,-4,2014-01-24 01:00:03,2014-01-25 02:10:46,14001053CF10A,2014-01-24,,4,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-28,Risk of Violence,1,Low,2014-01-28,2014-08-27,2014-09-03,1,0,211,0,0,0\r\n7538,yolanda allen,yolanda,allen,2013-10-30,Female,1966-09-04,49,Greater than 45,African-American,0,1,0,0,1,,,,12006122CF10A,2010-10-02,,1124,F,Unemployment Compensatn Fraud,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,,,1,0,884,0,0,0\r\n7541,larry boyd,larry,boyd,2013-03-02,Male,1953-04-08,63,Greater than 45,Caucasian,0,1,0,0,5,-1,2013-03-01 09:14:42,2013-03-05 10:01:18,13004228MO10A,2013-03-01,,1,M,Prostitution,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-02,Risk of Violence,1,Low,2013-03-02,2013-04-27,2013-05-06,5,3,56,0,0,0\r\n7545,yevgeniy kochnev,yevgeniy,kochnev,2013-05-09,Male,1991-08-15,24,Less than 25,Caucasian,0,5,0,2,3,-1,2013-05-08 11:47:13,2013-05-09 07:58:42,13006596CF10A,2013-05-08,,1,F,Purchase Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-09,Risk of Violence,4,Low,2013-05-09,2013-05-08,2013-05-09,3,0,1058,0,0,0\r\n7546,xavier segura,xavier,segura,2013-02-16,Male,1994-11-06,21,Less than 25,Caucasian,1,10,0,3,2,0,2013-02-16 04:51:02,2013-03-15 07:24:41,13003363MM10A,2013-02-16,,0,M,Battery,1,15014200CF10A,(F3),,2015-11-01,Possession of Cocaine,,,,0,,,,,Risk of Recidivism,10,High,2013-02-16,Risk of Violence,8,High,2013-02-16,2014-06-06,2014-09-28,2,27,475,0,0,0\r\n7547,lisa quiggins,lisa,quiggins,2013-05-25,Female,1967-10-12,48,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-05-24 08:33:21,2013-05-26 07:23:38,13007430CF10A,2013-05-24,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-25,Risk of Violence,1,Low,2013-05-25,2014-01-16,2014-03-07,0,1,236,0,0,0\r\n7548,jeanpierre germain,jeanpierre,germain,2013-05-03,Male,1978-11-14,37,25 - 45,African-American,0,1,0,0,0,-1,2013-05-02 02:37:37,2013-05-15 05:49:31,13006337CF10A,2013-05-02,,1,F,Poss Similitude of Drivers Lic,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-03,Risk of Violence,1,Low,2013-05-03,2013-05-02,2013-05-15,0,12,1064,0,0,0\r\n7553,mickelia mckenzie,mickelia,mckenzie,2014-02-27,Female,1995-12-04,20,Less than 25,Other,0,5,0,0,0,-1,2014-02-26 02:24:25,2014-02-27 08:10:28,14003381MM10A,2014-02-26,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-27,Risk of Violence,7,Medium,2014-02-27,2014-02-26,2014-02-27,0,0,764,0,0,0\r\n7555,randa natour,randa,natour,2013-08-20,Female,1952-02-16,64,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-19 07:58:52,2013-08-20 07:56:24,13015750MM10A,2013-08-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-19,2013-08-20,0,0,955,0,0,0\r\n7556,tayler reed,tayler,reed,2013-02-11,Male,1993-08-05,22,Less than 25,Caucasian,0,6,0,0,0,0,2013-02-11 12:43:16,2013-02-12 04:33:35,13006142TC10A,2013-02-10,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-11,Risk of Violence,5,Medium,2013-02-11,2013-02-11,2013-02-12,0,1,1145,0,0,0\r\n7559,jose matos,jose,matos,2013-01-13,Male,1972-05-26,43,25 - 45,Caucasian,0,3,0,0,8,-1,2013-01-12 12:14:44,2013-01-14 02:47:11,12001565CF10A,,2013-01-12,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-14,8,1,1174,0,0,0\r\n7561,bryan holloway,bryan,holloway,2013-05-07,Male,1983-02-03,33,25 - 45,Caucasian,0,9,0,0,10,0,2013-05-07 11:22:11,2013-09-02 05:34:54,13006519CF10A,2013-05-07,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-07,Risk of Violence,8,High,2013-05-07,2013-05-07,2013-09-02,10,118,1060,0,0,0\r\n7562,demetrius sweeting,demetrius,sweeting,2013-08-22,Male,1989-04-29,26,25 - 45,African-American,0,6,0,0,1,-1,2013-08-21 04:14:04,2013-08-22 07:41:00,13011736CF10A,2013-08-21,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-22,Risk of Violence,6,Medium,2013-08-22,2013-08-21,2013-08-22,1,0,953,0,0,0\r\n7563,rachel bollman,rachel,bollman,2013-01-22,Female,1982-08-24,33,25 - 45,Caucasian,0,3,0,0,1,-5,2013-01-17 10:44:28,2013-01-18 04:27:34,09006158MM10A,2009-01-25,,1458,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-22,Risk of Violence,2,Low,2013-01-22,2013-01-17,2013-01-18,1,0,1165,0,0,0\r\n7564,matthew john,matthew,john,2014-02-28,Male,1991-01-06,25,25 - 45,Caucasian,0,3,0,0,3,-58,2014-01-01 12:00:58,2014-02-28 11:19:56,14000058CF10A,2014-01-01,,58,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-28,Risk of Violence,3,Low,2014-02-28,2014-01-01,2014-02-28,3,0,763,0,0,0\r\n7567,shannon lewis,shannon,lewis,2013-07-09,Female,1985-12-19,30,25 - 45,African-American,0,6,0,0,3,-51,2013-05-19 08:24:09,2013-05-19 07:30:19,12056716TC10A,2012-11-15,,236,M,Present Proof of Invalid Insur,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-09,Risk of Violence,5,Medium,2013-07-09,2013-05-19,2013-05-19,3,0,997,0,0,0\r\n7568,demetri jackson,demetri,jackson,2013-08-15,Female,1995-04-27,20,Less than 25,African-American,0,5,3,0,3,,,,11067733TC20A,2011-10-06,,679,M,Operating W/O Valid License,1,16009692TC30A,(M2),,2016-02-04,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-15,Risk of Violence,7,Medium,2013-08-15,,,3,0,903,1,0,0\r\n7570,sico charles,sico,charles,2013-03-21,Male,1971-04-23,44,25 - 45,African-American,0,1,0,0,0,-1,2013-03-20 01:14:13,2013-03-22 04:13:35,13004019CF10A,2013-03-20,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,1,Low,2013-03-21,2013-03-20,2013-03-22,0,1,1107,0,0,0\r\n7571,adrian bowling,adrian,bowling,2014-02-02,Male,1985-04-03,31,25 - 45,African-American,0,2,0,0,0,0,2014-02-02 05:21:54,2014-02-03 01:20:35,14001467CF10A,2014-02-02,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-02,Risk of Violence,2,Low,2014-02-02,2015-04-20,2015-05-20,0,1,442,0,0,0\r\n7574,geralyn francis,geralyn,francis,2013-02-13,Female,1966-01-06,50,Greater than 45,Caucasian,0,1,0,0,1,,,,11013978MM10A,2011-06-18,,606,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,,,1,0,1143,0,0,0\r\n7577,maritza valle,maritza,valle,2013-04-29,Female,1991-03-01,25,25 - 45,Hispanic,0,3,0,0,0,-3,2013-04-26 05:54:05,2013-04-26 08:05:35,13008078MM10A,2013-04-26,,3,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-29,Risk of Violence,3,Low,2013-04-29,2013-04-26,2013-04-26,0,0,1068,0,0,0\r\n7578,esther pierre,esther,pierre,2014-01-08,Female,1972-05-23,43,25 - 45,African-American,0,2,0,0,2,-17,2013-12-22 11:44:51,2014-01-08 10:45:35,13023584MM10A,2013-12-22,,17,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,1,Low,2014-01-08,2013-12-22,2014-01-08,2,0,814,0,0,0\r\n7585,derrick rowe,derrick,rowe,2013-12-27,Male,1981-08-02,34,25 - 45,Other,0,1,0,0,2,-1,2013-12-26 03:49:10,2013-12-27 09:51:55,03042741TC20A,,2003-06-10,3853,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-27,Risk of Violence,1,Low,2013-12-27,2013-12-26,2013-12-27,2,0,826,0,0,0\r\n7586,dennis tummings,dennis,tummings,2013-05-13,Male,1971-09-17,44,25 - 45,Other,0,1,0,0,0,-1,2013-05-12 06:53:23,2013-05-17 12:00:04,13006794CF10A,2013-05-12,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-12,2013-05-17,0,4,1054,0,0,0\r\n7588,roberto tomlinson,roberto,tomlinson,2013-06-10,Male,1985-05-10,30,25 - 45,Hispanic,0,4,1,0,14,-79,2013-03-23 04:15:49,2013-05-17 07:53:08,13004200CF10A,2013-03-23,,79,F,Battery on Law Enforc Officer,1,14012505CF10A,(M1),0,2014-09-15,Trespass Other Struct/Conve,2014-09-15,2014-12-06,,1,15010553CF10A,(F3),2015-08-15,Aggravated Assault W/Dead Weap,Risk of Recidivism,4,Low,2013-06-10,Risk of Violence,6,Medium,2013-06-10,2014-09-15,2014-12-06,14,0,462,1,1,1\r\n7595,julia acosta,julia,acosta,2014-01-21,Female,1960-06-06,55,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-01-20 03:07:14,2014-01-21 01:35:53,14000992MM10A,2014-01-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-21,Risk of Violence,1,Low,2014-01-21,2014-01-20,2014-01-21,0,0,801,0,0,0\r\n7596,joseph janes,joseph,janes,2014-02-07,Male,1986-10-14,29,25 - 45,African-American,3,2,0,0,6,-26,2014-01-12 05:40:58,2014-02-07 10:54:39,14000540CF10A,,2014-01-29,9,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-07,Risk of Violence,2,Low,2014-02-07,2014-01-12,2014-02-07,6,0,784,0,0,0\r\n7597,marvin davis,marvin,davis,2013-08-15,Male,1984-12-24,31,25 - 45,Other,0,1,0,0,0,-1,2013-08-14 04:57:47,2013-08-15 07:27:09,13015402MM10A,2013-08-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-15,Risk of Violence,1,Low,2013-08-15,2013-08-14,2013-08-15,0,0,960,0,0,0\r\n7603,gerard fowler,gerard,fowler,2013-03-12,Male,1964-04-02,52,Greater than 45,Other,0,1,0,0,0,-1,2013-03-11 12:45:52,2013-03-12 03:29:13,13003570CF10A,2013-03-11,,1,F,Structuring Transactions,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-03-11,2013-03-12,0,0,1116,0,0,0\r\n7604,william warrington,william,warrington,2013-03-25,Male,1956-07-11,59,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-24 01:58:50,2013-03-25 08:08:20,13005743MM10A,2013-03-23,,2,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2014-06-17,2014-07-03,0,0,449,0,0,0\r\n7605,adam mccarthy,adam,mccarthy,2013-04-24,Male,1966-10-07,49,Greater than 45,African-American,0,1,0,0,1,0,2013-04-24 03:51:08,2013-04-24 08:20:44,13007982MM10A,2013-04-24,,0,M,Battery,1,14009089MM10A,(M1),0,2014-06-08,Battery,2014-06-08,2014-06-11,,1,14009089MM10A,(M1),2014-06-08,Battery,Risk of Recidivism,1,Low,2013-04-24,Risk of Violence,1,Low,2013-04-24,2014-06-08,2014-06-11,1,0,410,1,1,1\r\n7606,jerry warrens,jerry,warrens,2013-05-06,Male,1979-07-27,36,25 - 45,Caucasian,0,6,0,0,11,-1,2013-05-05 06:23:11,2013-05-07 10:47:02,13008699MM10A,2013-05-05,,1,M,Battery,1,13013844MM10A,(M1),0,2013-06-16,Resist/Obstruct W/O Violence,2013-06-16,2013-07-25,,1,13008492CF10A,(M1),2013-06-16,Battery,Risk of Recidivism,6,Medium,2013-05-06,Risk of Violence,4,Low,2013-05-06,2013-06-16,2013-07-25,11,1,41,1,1,1\r\n7607,marsofia jean,marsofia,jean,2013-11-07,Female,1993-04-08,23,Less than 25,African-American,0,3,0,0,1,-1,2013-11-06 03:13:30,2013-11-07 02:07:09,13015490CF10A,2013-11-06,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-07,Risk of Violence,4,Low,2013-11-07,2013-11-06,2013-11-07,1,0,876,0,0,0\r\n7613,alfonso quesada,alfonso,quesada,2013-10-21,Male,1964-05-09,51,Greater than 45,Hispanic,0,1,0,0,1,-12,2013-10-09 10:39:23,2013-10-16 05:04:21,13013687CF10A,,2013-10-09,12,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-21,Risk of Violence,1,Low,2013-10-21,2013-10-09,2013-10-16,1,0,893,0,0,0\r\n7615,fred holmes,fred,holmes,2013-03-31,Male,1981-07-25,34,25 - 45,African-American,0,1,0,0,0,0,2013-03-31 12:16:34,2013-03-31 05:04:52,13004600CF10A,2013-03-30,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-31,Risk of Violence,2,Low,2013-03-31,2013-03-31,2013-03-31,0,0,1097,0,0,0\r\n7618,akhter hossain,akhter,hossain,2013-11-18,Male,1983-09-15,32,25 - 45,Other,0,1,0,0,0,-1,2013-11-17 05:08:44,2013-11-18 02:11:05,13015972CF10A,2013-11-17,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-18,Risk of Violence,1,Low,2013-11-18,2013-11-17,2013-11-18,0,0,865,0,0,0\r\n7620,thurman jones,thurman,jones,2013-09-19,Male,1961-11-09,54,Greater than 45,African-American,0,3,0,0,1,-1,2013-09-18 10:24:01,2013-09-19 08:42:52,13010299CF10A,,2013-09-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-19,Risk of Violence,1,Low,2013-09-19,2015-07-08,2015-07-08,1,0,657,0,0,0\r\n7634,troy paul,troy,paul,2013-03-13,Male,1979-08-08,36,25 - 45,African-American,0,1,0,0,0,0,2013-03-13 02:27:45,2013-03-13 07:08:18,13003679CF10A,2013-03-12,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-13,Risk of Violence,1,Low,2013-03-13,2013-03-13,2013-03-13,0,0,1115,0,0,0\r\n7635,kenneth young,kenneth,young,2013-06-04,Male,1954-10-31,61,Greater than 45,Caucasian,0,1,0,0,0,-4,2013-05-31 09:09:37,2013-06-01 08:30:27,13010462MM10A,2013-05-31,,4,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-04,Risk of Violence,1,Low,2013-06-04,2013-08-09,2013-09-16,0,0,66,0,0,0\r\n7636,susan roberts,susan,roberts,2013-01-06,Female,1977-09-04,38,25 - 45,African-American,0,2,0,0,0,-1,2013-01-05 06:24:13,2013-01-06 08:58:18,13000242MM10A,2013-01-05,,1,M,Fail To Obey Police Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-06,Risk of Violence,1,Low,2013-01-06,2013-01-05,2013-01-06,0,0,1181,0,0,0\r\n7637,roberto martinez,roberto,martinez,2013-05-06,Male,1974-09-12,41,25 - 45,Hispanic,0,2,0,0,9,-1,2013-05-05 04:10:51,2013-05-14 11:36:09,10014854CF10A,,2013-05-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2014-01-13,2014-01-23,9,8,252,0,0,0\r\n7639,matthew holmes,matthew,holmes,2013-08-13,Male,1983-10-02,32,25 - 45,African-American,0,3,0,0,0,0,2013-08-13 04:44:44,2013-08-14 08:27:05,13011381CF10A,2013-08-13,,0,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-13,Risk of Violence,2,Low,2013-08-13,2013-08-13,2013-08-14,0,1,962,0,0,0\r\n7642,lamont dixon,lamont,dixon,2013-05-01,Male,1969-06-08,46,Greater than 45,African-American,0,7,0,0,18,-114,2013-01-07 04:19:44,2013-03-13 05:49:43,13006217CF10A,2013-04-30,,1,F,Felony Petit Theft,1,15016236CF10A,(F3),,2015-12-19,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-01,Risk of Violence,3,Low,2013-05-01,2013-01-07,2013-03-13,18,0,962,1,0,0\r\n7644,taquan wallace,taquan,wallace,2013-08-27,Male,1994-10-02,21,Less than 25,African-American,0,8,0,0,4,-1,2013-08-26 06:18:02,2013-10-26 01:31:27,13012051CF10A,2013-08-26,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-27,Risk of Violence,6,Medium,2013-08-27,2015-05-19,2015-05-21,4,60,630,0,0,0\r\n7647,ronald knight,ronald,knight,2013-12-20,Male,1947-05-31,68,Greater than 45,African-American,0,4,0,0,2,0,2013-12-20 03:05:36,2013-12-20 08:39:18,13017571CF10A,2013-12-19,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-20,Risk of Violence,2,Low,2013-12-20,2013-12-20,2013-12-20,2,0,833,0,0,0\r\n7648,kamiyla lane,kamiyla,lane,2014-03-17,Male,1992-02-16,24,Less than 25,African-American,0,3,0,0,0,-1,2014-03-16 10:38:41,2014-03-18 05:32:41,14004560MM10A,2014-03-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-17,Risk of Violence,4,Low,2014-03-17,2014-03-16,2014-03-18,0,1,746,0,0,0\r\n7650,tomas smith,tomas,smith,2014-07-14,Male,1975-04-06,41,25 - 45,Caucasian,0,4,0,0,1,-1,2014-07-13 05:33:05,2014-09-09 05:24:12,14009576CF10A,2014-07-13,,1,F,Felony Battery (Dom Strang),1,14012656CF10A,(M2),1,2014-09-17,Reckless Driving,2014-09-18,2014-09-18,,1,14012656CF10A,(F3),2014-09-17,Agg Fleeing and Eluding,Risk of Recidivism,4,Low,2014-07-14,Risk of Violence,2,Low,2014-07-14,2014-07-13,2014-09-09,1,57,65,1,1,1\r\n7651,dechand ramsook,dechand,ramsook,2013-01-23,Male,1985-08-15,30,25 - 45,Other,0,2,0,0,0,-1,2013-01-22 06:24:52,2013-02-01 09:53:21,13001035CF10A,,2013-01-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-23,Risk of Violence,2,Low,2013-01-23,2013-01-22,2013-02-01,0,9,1164,0,0,0\r\n7654,anthony lisinicchia,anthony,lisinicchia,2014-02-23,Male,1974-10-22,41,25 - 45,African-American,0,4,0,0,1,-1,2014-02-22 11:14:46,2014-02-25 07:09:00,14002537CF10A,2014-02-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-23,Risk of Violence,3,Low,2014-02-23,2014-02-22,2014-02-25,1,2,768,0,0,0\r\n7655,dave jackson,dave,jackson,2014-01-11,Male,1960-11-24,55,Greater than 45,Other,0,1,0,0,4,-1,2014-01-10 04:54:10,2014-01-15 12:17:38,14000439CF10A,2014-01-10,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-11,Risk of Violence,1,Low,2014-01-11,2014-01-10,2014-01-15,4,4,811,0,0,0\r\n7656,luis vigniero,luis,vigniero,2013-01-29,Male,1990-03-20,26,25 - 45,Hispanic,0,2,0,0,1,,,,12017413CF10A,2012-11-29,,61,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-29,Risk of Violence,3,Low,2013-01-29,,,1,0,1158,0,0,0\r\n7657,ramon delacruz,ramon,delacruz,2013-09-04,Male,1976-06-18,39,25 - 45,Hispanic,0,2,0,0,2,-83,2013-06-13 10:20:55,2013-06-14 06:31:46,13008390CF10A,2013-06-13,,83,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-06-13,2013-06-14,2,0,940,0,0,0\r\n7659,eric alders,eric,alders,2013-03-07,Male,1983-03-24,33,25 - 45,Caucasian,0,4,0,0,1,-4,2013-03-03 01:55:16,2013-03-06 07:18:53,13001461CF10A,,2013-03-03,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-07,Risk of Violence,3,Low,2013-03-07,2013-03-03,2013-03-06,1,0,1121,0,0,0\r\n7660,cavoan ramson,cavoan,ramson,2014-02-06,Male,1992-10-09,23,Less than 25,African-American,0,2,0,0,0,-1,2014-02-05 09:02:47,2014-02-06 10:06:16,14001628CF10A,2014-02-05,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-06,Risk of Violence,4,Low,2014-02-06,2014-02-05,2014-02-06,0,0,785,0,0,0\r\n7663,carol debriae,carol,debriae,2013-02-01,Female,1964-08-02,51,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-01-30 08:18:59,2013-01-31 08:50:16,13001486CF10A,2013-01-30,,2,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-01,Risk of Violence,1,Low,2013-02-01,2013-01-30,2013-01-31,0,0,1155,0,0,0\r\n7667,andrew abbott,andrew,abbott,2014-01-05,Male,1979-12-11,36,25 - 45,Caucasian,0,2,0,0,1,-1,2014-01-04 09:29:21,2014-01-05 02:30:46,14000184MM10A,2014-01-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-05,Risk of Violence,3,Low,2014-01-05,2014-01-04,2014-01-05,1,0,817,0,0,0\r\n7668,john meneses,john,meneses,2013-05-04,Male,1959-02-21,57,Greater than 45,Hispanic,0,1,0,0,0,0,2013-05-04 02:39:10,2013-08-21 09:19:11,13006413CF10A,2013-05-03,,1,M,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2014-09-22,2014-10-28,0,109,506,0,0,0\r\n7669,tony gotiear,tony,gotiear,2013-12-06,Male,1972-06-02,43,25 - 45,African-American,0,1,0,0,0,0,2013-12-06 04:49:34,2013-12-06 08:32:43,13022631MM10A,2013-12-06,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-06,Risk of Violence,1,Low,2013-12-06,2013-12-06,2013-12-06,0,0,847,0,0,0\r\n7672,linden anderson,linden,anderson,2014-02-17,Male,1969-03-01,47,Greater than 45,Other,0,1,0,0,0,-1,2014-02-16 06:32:47,2014-02-17 01:03:05,14002685MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-17,Risk of Violence,1,Low,2014-02-17,2014-02-16,2014-02-17,0,0,774,0,0,0\r\n7673,deroslyn doreus,deroslyn,doreus,2013-12-22,Male,1956-01-02,60,Greater than 45,African-American,0,1,0,0,1,-1,2013-12-21 09:55:31,2013-12-22 01:18:00,13006126CF10A,,2013-12-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-22,Risk of Violence,1,Low,2013-12-22,2013-12-21,2013-12-22,1,0,831,0,0,0\r\n7674,darien justice,darien,justice,2013-02-10,Male,1991-05-05,24,Less than 25,African-American,0,5,0,0,0,-1,2013-02-09 08:28:39,2013-02-10 07:52:20,13002910MM10A,2013-02-09,,1,M,Possess Cannabis/20 Grams Or Less,1,14006024MM10A,(M1),,2014-02-13,Battery,,,,1,14006024MM10A,(M1),2014-02-13,Battery,Risk of Recidivism,5,Medium,2013-02-10,Risk of Violence,5,Medium,2013-02-10,2016-01-04,2016-01-13,0,0,368,1,1,1\r\n7677,jenny gomezdibenedetto,jenny,gomezdibenedetto,2013-09-06,Female,1987-09-22,28,25 - 45,Caucasian,0,3,0,0,0,-6,2013-08-31 09:26:46,2013-09-01 05:23:23,13012330CF10A,2013-08-31,,6,M,Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-08-31,2013-09-01,0,0,938,0,0,0\r\n7680,frank congemi,frank,congemi,2014-01-21,Male,1949-03-09,67,Greater than 45,Caucasian,0,1,0,0,2,-80,2013-11-02 06:57:49,2013-12-18 10:31:00,13015278CF10A,2013-11-02,,80,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-21,Risk of Violence,1,Low,2014-01-21,2013-11-02,2013-12-18,2,0,801,0,0,0\r\n7681,alberto solorio,alberto,solorio,2013-07-02,Male,1961-11-25,54,Greater than 45,Other,0,1,0,0,1,-2,2013-06-30 05:09:32,2013-07-02 10:44:07,13009208CF10A,2013-06-30,,2,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-02,Risk of Violence,1,Low,2013-07-02,2013-08-05,2013-08-08,1,0,34,0,0,0\r\n7682,shaquella pines,shaquella,pines,2014-01-07,Female,1990-04-14,26,25 - 45,African-American,0,8,0,0,1,-140,2013-08-20 08:58:27,2013-08-24 02:22:35,13011762CF10A,2013-08-20,,140,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-01-07,Risk of Violence,9,High,2014-01-07,2013-08-20,2013-08-24,1,0,815,0,0,0\r\n7685,laurence stevens,laurence,stevens,2014-01-25,Female,1981-11-04,34,25 - 45,Other,0,1,0,0,0,0,2014-01-25 09:11:58,2014-01-26 02:13:57,14001414MM10A,2014-01-25,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-25,Risk of Violence,1,Low,2014-01-25,2014-01-25,2014-01-26,0,1,797,0,0,0\r\n7686,jack pierre-louis,jack,pierre-louis,2013-09-11,Male,1968-01-10,48,Greater than 45,Other,0,1,0,0,1,-21,2013-08-21 04:29:00,2013-09-11 11:37:03,13011749CF10A,2013-08-21,,21,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-11,Risk of Violence,1,Low,2013-09-11,2013-08-21,2013-09-11,1,0,933,0,0,0\r\n7688,carlton johnson,carlton,johnson,2013-04-21,Male,1978-04-22,37,25 - 45,African-American,0,8,0,0,0,-1,2013-04-20 07:10:10,2013-04-21 07:06:20,13005667CF10A,2013-04-20,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-21,Risk of Violence,7,Medium,2013-04-21,2013-04-20,2013-04-21,0,0,1076,0,0,0\r\n7689,antoine ilus,antoine,ilus,2013-01-17,Male,1987-08-23,28,25 - 45,African-American,0,8,0,0,8,-1,2013-01-16 09:27:53,2013-01-19 09:22:26,13000762CF10A,2013-01-16,,1,F,Deliver Cocaine,1,13112303TC30A,(M2),,2013-10-31,Susp Drivers Lic 1st Offense,,,,1,15000128MM10A,(M1),2015-01-04,Battery,Risk of Recidivism,8,High,2013-01-17,Risk of Violence,7,Medium,2013-01-17,2013-01-16,2013-01-19,8,2,287,1,1,1\r\n7692,bryon allmond,bryon,allmond,2013-02-07,Male,1970-12-21,45,Greater than 45,Caucasian,0,4,0,0,2,0,2013-02-07 02:17:57,2013-02-10 01:49:12,13004985MM10A,2013-02-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-07,Risk of Violence,3,Low,2013-02-07,2013-02-07,2013-02-10,2,3,1149,0,0,0\r\n7693,gerard restaino,gerard,restaino,2014-09-17,Male,1995-08-24,20,Less than 25,African-American,0,7,0,1,2,-1,2014-09-16 03:26:15,2014-09-26 09:55:44,14012639CF10A,2014-09-17,,0,F,Principal In The First Degree,1,14015556CF10A,(F3),0,2014-11-18,Grand Theft in the 3rd Degree,2014-11-18,2015-06-30,,1,15010401MM10A,(M1),2015-10-04,Battery,Risk of Recidivism,7,Medium,2014-09-17,Risk of Violence,9,High,2014-09-17,2014-10-06,2014-11-08,2,9,19,0,1,1\r\n7694,byron everett,byron,everett,2013-02-24,Male,1964-01-21,52,Greater than 45,African-American,0,1,0,0,0,0,2013-02-24 03:25:29,2013-02-25 01:51:43,13003835MM10A,2013-02-24,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-24,Risk of Violence,1,Low,2013-02-24,2013-02-24,2013-02-25,0,1,1132,0,0,0\r\n7697,owen parchment,owen,parchment,2013-12-26,Male,1987-04-07,29,25 - 45,African-American,0,2,0,0,0,-1,2013-12-25 09:52:58,2013-12-26 01:17:54,13023756MM10A,2013-12-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-26,Risk of Violence,2,Low,2013-12-26,2013-12-25,2013-12-26,0,0,827,0,0,0\r\n7698,dericky mcgirt,dericky,mcgirt,2013-04-22,Male,1981-09-07,34,25 - 45,African-American,0,8,0,4,11,0,2013-04-22 11:11:43,2013-04-23 07:29:12,13005742CF10A,2013-04-22,,0,F,Aggravated Assault w/Firearm,1,13016450MM10A,(M1),0,2013-08-07,Resist/Obstruct W/O Violence,2013-08-07,2013-08-08,,1,14011918CF10A,(F2),2014-08-28,Aggravated Battery / Pregnant,Risk of Recidivism,8,High,2013-04-22,Risk of Violence,8,High,2013-04-22,2013-08-07,2013-08-08,11,1,107,1,1,1\r\n7700,david shuman,david,shuman,2013-05-25,Male,1988-04-01,28,25 - 45,African-American,0,10,0,0,6,0,2013-05-25 04:58:09,2013-08-14 04:16:37,13007480CF10A,2013-05-25,,0,F,Grand Theft (Motor Vehicle),1,13012135CF10A,(F2),4,2013-08-24,Robbery / No Weapon,2013-08-28,2014-06-12,,1,13012135CF10A,(F2),2013-08-24,Robbery / No Weapon,Risk of Recidivism,10,High,2013-05-25,Risk of Violence,10,High,2013-05-25,2013-05-25,2013-08-14,6,81,91,1,1,1\r\n7704,johnny philus,johnny,philus,2013-10-01,Male,1986-11-20,29,25 - 45,African-American,0,7,0,0,0,0,2013-10-01 01:08:10,2013-10-01 08:58:30,13013726CF10A,2013-09-30,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-01,Risk of Violence,7,Medium,2013-10-01,2013-10-01,2013-10-01,0,0,913,0,0,0\r\n7705,patricia cerra,patricia,cerra,2013-09-12,Female,1961-03-07,55,Greater than 45,Caucasian,0,1,0,0,2,-12,2013-08-31 09:30:54,2013-09-03 08:31:38,13012310CF10A,2013-08-31,,12,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2014-01-31,2014-02-19,2,0,141,0,0,0\r\n7706,flaviano leon,flaviano,leon,2013-09-16,Male,1948-01-28,68,Greater than 45,Hispanic,0,1,0,0,0,-3,2013-09-13 11:36:13,2013-09-14 07:08:11,13017496MM10A,2013-09-13,,3,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2013-09-13,2013-09-14,0,0,928,0,0,0\r\n7711,devon beckford,devon,beckford,2014-02-04,Male,1995-05-30,20,Less than 25,African-American,0,3,0,0,0,-1,2014-02-03 11:53:10,2014-02-04 07:53:18,14001521CF10A,2014-02-03,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-04,Risk of Violence,6,Medium,2014-02-04,2014-02-03,2014-02-04,0,0,787,0,0,0\r\n7712,abraham walker,abraham,walker,2014-01-17,Male,1992-09-30,23,Less than 25,African-American,0,5,0,0,0,0,2014-01-17 12:26:03,2014-02-18 12:46:42,14000850MM10A,2014-01-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-17,Risk of Violence,5,Medium,2014-01-17,2014-01-17,2014-02-18,0,32,805,0,0,0\r\n7720,stephen gornall,stephen,gornall,2013-02-23,Male,1960-10-08,55,Greater than 45,African-American,0,1,0,0,0,-1,2013-02-22 10:17:18,2013-02-23 09:04:28,13003745MM10A,2013-02-22,,1,M,Battery,1,14000433MM40A,(M2),,2014-01-17,Petit Theft,,,,1,14010455CF10A,(F3),2014-07-31,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-05-22,2013-05-23,0,0,88,0,1,1\r\n7723,ebrain penaloza,ebrain,penaloza,2013-10-27,Male,1992-01-18,24,Less than 25,Hispanic,0,2,0,0,0,-1,2013-10-26 05:22:40,2013-11-01 09:17:55,13014984CF10A,2013-10-26,,1,F,Burglary Conveyance Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-27,Risk of Violence,3,Low,2013-10-27,2013-10-26,2013-11-01,0,5,887,0,0,0\r\n7725,artis cameron,artis,cameron,2013-10-02,Male,1938-04-24,77,Greater than 45,African-American,0,1,0,0,0,0,2013-10-02 02:55:47,2013-10-02 01:23:59,13018779MM10A,2013-10-01,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,2013-10-02,2013-10-02,0,0,912,0,0,0\r\n7726,jeffrey flowers,jeffrey,flowers,2013-01-29,Male,1963-08-09,52,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-01-28 09:52:03,2013-01-29 08:32:48,13002012MM10A,2013-01-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-28,2013-01-29,3,0,1158,0,0,0\r\n7729,hamlet rodriguez-cabreja,hamlet,rodriguez-cabreja,2013-04-07,Male,1976-12-07,39,25 - 45,Hispanic,0,1,0,0,0,0,2013-04-07 02:47:23,2013-04-07 06:33:09,13005024CF10A,,2013-04-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-07,Risk of Violence,1,Low,2013-04-07,2013-04-07,2013-04-07,0,0,1090,0,0,0\r\n7735,emily diana,emily,diana,2013-06-17,Female,1965-02-09,51,Greater than 45,Caucasian,0,2,0,0,1,-30,2013-05-18 09:53:45,2013-05-19 12:59:16,13009599MM10A,2013-05-18,,30,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-17,Risk of Violence,1,Low,2013-06-17,2013-05-18,2013-05-19,1,0,1019,0,0,0\r\n7736,anthony roberts,anthony,roberts,2014-01-23,Male,1982-01-07,34,25 - 45,African-American,0,3,0,0,2,-12,2014-01-11 04:48:44,2014-01-23 10:12:03,14000544CF10A,,2014-01-11,12,F,arrest case no charge,1,16001092MM40A,(M1),,2016-02-18,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-23,Risk of Violence,2,Low,2014-01-23,2014-01-11,2014-01-23,2,0,756,1,0,0\r\n7737,juan gonzolaz,juan,gonzolaz,2014-01-14,Male,1992-06-16,23,Less than 25,Caucasian,0,2,0,0,0,-1,2014-01-13 09:16:26,2014-01-18 09:53:52,14000578CF10A,2014-01-13,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-14,Risk of Violence,4,Low,2014-01-14,2014-01-13,2014-01-18,0,4,808,0,0,0\r\n7738,miguel morales,miguel,morales,2013-12-17,Male,1983-05-13,32,25 - 45,Caucasian,0,2,0,0,2,-1,2013-12-16 07:09:57,2013-12-17 03:07:16,13017362CF10A,2013-12-16,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-17,Risk of Violence,1,Low,2013-12-17,2013-12-16,2013-12-17,2,0,836,0,0,0\r\n7740,evans mesadieu,evans,mesadieu,2013-10-29,Male,1977-09-16,38,25 - 45,African-American,1,6,5,0,8,0,2013-10-29 12:09:43,2013-11-14 09:04:39,13020385MM10A,2013-10-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-29,Risk of Violence,4,Low,2013-10-29,2013-10-29,2013-11-14,8,16,885,0,0,0\r\n7745,luis fernandezcueto,luis,fernandezcueto,2013-08-09,Male,1981-07-18,34,25 - 45,Caucasian,0,7,0,0,1,-1,2013-08-08 04:09:24,2013-09-28 07:19:04,13011117CF10A,2013-08-08,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-09,Risk of Violence,3,Low,2013-08-09,2013-08-08,2013-09-28,1,50,966,0,0,0\r\n7747,daniel perez,daniel,perez,2013-01-31,Male,1988-03-24,28,25 - 45,Hispanic,0,7,0,0,1,44,2013-03-16 09:20:21,2013-04-19 01:24:38,12005599MM10A,2012-03-18,,319,M,Violation License Restrictions,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-31,Risk of Violence,3,Low,2013-01-31,2013-03-16,2013-04-19,1,0,44,0,0,0\r\n7753,stephen hannon,stephen,hannon,2013-05-26,Male,1961-10-09,54,Greater than 45,African-American,0,1,0,0,1,-1,2013-05-25 10:06:39,2013-05-26 08:34:01,13026961TC10A,,2013-05-25,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2013-05-25,2013-05-26,1,0,1041,0,0,0\r\n7754,richard shields,richard,shields,2014-09-19,Male,1991-02-20,25,25 - 45,Caucasian,0,4,0,0,2,0,2014-09-19 06:29:55,2014-09-19 08:58:12,14034102MU10A,2014-09-19,,0,M,Driving Under The Influence,1,15004823CF10A,(F2),0,2015-04-12,Aggrav Battery w/Deadly Weapon,2015-04-12,2015-04-12,,1,15004823CF10A,(F2),2015-04-12,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,4,Low,2014-09-19,Risk of Violence,6,Medium,2014-09-19,2015-04-12,2015-04-12,2,0,205,0,1,1\r\n7757,christopher gonzalez,christopher,gonzalez,2013-09-09,Male,1982-01-13,34,25 - 45,Hispanic,0,1,0,0,1,-1,2013-09-08 08:11:29,2013-09-09 01:29:50,13017105MM10A,2013-09-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2013-09-08,2013-09-09,1,0,935,0,0,0\r\n7763,brian allen,brian,allen,2014-01-29,Male,1971-03-01,45,Greater than 45,African-American,0,1,0,0,7,-1,2014-01-28 06:11:38,2014-01-29 08:29:49,14001254CF10A,2014-01-28,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-29,Risk of Violence,1,Low,2014-01-29,2015-03-20,2015-03-27,7,0,415,0,0,0\r\n7768,christopher tippett,christopher,tippett,2013-06-03,Male,1971-03-21,45,Greater than 45,Caucasian,0,1,0,0,1,-11,2013-05-23 12:26:34,2013-05-23 08:57:55,13009881MM10A,2013-05-22,,12,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-03,Risk of Violence,2,Low,2013-06-03,2013-05-23,2013-05-23,1,0,1033,0,0,0\r\n7770,ahmad james,ahmad,james,2014-03-12,Male,1987-07-20,28,25 - 45,African-American,1,5,0,0,12,-1,2014-03-11 05:02:18,2014-03-13 01:22:59,14003437CF10A,2014-03-11,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-12,Risk of Violence,5,Medium,2014-03-12,2014-03-11,2014-03-13,12,1,751,0,0,0\r\n7775,arisno absolu,arisno,absolu,2013-05-06,Male,1974-07-08,41,25 - 45,African-American,0,1,0,0,2,0,2013-05-06 01:02:59,2013-05-06 07:57:43,13006489CF10A,2013-05-05,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-05-06,2013-05-06,2,0,1061,0,0,0\r\n7786,ronnie wilson,ronnie,wilson,2013-02-19,Male,1987-09-01,28,25 - 45,African-American,0,5,0,0,2,-1,2013-02-18 05:10:54,2013-03-21 10:02:15,13002463CF10A,2013-02-18,,1,F,Possession of Benzylpiperazine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-19,Risk of Violence,7,Medium,2013-02-19,2015-05-27,2020-01-01,2,30,827,0,0,0\r\n7792,ariana rigaud,ariana,rigaud,2013-02-08,Female,1990-12-01,25,25 - 45,African-American,0,5,0,0,4,-1,2013-02-07 02:50:10,2013-02-08 07:36:45,13001922CF10A,2013-02-07,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-08,Risk of Violence,4,Low,2013-02-08,2013-02-07,2013-02-08,4,0,1148,0,0,0\r\n7794,breeann mcallister,breeann,mcallister,2014-02-13,Female,1992-08-19,23,Less than 25,Caucasian,0,2,0,2,1,-1,2014-02-12 05:55:24,2014-02-12 09:58:48,14005666MU10A,2014-02-12,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-13,Risk of Violence,3,Low,2014-02-13,2014-02-12,2014-02-12,1,0,778,0,0,0\r\n7796,joshua daniels,joshua,daniels,2014-03-21,Male,1985-09-10,30,25 - 45,African-American,0,8,0,0,2,-1,2014-03-20 05:32:13,2014-03-21 03:29:29,14003966CF10A,2014-03-20,,1,F,Crim Use of Personal ID Info,1,14007738CF10A,(F3),0,2014-06-04,Driving While License Revoked,2014-06-04,2014-06-05,,1,15008569MM10A,(M1),2015-06-15,Battery,Risk of Recidivism,8,High,2014-03-21,Risk of Violence,4,Low,2014-03-21,2014-06-04,2014-06-05,2,0,75,1,1,1\r\n7800,rosetta walker,rosetta,walker,2014-01-02,Female,1960-02-18,56,Greater than 45,African-American,0,2,0,0,2,-47,2013-11-16 11:50:19,2013-11-18 04:03:10,13015953CF10A,2013-11-16,,47,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-02,Risk of Violence,1,Low,2014-01-02,2013-11-16,2013-11-18,2,0,820,0,0,0\r\n7806,vladimir fedotov,vladimir,fedotov,2013-04-25,Male,1980-09-29,35,25 - 45,Caucasian,0,3,0,0,3,-1,2013-04-24 01:51:08,2013-04-25 08:08:25,13008274MM10A,2013-04-24,,1,M,Viol Injunct Domestic Violence,1,15014872CF10A,(F3),1,2015-11-15,Burglary Structure Unoccup,2015-11-16,2015-11-17,,0,,,,,Risk of Recidivism,3,Low,2013-04-25,Risk of Violence,2,Low,2013-04-25,2016-01-26,2016-01-26,3,0,934,1,0,0\r\n7807,bret stratton,bret,stratton,2013-01-07,Male,1981-12-02,34,25 - 45,Caucasian,0,8,0,0,13,-1,2013-01-06 12:31:49,2013-01-25 08:59:14,13000246CF10A,2013-01-06,,1,F,Grand Theft in the 3rd Degree,1,13003640CF10A,(F3),0,2013-03-13,Felony Petit Theft,2013-03-13,2013-07-20,,1,13014344CF10A,(F3),2013-10-06,Battery on Law Enforc Officer,Risk of Recidivism,8,High,2013-01-07,Risk of Violence,3,Low,2013-01-07,2013-03-13,2013-07-20,13,18,65,1,1,1\r\n7811,jose benites,jose,benites,2013-09-27,Male,1972-09-08,43,25 - 45,Caucasian,0,1,0,0,1,-1,2013-09-26 07:30:58,2013-09-27 07:56:36,13018339MM10A,2013-09-26,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-27,Risk of Violence,1,Low,2013-09-27,2013-09-26,2013-09-27,1,0,917,0,0,0\r\n7812,marshall higgs,marshall,higgs,2013-02-27,Male,1988-11-26,27,25 - 45,African-American,0,10,5,1,27,0,2013-02-27 05:59:45,2013-02-27 07:50:16,13004095MM10A,2013-02-27,,0,M,Possess Cannabis/20 Grams Or Less,1,14008267MM10A,(M1),0,2014-05-05,Possess Cannabis/20 Grams Or Less,2014-05-05,2014-06-17,,1,14006274CF10A,(F2),2014-05-05,Aggravated Battery / Pregnant,Risk of Recidivism,10,High,2013-02-27,Risk of Violence,9,High,2013-02-27,2013-05-17,2013-11-24,27,0,79,0,1,1\r\n7813,james jackson,james,jackson,2013-03-21,Male,1990-03-25,26,25 - 45,African-American,0,6,0,0,7,-1,2013-03-20 03:58:00,2013-03-21 07:18:31,13004012CF10A,2013-03-20,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-21,Risk of Violence,6,Medium,2013-03-21,2014-08-19,2015-05-13,7,0,516,0,0,0\r\n7817,jelissa garcia,jelissa,garcia,2013-09-05,Male,1989-04-03,27,25 - 45,Hispanic,0,2,0,0,0,-1,2013-09-04 11:06:07,2013-09-05 07:54:41,13016930MM10A,2013-09-04,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-05,Risk of Violence,3,Low,2013-09-05,2013-09-04,2013-09-05,0,0,939,0,0,0\r\n7818,jay fisher,jay,fisher,2013-11-29,Male,1975-02-08,41,25 - 45,Caucasian,0,5,0,0,1,0,2013-11-29 02:47:41,2014-01-30 11:45:51,07011575CF10A,,2013-11-29,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-29,Risk of Violence,7,Medium,2013-11-29,2013-11-29,2014-01-30,1,62,854,0,0,0\r\n7820,corneilus sampson,corneilus,sampson,2014-09-05,Male,1985-05-18,30,25 - 45,African-American,0,2,0,0,4,-1,2014-09-04 07:57:39,2014-09-05 09:06:40,14013261MM10A,2014-09-04,,1,M,Battery,1,16001713CF10A,(F3),0,2016-02-09,Aggravated Assault W/Dead Weap,2016-02-09,2016-02-10,,1,16001713CF10A,(F3),2016-02-09,Aggravated Assault W/Dead Weap,Risk of Recidivism,2,Low,2014-09-05,Risk of Violence,2,Low,2014-09-05,2016-02-09,2016-02-10,4,0,522,1,1,1\r\n7821,jonathan lauf,jonathan,lauf,2013-01-12,Male,1985-11-07,30,25 - 45,Caucasian,0,8,0,0,1,-1,2013-01-11 02:26:13,2013-01-12 04:40:26,13000541CF10A,2013-01-11,,1,F,Possession Of Fentanyl,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-12,Risk of Violence,3,Low,2013-01-12,2014-12-09,2014-12-11,1,0,696,0,0,0\r\n7834,travon bentley,travon,bentley,2013-11-19,Male,1982-11-11,33,25 - 45,African-American,0,2,0,0,1,-17,2013-11-02 05:15:33,2013-11-03 01:25:20,13015279CF10A,2013-11-02,,17,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-19,Risk of Violence,1,Low,2013-11-19,2015-05-04,2015-05-11,1,0,531,0,0,0\r\n7835,daniel spencer,daniel,spencer,2013-10-22,Male,1975-10-26,40,25 - 45,African-American,0,3,0,0,11,-1,2013-10-21 04:00:29,2013-10-21 08:15:51,13019922MM10A,2013-10-21,,1,M,Driving License Suspended,1,14015923TC10A,(M2),,2014-04-09,Susp Drivers Lic 1st Offense,,,,1,15009330MM10A,(M1),2015-08-10,Battery,Risk of Recidivism,3,Low,2013-10-22,Risk of Violence,2,Low,2013-10-22,2013-10-21,2013-10-21,11,0,169,1,1,1\r\n7837,jeffry morgan,jeffry,morgan,2014-02-26,Male,1959-09-28,56,Greater than 45,Caucasian,0,2,0,0,1,0,2014-02-26 02:55:56,2014-03-13 08:51:59,14002703CF10A,2014-02-26,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-26,Risk of Violence,1,Low,2014-02-26,2014-02-26,2014-03-13,1,15,765,0,0,0\r\n7840,indiana smith,indiana,smith,2013-04-10,Male,1994-02-16,22,Less than 25,Caucasian,0,2,0,0,1,-36,2013-03-05 11:23:03,2013-03-06 07:15:04,13003288CF10A,2013-03-05,,36,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,5,Medium,2013-04-10,2014-12-31,2015-01-09,1,0,630,0,0,0\r\n7842,tommy robinson,tommy,robinson,2013-02-13,Male,1965-03-01,51,Greater than 45,African-American,0,1,0,0,4,-28,2013-01-16 08:10:42,2013-01-18 04:32:26,13000786CF10A,2013-01-16,,28,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,2,Low,2013-02-13,2013-01-16,2013-01-18,4,0,1143,0,0,0\r\n7843,edgar ceron,edgar,ceron,2013-09-04,Male,1979-08-06,36,25 - 45,Caucasian,0,1,0,0,0,0,2013-09-04 06:00:32,2013-09-05 05:33:52,13016957MM10A,2013-09-04,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-09-04,2013-09-05,0,1,940,0,0,0\r\n7846,joel dominguez,joel,dominguez,2013-02-10,Male,1991-04-02,25,25 - 45,Hispanic,0,6,0,0,3,-1,2013-02-09 11:26:36,2013-02-10 07:48:25,13002032CF10A,2013-02-09,,1,F,Possession of Cocaine,1,14006224CF10A,(F3),,2014-05-04,Possession of Cocaine,,,,1,15009919CF10A,(M1),2015-08-01,Discharge Firearm in Public/Res,Risk of Recidivism,6,Medium,2013-02-10,Risk of Violence,4,Low,2013-02-10,2016-02-01,2016-04-19,3,0,448,1,1,1\r\n7847,jack jackson,jack,jackson,2014-02-06,Male,1985-11-05,30,25 - 45,Caucasian,0,1,0,0,0,0,2014-02-06 04:06:20,2014-02-06 08:57:25,14004841MU10A,2014-02-06,,0,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-06,Risk of Violence,2,Low,2014-02-06,2014-02-06,2014-02-06,0,0,785,0,0,0\r\n7848,caitlin carter,caitlin,carter,2013-05-25,Female,1994-10-13,21,Less than 25,Caucasian,0,5,0,0,0,-1,2013-05-24 12:37:03,2013-05-25 08:02:40,13007442CF10A,2013-05-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-25,Risk of Violence,6,Medium,2013-05-25,2013-10-17,2013-12-21,0,0,145,0,0,0\r\n7851,valentin del-carmen,valentin,del-carmen,2013-01-13,Male,1978-03-10,38,25 - 45,Hispanic,0,2,0,0,0,0,2013-01-13 03:01:20,2013-01-14 08:35:03,13000580CF10A,2013-01-13,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-13,Risk of Violence,2,Low,2013-01-13,2013-01-13,2013-01-14,0,1,1174,0,0,0\r\n7859,edward greenfield,edward,greenfield,2014-08-29,Male,1986-05-30,29,25 - 45,Other,0,6,0,0,8,-1,2014-08-28 09:55:48,2014-08-29 08:18:56,14011759CF10A,2014-08-28,,1,F,Felony Petit Theft,1,15021769TC20A,(M2),,2015-03-27,Driving License Suspended,,,,1,15006304CF10A,(F2),2015-05-14,Robbery / No Weapon,Risk of Recidivism,6,Medium,2014-08-29,Risk of Violence,6,Medium,2014-08-29,2014-10-20,2014-10-21,8,0,52,0,1,1\r\n7864,kimberly ginnie,kimberly,ginnie,2013-02-15,Female,1975-10-05,40,25 - 45,African-American,0,1,0,0,2,-1,2013-02-14 09:23:00,2013-02-15 12:12:17,13002321CF10A,2013-02-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-15,Risk of Violence,1,Low,2013-02-15,2013-02-14,2013-02-15,2,0,1141,0,0,0\r\n7867,anthony kiffin,anthony,kiffin,2013-09-11,Male,1978-09-19,37,25 - 45,African-American,0,3,0,0,2,-13,2013-08-29 05:03:55,2013-09-05 12:21:23,13012230CF10A,2013-08-29,,13,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-11,Risk of Violence,2,Low,2013-09-11,2013-08-29,2013-09-05,2,0,933,0,0,0\r\n7868,taneka dean,taneka,dean,2013-05-20,Female,1978-09-08,37,25 - 45,African-American,0,3,0,0,0,-3,2013-05-17 09:06:49,2013-05-18 08:14:43,13007071CF10A,2013-05-17,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-20,Risk of Violence,2,Low,2013-05-20,2013-05-17,2013-05-18,0,0,1047,0,0,0\r\n7869,jasmine trump,jasmine,trump,2013-09-05,Female,1993-01-04,23,Less than 25,African-American,0,5,0,0,2,-2,2013-09-03 04:05:37,2013-09-04 08:26:49,13010159CF10A,,2013-09-03,2,F,arrest case no charge,1,14007234MM10A,(M1),0,2014-05-01,Battery,2014-05-01,2014-05-31,,1,14007234MM10A,(M1),2014-05-01,Battery,Risk of Recidivism,5,Medium,2013-09-05,Risk of Violence,5,Medium,2013-09-05,2014-05-01,2014-05-31,2,0,238,1,1,1\r\n7870,raymond nelson,raymond,nelson,2013-03-21,Male,1960-06-16,55,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-03-20 04:29:14,2013-03-21 02:12:17,13004028CF10A,2013-03-20,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,1,Low,2013-03-21,2013-03-20,2013-03-21,0,0,1107,0,0,0\r\n7871,james zebo,james,zebo,2014-11-02,Male,1996-05-05,19,Less than 25,African-American,0,4,0,0,1,-1,2014-11-01 11:47:12,2014-11-05 10:52:42,14014683CF10A,2014-11-01,,1,F,Dealing in Stolen Property,1,15003695MM10A,(M1),0,2015-03-30,Battery,2015-03-30,2015-04-08,,1,15003695MM10A,(M1),2015-03-30,Battery,Risk of Recidivism,4,Low,2014-11-02,Risk of Violence,7,Medium,2014-11-02,2015-03-30,2015-04-08,1,3,148,1,1,1\r\n7881,rashad bogans,rashad,bogans,2013-04-26,Male,1990-10-13,25,25 - 45,African-American,0,3,0,0,0,-1,2013-04-25 06:46:34,2013-04-26 07:16:35,13007997MM10A,2013-04-25,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-26,Risk of Violence,5,Medium,2013-04-26,2013-07-23,2013-07-26,0,0,88,0,0,0\r\n7882,karen bryden,karen,bryden,2013-07-29,Male,1967-05-31,48,Greater than 45,Caucasian,0,2,0,0,3,621,2015-04-11 01:28:32,2015-04-17 10:05:30,13010433CF10A,2013-07-25,,4,F,Possession Of Heroin,1,16002503MM10A,(M1),0,2016-03-15,Trespass Other Struct/Convey,2016-03-15,2016-03-16,,0,,,,,Risk of Recidivism,2,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2015-04-11,2015-04-17,3,0,621,0,0,0\r\n7890,eric barker,eric,barker,2013-05-26,Male,1989-06-21,26,25 - 45,African-American,0,8,0,0,6,0,2013-05-26 03:26:17,2013-06-05 10:17:58,13021590TC10A,2013-05-26,,0,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-26,Risk of Violence,6,Medium,2013-05-26,2014-01-14,2014-01-23,6,10,233,0,0,0\r\n7894,gregory calix,gregory,calix,2013-11-19,Male,1995-10-09,20,Less than 25,African-American,0,8,0,0,0,-1,2013-11-18 07:33:48,2013-12-18 09:34:42,13016012CF10A,2013-11-18,,1,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-19,Risk of Violence,8,High,2013-11-19,2013-11-18,2013-12-18,0,29,864,0,0,0\r\n7895,melissa slason,melissa,slason,2013-02-11,Female,1972-08-27,43,25 - 45,Caucasian,0,1,0,0,0,-1,2013-02-10 02:39:21,2013-02-11 04:05:45,13002962MM10A,2013-02-10,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-10,2013-02-11,0,0,1145,0,0,0\r\n7898,clifford hyman,clifford,hyman,2013-08-17,Male,1980-08-12,35,25 - 45,African-American,0,3,0,0,2,-1,2013-08-16 05:44:10,2013-08-17 07:39:31,13011506CF10A,2013-08-16,,1,F,Trespassing/Construction Site,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-17,Risk of Violence,2,Low,2013-08-17,2013-08-16,2013-08-17,2,0,958,0,0,0\r\n7901,roberto teruggi,roberto,teruggi,2013-08-27,Male,1990-07-13,25,25 - 45,Caucasian,0,7,0,0,6,39,2013-10-05 11:29:40,2013-11-29 01:08:45,13012730MM10A,2013-07-03,,55,M,Battery,1,14001206MM40A,(M1),,2014-02-28,Possess Cannabis/20 Grams Or Less,,,,1,14003676CF10A,(F3),2014-03-15,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-08-27,Risk of Violence,5,Medium,2013-08-27,2013-10-05,2013-11-29,6,0,39,0,1,1\r\n7902,thomas carter,thomas,carter,2013-05-26,Male,1961-01-17,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-25 05:28:09,2013-05-26 08:34:54,13010065MM10A,2013-05-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2013-05-25,2013-05-26,0,0,1041,0,0,0\r\n7903,mary oneal,mary,oneal,2013-03-21,Female,1964-02-08,52,Greater than 45,African-American,0,1,0,0,0,0,2013-03-21 12:52:08,2013-03-21 06:13:19,13005478MM10A,2013-03-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,1,Low,2013-03-21,2013-03-21,2013-03-21,0,0,1107,0,0,0\r\n7904,zezelda wright,zezelda,wright,2013-09-06,Female,1982-05-25,33,25 - 45,African-American,0,9,0,0,0,-1,2013-09-05 03:46:16,2013-09-12 08:10:49,13016988MM10A,2013-09-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-06,Risk of Violence,6,Medium,2013-09-06,2013-09-05,2013-09-12,0,6,938,0,0,0\r\n7905,teron sterling,teron,sterling,2013-01-25,Male,1985-10-02,30,25 - 45,Other,0,1,0,0,0,-1,2013-01-24 01:38:57,2013-01-25 07:33:52,13001153CF10A,,2013-01-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-25,Risk of Violence,2,Low,2013-01-25,2013-01-24,2013-01-25,0,0,1162,0,0,0\r\n7909,joseph gray,joseph,gray,2014-03-02,Male,1949-04-19,67,Greater than 45,African-American,0,4,0,0,8,-1,2014-03-01 09:29:59,2014-03-03 02:05:54,14002922CF10A,2014-03-01,,1,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-02,Risk of Violence,2,Low,2014-03-02,2014-03-01,2014-03-03,8,1,761,0,0,0\r\n7910,addlin etienne,addlin,etienne,2013-10-27,Male,1984-09-26,31,25 - 45,African-American,0,4,0,0,7,-1,2013-10-26 05:44:07,2013-10-27 08:13:55,13020316MM10A,2013-10-26,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-27,Risk of Violence,2,Low,2013-10-27,2013-10-26,2013-10-27,7,0,887,0,0,0\r\n7913,mark montgomery,mark,montgomery,2013-03-24,Male,1985-11-03,30,25 - 45,African-American,0,8,0,0,4,-1,2013-03-23 01:32:34,2013-03-28 09:37:27,13005696MM10A,2013-03-23,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-24,Risk of Violence,4,Low,2013-03-24,2013-03-23,2013-03-28,4,4,1104,0,0,0\r\n7914,john davis,john,davis,2013-03-11,Male,1960-06-25,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-10 12:30:14,2013-03-11 02:00:14,13004813MM10A,2013-03-09,,2,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-06-03,2013-06-19,0,0,84,0,0,0\r\n7915,kyle scott,kyle,scott,2013-03-01,Male,1991-03-23,25,25 - 45,African-American,0,2,0,0,0,0,2013-03-01 03:57:35,2013-03-02 05:35:14,13003139CF10A,2013-03-01,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-01,Risk of Violence,3,Low,2013-03-01,2013-03-01,2013-03-02,0,1,1127,0,0,0\r\n7916,ronel lamour,ronel,lamour,2013-02-12,Male,1990-10-07,25,25 - 45,African-American,0,7,0,0,0,0,2013-02-12 01:53:34,2013-02-12 09:28:20,13002112CF10A,2013-02-11,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-12,Risk of Violence,5,Medium,2013-02-12,2013-04-10,2013-04-11,0,0,57,0,0,0\r\n7917,gurden cunningham,gurden,cunningham,2013-06-26,Male,1969-03-18,47,Greater than 45,African-American,0,8,0,0,17,-55,2013-05-02 01:02:39,2013-05-02 07:40:25,13006244CF10A,2013-05-01,,56,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-06-26,Risk of Violence,2,Low,2013-06-26,2015-08-18,2015-08-19,17,0,783,0,0,0\r\n7920,dominique williams,dominique,williams,2013-10-30,Male,1993-08-05,22,Less than 25,African-American,0,4,0,0,0,0,2013-10-30 02:46:16,2013-10-30 09:15:53,13015136CF10A,2013-10-29,,1,F,Possess w/I/Utter Forged Bills,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-30,Risk of Violence,5,Medium,2013-10-30,2013-10-30,2013-10-30,0,0,884,0,0,0\r\n7922,thony ferdinand,thony,ferdinand,2013-03-02,Male,1978-05-21,37,25 - 45,African-American,0,6,0,0,8,0,2013-03-02 01:21:18,2013-03-03 04:34:08,13003147CF10A,,2013-03-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-02,Risk of Violence,4,Low,2013-03-02,2013-09-12,2013-11-13,8,1,194,0,0,0\r\n7923,john dudas,john,dudas,2013-02-06,Male,1948-03-23,68,Greater than 45,Caucasian,0,7,0,0,7,-1,2013-02-05 05:11:31,2013-02-10 10:00:25,13001782CF10A,2013-02-04,,2,F,Aggravated Assault W/dead Weap,1,14007384MM10A,(M1),0,2014-05-04,Battery,2014-05-04,2014-05-20,,1,14007384MM10A,(M1),2014-05-04,Battery,Risk of Recidivism,7,Medium,2013-02-06,Risk of Violence,6,Medium,2013-02-06,2014-05-04,2014-05-20,7,4,452,1,1,1\r\n7928,garry letsky,garry,letsky,2013-09-08,Male,1979-03-17,37,25 - 45,Caucasian,0,6,0,0,0,0,2013-09-08 04:52:48,2013-09-09 02:05:47,13012686CF10A,2013-09-07,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-08,Risk of Violence,3,Low,2013-09-08,2013-09-08,2013-09-09,0,1,936,0,0,0\r\n7929,nioka myrie,nioka,myrie,2013-11-20,Female,1974-04-08,42,25 - 45,African-American,0,1,0,0,1,-49,2013-10-02 03:57:20,2013-10-24 02:05:41,13013830CF10A,2013-10-02,,49,F,Grand Theft on 65 Yr or Older,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-20,Risk of Violence,1,Low,2013-11-20,2013-10-02,2013-10-24,1,0,863,0,0,0\r\n7931,vantonio wilson,vantonio,wilson,2014-03-09,Male,1985-09-13,30,25 - 45,African-American,0,2,0,0,4,-1,2014-03-08 06:53:55,2014-03-09 09:49:38,14004041MM10A,2014-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-09,Risk of Violence,2,Low,2014-03-09,2014-03-08,2014-03-09,4,0,754,0,0,0\r\n7932,clinton marshall,clinton,marshall,2013-06-17,Male,1982-03-04,34,25 - 45,African-American,0,2,0,0,1,-3,2013-06-14 07:49:13,2013-06-16 12:55:15,13008453CF10A,2013-06-14,,3,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-17,Risk of Violence,2,Low,2013-06-17,2015-01-10,2015-01-14,1,0,572,0,0,0\r\n7935,woodson tarin,woodson,tarin,2013-04-15,Male,1988-03-13,28,25 - 45,Other,0,1,0,0,0,-1,2013-04-14 08:51:52,2013-04-16 11:03:36,13007202MM10A,2013-04-14,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-15,Risk of Violence,2,Low,2013-04-15,2013-04-14,2013-04-16,0,1,1082,0,0,0\r\n7936,brian marcantel,brian,marcantel,2014-07-08,Male,1978-08-17,37,25 - 45,Caucasian,0,5,0,0,4,-18,2014-06-20 08:59:53,2014-06-21 07:10:18,14009688MM10A,2014-06-20,,18,M,Possess Cannabis/20 Grams Or Less,1,16000237CF10A,(F3),0,2016-01-06,Depriv LEO of Protect/Communic,2016-01-06,2016-03-28,,1,16000237CF10A,(F3),2016-01-06,Aggravated Assault W/Dead Weap,Risk of Recidivism,5,Medium,2014-07-08,Risk of Violence,5,Medium,2014-07-08,2016-01-06,2016-03-28,4,0,547,1,1,1\r\n7943,carlos verne,carlos,verne,2014-03-07,Male,1963-05-22,52,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-03-06 11:57:06,2014-03-07 08:44:57,14003925MM10A,2014-03-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-07,Risk of Violence,1,Low,2014-03-07,2014-03-06,2014-03-07,0,0,756,0,0,0\r\n7944,michael ryan,michael,ryan,2013-04-09,Male,1979-06-25,36,25 - 45,Caucasian,0,1,0,0,2,-17,2013-03-23 03:00:12,2013-03-24 02:12:19,13005702MM10A,2013-03-23,,17,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-09,Risk of Violence,1,Low,2013-04-09,2013-03-23,2013-03-24,2,0,1088,0,0,0\r\n7945,ryan butler,ryan,butler,2013-04-01,Male,1989-05-24,26,25 - 45,Caucasian,0,2,0,0,2,-3,2013-03-29 01:48:34,2013-03-30 08:12:01,13004552CF10A,2013-03-29,,3,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-01,Risk of Violence,3,Low,2013-04-01,2013-03-29,2013-03-30,2,0,1096,0,0,0\r\n7946,joseph cataldo,joseph,cataldo,2013-01-23,Male,1991-10-08,24,Less than 25,Caucasian,0,2,0,0,0,0,2013-01-23 03:55:12,2013-02-07 08:39:52,13001092CF10A,2013-01-23,,0,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-23,Risk of Violence,3,Low,2013-01-23,2013-01-23,2013-02-07,0,15,1164,0,0,0\r\n7948,terrell hall,terrell,hall,2014-02-12,Male,1989-01-06,27,25 - 45,African-American,0,6,0,0,0,-1,2014-02-11 03:38:18,2014-02-13 04:01:59,14001955CF10A,2014-02-11,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-12,Risk of Violence,7,Medium,2014-02-12,2014-02-11,2014-02-13,0,1,779,0,0,0\r\n7949,radica singh,radica,singh,2013-12-27,Female,1979-03-28,37,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-27 03:37:41,2013-12-28 01:23:50,13023886MM10A,2013-12-27,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-27,Risk of Violence,1,Low,2013-12-27,2013-12-27,2013-12-28,0,1,826,0,0,0\r\n7952,keon james,keon,james,2013-01-04,Male,1984-11-10,31,25 - 45,African-American,0,6,0,0,1,650,2014-10-16 12:27:52,2014-10-23 02:44:46,12016300CF10A,,2012-12-13,22,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-04,Risk of Violence,6,Medium,2013-01-04,2014-10-16,2014-10-23,1,0,650,0,0,0\r\n7953,ricardo calderon,ricardo,calderon,2013-06-19,Male,1979-01-23,37,25 - 45,Hispanic,0,3,0,0,1,-1,2013-06-18 03:54:18,2013-06-18 05:45:50,13008601CF10A,2013-06-18,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-19,Risk of Violence,2,Low,2013-06-19,2013-06-18,2013-06-18,1,0,1017,0,0,0\r\n7958,thomas blauman,thomas,blauman,2013-04-21,Male,1957-08-11,58,Greater than 45,Caucasian,0,2,0,0,5,-1,2013-04-20 12:49:59,2013-04-23 07:33:14,13007654MM10A,2013-04-20,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-21,Risk of Violence,1,Low,2013-04-21,2013-11-28,2013-12-12,5,2,221,0,0,0\r\n7962,bernadette fleury,bernadette,fleury,2014-01-02,Female,1974-04-28,41,25 - 45,African-American,0,1,0,0,0,0,2014-01-02 12:18:04,2014-01-03 02:25:43,14000088CF10A,2014-01-01,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-02,Risk of Violence,1,Low,2014-01-02,2014-01-02,2014-01-03,0,1,820,0,0,0\r\n7963,alan burga,alan,burga,2013-03-12,Male,1983-01-17,33,25 - 45,Hispanic,0,1,0,0,0,-1,2013-03-11 04:18:14,2013-03-12 01:14:05,13004888MM10A,2013-03-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-03-11,2013-03-12,0,0,1116,0,0,0\r\n7964,wanglee george,wanglee,george,2014-03-03,Male,1983-01-08,33,25 - 45,African-American,0,1,0,0,0,0,2014-03-03 03:25:46,2014-03-03 08:38:42,14003655MM10A,2014-03-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-03,2014-03-03,0,0,760,0,0,0\r\n7969,david sanchez,david,sanchez,2013-05-10,Male,1993-11-16,22,Less than 25,Hispanic,0,3,0,0,0,-1,2013-05-09 01:18:03,2013-05-09 07:50:08,13006609CF10A,2013-05-09,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-10,Risk of Violence,5,Medium,2013-05-10,2013-05-09,2013-05-09,0,0,1057,0,0,0\r\n7972,erica johnson,erica,johnson,2013-09-30,Female,1982-06-23,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-09-29 09:25:30,2013-09-30 09:59:37,13013661CF10A,2013-09-29,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-29,2013-09-30,0,0,914,0,0,0\r\n7973,antwan johnson,antwan,johnson,2013-05-29,Male,1990-12-28,25,25 - 45,African-American,0,6,0,0,0,-1,2013-05-28 08:19:30,2013-05-29 02:05:25,13010250MM10A,2013-05-28,,1,M,False Info LEO During Invest,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-29,Risk of Violence,5,Medium,2013-05-29,2013-05-28,2013-05-29,0,0,1038,0,0,0\r\n7974,najeh davenport,najeh,davenport,2013-03-26,Male,1979-02-08,37,25 - 45,African-American,0,1,0,0,0,-1,2013-03-25 07:15:23,2013-03-26 07:49:33,13005852MM10A,2013-03-25,,1,M,Battery,1,13014172CF10A,(M2),0,2013-10-09,Burglary Conveyance Occupied,2013-10-09,2013-10-09,,1,13014172CF10A,(M1),2013-10-09,Battery,Risk of Recidivism,1,Low,2013-03-26,Risk of Violence,1,Low,2013-03-26,2013-10-09,2013-10-09,0,0,197,0,1,1\r\n7977,jason grant,jason,grant,2013-08-18,Male,1994-11-06,21,Less than 25,African-American,0,9,0,0,0,-1,2013-08-17 05:45:53,2013-08-18 06:27:56,13015612MM10A,2013-08-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-18,Risk of Violence,9,High,2013-08-18,2013-08-17,2013-08-18,0,0,957,0,0,0\r\n7981,christopher kirby,christopher,kirby,2014-01-01,Male,1979-03-18,37,25 - 45,Caucasian,1,7,6,0,13,-1,2013-12-31 04:20:51,2014-01-01 09:05:13,14000024CF10A,2013-12-31,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-01,Risk of Violence,3,Low,2014-01-01,2013-12-31,2014-01-01,13,0,821,0,0,0\r\n7983,jamal cook,jamal,cook,2013-05-21,Male,1991-12-09,24,Less than 25,African-American,0,4,0,0,2,-1,2013-05-20 02:27:24,2013-05-24 02:22:59,13009722MM10A,2013-05-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-21,Risk of Violence,7,Medium,2013-05-21,2013-08-09,2013-10-04,2,3,80,0,0,0\r\n7985,saleem bligen,saleem,bligen,2013-12-16,Male,1980-12-25,35,25 - 45,African-American,0,4,0,0,0,-1,2013-12-15 09:42:58,2013-12-17 08:38:26,13017316CF10A,2013-12-15,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-16,Risk of Violence,3,Low,2013-12-16,2013-12-15,2013-12-17,0,1,837,0,0,0\r\n7987,travis fischer,travis,fischer,2013-01-15,Male,1986-10-29,29,25 - 45,Caucasian,4,9,1,0,10,-1,2013-01-14 09:30:03,2013-01-17 03:17:08,13000624CF10A,2013-01-14,,1,F,Burglary Conveyance Unoccup,1,13011287CF10A,(F3),,2013-03-28,Grand Theft Firearm,,,,1,13006458CF10A,(F2),2013-05-03,Agg Battery Grt/Bod/Harm,Risk of Recidivism,9,High,2013-01-15,Risk of Violence,5,Medium,2013-01-15,2013-01-14,2013-01-17,10,2,72,1,1,1\r\n7988,herbert rozier,herbert,rozier,2013-10-19,Male,1974-08-07,41,25 - 45,African-American,2,3,0,0,6,-1,2013-10-18 12:47:10,2013-10-20 02:14:19,13014612CF10A,2013-10-18,,1,F,Felony Battery w/Prior Convict,1,15003811MM10A,(M1),0,2015-04-01,Battery,2015-04-01,2015-04-02,,1,15003811MM10A,(M1),2015-04-01,Battery,Risk of Recidivism,3,Low,2013-10-19,Risk of Violence,2,Low,2013-10-19,2013-12-02,2014-02-11,6,1,44,0,1,1\r\n7989,lorenzo gayle,lorenzo,gayle,2013-03-26,Male,1994-03-04,22,Less than 25,African-American,0,7,0,0,3,-35,2013-02-19 05:21:54,2013-02-20 06:33:18,13002538CF10A,2013-02-19,,35,F,Grand Theft in the 3rd Degree,1,14000843CF10A,(F3),0,2014-01-20,Robbery Sudd Snatch No Weapon,2014-01-20,2014-05-09,,1,14000843CF10A,(F3),2014-01-20,Robbery Sudd Snatch No Weapon,Risk of Recidivism,7,Medium,2013-03-26,Risk of Violence,9,High,2013-03-26,2014-01-20,2014-05-09,3,0,300,1,1,1\r\n7991,zico spencer,zico,spencer,2013-01-17,Male,1982-03-22,34,25 - 45,African-American,2,7,1,0,5,264,2013-10-08 12:25:23,2013-10-17 06:34:31,04012577TC10A,2004-01-26,,3279,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-17,Risk of Violence,2,Low,2013-01-17,2013-10-08,2013-10-17,5,0,264,0,0,0\r\n8002,jonana allen,jonana,allen,2014-01-21,Male,1969-04-24,46,Greater than 45,African-American,0,7,0,0,2,-17,2014-01-04 07:50:22,2014-01-08 03:01:39,08027016MM10A,2008-11-13,,1895,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-21,Risk of Violence,6,Medium,2014-01-21,2014-01-04,2014-01-08,2,0,801,0,0,0\r\n8003,apolinar meza,apolinar,meza,2013-08-06,Male,1974-07-23,41,25 - 45,Caucasian,0,1,0,0,0,-1,2013-08-05 05:06:05,2013-08-09 03:55:02,13010978CF10A,2013-08-05,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-06,Risk of Violence,1,Low,2013-08-06,2013-08-05,2013-08-09,0,3,969,0,0,0\r\n8007,davidson nougues,davidson,nougues,2013-02-28,Male,1990-05-04,25,25 - 45,African-American,0,9,0,0,2,0,2013-02-28 12:20:59,2013-03-01 04:14:50,13003027CF10A,2013-02-27,,1,F,Threat Public Servant,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-28,Risk of Violence,9,High,2013-02-28,2013-06-20,2013-06-21,2,1,112,0,0,0\r\n8008,marquis gause,marquis,gause,2013-08-20,Male,1988-09-13,27,25 - 45,African-American,0,5,0,0,1,-1,2013-08-19 05:36:35,2013-08-21 07:50:24,13035744TC10A,2013-08-19,,1,M,Fail Register Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-20,Risk of Violence,2,Low,2013-08-20,2015-10-02,2020-01-01,1,1,773,0,0,0\r\n8009,ralph bellamy,ralph,bellamy,2014-10-23,Male,1984-08-18,31,25 - 45,African-American,1,9,1,1,13,-1,2014-10-22 08:58:25,2014-10-24 04:21:11,14014243CF10A,2014-10-22,,1,F,Poss Pyrrolidinovalerophenone,1,16000253CF10A,(F2),,2016-01-05,Agg Batt W/Arm S/B/I 25 Min/Ma,,,,1,16000253CF10A,(F2),2016-01-05,Agg Batt W/Arm S/B/I 25 Min/Ma,Risk of Recidivism,9,High,2014-10-23,Risk of Violence,8,High,2014-10-23,2014-10-22,2014-10-24,13,1,439,1,1,1\r\n8010,philip scire,philip,scire,2014-02-24,Male,1992-09-02,23,Less than 25,Caucasian,0,4,0,0,0,-3,2014-02-21 05:05:49,2014-02-21 08:12:19,14006811MU10A,2014-02-21,,3,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-24,Risk of Violence,4,Low,2014-02-24,2014-02-21,2014-02-21,0,0,767,0,0,0\r\n8019,janice palmer,janice,palmer,2013-01-28,Female,1967-04-06,49,Greater than 45,Caucasian,0,2,0,0,0,-3,2013-01-25 09:46:53,2013-01-26 09:09:41,13001247CF10A,2013-01-25,,3,F,Del Cannabis For Consideration,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-28,Risk of Violence,2,Low,2013-01-28,2013-01-25,2013-01-26,0,0,1159,0,0,0\r\n8021,timothy cosman,timothy,cosman,2013-04-12,Male,1967-01-19,49,Greater than 45,Caucasian,0,2,0,0,8,-24,2013-03-19 06:42:18,2013-04-12 07:58:01,13003996CF10A,2013-03-19,,24,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-12,Risk of Violence,1,Low,2013-04-12,2014-05-23,2014-12-16,8,0,406,0,0,0\r\n8023,leevaughn cameron,leevaughn,cameron,2013-03-24,Male,1975-03-28,41,25 - 45,African-American,0,3,0,0,7,-2,2013-03-22 10:17:54,2013-03-24 02:12:36,12001255TC10A,,2013-03-22,2,M,arrest case no charge,1,15010857MM10A,(M1),0,2015-10-16,Criminal Mischief>$200<$1000,2015-10-16,2015-10-17,,0,,,,,Risk of Recidivism,3,Low,2013-03-24,Risk of Violence,2,Low,2013-03-24,2015-10-16,2015-10-17,7,0,936,1,0,0\r\n8028,alexandria piercy,alexandria,piercy,2014-11-26,Female,1996-03-11,20,Less than 25,Caucasian,0,10,0,0,0,0,2014-11-26 01:14:13,2014-11-26 08:37:39,14015897CF10A,,2014-11-25,1,F,arrest case no charge,1,14017920MM10A,(M1),0,2014-12-21,Battery,2014-12-21,2014-12-22,,1,14017920MM10A,(M1),2014-12-21,Battery,Risk of Recidivism,10,High,2014-11-26,Risk of Violence,9,High,2014-11-26,2014-12-21,2014-12-22,0,0,25,1,1,1\r\n8031,darian jordan,darian,jordan,2014-05-09,Male,1971-05-19,44,25 - 45,African-American,0,8,0,0,8,-1,2014-05-08 12:27:25,2014-05-18 04:40:00,14007615MM10A,2014-05-08,,1,M,Battery,1,15015948CF10A,(F2),0,2015-12-13,Aggrav Battery w/Deadly Weapon,2015-12-13,2015-12-15,,1,15015948CF10A,(F2),2015-12-13,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,8,High,2014-05-09,Risk of Violence,5,Medium,2014-05-09,2015-12-13,2015-12-15,8,9,583,1,1,1\r\n8032,gregory williams,gregory,williams,2013-01-29,Male,1974-09-19,41,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-29 03:02:10,2013-01-29 08:32:31,13002085MM10A,2013-01-29,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-29,2013-01-29,0,0,1158,0,0,0\r\n8035,moses taulbert,moses,taulbert,2013-10-15,Male,1984-06-10,31,25 - 45,African-American,0,9,1,0,5,-1,2013-10-14 09:06:13,2013-10-15 07:40:33,13019482MM10A,2013-10-14,,1,M,Battery,1,14007256MM10A,(M1),0,2014-05-01,Battery,2014-05-01,2014-05-03,,1,14007256MM10A,(M1),2014-05-01,Battery,Risk of Recidivism,9,High,2013-10-15,Risk of Violence,3,Low,2013-10-15,2014-05-01,2014-05-03,5,0,198,1,1,1\r\n8036,rodrigo pinedaboteo,rodrigo,pinedaboteo,2014-03-31,Male,1974-04-15,42,25 - 45,Hispanic,0,1,0,0,1,-3,2014-03-28 10:46:35,2014-03-29 09:04:01,14012344MU10A,2014-03-28,,3,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-28,2014-03-29,1,0,732,0,0,0\r\n8038,carrie salter,carrie,salter,2013-01-28,Female,1948-10-16,67,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-27 07:23:13,2013-01-29 05:24:01,13001330CF10A,2013-01-27,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-01-29,0,1,1159,0,0,0\r\n8039,stephen league,stephen,league,2014-01-13,Male,1974-03-02,42,25 - 45,Caucasian,0,2,0,0,1,-3,2014-01-10 12:09:47,2014-01-10 07:57:22,14000503MO10A,2014-01-09,,4,M,Possession Of Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-01-10,2014-01-10,1,0,809,0,0,0\r\n8040,dyontae ferguson,dyontae,ferguson,2013-12-04,Male,1990-05-04,25,25 - 45,African-American,0,3,0,0,0,-1,2013-12-03 01:28:45,2014-01-06 09:00:31,13016990CF10A,,2013-12-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-04,Risk of Violence,4,Low,2013-12-04,2013-12-03,2014-01-06,0,33,849,0,0,0\r\n8042,rayan pinnock,rayan,pinnock,2014-02-26,Male,1972-10-11,43,25 - 45,Other,0,1,0,0,2,-1,2014-02-25 01:35:38,2014-02-26 09:51:09,14003277MM10A,2014-02-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-26,Risk of Violence,1,Low,2014-02-26,2014-02-25,2014-02-26,2,0,765,0,0,0\r\n8045,brandon amato,brandon,amato,2013-01-28,Male,1992-08-05,23,Less than 25,Caucasian,0,9,0,0,6,0,2013-01-28 05:06:16,2013-02-03 02:50:43,13001363CF10A,2013-01-28,,0,F,Possession Of Alprazolam,1,13009162CF10A,(F3),0,2013-06-29,Resist Officer w/Violence,2013-06-29,2014-02-18,,1,13009162CF10A,(F3),2013-06-29,Battery on Law Enforc Officer,Risk of Recidivism,9,High,2013-01-28,Risk of Violence,6,Medium,2013-01-28,2013-06-29,2014-02-18,6,6,152,1,1,1\r\n8047,lawrence williams,lawrence,williams,2013-05-29,Male,1992-07-26,23,Less than 25,African-American,0,2,1,0,2,-1,2013-05-28 11:49:22,2013-05-29 02:04:51,13007599CF10A,2013-05-28,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-29,Risk of Violence,4,Low,2013-05-29,2013-05-28,2013-05-29,2,0,1038,0,0,0\r\n8048,joel torres,joel,torres,2013-08-11,Male,1982-06-03,33,25 - 45,Caucasian,0,3,0,0,2,-1,2013-08-10 06:29:43,2013-08-12 03:36:30,13011237CF10A,2013-08-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-11,Risk of Violence,1,Low,2013-08-11,2013-08-10,2013-08-12,2,1,964,0,0,0\r\n8049,gregory young,gregory,young,2013-05-03,Male,1974-08-12,41,25 - 45,Caucasian,0,1,0,0,0,0,2013-05-03 02:50:28,2013-05-04 02:49:49,13008623MM10A,2013-05-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-03,Risk of Violence,1,Low,2013-05-03,2013-05-03,2013-05-04,0,1,1064,0,0,0\r\n8050,deborah demenezes,deborah,demenezes,2013-05-28,Female,1985-01-02,31,25 - 45,Caucasian,0,2,0,0,1,-2,2013-05-26 09:44:58,2013-05-27 01:13:35,11001942CF10A,,2013-05-26,2,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,1,Low,2013-05-28,2013-05-26,2013-05-27,1,0,1039,0,0,0\r\n8052,rochelle sutton,rochelle,sutton,2013-01-10,Female,1992-12-18,23,Less than 25,African-American,0,8,0,0,2,126,2013-05-16 11:24:35,2013-05-17 08:02:12,13001778TC10A,2013-01-10,,0,M,Susp Drivers Lic 1st Offense,1,13014727TC20A,(M2),77,2013-02-28,Driving License Suspended,2013-05-16,2013-05-17,,1,15006870MM10A,(M1),2015-06-26,Battery,Risk of Recidivism,8,High,2013-01-10,Risk of Violence,6,Medium,2013-01-10,2015-06-26,2015-06-28,2,0,49,1,1,1\r\n8054,joseph barry,joseph,barry,2013-02-02,Male,1962-10-13,53,Greater than 45,African-American,0,4,0,0,5,-1,2013-02-01 11:18:12,2013-11-26 06:43:53,13001629CF10A,2013-02-01,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-02,Risk of Violence,1,Low,2013-02-02,2013-11-26,2014-01-14,5,346,1154,0,0,0\r\n8056,samuel wesley,samuel,wesley,2013-08-19,Male,1979-05-28,36,25 - 45,African-American,0,1,0,0,1,0,2013-08-19 05:01:46,2013-08-19 07:34:52,13015748MM10A,2013-08-19,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-19,2013-08-19,1,0,956,0,0,0\r\n8059,john campbell,john,campbell,2013-04-25,Male,1957-10-03,58,Greater than 45,Caucasian,0,3,0,0,10,0,2013-04-25 02:34:13,2013-04-25 08:03:17,13017986TC10A,2013-04-25,,0,M,Driving License Suspended,1,16003775CF10A,(F2),,2016-03-29,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-25,Risk of Violence,1,Low,2013-04-25,2013-04-25,2013-04-25,10,0,1069,1,0,0\r\n8060,robert schoen,robert,schoen,2013-05-13,Male,1953-12-03,62,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-12 05:43:25,2013-05-15 07:42:03,13006809CF10A,2013-05-12,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-12,2013-05-15,0,2,1054,0,0,0\r\n8061,jordan zachary,jordan,zachary,2013-12-23,Male,1990-05-03,25,25 - 45,Caucasian,0,6,0,0,4,-1,2013-12-22 05:37:28,2013-12-23 06:32:58,13017644CF10A,2013-12-22,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-23,Risk of Violence,3,Low,2013-12-23,2013-12-22,2013-12-23,4,0,830,0,0,0\r\n8063,emilio alfonso,emilio,alfonso,2013-03-27,Male,1969-09-22,46,Greater than 45,Caucasian,0,2,0,0,2,-14,2013-03-13 12:53:32,2013-03-21 02:08:03,10014551CF10B,,2013-03-13,14,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-27,Risk of Violence,1,Low,2013-03-27,2015-11-24,2015-12-10,2,0,972,0,0,0\r\n8068,joshua hirst,joshua,hirst,2014-02-17,Male,1983-08-25,32,25 - 45,Caucasian,0,8,0,0,6,0,2014-02-17 02:20:40,2014-02-17 08:18:14,14002245CF10A,2014-02-16,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-17,Risk of Violence,8,High,2014-02-17,2014-02-17,2014-02-17,6,0,774,0,0,0\r\n8071,jeffery fetters,jeffery,fetters,2013-06-05,Male,1959-07-18,56,Greater than 45,Caucasian,0,4,0,0,13,-59,2013-04-07 07:17:18,2013-05-17 01:46:05,13006649MM10A,2013-04-06,,60,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-05,Risk of Violence,1,Low,2013-06-05,2013-04-07,2013-05-17,13,0,1031,0,0,0\r\n8075,jomar fisher,jomar,fisher,2013-01-03,Male,1990-06-12,25,25 - 45,African-American,0,3,0,0,1,188,2013-07-10 01:42:08,2013-08-16 10:17:00,11005572CF10A,,2012-11-09,55,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-03,Risk of Violence,4,Low,2013-01-03,2013-07-10,2013-08-16,1,0,188,0,0,0\r\n8077,ian kissoonlai,ian,kissoonlai,2013-01-30,Male,1990-03-28,26,25 - 45,African-American,0,3,0,0,2,,,,13001448CF10A,2013-01-29,,1,F,Criminal Attempt 3rd Deg Felon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-30,Risk of Violence,4,Low,2013-01-30,,,2,0,1157,0,0,0\r\n8078,marie hamilton,marie,hamilton,2013-05-21,Female,1957-07-25,58,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-20 12:10:00,2013-05-20 12:19:32,13009638MM10A,2013-05-19,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-21,Risk of Violence,1,Low,2013-05-21,2013-05-20,2013-05-20,0,0,1046,0,0,0\r\n8084,anthony tetoff,anthony,tetoff,2014-01-28,Male,1972-03-13,44,25 - 45,Caucasian,0,2,0,0,5,-47,2013-12-12 10:44:57,2013-12-24 10:48:55,13017187CF10A,,2013-12-12,47,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-28,Risk of Violence,1,Low,2014-01-28,2013-12-12,2013-12-24,5,0,794,0,0,0\r\n8085,donald hutchinson,donald,hutchinson,2013-08-10,Male,1995-06-11,20,Less than 25,African-American,0,7,0,0,0,0,2013-08-10 12:20:57,2013-08-11 02:13:50,13011244CF10A,2013-08-10,,0,F,Aggrav Battery w/Deadly Weapon,1,14002602MM40A,(M1),,2014-06-07,Possess Cannabis/20 Grams Or Less,,,,1,14009572MM10A,(M2),2014-06-18,Assault,Risk of Recidivism,7,Medium,2013-08-10,Risk of Violence,9,High,2013-08-10,2013-08-10,2013-08-11,0,1,301,1,1,1\r\n8093,serina byrd,serina,byrd,2014-02-21,Female,1979-11-03,36,25 - 45,African-American,0,5,0,0,1,0,2014-02-21 05:15:33,2014-02-22 03:34:25,14002483CF10A,2014-02-20,,1,M,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-21,Risk of Violence,1,Low,2014-02-21,2014-02-21,2014-02-22,1,1,770,0,0,0\r\n8094,william bernharddt,william,bernharddt,2013-04-29,Male,1956-12-03,59,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-29 01:03:48,2013-04-29 06:46:09,13008154MM10A,2013-04-28,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-29,2013-04-29,0,0,1068,0,0,0\r\n8097,james mitchell,james,mitchell,2014-05-31,Male,1986-12-16,29,25 - 45,African-American,0,5,0,0,5,-1,2014-05-30 07:12:58,2014-06-02 12:45:34,14007528CF10A,,2014-05-30,1,F,arrest case no charge,1,15010001MM10A,(M1),,2015-08-29,Battery,,,,1,15010001MM10A,(M1),2015-08-29,Battery,Risk of Recidivism,5,Medium,2014-05-31,Risk of Violence,4,Low,2014-05-31,2014-05-30,2014-06-02,5,2,455,1,1,1\r\n8098,christal pinkney,christal,pinkney,2014-03-17,Female,1994-11-11,21,Less than 25,African-American,0,5,0,0,0,-1,2014-03-16 09:49:27,2014-03-17 09:22:07,14004534MM10A,2014-03-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-17,Risk of Violence,6,Medium,2014-03-17,2014-03-16,2014-03-17,0,0,746,0,0,0\r\n8099,sebastian cohn,sebastian,cohn,2013-12-10,Male,1987-08-28,28,25 - 45,Caucasian,0,1,0,0,0,-1,2013-12-09 07:48:15,2013-12-11 04:09:56,13022791MM10A,2013-12-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-10,Risk of Violence,2,Low,2013-12-10,2013-12-09,2013-12-11,0,1,843,0,0,0\r\n8104,theresa miller,theresa,miller,2013-04-08,Female,1973-10-06,42,25 - 45,African-American,0,6,0,0,16,-1,2013-04-07 10:05:20,2013-05-01 10:15:05,13004970CF10A,2013-04-07,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-08,Risk of Violence,2,Low,2013-04-08,2015-01-10,2015-01-30,16,23,642,0,0,0\r\n8105,ernest calvert,ernest,calvert,2013-03-08,Male,1994-08-26,21,Less than 25,African-American,0,9,2,1,3,-3,2013-03-05 08:54:54,2013-03-06 11:00:34,13003385CF10A,2013-03-07,,1,F,Leaving the Scene of Accident,1,13019033MM10A,(M1),,2013-07-20,Battery,,,,1,13019033MM10A,(M1),2013-07-20,Battery,Risk of Recidivism,9,High,2013-03-08,Risk of Violence,6,Medium,2013-03-08,2015-04-22,2015-05-21,3,0,134,1,1,1\r\n8107,danielle cyr,danielle,cyr,2013-08-13,Female,1966-05-22,49,Greater than 45,Caucasian,0,1,0,0,1,-26,2013-07-18 01:48:52,2013-07-18 12:10:03,13013578MM10A,2013-07-17,,27,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-13,Risk of Violence,1,Low,2013-08-13,2013-07-18,2013-07-18,1,0,962,0,0,0\r\n8110,caitlin watts,caitlin,watts,2013-05-21,Female,1991-07-30,24,Less than 25,Caucasian,0,5,0,0,0,0,2013-05-21 12:50:11,2013-05-22 05:30:40,13009743MM10A,2013-05-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-21,Risk of Violence,5,Medium,2013-05-21,2013-05-21,2013-05-22,0,1,1046,0,0,0\r\n8112,regina ewing,regina,ewing,2013-01-19,Female,1960-12-05,55,Greater than 45,African-American,0,1,0,0,1,-1,2013-01-18 05:15:26,2013-01-20 08:28:44,13000864CF10A,2013-01-18,,1,M,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-19,Risk of Violence,1,Low,2013-01-19,2013-01-18,2013-01-20,1,1,1168,0,0,0\r\n8113,scott burleigh,scott,burleigh,2013-11-25,Male,1996-09-22,19,Less than 25,African-American,1,10,2,0,3,-200,2013-05-09 05:30:32,2013-11-25 01:22:29,13006619CF10A,,2013-05-09,200,F,arrest case no charge,1,15000485CF10A,(M2),0,2015-01-11,Susp Drivers Lic 1st Offense,2015-01-11,2015-01-12,,1,15000485CF10A,(F2),2015-01-11,Agg Assault Law Enforc Officer,Risk of Recidivism,10,High,2013-11-25,Risk of Violence,9,High,2013-11-25,2015-01-11,2015-01-12,3,0,412,1,1,1\r\n8115,moise jean jacques,moise,jean jacques,2013-09-23,Male,1976-11-02,39,25 - 45,Other,0,1,0,0,1,,,,13038110TC20A,2013-06-15,,100,M,Expired DL More Than 6 Months,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,,,1,0,921,0,0,0\r\n8116,wessley cruzmolina,wessley,cruzmolina,2013-09-09,Male,1994-07-29,21,Less than 25,Caucasian,0,4,0,0,1,-1,2013-09-08 08:48:03,2013-09-09 02:06:14,13012702CF10A,,2013-09-08,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-09,Risk of Violence,6,Medium,2013-09-09,2013-09-08,2013-09-09,1,0,935,0,0,0\r\n8118,william kilgore,william,kilgore,2013-01-25,Male,1981-07-31,34,25 - 45,African-American,0,6,0,0,4,0,2013-01-25 01:41:29,2013-01-25 01:58:16,13001828MM10A,2013-01-24,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-25,Risk of Violence,6,Medium,2013-01-25,2013-01-25,2013-01-25,4,0,1162,0,0,0\r\n8119,keenan watson,keenan,watson,2013-01-16,Male,1988-12-20,27,25 - 45,African-American,0,5,0,0,2,-1,2013-01-15 09:51:37,2013-01-17 09:15:00,12011314CF10A,,2013-01-16,0,F,arrest case no charge,1,14001076CF10A,(F3),0,2014-01-24,Possession Burglary Tools,2014-01-24,2014-07-01,,0,,,,,Risk of Recidivism,5,Medium,2013-01-16,Risk of Violence,3,Low,2013-01-16,2014-01-17,2014-01-25,2,1,373,1,0,0\r\n8120,rodney dobronozenk,rodney,dobronozenk,2013-04-20,Male,1979-03-30,37,25 - 45,African-American,3,10,0,0,12,-1,2013-04-19 03:12:03,2013-06-10 10:44:28,13004462MM10A,,2013-04-19,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-20,Risk of Violence,9,High,2013-04-20,2014-03-20,2014-11-29,12,51,334,0,0,0\r\n8121,kennyal webber,kennyal,webber,2013-12-20,Male,1975-06-07,40,25 - 45,African-American,0,1,0,0,1,-65,2013-10-16 01:57:19,2013-12-20 06:03:00,13014011CF10A,2013-10-05,,76,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-20,Risk of Violence,1,Low,2013-12-20,2013-10-16,2013-12-20,1,0,833,0,0,0\r\n8125,austin robertson,austin,robertson,2013-08-16,Male,1992-07-27,23,Less than 25,Caucasian,0,4,0,0,0,0,2013-08-16 01:18:50,2013-08-16 01:33:22,13011489CF10A,2013-08-15,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-16,Risk of Violence,5,Medium,2013-08-16,2015-10-15,2015-11-30,0,0,790,0,0,0\r\n8126,willie sheely,willie,sheely,2013-10-21,Male,1981-09-20,34,25 - 45,African-American,0,7,0,0,19,-76,2013-08-06 10:48:28,2013-10-19 05:03:16,13012254CF10A,,2013-08-28,54,F,arrest case no charge,1,15007004CF10A,(F2),,2015-01-01,Aggravated Battery / Pregnant,,,,1,15007004CF10A,(F2),2015-01-01,Aggravated Battery / Pregnant,Risk of Recidivism,7,Medium,2013-10-21,Risk of Violence,6,Medium,2013-10-21,2014-08-13,2014-10-28,19,0,296,0,1,1\r\n8129,tim funchess,tim,funchess,2013-10-12,Male,1989-02-24,27,25 - 45,African-American,0,9,0,1,5,-1,2013-10-11 11:05:38,2013-10-12 01:31:00,13014269CF10A,2013-10-11,,1,F,Possession of Cocaine,1,14008891CF10A,(M1),0,2014-06-28,Trespass Other Struct/Conve,2014-06-28,2014-12-02,,1,16000750CF10A,(F3),2016-01-18,Aggravated Assault W/Dead Weap,Risk of Recidivism,9,High,2013-10-12,Risk of Violence,5,Medium,2013-10-12,2014-06-28,2014-12-02,5,0,259,1,1,1\r\n8130,vanston ward,vanston,ward,2014-02-01,Male,1965-08-30,50,Greater than 45,African-American,0,1,0,0,1,-1,2014-01-31 11:01:58,2014-02-01 10:10:12,14001401CF10A,2014-01-31,,1,F,Possess Weapon On School Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-01,Risk of Violence,1,Low,2014-02-01,2014-01-31,2014-02-01,1,0,790,0,0,0\r\n8132,andre jones,andre,jones,2013-03-30,Male,1994-02-26,22,Less than 25,African-American,0,5,1,2,1,-1,2013-03-29 07:15:17,2013-04-01 03:56:36,13004557CF10A,2013-03-29,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-30,Risk of Violence,7,Medium,2013-03-30,2013-03-29,2013-04-01,1,2,1098,0,0,0\r\n8137,juvince jacques,juvince,jacques,2013-10-07,Male,1981-12-09,34,25 - 45,African-American,0,1,0,0,1,0,2013-10-07 05:48:19,2013-10-30 09:57:10,13014075CF10A,,2013-10-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-07,Risk of Violence,2,Low,2013-10-07,2013-10-07,2013-10-30,1,23,907,0,0,0\r\n8138,harry morrison,harry,morrison,2014-02-27,Male,1959-11-30,56,Greater than 45,African-American,0,1,0,0,1,98,2014-06-05 10:22:38,2014-06-14 05:59:09,14002691CF10A,,2014-02-27,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-27,Risk of Violence,2,Low,2014-02-27,2014-06-05,2014-06-14,1,0,98,0,0,0\r\n8141,logan slaving,logan,slaving,2013-03-05,Male,1994-08-28,21,Less than 25,Caucasian,0,4,0,0,0,0,2013-03-05 04:09:04,2013-03-05 06:30:19,13003290CF10A,2013-03-05,,0,F,Trespassing/Construction Site,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-05,Risk of Violence,5,Medium,2013-03-05,2013-03-05,2013-03-05,0,0,1123,0,0,0\r\n8143,kevin bunsie,kevin,bunsie,2013-01-18,Male,1970-05-12,45,Greater than 45,Other,0,1,0,0,1,-1,2013-01-17 11:36:51,2013-01-18 09:16:04,13000817CF10A,,2013-01-17,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2013-01-17,2013-01-18,1,0,1169,0,0,0\r\n8146,angelo jasmine,angelo,jasmine,2013-09-23,Male,1985-10-28,30,25 - 45,African-American,0,9,0,0,1,0,2013-09-23 12:16:20,2013-09-23 08:15:00,13013382CF10A,2013-09-22,,1,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-23,Risk of Violence,7,Medium,2013-09-23,2013-09-23,2013-09-23,1,0,921,0,0,0\r\n8148,mark allen,mark,allen,2013-05-08,Male,1955-03-01,61,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-08 05:38:16,2013-05-14 09:38:56,13008899MM10A,2013-05-08,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-08,Risk of Violence,1,Low,2013-05-08,2013-05-08,2013-05-14,0,6,1059,0,0,0\r\n8149,sean weir,sean,weir,2014-02-08,Male,1988-08-07,27,25 - 45,Caucasian,0,3,0,0,3,-1,2014-02-07 04:46:22,2014-02-10 10:45:34,14002159MM10A,2014-02-07,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-08,Risk of Violence,3,Low,2014-02-08,2015-04-21,2015-04-21,3,2,437,0,0,0\r\n8150,caritasse roche,caritasse,roche,2013-07-12,Female,1988-05-13,27,25 - 45,African-American,0,5,0,0,2,,,,11019811TC10A,2011-04-12,,822,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-12,Risk of Violence,4,Low,2013-07-12,,,2,0,994,0,0,0\r\n8151,carlos gonzalez,carlos,gonzalez,2013-11-23,Male,1974-11-03,41,25 - 45,Hispanic,0,2,0,0,2,-1,2013-11-22 09:33:14,2013-11-23 10:16:36,13021950MM10A,2013-11-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-23,Risk of Violence,1,Low,2013-11-23,2013-11-22,2013-11-23,2,0,860,0,0,0\r\n8153,monica petusevsky,monica,petusevsky,2013-05-02,Male,1955-10-26,60,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-01 04:33:58,2013-05-02 04:44:03,13008472MM10A,2013-05-01,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-02,Risk of Violence,1,Low,2013-05-02,2013-05-01,2013-05-02,0,0,1065,0,0,0\r\n8154,jovan pinnock,jovan,pinnock,2013-02-07,Male,1993-01-06,23,Less than 25,African-American,0,8,0,0,1,0,2013-02-07 12:13:06,2013-02-11 08:47:59,13002715MM10A,2013-02-06,,1,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-07,Risk of Violence,8,High,2013-02-07,2013-02-07,2013-02-11,1,4,1149,0,0,0\r\n8155,kyle hansen,kyle,hansen,2013-11-07,Male,1976-04-15,40,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-06 10:58:07,2013-11-07 01:55:42,13020960MM10A,2013-11-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-07,Risk of Violence,1,Low,2013-11-07,2013-11-06,2013-11-07,0,0,876,0,0,0\r\n8157,stefano rotati,stefano,rotati,2014-02-12,Male,1986-03-12,30,25 - 45,Caucasian,0,3,0,0,0,-7,2014-02-05 05:34:10,2014-02-11 09:01:58,14001642CF10A,2014-02-05,,7,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-12,Risk of Violence,1,Low,2014-02-12,2014-12-12,2014-12-17,0,0,303,0,0,0\r\n8160,cynthia detres,cynthia,detres,2013-10-02,Female,1995-08-01,20,Less than 25,Caucasian,0,5,0,0,1,-41,2013-08-22 10:19:04,2013-08-23 08:21:55,13011826CF10A,2013-08-22,,41,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-02,Risk of Violence,6,Medium,2013-10-02,2013-08-22,2013-08-23,1,0,912,0,0,0\r\n8161,brandy palmer,brandy,palmer,2014-02-05,Female,1995-12-09,20,Less than 25,African-American,0,5,0,0,0,-1,2014-02-04 10:17:09,2014-02-05 09:57:26,14001576CF10A,2014-02-04,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-05,Risk of Violence,7,Medium,2014-02-05,2014-10-01,2014-10-14,0,0,238,0,0,0\r\n8162,khalid abukablan,khalid,abukablan,2013-03-18,Male,1967-10-01,48,Greater than 45,Asian,0,2,0,0,0,-1,2013-03-17 10:10:13,2013-03-20 09:25:28,13003888CF10A,2013-03-17,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-17,2013-03-20,0,2,1110,0,0,0\r\n8163,brian corker,brian,corker,2013-11-14,Male,1991-07-13,24,Less than 25,African-American,0,5,0,0,0,-1,2013-11-13 08:08:42,2013-11-14 08:11:27,13021393MM10A,2013-11-13,,1,M,Battery,1,14007351MM10A,(M1),0,2014-05-03,Resist/Obstruct W/O Violence,2014-05-03,2014-05-05,,1,14007351MM10A,(M2),2014-05-03,Assault,Risk of Recidivism,5,Medium,2013-11-14,Risk of Violence,5,Medium,2013-11-14,2014-05-03,2014-05-05,0,0,170,1,1,1\r\n8164,joey stroud,joey,stroud,2013-08-02,Male,1986-02-28,30,25 - 45,African-American,0,3,0,0,5,-1,2013-08-01 11:03:55,2013-08-02 08:42:08,13014513MM10A,2013-08-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-02,Risk of Violence,2,Low,2013-08-02,2013-08-01,2013-08-02,5,0,973,0,0,0\r\n8169,luke morgan,luke,morgan,2013-02-17,Male,1990-10-04,25,25 - 45,African-American,0,3,0,0,0,-1,2013-02-16 11:55:29,2013-02-18 02:30:55,12022946MO10A,,2013-02-16,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-17,Risk of Violence,5,Medium,2013-02-17,2013-02-16,2013-02-18,0,1,1139,0,0,0\r\n8171,omar santiago,omar,santiago,2013-10-07,Male,1977-05-27,38,25 - 45,Caucasian,0,2,0,0,0,0,2013-10-07 04:35:01,2013-10-07 08:13:51,13019064MM10A,2013-10-07,,0,M,Susp Drivers Lic 1st Offense,1,15011658MM10A,(M1),0,2015-11-06,Possess Cannabis/20 Grams Or Less,2015-11-06,2015-11-09,,0,,,,,Risk of Recidivism,2,Low,2013-10-07,Risk of Violence,2,Low,2013-10-07,2015-11-06,2015-11-09,0,0,760,1,0,0\r\n8174,rodrick shand,rodrick,shand,2013-03-13,Male,1989-01-13,27,25 - 45,African-American,0,2,0,0,1,-1,2013-03-12 05:14:38,2013-03-13 01:33:25,13003621CF10A,2013-03-12,,1,F,Grand Theft (Motor Vehicle),1,15010212MM10A,(M1),0,2015-09-28,Unlaw Use False Name/Identity,2015-09-28,2015-09-30,,0,,,,,Risk of Recidivism,2,Low,2013-03-13,Risk of Violence,3,Low,2013-03-13,2014-08-20,2014-09-19,1,0,525,0,0,0\r\n8182,ezekiel swinton,ezekiel,swinton,2013-01-31,Male,1992-03-12,24,Less than 25,African-American,0,7,0,0,1,0,2013-01-31 04:44:02,2013-06-21 05:24:05,13001578CF10A,2013-01-31,,0,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-31,Risk of Violence,9,High,2013-01-31,2013-01-31,2013-06-21,1,141,1156,0,0,0\r\n8185,willie perry,willie,perry,2014-10-28,Male,1952-01-03,64,Greater than 45,African-American,0,4,0,0,8,-4,2014-10-24 07:26:34,2014-10-25 06:30:06,08002767MM40A,,2008-08-18,2262,M,arrest case no charge,1,15014354CF10A,(F2),,2015-11-04,Poss Wep Conv Felon,,,,1,15014354CF10A,(F1),2015-11-04,Agg Battery Bod Hrm-Deadly Weap,Risk of Recidivism,4,Low,2014-10-28,Risk of Violence,2,Low,2014-10-28,2014-10-24,2014-10-25,8,0,372,1,1,1\r\n8188,jamie fabre,jamie,fabre,2013-11-06,Male,1989-07-16,26,25 - 45,Caucasian,0,10,0,0,3,0,2013-11-06 04:37:08,2013-11-06 08:11:56,11015818MM10A,2011-06-19,,871,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-11-06,Risk of Violence,9,High,2013-11-06,2015-02-02,2015-02-02,3,0,453,0,0,0\r\n8189,hilary adler,hilary,adler,2013-09-26,Male,1967-11-04,48,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-09-25 08:20:02,2013-10-28 10:14:25,13013483CF10A,2013-09-25,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-26,Risk of Violence,1,Low,2013-09-26,2013-09-25,2013-10-28,0,32,918,0,0,0\r\n8191,anpherny simpson,anpherny,simpson,2013-09-30,Male,1994-10-15,21,Less than 25,African-American,0,4,0,0,0,-1,2013-09-29 07:16:56,2013-09-30 08:59:07,13013673CF10A,2013-09-29,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-30,Risk of Violence,6,Medium,2013-09-30,2013-09-29,2013-09-30,0,0,914,0,0,0\r\n8195,shane johnson,shane,johnson,2013-05-12,Male,1978-11-27,37,25 - 45,African-American,0,9,0,0,17,-1,2013-05-11 12:13:17,2013-06-26 04:02:19,13009095MM10A,2013-05-11,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-12,Risk of Violence,3,Low,2013-05-12,2014-08-01,2014-10-27,17,45,446,0,0,0\r\n8204,jody holmes,jody,holmes,2013-11-23,Male,1970-10-09,45,Greater than 45,African-American,1,7,0,0,16,-1,2013-11-22 07:56:56,2013-11-23 10:08:48,13016283CF10A,2013-11-22,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-23,Risk of Violence,2,Low,2013-11-23,2014-04-15,2014-07-02,16,0,143,0,0,0\r\n8207,federico watkins,federico,watkins,2014-05-16,Male,1984-04-25,31,25 - 45,Caucasian,0,2,0,0,3,-1,2014-05-15 08:47:49,2014-05-17 03:47:54,14007944MM10A,2014-05-15,,1,M,Battery,1,16002555CF10A,(F1),,2016-02-25,Sex Batt Faml/Cust Vict 12-17Y,,,,1,16002555CF10A,(F1),2016-02-25,Sex Batt Faml/Cust Vict 12-17Y,Risk of Recidivism,2,Low,2014-05-16,Risk of Violence,2,Low,2014-05-16,2014-05-15,2014-05-17,3,1,650,1,1,1\r\n8209,bobby chin,bobby,chin,2013-01-03,Male,1987-04-25,28,25 - 45,Asian,0,8,0,0,9,-1,2013-01-02 02:13:50,2013-02-08 01:06:38,13000088CF10A,2013-01-02,,1,F,Aggravated Battery,1,15039961TC20A,(M2),,2015-07-04,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,8,High,2013-01-03,Risk of Violence,6,Medium,2013-01-03,2013-01-02,2013-02-08,9,36,912,1,0,0\r\n8210,shermilla coats,shermilla,coats,2013-07-29,Female,1986-07-12,29,25 - 45,African-American,0,3,0,0,1,-40,2013-06-19 06:57:34,2013-07-04 12:09:30,13008678CF10A,2013-06-19,,40,F,Robbery W/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-29,Risk of Violence,2,Low,2013-07-29,2013-06-19,2013-07-04,1,0,977,0,0,0\r\n8211,michael biasucci,michael,biasucci,2013-04-20,Male,1977-02-02,39,25 - 45,Caucasian,0,1,0,0,1,-1,2013-04-19 11:58:23,2013-04-20 07:15:06,13005615CF10A,2013-04-19,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-20,Risk of Violence,1,Low,2013-04-20,2013-04-19,2013-04-20,1,0,1077,0,0,0\r\n8212,precious price,precious,price,2013-08-04,Male,1982-12-05,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-08-03 05:25:28,2013-08-04 01:49:16,13010897CF10A,2013-08-03,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-04,Risk of Violence,2,Low,2013-08-04,2013-08-03,2013-08-04,0,0,971,0,0,0\r\n8215,farrokh mohammadnejad,farrokh,mohammadnejad,2013-09-23,Male,1967-06-24,48,Greater than 45,Asian,0,1,0,0,0,0,2013-09-23 02:20:40,2013-10-02 12:35:15,13018143MM10A,2013-09-22,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-23,2013-10-02,0,9,921,0,0,0\r\n8216,barry williams,barry,williams,2013-10-31,Male,1988-04-22,27,25 - 45,African-American,0,3,0,0,3,-1,2013-10-30 03:40:14,2013-12-07 01:53:45,13004112MM10A,,2013-10-30,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-31,Risk of Violence,3,Low,2013-10-31,2014-10-14,2014-11-10,3,37,348,0,0,0\r\n8217,octavio arteaga,octavio,arteaga,2013-03-30,Male,1991-12-29,24,Less than 25,Hispanic,0,5,0,0,0,-1,2013-03-29 07:01:27,2013-04-30 08:30:02,13004538CF10A,2013-03-29,,1,F,Lewd/Lasc Battery Pers 12+/<16,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-30,Risk of Violence,4,Low,2013-03-30,2013-03-29,2013-04-30,0,31,1098,0,0,0\r\n8218,taylor irwin,taylor,irwin,2014-01-29,Female,1991-08-16,24,Less than 25,Caucasian,0,3,0,0,0,0,2014-01-29 03:03:39,2014-01-29 07:47:54,14001635MM10A,2014-01-29,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-29,Risk of Violence,3,Low,2014-01-29,2014-01-29,2014-01-29,0,0,793,0,0,0\r\n8220,bruno balbi,bruno,balbi,2013-09-11,Male,1982-12-28,33,25 - 45,Hispanic,0,2,0,0,3,,,,12012229CF10A,,2012-08-16,391,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-11,Risk of Violence,2,Low,2013-09-11,,,3,0,933,0,0,0\r\n8223,christina deperna,christina,deperna,2013-08-04,Female,1984-10-07,31,25 - 45,Caucasian,0,10,0,2,14,0,2013-08-04 03:14:06,2013-08-05 03:07:44,13010839CF10A,2013-08-03,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-04,Risk of Violence,5,Medium,2013-08-04,2013-08-04,2013-08-05,14,1,971,0,0,0\r\n8224,allan castro,allan,castro,2013-10-18,Male,1983-10-01,32,25 - 45,Hispanic,0,1,0,0,1,-15,2013-10-03 04:03:00,2013-10-06 02:04:04,13013893CF10A,2013-10-03,,15,F,Aggravated Assault W/o Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-18,Risk of Violence,1,Low,2013-10-18,2013-10-03,2013-10-06,1,0,896,0,0,0\r\n8225,lawrence bauman,lawrence,bauman,2013-10-11,Male,1953-06-28,62,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-11 04:48:23,2013-10-12 07:46:26,13019305MM10A,2013-10-11,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-11,Risk of Violence,1,Low,2013-10-11,2013-10-11,2013-10-12,0,1,903,0,0,0\r\n8230,earl trapp,earl,trapp,2013-10-23,Male,1959-04-23,56,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-10-22 04:47:28,2013-11-07 09:55:20,13020015MM10A,2013-10-21,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-23,Risk of Violence,1,Low,2013-10-23,2014-05-08,2014-05-20,2,15,197,0,0,0\r\n8231,glenroy powell,glenroy,powell,2014-02-25,Male,1987-06-04,28,25 - 45,African-American,0,1,0,0,6,-1,2014-02-24 10:38:25,2014-02-25 09:41:08,14002618CF10A,2014-02-24,,1,F,Drivg While Lic Suspd/Revk/Can,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,2,Low,2014-02-25,2014-02-24,2014-02-25,6,0,766,0,0,0\r\n8232,dana reed,dana,reed,2013-12-30,Female,1989-05-02,26,25 - 45,African-American,0,6,0,0,6,-1,2013-12-29 04:37:10,2014-01-01 07:59:30,13016502CF10A,,2013-12-29,1,F,arrest case no charge,1,14003479MM10A,(M2),43,2014-01-06,Petit Theft,2014-02-18,2014-04-13,,1,15015491CF10A,(F2),2015-12-01,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-12-30,Risk of Violence,5,Medium,2013-12-30,2013-12-29,2014-01-01,6,2,7,1,1,1\r\n8236,mauricio hostios,mauricio,hostios,2013-08-27,Male,1964-05-29,51,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-08-26 12:54:03,2013-08-26 08:14:39,13016292MM10A,2013-08-25,,2,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,2013-08-26,2013-08-26,0,0,948,0,0,0\r\n8237,israel guadalupe,israel,guadalupe,2013-03-06,Male,1965-03-29,51,Greater than 45,Hispanic,0,3,0,0,1,-1,2013-03-05 08:37:31,2013-03-08 11:12:12,13003295CF10A,2013-03-05,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-06,Risk of Violence,2,Low,2013-03-06,2013-03-05,2013-03-08,1,2,1122,0,0,0\r\n8239,kelvin oliphant,kelvin,oliphant,2013-02-02,Male,1987-09-05,28,25 - 45,African-American,0,10,0,1,7,-1,2013-02-01 07:05:02,2013-02-03 02:50:02,13001641CF10A,2013-02-01,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-02,Risk of Violence,6,Medium,2013-02-02,2013-06-13,2013-08-30,7,1,131,0,0,0\r\n8240,ramonda cheatham,ramonda,cheatham,2013-05-06,Female,1979-09-23,36,25 - 45,African-American,0,2,0,0,1,-1,2013-05-05 07:03:21,2013-05-06 09:22:37,13008712MM10A,2013-05-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-05-05,2013-05-06,1,0,1061,0,0,0\r\n8242,juan jiminez,juan,jiminez,2014-03-28,Male,1976-10-04,39,25 - 45,Hispanic,0,1,0,0,0,,,,14004098CF10A,2014-03-23,,5,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-28,Risk of Violence,1,Low,2014-03-28,,,0,0,735,0,0,0\r\n8245,erin balta,erin,balta,2013-03-04,Female,1978-02-15,38,25 - 45,Caucasian,0,1,0,0,0,0,2013-03-04 03:11:55,2013-03-05 02:25:38,13004434MM10A,2013-03-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-03-04,2013-03-05,0,1,1124,0,0,0\r\n8247,joseph mckinley,joseph,mckinley,2013-12-16,Male,1992-11-29,23,Less than 25,African-American,0,2,0,0,1,-2,2013-12-14 06:08:44,2013-12-15 01:45:57,13017295CF10A,2013-12-14,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-16,Risk of Violence,4,Low,2013-12-16,2014-06-02,2014-06-02,1,0,168,0,0,0\r\n8248,brian demore,brian,demore,2013-05-12,Male,1988-02-25,28,25 - 45,Caucasian,0,7,0,0,5,-1,2013-05-11 06:12:53,2013-06-06 09:39:09,13009112MM10A,2013-05-11,,1,M,Battery,1,13018947MM10A,(M1),0,2013-10-05,Battery,2013-10-05,2013-10-31,,1,13018947MM10A,(M1),2013-10-05,Battery,Risk of Recidivism,7,Medium,2013-05-12,Risk of Violence,5,Medium,2013-05-12,2013-10-05,2013-10-31,5,25,146,1,1,1\r\n8251,nadja parish,nadja,parish,2014-01-02,Female,1977-07-01,38,25 - 45,Other,0,1,0,0,0,-1,2014-01-01 07:04:41,2014-01-02 04:12:39,14000052CF10A,2014-01-01,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-02,Risk of Violence,1,Low,2014-01-02,2014-01-01,2014-01-02,0,0,820,0,0,0\r\n8253,franceline librun,franceline,librun,2014-02-10,Male,1986-09-18,29,25 - 45,African-American,0,3,0,0,0,-1,2014-02-09 10:09:21,2014-02-11 06:47:33,14002253MM10A,2014-02-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-10,Risk of Violence,5,Medium,2014-02-10,2014-02-09,2014-02-11,0,1,781,0,0,0\r\n8254,shella rangoowala,shella,rangoowala,2013-11-14,Female,1981-05-16,34,25 - 45,Asian,0,1,0,0,1,-10,2013-11-04 10:25:43,2013-11-06 11:22:12,13015353CF10A,2013-11-04,,10,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-11-04,2013-11-06,1,0,869,0,0,0\r\n8257,johnior metayer,johnior,metayer,2013-12-23,Male,1981-09-20,34,25 - 45,African-American,0,7,0,0,8,-1,2013-12-22 05:47:01,2013-12-23 08:30:29,13023582MM10A,2013-12-22,,1,M,Battery,1,16011132TC20A,(M2),,2016-03-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-23,Risk of Violence,3,Low,2013-12-23,2015-11-13,2015-11-13,8,0,690,0,0,0\r\n8258,manuel taveras,manuel,taveras,2013-01-09,Male,1990-01-05,26,25 - 45,African-American,0,7,0,0,6,-1,2013-01-08 02:38:01,2013-01-10 03:49:51,13000319CF10A,2013-01-08,,1,F,Burglary Conveyance Armed,1,14011379CF10A,(F2),0,2014-08-20,Aggravated Battery / Pregnant,2014-08-20,2014-08-21,,1,14011379CF10A,(F2),2014-08-20,Aggravated Battery / Pregnant,Risk of Recidivism,7,Medium,2013-01-09,Risk of Violence,6,Medium,2013-01-09,2014-08-20,2014-08-21,6,1,588,1,1,1\r\n8259,donovan goode,donovan,goode,2013-10-02,Male,1957-11-11,58,Greater than 45,African-American,0,1,0,0,0,-1,2013-10-01 08:09:05,2013-10-03 12:13:46,13013796CF10A,2013-10-01,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,2013-10-01,2013-10-03,0,1,912,0,0,0\r\n8260,michael marceau,michael,marceau,2013-02-08,Male,1978-07-07,37,25 - 45,Hispanic,0,5,0,0,6,-24,2013-01-15 12:37:37,2013-02-08 11:34:26,13000716CF10A,,2013-01-15,24,F,arrest case no charge,1,15054030TC40A,(M2),,2015-09-01,Operating W/O Valid License,,,,1,16000913CF10A,(F7),2016-01-22,Armed Kidnapping,Risk of Recidivism,5,Medium,2013-02-08,Risk of Violence,3,Low,2013-02-08,2014-01-31,2014-03-04,6,0,357,0,1,1\r\n8261,kevon obas,kevon,obas,2013-05-22,Male,1993-03-27,23,Less than 25,African-American,0,8,0,0,1,,,,13007334CF10A,,2013-05-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-22,Risk of Violence,9,High,2013-05-22,,,1,0,1045,0,0,0\r\n8263,alton tuff,alton,tuff,2013-08-27,Male,1954-07-29,61,Greater than 45,African-American,0,2,0,0,9,253,2014-05-07 10:19:11,2014-08-11 01:36:50,12016064CF10A,,2012-11-02,298,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-27,Risk of Violence,2,Low,2013-08-27,2014-05-07,2014-08-11,9,0,253,0,0,0\r\n8265,robert raphel,robert,raphel,2014-03-18,Male,1971-07-19,44,25 - 45,African-American,0,3,0,0,0,-1,2014-03-17 11:17:35,2014-03-20 03:27:00,14003774CF10A,2014-03-17,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-18,Risk of Violence,3,Low,2014-03-18,2014-03-17,2014-03-20,0,2,745,0,0,0\r\n8266,anthony wright,anthony,wright,2013-03-26,Male,1990-03-11,26,25 - 45,African-American,0,7,0,0,3,1057,2016-02-16 12:57:47,2016-02-16 07:42:40,10017474CF10A,,2011-12-23,459,F,arrest case no charge,1,15003989MM40A,(M1),131,2015-10-08,Possess Drug Paraphernalia,2016-02-16,2016-02-16,,0,,,,,Risk of Recidivism,7,Medium,2013-03-26,Risk of Violence,4,Low,2013-03-26,2016-02-16,2016-02-16,3,0,926,1,0,0\r\n8267,gregory lee,gregory,lee,2013-09-26,Male,1969-10-09,46,Greater than 45,African-American,0,3,0,0,3,-35,2013-08-22 01:15:43,2013-09-26 05:24:09,13011820CF10A,2013-08-22,,35,F,Stalking (Aggravated),1,13023854MM10A,(M1),87,2013-11-03,Restraining Order Dating Viol,2014-01-29,2014-02-15,,1,15001070CF10A,(F3),2015-01-23,Aggravated Assault w/Firearm,Risk of Recidivism,3,Low,2013-09-26,Risk of Violence,3,Low,2013-09-26,2015-01-23,2015-06-19,3,0,38,1,1,1\r\n8268,justin marcello,justin,marcello,2013-11-05,Male,1979-08-11,36,25 - 45,Caucasian,0,3,0,0,5,-1,2013-11-04 12:41:52,2013-11-08 04:57:49,13015345CF10A,2013-11-04,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-05,Risk of Violence,1,Low,2013-11-05,2013-11-04,2013-11-08,5,3,878,0,0,0\r\n8277,forlisha rolle,forlisha,rolle,2013-03-18,Female,1992-09-29,23,Less than 25,Other,0,6,0,0,0,-1,2013-03-17 11:48:46,2013-03-18 02:22:20,13005227MM10A,2013-03-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-18,Risk of Violence,6,Medium,2013-03-18,2013-03-17,2013-03-18,0,0,1110,0,0,0\r\n8278,jarone douse,jarone,douse,2013-04-14,Male,1962-10-10,53,Greater than 45,African-American,0,6,0,0,3,-1,2013-04-13 10:46:45,2013-04-19 08:34:22,13005333CF10A,2013-04-13,,1,F,Aggravated Battery,1,14000894MM20A,(M2),,2014-03-21,Petit Theft,,,,1,15007652CF10A,(F3),2015-06-12,Battery on Law Enforc Officer,Risk of Recidivism,6,Medium,2013-04-14,Risk of Violence,1,Low,2013-04-14,2013-04-13,2013-04-19,3,5,341,1,1,1\r\n8279,christopher sohit,christopher,sohit,2013-04-30,Male,1982-08-12,33,25 - 45,Other,0,3,0,0,5,1027,2016-02-21 01:53:34,2016-02-23 11:28:11,12014773CF10A,,2012-10-07,205,F,arrest case no charge,1,16001401MM10A,(M1),,2016-01-27,Viol Injunct Domestic Violence,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-30,Risk of Violence,2,Low,2013-04-30,2016-02-21,2016-02-23,5,0,1002,1,0,0\r\n8280,travis bryant,travis,bryant,2013-08-02,Male,1981-01-09,35,25 - 45,African-American,0,6,0,0,8,-1,2013-08-01 07:39:02,2013-08-10 07:34:46,13014514MM10A,2013-08-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-02,Risk of Violence,4,Low,2013-08-02,2013-08-01,2013-08-10,8,8,973,0,0,0\r\n8281,joann daley,joann,daley,2013-04-12,Female,1976-10-05,39,25 - 45,Caucasian,0,3,0,0,3,-1,2013-04-11 11:29:38,2013-04-12 12:46:49,05002511CF10A,,2005-05-19,2885,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-12,Risk of Violence,1,Low,2013-04-12,2013-04-11,2013-04-12,3,0,1085,0,0,0\r\n8282,carlos delatorre,carlos,delatorre,2013-09-22,Male,1995-03-23,21,Less than 25,Hispanic,1,8,0,0,1,-1,2013-09-21 09:01:29,2013-11-15 09:37:13,13013332CF10A,2013-09-21,,1,F,Felony Battery (Dom Strang),1,14007463MM10A,(M1),0,2014-05-06,Possess Cannabis/20 Grams Or Less,2014-05-06,2014-05-07,,1,14008214MM10A,(M1),2014-05-21,Battery,Risk of Recidivism,8,High,2013-09-22,Risk of Violence,6,Medium,2013-09-22,2014-05-06,2014-05-07,1,54,226,1,1,1\r\n8284,justin thomas,justin,thomas,2014-06-26,Male,1990-03-20,26,25 - 45,African-American,1,9,0,0,10,-1,2014-06-25 06:52:09,2014-06-26 09:02:39,14008754CF10A,,2014-06-25,1,F,arrest case no charge,1,14014516MM10A,(M1),0,2014-10-02,Obstruct Officer By Disguise,2014-10-02,2014-11-01,,1,14014516MM10A,(M1),2014-10-02,Battery,Risk of Recidivism,9,High,2014-06-26,Risk of Violence,5,Medium,2014-06-26,2014-10-02,2014-11-01,10,0,98,1,1,1\r\n8287,chasity acevedo,chasity,acevedo,2013-05-16,Female,1995-02-26,21,Less than 25,Caucasian,0,7,3,1,3,-1,2013-05-15 08:46:36,2013-05-16 08:50:20,13009386MM10A,2013-05-15,,1,M,Battery,1,13023229MM10A,(M1),0,2013-12-15,Battery,2013-12-15,2014-01-16,,1,13023229MM10A,(M1),2013-12-15,Battery,Risk of Recidivism,7,Medium,2013-05-16,Risk of Violence,7,Medium,2013-05-16,2013-12-15,2014-01-16,3,0,213,1,1,1\r\n8288,roger brown,roger,brown,2013-01-14,Male,1978-09-06,37,25 - 45,African-American,0,5,0,0,8,-1,2013-01-13 05:05:40,2013-01-27 09:09:14,13000605CF10A,,2013-01-13,1,F,arrest case no charge,1,15001900MM10A,(M1),0,2015-02-15,Trespass Other Struct/Conve,2015-02-15,2015-02-16,,0,,,,,Risk of Recidivism,5,Medium,2013-01-14,Risk of Violence,2,Low,2013-01-14,2015-02-15,2015-02-16,8,13,762,1,0,0\r\n8289,rodolfo gonzalez,rodolfo,gonzalez,2013-07-11,Male,1987-03-16,29,25 - 45,Caucasian,0,6,0,0,1,-77,2013-04-25 06:06:31,2013-04-26 04:08:56,13005973CF10A,2013-04-25,,77,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-11,Risk of Violence,3,Low,2013-07-11,2013-04-25,2013-04-26,1,0,995,0,0,0\r\n8291,chris ingraham,chris,ingraham,2013-05-21,Male,1956-12-25,59,Greater than 45,African-American,0,1,0,0,4,-66,2013-03-16 01:44:05,2013-05-21 11:04:46,12013966MM10A,,2013-03-15,67,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-21,Risk of Violence,1,Low,2013-05-21,2013-03-16,2013-05-21,4,0,1046,0,0,0\r\n8294,celia wagner,celia,wagner,2014-01-17,Female,1960-01-30,56,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-16 07:55:33,2014-01-17 01:26:59,14000848MM10A,2014-01-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-17,Risk of Violence,1,Low,2014-01-17,2014-01-16,2014-01-17,0,0,805,0,0,0\r\n8296,stephanie sawyer,stephanie,sawyer,2013-08-01,Female,1983-12-14,32,25 - 45,Caucasian,0,6,0,0,2,,,,13008784TC10A,2013-02-11,,171,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-01,Risk of Violence,3,Low,2013-08-01,,,2,0,974,0,0,0\r\n8298,matthew lingwood,matthew,lingwood,2014-01-28,Male,1985-08-15,30,25 - 45,Caucasian,0,2,0,0,0,-1,2014-01-27 01:38:16,2014-01-27 06:54:27,14001127CF10A,2014-01-26,,2,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-28,Risk of Violence,2,Low,2014-01-28,2014-01-27,2014-01-27,0,0,794,0,0,0\r\n8299,travis sweeting,travis,sweeting,2013-09-09,Male,1988-11-19,27,25 - 45,African-American,0,4,0,0,2,-1,2013-09-08 08:07:45,2013-09-11 08:26:49,13012698CF10A,2013-09-08,,1,F,,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-09,Risk of Violence,3,Low,2013-09-09,2014-06-11,2014-06-20,2,2,275,0,0,0\r\n8301,perle roques,perle,roques,2013-02-05,Male,1987-04-17,29,25 - 45,Other,0,2,0,0,0,-1,2013-02-04 10:30:41,2013-02-06 08:54:44,13001742CF10A,2013-02-04,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-05,Risk of Violence,2,Low,2013-02-05,2013-02-04,2013-02-06,0,1,1151,0,0,0\r\n8303,jonathon irving,jonathon,irving,2013-07-15,Male,1991-07-25,24,Less than 25,African-American,0,4,0,0,1,216,2014-02-16 11:32:33,2014-02-17 05:30:00,11013082CF10A,,2012-09-20,298,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-15,Risk of Violence,4,Low,2013-07-15,2014-02-16,2014-02-17,1,0,216,0,0,0\r\n8304,kristen adams,kristen,adams,2013-09-26,Female,1988-07-14,27,25 - 45,Caucasian,0,10,0,0,6,-1,2013-09-25 04:05:03,2013-09-26 08:46:37,13013512CF10A,2013-09-25,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-26,Risk of Violence,9,High,2013-09-26,2014-07-09,2014-07-10,6,0,286,0,0,0\r\n8306,claudel galette,claudel,galette,2013-05-18,Male,1972-05-15,43,25 - 45,African-American,0,9,0,0,15,-1,2013-05-17 09:20:47,2013-05-18 07:39:32,13009562MM10A,2013-05-17,,1,M,Resist/Obstruct W/O Violence,1,13009426CF10A,(F3),1,2013-07-05,Tamper With Witness/Victim/CI,2013-07-06,2014-05-07,,1,13009426CF10A,(F3),2013-07-05,Felony Battery w/Prior Convict,Risk of Recidivism,9,High,2013-05-18,Risk of Violence,6,Medium,2013-05-18,2015-12-01,2020-01-01,15,0,48,1,1,1\r\n8307,patrice healey,patrice,healey,2014-02-04,Female,1963-04-02,53,Greater than 45,African-American,0,6,0,0,5,-1,2014-02-03 06:26:31,2014-02-05 01:44:53,14001595CF10A,2014-02-03,,1,F,Unlicensed Telemarketing,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-04,Risk of Violence,4,Low,2014-02-04,2014-02-03,2014-02-05,5,1,787,0,0,0\r\n8309,andrae cray,andrae,cray,2013-10-23,Male,1990-03-08,26,25 - 45,African-American,0,5,1,0,6,-8,2013-10-15 07:14:52,2013-10-17 05:10:33,12015557TC10A,,2013-10-15,8,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-23,Risk of Violence,4,Low,2013-10-23,2015-07-17,2015-08-01,6,0,632,0,0,0\r\n8311,veronica leonard,veronica,leonard,2013-01-07,Female,1991-09-29,24,Less than 25,Caucasian,0,6,0,0,1,-1,2013-01-06 06:05:41,2013-01-07 01:30:24,11005355CF10A,,2013-01-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-07,Risk of Violence,6,Medium,2013-01-07,2013-01-06,2013-01-07,1,0,1180,0,0,0\r\n8312,ty-shawn smith,ty-shawn,smith,2013-10-25,Male,1985-12-31,30,25 - 45,African-American,0,6,0,0,0,0,2013-10-25 03:07:46,2013-10-25 07:52:05,13014922CF10A,2013-10-25,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-25,Risk of Violence,5,Medium,2013-10-25,2013-10-25,2013-10-25,0,0,889,0,0,0\r\n8314,kharee woods,kharee,woods,2013-01-22,Male,1989-10-09,26,25 - 45,African-American,0,9,0,0,4,-1,2013-01-21 11:29:04,2013-01-22 09:38:34,13000961CF10A,2013-01-21,,1,F,Driving While License Revoked,1,15027878TC40A,(M2),,2015-05-08,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2013-01-22,Risk of Violence,7,Medium,2013-01-22,2013-06-21,2013-07-01,4,0,150,0,0,0\r\n8317,ruben santiago,ruben,santiago,2014-02-21,Male,1979-02-19,37,25 - 45,Hispanic,0,5,0,0,4,,,,12010699CF10A,2012-07-20,,581,F,Conspiracy to Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-21,Risk of Violence,2,Low,2014-02-21,2009-01-22,2009-02-01,4,0,770,0,0,0\r\n8318,george turner,george,turner,2013-05-06,Male,1961-05-23,54,Greater than 45,African-American,0,1,0,0,4,-1,2013-05-05 04:15:11,2013-05-07 03:53:33,11017440CF10A,,2013-05-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-05-05,2013-05-07,4,1,1061,0,0,0\r\n8328,daniel cortes,daniel,cortes,2014-10-04,Male,1990-04-03,26,25 - 45,Caucasian,0,8,0,3,10,0,2014-10-04 06:08:11,2014-10-05 02:46:08,14035976MU10A,2014-10-04,,0,M,Driving License Suspended,1,15006963TC30A,(M1),41,2015-01-20,Opert With Susp DL 2nd Offens,2015-03-02,2015-03-03,,1,15013465CF10A,(F2),2015-10-16,Agg Fleeing/Eluding High Speed,Risk of Recidivism,8,High,2014-10-04,Risk of Violence,7,Medium,2014-10-04,2015-01-06,2015-01-15,10,1,94,0,1,1\r\n8340,richard daniels,richard,daniels,2013-05-29,Male,1970-06-16,45,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-28 12:08:40,2013-05-29 02:13:09,13007626CF10A,2013-05-28,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-05-28,2013-05-29,0,0,1038,0,0,0\r\n8341,irving tepper,irving,tepper,2013-11-13,Male,1968-07-10,47,Greater than 45,Caucasian,0,5,0,0,1,-1,2013-11-12 11:13:35,2013-11-13 01:03:30,13021316MM10A,2013-11-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-13,Risk of Violence,3,Low,2013-11-13,2013-11-12,2013-11-13,1,0,870,0,0,0\r\n8343,ryan reyes,ryan,reyes,2013-05-09,Male,1985-12-19,30,25 - 45,Hispanic,0,8,0,0,7,269,2014-02-02 01:24:30,2014-02-02 08:03:53,12018195CF10A,2012-12-14,,146,F,Possession of Cannabis,1,14003988MU10A,(M1),1,2014-02-01,Opert With Susp DL 2nd Offens,2014-02-02,2014-02-02,,1,15012048CF10A,(F3),2015-08-04,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2013-05-09,Risk of Violence,7,Medium,2013-05-09,2015-11-05,2015-11-06,7,0,268,1,1,1\r\n8347,gregory steele,gregory,steele,2013-02-15,Male,1965-11-23,50,Greater than 45,Caucasian,0,2,0,0,1,693,2015-01-09 12:32:07,2015-03-06 03:04:36,08015707CF10A,,2012-10-01,137,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-15,Risk of Violence,4,Low,2013-02-15,2015-01-09,2015-03-06,1,0,693,0,0,0\r\n8348,henry zukowski,henry,zukowski,2014-01-29,Male,1958-07-31,57,Greater than 45,Caucasian,0,1,0,0,3,-52,2013-12-08 01:54:51,2013-12-20 09:17:41,13016970CF10A,2013-12-08,,52,M,Fraud Obtain Food or Lodging,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-29,Risk of Violence,1,Low,2014-01-29,2013-12-08,2013-12-20,3,0,793,0,0,0\r\n8349,eric saddler,eric,saddler,2013-05-17,Male,1984-08-21,31,25 - 45,African-American,0,1,0,0,2,-1,2013-05-16 11:28:32,2013-05-18 04:21:53,13007041CF10A,2013-05-16,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-17,Risk of Violence,2,Low,2013-05-17,2013-05-16,2013-05-18,2,1,1050,0,0,0\r\n8355,phillip powell,phillip,powell,2013-12-17,Male,1988-03-21,28,25 - 45,African-American,0,4,0,0,2,-1,2013-12-16 10:24:07,2013-12-17 01:08:11,13017379CF10A,2013-12-16,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-17,Risk of Violence,4,Low,2013-12-17,2013-12-16,2013-12-17,2,0,836,0,0,0\r\n8358,shawntoria jefferson,shawntoria,jefferson,2013-10-10,Female,1994-06-23,21,Less than 25,African-American,0,6,0,0,0,-1,2013-10-09 09:17:03,2013-10-10 08:01:27,13014168CF10A,2013-10-09,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-10,Risk of Violence,7,Medium,2013-10-10,2013-10-09,2013-10-10,0,0,904,0,0,0\r\n8360,jordan douglas,jordan,douglas,2014-02-27,Male,1991-03-17,25,25 - 45,African-American,0,9,0,1,4,-1,2014-02-26 05:42:51,2014-08-15 03:57:35,14002740CF10A,2014-02-26,,1,F,Burglary Unoccupied Dwelling,1,15072982TC40A,(M2),,2015-12-26,Fail Register Vehicle,,,,1,16000178MM10A,(M1),2016-01-05,Battery,Risk of Recidivism,9,High,2014-02-27,Risk of Violence,8,High,2014-02-27,2015-02-20,2015-03-03,4,169,358,0,1,1\r\n8361,james adams,james,adams,2013-10-17,Male,1978-10-02,37,25 - 45,African-American,0,7,0,0,7,-1,2013-10-16 02:11:36,2013-10-17 07:39:15,13014487CF10A,2013-10-16,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-17,Risk of Violence,3,Low,2013-10-17,2014-04-06,2014-04-07,7,0,171,0,0,0\r\n8364,muzaffer kilic,muzaffer,kilic,2013-12-18,Male,1960-01-01,56,Greater than 45,Other,0,1,0,0,0,-1,2013-12-17 08:41:27,2013-12-24 10:49:15,13023380MM10A,2013-12-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-18,Risk of Violence,1,Low,2013-12-18,2013-12-17,2013-12-24,0,6,835,0,0,0\r\n8365,edgar christie,edgar,christie,2013-04-20,Male,1991-09-15,24,Less than 25,African-American,0,3,0,0,0,-1,2013-04-19 07:16:54,2013-04-20 07:45:15,13007624MM10A,2013-04-19,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-20,Risk of Violence,4,Low,2013-04-20,2013-04-19,2013-04-20,0,0,1077,0,0,0\r\n8369,william taylor,william,taylor,2013-04-02,Male,1968-06-17,47,Greater than 45,Caucasian,0,2,0,0,5,-1,2013-04-01 10:51:38,2013-04-06 07:54:08,13006247MM10A,2013-04-01,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-02,Risk of Violence,3,Low,2013-04-02,2013-04-01,2013-04-06,5,4,1095,0,0,0\r\n8373,anthony fasano,anthony,fasano,2013-04-04,Male,1950-03-06,66,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-04-03 11:44:55,2013-05-30 08:03:33,13006498MM10A,2013-04-03,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-04,Risk of Violence,1,Low,2013-04-04,2013-04-03,2013-05-30,2,56,1093,0,0,0\r\n8379,christopher sheehan,christopher,sheehan,2013-10-04,Male,1939-09-27,76,Greater than 45,Asian,0,1,0,0,0,-2,2013-10-02 12:20:37,2013-10-04 12:06:04,13013779CF10A,2013-10-01,,3,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-04,Risk of Violence,1,Low,2013-10-04,2013-10-02,2013-10-04,0,0,910,0,0,0\r\n8381,lesean mountain,lesean,mountain,2013-05-05,Male,1980-06-06,35,25 - 45,African-American,0,4,0,0,1,0,2013-05-05 01:29:39,2013-05-06 07:57:31,13008717MM10A,2013-05-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-05,Risk of Violence,4,Low,2013-05-05,2013-05-05,2013-05-06,1,1,1062,0,0,0\r\n8384,shawanna oussifi,shawanna,oussifi,2013-02-19,Female,1976-08-20,39,25 - 45,African-American,0,3,0,0,3,,,,12011145CF10A,2012-07-27,,207,F,Arson in the First Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-19,Risk of Violence,3,Low,2013-02-19,,,3,0,1137,0,0,0\r\n8386,hope roberts,hope,roberts,2013-09-05,Male,1991-12-12,24,Less than 25,African-American,0,5,0,0,0,-1,2013-09-04 07:48:04,2013-09-06 08:35:11,13012494CF10A,2013-09-04,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-05,Risk of Violence,5,Medium,2013-09-05,2013-09-04,2013-09-06,0,1,939,0,0,0\r\n8389,andrew sutton,andrew,sutton,2013-03-14,Male,1988-11-18,27,25 - 45,Caucasian,0,9,0,0,4,,,,12014025CF10A,2012-09-22,,173,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-14,Risk of Violence,9,High,2013-03-14,,,4,0,1114,0,0,0\r\n8390,joshua colon,joshua,colon,2013-02-22,Male,1979-07-06,36,25 - 45,Caucasian,0,3,0,0,0,-1,2013-02-21 09:36:26,2013-02-22 07:13:08,13002696CF10A,2013-02-21,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-22,Risk of Violence,4,Low,2013-02-22,2014-06-11,2014-06-18,0,0,474,0,0,0\r\n8403,shawn smith,shawn,smith,2014-09-23,Male,1996-07-10,19,Less than 25,African-American,0,4,0,0,0,-1,2014-09-22 08:28:34,2014-09-23 02:17:43,14012825CF10A,2014-09-22,,1,F,Resist Officer w/Violence,1,14015144MM10A,(M2),0,2014-10-16,Unlawful Assembly,2014-10-16,2014-12-12,,1,14015144MM10A,(M1),2014-10-16,Battery,Risk of Recidivism,4,Low,2014-09-23,Risk of Violence,7,Medium,2014-09-23,2014-10-16,2014-12-12,0,0,23,1,1,1\r\n8404,alfonso mendoza,alfonso,mendoza,2014-02-25,Male,1969-09-16,46,Greater than 45,Caucasian,0,1,0,0,1,,,,14002654CF10A,,2014-02-25,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,1,Low,2014-02-25,,,1,0,766,0,0,0\r\n8405,teddy burrows,teddy,burrows,2013-02-11,Male,1975-12-11,40,25 - 45,African-American,0,4,0,0,2,-1,2013-02-10 07:02:08,2013-02-11 10:55:14,13002057CF10A,2013-02-10,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-10,2013-02-11,2,0,1145,0,0,0\r\n8407,brandon poe,brandon,poe,2014-11-14,Male,1987-05-27,28,25 - 45,Caucasian,0,3,0,0,0,-1,2014-11-13 11:57:15,2014-11-14 01:49:54,14015228CF10A,2014-11-13,,1,F,Manufacture Cannabis,1,15005560CF10A,(F3),1,2015-04-28,Felony Battery (Dom Strang),2015-04-29,2015-12-22,,1,15005560CF10A,(F3),2015-04-28,Felony Battery (Dom Strang),Risk of Recidivism,3,Low,2014-11-14,Risk of Violence,2,Low,2014-11-14,2016-03-08,2016-03-29,0,0,165,1,1,1\r\n8408,hanyu wang,hanyu,wang,2013-10-06,Male,1988-12-26,27,25 - 45,Caucasian,0,2,0,0,0,-1,2013-10-05 12:18:21,2013-10-07 08:17:22,13018961MM10A,2013-10-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-06,Risk of Violence,3,Low,2013-10-06,2013-10-05,2013-10-07,0,1,908,0,0,0\r\n8411,brandon whitfield,brandon,whitfield,2013-09-26,Male,1990-12-09,25,25 - 45,African-American,0,6,0,0,7,-1,2013-09-25 01:18:58,2013-10-13 04:17:21,13013473CF10A,,2013-09-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-26,Risk of Violence,4,Low,2013-09-26,2013-09-25,2013-10-13,7,17,918,0,0,0\r\n8415,nicholas maczko,nicholas,maczko,2013-08-14,Male,1983-04-10,33,25 - 45,Caucasian,0,6,0,0,4,-56,2013-06-19 09:46:06,2013-08-14 10:00:59,13008670CF10A,2013-06-19,,56,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-14,Risk of Violence,5,Medium,2013-08-14,2014-08-13,2014-08-14,4,0,364,0,0,0\r\n8416,ampella guy,ampella,guy,2013-07-26,Female,1991-05-17,24,Less than 25,African-American,0,3,0,0,0,-2,2013-07-24 10:44:57,2013-07-25 08:44:12,13010385CF10A,2013-07-24,,2,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-26,Risk of Violence,3,Low,2013-07-26,2013-07-24,2013-07-25,0,0,980,0,0,0\r\n8418,neil elder,neil,elder,2013-04-17,Male,1971-11-06,44,25 - 45,Caucasian,0,7,0,0,0,-1,2013-04-16 04:51:29,2013-04-20 05:57:46,13005462CF10A,2013-04-16,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-17,Risk of Violence,4,Low,2013-04-17,2014-02-06,2014-03-17,0,3,295,0,0,0\r\n8419,eddie dean,eddie,dean,2013-10-20,Male,1972-04-11,44,25 - 45,African-American,0,1,0,0,0,-1,2013-10-19 10:50:50,2013-10-20 02:20:06,13014651CF10A,2013-10-19,,1,F,Felony/Driving Under Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-20,Risk of Violence,1,Low,2013-10-20,2013-10-19,2013-10-20,0,0,894,0,0,0\r\n8421,davahu barrett,davahu,barrett,2013-11-26,Female,1992-07-28,23,Less than 25,African-American,0,7,0,0,0,0,2013-11-26 03:42:42,2013-11-27 01:18:05,13022238MM10A,2013-11-26,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-26,Risk of Violence,5,Medium,2013-11-26,2013-11-26,2013-11-27,0,1,857,0,0,0\r\n8423,derrick pierre,derrick,pierre,2013-03-10,Male,1989-02-15,27,25 - 45,African-American,0,2,0,1,0,0,2013-03-10 12:16:08,2013-03-10 07:11:00,13003511CF10A,2013-03-09,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-10,Risk of Violence,3,Low,2013-03-10,2013-03-10,2013-03-10,0,0,1118,0,0,0\r\n8426,kevin dumey,kevin,dumey,2013-02-20,Male,1960-09-13,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-02-19 09:53:34,2013-02-20 06:33:27,13002524CF10A,2013-02-19,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-02-19,2013-02-20,0,0,1136,0,0,0\r\n8427,carlos santiago-ortiz,carlos,santiago-ortiz,2013-12-14,Male,1948-08-21,67,Greater than 45,Hispanic,0,1,0,0,0,,,,,,,,M,,1,15004901MM10A,(M1),0,2015-04-30,Battery,2015-04-30,2015-06-02,,1,15004901MM10A,(M1),2015-04-30,Battery,Risk of Recidivism,1,Low,2013-12-14,Risk of Violence,1,Low,2013-12-14,2015-04-30,2015-06-02,0,0,502,1,1,1\r\n8429,joseph mortenson,joseph,mortenson,2013-08-28,Male,1970-08-16,45,Greater than 45,Hispanic,0,6,0,0,6,630,2015-05-20 08:58:57,2015-06-30 07:07:00,12003092CF10A,,2012-11-16,285,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-28,Risk of Violence,4,Low,2013-08-28,2015-05-20,2015-06-30,6,0,630,0,0,0\r\n8434,jhony milo,jhony,milo,2014-09-27,Male,1981-04-22,34,25 - 45,African-American,0,8,0,0,0,-1,2014-09-26 02:13:08,2014-10-29 10:16:27,14013051CF10A,2014-09-26,,1,F,Possession of Cocaine,1,15005640CF10A,(F3),,2015-02-08,Aggravated Assault w/Firearm,,,,1,15005640CF10A,(F3),2015-02-08,Aggravated Assault w/Firearm,Risk of Recidivism,8,High,2014-09-27,Risk of Violence,3,Low,2014-09-27,2014-09-26,2014-10-29,0,32,134,1,1,1\r\n8435,jabari hopkins,jabari,hopkins,2013-10-08,Male,1991-12-18,24,Less than 25,African-American,0,2,0,0,1,-1,2013-10-07 09:18:48,2013-10-08 02:16:44,13014080CF10A,,2013-10-07,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-08,Risk of Violence,3,Low,2013-10-08,2014-01-07,2014-01-16,1,0,91,0,0,0\r\n8437,emonte banks,emonte,banks,2013-12-23,Male,1974-01-01,42,25 - 45,African-American,0,1,0,0,7,-1,2013-12-22 09:32:59,2013-12-23 01:56:25,13017620CF10A,2013-12-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-22,2013-12-23,7,0,830,0,0,0\r\n8439,daniel castellanos,daniel,castellanos,2014-01-09,Male,1985-05-24,30,25 - 45,Hispanic,0,4,0,0,3,-6,2014-01-03 05:18:54,2014-01-05 08:02:37,14006367MU10A,2014-01-03,,6,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-09,Risk of Violence,5,Medium,2014-01-09,2014-01-03,2014-01-05,3,0,813,0,0,0\r\n8440,marco nicholls,marco,nicholls,2013-05-02,Male,1975-08-20,40,25 - 45,Caucasian,0,4,0,0,6,-1,2013-05-01 09:47:42,2013-05-02 04:48:43,13006265CF10A,2013-05-01,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-02,Risk of Violence,2,Low,2013-05-02,2015-10-15,2015-10-22,6,0,896,0,0,0\r\n8445,lee quinones,lee,quinones,2013-02-21,Male,1992-02-09,24,Less than 25,Hispanic,0,8,0,0,1,,,,11014564CF10A,,2012-12-26,57,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-21,Risk of Violence,7,Medium,2013-02-21,,,1,0,1135,0,0,0\r\n8446,mahmud lama,mahmud,lama,2013-12-23,Male,1992-04-07,24,Less than 25,Asian,0,6,0,0,4,-120,2013-08-25 07:02:49,2013-08-25 07:53:53,13012008CF10A,,2013-12-04,19,F,arrest case no charge,1,14015095MM10A,(M1),0,2014-10-15,Battery,2014-10-15,2014-10-15,,1,14015095MM10A,(M1),2014-10-15,Battery,Risk of Recidivism,6,Medium,2013-12-23,Risk of Violence,4,Low,2013-12-23,2014-10-15,2014-10-15,4,0,296,0,1,1\r\n8447,ryan whittaker,ryan,whittaker,2013-08-07,Male,1985-10-28,30,25 - 45,Other,0,9,0,0,13,-1,2013-08-06 03:52:47,2013-08-07 08:20:36,13010996CF10A,2013-08-06,,1,F,Deliver Cannabis,1,13012138CF10A,(M2),0,2013-08-28,Susp Drivers Lic 1st Offense,2013-08-28,2013-08-30,,1,13012138CF10A,(F2),2013-08-28,Agg Fleeing/Eluding High Speed,Risk of Recidivism,9,High,2013-08-07,Risk of Violence,5,Medium,2013-08-07,2013-08-28,2013-08-30,13,0,21,1,1,1\r\n8448,davon walthour,davon,walthour,2013-04-05,Male,1985-04-26,30,25 - 45,African-American,0,3,0,0,4,326,2014-02-25 10:46:58,2014-03-03 09:21:12,13004803CF10A,2013-04-03,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-05,Risk of Violence,2,Low,2013-04-05,2014-02-25,2014-03-03,4,0,326,0,0,0\r\n8452,louis matrone,louis,matrone,2013-05-29,Male,1989-02-15,27,25 - 45,Caucasian,0,3,0,0,1,-1,2013-05-28 05:17:39,2013-06-28 12:05:32,13010246MM10A,2013-05-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-29,Risk of Violence,4,Low,2013-05-29,2013-05-28,2013-06-28,1,30,1038,0,0,0\r\n8456,dwayne haynes,dwayne,haynes,2013-01-28,Male,1978-07-03,37,25 - 45,African-American,0,3,0,0,3,-1,2013-01-27 04:36:41,2013-04-18 02:31:15,13001927MM10A,2013-01-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-28,Risk of Violence,2,Low,2013-01-28,2013-01-27,2013-04-18,3,80,1159,0,0,0\r\n8457,glendel paul,glendel,paul,2014-03-11,Male,1990-07-18,25,25 - 45,African-American,0,2,0,0,1,0,2014-03-11 05:37:31,2014-03-11 08:37:39,14003435CF10A,2014-03-11,,0,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-11,Risk of Violence,3,Low,2014-03-11,2014-03-11,2014-03-11,1,0,752,0,0,0\r\n8458,lulio calderon,lulio,calderon,2014-02-03,Male,1970-09-19,45,Greater than 45,Caucasian,0,1,0,0,2,-1,2014-02-02 08:57:44,2014-02-10 08:22:26,14000557CF10A,,2014-02-03,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-02,2014-02-10,2,7,788,0,0,0\r\n8462,leonard renta,leonard,renta,2013-09-03,Male,1984-06-30,31,25 - 45,Caucasian,0,5,0,0,1,-3,2013-08-31 09:04:51,2013-09-01 02:06:30,13012320CF10A,2013-08-31,,3,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-03,Risk of Violence,2,Low,2013-09-03,2013-08-31,2013-09-01,1,0,941,0,0,0\r\n8463,roy brooks,roy,brooks,2013-04-07,Male,1992-07-04,23,Less than 25,African-American,0,5,0,0,0,-1,2013-04-06 09:06:58,2013-04-10 05:44:03,13004945CF10A,2013-04-06,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-07,Risk of Violence,8,High,2013-04-07,2013-04-06,2013-04-10,0,3,1090,0,0,0\r\n8465,anthony barrow,anthony,barrow,2014-03-10,Male,1995-02-08,21,Less than 25,African-American,0,4,0,0,0,0,2014-03-10 04:22:06,2014-03-12 11:18:43,14003376CF10A,2014-03-10,,0,F,Possession Firearm School Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-10,Risk of Violence,8,High,2014-03-10,2014-03-10,2014-03-12,0,2,753,0,0,0\r\n8468,darriss cooper,darriss,cooper,2013-08-19,Male,1980-10-14,35,25 - 45,African-American,0,1,0,0,0,-1,2013-08-18 11:38:41,2013-08-19 06:55:15,13011587CF10A,2013-08-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-19,0,0,956,0,0,0\r\n8475,jillian slone,jillian,slone,2013-11-18,Female,1983-07-21,32,25 - 45,Caucasian,0,2,0,0,5,-29,2013-10-20 11:26:38,2013-10-25 01:43:47,13008795CF10A,2013-06-22,,149,F,Burglary Dwelling Assault/Batt,1,16013758TC30A,(M2),,2016-02-29,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-18,Risk of Violence,2,Low,2013-11-18,2013-10-20,2013-10-25,5,0,833,1,0,0\r\n8476,danny farmer,danny,farmer,2013-08-21,Male,1963-06-24,52,Greater than 45,Caucasian,0,1,0,0,2,-44,2013-07-08 12:45:06,2013-08-09 11:20:21,13012897MM10A,2013-07-07,,45,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-21,Risk of Violence,1,Low,2013-08-21,2013-10-16,2013-12-09,2,0,56,0,0,0\r\n8477,troy fountain,troy,fountain,2013-11-23,Male,1990-08-11,25,25 - 45,African-American,0,4,0,0,2,-1,2013-11-22 08:30:44,2013-11-23 10:09:46,13016257CF10A,,2013-11-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-23,Risk of Violence,4,Low,2013-11-23,2015-03-10,2015-03-14,2,0,472,0,0,0\r\n8478,edward willis,edward,willis,2014-02-11,Male,1981-09-16,34,25 - 45,Caucasian,0,7,1,0,15,-1,2014-02-10 11:36:28,2014-02-11 12:32:43,14001876CF10A,2014-02-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-11,Risk of Violence,6,Medium,2014-02-11,2014-02-10,2014-02-11,15,0,780,0,0,0\r\n8482,emerey boddie,emerey,boddie,2013-07-16,Male,1965-06-22,50,Greater than 45,African-American,0,9,0,0,9,,,,12018201CF10A,2012-12-13,,215,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-07-16,Risk of Violence,7,Medium,2013-07-16,1999-07-13,2000-06-05,9,0,990,0,0,0\r\n8483,princess walker,princess,walker,2013-10-20,Female,1985-10-15,30,25 - 45,African-American,0,5,0,0,4,-1,2013-10-19 07:52:55,2013-10-20 08:37:47,13014631CF10A,2013-10-19,,1,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-20,Risk of Violence,2,Low,2013-10-20,2013-10-19,2013-10-20,4,0,894,0,0,0\r\n8487,brian carter,brian,carter,2013-04-08,Male,1978-11-07,37,25 - 45,Caucasian,0,8,0,0,3,-1,2013-04-07 05:57:47,2013-12-05 05:48:25,13004968CF10A,2013-04-07,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-08,Risk of Violence,5,Medium,2013-04-08,2014-04-25,2014-05-12,3,241,382,0,0,0\r\n8488,cedrick martin,cedrick,martin,2013-02-14,Male,1978-10-29,37,25 - 45,African-American,0,5,0,0,8,-1,2013-02-13 06:27:07,2013-02-14 08:49:30,13003211MM10A,2013-02-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-14,Risk of Violence,5,Medium,2013-02-14,2013-02-13,2013-02-14,8,0,1142,0,0,0\r\n8494,madeline cuello,madeline,cuello,2013-03-22,Female,1985-04-03,31,25 - 45,Caucasian,0,2,0,0,0,0,2013-03-22 12:00:37,2013-03-26 09:46:03,13005575MM10A,2013-03-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-22,Risk of Violence,2,Low,2013-03-22,2013-03-22,2013-03-26,0,4,1106,0,0,0\r\n8500,keandre owens,keandre,owens,2013-01-18,Male,1993-10-27,22,Less than 25,African-American,0,7,0,0,0,-1,2013-01-17 01:22:02,2013-03-08 04:39:17,13000825CF10A,2013-01-17,,1,F,Burglary Unoccupied Dwelling,1,13022001MM10A,(M1),0,2013-11-22,Petit Theft $100- $300,2013-11-22,2013-12-11,,1,14009268CF10A,(F2),2014-06-21,Robbery / No Weapon,Risk of Recidivism,7,Medium,2013-01-18,Risk of Violence,7,Medium,2013-01-18,2013-11-22,2013-12-11,0,49,308,1,1,1\r\n8503,michael mitchell,michael,mitchell,2013-03-19,Male,1985-05-14,30,25 - 45,African-American,0,2,0,0,1,-1,2013-03-18 11:22:54,2013-03-19 06:38:59,13005331MM10A,2013-03-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-19,Risk of Violence,3,Low,2013-03-19,2013-03-18,2013-03-19,1,0,1109,0,0,0\r\n8507,james jahmekie,james,jahmekie,2014-03-02,Female,1995-06-01,20,Less than 25,Other,0,4,0,0,1,-1,2014-03-01 08:06:39,2014-03-02 08:12:02,14003538MM10A,2014-03-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-02,Risk of Violence,6,Medium,2014-03-02,2014-03-01,2014-03-02,1,0,761,0,0,0\r\n8508,anton anderson,anton,anderson,2013-04-10,Male,1986-09-11,29,25 - 45,African-American,0,2,0,0,0,0,2013-04-10 04:22:08,2013-04-11 05:07:05,13006967MM10A,2013-04-10,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,3,Low,2013-04-10,2013-04-10,2013-04-11,0,1,1087,0,0,0\r\n8511,christopher everhardt,christopher,everhardt,2014-01-07,Male,1991-04-20,24,Less than 25,Caucasian,0,3,0,0,0,-1,2014-01-06 04:11:19,2014-01-08 10:45:03,14000242CF10A,2014-01-06,,1,F,Falsely Impersonating Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-07,Risk of Violence,4,Low,2014-01-07,2014-01-06,2014-01-08,0,1,815,0,0,0\r\n8514,corinne brainard,corinne,brainard,2013-01-11,Female,1969-12-07,46,Greater than 45,Caucasian,0,1,0,0,1,339,2013-12-16 07:59:35,2014-01-16 09:49:15,12025316MM10A,2012-12-12,,30,M,Battery,1,13017367CF10A,(F2),0,2013-12-16,Aggravated Battery,2013-12-16,2014-01-16,,1,13017367CF10A,(F2),2013-12-16,Aggravated Battery,Risk of Recidivism,1,Low,2013-01-11,Risk of Violence,1,Low,2013-01-11,2013-12-16,2014-01-16,1,0,339,1,1,1\r\n8515,ghislene muselaire,ghislene,muselaire,2013-12-15,Female,1979-07-24,36,25 - 45,African-American,0,2,0,0,1,-1,2013-12-14 05:59:59,2013-12-15 09:13:09,13017299CF10A,2013-12-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-15,Risk of Violence,1,Low,2013-12-15,2013-12-14,2013-12-15,1,0,838,0,0,0\r\n8517,jovanni thorpe,jovanni,thorpe,2014-05-22,Male,1992-06-28,23,Less than 25,African-American,0,3,0,0,0,-1,2014-05-21 02:29:44,2014-05-22 01:55:58,14008229MM10A,2014-05-21,,1,M,Battery,1,15003369CF10A,(F2),0,2015-03-12,Robbery W/Firearm,2015-03-12,2015-09-21,,1,15003369CF10A,(F2),2015-03-12,Robbery W/Firearm,Risk of Recidivism,3,Low,2014-05-22,Risk of Violence,4,Low,2014-05-22,2015-03-12,2015-09-21,0,0,294,1,1,1\r\n8520,alain williams,alain,williams,2014-04-24,Male,1986-12-12,29,25 - 45,African-American,0,6,0,0,6,-1,2014-04-23 02:44:54,2014-04-24 03:44:57,14005681CF10A,2014-04-23,,1,F,Felony Driving While Lic Suspd,1,14069046TC40A,(M2),,2014-10-05,DWLS Canceled Disqul 1st Off,,,,1,14013798CF10A,(F3),2014-10-12,Battery on Law Enforc Officer,Risk of Recidivism,6,Medium,2014-04-24,Risk of Violence,5,Medium,2014-04-24,2014-10-12,2014-11-13,6,0,164,1,1,1\r\n8523,stephanie velasquez,stephanie,velasquez,2013-03-25,Female,1994-01-11,22,Less than 25,Hispanic,0,4,0,0,1,-4,2013-03-21 09:23:27,2013-03-22 08:46:08,13004122CF10A,2013-03-21,,4,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-25,Risk of Violence,5,Medium,2013-03-25,2013-03-21,2013-03-22,1,0,1103,0,0,0\r\n8524,jeffrey steele,jeffrey,steele,2014-01-04,Male,1987-01-20,29,25 - 45,African-American,0,5,0,0,4,-1,2014-01-03 08:50:29,2014-01-04 08:41:19,14000153MM10A,2014-01-03,,1,M,Assault,1,16008462TC20A,(M2),,2016-02-10,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-04,Risk of Violence,6,Medium,2014-01-04,2014-01-03,2014-01-04,4,0,767,1,0,0\r\n8526,daphne robinson,daphne,robinson,2013-09-19,Female,1989-10-14,26,25 - 45,African-American,0,9,0,0,0,-6,2013-09-13 01:13:58,2013-09-19 11:14:04,13012957CF10A,2013-09-13,,6,M,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-19,Risk of Violence,7,Medium,2013-09-19,2013-11-04,2013-11-08,0,0,46,0,0,0\r\n8528,levon mack,levon,mack,2013-11-01,Male,1984-02-04,32,25 - 45,African-American,0,2,0,0,1,-1,2013-10-31 10:30:22,2014-02-07 04:46:55,13015202CF10A,2013-10-31,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-01,Risk of Violence,2,Low,2013-11-01,2013-10-31,2014-02-07,1,98,882,0,0,0\r\n8530,luis gaitan,luis,gaitan,2014-02-23,Male,1970-10-15,45,Greater than 45,Hispanic,0,1,0,0,0,0,2014-02-23 02:42:34,2014-02-24 12:17:32,14002557CF10A,2014-02-22,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-23,Risk of Violence,1,Low,2014-02-23,2016-01-14,2016-01-25,0,1,690,0,0,0\r\n8532,jamal hanna,jamal,hanna,2013-10-17,Male,1986-01-17,30,25 - 45,African-American,0,2,0,0,1,-1,2013-10-16 08:02:20,2014-01-08 01:09:58,13014486CF10A,2013-10-16,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-17,Risk of Violence,2,Low,2013-10-17,2013-10-16,2014-01-08,1,83,897,0,0,0\r\n8533,jude ferdinand,jude,ferdinand,2013-04-20,Male,1990-06-29,25,25 - 45,African-American,0,5,0,0,0,-1,2013-04-19 08:44:54,2013-04-20 07:40:27,13005610CF10A,2013-04-19,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-20,Risk of Violence,4,Low,2013-04-20,2013-04-19,2013-04-20,0,0,1077,0,0,0\r\n8539,robertson mondestin,robertson,mondestin,2014-03-04,Male,1991-11-03,24,Less than 25,African-American,0,6,0,0,5,0,2014-03-04 12:52:41,2014-03-04 09:07:07,14003000CF10A,2014-03-03,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-04,Risk of Violence,4,Low,2014-03-04,2015-05-22,2015-05-24,5,0,444,0,0,0\r\n8544,david lawrence,david,lawrence,2014-01-27,Male,1986-05-14,29,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-26 06:15:41,2014-01-27 01:32:18,14001456MM10A,2014-01-26,,1,M,Battery,1,14008045MM10A,(M1),0,2014-05-17,Viol Pretrial Release Dom Viol,2014-05-17,2014-05-23,,1,14008045MM10A,(M1),2014-05-17,Battery,Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,2,Low,2014-01-27,2014-05-17,2014-05-23,0,0,110,1,1,1\r\n8546,john rentas,john,rentas,2014-03-02,Male,1994-09-08,21,Less than 25,Caucasian,0,5,0,0,1,-1,2014-03-01 04:36:34,2014-03-02 04:12:07,14004735MM10A,,2014-03-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-02,Risk of Violence,4,Low,2014-03-02,2015-04-09,2015-04-10,1,0,403,0,0,0\r\n8548,christopher bynes,christopher,bynes,2013-08-13,Male,1977-08-07,38,25 - 45,African-American,1,9,2,2,22,-34,2013-07-10 07:07:35,2013-07-11 04:34:30,13002336MM20A,2013-07-29,,15,M,Possess Cannabis/20 Grams Or Less,1,15002318CF10A,(F1),0,2015-02-19,Tampering with a Victim,2015-02-19,2015-04-09,,1,15002318CF10A,(F2),2015-02-19,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2013-08-13,Risk of Violence,9,High,2013-08-13,2013-11-04,2013-11-23,22,0,83,0,1,1\r\n8550,rolando diaz,rolando,diaz,2013-06-21,Male,1953-09-15,62,Greater than 45,Hispanic,0,2,0,0,5,59,2013-08-19 03:24:25,2013-09-12 10:31:00,11020604CF10A,2011-12-20,,549,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-21,Risk of Violence,2,Low,2013-06-21,2013-08-19,2013-09-12,5,0,59,0,0,0\r\n8551,constance chapin,constance,chapin,2013-10-25,Female,1969-12-13,46,Greater than 45,Caucasian,0,1,0,0,1,-30,2013-09-25 12:39:53,2013-10-25 10:50:37,06011505CF10A,,2013-09-25,30,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-25,Risk of Violence,1,Low,2013-10-25,2016-01-23,2016-01-24,1,0,820,0,0,0\r\n8560,stephen sisson,stephen,sisson,2013-10-15,Male,1968-06-19,47,Greater than 45,Caucasian,0,1,0,0,2,-30,2013-09-15 05:58:40,2013-10-13 02:50:10,13017551MM10A,2013-09-15,,30,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-15,Risk of Violence,1,Low,2013-10-15,2015-01-06,2015-02-24,2,0,448,0,0,0\r\n8563,jose alvarado,jose,alvarado,2014-03-21,Male,1988-12-24,27,25 - 45,Hispanic,0,2,0,0,1,-41,2014-02-08 09:14:47,2014-02-09 07:46:15,14005083MU10A,2014-02-08,,41,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-21,Risk of Violence,3,Low,2014-03-21,2014-02-08,2014-02-09,1,0,742,0,0,0\r\n8565,rony nordelus,rony,nordelus,2014-06-16,Male,1986-02-24,30,25 - 45,African-American,0,10,0,0,13,-1,2014-06-15 06:51:59,2015-10-03 06:50:34,15013973CF10A,2014-06-15,,1,F,Felony Battery,1,15014230CF10A,(F3),,2015-10-01,Felony Battery,,,,1,15014230CF10A,(F3),2015-10-01,Felony Battery,Risk of Recidivism,10,High,2014-06-16,Risk of Violence,7,Medium,2014-06-16,2014-06-15,2015-10-03,13,0,472,1,1,1\r\n8569,ian joseph,ian,joseph,2013-09-04,Male,1967-04-24,48,Greater than 45,Caucasian,0,1,0,0,2,-43,2013-07-23 11:29:22,2013-07-27 09:26:10,13010337CF10A,2013-07-23,,43,F,Possession of Oxycodone,1,14001702MM20A,(M1),77,2014-04-24,Battery,2014-07-10,2014-07-15,,1,14001702MM20A,(M1),2014-04-24,Battery,Risk of Recidivism,1,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2014-12-15,2014-12-16,2,0,232,1,1,1\r\n8572,henry joseph,henry,joseph,2013-09-26,Male,1989-12-18,26,25 - 45,African-American,0,5,0,0,2,-26,2013-08-31 05:25:20,2013-09-02 08:15:01,11024059MM10A,2011-10-27,,700,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-26,Risk of Violence,5,Medium,2013-09-26,2013-08-31,2013-09-02,2,0,918,0,0,0\r\n8574,margery grindstaff,margery,grindstaff,2014-03-18,Female,1973-05-26,42,25 - 45,Caucasian,0,2,0,0,0,-1,2014-03-17 10:13:17,2014-03-18 01:20:01,14010520MU10A,2014-03-17,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-18,Risk of Violence,1,Low,2014-03-18,2014-03-17,2014-03-18,0,0,745,0,0,0\r\n8575,ryan lennox,ryan,lennox,2014-03-06,Male,1982-03-13,34,25 - 45,African-American,0,2,0,0,1,-1,2014-03-05 08:17:11,2014-03-07 11:03:13,14003797MM10A,2014-03-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-06,Risk of Violence,2,Low,2014-03-06,2014-03-05,2014-03-07,1,1,757,0,0,0\r\n8577,eveline rosenberg,eveline,rosenberg,2013-02-04,Female,1946-09-04,69,Greater than 45,Caucasian,0,1,0,0,2,0,2013-02-04 05:06:23,2013-02-04 12:44:20,13002543MM10A,2013-02-04,,0,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-02-04,2013-02-04,2,0,1152,0,0,0\r\n8578,frank fasano,frank,fasano,2013-12-11,Male,1992-02-06,24,Less than 25,Caucasian,0,5,0,1,5,-22,2013-11-19 12:51:43,2013-11-25 10:05:19,13010875CF10A,,2013-11-19,22,F,arrest case no charge,1,15009389MM10A,(M1),0,2015-09-04,Battery,2015-09-04,2015-09-05,,1,15009389MM10A,(M1),2015-09-04,Battery,Risk of Recidivism,5,Medium,2013-12-11,Risk of Violence,6,Medium,2013-12-11,2015-09-04,2015-09-05,5,0,632,1,1,1\r\n8579,steven henry,steven,henry,2013-02-24,Male,1971-02-15,45,Greater than 45,African-American,0,1,0,0,1,-1,2013-02-23 07:57:28,2013-02-24 06:47:57,13003778MM10A,2013-02-23,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-24,Risk of Violence,3,Low,2013-02-24,2013-02-23,2013-02-24,1,0,1132,0,0,0\r\n8580,robert ellis,robert,ellis,2013-05-23,Male,1987-09-14,28,25 - 45,African-American,0,9,0,0,3,264,2014-02-11 12:42:55,2014-04-29 05:19:39,13001013MM20A,2013-04-04,,49,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-23,Risk of Violence,7,Medium,2013-05-23,2014-02-11,2014-04-29,3,0,264,0,0,0\r\n8586,sabrina khan,sabrina,khan,2014-02-20,Male,1964-03-25,52,Greater than 45,African-American,0,1,0,0,2,-1,2014-02-19 05:45:59,2014-03-02 01:23:10,14006513MU10A,2014-02-19,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-20,Risk of Violence,1,Low,2014-02-20,2014-03-20,2014-04-08,2,10,28,0,0,0\r\n8589,uberne gonzalez,uberne,gonzalez,2014-03-03,Male,1986-01-16,30,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-02 12:10:27,2014-03-03 01:31:13,14002940CF10A,2014-03-02,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,2,Low,2014-03-03,2014-03-02,2014-03-03,0,0,760,0,0,0\r\n8590,ariane rozo,ariane,rozo,2014-03-24,Female,1989-10-12,26,25 - 45,Hispanic,0,3,0,0,0,0,2014-03-24 02:58:23,2014-03-24 08:45:46,14005079MM10A,2014-03-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-24,Risk of Violence,3,Low,2014-03-24,2014-03-24,2014-03-24,0,0,739,0,0,0\r\n8594,brian genhold,brian,genhold,2013-12-10,Male,1984-02-09,32,25 - 45,Caucasian,0,7,1,0,5,145,2014-05-04 12:07:22,2014-06-10 10:31:22,12010779CF10A,,2013-10-21,50,F,arrest case no charge,1,14007372MM10A,(M1),0,2014-05-04,Battery,2014-05-04,2014-06-10,,1,14007372MM10A,(M1),2014-05-04,Battery,Risk of Recidivism,7,Medium,2013-12-10,Risk of Violence,2,Low,2013-12-10,2014-05-04,2014-06-10,5,0,145,1,1,1\r\n8595,randy jarnagin,randy,jarnagin,2013-12-11,Male,1968-07-26,47,Greater than 45,Caucasian,0,4,0,0,11,-104,2013-08-29 03:57:46,2013-11-27 02:11:58,13012219CF10A,2013-08-29,,104,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-11,Risk of Violence,3,Low,2013-12-11,2014-03-27,2014-05-22,11,0,106,0,0,0\r\n8597,terrance anderson,terrance,anderson,2013-03-14,Male,1983-07-28,32,25 - 45,African-American,0,10,0,0,2,-58,2013-01-15 12:17:30,2013-02-12 09:57:00,09008167CF10A,,2013-01-15,58,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-03-14,Risk of Violence,7,Medium,2013-03-14,2013-07-19,2013-10-21,2,0,127,0,0,0\r\n8600,reynaldo meneses,reynaldo,meneses,2013-10-10,Male,1985-12-14,30,25 - 45,Hispanic,0,1,0,0,0,0,2013-10-10 01:33:46,2013-10-10 08:40:26,13019271MM10A,2013-10-09,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-10,Risk of Violence,1,Low,2013-10-10,2013-10-10,2013-10-10,0,0,904,0,0,0\r\n8604,nashley adelphon,nashley,adelphon,2013-03-12,Female,1993-10-09,22,Less than 25,African-American,0,6,0,0,0,0,2013-03-12 03:02:14,2013-03-13 08:18:53,13003622CF10A,2013-03-11,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-12,Risk of Violence,7,Medium,2013-03-12,2013-03-12,2013-03-13,0,1,1116,0,0,0\r\n8605,travoy flores,travoy,flores,2013-10-15,Male,1980-07-09,35,25 - 45,African-American,0,3,0,0,6,-1,2013-10-14 07:50:41,2013-10-15 01:24:28,13008071CF10A,,2013-10-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-15,Risk of Violence,3,Low,2013-10-15,2013-10-14,2013-10-15,6,0,899,0,0,0\r\n8608,shawn williams,shawn,williams,2013-04-03,Male,1980-09-25,35,25 - 45,African-American,0,6,0,0,1,-1,2013-04-02 05:26:56,2013-06-05 09:30:05,13006367MM10A,2013-04-02,,1,M,Battery,1,15009310CF10A,(F3),0,2015-06-16,Felony Battery,2015-06-16,2015-09-21,,1,15009310CF10A,(F3),2015-06-16,Felony Battery,Risk of Recidivism,6,Medium,2013-04-03,Risk of Violence,5,Medium,2013-04-03,2015-06-16,2015-09-21,1,63,804,1,0,0\r\n8609,keenan holden,keenan,holden,2013-02-23,Male,1990-12-01,25,25 - 45,African-American,0,6,0,0,2,-1,2013-02-22 09:54:24,2013-02-23 08:54:17,13002763CF10A,2013-02-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-23,Risk of Violence,4,Low,2013-02-23,2013-02-22,2013-02-23,2,0,1133,0,0,0\r\n8610,william forester,william,forester,2013-07-29,Male,1957-09-14,58,Greater than 45,Caucasian,0,2,0,0,3,-4,2013-07-25 12:57:53,2013-07-25 09:15:58,12003284MO40A,2012-06-29,,395,M,Carry Open/Uncov Bev In Pub,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-07-25,2013-07-25,3,0,977,0,0,0\r\n8613,anthony gonzalez,anthony,gonzalez,2013-04-10,Male,1982-08-26,33,25 - 45,Caucasian,0,2,0,0,2,-23,2013-03-18 04:53:59,2013-03-18 06:31:57,13005336MM10A,2013-03-18,,23,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,2,Low,2013-04-10,2013-03-18,2013-03-18,2,0,1087,0,0,0\r\n8616,karl ehlen,karl,ehlen,2013-04-08,Male,1972-04-06,44,25 - 45,Caucasian,0,3,0,0,4,-1,2013-04-07 07:17:55,2013-04-08 07:34:18,13005022CF10A,2013-04-07,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-08,Risk of Violence,4,Low,2013-04-08,2013-04-07,2013-04-08,4,0,1089,0,0,0\r\n8617,cato delay,cato,delay,2013-11-12,Male,1985-09-17,30,25 - 45,African-American,0,5,0,0,3,-1,2013-11-11 06:16:38,2013-11-13 09:55:31,13015685CF10A,2013-11-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-12,Risk of Violence,3,Low,2013-11-12,2013-11-11,2013-11-13,3,1,871,0,0,0\r\n8618,carmen ortiz,carmen,ortiz,2014-01-04,Female,1976-04-20,39,25 - 45,Hispanic,0,2,0,0,2,0,2014-01-04 09:26:15,2014-01-11 04:40:09,10011278CF10A,,2014-01-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-04,Risk of Violence,1,Low,2014-01-04,2014-01-04,2014-01-11,2,7,818,0,0,0\r\n8619,michael accetta,michael,accetta,2013-03-30,Male,1988-03-17,28,25 - 45,Caucasian,0,3,0,0,0,-1,2013-03-29 11:03:56,2013-03-30 08:06:57,13004543CF10A,2013-03-29,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-30,Risk of Violence,2,Low,2013-03-30,2013-03-29,2013-03-30,0,0,1098,0,0,0\r\n8621,ricardo philibert,ricardo,philibert,2013-09-21,Male,1981-07-22,34,25 - 45,African-American,0,2,0,0,1,-1,2013-09-20 07:19:58,2013-09-21 08:53:51,13013281CF10A,2013-09-20,,1,F,Purchase Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-21,Risk of Violence,2,Low,2013-09-21,2013-09-20,2013-09-21,1,0,923,0,0,0\r\n8622,dwayne schneider,dwayne,schneider,2014-08-29,Male,1989-04-27,26,25 - 45,African-American,0,8,0,0,1,-30,2014-07-30 01:18:15,2014-08-03 10:39:29,13016474CF10A,,2014-07-30,30,F,arrest case no charge,1,14015982CF10A,(F3),0,2014-11-30,Possession of Ethylone,2014-11-30,2015-01-30,,1,15016426CF10A,(F2),2015-12-14,Robbery / No Weapon,Risk of Recidivism,8,High,2014-08-29,Risk of Violence,5,Medium,2014-08-29,2014-10-23,2014-10-31,1,0,55,0,1,1\r\n8625,ricky lipsey,ricky,lipsey,2014-03-15,Male,1993-02-15,23,Less than 25,African-American,0,2,0,0,0,-1,2014-03-14 01:21:01,2014-03-16 03:52:46,14003626CF10A,2014-03-14,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-15,Risk of Violence,3,Low,2014-03-15,2014-03-14,2014-03-16,0,1,748,0,0,0\r\n8627,bryon williams,bryon,williams,2013-12-22,Male,1984-08-11,31,25 - 45,African-American,0,4,0,0,0,-1,2013-12-21 10:04:52,2013-12-22 01:15:23,13023542MM10A,2013-12-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-22,Risk of Violence,4,Low,2013-12-22,2013-12-21,2013-12-22,0,0,831,0,0,0\r\n8629,westgard buting,westgard,buting,2013-09-30,Male,1977-09-06,38,25 - 45,Other,0,1,0,0,1,-1,2013-09-29 09:18:50,2013-09-30 08:38:57,13012760CF10A,,2013-09-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-29,2013-09-30,1,0,914,0,0,0\r\n8634,brian bradley,brian,bradley,2013-09-30,Male,1971-05-11,44,25 - 45,African-American,0,1,0,0,0,-1,2013-09-29 07:10:37,2013-09-30 08:52:46,13013664CF10A,2013-09-29,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-29,2013-09-30,0,0,914,0,0,0\r\n8635,clive brown,clive,brown,2013-12-30,Male,1963-06-19,52,Greater than 45,African-American,0,1,0,0,0,0,2013-12-30 05:17:53,2013-12-31 07:54:52,13017973CF10A,2013-12-30,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-30,Risk of Violence,1,Low,2013-12-30,2013-12-30,2013-12-31,0,1,823,0,0,0\r\n8638,mark fletcher,mark,fletcher,2013-08-15,Male,1984-08-02,31,25 - 45,African-American,0,8,0,0,9,0,2013-08-15 04:24:41,2013-08-16 03:24:28,13011466CF10A,2013-08-15,,0,F,Aggravated Battery / Pregnant,1,13022368MM10A,(M1),0,2013-12-01,Resist/Obstruct W/O Violence,2013-12-01,2013-12-02,,1,14011020MM10A,(M1),2014-07-18,Battery,Risk of Recidivism,8,High,2013-08-15,Risk of Violence,6,Medium,2013-08-15,2013-12-01,2013-12-02,9,1,108,1,1,1\r\n8639,alexis parker,alexis,parker,2013-04-24,Female,1995-01-18,21,Less than 25,African-American,0,6,1,0,2,-12,2013-04-12 02:01:58,2013-04-24 10:40:53,13005322CF10A,2013-04-12,,12,F,Deliver Cannabis,1,15059734TC30A,(M2),,2015-08-31,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-24,Risk of Violence,7,Medium,2013-04-24,2013-04-12,2013-04-24,2,0,859,1,0,0\r\n8641,lalo munoz,lalo,munoz,2013-08-19,Male,1938-10-11,77,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-08-18 02:09:06,2013-08-21 08:28:16,13015622MM10A,2013-08-17,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-21,1,2,956,0,0,0\r\n8642,vincent defazio,vincent,defazio,2013-10-18,Male,1955-01-12,61,Greater than 45,Caucasian,0,6,0,0,4,-1,2013-10-17 04:38:42,2014-02-13 04:11:09,13014549CF10A,2013-10-17,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-18,Risk of Violence,5,Medium,2013-10-18,2013-10-17,2014-02-13,4,118,896,0,0,0\r\n8644,yolanda hoff,yolanda,hoff,2013-11-22,Female,1974-10-01,41,25 - 45,African-American,0,1,0,0,0,-1,2013-11-21 10:10:58,2013-11-22 09:18:22,13021928MM10A,2013-11-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-22,Risk of Violence,1,Low,2013-11-22,2013-11-21,2013-11-22,0,0,861,0,0,0\r\n8646,nicole shaver,nicole,shaver,2013-11-21,Female,1991-10-09,24,Less than 25,Caucasian,0,5,0,0,0,-1,2013-11-20 06:49:02,2013-11-21 07:48:03,13021845MM10A,2013-11-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-21,Risk of Violence,4,Low,2013-11-21,2013-11-20,2013-11-21,0,0,862,0,0,0\r\n8647,natalie dixon,natalie,dixon,2013-04-17,Female,1981-11-07,34,25 - 45,African-American,0,3,0,0,5,-1,2013-04-16 01:11:17,2013-04-17 05:45:35,13001202CF10A,,2013-04-16,1,F,arrest case no charge,1,15007079CF10A,(F3),0,2015-05-30,Grand Theft in the 3rd Degree,2015-05-30,2015-05-31,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,3,Low,2013-04-17,2013-12-29,2013-12-30,5,0,256,0,0,0\r\n8650,javier falcon,javier,falcon,2013-02-06,Male,1988-06-12,27,25 - 45,Hispanic,0,3,0,0,1,0,2013-02-06 03:25:28,2013-02-07 03:05:17,13001843CF10A,2013-02-05,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-06,Risk of Violence,3,Low,2013-02-06,2013-10-23,2013-10-24,1,1,259,0,0,0\r\n8652,cedric hynes,cedric,hynes,2013-03-05,Male,1985-05-04,30,25 - 45,African-American,0,1,0,0,1,-1,2013-03-04 08:57:46,2013-03-05 06:41:10,13003255CF10A,2013-03-04,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-05,Risk of Violence,2,Low,2013-03-05,2013-03-04,2013-03-05,1,0,1123,0,0,0\r\n8653,fernando velazquezhernandez,fernando,velazquezhernandez,2013-02-19,Male,1956-05-30,59,Greater than 45,Hispanic,0,1,0,0,0,-4,2013-02-15 11:55:20,2013-02-17 02:16:14,13002383CF10A,2013-02-15,,4,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-19,Risk of Violence,1,Low,2013-02-19,2013-02-15,2013-02-17,0,0,1137,0,0,0\r\n8655,janet mccarthy,janet,mccarthy,2013-11-08,Male,1960-08-19,55,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-11-07 06:14:28,2013-11-08 09:33:29,13015543CF10A,2013-11-07,,1,F,Grand Theft in the 3rd Degree,1,15003176CF10A,(F3),0,2015-03-09,Battery on Law Enforc Officer,2015-03-09,2015-04-16,,1,15003176CF10A,(F3),2015-03-09,Battery on Law Enforc Officer,Risk of Recidivism,1,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2015-03-09,2015-04-16,1,0,486,1,1,1\r\n8656,tylicia walker,tylicia,walker,2013-09-03,Female,1993-06-20,22,Less than 25,African-American,0,6,1,0,1,294,2014-06-24 11:36:20,2014-07-25 05:43:00,09017749TC40A,2009-01-24,,1683,M,Reckless Driving,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-03,Risk of Violence,6,Medium,2013-09-03,2014-06-24,2014-07-25,1,0,294,0,0,0\r\n8659,fredrick hough,fredrick,hough,2013-05-27,Male,1962-10-11,53,Greater than 45,African-American,0,2,0,0,5,0,2013-05-27 04:31:38,2013-05-29 04:34:47,13010134MM10A,2013-05-27,,0,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2014-03-12,2014-03-14,5,2,289,0,0,0\r\n8661,allan cross,allan,cross,2013-01-21,Male,1966-02-13,50,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-01-20 11:08:11,2013-01-21 01:27:06,13001373MM10A,2013-01-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-21,Risk of Violence,2,Low,2013-01-21,2013-01-20,2013-01-21,1,0,1166,0,0,0\r\n8664,michael diaz,michael,diaz,2013-12-31,Male,1995-02-07,21,Less than 25,Hispanic,0,5,0,1,2,-1,2013-12-30 09:08:22,2013-12-31 10:47:09,13017980CF10A,2013-12-30,,1,F,Poss Similitude of Drivers Lic,1,14008723MM10A,(M1),0,2014-06-01,Unlaw Use False Name/Identity,2014-06-01,2014-06-01,,1,14008723MM10A,(M1),2014-06-01,Battery,Risk of Recidivism,5,Medium,2013-12-31,Risk of Violence,5,Medium,2013-12-31,2014-03-11,2014-03-13,2,0,70,0,1,1\r\n8668,gina benzing,gina,benzing,2013-12-17,Female,1990-06-21,25,25 - 45,Caucasian,0,3,0,0,0,-1,2013-12-16 06:31:26,2013-12-18 05:45:00,13023316MM10A,2013-12-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-17,Risk of Violence,3,Low,2013-12-17,2013-12-16,2013-12-18,0,1,836,0,0,0\r\n8670,brigitte moyer,brigitte,moyer,2013-04-24,Female,1985-03-10,31,25 - 45,Caucasian,0,6,0,0,2,0,2013-04-24 02:55:38,2013-08-19 05:41:56,13007958MM10A,2013-04-23,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-24,Risk of Violence,3,Low,2013-04-24,2013-04-24,2013-08-19,2,117,1073,0,0,0\r\n8672,jessica brown,jessica,brown,2013-09-07,Female,1989-05-24,26,25 - 45,African-American,0,5,0,0,1,-1,2013-09-06 07:37:43,2013-09-08 01:45:38,13012603CF10A,2013-09-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-07,Risk of Violence,4,Low,2013-09-07,2015-01-09,2015-01-24,1,1,489,0,0,0\r\n8673,jeffrey hopkins,jeffrey,hopkins,2013-12-23,Male,1990-11-19,25,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-22 10:13:14,2013-12-23 01:09:21,13023600MM10A,2013-12-22,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-23,Risk of Violence,3,Low,2013-12-23,2013-12-22,2013-12-23,0,0,830,0,0,0\r\n8674,jamsly georges,jamsly,georges,2013-11-19,Male,1983-06-01,32,25 - 45,African-American,0,1,0,0,0,0,2013-11-19 03:33:41,2013-11-19 08:58:19,13021760MM10A,2013-11-19,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-19,Risk of Violence,1,Low,2013-11-19,2013-11-19,2013-11-19,0,0,864,0,0,0\r\n8675,israel torres,israel,torres,2013-03-12,Male,1976-01-27,40,25 - 45,Caucasian,0,3,0,0,5,-1,2013-03-11 11:28:31,2013-03-12 01:07:39,13003586CF10A,2013-03-11,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-03-11,2013-03-12,5,0,1116,0,0,0\r\n8676,guignard lejean,guignard,lejean,2013-04-05,Male,1980-09-30,35,25 - 45,African-American,0,3,0,0,0,-2,2013-04-03 10:17:52,2013-04-04 07:37:40,13004764CF10A,2013-04-03,,2,F,Poss Oxycodone W/Int/Sell/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-05,Risk of Violence,4,Low,2013-04-05,2013-04-03,2013-04-04,0,0,1092,0,0,0\r\n8679,bassey abia,bassey,abia,2013-10-02,Male,1988-12-12,27,25 - 45,African-American,0,3,0,0,2,-1,2013-10-01 07:19:17,2013-10-05 01:13:34,13013758CF10A,2013-10-01,,1,F,,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-02,Risk of Violence,2,Low,2013-10-02,2013-10-01,2013-10-05,2,3,912,0,0,0\r\n8682,huy trinh,huy,trinh,2013-01-11,Male,1980-02-19,36,25 - 45,Asian,0,1,0,0,1,-1,2013-01-10 05:47:36,2013-02-20 01:46:27,13000470CF10A,,2013-01-10,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-11,Risk of Violence,1,Low,2013-01-11,2013-01-10,2013-02-20,1,40,1176,0,0,0\r\n8683,carlos vasquez,carlos,vasquez,2013-03-01,Male,1985-05-16,30,25 - 45,Caucasian,0,2,0,0,2,-22,2013-02-07 02:03:50,2013-02-07 08:53:31,13001943CF10A,2013-02-06,,23,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-01,Risk of Violence,3,Low,2013-03-01,2013-02-07,2013-02-07,2,0,1127,0,0,0\r\n8684,nasser saleh,nasser,saleh,2013-04-14,Male,1985-08-25,30,25 - 45,African-American,0,4,0,0,0,0,2013-04-14 12:53:38,2013-04-18 09:20:35,13005337CF10A,2013-04-13,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-14,Risk of Violence,3,Low,2013-04-14,2015-02-13,2015-02-25,0,4,670,0,0,0\r\n8685,bradley royes,bradley,royes,2013-04-15,Male,1974-12-26,41,25 - 45,African-American,0,8,0,0,19,0,2013-04-15 11:09:49,2013-11-21 11:14:00,13005134CF10A,,2013-04-15,0,F,arrest case no charge,1,15016078CF10A,(F3),,2015-12-15,Grand Theft (Motor Vehicle),,,,0,,,,,Risk of Recidivism,8,High,2013-04-15,Risk of Violence,2,Low,2013-04-15,2015-09-18,2015-09-19,19,220,886,0,0,0\r\n8686,francesca rousseau,francesca,rousseau,2013-05-28,Female,1994-04-28,21,Less than 25,Caucasian,0,7,0,0,1,-99,2013-02-18 04:02:37,2013-04-24 07:42:56,13003459MM10A,2013-02-18,,99,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-28,Risk of Violence,6,Medium,2013-05-28,2013-02-18,2013-04-24,1,0,1039,0,0,0\r\n8688,brandy baca,brandy,baca,2013-03-11,Female,1987-04-09,29,25 - 45,Caucasian,0,7,0,0,0,-3,2013-03-08 03:07:49,2013-03-08 08:40:55,13003466CF10A,2013-03-08,,3,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-11,Risk of Violence,3,Low,2013-03-11,2013-03-08,2013-03-08,0,0,1117,0,0,0\r\n8691,matthew lewandowski,matthew,lewandowski,2013-03-02,Male,1983-05-06,32,25 - 45,Caucasian,0,2,0,0,1,,,,09022719CF10A,2009-12-15,,1173,M,Poss of Vessel w/Altered ID NO,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-02,Risk of Violence,3,Low,2013-03-02,,,1,0,1126,0,0,0\r\n8694,thomas duffy,thomas,duffy,2013-10-04,Male,1990-12-27,25,25 - 45,Caucasian,0,5,0,0,0,-1,2013-10-03 12:19:47,2013-10-03 08:07:28,13013853CF10A,2013-10-02,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-04,Risk of Violence,3,Low,2013-10-04,2013-10-03,2013-10-03,0,0,910,0,0,0\r\n8695,nick maniscalso,nick,maniscalso,2013-03-20,Male,1965-12-28,50,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-19 09:33:06,2013-03-22 05:52:21,13003974CF10A,2013-03-19,,1,F,Possession Child Pornography,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-03-19,2013-03-22,0,2,1108,0,0,0\r\n8696,alexis palen,alexis,palen,2013-08-07,Male,1981-02-02,35,25 - 45,Caucasian,0,2,0,0,4,-1,2013-08-06 08:24:10,2014-01-23 05:55:11,13011090CF10A,,2013-08-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-07,Risk of Violence,1,Low,2013-08-07,2015-01-14,2015-01-23,4,169,525,0,0,0\r\n8701,delroy henry,delroy,henry,2014-01-16,Male,1972-07-24,43,25 - 45,African-American,0,1,0,0,4,-26,2013-12-21 12:37:51,2014-01-16 10:14:43,13017717CF10A,,2013-12-21,26,F,arrest case no charge,1,15003041MM10A,(M1),0,2015-03-13,Battery,2015-03-13,2015-03-13,,1,15003041MM10A,(M1),2015-03-13,Battery,Risk of Recidivism,1,Low,2014-01-16,Risk of Violence,2,Low,2014-01-16,2015-03-13,2015-03-13,4,0,421,0,1,1\r\n8703,anne murray,anne,murray,2013-12-04,Female,1955-02-08,61,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-03 03:18:00,2013-12-04 09:09:14,13016724CF10A,2013-12-03,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-04,Risk of Violence,1,Low,2013-12-04,2013-12-03,2013-12-04,0,0,849,0,0,0\r\n8705,isaiah hargrett,isaiah,hargrett,2013-09-15,Female,1993-11-19,22,Less than 25,African-American,0,9,0,0,4,0,2013-09-15 03:07:01,2013-09-17 03:55:23,13013013CF10A,2013-09-14,,1,F,Possession of Cocaine,1,14010778MM10A,(M1),0,2014-07-03,Possess Cannabis/20 Grams Or Less,2014-07-03,2014-07-04,,1,15000808MM10A,(M1),2015-01-02,Battery,Risk of Recidivism,9,High,2013-09-15,Risk of Violence,6,Medium,2013-09-15,2014-07-03,2014-07-04,4,2,291,1,1,1\r\n8707,wesley st jean,wesley,st jean,2013-04-15,Male,1984-09-28,31,25 - 45,African-American,0,10,0,0,0,,,,,,,,M,,1,16007440TC10A,(M2),,2016-03-03,Driving License Suspended,,,,0,,,,,Risk of Recidivism,10,High,2013-04-15,Risk of Violence,4,Low,2013-04-15,,,0,0,1053,1,0,0\r\n8708,dalton mcgowan,dalton,mcgowan,2014-02-13,Male,1971-12-20,44,25 - 45,African-American,0,9,0,0,12,,,,10006291CF10A,2010-04-09,,1406,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-13,Risk of Violence,4,Low,2014-02-13,2008-10-16,2009-02-01,12,0,778,0,0,0\r\n8710,tiara ross,tiara,ross,2013-02-06,Female,1982-03-26,34,25 - 45,African-American,0,2,0,0,1,-21,2013-01-16 10:16:43,2013-02-01 05:50:36,12021226MM10A,2012-10-12,,117,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-06,Risk of Violence,1,Low,2013-02-06,2013-01-16,2013-02-01,1,0,1150,0,0,0\r\n8711,wen chou,wen,chou,2014-03-22,Male,1991-08-14,24,Less than 25,Other,0,6,0,0,0,-1,2014-03-21 10:17:24,2014-03-22 10:10:59,14004046CF10A,2014-03-21,,1,F,Conspiracy Dealing Stolen Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-22,Risk of Violence,4,Low,2014-03-22,2015-10-08,2015-10-15,0,0,565,0,0,0\r\n8712,cecelia gitta,cecelia,gitta,2013-09-05,Female,1981-06-11,34,25 - 45,Caucasian,0,6,0,0,1,39,2013-10-14 12:54:46,2013-11-09 05:56:57,13000807CF10A,,2013-05-02,126,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-05,Risk of Violence,2,Low,2013-09-05,2013-10-14,2013-11-09,1,0,39,0,0,0\r\n8715,jasmine sherrell,jasmine,sherrell,2014-01-02,Female,1995-08-12,20,Less than 25,African-American,0,7,0,1,0,-1,2014-01-01 07:41:04,2014-01-02 08:43:28,14000049MM10A,2014-01-01,,1,M,Battery,1,14008977MM10A,(M1),0,2014-06-05,Viol Pretrial Release Dom Viol,2014-06-05,2014-06-11,,1,14008977MM10A,(M1),2014-06-05,Battery,Risk of Recidivism,7,Medium,2014-01-02,Risk of Violence,8,High,2014-01-02,2014-06-05,2014-06-11,0,0,154,1,1,1\r\n8716,raoul emile,raoul,emile,2014-03-31,Male,1986-01-20,30,25 - 45,African-American,0,1,0,0,0,-1,2014-03-30 05:12:07,2014-03-31 01:48:57,14005464MM10A,2014-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,2,Low,2014-03-31,2014-03-30,2014-03-31,0,0,732,0,0,0\r\n8717,louveni bell,louveni,bell,2013-05-14,Female,1972-10-15,43,25 - 45,African-American,0,1,0,0,0,-1,2013-05-13 11:41:46,2013-05-14 11:59:00,13009245MM10A,2013-05-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2013-05-13,2013-05-14,0,0,1053,0,0,0\r\n8723,tommy ortiz,tommy,ortiz,2013-02-07,Male,1979-01-20,37,25 - 45,Hispanic,0,5,0,0,9,-1,2013-02-06 02:39:48,2013-02-08 06:25:56,13001959CF10A,2013-02-06,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-07,Risk of Violence,3,Low,2013-02-07,2013-11-04,2014-04-30,9,1,270,0,0,0\r\n8726,raisha orellano-barrios,raisha,orellano-barrios,2013-02-23,Female,1987-02-04,29,25 - 45,Hispanic,0,4,0,0,1,-1,2013-02-22 02:14:29,2013-02-23 08:11:06,13002752CF10A,,2013-02-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-23,Risk of Violence,3,Low,2013-02-23,2013-02-22,2013-02-23,1,0,1133,0,0,0\r\n8727,scott stoner,scott,stoner,2013-08-08,Male,1971-08-06,44,25 - 45,Caucasian,0,1,0,0,4,,,,12018423CF10A,2012-12-17,,234,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-08,Risk of Violence,1,Low,2013-08-08,1996-10-17,1999-05-30,4,0,967,0,0,0\r\n8728,rose rodriguez,rose,rodriguez,2013-03-25,Female,1992-01-24,24,Less than 25,Caucasian,0,6,0,0,0,0,2013-03-25 01:31:41,2013-03-25 08:43:30,13005836MM10A,2013-03-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-25,Risk of Violence,5,Medium,2013-03-25,2013-03-25,2013-03-25,0,0,1103,0,0,0\r\n8729,michael lorenz,michael,lorenz,2014-03-26,Male,1980-01-28,36,25 - 45,Caucasian,0,1,0,0,12,-26,2014-02-28 03:37:21,2014-03-13 10:56:28,14002711CF10A,,2014-02-28,26,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-26,Risk of Violence,2,Low,2014-03-26,2014-02-28,2014-03-13,12,0,737,0,0,0\r\n8731,gregory lugo,gregory,lugo,2014-10-28,Male,1977-01-13,39,25 - 45,Caucasian,0,1,0,0,0,-1,2014-10-27 09:19:54,2014-10-30 04:23:55,14016036CF10A,2014-10-27,,1,F,Felony DUI - Enhanced,1,14015745MM10A,(M1),0,2014-10-30,Battery,2014-10-30,2014-11-08,,1,14015745MM10A,(M1),2014-10-30,Battery,Risk of Recidivism,1,Low,2014-10-28,Risk of Violence,1,Low,2014-10-28,2014-10-30,2014-11-08,0,2,2,1,1,1\r\n8732,eddie fluker,eddie,fluker,2013-11-20,Male,1983-12-22,32,25 - 45,African-American,0,5,0,0,2,-1,2013-11-19 01:53:21,2013-11-20 08:27:44,13021770MM10A,2013-11-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-20,Risk of Violence,4,Low,2013-11-20,2014-01-30,2014-01-31,2,0,71,0,0,0\r\n8733,ricardo hylton,ricardo,hylton,2013-09-10,Male,1986-02-18,30,25 - 45,African-American,0,2,0,0,1,-82,2013-06-20 01:20:20,2013-06-21 09:31:10,13008672CF10A,2013-06-19,,83,F,Aggravated Battery (Firearm),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-10,Risk of Violence,2,Low,2013-09-10,2013-06-20,2013-06-21,1,0,934,0,0,0\r\n8735,donovan aman,donovan,aman,2013-02-09,Male,1977-11-14,38,25 - 45,African-American,0,1,0,0,0,0,2013-02-09 12:08:28,2013-02-09 01:28:57,13002892MM10A,2013-02-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-09,Risk of Violence,1,Low,2013-02-09,2013-02-09,2013-02-09,0,0,1147,0,0,0\r\n8737,nicole jackson,nicole,jackson,2013-04-04,Female,1988-11-07,27,25 - 45,African-American,0,6,0,0,8,-23,2013-03-12 10:28:38,2013-03-15 11:32:22,13003543CF10A,,2013-03-12,23,F,arrest case no charge,1,15002305MM40A,(M1),,2015-06-02,Resist/Obstruct W/O Violence,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-04,Risk of Violence,4,Low,2013-04-04,2013-10-24,2013-11-06,8,0,203,0,0,0\r\n8739,dennis laravalasquez,dennis,laravalasquez,2013-09-12,Male,1991-05-19,24,Less than 25,Caucasian,0,3,0,0,2,,,,10004575MM10A,,2010-04-12,1249,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-12,Risk of Violence,4,Low,2013-09-12,,,2,0,932,0,0,0\r\n8743,timothy kendrick,timothy,kendrick,2013-01-23,Male,1986-01-22,30,25 - 45,African-American,6,9,0,0,8,-1,2013-01-22 06:49:44,2013-01-23 01:35:06,13001521MM10A,2013-01-22,,1,M,Battery,1,13007930CF10A,(F3),0,2013-06-04,Grand Theft in the 3rd Degree,2013-06-04,2013-06-05,,1,14004515CF10A,(M1),2014-01-06,Battery,Risk of Recidivism,9,High,2013-01-23,Risk of Violence,8,High,2013-01-23,2013-06-04,2013-06-05,8,0,132,1,1,1\r\n8745,jessica lee,jessica,lee,2013-06-03,Female,1989-06-18,26,25 - 45,Caucasian,0,4,0,0,1,-2,2013-06-01 08:03:30,2013-06-02 01:57:09,13010505MM10A,2013-06-01,,2,M,Assault,1,15008940CF10A,(F3),0,2015-07-11,Poss Pyrrolidinovalerophenone,2015-07-11,2015-07-13,,0,,,,,Risk of Recidivism,4,Low,2013-06-03,Risk of Violence,3,Low,2013-06-03,2015-07-11,2015-07-13,1,0,768,1,0,0\r\n8746,reynaldo rodriguez,reynaldo,rodriguez,2014-01-04,Male,1978-09-11,37,25 - 45,Caucasian,0,4,0,0,3,-1,2014-01-03 11:40:02,2014-02-11 10:50:00,14000144CF10A,2014-01-03,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-04,Risk of Violence,2,Low,2014-01-04,2015-01-05,2015-01-09,3,38,366,0,0,0\r\n8750,joseph dejesus,joseph,dejesus,2013-07-01,Male,1978-09-17,37,25 - 45,Hispanic,0,6,0,0,9,-52,2013-05-10 10:37:45,2013-06-28 04:09:09,13007020CF10A,,2013-05-15,47,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-01,Risk of Violence,7,Medium,2013-07-01,2013-09-05,2013-09-19,9,0,66,0,0,0\r\n8752,cody carlson,cody,carlson,2013-05-28,Male,1986-10-25,29,25 - 45,Caucasian,0,1,0,0,1,-1,2013-05-27 09:11:34,2013-05-28 01:48:44,13007560CF10A,2013-05-27,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-28,Risk of Violence,2,Low,2013-05-28,2013-05-27,2013-05-28,1,0,1039,0,0,0\r\n8754,matthew watkins,matthew,watkins,2013-01-15,Male,1983-12-11,32,25 - 45,Caucasian,0,5,0,0,3,-1,2013-01-14 11:55:12,2013-05-15 11:06:59,10015383CF10A,,2013-01-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-15,Risk of Violence,2,Low,2013-01-15,2014-01-24,2014-02-20,3,120,374,0,0,0\r\n8756,steven ferguson,steven,ferguson,2014-09-29,Male,1994-12-17,21,Less than 25,African-American,0,9,2,6,8,30,2014-10-29 07:19:44,2015-06-30 07:07:00,13016650CF10A,,2014-02-07,234,F,arrest case no charge,1,14015552CF10A,(F3),,2014-10-01,Crim Use of Personal ID Info,,,,1,14014510CF10A,(F2),2014-10-29,Agg Fleeing/Eluding High Speed,Risk of Recidivism,9,High,2014-09-29,Risk of Violence,5,Medium,2014-09-29,2015-06-30,2020-01-01,8,0,2,1,1,1\r\n8757,dillon degiovanni,dillon,degiovanni,2013-03-12,Male,1994-09-14,21,Less than 25,Caucasian,0,3,0,0,1,-1,2013-03-11 06:25:15,2013-03-12 12:35:34,13003594CF10A,2013-03-11,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-12,Risk of Violence,6,Medium,2013-03-12,2013-03-11,2013-03-12,1,0,1116,0,0,0\r\n8758,brian wilson,brian,wilson,2013-04-14,Male,1969-01-03,47,Greater than 45,Caucasian,0,4,0,0,13,0,2013-04-14 03:00:30,2013-06-19 06:52:42,13007194MM10A,2013-04-14,,0,M,Battery,1,13017495MM10A,(M1),0,2013-09-13,Battery,2013-09-13,2013-12-03,,1,13017495MM10A,(M1),2013-09-13,Battery,Risk of Recidivism,4,Low,2013-04-14,Risk of Violence,3,Low,2013-04-14,2013-09-13,2013-12-03,13,66,152,1,1,1\r\n8759,fatima johnson,fatima,johnson,2014-02-13,Female,1979-04-29,36,25 - 45,African-American,0,2,0,0,4,-13,2014-01-31 07:43:56,2014-02-01 01:57:00,14001411CF10A,,2014-01-31,13,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-13,Risk of Violence,1,Low,2014-02-13,2015-10-05,2015-10-05,4,0,599,0,0,0\r\n8761,ramsey sari,ramsey,sari,2014-04-17,Male,1983-11-11,32,25 - 45,Caucasian,0,2,0,0,4,0,2014-04-17 03:02:35,2014-04-18 04:10:58,14006525MM10A,2014-04-17,,0,M,Battery,1,14010971MM10A,(M1),0,2014-07-17,Viol Injunct Domestic Violence,2014-07-17,2014-08-12,,1,14013821CF10A,(F3),2014-09-19,Felony Battery w/Prior Convict,Risk of Recidivism,2,Low,2014-04-17,Risk of Violence,3,Low,2014-04-17,2014-07-17,2014-08-12,4,1,91,1,1,1\r\n8762,shannon gopher,shannon,gopher,2013-01-25,Male,1972-08-15,43,25 - 45,Caucasian,0,1,0,0,1,-1,2013-01-24 06:36:58,2013-01-25 07:32:50,13001196CF10A,2013-01-24,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-25,Risk of Violence,1,Low,2013-01-25,2013-01-24,2013-01-25,1,0,1162,0,0,0\r\n8764,steven carey,steven,carey,2013-04-04,Male,1989-01-09,27,25 - 45,African-American,0,6,0,0,2,-1,2013-04-03 04:58:59,2013-08-13 04:48:18,13004785CF10A,2013-04-03,,1,F,Sale/Del Cannabis At/Near Scho,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-04,Risk of Violence,3,Low,2013-04-04,2013-04-03,2013-08-13,2,131,1093,0,0,0\r\n8766,william winkelmann,william,winkelmann,2013-04-24,Male,1953-12-15,62,Greater than 45,Caucasian,0,-1,0,0,2,-20,2013-04-04 09:26:01,2013-04-05 01:42:17,13004849CF10A,2013-04-04,,20,F,Obtain Control Substance By Fraud,0,,,,,,,,,0,,,,,Risk of Recidivism,-1,N/A,2013-04-24,Risk of Violence,1,Low,2013-04-24,2013-04-04,2013-04-05,2,0,1073,0,0,0\r\n8768,al durrant,al,durrant,2013-09-12,Male,1994-10-08,21,Less than 25,African-American,0,3,0,0,1,-22,2013-08-21 02:03:31,2013-09-12 11:18:07,13010303CF10A,,2013-08-21,22,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-12,Risk of Violence,5,Medium,2013-09-12,2013-08-21,2013-09-12,1,0,932,0,0,0\r\n8770,kolson chu,kolson,chu,2013-12-16,Male,1982-03-03,34,25 - 45,Asian,0,2,0,0,0,-1,2013-12-15 08:07:23,2013-12-16 08:32:54,13023224MM10A,2013-12-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,0,0,837,0,0,0\r\n8771,ignacio choreno,ignacio,choreno,2014-01-27,Male,1970-02-02,46,Greater than 45,Hispanic,0,1,0,0,1,-2,2014-01-25 04:52:02,2014-01-26 01:43:13,14002844MU10A,2014-01-25,,2,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2014-01-25,2014-01-26,1,0,795,0,0,0\r\n8773,james scott,james,scott,2013-09-12,Male,1975-09-24,40,25 - 45,African-American,2,6,0,0,23,30,2013-10-12 10:22:16,2013-11-13 08:08:17,13014095MM10A,2013-07-20,,54,M,Possess Cannabis/20 Grams Or Less,1,13014303CF10A,(F2),0,2013-10-12,Aggravated Battery / Pregnant,2013-10-12,2013-11-13,,1,13014303CF10A,(F3),2013-10-12,Aggravated Assault W/Dead Weap,Risk of Recidivism,6,Medium,2013-09-12,Risk of Violence,8,High,2013-09-12,2013-10-12,2013-11-13,23,0,30,1,1,1\r\n8774,jeremy miller,jeremy,miller,2013-12-15,Male,1977-06-09,38,25 - 45,Caucasian,0,3,0,0,3,0,2013-12-15 01:27:41,2013-12-16 08:33:43,13023210MM10A,2013-12-14,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-15,Risk of Violence,1,Low,2013-12-15,2013-12-15,2013-12-16,3,1,838,0,0,0\r\n8775,jermaine west,jermaine,west,2013-03-27,Male,1975-01-17,41,25 - 45,African-American,0,9,0,0,7,-1,2013-03-26 04:40:53,2013-05-23 06:25:48,11020159CF10A,,2013-03-26,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-27,Risk of Violence,4,Low,2013-03-27,2013-03-26,2013-05-23,7,57,1101,0,0,0\r\n8777,jake scott,jake,scott,2013-12-19,Male,1995-01-29,21,Less than 25,Caucasian,0,4,0,0,1,-11,2013-12-08 09:52:02,2013-12-19 10:29:04,13016966CF10A,2013-12-08,,11,F,Burglary Conveyance Assault/Bat,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-19,Risk of Violence,7,Medium,2013-12-19,2013-12-08,2013-12-19,1,0,834,0,0,0\r\n8778,eileen dunn,eileen,dunn,2013-11-15,Female,1941-08-07,74,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-14 03:06:45,2013-11-14 07:37:54,13021485MM10A,2013-11-14,,1,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-15,Risk of Violence,1,Low,2013-11-15,2013-11-14,2013-11-14,0,0,868,0,0,0\r\n8785,lisbet martinez,lisbet,martinez,2013-01-24,Female,1988-10-07,27,25 - 45,Hispanic,0,3,0,0,0,0,2013-01-24 01:34:36,2013-01-24 06:22:19,13001701MM10A,2013-01-23,,1,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-01-24,2013-01-24,0,0,1163,0,0,0\r\n8786,judge lucas,judge,lucas,2014-01-23,Male,1985-05-29,30,25 - 45,African-American,0,2,1,0,1,-1,2014-01-22 11:51:48,2014-01-24 08:52:16,14000990CF10A,2014-01-22,,1,M,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-23,Risk of Violence,2,Low,2014-01-23,2014-01-22,2014-01-24,1,1,799,0,0,0\r\n8787,joy kidd,joy,kidd,2013-05-18,Female,1983-01-31,33,25 - 45,Caucasian,0,6,0,0,3,-2,2013-05-16 09:22:15,2013-05-18 06:56:41,13007091CF10A,2013-05-16,,2,F,Possession Of Heroin,1,14015283CF10A,(F3),,2014-02-08,D.U.I. Serious Bodily Injury,,,,1,14015283CF10A,(F3),2014-02-08,D.U.I. Serious Bodily Injury,Risk of Recidivism,6,Medium,2013-05-18,Risk of Violence,2,Low,2013-05-18,2013-05-16,2013-05-18,3,0,266,1,1,1\r\n8789,alim rahman,alim,rahman,2014-03-27,Male,1991-11-01,24,Less than 25,Caucasian,0,2,0,0,2,0,2014-03-27 03:28:49,2014-03-27 08:33:05,14012123MU10A,2014-03-27,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-27,Risk of Violence,3,Low,2014-03-27,2014-03-27,2014-03-27,2,0,736,0,0,0\r\n8790,kiet ho,kiet,ho,2013-11-14,Male,1963-11-12,52,Greater than 45,Asian,0,1,0,0,0,-1,2013-11-13 12:48:26,2013-11-14 08:11:15,13015770CF10A,2013-11-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-11-13,2013-11-14,0,0,869,0,0,0\r\n8791,vicki stokes,vicki,stokes,2013-04-04,Female,1987-03-16,29,25 - 45,Caucasian,0,6,0,0,0,-1,2013-04-03 12:21:25,2013-04-03 01:03:48,13006353MM10A,2013-04-02,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-04,Risk of Violence,3,Low,2013-04-04,2013-04-03,2013-04-03,0,0,1093,0,0,0\r\n8794,idalia gonzalez,idalia,gonzalez,2013-03-31,Female,1985-12-29,30,25 - 45,Caucasian,0,2,0,1,1,0,2013-03-31 04:29:09,2013-03-31 07:30:43,13004626CF10A,2013-03-31,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-31,Risk of Violence,2,Low,2013-03-31,2013-03-31,2013-03-31,1,0,1097,0,0,0\r\n8797,aubrey perry,aubrey,perry,2013-08-07,Male,1982-05-01,33,25 - 45,African-American,0,5,0,0,0,-1,2013-08-06 05:28:37,2013-09-20 05:39:05,13011034CF10A,2013-08-06,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-07,Risk of Violence,4,Low,2013-08-07,2013-08-06,2013-09-20,0,44,968,0,0,0\r\n8798,ailton campos,ailton,campos,2013-12-21,Male,1978-04-17,38,25 - 45,Hispanic,0,1,0,0,1,-1,2013-12-20 07:46:00,2013-12-24 12:11:14,13017573CF10A,2013-12-20,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-21,Risk of Violence,1,Low,2013-12-21,2013-12-20,2013-12-24,1,3,832,0,0,0\r\n8802,shawanna kelly,shawanna,kelly,2013-02-17,Female,1988-03-27,28,25 - 45,African-American,0,8,0,0,5,-1,2013-02-16 04:25:52,2013-02-18 04:28:02,12009386MM10A,,2013-02-16,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-17,Risk of Violence,7,Medium,2013-02-17,2013-02-16,2013-02-18,5,1,1139,0,0,0\r\n8803,lazaro ruiz,lazaro,ruiz,2013-03-06,Male,1987-12-05,28,25 - 45,Hispanic,0,8,0,0,3,,,,08005705CF10A,,2009-06-10,1365,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-06,Risk of Violence,7,Medium,2013-03-06,2015-07-24,2020-01-01,3,0,870,0,0,0\r\n8805,lisa orange,lisa,orange,2014-01-13,Female,1963-08-03,52,Greater than 45,African-American,0,1,0,0,3,0,2014-01-13 02:37:51,2014-01-13 07:46:57,14000567CF10A,2014-01-13,,0,F,False 911 Call,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-01-13,2014-01-13,3,0,809,0,0,0\r\n8807,alex materiale,alex,materiale,2014-03-11,Male,1994-06-04,21,Less than 25,Hispanic,0,8,0,3,1,-25,2014-02-14 11:46:56,2014-02-15 08:32:02,14002133CF10A,2014-02-14,,25,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-11,Risk of Violence,6,Medium,2014-03-11,2014-10-30,2014-11-19,1,0,233,0,0,0\r\n8809,dominique gonzalez,dominique,gonzalez,2014-01-13,Female,1993-06-17,22,Less than 25,Hispanic,0,5,0,0,1,-1,2014-01-12 05:58:48,2014-01-14 10:17:25,14000529CF10A,,2014-01-12,1,F,arrest case no charge,1,16010377TC40A,(M2),,2016-02-13,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-13,Risk of Violence,5,Medium,2014-01-13,2014-01-12,2014-01-14,1,1,761,1,0,0\r\n8812,steven vigo,steven,vigo,2013-05-24,Male,1983-10-16,32,25 - 45,Hispanic,0,3,0,0,3,0,2013-05-24 02:14:27,2013-05-24 08:22:34,11016528CF10A,,2013-05-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-24,Risk of Violence,2,Low,2013-05-24,2014-05-17,2014-05-23,3,0,358,0,0,0\r\n8813,oscar clark,oscar,clark,2014-03-22,Male,1990-06-21,25,25 - 45,African-American,0,2,0,0,0,0,2014-03-22 02:24:16,2014-06-20 08:29:13,14004063CF10A,2014-03-21,,1,F,Corrupt Public Servant,1,15001198CF10A,(M1),0,2015-01-26,Resist/Obstruct W/O Violence,2015-01-26,2015-02-17,,1,15001198CF10A,(F3),2015-01-26,Battery on Law Enforc Officer,Risk of Recidivism,2,Low,2014-03-22,Risk of Violence,3,Low,2014-03-22,2015-01-26,2015-02-17,0,90,310,1,1,1\r\n8814,norma collins,norma,collins,2013-05-03,Female,1989-03-14,27,25 - 45,African-American,0,3,0,0,0,-1,2013-05-02 09:32:44,2013-05-03 12:53:32,13008544MM10A,2013-05-02,,1,M,Battery,1,16002190MM10A,(M1),0,2016-03-06,Battery,2016-03-06,2016-03-07,,1,16002190MM10A,(M1),2016-03-06,Battery,Risk of Recidivism,3,Low,2013-05-03,Risk of Violence,3,Low,2013-05-03,2016-03-06,2016-03-07,0,0,1038,1,0,0\r\n8816,yoan miranda,yoan,miranda,2013-11-27,Male,1981-03-14,35,25 - 45,Caucasian,0,2,0,0,0,0,2013-11-27 12:01:59,2013-11-28 02:20:19,13016489CF10A,2013-11-26,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-27,Risk of Violence,2,Low,2013-11-27,2013-11-27,2013-11-28,0,1,856,0,0,0\r\n8818,tiffany harris,tiffany,harris,2013-09-27,Male,1975-11-10,40,25 - 45,African-American,0,3,0,0,2,-1,2013-09-26 05:51:39,2013-09-27 01:50:53,13018352MM10A,2013-09-26,,1,M,Battery,1,15010505MM10A,(M1),0,2015-10-07,Battery,2015-10-07,2015-10-08,,1,15010505MM10A,(M1),2015-10-07,Battery,Risk of Recidivism,3,Low,2013-09-27,Risk of Violence,3,Low,2013-09-27,2014-03-07,2014-03-08,2,0,161,0,0,0\r\n8819,carlene dill,carlene,dill,2013-04-17,Female,1986-05-26,29,25 - 45,Other,0,3,0,0,0,-1,2013-04-16 11:04:17,2013-06-03 09:05:35,13005532CF10A,2013-04-16,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,3,Low,2013-04-17,2013-04-16,2013-06-03,0,47,1080,0,0,0\r\n8820,teshane jemmott,teshane,jemmott,2014-09-22,Male,1991-05-18,24,Less than 25,African-American,0,9,0,2,2,-1,2014-09-21 03:02:31,2014-10-15 08:42:14,14014006MM10A,2014-09-21,,1,M,Battery,1,15008729MM10A,(M1),0,2015-07-21,Petit Theft $100- $300,2015-07-21,2015-09-28,,1,15009395CF10A,(F2),2015-07-21,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,9,High,2014-09-22,Risk of Violence,7,Medium,2014-09-22,2015-07-21,2015-09-28,2,23,302,1,1,1\r\n8821,william cesaire,william,cesaire,2013-05-25,Male,1991-07-12,24,Less than 25,African-American,5,10,1,0,10,0,2013-05-25 02:03:09,2013-05-25 07:33:04,13007477CF10A,2013-05-24,,1,F,Possession of Cocaine,1,13008621CF10A,(F3),0,2013-06-18,Grand Theft in the 3rd Degree,2013-06-18,2013-10-29,,1,13008621CF10A,(F7),2013-06-18,Burglary Dwelling Assault/Batt,Risk of Recidivism,10,High,2013-05-25,Risk of Violence,9,High,2013-05-25,2013-06-18,2013-10-29,10,0,24,1,1,1\r\n8826,kenneth zackery,kenneth,zackery,2013-09-04,Male,1962-01-06,54,Greater than 45,African-American,0,6,0,0,13,,,,12003511CF10A,,2012-11-15,293,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-04,Risk of Violence,1,Low,2013-09-04,2003-11-17,2011-03-23,13,0,940,0,0,0\r\n8827,joel ortiz,joel,ortiz,2013-04-19,Male,1989-06-29,26,25 - 45,Hispanic,0,3,0,0,5,-1,2013-04-18 07:25:19,2013-04-19 01:04:18,13005582CF10A,2013-04-18,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-19,Risk of Violence,2,Low,2013-04-19,2013-04-18,2013-04-19,5,0,1078,0,0,0\r\n8828,nicholas franchino,nicholas,franchino,2013-10-28,Male,1965-11-11,50,Greater than 45,Caucasian,0,2,0,0,1,0,2013-10-28 01:20:34,2013-11-06 05:46:21,13015010CF10A,2013-10-28,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-28,Risk of Violence,3,Low,2013-10-28,2013-10-28,2013-11-06,1,9,886,0,0,0\r\n8831,josue espinosa,josue,espinosa,2013-02-17,Male,1964-04-20,51,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-02-16 11:00:54,2013-02-17 07:57:14,13003403MM10A,2013-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-17,Risk of Violence,1,Low,2013-02-17,2013-02-16,2013-02-17,0,0,1139,0,0,0\r\n8835,matthew moton,matthew,moton,2013-04-17,Male,1986-09-25,29,25 - 45,African-American,0,1,0,0,3,-1,2013-04-16 04:00:42,2013-04-17 10:35:05,13007370MM10A,2013-04-16,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-17,Risk of Violence,2,Low,2013-04-17,2013-04-16,2013-04-17,3,0,1080,0,0,0\r\n8838,daniella vidal,daniella,vidal,2013-08-11,Female,1991-03-03,25,25 - 45,Caucasian,0,4,0,0,0,0,2013-08-11 04:08:29,2013-08-12 02:12:13,13015174MM10A,2013-08-11,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-11,Risk of Violence,4,Low,2013-08-11,2013-08-11,2013-08-12,0,1,964,0,0,0\r\n8842,javier sanchez,javier,sanchez,2013-09-24,Male,1969-05-21,46,Greater than 45,Caucasian,0,3,0,0,1,-1,2013-09-23 12:47:13,2013-10-04 01:57:13,13012268CF10A,,2013-09-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-24,Risk of Violence,3,Low,2013-09-24,2013-09-23,2013-10-04,1,10,920,0,0,0\r\n8843,hardy galette,hardy,galette,2014-11-24,Male,1982-08-02,33,25 - 45,African-American,0,7,0,2,9,-28,2014-10-27 12:30:23,2014-11-11 02:19:27,14015523MM10A,2014-10-27,,28,M,Battery,1,15002117MM10A,(M2),,2014-12-31,Petit Theft,,,,1,15002117MM10A,(M1),2014-12-31,Battery,Risk of Recidivism,7,Medium,2014-11-24,Risk of Violence,7,Medium,2014-11-24,2015-01-30,2015-05-12,9,0,37,1,1,1\r\n8844,richard ortiz,richard,ortiz,2013-09-24,Male,1984-07-03,31,25 - 45,Hispanic,0,7,1,0,19,-1,2013-09-23 07:54:43,2013-09-24 07:47:19,13013404CF10A,2013-09-23,,1,F,\"Poss 3,4 MDMA (Ecstasy)\",1,14009209CF10A,(F3),0,2014-07-04,Possession of Cocaine,2014-07-04,2014-07-04,,1,14009209CF10A,(F3),2014-07-04,Battery on Law Enforc Officer,Risk of Recidivism,7,Medium,2013-09-24,Risk of Violence,2,Low,2013-09-24,2014-07-04,2014-07-04,19,0,283,0,1,1\r\n8845,justin brown,justin,brown,2013-01-04,Male,1994-06-17,21,Less than 25,Other,0,4,0,0,0,-1,2013-01-03 08:19:16,2013-01-07 09:42:38,13000137CF10A,2013-01-03,,1,M,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-04,Risk of Violence,6,Medium,2013-01-04,2013-01-03,2013-01-07,0,3,1183,0,0,0\r\n8849,jermonte lucas,jermonte,lucas,2013-07-19,Male,1993-03-13,23,Less than 25,African-American,0,5,0,0,1,-39,2013-06-10 07:20:02,2013-06-11 06:37:04,13008230CF10A,,2013-07-15,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-19,Risk of Violence,5,Medium,2013-07-19,2013-06-10,2013-06-11,1,0,987,0,0,0\r\n8854,dalvis martin,dalvis,martin,2013-09-05,Male,1980-12-08,35,25 - 45,African-American,0,4,0,0,4,-1,2013-09-04 01:52:20,2013-09-15 02:36:41,13012486CF10A,,2013-09-04,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-05,Risk of Violence,5,Medium,2013-09-05,2015-06-01,2015-06-20,4,10,634,0,0,0\r\n8856,frederick thomas,frederick,thomas,2013-04-01,Male,1990-04-07,26,25 - 45,Other,0,4,0,0,1,-1,2013-03-31 03:47:27,2013-04-01 06:11:22,13006185MM10A,2013-03-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-01,Risk of Violence,7,Medium,2013-04-01,2013-03-31,2013-04-01,1,0,1096,0,0,0\r\n8857,elio rivera,elio,rivera,2013-01-06,Male,1988-05-26,27,25 - 45,Caucasian,0,5,0,0,0,0,2013-01-06 04:31:06,2013-01-08 05:20:57,13000301MM10A,2013-01-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-06,Risk of Violence,4,Low,2013-01-06,2013-01-06,2013-01-08,0,2,1181,0,0,0\r\n8858,samuel mcleod,samuel,mcleod,2014-03-23,Male,1993-09-21,22,Less than 25,African-American,0,6,1,3,2,-1,2014-03-22 11:52:10,2014-03-23 08:29:09,14004062CF10A,2014-03-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-23,Risk of Violence,5,Medium,2014-03-23,2014-03-22,2014-03-23,2,0,740,0,0,0\r\n8859,adonica mclemore,adonica,mclemore,2014-07-20,Female,1986-08-12,29,25 - 45,African-American,0,4,0,0,0,-1,2014-07-19 05:05:54,2014-07-20 08:08:01,14009867CF10A,2014-07-19,,1,F,Aggravated Battery (Firearm),1,15015131CF10A,(F3),51,2015-10-10,Burglary Conveyance Unoccup,2015-11-30,2015-12-03,,1,15015131CF10A,(M1),2015-10-10,Battery,Risk of Recidivism,4,Low,2014-07-20,Risk of Violence,2,Low,2014-07-20,2015-11-30,2015-12-03,0,0,447,1,1,1\r\n8861,kenneth hammond,kenneth,hammond,2014-01-12,Male,1984-09-10,31,25 - 45,African-American,0,9,0,0,0,-1,2014-01-11 06:00:49,2014-01-13 02:58:29,14000490CF10A,2014-01-11,,1,M,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-12,Risk of Violence,4,Low,2014-01-12,2014-01-11,2014-01-13,0,1,810,0,0,0\r\n8864,shantelle jordan,shantelle,jordan,2013-04-28,Female,1986-12-19,29,25 - 45,Hispanic,0,3,0,0,0,0,2013-04-28 04:06:52,2013-04-28 06:43:22,13006110CF10A,2013-04-28,,0,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-28,Risk of Violence,3,Low,2013-04-28,2013-04-28,2013-04-28,0,0,1069,0,0,0\r\n8865,fay mizrachi,fay,mizrachi,2013-04-25,Female,1951-01-16,65,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-24 07:03:33,2013-04-25 01:08:21,13005904CF10A,2013-04-24,,1,F,Fraudulent Use of Credit Card,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-25,Risk of Violence,1,Low,2013-04-25,2013-04-24,2013-04-25,0,0,1072,0,0,0\r\n8866,margarita gonzalez,margarita,gonzalez,2013-06-06,Female,1981-11-01,34,25 - 45,Hispanic,0,3,0,0,1,-5,2013-06-01 10:35:08,2013-06-05 06:03:38,13010521MM10A,2013-06-01,,5,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-06,Risk of Violence,1,Low,2013-06-06,2013-06-01,2013-06-05,1,0,1030,0,0,0\r\n8867,michael flores,michael,flores,2013-02-23,Male,1991-11-25,24,Less than 25,Caucasian,0,10,0,2,6,0,2013-02-23 03:17:40,2013-03-02 08:24:16,13002782CF10A,2013-02-23,,0,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-23,Risk of Violence,5,Medium,2013-02-23,2015-10-12,2015-10-12,6,7,961,0,0,0\r\n8869,roderick penn,roderick,penn,2013-01-26,Male,1969-10-02,46,Greater than 45,African-American,0,2,0,0,0,0,2013-01-26 07:30:18,2013-01-27 08:32:51,13001878MM10A,2013-01-26,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-26,Risk of Violence,1,Low,2013-01-26,2013-01-26,2013-01-27,0,1,1161,0,0,0\r\n8870,andres perez,andres,perez,2013-08-27,Male,1990-01-06,26,25 - 45,Other,0,2,0,0,3,-41,2013-07-17 01:14:32,2013-08-27 03:55:00,13009969CF10A,2013-07-16,,42,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-27,Risk of Violence,3,Low,2013-08-27,2013-07-17,2013-08-27,3,0,948,0,0,0\r\n8876,ceven lewis,ceven,lewis,2013-02-09,Male,1986-04-20,29,25 - 45,African-American,0,3,0,0,7,0,2013-02-09 03:34:10,2013-02-11 09:29:51,13002034CF10A,2013-02-09,,0,F,Burglary Dwelling Occupied,1,15042467TC30A,(M2),,2015-06-09,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-09,Risk of Violence,2,Low,2013-02-09,2014-07-25,2014-07-26,7,2,531,0,0,0\r\n8877,robin foy,robin,foy,2014-02-04,Female,1960-02-07,56,Greater than 45,Caucasian,0,1,0,0,3,-1,2014-02-03 06:27:36,2014-02-04 01:31:30,14001597CF10A,2014-02-03,,1,F,Unlicensed Telemarketing,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-02-03,2014-02-04,3,0,787,0,0,0\r\n8879,arrik young,arrik,young,2013-04-07,Male,1994-12-13,21,Less than 25,African-American,0,4,0,0,0,0,2013-04-07 02:50:45,2013-04-08 04:00:00,13004999CF10A,2013-04-06,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-07,Risk of Violence,7,Medium,2013-04-07,2013-04-07,2013-04-08,0,1,1090,0,0,0\r\n8881,anthony strickland,anthony,strickland,2013-01-07,Male,1975-12-12,40,25 - 45,African-American,0,10,0,0,0,0,2013-01-07 02:33:54,2013-01-11 09:36:33,13000278CF10A,2013-01-07,,0,F,Possession of Cocaine,1,13006180MO10A,(MO3),0,2013-03-31,Resisting W/O Violence,2013-03-31,2013-06-14,,1,13006180MO10A,(MO3),2013-03-31,Battery Spouse Or Girlfriend,Risk of Recidivism,10,High,2013-01-07,Risk of Violence,9,High,2013-01-07,2013-03-31,2013-06-14,0,4,83,1,1,1\r\n8882,peter bonbon,peter,bonbon,2014-02-14,Male,1994-02-11,22,Less than 25,African-American,0,9,0,0,2,-1,2014-02-13 12:25:47,2014-04-09 05:37:42,14002561MM10A,2014-02-13,,1,M,Viol Injunct Domestic Violence,1,14009680MM10A,(M1),0,2014-06-20,Possess Cannabis/20 Grams Or Less,2014-06-20,2014-06-20,,1,15008422MM10A,(M1),2015-08-09,Battery,Risk of Recidivism,9,High,2014-02-14,Risk of Violence,8,High,2014-02-14,2014-06-20,2014-06-20,2,54,126,0,1,1\r\n8884,christopher freeman,christopher,freeman,2014-01-06,Male,1976-09-08,39,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-05 06:33:24,2014-01-06 12:02:21,14000387MU10A,2014-01-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-01-05,2014-01-06,0,0,816,0,0,0\r\n8889,johnny bland,johnny,bland,2014-01-17,Male,1980-04-07,36,25 - 45,Caucasian,0,2,0,0,1,0,2014-01-17 02:33:03,2014-01-17 09:43:27,14000770CF10A,2014-01-17,,0,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-17,Risk of Violence,1,Low,2014-01-17,2014-01-17,2014-01-17,1,0,805,0,0,0\r\n8890,jonathan cleare,jonathan,cleare,2013-11-23,Male,1985-12-10,30,25 - 45,African-American,0,1,0,0,0,-1,2013-11-22 03:20:19,2013-11-24 02:55:48,13016251CF10A,2013-11-22,,1,F,Computer Pornography,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-23,Risk of Violence,2,Low,2013-11-23,2013-11-22,2013-11-24,0,1,860,0,0,0\r\n8891,michael hinsch,michael,hinsch,2013-09-24,Male,1959-12-03,56,Greater than 45,Caucasian,0,4,0,0,17,41,2013-11-04 03:43:08,2013-11-27 09:09:54,13010917CF10A,2013-08-02,,53,F,Corrupt Public Servant,1,13020817MM10A,(M1),0,2013-11-04,Battery,2013-11-04,2013-11-27,,1,13020817MM10A,(M1),2013-11-04,Battery,Risk of Recidivism,4,Low,2013-09-24,Risk of Violence,4,Low,2013-09-24,2013-11-04,2013-11-27,17,0,41,1,1,1\r\n8893,charleton latimore,charleton,latimore,2013-09-15,Male,1979-11-16,36,25 - 45,African-American,0,6,0,0,0,-1,2013-09-14 07:15:24,2013-09-16 03:47:12,13017532MM10A,2013-09-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-15,Risk of Violence,5,Medium,2013-09-15,2013-09-14,2013-09-16,0,1,929,0,0,0\r\n8894,donathan james,donathan,james,2013-03-11,Male,1977-12-23,38,25 - 45,African-American,0,7,0,0,5,,,,13004867MM10A,2013-03-11,,0,M,Unlaw Use False Name/Identity,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-11,Risk of Violence,7,Medium,2013-03-11,,,5,0,1117,0,0,0\r\n8897,joseph fallon,joseph,fallon,2013-01-28,Male,1984-02-29,32,25 - 45,African-American,0,1,0,0,0,-1,2013-01-27 06:27:20,2013-01-29 10:59:12,13001335CF10A,2013-01-27,,1,F,Robbery / Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-01-29,0,1,1159,0,0,0\r\n8902,samuel louis,samuel,louis,2013-01-22,Male,1992-07-05,23,Less than 25,Other,0,3,0,0,0,-1,2013-01-21 11:08:31,2013-01-22 02:00:40,13001438MM10A,2013-01-21,,1,M,Possess Cannabis/20 Grams Or Less,1,15008975MM10A,(M2),0,2015-08-25,Interfere With K9/Horses Duties,2015-08-25,2015-08-26,,0,,,,,Risk of Recidivism,3,Low,2013-01-22,Risk of Violence,4,Low,2013-01-22,2015-08-25,2015-08-26,0,0,945,1,0,0\r\n8905,german garciadiciocco,german,garciadiciocco,2013-08-04,Male,1963-08-01,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-03 08:41:11,2013-08-04 08:02:48,13014645MM10A,2013-08-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-04,Risk of Violence,1,Low,2013-08-04,2013-08-03,2013-08-04,0,0,971,0,0,0\r\n8908,leverdieu jasmin,leverdieu,jasmin,2013-12-01,Male,1977-07-11,38,25 - 45,African-American,0,4,0,0,5,-1,2013-11-30 11:15:26,2013-12-06 02:02:27,13022342MM10A,2013-11-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-01,Risk of Violence,2,Low,2013-12-01,2013-11-30,2013-12-06,5,5,852,0,0,0\r\n8909,irangel arocho,irangel,arocho,2013-02-13,Male,1969-10-09,46,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-13 01:58:51,2013-02-13 07:54:38,13003133MM10A,2013-02-13,,0,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2013-02-13,2013-02-13,0,0,1143,0,0,0\r\n8914,kesneil johnson,kesneil,johnson,2014-11-05,Male,1995-11-15,20,Less than 25,African-American,0,3,0,0,2,-17,2014-10-19 08:57:11,2014-11-04 09:23:44,14014123CF10A,2014-10-19,,17,F,Aggravated Assault W/Dead Weap,1,15011136CF10A,(F3),0,2015-08-28,Felony Petit Theft,2015-08-28,2015-09-17,,1,15011136CF10A,(M1),2015-08-28,Battery,Risk of Recidivism,3,Low,2014-11-05,Risk of Violence,5,Medium,2014-11-05,2014-12-07,2014-12-24,2,0,32,0,1,1\r\n8916,larhonda mcmillan,larhonda,mcmillan,2013-09-11,Female,1964-10-04,51,Greater than 45,African-American,0,1,0,0,1,,,,12024026MM10A,2012-11-24,,291,M,DUI- Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-11,Risk of Violence,1,Low,2013-09-11,,,1,0,933,0,0,0\r\n8922,lawrence wanschek,lawrence,wanschek,2013-05-26,Male,1952-12-24,63,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-25 11:32:19,2013-05-26 08:33:03,13007476CF10A,2013-05-25,,1,F,Criminal Mischief,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2013-05-25,2013-05-26,0,0,1041,0,0,0\r\n8923,jahmal parker,jahmal,parker,2013-05-14,Male,1988-12-01,27,25 - 45,African-American,0,6,0,0,2,,,,12014001CF10A,2012-09-22,,234,F,Robbery / Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-14,Risk of Violence,4,Low,2013-05-14,,,2,0,1053,0,0,0\r\n8924,freddie davis,freddie,davis,2014-08-26,Male,1988-06-02,27,25 - 45,African-American,0,4,0,0,1,-1,2014-08-25 10:18:43,2014-08-26 08:44:24,14011603CF10A,2014-08-25,,1,F,Aggravated Battery / Pregnant,1,15007140CF10A,(F3),0,2015-06-01,Stalking (Aggravated),2015-06-01,2015-07-03,,1,15007140CF10A,(F3),2015-06-01,Agg Assault W/int Com Fel Dome,Risk of Recidivism,4,Low,2014-08-26,Risk of Violence,5,Medium,2014-08-26,2015-02-11,2015-02-12,1,0,169,0,1,1\r\n8925,brunsweck jeanpierre,brunsweck,jeanpierre,2014-01-29,Male,1989-01-07,27,25 - 45,African-American,0,5,0,0,0,-1,2014-01-28 01:58:14,2014-01-31 08:36:08,14001241CF10A,2014-01-28,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-29,Risk of Violence,4,Low,2014-01-29,2016-03-16,2016-03-23,0,2,777,0,0,0\r\n8935,jereme sheppard,jereme,sheppard,2013-11-26,Male,1991-05-22,24,Less than 25,African-American,2,9,1,0,10,-251,2013-03-20 10:47:45,2013-03-21 07:11:57,13011948TC10A,2013-03-20,,251,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-26,Risk of Violence,5,Medium,2013-11-26,2013-03-20,2013-03-21,10,0,857,0,0,0\r\n8936,carlos eady,carlos,eady,2013-09-07,Male,1988-12-30,27,25 - 45,African-American,0,1,0,0,0,0,2013-09-07 01:01:09,2013-09-08 04:02:48,13017038MM10A,2013-09-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-07,Risk of Violence,2,Low,2013-09-07,2015-01-09,2015-03-15,0,1,489,0,0,0\r\n8938,rabecca davis,rabecca,davis,2014-01-13,Female,1967-05-11,48,Greater than 45,African-American,0,5,0,0,0,-1,2014-01-12 10:49:59,2014-01-22 08:49:33,14000573MM10A,2014-01-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-13,Risk of Violence,3,Low,2014-01-13,2014-01-12,2014-01-22,0,9,809,0,0,0\r\n8939,iyana llanos,iyana,llanos,2014-01-27,Female,1990-03-06,26,25 - 45,African-American,0,4,0,0,1,-23,2014-01-04 11:01:26,2014-01-05 04:59:52,14000189MM10A,2014-01-04,,23,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-27,Risk of Violence,5,Medium,2014-01-27,2014-01-04,2014-01-05,1,0,795,0,0,0\r\n8940,samir soussi,samir,soussi,2014-01-31,Male,1957-07-10,58,Greater than 45,Other,0,1,0,0,0,0,2014-01-31 01:07:44,2014-01-31 08:14:11,14001354CF10A,2014-01-30,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-31,Risk of Violence,1,Low,2014-01-31,2014-01-31,2014-01-31,0,0,791,0,0,0\r\n8943,patricia younger,patricia,younger,2013-10-07,Female,1964-05-13,51,Greater than 45,African-American,0,1,0,0,4,-60,2013-08-08 08:23:20,2013-10-07 11:12:43,08014336CF10A,,2013-08-08,60,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-08-08,2013-10-07,4,0,907,0,0,0\r\n8944,alens joseph,alens,joseph,2013-03-20,Male,1974-05-19,41,25 - 45,African-American,0,1,0,0,0,-1,2013-03-19 11:12:30,2013-03-23 01:04:00,13003985CF10A,,2013-03-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2015-10-14,2015-10-20,0,3,938,0,0,0\r\n8945,ronald smith,ronald,smith,2013-01-15,Male,1994-11-03,21,Less than 25,African-American,0,7,0,0,0,-1,2013-01-14 03:40:11,2013-01-15 01:09:24,13000643CF10A,2013-01-14,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,7,Medium,2013-01-15,2013-01-14,2013-01-15,0,0,1172,0,0,0\r\n8946,kenson jeanphilippe,kenson,jeanphilippe,2013-12-22,Male,1983-07-12,32,25 - 45,African-American,0,7,0,0,1,,,,12005060MM10A,2012-03-10,,652,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-22,Risk of Violence,9,High,2013-12-22,,,1,0,831,0,0,0\r\n8948,mikemsonn michaud,mikemsonn,michaud,2013-04-26,Male,1989-08-03,26,25 - 45,Other,0,2,0,0,0,-1,2013-04-25 01:57:38,2013-04-26 07:29:04,13008016MM10A,2013-04-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-26,Risk of Violence,3,Low,2013-04-26,2013-04-25,2013-04-26,0,0,1071,0,0,0\r\n8949,sunil jagpal,sunil,jagpal,2013-01-27,Female,1977-01-20,39,25 - 45,African-American,0,6,0,0,3,-1,2013-01-26 05:18:10,2013-01-28 06:53:55,13003859TC10A,2013-01-26,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-27,Risk of Violence,2,Low,2013-01-27,2014-07-22,2014-08-06,3,1,541,0,0,0\r\n8950,blessing egbarin,blessing,egbarin,2014-02-19,Female,1967-04-20,48,Greater than 45,Other,0,1,0,0,0,,,,14002819MM10A,2014-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-19,Risk of Violence,1,Low,2014-02-19,,,0,0,772,0,0,0\r\n8954,trevor grosholz,trevor,grosholz,2013-12-31,Male,1969-12-30,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-30 11:43:47,2013-12-31 01:41:52,13023993MM10A,2013-12-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-31,Risk of Violence,1,Low,2013-12-31,2013-12-30,2013-12-31,0,0,822,0,0,0\r\n8955,emilio perez,emilio,perez,2014-02-20,Male,1959-12-26,56,Greater than 45,Hispanic,0,8,0,0,2,,,,11067674TC40A,2011-09-30,,874,M,Opert With Susp DL 2nd Offens,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-20,Risk of Violence,5,Medium,2014-02-20,2007-11-21,2008-09-06,2,0,771,0,0,0\r\n8959,anton porter,anton,porter,2013-12-17,Male,1982-11-05,33,25 - 45,Other,0,8,1,0,7,-1,2013-12-16 02:37:00,2014-04-11 03:13:00,13017382CF10A,2013-12-16,,1,F,Trespass Property w/Dang Weap,1,15015388CF10A,(F3),143,2015-11-03,Felony Battery (Dom Strang),2016-03-25,2016-03-26,,1,15015388CF10A,(F3),2015-11-03,Felony Battery (Dom Strang),Risk of Recidivism,8,High,2013-12-17,Risk of Violence,3,Low,2013-12-17,2013-12-16,2014-04-11,7,115,686,1,1,1\r\n8961,manuel baker,manuel,baker,2014-07-01,Male,1996-02-11,20,Less than 25,Native American,0,9,1,0,1,-5,2014-06-26 10:46:59,2014-07-01 11:20:41,14005315CF10A,,2014-06-26,5,F,arrest case no charge,1,15000912CF10A,(M1),1,2015-01-21,Resist/Obstruct W/O Violence,2015-01-22,2015-05-07,,1,15000912CF10A,(F3),2015-01-21,Battery on Law Enforc Officer,Risk of Recidivism,9,High,2014-07-01,Risk of Violence,9,High,2014-07-01,2015-01-22,2015-05-07,1,0,204,1,1,1\r\n8962,randy fernandez,randy,fernandez,2014-01-05,Male,1983-11-07,32,25 - 45,Caucasian,0,3,0,0,0,-1,2014-01-04 12:57:21,2014-01-05 02:30:43,14000175MM10A,2014-01-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-05,Risk of Violence,3,Low,2014-01-05,2014-01-04,2014-01-05,0,0,817,0,0,0\r\n8967,silvio lopez,silvio,lopez,2013-06-03,Male,1951-11-10,64,Greater than 45,Hispanic,0,1,0,0,1,-2,2013-06-01 10:15:46,2013-06-02 08:24:11,13010506MM10A,2013-06-01,,2,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-03,Risk of Violence,1,Low,2013-06-03,2013-06-01,2013-06-02,1,0,1033,0,0,0\r\n8971,fabensky michel,fabensky,michel,2014-03-03,Male,1990-01-03,26,25 - 45,African-American,0,4,0,0,2,-23,2014-02-08 07:11:12,2014-02-09 01:26:52,14001807CF10A,2014-02-08,,23,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-03,Risk of Violence,4,Low,2014-03-03,2014-02-08,2014-02-09,2,0,760,0,0,0\r\n8973,elizabeth wiess,elizabeth,wiess,2013-01-30,Female,1986-04-05,30,25 - 45,Caucasian,0,6,0,0,1,40,2013-03-11 12:07:04,2013-03-19 11:20:35,12013432MM10A,2012-06-28,,216,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-30,Risk of Violence,2,Low,2013-01-30,2013-03-11,2013-03-19,1,0,40,0,0,0\r\n8974,tyrie walker,tyrie,walker,2013-04-30,Male,1994-01-25,22,Less than 25,African-American,0,8,0,0,2,-1,2013-04-29 04:28:02,2013-04-30 07:17:44,13006149CF10A,2013-04-29,,1,F,Robbery Sudd Snatch No Weapon,1,15016724TC10A,(M2),,2015-05-18,Operating W/O Valid License,,,,1,15009326MM10A,(M1),2015-07-24,Battery,Risk of Recidivism,8,High,2013-04-30,Risk of Violence,8,High,2013-04-30,2013-04-29,2013-04-30,2,0,748,1,0,0\r\n8976,catherine scher,catherine,scher,2013-12-22,Female,1972-05-28,43,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-22 02:32:05,2013-12-23 01:40:39,13017627CF10A,2013-12-21,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-22,Risk of Violence,1,Low,2013-12-22,2013-12-22,2013-12-23,0,1,831,0,0,0\r\n8983,deborah spoth,deborah,spoth,2013-05-10,Female,1961-04-18,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-09 10:15:50,2013-05-10 08:38:51,13008981MM10A,2013-05-09,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-10,Risk of Violence,1,Low,2013-05-10,2013-05-09,2013-05-10,0,0,1057,0,0,0\r\n8984,mario luis,mario,luis,2013-08-07,Male,1982-04-15,34,25 - 45,Hispanic,0,1,0,0,0,0,2013-08-07 12:09:52,2013-10-23 11:18:41,13014877MM10A,2013-08-06,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-07,Risk of Violence,1,Low,2013-08-07,2013-08-07,2013-10-23,0,77,968,0,0,0\r\n8988,jordan barr,jordan,barr,2013-10-15,Male,1995-07-20,20,Less than 25,African-American,0,2,0,2,1,-1,2013-10-14 05:43:48,2013-10-16 09:20:13,13014392CF10A,,2013-10-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-15,Risk of Violence,6,Medium,2013-10-15,2013-10-14,2013-10-16,1,1,899,0,0,0\r\n8991,dominique troutman,dominique,troutman,2014-07-06,Male,1987-02-09,29,25 - 45,African-American,0,9,4,1,15,227,2015-02-18 11:39:46,2015-08-24 01:02:23,14009227CF10A,2014-07-05,,1,F,Felony Battery w/Prior Convict,1,15002261CF10A,(M2),0,2015-02-18,Susp Drivers Lic 1st Offense,2015-02-18,2015-08-24,,1,15002261CF10A,(F2),2015-02-18,Agg Fleeing/Eluding High Speed,Risk of Recidivism,9,High,2014-07-06,Risk of Violence,7,Medium,2014-07-06,2015-02-18,2015-08-24,15,0,227,1,1,1\r\n8995,timothy evans,timothy,evans,2013-02-23,Male,1960-06-03,55,Greater than 45,Caucasian,0,8,0,0,7,0,2013-02-23 03:21:11,2013-02-23 09:04:37,13002770CF10A,2013-02-23,,0,F,Felony DUI (level 3),0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-23,Risk of Violence,10,High,2013-02-23,2014-06-19,2014-07-07,7,0,481,0,0,0\r\n8996,bradley vaval,bradley,vaval,2013-03-06,Male,1993-07-23,22,Less than 25,African-American,0,6,0,0,1,-1,2013-03-05 09:14:57,2013-03-07 05:10:56,13003293CF10A,2013-03-05,,1,F,Fleeing or Eluding a LEO,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-06,Risk of Violence,8,High,2013-03-06,2013-04-22,2013-04-29,1,1,47,0,0,0\r\n8997,john kemp,john,kemp,2013-09-10,Male,1961-02-10,55,Greater than 45,African-American,0,1,0,0,1,-1,2013-09-09 04:06:52,2013-09-18 10:30:00,13010628CF10A,,2013-09-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-09,2013-09-18,1,8,934,0,0,0\r\n8999,lamonte dean,lamonte,dean,2013-03-15,Male,1994-11-09,21,Less than 25,African-American,0,10,0,3,0,-1,2013-03-14 07:22:45,2013-03-21 07:20:07,13003771CF10A,2013-03-14,,1,F,Pos Cannabis W/Intent Sel/Del,1,14001493MM10A,(M1),0,2014-01-27,Unlaw Use False Name/Identity,2014-01-27,2014-02-24,,1,15011755CF10A,(F3),2015-09-09,Robbery Sudd Snatch No Weapon,Risk of Recidivism,10,High,2013-03-15,Risk of Violence,9,High,2013-03-15,2014-01-27,2014-02-24,0,6,318,1,1,1\r\n9003,tony dees,tony,dees,2013-06-11,Male,1977-06-29,38,25 - 45,African-American,1,4,0,0,6,-52,2013-04-20 10:31:47,2013-06-11 11:15:31,13005653CF10A,,2013-04-20,52,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-11,Risk of Violence,3,Low,2013-06-11,2013-04-20,2013-06-11,6,0,1025,0,0,0\r\n9004,james goodwin,james,goodwin,2013-09-24,Male,1992-12-19,23,Less than 25,African-American,0,2,0,0,0,-1,2013-09-23 09:18:09,2013-09-24 08:49:29,13013399CF10A,,2013-09-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-24,Risk of Violence,4,Low,2013-09-24,2013-09-23,2013-09-24,0,0,920,0,0,0\r\n9005,carly grimes,carly,grimes,2013-08-07,Female,1988-01-09,28,25 - 45,Caucasian,0,5,0,0,1,-2,2013-08-05 10:26:37,2013-08-06 01:36:07,13010970CF10A,2013-08-05,,2,M,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-07,Risk of Violence,2,Low,2013-08-07,2013-08-05,2013-08-06,1,0,968,0,0,0\r\n9008,wilner joseph,wilner,joseph,2013-05-09,Male,1970-11-29,45,Greater than 45,Other,0,1,0,0,0,0,2013-05-09 01:46:12,2013-05-10 12:10:14,13006682CF10A,2013-05-08,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-09,Risk of Violence,1,Low,2013-05-09,2013-05-09,2013-05-10,0,1,1058,0,0,0\r\n9010,broderick lewis,broderick,lewis,2013-04-15,Male,1976-08-26,39,25 - 45,African-American,0,1,0,0,1,-1,2013-04-14 12:35:29,2013-04-28 04:07:31,13005381CF10A,2013-04-14,,1,F,Agg Battery Grt/Bod/Harm,1,15045856TC40A,(M2),,2015-08-06,Expired DL More Than 6 Months,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-15,Risk of Violence,2,Low,2013-04-15,2013-04-14,2013-04-28,1,13,843,1,0,0\r\n9012,lionel sacon,lionel,sacon,2013-07-29,Male,1936-08-28,79,Greater than 45,Caucasian,0,1,0,0,1,-22,2013-07-07 09:04:26,2013-07-08 12:17:21,13012898MM10A,2013-07-07,,22,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-07-07,2013-07-08,1,0,977,0,0,0\r\n9013,james bruschetti,james,bruschetti,2013-12-07,Male,1968-01-21,48,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-12-06 07:54:08,2013-12-07 01:25:17,13016908CF10A,2013-12-06,,1,F,Depriv LEO of Protect/Communic,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-07,Risk of Violence,1,Low,2013-12-07,2013-12-06,2013-12-07,1,0,846,0,0,0\r\n9018,samuel walker,samuel,walker,2013-01-12,Male,1985-02-19,31,25 - 45,African-American,1,8,0,0,5,-1,2013-01-11 01:37:56,2013-01-12 01:34:34,12052989TC10A,,2013-01-11,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-12,Risk of Violence,3,Low,2013-01-12,2014-07-17,2014-07-24,5,0,551,0,0,0\r\n9023,richard fleenor,richard,fleenor,2014-03-23,Male,1959-09-29,56,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-03-22 11:04:24,2014-03-26 09:44:27,14005017MM10A,2014-03-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-23,Risk of Violence,1,Low,2014-03-23,2014-03-22,2014-03-26,1,3,740,0,0,0\r\n9028,jerome hill,jerome,hill,2013-08-19,Male,1973-01-14,43,25 - 45,African-American,0,1,0,0,2,-1,2013-08-18 05:31:33,2013-08-20 07:43:59,13015624MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-20,2,1,956,0,0,0\r\n9030,kevin sanchez,kevin,sanchez,2014-03-13,Male,1995-07-18,20,Less than 25,Hispanic,0,3,0,2,0,-1,2014-03-12 12:52:07,2014-03-13 04:07:39,14003531CF10A,2014-03-12,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-13,Risk of Violence,5,Medium,2014-03-13,2014-03-12,2014-03-13,0,0,750,0,0,0\r\n9032,darius wilborn,darius,wilborn,2013-08-08,Male,1974-12-18,41,25 - 45,African-American,0,6,0,0,0,-4,2013-08-04 03:15:07,2013-08-07 08:38:50,13014562MM10A,2013-08-04,,4,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-08,Risk of Violence,2,Low,2013-08-08,2014-01-21,2014-02-06,0,0,166,0,0,0\r\n9033,romero alexander,romero,alexander,2013-12-07,Male,1992-03-15,24,Less than 25,Other,0,3,0,0,1,-1,2013-12-06 03:59:45,2013-12-07 08:00:48,13016890CF10A,2013-12-06,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-07,Risk of Violence,3,Low,2013-12-07,2014-02-01,2014-02-02,1,0,56,0,0,0\r\n9038,angel willis,angel,willis,2013-09-25,Female,1982-05-13,33,25 - 45,African-American,0,1,0,0,1,-1,2013-09-24 07:19:08,2013-09-25 07:32:07,13013425CF10A,,2013-09-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-25,Risk of Violence,1,Low,2013-09-25,2013-09-24,2013-09-25,1,0,919,0,0,0\r\n9039,curtis anderson,curtis,anderson,2014-02-05,Male,1993-07-30,22,Less than 25,African-American,0,3,0,0,0,-1,2014-02-04 01:35:10,2014-02-13 10:41:37,14001577CF10A,2014-02-04,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-05,Risk of Violence,4,Low,2014-02-05,2014-02-04,2014-02-13,0,8,786,0,0,0\r\n9040,corey parchment,corey,parchment,2014-01-22,Male,1982-03-10,34,25 - 45,African-American,0,1,0,0,3,-1,2014-01-21 06:38:50,2014-01-22 07:53:54,14000892CF10A,2014-01-21,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-22,Risk of Violence,1,Low,2014-01-22,2014-01-21,2014-01-22,3,0,800,0,0,0\r\n9041,angel franco,angel,franco,2013-01-18,Male,1980-04-19,36,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-18 03:17:45,2013-01-18 08:51:56,13001296MM10A,2013-01-18,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2013-01-18,2013-01-18,0,0,1169,0,0,0\r\n9042,paul stephan,paul,stephan,2013-01-19,Male,1946-07-12,69,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-01-18 04:01:25,2013-01-19 01:25:00,13000862CF10A,2013-01-18,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-19,Risk of Violence,1,Low,2013-01-19,2013-01-18,2013-01-19,0,0,1168,0,0,0\r\n9043,derrick gorman,derrick,gorman,2013-02-22,Male,1983-06-21,32,25 - 45,Caucasian,0,5,0,0,5,-1,2013-02-21 03:26:24,2013-02-22 01:32:44,13002881CF10A,,2013-02-21,1,F,arrest case no charge,1,15007708CF10A,(F2),0,2015-06-13,Aggrav Battery w/Deadly Weapon,2015-06-13,2015-06-14,,1,15007708CF10A,(F2),2015-06-13,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,5,Medium,2013-02-22,Risk of Violence,4,Low,2013-02-22,2014-02-20,2014-02-25,5,0,363,0,1,1\r\n9045,corey smaglik,corey,smaglik,2013-12-10,Male,1969-08-19,46,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-12-09 06:27:49,2014-02-26 01:03:40,13017025CF10A,2013-12-09,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-10,Risk of Violence,2,Low,2013-12-10,2013-12-09,2014-02-26,0,78,843,0,0,0\r\n9046,ian wilhelm,ian,wilhelm,2014-02-24,Male,1981-11-13,34,25 - 45,Caucasian,0,5,0,0,1,-14,2014-02-10 02:20:42,2014-02-11 09:23:53,14002272MM10A,2014-02-09,,15,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-24,Risk of Violence,3,Low,2014-02-24,2014-02-10,2014-02-11,1,0,767,0,0,0\r\n9047,shane forshaw,shane,forshaw,2014-03-07,Female,1983-07-13,32,25 - 45,Hispanic,0,1,0,0,0,0,2014-03-07 07:10:24,2014-03-17 07:16:22,14003977MM10A,2014-03-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-07,Risk of Violence,1,Low,2014-03-07,2015-06-07,2015-06-19,0,10,457,0,0,0\r\n9049,frederick gallaway,frederick,gallaway,2013-01-28,Male,1976-09-22,39,25 - 45,African-American,0,1,0,0,0,-1,2013-01-27 10:35:20,2013-01-28 06:46:53,13001931MM10A,2013-01-27,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-01-28,0,0,1159,0,0,0\r\n9054,patrick moore,patrick,moore,2014-10-01,Male,1991-04-18,25,25 - 45,African-American,0,7,0,1,6,-1,2014-09-30 08:47:42,2014-10-02 08:08:10,14014375MM10A,2014-09-30,,1,M,Battery,1,15009562CF10A,(F2),0,2015-07-25,Aggrav Battery w/Deadly Weapon,2015-07-25,2015-08-31,,1,15009562CF10A,(F2),2015-07-25,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,7,Medium,2014-10-01,Risk of Violence,7,Medium,2014-10-01,2015-07-25,2015-08-31,6,1,297,1,1,1\r\n9060,joseph amico,joseph,amico,2013-07-26,Male,1987-01-14,29,25 - 45,Caucasian,0,5,0,0,2,-2,2013-07-24 10:54:34,2013-07-26 10:35:06,13010359CF10A,2013-07-24,,2,M,Fighting/Baiting Animals,1,15012587MM10A,(M1),1,2015-12-04,Trespass Other Struct/Convey,2015-12-05,2015-12-05,,0,,,,,Risk of Recidivism,5,Medium,2013-07-26,Risk of Violence,4,Low,2013-07-26,2013-11-04,2013-11-22,2,0,101,0,0,0\r\n9062,april hood,april,hood,2014-02-17,Female,1976-04-08,40,25 - 45,Caucasian,0,5,0,0,0,-1,2014-02-16 09:48:15,2014-02-19 04:10:54,14002679MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-17,Risk of Violence,2,Low,2014-02-17,2014-02-16,2014-02-19,0,2,774,0,0,0\r\n9067,jacob domkoski,jacob,domkoski,2013-01-29,Male,1979-11-30,36,25 - 45,Caucasian,0,5,0,0,10,54,2013-03-24 07:18:58,2013-03-31 06:00:20,13001602MO10A,2013-01-24,,5,M,Aggress/Panhandle/Beg/Solict,1,13004257CF10A,(F2),0,2013-03-24,Burglary Unoccupied Dwelling,2013-03-24,2013-03-31,,1,13009915MM10A,(M1),2013-05-23,Battery,Risk of Recidivism,5,Medium,2013-01-29,Risk of Violence,4,Low,2013-01-29,2013-03-24,2013-03-31,10,0,54,1,1,1\r\n9070,bruce sinert,bruce,sinert,2013-04-25,Male,1965-05-20,50,Greater than 45,Caucasian,0,7,0,0,5,-8,2013-04-17 10:39:20,2013-04-22 11:45:09,12018393CF10A,,2013-04-17,8,F,arrest case no charge,1,15013992CF10A,(F3),0,2015-10-27,Possession Of Methamphetamine,2015-10-27,2015-10-28,,0,,,,,Risk of Recidivism,7,Medium,2013-04-25,Risk of Violence,1,Low,2013-04-25,2015-10-27,2015-10-28,5,0,915,1,0,0\r\n9072,james travis,james,travis,2014-11-01,Male,1979-03-22,37,25 - 45,African-American,0,7,0,0,4,-1,2014-10-31 09:52:44,2015-01-14 12:38:16,14015774MM10A,2014-10-31,,1,M,Criminal Mischief>$200<$1000,1,15005125CF10A,(M1),0,2015-04-19,Viol Injunct Domestic Violence,2015-04-19,2015-08-03,,1,15005125CF10A,(F3),2015-04-19,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2014-11-01,Risk of Violence,7,Medium,2014-11-01,2015-03-06,2015-03-24,4,74,125,0,1,1\r\n9074,wendell thomas,wendell,thomas,2013-02-24,Male,1982-04-03,34,25 - 45,African-American,0,7,0,0,1,0,2013-02-24 12:31:37,2013-02-24 09:00:27,13002807CF10A,2013-02-23,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-24,Risk of Violence,2,Low,2013-02-24,2014-07-11,2014-07-24,1,0,502,0,0,0\r\n9075,sussan cabrera,sussan,cabrera,2014-03-20,Female,1980-09-16,35,25 - 45,Hispanic,0,2,0,0,0,-1,2014-03-19 07:32:49,2014-03-20 11:57:04,14003908CF10A,2014-03-19,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-20,Risk of Violence,1,Low,2014-03-20,2014-03-19,2014-03-20,0,0,743,0,0,0\r\n9077,joshua mercado,joshua,mercado,2013-01-12,Male,1992-06-18,23,Less than 25,Caucasian,0,7,0,1,10,-1,2013-01-11 01:35:04,2013-03-22 08:45:44,11020721CF10A,,2013-01-12,0,F,arrest case no charge,1,15006414CF10A,(F3),1,2015-05-16,Possession Of Alprazolam,2015-05-17,2015-05-17,,0,,,,,Risk of Recidivism,7,Medium,2013-01-12,Risk of Violence,6,Medium,2013-01-12,2013-01-11,2013-03-22,10,69,854,1,0,0\r\n9081,lansberth blackwood,lansberth,blackwood,2013-09-30,Male,1995-07-22,20,Less than 25,Other,0,4,0,0,0,-2,2013-09-28 08:34:56,2013-09-29 01:46:44,13013638CF10A,2013-09-28,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-30,Risk of Violence,7,Medium,2013-09-30,2014-07-24,2014-08-04,0,0,297,0,0,0\r\n9085,joseph brock,joseph,brock,2013-03-26,Male,1989-10-20,26,25 - 45,Caucasian,0,5,0,0,2,-1,2013-03-25 11:41:47,2013-03-26 01:03:38,13004331CF10A,2013-03-25,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-26,Risk of Violence,4,Low,2013-03-26,2013-03-25,2013-03-26,2,0,1102,0,0,0\r\n9087,robert grady,robert,grady,2014-11-13,Male,1956-07-06,59,Greater than 45,Caucasian,0,1,0,0,2,-15,2014-10-29 09:37:56,2014-10-30 08:26:47,14039923MU10A,2014-10-29,,15,M,DUI Level 0.15 Or Minor In Veh,1,15012872TC20A,(M2),,2015-02-09,Driving License Suspended,,,,1,15003782CF10A,(M1),2015-03-20,Agg Fleeing/Eluding High Speed,Risk of Recidivism,1,Low,2014-11-13,Risk of Violence,1,Low,2014-11-13,2014-12-10,2014-12-11,2,0,27,0,1,1\r\n9088,william rodman,william,rodman,2013-09-29,Male,1970-09-24,45,Greater than 45,Caucasian,0,2,0,0,2,,,,13013630CF10A,2013-09-28,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-29,Risk of Violence,1,Low,2013-09-29,,,2,0,915,0,0,0\r\n9089,michael preston,michael,preston,2013-08-16,Male,1978-07-08,37,25 - 45,Caucasian,0,2,0,0,2,-12,2013-08-04 08:19:11,2013-08-16 10:55:25,13014593MM10A,2013-08-04,,12,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-16,Risk of Violence,3,Low,2013-08-16,2013-09-19,2013-10-17,2,0,34,0,0,0\r\n9093,jerel dean,jerel,dean,2013-08-14,Male,1993-12-06,22,Less than 25,African-American,0,8,0,0,1,-1,2013-08-13 01:31:52,2013-09-18 11:56:57,13011361CF10A,2013-08-13,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-14,Risk of Violence,7,Medium,2013-08-14,2015-10-21,2015-11-06,1,35,798,0,0,0\r\n9096,janoi turner,janoi,turner,2013-01-28,Male,1990-08-20,25,25 - 45,African-American,0,5,0,0,5,-1,2013-01-27 10:18:53,2013-03-05 06:42:36,13001329CF10A,2013-01-27,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-28,Risk of Violence,7,Medium,2013-01-28,2013-03-05,2014-02-07,5,375,1159,0,0,0\r\n9099,vanessa byrd,vanessa,byrd,2013-02-26,Female,1963-10-21,52,Greater than 45,African-American,0,3,0,0,3,,,,12003875MM10A,,2012-07-08,233,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-26,Risk of Violence,2,Low,2013-02-26,,,3,0,1130,0,0,0\r\n9102,patrick shirley,patrick,shirley,2013-11-08,Male,1995-05-26,20,Less than 25,African-American,0,4,0,0,1,-1,2013-11-07 01:46:22,2013-11-08 08:59:23,13021023MM10A,2013-11-07,,1,M,Battery,1,15010342MM10A,(M1),,2015-08-23,Battery,,,,1,15010342MM10A,(M1),2015-08-23,Battery,Risk of Recidivism,4,Low,2013-11-08,Risk of Violence,7,Medium,2013-11-08,2013-11-07,2013-11-08,1,0,653,1,1,1\r\n9104,alfonso glenn,alfonso,glenn,2014-02-06,Male,1983-12-29,32,25 - 45,African-American,0,6,0,0,6,,,,10020562CF10A,2010-11-21,,1173,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-06,Risk of Violence,7,Medium,2014-02-06,,,6,0,785,0,0,0\r\n9109,shane hall,shane,hall,2013-09-24,Male,1976-09-18,39,25 - 45,Caucasian,0,6,0,0,8,-75,2013-07-11 05:28:48,2013-07-31 10:30:00,11006386CF10A,,2013-07-11,75,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-24,Risk of Violence,4,Low,2013-09-24,2013-07-11,2013-07-31,8,0,920,0,0,0\r\n9116,ramon matute,ramon,matute,2014-02-24,Male,1965-09-01,50,Greater than 45,Hispanic,0,1,0,0,2,0,2014-02-24 05:18:29,2014-02-25 04:40:49,14006971MU10A,2014-02-24,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-24,2014-02-25,2,1,767,0,0,0\r\n9120,rodquez lovett,rodquez,lovett,2014-02-05,Male,1995-12-11,20,Less than 25,African-American,1,6,0,0,1,-20,2014-01-16 08:27:08,2014-01-19 02:09:26,13017967CF10A,,2014-01-16,20,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-05,Risk of Violence,8,High,2014-02-05,2014-01-16,2014-01-19,1,0,786,0,0,0\r\n9123,jason franco,jason,franco,2013-04-18,Male,1977-03-07,39,25 - 45,Caucasian,0,1,0,0,1,-48,2013-03-01 08:32:20,2013-03-02 06:12:32,13003111CF10A,2013-03-01,,48,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2013-03-01,2013-03-02,1,0,1079,0,0,0\r\n9125,nicanor durand,nicanor,durand,2013-08-09,Male,1964-09-05,51,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-08-08 04:57:26,2013-08-10 04:22:50,13014993MM10A,2013-08-08,,1,M,Battery,1,14000165MM10A,(M1),,2014-01-04,Battery,,,,1,14000165MM10A,(M1),2014-01-04,Battery,Risk of Recidivism,2,Low,2013-08-09,Risk of Violence,1,Low,2013-08-09,2013-08-08,2013-08-10,1,1,148,1,1,1\r\n9126,deangelo ash,deangelo,ash,2013-01-21,Male,1985-10-31,30,25 - 45,African-American,0,2,0,0,2,-1,2013-01-20 05:11:14,2013-02-07 09:31:29,13001381MM10A,2013-01-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-21,Risk of Violence,2,Low,2013-01-21,2013-04-08,2013-04-09,2,17,77,0,0,0\r\n9127,hussain hussain,hussain,hussain,2014-01-12,Male,1976-06-22,39,25 - 45,Other,0,1,0,0,0,-1,2014-01-11 05:27:12,2014-01-14 09:21:38,14000563MM10A,2014-01-11,,1,M,Battery,1,16000308MM30A,(M1),,2016-02-08,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-12,Risk of Violence,1,Low,2014-01-12,2014-01-11,2014-01-14,0,2,757,1,0,0\r\n9129,rennard robinson,rennard,robinson,2013-04-06,Male,1989-11-28,26,25 - 45,African-American,0,6,0,0,2,-1,2013-04-05 01:11:27,2013-05-08 08:21:55,13004922CF10A,2013-04-05,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-06,Risk of Violence,4,Low,2013-04-06,2013-04-05,2013-05-08,2,32,1091,0,0,0\r\n9131,isacc exumat,isacc,exumat,2013-10-21,Male,1995-08-18,20,Less than 25,Other,0,5,0,0,0,-1,2013-10-20 10:25:19,2013-10-21 07:52:13,13019859MM10A,2013-10-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-21,Risk of Violence,6,Medium,2013-10-21,2013-10-20,2013-10-21,0,0,893,0,0,0\r\n9132,lori giglio,lori,giglio,2014-01-27,Female,1964-11-19,51,Greater than 45,Caucasian,0,5,0,0,7,-157,2013-08-23 03:55:46,2014-01-16 10:30:00,13011879CF10A,2013-08-23,,157,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-27,Risk of Violence,2,Low,2014-01-27,2013-08-23,2014-01-16,7,0,795,0,0,0\r\n9133,stacy dimitrakis,stacy,dimitrakis,2013-02-25,Female,1989-09-12,26,25 - 45,Caucasian,0,5,0,0,0,-4,2013-02-21 11:28:11,2013-02-22 01:51:52,13002658CF10A,2013-02-21,,4,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-25,Risk of Violence,4,Low,2013-02-25,2013-02-21,2013-02-22,0,0,1131,0,0,0\r\n9136,lawrence joseph,lawrence,joseph,2013-03-27,Male,1989-07-18,26,25 - 45,African-American,0,4,0,0,5,-1,2013-03-26 06:03:04,2013-03-29 04:56:00,13004389CF10A,2013-03-26,,1,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-27,Risk of Violence,3,Low,2013-03-27,2013-09-14,2013-09-14,5,2,171,0,0,0\r\n9143,matthew bonner,matthew,bonner,2013-12-06,Male,1995-11-01,20,Less than 25,Caucasian,0,2,0,2,0,-1,2013-12-05 11:38:15,2013-12-06 12:40:41,13016833CF10A,2013-12-05,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-06,Risk of Violence,6,Medium,2013-12-06,2013-12-05,2013-12-06,0,0,847,0,0,0\r\n9144,james bethea,james,bethea,2014-02-17,Male,1987-08-20,28,25 - 45,African-American,0,3,0,0,0,0,2014-02-17 01:46:34,2014-03-04 05:23:42,14002238CF10A,2014-02-17,,0,F,Criminal Mischief,1,14009075MM10A,(M1),0,2014-06-08,Battery,2014-06-08,2014-11-17,,1,14009075MM10A,(M1),2014-06-08,Battery,Risk of Recidivism,3,Low,2014-02-17,Risk of Violence,3,Low,2014-02-17,2014-06-08,2014-11-17,0,15,111,1,1,1\r\n9146,jasmine cureton,jasmine,cureton,2013-01-28,Female,1994-08-24,21,Less than 25,African-American,0,5,0,0,0,-4,2013-01-24 11:20:51,2013-01-25 02:16:47,13001720MM10A,2013-01-24,,4,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-28,Risk of Violence,7,Medium,2013-01-28,2013-11-01,2013-11-02,0,0,277,0,0,0\r\n9147,makendy demard,makendy,demard,2013-05-03,Male,1990-06-01,25,25 - 45,Other,0,9,0,0,0,-1,2013-05-02 05:54:12,2013-05-03 11:02:07,13006329CF10A,2013-05-02,,1,F,Possession of Cocaine,1,13010418CF10A,(F1),0,2013-07-25,Robbery Firearm Wearing Mask,2013-07-25,2014-10-16,,1,13010418CF10A,(F7),2013-07-25,Burglary Dwelling Armed,Risk of Recidivism,9,High,2013-05-03,Risk of Violence,8,High,2013-05-03,2013-07-25,2014-10-16,0,0,83,1,1,1\r\n9148,christopher landsgard,christopher,landsgard,2013-10-27,Male,1985-10-02,30,25 - 45,Caucasian,0,3,0,0,0,-1,2013-10-26 11:37:22,2013-10-28 07:52:36,13014963CF10A,2013-10-26,,1,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-27,Risk of Violence,2,Low,2013-10-27,2013-10-26,2013-10-28,0,1,887,0,0,0\r\n9150,evan blake,evan,blake,2013-10-21,Male,1995-02-27,21,Less than 25,Caucasian,0,9,2,7,2,-3,2013-10-18 01:25:21,2013-10-18 08:21:29,13014568CF10A,2013-10-17,,4,F,Possession of LSD,1,15001555MO10A,(MO3),0,2015-02-06,Poss Of Controlled Substance,2015-02-06,2015-02-07,,1,15015322CF10A,(F2),2015-11-28,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2013-10-21,Risk of Violence,9,High,2013-10-21,2015-02-06,2015-02-07,2,0,473,1,1,1\r\n9157,perry turner,perry,turner,2013-01-22,Male,1980-10-25,35,25 - 45,African-American,0,10,0,0,22,0,2013-01-22 04:07:47,2013-01-24 05:56:12,13001025CF10A,2013-01-22,,0,F,\"Poss3,4 Methylenedioxymethcath\",1,13021408TC10A,(M1),,2013-04-14,Opert With Susp DL 2nd Offens,,,,1,13023901MM10A,(M1),2013-12-28,Battery,Risk of Recidivism,10,High,2013-01-22,Risk of Violence,7,Medium,2013-01-22,2013-01-22,2013-01-24,22,2,82,1,1,1\r\n9159,kavin compton,kavin,compton,2013-01-09,Male,1966-01-12,50,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-01-08 03:16:14,2013-01-17 05:32:25,13000614CF10A,,2013-01-08,1,F,arrest case no charge,1,13002119CF10A,(M1),0,2013-02-11,Resist/Obstruct W/O Violence,2013-02-11,2014-03-03,,1,13002119CF10A,(F2),2013-02-11,Agg Battery Grt/Bod/Harm,Risk of Recidivism,2,Low,2013-01-09,Risk of Violence,1,Low,2013-01-09,2013-02-11,2014-03-03,2,8,33,1,1,1\r\n9160,eddie mitchell,eddie,mitchell,2013-04-14,Male,1990-08-29,25,25 - 45,African-American,0,9,0,0,5,-1,2013-04-13 10:35:00,2013-04-15 04:04:55,13003834MM10A,,2013-04-13,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-14,Risk of Violence,9,High,2013-04-14,2013-09-13,2013-10-16,5,1,152,0,0,0\r\n9161,rosanne morgan,rosanne,morgan,2013-01-24,Female,1968-03-25,48,Greater than 45,Caucasian,0,9,0,0,1,,,,12012241CF10A,,2012-09-21,125,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-24,Risk of Violence,2,Low,2013-01-24,,,1,0,1163,0,0,0\r\n9165,eric mckenzie,eric,mckenzie,2013-08-26,Male,1990-03-15,26,25 - 45,African-American,0,9,0,0,0,-1,2013-08-25 07:42:30,2013-08-26 07:55:00,13012006CF10A,2013-08-25,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-26,Risk of Violence,10,High,2013-08-26,2013-10-23,2013-12-20,0,0,58,0,0,0\r\n9166,nicholas fleming,nicholas,fleming,2013-05-22,Male,1993-04-22,22,Less than 25,African-American,0,4,0,0,0,-1,2013-05-21 04:56:17,2013-05-22 07:40:50,13007235CF10A,2013-05-21,,1,F,Purchase/P/W/Int Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-22,Risk of Violence,5,Medium,2013-05-22,2013-05-21,2013-05-22,0,0,1045,0,0,0\r\n9167,willie way,willie,way,2013-12-22,Male,1986-07-15,29,25 - 45,African-American,0,3,0,0,0,0,2013-12-22 03:48:00,2013-12-22 08:17:21,13017641CF10A,2013-12-22,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-22,Risk of Violence,3,Low,2013-12-22,2013-12-22,2013-12-22,0,0,831,0,0,0\r\n9170,emanoil fanea,emanoil,fanea,2013-01-12,Male,1963-09-13,52,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-11 10:25:43,2013-01-12 01:20:11,13000523CF10A,2013-01-11,,1,F,Burglary Conveyance Assault/Bat,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-12,Risk of Violence,1,Low,2013-01-12,2013-01-11,2013-01-12,1,0,1175,0,0,0\r\n9172,lorenzo mckinney,lorenzo,mckinney,2013-10-29,Male,1994-06-17,21,Less than 25,African-American,0,7,0,0,0,-1,2013-10-28 10:17:17,2013-10-29 02:28:05,13015037CF10A,2013-10-28,,1,F,Possession of Cocaine,1,16000721CF10A,(F2),0,2016-01-18,Deliver Cocaine,2016-01-18,2016-01-26,,0,,,,,Risk of Recidivism,7,Medium,2013-10-29,Risk of Violence,7,Medium,2013-10-29,2016-01-18,2016-01-26,0,0,811,1,0,0\r\n9173,dalton lewis,dalton,lewis,2013-12-28,Male,1994-06-20,21,Less than 25,Caucasian,0,8,0,0,1,0,2013-12-28 02:53:59,2013-12-28 01:30:48,13017910CF10A,2013-12-27,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-28,Risk of Violence,6,Medium,2013-12-28,2013-12-28,2013-12-28,1,0,825,0,0,0\r\n9180,michael leslie,michael,leslie,2013-09-22,Male,1991-07-14,24,Less than 25,African-American,0,7,0,0,3,0,2013-09-22 05:19:47,2013-12-24 10:49:05,13013342CF10A,2013-09-22,,0,F,Aggrav Stalking After Injunctn,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-22,Risk of Violence,6,Medium,2013-09-22,2013-09-22,2013-12-24,3,93,922,0,0,0\r\n9183,doshan felix,doshan,felix,2013-05-15,Female,1985-06-22,30,25 - 45,Caucasian,0,2,0,0,0,-1,2013-05-14 09:22:05,2013-05-15 01:21:03,13009337MM10A,2013-05-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-15,Risk of Violence,2,Low,2013-05-15,2013-05-14,2013-05-15,0,0,1052,0,0,0\r\n9186,ernest ellison,ernest,ellison,2013-02-14,Male,1975-01-02,41,25 - 45,African-American,0,9,1,0,9,-1,2013-02-13 05:10:15,2013-02-15 05:30:02,11006631TC10A,2011-02-12,,733,M,Opert With Susp DL 2nd Offens,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-14,Risk of Violence,6,Medium,2013-02-14,2013-02-13,2013-02-15,9,1,1142,0,0,0\r\n9188,ernesto panduro-rojas,ernesto,panduro-rojas,2013-01-18,Male,1962-10-26,53,Greater than 45,Hispanic,0,1,0,0,1,,,,12015942CF10A,2012-10-28,,82,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,,,1,0,1169,0,0,0\r\n9189,cletus day,cletus,day,2013-12-03,Male,1967-11-01,48,Greater than 45,Caucasian,0,2,0,0,6,-26,2013-11-07 12:05:05,2013-11-13 09:53:57,13017959CF10A,2013-11-06,,27,F,Fel Drive License Perm Revoke,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-03,Risk of Violence,1,Low,2013-12-03,2014-01-25,2014-01-30,6,0,53,0,0,0\r\n9192,kimberly ware,kimberly,ware,2013-02-18,Female,1982-03-17,34,25 - 45,African-American,0,1,0,0,1,-1,2013-02-17 07:32:38,2013-02-18 08:01:59,13003428MM10A,2013-02-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-18,Risk of Violence,1,Low,2013-02-18,2013-02-17,2013-02-18,1,0,1138,0,0,0\r\n9200,dennis jackson,dennis,jackson,2013-12-23,Male,1977-04-01,39,25 - 45,Other,0,4,0,0,1,,,,10015308CF10A,,2012-10-11,438,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-23,Risk of Violence,2,Low,2013-12-23,,,1,0,830,0,0,0\r\n9202,tina house,tina,house,2013-01-30,Female,1967-06-11,48,Greater than 45,Caucasian,0,8,0,0,17,,,,08015791CF10A,,2008-08-20,1624,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-30,Risk of Violence,5,Medium,2013-01-30,2006-04-19,2007-04-20,17,0,1157,0,0,0\r\n9203,jose avila,jose,avila,2013-04-15,Male,1984-07-24,31,25 - 45,Hispanic,0,7,0,0,1,583,2014-11-19 10:24:10,2014-11-25 08:38:47,11015474CF10A,,2011-11-20,512,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-15,Risk of Violence,2,Low,2013-04-15,2014-11-19,2014-11-25,1,0,583,0,0,0\r\n9205,oswaldo lucas,oswaldo,lucas,2013-04-26,Male,1989-08-10,26,25 - 45,Hispanic,0,2,0,0,0,,,,,,,,M,,1,13005940CF10A,(F3),,2015-12-14,Neglect Child / No Bodily Harm,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-26,Risk of Violence,3,Low,2013-04-26,2013-04-26,2013-04-27,0,1,962,1,0,0\r\n9207,albert hanna,albert,hanna,2013-12-18,Male,1991-03-16,25,25 - 45,African-American,0,2,0,0,1,0,2013-12-18 02:16:46,2013-12-18 08:23:35,13023416MM10A,2013-12-18,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-18,Risk of Violence,3,Low,2013-12-18,2013-12-18,2013-12-18,1,0,835,0,0,0\r\n9212,richard spitler,richard,spitler,2013-05-08,Male,1959-06-08,56,Greater than 45,Caucasian,0,1,0,0,6,-1,2013-05-07 09:00:57,2013-05-08 06:44:34,13008020CF10A,2013-05-07,,1,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-08,Risk of Violence,1,Low,2013-05-08,2013-05-07,2013-05-08,6,0,1059,0,0,0\r\n9214,ryan greenwood,ryan,greenwood,2013-04-03,Male,1993-01-23,23,Less than 25,African-American,0,4,0,0,0,0,2013-04-03 02:54:54,2013-04-03 09:43:32,13004794CF10A,2013-04-02,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-03,Risk of Violence,5,Medium,2013-04-03,2013-04-03,2013-04-03,0,0,1094,0,0,0\r\n9215,christopher lopez,christopher,lopez,2014-01-09,Male,1995-01-02,21,Less than 25,Caucasian,0,4,0,0,0,-1,2014-01-08 10:11:04,2014-01-09 12:48:56,14000342CF10A,2014-01-08,,1,M,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-09,Risk of Violence,6,Medium,2014-01-09,2014-01-08,2014-01-09,0,0,813,0,0,0\r\n9216,dagobret schmalhaus,dagobret,schmalhaus,2013-08-19,Male,1949-12-21,66,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-18 08:34:53,2013-08-20 07:37:33,13015626MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-20,0,1,956,0,0,0\r\n9219,marcus albritton,marcus,albritton,2013-03-21,Male,1987-12-21,28,25 - 45,African-American,0,7,0,0,7,-1,2013-03-20 06:48:40,2013-03-21 01:37:15,13005471MM10A,2013-03-20,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-21,Risk of Violence,4,Low,2013-03-21,2013-07-31,2013-09-21,7,0,132,0,0,0\r\n9220,jonathan olazabal,jonathan,olazabal,2013-12-24,Male,1986-07-23,29,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-24 04:19:53,2013-12-24 01:22:49,13023712MM10A,2013-12-24,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-24,Risk of Violence,1,Low,2013-12-24,2013-12-24,2013-12-24,0,0,829,0,0,0\r\n9224,martin espinoza,martin,espinoza,2014-01-06,Male,1977-02-27,39,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-05 05:46:37,2014-01-06 08:24:58,14000198CF10A,2014-01-05,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-01-05,2014-01-06,0,0,816,0,0,0\r\n9227,jeremy pelehowski,jeremy,pelehowski,2013-03-28,Male,1985-03-24,31,25 - 45,Caucasian,0,2,0,0,1,-1,2013-03-27 02:03:43,2013-03-28 07:56:52,13003957CF10A,,2013-03-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-28,Risk of Violence,2,Low,2013-03-28,2013-03-27,2013-03-28,1,0,1100,0,0,0\r\n9229,jason olreidge,jason,olreidge,2013-02-17,Male,1994-03-08,22,Less than 25,African-American,0,8,0,0,0,-1,2013-02-16 11:06:26,2013-04-11 08:20:14,13003371MM10A,2013-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-17,Risk of Violence,6,Medium,2013-02-17,2013-02-16,2013-04-11,0,53,1139,0,0,0\r\n9230,shannon santamaria,shannon,santamaria,2013-10-25,Female,1993-10-14,22,Less than 25,Caucasian,0,5,0,0,0,-1,2013-10-24 03:53:21,2013-10-25 02:25:57,13020162MM10A,2013-10-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-25,Risk of Violence,5,Medium,2013-10-25,2013-10-24,2013-10-25,0,0,889,0,0,0\r\n9231,jassen lamparter,jassen,lamparter,2013-09-25,Male,1980-07-23,35,25 - 45,Caucasian,0,4,0,2,3,0,2013-09-25 01:21:21,2013-09-26 04:17:22,13013448CF10A,2013-09-24,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-25,Risk of Violence,1,Low,2013-09-25,2013-09-25,2013-09-26,3,1,919,0,0,0\r\n9233,channel medina,channel,medina,2014-01-11,Female,1978-09-17,37,25 - 45,African-American,0,5,0,0,0,,,,14000479CF10A,2014-01-11,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-11,Risk of Violence,2,Low,2014-01-11,,,0,0,811,0,0,0\r\n9234,stephanie mclaurin,stephanie,mclaurin,2013-01-01,Female,1985-06-29,30,25 - 45,African-American,0,2,0,0,0,,,,13000005CF10A,2012-12-31,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-01,Risk of Violence,2,Low,2013-01-01,,,0,0,1186,0,0,0\r\n9235,fredrick grant,fredrick,grant,2013-01-18,Male,1960-03-06,56,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-17 10:28:39,2013-01-18 08:29:47,13004749CF10A,2013-01-17,,1,F,Felony/Driving Under Influence,1,15002735MM10A,(M1),0,2015-03-08,Battery,2015-03-08,2015-03-09,,1,15002735MM10A,(M1),2015-03-08,Battery,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2015-03-08,2015-03-09,1,0,779,1,0,0\r\n9238,zandra haywood,zandra,haywood,2014-01-26,Female,1981-12-20,34,25 - 45,African-American,0,1,0,0,0,-1,2014-01-25 09:03:48,2014-01-26 06:20:03,14001106CF10A,2014-01-25,,1,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-26,Risk of Violence,1,Low,2014-01-26,2014-01-25,2014-01-26,0,0,796,0,0,0\r\n9241,douglas schnoor,douglas,schnoor,2013-09-14,Male,1972-08-06,43,25 - 45,Caucasian,0,1,0,0,2,-1,2013-09-13 09:19:12,2013-09-14 07:13:34,13012955CF10A,,2013-09-13,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-14,Risk of Violence,1,Low,2013-09-14,2013-09-13,2013-09-14,2,0,930,0,0,0\r\n9242,paul bergeron,paul,bergeron,2013-01-08,Male,1977-08-19,38,25 - 45,Caucasian,0,1,0,0,0,-1,2013-01-07 10:25:39,2013-01-08 09:34:17,13000412CF10A,2013-01-07,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-08,Risk of Violence,1,Low,2013-01-08,2013-01-07,2013-01-08,0,0,1179,0,0,0\r\n9243,shaun spells,shaun,spells,2013-03-11,Male,1976-12-08,39,25 - 45,Caucasian,0,3,0,0,3,-1,2013-03-10 07:57:29,2013-03-11 03:27:21,13003533CF10A,2013-03-10,,1,F,Poss Wep Conv Felon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-11,Risk of Violence,6,Medium,2013-03-11,2013-03-10,2013-03-11,3,0,1117,0,0,0\r\n9245,angelo armbrister,angelo,armbrister,2013-04-29,Male,1989-10-06,26,25 - 45,African-American,0,3,0,0,2,0,2013-04-29 12:50:46,2013-04-29 09:25:26,13008163MM10A,2013-04-29,,0,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-29,Risk of Violence,3,Low,2013-04-29,2013-04-29,2013-04-29,2,0,1068,0,0,0\r\n9246,kellie werba,kellie,werba,2014-01-24,Female,1960-11-25,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-23 09:15:43,2014-01-25 02:22:49,14001463MM10A,2014-01-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-24,Risk of Violence,1,Low,2014-01-24,2014-01-23,2014-01-25,0,1,798,0,0,0\r\n9248,anthony bass,anthony,bass,2013-03-26,Male,1954-05-08,61,Greater than 45,African-American,0,7,0,0,25,-1,2013-03-25 01:22:14,2013-03-26 07:28:22,13004315CF10A,2013-03-25,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-26,Risk of Violence,4,Low,2013-03-26,2013-03-25,2013-03-26,25,0,1102,0,0,0\r\n9249,willy jean,willy,jean,2013-03-12,Male,1982-09-22,33,25 - 45,Other,0,1,0,0,0,-1,2013-03-11 12:27:40,2013-03-22 09:48:08,13004872MM10A,2013-03-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-12,Risk of Violence,2,Low,2013-03-12,2013-03-11,2013-03-22,0,10,1116,0,0,0\r\n9253,scott lara,scott,lara,2013-09-27,Male,1976-03-30,40,25 - 45,Caucasian,0,7,0,0,4,0,2013-09-27 01:04:37,2013-09-28 04:31:01,13013615CF10A,2013-09-26,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-27,Risk of Violence,7,Medium,2013-09-27,2013-12-12,2013-12-25,4,1,76,0,0,0\r\n9254,michael kinsey,michael,kinsey,2013-04-11,Male,1982-06-24,33,25 - 45,African-American,0,2,0,0,3,0,2013-04-11 01:37:03,2013-04-11 07:46:59,13005195CF10A,2013-04-10,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-11,Risk of Violence,1,Low,2013-04-11,2013-04-11,2013-04-11,3,0,1086,0,0,0\r\n9255,mark follen,mark,follen,2014-11-07,Male,1989-08-30,26,25 - 45,Caucasian,0,6,0,0,0,-1,2014-11-06 06:10:20,2014-11-07 08:40:38,14014921CF10A,2014-11-06,,1,F,Tamper With Witness/Victim/CI,1,15012061CF10A,(F7),,2015-09-17,Burglary Dwelling Assault/Batt,,,,1,15012061CF10A,(F7),2015-09-17,Burglary Dwelling Assault/Batt,Risk of Recidivism,6,Medium,2014-11-07,Risk of Violence,4,Low,2014-11-07,2014-11-06,2014-11-07,0,0,314,1,1,1\r\n9257,rodney hudson,rodney,hudson,2014-02-11,Male,1987-12-04,28,25 - 45,African-American,0,2,0,0,0,-1,2014-02-10 04:55:34,2014-02-11 01:42:01,14001882CF10A,2014-02-10,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-11,Risk of Violence,3,Low,2014-02-11,2014-02-10,2014-02-11,0,0,780,0,0,0\r\n9258,miguel vegarivera,miguel,vegarivera,2013-01-05,Male,1971-02-15,45,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-04 05:56:18,2013-01-05 07:57:29,13000216MM10A,2013-01-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-05,Risk of Violence,1,Low,2013-01-05,2013-01-04,2013-01-05,0,0,1182,0,0,0\r\n9260,diane karm,diane,karm,2013-03-15,Female,1958-08-10,57,Greater than 45,Caucasian,0,2,0,0,4,-1,2013-03-14 11:21:16,2013-11-27 06:50:42,13003224CF10A,,2013-03-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-15,Risk of Violence,1,Low,2013-03-15,2013-03-14,2013-11-27,4,257,1113,0,0,0\r\n9261,michael sydnor,michael,sydnor,2013-09-29,Male,1989-08-27,26,25 - 45,African-American,0,7,0,0,3,-1,2013-09-28 06:05:10,2013-11-14 08:19:34,13013621CF10A,2013-09-28,,1,F,Aggravated Battery / Pregnant,1,14007413MM10A,(M1),0,2014-05-05,Battery,2014-05-05,2015-01-02,,1,14007413MM10A,(M1),2014-05-05,Battery,Risk of Recidivism,7,Medium,2013-09-29,Risk of Violence,9,High,2013-09-29,2014-05-05,2015-01-02,3,46,218,1,1,1\r\n9262,jim beausejour,jim,beausejour,2013-09-06,Male,1981-03-06,35,25 - 45,African-American,0,8,0,0,1,-1,2013-09-05 12:59:53,2013-09-06 01:34:22,13012537CF10A,2013-09-05,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-09-05,2013-09-06,1,0,938,0,0,0\r\n9264,eusebio diaz acosta,eusebio,diaz acosta,2013-04-07,Male,1961-12-15,54,Greater than 45,Hispanic,0,1,0,0,0,0,2013-04-07 03:17:08,2013-04-09 07:14:08,13004979CF10A,2013-04-07,,0,F,Grand Theft in the 1st Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-07,Risk of Violence,1,Low,2013-04-07,2013-04-07,2013-04-09,0,2,1090,0,0,0\r\n9266,amina wong-cooper,amina,wong-cooper,2014-02-26,Female,1986-06-28,29,25 - 45,African-American,0,5,0,0,0,-1,2014-02-25 10:19:07,2014-02-28 09:41:33,14002682CF10A,2014-02-25,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-26,Risk of Violence,4,Low,2014-02-26,2014-02-25,2014-02-28,0,2,765,0,0,0\r\n9267,michelle kastner,michelle,kastner,2013-12-19,Female,1975-05-22,40,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-18 07:23:28,2013-12-19 09:39:49,13023426MM10A,2013-12-18,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-19,Risk of Violence,1,Low,2013-12-19,2013-12-18,2013-12-19,0,0,834,0,0,0\r\n9269,ashley morant,ashley,morant,2013-05-11,Female,1990-09-10,25,25 - 45,African-American,0,2,0,1,0,-1,2013-05-10 09:11:37,2013-05-11 07:06:19,13009087MM10A,2013-05-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-11,Risk of Violence,2,Low,2013-05-11,2013-05-10,2013-05-11,0,0,1056,0,0,0\r\n9270,johnnie robinson,johnnie,robinson,2013-05-16,Male,1971-08-19,44,25 - 45,African-American,0,6,0,0,3,-1,2013-05-15 09:10:58,2013-05-18 05:34:59,13028152TC10A,2013-05-15,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-16,Risk of Violence,5,Medium,2013-05-16,2013-07-10,2013-12-10,3,2,55,0,0,0\r\n9271,tyrone hawthorne,tyrone,hawthorne,2013-05-02,Male,1968-02-28,48,Greater than 45,Caucasian,0,1,0,0,1,-31,2013-04-01 03:29:17,2013-04-01 08:56:51,13006254MM10A,2013-04-01,,31,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-02,Risk of Violence,1,Low,2013-05-02,2013-04-01,2013-04-01,1,0,1065,0,0,0\r\n9272,ellan laflamme,ellan,laflamme,2014-02-28,Female,1956-08-11,59,Greater than 45,Caucasian,0,1,0,0,1,-302,2013-05-02 04:55:58,2013-07-01 11:42:55,13006298CF10A,2013-05-02,,302,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-28,Risk of Violence,1,Low,2014-02-28,2013-05-02,2013-07-01,1,0,763,0,0,0\r\n9275,johnson pierre,johnson,pierre,2013-10-19,Male,1986-06-12,29,25 - 45,African-American,0,2,0,0,0,-1,2013-10-18 10:11:46,2013-12-30 06:13:11,13014591CF10A,2013-10-18,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-19,Risk of Violence,2,Low,2013-10-19,2014-04-09,2014-04-17,0,72,172,0,0,0\r\n9276,leland mclaughlin,leland,mclaughlin,2013-08-19,Male,1960-01-15,56,Greater than 45,Caucasian,0,1,0,0,0,-4,2013-08-15 04:33:21,2013-08-15 09:09:29,13015481MM10A,2013-08-15,,4,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-15,2013-08-15,0,0,956,0,0,0\r\n9277,marcellie cabral,marcellie,cabral,2014-01-24,Female,1988-07-26,27,25 - 45,African-American,0,3,0,0,0,-1,2014-01-23 08:08:50,2014-01-24 10:07:59,14001280MM10A,2014-01-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-24,Risk of Violence,3,Low,2014-01-24,2014-01-23,2014-01-24,0,0,798,0,0,0\r\n9279,jerriann harris,jerriann,harris,2013-03-04,Female,1987-03-22,29,25 - 45,Caucasian,0,7,0,0,0,-1,2013-03-03 09:50:11,2013-03-04 08:09:45,13004894MM10A,2013-03-03,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-04,Risk of Violence,3,Low,2013-03-04,2013-03-03,2013-03-04,0,0,1124,0,0,0\r\n9280,rianna magee,rianna,magee,2013-11-12,Female,1981-10-01,34,25 - 45,Caucasian,0,4,0,0,4,-1,2013-11-11 07:15:49,2013-11-12 01:43:06,13021245MM10A,2013-11-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-12,Risk of Violence,2,Low,2013-11-12,2013-11-11,2013-11-12,4,0,871,0,0,0\r\n9282,samantha stsuria,samantha,stsuria,2013-01-15,Female,1994-01-07,22,Less than 25,African-American,0,7,0,0,0,0,2013-01-15 12:42:27,2013-01-15 02:11:49,13000637CF10A,2013-01-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,6,Medium,2013-01-15,2013-01-15,2013-01-15,0,0,1172,0,0,0\r\n9284,ulrike ballesteros,ulrike,ballesteros,2014-03-22,Male,1984-09-29,31,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-21 11:14:06,2014-03-24 04:48:24,14004005CF10A,2014-03-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-21,2014-03-24,0,2,741,0,0,0\r\n9285,cynthia taylor,cynthia,taylor,2014-01-05,Male,1968-12-10,47,Greater than 45,African-American,0,2,0,0,3,-1,2014-01-04 11:28:11,2014-01-06 11:05:06,14000160CF10A,2014-01-04,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-05,Risk of Violence,1,Low,2014-01-05,2014-01-04,2014-01-06,3,1,817,0,0,0\r\n9288,savannah click,savannah,click,2013-09-23,Female,1995-05-25,20,Less than 25,Caucasian,0,4,0,0,1,-49,2013-08-05 12:08:50,2013-09-11 07:01:10,13010811CF10A,2013-08-04,,50,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-23,Risk of Violence,6,Medium,2013-09-23,2013-08-05,2013-09-11,1,0,921,0,0,0\r\n9292,stephen mcnair,stephen,mcnair,2013-08-10,Male,1976-08-31,39,25 - 45,African-American,0,9,0,0,4,-1,2013-08-09 07:48:19,2013-12-06 04:19:37,13011198CF10A,2013-08-09,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-10,Risk of Violence,5,Medium,2013-08-10,2013-08-09,2013-12-06,4,118,965,0,0,0\r\n9295,carlos hernandez,carlos,hernandez,2013-09-06,Male,1985-07-18,30,25 - 45,Hispanic,0,2,0,0,2,-1,2013-09-05 07:52:06,2013-09-11 08:03:44,13012540CF10A,2013-09-05,,1,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-06,Risk of Violence,2,Low,2013-09-06,2013-10-30,2013-11-06,2,5,54,0,0,0\r\n9297,melvin thirsty,melvin,thirsty,2013-10-11,Male,1954-10-15,61,Greater than 45,African-American,0,8,0,0,2,0,2013-10-11 12:18:27,2013-10-12 05:32:14,13019317MM10A,2013-10-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-11,Risk of Violence,10,High,2013-10-11,2013-10-11,2013-10-12,2,1,903,0,0,0\r\n9298,jorge pena,jorge,pena,2013-10-18,Male,1978-10-19,37,25 - 45,Hispanic,0,4,0,0,3,0,2013-10-18 02:04:41,2013-10-18 07:46:06,13019718MM10A,2013-10-18,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-18,Risk of Violence,3,Low,2013-10-18,2013-10-18,2013-10-18,3,0,896,0,0,0\r\n9299,roger goindoo,roger,goindoo,2014-05-17,Male,1977-08-03,38,25 - 45,Other,0,1,0,0,1,-1,2014-05-16 05:12:16,2014-05-17 09:27:02,14006807CF10A,2014-05-16,,1,F,Possession Of Alprazolam,1,15008628MM10A,(M1),0,2015-08-15,Battery,2015-08-15,2015-09-10,,1,15008628MM10A,(M1),2015-08-15,Battery,Risk of Recidivism,1,Low,2014-05-17,Risk of Violence,1,Low,2014-05-17,2015-08-15,2015-09-10,1,0,455,1,1,1\r\n9303,joseph mims,joseph,mims,2013-02-07,Male,1985-11-02,30,25 - 45,African-American,0,9,0,0,0,-1,2013-02-06 01:02:38,2013-02-07 07:22:44,13002696MM10A,2013-02-06,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-07,Risk of Violence,7,Medium,2013-02-07,2013-02-06,2013-02-07,0,0,1149,0,0,0\r\n9309,theova milfort,theova,milfort,2013-12-11,Male,1968-10-09,47,Greater than 45,Other,0,1,0,0,0,-1,2013-12-10 03:24:17,2013-12-12 03:36:20,13017101CF10A,2013-12-10,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2013-12-10,2013-12-12,0,1,842,0,0,0\r\n9310,scott stiefeld,scott,stiefeld,2014-03-26,Male,1959-04-27,56,Greater than 45,Caucasian,0,1,0,0,5,-238,2013-07-31 04:46:16,2014-03-26 10:20:35,13010717CF10A,2013-07-31,,238,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-26,Risk of Violence,1,Low,2014-03-26,2013-07-31,2014-03-26,5,0,737,0,0,0\r\n9311,maria davila-alvarez,maria,davila-alvarez,2014-03-12,Female,1957-06-09,58,Greater than 45,Hispanic,0,5,0,0,1,-345,2013-04-01 07:04:46,2013-04-02 06:38:55,13004655CF10A,,2013-10-30,133,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-12,Risk of Violence,3,Low,2014-03-12,2013-04-01,2013-04-02,1,0,751,0,0,0\r\n9319,theodore mullins,theodore,mullins,2013-09-05,Male,1987-08-07,28,25 - 45,African-American,0,6,0,0,12,-69,2013-06-28 06:03:06,2013-07-04 05:28:18,13012417MM10A,,2013-09-04,1,M,arrest case no charge,1,14003870MM10A,(M1),,2013-12-31,Possess Cannabis/20 Grams Or Less,,,,1,14006415MM10A,(M1),2014-03-12,Battery,Risk of Recidivism,6,Medium,2013-09-05,Risk of Violence,5,Medium,2013-09-05,2015-03-09,2015-04-16,12,0,117,1,1,1\r\n9320,glasford prehay,glasford,prehay,2013-03-28,Male,1956-07-27,59,Greater than 45,African-American,0,1,0,0,1,-1,2013-03-27 09:14:17,2013-05-29 06:13:48,13005992MM10A,2013-03-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-27,2013-05-29,1,62,1100,0,0,0\r\n9323,randell williams,randell,williams,2013-09-23,Male,1993-01-04,23,Less than 25,Caucasian,0,9,1,0,4,-1,2013-09-22 01:06:45,2013-09-24 04:25:18,13018070MM10A,2013-09-22,,1,M,Assault,1,15004682MM10A,(M1),0,2015-04-24,Battery,2015-04-24,2015-04-27,,1,15004682MM10A,(M1),2015-04-24,Battery,Risk of Recidivism,9,High,2013-09-23,Risk of Violence,9,High,2013-09-23,2015-04-24,2015-04-27,4,1,578,1,1,1\r\n9328,fanny pena,fanny,pena,2014-01-31,Female,1975-03-15,41,25 - 45,Hispanic,0,1,0,0,0,-1,2014-01-30 06:22:27,2014-01-31 10:00:17,14001373CF10A,2014-01-30,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-31,Risk of Violence,1,Low,2014-01-31,2014-01-30,2014-01-31,0,0,791,0,0,0\r\n9332,miles kemp,miles,kemp,2013-09-11,Male,1994-04-12,22,Less than 25,African-American,0,7,0,0,0,-1,2013-09-10 08:06:30,2013-09-12 08:19:10,13012819CF10A,2013-09-10,,1,F,Purchase Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-11,Risk of Violence,7,Medium,2013-09-11,2014-11-25,2014-12-04,0,1,440,0,0,0\r\n9336,colin reddie,colin,reddie,2013-12-07,Male,1990-02-22,26,25 - 45,African-American,0,4,0,0,5,-1,2013-12-06 02:33:03,2013-12-07 01:40:08,13016912CF10A,2013-12-06,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-07,Risk of Violence,5,Medium,2013-12-07,2013-12-06,2013-12-07,5,0,846,0,0,0\r\n9337,gusdino zaren,gusdino,zaren,2014-02-07,Male,1971-09-07,44,25 - 45,Caucasian,0,5,0,0,1,0,2014-02-07 05:14:26,2014-02-09 01:53:51,14001756CF10A,2014-02-07,,0,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-07,Risk of Violence,2,Low,2014-02-07,2014-02-07,2014-02-09,1,2,784,0,0,0\r\n9338,norrissie howard,norrissie,howard,2014-03-01,Female,1981-10-07,34,25 - 45,African-American,0,1,0,0,0,-1,2014-02-28 07:07:16,2014-03-01 09:05:07,14003508MM10A,2014-02-28,,1,M,Battery,1,14016766MM10A,(M2),,2014-09-16,Criminal Mischief,,,,1,14016766MM10A,(M1),2014-09-16,Battery,Risk of Recidivism,1,Low,2014-03-01,Risk of Violence,1,Low,2014-03-01,2015-10-27,2015-10-28,0,0,199,1,1,1\r\n9343,eclaire salomon,eclaire,salomon,2013-02-09,Male,1986-07-10,29,25 - 45,African-American,0,9,0,0,8,-1,2013-02-08 07:03:27,2013-02-13 09:34:57,13006354TC10A,2012-12-06,,65,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-09,Risk of Violence,4,Low,2013-02-09,2015-02-27,2015-02-27,8,4,748,0,0,0\r\n9346,mallory williams,mallory,williams,2013-11-01,Female,1984-07-06,31,25 - 45,African-American,0,6,0,0,0,-5,2013-10-27 06:08:06,2013-10-31 09:28:56,13020378MM10A,2013-10-27,,5,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-01,Risk of Violence,4,Low,2013-11-01,2013-10-27,2013-10-31,0,0,882,0,0,0\r\n9348,wesley fields,wesley,fields,2014-02-03,Male,1994-05-21,21,Less than 25,Caucasian,0,6,0,0,2,-10,2014-01-24 10:45:30,2014-01-25 02:10:25,14001079CF10A,,2014-01-24,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-03,Risk of Violence,5,Medium,2014-02-03,2014-01-24,2014-01-25,2,0,788,0,0,0\r\n9350,john gilhauley,john,gilhauley,2013-04-01,Male,1981-06-28,34,25 - 45,Caucasian,0,5,0,0,4,-1,2013-03-31 07:55:05,2013-04-01 03:57:54,13004629CF10A,2013-03-31,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-01,Risk of Violence,6,Medium,2013-04-01,2013-03-31,2013-04-01,4,0,1096,0,0,0\r\n9351,joe wallace,joe,wallace,2013-03-28,Male,1961-05-05,54,Greater than 45,African-American,0,6,0,0,21,-1,2013-03-27 09:35:33,2013-03-28 08:15:31,13004418CF10A,2013-03-27,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-27,2013-03-28,21,0,1100,0,0,0\r\n9352,joey pierce,joey,pierce,2013-08-07,Male,1995-06-13,20,Less than 25,Caucasian,0,10,4,0,4,-1,2013-08-06 10:51:36,2013-08-07 08:37:58,13011017CF10A,2013-08-06,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-07,Risk of Violence,10,High,2013-08-07,2013-08-06,2013-08-07,4,0,968,0,0,0\r\n9353,james fox,james,fox,2014-07-04,Male,1984-08-03,31,25 - 45,Caucasian,0,3,0,0,1,-1,2014-07-03 10:01:59,2014-08-08 10:32:16,14009379CF10A,2014-07-03,,1,F,Stalking (Aggravated),1,14009443CF10A,(F3),,2014-07-08,Aggrav Stalking After Injunctn,,,,1,14015220CF10A,(F3),2014-11-01,Stalking (Aggravated),Risk of Recidivism,3,Low,2014-07-04,Risk of Violence,3,Low,2014-07-04,2014-07-03,2014-08-08,1,0,4,1,1,1\r\n9354,shayne maloney,shayne,maloney,2013-10-14,Male,1993-08-18,22,Less than 25,Caucasian,0,4,0,0,0,0,2013-10-14 04:47:15,2013-10-15 04:13:04,13019486MM10A,2013-10-14,,0,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-14,Risk of Violence,5,Medium,2013-10-14,2014-11-16,2014-11-25,0,1,398,0,0,0\r\n9357,dantonio frazier,dantonio,frazier,2014-03-23,Male,1979-10-26,36,25 - 45,African-American,0,4,0,0,6,-1,2014-03-22 09:43:58,2014-03-23 08:40:01,14005013MM10A,2014-03-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-23,Risk of Violence,1,Low,2014-03-23,2014-03-22,2014-03-23,6,0,740,0,0,0\r\n9359,daniel rauer,daniel,rauer,2013-07-09,Male,1979-10-29,36,25 - 45,Caucasian,0,1,0,0,3,,,,13019145TC10A,2013-03-15,,116,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-09,Risk of Violence,2,Low,2013-07-09,,,3,0,997,0,0,0\r\n9364,marcus beachem,marcus,beachem,2013-12-03,Male,1965-11-04,50,Greater than 45,African-American,0,8,0,0,15,-1,2013-12-02 07:48:03,2013-12-03 08:28:31,13022423MM10A,2013-12-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-03,Risk of Violence,4,Low,2013-12-03,2013-12-02,2013-12-03,15,0,850,0,0,0\r\n9366,mimmose nicolas,mimmose,nicolas,2013-05-10,Female,1966-11-12,49,Greater than 45,Other,0,1,0,0,0,-1,2013-05-09 09:53:21,2013-05-10 10:01:06,13008991MM10A,2013-05-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-10,Risk of Violence,1,Low,2013-05-10,2013-05-09,2013-05-10,0,0,1057,0,0,0\r\n9369,timothy bedford,timothy,bedford,2014-01-05,Male,1985-01-15,31,25 - 45,African-American,0,4,0,0,1,-1,2014-01-04 07:13:06,2014-01-05 08:45:51,13012809TC10A,2012-10-18,,444,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-05,Risk of Violence,2,Low,2014-01-05,2014-01-04,2014-01-05,1,0,817,0,0,0\r\n9372,leonard pell,leonard,pell,2013-08-28,Male,1995-03-16,21,Less than 25,African-American,1,9,0,1,2,-1,2013-08-27 05:04:38,2013-10-02 09:14:39,13004338CF10A,,2013-08-28,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-28,Risk of Violence,9,High,2013-08-28,2013-08-27,2013-10-02,2,35,947,0,0,0\r\n9376,westley mohammed,westley,mohammed,2013-11-12,Male,1986-12-09,29,25 - 45,Other,0,2,0,0,0,-1,2013-11-11 02:32:59,2013-11-12 08:34:16,13015696CF10A,2013-11-11,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-12,Risk of Violence,3,Low,2013-11-12,2013-11-11,2013-11-12,0,0,871,0,0,0\r\n9377,andres power,andres,power,2013-01-06,Male,1955-01-13,61,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-01-05 11:02:01,2013-01-06 01:15:02,13000207CF10A,,2013-01-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-06,Risk of Violence,1,Low,2013-01-06,2013-01-05,2013-01-06,0,0,1181,0,0,0\r\n9378,mindy morris,mindy,morris,2014-01-15,Female,1990-08-06,25,25 - 45,Caucasian,0,9,0,0,2,16,2014-01-31 12:17:38,2014-02-01 09:34:23,13016686CF10A,2013-12-02,,44,F,Crim Use of Personal ID Info,1,14005763CF10A,(M1),0,2014-04-25,Resist/Obstruct W/O Violence,2014-04-25,2014-05-02,,1,14016017MM10A,(M1),2014-11-06,Battery,Risk of Recidivism,9,High,2014-01-15,Risk of Violence,7,Medium,2014-01-15,2014-01-31,2014-02-01,2,0,16,0,1,1\r\n9379,anisa kumar,anisa,kumar,2014-01-13,Female,1989-09-30,26,25 - 45,Other,0,2,0,0,1,-31,2013-12-13 11:08:32,2013-12-14 01:47:43,13017267CF10A,2013-12-13,,31,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-13,Risk of Violence,2,Low,2014-01-13,2013-12-13,2013-12-14,1,0,809,0,0,0\r\n9380,andy cruz,andy,cruz,2013-12-13,Male,1978-02-05,38,25 - 45,Caucasian,0,4,0,0,5,-1,2013-12-12 06:13:20,2013-12-13 08:38:01,13017206CF10A,2013-12-12,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-13,Risk of Violence,1,Low,2013-12-13,2013-12-12,2013-12-13,5,0,840,0,0,0\r\n9381,justin armstrong,justin,armstrong,2013-12-09,Male,1981-02-18,35,25 - 45,Caucasian,0,1,0,0,2,-1,2013-12-08 06:16:15,2013-12-09 01:38:42,13022700MM10A,2013-12-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,2,Low,2013-12-09,2013-12-08,2013-12-09,2,0,844,0,0,0\r\n9383,jeffrey fulton,jeffrey,fulton,2013-09-19,Male,1966-02-12,50,Greater than 45,African-American,0,5,0,0,10,-48,2013-08-02 12:44:24,2013-09-19 12:07:26,11016558CF10A,,2013-08-02,48,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-19,Risk of Violence,2,Low,2013-09-19,2014-03-17,2014-03-21,10,0,179,0,0,0\r\n9387,abel fernandez,abel,fernandez,2014-01-28,Male,1986-09-17,29,25 - 45,Caucasian,0,2,0,0,1,-18,2014-01-10 09:37:11,2014-01-13 07:58:10,11008191CF10A,,2014-01-10,18,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-28,Risk of Violence,3,Low,2014-01-28,2014-01-10,2014-01-13,1,0,794,0,0,0\r\n9388,jailton sousa,jailton,sousa,2014-01-21,Male,1969-09-14,46,Greater than 45,Caucasian,0,1,0,0,0,0,2014-01-21 04:33:26,2014-01-21 08:51:18,14000873CF10A,2014-01-21,,0,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-21,Risk of Violence,1,Low,2014-01-21,2014-01-21,2014-01-21,0,0,801,0,0,0\r\n9392,paul kitchen,paul,kitchen,2013-01-22,Male,1962-07-03,53,Greater than 45,Caucasian,0,5,0,0,1,-1,2013-01-21 11:09:46,2013-01-22 08:54:01,13001443MM10A,2013-01-21,,1,M,Battery,1,15004095CF10A,(F3),1,2015-03-27,Felony Battery (Dom Strang),2015-03-28,2015-03-30,,1,15004095CF10A,(F3),2015-03-27,Felony Battery (Dom Strang),Risk of Recidivism,5,Medium,2013-01-22,Risk of Violence,5,Medium,2013-01-22,2015-03-28,2015-03-30,1,0,794,1,0,0\r\n9393,samantha feliciano,samantha,feliciano,2014-09-29,Female,1989-01-04,27,25 - 45,Caucasian,0,5,0,0,1,-1,2014-09-28 11:52:36,2014-10-24 01:15:25,14005473CF10A,,2014-09-29,0,F,arrest case no charge,1,15001621MM30A,(M1),170,2015-09-19,Battery,2016-03-07,2016-03-08,,1,15001621MM30A,(M1),2015-09-19,Battery,Risk of Recidivism,5,Medium,2014-09-29,Risk of Violence,5,Medium,2014-09-29,2014-09-28,2014-10-24,1,25,355,1,1,1\r\n9394,daniel weisberger,daniel,weisberger,2013-01-25,Male,1986-07-15,29,25 - 45,Caucasian,0,8,0,0,4,-2,2013-01-23 09:48:25,2013-01-24 02:08:07,13001078CF10A,2013-01-23,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-25,Risk of Violence,7,Medium,2013-01-25,2013-01-23,2013-01-24,4,0,1162,0,0,0\r\n9401,kenneth sabino,kenneth,sabino,2013-10-18,Male,1991-04-22,24,Less than 25,Caucasian,0,2,0,0,1,-1,2013-10-17 07:15:44,2013-10-18 08:16:42,13019708MM10A,2013-10-17,,1,M,Battery,1,15075250TC30A,(M2),,2015-11-11,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-18,Risk of Violence,3,Low,2013-10-18,2013-10-17,2013-10-18,1,0,754,1,0,0\r\n9407,leon manson,leon,manson,2013-08-27,Male,1975-11-08,40,25 - 45,African-American,0,7,0,0,20,-1,2013-08-26 05:08:09,2013-08-27 06:56:09,13012035CF10A,2013-08-26,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-27,Risk of Violence,4,Low,2013-08-27,2015-04-30,2015-08-10,20,0,611,0,0,0\r\n9412,storm palmer,storm,palmer,2013-03-04,Female,1980-01-09,36,25 - 45,African-American,0,1,0,0,1,-1,2013-03-03 09:45:21,2013-03-04 01:14:15,13004312MM10A,2013-03-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,2,Low,2013-03-04,2013-03-03,2013-03-04,1,0,1124,0,0,0\r\n9415,carlo marra,carlo,marra,2013-01-28,Male,1958-04-20,57,Greater than 45,Caucasian,0,1,0,0,7,-1,2013-01-27 07:37:35,2013-06-28 05:35:04,12017311CF10A,,2013-01-27,1,F,arrest case no charge,1,15058864TC40A,(M1),,2015-10-07,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-06-28,7,151,982,1,0,0\r\n9416,ronald pierre,ronald,pierre,2013-10-10,Male,1989-09-12,26,25 - 45,African-American,0,5,0,0,1,-1,2013-10-09 07:03:47,2013-10-10 10:04:05,13011852CF10A,,2013-10-09,1,F,arrest case no charge,1,16007279TC20A,(M2),,2016-02-05,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-10,Risk of Violence,4,Low,2013-10-10,2013-10-09,2013-10-10,1,0,848,1,0,0\r\n9420,gregory bishop,gregory,bishop,2013-05-10,Male,1989-06-30,26,25 - 45,African-American,0,3,0,1,2,-7,2013-05-03 04:10:54,2013-05-10 12:24:16,13006352CF10A,2013-05-03,,7,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-10,Risk of Violence,3,Low,2013-05-10,2013-05-03,2013-05-10,2,0,1057,0,0,0\r\n9425,aurelia coffey,aurelia,coffey,2014-01-30,Female,1967-09-19,48,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-29 06:04:45,2014-01-30 10:34:50,14001313CF10A,2014-01-29,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-30,Risk of Violence,1,Low,2014-01-30,2014-01-29,2014-01-30,0,0,792,0,0,0\r\n9428,george melbourne,george,melbourne,2013-04-20,Male,1963-07-12,52,Greater than 45,Caucasian,0,2,0,0,7,-1,2013-04-19 11:43:36,2013-04-20 08:15:31,13007601MM10A,2013-04-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-20,Risk of Violence,2,Low,2013-04-20,2013-04-19,2013-04-20,7,0,1077,0,0,0\r\n9433,grace harris,grace,harris,2013-05-01,Female,1972-09-20,43,25 - 45,African-American,0,1,0,0,0,-1,2013-04-30 03:49:28,2013-05-01 10:14:34,13008356MM10A,2013-04-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-01,Risk of Violence,1,Low,2013-05-01,2013-04-30,2013-05-01,0,0,1066,0,0,0\r\n9434,dorian fields,dorian,fields,2013-11-12,Male,1980-05-08,35,25 - 45,African-American,0,1,0,0,2,,,,13015684CF10A,2013-11-11,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-12,Risk of Violence,1,Low,2013-11-12,,,2,0,871,0,0,0\r\n9435,tyler wright,tyler,wright,2013-08-01,Male,1992-01-05,24,Less than 25,Caucasian,0,5,0,0,3,0,2013-08-01 06:42:08,2013-09-06 03:32:31,13010743CF10A,2013-08-01,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-01,Risk of Violence,4,Low,2013-08-01,2014-08-18,2014-10-15,3,36,382,0,0,0\r\n9437,carlos garcia,carlos,garcia,2014-02-06,Male,1992-12-17,23,Less than 25,Hispanic,0,9,1,0,2,-1,2014-02-05 10:23:21,2014-02-28 01:40:43,14001630CF10A,2014-02-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-06,Risk of Violence,7,Medium,2014-02-06,2014-02-05,2014-02-28,2,22,785,0,0,0\r\n9438,william shaw,william,shaw,2013-05-30,Male,1959-12-26,56,Greater than 45,African-American,0,7,0,0,28,-69,2013-03-22 03:23:49,2013-05-21 11:03:28,13004184CF10A,2013-03-22,,69,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-30,Risk of Violence,4,Low,2013-05-30,2014-04-15,2014-05-06,28,0,320,0,0,0\r\n9440,barclay beljour,barclay,beljour,2014-02-03,Male,1994-07-20,21,Less than 25,African-American,0,5,0,0,0,0,2014-02-03 04:26:42,2014-02-03 08:48:36,14001510CF10A,2014-02-03,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-03,Risk of Violence,6,Medium,2014-02-03,2014-02-03,2014-02-03,0,0,788,0,0,0\r\n9444,jennifer smith,jennifer,smith,2013-10-28,Female,1990-12-08,25,25 - 45,Caucasian,0,5,0,0,0,0,2013-10-28 04:36:41,2013-10-29 02:20:00,13015040CF10A,2013-10-28,,0,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-28,Risk of Violence,3,Low,2013-10-28,2014-11-26,2014-12-09,0,1,394,0,0,0\r\n9446,lucien antoine,lucien,antoine,2014-01-30,Male,1984-07-08,31,25 - 45,Other,0,6,0,0,3,,,,14001305CF10A,2014-01-29,,1,F,Felony Driving While Lic Suspd,1,16000672MM20A,(M1),,2016-03-08,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-30,Risk of Violence,3,Low,2014-01-30,,,3,0,768,1,0,0\r\n9448,matthew whittington,matthew,whittington,2013-01-18,Male,1970-02-13,46,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-01-17 12:41:20,2013-01-18 01:52:16,13001123MO10A,2013-01-16,,2,M,DOC/Cause Public Danger,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-18,Risk of Violence,3,Low,2013-01-18,2013-01-17,2013-01-18,0,0,1169,0,0,0\r\n9450,kasha matthews,kasha,matthews,2013-04-20,Female,1991-06-04,24,Less than 25,African-American,0,7,0,0,0,0,2013-04-20 04:53:06,2013-04-22 05:17:41,13005677CF10A,,2013-04-20,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-20,Risk of Violence,4,Low,2013-04-20,2015-07-30,2015-08-06,0,2,831,0,0,0\r\n9459,ruslan delgado,ruslan,delgado,2013-01-14,Male,1991-12-31,24,Less than 25,Other,0,3,0,0,0,0,2013-01-14 03:09:07,2013-01-14 06:34:18,13000906MM10A,2013-01-14,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-14,Risk of Violence,4,Low,2013-01-14,2013-01-14,2013-01-14,0,0,1173,0,0,0\r\n9460,carlos martinez,carlos,martinez,2013-02-01,Male,1975-10-26,40,25 - 45,Hispanic,0,3,0,0,0,0,2013-02-01 02:35:40,2013-02-01 01:46:17,13002368MM10A,2013-02-01,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-01,Risk of Violence,3,Low,2013-02-01,2013-02-01,2013-02-01,0,0,1155,0,0,0\r\n9461,julio rodriguez,julio,rodriguez,2014-02-10,Male,1980-03-26,36,25 - 45,Hispanic,0,2,0,0,1,0,2014-02-10 03:17:30,2014-02-10 08:03:23,14002291MM10A,2014-02-10,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-10,Risk of Violence,1,Low,2014-02-10,2014-02-10,2014-02-10,1,0,781,0,0,0\r\n9463,oscar perez-godinez,oscar,perez-godinez,2013-10-22,Male,1982-10-09,33,25 - 45,Hispanic,0,1,0,0,1,,,,13016916TC10A,2013-03-17,,219,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,,,1,0,892,0,0,0\r\n9464,clifton hiott,clifton,hiott,2013-05-07,Male,1991-08-14,24,Less than 25,Caucasian,0,2,0,0,0,0,2013-05-07 03:24:59,2013-05-08 03:17:44,13008836MM10A,2013-05-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-07,Risk of Violence,3,Low,2013-05-07,2013-05-07,2013-05-08,0,1,1060,0,0,0\r\n9465,herman holmes,herman,holmes,2013-05-27,Female,1961-01-08,55,Greater than 45,African-American,0,1,0,0,2,-1,2013-05-26 09:39:19,2013-05-27 12:50:46,13007510CF10A,2013-05-26,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-05-26,2013-05-27,2,0,1040,0,0,0\r\n9473,david smith,david,smith,2013-08-07,Male,1977-05-08,38,25 - 45,African-American,0,7,0,0,14,-1,2013-08-06 04:46:34,2013-10-01 08:40:14,13011030CF10A,2013-08-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-07,Risk of Violence,3,Low,2013-08-07,2015-09-19,2015-09-28,14,55,773,0,0,0\r\n9475,bryan mcdougle,bryan,mcdougle,2013-09-04,Male,1985-04-12,31,25 - 45,African-American,0,1,0,0,1,-1,2013-09-03 07:13:09,2013-09-04 12:44:15,13012444CF10A,2013-09-03,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-04,Risk of Violence,2,Low,2013-09-04,2013-09-03,2013-09-04,1,0,940,0,0,0\r\n9476,jaimie peterson,jaimie,peterson,2014-01-12,Female,1986-01-02,30,25 - 45,African-American,0,2,0,0,3,-1,2014-01-11 06:56:43,2014-01-12 02:17:00,14000484CF10A,2014-01-11,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-12,Risk of Violence,2,Low,2014-01-12,2014-01-11,2014-01-12,3,0,810,0,0,0\r\n9479,frenel cajilus,frenel,cajilus,2013-03-14,Male,1963-06-11,52,Greater than 45,Caucasian,0,1,0,0,1,714,2015-02-26 03:25:51,2015-04-07 06:16:49,09018555CF10A,,2012-12-10,94,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-14,Risk of Violence,1,Low,2013-03-14,2015-02-26,2015-04-07,1,0,714,0,0,0\r\n9483,jack darlington,jack,darlington,2014-06-18,Male,1979-04-01,37,25 - 45,African-American,0,8,0,0,16,-1,2014-06-17 01:17:25,2014-06-19 03:41:00,14008372CF10A,,2014-06-17,1,F,arrest case no charge,1,15007065MM10A,(M1),,2015-06-13,Battery,,,,1,15007065MM10A,(M1),2015-06-13,Battery,Risk of Recidivism,8,High,2014-06-18,Risk of Violence,3,Low,2014-06-18,2014-08-21,2015-01-04,16,1,64,0,1,1\r\n9484,leslie slager,leslie,slager,2013-01-14,Female,1974-11-20,41,25 - 45,Caucasian,0,2,0,0,1,0,2013-01-14 02:19:29,2013-02-12 05:24:53,13000872MM10A,2013-01-14,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,1,Low,2013-01-14,2013-01-14,2013-02-12,1,29,1173,0,0,0\r\n9486,akeel franklin,akeel,franklin,2014-01-31,Male,1995-09-25,20,Less than 25,African-American,0,5,0,0,0,-1,2014-01-30 01:49:49,2014-01-31 01:46:52,14001350CF10A,2014-01-30,,1,F,Deliver Cannabis 1000FTSch,1,14010545MM10A,(M1),0,2014-07-09,Possess Cannabis/20 Grams Or Less,2014-07-09,2014-07-10,,1,16001450CF10A,(F3),2016-02-03,Aggravated Assault w/Firearm,Risk of Recidivism,5,Medium,2014-01-31,Risk of Violence,7,Medium,2014-01-31,2014-07-09,2014-07-10,0,0,159,1,1,1\r\n9491,erik manning,erik,manning,2013-12-05,Male,1993-12-03,22,Less than 25,Caucasian,0,5,0,0,1,0,2013-12-05 12:27:40,2013-12-14 11:44:15,13022562MM10A,2013-12-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-05,Risk of Violence,5,Medium,2013-12-05,2013-12-05,2013-12-14,1,9,848,0,0,0\r\n9492,clinton stoney,clinton,stoney,2013-03-28,Male,1978-01-20,38,25 - 45,African-American,0,6,0,0,7,-1,2013-03-27 11:16:50,2013-10-11 06:18:15,13005976MM10A,2013-03-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-28,Risk of Violence,8,High,2013-03-28,2013-03-27,2013-10-11,7,197,1100,0,0,0\r\n9493,benjamin hines,benjamin,hines,2013-08-30,Male,1984-11-02,31,25 - 45,African-American,0,5,0,0,0,-1,2013-08-29 03:49:10,2013-09-06 04:06:56,13012234CF10A,2013-08-29,,1,F,Forging Bank Bills/Promis Note,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-30,Risk of Violence,2,Low,2013-08-30,2013-08-29,2013-09-06,0,7,945,0,0,0\r\n9494,kiyoshi tanaka-bustios,kiyoshi,tanaka-bustios,2013-08-16,Male,1987-08-31,28,25 - 45,Caucasian,0,7,0,0,0,0,2013-08-16 12:31:49,2013-10-09 03:10:07,13011476CF10A,2013-08-15,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-16,Risk of Violence,4,Low,2013-08-16,2014-03-28,2014-04-28,0,54,224,0,0,0\r\n9495,joseph magana,joseph,magana,2014-10-13,Male,1994-07-01,21,Less than 25,Hispanic,0,7,1,0,2,-1,2014-10-12 11:11:46,2014-10-15 01:25:15,14013787CF10A,2014-10-12,,1,F,Burglary Dwelling Occupied,1,15007339MM10A,(M1),0,2015-07-09,Battery,2015-07-09,2015-07-10,,1,15007339MM10A,(M1),2015-07-09,Battery,Risk of Recidivism,7,Medium,2014-10-13,Risk of Violence,8,High,2014-10-13,2015-07-09,2015-07-10,2,2,269,1,1,1\r\n9497,jonnie ferris,jonnie,ferris,2013-03-30,Male,1976-10-19,39,25 - 45,African-American,0,8,0,0,1,-1,2013-03-29 11:09:55,2013-03-30 10:17:01,13004518CF10A,2013-03-29,,1,F,Unlawful Conveyance of Fuel,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-30,Risk of Violence,4,Low,2013-03-30,2013-03-29,2013-03-30,1,0,1098,0,0,0\r\n9500,christopher clingan,christopher,clingan,2013-01-16,Male,1984-02-07,32,25 - 45,Caucasian,0,2,1,0,2,293,2013-11-05 12:58:38,2014-01-14 10:00:00,12003600CF10A,,2012-07-21,179,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-16,Risk of Violence,2,Low,2013-01-16,2013-11-05,2014-01-14,2,0,293,0,0,0\r\n9501,mikrko casalino,mikrko,casalino,2014-03-31,Male,1970-06-19,45,Greater than 45,Hispanic,0,1,0,0,0,0,2014-03-31 01:28:27,2014-04-01 04:42:33,14005510MM10A,2014-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-31,2014-04-01,0,1,732,0,0,0\r\n9504,charles mcintyre,charles,mcintyre,2013-03-08,Male,1979-11-16,36,25 - 45,African-American,0,5,0,2,7,-32,2013-02-04 12:18:13,2013-02-12 09:47:40,12012106CF10A,,2013-02-04,32,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-08,Risk of Violence,5,Medium,2013-03-08,2015-06-22,2015-06-29,7,0,836,0,0,0\r\n9509,joe porter,joe,porter,2014-09-19,Male,1989-01-30,27,25 - 45,African-American,0,7,0,0,9,-1,2014-09-18 08:58:45,2014-09-19 01:56:48,14012675CF10A,2014-09-18,,1,F,Poss Contr Subst W/o Prescript,1,14016419MM10A,(M2),0,2014-11-03,Trespass Structure/Conveyance,2014-11-03,2014-12-13,,1,15013027MM10A,(M1),2015-12-16,Battery,Risk of Recidivism,7,Medium,2014-09-19,Risk of Violence,6,Medium,2014-09-19,2014-11-03,2014-12-13,9,0,45,1,1,1\r\n9511,richar ayme,richar,ayme,2014-03-06,Male,1985-12-01,30,25 - 45,Hispanic,0,1,0,0,0,0,2014-03-06 02:54:16,2014-03-06 08:15:55,14003189CF10A,,2014-03-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-06,Risk of Violence,2,Low,2014-03-06,2014-03-06,2014-03-06,0,0,757,0,0,0\r\n9512,barry downs,barry,downs,2013-03-12,Male,1954-08-06,61,Greater than 45,African-American,0,6,0,0,8,-35,2013-02-05 03:29:55,2013-03-12 01:00:44,13001758CF10A,,2013-03-01,11,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-12,Risk of Violence,3,Low,2013-03-12,2013-02-05,2013-03-12,8,0,1116,0,0,0\r\n9513,arealious grier,arealious,grier,2013-04-04,Male,1973-03-21,43,25 - 45,African-American,0,1,0,0,2,0,2013-04-04 09:42:56,2013-04-05 06:24:43,13004836CF10A,,2013-04-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-04,Risk of Violence,1,Low,2013-04-04,2013-04-04,2013-04-05,2,1,1093,0,0,0\r\n9515,vilardin cleophar,vilardin,cleophar,2013-10-12,Male,1989-06-08,26,25 - 45,African-American,0,4,0,0,1,-1,2013-10-11 09:46:40,2013-10-12 07:56:28,13014265CF10A,2013-10-11,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-12,Risk of Violence,3,Low,2013-10-12,2013-10-11,2013-10-12,1,0,902,0,0,0\r\n9516,oneil nelson,oneil,nelson,2013-02-11,Male,1983-05-26,32,25 - 45,African-American,0,2,3,0,7,-1,2013-02-10 09:25:19,2013-02-15 10:47:40,13001964CF10A,,2013-02-10,1,F,arrest case no charge,1,15033489TC40A,(M2),,2015-06-05,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-11,Risk of Violence,2,Low,2013-02-11,2014-10-17,2014-10-23,7,4,613,0,0,0\r\n9517,cindy sutton,cindy,sutton,2013-11-26,Female,1958-09-19,57,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-11-25 07:35:42,2013-11-26 02:01:58,13016393CF10A,2013-11-25,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-26,Risk of Violence,1,Low,2013-11-26,2013-11-25,2013-11-26,2,0,857,0,0,0\r\n9518,paola collado-izquierdo,paola,collado-izquierdo,2013-03-01,Female,1975-11-09,40,25 - 45,Caucasian,0,1,0,0,0,0,2013-03-01 05:42:22,2013-03-01 07:38:56,13004237MM10A,2013-03-01,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-03-01,2013-03-01,0,0,1127,0,0,0\r\n9524,andrew tarr,andrew,tarr,2013-03-19,Male,1986-06-28,29,25 - 45,Caucasian,0,10,0,0,1,-1,2013-03-18 01:24:18,2013-03-29 06:02:35,13008447TC10A,2013-01-17,,61,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-03-19,Risk of Violence,10,High,2013-03-19,2013-03-31,2013-03-31,1,10,12,0,0,0\r\n9526,crystal rushton,crystal,rushton,2013-09-18,Female,1994-12-30,21,Less than 25,Caucasian,0,8,0,0,1,132,2014-01-28 12:54:25,2014-01-28 08:41:49,13006615CF10A,,2013-05-03,138,F,arrest case no charge,1,16000990CF10A,(F3),0,2016-01-24,Possession of Cannabis,2016-01-24,2016-01-25,,0,,,,,Risk of Recidivism,8,High,2013-09-18,Risk of Violence,9,High,2013-09-18,2014-01-28,2014-01-28,1,0,132,0,0,0\r\n9527,bernard edwards,bernard,edwards,2013-03-01,Male,1979-12-05,36,25 - 45,African-American,0,2,0,0,2,-4,2013-02-25 02:38:41,2013-02-25 08:51:02,13003939MM10A,2013-02-25,,4,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-01,Risk of Violence,2,Low,2013-03-01,2013-02-25,2013-02-25,2,0,1127,0,0,0\r\n9528,reginald rasbin,reginald,rasbin,2013-12-06,Male,1957-02-17,59,Greater than 45,African-American,0,4,0,0,17,-189,2013-05-31 10:37:30,2013-11-26 02:03:49,12012979CF10A,2012-08-30,,463,F,Fail Register Career Offender,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-06,Risk of Violence,4,Low,2013-12-06,2014-08-11,2014-11-12,17,0,248,0,0,0\r\n9529,baretta butler,baretta,butler,2013-03-29,Male,1981-03-25,35,25 - 45,African-American,0,8,0,0,6,0,2013-03-29 10:59:47,2013-03-30 08:37:52,13003084CF10A,,2013-03-29,0,F,arrest case no charge,1,13023261MM10A,(M1),194,2013-10-02,Possess Cannabis/20 Grams Or Less,2014-04-14,2014-04-22,,1,15015721CF10A,(F3),2015-10-01,Child Abuse,Risk of Recidivism,8,High,2013-03-29,Risk of Violence,5,Medium,2013-03-29,2013-03-29,2013-03-30,6,1,187,1,1,1\r\n9530,robson figueiredo,robson,figueiredo,2013-05-22,Male,1966-06-02,49,Greater than 45,Hispanic,0,2,0,0,0,-1,2013-05-21 07:55:37,2013-05-22 08:28:30,13009808MM10A,2013-05-21,,1,M,Viol Injunction Protect Dom Vi,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-22,Risk of Violence,1,Low,2013-05-22,2013-05-21,2013-05-22,0,0,1045,0,0,0\r\n9532,shakime brown,shakime,brown,2014-08-22,Male,1994-06-13,21,Less than 25,African-American,0,5,1,0,2,-1,2014-08-21 08:49:51,2014-08-29 11:56:42,14011439CF10A,2014-08-21,,1,F,Aggravated Assault w/Firearm,1,15006778MM10A,(M1),101,2015-02-14,Battery,2015-05-26,2015-12-09,,1,15006778MM10A,(M1),2015-02-14,Battery,Risk of Recidivism,5,Medium,2014-08-22,Risk of Violence,5,Medium,2014-08-22,2014-08-21,2014-08-29,2,7,176,1,1,1\r\n9535,wilberto alegria,wilberto,alegria,2013-06-28,Male,1993-01-14,23,Less than 25,Hispanic,0,10,0,0,1,87,2013-09-23 03:34:18,2014-03-19 10:17:00,12000821CF10A,,2013-01-14,165,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-06-28,Risk of Violence,9,High,2013-06-28,2013-09-23,2014-03-19,1,0,87,0,0,0\r\n9537,angel serrano,angel,serrano,2013-05-28,Male,1982-07-18,33,25 - 45,Hispanic,0,2,0,0,0,-1,2013-05-27 09:13:22,2013-05-28 01:06:08,13010167MM10A,2013-05-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,1,Low,2013-05-28,2013-05-27,2013-05-28,0,0,1039,0,0,0\r\n9538,marlon jackson,marlon,jackson,2013-03-08,Male,1995-07-26,20,Less than 25,African-American,1,3,0,0,1,39,2013-04-16 01:55:09,2013-05-24 01:42:34,11019971CF10A,,2011-12-29,435,F,arrest case no charge,1,14007680MM10A,(M1),0,2014-05-09,Resist/Obstruct W/O Violence,2014-05-09,2014-06-20,,1,16001515CF10A,(F3),2016-02-04,Aggravated Assault w/Firearm,Risk of Recidivism,3,Low,2013-03-08,Risk of Violence,6,Medium,2013-03-08,2013-04-16,2013-05-24,1,0,39,0,1,1\r\n9539,joshua soden,joshua,soden,2013-05-03,Male,1987-10-01,28,25 - 45,Caucasian,0,10,0,0,1,-39,2013-03-25 11:45:08,2013-04-08 12:57:06,13000592CF10A,,2013-03-25,39,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-05-03,Risk of Violence,10,High,2013-05-03,2013-03-25,2013-04-08,1,0,1064,0,0,0\r\n9545,tommy walden,tommy,walden,2013-01-06,Male,1960-10-04,55,Greater than 45,African-American,0,4,0,0,5,-1,2013-01-05 05:44:55,2013-11-02 04:12:16,13002948CF10A,2013-01-05,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-06,Risk of Violence,3,Low,2013-01-06,2013-01-05,2013-11-02,5,300,1181,0,0,0\r\n9547,gustavo sanchez,gustavo,sanchez,2013-04-20,Male,1989-11-22,26,25 - 45,Caucasian,0,4,0,0,0,-1,2013-04-19 05:42:16,2013-04-20 07:58:27,13007597MM10A,2013-04-18,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,4,Low,2013-04-20,2013-04-19,2013-04-20,0,0,1077,0,0,0\r\n9548,kim anthony,kim,anthony,2013-02-12,Female,1963-11-29,52,Greater than 45,Caucasian,0,1,0,0,6,-13,2013-01-30 12:51:16,2013-02-06 09:57:29,12018456CF10A,,2013-01-30,13,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-12,Risk of Violence,1,Low,2013-02-12,2014-12-22,2015-02-16,6,0,678,0,0,0\r\n9550,vincent stanley,vincent,stanley,2013-08-30,Male,1963-06-29,52,Greater than 45,African-American,0,8,0,0,16,-1,2013-08-29 11:56:07,2013-08-30 08:01:33,13011094CF10A,,2013-08-29,1,F,arrest case no charge,1,15003009CF10A,(F6),,2015-03-04,Murder in the First Degree,,,,1,15003009CF10A,(F6),2015-03-04,Murder in the First Degree,Risk of Recidivism,8,High,2013-08-30,Risk of Violence,5,Medium,2013-08-30,2013-08-29,2013-08-30,16,0,551,1,1,1\r\n9553,gabriel cerenzia,gabriel,cerenzia,2013-09-07,Male,1955-11-21,60,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-09-06 10:11:34,2013-09-17 06:28:32,13017049MM10A,2013-09-06,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-07,Risk of Violence,1,Low,2013-09-07,2013-09-06,2013-09-17,2,10,937,0,0,0\r\n9554,scott konija,scott,konija,2013-08-26,Male,1971-11-12,44,25 - 45,Caucasian,0,2,0,0,0,-1,2013-08-25 06:20:12,2013-08-27 08:52:06,13016462MM10A,2013-08-25,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-26,Risk of Violence,1,Low,2013-08-26,2013-08-25,2013-08-27,0,1,949,0,0,0\r\n9556,eriam penate,eriam,penate,2013-08-15,Male,1985-06-25,30,25 - 45,Hispanic,0,2,0,0,1,-18,2013-07-28 11:05:35,2013-08-14 11:25:00,13010573CF10A,2013-07-28,,18,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-15,Risk of Violence,2,Low,2013-08-15,2013-07-28,2013-08-14,1,0,960,0,0,0\r\n9557,josha singletary,josha,singletary,2014-03-19,Female,1990-07-28,25,25 - 45,African-American,0,4,0,0,2,-1,2014-03-18 07:02:52,2014-03-19 01:20:36,14004716MM10A,2014-03-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-19,Risk of Violence,4,Low,2014-03-19,2014-03-18,2014-03-19,2,0,744,0,0,0\r\n9562,dematris symonette,dematris,symonette,2013-03-07,Male,1976-12-03,39,25 - 45,African-American,0,4,0,0,3,-39,2013-01-27 03:35:19,2013-03-06 10:25:56,13001924MM10A,2013-01-26,,40,M,Battery,1,15005447MM10A,(M1),0,2015-05-18,Viol Injunct Domestic Violence,2015-05-18,2015-07-27,,0,,,,,Risk of Recidivism,4,Low,2013-03-07,Risk of Violence,2,Low,2013-03-07,2015-04-15,2015-04-20,3,0,769,0,0,0\r\n9563,michael cerniglia,michael,cerniglia,2013-08-15,Male,1993-07-19,22,Less than 25,Caucasian,0,6,0,0,1,-12,2013-08-03 12:26:02,2013-08-15 10:46:30,13010921CF10A,2013-08-02,,13,F,Solicitation On Felony 3 Deg,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-15,Risk of Violence,4,Low,2013-08-15,2015-03-02,2015-04-02,1,0,564,0,0,0\r\n9567,nancy brewer,nancy,brewer,2013-03-08,Female,1987-06-05,28,25 - 45,African-American,0,3,0,0,0,-1,2013-03-07 05:06:49,2013-09-14 05:58:00,13003404CF10A,2013-03-07,,1,F,Arson in the First Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-08,Risk of Violence,4,Low,2013-03-08,2014-01-22,2014-01-28,0,190,320,0,0,0\r\n9569,christian giraldo,christian,giraldo,2013-09-30,Male,1985-11-02,30,25 - 45,Caucasian,0,1,0,0,0,0,2013-09-30 03:43:29,2013-09-30 08:10:01,13018598MM10A,2013-09-30,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,2,Low,2013-09-30,2013-09-30,2013-09-30,0,0,914,0,0,0\r\n9574,gibrian wilson,gibrian,wilson,2013-04-25,Male,1976-08-22,39,25 - 45,African-American,0,5,0,0,9,0,2013-04-25 02:54:02,2013-04-25 08:07:19,13005941CF10A,2013-04-25,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-25,Risk of Violence,1,Low,2013-04-25,2013-04-25,2013-04-25,9,0,1072,0,0,0\r\n9576,foufoune junior,foufoune,junior,2013-09-10,Female,1969-10-16,46,Greater than 45,Other,0,1,0,0,1,-1,2013-09-09 10:34:11,2013-09-10 07:10:48,13002945CF10A,,2013-09-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-09,2013-09-10,1,0,934,0,0,0\r\n9577,trevor duhaney,trevor,duhaney,2013-02-05,Male,1969-02-05,47,Greater than 45,Other,0,2,0,0,3,-1,2013-02-04 09:30:49,2013-02-08 09:07:37,13002565MM10A,2013-02-04,,1,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-05,Risk of Violence,1,Low,2013-02-05,2013-02-04,2013-02-08,3,3,1151,0,0,0\r\n9578,shane rhoden,shane,rhoden,2013-02-27,Male,1989-07-12,26,25 - 45,African-American,0,7,0,0,5,-1,2013-02-26 09:51:35,2014-01-16 06:29:22,13002942CF10A,2013-02-26,,1,M,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-27,Risk of Violence,6,Medium,2013-02-27,2014-01-16,2014-02-19,5,357,1129,0,0,0\r\n9579,daniel martin,daniel,martin,2013-10-07,Male,1982-11-20,33,25 - 45,African-American,0,4,0,0,3,-130,2013-05-30 04:59:27,2013-10-07 11:13:04,13007726CF10A,,2013-05-30,130,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,4,Low,2013-10-07,2013-05-30,2013-10-07,3,0,907,0,0,0\r\n9581,phylicia littleton,phylicia,littleton,2013-08-18,Female,1993-03-30,23,Less than 25,African-American,0,3,0,0,0,-1,2013-08-17 04:56:13,2013-09-11 07:01:20,13011536CF10A,2013-08-17,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-18,Risk of Violence,4,Low,2013-08-18,2013-08-17,2013-09-11,0,24,957,0,0,0\r\n9588,leonard harrell,leonard,harrell,2013-11-25,Male,1961-08-20,54,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-11-24 07:56:57,2013-11-26 09:41:51,13016333CF10A,2013-11-24,,1,F,Corrupt Public Servant,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,2013-11-24,2013-11-26,0,1,858,0,0,0\r\n9589,edwin coleman,edwin,coleman,2013-09-10,Male,1965-10-10,50,Greater than 45,African-American,0,6,0,0,2,0,2013-09-10 07:08:23,2013-10-11 06:09:15,08027204MM10A,2008-11-15,,1760,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-10,Risk of Violence,5,Medium,2013-09-10,2013-09-10,2013-10-11,2,31,934,0,0,0\r\n9592,patrick salcedo,patrick,salcedo,2013-09-29,Male,1990-07-08,25,25 - 45,Caucasian,0,3,0,0,1,-1,2013-09-28 10:45:05,2013-09-29 01:47:16,13013648CF10A,2013-09-28,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-29,Risk of Violence,5,Medium,2013-09-29,2013-09-28,2013-09-29,1,0,915,0,0,0\r\n9593,carol hopkinson,carol,hopkinson,2013-02-11,Female,1969-08-14,46,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-11 06:08:31,2013-02-11 07:34:54,13002110CF10A,2013-02-11,,0,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-11,2013-02-11,0,0,1145,0,0,0\r\n9597,stephen jones,stephen,jones,2013-02-15,Male,1993-06-30,22,Less than 25,Caucasian,0,4,0,0,0,-1,2013-02-14 03:45:34,2013-02-15 08:13:09,13003260MM10A,2013-02-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-15,Risk of Violence,5,Medium,2013-02-15,2013-02-14,2013-02-15,0,0,1141,0,0,0\r\n9600,brian uva,brian,uva,2013-03-18,Male,1978-02-01,38,25 - 45,Caucasian,1,4,0,0,10,0,2013-03-18 03:51:57,2013-03-18 02:08:29,13003937CF10A,2013-03-18,,0,F,Burglary Structure Unoccup,1,14001909CF10A,(F3),,2013-11-01,Grand Theft in the 3rd Degree,,,,1,14000183CF10A,(F3),2014-01-05,Felony Battery (Dom Strang),Risk of Recidivism,4,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2015-03-31,2020-01-01,10,0,228,1,1,1\r\n9604,tavaris evans,tavaris,evans,2014-07-30,Male,1998-01-20,18,Less than 25,African-American,5,5,0,2,4,7,2014-08-06 11:52:54,2014-08-30 02:57:59,14003350CF10A,,2014-03-14,138,F,arrest case no charge,1,14015168CF10A,(F3),,2014-09-28,Battery on Law Enforc Officer,,,,1,14015168CF10A,(F3),2014-09-28,Battery on Law Enforc Officer,Risk of Recidivism,5,Medium,2014-07-30,Risk of Violence,9,High,2014-07-30,2014-08-06,2014-08-30,4,0,7,0,1,1\r\n9608,heather gregory,heather,gregory,2013-08-11,Female,1992-05-01,23,Less than 25,Caucasian,0,6,0,0,0,-1,2013-08-10 08:22:47,2013-08-22 05:29:02,13011233CF10A,2013-08-10,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-11,Risk of Violence,5,Medium,2013-08-11,2013-08-10,2013-08-22,0,11,964,0,0,0\r\n9609,katicia ortiz,katicia,ortiz,2013-12-18,Female,1984-01-10,32,25 - 45,Hispanic,0,5,0,1,8,-8,2013-12-10 07:35:56,2013-12-17 07:46:09,13022854MM10A,2013-12-10,,8,M,Prostitution/Lewd Act Assignation,1,14004491MM40A,(M1),,2014-10-23,Petit Theft $100- $300,,,,1,15008299CF10A,(M1),2015-06-27,Battery,Risk of Recidivism,5,Medium,2013-12-18,Risk of Violence,2,Low,2013-12-18,2013-12-10,2013-12-17,8,0,309,1,1,1\r\n9616,antwan brooks,antwan,brooks,2013-01-30,Male,1989-03-07,27,25 - 45,African-American,0,5,0,0,6,841,2015-05-21 02:06:14,2015-09-17 06:23:15,12016985CF10A,2012-09-25,,127,F,Grand Theft In The 3Rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-30,Risk of Violence,5,Medium,2013-01-30,2015-05-21,2015-09-17,6,0,841,0,0,0\r\n9618,jeremy davis,jeremy,davis,2013-02-22,Male,1990-08-20,25,25 - 45,Caucasian,0,6,0,0,2,0,2013-02-22 01:53:57,2013-02-22 09:26:25,13002692CF10A,2013-02-22,,0,F,Possession of Cocaine,1,15065210TC40A,(M2),,2015-09-27,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-22,Risk of Violence,7,Medium,2013-02-22,2013-02-22,2013-02-22,2,0,947,1,0,0\r\n9621,philip lawson,philip,lawson,2013-04-21,Male,1963-04-13,53,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-04-20 04:59:18,2013-05-01 05:05:32,13005656CF10A,2013-04-20,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-21,Risk of Violence,1,Low,2013-04-21,2013-04-20,2013-05-01,0,10,1076,0,0,0\r\n9624,karl jean-francois,karl,jean-francois,2013-02-04,Male,1977-03-05,39,25 - 45,African-American,0,3,0,0,0,-3,2013-02-01 03:49:12,2013-02-02 01:43:29,13002371MM10A,2013-02-01,,3,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-04,Risk of Violence,4,Low,2013-02-04,2013-02-01,2013-02-02,0,0,1152,0,0,0\r\n9625,errol campbell,errol,campbell,2013-12-10,Male,1978-09-10,37,25 - 45,Other,0,4,0,0,2,-1,2013-12-09 01:26:29,2014-01-29 03:40:53,13017104CF10A,,2013-12-09,1,F,arrest case no charge,1,15010440MM10A,(M2),0,2015-10-05,Exposes Culpable Negligence,2015-10-05,2015-10-06,,1,15010440MM10A,(M1),2015-10-05,Battery,Risk of Recidivism,4,Low,2013-12-10,Risk of Violence,3,Low,2013-12-10,2015-10-05,2015-10-06,2,50,664,1,1,1\r\n9629,johnny ortiz,johnny,ortiz,2014-02-12,Female,1991-11-13,24,Less than 25,African-American,0,9,0,0,7,-1,2014-02-11 05:51:08,2014-02-12 08:36:39,14001956CF10A,2014-02-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-12,Risk of Violence,7,Medium,2014-02-12,2014-02-11,2014-02-12,7,0,779,0,0,0\r\n9630,stephen hill,stephen,hill,2013-03-10,Male,1983-01-09,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-09 04:50:20,2013-03-10 06:55:18,13004783MM10A,2013-03-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-10,Risk of Violence,1,Low,2013-03-10,2013-03-09,2013-03-10,0,0,1118,0,0,0\r\n9631,kristen marciniak,kristen,marciniak,2013-05-21,Female,1992-04-06,24,Less than 25,Caucasian,0,4,0,4,1,-24,2013-04-27 08:34:23,2013-04-28 02:23:03,13008117MM10A,2013-04-27,,24,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-21,Risk of Violence,4,Low,2013-05-21,2013-04-27,2013-04-28,1,0,1046,0,0,0\r\n9632,larry naville,larry,naville,2014-03-17,Male,1969-08-18,46,Greater than 45,Caucasian,0,1,0,0,1,-4,2014-03-13 11:04:11,2014-03-14 09:08:46,14003632CF10A,2014-03-13,,4,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-13,2014-03-14,1,0,746,0,0,0\r\n9633,steve nieves,steve,nieves,2013-04-06,Male,1984-03-11,32,25 - 45,Hispanic,0,7,0,0,7,-1,2013-04-05 06:42:10,2013-04-06 10:10:09,13004927CF10A,2013-04-05,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-06,Risk of Violence,3,Low,2013-04-06,2013-04-05,2013-04-06,7,0,1091,0,0,0\r\n9634,carlos gonzalez-estrella,carlos,gonzalez-estrella,2013-03-25,Male,1991-09-08,24,Less than 25,Hispanic,0,3,0,0,2,-25,2013-02-28 01:07:46,2013-03-09 02:28:38,13003055CF10A,2013-02-28,,25,F,Lewd/Lasc Battery Pers 12+/<16,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-25,Risk of Violence,4,Low,2013-03-25,2013-02-28,2013-03-09,2,0,1103,0,0,0\r\n9635,wendy martinez,wendy,martinez,2013-03-25,Female,1977-09-18,38,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-24 11:21:20,2013-03-27 03:17:46,13004253CF10A,2013-03-24,,1,F,Burglary Assault/Battery Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-03-24,2013-03-27,0,2,1103,0,0,0\r\n9641,michael fazakerley,michael,fazakerley,2013-02-07,Male,1958-11-28,57,Greater than 45,Caucasian,0,1,0,0,2,-28,2013-01-10 01:43:25,2013-01-19 05:21:41,13000444CF10A,2013-01-10,,28,F,Lewd/Lasc Exhib Presence <16yr,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-07,Risk of Violence,1,Low,2013-02-07,2013-01-10,2013-01-19,2,0,1149,0,0,0\r\n9643,shlomi asayag,shlomi,asayag,2013-08-01,Male,1973-01-30,43,25 - 45,Caucasian,0,1,0,0,0,-1,2013-07-31 03:08:47,2013-08-02 04:52:57,13010713CF10A,,2013-07-31,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2013-07-31,2013-08-02,0,1,974,0,0,0\r\n9644,samuel decoline,samuel,decoline,2013-03-13,Male,1993-10-23,22,Less than 25,African-American,0,6,0,0,0,0,2013-03-13 01:52:20,2013-03-13 02:19:25,13004946MM10A,2013-03-13,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-13,Risk of Violence,6,Medium,2013-03-13,2013-03-13,2013-03-13,0,0,1115,0,0,0\r\n9645,marius jimenez,marius,jimenez,2013-12-30,Male,1989-10-28,26,25 - 45,Caucasian,0,4,0,0,1,,,,12024312MM10A,,2013-02-10,323,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-30,Risk of Violence,3,Low,2013-12-30,,,1,0,823,0,0,0\r\n9646,lauren scott,lauren,scott,2013-08-06,Female,1987-12-21,28,25 - 45,African-American,0,9,0,0,9,-12,2013-07-25 10:07:15,2013-08-06 10:33:38,13008095MM10A,,2013-07-25,12,M,arrest case no charge,1,13017008CF10A,(F2),66,2013-11-05,Poss of Firearm by Convic Felo,2014-01-10,2014-11-26,,1,13017008CF10A,(F3),2013-11-05,Felony Battery,Risk of Recidivism,9,High,2013-08-06,Risk of Violence,9,High,2013-08-06,2014-11-26,2015-01-01,9,0,91,1,1,1\r\n9648,john buchheit,john,buchheit,2013-02-16,Male,1965-03-25,51,Greater than 45,Caucasian,0,4,0,0,3,-1,2013-02-15 09:25:26,2013-02-22 07:32:22,15001238CF10A,2013-02-15,,1,F,Felony DUI (level 3),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-16,Risk of Violence,3,Low,2013-02-16,2015-02-24,2015-02-24,3,6,738,0,0,0\r\n9651,efrain garcia,efrain,garcia,2014-03-13,Male,1974-05-18,41,25 - 45,Hispanic,0,1,0,0,3,-1,2014-03-12 09:03:38,2014-03-13 10:10:37,14003535CF10A,2014-03-12,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-13,Risk of Violence,1,Low,2014-03-13,2014-03-12,2014-03-13,3,0,750,0,0,0\r\n9653,jonathan rahm,jonathan,rahm,2013-01-26,Male,1992-02-15,24,Less than 25,Caucasian,0,7,0,0,1,-1,2013-01-25 07:16:34,2013-01-26 07:21:49,13001245CF10A,2013-01-25,,1,F,Del Cannabis For Consideration,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-26,Risk of Violence,5,Medium,2013-01-26,2013-01-25,2013-01-26,1,0,1161,0,0,0\r\n9658,travis taylor,travis,taylor,2013-02-03,Male,1988-09-10,27,25 - 45,African-American,1,10,2,1,6,-1,2013-02-02 06:25:19,2013-02-03 06:39:00,12058249TC10A,,2013-02-02,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-03,Risk of Violence,10,High,2013-02-03,2013-07-12,2013-07-20,6,0,159,0,0,0\r\n9659,rabe janvier,rabe,janvier,2014-02-03,Male,1990-08-20,25,25 - 45,African-American,0,4,0,0,0,-1,2014-02-02 05:51:39,2014-02-03 01:14:41,14001814MM10A,2014-02-02,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-03,Risk of Violence,4,Low,2014-02-03,2015-05-04,2015-05-19,0,0,455,0,0,0\r\n9662,duane stephan,duane,stephan,2013-05-14,Male,1959-10-04,56,Greater than 45,Caucasian,0,3,0,0,3,0,2013-05-14 03:48:04,2013-05-14 08:07:48,13009351MM10A,2013-05-14,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-14,Risk of Violence,2,Low,2013-05-14,2013-05-14,2013-05-14,3,0,1053,0,0,0\r\n9663,brenzina jones,brenzina,jones,2014-01-06,Female,1987-02-09,29,25 - 45,African-American,0,4,0,0,1,-1,2014-01-05 10:19:57,2014-01-07 03:49:53,14000199MM10A,2014-01-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-06,Risk of Violence,3,Low,2014-01-06,2014-01-05,2014-01-07,1,1,816,0,0,0\r\n9666,kentravian knox,kentravian,knox,2013-04-10,Male,1994-10-06,21,Less than 25,African-American,0,8,0,0,0,-1,2013-04-09 02:31:10,2013-04-11 05:08:54,13005094CF10A,2013-04-09,,1,F,Attempted Robbery  No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-10,Risk of Violence,9,High,2013-04-10,2015-05-06,2015-05-06,0,1,756,0,0,0\r\n9668,janez dickens,janez,dickens,2013-09-24,Female,1988-02-01,28,25 - 45,African-American,0,2,0,0,0,-1,2013-09-23 11:18:27,2013-09-24 09:19:53,13018159MM10A,2013-09-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-24,Risk of Violence,2,Low,2013-09-24,2013-09-23,2013-09-24,0,0,920,0,0,0\r\n9669,larry hampton,larry,hampton,2014-02-06,Male,1980-09-26,35,25 - 45,African-American,0,1,0,0,2,0,2014-02-06 12:45:53,2014-02-06 09:34:19,14001659CF10A,2014-02-05,,1,F,Sell or Offer for Sale Counterfeit Goods,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-06,Risk of Violence,1,Low,2014-02-06,2014-09-11,2014-09-18,2,0,217,0,0,0\r\n9670,kevin pazgarcia,kevin,pazgarcia,2013-03-15,Male,1993-02-22,23,Less than 25,Caucasian,0,2,0,0,0,-1,2013-03-14 04:59:27,2013-03-15 06:34:10,13003784CF10A,2013-03-14,,1,F,Fleeing or Eluding a LEO,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-15,Risk of Violence,5,Medium,2013-03-15,2013-03-14,2013-03-15,0,0,1113,0,0,0\r\n9672,robert larkins,robert,larkins,2014-02-11,Male,1967-07-27,48,Greater than 45,African-American,0,8,0,0,4,0,2014-02-11 02:21:28,2014-02-11 08:51:24,00004068CF10A,,2002-08-13,4200,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-11,Risk of Violence,4,Low,2014-02-11,2014-03-26,2014-03-29,4,0,43,0,0,0\r\n9676,dwayne simmons,dwayne,simmons,2013-02-17,Male,1978-04-27,37,25 - 45,African-American,0,9,0,0,2,0,2013-02-17 12:47:03,2013-08-06 06:12:09,10019497CF10A,,2013-02-17,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-17,Risk of Violence,7,Medium,2013-02-17,2013-08-06,2014-03-27,2,403,1139,0,0,0\r\n9677,venson joseph,venson,joseph,2014-02-04,Male,1982-10-14,33,25 - 45,African-American,0,1,0,0,0,-1,2014-02-03 01:54:41,2014-02-04 01:11:16,14001465CF10A,2014-02-02,,2,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-03-27,2014-04-02,0,0,51,0,0,0\r\n9681,brandon jackson,brandon,jackson,2014-03-02,Male,1993-02-01,23,Less than 25,African-American,0,7,0,1,5,-1,2014-03-01 09:22:26,2014-03-03 02:30:42,14002927CF10A,2014-03-01,,1,F,False Imprisonment,1,15003734MM10A,(M1),,2014-10-25,Battery,,,,1,15003734MM10A,(M1),2014-10-25,Battery,Risk of Recidivism,7,Medium,2014-03-02,Risk of Violence,4,Low,2014-03-02,2014-03-01,2014-03-03,5,1,237,1,1,1\r\n9686,ryan bassaragh,ryan,bassaragh,2014-01-16,Male,1992-03-27,24,Less than 25,African-American,0,4,0,0,0,0,2014-01-16 12:57:15,2014-01-17 02:06:24,14000719CF10A,2014-01-15,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-16,Risk of Violence,3,Low,2014-01-16,2014-01-16,2014-01-17,0,1,806,0,0,0\r\n9687,emmanuel knight,emmanuel,knight,2013-01-26,Male,1971-09-09,44,25 - 45,African-American,0,7,0,0,2,-1,2013-01-25 06:09:54,2013-01-30 08:27:06,12042413TC10A,,2013-01-25,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-26,Risk of Violence,4,Low,2013-01-26,2013-01-25,2013-01-30,2,4,1161,0,0,0\r\n9689,curtis green,curtis,green,2013-01-09,Male,1989-11-28,26,25 - 45,African-American,0,4,0,0,4,624,2014-09-25 11:04:26,2014-10-10 05:13:04,12022394MM10A,2012-10-29,,72,M,Fail Register Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-09,Risk of Violence,6,Medium,2013-01-09,2014-09-25,2014-10-10,4,0,624,0,0,0\r\n9690,samesha stringer,samesha,stringer,2013-08-17,Female,1989-08-04,26,25 - 45,African-American,0,2,0,0,0,-1,2013-08-16 11:58:17,2013-08-17 01:12:43,13015568MM10A,2013-08-16,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-17,Risk of Violence,2,Low,2013-08-17,2013-08-16,2013-08-17,0,0,958,0,0,0\r\n9691,alfred infante,alfred,infante,2013-10-25,Male,1986-12-16,29,25 - 45,African-American,0,6,0,0,2,-1,2013-10-24 05:41:59,2013-10-26 03:05:42,13002559CF10A,,2013-10-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-25,Risk of Violence,5,Medium,2013-10-25,2015-04-09,2015-04-23,2,1,531,0,0,0\r\n9693,carlos lara,carlos,lara,2013-05-28,Male,1989-05-09,26,25 - 45,Hispanic,0,2,0,1,0,-1,2013-05-27 07:12:07,2013-05-28 01:57:43,13007565CF10A,2013-05-27,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,2,Low,2013-05-28,2013-05-27,2013-05-28,0,0,1039,0,0,0\r\n9695,asher roberti,asher,roberti,2013-05-28,Male,1985-10-07,30,25 - 45,Caucasian,0,1,0,0,1,-1,2013-05-27 11:20:28,2013-05-28 08:51:19,13010135MM10A,2013-05-27,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-28,Risk of Violence,1,Low,2013-05-28,2013-05-27,2013-05-28,1,0,1039,0,0,0\r\n9699,reza mansourie,reza,mansourie,2013-02-22,Male,1973-12-26,42,25 - 45,Other,0,2,0,0,1,-2,2013-02-20 01:05:27,2013-02-21 07:53:53,13000639CF10A,2013-01-14,,39,F,Armed Trafficking in Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-22,Risk of Violence,2,Low,2013-02-22,2013-02-20,2013-02-21,1,0,1134,0,0,0\r\n9703,trena collier,trena,collier,2013-03-18,Female,1988-03-18,28,25 - 45,African-American,0,3,0,0,0,-1,2013-03-17 06:10:24,2013-03-19 11:32:14,13003882CF10A,2013-03-17,,1,F,Burglary Dwelling Assault/Batt,1,14005314MM10A,(M1),0,2014-03-27,Battery,2014-03-27,2014-03-28,,1,14005314MM10A,(M1),2014-03-27,Battery,Risk of Recidivism,3,Low,2013-03-18,Risk of Violence,3,Low,2013-03-18,2014-03-27,2014-03-28,0,1,374,1,1,1\r\n9704,terrell comete,terrell,comete,2014-01-11,Male,1995-11-09,20,Less than 25,African-American,0,3,0,0,0,-1,2014-01-10 04:49:46,2014-01-21 07:13:32,14000440CF10A,2014-01-10,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-11,Risk of Violence,6,Medium,2014-01-11,2014-03-13,2014-05-05,0,10,61,0,0,0\r\n9706,clifton huggins,clifton,huggins,2014-01-02,Female,1991-11-02,24,Less than 25,Caucasian,0,7,2,0,7,-1,2014-01-01 04:54:43,2014-01-02 08:10:06,14000051CF10A,2014-01-01,,1,M,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-02,Risk of Violence,4,Low,2014-01-02,2014-01-01,2014-01-02,7,0,820,0,0,0\r\n9709,trimaine ward,trimaine,ward,2013-04-27,Female,1994-11-30,21,Less than 25,African-American,0,9,0,0,1,-1,2013-04-26 04:34:20,2013-04-30 05:46:51,13006044CF10A,2013-04-26,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-27,Risk of Violence,9,High,2013-04-27,2015-10-21,2015-11-22,1,3,907,0,0,0\r\n9710,devon ricks,devon,ricks,2014-07-20,Male,1988-11-25,27,25 - 45,African-American,0,5,0,0,8,-1,2014-07-19 11:52:29,2014-08-14 05:28:51,14011045CF10A,2014-07-19,,1,F,Felony Battery w/Prior Convict,1,14014315CF10A,(F3),56,2014-09-02,Felony Battery (Dom Strang),2014-10-28,2015-01-27,,1,14014315CF10A,(F3),2014-09-02,Felony Battery (Dom Strang),Risk of Recidivism,5,Medium,2014-07-20,Risk of Violence,6,Medium,2014-07-20,2014-07-19,2014-08-14,8,25,44,1,1,1\r\n9713,anthony pirolo,anthony,pirolo,2013-10-13,Male,1973-04-25,42,25 - 45,Caucasian,0,1,0,0,0,0,2013-10-13 01:34:58,2013-10-19 08:32:01,13019356MM10A,2013-10-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-13,Risk of Violence,1,Low,2013-10-13,2013-10-13,2013-10-19,0,6,901,0,0,0\r\n9715,sandro sampaio,sandro,sampaio,2013-12-02,Male,1973-02-11,43,25 - 45,Caucasian,0,1,0,0,1,-131,2013-07-24 12:44:03,2013-07-25 05:00:04,13008010CF10A,,2013-07-24,131,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-07-24,2013-07-25,1,0,851,0,0,0\r\n9717,irina rogina,irina,rogina,2014-02-12,Female,1961-01-19,55,Greater than 45,Caucasian,0,1,0,0,0,-3,2014-02-09 09:45:01,2014-02-10 09:40:24,14002242MM10A,2014-02-09,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-12,Risk of Violence,1,Low,2014-02-12,2014-02-09,2014-02-10,0,0,779,0,0,0\r\n9723,ahkeen moore,ahkeen,moore,2013-05-03,Male,1992-06-17,23,Less than 25,African-American,0,4,0,0,0,0,2013-05-03 03:57:46,2013-05-04 03:31:44,13008888MM10A,2013-05-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-03,Risk of Violence,6,Medium,2013-05-03,2013-05-03,2013-05-04,0,1,1064,0,0,0\r\n9724,gloria moses,gloria,moses,2013-04-27,Female,1951-12-12,64,Greater than 45,African-American,0,1,0,0,0,-1,2013-04-26 07:02:44,2013-04-30 08:30:10,13006819CF10A,2013-04-26,,1,F,Solicit Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-26,2013-04-30,0,3,1070,0,0,0\r\n9725,roland voltaire,roland,voltaire,2013-09-23,Male,1967-10-04,48,Greater than 45,Other,0,1,0,0,0,-1,2013-09-22 05:49:43,2013-09-24 04:27:36,13018051MM10A,2013-09-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-22,2013-09-24,0,1,921,0,0,0\r\n9730,joshua simons,joshua,simons,2013-05-26,Male,1986-02-25,30,25 - 45,Caucasian,0,2,0,0,0,-1,2013-05-25 09:00:36,2013-05-26 08:33:54,13010048MM10A,2013-05-25,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-26,Risk of Violence,3,Low,2013-05-26,2013-05-25,2013-05-26,0,0,1041,0,0,0\r\n9731,jessica harrold,jessica,harrold,2014-01-07,Female,1994-01-24,22,Less than 25,African-American,0,4,0,0,1,-3,2014-01-04 01:34:33,2014-01-04 01:28:25,14000152MM10A,2014-01-03,,4,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-07,Risk of Violence,4,Low,2014-01-07,2014-01-04,2014-01-04,1,0,815,0,0,0\r\n9734,zachary cato,zachary,cato,2013-10-17,Male,1991-11-01,24,Less than 25,Caucasian,0,4,0,0,0,0,2013-10-17 02:19:04,2013-10-17 07:42:29,13014548CF10A,2013-10-17,,0,F,Poss Meth/Diox/Meth/Amp (MDMA),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-17,Risk of Violence,5,Medium,2013-10-17,2013-10-17,2013-10-17,0,0,897,0,0,0\r\n9735,mario garcia,mario,garcia,2013-09-20,Male,1966-09-05,49,Greater than 45,Hispanic,0,1,0,0,2,-40,2013-08-11 11:18:34,2013-09-20 11:58:23,13015162MM10A,2013-08-11,,40,M,Petit Theft,1,16000454MM30A,(M1),,2016-03-01,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-08-11,2013-09-20,2,0,893,1,0,0\r\n9737,john navarro,john,navarro,2013-12-23,Male,1965-10-08,50,Greater than 45,Caucasian,0,1,0,0,2,-32,2013-11-21 07:33:28,2013-11-22 08:30:22,13016172CF10A,2013-11-21,,32,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-11-21,2013-11-22,2,0,830,0,0,0\r\n9738,deneil merritt,deneil,merritt,2013-04-29,Male,1986-01-24,30,25 - 45,African-American,0,7,0,0,3,-1,2013-04-28 04:58:10,2013-11-20 09:13:09,13008172MM10A,2013-04-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-29,Risk of Violence,7,Medium,2013-04-29,2013-04-28,2013-11-20,3,205,1068,0,0,0\r\n9740,marcus lane,marcus,lane,2013-05-16,Male,1995-03-03,21,Less than 25,African-American,0,9,2,0,2,111,2013-09-04 09:05:35,2013-10-22 09:02:34,13004884CF10A,2012-11-24,,173,M,Dealing In Stolen Property,1,13012477CF10A,(M1),0,2013-09-04,Resist/Obstruct W/O Violence,2013-09-04,2013-10-22,,1,13012477CF10A,(M1),2013-09-04,Battery,Risk of Recidivism,9,High,2013-05-16,Risk of Violence,8,High,2013-05-16,2013-09-04,2013-10-22,2,0,111,1,1,1\r\n9743,lafrance telon,lafrance,telon,2013-09-12,Male,1984-10-05,31,25 - 45,African-American,0,10,0,0,1,-1,2013-09-11 03:42:34,2013-09-12 01:29:57,13015178CF10A,2013-09-11,,1,F,Poss Unlaw Issue Driver Licenc,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-12,Risk of Violence,6,Medium,2013-09-12,2013-12-27,2014-01-14,1,0,106,0,0,0\r\n9746,luis valdez,luis,valdez,2013-02-27,Male,1992-11-30,23,Less than 25,Hispanic,0,7,0,0,0,-1,2013-02-26 01:06:53,2013-02-27 01:44:17,13004001MM10A,2013-02-26,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-27,Risk of Violence,8,High,2013-02-27,2013-02-26,2013-02-27,0,0,1129,0,0,0\r\n9748,trevor lamons,trevor,lamons,2013-02-07,Male,1987-09-19,28,25 - 45,African-American,0,6,0,0,11,-1,2013-02-06 02:17:29,2013-02-08 07:30:37,13005470CF10A,2013-02-06,,1,F,Neglect Child / No Bodily Harm,1,14016007CF10A,(F3),,2013-10-17,Burglary Conveyance Unoccup,,,,1,14013277MM10A,(M1),2014-07-24,Battery,Risk of Recidivism,6,Medium,2013-02-07,Risk of Violence,5,Medium,2013-02-07,2013-02-06,2013-02-08,11,1,252,1,1,1\r\n9750,ferris finley,ferris,finley,2014-02-15,Male,1992-02-05,24,Less than 25,African-American,0,2,0,1,0,-1,2014-02-14 01:26:06,2014-02-15 08:43:50,14002142CF10A,2014-02-14,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-15,Risk of Violence,4,Low,2014-02-15,2014-02-14,2014-02-15,0,0,776,0,0,0\r\n9753,imad cherif,imad,cherif,2013-11-27,Male,1984-07-29,31,25 - 45,Other,0,1,0,0,1,0,2013-11-27 03:46:11,2013-11-28 02:38:00,13022266MM10A,2013-11-27,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-27,Risk of Violence,1,Low,2013-11-27,2013-11-27,2013-11-28,1,1,856,0,0,0\r\n9754,edward durizil,edward,durizil,2013-02-20,Male,1987-02-04,29,25 - 45,African-American,0,4,0,0,3,0,2013-02-20 01:28:43,2013-02-20 01:32:44,13002610CF10A,,2013-02-19,1,F,arrest case no charge,1,14008889CF10A,(F2),1,2014-06-26,Aggravated Battery / Pregnant,2014-06-27,2014-06-28,,1,14008889CF10A,(F2),2014-06-26,Aggravated Battery / Pregnant,Risk of Recidivism,4,Low,2013-02-20,Risk of Violence,3,Low,2013-02-20,2014-06-27,2014-06-28,3,0,491,1,1,1\r\n9756,wade grant,wade,grant,2013-11-08,Male,1988-03-30,28,25 - 45,African-American,0,3,0,0,4,-1,2013-11-07 07:17:15,2013-12-11 09:33:15,13021033MM10A,2013-11-07,,1,M,Battery,1,14013394MM10A,(M1),,2014-07-25,Battery,,,,1,14013394MM10A,(M1),2014-07-25,Battery,Risk of Recidivism,3,Low,2013-11-08,Risk of Violence,4,Low,2013-11-08,2013-11-07,2013-12-11,4,33,259,1,1,1\r\n9759,douglas mackenzie,douglas,mackenzie,2013-02-14,Male,1966-09-06,49,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-02-13 05:22:26,2013-02-14 10:04:07,13002251CF10A,2013-02-13,,1,F,Offer Agree Secure/Lewd Act,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-14,Risk of Violence,2,Low,2013-02-14,2013-02-13,2013-02-14,0,0,1142,0,0,0\r\n9767,danny abadia,danny,abadia,2014-03-26,Male,1973-11-08,42,25 - 45,Caucasian,0,1,0,0,0,0,2014-03-26 12:42:13,2014-03-26 08:34:43,14005237MM10A,2014-03-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-26,Risk of Violence,1,Low,2014-03-26,2014-03-26,2014-03-26,0,0,737,0,0,0\r\n9771,audwin lovinsky,audwin,lovinsky,2013-09-26,Male,1977-06-07,38,25 - 45,African-American,0,2,0,0,4,-1,2013-09-25 11:38:59,2013-09-26 07:54:40,13018314MM10A,2013-09-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-26,Risk of Violence,2,Low,2013-09-26,2013-11-20,2014-02-06,4,0,55,0,0,0\r\n9776,domimick sarlo,domimick,sarlo,2013-10-22,Male,1952-08-10,63,Greater than 45,Caucasian,0,1,0,0,1,,,,02003090CF10A,,2013-10-10,12,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,,,1,0,892,0,0,0\r\n9778,rueben smith,rueben,smith,2013-10-23,Male,1979-07-12,36,25 - 45,African-American,0,6,0,0,0,-1,2013-10-22 05:43:33,2013-10-23 01:34:32,13014732CF10A,2013-10-22,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-23,Risk of Violence,1,Low,2013-10-23,2013-10-22,2013-10-23,0,0,891,0,0,0\r\n9782,timmie ivey,timmie,ivey,2013-02-28,Male,1986-09-23,29,25 - 45,African-American,0,10,0,0,11,-1,2013-02-27 10:06:03,2013-02-28 07:41:24,13004079MM10A,2013-02-27,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-28,Risk of Violence,5,Medium,2013-02-28,2013-02-27,2013-02-28,11,0,1128,0,0,0\r\n9784,sheldon jones,sheldon,jones,2013-04-22,Male,1976-05-18,39,25 - 45,African-American,0,2,0,0,2,-1,2013-04-21 04:21:02,2013-04-22 06:59:21,13007676MM10A,2013-04-21,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2013-04-21,2013-04-22,2,0,1075,0,0,0\r\n9785,vitali kosinskii,vitali,kosinskii,2013-05-14,Male,1968-08-07,47,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-05-13 09:39:07,2013-05-16 06:45:19,13009241MM10A,2013-05-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2013-05-13,2013-05-16,0,2,1053,0,0,0\r\n9788,john oneal,john,oneal,2013-03-26,Male,1961-02-25,55,Greater than 45,African-American,0,8,0,0,12,-40,2013-02-14 12:43:42,2013-03-15 03:27:58,08024134CF10A,,2013-02-14,40,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-26,Risk of Violence,6,Medium,2013-03-26,2015-01-14,2015-01-22,12,0,659,0,0,0\r\n9789,vitay joseph,vitay,joseph,2014-03-29,Male,1952-09-06,63,Greater than 45,African-American,0,1,0,0,2,-1,2014-03-28 11:14:31,2014-03-30 04:46:03,14005403MM10A,2014-03-28,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-29,Risk of Violence,1,Low,2014-03-29,2014-03-28,2014-03-30,2,1,734,0,0,0\r\n9791,dale griffin,dale,griffin,2014-03-30,Male,1960-09-10,55,Greater than 45,Caucasian,0,5,0,0,27,-1,2014-03-29 08:00:47,2014-03-31 03:18:41,14005435MM10A,2014-03-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-30,Risk of Violence,1,Low,2014-03-30,2014-03-29,2014-03-31,27,1,733,0,0,0\r\n9795,yan diaz-gomez,yan,diaz-gomez,2013-06-26,Male,1991-10-19,24,Less than 25,Hispanic,0,2,0,0,1,,,,13007446CF10A,2013-05-24,,33,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-26,Risk of Violence,4,Low,2013-06-26,,,1,0,1010,0,0,0\r\n9796,jean beldunord,jean,beldunord,2013-09-08,Male,1961-06-15,54,Greater than 45,Other,0,2,0,0,2,-1,2013-09-07 05:25:52,2013-09-08 06:43:55,13017074MM10A,2013-09-07,,1,M,Battery,1,15002042MM10A,(M1),0,2015-02-18,Battery,2015-02-18,2015-02-20,,1,15002042MM10A,(M1),2015-02-18,Battery,Risk of Recidivism,2,Low,2013-09-08,Risk of Violence,1,Low,2013-09-08,2015-02-18,2015-02-20,2,0,528,1,1,1\r\n9798,nikko bethel,nikko,bethel,2014-01-31,Male,1989-08-18,26,25 - 45,African-American,0,6,1,0,3,,,,13013365MM10A,2013-01-27,,369,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-31,Risk of Violence,7,Medium,2014-01-31,,,3,0,791,0,0,0\r\n9800,michael dicicco,michael,dicicco,2013-11-14,Male,1978-04-23,37,25 - 45,Caucasian,0,2,0,0,1,-9,2013-11-05 05:01:02,2013-11-06 01:55:26,13020891MM10A,2013-11-05,,9,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-11-05,2013-11-06,1,0,869,0,0,0\r\n9801,traveon ortiz,traveon,ortiz,2013-09-11,Male,1991-01-09,25,25 - 45,African-American,0,5,0,0,4,-170,2013-03-25 04:45:52,2013-03-29 05:47:05,13005831MM10A,2013-03-25,,170,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-11,Risk of Violence,8,High,2013-09-11,2013-03-25,2013-03-29,4,0,933,0,0,0\r\n9802,nicholas wright,nicholas,wright,2013-02-12,Male,1981-08-09,34,25 - 45,African-American,0,1,0,0,0,-1,2013-02-11 04:22:25,2013-02-12 07:48:00,13002127CF10A,2013-02-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-12,Risk of Violence,2,Low,2013-02-12,2014-06-23,2014-07-25,0,0,496,0,0,0\r\n9806,viccas harris,viccas,harris,2013-09-11,Male,1958-11-02,57,Greater than 45,Other,0,1,0,0,0,-1,2013-09-10 09:26:23,2013-09-11 01:40:45,13012804CF10A,2013-09-10,,1,F,Agg Assault W/int Com Fel Dome,1,16002027CF10A,(F3),0,2016-02-17,Felony Battery (Dom Strang),2016-02-17,2016-02-18,,1,16002027CF10A,(F3),2016-02-17,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2013-09-11,Risk of Violence,1,Low,2013-09-11,2016-02-17,2016-02-18,0,0,889,1,0,0\r\n9808,giovanni de paola,giovanni,de paola,2013-07-24,Male,1969-09-30,46,Greater than 45,Caucasian,0,5,0,0,2,-55,2013-05-30 03:17:59,2013-05-30 01:14:43,13007722CF10A,2013-05-30,,55,F,\"Poss 3,4 MDMA (Ecstasy)\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-24,Risk of Violence,2,Low,2013-07-24,2013-05-30,2013-05-30,2,0,982,0,0,0\r\n9810,angel santiago,angel,santiago,2013-09-17,Male,1983-07-28,32,25 - 45,African-American,0,9,0,1,8,-1,2013-09-16 06:50:38,2013-09-17 07:08:30,13013071CF10A,2013-09-16,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-17,Risk of Violence,4,Low,2013-09-17,2014-04-07,2014-04-10,8,0,202,0,0,0\r\n9814,antoine cross,antoine,cross,2014-02-03,Male,1981-01-01,35,25 - 45,African-American,0,8,0,0,4,96,2014-05-10 09:42:39,2014-08-27 06:23:00,12011660CF10A,2012-08-09,,543,F,Possession of Cocaine,1,14006531CF10A,(F2),0,2014-05-10,Sexual Battery / Vict 12 Yrs +,2014-05-10,2014-08-27,,1,14006531CF10A,(F2),2014-05-10,Sexual Battery / Vict 12 Yrs +,Risk of Recidivism,8,High,2014-02-03,Risk of Violence,7,Medium,2014-02-03,2014-05-10,2014-08-27,4,0,96,1,1,1\r\n9817,dwaine williams,dwaine,williams,2013-08-21,Male,1990-02-28,26,25 - 45,African-American,0,5,0,0,2,-1,2013-08-20 08:29:26,2013-09-11 05:35:26,13011672CF10A,2013-08-20,,1,F,Grand Theft in the 3rd Degree,1,15005964MM10A,(M1),74,2015-05-10,Battery,2015-07-23,2015-10-14,,1,15005964MM10A,(M1),2015-05-10,Battery,Risk of Recidivism,5,Medium,2013-08-21,Risk of Violence,6,Medium,2013-08-21,2014-10-30,2014-11-15,2,21,435,0,1,1\r\n9820,craig reese,craig,reese,2013-05-08,Male,1987-02-03,29,25 - 45,African-American,0,4,0,0,2,-1,2013-05-07 03:17:19,2013-05-10 09:37:44,13008855MM10A,2013-05-07,,1,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-08,Risk of Violence,2,Low,2013-05-08,2013-05-07,2013-05-10,2,2,1059,0,0,0\r\n9823,lorenzo brown,lorenzo,brown,2013-10-18,Male,1963-01-08,53,Greater than 45,African-American,0,5,0,0,20,-3,2013-10-15 06:39:17,2013-10-18 10:33:48,13014418CF10A,,2013-10-15,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-18,Risk of Violence,5,Medium,2013-10-18,2013-11-18,2014-04-04,20,0,31,0,0,0\r\n9824,juan oliver,juan,oliver,2013-03-11,Male,1959-01-12,57,Greater than 45,Hispanic,0,1,0,0,1,-15,2013-02-24 05:08:09,2013-02-25 07:21:44,13003831MM10A,2013-02-24,,15,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-02-24,2013-02-25,1,0,1117,0,0,0\r\n9826,quinnell elder,quinnell,elder,2014-02-12,Male,1986-11-06,29,25 - 45,African-American,0,10,1,0,3,-119,2013-10-16 09:53:56,2014-02-12 11:17:50,13013468CF10A,,2013-10-16,119,F,arrest case no charge,1,14008633CF10A,(F3),0,2014-06-23,Felony Battery w/Prior Convict,2014-06-23,2014-08-21,,1,14008633CF10A,(F3),2014-06-23,Felony Battery w/Prior Convict,Risk of Recidivism,10,High,2014-02-12,Risk of Violence,5,Medium,2014-02-12,2014-06-12,2014-06-21,3,0,120,0,1,1\r\n9827,nelson lopez,nelson,lopez,2013-04-16,Male,1988-11-07,27,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-15 06:32:03,2013-05-29 01:43:59,13005412CF10A,2013-04-15,,1,F,Burglary Dwelling Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-16,Risk of Violence,3,Low,2013-04-16,2013-04-15,2013-05-29,0,43,1081,0,0,0\r\n9830,dmitry marochnik,dmitry,marochnik,2014-01-24,Male,1968-01-16,48,Greater than 45,Caucasian,0,2,0,0,0,-1,2014-01-23 09:26:28,2014-01-24 09:36:51,14000979CF10A,2014-01-23,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-24,Risk of Violence,1,Low,2014-01-24,2014-01-23,2014-01-24,0,0,798,0,0,0\r\n9831,victor chavez,victor,chavez,2014-10-01,Male,1986-10-13,29,25 - 45,Hispanic,0,2,0,0,0,0,2014-10-01 04:15:08,2014-10-04 09:16:33,14014448MM10A,2014-10-01,,0,M,Disorderly Conduct,1,15001634CF10A,(F2),0,2015-02-02,Aggravated Battery / Pregnant,2015-02-02,2015-02-04,,1,15001634CF10A,(F2),2015-02-02,Aggravated Battery / Pregnant,Risk of Recidivism,2,Low,2014-10-01,Risk of Violence,2,Low,2014-10-01,2015-02-02,2015-02-04,0,3,124,1,1,1\r\n9832,robert neftelberg,robert,neftelberg,2014-09-22,Male,1990-05-17,25,25 - 45,Caucasian,0,4,0,0,1,0,2014-09-22 03:22:32,2014-09-25 04:34:12,14014043MM10A,2014-09-22,,0,M,Battery,1,15005133MM10A,(M1),0,2015-05-07,Resist/Obstruct W/O Violence,2015-05-07,2015-05-08,,1,15005133MM10A,(M2),2015-05-07,Assault,Risk of Recidivism,4,Low,2014-09-22,Risk of Violence,4,Low,2014-09-22,2015-05-07,2015-05-08,1,3,227,1,1,1\r\n9833,william larson,william,larson,2013-05-04,Male,1948-04-24,67,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-03 11:25:26,2013-05-05 07:13:44,13006371CF10A,2013-05-03,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2013-05-03,2013-05-05,0,1,1063,0,0,0\r\n9834,gerod adderly,gerod,adderly,2013-11-16,Male,1987-02-19,29,25 - 45,African-American,0,5,0,1,2,0,2013-11-16 02:35:51,2013-11-16 07:53:22,13016141CF10A,2013-11-16,,0,M,Agg Fleeing and Eluding,1,16002390CF10A,(F2),1,2016-02-24,,2016-02-25,2016-02-25,,0,,,,,Risk of Recidivism,5,Medium,2013-11-16,Risk of Violence,3,Low,2013-11-16,2016-02-25,2016-02-25,2,0,830,1,0,0\r\n9835,marie scott,marie,scott,2013-05-23,Female,1962-05-18,53,Greater than 45,African-American,0,2,0,0,3,-1,2013-05-22 02:23:12,2013-05-24 09:54:10,13007307CF10A,2013-05-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-23,Risk of Violence,1,Low,2013-05-23,2013-05-22,2013-05-24,3,1,1044,0,0,0\r\n9837,james helvie,james,helvie,2013-07-26,Male,1992-07-02,23,Less than 25,Caucasian,0,5,0,0,1,-40,2013-06-16 02:09:50,2013-07-26 12:11:02,13008475CF10A,2013-06-15,,41,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-26,Risk of Violence,5,Medium,2013-07-26,2013-12-15,2014-04-15,1,0,142,0,0,0\r\n9838,edward mcclain,edward,mcclain,2013-03-18,Male,1966-09-26,49,Greater than 45,African-American,0,1,0,0,0,-4,2013-03-14 11:29:26,2013-03-15 07:01:59,13003785CF10A,2013-03-14,,4,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-14,2013-03-15,0,0,1110,0,0,0\r\n9840,yvonne whorrie,yvonne,whorrie,2013-11-02,Female,1971-09-24,44,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-01 08:05:38,2013-11-02 01:19:24,13020658MM10A,2013-11-01,,1,M,Driving Under The Influence,1,16004931MU10A,(M1),0,2016-02-28,,2016-02-28,2016-02-29,,0,,,,,Risk of Recidivism,1,Low,2013-11-02,Risk of Violence,1,Low,2013-11-02,2016-02-28,2016-02-29,0,0,848,1,0,0\r\n9842,margarita simon,margarita,simon,2014-03-22,Female,1960-11-17,55,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-03-21 08:37:59,2014-03-22 01:21:06,14004030CF10A,2014-03-21,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-21,2014-03-22,0,0,741,0,0,0\r\n9845,sidney moody,sidney,moody,2013-12-31,Male,1969-10-27,46,Greater than 45,African-American,0,1,0,0,0,-1,2013-12-30 05:41:40,2013-12-31 01:23:54,13024001MM10A,2013-12-30,,1,M,Battery,1,16006860MU10A,(M1),0,2016-03-19,,2016-03-19,2016-03-19,,0,,,,,Risk of Recidivism,1,Low,2013-12-31,Risk of Violence,1,Low,2013-12-31,2016-03-19,2016-03-19,0,0,809,0,0,0\r\n9847,sheara bryant,sheara,bryant,2014-06-23,Female,1968-03-13,48,Greater than 45,African-American,0,6,0,0,0,-1,2014-06-22 10:10:01,2014-07-02 03:07:22,14008618CF10A,2014-06-22,,1,F,Tampering With Physical Evidence,1,16001533MM40A,(M1),,2016-03-06,Battery,,,,1,16001533MM40A,(M1),2016-03-06,Battery,Risk of Recidivism,6,Medium,2014-06-23,Risk of Violence,1,Low,2014-06-23,2014-06-22,2014-07-02,0,9,622,1,1,1\r\n9851,robert watson,robert,watson,2014-04-01,Male,1938-07-29,77,Greater than 45,African-American,0,1,0,0,1,-1,2014-03-31 05:06:08,2014-04-02 12:46:17,04052533TC30A,2004-05-15,,3608,M,Driving License Suspended,1,16002278CF10A,(F3),0,2016-02-22,Aggravated Assault W/Dead Weap,2016-02-22,2016-02-23,,1,16002278CF10A,(F3),2016-02-22,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2014-04-01,Risk of Violence,1,Low,2014-04-01,2016-02-22,2016-02-23,1,1,692,1,1,1\r\n9855,martin kildea,martin,kildea,2013-04-25,Male,1961-09-17,54,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-04-24 09:17:57,2013-04-25 01:20:58,13005886CF10A,2013-04-24,,1,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-25,Risk of Violence,1,Low,2013-04-25,2013-04-24,2013-04-25,3,0,1072,0,0,0\r\n9856,roderick edwards,roderick,edwards,2014-01-22,Male,1989-07-28,26,25 - 45,African-American,0,9,0,0,15,-1,2014-01-21 04:59:27,2014-03-05 04:11:04,14000874CF10A,,2014-01-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-22,Risk of Violence,6,Medium,2014-01-22,2014-01-21,2014-03-05,15,42,800,0,0,0\r\n9858,jhonatan navasmejia,jhonatan,navasmejia,2013-04-18,Male,1988-07-12,27,25 - 45,Hispanic,0,2,0,0,1,-86,2013-01-22 03:25:30,2013-01-25 02:25:22,13001032CF10A,,2013-04-15,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-18,Risk of Violence,2,Low,2013-04-18,2014-01-30,2014-02-05,1,0,287,0,0,0\r\n9861,leonard ulloa,leonard,ulloa,2013-11-15,Male,1977-01-13,39,25 - 45,Caucasian,0,2,0,0,2,0,2013-11-15 03:22:59,2013-12-03 11:40:11,13006242CF10A,,2013-11-15,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-15,Risk of Violence,2,Low,2013-11-15,2013-11-15,2013-12-03,2,18,868,0,0,0\r\n9862,jose martinez,jose,martinez,2013-11-06,Male,1980-12-13,35,25 - 45,Hispanic,0,7,0,0,13,-1,2013-11-05 06:09:03,2013-11-09 09:07:35,13015408CF10A,2013-11-05,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-06,Risk of Violence,3,Low,2013-11-06,2013-11-05,2013-11-09,13,3,877,0,0,0\r\n9867,kenneth beasley,kenneth,beasley,2013-09-06,Male,1975-01-12,41,25 - 45,African-American,0,3,0,0,6,-1,2013-09-05 03:59:11,2013-09-11 05:35:17,13012551CF10A,2013-09-05,,1,F,Poss Cocaine/Intent To Del/Sel,1,16009411TC20A,(M2),22,2016-02-18,Driving License Suspended,2016-03-11,2016-03-16,,0,,,,,Risk of Recidivism,3,Low,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-09-05,2013-09-11,6,5,895,1,0,0\r\n9868,eugene ameda,eugene,ameda,2013-10-14,Male,1984-01-03,32,25 - 45,African-American,0,10,0,0,1,-1,2013-10-13 09:56:52,2014-02-05 11:25:55,13019389MM10A,2013-10-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-10-14,Risk of Violence,8,High,2013-10-14,2013-10-13,2014-02-05,1,114,900,0,0,0\r\n9869,keith williams,keith,williams,2013-04-09,Male,1967-12-09,48,Greater than 45,African-American,0,6,0,0,12,-24,2013-03-16 12:22:49,2013-03-16 01:38:12,12026644TC10A,,2012-05-11,333,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-09,Risk of Violence,3,Low,2013-04-09,2013-03-16,2013-03-16,12,0,1088,0,0,0\r\n9871,roger lutar,roger,lutar,2014-01-14,Male,1976-06-03,39,25 - 45,Caucasian,0,6,0,0,2,-120,2013-09-16 01:06:26,2013-11-19 10:46:00,09016467CF10A,,2013-09-16,120,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-14,Risk of Violence,3,Low,2014-01-14,2013-09-16,2013-11-19,2,0,808,0,0,0\r\n9872,bruse mcgill,bruse,mcgill,2014-11-28,Male,1963-07-31,52,Greater than 45,African-American,0,6,0,0,0,-1,2014-11-27 09:00:13,2014-12-01 10:10:14,14016883MM10A,2014-11-27,,1,M,Battery,1,15000828CF10A,(M1),0,2015-01-19,Viol Pretrial Release Dom Viol,2015-01-19,2015-05-17,,1,15000828CF10A,(M1),2015-01-19,Battery,Risk of Recidivism,6,Medium,2014-11-28,Risk of Violence,4,Low,2014-11-28,2015-01-19,2015-05-17,0,3,52,1,1,1\r\n9879,gregory horton,gregory,horton,2014-01-16,Male,1959-08-01,56,Greater than 45,African-American,0,3,0,0,4,-50,2013-11-27 11:15:34,2013-11-28 12:56:21,13022264MM10A,2013-11-27,,50,M,Battery,1,14008977CF10A,(F2),0,2014-06-30,Sexual Battery / Vict 12 Yrs +,2014-06-30,2014-08-05,,1,14008977CF10A,(F2),2014-06-30,Sexual Battery / Vict 12 Yrs +,Risk of Recidivism,3,Low,2014-01-16,Risk of Violence,1,Low,2014-01-16,2014-06-30,2014-08-05,4,0,165,1,1,1\r\n9880,angela waller,angela,waller,2013-09-07,Female,1969-07-22,46,Greater than 45,Caucasian,0,1,0,0,0,0,2013-09-07 12:48:05,2013-09-07 09:24:33,13017046MM10A,2013-09-06,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-07,Risk of Violence,1,Low,2013-09-07,2013-09-07,2013-09-07,0,0,937,0,0,0\r\n9885,brittany clark,brittany,clark,2013-05-09,Female,1993-10-26,22,Less than 25,African-American,0,7,0,0,0,-2,2013-05-07 04:52:05,2013-05-08 01:00:04,13006538CF10A,2013-05-07,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-09,Risk of Violence,5,Medium,2013-05-09,2013-05-07,2013-05-08,0,0,1058,0,0,0\r\n9886,carballo olazabal,carballo,olazabal,2013-03-06,Male,1984-02-23,32,25 - 45,Hispanic,0,1,0,0,1,-47,2013-01-18 10:07:02,2013-01-19 08:57:08,13000867CF10A,2013-01-18,,47,F,Uttering Forged Credit Card,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-06,Risk of Violence,2,Low,2013-03-06,2013-01-18,2013-01-19,1,0,1122,0,0,0\r\n9888,gideon smith,gideon,smith,2013-04-12,Male,1977-02-06,39,25 - 45,African-American,0,4,0,0,8,-1,2013-04-11 02:07:58,2013-05-21 06:41:12,13005388CF10A,2013-04-11,,1,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-12,Risk of Violence,2,Low,2013-04-12,2013-04-11,2013-05-21,8,39,1085,0,0,0\r\n9889,david walker,david,walker,2013-08-15,Male,1980-04-28,35,25 - 45,African-American,0,6,0,0,9,-1,2013-08-14 03:08:13,2013-08-15 07:53:31,13011431CF10A,2013-08-14,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-15,Risk of Violence,3,Low,2013-08-15,2015-09-25,2015-09-30,9,0,771,0,0,0\r\n9890,bryan ashley,bryan,ashley,2014-01-21,Male,1989-08-05,26,25 - 45,African-American,0,1,0,0,1,0,2014-01-21 01:53:43,2014-02-04 07:20:36,14000990MM10A,2014-01-21,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-21,Risk of Violence,2,Low,2014-01-21,2014-08-04,2014-08-04,1,14,195,0,0,0\r\n9891,traci sapp,traci,sapp,2013-02-27,Male,1989-04-01,27,25 - 45,African-American,0,2,0,0,1,0,2013-02-27 12:25:38,2013-02-27 02:41:09,13009902CF10A,2013-02-26,,1,F,Crim Use of Personal ID Info,1,15010744MM10A,(M1),0,2015-10-13,Extradition/Defendants,2015-10-13,2015-10-29,,0,,,,,Risk of Recidivism,2,Low,2013-02-27,Risk of Violence,3,Low,2013-02-27,2013-05-21,2013-05-22,1,0,83,0,0,0\r\n9892,anthony andrews,anthony,andrews,2014-06-24,Male,1988-12-20,27,25 - 45,African-American,0,10,0,0,5,-28,2014-05-27 08:49:05,2014-06-24 11:02:54,14006758CF10A,,2014-05-27,28,F,arrest case no charge,1,14013667CF10A,(M2),0,2014-09-06,Felony Battery w/Prior Convict,2014-09-06,2015-04-16,,1,14013667CF10A,(M2),2014-09-06,Felony Battery w/Prior Convict,Risk of Recidivism,10,High,2014-06-24,Risk of Violence,5,Medium,2014-06-24,2014-09-06,2015-04-16,5,0,74,1,1,1\r\n9894,cassandra robinson,cassandra,robinson,2014-08-27,Female,1981-06-15,34,25 - 45,Caucasian,0,9,0,0,10,22,2014-09-18 11:18:42,2014-10-02 09:03:17,14008082CF10A,2014-06-11,,77,F,Possession of Cocaine,1,15008674MM10A,(M1),0,2015-08-16,Battery,2015-08-16,2015-08-20,,1,15008674MM10A,(M1),2015-08-16,Battery,Risk of Recidivism,9,High,2014-08-27,Risk of Violence,5,Medium,2014-08-27,2014-09-18,2014-10-02,10,0,22,0,1,1\r\n9899,mania simon,mania,simon,2014-02-06,Male,1988-06-18,27,25 - 45,African-American,0,2,0,0,2,104,2014-05-21 12:16:18,2014-06-22 03:06:35,13004765MM10A,2013-03-09,,334,M,Posses/Disply Susp/Revk/Frd DL,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-06,Risk of Violence,2,Low,2014-02-06,2014-05-21,2014-06-22,2,0,104,0,0,0\r\n9900,kevin morales,kevin,morales,2013-04-29,Male,1988-09-09,27,25 - 45,Hispanic,0,6,0,0,6,1026,2016-02-19 05:00:40,2016-03-04 08:51:57,11003049CF10A,,2012-09-19,222,F,arrest case no charge,1,16001632MM10A,(M1),0,2016-02-19,Possess Cannabis/20 Grams Or Less,2016-02-19,2016-03-04,,0,,,,,Risk of Recidivism,6,Medium,2013-04-29,Risk of Violence,6,Medium,2013-04-29,2016-02-19,2016-03-04,6,0,1026,1,0,0\r\n9902,qushondra fields,qushondra,fields,2014-12-17,Female,1983-12-13,32,25 - 45,African-American,0,1,0,0,0,0,2014-12-17 01:46:31,2014-12-17 08:04:44,14017743MM10A,2014-12-16,,1,M,Battery,1,15016551CF10A,(F2),,2015-12-28,Throw Deadly Missile Into Veh,,,,1,15016551CF10A,(F2),2015-12-28,Throw Deadly Missile Into Veh,Risk of Recidivism,1,Low,2014-12-17,Risk of Violence,1,Low,2014-12-17,2014-12-17,2014-12-17,0,0,376,1,1,1\r\n9906,ivan vera,ivan,vera,2013-07-18,Male,1973-02-07,43,25 - 45,Caucasian,0,2,0,0,4,-55,2013-05-24 08:57:03,2013-05-25 10:31:58,13021578TC10A,2013-05-24,,55,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-18,Risk of Violence,1,Low,2013-07-18,2013-05-24,2013-05-25,4,0,988,0,0,0\r\n9907,john seymore,john,seymore,2013-04-24,Male,1963-11-25,52,Greater than 45,African-American,0,9,0,0,7,-1,2013-04-23 04:49:37,2013-08-19 02:59:15,13005828CF10A,2013-04-23,,1,F,Possession of Cocaine,1,13014298CF10A,(M1),0,2013-10-12,Possess Drug Paraphernalia,2013-10-12,2013-11-13,,1,13014298CF10A,(F2),2013-10-12,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2013-04-24,Risk of Violence,3,Low,2013-04-24,2013-10-12,2013-11-13,7,117,171,1,1,1\r\n9908,britton blackwood,britton,blackwood,2013-09-13,Male,1994-05-25,21,Less than 25,African-American,0,10,0,0,2,0,2013-09-13 06:24:14,2013-09-14 04:42:09,13012966CF10A,2013-09-13,,0,F,Tampering With Physical Evidence,1,13022505MM10A,(M1),,2013-09-27,Carrying A Concealed Weapon,,,,1,15000392CF10A,(F2),2014-09-24,Armed False Imprisonment,Risk of Recidivism,10,High,2013-09-13,Risk of Violence,10,High,2013-09-13,2013-09-13,2013-09-14,2,1,14,1,1,1\r\n9910,shedrich hines,shedrich,hines,2013-07-16,Male,1994-10-09,21,Less than 25,African-American,0,9,0,0,1,34,2013-08-19 07:24:28,2014-09-18 07:00:41,13002313CF10A,2013-02-13,,153,F,Carrying Concealed Firearm,1,13011627CF10A,(F2),0,2013-08-19,Robbery / No Weapon,2013-08-19,2014-09-18,,1,13011627CF10A,(F2),2013-08-19,Robbery / No Weapon,Risk of Recidivism,9,High,2013-07-16,Risk of Violence,9,High,2013-07-16,2013-08-19,2014-09-18,1,0,34,1,1,1\r\n9912,ana olivaconsuegra,ana,olivaconsuegra,2013-08-26,Male,1990-03-26,26,25 - 45,Hispanic,0,6,0,0,0,-1,2013-08-25 01:25:15,2013-08-25 05:58:19,13011965CF10A,2013-08-25,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-26,Risk of Violence,4,Low,2013-08-26,2013-08-25,2013-08-25,0,0,949,0,0,0\r\n9915,enrique cruz,enrique,cruz,2013-10-14,Male,1977-02-04,39,25 - 45,Hispanic,0,1,0,0,3,,,,13016657MM10A,2013-08-30,,45,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-14,Risk of Violence,1,Low,2013-10-14,,,3,0,900,0,0,0\r\n9917,onique williams,onique,williams,2013-05-12,Male,1985-01-23,31,25 - 45,African-American,0,1,0,0,1,-1,2013-05-11 03:14:46,2013-05-12 07:01:24,13009134MM10A,2013-05-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-12,Risk of Violence,2,Low,2013-05-12,2013-05-11,2013-05-12,1,0,1055,0,0,0\r\n9918,alan malone,alan,malone,2013-05-27,Male,1981-04-24,34,25 - 45,Caucasian,0,5,0,0,1,-1,2013-05-26 09:18:06,2013-05-27 06:09:09,13010121MM10A,2013-05-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-27,Risk of Violence,5,Medium,2013-05-27,2013-05-26,2013-05-27,1,0,1040,0,0,0\r\n9919,jamie elliot,jamie,elliot,2013-04-07,Male,1983-12-15,32,25 - 45,African-American,0,4,0,0,0,-1,2013-04-06 10:24:59,2013-04-07 01:32:06,13004960CF10A,2013-04-06,,1,M,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-07,Risk of Violence,3,Low,2013-04-07,2013-04-06,2013-04-07,0,0,1090,0,0,0\r\n9920,nadine chambers,nadine,chambers,2013-08-12,Female,1965-08-08,50,Greater than 45,Caucasian,0,3,0,0,0,-3,2013-08-09 01:00:46,2013-08-09 06:29:32,13014985MM10A,2013-08-08,,4,M,Driving Under The Influence,1,13017330MM10A,(M1),1,2013-09-11,Battery,2013-09-12,2013-09-13,,1,13017330MM10A,(M1),2013-09-11,Battery,Risk of Recidivism,3,Low,2013-08-12,Risk of Violence,1,Low,2013-08-12,2014-11-19,2014-11-20,0,0,30,1,1,1\r\n9921,vincent green,vincent,green,2013-04-13,Male,1988-06-03,27,25 - 45,African-American,0,5,0,0,1,-1,2013-04-12 09:18:59,2013-04-13 08:25:20,13005305CF10A,2013-04-12,,1,M,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-13,Risk of Violence,3,Low,2013-04-13,2014-03-05,2014-08-15,1,0,326,0,0,0\r\n9922,krystal patterson,krystal,patterson,2014-01-17,Female,1989-05-23,26,25 - 45,African-American,0,3,1,0,4,-1,2014-01-16 09:09:35,2014-01-18 12:04:24,14000707CF10A,,2014-01-16,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-17,Risk of Violence,3,Low,2014-01-17,2014-01-16,2014-01-18,4,1,805,0,0,0\r\n9923,jeremy watts,jeremy,watts,2014-10-27,Male,1989-03-31,27,25 - 45,African-American,1,5,0,0,4,-1,2014-10-26 10:19:20,2014-10-28 04:09:18,14014428CF10A,2014-10-26,,1,F,Aggravated Assault W/Dead Weap,1,15000454CF10A,(F3),0,2015-01-10,Poss Pyrrolidinovalerophenone,2015-01-10,2015-01-11,,1,15005533CF10A,(F3),2015-04-27,Agg Assault W/int Com Fel Dome,Risk of Recidivism,5,Medium,2014-10-27,Risk of Violence,3,Low,2014-10-27,2015-01-10,2015-01-11,4,1,75,1,1,1\r\n9931,jean fils-aime,jean,fils-aime,2013-01-13,Male,1957-07-31,58,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-12 03:18:57,2013-01-13 12:41:21,13000730MM10A,2013-01-11,,2,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0,0\r\n9935,kevin soto,kevin,soto,2013-04-18,Male,1991-07-27,24,Less than 25,African-American,0,10,5,1,15,-1,2013-04-17 07:43:21,2013-04-19 09:18:18,13005510CF10A,2013-04-17,,1,F,Deliver Cocaine,1,13012172CF10A,(F2),,2013-08-28,Aggravated Battery,,,,1,13012172CF10A,(F2),2013-08-28,Aggravated Battery,Risk of Recidivism,10,High,2013-04-18,Risk of Violence,9,High,2013-04-18,2013-04-17,2013-04-19,15,1,132,1,1,1\r\n9939,wilfredo torres,wilfredo,torres,2013-12-02,Male,1965-07-01,50,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-01 05:20:31,2013-12-02 09:13:00,13022384MM10A,2013-12-01,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-02,0,0,851,0,0,0\r\n9942,adriano suarez,adriano,suarez,2013-11-17,Male,1970-01-02,46,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-11-16 06:24:35,2013-11-17 08:15:11,13015946CF10A,2013-11-16,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-17,Risk of Violence,1,Low,2013-11-17,2013-11-16,2013-11-17,0,0,866,0,0,0\r\n9948,elijah garland,elijah,garland,2013-02-06,Male,1982-01-03,34,25 - 45,African-American,0,7,0,0,10,-1,2013-02-05 05:25:18,2013-02-06 07:15:25,13001779CF10A,2013-02-05,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-06,Risk of Violence,5,Medium,2013-02-06,2013-02-05,2013-02-06,10,0,1150,0,0,0\r\n9949,luis otero,luis,otero,2014-03-14,Male,1960-01-28,56,Greater than 45,Hispanic,0,1,0,0,2,-108,2013-11-26 02:29:01,2013-11-27 03:32:27,13016699CF10A,,2013-11-26,108,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-14,Risk of Violence,1,Low,2014-03-14,2013-11-26,2013-11-27,2,0,749,0,0,0\r\n9951,diego garzon,diego,garzon,2014-01-18,Male,1989-10-14,26,25 - 45,Caucasian,0,2,0,0,2,-1,2014-01-17 04:03:50,2014-01-20 08:01:13,14000753CF10A,2014-01-17,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-18,Risk of Violence,3,Low,2014-01-18,2014-01-17,2014-01-20,2,2,804,0,0,0\r\n9952,jason boucher,jason,boucher,2013-01-16,Male,1984-05-14,31,25 - 45,Caucasian,0,1,0,0,0,-1,2013-01-15 07:55:01,2013-01-16 06:46:25,13000712CF10A,2013-01-15,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-16,Risk of Violence,1,Low,2013-01-16,2013-07-29,2013-09-19,0,0,194,0,0,0\r\n9955,marlon dunlop,marlon,dunlop,2013-09-17,Male,1976-10-02,39,25 - 45,African-American,0,1,0,0,0,-1,2013-09-16 07:16:33,2013-10-04 09:01:33,13013088CF10A,2013-09-16,,1,F,Kidnapping / Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-17,Risk of Violence,1,Low,2013-09-17,2013-09-16,2013-10-04,0,17,927,0,0,0\r\n9959,chanel hooper,chanel,hooper,2013-10-08,Female,1993-09-04,22,Less than 25,African-American,0,6,0,0,0,-1,2013-10-07 03:03:48,2013-10-08 08:59:33,13019072MM10A,2013-10-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-08,Risk of Violence,5,Medium,2013-10-08,2013-10-07,2013-10-08,0,0,906,0,0,0\r\n9960,josalina afonso,josalina,afonso,2013-09-14,Female,1990-05-21,25,25 - 45,African-American,0,2,0,0,0,-1,2013-09-13 08:03:52,2013-09-14 07:39:15,13017497MM10A,2013-09-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-14,Risk of Violence,3,Low,2013-09-14,2013-09-13,2013-09-14,0,0,930,0,0,0\r\n9963,leontae williams,leontae,williams,2013-10-20,Female,1994-11-01,21,Less than 25,African-American,0,9,1,0,2,-1,2013-10-19 07:50:05,2013-10-20 08:38:22,13014630CF10A,2013-10-19,,1,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-20,Risk of Violence,6,Medium,2013-10-20,2013-10-19,2013-10-20,2,0,894,0,0,0\r\n9965,justin koven,justin,koven,2014-02-12,Male,1995-05-06,20,Less than 25,Caucasian,0,4,0,0,1,-1,2014-02-11 03:24:41,2014-02-12 02:37:51,14001933CF10A,2014-02-11,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-12,Risk of Violence,6,Medium,2014-02-12,2014-02-11,2014-02-12,1,0,779,0,0,0\r\n9966,tracy butler,tracy,butler,2014-06-30,Male,1961-08-15,54,Greater than 45,African-American,0,5,0,0,12,0,2014-06-30 04:03:25,2014-10-26 04:37:21,14010073MM10A,2014-06-30,,0,M,Battery,1,14015969CF10A,(M1),0,2014-11-29,Viol Injunct Domestic Violence,2014-11-29,2015-12-15,,1,14015969CF10A,(F2),2014-11-29,Throw Deadly Missile Into Veh,Risk of Recidivism,5,Medium,2014-06-30,Risk of Violence,2,Low,2014-06-30,2014-11-29,2015-12-15,12,118,152,1,1,1\r\n9968,shavoria lewis,shavoria,lewis,2013-01-15,Female,1988-07-01,27,25 - 45,African-American,0,6,0,0,2,-1,2013-01-14 07:34:35,2013-01-18 08:28:33,13000621CF10A,2013-01-14,,1,F,Felony Petit Theft,1,13040414TC10A,(M2),,2013-10-02,Unlaw LicTag/Sticker Attach,,,,1,14006149CF10A,(F3),2014-05-02,Robbery Sudd Snatch No Weapon,Risk of Recidivism,6,Medium,2013-01-15,Risk of Violence,4,Low,2013-01-15,2013-01-14,2013-01-18,2,3,260,1,1,1\r\n9971,nancy howard,nancy,howard,2014-03-22,Female,1961-01-18,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-21 09:28:46,2014-03-22 10:57:58,14004007CF10A,2014-03-21,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-21,2014-03-22,0,0,741,0,0,0\r\n9972,vatoria adderly,vatoria,adderly,2014-01-23,Male,1991-07-01,24,Less than 25,African-American,0,2,0,0,0,-1,2014-01-22 10:18:38,2014-01-23 02:17:27,14001109MM10A,2014-01-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-23,Risk of Violence,3,Low,2014-01-23,2014-01-22,2014-01-23,0,0,799,0,0,0\r\n9973,bruce francis,bruce,francis,2014-11-22,Male,1995-11-14,20,Less than 25,African-American,0,10,0,1,0,0,2014-11-22 04:56:51,2014-11-22 08:49:03,14015731CF10A,2014-11-22,,0,F,Possession of Cocaine,1,15000919CF10A,(F3),,2015-01-21,Tampering With Physical Evidence,,,,1,15000919CF10A,(F3),2015-01-21,Battery on Law Enforc Officer,Risk of Recidivism,10,High,2014-11-22,Risk of Violence,9,High,2014-11-22,2014-12-13,2014-12-13,0,0,21,0,1,1\r\n9979,brittany holt,brittany,holt,2013-07-02,Female,1982-01-22,34,25 - 45,Caucasian,0,1,0,0,1,-21,2013-06-11 09:42:12,2013-06-12 11:45:38,13011225MM10A,2013-06-11,,21,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-02,Risk of Violence,2,Low,2013-07-02,2013-06-11,2013-06-12,1,0,1004,0,0,0\r\n9984,alan-michael caldwell,alan-michael,caldwell,2013-01-27,Male,1991-05-06,24,Less than 25,African-American,0,8,0,0,0,0,2013-01-27 04:17:45,2013-01-28 06:51:41,13001345CF10A,2013-01-27,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-27,Risk of Violence,6,Medium,2013-01-27,2013-01-27,2013-01-28,0,1,1160,0,0,0\r\n9985,nathan mcmullen,nathan,mcmullen,2013-12-11,Male,1974-03-18,42,25 - 45,Caucasian,0,4,0,0,8,-1,2013-12-10 08:19:39,2013-12-11 09:07:56,13017074CF10A,2013-12-10,,1,F,Agg Fleeing and Eluding,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-11,Risk of Violence,4,Low,2013-12-11,2014-01-28,2014-01-29,8,0,48,0,0,0\r\n9988,nichole stupart,nichole,stupart,2013-06-05,Female,1976-01-03,40,25 - 45,African-American,0,1,0,0,1,-73,2013-03-24 12:28:55,2013-03-25 05:28:38,13004261CF10A,2013-03-24,,73,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-05,Risk of Violence,1,Low,2013-06-05,2013-03-24,2013-03-25,1,0,1031,0,0,0\r\n9991,wilfredo rodriguez,wilfredo,rodriguez,2014-01-31,Male,1995-12-30,20,Less than 25,Caucasian,0,4,0,0,0,-1,2014-01-30 08:42:46,2014-02-03 01:10:07,14001693MM10A,2014-01-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-31,Risk of Violence,7,Medium,2014-01-31,2014-01-30,2014-02-03,0,3,791,0,0,0\r\n9997,stefan walters,stefan,walters,2013-10-02,Male,1995-07-04,20,Less than 25,African-American,0,4,0,0,0,-1,2013-10-01 05:18:33,2013-10-02 07:35:45,13018695MM10A,2013-10-01,,1,M,Assault,1,15012675MM10A,(M1),0,2015-12-07,Resist/Obstruct W/O Violence,2015-12-07,2015-12-09,,1,15012675MM10A,(M1),2015-12-07,Battery,Risk of Recidivism,4,Low,2013-10-02,Risk of Violence,7,Medium,2013-10-02,2015-12-07,2015-12-09,0,0,796,1,0,0\r\n10004,jarvis cornelius,jarvis,cornelius,2013-02-12,Male,1989-01-14,27,25 - 45,African-American,0,5,0,0,5,-1,2013-02-11 11:48:35,2013-02-12 08:12:58,13006473TC10A,2013-02-11,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-12,Risk of Violence,4,Low,2013-02-12,2013-02-11,2013-02-12,5,0,1144,0,0,0\r\n10006,korbin goodroad,korbin,goodroad,2013-09-14,Male,1995-04-21,20,Less than 25,Caucasian,0,10,0,0,0,-1,2013-09-13 10:01:25,2013-09-14 06:55:45,13017499MM10A,2013-09-13,,1,M,Battery,1,15000261MM10A,(M1),0,2015-01-07,Battery,2015-01-07,2015-01-14,,1,15000261MM10A,(M1),2015-01-07,Battery,Risk of Recidivism,10,High,2013-09-14,Risk of Violence,9,High,2013-09-14,2015-01-07,2015-01-14,0,0,480,1,1,1\r\n10007,sharkiem adams,sharkiem,adams,2013-10-07,Male,1995-09-21,20,Less than 25,African-American,0,6,0,0,0,-3,2013-10-04 01:09:32,2013-10-04 08:43:28,13013887CF10A,2013-10-03,,4,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-07,Risk of Violence,8,High,2013-10-07,2013-10-04,2013-10-04,0,0,907,0,0,0\r\n10009,travis whitehead,travis,whitehead,2013-02-22,Male,1986-05-03,29,25 - 45,African-American,0,7,0,0,9,0,2013-02-22 12:02:01,2013-02-27 06:08:00,13000793CF10A,,2013-02-21,1,F,arrest case no charge,1,13025307TC10A,(M1),0,2013-05-29,Opert With Susp DL 2nd Offens,2013-05-29,2013-05-30,,1,13008106CF10A,(F3),2013-06-07,Agg Fleeing and Eluding,Risk of Recidivism,7,Medium,2013-02-22,Risk of Violence,4,Low,2013-02-22,2013-05-29,2013-05-30,9,5,96,1,1,1\r\n10018,sheleike barnett,sheleike,barnett,2013-04-13,Female,1991-04-22,24,Less than 25,African-American,0,5,0,0,0,0,2013-04-13 02:30:21,2013-04-13 08:04:17,13005345CF10A,2013-04-12,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-13,Risk of Violence,4,Low,2013-04-13,2013-04-13,2013-04-13,0,0,1084,0,0,0\r\n10020,trevor benn,trevor,benn,2013-04-12,Male,1989-04-08,27,25 - 45,Caucasian,0,4,0,0,0,0,2013-04-12 01:52:14,2013-04-24 04:49:29,13005313CF10A,2013-04-12,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-12,Risk of Violence,3,Low,2013-04-12,2013-09-22,2013-09-23,0,12,163,0,0,0\r\n10021,adam magazinik,adam,magazinik,2013-05-10,Male,1991-10-08,24,Less than 25,Caucasian,0,4,0,0,0,-2,2013-05-08 11:38:39,2013-05-09 07:58:28,13006597CF10A,2013-05-08,,2,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-10,Risk of Violence,4,Low,2013-05-10,2013-05-08,2013-05-09,0,0,1057,0,0,0\r\n10022,louvens jean,louvens,jean,2014-06-25,Male,1984-10-12,31,25 - 45,African-American,0,6,1,0,6,27,2014-07-22 09:26:47,2014-09-09 05:03:17,13021490MM10A,2013-09-07,,291,M,Battery,1,14009996CF10A,(F1),0,2014-07-22,Robbery W/Firearm,2014-07-22,2014-09-09,,1,14009996CF10A,(F1),2014-07-22,Robbery W/Firearm,Risk of Recidivism,6,Medium,2014-06-25,Risk of Violence,8,High,2014-06-25,2014-07-22,2014-09-09,6,0,27,1,1,1\r\n10027,priscilla pierce,priscilla,pierce,2013-10-29,Female,1970-02-12,46,Greater than 45,African-American,0,6,0,0,4,-56,2013-09-03 10:53:16,2013-10-29 10:16:41,13012440CF10A,,2013-09-03,56,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-29,Risk of Violence,3,Low,2013-10-29,2014-06-04,2014-07-30,4,0,218,0,0,0\r\n10028,vincent dukes,vincent,dukes,2014-01-14,Male,1962-09-25,53,Greater than 45,African-American,0,9,0,0,3,-241,2013-05-18 08:26:07,2013-12-10 10:30:00,06001402MM40A,,2006-06-28,2757,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-14,Risk of Violence,3,Low,2014-01-14,2014-10-03,2014-12-18,3,0,262,0,0,0\r\n10029,kevin maitland,kevin,maitland,2013-11-09,Male,1962-04-18,54,Greater than 45,Caucasian,0,1,0,0,0,0,2013-11-09 03:27:48,2013-11-09 11:53:54,13015632CF10A,2013-11-08,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-09,Risk of Violence,1,Low,2013-11-09,2013-11-09,2013-11-09,0,0,874,0,0,0\r\n10033,latosha rattray,latosha,rattray,2013-02-06,Female,1980-12-12,35,25 - 45,African-American,0,6,0,0,7,-1,2013-02-05 09:43:24,2013-02-07 09:37:23,12013834CF10A,,2013-02-05,1,F,arrest case no charge,1,13010536CF10A,(M1),0,2013-07-27,Possess Cannabis/20 Grams Or Less,2013-07-27,2013-07-28,,1,13010536CF10A,(F3),2013-07-27,Aggravated Assault W/Dead Weap,Risk of Recidivism,6,Medium,2013-02-06,Risk of Violence,2,Low,2013-02-06,2013-07-27,2013-07-28,7,1,171,1,1,1\r\n10035,theodore evans,theodore,evans,2013-12-25,Female,1963-02-07,53,Greater than 45,African-American,0,5,0,0,0,-1,2013-12-24 02:24:05,2013-12-25 12:32:56,13017753CF10A,2013-12-24,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-25,Risk of Violence,1,Low,2013-12-25,2013-12-24,2013-12-25,0,0,828,0,0,0\r\n10036,byron wright,byron,wright,2013-01-29,Male,1989-06-13,26,25 - 45,African-American,0,4,0,0,9,-1,2013-01-28 06:59:53,2013-01-30 04:16:27,13002013MM10A,2013-01-28,,1,M,Petit Theft,1,13008037MM10A,(M1),0,2013-04-07,Possess Cannabis/20 Grams Or Less,2013-04-07,2013-04-08,,1,13010718CF10A,(F2),2013-07-31,Aggravated Battery / Pregnant,Risk of Recidivism,4,Low,2013-01-29,Risk of Violence,4,Low,2013-01-29,2013-04-07,2013-04-08,9,1,68,1,1,1\r\n10042,owen fowler,owen,fowler,2013-08-29,Male,1990-09-16,25,25 - 45,African-American,0,7,0,0,6,0,2013-08-29 05:19:21,2013-08-29 08:03:30,13012222CF10A,2013-08-29,,0,F,\"Poss 3,4 MDMA (Ecstasy)\",1,13017649CF10A,(F2),0,2013-12-22,Robbery / No Weapon,2013-12-22,2014-01-16,,1,13017649CF10A,(F2),2013-12-22,Robbery / No Weapon,Risk of Recidivism,7,Medium,2013-08-29,Risk of Violence,4,Low,2013-08-29,2013-09-20,2013-09-30,6,0,22,0,1,1\r\n10043,kim aragona,kim,aragona,2013-03-23,Female,1967-03-10,49,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-23 12:39:51,2013-03-23 07:51:22,13004216CF10A,2013-03-22,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-23,Risk of Violence,1,Low,2013-03-23,2013-03-23,2013-03-23,0,0,1105,0,0,0\r\n10047,daryl junck,daryl,junck,2013-03-01,Male,1958-05-05,57,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-02-27 09:46:46,2013-02-27 07:21:49,13002997CF10A,,2013-02-27,2,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-02-27,2013-02-27,0,0,1127,0,0,0\r\n10050,fabienne joseph,fabienne,joseph,2013-02-06,Female,1982-02-12,34,25 - 45,Other,0,2,0,0,0,212,2013-09-06 01:01:59,2013-09-19 11:14:20,13001778CF10A,2013-02-05,,1,F,Felony Battery (Dom Strang),1,15012384CF10A,(F2),161,2015-06-12,Aggravated Battery / Pregnant,2015-11-20,2015-11-25,,1,15012384CF10A,(F2),2015-06-12,Aggravated Battery / Pregnant,Risk of Recidivism,2,Low,2013-02-06,Risk of Violence,1,Low,2013-02-06,2013-09-06,2013-09-19,0,0,212,0,0,0\r\n10051,gregory schmidt,gregory,schmidt,2014-03-09,Male,1990-08-27,25,25 - 45,Caucasian,0,10,0,0,5,-1,2014-03-08 07:11:38,2014-04-12 08:35:12,14003296CF10A,2014-03-08,,1,F,Possession of Oxycodone,1,14012121CF10A,(M1),1,2014-09-04,Petit Theft $100- $300,2014-09-05,2015-04-07,,1,16002414CF10A,(F3),2015-12-31,Felony Battery (Dom Strang),Risk of Recidivism,10,High,2014-03-09,Risk of Violence,5,Medium,2014-03-09,2014-03-08,2014-04-12,5,34,179,1,1,1\r\n10052,marcus johnson,marcus,johnson,2014-03-28,Female,1974-03-26,42,25 - 45,African-American,0,5,0,0,1,-1,2014-03-27 11:06:29,2014-03-28 01:10:38,14004358CF10A,2014-03-27,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-28,Risk of Violence,4,Low,2014-03-28,2014-03-27,2014-03-28,1,0,735,0,0,0\r\n10054,edwin nesbitt,edwin,nesbitt,2013-04-30,Male,1965-01-08,51,Greater than 45,African-American,0,5,0,0,1,0,2013-04-30 03:07:58,2013-04-30 07:51:46,13006194CF10A,2013-04-30,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-30,Risk of Violence,1,Low,2013-04-30,2013-04-30,2013-04-30,1,0,1067,0,0,0\r\n10055,daniel baptiste,daniel,baptiste,2014-01-09,Male,1989-11-08,26,25 - 45,African-American,0,7,0,0,7,,,,11014497CF10A,2011-08-25,,868,F,Sell Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-09,Risk of Violence,7,Medium,2014-01-09,,,7,0,813,0,0,0\r\n10056,sheldon smellie,sheldon,smellie,2013-05-01,Male,1984-11-19,31,25 - 45,Other,0,2,1,0,5,0,2013-05-01 05:24:33,2013-05-02 12:30:07,13008467MM10A,2013-05-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2013-05-01,2013-05-02,5,1,1066,0,0,0\r\n10057,keandre twiggs,keandre,twiggs,2013-02-19,Male,1982-03-14,34,25 - 45,African-American,0,8,1,0,9,,,,07013022CF10A,,2009-05-02,1389,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-19,Risk of Violence,7,Medium,2013-02-19,,,9,0,1137,0,0,0\r\n10058,jeffrey simmons,jeffrey,simmons,2013-01-23,Male,1963-01-13,53,Greater than 45,African-American,0,5,0,0,13,-1,2013-01-22 09:49:03,2013-01-24 05:38:32,11011337MM10A,,2013-01-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-23,Risk of Violence,3,Low,2013-01-23,2016-03-01,2020-01-01,13,1,1133,0,0,0\r\n10059,christy harris,christy,harris,2013-01-19,Female,1972-11-13,43,25 - 45,African-American,0,7,0,0,6,0,2013-01-19 02:59:22,2013-01-19 06:49:07,13000900CF10A,2013-01-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-19,Risk of Violence,3,Low,2013-01-19,2013-01-19,2013-01-19,6,0,1168,0,0,0\r\n10061,justin warner,justin,warner,2014-03-17,Male,1981-09-17,34,25 - 45,African-American,0,1,0,0,0,-3,2014-03-14 08:24:54,2014-03-15 11:00:52,14003635CF10A,2014-03-14,,3,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,2,Low,2014-03-17,2014-03-14,2014-03-15,0,0,746,0,0,0\r\n10064,medius clermontvil,medius,clermontvil,2014-01-02,Male,1964-06-19,51,Greater than 45,African-American,0,1,0,0,0,-1,2014-01-01 10:17:16,2014-01-07 05:52:03,14000031MU10A,2014-01-01,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-02,Risk of Violence,1,Low,2014-01-02,2014-01-01,2014-01-07,0,5,820,0,0,0\r\n10065,joseph walls,joseph,walls,2013-09-30,Male,1989-09-06,26,25 - 45,Caucasian,0,4,0,0,1,-1,2013-09-29 03:52:04,2013-09-30 03:51:12,13018484MM10A,2013-09-29,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-30,Risk of Violence,3,Low,2013-09-30,2013-09-29,2013-09-30,1,0,914,0,0,0\r\n10066,larry jones,larry,jones,2014-01-12,Male,1968-12-10,47,Greater than 45,African-American,0,6,0,0,5,-1,2014-01-11 08:21:16,2014-01-13 11:49:59,14000487CF10A,2014-01-11,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-12,Risk of Violence,1,Low,2014-01-12,2014-01-11,2014-01-13,5,1,810,0,0,0\r\n10068,daniel berrios,daniel,berrios,2013-03-29,Male,1993-09-17,22,Less than 25,Caucasian,0,4,0,1,0,-1,2013-03-28 03:18:17,2013-03-29 01:00:12,13004481CF10A,2013-03-28,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-29,Risk of Violence,5,Medium,2013-03-29,2013-03-28,2013-03-29,0,0,1099,0,0,0\r\n10069,katherine soto,katherine,soto,2013-02-22,Female,1979-07-25,36,25 - 45,Caucasian,0,2,0,0,0,0,2013-02-22 01:45:11,2013-02-23 02:08:52,13002757CF10A,2013-02-22,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-22,Risk of Violence,1,Low,2013-02-22,2013-02-22,2013-02-23,0,1,1134,0,0,0\r\n10071,amy matos,amy,matos,2014-01-01,Female,1980-02-06,36,25 - 45,Hispanic,0,3,0,0,1,0,2014-01-01 03:20:24,2014-01-02 12:43:01,14000038MM10A,2014-01-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-01,Risk of Violence,1,Low,2014-01-01,2014-01-01,2014-01-02,1,1,821,0,0,0\r\n10073,tina green,tina,green,2014-01-16,Male,1978-09-25,37,25 - 45,African-American,0,2,0,0,2,,,,13011810MM10A,2012-08-20,,514,M,Compulsory Attendance Violation,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-16,Risk of Violence,2,Low,2014-01-16,,,2,0,806,0,0,0\r\n10076,deshaud johnson,deshaud,johnson,2013-08-08,Male,1994-12-16,21,Less than 25,African-American,0,4,0,0,2,-34,2013-07-05 03:20:23,2013-08-08 11:01:12,13009448CF10A,2013-07-05,,34,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-08,Risk of Violence,6,Medium,2013-08-08,2013-07-05,2013-08-08,2,0,967,0,0,0\r\n10077,floyd taylor,floyd,taylor,2013-02-27,Male,1990-12-22,25,25 - 45,African-American,0,6,3,1,6,-1,2013-02-26 07:19:35,2013-02-27 01:47:04,13003995MM10A,2013-02-26,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-27,Risk of Violence,7,Medium,2013-02-27,2013-02-26,2013-02-27,6,0,1129,0,0,0\r\n10078,alex velazquezmontalvo,alex,velazquezmontalvo,2014-12-30,Male,1988-07-09,27,25 - 45,Hispanic,0,4,0,0,1,284,2015-10-10 03:19:34,2015-10-13 09:13:04,12000304CF10A,2012-01-07,,1088,F,Possession of Hydrocodone,1,15010602MM10A,(M1),0,2015-10-10,Battery,2015-10-10,2015-10-13,,1,15010602MM10A,(M1),2015-10-10,Battery,Risk of Recidivism,4,Low,2014-12-30,Risk of Violence,3,Low,2014-12-30,2015-10-10,2015-10-13,1,0,284,1,1,1\r\n10083,corey ackerman,corey,ackerman,2014-03-24,Male,1982-04-25,33,25 - 45,Caucasian,0,1,0,0,0,-2,2014-03-22 09:56:34,2014-03-23 09:11:43,14005003MM10A,2014-03-22,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-24,Risk of Violence,1,Low,2014-03-24,2014-03-22,2014-03-23,0,0,739,0,0,0\r\n10084,josh gamali,josh,gamali,2013-01-11,Male,1969-08-10,46,Greater than 45,Caucasian,0,5,0,0,5,,,,09000911CF10A,,2012-11-07,65,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-11,Risk of Violence,6,Medium,2013-01-11,,,5,0,1176,0,0,0\r\n10088,marissa moore,marissa,moore,2013-02-21,Female,1987-06-15,28,25 - 45,African-American,0,2,0,0,1,-1,2013-02-20 07:08:26,2013-02-21 02:17:32,13002603CF10A,2013-02-20,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-21,Risk of Violence,2,Low,2013-02-21,2013-02-20,2013-02-21,1,0,1135,0,0,0\r\n10091,christopher parris,christopher,parris,2013-10-12,Male,1987-12-25,28,25 - 45,African-American,1,5,0,0,5,-1,2013-10-11 10:21:51,2014-03-31 09:15:58,13014398CF10A,,2013-10-11,1,F,arrest case no charge,1,13014398CF10A,(F3),,2013-11-08,Stalking (Aggravated),,,,1,13014398CF10A,(F3),2013-11-08,Stalking (Aggravated),Risk of Recidivism,5,Medium,2013-10-12,Risk of Violence,5,Medium,2013-10-12,2013-10-11,2014-03-31,5,0,27,1,1,1\r\n10094,nicholas rodriguez-bustios,nicholas,rodriguez-bustios,2013-12-28,Male,1995-09-12,20,Less than 25,Caucasian,0,3,0,0,0,0,2013-12-28 04:39:38,2013-12-28 01:09:58,13017909CF10A,2013-12-28,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-28,Risk of Violence,6,Medium,2013-12-28,2013-12-28,2013-12-28,0,0,825,0,0,0\r\n10095,frederick newbold,frederick,newbold,2014-02-22,Male,1988-05-12,27,25 - 45,African-American,0,3,0,0,2,-1,2014-02-21 11:56:38,2014-02-22 08:20:38,14002479CF10A,2014-02-21,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-22,Risk of Violence,3,Low,2014-02-22,2014-02-21,2014-02-22,2,0,769,0,0,0\r\n10096,tressing blake,tressing,blake,2014-03-13,Female,1991-07-28,24,Less than 25,Other,0,4,0,0,0,-1,2014-03-12 04:58:21,2014-03-13 09:56:12,14003527CF10A,2014-03-12,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-13,Risk of Violence,4,Low,2014-03-13,2014-03-12,2014-03-13,0,0,750,0,0,0\r\n10105,alexander semino,alexander,semino,2013-03-07,Male,1984-05-22,31,25 - 45,Caucasian,0,9,0,0,8,-31,2013-02-04 05:49:21,2013-03-04 10:55:34,13002537MM10A,2013-02-04,,31,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-07,Risk of Violence,2,Low,2013-03-07,2013-02-04,2013-03-04,8,0,1121,0,0,0\r\n10107,dushane detrie,dushane,detrie,2013-06-14,Female,1977-01-06,39,25 - 45,African-American,0,5,0,0,1,7,2013-06-21 12:08:12,2013-08-23 05:50:00,12009221CF10A,,2013-02-13,121,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-06-14,Risk of Violence,5,Medium,2013-06-14,2013-06-21,2013-08-23,1,0,7,0,0,0\r\n10111,alon cambridge,alon,cambridge,2013-03-06,Male,1989-07-16,26,25 - 45,African-American,0,2,0,0,0,-1,2013-03-05 06:19:03,2013-03-06 07:39:50,13003319CF10A,2013-03-05,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-06,Risk of Violence,3,Low,2013-03-06,2013-03-05,2013-03-06,0,0,1122,0,0,0\r\n10115,jonathan smith,jonathan,smith,2013-07-31,Male,1981-01-19,35,25 - 45,African-American,0,2,0,0,5,,,,09013475CF10A,2009-07-20,,1472,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-31,Risk of Violence,2,Low,2013-07-31,,,5,0,975,0,0,0\r\n10118,william aguront,william,aguront,2014-03-27,Male,1960-06-06,55,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-03-26 11:17:06,2014-03-27 01:36:50,14005235MM10A,2014-03-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-27,Risk of Violence,1,Low,2014-03-27,2014-03-26,2014-03-27,0,0,736,0,0,0\r\n10124,danielle camargo,danielle,camargo,2013-12-10,Female,1989-03-23,27,25 - 45,Caucasian,0,2,0,0,2,,,,12140584TC30A,2012-10-06,,430,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-10,Risk of Violence,4,Low,2013-12-10,,,2,0,843,0,0,0\r\n10125,francisco huerta,francisco,huerta,2014-07-20,Male,1966-04-02,50,Greater than 45,Hispanic,0,1,0,0,5,-1,2014-07-19 05:07:48,2014-07-23 03:00:15,14009885CF10A,2014-07-19,,1,F,Felony Driving While Lic Suspd,1,14016704MM10A,(M1),0,2014-11-23,Battery,2014-11-23,2014-11-24,,1,14016704MM10A,(M1),2014-11-23,Battery,Risk of Recidivism,1,Low,2014-07-20,Risk of Violence,1,Low,2014-07-20,2014-11-23,2014-11-24,5,3,126,1,1,1\r\n10127,frank moore,frank,moore,2013-05-11,Male,1959-05-09,56,Greater than 45,Caucasian,0,7,0,0,5,-1,2013-05-10 10:14:08,2013-05-11 06:45:31,13006713MO10A,,2013-05-10,1,M,arrest case no charge,1,15013112MM10A,(M1),,2015-12-20,Resist/Obstruct W/O Violence,,,,1,16000007CF10A,(F3),2015-12-31,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-05-11,Risk of Violence,3,Low,2013-05-11,2013-07-09,2013-07-10,5,0,59,0,0,0\r\n10130,ruth battiste,ruth,battiste,2013-10-26,Female,1968-01-28,48,Greater than 45,African-American,0,1,0,0,1,-1,2013-10-25 07:58:22,2013-10-26 01:19:41,87018952CF10A,1987-11-07,,9485,F,Possess Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-26,Risk of Violence,1,Low,2013-10-26,2013-10-25,2013-10-26,1,0,888,0,0,0\r\n10131,vashay johnson,vashay,johnson,2013-02-19,Male,1994-05-21,21,Less than 25,African-American,0,9,0,0,1,-1,2013-02-18 07:28:38,2013-02-20 03:44:17,13002481CF10A,2013-02-18,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-19,Risk of Violence,10,High,2013-02-19,2013-03-25,2013-04-15,1,1,34,0,0,0\r\n10133,kevin lutz,kevin,lutz,2013-08-15,Male,1980-06-23,35,25 - 45,Caucasian,0,2,0,0,0,-1,2013-08-14 04:31:57,2013-08-14 08:03:04,13015388MM10A,2013-08-14,,1,M,Expired DL More Than 6 Months,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-15,Risk of Violence,2,Low,2013-08-15,2013-08-14,2013-08-14,0,0,960,0,0,0\r\n10137,jean louidor,jean,louidor,2014-01-07,Male,1984-03-01,32,25 - 45,African-American,0,7,0,0,0,-1,2014-01-06 11:10:48,2014-01-31 03:41:01,14000240CF10A,2014-01-06,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-07,Risk of Violence,4,Low,2014-01-07,2014-01-06,2014-01-31,0,24,815,0,0,0\r\n10138,yoalbert francocoa,yoalbert,francocoa,2014-01-24,Male,1982-07-20,33,25 - 45,Hispanic,0,2,0,0,1,-90,2013-10-26 08:54:45,2013-12-12 04:56:35,13020323MM10A,2013-10-26,,90,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-24,Risk of Violence,4,Low,2014-01-24,2013-10-26,2013-12-12,1,0,798,0,0,0\r\n10142,pascal gilles,pascal,gilles,2014-03-03,Male,1990-12-29,25,25 - 45,African-American,0,8,0,0,2,-96,2013-11-27 09:34:00,2014-01-28 11:23:47,13007341CF10A,,2013-11-27,96,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-03,Risk of Violence,6,Medium,2014-03-03,2013-11-27,2014-01-28,2,0,760,0,0,0\r\n10143,joshua staley,joshua,staley,2013-05-14,Male,1989-09-14,26,25 - 45,African-American,0,8,0,0,13,31,2013-06-14 04:52:53,2013-06-25 08:13:32,13000765MM10A,2013-01-12,,122,M,Unlawful Use Of Police Badges,1,16002870MM10A,(M1),0,2016-03-28,,2016-03-28,2016-03-29,,0,,,,,Risk of Recidivism,8,High,2013-05-14,Risk of Violence,5,Medium,2013-05-14,2013-06-14,2013-06-25,13,0,31,0,0,0\r\n10145,yoleida santiago,yoleida,santiago,2014-02-08,Female,1971-08-30,44,25 - 45,Hispanic,0,1,0,0,0,-1,2014-02-07 01:15:55,2014-02-08 09:36:04,14002174MM10A,2014-02-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-08,Risk of Violence,1,Low,2014-02-08,2014-02-07,2014-02-08,0,0,783,0,0,0\r\n10151,heather ortegachin,heather,ortegachin,2013-06-24,Female,1968-11-03,47,Greater than 45,Hispanic,0,1,0,0,1,-61,2013-04-24 08:09:28,2013-04-26 10:39:26,13005878CF10A,2013-04-24,,61,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-24,Risk of Violence,1,Low,2013-06-24,2013-04-24,2013-04-26,1,0,1012,0,0,0\r\n10159,christopher petinaud,christopher,petinaud,2013-11-04,Male,1966-09-19,49,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-03 02:19:59,2013-11-04 01:27:56,13015387CF10A,2013-11-03,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-04,Risk of Violence,1,Low,2013-11-04,2013-11-03,2013-11-04,0,0,879,0,0,0\r\n10161,brandi clay,brandi,clay,2013-11-17,Female,1975-08-21,40,25 - 45,Caucasian,0,2,0,0,0,0,2013-11-17 04:36:43,2013-11-17 07:27:46,13015985CF10A,2013-11-17,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-17,Risk of Violence,2,Low,2013-11-17,2013-11-17,2013-11-17,0,0,866,0,0,0\r\n10163,damion clark,damion,clark,2014-01-22,Male,1993-10-22,22,Less than 25,African-American,0,6,0,0,4,-12,2014-01-10 05:28:07,2014-01-11 01:47:04,14001431TC10A,2014-01-10,,12,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-22,Risk of Violence,5,Medium,2014-01-22,2014-01-10,2014-01-11,4,0,800,0,0,0\r\n10166,christine aghazadian,christine,aghazadian,2014-02-26,Female,1964-10-03,51,Greater than 45,Caucasian,0,1,0,0,1,-98,2013-11-20 08:48:32,2013-11-22 06:17:17,13016130CF10A,2013-11-20,,98,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-26,Risk of Violence,1,Low,2014-02-26,2013-11-20,2013-11-22,1,0,765,0,0,0\r\n10168,john pereira,john,pereira,2013-10-31,Male,1966-08-07,49,Greater than 45,Caucasian,0,1,0,0,1,-26,2013-10-05 11:23:30,2013-10-06 08:39:07,13018953MM10A,2013-10-05,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-31,Risk of Violence,1,Low,2013-10-31,2013-10-05,2013-10-06,1,0,883,0,0,0\r\n10173,chancy mallory,chancy,mallory,2013-08-14,Male,1985-07-26,30,25 - 45,African-American,0,8,0,1,8,-42,2013-07-03 08:03:26,2013-08-05 02:44:49,13012733MM10A,2013-07-03,,42,M,Battery,1,13015213CF10A,(F3),0,2013-10-31,Aggravated Assault w/Firearm,2013-10-31,2013-12-05,,1,13015213CF10A,(F3),2013-10-31,Aggravated Assault w/Firearm,Risk of Recidivism,8,High,2013-08-14,Risk of Violence,4,Low,2013-08-14,2013-10-31,2013-12-05,8,0,78,1,1,1\r\n10176,frank wilson,frank,wilson,2014-07-03,Male,1974-07-01,41,25 - 45,African-American,0,6,0,3,12,0,2014-07-03 03:36:03,2014-07-03 08:55:01,14009173CF10A,2014-07-03,,0,F,Possession Of Alprazolam,1,14016731CF10A,(M2),0,2014-12-17,Operating W/O Valid License,2014-12-17,2014-12-18,,1,15015386CF10A,(F3),2015-11-25,Aggravated Assault W/Dead Weap,Risk of Recidivism,6,Medium,2014-07-03,Risk of Violence,3,Low,2014-07-03,2014-12-17,2014-12-18,12,0,167,1,1,1\r\n10178,teoman algur,teoman,algur,2014-01-14,Male,1969-07-15,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-13 06:55:02,2014-01-14 07:59:33,14000563CF10A,2014-01-13,,1,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-14,Risk of Violence,1,Low,2014-01-14,2014-01-13,2014-01-14,0,0,808,0,0,0\r\n10179,james felder,james,felder,2013-12-05,Male,1958-08-11,57,Greater than 45,African-American,0,1,0,0,2,-1,2013-12-04 01:33:31,2013-12-05 01:31:32,91018509MM10A,,2001-04-12,4620,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-05,Risk of Violence,1,Low,2013-12-05,2013-12-04,2013-12-05,2,0,848,0,0,0\r\n10180,cecelia baptiste-gilmore,cecelia,baptiste-gilmore,2013-12-06,Female,1972-04-10,44,25 - 45,Caucasian,0,3,0,0,1,-31,2013-11-05 08:36:22,2013-12-06 04:12:38,13020899MM10A,2013-11-05,,31,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-06,Risk of Violence,1,Low,2013-12-06,2013-11-05,2013-12-06,1,0,847,0,0,0\r\n10181,antonio walsh,antonio,walsh,2014-03-24,Male,1984-04-16,32,25 - 45,African-American,0,9,0,0,0,0,2014-03-24 01:13:18,2014-03-24 02:24:51,14004093CF10A,2014-03-23,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-24,Risk of Violence,6,Medium,2014-03-24,2014-03-31,2014-04-01,0,0,7,0,0,0\r\n10183,julius howard,julius,howard,2013-03-16,Male,1980-01-24,36,25 - 45,African-American,0,9,0,0,1,-1,2013-03-15 02:14:16,2013-03-16 06:13:47,13005160MM10A,2013-03-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-16,Risk of Violence,3,Low,2013-03-16,2013-03-15,2013-03-16,1,0,1112,0,0,0\r\n10184,steven pearson,steven,pearson,2014-01-26,Male,1985-08-11,30,25 - 45,African-American,0,8,0,0,1,-1,2014-01-25 08:21:42,2014-01-26 08:06:05,14001396MM10A,2014-01-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-01-26,Risk of Violence,6,Medium,2014-01-26,2014-01-25,2014-01-26,1,0,796,0,0,0\r\n10185,wayne stover,wayne,stover,2013-02-01,Male,1988-01-13,28,25 - 45,African-American,0,2,0,0,0,-1,2013-01-31 04:31:47,2013-02-05 09:12:13,13002274MO10A,2013-01-31,,1,M,Manage Busn W/O City Occup Lic,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-01,Risk of Violence,3,Low,2013-02-01,2013-01-31,2013-02-05,0,4,1155,0,0,0\r\n10189,cornelius nealy,cornelius,nealy,2014-03-13,Male,1986-07-11,29,25 - 45,African-American,1,10,0,0,8,-1,2014-03-12 04:15:38,2014-03-19 02:55:41,14003494CF10A,2014-03-12,,1,F,Possession of Cocaine,1,14008075CF10A,(F2),,2014-03-25,Aggrav Battery w/Deadly Weapon,,,,1,14008075CF10A,(F2),2014-03-25,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2014-03-13,Risk of Violence,9,High,2014-03-13,2014-03-12,2014-03-19,8,6,12,1,1,1\r\n10193,sherrod robinson,sherrod,robinson,2013-11-12,Male,1994-05-04,21,Less than 25,African-American,0,5,0,0,1,-1,2013-11-11 09:30:11,2013-11-27 05:46:00,13015676CF10A,2013-11-11,,1,M,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-12,Risk of Violence,6,Medium,2013-11-12,2013-11-11,2013-11-27,1,15,871,0,0,0\r\n10194,calodius washington,calodius,washington,2013-08-30,Male,1993-02-08,23,Less than 25,African-American,1,8,0,0,5,24,2013-09-23 03:15:15,2013-09-24 04:26:21,13012247CF10A,2013-08-29,,1,F,Possession Burglary Tools,1,14006813CF10A,(F1),27,2014-04-19,Aid/Abet Burglary Assault/Batt,2014-05-16,2014-10-18,,1,14006813CF10A,(F1),2014-04-19,Aid/Abet Burglary Assault/Batt,Risk of Recidivism,8,High,2013-08-30,Risk of Violence,6,Medium,2013-08-30,2013-09-23,2013-09-24,5,0,24,0,1,1\r\n10195,thery cineus,thery,cineus,2013-10-18,Male,1988-05-17,27,25 - 45,Other,0,1,0,0,0,-1,2013-10-17 09:39:04,2013-10-18 07:48:37,13019715MM10A,2013-10-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-18,Risk of Violence,2,Low,2013-10-18,2013-10-17,2013-10-18,0,0,896,0,0,0\r\n10196,frank rose,frank,rose,2013-08-07,Male,1990-07-16,25,25 - 45,Caucasian,0,9,0,0,4,-30,2013-07-08 05:10:41,2013-07-09 12:58:59,13009539CF10A,2013-07-08,,30,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-07,Risk of Violence,7,Medium,2013-08-07,2013-07-08,2013-07-09,4,0,968,0,0,0\r\n10198,jermaine jean-francois,jermaine,jean-francois,2013-10-14,Male,1980-10-15,35,25 - 45,Other,0,5,0,0,2,-1,2013-10-13 04:47:31,2013-10-14 01:58:27,13014340CF10A,2013-10-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-14,Risk of Violence,3,Low,2013-10-14,2013-10-13,2013-10-14,2,0,900,0,0,0\r\n10201,juan rojassoto,juan,rojassoto,2013-03-23,Male,1980-12-11,35,25 - 45,Hispanic,0,2,0,0,0,-1,2013-03-22 07:50:40,2013-06-17 10:48:31,13004176CF10A,2013-03-22,,1,F,Tamper With Witness/Victim/CI,1,14011500MM10A,(M1),0,2014-07-28,Battery,2014-07-28,2014-07-30,,1,14011500MM10A,(M1),2014-07-28,Battery,Risk of Recidivism,2,Low,2013-03-23,Risk of Violence,2,Low,2013-03-23,2014-07-28,2014-07-30,0,86,492,1,1,1\r\n10202,jalicia brooks,jalicia,brooks,2014-07-29,Female,1990-06-01,25,25 - 45,African-American,0,8,0,0,1,-1,2014-07-28 01:24:31,2014-07-29 02:03:29,14011486MM10A,2014-07-28,,1,M,Battery,1,15001078MM10A,(M1),0,2015-01-27,Battery,2015-01-27,2015-02-03,,1,15001078MM10A,(M1),2015-01-27,Battery,Risk of Recidivism,8,High,2014-07-29,Risk of Violence,3,Low,2014-07-29,2015-01-27,2015-02-03,1,0,182,1,1,1\r\n10207,marvin darlington,marvin,darlington,2013-11-26,Male,1980-09-25,35,25 - 45,African-American,0,6,0,0,9,-1,2013-11-25 04:37:30,2013-11-26 08:46:49,13016387CF10A,2013-11-25,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-26,Risk of Violence,5,Medium,2013-11-26,2013-11-25,2013-11-26,9,0,857,0,0,0\r\n10208,josue petithomme,josue,petithomme,2013-02-09,Male,1982-10-02,33,25 - 45,Caucasian,0,3,0,0,4,,,,12006176MM10A,2012-03-25,,321,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-09,Risk of Violence,3,Low,2013-02-09,,,4,0,1147,0,0,0\r\n10209,chris mcinerney,chris,mcinerney,2013-07-19,Male,1977-09-08,38,25 - 45,Caucasian,0,1,0,0,8,,,,09018661CF10A,,2013-06-28,21,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-19,Risk of Violence,1,Low,2013-07-19,,,8,0,987,0,0,0\r\n10210,barry wells,barry,wells,2013-08-17,Male,1984-01-10,32,25 - 45,African-American,0,9,0,0,0,-1,2013-08-16 11:16:03,2013-08-17 09:02:19,13011522CF10A,2013-08-16,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-17,Risk of Violence,7,Medium,2013-08-17,2013-08-16,2013-08-17,0,0,958,0,0,0\r\n10211,tatiana kennon,tatiana,kennon,2013-09-25,Female,1993-03-28,23,Less than 25,African-American,0,4,0,0,0,-1,2013-09-24 09:39:00,2013-09-25 04:30:03,13018226MM10A,2013-09-24,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-25,Risk of Violence,5,Medium,2013-09-25,2013-09-24,2013-09-25,0,0,919,0,0,0\r\n10212,eddie durizil,eddie,durizil,2013-02-20,Male,1949-03-03,67,Greater than 45,African-American,0,2,0,0,3,,,,10021864CF10A,2010-12-14,,799,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,,,3,0,1136,0,0,0\r\n10214,jamar wright,jamar,wright,2013-02-11,Male,1992-05-07,23,Less than 25,African-American,1,10,1,2,4,-1,2013-02-10 05:11:00,2013-03-13 05:49:48,13002040CF10A,2013-02-10,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-11,Risk of Violence,10,High,2013-02-11,2015-02-28,2015-10-18,4,30,747,0,0,0\r\n10216,kristina hughes,kristina,hughes,2013-02-07,Female,1989-07-26,26,25 - 45,African-American,0,8,0,0,0,-1,2013-02-06 04:54:37,2013-02-07 09:44:01,13005770TC10A,2013-02-06,,1,M,Opert With Susp DL 2nd Offens,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-07,Risk of Violence,4,Low,2013-02-07,2013-02-06,2013-02-07,0,0,1149,0,0,0\r\n10220,earnest robinson,earnest,robinson,2013-01-11,Male,1991-09-21,24,Less than 25,African-American,0,3,0,0,1,-1,2013-01-10 08:39:13,2013-01-11 01:20:52,13000459CF10A,2013-01-10,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-11,Risk of Violence,4,Low,2013-01-11,2013-01-10,2013-01-11,1,0,1176,0,0,0\r\n10223,torrey thomas,torrey,thomas,2013-03-08,Male,1978-08-04,37,25 - 45,African-American,0,7,0,0,0,-1,2013-03-07 12:47:41,2013-03-08 08:42:21,13010216TC10A,2013-03-07,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-08,Risk of Violence,2,Low,2013-03-08,2013-03-07,2013-03-08,0,0,1120,0,0,0\r\n10224,anthony serphin,anthony,serphin,2013-03-26,Male,1987-04-06,29,25 - 45,African-American,0,5,0,0,0,-1,2013-03-25 11:37:18,2013-03-26 12:39:33,13004330CF10A,2013-03-25,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-26,Risk of Violence,3,Low,2013-03-26,2013-03-25,2013-03-26,0,0,1102,0,0,0\r\n10225,dwayne brown,dwayne,brown,2013-08-01,Male,1982-04-16,34,25 - 45,Other,0,2,0,0,0,-2,2013-07-30 11:30:14,2013-08-01 11:30:58,13010664CF10A,2013-07-30,,2,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2013-07-30,2013-08-01,0,0,974,0,0,0\r\n10228,anthony angotti,anthony,angotti,2014-03-30,Male,1966-06-10,49,Greater than 45,Caucasian,0,1,0,0,3,-1,2014-03-29 03:30:24,2014-03-30 01:04:04,14004425CF10A,2014-03-29,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-30,Risk of Violence,1,Low,2014-03-30,2014-03-29,2014-03-30,3,0,733,0,0,0\r\n10229,quaice bowen,quaice,bowen,2013-02-26,Male,1984-10-31,31,25 - 45,African-American,0,2,0,0,2,-1,2013-02-25 08:42:56,2013-02-26 06:47:03,13002563CF10A,,2013-02-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-26,Risk of Violence,2,Low,2013-02-26,2013-02-25,2013-02-26,2,0,1130,0,0,0\r\n10230,robert madera,robert,madera,2014-03-12,Male,1956-09-28,59,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-11 11:17:30,2014-03-12 01:43:28,14004245MM10A,2014-03-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-12,Risk of Violence,1,Low,2014-03-12,2014-03-11,2014-03-12,0,0,751,0,0,0\r\n10233,alquan isaac,alquan,isaac,2013-03-06,Male,1992-07-02,23,Less than 25,African-American,0,5,0,1,1,-1,2013-03-05 08:58:59,2013-03-06 07:35:04,13003285CF10A,2013-03-05,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-06,Risk of Violence,5,Medium,2013-03-06,2013-03-05,2013-03-06,1,0,1122,0,0,0\r\n10235,rafael frazier,rafael,frazier,2013-11-19,Male,1993-08-01,22,Less than 25,African-American,0,9,0,0,1,-1,2013-11-18 05:01:48,2013-11-23 01:08:06,13016016CF10A,2013-11-18,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-19,Risk of Violence,7,Medium,2013-11-19,2013-11-18,2013-11-23,1,4,864,0,0,0\r\n10239,rosny abraham,rosny,abraham,2013-02-11,Male,1979-06-09,36,25 - 45,African-American,0,1,0,0,0,-1,2013-02-10 11:35:53,2013-02-11 07:32:57,13002053CF10A,2013-02-10,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-10,2013-02-11,0,0,1145,0,0,0\r\n10242,frank marrero,frank,marrero,2014-01-10,Male,1984-06-07,31,25 - 45,Caucasian,0,7,0,0,3,0,2014-01-10 04:47:43,2014-01-10 08:01:12,14001432MU10A,2014-01-10,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-10,Risk of Violence,9,High,2014-01-10,2014-01-10,2014-01-10,3,0,812,0,0,0\r\n10243,isabel veliz,isabel,veliz,2013-06-03,Female,1987-02-28,29,25 - 45,Hispanic,0,3,0,0,0,-3,2013-05-31 11:18:22,2013-06-01 09:00:05,13010467MM10A,2013-05-31,,3,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-03,Risk of Violence,2,Low,2013-06-03,2013-05-31,2013-06-01,0,0,1033,0,0,0\r\n10250,chavon grant,chavon,grant,2013-03-12,Male,1990-10-23,25,25 - 45,African-American,0,10,0,0,7,258,2013-11-25 12:49:37,2013-12-10 10:30:00,12015976CF10A,2012-10-29,,134,F,Grand Theft in the 3rd Degree,1,15013032CF10A,(F3),,2015-09-22,Grand Theft (Motor Vehicle),,,,0,,,,,Risk of Recidivism,10,High,2013-03-12,Risk of Violence,10,High,2013-03-12,2013-11-25,2013-12-10,7,0,258,0,0,0\r\n10251,chance drake,chance,drake,2013-12-12,Male,1989-11-29,26,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-11 03:26:14,2013-12-13 02:54:48,13017122CF10A,2013-12-11,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-12,Risk of Violence,3,Low,2013-12-12,2013-12-11,2013-12-13,0,1,841,0,0,0\r\n10252,quintavious rogers,quintavious,rogers,2013-04-20,Male,1991-05-23,24,Less than 25,African-American,0,4,0,0,0,-1,2013-04-19 06:59:47,2013-04-20 01:45:28,13007609MM10A,2013-04-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,5,Medium,2013-04-20,2013-04-19,2013-04-20,0,0,1077,0,0,0\r\n10253,daniel staime,daniel,staime,2014-02-24,Male,1973-01-26,43,25 - 45,Other,0,1,0,0,1,-3,2014-02-21 10:15:16,2014-02-22 08:01:25,14002496CF10A,2014-02-21,,3,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-21,2014-02-22,1,0,767,0,0,0\r\n10254,jackie denmark,jackie,denmark,2014-01-28,Male,1988-07-01,27,25 - 45,African-American,1,9,2,0,11,-1,2014-01-27 06:29:28,2014-01-30 10:05:05,14001202CF10A,2014-01-27,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-28,Risk of Violence,10,High,2014-01-28,2014-01-27,2014-01-30,11,2,794,0,0,0\r\n10256,adrian arabitg,adrian,arabitg,2013-09-12,Male,1987-07-02,28,25 - 45,Caucasian,0,4,0,0,4,-1,2013-09-11 10:31:41,2014-03-20 11:22:47,13012884CF10A,,2013-09-11,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-12,Risk of Violence,3,Low,2013-09-12,2013-09-11,2014-03-20,4,189,932,0,0,0\r\n10257,wendy saintjuste,wendy,saintjuste,2013-11-19,Female,1982-11-10,33,25 - 45,Other,0,2,0,0,0,-1,2013-11-18 04:55:48,2013-11-19 01:28:31,13016007CF10A,2013-11-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-19,Risk of Violence,2,Low,2013-11-19,2013-11-18,2013-11-19,0,0,864,0,0,0\r\n10258,james rivelli,james,rivelli,2014-08-12,Male,1961-07-02,54,Greater than 45,Caucasian,0,3,0,0,3,-1,2014-08-11 06:33:16,2014-08-20 05:15:20,14010958CF10A,2014-08-11,,1,F,Grand Theft in the 3rd Degree,1,15005530CF10A,(F2),0,2015-04-27,Robbery / No Weapon,2015-04-27,2015-05-28,,1,15005530CF10A,(F2),2015-04-27,Robbery / No Weapon,Risk of Recidivism,3,Low,2014-08-12,Risk of Violence,2,Low,2014-08-12,2015-04-27,2015-05-28,3,8,258,1,1,1\r\n10259,scott kaplan,scott,kaplan,2013-10-03,Male,1958-09-05,57,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-02 02:21:50,2013-10-03 08:05:30,13018775MM10A,2013-10-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-10-02,2013-10-03,0,0,911,0,0,0\r\n10261,gregory holmes,gregory,holmes,2013-05-29,Male,1985-07-04,30,25 - 45,African-American,0,2,0,0,2,-1,2013-05-28 07:18:38,2013-06-13 11:44:39,13007621CF10A,2013-05-28,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-29,Risk of Violence,2,Low,2013-05-29,2013-05-28,2013-06-13,2,15,1038,0,0,0\r\n10262,geranie barthelemy,geranie,barthelemy,2013-11-15,Male,1988-12-16,27,25 - 45,Other,0,1,0,0,0,-1,2013-11-14 05:26:11,2013-11-15 08:37:24,13021468MM10A,2013-11-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-15,Risk of Violence,2,Low,2013-11-15,2013-11-14,2013-11-15,0,0,868,0,0,0\r\n10267,ieasha forbes,ieasha,forbes,2013-04-19,Female,1985-02-21,31,25 - 45,African-American,0,8,0,0,4,0,2013-04-19 12:52:18,2013-04-20 07:47:51,13005632CF10A,2013-04-19,,0,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-19,Risk of Violence,5,Medium,2013-04-19,2013-04-19,2013-04-20,4,1,1078,0,0,0\r\n10269,nestor garciabonille,nestor,garciabonille,2013-02-25,Male,1987-03-01,29,25 - 45,Caucasian,0,3,0,0,0,-1,2013-02-24 05:30:21,2013-02-25 02:06:05,13002816CF10A,2013-02-24,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-25,Risk of Violence,3,Low,2013-02-25,2013-02-24,2013-02-25,0,0,1131,0,0,0\r\n10270,kathleen lopez,kathleen,lopez,2013-08-20,Female,1986-10-10,29,25 - 45,Hispanic,0,2,0,0,0,-2,2013-08-18 03:04:45,2013-08-19 06:39:02,13015652MM10A,2013-08-18,,2,M,Battery,1,14009892CF10A,(F2),0,2014-07-20,Aggrav Battery w/Deadly Weapon,2014-07-20,2014-07-21,,1,14009892CF10A,(F2),2014-07-20,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,2,Low,2013-08-20,Risk of Violence,2,Low,2013-08-20,2014-07-20,2014-07-21,0,0,334,1,1,1\r\n10271,yuniel arteaga,yuniel,arteaga,2013-05-21,Male,1983-01-26,33,25 - 45,Hispanic,0,3,0,0,2,-5,2013-05-16 02:28:47,2013-05-20 12:42:46,13032329TC10A,2013-05-07,,14,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-21,Risk of Violence,4,Low,2013-05-21,2013-06-26,2013-06-27,2,0,36,0,0,0\r\n10272,amber rivero,amber,rivero,2013-09-19,Male,1993-12-04,22,Less than 25,African-American,0,4,0,0,0,-1,2013-09-18 08:17:23,2013-09-19 09:03:46,13017794MM10A,2013-09-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-19,Risk of Violence,6,Medium,2013-09-19,2013-09-18,2013-09-19,0,0,925,0,0,0\r\n10273,winston elvie,winston,elvie,2013-04-03,Male,1988-01-11,28,25 - 45,African-American,0,3,0,0,2,-75,2013-01-18 06:03:59,2013-04-02 06:39:17,13001056CF10A,,2013-01-18,75,F,arrest case no charge,1,15061875TC30A,(M2),,2015-09-03,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-03,Risk of Violence,3,Low,2013-04-03,2013-01-18,2013-04-02,2,0,883,1,0,0\r\n10274,jermaine burrows,jermaine,burrows,2013-02-08,Male,1981-02-05,35,25 - 45,African-American,0,8,0,0,0,-1,2013-02-07 11:05:34,2013-02-09 04:44:20,13002784MM10A,2013-02-07,,1,M,Battery,1,13009113CF10A,(F2),,2013-05-09,Aggrav Battery w/Deadly Weapon,,,,1,13009113CF10A,(F2),2013-05-09,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,8,High,2013-02-08,Risk of Violence,7,Medium,2013-02-08,2013-02-07,2013-02-09,0,1,90,1,1,1\r\n10277,james jenkins,james,jenkins,2013-08-04,Male,1985-11-17,30,25 - 45,African-American,0,7,1,0,14,-1,2013-08-03 05:56:23,2013-08-09 05:28:24,13010873CF10A,2013-08-03,,1,F,Driving While License Revoked,1,15012989CF10A,(M1),0,2015-10-07,Trespass/Property/Other Structure,2015-10-07,2015-11-09,,0,,,,,Risk of Recidivism,7,Medium,2013-08-04,Risk of Violence,7,Medium,2013-08-04,2013-10-24,2013-12-15,14,5,81,0,0,0\r\n10279,mary merisier,mary,merisier,2013-09-23,Female,1971-10-09,44,25 - 45,African-American,0,2,0,0,1,-45,2013-08-09 12:13:11,2013-08-11 08:29:45,13011204CF10A,2013-08-09,,45,M,Aggrav Child Abuse-Agg Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-23,Risk of Violence,2,Low,2013-09-23,2013-08-09,2013-08-11,1,0,921,0,0,0\r\n10281,clara igelesias,clara,igelesias,2013-02-23,Female,1952-08-12,63,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-02-22 12:28:15,2013-02-23 08:11:17,13003763MM10A,2013-02-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-23,0,0,1133,0,0,0\r\n10288,daniot joachim,daniot,joachim,2014-02-17,Male,1981-10-13,34,25 - 45,Other,0,2,0,0,3,-1,2014-02-16 12:26:37,2014-02-17 08:46:28,14002691MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-17,Risk of Violence,2,Low,2014-02-17,2014-02-16,2014-02-17,3,0,774,0,0,0\r\n10289,eric lever,eric,lever,2014-11-23,Male,1979-09-18,36,25 - 45,Caucasian,0,8,0,0,0,-1,2014-11-22 01:25:52,2014-12-29 07:37:30,14015736CF10A,2014-11-22,,1,F,Possession of Cocaine,1,15003835MM10A,(M1),0,2015-04-02,Battery,2015-04-02,2015-04-15,,1,15003835MM10A,(M1),2015-04-02,Battery,Risk of Recidivism,8,High,2014-11-23,Risk of Violence,3,Low,2014-11-23,2015-04-02,2015-04-15,0,36,130,1,1,1\r\n10292,saloman theoc,saloman,theoc,2013-03-20,Male,1994-06-09,21,Less than 25,African-American,0,8,0,0,0,-1,2013-03-19 06:14:41,2013-03-20 08:19:04,13003995CF10A,2013-03-19,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-20,Risk of Violence,8,High,2013-03-20,2014-06-29,2014-07-17,0,0,466,0,0,0\r\n10293,robert holmes,robert,holmes,2013-12-04,Male,1992-09-26,23,Less than 25,Caucasian,0,3,0,0,1,-1,2013-12-03 05:09:32,2013-12-04 12:08:32,13016720CF10A,2013-12-03,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-04,Risk of Violence,4,Low,2013-12-04,2013-12-03,2013-12-04,1,0,849,0,0,0\r\n10295,rodney king,rodney,king,2013-10-25,Male,1960-10-13,55,Greater than 45,African-American,0,5,0,0,1,-43,2013-09-12 07:59:53,2013-10-25 10:48:52,13008253CF10A,,2013-09-12,43,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-25,Risk of Violence,5,Medium,2013-10-25,2013-09-12,2013-10-25,1,0,889,0,0,0\r\n10296,dennis davis,dennis,davis,2013-02-28,Male,1975-09-03,40,25 - 45,African-American,0,3,0,0,1,-1,2013-02-27 11:00:44,2013-05-14 07:21:12,12014798CF10A,,2013-02-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-28,Risk of Violence,1,Low,2013-02-28,2013-02-27,2013-05-14,1,75,1128,0,0,0\r\n10298,richard mckenzie,richard,mckenzie,2013-01-07,Male,1985-11-19,30,25 - 45,African-American,0,5,0,0,3,-1,2013-01-06 07:35:14,2013-01-08 05:21:10,13000306MM10A,2013-01-06,,1,M,Battery,1,14009816TC10A,(M2),0,2014-03-11,Susp Drivers Lic 1st Offense,2014-03-11,2014-03-11,,1,16001323CF10A,(F1),2016-01-13,Home Invasion Robbery,Risk of Recidivism,5,Medium,2013-01-07,Risk of Violence,5,Medium,2013-01-07,2014-03-11,2014-03-11,3,1,428,0,1,1\r\n10299,haratio cooke,haratio,cooke,2013-09-08,Male,1974-07-31,41,25 - 45,African-American,0,5,0,0,1,-1,2013-09-07 07:00:04,2013-09-09 03:23:49,13017065MM10A,2013-09-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-08,Risk of Violence,2,Low,2013-09-08,2013-09-07,2013-09-09,1,1,936,0,0,0\r\n10300,charles fichtner,charles,fichtner,2013-01-21,Male,1960-03-18,56,Greater than 45,Caucasian,0,1,0,0,0,0,2013-01-21 01:47:08,2013-01-21 11:01:20,13001358MM10A,2013-01-20,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-21,Risk of Violence,1,Low,2013-01-21,2013-01-21,2013-01-21,0,0,1166,0,0,0\r\n10302,robert parker,robert,parker,2013-10-23,Male,1955-01-20,61,Greater than 45,African-American,0,2,0,0,14,-1,2013-10-22 07:34:15,2013-10-23 07:47:51,13020020MO10A,2013-10-22,,1,M,Poss Of Controlled Substance,1,15015851CF10A,(F3),,2015-12-11,Possession of Cocaine,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-23,Risk of Violence,2,Low,2013-10-23,2013-10-22,2013-10-23,14,0,779,1,0,0\r\n10307,robert austin,robert,austin,2013-01-06,Male,1984-05-01,31,25 - 45,African-American,2,6,0,0,6,-1,2013-01-05 11:46:29,2013-01-31 09:56:53,13000224CF10A,2013-01-05,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-06,Risk of Violence,6,Medium,2013-01-06,2013-01-05,2013-01-31,6,25,1181,0,0,0\r\n10313,normando cooper,normando,cooper,2013-08-01,Male,1983-05-25,32,25 - 45,African-American,1,10,0,2,4,-1,2013-07-31 10:15:26,2013-08-04 09:42:54,12007620CF10A,2012-05-23,,435,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-01,Risk of Violence,9,High,2013-08-01,2013-07-31,2013-08-04,4,3,974,0,0,0\r\n10316,alvyn doman,alvyn,doman,2013-01-21,Male,1959-09-22,56,Greater than 45,Other,0,1,0,0,0,-1,2013-01-20 07:13:34,2013-01-21 08:18:53,13001378MM10A,2013-01-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-21,Risk of Violence,1,Low,2013-01-21,2013-01-20,2013-01-21,0,0,1166,0,0,0\r\n10317,william ogburn,william,ogburn,2014-01-23,Male,1953-08-15,62,Greater than 45,African-American,0,1,0,0,0,0,2014-01-23 03:30:01,2014-01-23 08:50:24,14002677MU10A,2014-01-23,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-23,Risk of Violence,1,Low,2014-01-23,2014-01-23,2014-01-23,0,0,799,0,0,0\r\n10327,michael nocie,michael,nocie,2014-03-11,Male,1993-03-12,23,Less than 25,Caucasian,0,5,0,0,0,-1,2014-03-10 08:14:12,2014-03-11 01:13:40,14004145MM10A,2014-03-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-11,Risk of Violence,6,Medium,2014-03-11,2014-03-10,2014-03-11,0,0,752,0,0,0\r\n10328,chernard duval,chernard,duval,2013-10-21,Male,1990-12-03,25,25 - 45,African-American,0,4,0,0,1,,,,11001609CF10A,2011-01-26,,999,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-21,Risk of Violence,5,Medium,2013-10-21,,,1,0,893,0,0,0\r\n10329,norval kelly,norval,kelly,2014-02-03,Male,1962-12-04,53,Greater than 45,Other,0,1,0,0,0,-1,2014-02-02 01:42:38,2014-02-03 01:14:46,14001820MM10A,2014-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-02,2014-02-03,0,0,788,0,0,0\r\n10330,noel sequeira,noel,sequeira,2013-04-27,Male,1949-03-29,67,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-27 03:49:46,2013-06-08 05:44:21,13008123MM10A,2013-04-27,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-27,2013-06-08,0,42,1070,0,0,0\r\n10332,ivan peralta,ivan,peralta,2013-05-14,Male,1977-09-22,38,25 - 45,Hispanic,0,1,0,0,0,-1,2013-05-13 02:11:53,2013-05-14 04:30:04,13009231MM10A,2013-05-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2013-05-13,2013-05-14,0,0,1053,0,0,0\r\n10333,frantz beneche,frantz,beneche,2013-08-01,Male,1975-07-30,40,25 - 45,Other,0,1,0,0,1,-1,2013-07-31 08:16:51,2013-08-01 12:58:43,13008850CF10A,,2013-07-31,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2015-01-27,2015-01-30,1,0,544,0,0,0\r\n10335,maxine peart,maxine,peart,2013-05-29,Female,1970-05-29,45,Greater than 45,Other,0,1,0,0,1,-1,2013-05-28 01:09:38,2013-05-30 01:19:38,12010462CF10A,,2013-05-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-05-28,2013-05-30,1,1,1038,0,0,0\r\n10336,bruce brundage,bruce,brundage,2013-12-07,Male,1986-06-07,29,25 - 45,African-American,1,8,0,0,3,-1,2013-12-06 03:58:46,2014-02-04 09:32:08,13022654MM10A,2013-12-06,,1,M,Battery,1,14002162MM10A,(M1),,2014-02-07,Battery,,,,1,14002162MM10A,(M1),2014-02-07,Battery,Risk of Recidivism,8,High,2013-12-07,Risk of Violence,8,High,2013-12-07,2013-12-06,2014-02-04,3,59,62,1,1,1\r\n10337,jackson echeniquepadilla,jackson,echeniquepadilla,2013-02-11,Male,1983-12-07,32,25 - 45,Hispanic,0,2,0,0,0,0,2013-02-11 04:34:29,2013-02-11 07:32:37,13003045MM10A,2013-02-11,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-11,Risk of Violence,3,Low,2013-02-11,2013-02-11,2013-02-11,0,0,1145,0,0,0\r\n10339,dvonte stewart,dvonte,stewart,2014-04-07,Male,1992-11-03,23,Less than 25,African-American,0,10,0,0,1,231,2014-11-24 01:31:11,2015-04-22 11:50:05,10024797MM10A,2010-11-16,,1238,M,Prowling/Loitering,1,15007098MM10A,(M1),0,2015-07-02,Battery,2015-07-02,2015-08-21,,1,15007098MM10A,(M1),2015-07-02,Battery,Risk of Recidivism,10,High,2014-04-07,Risk of Violence,10,High,2014-04-07,2014-11-24,2015-04-22,1,0,231,0,1,1\r\n10343,syrefia kinchen,syrefia,kinchen,2013-01-07,Female,1976-10-10,39,25 - 45,Other,0,1,0,0,0,-1,2013-01-06 08:13:47,2013-01-07 09:42:45,13000238CF10A,2013-01-06,,1,F,Criminal Mischief,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-07,Risk of Violence,1,Low,2013-01-07,2013-01-06,2013-01-07,0,0,1180,0,0,0\r\n10344,todd brown,todd,brown,2014-01-23,Male,1986-12-24,29,25 - 45,African-American,0,2,0,0,0,0,2014-01-23 04:25:31,2014-01-24 09:37:02,14000998CF10A,2014-01-23,,0,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-23,Risk of Violence,2,Low,2014-01-23,2014-01-23,2014-01-24,0,1,799,0,0,0\r\n10345,john mompremier,john,mompremier,2013-08-27,Male,1969-11-12,46,Greater than 45,African-American,0,1,0,0,4,-8,2013-08-19 03:15:35,2013-08-27 10:56:34,13011711CF10A,,2013-08-20,7,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,2013-08-19,2013-08-27,4,0,948,0,0,0\r\n10346,danny black,danny,black,2013-12-29,Male,1984-12-17,31,25 - 45,African-American,0,8,0,0,9,-1,2013-12-28 02:25:38,2014-01-24 03:19:10,13023915MM10A,2013-12-28,,1,M,Battery,1,14004242CF10A,(F3),0,2014-03-25,Possession of Cocaine,2014-03-25,2014-03-27,,1,15006614MM10A,(M1),2015-05-20,Battery,Risk of Recidivism,8,High,2013-12-29,Risk of Violence,8,High,2013-12-29,2014-03-25,2014-03-27,9,26,86,1,1,1\r\n10348,carlheinz caprice,carlheinz,caprice,2013-02-12,Male,1991-10-24,24,Less than 25,African-American,0,2,0,0,1,-13,2013-01-30 01:51:31,2013-01-30 07:18:13,13002190MM10A,2013-01-30,,13,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-12,Risk of Violence,4,Low,2013-02-12,2013-01-30,2013-01-30,1,0,1144,0,0,0\r\n10349,hamilton clarington,hamilton,clarington,2014-03-01,Male,1987-06-26,28,25 - 45,African-American,0,1,0,0,1,0,2014-03-01 02:22:04,2014-03-01 10:22:26,13017225CF10A,,2014-03-01,0,F,arrest case no charge,1,14011978CF10A,(F2),,2014-08-30,Burglary Dwelling Occupied,,,,1,14011856CF10A,(F1),2014-08-30,Robbery-Strong Arm W/mask,Risk of Recidivism,1,Low,2014-03-01,Risk of Violence,2,Low,2014-03-01,2015-12-29,2020-01-01,1,0,182,1,1,1\r\n10354,nikki williams,nikki,williams,2013-10-20,Female,1991-11-20,24,Less than 25,African-American,0,6,0,0,0,-1,2013-10-19 07:55:40,2013-10-20 08:37:38,13019805MM10A,2013-10-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-20,Risk of Violence,5,Medium,2013-10-20,2013-10-19,2013-10-20,0,0,894,0,0,0\r\n10355,renoir robinson,renoir,robinson,2013-05-18,Male,1986-09-18,29,25 - 45,Other,0,6,0,0,5,-1,2013-05-17 02:34:56,2014-01-30 06:26:52,13007048CF10A,2013-05-17,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-18,Risk of Violence,5,Medium,2013-05-18,2013-05-17,2014-01-30,5,257,1049,0,0,0\r\n10356,george bocanegra,george,bocanegra,2013-12-28,Male,1987-04-29,28,25 - 45,Hispanic,0,8,0,0,3,-1,2013-12-27 05:37:54,2014-06-10 10:33:46,13017868CF10A,,2013-12-27,1,F,arrest case no charge,1,15001566MM10A,(M2),0,2015-02-07,Petit Theft,2015-02-07,2015-06-08,,1,15010780CF10A,(F2),2015-08-21,Sexual Battery / Vict 12 Yrs +,Risk of Recidivism,8,High,2013-12-28,Risk of Violence,8,High,2013-12-28,2015-02-07,2015-06-08,3,164,406,1,1,1\r\n10357,jonathon mckenzie,jonathon,mckenzie,2014-03-20,Male,1979-10-24,36,25 - 45,Caucasian,0,2,0,0,1,-2,2014-03-18 06:08:02,2014-03-19 01:20:16,14003786CF10A,2014-03-18,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-20,Risk of Violence,1,Low,2014-03-20,2014-03-18,2014-03-19,1,0,743,0,0,0\r\n10359,christopher lewis,christopher,lewis,2013-04-27,Male,1991-01-24,25,25 - 45,African-American,0,6,0,0,2,0,2013-04-27 10:39:31,2013-04-30 07:29:55,13008137MM10A,2013-04-27,,0,M,Tresspass in Structure or Conveyance,1,15013125MM10A,(M2),,2015-12-21,Battery,,,,1,15013125MM10A,(M2),2015-12-21,Battery,Risk of Recidivism,6,Medium,2013-04-27,Risk of Violence,5,Medium,2013-04-27,2013-06-18,2013-08-05,2,3,52,0,0,0\r\n10360,ali juma,ali,juma,2013-12-28,Male,1986-05-26,29,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-28 05:20:25,2014-01-11 05:07:00,13017906CF10A,2013-12-27,,1,F,Felony Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-28,Risk of Violence,2,Low,2013-12-28,2013-12-28,2014-01-11,0,14,825,0,0,0\r\n10361,sarah seiler,sarah,seiler,2013-05-06,Female,1990-03-29,26,25 - 45,Caucasian,0,9,0,0,1,-1,2013-05-05 07:23:19,2013-05-08 08:21:21,13006424CF10A,2013-05-05,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-06,Risk of Violence,7,Medium,2013-05-06,2013-12-03,2013-12-04,1,2,211,0,0,0\r\n10367,kenneth littlejohn,kenneth,littlejohn,2013-04-04,Male,1983-07-31,32,25 - 45,African-American,0,6,0,0,4,-1,2013-04-03 01:08:33,2013-04-04 01:15:44,13004769CF10A,2013-04-03,,1,F,Driving While License Revoked,1,15017969TC20A,(M2),,2015-03-11,Operating W/O Valid License,,,,1,15010987MM10A,(M1),2015-09-12,Battery,Risk of Recidivism,6,Medium,2013-04-04,Risk of Violence,3,Low,2013-04-04,2013-04-03,2013-04-04,4,0,706,1,1,1\r\n10369,giovanna flores,giovanna,flores,2013-11-23,Male,1986-07-15,29,25 - 45,Hispanic,0,1,0,0,1,0,2013-11-23 02:20:27,2013-11-25 02:34:28,13016305CF10A,2013-11-22,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-23,Risk of Violence,2,Low,2013-11-23,2013-11-23,2013-11-25,1,2,860,0,0,0\r\n10370,taryn quinterri,taryn,quinterri,2013-12-05,Female,1989-12-02,26,25 - 45,Caucasian,0,3,0,0,0,-1,2013-12-04 12:52:58,2013-12-05 09:54:23,13016769CF10A,2013-12-04,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-05,Risk of Violence,3,Low,2013-12-05,2013-12-04,2013-12-05,0,0,848,0,0,0\r\n10371,edwin martinez,edwin,martinez,2013-06-10,Male,1970-10-21,45,Greater than 45,Hispanic,0,1,0,0,3,-83,2013-03-19 12:47:07,2013-03-20 02:58:11,13004055CF10A,2013-03-20,,82,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-10,Risk of Violence,1,Low,2013-06-10,2013-03-19,2013-03-20,3,0,1026,0,0,0\r\n10376,ivette lopez,ivette,lopez,2014-03-10,Female,1969-05-10,46,Greater than 45,Caucasian,0,1,0,0,0,0,2014-03-10 04:52:56,2014-03-10 08:40:21,14009443MU10A,2014-03-10,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-10,Risk of Violence,1,Low,2014-03-10,2014-03-10,2014-03-10,0,0,753,0,0,0\r\n10377,michael vento,michael,vento,2013-04-29,Male,1975-03-01,41,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-28 06:37:34,2013-04-29 06:56:58,13006108CF10A,2013-04-28,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-28,2013-04-29,0,0,1068,0,0,0\r\n10380,rosemary marchal,rosemary,marchal,2013-05-06,Female,1977-06-24,38,25 - 45,Other,0,1,0,0,0,-1,2013-05-05 03:26:04,2013-05-06 12:07:20,13008715MM10A,2013-05-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-05-05,2013-05-06,0,0,1061,0,0,0\r\n10381,alicia jackson,alicia,jackson,2013-10-09,Female,1991-09-02,24,Less than 25,African-American,0,6,0,0,1,26,2013-11-04 03:09:22,2013-11-05 01:19:17,13000990CF10A,2013-01-21,,261,F,Sale/Del Cannabis At/Near Scho,1,13015368CF10A,(M1),1,2013-11-03,Battery,2013-11-04,2013-11-05,,1,13015368CF10A,(M1),2013-11-03,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-10-09,Risk of Violence,5,Medium,2013-10-09,2015-04-07,2015-08-01,1,0,25,1,1,1\r\n10386,robert sandholzer,robert,sandholzer,2013-09-05,Male,1993-07-01,22,Less than 25,Caucasian,0,7,0,0,1,-1,2013-09-04 01:42:39,2013-09-28 04:10:51,13016932MM10A,2013-09-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-05,Risk of Violence,6,Medium,2013-09-05,2013-09-04,2013-09-28,1,23,939,0,0,0\r\n10389,jayson norman,jayson,norman,2013-05-22,Male,1989-09-23,26,25 - 45,Caucasian,0,6,0,0,7,-1,2013-05-21 05:19:13,2013-07-29 04:36:22,13009783MM10A,2013-05-21,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-22,Risk of Violence,5,Medium,2013-05-22,2013-09-10,2013-11-27,7,68,111,0,0,0\r\n10394,christopher jordan,christopher,jordan,2014-03-31,Male,1985-05-09,30,25 - 45,African-American,0,1,0,0,0,-1,2014-03-30 06:21:42,2014-03-31 01:49:16,14005465MM10A,2014-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-30,2014-03-31,0,0,732,0,0,0\r\n10399,mauro funez,mauro,funez,2013-08-28,Male,1981-10-21,34,25 - 45,Caucasian,0,5,0,0,1,-1,2013-08-27 12:17:50,2013-08-28 08:02:22,13012096CF10A,2013-08-27,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-28,Risk of Violence,4,Low,2013-08-28,2013-08-27,2013-08-28,1,0,947,0,0,0\r\n10400,christopher leal,christopher,leal,2014-01-02,Male,1992-11-15,23,Less than 25,Caucasian,0,7,0,7,3,-1,2014-01-01 07:02:36,2014-01-02 09:18:31,14000032MM10A,2014-01-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-02,Risk of Violence,9,High,2014-01-02,2014-01-01,2014-01-02,3,0,820,0,0,0\r\n10401,olga baum,olga,baum,2013-04-03,Female,1968-06-25,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-02 11:45:32,2013-04-03 07:34:16,13006358MM10A,2013-04-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-03,Risk of Violence,1,Low,2013-04-03,2013-04-02,2013-04-03,0,0,1094,0,0,0\r\n10402,philip jamison,philip,jamison,2013-05-18,Male,1961-01-19,55,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-05-17 01:50:39,2013-05-30 08:03:27,13007418MM10A,,2013-05-17,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-18,Risk of Violence,1,Low,2013-05-18,2013-05-17,2013-05-30,2,12,1049,0,0,0\r\n10403,michelle gregorovic,michelle,gregorovic,2014-10-14,Female,1985-05-16,30,25 - 45,Caucasian,0,5,0,0,5,-168,2014-04-29 09:52:20,2014-10-06 11:01:07,14005955CF10A,2014-04-29,,168,F,Sel Etc/Pos/w/Int Contrft Schd,1,15011706MM10A,(M1),1,2015-11-08,Battery,2015-11-09,2015-11-18,,1,15011706MM10A,(M1),2015-11-08,Battery,Risk of Recidivism,5,Medium,2014-10-14,Risk of Violence,2,Low,2014-10-14,2015-11-09,2015-11-18,5,0,390,1,1,1\r\n10404,jeremy gebar,jeremy,gebar,2013-09-15,Male,1985-11-02,30,25 - 45,Hispanic,0,3,0,0,0,-1,2013-09-14 02:02:37,2013-09-15 10:50:57,13017515MM10A,2013-09-14,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-15,Risk of Violence,2,Low,2013-09-15,2013-09-14,2013-09-15,0,0,929,0,0,0\r\n10406,fredrick lambert,fredrick,lambert,2013-01-12,Male,1973-04-17,43,25 - 45,African-American,0,7,0,0,2,0,2013-01-12 12:58:49,2013-01-12 07:44:29,13000560CF10A,2013-01-11,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-12,Risk of Violence,6,Medium,2013-01-12,2013-01-12,2013-01-12,2,0,1175,0,0,0\r\n10407,devin beasley,devin,beasley,2014-07-06,Male,1970-12-11,45,Greater than 45,African-American,0,8,0,0,38,-1,2014-07-05 06:23:46,2014-11-03 09:34:22,14010593CF10A,2014-07-05,,1,F,Felony Battery w/Prior Convict,1,15010630MM10A,(M1),1,2015-10-11,Resist/Obstruct W/O Violence,2015-10-12,2015-11-18,,1,16001690CF10A,(F3),2016-02-08,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2014-07-06,Risk of Violence,8,High,2014-07-06,2014-07-05,2014-11-03,38,120,462,1,1,1\r\n10408,julio matamoros,julio,matamoros,2014-01-03,Male,1985-06-23,30,25 - 45,Hispanic,0,1,0,0,0,-1,2014-01-02 01:34:35,2014-01-03 01:49:26,14000087MM10A,2014-01-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-03,Risk of Violence,1,Low,2014-01-03,2014-01-02,2014-01-03,0,0,819,0,0,0\r\n10410,christi sluder,christi,sluder,2013-11-21,Female,1955-03-16,61,Greater than 45,Caucasian,0,6,0,0,15,-10,2013-11-11 09:56:16,2013-11-12 02:06:02,13015691CF10A,2013-11-11,,10,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-21,Risk of Violence,2,Low,2013-11-21,2013-11-11,2013-11-12,15,0,862,0,0,0\r\n10411,james turnquest,james,turnquest,2013-09-16,Male,1952-09-25,63,Greater than 45,African-American,0,9,0,0,16,,,,11006650MM10A,2011-03-21,,910,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-16,Risk of Violence,5,Medium,2013-09-16,2007-10-18,2009-04-11,16,0,928,0,0,0\r\n10412,nikolay petrov,nikolay,petrov,2013-02-25,Male,1966-06-11,49,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-02-24 06:39:36,2013-02-25 01:34:30,13002839CF10A,2013-02-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,1,Low,2013-02-25,2013-02-24,2013-02-25,0,0,1131,0,0,0\r\n10413,gervaise hylton,gervaise,hylton,2014-03-30,Male,1966-04-26,49,Greater than 45,African-American,0,1,0,0,1,0,2014-03-30 12:16:19,2014-03-30 09:48:37,14005430MM10A,2014-03-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-30,Risk of Violence,1,Low,2014-03-30,2014-05-14,2014-05-15,1,0,45,0,0,0\r\n10415,jason bartley,jason,bartley,2013-03-01,Male,1973-07-02,42,25 - 45,African-American,0,1,0,0,1,0,2013-03-01 02:08:27,2013-03-01 09:58:28,13003068CF10A,2013-03-01,,0,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-03-01,2013-03-01,1,0,1127,0,0,0\r\n10416,marshall phillips,marshall,phillips,2013-02-19,Male,1991-09-24,24,Less than 25,African-American,0,7,0,0,1,-1,2013-02-18 01:55:35,2013-03-15 01:12:27,13003465MM10A,2013-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-19,Risk of Violence,5,Medium,2013-02-19,2014-11-08,2014-12-18,1,24,627,0,0,0\r\n10417,mario delrio,mario,delrio,2013-08-20,Male,1964-12-06,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-19 07:04:31,2013-08-20 07:15:48,13011607CF10A,2013-08-19,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-19,2013-08-20,0,0,955,0,0,0\r\n10419,joe martinez,joe,martinez,2014-07-28,Male,1984-02-13,32,25 - 45,Hispanic,0,5,0,0,6,-1,2014-07-27 06:39:32,2014-08-05 07:52:03,14011428MM10A,2014-07-27,,1,M,Battery,1,14017069MM10A,(M2),,2014-11-08,Drinking Alch Beverage In Open,,,,1,15001713CF10A,(F3),2015-02-05,Robbery Sudd Snatch No Weapon,Risk of Recidivism,5,Medium,2014-07-28,Risk of Violence,2,Low,2014-07-28,2014-07-27,2014-08-05,6,8,103,1,1,1\r\n10420,michael koons,michael,koons,2014-07-30,Male,1987-08-03,28,25 - 45,Caucasian,0,4,0,0,4,-151,2014-03-01 03:43:30,2014-04-30 10:35:00,14002903CF10A,,2014-03-01,151,F,arrest case no charge,1,15002512MM10A,(M1),0,2015-03-02,Battery,2015-03-02,2015-03-27,,1,15002512MM10A,(M1),2015-03-02,Battery,Risk of Recidivism,4,Low,2014-07-30,Risk of Violence,3,Low,2014-07-30,2015-03-02,2015-03-27,4,0,215,1,1,1\r\n10424,anthony wells,anthony,wells,2014-01-13,Male,1966-09-13,49,Greater than 45,African-American,0,1,0,0,2,-1,2014-01-12 07:53:09,2014-01-14 03:31:14,14000531CF10A,2014-01-12,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-01-12,2014-01-14,2,1,809,0,0,0\r\n10426,jose llaguna,jose,llaguna,2013-10-29,Male,1969-04-12,47,Greater than 45,Caucasian,0,1,0,0,1,-43,2013-09-16 06:36:09,2013-10-29 10:16:35,13013138CF10A,,2013-09-17,42,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-29,Risk of Violence,1,Low,2013-10-29,2013-09-16,2013-10-29,1,0,885,0,0,0\r\n10427,john tokay,john,tokay,2013-03-16,Male,1959-08-29,56,Greater than 45,Caucasian,0,2,0,0,1,0,2013-03-16 03:33:00,2013-04-20 05:57:09,13003840CF10A,2013-03-16,,0,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-16,Risk of Violence,3,Low,2013-03-16,2013-03-16,2013-04-20,1,35,1112,0,0,0\r\n10428,marvin bennett,marvin,bennett,2013-01-04,Male,1962-07-10,53,Greater than 45,Caucasian,0,4,0,0,8,-1,2013-01-03 03:26:52,2013-01-08 12:29:25,13000180MM10A,2013-01-03,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-04,Risk of Violence,3,Low,2013-01-04,2013-01-16,2013-03-13,8,4,12,0,0,0\r\n10429,irvans brutus,irvans,brutus,2013-09-23,Male,1988-09-25,27,25 - 45,Other,0,2,0,0,2,-1,2013-09-22 07:46:53,2013-09-24 04:26:01,13018075MM10A,2013-09-22,,1,M,Criminal Mischief Damage <$200,1,13022475MM10A,(M1),0,2013-12-03,Viol Pretrial Release Dom Viol,2013-12-03,2013-12-05,,1,13017886CF10A,(F2),2013-12-28,Shoot In Occupied Building,Risk of Recidivism,2,Low,2013-09-23,Risk of Violence,3,Low,2013-09-23,2013-12-03,2013-12-05,2,1,71,1,1,1\r\n10431,adam rodgers,adam,rodgers,2013-04-14,Male,1975-02-14,41,25 - 45,Caucasian,0,1,0,0,3,-1,2013-04-13 07:21:37,2013-04-14 02:55:27,13007172MM10A,2013-04-13,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-14,Risk of Violence,1,Low,2013-04-14,2013-04-13,2013-04-14,3,0,1083,0,0,0\r\n10432,sean martin,sean,martin,2014-01-14,Male,1970-10-24,45,Greater than 45,African-American,0,4,0,0,6,0,2014-01-14 02:25:13,2014-01-15 11:05:21,14000613CF10A,2014-01-13,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-14,Risk of Violence,1,Low,2014-01-14,2014-01-14,2014-01-15,6,1,808,0,0,0\r\n10434,john lasko,john,lasko,2013-05-11,Male,1968-05-16,47,Greater than 45,Caucasian,0,2,0,0,2,,,,12000560MM20A,2012-01-03,,494,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-11,Risk of Violence,1,Low,2013-05-11,,,2,0,1056,0,0,0\r\n10436,briani jackson,briani,jackson,2013-01-31,Female,1994-09-02,21,Less than 25,African-American,0,10,0,0,0,0,2013-01-31 01:46:36,2013-04-19 01:09:04,13001570CF10A,2013-01-30,,1,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-31,Risk of Violence,9,High,2013-01-31,2013-01-31,2013-04-19,0,78,1156,0,0,0\r\n10437,daniel price,daniel,price,2013-12-07,Male,1988-07-20,27,25 - 45,Caucasian,0,4,0,1,2,0,2013-12-07 03:16:27,2013-12-08 08:18:55,13022663MM10A,2013-12-07,,0,M,Battery,1,14015348CF10A,(F2),0,2014-11-14,,2014-11-14,2014-11-16,,1,14007519MO10A,(MO3),2014-04-22,DOC/Engage In Fighting,Risk of Recidivism,4,Low,2013-12-07,Risk of Violence,3,Low,2013-12-07,2013-12-31,2014-01-01,2,1,24,0,1,1\r\n10439,daniel martins,daniel,martins,2014-02-02,Male,1994-05-03,21,Less than 25,African-American,0,3,0,0,0,-2,2014-01-31 11:42:11,2014-02-14 01:25:03,14001456CF10A,2014-01-31,,2,F,Burglary Conveyance Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-02,Risk of Violence,5,Medium,2014-02-02,2014-01-31,2014-02-14,0,12,789,0,0,0\r\n10440,william jarjour,william,jarjour,2013-03-28,Male,1984-08-11,31,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-27 11:38:46,2013-06-17 05:47:59,13004419CF10A,2013-03-27,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-27,2013-06-17,0,81,1100,0,0,0\r\n10443,ana mejarodriguez,ana,mejarodriguez,2013-02-13,Female,1970-06-09,45,Greater than 45,Hispanic,0,1,0,0,0,0,2013-02-13 03:47:44,2013-02-14 06:32:55,13003160MM10A,2013-02-12,,1,M,Criminal Mischief Damage <$200,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2013-02-13,2013-02-14,0,1,1143,0,0,0\r\n10444,isaac wright,isaac,wright,2013-03-27,Male,1985-07-13,30,25 - 45,African-American,2,6,0,0,8,-1,2013-03-26 11:22:35,2013-03-27 07:44:38,13002630CF10A,,2013-03-26,1,F,arrest case no charge,1,15010198MM10A,(M1),,2015-08-25,Battery,,,,1,15010198MM10A,(M1),2015-08-25,Battery,Risk of Recidivism,6,Medium,2013-03-27,Risk of Violence,4,Low,2013-03-27,2013-03-26,2013-03-27,8,0,881,1,0,0\r\n10446,jerry morival,jerry,morival,2013-04-27,Male,1993-02-08,23,Less than 25,African-American,0,4,0,0,0,-1,2013-04-26 09:39:57,2013-04-27 01:16:31,13006036CF10A,2013-04-26,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-27,Risk of Violence,5,Medium,2013-04-27,2013-09-04,2013-11-20,0,0,130,0,0,0\r\n10447,luis melendez,luis,melendez,2013-01-30,Male,1963-04-20,52,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-29 07:52:06,2013-01-30 01:36:21,13001438CF10A,2013-01-29,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-30,Risk of Violence,1,Low,2013-01-30,2013-04-22,2013-04-28,1,0,82,0,0,0\r\n10449,thajuana allen,thajuana,allen,2013-12-05,Female,1964-05-25,51,Greater than 45,African-American,0,2,0,0,3,-1,2013-12-04 09:45:14,2013-12-05 08:30:14,13016839CF10A,2013-12-04,,1,M,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-05,Risk of Violence,2,Low,2013-12-05,2013-12-04,2013-12-05,3,0,848,0,0,0\r\n10452,kerri reid-cooks,kerri,reid-cooks,2013-09-11,Female,1971-07-06,44,25 - 45,African-American,0,1,0,0,0,0,2013-09-11 04:56:33,2013-09-11 08:34:19,13012863CF10A,2013-09-11,,0,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-11,Risk of Violence,1,Low,2013-09-11,2013-09-11,2013-09-11,0,0,933,0,0,0\r\n10455,cinthya sanchez,cinthya,sanchez,2013-04-08,Female,1990-08-07,25,25 - 45,Hispanic,0,4,0,0,0,0,2013-04-08 03:27:11,2013-04-08 08:53:40,13005064CF10A,2013-04-07,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-08,Risk of Violence,3,Low,2013-04-08,2013-04-08,2013-04-08,0,0,1089,0,0,0\r\n10461,craig evans,craig,evans,2013-11-02,Male,1978-05-30,37,25 - 45,Other,0,1,0,0,0,-1,2013-11-01 10:55:24,2013-11-02 01:52:41,13020650MM10A,2013-11-01,,1,M,Viol Injunct Domestic Violence,1,16001232MM10A,(M1),0,2016-02-07,Battery,2016-02-07,2016-02-09,,1,16001232MM10A,(M1),2016-02-07,Battery,Risk of Recidivism,1,Low,2013-11-02,Risk of Violence,1,Low,2013-11-02,2016-02-07,2016-02-09,0,0,827,1,0,0\r\n10462,kathy holmes,kathy,holmes,2013-09-10,Female,1981-11-03,34,25 - 45,Caucasian,0,3,0,0,0,-2,2013-09-08 01:02:26,2013-09-09 04:59:23,13012648CF10A,2013-09-07,,3,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-08,2013-09-09,0,0,934,0,0,0\r\n10463,ryan debe,ryan,debe,2013-03-07,Male,1993-01-28,23,Less than 25,African-American,0,7,2,1,3,-1,2013-03-06 08:25:02,2013-03-15 10:13:53,13004527MM10A,2013-03-06,,1,M,Fail Register Vehicle,1,14008042CF10A,(M2),0,2014-06-10,Unlawful Use Of License,2014-06-10,2014-07-03,,1,14008042CF10A,(F2),2014-06-10,Agg Fleeing/Eluding High Speed,Risk of Recidivism,7,Medium,2013-03-07,Risk of Violence,9,High,2013-03-07,2013-07-13,2013-08-20,3,8,128,0,1,1\r\n10464,sylvia sarner,sylvia,sarner,2013-11-08,Male,1945-01-23,71,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-11-07 05:56:13,2013-11-07 09:04:13,13021042MM10A,2013-11-07,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2015-03-25,2015-04-01,3,0,502,0,0,0\r\n10467,paul slade,paul,slade,2013-12-10,Male,1970-12-27,45,Greater than 45,Caucasian,0,1,0,0,2,0,2013-12-10 01:55:28,2013-12-10 07:43:53,13022837MM10A,2013-12-10,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-10,Risk of Violence,1,Low,2013-12-10,2013-12-10,2013-12-10,2,0,843,0,0,0\r\n10469,rabbir hossain,rabbir,hossain,2013-11-28,Male,1987-01-06,29,25 - 45,African-American,0,1,0,0,0,0,2013-11-28 06:52:48,2013-11-29 10:35:24,13022285MM10A,2013-11-28,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-28,Risk of Violence,2,Low,2013-11-28,2013-11-28,2013-11-29,0,1,855,0,0,0\r\n10476,charles land,charles,land,2013-08-01,Male,1990-04-12,26,25 - 45,Caucasian,0,5,0,0,1,-31,2013-07-01 03:24:16,2013-07-08 11:46:57,13001829CF10A,,2013-07-01,31,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-01,Risk of Violence,5,Medium,2013-08-01,2013-07-01,2013-07-08,1,0,974,0,0,0\r\n10479,ivan cardona,ivan,cardona,2013-09-19,Male,1979-07-08,36,25 - 45,Hispanic,0,2,0,0,5,-2,2013-09-17 08:35:34,2013-09-18 08:12:40,13013111CF10A,2013-09-17,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-19,Risk of Violence,1,Low,2013-09-19,2014-11-14,2014-11-17,5,0,421,0,0,0\r\n10482,noel lopez,noel,lopez,2013-03-10,Male,1973-11-10,42,25 - 45,Hispanic,0,1,0,0,1,0,2013-03-10 12:20:11,2013-05-01 07:11:16,13006914CF10A,2013-03-09,,1,F,Aggrav Battery w/Deadly Weapon,1,13006885CF10A,(F3),,2013-05-14,Aggravated Assault W/dead Weap,,,,1,13006885CF10A,(F3),2013-05-14,Aggravated Assault W/dead Weap,Risk of Recidivism,1,Low,2013-03-10,Risk of Violence,1,Low,2013-03-10,2013-03-10,2013-05-01,1,52,65,1,1,1\r\n10483,nackson jean,nackson,jean,2013-03-31,Male,1994-12-29,21,Less than 25,African-American,0,5,0,0,0,-1,2013-03-30 09:16:53,2013-04-02 09:21:59,13006133MM10A,2013-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-31,Risk of Violence,8,High,2013-03-31,2013-03-30,2013-04-02,0,2,1097,0,0,0\r\n10484,brian guillen,brian,guillen,2013-09-26,Male,1986-08-31,29,25 - 45,Caucasian,0,1,0,0,2,-1,2013-09-25 12:22:48,2013-09-26 12:43:17,13013514CF10A,2013-09-25,,1,M,Fleeing or Eluding a LEO,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-26,Risk of Violence,2,Low,2013-09-26,2013-09-25,2013-09-26,2,0,918,0,0,0\r\n10486,daniel wick,daniel,wick,2013-12-19,Male,1962-03-24,54,Greater than 45,Caucasian,0,1,0,0,0,-4,2013-12-15 05:06:44,2013-12-16 08:59:37,13023212MM10A,2013-12-15,,4,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-19,Risk of Violence,1,Low,2013-12-19,2013-12-15,2013-12-16,0,0,834,0,0,0\r\n10489,gail thibeault,gail,thibeault,2013-08-12,Female,1993-05-19,22,Less than 25,Caucasian,0,8,0,0,1,,,,12025506MM10A,2012-12-14,,241,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-12,Risk of Violence,9,High,2013-08-12,,,1,0,963,0,0,0\r\n10491,anthony ali,anthony,ali,2013-12-08,Male,1986-04-28,29,25 - 45,Caucasian,0,3,0,0,1,-1,2013-12-07 07:49:30,2013-12-08 01:53:16,13022674MM10A,2013-12-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-08,Risk of Violence,2,Low,2013-12-08,2013-12-07,2013-12-08,1,0,845,0,0,0\r\n10492,dionisqui paredes,dionisqui,paredes,2014-02-06,Female,1990-05-16,25,25 - 45,Hispanic,0,6,1,2,14,-1,2014-02-05 12:50:06,2014-02-06 09:34:44,14001660CF10A,2014-02-05,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-06,Risk of Violence,4,Low,2014-02-06,2014-02-05,2014-02-06,14,0,785,0,0,0\r\n10493,yves souffrant,yves,souffrant,2013-08-19,Male,1953-10-16,62,Greater than 45,Other,0,1,0,0,0,-1,2013-08-18 04:20:46,2013-08-19 07:30:44,13015662MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-19,0,0,956,0,0,0\r\n10498,maura mitchell,maura,mitchell,2013-10-07,Female,1951-01-02,65,Greater than 45,Caucasian,0,1,0,0,1,-11,2013-09-26 11:26:33,2013-09-28 02:10:00,13013603CF10A,2013-09-26,,11,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-09-26,2013-09-28,1,0,907,0,0,0\r\n10502,john taddeo,john,taddeo,2013-10-24,Male,1984-12-18,31,25 - 45,Caucasian,0,1,0,0,0,0,2013-10-24 05:17:15,2013-10-25 01:21:44,13014882CF10A,2013-10-24,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-24,Risk of Violence,1,Low,2013-10-24,2013-10-24,2013-10-25,0,1,890,0,0,0\r\n10505,adrian grimes,adrian,grimes,2013-05-14,Male,1994-12-03,21,Less than 25,African-American,0,9,0,0,0,-1,2013-05-13 01:34:59,2013-05-18 02:09:44,13006839CF10A,2013-05-13,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-14,Risk of Violence,10,High,2013-05-14,2013-06-07,2013-06-27,0,4,24,0,0,0\r\n10506,fernando mayer,fernando,mayer,2013-03-20,Male,1988-06-29,27,25 - 45,African-American,0,7,2,0,17,0,2013-03-20 06:06:03,2013-03-21 09:33:58,13004042CF10A,2013-03-20,,0,F,Driving While License Revoked,1,13016473CF10A,(F3),,2013-11-18,Retaliate Wit/Vict No Injury,,,,1,13016473CF10A,(F2),2013-11-26,Vehicular Homicide,Risk of Recidivism,7,Medium,2013-03-20,Risk of Violence,4,Low,2013-03-20,2013-03-20,2013-03-21,17,1,243,1,1,1\r\n10507,nelson guerrero,nelson,guerrero,2013-05-05,Male,1982-12-08,33,25 - 45,Caucasian,0,2,0,0,1,-1,2013-05-04 05:57:06,2013-05-24 09:08:46,13006406CF10A,2013-05-04,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-05,Risk of Violence,5,Medium,2013-05-05,2013-05-04,2013-05-24,1,19,1062,0,0,0\r\n10509,jameal adderley,jameal,adderley,2013-03-12,Male,1990-08-05,25,25 - 45,African-American,0,7,1,0,3,-1,2013-03-11 05:03:58,2013-03-12 10:19:28,13003598CF10A,2013-03-11,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-12,Risk of Violence,6,Medium,2013-03-12,2013-03-11,2013-03-12,3,0,1116,0,0,0\r\n10510,nelson bauza,nelson,bauza,2013-05-01,Male,1976-10-11,39,25 - 45,Caucasian,0,1,0,0,1,-1,2013-04-30 08:53:59,2013-05-01 06:45:37,13006185CF10A,2013-04-30,,1,F,Possession Of Anabolic Steroid,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-01,Risk of Violence,1,Low,2013-05-01,2013-04-30,2013-05-01,1,0,1066,0,0,0\r\n10511,theodis presmy,theodis,presmy,2013-05-16,Male,1986-06-14,29,25 - 45,African-American,0,9,0,0,8,0,2013-05-16 02:40:09,2013-05-17 08:22:55,13009478MM10A,2013-05-15,,1,M,Possess Cannabis/20 Grams Or Less,1,13013561CF10A,(F3),0,2013-09-26,Possession of Cocaine,2013-09-26,2013-09-27,,1,16001464MM10A,(M1),2016-02-15,Battery,Risk of Recidivism,9,High,2013-05-16,Risk of Violence,6,Medium,2013-05-16,2013-09-26,2013-09-27,8,1,133,1,1,1\r\n10513,jennifer crowe,jennifer,crowe,2013-07-02,Female,1974-03-03,42,25 - 45,Caucasian,0,1,0,0,0,-3,2013-06-29 10:35:16,2013-07-01 02:17:11,13009181CF10A,2013-06-29,,3,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-02,Risk of Violence,1,Low,2013-07-02,2013-06-29,2013-07-01,0,0,1004,0,0,0\r\n10514,justin reynoso,justin,reynoso,2014-03-18,Male,1995-03-14,21,Less than 25,Caucasian,0,9,0,0,0,-1,2014-03-17 12:36:30,2014-03-18 01:26:47,14003755CF10A,2014-03-17,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-18,Risk of Violence,8,High,2014-03-18,2014-03-17,2014-03-18,0,0,745,0,0,0\r\n10519,gartrell tolbert,gartrell,tolbert,2014-08-25,Male,1979-06-28,36,25 - 45,African-American,0,9,0,0,2,-1,2014-08-24 05:47:08,2014-10-09 09:10:14,14012720MM10A,2014-08-24,,1,M,Battery,1,14017397MM10A,(M1),0,2014-12-10,Battery,2014-12-10,2015-04-27,,1,14017397MM10A,(M1),2014-12-10,Battery,Risk of Recidivism,9,High,2014-08-25,Risk of Violence,8,High,2014-08-25,2014-12-10,2015-04-27,2,45,107,1,1,1\r\n10520,jennifer hyacinth,jennifer,hyacinth,2014-03-18,Female,1991-08-20,24,Less than 25,African-American,0,4,0,0,0,-1,2014-03-17 08:29:05,2014-03-18 07:50:54,14003764CF10A,2014-03-17,,1,F,Uttering a Forged Instrument,1,15002169MM10A,(M1),0,2015-02-22,Temporary Tag Violation,2015-02-22,2015-02-22,,1,15004034CF10A,(F3),2015-03-26,Aggravated Assault W/Dead Weap,Risk of Recidivism,4,Low,2014-03-18,Risk of Violence,3,Low,2014-03-18,2015-02-22,2015-02-22,0,0,341,0,1,1\r\n10522,judith guadagino,judith,guadagino,2014-01-27,Female,1949-02-12,67,Greater than 45,Caucasian,0,1,0,0,0,-3,2014-01-24 10:44:46,2014-01-25 04:52:46,14002829MU10A,2014-01-24,,3,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2014-01-24,2014-01-25,0,0,795,0,0,0\r\n10523,cleon grant,cleon,grant,2013-05-04,Male,1987-03-25,29,25 - 45,Other,0,2,0,0,4,-1,2013-05-03 05:09:54,2013-05-06 08:52:35,13006359CF10A,2013-05-03,,1,F,Throw Deadly Missile Into Veh,1,15001272CF10A,(M2),0,2015-01-27,Culpable Negligence,2015-01-27,2015-01-30,,1,15001272CF10A,(F2),2015-01-27,Agg Battery Grt/Bod/Harm,Risk of Recidivism,2,Low,2013-05-04,Risk of Violence,3,Low,2013-05-04,2015-01-27,2015-01-30,4,2,633,1,1,1\r\n10524,andrea jordan,andrea,jordan,2013-07-11,Female,1988-09-15,27,25 - 45,African-American,0,6,0,0,2,-40,2013-06-01 07:45:23,2013-06-10 10:44:15,13008532CF10A,2013-06-01,,40,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-11,Risk of Violence,4,Low,2013-07-11,2013-06-01,2013-06-10,2,0,995,0,0,0\r\n10525,jamar burton,jamar,burton,2013-05-17,Male,1976-12-15,39,25 - 45,African-American,0,4,0,0,3,-1,2013-05-16 07:50:50,2013-06-19 12:42:02,10001925CF10B,,2013-05-17,0,F,arrest case no charge,1,14013846MM10A,(M1),0,2014-09-17,Battery,2014-09-17,2014-10-29,,1,14013846MM10A,(M1),2014-09-17,Battery,Risk of Recidivism,4,Low,2013-05-17,Risk of Violence,3,Low,2013-05-17,2014-09-17,2014-10-29,3,33,488,1,1,1\r\n10526,michael holloway,michael,holloway,2013-03-15,Male,1974-01-08,42,25 - 45,Caucasian,0,6,0,0,5,84,2013-06-07 06:19:20,2013-06-08 05:43:44,12006199CF10A,,2013-03-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-15,Risk of Violence,2,Low,2013-03-15,2013-06-07,2013-06-08,5,0,84,0,0,0\r\n10528,flavio silva,flavio,silva,2013-06-04,Male,1974-08-02,41,25 - 45,Hispanic,0,1,0,0,1,-4,2013-05-31 11:16:29,2013-06-01 08:01:12,13010461MM10A,2013-05-31,,4,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-04,Risk of Violence,1,Low,2013-06-04,2013-05-31,2013-06-01,1,0,1032,0,0,0\r\n10530,cobie tai,cobie,tai,2013-08-03,Female,1990-05-12,25,25 - 45,African-American,0,3,0,0,1,-1,2013-08-02 02:03:01,2013-08-06 05:30:27,13010803CF10A,,2013-08-02,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-03,Risk of Violence,4,Low,2013-08-03,2013-08-02,2013-08-06,1,3,972,0,0,0\r\n10532,johnny ross,johnny,ross,2014-02-19,Male,1979-01-24,37,25 - 45,African-American,0,4,0,0,4,-1,2014-02-18 02:47:15,2014-02-19 07:33:00,14002813MM10A,2014-02-18,,1,M,Battery,1,14012850MM10A,(M1),0,2014-08-27,Battery,2014-08-27,2014-10-16,,1,14012850MM10A,(M1),2014-08-27,Battery,Risk of Recidivism,4,Low,2014-02-19,Risk of Violence,4,Low,2014-02-19,2014-08-27,2014-10-16,4,0,189,1,1,1\r\n10538,michael williams,michael,williams,2013-01-26,Male,1993-01-15,23,Less than 25,African-American,0,6,0,0,1,0,2013-01-26 03:59:40,2013-07-23 05:22:24,13001867MM10A,2013-01-26,,0,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-26,Risk of Violence,6,Medium,2013-01-26,2013-01-26,2013-07-23,1,178,1161,0,0,0\r\n10540,courtney knoche,courtney,knoche,2014-11-22,Female,1984-04-30,31,25 - 45,Caucasian,0,1,0,0,1,-1,2014-11-21 07:23:57,2014-11-22 12:08:42,14016653MM10A,2014-11-21,,1,M,Battery,1,15010813MM10A,(M1),1,2015-10-14,Battery,2015-10-15,2015-10-16,,1,15010813MM10A,(M1),2015-10-14,Battery,Risk of Recidivism,1,Low,2014-11-22,Risk of Violence,1,Low,2014-11-22,2015-10-15,2015-10-16,1,0,326,1,1,1\r\n10544,bruce gerson,bruce,gerson,2013-08-16,Male,1949-04-04,67,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-15 12:10:13,2013-08-16 09:07:07,13015495MM10A,2013-08-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-16,Risk of Violence,1,Low,2013-08-16,2013-08-15,2013-08-16,0,0,959,0,0,0\r\n10545,neil lynch,neil,lynch,2013-05-11,Male,1989-01-29,27,25 - 45,African-American,0,7,0,0,10,-1,2013-05-10 10:08:03,2013-05-11 09:53:27,13006741CF10A,2013-05-10,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-11,Risk of Violence,3,Low,2013-05-11,2013-05-10,2013-05-11,10,0,1056,0,0,0\r\n10546,nikole curiel,nikole,curiel,2013-09-08,Female,1989-12-13,26,25 - 45,Caucasian,0,6,0,0,1,-1,2013-09-07 04:24:40,2013-09-08 06:08:45,13017059MM10A,2013-09-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-08,Risk of Violence,5,Medium,2013-09-08,2013-09-07,2013-09-08,1,0,936,0,0,0\r\n10548,patrick doerfor,patrick,doerfor,2014-02-27,Male,1965-03-17,51,Greater than 45,Caucasian,0,1,0,0,1,,,,14000988CF10A,2014-01-23,,35,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-27,Risk of Violence,1,Low,2014-02-27,,,1,0,764,0,0,0\r\n10549,okeel prince-newland,okeel,prince-newland,2013-03-25,Male,1984-07-25,31,25 - 45,Other,0,3,0,0,0,-1,2013-03-24 12:02:43,2013-05-31 02:10:00,13004254CF10A,2013-03-23,,2,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-25,Risk of Violence,3,Low,2013-03-25,2013-03-24,2013-05-31,0,67,1103,0,0,0\r\n10550,daniel motta,daniel,motta,2013-03-31,Male,1987-12-30,28,25 - 45,Caucasian,0,4,0,0,0,-1,2013-03-30 09:03:05,2013-03-31 07:04:47,13006142MM10A,2013-03-30,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-31,Risk of Violence,5,Medium,2013-03-31,2013-03-30,2013-03-31,0,0,1097,0,0,0\r\n10552,monica churchill,monica,churchill,2013-01-18,Female,1964-10-05,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-17 04:06:24,2013-01-17 08:06:48,13001196MM10A,2013-01-17,,1,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2014-02-07,2014-02-07,0,0,385,0,0,0\r\n10556,britney edwards,britney,edwards,2014-03-13,Female,1988-05-13,27,25 - 45,African-American,0,3,1,0,1,-1,2014-03-12 06:56:34,2014-03-14 09:40:21,14003519CF10A,2014-03-12,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-13,Risk of Violence,2,Low,2014-03-13,2014-03-12,2014-03-14,1,1,750,0,0,0\r\n10557,carl toussaint,carl,toussaint,2013-01-18,Male,1983-09-07,32,25 - 45,African-American,0,4,0,0,5,-1,2013-01-17 09:42:38,2013-01-18 10:00:00,12012807MM10A,,2013-01-17,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-18,Risk of Violence,4,Low,2013-01-18,2013-03-15,2013-04-01,5,0,56,0,0,0\r\n10559,sandy harrell,sandy,harrell,2013-11-20,Male,1989-04-08,27,25 - 45,African-American,0,6,0,0,4,-1,2013-11-19 12:22:07,2013-11-21 04:24:00,13021769MM10A,2013-11-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-20,Risk of Violence,6,Medium,2013-11-20,2013-11-19,2013-11-21,4,1,863,0,0,0\r\n10560,david kelley,david,kelley,2014-05-08,Male,1974-08-21,41,25 - 45,Caucasian,0,1,0,0,1,-1,2014-05-07 08:18:13,2014-05-08 09:01:25,14006390CF10A,2014-05-07,,1,F,Aggrav Battery w/Deadly Weapon,1,15008291CF10A,(F3),1,2015-06-26,Tampering With Physical Evidence,2015-06-27,2015-06-28,,1,15008291CF10A,(F2),2015-06-26,Agg Fleeing/Eluding High Speed,Risk of Recidivism,1,Low,2014-05-08,Risk of Violence,1,Low,2014-05-08,2015-06-27,2015-06-28,1,0,414,1,1,1\r\n10561,rodney toussaint,rodney,toussaint,2013-10-21,Male,1991-09-25,24,Less than 25,African-American,0,10,3,0,12,-1,2013-10-20 06:12:56,2013-11-06 09:00:54,13019829MM10A,2013-10-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-10-21,Risk of Violence,9,High,2013-10-21,2013-10-20,2013-11-06,12,16,893,0,0,0\r\n10563,michael fleming,michael,fleming,2013-02-28,Male,1954-07-12,61,Greater than 45,African-American,0,3,0,0,11,-1,2013-02-27 05:28:41,2013-02-28 08:19:46,13002995CF10A,2013-02-27,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-28,Risk of Violence,3,Low,2013-02-28,2013-02-27,2013-02-28,11,0,1128,0,0,0\r\n10567,jessica scirghio,jessica,scirghio,2013-11-04,Female,1986-11-07,29,25 - 45,Caucasian,0,3,0,0,3,0,2013-11-04 02:30:36,2013-11-04 08:20:56,13013922CF10A,,2013-11-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-04,Risk of Violence,2,Low,2013-11-04,2014-04-28,2014-04-29,3,0,175,0,0,0\r\n10568,neil hidalgo,neil,hidalgo,2014-01-24,Male,1981-07-09,34,25 - 45,Caucasian,0,4,0,0,11,-1,2014-01-23 01:51:15,2014-01-24 11:07:09,14000977CF10A,2014-01-23,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-24,Risk of Violence,3,Low,2014-01-24,2014-01-23,2014-01-24,11,0,798,0,0,0\r\n10570,michael assarian,michael,assarian,2013-07-22,Male,1970-11-22,45,Greater than 45,Caucasian,0,3,0,0,0,-5,2013-07-17 08:06:47,2013-07-18 09:00:52,13010028CF10A,2013-07-17,,5,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-22,Risk of Violence,1,Low,2013-07-22,2013-07-17,2013-07-18,0,0,984,0,0,0\r\n10573,clayton mitchell,clayton,mitchell,2014-01-02,Male,1992-10-11,23,Less than 25,African-American,2,6,0,0,3,,,,12016646CF10A,2012-11-13,,415,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-02,Risk of Violence,9,High,2014-01-02,,,3,0,820,0,0,0\r\n10575,jason hedges,jason,hedges,2013-10-04,Male,1985-01-08,31,25 - 45,Caucasian,0,4,0,0,6,-1,2013-10-03 02:21:05,2013-10-06 04:02:00,13013809CF10A,,2013-10-03,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-04,Risk of Violence,3,Low,2013-10-04,2013-10-03,2013-10-06,6,2,910,0,0,0\r\n10580,kayla vantreese,kayla,vantreese,2013-08-12,Female,1994-01-27,22,Less than 25,Caucasian,0,8,0,1,1,-1,2013-08-11 11:56:08,2013-08-29 09:24:17,13015158MM10A,2013-08-11,,1,M,Viol Pretrial Release Dom Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-12,Risk of Violence,7,Medium,2013-08-12,2013-08-11,2013-08-29,1,17,963,0,0,0\r\n10585,latavyia tucker,latavyia,tucker,2013-10-02,Female,1990-11-23,25,25 - 45,African-American,0,5,0,0,1,-1,2013-10-01 08:54:04,2013-10-02 09:14:11,13013783CF10A,2013-10-01,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-02,Risk of Violence,6,Medium,2013-10-02,2013-10-01,2013-10-02,1,0,912,0,0,0\r\n10588,sergio santibanez-cruz,sergio,santibanez-cruz,2013-03-13,Male,1990-09-08,25,25 - 45,Hispanic,0,3,0,0,1,-43,2013-01-29 09:34:56,2013-02-01 12:17:31,13001439CF10A,2013-01-29,,43,F,Purchase Of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-13,Risk of Violence,3,Low,2013-03-13,2013-01-29,2013-02-01,1,0,1115,0,0,0\r\n10590,seth jackson,seth,jackson,2013-12-19,Male,1987-01-19,29,25 - 45,African-American,0,5,0,0,1,-1,2013-12-18 02:09:10,2013-12-21 04:37:06,12010013CF10A,,2013-12-18,1,F,arrest case no charge,1,14007386MM10A,(M1),0,2014-05-04,Battery,2014-05-04,2014-05-05,,1,14007386MM10A,(M1),2014-05-04,Battery,Risk of Recidivism,5,Medium,2013-12-19,Risk of Violence,4,Low,2013-12-19,2014-05-04,2014-05-05,1,2,136,1,1,1\r\n10594,yanielys garcia-fernandez,yanielys,garcia-fernandez,2013-03-25,Female,1983-08-01,32,25 - 45,Hispanic,0,2,0,0,1,-3,2013-03-22 08:37:29,2013-03-23 07:50:59,13001523CF10A,,2013-03-22,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-03-22,2013-03-23,1,0,1103,0,0,0\r\n10595,massiel espinosa,massiel,espinosa,2013-08-25,Male,1977-03-27,39,25 - 45,Caucasian,0,1,0,0,0,-1,2013-08-24 11:36:32,2013-08-25 08:34:53,13016206MM10A,2013-08-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-25,Risk of Violence,1,Low,2013-08-25,2013-08-24,2013-08-25,0,0,950,0,0,0\r\n10596,omar baptiste,omar,baptiste,2013-10-16,Male,1993-06-17,22,Less than 25,Other,0,3,0,1,3,-1,2013-10-15 02:41:31,2013-10-17 04:50:35,13014443CF10A,,2013-10-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-16,Risk of Violence,5,Medium,2013-10-16,2014-11-26,2014-12-11,3,1,406,0,0,0\r\n10604,fenamarie brooks,fenamarie,brooks,2014-01-17,Female,1993-12-01,22,Less than 25,Caucasian,0,6,0,0,2,-31,2013-12-17 12:53:16,2013-12-18 02:19:25,13017222CF10A,,2013-12-17,31,F,arrest case no charge,1,14012053MM10A,(M1),1,2014-08-08,Battery,2014-08-09,2014-08-10,,1,14012053MM10A,(M1),2014-08-08,Battery,Risk of Recidivism,6,Medium,2014-01-17,Risk of Violence,7,Medium,2014-01-17,2014-04-07,2014-04-08,2,0,80,0,1,1\r\n10606,jesse hartsell,jesse,hartsell,2014-04-01,Male,1990-06-05,25,25 - 45,Caucasian,0,9,0,0,0,-1,2014-03-31 11:29:30,2014-04-01 01:23:09,14005523MM10A,2014-03-31,,1,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-04-01,Risk of Violence,6,Medium,2014-04-01,2014-03-31,2014-04-01,0,0,731,0,0,0\r\n10619,royal jackson,royal,jackson,2014-06-07,Male,1994-02-05,22,Less than 25,African-American,0,10,0,0,0,-1,2014-06-06 05:49:14,2014-06-07 07:49:48,14009024MM10A,2014-06-06,,1,M,Battery,1,14010732MM10A,(M1),0,2014-07-13,Possess Cannabis/20 Grams Or Less,2014-07-13,2014-08-09,,1,14010732MM10A,(M1),2014-07-13,Battery,Risk of Recidivism,10,High,2014-06-07,Risk of Violence,6,Medium,2014-06-07,2014-07-13,2014-08-09,0,0,36,1,1,1\r\n10622,miss howard,miss,howard,2014-02-28,Female,1972-02-08,44,25 - 45,African-American,0,6,0,0,6,-1,2014-02-27 02:14:46,2014-03-01 05:31:19,14002810CF10A,2014-02-27,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-28,Risk of Violence,3,Low,2014-02-28,2014-02-27,2014-03-01,6,1,763,0,0,0\r\n10625,mikel ervin,mikel,ervin,2013-04-06,Male,1992-12-14,23,Less than 25,African-American,0,4,0,0,0,-1,2013-04-05 06:15:45,2013-04-06 10:23:30,13004913CF10A,2013-04-05,,1,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-06,Risk of Violence,6,Medium,2013-04-06,2013-04-05,2013-04-06,0,0,1091,0,0,0\r\n10626,miguel pena,miguel,pena,2014-03-16,Male,1969-07-23,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-15 04:41:43,2014-03-16 01:23:46,14003668CF10A,2014-03-15,,1,F,Aggravated Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-16,0,0,747,0,0,0\r\n10627,christopher mayer,christopher,mayer,2014-01-31,Male,1983-04-01,33,25 - 45,Caucasian,0,4,0,0,2,-14,2014-01-17 04:21:17,2014-01-31 10:00:28,14000748CF10A,2014-01-17,,14,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-31,Risk of Violence,2,Low,2014-01-31,2014-01-17,2014-01-31,2,0,791,0,0,0\r\n10629,renee lamarche,renee,lamarche,2013-03-19,Female,1976-02-22,40,25 - 45,Caucasian,0,1,0,0,3,-1,2013-03-18 09:29:31,2013-03-19 01:52:29,13003929CF10A,2013-03-18,,1,F,Possession of Cocaine,1,13006106CF10A,(F3),1,2013-04-28,Possession of Cocaine,2013-04-29,2013-06-03,,1,14011095MM10A,(M1),2014-07-20,Battery,Risk of Recidivism,1,Low,2013-03-19,Risk of Violence,1,Low,2013-03-19,2014-07-20,2014-07-21,3,0,40,1,1,1\r\n10631,steven kitt,steven,kitt,2013-10-06,Male,1961-07-04,54,Greater than 45,Caucasian,0,3,0,0,7,0,2013-10-06 03:20:08,2013-10-06 07:36:47,13014016CF10A,2013-10-06,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-06,Risk of Violence,1,Low,2013-10-06,2013-10-06,2013-10-06,7,0,908,0,0,0\r\n10636,nicholas caffarilla,nicholas,caffarilla,2013-03-24,Male,1994-12-06,21,Less than 25,Caucasian,0,7,0,0,0,-1,2013-03-23 10:29:29,2013-03-24 10:53:35,13005731MM10A,2013-03-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-24,Risk of Violence,7,Medium,2013-03-24,2013-03-23,2013-03-24,0,0,1104,0,0,0\r\n10637,daniel finnegan,daniel,finnegan,2014-10-09,Male,1972-05-25,43,25 - 45,Caucasian,0,2,0,0,6,-1,2014-10-08 11:28:22,2014-10-09 02:37:24,14014765MM10A,2014-10-08,,1,M,Assault,1,15011585MM10A,(M1),,2015-09-09,Battery,,,,1,15011585MM10A,(M1),2015-09-09,Battery,Risk of Recidivism,2,Low,2014-10-09,Risk of Violence,4,Low,2014-10-09,2014-10-08,2014-10-09,6,0,335,1,1,1\r\n10643,jorge aziles,jorge,aziles,2013-05-10,Male,1993-10-01,22,Less than 25,African-American,0,10,0,0,0,-1,2013-05-09 06:01:25,2013-05-13 03:50:36,13008989MM10A,2013-05-09,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-05-10,Risk of Violence,10,High,2013-05-10,2013-05-09,2013-05-13,0,3,1057,0,0,0\r\n10645,brent curry,brent,curry,2013-04-10,Male,1984-10-01,31,25 - 45,African-American,0,7,0,0,0,0,2013-04-10 01:53:18,2013-04-10 01:49:18,13005110CF10A,2013-04-10,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-10,Risk of Violence,3,Low,2013-04-10,2014-06-09,2014-06-23,0,0,425,0,0,0\r\n10647,gay diamond,gay,diamond,2013-03-12,Female,1965-12-27,50,Greater than 45,Caucasian,0,5,0,0,3,55,2013-05-06 04:40:11,2013-07-02 06:21:16,12014536CF10A,,2012-12-29,73,F,arrest case no charge,1,16001128MO10A,(MO3),0,2016-02-03,,2016-02-03,2016-02-26,,0,,,,,Risk of Recidivism,5,Medium,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-05-06,2013-07-02,3,0,55,0,0,0\r\n10648,naiboby castro,naiboby,castro,2014-10-06,Male,1988-09-19,27,25 - 45,Hispanic,0,2,0,0,4,-1,2014-10-05 02:11:54,2014-10-08 05:53:44,14013424CF10A,2014-10-05,,1,F,False Imprisonment,1,15016451CF10A,(F2),,2015-12-25,Agg Battery Grt/Bod/Harm,,,,1,15016451CF10A,(F2),2015-12-25,Agg Battery Grt/Bod/Harm,Risk of Recidivism,2,Low,2014-10-06,Risk of Violence,2,Low,2014-10-06,2014-10-05,2014-10-08,4,2,445,1,1,1\r\n10649,marcus massicot,marcus,massicot,2014-03-03,Male,1995-01-06,21,Less than 25,African-American,0,5,0,0,1,-1,2014-03-02 01:50:25,2014-03-03 08:36:38,14003559MM10A,2014-03-01,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-03,Risk of Violence,7,Medium,2014-03-03,2014-03-02,2014-03-03,1,0,760,0,0,0\r\n10651,eric newman,eric,newman,2013-08-03,Male,1992-06-02,23,Less than 25,Caucasian,0,6,0,0,0,0,2013-08-03 08:51:49,2013-08-04 08:17:42,13014778MM10A,2013-08-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-03,Risk of Violence,7,Medium,2013-08-03,2013-08-03,2013-08-04,0,1,972,0,0,0\r\n10653,mervin cohen,mervin,cohen,2013-10-07,Male,1951-05-24,64,Greater than 45,African-American,0,2,0,0,0,-1,2013-10-06 02:16:09,2013-10-07 07:49:01,13018992MM10A,2013-10-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-10-06,2013-10-07,0,0,907,0,0,0\r\n10655,daniella octelus,daniella,octelus,2013-02-20,Female,1974-01-01,42,25 - 45,Other,0,1,0,0,0,-1,2013-02-19 06:19:48,2013-11-27 06:50:00,13002529CF10A,2013-02-19,,1,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-02-19,2013-11-27,0,280,1136,0,0,0\r\n10656,tyrone mais,tyrone,mais,2013-11-09,Male,1995-07-21,20,Less than 25,African-American,0,4,0,1,0,-1,2013-11-08 04:19:33,2013-11-09 02:11:07,13015586CF10A,2013-11-08,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-09,Risk of Violence,7,Medium,2013-11-09,2013-11-08,2013-11-09,0,0,874,0,0,0\r\n10657,tomas rivas,tomas,rivas,2013-04-18,Male,1989-09-27,26,25 - 45,Caucasian,0,2,0,0,1,-1,2013-04-17 01:39:09,2013-04-18 07:32:53,13007445MM10A,2013-04-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-18,Risk of Violence,3,Low,2013-04-18,2013-04-17,2013-04-18,1,0,1079,0,0,0\r\n10660,willie pichardo,willie,pichardo,2014-03-04,Male,1992-12-14,23,Less than 25,Hispanic,0,2,0,0,0,-1,2014-03-03 03:40:05,2014-03-04 09:05:25,14003634MM10A,2014-03-03,,1,M,Battery,1,14008472MM10A,(M1),0,2014-05-27,Battery,2014-05-27,2014-05-28,,1,14008472MM10A,(M1),2014-05-27,Battery,Risk of Recidivism,2,Low,2014-03-04,Risk of Violence,4,Low,2014-03-04,2014-05-27,2014-05-28,0,0,84,1,1,1\r\n10667,michelle st. surin,michelle,st. surin,2013-05-21,Female,1987-02-27,29,25 - 45,African-American,0,4,0,0,0,,,,13007183CF10A,2013-05-20,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-21,Risk of Violence,3,Low,2013-05-21,,,0,0,1046,0,0,0\r\n10670,twana williams,twana,williams,2013-11-07,Female,1971-03-11,45,Greater than 45,African-American,0,1,0,0,0,-1,2013-11-06 07:53:26,2013-11-07 02:17:37,13015475CF10A,2013-11-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-07,Risk of Violence,1,Low,2013-11-07,2013-11-06,2013-11-07,0,0,876,0,0,0\r\n10672,mary nelson,mary,nelson,2014-02-03,Female,1968-05-28,47,Greater than 45,African-American,0,6,0,0,4,-1,2014-02-02 11:14:36,2014-02-03 09:43:18,14001799MM10A,2014-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-03,Risk of Violence,6,Medium,2014-02-03,2014-02-02,2014-02-03,4,0,788,0,0,0\r\n10674,uriel young,uriel,young,2013-02-22,Male,1984-04-07,32,25 - 45,African-American,2,10,1,0,9,-1,2013-02-21 07:02:45,2013-04-18 09:12:27,13002666CF10A,2013-02-21,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-22,Risk of Violence,6,Medium,2013-02-22,2016-03-08,2016-04-18,9,55,1110,0,0,0\r\n10675,michael bentivegna,michael,bentivegna,2014-12-09,Male,1989-03-04,27,25 - 45,Caucasian,0,3,0,0,2,-50,2014-10-20 08:45:47,2014-10-20 07:50:57,14014140CF10A,2014-10-20,,50,F,Felony Batt(Great Bodily Harm),1,16000966MM10A,(M2),0,2016-01-28,Lve/Scen/Acc/Veh/Prop/Damage,2016-01-28,2016-01-31,,1,16000966MM10A,(M1),2016-01-28,Battery,Risk of Recidivism,3,Low,2014-12-09,Risk of Violence,3,Low,2014-12-09,2016-01-28,2016-01-31,2,0,415,1,1,1\r\n10676,dalphley dieujuste,dalphley,dieujuste,2013-08-27,Male,1992-08-07,23,Less than 25,Other,0,4,0,0,0,-1,2013-08-26 09:14:14,2013-08-27 06:17:54,13012024CF10A,2013-08-26,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-27,Risk of Violence,4,Low,2013-08-27,2013-08-26,2013-08-27,0,0,948,0,0,0\r\n10682,yanderi soto,yanderi,soto,2013-08-28,Female,1983-02-03,33,25 - 45,Hispanic,0,3,0,0,2,-64,2013-06-25 08:58:27,2013-07-25 12:37:44,13009036CF10A,,2013-06-26,63,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-28,Risk of Violence,2,Low,2013-08-28,2013-06-25,2013-07-25,2,0,947,0,0,0\r\n10685,saschelle simms,saschelle,simms,2013-08-04,Female,1987-04-22,28,25 - 45,African-American,0,2,0,0,1,-1,2013-08-03 11:07:36,2013-08-04 09:49:46,13010871CF10A,2013-08-03,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-04,Risk of Violence,2,Low,2013-08-04,2013-08-03,2013-08-04,1,0,971,0,0,0\r\n10686,martin martinez,martin,martinez,2013-01-01,Male,1980-01-06,36,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-01 07:58:34,2013-02-06 11:17:21,13000050CF10A,2013-01-01,,0,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-01,Risk of Violence,1,Low,2013-01-01,2013-01-01,2013-02-06,0,36,1186,0,0,0\r\n10689,pedro arencibia,pedro,arencibia,2014-02-25,Male,1983-08-16,32,25 - 45,Hispanic,0,3,0,0,1,0,2014-02-25 04:17:29,2014-02-25 08:55:45,14002669CF10A,2014-02-25,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-25,Risk of Violence,2,Low,2014-02-25,2014-02-25,2014-02-25,1,0,766,0,0,0\r\n10690,jamon bossier,jamon,bossier,2013-03-15,Male,1992-01-25,24,Less than 25,African-American,0,6,0,0,0,-1,2013-03-14 03:45:06,2013-03-16 09:14:50,13003740CF10A,2013-03-14,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-15,Risk of Violence,5,Medium,2013-03-15,2013-03-14,2013-03-16,0,1,1113,0,0,0\r\n10694,darvin smith,darvin,smith,2013-03-25,Male,1969-12-03,46,Greater than 45,African-American,0,6,0,0,2,-1,2013-03-24 07:46:10,2013-03-25 08:04:20,02004130MM10A,,2013-03-24,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-25,Risk of Violence,3,Low,2013-03-25,2013-03-24,2013-03-25,2,0,1103,0,0,0\r\n10699,irwin baxter,irwin,baxter,2014-04-10,Male,1959-03-11,57,Greater than 45,African-American,0,10,0,0,28,0,2014-04-10 01:28:12,2014-04-12 05:32:50,14005009CF10A,2014-04-10,,0,F,Possession of Cocaine,1,14005452CF10A,(M1),1,2014-04-18,Resist/Obstruct W/O Violence,2014-04-19,2014-05-28,,1,14005452CF10A,(F3),2014-04-18,Battery on Law Enforc Officer,Risk of Recidivism,10,High,2014-04-10,Risk of Violence,6,Medium,2014-04-10,2014-04-10,2014-04-12,28,2,8,1,1,1\r\n10703,arthur washington,arthur,washington,2013-05-25,Male,1972-12-13,43,25 - 45,African-American,0,7,1,0,23,-1,2013-05-24 08:40:39,2013-09-03 10:05:59,13009421CF10A,2013-05-24,,1,F,Deliver Cocaine 1000FT Park,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-25,Risk of Violence,3,Low,2013-05-25,2014-10-22,2014-10-30,23,101,515,0,0,0\r\n10706,demetrius weeks,demetrius,weeks,2013-01-02,Male,1973-11-02,42,25 - 45,African-American,0,7,0,0,0,0,2013-01-02 08:01:48,2013-01-09 02:59:21,13000128MM10A,2013-01-01,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-02,Risk of Violence,4,Low,2013-01-02,2013-01-02,2013-01-09,0,7,1185,0,0,0\r\n10708,christopher rhodes,christopher,rhodes,2013-03-22,Male,1989-05-18,26,25 - 45,Caucasian,0,4,0,0,1,-1,2013-03-21 09:52:22,2013-03-27 09:11:42,13001004CF10A,,2013-03-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-22,Risk of Violence,3,Low,2013-03-22,2013-03-21,2013-03-27,1,5,1106,0,0,0\r\n10709,allen willey,allen,willey,2013-01-11,Male,1942-04-15,74,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-10 09:12:31,2013-01-11 09:20:12,13000584MM10A,2013-01-10,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-11,Risk of Violence,1,Low,2013-01-11,2013-01-10,2013-01-11,0,0,1176,0,0,0\r\n10713,cony bonilla,cony,bonilla,2013-03-11,Female,1991-06-21,24,Less than 25,Hispanic,0,3,0,0,1,-2,2013-03-09 11:55:36,2013-03-10 01:31:32,13004776MM10A,2013-03-09,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-11,Risk of Violence,3,Low,2013-03-11,2013-03-09,2013-03-10,1,0,1117,0,0,0\r\n10718,shaun shakespeare,shaun,shakespeare,2013-08-21,Male,1994-03-15,22,Less than 25,Other,0,3,0,1,0,-1,2013-08-20 05:01:29,2013-08-21 07:51:21,13011707CF10A,2013-08-20,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-21,Risk of Violence,6,Medium,2013-08-21,2013-08-20,2013-08-21,0,0,954,0,0,0\r\n10719,deandre rolle,deandre,rolle,2013-11-05,Male,1982-09-27,33,25 - 45,African-American,0,4,0,0,2,-1,2013-11-04 06:37:56,2013-11-05 08:59:00,12022838TC10A,2012-03-27,,588,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-05,Risk of Violence,4,Low,2013-11-05,2015-12-21,2015-12-22,2,0,776,0,0,0\r\n10720,savannah bridges,savannah,bridges,2014-03-26,Male,1994-02-10,22,Less than 25,African-American,0,6,0,0,1,-1,2014-03-25 06:56:44,2014-03-26 01:24:02,14005166MM10A,2014-03-25,,1,M,Battery,1,15002685MM10A,(M1),0,2015-03-06,Battery,2015-03-06,2015-03-07,,1,15002685MM10A,(M1),2015-03-06,Battery,Risk of Recidivism,6,Medium,2014-03-26,Risk of Violence,6,Medium,2014-03-26,2015-03-06,2015-03-07,1,0,345,1,1,1\r\n10721,john gorczyca,john,gorczyca,2013-12-20,Male,1966-02-25,50,Greater than 45,Caucasian,0,2,0,0,4,-27,2013-11-23 03:50:00,2013-12-19 09:53:42,13022038MM10A,2013-11-23,,27,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-20,Risk of Violence,1,Low,2013-12-20,2013-11-23,2013-12-19,4,0,833,0,0,0\r\n10728,raquel stewart,raquel,stewart,2013-12-16,Female,1980-10-31,35,25 - 45,African-American,0,7,0,1,5,-1,2013-12-15 08:46:54,2013-12-22 09:08:39,13017314CF10A,2013-12-15,,1,F,Aggrav Battery w/Deadly Weapon,1,14004715CF10A,(M1),0,2014-04-05,Battery,2014-04-05,2014-10-21,,1,14004715CF10A,(F3),2014-04-05,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2013-12-16,Risk of Violence,3,Low,2013-12-16,2014-04-05,2014-10-21,5,6,110,1,1,1\r\n10729,marquis taylor,marquis,taylor,2014-10-16,Male,1982-05-09,33,25 - 45,African-American,0,1,0,0,0,0,2014-10-16 01:24:44,2014-10-16 08:03:13,14013886CF10A,2014-10-15,,1,F,Failure To Return Hired Vehicle,1,15006266MM10A,(M1),0,2015-06-09,Battery,2015-06-09,2015-06-11,,1,15006266MM10A,(M1),2015-06-09,Battery,Risk of Recidivism,1,Low,2014-10-16,Risk of Violence,1,Low,2014-10-16,2015-06-09,2015-06-11,0,0,236,1,1,1\r\n10730,syreta moye,syreta,moye,2013-03-09,Female,1980-02-13,36,25 - 45,African-American,0,2,0,0,1,-1,2013-03-08 11:42:17,2013-03-09 01:06:11,13004724MM10A,2013-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2013-03-08,2013-03-09,1,0,1119,0,0,0\r\n10735,ronald sales,ronald,sales,2014-02-09,Male,1952-10-10,63,Greater than 45,African-American,0,1,0,0,1,-1,2014-02-08 10:04:04,2014-02-10 08:40:22,12016933CF10A,,2014-02-08,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-09,Risk of Violence,1,Low,2014-02-09,2014-02-08,2014-02-10,1,1,782,0,0,0\r\n10737,barbara mitchell,barbara,mitchell,2013-10-17,Female,1946-08-02,69,Greater than 45,Caucasian,0,3,0,0,5,-3,2013-10-14 10:12:12,2013-10-15 10:25:43,13014378CF10A,2013-10-14,,3,F,,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-17,Risk of Violence,1,Low,2013-10-17,2014-04-17,2014-04-21,5,0,182,0,0,0\r\n10748,james sauer,james,sauer,2013-04-10,Male,1971-11-08,44,25 - 45,Caucasian,0,1,0,0,1,-1,2013-04-09 08:28:04,2013-04-10 08:06:36,13006872MM10A,2013-04-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-10,Risk of Violence,1,Low,2013-04-10,2013-04-09,2013-04-10,1,0,1087,0,0,0\r\n10749,colleen louis,colleen,louis,2014-01-04,Female,1987-04-03,29,25 - 45,African-American,0,2,0,0,0,-1,2014-01-03 04:12:16,2014-01-04 01:58:37,14000129CF10A,2014-01-03,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-04,Risk of Violence,2,Low,2014-01-04,2014-01-03,2014-01-04,0,0,818,0,0,0\r\n10750,alejandra palacios,alejandra,palacios,2013-12-15,Female,1963-08-11,52,Greater than 45,Caucasian,0,3,0,0,0,-1,2013-12-14 04:55:04,2013-12-15 09:13:15,13023182MM10A,2013-12-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-15,Risk of Violence,1,Low,2013-12-15,2013-12-14,2013-12-15,0,0,838,0,0,0\r\n10753,jazzy johnson,jazzy,johnson,2013-02-23,Male,1992-10-15,23,Less than 25,African-American,0,10,0,0,1,-1,2013-02-22 03:33:10,2013-02-24 02:27:32,13002753CF10A,2013-02-22,,1,F,Possession of Cocaine,1,13005926CF10A,(F2),0,2013-04-25,Aggravated Battery / Pregnant,2013-04-25,2013-09-17,,1,13005926CF10A,(F2),2013-04-25,Aggravated Battery / Pregnant,Risk of Recidivism,10,High,2013-02-23,Risk of Violence,9,High,2013-02-23,2013-04-25,2013-09-17,1,1,61,1,1,1\r\n10754,jazmin gonzalez,jazmin,gonzalez,2013-06-03,Female,1993-10-12,22,Less than 25,Hispanic,0,4,0,0,0,-2,2013-06-01 10:56:01,2013-06-02 02:04:54,13010520MM10A,2013-06-01,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-03,Risk of Violence,4,Low,2013-06-03,2013-06-01,2013-06-02,0,0,1033,0,0,0\r\n10756,mazen caceres,mazen,caceres,2014-02-12,Male,1989-10-12,26,25 - 45,Caucasian,0,4,0,0,0,-1,2014-02-11 05:01:54,2014-02-12 02:28:50,14001953CF10A,2014-02-11,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-12,Risk of Violence,2,Low,2014-02-12,2014-02-11,2014-02-12,0,0,779,0,0,0\r\n10757,christopher tribie,christopher,tribie,2014-06-14,Male,1991-05-30,24,Less than 25,African-American,0,6,0,0,0,-1,2014-06-13 01:32:16,2014-07-03 10:09:04,14009385MM10A,2014-06-13,,1,M,Viol Injunct Domestic Violence,1,14012691CF10A,(F3),,2014-07-08,Stalking (Aggravated),,,,1,14012691CF10A,(F3),2014-07-08,Stalking (Aggravated),Risk of Recidivism,6,Medium,2014-06-14,Risk of Violence,4,Low,2014-06-14,2014-06-13,2014-07-03,0,19,24,1,1,1\r\n10758,bernitrust harrigan,bernitrust,harrigan,2013-04-06,Male,1970-09-06,45,Greater than 45,African-American,0,2,0,0,4,0,2013-04-06 12:37:10,2013-04-09 12:38:36,13006588MM10A,2013-04-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-06,Risk of Violence,1,Low,2013-04-06,2014-10-01,2014-10-07,4,3,543,0,0,0\r\n10762,priscilla chavez,priscilla,chavez,2013-12-11,Female,1990-03-20,26,25 - 45,Hispanic,0,4,0,0,1,-6,2013-12-05 05:14:02,2013-12-10 07:12:45,13022591MM10A,2013-12-05,,6,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-11,Risk of Violence,3,Low,2013-12-11,2013-12-05,2013-12-10,1,0,842,0,0,0\r\n10763,garland humpheries,garland,humpheries,2013-03-18,Male,1968-11-14,47,Greater than 45,African-American,0,1,0,0,0,0,2013-03-18 03:42:01,2013-03-19 06:59:08,13005340MM10A,2013-03-18,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-18,2013-03-19,0,1,1110,0,0,0\r\n10764,tyler flowers,tyler,flowers,2014-07-11,Male,1996-04-18,20,Less than 25,African-American,1,10,0,0,2,-35,2014-06-06 02:21:01,2014-06-07 07:49:32,14007837CF10A,2014-06-06,,35,F,Felony Batt(Great Bodily Harm),1,15006442CF10A,(F2),,2015-05-15,Agg Fleeing/Eluding High Speed,,,,1,15006442CF10A,(F2),2015-05-15,Agg Fleeing/Eluding High Speed,Risk of Recidivism,10,High,2014-07-11,Risk of Violence,10,High,2014-07-11,2014-06-06,2014-06-07,2,0,308,1,1,1\r\n10765,eric shivers,eric,shivers,2013-08-27,Male,1990-01-07,26,25 - 45,African-American,0,4,0,0,0,0,2013-08-27 05:05:13,2013-08-27 06:56:41,13012107CF10A,2013-08-26,,1,F,Uttering Forged Bills,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-27,Risk of Violence,4,Low,2013-08-27,2013-08-27,2013-08-27,0,0,948,0,0,0\r\n10769,christopher pulsifer,christopher,pulsifer,2013-04-02,Male,1963-09-26,52,Greater than 45,Caucasian,0,1,0,0,1,0,2013-04-02 01:14:06,2013-04-03 03:39:16,13006365MM10A,2013-04-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-02,Risk of Violence,1,Low,2013-04-02,2013-04-02,2013-04-03,1,1,1095,0,0,0\r\n10770,luis quintero,luis,quintero,2013-04-05,Male,1964-07-07,51,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-05 12:26:24,2013-04-05 01:22:47,13004864CF10A,,2013-04-04,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-05,Risk of Violence,1,Low,2013-04-05,2013-04-05,2013-04-05,0,0,1092,0,0,0\r\n10774,berry sanders,berry,sanders,2013-04-09,Male,1968-05-25,47,Greater than 45,African-American,0,1,0,0,7,-1,2013-04-08 07:37:52,2013-06-04 07:39:04,13005048CF10A,2013-04-08,,1,F,Agg Battery Grt/Bod/Harm,1,13010050CF10A,(F1),4,2013-07-13,Kidnapping,2013-07-17,2015-10-12,,1,13010050CF10A,(F3),2013-07-13,Aggravated Assault W/dead Weap,Risk of Recidivism,1,Low,2013-04-09,Risk of Violence,1,Low,2013-04-09,2013-04-08,2013-06-04,7,56,95,1,1,1\r\n10778,roger nichols,roger,nichols,2014-06-13,Male,1977-11-30,38,25 - 45,Caucasian,0,1,0,0,1,-1,2014-06-12 07:29:49,2014-06-13 01:45:37,14021917MU10A,2014-06-12,,1,M,Reckless Driving,1,15005627MM10A,(M1),0,2015-05-22,Battery,2015-05-22,2015-05-23,,1,15005627MM10A,(M1),2015-05-22,Battery,Risk of Recidivism,1,Low,2014-06-13,Risk of Violence,1,Low,2014-06-13,2015-01-16,2015-01-17,1,0,217,0,1,1\r\n10779,john scolo,john,scolo,2013-04-06,Male,1948-06-09,67,Greater than 45,Caucasian,0,3,0,0,1,-1,2013-04-05 11:40:27,2013-04-06 01:11:53,13004904CF10A,2013-04-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-06,Risk of Violence,1,Low,2013-04-06,2013-04-05,2013-04-06,1,0,1091,0,0,0\r\n10781,jaynell bristol,jaynell,bristol,2013-07-17,Male,1968-07-07,47,Greater than 45,African-American,0,1,0,0,1,-3,2013-07-14 11:11:51,2013-07-15 01:37:10,13009878CF10A,2013-07-14,,3,F,Battery on Law Enforc Officer,1,15011421MM10A,(M1),0,2015-10-30,Resist/Obstruct W/O Violence,2015-10-30,2015-10-31,,0,,,,,Risk of Recidivism,1,Low,2013-07-17,Risk of Violence,2,Low,2013-07-17,2015-10-30,2015-10-31,1,0,835,1,0,0\r\n10783,george mihelich,george,mihelich,2013-02-23,Male,1949-07-07,66,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-02-22 01:47:24,2013-02-23 08:24:24,13003748MM10A,2013-02-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-23,0,0,1133,0,0,0\r\n10784,christopher risor,christopher,risor,2014-02-04,Male,1976-10-14,39,25 - 45,Caucasian,0,2,0,0,0,-1,2014-02-03 07:26:31,2014-02-04 07:51:16,14001503CF10A,2014-02-03,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-02-03,2014-02-04,0,0,787,0,0,0\r\n10786,adriana cardona,adriana,cardona,2013-09-19,Female,1966-08-31,49,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-09-18 08:32:20,2013-12-09 08:40:42,13017805MM10A,2013-09-18,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-19,Risk of Violence,1,Low,2013-09-19,2013-09-18,2013-12-09,2,81,925,0,0,0\r\n10787,lisa scott,lisa,scott,2013-05-10,Female,1970-07-28,45,Greater than 45,African-American,0,7,0,0,9,0,2013-05-10 04:46:42,2013-07-24 09:08:35,13009083MM10A,2013-05-10,,0,M,Battery,1,15001303MM30A,(M1),,2015-08-04,Criminal Mischief>$200<$1000,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-10,Risk of Violence,9,High,2013-05-10,2013-05-10,2013-07-24,9,75,816,1,0,0\r\n10788,nadeem ali,nadeem,ali,2013-09-13,Male,1993-09-29,22,Less than 25,Asian,0,2,0,0,1,0,2013-09-13 04:22:12,2013-09-13 10:02:49,13017503MM10A,2013-09-13,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-13,Risk of Violence,4,Low,2013-09-13,2013-09-13,2013-09-13,1,0,931,0,0,0\r\n10803,robert yaggle,robert,yaggle,2014-02-07,Male,1981-11-04,34,25 - 45,Caucasian,0,1,0,0,5,-1,2014-02-06 07:11:47,2014-02-07 08:33:05,13007035CF10A,,2014-02-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-07,Risk of Violence,1,Low,2014-02-07,2014-02-06,2014-02-07,5,0,784,0,0,0\r\n10805,michael decicco,michael,decicco,2013-08-15,Male,1981-07-06,34,25 - 45,Caucasian,0,5,0,0,13,-90,2013-05-17 02:27:35,2013-06-19 07:55:17,13007065CF10A,2013-05-16,,91,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-15,Risk of Violence,4,Low,2013-08-15,2013-05-17,2013-06-19,13,0,960,0,0,0\r\n10806,tevin phillips,tevin,phillips,2014-12-31,Male,1993-06-02,22,Less than 25,African-American,0,4,1,0,8,-1,2014-12-30 02:15:57,2015-02-07 09:14:51,14017207CF10A,2014-12-30,,1,F,Burglary Unoccupied Dwelling,1,15006865MM10A,(M1),1,2015-06-26,Resist/Obstruct W/O Violence,2015-06-27,2015-10-22,,1,15006865MM10A,(M1),2015-06-26,Battery,Risk of Recidivism,4,Low,2014-12-31,Risk of Violence,6,Medium,2014-12-31,2015-02-11,2015-06-19,8,38,42,0,1,1\r\n10808,allen martin,allen,martin,2013-09-30,Male,1989-03-19,27,25 - 45,Caucasian,0,5,2,1,13,-59,2013-08-02 02:13:21,2013-09-28 04:30:00,13012061CF10A,,2013-08-22,39,F,arrest case no charge,1,13022876MM10A,(M2),0,2013-12-06,Disorderly Intoxication,2013-12-06,2013-12-06,,1,14006051CF10A,(F2),2014-04-30,Agg Battery Grt/Bod/Harm,Risk of Recidivism,5,Medium,2013-09-30,Risk of Violence,5,Medium,2013-09-30,2013-12-06,2013-12-06,13,0,67,0,1,1\r\n10810,reginald prudent,reginald,prudent,2013-03-06,Male,1981-07-16,34,25 - 45,African-American,0,6,0,0,1,-1,2013-03-05 10:06:08,2013-03-06 06:32:31,13002558CF10A,,2013-03-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-06,Risk of Violence,3,Low,2013-03-06,2013-03-05,2013-03-06,1,0,1122,0,0,0\r\n10811,michael valente,michael,valente,2013-08-30,Male,1981-10-12,34,25 - 45,Caucasian,0,5,0,0,1,-2,2013-08-28 05:17:09,2013-08-29 10:00:01,13012154CF10A,2013-08-28,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-30,Risk of Violence,2,Low,2013-08-30,2014-04-24,2014-05-23,1,0,237,0,0,0\r\n10819,jean cyma,jean,cyma,2014-07-09,Male,1996-03-18,20,Less than 25,Asian,0,10,1,0,2,-1,2014-07-08 01:20:50,2014-08-29 04:10:30,14009437CF10A,2014-07-08,,1,F,Grand Theft in the 3rd Degree,1,15000287CF10A,(F1),,2015-01-05,Murder in 2nd Degree,,,,1,15000287CF10A,(F1),2015-01-05,Murder in 2nd Degree,Risk of Recidivism,10,High,2014-07-09,Risk of Violence,8,High,2014-07-09,2014-07-08,2014-08-29,2,51,180,1,1,1\r\n10827,luis garcia,luis,garcia,2014-03-16,Male,1975-12-14,40,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-15 05:42:13,2014-03-16 09:20:50,14003680CF10A,2014-03-15,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-16,0,0,747,0,0,0\r\n10829,olivia hines,olivia,hines,2013-10-24,Female,1993-09-30,22,Less than 25,African-American,0,6,0,0,1,-97,2013-07-19 02:07:24,2013-10-23 09:05:04,13010086CF10A,2013-07-19,,97,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-24,Risk of Violence,6,Medium,2013-10-24,2014-05-13,2014-06-20,1,0,201,0,0,0\r\n10831,tiffany miller,tiffany,miller,2013-12-05,Female,1989-03-12,27,25 - 45,Caucasian,0,8,0,0,0,0,2013-12-05 03:52:06,2013-12-05 08:05:45,13022575MM10A,2013-12-05,,0,M,Battery,1,14001864CF10A,(F3),1,2014-02-09,Resist Officer w/Violence,2014-02-10,2014-03-03,,1,14001864CF10A,(F3),2014-02-09,Battery on Law Enforc Officer,Risk of Recidivism,8,High,2013-12-05,Risk of Violence,6,Medium,2013-12-05,2016-02-13,2016-02-20,0,0,66,1,1,1\r\n10835,nicolas barahonaneira,nicolas,barahonaneira,2013-08-15,Male,1993-01-30,23,Less than 25,Hispanic,0,5,0,0,2,-1,2013-08-14 09:28:22,2013-08-16 10:44:46,13011425CF10A,2013-08-14,,1,F,Burglary Conveyance Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-15,Risk of Violence,4,Low,2013-08-15,2013-08-14,2013-08-16,2,1,960,0,0,0\r\n10837,oscar andrews,oscar,andrews,2013-08-15,Male,1969-01-05,47,Greater than 45,African-American,0,6,0,0,14,-1,2013-08-14 05:27:06,2013-09-14 05:54:00,13015392MM10A,2013-08-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-15,Risk of Violence,1,Low,2013-08-15,2013-08-14,2013-09-14,14,30,960,0,0,0\r\n10839,michael gardner,michael,gardner,2013-10-04,Male,1977-08-25,38,25 - 45,African-American,2,9,3,0,16,28,2013-11-01 05:17:12,2013-12-04 09:22:13,13012958MM10A,2013-07-08,,88,M,Battery,1,13045764TC10A,(M2),0,2013-11-01,Operating W/O Valid License,2013-11-01,2013-12-04,,1,14001900CF10A,(F2),2014-02-10,Agg Battery Grt/Bod/Harm,Risk of Recidivism,9,High,2013-10-04,Risk of Violence,6,Medium,2013-10-04,2013-11-01,2013-12-04,16,0,28,1,1,1\r\n10843,edward mejia,edward,mejia,2014-01-29,Male,1991-08-12,24,Less than 25,Hispanic,0,3,0,0,0,0,2014-01-29 03:01:54,2014-01-29 10:17:24,14001636MM10A,2014-01-29,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-29,Risk of Violence,5,Medium,2014-01-29,2014-01-29,2014-01-29,0,0,793,0,0,0\r\n10848,joseph alvardo,joseph,alvardo,2013-04-19,Male,1985-01-26,31,25 - 45,African-American,0,6,0,0,1,,,,08020871CF10A,,2009-09-03,1324,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-19,Risk of Violence,6,Medium,2013-04-19,2009-11-17,2012-02-02,1,0,1078,0,0,0\r\n10854,alvaro saraviaciudadreal,alvaro,saraviaciudadreal,2013-09-04,Male,1977-10-25,38,25 - 45,Other,0,2,0,0,0,-2,2013-09-02 02:06:21,2013-09-03 07:40:54,13016770MM10A,2013-09-01,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-09-02,2013-09-03,0,0,940,0,0,0\r\n10858,odainey rodney,odainey,rodney,2013-11-16,Male,1989-09-25,26,25 - 45,African-American,0,2,0,0,0,0,2013-11-16 04:21:20,2013-11-19 03:33:50,13015927CF10A,2013-11-15,,1,F,Burglary Conveyance Assault/Bat,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-16,Risk of Violence,3,Low,2013-11-16,2013-11-16,2013-11-19,0,3,867,0,0,0\r\n10859,miah johnson,miah,johnson,2013-09-13,Female,1987-11-26,28,25 - 45,African-American,0,8,0,0,5,-1,2013-09-12 09:19:13,2013-09-13 08:10:02,13012896CF10A,2013-09-12,,1,F,Poss Anti-Shoplifting Device,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-13,Risk of Violence,4,Low,2013-09-13,2013-09-12,2013-09-13,5,0,931,0,0,0\r\n10860,alreegus holmes,alreegus,holmes,2014-02-19,Male,1972-09-13,43,25 - 45,African-American,0,6,0,0,5,0,2014-02-19 04:03:28,2014-03-05 10:06:18,09024482MM10A,,2011-02-10,1105,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-19,Risk of Violence,7,Medium,2014-02-19,2014-02-19,2014-03-05,5,14,772,0,0,0\r\n10863,omar browne,omar,browne,2014-01-08,Male,1986-09-22,29,25 - 45,African-American,0,2,0,0,2,-1,2014-01-07 08:32:58,2014-01-08 12:24:55,14000285CF10A,2014-01-07,,1,F,Possession of Cannabis,1,15009255CF10A,(F2),0,2015-07-18,Burglary Dwelling Occupied,2015-07-18,2015-07-19,,1,15009255CF10A,(M1),2015-07-17,Battery,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,2,Low,2014-01-08,2015-07-18,2015-07-19,2,0,556,1,1,1\r\n10865,douglas bell,douglas,bell,2013-03-07,Male,1941-07-10,74,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-03-06 11:28:06,2013-03-16 01:41:01,05003601CF10A,,2013-03-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-07,Risk of Violence,1,Low,2013-03-07,2013-03-06,2013-03-16,2,9,1121,0,0,0\r\n10869,jeffrey jackson,jeffrey,jackson,2013-05-08,Male,1968-12-03,47,Greater than 45,African-American,0,10,0,0,4,-1,2013-05-07 04:24:58,2013-07-10 11:23:00,13006520CF10A,2013-05-07,,1,F,Possession of Cocaine,1,14009697CF10A,(F3),0,2014-07-16,Possession of Cocaine,2014-07-16,2014-11-11,,1,15003240CF10A,(F2),2015-03-09,Arson II (Vehicle),Risk of Recidivism,10,High,2013-05-08,Risk of Violence,2,Low,2013-05-08,2013-10-14,2014-04-25,4,63,159,0,1,1\r\n10871,gina hawkins,gina,hawkins,2013-04-01,Female,1972-07-28,43,25 - 45,Caucasian,0,1,0,0,0,-2,2013-03-30 11:02:54,2013-03-31 02:41:31,13006131MM10A,2013-03-30,,2,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-03-30,2013-03-31,0,0,1096,0,0,0\r\n10874,laneatra brown,laneatra,brown,2013-10-21,Female,1992-01-26,24,Less than 25,African-American,0,4,0,0,0,-3,2013-10-18 10:54:07,2013-10-19 05:46:07,13014619CF10A,2013-10-18,,3,F,Corrupt Public Servant,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-21,Risk of Violence,4,Low,2013-10-21,2015-07-20,2015-07-21,0,0,637,0,0,0\r\n10875,jeremy gordontoylor,jeremy,gordontoylor,2013-01-30,Male,1990-04-07,26,25 - 45,Asian,0,3,0,0,2,-1,2013-01-29 12:36:15,2013-08-17 05:08:15,12017918CF10A,,2013-01-29,1,F,arrest case no charge,1,14011963MM10A,(M1),0,2014-08-07,Tresspass in Struct/Convey Occupy,2014-08-07,2014-08-25,,1,14015887CF10A,(F3),2014-11-26,Att Robbery Sudd Snatch No Weap,Risk of Recidivism,3,Low,2013-01-30,Risk of Violence,5,Medium,2013-01-30,2013-12-12,2013-12-17,2,199,316,0,1,1\r\n10876,alfonso jackson,alfonso,jackson,2013-04-22,Male,1959-12-06,56,Greater than 45,African-American,0,2,0,0,0,-1,2013-04-21 01:36:24,2013-04-22 01:00:45,13007672MM10A,2013-04-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2013-04-21,2013-04-22,0,0,1075,0,0,0\r\n10879,muhammad altaf,muhammad,altaf,2013-12-23,Male,1966-04-22,49,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-22 03:16:48,2013-12-23 04:13:00,13017629CF10A,2013-12-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-22,2013-12-23,0,0,830,0,0,0\r\n10880,jeanne allen,jeanne,allen,2013-09-16,Female,1979-05-15,36,25 - 45,Other,0,1,0,0,1,-1,2013-09-15 12:56:55,2013-09-16 09:34:51,13017576MM10A,2013-09-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2013-09-15,2013-09-16,1,0,928,0,0,0\r\n10882,adrian harper,adrian,harper,2014-01-13,Female,1992-02-18,24,Less than 25,Caucasian,0,4,0,0,1,-3,2014-01-10 05:37:54,2014-01-13 11:49:39,14000458CF10A,2014-01-10,,3,F,Burglary Structure Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-13,Risk of Violence,4,Low,2014-01-13,2014-01-10,2014-01-13,1,0,809,0,0,0\r\n10884,michael russo,michael,russo,2013-02-01,Male,1988-03-16,28,25 - 45,Caucasian,0,6,0,0,11,-1,2013-01-31 06:11:58,2013-02-01 08:36:46,13001560CF10A,,2013-01-31,1,F,arrest case no charge,1,15004516MM40A,(M2),,2015-11-22,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-01,Risk of Violence,5,Medium,2013-02-01,2013-01-31,2013-02-01,11,0,1024,1,0,0\r\n10888,kemisha douglas,kemisha,douglas,2014-05-23,Female,1989-12-19,26,25 - 45,African-American,0,8,0,0,4,-1,2014-05-22 04:00:39,2014-05-23 01:52:25,14008779CF10A,2014-05-22,,1,F,Felony Battery,1,15007820CF10A,(M1),0,2015-05-08,Possess Cannabis/20 Grams Or Less,2015-05-08,2015-05-15,,1,15007820CF10A,(F3),2015-05-08,Felony Battery w/Prior Convict,Risk of Recidivism,8,High,2014-05-23,Risk of Violence,4,Low,2014-05-23,2015-05-08,2015-05-15,4,0,350,1,1,1\r\n10889,jerry brown,jerry,brown,2013-02-15,Male,1959-10-30,56,Greater than 45,African-American,0,7,0,0,4,-1,2013-02-14 07:01:45,2013-03-03 04:41:34,13002318CF10A,2013-02-14,,1,F,Poss of Cocaine W/I/D/S 1000FT Park,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-15,Risk of Violence,4,Low,2013-02-15,2013-02-14,2013-03-03,4,16,1141,0,0,0\r\n10893,mark galavotti,mark,galavotti,2013-03-15,Male,1957-10-18,58,Greater than 45,Caucasian,0,2,0,0,8,-1,2013-03-14 03:26:36,2013-03-15 06:34:03,13003759CF10A,2013-03-14,,1,M,Criminal Mischief,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-15,Risk of Violence,1,Low,2013-03-15,2013-03-14,2013-03-15,8,0,1113,0,0,0\r\n10894,kevin williams,kevin,williams,2014-02-14,Male,1982-04-24,33,25 - 45,African-American,0,4,0,0,3,0,2014-02-14 04:44:55,2014-02-14 08:28:11,14002138CF10A,2014-02-14,,0,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-14,Risk of Violence,4,Low,2014-02-14,2014-02-14,2014-02-14,3,0,777,0,0,0\r\n10897,adam schult,adam,schult,2013-04-15,Male,1990-05-20,25,25 - 45,Caucasian,4,8,0,0,5,-1,2013-04-14 07:01:35,2013-04-24 07:08:21,13007177MM10A,2013-04-14,,1,M,Resist/Obstruct W/O Violence,1,15007528CF10A,(F2),,2015-04-27,Agg Fleeing/Eluding High Speed,,,,1,15007528CF10A,(F2),2015-04-27,Agg Fleeing/Eluding High Speed,Risk of Recidivism,8,High,2013-04-15,Risk of Violence,7,Medium,2013-04-15,2013-04-14,2013-04-24,5,9,742,1,0,0\r\n10900,stanley givens,stanley,givens,2014-02-19,Male,1992-10-01,23,Less than 25,African-American,0,2,0,1,0,,,,14002360CF10A,2014-02-19,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-19,Risk of Violence,3,Low,2014-02-19,,,0,0,772,0,0,0\r\n10907,dominique akins,dominique,akins,2014-01-17,Female,1986-04-13,30,25 - 45,Caucasian,0,5,0,0,3,0,2014-01-17 04:30:08,2014-01-18 03:33:37,14000768CF10A,2014-01-17,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-17,Risk of Violence,2,Low,2014-01-17,2014-01-17,2014-01-18,3,1,805,0,0,0\r\n10910,norberto nieves,norberto,nieves,2013-09-22,Male,1985-01-19,31,25 - 45,Hispanic,0,6,0,0,1,-1,2013-09-21 07:38:34,2014-01-16 12:08:33,13018017MM10A,2013-09-21,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-22,Risk of Violence,5,Medium,2013-09-22,2013-09-21,2014-01-16,1,116,922,0,0,0\r\n10911,gary balmer,gary,balmer,2013-08-22,Male,1976-07-15,39,25 - 45,Caucasian,0,4,0,0,5,-60,2013-06-23 02:23:40,2013-06-24 08:43:12,13012010MM10A,2013-06-23,,60,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-22,Risk of Violence,3,Low,2013-08-22,2013-06-23,2013-06-24,5,0,953,0,0,0\r\n10913,miguelson pericles,miguelson,pericles,2013-05-13,Male,1994-07-18,21,Less than 25,African-American,0,7,0,0,0,0,2013-05-13 02:38:51,2013-05-13 07:19:19,13006834CF10A,2013-05-13,,0,F,Poss F/Arm Delinq,1,13028844TC10A,(M2),,2013-07-02,Operating W/O Valid License,,,,1,13010999CF10A,(F3),2013-08-06,Attempted Robbery  No Weapon,Risk of Recidivism,7,Medium,2013-05-13,Risk of Violence,7,Medium,2013-05-13,2015-10-26,2015-12-02,0,0,50,1,1,1\r\n10917,darrell miller,darrell,miller,2014-12-24,Male,1972-03-29,44,25 - 45,African-American,0,5,0,1,11,-1,2014-12-23 05:13:16,2014-12-24 09:02:38,14011986CF10A,,2014-12-23,1,F,arrest case no charge,1,15000602CF10A,(F2),0,2015-01-14,Strong Armed  Robbery,2015-01-14,2015-10-08,,1,15000602CF10A,(F7),2015-01-14,Burglary Dwelling Assault/Batt,Risk of Recidivism,5,Medium,2014-12-24,Risk of Violence,3,Low,2014-12-24,2015-01-14,2015-10-08,11,0,21,1,1,1\r\n10918,curtis woolwine,curtis,woolwine,2014-01-23,Male,1986-04-09,30,25 - 45,Caucasian,0,3,0,0,2,-1,2014-01-22 08:24:04,2014-03-26 09:45:11,12010890CF10A,,2014-01-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-23,Risk of Violence,2,Low,2014-01-23,2014-01-22,2014-03-26,2,62,799,0,0,0\r\n10920,bradley ecklund,bradley,ecklund,2013-01-11,Male,1981-06-23,34,25 - 45,Caucasian,0,5,0,0,4,0,2013-01-11 01:39:37,2013-01-12 03:08:33,13000503CF10A,2013-01-10,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-11,Risk of Violence,5,Medium,2013-01-11,2015-07-23,2015-07-23,4,1,923,0,0,0\r\n10921,gabriele lubin,gabriele,lubin,2013-04-16,Male,1990-03-27,26,25 - 45,African-American,0,2,0,0,2,-1,2013-04-15 06:36:52,2013-04-16 01:55:52,12019369TC10A,2012-04-08,,373,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-16,Risk of Violence,3,Low,2013-04-16,2013-04-15,2013-04-16,2,0,1081,0,0,0\r\n10922,sixto durand,sixto,durand,2014-01-30,Male,1964-09-05,51,Greater than 45,Caucasian,0,1,0,0,4,-26,2014-01-04 08:25:00,2014-01-05 01:49:50,14000165MM10A,2014-01-04,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-30,Risk of Violence,1,Low,2014-01-30,2014-01-04,2014-01-05,4,0,792,0,0,0\r\n10924,prasada solomon,prasada,solomon,2014-02-09,Male,1980-02-16,36,25 - 45,African-American,0,2,0,0,0,-1,2014-02-08 07:50:02,2014-02-11 06:47:00,14005069MU10A,2014-02-08,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-09,Risk of Violence,1,Low,2014-02-09,2014-02-08,2014-02-11,0,2,782,0,0,0\r\n10927,devin richardson,devin,richardson,2013-03-19,Male,1994-08-25,21,Less than 25,African-American,0,6,0,0,1,-1,2013-03-18 06:47:56,2013-04-17 05:52:36,13003944CF10A,2013-03-18,,1,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-19,Risk of Violence,5,Medium,2013-03-19,2013-03-18,2013-04-17,1,29,1109,0,0,0\r\n10928,leevon cruse,leevon,cruse,2013-02-09,Male,1956-06-13,59,Greater than 45,African-American,0,5,0,0,5,0,2013-02-09 08:15:34,2013-07-10 12:55:41,07003637MO10A,2007-02-15,,2186,M,Alcoholic Beverage Violation-FL,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-09,Risk of Violence,3,Low,2013-02-09,2015-07-08,2015-07-14,5,151,879,0,0,0\r\n10931,bryan torres,bryan,torres,2013-10-21,Male,1988-02-25,28,25 - 45,Hispanic,0,3,0,0,1,-1,2013-10-20 11:40:38,2013-10-21 02:31:56,13014675CF10A,2013-10-20,,1,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-21,Risk of Violence,2,Low,2013-10-21,2013-10-20,2013-10-21,1,0,893,0,0,0\r\n10932,jason reid,jason,reid,2013-03-30,Male,1978-05-26,37,25 - 45,African-American,0,3,0,0,4,-1,2013-03-29 01:17:49,2013-03-30 08:27:14,13004546CF10A,2013-03-29,,1,F,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-30,Risk of Violence,2,Low,2013-03-30,2013-03-29,2013-03-30,4,0,1098,0,0,0\r\n10934,ismael ramos,ismael,ramos,2013-01-25,Male,1974-12-02,41,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-25 05:56:04,2013-01-25 07:46:25,13001848MM10A,2013-01-25,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-25,Risk of Violence,1,Low,2013-01-25,2013-01-25,2013-01-25,0,0,1162,0,0,0\r\n10939,katherine cambareri,katherine,cambareri,2013-06-25,Female,1962-02-04,54,Greater than 45,Caucasian,0,1,0,0,1,-2,2013-06-23 08:13:05,2013-06-24 08:15:59,13012008MM10A,2013-06-23,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-25,Risk of Violence,1,Low,2013-06-25,2013-06-23,2013-06-24,1,0,1011,0,0,0\r\n10940,jonathan cruz,jonathan,cruz,2014-02-09,Male,1986-03-10,30,25 - 45,Caucasian,0,9,0,0,2,-1,2014-02-08 06:04:28,2014-02-14 06:14:23,14002208MM10A,2014-02-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-09,Risk of Violence,7,Medium,2014-02-09,2014-02-08,2014-02-14,2,5,782,0,0,0\r\n10941,georbel gonzalez-rodriguez,georbel,gonzalez-rodriguez,2013-03-30,Male,1987-12-22,28,25 - 45,Caucasian,0,4,0,0,0,-1,2013-03-29 04:43:06,2013-03-30 08:21:07,13006091MM10A,2013-03-29,,1,M,Battery,1,13011202MM10A,(M1),0,2013-05-10,Battery,2013-05-10,2013-05-10,,1,13006734CF10A,(F3),2013-05-10,Aggravated Assault W/dead Weap,Risk of Recidivism,4,Low,2013-03-30,Risk of Violence,3,Low,2013-03-30,2013-05-10,2013-05-10,0,0,41,0,1,1\r\n10942,khameron walls,khameron,walls,2013-01-21,Male,1994-02-14,22,Less than 25,African-American,0,5,0,0,0,-1,2013-01-20 04:48:05,2013-01-22 08:48:56,13001376MM10A,2013-01-20,,1,M,Battery,1,15002228MM10A,(M1),0,2015-02-23,Trespass After Warning,2015-02-23,2015-02-24,,0,,,,,Risk of Recidivism,5,Medium,2013-01-21,Risk of Violence,7,Medium,2013-01-21,2015-02-23,2015-02-24,0,1,763,1,0,0\r\n10946,rachard guide,rachard,guide,2013-05-05,Male,1988-11-05,27,25 - 45,African-American,0,5,0,2,1,-1,2013-05-04 07:48:46,2013-05-20 08:17:45,13008645MM10A,2013-05-04,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-05,Risk of Violence,8,High,2013-05-05,2013-05-04,2013-05-20,1,15,1062,0,0,0\r\n10948,anthony lupo,anthony,lupo,2013-12-05,Male,1964-07-04,51,Greater than 45,Caucasian,0,3,0,0,7,35,2014-01-09 01:09:05,2014-01-09 08:58:14,13016789CF10A,2013-10-04,,62,F,Tamper With Witness,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-05,Risk of Violence,1,Low,2013-12-05,2014-01-09,2014-01-09,7,0,35,0,0,0\r\n10951,ronald munoz,ronald,munoz,2013-04-30,Male,1993-10-18,22,Less than 25,Hispanic,0,3,0,1,0,-1,2013-04-29 09:03:27,2013-04-30 01:01:44,13008303MM10A,2013-04-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-30,Risk of Violence,5,Medium,2013-04-30,2013-04-29,2013-04-30,0,0,1067,0,0,0\r\n10952,robert sepulveda,robert,sepulveda,2013-04-09,Male,1982-02-26,34,25 - 45,Caucasian,0,2,0,0,1,-50,2013-02-18 10:13:07,2013-02-19 09:17:41,13002475CF10A,2013-02-18,,50,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-09,Risk of Violence,1,Low,2013-04-09,2013-02-18,2013-02-19,1,0,1088,0,0,0\r\n10954,miguel cruz,miguel,cruz,2013-09-11,Female,1993-12-22,22,Less than 25,Caucasian,0,7,0,0,1,-1,2013-09-10 10:34:03,2013-09-11 02:00:32,13012786CF10A,2013-09-10,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-11,Risk of Violence,6,Medium,2013-09-11,2014-10-02,2015-01-26,1,0,386,0,0,0\r\n10955,patricia cooke,patricia,cooke,2013-04-06,Female,1967-01-31,49,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-04-05 11:37:54,2013-04-06 01:30:26,13004903CF10A,2013-04-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-06,Risk of Violence,1,Low,2013-04-06,2013-04-05,2013-04-06,3,0,1091,0,0,0\r\n10956,linda dawson,linda,dawson,2013-01-26,Female,1955-01-19,61,Greater than 45,Caucasian,0,1,0,0,1,0,2013-01-26 12:29:59,2013-01-26 08:38:29,13001823MM10A,2013-01-25,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-26,Risk of Violence,1,Low,2013-01-26,2013-01-26,2013-01-26,1,0,1161,0,0,0\r\n10958,edna lewis,edna,lewis,2014-03-09,Female,1967-01-20,49,Greater than 45,Caucasian,0,6,0,0,2,-1,2014-03-08 06:20:31,2014-03-19 01:28:37,14003305CF10A,2014-03-08,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-09,Risk of Violence,1,Low,2014-03-09,2014-03-08,2014-03-19,2,10,754,0,0,0\r\n10963,paul wyatt,paul,wyatt,2013-11-06,Male,1973-09-19,42,25 - 45,Caucasian,0,4,0,0,5,-1,2013-11-05 08:48:20,2013-12-06 11:30:35,13015432CF10A,,2013-11-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-06,Risk of Violence,2,Low,2013-11-06,2013-11-05,2013-12-06,5,30,877,0,0,0\r\n10964,terrence brown,terrence,brown,2013-02-23,Male,1979-06-08,36,25 - 45,African-American,0,4,0,0,9,-1,2013-02-22 08:41:18,2013-04-21 02:27:19,13002736CF10A,2013-02-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-23,Risk of Violence,2,Low,2013-02-23,2013-02-22,2013-04-21,9,57,1133,0,0,0\r\n10966,shameel koya,shameel,koya,2013-03-04,Male,1979-10-12,36,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-03 10:17:13,2013-03-04 08:33:46,13004323MM10A,2013-03-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-03-03,2013-03-04,0,0,1124,0,0,0\r\n10969,eric sparks,eric,sparks,2013-01-11,Male,1991-07-13,24,Less than 25,African-American,0,3,0,0,2,-1,2013-01-10 09:02:17,2013-02-12 09:16:30,13002115TC10A,,2013-01-11,0,M,arrest case no charge,1,14009468CF10A,(F3),0,2014-07-10,False Imprisonment,2014-07-10,2014-11-18,,1,14009468CF10A,(F2),2014-07-10,Agg Battery Grt/Bod/Harm,Risk of Recidivism,3,Low,2013-01-11,Risk of Violence,4,Low,2013-01-11,2013-07-09,2013-07-16,2,32,179,0,1,1\r\n10971,eugene drogus,eugene,drogus,2014-01-07,Male,1948-10-17,67,Greater than 45,Caucasian,0,2,0,0,2,-244,2013-05-08 10:06:56,2013-06-05 10:30:00,08023125CF10A,,2013-05-08,244,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-07,Risk of Violence,1,Low,2014-01-07,2013-05-08,2013-06-05,2,0,815,0,0,0\r\n10972,matt munoz,matt,munoz,2013-09-12,Male,1984-03-22,32,25 - 45,Caucasian,0,2,0,0,0,-1,2013-09-11 08:56:37,2013-09-12 07:30:00,13012859CF10A,2013-09-11,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2013-09-11,2013-09-12,0,0,932,0,0,0\r\n10975,warren aiken,warren,aiken,2013-09-05,Male,1990-09-30,25,25 - 45,African-American,0,2,0,0,1,-14,2013-08-22 09:32:29,2013-08-31 06:13:28,13011827CF10A,2013-08-22,,14,F,Felony Batt(Great Bodily Harm),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-05,Risk of Violence,3,Low,2013-09-05,2016-01-22,2016-01-22,1,0,869,0,0,0\r\n10976,arleen martin,arleen,martin,2014-12-19,Female,1985-08-14,30,25 - 45,Caucasian,0,1,0,0,2,0,2014-12-19 04:46:47,2014-12-20 08:52:23,14017860MM10A,2014-12-19,,0,M,Battery,1,15015652CF10A,(F3),1,2015-12-05,Felony Battery (Dom Strang),2015-12-06,2015-12-07,,1,15015652CF10A,(F3),2015-12-05,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2014-12-19,Risk of Violence,1,Low,2014-12-19,2014-12-19,2014-12-20,2,1,351,1,1,1\r\n10979,angelita diaz,angelita,diaz,2013-09-06,Male,1972-07-19,43,25 - 45,African-American,0,1,0,0,0,-1,2013-09-05 05:04:14,2013-09-06 06:09:14,13016969MM10A,2013-09-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-05,2013-09-06,0,0,938,0,0,0\r\n10980,jarvis yates,jarvis,yates,2014-02-27,Male,1987-08-27,28,25 - 45,African-American,0,2,0,0,1,-1,2014-02-26 10:21:54,2014-02-27 08:12:01,14002743CF10A,,2014-02-26,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-27,Risk of Violence,2,Low,2014-02-27,2014-02-26,2014-02-27,1,0,764,0,0,0\r\n10981,orett harrison,orett,harrison,2013-12-25,Male,1984-03-31,32,25 - 45,African-American,0,5,0,0,4,-1,2013-12-24 08:35:19,2013-12-25 07:10:52,13017770CF10A,2013-12-24,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-25,Risk of Violence,3,Low,2013-12-25,2015-10-09,2015-10-10,4,0,653,0,0,0\r\n10982,austin harris,austin,harris,2013-10-01,Male,1992-07-07,23,Less than 25,Caucasian,0,8,0,0,0,-1,2013-09-30 10:10:28,2013-10-03 07:24:16,13013703CF10A,2013-09-30,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-01,Risk of Violence,6,Medium,2013-10-01,2013-09-30,2013-10-03,0,2,913,0,0,0\r\n10987,ceasar gomez,ceasar,gomez,2013-03-31,Male,1990-02-07,26,25 - 45,Hispanic,0,2,0,0,0,0,2013-03-31 02:52:44,2013-09-20 10:30:37,13004619CF10A,2013-03-31,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-31,Risk of Violence,3,Low,2013-03-31,2014-02-16,2014-02-27,0,173,322,0,0,0\r\n10988,luis fernandez,luis,fernandez,2013-10-27,Male,1971-09-19,44,25 - 45,Hispanic,0,3,0,0,0,-1,2013-10-26 08:09:42,2013-10-27 08:21:36,13014982CF10A,2013-10-26,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-27,Risk of Violence,1,Low,2013-10-27,2013-10-26,2013-10-27,0,0,887,0,0,0\r\n10989,rodney montgomery,rodney,montgomery,2013-12-28,Male,1985-09-28,30,25 - 45,African-American,0,4,0,0,2,-1,2013-12-27 09:29:12,2014-01-02 06:27:38,13023885MM10A,2013-12-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-28,Risk of Violence,3,Low,2013-12-28,2013-12-27,2014-01-02,2,5,825,0,0,0\r\n10990,christopher tun,christopher,tun,2013-05-28,Male,1992-04-28,23,Less than 25,Caucasian,0,10,2,1,5,52,2013-07-19 11:56:18,2013-08-01 05:43:19,11000491MM30A,,2013-01-06,142,M,arrest case no charge,1,15002327MM10A,(M2),0,2014-11-16,Assault,2014-11-16,2015-03-06,,1,15002327MM10A,(M2),2014-11-16,Assault,Risk of Recidivism,10,High,2013-05-28,Risk of Violence,9,High,2013-05-28,2013-07-19,2013-08-01,5,0,52,0,1,1\r\n10995,raheem smith,raheem,smith,2013-10-20,Male,1995-06-28,20,Less than 25,African-American,0,9,0,0,0,-1,2013-10-19 11:17:15,2013-10-20 08:13:06,13014650CF10A,2013-10-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-20,Risk of Violence,9,High,2013-10-20,2014-04-07,2014-04-27,0,0,169,0,0,0\r\n10996,steven butler,steven,butler,2013-11-23,Male,1992-07-17,23,Less than 25,African-American,0,7,0,0,0,-1,2013-11-22 05:18:27,2013-11-24 02:59:20,13016249CF10A,2013-11-22,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-23,Risk of Violence,5,Medium,2013-11-23,2013-11-22,2013-11-24,0,1,860,0,0,0\r\n10997,malcolm simmons,malcolm,simmons,2014-02-01,Male,1993-03-25,23,Less than 25,African-American,0,3,0,0,0,-1,2014-01-31 07:13:54,2014-02-02 04:03:52,14001422CF10A,2014-01-31,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-01,Risk of Violence,5,Medium,2014-02-01,2014-01-31,2014-02-02,0,1,790,0,0,0\r\n10999,winston gregory,winston,gregory,2014-01-14,Male,1958-10-01,57,Greater than 45,Other,0,1,0,0,0,-1,2014-01-13 05:48:01,2014-01-14 07:49:46,14000581CF10A,2014-01-13,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-14,Risk of Violence,1,Low,2014-01-14,2014-01-13,2014-01-14,0,0,808,0,0,0\r\n11000,farrah jean,farrah,jean,2014-03-09,Female,1982-11-17,33,25 - 45,African-American,0,2,0,0,3,-1,2014-03-08 08:06:02,2014-03-09 12:18:04,14003308CF10A,2014-03-08,,1,M,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-09,Risk of Violence,2,Low,2014-03-09,2014-03-08,2014-03-09,3,0,754,0,0,0\r\n"
  },
  {
    "path": "week-5/compas-scores-two-years.csv",
    "content": "id,name,first,last,compas_screening_date,sex,dob,age,age_cat,race,juv_fel_count,decile_score,juv_misd_count,juv_other_count,priors_count,days_b_screening_arrest,c_jail_in,c_jail_out,c_case_number,c_offense_date,c_arrest_date,c_days_from_compas,c_charge_degree,c_charge_desc,is_recid,r_case_number,r_charge_degree,r_days_from_arrest,r_offense_date,r_charge_desc,r_jail_in,r_jail_out,violent_recid,is_violent_recid,vr_case_number,vr_charge_degree,vr_offense_date,vr_charge_desc,type_of_assessment,decile_score,score_text,screening_date,v_type_of_assessment,v_decile_score,v_score_text,v_screening_date,in_custody,out_custody,priors_count,start,end,event,two_year_recid\r\n1,miguel hernandez,miguel,hernandez,2013-08-14,Male,1947-04-18,69,Greater than 45,Other,0,1,0,0,0,-1,2013-08-13 06:03:42,2013-08-14 05:41:20,13011352CF10A,2013-08-13,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-14,Risk of Violence,1,Low,2013-08-14,2014-07-07,2014-07-14,0,0,327,0,0\r\n3,kevon dixon,kevon,dixon,2013-01-27,Male,1982-01-22,34,25 - 45,African-American,0,3,0,0,0,-1,2013-01-26 03:45:27,2013-02-05 05:36:53,13001275CF10A,2013-01-26,,1,F,Felony Battery w/Prior Convict,1,13009779CF10A,(F3),,2013-07-05,Felony Battery (Dom Strang),,,,1,13009779CF10A,(F3),2013-07-05,Felony Battery (Dom Strang),Risk of Recidivism,3,Low,2013-01-27,Risk of Violence,1,Low,2013-01-27,2013-01-26,2013-02-05,0,9,159,1,1\r\n4,ed philo,ed,philo,2013-04-14,Male,1991-05-14,24,Less than 25,African-American,0,4,0,1,4,-1,2013-04-13 04:58:34,2013-04-14 07:02:04,13005330CF10A,2013-04-13,,1,F,Possession of Cocaine,1,13011511MM10A,(M1),0,2013-06-16,Driving Under The Influence,2013-06-16,2013-06-16,,0,,,,,Risk of Recidivism,4,Low,2013-04-14,Risk of Violence,3,Low,2013-04-14,2013-06-16,2013-06-16,4,0,63,0,1\r\n5,marcu brown,marcu,brown,2013-01-13,Male,1993-01-21,23,Less than 25,African-American,0,8,1,0,1,,,,13000570CF10A,2013-01-12,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-13,Risk of Violence,6,Medium,2013-01-13,,,1,0,1174,0,0\r\n6,bouthy pierrelouis,bouthy,pierrelouis,2013-03-26,Male,1973-01-22,43,25 - 45,Other,0,1,0,0,2,,,,12014130CF10A,,2013-01-09,76,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-26,Risk of Violence,1,Low,2013-03-26,,,2,0,1102,0,0\r\n7,marsha miles,marsha,miles,2013-11-30,Male,1971-08-22,44,25 - 45,Other,0,1,0,0,0,0,2013-11-30 04:50:18,2013-12-01 12:28:56,13022355MM10A,2013-11-30,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-30,Risk of Violence,1,Low,2013-11-30,2013-11-30,2013-12-01,0,1,853,0,0\r\n8,edward riddle,edward,riddle,2014-02-19,Male,1974-07-23,41,25 - 45,Caucasian,0,6,0,0,14,-1,2014-02-18 05:08:24,2014-02-24 12:18:30,14002304CF10A,2014-02-18,,1,F,Possession Burglary Tools,1,14004485CF10A,(F2),0,2014-03-31,Poss of Firearm by Convic Felo,2014-03-31,2014-04-18,,0,,,,,Risk of Recidivism,6,Medium,2014-02-19,Risk of Violence,2,Low,2014-02-19,2014-03-31,2014-04-18,14,5,40,1,1\r\n9,steven stewart,steven,stewart,2013-08-30,Male,1973-02-25,43,25 - 45,Other,0,4,0,0,3,-1,2013-08-29 08:55:23,2013-08-30 08:42:13,13012216CF10A,,2013-08-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-30,Risk of Violence,3,Low,2013-08-30,2014-05-22,2014-06-03,3,0,265,0,0\r\n10,elizabeth thieme,elizabeth,thieme,2014-03-16,Female,1976-06-03,39,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-15 05:35:34,2014-03-18 04:28:46,14004524MM10A,2014-03-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-18,0,2,747,0,0\r\n13,bo bradac,bo,bradac,2013-11-04,Male,1994-06-10,21,Less than 25,Caucasian,0,3,0,0,1,428,2015-01-06 03:55:34,2015-01-07 03:38:44,13000017CF10A,2012-12-31,,308,F,Insurance Fraud,1,15002891MM10A,(M1),0,2015-01-06,Battery,2015-01-06,2015-01-07,,1,15000258CF10A,(F2),2015-01-06,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,3,Low,2013-11-04,Risk of Violence,5,Medium,2013-11-04,2015-01-06,2015-01-07,1,0,428,1,1\r\n14,benjamin franc,benjamin,franc,2013-11-26,Male,1988-06-01,27,25 - 45,Caucasian,0,4,0,0,0,-1,2013-11-25 06:31:06,2013-11-26 08:26:57,13016402CF10A,2013-11-25,,1,F,\"Poss 3,4 MDMA (Ecstasy)\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-26,Risk of Violence,4,Low,2013-11-26,2013-11-25,2013-11-26,0,0,857,0,0\r\n15,ellyaher lanza,ellyaher,lanza,2013-10-03,Male,1992-08-18,23,Less than 25,African-American,0,6,0,0,3,0,2013-10-03 04:07:35,2013-10-07 08:17:30,13018837MM10A,2013-10-03,,0,M,Battery,1,14010414TC40A,(M2),,2014-02-08,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-03,Risk of Violence,4,Low,2013-10-03,2013-10-03,2013-10-07,3,4,128,1,1\r\n16,kortney coleman,kortney,coleman,2013-01-01,Female,1978-08-22,37,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-01 03:28:03,2013-01-02 01:12:19,13000053MM10A,2013-01-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-01,Risk of Violence,1,Low,2013-01-01,2013-01-01,2013-01-02,0,1,1186,0,0\r\n18,jarrod turbe,jarrod,turbe,2013-10-09,Male,1974-12-02,41,25 - 45,African-American,0,4,0,0,0,-1,2013-10-08 11:53:09,2013-10-09 02:16:51,13014121CF10A,2013-10-08,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-09,Risk of Violence,2,Low,2013-10-09,2013-10-08,2013-10-09,0,0,905,0,0\r\n19,craig gilbert,craig,gilbert,2013-10-30,Female,1968-06-14,47,Greater than 45,Caucasian,0,1,0,0,1,-20,2013-10-10 05:12:58,2013-10-24 11:30:00,12000212CF10A,,2012-06-27,490,F,arrest case no charge,1,14007704CF10A,(F3),0,2014-06-03,Grand Theft (Motor Vehicle),2014-06-03,2014-11-19,,0,,,,,Risk of Recidivism,1,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2014-06-03,2014-11-19,1,0,216,1,1\r\n20,samuel seraphin,samuel,seraphin,2014-06-03,Male,1985-03-25,31,25 - 45,African-American,0,3,0,0,7,22,2014-06-25 02:15:57,2014-06-28 05:02:21,14004186CF10A,2014-03-24,,71,F,Felony Driving While Lic Suspd,1,14009921MM10A,(M1),0,2014-06-25,Criminal Mischief>$200<$1000,2014-06-25,2014-06-28,,0,,,,,Risk of Recidivism,3,Low,2014-06-03,Risk of Violence,2,Low,2014-06-03,2014-06-25,2014-06-28,7,0,22,1,1\r\n21,mario hernandez,mario,hernandez,2014-03-24,Male,1979-01-25,37,25 - 45,Hispanic,0,1,0,0,0,0,2014-03-24 03:20:57,2014-03-24 09:09:10,14005100MM10A,2014-03-24,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-24,Risk of Violence,1,Low,2014-03-24,2014-03-24,2014-03-24,0,0,739,0,0\r\n22,darrious davis,darrious,davis,2013-12-22,Male,1990-06-22,25,25 - 45,African-American,0,10,0,0,3,-1,2013-12-21 05:42:02,2013-12-22 09:11:18,13017598CF10A,2013-12-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-12-22,Risk of Violence,9,High,2013-12-22,2015-03-30,2015-05-31,3,0,463,0,0\r\n23,neil heckart,neil,heckart,2013-11-17,Male,1984-12-24,31,25 - 45,Caucasian,0,5,0,0,6,-1,2013-11-16 07:12:12,2013-11-17 08:28:54,13015941CF10A,2013-11-16,,1,F,Driving While License Revoked,1,14010409CF10A,(F3),,2014-07-16,Grand Theft in the 3rd Degree,,,,1,14010409CF10A,(F1),2014-07-16,Kidnapping (Facilitate Felony),Risk of Recidivism,5,Medium,2013-11-17,Risk of Violence,4,Low,2013-11-17,2013-11-16,2013-11-17,6,0,241,1,1\r\n24,michael lux,michael,lux,2014-11-15,Male,1985-01-08,31,25 - 45,Caucasian,0,3,0,0,5,-1,2014-11-14 01:37:05,2014-11-15 04:57:04,14015346CF10A,2014-11-14,,1,F,Possession Of Heroin,1,15005595CF10A,(F3),1,2015-04-27,Possession of Cocaine,2015-04-28,2015-06-01,,0,,,,,Risk of Recidivism,3,Low,2014-11-15,Risk of Violence,2,Low,2014-11-15,2016-02-16,2016-03-18,5,0,163,1,1\r\n25,columbus wilson,columbus,wilson,2014-05-02,Male,1951-06-28,64,Greater than 45,African-American,0,6,0,0,13,-1,2014-05-01 06:49:08,2014-05-02 09:28:02,14006083CF10A,,2014-05-01,1,F,arrest case no charge,1,14006189CF10A,(F2),0,2014-05-03,Poss Cocaine/Intent To Del/Sel,2014-05-03,2014-05-04,,0,,,,,Risk of Recidivism,6,Medium,2014-05-02,Risk of Violence,3,Low,2014-05-02,2014-05-03,2014-05-04,13,0,1,1,1\r\n26,vandivuiet williams,vandivuiet,williams,2013-04-18,Male,1994-11-29,21,Less than 25,African-American,0,9,0,0,1,-1,2013-04-17 01:40:58,2013-04-20 04:19:42,13005492CF10A,2013-04-17,,1,F,Battery on Law Enforc Officer,1,13009581MM10A,(M2),0,2013-05-18,Prowling/Loitering,2013-05-18,2013-05-19,,0,,,,,Risk of Recidivism,9,High,2013-04-18,Risk of Violence,9,High,2013-04-18,2013-05-18,2013-05-19,1,2,30,1,1\r\n27,nelson avalo,nelson,avalo,2014-10-16,Male,1988-08-06,27,25 - 45,Caucasian,0,2,0,0,0,0,2014-10-16 05:43:29,2014-10-16 12:40:42,14013962CF10A,2014-10-16,,0,M,Possession Of Methamphetamine,1,15003574TC30A,(M2),,2015-01-05,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,2,Low,2014-10-16,Risk of Violence,3,Low,2014-10-16,2014-10-16,2014-10-16,0,0,81,1,1\r\n28,janel denicola,janel,denicola,2013-11-22,Female,1995-03-22,21,Less than 25,Caucasian,0,4,0,0,0,-2,2013-11-20 04:12:09,2013-11-21 07:53:21,13016112CF10A,2013-11-20,,2,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-22,Risk of Violence,5,Medium,2013-11-22,2013-11-20,2013-11-21,0,0,861,0,0\r\n30,dominic pabon,dominic,pabon,2013-02-08,Male,1992-01-23,24,Less than 25,Hispanic,0,4,0,0,1,0,2013-02-08 04:50:02,2013-02-09 04:43:17,13001998CF10A,2013-02-07,,1,F,Lewd/Lasc Battery Pers 12+/<16,1,14001650MM40A,(M1),,2014-03-26,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-08,Risk of Violence,5,Medium,2013-02-08,2013-02-08,2013-02-09,1,1,411,1,1\r\n32,russell sottile,russell,sottile,2013-01-25,Male,1973-01-10,43,25 - 45,Caucasian,0,1,0,0,1,-1,2013-01-24 03:43:22,2013-01-25 09:12:10,13003773TC10A,2013-01-24,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-25,Risk of Violence,2,Low,2013-01-25,2013-01-24,2013-01-25,1,0,1162,0,0\r\n33,andre ashley,andre,ashley,2013-05-11,Male,1983-08-24,32,25 - 45,Other,0,3,0,0,0,-1,2013-05-10 08:38:16,2013-05-12 03:33:36,13009088MM10A,2013-05-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-11,Risk of Violence,4,Low,2013-05-11,2013-05-10,2013-05-12,0,1,1056,0,0\r\n37,deandrae counts,deandrae,counts,2013-05-06,Male,1989-02-08,27,25 - 45,African-American,0,3,0,0,8,-1,2013-05-05 09:07:10,2013-05-22 09:08:22,13006419CF10A,2013-05-05,,1,F,Carrying Concealed Firearm,1,14001039TC10A,(M2),,2013-11-06,Driving License Suspended,,,,1,15002479CF10A,(F3),2015-02-23,Felony Battery,Risk of Recidivism,3,Low,2013-05-06,Risk of Violence,3,Low,2013-05-06,2013-08-30,2013-08-31,8,16,116,0,1\r\n38,victoria soltau,victoria,soltau,2013-03-18,Female,1979-09-03,36,25 - 45,Caucasian,0,3,0,0,3,53,2013-05-10 11:15:09,2013-05-11 07:01:59,12018170CF10A,,2012-12-13,95,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-05-10,2013-05-11,3,0,53,0,0\r\n39,najee sapp,najee,sapp,2013-02-20,Male,1989-04-27,26,25 - 45,African-American,0,7,0,1,5,-1,2013-02-19 07:47:55,2013-02-20 06:33:11,13002542CF10A,2013-02-19,,1,F,Pos Cannabis W/Intent Sel/Del,1,14011400MM10A,(M1),0,2014-07-26,Possess Cannabis/20 Grams Or Less,2014-07-26,2014-08-22,,0,,,,,Risk of Recidivism,7,Medium,2013-02-20,Risk of Violence,7,Medium,2013-02-20,2014-03-18,2014-03-26,5,0,391,0,1\r\n40,victor moreno,victor,moreno,2014-10-24,Male,1983-02-03,33,25 - 45,African-American,0,10,0,0,0,0,2014-10-24 12:50:50,2014-12-01 07:49:53,14014284CF10A,2014-10-23,,1,F,Tampering With Physical Evidence,1,15010523CF10A,(F3),,2015-08-15,False Imprisonment,,,,1,15010523CF10A,(M1),2015-08-15,Battery,Risk of Recidivism,10,High,2014-10-24,Risk of Violence,6,Medium,2014-10-24,2015-05-27,2015-06-17,0,38,215,0,1\r\n41,william pirkle,william,pirkle,2013-01-28,Male,1985-10-17,30,25 - 45,Caucasian,0,9,0,0,9,0,2013-01-28 02:28:42,2013-03-13 07:32:52,13001372CF10A,2013-01-28,,0,F,Felony Battery w/Prior Convict,1,13009605CF10A,(F3),0,2013-07-09,Grand Theft (Motor Vehicle),2013-07-09,2013-07-10,,0,,,,,Risk of Recidivism,9,High,2013-01-28,Risk of Violence,10,High,2013-01-28,2013-07-09,2013-07-10,9,44,162,1,1\r\n42,maslin brutus,maslin,brutus,2014-11-15,Male,1984-03-16,32,25 - 45,African-American,0,8,0,0,4,-1,2014-11-14 03:07:02,2014-11-15 04:56:55,14015347CF10A,2014-11-14,,1,F,Att Tamper w/Physical Evidence,1,14015680CF10A,(M1),1,2014-11-21,Resist/Obstruct W/O Violence,2014-11-22,2014-11-24,,0,,,,,Risk of Recidivism,8,High,2014-11-15,Risk of Violence,3,Low,2014-11-15,2014-11-22,2014-11-24,4,0,6,1,1\r\n45,mark friedland,mark,friedland,2013-12-30,Male,1960-07-27,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-29 06:37:02,2013-12-31 10:29:24,13017946CF10A,,2013-12-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-30,Risk of Violence,1,Low,2013-12-30,2013-12-29,2013-12-31,0,1,823,0,0\r\n50,maurice watson,maurice,watson,2013-04-04,Male,1966-07-27,49,Greater than 45,Other,0,3,0,0,7,-1,2013-04-03 04:47:14,2013-04-07 02:54:34,13004763CF10A,2013-04-04,,0,F,Agg Fleeing and Eluding,1,15000545MM20A,(M1),,2015-01-23,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-04,Risk of Violence,2,Low,2013-04-04,2014-08-19,2014-08-20,7,3,502,0,1\r\n51,kurt fowks,kurt,fowks,2013-04-09,Male,1990-02-11,26,25 - 45,Caucasian,0,8,0,2,6,81,2013-06-29 06:05:49,2013-07-11 09:02:10,12022229TC10A,2012-03-23,,382,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-09,Risk of Violence,8,High,2013-04-09,2013-06-29,2013-07-11,6,0,81,0,0\r\n52,michael tritsch,michael,tritsch,2013-12-03,Female,1983-02-02,33,25 - 45,Caucasian,0,5,0,0,4,-1,2013-12-02 01:48:34,2013-12-13 05:25:42,13022426MM10A,2013-12-02,,1,M,Battery,1,14012292CF10A,(F3),57,2014-07-14,Grand Theft in the 3rd Degree,2014-09-09,2014-09-10,,0,,,,,Risk of Recidivism,5,Medium,2013-12-03,Risk of Violence,2,Low,2013-12-03,2013-12-02,2013-12-13,4,10,223,1,1\r\n53,brooks nunez,brooks,nunez,2013-09-15,Male,1991-05-14,24,Less than 25,Caucasian,0,2,0,0,1,0,2013-09-15 03:47:52,2013-09-16 06:50:10,13017557MM10A,2013-09-15,,0,M,Battery,1,14006651CF10A,(F3),0,2014-05-13,Possession of Cannabis,2014-05-13,2014-05-16,,0,,,,,Risk of Recidivism,2,Low,2013-09-15,Risk of Violence,3,Low,2013-09-15,2014-05-13,2014-05-16,1,1,240,1,1\r\n54,walter atwell,walter,atwell,2013-01-11,Male,1981-06-01,34,25 - 45,African-American,2,9,1,3,21,0,2013-01-11 02:19:35,2013-02-13 09:33:11,13000496CF10A,2013-01-11,,0,F,Poss Wep Conv Felon,1,14009119MM10A,(M1),0,2014-06-09,Unlaw Use False Name/Identity,2014-06-09,2014-12-04,,0,,,,,Risk of Recidivism,9,High,2013-01-11,Risk of Violence,6,Medium,2013-01-11,2014-06-09,2014-12-04,21,33,514,1,1\r\n55,darling madrano,darling,madrano,2013-01-16,Male,1987-04-10,29,25 - 45,Caucasian,0,2,0,0,0,0,2013-01-16 12:44:00,2013-01-16 06:49:32,13000997MM10A,2013-01-15,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-16,Risk of Violence,2,Low,2013-01-16,2013-01-16,2013-01-16,0,0,1171,0,0\r\n56,kiante slocum,kiante,slocum,2013-08-24,Female,1994-08-17,21,Less than 25,African-American,0,8,0,0,2,-1,2013-08-23 10:37:03,2013-11-11 04:30:55,13011710CF10A,,2013-08-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-24,Risk of Violence,8,High,2013-08-24,2015-01-30,2015-01-31,2,79,524,0,0\r\n57,porfirio zamot,porfirio,zamot,2013-02-28,Male,1964-11-24,51,Greater than 45,African-American,0,1,0,0,2,-1,2013-02-27 04:44:18,2013-02-28 08:01:39,13004096MM10A,2013-02-27,,1,M,Unlaw Use False Name/Identity,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-28,Risk of Violence,1,Low,2013-02-28,2013-02-27,2013-02-28,2,0,1128,0,0\r\n59,moises miranda,moises,miranda,2014-04-06,Male,1986-06-27,29,25 - 45,Caucasian,0,2,0,0,2,-1,2014-04-05 08:45:01,2014-04-06 01:46:41,14005804MM10A,2014-04-05,,1,M,Viol Injunct Domestic Violence,1,14009508MM10A,(M1),0,2014-06-17,Viol Pretrial Release Dom Viol,2014-06-17,2014-06-18,,0,,,,,Risk of Recidivism,2,Low,2014-04-06,Risk of Violence,2,Low,2014-04-06,2014-06-17,2014-06-18,2,0,72,1,1\r\n61,brenda plummer,brenda,plummer,2013-02-14,Female,1964-11-11,51,Greater than 45,African-American,0,2,0,0,7,-1,2013-02-13 09:29:56,2013-02-15 01:35:37,13002244CF10A,2013-02-13,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-14,Risk of Violence,2,Low,2013-02-14,2014-07-28,2014-08-05,7,1,529,0,0\r\n64,derrick mims,derrick,mims,2014-03-03,Male,1987-03-03,29,25 - 45,African-American,0,7,0,0,0,0,2014-03-03 04:28:58,2014-03-03 09:10:41,14003004CF10A,2014-03-03,,0,F,Defrauding Innkeeper $300/More,1,14007343MM10A,(M1),1,2014-05-03,Viol Injunct Domestic Violence,2014-05-04,2014-06-09,,0,,,,,Risk of Recidivism,7,Medium,2014-03-03,Risk of Violence,2,Low,2014-03-03,2014-09-04,2014-10-02,0,0,61,1,1\r\n66,jeffery dowdy,jeffery,dowdy,2014-03-28,Male,1990-05-28,25,25 - 45,Caucasian,0,10,0,0,9,-1,2014-03-27 10:17:55,2014-04-03 09:27:42,14005313MM10A,2014-03-27,,1,M,Battery,1,14004719CF10A,(F2),0,2014-04-05,Agg Battery Grt/Bod/Harm,2014-04-05,2014-04-14,,1,14004719CF10A,(F2),2014-04-05,Agg Battery Grt/Bod/Harm,Risk of Recidivism,10,High,2014-03-28,Risk of Violence,9,High,2014-03-28,2014-04-05,2014-04-14,9,6,8,1,1\r\n67,eddie jones,eddie,jones,2014-05-19,Male,1981-01-19,35,25 - 45,African-American,1,8,0,4,13,-1,2014-05-18 04:05:09,2014-05-19 01:47:37,14006899CF10A,2014-05-18,,1,F,Uttering a Forged Instrument,1,14008544MO10A,(MO3),0,2014-05-28,DOC/Fighting/Threatening Words,2014-05-28,2014-05-29,,1,14008544MO10A,(MO3),2014-05-28,DOC/Fighting/Threatening Words,Risk of Recidivism,8,High,2014-05-19,Risk of Violence,3,Low,2014-05-19,2014-05-28,2014-05-29,13,0,9,1,1\r\n68,michael harper,michael,harper,2013-08-02,Male,1967-02-19,49,Greater than 45,Caucasian,0,1,0,0,0,0,2013-08-02 04:43:01,2013-08-02 08:31:32,13014548MM10A,2013-08-02,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,2013-08-02,2013-08-02,0,0,973,0,0\r\n69,anthony bennett,anthony,bennett,2014-12-26,Male,1982-02-27,34,25 - 45,African-American,0,3,0,0,4,-59,2014-10-28 04:07:03,2014-12-18 09:54:29,14075628TC20A,2014-10-28,,59,M,Driving License Suspended,1,15051590TC20A,(M2),,2015-09-09,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,3,Low,2014-12-26,Risk of Violence,2,Low,2014-12-26,2014-10-28,2014-12-18,4,0,257,1,1\r\n70,jeffrey pierre,jeffrey,pierre,2013-04-24,Male,1986-10-06,29,25 - 45,African-American,0,4,0,0,0,0,2013-04-24 04:28:24,2013-04-24 08:20:12,13005888CF10A,2013-04-23,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-24,Risk of Violence,3,Low,2013-04-24,2013-04-24,2013-04-24,0,0,1073,0,0\r\n71,joseph martorano,joseph,martorano,2013-06-03,Male,1986-07-30,29,25 - 45,Caucasian,0,2,0,0,1,-24,2013-05-10 05:18:38,2013-05-10 07:43:04,13006726CF10A,2013-05-10,,24,F,Possession of Oxycodone,1,14029973MU10A,(M1),0,2014-08-18,Driving Under The Influence,2014-08-18,2014-08-18,,0,,,,,Risk of Recidivism,2,Low,2013-06-03,Risk of Violence,2,Low,2013-06-03,2014-08-18,2014-08-18,1,0,441,0,1\r\n72,shinell baxterskeffrey,shinell,baxterskeffrey,2013-11-18,Female,1987-09-29,28,25 - 45,Other,0,2,0,0,0,-1,2013-11-17 09:43:17,2013-11-18 08:03:35,13015965CF10A,2013-11-17,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-18,Risk of Violence,2,Low,2013-11-18,2013-11-17,2013-11-18,0,0,865,0,0\r\n75,elliott knauff,elliott,knauff,2013-05-02,Male,1967-05-01,48,Greater than 45,Caucasian,0,6,0,0,20,302,2014-02-28 11:19:21,2014-03-11 02:46:41,11010574CF10A,,2011-10-18,562,F,arrest case no charge,1,14000740MM20A,(M2),,2014-02-01,Trespass Struct/Conveyance,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-02,Risk of Violence,4,Low,2013-05-02,2014-09-09,2020-01-01,20,0,275,1,1\r\n77,graciela quevedo,graciela,quevedo,2014-01-22,Female,1952-08-15,63,Greater than 45,Hispanic,0,1,0,0,1,-219,2013-06-17 04:04:07,2013-06-25 08:31:09,13007023CF10A,,2013-06-17,219,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-22,Risk of Violence,1,Low,2014-01-22,2013-06-17,2013-06-25,1,0,800,0,0\r\n79,mackenson nelson,mackenson,nelson,2013-03-18,Male,1984-09-24,31,25 - 45,African-American,0,5,0,1,15,-1,2013-03-17 09:02:33,2013-07-31 08:23:26,13003864CF10A,2013-03-17,,1,F,Attempt Armed Burglary Dwell,1,16006319TC10A,(M2),,2016-02-28,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-18,Risk of Violence,7,Medium,2013-03-18,2013-03-17,2013-07-31,15,135,1077,1,0\r\n80,trenton goldston,trenton,goldston,2013-09-18,Male,1991-10-07,24,Less than 25,African-American,0,4,0,0,2,-1,2013-09-17 07:19:20,2013-09-19 04:16:03,13013114CF10A,2013-09-17,,1,F,Poss Tetrahydrocannabinols,1,15004413MM10A,(M1),1,2015-04-16,Possess Cannabis/20 Grams Or Less,2015-04-17,2015-04-17,,0,,,,,Risk of Recidivism,4,Low,2013-09-18,Risk of Violence,4,Low,2013-09-18,2013-09-17,2013-09-19,2,1,575,1,1\r\n83,jonny romerobarrientos,jonny,romerobarrientos,2013-01-20,Male,1986-01-11,30,25 - 45,Hispanic,0,7,0,0,0,0,2013-01-20 02:50:51,2013-02-12 09:16:13,13001388MM10A,2013-01-20,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-20,Risk of Violence,3,Low,2013-01-20,2013-01-20,2013-02-12,0,23,1167,0,0\r\n84,rodney daniels,rodney,daniels,2013-08-27,Male,1967-01-23,49,Greater than 45,African-American,0,1,0,0,4,-1,2013-08-26 09:16:39,2013-08-27 06:57:19,13016325MM10A,2013-08-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,2013-08-26,2013-08-27,4,0,948,0,0\r\n85,walter olson,walter,olson,2013-05-28,Male,1962-12-07,53,Greater than 45,Caucasian,0,5,0,0,8,-13,2013-05-15 08:36:10,2013-05-28 10:06:35,13006695CF10A,,2013-05-15,13,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-28,Risk of Violence,2,Low,2013-05-28,2013-05-15,2013-05-28,8,0,1039,0,0\r\n87,ronald singletary,ronald,singletary,2013-02-11,Male,1980-06-04,35,25 - 45,African-American,0,3,0,0,5,-1,2013-02-10 07:44:42,2013-02-11 07:04:44,13002065CF10A,2013-02-10,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-11,Risk of Violence,2,Low,2013-02-11,2013-02-10,2013-02-11,5,0,1145,0,0\r\n88,erwin mallard,erwin,mallard,2013-06-10,Male,1953-04-09,63,Greater than 45,African-American,0,7,0,0,10,-38,2013-05-03 09:19:41,2013-06-08 05:22:38,10027101MM10A,2010-12-17,,906,M,Possess Drug Paraphernalia,1,13016843MM10A,(M2),,2013-07-24,Petit Theft,,,,0,,,,,Risk of Recidivism,7,Medium,2013-06-10,Risk of Violence,5,Medium,2013-06-10,2013-05-03,2013-06-08,10,0,44,1,1\r\n90,brett smith,brett,smith,2014-08-30,Male,1989-02-26,27,25 - 45,African-American,1,10,1,2,15,-1,2014-08-29 04:58:13,2014-08-30 08:38:48,14011789CF10A,2014-08-29,,1,F,Driving While License Revoked,1,14014938MM10A,(M1),0,2014-10-13,Possess Cannabis/20 Grams Or Less,2014-10-13,2014-10-18,,0,,,,,Risk of Recidivism,10,High,2014-08-30,Risk of Violence,9,High,2014-08-30,2014-10-13,2014-10-18,15,0,44,1,1\r\n91,robert merlo,robert,merlo,2013-02-04,Male,1977-09-12,38,25 - 45,Caucasian,0,2,0,0,4,-1,2013-02-03 11:59:25,2013-02-05 11:05:50,13002432MM10A,2013-02-03,,1,M,Battery,1,13067394TC20A,(M2),,2013-11-03,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-04,Risk of Violence,2,Low,2013-02-04,2013-02-03,2013-02-05,4,1,272,1,1\r\n93,omar wilson,omar,wilson,2013-11-16,Male,1993-06-13,22,Less than 25,African-American,0,4,0,1,1,-1,2013-11-15 06:56:49,2013-11-16 07:51:56,13015917CF10A,2013-11-15,,1,F,Poss Firearm W/Altered ID#,1,15000014MM40A,(M1),,2014-11-22,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-16,Risk of Violence,6,Medium,2013-11-16,2013-11-15,2013-11-16,1,0,371,1,1\r\n95,daquan davis,daquan,davis,2013-03-14,Male,1994-04-11,22,Less than 25,African-American,0,10,1,2,2,70,2013-05-23 01:31:00,2013-09-24 06:24:21,12017010CF10A,2012-11-20,,114,F,Sell Conterfeit Cont Substance,1,15009631MM10A,(M2),0,2015-09-10,Susp Drivers Lic 1st Offense,2015-09-10,2015-12-08,,0,,,,,Risk of Recidivism,10,High,2013-03-14,Risk of Violence,9,High,2013-03-14,2013-05-23,2013-09-24,2,0,70,0,1\r\n96,bradley quimbley,bradley,quimbley,2013-01-26,Male,1986-05-11,29,25 - 45,African-American,0,9,0,0,4,-1,2013-01-25 10:34:01,2013-02-13 09:36:41,13001227CF10A,,2013-01-25,1,F,arrest case no charge,1,13011976CF10A,(F3),,2013-08-23,Aggrav Stalking After Injunctn,,,,0,,,,,Risk of Recidivism,9,High,2013-01-26,Risk of Violence,5,Medium,2013-01-26,2013-04-05,2013-07-12,4,18,69,0,1\r\n97,victor cabreramacias,victor,cabreramacias,2013-01-08,Male,1954-01-26,62,Greater than 45,Hispanic,0,1,0,0,0,0,2013-01-08 12:33:09,2013-01-08 09:41:28,13001092TC10A,2013-01-07,,1,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-08,Risk of Violence,1,Low,2013-01-08,2013-01-08,2013-01-08,0,0,1179,0,0\r\n98,daniel barnard,daniel,barnard,2014-04-30,Male,1988-07-05,27,25 - 45,African-American,0,6,1,0,6,0,2014-04-30 02:11:49,2014-05-30 04:59:14,14006018CF10A,2014-04-30,,0,F,Aggravated Battery / Pregnant,1,14015039CF10A,(F3),0,2014-11-09,Possession of Cocaine,2014-11-09,2014-11-10,,0,,,,,Risk of Recidivism,6,Medium,2014-04-30,Risk of Violence,3,Low,2014-04-30,2014-11-09,2014-11-10,6,30,193,1,1\r\n99,hector hollis,hector,hollis,2014-03-09,Male,1983-02-19,33,25 - 45,Other,0,1,0,0,0,-1,2014-03-08 01:34:03,2014-03-09 10:21:45,14004045MM10A,2014-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-09,Risk of Violence,1,Low,2014-03-09,2014-03-08,2014-03-09,0,0,754,0,0\r\n100,merlita hanson,merlita,hanson,2013-09-28,Female,1960-01-03,56,Greater than 45,African-American,0,1,0,0,0,0,2013-09-28 02:52:18,2013-10-01 07:39:52,13018452MM10A,2013-09-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-28,Risk of Violence,1,Low,2013-09-28,2013-09-28,2013-10-01,0,3,916,0,0\r\n101,pedro rodriguez,pedro,rodriguez,2013-01-13,Male,1970-05-03,45,Greater than 45,Hispanic,0,1,0,0,6,-1,2013-01-12 05:43:00,2013-09-11 04:51:56,13000734CF10A,2013-01-12,,1,F,Possession of Cocaine,1,14005041TC10A,(M2),,2013-12-02,Operating W/O Valid License,,,,1,14001759MM10A,(M1),2014-02-01,Battery,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-09-11,6,241,323,1,1\r\n102,andres bayas,andres,bayas,2013-05-25,Male,1993-10-16,22,Less than 25,Hispanic,0,4,0,0,1,-1,2013-05-24 06:06:17,2013-05-25 07:28:17,13007454CF10A,2013-05-24,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-25,Risk of Violence,6,Medium,2013-05-25,2013-05-24,2013-05-25,1,0,1042,0,0\r\n105,alfonzo morgan,alfonzo,morgan,2013-03-07,Male,1976-11-11,39,25 - 45,African-American,0,4,0,0,1,-1,2013-03-06 11:23:53,2013-03-11 09:00:57,04018615MM10A,,2013-03-06,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-07,Risk of Violence,2,Low,2013-03-07,2013-03-06,2013-03-11,1,4,1121,0,0\r\n107,kennol placil,kennol,placil,2013-01-07,Male,1986-10-24,29,25 - 45,African-American,0,6,0,0,5,0,2013-01-07 02:12:47,2013-01-08 05:19:42,13000275CF10A,2013-01-07,,0,F,False Name By Person Arrest,1,13038900TC10A,(M2),0,2013-09-17,Operating W/O Valid License,2013-09-17,2013-09-18,,0,,,,,Risk of Recidivism,6,Medium,2013-01-07,Risk of Violence,3,Low,2013-01-07,2013-09-17,2013-09-18,5,1,253,1,1\r\n108,anthony smith,anthony,smith,2014-12-03,Male,1989-03-27,27,25 - 45,Caucasian,0,6,0,1,1,-1,2014-12-02 03:23:28,2014-12-16 09:24:24,14014791CF10A,,2014-12-02,1,F,arrest case no charge,1,16002597CF10A,(F3),,2015-11-09,Pos Cannabis W/Intent Sel/Del,,,,0,,,,,Risk of Recidivism,6,Medium,2014-12-03,Risk of Violence,3,Low,2014-12-03,2015-09-02,2015-10-30,1,13,273,0,1\r\n111,phylipe raphael,phylipe,raphael,2013-07-17,Male,1976-03-27,40,25 - 45,African-American,0,2,0,0,2,-15,2013-07-02 03:42:01,2013-07-05 08:13:10,13007958CF10A,,2013-07-02,15,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-17,Risk of Violence,1,Low,2013-07-17,2013-07-02,2013-07-05,2,0,989,0,0\r\n113,troy smith,troy,smith,2013-08-25,Male,1993-09-21,22,Less than 25,African-American,0,3,0,0,1,0,2013-08-25 12:07:09,2013-09-11 08:04:08,13016227MM10A,2013-08-24,,1,M,Battery,1,14068249TC40A,(M2),,2014-10-06,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-25,Risk of Violence,3,Low,2013-08-25,2014-05-08,2014-05-29,1,17,256,0,1\r\n114,james wickman,james,wickman,2013-02-19,Male,1993-10-12,22,Less than 25,Caucasian,0,8,0,0,0,-1,2013-02-18 12:24:07,2013-04-17 10:32:09,13002486CF10A,2013-02-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-19,Risk of Violence,6,Medium,2013-02-19,2013-05-03,2013-05-24,0,57,73,0,0\r\n115,pentara casaberry,pentara,casaberry,2013-11-08,Female,1989-09-01,26,25 - 45,African-American,0,4,0,0,1,-1,2013-11-07 09:01:45,2013-11-09 09:07:50,13015554CF10A,2013-11-07,,1,F,Poss Cocaine/Intent To Del/Sel,1,13016053CF10A,(M1),0,2013-11-19,Resist/Obstruct W/O Violence,2013-11-19,2014-01-16,,1,13016053CF10A,(F3),2013-11-19,Child Abuse,Risk of Recidivism,4,Low,2013-11-08,Risk of Violence,3,Low,2013-11-08,2013-11-19,2014-01-16,1,1,11,1,1\r\n116,david meadows,david,meadows,2014-07-21,Male,1988-10-11,27,25 - 45,Caucasian,0,7,0,0,1,-43,2014-06-08 01:02:27,2014-06-27 09:37:41,14007902CF10A,2014-06-07,,44,F,Burglary Dwelling Assault/Batt,1,15007890CF10A,(M1),24,2015-04-05,Felony Battery w/Prior Convict,2015-04-29,2015-05-17,,1,15007890CF10A,(M1),2015-04-05,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2014-07-21,Risk of Violence,8,High,2014-07-21,2015-06-29,2015-11-13,1,0,258,1,1\r\n119,shawn thropes,shawn,thropes,2013-03-04,Male,1983-05-02,32,25 - 45,African-American,0,2,0,0,0,-1,2013-03-03 03:33:48,2013-03-04 07:08:59,13003199CF10A,2013-03-03,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-03-03,2013-03-04,0,0,1124,0,0\r\n120,demetrious ellis,demetrious,ellis,2013-02-28,Male,1974-06-28,41,25 - 45,African-American,0,2,0,0,1,-1,2013-02-27 09:49:07,2013-03-01 01:59:16,95026071MM10A,,1998-12-19,5185,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-28,Risk of Violence,2,Low,2013-02-28,2013-02-27,2013-03-01,1,1,1128,0,0\r\n122,murvin thomas,murvin,thomas,2013-02-21,Male,1986-03-29,30,25 - 45,African-American,0,10,0,0,8,-1,2013-02-20 02:14:37,2013-02-21 07:47:06,13003606MM10A,2013-02-20,,1,M,Possess Cannabis/20 Grams Or Less,1,13005516CF10A,(M1),0,2013-04-17,Possess Cannabis/20 Grams Or Less,2013-04-17,2013-04-18,,1,15006514CF10A,(F3),2015-04-24,Battery on a Person Over 65,Risk of Recidivism,10,High,2013-02-21,Risk of Violence,9,High,2013-02-21,2013-04-17,2013-04-18,8,0,55,1,1\r\n127,desmond lee,desmond,lee,2014-08-07,Male,1965-10-08,50,Greater than 45,Other,0,1,0,0,0,-1,2014-08-06 12:43:24,2014-08-07 08:29:46,14010718CF10A,,2014-08-06,1,F,arrest case no charge,1,15012266TC20A,(M2),135,2015-02-05,Susp Drivers Lic 1st Offense,2015-06-20,2015-06-22,,0,,,,,Risk of Recidivism,1,Low,2014-08-07,Risk of Violence,2,Low,2014-08-07,2015-06-20,2015-06-22,0,0,182,1,1\r\n128,kambrel tarver,kambrel,tarver,2013-04-20,Male,1991-01-30,25,25 - 45,African-American,1,10,6,1,14,-1,2013-04-19 02:20:32,2013-04-26 05:45:46,11008067CF10A,,2013-04-19,1,F,arrest case no charge,1,13015805MM10A,(M1),0,2013-07-29,Resist/Obstruct W/O Violence,2013-07-29,2013-08-17,,1,16003005CF10A,(M1),2016-03-09,Battery,Risk of Recidivism,10,High,2013-04-20,Risk of Violence,10,High,2013-04-20,2013-07-29,2013-08-17,14,6,100,1,1\r\n130,juster philippe,juster,philippe,2013-10-03,Male,1995-05-06,20,Less than 25,Other,0,5,0,0,0,-1,2013-10-02 05:50:22,2013-10-03 08:15:24,13013834CF10A,2013-10-02,,1,F,Tampering With Physical Evidence,1,14001348CF10A,(F2),0,2014-01-30,Robbery / No Weapon,2014-01-30,2015-03-29,,1,14001348CF10A,(F2),2014-01-30,Agg Battery Grt/Bod/Harm,Risk of Recidivism,5,Medium,2013-10-03,Risk of Violence,8,High,2013-10-03,2014-01-30,2015-03-29,0,0,119,1,1\r\n131,khalil pass,khalil,pass,2014-01-16,Male,1994-01-26,22,Less than 25,African-American,1,9,0,0,2,0,2014-01-16 02:39:46,2014-02-15 04:39:31,14000722CF10A,2014-01-16,,0,F,Attempted Burg/struct/unocc,1,14010658MM10A,(M1),1,2014-07-10,Resist/Obstruct W/O Violence,2014-07-11,2014-07-11,,0,,,,,Risk of Recidivism,9,High,2014-01-16,Risk of Violence,10,High,2014-01-16,2014-01-16,2014-02-15,2,30,175,1,1\r\n132,israel doyle,israel,doyle,2014-03-17,Male,1992-12-07,23,Less than 25,African-American,0,7,0,1,2,137,2014-08-01 08:35:46,2014-08-02 01:49:31,13019996MM10A,,2013-09-06,192,M,arrest case no charge,1,14075171TC40A,(M2),,2014-09-15,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-17,Risk of Violence,8,High,2014-03-17,2014-08-01,2014-08-02,2,0,137,0,1\r\n136,terri hamilton,terri,hamilton,2013-03-30,Female,1980-09-16,35,25 - 45,African-American,0,2,0,0,1,-1,2013-03-29 06:55:39,2013-03-30 03:12:37,13000467TC10A,,2013-03-29,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-30,Risk of Violence,1,Low,2013-03-30,2013-03-29,2013-03-30,1,0,1098,0,0\r\n137,clarence bonner,clarence,bonner,2014-04-29,Male,1979-11-12,36,25 - 45,African-American,0,7,0,0,9,0,2014-04-29 12:24:22,2014-05-03 04:26:44,14005910CF10A,2014-04-28,,1,F,Deliver Cocaine,1,14008440MM10A,(M1),1,2014-05-26,Possess Cannabis/20 Grams Or Less,2014-05-27,2014-05-27,,0,,,,,Risk of Recidivism,7,Medium,2014-04-29,Risk of Violence,6,Medium,2014-04-29,2014-04-29,2014-05-03,9,4,27,1,1\r\n138,edwin carpenter,edwin,carpenter,2013-01-12,Male,1989-05-29,26,25 - 45,Caucasian,0,8,0,0,7,0,2013-01-12 04:53:07,2013-01-12 07:28:51,13000564CF10A,2013-01-11,,1,F,Possession Burglary Tools,1,14001406MM10A,(M1),1,2014-01-24,Resist/Obstruct W/O Violence,2014-01-25,2014-01-26,,0,,,,,Risk of Recidivism,8,High,2013-01-12,Risk of Violence,4,Low,2013-01-12,2014-03-27,2014-04-06,7,0,377,1,1\r\n139,kemar rose,kemar,rose,2013-04-20,Male,1994-09-06,21,Less than 25,Other,0,6,0,0,1,0,2013-04-20 12:30:29,2013-04-24 10:36:19,13005641CF10A,2013-04-19,,1,F,Grand Theft in the 3rd Degree,1,13017924CF10A,(M1),0,2013-12-29,Possess Drug Paraphernalia,2013-12-29,2014-04-06,,0,,,,,Risk of Recidivism,6,Medium,2013-04-20,Risk of Violence,6,Medium,2013-04-20,2013-12-29,2014-04-06,1,4,253,1,1\r\n142,richard veach,richard,veach,2014-12-13,Male,1991-01-20,25,25 - 45,Caucasian,0,8,0,0,9,-1,2014-12-12 07:27:40,2014-12-13 07:23:49,14016502CF10A,2014-12-12,,1,F,Pos Cannabis W/Intent Sel/Del,1,15028085TC20A,(M2),,2015-05-07,Driving License Suspended,,,,1,15006549MM10A,(M1),2015-06-17,Battery,Risk of Recidivism,8,High,2014-12-13,Risk of Violence,9,High,2014-12-13,2015-07-17,2015-07-19,9,0,145,1,1\r\n143,jimmie moss,jimmie,moss,2013-01-04,Male,1944-05-13,71,Greater than 45,African-American,0,7,0,0,12,,,,10023009MM10A,2010-10-23,,804,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-04,Risk of Violence,3,Low,2013-01-04,,,12,0,1183,0,0\r\n145,jasmin negron,jasmin,negron,2013-11-14,Female,1995-09-19,20,Less than 25,Caucasian,0,7,0,0,0,-1,2013-11-13 11:21:14,2013-11-14 01:36:21,13015797CF10A,2013-11-13,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-14,Risk of Violence,8,High,2013-11-14,2013-11-13,2013-11-14,0,0,869,0,0\r\n146,michael kohler,michael,kohler,2013-02-13,Male,1976-08-10,39,25 - 45,Caucasian,0,1,0,0,2,-2,2013-02-11 12:50:21,2013-02-11 07:33:17,13002060CF10A,2013-02-10,,3,F,Possession Of Alprazolam,1,13005488CF10A,(F3),0,2013-04-17,Possession of Hydromorphone,2013-04-17,2013-05-09,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2013-04-17,2013-05-09,2,0,63,1,1\r\n147,phillip bishop,phillip,bishop,2013-11-06,Male,1949-05-04,66,Greater than 45,Caucasian,0,1,0,0,3,-64,2013-09-03 04:44:29,2013-10-03 12:15:17,13012424CF10A,2013-09-03,,64,F,Flee/Elude LEO-Agg Flee Unsafe,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-06,Risk of Violence,1,Low,2013-11-06,2013-09-03,2013-10-03,3,0,877,0,0\r\n148,deanna murphy,deanna,murphy,2013-04-15,Female,1961-11-10,54,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-15 01:07:24,2013-04-15 07:56:24,13007296MM10A,2013-04-14,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-15,Risk of Violence,1,Low,2013-04-15,2013-04-15,2013-04-15,0,0,1082,0,0\r\n150,sharon muriente,sharon,muriente,2013-08-20,Female,1971-05-12,44,25 - 45,Hispanic,0,1,0,0,0,-2,2013-08-18 03:23:05,2013-08-19 06:27:00,13015636MM10A,2013-08-18,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-18,2013-08-19,0,0,955,0,0\r\n151,willie morris,willie,morris,2014-11-14,Male,1996-08-15,19,Less than 25,African-American,0,4,0,0,1,-10,2014-11-04 07:39:38,2014-11-13 10:02:51,14015929MM10A,2014-11-04,,10,M,Battery,1,15002656CF10A,(M1),0,2015-02-26,Viol Injunction Protect Dom Violence,2015-02-26,2015-03-04,,1,15002656CF10A,(F3),2015-02-26,Battery on Law Enforc Officer,Risk of Recidivism,4,Low,2014-11-14,Risk of Violence,7,Medium,2014-11-14,2015-02-26,2015-03-04,1,0,104,1,1\r\n152,brandon minter,brandon,minter,2014-02-28,Male,1991-11-27,24,Less than 25,African-American,0,2,0,0,1,-137,2013-10-14 04:11:17,2014-02-28 11:20:14,13007744CF10A,,2013-10-14,137,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-28,Risk of Violence,3,Low,2014-02-28,2015-07-16,2015-07-16,1,0,503,0,0\r\n153,matthew grant,matthew,grant,2013-09-09,Male,1985-07-24,30,25 - 45,African-American,0,2,0,0,1,-1,2013-09-08 09:39:18,2013-09-09 08:03:09,13012705CF10A,2013-09-08,,1,F,Fail To Redeliv Hire/Leas Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-09,Risk of Violence,2,Low,2013-09-09,2013-09-08,2013-09-09,1,0,935,0,0\r\n154,sandra quinones,sandra,quinones,2013-09-05,Female,1977-04-14,39,25 - 45,Caucasian,0,1,0,0,0,-1,2013-09-04 11:36:38,2013-09-06 04:07:01,13012513CF10A,2013-09-04,,1,F,Aggravated Assault W/Dead Weap,1,13020368MM10A,(M1),1,2013-10-27,Battery,2013-10-28,2013-10-28,,1,13020368MM10A,(M1),2013-10-27,Battery,Risk of Recidivism,1,Low,2013-09-05,Risk of Violence,1,Low,2013-09-05,2013-09-04,2013-09-06,0,1,52,1,1\r\n156,vincent carbone,vincent,carbone,2013-04-11,Male,1991-10-02,24,Less than 25,Caucasian,0,6,1,2,8,-1,2013-04-10 05:59:23,2013-04-22 10:32:05,13005383CF10A,2013-04-11,,0,F,False Ownership Info/Pawn Item,1,13006642CF10A,(F2),1,2013-05-08,Poss Wep Conv Felon,2013-05-09,2013-05-09,,0,,,,,Risk of Recidivism,6,Medium,2013-04-11,Risk of Violence,6,Medium,2013-04-11,2013-04-10,2013-04-22,8,11,27,1,1\r\n157,silvio paulino,silvio,paulino,2013-08-29,Male,1985-10-24,30,25 - 45,Caucasian,0,4,0,0,0,-1,2013-08-28 11:22:24,2013-09-03 10:40:45,13012146CF10A,2013-08-28,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-29,Risk of Violence,2,Low,2013-08-29,2015-01-08,2015-02-04,0,5,497,0,0\r\n158,john white,john,white,2014-02-21,Male,1984-06-08,31,25 - 45,Caucasian,0,5,0,0,0,-1,2014-02-20 09:46:47,2014-03-31 09:04:43,14003013MM10A,2014-02-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-21,Risk of Violence,2,Low,2014-02-21,2014-02-20,2014-03-31,0,38,770,0,0\r\n159,april mincey,april,mincey,2013-02-26,Female,1976-09-19,39,25 - 45,Caucasian,0,4,0,0,1,-1,2013-02-25 07:42:47,2013-06-12 04:31:04,13002849CF10A,2013-02-25,,1,F,Possession of Morphine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-26,Risk of Violence,3,Low,2013-02-26,2014-03-25,2014-03-30,1,106,392,0,0\r\n160,jimmy bell,jimmy,bell,2014-12-04,Male,1957-04-02,59,Greater than 45,African-American,0,9,0,0,14,178,2015-05-31 07:39:18,2015-09-18 01:21:56,12008029CF10A,,2014-03-14,265,F,arrest case no charge,1,15007122CF10A,(F3),0,2015-05-31,Aggravated Assault W/Dead Weap,2015-05-31,2015-09-18,,1,15007122CF10A,(F3),2015-05-31,Aggravated Assault W/Dead Weap,Risk of Recidivism,9,High,2014-12-04,Risk of Violence,4,Low,2014-12-04,2015-05-31,2015-09-18,14,0,178,1,1\r\n163,andrew chu,andrew,chu,2013-08-15,Male,1973-01-15,43,25 - 45,Caucasian,0,1,0,0,1,-30,2013-07-16 06:41:37,2013-07-17 07:35:00,13009961CF10A,2013-07-16,,30,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-15,Risk of Violence,1,Low,2013-08-15,2013-07-16,2013-07-17,1,0,960,0,0\r\n166,brandon wilson,brandon,wilson,2013-03-02,Male,1994-06-15,21,Less than 25,African-American,0,9,0,0,3,-1,2013-03-01 01:43:35,2013-03-07 08:20:12,13003093CF10A,2013-03-01,,1,F,Grand Theft in the 3rd Degree,1,13004351CF10A,(M1),0,2013-03-26,Resist/Obstruct W/O Violence,2013-03-26,2014-01-22,,0,,,,,Risk of Recidivism,9,High,2013-03-02,Risk of Violence,6,Medium,2013-03-02,2013-03-26,2014-01-22,3,5,24,1,1\r\n169,edson howlett,edson,howlett,2013-01-16,Male,1977-11-14,38,25 - 45,Caucasian,0,4,0,0,5,-1,2013-01-15 08:16:11,2013-01-18 04:32:15,13001000MM10A,2013-01-15,,1,M,Possess Cannabis/20 Grams Or Less,1,13003609CF10A,(F3),0,2013-03-12,Possession of Cannabis,2013-03-12,2013-03-13,,0,,,,,Risk of Recidivism,4,Low,2013-01-16,Risk of Violence,3,Low,2013-01-16,2013-03-12,2013-03-13,5,2,55,1,1\r\n171,joseph montalvomolina,joseph,montalvomolina,2013-02-15,Male,1982-02-19,34,25 - 45,Caucasian,0,5,0,0,0,0,2013-02-15 10:54:22,2013-03-02 09:04:47,13002550CF10A,2013-02-15,,0,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-15,Risk of Violence,5,Medium,2013-02-15,2014-05-02,2014-07-10,0,15,441,0,0\r\n173,harold dor,harold,dor,2013-11-17,Male,1982-06-03,33,25 - 45,African-American,0,5,0,0,5,0,2013-11-17 01:23:30,2013-11-17 08:15:06,13015967CF10A,2013-11-16,,1,F,Poss Contr Subst W/o Prescript,1,14001731MM30A,(M1),,2014-10-28,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-17,Risk of Violence,2,Low,2013-11-17,2013-11-17,2013-11-17,5,0,345,1,1\r\n174,gonzales joseph,gonzales,joseph,2013-11-18,Male,1978-09-27,37,25 - 45,African-American,0,2,0,0,3,0,2013-11-18 03:46:24,2013-11-19 10:18:36,13016018CF10A,2013-11-18,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-18,Risk of Violence,1,Low,2013-11-18,2014-02-28,2014-03-07,3,1,102,0,0\r\n175,anthony sanmarco,anthony,sanmarco,2013-03-16,Male,1974-03-25,42,25 - 45,Caucasian,0,2,0,0,1,0,2013-03-16 03:53:03,2013-03-17 01:43:20,13003844CF10A,2013-03-15,,1,F,Aggrav Stalking After Injunctn,1,13003916CF10A,(F3),1,2013-03-17,Aggrav Stalking After Injunctn,2013-03-18,2013-04-23,,0,,,,,Risk of Recidivism,2,Low,2013-03-16,Risk of Violence,2,Low,2013-03-16,2013-03-16,2013-03-17,1,1,2,1,1\r\n176,coy daniels,coy,daniels,2013-09-06,Male,1974-12-03,41,25 - 45,African-American,0,9,1,0,10,0,2013-09-06 04:25:05,2014-03-01 04:39:46,13012611CF10A,2013-09-06,,0,F,Possession of Cocaine,1,14009556MM10A,(M1),0,2014-06-18,Resist/Obstruct W/O Violence,2014-06-18,2014-07-29,,0,,,,,Risk of Recidivism,9,High,2013-09-06,Risk of Violence,7,Medium,2013-09-06,2014-06-18,2014-07-29,10,176,285,1,1\r\n177,zuberi floyd,zuberi,floyd,2013-11-13,Male,1993-06-27,22,Less than 25,African-American,0,4,0,0,0,-1,2013-11-12 03:57:04,2013-11-13 01:01:29,13015737CF10A,2013-11-12,,1,F,Uttering a Forged Instrument,1,15003539CF10A,(F3),362,2014-12-12,Uttering a Forged Instrument,2015-12-09,2015-12-09,,0,,,,,Risk of Recidivism,4,Low,2013-11-13,Risk of Violence,7,Medium,2013-11-13,2015-12-09,2015-12-09,0,0,394,1,1\r\n178,ramon wilkerson,ramon,wilkerson,2014-01-11,Male,1982-05-17,33,25 - 45,African-American,0,8,12,2,28,-1,2014-01-10 08:06:40,2014-01-12 04:07:52,14000463CF10A,2014-01-10,,1,F,Driving While License Revoked,1,14013147TC10A,(M2),0,2014-04-04,Operating W/O Valid License,2014-04-04,2014-04-05,,0,,,,,Risk of Recidivism,8,High,2014-01-11,Risk of Violence,5,Medium,2014-01-11,2014-04-04,2014-04-05,28,1,83,1,1\r\n180,lee wright,lee,wright,2013-10-14,Male,1984-08-19,31,25 - 45,African-American,0,7,0,0,1,-1,2013-10-13 03:47:49,2013-10-14 08:18:17,13019413MM10A,2013-10-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-14,Risk of Violence,8,High,2013-10-14,2013-10-13,2013-10-14,1,0,900,0,0\r\n182,margretta martin,margretta,martin,2013-10-29,Female,1985-08-27,30,25 - 45,Other,0,2,0,0,1,-1,2013-10-28 07:07:32,2013-10-29 09:49:38,13015030CF10A,2013-10-28,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-29,Risk of Violence,2,Low,2013-10-29,2014-02-03,2014-02-11,1,0,97,0,0\r\n183,robert hauselt,robert,hauselt,2013-02-26,Male,1985-03-18,31,25 - 45,Caucasian,0,10,0,0,13,-1,2013-02-25 06:43:30,2014-06-11 12:57:06,13003002CF10A,,2013-02-26,0,F,arrest case no charge,1,13005853CF10A,(F2),,2013-04-22,Burglary Unoccupied Dwelling,,,,1,14015876MM10A,(M1),2014-11-03,Battery,Risk of Recidivism,10,High,2013-02-26,Risk of Violence,7,Medium,2013-02-26,2013-02-25,2014-06-11,13,0,55,1,1\r\n184,ivory pitts,ivory,pitts,2014-11-15,Male,1988-11-16,27,25 - 45,African-American,0,9,0,0,3,-1,2014-11-14 12:10:00,2014-11-15 11:29:02,14015327CF10A,2014-11-14,,1,F,Possession of Cocaine,1,15009423CF10A,(F3),,2015-07-22,Felony Driving While Lic Suspd,,,,0,,,,,Risk of Recidivism,9,High,2014-11-15,Risk of Violence,4,Low,2014-11-15,2014-11-14,2014-11-15,3,0,249,1,1\r\n187,isaac johnson,isaac,johnson,2013-12-06,Male,1960-02-11,56,Greater than 45,African-American,0,9,0,0,8,67,2014-02-11 09:01:26,2014-05-02 08:04:43,11014376CF10A,,2013-09-18,79,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-12-06,Risk of Violence,3,Low,2013-12-06,2014-02-11,2014-05-02,8,0,67,0,0\r\n189,clifford matthews,clifford,matthews,2013-07-29,Male,1963-07-23,52,Greater than 45,Caucasian,0,9,0,0,3,-2,2013-07-27 10:50:36,2013-07-28 02:01:45,13014255MM10A,2013-07-27,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-07-29,Risk of Violence,6,Medium,2013-07-29,2013-07-27,2013-07-28,3,0,977,0,0\r\n190,jamar dixon,jamar,dixon,2013-12-29,Male,1982-07-05,33,25 - 45,African-American,0,10,0,0,19,-1,2013-12-28 10:22:08,2013-12-29 07:10:39,13017898CF10A,,2013-12-28,1,F,arrest case no charge,1,15000209MM30A,(M2),,2015-01-18,Petit Theft,,,,0,,,,,Risk of Recidivism,10,High,2013-12-29,Risk of Violence,7,Medium,2013-12-29,2014-08-08,2014-09-09,19,0,222,0,1\r\n192,sue middleton,sue,middleton,2014-03-31,Female,1952-02-19,64,Greater than 45,Caucasian,0,1,0,0,2,-47,2014-02-12 04:23:22,2014-02-12 01:49:55,14005660MU10A,2014-02-11,,48,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-02-12,2014-02-12,2,0,732,0,0\r\n193,brandon velasquez,brandon,velasquez,2014-08-12,Male,1993-09-10,22,Less than 25,Caucasian,0,6,0,0,4,-36,2014-07-07 04:10:30,2014-07-21 09:38:10,14009307CF10A,2014-07-07,,36,F,Possession Of Alprazolam,1,15004296MM40A,(M2),,2015-10-29,Petit Theft,,,,0,,,,,Risk of Recidivism,6,Medium,2014-08-12,Risk of Violence,8,High,2014-08-12,2014-12-29,2015-01-17,4,0,139,0,1\r\n194,ryan pottle,ryan,pottle,2013-09-17,Male,1974-03-30,42,25 - 45,Caucasian,0,3,0,0,6,-4,2013-09-13 12:01:41,2013-09-13 09:01:37,13012918CF10A,2013-09-12,,5,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-17,Risk of Violence,1,Low,2013-09-17,2014-10-30,2015-01-24,6,0,408,0,0\r\n195,brooke ferrell,brooke,ferrell,2013-12-23,Female,1991-01-14,25,25 - 45,Caucasian,0,4,0,0,2,-1,2013-12-22 01:36:59,2013-12-25 02:33:32,13016742CF10A,,2013-12-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-23,Risk of Violence,5,Medium,2013-12-23,2014-12-17,2015-01-07,2,2,359,0,0\r\n197,kyle hoyt,kyle,hoyt,2013-11-19,Male,1985-05-01,30,25 - 45,Caucasian,0,2,0,0,1,-20,2013-10-30 06:36:57,2013-11-03 02:08:43,13015141CF10A,2013-10-30,,20,M,Agg Fleeing and Eluding,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-19,Risk of Violence,2,Low,2013-11-19,2013-10-30,2013-11-03,1,0,864,0,0\r\n199,ritesh sukhlall,ritesh,sukhlall,2013-08-29,Male,1987-05-12,28,25 - 45,Caucasian,0,1,0,0,2,,,,12018849CF10A,,2013-03-21,161,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-29,Risk of Violence,2,Low,2013-08-29,,,2,0,946,0,0\r\n200,nicola spenceburrell,nicola,spenceburrell,2013-12-30,Female,1978-06-30,37,25 - 45,Other,0,2,0,0,2,-1,2013-12-29 10:42:45,2013-12-31 04:10:00,13012779MM10A,2013-05-22,,222,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-30,Risk of Violence,1,Low,2013-12-30,2013-12-29,2013-12-31,2,1,823,0,0\r\n202,travis wilson,travis,wilson,2014-12-19,Male,1988-04-12,28,25 - 45,Caucasian,0,2,0,0,0,-1,2014-12-18 11:16:49,2014-12-19 08:34:46,14017828MM10A,2014-12-18,,1,M,Disorderly Intoxication,1,16001434MM10A,(M1),0,2016-02-13,Viol Injunct Domestic Violence,2016-02-13,2016-02-14,,0,,,,,Risk of Recidivism,2,Low,2014-12-19,Risk of Violence,3,Low,2014-12-19,2015-02-17,2015-02-17,0,0,60,0,1\r\n203,pamela goodwin,pamela,goodwin,2014-02-07,Female,1991-09-24,24,Less than 25,African-American,0,2,0,0,0,-1,2014-02-06 01:25:28,2014-02-08 12:00:39,14002123MM10A,2014-02-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-07,Risk of Violence,3,Low,2014-02-07,2014-02-06,2014-02-08,0,1,784,0,0\r\n206,elizabeth pozo,elizabeth,pozo,2014-11-19,Female,1987-01-23,29,25 - 45,Caucasian,0,4,1,0,10,-1,2014-11-18 07:08:18,2014-11-25 09:31:21,14015588CF10A,2014-11-18,,1,F,Grand Theft in the 3rd Degree,1,15003284CF10A,(F3),1,2015-03-10,Uttering a Forged Instrument,2015-03-11,2015-04-18,,0,,,,,Risk of Recidivism,4,Low,2014-11-19,Risk of Violence,2,Low,2014-11-19,2014-12-29,2015-02-05,10,6,40,0,1\r\n208,erik kadler,erik,kadler,2014-01-27,Male,1971-11-26,44,25 - 45,Caucasian,0,2,0,0,2,0,2014-01-27 02:05:45,2014-01-27 01:32:12,14001438MM10A,2014-01-26,,1,M,Battery,1,14015569MM10A,(M1),,2014-08-31,Viol Injunct Domestic Violence,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2014-01-27,2014-01-27,2,0,216,1,1\r\n209,jessica ruiz,jessica,ruiz,2014-04-04,Female,1985-06-15,30,25 - 45,Hispanic,0,5,0,0,4,-35,2014-02-28 01:37:01,2014-02-28 09:21:54,14002842CF10A,2014-02-27,,36,F,Battery on Law Enforc Officer,1,14007741MM10A,(M1),1,2014-05-11,Battery,2014-05-12,2014-06-13,,1,14007741MM10A,(M1),2014-05-11,Battery,Risk of Recidivism,5,Medium,2014-04-04,Risk of Violence,5,Medium,2014-04-04,2015-04-10,2015-12-07,4,0,37,1,1\r\n210,taquawn davis,taquawn,davis,2013-01-02,Male,1984-01-26,32,25 - 45,African-American,0,7,0,0,3,-1,2013-01-01 07:06:35,2013-01-09 08:36:21,13000037CF10A,2013-01-01,,1,F,Possession of Cocaine,1,14012043CF10A,(F3),,2014-09-04,Possession of Cocaine,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-02,Risk of Violence,3,Low,2013-01-02,2014-02-19,2014-02-27,3,7,413,0,1\r\n213,daniel crowder,daniel,crowder,2013-09-05,Male,1984-11-03,31,25 - 45,Caucasian,0,3,0,0,2,-16,2013-08-20 05:28:11,2013-09-04 08:35:41,13015850MM10A,2013-08-20,,16,M,Resist/Obstruct W/O Violence,1,14000807MM10A,(M1),,2013-10-23,Theft/To Deprive,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-05,Risk of Violence,3,Low,2013-09-05,2013-08-20,2013-09-04,2,0,48,1,1\r\n215,brandon flanders,brandon,flanders,2013-01-17,Male,1985-04-16,31,25 - 45,African-American,0,2,0,0,1,-1,2013-01-16 05:37:32,2013-01-17 07:15:11,13001130MM10A,2013-01-16,,1,M,Lewdness Violation,1,16012589TC40A,(M2),,2016-03-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-17,Risk of Violence,3,Low,2013-01-17,2013-01-16,2013-01-17,1,0,1140,1,0\r\n216,jay shore,jay,shore,2013-04-02,Male,1957-01-07,59,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-04-01 11:13:32,2013-04-02 01:06:22,13004675CF10A,2013-04-01,,1,F,Possession of Cocaine,1,13041937TC10A,(M2),5,2013-09-13,Expired DL More Than 6 Months,2013-09-18,2013-09-25,,0,,,,,Risk of Recidivism,2,Low,2013-04-02,Risk of Violence,1,Low,2013-04-02,2014-02-26,2014-04-22,1,0,164,1,1\r\n218,jean murphy,jean,murphy,2013-04-24,Female,1971-02-05,45,Greater than 45,Caucasian,0,4,0,0,4,,,,11000917CF10A,,2012-04-14,375,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-24,Risk of Violence,3,Low,2013-04-24,,,4,0,1073,0,0\r\n220,taveunshae livingston,taveunshae,livingston,2013-11-20,Female,1995-09-05,20,Less than 25,African-American,1,10,0,0,1,0,2013-11-20 09:36:33,2013-11-23 04:06:00,13014098CF10A,,2013-11-20,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-11-20,Risk of Violence,10,High,2013-11-20,2014-03-19,2014-03-28,1,3,119,0,0\r\n222,gia dreiss,gia,dreiss,2013-05-14,Female,1973-03-13,43,25 - 45,Caucasian,0,1,0,0,0,0,2013-05-14 04:01:02,2013-05-15 03:11:16,13009346MM10A,2013-05-14,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2013-05-14,2013-05-15,0,1,1053,0,0\r\n223,henry davis,henry,davis,2014-04-19,Male,1977-12-28,38,25 - 45,African-American,1,8,1,0,9,-1,2014-04-18 02:31:13,2014-05-01 05:39:49,14005427CF10A,2014-04-18,,1,F,Possession of Cocaine,1,14012795MM10A,(M1),0,2014-08-26,Resist/Obstruct W/O Violence,2014-08-26,2014-08-27,,0,,,,,Risk of Recidivism,8,High,2014-04-19,Risk of Violence,4,Low,2014-04-19,2014-08-26,2014-08-27,9,12,129,1,1\r\n224,travis lee,travis,lee,2014-12-19,Male,1983-08-11,32,25 - 45,African-American,0,6,0,0,11,-2,2014-12-17 02:03:04,2014-12-18 08:41:05,14016717CF10A,2014-12-17,,2,F,Poss Pyrrolidinovalerophenone,1,15000511CF10A,(F3),0,2015-01-12,Poss Pyrrolidinovalerophenone,2015-01-12,2015-02-17,,1,15004732CF10A,(F1),2015-04-10,Manslaughter with Weapon,Risk of Recidivism,6,Medium,2014-12-19,Risk of Violence,5,Medium,2014-12-19,2015-01-12,2015-02-17,11,0,24,1,1\r\n225,justin poux,justin,poux,2013-12-26,Male,1982-08-26,33,25 - 45,African-American,0,5,0,0,8,-1,2013-12-25 07:37:38,2013-12-26 01:30:44,13023762MM10A,2013-12-25,,1,M,Assault,1,14003098MM40A,(M1),,2014-07-01,Possess Cannabis/20 Grams Or Less,,,,1,14011238CF10A,(M1),2014-08-16,Battery,Risk of Recidivism,5,Medium,2013-12-26,Risk of Violence,2,Low,2013-12-26,2015-07-16,2015-07-16,8,0,187,1,1\r\n227,linda etienne,linda,etienne,2014-10-23,Female,1985-01-04,31,25 - 45,African-American,0,3,0,0,0,-1,2014-10-22 11:17:38,2014-10-24 06:08:10,14014216CF10A,2014-10-22,,1,F,Possession of Oxycodone,1,15015591TC20A,(M2),39,2015-02-20,Unlaw LicTag/Sticker Attach,2015-03-31,2015-05-07,,0,,,,,Risk of Recidivism,3,Low,2014-10-23,Risk of Violence,2,Low,2014-10-23,2015-01-07,2015-02-11,0,1,76,0,1\r\n228,nafisa picou,nafisa,picou,2013-01-11,Female,1983-04-18,33,25 - 45,African-American,0,9,0,0,7,-1,2013-01-10 01:18:15,2013-02-05 05:36:46,13000460CF10A,2013-01-10,,1,F,Possession of Cocaine,1,13014334CF10A,(M2),0,2013-10-13,Prostitution/Lewd Act Assignation,2013-10-13,2013-11-01,,0,,,,,Risk of Recidivism,9,High,2013-01-11,Risk of Violence,9,High,2013-01-11,2013-10-13,2013-11-01,7,25,275,1,1\r\n229,michael corker,michael,corker,2013-04-16,Male,1988-09-20,27,25 - 45,African-American,0,9,0,0,2,-1,2013-04-15 05:49:27,2013-04-16 07:48:50,13005402CF10A,2013-04-15,,1,F,Tampering With Physical Evidence,1,13008652MM10A,(M1),0,2013-05-04,Possess Cannabis/20 Grams Or Less,2013-05-04,2013-05-04,,0,,,,,Risk of Recidivism,9,High,2013-04-16,Risk of Violence,8,High,2013-04-16,2013-05-04,2013-05-04,2,0,18,0,1\r\n231,tichina carr,tichina,carr,2013-12-07,Female,1995-07-13,20,Less than 25,African-American,0,6,0,0,0,0,2013-12-07 03:39:31,2013-12-07 07:28:49,13016953CF10A,2013-12-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-07,Risk of Violence,8,High,2013-12-07,2013-12-07,2013-12-07,0,0,846,0,0\r\n232,heather baker,heather,baker,2014-01-27,Female,1989-07-26,26,25 - 45,Caucasian,0,6,0,0,0,-2,2014-01-25 04:45:14,2014-01-26 02:13:40,14002839MU10A,2014-01-25,,2,M,Fail To Obey Police Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-27,Risk of Violence,3,Low,2014-01-27,2014-01-25,2014-01-26,0,0,795,0,0\r\n234,cynthia gray,cynthia,gray,2013-04-27,Female,1954-11-14,61,Greater than 45,African-American,0,1,0,0,1,-1,2013-04-26 07:00:16,2013-04-27 01:09:09,13007217CF10A,2013-04-26,,1,F,Solicit Purchase Cocaine,1,14001755MM30A,(M2),,2014-10-23,Petit Theft,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-26,2013-04-27,1,0,544,1,1\r\n235,paul simpson,paul,simpson,2013-05-15,Male,1963-07-01,52,Greater than 45,Other,0,7,0,0,13,-1,2013-05-14 09:51:40,2013-05-16 03:32:12,13006873CF10A,2013-05-14,,1,F,Felony Petit Theft,1,13011903MM10A,(M2),0,2013-06-20,Petit Theft,2013-06-20,2013-06-20,,0,,,,,Risk of Recidivism,7,Medium,2013-05-15,Risk of Violence,6,Medium,2013-05-15,2013-06-20,2013-06-20,13,1,36,0,1\r\n236,carlos lacayo,carlos,lacayo,2014-02-05,Male,1953-02-03,63,Greater than 45,Hispanic,0,1,0,0,1,-26,2014-01-10 09:45:32,2014-01-25 05:08:15,13002681CF10A,,2014-01-10,26,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-05,Risk of Violence,1,Low,2014-02-05,2014-01-10,2014-01-25,1,0,786,0,0\r\n238,tiffany reid,tiffany,reid,2014-04-23,Female,1984-02-01,32,25 - 45,African-American,0,10,0,0,4,-7,2014-04-16 09:55:10,2014-04-23 05:27:00,13017942CF10A,,2014-04-16,7,F,arrest case no charge,1,15006709CF10A,(F3),0,2015-05-23,Aggravated Assault W/Dead Weap,2015-05-23,2015-09-18,,1,15006709CF10A,(F3),2015-05-23,Aggravated Assault W/Dead Weap,Risk of Recidivism,10,High,2014-04-23,Risk of Violence,9,High,2014-04-23,2015-05-23,2015-09-18,4,0,395,1,1\r\n239,joshua ortiz,joshua,ortiz,2013-09-06,Male,1986-08-27,29,25 - 45,Hispanic,0,4,0,0,1,-1,2013-09-05 06:24:46,2013-09-06 03:39:35,13012529CF10A,2013-09-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-09-05,2013-09-06,1,0,938,0,0\r\n240,rabina humphrey,rabina,humphrey,2013-01-10,Female,1969-07-04,46,Greater than 45,Other,0,2,0,0,1,,,,12016046CF10A,2012-10-30,,72,F,Grand Theft in the 1st Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-10,Risk of Violence,1,Low,2013-01-10,,,1,0,1177,0,0\r\n241,pilar melvin,pilar,melvin,2013-03-10,Female,1989-12-04,26,25 - 45,African-American,0,4,0,0,2,-1,2013-03-09 07:15:19,2013-03-10 01:31:38,13004741MM10A,2013-03-09,,1,M,Driving Under The Influence,1,14004570TC10A,(M2),,2013-10-25,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-10,Risk of Violence,4,Low,2013-03-10,2013-03-09,2013-03-10,2,0,229,1,1\r\n242,dwayne powell,dwayne,powell,2013-06-27,Male,1961-03-09,55,Greater than 45,African-American,0,1,0,0,3,-51,2013-05-07 01:06:57,2013-05-08 03:17:33,13008769MM10A,2013-05-06,,52,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-27,Risk of Violence,1,Low,2013-06-27,2013-05-07,2013-05-08,3,0,1009,0,0\r\n243,bryan sandrin,bryan,sandrin,2014-02-11,Male,1976-06-30,39,25 - 45,Caucasian,1,4,0,0,1,-1,2014-02-10 10:59:01,2014-02-14 09:09:06,09018753TC10A,2009-07-15,,1672,M,,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-11,Risk of Violence,4,Low,2014-02-11,2014-02-10,2014-02-14,1,3,780,0,0\r\n244,rachel otto,rachel,otto,2013-05-02,Female,1985-07-19,30,25 - 45,Caucasian,0,7,0,0,3,0,2013-05-02 04:01:43,2014-10-14 06:03:58,13006294CF10A,2013-05-01,,1,F,Possession Of Carisoprodol,1,13007159CF10A,(F3),554,2013-05-16,Fraudulent Use of Credit Card,2014-11-21,2014-12-02,,0,,,,,Risk of Recidivism,7,Medium,2013-05-02,Risk of Violence,4,Low,2013-05-02,2013-05-02,2014-10-14,3,0,14,1,1\r\n245,jeffery jean,jeffery,jean,2013-03-02,Male,1985-05-30,30,25 - 45,African-American,0,7,0,0,1,0,2013-03-02 01:19:52,2013-05-11 04:23:17,13003159CF10A,2013-03-01,,1,F,Burglary Conveyance Assault/Bat,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-02,Risk of Violence,8,High,2013-03-02,2014-03-04,2014-03-07,1,70,367,0,0\r\n246,michael cormier,michael,cormier,2013-09-26,Male,1967-08-21,48,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-09-25 12:51:27,2013-09-26 08:42:11,13018327MM10A,2013-09-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-26,Risk of Violence,1,Low,2013-09-26,2013-09-25,2013-09-26,2,0,918,0,0\r\n248,marquis brantley,marquis,brantley,2013-05-16,Male,1993-05-25,22,Less than 25,African-American,0,2,0,0,1,-1,2013-05-15 12:16:21,2013-05-16 09:03:09,13006968CF10A,,2013-05-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-16,Risk of Violence,4,Low,2013-05-16,2014-11-14,2015-05-21,1,0,547,0,0\r\n249,brian fuller,brian,fuller,2013-02-11,Male,1970-03-27,46,Greater than 45,Caucasian,0,1,0,0,6,22,2013-03-05 09:31:17,2013-03-28 01:40:17,13000558CF10A,2013-01-11,,31,F,Driving While License Revoked,1,13007870MM10A,(M2),0,2013-03-05,Susp Drivers Lic 1st Offense,2013-03-05,2013-03-28,,0,,,,,Risk of Recidivism,1,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-03-05,2013-03-28,6,0,22,1,1\r\n251,tanya gordon,tanya,gordon,2014-03-19,Female,1966-09-25,49,Greater than 45,Caucasian,0,6,0,0,6,-56,2014-01-22 07:46:15,2014-01-27 08:19:45,14000940CF10A,2014-01-22,,56,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-19,Risk of Violence,2,Low,2014-03-19,2014-01-22,2014-01-27,6,0,744,0,0\r\n252,matthew segal,matthew,segal,2013-04-20,Male,1984-08-30,31,25 - 45,Caucasian,0,5,0,0,0,0,2013-04-20 02:52:11,2013-04-22 09:19:35,13005685CF10A,2013-04-19,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-20,Risk of Violence,4,Low,2013-04-20,2015-04-09,2015-05-29,0,2,719,0,0\r\n254,deandre arnold,deandre,arnold,2013-09-17,Male,1990-09-19,25,25 - 45,African-American,0,2,0,0,1,-1,2013-09-16 03:35:39,2013-09-18 01:39:28,13017638MM10A,2013-09-16,,1,M,Battery,1,13019782MM10A,(M2),0,2013-10-18,Prowling/Loitering,2013-10-18,2013-10-22,,0,,,,,Risk of Recidivism,2,Low,2013-09-17,Risk of Violence,3,Low,2013-09-17,2013-10-18,2013-10-22,1,1,31,1,1\r\n257,robello rodriguez,robello,rodriguez,2013-09-09,Male,1992-09-11,23,Less than 25,Hispanic,0,3,0,0,0,-1,2013-09-08 01:03:31,2013-09-08 02:03:07,13012674CF10A,2013-09-07,,2,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-09,Risk of Violence,5,Medium,2013-09-09,2013-09-08,2013-09-08,0,0,935,0,0\r\n258,crissie wilson,crissie,wilson,2013-02-18,Female,1984-01-04,32,25 - 45,African-American,0,7,0,0,5,-1,2013-02-17 07:51:04,2013-02-18 10:17:02,13002448CF10A,2013-02-17,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-18,Risk of Violence,3,Low,2013-02-18,2013-02-17,2013-02-18,5,0,1138,0,0\r\n259,justo arias,justo,arias,2013-03-05,Male,1963-12-18,52,Greater than 45,Hispanic,0,1,0,0,2,-1,2013-03-04 10:07:00,2013-03-07 11:56:36,13018844TC10A,2013-03-04,,1,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-05,Risk of Violence,1,Low,2013-03-05,2013-06-21,2013-07-26,2,2,108,0,0\r\n260,curtis ross,curtis,ross,2013-02-05,Male,1954-02-20,62,Greater than 45,African-American,0,4,0,0,8,0,2013-02-05 12:23:14,2013-02-21 04:06:55,13001749CF10A,2013-02-04,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-05,Risk of Violence,1,Low,2013-02-05,2013-02-05,2013-02-21,8,16,1151,0,0\r\n262,melody ford,melody,ford,2013-04-22,Female,1978-08-09,37,25 - 45,Caucasian,0,10,0,0,6,-110,2013-01-02 12:30:44,2013-04-18 09:04:00,13000026CF10A,2013-01-01,,111,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-22,Risk of Violence,4,Low,2013-04-22,2014-06-13,2014-12-18,6,0,417,0,0\r\n263,michael loughran,michael,loughran,2013-09-10,Male,1960-08-29,55,Greater than 45,Caucasian,0,1,0,0,1,-45,2013-07-27 04:18:41,2013-08-14 12:12:39,13010542CF10A,2013-07-27,,45,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-07-27,2013-08-14,1,0,934,0,0\r\n264,alonso delcarpio,alonso,delcarpio,2013-07-25,Male,1984-10-28,31,25 - 45,Hispanic,0,9,0,0,8,29,2013-08-23 05:18:39,2013-12-18 10:43:00,12018752CF10A,,2013-05-25,61,F,arrest case no charge,1,14005411MM10A,(M1),0,2014-03-29,Unlaw Use False Name/Identity,2014-03-29,2014-06-24,,0,,,,,Risk of Recidivism,9,High,2013-07-25,Risk of Violence,7,Medium,2013-07-25,2013-08-23,2013-12-18,8,0,29,0,1\r\n265,darasan bispham,darasan,bispham,2013-03-18,Male,1987-05-19,28,25 - 45,African-American,0,6,0,0,6,-1,2013-03-17 09:01:58,2013-03-18 01:40:10,13005239MM10A,2013-03-17,,1,M,Resist/Obstruct W/O Violence,1,14060125TC30A,(M2),,2014-07-13,Fail Register Vehicle,,,,1,15003512CF10A,(F2),2015-03-15,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-03-18,Risk of Violence,6,Medium,2013-03-18,2016-03-01,2016-03-17,6,0,482,1,1\r\n266,oscar lloranzo,oscar,lloranzo,2013-08-29,Male,1962-04-15,54,Greater than 45,Hispanic,0,1,0,0,2,-1,2013-08-28 02:23:37,2014-03-04 11:31:17,13012142CF10A,2013-08-28,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-29,Risk of Violence,1,Low,2013-08-29,2013-08-28,2014-03-04,2,187,946,0,0\r\n267,domingo martinez,domingo,martinez,2013-03-14,Male,1957-08-04,58,Greater than 45,Hispanic,0,2,0,0,0,-1,2013-03-13 10:02:13,2013-03-14 02:21:27,13003707CF10A,2013-03-13,,1,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-14,Risk of Violence,1,Low,2013-03-14,2014-01-10,2014-03-28,0,0,302,0,0\r\n268,kwai lam,kwai,lam,2014-09-20,Male,1937-10-15,78,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-09-19 10:36:52,2014-09-20 07:10:15,14034104MU10A,2014-09-19,,1,M,Driving Under The Influence,1,15009652CF10A,(F3),,2015-07-27,Leaving the Scene of Accident,,,,0,,,,,Risk of Recidivism,1,Low,2014-09-20,Risk of Violence,1,Low,2014-09-20,2014-09-19,2014-09-20,1,0,310,1,1\r\n269,marcial regidor,marcial,regidor,2014-03-03,Male,1959-12-31,56,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-02 03:51:04,2014-03-03 07:47:20,14002945CF10A,2014-03-02,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-02,2014-03-03,0,0,760,0,0\r\n271,shourav rahman,shourav,rahman,2014-01-14,Male,1992-01-07,24,Less than 25,Other,0,2,0,0,0,-1,2014-01-13 09:13:09,2014-01-15 08:37:12,14000576CF10A,2014-01-13,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-14,Risk of Violence,4,Low,2014-01-14,2014-01-13,2014-01-15,0,1,808,0,0\r\n272,dyer smith,dyer,smith,2014-09-09,Male,1977-10-06,38,25 - 45,African-American,2,8,2,1,22,-34,2014-08-06 12:10:51,2014-09-09 10:37:20,14010711CF10A,2014-08-05,,35,F,Child Abuse,1,15000813MM30A,(M1),51,2015-05-05,Possess Cannabis/20 Grams Or Less,2015-06-25,2015-07-08,,0,,,,,Risk of Recidivism,8,High,2014-09-09,Risk of Violence,5,Medium,2014-09-09,2015-09-09,2015-10-07,22,0,238,1,1\r\n275,allen roundtree,allen,roundtree,2014-04-24,Male,1994-04-17,22,Less than 25,African-American,0,5,0,0,1,0,2014-04-24 01:23:50,2014-04-24 01:25:52,14005656CF10A,2014-04-23,,1,F,Pos Cannabis W/Intent Sel/Del,1,14084371TC20A,(M2),,2014-11-10,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2014-04-24,Risk of Violence,5,Medium,2014-04-24,2014-04-24,2014-04-24,1,0,200,1,1\r\n277,douglas jones,douglas,jones,2013-02-03,Male,1968-05-13,47,Greater than 45,African-American,0,8,0,0,23,-1,2013-02-02 08:19:13,2013-02-03 05:06:15,13002407MM10A,2013-02-02,,1,M,Possess Cannabis/20 Grams Or Less,1,13002174CF10A,(F3),0,2013-02-12,Grand Theft in the 3rd Degree,2013-02-12,2013-03-18,,0,,,,,Risk of Recidivism,8,High,2013-02-03,Risk of Violence,1,Low,2013-02-03,2013-02-12,2013-03-18,23,0,9,1,1\r\n278,colin jones,colin,jones,2014-01-06,Male,1992-08-30,23,Less than 25,African-American,0,2,0,0,0,-1,2014-01-05 11:08:48,2014-01-06 12:02:14,14000198MM10A,2014-01-05,,1,M,Battery,1,14010176MM10A,(M1),0,2014-07-01,Extradition/Defendants,2014-07-01,2014-07-10,,0,,,,,Risk of Recidivism,2,Low,2014-01-06,Risk of Violence,4,Low,2014-01-06,2014-07-01,2014-07-10,0,0,176,1,1\r\n279,ronald castaneda,ronald,castaneda,2013-10-25,Male,1958-05-31,57,Greater than 45,Hispanic,0,1,0,0,1,0,2013-10-25 09:20:19,2013-11-14 02:05:31,13014942CF10A,2013-10-25,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-25,Risk of Violence,1,Low,2013-10-25,2013-10-25,2013-11-14,1,20,889,0,0\r\n280,valerie valletta,valerie,valletta,2013-07-10,Female,1977-06-30,38,25 - 45,Caucasian,0,5,0,0,2,-35,2013-06-05 06:36:18,2013-06-06 06:23:54,13007984CF10A,2013-06-05,,35,F,Possession of Cocaine,1,13023004MM10A,(M1),0,2013-12-12,Unlaw Use False Name/Identity,2013-12-12,2013-12-20,,0,,,,,Risk of Recidivism,5,Medium,2013-07-10,Risk of Violence,2,Low,2013-07-10,2013-12-12,2013-12-20,2,0,155,1,1\r\n281,richard roberts,richard,roberts,2013-06-11,Male,1949-09-14,66,Greater than 45,African-American,0,1,0,0,3,-10,2013-06-01 11:04:44,2013-06-03 11:25:14,13007789CF10A,2013-06-01,,10,F,Agg Battery Grt/Bod/Harm,1,16000414MM20A,(M1),,2016-01-10,Battery,,,,1,16000414MM20A,(M1),2016-01-10,Battery,Risk of Recidivism,1,Low,2013-06-11,Risk of Violence,1,Low,2013-06-11,2013-06-01,2013-06-03,3,0,943,1,0\r\n282,william malo,william,malo,2014-02-17,Male,1970-10-30,45,Greater than 45,Caucasian,0,4,0,0,8,0,2014-02-17 02:38:50,2014-04-29 04:18:29,14002730MM10A,2014-02-17,,0,M,Viol Injunct Domestic Violence,1,15011989MM10A,(M1),,2015-11-17,Viol Injunct Domestic Violence,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-17,Risk of Violence,3,Low,2014-02-17,2015-09-24,2015-10-05,8,71,584,0,1\r\n285,charmaine ramkhelawan,charmaine,ramkhelawan,2013-07-22,Female,1964-04-16,52,Greater than 45,Other,0,3,0,0,0,,,,,,,,M,,1,14073509TC20A,(M2),,2014-10-14,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-22,Risk of Violence,1,Low,2013-07-22,,,0,0,449,1,1\r\n286,octavious gore,octavious,gore,2013-08-28,Male,1983-12-10,32,25 - 45,African-American,0,10,0,0,13,289,2014-06-13 03:07:06,2014-09-18 07:02:35,13012102CF10A,2013-08-27,,1,F,Poss Cocaine/Intent To Del/Sel,1,14008195CF10A,(F3),0,2014-06-13,Possession of Cocaine,2014-06-13,2014-09-18,,0,,,,,Risk of Recidivism,10,High,2013-08-28,Risk of Violence,7,Medium,2013-08-28,2014-06-13,2014-09-18,13,0,289,1,1\r\n287,aaron eddins,aaron,eddins,2013-12-24,Male,1978-12-03,37,25 - 45,African-American,0,9,0,0,2,0,2013-12-24 03:40:12,2013-12-24 08:53:51,13023727MM10A,2013-12-24,,0,M,Battery,1,14005925MM10A,(M1),0,2014-04-07,Battery,2014-04-07,2014-05-09,,1,14005925MM10A,(M1),2014-04-07,Battery,Risk of Recidivism,9,High,2013-12-24,Risk of Violence,8,High,2013-12-24,2014-04-07,2014-05-09,2,0,104,1,1\r\n288,paolo mannino,paolo,mannino,2014-03-02,Male,1977-03-08,39,25 - 45,Caucasian,0,4,0,0,0,0,2014-03-02 05:08:46,2014-03-03 03:17:00,14002946CF10A,2014-03-02,,0,F,Possession Of Methamphetamine,1,15004071CF10A,(M1),1,2015-03-26,Possess Drug Paraphernalia,2015-03-27,2015-05-07,,0,,,,,Risk of Recidivism,4,Low,2014-03-02,Risk of Violence,4,Low,2014-03-02,2014-03-02,2014-03-03,0,1,389,1,1\r\n289,tron clark,tron,clark,2014-11-14,Male,1990-01-15,26,25 - 45,African-American,0,9,0,0,9,0,2014-11-14 01:28:54,2015-02-01 08:34:27,14015288CF10A,2014-11-13,,1,F,Deliver Cocaine,1,15005911CF10A,(F3),0,2015-05-06,Poss Pyrrolidinovalerophenone,2015-05-06,2015-08-20,,0,,,,,Risk of Recidivism,9,High,2014-11-14,Risk of Violence,8,High,2014-11-14,2015-05-06,2015-08-20,9,79,173,1,1\r\n291,shad campbell,shad,campbell,2013-02-01,Male,1970-12-18,45,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-01-31 04:11:55,2014-01-25 03:27:03,13001562CF10A,2013-01-31,,1,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-01,Risk of Violence,4,Low,2013-02-01,2013-01-31,2014-01-25,2,358,1155,0,0\r\n293,delmario watt,delmario,watt,2014-04-26,Male,1992-12-18,23,Less than 25,African-American,0,3,0,0,0,-1,2014-04-25 10:29:59,2014-04-26 09:57:20,14005797CF10A,2014-04-25,,1,F,Possession of Cannabis,1,15003342CF10A,(F2),0,2015-03-12,Robbery W/Firearm,2015-03-12,2015-09-21,,1,15003342CF10A,(F2),2015-03-12,Robbery W/Firearm,Risk of Recidivism,3,Low,2014-04-26,Risk of Violence,4,Low,2014-04-26,2015-03-12,2015-09-21,0,0,320,1,1\r\n294,clifton mccree,clifton,mccree,2014-01-31,Male,1982-03-05,34,25 - 45,African-American,0,2,0,0,2,0,2014-01-31 12:35:27,2014-02-26 05:50:20,14001687MM10A,2014-01-30,,1,M,Battery,1,16002539CF10A,(F3),0,2016-02-28,,2016-02-28,2016-03-22,,0,,,,,Risk of Recidivism,2,Low,2014-01-31,Risk of Violence,1,Low,2014-01-31,2016-02-28,2016-03-22,2,26,758,1,0\r\n297,kerry gonzalez,kerry,gonzalez,2013-08-21,Female,1992-04-20,23,Less than 25,African-American,0,4,0,0,1,-1,2013-08-20 11:57:06,2013-08-21 07:50:16,13015960MM10A,2013-08-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-21,Risk of Violence,4,Low,2013-08-21,2013-08-20,2013-08-21,1,0,954,0,0\r\n298,cachaloni frank,cachaloni,frank,2014-01-28,Male,1979-10-14,36,25 - 45,Other,0,3,0,0,2,-1,2014-01-27 10:23:53,2014-01-30 10:04:48,14001518MM10A,2014-01-27,,1,M,Battery,1,15012142CF10A,(F2),0,2015-09-18,Poss of Firearm by Convic Felo,2015-09-18,2015-12-04,,0,,,,,Risk of Recidivism,3,Low,2014-01-28,Risk of Violence,1,Low,2014-01-28,2015-09-18,2015-12-04,2,2,598,1,1\r\n299,douglas eaton,douglas,eaton,2013-09-16,Male,1965-05-28,50,Greater than 45,Caucasian,0,1,0,0,1,-4,2013-09-12 09:32:07,2013-09-14 03:06:18,16000586CF10A,2013-09-12,,4,F,Sexual Performance by a Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2016-02-12,2016-02-13,1,0,879,0,0\r\n300,stephanie harvey,stephanie,harvey,2013-11-08,Female,1978-08-31,37,25 - 45,Caucasian,0,3,0,0,0,-1,2013-11-07 02:53:47,2013-11-07 09:00:57,13021013MM10A,2013-11-07,,1,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2013-11-07,2013-11-07,0,0,875,0,0\r\n301,jason cypress,jason,cypress,2013-01-06,Male,1972-01-16,44,25 - 45,Caucasian,0,4,0,0,4,0,2013-01-06 04:51:37,2013-01-07 10:41:46,13000313MM10A,2013-01-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-06,Risk of Violence,4,Low,2013-01-06,2013-01-06,2013-01-07,4,1,1181,0,0\r\n302,lakisha davis,lakisha,davis,2014-07-13,Female,1981-01-20,35,25 - 45,African-American,0,9,1,0,23,-1,2014-07-12 03:02:54,2014-07-14 05:19:00,14009552CF10A,2014-07-12,,1,F,Felony Petit Theft,1,15006897CF10A,(F3),,2015-05-27,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,9,High,2014-07-13,Risk of Violence,9,High,2014-07-13,2014-07-12,2014-07-14,23,1,318,1,1\r\n304,kerr mcbean,kerr,mcbean,2014-10-08,Male,1991-10-06,24,Less than 25,Other,0,5,0,0,5,-1,2014-10-07 12:01:33,2014-10-08 08:26:09,14012958CF10A,,2014-10-07,1,F,arrest case no charge,1,14016435CF10A,(F3),,2014-12-01,False Ownership Info/Pawn Item,,,,0,,,,,Risk of Recidivism,5,Medium,2014-10-08,Risk of Violence,4,Low,2014-10-08,2014-10-07,2014-10-08,5,0,54,1,1\r\n306,michael sexton,michael,sexton,2013-04-18,Male,1990-04-12,26,25 - 45,African-American,0,10,0,0,2,-1,2013-04-17 06:43:21,2013-04-18 10:07:23,13005483CF10A,2013-04-17,,1,F,Fleeing Or Attmp Eluding A Leo,1,14006182CF10A,(F3),1,2014-05-02,\"Poss3,4 Methylenedioxymethcath\",2014-05-03,2014-05-24,,0,,,,,Risk of Recidivism,10,High,2013-04-18,Risk of Violence,8,High,2013-04-18,2015-08-18,2015-09-05,2,0,379,1,1\r\n308,adrean reid,adrean,reid,2013-03-26,Male,1988-08-11,27,25 - 45,African-American,0,2,0,0,0,-1,2013-03-25 12:25:41,2013-03-28 05:58:56,13004320CF10A,2013-03-25,,1,M,Criminal Mischief,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-26,Risk of Violence,3,Low,2013-03-26,2013-03-25,2013-03-28,0,2,1102,0,0\r\n310,winnie nerestant,winnie,nerestant,2013-10-29,Female,1988-04-13,28,25 - 45,African-American,0,8,0,0,0,0,2013-10-29 04:01:57,2013-11-27 06:51:07,13015115CF10A,2013-10-28,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-29,Risk of Violence,6,Medium,2013-10-29,2013-10-29,2013-11-27,0,29,885,0,0\r\n311,frank gadman,frank,gadman,2013-03-26,Male,1973-01-27,43,25 - 45,Caucasian,0,5,0,0,11,49,2013-05-14 01:49:40,2013-09-12 07:19:52,12017664CF10A,,2013-01-29,56,F,arrest case no charge,1,13009339MM10A,(M1),1,2013-05-13,Battery,2013-05-14,2013-09-12,,1,13009339MM10A,(M1),2013-05-13,Battery,Risk of Recidivism,5,Medium,2013-03-26,Risk of Violence,3,Low,2013-03-26,2013-09-12,2014-10-01,11,0,48,1,1\r\n313,briteny williams,briteny,williams,2013-10-10,Female,1988-01-12,28,25 - 45,Caucasian,0,9,0,0,7,-1,2013-10-09 09:15:07,2013-10-10 09:46:20,13014154CF10A,2013-10-09,,1,F,Felony Petit Theft,1,14015569CF10A,(F3),,2014-05-14,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,9,High,2013-10-10,Risk of Violence,6,Medium,2013-10-10,2015-11-19,2020-01-01,7,0,216,1,1\r\n315,damond craig,damond,craig,2013-03-20,Male,1977-06-11,38,25 - 45,African-American,0,1,0,0,2,-1,2013-03-19 04:21:06,2013-03-20 09:34:48,13004002CF10A,2013-03-19,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-05-20,2013-05-20,2,0,61,0,0\r\n316,justin castellanos,justin,castellanos,2014-02-26,Male,1989-03-16,27,25 - 45,Caucasian,0,4,0,0,2,-36,2014-01-21 10:31:38,2014-02-26 10:40:06,14000870CF10A,2014-01-21,,36,M,Trespass Struct/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-26,Risk of Violence,3,Low,2014-02-26,2014-01-21,2014-02-26,2,0,765,0,0\r\n317,jenay doe,jenay,doe,2013-01-02,Female,1987-10-07,28,25 - 45,African-American,0,9,0,0,1,-1,2013-01-01 06:27:15,2013-02-09 02:24:08,13000032CF10A,,2013-01-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-02,Risk of Violence,7,Medium,2013-01-02,2015-06-10,2015-08-28,1,38,889,0,0\r\n319,henry nesbitt,henry,nesbitt,2013-03-20,Male,1959-12-26,56,Greater than 45,Caucasian,0,1,0,0,7,-1,2013-03-19 11:00:49,2013-03-20 01:32:28,13003999CF10A,2013-03-19,,1,F,Felony Driving While Lic Suspd,1,14003046TC10A,(M2),,2013-11-20,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-03-19,2013-03-20,7,0,245,1,1\r\n320,andreas fountain,andreas,fountain,2013-02-19,Male,1977-08-08,38,25 - 45,African-American,0,9,0,0,15,-1,2013-02-18 09:26:05,2013-02-20 03:43:56,13002469CF10A,2013-02-18,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-19,Risk of Violence,3,Low,2013-02-19,2013-02-18,2013-02-20,15,1,1137,0,0\r\n321,joshua edmond,joshua,edmond,2013-10-31,Male,1987-10-28,28,25 - 45,African-American,0,5,0,0,2,-1,2013-10-30 07:57:19,2013-10-31 01:45:23,07028509MM10A,2007-12-15,,2147,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-31,Risk of Violence,4,Low,2013-10-31,2013-10-30,2013-10-31,2,0,883,0,0\r\n322,clinton johnson,clinton,johnson,2013-01-10,Male,1971-02-08,45,Greater than 45,African-American,0,6,0,0,3,104,2013-04-24 12:56:21,2013-11-29 03:06:21,12016802CF10A,,2012-12-18,23,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-10,Risk of Violence,4,Low,2013-01-10,2013-04-24,2013-11-29,3,0,104,0,0\r\n323,williams rodriguez,williams,rodriguez,2013-01-04,Male,1987-06-14,28,25 - 45,Hispanic,0,2,0,0,0,,,,12026489MM10A,2012-12-30,,5,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-04,Risk of Violence,3,Low,2013-01-04,,,0,0,1183,0,0\r\n325,jon fried,jon,fried,2013-03-20,Male,1954-10-19,61,Greater than 45,Caucasian,0,1,0,0,1,-34,2013-02-14 11:17:01,2013-02-15 07:40:39,13002308CF10A,,2013-02-14,34,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-02-14,2013-02-15,1,0,1108,0,0\r\n326,tamara powers,tamara,powers,2014-01-13,Female,1964-12-08,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-12 08:37:58,2014-01-13 02:00:36,14001458MU10A,2014-01-12,,1,M,Driving Under The Influence,1,14010147MM10A,(M1),0,2014-07-01,Battery,2014-07-01,2014-09-06,,1,14010147MM10A,(M1),2014-07-01,Battery,Risk of Recidivism,1,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-07-01,2014-09-06,0,0,169,1,1\r\n327,matthew dukes,matthew,dukes,2013-10-31,Male,1965-01-27,51,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-10-30 11:27:14,2013-10-31 08:46:16,13020585MM10A,2013-10-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-31,Risk of Violence,2,Low,2013-10-31,2013-10-30,2013-10-31,0,0,883,0,0\r\n329,keron edwards,keron,edwards,2013-01-07,Male,1979-05-18,36,25 - 45,Other,0,1,0,0,1,-1,2013-01-06 09:15:11,2013-01-07 11:01:40,13000317MM10A,2013-01-06,,1,M,Possess Cannabis/20 Grams Or Less,1,13036282TC10A,(M2),0,2013-08-24,Driving License Suspended,2013-08-24,2013-08-24,,0,,,,,Risk of Recidivism,1,Low,2013-01-07,Risk of Violence,1,Low,2013-01-07,2013-08-24,2013-08-24,1,0,229,0,1\r\n330,henson thomas,henson,thomas,2013-01-13,Male,1967-08-06,48,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-12 06:40:25,2013-01-13 09:03:52,13000573CF10A,2013-01-12,,1,F,Aggravated Battery (Firearm/Actual Possession),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0\r\n331,shawn rheal,shawn,rheal,2013-04-17,Male,1978-08-07,37,25 - 45,Caucasian,0,3,0,0,4,0,2013-04-17 04:44:25,2013-04-19 01:08:53,13003798CF10A,,2013-04-17,0,F,arrest case no charge,1,14003906MM40A,(M2),3,2014-09-15,Petit Theft,2014-09-18,2014-10-09,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,4,Low,2013-04-17,2013-04-17,2013-04-19,4,2,516,1,1\r\n332,jessica charnel,jessica,charnel,2013-05-13,Female,1985-07-17,30,25 - 45,African-American,0,7,0,0,2,-1,2013-05-12 06:56:40,2013-05-15 02:06:25,13006795CF10A,2013-05-12,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-13,Risk of Violence,4,Low,2013-05-13,2013-05-12,2013-05-15,2,2,1054,0,0\r\n333,tumeka warner,tumeka,warner,2013-11-05,Female,1974-04-25,41,25 - 45,African-American,0,6,0,0,5,0,2013-11-05 02:09:51,2013-11-05 07:57:55,13020890MM10A,2013-11-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-05,Risk of Violence,3,Low,2013-11-05,2013-11-05,2013-11-05,5,0,878,0,0\r\n334,jerry cheristil,jerry,cheristil,2013-04-24,Male,1988-09-24,27,25 - 45,African-American,0,10,0,0,11,-1,2013-04-23 07:22:20,2013-12-02 11:28:01,13005813CF10A,2013-04-23,,1,F,Robbery / No Weapon,1,14010056CF10A,(F3),,2014-07-01,Crim Use of Personal ID Info,,,,0,,,,,Risk of Recidivism,10,High,2013-04-24,Risk of Violence,9,High,2013-04-24,2013-04-23,2013-12-02,11,222,433,1,1\r\n335,kip stubbs,kip,stubbs,2013-02-17,Male,1979-04-03,37,25 - 45,African-American,0,1,0,0,0,-1,2013-02-16 07:22:50,2013-02-18 02:10:02,13003388MM10A,2013-02-16,,1,M,Battery,1,15007263MM10A,(M1),0,2015-07-07,Battery,2015-07-07,2015-07-20,,1,15007263MM10A,(M1),2015-07-07,Battery,Risk of Recidivism,1,Low,2013-02-17,Risk of Violence,1,Low,2013-02-17,2015-07-07,2015-07-20,0,1,870,1,0\r\n336,kerlon coomansingh,kerlon,coomansingh,2014-04-30,Male,1983-02-01,33,25 - 45,Other,0,4,0,0,4,0,2014-04-30 02:37:51,2014-05-02 05:55:00,14006015CF10A,2014-04-29,,1,F,Aggravated Assault w/Firearm,1,15000829MM20A,(M1),,2015-03-10,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2014-04-30,Risk of Violence,2,Low,2014-04-30,2014-04-30,2014-05-02,4,2,314,1,1\r\n337,shawn siler,shawn,siler,2013-05-07,Male,1961-08-23,54,Greater than 45,African-American,0,9,0,0,11,-1,2013-05-06 08:51:14,2013-09-13 05:58:39,13006472CF10A,2013-05-06,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-07,Risk of Violence,9,High,2013-05-07,2013-05-06,2013-09-13,11,129,1060,0,0\r\n338,kriston douglas,kriston,douglas,2013-05-09,Male,1992-08-26,23,Less than 25,African-American,0,9,0,0,2,-1,2013-05-08 10:09:34,2013-07-19 06:36:57,13006694CF10A,2013-05-08,,1,F,Robbery / Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-09,Risk of Violence,5,Medium,2013-05-09,2013-05-08,2013-07-19,2,71,1058,0,0\r\n341,allana jones,allana,jones,2014-07-29,Female,1990-03-15,26,25 - 45,African-American,0,4,0,0,2,-227,2013-12-14 11:19:35,2014-07-29 11:06:26,13017291CF10A,,2013-12-14,227,F,arrest case no charge,1,15033947TC30A,(M2),,2015-05-08,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2014-07-29,Risk of Violence,6,Medium,2014-07-29,2013-12-14,2014-07-29,2,0,283,1,1\r\n344,tania quinonez,tania,quinonez,2014-01-25,Male,1974-08-07,41,25 - 45,African-American,0,1,0,0,0,0,2014-01-25 09:44:01,2014-01-26 06:31:19,14001403MM10A,2014-01-25,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-25,Risk of Violence,1,Low,2014-01-25,2014-01-25,2014-01-26,0,1,797,0,0\r\n345,edward connell,edward,connell,2013-05-16,Male,1964-02-10,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-15 11:15:03,2013-05-16 08:50:44,13006960CF10A,2013-05-15,,1,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-16,Risk of Violence,1,Low,2013-05-16,2013-05-15,2013-05-16,0,0,1051,0,0\r\n347,eric avery,eric,avery,2013-02-20,Male,1972-06-07,43,25 - 45,Caucasian,0,4,0,0,13,0,2013-02-20 01:55:05,2013-04-12 09:45:26,13002509CF10A,2013-02-19,,1,F,Driving While License Revoked,1,13010684CF10A,(F3),0,2013-07-31,Possession Of Heroin,2013-07-31,2014-03-18,,0,,,,,Risk of Recidivism,4,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-07-31,2014-03-18,13,51,161,1,1\r\n348,robert dukes,robert,dukes,2014-02-04,Male,1964-02-12,52,Greater than 45,African-American,0,4,0,0,0,-1,2014-02-03 03:50:35,2014-02-17 02:20:23,14001502CF10A,2014-02-03,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-04,Risk of Violence,3,Low,2014-02-04,2014-02-03,2014-02-17,0,13,787,0,0\r\n349,michael cunningham,michael,cunningham,2013-05-17,Male,1987-07-21,28,25 - 45,Caucasian,0,1,0,0,1,-3,2013-05-14 04:20:05,2013-05-17 10:53:34,09011413CF10A,,2013-05-14,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-17,Risk of Violence,2,Low,2013-05-17,2013-05-14,2013-05-17,1,0,1050,0,0\r\n350,willie sims,willie,sims,2014-08-06,Male,1985-10-26,30,25 - 45,African-American,0,9,0,2,11,-1,2014-08-05 03:19:41,2014-08-06 08:40:28,14011853MM10A,2014-08-05,,1,M,Battery,1,14017107MM10A,(M1),0,2014-12-03,Trespass After Warning,2014-12-03,2014-12-09,,1,15000025CF10A,(F1),2014-12-20,Robbery W/Firearm,Risk of Recidivism,9,High,2014-08-06,Risk of Violence,4,Low,2014-08-06,2014-12-03,2014-12-09,11,0,119,1,1\r\n351,bret petit,bret,petit,2013-09-27,Male,1987-05-13,28,25 - 45,Caucasian,0,5,0,0,1,0,2013-09-27 04:35:20,2013-10-03 08:39:37,13013598CF10A,2013-09-27,,0,F,Criminal Mischief,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-27,Risk of Violence,3,Low,2013-09-27,2013-09-27,2013-10-03,1,6,917,0,0\r\n354,william st fleur,william,st fleur,2013-02-22,Male,1993-09-29,22,Less than 25,African-American,0,4,0,0,0,-1,2013-02-21 03:42:13,2013-02-22 01:52:11,13002685CF10A,2013-02-21,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-22,Risk of Violence,6,Medium,2013-02-22,2013-02-21,2013-02-22,0,0,1134,0,0\r\n355,gylier lewis,gylier,lewis,2013-03-05,Male,1985-05-18,30,25 - 45,African-American,0,2,0,0,4,0,2013-03-05 04:44:39,2013-03-05 01:41:22,13003312CF10A,2013-03-05,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-05,Risk of Violence,2,Low,2013-03-05,2013-03-05,2013-03-05,4,0,1123,0,0\r\n356,giovanni potesta,giovanni,potesta,2013-11-03,Male,1990-06-29,25,25 - 45,Hispanic,0,4,0,0,4,0,2013-11-03 02:47:28,2013-11-04 07:59:32,13015319CF10A,2013-11-03,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-03,Risk of Violence,4,Low,2013-11-03,2013-11-03,2013-11-04,4,1,880,0,0\r\n357,krishna sookram,krishna,sookram,2014-12-31,Male,1984-08-15,31,25 - 45,Caucasian,0,8,0,0,0,-1,2014-12-30 04:53:40,2015-01-30 04:31:37,14017187CF10A,2014-12-30,,1,F,Burglary Unoccupied Dwelling,1,16001829CF10A,(F2),0,2016-02-05,Wear Mask w/Commit Offense,2016-02-05,2016-03-18,,0,,,,,Risk of Recidivism,8,High,2014-12-31,Risk of Violence,5,Medium,2014-12-31,2016-02-05,2016-03-18,0,30,401,1,1\r\n358,kelly payne,kelly,payne,2014-04-19,Male,1978-07-23,37,25 - 45,Caucasian,0,2,0,0,0,-1,2014-04-18 05:22:38,2014-05-23 05:31:44,14005430CF10A,2014-04-18,,1,F,Grand Theft in the 3rd Degree,1,15000286MM20A,(M1),,2014-12-27,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,2,Low,2014-04-19,Risk of Violence,1,Low,2014-04-19,2014-10-08,2014-10-26,0,34,172,0,1\r\n359,gerald magnus,gerald,magnus,2013-12-17,Male,1983-05-20,32,25 - 45,African-American,0,9,1,0,14,-1,2013-12-16 05:05:35,2013-12-17 08:47:25,13017383CF10A,2013-12-16,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-12-17,Risk of Violence,8,High,2013-12-17,2013-12-16,2013-12-17,14,0,836,0,0\r\n360,devonn singletary,devonn,singletary,2013-09-11,Male,1989-08-21,26,25 - 45,African-American,0,8,1,0,4,649,2015-06-22 09:31:25,2015-09-06 07:25:45,09001823MM30A,2009-06-02,,1562,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-11,Risk of Violence,6,Medium,2013-09-11,2015-06-22,2015-09-06,4,0,649,0,0\r\n361,michael gellert,michael,gellert,2013-01-16,Male,1962-11-03,53,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-15 05:53:17,2013-01-16 07:01:06,13001030MM10A,2013-01-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-16,Risk of Violence,1,Low,2013-01-16,2013-01-15,2013-01-16,1,0,1171,0,0\r\n362,tyvon elisias,tyvon,elisias,2013-12-10,Male,1988-03-12,28,25 - 45,African-American,0,8,0,0,25,29,2014-01-08 11:38:20,2014-02-03 10:50:45,13013857CF10A,,2013-10-01,70,F,arrest case no charge,1,14004583CF10A,(F3),,2014-03-15,Burglary Structure Unoccup,,,,0,,,,,Risk of Recidivism,8,High,2013-12-10,Risk of Violence,9,High,2013-12-10,2014-01-08,2014-02-03,25,0,29,0,1\r\n363,earl booth,earl,booth,2013-04-11,Male,1971-10-16,44,25 - 45,Caucasian,0,5,0,0,8,-1,2013-04-10 09:31:05,2013-04-15 09:09:29,13006980MM10A,2013-04-10,,1,M,Battery,1,13003502MM40A,(M1),294,2013-08-25,Resist/Obstruct W/O Violence,2014-06-15,2014-06-16,,0,,,,,Risk of Recidivism,5,Medium,2013-04-11,Risk of Violence,3,Low,2013-04-11,2013-04-10,2013-04-15,8,4,136,1,1\r\n364,jose louis,jose,louis,2013-09-06,Male,1990-09-08,25,25 - 45,African-American,0,3,0,0,0,0,2013-09-06 01:00:30,2013-09-06 09:12:00,13012559CF10A,2013-09-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-09-06,2013-09-06,0,0,938,0,0\r\n366,luis velasco,luis,velasco,2013-01-31,Male,1994-04-16,22,Less than 25,Caucasian,0,8,0,1,1,0,2013-01-31 12:38:45,2013-02-06 11:18:24,13002163MM10A,2013-01-31,,0,M,Voyeurism,1,14009724CF10A,(F3),0,2014-07-16,Grand Theft in the 3rd Degree,2014-07-16,2014-07-23,,0,,,,,Risk of Recidivism,8,High,2013-01-31,Risk of Violence,7,Medium,2013-01-31,2014-07-16,2014-07-23,1,6,531,1,1\r\n369,patria barnes,patria,barnes,2013-12-09,Female,1978-06-06,37,25 - 45,Other,0,1,0,0,0,-1,2013-12-08 01:55:28,2013-12-09 02:00:59,13022717MM10A,2013-12-07,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,1,Low,2013-12-09,2013-12-08,2013-12-09,0,0,844,0,0\r\n372,claire aspelly,claire,aspelly,2013-10-23,Female,1975-06-08,40,25 - 45,Other,0,2,0,0,3,-1,2013-10-22 09:03:15,2013-10-23 09:05:27,13014829CF10A,2013-10-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-23,Risk of Violence,1,Low,2013-10-23,2013-10-22,2013-10-23,3,0,891,0,0\r\n374,anthony kasprow,anthony,kasprow,2014-03-11,Male,1980-01-31,36,25 - 45,Caucasian,0,7,0,0,8,150,2014-08-08 04:01:22,2014-08-30 08:45:38,14003451CF10A,2014-03-11,,0,F,Felony Driving While Lic Suspd,1,14012031MM10A,(M1),0,2014-08-08,Battery,2014-08-08,2014-08-30,,1,14012031MM10A,(M1),2014-08-08,Battery,Risk of Recidivism,7,Medium,2014-03-11,Risk of Violence,9,High,2014-03-11,2014-08-08,2014-08-30,8,0,150,1,1\r\n375,michael mackrell,michael,mackrell,2014-02-12,Male,1985-05-14,30,25 - 45,Caucasian,0,2,0,0,4,-140,2013-09-25 02:54:17,2013-11-26 12:02:49,13013491CF10A,2013-09-25,,140,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-12,Risk of Violence,2,Low,2014-02-12,2013-09-25,2013-11-26,4,0,779,0,0\r\n376,mark plummer,mark,plummer,2014-03-18,Male,1993-12-22,22,Less than 25,African-American,0,9,0,0,3,161,2014-08-26 09:15:02,2014-08-27 04:21:56,13016165MM10A,2013-08-22,,208,M,Prowling/Loitering,1,14016921TC10A,(M2),128,2014-04-20,Unlaw LicTag/Sticker Attach,2014-08-26,2014-08-27,,1,14017564MM10A,(M1),2014-12-14,Battery,Risk of Recidivism,9,High,2014-03-18,Risk of Violence,9,High,2014-03-18,2016-03-05,2016-03-21,3,0,33,1,1\r\n377,ashley emond,ashley,emond,2013-09-30,Female,1991-05-18,24,Less than 25,Caucasian,0,7,0,0,1,-32,2013-08-29 02:32:59,2013-09-27 06:25:27,13016565MM10A,2013-08-29,,32,M,Battery,1,14015676MM10A,(M1),0,2014-10-29,Battery,2014-10-29,2014-10-30,,1,14015676MM10A,(M1),2014-10-29,Battery,Risk of Recidivism,7,Medium,2013-09-30,Risk of Violence,5,Medium,2013-09-30,2014-10-29,2014-10-30,1,0,394,1,1\r\n378,antonio cooper,antonio,cooper,2014-07-09,Male,1989-02-07,27,25 - 45,African-American,0,2,0,0,3,-44,2014-05-26 12:17:57,2014-06-02 06:46:02,14008448MM10A,2014-05-24,,46,M,Viol Prot Injunc Repeat Viol,1,15008890CF10A,(F3),0,2015-07-10,Poss Pyrrolidinovalerophenone,2015-07-10,2015-07-12,,0,,,,,Risk of Recidivism,2,Low,2014-07-09,Risk of Violence,3,Low,2014-07-09,2015-07-10,2015-07-12,3,0,366,1,1\r\n379,andrea rojas,andrea,rojas,2013-03-09,Female,1984-10-16,31,25 - 45,Hispanic,0,2,0,0,0,-1,2013-03-08 09:57:50,2013-03-09 07:56:27,13004727MM10A,2013-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-09,Risk of Violence,2,Low,2013-03-09,2013-03-08,2013-03-09,0,0,1119,0,0\r\n381,jhonatan franco,jhonatan,franco,2013-01-31,Male,1992-05-29,23,Less than 25,Hispanic,0,6,0,1,1,-1,2013-01-30 01:13:56,2013-01-31 07:24:25,13001516CF10A,,2013-01-30,1,F,arrest case no charge,1,13005901CF10A,(F3),1,2013-04-23,Grand Theft in the 3rd Degree,2013-04-24,2013-04-25,,0,,,,,Risk of Recidivism,6,Medium,2013-01-31,Risk of Violence,4,Low,2013-01-31,2013-04-24,2013-04-25,1,0,82,1,1\r\n382,erin hoppus,erin,hoppus,2014-03-12,Female,1992-05-13,23,Less than 25,Caucasian,0,5,0,4,5,-1,2014-03-11 07:31:05,2014-03-12 01:39:43,14003430CF10A,,2014-03-11,1,F,arrest case no charge,1,15014607CF10A,(M1),0,2015-11-09,Possess Drug Paraphernalia,2015-11-09,2015-11-10,,0,,,,,Risk of Recidivism,5,Medium,2014-03-12,Risk of Violence,7,Medium,2014-03-12,2015-11-09,2015-11-10,5,0,607,1,1\r\n383,david suarez,david,suarez,2013-02-04,Male,1992-02-06,24,Less than 25,Hispanic,0,8,0,0,0,-3,2013-02-01 09:51:10,2013-02-02 01:42:28,13002376MM10A,2013-02-01,,3,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-04,Risk of Violence,7,Medium,2013-02-04,2013-02-01,2013-02-02,0,0,1152,0,0\r\n384,calvin ellis,calvin,ellis,2014-04-01,Male,1987-01-22,29,25 - 45,African-American,0,3,0,0,1,-1,2014-03-31 02:14:12,2014-04-01 01:22:49,14005495MM10A,2014-03-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-04-01,Risk of Violence,3,Low,2014-04-01,2014-03-31,2014-04-01,1,0,731,0,0\r\n385,tyler tenney,tyler,tenney,2013-11-18,Male,1995-07-14,20,Less than 25,African-American,0,8,0,0,1,-1,2013-11-17 04:24:59,2013-11-18 07:25:07,13015983CF10A,2013-11-17,,1,F,Carrying Concealed Firearm,1,14002931CF10A,(F3),0,2014-03-02,Possession Of Methamphetamine,2014-03-02,2014-07-01,,1,14002931CF10A,(F3),2014-03-02,Felony Battery (Dom Strang),Risk of Recidivism,8,High,2013-11-18,Risk of Violence,7,Medium,2013-11-18,2014-03-02,2014-07-01,1,0,104,1,1\r\n386,roderick woods,roderick,woods,2013-02-14,Male,1985-11-27,30,25 - 45,African-American,0,6,0,0,2,-1,2013-02-13 11:48:59,2013-02-15 05:23:42,13002274CF10A,2013-02-13,,1,F,Carrying Concealed Firearm,1,13010855CF10A,(F2),135,2013-04-10,Poss Cocaine/Intent To Del/Sel,2013-08-23,2013-09-19,,0,,,,,Risk of Recidivism,6,Medium,2013-02-14,Risk of Violence,5,Medium,2013-02-14,2013-02-13,2013-02-15,2,1,55,1,1\r\n389,johnny toussaint,johnny,toussaint,2013-03-12,Male,1976-11-20,39,25 - 45,Other,0,1,0,0,0,-1,2013-03-11 10:17:29,2013-03-12 07:59:36,13003569CF10A,2013-03-11,,1,F,Throw In Occupied Dwell,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-10-02,2013-10-03,0,0,204,0,0\r\n390,antonio barnes,antonio,barnes,2013-08-07,Male,1988-06-03,27,25 - 45,African-American,0,4,0,0,4,-1,2013-08-06 09:00:30,2013-08-07 08:23:22,13010054CF10A,,2013-08-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-07,Risk of Violence,4,Low,2013-08-07,2015-07-08,2015-07-21,4,0,700,0,0\r\n392,gershon rapoport,gershon,rapoport,2013-07-16,Male,1984-09-15,31,25 - 45,Caucasian,0,4,0,0,2,812,2015-10-06 11:57:33,2015-10-17 07:38:17,08008163MM10A,,2010-10-04,1016,M,arrest case no charge,1,15012910CF10A,(F3),0,2015-10-06,Possession of Cocaine,2015-10-06,2015-10-17,,0,,,,,Risk of Recidivism,4,Low,2013-07-16,Risk of Violence,3,Low,2013-07-16,2015-10-06,2015-10-17,2,0,812,1,0\r\n393,ruth etienne,ruth,etienne,2013-12-03,Female,1978-08-23,37,25 - 45,African-American,0,1,0,0,2,0,2013-12-03 12:48:34,2013-12-04 07:43:54,13016786CF10A,,2013-12-03,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-03,Risk of Violence,1,Low,2013-12-03,2014-09-23,2014-10-07,2,1,294,0,0\r\n396,dominick akinpello,dominick,akinpello,2014-02-19,Male,1995-04-20,20,Less than 25,African-American,0,8,0,0,0,-1,2014-02-18 09:37:20,2014-02-21 04:07:45,14002312CF10A,2014-02-18,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-19,Risk of Violence,6,Medium,2014-02-19,2014-02-18,2014-02-21,0,2,772,0,0\r\n398,sebastian claros,sebastian,claros,2013-04-20,Male,1994-04-16,22,Less than 25,Hispanic,0,7,0,1,0,0,2013-04-20 02:16:15,2013-04-22 03:48:37,13005681CF10A,2013-04-20,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-20,Risk of Violence,6,Medium,2013-04-20,2013-06-25,2013-07-02,0,2,66,0,0\r\n399,karen storey-broderick,karen,storey-broderick,2013-08-02,Female,1963-09-25,52,Greater than 45,African-American,0,1,0,0,0,-1,2013-08-01 10:03:28,2013-08-02 02:00:46,13010773CF10A,2013-08-01,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,2013-08-01,2013-08-02,0,0,973,0,0\r\n400,daritte bonner,daritte,bonner,2014-08-02,Female,1993-01-24,23,Less than 25,African-American,0,4,0,0,0,-1,2014-08-01 09:19:33,2014-08-05 04:16:00,14010500CF10A,2014-08-01,,1,F,Carrying Concealed Firearm,1,15069017TC40A,(M2),,2015-11-13,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2014-08-02,Risk of Violence,4,Low,2014-08-02,2014-08-01,2014-08-05,0,3,468,1,1\r\n402,roselia scott,roselia,scott,2013-11-13,Female,1967-08-30,48,Greater than 45,African-American,0,2,0,0,0,-1,2013-11-12 10:24:10,2013-11-14 06:47:41,13015723CF10A,2013-11-12,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-13,Risk of Violence,3,Low,2013-11-13,2013-11-12,2013-11-14,0,1,870,0,0\r\n403,johnny franklin,johnny,franklin,2013-07-26,Male,1949-06-17,66,Greater than 45,African-American,0,6,0,0,8,,,,12000507CF10A,2012-01-11,,562,F,Deliver Cocaine,1,15013743TC40A,(M2),,2015-02-17,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-26,Risk of Violence,1,Low,2013-07-26,2001-07-10,2003-08-29,8,0,571,1,1\r\n404,daniel carvallo,daniel,carvallo,2013-04-20,Male,1990-07-20,25,25 - 45,Caucasian,0,5,0,0,0,0,2013-04-20 02:39:55,2013-04-20 07:15:12,13005683CF10A,2013-04-19,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-20,Risk of Violence,4,Low,2013-04-20,2014-04-10,2014-04-15,0,0,355,0,0\r\n405,gary hrinda,gary,hrinda,2013-04-08,Male,1988-06-06,27,25 - 45,Caucasian,0,6,0,0,0,-1,2013-04-07 11:02:06,2013-04-09 04:14:39,13004978CF10A,2013-04-07,,1,F,Grand Theft in the 3rd Degree,1,13015848CF10A,(F3),0,2013-11-14,Aggravated Assault W/Dead Weap,2013-11-14,2014-07-14,,1,13015848CF10A,(F3),2013-11-14,Aggravated Assault W/Dead Weap,Risk of Recidivism,6,Medium,2013-04-08,Risk of Violence,7,Medium,2013-04-08,2013-11-14,2014-07-14,0,1,220,1,1\r\n406,horace orie,horace,orie,2014-10-02,Male,1986-04-17,30,25 - 45,African-American,0,7,0,0,11,0,2014-10-02 03:21:16,2014-10-03 03:32:38,14013295CF10A,2014-10-02,,0,F,Unauth Poss ID Card or DL,1,15004417MM10A,(M1),0,2015-04-17,Possess Drug Paraphernalia,2015-04-17,2015-04-18,,0,,,,,Risk of Recidivism,7,Medium,2014-10-02,Risk of Violence,6,Medium,2014-10-02,2015-04-17,2015-04-18,11,1,197,1,1\r\n407,markendy metayer,markendy,metayer,2013-01-11,Male,1993-12-31,22,Less than 25,African-American,0,10,1,1,3,-1,2013-01-10 03:17:29,2013-01-11 11:36:36,13000595MM10A,2013-01-10,,1,M,Battery,1,13001027MM10A,(M1),0,2013-01-15,Resist/Obstruct W/O Violence,2013-01-15,2013-01-17,,0,,,,,Risk of Recidivism,10,High,2013-01-11,Risk of Violence,7,Medium,2013-01-11,2013-01-15,2013-01-17,3,0,4,1,1\r\n408,genny robbins,genny,robbins,2013-12-31,Female,1993-05-16,22,Less than 25,Caucasian,0,3,0,0,1,-1,2013-12-30 10:48:07,2013-12-31 09:49:50,13017994CF10A,2013-12-30,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-31,Risk of Violence,4,Low,2013-12-31,2013-12-30,2013-12-31,1,0,822,0,0\r\n409,laroyce odom,laroyce,odom,2014-01-24,Male,1980-12-19,35,25 - 45,African-American,0,10,0,0,2,,,,14001155CF10A,,2014-01-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-24,Risk of Violence,8,High,2014-01-24,2004-06-16,2005-03-04,2,0,798,0,0\r\n410,john provenzano,john,provenzano,2013-09-06,Male,1984-04-04,32,25 - 45,Caucasian,0,4,0,0,2,-232,2013-01-17 09:43:27,2013-02-26 11:12:02,12017006CF10A,,2013-01-17,232,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-01-17,2013-02-26,2,0,938,0,0\r\n411,jarah king,jarah,king,2013-08-05,Female,1975-03-11,41,25 - 45,African-American,0,3,0,0,2,-1,2013-08-04 07:42:27,2013-08-05 06:31:46,13010816CF10A,2013-08-04,,1,M,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-05,Risk of Violence,1,Low,2013-08-05,2013-08-04,2013-08-05,2,0,970,0,0\r\n414,sarah guerrier,sarah,guerrier,2014-01-29,Female,1990-09-14,25,25 - 45,Other,0,2,0,0,0,-1,2014-01-28 10:39:22,2014-01-29 08:33:42,14001235CF10A,2014-01-28,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-29,Risk of Violence,3,Low,2014-01-29,2014-01-28,2014-01-29,0,0,793,0,0\r\n415,james martin,james,martin,2013-04-11,Male,1971-10-07,44,25 - 45,African-American,0,7,0,0,24,53,2013-06-03 12:59:33,2013-09-29 05:18:00,13013026TC10A,2013-03-11,,31,M,Opert With Susp DL 2nd Offens,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-11,Risk of Violence,3,Low,2013-04-11,2013-06-03,2013-09-29,24,0,53,0,0\r\n416,terry miller,terry,miller,2013-12-10,Male,1963-07-14,52,Greater than 45,African-American,0,6,0,0,3,0,2013-12-10 12:12:27,2014-01-04 10:22:47,13017014CF10A,2013-12-09,,1,F,Possession of Cocaine,1,14000935CF10A,(F3),0,2014-01-22,Possession of Cocaine,2014-01-22,2014-03-05,,0,,,,,Risk of Recidivism,6,Medium,2013-12-10,Risk of Violence,2,Low,2013-12-10,2014-01-22,2014-03-05,3,25,43,1,1\r\n417,alfranzwell myers,alfranzwell,myers,2013-04-05,Male,1972-05-07,43,25 - 45,African-American,0,1,0,0,0,-1,2013-04-04 07:55:57,2013-05-15 08:09:02,13004852CF10A,2013-04-04,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-05,Risk of Violence,1,Low,2013-04-05,2013-04-04,2013-05-15,0,40,1092,0,0\r\n423,christopher wolter,christopher,wolter,2014-03-05,Male,1978-05-10,37,25 - 45,Caucasian,0,1,0,0,3,-4,2014-03-01 11:39:37,2014-03-04 09:02:34,13015173CF10A,,2014-03-01,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-05,Risk of Violence,1,Low,2014-03-05,2014-03-01,2014-03-04,3,0,758,0,0\r\n424,immanuel crafton,immanuel,crafton,2014-06-20,Male,1987-05-17,28,25 - 45,African-American,0,4,0,0,3,299,2015-04-15 09:07:50,2015-04-18 02:29:53,14001214MM40A,2014-03-12,,100,M,Possess Cannabis/20 Grams Or Less,1,15004954CF10A,(F2),0,2015-04-15,Aggravated Battery / Pregnant,2015-04-15,2015-04-18,,1,15004954CF10A,(F2),2015-04-15,Aggravated Battery / Pregnant,Risk of Recidivism,4,Low,2014-06-20,Risk of Violence,3,Low,2014-06-20,2015-04-15,2015-04-18,3,0,299,1,1\r\n425,karl weimar,karl,weimar,2013-04-18,Male,1946-03-20,70,Greater than 45,Caucasian,0,1,0,0,1,-13,2013-04-05 11:19:07,2013-04-18 10:45:47,13006582MM10A,2013-04-05,,13,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2013-04-05,2013-04-18,1,0,1079,0,0\r\n426,anthony santella,anthony,santella,2014-07-01,Male,1962-04-18,54,Greater than 45,Caucasian,0,2,0,0,6,-266,2013-10-08 03:55:57,2013-10-09 02:37:39,13011349CF10A,2013-08-13,,322,F,Possession of Cocaine,1,15010739CF10A,(F3),0,2015-08-19,Possession Of Alprazolam,2015-08-19,2015-08-21,,0,,,,,Risk of Recidivism,2,Low,2014-07-01,Risk of Violence,1,Low,2014-07-01,2015-08-19,2015-08-21,6,0,414,1,1\r\n428,john fox,john,fox,2013-05-01,Male,1970-02-13,46,Greater than 45,Caucasian,0,4,0,0,3,-1,2013-04-30 04:31:44,2013-05-14 09:41:21,06021703CF10A,,2013-04-30,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2013-04-30,2013-05-14,3,13,1066,0,0\r\n429,ahmaad hodges,ahmaad,hodges,2013-03-04,Male,1994-06-10,21,Less than 25,African-American,0,9,0,0,0,-1,2013-03-03 04:32:45,2013-03-04 07:27:23,13004316MM10A,2013-03-03,,1,M,Petit Theft,1,13022684MM10A,(M2),0,2013-12-07,Petit Theft,2013-12-07,2013-12-08,,0,,,,,Risk of Recidivism,9,High,2013-03-04,Risk of Violence,7,Medium,2013-03-04,2013-12-07,2013-12-08,0,0,278,1,1\r\n430,milot bastian,milot,bastian,2014-07-15,Male,1989-09-13,26,25 - 45,African-American,0,8,0,0,1,-1,2014-07-14 06:15:12,2014-07-16 02:43:22,14010769MM10A,2014-07-14,,1,M,Battery,1,15011432CF10A,(F3),0,2015-09-03,Tamper With Witness/Victim/CI,2015-09-03,2015-09-14,,1,15011432CF10A,(F3),2015-09-03,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2014-07-15,Risk of Violence,6,Medium,2014-07-15,2015-09-03,2015-09-14,1,1,415,1,1\r\n431,manuel luque,manuel,luque,2013-06-10,Male,1977-10-19,38,25 - 45,Hispanic,0,1,0,0,3,23,2013-07-03 03:38:42,2013-07-05 01:58:20,13004056CF10A,2013-03-20,,82,F,Crim Use of Personal ID Info,1,13009368CF10A,(F3),0,2013-07-03,Grand Theft in the 3rd Degree,2013-07-03,2013-07-05,,0,,,,,Risk of Recidivism,1,Low,2013-06-10,Risk of Violence,1,Low,2013-06-10,2013-07-03,2013-07-05,3,0,23,1,1\r\n432,dale quimby,dale,quimby,2014-01-20,Male,1982-01-10,34,25 - 45,Caucasian,0,4,0,0,5,-1,2014-01-19 03:20:12,2014-01-20 07:58:57,14000963MM10A,2014-01-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-20,Risk of Violence,4,Low,2014-01-20,2014-01-19,2014-01-20,5,0,802,0,0\r\n434,bernard young,bernard,young,2014-12-11,Male,1996-07-06,19,Less than 25,African-American,0,5,0,0,1,-48,2014-10-24 09:01:54,2014-12-11 10:38:56,14014333CF10A,2014-10-24,,48,F,Grand Theft in the 3rd Degree,1,16002972MM10A,(M1),0,2016-03-27,,2016-03-27,2016-04-06,,0,,,,,Risk of Recidivism,5,Medium,2014-12-11,Risk of Violence,7,Medium,2014-12-11,2016-03-27,2016-04-06,1,0,472,1,1\r\n435,vladimir ducard,vladimir,ducard,2013-12-04,Male,1981-12-15,34,25 - 45,African-American,0,4,0,0,5,-1,2013-12-03 09:45:00,2013-12-04 08:51:32,13022481MM10A,2013-12-03,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-04,Risk of Violence,4,Low,2013-12-04,2013-12-03,2013-12-04,5,0,849,0,0\r\n437,alex garay,alex,garay,2014-02-27,Male,1992-05-05,23,Less than 25,Caucasian,0,5,0,0,0,0,2014-02-27 12:30:23,2014-02-28 04:08:47,14002791CF10A,2014-02-26,,1,F,Aggravated Assault W/Dead Weap,1,15022297TC40A,(M2),,2015-03-07,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-27,Risk of Violence,5,Medium,2014-02-27,2014-02-27,2014-02-28,0,1,373,1,1\r\n438,johnny owens,johnny,owens,2013-01-31,Male,1981-06-29,34,25 - 45,African-American,0,4,0,0,5,-1,2013-01-30 11:54:49,2013-02-02 07:32:19,13001502CF10A,2013-01-30,,1,F,Possession of Oxycodone,1,13010275CF10A,(M1),1,2013-07-21,Possess Cannabis/20 Grams Or Less,2013-07-22,2013-09-20,,0,,,,,Risk of Recidivism,4,Low,2013-01-31,Risk of Violence,2,Low,2013-01-31,2013-01-30,2013-02-02,5,2,171,1,1\r\n439,widner francois,widner,francois,2013-10-25,Male,1985-11-11,30,25 - 45,African-American,0,1,0,0,2,-83,2013-08-03 02:56:01,2013-10-25 10:49:05,13004490CF10A,,2013-08-03,83,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-25,Risk of Violence,2,Low,2013-10-25,2013-08-03,2013-10-25,2,0,889,0,0\r\n440,trevin miller,trevin,miller,2013-11-05,Male,1976-09-22,39,25 - 45,African-American,0,3,0,0,6,-1,2013-11-04 06:35:23,2013-11-07 03:15:19,13015381CF10A,2013-11-04,,1,F,Aggravated Battery / Pregnant,1,14008136TC10A,(M2),,2013-12-23,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-05,Risk of Violence,1,Low,2013-11-05,2013-11-04,2013-11-07,6,2,48,1,1\r\n441,mohammed alshibi,mohammed,alshibi,2013-04-09,Male,1991-06-20,24,Less than 25,Other,0,3,0,0,0,-1,2013-04-08 08:55:48,2013-04-09 10:21:22,13005050CF10A,2013-04-08,,1,F,Failure To Return Hired Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-09,Risk of Violence,5,Medium,2013-04-09,2013-04-08,2013-04-09,0,0,1088,0,0\r\n442,frans barens,frans,barens,2014-06-30,Male,1982-05-23,33,25 - 45,Caucasian,0,3,0,0,1,-93,2014-03-29 07:09:12,2014-03-29 09:12:15,14012358MU10A,2014-03-29,,93,M,Driving Under The Influence,1,15010566CF10A,(F3),0,2015-08-16,Tamper With Witness/Victim/CI,2015-08-16,2015-08-17,,1,15010566CF10A,(F3),2015-08-16,Felony Battery (Dom Strang),Risk of Recidivism,3,Low,2014-06-30,Risk of Violence,2,Low,2014-06-30,2015-08-16,2015-08-17,1,0,412,1,1\r\n445,orlando gomez,orlando,gomez,2013-02-23,Male,1957-11-28,58,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-02-22 07:47:53,2013-02-24 02:27:52,13002760CF10A,2013-02-22,,1,F,Agg Fleeing/Eluding High Speed,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-24,2,1,1133,0,0\r\n446,mikerlie debe,mikerlie,debe,2013-01-01,Female,1994-10-09,21,Less than 25,African-American,0,6,0,0,0,0,2013-01-01 04:17:22,2013-01-02 01:14:43,13000062MM10A,2013-01-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-01,Risk of Violence,7,Medium,2013-01-01,2013-01-01,2013-01-02,0,1,1186,0,0\r\n450,ernest kinard,ernest,kinard,2013-08-09,Male,1994-08-06,21,Less than 25,African-American,0,5,0,0,1,-36,2013-07-04 07:01:53,2013-08-09 11:23:41,13009398CF10A,2013-07-04,,36,F,Attempted Robbery  No Weapon,1,16003477CF10A,(F2),0,2016-03-21,,2016-03-21,2016-04-01,,0,,,,,Risk of Recidivism,5,Medium,2013-08-09,Risk of Violence,7,Medium,2013-08-09,2016-03-21,2016-04-01,1,0,955,1,0\r\n451,otis wimberly,otis,wimberly,2013-12-06,Male,1993-03-01,23,Less than 25,African-American,0,8,0,1,4,-11,2013-11-25 06:26:46,2013-12-06 10:30:18,13022144MM10A,2013-11-25,,11,M,Possess Cannabis/20 Grams Or Less,1,14012035MM10A,(M1),0,2014-08-09,Possess Cannabis/20 Grams Or Less,2014-08-09,2014-08-13,,0,,,,,Risk of Recidivism,8,High,2013-12-06,Risk of Violence,5,Medium,2013-12-06,2014-08-09,2014-08-13,4,0,246,1,1\r\n452,steven lux,steven,lux,2013-01-05,Male,1953-06-15,62,Greater than 45,Caucasian,0,1,0,0,0,0,2013-01-05 04:35:31,2013-01-07 03:18:03,13000208CF10A,2013-01-05,,0,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-05,Risk of Violence,1,Low,2013-01-05,2014-03-25,2014-03-26,0,2,444,0,0\r\n454,terrance mckinney,terrance,mckinney,2013-04-24,Male,1989-01-08,27,25 - 45,African-American,1,8,0,1,4,300,2014-02-18 06:54:26,2014-02-19 01:53:49,11011470MM10A,2011-05-18,,707,M,Possess Cannabis/20 Grams Or Less,1,14004524CF10A,(F3),0,2014-02-18,Grand Theft in the 3rd Degree,2014-02-18,2014-02-19,,0,,,,,Risk of Recidivism,8,High,2013-04-24,Risk of Violence,10,High,2013-04-24,2014-02-18,2014-02-19,4,0,300,1,1\r\n456,chandra hintz,chandra,hintz,2013-12-02,Male,1979-03-04,37,25 - 45,Caucasian,0,3,0,0,5,-1,2013-12-01 04:23:01,2013-12-12 03:25:01,13016617CF10A,2013-12-01,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-12,5,10,851,0,0\r\n457,ruel lindsay,ruel,lindsay,2013-08-16,Male,1972-05-14,43,25 - 45,Other,0,2,0,0,2,-1,2013-08-15 06:13:32,2013-08-23 03:50:34,13011490CF10A,2013-08-15,,1,F,Grand Theft in the 3rd Degree,1,15006595CF10A,(F3),,2015-04-22,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-16,Risk of Violence,1,Low,2013-08-16,2013-08-15,2013-08-23,2,7,614,1,1\r\n459,lunie mathurin,lunie,mathurin,2013-12-01,Female,1983-05-22,32,25 - 45,African-American,0,1,0,0,5,0,2013-12-01 12:02:58,2013-12-01 09:53:20,13016612CF10A,2013-11-29,,2,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-01,Risk of Violence,1,Low,2013-12-01,2013-12-01,2013-12-01,5,0,852,0,0\r\n461,juan reyes,juan,reyes,2013-12-31,Male,1992-09-30,23,Less than 25,Hispanic,0,3,0,0,0,-1,2013-12-30 11:58:41,2014-02-14 10:05:11,13017986CF10A,2013-12-30,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-31,Risk of Violence,5,Medium,2013-12-31,2015-04-08,2015-04-22,0,45,463,0,0\r\n462,keishon reeves,keishon,reeves,2013-04-08,Male,1988-06-05,27,25 - 45,African-American,0,1,0,0,0,0,2013-04-08 12:40:45,2013-04-09 07:53:30,13006656MM10A,2013-04-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-08,Risk of Violence,2,Low,2013-04-08,2013-04-08,2013-04-09,0,1,1089,0,0\r\n463,jeffrey anderson,jeffrey,anderson,2014-01-02,Male,1971-08-12,44,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-01 04:24:33,2014-01-02 09:45:19,14000043MM10A,2014-01-01,,1,M,Battery,1,15009615CF10A,(F3),0,2015-07-26,Neglect Child / No Bodily Harm,2015-07-26,2015-07-27,,0,,,,,Risk of Recidivism,1,Low,2014-01-02,Risk of Violence,1,Low,2014-01-02,2015-07-26,2015-07-27,0,0,570,1,1\r\n464,julissa hernandez,julissa,hernandez,2013-02-18,Male,1987-07-26,28,25 - 45,Caucasian,0,3,0,0,3,-1,2013-02-17 01:53:58,2013-02-18 01:13:47,13003414MM10A,2013-02-17,,1,M,Battery,1,14034507TC30A,(M2),,2014-04-06,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-18,Risk of Violence,3,Low,2013-02-18,2016-01-05,2016-01-05,3,0,412,1,1\r\n465,melissa davis,melissa,davis,2013-05-28,Female,1974-03-11,42,25 - 45,Caucasian,0,2,0,0,0,-3,2013-05-25 04:27:15,2013-05-26 07:10:19,13007473CF10A,2013-05-25,,3,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,1,Low,2013-05-28,2013-07-24,2013-08-12,0,0,57,0,0\r\n467,franki vixama,franki,vixama,2013-03-16,Male,1991-07-21,24,Less than 25,Other,0,10,1,0,9,-1,2013-03-15 12:03:21,2013-03-20 02:58:22,13003838CF10A,2013-03-15,,1,F,Resist Officer w/Violence,1,13010824MM10A,(M1),1,2013-06-04,Resist/Obstruct W/O Violence,2013-06-05,2013-07-19,,1,13010824MM10A,(M2),2013-06-04,Assault,Risk of Recidivism,10,High,2013-03-16,Risk of Violence,10,High,2013-03-16,2013-03-15,2013-03-20,9,4,80,1,1\r\n468,seymour brown,seymour,brown,2014-01-14,Male,1988-04-23,27,25 - 45,African-American,0,2,0,0,0,0,2014-01-14 03:37:34,2014-01-31 09:03:48,14000626CF10A,2014-01-14,,0,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-14,Risk of Violence,3,Low,2014-01-14,2014-01-14,2014-01-31,0,17,808,0,0\r\n469,wayne aristide,wayne,aristide,2014-08-19,Male,1995-05-16,20,Less than 25,African-American,0,10,0,0,0,-1,2014-08-18 05:35:24,2014-08-19 01:42:04,14011290CF10A,2014-08-18,,1,F,Grand Theft (Motor Vehicle),1,14033790TC10A,(M2),0,2014-09-18,Operating W/O Valid License,2014-09-18,2014-09-22,,0,,,,,Risk of Recidivism,10,High,2014-08-19,Risk of Violence,9,High,2014-08-19,2014-09-18,2014-09-22,0,0,30,1,1\r\n474,ann-marie cassagnol,ann-marie,cassagnol,2014-03-22,Female,1964-08-13,51,Greater than 45,Caucasian,0,1,0,0,0,0,2014-03-22 02:29:28,2014-03-23 09:07:31,14004060CF10A,2014-03-21,,1,M,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-22,2014-03-23,0,1,741,0,0\r\n475,stephen kushner,stephen,kushner,2013-12-11,Male,1959-11-10,56,Greater than 45,Caucasian,0,1,0,0,0,0,2013-12-11 03:02:20,2013-12-12 08:42:00,13017125CF10A,2013-12-10,,1,M,Battery On Parking Enfor Speci,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2013-12-11,2013-12-12,0,1,842,0,0\r\n478,patrick scott,patrick,scott,2013-04-25,Male,1986-09-04,29,25 - 45,African-American,0,9,0,0,7,-1,2013-04-24 05:02:29,2013-04-25 09:15:28,13001900CF10A,,2013-04-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-25,Risk of Violence,6,Medium,2013-04-25,2013-04-24,2013-04-25,7,0,1072,0,0\r\n480,iron holder,iron,holder,2014-01-11,Male,1995-10-27,20,Less than 25,African-American,0,9,0,0,0,-1,2014-01-10 07:41:14,2014-08-08 05:21:03,14000429CF10A,2014-01-10,,1,F,Grand Theft in the 3rd Degree,1,14014226MO10A,(MO3),0,2014-09-26,Enter City Park/ Prohibited Hrs,2014-09-26,2014-10-11,,0,,,,,Risk of Recidivism,9,High,2014-01-11,Risk of Violence,8,High,2014-01-11,2014-09-26,2014-10-11,0,209,258,1,1\r\n481,david daffron,david,daffron,2013-10-03,Male,1963-02-19,53,Greater than 45,Caucasian,0,1,0,0,6,-176,2013-04-10 03:34:51,2013-10-01 05:23:18,13005144CF10A,,2013-04-10,176,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-04-10,2013-10-01,6,0,911,0,0\r\n484,kristopher thibault,kristopher,thibault,2013-02-22,Male,1988-06-24,27,25 - 45,Caucasian,0,5,0,0,8,-1,2013-02-21 07:20:51,2013-04-30 10:43:29,13002078CF10A,,2013-02-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-22,Risk of Violence,3,Low,2013-02-22,2014-02-27,2014-10-24,8,67,370,0,0\r\n485,lamuel forbes,lamuel,forbes,2013-03-26,Male,1992-03-15,24,Less than 25,African-American,0,9,1,0,2,-1,2013-03-25 02:04:33,2013-04-13 05:00:10,13004300CF10A,2013-03-25,,1,F,Burglary Structure Unoccup,1,13007869CF10A,(M1),0,2013-06-03,Resist/Obstruct W/O Violence,2013-06-03,2013-07-26,,1,14009712CF10A,(F3),2014-07-15,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2013-03-26,Risk of Violence,9,High,2013-03-26,2013-06-03,2013-07-26,2,18,69,1,1\r\n487,timothy ryan,timothy,ryan,2014-12-11,Male,1963-04-02,53,Greater than 45,Caucasian,0,6,0,0,36,-7,2014-12-04 08:28:26,2015-01-06 08:20:11,14016166CF10A,2014-12-04,,7,F,Corrupt Public Servant,1,15001673MM20A,(M1),,2015-06-25,Trespass Other Struct/Conve,,,,0,,,,,Risk of Recidivism,6,Medium,2014-12-11,Risk of Violence,9,High,2014-12-11,2015-05-08,2015-05-09,36,26,148,0,1\r\n489,michael rosa,michael,rosa,2013-10-04,Male,1988-04-15,28,25 - 45,Caucasian,0,3,0,0,2,0,2013-10-04 01:55:36,2013-10-05 07:07:26,13018910MM10A,2013-10-03,,1,M,Battery,1,14009686TC30A,(M2),,2014-01-19,Driving License Suspended,,,,1,14017790MM10A,(M1),2014-11-27,Battery,Risk of Recidivism,3,Low,2013-10-04,Risk of Violence,4,Low,2013-10-04,2013-10-04,2013-10-05,2,1,107,1,1\r\n493,michael peter,michael,peter,2013-03-13,Male,1971-01-06,45,Greater than 45,African-American,0,1,0,0,1,,,,13003680CF10A,2013-03-12,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-13,Risk of Violence,1,Low,2013-03-13,,,1,0,1115,0,0\r\n494,carlos vasquez,carlos,vasquez,2013-08-02,Male,1995-01-17,21,Less than 25,Hispanic,0,5,1,0,3,-22,2013-07-11 04:30:33,2013-08-02 06:07:24,13009721CF10A,2013-07-11,,22,F,Grand Theft in the 3rd Degree,1,15011166MM10A,(M1),,2015-10-24,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-02,Risk of Violence,6,Medium,2013-08-02,2014-12-16,2015-01-09,3,0,501,0,0\r\n495,kia rodriquez,kia,rodriquez,2013-05-06,Female,1979-07-02,36,25 - 45,African-American,0,7,0,0,0,-1,2013-05-05 08:31:15,2013-05-17 08:35:57,13006433CF10A,2013-05-05,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-06,Risk of Violence,5,Medium,2013-05-06,2013-05-05,2013-05-17,0,11,1061,0,0\r\n496,jodie sena,jodie,sena,2013-01-11,Female,1991-01-26,25,25 - 45,Caucasian,0,4,0,0,2,-2,2013-01-09 08:33:15,2013-01-10 09:40:18,13000518MM10A,2013-01-09,,2,M,Petit Theft,1,13007257CF10A,(F3),0,2013-05-21,Possession of Cocaine,2013-05-21,2013-07-13,,0,,,,,Risk of Recidivism,4,Low,2013-01-11,Risk of Violence,4,Low,2013-01-11,2013-03-06,2013-03-15,2,0,54,0,1\r\n497,helen carrillo,helen,carrillo,2013-04-04,Female,1992-06-09,23,Less than 25,Hispanic,0,3,0,0,1,0,2013-04-04 01:13:56,2013-04-04 11:28:44,13006418MM10A,2013-04-03,,1,M,Operating W/O Valid License,1,15022411TC10A,(M2),0,2015-07-07,Operating W/O Valid License,2015-07-07,2015-07-17,,0,,,,,Risk of Recidivism,3,Low,2013-04-04,Risk of Violence,4,Low,2013-04-04,2015-07-07,2015-07-17,1,0,824,1,0\r\n499,justin knoll,justin,knoll,2014-03-03,Male,1988-02-24,28,25 - 45,Caucasian,0,5,0,0,1,-4,2014-02-27 04:28:02,2014-02-28 08:49:55,14002778CF10A,2014-02-27,,4,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-03,Risk of Violence,3,Low,2014-03-03,2014-07-16,2014-07-17,1,0,135,0,0\r\n500,calvin rogers,calvin,rogers,2013-04-25,Female,1995-02-11,21,Less than 25,African-American,0,8,0,0,0,-1,2013-04-24 04:54:25,2013-04-25 09:10:00,13005881CF10A,2013-04-24,,1,F,Robbery Sudd Snatch No Weapon,1,14001002MM10A,(M2),0,2014-01-21,Mandatory Susp Possess Alcohol,2014-01-21,2014-01-21,,0,,,,,Risk of Recidivism,8,High,2013-04-25,Risk of Violence,7,Medium,2013-04-25,2014-01-21,2014-01-21,0,0,271,0,1\r\n501,derek huffman,derek,huffman,2013-12-23,Male,1979-05-31,36,25 - 45,Caucasian,0,3,0,0,0,-1,2013-12-22 08:25:20,2013-12-23 01:09:26,13023661MM10A,2013-12-22,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-23,Risk of Violence,3,Low,2013-12-23,2013-12-22,2013-12-23,0,0,830,0,0\r\n502,theronardo williams,theronardo,williams,2014-03-13,Male,1992-04-02,24,Less than 25,African-American,0,3,0,0,0,-1,2014-03-12 07:36:15,2014-03-13 01:26:58,14003529CF10A,2014-03-12,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-13,Risk of Violence,4,Low,2014-03-13,2014-03-12,2014-03-13,0,0,750,0,0\r\n503,elliott little,elliott,little,2013-09-06,Male,1988-02-26,28,25 - 45,African-American,0,6,0,0,3,206,2014-03-31 09:18:42,2014-05-02 09:40:25,10005511CF10A,,2011-04-28,862,F,arrest case no charge,1,14012559TC10A,(M2),0,2014-03-31,Operating W/O Valid License,2014-03-31,2014-05-02,,0,,,,,Risk of Recidivism,6,Medium,2013-09-06,Risk of Violence,4,Low,2013-09-06,2014-03-31,2014-05-02,3,0,206,1,1\r\n504,christian atkinson,christian,atkinson,2014-01-24,Male,1986-02-25,30,25 - 45,Other,0,2,0,0,1,-1,2014-01-23 10:49:49,2014-01-24 01:36:58,11020261CF10A,,2014-01-23,1,F,arrest case no charge,1,14052588TC30A,(M2),,2014-06-11,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-24,Risk of Violence,2,Low,2014-01-24,2014-01-23,2014-01-24,1,0,138,1,1\r\n505,tracee chang-scott,tracee,chang-scott,2014-03-02,Male,1986-05-02,29,25 - 45,African-American,0,1,0,0,0,-1,2014-03-01 02:42:35,2014-03-02 08:38:51,14002914CF10A,2014-03-01,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-02,Risk of Violence,2,Low,2014-03-02,2014-03-01,2014-03-02,0,0,761,0,0\r\n509,marilyn cuello,marilyn,cuello,2013-03-22,Female,1986-04-16,30,25 - 45,Caucasian,0,6,0,0,0,0,2013-03-22 12:02:23,2013-03-26 09:46:14,13005576MM10A,2013-03-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-22,Risk of Violence,2,Low,2013-03-22,2013-03-22,2013-03-26,0,4,1106,0,0\r\n510,rafael magana,rafael,magana,2013-12-27,Male,1964-05-15,51,Greater than 45,Hispanic,0,1,0,0,1,-1,2013-12-26 04:15:54,2013-12-27 07:50:46,13023827MM10A,2013-12-25,,2,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-27,Risk of Violence,1,Low,2013-12-27,2013-12-26,2013-12-27,1,0,826,0,0\r\n511,hudson silva,hudson,silva,2013-12-05,Male,1983-03-08,33,25 - 45,Other,0,1,0,0,3,-94,2013-09-02 03:40:45,2013-09-05 04:28:45,13012376CF10A,2013-09-02,,94,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-05,Risk of Violence,1,Low,2013-12-05,2013-09-02,2013-09-05,3,0,848,0,0\r\n512,samantha brown,samantha,brown,2013-12-18,Female,1990-08-10,25,25 - 45,African-American,0,6,0,0,2,-86,2013-09-23 08:31:28,2013-09-25 07:03:03,13013459CF10A,,2013-09-23,86,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-18,Risk of Violence,5,Medium,2013-12-18,2015-06-09,2015-07-06,2,0,538,0,0\r\n516,frederick pinkney,frederick,pinkney,2013-02-16,Male,1983-09-14,32,25 - 45,African-American,0,9,1,0,12,-1,2013-02-15 12:13:14,2013-02-17 01:27:01,13002355CF10A,,2013-02-15,1,F,arrest case no charge,1,14007605TC10A,(M2),,2014-02-12,Driving License Suspended,,,,1,15000254CF10A,(F2),2015-01-06,Robbery / No Weapon,Risk of Recidivism,9,High,2013-02-16,Risk of Violence,7,Medium,2013-02-16,2013-02-15,2013-02-17,12,1,361,1,1\r\n517,quon gwynn,quon,gwynn,2014-01-31,Male,1992-06-15,23,Less than 25,African-American,0,6,0,1,1,0,2014-01-31 01:04:24,2014-02-01 03:16:14,14001353CF10A,2014-01-30,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-31,Risk of Violence,5,Medium,2014-01-31,2014-01-31,2014-02-01,1,1,791,0,0\r\n518,lee humphrey,lee,humphrey,2013-03-25,Male,1968-08-31,47,Greater than 45,African-American,0,3,0,0,3,0,2013-03-25 03:26:29,2013-03-25 07:55:24,13004314CF10A,2013-03-25,,0,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-25,Risk of Violence,2,Low,2013-03-25,2013-06-29,2013-06-30,3,0,96,0,0\r\n521,angela fuller,angela,fuller,2013-09-26,Female,1983-12-07,32,25 - 45,Hispanic,0,3,0,0,1,-80,2013-07-08 09:28:30,2013-07-10 10:28:19,13009535CF10A,2013-07-08,,80,F,Possession of Cocaine,1,14052956TC40A,(M2),,2014-07-25,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-26,Risk of Violence,3,Low,2013-09-26,2013-07-08,2013-07-10,1,0,302,1,1\r\n522,stephen harmon,stephen,harmon,2014-02-25,Male,1978-07-11,37,25 - 45,Caucasian,0,1,0,0,0,-1,2014-02-24 05:11:22,2014-03-15 05:53:52,14002620CF10A,2014-02-25,,0,F,Forging Bank Bills/Promis Note,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,1,Low,2014-02-25,2015-04-13,2015-04-15,0,18,412,0,0\r\n523,jeremy gassett,jeremy,gassett,2014-09-13,Male,1996-08-23,19,Less than 25,African-American,0,10,2,0,2,-1,2014-09-12 06:18:51,2014-09-13 10:54:20,14012419CF10A,2014-09-12,,1,F,Poss Pyrrolidinovalerophenone,1,15012033MM10A,(M1),,2015-11-18,Unlaw Use False Name/Identity,,,,0,,,,,Risk of Recidivism,10,High,2014-09-13,Risk of Violence,9,High,2014-09-13,2014-12-05,2014-12-06,2,0,83,0,1\r\n524,angel bravo,angel,bravo,2014-02-01,Male,1988-06-11,27,25 - 45,Hispanic,0,8,0,0,0,-1,2014-01-31 02:14:52,2014-02-02 04:25:26,14001734MM10A,2014-01-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-01,Risk of Violence,6,Medium,2014-02-01,2014-01-31,2014-02-02,0,1,790,0,0\r\n525,sarada mittapalli,sarada,mittapalli,2013-11-27,Male,1976-07-29,39,25 - 45,Other,0,1,0,0,0,-1,2013-11-26 06:08:42,2013-11-27 02:09:15,13022234MM10A,2013-11-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-27,Risk of Violence,1,Low,2013-11-27,2013-11-26,2013-11-27,0,0,856,0,0\r\n526,kayli wagner,kayli,wagner,2013-02-21,Female,1994-10-07,21,Less than 25,Caucasian,0,6,0,2,0,0,2013-02-21 05:16:18,2013-02-21 09:22:51,13002684CF10A,2013-02-21,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-21,Risk of Violence,8,High,2013-02-21,2013-02-21,2013-02-21,0,0,1135,0,0\r\n527,barry rabinowitz,barry,rabinowitz,2013-01-31,Male,1946-11-16,69,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-30 08:36:13,2013-01-31 07:20:04,13001514CF10A,2013-01-30,,1,M,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-31,Risk of Violence,1,Low,2013-01-31,2013-01-30,2013-01-31,0,0,1156,0,0\r\n530,robert yamin,robert,yamin,2013-11-07,Male,1994-06-29,21,Less than 25,Caucasian,0,6,0,0,2,-1,2013-11-06 07:01:58,2013-11-08 09:11:46,13015487CF10A,,2013-11-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-07,Risk of Violence,6,Medium,2013-11-07,2015-06-07,2015-06-10,2,1,577,0,0\r\n531,dijohn frazier,dijohn,frazier,2013-10-07,Male,1990-02-05,26,25 - 45,African-American,0,10,0,1,6,0,2013-10-07 12:35:37,2013-10-11 06:19:26,13019083MM10A,2013-10-07,,0,M,Battery,1,14008009MM10A,(M1),0,2014-05-16,Viol Pretrial Release Dom Viol,2014-05-16,2014-05-18,,0,,,,,Risk of Recidivism,10,High,2013-10-07,Risk of Violence,10,High,2013-10-07,2014-05-16,2014-05-18,6,4,221,1,1\r\n532,ryan carr,ryan,carr,2013-12-09,Male,1994-01-24,22,Less than 25,Caucasian,0,4,0,0,0,-2,2013-12-07 01:04:19,2013-12-07 02:19:36,13016886CF10A,2013-12-06,,3,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-09,Risk of Violence,5,Medium,2013-12-09,2013-12-07,2013-12-07,0,0,844,0,0\r\n533,aajah herrington,aajah,herrington,2013-04-24,Female,1992-06-02,23,Less than 25,African-American,0,5,0,0,0,-1,2013-04-23 09:37:13,2013-04-24 01:57:01,13005832CF10A,2013-04-23,,1,F,Driving While License Revoked,1,14007863MM10A,(M1),0,2014-05-13,Extradition/Defendants,2014-05-13,2014-06-05,,0,,,,,Risk of Recidivism,5,Medium,2013-04-24,Risk of Violence,5,Medium,2013-04-24,2014-05-13,2014-06-05,0,0,384,1,1\r\n537,mitchell miller,mitchell,miller,2013-10-15,Male,1966-08-19,49,Greater than 45,African-American,0,5,0,0,3,0,2013-10-15 12:10:18,2013-10-19 05:47:48,13014372CF10A,2013-10-14,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-15,Risk of Violence,4,Low,2013-10-15,2015-09-04,2015-09-09,3,4,689,0,0\r\n538,andrew flowers,andrew,flowers,2013-01-30,Male,1986-10-24,29,25 - 45,African-American,0,4,0,1,2,-1,2013-01-29 11:52:49,2013-03-21 07:00:48,13002104MM10A,2013-01-29,,1,M,Battery,1,15004089CF10A,(F3),0,2015-03-27,Possession of Cannabis,2015-03-27,2015-03-28,,0,,,,,Risk of Recidivism,4,Low,2013-01-30,Risk of Violence,3,Low,2013-01-30,2015-03-27,2015-03-28,2,50,786,1,0\r\n540,john cooper,john,cooper,2013-10-14,Female,1955-09-14,60,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-13 05:34:29,2013-10-14 02:36:01,13019421MM10A,2013-10-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-14,Risk of Violence,1,Low,2013-10-14,2013-10-13,2013-10-14,0,0,900,0,0\r\n541,peticia curtis,peticia,curtis,2013-02-05,Female,1989-10-15,26,25 - 45,African-American,0,10,0,0,0,,,,,,,,M,,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-05,Risk of Violence,10,High,2013-02-05,2013-03-30,2013-09-07,0,0,53,0,0\r\n542,bernard augusme,bernard,augusme,2013-05-06,Male,1993-03-26,23,Less than 25,African-American,2,10,0,0,3,0,2013-05-06 02:04:06,2013-05-06 08:01:08,13006471CF10A,2013-05-05,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14004691TC10A,(M2),,2013-12-27,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,10,High,2013-05-06,Risk of Violence,10,High,2013-05-06,2014-06-21,2015-05-08,3,0,235,1,1\r\n543,rudolfo francisco,rudolfo,francisco,2014-04-05,Male,1981-07-06,34,25 - 45,Hispanic,0,5,0,0,2,47,2014-05-22 09:37:00,2014-12-16 06:22:02,12020160MM10A,,2013-07-08,271,M,arrest case no charge,1,14007140CF10A,(F3),0,2014-05-22,Stalking (Aggravated),2014-05-22,2014-12-16,,1,14007140CF10A,(F3),2014-05-22,Stalking (Aggravated),Risk of Recidivism,5,Medium,2014-04-05,Risk of Violence,2,Low,2014-04-05,2014-05-22,2014-12-16,2,0,47,1,1\r\n545,jamelia hutchinson,jamelia,hutchinson,2013-03-12,Female,1995-12-06,20,Less than 25,Other,1,4,0,0,1,-21,2013-02-19 08:48:32,2013-02-22 07:41:48,13002495CF10A,,2013-02-19,21,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-12,Risk of Violence,7,Medium,2013-03-12,2014-10-29,2015-01-26,1,0,596,0,0\r\n546,jose escobar,jose,escobar,2013-04-22,Male,1980-03-17,36,25 - 45,Hispanic,0,3,0,0,1,0,2013-04-22 02:33:46,2013-07-26 05:05:36,13005775CF10A,2013-04-21,,1,F,Felony/Driving Under Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-22,Risk of Violence,2,Low,2013-04-22,2013-09-29,2013-09-29,1,95,160,0,0\r\n547,christopher loosier,christopher,loosier,2013-05-04,Male,1985-07-07,30,25 - 45,Caucasian,0,4,0,0,0,0,2013-05-04 12:45:31,2013-05-06 08:53:01,13006396CF10A,2013-05-03,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-04,Risk of Violence,3,Low,2013-05-04,2013-05-04,2013-05-06,0,2,1063,0,0\r\n548,newton smith,newton,smith,2013-06-17,Male,1995-01-28,21,Less than 25,African-American,0,3,1,0,1,-1,2013-06-16 12:36:42,2013-06-16 07:01:42,13008471CF10A,2013-06-15,,2,F,Grand Theft in the 3rd Degree,1,16003711TC20A,(M2),,2016-01-20,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-17,Risk of Violence,6,Medium,2013-06-17,2013-06-16,2013-06-16,1,0,947,1,0\r\n552,dylan bishop,dylan,bishop,2013-09-09,Male,1994-02-20,22,Less than 25,Caucasian,0,6,0,0,2,-1,2013-09-08 11:40:53,2013-09-09 07:52:09,13012691CF10A,2013-09-08,,1,M,Possess Cannabis/20 Grams Or Less,1,14020723TC10A,(M2),0,2014-06-04,Susp Drivers Lic 1st Offense,2014-06-04,2014-06-11,,0,,,,,Risk of Recidivism,6,Medium,2013-09-09,Risk of Violence,5,Medium,2013-09-09,2014-02-14,2014-02-16,2,0,158,0,1\r\n553,edward gelsey,edward,gelsey,2013-05-08,Male,1959-01-31,57,Greater than 45,African-American,0,8,0,0,18,,,,08000963CF10A,,2008-04-30,1834,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-08,Risk of Violence,7,Medium,2013-05-08,2002-08-20,2003-11-16,18,0,1059,0,0\r\n557,tarell rolle,tarell,rolle,2013-10-22,Male,1995-04-12,21,Less than 25,African-American,0,9,0,0,4,-1,2013-10-21 06:36:46,2014-05-29 04:43:53,13013587CF10A,,2013-10-22,0,F,arrest case no charge,1,14009986CF10A,(M2),1,2014-07-22,Prowling/Loitering,2014-07-23,2015-12-04,,0,,,,,Risk of Recidivism,9,High,2013-10-22,Risk of Violence,6,Medium,2013-10-22,2013-10-21,2014-05-29,4,219,273,1,1\r\n558,usbel ferdinand,usbel,ferdinand,2014-10-09,Male,1994-09-05,21,Less than 25,African-American,0,5,0,0,0,-1,2014-10-08 05:30:17,2014-10-20 09:06:11,14013589CF10A,2014-10-08,,1,F,Burglary Structure Unoccup,1,16001506CF10A,(F3),,2016-01-14,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,5,Medium,2014-10-09,Risk of Violence,6,Medium,2014-10-09,2015-02-05,2015-02-27,0,11,119,0,1\r\n561,jacob maynard,jacob,maynard,2014-02-04,Male,1982-01-17,34,25 - 45,Caucasian,0,1,0,0,1,0,2014-02-04 03:26:12,2014-02-04 08:29:18,14001956MM10A,2014-02-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-02-04,2014-02-04,1,0,787,0,0\r\n563,sandra codorniu,sandra,codorniu,2014-04-08,Female,1965-10-03,50,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-04-07 11:40:45,2014-04-08 09:22:26,14005916MM10A,2014-04-07,,1,M,Battery,1,14010211MM10A,(M1),0,2014-07-02,Viol Injunct Domestic Violence,2014-07-02,2014-07-22,,0,,,,,Risk of Recidivism,1,Low,2014-04-08,Risk of Violence,1,Low,2014-04-08,2014-07-02,2014-07-22,1,0,85,1,1\r\n565,kenneth ray,kenneth,ray,2014-03-30,Male,1975-12-06,40,25 - 45,Caucasian,0,7,0,0,0,-1,2014-03-29 01:49:01,2014-04-06 08:39:14,14004424CF10A,,2014-03-29,1,F,arrest case no charge,1,14007240MM10A,(M1),417,2014-05-01,Resist/Obstruct W/O Violence,2015-06-22,2015-07-26,,0,,,,,Risk of Recidivism,7,Medium,2014-03-30,Risk of Violence,9,High,2014-03-30,2014-03-29,2014-04-06,0,7,32,1,1\r\n566,nicholas neloms,nicholas,neloms,2014-02-25,Male,1990-10-14,25,25 - 45,African-American,0,8,0,0,7,-1,2014-02-24 04:26:33,2014-07-01 09:26:10,14002596CF10A,2014-02-24,,1,F,Tamper With Witness/Victim/CI,1,14003067MM20A,(M1),,2014-10-22,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2014-02-25,Risk of Violence,7,Medium,2014-02-25,2014-02-24,2014-07-01,7,126,239,1,1\r\n567,daria demarinis,daria,demarinis,2013-12-22,Female,1962-11-08,53,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-12-21 05:26:48,2013-12-22 01:41:48,13023548MM10A,2013-12-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-22,Risk of Violence,1,Low,2013-12-22,2013-12-21,2013-12-22,1,0,831,0,0\r\n569,stephanie williams,stephanie,williams,2013-12-14,Female,1991-10-11,24,Less than 25,African-American,0,4,0,0,0,-1,2013-12-13 03:13:07,2013-12-14 07:19:53,13017250CF10A,2013-12-13,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-14,Risk of Violence,4,Low,2013-12-14,2013-12-13,2013-12-14,0,0,839,0,0\r\n572,frantz pointdujour,frantz,pointdujour,2013-06-12,Male,1974-01-10,42,25 - 45,African-American,0,1,0,0,1,-12,2013-05-31 04:44:14,2013-06-04 10:17:31,13007775CF10A,,2013-05-30,13,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-12,Risk of Violence,1,Low,2013-06-12,2013-05-31,2013-06-04,1,0,1024,0,0\r\n573,andre small,andre,small,2013-04-03,Male,1987-10-01,28,25 - 45,African-American,0,3,0,0,1,-1,2013-04-02 12:18:46,2013-04-04 07:54:22,13006354MM10A,2013-04-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-03,Risk of Violence,3,Low,2013-04-03,2013-04-02,2013-04-04,1,1,1094,0,0\r\n574,brad dolph,brad,dolph,2014-02-28,Male,1992-03-13,24,Less than 25,Caucasian,0,4,0,0,1,-36,2014-01-23 01:33:51,2014-02-28 11:14:41,14001265MM10A,2014-01-22,,37,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-28,Risk of Violence,4,Low,2014-02-28,2014-01-23,2014-02-28,1,0,763,0,0\r\n576,jarvis chatman,jarvis,chatman,2013-04-23,Male,1989-07-10,26,25 - 45,African-American,1,8,1,0,6,-1,2013-04-22 07:13:19,2013-04-23 07:33:30,13005774CF10A,2013-04-22,,1,F,Robbery / No Weapon,1,13069699TC20A,(M2),445,2013-11-11,Driving License Suspended,2015-01-30,2015-03-02,,0,,,,,Risk of Recidivism,8,High,2013-04-23,Risk of Violence,3,Low,2013-04-23,2015-09-22,2015-09-23,6,0,202,1,1\r\n579,damien waller,damien,waller,2013-02-05,Male,1994-02-10,22,Less than 25,African-American,0,9,0,0,4,-1,2013-02-04 02:09:53,2013-10-22 06:51:11,13001727CF10A,2013-02-04,,1,F,Grand Theft in the 3rd Degree,1,15000864CF10A,(F3),0,2015-01-20,Robbery Sudd Snatch No Weapon,2015-01-20,2015-08-06,,1,15000864CF10A,(F3),2015-01-20,Robbery Sudd Snatch No Weapon,Risk of Recidivism,9,High,2013-02-05,Risk of Violence,9,High,2013-02-05,2015-01-20,2015-08-06,4,574,714,1,1\r\n580,tyler gay,tyler,gay,2013-08-12,Male,1994-08-04,21,Less than 25,Caucasian,0,7,0,0,3,-8,2013-08-04 03:23:17,2013-08-10 01:02:53,13010743MM10A,,2013-08-04,8,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-12,Risk of Violence,8,High,2013-08-12,2013-08-04,2013-08-10,3,0,963,0,0\r\n581,douglas golding,douglas,golding,2013-03-17,Male,1978-05-02,37,25 - 45,African-American,0,9,0,0,23,-1,2013-03-16 06:38:51,2013-04-02 12:59:57,13003852CF10A,2013-03-16,,1,F,Battery on Law Enforc Officer,1,13006847MM10A,(M2),0,2013-04-09,Tresspass Struct/Conveyance,2013-04-09,2013-06-18,,0,,,,,Risk of Recidivism,9,High,2013-03-17,Risk of Violence,4,Low,2013-03-17,2013-04-09,2013-06-18,23,16,23,1,1\r\n584,devaughn bryan,devaughn,bryan,2013-05-16,Male,1980-04-29,35,25 - 45,African-American,0,5,0,0,2,-1,2013-05-15 04:19:38,2013-05-20 09:26:57,13006929CF10A,2013-05-15,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-16,Risk of Violence,5,Medium,2013-05-16,2013-05-15,2013-05-20,2,4,1051,0,0\r\n586,marvin butler,marvin,butler,2013-08-07,Male,1962-12-30,53,Greater than 45,African-American,0,1,0,0,2,-1,2013-08-06 07:34:06,2013-08-07 01:05:18,13011035CF10A,2013-08-06,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-07,Risk of Violence,1,Low,2013-08-07,2013-08-06,2013-08-07,2,0,968,0,0\r\n587,roger browne,roger,browne,2014-02-11,Male,1955-10-17,60,Greater than 45,African-American,0,1,0,0,1,,,,07006838CF10A,,2010-11-16,1183,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-11,Risk of Violence,1,Low,2014-02-11,2010-06-22,2010-11-22,1,0,780,0,0\r\n588,justin nowell,justin,nowell,2013-08-16,Male,1987-02-28,29,25 - 45,African-American,0,4,0,0,7,-1,2013-08-15 04:47:18,2013-08-16 10:21:01,13011483CF10A,2013-08-15,,1,F,Possession of Cocaine,1,16000435MM20A,(M1),,2016-01-28,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-16,Risk of Violence,3,Low,2013-08-16,2015-09-28,2015-10-02,7,0,773,0,0\r\n590,andrew calderaro,andrew,calderaro,2013-02-09,Male,1967-10-07,48,Greater than 45,Caucasian,1,8,0,0,23,-1,2013-02-08 07:54:34,2014-02-04 06:26:47,13002009CF10A,2013-02-08,,1,F,Felony Petit Theft,1,14017095CF10A,(F3),,2014-12-28,Felony Petit Theft,,,,1,14017095CF10A,(M1),2014-12-28,Battery,Risk of Recidivism,8,High,2013-02-09,Risk of Violence,5,Medium,2013-02-09,2014-02-04,2014-11-11,23,640,687,1,1\r\n594,evelyn rivera,evelyn,rivera,2013-03-25,Female,1964-04-17,52,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-25 04:21:35,2013-03-25 08:42:53,13005850MM10A,2013-03-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-03-25,2013-03-25,0,0,1103,0,0\r\n597,ronald deliard,ronald,deliard,2013-04-16,Male,1988-10-10,27,25 - 45,African-American,0,8,0,0,12,-1,2013-04-15 05:42:56,2013-05-17 04:23:57,13005396CF10A,2013-04-15,,1,F,Driving While License Revoked,1,14005031MM10A,(M1),0,2014-03-23,Resist/Obstruct W/O Violence,2014-03-23,2014-05-08,,0,,,,,Risk of Recidivism,8,High,2013-04-16,Risk of Violence,5,Medium,2013-04-16,2014-03-23,2014-05-08,12,31,341,1,1\r\n598,willie wilson,willie,wilson,2013-02-13,Male,1987-09-14,28,25 - 45,African-American,0,9,0,0,5,0,2013-02-13 02:14:41,2013-04-05 08:12:59,12002931CF10A,,2013-02-13,0,F,arrest case no charge,1,15026130TC10A,(M2),0,2015-09-22,Operating W/O Valid License,2015-09-22,2015-10-07,,0,,,,,Risk of Recidivism,9,High,2013-02-13,Risk of Violence,6,Medium,2013-02-13,2015-09-22,2015-10-07,5,51,951,1,0\r\n599,daniel campos,daniel,campos,2013-12-22,Male,1982-07-02,33,25 - 45,Caucasian,0,3,0,0,3,0,2013-12-22 01:14:52,2013-12-22 07:48:32,13023564MM10A,2013-12-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-22,Risk of Violence,1,Low,2013-12-22,2013-12-22,2013-12-22,3,0,831,0,0\r\n600,jessica soto,jessica,soto,2013-04-05,Female,1988-03-02,28,25 - 45,Hispanic,0,2,0,0,0,-1,2013-04-04 03:19:29,2013-04-06 12:28:11,13004844CF10A,,2013-04-04,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-05,Risk of Violence,2,Low,2013-04-05,2013-04-04,2013-04-06,0,1,1092,0,0\r\n601,joel valli,joel,valli,2014-05-08,Male,1969-03-25,47,Greater than 45,Caucasian,0,10,0,0,5,-312,2013-06-30 08:26:21,2014-04-17 10:54:00,13009201CF10A,2013-06-30,,312,F,Possession of Cocaine,1,15014318CF10A,(F3),185,2015-05-06,False Verif Ownership Pawn Shp,2015-11-07,2015-11-11,,0,,,,,Risk of Recidivism,10,High,2014-05-08,Risk of Violence,6,Medium,2014-05-08,2015-11-07,2015-11-11,5,0,363,1,1\r\n602,maurice knight,maurice,knight,2013-02-01,Male,1979-05-06,36,25 - 45,African-American,0,7,0,0,14,-1,2013-01-31 10:14:56,2013-02-01 08:48:31,13001573CF10A,2013-01-31,,1,F,Throw Deadly Missile Into Veh,1,13002602CF10A,(M1),0,2013-02-20,Possess Cannabis/20 Grams Or Less,2013-02-20,2013-02-21,,0,,,,,Risk of Recidivism,7,Medium,2013-02-01,Risk of Violence,3,Low,2013-02-01,2013-02-20,2013-02-21,14,0,19,1,1\r\n603,christopher larmond,christopher,larmond,2013-04-05,Male,1987-04-09,29,25 - 45,African-American,1,5,0,0,2,-1,2013-04-04 11:24:09,2013-04-06 08:01:53,13004855CF10A,2013-04-04,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-05,Risk of Violence,5,Medium,2013-04-05,2013-04-04,2013-04-06,2,1,1092,0,0\r\n604,devaughn brown,devaughn,brown,2013-01-01,Male,1993-07-25,22,Less than 25,African-American,0,9,0,1,0,0,2013-01-01 01:31:55,2013-01-22 09:01:52,13000048MM10A,2013-01-01,,0,M,Unlaw Use False Name/Identity,1,15000148MM10A,(M2),0,2015-01-04,Petit Theft,2015-01-04,2015-01-08,,0,,,,,Risk of Recidivism,9,High,2013-01-01,Risk of Violence,7,Medium,2013-01-01,2013-12-30,2014-01-10,0,21,363,0,1\r\n605,gueslly deravine,gueslly,deravine,2013-03-27,Male,1989-11-30,26,25 - 45,African-American,0,7,0,2,6,-34,2013-02-21 01:31:52,2013-02-21 07:44:48,13002675CF10A,2013-02-20,,35,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-27,Risk of Violence,7,Medium,2013-03-27,2013-12-24,2014-02-10,6,0,272,0,0\r\n608,christopher tokarz,christopher,tokarz,2013-03-27,Male,1990-05-31,25,25 - 45,Caucasian,0,2,0,0,0,0,2013-03-27 02:09:08,2013-03-27 06:55:04,13004427CF10A,2013-03-26,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-27,Risk of Violence,3,Low,2013-03-27,2013-03-27,2013-03-27,0,0,1101,0,0\r\n609,richard kelly,richard,kelly,2013-10-08,Male,1947-10-19,68,Greater than 45,Caucasian,0,1,0,0,2,-150,2013-05-11 07:27:55,2013-05-12 02:24:08,13006761CF10A,2013-05-11,,150,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-08,Risk of Violence,1,Low,2013-10-08,2013-05-11,2013-05-12,2,0,906,0,0\r\n611,ephiram burnette,ephiram,burnette,2013-01-04,Male,1959-05-19,56,Greater than 45,African-American,0,3,0,0,5,-1,2013-01-03 05:51:09,2013-01-15 07:43:49,13000103CF10A,2013-01-03,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-04,Risk of Violence,3,Low,2013-01-04,2013-06-11,2013-11-01,5,11,158,0,0\r\n612,carlton brown,carlton,brown,2013-09-04,Male,1988-11-16,27,25 - 45,African-American,0,8,0,0,9,-1,2013-09-03 03:15:25,2013-10-25 06:07:27,13012422CF10A,2013-09-03,,1,F,Aggravated Battery / Pregnant,1,14015983CF10A,(F2),0,2014-11-30,Aggravated Battery / Pregnant,2014-11-30,2015-02-04,,1,14015983CF10A,(F2),2014-11-30,Aggravated Battery / Pregnant,Risk of Recidivism,8,High,2013-09-04,Risk of Violence,8,High,2013-09-04,2013-10-29,2013-12-11,9,51,55,0,1\r\n613,constance greene,constance,greene,2014-05-29,Male,1963-09-05,52,Greater than 45,Caucasian,0,1,0,0,4,-1,2014-05-28 04:41:14,2014-06-04 05:26:28,14007417CF10A,2014-05-28,,1,F,Grand Theft in the 3rd Degree,1,15000635MM10A,(M1),0,2015-01-17,Petit Theft/ Prior Conviction,2015-01-17,2015-05-07,,0,,,,,Risk of Recidivism,1,Low,2014-05-29,Risk of Violence,1,Low,2014-05-29,2015-01-17,2015-05-07,4,6,233,1,1\r\n616,andre wilson,andre,wilson,2013-02-07,Male,1983-11-30,32,25 - 45,African-American,0,2,0,0,3,0,2013-02-07 02:19:38,2013-02-08 05:35:52,13001912CF10A,2013-02-06,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-07,Risk of Violence,2,Low,2013-02-07,2014-06-16,2014-06-20,3,1,494,0,0\r\n617,jean lumene,jean,lumene,2013-11-26,Male,1955-07-16,60,Greater than 45,Other,0,1,0,0,4,-1,2013-11-25 05:03:19,2013-11-26 08:38:12,13016424CF10A,,2013-11-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-26,Risk of Violence,1,Low,2013-11-26,2015-01-08,2015-01-09,4,0,408,0,0\r\n621,christopher pantoja,christopher,pantoja,2013-04-29,Male,1992-06-18,23,Less than 25,Hispanic,0,3,0,0,1,-5,2013-04-24 07:55:53,2013-04-29 12:20:11,13010212MM10A,2013-04-24,,5,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-29,Risk of Violence,4,Low,2013-04-29,2013-04-24,2013-04-29,1,0,1068,0,0\r\n622,andrew ward,andrew,ward,2013-06-20,Female,1976-04-26,39,25 - 45,Caucasian,0,6,0,0,0,-2,2013-06-18 07:12:57,2013-06-19 06:12:35,13011699MM10A,2013-06-18,,2,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-06-20,Risk of Violence,2,Low,2013-06-20,2013-06-18,2013-06-19,0,0,1016,0,0\r\n623,dean serfis,dean,serfis,2013-10-19,Male,1959-05-23,56,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-18 08:52:53,2013-10-19 08:16:43,13019771MM10A,2013-10-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-19,Risk of Violence,1,Low,2013-10-19,2013-10-18,2013-10-19,0,0,895,0,0\r\n624,kandice metayer,kandice,metayer,2013-08-24,Female,1993-12-03,22,Less than 25,African-American,0,7,0,0,0,0,2013-08-24 02:29:37,2013-08-24 08:38:38,13011936CF10A,2013-08-23,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-24,Risk of Violence,8,High,2013-08-24,2013-08-24,2013-08-24,0,0,951,0,0\r\n625,kayla stanley,kayla,stanley,2013-08-20,Female,1989-03-24,27,25 - 45,African-American,0,2,0,0,1,-31,2013-07-20 10:54:56,2013-07-21 05:31:13,13010205CF10A,2013-07-20,,31,F,Use Scanning Device to Defraud,1,15000741MM40A,(M2),,2015-01-13,Petit Theft,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-20,Risk of Violence,2,Low,2013-08-20,2013-07-20,2013-07-21,1,0,511,1,1\r\n627,leroy battie,leroy,battie,2013-04-19,Male,1963-02-06,53,Greater than 45,African-American,0,6,0,0,11,-1,2013-04-18 08:45:19,2013-08-06 09:11:16,13005565CF10A,,2013-04-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-19,Risk of Violence,3,Low,2013-04-19,2013-04-18,2013-08-06,11,109,1078,0,0\r\n628,daniel steggerda,daniel,steggerda,2014-07-31,Male,1990-10-12,25,25 - 45,Caucasian,0,2,0,0,0,0,2014-07-31 03:49:54,2014-07-31 08:39:54,14028010MU10A,2014-07-31,,0,M,Driving Under The Influence,1,15000242MM20A,(M2),354,2014-12-30,Susp Drivers Lic 1st Offense,2015-12-19,2015-12-19,,0,,,,,Risk of Recidivism,2,Low,2014-07-31,Risk of Violence,3,Low,2014-07-31,2015-12-19,2015-12-19,0,0,152,1,1\r\n629,kenny castillo,kenny,castillo,2013-10-28,Male,1995-03-28,21,Less than 25,Hispanic,0,3,0,0,0,0,2013-10-28 03:10:30,2013-10-28 07:42:27,13020395MM10A,2013-10-28,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-28,Risk of Violence,6,Medium,2013-10-28,2013-10-28,2013-10-28,0,0,886,0,0\r\n630,daniel fosca,daniel,fosca,2014-02-09,Male,1993-10-02,22,Less than 25,Caucasian,0,3,0,0,0,-1,2014-02-08 09:30:32,2014-02-10 08:41:20,14001802CF10A,2014-02-08,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-09,Risk of Violence,5,Medium,2014-02-09,2014-02-08,2014-02-10,0,1,782,0,0\r\n633,leslie fanning,leslie,fanning,2013-04-29,Female,1957-07-29,58,Greater than 45,Caucasian,0,1,0,0,2,-23,2013-04-06 08:22:37,2013-04-07 12:56:04,13006620MM10A,2013-04-06,,23,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-10-29,2013-11-15,2,0,183,0,0\r\n635,deverick jefferson,deverick,jefferson,2014-01-26,Male,1985-04-01,31,25 - 45,African-American,0,3,0,0,7,0,2014-01-26 01:17:17,2014-01-27 03:11:10,14001117CF10A,2014-01-25,,1,M,Aggravated Battery / Pregnant,1,14035639TC10A,(M2),,2014-09-08,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-26,Risk of Violence,2,Low,2014-01-26,2014-01-26,2014-01-27,7,1,225,1,1\r\n637,ryan ingber,ryan,ingber,2013-06-26,Male,1994-04-06,22,Less than 25,Caucasian,0,5,0,0,1,-1,2013-06-25 11:20:19,2013-06-26 01:21:56,13008932CF10A,2013-06-25,,1,F,False Ownership Info/Pawn Item,1,13015295CF10A,(F3),1,2013-11-02,Possession of Cocaine,2013-11-03,2013-11-21,,0,,,,,Risk of Recidivism,5,Medium,2013-06-26,Risk of Violence,5,Medium,2013-06-26,2015-01-15,2015-11-01,1,0,129,1,1\r\n638,steve sevil,steve,sevil,2013-01-10,Male,1987-07-27,28,25 - 45,African-American,0,6,0,0,8,-1,2013-01-09 01:31:01,2013-01-12 12:38:27,13000393CF10A,2013-01-09,,1,F,Uttering a Forged Instrument,1,13005721CF10A,(F1),,2013-01-16,Deliver Cocaine 1000FT School,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-10,Risk of Violence,6,Medium,2013-01-10,2013-01-09,2013-01-12,8,2,6,1,1\r\n639,ronelson stark,ronelson,stark,2013-09-15,Male,1973-10-04,42,25 - 45,Other,0,1,0,0,1,-1,2013-09-14 06:17:52,2013-09-16 07:28:47,13013046CF10A,,2013-09-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-15,Risk of Violence,1,Low,2013-09-15,2013-09-14,2013-09-16,1,1,929,0,0\r\n640,shane lewis,shane,lewis,2013-08-11,Male,1995-07-09,20,Less than 25,African-American,0,7,0,0,0,0,2013-08-11 10:00:24,2013-08-12 07:46:52,13011265CF10A,2013-08-11,,0,F,Grand Theft (Motor Vehicle),1,13004124MM40A,(M1),,2013-10-05,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-11,Risk of Violence,8,High,2013-08-11,2013-08-11,2013-08-12,0,1,55,1,1\r\n641,edward holloway,edward,holloway,2014-11-03,Male,1986-11-08,29,25 - 45,Caucasian,0,6,0,0,0,0,2014-11-03 02:36:08,2014-11-08 12:48:35,14015878MM10A,2014-11-03,,0,M,Battery,1,15012389MM10A,(M1),,2015-11-29,Battery,,,,1,15012389MM10A,(M1),2015-11-29,Battery,Risk of Recidivism,6,Medium,2014-11-03,Risk of Violence,4,Low,2014-11-03,2014-11-03,2014-11-08,0,5,391,1,1\r\n643,courtney battle,courtney,battle,2013-12-02,Male,1987-04-16,29,25 - 45,African-American,0,10,0,0,8,178,2014-05-29 12:37:30,2014-08-25 03:36:26,12002654CF10A,,2012-03-28,614,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-12-02,Risk of Violence,9,High,2013-12-02,2014-05-29,2014-08-25,8,0,178,0,0\r\n644,ricky simmons,ricky,simmons,2013-01-20,Male,1957-05-01,58,Greater than 45,African-American,0,7,0,0,21,-1,2013-01-19 04:12:14,2013-03-19 06:59:49,12022220MM10A,,2013-01-18,2,M,arrest case no charge,1,13004944CF10A,(M1),0,2013-04-06,Resist/Obstruct W/O Violence,2013-04-06,2013-04-10,,0,,,,,Risk of Recidivism,7,Medium,2013-01-20,Risk of Violence,4,Low,2013-01-20,2013-04-06,2013-04-10,21,58,76,1,1\r\n645,bernard scott,bernard,scott,2013-02-14,Male,1993-11-25,22,Less than 25,African-American,0,7,0,0,3,-1,2013-02-13 05:57:01,2013-05-30 09:53:38,13002233CF10A,2013-02-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-14,Risk of Violence,6,Medium,2013-02-14,2014-04-10,2014-04-16,3,105,420,0,0\r\n646,raul mora,raul,mora,2013-12-10,Male,1967-11-12,48,Greater than 45,Hispanic,0,1,0,0,1,0,2013-12-10 03:46:31,2013-12-11 03:41:00,13022856MM10A,2013-12-10,,0,M,Operating W/O Valid License,1,14015904MU10A,(M2),,2014-04-24,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-10,Risk of Violence,1,Low,2013-12-10,2013-12-10,2013-12-11,1,1,135,1,1\r\n647,cesar turcios,cesar,turcios,2013-01-18,Male,1979-02-13,37,25 - 45,Caucasian,0,4,0,0,0,0,2013-01-18 05:11:46,2013-01-18 08:38:29,13000889CF10A,2013-01-18,,0,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-18,Risk of Violence,3,Low,2013-01-18,2013-01-18,2013-01-18,0,0,1169,0,0\r\n648,rickey butler,rickey,butler,2014-11-21,Male,1959-02-25,57,Greater than 45,African-American,0,5,0,0,1,-1,2014-11-20 07:13:25,2014-12-16 02:02:17,14015626CF10A,2014-11-20,,1,F,Felony Petit Theft,1,15000820CF10A,(M1),0,2015-01-19,Possess Cannabis/20 Grams Or Less,2015-01-19,2015-05-17,,0,,,,,Risk of Recidivism,5,Medium,2014-11-21,Risk of Violence,6,Medium,2014-11-21,2015-01-19,2015-05-17,1,25,59,1,1\r\n649,alejandro remis,alejandro,remis,2013-08-19,Male,1988-10-11,27,25 - 45,Caucasian,0,1,0,0,3,-22,2013-07-28 02:14:16,2013-07-28 02:01:46,13010525CF10A,2013-07-28,,22,M,Fleeing or Eluding a LEO,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-07-28,2013-07-28,3,0,956,0,0\r\n651,ervin watson,ervin,watson,2013-04-12,Male,1990-02-18,26,25 - 45,African-American,0,4,0,0,3,0,2013-04-12 06:16:59,2013-05-15 07:34:15,13005307CF10A,2013-04-12,,0,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-12,Risk of Violence,3,Low,2013-04-12,2013-07-09,2013-07-10,3,33,88,0,0\r\n653,julio ramos,julio,ramos,2013-11-13,Male,1991-10-12,24,Less than 25,Caucasian,0,8,1,1,3,0,2013-11-13 03:26:47,2013-11-13 08:24:17,13015793CF10A,2013-11-13,,0,F,\"Poss3,4 Methylenedioxymethcath\",1,14066428TC20A,(M2),179,2014-09-20,Operating W/O Valid License,2015-03-18,2015-03-27,,0,,,,,Risk of Recidivism,8,High,2013-11-13,Risk of Violence,5,Medium,2013-11-13,2014-07-16,2014-07-30,3,0,245,0,1\r\n654,aaron hullander,aaron,hullander,2013-12-09,Male,1983-02-19,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-12-08 02:41:16,2013-12-09 08:36:04,13016972CF10A,2013-12-08,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,2,Low,2013-12-09,2013-12-08,2013-12-09,0,0,844,0,0\r\n656,sean naar,sean,naar,2013-01-07,Male,1987-01-25,29,25 - 45,African-American,0,6,0,0,2,-1,2013-01-06 10:04:53,2013-01-07 09:20:44,12015053CF10A,,2013-01-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-07,Risk of Violence,3,Low,2013-01-07,2013-01-06,2013-01-07,2,0,1180,0,0\r\n657,brittany brantley,brittany,brantley,2014-01-19,Female,1991-06-23,24,Less than 25,African-American,0,10,0,0,3,-1,2014-01-18 08:34:16,2014-01-19 08:44:14,14000791CF10A,2014-01-18,,1,F,Grand Theft in the 3rd Degree,1,14009496CF10A,(F3),,2014-03-14,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,10,High,2014-01-19,Risk of Violence,9,High,2014-01-19,2014-09-11,2014-12-20,3,0,54,1,1\r\n659,pablo rocha,pablo,rocha,2014-07-28,Male,1996-05-26,19,Less than 25,Caucasian,0,10,0,1,1,-1,2014-07-27 04:46:20,2014-08-28 05:30:10,14010239CF10A,2014-07-27,,1,F,Felony Battery (Dom Strang),1,15001088MM10A,(M1),0,2015-01-27,Petit Theft $100- $300,2015-01-27,2015-01-30,,0,,,,,Risk of Recidivism,10,High,2014-07-28,Risk of Violence,8,High,2014-07-28,2014-11-16,2014-11-21,1,31,111,0,1\r\n660,carlos rosario,carlos,rosario,2013-10-15,Male,1980-04-10,36,25 - 45,Caucasian,0,1,0,0,2,-1,2013-10-14 07:59:18,2013-10-15 07:40:50,13019495MM10A,2013-10-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-15,Risk of Violence,1,Low,2013-10-15,2013-10-14,2013-10-15,2,0,899,0,0\r\n662,lisette echevarria,lisette,echevarria,2013-04-26,Female,1991-12-20,24,Less than 25,Caucasian,0,5,0,0,0,0,2013-04-26 02:32:29,2013-04-26 08:01:47,13006023CF10A,2013-04-25,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-26,Risk of Violence,5,Medium,2013-04-26,2013-04-26,2013-04-26,0,0,1071,0,0\r\n664,robson de souza,robson,de souza,2013-05-13,Male,1982-03-22,34,25 - 45,Caucasian,0,1,0,0,0,0,2013-05-13 06:00:31,2013-05-13 07:26:25,13009229MM10A,2013-05-13,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-13,2013-05-13,0,0,1054,0,0\r\n668,felix manzueta,felix,manzueta,2013-03-12,Male,1990-09-18,25,25 - 45,Hispanic,0,5,0,0,2,-1,2013-03-11 08:47:22,2013-03-12 01:01:00,13003587CF10A,,2013-03-11,1,F,arrest case no charge,1,13008082CF10A,(M1),0,2013-06-07,Resist/Obstruct W/O Violence,2013-06-07,2013-06-09,,1,13008082CF10A,(F2),2013-06-07,Aggravated Battery,Risk of Recidivism,5,Medium,2013-03-12,Risk of Violence,3,Low,2013-03-12,2013-06-07,2013-06-09,2,0,87,1,1\r\n669,robby ireland,robby,ireland,2014-03-05,Male,1996-02-04,20,Less than 25,African-American,1,10,0,1,1,-1,2014-03-04 08:07:24,2014-03-05 08:09:37,14003032CF10A,,2014-03-04,1,F,arrest case no charge,1,14016748MM10A,(M2),0,2014-10-30,Trespass Struct/Conveyance,2014-10-30,2015-04-07,,0,,,,,Risk of Recidivism,10,High,2014-03-05,Risk of Violence,8,High,2014-03-05,2014-10-30,2015-04-07,1,0,239,1,1\r\n673,adriel stockton,adriel,stockton,2014-09-08,Male,1987-08-26,28,25 - 45,Hispanic,0,5,0,0,2,-263,2013-12-19 10:00:03,2013-12-20 12:55:18,12008430MM10A,,2013-12-19,263,M,arrest case no charge,1,15015390CF10A,(F2),0,2015-11-27,Robbery / No Weapon,2015-11-27,2015-12-11,,1,15015390CF10A,(F3),2015-11-27,Battery on a Person Over 65,Risk of Recidivism,5,Medium,2014-09-08,Risk of Violence,3,Low,2014-09-08,2015-11-27,2015-12-11,2,0,445,1,1\r\n674,haveard cobb,haveard,cobb,2013-09-24,Male,1991-07-14,24,Less than 25,African-American,0,2,0,0,1,-1,2013-09-23 10:13:09,2013-09-25 09:17:37,13018140MM10A,2013-09-23,,1,M,Battery,1,14009581MM10A,(M1),0,2014-06-18,Battery,2014-06-18,2014-06-19,,1,14009581MM10A,(M1),2014-06-18,Battery,Risk of Recidivism,2,Low,2013-09-24,Risk of Violence,4,Low,2013-09-24,2014-06-18,2014-06-19,1,1,267,1,1\r\n675,thomas zaremba,thomas,zaremba,2013-01-22,Male,1954-08-28,61,Greater than 45,Caucasian,0,1,0,0,4,-1,2013-01-21 08:12:45,2013-01-23 02:40:57,01006487CF10D,,2013-01-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-22,Risk of Violence,1,Low,2013-01-22,2013-01-21,2013-01-23,4,1,1165,0,0\r\n678,johnnie randell,johnnie,randell,2014-03-05,Female,1965-12-14,50,Greater than 45,African-American,0,2,0,0,3,0,2014-03-05 12:31:35,2014-03-05 08:38:53,14003105CF10A,2014-03-04,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-05,Risk of Violence,1,Low,2014-03-05,2014-03-05,2014-03-05,3,0,758,0,0\r\n679,anthony louis,anthony,louis,2013-03-19,Male,1985-07-19,30,25 - 45,African-American,0,1,0,0,1,0,2013-03-19 01:34:13,2013-03-23 12:51:55,13005335MM10A,2013-03-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-19,Risk of Violence,2,Low,2013-03-19,2013-03-19,2013-03-23,1,4,1109,0,0\r\n680,broderick alston,broderick,alston,2013-11-30,Male,1977-09-04,38,25 - 45,African-American,0,3,0,0,5,-1,2013-11-29 07:00:11,2013-11-30 12:28:10,13016563CF10A,2013-11-29,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-30,Risk of Violence,2,Low,2013-11-30,2013-11-29,2013-11-30,5,0,853,0,0\r\n681,christopher kasten,christopher,kasten,2013-12-13,Male,1991-06-06,24,Less than 25,Caucasian,0,1,0,0,0,-1,2013-12-12 09:51:57,2013-12-13 01:45:42,13023013MM10A,2013-12-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-13,Risk of Violence,2,Low,2013-12-13,2013-12-12,2013-12-13,0,0,840,0,0\r\n684,steven wilson,steven,wilson,2013-10-02,Male,1971-03-19,45,Greater than 45,African-American,0,2,0,0,16,-83,2013-07-11 11:35:36,2013-09-14 03:05:59,13010099CF10A,,2013-07-17,77,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,2013-07-11,2013-09-14,16,0,912,0,0\r\n685,sabrina gray,sabrina,gray,2014-10-27,Female,1969-12-19,46,Greater than 45,African-American,0,10,0,0,2,-1,2014-10-26 11:14:31,2014-11-05 04:22:00,14014417CF10A,2014-10-26,,1,F,Grand Theft in the 3rd Degree,1,15003635CF10A,(F3),0,2015-03-17,Use of Anti-Shoplifting Device,2015-03-17,2015-03-18,,0,,,,,Risk of Recidivism,10,High,2014-10-27,Risk of Violence,8,High,2014-10-27,2015-03-17,2015-03-18,2,9,141,1,1\r\n686,jason andrews,jason,andrews,2013-09-12,Male,1974-11-25,41,25 - 45,Caucasian,0,1,0,0,0,-1,2013-09-11 06:01:06,2013-09-15 02:36:35,13017318MM10A,2013-09-11,,1,M,Battery,1,14000843MM40A,(M2),,2014-02-01,Petit Theft,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2013-09-11,2013-09-15,0,3,142,1,1\r\n687,trevoy williams,trevoy,williams,2014-10-30,Male,1995-08-20,20,Less than 25,Other,0,8,0,1,0,-1,2014-10-29 03:32:22,2014-11-20 08:32:38,14014530CF10A,2014-10-29,,1,F,Possession of Cocaine,1,15003795CF10A,(F3),0,2015-03-20,Possession Of Alprazolam,2015-03-20,2015-04-13,,1,15003795CF10A,(M2),2015-03-20,Assault,Risk of Recidivism,8,High,2014-10-30,Risk of Violence,6,Medium,2014-10-30,2015-03-20,2015-04-13,0,21,141,1,1\r\n688,ian turnbull,ian,turnbull,2013-04-17,Male,1989-03-05,27,25 - 45,African-American,0,8,0,0,13,-1,2013-04-16 07:03:53,2013-04-17 10:30:53,13007374MM10A,2013-04-16,,1,M,Possess Cannabis/20 Grams Or Less,1,15004896MM10A,(M1),,2015-04-06,Battery,,,,1,15004896MM10A,(M1),2015-04-06,Battery,Risk of Recidivism,8,High,2013-04-17,Risk of Violence,9,High,2013-04-17,2016-03-18,2016-03-18,13,0,719,1,1\r\n689,beverly smith,beverly,smith,2013-08-07,Female,1964-10-23,51,Greater than 45,African-American,0,8,0,0,16,-122,2013-04-07 10:07:51,2013-06-12 10:56:00,13004969CF10A,2013-04-07,,122,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-07,Risk of Violence,1,Low,2013-08-07,2013-04-07,2013-06-12,16,0,968,0,0\r\n691,marlon turner,marlon,turner,2013-10-16,Male,1989-10-11,26,25 - 45,African-American,0,6,0,0,1,-1,2013-10-15 07:08:32,2013-10-28 08:48:39,13019551MM10A,2013-10-15,,1,M,Battery,1,13014688CF10A,(F3),523,2013-10-18,Crim Use of Personal ID Info,2015-03-25,2015-04-26,,0,,,,,Risk of Recidivism,6,Medium,2013-10-16,Risk of Violence,3,Low,2013-10-16,2013-10-15,2013-10-28,1,0,2,1,1\r\n692,xavier brown,xavier,brown,2014-10-30,Male,1987-03-01,29,25 - 45,African-American,0,5,0,0,3,0,2014-10-30 02:21:37,2014-10-31 04:43:59,14014588CF10A,2014-10-30,,0,F,Possession of Ethylone,1,15015066TC40A,(M2),,2015-02-25,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2014-10-30,Risk of Violence,3,Low,2014-10-30,2014-10-30,2014-10-31,3,1,118,1,1\r\n693,steve stanley,steve,stanley,2013-10-25,Male,1964-03-18,52,Greater than 45,Caucasian,0,5,0,0,6,-1,2013-10-24 07:05:40,2013-10-26 02:35:00,13014853CF10A,2013-10-24,,1,F,Grand Theft in the 3rd Degree,1,14001678MM40A,(M1),,2014-04-05,Trespass Other Struct/Conve,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-25,Risk of Violence,3,Low,2013-10-25,2013-10-24,2013-10-26,6,1,162,1,1\r\n694,stephen washburn,stephen,washburn,2014-02-16,Male,1987-05-08,28,25 - 45,Caucasian,0,4,0,0,1,0,2014-02-16 12:19:08,2014-02-20 12:30:39,14002157CF10A,2014-02-15,,1,F,Agg Battery Grt/Bod/Harm,1,14011224MM10A,(M2),0,2014-07-23,Assault,2014-07-23,2014-08-14,,1,14011224MM10A,(M2),2014-07-23,Assault,Risk of Recidivism,4,Low,2014-02-16,Risk of Violence,3,Low,2014-02-16,2014-07-23,2014-08-14,1,4,157,1,1\r\n696,dorian osceola,dorian,osceola,2014-01-13,Female,1981-06-30,34,25 - 45,Native American,0,7,0,0,4,-152,2013-08-14 03:52:36,2013-11-19 04:05:13,13007784CF10A,,2013-08-14,152,F,arrest case no charge,1,14009863CF10A,(F3),3,2014-07-16,Possession of Cocaine,2014-07-19,2014-07-19,,0,,,,,Risk of Recidivism,7,Medium,2014-01-13,Risk of Violence,3,Low,2014-01-13,2015-07-08,2015-07-24,4,0,184,1,1\r\n697,nathan yetts,nathan,yetts,2014-11-12,Male,1960-10-05,55,Greater than 45,African-American,0,3,0,0,5,-1,2014-11-11 12:52:32,2015-03-10 12:38:48,14015135CF10A,2014-11-11,,1,F,Felony Petit Theft,1,14015674CF10A,(F3),,2014-11-19,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,3,Low,2014-11-12,Risk of Violence,1,Low,2014-11-12,2014-11-11,2015-03-10,5,0,7,1,1\r\n700,brandon whitfield,brandon,whitfield,2013-03-05,Male,1989-07-22,26,25 - 45,African-American,1,9,1,0,10,-1,2013-03-04 11:33:53,2013-03-05 04:54:32,13003239CF10A,2013-03-04,,1,F,Aggravated Battery,1,14008023CF10A,(F3),0,2014-06-10,Poss Pyrrolidinovalerophenone,2014-06-10,2014-06-10,,1,15008298CF10A,(F3),2015-06-27,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2013-03-05,Risk of Violence,6,Medium,2013-03-05,2014-06-10,2014-06-10,10,0,462,0,1\r\n701,eddie mosley,eddie,mosley,2013-09-11,Male,1987-08-20,28,25 - 45,African-American,0,10,0,0,5,-1,2013-09-10 04:03:57,2013-09-11 08:05:58,13012799CF10A,2013-09-10,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-11,Risk of Violence,10,High,2013-09-11,2013-09-10,2013-09-11,5,0,933,0,0\r\n703,robert zinser,robert,zinser,2013-12-12,Male,1953-03-17,63,Greater than 45,Caucasian,0,1,0,0,2,-3,2013-12-09 08:43:05,2013-12-12 10:30:31,13017021CF10A,2013-12-09,,3,F,Felony DUI (level 3),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-12,Risk of Violence,1,Low,2013-12-12,2014-06-25,2014-06-30,2,0,195,0,0\r\n704,richard brown,richard,brown,2013-04-17,Male,1973-12-15,42,25 - 45,African-American,0,1,0,0,0,0,2013-04-17 03:45:48,2013-04-18 05:26:44,13005521CF10A,2013-04-17,,0,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-17,Risk of Violence,1,Low,2013-04-17,2013-04-17,2013-04-18,0,1,1080,0,0\r\n707,davion silvera,davion,silvera,2013-04-20,Male,1992-06-04,23,Less than 25,African-American,1,6,2,2,6,-1,2013-04-19 04:56:58,2013-04-20 01:49:41,13005638CF10A,2013-04-19,,1,F,Driving While License Revoked,1,15010863CF10A,(F3),0,2015-08-22,False Imprisonment,2015-08-22,2015-08-23,,1,15010863CF10A,(M1),2015-08-22,Battery,Risk of Recidivism,6,Medium,2013-04-20,Risk of Violence,6,Medium,2013-04-20,2013-10-03,2013-10-25,6,0,166,0,0\r\n708,horace tillman,horace,tillman,2014-06-29,Male,1962-03-22,54,Greater than 45,African-American,0,9,0,0,28,-1,2014-06-28 10:26:07,2014-07-04 04:50:37,14008912CF10A,2014-06-28,,1,F,Possession of Cocaine,1,14012714MM10A,(M1),0,2014-08-23,Trespass Other Struct/Convey,2014-08-23,2014-08-25,,0,,,,,Risk of Recidivism,9,High,2014-06-29,Risk of Violence,5,Medium,2014-06-29,2014-08-23,2014-08-25,28,5,55,1,1\r\n709,trevor dorsey,trevor,dorsey,2014-10-15,Male,1980-11-13,35,25 - 45,African-American,0,7,0,1,8,-1,2014-10-14 03:55:39,2014-10-24 09:06:46,14015069CF10A,2014-10-14,,1,F,Felony Battery w/Prior Convict,1,14015663MM10A,(M1),0,2014-10-29,Viol Pretrial Release Dom Viol,2014-10-29,2014-11-05,,0,,,,,Risk of Recidivism,7,Medium,2014-10-15,Risk of Violence,4,Low,2014-10-15,2014-10-29,2014-11-05,8,9,14,1,1\r\n711,danielle warren,danielle,warren,2014-07-13,Female,1991-08-17,24,Less than 25,African-American,1,9,0,0,6,-1,2014-07-12 06:31:35,2014-08-07 08:23:48,14009548CF10A,,2014-07-12,1,F,arrest case no charge,1,15004610CF10A,(M1),0,2015-04-08,Unlaw Use False Name/Identity,2015-04-08,2015-08-03,,0,,,,,Risk of Recidivism,9,High,2014-07-13,Risk of Violence,9,High,2014-07-13,2014-12-05,2014-12-08,6,25,145,0,1\r\n712,derrick stephenson,derrick,stephenson,2014-01-16,Male,1962-03-27,54,Greater than 45,African-American,0,1,0,0,2,-26,2013-12-21 05:27:36,2013-12-22 01:10:00,13023551MM10A,2013-12-21,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-16,Risk of Violence,1,Low,2014-01-16,2013-12-21,2013-12-22,2,0,806,0,0\r\n713,dennis williams,dennis,williams,2013-11-24,Male,1958-02-26,58,Greater than 45,African-American,0,6,0,0,12,-1,2013-11-23 08:54:38,2013-11-27 08:50:05,13022024MM10A,2013-11-23,,1,M,DUI Level 0.15 Or Minor In Veh,1,14000418MM20A,(M2),21,2014-01-12,Petit Theft,2014-02-02,2014-03-11,,0,,,,,Risk of Recidivism,6,Medium,2013-11-24,Risk of Violence,3,Low,2013-11-24,2013-11-23,2013-11-27,12,3,49,1,1\r\n715,luis vallejo,luis,vallejo,2014-12-15,Male,1992-07-05,23,Less than 25,Caucasian,0,5,0,1,1,0,2014-12-15 01:06:38,2014-12-15 07:32:18,14016584CF10A,2014-12-14,,1,M,Resist/Obstruct W/O Violence,1,15006241CF10A,(F3),0,2015-05-13,Grand Theft in the 3rd Degree,2015-05-13,2015-05-14,,0,,,,,Risk of Recidivism,5,Medium,2014-12-15,Risk of Violence,5,Medium,2014-12-15,2015-05-13,2015-05-14,1,0,149,1,1\r\n716,larence brown,larence,brown,2014-03-10,Male,1981-02-12,35,25 - 45,African-American,0,2,0,0,1,-1,2014-03-09 10:01:46,2014-03-10 09:42:18,14004071MM10A,2014-03-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-10,Risk of Violence,2,Low,2014-03-10,2014-03-09,2014-03-10,1,0,753,0,0\r\n718,tavon session,tavon,session,2013-11-19,Male,1995-09-20,20,Less than 25,African-American,0,10,0,0,1,0,2013-11-19 02:33:54,2013-11-21 03:37:00,13016073CF10A,2013-11-19,,0,F,Fraudulent Use of Credit Card,1,14002743MM10A,(M1),1,2014-02-16,Unlaw Use False Name/Identity,2014-02-17,2014-02-18,,1,15012940CF10A,(F2),2015-10-06,Agg Flee/Eluding (Injury/Prop Damage),Risk of Recidivism,10,High,2013-11-19,Risk of Violence,10,High,2013-11-19,2014-02-07,2014-02-08,1,2,80,0,1\r\n720,bradley kirker,bradley,kirker,2013-02-04,Male,1964-08-26,51,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-04 02:44:33,2013-03-11 09:01:18,13001737CF10A,2013-02-04,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-02-04,2013-03-11,0,35,1152,0,0\r\n721,christian rivera,christian,rivera,2013-04-27,Male,1991-06-04,24,Less than 25,Hispanic,0,10,0,0,0,0,2013-04-27 02:50:45,2013-04-28 03:43:53,13006075CF10A,2013-04-26,,1,F,\"Poss 3,4 MDMA (Ecstasy)\",0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-27,Risk of Violence,7,Medium,2013-04-27,2013-04-27,2013-04-28,0,1,1070,0,0\r\n722,david levy,david,levy,2013-05-30,Male,1979-03-19,37,25 - 45,Caucasian,0,2,0,0,3,-14,2013-05-16 08:42:26,2013-05-23 06:52:01,13007017CF10A,2013-05-16,,14,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-30,Risk of Violence,1,Low,2013-05-30,2013-05-16,2013-05-23,3,0,1037,0,0\r\n724,dori klein,dori,klein,2014-02-26,Male,1969-04-17,47,Greater than 45,Caucasian,0,1,0,0,3,-1,2014-02-25 11:20:43,2014-02-26 09:34:42,14002661CF10A,2014-02-25,,1,F,Drivg While Lic Suspd/Revk/Can,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-26,Risk of Violence,1,Low,2014-02-26,2014-02-25,2014-02-26,3,0,765,0,0\r\n726,christian mansell,christian,mansell,2014-12-24,Male,1982-03-11,34,25 - 45,Caucasian,0,6,0,0,4,-1,2014-12-23 08:14:59,2014-12-24 08:59:44,14016968CF10A,2014-12-23,,1,F,Possession of Cannabis,1,15000494MM20A,(M2),,2015-02-04,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,6,Medium,2014-12-24,Risk of Violence,2,Low,2014-12-24,2014-12-23,2014-12-24,4,0,42,1,1\r\n727,kevin connors,kevin,connors,2013-09-03,Male,1959-05-26,56,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-09-01 11:41:31,2013-09-02 08:47:35,13012358CF10A,2013-09-01,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-03,Risk of Violence,1,Low,2013-09-03,2013-09-01,2013-09-02,0,0,941,0,0\r\n728,jason padilla,jason,padilla,2013-12-23,Male,1981-12-19,34,25 - 45,Hispanic,0,1,0,0,4,-1,2013-12-22 11:14:06,2014-01-23 05:54:28,13017638CF10A,2013-12-22,,1,F,Burglary Dwelling Occupied,1,14008974MM10A,(M2),0,2014-06-05,Posses/Disply Susp/Revk/Frd DL,2014-06-05,2014-06-06,,0,,,,,Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2014-06-05,2014-06-06,4,31,164,1,1\r\n729,raymond wolf,raymond,wolf,2013-02-25,Male,1956-06-10,59,Greater than 45,Caucasian,0,1,0,0,1,-2,2013-02-23 01:07:25,2013-02-23 09:07:54,13002725CF10A,2013-02-22,,3,F,Burglary Dwelling Assault/Batt,1,13019047TC10A,(M2),73,2013-03-25,Leave Acc/Attend Veh/More $50,2013-06-06,2013-06-14,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,1,Low,2013-02-25,2013-12-18,2013-12-24,1,0,28,1,1\r\n730,cuong do,cuong,do,2013-05-16,Male,1981-03-30,35,25 - 45,Asian,0,6,0,0,0,-1,2013-05-15 03:27:43,2013-08-24 05:06:24,13006952CF10A,2013-05-15,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-16,Risk of Violence,4,Low,2013-05-16,2013-05-15,2013-08-24,0,100,1051,0,0\r\n731,jorge moreno,jorge,moreno,2013-02-07,Male,1957-09-15,58,Greater than 45,Hispanic,0,1,0,0,1,-11,2013-01-27 07:57:13,2013-02-06 10:02:46,13001341CF10A,2013-01-27,,11,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-07,Risk of Violence,1,Low,2013-02-07,2013-01-27,2013-02-06,1,0,1149,0,0\r\n732,richard chacon,richard,chacon,2013-02-06,Male,1986-08-08,29,25 - 45,Hispanic,0,4,0,0,2,-26,2013-01-11 06:07:32,2013-01-12 04:14:13,13000687MM10A,2013-01-11,,26,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-06,Risk of Violence,2,Low,2013-02-06,2013-01-11,2013-01-12,2,0,1150,0,0\r\n737,samantha caicedo,samantha,caicedo,2014-04-16,Female,1991-11-01,24,Less than 25,Caucasian,0,9,0,1,6,0,2014-04-16 02:28:47,2014-04-19 11:22:18,14005342CF10A,2014-04-15,,1,F,Poss Contr Subst W/o Prescript,1,16001029MM10A,(M1),0,2016-01-30,Battery,2016-01-30,2016-01-31,,1,16001029MM10A,(M1),2016-01-30,Battery,Risk of Recidivism,9,High,2014-04-16,Risk of Violence,4,Low,2014-04-16,2016-01-30,2016-01-31,6,3,654,1,1\r\n738,justin leal,justin,leal,2013-11-06,Male,1995-01-20,21,Less than 25,Caucasian,0,9,0,4,2,-1,2013-11-05 11:10:50,2013-11-14 01:27:06,13020886MM10A,2013-11-05,,1,M,Assault,1,14000150MM20A,(M2),,2013-12-13,Mandatory Susp Possess Alcohol,,,,1,14012093CF10A,(F3),2014-07-15,Battery on Law Enforc Officer,Risk of Recidivism,9,High,2013-11-06,Risk of Violence,9,High,2013-11-06,2013-11-05,2013-11-14,2,8,37,1,1\r\n739,spencer clayborne,spencer,clayborne,2013-04-10,Male,1989-09-22,26,25 - 45,African-American,0,9,0,0,2,,,,12024513MM10A,,2013-03-25,16,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-10,Risk of Violence,6,Medium,2013-04-10,,,2,0,1087,0,0\r\n740,dung dang,dung,dang,2014-11-21,Male,1965-12-06,50,Greater than 45,Asian,0,7,0,0,5,0,2014-11-21 02:03:06,2014-12-02 08:28:45,14015716CF10A,2014-11-21,,0,F,Driving While License Revoked,1,15001443CF10A,(M1),1,2015-01-30,Unlaw Use False Name/Identity,2015-01-31,2015-04-10,,0,,,,,Risk of Recidivism,7,Medium,2014-11-21,Risk of Violence,5,Medium,2014-11-21,2014-11-21,2014-12-02,5,11,70,1,1\r\n743,courtney brownlee,courtney,brownlee,2013-02-13,Male,1989-10-28,26,25 - 45,African-American,0,2,0,0,1,-1,2013-02-12 03:08:29,2013-02-13 08:21:18,13002167CF10A,2013-02-12,,1,F,Cash Item w/Intent to Defraud,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-13,Risk of Violence,3,Low,2013-02-13,2013-02-12,2013-02-13,1,0,1143,0,0\r\n745,jessica andujar,jessica,andujar,2013-09-06,Female,1985-12-28,30,25 - 45,Caucasian,0,2,0,0,0,-1,2013-09-05 10:47:19,2013-09-06 11:08:59,13016989MM10A,2013-09-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-06,Risk of Violence,2,Low,2013-09-06,2013-09-05,2013-09-06,0,0,938,0,0\r\n750,ruben cotilla,ruben,cotilla,2013-10-01,Male,1986-05-04,29,25 - 45,Caucasian,0,9,0,0,6,-43,2013-08-19 01:15:23,2013-09-06 08:35:02,13003618CF10A,,2013-08-19,43,F,arrest case no charge,1,14014420TC40A,(M2),71,2014-02-26,Driving License Suspended,2014-05-08,2014-07-01,,0,,,,,Risk of Recidivism,9,High,2013-10-01,Risk of Violence,8,High,2013-10-01,2014-05-08,2014-07-01,6,0,148,1,1\r\n752,raymond ondic,raymond,ondic,2014-03-26,Male,1986-08-30,29,25 - 45,Caucasian,0,4,0,0,0,0,2014-03-26 12:14:14,2014-03-27 12:18:56,14005233MM10A,2014-03-25,,1,M,Battery,1,14008675MM10A,(M1),0,2014-05-31,Battery,2014-05-31,2014-06-09,,1,14008675MM10A,(M1),2014-05-31,Battery,Risk of Recidivism,4,Low,2014-03-26,Risk of Violence,4,Low,2014-03-26,2014-05-31,2014-06-09,0,1,66,1,1\r\n753,gregory wilson,gregory,wilson,2013-02-18,Male,1961-08-25,54,Greater than 45,African-American,0,1,0,0,0,-1,2013-02-17 03:23:30,2013-02-18 06:40:01,13003415MM10A,2013-02-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-18,Risk of Violence,1,Low,2013-02-18,2013-02-17,2013-02-18,0,0,1138,0,0\r\n754,tawfiq hamin,tawfiq,hamin,2013-11-13,Male,1987-01-16,29,25 - 45,African-American,0,4,0,0,4,-1,2013-11-12 01:08:14,2013-11-20 06:26:56,13015733CF10A,2013-11-12,,1,F,False Ownership Info/Pawn Item,1,14006688CF10A,(F3),,2014-01-02,Burglary Unoccupied Dwelling,,,,1,14006870MM10A,(M1),2014-04-24,Battery,Risk of Recidivism,4,Low,2013-11-13,Risk of Violence,4,Low,2013-11-13,2013-11-12,2013-11-20,4,7,50,1,1\r\n756,deborah zachary,deborah,zachary,2013-10-11,Female,1956-08-18,59,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-10-09 09:01:32,2013-10-10 07:57:22,13019214MM10A,2013-10-09,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-11,Risk of Violence,1,Low,2013-10-11,2013-10-09,2013-10-10,0,0,903,0,0\r\n757,walter anderson,walter,anderson,2013-03-27,Male,1977-11-15,38,25 - 45,African-American,0,5,0,0,0,0,2013-03-27 01:50:02,2013-03-28 08:18:15,13004425CF10A,2013-03-26,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-27,Risk of Violence,1,Low,2013-03-27,2013-03-27,2013-03-28,0,1,1101,0,0\r\n758,xiomara rivera,xiomara,rivera,2013-09-11,Female,1993-12-02,22,Less than 25,Hispanic,0,5,0,0,2,49,2013-10-30 01:49:29,2013-11-18 01:00:50,13007858CF10A,2013-06-03,,100,F,Possession of Cocaine,1,15005940MM10A,(M2),0,2015-05-31,Unlaw LicTag/Sticker Attach,2015-05-31,2015-05-31,,0,,,,,Risk of Recidivism,5,Medium,2013-09-11,Risk of Violence,4,Low,2013-09-11,2013-10-30,2013-11-18,2,0,49,0,1\r\n760,mark tindall,mark,tindall,2014-09-25,Male,1987-02-11,29,25 - 45,African-American,0,7,0,0,4,-53,2014-08-03 09:45:47,2014-08-29 07:47:26,14010583CF10A,,2014-08-03,53,F,arrest case no charge,1,15001709CF10A,(M1),0,2015-02-05,Resist/Obstruct W/O Violence,2015-02-05,2015-04-23,,1,15001709CF10A,(F3),2015-02-05,Battery on Law Enforc Officer,Risk of Recidivism,7,Medium,2014-09-25,Risk of Violence,6,Medium,2014-09-25,2015-02-05,2015-04-23,4,0,133,1,1\r\n762,cameron berry,cameron,berry,2013-02-21,Male,1988-07-16,27,25 - 45,Caucasian,0,3,0,0,1,-1,2013-02-20 09:27:13,2013-02-21 12:19:53,13007640TC10A,2013-02-20,,1,M,Opert With Susp DL 2nd Offens,1,14005658TC10A,(M1),0,2014-02-12,Opert With Susp DL 2nd Offens,2014-02-12,2014-02-18,,0,,,,,Risk of Recidivism,3,Low,2013-02-21,Risk of Violence,3,Low,2013-02-21,2014-02-12,2014-02-18,1,0,356,1,1\r\n763,jorge valle,jorge,valle,2014-05-18,Male,1990-04-14,26,25 - 45,Hispanic,0,5,0,0,7,-1,2014-05-17 07:40:21,2014-05-18 09:31:41,14006865CF10A,2014-05-17,,1,F,Aggravated Assault W/Dead Weap,1,14016192MM10A,(M1),0,2014-10-09,Resist/Obstruct W/O Violence,2014-10-09,2014-10-10,,0,,,,,Risk of Recidivism,5,Medium,2014-05-18,Risk of Violence,5,Medium,2014-05-18,2014-10-09,2014-10-10,7,0,144,1,1\r\n764,luis sanchez,luis,sanchez,2013-04-21,Male,1963-10-26,52,Greater than 45,Hispanic,0,3,0,0,20,-1,2013-04-20 10:15:03,2013-05-18 07:59:38,13005646CF10A,2013-04-20,,1,F,False Bomb Report,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-21,Risk of Violence,1,Low,2013-04-21,2013-08-03,2013-08-06,20,27,104,0,0\r\n765,henry williams,henry,williams,2013-12-21,Male,1949-09-19,66,Greater than 45,African-American,0,6,0,0,33,0,2013-12-21 12:34:16,2014-01-04 03:41:19,13017585CF10A,2013-12-20,,1,F,Crimin Mischief Damage $1000+,1,15000331MM30A,(M1),173,2015-01-08,Possess Cannabis/20 Grams Or Less,2015-06-30,2015-07-01,,0,,,,,Risk of Recidivism,6,Medium,2013-12-21,Risk of Violence,2,Low,2013-12-21,2013-12-21,2014-01-04,33,14,383,1,1\r\n769,zachary libman,zachary,libman,2013-03-09,Male,1989-02-17,27,25 - 45,Caucasian,0,5,0,0,2,0,2013-03-09 02:19:02,2013-03-09 09:06:46,13003509CF10A,2013-03-08,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-09,Risk of Violence,4,Low,2013-03-09,2013-03-09,2013-03-09,2,0,1119,0,0\r\n770,freddy cardona,freddy,cardona,2013-04-22,Male,1965-02-15,51,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-04-21 02:10:18,2013-04-22 03:59:29,13007691MM10A,2013-04-21,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2014-09-12,2014-09-12,1,0,508,0,0\r\n771,robert newton,robert,newton,2013-10-03,Male,1981-01-02,35,25 - 45,Caucasian,0,2,0,0,1,0,2013-10-03 07:44:08,2013-12-16 08:06:46,13013878CF10A,,2013-10-03,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-03,Risk of Violence,3,Low,2013-10-03,2013-10-03,2013-12-16,1,74,911,0,0\r\n774,james adams,james,adams,2013-08-12,Male,1989-10-12,26,25 - 45,African-American,0,7,0,0,1,,,,09011772CF10A,2009-06-24,,1510,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-12,Risk of Violence,4,Low,2013-08-12,,,1,0,963,0,0\r\n775,glen myers,glen,myers,2014-02-03,Male,1963-10-09,52,Greater than 45,Caucasian,0,3,0,0,4,-1,2014-02-02 02:24:43,2014-02-03 01:24:23,14001817MM10A,2014-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-03,Risk of Violence,2,Low,2014-02-03,2014-02-02,2014-02-03,4,0,788,0,0\r\n779,monica dunlap,monica,dunlap,2013-05-16,Female,1980-08-27,35,25 - 45,African-American,0,2,0,0,12,-54,2013-03-23 12:31:12,2013-03-23 02:23:21,13012402TC10A,2013-03-22,,55,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-16,Risk of Violence,1,Low,2013-05-16,2013-07-16,2013-07-16,12,0,61,0,0\r\n781,norman joseph,norman,joseph,2013-03-16,Male,1967-06-13,48,Greater than 45,Other,0,5,0,0,12,0,2013-03-16 03:19:01,2013-03-17 08:00:36,13003858CF10A,2013-03-16,,0,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-16,Risk of Violence,4,Low,2013-03-16,2013-03-16,2013-03-17,12,1,1112,0,0\r\n785,chaquiay anglin,chaquiay,anglin,2013-10-27,Female,1989-09-18,26,25 - 45,African-American,0,2,0,0,0,-1,2013-10-26 02:28:18,2013-10-27 08:36:51,13020322MM10A,2013-10-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-27,Risk of Violence,2,Low,2013-10-27,2013-10-26,2013-10-27,0,0,887,0,0\r\n786,barbara phetakoune,barbara,phetakoune,2014-01-14,Female,1967-10-29,48,Greater than 45,Caucasian,0,1,0,0,0,0,2014-01-14 04:43:41,2014-01-15 03:21:55,14001976MU10A,2014-01-14,,0,M,Leave Accd/Attend Veh/Less $50,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-14,Risk of Violence,1,Low,2014-01-14,2014-01-14,2014-01-15,0,1,808,0,0\r\n787,rayman ruiz,rayman,ruiz,2013-08-27,Male,1985-05-03,30,25 - 45,Hispanic,0,4,0,0,7,-1,2013-08-26 11:08:06,2013-10-03 05:13:08,13016300MM10A,2013-08-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-27,Risk of Violence,5,Medium,2013-08-27,2013-08-26,2013-10-03,7,37,948,0,0\r\n788,kareem williams,kareem,williams,2013-11-03,Male,1987-08-02,28,25 - 45,Other,0,1,0,0,2,-1,2013-11-02 05:18:38,2013-11-04 04:03:11,13020690MM10A,2013-11-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-03,Risk of Violence,2,Low,2013-11-03,2013-11-02,2013-11-04,2,1,880,0,0\r\n789,oswald mcbride,oswald,mcbride,2013-10-08,Male,1983-02-28,33,25 - 45,African-American,0,3,0,0,2,0,2013-10-08 02:14:25,2013-10-08 11:59:33,13019062MM10A,2013-10-08,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-08,Risk of Violence,3,Low,2013-10-08,2013-12-23,2013-12-24,2,0,76,0,0\r\n790,salvatoris williams,salvatoris,williams,2013-04-23,Female,1981-07-19,34,25 - 45,African-American,0,4,0,0,6,-1,2013-04-22 08:12:13,2013-06-13 09:46:00,13005780CF10A,2013-04-22,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-23,Risk of Violence,2,Low,2013-04-23,2015-07-05,2015-07-06,6,51,803,0,0\r\n792,sastri abhilash,sastri,abhilash,2013-12-20,Male,1991-01-05,25,25 - 45,Other,0,1,0,0,0,0,2013-12-20 03:36:29,2013-12-20 02:06:03,13023510MM10A,2013-12-20,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-20,Risk of Violence,2,Low,2013-12-20,2013-12-20,2013-12-20,0,0,833,0,0\r\n793,sherman dean,sherman,dean,2014-11-06,Male,1956-08-09,59,Greater than 45,African-American,0,7,0,0,10,-1,2014-11-05 07:10:16,2015-03-12 10:11:59,12008376CF10A,,2014-11-05,1,F,arrest case no charge,1,16000510MO40A,(MO3),0,2016-01-06,Carry Open/Uncov Bev In Pub,2016-01-06,2016-01-07,,0,,,,,Risk of Recidivism,7,Medium,2014-11-06,Risk of Violence,4,Low,2014-11-06,2016-01-06,2016-01-07,10,126,426,1,1\r\n794,carlis mccrea,carlis,mccrea,2014-06-11,Male,1986-08-09,29,25 - 45,African-American,0,5,0,0,5,-1,2014-06-10 04:43:13,2014-06-12 09:19:13,14008044CF10A,2014-06-10,,1,F,Poss Contr Subst W/o Prescript,1,14003088MM40A,(M1),,2014-07-02,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2014-06-11,Risk of Violence,3,Low,2014-06-11,2014-06-10,2014-06-12,5,1,21,1,1\r\n796,juan delgado-roger,juan,delgado-roger,2013-04-10,Male,1991-04-30,24,Less than 25,Caucasian,0,2,0,0,0,0,2013-04-10 01:50:54,2013-04-11 07:15:22,13005116CF10A,2013-04-10,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,3,Low,2013-04-10,2015-01-08,2015-01-14,0,1,638,0,0\r\n798,ernest reed,ernest,reed,2013-03-02,Male,1968-02-02,48,Greater than 45,Caucasian,0,7,0,0,1,-1,2013-03-01 07:50:26,2013-07-08 08:13:11,13003128CF10A,2013-03-01,,1,F,Agg Battery Grt/Bod/Harm,1,14004829MM10A,(M2),,2013-12-26,Petit Theft,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-02,Risk of Violence,4,Low,2013-03-02,2013-03-01,2013-07-08,1,128,299,1,1\r\n800,leroy ware,leroy,ware,2013-02-08,Male,1960-06-07,55,Greater than 45,African-American,0,8,0,0,0,61,2013-04-10 01:10:20,2013-05-25 07:54:19,13002796MM10A,2013-02-07,,1,M,Battery,1,13005155CF10A,(F3),0,2013-04-10,Battery on a Person Over 65,2013-04-10,2013-05-25,,1,13005155CF10A,(F3),2013-04-10,Battery on a Person Over 65,Risk of Recidivism,8,High,2013-02-08,Risk of Violence,4,Low,2013-02-08,2013-04-10,2013-05-25,0,0,61,1,1\r\n803,kelvin jones,kelvin,jones,2014-01-21,Male,1964-04-07,52,Greater than 45,African-American,0,5,0,0,4,0,2014-01-21 01:50:50,2014-01-22 02:48:22,14002400MU10A,2014-01-21,,0,M,Fail Register Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-21,Risk of Violence,3,Low,2014-01-21,2014-01-21,2014-01-22,4,1,801,0,0\r\n804,covaney graham,covaney,graham,2014-10-18,Male,1995-06-12,20,Less than 25,African-American,0,4,0,0,0,0,2014-10-18 01:22:59,2014-10-18 08:58:59,14014082CF10A,2014-10-17,,1,F,Possession of Ethylone,1,15006968MM10A,(M1),0,2015-06-08,Resist/Obstruct W/O Violence,2015-06-08,2015-06-09,,0,,,,,Risk of Recidivism,4,Low,2014-10-18,Risk of Violence,6,Medium,2014-10-18,2015-06-08,2015-06-09,0,0,233,1,1\r\n805,zachary premock,zachary,premock,2014-05-15,Male,1990-11-23,25,25 - 45,Caucasian,0,4,0,0,4,-5,2014-05-10 01:35:17,2014-05-15 10:32:57,14006509CF10A,2014-05-09,,6,F,Possession of Cocaine,1,14077767TC20A,(M2),,2014-11-04,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,4,Low,2014-05-15,Risk of Violence,3,Low,2014-05-15,2014-05-10,2014-05-15,4,0,173,1,1\r\n806,mckenzie reijonen,mckenzie,reijonen,2013-01-02,Male,1991-07-18,24,Less than 25,Caucasian,0,2,0,0,0,-1,2013-01-01 05:32:16,2013-01-16 06:22:12,13000034CF10A,2013-01-01,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-02,Risk of Violence,3,Low,2013-01-02,2013-01-01,2013-01-16,0,14,1185,0,0\r\n807,mauro perez,mauro,perez,2013-01-20,Male,1993-03-15,23,Less than 25,Caucasian,0,9,0,0,0,-1,2013-01-19 07:06:05,2013-01-20 12:29:47,13001351MM10A,2013-01-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-20,Risk of Violence,6,Medium,2013-01-20,2016-01-28,2020-01-01,0,0,1103,0,0\r\n808,andrew thomas,andrew,thomas,2013-10-19,Male,1988-05-02,27,25 - 45,Caucasian,0,4,1,3,6,-1,2013-10-18 01:19:43,2013-10-19 08:00:03,13014603CF10A,2013-10-18,,1,F,Felony Battery (Dom Strang),1,16002005CF10A,(F3),,2016-01-08,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-19,Risk of Violence,3,Low,2013-10-19,2016-01-10,2016-01-11,6,0,811,1,0\r\n810,donovan sheffield,donovan,sheffield,2014-06-13,Male,1990-12-01,25,25 - 45,African-American,0,3,1,0,1,-1,2014-06-12 12:59:13,2014-06-13 08:53:42,14009329MM10A,2014-06-11,,2,M,Battery,1,15000662MM40A,(M1),,2015-01-23,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2014-06-13,Risk of Violence,3,Low,2014-06-13,2016-03-18,2016-03-19,1,0,224,1,1\r\n812,antwon hyman,antwon,hyman,2013-08-17,Male,1984-09-04,31,25 - 45,African-American,0,2,0,0,0,-1,2013-08-16 06:01:59,2013-08-16 06:08:13,13011507CF10A,2013-08-16,,1,F,Trespassing/Construction Site,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-17,Risk of Violence,1,Low,2013-08-17,2013-08-16,2013-08-16,0,0,958,0,0\r\n813,mark singletary,mark,singletary,2014-04-13,Male,1990-12-31,25,25 - 45,African-American,0,4,1,0,6,-1,2014-04-12 01:03:26,2014-04-16 08:49:06,14005145CF10A,,2014-04-11,2,F,arrest case no charge,1,14078804TC20A,(M2),0,2014-11-07,Driving License Suspended,2014-11-07,2014-11-17,,0,,,,,Risk of Recidivism,4,Low,2014-04-13,Risk of Violence,5,Medium,2014-04-13,2014-11-07,2014-11-17,6,3,208,1,1\r\n814,benjamin levine,benjamin,levine,2014-01-21,Male,1983-06-11,32,25 - 45,Caucasian,0,1,0,0,1,-7,2014-01-14 10:07:59,2014-01-15 01:58:04,14000604CF10A,,2014-01-14,7,F,arrest case no charge,1,15008433MM10A,(M1),0,2015-08-09,Battery,2015-08-09,2015-08-10,,1,15008433MM10A,(M1),2015-08-09,Battery,Risk of Recidivism,1,Low,2014-01-21,Risk of Violence,2,Low,2014-01-21,2015-08-09,2015-08-10,1,0,565,1,1\r\n815,scott johnson,scott,johnson,2014-04-07,Male,1994-05-09,21,Less than 25,Caucasian,0,3,0,0,0,-1,2014-04-06 12:28:23,2014-04-06 02:30:38,14004711CF10A,2014-04-05,,2,F,Grand Theft in the 3rd Degree,1,15018043TC20A,(M2),,2015-01-27,Racing On Highway,,,,0,,,,,Risk of Recidivism,3,Low,2014-04-07,Risk of Violence,5,Medium,2014-04-07,2014-04-06,2014-04-06,0,0,295,1,1\r\n817,arrantes green,arrantes,green,2013-02-21,Male,1978-05-16,37,25 - 45,Other,0,1,0,0,1,-1,2013-02-20 08:05:01,2013-02-25 09:11:42,13002589CF10A,2013-02-20,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-21,Risk of Violence,1,Low,2013-02-21,2013-02-20,2013-02-25,1,4,1135,0,0\r\n818,frantz mersier,frantz,mersier,2013-12-08,Male,1990-06-01,25,25 - 45,Caucasian,0,3,0,0,0,0,2013-12-08 01:39:45,2013-12-08 01:45:29,13016946CF10A,2013-12-07,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-08,Risk of Violence,4,Low,2013-12-08,2014-02-12,2014-02-27,0,0,66,0,0\r\n820,terrance holland,terrance,holland,2013-01-01,Male,1984-01-11,32,25 - 45,Hispanic,1,10,1,0,20,0,2013-01-01 05:08:53,2013-01-02 03:08:56,12017968CF10A,,2013-01-01,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-01,Risk of Violence,7,Medium,2013-01-01,2013-01-01,2013-01-02,20,1,1186,0,0\r\n821,dorcas willis,dorcas,willis,2013-04-25,Male,1980-08-31,35,25 - 45,African-American,0,7,0,0,0,-1,2013-04-24 07:43:40,2013-04-26 08:46:06,13005883CF10A,2013-04-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-25,Risk of Violence,2,Low,2013-04-25,2013-04-24,2013-04-26,0,1,1072,0,0\r\n823,sammie williams,sammie,williams,2014-02-09,Male,1973-04-26,42,25 - 45,African-American,0,7,0,0,14,-1,2014-02-08 09:03:23,2014-02-10 02:33:36,14001806CF10A,2014-02-08,,1,F,Drivg While Lic Suspd/Revk/Can,1,14004051CF10A,(F3),0,2014-03-22,Driving While License Revoked,2014-03-22,2014-05-29,,0,,,,,Risk of Recidivism,7,Medium,2014-02-09,Risk of Violence,6,Medium,2014-02-09,2014-03-22,2014-05-29,14,1,41,1,1\r\n825,alexander marino,alexander,marino,2013-09-09,Male,1991-07-20,24,Less than 25,Caucasian,0,10,0,1,9,-23,2013-08-17 01:46:04,2013-08-27 03:55:32,13015605MM10A,2013-08-17,,23,M,Viol Injunct Domestic Violence,1,13014469CF10A,(F3),0,2013-10-16,Possession Burglary Tools,2013-10-16,2014-10-06,,1,16002201CF10A,(F2),2016-02-19,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2013-09-09,Risk of Violence,8,High,2013-09-09,2013-10-16,2014-10-06,9,0,37,1,1\r\n829,jordan torres,jordan,torres,2014-07-15,Male,1993-05-15,22,Less than 25,Caucasian,1,10,0,4,6,168,2014-12-30 03:25:32,2015-03-02 11:38:08,13015457CF10A,2013-11-06,,251,F,Possession of Cocaine,1,14097534TC30A,(M2),32,2014-11-28,Susp Drivers Lic 1st Offense,2014-12-30,2015-03-02,,0,,,,,Risk of Recidivism,10,High,2014-07-15,Risk of Violence,10,High,2014-07-15,2014-12-30,2015-03-02,6,0,136,1,1\r\n830,justin gomez,justin,gomez,2013-08-24,Male,1994-11-24,21,Less than 25,Hispanic,0,6,0,0,0,-1,2013-08-23 09:06:45,2013-08-24 08:56:18,13011897CF10A,2013-08-23,,1,F,Grand Theft in the 3rd Degree,1,14000125MM20A,(M2),153,2013-12-18,Petit Theft,2014-05-20,2014-05-22,,0,,,,,Risk of Recidivism,6,Medium,2013-08-24,Risk of Violence,9,High,2013-08-24,2014-08-01,2015-03-03,0,0,116,1,1\r\n831,malcolm austin,malcolm,austin,2013-03-20,Male,1968-10-11,47,Greater than 45,Caucasian,0,1,0,0,1,0,2013-03-20 02:25:51,2013-03-20 07:51:16,13005458MM10A,2013-03-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-03-20,2013-03-20,1,0,1108,0,0\r\n835,denzil woodcock,denzil,woodcock,2014-03-21,Male,1988-12-15,27,25 - 45,African-American,0,9,0,0,5,-1,2014-03-20 02:19:43,2014-03-21 07:57:16,14003953CF10A,2014-03-20,,1,F,Aggrav Battery w/Deadly Weapon,1,15021096TC10A,(M2),0,2015-07-18,Operating W/O Valid License,2015-07-18,2015-07-18,,0,,,,,Risk of Recidivism,9,High,2014-03-21,Risk of Violence,7,Medium,2014-03-21,2015-07-18,2015-07-18,5,0,484,0,1\r\n836,milton martin,milton,martin,2014-10-15,Male,1972-12-12,43,25 - 45,Hispanic,0,1,0,0,2,-12,2014-10-03 04:35:53,2014-10-07 09:34:35,14035950MU10A,2014-10-03,,12,M,DUI Level 0.15 Or Minor In Veh,1,14074516TC20A,(M2),228,2014-10-16,Susp Drivers Lic 1st Offense,2015-06-01,2015-06-05,,0,,,,,Risk of Recidivism,1,Low,2014-10-15,Risk of Violence,1,Low,2014-10-15,2015-06-01,2015-06-05,2,0,1,1,1\r\n837,dean lietzau,dean,lietzau,2013-11-17,Male,1969-06-10,46,Greater than 45,Caucasian,0,6,0,0,2,-1,2013-11-16 09:37:06,2013-11-17 08:25:25,13015937CF10A,2013-11-16,,1,F,Possession Of Alprazolam,1,14003780MM40A,(M1),143,2014-08-23,Petit Theft $100- $300,2015-01-13,2015-01-13,,0,,,,,Risk of Recidivism,6,Medium,2013-11-17,Risk of Violence,1,Low,2013-11-17,2015-10-01,2015-10-02,2,0,279,1,1\r\n838,derrick goodley,derrick,goodley,2013-01-29,Male,1971-11-14,44,25 - 45,African-American,0,3,0,0,1,0,2013-01-29 06:36:33,2013-01-29 08:34:07,13002096MM10A,2013-01-29,,0,M,Reckless Driving,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-29,2013-01-29,1,0,1158,0,0\r\n840,rafael rivera,rafael,rivera,2013-04-17,Male,1988-07-05,27,25 - 45,African-American,0,5,0,0,0,,,,13005535CF10A,2013-04-16,,1,F,Consp Traff Oxycodone 28g><30k,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-17,Risk of Violence,5,Medium,2013-04-17,,,0,0,1080,0,0\r\n841,cesar pedraza,cesar,pedraza,2013-12-13,Male,1993-03-25,23,Less than 25,Caucasian,0,2,0,0,2,-1,2013-12-12 11:10:00,2013-12-13 08:47:02,13017191CF10A,2013-12-12,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-13,Risk of Violence,3,Low,2013-12-13,2013-12-12,2013-12-13,2,0,840,0,0\r\n842,ana cuba,ana,cuba,2013-02-13,Female,1965-12-30,50,Greater than 45,Hispanic,0,1,0,0,1,,,,12002463CF10A,2009-07-04,,1320,F,Unemployment Compensatn Fraud,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,,,1,0,1143,0,0\r\n843,richard harding,richard,harding,2013-10-03,Male,1973-09-28,42,25 - 45,African-American,0,5,0,0,8,-1,2013-10-02 10:41:22,2013-10-04 05:24:16,13007224CF10A,,2013-10-02,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-03,Risk of Violence,2,Low,2013-10-03,2013-10-02,2013-10-04,8,1,911,0,0\r\n844,benjamin feast,benjamin,feast,2013-05-22,Male,1957-10-13,58,Greater than 45,African-American,0,6,0,0,6,-1,2013-05-21 03:25:30,2013-10-12 05:17:10,13007238CF10A,2013-05-21,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-22,Risk of Violence,3,Low,2013-05-22,2014-10-15,2014-12-12,6,143,511,0,0\r\n847,steven nettleford,steven,nettleford,2013-01-25,Male,1990-02-13,26,25 - 45,African-American,0,6,0,1,3,-1,2013-01-24 09:05:00,2013-01-26 04:55:47,13001179CF10A,2013-01-24,,1,F,Grand Theft (Motor Vehicle),1,15008815CF10A,(F3),0,2015-07-09,Poss Pyrrolidinovalerophenone,2015-07-09,2015-10-18,,0,,,,,Risk of Recidivism,6,Medium,2013-01-25,Risk of Violence,4,Low,2013-01-25,2015-07-09,2015-10-18,3,1,895,1,0\r\n848,eva downs,eva,downs,2013-02-04,Female,1968-02-07,48,Greater than 45,Other,0,1,0,0,0,-1,2013-02-03 10:36:16,2013-02-20 12:12:55,13001821CF10A,2013-02-03,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-02-03,2013-02-20,0,16,1152,0,0\r\n849,abdul leiba,abdul,leiba,2013-10-30,Male,1976-09-11,39,25 - 45,African-American,0,3,0,0,3,-1,2013-10-29 05:34:04,2013-11-01 05:49:33,13015098CF10A,2013-10-29,,1,F,Grand Theft in the 3rd Degree,1,14007250CF10A,(M2),0,2014-05-24,Susp Drivers Lic 1st Offense,2014-05-24,2014-05-26,,0,,,,,Risk of Recidivism,3,Low,2013-10-30,Risk of Violence,2,Low,2013-10-30,2014-05-24,2014-05-26,3,2,206,1,1\r\n850,deandre miller,deandre,miller,2013-05-15,Male,1995-03-26,21,Less than 25,African-American,0,5,2,0,3,0,2013-05-15 12:34:33,2013-05-15 07:01:43,13006891CF10A,,2013-05-14,1,F,arrest case no charge,1,14010145CF10A,(F3),0,2014-07-25,Grand Theft in the 3rd Degree,2014-07-25,2014-09-04,,1,15008351CF10A,(F2),2015-06-29,Robbery / No Weapon,Risk of Recidivism,5,Medium,2013-05-15,Risk of Violence,6,Medium,2013-05-15,2014-07-25,2014-09-04,3,0,436,1,1\r\n851,keith antolick,keith,antolick,2014-01-31,Male,1952-06-19,63,Greater than 45,Caucasian,0,1,0,0,1,-9,2014-01-22 10:01:17,2014-01-28 03:54:00,14002640MU10A,2014-01-22,,9,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-31,Risk of Violence,1,Low,2014-01-31,2014-01-22,2014-01-28,1,0,791,0,0\r\n852,tyrone carter,tyrone,carter,2013-11-18,Male,1993-11-05,22,Less than 25,African-American,0,7,1,0,3,-11,2013-11-07 10:41:34,2013-11-15 08:48:23,12016330CF10A,,2013-11-07,11,F,arrest case no charge,1,15005819CF10A,(F3),,2015-05-04,Burglary Conveyance Unoccup,,,,1,15006218CF10A,(F3),2015-05-11,Felony Battery (Dom Strang),Risk of Recidivism,7,Medium,2013-11-18,Risk of Violence,7,Medium,2013-11-18,2013-11-07,2013-11-15,3,0,532,1,1\r\n853,david schultz,david,schultz,2013-02-03,Male,1965-09-25,50,Greater than 45,African-American,0,3,0,0,3,-1,2013-02-02 09:08:31,2013-02-03 06:57:55,13002401MM10A,2013-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-03,Risk of Violence,2,Low,2013-02-03,2013-02-02,2013-02-03,3,0,1153,0,0\r\n855,geoffrey salesman,geoffrey,salesman,2013-05-27,Male,1977-07-18,38,25 - 45,African-American,0,1,0,0,0,-1,2013-05-26 10:41:56,2013-06-05 09:47:42,13007530CF10A,2013-05-26,,1,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-05-26,2013-06-05,0,9,1040,0,0\r\n856,osvaldo pereyra,osvaldo,pereyra,2013-10-22,Male,1974-06-23,41,25 - 45,Caucasian,0,6,0,0,1,-6,2013-10-16 03:27:50,2013-10-22 10:32:34,13014495CF10A,2013-10-15,,7,F,Sexual Battery / Vict 12 Yrs +,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-22,Risk of Violence,4,Low,2013-10-22,2013-11-27,2013-12-02,1,0,36,0,0\r\n857,travis holmes,travis,holmes,2014-02-25,Male,1987-12-07,28,25 - 45,African-American,8,8,0,1,16,-1,2014-02-24 04:17:37,2014-02-25 08:09:24,14002607CF10A,2014-02-24,,1,F,Aggravated Battery / Pregnant,1,15005982CF10A,(M1),0,2015-05-07,Possess Cannabis/20 Grams Or Less,2015-05-07,2015-06-01,,1,15008803CF10A,(F2),2015-06-30,Aggravated Battery / Pregnant,Risk of Recidivism,8,High,2014-02-25,Risk of Violence,9,High,2014-02-25,2015-05-07,2015-06-01,16,0,436,1,1\r\n858,shakennea baker,shakennea,baker,2013-11-06,Female,1985-12-07,30,25 - 45,African-American,0,3,0,0,0,0,2013-11-06 03:13:16,2013-11-07 09:03:30,13020963MM10A,2013-11-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-06,Risk of Violence,3,Low,2013-11-06,2013-11-06,2013-11-07,0,1,877,0,0\r\n859,rionne holloman,rionne,holloman,2013-04-24,Male,1993-01-28,23,Less than 25,African-American,0,5,0,0,1,0,2013-04-24 02:27:23,2013-04-24 08:08:08,13005889CF10A,2013-04-23,,1,F,Agg Fleeing and Eluding,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-24,Risk of Violence,7,Medium,2013-04-24,2014-02-20,2014-03-28,1,0,302,0,0\r\n861,jared wanger,jared,wanger,2014-01-23,Male,1990-05-22,25,25 - 45,Caucasian,0,4,0,0,2,-13,2014-01-10 03:47:24,2014-01-22 08:41:17,13010449CF10A,,2014-01-10,13,F,arrest case no charge,1,14010024CF10A,(F3),1,2014-07-22,Grand Theft in the 3rd Degree,2014-07-23,2014-08-27,,0,,,,,Risk of Recidivism,4,Low,2014-01-23,Risk of Violence,3,Low,2014-01-23,2015-06-19,2015-06-30,2,0,180,1,1\r\n863,christopher metcalf,christopher,metcalf,2013-09-15,Male,1976-03-12,40,25 - 45,Caucasian,0,4,0,0,5,0,2013-09-15 03:23:56,2013-09-15 07:27:18,13013025CF10A,2013-09-14,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-15,Risk of Violence,1,Low,2013-09-15,2015-10-07,2015-10-16,5,0,752,0,0\r\n864,frank carvalho,frank,carvalho,2013-04-25,Male,1991-05-25,24,Less than 25,Hispanic,0,8,0,0,8,0,2013-04-25 02:04:02,2013-04-25 01:19:35,13005907CF10A,2013-04-25,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-25,Risk of Violence,4,Low,2013-04-25,2013-04-25,2013-04-25,8,0,1072,0,0\r\n867,timothy garner,timothy,garner,2013-12-22,Male,1988-12-27,27,25 - 45,African-American,0,4,0,0,5,0,2013-12-22 05:35:31,2014-02-24 08:43:57,13023566MM10A,2013-12-22,,0,M,Criminal Mischief Damage <$200,1,14073493TC40A,(M2),114,2014-10-28,Operating W/O Valid License,2015-02-19,2015-03-10,,0,,,,,Risk of Recidivism,4,Low,2013-12-22,Risk of Violence,9,High,2013-12-22,2013-12-22,2014-02-24,5,64,310,1,1\r\n869,mark rawiszer,mark,rawiszer,2013-09-07,Male,1971-09-03,44,25 - 45,Caucasian,0,3,0,0,11,0,2013-09-07 03:37:40,2014-03-06 10:26:26,13017051MM10A,2013-09-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-07,Risk of Violence,6,Medium,2013-09-07,2013-09-07,2014-03-06,11,180,937,0,0\r\n870,tanares russ,tanares,russ,2013-10-30,Female,1980-11-13,35,25 - 45,African-American,0,2,0,0,6,-1,2013-10-29 02:27:04,2013-10-30 08:32:44,13015117CF10A,,2013-10-29,1,F,arrest case no charge,1,15005910MM10A,(M1),1,2015-05-29,Battery,2015-05-30,2015-07-17,,1,15005910MM10A,(M1),2015-05-29,Battery,Risk of Recidivism,2,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2015-05-30,2015-07-17,6,0,576,1,1\r\n871,attique mohammad,attique,mohammad,2013-02-06,Male,1973-12-25,42,25 - 45,Caucasian,0,1,0,0,0,0,2013-02-06 02:27:50,2013-02-06 07:49:59,13002721MM10A,2013-02-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-06,Risk of Violence,1,Low,2013-02-06,2013-02-06,2013-02-06,0,0,1150,0,0\r\n872,anthony deary,anthony,deary,2014-01-24,Male,1978-03-17,38,25 - 45,African-American,0,7,0,0,15,0,2014-01-24 04:04:57,2014-01-24 09:37:14,14001075CF10A,2014-01-23,,1,F,Drivg While Lic Suspd/Revk/Can,1,16014195TC30A,(M2),,2016-03-04,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-24,Risk of Violence,5,Medium,2014-01-24,2014-01-24,2014-01-24,15,0,770,1,0\r\n874,jorge fernandez,jorge,fernandez,2013-03-06,Male,1990-01-23,26,25 - 45,Hispanic,0,6,0,0,4,0,2013-03-06 12:02:54,2013-03-06 09:47:10,13003284CF10A,2013-03-05,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-06,Risk of Violence,6,Medium,2013-03-06,2013-03-06,2013-03-06,4,0,1122,0,0\r\n875,brittany funchess,brittany,funchess,2013-05-28,Female,1990-05-30,25,25 - 45,African-American,0,3,0,0,0,-1,2013-05-27 09:36:52,2013-05-28 09:04:37,13010161MM10A,2013-05-27,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-28,Risk of Violence,3,Low,2013-05-28,2013-05-27,2013-05-28,0,0,1039,0,0\r\n879,alfonso starling,alfonso,starling,2013-05-17,Male,1992-01-19,24,Less than 25,Caucasian,0,4,0,0,1,,,,12011759CF10A,,2012-08-10,280,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-17,Risk of Violence,6,Medium,2013-05-17,,,1,0,1050,0,0\r\n880,victor lozada,victor,lozada,2013-08-13,Male,1951-05-12,64,Greater than 45,Hispanic,0,1,0,0,1,-8,2013-08-05 12:41:27,2013-08-13 02:27:19,13010831CF10A,2013-08-04,,9,F,Aggravated Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-13,Risk of Violence,1,Low,2013-08-13,2013-08-05,2013-08-13,1,0,962,0,0\r\n881,lawrence derubeis,lawrence,derubeis,2014-01-21,Female,1966-05-22,49,Greater than 45,Caucasian,0,1,0,0,2,0,2014-01-21 03:14:16,2014-01-21 07:59:17,14002500MU10A,2014-01-21,,0,M,Driving Under The Influence,1,14027296TC10A,(M2),0,2014-07-25,Driving License Suspended,2014-07-25,2014-07-26,,0,,,,,Risk of Recidivism,1,Low,2014-01-21,Risk of Violence,1,Low,2014-01-21,2014-06-08,2014-06-09,2,0,138,0,1\r\n882,david hall,david,hall,2014-12-15,Male,1965-07-14,50,Greater than 45,Caucasian,0,1,0,0,5,-1,2014-12-14 04:50:01,2014-12-15 06:38:00,15002028CF10A,2014-12-14,,1,F,Driving While License Revoked,1,14016894CF10A,(M2),0,2014-12-21,Unlaw LicTag/Sticker Attach,2014-12-21,2015-01-16,,0,,,,,Risk of Recidivism,1,Low,2014-12-15,Risk of Violence,1,Low,2014-12-15,2014-12-21,2015-01-16,5,0,6,1,1\r\n883,ryan bergeron,ryan,bergeron,2014-04-01,Male,1988-04-07,28,25 - 45,Caucasian,0,6,0,0,8,162,2014-09-10 05:48:28,2014-10-11 05:18:30,13014781CF10A,,2013-10-22,161,F,arrest case no charge,1,15011994CF10A,(F3),,2015-09-15,Possession of Cocaine,,,,0,,,,,Risk of Recidivism,6,Medium,2014-04-01,Risk of Violence,8,High,2014-04-01,2014-09-10,2014-10-11,8,0,162,0,1\r\n884,benny evans,benny,evans,2013-08-14,Male,1949-12-19,66,Greater than 45,Caucasian,0,1,0,0,0,0,2013-08-14 05:00:03,2013-08-15 04:51:13,13015395MM10A,2013-08-14,,0,M,Battery,1,15045735TC40A,(M2),,2015-08-01,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-14,Risk of Violence,1,Low,2013-08-14,2013-08-14,2013-08-15,0,1,717,1,1\r\n886,adriana valencia,adriana,valencia,2013-08-21,Female,1969-08-29,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-20 09:12:14,2013-08-21 09:19:20,13015855MM10A,2013-08-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-21,Risk of Violence,1,Low,2013-08-21,2013-08-20,2013-08-21,0,0,954,0,0\r\n887,courtney louis,courtney,louis,2013-03-04,Male,1985-05-11,30,25 - 45,African-American,0,6,0,1,5,-1,2013-03-03 06:23:59,2013-03-04 08:33:50,13003196CF10A,2013-03-03,,1,F,Driving While License Revoked,1,13011913CF10A,(F3),0,2013-08-23,Unauth C/P/S Sounds>1000/Audio,2013-08-23,2013-08-24,,1,14009967MM10A,(M1),2014-06-26,Battery,Risk of Recidivism,6,Medium,2013-03-04,Risk of Violence,6,Medium,2013-03-04,2013-08-23,2013-08-24,5,0,172,1,1\r\n888,pamela delgado,pamela,delgado,2014-01-22,Female,1993-11-01,22,Less than 25,Caucasian,0,3,0,0,0,0,2014-01-22 12:55:30,2014-01-22 09:20:36,14001125MM10A,2014-01-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-22,Risk of Violence,4,Low,2014-01-22,2014-01-22,2014-01-22,0,0,800,0,0\r\n889,clevor kiffin,clevor,kiffin,2013-03-24,Male,1993-04-06,23,Less than 25,Caucasian,0,4,0,0,1,-1,2013-03-23 10:06:43,2013-04-02 09:22:16,13013358TC10A,,2013-03-23,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-24,Risk of Violence,6,Medium,2013-03-24,2016-02-06,2016-02-07,1,9,1049,0,0\r\n890,donovan newbold,donovan,newbold,2013-12-07,Male,1985-11-26,30,25 - 45,Other,0,6,0,0,0,-1,2013-12-06 07:17:34,2013-12-07 07:42:09,13022646MM10A,2013-12-06,,1,M,Battery,1,14039702TC40A,(M2),,2014-06-07,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-07,Risk of Violence,5,Medium,2013-12-07,2015-10-05,2015-10-16,0,0,182,1,1\r\n891,rashad adams,rashad,adams,2014-11-28,Male,1991-06-21,24,Less than 25,African-American,1,10,0,0,10,75,2015-02-11 07:10:51,2015-02-28 12:17:14,14015066CF10A,,2014-11-28,0,F,arrest case no charge,1,15001970CF10A,(F3),0,2015-02-11,Poss Pyrrolidinovalerophenone,2015-02-11,2015-02-28,,0,,,,,Risk of Recidivism,10,High,2014-11-28,Risk of Violence,5,Medium,2014-11-28,2015-02-11,2015-02-28,10,0,75,1,1\r\n893,donnie aguilar,donnie,aguilar,2013-02-25,Male,1985-01-19,31,25 - 45,Hispanic,0,1,0,0,0,-1,2013-02-24 12:26:26,2013-02-25 01:51:33,13003813MM10A,2013-02-23,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,2,Low,2013-02-25,2013-02-24,2013-02-25,0,0,1131,0,0\r\n895,patrick cezaire,patrick,cezaire,2013-05-01,Male,1985-03-15,31,25 - 45,Other,0,2,0,0,1,-1,2013-04-30 07:18:35,2013-05-01 03:47:37,13006119CF10A,,2013-04-30,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2014-12-30,2014-12-31,1,0,608,0,0\r\n897,sequan turner,sequan,turner,2013-02-26,Male,1995-01-13,21,Less than 25,African-American,4,7,0,0,4,622,2014-11-10 05:41:58,2015-03-08 04:08:32,12017851CF10A,,2012-12-20,68,F,arrest case no charge,1,14016144MM10A,(M2),0,2014-11-10,Petit Theft,2014-11-10,2015-03-08,,0,,,,,Risk of Recidivism,7,Medium,2013-02-26,Risk of Violence,8,High,2013-02-26,2014-11-10,2015-03-08,4,0,622,1,1\r\n898,antvonte sanders,antvonte,sanders,2013-03-07,Male,1988-02-25,28,25 - 45,African-American,0,8,0,0,4,747,2015-03-24 07:19:51,2015-05-15 10:51:34,12002361CF10A,,2012-03-06,366,F,arrest case no charge,1,15003939CF10A,(F3),0,2015-03-24,Tampering With Physical Evidence,2015-03-24,2015-05-15,,0,,,,,Risk of Recidivism,8,High,2013-03-07,Risk of Violence,7,Medium,2013-03-07,2015-03-24,2015-05-15,4,0,747,1,0\r\n899,stephen parra,stephen,parra,2013-03-17,Male,1991-04-08,25,25 - 45,African-American,0,3,0,0,0,-1,2013-03-16 09:16:46,2013-03-17 02:17:18,13005181MM10A,2013-03-16,,1,M,Disorderly Conduct,1,15011037CF10A,(F3),0,2015-08-26,False Imprisonment,2015-08-26,2015-08-29,,1,15011037CF10A,(M1),2015-08-26,Battery,Risk of Recidivism,3,Low,2013-03-17,Risk of Violence,4,Low,2013-03-17,2015-08-26,2015-08-29,0,0,892,1,0\r\n900,aaliyah lovo,aaliyah,lovo,2013-11-04,Female,1994-11-10,21,Less than 25,Caucasian,0,7,0,0,0,-1,2013-11-03 01:54:43,2013-11-05 05:54:27,13015312CF10A,2013-11-03,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-04,Risk of Violence,5,Medium,2013-11-04,2013-11-03,2013-11-05,0,1,879,0,0\r\n901,odean lawrence,odean,lawrence,2013-01-13,Male,1988-07-18,27,25 - 45,African-American,0,2,0,0,0,-1,2013-01-12 04:24:36,2013-01-13 12:41:13,13000749MM10A,2013-01-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-13,Risk of Violence,3,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0\r\n904,jean rodriguez,jean,rodriguez,2014-05-24,Male,1995-12-13,20,Less than 25,Hispanic,0,2,0,0,0,-1,2014-05-23 07:42:01,2014-05-24 08:43:14,14008346MM10A,2014-05-23,,1,M,Possess Cannabis/20 Grams Or Less,1,14017412MM10A,(M2),0,2014-12-10,Petit Theft,2014-12-10,2014-12-11,,0,,,,,Risk of Recidivism,2,Low,2014-05-24,Risk of Violence,5,Medium,2014-05-24,2014-12-10,2014-12-11,0,0,200,1,1\r\n905,luis mora,luis,mora,2013-07-23,Male,1983-05-16,32,25 - 45,Hispanic,0,1,0,0,1,-27,2013-06-26 07:47:32,2013-06-26 08:09:02,13008994CF10A,2013-06-26,,27,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-23,Risk of Violence,1,Low,2013-07-23,2013-06-26,2013-06-26,1,0,983,0,0\r\n906,megan mcnulty,megan,mcnulty,2013-09-22,Female,1991-07-28,24,Less than 25,Caucasian,0,5,0,1,0,0,2013-09-22 05:21:34,2013-09-23 02:00:15,13013345CF10A,2013-09-22,,0,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-22,Risk of Violence,5,Medium,2013-09-22,2013-09-22,2013-09-23,0,1,922,0,0\r\n909,mellick jackson,mellick,jackson,2014-01-29,Male,1996-04-11,20,Less than 25,African-American,1,3,0,0,1,-1,2014-01-28 12:49:23,2014-01-29 10:42:36,14000687CF10A,,2014-01-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-29,Risk of Violence,6,Medium,2014-01-29,2014-01-28,2014-01-29,1,0,793,0,0\r\n913,bertram cooper,bertram,cooper,2013-07-12,Male,1985-01-13,31,25 - 45,African-American,0,8,0,0,3,-20,2013-06-22 07:50:45,2013-07-12 05:35:03,13011983MM10A,2013-06-22,,20,M,Viol Pretrial Release Dom Viol,1,15004547MM10A,(M1),0,2015-04-16,Resist/Obstruct W/O Violence,2015-04-16,2015-04-17,,0,,,,,Risk of Recidivism,8,High,2013-07-12,Risk of Violence,3,Low,2013-07-12,2015-04-16,2015-04-17,3,0,643,1,1\r\n914,dwayne donaldson,dwayne,donaldson,2014-12-02,Male,1988-08-02,27,25 - 45,African-American,0,7,0,0,3,-1,2014-12-01 03:21:53,2014-12-07 04:35:04,14016999MM10A,2014-12-01,,1,M,Battery,1,15007366CF10A,(F3),0,2015-06-06,Aggravated Assault w/Firearm,2015-06-06,2015-06-07,,1,15007366CF10A,(F3),2015-06-06,Aggravated Assault w/Firearm,Risk of Recidivism,7,Medium,2014-12-02,Risk of Violence,8,High,2014-12-02,2015-06-06,2015-06-07,3,5,186,1,1\r\n915,ricardo daley,ricardo,daley,2013-10-08,Male,1956-11-12,59,Greater than 45,African-American,0,5,0,0,17,-65,2013-08-04 05:51:30,2013-10-01 10:35:06,13010841CF10A,2013-08-04,,65,F,Grand Theft in the 3rd Degree,1,14001373MM20A,(M1),72,2014-03-16,Possess Drug Paraphernalia,2014-05-27,2014-06-24,,0,,,,,Risk of Recidivism,5,Medium,2013-10-08,Risk of Violence,2,Low,2013-10-08,2014-05-27,2014-06-24,17,0,159,1,1\r\n916,johhnie scott,johhnie,scott,2013-01-18,Male,1975-06-13,40,25 - 45,African-American,0,2,0,0,0,-1,2013-01-17 05:59:00,2013-01-18 08:48:30,13000829CF10A,2013-01-17,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2013-01-17,2013-01-18,0,0,1169,0,0\r\n917,marcus gibbons,marcus,gibbons,2014-12-10,Male,1993-08-17,22,Less than 25,African-American,0,10,0,0,11,0,2014-12-10 01:21:36,2014-12-10 01:26:52,14016372CF10A,2014-12-09,,1,F,Possession of Cocaine,1,15001136CF10A,(F3),0,2015-01-25,Poss Pyrrolidinovalerophenone,2015-01-25,2015-02-28,,1,16001348MM10A,(M1),2016-02-10,Battery,Risk of Recidivism,10,High,2014-12-10,Risk of Violence,8,High,2014-12-10,2015-01-09,2015-01-10,11,0,30,0,1\r\n918,vernee mckenzie,vernee,mckenzie,2013-04-16,Female,1977-09-25,38,25 - 45,African-American,0,1,0,0,1,-1,2013-04-15 11:18:52,2013-04-16 09:12:28,13005448CF10A,2013-04-15,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-16,Risk of Violence,1,Low,2013-04-16,2013-04-15,2013-04-16,1,0,1081,0,0\r\n919,jeffrey malletgonzales,jeffrey,malletgonzales,2014-12-11,Male,1979-11-12,36,25 - 45,Hispanic,0,10,0,0,1,-8,2014-12-03 12:46:36,2015-01-12 09:14:40,14013084MM10A,2014-09-01,,101,M,Petit Theft $100- $300,1,15013906CF10A,(F3),0,2015-10-25,Grand Theft in the 3rd Degree,2015-10-25,2015-12-23,,0,,,,,Risk of Recidivism,10,High,2014-12-11,Risk of Violence,9,High,2014-12-11,2015-10-25,2015-12-23,1,32,318,1,1\r\n921,steve mitchell,steve,mitchell,2013-03-04,Male,1985-11-11,30,25 - 45,African-American,0,7,0,0,1,0,2013-03-04 03:53:19,2013-03-05 01:59:42,13004414MM10A,2013-03-04,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-04,Risk of Violence,4,Low,2013-03-04,2013-04-29,2013-05-09,1,1,56,0,0\r\n922,robert golden,robert,golden,2014-05-15,Male,1988-08-12,27,25 - 45,Caucasian,0,6,0,0,6,-1,2014-05-14 02:14:46,2014-06-17 10:56:58,14006740CF10A,,2014-05-14,1,F,arrest case no charge,1,16000579CF10A,(F2),,2016-01-10,Threaten Throw Destruct Device,,,,1,16000579CF10A,(F2),2016-01-10,Threaten Throw Destruct Device,Risk of Recidivism,6,Medium,2014-05-15,Risk of Violence,4,Low,2014-05-15,2015-07-13,2015-07-14,6,33,424,0,1\r\n923,edmond shield,edmond,shield,2013-11-06,Male,1972-09-04,43,25 - 45,African-American,0,1,0,0,1,,,,13020969MM10A,2013-11-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-06,Risk of Violence,1,Low,2013-11-06,,,1,0,877,0,0\r\n924,cindy lambke,cindy,lambke,2013-10-09,Female,1956-05-13,59,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-09 03:00:19,2013-10-09 08:12:28,13019210MM10A,2013-10-08,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-09,Risk of Violence,1,Low,2013-10-09,2013-10-09,2013-10-09,0,0,905,0,0\r\n925,kevin parker,kevin,parker,2013-04-18,Male,1979-01-24,37,25 - 45,Caucasian,0,1,0,0,2,-2,2013-04-16 05:14:39,2013-04-17 05:35:24,13007381MM10A,2013-04-16,,2,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2013-04-16,2013-04-17,2,0,1079,0,0\r\n926,antoine williams,antoine,williams,2014-08-25,Male,1988-04-13,28,25 - 45,African-American,0,7,0,0,5,0,2014-08-25 02:53:15,2014-08-26 05:00:56,14011579CF10A,2014-08-25,,0,M,Felony Battery (Dom Strang),1,14081815TC30A,(M2),,2014-09-27,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2014-08-25,Risk of Violence,7,Medium,2014-08-25,2014-08-25,2014-08-26,5,1,33,1,1\r\n927,remo bosi-godomar,remo,bosi-godomar,2013-09-06,Male,1977-11-06,38,25 - 45,Caucasian,0,1,0,0,0,0,2013-09-06 01:28:27,2013-09-06 10:50:40,13012553CF10A,2013-09-06,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-06,2013-09-06,0,0,938,0,0\r\n930,jeremiah durandisse,jeremiah,durandisse,2014-07-26,Male,1994-04-11,22,Less than 25,African-American,0,8,0,1,0,-1,2014-07-25 12:06:14,2014-07-26 08:38:15,14010162CF10A,2014-07-25,,1,F,Att Burgl Unoccupied Dwel,1,15001242MM40A,(M1),139,2015-03-05,Resist/Obstruct W/O Violence,2015-07-22,2015-07-29,,0,,,,,Risk of Recidivism,8,High,2014-07-26,Risk of Violence,6,Medium,2014-07-26,2016-01-27,2016-03-08,0,0,222,1,1\r\n932,trinidad ramirez-ramirez,trinidad,ramirez-ramirez,2013-09-16,Male,1972-11-06,43,25 - 45,Hispanic,0,1,0,0,1,-44,2013-08-03 01:01:38,2013-09-13 05:55:40,13014658MM10A,2013-08-03,,44,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2013-08-03,2013-09-13,1,0,928,0,0\r\n934,jerald peterson,jerald,peterson,2013-04-09,Male,1990-04-20,25,25 - 45,African-American,0,5,0,0,4,-1,2013-04-08 05:49:48,2013-05-10 05:42:55,13005037CF10A,2013-04-08,,1,F,Grand Theft Firearm,1,13008240CF10A,(M1),1,2013-06-11,Possess Cannabis/20 Grams Or Less,2013-06-12,2013-09-11,,1,13013057CF10A,(F1),2013-09-15,Attempt Murder in the First Degree,Risk of Recidivism,5,Medium,2013-04-09,Risk of Violence,4,Low,2013-04-09,2013-04-08,2013-05-10,4,31,63,1,1\r\n935,carmelo aquino,carmelo,aquino,2013-12-01,Male,1964-05-31,51,Greater than 45,Caucasian,0,1,0,0,0,0,2013-12-01 12:17:36,2013-12-01 12:33:39,13022352MM10A,2013-11-30,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-01,Risk of Violence,1,Low,2013-12-01,2013-12-01,2013-12-01,0,0,852,0,0\r\n937,johell ullda,johell,ullda,2013-12-25,Male,1986-02-28,30,25 - 45,Hispanic,0,5,0,0,6,,,,13017755CF10A,2013-12-24,,1,F,Possession of Cocaine,1,14009698CF10A,(F3),,2014-07-15,Fleeing Or Attmp Eluding A Leo,,,,1,14009698CF10A,(F2),2014-07-15,Agg Assault Law Enforc Officer,Risk of Recidivism,5,Medium,2013-12-25,Risk of Violence,3,Low,2013-12-25,2014-12-16,2020-01-01,6,0,202,1,1\r\n943,jarrod indik,jarrod,indik,2013-10-23,Male,1987-02-04,29,25 - 45,Caucasian,0,2,0,0,2,29,2013-11-21 04:46:06,2013-12-16 12:07:03,13012077CF10A,2013-08-27,,57,M,Felony Battery (Dom Strang),1,14013034MM10A,(M1),0,2014-08-31,Trespass/Property/Other Structure,2014-08-31,2014-09-16,,0,,,,,Risk of Recidivism,2,Low,2013-10-23,Risk of Violence,2,Low,2013-10-23,2013-11-21,2013-12-16,2,0,29,0,1\r\n944,zechariah faulk,zechariah,faulk,2014-01-03,Male,1987-10-11,28,25 - 45,African-American,0,3,0,0,10,0,2014-01-03 04:56:59,2014-01-03 08:00:20,14000141CF10A,2014-01-03,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-03,Risk of Violence,2,Low,2014-01-03,2014-03-13,2014-03-21,10,0,69,0,0\r\n945,laurence thomas,laurence,thomas,2013-10-18,Male,1990-03-31,26,25 - 45,African-American,0,8,0,0,6,,,,13011582MM10A,2013-05-07,,164,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-18,Risk of Violence,8,High,2013-10-18,,,6,0,896,0,0\r\n946,sylvester hicks,sylvester,hicks,2013-04-27,Male,1961-04-06,55,Greater than 45,African-American,0,3,0,0,9,0,2013-04-27 11:23:09,2013-05-01 06:19:51,12018015MO10A,,2013-04-27,0,M,arrest case no charge,1,14002424CF10A,(F2),0,2014-02-20,Deliver Cocaine,2014-02-20,2014-02-28,,0,,,,,Risk of Recidivism,3,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2014-02-20,2014-02-28,9,4,299,1,1\r\n947,lemore noah,lemore,noah,2013-02-24,Female,1992-11-02,23,Less than 25,Caucasian,0,10,0,0,3,-1,2013-02-23 12:49:04,2013-03-01 06:16:35,13002766CF10A,2013-02-23,,1,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-24,Risk of Violence,9,High,2013-02-24,2013-04-03,2013-05-26,3,5,38,0,0\r\n948,ashliegh batiste,ashliegh,batiste,2013-01-20,Female,1993-04-28,22,Less than 25,African-American,0,5,0,0,0,-1,2013-01-19 11:57:56,2013-01-27 05:20:46,13001334MO10A,2013-01-19,,1,M,Failure To Pay Taxi Cab Charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-20,Risk of Violence,6,Medium,2013-01-20,2013-01-19,2013-01-27,0,7,1167,0,0\r\n949,danielle malin,danielle,malin,2014-10-25,Female,1996-05-08,19,Less than 25,Caucasian,0,10,0,0,2,-2,2014-10-23 05:11:45,2014-11-14 11:47:41,14014288CF10A,2014-10-23,,2,F,Possession of Cocaine,1,14015607CF10A,(F3),0,2014-11-20,Possession of Cocaine,2014-11-20,2015-01-07,,0,,,,,Risk of Recidivism,10,High,2014-10-25,Risk of Violence,7,Medium,2014-10-25,2014-11-20,2015-01-07,2,20,26,1,1\r\n951,kelos francois,kelos,francois,2013-10-01,Male,1985-02-18,31,25 - 45,African-American,0,1,0,0,1,-27,2013-09-04 12:57:02,2013-09-04 08:28:00,13016878MM10A,2013-09-03,,28,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2013-09-04,2013-09-04,1,0,913,0,0\r\n953,curtis coombs,curtis,coombs,2014-03-10,Male,1986-06-11,29,25 - 45,African-American,0,1,0,0,0,0,2014-03-10 03:51:44,2014-03-11 03:42:19,14009450MU10A,2014-03-10,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-10,Risk of Violence,1,Low,2014-03-10,2014-03-10,2014-03-11,0,1,753,0,0\r\n955,anthony robinson,anthony,robinson,2013-04-08,Male,1954-07-13,61,Greater than 45,African-American,0,6,0,0,15,-1,2013-04-07 03:18:51,2013-04-08 07:34:33,13005014CF10A,2013-04-07,,1,F,Felony Petit Theft,1,13008244CF10A,(F3),0,2013-06-11,Possession of Cocaine,2013-06-11,2013-06-12,,0,,,,,Risk of Recidivism,6,Medium,2013-04-08,Risk of Violence,3,Low,2013-04-08,2013-06-11,2013-06-12,15,0,64,1,1\r\n956,jaron thomas,jaron,thomas,2013-10-09,Male,1991-07-23,24,Less than 25,African-American,0,10,0,0,4,-175,2013-04-17 11:36:33,2013-04-18 05:06:12,13005512CF10A,2013-04-17,,175,F,Possession of Cocaine,1,15000796MM10A,(M1),0,2015-01-21,Viol Injunct Domestic Violence,2015-01-21,2015-01-24,,1,15008227CF10A,(F1),2015-06-25,Robbery / Weapon,Risk of Recidivism,10,High,2013-10-09,Risk of Violence,9,High,2013-10-09,2014-10-14,2014-10-17,4,0,370,0,1\r\n958,wilfredo alejo-dominguez,wilfredo,alejo-dominguez,2013-02-08,Male,1984-05-18,31,25 - 45,Hispanic,0,2,0,0,0,0,2013-02-08 05:06:56,2013-02-08 08:10:52,13002891MM10A,2013-02-08,,0,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-08,Risk of Violence,2,Low,2013-02-08,2014-08-14,2014-08-19,0,0,552,0,0\r\n959,alex cadeau,alex,cadeau,2014-10-07,Male,1995-08-02,20,Less than 25,African-American,0,9,1,1,4,-1,2014-10-06 07:50:07,2014-10-08 10:47:24,14013484CF10A,,2014-10-06,1,F,arrest case no charge,1,14015555CF10A,(F3),0,2014-11-18,Grand Theft in the 3rd Degree,2014-11-18,2015-03-07,,0,,,,,Risk of Recidivism,9,High,2014-10-07,Risk of Violence,6,Medium,2014-10-07,2014-11-18,2015-03-07,4,1,42,1,1\r\n960,darren bartron,darren,bartron,2013-03-22,Male,1989-12-05,26,25 - 45,Caucasian,0,7,0,0,3,-1,2013-03-21 06:34:13,2013-03-22 08:27:54,13004119CF10A,2013-03-21,,1,F,Burglary Conveyance Occupied,1,13130692TC30A,(M2),,2013-12-19,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-22,Risk of Violence,4,Low,2013-03-22,2014-10-30,2014-10-30,3,0,272,1,1\r\n962,robert rose,robert,rose,2013-08-24,Male,1988-07-24,27,25 - 45,Caucasian,0,9,0,0,5,0,2013-08-24 03:53:34,2013-08-25 08:30:23,13016215MM10A,2013-08-24,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-24,Risk of Violence,7,Medium,2013-08-24,2013-08-24,2013-08-25,5,1,951,0,0\r\n963,stephanie coello,stephanie,coello,2013-12-25,Male,1990-10-28,25,25 - 45,Caucasian,0,5,0,0,1,-1,2013-12-24 08:20:02,2013-12-25 12:46:17,13017744CF10A,2013-12-24,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-25,Risk of Violence,3,Low,2013-12-25,2013-12-24,2013-12-25,1,0,828,0,0\r\n964,adiel jaramillo,adiel,jaramillo,2013-04-25,Male,1992-11-23,23,Less than 25,Caucasian,0,5,2,0,3,-1,2013-04-24 08:00:35,2013-05-03 09:45:57,13005980CF10A,2013-04-25,,0,F,Manslaughter W/Weapon/Firearm,1,13011613CF10A,(F3),1,2013-08-19,Possession of Cannabis,2013-08-20,2013-12-03,,0,,,,,Risk of Recidivism,5,Medium,2013-04-25,Risk of Violence,5,Medium,2013-04-25,2013-04-24,2013-05-03,3,8,116,1,1\r\n965,jackson clerisier,jackson,clerisier,2014-02-06,Male,1977-09-13,38,25 - 45,African-American,0,1,0,0,0,-1,2014-02-05 09:19:16,2014-02-07 09:14:53,14001640CF10A,2014-02-05,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-06,Risk of Violence,1,Low,2014-02-06,2014-02-05,2014-02-07,0,1,785,0,0\r\n967,jarvis jones,jarvis,jones,2013-04-09,Male,1989-03-07,27,25 - 45,African-American,0,9,2,1,18,0,2013-04-09 01:28:20,2013-04-09 07:13:00,13005057CF10A,2013-04-08,,1,F,Felony Petit Theft,1,14007283TC20A,(M2),,2014-01-23,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,9,High,2013-04-09,Risk of Violence,6,Medium,2013-04-09,2013-08-01,2014-01-01,18,0,114,0,1\r\n968,jessica baron,jessica,baron,2014-09-14,Female,1980-07-15,35,25 - 45,Caucasian,0,3,0,0,0,0,2014-09-14 04:21:37,2014-09-14 01:19:27,14012489CF10A,2014-09-14,,0,F,Resist Officer w/Violence,1,15004121MU10A,(M1),0,2015-02-09,Driving Under The Influence,2015-02-09,2015-02-09,,0,,,,,Risk of Recidivism,3,Low,2014-09-14,Risk of Violence,2,Low,2014-09-14,2015-02-09,2015-02-09,0,0,148,0,1\r\n969,luc tismeus,luc,tismeus,2013-02-06,Male,1993-09-23,22,Less than 25,Other,0,9,0,0,0,-1,2013-02-05 04:14:37,2013-02-21 05:24:06,13001811CF10A,2013-02-05,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-06,Risk of Violence,7,Medium,2013-02-06,2013-02-05,2013-02-21,0,15,1150,0,0\r\n971,crystal shellman,crystal,shellman,2014-09-10,Female,1957-06-25,58,Greater than 45,African-American,0,2,0,0,4,-14,2014-08-27 09:14:45,2014-08-28 09:22:51,14011695CF10A,2014-08-27,,14,F,\"Poss 3,4 MDMA (Ecstasy)\",1,15000238MM30A,(M2),,2015-01-18,Petit Theft,,,,1,15012748CF10A,(M1),2015-10-02,Battery,Risk of Recidivism,2,Low,2014-09-10,Risk of Violence,1,Low,2014-09-10,2016-02-19,2016-02-21,4,0,130,1,1\r\n973,shelley bauman,shelley,bauman,2014-05-22,Female,1959-03-20,57,Greater than 45,Caucasian,0,4,0,0,0,-1,2014-05-21 11:16:40,2014-05-23 08:33:33,14008221MM10A,2014-05-20,,2,M,Disorderly Conduct,1,15000280MM20A,(M1),,2015-01-11,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2014-05-22,Risk of Violence,1,Low,2014-05-22,2014-05-21,2014-05-23,0,1,234,1,1\r\n975,jonathan saintil,jonathan,saintil,2014-02-27,Male,1995-02-05,21,Less than 25,African-American,0,3,0,1,0,-1,2014-02-26 09:16:23,2014-02-27 02:05:20,14002730CF10A,2014-02-26,,1,F,Use Scanning Device to Defraud,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-27,Risk of Violence,5,Medium,2014-02-27,2014-02-26,2014-02-27,0,0,764,0,0\r\n977,katavia latson,katavia,latson,2013-12-05,Female,1994-03-03,22,Less than 25,African-American,0,8,0,0,0,-1,2013-12-04 07:09:34,2013-12-05 09:19:46,13016777CF10A,2013-12-04,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-05,Risk of Violence,6,Medium,2013-12-05,2013-12-04,2013-12-05,0,0,848,0,0\r\n978,christopher haye,christopher,haye,2013-01-15,Male,1986-02-16,30,25 - 45,African-American,0,2,0,0,0,-1,2013-01-14 07:16:50,2013-01-17 03:17:43,13000619CF10A,2013-01-14,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-15,Risk of Violence,2,Low,2013-01-15,2013-01-14,2013-01-17,0,2,1172,0,0\r\n979,mcdowell sherwood,mcdowell,sherwood,2014-07-08,Male,1991-06-05,24,Less than 25,Caucasian,0,10,0,0,1,-38,2014-05-31 02:17:45,2014-07-07 10:38:33,14007557CF10A,,2014-07-02,6,F,arrest case no charge,1,16002744MO10A,(M1),0,2016-03-23,,2016-03-23,2016-03-25,,0,,,,,Risk of Recidivism,10,High,2014-07-08,Risk of Violence,9,High,2014-07-08,2014-11-13,2014-12-17,1,0,128,0,1\r\n983,glenn rowe,glenn,rowe,2013-12-10,Male,1993-10-19,22,Less than 25,Caucasian,0,4,0,0,2,-40,2013-10-31 02:13:50,2013-11-27 08:48:45,13015187CF10A,2013-10-30,,41,F,Battery on Law Enforc Officer,1,14002283CF10A,(M1),0,2014-02-18,Battery,2014-02-18,2014-05-09,,1,14002283CF10A,(M1),2014-02-18,Battery,Risk of Recidivism,4,Low,2013-12-10,Risk of Violence,6,Medium,2013-12-10,2014-02-18,2014-05-09,2,0,70,1,1\r\n986,joe mori,joe,mori,2014-08-05,Male,1986-12-11,29,25 - 45,Caucasian,0,4,0,0,3,-61,2014-06-05 10:48:36,2014-07-14 09:25:13,14007805CF10A,2014-06-05,,61,F,Aggrav Stalking After Injunctn,1,15064282TC40A,(M2),,2015-11-06,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,4,Low,2014-08-05,Risk of Violence,2,Low,2014-08-05,2015-07-04,2015-07-15,3,0,333,0,1\r\n987,christopher mack,christopher,mack,2014-02-22,Male,1986-01-09,30,25 - 45,African-American,0,8,0,0,8,-1,2014-02-21 04:43:09,2014-02-23 02:56:07,14002495CF10A,2014-02-21,,1,F,Possession of Cocaine,1,15003293CF10A,(F3),0,2015-03-11,Poss Pyrrolidinovalerophenone,2015-03-11,2015-07-14,,0,,,,,Risk of Recidivism,8,High,2014-02-22,Risk of Violence,3,Low,2014-02-22,2015-03-11,2015-07-14,8,1,382,1,1\r\n988,sondra murrell,sondra,murrell,2013-04-14,Female,1984-09-01,31,25 - 45,African-American,0,6,0,0,10,-1,2013-04-13 09:58:44,2013-04-14 07:39:41,13005347CF10A,2013-04-13,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-14,Risk of Violence,2,Low,2013-04-14,2013-04-13,2013-04-14,10,0,1083,0,0\r\n990,brad griffith,brad,griffith,2014-01-09,Female,1970-05-11,45,Greater than 45,Caucasian,0,6,0,0,1,0,2014-01-09 02:26:24,2014-01-10 09:06:22,14000374CF10A,2014-01-09,,0,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-09,Risk of Violence,4,Low,2014-01-09,2014-01-09,2014-01-10,1,1,813,0,0\r\n991,joseph belgrave,joseph,belgrave,2013-03-07,Male,1992-08-07,23,Less than 25,African-American,0,7,0,0,4,320,2014-01-21 12:54:18,2014-04-21 09:05:53,12005378CF10A,,2012-04-11,330,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-07,Risk of Violence,9,High,2013-03-07,2014-01-21,2014-04-21,4,0,320,0,0\r\n993,michael probber,michael,probber,2013-07-19,Male,1976-10-31,39,25 - 45,Caucasian,0,2,0,0,2,-13,2013-07-06 08:19:30,2013-07-11 07:30:56,13009469CF10A,2013-07-06,,13,F,False Ownership Info/Pawn Item,1,14003593CF10A,(M2),0,2014-03-13,Susp Drivers Lic 1st Offense,2014-03-13,2014-04-14,,0,,,,,Risk of Recidivism,2,Low,2013-07-19,Risk of Violence,1,Low,2013-07-19,2014-03-13,2014-04-14,2,0,237,1,1\r\n995,kevis woodard,kevis,woodard,2013-11-23,Male,1984-09-04,31,25 - 45,African-American,0,8,0,0,0,-1,2013-11-22 10:24:27,2013-11-24 01:36:44,13016277CF10A,2013-11-22,,1,F,Possession of Cocaine,1,14008717CF10A,(F3),0,2014-02-19,Deliver Cannabis,2014-02-19,2014-02-22,,0,,,,,Risk of Recidivism,8,High,2013-11-23,Risk of Violence,8,High,2013-11-23,2014-02-19,2014-02-22,0,1,88,1,1\r\n996,marcel noel,marcel,noel,2014-02-03,Male,1994-01-23,22,Less than 25,African-American,0,4,0,0,1,-1,2014-02-02 05:02:29,2014-02-03 10:30:56,14001472CF10A,2014-02-02,,1,F,Burglary Structure Unoccup,1,15004096CF10A,(F3),0,2015-03-28,Tampering With Physical Evidence,2015-03-28,2015-04-07,,0,,,,,Risk of Recidivism,4,Low,2014-02-03,Risk of Violence,6,Medium,2014-02-03,2015-03-28,2015-04-07,1,0,418,1,1\r\n997,patrice ward,patrice,ward,2014-05-13,Female,1988-08-31,27,25 - 45,African-American,0,2,0,0,9,-68,2014-03-06 05:04:24,2014-05-10 06:12:24,14003217CF10A,2014-03-06,,68,F,Arson II (Vehicle),1,15000322MM30A,(M2),83,2015-01-23,Reckless Driving,2015-04-16,2015-06-03,,0,,,,,Risk of Recidivism,2,Low,2014-05-13,Risk of Violence,2,Low,2014-05-13,2015-04-16,2015-06-03,9,0,255,1,1\r\n998,steve louiseron,steve,louiseron,2013-09-05,Male,1988-07-19,27,25 - 45,African-American,0,7,0,0,13,-1,2013-09-04 07:58:16,2013-09-06 09:43:19,13012126CF10A,,2013-09-04,1,F,arrest case no charge,1,13014078CF10A,(F3),0,2013-10-07,Tamper With Victim,2013-10-07,2014-03-29,,1,13014078CF10A,(M1),2013-10-07,Battery,Risk of Recidivism,7,Medium,2013-09-05,Risk of Violence,3,Low,2013-09-05,2013-10-07,2014-03-29,13,1,32,1,1\r\n999,jonathan nevarez,jonathan,nevarez,2014-07-10,Male,1977-07-26,38,25 - 45,Caucasian,0,1,0,0,1,-1,2014-07-09 06:45:49,2014-07-10 01:39:26,14009397CF10A,2014-07-09,,1,F,Crimin Mischief Damage $1000+,1,15004068MM10A,(M1),0,2015-04-08,Battery,2015-04-08,2015-04-10,,1,15004068MM10A,(M1),2015-04-08,Battery,Risk of Recidivism,1,Low,2014-07-10,Risk of Violence,1,Low,2014-07-10,2015-04-08,2015-04-10,1,0,272,1,1\r\n1000,jeffrey forrest,jeffrey,forrest,2014-11-05,Male,1984-10-05,31,25 - 45,African-American,0,10,0,0,23,0,2014-11-05 04:29:12,2014-12-30 07:51:11,14014858CF10A,2014-11-05,,0,F,Poss Pyrrolidinovalerophenone,1,15000722CF10A,(F3),0,2015-01-16,Poss Pyrrolidinovalerophenone,2015-01-16,2015-02-19,,0,,,,,Risk of Recidivism,10,High,2014-11-05,Risk of Violence,10,High,2014-11-05,2015-01-16,2015-02-19,23,55,72,1,1\r\n1001,walter samuels,walter,samuels,2014-02-03,Male,1968-09-29,47,Greater than 45,African-American,0,9,0,0,20,-1,2014-02-02 11:48:26,2014-02-04 03:57:20,14001468CF10A,2014-02-02,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-03,Risk of Violence,5,Medium,2014-02-03,2014-02-02,2014-02-04,20,1,788,0,0\r\n1002,latif blagman,latif,blagman,2013-10-01,Male,1994-04-06,22,Less than 25,African-American,0,7,1,0,3,-1,2013-09-30 09:47:34,2013-10-01 02:07:40,13013094CF10A,,2013-09-30,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-01,Risk of Violence,7,Medium,2013-10-01,2013-09-30,2013-10-01,3,0,913,0,0\r\n1003,kendrick raymond,kendrick,raymond,2014-09-04,Male,1980-09-03,35,25 - 45,African-American,0,9,0,1,1,-1,2014-09-03 11:08:09,2014-11-22 04:31:47,11015078MM10A,2011-07-03,,1159,M,Battery,1,15011271CF10A,(F3),,2015-08-27,Felony Battery (Dom Strang),,,,1,15011271CF10A,(F3),2015-08-27,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2014-09-04,Risk of Violence,3,Low,2014-09-04,2015-08-13,2015-10-27,1,79,357,1,1\r\n1004,elvis tavarez,elvis,tavarez,2013-10-29,Male,1992-10-09,23,Less than 25,Hispanic,0,6,0,0,2,-19,2013-10-10 03:30:06,2013-10-29 10:16:46,13019255MM10A,2013-10-10,,19,M,Possess Cannabis/20 Grams Or Less,1,14011964MM10A,(M1),0,2014-08-07,Possess Cannabis/20 Grams Or Less,2014-08-07,2014-09-18,,0,,,,,Risk of Recidivism,6,Medium,2013-10-29,Risk of Violence,4,Low,2013-10-29,2014-08-07,2014-09-18,2,0,282,1,1\r\n1005,john brown,john,brown,2014-04-11,Male,1950-09-02,65,Greater than 45,African-American,0,2,0,0,2,-18,2014-03-24 02:29:51,2014-03-29 06:17:09,14016429MM10A,2014-03-24,,18,M,Violation of Injunction Order/Stalking/Cyberstalking,1,15011493CF10A,(F2),1,2015-09-04,Aggrav Battery w/Deadly Weapon,2015-09-05,2015-09-06,,1,15011493CF10A,(F2),2015-09-04,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,2,Low,2014-04-11,Risk of Violence,1,Low,2014-04-11,2015-09-16,2015-10-26,2,0,511,1,1\r\n1006,jarrett hankerson,jarrett,hankerson,2014-01-19,Male,1980-08-24,35,25 - 45,African-American,0,4,0,0,0,-1,2014-01-18 05:06:51,2014-01-19 09:04:34,14002370MU10A,2014-01-18,,1,M,Fail To Obey Police Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-19,Risk of Violence,3,Low,2014-01-19,2014-01-18,2014-01-19,0,0,803,0,0\r\n1007,jeniqua johnson,jeniqua,johnson,2013-08-05,Female,1982-10-13,33,25 - 45,African-American,0,3,0,0,0,-1,2013-08-04 07:19:39,2013-08-05 09:38:46,13010833CF10A,2013-08-04,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-05,Risk of Violence,2,Low,2013-08-05,2015-02-07,2015-07-17,0,0,551,0,0\r\n1008,gregory thornton,gregory,thornton,2013-06-17,Male,1962-12-16,53,Greater than 45,Caucasian,0,1,0,0,1,-10,2013-06-07 03:20:17,2013-06-08 05:43:33,13010982MM10A,2013-06-07,,10,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-17,Risk of Violence,1,Low,2013-06-17,2013-06-07,2013-06-08,1,0,1019,0,0\r\n1009,rigoberto vasquezlimas,rigoberto,vasquezlimas,2013-11-05,Male,1964-01-19,52,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-11-04 11:09:47,2013-11-06 01:57:40,13015376CF10A,2013-11-04,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-05,Risk of Violence,1,Low,2013-11-05,2013-11-04,2013-11-06,0,1,878,0,0\r\n1014,nijah mcduffie,nijah,mcduffie,2013-12-12,Male,1995-03-26,21,Less than 25,African-American,0,5,0,0,0,-1,2013-12-11 11:08:04,2013-12-12 08:41:41,13017208CF10A,2013-12-11,,1,F,Obstruct Fire Equipment,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-12,Risk of Violence,7,Medium,2013-12-12,2014-09-10,2014-09-24,0,0,272,0,0\r\n1015,david washington,david,washington,2014-01-22,Male,1978-10-12,37,25 - 45,African-American,0,4,0,0,11,-1,2014-01-21 07:19:02,2014-01-23 04:03:56,14000875CF10A,2014-01-21,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-22,Risk of Violence,2,Low,2014-01-22,2016-03-02,2016-03-14,11,1,770,0,0\r\n1016,ryan chambers,ryan,chambers,2013-04-15,Male,1985-08-01,30,25 - 45,Other,0,9,0,0,4,-1,2013-04-14 09:47:43,2013-04-15 07:07:32,13015943TC10A,2013-04-14,,1,M,Reckless Driving,1,13006811CF10A,(F1),0,2013-05-10,Attempt Murder in the First Degree,2013-05-10,2013-05-17,,1,13006811CF10A,(F1),2013-05-10,Attempt Murder in the First Degree,Risk of Recidivism,9,High,2013-04-15,Risk of Violence,8,High,2013-04-15,2013-05-10,2013-05-17,4,0,25,1,1\r\n1017,rickie miranda,rickie,miranda,2014-01-21,Male,1982-11-06,33,25 - 45,Caucasian,0,5,0,0,5,-32,2013-12-20 04:48:41,2014-01-11 03:03:23,13015561CF10A,,2013-12-20,32,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-21,Risk of Violence,2,Low,2014-01-21,2013-12-20,2014-01-11,5,0,801,0,0\r\n1018,anthony hansberry,anthony,hansberry,2013-04-10,Male,1984-09-19,31,25 - 45,African-American,0,7,0,0,2,,,,11021360MM10A,2011-09-23,,565,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-10,Risk of Violence,6,Medium,2013-04-10,,,2,0,1087,0,0\r\n1020,ivor singh,ivor,singh,2014-02-02,Male,1961-07-08,54,Greater than 45,Other,0,1,0,0,0,0,2014-02-02 12:09:29,2014-02-02 07:50:16,14001441CF10A,2014-02-01,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-02,Risk of Violence,1,Low,2014-02-02,2014-02-02,2014-02-02,0,0,789,0,0\r\n1022,albalidia torres,albalidia,torres,2014-01-31,Female,1984-04-23,31,25 - 45,African-American,0,1,0,0,0,0,2014-01-31 01:35:12,2014-01-31 01:27:09,14001682MM10A,2014-01-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-31,Risk of Violence,1,Low,2014-01-31,2014-01-31,2014-01-31,0,0,791,0,0\r\n1023,esther catala,esther,catala,2014-02-28,Female,1956-11-30,59,Greater than 45,Caucasian,0,3,0,0,2,26,2014-03-26 09:34:52,2014-04-24 10:32:10,13001158CF10A,2013-01-24,,400,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-28,Risk of Violence,1,Low,2014-02-28,2014-03-26,2014-04-24,2,0,26,0,0\r\n1024,jamil robinson,jamil,robinson,2013-09-27,Male,1989-01-15,27,25 - 45,African-American,0,2,0,0,0,-1,2013-09-26 05:55:20,2013-09-27 08:21:29,13013539CF10A,2013-09-26,,1,M,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-27,Risk of Violence,2,Low,2013-09-27,2013-09-26,2013-09-27,0,0,917,0,0\r\n1025,jarvarris brown,jarvarris,brown,2013-10-14,Male,1979-09-11,36,25 - 45,African-American,0,7,0,0,0,-1,2013-10-13 05:56:25,2013-10-14 02:07:16,13019418MM10A,2013-10-13,,1,M,Battery,1,14010849MM10A,(M1),,2014-06-03,Battery,,,,1,14010849MM10A,(M1),2014-06-03,Battery,Risk of Recidivism,7,Medium,2013-10-14,Risk of Violence,2,Low,2013-10-14,2013-10-13,2013-10-14,0,0,232,1,1\r\n1026,tina brayboy,tina,brayboy,2014-10-02,Male,1969-05-31,46,Greater than 45,African-American,0,9,0,0,17,-1,2014-10-01 04:44:53,2014-10-07 09:01:54,14003461CF10A,,2014-10-01,1,F,arrest case no charge,1,15015545CF10A,(F3),0,2015-12-03,,2015-12-03,2015-12-09,,0,,,,,Risk of Recidivism,9,High,2014-10-02,Risk of Violence,6,Medium,2014-10-02,2015-12-03,2015-12-09,17,5,427,1,1\r\n1027,walter hart,walter,hart,2013-04-04,Male,1994-01-08,22,Less than 25,African-American,0,9,0,1,3,0,2013-04-04 07:34:43,2014-02-21 10:11:50,13004835CF10A,,2013-04-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-04,Risk of Violence,8,High,2013-04-04,2013-04-04,2014-02-21,3,323,1093,0,0\r\n1030,melissa harris,melissa,harris,2013-04-26,Female,1987-08-20,28,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-25 09:33:39,2013-04-26 08:16:52,13008008MM10A,2013-04-25,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-26,Risk of Violence,2,Low,2013-04-26,2014-04-25,2014-04-26,0,0,364,0,0\r\n1031,elizabeth caine,elizabeth,caine,2014-08-14,Female,1981-07-18,34,25 - 45,Caucasian,0,9,0,1,15,-4,2014-08-10 02:26:37,2014-08-13 09:25:56,14010906CF10A,2014-08-09,,5,F,Grand Theft in the 3rd Degree,1,15006136CF10A,(F3),0,2015-05-11,Grand Theft in the 3rd Degree,2015-05-11,2015-08-20,,0,,,,,Risk of Recidivism,9,High,2014-08-14,Risk of Violence,3,Low,2014-08-14,2015-05-11,2015-08-20,15,0,270,1,1\r\n1032,elvin soto,elvin,soto,2013-09-23,Male,1987-03-29,29,25 - 45,Hispanic,0,9,0,0,7,-2,2013-09-21 10:15:56,2013-09-22 02:13:54,13013318CF10A,2013-09-21,,2,F,Driving While License Revoked,1,14003524CF10A,(F3),1,2014-03-11,Drivg While Lic Suspd/Revk/Can,2014-03-12,2014-03-12,,0,,,,,Risk of Recidivism,9,High,2013-09-23,Risk of Violence,4,Low,2013-09-23,2014-05-05,2014-05-19,7,0,169,1,1\r\n1034,jameel brinson,jameel,brinson,2013-01-14,Male,1993-02-18,23,Less than 25,African-American,0,10,0,1,2,0,2013-01-14 04:13:05,2013-04-04 07:46:57,13000874MM10A,2013-01-14,,0,M,Battery,1,13010127MM10A,(M2),0,2013-05-27,Petit Theft,2013-05-27,2013-06-18,,1,14005510CF10A,(F1),2014-04-20,Carjacking,Risk of Recidivism,10,High,2013-01-14,Risk of Violence,9,High,2013-01-14,2013-05-27,2013-06-18,2,80,133,1,1\r\n1036,vanessa vedrine,vanessa,vedrine,2013-04-27,Male,1988-10-08,27,25 - 45,African-American,0,4,0,0,3,-1,2013-04-26 04:48:56,2013-04-27 01:30:22,13006045CF10A,2013-04-26,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-27,Risk of Violence,3,Low,2013-04-27,2014-08-12,2014-08-13,3,0,472,0,0\r\n1037,eihab farraj,eihab,farraj,2013-05-24,Male,1994-08-20,21,Less than 25,Asian,0,6,0,1,0,-1,2013-05-23 04:42:45,2013-05-24 01:33:21,13007387CF10A,2013-05-23,,1,F,Att Tamper w/Physical Evidence,1,14015415CF10A,(F1),0,2014-11-15,Burgl Dwel/Struct/Convey Armed,2014-11-15,2014-12-24,,1,14015415CF10A,(F3),2014-11-15,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-05-24,Risk of Violence,6,Medium,2013-05-24,2014-11-15,2014-12-24,0,0,540,1,1\r\n1038,anthony smith,anthony,smith,2014-07-28,Male,1968-02-08,48,Greater than 45,Caucasian,0,1,0,0,3,-3,2014-07-25 04:43:26,2014-07-26 01:00:29,14010172CF10A,2014-07-24,,4,F,Grand Theft in the 3rd Degree,1,14016297CF10A,(M1),0,2014-12-08,Unlaw Use False Name/Identity,2014-12-08,2015-01-16,,0,,,,,Risk of Recidivism,1,Low,2014-07-28,Risk of Violence,1,Low,2014-07-28,2014-12-08,2015-01-16,3,0,133,1,1\r\n1039,wiky jean,wiky,jean,2013-12-06,Male,1985-06-21,30,25 - 45,African-American,0,9,0,0,15,210,2014-07-04 07:40:38,2014-07-24 10:35:14,13004706CF10A,2013-04-02,,248,F,Poss Cocaine/Intent To Del/Sel,1,14009182CF10A,(F2),0,2014-07-04,Poss Cocaine/Intent To Del/Sel,2014-07-04,2014-07-24,,0,,,,,Risk of Recidivism,9,High,2013-12-06,Risk of Violence,4,Low,2013-12-06,2014-07-04,2014-07-24,15,0,210,1,1\r\n1041,shawnita obasogie,shawnita,obasogie,2013-11-15,Female,1984-02-27,32,25 - 45,African-American,0,2,0,0,2,-43,2013-10-03 12:00:11,2013-10-03 06:36:07,13013850CF10A,2013-10-02,,44,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-15,Risk of Violence,1,Low,2013-11-15,2013-10-03,2013-10-03,2,0,868,0,0\r\n1043,timothy gordon,timothy,gordon,2013-08-22,Male,1984-07-22,31,25 - 45,African-American,0,7,0,0,5,-1,2013-08-21 10:33:41,2013-08-28 08:10:48,13008506CF10A,,2013-08-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-22,Risk of Violence,4,Low,2013-08-22,2013-12-11,2013-12-17,5,6,111,0,0\r\n1044,andrew ellis,andrew,ellis,2013-09-25,Male,1979-06-04,36,25 - 45,African-American,0,5,1,0,4,-1,2013-09-24 01:15:18,2013-09-26 04:16:06,13018225MM10A,2013-09-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-25,Risk of Violence,2,Low,2013-09-25,2013-09-24,2013-09-26,4,1,919,0,0\r\n1046,johnie wilson,johnie,wilson,2013-09-04,Male,1979-07-09,36,25 - 45,African-American,0,5,0,0,1,,,,12003953MM10A,2012-02-26,,556,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-04,Risk of Violence,5,Medium,2013-09-04,,,1,0,940,0,0\r\n1048,shawn glasgow,shawn,glasgow,2013-10-09,Male,1971-08-22,44,25 - 45,African-American,0,8,0,0,14,-1,2013-10-08 04:49:38,2013-10-10 04:31:37,13014102CF10A,2013-10-08,,1,F,Felony Driving While Lic Suspd,1,14071057TC20A,(M2),,2014-10-10,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2013-10-09,Risk of Violence,5,Medium,2013-10-09,2013-10-08,2013-10-10,14,1,366,1,1\r\n1049,lonnie paccione,lonnie,paccione,2013-05-03,Male,1963-04-17,53,Greater than 45,Caucasian,0,1,0,0,2,-2,2013-05-01 05:14:23,2013-05-02 05:04:15,13006254CF10A,2013-05-01,,2,F,Deliver Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-03,Risk of Violence,1,Low,2013-05-03,2013-05-01,2013-05-02,2,0,1064,0,0\r\n1051,roscoe singletary,roscoe,singletary,2013-03-18,Male,1982-07-16,33,25 - 45,African-American,0,2,0,0,3,-1,2013-03-17 04:30:13,2013-03-19 03:29:45,13011446TC10A,2013-03-17,,1,M,Driving License Suspended,1,13021582TC10A,(M1),0,2013-05-24,Opert With Susp DL 2nd Offens,2013-05-24,2013-05-25,,0,,,,,Risk of Recidivism,2,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-05-24,2013-05-25,3,1,67,1,1\r\n1054,kendrick joseph,kendrick,joseph,2014-01-14,Male,1995-01-16,21,Less than 25,African-American,1,10,0,0,2,-306,2013-03-14 12:55:28,2014-01-02 10:38:00,13005142CF10A,,2013-04-16,273,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-14,Risk of Violence,9,High,2014-01-14,2013-03-14,2014-01-02,2,0,808,0,0\r\n1055,john sherbondy,john,sherbondy,2013-08-19,Male,1982-12-17,33,25 - 45,African-American,0,8,0,0,4,236,2014-04-12 02:28:50,2015-03-17 06:32:57,11017912CF10A,,2012-02-09,557,F,arrest case no charge,1,14005295CF10A,(F3),,2014-04-02,Grand Theft in the 3rd Degree,,,,1,14005098CF10A,(F3),2014-04-11,Aggravated Assault w/Firearm,Risk of Recidivism,8,High,2013-08-19,Risk of Violence,6,Medium,2013-08-19,2015-06-23,2020-01-01,4,0,226,1,1\r\n1056,lester littman,lester,littman,2014-12-16,Male,1968-08-29,47,Greater than 45,Caucasian,0,5,0,0,2,0,2014-12-16 02:43:12,2014-12-18 03:36:25,14016675CF10A,2014-12-16,,0,F,Possession of Cocaine,1,15005368MM10A,(M1),0,2015-05-14,Petit Theft $100- $300,2015-05-14,2015-05-15,,0,,,,,Risk of Recidivism,5,Medium,2014-12-16,Risk of Violence,1,Low,2014-12-16,2015-05-14,2015-05-15,2,2,149,1,1\r\n1057,lindell mcfadden,lindell,mcfadden,2014-04-30,Male,1958-05-15,57,Greater than 45,African-American,0,7,0,0,20,0,2014-04-30 04:04:20,2014-06-02 09:25:23,14005985CF10A,2014-04-30,,0,F,Possession of Cocaine,1,14013861CF10A,(M2),0,2014-10-14,Trespass Struct/Conveyance,2014-10-14,2014-11-04,,0,,,,,Risk of Recidivism,7,Medium,2014-04-30,Risk of Violence,2,Low,2014-04-30,2014-10-14,2014-11-04,20,33,167,1,1\r\n1058,donald constant,donald,constant,2013-05-05,Male,1987-12-15,28,25 - 45,African-American,0,4,0,0,2,-1,2013-05-04 08:17:34,2013-05-10 09:32:52,12011021MM10A,,2013-05-04,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-05,Risk of Violence,2,Low,2013-05-05,2013-05-04,2013-05-10,2,5,1062,0,0\r\n1059,maceo wright,maceo,wright,2013-09-21,Male,1991-11-26,24,Less than 25,African-American,0,6,0,0,1,-1,2013-09-20 03:56:36,2013-09-21 08:41:09,13017988MM10A,2013-09-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-21,Risk of Violence,4,Low,2013-09-21,2013-09-20,2013-09-21,1,0,923,0,0\r\n1060,william karlson,william,karlson,2013-12-19,Male,1971-09-04,44,25 - 45,African-American,0,1,0,0,1,-1,2013-12-18 07:50:18,2013-12-19 08:37:29,13017492CF10A,2013-12-18,,1,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-19,Risk of Violence,1,Low,2013-12-19,2015-03-06,2015-03-07,1,0,442,0,0\r\n1061,zacchius boyce,zacchius,boyce,2013-02-27,Male,1969-09-17,46,Greater than 45,African-American,0,1,0,0,0,-1,2013-02-26 07:01:42,2013-02-27 07:50:29,13003011CF10A,2013-02-26,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-27,Risk of Violence,1,Low,2013-02-27,2013-02-26,2013-02-27,0,0,1129,0,0\r\n1062,duval dixon,duval,dixon,2013-03-24,Male,1979-01-07,37,25 - 45,African-American,0,3,0,0,6,0,2013-03-24 03:36:52,2013-03-25 07:15:05,13004342CF10A,2013-03-24,,0,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-24,Risk of Violence,5,Medium,2013-03-24,2013-03-24,2013-03-25,6,1,1104,0,0\r\n1063,andy plancher,andy,plancher,2014-02-25,Male,1990-04-18,26,25 - 45,African-American,0,6,0,0,10,-6,2014-02-19 06:01:27,2014-02-25 05:49:46,13003002TC10A,,2014-02-19,6,M,arrest case no charge,1,15002907CF10A,(F3),0,2015-03-03,Neglect Child / No Bodily Harm,2015-03-03,2015-03-04,,0,,,,,Risk of Recidivism,6,Medium,2014-02-25,Risk of Violence,4,Low,2014-02-25,2015-03-03,2015-03-04,10,0,371,1,1\r\n1065,geovani johnson,geovani,johnson,2013-08-22,Male,1988-05-18,27,25 - 45,African-American,0,8,1,0,10,0,2013-08-22 03:03:57,2013-08-22 08:25:10,13011816CF10A,2013-08-22,,0,F,Driving While License Revoked,1,13012248CF10A,(F3),0,2013-08-29,Possession of Cocaine,2013-08-29,2013-08-31,,1,14013212CF10A,(F1),2014-09-29,Robbery W/Firearm,Risk of Recidivism,8,High,2013-08-22,Risk of Violence,7,Medium,2013-08-22,2013-08-29,2013-08-31,10,0,7,1,1\r\n1066,lazaro vergara,lazaro,vergara,2013-02-12,Male,1975-05-16,40,25 - 45,Caucasian,0,2,0,0,1,-1,2013-02-11 10:39:48,2013-02-13 10:03:55,13002109CF10A,2013-02-11,,1,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-12,Risk of Violence,1,Low,2013-02-12,2013-02-11,2013-02-13,1,1,1144,0,0\r\n1068,wendy richland,wendy,richland,2013-01-03,Female,1955-12-28,60,Greater than 45,Caucasian,0,3,0,0,9,0,2013-01-03 12:01:40,2014-01-23 05:25:00,09006566CF10A,,2013-01-03,0,F,arrest case no charge,1,13001881CF10A,(F3),,2013-02-05,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2013-01-03,2014-01-23,9,0,33,1,1\r\n1069,bart storm,bart,storm,2014-03-21,Male,1962-07-10,53,Greater than 45,Caucasian,0,1,0,0,1,-6,2014-03-15 04:06:38,2014-03-21 11:05:39,14003705CF10A,,2014-03-14,7,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-21,Risk of Violence,1,Low,2014-03-21,2014-03-15,2014-03-21,1,0,742,0,0\r\n1070,anthony newson,anthony,newson,2013-05-23,Male,1989-04-27,26,25 - 45,African-American,0,6,1,0,8,-52,2013-04-01 12:44:34,2013-05-12 02:18:45,13004699CF10A,2013-04-01,,52,F,Attempted Robbery Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-23,Risk of Violence,6,Medium,2013-05-23,2015-09-10,2015-09-15,8,0,840,0,0\r\n1072,andre levy,andre,levy,2014-02-02,Male,1987-06-14,28,25 - 45,African-American,0,1,0,0,0,-1,2014-02-01 07:34:55,2014-02-02 07:48:16,14001432CF10A,2014-02-01,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-02,Risk of Violence,3,Low,2014-02-02,2014-02-01,2014-02-02,0,0,789,0,0\r\n1073,jonathan vanegas,jonathan,vanegas,2014-02-10,Male,1993-03-01,23,Less than 25,Hispanic,0,4,0,0,0,0,2014-02-10 04:37:45,2014-02-10 08:40:32,14005313MU10A,2014-02-10,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-10,Risk of Violence,5,Medium,2014-02-10,2014-02-10,2014-02-10,0,0,781,0,0\r\n1076,victoria hay,victoria,hay,2013-02-12,Female,1969-05-07,46,Greater than 45,Caucasian,0,8,0,0,2,-1,2013-02-11 07:18:03,2013-03-03 05:03:27,13002106CF10A,2013-02-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-12,Risk of Violence,1,Low,2013-02-12,2013-07-10,2013-10-17,2,19,148,0,0\r\n1077,reginald butler,reginald,butler,2013-02-05,Male,1992-04-28,23,Less than 25,African-American,0,5,0,0,0,-1,2013-02-04 06:34:00,2013-02-05 08:19:14,13001747CF10A,2013-02-04,,1,F,False Ownership Info/Pawn Item,1,14005828MM10A,(M1),0,2014-04-06,Petit Theft $100- $300,2014-04-06,2014-04-09,,0,,,,,Risk of Recidivism,5,Medium,2013-02-05,Risk of Violence,4,Low,2013-02-05,2014-04-06,2014-04-09,0,0,425,1,1\r\n1079,markland blackwood,markland,blackwood,2013-07-09,Male,1978-07-21,37,25 - 45,African-American,0,1,0,0,5,,,,13008358CF10A,2013-06-11,,28,F,Aggravated Battery / Pregnant,1,13022826MM10A,(M1),,2013-11-14,Battery,,,,1,13022826MM10A,(M1),2013-11-14,Battery,Risk of Recidivism,1,Low,2013-07-09,Risk of Violence,2,Low,2013-07-09,,,5,0,128,1,1\r\n1081,rapheal brown,rapheal,brown,2013-04-10,Male,1971-11-30,44,25 - 45,African-American,0,1,0,1,1,,,,11126344TI30A,2011-11-24,,503,M,Fail To Secure Load,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-10,Risk of Violence,1,Low,2013-04-10,,,1,0,1087,0,0\r\n1082,eddie foster,eddie,foster,2013-09-29,Male,1966-04-08,50,Greater than 45,African-American,0,8,0,0,18,-1,2013-09-28 04:00:12,2014-06-04 02:35:27,13013622CF10A,2013-09-28,,1,F,Driving While License Revoked,1,14008092CF10A,(M1),0,2014-06-11,Possess Cannabis/20 Grams Or Less,2014-06-11,2014-06-11,,0,,,,,Risk of Recidivism,8,High,2013-09-29,Risk of Violence,6,Medium,2013-09-29,2014-06-11,2014-06-11,18,248,255,0,1\r\n1084,paul henderson,paul,henderson,2013-04-29,Male,1970-07-11,45,Greater than 45,African-American,0,1,0,0,0,-1,2013-04-28 07:46:48,2013-04-30 03:53:04,13008185MM10A,2013-04-28,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-28,2013-04-30,0,1,1068,0,0\r\n1086,walter eady,walter,eady,2014-02-28,Male,1993-11-16,22,Less than 25,African-American,0,5,0,0,1,-1,2014-02-27 05:17:46,2014-02-28 01:22:35,14002787CF10A,,2014-02-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-28,Risk of Violence,7,Medium,2014-02-28,2014-05-08,2014-05-28,1,0,69,0,0\r\n1087,kevin abreu,kevin,abreu,2014-02-13,Male,1989-10-08,26,25 - 45,Caucasian,0,2,0,0,1,0,2014-02-13 02:31:02,2014-03-01 09:14:16,14001331CF10A,,2014-02-13,0,F,arrest case no charge,1,14033290TC10A,(M2),0,2014-09-14,Lve/Scen/Acc/Veh/Prop/Damage,2014-09-14,2014-10-03,,1,15010287MM10A,(M1),2015-09-30,Battery,Risk of Recidivism,2,Low,2014-02-13,Risk of Violence,3,Low,2014-02-13,2014-09-14,2014-10-03,1,16,213,1,1\r\n1088,joseph costino,joseph,costino,2013-01-10,Male,1954-03-12,62,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-09 03:17:14,2013-01-12 03:08:45,13000380CF10A,2013-01-09,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-10,Risk of Violence,1,Low,2013-01-10,2013-01-09,2013-01-12,0,2,1177,0,0\r\n1089,brandon allen,brandon,allen,2013-10-29,Male,1982-02-14,34,25 - 45,Caucasian,0,1,0,0,0,0,2013-10-29 04:06:47,2013-10-29 02:01:23,13020457MM10A,2013-10-29,,0,M,DUI Property Damage/Injury,1,14005994MU10A,(M2),1,2014-02-13,Driving Under The Influence,2014-02-14,2014-03-19,,0,,,,,Risk of Recidivism,1,Low,2013-10-29,Risk of Violence,1,Low,2013-10-29,2014-02-14,2014-03-19,0,0,107,1,1\r\n1092,angel nunez,angel,nunez,2013-08-08,Male,1991-10-08,24,Less than 25,Hispanic,0,10,0,0,1,-6,2013-08-02 10:27:58,2013-08-08 11:00:55,13010905CF10A,2013-08-02,,6,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-08,Risk of Violence,5,Medium,2013-08-08,2013-11-15,2013-11-19,1,0,99,0,0\r\n1093,william baumann,william,baumann,2013-01-14,Male,1994-09-02,21,Less than 25,Caucasian,0,2,0,0,0,-1,2013-01-13 10:04:17,2013-01-14 12:55:21,13000783MM10A,2013-01-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,5,Medium,2013-01-14,2013-01-13,2013-01-14,0,0,1173,0,0\r\n1094,caitlin wallace,caitlin,wallace,2014-12-13,Male,1991-03-11,25,25 - 45,Caucasian,0,2,0,0,0,-1,2014-12-12 07:29:14,2014-12-13 07:28:15,14016511CF10A,2014-12-12,,1,F,Felony Battery,1,15015010CF10A,(F2),0,2015-11-19,Agg Battery Grt/Bod/Harm,2015-11-19,2015-11-20,,1,15015010CF10A,(F2),2015-11-19,Agg Battery Grt/Bod/Harm,Risk of Recidivism,2,Low,2014-12-13,Risk of Violence,3,Low,2014-12-13,2015-11-19,2015-11-20,0,0,341,1,1\r\n1096,gregory still,gregory,still,2013-01-08,Male,1947-08-26,68,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-07 05:13:05,2013-01-10 09:39:29,13000399MM10A,2013-01-07,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-08,Risk of Violence,1,Low,2013-01-08,2013-01-07,2013-01-10,0,2,1179,0,0\r\n1097,brendan casey,brendan,casey,2014-02-20,Male,1974-05-10,41,25 - 45,Caucasian,0,2,0,0,2,-47,2014-01-04 06:03:39,2014-01-04 08:34:05,14000375MU10A,2014-01-04,,47,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-20,Risk of Violence,2,Low,2014-02-20,2014-01-04,2014-01-04,2,0,771,0,0\r\n1099,christopher rabold,christopher,rabold,2013-03-02,Male,1994-11-27,21,Less than 25,Caucasian,0,3,0,0,1,-1,2013-03-01 07:29:20,2013-03-02 07:28:52,13003104CF10A,,2013-03-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-02,Risk of Violence,6,Medium,2013-03-02,2013-03-01,2013-03-02,1,0,1126,0,0\r\n1101,elsa tejada,elsa,tejada,2014-02-03,Female,1978-11-14,37,25 - 45,Hispanic,0,3,0,0,1,-1,2014-02-02 08:11:13,2014-02-04 04:08:24,14001476CF10A,2014-02-02,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-02,2014-02-04,1,1,788,0,0\r\n1103,kalil edwards,kalil,edwards,2013-11-12,Male,1993-06-26,22,Less than 25,African-American,0,8,0,0,0,0,2013-11-12 01:16:29,2013-11-12 08:32:15,13015693CF10A,2013-11-12,,0,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-12,Risk of Violence,5,Medium,2013-11-12,2013-11-12,2013-11-12,0,0,871,0,0\r\n1105,anthony forte,anthony,forte,2013-11-07,Male,1978-03-16,38,25 - 45,Caucasian,0,4,0,0,11,-268,2013-02-12 10:45:09,2013-11-07 10:50:54,12001347CF10A,,2013-02-12,268,F,arrest case no charge,1,15001140MM40A,(M2),76,2015-02-24,Petit Theft,2015-05-11,2015-05-15,,0,,,,,Risk of Recidivism,4,Low,2013-11-07,Risk of Violence,2,Low,2013-11-07,2015-05-11,2015-05-15,11,0,474,1,1\r\n1106,gregory osman,gregory,osman,2013-01-29,Male,1974-03-14,42,25 - 45,Caucasian,0,1,0,0,1,-1,2013-01-28 05:40:47,2013-01-29 01:19:50,11015816CF10A,,2013-01-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-28,2013-01-29,1,0,1158,0,0\r\n1107,shawn davis,shawn,davis,2013-04-26,Male,1994-01-14,22,Less than 25,Caucasian,0,4,1,1,1,-1,2013-04-25 03:09:51,2013-04-26 06:59:23,13005950CF10A,,2013-04-25,1,F,arrest case no charge,1,14005818MM10A,(M1),0,2014-04-05,Trespass Other Struct/Conve,2014-04-05,2014-04-20,,0,,,,,Risk of Recidivism,4,Low,2013-04-26,Risk of Violence,6,Medium,2013-04-26,2014-04-05,2014-04-20,1,0,344,1,1\r\n1109,richard carter,richard,carter,2014-09-07,Male,1970-05-05,45,Greater than 45,African-American,0,4,0,0,0,-1,2014-09-06 07:44:33,2014-09-09 03:54:23,14012146CF10A,2014-09-06,,1,F,Grand Theft (Motor Vehicle),1,14017939MM10A,(M1),0,2014-12-18,Extradition/Defendants,2014-12-18,2015-01-14,,0,,,,,Risk of Recidivism,4,Low,2014-09-07,Risk of Violence,2,Low,2014-09-07,2014-12-18,2015-01-14,0,2,102,1,1\r\n1110,marketta burgess,marketta,burgess,2013-01-05,Female,1980-04-02,36,25 - 45,African-American,0,10,0,0,4,-1,2013-01-04 11:30:32,2013-01-05 07:58:49,13000191CF10A,2013-01-04,,1,F,Neglect Child / No Bodily Harm,1,14013332CF10A,(F3),0,2014-10-03,Possession of Cocaine,2014-10-03,2015-03-02,,0,,,,,Risk of Recidivism,10,High,2013-01-05,Risk of Violence,6,Medium,2013-01-05,2014-10-03,2015-03-02,4,0,636,1,1\r\n1111,joseph kelley,joseph,kelley,2013-04-01,Male,1967-11-19,48,Greater than 45,African-American,0,6,0,0,2,0,2013-04-01 06:58:00,2013-04-02 12:49:07,13004649CF10A,2013-04-01,,0,F,Fel Drive License Perm Revoke,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-04-01,2013-04-02,2,1,1096,0,0\r\n1118,vicky castillo,vicky,castillo,2013-10-01,Female,1970-10-05,45,Greater than 45,Caucasian,0,1,0,0,1,-106,2013-06-17 04:01:20,2013-06-25 08:31:02,13007024CF10A,,2013-06-17,106,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2013-06-17,2013-06-25,1,0,913,0,0\r\n1119,tavarus grayheart,tavarus,grayheart,2014-03-13,Male,1992-10-15,23,Less than 25,African-American,0,9,0,1,6,-1,2014-03-12 04:49:26,2014-03-20 09:46:56,14003509CF10A,2014-03-12,,1,F,Grand Theft in the 3rd Degree,1,14027514TC20A,(M2),,2014-04-03,Susp Drivers Lic 1st Offense,,,,1,15015308CF10A,(F2),2015-11-27,Agg Flee/Eluding (Injury/Prop Damage),Risk of Recidivism,9,High,2014-03-13,Risk of Violence,8,High,2014-03-13,2014-03-12,2014-03-20,6,7,21,1,1\r\n1120,michall simon,michall,simon,2013-04-07,Male,1991-10-24,24,Less than 25,African-American,0,8,0,0,0,0,2013-04-07 02:55:12,2013-04-08 10:05:58,13005000CF10A,2013-04-06,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-07,Risk of Violence,7,Medium,2013-04-07,2013-04-07,2013-04-08,0,1,1090,0,0\r\n1121,deonte knight,deonte,knight,2013-04-25,Male,1987-01-24,29,25 - 45,African-American,0,2,0,0,0,-1,2013-04-24 05:48:18,2013-04-25 11:01:14,13005894CF10A,2013-04-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-25,Risk of Violence,3,Low,2013-04-25,2014-08-12,2014-08-12,0,0,474,0,0\r\n1122,jacky voltaire,jacky,voltaire,2013-07-18,Male,1991-05-15,24,Less than 25,African-American,0,3,0,0,0,-3,2013-07-15 11:39:27,2013-07-16 01:15:42,13009914CF10A,2013-07-15,,3,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-18,Risk of Violence,4,Low,2013-07-18,2013-07-15,2013-07-16,0,0,988,0,0\r\n1123,willie johnson,willie,johnson,2013-09-09,Male,1965-11-02,50,Greater than 45,African-American,0,9,0,0,11,0,2013-09-09 01:51:41,2013-09-11 04:56:45,13012732CF10A,2013-09-09,,0,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-09,Risk of Violence,6,Medium,2013-09-09,2013-09-09,2013-09-11,11,2,935,0,0\r\n1125,travis dixon,travis,dixon,2014-05-12,Male,1982-01-12,34,25 - 45,African-American,0,7,1,0,10,0,2014-05-12 03:33:09,2014-05-14 09:37:26,14006621CF10A,,2014-05-12,0,F,arrest case no charge,1,15004413CF10A,(F1),1,2015-04-03,Trafficking In Cocaine 28><200,2015-04-04,2015-04-05,,0,,,,,Risk of Recidivism,7,Medium,2014-05-12,Risk of Violence,2,Low,2014-05-12,2014-05-12,2014-05-14,10,2,326,1,1\r\n1127,norman bushay,norman,bushay,2013-03-05,Male,1992-04-28,23,Less than 25,African-American,0,2,0,0,0,0,2013-03-05 03:06:29,2013-03-05 06:43:38,13003303CF10A,2013-03-05,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-05,Risk of Violence,4,Low,2013-03-05,2013-03-05,2013-03-05,0,0,1123,0,0\r\n1128,brenda hernandez,brenda,hernandez,2013-01-05,Female,1994-02-09,22,Less than 25,Caucasian,0,5,0,0,0,-1,2013-01-04 05:04:08,2013-01-06 05:48:14,13000570TC10A,2013-01-04,,1,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-05,Risk of Violence,6,Medium,2013-01-05,2013-01-04,2013-01-06,0,1,1182,0,0\r\n1129,kent rizon,kent,rizon,2013-11-13,Male,1980-03-16,36,25 - 45,Other,0,1,0,0,0,-1,2013-11-12 03:12:05,2013-11-19 05:29:28,13015711CF10A,2013-11-12,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-13,Risk of Violence,1,Low,2013-11-13,2013-11-12,2013-11-19,0,6,870,0,0\r\n1130,shawn shaw,shawn,shaw,2014-11-17,Male,1985-07-12,30,25 - 45,Caucasian,0,5,0,0,22,-1,2014-11-16 06:29:12,2014-11-19 08:43:44,14015429CF10A,2014-11-16,,1,F,Possession of Cocaine,1,15000717MM40A,(M2),85,2015-01-08,Petit Theft,2015-04-03,2015-05-31,,0,,,,,Risk of Recidivism,5,Medium,2014-11-17,Risk of Violence,6,Medium,2014-11-17,2014-11-16,2014-11-19,22,2,52,1,1\r\n1131,kamry kelly,kamry,kelly,2013-02-14,Male,1994-08-27,21,Less than 25,African-American,0,10,0,0,0,-1,2013-02-13 07:59:36,2013-02-14 08:14:37,13002242CF10A,2013-02-13,,1,F,Deliver Cocaine 1000FT Church,1,14000744MM30A,(M1),53,2014-04-24,Trespass Other Struct/Conve,2014-06-16,2014-06-16,,0,,,,,Risk of Recidivism,10,High,2013-02-14,Risk of Violence,9,High,2013-02-14,2013-10-05,2013-10-05,0,0,233,0,1\r\n1132,edmund callahan,edmund,callahan,2013-10-23,Female,1963-03-24,53,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-23 02:26:06,2013-10-24 06:18:43,13014806CF10A,2013-10-23,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-23,Risk of Violence,1,Low,2013-10-23,2014-10-27,2014-10-31,0,1,369,0,0\r\n1135,john martinelli,john,martinelli,2014-01-13,Male,1991-09-01,24,Less than 25,Caucasian,0,3,0,0,1,-37,2013-12-07 10:28:43,2013-12-08 01:46:26,13016950CF10A,2013-12-07,,37,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-13,Risk of Violence,3,Low,2014-01-13,2014-03-12,2014-04-01,1,0,58,0,0\r\n1136,erica smith,erica,smith,2013-02-02,Male,1990-12-16,25,25 - 45,African-American,0,5,1,1,7,-1,2013-02-01 11:35:08,2013-02-02 08:07:22,12052779TC10A,,2013-02-01,1,M,arrest case no charge,1,13016793TC10A,(M2),0,2013-04-17,Operating W/O Valid License,2013-04-17,2013-04-17,,0,,,,,Risk of Recidivism,5,Medium,2013-02-02,Risk of Violence,5,Medium,2013-02-02,2013-04-17,2013-04-17,7,0,74,0,1\r\n1138,marsha jeanjoseph,marsha,jeanjoseph,2014-01-03,Female,1990-06-12,25,25 - 45,African-American,0,9,0,0,1,0,2014-01-03 02:09:56,2014-01-03 07:33:37,09066249TC30A,,2009-08-18,1599,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-03,Risk of Violence,5,Medium,2014-01-03,2014-01-03,2014-01-03,1,0,819,0,0\r\n1140,edwin swinton,edwin,swinton,2013-05-17,Male,1944-05-30,71,Greater than 45,African-American,0,1,0,0,8,-1,2013-05-16 09:36:12,2013-06-10 07:28:18,13006982CF10A,2013-05-16,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-17,Risk of Violence,2,Low,2013-05-17,2013-05-16,2013-06-10,8,24,1050,0,0\r\n1141,elliot king,elliot,king,2013-01-12,Male,1976-06-20,39,25 - 45,African-American,0,9,4,0,10,-1,2013-01-11 12:37:30,2013-02-21 07:26:22,04009015TC40A,,2004-11-01,2994,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-12,Risk of Violence,3,Low,2013-01-12,2013-09-07,2013-10-14,10,40,238,0,0\r\n1142,lashonn boykin,lashonn,boykin,2014-01-11,Female,1979-04-03,37,25 - 45,African-American,0,5,0,0,0,0,2014-01-11 04:29:19,2014-02-17 08:19:02,14000466CF10A,2014-01-11,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-11,Risk of Violence,3,Low,2014-01-11,2014-01-11,2014-02-17,0,37,811,0,0\r\n1143,martise pointer,martise,pointer,2014-09-07,Male,1995-05-04,20,Less than 25,African-American,0,5,0,2,0,0,2014-09-07 12:52:42,2014-09-15 09:00:49,14012181CF10A,2014-09-06,,1,F,Possession of Cocaine,1,15007938MM10A,(M2),0,2015-07-26,Trespass Struct/Conveyance,2015-07-26,2015-07-27,,0,,,,,Risk of Recidivism,5,Medium,2014-09-07,Risk of Violence,8,High,2014-09-07,2015-07-26,2015-07-27,0,8,322,1,1\r\n1144,brittany exantus,brittany,exantus,2013-08-13,Female,1986-06-02,29,25 - 45,African-American,0,5,0,0,3,-1,2013-08-12 08:00:00,2013-08-13 06:43:07,13011319CF10A,2013-08-12,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-13,Risk of Violence,4,Low,2013-08-13,2013-08-12,2013-08-13,3,0,962,0,0\r\n1145,tyrail brantley,tyrail,brantley,2014-12-12,Male,1993-10-06,22,Less than 25,African-American,0,5,0,0,2,-1,2014-12-11 03:56:24,2014-12-12 12:51:23,14016434CF10A,2014-12-11,,1,F,Possession of Cocaine,1,15008696MM10A,(M1),0,2015-08-17,Resist/Obstruct W/O Violence,2015-08-17,2015-08-18,,0,,,,,Risk of Recidivism,5,Medium,2014-12-12,Risk of Violence,5,Medium,2014-12-12,2015-08-17,2015-08-18,2,0,248,1,1\r\n1146,anton gantt,anton,gantt,2013-04-25,Male,1990-02-22,26,25 - 45,African-American,0,7,0,0,4,-1,2013-04-24 01:23:40,2013-07-16 11:39:34,13005879CF10A,2013-04-24,,1,F,Aggravated Assault w/Firearm,1,14023325TC10A,(M2),0,2014-06-22,Operating W/O Valid License,2014-06-22,2014-07-07,,0,,,,,Risk of Recidivism,7,Medium,2013-04-25,Risk of Violence,7,Medium,2013-04-25,2014-06-22,2014-07-07,4,82,423,1,1\r\n1149,sergio sergio,sergio,sergio,2013-01-15,Male,1980-09-19,35,25 - 45,Hispanic,0,7,0,0,5,,,,10010801CF10A,,2011-04-02,654,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,7,Medium,2013-01-15,,,5,0,1172,0,0\r\n1150,wanda daniels,wanda,daniels,2013-10-09,Female,1968-12-18,47,Greater than 45,African-American,0,10,0,0,19,-1,2013-10-08 12:12:30,2013-11-08 08:59:42,13014107CF10A,2013-10-08,,1,F,Possession of Cocaine,1,15012442CF10A,(F3),0,2015-09-25,Possession of Cocaine,2015-09-25,2015-10-30,,0,,,,,Risk of Recidivism,10,High,2013-10-09,Risk of Violence,2,Low,2013-10-09,2014-01-28,2014-07-02,19,30,111,0,1\r\n1151,steven bansie,steven,bansie,2013-10-12,Male,1994-09-16,21,Less than 25,Other,0,4,0,0,1,-1,2013-10-11 07:30:50,2013-10-12 02:37:10,13014270CF10A,2013-10-11,,1,F,Possession of Cannabis,1,14004843MM10A,(M1),,2014-02-07,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-12,Risk of Violence,6,Medium,2013-10-12,2013-10-11,2013-10-12,1,0,118,1,1\r\n1152,maxima basil,maxima,basil,2014-01-10,Female,1992-12-30,23,Less than 25,Other,0,10,0,0,0,-1,2014-01-09 02:16:17,2014-01-10 08:41:42,14000393MM10A,2014-01-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-10,Risk of Violence,10,High,2014-01-10,2014-01-09,2014-01-10,0,0,812,0,0\r\n1153,cassi schmiedeknecht,cassi,schmiedeknecht,2014-01-01,Female,1995-11-06,20,Less than 25,Caucasian,0,8,0,0,1,-1,2013-12-31 06:26:42,2014-01-17 10:42:40,14000011CF10A,2013-12-31,,1,F,Burglary Unoccupied Dwelling,1,16000036MM20A,(M2),,2015-12-23,Possession Of Alcohol Under 21,,,,0,,,,,Risk of Recidivism,8,High,2014-01-01,Risk of Violence,6,Medium,2014-01-01,2013-12-31,2014-01-17,1,16,721,1,1\r\n1156,latrellias butler,latrellias,butler,2014-03-07,Female,1992-10-27,23,Less than 25,African-American,0,2,0,0,0,-1,2014-03-06 08:02:12,2014-03-07 08:50:57,14003178CF10A,2014-03-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-07,Risk of Violence,3,Low,2014-03-07,2014-03-06,2014-03-07,0,0,756,0,0\r\n1157,james tiger,james,tiger,2013-11-05,Male,1988-09-09,27,25 - 45,Native American,0,7,0,0,3,0,2013-11-05 04:32:08,2013-11-06 03:05:48,13020889MM10A,2013-11-05,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-05,Risk of Violence,4,Low,2013-11-05,2013-11-05,2013-11-06,3,1,878,0,0\r\n1158,kevin tarr,kevin,tarr,2013-08-15,Male,1961-02-09,55,Greater than 45,Caucasian,0,2,0,0,18,-47,2013-06-29 05:34:10,2013-08-05 11:59:42,13009175CF10A,,2013-06-29,47,F,arrest case no charge,1,13015348CF10A,(F3),1,2013-11-03,Felony Petit Theft,2013-11-04,2014-01-30,,0,,,,,Risk of Recidivism,2,Low,2013-08-15,Risk of Violence,1,Low,2013-08-15,2013-10-10,2013-10-17,18,0,56,0,1\r\n1159,rosalind townsend,rosalind,townsend,2013-09-23,Female,1963-03-28,53,Greater than 45,African-American,0,1,0,0,0,0,2013-09-23 02:29:56,2013-09-23 08:46:28,13013383CF10A,2013-09-23,,0,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-23,2013-09-23,0,0,921,0,0\r\n1160,lasha ware,lasha,ware,2013-05-05,Female,1992-10-13,23,Less than 25,African-American,0,7,0,0,0,-1,2013-05-04 10:05:51,2013-05-05 06:07:57,13006404CF10A,2013-05-04,,1,F,Aggrav Battery w/Deadly Weapon,1,16000422MM30A,(M1),,2016-02-21,Criminal Mischief>$200<$1000,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-05,Risk of Violence,7,Medium,2013-05-05,2013-05-04,2013-05-05,0,0,1022,1,0\r\n1162,rocheny belizaire,rocheny,belizaire,2014-08-27,Male,1989-08-06,26,25 - 45,African-American,0,7,0,1,5,-1,2014-08-26 07:01:23,2014-09-17 10:18:14,14011649CF10A,2014-08-26,,1,F,Grand Theft (Motor Vehicle),1,15013500CF10A,(F2),,2015-10-16,Burglary Unoccupied Dwelling,,,,0,,,,,Risk of Recidivism,7,Medium,2014-08-27,Risk of Violence,3,Low,2014-08-27,2014-08-26,2014-09-17,5,21,415,1,1\r\n1163,derion mcreed,derion,mcreed,2013-01-04,Male,1990-07-01,25,25 - 45,African-American,0,6,0,0,6,-1,2013-01-03 05:43:48,2013-01-09 05:44:20,13000126CF10A,2013-01-03,,1,F,Burglary Unoccupied Dwelling,1,15014297CF10A,(F3),136,2015-11-02,Grand Theft (Motor Vehicle),2016-03-17,2016-04-15,,0,,,,,Risk of Recidivism,6,Medium,2013-01-04,Risk of Violence,5,Medium,2013-01-04,2014-06-11,2014-06-11,6,5,523,0,0\r\n1165,alan messina,alan,messina,2013-08-04,Male,1992-05-23,23,Less than 25,Other,0,4,0,0,2,-1,2013-08-03 07:10:36,2013-08-04 08:13:39,13014666MM10A,2013-08-03,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-04,Risk of Violence,6,Medium,2013-08-04,2014-03-13,2014-03-26,2,0,221,0,0\r\n1166,brandon henley,brandon,henley,2014-03-11,Male,1988-10-15,27,25 - 45,African-American,0,9,0,0,4,0,2014-03-11 05:19:53,2014-03-11 08:47:22,14003434CF10A,2014-03-11,,0,F,Pos Cannabis W/Intent Sel/Del,1,14013852CF10A,(F3),,2014-10-13,Grand Theft (Motor Vehicle),,,,1,14013852CF10A,(M2),2014-10-13,Assault,Risk of Recidivism,9,High,2014-03-11,Risk of Violence,7,Medium,2014-03-11,2014-03-11,2014-03-11,4,0,216,1,1\r\n1167,roderick wongwon,roderick,wongwon,2013-10-10,Male,1989-09-30,26,25 - 45,African-American,0,3,0,0,2,-106,2013-06-26 01:01:35,2013-06-26 08:16:53,13012228MM10A,2013-06-25,,107,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-10,Risk of Violence,4,Low,2013-10-10,2013-06-26,2013-06-26,2,0,904,0,0\r\n1169,dominic mcintosh,dominic,mcintosh,2013-05-20,Male,1987-03-23,29,25 - 45,African-American,0,4,0,0,1,-1,2013-05-19 04:24:50,2013-05-22 12:18:30,13009628MM10A,2013-05-19,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-20,Risk of Violence,3,Low,2013-05-20,2015-06-22,2015-06-26,1,2,763,0,0\r\n1170,rohan fletcher,rohan,fletcher,2014-07-09,Male,1988-09-13,27,25 - 45,Other,0,2,0,0,1,-1,2014-07-08 12:21:10,2014-07-09 09:28:42,14009361CF10A,2014-07-08,,1,F,Aggravated Assault W/Dead Weap,1,15002349MM10A,(M1),0,2015-02-26,Carrying A Concealed Weapon,2015-02-26,2015-02-27,,0,,,,,Risk of Recidivism,2,Low,2014-07-09,Risk of Violence,4,Low,2014-07-09,2015-02-26,2015-02-27,1,0,232,1,1\r\n1171,david humberto,david,humberto,2013-04-18,Male,1988-01-16,28,25 - 45,Hispanic,0,2,0,0,0,-1,2013-04-17 07:59:26,2013-04-18 10:21:13,13005517CF10A,2013-04-17,,1,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-18,Risk of Violence,2,Low,2013-04-18,2013-04-17,2013-04-18,0,0,1079,0,0\r\n1172,sergio vankanten,sergio,vankanten,2013-09-22,Male,1984-07-02,31,25 - 45,African-American,0,2,0,0,0,-1,2013-09-21 09:12:18,2013-09-22 08:15:55,13018031MM10A,2013-09-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-22,Risk of Violence,1,Low,2013-09-22,2013-09-21,2013-09-22,0,0,922,0,0\r\n1173,sultan shakir,sultan,shakir,2013-11-27,Male,1974-10-04,41,25 - 45,African-American,0,6,0,0,8,-29,2013-10-29 05:23:04,2013-10-30 01:58:40,13015094CF10A,2013-10-29,,29,F,Possession of Cocaine,1,15025264TC10A,(M2),,2015-08-31,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-27,Risk of Violence,3,Low,2013-11-27,2013-10-29,2013-10-30,8,0,642,1,1\r\n1176,alexander pauleuc,alexander,pauleuc,2013-05-28,Male,1990-06-21,25,25 - 45,Caucasian,0,2,0,0,0,-2,2013-05-26 01:54:05,2013-05-26 09:24:25,13010061MM10A,2013-05-25,,3,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,3,Low,2013-05-28,2013-05-26,2013-05-26,0,0,1039,0,0\r\n1177,christopher kiefer,christopher,kiefer,2014-02-24,Male,1969-04-02,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-23 12:27:01,2014-02-23 08:15:29,14006834MU10A,2014-02-22,,2,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-23,2014-02-23,0,0,767,0,0\r\n1179,lennox cameron,lennox,cameron,2013-03-31,Male,1979-01-06,37,25 - 45,African-American,0,2,0,0,4,-1,2013-03-30 11:29:11,2013-03-31 12:23:51,13004564CF10A,2013-03-30,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-31,Risk of Violence,1,Low,2013-03-31,2013-08-12,2013-08-13,4,0,134,0,0\r\n1181,shawanda johnson,shawanda,johnson,2013-08-24,Female,1981-01-12,35,25 - 45,African-American,0,5,0,0,4,-1,2013-08-23 11:46:10,2013-08-25 12:15:56,13011914CF10A,2013-08-23,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-24,Risk of Violence,3,Low,2013-08-24,2013-08-23,2013-08-25,4,1,951,0,0\r\n1186,chance lacy,chance,lacy,2013-08-13,Male,1991-08-13,24,Less than 25,Caucasian,0,4,0,0,1,0,2013-08-13 02:58:36,2013-08-14 05:03:53,13015299MM10A,2013-08-12,,1,M,Battery,1,14000468MM20A,(M2),,2014-01-19,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-13,Risk of Violence,6,Medium,2013-08-13,2013-08-13,2013-08-14,1,1,159,1,1\r\n1187,sylas swaskee,sylas,swaskee,2014-10-15,Male,1995-01-10,21,Less than 25,Caucasian,0,9,2,1,2,-1,2014-10-14 06:55:40,2014-10-20 04:58:47,14013865CF10A,2014-10-14,,1,F,Grand Theft (Motor Vehicle),1,15001387CF10A,(F2),,2014-11-26,Robbery Sudd Snatch w/Weapon,,,,1,15001387CF10A,(F2),2014-11-26,Robbery Sudd Snatch w/Weapon,Risk of Recidivism,9,High,2014-10-15,Risk of Violence,8,High,2014-10-15,2014-10-14,2014-10-20,2,5,42,1,1\r\n1191,corey haseley,corey,haseley,2013-08-12,Male,1993-08-27,22,Less than 25,Caucasian,0,4,0,0,0,0,2013-08-12 12:19:21,2013-08-15 07:52:52,13011258CF10A,2013-08-11,,1,F,Burglary Conveyance Unoccup,1,15006308MM10A,(M1),1,2015-05-23,Resist Merchant W Or W/O Viol,2015-05-24,2015-10-10,,0,,,,,Risk of Recidivism,4,Low,2013-08-12,Risk of Violence,6,Medium,2013-08-12,2013-08-12,2013-08-15,0,3,649,1,1\r\n1192,joseph roberts,joseph,roberts,2013-10-11,Male,1959-02-06,57,Greater than 45,African-American,0,6,0,0,11,-1,2013-10-10 04:21:35,2014-02-27 09:34:33,13014202CF10A,2013-10-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-11,Risk of Violence,5,Medium,2013-10-11,2013-10-10,2014-02-27,11,139,903,0,0\r\n1193,darren petri,darren,petri,2013-12-30,Male,1968-01-30,48,Greater than 45,Caucasian,0,7,0,0,0,-1,2013-12-29 08:36:14,2014-01-09 09:02:40,13017927CF10A,2013-12-29,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-30,Risk of Violence,4,Low,2013-12-30,2014-12-25,2015-01-05,0,10,360,0,0\r\n1194,mackenson revolus,mackenson,revolus,2013-03-06,Male,1979-12-28,36,25 - 45,Other,0,1,0,0,0,-1,2013-03-05 02:14:50,2013-03-10 05:24:10,13003427CF10A,2013-03-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-06,Risk of Violence,1,Low,2013-03-06,2013-03-05,2013-03-10,0,4,1122,0,0\r\n1195,latonya ray,latonya,ray,2014-01-09,Female,1979-04-05,37,25 - 45,African-American,0,7,0,0,3,-1,2014-01-08 07:01:21,2014-02-05 10:16:46,14000337CF10A,2014-01-08,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-09,Risk of Violence,4,Low,2014-01-09,2014-01-08,2014-02-05,3,27,813,0,0\r\n1196,kevin kendall,kevin,kendall,2013-01-01,Male,1984-09-16,31,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-01 04:29:04,2013-01-06 08:57:53,13000060MM10A,2013-01-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-01,Risk of Violence,2,Low,2013-01-01,2013-01-01,2013-01-06,0,5,1186,0,0\r\n1197,carnell robinson,carnell,robinson,2014-10-21,Male,1994-01-26,22,Less than 25,African-American,0,9,1,0,1,-1,2014-10-20 05:22:01,2014-10-24 09:01:43,14014153CF10A,2014-10-20,,1,F,False Ownership Info/Pawn Item,1,15007021CF10A,(F2),,2015-05-29,Sell/Man/Del Pos/w/int Heroin,,,,0,,,,,Risk of Recidivism,9,High,2014-10-21,Risk of Violence,9,High,2014-10-21,2014-10-20,2014-10-24,1,3,220,1,1\r\n1198,dale alderson,dale,alderson,2013-05-10,Male,1985-02-14,31,25 - 45,Caucasian,0,3,0,0,2,0,2013-05-10 02:37:25,2013-05-10 08:03:14,13009071MM10A,2013-05-10,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-10,Risk of Violence,2,Low,2013-05-10,2013-05-10,2013-05-10,2,0,1057,0,0\r\n1200,devonne gabriel,devonne,gabriel,2014-01-26,Male,1991-11-08,24,Less than 25,African-American,0,5,0,0,0,-1,2014-01-25 09:51:16,2014-01-26 01:51:01,14001119CF10A,2014-01-25,,1,F,Burglary Conveyance Unoccup,1,14020966TC10A,(M2),0,2014-06-05,Driving License Suspended,2014-06-05,2014-06-12,,0,,,,,Risk of Recidivism,5,Medium,2014-01-26,Risk of Violence,4,Low,2014-01-26,2014-04-08,2014-04-14,0,0,72,0,1\r\n1202,christopher patterson,christopher,patterson,2013-10-20,Male,1983-06-13,32,25 - 45,African-American,0,9,0,1,22,0,2013-10-20 01:59:29,2013-10-20 08:13:18,13013808CF10A,,2013-10-20,0,F,arrest case no charge,1,14004969MM10A,(M1),0,2014-03-21,Viol Injunct Domestic Violence,2014-03-21,2014-05-18,,1,14004969MM10A,(M1),2014-03-21,Battery,Risk of Recidivism,9,High,2013-10-20,Risk of Violence,10,High,2013-10-20,2014-03-21,2014-05-18,22,0,152,1,1\r\n1204,elenaida nunez,elenaida,nunez,2014-02-22,Female,1992-11-17,23,Less than 25,Other,0,4,0,0,0,-1,2014-02-21 07:57:15,2014-02-22 08:23:54,14003086MM10A,2014-02-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-22,Risk of Violence,5,Medium,2014-02-22,2014-02-21,2014-02-22,0,0,769,0,0\r\n1205,ira butler,ira,butler,2013-10-24,Male,1952-09-20,63,Greater than 45,African-American,0,1,0,0,0,-1,2013-10-23 05:45:37,2013-10-24 01:09:57,13020101MM10A,2013-10-23,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-24,Risk of Violence,1,Low,2013-10-24,2013-10-23,2013-10-24,0,0,890,0,0\r\n1206,shamroy west,shamroy,west,2013-09-23,Male,1986-03-04,30,25 - 45,Other,0,1,0,0,0,-1,2013-09-22 01:14:48,2013-09-23 08:25:00,13013349CF10A,2013-09-22,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,2,Low,2013-09-23,2013-09-22,2013-09-23,0,0,921,0,0\r\n1207,william emerson,william,emerson,2013-05-14,Male,1989-12-12,26,25 - 45,Caucasian,0,5,0,0,2,-38,2013-04-06 05:56:09,2013-05-03 08:12:04,13004932CF10A,2013-04-06,,38,F,Possession of Cocaine,1,14016260CF10A,(F3),,2014-12-07,Aggravated Assault W/Dead Weap,,,,1,14016260CF10A,(F3),2014-12-07,Aggravated Assault W/Dead Weap,Risk of Recidivism,5,Medium,2013-05-14,Risk of Violence,4,Low,2013-05-14,2016-04-05,2020-01-01,2,0,572,1,1\r\n1208,marshal white,marshal,white,2013-05-23,Male,1968-02-14,48,Greater than 45,Caucasian,0,3,0,0,2,,,,13009888MM10A,2013-05-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-23,Risk of Violence,2,Low,2013-05-23,,,2,0,1044,0,0\r\n1209,justin may,justin,may,2014-03-12,Male,1995-09-12,20,Less than 25,Caucasian,0,4,0,2,0,-1,2014-03-11 08:50:15,2014-03-12 10:45:26,14003431CF10A,2014-03-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-12,Risk of Violence,7,Medium,2014-03-12,2014-03-11,2014-03-12,0,0,751,0,0\r\n1212,rohneisha foy,rohneisha,foy,2013-08-12,Female,1991-08-07,24,Less than 25,African-American,0,5,0,0,1,0,2013-08-12 03:10:53,2013-08-12 08:45:43,13015230MM10A,2013-08-12,,0,M,Battery,1,14008243MM10A,(M2),0,2014-04-24,Exposes Culpable Negligence,2014-04-24,2014-04-25,,1,14008243MM10A,(M1),2014-04-24,Battery,Risk of Recidivism,5,Medium,2013-08-12,Risk of Violence,4,Low,2013-08-12,2014-04-24,2014-04-25,1,0,255,1,1\r\n1213,latasha blakegoodwin,latasha,blakegoodwin,2014-01-13,Female,1979-11-29,36,25 - 45,African-American,0,2,0,0,1,-1,2014-01-12 08:52:22,2014-01-13 08:36:10,14003627TC10A,2014-01-12,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-13,Risk of Violence,2,Low,2014-01-13,2014-01-12,2014-01-13,1,0,809,0,0\r\n1215,alfonso puello,alfonso,puello,2013-01-06,Male,1933-03-07,83,Greater than 45,Hispanic,0,1,0,0,0,0,2013-01-06 02:36:31,2013-01-07 01:32:52,13000312MM10A,2013-01-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-06,Risk of Violence,1,Low,2013-01-06,2013-01-06,2013-01-07,0,1,1181,0,0\r\n1216,mitchell berlanga,mitchell,berlanga,2013-10-15,Male,1987-12-01,28,25 - 45,Caucasian,0,6,0,0,2,0,2013-10-15 01:07:08,2013-10-15 08:16:41,13014370CF10A,2013-10-14,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-15,Risk of Violence,6,Medium,2013-10-15,2013-10-15,2013-10-15,2,0,899,0,0\r\n1217,juwan justice,juwan,justice,2013-01-11,Male,1979-11-15,36,25 - 45,African-American,0,2,0,0,3,-1,2013-01-10 09:17:04,2013-01-11 09:26:16,13000448CF10A,2013-01-10,,1,F,Driving While License Revoked,1,14007544tc40a,(M2),,2014-01-22,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-11,Risk of Violence,1,Low,2013-01-11,2013-01-10,2013-01-11,3,0,376,1,1\r\n1219,ebony jones,ebony,jones,2014-01-17,Female,1983-01-12,33,25 - 45,African-American,0,2,0,0,0,-1,2014-01-16 08:14:14,2014-01-18 01:21:05,14000961CF10A,2014-01-16,,1,M,Simulation of Legal Process,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-17,Risk of Violence,2,Low,2014-01-17,2014-01-16,2014-01-18,0,1,805,0,0\r\n1220,lewis lynn,lewis,lynn,2013-01-13,Male,1977-01-31,39,25 - 45,African-American,0,3,0,0,0,0,2013-01-13 05:35:49,2013-01-13 07:51:04,13000599CF10A,2013-01-13,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-13,Risk of Violence,2,Low,2013-01-13,2013-01-13,2013-01-13,0,0,1174,0,0\r\n1221,romoy ramdeen,romoy,ramdeen,2013-12-20,Male,1986-07-27,29,25 - 45,Other,0,7,0,0,3,0,2013-12-20 05:11:31,2013-12-20 08:47:51,13023502MM10A,2013-12-20,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-20,Risk of Violence,5,Medium,2013-12-20,2013-12-20,2013-12-20,3,0,833,0,0\r\n1222,whatley nordelus,whatley,nordelus,2013-08-16,Male,1986-03-19,30,25 - 45,African-American,0,10,0,0,17,-4,2013-08-12 09:38:58,2013-08-16 10:55:14,12005943CF10A,,2013-08-12,4,F,arrest case no charge,1,13016582CF10A,(F3),0,2013-11-30,Possession of Cocaine,2013-11-30,2014-04-11,,0,,,,,Risk of Recidivism,10,High,2013-08-16,Risk of Violence,5,Medium,2013-08-16,2013-11-30,2014-04-11,17,0,106,1,1\r\n1223,bailey greene,bailey,greene,2013-01-07,Female,1996-04-22,19,Less than 25,Caucasian,1,6,1,0,1,140,2013-05-27 02:53:50,2013-05-28 08:50:54,12023004MM10A,2012-09-29,,100,M,Operating W/O Valid License,1,13007558CF10A,(M1),1,2013-05-26,Battery,2013-05-27,2013-05-28,,1,13007558CF10A,(F3),2013-05-26,Aggravated Assault W/dead Weap,Risk of Recidivism,6,Medium,2013-01-07,Risk of Violence,8,High,2013-01-07,2013-05-27,2013-05-28,1,0,139,1,1\r\n1225,demetria jones,demetria,jones,2014-09-23,Male,1991-11-06,24,Less than 25,African-American,0,1,0,0,1,-1,2014-09-22 08:58:36,2014-09-23 02:01:46,14012830CF10A,,2014-09-22,1,F,arrest case no charge,1,15012545MM10A,(M1),0,2015-12-03,Petit Theft $100- $300,2015-12-03,2015-12-11,,0,,,,,Risk of Recidivism,1,Low,2014-09-23,Risk of Violence,2,Low,2014-09-23,2015-02-06,2015-04-06,1,0,136,0,1\r\n1227,ricardo rodriguez,ricardo,rodriguez,2013-06-11,Male,1979-12-20,36,25 - 45,Hispanic,0,7,0,0,11,-79,2013-03-24 12:57:37,2013-06-11 11:10:38,13004343CF10A,,2013-04-30,42,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-06-11,Risk of Violence,6,Medium,2013-06-11,2015-12-14,2015-12-17,11,0,916,0,0\r\n1228,bradey birdsong,bradey,birdsong,2014-02-13,Female,1986-06-18,29,25 - 45,Caucasian,0,5,0,0,1,,,,09011928CF10A,2009-06-25,,1694,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-13,Risk of Violence,5,Medium,2014-02-13,,,1,0,778,0,0\r\n1229,earnest wiley,earnest,wiley,2014-02-11,Male,1980-08-12,35,25 - 45,African-American,0,6,0,0,7,-1,2014-02-10 05:03:39,2014-02-11 08:51:34,14001896CF10A,2014-02-10,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-11,Risk of Violence,2,Low,2014-02-11,2014-02-10,2014-02-11,7,0,780,0,0\r\n1230,selvin lopez,selvin,lopez,2014-03-22,Male,1991-06-02,24,Less than 25,African-American,0,3,0,1,0,-1,2014-03-21 08:31:22,2014-03-22 08:04:13,14004035CF10A,2014-03-21,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-22,Risk of Violence,3,Low,2014-03-22,2014-03-21,2014-03-22,0,0,741,0,0\r\n1231,russell norman,russell,norman,2013-09-28,Male,1989-06-01,26,25 - 45,Caucasian,0,2,0,0,0,773,2015-11-10 03:24:25,2015-11-19 05:38:35,13018424MM10A,2013-09-27,,1,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-28,Risk of Violence,2,Low,2013-09-28,2015-11-10,2015-11-19,0,0,773,0,0\r\n1233,giovanni santiago,giovanni,santiago,2013-08-20,Male,1989-06-19,26,25 - 45,Caucasian,0,4,0,0,8,-1,2013-08-19 03:18:18,2013-08-21 05:06:23,13011612CF10A,,2013-08-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-20,Risk of Violence,4,Low,2013-08-20,2013-08-19,2013-08-21,8,1,955,0,0\r\n1234,john harris,john,harris,2013-09-16,Male,1963-10-05,52,Greater than 45,African-American,0,6,0,0,7,,,,13014884MM10A,2013-03-15,,185,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-16,Risk of Violence,1,Low,2013-09-16,2008-08-21,2011-05-12,7,0,928,0,0\r\n1235,derek fuller,derek,fuller,2013-03-20,Male,1987-10-21,28,25 - 45,African-American,0,7,0,0,14,-1,2013-03-19 11:58:58,2013-03-20 09:53:42,13003997CF10A,2013-03-19,,1,F,Fleeing or Eluding a LEO,1,14000392CF10A,(M1),0,2014-01-09,Resist/Obstruct W/O Violence,2014-01-09,2014-02-28,,1,14005324CF10A,(F1),2014-04-16,Agg Battery Law Enforc Officer,Risk of Recidivism,7,Medium,2013-03-20,Risk of Violence,8,High,2013-03-20,2014-01-09,2014-02-28,14,0,295,1,1\r\n1237,javon jacobs,javon,jacobs,2013-03-08,Male,1983-05-14,32,25 - 45,African-American,0,5,0,0,0,-1,2013-03-07 11:30:49,2013-03-08 02:03:41,13004627MM10A,2013-03-07,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-08,Risk of Violence,2,Low,2013-03-08,2013-03-07,2013-03-08,0,0,1120,0,0\r\n1238,sissy zayas,sissy,zayas,2014-08-17,Female,1983-06-15,32,25 - 45,Caucasian,0,3,0,0,1,-1,2014-08-16 12:35:59,2014-08-17 09:00:26,14012384MM10A,2014-08-16,,1,M,Battery,1,15005873MM10A,(M1),0,2015-05-13,Resist/Obstruct W/O Violence,2015-05-13,2015-05-14,,1,15006260CF10A,(F3),2015-05-13,Battery on Law Enforc Officer,Risk of Recidivism,3,Low,2014-08-17,Risk of Violence,1,Low,2014-08-17,2015-05-13,2015-05-14,1,0,269,1,1\r\n1239,jason bent,jason,bent,2013-01-27,Male,1983-01-10,33,25 - 45,African-American,0,8,0,0,5,0,2013-01-27 12:15:24,2013-02-02 08:07:19,13001865MM10A,2013-01-26,,1,M,Susp Drivers Lic 1st Offense,1,13019641TC10A,(M2),,2013-03-24,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,8,High,2013-01-27,Risk of Violence,6,Medium,2013-01-27,2013-01-27,2013-02-02,5,6,56,1,1\r\n1240,tacaris mitchell,tacaris,mitchell,2013-04-11,Male,1986-10-10,29,25 - 45,African-American,0,10,1,0,16,-1,2013-04-10 04:38:27,2013-04-27 04:55:16,13005157CF10A,2013-04-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-11,Risk of Violence,7,Medium,2013-04-11,2015-06-08,2020-01-01,16,16,788,0,0\r\n1241,michael godfrey,michael,godfrey,2014-05-25,Male,1981-09-19,34,25 - 45,Caucasian,0,3,0,0,1,-1,2014-05-24 11:19:44,2014-05-25 09:30:19,14008370MM10A,2014-05-24,,1,M,Defrauding Innkeeper,1,14009458CF10A,(F3),0,2014-07-10,Grand Theft in the 3rd Degree,2014-07-10,2014-12-11,,0,,,,,Risk of Recidivism,3,Low,2014-05-25,Risk of Violence,2,Low,2014-05-25,2014-07-10,2014-12-11,1,0,46,1,1\r\n1242,ruth fullerton,ruth,fullerton,2013-04-30,Female,1978-07-13,37,25 - 45,Other,0,1,0,0,0,-1,2013-04-29 04:02:06,2013-04-30 01:16:46,13008306MM10A,2013-04-29,,1,M,Battery,1,13009228MM10A,(M1),0,2013-05-13,Viol Injunct Domestic Violence,2013-05-13,2013-05-14,,0,,,,,Risk of Recidivism,1,Low,2013-04-30,Risk of Violence,1,Low,2013-04-30,2013-05-13,2013-05-14,0,0,13,1,1\r\n1243,sean claesgens,sean,claesgens,2013-02-20,Male,1972-08-02,43,25 - 45,Caucasian,0,1,0,0,0,0,2013-02-20 01:44:52,2013-02-20 06:58:59,13003542MM10A,2013-02-20,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-02-20,2013-02-20,0,0,1136,0,0\r\n1244,james stearns,james,stearns,2014-03-24,Male,1968-04-27,47,Greater than 45,Caucasian,0,4,0,0,2,-3,2014-03-21 01:08:20,2014-03-21 09:18:44,14004865CF10A,2014-03-20,,4,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-24,Risk of Violence,5,Medium,2014-03-24,2014-03-21,2014-03-21,2,0,739,0,0\r\n1246,akeem hyatt,akeem,hyatt,2014-02-23,Male,1990-08-14,25,25 - 45,African-American,0,6,0,0,3,0,2014-02-23 03:11:30,2014-02-25 04:19:24,14003146MM10A,2014-02-23,,0,M,Battery,1,15010628CF10A,(F3),,2014-12-31,False Ownership Info/Pawn Item,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-23,Risk of Violence,5,Medium,2014-02-23,2014-02-23,2014-02-25,3,2,311,1,1\r\n1247,keaira meilleur,keaira,meilleur,2013-05-17,Female,1992-07-28,23,Less than 25,African-American,0,3,0,0,1,-1,2013-05-16 06:54:16,2013-05-18 06:20:12,13007007CF10A,,2013-05-16,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-17,Risk of Violence,3,Low,2013-05-17,2013-05-16,2013-05-18,1,1,1050,0,0\r\n1248,mircea marton,mircea,marton,2013-09-04,Male,1976-06-07,39,25 - 45,Caucasian,0,2,0,0,2,-1,2013-09-03 11:32:26,2013-09-04 02:17:38,13016877MM10A,2013-09-03,,1,M,Battery,1,15063407TC40A,(M2),,2015-09-29,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-04,Risk of Violence,2,Low,2013-09-04,2013-09-03,2013-09-04,2,0,755,1,0\r\n1250,darryl yearby,darryl,yearby,2013-09-09,Male,1980-07-22,35,25 - 45,African-American,0,8,0,0,13,-1,2013-09-08 08:07:52,2013-09-13 09:19:10,13012699CF10A,2013-09-08,,1,F,Possession of Cocaine,1,14003990CF10A,(F3),1,2014-03-20,Possession of Cocaine,2014-03-21,2014-05-31,,0,,,,,Risk of Recidivism,8,High,2013-09-09,Risk of Violence,7,Medium,2013-09-09,2013-09-08,2013-09-13,13,4,192,1,1\r\n1252,emmanuel philogene,emmanuel,philogene,2013-08-21,Male,1982-12-18,33,25 - 45,Other,0,1,0,0,0,-1,2013-08-20 01:28:52,2013-08-21 07:36:34,13011699CF10A,,2013-08-20,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-21,Risk of Violence,2,Low,2013-08-21,2013-11-09,2013-11-26,0,0,80,0,0\r\n1253,romario james,romario,james,2013-03-31,Male,1995-01-02,21,Less than 25,Other,0,3,0,0,0,-1,2013-03-30 03:21:05,2013-03-31 07:12:30,13004601CF10A,2013-03-30,,1,F,Grand Theft of a Fire Extinquisher,1,13007664MM10A,(M2),0,2013-04-20,Prowling/Loitering,2013-04-20,2013-04-21,,1,15001010CF10A,(F1),2015-01-22,Robbery W/Firearm,Risk of Recidivism,3,Low,2013-03-31,Risk of Violence,7,Medium,2013-03-31,2013-04-20,2013-04-21,0,0,20,1,1\r\n1254,anthony freeman,anthony,freeman,2013-01-29,Male,1972-08-23,43,25 - 45,African-American,1,8,0,0,20,0,2013-01-29 02:25:12,2013-01-30 04:16:41,13002627CF10A,2013-01-29,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-29,Risk of Violence,4,Low,2013-01-29,2013-03-21,2013-04-13,20,1,51,0,0\r\n1255,derek mcnair,derek,mcnair,2013-08-15,Male,1991-03-30,25,25 - 45,African-American,0,8,1,1,3,-1,2013-08-14 07:48:42,2013-08-15 07:42:50,13011422CF10A,2013-08-14,,1,F,Fighting/Baiting Animals,1,14014319CF10A,(F3),,2014-08-19,Aggrav Stalking After Injunctn,,,,1,14014319CF10A,(F3),2014-08-29,Burglary With Assault/battery,Risk of Recidivism,8,High,2013-08-15,Risk of Violence,9,High,2013-08-15,2015-08-24,2015-09-02,3,0,369,1,1\r\n1256,john mcfadden,john,mcfadden,2014-03-19,Male,1968-01-03,48,Greater than 45,African-American,1,10,0,0,25,-1,2014-03-18 03:28:44,2014-03-24 11:54:07,14003785CF10A,,2014-03-18,1,F,arrest case no charge,1,14008632CF10A,(F1),-1,2014-06-21,Sexual Battery Victim 12 Yrs +,2014-06-20,2014-07-04,,1,14008632CF10A,(F2),2014-06-21,Agg Battery Grt/Bod/Harm,Risk of Recidivism,10,High,2014-03-19,Risk of Violence,9,High,2014-03-19,2014-04-06,2014-04-10,25,5,18,0,1\r\n1257,michael davis,michael,davis,2013-01-01,Male,1993-11-08,22,Less than 25,African-American,0,7,0,1,1,28,2013-01-29 05:28:37,2013-01-30 09:38:30,13000021MM10A,2012-12-31,,1,M,Battery,1,13001421CF10A,(F3),0,2013-01-29,Tampering With Physical Evidence,2013-01-29,2013-01-30,,1,15004778MM10A,(M1),2015-04-27,Battery,Risk of Recidivism,7,Medium,2013-01-01,Risk of Violence,9,High,2013-01-01,2013-01-29,2013-01-30,1,0,28,1,1\r\n1258,charles dixon,charles,dixon,2013-04-08,Male,1964-02-14,52,Greater than 45,African-American,1,8,0,0,9,-1,2013-04-07 05:45:06,2013-05-16 03:57:24,13006659MM10A,2013-04-07,,1,M,Battery,1,13008294CF10A,(F1),0,2013-06-11,Robbery / Weapon,2013-06-11,2013-10-29,,1,13008294CF10A,(F3),2013-06-11,Felony Battery w/Prior Convict,Risk of Recidivism,8,High,2013-04-08,Risk of Violence,2,Low,2013-04-08,2013-06-11,2013-10-29,9,38,64,1,1\r\n1259,philip milton,philip,milton,2014-09-09,Male,1990-02-22,26,25 - 45,Caucasian,0,4,0,0,5,-1,2014-09-08 04:18:58,2014-10-13 09:23:06,14012245CF10A,2014-09-08,,1,F,Possession of Cocaine,1,15006502CF10A,(F3),0,2015-05-19,Grand Theft in the 3rd Degree,2015-05-19,2015-06-02,,1,15010738CF10A,(F2),2015-08-19,Robbery / No Weapon,Risk of Recidivism,4,Low,2014-09-09,Risk of Violence,3,Low,2014-09-09,2015-01-07,2015-01-23,5,34,120,0,1\r\n1260,sandy shaw,sandy,shaw,2014-06-15,Male,1948-12-12,67,Greater than 45,African-American,0,7,0,0,4,-1,2014-06-14 11:48:52,2014-07-12 08:22:27,14008244CF10A,2014-06-14,,1,M,Grand Theft in the 3rd Degree,1,14012868MM10A,(M1),0,2014-07-31,Trespass/Property/Other Structure,2014-07-31,2014-08-19,,0,,,,,Risk of Recidivism,7,Medium,2014-06-15,Risk of Violence,7,Medium,2014-06-15,2014-07-31,2014-08-19,4,27,46,1,1\r\n1261,carl lovett,carl,lovett,2013-04-17,Male,1982-01-05,34,25 - 45,African-American,0,2,0,0,4,-1,2013-04-16 07:26:38,2013-04-17 07:39:37,11019592MM10A,,2013-04-16,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-17,Risk of Violence,2,Low,2013-04-17,2013-04-16,2013-04-17,4,0,1080,0,0\r\n1262,justin mccarthy,justin,mccarthy,2013-04-12,Male,1960-01-25,56,Greater than 45,Caucasian,0,1,0,0,4,-1,2013-04-11 02:03:09,2013-04-11 08:11:12,13006988MM10A,2013-04-10,,2,M,Disorderly Intoxication,1,15021106MU10A,(M1),0,2015-07-18,Driving Under The Influence,2015-07-18,2015-07-18,,0,,,,,Risk of Recidivism,1,Low,2013-04-12,Risk of Violence,1,Low,2013-04-12,2015-07-18,2015-07-18,4,0,827,0,0\r\n1268,terrence pitts,terrence,pitts,2013-03-31,Male,1987-08-12,28,25 - 45,African-American,0,4,0,0,1,-1,2013-03-30 05:46:06,2013-04-04 10:51:53,13004590CF10A,2013-03-29,,2,F,Possession of Cannabis,1,13013120CF10A,(F2),0,2013-09-17,Utilizing Juvenile to Deliver,2013-09-17,2014-03-01,,0,,,,,Risk of Recidivism,4,Low,2013-03-31,Risk of Violence,5,Medium,2013-03-31,2013-09-17,2014-03-01,1,4,170,1,1\r\n1269,christopher bowers,christopher,bowers,2014-01-03,Male,1986-09-27,29,25 - 45,African-American,0,4,0,0,2,-1,2014-01-02 08:25:01,2014-01-03 01:41:59,14000092MM10A,2014-01-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-03,Risk of Violence,5,Medium,2014-01-03,2014-01-02,2014-01-03,2,0,819,0,0\r\n1271,diana ajayi,diana,ajayi,2013-11-01,Female,1991-10-24,24,Less than 25,African-American,0,5,0,0,0,,,,,,,,M,,1,14077252TC30A,(M2),,2014-09-11,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-01,Risk of Violence,6,Medium,2013-11-01,2014-03-23,2014-03-24,0,0,142,0,1\r\n1272,christopher douglas,christopher,douglas,2014-10-20,Male,1978-11-29,37,25 - 45,African-American,0,5,0,0,6,-1,2014-10-19 07:36:23,2014-11-08 12:14:28,14014116CF10A,2014-10-19,,1,F,Felony Petit Theft,1,15000351MM20A,(M2),,2015-01-23,Petit Theft,,,,1,15002624MM10A,(M1),2015-03-04,Battery,Risk of Recidivism,5,Medium,2014-10-20,Risk of Violence,2,Low,2014-10-20,2014-12-07,2014-12-20,6,19,48,0,1\r\n1274,umar farooq,umar,farooq,2013-05-06,Male,1973-03-19,43,25 - 45,Other,0,2,0,0,3,-1,2013-05-05 07:01:38,2013-05-06 07:43:11,13006447CF10A,2013-05-05,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-06,Risk of Violence,2,Low,2013-05-06,2013-05-05,2013-05-06,3,0,1061,0,0\r\n1275,gregg diprima,gregg,diprima,2013-12-03,Male,1965-02-26,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-02 04:36:30,2013-12-03 10:21:46,13016672CF10A,2013-12-02,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-03,Risk of Violence,1,Low,2013-12-03,2013-12-02,2013-12-03,0,0,850,0,0\r\n1276,damani brown,damani,brown,2014-06-02,Male,1995-07-01,20,Less than 25,African-American,0,7,0,1,1,-2,2014-05-31 12:15:17,2014-06-01 08:19:06,14008700MM10A,2014-05-31,,2,M,Possess Cannabis/20 Grams Or Less,1,14012521CF10A,(F3),0,2014-09-15,Pos Cannabis W/Intent Sel/Del,2014-09-15,2014-09-19,,0,,,,,Risk of Recidivism,7,Medium,2014-06-02,Risk of Violence,7,Medium,2014-06-02,2014-09-15,2014-09-19,1,0,105,1,1\r\n1280,joseph griffith,joseph,griffith,2014-01-29,Male,1989-06-24,26,25 - 45,Caucasian,0,7,0,0,4,0,2014-01-29 04:01:47,2014-11-18 06:28:58,14001613MM10A,2014-01-29,,0,M,Viol Injunct Domestic Violence,1,15010666MM10A,(M1),,2015-10-11,Viol Injunct Domestic Violence,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-29,Risk of Violence,4,Low,2014-01-29,2014-11-18,2015-09-01,4,580,620,1,1\r\n1281,amy fisher,amy,fisher,2014-11-24,Female,1976-06-28,39,25 - 45,Caucasian,0,2,0,0,1,-1,2014-11-23 04:50:48,2014-12-03 05:11:12,14016695MM10A,2014-11-23,,1,M,Battery,1,15011047MO10A,(MO3),0,2015-10-22,Lewd/Assignation/Prostitution,2015-10-22,2015-10-23,,0,,,,,Risk of Recidivism,2,Low,2014-11-24,Risk of Violence,1,Low,2014-11-24,2015-10-22,2015-10-23,1,9,332,1,1\r\n1282,moise alceus,moise,alceus,2014-03-22,Male,1994-11-18,21,Less than 25,African-American,0,8,0,1,1,-1,2014-03-21 01:15:52,2014-03-23 04:21:27,14003834CF10A,,2014-03-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-22,Risk of Violence,7,Medium,2014-03-22,2014-03-21,2014-03-23,1,1,741,0,0\r\n1283,kenneth weekley,kenneth,weekley,2013-04-23,Male,1994-07-15,21,Less than 25,African-American,0,9,1,1,1,-1,2013-04-22 09:32:59,2013-04-25 03:58:52,13005749CF10A,2013-04-22,,1,F,Att Burgl Conv Occp,1,13010245MM10A,(M2),0,2013-05-28,Petit Theft,2013-05-28,2013-07-25,,0,,,,,Risk of Recidivism,9,High,2013-04-23,Risk of Violence,6,Medium,2013-04-23,2013-05-28,2013-07-25,1,2,35,1,1\r\n1286,shawn jaakson,shawn,jaakson,2013-04-06,Male,1991-06-21,24,Less than 25,Caucasian,0,4,2,0,3,-1,2013-04-05 07:02:50,2013-04-06 09:51:37,13004895CF10A,2013-04-05,,1,F,Driving While License Revoked,1,13010702MM10A,(M1),0,2013-05-22,Possess Cannabis/20 Grams Or Less,2013-05-22,2013-05-23,,0,,,,,Risk of Recidivism,4,Low,2013-04-06,Risk of Violence,4,Low,2013-04-06,2013-05-22,2013-05-23,3,0,46,1,1\r\n1290,steven coney,steven,coney,2013-04-06,Male,1989-08-02,26,25 - 45,African-American,0,8,1,0,4,-1,2013-04-05 06:54:28,2013-04-06 07:37:58,13006585MM10A,2013-04-05,,1,M,Battery,1,13025171TC10A,(M2),1,2013-05-26,Unlaw LicTag/Sticker Attach,2013-05-27,2013-05-28,,1,13018515MM10A,(M1),2013-09-29,Battery,Risk of Recidivism,8,High,2013-04-06,Risk of Violence,9,High,2013-04-06,2013-11-23,2013-11-24,4,0,50,1,1\r\n1292,anthony anello,anthony,anello,2013-05-28,Male,1968-01-19,48,Greater than 45,Caucasian,0,2,0,0,1,0,2013-05-28 05:20:53,2013-05-29 01:36:35,13007601CF10A,2013-05-28,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,1,Low,2013-05-28,2013-08-08,2013-09-11,1,1,72,0,0\r\n1293,zachary whalen,zachary,whalen,2014-03-29,Male,1991-09-03,24,Less than 25,African-American,0,5,1,0,5,-1,2014-03-28 08:28:57,2014-03-30 04:48:35,14004381CF10A,2014-03-28,,1,F,Pos Cannabis W/Intent Sel/Del,1,15016326CF10A,(M1),0,2015-12-22,,2015-12-22,2015-12-23,,0,,,,,Risk of Recidivism,5,Medium,2014-03-29,Risk of Violence,4,Low,2014-03-29,2015-12-22,2015-12-23,5,1,633,1,1\r\n1295,rhys swan,rhys,swan,2014-03-16,Male,1989-12-08,26,25 - 45,Caucasian,0,4,0,0,0,0,2014-03-16 01:47:02,2014-03-16 01:29:25,14003659CF10A,2014-03-16,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-16,Risk of Violence,3,Low,2014-03-16,2014-03-16,2014-03-16,0,0,747,0,0\r\n1296,darrin hill,darrin,hill,2013-09-06,Male,1969-11-14,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-09-05 08:34:14,2013-09-06 08:59:40,13012541CF10A,2013-09-05,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-05,2013-09-06,0,0,938,0,0\r\n1297,maria martinez,maria,martinez,2013-02-25,Female,1985-09-04,30,25 - 45,Hispanic,0,2,0,0,1,,,,13002754CF10A,2013-02-22,,3,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-25,Risk of Violence,2,Low,2013-02-25,,,1,0,1131,0,0\r\n1298,christopher mejia,christopher,mejia,2013-05-09,Male,1991-07-08,24,Less than 25,African-American,0,9,1,1,7,-1,2013-05-08 07:17:42,2013-05-09 08:54:08,13008923MM10A,2013-05-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-09,Risk of Violence,7,Medium,2013-05-09,2014-04-07,2014-04-17,7,0,333,0,0\r\n1300,stephanie jacobs,stephanie,jacobs,2013-04-30,Female,1995-01-06,21,Less than 25,Caucasian,0,5,0,0,0,-1,2013-04-29 05:05:43,2013-04-30 01:18:50,13008295MM10A,2013-04-29,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-30,Risk of Violence,7,Medium,2013-04-30,2013-04-29,2013-04-30,0,0,1067,0,0\r\n1303,travis joseph,travis,joseph,2013-01-09,Male,1991-05-25,24,Less than 25,African-American,0,3,0,0,1,-1,2013-01-08 01:30:33,2013-01-09 12:44:02,12013129CF10A,,2013-01-08,1,F,arrest case no charge,1,14006980MM10A,(M2),0,2014-04-27,Petit Theft,2014-04-27,2014-05-15,,0,,,,,Risk of Recidivism,3,Low,2013-01-09,Risk of Violence,5,Medium,2013-01-09,2014-04-27,2014-05-15,1,0,473,1,1\r\n1304,marques brinson,marques,brinson,2014-03-10,Male,1986-03-16,30,25 - 45,African-American,0,7,0,0,1,,,,12010613CF10A,,2012-07-19,599,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-10,Risk of Violence,5,Medium,2014-03-10,,,1,0,753,0,0\r\n1305,johnnie blade,johnnie,blade,2013-02-13,Male,1979-06-01,36,25 - 45,African-American,0,8,0,0,9,0,2013-02-13 12:13:45,2013-02-15 09:20:16,13003127MM10A,2013-02-12,,1,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-13,Risk of Violence,2,Low,2013-02-13,2014-02-11,2014-03-14,9,2,363,0,0\r\n1306,ronel desinor,ronel,desinor,2013-01-30,Male,1985-10-12,30,25 - 45,African-American,0,4,0,0,5,-1,2013-01-29 08:02:14,2013-01-30 09:05:26,13001423CF10A,2013-01-29,,1,F,Deliver Cocaine,1,13009034CF10A,(F6),51,2013-05-05,Murder in the First Degree,2013-06-25,2015-08-27,,1,13009034CF10A,(F6),2013-05-05,Murder in the First Degree,Risk of Recidivism,4,Low,2013-01-30,Risk of Violence,3,Low,2013-01-30,2015-08-27,2020-01-01,5,0,95,1,1\r\n1310,danielle slocum,danielle,slocum,2013-07-02,Female,1993-08-27,22,Less than 25,Caucasian,0,6,0,0,1,-23,2013-06-09 02:13:11,2013-06-11 01:19:51,13008181CF10A,2013-06-09,,23,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-02,Risk of Violence,7,Medium,2013-07-02,2015-01-07,2015-01-08,1,0,554,0,0\r\n1313,raphael ramos,raphael,ramos,2013-02-09,Male,1991-03-24,25,25 - 45,African-American,0,9,0,0,0,-1,2013-02-08 08:15:01,2013-02-18 08:07:07,13002002CF10A,2013-02-08,,1,F,Depriv LEO of Protect/Communic,1,13005513CF10A,(F3),0,2013-04-17,Threat Public Servant,2013-04-17,2013-05-08,,1,13005513CF10A,(F3),2013-04-17,Threat Public Servant,Risk of Recidivism,9,High,2013-02-09,Risk of Violence,8,High,2013-02-09,2013-04-17,2013-05-08,0,9,67,1,1\r\n1314,dwayne mcgill,dwayne,mcgill,2013-05-06,Male,1984-07-15,31,25 - 45,African-American,0,8,3,0,25,-1,2013-05-05 08:28:33,2013-08-31 05:37:04,13008676MM10A,2013-05-05,,1,M,Resist/Obstruct W/O Violence,1,14000226MM10A,(M1),0,2014-01-06,Resist/Obstruct W/O Violence,2014-01-06,2014-03-21,,0,,,,,Risk of Recidivism,8,High,2013-05-06,Risk of Violence,7,Medium,2013-05-06,2014-01-06,2014-03-21,25,117,245,1,1\r\n1315,dennis holmes,dennis,holmes,2013-04-25,Male,1992-02-05,24,Less than 25,African-American,0,4,0,0,0,-1,2013-04-24 04:48:41,2013-04-26 08:16:49,13005880CF10A,2013-04-24,,1,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-25,Risk of Violence,5,Medium,2013-04-25,2014-06-23,2014-07-29,0,1,424,0,0\r\n1318,rasean collier,rasean,collier,2013-09-25,Male,1976-08-20,39,25 - 45,African-American,0,8,0,0,13,-1,2013-09-24 05:14:32,2013-09-26 04:15:46,13013435CF10A,2013-09-24,,1,F,Burglary Conveyance Unoccup,1,15011067CF10A,(F3),,2015-05-03,Felony Battery w/Prior Convict,,,,1,15011067CF10A,(F3),2015-05-03,Felony Battery w/Prior Convict,Risk of Recidivism,8,High,2013-09-25,Risk of Violence,6,Medium,2013-09-25,2014-01-30,2014-01-30,13,1,127,0,1\r\n1320,mohammed ahmed,mohammed,ahmed,2013-09-20,Male,1969-11-28,46,Greater than 45,Other,0,1,0,0,0,-1,2013-09-19 09:16:58,2013-09-24 12:07:46,13013223CF10A,2013-09-19,,1,F,Delivery of 5-Fluoro PB-22,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-12-04,2013-12-05,0,4,75,0,0\r\n1321,freddie bush,freddie,bush,2013-01-02,Male,1967-07-31,48,Greater than 45,African-American,0,1,0,0,5,,,,12026154MM10A,2012-12-24,,9,M,Open Carrying Of Weapon,1,14005304TC10A,(M1),,2014-01-26,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-02,Risk of Violence,2,Low,2013-01-02,,,5,0,389,1,1\r\n1323,marquita weal,marquita,weal,2013-03-06,Female,1985-12-02,30,25 - 45,African-American,0,3,0,0,4,-5,2013-03-01 09:18:41,2013-03-02 01:22:32,13003141CF10A,2013-03-01,,5,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-06,Risk of Violence,3,Low,2013-03-06,2013-03-14,2013-03-15,4,0,8,0,0\r\n1324,daniele santos,daniele,santos,2013-04-10,Male,1976-04-16,40,25 - 45,Caucasian,0,2,0,0,0,0,2013-04-10 01:58:49,2013-05-02 08:37:47,13005196CF10A,2013-04-10,,0,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,1,Low,2013-04-10,2013-04-10,2013-05-02,0,22,1087,0,0\r\n1325,deneen brown,deneen,brown,2014-01-17,Female,1964-04-19,52,Greater than 45,African-American,0,1,0,0,0,-1,2014-01-16 01:59:29,2014-01-18 12:04:19,14000711CF10A,2014-01-16,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-17,Risk of Violence,1,Low,2014-01-17,2014-01-16,2014-01-18,0,1,805,0,0\r\n1326,garfield sewell,garfield,sewell,2013-01-31,Male,1992-09-09,23,Less than 25,African-American,1,9,0,1,3,-1,2013-01-30 10:05:42,2013-03-05 01:14:58,13001476CF10A,2013-01-30,,1,F,Grand Theft Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-31,Risk of Violence,10,High,2013-01-31,2015-10-13,2015-12-07,3,33,985,0,0\r\n1328,dyesha coleman,dyesha,coleman,2013-09-09,Female,1989-09-07,26,25 - 45,African-American,0,2,0,0,1,-1,2013-09-08 05:10:12,2013-09-09 08:57:08,13017087MM10A,2013-09-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-09,Risk of Violence,2,Low,2013-09-09,2013-09-08,2013-09-09,1,0,935,0,0\r\n1329,jonathan christman,jonathan,christman,2013-08-28,Male,1994-03-29,22,Less than 25,Caucasian,0,8,1,0,1,-1,2013-08-27 07:41:51,2013-09-16 06:38:04,13012104CF10A,2013-08-27,,1,F,Grand Theft in the 3rd Degree,1,15005498MM10A,(M1),0,2015-05-19,Resist/Obstruct W/O Violence,2015-05-19,2015-11-13,,0,,,,,Risk of Recidivism,8,High,2013-08-28,Risk of Violence,6,Medium,2013-08-28,2013-11-15,2013-11-26,1,19,79,0,1\r\n1330,thomas herring,thomas,herring,2013-01-27,Male,1973-04-23,42,25 - 45,Caucasian,0,4,0,0,3,0,2013-01-27 05:19:10,2013-01-28 02:50:43,13001324CF10A,2013-01-27,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-27,Risk of Violence,2,Low,2013-01-27,2015-11-23,2015-11-30,3,1,1030,0,0\r\n1331,jamal smart,jamal,smart,2013-04-23,Male,1992-07-13,23,Less than 25,African-American,0,10,3,1,6,-1,2013-04-22 07:18:14,2013-09-05 06:32:22,13005739CF10A,2013-04-22,,1,F,Burglary Conveyance Unoccup,1,16000775CF10A,(F3),0,2016-01-19,Grand Theft in the 3rd Degree,2016-01-19,2016-01-21,,0,,,,,Risk of Recidivism,10,High,2013-04-23,Risk of Violence,6,Medium,2013-04-23,2016-01-19,2016-01-21,6,666,1001,1,1\r\n1332,william gray,william,gray,2014-01-24,Male,1982-11-01,33,25 - 45,Other,0,3,0,0,4,-1,2014-01-23 08:20:35,2014-01-25 04:12:43,14000976CF10A,2014-01-23,,1,F,Pos Cannabis For Consideration,1,14009439CF10A,(F3),0,2014-03-23,\"Poss3,4 Methylenedioxymethcath\",2014-03-23,2014-03-23,,0,,,,,Risk of Recidivism,3,Low,2014-01-24,Risk of Violence,2,Low,2014-01-24,2014-03-23,2014-03-23,4,1,58,0,1\r\n1334,jeffery holston,jeffery,holston,2014-01-14,Male,1987-06-20,28,25 - 45,African-American,0,3,0,0,1,-1,2014-01-13 07:36:34,2014-01-15 11:05:00,14000564CF10A,,2014-01-13,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-14,Risk of Violence,2,Low,2014-01-14,2014-01-13,2014-01-15,1,1,808,0,0\r\n1335,jacquelyn park,jacquelyn,park,2013-02-26,Female,1979-03-14,37,25 - 45,Caucasian,0,4,0,0,4,,,,12019905MM10A,2012-09-25,,154,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-26,Risk of Violence,2,Low,2013-02-26,,,4,0,1130,0,0\r\n1336,sam mitchell,sam,mitchell,2013-03-16,Male,1965-07-26,50,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-03-15 07:13:52,2013-03-16 09:30:06,13003328CF10A,2010-11-20,,847,F,Crim Use of Personal ID Info,1,15020844TC20A,(M2),,2015-04-01,Expired DL More Than 6 Months,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-16,Risk of Violence,1,Low,2013-03-16,2013-03-15,2013-03-16,1,0,746,1,0\r\n1341,patrick doctor,patrick,doctor,2013-10-25,Male,1978-01-17,38,25 - 45,Native American,0,10,0,1,25,-172,2013-05-06 03:29:46,2013-05-14 09:41:10,13008752MM10A,2013-05-06,,172,M,Assault,1,14016591CF10A,(F3),1,2014-12-14,Possession of Cocaine,2014-12-15,2014-12-20,,0,,,,,Risk of Recidivism,10,High,2013-10-25,Risk of Violence,7,Medium,2013-10-25,2014-12-29,2015-01-06,25,0,415,1,1\r\n1342,tony woodberry,tony,woodberry,2014-03-01,Male,1983-12-01,32,25 - 45,African-American,0,7,0,0,1,-1,2014-02-28 05:05:08,2014-03-01 10:44:41,14000591CF10A,,2014-02-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-01,Risk of Violence,2,Low,2014-03-01,2014-02-28,2014-03-01,1,0,762,0,0\r\n1343,charlie reyes,charlie,reyes,2014-02-23,Male,1992-02-02,24,Less than 25,Hispanic,0,6,0,0,3,-1,2014-02-22 06:42:04,2014-05-31 05:40:39,14002548CF10A,2014-02-22,,1,F,Burglary Conveyance Unoccup,1,15006682MM10A,(M2),0,2015-06-21,Trespass Structure/Conveyance,2015-06-21,2015-07-09,,0,,,,,Risk of Recidivism,6,Medium,2014-02-23,Risk of Violence,6,Medium,2014-02-23,2015-06-21,2015-07-09,3,97,483,1,1\r\n1344,daryle mckever,daryle,mckever,2014-01-29,Male,1964-05-11,51,Greater than 45,African-American,0,2,0,0,3,-1,2014-01-28 04:06:13,2014-01-29 09:09:45,14001238CF10A,2014-01-28,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-29,Risk of Violence,1,Low,2014-01-29,2014-01-28,2014-01-29,3,0,793,0,0\r\n1345,anthony macias,anthony,macias,2014-08-01,Male,1996-06-03,19,Less than 25,Caucasian,0,4,0,0,1,-1,2014-07-31 10:29:36,2014-08-01 01:52:23,14011663MM10A,2014-07-31,,1,M,Battery,1,14014337CF10A,(F3),1,2014-10-23,Possession Of Alprazolam,2014-10-24,2014-10-24,,0,,,,,Risk of Recidivism,4,Low,2014-08-01,Risk of Violence,7,Medium,2014-08-01,2016-03-04,2016-03-05,1,0,83,1,1\r\n1346,xavier copeland,xavier,copeland,2013-10-22,Male,1983-11-13,32,25 - 45,African-American,0,5,0,0,4,0,2013-10-22 04:13:12,2014-02-07 04:46:43,13014764CF10A,,2013-10-22,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-22,Risk of Violence,2,Low,2013-10-22,2013-10-22,2014-02-07,4,108,892,0,0\r\n1347,heather terjesen,heather,terjesen,2013-08-02,Female,1984-09-13,31,25 - 45,Caucasian,0,3,0,0,1,-22,2013-07-11 01:09:16,2013-07-11 07:24:20,13009653CF10A,2013-07-10,,23,F,Possession of Cocaine,1,13019400MM10A,(M1),0,2013-10-13,Driving Under The Influence,2013-10-13,2013-10-13,,0,,,,,Risk of Recidivism,3,Low,2013-08-02,Risk of Violence,3,Low,2013-08-02,2013-10-13,2013-10-13,1,0,72,0,1\r\n1348,nikesha young,nikesha,young,2013-08-14,Female,1986-05-04,29,25 - 45,African-American,0,5,0,0,1,7,2013-08-21 12:34:09,2014-02-17 03:11:38,10002822CF10A,,2013-03-21,146,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-14,Risk of Violence,4,Low,2013-08-14,2013-08-21,2014-02-17,1,0,7,0,0\r\n1349,armando frias,armando,frias,2013-09-21,Male,1972-04-30,43,25 - 45,Hispanic,0,1,0,0,0,-1,2013-09-20 10:07:27,2013-09-21 08:40:20,13017971MM10A,2013-09-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-21,Risk of Violence,1,Low,2013-09-21,2013-09-20,2013-09-21,0,0,923,0,0\r\n1351,dionte moore,dionte,moore,2013-01-30,Male,1989-12-28,26,25 - 45,African-American,0,7,0,0,9,-1,2013-01-29 07:56:52,2013-02-09 12:41:02,13001410CF10A,2013-01-29,,1,F,Driving While License Revoked,1,13014307MM10A,(M1),1,2013-07-28,Battery,2013-07-29,2013-09-17,,1,13014307MM10A,(M1),2013-07-28,Battery,Risk of Recidivism,7,Medium,2013-01-30,Risk of Violence,7,Medium,2013-01-30,2013-04-30,2013-05-14,9,10,90,0,1\r\n1352,steven mcafee,steven,mcafee,2013-02-05,Male,1989-02-11,27,25 - 45,Caucasian,0,10,0,0,0,-1,2013-02-04 11:00:16,2013-03-04 05:47:34,13001734CF10A,2013-02-04,,1,F,Uttering Forged Bills,1,13014056CF10A,(F1),0,2013-10-07,Trafficking In Cocaine 28><200,2013-10-07,2014-03-27,,0,,,,,Risk of Recidivism,10,High,2013-02-05,Risk of Violence,5,Medium,2013-02-05,2013-10-07,2014-03-27,0,27,244,1,1\r\n1353,charles cavey,charles,cavey,2014-12-02,Male,1963-06-24,52,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-12-01 08:42:05,2014-12-04 08:50:02,14016019CF10A,2014-12-01,,1,F,Burglary Conveyance Unoccup,1,15000140CF10A,(F3),0,2015-01-04,Burglary Conveyance Unoccup,2015-01-04,2015-02-20,,0,,,,,Risk of Recidivism,1,Low,2014-12-02,Risk of Violence,1,Low,2014-12-02,2015-01-04,2015-02-20,1,2,33,1,1\r\n1354,hector contreras,hector,contreras,2014-03-03,Male,1989-02-11,27,25 - 45,Hispanic,0,1,0,0,1,-1,2014-03-02 07:59:01,2014-03-03 02:03:23,11007679TC40A,2011-02-04,,1123,M,Expired DL More Than 6 Months,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,2,Low,2014-03-03,2014-03-02,2014-03-03,1,0,760,0,0\r\n1356,gina paez,gina,paez,2013-05-13,Female,1958-07-28,57,Greater than 45,Hispanic,0,2,0,0,1,-1,2013-05-12 10:44:04,2013-05-13 01:07:10,13009141MM10A,2013-05-05,,8,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-12,2013-05-13,1,0,1054,0,0\r\n1358,willie smith,willie,smith,2013-02-17,Male,1988-01-02,28,25 - 45,African-American,0,6,0,0,3,-1,2013-02-16 06:36:46,2013-02-18 02:26:09,12026166MM10A,,2013-02-16,1,M,arrest case no charge,1,13002838CF10A,(F2),0,2013-02-24,Burglary Unoccupied Dwelling,2013-02-24,2013-04-24,,0,,,,,Risk of Recidivism,6,Medium,2013-02-17,Risk of Violence,3,Low,2013-02-17,2013-02-24,2013-04-24,3,1,7,1,1\r\n1360,michelet orisme,michelet,orisme,2013-11-19,Male,1983-07-20,32,25 - 45,African-American,0,1,0,0,3,-1,2013-11-18 10:28:15,2013-11-21 05:15:36,13016023CF10A,2013-11-18,,1,F,Burglary Unoccupied Dwelling,1,14044073TC20A,(M2),,2014-06-10,Unlaw LicTag/Sticker Attach,,,,1,15004977CF10A,(F3),2015-03-29,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2013-11-19,Risk of Violence,2,Low,2013-11-19,2013-11-18,2013-11-21,3,2,203,1,1\r\n1361,allen wyche,allen,wyche,2013-05-16,Male,1988-08-07,27,25 - 45,African-American,0,3,0,0,5,0,2013-05-16 02:29:24,2013-05-16 08:42:12,13022696TC10A,2013-05-04,,12,M,Expired DL More Than 6 Months,1,14006453TC30A,(M2),89,2014-01-13,Driving License Suspended,2014-04-12,2014-04-13,,0,,,,,Risk of Recidivism,3,Low,2013-05-16,Risk of Violence,2,Low,2013-05-16,2016-03-14,2016-03-22,5,0,242,1,1\r\n1363,jose villalta,jose,villalta,2013-10-05,Male,1971-03-19,45,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-10-04 01:33:39,2013-10-07 09:18:39,13018918MM10A,2013-10-04,,1,M,Stalking,1,14006324TC10A,(M2),,2014-01-21,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-05,Risk of Violence,1,Low,2013-10-05,2013-10-04,2013-10-07,0,2,108,1,1\r\n1366,nora demmert,nora,demmert,2013-11-19,Female,1973-10-30,42,25 - 45,Caucasian,0,1,0,0,0,0,2013-11-19 03:21:39,2013-11-19 08:57:44,13021759MM10A,2013-11-19,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-19,Risk of Violence,1,Low,2013-11-19,2013-11-19,2013-11-19,0,0,864,0,0\r\n1367,walker lovinsky,walker,lovinsky,2014-03-02,Male,1983-04-13,33,25 - 45,African-American,0,2,0,0,0,-1,2014-03-01 04:48:17,2014-03-02 03:58:29,14002918CF10A,2014-03-01,,1,F,Felony Driving While Lic Suspd,1,15003040CF10A,(F3),0,2015-03-04,Possession of Cannabis,2015-03-04,2015-03-05,,0,,,,,Risk of Recidivism,2,Low,2014-03-02,Risk of Violence,1,Low,2014-03-02,2015-03-04,2015-03-05,0,0,367,1,1\r\n1368,anthony grab,anthony,grab,2013-07-03,Male,1989-07-31,26,25 - 45,Caucasian,0,4,0,0,4,-52,2013-05-12 05:57:19,2013-05-31 06:08:17,13009157MM10A,2013-05-12,,52,M,Battery,1,15010874CF10A,(M1),0,2015-08-23,Refuse Submit Blood/Breath Test,2015-08-23,2015-08-25,,1,15010874CF10A,(F2),2015-08-23,Agg Fleeing/Eluding High Speed,Risk of Recidivism,4,Low,2013-07-03,Risk of Violence,4,Low,2013-07-03,2015-08-23,2015-08-25,4,0,781,1,0\r\n1369,amanda johnson,amanda,johnson,2014-01-30,Female,1987-12-09,28,25 - 45,Caucasian,0,4,0,1,3,-1,2014-01-29 03:14:43,2014-03-15 05:32:38,14001614MM10A,2014-01-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-30,Risk of Violence,3,Low,2014-01-30,2014-01-29,2014-03-15,3,44,792,0,0\r\n1370,theresa brooks,theresa,brooks,2013-12-09,Female,1963-01-13,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-08 05:37:02,2013-12-09 02:01:16,13022709MM10A,2013-12-08,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,1,Low,2013-12-09,2013-12-08,2013-12-09,0,0,844,0,0\r\n1372,diego fernandez,diego,fernandez,2013-04-13,Male,1992-01-19,24,Less than 25,Caucasian,0,2,0,0,0,-1,2013-04-12 04:15:18,2013-04-13 04:49:36,13005316CF10A,2013-04-12,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-13,Risk of Violence,3,Low,2013-04-13,2013-04-12,2013-04-13,0,0,1084,0,0\r\n1375,roberto hernandez-castro,roberto,hernandez-castro,2013-02-05,Male,1987-05-07,28,25 - 45,Hispanic,0,2,0,0,1,-9,2013-01-27 07:59:24,2013-02-05 01:27:22,13001342CF10A,2013-01-27,,9,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-05,Risk of Violence,2,Low,2013-02-05,2013-01-27,2013-02-05,1,0,1151,0,0\r\n1376,william arenas,william,arenas,2013-12-07,Male,1987-09-26,28,25 - 45,Hispanic,0,5,0,0,1,-1,2013-12-06 10:35:46,2013-12-08 02:23:57,13016897CF10A,2013-12-06,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-07,Risk of Violence,4,Low,2013-12-07,2014-01-30,2014-01-31,1,1,54,0,0\r\n1377,gregory sanders,gregory,sanders,2013-02-03,Male,1977-01-10,39,25 - 45,African-American,0,7,0,1,6,-1,2013-02-02 11:58:09,2013-03-10 05:23:46,13002377MM10A,2013-02-02,,1,M,Disorderly Conduct,1,13006256CF10A,(F3),0,2013-05-01,Possession of Cocaine,2013-05-01,2014-08-14,,0,,,,,Risk of Recidivism,7,Medium,2013-02-03,Risk of Violence,4,Low,2013-02-03,2013-05-01,2014-08-14,6,35,87,1,1\r\n1379,james rogers,james,rogers,2013-12-07,Male,1993-12-21,22,Less than 25,African-American,0,7,0,0,1,0,2013-12-07 12:29:20,2013-12-07 07:33:19,13016885CF10A,2013-12-06,,1,F,Possession of Cocaine,1,14000607MM40A,(M1),144,2013-12-27,Trespass Other Struct/Conve,2014-05-20,2014-06-03,,0,,,,,Risk of Recidivism,7,Medium,2013-12-07,Risk of Violence,6,Medium,2013-12-07,2015-09-04,2015-11-01,1,0,20,1,1\r\n1380,tony harris,tony,harris,2013-01-22,Male,1969-06-14,46,Greater than 45,African-American,0,2,0,0,2,0,2013-01-22 02:31:25,2013-01-31 09:56:34,13001055CF10A,2013-01-22,,0,F,Grand Theft in the 3rd Degree,1,13005810CF10A,(F2),1,2013-04-23,False Ownership Info/Pawn Item,2013-04-24,2013-05-18,,0,,,,,Risk of Recidivism,2,Low,2013-01-22,Risk of Violence,2,Low,2013-01-22,2013-01-22,2013-01-31,2,9,91,1,1\r\n1382,leon hatcher,leon,hatcher,2013-12-06,Male,1991-03-08,25,25 - 45,African-American,0,2,0,0,0,0,2013-12-06 03:45:12,2013-12-07 09:02:36,13022645MM10A,2013-12-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-06,Risk of Violence,4,Low,2013-12-06,2013-12-06,2013-12-07,0,1,847,0,0\r\n1384,willis weber,willis,weber,2013-08-22,Male,1963-10-04,52,Greater than 45,Caucasian,0,5,0,0,1,-5,2013-08-17 11:01:00,2013-08-21 09:42:10,99013179CF10A,,2000-10-13,4696,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-22,Risk of Violence,3,Low,2013-08-22,2013-08-17,2013-08-21,1,0,953,0,0\r\n1385,christopher harris,christopher,harris,2013-11-20,Male,1988-03-22,28,25 - 45,African-American,0,2,0,0,4,-1,2013-11-19 09:37:06,2013-11-20 08:36:56,13021767MM10A,2013-11-19,,1,M,Battery,1,13017293CF10A,(M1),4,2013-12-10,Burglary Dwelling Assault/Batt,2013-12-14,2014-06-23,,1,13017293CF10A,(M1),2013-12-10,Burglary Dwelling Assault/Batt,Risk of Recidivism,2,Low,2013-11-20,Risk of Violence,3,Low,2013-11-20,2013-12-14,2014-06-23,4,0,20,1,1\r\n1388,catherine manarite,catherine,manarite,2013-02-22,Female,1959-01-31,57,Greater than 45,Caucasian,0,1,0,0,1,-4,2013-02-18 08:10:17,2013-02-20 06:58:02,13002483CF10A,2013-02-18,,4,F,Possession of Cocaine,1,14030120TC40A,(M2),,2014-05-02,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-22,Risk of Violence,1,Low,2013-02-22,2013-02-18,2013-02-20,1,0,434,1,1\r\n1393,kim mcconn,kim,mcconn,2014-01-13,Male,1967-03-05,49,Greater than 45,African-American,0,1,0,0,3,-1,2014-01-12 11:20:32,2014-01-13 08:21:27,13017666CF10A,,2014-01-12,1,F,arrest case no charge,1,14013682CF10A,(F3),,2014-10-10,Obtain Control Substance By Fraud,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-01-12,2014-01-13,3,0,270,1,1\r\n1395,breon clark,breon,clark,2014-08-04,Male,1994-04-21,21,Less than 25,African-American,0,9,0,0,2,-1,2014-08-03 02:26:32,2014-08-04 01:34:32,14010574CF10A,2014-08-03,,1,F,Possession of Cocaine,1,14012837CF10A,(F3),0,2014-09-22,Tamper With Victim,2014-09-22,2014-10-11,,1,14012837CF10A,(F3),2014-09-22,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2014-08-04,Risk of Violence,6,Medium,2014-08-04,2014-09-22,2014-10-11,2,0,49,1,1\r\n1396,jerry byrd,jerry,byrd,2014-02-11,Male,1983-11-11,32,25 - 45,African-American,0,10,0,0,19,-1,2014-02-10 06:04:29,2014-02-25 05:50:02,14001892CF10A,2014-02-10,,1,F,Possession of Cocaine,1,14009086CF10A,(F3),,2014-07-01,Poss Pyrrolidinovalerophenone,,,,1,14013915CF10A,(F3),2014-10-15,Battery on Law Enforc Officer,Risk of Recidivism,10,High,2014-02-11,Risk of Violence,10,High,2014-02-11,2014-02-10,2014-02-25,19,14,140,1,1\r\n1397,marion scriven,marion,scriven,2013-03-12,Male,1952-06-08,63,Greater than 45,African-American,0,9,0,0,3,-1,2013-03-11 01:34:23,2013-10-17 05:14:49,06023809MM10A,2006-11-22,,2302,M,Trespass Structure/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-03-11,2013-10-17,3,219,1116,0,0\r\n1399,james dean,james,dean,2013-01-22,Male,1986-11-21,29,25 - 45,Caucasian,0,3,0,0,2,0,2013-01-22 12:12:24,2013-01-24 11:34:19,13000988CF10A,2013-01-21,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-22,Risk of Violence,3,Low,2013-01-22,2013-01-22,2013-01-24,2,2,1165,0,0\r\n1402,darril wilson,darril,wilson,2013-09-21,Male,1969-10-06,46,Greater than 45,African-American,0,1,0,0,0,0,2013-09-21 04:23:43,2013-09-22 07:45:05,13018026MM10A,2013-09-21,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-21,Risk of Violence,1,Low,2013-09-21,2013-09-21,2013-09-22,0,1,923,0,0\r\n1403,patrick foy,patrick,foy,2013-10-11,Male,1993-02-10,23,Less than 25,African-American,0,10,0,0,5,-45,2013-08-27 09:03:34,2013-10-11 05:43:45,13011599CF10A,,2013-08-27,45,F,arrest case no charge,1,13017258CF10A,(M1),0,2013-12-13,Resist/Obstruct W/O Violence,2013-12-13,2014-01-15,,1,13017258CF10A,(M1),2013-12-13,Battery,Risk of Recidivism,10,High,2013-10-11,Risk of Violence,8,High,2013-10-11,2013-12-13,2014-01-15,5,0,63,1,1\r\n1408,billy darby,billy,darby,2014-02-06,Male,1988-01-15,28,25 - 45,African-American,0,7,0,0,10,-1,2014-02-05 05:37:05,2014-02-06 09:10:24,14002042MM10A,2014-02-05,,1,M,Battery,1,14026623TC40A,(M2),85,2014-04-15,Driving License Suspended,2014-07-09,2014-07-18,,0,,,,,Risk of Recidivism,7,Medium,2014-02-06,Risk of Violence,5,Medium,2014-02-06,2014-09-15,2014-09-24,10,0,68,1,1\r\n1410,derrick dismuke,derrick,dismuke,2013-11-04,Male,1988-06-04,27,25 - 45,African-American,0,2,0,0,1,-3,2013-11-01 07:50:16,2013-11-04 10:41:00,12002308CF10A,,2013-11-01,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-04,Risk of Violence,3,Low,2013-11-04,2015-06-17,2015-06-24,1,0,590,0,0\r\n1411,leonor ramirez,leonor,ramirez,2014-02-17,Female,1946-05-22,69,Greater than 45,Hispanic,0,1,0,0,0,0,2014-02-17 12:41:46,2014-02-17 10:01:43,14006018MU10A,2014-02-16,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-17,Risk of Violence,1,Low,2014-02-17,2014-02-17,2014-02-17,0,0,774,0,0\r\n1412,jorge castaneda,jorge,castaneda,2014-03-31,Male,1969-03-26,47,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-03-30 07:29:05,2014-03-31 08:24:40,14005457MM10A,2014-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-30,2014-03-31,0,0,732,0,0\r\n1418,elvis duran,elvis,duran,2013-05-15,Male,1970-05-18,45,Greater than 45,Hispanic,0,3,0,0,1,-1,2013-05-14 03:08:49,2013-09-19 05:01:54,13006893CF10A,2013-05-14,,1,F,Sex Offender Fail Comply W/Law,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-15,Risk of Violence,3,Low,2013-05-15,2013-05-14,2013-09-19,1,127,1052,0,0\r\n1419,consuelo mella,consuelo,mella,2014-01-24,Female,1982-12-22,33,25 - 45,Caucasian,0,1,0,0,1,0,2014-01-24 02:49:16,2014-01-24 09:38:22,14001387MM10A,2014-01-24,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-24,Risk of Violence,1,Low,2014-01-24,2014-01-24,2014-01-24,1,0,798,0,0\r\n1422,maryuri zamora,maryuri,zamora,2014-03-11,Female,1988-10-11,27,25 - 45,Hispanic,0,2,0,0,0,0,2014-03-11 03:58:28,2014-03-12 03:30:38,14004251MM10A,2014-03-11,,0,M,Battery,1,15026648TC40A,(M2),,2015-02-18,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-11,Risk of Violence,2,Low,2014-03-11,2014-03-11,2014-03-12,0,1,344,1,1\r\n1424,richard klim,richard,klim,2013-07-02,Male,1968-08-30,47,Greater than 45,Caucasian,0,5,0,0,4,-58,2013-05-05 01:36:26,2013-06-06 09:13:22,13006437CF10A,2013-05-04,,59,F,Battery Emergency Care Provide,1,15003309CF10A,(F2),0,2015-03-11,Burglary Unoccupied Dwelling,2015-03-11,2015-04-13,,0,,,,,Risk of Recidivism,5,Medium,2013-07-02,Risk of Violence,6,Medium,2013-07-02,2015-03-11,2015-04-13,4,0,617,1,1\r\n1427,clinton mccutcheon,clinton,mccutcheon,2013-05-10,Male,1983-05-09,32,25 - 45,African-American,0,9,0,0,14,-1,2013-05-09 03:22:53,2013-05-11 05:44:32,13006678CF10A,2013-05-09,,1,F,Grand Theft (Motor Vehicle),1,14012056MM10A,(M1),0,2014-08-09,Possess Cannabis/20 Grams Or Less,2014-08-09,2014-08-10,,1,15015672CF10A,(F2),2015-12-07,Throw Deadly Missile Into Veh,Risk of Recidivism,9,High,2013-05-10,Risk of Violence,6,Medium,2013-05-10,2014-06-27,2014-07-01,14,1,413,0,1\r\n1428,joshua frazier,joshua,frazier,2013-05-21,Male,1991-04-21,24,Less than 25,African-American,0,7,0,0,2,-1,2013-05-20 04:06:09,2013-05-21 07:18:03,13007199CF10A,2013-05-20,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-21,Risk of Violence,5,Medium,2013-05-21,2014-04-03,2014-04-04,2,0,317,0,0\r\n1429,guyrson maddy,guyrson,maddy,2014-10-31,Male,1989-06-28,26,25 - 45,African-American,0,10,0,0,5,-1,2014-10-30 06:16:15,2014-11-02 09:35:14,14014579CF10A,2014-10-30,,1,F,Felony Driving While Lic Suspd,1,15001465MM10A,(M2),,2015-01-17,DWLS/License Susp/Revoked,,,,0,,,,,Risk of Recidivism,10,High,2014-10-31,Risk of Violence,8,High,2014-10-31,2014-10-30,2014-11-02,5,2,78,1,1\r\n1430,carlos mejia,carlos,mejia,2013-10-07,Male,1969-01-25,47,Greater than 45,Hispanic,0,4,0,0,0,-4,2013-10-03 01:34:28,2013-10-04 09:18:53,13018838MM10A,2013-10-03,,4,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-10-03,2013-10-04,0,0,907,0,0\r\n1431,thomas purvis,thomas,purvis,2014-03-05,Male,1990-11-04,25,25 - 45,Caucasian,0,5,0,0,1,-1,2014-03-04 08:15:39,2014-03-05 08:39:30,14003063CF10A,2014-03-04,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-05,Risk of Violence,3,Low,2014-03-05,2014-11-17,2014-11-24,1,0,257,0,0\r\n1433,destin ross,destin,ross,2013-11-23,Male,1995-02-28,21,Less than 25,African-American,0,8,0,0,1,-1,2013-11-22 12:16:41,2014-03-11 01:05:27,13016233CF10A,2013-11-22,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-23,Risk of Violence,7,Medium,2013-11-23,2013-11-22,2014-03-11,1,108,860,0,0\r\n1435,anthony edie,anthony,edie,2014-03-12,Male,1990-05-02,25,25 - 45,African-American,0,2,0,0,2,-1,2014-03-11 03:22:56,2014-03-12 01:31:40,14004249MM10A,2014-03-11,,1,M,Battery,1,15000038MM40A,(M1),,2014-11-20,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-12,Risk of Violence,3,Low,2014-03-12,2014-03-11,2014-03-12,2,0,253,1,1\r\n1436,kashema dawkins,kashema,dawkins,2014-07-23,Male,1993-10-06,22,Less than 25,African-American,1,7,1,0,6,-1,2014-07-22 03:12:05,2014-07-24 06:06:22,14010014CF10A,,2014-07-22,1,F,arrest case no charge,1,14015889MM10A,(M1),0,2014-11-03,Battery,2014-11-03,2014-11-04,,1,14015889MM10A,(M1),2014-11-03,Battery,Risk of Recidivism,7,Medium,2014-07-23,Risk of Violence,5,Medium,2014-07-23,2014-11-03,2014-11-04,6,1,103,1,1\r\n1438,jennifer brown,jennifer,brown,2013-01-17,Female,1989-05-04,26,25 - 45,Caucasian,0,6,0,0,0,-1,2013-01-16 04:30:06,2013-01-17 03:36:21,13000765CF10A,2013-01-16,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-17,Risk of Violence,6,Medium,2013-01-17,2013-01-16,2013-01-17,0,0,1170,0,0\r\n1439,adrian mendieta,adrian,mendieta,2014-03-11,Male,1995-08-24,20,Less than 25,Caucasian,0,4,0,0,0,-1,2014-03-10 03:13:49,2014-03-11 10:33:16,14003382CF10A,2014-03-10,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-11,Risk of Violence,6,Medium,2014-03-11,2014-03-10,2014-03-11,0,0,752,0,0\r\n1441,dominique smith,dominique,smith,2014-11-28,Male,1986-01-08,30,25 - 45,African-American,0,5,0,0,1,-1,2014-11-27 03:53:08,2014-11-29 03:20:54,14016854MM10A,2014-11-27,,1,M,Battery,1,15010651MM10A,(M2),0,2015-10-11,Trespass Struct/Conveyance,2015-10-11,2015-10-12,,0,,,,,Risk of Recidivism,5,Medium,2014-11-28,Risk of Violence,3,Low,2014-11-28,2015-10-11,2015-10-12,1,1,317,1,1\r\n1443,felipe pagan,felipe,pagan,2013-09-09,Male,1970-12-01,45,Greater than 45,African-American,0,5,0,0,0,-3,2013-09-06 10:17:41,2013-09-07 12:47:10,13012605CF10A,2013-09-06,,3,F,Possession of Morphine,1,14001763MM10A,(M1),1,2014-02-01,Possess Cannabis/20 Grams Or Less,2014-02-02,2014-04-25,,0,,,,,Risk of Recidivism,5,Medium,2013-09-09,Risk of Violence,4,Low,2013-09-09,2014-02-02,2014-04-25,0,0,145,1,1\r\n1445,ernest ford,ernest,ford,2013-01-03,Male,1982-05-26,33,25 - 45,African-American,0,7,0,0,7,0,2013-01-03 12:47:06,2013-03-23 05:13:54,13000079CF10A,2013-01-02,,1,F,Possession of Cocaine,1,13012253CF10A,(F2),,2013-07-16,Strong Armed  Robbery,,,,1,13012253CF10A,(F2),2013-07-16,Strong Armed  Robbery,Risk of Recidivism,7,Medium,2013-01-03,Risk of Violence,9,High,2013-01-03,2013-01-03,2013-03-23,7,79,194,1,1\r\n1446,lloren andreu,lloren,andreu,2014-02-04,Male,1980-09-16,35,25 - 45,Caucasian,0,1,0,0,2,-1,2014-02-03 10:17:08,2014-02-04 07:35:43,14001499CF10A,2014-02-03,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,2,Low,2014-02-04,2014-02-03,2014-02-04,2,0,787,0,0\r\n1447,mark marchant,mark,marchant,2013-11-26,Male,1975-03-29,41,25 - 45,Caucasian,0,1,0,0,5,-1,2013-11-25 07:40:00,2013-11-26 10:02:41,13016427CF10A,2013-11-25,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-26,Risk of Violence,1,Low,2013-11-26,2013-11-25,2013-11-26,5,0,857,0,0\r\n1448,christian ayers,christian,ayers,2013-01-16,Male,1992-09-04,23,Less than 25,Caucasian,0,3,0,0,0,0,2013-01-16 03:21:38,2013-01-18 06:02:43,13001147MM10A,2013-01-16,,0,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-16,Risk of Violence,5,Medium,2013-01-16,2013-01-16,2013-01-18,0,2,1171,0,0\r\n1452,crystal hernandez,crystal,hernandez,2014-03-10,Female,1995-03-03,21,Less than 25,Caucasian,0,5,1,0,0,-1,2014-03-09 04:11:02,2014-03-10 12:58:03,14009264MU10A,2014-03-09,,1,M,Driving Under The Influence,1,14033277TC30A,(M2),,2014-04-03,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-10,Risk of Violence,5,Medium,2014-03-10,2014-07-31,2014-08-19,0,0,24,1,1\r\n1455,ally chattman,ally,chattman,2013-02-23,Male,1961-09-18,54,Greater than 45,African-American,0,1,0,0,0,-1,2013-02-22 10:36:11,2013-02-24 02:27:44,13002755CF10A,2013-02-22,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-24,0,1,1133,0,0\r\n1456,tony scott,tony,scott,2014-10-21,Male,1988-09-03,27,25 - 45,African-American,0,6,0,0,10,-1,2014-10-20 02:10:27,2014-10-21 08:11:18,14011103CF10A,,2014-10-20,1,F,arrest case no charge,1,15026145TC10A,(M1),0,2015-09-23,Opert With Susp DL 2nd Offens,2015-09-23,2015-09-24,,0,,,,,Risk of Recidivism,6,Medium,2014-10-21,Risk of Violence,8,High,2014-10-21,2015-09-23,2015-09-24,10,0,337,1,1\r\n1458,timothy campos,timothy,campos,2013-10-10,Male,1993-07-11,22,Less than 25,Caucasian,0,3,0,0,0,-4,2013-10-06 03:03:50,2013-10-07 08:17:57,13018996MM10A,2013-10-05,,5,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-10,Risk of Violence,5,Medium,2013-10-10,2014-01-15,2014-01-16,0,0,97,0,0\r\n1460,eulaida moreno,eulaida,moreno,2014-06-10,Female,1995-04-03,21,Less than 25,Hispanic,0,7,0,0,0,-1,2014-06-09 05:06:31,2014-06-10 01:00:37,14009138MM10A,2014-06-09,,1,M,Battery,1,15003247MM40A,(M1),,2015-08-12,Possess Drug Paraphernalia,,,,0,,,,,Risk of Recidivism,7,Medium,2014-06-10,Risk of Violence,7,Medium,2014-06-10,2014-06-09,2014-06-10,0,0,428,1,1\r\n1461,michael creightney,michael,creightney,2013-08-25,Male,1992-05-08,23,Less than 25,African-American,0,6,0,0,2,-1,2013-08-24 05:25:24,2013-08-30 07:02:03,13011955CF10A,2013-08-24,,1,F,Pos Cannabis W/Intent Sel/Del,1,13018368MM10A,(M1),0,2013-09-07,Possess Cannabis/20 Grams Or Less,2013-09-07,2013-09-08,,0,,,,,Risk of Recidivism,6,Medium,2013-08-25,Risk of Violence,5,Medium,2013-08-25,2013-09-07,2013-09-08,2,5,13,1,1\r\n1462,carlos gabriele,carlos,gabriele,2013-12-17,Male,1986-02-27,30,25 - 45,Hispanic,0,1,0,0,1,-9,2013-12-08 10:10:54,2013-12-16 08:47:38,13022712MM10A,2013-12-08,,9,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-17,Risk of Violence,2,Low,2013-12-17,2013-12-08,2013-12-16,1,0,836,0,0\r\n1463,dominic armstrong,dominic,armstrong,2013-11-20,Male,1980-02-03,36,25 - 45,African-American,0,8,0,0,5,-20,2013-10-31 01:51:51,2013-11-19 10:46:00,13020562MM10A,2013-10-31,,20,M,Viol Injunct Domestic Violence,1,14017070CF10A,(F3),1,2014-12-27,Tampering With Physical Evidence,2014-12-28,2015-01-30,,0,,,,,Risk of Recidivism,8,High,2013-11-20,Risk of Violence,3,Low,2013-11-20,2014-03-21,2014-05-15,5,0,121,0,1\r\n1464,erika machado,erika,machado,2013-12-20,Female,1992-03-30,24,Less than 25,Hispanic,0,6,0,0,2,48,2014-02-06 03:33:18,2014-02-07 02:49:24,13008860CF10A,2013-06-24,,179,F,Possession of Cocaine,1,14002114MM10A,(M1),0,2014-02-06,Trespass Other Struct/Convey,2014-02-06,2014-02-07,,1,15006900MM10A,(M1),2015-06-27,Battery,Risk of Recidivism,6,Medium,2013-12-20,Risk of Violence,3,Low,2013-12-20,2014-02-06,2014-02-07,2,0,48,1,1\r\n1467,anthony blount,anthony,blount,2013-08-07,Male,1986-08-07,29,25 - 45,African-American,0,7,0,1,10,-1,2013-08-06 05:55:07,2013-08-29 08:04:08,13011004CF10A,2013-08-06,,1,F,Deliver Cannabis,1,14011327CF10A,(F3),0,2014-08-19,Driving While License Revoked,2014-08-19,2014-09-05,,0,,,,,Risk of Recidivism,7,Medium,2013-08-07,Risk of Violence,5,Medium,2013-08-07,2014-08-19,2014-09-05,10,22,377,1,1\r\n1470,steve kolbjornsen,steve,kolbjornsen,2013-03-17,Male,1961-12-12,54,Greater than 45,African-American,0,5,0,0,4,-1,2013-03-16 11:33:04,2013-06-03 08:21:57,13005186MM10A,2013-03-16,,1,M,Battery,1,13010754MM10A,(M1),0,2013-06-04,Petit Theft $100- $300,2013-06-04,2013-12-12,,1,13010754MM10A,(M1),2013-06-04,Battery,Risk of Recidivism,5,Medium,2013-03-17,Risk of Violence,4,Low,2013-03-17,2013-06-04,2013-12-12,4,78,79,1,1\r\n1471,parker frederick,parker,frederick,2013-08-29,Male,1993-10-22,22,Less than 25,Caucasian,0,5,0,0,2,-1,2013-08-28 11:26:11,2013-09-11 08:03:33,13016503MM10A,2013-08-28,,1,M,Battery,1,14002633CF10A,(F3),0,2014-02-24,\"Poss3,4 Methylenedioxymethcath\",2014-02-24,2014-04-02,,1,15010952CF10A,(F3),2015-08-22,Felony Battery (Dom Strang),Risk of Recidivism,5,Medium,2013-08-29,Risk of Violence,6,Medium,2013-08-29,2014-02-24,2014-04-02,2,13,179,1,1\r\n1472,raymond carlson,raymond,carlson,2013-12-11,Male,1978-01-25,38,25 - 45,Caucasian,0,1,0,0,2,-64,2013-10-08 03:58:44,2013-10-12 10:37:11,13014123CF10A,2013-10-08,,64,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2014-03-05,2014-04-17,2,0,84,0,0\r\n1473,benjamin robinson,benjamin,robinson,2013-02-02,Male,1989-07-04,26,25 - 45,African-American,0,4,0,0,0,-1,2013-02-01 06:04:12,2013-02-02 05:16:40,13002360MM10A,2013-02-01,,1,M,Battery,1,13002713MM10A,(M1),0,2013-02-06,Resist/Obstruct W/O Violence,2013-02-06,2013-02-07,,1,15010096CF10A,(F2),2015-05-20,Agg Battery Grt/Bod/Harm,Risk of Recidivism,4,Low,2013-02-02,Risk of Violence,3,Low,2013-02-02,2013-02-06,2013-02-07,0,0,4,1,1\r\n1474,sasha coar,sasha,coar,2014-02-11,Female,1995-07-29,20,Less than 25,African-American,0,4,0,0,0,-1,2014-02-10 07:08:16,2014-02-11 11:50:51,14001883CF10A,2014-02-10,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-11,Risk of Violence,6,Medium,2014-02-11,2014-02-10,2014-02-11,0,0,780,0,0\r\n1475,hugo orbera,hugo,orbera,2013-04-10,Male,1960-04-18,56,Greater than 45,Hispanic,0,1,0,0,0,,,,,,,,M,,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-10,Risk of Violence,1,Low,2013-04-10,2013-04-02,2013-04-10,0,0,1087,0,0\r\n1479,finest williams,finest,williams,2013-09-30,Male,1964-03-19,52,Greater than 45,African-American,0,1,0,0,6,0,2013-09-30 11:04:43,2013-10-02 04:00:46,13018600MM10A,2013-09-30,,0,M,Battery,1,15010450CF10A,(F3),0,2015-08-13,Possession of Cocaine,2015-08-13,2015-08-14,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2015-08-13,2015-08-14,6,2,682,1,1\r\n1481,aaron rolle,aaron,rolle,2013-04-12,Male,1986-09-06,29,25 - 45,African-American,0,1,0,0,0,-1,2013-04-11 02:03:54,2013-04-13 04:17:04,13005240CF10A,2013-04-11,,1,F,Sale/Del Counterfeit Cont Subs,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-12,Risk of Violence,2,Low,2013-04-12,2013-11-07,2013-11-10,0,1,209,0,0\r\n1482,kewuana jones,kewuana,jones,2013-12-16,Female,1992-04-25,23,Less than 25,African-American,0,7,0,0,6,-18,2013-11-28 11:32:18,2013-12-16 06:10:23,13022280MM10A,2013-11-28,,18,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-16,Risk of Violence,5,Medium,2013-12-16,2013-11-28,2013-12-16,6,0,837,0,0\r\n1483,harvell watson,harvell,watson,2014-01-22,Male,1980-08-21,35,25 - 45,African-American,0,1,0,0,1,-1,2014-01-21 05:56:47,2014-01-30 10:03:30,13009266MM10A,,2014-01-21,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-22,Risk of Violence,1,Low,2014-01-22,2014-01-21,2014-01-30,1,8,800,0,0\r\n1484,kathryn george,kathryn,george,2013-11-12,Male,1983-08-20,32,25 - 45,Caucasian,0,9,0,0,8,-4,2013-11-08 04:35:13,2013-11-09 02:08:17,13015609CF10A,2013-11-08,,4,F,Felony Petit Theft,1,14009139CF10A,(M1),13,2014-06-20,Fraudulent Use Of Credit Card,2014-07-03,2014-09-10,,0,,,,,Risk of Recidivism,9,High,2013-11-12,Risk of Violence,10,High,2013-11-12,2014-06-15,2014-06-19,8,0,215,0,1\r\n1485,mitchell knight,mitchell,knight,2013-11-20,Male,1995-03-23,21,Less than 25,African-American,0,7,0,0,1,-18,2013-11-02 01:59:31,2013-11-03 01:26:39,13020677MM10A,2013-11-02,,18,M,Battery,1,14000114MM30A,(M1),596,2013-12-20,Possess Cannabis/20 Grams Or Less,2015-08-08,2015-08-08,,1,15012709MM10A,(M1),2015-11-11,Battery,Risk of Recidivism,7,Medium,2013-11-20,Risk of Violence,6,Medium,2013-11-20,2015-08-08,2015-08-08,1,0,30,1,1\r\n1486,luis taveras,luis,taveras,2013-10-08,Male,1990-09-12,25,25 - 45,Hispanic,0,3,0,0,0,-1,2013-10-07 07:18:19,2013-10-08 03:39:39,13014061CF10A,2013-10-07,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-08,Risk of Violence,6,Medium,2013-10-08,2013-10-07,2013-10-08,0,0,906,0,0\r\n1488,sheldon cam,sheldon,cam,2013-12-23,Male,1983-09-30,32,25 - 45,African-American,0,2,1,0,5,,,,13023703MM10A,2013-12-23,,0,M,Battery,1,15060093TC20A,(M2),,2015-10-28,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-23,Risk of Violence,2,Low,2013-12-23,,,5,0,674,1,1\r\n1490,jacky docteur,jacky,docteur,2014-10-14,Male,1985-10-09,30,25 - 45,African-American,0,4,0,0,4,-1,2014-10-13 03:42:50,2014-10-14 07:15:27,14014960MM10A,2014-10-13,,1,M,Battery,1,15033285TC20A,(M2),,2015-05-21,Fail Obey Driv Lic Restrictions,,,,0,,,,,Risk of Recidivism,4,Low,2014-10-14,Risk of Violence,2,Low,2014-10-14,2014-10-13,2014-10-14,4,0,219,1,1\r\n1491,joan thomas,joan,thomas,2014-01-12,Female,1985-12-16,30,25 - 45,African-American,0,4,0,0,3,-1,2014-01-11 07:06:04,2014-02-06 09:34:49,14000468CF10A,2014-01-11,,1,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-12,Risk of Violence,4,Low,2014-01-12,2014-01-11,2014-02-06,3,25,810,0,0\r\n1496,demetris russaw,demetris,russaw,2013-04-25,Male,1992-05-24,23,Less than 25,African-American,0,7,0,0,2,-1,2013-04-24 03:10:43,2013-04-30 07:30:08,12009173CF10A,,2013-04-24,1,F,arrest case no charge,1,14002871MM20A,(M2),,2014-10-07,Operating W/O Valid License,,,,1,16002777CF10A,(F1),2016-03-04,Burglary With Assault/battery,Risk of Recidivism,7,Medium,2013-04-25,Risk of Violence,6,Medium,2013-04-25,2013-04-24,2013-04-30,2,5,530,1,1\r\n1497,jesse bernstein,jesse,bernstein,2013-07-29,Male,1983-04-21,32,25 - 45,Caucasian,1,4,0,0,8,-2,2013-07-27 10:35:38,2013-07-29 11:27:25,13010543CF10A,2013-07-27,,2,F,Burglary Dwelling Occupied,1,15013246MM10A,(M1),,2015-12-23,Tresspass in Struct/Convey Occupy,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-29,Risk of Violence,4,Low,2013-07-29,2013-07-27,2013-07-29,8,0,877,1,0\r\n1498,jerry seal,jerry,seal,2013-12-11,Male,1963-09-19,52,Greater than 45,Caucasian,0,1,0,0,1,-111,2013-08-22 10:06:49,2013-08-24 02:22:11,13011800CF10A,2013-08-22,,111,F,Possession Child Pornography,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2016-01-21,2016-01-23,1,0,771,0,0\r\n1499,christopher watson,christopher,watson,2013-01-04,Male,1986-07-27,29,25 - 45,African-American,0,10,0,0,6,-1,2013-01-03 11:14:41,2013-02-12 05:48:52,13000112CF10A,,2013-01-03,1,F,arrest case no charge,1,13013151CF10A,(F3),0,2013-09-18,Possession of Cocaine,2013-09-18,2013-09-20,,0,,,,,Risk of Recidivism,10,High,2013-01-04,Risk of Violence,9,High,2013-01-04,2013-09-18,2013-09-20,6,39,257,1,1\r\n1501,peter rapone,peter,rapone,2013-08-16,Male,1973-12-10,42,25 - 45,Caucasian,0,1,0,0,0,0,2013-08-16 03:31:01,2013-08-16 09:14:20,13015538MM10A,2013-08-16,,0,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-16,Risk of Violence,1,Low,2013-08-16,2013-08-16,2013-08-16,0,0,959,0,0\r\n1505,deve cherisca,deve,cherisca,2013-02-24,Male,1994-10-23,21,Less than 25,African-American,0,8,0,1,0,0,2013-02-24 03:20:14,2013-02-25 02:11:41,13002829CF10A,2013-02-23,,1,F,Possession Burglary Tools,1,13015297MM10A,(M1),1,2013-08-13,Resist/Obstruct W/O Violence,2013-08-14,2013-08-14,,0,,,,,Risk of Recidivism,8,High,2013-02-24,Risk of Violence,9,High,2013-02-24,2013-02-24,2013-02-25,0,1,170,1,1\r\n1506,alana broadhead,alana,broadhead,2014-01-31,Female,1979-05-10,36,25 - 45,Caucasian,0,9,0,0,4,110,2014-05-21 04:48:02,2014-11-05 11:24:50,13011288CF10A,,2013-09-09,144,F,arrest case no charge,1,16003160CF10A,(F3),,2016-03-13,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-31,Risk of Violence,3,Low,2014-01-31,2014-05-21,2014-11-05,4,0,110,0,1\r\n1508,chantel thomas,chantel,thomas,2014-01-06,Female,1993-08-06,22,Less than 25,African-American,0,3,0,0,0,-2,2014-01-04 11:57:59,2014-01-05 01:34:22,14000168MM10A,2014-01-04,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-06,Risk of Violence,4,Low,2014-01-06,2014-01-04,2014-01-05,0,0,816,0,0\r\n1509,hugo garcia,hugo,garcia,2013-01-26,Male,1970-10-12,45,Greater than 45,Hispanic,0,1,0,0,2,-1,2013-01-25 07:53:49,2013-03-13 12:29:31,13001254CF10A,2013-01-25,,1,F,Sex Battery Deft 18+/Vict 11-,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-26,Risk of Violence,2,Low,2013-01-26,2013-01-25,2013-03-13,2,46,1161,0,0\r\n1511,duane miller,duane,miller,2013-11-10,Male,1986-09-16,29,25 - 45,African-American,0,2,0,0,0,-1,2013-11-09 08:24:05,2013-11-10 02:36:02,13021182MM10A,2013-11-09,,1,M,Posses/Disply Susp/Revk/Frd DL,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-10,Risk of Violence,3,Low,2013-11-10,2013-11-09,2013-11-10,0,0,873,0,0\r\n1512,thomas evans,thomas,evans,2013-09-09,Male,1961-08-11,54,Greater than 45,African-American,0,2,0,0,2,,,,10011555CF10A,2010-06-24,,1173,M,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-09,Risk of Violence,3,Low,2013-09-09,2008-03-06,2008-07-11,2,0,935,0,0\r\n1513,willie carter,willie,carter,2013-01-24,Male,1986-04-14,30,25 - 45,African-American,0,5,0,0,6,-1,2013-01-23 04:50:53,2013-01-26 03:15:43,13001097CF10A,,2013-01-23,1,F,arrest case no charge,1,14011625CF10A,(F2),282,2014-05-25,Aggravated Battery / Pregnant,2015-03-03,2015-04-15,,1,14011625CF10A,(F2),2014-05-25,Aggravated Battery / Pregnant,Risk of Recidivism,5,Medium,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-06-05,2013-07-26,6,2,132,0,1\r\n1515,rufus jackson,rufus,jackson,2013-10-23,Male,1964-11-14,51,Greater than 45,African-American,0,4,0,0,17,0,2013-10-23 02:05:52,2013-10-23 07:52:30,13020090MM10A,2013-10-22,,1,M,DUI Blood Alcohol Above 0.20,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-23,Risk of Violence,1,Low,2013-10-23,2013-10-23,2013-10-23,17,0,891,0,0\r\n1516,ulisses hernandez,ulisses,hernandez,2013-04-27,Male,1970-11-19,45,Greater than 45,Hispanic,0,3,0,0,20,0,2013-04-27 03:24:40,2013-04-29 09:39:26,13006065CF10A,2013-04-27,,0,F,Driving While License Revoked,1,15004221CF10A,(F3),1,2015-03-31,Drivg While Lic Suspd/Revk/Can,2015-04-01,2015-04-02,,0,,,,,Risk of Recidivism,3,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-27,2013-04-29,20,2,703,1,1\r\n1517,gearrard holmes,gearrard,holmes,2014-08-14,Male,1988-11-21,27,25 - 45,African-American,0,3,0,0,3,88,2014-11-10 10:05:14,2015-09-08 09:20:53,14006822CF10A,2014-05-16,,90,F,Burglary Conveyance Armed,1,14015078CF10A,(M2),3,2014-11-07,Fail To Obey Police Officer,2014-11-10,2015-09-08,,1,14015078CF10A,(F2),2014-11-07,Agg Assault Law Enforc Officer,Risk of Recidivism,3,Low,2014-08-14,Risk of Violence,2,Low,2014-08-14,2014-11-10,2015-09-08,3,0,85,1,1\r\n1518,johnathon rosario,johnathon,rosario,2013-08-07,Male,1992-01-19,24,Less than 25,Hispanic,0,2,0,0,1,190,2014-02-13 11:43:32,2014-02-27 10:36:11,12015731CF10A,,2012-11-27,253,F,arrest case no charge,1,15022910TC10A,(M1),0,2015-08-06,Opert With Susp DL 2nd Offens,2015-08-06,2015-09-12,,0,,,,,Risk of Recidivism,2,Low,2013-08-07,Risk of Violence,4,Low,2013-08-07,2014-02-13,2014-02-27,1,0,190,0,1\r\n1520,eric evenson,eric,evenson,2013-10-01,Male,1991-07-09,24,Less than 25,Caucasian,0,6,0,0,2,-27,2013-09-04 06:36:53,2013-09-04 06:53:03,13012482CF10A,2013-09-04,,27,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-01,Risk of Violence,5,Medium,2013-10-01,2013-10-31,2013-11-13,2,0,30,0,0\r\n1522,blake robinson,blake,robinson,2013-02-04,Male,1992-06-07,23,Less than 25,African-American,0,7,0,0,2,-1,2013-02-03 05:45:03,2013-02-08 11:19:06,13002455MM10A,2013-02-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-04,Risk of Violence,6,Medium,2013-02-04,2013-02-03,2013-02-08,2,4,1152,0,0\r\n1523,annmarie young,annmarie,young,2013-04-27,Female,1973-11-20,42,25 - 45,Other,0,3,0,0,2,496,2014-09-05 04:36:17,2014-09-19 06:50:50,13008081MM10A,2013-04-26,,1,M,Crim Attempt/Solicit/Consp,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-27,Risk of Violence,2,Low,2013-04-27,2014-09-05,2014-09-19,2,0,496,0,0\r\n1526,nelson olivio,nelson,olivio,2013-12-12,Male,1979-06-11,36,25 - 45,African-American,0,4,0,0,5,-1,2013-12-11 05:02:29,2013-12-12 01:44:46,13017126CF10A,2013-12-11,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-12,Risk of Violence,2,Low,2013-12-12,2013-12-11,2013-12-12,5,0,841,0,0\r\n1529,richard edward,richard,edward,2014-07-28,Female,1977-10-06,38,25 - 45,African-American,0,7,1,0,8,,,,14011447MM10A,2014-07-27,,1,M,Battery,1,15046846TC20A,(M2),,2015-08-18,Susp Drivers Lic 1st Offense,,,,1,15011417MM10A,(M1),2015-10-29,Battery,Risk of Recidivism,7,Medium,2014-07-28,Risk of Violence,4,Low,2014-07-28,2006-07-11,2008-11-24,8,0,386,1,1\r\n1530,marcelo davila,marcelo,davila,2014-03-31,Male,1947-04-09,69,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-03-30 06:30:00,2014-03-31 01:49:24,14005471MM10A,2014-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-30,2014-03-31,0,0,732,0,0\r\n1531,jeremy torres,jeremy,torres,2013-11-18,Male,1995-03-29,21,Less than 25,Hispanic,0,5,0,1,1,-4,2013-11-14 09:10:59,2013-11-16 08:34:03,13013996CF10A,,2013-11-14,4,F,arrest case no charge,1,15026209TC40A,(M2),,2015-04-30,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-18,Risk of Violence,6,Medium,2013-11-18,2013-11-14,2013-11-16,1,0,528,1,1\r\n1532,leonardo collazos,leonardo,collazos,2013-04-27,Male,1956-07-21,59,Greater than 45,Hispanic,0,1,0,0,1,-1,2013-04-26 10:39:22,2013-04-27 01:07:17,92078761TC20A,1992-07-02,,7604,M,License Suspended Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-26,2013-04-27,1,0,1070,0,0\r\n1533,isaac smith,isaac,smith,2014-01-14,Male,1976-05-09,39,25 - 45,African-American,0,6,0,0,1,-9,2014-01-05 09:54:57,2014-01-10 07:58:25,12016467CF10A,,2014-01-05,9,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-14,Risk of Violence,1,Low,2014-01-14,2014-01-05,2014-01-10,1,0,808,0,0\r\n1534,trevor parker,trevor,parker,2013-05-06,Male,1986-04-23,29,25 - 45,African-American,0,6,0,0,2,-1,2013-05-05 10:38:59,2013-06-12 05:40:10,13006444CF10A,2013-05-05,,1,F,Burglary Conveyance Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-06,Risk of Violence,3,Low,2013-05-06,2013-05-05,2013-06-12,2,37,1061,0,0\r\n1535,eleasar gutierrez,eleasar,gutierrez,2013-03-02,Male,1993-10-16,22,Less than 25,Hispanic,0,7,0,0,1,0,2013-03-02 12:57:44,2013-03-04 05:34:09,13004236MM10A,2013-03-01,,1,M,Battery,1,13013833MM10A,(M2),0,2013-07-21,Unlaw LicTag/Sticker Attach,2013-07-21,2013-07-21,,0,,,,,Risk of Recidivism,7,Medium,2013-03-02,Risk of Violence,5,Medium,2013-03-02,2013-07-21,2013-07-21,1,2,141,0,1\r\n1536,emmanuel treveus,emmanuel,treveus,2014-02-16,Male,1987-12-23,28,25 - 45,African-American,0,4,0,0,1,,,,08003795CF10A,2008-02-25,,2183,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-16,Risk of Violence,6,Medium,2014-02-16,,,1,0,775,0,0\r\n1538,daniel white,daniel,white,2013-03-22,Male,1971-08-18,44,25 - 45,Caucasian,0,3,0,0,6,0,2013-03-22 12:07:37,2013-03-22 08:51:12,13004116CF10A,2013-03-21,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-22,Risk of Violence,1,Low,2013-03-22,2013-03-22,2013-03-22,6,0,1106,0,0\r\n1540,jovan bailey,jovan,bailey,2013-02-17,Male,1990-11-20,25,25 - 45,African-American,0,5,0,0,2,-1,2013-02-16 04:14:17,2013-04-15 04:35:16,13002415CF10A,2013-02-16,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-17,Risk of Violence,6,Medium,2013-02-17,2015-03-03,2015-04-30,2,57,744,0,0\r\n1541,learby labath,learby,labath,2014-01-20,Male,1984-08-06,31,25 - 45,African-American,0,10,0,0,0,0,2014-01-20 03:43:59,2014-01-20 09:17:53,14000845CF10A,2014-01-20,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-20,Risk of Violence,10,High,2014-01-20,2014-01-20,2014-01-20,0,0,802,0,0\r\n1542,tavares felder,tavares,felder,2013-02-03,Male,1980-06-10,35,25 - 45,African-American,0,7,1,0,17,-1,2013-02-02 01:30:39,2013-02-04 03:00:27,13002391MM10A,2013-02-02,,1,M,Battery,1,13008151CF10A,(F3),1,2013-06-08,Grand Theft in the 3rd Degree,2013-06-09,2014-02-12,,1,13008151CF10A,(F3),2013-06-08,Child Abuse,Risk of Recidivism,7,Medium,2013-02-03,Risk of Violence,2,Low,2013-02-03,2013-03-14,2013-04-16,17,1,39,0,1\r\n1543,jacques altidor,jacques,altidor,2014-06-05,Male,1989-01-08,27,25 - 45,African-American,0,10,0,0,11,-1,2014-06-04 04:07:30,2014-06-06 11:55:51,11019590MM10A,,2014-06-04,1,M,arrest case no charge,1,14013184CF10A,(F3),1,2014-09-30,Possession of Cocaine,2014-10-01,2014-10-09,,0,,,,,Risk of Recidivism,10,High,2014-06-05,Risk of Violence,9,High,2014-06-05,2014-06-04,2014-06-06,11,1,0,0,1\r\n1545,evens jeanbaptiste,evens,jeanbaptiste,2013-11-23,Male,1983-02-19,33,25 - 45,African-American,0,5,0,0,1,0,2013-11-23 12:34:52,2013-11-25 10:32:35,13016319CF10A,2013-11-22,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-23,Risk of Violence,4,Low,2013-11-23,2013-11-23,2013-11-25,1,2,860,0,0\r\n1548,vladimir calixte,vladimir,calixte,2013-09-08,Male,1988-03-18,28,25 - 45,African-American,0,9,0,0,6,-1,2013-09-07 11:25:36,2013-09-08 11:14:03,13012677CF10A,2013-09-07,,1,F,Carrying Concealed Firearm,1,13088926TC40A,(M2),90,2013-12-12,Opert With Susp DL 2nd Offens,2014-03-12,2014-03-12,,0,,,,,Risk of Recidivism,9,High,2013-09-08,Risk of Violence,6,Medium,2013-09-08,2014-03-12,2014-03-12,6,0,95,1,1\r\n1549,dedrick williams,dedrick,williams,2014-04-24,Male,1996-03-23,20,Less than 25,African-American,1,10,0,1,1,-51,2014-03-04 08:08:45,2014-03-06 05:40:10,14003031CF10A,,2014-03-05,50,F,arrest case no charge,1,14011919CF10A,(F3),,2014-05-18,Aggravated Assault w/Firearm,,,,1,14011919CF10A,(F3),2014-05-18,Aggravated Assault w/Firearm,Risk of Recidivism,10,High,2014-04-24,Risk of Violence,10,High,2014-04-24,2014-03-04,2014-03-06,1,0,24,1,1\r\n1550,keith dillman,keith,dillman,2014-03-03,Male,1955-11-01,60,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-03-02 12:41:55,2014-03-03 08:09:50,13014186CF10A,,2014-03-02,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-02,2014-03-03,1,0,760,0,0\r\n1551,francisco gonzalez,francisco,gonzalez,2014-01-19,Male,1962-06-19,53,Greater than 45,Hispanic,0,1,0,0,0,0,2014-01-19 05:06:52,2014-01-20 12:41:21,14000962MM10A,2014-01-19,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-19,Risk of Violence,1,Low,2014-01-19,2014-01-19,2014-01-20,0,1,803,0,0\r\n1553,julio aviles,julio,aviles,2013-05-22,Male,1964-07-17,51,Greater than 45,Hispanic,0,1,0,0,0,0,2013-05-22 01:34:16,2013-05-23 04:43:36,13007304CF10A,2013-05-21,,1,F,Live on Earnings of Prostitute,1,13042641TC20A,(M2),,2013-07-04,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-22,Risk of Violence,1,Low,2013-05-22,2013-05-22,2013-05-23,0,1,43,1,1\r\n1554,roger baladi,roger,baladi,2013-12-11,Male,1990-07-15,25,25 - 45,Hispanic,0,2,0,0,1,-106,2013-08-27 02:38:09,2013-09-28 02:10:00,13011657CF10A,,2013-08-27,106,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-11,Risk of Violence,3,Low,2013-12-11,2013-08-27,2013-09-28,1,0,842,0,0\r\n1556,lias corker,lias,corker,2013-12-13,Male,1989-01-25,27,25 - 45,African-American,2,7,1,0,5,76,2014-02-27 01:40:20,2014-09-18 07:01:56,13009236CF10A,2013-06-28,,168,F,Robbery W/Firearm,1,14002766CF10A,(F3),1,2014-02-26,Robbery Sudd Snatch No Weapon,2014-02-27,2014-09-18,,1,14002766CF10A,(F3),2014-02-26,Robbery Sudd Snatch No Weapon,Risk of Recidivism,7,Medium,2013-12-13,Risk of Violence,8,High,2013-12-13,2015-07-25,2015-09-27,5,0,75,1,1\r\n1557,victoria phillips,victoria,phillips,2013-12-16,Female,1961-05-05,54,Greater than 45,African-American,0,1,0,0,0,-1,2013-12-15 02:13:35,2013-12-16 07:55:36,13017330CF10A,2013-12-15,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,0,0,837,0,0\r\n1558,lucia arne,lucia,arne,2014-01-09,Female,1989-06-09,26,25 - 45,African-American,0,5,0,1,3,-305,2013-03-10 05:04:36,2013-03-11 05:35:50,14004080MM10A,2014-01-02,,7,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-09,Risk of Violence,5,Medium,2014-01-09,2013-03-10,2013-03-11,3,0,813,0,0\r\n1559,heriberto castro,heriberto,castro,2014-03-05,Male,1991-06-27,24,Less than 25,Caucasian,1,4,2,0,3,-1,2014-03-04 11:56:23,2014-03-06 04:15:00,14003704MM10A,2014-03-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-05,Risk of Violence,5,Medium,2014-03-05,2014-03-04,2014-03-06,3,1,758,0,0\r\n1560,roberto gonzalez,roberto,gonzalez,2013-01-17,Male,1960-09-26,55,Greater than 45,Hispanic,0,2,0,0,1,0,2013-01-17 02:41:43,2013-01-18 07:54:08,13000822CF10A,,2013-01-16,1,F,arrest case no charge,1,13001985CF10A,(F2),0,2013-02-08,Burglary Unoccupied Dwelling,2013-02-08,2013-02-13,,0,,,,,Risk of Recidivism,2,Low,2013-01-17,Risk of Violence,1,Low,2013-01-17,2013-02-08,2013-02-13,1,1,22,1,1\r\n1562,juan perez,juan,perez,2013-03-25,Male,1989-05-24,26,25 - 45,Hispanic,0,3,0,0,0,-1,2013-03-24 03:23:32,2013-03-26 11:28:11,13004394CF10A,2013-03-24,,1,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-25,Risk of Violence,3,Low,2013-03-25,2013-05-13,2013-06-08,0,1,49,0,0\r\n1563,catherine blackwood,catherine,blackwood,2013-08-01,Female,1941-03-08,75,Greater than 45,African-American,0,1,0,0,5,-1,2013-07-31 04:54:07,2013-08-01 07:43:39,13010258CF10A,,2013-07-31,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2013-07-31,2013-08-01,5,0,974,0,0\r\n1565,edward thomas,edward,thomas,2013-10-29,Male,1980-04-07,36,25 - 45,African-American,0,5,0,0,16,0,2013-10-29 02:19:16,2013-10-29 07:47:29,13015090CF10A,2013-10-29,,0,F,Driving While License Revoked,1,14006322CF10A,(M2),0,2014-05-06,Expired DL More Than 6 Months,2014-05-06,2014-05-07,,0,,,,,Risk of Recidivism,5,Medium,2013-10-29,Risk of Violence,3,Low,2013-10-29,2014-05-06,2014-05-07,16,0,189,1,1\r\n1566,ulysses davis,ulysses,davis,2013-11-19,Male,1959-05-04,56,Greater than 45,African-American,0,3,0,0,8,-106,2013-08-05 07:30:16,2013-10-16 11:44:03,08021349CF10A,,2013-08-05,106,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-19,Risk of Violence,3,Low,2013-11-19,2013-08-05,2013-10-16,8,0,864,0,0\r\n1568,sam metellus,sam,metellus,2014-02-24,Male,1981-11-29,34,25 - 45,Other,0,2,0,0,0,-1,2014-02-23 06:40:09,2014-02-25 10:03:53,14002560CF10A,2014-02-23,,1,F,Battery on Law Enforc Officer,1,15004997CF10A,(M1),0,2015-04-16,Resist/Obstruct W/O Violence,2015-04-16,2015-05-31,,0,,,,,Risk of Recidivism,2,Low,2014-02-24,Risk of Violence,2,Low,2014-02-24,2015-02-26,2015-03-10,0,1,367,0,1\r\n1569,jetadia brown,jetadia,brown,2013-02-17,Female,1990-10-25,25,25 - 45,African-American,0,7,0,0,5,-1,2013-02-16 01:28:20,2013-04-04 09:33:49,13003373MM10A,2013-02-15,,2,M,Viol Pretrial Release Dom Viol,1,13009341MM10A,(M2),0,2013-05-14,Unnatural/Lascivious Act,2013-05-14,2013-07-01,,0,,,,,Risk of Recidivism,7,Medium,2013-02-17,Risk of Violence,7,Medium,2013-02-17,2013-05-14,2013-07-01,5,46,86,1,1\r\n1571,kurt vanasse,kurt,vanasse,2013-03-25,Male,1969-08-16,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-24 09:03:12,2013-03-25 07:14:16,13004271CF10A,2013-03-24,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-03-24,2013-03-25,0,0,1103,0,0\r\n1572,jahmara rawlins,jahmara,rawlins,2013-01-19,Male,1988-07-18,27,25 - 45,African-American,0,2,0,0,1,0,2013-01-19 03:06:53,2013-01-26 01:55:00,13000898CF10A,,2013-01-19,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-19,Risk of Violence,5,Medium,2013-01-19,2013-01-19,2013-01-26,1,7,1168,0,0\r\n1573,johnie walton,johnie,walton,2014-02-04,Male,1991-06-12,24,Less than 25,African-American,0,6,0,0,1,,,,12021892TC10A,,2012-11-03,458,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-04,Risk of Violence,6,Medium,2014-02-04,,,1,0,787,0,0\r\n1575,kaylin sylvestre,kaylin,sylvestre,2014-01-13,Male,1987-11-15,28,25 - 45,African-American,0,3,0,0,3,0,2014-01-13 12:15:45,2014-01-13 02:23:15,14000589MM10A,2014-01-12,,1,M,Criminal Mischief Damage <$200,1,14084473TC30A,(M2),,2014-10-09,Expired DL More Than 6 Months,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-13,Risk of Violence,2,Low,2014-01-13,2014-01-13,2014-01-13,3,0,269,1,1\r\n1576,leonard morris,leonard,morris,2013-05-20,Male,1973-06-02,42,25 - 45,African-American,1,8,0,1,13,-1,2013-05-19 04:11:11,2013-05-20 01:56:16,13009631MM10A,2013-05-19,,1,M,Prowling/Loitering,1,13021943MM10A,(M2),0,2013-11-22,Petit Theft,2013-11-22,2013-12-13,,0,,,,,Risk of Recidivism,8,High,2013-05-20,Risk of Violence,6,Medium,2013-05-20,2013-11-22,2013-12-13,13,0,186,1,1\r\n1577,reynold cadet,reynold,cadet,2013-04-29,Male,1957-03-27,59,Greater than 45,African-American,0,1,0,0,2,0,2013-04-29 01:05:52,2013-04-29 06:35:40,13008155MM10A,2013-04-28,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-29,2013-04-29,2,0,1068,0,0\r\n1578,masoom ali,masoom,ali,2013-12-20,Male,1976-07-18,39,25 - 45,Caucasian,0,1,0,0,1,-15,2013-12-05 03:06:12,2013-12-20 01:58:00,13016994CF10A,2013-12-05,,15,F,Money Launder 100K or More Dols,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-20,Risk of Violence,1,Low,2013-12-20,2013-12-05,2013-12-20,1,0,833,0,0\r\n1581,gregory ponce,gregory,ponce,2013-04-19,Male,1970-04-09,46,Greater than 45,Caucasian,0,4,0,0,5,-1,2013-04-18 07:24:02,2013-04-30 07:30:20,13007528MM10A,2013-04-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-18,2013-04-30,5,11,1078,0,0\r\n1584,stevenson charles,stevenson,charles,2013-01-15,Male,1991-03-03,25,25 - 45,Other,0,2,0,0,1,-1,2013-01-14 09:27:00,2013-01-15 01:39:19,13000655CF10A,2013-01-04,,11,F,Fraudulent Use of Credit Card,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-15,Risk of Violence,3,Low,2013-01-15,2013-01-14,2013-01-15,1,0,1172,0,0\r\n1587,ricardo moreno,ricardo,moreno,2013-04-03,Male,1960-10-20,55,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-04-02 11:56:46,2013-04-04 10:21:45,13004810CF10A,2013-04-02,,1,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-03,Risk of Violence,1,Low,2013-04-03,2015-10-15,2015-10-20,2,1,925,0,0\r\n1588,alan saintfleur,alan,saintfleur,2014-02-04,Male,1980-08-26,35,25 - 45,African-American,0,10,0,0,1,-4,2014-01-31 04:31:17,2014-02-01 10:05:58,14001742MM10A,2014-01-31,,4,M,Petit Theft,1,14005727MM10A,(M1),0,2014-04-03,Unlaw Use False Name/Identity,2014-04-03,2014-04-21,,0,,,,,Risk of Recidivism,10,High,2014-02-04,Risk of Violence,5,Medium,2014-02-04,2014-04-03,2014-04-21,1,0,58,1,1\r\n1590,mark harden,mark,harden,2014-03-27,Male,1972-07-19,43,25 - 45,African-American,0,1,0,0,0,-1,2014-03-26 05:00:03,2014-03-27 08:19:09,14005244MM10A,2014-03-26,,1,M,Battery,1,15000453MM10A,(M1),,2014-12-08,Battery,,,,1,15000453MM10A,(M1),2014-12-08,Battery,Risk of Recidivism,1,Low,2014-03-27,Risk of Violence,1,Low,2014-03-27,2014-12-30,2015-01-04,0,0,256,1,1\r\n1591,dawn kluenie,dawn,kluenie,2014-02-06,Female,1962-09-11,53,Greater than 45,Caucasian,0,1,0,0,0,0,2014-02-06 05:04:01,2014-02-07 02:27:21,14004832MU10A,2014-02-06,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-06,Risk of Violence,1,Low,2014-02-06,2014-02-06,2014-02-07,0,1,785,0,0\r\n1594,bianca adhemar,bianca,adhemar,2013-12-27,Female,1994-07-18,21,Less than 25,African-American,0,5,0,0,0,-1,2013-12-26 06:12:11,2013-12-27 07:35:36,13023836MM10A,2013-12-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-27,Risk of Violence,6,Medium,2013-12-27,2013-12-26,2013-12-27,0,0,826,0,0\r\n1595,eric higdon,eric,higdon,2013-04-27,Male,1961-03-20,55,Greater than 45,African-American,0,10,0,0,17,-1,2013-04-26 06:25:43,2013-05-22 05:48:32,13006008CF10A,2013-04-26,,1,F,Possession of Cocaine,1,14008511CF10A,(F3),0,2014-06-20,Possession of Hydrocodone,2014-06-20,2015-01-16,,0,,,,,Risk of Recidivism,10,High,2013-04-27,Risk of Violence,4,Low,2013-04-27,2014-06-20,2015-01-16,17,25,419,1,1\r\n1596,rodale hill,rodale,hill,2013-03-15,Male,1988-09-15,27,25 - 45,African-American,0,3,0,0,1,-1,2013-03-14 01:03:47,2013-03-15 07:56:24,13003738CF10A,2013-03-14,,1,F,Possession of Cannabis,1,13009085MM10A,(M1),0,2013-05-10,Resist/Obstruct W/O Violence,2013-05-10,2013-05-11,,0,,,,,Risk of Recidivism,3,Low,2013-03-15,Risk of Violence,3,Low,2013-03-15,2013-05-10,2013-05-11,1,0,56,1,1\r\n1597,phillip hopson,phillip,hopson,2013-04-08,Male,1975-08-23,40,25 - 45,African-American,0,1,0,0,0,-1,2013-04-07 03:56:49,2013-04-09 11:36:38,13005021CF10A,2013-04-07,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-08,Risk of Violence,1,Low,2013-04-08,2013-04-07,2013-04-09,0,1,1089,0,0\r\n1599,elisa garcia,elisa,garcia,2014-03-08,Female,1979-02-02,37,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-07 06:26:42,2014-03-08 09:43:00,14009244MU10A,2014-03-07,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-08,Risk of Violence,1,Low,2014-03-08,2014-03-07,2014-03-08,0,0,755,0,0\r\n1601,russell adams,russell,adams,2013-05-08,Male,1983-11-10,32,25 - 45,Caucasian,0,2,0,0,2,-1,2013-05-07 02:17:32,2013-05-12 07:15:28,13008853MM10A,2013-05-07,,1,M,Battery,1,13014700MO10A,(MO3),0,2013-08-02,Trespassing,2013-08-02,2013-08-02,,0,,,,,Risk of Recidivism,2,Low,2013-05-08,Risk of Violence,2,Low,2013-05-08,2013-08-02,2013-08-02,2,4,86,0,1\r\n1602,ronald shelton,ronald,shelton,2013-08-10,Male,1983-08-06,32,25 - 45,African-American,0,2,0,0,2,-1,2013-08-09 11:28:35,2013-08-11 03:36:21,13011211CF10A,2013-08-09,,1,M,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-10,Risk of Violence,2,Low,2013-08-10,2013-08-09,2013-08-11,2,1,965,0,0\r\n1604,andre collins,andre,collins,2013-12-15,Male,1980-03-23,36,25 - 45,African-American,0,5,0,0,4,-1,2013-12-14 10:15:47,2013-12-17 01:25:19,13023178MM10A,2013-12-14,,1,M,Battery,1,14010781TC10A,(M2),,2014-03-04,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-15,Risk of Violence,3,Low,2013-12-15,2013-12-14,2013-12-17,4,2,79,1,1\r\n1605,algin peralta,algin,peralta,2014-03-10,Male,1993-10-10,22,Less than 25,Hispanic,0,3,0,0,0,-1,2014-03-09 10:59:23,2014-03-10 03:29:33,14009275MU10A,2014-03-09,,1,M,Possess Drug Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-10,Risk of Violence,5,Medium,2014-03-10,2015-05-06,2015-05-08,0,0,422,0,0\r\n1606,faris roperto,faris,roperto,2013-09-17,Female,1984-09-19,31,25 - 45,African-American,0,8,0,0,0,-1,2013-09-16 07:41:46,2013-09-18 08:56:28,13013084CF10A,2013-09-16,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-17,Risk of Violence,5,Medium,2013-09-17,2013-09-16,2013-09-18,0,1,927,0,0\r\n1607,gloria austin,gloria,austin,2013-09-13,Female,1989-06-15,26,25 - 45,African-American,0,7,0,0,4,0,2013-09-13 03:23:56,2013-09-14 01:41:42,13012937CF10A,2013-09-13,,0,F,Felony Driving While Lic Suspd,1,14002275CF10A,(F3),0,2014-02-18,Driving While License Revoked,2014-02-18,2014-05-06,,0,,,,,Risk of Recidivism,7,Medium,2013-09-13,Risk of Violence,5,Medium,2013-09-13,2014-02-18,2014-05-06,4,1,158,1,1\r\n1608,ellen brezner,ellen,brezner,2013-01-12,Female,1965-11-02,50,Greater than 45,Caucasian,0,6,0,0,30,-1,2013-01-11 11:15:08,2013-01-15 04:45:40,12005852MO40A,,2013-01-11,1,M,arrest case no charge,1,13006894MM10A,(M1),,2013-01-25,Trespass Other Struct/Convey,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-12,Risk of Violence,3,Low,2013-01-12,2013-01-11,2013-01-15,30,3,13,1,1\r\n1611,roderick goddard,roderick,goddard,2013-03-30,Male,1968-05-28,47,Greater than 45,African-American,0,3,0,0,4,0,2013-03-30 03:56:44,2013-03-30 07:56:58,13004577CF10A,2013-03-30,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-30,Risk of Violence,2,Low,2013-03-30,2013-03-30,2013-03-30,4,0,1098,0,0\r\n1613,melek rodney,melek,rodney,2013-03-04,Male,1980-01-12,36,25 - 45,African-American,0,3,0,0,2,-2,2013-03-02 08:36:51,2013-03-03 08:52:32,13003151CF10A,2013-03-02,,2,F,Crim Use of Personal ID Info,1,16000286MM20A,(M1),,2016-01-20,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2014-07-08,2014-07-14,2,0,491,0,0\r\n1615,crystal lyerla,crystal,lyerla,2013-11-08,Female,1977-06-22,38,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-07 02:09:05,2013-11-08 09:00:47,13015557CF10A,2013-11-07,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2013-11-07,2013-11-08,0,0,875,0,0\r\n1618,gregory lundy,gregory,lundy,2014-03-13,Male,1980-11-13,35,25 - 45,Other,0,1,0,0,0,-1,2014-03-12 03:20:25,2014-03-14 09:36:01,14003518CF10A,2014-03-12,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-13,Risk of Violence,1,Low,2014-03-13,2014-03-12,2014-03-14,0,1,750,0,0\r\n1620,alan suarezmesa,alan,suarezmesa,2013-12-16,Male,1963-01-22,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-15 11:06:25,2013-12-16 08:27:56,13017337CF10A,2013-12-15,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,0,0,837,0,0\r\n1622,carlwell wilson,carlwell,wilson,2013-03-10,Male,1962-10-20,53,Greater than 45,African-American,0,3,0,0,2,-1,2013-03-09 09:26:47,2013-03-10 01:02:25,13003508CF10A,2013-03-09,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-10,Risk of Violence,1,Low,2013-03-10,2013-03-09,2013-03-10,2,0,1118,0,0\r\n1623,edward johnson,edward,johnson,2013-10-22,Male,1958-10-07,57,Greater than 45,African-American,0,7,0,0,19,-1,2013-10-21 11:00:46,2014-02-16 03:07:18,13016096CF10A,2013-10-21,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-22,Risk of Violence,4,Low,2013-10-22,2013-10-21,2014-02-16,19,117,892,0,0\r\n1624,jamar franklin,jamar,franklin,2013-09-27,Male,1993-11-04,22,Less than 25,African-American,0,8,0,0,5,-1,2013-09-26 03:08:39,2013-10-15 06:00:47,13011545CF10A,,2013-09-26,1,F,arrest case no charge,1,15007280CF10A,(F2),54,2014-06-01,Lewd/Lasc Battery Pers 12+/<16,2014-07-25,2014-09-01,,0,,,,,Risk of Recidivism,8,High,2013-09-27,Risk of Violence,5,Medium,2013-09-27,2014-04-09,2014-04-24,5,18,194,0,1\r\n1625,deon jackson,deon,jackson,2013-02-19,Male,1994-10-31,21,Less than 25,African-American,0,10,0,0,0,-5,2013-02-14 06:35:26,2013-02-15 07:40:52,13002307CF10A,2013-02-14,,5,F,Grand Theft in the 3rd Degree,1,13015785TC10A,(M2),0,2013-04-11,Operating W/O Valid License,2013-04-11,2013-04-12,,1,14009181MM10A,(M1),2014-06-10,Battery,Risk of Recidivism,10,High,2013-02-19,Risk of Violence,9,High,2013-02-19,2013-04-11,2013-04-12,0,0,51,1,1\r\n1626,matthew watson,matthew,watson,2013-04-27,Male,1990-02-27,26,25 - 45,African-American,0,3,0,0,0,-1,2013-04-26 05:44:15,2013-04-27 08:57:11,13006012CF10A,2013-04-26,,1,F,Carrying Concealed Firearm,1,14000326CF10A,(F3),1,2014-01-08,\"Poss3,4 Methylenedioxymethcath\",2014-01-09,2014-01-10,,0,,,,,Risk of Recidivism,3,Low,2013-04-27,Risk of Violence,3,Low,2013-04-27,2014-01-09,2014-01-10,0,0,256,1,1\r\n1627,yashell eaton,yashell,eaton,2013-01-30,Female,1991-10-10,24,Less than 25,African-American,0,3,0,0,1,279,2013-11-05 01:27:08,2013-11-19 05:29:00,12018695CF10A,2012-12-26,,35,F,Aggravated Assault W/dead Weap,1,15002706MM20A,(M1),,2015-10-15,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-30,Risk of Violence,4,Low,2013-01-30,2013-11-05,2013-11-19,1,0,279,0,0\r\n1629,berton michel,berton,michel,2014-02-09,Male,1988-09-09,27,25 - 45,African-American,0,5,0,0,2,-1,2014-02-08 07:03:51,2014-03-01 05:08:57,14001777CF10A,2014-02-08,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-09,Risk of Violence,4,Low,2014-02-09,2014-02-08,2014-03-01,2,20,782,0,0\r\n1630,elexis garcia,elexis,garcia,2013-05-25,Female,1966-06-14,49,Greater than 45,Caucasian,0,5,0,0,4,0,2013-05-25 12:09:30,2013-05-29 05:21:54,12010393CF10A,,2013-05-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-25,Risk of Violence,1,Low,2013-05-25,2013-05-25,2013-05-29,4,4,1042,0,0\r\n1631,raymond rakoski,raymond,rakoski,2013-10-08,Male,1968-06-09,47,Greater than 45,Caucasian,0,3,0,0,1,-1,2013-10-07 11:30:18,2013-10-08 08:26:31,13014082CF10A,2013-10-07,,1,F,Possession of Cocaine,1,15003313MM10A,(M1),0,2015-03-20,Battery,2015-03-20,2015-07-28,,1,15003313MM10A,(M1),2015-03-20,Battery,Risk of Recidivism,3,Low,2013-10-08,Risk of Violence,1,Low,2013-10-08,2015-03-20,2015-07-28,1,0,528,1,1\r\n1632,josue pierre,josue,pierre,2014-05-30,Male,1985-12-28,30,25 - 45,African-American,0,10,0,0,8,-1,2014-05-29 10:12:37,2014-05-31 03:35:37,14007471CF10A,2014-05-29,,1,F,Possession of Cocaine,1,14021382MU10A,(M1),0,2014-06-09,Possess Cannabis/20 Grams Or Less,2014-06-09,2014-10-11,,0,,,,,Risk of Recidivism,10,High,2014-05-30,Risk of Violence,5,Medium,2014-05-30,2014-06-09,2014-10-11,8,1,10,1,1\r\n1634,moris lucero,moris,lucero,2013-03-30,Male,1971-11-15,44,25 - 45,Caucasian,0,1,0,0,3,0,2013-03-30 04:02:21,2013-03-30 08:06:38,13004561CF10A,2013-03-30,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-30,Risk of Violence,1,Low,2013-03-30,2013-03-30,2013-03-30,3,0,1098,0,0\r\n1637,dakenson placide,dakenson,placide,2013-06-10,Male,1981-12-09,34,25 - 45,African-American,0,1,0,0,1,-17,2013-05-24 11:07:40,2013-05-26 01:55:21,13007416CF10A,2013-05-24,,17,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-10,Risk of Violence,1,Low,2013-06-10,2013-05-24,2013-05-26,1,0,1026,0,0\r\n1638,fernando walker,fernando,walker,2013-10-04,Male,1970-09-18,45,Greater than 45,African-American,0,3,0,0,10,-1,2013-10-03 02:44:50,2013-10-04 08:37:26,13013909CF10A,2013-10-03,,1,F,Aggrav Battery w/Deadly Weapon,1,15054085TC40A,(M2),,2015-09-10,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-04,Risk of Violence,1,Low,2013-10-04,2013-10-03,2013-10-04,10,0,706,1,1\r\n1639,harold coronado-cruz,harold,coronado-cruz,2013-12-13,Male,1977-08-04,38,25 - 45,Hispanic,0,4,0,0,0,-1,2013-12-12 01:10:17,2013-12-13 03:24:28,13017189CF10A,2013-12-12,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-13,Risk of Violence,5,Medium,2013-12-13,2013-12-12,2013-12-13,0,0,840,0,0\r\n1640,michael phelan,michael,phelan,2013-01-03,Male,1965-05-08,50,Greater than 45,Caucasian,0,1,0,0,2,0,2013-01-03 02:20:43,2013-01-03 10:00:03,13000195MM10A,2013-01-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2013-01-03,2013-01-03,2,0,1184,0,0\r\n1642,preston roman,preston,roman,2014-03-18,Male,1986-10-09,29,25 - 45,Caucasian,0,6,0,0,1,0,2014-03-18 03:06:23,2014-03-18 08:25:34,14004701MM10A,2014-03-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-18,Risk of Violence,4,Low,2014-03-18,2014-03-18,2014-03-18,1,0,745,0,0\r\n1643,lance hayes,lance,hayes,2013-04-27,Male,1989-12-12,26,25 - 45,Caucasian,0,4,0,0,0,0,2013-04-27 02:42:38,2013-04-27 07:36:35,13006071CF10A,2013-04-27,,0,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-27,Risk of Violence,4,Low,2013-04-27,2013-04-27,2013-04-27,0,0,1070,0,0\r\n1644,randy garciagarcia,randy,garciagarcia,2013-11-29,Male,1971-06-08,44,25 - 45,Hispanic,0,1,0,0,2,,,,10008298MM10A,,2011-07-13,870,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-29,Risk of Violence,1,Low,2013-11-29,,,2,0,854,0,0\r\n1645,lureine faustin,lureine,faustin,2014-04-03,Female,1993-10-31,22,Less than 25,African-American,0,6,0,0,1,-1,2014-04-02 07:18:56,2014-04-03 08:35:35,14004601CF10A,2014-04-02,,1,F,Grand Theft in the 3rd Degree,1,15044948TC20A,(M2),,2015-07-24,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2014-04-03,Risk of Violence,6,Medium,2014-04-03,2014-07-17,2014-07-17,1,0,105,0,1\r\n1646,maximo castro,maximo,castro,2013-04-05,Male,1968-09-12,47,Greater than 45,Hispanic,0,1,0,0,0,0,2013-04-05 02:12:18,2013-04-06 05:06:49,13006562MM10A,2013-04-05,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-05,Risk of Violence,1,Low,2013-04-05,2013-04-05,2013-04-06,0,1,1092,0,0\r\n1648,lonny paul,lonny,paul,2013-11-16,Male,1966-12-21,49,Greater than 45,Caucasian,0,1,0,0,0,0,2013-11-16 02:12:56,2013-11-16 08:03:22,13015923CF10A,2013-11-16,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-16,Risk of Violence,1,Low,2013-11-16,2013-11-16,2013-11-16,0,0,867,0,0\r\n1651,bernard crenshaw,bernard,crenshaw,2013-03-13,Male,1967-02-23,49,Greater than 45,African-American,0,3,0,0,1,0,2013-03-13 01:26:25,2013-04-01 09:47:06,13003696CF10A,2013-03-13,,0,F,Resist Officer w/Violence,1,13007610CF10A,(M2),0,2013-05-28,Trespass Structure/Conveyance,2013-05-28,2013-08-02,,1,13007610CF10A,(F3),2013-05-28,Battery on Law Enforc Officer,Risk of Recidivism,3,Low,2013-03-13,Risk of Violence,1,Low,2013-03-13,2013-05-28,2013-08-02,1,19,76,1,1\r\n1652,robert reeves,robert,reeves,2013-03-21,Male,1957-01-13,59,Greater than 45,Caucasian,0,1,0,0,2,0,2013-03-21 12:43:41,2013-04-03 07:34:10,13003954CF10A,,2013-03-21,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,1,Low,2013-03-21,2013-03-21,2013-04-03,2,13,1107,0,0\r\n1653,christian hughes,christian,hughes,2013-11-22,Male,1983-12-30,32,25 - 45,Caucasian,0,5,0,0,6,-29,2013-10-24 12:41:00,2013-11-21 09:37:40,13020104MM10A,2013-10-23,,30,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-22,Risk of Violence,4,Low,2013-11-22,2013-10-24,2013-11-21,6,0,861,0,0\r\n1655,courtland rich,courtland,rich,2013-01-22,Male,1992-04-04,24,Less than 25,African-American,0,2,0,2,1,0,2013-01-22 12:22:03,2013-01-22 01:49:40,13003080TC10A,2013-01-21,,1,M,Susp Drivers Lic 1st Offense,1,14002053CF10A,(F2),0,2014-02-13,Aggravated Battery / Pregnant,2014-02-13,2014-02-14,,1,14002053CF10A,(F2),2014-02-13,Aggravated Battery / Pregnant,Risk of Recidivism,2,Low,2013-01-22,Risk of Violence,4,Low,2013-01-22,2014-02-13,2014-02-14,1,0,387,1,1\r\n1656,alberto lorenzo-luaces,alberto,lorenzo-luaces,2014-01-06,Male,1975-08-24,40,25 - 45,Hispanic,0,2,0,0,0,-2,2014-01-04 01:41:51,2014-01-05 08:41:28,14000372MU10A,2014-01-03,,3,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-01-04,2014-01-05,0,0,816,0,0\r\n1657,timothy davis,timothy,davis,2013-02-02,Male,1983-10-19,32,25 - 45,African-American,0,1,0,0,0,0,2013-02-02 12:08:15,2013-02-02 05:41:52,13001647CF10A,2013-02-01,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-02,Risk of Violence,2,Low,2013-02-02,2013-02-02,2013-02-02,0,0,1154,0,0\r\n1658,roxana ebanks,roxana,ebanks,2013-05-20,Female,1961-06-28,54,Greater than 45,Hispanic,0,1,0,0,0,0,2013-05-20 03:07:28,2013-05-20 07:36:27,13009723MM10A,2013-05-20,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-20,Risk of Violence,1,Low,2013-05-20,2013-05-20,2013-05-20,0,0,1047,0,0\r\n1660,tommy turner,tommy,turner,2013-02-06,Male,1988-09-13,27,25 - 45,African-American,0,10,0,1,9,-1,2013-02-05 11:27:02,2015-04-16 06:28:26,12016850CF10A,,2013-02-06,0,F,arrest case no charge,1,13003421CF10A,(F3),,2013-03-06,Fraudulent Use Credit Card,,,,1,13003421CF10A,(F1),2013-03-06,Robbery W/Deadly Weapon,Risk of Recidivism,10,High,2013-02-06,Risk of Violence,5,Medium,2013-02-06,2013-02-05,2015-04-16,9,0,28,1,1\r\n1663,magda ramos,magda,ramos,2013-02-12,Female,1975-10-09,40,25 - 45,Hispanic,0,1,0,0,1,,,,12023207MM10A,2012-11-11,,93,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-12,Risk of Violence,1,Low,2013-02-12,,,1,0,1144,0,0\r\n1664,jose diz,jose,diz,2013-02-07,Male,1991-01-28,25,25 - 45,Caucasian,0,8,0,0,2,0,2013-02-07 03:40:18,2013-02-19 08:46:34,13005872TC10A,2013-02-07,,0,M,Opert With Susp DL 2nd Offens,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-07,Risk of Violence,4,Low,2013-02-07,2014-07-17,2014-07-24,2,12,525,0,0\r\n1665,ephrain caneus,ephrain,caneus,2013-03-27,Male,1982-03-07,34,25 - 45,African-American,0,6,0,0,1,,,,08003375MM20A,2008-10-14,,1625,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-27,Risk of Violence,7,Medium,2013-03-27,,,1,0,1101,0,0\r\n1666,cynthia nelson,cynthia,nelson,2013-12-06,Female,1953-08-30,62,Greater than 45,Caucasian,0,1,0,0,2,-42,2013-10-25 01:50:43,2013-12-05 09:19:58,13014937CF10A,2013-10-24,,43,F,Aggravated Assault W/o Firearm,1,14000733MM30A,(M1),,2014-04-23,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-06,Risk of Violence,1,Low,2013-12-06,2014-12-08,2014-12-13,2,0,138,1,1\r\n1667,richard carmichael,richard,carmichael,2014-10-20,Male,1995-10-25,20,Less than 25,Caucasian,0,5,0,0,0,-1,2014-10-19 08:36:27,2014-10-20 01:41:49,14015213MM10A,2014-10-19,,1,M,Battery,1,14016480MM10A,(M1),0,2014-11-18,Possess Cannabis/20 Grams Or Less,2014-11-18,2014-11-19,,0,,,,,Risk of Recidivism,5,Medium,2014-10-20,Risk of Violence,6,Medium,2014-10-20,2014-11-18,2014-11-19,0,0,29,1,1\r\n1668,michael mason,michael,mason,2013-03-26,Male,1979-04-08,37,25 - 45,African-American,2,9,0,0,18,-1,2013-03-25 05:57:23,2013-03-26 07:50:11,13007842MM10A,2013-02-27,,27,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-26,Risk of Violence,9,High,2013-03-26,2013-05-16,2013-05-17,18,0,51,0,0\r\n1669,jasmine jacques,jasmine,jacques,2013-01-29,Female,1985-12-23,30,25 - 45,Caucasian,0,10,0,0,5,0,2013-01-29 04:34:17,2013-02-05 09:30:35,13001417CF10A,2013-01-29,,0,F,Tampering With Physical Evidence,1,13017998MM10A,(M1),0,2013-09-21,Unlaw Use False Name/Identity,2013-09-21,2013-10-21,,0,,,,,Risk of Recidivism,10,High,2013-01-29,Risk of Violence,8,High,2013-01-29,2013-09-21,2013-10-21,5,7,235,1,1\r\n1670,kevin eason,kevin,eason,2013-04-05,Male,1992-09-25,23,Less than 25,African-American,0,6,0,0,1,0,2013-04-05 06:11:22,2013-04-06 05:17:31,13004912CF10A,2013-04-05,,0,F,Unauth Poss ID Card or DL,1,14001386CF10A,(M1),1,2014-01-30,Battery,2014-01-31,2014-03-30,,1,14001386CF10A,(F1),2014-01-30,Aggrav Child Abuse-Causes Harm,Risk of Recidivism,6,Medium,2013-04-05,Risk of Violence,6,Medium,2013-04-05,2014-01-08,2014-01-09,1,1,278,0,1\r\n1672,tequisha bradley,tequisha,bradley,2014-03-23,Female,1996-02-27,20,Less than 25,African-American,0,8,0,0,0,0,2014-03-23 12:24:11,2014-03-23 09:07:20,14004082CF10A,2014-03-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-23,Risk of Violence,7,Medium,2014-03-23,2014-03-23,2014-03-23,0,0,740,0,0\r\n1673,wesley bates,wesley,bates,2013-11-21,Male,1986-08-27,29,25 - 45,Caucasian,0,7,0,0,7,-67,2013-09-15 11:28:16,2013-10-31 02:34:47,13017571MM10A,2013-09-15,,67,M,Criminal Mischief Damage <$200,1,14001373MM40A,(M2),,2014-02-28,Petit Theft,,,,1,14011195MM10A,(M1),2014-06-13,Assault On Law Enforc Officer,Risk of Recidivism,7,Medium,2013-11-21,Risk of Violence,6,Medium,2013-11-21,2016-03-17,2016-04-08,7,0,99,1,1\r\n1674,casey jones,casey,jones,2013-09-30,Male,1991-10-02,24,Less than 25,African-American,0,2,0,0,1,-59,2013-08-02 03:49:19,2013-09-29 12:20:02,13010915CF10A,2013-08-01,,60,F,Robbery W/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-30,Risk of Violence,3,Low,2013-09-30,2013-08-02,2013-09-29,1,0,914,0,0\r\n1676,alicia weston,alicia,weston,2014-01-07,Female,1961-12-31,54,Greater than 45,Caucasian,0,3,0,0,1,-48,2013-11-20 08:51:44,2013-12-17 04:04:13,13016119CF10A,2013-11-19,,49,M,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-07,Risk of Violence,2,Low,2014-01-07,2013-11-20,2013-12-17,1,0,815,0,0\r\n1678,fulton pryer,fulton,pryer,2013-02-26,Male,1949-12-21,66,Greater than 45,African-American,0,1,0,0,3,-36,2013-01-21 01:43:02,2013-01-21 08:18:41,13000930CF10A,2013-01-20,,37,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-26,Risk of Violence,1,Low,2013-02-26,2013-06-07,2013-06-08,3,0,101,0,0\r\n1680,alan cross,alan,cross,2013-03-29,Male,1966-02-13,50,Greater than 45,Caucasian,0,2,0,0,8,-14,2013-03-15 12:34:40,2013-03-27 09:11:27,13003756CF10A,,2013-03-15,14,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-29,Risk of Violence,5,Medium,2013-03-29,2013-03-15,2013-03-27,8,0,1099,0,0\r\n1681,gerard gay,gerard,gay,2013-02-05,Male,1965-08-18,50,Greater than 45,African-American,0,2,0,0,7,-1,2013-02-04 07:31:30,2013-02-05 01:26:00,13001728CF10A,2013-02-04,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-05,Risk of Violence,1,Low,2013-02-05,2013-02-04,2013-02-05,7,0,1151,0,0\r\n1682,paul sifuentes,paul,sifuentes,2013-04-20,Male,1975-07-19,40,25 - 45,Caucasian,0,1,0,0,3,-1,2013-04-19 04:19:17,2013-04-20 09:50:23,13005624CF10A,2013-04-19,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-20,Risk of Violence,1,Low,2013-04-20,2013-04-19,2013-04-20,3,0,1077,0,0\r\n1683,krystal strobridge,krystal,strobridge,2013-01-17,Female,1986-01-12,30,25 - 45,African-American,0,7,0,0,4,213,2013-08-18 06:15:00,2013-08-19 05:48:42,11037540TC10A,2011-07-24,,543,M,Operating W/O Valid License,1,13017910MM10A,(M1),0,2013-08-18,Petit Theft $100- $300,2013-08-18,2013-08-19,,1,15001791CF10A,(F3),2015-01-01,Child Abuse,Risk of Recidivism,7,Medium,2013-01-17,Risk of Violence,6,Medium,2013-01-17,2013-08-18,2013-08-19,4,0,213,1,1\r\n1684,ashley deal,ashley,deal,2013-02-07,Female,1992-01-27,24,Less than 25,Caucasian,0,7,0,0,2,-1,2013-02-06 04:14:19,2013-02-08 08:31:47,12017180CF10A,,2013-02-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-07,Risk of Violence,5,Medium,2013-02-07,2013-07-27,2013-09-06,2,1,170,0,0\r\n1685,alexander vargas,alexander,vargas,2013-03-25,Male,1991-11-25,24,Less than 25,Hispanic,0,6,0,0,0,0,2013-03-25 05:10:50,2013-03-26 01:48:59,13004307CF10A,2013-03-25,,0,F,Felony Battery,1,13020800MM10A,(M1),614,2013-08-05,Possess Cannabis/20 Grams Or Less,2015-04-11,2015-04-17,,0,,,,,Risk of Recidivism,6,Medium,2013-03-25,Risk of Violence,5,Medium,2013-03-25,2013-03-25,2013-03-26,0,1,133,1,1\r\n1686,lonnae baker,lonnae,baker,2014-05-09,Female,1992-07-09,23,Less than 25,African-American,0,5,0,0,3,-1,2014-05-08 09:00:55,2014-05-09 01:44:12,14006418CF10A,,2014-05-08,1,F,arrest case no charge,1,14041490TC20A,(M2),55,2014-05-23,Operating W/O Valid License,2014-07-17,2014-07-29,,1,16000543MM10A,(M1),2016-01-16,Battery,Risk of Recidivism,5,Medium,2014-05-09,Risk of Violence,3,Low,2014-05-09,2016-01-17,2016-02-24,3,0,14,1,1\r\n1688,jovaugh smith,jovaugh,smith,2013-01-26,Male,1991-12-26,24,Less than 25,African-American,0,8,0,0,4,,,,13001812MM10A,2013-01-25,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,1,13007144MM10A,(M1),,2013-04-13,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2013-01-26,Risk of Violence,5,Medium,2013-01-26,,,4,0,77,1,1\r\n1689,donald downing,donald,downing,2013-05-05,Male,1962-02-11,54,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-05-04 03:59:27,2013-05-06 04:56:00,13008650MM10A,2013-05-04,,1,M,Operating W/O Valid License,1,14005318TC10A,(M2),0,2014-02-10,Operating W/O Valid License,2014-02-10,2014-02-11,,0,,,,,Risk of Recidivism,1,Low,2013-05-05,Risk of Violence,1,Low,2013-05-05,2014-02-10,2014-02-11,3,1,281,1,1\r\n1691,demetrius richardson,demetrius,richardson,2013-03-15,Male,1991-03-10,25,25 - 45,Caucasian,0,10,0,2,4,-10,2013-03-05 04:57:56,2013-03-06 08:00:56,13007819MM10A,2013-03-11,,4,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-03-15,Risk of Violence,7,Medium,2013-03-15,2013-08-12,2013-11-01,4,0,150,0,0\r\n1692,edy chavarriacalderon,edy,chavarriacalderon,2013-07-26,Male,1969-06-19,46,Greater than 45,Caucasian,0,1,0,0,1,-2,2013-07-24 11:48:45,2013-07-26 10:35:23,13014036MM10A,2013-07-24,,2,M,Viol Pretrial Release Dom Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-26,Risk of Violence,1,Low,2013-07-26,2013-07-24,2013-07-26,1,0,980,0,0\r\n1696,karen colato,karen,colato,2013-12-02,Female,1980-11-17,35,25 - 45,Hispanic,0,8,0,0,10,-40,2013-10-23 11:36:27,2013-11-23 05:17:01,13016099CF10A,2013-10-23,,40,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-02,Risk of Violence,5,Medium,2013-12-02,2013-10-23,2013-11-23,10,0,851,0,0\r\n1697,orlando kirlew,orlando,kirlew,2013-01-08,Male,1990-09-07,25,25 - 45,Other,0,5,0,0,1,-1,2013-01-07 07:39:01,2013-09-30 08:47:34,13000289CF10A,2013-01-07,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-08,Risk of Violence,3,Low,2013-01-08,2013-01-07,2013-09-30,1,265,1179,0,0\r\n1698,vanessa cardellaadams,vanessa,cardellaadams,2013-10-01,Female,1993-06-03,22,Less than 25,Caucasian,0,3,0,0,0,-1,2013-09-30 02:52:30,2013-09-30 02:08:31,13018595MM10A,2013-09-30,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-01,Risk of Violence,4,Low,2013-10-01,2013-09-30,2013-09-30,0,0,913,0,0\r\n1699,elizabeth velazquezlugo,elizabeth,velazquezlugo,2013-12-13,Female,1983-05-28,32,25 - 45,Caucasian,0,2,0,0,1,-1,2013-12-12 03:30:30,2013-12-14 04:07:22,13017184CF10A,2013-12-12,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-13,Risk of Violence,1,Low,2013-12-13,2013-12-12,2013-12-14,1,1,840,0,0\r\n1700,kyron jones,kyron,jones,2013-04-27,Male,1990-10-09,25,25 - 45,African-American,0,3,0,0,0,-1,2013-04-26 03:56:13,2013-04-30 07:29:47,13008102MM10A,2013-04-26,,1,M,Resist/Obstruct W/O Violence,1,14000528MM10A,(M1),0,2014-01-09,Possess Cannabis/20 Grams Or Less,2014-01-09,2014-01-10,,0,,,,,Risk of Recidivism,3,Low,2013-04-27,Risk of Violence,4,Low,2013-04-27,2014-01-09,2014-01-10,0,3,257,1,1\r\n1701,samuel jeanhilaire,samuel,jeanhilaire,2014-02-12,Male,1993-06-11,22,Less than 25,African-American,0,8,0,0,3,50,2014-04-03 09:47:29,2014-04-03 08:42:21,12000890CF10A,,2013-04-10,308,F,arrest case no charge,1,14016017CF10A,(M1),1,2014-11-30,Resist/Obstruct W/O Violence,2014-12-01,2015-02-26,,0,,,,,Risk of Recidivism,8,High,2014-02-12,Risk of Violence,7,Medium,2014-02-12,2014-04-03,2014-04-03,3,0,50,0,1\r\n1702,frantz lamour,frantz,lamour,2013-06-03,Male,1983-01-31,33,25 - 45,African-American,0,9,0,0,16,-2,2013-06-01 11:00:47,2013-06-02 08:14:30,13007802CF10A,2013-06-01,,2,F,Driving While License Revoked,1,14004154CF10A,(M1),0,2014-03-24,Unlaw Pos of Prson ID of another,2014-03-24,2014-03-29,,0,,,,,Risk of Recidivism,9,High,2013-06-03,Risk of Violence,3,Low,2013-06-03,2014-03-24,2014-03-29,16,0,294,1,1\r\n1704,susana colon,susana,colon,2013-01-01,Female,1966-10-17,49,Greater than 45,Caucasian,0,1,0,0,0,127,2013-05-08 04:33:15,2013-05-08 07:17:27,13000006MM10A,2012-12-31,,1,M,Battery,1,13008901MO10A,(MO3),0,2013-05-08,Disorderly Conduct,2013-05-08,2013-05-08,,0,,,,,Risk of Recidivism,1,Low,2013-01-01,Risk of Violence,1,Low,2013-01-01,2013-05-08,2013-05-08,0,0,127,0,1\r\n1705,donte dixon,donte,dixon,2013-08-22,Male,1986-01-30,30,25 - 45,African-American,0,5,0,0,10,92,2013-11-22 07:21:10,2014-03-07 12:51:28,12006838CF10A,,2013-02-05,198,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-22,Risk of Violence,7,Medium,2013-08-22,2013-11-22,2014-03-07,10,0,92,0,0\r\n1706,andy wells,andy,wells,2014-06-02,Male,1983-03-08,33,25 - 45,African-American,0,5,0,0,4,-1,2014-06-01 09:28:27,2014-06-03 03:12:10,14008729MM10A,2014-06-01,,1,M,Battery,1,14011982MM10A,(M1),1,2014-08-06,Battery,2014-08-07,2014-08-08,,1,14011982MM10A,(M1),2014-08-06,Battery,Risk of Recidivism,5,Medium,2014-06-02,Risk of Violence,6,Medium,2014-06-02,2014-06-01,2014-06-03,4,1,65,1,1\r\n1707,nolasco pena,nolasco,pena,2013-01-03,Male,1991-06-22,24,Less than 25,African-American,0,2,0,0,0,0,2013-01-03 12:11:06,2013-01-03 07:16:21,13000095CF10A,2013-01-02,,1,F,Poss Unlaw Issue Driver Licenc,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-03,Risk of Violence,3,Low,2013-01-03,2013-01-03,2013-01-03,0,0,1184,0,0\r\n1709,jason desmangles,jason,desmangles,2014-02-11,Male,1982-11-19,33,25 - 45,African-American,0,9,0,1,12,-1,2014-02-10 04:52:50,2014-02-12 09:28:02,14002281MM10A,2014-02-10,,1,M,Battery,1,14009973MM10A,(M1),0,2014-06-26,Viol Pretrial Release Dom Viol,2014-06-26,2014-07-16,,0,,,,,Risk of Recidivism,9,High,2014-02-11,Risk of Violence,7,Medium,2014-02-11,2014-06-26,2014-07-16,12,1,135,1,1\r\n1710,marc corley,marc,corley,2013-04-01,Male,1978-07-20,37,25 - 45,Caucasian,0,2,0,0,0,-1,2013-03-31 03:19:09,2013-04-01 01:49:26,13006170MM10A,2013-03-30,,2,M,Susp Drivers Lic 1st Offense,1,15004715CF10A,(F3),-1,2015-04-10,Grand Theft in the 3rd Degree,2015-04-09,2015-04-11,,0,,,,,Risk of Recidivism,2,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2015-04-09,2015-04-11,0,0,739,1,0\r\n1711,christina garrison,christina,garrison,2014-01-07,Female,1976-01-29,40,25 - 45,Caucasian,0,1,0,0,0,0,2014-01-07 02:07:12,2014-01-07 08:02:01,14000280MM10A,2014-01-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-07,Risk of Violence,1,Low,2014-01-07,2014-01-07,2014-01-07,0,0,815,0,0\r\n1714,marsell mccullough,marsell,mccullough,2013-04-30,Male,1989-01-02,27,25 - 45,Caucasian,0,10,0,0,1,506,2014-09-18 12:45:14,2015-05-06 04:54:06,12004080CF10A,2012-03-17,,409,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-30,Risk of Violence,10,High,2013-04-30,2014-09-18,2015-05-06,1,0,506,0,0\r\n1715,earl williams,earl,williams,2013-03-25,Male,1972-07-16,43,25 - 45,African-American,0,6,0,0,9,-1,2013-03-24 08:22:40,2013-03-25 07:55:14,13005794CF10A,2013-03-24,,1,F,Felony Battery,1,13005994MM10A,(M1),0,2013-03-27,Viol Prot Injunc Repeat Viol,2013-03-27,2013-06-14,,1,15006683MM10A,(M1),2015-06-21,Battery,Risk of Recidivism,6,Medium,2013-03-25,Risk of Violence,2,Low,2013-03-25,2013-03-27,2013-06-14,9,0,2,1,1\r\n1716,chad bouma,chad,bouma,2013-09-16,Male,1989-08-31,26,25 - 45,Caucasian,0,4,0,0,11,-56,2013-07-22 06:01:53,2013-09-16 12:04:00,13011493CF10A,,2013-08-14,33,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-16,Risk of Violence,3,Low,2013-09-16,2013-07-22,2013-09-16,11,0,928,0,0\r\n1717,norence baker,norence,baker,2013-09-06,Male,1980-09-21,35,25 - 45,African-American,0,6,0,0,5,-1,2013-09-05 12:06:51,2013-09-07 02:41:31,13012549CF10A,2013-09-05,,1,F,Driving While License Revoked,1,14006802TC10A,(M1),156,2014-01-25,Opert With Susp DL 2nd Offens,2014-06-30,2014-07-12,,0,,,,,Risk of Recidivism,6,Medium,2013-09-06,Risk of Violence,7,Medium,2013-09-06,2013-09-05,2013-09-07,5,1,141,1,1\r\n1718,justin floyd,justin,floyd,2013-05-21,Male,1991-01-26,25,25 - 45,African-American,0,9,1,0,11,-1,2013-05-20 05:02:22,2013-05-27 02:35:13,13007190CF10A,2013-05-20,,1,F,Grand Theft in the 3rd Degree,1,13014216CF10A,(F3),0,2013-10-10,Aggravated Assault W/Dead Weap,2013-10-10,2014-06-19,,1,13014216CF10A,(F3),2013-10-10,Aggravated Assault W/Dead Weap,Risk of Recidivism,9,High,2013-05-21,Risk of Violence,8,High,2013-05-21,2013-10-10,2014-06-19,11,6,142,1,1\r\n1719,christopher dada,christopher,dada,2014-02-18,Male,1954-05-29,61,Greater than 45,African-American,0,1,0,0,1,0,2014-02-18 02:36:01,2014-02-18 08:33:12,14002279CF10A,2014-02-17,,1,F,Felony Driving While Lic Suspd,1,15024961TC40A,(M2),,2015-04-15,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-18,Risk of Violence,1,Low,2014-02-18,2014-02-18,2014-02-18,1,0,421,1,1\r\n1724,jeffrey basham,jeffrey,basham,2013-09-27,Male,1963-02-27,53,Greater than 45,Caucasian,0,6,0,0,1,-246,2013-01-24 05:33:23,2013-03-16 05:49:00,13001168CF10A,,2013-01-24,246,F,arrest case no charge,1,15008489TC20A,(M2),,2015-01-28,Unlaw LicTag/Sticker Attach,,,,1,15009771MO10A,(MO3),2015-09-04,Battery,Risk of Recidivism,6,Medium,2013-09-27,Risk of Violence,2,Low,2013-09-27,2013-01-24,2013-03-16,1,0,488,1,1\r\n1725,yesenia rosas,yesenia,rosas,2013-01-24,Female,1989-03-04,27,25 - 45,Hispanic,0,3,0,0,0,,,,13001074CF10A,2013-01-23,,1,F,Grand Theft in the 3rd Degree,1,15018081TC20A,(M2),,2015-03-12,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-24,Risk of Violence,3,Low,2013-01-24,,,0,0,777,1,0\r\n1727,patsy kennedy,patsy,kennedy,2013-02-20,Female,1964-02-12,52,Greater than 45,African-American,0,1,0,0,1,-28,2013-01-23 11:28:00,2013-01-24 05:00:54,13001073CF10A,2013-01-23,,28,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-01-23,2013-01-24,1,0,1136,0,0\r\n1728,john mccabe,john,mccabe,2013-02-06,Male,1989-11-16,26,25 - 45,Caucasian,0,9,0,0,7,81,2013-04-28 09:16:12,2013-09-19 05:44:37,12022505MM10A,2012-10-31,,98,M,Petit Theft,1,13006449CF10A,(F3),,2013-04-01,False Ownership Info/Pawn Item,,,,0,,,,,Risk of Recidivism,9,High,2013-02-06,Risk of Violence,7,Medium,2013-02-06,2014-07-20,2014-07-25,7,0,54,1,1\r\n1729,kenneth boyd,kenneth,boyd,2013-04-08,Male,1976-07-28,39,25 - 45,African-American,0,2,0,0,1,0,2013-04-08 12:51:19,2013-04-08 10:06:09,13006650MM10A,2013-04-07,,1,M,Possess Cannabis/20 Grams Or Less,1,14002514TC10A,(M2),,2013-08-20,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-08,Risk of Violence,1,Low,2013-04-08,2013-04-08,2013-04-08,1,0,134,1,1\r\n1730,arthur mcqueen,arthur,mcqueen,2014-03-04,Male,1968-08-25,47,Greater than 45,African-American,0,4,0,0,5,-1,2014-03-03 09:34:24,2014-03-04 09:28:47,14005532MM10A,,2014-03-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-04,Risk of Violence,1,Low,2014-03-04,2014-03-03,2014-03-04,5,0,759,0,0\r\n1731,kenneth cash,kenneth,cash,2013-02-08,Male,1966-01-03,50,Greater than 45,Caucasian,0,1,0,0,1,,,,12013597CF10A,2012-09-14,,147,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-08,Risk of Violence,1,Low,2013-02-08,,,1,0,1148,0,0\r\n1733,brenda inman,brenda,inman,2013-05-23,Female,1963-06-17,52,Greater than 45,Caucasian,0,7,0,0,6,0,2013-05-23 01:18:11,2013-06-25 08:29:01,08017042MM10A,2008-05-17,,1832,M,Theft/To Deprive,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-23,Risk of Violence,2,Low,2013-05-23,2013-05-23,2013-06-25,6,33,1044,0,0\r\n1734,vanessa albino,vanessa,albino,2013-01-02,Female,1974-07-20,41,25 - 45,Caucasian,0,1,0,0,0,,,,12026484MM10A,2012-12-30,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-02,Risk of Violence,1,Low,2013-01-02,,,0,0,1185,0,0\r\n1735,jeffrey dolgan,jeffrey,dolgan,2014-02-03,Male,1978-11-13,37,25 - 45,Caucasian,0,1,0,0,0,0,2014-02-03 03:16:01,2014-02-03 08:15:52,14001871MM10A,2014-02-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-03,Risk of Violence,2,Low,2014-02-03,2014-02-03,2014-02-03,0,0,788,0,0\r\n1736,laque vallejo,laque,vallejo,2013-08-23,Female,1992-02-09,24,Less than 25,African-American,0,7,0,0,0,-1,2013-08-22 07:13:26,2013-08-23 07:19:05,13011801CF10A,2013-08-22,,1,F,Retail Theft $300 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-23,Risk of Violence,5,Medium,2013-08-23,2013-08-22,2013-08-23,0,0,952,0,0\r\n1737,moeshae reed,moeshae,reed,2013-09-10,Female,1981-09-09,34,25 - 45,African-American,0,9,0,0,14,-1,2013-09-09 10:18:23,2013-09-13 08:09:26,13012724CF10A,2013-09-09,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-10,Risk of Violence,8,High,2013-09-10,2014-07-17,2014-08-20,14,3,310,0,0\r\n1741,laricky asbury,laricky,asbury,2013-02-09,Male,1991-12-22,24,Less than 25,African-American,0,6,0,0,5,86,2013-05-06 07:41:47,2013-08-31 05:22:18,13001995CF10A,2013-02-08,,1,F,Uttering a Forged Instrument,1,13006469CF10A,(M1),0,2013-05-06,Resist/Obstruct W/O Violence,2013-05-06,2013-08-31,,0,,,,,Risk of Recidivism,6,Medium,2013-02-09,Risk of Violence,4,Low,2013-02-09,2013-05-06,2013-08-31,5,0,86,1,1\r\n1742,tercel reckley,tercel,reckley,2013-08-16,Male,1995-07-15,20,Less than 25,Other,0,4,0,0,0,-1,2013-08-15 12:33:08,2013-08-27 08:48:53,13011472CF10A,2013-08-15,,1,M,Burglary Dwelling Occupied,1,15023345TC10A,(M2),,2015-07-22,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-16,Risk of Violence,7,Medium,2013-08-16,2013-08-15,2013-08-27,0,11,705,1,1\r\n1746,michael vaia,michael,vaia,2013-05-16,Male,1990-08-25,25,25 - 45,Caucasian,0,3,0,0,1,0,2013-05-16 03:10:52,2013-05-16 08:34:08,13009472MM10A,2013-05-16,,0,M,Possess Cannabis/20 Grams Or Less,1,13036749TC20A,(M2),,2013-06-08,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-16,Risk of Violence,3,Low,2013-05-16,2013-10-06,2014-01-21,1,0,23,1,1\r\n1747,christopher babecki,christopher,babecki,2013-12-11,Male,1984-05-06,31,25 - 45,Caucasian,0,5,0,0,3,-37,2013-11-04 09:31:52,2013-12-06 11:28:52,13020821MM10A,2013-11-04,,37,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-11,Risk of Violence,7,Medium,2013-12-11,2014-05-21,2014-05-28,3,0,161,0,0\r\n1749,sheila trovato,sheila,trovato,2013-10-03,Female,1953-10-02,62,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-03 02:12:45,2013-10-03 08:30:26,13018829MM10A,2013-10-02,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-10-03,2013-10-03,0,0,911,0,0\r\n1750,jordan monagas,jordan,monagas,2014-05-23,Male,1993-02-24,23,Less than 25,Caucasian,0,3,0,0,0,-1,2014-05-22 03:25:55,2014-05-23 10:51:10,14007179CF10A,,2014-05-22,1,F,arrest case no charge,1,15005451CF10A,(F3),0,2015-04-25,Possession of Ethylone,2015-04-25,2015-04-28,,0,,,,,Risk of Recidivism,3,Low,2014-05-23,Risk of Violence,5,Medium,2014-05-23,2015-04-25,2015-04-28,0,0,337,1,1\r\n1752,cynthia cardoza,cynthia,cardoza,2013-03-20,Female,1956-02-27,60,Greater than 45,Caucasian,0,7,0,0,0,0,2013-03-20 03:59:30,2013-04-02 11:35:13,13004060CF10A,2013-03-20,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-20,Risk of Violence,3,Low,2013-03-20,2013-03-20,2013-04-02,0,13,1108,0,0\r\n1754,norberto garcia,norberto,garcia,2014-03-03,Male,1980-11-27,35,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-02 08:33:08,2014-03-03 09:10:46,14003572MM10A,2014-03-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-02,2014-03-03,0,0,760,0,0\r\n1755,samyrah carter,samyrah,carter,2013-10-07,Female,1991-05-12,24,Less than 25,African-American,0,7,0,0,0,-1,2013-10-06 11:32:23,2013-10-07 06:38:36,13014025CF10A,2013-10-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-07,Risk of Violence,5,Medium,2013-10-07,2013-10-06,2013-10-07,0,0,907,0,0\r\n1756,catherine capozzi,catherine,capozzi,2014-01-09,Female,1959-08-03,56,Greater than 45,Caucasian,0,2,0,0,1,-60,2013-11-10 03:07:19,2013-11-14 04:25:14,13015656CF10A,,2013-11-10,60,F,arrest case no charge,1,14012699MM10A,(M1),1,2014-08-23,Battery,2014-08-24,2014-09-04,,1,14012699MM10A,(M1),2014-08-23,Battery,Risk of Recidivism,2,Low,2014-01-09,Risk of Violence,1,Low,2014-01-09,2014-08-24,2014-09-04,1,0,226,1,1\r\n1757,christopher crespo,christopher,crespo,2013-04-26,Male,1985-09-23,30,25 - 45,Caucasian,0,1,0,0,0,0,2013-04-26 04:51:20,2013-04-26 01:38:42,13008070MM10A,2013-04-26,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-26,Risk of Violence,2,Low,2013-04-26,2013-04-26,2013-04-26,0,0,1071,0,0\r\n1759,derrick key,derrick,key,2013-01-15,Male,1974-08-28,41,25 - 45,Caucasian,0,9,0,0,17,171,2013-07-05 04:18:32,2013-08-21 10:32:00,12014461MM10A,2012-07-13,,186,M,Driving License Suspended,1,14003946CF10A,(F3),1,2014-03-20,Robbery Sudd Snatch No Weapon,2014-03-21,2014-10-01,,1,14003946CF10A,(F3),2014-03-20,Robbery Sudd Snatch No Weapon,Risk of Recidivism,9,High,2013-01-15,Risk of Violence,6,Medium,2013-01-15,2013-07-05,2013-08-21,17,0,171,0,1\r\n1760,erik jarovits,erik,jarovits,2014-07-05,Male,1980-06-01,35,25 - 45,Caucasian,0,5,0,0,4,-1,2014-07-04 08:09:39,2014-07-05 10:55:53,14009200CF10A,2014-07-04,,1,F,Felony Driving While Lic Suspd,1,15008310MM10A,(M1),0,2015-08-06,Unlaw Use False Name/Identity,2015-08-06,2015-10-23,,0,,,,,Risk of Recidivism,5,Medium,2014-07-05,Risk of Violence,2,Low,2014-07-05,2015-08-06,2015-10-23,4,0,397,1,1\r\n1764,rachel chamberlain,rachel,chamberlain,2013-12-18,Female,1987-05-31,28,25 - 45,Caucasian,0,4,0,0,0,-1,2013-12-17 03:11:35,2013-12-17 08:52:31,13023371MO10A,2013-12-17,,1,M,Intoxicated/Safety Of Another,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-18,Risk of Violence,3,Low,2013-12-18,2013-12-17,2013-12-17,0,0,835,0,0\r\n1765,tramail kelly,tramail,kelly,2013-09-18,Male,1993-03-02,23,Less than 25,African-American,0,10,1,0,1,689,2015-08-08 12:21:20,2015-08-12 08:08:19,11026244MO10A,2011-11-16,,672,M,Gambling/Gamb Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-18,Risk of Violence,8,High,2013-09-18,2015-08-08,2015-08-12,1,0,689,0,0\r\n1768,paulette clarke,paulette,clarke,2013-10-02,Male,1959-06-24,56,Greater than 45,African-American,0,1,0,0,0,-1,2013-10-01 01:21:21,2013-10-02 12:35:21,13013701CF10A,2013-09-30,,2,F,Neglect/Abuse Elderly Person,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,2013-10-01,2013-10-02,0,0,912,0,0\r\n1770,yanik palmer,yanik,palmer,2014-02-20,Male,1993-01-06,23,Less than 25,African-American,0,2,0,0,2,-1,2014-02-19 05:21:28,2014-02-20 08:55:32,14002358CF10A,2014-02-19,,1,F,Traffick Amphetamine 28g><200g,1,15000160MM40A,(M1),,2014-11-28,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-20,Risk of Violence,3,Low,2014-02-20,2014-02-19,2014-02-20,2,0,281,1,1\r\n1771,alberto mosquera,alberto,mosquera,2014-04-07,Male,1995-07-28,20,Less than 25,Hispanic,0,3,0,0,0,-1,2014-04-06 10:44:24,2014-04-07 08:23:47,14004753CF10A,2014-04-06,,1,F,Burglary Unoccupied Dwelling,1,14010208CF10A,(F1),0,2014-07-26,Traffick Oxycodone 14-25 grams,2014-07-26,2014-09-06,,0,,,,,Risk of Recidivism,3,Low,2014-04-07,Risk of Violence,5,Medium,2014-04-07,2014-07-26,2014-09-06,0,0,110,1,1\r\n1772,jose morales,jose,morales,2013-04-12,Male,1978-05-01,37,25 - 45,Hispanic,0,2,1,0,4,,,,12015794CF10A,,2012-10-25,169,F,arrest case no charge,1,15014332CF10A,(F1),,2015-10-12,Conspire Traffic Illegal Drugs,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-12,Risk of Violence,2,Low,2013-04-12,,,4,0,913,1,0\r\n1774,adam rosario,adam,rosario,2014-03-29,Male,1993-03-01,23,Less than 25,Caucasian,0,2,1,0,1,-1,2014-03-28 11:35:16,2014-03-29 09:58:14,14005385MM10A,2014-03-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-29,Risk of Violence,4,Low,2014-03-29,2014-03-28,2014-03-29,1,0,734,0,0\r\n1776,lamondrio fields,lamondrio,fields,2013-03-21,Male,1995-03-15,21,Less than 25,African-American,0,9,0,0,0,0,2013-03-21 12:00:45,2013-03-23 07:45:57,13004118CF10A,2013-03-21,,0,F,Burglary Unoccupied Dwelling,1,13016425CF10A,(M1),0,2013-11-25,Resist/Obstruct W/O Violence,2013-11-25,2014-09-11,,0,,,,,Risk of Recidivism,9,High,2013-03-21,Risk of Violence,9,High,2013-03-21,2013-04-29,2013-05-02,0,2,39,0,1\r\n1777,tamera bankston,tamera,bankston,2013-01-23,Female,1994-07-04,21,Less than 25,African-American,1,7,2,2,3,539,2014-07-16 04:03:46,2014-09-13 05:41:15,12015061CF10A,2012-04-13,,285,F,Grand Theft In The 3Rd Degree,1,15009884MM10A,(M1),1,2015-09-18,Battery,2015-09-19,2015-10-14,,1,15009884MM10A,(M1),2015-09-18,Battery,Risk of Recidivism,7,Medium,2013-01-23,Risk of Violence,8,High,2013-01-23,2014-07-16,2014-09-13,3,0,539,0,0\r\n1780,portia cooper,portia,cooper,2013-09-06,Female,1981-01-16,35,25 - 45,African-American,0,5,0,0,2,-1,2013-09-05 05:55:01,2013-09-19 09:03:27,08010781CF10A,,2013-09-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-06,Risk of Violence,2,Low,2013-09-06,2013-09-05,2013-09-19,2,13,938,0,0\r\n1781,brandon burwell,brandon,burwell,2013-03-30,Male,1982-08-20,33,25 - 45,Caucasian,0,3,0,0,3,0,2013-03-30 03:59:43,2013-03-30 08:08:08,13013468TC10A,2013-03-30,,0,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-30,Risk of Violence,3,Low,2013-03-30,2013-03-30,2013-03-30,3,0,1098,0,0\r\n1783,bryan santana,bryan,santana,2013-05-12,Male,1994-06-25,21,Less than 25,Hispanic,0,4,0,0,0,-1,2013-05-11 03:01:10,2013-05-15 07:34:44,13006789CF10A,2013-05-11,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-12,Risk of Violence,6,Medium,2013-05-12,2015-09-02,2015-10-10,0,3,843,0,0\r\n1786,jeremiah wilson,jeremiah,wilson,2013-02-18,Male,1974-06-17,41,25 - 45,African-American,2,9,1,0,9,-1,2013-02-17 06:51:32,2013-02-18 06:40:08,13003422MO10A,2013-02-17,,1,M,Poss Of Controlled Substance,1,15008152MM10A,(M1),1,2015-08-01,Resist/Obstruct W/O Violence,2015-08-02,2015-08-02,,0,,,,,Risk of Recidivism,9,High,2013-02-18,Risk of Violence,5,Medium,2013-02-18,2015-09-27,2015-09-28,9,0,894,1,0\r\n1787,keenen stinson,keenen,stinson,2013-10-14,Male,1992-03-13,24,Less than 25,African-American,0,5,0,0,0,-1,2013-10-13 05:01:13,2013-10-17 05:14:26,13014326CF10A,2013-10-13,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-14,Risk of Violence,7,Medium,2013-10-14,2013-10-13,2013-10-17,0,3,900,0,0\r\n1788,lucas delnegro,lucas,delnegro,2014-10-01,Male,1996-01-22,20,Less than 25,Hispanic,0,10,0,0,2,9,2014-10-10 04:25:42,2015-04-20 11:36:36,14011801CF10A,2014-08-29,,33,F,Burglary Conveyance Unoccup,1,14013695CF10A,(M1),1,2014-10-09,Trespass Struct/Convey Occupy,2014-10-10,2015-04-20,,0,,,,,Risk of Recidivism,10,High,2014-10-01,Risk of Violence,10,High,2014-10-01,2015-12-17,2020-01-01,2,0,8,1,1\r\n1791,timothy hall,timothy,hall,2013-12-21,Male,1987-07-25,28,25 - 45,African-American,0,8,0,0,9,-1,2013-12-20 04:41:22,2013-12-21 08:55:32,13017577CF10A,2013-12-20,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14000501MM10A,(M2),0,2014-01-10,Unlaw LicTag/Sticker Attach,2014-01-10,2014-01-11,,0,,,,,Risk of Recidivism,8,High,2013-12-21,Risk of Violence,4,Low,2013-12-21,2014-01-10,2014-01-11,9,0,20,1,1\r\n1792,nelson osceola,nelson,osceola,2013-01-19,Male,1990-10-02,25,25 - 45,Native American,0,9,0,0,7,0,2013-01-19 12:25:22,2013-01-20 07:58:22,13000903CF10A,2013-01-19,,0,F,Burglary Conveyance Assault/Bat,1,15004061CF10A,(F3),,2015-03-11,Neglect Child / No Bodily Harm,,,,1,15007467CF10A,(F2),2015-03-19,Neglect Child / Bodily Harm,Risk of Recidivism,9,High,2013-01-19,Risk of Violence,6,Medium,2013-01-19,2015-02-22,2015-02-28,7,1,764,0,0\r\n1794,darron wilson,darron,wilson,2013-04-13,Male,1966-09-18,49,Greater than 45,African-American,0,2,0,0,3,0,2013-04-13 03:06:25,2013-04-14 04:33:37,13005332CF10A,2013-04-13,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-13,Risk of Violence,1,Low,2013-04-13,2013-04-13,2013-04-14,3,1,1084,0,0\r\n1795,kassandra cruz,kassandra,cruz,2013-04-24,Female,1993-08-06,22,Less than 25,Hispanic,0,6,0,0,0,0,2013-04-24 03:08:06,2013-04-24 08:19:38,13005902CF10A,2013-04-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-24,Risk of Violence,6,Medium,2013-04-24,2013-04-24,2013-04-24,0,0,1073,0,0\r\n1796,christopher filius,christopher,filius,2013-11-16,Male,1994-11-08,21,Less than 25,African-American,0,3,0,0,0,-1,2013-11-15 04:52:24,2013-11-17 02:33:00,13015916CF10A,2013-11-15,,1,F,Burglary Conveyance Unoccup,1,15003895MM40A,(M2),9,2015-09-28,Petit Theft,2015-10-07,2015-10-09,,0,,,,,Risk of Recidivism,3,Low,2013-11-16,Risk of Violence,6,Medium,2013-11-16,2013-11-15,2013-11-17,0,1,681,1,1\r\n1797,ciara mcgriff,ciara,mcgriff,2014-04-02,Female,1988-08-17,27,25 - 45,African-American,0,9,0,0,3,-1,2014-04-01 07:29:54,2014-04-04 09:24:50,14004550CF10A,2014-04-01,,1,F,Grand Theft (Motor Vehicle),1,15006946MM10A,(M1),0,2015-06-28,Misuse Of Wireless 911 System,2015-06-28,2015-07-21,,1,15006946MM10A,(M1),2015-06-28,Battery,Risk of Recidivism,9,High,2014-04-02,Risk of Violence,6,Medium,2014-04-02,2015-06-28,2015-07-21,3,2,452,1,1\r\n1798,robert boyd,robert,boyd,2013-10-21,Male,1983-08-01,32,25 - 45,African-American,0,7,0,0,4,302,2014-08-19 12:08:06,2015-02-26 05:29:25,11020553CF10A,,2012-02-20,609,F,arrest case no charge,1,14012503MM10A,(M1),0,2014-08-19,Resist/Obstruct W/O Violence,2014-08-19,2015-02-26,,1,15007322CF10A,(F3),2015-04-01,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2013-10-21,Risk of Violence,6,Medium,2013-10-21,2014-08-19,2015-02-26,4,0,302,1,1\r\n1800,darryl mckinney,darryl,mckinney,2013-12-26,Male,1965-06-22,50,Greater than 45,African-American,0,5,0,0,4,-3,2013-12-23 11:01:49,2013-12-25 12:33:55,13023697MM10A,2013-12-23,,3,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-26,Risk of Violence,2,Low,2013-12-26,2013-12-23,2013-12-25,4,0,827,0,0\r\n1801,sadieanne bailey,sadieanne,bailey,2014-01-28,Female,1992-10-03,23,Less than 25,African-American,0,3,0,0,0,0,2014-01-28 02:07:15,2014-01-28 08:01:14,14001560MM10A,2014-01-28,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-28,Risk of Violence,3,Low,2014-01-28,2014-01-28,2014-01-28,0,0,794,0,0\r\n1803,jasmine milan,jasmine,milan,2014-01-05,Male,1981-06-24,34,25 - 45,Caucasian,0,4,0,0,0,-1,2014-01-04 11:00:17,2014-01-05 08:05:12,14000188MM10A,2014-01-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-05,Risk of Violence,2,Low,2014-01-05,2014-01-04,2014-01-05,0,0,817,0,0\r\n1804,steve chin,steve,chin,2013-05-29,Male,1980-10-19,35,25 - 45,African-American,0,4,0,0,1,,,,13010257MM10A,2013-05-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-29,Risk of Violence,2,Low,2013-05-29,,,1,0,1038,0,0\r\n1805,robert heil,robert,heil,2013-01-14,Male,1990-05-03,25,25 - 45,African-American,0,5,0,1,4,-1,2013-01-13 10:38:55,2013-02-15 07:52:11,13000584CF10A,2013-01-13,,1,F,Robbery / No Weapon,1,13003063MM20A,(M1),67,2013-11-14,Possess Cannabis/20 Grams Or Less,2014-01-20,2014-01-21,,0,,,,,Risk of Recidivism,5,Medium,2013-01-14,Risk of Violence,4,Low,2013-01-14,2013-01-13,2013-02-15,4,32,304,1,1\r\n1806,kenneth warren,kenneth,warren,2013-03-04,Female,1982-09-06,33,25 - 45,Caucasian,0,5,0,0,2,-1,2013-03-03 06:23:24,2013-04-15 10:09:16,13003197CF10A,2013-03-03,,1,F,Criminal Mischief,1,13007519MM10A,(M1),1,2013-04-17,Trespass Other Struct/Convey,2013-04-18,2013-05-10,,0,,,,,Risk of Recidivism,5,Medium,2013-03-04,Risk of Violence,2,Low,2013-03-04,2013-03-03,2013-04-15,2,42,44,1,1\r\n1809,diego rocha,diego,rocha,2013-08-13,Male,1990-09-13,25,25 - 45,Other,0,4,0,0,1,-1,2013-08-12 08:23:20,2013-10-09 09:34:57,13015229MM10A,2013-08-12,,1,M,Battery,1,14004438MM10A,(M2),,2014-01-12,Petit Theft,,,,1,14013733CF10A,(F2),2014-10-11,Robbery / No Weapon,Risk of Recidivism,4,Low,2013-08-13,Risk of Violence,6,Medium,2013-08-13,2013-08-12,2013-10-09,1,57,152,1,1\r\n1810,ulises gonzalezsanchez,ulises,gonzalezsanchez,2013-11-03,Male,1985-07-11,30,25 - 45,Hispanic,0,1,0,0,0,-1,2013-11-02 07:39:34,2013-11-03 01:25:34,13020683MM10A,2013-11-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-03,Risk of Violence,1,Low,2013-11-03,2013-11-02,2013-11-03,0,0,880,0,0\r\n1815,derek billie,derek,billie,2013-02-10,Male,1974-02-12,42,25 - 45,Native American,0,2,0,0,0,-1,2013-02-09 02:53:17,2013-02-12 05:49:29,13002924MM10A,2013-02-09,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-10,Risk of Violence,1,Low,2013-02-10,2013-02-09,2013-02-12,0,2,1146,0,0\r\n1816,michele gallander,michele,gallander,2014-12-21,Female,1986-07-28,29,25 - 45,Caucasian,0,10,0,0,11,-3,2014-12-18 09:04:52,2015-01-22 05:51:07,14016768CF10A,2014-12-18,,3,F,Possession of Cocaine,1,15001973MO10A,(MO3),0,2015-02-17,Loiter Solicit Act Prostitute,2015-02-17,2015-02-19,,0,,,,,Risk of Recidivism,10,High,2014-12-21,Risk of Violence,5,Medium,2014-12-21,2015-02-17,2015-02-19,11,32,58,1,1\r\n1817,alicia holloway,alicia,holloway,2013-08-06,Female,1984-03-03,32,25 - 45,African-American,0,4,0,0,6,-1,2013-08-05 07:44:04,2013-08-09 05:28:08,12012294CF10A,,2013-08-05,1,F,arrest case no charge,1,13001376MM30A,(M2),,2013-10-11,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-06,Risk of Violence,5,Medium,2013-08-06,2013-08-05,2013-08-09,6,3,66,1,1\r\n1819,beville quintal,beville,quintal,2013-10-02,Male,1991-08-19,24,Less than 25,Other,0,6,0,0,5,-1,2013-10-01 10:04:46,2013-10-02 11:33:20,13013765CF10A,2013-10-01,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-02,Risk of Violence,5,Medium,2013-10-02,2013-10-01,2013-10-02,5,0,912,0,0\r\n1820,bobby sturdivant,bobby,sturdivant,2013-10-30,Male,1964-04-11,52,Greater than 45,African-American,0,1,0,0,3,-1,2013-10-29 08:09:10,2013-10-30 02:04:02,13015109CF10A,,2013-10-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-30,Risk of Violence,2,Low,2013-10-30,2014-12-15,2014-12-15,3,0,411,0,0\r\n1821,daphne nunez,daphne,nunez,2014-01-13,Female,1989-07-01,26,25 - 45,Caucasian,0,3,0,0,3,-1,2014-01-12 07:47:15,2014-01-13 02:00:29,14000574MM10A,2014-01-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-13,Risk of Violence,3,Low,2014-01-13,2014-01-12,2014-01-13,3,0,809,0,0\r\n1822,timothy bouma,timothy,bouma,2014-10-18,Male,1985-02-07,31,25 - 45,Caucasian,0,3,0,0,2,-1,2014-10-17 10:47:13,2014-10-18 09:13:45,14014052CF10A,2014-10-17,,1,F,Possession of Cocaine,1,15016308CF10A,(F3),0,2015-12-21,,2015-12-21,2015-12-22,,0,,,,,Risk of Recidivism,3,Low,2014-10-18,Risk of Violence,2,Low,2014-10-18,2014-12-12,2015-01-22,2,0,55,0,1\r\n1823,jesus zacarias,jesus,zacarias,2013-03-31,Male,1977-11-22,38,25 - 45,Hispanic,0,1,0,0,0,0,2013-03-31 03:07:51,2013-04-01 06:36:12,13004624CF10A,2013-03-31,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-31,Risk of Violence,1,Low,2013-03-31,2013-03-31,2013-04-01,0,1,1097,0,0\r\n1826,christopher kirwan,christopher,kirwan,2013-04-05,Male,1969-04-04,47,Greater than 45,Caucasian,0,1,0,0,2,,,,13001190TC10A,2012-12-26,,100,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-05,Risk of Violence,1,Low,2013-04-05,,,2,0,1092,0,0\r\n1827,alexander blackshure,alexander,blackshure,2013-08-29,Male,1991-03-23,25,25 - 45,African-American,0,7,0,0,5,77,2013-11-14 09:36:58,2014-01-10 10:22:00,13012145CF10A,,2013-08-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-29,Risk of Violence,5,Medium,2013-08-29,2013-11-14,2014-01-10,5,0,77,0,0\r\n1829,jorge valenzuela,jorge,valenzuela,2013-03-14,Female,1985-10-22,30,25 - 45,Caucasian,0,5,0,0,0,0,2013-03-14 02:57:45,2013-03-15 06:01:08,13003758CF10A,2013-03-14,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-14,Risk of Violence,2,Low,2013-03-14,2013-03-14,2013-03-15,0,1,1114,0,0\r\n1830,brion altidor,brion,altidor,2014-09-29,Male,1995-08-30,20,Less than 25,African-American,0,10,0,0,0,-1,2014-09-28 05:46:42,2014-10-02 08:08:29,14014308MM10A,2014-09-28,,1,M,Battery,1,14014114CF10A,(M1),0,2014-10-19,Resist/Obstruct W/O Violence,2014-10-19,2014-11-03,,1,14014114CF10A,(F3),2014-10-19,Aggravated Assault W/Dead Weap,Risk of Recidivism,10,High,2014-09-29,Risk of Violence,10,High,2014-09-29,2014-10-19,2014-11-03,0,3,20,1,1\r\n1832,ebony taylor,ebony,taylor,2013-01-09,Female,1987-01-12,29,25 - 45,African-American,0,10,0,0,2,64,2013-03-14 01:32:51,2013-03-16 09:48:32,12017819CF10A,2012-12-06,,34,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-09,Risk of Violence,10,High,2013-01-09,2013-03-14,2013-03-16,2,0,64,0,0\r\n1833,marion rickard,marion,rickard,2013-03-25,Male,1992-04-18,24,Less than 25,Asian,0,3,0,0,0,-1,2013-03-24 09:12:24,2013-03-25 07:15:23,13004274CF10A,2013-03-24,,1,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-25,Risk of Violence,4,Low,2013-03-25,2013-03-24,2013-03-25,0,0,1103,0,0\r\n1834,adrian lesniewski,adrian,lesniewski,2013-02-21,Male,1984-12-04,31,25 - 45,Caucasian,0,4,0,0,0,-1,2013-02-20 08:50:03,2013-05-09 06:18:55,13002580CF10A,2013-02-20,,1,F,Del of JWH-250 2-Methox 1-Pentyl,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-21,Risk of Violence,5,Medium,2013-02-21,2013-02-20,2013-05-09,0,77,1135,0,0\r\n1840,elisa lamotta,elisa,lamotta,2013-09-23,Female,1961-10-06,54,Greater than 45,Caucasian,0,2,0,0,12,-175,2013-04-01 09:07:35,2013-09-19 09:03:22,13004659CF10A,2013-04-01,,175,F,Purchasing Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-04-01,2013-09-19,12,0,921,0,0\r\n1841,alexandra spinney,alexandra,spinney,2013-02-21,Female,1979-02-12,37,25 - 45,Caucasian,0,3,0,0,1,-25,2013-01-27 04:29:27,2013-01-28 08:30:45,13001917MM10A,2013-01-27,,25,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-21,Risk of Violence,2,Low,2013-02-21,2013-01-27,2013-01-28,1,0,1135,0,0\r\n1843,frank perez,frank,perez,2014-06-02,Male,1972-10-02,43,25 - 45,Hispanic,0,2,0,0,0,-4,2014-05-29 03:45:14,2014-05-29 08:54:16,14008614MM10A,2014-05-29,,4,M,Battery,1,15045440TC20A,(M2),,2015-08-10,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,2,Low,2014-06-02,Risk of Violence,1,Low,2014-06-02,2014-05-29,2014-05-29,0,0,434,1,1\r\n1844,philip patnaude,philip,patnaude,2013-08-26,Male,1966-06-01,49,Greater than 45,Caucasian,0,6,0,0,8,0,2013-08-26 09:29:56,2013-08-30 09:04:11,13012028CF10A,2013-08-26,,0,F,Felony DUI (level 3),1,14002047MM20A,(M1),,2014-07-06,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-26,Risk of Violence,2,Low,2013-08-26,2013-08-26,2013-08-30,8,4,314,1,1\r\n1845,diana innocent,diana,innocent,2013-02-27,Female,1982-04-29,33,25 - 45,African-American,0,2,0,0,1,-2,2013-02-25 10:43:20,2013-02-26 01:28:27,13002865CF10A,2013-02-25,,2,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-27,Risk of Violence,2,Low,2013-02-27,2013-02-25,2013-02-26,1,0,1129,0,0\r\n1846,javaris mosley,javaris,mosley,2014-03-27,Male,1995-08-23,20,Less than 25,African-American,0,9,0,0,1,-83,2014-01-03 02:01:50,2014-03-27 10:13:13,14000137CF10A,,2014-02-05,50,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-27,Risk of Violence,8,High,2014-03-27,2014-01-03,2014-03-27,1,0,736,0,0\r\n1847,mark ramsey,mark,ramsey,2013-03-25,Male,1974-02-25,42,25 - 45,African-American,0,1,0,0,0,0,2013-03-25 12:03:45,2013-03-25 09:43:32,13005748MM10A,2013-03-24,,1,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-06-13,2013-07-12,0,0,80,0,0\r\n1848,david bartolino,david,bartolino,2014-05-06,Male,1971-07-13,44,25 - 45,Caucasian,0,2,0,0,0,-1,2014-05-05 11:11:08,2014-05-14 08:42:34,14006287CF10A,2014-05-05,,1,F,Unauthorized Interf w/Railroad,1,15019403TC10A,(M2),0,2015-05-20,Susp Drivers Lic 1st Offense,2015-05-20,2015-06-02,,0,,,,,Risk of Recidivism,2,Low,2014-05-06,Risk of Violence,3,Low,2014-05-06,2015-05-20,2015-06-02,0,8,379,1,1\r\n1849,christopher durham,christopher,durham,2014-05-12,Male,1987-10-29,28,25 - 45,African-American,0,6,0,0,5,-1,2014-05-11 01:52:29,2014-07-01 09:21:31,14004962CF10A,,2014-05-11,1,F,arrest case no charge,1,15009396CF10A,(M2),1,2015-07-20,Susp Drivers Lic 1st Offense,2015-07-21,2015-08-01,,0,,,,,Risk of Recidivism,6,Medium,2014-05-12,Risk of Violence,5,Medium,2014-05-12,2015-01-28,2015-04-04,5,50,261,0,1\r\n1850,michael gibbons,michael,gibbons,2013-02-14,Male,1983-09-06,32,25 - 45,African-American,0,6,0,0,4,-1,2013-02-13 05:34:20,2014-04-03 06:22:15,13002338CF10A,,2013-02-14,0,F,arrest case no charge,1,15003548MM10A,(M1),308,2015-03-06,Battery,2016-01-08,2016-01-09,,1,15003548MM10A,(M1),2015-03-06,Battery,Risk of Recidivism,6,Medium,2013-02-14,Risk of Violence,7,Medium,2013-02-14,2014-04-03,2014-12-18,4,672,750,1,1\r\n1852,james harriott,james,harriott,2014-08-17,Male,1987-07-05,28,25 - 45,African-American,0,7,0,0,7,-1,2014-08-16 05:41:44,2014-08-18 02:54:31,14011222CF10A,2014-08-16,,1,F,Aggravated Assault W/Dead Weap,1,14002778MM20A,(M2),,2014-09-04,Poss Of RX Without RX,,,,1,15016452CF10A,(F2),2015-12-25,Aggravated Battery,Risk of Recidivism,7,Medium,2014-08-17,Risk of Violence,6,Medium,2014-08-17,2014-08-16,2014-08-18,7,1,18,1,1\r\n1853,kenneth hergert,kenneth,hergert,2013-02-14,Male,1977-07-23,38,25 - 45,Caucasian,0,4,0,0,0,0,2013-02-14 05:26:52,2013-07-22 06:55:53,13002326CF10A,2013-02-14,,0,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-14,Risk of Violence,2,Low,2013-02-14,2013-02-14,2013-07-22,0,158,1142,0,0\r\n1854,varian powell,varian,powell,2013-02-08,Male,1977-08-24,38,25 - 45,African-American,0,4,0,0,3,-1,2013-02-07 08:57:01,2013-02-08 09:37:20,13001917CF10A,2013-02-07,,1,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-08,Risk of Violence,1,Low,2013-02-08,2013-02-07,2013-02-08,3,0,1148,0,0\r\n1856,kole roundtree,kole,roundtree,2014-03-05,Male,1994-12-24,21,Less than 25,Caucasian,0,4,0,0,1,-301,2013-05-08 04:53:15,2013-05-09 04:31:29,14003062CF10A,2014-03-04,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-05,Risk of Violence,5,Medium,2014-03-05,2013-05-08,2013-05-09,1,0,758,0,0\r\n1859,nicole moncur,nicole,moncur,2013-02-24,Female,1981-09-15,34,25 - 45,African-American,0,3,0,0,0,-1,2013-02-23 03:07:35,2013-02-24 06:13:24,13003783MM10A,2013-02-23,,1,M,Battery,1,15001319MM20A,(M1),,2015-05-08,Possess Cannabis/20 Grams Or Less,,,,1,15010338CF10A,(F3),2015-08-10,Battery on Law Enforc Officer,Risk of Recidivism,3,Low,2013-02-24,Risk of Violence,2,Low,2013-02-24,2015-08-11,2015-10-22,0,0,803,1,0\r\n1860,stuart tuckus,stuart,tuckus,2013-04-12,Male,1994-08-25,21,Less than 25,Caucasian,0,6,0,0,1,-1,2013-04-11 02:01:15,2013-04-12 08:39:13,13005235CF10A,2013-04-11,,1,F,Possession of Cannabis,1,14003828MM10A,(M1),,2014-02-12,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-12,Risk of Violence,6,Medium,2013-04-12,2014-02-17,2014-04-25,1,0,306,1,1\r\n1861,francis elysee,francis,elysee,2013-09-04,Male,1979-11-08,36,25 - 45,African-American,0,8,0,0,1,-1,2013-09-03 06:03:33,2013-10-04 09:05:35,13012449CF10A,2013-09-03,,1,F,Possession of Cocaine,1,13014332CF10A,(M1),0,2013-10-13,Resist/Obstruct W/O Violence,2013-10-13,2013-12-20,,0,,,,,Risk of Recidivism,8,High,2013-09-04,Risk of Violence,4,Low,2013-09-04,2013-10-13,2013-12-20,1,30,39,1,1\r\n1862,andrew mitchell,andrew,mitchell,2013-08-06,Male,1986-10-14,29,25 - 45,African-American,0,2,0,0,0,-1,2013-08-05 02:36:35,2013-08-06 01:30:45,13010966CF10A,2013-08-05,,1,M,Aggravated Battery,1,13069404TC40A,(M2),273,2013-09-29,DWLS Canceled Disqul 1st Off,2014-06-29,2014-06-30,,0,,,,,Risk of Recidivism,2,Low,2013-08-06,Risk of Violence,2,Low,2013-08-06,2014-11-04,2014-11-24,0,0,54,1,1\r\n1863,jeremy lamar,jeremy,lamar,2014-06-13,Male,1982-01-05,34,25 - 45,African-American,0,6,0,1,3,-1,2014-06-12 07:33:59,2014-06-13 01:37:50,14008168CF10A,2014-06-12,,1,F,Possession of Cocaine,1,14004398MM40A,(M2),,2014-10-09,Solicit ProstitutionViolation,,,,0,,,,,Risk of Recidivism,6,Medium,2014-06-13,Risk of Violence,3,Low,2014-06-13,2014-06-12,2014-06-13,3,0,118,1,1\r\n1864,evens gustave,evens,gustave,2013-02-22,Male,1977-08-13,38,25 - 45,African-American,0,2,0,0,1,-1,2013-02-21 07:43:08,2013-03-01 08:19:03,12025265MM10A,,2013-02-21,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-22,Risk of Violence,2,Low,2013-02-22,2013-02-21,2013-03-01,1,7,1134,0,0\r\n1865,mario brown,mario,brown,2013-11-20,Male,1979-11-24,36,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-19 06:28:12,2013-12-14 04:30:00,13016070CF10A,2013-11-19,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-20,Risk of Violence,1,Low,2013-11-20,2013-11-19,2013-12-14,0,24,863,0,0\r\n1866,harold luzon,harold,luzon,2014-01-03,Male,1984-02-11,32,25 - 45,Hispanic,0,2,0,0,0,-6,2013-12-28 04:21:31,2014-01-03 05:33:42,13023903MM10A,2013-12-28,,6,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-03,Risk of Violence,2,Low,2014-01-03,2013-12-28,2014-01-03,0,0,819,0,0\r\n1868,kamal smith,kamal,smith,2013-05-22,Male,1992-05-02,23,Less than 25,African-American,0,9,0,0,0,-1,2013-05-21 10:03:18,2013-05-22 08:06:02,13009802MM10A,2013-05-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-22,Risk of Violence,8,High,2013-05-22,2013-05-21,2013-05-22,0,0,1045,0,0\r\n1869,todd hayes,todd,hayes,2013-09-21,Male,1968-07-05,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-09-20 11:27:11,2013-09-21 08:40:49,13017986MM10A,2013-09-20,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-21,Risk of Violence,1,Low,2013-09-21,2013-09-20,2013-09-21,0,0,923,0,0\r\n1870,nathaniel heron,nathaniel,heron,2013-10-28,Male,1995-08-23,20,Less than 25,African-American,0,3,0,0,0,0,2013-10-28 04:46:03,2013-10-28 01:37:14,13015047CF10A,2013-10-28,,0,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-28,Risk of Violence,6,Medium,2013-10-28,2013-10-28,2013-10-28,0,0,886,0,0\r\n1871,shakera collins,shakera,collins,2013-04-21,Female,1990-10-30,25,25 - 45,African-American,0,8,0,0,2,-1,2013-04-20 11:42:08,2013-04-21 01:50:16,13005664CF10A,2013-04-20,,1,F,Battery on Law Enforc Officer,1,14011345MM10A,(M1),0,2014-06-18,Resist/Obstruct W/O Violence,2014-06-18,2014-07-11,,0,,,,,Risk of Recidivism,8,High,2013-04-21,Risk of Violence,8,High,2013-04-21,2014-06-18,2014-07-11,2,0,423,1,1\r\n1872,jarrell weaver,jarrell,weaver,2013-11-01,Male,1980-12-28,35,25 - 45,African-American,0,1,0,0,0,-1,2013-10-31 02:23:41,2013-11-01 01:40:24,13020575MM10A,2013-10-30,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-01,Risk of Violence,1,Low,2013-11-01,2013-10-31,2013-11-01,0,0,882,0,0\r\n1873,virgini ocio,virgini,ocio,2013-10-10,Female,1986-03-12,30,25 - 45,Caucasian,0,3,0,0,1,-82,2013-07-20 10:18:05,2013-08-31 06:13:40,13010192CF10A,2013-07-20,,82,F,Possession Of Lorazepam,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-10,Risk of Violence,2,Low,2013-10-10,2013-07-20,2013-08-31,1,0,904,0,0\r\n1874,nathalie joseph,nathalie,joseph,2014-02-13,Female,1988-01-24,28,25 - 45,Caucasian,0,4,0,0,1,-1,2014-02-12 02:08:55,2014-02-13 08:48:41,14002471MM10A,2014-02-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-13,Risk of Violence,4,Low,2014-02-13,2014-02-12,2014-02-13,1,0,778,0,0\r\n1875,christopher thurlow,christopher,thurlow,2014-02-21,Male,1985-09-19,30,25 - 45,Caucasian,0,8,0,0,2,-37,2014-01-16 01:58:47,2014-02-21 10:11:59,14000836MM10A,2014-01-16,,36,M,Restraining Order Dating Viol,1,14012594MM10A,(M1),0,2014-08-20,Resist/Obstruct W/O Violence,2014-08-20,2014-08-21,,0,,,,,Risk of Recidivism,8,High,2014-02-21,Risk of Violence,2,Low,2014-02-21,2014-03-31,2014-04-10,2,0,38,0,1\r\n1876,julie gallardo,julie,gallardo,2013-08-06,Female,1970-12-30,45,Greater than 45,Caucasian,0,3,0,0,3,336,2014-07-08 01:11:12,2014-08-21 11:06:28,12007678MM10A,2012-04-13,,480,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-06,Risk of Violence,2,Low,2013-08-06,2014-07-08,2014-08-21,3,0,336,0,0\r\n1877,gerald dessalines,gerald,dessalines,2013-05-05,Male,1992-02-18,24,Less than 25,African-American,0,5,0,0,2,-1,2013-05-04 07:09:05,2013-05-05 03:39:33,13000727MM40A,,2013-05-04,1,M,arrest case no charge,1,13013513MM10A,(M1),,2013-07-16,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-05,Risk of Violence,5,Medium,2013-05-05,2015-12-01,2015-12-02,2,0,72,1,1\r\n1879,roosevelt roberts,roosevelt,roberts,2013-01-15,Male,1994-02-11,22,Less than 25,African-American,0,9,0,0,0,-1,2013-01-14 12:35:16,2013-01-15 06:41:16,13000645CF10A,2013-01-14,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-15,Risk of Violence,9,High,2013-01-15,2013-01-14,2013-01-15,0,0,1172,0,0\r\n1880,renee sopon,renee,sopon,2013-11-04,Male,1995-05-23,20,Less than 25,Other,0,10,8,1,8,-1,2013-11-03 07:03:06,2013-11-04 08:10:42,13015300CF10A,2013-11-03,,1,F,Driving While License Revoked,1,13015756CF10A,(F3),0,2013-11-13,Driving While License Revoked,2013-11-13,2013-11-13,,1,14001059CF10A,(F2),2014-01-24,Agg Fleeing/Eluding High Speed,Risk of Recidivism,10,High,2013-11-04,Risk of Violence,8,High,2013-11-04,2013-11-13,2013-11-13,8,0,9,0,1\r\n1881,lydia mosssolomon,lydia,mosssolomon,2013-08-30,Female,1974-04-05,42,25 - 45,African-American,0,1,0,0,0,31,2013-09-30 06:56:01,2013-10-02 09:53:16,13016661MM10A,2013-08-30,,0,M,Battery,1,13020336MM10A,(M1),0,2013-09-30,Battery,2013-09-30,2013-10-02,,1,13013716CF10A,(F2),2013-09-30,Agg Battery Grt/Bod/Harm,Risk of Recidivism,1,Low,2013-08-30,Risk of Violence,1,Low,2013-08-30,2013-09-30,2013-10-02,0,0,31,1,1\r\n1882,zachary santiago,zachary,santiago,2013-05-08,Male,1991-07-08,24,Less than 25,African-American,1,9,1,0,8,-54,2013-03-15 10:50:11,2013-05-01 10:54:09,09007486CF10A,,2013-03-15,54,F,arrest case no charge,1,13016276CF10A,(F3),0,2013-11-22,Possession Of Lorazepam,2013-11-22,2013-12-04,,1,14003873CF10A,(F3),2014-03-19,Agg Fleeing and Eluding,Risk of Recidivism,9,High,2013-05-08,Risk of Violence,10,High,2013-05-08,2013-11-22,2013-12-04,8,0,198,1,1\r\n1883,rolfi hernandez,rolfi,hernandez,2014-02-10,Male,1975-06-27,40,25 - 45,Hispanic,0,1,0,0,0,0,2014-02-10 01:41:01,2014-02-10 08:22:50,14002280MM10A,2014-02-10,,0,M,Solic to Commit Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-10,Risk of Violence,1,Low,2014-02-10,2014-02-10,2014-02-10,0,0,781,0,0\r\n1884,michael rivera,michael,rivera,2013-12-29,Male,1988-11-03,27,25 - 45,Other,0,4,0,0,1,-1,2013-12-28 10:43:59,2014-01-03 08:51:14,13017908CF10A,2013-12-28,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-29,Risk of Violence,4,Low,2013-12-29,2013-12-28,2014-01-03,1,5,824,0,0\r\n1886,timothy thompson,timothy,thompson,2013-05-03,Male,1955-11-07,60,Greater than 45,African-American,0,3,0,0,12,-1,2013-05-02 10:16:05,2013-05-03 12:40:40,13006304CF10A,2013-05-02,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-03,Risk of Violence,1,Low,2013-05-03,2014-06-16,2014-06-18,12,0,409,0,0\r\n1888,jacoby kirksey,jacoby,kirksey,2013-01-26,Male,1983-02-27,33,25 - 45,African-American,0,5,0,0,6,-1,2013-01-25 10:07:00,2013-01-26 07:41:44,13001831MM10A,2013-01-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-26,Risk of Violence,4,Low,2013-01-26,2013-03-08,2013-03-26,6,0,41,0,0\r\n1890,michael chance,michael,chance,2014-10-11,Male,1981-09-14,34,25 - 45,African-American,0,4,0,0,2,-1,2014-10-10 11:40:35,2014-11-03 09:34:40,14014870MM10A,2014-10-10,,1,M,Battery,1,15002314MM10A,(M1),0,2015-02-25,Viol Injunction Protect Dom Vi,2015-02-25,2015-02-26,,0,,,,,Risk of Recidivism,4,Low,2014-10-11,Risk of Violence,3,Low,2014-10-11,2015-02-09,2015-02-10,2,23,121,0,1\r\n1893,anthony petersen,anthony,petersen,2013-03-10,Male,1992-02-22,24,Less than 25,Caucasian,0,8,0,0,4,-1,2013-03-09 08:48:08,2013-03-10 07:11:28,13004746MM10A,2013-03-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-10,Risk of Violence,4,Low,2013-03-10,2013-08-16,2013-08-21,4,0,159,0,0\r\n1894,antonio lytle,antonio,lytle,2013-08-11,Male,1988-07-28,27,25 - 45,African-American,0,2,0,0,0,-1,2013-08-10 07:25:02,2013-08-12 09:28:08,13015125MM10A,2013-08-10,,1,M,Battery,1,13002867MM20A,(M2),162,2013-09-27,Petit Theft,2014-03-08,2014-03-09,,0,,,,,Risk of Recidivism,2,Low,2013-08-11,Risk of Violence,3,Low,2013-08-11,2013-08-10,2013-08-12,0,1,47,1,1\r\n1895,marques hawks,marques,hawks,2013-02-07,Male,1987-03-21,29,25 - 45,African-American,1,10,1,1,4,0,2013-02-07 02:10:43,2014-01-28 06:29:27,13001905CF10A,2013-02-06,,1,F,Carjacking with a Firearm,1,13002946CF10A,(F2),,2013-02-25,Poss Wep Conv Felon,,,,1,15014881CF10A,(F2),2015-11-16,Attempted Robbery Firearm,Risk of Recidivism,10,High,2013-02-07,Risk of Violence,9,High,2013-02-07,2013-02-07,2014-01-28,4,0,18,1,1\r\n1897,dakota gregory,dakota,gregory,2013-03-21,Male,1995-02-10,21,Less than 25,Caucasian,1,7,0,1,1,0,2013-03-21 12:18:03,2013-04-27 07:52:56,13004039CF10A,2013-03-20,,1,F,Deliver Cannabis,1,14004668MM40A,(M1),,2014-10-30,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-21,Risk of Violence,8,High,2013-03-21,2013-05-22,2013-05-24,1,37,62,0,1\r\n1899,kelby contreras,kelby,contreras,2013-03-07,Male,1983-08-03,32,25 - 45,Hispanic,0,1,0,0,0,-1,2013-03-06 08:29:29,2013-03-07 08:09:09,13004553MM10A,2013-03-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-07,Risk of Violence,1,Low,2013-03-07,2013-03-06,2013-03-07,0,0,1121,0,0\r\n1900,william king,william,king,2013-03-06,Male,1985-08-29,30,25 - 45,Caucasian,0,5,0,0,10,123,2013-07-07 12:51:23,2013-10-24 09:20:44,12002830CF10A,,2012-02-22,378,F,arrest case no charge,1,13012890MM10A,(M1),0,2013-07-07,Battery,2013-07-07,2013-10-24,,1,13012890MM10A,(M1),2013-07-07,Battery,Risk of Recidivism,5,Medium,2013-03-06,Risk of Violence,2,Low,2013-03-06,2013-07-07,2013-10-24,10,0,123,1,1\r\n1901,jenice sisco,jenice,sisco,2013-05-12,Female,1974-03-04,42,25 - 45,Caucasian,0,1,0,0,0,-1,2013-05-11 09:23:27,2013-05-12 06:39:56,13006759CF10A,2013-05-11,,1,F,Possession of Cocaine,1,13012011CF10A,(F3),0,2013-08-26,Possession of Cocaine,2013-08-26,2013-10-09,,0,,,,,Risk of Recidivism,1,Low,2013-05-12,Risk of Violence,1,Low,2013-05-12,2013-08-26,2013-10-09,0,0,106,1,1\r\n1904,kishu ramsay,kishu,ramsay,2013-01-16,Male,1984-01-29,32,25 - 45,African-American,0,4,0,0,1,0,2013-01-16 12:41:51,2013-01-16 06:44:28,13000729CF10A,2013-01-16,,0,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-16,Risk of Violence,3,Low,2013-01-16,2013-01-16,2013-01-16,1,0,1171,0,0\r\n1905,crystal fallon,crystal,fallon,2013-01-29,Male,1988-06-10,27,25 - 45,Other,0,1,0,0,0,-2,2013-01-27 06:21:47,2013-01-29 10:59:25,13001334CF10A,2013-01-27,,2,F,Robbery / Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-29,Risk of Violence,2,Low,2013-01-29,2013-03-26,2013-04-05,0,0,56,0,0\r\n1906,gregory stinson,gregory,stinson,2013-03-27,Male,1985-10-30,30,25 - 45,Caucasian,0,4,0,0,3,-1,2013-03-26 09:34:36,2013-03-27 01:22:00,13005927MM10A,2013-03-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-27,Risk of Violence,3,Low,2013-03-27,2013-03-26,2013-03-27,3,0,1101,0,0\r\n1907,jonathan barrett,jonathan,barrett,2014-08-14,Male,1994-01-27,22,Less than 25,African-American,0,3,0,0,1,-1,2014-08-13 11:24:08,2014-08-14 08:56:19,14011154CF10A,,2014-08-13,1,F,arrest case no charge,1,15054163TC30A,(M1),,2015-07-30,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,3,Low,2014-08-14,Risk of Violence,5,Medium,2014-08-14,2014-08-13,2014-08-14,1,0,350,1,1\r\n1908,brian etheridge,brian,etheridge,2013-08-06,Male,1995-05-06,20,Less than 25,Caucasian,0,10,0,0,0,-2,2013-08-04 05:15:36,2013-08-05 02:15:48,13014600MM10A,2013-08-04,,2,M,Battery,1,13015856MM10A,(M1),1,2013-08-20,Tresspass in Struct/Convey Occupy,2013-08-21,2013-09-28,,0,,,,,Risk of Recidivism,10,High,2013-08-06,Risk of Violence,9,High,2013-08-06,2015-08-26,2015-08-26,0,0,14,1,1\r\n1909,carl feest,carl,feest,2013-10-05,Male,1959-01-06,57,Greater than 45,Caucasian,0,2,0,0,0,0,2013-10-05 03:02:31,2013-10-06 08:39:57,13018963MM10A,2013-10-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-05,Risk of Violence,2,Low,2013-10-05,2013-10-05,2013-10-06,0,1,909,0,0\r\n1910,james obrien,james,obrien,2013-04-09,Male,1964-05-30,51,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-04-08 04:12:16,2013-04-09 07:06:34,13013150CF10A,2013-04-08,,1,F,Felony Battery (Dom Strang),1,14011102MM10A,(M1),0,2014-07-20,Possess Cannabis/20 Grams Or Less,2014-07-20,2014-07-21,,0,,,,,Risk of Recidivism,1,Low,2013-04-09,Risk of Violence,1,Low,2013-04-09,2013-10-03,2013-10-04,3,0,177,0,1\r\n1913,malcom mckenzie,malcom,mckenzie,2014-03-25,Male,1995-01-26,21,Less than 25,African-American,0,4,0,0,0,-1,2014-03-24 07:15:06,2014-03-25 01:35:56,14004184CF10A,2014-03-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-25,Risk of Violence,6,Medium,2014-03-25,2014-03-24,2014-03-25,0,0,738,0,0\r\n1914,roshod graham,roshod,graham,2013-11-27,Male,1993-12-28,22,Less than 25,African-American,0,5,0,0,0,-1,2013-11-26 06:06:07,2013-12-31 07:52:49,13016491CF10A,2013-11-26,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-27,Risk of Violence,7,Medium,2013-11-27,2015-06-02,2015-07-03,0,34,552,0,0\r\n1915,louine martin,louine,martin,2013-04-19,Male,1980-09-28,35,25 - 45,African-American,0,8,0,0,4,-1,2013-04-18 11:00:11,2014-04-07 10:06:51,13005557CF10A,2013-04-18,,1,F,Tampering With Physical Evidence,1,13006450CF10A,(F1),,2013-05-02,Deliver Cocaine 1000FT School,,,,0,,,,,Risk of Recidivism,8,High,2013-04-19,Risk of Violence,3,Low,2013-04-19,2013-04-18,2014-04-07,4,0,13,1,1\r\n1916,darren lowder,darren,lowder,2013-06-17,Female,1961-08-26,54,Greater than 45,Caucasian,0,2,0,0,1,-95,2013-03-14 04:18:49,2013-05-29 04:45:59,13003730CF10A,2013-03-14,,95,F,Battery Emergency Care Provide,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-17,Risk of Violence,2,Low,2013-06-17,2013-03-14,2013-05-29,1,0,1019,0,0\r\n1917,william maloy,william,maloy,2013-10-21,Male,1957-08-03,58,Greater than 45,Caucasian,0,3,0,0,2,-9,2013-10-12 08:52:39,2013-10-17 04:51:37,13014297CF10A,2013-10-12,,9,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-21,Risk of Violence,2,Low,2013-10-21,2013-10-12,2013-10-17,2,0,893,0,0\r\n1919,rachelle lindo,rachelle,lindo,2013-11-11,Female,1983-12-14,32,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-10 11:54:10,2013-11-11 09:30:45,13015650CF10A,2013-11-10,,1,F,Child Abuse,1,13022984MM10A,(M1),,2013-12-10,DUI Level 0.15 Or Minor In Veh,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-11,Risk of Violence,2,Low,2013-11-11,2013-11-10,2013-11-11,0,0,29,1,1\r\n1921,carmen white,carmen,white,2013-03-14,Female,1976-11-12,39,25 - 45,African-American,0,6,0,0,22,-49,2013-01-24 11:14:19,2013-01-26 05:30:06,13001183CF10A,2013-01-24,,49,F,Possession of Cocaine,1,14028483TC10A,(M2),,2014-06-12,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-14,Risk of Violence,1,Low,2013-03-14,2014-03-14,2014-04-07,22,0,365,0,1\r\n1923,sean poirier,sean,poirier,2014-01-19,Male,1985-10-14,30,25 - 45,Caucasian,0,6,0,0,9,-1,2014-01-18 04:24:47,2014-01-25 05:08:49,14000932MM10A,2014-01-18,,1,M,Petit Theft,1,14003135MM10A,(M1),0,2014-02-23,Viol Pretrial Release Dom Viol,2014-02-23,2014-03-25,,0,,,,,Risk of Recidivism,6,Medium,2014-01-19,Risk of Violence,5,Medium,2014-01-19,2014-02-23,2014-03-25,9,6,35,1,1\r\n1924,kadarell collins,kadarell,collins,2014-07-09,Male,1996-01-01,20,Less than 25,African-American,0,10,0,0,0,-1,2014-07-08 02:25:20,2015-02-02 06:30:23,14009374CF10A,2014-07-08,,1,F,Burglary Unoccupied Dwelling,1,15008251CF10A,(F3),0,2015-06-26,False Imprisonment,2015-06-26,2015-11-10,,1,15008251CF10A,(M1),2015-06-26,Battery,Risk of Recidivism,10,High,2014-07-09,Risk of Violence,10,High,2014-07-09,2015-06-26,2015-11-10,0,208,352,1,1\r\n1925,roylon coppin,roylon,coppin,2013-01-06,Male,1975-06-21,40,25 - 45,Other,0,1,0,0,0,-1,2013-01-05 08:58:58,2013-01-06 01:15:19,13000258MM10A,2013-01-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-06,Risk of Violence,1,Low,2013-01-06,2013-01-05,2013-01-06,0,0,1181,0,0\r\n1926,brenda izzo,brenda,izzo,2013-07-02,Female,1970-06-30,45,Greater than 45,Caucasian,0,2,0,0,5,-1,2013-07-01 03:16:14,2013-07-01 07:50:03,13012569MM10A,2013-06-30,,2,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-02,Risk of Violence,2,Low,2013-07-02,2013-07-01,2013-07-01,5,0,1004,0,0\r\n1927,kendy alcy,kendy,alcy,2013-09-19,Male,1984-08-24,31,25 - 45,African-American,0,3,0,0,4,-1,2013-09-18 10:28:48,2013-09-19 08:41:56,13004464CF10A,,2013-09-18,1,F,arrest case no charge,1,14006825MM10A,(M2),0,2014-04-11,Susp Drivers Lic 1st Offense,2014-04-11,2014-04-17,,0,,,,,Risk of Recidivism,3,Low,2013-09-19,Risk of Violence,4,Low,2013-09-19,2014-04-11,2014-04-17,4,0,204,1,1\r\n1928,ivan dejesus,ivan,dejesus,2013-09-20,Male,1993-04-08,23,Less than 25,Hispanic,0,9,0,0,4,-27,2013-08-24 04:52:55,2013-09-20 11:57:40,13011932CF10A,2013-08-24,,27,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-20,Risk of Violence,8,High,2013-09-20,2014-04-22,2014-04-29,4,0,214,0,0\r\n1929,jonathan ospina,jonathan,ospina,2014-12-09,Male,1989-08-19,26,25 - 45,Hispanic,0,5,0,0,0,-1,2014-12-08 06:04:33,2014-12-11 09:09:32,14017278MM10A,2014-12-08,,1,M,Petit Theft,1,15004191CF10A,(M1),0,2015-03-30,Unlaw Use False Name/Identity,2015-03-30,2015-04-06,,0,,,,,Risk of Recidivism,5,Medium,2014-12-09,Risk of Violence,5,Medium,2014-12-09,2015-03-30,2015-04-06,0,2,111,1,1\r\n1930,hope avery,hope,avery,2013-04-17,Female,1962-06-17,53,Greater than 45,Caucasian,0,3,0,0,1,-1,2013-04-16 09:32:04,2013-04-17 09:11:10,13007394MM10A,2013-04-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,1,Low,2013-04-17,2013-04-16,2013-04-17,1,0,1080,0,0\r\n1931,lloyd kapell,lloyd,kapell,2014-02-07,Male,1971-10-01,44,25 - 45,Caucasian,0,1,0,0,0,-1,2014-02-06 09:12:43,2014-02-08 09:33:59,14001700CF10A,2014-02-06,,1,M,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-07,Risk of Violence,1,Low,2014-02-07,2014-02-06,2014-02-08,0,1,784,0,0\r\n1938,heidi mione,heidi,mione,2013-04-09,Female,1972-01-28,44,25 - 45,Caucasian,0,5,0,0,1,-6,2013-04-03 11:25:15,2013-04-08 08:29:22,13006437MM10A,2013-04-03,,6,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-09,Risk of Violence,2,Low,2013-04-09,2014-06-16,2014-06-16,1,0,433,0,0\r\n1939,justin feliciano,justin,feliciano,2014-10-08,Male,1994-04-23,21,Less than 25,Caucasian,0,2,0,0,0,-1,2014-10-07 08:28:00,2014-10-07 08:08:07,14013558CF10A,2014-10-07,,1,F,Obstruct Fire Equipment,1,15001282MM20A,(M1),152,2015-05-07,Possess Cannabis/20 Grams Or Less,2015-10-06,2015-10-12,,0,,,,,Risk of Recidivism,2,Low,2014-10-08,Risk of Violence,5,Medium,2014-10-08,2015-10-06,2015-10-12,0,0,211,1,1\r\n1941,brian spurgin,brian,spurgin,2013-08-07,Male,1987-05-11,28,25 - 45,African-American,0,1,0,0,0,0,2013-08-07 02:46:35,2013-08-07 07:56:41,13014913MM10A,2013-08-06,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-07,Risk of Violence,2,Low,2013-08-07,2013-08-07,2013-08-07,0,0,968,0,0\r\n1942,rainel garciacoto,rainel,garciacoto,2013-02-13,Male,1987-05-04,28,25 - 45,Caucasian,0,1,0,0,2,-1,2013-02-12 03:30:44,2013-02-13 08:00:37,13003124MM10A,2013-02-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,2,Low,2013-02-13,2013-02-12,2013-02-13,2,0,1143,0,0\r\n1943,brandon kelly,brandon,kelly,2013-05-25,Male,1991-08-21,24,Less than 25,African-American,0,3,0,0,0,-1,2013-05-24 03:05:19,2013-11-22 05:32:06,13007433CF10A,2013-05-24,,1,F,Possession Burglary Tools,1,13007834CF10A,(F3),,2013-05-30,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-25,Risk of Violence,4,Low,2013-05-25,2013-05-24,2013-11-22,0,0,5,1,1\r\n1945,leon glen,leon,glen,2013-08-09,Male,1988-01-14,28,25 - 45,African-American,0,2,0,0,0,0,2013-08-09 12:26:04,2013-08-09 08:35:47,13011148CF10A,2013-08-08,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-09,Risk of Violence,3,Low,2013-08-09,2013-08-09,2013-08-09,0,0,966,0,0\r\n1948,william carlisle,william,carlisle,2013-02-05,Male,1962-10-01,53,Greater than 45,Caucasian,0,1,0,0,4,0,2013-02-05 01:15:32,2013-02-05 01:07:11,13001750CF10A,2013-02-04,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-05,Risk of Violence,1,Low,2013-02-05,2013-06-14,2013-06-15,4,0,129,0,0\r\n1949,miguel arango,miguel,arango,2013-03-28,Male,1968-09-28,47,Greater than 45,Hispanic,0,5,0,0,1,-1,2013-03-27 10:42:36,2013-09-27 09:55:14,12007727CF10A,,2013-03-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-28,Risk of Violence,3,Low,2013-03-28,2013-03-27,2013-09-27,1,183,1100,0,0\r\n1951,javionne floyd,javionne,floyd,2014-03-27,Male,1995-05-06,20,Less than 25,African-American,0,3,0,0,1,-24,2014-03-03 02:12:12,2014-03-04 08:49:31,14002997CF10A,2014-03-03,,24,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-27,Risk of Violence,5,Medium,2014-03-27,2014-03-03,2014-03-04,1,0,736,0,0\r\n1952,jason vallmyr,jason,vallmyr,2013-12-05,Male,1995-03-10,21,Less than 25,African-American,0,6,0,0,0,-6,2013-11-29 12:22:02,2013-11-29 12:51:37,13022298MM10A,2013-11-28,,7,M,Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-05,Risk of Violence,6,Medium,2013-12-05,2013-11-29,2013-11-29,0,0,848,0,0\r\n1953,nickel thompson,nickel,thompson,2014-08-04,Male,1986-03-05,30,25 - 45,Other,0,2,0,0,1,-1,2014-08-03 04:56:51,2014-08-05 11:09:30,14010589CF10A,2014-08-03,,1,F,Aggravated Assault W/Dead Weap,1,14044638MU10A,(M1),0,2014-12-13,DUI Property Damage/Injury,2014-12-13,2014-12-14,,0,,,,,Risk of Recidivism,2,Low,2014-08-04,Risk of Violence,3,Low,2014-08-04,2014-12-13,2014-12-14,1,1,131,1,1\r\n1954,gerald russomano,gerald,russomano,2013-10-29,Male,1979-03-10,37,25 - 45,Caucasian,0,1,0,0,1,-1,2013-10-28 10:28:23,2013-10-29 02:11:24,13020396MM10A,2013-10-28,,1,M,Battery,1,15002423CF10A,(F3),1,2015-02-20,Possession of Cocaine,2015-02-21,2015-02-22,,0,,,,,Risk of Recidivism,1,Low,2013-10-29,Risk of Violence,1,Low,2013-10-29,2015-02-21,2015-02-22,1,0,479,1,1\r\n1955,richard carino,richard,carino,2013-05-07,Male,1956-03-24,60,Greater than 45,Hispanic,0,1,0,0,1,-18,2013-04-19 09:31:28,2013-05-07 10:46:55,13005608CF10A,2013-04-19,,18,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-07,Risk of Violence,1,Low,2013-05-07,2013-04-19,2013-05-07,1,0,1060,0,0\r\n1956,aaron villacampa,aaron,villacampa,2014-10-09,Male,1990-01-18,26,25 - 45,Hispanic,0,2,0,0,1,-1,2014-10-08 03:20:45,2014-10-09 02:32:48,14014777MM10A,2014-10-08,,1,M,Battery,1,15000889MM10A,(M1),0,2015-01-23,Viol Pretrial Release Dom Viol,2015-01-23,2015-01-24,,0,,,,,Risk of Recidivism,2,Low,2014-10-09,Risk of Violence,3,Low,2014-10-09,2015-01-23,2015-01-24,1,0,106,1,1\r\n1957,yoandy vidal,yoandy,vidal,2013-05-11,Male,1986-04-10,30,25 - 45,Caucasian,0,1,0,0,0,-1,2013-05-10 09:23:33,2013-05-11 06:40:57,13009093MM10A,2013-05-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-11,Risk of Violence,2,Low,2013-05-11,2013-05-10,2013-05-11,0,0,1056,0,0\r\n1961,kervin huerta,kervin,huerta,2013-03-27,Male,1989-09-09,26,25 - 45,Caucasian,0,8,0,0,2,-1,2013-03-26 08:26:58,2013-03-27 09:33:07,13004374CF10A,,2013-03-26,1,F,arrest case no charge,1,13005839CF10A,(F3),0,2013-04-23,Possession of Cannabis,2013-04-23,2013-04-24,,0,,,,,Risk of Recidivism,8,High,2013-03-27,Risk of Violence,4,Low,2013-03-27,2013-04-23,2013-04-24,2,0,27,1,1\r\n1965,anthony donaldson,anthony,donaldson,2014-10-20,Female,1989-10-06,26,25 - 45,African-American,0,9,0,0,5,-1,2014-10-19 08:39:38,2014-10-26 04:44:30,14014117CF10A,2014-10-19,,1,F,Poss Pyrrolidinovalerophenone,1,15001313CF10A,(F3),,2015-01-28,Introduce Contraband Into Jail,,,,1,15001313CF10A,(F1),2015-01-28,Robbery W/Firearm,Risk of Recidivism,9,High,2014-10-20,Risk of Violence,6,Medium,2014-10-20,2014-10-19,2014-10-26,5,6,100,1,1\r\n1966,diego bruna,diego,bruna,2013-09-08,Male,1994-07-05,21,Less than 25,Hispanic,0,5,0,0,0,-1,2013-09-07 11:52:57,2013-09-09 02:51:42,13012668CF10A,2013-09-07,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-08,Risk of Violence,5,Medium,2013-09-08,2013-09-07,2013-09-09,0,1,936,0,0\r\n1967,rachael small,rachael,small,2013-03-07,Female,1976-09-25,39,25 - 45,African-American,0,2,0,0,1,-1,2013-03-06 10:19:56,2013-03-07 01:54:02,12009076CF10A,,2013-03-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-07,Risk of Violence,1,Low,2013-03-07,2016-04-11,2020-01-01,1,0,1131,0,0\r\n1968,mariot severe,mariot,severe,2013-02-25,Male,1985-06-30,30,25 - 45,Other,0,2,0,0,0,-1,2013-02-24 08:50:29,2013-03-02 06:34:47,13002818CF10A,2013-02-24,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-25,Risk of Violence,2,Low,2013-02-25,2013-02-24,2013-03-02,0,5,1131,0,0\r\n1971,emanuel scott,emanuel,scott,2013-09-16,Male,1972-01-14,44,25 - 45,African-American,0,5,0,0,2,-1,2013-09-15 02:38:49,2013-09-17 07:18:54,13009901CF10A,,2013-09-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-16,Risk of Violence,2,Low,2013-09-16,2015-05-27,2015-06-07,2,1,618,0,0\r\n1972,philip dubicki,philip,dubicki,2013-09-08,Male,1970-10-15,45,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-09-07 09:24:01,2013-09-10 08:25:31,13017061MM10A,2013-09-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-08,Risk of Violence,2,Low,2013-09-08,2013-09-07,2013-09-10,0,2,936,0,0\r\n1974,jamal brown,jamal,brown,2013-09-10,Male,1986-01-17,30,25 - 45,African-American,0,1,0,0,1,-1,2013-09-09 09:55:03,2013-09-10 07:42:41,13012735CF10A,2013-09-09,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,2,Low,2013-09-10,2015-07-26,2015-07-30,1,0,684,0,0\r\n1975,kelvin nguyen,kelvin,nguyen,2013-12-03,Male,1978-02-27,38,25 - 45,Asian,0,1,0,0,2,0,2013-12-03 05:13:10,2013-12-11 11:56:18,13016734CF10A,2013-12-03,,0,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-03,Risk of Violence,1,Low,2013-12-03,2013-12-03,2013-12-11,2,8,850,0,0\r\n1976,anthony arcila,anthony,arcila,2014-09-23,Male,1992-07-21,23,Less than 25,Caucasian,0,5,0,0,6,-1,2014-09-22 10:29:10,2014-09-23 01:41:51,14012815CF10A,2014-09-22,,1,F,Deliver Cannabis,1,15004409MM40A,(M1),,2015-11-08,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2014-09-23,Risk of Violence,4,Low,2014-09-23,2014-09-22,2014-09-23,6,0,411,1,1\r\n1980,derrick williamson,derrick,williamson,2013-10-09,Male,1978-07-11,37,25 - 45,African-American,0,4,0,0,1,-139,2013-05-23 01:57:09,2013-06-28 05:54:52,13007371CF10A,2013-05-22,,140,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-09,Risk of Violence,4,Low,2013-10-09,2013-05-23,2013-06-28,1,0,905,0,0\r\n1982,haryidial lall,haryidial,lall,2013-12-26,Male,1970-01-19,46,Greater than 45,Asian,0,1,0,0,0,-1,2013-12-25 09:48:26,2013-12-26 01:21:51,13023752MM10A,2013-12-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-26,Risk of Violence,1,Low,2013-12-26,2013-12-25,2013-12-26,0,0,827,0,0\r\n1983,ricardo quinones,ricardo,quinones,2013-12-20,Male,1973-08-31,42,25 - 45,African-American,0,1,0,0,0,-1,2013-12-19 12:18:58,2013-12-20 08:03:46,13017540CF10A,2013-12-19,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-20,Risk of Violence,1,Low,2013-12-20,2013-12-19,2013-12-20,0,0,833,0,0\r\n1984,derrica howard,derrica,howard,2014-08-23,Female,1995-06-26,20,Less than 25,African-American,0,8,0,0,0,32,2014-09-24 04:43:51,2014-10-06 03:45:34,14011475CF10A,2014-08-22,,1,F,Uttering a Forged Instrument,1,14012952CF10A,(F3),0,2014-09-24,Uttering a Forged Instrument,2014-09-24,2014-10-06,,0,,,,,Risk of Recidivism,8,High,2014-08-23,Risk of Violence,7,Medium,2014-08-23,2014-09-24,2014-10-06,0,0,32,1,1\r\n1985,lawrence bocksey,lawrence,bocksey,2013-07-15,Male,1950-07-02,65,Greater than 45,Caucasian,0,1,0,0,2,-84,2013-04-22 03:17:28,2013-04-26 05:56:36,13007802MM10A,2013-05-16,,60,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-15,Risk of Violence,1,Low,2013-07-15,2013-04-22,2013-04-26,2,0,991,0,0\r\n1987,michael armenti,michael,armenti,2013-02-11,Male,1962-04-04,54,Greater than 45,Caucasian,0,2,0,0,4,-1,2013-02-10 05:05:00,2013-02-13 09:32:59,13002939MM10A,2013-02-10,,1,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-10,2013-02-13,4,2,1145,0,0\r\n1990,darrell siel,darrell,siel,2014-08-03,Male,1969-01-18,47,Greater than 45,African-American,0,1,0,0,7,-1,2014-08-02 03:15:19,2014-08-03 08:09:30,14010530CF10A,2014-08-02,,1,F,Felony Driving While Lic Suspd,1,15009241CF10A,(M2),0,2015-07-18,Fail Register Vehicle,2015-07-18,2015-07-19,,0,,,,,Risk of Recidivism,1,Low,2014-08-03,Risk of Violence,1,Low,2014-08-03,2015-07-18,2015-07-19,7,0,349,1,1\r\n1991,clifton gooden,clifton,gooden,2014-08-01,Male,1977-04-15,39,25 - 45,African-American,0,9,0,0,5,-49,2014-06-13 07:59:08,2014-07-09 09:28:32,14008225CF10A,2014-06-13,,49,F,Felony Battery w/Prior Convict,1,14015800MO10A,(MO3),0,2014-11-01,Open Container Of Alcoholic Bev,2014-11-01,2014-11-26,,0,,,,,Risk of Recidivism,9,High,2014-08-01,Risk of Violence,6,Medium,2014-08-01,2014-11-01,2014-11-26,5,0,92,1,1\r\n1993,alexis salcedo,alexis,salcedo,2013-04-05,Male,1989-04-27,26,25 - 45,Caucasian,0,7,0,0,0,-3,2013-04-02 11:42:29,2013-04-04 07:59:42,13004736CF10A,2013-04-02,,3,F,Delivery of Heroin,1,13010451MM10A,(M1),0,2013-05-31,Unlaw Use False Name/Identity,2013-05-31,2013-06-08,,0,,,,,Risk of Recidivism,7,Medium,2013-04-05,Risk of Violence,3,Low,2013-04-05,2013-05-31,2013-06-08,0,0,56,1,1\r\n1994,eric toledo,eric,toledo,2014-06-08,Male,1987-02-28,29,25 - 45,Caucasian,0,10,0,0,7,-1,2014-06-07 01:31:38,2014-06-08 08:07:43,14009029MM10A,2014-06-06,,2,M,Battery,1,14010274CF10A,(F2),0,2014-07-28,Aggrav Battery w/Deadly Weapon,2014-07-28,2014-08-23,,1,14010274CF10A,(F2),2014-07-28,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2014-06-08,Risk of Violence,7,Medium,2014-06-08,2014-07-28,2014-08-23,7,0,50,1,1\r\n1995,dino salerno,dino,salerno,2013-03-21,Male,1964-09-03,51,Greater than 45,Caucasian,0,1,0,0,7,-1,2013-03-20 03:05:46,2013-04-04 01:57:07,13004020CF10A,2013-03-20,,1,F,Burglary Conveyance Unoccup,1,13005785CF10A,(F1),0,2013-04-22,Falsely Personating Officer,2013-04-22,2013-12-18,,1,13005785CF10A,(M1),2013-04-22,Battery,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,1,Low,2013-03-21,2013-04-22,2013-12-18,7,14,32,1,1\r\n1999,melton mustafa,melton,mustafa,2013-03-04,Male,1972-01-17,44,25 - 45,African-American,0,1,0,0,0,0,2013-03-04 05:50:37,2013-03-04 08:33:41,13004436MM10A,2013-03-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-03-04,2013-03-04,0,0,1124,0,0\r\n2002,john walsh,john,walsh,2013-03-04,Male,1967-02-04,49,Greater than 45,Caucasian,0,5,0,0,12,-24,2013-02-08 10:08:21,2013-03-02 01:59:17,13002878MM10A,2013-02-08,,24,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-04-25,2013-04-28,12,0,52,0,0\r\n2006,jontavis walker,jontavis,walker,2013-04-21,Male,1993-12-20,22,Less than 25,African-American,0,8,0,0,0,-1,2013-04-20 11:00:29,2013-04-21 06:59:22,13005673CF10A,2013-04-20,,1,F,Poss Cocaine/Intent To Del/Sel,1,14000493MM20A,(M1),,2013-12-09,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2013-04-21,Risk of Violence,9,High,2013-04-21,2016-01-25,2016-03-16,0,0,232,1,1\r\n2009,antone fleming,antone,fleming,2013-02-01,Male,1984-01-15,32,25 - 45,African-American,0,4,0,0,4,-1,2013-01-31 04:10:23,2013-02-01 08:49:02,13004675TC10A,2013-01-31,,1,M,Susp Drivers Lic 1st Offense,1,13020074MM10A,(M2),0,2013-09-20,Operating W/O Valid License,2013-09-20,2013-09-22,,0,,,,,Risk of Recidivism,4,Low,2013-02-01,Risk of Violence,2,Low,2013-02-01,2013-09-20,2013-09-22,4,0,231,1,1\r\n2010,leanord anderson,leanord,anderson,2014-02-17,Male,1988-07-22,27,25 - 45,African-American,0,3,0,0,0,-1,2014-02-16 01:43:32,2014-02-17 07:58:42,14002686MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-17,Risk of Violence,3,Low,2014-02-17,2014-02-16,2014-02-17,0,0,774,0,0\r\n2014,eric blue,eric,blue,2013-09-25,Male,1986-01-30,30,25 - 45,Caucasian,0,2,0,0,0,-1,2013-09-24 03:13:59,2013-09-24 08:14:17,13013423CF10A,2013-09-24,,1,M,DUI - Property Damage/Personal Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-25,Risk of Violence,1,Low,2013-09-25,2013-09-24,2013-09-24,0,0,919,0,0\r\n2018,andrew medley,andrew,medley,2013-01-24,Male,1994-01-03,22,Less than 25,African-American,0,10,3,1,6,,,,12017104CF10A,,2012-11-22,63,F,arrest case no charge,1,14007482CF10A,(F2),,2013-06-21,Aggrav Battery w/Deadly Weapon,,,,1,14007482CF10A,(F2),2013-06-21,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2013-01-24,Risk of Violence,10,High,2013-01-24,,,6,0,148,1,1\r\n2019,jermaine brown,jermaine,brown,2013-03-12,Male,1995-12-15,20,Less than 25,African-American,2,8,0,0,2,-56,2013-01-15 01:56:58,2013-03-12 10:40:26,12006842CF10A,,2013-01-15,56,F,arrest case no charge,1,15005539TC20A,(M2),,2015-01-17,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,8,High,2013-03-12,Risk of Violence,10,High,2013-03-12,2013-01-15,2013-03-12,2,0,676,1,1\r\n2020,nelson cajas,nelson,cajas,2013-10-30,Male,1988-01-07,28,25 - 45,Hispanic,0,7,0,0,11,0,2013-10-30 04:01:31,2013-10-31 03:20:00,13020499MM10A,2013-10-30,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-30,Risk of Violence,7,Medium,2013-10-30,2015-08-12,2015-08-20,11,1,651,0,0\r\n2021,sam wu,sam,wu,2014-03-12,Male,1970-06-05,45,Greater than 45,Other,0,1,0,0,0,-1,2014-03-11 04:52:30,2014-03-12 08:48:41,14004229MM10A,2014-03-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-12,Risk of Violence,1,Low,2014-03-12,2014-03-11,2014-03-12,0,0,751,0,0\r\n2024,deborah lachance,deborah,lachance,2013-08-12,Female,1965-03-03,51,Greater than 45,Caucasian,0,5,0,0,5,0,2013-08-12 11:55:55,2013-09-14 05:58:00,13011336CF10A,,2013-08-12,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-12,Risk of Violence,2,Low,2013-08-12,2013-08-12,2013-09-14,5,33,963,0,0\r\n2026,willie reese,willie,reese,2014-01-10,Male,1988-06-18,27,25 - 45,African-American,0,2,0,0,4,-1,2014-01-09 07:18:18,2014-01-10 07:47:45,14000376CF10A,2014-01-09,,1,F,Grand Theft in the 3rd Degree,1,14011574CF10A,(M2),0,2014-08-25,Trespass Struct/Conveyance,2014-08-25,2015-11-10,,0,,,,,Risk of Recidivism,2,Low,2014-01-10,Risk of Violence,2,Low,2014-01-10,2014-08-25,2015-11-10,4,0,227,1,1\r\n2027,daniel joseph,daniel,joseph,2013-08-06,Male,1983-09-12,32,25 - 45,African-American,0,7,0,0,0,-1,2013-08-05 02:24:07,2013-08-22 12:27:12,13010944CF10A,2013-08-05,,1,F,Tampering With Physical Evidence,1,13016858MM10A,(M2),0,2013-09-03,Trespass Struct/Conveyance,2013-09-03,2013-09-17,,0,,,,,Risk of Recidivism,7,Medium,2013-08-06,Risk of Violence,3,Low,2013-08-06,2013-09-03,2013-09-17,0,16,28,1,1\r\n2029,troy williams,troy,williams,2013-04-18,Male,1972-04-28,43,25 - 45,African-American,0,3,0,0,2,-1,2013-04-17 10:37:05,2013-04-23 10:16:03,11008772CF10A,,2013-04-17,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2014-07-11,2014-07-16,2,5,449,0,0\r\n2033,lenna lacey,lenna,lacey,2013-11-25,Female,1953-02-02,63,Greater than 45,African-American,0,4,0,0,1,,,,06007045CF10A,2005-12-15,,2902,F,Exploit Elderly Person 20-100K,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,,,1,0,858,0,0\r\n2034,joshua mason,joshua,mason,2013-08-13,Male,1978-06-04,37,25 - 45,Caucasian,0,2,0,0,2,-1,2013-08-12 08:43:05,2013-08-13 08:22:25,13011313CF10A,2013-08-12,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-13,Risk of Violence,1,Low,2013-08-13,2013-08-12,2013-08-13,2,0,962,0,0\r\n2035,aaron evans,aaron,evans,2013-09-21,Male,1990-02-02,26,25 - 45,African-American,0,4,0,0,0,-1,2013-09-20 05:36:25,2013-09-21 09:55:44,13013294CF10A,2013-09-20,,1,F,Burglary Conveyance Unoccup,1,13017730CF10A,(M1),0,2013-12-24,Possess Cannabis/20 Grams Or Less,2013-12-24,2013-12-24,,0,,,,,Risk of Recidivism,4,Low,2013-09-21,Risk of Violence,3,Low,2013-09-21,2013-12-24,2013-12-24,0,0,94,0,1\r\n2036,james hewitt,james,hewitt,2014-05-14,Male,1983-08-12,32,25 - 45,African-American,1,10,2,0,17,84,2014-08-06 05:26:28,2015-03-03 11:40:02,14006736CF10A,2014-05-14,,0,F,Possession of Cocaine,1,14010706CF10A,(M2),0,2014-08-06,Prowling/Loitering,2014-08-06,2015-03-03,,0,,,,,Risk of Recidivism,10,High,2014-05-14,Risk of Violence,10,High,2014-05-14,2014-08-06,2015-03-03,17,0,84,1,1\r\n2037,eric wardlaw,eric,wardlaw,2013-08-22,Male,1990-01-06,26,25 - 45,African-American,0,2,0,0,0,-1,2013-08-21 09:03:22,2013-08-22 08:18:17,13015967MM10A,2013-08-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-22,Risk of Violence,3,Low,2013-08-22,2013-08-21,2013-08-22,0,0,953,0,0\r\n2038,krishna bahadosingh,krishna,bahadosingh,2013-03-08,Male,1983-12-05,32,25 - 45,Other,0,3,0,0,4,0,2013-03-08 12:04:54,2013-03-08 02:03:36,13003416CF10A,2013-03-07,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-08,Risk of Violence,2,Low,2013-03-08,2013-03-08,2013-03-08,4,0,1120,0,0\r\n2040,marvel torres,marvel,torres,2013-05-29,Male,1977-01-02,39,25 - 45,Hispanic,0,4,0,0,3,-21,2013-05-08 10:08:57,2013-05-22 07:51:07,13002890CF10A,,2013-05-08,21,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-05-08,2013-05-22,3,0,1038,0,0\r\n2042,melinda delions,melinda,delions,2013-12-05,Female,1957-12-05,58,Greater than 45,African-American,0,1,0,0,4,-1,2013-12-04 02:04:11,2013-12-05 09:54:31,13016783CF10A,2013-12-04,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-05,Risk of Violence,1,Low,2013-12-05,2013-12-04,2013-12-05,4,0,848,0,0\r\n2044,nicholas kerlew,nicholas,kerlew,2013-03-11,Male,1982-09-18,33,25 - 45,Other,0,2,0,0,0,-1,2013-03-10 04:24:37,2013-03-11 01:32:37,13004816MM10A,2013-03-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-11,Risk of Violence,3,Low,2013-03-11,2013-03-10,2013-03-11,0,0,1117,0,0\r\n2045,alyssa verola,alyssa,verola,2013-10-31,Female,1993-05-05,22,Less than 25,Caucasian,0,3,0,1,1,-22,2013-10-09 01:32:37,2013-10-09 06:32:48,13019125MM10A,2013-10-09,,22,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-31,Risk of Violence,4,Low,2013-10-31,2013-10-09,2013-10-09,1,0,883,0,0\r\n2047,mike douze,mike,douze,2013-11-04,Male,1989-11-03,26,25 - 45,African-American,0,5,0,0,6,-105,2013-07-22 06:17:17,2013-07-22 06:50:00,13020835MM10A,2013-11-04,,0,M,Driving Under The Influence,1,14025354MU10A,(M1),0,2014-07-12,Resist/Obstruct W/O Violence,2014-07-12,2014-07-13,,0,,,,,Risk of Recidivism,5,Medium,2013-11-04,Risk of Violence,4,Low,2013-11-04,2014-07-12,2014-07-13,6,0,250,1,1\r\n2048,paul hough,paul,hough,2013-11-28,Male,1994-10-29,21,Less than 25,African-American,2,10,0,1,2,-1,2013-11-27 07:19:52,2014-04-16 09:37:34,13016524CF10A,2013-11-27,,1,F,Possession of Cocaine,1,14030011TC40A,(M2),63,2014-05-05,Driving License Suspended,2014-07-07,2014-09-19,,0,,,,,Risk of Recidivism,10,High,2013-11-28,Risk of Violence,9,High,2013-11-28,2013-11-27,2014-04-16,2,139,158,1,1\r\n2049,frantessa hodge,frantessa,hodge,2013-11-23,Female,1986-05-07,29,25 - 45,African-American,0,4,0,0,1,,,,13016263CF10A,2013-11-22,,1,F,Resist Officer w/Violence,1,15024711TC30A,(M2),,2015-03-20,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-23,Risk of Violence,2,Low,2013-11-23,,,1,0,482,1,1\r\n2051,justin mccalligan,justin,mccalligan,2013-02-14,Male,1984-06-01,31,25 - 45,Caucasian,0,7,0,0,0,0,2013-02-14 02:09:03,2013-03-21 09:56:44,13002310CF10A,2013-02-13,,1,F,Grand Theft (Motor Vehicle),1,13016085CF10A,(F3),0,2013-11-19,Grand Theft in the 3rd Degree,2013-11-19,2013-12-23,,0,,,,,Risk of Recidivism,7,Medium,2013-02-14,Risk of Violence,4,Low,2013-02-14,2013-11-19,2013-12-23,0,35,278,1,1\r\n2052,bryan berry,bryan,berry,2013-11-14,Male,1972-09-30,43,25 - 45,Caucasian,0,1,0,0,2,-10,2013-11-04 09:10:03,2013-11-06 06:20:54,13015394CF10A,,2013-11-04,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-11-04,2013-11-06,2,0,869,0,0\r\n2053,jeff rosemberg,jeff,rosemberg,2013-05-10,Male,1993-04-19,23,Less than 25,African-American,0,7,0,0,0,-1,2013-05-09 10:04:43,2013-05-10 08:01:13,13008990MM10A,2013-05-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-10,Risk of Violence,6,Medium,2013-05-10,2013-05-09,2013-05-10,0,0,1057,0,0\r\n2054,greymi rosa,greymi,rosa,2014-02-25,Male,1991-03-26,25,25 - 45,Caucasian,0,2,0,0,0,-1,2014-02-24 07:11:53,2014-02-25 08:52:44,14002604CF10A,2014-02-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-25,Risk of Violence,4,Low,2014-02-25,2014-02-24,2014-02-25,0,0,766,0,0\r\n2055,jervon jarrett,jervon,jarrett,2013-12-19,Male,1993-06-29,22,Less than 25,African-American,0,9,0,0,6,-1,2013-12-18 08:38:29,2013-12-19 08:44:42,13010115CF10A,,2013-12-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-12-19,Risk of Violence,9,High,2013-12-19,2015-01-28,2015-03-07,6,0,405,0,0\r\n2056,timothy bass,timothy,bass,2013-01-19,Male,1986-02-20,30,25 - 45,African-American,0,4,0,0,6,-1,2013-01-18 10:56:13,2013-06-01 02:07:27,13000882CF10A,2013-01-18,,1,F,Poss of Methylethcathinone,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-19,Risk of Violence,4,Low,2013-01-19,2013-01-18,2013-06-01,6,133,1168,0,0\r\n2057,christopher denis,christopher,denis,2013-03-14,Male,1991-01-15,25,25 - 45,African-American,0,9,3,1,15,-1,2013-03-13 05:33:27,2013-03-15 05:42:00,13003713CF10A,2013-03-13,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14004265CF10A,(F1),,2013-08-08,Aggrav Child Abuse-Agg Battery,,,,1,14004265CF10A,(F1),2013-08-08,Aggrav Child Abuse-Agg Battery,Risk of Recidivism,9,High,2013-03-14,Risk of Violence,7,Medium,2013-03-14,2013-03-13,2013-03-15,15,1,147,1,1\r\n2058,jerry edwards,jerry,edwards,2014-10-24,Male,1995-07-18,20,Less than 25,African-American,0,7,0,1,0,-1,2014-10-23 02:06:58,2014-10-24 08:29:47,14014287CF10A,2014-10-23,,1,F,Pos Cannabis W/Intent Sel/Del,1,14014460CF10A,(M1),0,2014-10-27,Resist/Obstruct W/O Violence,2014-10-27,2014-11-25,,0,,,,,Risk of Recidivism,7,Medium,2014-10-24,Risk of Violence,6,Medium,2014-10-24,2014-10-27,2014-11-25,0,0,3,1,1\r\n2059,jaircinio munoz,jaircinio,munoz,2013-09-10,Male,1976-05-20,39,25 - 45,Hispanic,0,1,0,0,0,-1,2013-09-09 09:26:40,2013-09-10 07:41:44,13012730CF10A,2013-09-09,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-09,2013-09-10,0,0,934,0,0\r\n2060,tyrone brown,tyrone,brown,2013-01-03,Male,1985-01-29,31,25 - 45,African-American,0,5,0,0,3,716,2014-12-20 09:37:33,2014-12-21 07:47:46,12003002CF10A,,2013-01-02,1,F,arrest case no charge,1,14005121CF10A,(F3),,2014-04-12,Pos Cannabis W/Intent Sel/Del,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-03,Risk of Violence,2,Low,2013-01-03,2015-07-22,2015-11-11,3,0,464,1,1\r\n2061,tereatha lewis,tereatha,lewis,2013-09-15,Male,1983-02-15,33,25 - 45,African-American,0,2,0,0,1,-1,2013-09-14 06:09:53,2013-09-17 11:30:40,13012981CF10A,2013-09-14,,1,F,Corrupt Public Servant,1,14000627CF10A,(M2),0,2014-01-14,Unlaw LicTag/Sticker Attach,2014-01-14,2014-01-16,,0,,,,,Risk of Recidivism,2,Low,2013-09-15,Risk of Violence,2,Low,2013-09-15,2014-01-14,2014-01-16,1,2,121,1,1\r\n2062,edward horton,edward,horton,2013-03-17,Male,1956-11-01,59,Greater than 45,African-American,0,4,0,0,1,-1,2013-03-16 07:33:09,2013-03-17 01:48:47,13003849CF10A,2013-03-16,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-17,Risk of Violence,1,Low,2013-03-17,2013-03-16,2013-03-17,1,0,1111,0,0\r\n2063,ivan gomez,ivan,gomez,2013-09-06,Male,1995-02-20,21,Less than 25,Hispanic,0,9,0,2,1,-8,2013-08-29 09:50:39,2013-08-31 06:13:37,13012227CF10A,,2013-08-29,8,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-06,Risk of Violence,8,High,2013-09-06,2013-08-29,2013-08-31,1,0,938,0,0\r\n2064,rosco turner,rosco,turner,2013-11-22,Male,1962-12-12,53,Greater than 45,African-American,0,6,0,0,8,-1,2013-11-21 01:12:33,2013-11-26 08:55:26,13016162CF10A,2013-11-21,,1,F,Possession of Cocaine,1,15000105CF10A,(F3),,2015-01-03,Possession of Hydrocodone,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-22,Risk of Violence,1,Low,2013-11-22,2013-11-21,2013-11-26,8,4,407,1,1\r\n2065,wayne zafir,wayne,zafir,2013-02-17,Male,1982-04-08,34,25 - 45,Caucasian,0,2,0,0,2,-1,2013-02-16 05:53:02,2013-02-17 07:51:42,11004179MO10A,,2013-02-16,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-17,Risk of Violence,2,Low,2013-02-17,2013-02-16,2013-02-17,2,0,1139,0,0\r\n2066,loren moscovich,loren,moscovich,2013-04-19,Male,1979-07-21,36,25 - 45,Caucasian,0,4,0,0,6,-25,2013-03-25 01:15:03,2013-03-25 08:01:36,13004269CF10A,2013-03-24,,26,F,Possession Of Buprenorphine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-19,Risk of Violence,2,Low,2013-04-19,2013-03-25,2013-03-25,6,0,1078,0,0\r\n2069,cortez harris,cortez,harris,2013-01-30,Male,1993-02-09,23,Less than 25,African-American,0,3,0,0,0,-1,2013-01-29 05:36:47,2013-01-30 07:49:51,13001436CF10A,2013-01-29,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-30,Risk of Violence,5,Medium,2013-01-30,2014-01-30,2014-05-27,0,0,365,0,0\r\n2070,leoplean price,leoplean,price,2013-01-21,Male,1983-08-19,32,25 - 45,African-American,0,8,0,0,2,0,2013-01-21 02:06:58,2013-05-10 08:38:41,12010556MM10A,,2013-01-21,0,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-21,Risk of Violence,5,Medium,2013-01-21,2013-01-21,2013-05-10,2,109,1166,0,0\r\n2071,sugar allen,sugar,allen,2013-03-23,Male,1983-06-23,32,25 - 45,African-American,0,9,0,0,11,-1,2013-03-22 09:35:38,2013-03-24 03:51:56,13007916MM10A,,2013-03-22,1,M,arrest case no charge,1,14014210MM10A,(M1),1,2014-09-24,Petit Theft/ Prior Conviction,2014-09-25,2014-09-27,,0,,,,,Risk of Recidivism,9,High,2013-03-23,Risk of Violence,5,Medium,2013-03-23,2013-07-12,2013-07-13,11,1,111,0,1\r\n2072,susan scarlette,susan,scarlette,2013-04-29,Female,1949-07-06,66,Greater than 45,Caucasian,0,1,0,0,1,-46,2013-03-14 02:52:45,2013-04-11 07:51:43,13005079MM10A,2013-03-14,,46,M,Tresspass Struct/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-03-14,2013-04-11,1,0,1068,0,0\r\n2074,waldren wright,waldren,wright,2014-03-06,Male,1949-09-24,66,Greater than 45,Other,0,1,0,0,0,-1,2014-03-05 02:20:03,2014-03-06 10:24:47,14003104CF10A,2014-03-05,,1,M,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-06,Risk of Violence,1,Low,2014-03-06,2014-03-05,2014-03-06,0,0,757,0,0\r\n2075,justine woodward,justine,woodward,2013-05-20,Female,1991-11-21,24,Less than 25,Caucasian,0,6,0,0,0,-1,2013-05-19 07:00:07,2013-06-12 01:57:48,13009851MM10A,2013-05-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-20,Risk of Violence,4,Low,2013-05-20,2013-05-19,2013-06-12,0,23,1047,0,0\r\n2076,kerry francois,kerry,francois,2013-03-21,Male,1985-10-31,30,25 - 45,African-American,0,10,0,0,7,-1,2013-03-20 08:08:14,2014-11-13 06:57:27,13004011CF10A,2013-03-20,,1,F,Pos Cannabis W/Intent Sel/Del,1,15001459MM30A,(M1),,2015-09-10,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,10,High,2013-03-21,Risk of Violence,7,Medium,2013-03-21,2014-11-13,2014-12-12,7,631,903,1,1\r\n2077,issac tisdale,issac,tisdale,2013-03-15,Male,1987-10-18,28,25 - 45,African-American,0,7,0,0,1,-1,2013-03-14 08:59:25,2013-03-16 05:45:01,13005067MM10A,2013-03-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-15,Risk of Violence,3,Low,2013-03-15,2013-03-14,2013-03-16,1,1,1113,0,0\r\n2078,robert maldonado,robert,maldonado,2014-06-29,Male,1972-07-15,43,25 - 45,Caucasian,0,5,0,0,4,0,2014-06-29 03:34:28,2014-07-01 05:12:10,14008946CF10A,2014-06-29,,0,F,Burglary Dwelling Occupied,1,16001796MM10A,(M1),,2015-12-30,Stalking,,,,1,15016619CF10A,(F3),2015-12-30,Stalking (Aggravated),Risk of Recidivism,5,Medium,2014-06-29,Risk of Violence,2,Low,2014-06-29,2014-06-29,2014-07-01,4,2,549,1,1\r\n2079,jameson hinzey,jameson,hinzey,2013-12-28,Male,1980-08-07,35,25 - 45,African-American,0,2,0,0,3,-1,2013-12-27 03:35:30,2014-01-07 10:11:46,13023882MM10A,2013-12-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-28,Risk of Violence,2,Low,2013-12-28,2013-12-27,2014-01-07,3,10,825,0,0\r\n2083,darren houston,darren,houston,2013-11-15,Male,1997-04-13,19,Less than 25,African-American,3,8,0,0,2,-21,2013-10-25 10:26:50,2013-11-09 04:10:13,13014839CF10A,,2013-10-25,21,F,arrest case no charge,1,14009442CF10A,(F3),14,2014-06-26,Att Burgl Unoccupied Dwel,2014-07-10,2014-07-11,,0,,,,,Risk of Recidivism,8,High,2013-11-15,Risk of Violence,9,High,2013-11-15,2014-01-02,2014-01-15,2,0,48,0,1\r\n2085,jeff fendt,jeff,fendt,2014-04-21,Male,1982-06-27,33,25 - 45,Caucasian,0,2,0,0,0,,,,14005492CF10A,2014-04-19,,2,F,Poss Alprazolam W/int Sell/Del,1,14011779MM10A,(M1),,2014-06-28,Battery,,,,1,14011779MM10A,(M1),2014-06-28,Battery,Risk of Recidivism,2,Low,2014-04-21,Risk of Violence,2,Low,2014-04-21,,,0,0,68,1,1\r\n2087,dominick jenkins,dominick,jenkins,2013-12-13,Male,1993-10-10,22,Less than 25,African-American,0,6,0,0,1,-1,2013-12-12 03:05:58,2013-12-16 05:21:20,13023024MM10A,2013-12-12,,1,M,Battery,1,14003076MM10A,(M1),,2014-02-21,Battery,,,,1,14003076MM10A,(M1),2014-02-21,Battery,Risk of Recidivism,6,Medium,2013-12-13,Risk of Violence,7,Medium,2013-12-13,2013-12-12,2013-12-16,1,3,70,1,1\r\n2089,brian cunningham,brian,cunningham,2013-01-20,Male,1986-11-22,29,25 - 45,African-American,0,1,0,0,0,0,2013-01-20 01:46:36,2013-01-20 12:12:09,13000911CF10A,2013-01-19,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-20,Risk of Violence,2,Low,2013-01-20,2013-01-20,2013-01-20,0,0,1167,0,0\r\n2090,loreia nelson,loreia,nelson,2014-02-15,Female,1993-03-02,23,Less than 25,African-American,0,4,0,0,0,-1,2014-02-14 02:04:23,2014-02-16 03:42:24,14002620MM10A,2014-02-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-15,Risk of Violence,5,Medium,2014-02-15,2014-02-14,2014-02-16,0,1,776,0,0\r\n2091,willie brown,willie,brown,2013-10-03,Male,1953-04-27,62,Greater than 45,African-American,0,9,0,0,15,-36,2013-08-28 06:07:53,2013-10-03 12:14:08,13012257CF10A,,2013-08-29,35,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-03,Risk of Violence,9,High,2013-10-03,2013-08-28,2013-10-03,15,0,911,0,0\r\n2093,deanna dye,deanna,dye,2013-07-29,Female,1983-01-02,33,25 - 45,Caucasian,0,2,0,0,0,-2,2013-07-27 02:32:45,2013-07-28 02:02:00,13014224MM10A,2013-07-26,,3,M,Offer Agree Secure For Lewd Act,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-09-14,2013-09-15,0,0,47,0,0\r\n2094,hassan baker,hassan,baker,2013-01-31,Male,1981-01-02,35,25 - 45,African-American,0,4,0,0,1,0,2013-01-31 12:15:06,2013-01-31 08:06:24,13002170MO10A,2013-01-30,,1,M,Prostitution/Lewdness/Assign,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-31,Risk of Violence,2,Low,2013-01-31,2013-01-31,2013-01-31,1,0,1156,0,0\r\n2095,jamie rosen,jamie,rosen,2013-05-05,Male,1963-04-12,53,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-05 06:01:13,2013-05-05 07:11:34,13006441CF10A,2013-05-05,,0,F,Possession Of Alprazolam,1,15011038CF10A,(F3),0,2015-08-26,Possession of Oxycodone,2015-08-26,2015-08-26,,0,,,,,Risk of Recidivism,1,Low,2013-05-05,Risk of Violence,1,Low,2013-05-05,2015-08-26,2015-08-26,0,0,843,0,0\r\n2096,lutz glindmeier,lutz,glindmeier,2014-10-24,Male,1956-11-24,59,Greater than 45,Caucasian,0,6,0,0,17,-25,2014-09-29 01:44:50,2014-10-22 07:29:46,13002619CF10A,,2014-09-29,25,F,arrest case no charge,1,15024712TC20A,(M2),249,2015-04-07,Driving License Suspended,2015-12-12,2015-12-13,,0,,,,,Risk of Recidivism,6,Medium,2014-10-24,Risk of Violence,1,Low,2014-10-24,2015-12-12,2015-12-13,17,0,165,1,1\r\n2098,teresa lliteras,teresa,lliteras,2013-04-11,Female,1967-10-21,48,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-10 12:13:15,2013-04-11 01:05:57,13006984MM10A,2013-04-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-11,Risk of Violence,1,Low,2013-04-11,2013-04-10,2013-04-11,0,0,1086,0,0\r\n2099,mamose florial,mamose,florial,2013-02-04,Female,1983-04-18,33,25 - 45,African-American,0,2,0,0,1,-10,2013-01-25 11:03:35,2013-01-26 08:47:49,13001266CF10A,2013-01-25,,10,F,Neglect Child / Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-01-25,2013-01-26,1,0,1152,0,0\r\n2100,james shupe,james,shupe,2013-04-29,Male,1971-10-29,44,25 - 45,Caucasian,0,1,0,0,0,0,2013-04-29 02:46:23,2013-04-30 03:52:16,13018330TC10A,2013-04-29,,0,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-29,2013-04-30,0,1,1068,0,0\r\n2101,rami zaki,rami,zaki,2014-12-23,Male,1984-11-02,31,25 - 45,Caucasian,0,2,0,0,10,-18,2014-12-05 07:58:45,2014-12-07 03:33:44,15002684CF10A,2014-12-05,,18,F,Driving While License Revoked,1,15002360MM10A,(M1),0,2015-02-25,Criminal Mischief>$200<$1000,2015-02-25,2015-02-26,,0,,,,,Risk of Recidivism,2,Low,2014-12-23,Risk of Violence,2,Low,2014-12-23,2015-02-25,2015-02-26,10,0,64,1,1\r\n2103,desmond blocker,desmond,blocker,2013-09-17,Male,1987-11-03,28,25 - 45,African-American,0,4,0,1,2,-1,2013-09-16 05:15:12,2013-09-17 07:18:49,13013086CF10A,2013-09-16,,1,F,Att Tamper w/Physical Evidence,1,14009035CF10A,(F3),0,2014-07-01,Tampering With Physical Evidence,2014-07-01,2014-07-01,,0,,,,,Risk of Recidivism,4,Low,2013-09-17,Risk of Violence,5,Medium,2013-09-17,2014-07-01,2014-07-01,2,0,287,0,1\r\n2104,adlai goulbourne,adlai,goulbourne,2014-02-20,Male,1959-05-03,56,Greater than 45,Other,0,1,0,0,9,-147,2013-09-26 11:51:00,2014-02-12 10:41:00,13013562CF10A,2013-09-26,,147,F,Trespass Structure w/Dang Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-20,Risk of Violence,1,Low,2014-02-20,2013-09-26,2014-02-12,9,0,771,0,0\r\n2105,agustin perez-vidal,agustin,perez-vidal,2013-02-14,Male,1964-12-14,51,Greater than 45,Hispanic,0,1,0,0,1,-18,2013-01-27 07:54:35,2013-02-13 09:34:33,13001339CF10A,2013-01-27,,18,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-14,Risk of Violence,1,Low,2013-02-14,2015-03-18,2016-04-11,1,0,762,0,0\r\n2107,kelvin edwards,kelvin,edwards,2013-03-14,Male,1992-07-12,23,Less than 25,African-American,0,7,0,0,0,0,2013-03-14 02:20:18,2013-03-19 05:29:32,13003751CF10A,2013-03-13,,1,F,Burglary Structure Unoccup,1,13003981CF10A,(F3),0,2013-03-19,Crimin Mischief Damage $1000+,2013-03-19,2013-03-20,,0,,,,,Risk of Recidivism,7,Medium,2013-03-14,Risk of Violence,5,Medium,2013-03-14,2013-03-19,2013-03-20,0,5,5,1,1\r\n2108,carlos campo,carlos,campo,2013-10-27,Male,1994-12-01,21,Less than 25,Hispanic,0,7,0,0,0,0,2013-10-27 02:30:11,2013-10-27 08:17:23,13015005CF10A,2013-10-26,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-27,Risk of Violence,6,Medium,2013-10-27,2014-03-05,2014-03-13,0,0,129,0,0\r\n2109,louis sells,louis,sells,2013-01-02,Male,1989-05-17,26,25 - 45,Caucasian,0,5,0,0,0,0,2013-01-02 07:21:57,2013-01-02 07:31:59,13000096CF10A,2013-01-02,,0,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-02,Risk of Violence,4,Low,2013-01-02,2013-01-02,2013-01-02,0,0,1185,0,0\r\n2110,antwane jones,antwane,jones,2013-09-29,Male,1994-01-02,22,Less than 25,African-American,0,9,3,0,3,0,2013-09-29 03:40:47,2013-09-29 06:47:56,13013659CF10A,2013-09-29,,0,F,Possession of Benzylpiperazine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-29,Risk of Violence,10,High,2013-09-29,2013-09-29,2013-09-29,3,0,915,0,0\r\n2111,troy gayle,troy,gayle,2013-03-27,Male,1986-11-19,29,25 - 45,African-American,0,2,0,0,0,-1,2013-03-26 07:25:39,2013-03-27 11:45:55,13005919MM10A,2013-03-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-27,Risk of Violence,3,Low,2013-03-27,2013-03-26,2013-03-27,0,0,1101,0,0\r\n2113,rasheed magloire,rasheed,magloire,2014-04-04,Male,1995-12-23,20,Less than 25,African-American,0,9,1,1,2,-1,2014-04-03 06:52:47,2014-04-05 08:08:56,14004685CF10A,2014-04-03,,1,F,Burglary Unoccupied Dwelling,1,14033792TC10A,(M1),0,2014-09-18,Opert With Susp DL 2nd Offens,2014-09-18,2014-09-19,,0,,,,,Risk of Recidivism,9,High,2014-04-04,Risk of Violence,7,Medium,2014-04-04,2014-09-18,2014-09-19,2,1,167,1,1\r\n2115,javier valdes,javier,valdes,2013-11-13,Male,1972-04-04,44,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-12 09:19:23,2013-11-13 08:07:52,13021311MM10A,2013-11-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-13,Risk of Violence,1,Low,2013-11-13,2013-11-12,2013-11-13,0,0,870,0,0\r\n2116,peter cunningham,peter,cunningham,2013-08-22,Male,1975-03-24,41,25 - 45,African-American,0,5,0,0,2,-1,2013-08-21 10:34:23,2013-09-05 09:41:59,11015633CF10A,,2013-08-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-22,Risk of Violence,3,Low,2013-08-22,2013-08-21,2013-09-05,2,14,953,0,0\r\n2121,ashley hannah,ashley,hannah,2013-11-08,Female,1987-10-16,28,25 - 45,African-American,0,4,0,1,4,0,2013-11-08 03:39:55,2013-11-08 09:33:05,13015575CF10A,2013-11-08,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-08,Risk of Violence,3,Low,2013-11-08,2013-11-08,2013-11-08,4,0,875,0,0\r\n2123,timothy vanfossen,timothy,vanfossen,2013-03-25,Male,1989-03-20,27,25 - 45,Caucasian,0,6,0,0,1,-1,2013-03-24 10:31:26,2013-04-15 05:08:58,13012413TC10A,2013-03-24,,1,M,Susp Drivers Lic 1st Offense,1,15027792TC10A,(M2),0,2015-10-08,Susp Drivers Lic 1st Offense,2015-10-08,2015-11-24,,0,,,,,Risk of Recidivism,6,Medium,2013-03-25,Risk of Violence,5,Medium,2013-03-25,2013-07-18,2013-09-14,1,21,115,0,1\r\n2125,jason landress,jason,landress,2014-03-10,Male,1984-08-06,31,25 - 45,Caucasian,0,3,0,0,7,-1,2014-03-09 04:46:09,2014-03-10 09:42:05,14004057MM10A,2014-03-09,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-10,Risk of Violence,2,Low,2014-03-10,2014-03-09,2014-03-10,7,0,753,0,0\r\n2126,itzamna jimenez,itzamna,jimenez,2014-04-21,Male,1992-11-09,23,Less than 25,Caucasian,0,8,0,0,5,-105,2014-01-06 03:27:34,2014-01-20 04:51:30,12005031CF10A,,2014-01-06,105,F,arrest case no charge,1,15014197TC30A,(M2),130,2015-02-13,DWLS Canceled Disqul 1st Off,2015-06-23,2015-06-30,,0,,,,,Risk of Recidivism,8,High,2014-04-21,Risk of Violence,5,Medium,2014-04-21,2016-03-27,2016-03-27,5,0,298,1,1\r\n2127,brandon barther,brandon,barther,2013-10-21,Male,1982-09-23,33,25 - 45,African-American,0,7,0,0,16,-243,2013-02-20 12:52:15,2013-02-21 06:22:21,12022971MM10A,,2013-02-20,243,M,arrest case no charge,1,14001250MM20A,(M2),73,2014-04-11,Petit Theft,2014-06-23,2014-08-17,,0,,,,,Risk of Recidivism,7,Medium,2013-10-21,Risk of Violence,3,Low,2013-10-21,2014-12-12,2014-12-13,16,0,172,1,1\r\n2128,ricardo ruiz,ricardo,ruiz,2014-09-22,Male,1990-01-10,26,25 - 45,African-American,0,3,0,0,3,-21,2014-09-01 10:08:32,2014-09-02 08:20:37,14011903CF10A,2014-09-01,,21,F,Crimin Mischief Damage $1000+,1,16002924MM10A,(M1),0,2016-03-29,,2016-03-29,2016-03-30,,0,,,,,Risk of Recidivism,3,Low,2014-09-22,Risk of Violence,3,Low,2014-09-22,2016-03-29,2016-03-30,3,0,554,1,1\r\n2129,michael cedieu,michael,cedieu,2013-11-15,Male,1995-10-15,20,Less than 25,African-American,0,4,0,2,0,-1,2013-11-14 06:08:57,2013-11-15 08:54:29,13015856CF10A,2013-11-14,,1,F,Tampering With Physical Evidence,1,16000010MM30A,(M1),59,2015-12-19,Possess Cannabis/20 Grams Or Less,2016-02-16,2016-02-17,,1,16002340CF10A,(F2),2016-02-22,Agg Fleeing/Eluding High Speed,Risk of Recidivism,4,Low,2013-11-15,Risk of Violence,7,Medium,2013-11-15,2014-03-12,2014-03-12,0,0,117,0,0\r\n2130,roland muzzi,roland,muzzi,2013-01-22,Male,1960-09-02,55,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-01-21 08:21:38,2013-01-22 02:00:29,13001437MM10A,2013-01-21,,1,M,Battery,1,13004206MM10A,(M1),1,2013-02-28,Refuse Submit Blood/Breath Test,2013-03-01,2013-03-11,,0,,,,,Risk of Recidivism,1,Low,2013-01-22,Risk of Violence,1,Low,2013-01-22,2013-03-01,2013-03-11,2,0,37,1,1\r\n2131,tholome johnson,tholome,johnson,2013-02-27,Male,1979-11-15,36,25 - 45,African-American,0,8,0,0,0,0,2013-02-27 01:25:04,2013-02-28 04:12:46,13002940CF10A,2013-02-27,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-27,Risk of Violence,2,Low,2013-02-27,2013-02-27,2013-02-28,0,1,1129,0,0\r\n2132,michel dorsainville,michel,dorsainville,2014-01-11,Male,1967-09-14,48,Greater than 45,Other,0,1,0,0,4,-1,2014-01-10 07:01:24,2014-01-14 09:21:17,14000415CF10A,2014-01-10,,1,F,Grand Theft (Motor Vehicle),1,14006809CF10A,(M1),0,2014-05-16,Unlaw Use False Name/Identity,2014-05-16,2014-05-17,,0,,,,,Risk of Recidivism,1,Low,2014-01-11,Risk of Violence,1,Low,2014-01-11,2014-05-16,2014-05-17,4,3,125,1,1\r\n2133,piterson belancourt,piterson,belancourt,2014-03-19,Male,1994-04-04,22,Less than 25,Other,0,4,0,0,5,-1,2014-03-18 01:16:05,2014-03-20 12:11:12,14003819CF10A,,2014-03-18,1,F,arrest case no charge,1,14053818TC20A,(M2),,2014-07-28,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-19,Risk of Violence,5,Medium,2014-03-19,2014-03-18,2014-03-20,5,1,131,1,1\r\n2134,willis barnes,willis,barnes,2013-08-14,Male,1992-09-08,23,Less than 25,African-American,1,9,0,0,1,-1,2013-08-13 04:31:54,2013-08-18 04:39:19,13015313MM10A,2013-08-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-14,Risk of Violence,9,High,2013-08-14,2013-08-13,2013-08-18,1,4,961,0,0\r\n2138,stephen johnson,stephen,johnson,2014-01-22,Male,1982-01-07,34,25 - 45,African-American,0,10,2,1,19,-1,2014-01-21 08:57:17,2014-01-26 02:45:26,14000886CF10A,2014-01-21,,1,F,False Ownership Info/Pawn Item,1,14015498MM10A,(M2),0,2014-10-25,Petit Theft,2014-10-25,2014-10-26,,0,,,,,Risk of Recidivism,10,High,2014-01-22,Risk of Violence,6,Medium,2014-01-22,2014-10-25,2014-10-26,19,4,276,1,1\r\n2140,rose mosco,rose,mosco,2013-03-01,Female,1956-08-30,59,Greater than 45,Caucasian,0,1,0,0,1,-21,2013-02-08 08:25:17,2013-02-13 09:36:45,13002086CF10A,2013-02-08,,21,F,Grand Theft in the 1st Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2015-10-22,2015-10-29,1,0,965,0,0\r\n2141,ricardo britt,ricardo,britt,2013-04-26,Male,1978-04-24,37,25 - 45,Caucasian,0,2,0,0,0,-4,2013-04-22 02:29:12,2013-04-23 03:38:43,13005777CF10A,2013-04-21,,5,F,Cruelty Toward Child,1,13013838MM10A,(M1),1,2013-07-20,Viol Pretrial Release Dom Viol,2013-07-21,2013-08-05,,1,15001691CF10A,(F3),2015-02-04,Felony Battery w/Prior Convict,Risk of Recidivism,2,Low,2013-04-26,Risk of Violence,1,Low,2013-04-26,2015-02-04,2015-04-06,0,0,85,1,1\r\n2143,lavena mays,lavena,mays,2013-08-24,Female,1988-04-06,28,25 - 45,Caucasian,0,4,0,0,0,-1,2013-08-23 04:46:57,2013-08-24 02:25:28,13011915CF10A,2013-08-23,,1,F,Possession of Cocaine,1,15031929TC20A,(M2),,2015-05-13,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-24,Risk of Violence,3,Low,2013-08-24,2013-08-23,2013-08-24,0,0,627,1,1\r\n2146,rodney davis,rodney,davis,2014-06-10,Male,1996-01-04,20,Less than 25,African-American,1,10,0,1,1,-47,2014-04-24 12:14:02,2014-06-10 10:39:09,14003033CF10A,,2014-04-24,47,F,arrest case no charge,1,14010614CF10A,(M1),0,2014-08-04,Resist/Obstruct W/O Violence,2014-08-04,2015-07-31,,0,,,,,Risk of Recidivism,10,High,2014-06-10,Risk of Violence,9,High,2014-06-10,2014-08-04,2015-07-31,1,0,55,1,1\r\n2147,german valerio,german,valerio,2013-10-03,Male,1984-09-21,31,25 - 45,African-American,0,2,0,0,0,-1,2013-10-02 06:36:42,2013-10-03 08:18:14,13013855CF10A,2013-10-02,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-03,Risk of Violence,4,Low,2013-10-03,2013-10-02,2013-10-03,0,0,911,0,0\r\n2148,stephanie hay,stephanie,hay,2014-07-13,Female,1977-05-19,38,25 - 45,African-American,0,10,0,0,14,-1,2014-07-12 06:46:27,2014-07-17 05:29:07,14009547CF10A,2014-07-12,,1,F,Possession of Cocaine,1,15001666CF10A,(F3),0,2015-02-05,Battery on a Person Over 65,2015-02-05,2015-05-18,,1,15001666CF10A,(F3),2015-02-05,Battery on a Person Over 65,Risk of Recidivism,10,High,2014-07-13,Risk of Violence,3,Low,2014-07-13,2014-08-11,2014-09-12,14,4,29,0,1\r\n2149,kevin hudson,kevin,hudson,2014-02-11,Male,1983-03-24,33,25 - 45,African-American,0,1,0,0,0,-4,2014-02-07 09:21:52,2014-02-11 04:08:38,14001765CF10A,2014-02-07,,4,F,Possession of Cannabis,1,14010877MO10A,(MO3),0,2014-07-16,Sleeping On Beach,2014-07-16,2014-07-31,,0,,,,,Risk of Recidivism,1,Low,2014-02-11,Risk of Violence,2,Low,2014-02-11,2014-07-16,2014-07-31,0,0,155,1,1\r\n2150,tyrell wright,tyrell,wright,2014-08-29,Male,1988-06-20,27,25 - 45,African-American,0,8,0,0,3,-1,2014-08-28 12:41:52,2014-08-29 01:55:31,14011761CF10A,2014-08-28,,1,F,Grand Theft in the 3rd Degree,1,14015178MM10A,(M1),0,2014-10-18,Battery,2014-10-18,2014-10-26,,1,14015178MM10A,(M1),2014-10-18,Battery,Risk of Recidivism,8,High,2014-08-29,Risk of Violence,6,Medium,2014-08-29,2014-10-18,2014-10-26,3,0,50,1,1\r\n2151,jason jaigobin,jason,jaigobin,2013-02-19,Male,1991-03-21,25,25 - 45,Caucasian,0,4,0,0,2,0,2013-02-19 03:48:40,2013-02-20 04:22:16,13003525MM10A,2013-02-19,,0,M,Resist/Obstruct W/O Violence,1,13008554CF10A,(M1),0,2013-06-18,Resist/Obstruct W/O Violence,2013-06-18,2013-08-09,,0,,,,,Risk of Recidivism,4,Low,2013-02-19,Risk of Violence,3,Low,2013-02-19,2013-06-18,2013-08-09,2,1,119,1,1\r\n2152,nikeisha porter,nikeisha,porter,2013-11-26,Female,1974-01-16,42,25 - 45,African-American,0,2,0,0,2,-1,2013-11-25 05:04:34,2013-11-26 09:36:13,13016423CF10A,2013-11-25,,1,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-26,Risk of Violence,1,Low,2013-11-26,2013-11-25,2013-11-26,2,0,857,0,0\r\n2153,cortay wells,cortay,wells,2014-02-06,Male,1993-05-02,22,Less than 25,African-American,0,8,0,0,3,-1,2014-02-05 03:18:50,2014-03-03 08:00:17,14001653CF10A,2014-02-05,,1,F,Uttering a Forged Instrument,1,14005187CF10A,(F3),0,2014-04-13,Grand Theft Dwell Property,2014-04-13,2014-06-05,,1,16000123CF10A,(F3),2016-01-04,Aggravated Assault w/Firearm,Risk of Recidivism,8,High,2014-02-06,Risk of Violence,5,Medium,2014-02-06,2014-04-13,2014-06-05,3,25,66,1,1\r\n2154,romaine smith,romaine,smith,2013-03-01,Male,1995-01-17,21,Less than 25,Other,0,6,0,0,0,-1,2013-02-28 07:56:43,2013-03-02 05:27:36,13003060CF10A,2013-02-28,,1,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-01,Risk of Violence,8,High,2013-03-01,2013-02-28,2013-03-02,0,1,1127,0,0\r\n2155,carl haberstroh,carl,haberstroh,2013-09-24,Male,1958-07-10,57,Greater than 45,Caucasian,0,7,0,0,15,-32,2013-08-23 03:39:59,2013-09-12 10:31:00,07023637CF10A,,2013-08-23,32,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-24,Risk of Violence,3,Low,2013-09-24,2013-08-23,2013-09-12,15,0,920,0,0\r\n2156,donald gnau,donald,gnau,2013-04-11,Male,1971-04-15,45,Greater than 45,Caucasian,0,5,0,0,1,0,2013-04-11 12:51:25,2013-05-09 04:33:49,13005176CF10A,2013-04-10,,1,F,Robbery / No Weapon,1,14003643MM40A,(M2),,2014-08-06,Disorderly Intoxication,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-11,Risk of Violence,3,Low,2013-04-11,2014-05-28,2014-05-30,1,28,412,0,1\r\n2157,shanuce edinburg,shanuce,edinburg,2014-12-16,Female,1995-03-26,21,Less than 25,African-American,0,3,0,0,1,-11,2014-12-05 04:26:22,2014-12-07 03:33:54,14017172MM10A,2014-12-05,,11,M,Trespass Struct/Conveyance,1,15011325CF10A,(F3),0,2015-09-02,Possession of Cocaine,2015-09-02,2015-10-01,,0,,,,,Risk of Recidivism,3,Low,2014-12-16,Risk of Violence,4,Low,2014-12-16,2015-09-02,2015-10-01,1,0,260,1,1\r\n2159,patrick keane,patrick,keane,2013-05-09,Male,1963-06-20,52,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-05-08 02:05:44,2013-05-09 09:08:14,13006115MM10A,2013-03-29,,41,M,Tresspass Struct/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-09,Risk of Violence,1,Low,2013-05-09,2013-05-08,2013-05-09,2,0,1058,0,0\r\n2161,alfredo rasco,alfredo,rasco,2013-05-23,Male,1987-03-04,29,25 - 45,Caucasian,0,3,0,0,0,-1,2013-05-22 08:43:56,2013-05-23 08:01:27,13009896MM10A,2013-05-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-23,Risk of Violence,3,Low,2013-05-23,2013-05-22,2013-05-23,0,0,1044,0,0\r\n2162,reneca turner-davis,reneca,turner-davis,2013-01-24,Female,1978-09-30,37,25 - 45,African-American,0,4,0,0,0,0,2013-01-24 01:57:20,2013-01-29 05:24:05,13001704MM10A,2013-01-24,,0,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-01-24,2013-01-29,0,5,1163,0,0\r\n2163,lavinel zurz,lavinel,zurz,2013-04-14,Male,1981-06-19,34,25 - 45,Caucasian,0,2,0,1,0,-1,2013-04-13 09:32:38,2013-04-14 07:21:18,13005341CF10A,2013-04-13,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-14,Risk of Violence,1,Low,2013-04-14,2015-01-16,2015-01-22,0,0,642,0,0\r\n2165,parris brady,parris,brady,2013-01-24,Male,1963-01-20,53,Greater than 45,African-American,0,1,0,0,0,0,2013-01-24 03:10:35,2013-01-25 12:12:01,13001715MM10A,2013-01-23,,1,M,Battery,1,13012068MM10A,(M1),0,2013-06-24,Viol Pretrial Release Dom Viol,2013-06-24,2013-06-25,,1,13013714MM10A,(M1),2013-06-24,Battery,Risk of Recidivism,1,Low,2013-01-24,Risk of Violence,1,Low,2013-01-24,2013-06-24,2013-06-25,0,1,151,1,1\r\n2166,crystal melville,crystal,melville,2013-05-03,Female,1985-09-18,30,25 - 45,African-American,0,8,0,0,8,-1,2013-05-02 01:18:42,2013-05-03 12:53:21,13006327CF10A,2013-05-02,,1,F,Robbery / No Weapon,1,15000266MM40A,(M2),,2014-12-14,Petit Theft,,,,0,,,,,Risk of Recidivism,8,High,2013-05-03,Risk of Violence,3,Low,2013-05-03,2013-05-02,2013-05-03,8,0,590,1,1\r\n2168,christopher baptista,christopher,baptista,2013-08-23,Male,1980-09-20,35,25 - 45,Hispanic,0,3,0,0,0,-7,2013-08-16 04:54:32,2013-08-17 07:16:37,13015540MM10A,2013-08-16,,7,M,Reckless Driving,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-23,Risk of Violence,2,Low,2013-08-23,2014-11-26,2014-12-02,0,0,460,0,0\r\n2169,carlos ariastabima,carlos,ariastabima,2013-05-20,Male,1987-12-21,28,25 - 45,Caucasian,0,4,0,0,1,-1,2013-05-19 05:41:59,2013-05-23 12:31:34,13007152CF10A,2013-05-19,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-20,Risk of Violence,2,Low,2013-05-20,2013-05-19,2013-05-23,1,3,1047,0,0\r\n2170,timothy stevens,timothy,stevens,2013-04-30,Male,1994-07-09,21,Less than 25,African-American,0,8,0,0,1,-1,2013-04-29 10:52:26,2013-04-30 07:18:46,13006135CF10A,2013-04-29,,1,F,Grand Theft Dwell Property,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-30,Risk of Violence,9,High,2013-04-30,2013-04-29,2013-04-30,1,0,1067,0,0\r\n2171,leighton quarrie,leighton,quarrie,2013-11-20,Male,1994-04-06,22,Less than 25,African-American,0,7,0,0,1,13,2013-12-03 12:53:50,2014-01-16 03:17:58,13016082CF10A,2013-11-19,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-20,Risk of Violence,6,Medium,2013-11-20,2013-12-03,2014-01-16,1,0,13,0,0\r\n2176,paul chermak,paul,chermak,2013-10-29,Male,1974-03-24,42,25 - 45,Caucasian,0,3,0,0,1,-1,2013-10-28 08:04:32,2013-10-29 02:05:32,13020406MM10A,2013-10-28,,1,M,Battery,1,14003974CF10A,(F3),0,2014-03-20,Possession of Methadone,2014-03-20,2014-03-21,,1,14003974CF10A,(M1),2014-03-20,Battery,Risk of Recidivism,3,Low,2013-10-29,Risk of Violence,2,Low,2013-10-29,2014-03-20,2014-03-21,1,0,142,1,1\r\n2178,christopher chisolm,christopher,chisolm,2014-09-09,Male,1989-07-14,26,25 - 45,African-American,0,4,0,0,3,0,2014-09-09 04:01:30,2014-09-09 08:47:38,14012270CF10A,2014-09-09,,0,F,Possession of Cannabis,1,14013188CF10A,(F3),,2014-09-30,Possession of Cocaine,,,,0,,,,,Risk of Recidivism,4,Low,2014-09-09,Risk of Violence,2,Low,2014-09-09,2014-09-09,2014-09-09,3,0,21,1,1\r\n2179,anthony jackson,anthony,jackson,2013-12-28,Male,1961-06-04,54,Greater than 45,African-American,0,1,0,0,9,0,2013-12-28 01:57:40,2013-12-29 02:05:51,01098533TC30A,,2003-03-16,3940,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-28,Risk of Violence,1,Low,2013-12-28,2013-12-28,2013-12-29,9,1,825,0,0\r\n2180,kory plummer,kory,plummer,2013-09-23,Male,1977-03-11,39,25 - 45,Other,0,2,0,0,1,-1,2013-09-22 10:25:30,2013-09-23 01:52:27,13013355CF10A,2013-09-22,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14006533MM10A,(M1),0,2014-03-26,Resist/Obstruct W/O Violence,2014-03-26,2014-04-29,,1,14004270CF10A,(M1),2014-03-26,Battery,Risk of Recidivism,2,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-12-11,2013-12-17,1,0,79,0,1\r\n2181,anthony peat,anthony,peat,2013-08-25,Male,1986-03-29,30,25 - 45,African-American,2,9,0,0,20,0,2013-08-25 04:11:52,2014-07-08 06:34:39,14007693CF10A,2013-08-25,,0,F,Felony Battery w/Prior Convict,1,15008531MM10A,(M2),0,2015-08-12,Petit Theft,2015-08-12,2015-09-02,,0,,,,,Risk of Recidivism,9,High,2013-08-25,Risk of Violence,5,Medium,2013-08-25,2014-10-04,2015-06-09,20,381,405,0,1\r\n2182,krystal porter,krystal,porter,2013-09-13,Female,1990-02-22,26,25 - 45,African-American,0,6,0,0,1,-1,2013-09-12 12:49:19,2013-10-10 09:49:49,13012889CF10A,2013-09-12,,1,F,Grand Theft in the 3rd Degree,1,14004530MM10A,(M2),0,2014-03-16,Petit Theft,2014-03-16,2014-07-12,,0,,,,,Risk of Recidivism,6,Medium,2013-09-13,Risk of Violence,4,Low,2013-09-13,2014-03-16,2014-07-12,1,27,184,1,1\r\n2183,craig coleman,craig,coleman,2014-01-07,Male,1974-10-14,41,25 - 45,African-American,0,1,0,0,0,0,2014-01-07 04:31:06,2014-01-08 03:21:00,14000285MM10A,2014-01-07,,0,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-07,Risk of Violence,1,Low,2014-01-07,2014-01-07,2014-01-08,0,1,815,0,0\r\n2184,scott clark,scott,clark,2014-09-13,Male,1993-01-16,23,Less than 25,Caucasian,1,5,0,1,5,0,2014-09-13 01:32:17,2014-11-06 07:47:31,14013669MM10A,2014-09-13,,0,M,Viol Injunct Domestic Violence,1,15005379CF10A,(F3),,2015-02-25,Burglary Structure Unoccup,,,,0,,,,,Risk of Recidivism,5,Medium,2014-09-13,Risk of Violence,4,Low,2014-09-13,2015-01-20,2015-02-12,5,54,129,0,1\r\n2186,herbert hawkins,herbert,hawkins,2013-02-11,Male,1972-12-26,43,25 - 45,Caucasian,0,2,0,0,1,-1,2013-02-10 09:37:38,2013-04-16 07:46:56,13002044CF10A,2013-02-10,,1,F,Felony Battery (Dom Strang),1,14013163CF10A,(F3),1,2014-09-28,Felony Battery w/Prior Convict,2014-09-29,2015-02-19,,1,14013163CF10A,(F3),2014-09-28,Felony Battery (Dom Strang),Risk of Recidivism,2,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-10-06,2013-11-19,1,64,237,0,1\r\n2188,shaka ruddock,shaka,ruddock,2013-04-20,Male,1994-02-13,22,Less than 25,African-American,0,3,0,0,0,-1,2013-04-19 11:33:48,2013-04-20 01:40:27,13017081TC10A,2013-04-18,,2,M,Susp Drivers Lic 1st Offense,1,13026359TC10A,(M2),,2013-05-05,Driving License Suspended,,,,1,14002769CF10A,(F3),2014-02-27,Battery on Law Enforc Officer,Risk of Recidivism,3,Low,2013-04-20,Risk of Violence,5,Medium,2013-04-20,2014-02-27,2014-03-02,0,0,15,1,1\r\n2190,raul terrero,raul,terrero,2013-12-04,Male,1973-11-05,42,25 - 45,Hispanic,0,5,0,0,3,,,,13038758TC10A,2013-08-26,,100,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-04,Risk of Violence,3,Low,2013-12-04,,,3,0,849,0,0\r\n2193,danielle guggino,danielle,guggino,2014-03-26,Female,1988-12-26,27,25 - 45,Caucasian,0,3,0,0,6,-1,2014-03-25 09:53:07,2014-03-26 10:10:26,14004235CF10A,2014-03-25,,1,F,Grand Theft in the 3rd Degree,1,14004315MM40A,(M2),140,2014-09-11,Petit Theft,2015-01-29,2015-02-03,,0,,,,,Risk of Recidivism,3,Low,2014-03-26,Risk of Violence,3,Low,2014-03-26,2015-01-29,2015-02-03,6,0,169,1,1\r\n2194,tawana williams,tawana,williams,2013-01-25,Female,1973-07-14,42,25 - 45,African-American,0,3,0,0,2,-1,2013-01-24 11:48:41,2013-02-28 05:30:45,13008351TC10A,,2013-01-24,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-25,Risk of Violence,1,Low,2013-01-25,2013-01-24,2013-02-28,2,34,1162,0,0\r\n2195,travis thomas,travis,thomas,2014-01-29,Male,1990-08-30,25,25 - 45,African-American,0,6,0,0,8,0,2014-01-29 12:27:09,2014-02-27 12:46:07,14001279CF10A,2014-01-28,,1,F,Grand Theft in the 3rd Degree,1,14007121MM10A,(M1),0,2014-04-29,Petit Theft $100- $300,2014-04-29,2014-05-01,,0,,,,,Risk of Recidivism,6,Medium,2014-01-29,Risk of Violence,5,Medium,2014-01-29,2014-04-29,2014-05-01,8,29,90,1,1\r\n2196,robert mauney,robert,mauney,2014-02-03,Male,1966-07-24,49,Greater than 45,African-American,0,2,0,0,4,0,2014-02-03 12:18:15,2014-03-11 08:20:05,14001792MM10A,2014-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-03,2014-03-11,4,36,788,0,0\r\n2197,romanye brown,romanye,brown,2013-04-16,Male,1989-06-24,26,25 - 45,African-American,1,9,0,0,7,-43,2013-03-04 11:43:45,2013-04-12 08:47:34,12015843CF10A,,2013-03-04,43,F,arrest case no charge,1,14015304MM10A,(M1),0,2014-10-21,Unlaw Use False Name/Identity,2014-10-21,2014-12-16,,0,,,,,Risk of Recidivism,9,High,2013-04-16,Risk of Violence,5,Medium,2013-04-16,2014-10-21,2014-12-16,7,0,553,1,1\r\n2198,james ravino,james,ravino,2013-10-22,Male,1963-09-05,52,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-10-21 11:28:17,2013-11-15 09:18:28,13014717CF10A,2013-10-21,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-21,2013-11-15,1,24,892,0,0\r\n2201,melinda huffman,melinda,huffman,2013-11-25,Female,1955-04-28,60,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-11-24 04:19:55,2013-11-25 09:02:04,13016357CF10A,2013-11-24,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,2013-11-24,2013-11-25,2,0,858,0,0\r\n2205,teresa-marie holness,teresa-marie,holness,2013-03-13,Female,1993-01-26,23,Less than 25,African-American,0,6,0,0,0,-1,2013-03-12 06:19:34,2013-03-13 08:18:42,13004934MM10A,2013-03-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-13,Risk of Violence,6,Medium,2013-03-13,2013-03-12,2013-03-13,0,0,1115,0,0\r\n2206,theodore blount,theodore,blount,2013-01-30,Male,1985-11-16,30,25 - 45,African-American,0,7,0,0,2,-1,2013-01-29 08:26:44,2013-01-30 08:54:42,07049837TC10A,2007-12-21,,1867,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-30,Risk of Violence,6,Medium,2013-01-30,2014-01-05,2014-04-15,2,0,340,0,0\r\n2207,antonio young,antonio,young,2013-03-27,Male,1967-07-10,48,Greater than 45,African-American,0,6,0,0,9,0,2013-03-27 08:37:50,2013-03-31 03:02:59,12010225CF10A,,2013-03-27,0,F,arrest case no charge,1,14004677CF10A,(M1),0,2014-04-03,Possession of Cocaine,2014-04-03,2014-04-04,,0,,,,,Risk of Recidivism,6,Medium,2013-03-27,Risk of Violence,5,Medium,2013-03-27,2014-04-03,2014-04-04,9,4,372,1,1\r\n2208,mario baptiste,mario,baptiste,2013-08-26,Male,1984-02-09,32,25 - 45,African-American,0,7,0,0,2,0,2013-08-26 03:38:03,2013-08-27 05:13:33,13012049CF10A,2013-08-26,,0,F,Driving While License Revoked,1,14009957MM10A,(M1),0,2014-06-26,Battery,2014-06-26,2014-06-28,,1,14009957MM10A,(M1),2014-06-26,Battery,Risk of Recidivism,7,Medium,2013-08-26,Risk of Violence,5,Medium,2013-08-26,2014-06-26,2014-06-28,2,1,304,1,1\r\n2209,alex olivo,alex,olivo,2014-03-24,Male,1987-11-13,28,25 - 45,Hispanic,0,3,0,1,3,-1,2014-03-23 04:26:44,2014-03-25 04:03:13,14004108CF10A,2014-03-23,,1,F,Felony Battery (Dom Strang),1,15057564TC30A,(M2),,2015-08-22,Disobey Officer/Fireman,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-24,Risk of Violence,3,Low,2014-03-24,2014-03-23,2014-03-25,3,1,516,1,1\r\n2211,ervin paul,ervin,paul,2014-07-15,Male,1991-09-13,24,Less than 25,African-American,0,7,0,0,5,-1,2014-07-14 05:11:29,2014-07-15 08:15:45,14009617CF10A,2014-07-14,,1,F,Felony Driving While Lic Suspd,1,15001818MM40A,(M1),,2015-03-31,Theft/To Deprive,,,,0,,,,,Risk of Recidivism,7,Medium,2014-07-15,Risk of Violence,4,Low,2014-07-15,2015-10-14,2015-10-16,5,0,259,1,1\r\n2212,mercedes holmes,mercedes,holmes,2014-11-12,Female,1990-02-03,26,25 - 45,African-American,0,5,0,0,3,107,2015-02-27 11:33:34,2015-03-07 04:16:20,14000419CF10A,2014-01-10,,306,F,Neglect Child / No Bodily Harm,1,15006137TC10A,(M2),0,2015-02-27,Susp Drivers Lic 1st Offense,2015-02-27,2015-03-07,,0,,,,,Risk of Recidivism,5,Medium,2014-11-12,Risk of Violence,3,Low,2014-11-12,2015-02-27,2015-03-07,3,0,107,1,1\r\n2215,ricky farlow,ricky,farlow,2013-12-17,Male,1993-06-23,22,Less than 25,African-American,0,5,0,0,3,20,2014-01-06 01:56:32,2014-08-08 10:08:29,13016648CF10A,,2013-11-26,21,F,arrest case no charge,1,14000536CF10A,(F3),0,2014-01-06,Resist Officer w/Violence,2014-01-06,2014-08-08,,1,14000536CF10A,(F3),2014-01-06,Battery on Law Enforc Officer,Risk of Recidivism,5,Medium,2013-12-17,Risk of Violence,8,High,2013-12-17,2014-01-06,2014-08-08,3,0,20,1,1\r\n2216,dainsley mckenzie,dainsley,mckenzie,2013-02-15,Male,1971-09-05,44,25 - 45,African-American,0,2,0,0,2,-1,2013-02-14 06:58:25,2013-02-16 01:33:11,13002293CF10A,2013-02-14,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-15,Risk of Violence,1,Low,2013-02-15,2013-02-14,2013-02-16,2,1,1141,0,0\r\n2217,patrick kallman,patrick,kallman,2013-05-26,Male,1984-04-06,32,25 - 45,Caucasian,0,4,0,0,3,-1,2013-05-25 06:05:51,2013-08-19 09:19:45,13007491CF10A,2013-05-25,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-26,Risk of Violence,4,Low,2013-05-26,2015-01-29,2015-02-01,3,85,613,0,0\r\n2218,markee singletary,markee,singletary,2013-09-21,Female,1989-04-13,27,25 - 45,African-American,0,2,0,0,1,-1,2013-09-20 11:29:45,2013-09-21 08:27:05,13017989MM10A,2013-09-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-21,Risk of Violence,2,Low,2013-09-21,2013-09-20,2013-09-21,1,0,923,0,0\r\n2220,stephen robinson,stephen,robinson,2014-01-15,Male,1964-03-16,52,Greater than 45,African-American,0,4,0,0,15,0,2014-01-15 05:40:21,2014-01-16 03:54:05,14002103MU10A,2014-01-15,,0,M,Driving Under The Influence,1,14045617TC10A,(M2),0,2014-12-15,Operating W/O Valid License,2014-12-15,2014-12-15,,0,,,,,Risk of Recidivism,4,Low,2014-01-15,Risk of Violence,3,Low,2014-01-15,2014-12-15,2014-12-15,15,1,334,0,1\r\n2221,james ursia,james,ursia,2014-09-22,Male,1954-09-26,61,Greater than 45,Caucasian,0,2,0,0,3,0,2014-09-22 07:01:15,2014-09-23 03:26:36,14014041MM10A,2014-09-22,,0,M,Battery,1,14038792MU10A,(M1),0,2014-10-20,Refuse Submit Blood/Breath Test,2014-10-20,2014-10-20,,1,15008835CF10A,(F2),2015-07-09,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,2,Low,2014-09-22,Risk of Violence,1,Low,2014-09-22,2014-10-20,2014-10-20,3,1,28,0,1\r\n2222,billy henley,billy,henley,2013-08-07,Male,1947-02-24,69,Greater than 45,African-American,0,1,0,0,3,0,2013-08-07 02:40:49,2013-08-07 08:00:30,13014927MM10A,2013-08-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-07,Risk of Violence,2,Low,2013-08-07,2013-08-07,2013-08-07,3,0,968,0,0\r\n2223,leo beckford,leo,beckford,2013-08-14,Male,1964-08-24,51,Greater than 45,Other,0,1,0,0,2,-1,2013-08-13 06:08:08,2013-09-16 07:20:06,13011387CF10A,2013-08-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-14,Risk of Violence,1,Low,2013-08-14,2013-08-13,2013-09-16,2,33,961,0,0\r\n2224,alexandra figueroa,alexandra,figueroa,2014-01-30,Female,1995-02-16,21,Less than 25,Caucasian,0,6,0,0,1,-1,2014-01-29 07:19:41,2014-01-31 03:52:13,14000347CF10A,2013-11-05,,86,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-30,Risk of Violence,6,Medium,2014-01-30,2015-03-23,2015-04-10,1,1,417,0,0\r\n2226,daniel varnum,daniel,varnum,2013-02-09,Male,1985-03-13,31,25 - 45,Caucasian,1,6,0,0,2,-1,2013-02-08 11:38:00,2013-02-12 08:15:58,13002883MM10A,2013-02-08,,1,M,Possess Cannabis/20 Grams Or Less,1,14009241TC10A,(M2),0,2014-03-07,Susp Drivers Lic 1st Offense,2014-03-07,2014-03-08,,0,,,,,Risk of Recidivism,6,Medium,2013-02-09,Risk of Violence,6,Medium,2013-02-09,2014-03-07,2014-03-08,2,3,391,1,1\r\n2228,damian harris,damian,harris,2014-10-28,Male,1996-06-30,19,Less than 25,African-American,0,4,2,0,3,-1,2014-10-27 07:39:49,2014-11-26 11:22:02,14014447CF10A,2014-10-27,,1,F,Grand Theft in the 3rd Degree,1,15028684TC40A,(M2),,2015-05-08,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2014-10-28,Risk of Violence,7,Medium,2014-10-28,2014-10-27,2014-11-26,3,29,192,1,1\r\n2231,james scott,james,scott,2013-01-31,Male,1992-01-17,24,Less than 25,African-American,0,9,5,0,12,0,2013-01-31 03:56:16,2013-03-09 03:03:58,12047991TC10A,,2013-01-31,0,M,arrest case no charge,1,13002145CF10A,(M2),42,2013-02-07,Petit Theft,2013-03-21,2013-05-25,,1,14001817CF10A,(F1),2014-02-09,Agg Battery Law Enforc Officer,Risk of Recidivism,9,High,2013-01-31,Risk of Violence,9,High,2013-01-31,2013-01-31,2013-03-09,12,0,7,1,1\r\n2233,rafael torres,rafael,torres,2013-03-24,Male,1992-02-20,24,Less than 25,Caucasian,0,8,0,0,3,-1,2013-03-23 07:21:38,2013-03-29 10:17:53,13004231CF10A,2013-03-23,,1,F,Grand Theft in the 3rd Degree,1,13014389CF10A,(F3),0,2013-10-14,\"Poss3,4 Methylenedioxymethcath\",2013-10-14,2013-10-15,,0,,,,,Risk of Recidivism,8,High,2013-03-24,Risk of Violence,6,Medium,2013-03-24,2013-10-14,2013-10-15,3,5,204,1,1\r\n2234,guillermo mena,guillermo,mena,2013-09-23,Male,1959-02-10,57,Greater than 45,Hispanic,0,1,0,0,3,-2,2013-09-21 01:28:03,2013-09-22 01:50:17,13013319CF10A,2013-09-21,,2,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-21,2013-09-22,3,0,921,0,0\r\n2235,joseph navarro,joseph,navarro,2013-08-06,Male,1985-11-02,30,25 - 45,Caucasian,0,7,0,0,6,-1,2013-08-05 09:52:27,2013-08-12 07:37:35,13004813CF10A,,2013-08-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-06,Risk of Violence,8,High,2013-08-06,2013-08-05,2013-08-12,6,6,969,0,0\r\n2236,andrew gordon,andrew,gordon,2014-12-17,Male,1972-12-18,43,25 - 45,African-American,0,1,0,0,4,-1,2014-12-16 07:58:26,2014-12-18 04:40:49,15002693CF10A,2014-12-17,,0,F,Sound Articles Over 100,1,15017999TC20A,(M2),,2015-03-10,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,1,Low,2014-12-17,Risk of Violence,1,Low,2014-12-17,2014-12-16,2014-12-18,4,1,83,1,1\r\n2237,alrick harris,alrick,harris,2013-08-23,Male,1991-12-12,24,Less than 25,African-American,0,7,0,1,4,-1,2013-08-22 04:33:49,2013-08-27 01:19:42,13011830CF10A,2013-08-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-23,Risk of Violence,4,Low,2013-08-23,2014-04-12,2014-04-13,4,4,232,0,0\r\n2239,amy gildon,amy,gildon,2013-10-29,Female,1985-11-04,30,25 - 45,Caucasian,0,7,0,0,7,-18,2013-10-11 07:33:17,2013-10-29 05:43:13,13011376MM10A,,2013-10-12,17,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-29,Risk of Violence,3,Low,2013-10-29,2013-10-11,2013-10-29,7,0,885,0,0\r\n2240,todd mathis,todd,mathis,2014-11-13,Male,1990-12-28,25,25 - 45,African-American,0,9,0,0,5,-1,2014-11-12 11:32:03,2014-11-14 01:37:32,14015226CF10A,2014-11-12,,1,F,Live on Earnings of Prostitute,1,15000440MM10A,(M1),0,2015-01-12,Possess Cannabis/20 Grams Or Less,2015-01-12,2015-01-13,,0,,,,,Risk of Recidivism,9,High,2014-11-13,Risk of Violence,7,Medium,2014-11-13,2015-01-12,2015-01-13,5,1,60,1,1\r\n2243,david tal-mason,david,tal-mason,2014-07-21,Male,1958-12-14,57,Greater than 45,Caucasian,0,2,0,0,0,,,,,,,,M,,1,14015383CF10A,(F3),0,2014-11-15,Resist Officer w/Violence,2014-11-15,2014-11-16,,1,14015383CF10A,(F3),2014-11-15,Battery on Law Enforc Officer,Risk of Recidivism,2,Low,2014-07-21,Risk of Violence,1,Low,2014-07-21,2014-11-15,2014-11-16,0,0,117,1,1\r\n2245,rebecca lowery,rebecca,lowery,2013-01-02,Female,1960-04-18,56,Greater than 45,Caucasian,0,8,0,0,1,-1,2013-01-01 08:39:42,2013-06-20 05:12:00,13000039CF10A,2013-01-01,,1,F,Felony DUI (level 3),0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-02,Risk of Violence,3,Low,2013-01-02,2013-06-20,2014-01-21,1,384,1185,0,0\r\n2246,adrian mclemore,adrian,mclemore,2013-02-20,Male,1994-06-27,21,Less than 25,African-American,0,8,0,0,1,-8,2013-02-12 01:28:50,2013-02-20 09:54:56,13002192CF10A,,2013-02-12,8,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-20,Risk of Violence,8,High,2013-02-20,2013-03-29,2013-12-12,1,0,37,0,0\r\n2247,anthony perry,anthony,perry,2013-01-05,Male,1984-08-15,31,25 - 45,African-American,3,10,0,0,6,-1,2013-01-04 04:19:50,2013-02-04 12:38:13,13000174CF10A,2013-01-04,,1,F,Resist Officer w/Violence,1,13009179CF10A,(F3),0,2013-06-29,Felony Battery w/Prior Convict,2013-06-29,2014-11-18,,1,13009179CF10A,(F3),2013-06-29,Felony Battery (Dom Strang),Risk of Recidivism,10,High,2013-01-05,Risk of Violence,6,Medium,2013-01-05,2013-06-29,2014-11-18,6,30,175,1,1\r\n2248,markiesha gill,markiesha,gill,2013-04-18,Female,1992-09-11,23,Less than 25,African-American,0,9,0,0,1,-1,2013-04-17 03:45:44,2013-04-18 09:35:33,13005529CF10A,,2013-04-17,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-18,Risk of Violence,8,High,2013-04-18,2013-04-17,2013-04-18,1,0,1079,0,0\r\n2250,theophilus brown,theophilus,brown,2013-03-02,Male,1985-12-09,30,25 - 45,African-American,1,10,0,2,15,-1,2013-03-01 08:46:59,2013-03-03 03:19:38,13003142CF10A,2013-03-01,,1,F,Burglary Unoccupied Dwelling,1,13004291CF10A,(F3),993,2013-03-21,Grand Theft in the 3rd Degree,2015-12-09,2015-12-15,,0,,,,,Risk of Recidivism,10,High,2013-03-02,Risk of Violence,8,High,2013-03-02,2013-03-14,2015-12-03,15,1,19,1,1\r\n2252,jacques alinstant,jacques,alinstant,2013-06-17,Male,1973-08-20,42,25 - 45,Other,0,1,0,0,1,-13,2013-06-04 03:44:44,2013-06-04 07:34:46,13010751MM10A,2013-06-04,,13,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-17,Risk of Violence,1,Low,2013-06-17,2013-06-04,2013-06-04,1,0,1019,0,0\r\n2256,anthony wierengo,anthony,wierengo,2013-01-12,Male,1951-08-20,64,Greater than 45,Caucasian,0,3,0,0,0,-1,2013-01-11 08:49:41,2013-04-30 06:24:32,13000501CF10A,2013-01-11,,1,F,Sex Offender Fail Comply W/Law,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-12,Risk of Violence,2,Low,2013-01-12,2013-04-30,2013-11-15,0,307,1175,0,0\r\n2258,almalinda gonzalez,almalinda,gonzalez,2014-12-28,Female,1995-01-11,21,Less than 25,Caucasian,0,6,0,0,0,-1,2014-12-27 09:18:01,2014-12-28 01:35:14,14017089CF10A,2014-12-27,,1,F,Grand Theft in the 3rd Degree,1,15005073CF10A,(F3),0,2015-04-17,Grand Theft in the 3rd Degree,2015-04-17,2015-04-18,,1,15002242MM20A,(M1),2015-08-15,Battery,Risk of Recidivism,6,Medium,2014-12-28,Risk of Violence,6,Medium,2014-12-28,2015-04-17,2015-04-18,0,0,110,1,1\r\n2259,lee williams,lee,williams,2013-10-30,Male,1979-12-04,36,25 - 45,African-American,0,3,0,0,5,17,2013-11-16 02:26:39,2013-11-27 05:46:49,08018965CF10A,,2011-08-27,795,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-30,Risk of Violence,2,Low,2013-10-30,2013-11-16,2013-11-27,5,0,17,0,0\r\n2261,ernestine parrish,ernestine,parrish,2013-08-30,Female,1965-11-17,50,Greater than 45,African-American,0,1,0,0,1,-1,2013-08-29 06:41:54,2013-08-30 08:31:24,12014982CF10A,,2013-08-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-30,Risk of Violence,1,Low,2013-08-30,2013-08-29,2013-08-30,1,0,945,0,0\r\n2262,brian butler,brian,butler,2014-10-22,Male,1993-01-29,23,Less than 25,African-American,0,3,0,0,0,0,2014-10-22 12:11:33,2014-10-23 03:13:19,14015322MM10A,2014-10-21,,1,M,Battery,1,14014788CF10A,(F3),0,2014-11-03,Contempt Of Court,2014-11-03,2014-11-04,,0,,,,,Risk of Recidivism,3,Low,2014-10-22,Risk of Violence,4,Low,2014-10-22,2014-11-03,2014-11-04,0,1,12,1,1\r\n2263,reuben billie,reuben,billie,2013-04-26,Male,1987-12-22,28,25 - 45,Native American,0,3,0,0,2,-1,2013-04-25 08:44:42,2013-06-13 10:12:31,13005974CF10A,2013-04-25,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-26,Risk of Violence,4,Low,2013-04-26,2013-04-25,2013-06-13,2,48,1071,0,0\r\n2268,lauren perry,lauren,perry,2013-01-28,Female,1990-04-20,25,25 - 45,Caucasian,0,7,0,0,5,-3,2013-01-25 01:47:43,2013-01-25 09:37:49,13001264CF10A,2013-01-24,,4,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-28,Risk of Violence,4,Low,2013-01-28,2013-02-15,2013-02-20,5,0,18,0,0\r\n2269,patricia maccall,patricia,maccall,2013-09-12,Female,1969-04-19,47,Greater than 45,African-American,0,6,0,0,1,,,,11013532CF10A,2011-08-12,,762,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-12,Risk of Violence,3,Low,2013-09-12,,,1,0,932,0,0\r\n2271,doyen small,doyen,small,2013-12-13,Male,1988-01-11,28,25 - 45,African-American,0,8,0,1,7,104,2014-03-27 07:41:23,2014-05-05 11:05:41,07014551CF10A,,2013-12-04,9,F,arrest case no charge,1,14004320CF10A,(F3),0,2014-03-27,Attempt Crim Use of Personal ID Info,2014-03-27,2014-05-05,,0,,,,,Risk of Recidivism,8,High,2013-12-13,Risk of Violence,7,Medium,2013-12-13,2014-03-27,2014-05-05,7,0,104,1,1\r\n2272,freddy romero,freddy,romero,2013-11-01,Male,1963-01-11,53,Greater than 45,Hispanic,0,10,0,0,4,,,,11007863CF10A,,2012-06-29,490,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-11-01,Risk of Violence,5,Medium,2013-11-01,2012-06-27,2012-07-01,4,0,882,0,0\r\n2274,joseph diaz,joseph,diaz,2014-04-09,Male,1961-06-21,54,Greater than 45,Caucasian,0,4,0,0,14,-1,2014-04-08 09:56:20,2014-05-06 10:12:47,14005998MM10A,2014-04-08,,1,M,Battery,1,14007611MM10A,(M1),0,2014-05-07,Resist/Obstruct W/O Violence,2014-05-07,2014-08-05,,1,15007515CF10A,(F3),2015-06-09,Battery Emergency Care Provide,Risk of Recidivism,4,Low,2014-04-09,Risk of Violence,3,Low,2014-04-09,2014-05-07,2014-08-05,14,27,28,1,1\r\n2276,oneil ebanks,oneil,ebanks,2013-12-27,Male,1979-01-14,37,25 - 45,Other,0,1,0,0,6,-1,2013-12-26 04:59:22,2013-12-27 08:15:19,13023823MM10A,2013-12-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-27,Risk of Violence,2,Low,2013-12-27,2013-12-26,2013-12-27,6,0,826,0,0\r\n2277,omar sao,omar,sao,2013-11-07,Male,1990-09-22,25,25 - 45,Caucasian,0,9,0,1,5,-1,2013-11-06 11:10:50,2013-11-21 09:35:41,13013970MM10A,,2013-11-06,1,M,arrest case no charge,1,14067085TC40A,(M1),18,2014-09-29,Opert With Susp DL 2nd Offens,2014-10-17,2014-10-18,,1,15009628CF10A,(F3),2015-03-16,Felony Battery w/Prior Convict,Risk of Recidivism,9,High,2013-11-07,Risk of Violence,8,High,2013-11-07,2013-11-06,2013-11-21,5,14,326,1,1\r\n2278,thomas whalen,thomas,whalen,2013-11-10,Male,1953-01-15,63,Greater than 45,Caucasian,0,1,0,0,0,0,2013-11-10 02:08:05,2013-11-13 05:58:16,13021195MM10A,2013-11-09,,1,M,Battery,1,14006033MM10A,(M1),1,2014-04-09,Viol Pretrial Release Dom Viol,2014-04-10,2014-04-21,,0,,,,,Risk of Recidivism,1,Low,2013-11-10,Risk of Violence,1,Low,2013-11-10,2013-11-10,2013-11-13,0,3,150,1,1\r\n2279,james burns,james,burns,2014-03-22,Male,1981-03-25,35,25 - 45,African-American,0,7,0,0,2,-1,2014-03-21 03:10:20,2014-03-22 08:07:10,14004981MM10A,2014-03-21,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-22,Risk of Violence,4,Low,2014-03-22,2014-03-21,2014-03-22,2,0,741,0,0\r\n2280,markel landers,markel,landers,2013-10-30,Male,1995-12-29,20,Less than 25,African-American,9,4,0,0,9,-70,2013-08-21 12:33:22,2013-10-25 10:48:38,13013753CF10A,,2013-10-07,23,F,arrest case no charge,1,14007040MM10A,(M1),0,2014-04-28,Unlaw Use False Name/Identity,2014-04-28,2015-02-03,,0,,,,,Risk of Recidivism,4,Low,2013-10-30,Risk of Violence,7,Medium,2013-10-30,2014-04-28,2015-02-03,9,0,180,1,1\r\n2281,alfonso hamilton,alfonso,hamilton,2013-01-22,Male,1989-09-22,26,25 - 45,Hispanic,0,1,0,0,0,-1,2013-01-21 08:16:29,2013-01-22 01:59:00,13001425MM10A,2013-01-21,,1,M,Battery,1,13003832MM10A,(M2),0,2013-02-24,Fail To Obey Police Officer,2013-02-24,2013-04-03,,0,,,,,Risk of Recidivism,1,Low,2013-01-22,Risk of Violence,3,Low,2013-01-22,2013-02-24,2013-04-03,0,0,33,1,1\r\n2282,shawn flecther,shawn,flecther,2014-03-23,Male,1984-01-18,32,25 - 45,African-American,0,3,0,0,2,,,,10019917CF10B,,2012-05-15,677,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-23,Risk of Violence,3,Low,2014-03-23,,,2,0,740,0,0\r\n2283,alton roberts,alton,roberts,2013-04-09,Male,1990-10-26,25,25 - 45,African-American,0,10,0,0,8,-1,2013-04-08 05:47:18,2013-04-10 01:26:53,13006769MM10A,2013-04-08,,1,M,Battery,1,13011245CF10A,(F3),0,2013-08-10,Attempted Robbery  No Weapon,2013-08-10,2013-10-02,,1,13011245CF10A,(F3),2013-08-10,Attempted Robbery  No Weapon,Risk of Recidivism,10,High,2013-04-09,Risk of Violence,10,High,2013-04-09,2013-04-23,2013-04-26,8,1,14,0,1\r\n2284,kenneth alvarez,kenneth,alvarez,2013-12-02,Male,1982-08-28,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-12-01 10:12:15,2013-12-02 01:55:48,13022369MM10A,2013-12-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-02,0,0,851,0,0\r\n2285,alexander santana,alexander,santana,2013-03-12,Male,1986-05-22,29,25 - 45,African-American,0,3,0,0,7,-1,2013-03-11 06:21:47,2013-03-13 02:21:18,13003329CF10A,,2013-03-11,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-12,Risk of Violence,4,Low,2013-03-12,2013-06-12,2013-06-14,7,1,92,0,0\r\n2286,jeffrey sabogal,jeffrey,sabogal,2013-02-21,Male,1989-03-09,27,25 - 45,Hispanic,0,4,0,0,2,-1,2013-02-20 06:36:20,2013-02-21 01:30:47,13003618MM10A,2013-02-20,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-21,Risk of Violence,3,Low,2013-02-21,2013-02-20,2013-02-21,2,0,1135,0,0\r\n2287,anthony mcdougle,anthony,mcdougle,2013-05-19,Male,1978-08-19,37,25 - 45,African-American,1,9,0,1,12,-1,2013-05-18 08:27:45,2013-05-19 01:14:43,13009597MM10A,2013-05-18,,1,M,Disorderly Intoxication,1,13019770MM10A,(M2),1,2013-10-18,Trespass Struct/Conveyance,2013-10-19,2013-10-19,,0,,,,,Risk of Recidivism,9,High,2013-05-19,Risk of Violence,10,High,2013-05-19,2014-02-12,2014-02-13,12,0,152,1,1\r\n2289,chloe bridges,chloe,bridges,2014-03-26,Female,1995-06-26,20,Less than 25,Caucasian,0,10,2,1,3,-1,2014-03-25 06:58:54,2014-03-26 01:23:55,14005167MM10A,2014-03-25,,1,M,Battery,1,15008702MM10A,(M1),0,2015-08-17,Battery,2015-08-17,2015-08-18,,1,15008702MM10A,(M1),2015-08-17,Battery,Risk of Recidivism,10,High,2014-03-26,Risk of Violence,8,High,2014-03-26,2014-04-22,2014-05-28,3,0,27,0,1\r\n2290,rahiem tracey,rahiem,tracey,2014-08-17,Male,1984-01-26,32,25 - 45,African-American,0,2,0,0,1,-1,2014-08-16 03:33:47,2014-08-17 08:45:33,14011231CF10A,2014-08-16,,1,F,Pos Cannabis W/Intent Sel/Del,1,14004839MM40A,(M1),,2014-10-27,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,2,Low,2014-08-17,Risk of Violence,2,Low,2014-08-17,2014-08-16,2014-08-17,1,0,71,1,1\r\n2291,joseph mcmahon,joseph,mcmahon,2013-06-17,Male,1943-12-30,72,Greater than 45,Caucasian,0,1,0,0,1,-23,2013-05-25 07:53:47,2013-05-26 08:34:25,13010046MM10A,2013-05-25,,23,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-17,Risk of Violence,1,Low,2013-06-17,2013-05-25,2013-05-26,1,0,1019,0,0\r\n2292,alex kantzelis,alex,kantzelis,2013-04-17,Male,1977-06-11,38,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-16 03:54:04,2013-04-18 10:30:00,13005461CF10A,2013-04-16,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-17,Risk of Violence,1,Low,2013-04-17,2014-10-14,2014-10-17,0,1,545,0,0\r\n2293,santos perez,santos,perez,2013-03-09,Male,1975-08-31,40,25 - 45,Caucasian,0,2,0,0,0,-1,2013-03-08 09:44:15,2013-03-09 01:22:15,13003459CF10A,2013-03-08,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2013-03-08,2013-03-09,0,0,1119,0,0\r\n2294,jose pascual,jose,pascual,2014-03-13,Male,1993-01-25,23,Less than 25,Caucasian,0,3,0,0,0,-1,2014-03-12 12:50:45,2014-03-13 10:24:23,14003530CF10A,2014-03-12,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-13,Risk of Violence,4,Low,2014-03-13,2014-03-12,2014-03-13,0,0,750,0,0\r\n2297,kyle cossick,kyle,cossick,2014-05-19,Male,1995-01-10,21,Less than 25,Caucasian,0,8,0,0,5,-10,2014-05-09 09:30:19,2014-05-11 01:49:57,14006500CF10A,2014-05-09,,10,F,Poss Pyrrolidinovalerophenone,1,14016163CF10A,(F2),36,2014-10-29,Agg Battery Grt/Bod/Harm,2014-12-04,2015-09-11,,1,14016163CF10A,(F2),2014-10-29,Agg Battery Grt/Bod/Harm,Risk of Recidivism,8,High,2014-05-19,Risk of Violence,8,High,2014-05-19,2016-03-23,2016-03-29,5,0,163,1,1\r\n2299,daniel oneil,daniel,oneil,2013-05-10,Male,1988-08-04,27,25 - 45,Caucasian,0,7,0,0,4,0,2013-05-10 03:57:29,2013-05-10 07:50:28,13006710CF10A,2013-05-10,,0,F,\"Poss3,4 Methylenedioxymethcath\",1,14003976MU10A,(M2),1,2014-01-31,Driving Under The Influence,2014-02-01,2014-02-01,,0,,,,,Risk of Recidivism,7,Medium,2013-05-10,Risk of Violence,4,Low,2013-05-10,2014-02-01,2014-02-01,4,0,266,1,1\r\n2300,phillip gomez,phillip,gomez,2014-11-04,Male,1960-12-12,55,Greater than 45,Caucasian,0,6,0,0,13,-1,2014-11-03 12:57:30,2014-11-04 08:57:17,14014777CF10A,2014-11-03,,1,F,Possession of Cocaine,1,14016448MM10A,(M1),0,2014-11-17,Trespass Other Struct/Convey,2014-11-17,2014-12-09,,0,,,,,Risk of Recidivism,6,Medium,2014-11-04,Risk of Violence,7,Medium,2014-11-04,2014-11-17,2014-12-09,13,0,13,1,1\r\n2301,mcken scott,mcken,scott,2013-09-26,Male,1993-04-03,23,Less than 25,African-American,0,9,3,0,5,,,,13013545CF10A,2013-09-26,,0,F,Burglary Structure Unoccup,1,13047358TC10A,(M2),,2013-12-11,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,9,High,2013-09-26,Risk of Violence,9,High,2013-09-26,,,5,0,76,1,1\r\n2303,leah hein,leah,hein,2014-01-10,Female,1975-04-11,41,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-09 08:49:51,2014-01-10 01:49:35,14000418MM10A,2014-01-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-10,Risk of Violence,1,Low,2014-01-10,2014-01-09,2014-01-10,0,0,812,0,0\r\n2306,george zargos,george,zargos,2013-05-16,Male,1959-08-15,56,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-05-15 06:33:00,2013-05-17 09:07:02,13009401MM10A,2013-05-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-16,Risk of Violence,1,Low,2013-05-16,2013-05-15,2013-05-17,1,1,1051,0,0\r\n2307,billy johnson,billy,johnson,2013-05-03,Male,1961-01-18,55,Greater than 45,Caucasian,0,7,0,0,11,-1,2013-05-02 03:15:21,2013-06-28 09:30:37,11083457TC20A,,2012-05-30,338,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-03,Risk of Violence,3,Low,2013-05-03,2013-10-01,2013-10-19,11,56,151,0,0\r\n2309,melissa sanchez,melissa,sanchez,2013-06-11,Female,1992-06-22,23,Less than 25,Hispanic,0,6,0,0,0,-2,2013-06-09 12:16:01,2013-06-11 01:19:44,13008138CF10A,2013-06-08,,3,F,Possession of Cocaine,1,13014192MM10A,(M2),0,2013-07-26,Procure For Prostitution,2013-07-26,2013-08-22,,0,,,,,Risk of Recidivism,6,Medium,2013-06-11,Risk of Violence,5,Medium,2013-06-11,2013-07-26,2013-08-22,0,0,45,1,1\r\n2310,lloyd sterling,lloyd,sterling,2013-08-24,Male,1987-05-17,28,25 - 45,African-American,0,2,0,0,3,-1,2013-08-23 12:58:10,2013-08-24 09:05:06,13011917CF10A,2013-08-23,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-24,Risk of Violence,2,Low,2013-08-24,2013-08-23,2013-08-24,3,0,951,0,0\r\n2311,barrington christie,barrington,christie,2013-05-02,Male,1985-03-03,31,25 - 45,Other,0,2,0,0,2,-1,2013-05-01 03:08:07,2013-05-14 11:36:33,13006246CF10A,,2013-05-01,1,F,arrest case no charge,1,14009764CF10A,(M1),140,2014-03-07,Viol Injunct Domestic Violence,2014-07-25,2014-07-29,,1,14009764CF10A,(F2),2014-03-07,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,2,Low,2013-05-02,Risk of Violence,4,Low,2013-05-02,2013-05-01,2013-05-14,2,12,309,1,1\r\n2314,michael barfield,michael,barfield,2013-05-17,Male,1959-09-19,56,Greater than 45,African-American,0,2,0,0,3,-49,2013-03-29 09:31:42,2013-05-17 10:53:22,13006073MM10A,2013-03-29,,49,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-17,Risk of Violence,1,Low,2013-05-17,2013-07-14,2013-08-05,3,0,58,0,0\r\n2316,michael burgess,michael,burgess,2013-04-15,Male,1963-03-17,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-14 09:55:04,2013-04-15 07:44:31,13007213MM10A,2013-04-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-15,Risk of Violence,1,Low,2013-04-15,2013-04-14,2013-04-15,0,0,1082,0,0\r\n2317,aton francis,aton,francis,2014-11-15,Male,1988-04-26,27,25 - 45,African-American,0,5,0,0,6,-1,2014-11-14 10:20:22,2014-11-24 10:35:08,14015392CF10A,2014-11-14,,1,F,Possession Of Methamphetamine,1,15012017CF10A,(F3),0,2015-09-16,Burglary Conveyance Unoccup,2015-09-16,2015-11-21,,0,,,,,Risk of Recidivism,5,Medium,2014-11-15,Risk of Violence,4,Low,2014-11-15,2015-09-16,2015-11-21,6,9,305,1,1\r\n2318,agli caca,agli,caca,2013-12-31,Male,1993-07-26,22,Less than 25,Caucasian,0,5,0,0,0,-1,2013-12-30 09:35:38,2013-12-31 09:30:33,13018002CF10A,2013-12-30,,1,F,Grand Theft in the 3rd Degree,1,14003275MM10A,(M1),0,2014-02-25,Petit Theft $100- $300,2014-02-25,2014-02-26,,0,,,,,Risk of Recidivism,5,Medium,2013-12-31,Risk of Violence,6,Medium,2013-12-31,2014-02-25,2014-02-26,0,0,56,1,1\r\n2320,shakeria higgs,shakeria,higgs,2014-01-30,Female,1993-05-08,22,Less than 25,African-American,0,4,0,1,0,-1,2014-01-29 08:32:59,2014-01-30 01:32:46,14001316CF10A,2014-01-29,,1,F,Grand Theft in the 3rd Degree,1,15001853TC10A,(M2),0,2015-01-19,Fail Register Vehicle,2015-01-19,2015-01-20,,0,,,,,Risk of Recidivism,4,Low,2014-01-30,Risk of Violence,4,Low,2014-01-30,2015-01-19,2015-01-20,0,0,354,1,1\r\n2321,terrance williams,terrance,williams,2013-03-02,Male,1982-11-19,33,25 - 45,African-American,0,6,0,0,7,-1,2013-03-01 05:09:59,2013-03-03 04:26:19,13004224MM10A,2013-03-01,,1,M,Viol Prot Injunc Repeat Viol,1,14008781CF10A,(F3),0,2014-05-30,Felony Battery w/Prior Convict,2014-05-30,2014-05-31,,1,14008676MM10A,(M1),2014-05-30,Battery,Risk of Recidivism,6,Medium,2013-03-02,Risk of Violence,7,Medium,2013-03-02,2013-12-12,2014-04-21,7,1,285,0,1\r\n2322,kirk jenkins,kirk,jenkins,2013-04-26,Male,1982-01-16,34,25 - 45,African-American,0,7,0,0,15,-6,2013-04-20 04:52:17,2013-04-26 10:39:19,13005663CF10A,,2013-04-20,6,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-26,Risk of Violence,7,Medium,2013-04-26,2013-12-12,2013-12-16,15,0,230,0,0\r\n2324,luis valenzuela,luis,valenzuela,2013-11-01,Male,1993-06-30,22,Less than 25,Hispanic,0,3,0,0,0,0,2013-11-01 05:09:17,2013-11-02 03:00:00,13020654MM10A,2013-11-01,,0,M,Battery,1,14001290MM30A,(M1),,2014-07-24,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-01,Risk of Violence,5,Medium,2013-11-01,2013-11-01,2013-11-02,0,1,265,1,1\r\n2326,jerrod moore,jerrod,moore,2013-01-15,Male,1983-11-15,32,25 - 45,African-American,0,8,0,0,12,-1,2013-01-14 02:13:57,2013-01-15 06:58:20,13000626CF10A,2013-01-14,,1,F,Possession of Cocaine,1,16000466CF10A,(F3),0,2016-01-12,,2016-01-12,2016-01-13,,0,,,,,Risk of Recidivism,8,High,2013-01-15,Risk of Violence,6,Medium,2013-01-15,2016-01-12,2016-01-13,12,0,1092,1,0\r\n2327,ronnie brown,ronnie,brown,2013-05-29,Male,1968-12-02,47,Greater than 45,African-American,4,9,0,1,14,-1,2013-05-28 10:29:53,2013-05-29 01:39:49,13007600CF10A,2013-05-28,,1,F,Grand Theft in the 3rd Degree,1,14004495CF10A,(F3),0,2014-03-31,Felony Petit Theft,2014-03-31,2014-07-17,,0,,,,,Risk of Recidivism,9,High,2013-05-29,Risk of Violence,4,Low,2013-05-29,2014-03-31,2014-07-17,14,0,306,1,1\r\n2328,christopher piperwang,christopher,piperwang,2013-01-10,Male,1991-12-01,24,Less than 25,Asian,0,2,0,0,0,0,2013-01-10 02:33:14,2013-01-10 06:49:00,13000598MM10A,2013-01-09,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-10,Risk of Violence,3,Low,2013-01-10,2013-01-10,2013-01-10,0,0,1177,0,0\r\n2329,glenn mckennie,glenn,mckennie,2013-09-22,Male,1990-08-09,25,25 - 45,African-American,0,10,4,4,14,-1,2013-09-21 05:23:05,2013-12-13 05:27:00,13013310CF10A,2013-09-21,,1,F,Grand Theft (Motor Vehicle),1,14013683CF10A,(F3),0,2014-10-10,Uttering a Forged Instrument,2014-10-10,2015-02-05,,0,,,,,Risk of Recidivism,10,High,2013-09-22,Risk of Violence,7,Medium,2013-09-22,2014-10-10,2015-02-05,14,82,383,1,1\r\n2332,michael hin,michael,hin,2013-04-30,Male,1960-01-23,56,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-30 12:38:57,2013-04-30 07:45:44,13006137CF10A,2013-04-29,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-30,Risk of Violence,1,Low,2013-04-30,2013-04-30,2013-04-30,0,0,1067,0,0\r\n2334,gabriel lovato,gabriel,lovato,2013-01-07,Male,1979-10-17,36,25 - 45,Hispanic,0,4,0,0,1,30,2013-02-06 10:09:18,2013-05-24 06:02:05,12018293CF10A,2012-12-16,,22,F,Aggravated Battery,1,13001876CF10A,(F7),,2013-02-06,Armed Kidnapping,,,,1,13001876CF10A,(F7),2013-02-06,Armed Kidnapping,Risk of Recidivism,4,Low,2013-01-07,Risk of Violence,4,Low,2013-01-07,2013-02-06,2013-05-24,1,0,30,1,1\r\n2335,joey willingham,joey,willingham,2013-05-14,Male,1988-03-18,28,25 - 45,African-American,0,6,0,0,4,0,2013-05-14 03:57:54,2013-06-04 05:09:09,13006892CF10A,2013-05-13,,1,F,Burglary Dwelling Assault/Batt,1,13014757MM10A,(M1),1,2013-08-05,Viol Injunct Domestic Violence,2013-08-06,2013-08-16,,1,15007770CF10A,(F3),2015-06-13,Robbery Sudd Snatch No Weapon,Risk of Recidivism,6,Medium,2013-05-14,Risk of Violence,5,Medium,2013-05-14,2013-05-14,2013-06-04,4,21,83,1,1\r\n2336,jacksin lumas,jacksin,lumas,2014-06-21,Male,1995-09-17,20,Less than 25,African-American,2,9,0,0,2,-1,2014-06-20 09:05:06,2014-06-21 08:48:06,14008531CF10A,2014-06-20,,1,F,Grand Theft in the 3rd Degree,1,14017556MM10A,(M1),0,2014-12-13,Petit Theft $100- $300,2014-12-13,2015-11-17,,0,,,,,Risk of Recidivism,9,High,2014-06-21,Risk of Violence,7,Medium,2014-06-21,2014-10-28,2014-11-13,2,0,129,0,1\r\n2338,osvaldo rodriquez,osvaldo,rodriquez,2013-08-27,Male,1957-03-28,59,Greater than 45,Hispanic,0,1,0,0,0,-2,2013-08-25 04:54:17,2013-08-26 08:49:40,13016251MM10A,2013-08-25,,2,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,2013-08-25,2013-08-26,0,0,948,0,0\r\n2339,ashley caparelli,ashley,caparelli,2014-03-19,Female,1988-11-19,27,25 - 45,Caucasian,0,7,0,0,1,,,,13008848CF10A,,2013-07-24,238,F,arrest case no charge,1,15000340MM20A,(M2),,2015-01-13,Petit Theft,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-19,Risk of Violence,3,Low,2014-03-19,,,1,0,300,1,1\r\n2342,glorisha davis,glorisha,davis,2013-11-03,Female,1986-11-30,29,25 - 45,African-American,0,8,0,0,11,-1,2013-11-02 11:52:10,2013-11-03 07:25:02,13015266CF10A,2013-11-02,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-03,Risk of Violence,5,Medium,2013-11-03,2013-11-02,2013-11-03,11,0,880,0,0\r\n2343,david hutton,david,hutton,2014-03-19,Male,1944-01-22,72,Greater than 45,Caucasian,0,1,0,0,3,-5,2014-03-14 12:25:05,2014-03-19 02:55:55,75003147CF10A,,2014-03-14,5,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-19,Risk of Violence,1,Low,2014-03-19,2014-03-14,2014-03-19,3,0,744,0,0\r\n2344,juliet francis,juliet,francis,2013-02-02,Female,1991-06-26,24,Less than 25,African-American,0,7,0,0,2,-1,2013-02-01 08:31:26,2013-02-15 08:31:42,13002363MM10A,2013-02-01,,1,M,Assault,1,13076094TC40A,(M2),26,2013-10-22,Fail Register Vehicle,2013-11-17,2013-11-18,,0,,,,,Risk of Recidivism,7,Medium,2013-02-02,Risk of Violence,8,High,2013-02-02,2013-02-01,2013-02-15,2,13,262,1,1\r\n2349,jean joseph,jean,joseph,2013-07-31,Male,1971-03-12,45,Greater than 45,African-American,0,9,0,0,3,6,2013-08-06 05:19:17,2013-09-11 11:36:45,13009009CF10A,2013-06-26,,35,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-07-31,Risk of Violence,1,Low,2013-07-31,2013-08-06,2013-09-11,3,0,6,0,0\r\n2350,darryl kelly,darryl,kelly,2014-04-05,Male,1985-10-30,30,25 - 45,African-American,0,10,0,0,7,0,2014-04-05 01:40:40,2014-04-07 03:04:32,14005791MM10A,2014-04-04,,1,M,Assault,1,14029234TC10A,(M2),0,2014-08-11,Susp Drivers Lic 1st Offense,2014-08-11,2014-08-12,,0,,,,,Risk of Recidivism,10,High,2014-04-05,Risk of Violence,10,High,2014-04-05,2014-08-11,2014-08-12,7,2,128,1,1\r\n2352,evience aime,evience,aime,2013-01-02,Male,1970-12-06,45,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-01 11:17:23,2013-01-02 07:35:39,13000056MM10A,2013-01-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-02,Risk of Violence,1,Low,2013-01-02,2013-01-01,2013-01-02,0,0,1185,0,0\r\n2353,edward marko,edward,marko,2014-02-12,Male,1968-06-14,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-11 08:50:50,2014-02-12 08:19:27,14002371MM10A,2014-02-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-12,Risk of Violence,1,Low,2014-02-12,2014-02-11,2014-02-12,0,0,779,0,0\r\n2354,terrance mcdougle,terrance,mcdougle,2013-08-08,Male,1992-03-18,24,Less than 25,African-American,0,3,0,0,0,-1,2013-08-07 07:24:46,2013-08-17 04:49:12,13011053CF10A,2013-08-07,,1,F,Burgl Dwel/Struct/Convey Armed,1,13012533CF10A,(M2),0,2013-09-05,Prowling/Loitering,2013-09-05,2013-10-02,,0,,,,,Risk of Recidivism,3,Low,2013-08-08,Risk of Violence,4,Low,2013-08-08,2013-09-05,2013-10-02,0,9,28,1,1\r\n2355,welton thomas,welton,thomas,2014-09-09,Male,1995-12-16,20,Less than 25,African-American,0,3,0,0,0,-1,2014-09-08 10:28:08,2014-09-11 05:12:33,14013402MM10A,2014-09-08,,1,M,Battery,1,15074475TC30A,(M2),0,2015-11-04,Operating W/O Valid License,2015-11-04,2015-11-05,,0,,,,,Risk of Recidivism,3,Low,2014-09-09,Risk of Violence,6,Medium,2014-09-09,2015-11-04,2015-11-05,0,2,421,1,1\r\n2356,valentin subu,valentin,subu,2014-05-12,Male,1964-11-12,51,Greater than 45,Caucasian,0,1,0,0,6,0,2014-05-12 01:49:09,2014-05-12 07:22:31,14006578CF10A,,2014-05-12,0,F,arrest case no charge,1,14007960MM10A,(M2),0,2014-05-15,Petit Theft,2014-05-15,2014-05-16,,0,,,,,Risk of Recidivism,1,Low,2014-05-12,Risk of Violence,1,Low,2014-05-12,2014-05-15,2014-05-16,6,0,3,1,1\r\n2357,cornelius mccloud,cornelius,mccloud,2014-03-05,Male,1982-01-22,34,25 - 45,African-American,0,3,0,0,2,,,,13070495NI20A,2013-10-28,,128,M,Ride Tri-Rail Without Paying,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-05,Risk of Violence,2,Low,2014-03-05,2007-07-26,2008-03-22,2,0,758,0,0\r\n2360,zaire stroman,zaire,stroman,2013-04-10,Male,1994-03-02,22,Less than 25,Hispanic,0,3,0,0,2,102,2013-07-21 08:15:37,2013-07-22 02:48:13,12011072CF10A,,2012-07-27,257,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-10,Risk of Violence,6,Medium,2013-04-10,2013-07-21,2013-07-22,2,0,102,0,0\r\n2361,cindy stillman,cindy,stillman,2013-08-11,Female,1967-01-06,49,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-08-10 09:55:10,2013-08-22 09:53:33,13015118MM10A,2013-08-10,,1,M,Viol Prot Injunc Repeat Viol,1,14001195MM20A,(M1),66,2014-04-13,Viol Injunct Domestic Violence,2014-06-18,2014-06-19,,0,,,,,Risk of Recidivism,2,Low,2013-08-11,Risk of Violence,1,Low,2013-08-11,2013-08-10,2013-08-22,2,11,245,1,1\r\n2363,christopher agapay,christopher,agapay,2013-09-12,Male,1974-10-30,41,25 - 45,Caucasian,0,1,0,0,5,-1,2013-09-11 06:57:23,2013-09-12 08:29:30,13012876CF10A,2013-09-11,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2013-09-11,2013-09-12,5,0,932,0,0\r\n2365,james yarbough,james,yarbough,2014-01-21,Male,1966-04-30,49,Greater than 45,Caucasian,0,3,0,0,1,-16,2014-01-05 12:24:06,2014-01-18 09:56:35,14000164CF10A,2014-01-04,,17,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-21,Risk of Violence,1,Low,2014-01-21,2014-01-05,2014-01-18,1,0,801,0,0\r\n2366,john lopez,john,lopez,2013-10-07,Male,1989-11-27,26,25 - 45,Hispanic,0,1,0,0,0,-1,2013-10-06 06:10:59,2013-10-07 02:03:13,13018986MM10A,2013-10-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-07,Risk of Violence,2,Low,2013-10-07,2013-10-06,2013-10-07,0,0,907,0,0\r\n2367,barbara magnum,barbara,magnum,2013-12-17,Female,1981-11-06,34,25 - 45,Caucasian,0,3,0,0,2,-49,2013-10-29 08:31:46,2013-12-09 09:47:28,13015084CF10A,2013-10-29,,49,F,Uttering a Forged Instrument,1,14006913MM10A,(M1),,2014-02-08,Petit Theft $100- $300,,,,1,14004799CF10A,(F2),2014-04-04,Robbery / No Weapon,Risk of Recidivism,3,Low,2013-12-17,Risk of Violence,2,Low,2013-12-17,2014-04-04,2014-10-15,2,0,53,1,1\r\n2370,shadae scott,shadae,scott,2013-10-21,Female,1987-06-28,28,25 - 45,African-American,0,3,0,0,0,-1,2013-10-20 09:56:04,2013-10-21 09:59:59,13019834MM10A,2013-10-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-21,Risk of Violence,3,Low,2013-10-21,2013-10-20,2013-10-21,0,0,893,0,0\r\n2371,caesar silva,caesar,silva,2013-03-30,Male,1982-11-02,33,25 - 45,Caucasian,0,2,0,0,2,-1,2013-03-29 10:41:27,2013-03-31 02:30:16,13020967TC10A,2013-03-29,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-30,Risk of Violence,2,Low,2013-03-30,2013-03-29,2013-03-31,2,1,1098,0,0\r\n2372,jospeh lenoir,jospeh,lenoir,2013-11-12,Male,1969-06-28,46,Greater than 45,African-American,0,7,0,0,0,0,2013-11-12 12:24:02,2013-11-13 02:28:20,13015695CF10A,2013-11-11,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-12,Risk of Violence,4,Low,2013-11-12,2013-11-12,2013-11-13,0,1,871,0,0\r\n2374,rakesh davis,rakesh,davis,2013-03-07,Male,1994-04-21,21,Less than 25,African-American,0,4,0,0,0,-1,2013-03-06 12:46:52,2013-03-08 05:32:23,13004552MM10A,2013-03-06,,1,M,Disrupting School Function,1,16000621MM10A,(M2),,2015-12-31,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-07,Risk of Violence,6,Medium,2013-03-07,2013-03-06,2013-03-08,0,1,1029,1,0\r\n2376,patrick myree,patrick,myree,2013-08-13,Male,1989-11-18,26,25 - 45,African-American,0,9,1,3,14,0,2013-08-13 12:24:29,2013-08-13 10:16:00,13011339CF10A,2013-08-12,,1,F,Pos Cannabis W/Intent Sel/Del,1,13011822CF10A,(M1),0,2013-08-22,Possess Drug Paraphernalia,2013-08-22,2013-09-13,,0,,,,,Risk of Recidivism,9,High,2013-08-13,Risk of Violence,8,High,2013-08-13,2013-08-22,2013-09-13,14,0,9,1,1\r\n2380,lorena aristizabal,lorena,aristizabal,2013-12-11,Female,1987-06-25,28,25 - 45,Hispanic,0,5,0,0,2,-68,2013-10-04 02:31:01,2013-10-11 10:49:07,13018003MM10A,,2013-10-07,65,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-11,Risk of Violence,4,Low,2013-12-11,2013-10-04,2013-10-11,2,0,842,0,0\r\n2381,ivan paredes,ivan,paredes,2013-04-16,Male,1968-04-04,48,Greater than 45,Hispanic,0,1,0,0,1,2,2013-04-18 07:59:19,2013-08-22 11:38:00,03006943CF10A,,2012-10-29,169,F,arrest case no charge,1,13005549CF10A,(F3),0,2013-04-18,Destroy Damage Alter Elec Monitor Equip,2013-04-18,2013-08-22,,0,,,,,Risk of Recidivism,1,Low,2013-04-16,Risk of Violence,1,Low,2013-04-16,2013-04-18,2013-08-22,1,0,2,1,1\r\n2382,levert jackson,levert,jackson,2013-09-16,Male,1957-07-23,58,Greater than 45,African-American,0,6,0,0,24,0,2013-09-16 03:15:20,2013-09-19 09:14:48,13013079CF10A,2013-09-16,,0,F,Felony Petit Theft,1,13043617TC10A,(M2),,2013-10-26,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-16,Risk of Violence,1,Low,2013-09-16,2013-09-16,2013-09-19,24,3,40,1,1\r\n2383,adrian phillips,adrian,phillips,2013-01-03,Male,1987-03-12,29,25 - 45,Other,0,1,0,0,0,-1,2013-01-02 08:04:21,2013-01-03 11:24:59,13000084CF10A,2013-01-02,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2013-01-02,2013-01-03,0,0,1184,0,0\r\n2385,shakera rolle,shakera,rolle,2014-12-14,Female,1995-07-13,20,Less than 25,African-American,0,10,0,3,2,-1,2014-12-13 06:46:56,2015-01-05 09:45:19,14015492CF10A,,2014-12-13,1,F,arrest case no charge,1,15000697MO10A,(MO3),0,2015-01-19,Disorderly Conduct,2015-01-19,2015-01-19,,0,,,,,Risk of Recidivism,10,High,2014-12-14,Risk of Violence,9,High,2014-12-14,2015-01-19,2015-01-19,2,22,36,0,1\r\n2386,christopher mcewan,christopher,mcewan,2013-03-21,Male,1988-03-03,28,25 - 45,African-American,0,4,0,0,0,0,2013-03-21 02:14:25,2013-03-21 07:15:13,13005564MM10A,2013-03-20,,1,M,Possess Cannabis/20 Grams Or Less,1,13005674MM10A,(M1),0,2013-03-22,Possess Cannabis/20 Grams Or Less,2013-03-22,2013-04-13,,0,,,,,Risk of Recidivism,4,Low,2013-03-21,Risk of Violence,3,Low,2013-03-21,2013-03-22,2013-04-13,0,0,1,1,1\r\n2387,antwan davis,antwan,davis,2013-05-10,Male,1995-03-16,21,Less than 25,Caucasian,0,8,0,0,0,0,2013-05-10 02:20:24,2013-05-14 05:41:25,13006723CF10A,2013-05-09,,1,F,Grand Theft in the 3rd Degree,1,13013645CF10A,(F2),1,2013-09-28,Robbery / No Weapon,2013-09-29,2013-10-03,,1,13013645CF10A,(F2),2013-09-28,Robbery / No Weapon,Risk of Recidivism,8,High,2013-05-10,Risk of Violence,10,High,2013-05-10,2013-05-10,2013-05-14,0,4,141,1,1\r\n2388,isnor richardson,isnor,richardson,2013-02-15,Male,1989-11-08,26,25 - 45,Other,0,7,0,0,0,-1,2013-02-14 12:24:49,2013-02-15 07:56:24,13002327CF10A,2013-02-14,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-15,Risk of Violence,5,Medium,2013-02-15,2013-02-14,2013-02-15,0,0,1141,0,0\r\n2389,stanley lemorin,stanley,lemorin,2013-04-29,Male,1981-09-18,34,25 - 45,African-American,0,1,0,0,3,-4,2013-04-25 12:41:50,2013-04-26 07:20:08,12018748MM10A,,2013-04-25,4,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-25,2013-04-26,3,0,1068,0,0\r\n2390,antwane mullins,antwane,mullins,2013-05-27,Male,1983-08-30,32,25 - 45,African-American,2,8,0,0,15,-1,2013-05-26 02:00:57,2013-06-02 04:30:37,13007505CF10A,2013-05-26,,1,F,Driving While License Revoked,1,13012901CF10A,(F3),0,2013-09-12,Grand Theft in the 3rd Degree,2013-09-12,2013-09-12,,0,,,,,Risk of Recidivism,8,High,2013-05-27,Risk of Violence,5,Medium,2013-05-27,2013-09-12,2013-09-12,15,6,108,0,1\r\n2392,terrance jones,terrance,jones,2013-02-24,Male,1977-11-22,38,25 - 45,African-American,0,4,0,1,10,0,2013-02-24 02:36:13,2013-03-06 10:26:40,13002819CF10A,2013-02-23,,1,F,Robbery / Weapon,1,14006552MM10A,(M2),0,2014-04-18,Petit Theft,2014-04-18,2014-04-19,,0,,,,,Risk of Recidivism,4,Low,2013-02-24,Risk of Violence,3,Low,2013-02-24,2014-04-18,2014-04-19,10,10,418,1,1\r\n2393,ramone hall,ramone,hall,2014-03-21,Male,1993-07-18,22,Less than 25,African-American,0,3,0,0,0,-1,2014-03-20 06:54:43,2014-03-21 08:13:07,14003963CF10A,2014-03-20,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-21,Risk of Violence,5,Medium,2014-03-21,2014-03-20,2014-03-21,0,0,742,0,0\r\n2394,kevin kalbkauf,kevin,kalbkauf,2013-12-10,Male,1973-12-21,42,25 - 45,Caucasian,0,5,0,0,2,-1,2013-12-09 06:46:33,2013-12-09 09:04:01,13017036CF10A,2013-12-09,,1,F,Possession of Cocaine,1,14005800CF10A,(F3),1,2014-04-26,Possession of Cocaine,2014-04-27,2014-06-05,,0,,,,,Risk of Recidivism,5,Medium,2013-12-10,Risk of Violence,3,Low,2013-12-10,2014-04-27,2014-06-05,2,0,137,1,1\r\n2396,patricia yates,patricia,yates,2013-05-18,Female,1959-01-12,57,Greater than 45,Caucasian,0,4,0,0,0,-1,2013-05-17 03:48:40,2013-05-18 08:14:16,13009555MM10A,2013-05-17,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-18,Risk of Violence,1,Low,2013-05-18,2013-05-17,2013-05-18,0,0,1049,0,0\r\n2398,pamela corriveau,pamela,corriveau,2013-06-21,Female,1959-09-21,56,Greater than 45,Caucasian,0,1,0,0,1,-20,2013-06-01 06:55:42,2013-06-02 08:24:40,13007797CF10A,2013-06-01,,20,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-21,Risk of Violence,1,Low,2013-06-21,2013-06-01,2013-06-02,1,0,1015,0,0\r\n2399,erik gomez,erik,gomez,2013-09-28,Male,1983-08-17,32,25 - 45,Hispanic,0,5,0,0,2,0,2013-09-28 04:33:57,2013-09-29 02:18:38,13018466MM10A,2013-09-28,,0,M,Viol Prot Injunc Repeat Viol,1,14006339CF10A,(F3),1,2014-05-05,Grand Theft Firearm,2014-05-06,2014-05-06,,0,,,,,Risk of Recidivism,5,Medium,2013-09-28,Risk of Violence,2,Low,2013-09-28,2013-09-28,2013-09-29,2,1,219,1,1\r\n2400,michael mack,michael,mack,2013-05-01,Male,1986-02-02,30,25 - 45,African-American,0,8,2,2,11,-1,2013-04-30 09:54:32,2013-05-01 08:55:25,13006213CF10A,2013-04-30,,1,F,Strong Armed  Robbery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-01,Risk of Violence,3,Low,2013-05-01,2013-06-25,2013-06-27,11,0,55,0,0\r\n2401,jason sucarichi,jason,sucarichi,2014-03-17,Male,1986-08-07,29,25 - 45,African-American,0,1,0,0,2,-1,2014-03-16 09:38:22,2014-03-17 02:19:07,14010461MU10A,2014-03-16,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-16,2014-03-17,2,0,746,0,0\r\n2402,john moore,john,moore,2013-05-28,Male,1969-06-25,46,Greater than 45,African-American,0,7,0,1,15,-1,2013-05-27 10:42:08,2013-06-03 08:56:07,13007549CF10A,2013-05-27,,1,F,Driving While License Revoked,1,14002332CF10A,(F3),0,2014-02-19,Driving While License Revoked,2014-02-19,2014-04-03,,0,,,,,Risk of Recidivism,7,Medium,2013-05-28,Risk of Violence,1,Low,2013-05-28,2014-02-19,2014-04-03,15,6,267,1,1\r\n2404,demetrius robinson,demetrius,robinson,2013-10-03,Male,1980-02-03,36,25 - 45,African-American,2,10,0,0,5,-64,2013-07-31 06:00:39,2013-08-02 04:52:28,13010709CF10A,2013-07-31,,64,F,Poss Trifluoromethylphenylpipe,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-10-03,Risk of Violence,8,High,2013-10-03,2015-02-25,2015-06-24,5,0,510,0,0\r\n2405,yvelourdes duval,yvelourdes,duval,2014-02-26,Female,1992-04-05,24,Less than 25,African-American,0,3,0,0,0,-1,2014-02-25 09:55:41,2014-02-26 09:35:41,14002656CF10A,2014-02-25,,1,F,Felony Batt(Great Bodily Harm),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-26,Risk of Violence,4,Low,2014-02-26,2014-02-25,2014-02-26,0,0,765,0,0\r\n2406,everley davis,everley,davis,2013-01-28,Female,1946-04-17,70,Greater than 45,African-American,0,1,0,0,1,-1,2013-01-27 07:29:53,2013-01-29 07:21:13,12016368CF10A,,2013-01-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-01-29,1,1,1159,0,0\r\n2407,milton calderon,milton,calderon,2014-01-19,Male,1995-04-14,21,Less than 25,Hispanic,0,6,0,0,0,0,2014-01-19 03:10:12,2014-01-19 09:19:21,14000832CF10A,2014-01-19,,0,F,\"Poss3,4 Methylenedioxymethcath\",1,15013172TC30A,(M2),,2015-02-10,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-19,Risk of Violence,6,Medium,2014-01-19,2014-01-19,2014-01-19,0,0,387,1,1\r\n2408,paula randazzo,paula,randazzo,2013-01-17,Female,1970-11-09,45,Greater than 45,Caucasian,0,1,0,0,1,-11,2013-01-06 09:52:49,2013-01-07 01:30:27,13000288MM10A,2013-01-06,,11,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-17,Risk of Violence,1,Low,2013-01-17,2013-01-06,2013-01-07,1,0,1170,0,0\r\n2410,tiffany torres,tiffany,torres,2013-10-21,Female,1982-05-12,33,25 - 45,Hispanic,0,4,0,0,2,-1,2013-10-20 05:05:52,2013-10-22 05:40:12,13019860MM10A,2013-10-20,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-21,Risk of Violence,2,Low,2013-10-21,2013-10-20,2013-10-22,2,1,893,0,0\r\n2411,tedra roach,tedra,roach,2013-01-19,Female,1976-05-31,39,25 - 45,African-American,0,5,1,0,6,0,2013-01-19 02:54:51,2013-01-20 01:40:51,13000899CF10A,2013-01-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-19,Risk of Violence,2,Low,2013-01-19,2013-01-19,2013-01-20,6,1,1168,0,0\r\n2412,ahmed gamaa,ahmed,gamaa,2013-05-02,Male,1991-04-17,25,25 - 45,Caucasian,0,4,1,0,6,-16,2013-04-16 09:53:01,2013-04-18 07:30:00,13003961CF10A,,2013-04-16,16,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-02,Risk of Violence,3,Low,2013-05-02,2013-04-16,2013-04-18,6,0,1065,0,0\r\n2415,carlos allen,carlos,allen,2013-01-31,Male,1968-01-03,48,Greater than 45,Hispanic,0,1,0,0,1,0,2013-01-31 02:01:00,2013-02-01 05:20:16,13002281MM10A,2013-01-30,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-31,Risk of Violence,1,Low,2013-01-31,2013-01-31,2013-02-01,1,1,1156,0,0\r\n2416,erica ramos,erica,ramos,2014-03-03,Female,1983-07-04,32,25 - 45,Caucasian,0,2,0,0,1,-41,2014-01-21 11:26:51,2014-02-19 09:32:56,14002637MU10A,2014-01-21,,41,M,DUI Level 0.15 Or Minor In Veh,1,16005104TC20A,(M2),,2016-01-29,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-01-21,2014-02-19,1,0,697,1,1\r\n2418,arismendy guareno-corona,arismendy,guareno-corona,2013-05-12,Male,1970-02-03,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-11 12:25:37,2013-05-12 07:06:09,13006769CF10A,2013-05-11,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-12,Risk of Violence,1,Low,2013-05-12,2013-05-11,2013-05-12,0,0,1055,0,0\r\n2420,cody rickard,cody,rickard,2013-01-24,Male,1987-10-20,28,25 - 45,Caucasian,0,2,0,0,0,0,2013-01-24 12:35:09,2013-01-27 08:05:49,13001601MM10A,2013-01-23,,1,M,Battery,1,14001333CF10A,(F3),,2013-06-24,Felony Battery (Dom Strang),,,,1,14001333CF10A,(F3),2013-06-24,Felony Battery (Dom Strang),Risk of Recidivism,2,Low,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-01-24,2013-01-27,0,3,151,1,1\r\n2421,richard werhle,richard,werhle,2013-03-28,Male,1983-06-24,32,25 - 45,Caucasian,0,2,0,0,1,,,,12016504MM10A,2012-08-11,,229,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,,,1,0,1100,0,0\r\n2422,william adams,william,adams,2014-01-29,Male,1989-03-25,27,25 - 45,African-American,0,2,0,0,1,-1,2014-01-28 08:05:58,2014-01-29 09:07:24,14001249CF10A,2014-01-28,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-29,Risk of Violence,2,Low,2014-01-29,2014-01-28,2014-01-29,1,0,793,0,0\r\n2425,joseph stunneck,joseph,stunneck,2013-08-21,Male,1972-07-29,43,25 - 45,Caucasian,0,7,0,0,11,16,2013-09-06 05:24:24,2013-11-22 04:21:07,13000251CF10A,2013-01-06,,227,F,Felony DUI (level 3),1,14015797CF10A,(M1),1,2014-11-23,Resist/Obstruct W/O Violence,2014-11-24,2015-01-28,,1,14015797CF10A,(F3),2014-11-23,Battery on a Person Over 65,Risk of Recidivism,7,Medium,2013-08-21,Risk of Violence,4,Low,2013-08-21,2013-09-06,2013-11-22,11,0,16,0,1\r\n2426,gregory hughes,gregory,hughes,2013-11-01,Male,1959-11-12,56,Greater than 45,Caucasian,0,5,0,0,5,-38,2013-09-24 01:33:54,2013-10-15 10:35:54,13009710CF10A,,2013-09-24,38,F,arrest case no charge,1,14002113MM10A,(M2),0,2014-02-06,Petit Theft,2014-02-06,2014-02-18,,0,,,,,Risk of Recidivism,5,Medium,2013-11-01,Risk of Violence,2,Low,2013-11-01,2014-02-06,2014-02-18,5,0,97,1,1\r\n2427,gregory hankerson,gregory,hankerson,2013-05-01,Male,1986-03-07,30,25 - 45,African-American,0,10,0,0,9,0,2013-05-01 03:22:06,2013-06-20 06:27:48,13006250CF10A,2013-05-01,,0,F,Possession of Cocaine,1,14013847CF10A,(F3),0,2014-10-14,Grand Theft in the 3rd Degree,2014-10-14,2014-10-21,,0,,,,,Risk of Recidivism,10,High,2013-05-01,Risk of Violence,7,Medium,2013-05-01,2014-10-14,2014-10-21,9,518,531,1,1\r\n2428,gregory barnes,gregory,barnes,2013-02-04,Male,1980-07-30,35,25 - 45,African-American,0,9,4,17,12,,,,11001881CF10A,2011-02-01,,734,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-04,Risk of Violence,4,Low,2013-02-04,2003-08-28,2010-07-29,12,0,1152,0,0\r\n2429,ivan chebaux-mcginty,ivan,chebaux-mcginty,2013-08-21,Male,1986-09-30,29,25 - 45,Caucasian,0,3,0,0,1,-22,2013-07-30 09:15:09,2013-07-31 01:52:59,13010656CF10A,2013-07-30,,22,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-21,Risk of Violence,2,Low,2013-08-21,2014-07-16,2014-09-16,1,0,329,0,0\r\n2430,bonita welch,bonita,welch,2014-07-20,Male,1961-11-22,54,Greater than 45,African-American,0,1,0,0,8,0,2014-07-20 12:05:31,2014-07-20 09:40:53,14009870CF10A,2014-07-19,,1,F,Possession of Cocaine,1,14014910CF10A,(F3),0,2014-11-06,Possession of Cocaine,2014-11-06,2014-11-19,,0,,,,,Risk of Recidivism,1,Low,2014-07-20,Risk of Violence,1,Low,2014-07-20,2014-11-06,2014-11-19,8,0,109,1,1\r\n2431,melissa dowds,melissa,dowds,2013-11-23,Female,1995-06-25,20,Less than 25,Caucasian,0,4,0,0,0,0,2013-11-23 05:18:46,2013-11-23 09:23:39,13016306CF10A,2013-11-23,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-23,Risk of Violence,6,Medium,2013-11-23,2013-11-23,2013-11-23,0,0,860,0,0\r\n2432,zebedee taylor,zebedee,taylor,2013-12-18,Male,1986-11-12,29,25 - 45,African-American,0,1,0,0,0,-1,2013-12-17 09:14:03,2013-12-18 01:06:10,13017424CF10A,2013-12-17,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-18,Risk of Violence,2,Low,2013-12-18,2013-12-17,2013-12-18,0,0,835,0,0\r\n2437,nickenson metelus,nickenson,metelus,2014-01-10,Male,1987-12-02,28,25 - 45,Other,0,2,0,0,3,,,,13006130CF10A,,2013-05-06,249,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-10,Risk of Violence,3,Low,2014-01-10,,,3,0,812,0,0\r\n2438,charles tientn,charles,tientn,2013-08-20,Male,1948-10-07,67,Greater than 45,Asian,0,1,0,0,0,-1,2013-08-19 09:39:32,2013-08-20 01:59:18,13015742MM10A,2013-08-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-19,2013-08-20,0,0,955,0,0\r\n2439,michelle hall,michelle,hall,2013-02-03,Female,1970-02-22,46,Greater than 45,African-American,0,5,0,0,1,,,,10024514TC40A,2010-03-30,,1041,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-03,Risk of Violence,1,Low,2013-02-03,,,1,0,1153,0,0\r\n2441,christopher lokai,christopher,lokai,2013-08-13,Male,1990-12-01,25,25 - 45,Other,0,2,0,0,0,-1,2013-08-12 10:12:43,2013-08-13 08:19:01,13011338CF10A,2013-08-12,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-13,Risk of Violence,3,Low,2013-08-13,2013-08-12,2013-08-13,0,0,962,0,0\r\n2442,willie ryan,willie,ryan,2013-05-16,Male,1991-10-04,24,Less than 25,African-American,0,9,2,1,8,-1,2013-05-15 06:50:18,2013-05-16 04:10:04,13006935CF10A,,2013-05-15,1,F,arrest case no charge,1,14035115TC20A,(M2),20,2014-05-15,Operating W/O Valid License,2014-06-04,2014-06-21,,1,14008503CF10A,(F2),2014-06-19,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2013-05-16,Risk of Violence,9,High,2013-05-16,2014-11-18,2015-02-07,8,0,364,1,1\r\n2443,joel cadet,joel,cadet,2013-05-11,Male,1987-03-23,29,25 - 45,Other,0,6,0,0,3,-1,2013-05-10 05:06:24,2013-11-04 03:54:40,13006740CF10A,2013-05-10,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-11,Risk of Violence,2,Low,2013-05-11,2013-05-10,2013-11-04,3,177,1056,0,0\r\n2444,brian williams,brian,williams,2013-02-02,Male,1970-04-21,45,Greater than 45,African-American,0,6,0,0,2,-1,2013-02-01 10:14:11,2013-03-02 04:50:50,12001097MO40A,2012-02-23,,345,M,Carry Open/Uncov Bev In Pub,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-02,Risk of Violence,2,Low,2013-02-02,2013-02-01,2013-03-02,2,28,1154,0,0\r\n2445,dudley ambroise,dudley,ambroise,2013-01-19,Male,1984-09-20,31,25 - 45,African-American,0,5,0,0,5,-1,2013-01-18 09:23:08,2013-01-29 10:28:30,13000872CF10A,,2013-01-18,1,F,arrest case no charge,1,15013199MM10A,(M2),,2015-12-22,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-19,Risk of Violence,2,Low,2013-01-19,2014-04-14,2014-04-17,5,10,450,0,1\r\n2446,zachary chernin,zachary,chernin,2014-06-12,Male,1992-09-13,23,Less than 25,Caucasian,0,3,0,0,0,-1,2014-06-11 09:35:23,2014-06-19 05:16:19,14008112CF10A,2014-06-11,,1,F,Aggravated Assault W/Dead Weap,1,14017148MM10A,(M1),0,2014-12-04,Viol Injunct Domestic Violence,2014-12-04,2015-01-09,,0,,,,,Risk of Recidivism,3,Low,2014-06-12,Risk of Violence,4,Low,2014-06-12,2014-12-04,2015-01-09,0,7,175,1,1\r\n2448,donald jorden,donald,jorden,2014-02-14,Male,1995-03-20,21,Less than 25,African-American,0,8,0,0,0,-1,2014-02-13 05:07:42,2014-02-22 03:58:11,14002080CF10A,2014-02-13,,1,F,Grand Theft in the 3rd Degree,1,14004954CF10A,(M1),0,2014-04-09,Resist/Obstruct W/O Violence,2014-04-09,2014-04-28,,0,,,,,Risk of Recidivism,8,High,2014-02-14,Risk of Violence,9,High,2014-02-14,2014-03-18,2014-04-05,0,8,32,0,1\r\n2451,david manning,david,manning,2014-02-05,Male,1955-03-01,61,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-04 08:06:57,2014-02-05 01:12:10,14004521MU10A,2014-02-04,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-05,Risk of Violence,1,Low,2014-02-05,2014-02-04,2014-02-05,0,0,786,0,0\r\n2453,phylis ettinger,phylis,ettinger,2013-11-30,Female,1964-11-21,51,Greater than 45,Caucasian,0,7,0,0,5,-1,2013-11-29 12:24:59,2013-12-20 06:40:40,13022316MM10A,2013-11-29,,1,M,Battery,1,15010081CF10A,(F3),0,2015-08-05,Felony Committing Prostitution,2015-08-05,2015-10-22,,0,,,,,Risk of Recidivism,7,Medium,2013-11-30,Risk of Violence,1,Low,2013-11-30,2015-08-05,2015-10-22,5,20,613,1,1\r\n2454,jermane fearon,jermane,fearon,2013-06-14,Male,1984-02-13,32,25 - 45,Other,0,1,0,0,1,-15,2013-05-30 04:25:33,2013-06-14 11:57:29,13007725CF10A,2013-05-30,,15,F,Robbery W/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-14,Risk of Violence,1,Low,2013-06-14,2013-05-30,2013-06-14,1,0,1022,0,0\r\n2456,david odak,david,odak,2013-02-21,Male,1972-07-08,43,25 - 45,Caucasian,0,6,0,0,9,-2,2013-02-19 09:10:57,2013-02-20 06:59:39,13002527CF10A,2013-02-19,,2,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-21,Risk of Violence,1,Low,2013-02-21,2013-02-19,2013-02-20,9,0,1135,0,0\r\n2457,bryan scott,bryan,scott,2014-01-25,Male,1983-09-01,32,25 - 45,Other,0,1,0,0,0,-1,2014-01-24 01:37:33,2014-01-25 08:23:35,14001389MM10A,2014-01-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-25,Risk of Violence,1,Low,2014-01-25,2014-01-24,2014-01-25,0,0,797,0,0\r\n2459,rich omoruyi,rich,omoruyi,2014-02-12,Male,1979-11-10,36,25 - 45,African-American,0,5,0,0,0,-1,2014-02-11 12:51:04,2014-02-12 08:49:49,14001958CF10A,2014-02-11,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-12,Risk of Violence,2,Low,2014-02-12,2014-02-11,2014-02-12,0,0,779,0,0\r\n2460,michael vause,michael,vause,2013-09-26,Male,1957-11-08,58,Greater than 45,Caucasian,0,4,0,0,3,0,2013-09-26 03:32:21,2013-10-11 09:41:23,13013566CF10A,2013-09-26,,0,F,Felony Petit Theft,1,14004251CF10A,(F3),0,2014-03-25,Felony Petit Theft,2014-03-25,2014-07-22,,0,,,,,Risk of Recidivism,4,Low,2013-09-26,Risk of Violence,1,Low,2013-09-26,2014-02-09,2014-02-14,3,15,136,0,1\r\n2462,lewis dufreme,lewis,dufreme,2013-04-16,Male,1984-02-10,32,25 - 45,African-American,0,2,0,0,1,,,,10024535MM10A,2010-11-13,,885,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-16,Risk of Violence,6,Medium,2013-04-16,,,1,0,1081,0,0\r\n2464,ronald shelton,ronald,shelton,2013-05-29,Male,1958-06-02,57,Greater than 45,African-American,0,9,0,0,12,-1,2013-05-28 08:29:39,2013-07-18 03:49:07,13007619CF10A,2013-05-28,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-29,Risk of Violence,6,Medium,2013-05-29,2013-05-28,2013-07-18,12,50,1038,0,0\r\n2465,marques medders,marques,medders,2013-01-14,Male,1978-11-17,37,25 - 45,African-American,0,7,0,0,2,0,2013-01-14 04:05:27,2013-01-14 08:46:06,13000635CF10A,2013-01-14,,0,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-14,Risk of Violence,6,Medium,2013-01-14,2013-01-14,2013-01-14,2,0,1173,0,0\r\n2467,stacy coley,stacy,coley,2013-10-23,Male,1971-10-03,44,25 - 45,African-American,0,6,0,0,6,-1,2013-10-22 04:50:30,2013-10-24 03:57:27,13014755CF10A,,2013-10-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-23,Risk of Violence,2,Low,2013-10-23,2013-10-22,2013-10-24,6,1,891,0,0\r\n2470,kennedy stevens,kennedy,stevens,2013-01-24,Male,1965-03-09,51,Greater than 45,African-American,0,2,0,0,8,,,,11019376CF10A,,2011-11-04,447,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-24,Risk of Violence,1,Low,2013-01-24,,,8,0,1163,0,0\r\n2471,jesus regueiro,jesus,regueiro,2013-04-15,Male,1970-09-14,45,Greater than 45,Hispanic,0,6,0,0,4,,,,12017200CF10A,2012-11-26,,140,F,Agg Assault Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-15,Risk of Violence,4,Low,2013-04-15,1999-12-03,2005-01-25,4,0,1082,0,0\r\n2472,william baumgartner,william,baumgartner,2013-09-24,Male,1987-07-27,28,25 - 45,Caucasian,0,8,0,2,9,112,2014-01-14 05:32:52,2014-05-11 04:56:33,12024497MM10A,2012-12-01,,297,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-24,Risk of Violence,6,Medium,2013-09-24,2014-01-14,2014-05-11,9,0,112,0,0\r\n2474,stevie johnson,stevie,johnson,2013-05-04,Male,1970-07-31,45,Greater than 45,African-American,0,7,0,0,8,-1,2013-05-03 07:04:28,2013-05-04 01:16:42,11009021CF10A,,2013-05-04,0,F,arrest case no charge,1,13039021TC10A,(M2),,2013-09-20,Driving License Suspended,,,,1,13017860CF10A,(M1),2013-12-27,Aggravated Battery / Pregnant,Risk of Recidivism,7,Medium,2013-05-04,Risk of Violence,4,Low,2013-05-04,2016-03-24,2020-01-01,8,0,139,1,1\r\n2475,norman willis,norman,willis,2013-03-29,Male,1967-11-27,48,Greater than 45,Other,0,1,0,0,1,-1,2013-03-28 08:32:43,2013-03-30 09:14:35,13004140CF10A,,2013-03-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-29,Risk of Violence,1,Low,2013-03-29,2013-03-28,2013-03-30,1,1,1099,0,0\r\n2476,jamal riley,jamal,riley,2013-08-30,Male,1990-03-21,26,25 - 45,African-American,0,8,1,1,13,0,2013-08-30 12:08:40,2013-08-30 08:05:57,13012243CF10A,2013-08-29,,1,F,Driving While License Revoked,1,14003658MM10A,(M1),0,2014-03-03,Resist/Obstruct W/O Violence,2014-03-03,2014-03-04,,0,,,,,Risk of Recidivism,8,High,2013-08-30,Risk of Violence,4,Low,2013-08-30,2013-10-03,2013-10-07,13,0,34,0,1\r\n2477,william lamkin,william,lamkin,2014-04-26,Male,1981-06-30,34,25 - 45,Caucasian,1,6,0,0,9,-1,2014-04-25 03:08:53,2014-04-26 07:58:38,14005799CF10A,2014-04-25,,1,F,Agg Assault W/int Com Fel Dome,1,15054002TC40A,(M2),,2015-09-06,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2014-04-26,Risk of Violence,5,Medium,2014-04-26,2014-04-25,2014-04-26,9,0,498,1,1\r\n2478,christopher fernando,christopher,fernando,2013-03-17,Male,1990-06-27,25,25 - 45,African-American,0,3,0,0,0,-1,2013-03-16 04:30:03,2013-03-18 03:05:32,13003861CF10A,2013-03-16,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-17,Risk of Violence,4,Low,2013-03-17,2013-03-16,2013-03-18,0,1,1111,0,0\r\n2479,michael bacon,michael,bacon,2013-02-18,Male,1984-05-02,31,25 - 45,African-American,0,7,0,0,8,-1,2013-02-17 12:26:34,2013-02-18 09:10:16,13003429MM10A,2013-02-17,,1,M,Battery,1,13010490CF10A,(F3),0,2013-07-26,\"Poss3,4 Methylenedioxymethcath\",2013-07-26,2013-07-27,,0,,,,,Risk of Recidivism,7,Medium,2013-02-18,Risk of Violence,4,Low,2013-02-18,2013-07-26,2013-07-27,8,0,158,1,1\r\n2480,robert mcpherson,robert,mcpherson,2013-09-30,Male,1973-04-13,43,25 - 45,African-American,0,1,0,0,1,-1,2013-09-29 03:52:01,2013-09-30 08:01:14,08023370CF10A,,2013-09-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-29,2013-09-30,1,0,914,0,0\r\n2482,gary dyer,gary,dyer,2014-03-10,Male,1985-06-10,30,25 - 45,African-American,0,1,0,0,0,0,2014-03-10 03:07:16,2014-03-10 09:40:37,14004143MM10A,2014-03-10,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-10,Risk of Violence,1,Low,2014-03-10,2014-03-10,2014-03-10,0,0,753,0,0\r\n2484,alexander salow,alexander,salow,2013-09-23,Male,1965-10-09,50,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-09-21 08:09:22,2013-09-22 06:17:33,13018028MM10A,2013-09-21,,2,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-21,2013-09-22,0,0,921,0,0\r\n2485,angelika hawkins,angelika,hawkins,2013-10-08,Female,1984-06-03,31,25 - 45,African-American,0,2,0,0,2,-1,2013-10-07 05:44:38,2013-10-08 09:17:55,13014074CF10A,2013-10-07,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-08,Risk of Violence,2,Low,2013-10-08,2015-04-16,2015-04-21,2,0,555,0,0\r\n2486,lori koons,lori,koons,2013-11-08,Female,1982-09-18,33,25 - 45,Caucasian,0,6,0,0,7,-6,2013-11-02 07:20:05,2013-11-03 01:50:08,13020679MM10A,2013-11-02,,6,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-08,Risk of Violence,2,Low,2013-11-08,2013-11-02,2013-11-03,7,0,875,0,0\r\n2487,jermaine bowens,jermaine,bowens,2013-11-07,Male,1984-04-02,32,25 - 45,African-American,0,5,0,0,1,-1,2013-11-06 10:29:11,2013-11-26 06:16:00,13015485CF10A,2013-11-06,,1,F,False Ownership Info/Pawn Item,1,14017075CF10A,(F1),0,2014-12-27,Tampering with a Victim,2014-12-27,2015-02-02,,1,14017075CF10A,(F3),2014-12-27,Felony Battery (Dom Strang),Risk of Recidivism,5,Medium,2013-11-07,Risk of Violence,5,Medium,2013-11-07,2014-12-27,2015-02-02,1,19,415,1,1\r\n2488,regina ferguson,regina,ferguson,2013-12-05,Female,1970-01-22,46,Greater than 45,Caucasian,0,1,0,0,0,0,2013-12-05 03:01:54,2013-12-07 04:37:01,13022569MM10A,2013-12-04,,1,M,Battery,1,14009996MM10A,(M1),1,2014-06-26,Viol Pretrial Release Dom Viol,2014-06-27,2014-07-16,,0,,,,,Risk of Recidivism,1,Low,2013-12-05,Risk of Violence,1,Low,2013-12-05,2013-12-05,2013-12-07,0,2,203,1,1\r\n2489,gerald ocasio,gerald,ocasio,2013-03-28,Male,1993-12-21,22,Less than 25,Hispanic,0,6,0,0,0,-1,2013-03-27 07:30:55,2013-03-28 08:32:07,13004437CF10A,2013-03-27,,1,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-28,Risk of Violence,7,Medium,2013-03-28,2015-04-22,2015-05-07,0,0,755,0,0\r\n2490,neal davis,neal,davis,2014-05-29,Male,1978-07-24,37,25 - 45,African-American,0,5,0,0,8,-1,2014-05-28 06:27:10,2014-05-29 09:05:23,14007426CF10A,2014-05-28,,1,F,Felony Driving While Lic Suspd,1,14080267TC30A,(M1),,2014-09-24,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,5,Medium,2014-05-29,Risk of Violence,1,Low,2014-05-29,2014-05-28,2014-05-29,8,0,118,1,1\r\n2493,lisa flowers,lisa,flowers,2014-03-14,Female,1983-10-21,32,25 - 45,Caucasian,0,6,0,0,6,-1,2014-03-13 05:35:34,2014-03-21 07:43:44,14003591CF10A,,2014-03-13,1,F,arrest case no charge,1,14006029MM10A,(M2),0,2014-04-09,Petit Theft,2014-04-09,2014-04-29,,0,,,,,Risk of Recidivism,6,Medium,2014-03-14,Risk of Violence,2,Low,2014-03-14,2014-04-09,2014-04-29,6,7,26,1,1\r\n2494,miesha daniel,miesha,daniel,2013-12-24,Female,1993-02-12,23,Less than 25,African-American,0,7,0,0,2,-1,2013-12-23 08:26:11,2013-12-24 12:52:29,13017682CF10A,2013-12-23,,1,F,Grand Theft in the 3rd Degree,1,14002156CF10A,(F3),0,2014-02-15,Grand Theft in the 3rd Degree,2014-02-15,2014-02-16,,0,,,,,Risk of Recidivism,7,Medium,2013-12-24,Risk of Violence,5,Medium,2013-12-24,2014-02-15,2014-02-16,2,0,53,1,1\r\n2495,kyle rivera,kyle,rivera,2013-03-01,Male,1994-12-12,21,Less than 25,Caucasian,0,5,0,0,0,0,2013-03-01 12:01:48,2013-03-01 01:51:31,13003032CF10A,2013-02-28,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-01,Risk of Violence,7,Medium,2013-03-01,2013-03-01,2013-03-01,0,0,1127,0,0\r\n2496,matthew daley,matthew,daley,2013-01-22,Male,1993-07-05,22,Less than 25,Other,0,9,0,0,1,,,,12005333CF10A,2012-04-10,,287,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-22,Risk of Violence,8,High,2013-01-22,,,1,0,1165,0,0\r\n2497,jean phanord,jean,phanord,2013-10-18,Male,1963-08-03,52,Greater than 45,Other,0,1,0,0,2,-1,2013-10-17 07:46:29,2013-10-18 07:52:25,13014545CF10A,,2013-10-17,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-18,Risk of Violence,1,Low,2013-10-18,2014-01-08,2014-01-15,2,0,82,0,0\r\n2498,william sternal,william,sternal,2013-09-29,Male,1966-07-01,49,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-09-28 06:28:33,2013-09-29 07:31:01,13018477MM10A,2013-09-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-29,Risk of Violence,1,Low,2013-09-29,2013-09-28,2013-09-29,2,0,915,0,0\r\n2499,terry mccormick,terry,mccormick,2013-01-04,Male,1960-04-26,55,Greater than 45,Caucasian,0,7,0,0,3,-1,2013-01-03 05:45:57,2013-02-08 06:03:58,13000124CF10A,2013-01-03,,1,F,Possession of Cocaine,1,13002859CF10A,(F3),1,2013-02-25,Grand Theft in the 3rd Degree,2013-02-26,2013-07-17,,0,,,,,Risk of Recidivism,7,Medium,2013-01-04,Risk of Violence,2,Low,2013-01-04,2013-01-03,2013-02-08,3,35,52,1,1\r\n2501,devonte farley,devonte,farley,2013-08-28,Male,1993-09-11,22,Less than 25,African-American,0,2,0,0,0,-1,2013-08-27 05:03:28,2013-08-28 07:45:25,13012088CF10A,2013-08-27,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-28,Risk of Violence,4,Low,2013-08-28,2013-08-27,2013-08-28,0,0,947,0,0\r\n2502,fernando moreno,fernando,moreno,2013-04-19,Male,1971-04-07,45,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-04-18 04:57:29,2013-05-01 09:03:25,13005572CF10A,2013-04-18,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-18,2013-05-01,0,12,1078,0,0\r\n2503,atavia grant,atavia,grant,2014-01-05,Female,1984-07-06,31,25 - 45,African-American,0,5,0,0,7,-1,2014-01-04 08:03:10,2014-01-05 09:50:08,14000174CF10A,2014-01-04,,1,F,Felony Driving While Lic Suspd,1,14034426TC10A,(M2),0,2014-08-14,Operating W/O Valid License,2014-08-14,2014-08-15,,0,,,,,Risk of Recidivism,5,Medium,2014-01-05,Risk of Violence,2,Low,2014-01-05,2014-08-14,2014-08-15,7,0,221,1,1\r\n2504,elijah severns,elijah,severns,2014-02-13,Male,1993-07-10,22,Less than 25,Caucasian,0,2,0,1,0,-1,2014-02-12 08:06:06,2014-02-13 08:29:56,14002015CF10A,2014-02-12,,1,M,Petit Theft,1,14005322MM10A,(M1),0,2014-03-27,Resist/Obstruct W/O Violence,2014-03-27,2014-03-29,,0,,,,,Risk of Recidivism,2,Low,2014-02-13,Risk of Violence,4,Low,2014-02-13,2014-03-27,2014-03-29,0,0,42,1,1\r\n2507,berman stfleur,berman,stfleur,2013-03-17,Male,1988-02-24,28,25 - 45,African-American,0,6,0,0,5,-1,2013-03-16 04:56:02,2013-03-17 08:00:45,13005170MM10A,2013-03-16,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-17,Risk of Violence,2,Low,2013-03-17,2013-03-16,2013-03-17,5,0,1111,0,0\r\n2509,luben augustin,luben,augustin,2013-10-31,Male,1994-11-24,21,Less than 25,African-American,0,5,0,0,1,-1,2013-10-30 04:56:29,2013-11-10 09:03:31,13015144CF10A,2013-10-30,,1,F,Grand Theft in the 3rd Degree,1,14000335MM10A,(M2),99,2013-11-04,Disorderly Conduct,2014-02-11,2014-03-16,,1,14000335MM10A,(M1),2013-11-04,Battery,Risk of Recidivism,5,Medium,2013-10-31,Risk of Violence,8,High,2013-10-31,2013-10-30,2013-11-10,1,0,4,1,1\r\n2511,julian ruiz,julian,ruiz,2014-02-11,Male,1979-03-21,37,25 - 45,Hispanic,0,3,0,1,2,-1,2014-02-10 05:10:21,2014-02-11 08:51:53,14002287MM10A,2014-02-10,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-11,Risk of Violence,3,Low,2014-02-11,2014-02-10,2014-02-11,2,0,780,0,0\r\n2512,demarquize dawson,demarquize,dawson,2013-02-20,Male,1985-11-14,30,25 - 45,African-American,0,7,2,0,21,-1,2013-02-19 03:27:39,2013-02-20 09:04:21,12013696CF10A,,2013-02-19,1,F,arrest case no charge,1,13006158CF10A,(F3),0,2013-04-18,Driving While License Revoked,2013-04-18,2013-04-18,,0,,,,,Risk of Recidivism,7,Medium,2013-02-20,Risk of Violence,3,Low,2013-02-20,2013-04-18,2013-04-18,21,0,57,0,1\r\n2513,danny alford,danny,alford,2013-10-09,Male,1994-01-24,22,Less than 25,African-American,0,10,0,1,13,-1,2013-10-08 11:48:59,2013-10-09 09:59:21,14001341CF10A,2013-10-08,,1,F,Poss Cntrft Contr Sub w/Intent,1,14007896TC10A,(M2),,2013-10-13,Driving License Suspended,,,,0,,,,,Risk of Recidivism,10,High,2013-10-09,Risk of Violence,9,High,2013-10-09,2014-07-29,2015-03-25,13,0,4,1,1\r\n2514,tommy johnson,tommy,johnson,2014-10-23,Male,1980-11-08,35,25 - 45,African-American,0,9,1,0,23,-1,2014-10-22 09:03:28,2014-10-23 10:13:52,14014228CF10A,2014-10-22,,1,F,Poss Pyrrolidinovalerophenone,1,15008169CF10A,(F3),0,2015-06-24,Poss Pyrrolidinovalerophenone,2015-06-24,2015-08-20,,0,,,,,Risk of Recidivism,9,High,2014-10-23,Risk of Violence,6,Medium,2014-10-23,2015-06-24,2015-08-20,23,0,244,1,1\r\n2515,steven thompson,steven,thompson,2013-11-02,Male,1987-06-13,28,25 - 45,African-American,2,10,1,0,11,-1,2013-11-01 07:35:10,2013-11-27 07:48:37,13015262CF10A,2013-11-01,,1,F,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-11-02,Risk of Violence,5,Medium,2013-11-02,2013-11-01,2013-11-27,11,25,881,0,0\r\n2516,sha-de williams,sha-de,williams,2013-01-16,Male,1992-02-24,24,Less than 25,African-American,0,3,0,0,1,-1,2013-01-15 06:16:11,2013-01-16 08:39:11,13000683CF10A,2013-01-15,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-16,Risk of Violence,6,Medium,2013-01-16,2013-01-15,2013-01-16,1,0,1171,0,0\r\n2517,joel jasmin,joel,jasmin,2013-09-24,Male,1972-02-02,44,25 - 45,African-American,0,3,0,0,9,73,2013-12-06 12:47:03,2014-02-10 10:51:40,09020924CF10A,,2013-05-15,132,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-24,Risk of Violence,1,Low,2013-09-24,2013-12-06,2014-02-10,9,0,73,0,0\r\n2518,jamie rodriguez,jamie,rodriguez,2014-03-18,Male,1990-07-04,25,25 - 45,Hispanic,0,8,0,4,5,,,,10020252CF10A,,2010-11-11,1223,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-18,Risk of Violence,7,Medium,2014-03-18,,,5,0,745,0,0\r\n2519,ronnie thomas,ronnie,thomas,2014-11-15,Male,1983-05-20,32,25 - 45,African-American,1,7,3,0,24,-1,2014-11-14 10:48:40,2014-11-17 08:11:13,14015405CF10A,2014-11-14,,1,F,Driving While License Revoked,1,15008613CF10A,(F3),0,2015-07-05,Felony Battery (Dom Strang),2015-07-05,2015-09-22,,1,15008613CF10A,(F3),2015-07-05,Felony Battery (Dom Strang),Risk of Recidivism,7,Medium,2014-11-15,Risk of Violence,6,Medium,2014-11-15,2015-07-05,2015-09-22,24,2,232,1,1\r\n2520,ahmad bowleg,ahmad,bowleg,2013-01-31,Male,1987-03-25,29,25 - 45,African-American,0,3,0,0,5,35,2013-03-07 12:17:26,2013-03-21 09:30:39,12017860CF10A,2012-12-07,,55,F,Att Burgl Unoccupied Dwel,1,13008638MM10A,(M1),0,2013-05-04,Possess Cannabis/20 Grams Or Less,2013-05-04,2013-05-14,,0,,,,,Risk of Recidivism,3,Low,2013-01-31,Risk of Violence,3,Low,2013-01-31,2013-03-07,2013-03-21,5,0,35,0,1\r\n2521,dyneisha smith,dyneisha,smith,2013-11-15,Female,1992-01-18,24,Less than 25,African-American,0,5,0,0,1,-1,2013-11-14 09:08:19,2013-11-15 02:04:30,13015864CF10A,2013-11-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-15,Risk of Violence,4,Low,2013-11-15,2016-03-28,2016-03-29,1,0,864,0,0\r\n2523,james thompson,james,thompson,2014-03-22,Male,1958-11-17,57,Greater than 45,African-American,0,3,0,0,19,-1,2014-03-21 06:27:23,2014-03-22 08:09:32,14004043CF10A,2014-03-21,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-21,2014-03-22,19,0,741,0,0\r\n2524,mikhail grant,mikhail,grant,2013-05-14,Male,1995-02-11,21,Less than 25,Other,0,6,0,0,0,-1,2013-05-13 06:53:22,2013-05-14 06:24:49,13009253MM10A,2013-05-13,,1,M,Prowling/Loitering,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-14,Risk of Violence,7,Medium,2013-05-14,2013-05-13,2013-05-14,0,0,1053,0,0\r\n2525,nicolas latorre-galan,nicolas,latorre-galan,2013-04-24,Male,1988-03-08,28,25 - 45,Caucasian,0,2,0,0,0,0,2013-04-24 12:33:13,2013-04-24 08:20:16,13005803CF10A,2013-04-23,,1,F,Counterfeit Lic Plates/Sticker,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-24,Risk of Violence,2,Low,2013-04-24,2013-12-05,2013-12-05,0,0,225,0,0\r\n2526,mark vitale,mark,vitale,2013-03-20,Male,1964-12-06,51,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-20 12:24:11,2013-06-20 09:35:19,13005436MM10A,2013-03-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-03-20,2013-06-20,0,92,1108,0,0\r\n2527,antjuan herring,antjuan,herring,2013-09-04,Male,1981-10-12,34,25 - 45,African-American,0,9,0,0,6,205,2014-03-28 12:07:52,2014-10-31 05:30:33,04017276CF10A,2004-10-23,,3238,F,Possession of Cocaine,1,14004341CF10A,(M1),1,2014-03-27,Unlaw Use False Name/Identity,2014-03-28,2014-10-31,,0,,,,,Risk of Recidivism,9,High,2013-09-04,Risk of Violence,3,Low,2013-09-04,2015-09-29,2020-01-01,6,0,204,1,1\r\n2529,fuquan brewer,fuquan,brewer,2013-01-23,Male,1989-04-20,26,25 - 45,African-American,0,2,0,0,0,-1,2013-01-22 12:09:59,2013-01-23 01:38:58,13001524MM10A,2013-01-22,,1,M,Unlaw LicTag/Sticker Attach,1,14100610TC30A,(M2),,2014-11-16,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-23,Risk of Violence,2,Low,2013-01-23,2013-01-22,2013-01-23,0,0,662,1,1\r\n2530,matthew brown,matthew,brown,2014-04-17,Male,1995-11-01,20,Less than 25,African-American,0,6,0,3,0,-1,2014-04-16 06:07:43,2014-04-17 09:03:30,14005343CF10A,2014-04-16,,1,F,Possession of Butylone,1,16001580CF10A,(M1),1,2016-02-05,Resist/Obstruct W/O Violence,2016-02-06,2016-02-06,,0,,,,,Risk of Recidivism,6,Medium,2014-04-17,Risk of Violence,8,High,2014-04-17,2016-02-06,2016-02-06,0,0,659,1,1\r\n2532,tyrone santos,tyrone,santos,2013-08-17,Male,1990-07-12,25,25 - 45,African-American,0,7,1,0,6,-1,2013-08-16 10:52:42,2013-09-18 05:34:14,13012752MO10A,,2013-08-17,0,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-17,Risk of Violence,5,Medium,2013-08-17,2013-08-16,2013-09-18,6,32,958,0,0\r\n2533,ariel fallacaro,ariel,fallacaro,2014-07-04,Male,1996-06-17,19,Less than 25,Caucasian,0,6,0,0,0,-1,2014-07-03 09:58:44,2014-07-06 04:26:19,14010278MM10A,2014-07-03,,1,M,Battery,1,15005806MM10A,(M1),0,2015-05-27,Battery,2015-05-27,2015-06-01,,1,15005806MM10A,(M1),2015-05-27,Battery,Risk of Recidivism,6,Medium,2014-07-04,Risk of Violence,9,High,2014-07-04,2015-05-27,2015-06-01,0,2,327,1,1\r\n2534,james lowry,james,lowry,2013-12-10,Male,1967-02-23,49,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-12-09 10:09:26,2013-12-30 08:32:36,13017018CF10A,,2013-12-09,1,F,arrest case no charge,1,14013947CF10A,(F3),0,2014-10-16,Grand Theft in the 3rd Degree,2014-10-16,2015-03-21,,0,,,,,Risk of Recidivism,1,Low,2013-12-10,Risk of Violence,1,Low,2013-12-10,2014-10-16,2015-03-21,1,20,310,1,1\r\n2536,jewel johnson,jewel,johnson,2014-01-08,Male,1959-04-08,57,Greater than 45,African-American,0,10,0,0,27,-9,2013-12-30 09:12:41,2014-01-08 10:44:51,13015205MM10A,,2013-12-30,9,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-08,Risk of Violence,9,High,2014-01-08,2013-12-30,2014-01-08,27,0,814,0,0\r\n2537,jasmine young,jasmine,young,2013-04-08,Female,1988-10-17,27,25 - 45,African-American,0,2,0,0,0,0,2013-04-08 04:39:41,2013-04-09 02:11:14,13006767MM10A,2013-04-08,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-08,Risk of Violence,3,Low,2013-04-08,2013-04-08,2013-04-09,0,1,1089,0,0\r\n2538,walter meixner,walter,meixner,2013-01-13,Male,1950-02-18,66,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-12 02:09:03,2013-01-31 09:56:14,00022077MM10A,,2013-01-12,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-31,1,18,1174,0,0\r\n2539,jamia dixon,jamia,dixon,2014-02-24,Female,1990-10-16,25,25 - 45,African-American,0,7,0,0,4,-46,2014-01-09 01:09:58,2014-01-25 03:15:07,12002493MM20A,,2014-01-09,46,M,arrest case no charge,1,15004321MM10A,(M1),,2014-12-22,Criminal Mischief>$200<$1000,,,,1,15008191CF10A,(F3),2015-03-10,Stalking (Aggravated),Risk of Recidivism,7,Medium,2014-02-24,Risk of Violence,3,Low,2014-02-24,2015-10-20,2015-12-19,4,0,301,1,1\r\n2540,jeramey wilkerson,jeramey,wilkerson,2013-01-26,Male,1995-01-04,21,Less than 25,Caucasian,0,3,0,0,0,0,2013-01-26 04:26:50,2013-01-26 07:17:27,13001296CF10A,,2013-01-26,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-26,Risk of Violence,6,Medium,2013-01-26,2013-01-26,2013-01-26,0,0,1161,0,0\r\n2541,shane bohannon,shane,bohannon,2013-03-11,Male,1970-07-04,45,Greater than 45,Caucasian,0,2,0,0,1,0,2013-03-11 12:31:05,2013-03-11 01:32:29,13003523CF10A,2013-03-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-03-11,2013-03-11,1,0,1117,0,0\r\n2542,kevin mouzon,kevin,mouzon,2013-10-21,Male,1977-04-22,38,25 - 45,African-American,0,6,0,0,6,-205,2013-03-30 11:14:51,2013-10-19 02:01:56,13004567CF10A,2013-03-30,,205,F,Aggravated Assault,1,14018115MM10A,(M2),0,2014-12-28,Criminal Mischief,2014-12-28,2015-01-06,,1,16001032CF10A,(F3),2016-01-26,Threat Public Servant,Risk of Recidivism,6,Medium,2013-10-21,Risk of Violence,7,Medium,2013-10-21,2014-09-07,2014-09-10,6,0,321,0,1\r\n2543,jermaine hall,jermaine,hall,2013-01-21,Male,1979-03-13,37,25 - 45,African-American,2,8,3,0,24,-1,2013-01-20 03:28:03,2013-02-09 02:24:01,13000929CF10A,2013-01-20,,1,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-21,Risk of Violence,4,Low,2013-01-21,2013-01-20,2013-02-09,24,19,1166,0,0\r\n2544,jesse lebrecht,jesse,lebrecht,2014-11-22,Male,1971-12-08,44,25 - 45,Caucasian,0,9,0,0,13,0,2014-11-22 12:35:34,2014-12-09 09:51:06,14015688CF10A,2014-11-21,,1,F,Crimin Mischief Damage $1000+,1,14018210MM10A,(M2),0,2014-12-30,Disorderly Conduct,2014-12-30,2014-12-31,,0,,,,,Risk of Recidivism,9,High,2014-11-22,Risk of Violence,8,High,2014-11-22,2014-12-30,2014-12-31,13,17,38,1,1\r\n2546,eugene hanon,eugene,hanon,2013-08-17,Male,1951-12-14,64,Greater than 45,African-American,0,4,0,0,0,-1,2013-08-16 07:03:11,2013-08-20 07:40:15,13011518CF10A,2013-08-16,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-17,Risk of Violence,1,Low,2013-08-17,2013-08-16,2013-08-20,0,3,958,0,0\r\n2548,tony mcneil,tony,mcneil,2013-02-08,Male,1985-11-07,30,25 - 45,African-American,0,6,0,0,1,-1,2013-02-07 03:51:09,2013-02-08 02:09:27,13001914CF10A,2013-02-07,,1,F,Deliver Cocaine,1,13008049MM10A,(M1),0,2013-04-01,Reckless Display Of Weapon,2013-04-01,2013-04-01,,1,13004666CF10A,(F2),2013-04-01,Agg Assault Law Enforc Officer,Risk of Recidivism,6,Medium,2013-02-08,Risk of Violence,4,Low,2013-02-08,2013-04-01,2013-04-01,1,0,52,0,1\r\n2549,manuel mena,manuel,mena,2013-08-14,Male,1954-10-24,61,Greater than 45,African-American,0,1,0,0,1,-1,2013-08-13 03:15:42,2013-08-15 04:26:06,13008322MM10A,,2013-08-13,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-14,Risk of Violence,1,Low,2013-08-14,2013-08-13,2013-08-15,1,1,961,0,0\r\n2550,resendiz santiago,resendiz,santiago,2013-12-19,Male,1982-08-18,33,25 - 45,Caucasian,0,3,0,0,0,,,,13017464CF10A,2013-12-18,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-19,Risk of Violence,3,Low,2013-12-19,,,0,0,834,0,0\r\n2554,lisa fogarty,lisa,fogarty,2014-02-28,Female,1966-08-24,49,Greater than 45,Caucasian,0,2,0,0,8,-10,2014-02-18 11:26:46,2014-02-27 04:09:20,13017790CF10A,,2014-02-18,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-28,Risk of Violence,1,Low,2014-02-28,2014-02-18,2014-02-27,8,0,763,0,0\r\n2556,dirrick stephens,dirrick,stephens,2013-02-10,Male,1992-08-27,23,Less than 25,African-American,0,7,0,0,0,0,2013-02-10 12:53:04,2013-02-11 07:30:44,13002033CF10A,2013-02-09,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-10,Risk of Violence,5,Medium,2013-02-10,2013-02-10,2013-02-11,0,1,1146,0,0\r\n2557,roberto paul,roberto,paul,2013-11-14,Male,1982-05-10,33,25 - 45,African-American,0,8,0,0,14,-79,2013-08-27 09:01:15,2013-11-03 02:08:38,13012078CF10A,2013-08-27,,79,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-14,Risk of Violence,5,Medium,2013-11-14,2013-08-27,2013-11-03,14,0,869,0,0\r\n2560,adesh persaud,adesh,persaud,2013-07-29,Male,1994-09-07,21,Less than 25,Caucasian,0,9,0,0,0,-2,2013-07-27 11:47:49,2013-07-28 05:43:39,13010541CF10A,2013-07-27,,2,F,Sale/Del Cannabis At/Near Scho,1,13012997CF10A,(F3),0,2013-09-14,Possession Of Alprazolam,2013-09-14,2013-10-07,,1,13021891MM10A,(M1),2013-11-21,Battery,Risk of Recidivism,9,High,2013-07-29,Risk of Violence,6,Medium,2013-07-29,2013-09-14,2013-10-07,0,0,47,1,1\r\n2561,alisha burns,alisha,burns,2014-12-17,Female,1986-01-04,30,25 - 45,Caucasian,0,10,0,0,2,-1,2014-12-16 01:46:57,2015-01-28 12:32:21,14016749CF10A,2014-12-17,,0,F,Burglary Unoccupied Dwelling,1,15002055MM10A,(M1),0,2015-02-08,Unlaw Use False Name/Identity,2015-02-08,2015-06-30,,0,,,,,Risk of Recidivism,10,High,2014-12-17,Risk of Violence,4,Low,2014-12-17,2015-02-08,2015-06-30,2,42,53,1,1\r\n2562,michael milla,michael,milla,2013-08-20,Male,1989-05-06,26,25 - 45,Hispanic,0,4,0,1,7,0,2013-08-20 12:51:18,2013-08-22 05:25:59,13015725MM10A,2013-08-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-20,Risk of Violence,4,Low,2013-08-20,2013-08-20,2013-08-22,7,2,955,0,0\r\n2564,nigel davis,nigel,davis,2013-01-21,Male,1981-04-17,35,25 - 45,Other,0,1,0,0,3,-1,2013-01-20 05:18:14,2013-01-21 07:52:22,13001354MM10A,2013-01-20,,1,M,Battery,1,13000445MM20A,(M1),96,2013-02-02,Possess Cannabis/20 Grams Or Less,2013-05-09,2013-05-25,,0,,,,,Risk of Recidivism,1,Low,2013-01-21,Risk of Violence,2,Low,2013-01-21,2016-01-30,2016-02-04,3,0,12,1,1\r\n2566,melvin stewart,melvin,stewart,2013-01-02,Male,1989-02-28,27,25 - 45,African-American,0,9,0,1,2,-1,2013-01-01 09:18:48,2013-01-02 11:09:35,13000050MM10A,2013-01-01,,1,M,Possess Cannabis/20 Grams Or Less,1,15015534TC20A,(M2),,2015-02-25,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2013-01-02,Risk of Violence,4,Low,2013-01-02,2014-01-07,2014-01-29,2,0,370,0,0\r\n2567,ronnie foley,ronnie,foley,2013-01-04,Male,1977-09-16,38,25 - 45,Caucasian,0,6,0,0,1,0,2013-01-04 12:48:45,2013-01-19 09:25:50,13000194MM10A,2013-01-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-04,Risk of Violence,3,Low,2013-01-04,2013-01-04,2013-01-19,1,15,1183,0,0\r\n2568,cornell fullard,cornell,fullard,2013-02-04,Male,1967-05-03,48,Greater than 45,African-American,0,9,0,0,14,23,2013-02-27 03:22:52,2013-07-19 10:47:00,11008629CF10A,,2012-04-12,298,F,arrest case no charge,1,14004531CF10A,(F3),0,2014-04-01,Possession of Cocaine,2014-04-01,2014-06-10,,0,,,,,Risk of Recidivism,9,High,2013-02-04,Risk of Violence,3,Low,2013-02-04,2013-02-27,2013-07-19,14,0,23,0,1\r\n2569,elie boujaoude,elie,boujaoude,2014-03-05,Male,1989-09-15,26,25 - 45,Caucasian,0,2,0,0,0,-1,2014-03-04 04:15:31,2014-03-05 01:44:19,14003719MM10A,2014-03-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-05,Risk of Violence,3,Low,2014-03-05,2014-03-04,2014-03-05,0,0,758,0,0\r\n2571,avery kenon,avery,kenon,2013-08-29,Male,1992-03-06,24,Less than 25,African-American,0,8,1,0,4,-27,2013-08-02 08:34:54,2013-08-29 05:18:22,13010918CF10A,2013-08-02,,27,F,Possession of Cocaine,1,13014268CF10A,(F3),0,2013-10-11,Possession of Cocaine,2013-10-11,2013-10-12,,0,,,,,Risk of Recidivism,8,High,2013-08-29,Risk of Violence,5,Medium,2013-08-29,2013-10-11,2013-10-12,4,0,43,1,1\r\n2572,dequronda pinkney,dequronda,pinkney,2014-06-10,Female,1988-03-16,28,25 - 45,African-American,0,5,0,0,2,0,2014-06-10 05:18:42,2014-06-11 01:59:47,14008031CF10A,2014-06-10,,0,F,Possession Of Alprazolam,1,15007571TC20A,(M2),,2015-01-20,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2014-06-10,Risk of Violence,3,Low,2014-06-10,2014-06-10,2014-06-11,2,1,224,1,1\r\n2573,cynthia carrasco,cynthia,carrasco,2013-03-17,Female,1972-01-10,44,25 - 45,Caucasian,0,6,0,0,4,0,2013-03-17 04:09:52,2013-03-22 05:53:12,13003868CF10A,2013-03-17,,0,F,Possession of Cocaine,1,13014589MM10A,(M2),0,2013-08-04,Prostitution/Lewd Act Assignation,2013-08-04,2013-09-20,,0,,,,,Risk of Recidivism,6,Medium,2013-03-17,Risk of Violence,2,Low,2013-03-17,2013-08-04,2013-09-20,4,5,140,1,1\r\n2574,slade hanson,slade,hanson,2013-04-02,Male,1993-02-22,23,Less than 25,Caucasian,0,7,0,1,2,0,2013-04-02 02:25:10,2013-04-15 09:11:23,13004653CF10A,2013-04-02,,0,F,Poss of Firearm by Convic Felo,1,15010282CF10A,(F3),,2015-08-10,Possession of Cannabis,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-02,Risk of Violence,6,Medium,2013-04-02,2013-04-02,2013-04-15,2,13,860,1,0\r\n2575,cellie mayol,cellie,mayol,2013-02-07,Female,1981-11-29,34,25 - 45,Caucasian,0,6,0,0,1,-1,2013-02-06 10:06:26,2013-02-19 07:35:25,10021781CF10A,,2013-02-06,1,F,arrest case no charge,1,13016459CF10A,(F3),0,2013-11-26,Sel/Man/Del/Pos/W/Int Diazepam,2013-11-26,2014-01-08,,0,,,,,Risk of Recidivism,6,Medium,2013-02-07,Risk of Violence,2,Low,2013-02-07,2013-11-26,2014-01-08,1,12,292,1,1\r\n2576,ryan kirby,ryan,kirby,2014-05-27,Male,1995-08-24,20,Less than 25,Caucasian,0,5,1,0,1,-1,2014-05-26 05:28:03,2014-05-27 12:59:07,14007308CF10A,2014-05-26,,1,F,Burglary Conveyance Unoccup,1,15000064MM30A,(M1),18,2014-12-19,Carrying A Concealed Weapon,2015-01-06,2015-01-23,,0,,,,,Risk of Recidivism,5,Medium,2014-05-27,Risk of Violence,7,Medium,2014-05-27,2015-01-06,2015-01-23,1,0,206,1,1\r\n2578,milton stewart,milton,stewart,2014-03-30,Male,1952-12-07,63,Greater than 45,Other,0,4,0,0,23,-1,2014-03-29 07:19:43,2014-03-31 08:47:00,14004426CF10A,2014-03-29,,1,F,Felony Petit Theft,1,15002162CF10A,(M1),0,2015-02-16,Trespass/Property/Other Structure,2015-02-16,2015-02-21,,0,,,,,Risk of Recidivism,4,Low,2014-03-30,Risk of Violence,2,Low,2014-03-30,2014-07-31,2014-09-25,23,1,123,0,1\r\n2579,areej dorriety,areej,dorriety,2014-03-20,Female,1979-07-08,36,25 - 45,African-American,0,1,0,0,0,0,2014-03-20 05:28:52,2014-03-20 10:13:58,14011173MU10A,2014-03-20,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-20,Risk of Violence,1,Low,2014-03-20,2014-03-20,2014-03-20,0,0,743,0,0\r\n2580,jaqueline roberts,jaqueline,roberts,2013-04-03,Male,1957-08-06,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-04-02 11:17:17,2013-06-21 10:09:13,13004741CF10A,,2013-04-02,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-03,Risk of Violence,1,Low,2013-04-03,2016-02-04,2020-01-01,1,79,1037,0,0\r\n2581,patrick blake,patrick,blake,2013-09-05,Male,1990-12-08,25,25 - 45,African-American,0,7,0,0,7,463,2014-12-12 05:41:27,2014-12-12 08:47:23,11003279CF10A,,2012-04-03,520,F,arrest case no charge,1,14016518CF10A,(F3),0,2014-12-12,Possession of Cannabis,2014-12-12,2014-12-12,,0,,,,,Risk of Recidivism,7,Medium,2013-09-05,Risk of Violence,7,Medium,2013-09-05,2014-12-12,2014-12-12,7,0,463,0,1\r\n2582,drew pressotto,drew,pressotto,2013-10-04,Male,1969-08-25,46,Greater than 45,Caucasian,0,3,0,0,5,125,2014-02-06 04:42:19,2014-02-06 10:06:22,12008332TC10A,,2013-02-06,240,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-04,Risk of Violence,2,Low,2013-10-04,2014-02-06,2014-02-06,5,0,125,0,0\r\n2583,becky nichols,becky,nichols,2013-09-12,Female,1980-12-18,35,25 - 45,Caucasian,0,3,0,0,4,-30,2013-08-13 08:23:34,2013-08-27 06:21:58,13015812CF10A,2013-08-13,,30,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-12,Risk of Violence,4,Low,2013-09-12,2015-11-28,2015-12-21,4,0,807,0,0\r\n2584,demarcus atkins,demarcus,atkins,2013-05-06,Male,1992-06-23,23,Less than 25,African-American,0,7,0,0,3,-1,2013-05-05 05:12:30,2013-05-06 08:15:16,13012264CF10A,2013-05-05,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-06,Risk of Violence,5,Medium,2013-05-06,2013-09-17,2013-09-18,3,0,134,0,0\r\n2586,chad burnside,chad,burnside,2013-12-23,Male,1975-12-09,40,25 - 45,Caucasian,0,1,0,0,1,-21,2013-12-02 03:16:31,2013-12-23 11:40:21,13016679CF10A,2013-12-02,,21,F,Attempted Robbery  No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-02,2013-12-23,1,0,830,0,0\r\n2588,jeffrey insua,jeffrey,insua,2013-10-14,Male,1984-06-06,31,25 - 45,Hispanic,0,3,0,0,3,-1,2013-10-13 03:10:18,2013-10-14 02:35:46,13014328CF10A,2013-10-13,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-14,Risk of Violence,3,Low,2013-10-14,2013-10-13,2013-10-14,3,0,900,0,0\r\n2589,arlene gonzalez,arlene,gonzalez,2013-05-22,Female,1981-12-22,34,25 - 45,Hispanic,0,4,0,0,5,0,2013-05-22 01:22:00,2013-05-23 03:30:07,13007303CF10A,2013-05-21,,1,F,Live on Earnings of Prostitute,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-22,Risk of Violence,2,Low,2013-05-22,2013-05-22,2013-05-23,5,1,1045,0,0\r\n2591,jamar hall,jamar,hall,2014-07-10,Male,1992-08-15,23,Less than 25,African-American,0,6,0,0,3,-1,2014-07-09 03:32:50,2014-07-22 04:47:00,14010550MM10A,2014-07-09,,1,M,Viol Prot Injunc Repeat Viol,1,14013096CF10A,(F3),0,2014-09-27,Poss Pyrrolidinovalerophenone,2014-09-27,2014-09-28,,0,,,,,Risk of Recidivism,6,Medium,2014-07-10,Risk of Violence,4,Low,2014-07-10,2014-09-27,2014-09-28,3,12,79,1,1\r\n2592,nathaniel martin,nathaniel,martin,2014-05-23,Male,1988-07-25,27,25 - 45,Caucasian,0,3,0,0,0,-5,2014-05-18 07:16:19,2014-05-22 09:08:47,14018573MU10A,2014-05-18,,5,M,Fail Register Vehicle,1,15075271TC30A,(M2),,2015-09-03,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,3,Low,2014-05-23,Risk of Violence,2,Low,2014-05-23,2014-05-18,2014-05-22,0,0,468,1,1\r\n2593,tanisha benjamin,tanisha,benjamin,2013-05-17,Female,1989-08-31,26,25 - 45,African-American,0,5,0,0,3,-27,2013-04-20 02:01:12,2013-05-17 10:53:39,13005671CF10A,2013-04-20,,27,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-17,Risk of Violence,3,Low,2013-05-17,2013-04-20,2013-05-17,3,0,1050,0,0\r\n2594,arthur campbell,arthur,campbell,2013-02-10,Male,1967-01-11,49,Greater than 45,African-American,0,1,0,0,1,0,2013-02-10 02:43:29,2013-03-07 01:58:42,13002059CF10A,2013-02-10,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-10,Risk of Violence,1,Low,2013-02-10,2013-02-10,2013-03-07,1,25,1146,0,0\r\n2595,lucia abreu,lucia,abreu,2013-08-25,Female,1968-07-24,47,Greater than 45,Hispanic,0,1,0,0,0,0,2013-08-25 04:06:09,2013-08-26 07:32:33,13016278MM10A,2013-08-25,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-25,Risk of Violence,1,Low,2013-08-25,2013-08-25,2013-08-26,0,1,950,0,0\r\n2599,monique falcon,monique,falcon,2013-03-07,Female,1970-07-14,45,Greater than 45,Native American,0,2,0,0,1,,,,10017138MM10A,,2012-10-11,147,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-07,Risk of Violence,1,Low,2013-03-07,,,1,0,1121,0,0\r\n2602,richard lindo,richard,lindo,2013-10-07,Male,1969-02-05,47,Greater than 45,African-American,0,2,0,0,6,0,2013-10-07 03:07:53,2013-10-12 05:24:47,13014052CF10A,2013-10-07,,0,F,Att Tamper w/Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-10-07,2013-10-12,6,5,907,0,0\r\n2604,terence palmer,terence,palmer,2013-04-20,Male,1982-02-26,34,25 - 45,African-American,0,6,0,0,7,0,2013-04-20 01:50:04,2013-04-20 07:14:44,13005651CF10A,2013-04-19,,1,F,Possession of Cannabis,1,13017183CF10A,(M1),1,2013-12-12,Possess Drug Paraphernalia,2013-12-13,2013-12-13,,0,,,,,Risk of Recidivism,6,Medium,2013-04-20,Risk of Violence,2,Low,2013-04-20,2013-12-13,2013-12-13,7,0,236,1,1\r\n2605,isaac ramirez,isaac,ramirez,2013-02-22,Male,1971-01-05,45,Greater than 45,Hispanic,0,8,0,0,1,378,2014-03-07 09:43:42,2014-03-13 08:26:17,13001306MM10A,2013-01-16,,37,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-22,Risk of Violence,4,Low,2013-02-22,2014-03-07,2014-03-13,1,0,378,0,0\r\n2606,jeremy daniel,jeremy,daniel,2013-03-01,Male,1989-04-16,27,25 - 45,African-American,0,9,0,0,10,-1,2013-02-28 11:54:44,2013-03-08 08:37:14,12000192CF10A,,2013-02-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-01,Risk of Violence,8,High,2013-03-01,2013-02-28,2013-03-08,10,7,1127,0,0\r\n2607,carmen fontes,carmen,fontes,2013-12-31,Female,1963-09-01,52,Greater than 45,Caucasian,0,1,0,0,0,0,2013-12-31 12:19:12,2013-12-31 12:53:38,13024008MM10A,2013-12-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-31,Risk of Violence,1,Low,2013-12-31,2013-12-31,2013-12-31,0,0,822,0,0\r\n2608,ivan ferguson,ivan,ferguson,2014-11-17,Male,1990-01-27,26,25 - 45,African-American,0,3,0,0,0,-3,2014-11-14 02:56:30,2014-11-15 02:21:54,14016313MM10A,2014-11-14,,3,M,Operating W/O Valid License,1,15003086MM10A,(M1),,2015-03-14,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2014-11-17,Risk of Violence,3,Low,2014-11-17,2014-11-14,2014-11-15,0,0,117,1,1\r\n2609,michael anderson,michael,anderson,2013-02-27,Male,1991-01-03,25,25 - 45,African-American,0,7,0,1,9,0,2013-02-27 04:07:32,2013-03-01 11:04:29,13002975CF10A,2013-02-26,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-27,Risk of Violence,4,Low,2013-02-27,2014-08-18,2014-09-05,9,2,537,0,0\r\n2610,melvin eberhart,melvin,eberhart,2013-09-26,Male,1964-06-07,51,Greater than 45,African-American,0,2,0,0,1,-1,2013-09-25 09:56:06,2014-03-07 03:16:11,13002843CF10A,,2013-09-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-26,Risk of Violence,2,Low,2013-09-26,2013-09-25,2014-03-07,1,162,918,0,0\r\n2611,shanteka arvinger,shanteka,arvinger,2013-02-01,Female,1986-07-27,29,25 - 45,African-American,0,2,0,0,1,0,2013-02-01 02:58:03,2013-02-01 01:55:45,13002339MM10A,2013-02-01,,0,M,Refuse to Supply DNA Sample,1,15009692CF10A,(F3),0,2015-07-28,Crimin Mischief Damage $1000+,2015-07-28,2015-10-01,,0,,,,,Risk of Recidivism,2,Low,2013-02-01,Risk of Violence,2,Low,2013-02-01,2015-07-28,2015-10-01,1,0,907,1,0\r\n2612,delponjarai howard,delponjarai,howard,2013-05-11,Male,1976-06-10,39,25 - 45,African-American,0,3,0,0,1,,,,96015521CF10A,,1997-06-18,5806,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-11,Risk of Violence,2,Low,2013-05-11,2004-08-17,2006-01-17,1,0,1056,0,0\r\n2613,holger doerr,holger,doerr,2014-03-16,Male,1969-08-18,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-15 05:47:39,2014-03-16 01:19:00,14003736CF10A,2014-03-15,,1,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-16,0,0,747,0,0\r\n2614,joseph parisi,joseph,parisi,2014-01-06,Male,1987-06-14,28,25 - 45,Caucasian,0,4,0,0,6,-2,2014-01-04 09:16:10,2014-01-06 11:05:22,14000157CF10A,2014-01-04,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-06,Risk of Violence,3,Low,2014-01-06,2014-08-12,2014-10-17,6,0,218,0,0\r\n2615,howard carter,howard,carter,2014-02-08,Male,1958-08-19,57,Greater than 45,African-American,0,1,0,0,0,-1,2014-02-07 07:32:03,2014-02-08 09:00:33,14001734CF10A,2014-02-07,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-08,Risk of Violence,1,Low,2014-02-08,2014-02-07,2014-02-08,0,0,783,0,0\r\n2616,andres tejera,andres,tejera,2013-01-18,Male,1993-03-10,23,Less than 25,Hispanic,0,5,0,0,2,-1,2013-01-17 06:30:04,2013-01-18 01:51:21,13000838CF10A,2013-01-17,,1,F,Sel/Pur/Mfr/Del Control Substa,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-18,Risk of Violence,5,Medium,2013-01-18,2013-01-17,2013-01-18,2,0,1169,0,0\r\n2618,harvey francois,harvey,francois,2014-01-13,Male,1981-10-21,34,25 - 45,African-American,0,9,0,0,27,-1,2014-01-12 03:07:09,2014-05-10 05:12:05,14000524CF10A,2014-01-12,,1,F,Felony Petit Theft,1,14008753CF10A,(F3),0,2014-06-25,Grand Theft in the 3rd Degree,2014-06-25,2014-12-24,,0,,,,,Risk of Recidivism,9,High,2014-01-13,Risk of Violence,7,Medium,2014-01-13,2014-06-25,2014-12-24,27,117,163,1,1\r\n2619,kenyetta mattocks,kenyetta,mattocks,2014-03-16,Male,1989-03-25,27,25 - 45,African-American,0,3,0,0,3,-1,2014-03-15 03:18:42,2014-03-27 08:42:37,13016144CF10A,,2014-03-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-16,Risk of Violence,2,Low,2014-03-16,2014-03-15,2014-03-27,3,11,747,0,0\r\n2620,lenard platt,lenard,platt,2014-01-22,Male,1991-04-09,25,25 - 45,African-American,0,9,0,1,7,-1,2014-01-21 08:22:17,2014-01-24 10:19:47,14001000MM10A,2014-01-21,,1,M,Viol Injunct Domestic Violence,1,14006299MM10A,(M1),,2014-03-18,Viol Injunct Domestic Violence,,,,0,,,,,Risk of Recidivism,9,High,2014-01-22,Risk of Violence,6,Medium,2014-01-22,2014-01-21,2014-01-24,7,2,55,1,1\r\n2621,anthony cortes,anthony,cortes,2014-11-14,Male,1985-02-21,31,25 - 45,Caucasian,0,7,0,0,1,-1,2014-11-13 05:26:22,2014-12-16 04:07:30,14015242CF10A,2014-11-13,,1,F,Grand Theft in the 3rd Degree,1,16000111MM10A,(M1),0,2016-01-04,Possess Drug Paraphernalia,2016-01-04,2016-01-28,,1,16000111MM10A,(M1),2016-01-04,Battery,Risk of Recidivism,7,Medium,2014-11-14,Risk of Violence,2,Low,2014-11-14,2016-01-04,2016-01-28,1,32,416,1,1\r\n2623,joseph skipper,joseph,skipper,2014-03-21,Male,1978-11-08,37,25 - 45,African-American,0,2,0,0,8,-1,2014-03-20 07:04:53,2014-03-21 08:33:26,14003962CF10A,2014-03-20,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-21,Risk of Violence,1,Low,2014-03-21,2014-03-20,2014-03-21,8,0,742,0,0\r\n2624,lance geddes,lance,geddes,2013-05-08,Male,1964-04-20,51,Greater than 45,African-American,0,2,0,0,0,0,2013-05-08 02:42:29,2013-05-09 09:51:05,13006593CF10A,2013-05-08,,0,F,Possession of Cocaine,1,13023400MM10A,(M1),,2013-11-15,Battery,,,,1,13023400MM10A,(M1),2013-11-15,Battery,Risk of Recidivism,2,Low,2013-05-08,Risk of Violence,1,Low,2013-05-08,2013-05-14,2013-05-16,0,1,6,0,1\r\n2625,reinaldo rodriguez-hernandez,reinaldo,rodriguez-hernandez,2014-01-27,Male,1964-10-09,51,Greater than 45,Hispanic,0,2,0,0,3,-86,2013-11-02 05:23:27,2013-11-04 09:22:03,14000648MM10A,2014-01-13,,14,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2013-11-02,2013-11-04,3,0,795,0,0\r\n2630,kena boone,kena,boone,2013-01-17,Male,1987-07-26,28,25 - 45,African-American,0,6,1,0,8,-1,2013-01-16 11:54:04,2013-02-26 04:08:32,13000756CF10A,2013-01-16,,1,F,Resist Officer w/Violence,1,15009403CF10A,(M1),0,2015-07-21,Possess Drug Paraphernalia,2015-07-21,2015-07-22,,0,,,,,Risk of Recidivism,6,Medium,2013-01-17,Risk of Violence,6,Medium,2013-01-17,2013-06-17,2013-06-19,8,40,151,0,0\r\n2632,frank ciccio,frank,ciccio,2014-01-16,Male,1959-12-29,56,Greater than 45,Caucasian,0,1,0,0,4,0,2014-01-16 02:39:17,2014-01-23 10:04:18,14000691CF10A,2014-01-16,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-16,Risk of Violence,1,Low,2014-01-16,2014-01-16,2014-01-23,4,7,806,0,0\r\n2633,alando brown,alando,brown,2013-11-19,Male,1970-05-24,45,Greater than 45,African-American,0,9,0,0,15,-1,2013-11-18 07:33:50,2014-10-15 05:49:55,13016013CF10A,2013-11-18,,1,F,Att Burgl Unoccupied Dwel,1,15004897CF10A,(F3),0,2015-04-14,Possession of Cocaine,2015-04-14,2015-08-29,,0,,,,,Risk of Recidivism,9,High,2013-11-19,Risk of Violence,7,Medium,2013-11-19,2015-04-14,2015-08-29,15,330,511,1,1\r\n2634,ruben soto,ruben,soto,2013-03-19,Male,1989-09-01,26,25 - 45,Caucasian,0,6,0,0,7,-1,2013-03-18 07:27:49,2013-04-05 08:05:25,13003934CF10A,2013-03-18,,1,F,Burglary Dwelling Occupied,1,13036773TC10A,(M2),,2013-09-22,Susp Drivers Lic 1st Offense,,,,1,13023373MM10A,(M2),2013-12-17,Assault,Risk of Recidivism,6,Medium,2013-03-19,Risk of Violence,4,Low,2013-03-19,2013-03-18,2013-04-05,7,17,187,1,1\r\n2637,jaime niedda,jaime,niedda,2014-07-27,Male,1982-09-12,33,25 - 45,Caucasian,0,8,0,0,7,-1,2014-07-26 03:22:27,2014-07-27 08:26:01,14010205CF10A,2014-07-26,,1,F,Felony Battery (Dom Strang),1,15011722MM10A,(M1),0,2015-11-08,Battery,2015-11-08,2015-11-10,,1,15011722MM10A,(M1),2015-11-08,Battery,Risk of Recidivism,8,High,2014-07-27,Risk of Violence,2,Low,2014-07-27,2015-08-01,2015-08-02,7,0,370,0,1\r\n2638,ameer badal,ameer,badal,2013-09-03,Male,1992-05-06,23,Less than 25,Caucasian,0,4,0,3,0,-2,2013-09-01 06:04:07,2013-09-02 08:50:01,13016724MM10A,2013-09-01,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-03,Risk of Violence,3,Low,2013-09-03,2013-09-01,2013-09-02,0,0,941,0,0\r\n2639,jonathan coby,jonathan,coby,2013-09-30,Male,1984-05-18,31,25 - 45,African-American,0,2,0,0,0,0,2013-09-30 04:48:28,2013-09-30 08:01:23,13018613MM10A,2013-09-30,,0,M,Poss Drugs W/O A Prescription,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-30,Risk of Violence,2,Low,2013-09-30,2013-09-30,2013-09-30,0,0,914,0,0\r\n2641,alphanso clarke,alphanso,clarke,2013-02-19,Male,1985-04-08,31,25 - 45,Other,0,3,0,0,0,-1,2013-02-18 02:32:16,2013-02-19 06:53:35,13003455MM10A,2013-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-19,Risk of Violence,3,Low,2013-02-19,2013-02-18,2013-02-19,0,0,1137,0,0\r\n2642,carlos delcid,carlos,delcid,2013-09-23,Male,1996-05-11,19,Less than 25,Hispanic,1,9,0,0,1,-12,2013-09-11 07:10:26,2013-09-16 06:40:29,13012824CF10A,,2013-09-11,12,F,arrest case no charge,1,15011680MM10A,(M1),0,2015-11-07,Battery,2015-11-07,2015-11-10,,1,15011680MM10A,(M1),2015-11-07,Battery,Risk of Recidivism,9,High,2013-09-23,Risk of Violence,10,High,2013-09-23,2015-11-07,2015-11-10,1,0,775,1,0\r\n2643,benjamin chase,benjamin,chase,2013-03-01,Male,1983-06-25,32,25 - 45,Caucasian,0,1,0,0,0,0,2013-03-01 03:05:20,2013-03-01 08:05:57,13003113CF10A,2013-03-01,,0,F,Aggravated Assault W/o Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-03-01,2013-03-01,0,0,1127,0,0\r\n2644,joseph amato,joseph,amato,2013-12-03,Male,1986-01-05,30,25 - 45,Caucasian,0,3,0,0,1,-1,2013-12-02 06:06:00,2013-12-03 01:25:01,13022428MM10A,2013-12-02,,1,M,Driving Under The Influence,1,14023470TC40A,(M2),166,2014-04-04,Driving License Suspended,2014-09-17,2014-09-20,,0,,,,,Risk of Recidivism,3,Low,2013-12-03,Risk of Violence,2,Low,2013-12-03,2016-03-04,2016-03-04,1,0,122,1,1\r\n2645,elsie figueroa,elsie,figueroa,2013-06-07,Female,1968-03-14,48,Greater than 45,Hispanic,0,6,0,0,9,-87,2013-03-12 05:15:17,2013-05-08 09:35:00,07010629CF10A,,2013-03-12,87,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-06-07,Risk of Violence,6,Medium,2013-06-07,2013-03-12,2013-05-08,9,0,1029,0,0\r\n2649,douglas delarosa,douglas,delarosa,2013-09-20,Male,1950-01-31,66,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-09-19 10:18:25,2013-09-20 08:42:02,13013213CF10A,,2013-09-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-09-19,2013-09-20,1,0,924,0,0\r\n2650,tanamra brackett,tanamra,brackett,2014-03-25,Female,1975-06-30,40,25 - 45,African-American,0,1,0,0,0,0,2014-03-25 12:36:32,2014-03-25 08:18:56,14004157CF10A,2014-03-24,,1,F,Grand Theft in the 1st Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-25,Risk of Violence,1,Low,2014-03-25,2014-03-25,2014-03-25,0,0,738,0,0\r\n2651,herbert lindsey,herbert,lindsey,2013-08-02,Male,1956-12-13,59,Greater than 45,African-American,0,2,0,0,4,0,2013-08-02 04:48:15,2013-08-03 04:06:59,13014713MM10A,2013-08-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-02,Risk of Violence,2,Low,2013-08-02,2013-08-02,2013-08-03,4,1,973,0,0\r\n2652,felix payne,felix,payne,2013-10-31,Male,1990-06-21,25,25 - 45,African-American,0,7,0,0,5,118,2014-02-26 09:11:49,2014-05-22 11:09:00,11018917CF10A,,2013-07-03,120,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-31,Risk of Violence,7,Medium,2013-10-31,2014-02-26,2014-05-22,5,0,118,0,0\r\n2654,michael duplessy,michael,duplessy,2013-10-18,Male,1988-09-30,27,25 - 45,African-American,0,7,0,0,3,-23,2013-09-25 04:20:19,2013-09-26 09:32:53,13010603TC20A,2013-01-09,,282,M,Leave Accd/Attend Veh/Less $50,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-18,Risk of Violence,3,Low,2013-10-18,2013-09-25,2013-09-26,3,0,896,0,0\r\n2655,giovanni bonair,giovanni,bonair,2013-01-10,Male,1993-11-17,22,Less than 25,African-American,0,3,0,0,0,-1,2013-01-09 08:21:48,2013-01-10 01:28:55,13000390CF10A,2013-01-09,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-10,Risk of Violence,6,Medium,2013-01-10,2013-01-09,2013-01-10,0,0,1177,0,0\r\n2656,douglas bergman,douglas,bergman,2013-05-17,Male,1958-01-31,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-05-16 01:20:39,2013-05-17 01:12:54,13007010CF10A,2013-05-16,,1,F,Fel Drive License Perm Revoke,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-17,Risk of Violence,1,Low,2013-05-17,2014-01-13,2014-01-16,1,0,241,0,0\r\n2657,roy jones,roy,jones,2013-03-06,Male,1967-02-20,49,Greater than 45,African-American,0,1,0,0,1,,,,13004499MM10A,2013-03-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-06,Risk of Violence,1,Low,2013-03-06,,,1,0,1122,0,0\r\n2658,ernesto chao,ernesto,chao,2014-01-06,Male,1986-09-28,29,25 - 45,Caucasian,0,3,0,0,2,-2,2014-01-04 09:12:16,2014-01-06 11:05:13,14000156CF10A,2014-01-04,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-06,Risk of Violence,2,Low,2014-01-06,2014-01-04,2014-01-06,2,0,816,0,0\r\n2661,ann thorpe,ann,thorpe,2013-03-22,Female,1971-10-16,44,25 - 45,Caucasian,0,7,0,0,11,245,2013-11-22 12:38:50,2013-12-19 04:15:41,13004091CF10A,2013-03-21,,1,F,Felony Battery w/Prior Convict,1,13011484MM10A,(M1),160,2013-06-15,Resist/Obstruct W/O Violence,2013-11-22,2013-12-19,,0,,,,,Risk of Recidivism,7,Medium,2013-03-22,Risk of Violence,2,Low,2013-03-22,2014-10-05,2014-12-07,11,0,85,1,1\r\n2662,fernando lopez,fernando,lopez,2013-12-04,Male,1991-07-17,24,Less than 25,African-American,0,4,0,0,2,203,2014-06-25 08:43:02,2014-07-01 11:20:30,12013210CF10A,2012-09-07,,453,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-04,Risk of Violence,3,Low,2013-12-04,2014-06-25,2014-07-01,2,0,203,0,0\r\n2664,lawrence cottle,lawrence,cottle,2013-11-13,Male,1988-11-27,27,25 - 45,African-American,0,8,0,0,0,-1,2013-11-12 08:49:59,2014-01-12 07:13:33,13015730CF10A,2013-11-12,,1,F,Aggravated Assault W/Dead Weap,1,15008602CF10A,(F2),0,2015-07-05,Throw Deadly Missile Into Veh,2015-07-05,2015-07-08,,1,15008602CF10A,(F2),2015-07-05,Throw Deadly Missile Into Veh,Risk of Recidivism,8,High,2013-11-13,Risk of Violence,7,Medium,2013-11-13,2014-08-09,2014-09-11,0,60,269,0,1\r\n2666,cheriz bradley,cheriz,bradley,2013-11-14,Female,1981-07-17,34,25 - 45,African-American,0,5,0,0,5,-53,2013-09-22 07:23:11,2013-10-17 04:44:38,13013352CF10A,2013-09-22,,53,F,Resist Officer w/Violence,1,14009504CF10A,(F3),0,2014-07-11,Possession of Cocaine,2014-07-11,2014-08-19,,0,,,,,Risk of Recidivism,5,Medium,2013-11-14,Risk of Violence,5,Medium,2013-11-14,2014-03-18,2014-04-10,5,0,124,0,1\r\n2667,david turner,david,turner,2013-03-04,Male,1991-08-26,24,Less than 25,Caucasian,0,5,0,0,0,-3,2013-03-01 11:53:52,2013-03-03 01:39:58,13003099CF10A,2013-03-01,,3,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-04,Risk of Violence,4,Low,2013-03-04,2015-04-11,2015-04-16,0,0,768,0,0\r\n2668,shannon morsillo,shannon,morsillo,2013-09-16,Female,1980-05-22,35,25 - 45,Caucasian,0,4,1,0,3,0,2013-09-16 02:49:07,2013-09-16 07:49:06,13013067CF10A,2013-09-16,,0,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-16,Risk of Violence,2,Low,2013-09-16,2013-09-16,2013-09-16,3,0,928,0,0\r\n2669,bruce siegel,bruce,siegel,2013-02-20,Male,1950-05-31,65,Greater than 45,Caucasian,0,3,0,0,4,,,,12025503MM10A,2012-12-14,,68,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,,,4,0,1136,0,0\r\n2671,zachary fruster,zachary,fruster,2013-03-21,Male,1986-09-06,29,25 - 45,African-American,0,8,2,1,7,0,2013-03-21 01:34:25,2013-03-23 07:42:18,13004097CF10A,2013-03-21,,0,F,Grand Theft in the 3rd Degree,1,13004097CF10A,(F1),,2013-03-26,Harass Witness/Victm/Informnt,,,,0,,,,,Risk of Recidivism,8,High,2013-03-21,Risk of Violence,7,Medium,2013-03-21,2013-03-21,2013-03-23,7,2,5,1,1\r\n2672,ivory miller,ivory,miller,2013-05-02,Male,1985-12-17,30,25 - 45,African-American,1,9,0,0,5,-1,2013-05-01 01:32:49,2013-05-03 03:49:21,13006251CF10A,2013-05-01,,1,F,Aggravated Assault W/dead Weap,1,14010717MM10A,(M1),0,2014-07-13,Resist/Obstruct W/O Violence,2014-07-13,2014-07-16,,1,14010717MM10A,(M1),2014-07-13,Battery,Risk of Recidivism,9,High,2013-05-02,Risk of Violence,6,Medium,2013-05-02,2014-07-13,2014-07-16,5,1,437,1,1\r\n2673,jarvis mccloud,jarvis,mccloud,2013-01-18,Male,1992-06-26,23,Less than 25,African-American,0,2,1,1,1,-1,2013-01-17 01:19:27,2013-01-19 09:27:19,13000826CF10A,2013-01-17,,1,F,Possession Burglary Tools,1,15010350MM10A,(M1),,2015-09-07,Battery,,,,1,15010350MM10A,(M1),2015-09-07,Battery,Risk of Recidivism,2,Low,2013-01-18,Risk of Violence,4,Low,2013-01-18,2013-08-29,2013-09-05,1,1,223,0,0\r\n2676,jonathan gordon,jonathan,gordon,2014-07-02,Male,1983-04-28,32,25 - 45,Caucasian,0,4,0,0,2,-27,2014-06-05 11:53:48,2014-06-06 02:23:00,14007774CF10A,2014-06-05,,27,F,Possession Of Heroin,1,15001926CF10A,(F7),,2015-02-05,Burglary Dwelling Armed,,,,1,15001926CF10A,(F7),2015-02-05,Burglary Dwelling Armed,Risk of Recidivism,4,Low,2014-07-02,Risk of Violence,1,Low,2014-07-02,2014-06-05,2014-06-06,2,0,218,1,1\r\n2677,nicholas staggewise,nicholas,staggewise,2013-09-24,Male,1994-02-28,22,Less than 25,Caucasian,0,5,0,0,2,-1,2013-09-23 09:01:58,2013-09-27 03:54:42,13013378CF10A,,2013-09-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-24,Risk of Violence,5,Medium,2013-09-24,2013-09-23,2013-09-27,2,3,920,0,0\r\n2678,kevin pierrelouis,kevin,pierrelouis,2013-12-28,Male,1994-10-06,21,Less than 25,African-American,0,3,0,0,0,-1,2013-12-27 04:28:14,2013-12-28 08:24:11,13023881MM10A,2013-12-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-28,Risk of Violence,5,Medium,2013-12-28,2013-12-27,2013-12-28,0,0,825,0,0\r\n2679,kelli smith,kelli,smith,2013-05-15,Female,1972-08-01,43,25 - 45,Caucasian,0,2,0,0,0,-1,2013-05-14 12:38:54,2013-05-14 11:35:49,13009244MM10A,2013-05-13,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-15,Risk of Violence,1,Low,2013-05-15,2013-05-14,2013-05-14,0,0,1052,0,0\r\n2680,jazze johnson,jazze,johnson,2013-05-14,Male,1986-09-29,29,25 - 45,African-American,0,8,0,0,0,-1,2013-05-13 07:26:35,2013-05-16 03:43:24,13006827CF10A,2013-05-13,,1,F,Poss of Cocaine W/I/D/S 1000FT Park,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-14,Risk of Violence,4,Low,2013-05-14,2015-05-04,2015-08-19,0,2,720,0,0\r\n2681,terrill morley,terrill,morley,2014-02-15,Male,1972-08-04,43,25 - 45,African-American,0,3,0,0,1,0,2014-02-15 03:04:19,2014-02-17 01:40:03,14002175CF10A,2014-02-14,,1,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-15,Risk of Violence,3,Low,2014-02-15,2014-02-15,2014-02-17,1,2,776,0,0\r\n2682,reynard burrows,reynard,burrows,2014-03-29,Male,1990-08-26,25,25 - 45,African-American,0,2,0,0,1,-1,2014-03-28 03:44:26,2014-03-30 04:49:22,14004408CF10A,,2014-03-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-29,Risk of Violence,3,Low,2014-03-29,2014-03-28,2014-03-30,1,1,734,0,0\r\n2683,rita iscaro,rita,iscaro,2013-10-09,Male,1968-10-30,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-08 05:57:00,2013-10-09 08:10:17,13019142MM10A,2013-10-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-09,Risk of Violence,1,Low,2013-10-09,2013-10-08,2013-10-09,0,0,905,0,0\r\n2685,terri-ann gray,terri-ann,gray,2013-04-25,Female,1994-09-29,21,Less than 25,African-American,0,5,0,0,0,-2,2013-04-23 09:24:55,2013-04-24 01:57:08,13005850CF10A,2013-04-23,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-25,Risk of Violence,6,Medium,2013-04-25,2013-04-23,2013-04-24,0,0,1072,0,0\r\n2686,latia johnson,latia,johnson,2013-05-06,Female,1990-10-08,25,25 - 45,African-American,0,6,0,0,1,-100,2013-01-26 12:47:52,2013-01-26 08:48:00,09002935MM10A,2009-02-02,,1554,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-06,Risk of Violence,3,Low,2013-05-06,2013-01-26,2013-01-26,1,0,1061,0,0\r\n2687,jose somarriba-barrera,jose,somarriba-barrera,2013-10-19,Male,1961-12-05,54,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-19 12:42:06,2013-10-19 08:14:50,13019783MM10A,2013-10-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-19,Risk of Violence,1,Low,2013-10-19,2013-10-19,2013-10-19,0,0,895,0,0\r\n2688,brian fields,brian,fields,2013-02-07,Male,1982-01-19,34,25 - 45,African-American,0,1,0,1,3,-1,2013-02-06 12:54:19,2013-03-12 09:26:08,13001879CF10A,2013-02-06,,1,F,Lewd Act Presence Child 16-,1,13002546CF10A,(F1),32,2013-02-15,Sex Batt Faml/Cust Vict 12-17Y,2013-03-19,2013-03-20,,1,13002546CF10A,(F1),2013-02-15,Sex Batt Faml/Cust Vict 12-17Y,Risk of Recidivism,1,Low,2013-02-07,Risk of Violence,1,Low,2013-02-07,2013-02-06,2013-03-12,3,0,8,1,1\r\n2689,laura elsy,laura,elsy,2013-04-08,Female,1988-03-21,28,25 - 45,African-American,0,2,0,0,2,-1,2013-04-07 06:55:46,2013-04-08 08:22:48,13006661MM10A,2013-04-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-08,Risk of Violence,2,Low,2013-04-08,2013-04-07,2013-04-08,2,0,1089,0,0\r\n2690,alicja maxwell,alicja,maxwell,2013-07-18,Female,1962-11-25,53,Greater than 45,Caucasian,0,1,0,0,4,-1,2013-07-17 03:05:27,2013-07-17 06:29:47,13010023CF10A,2013-07-17,,1,F,Poss Contr Subst W/o Prescript,1,14033317MU10A,(M1),0,2014-09-15,DUI Property Damage/Injury,2014-09-15,2014-09-23,,0,,,,,Risk of Recidivism,1,Low,2013-07-18,Risk of Violence,1,Low,2013-07-18,2014-09-15,2014-09-23,4,0,424,1,1\r\n2691,kelly lestrade,kelly,lestrade,2013-01-31,Male,1961-11-24,54,Greater than 45,African-American,0,1,0,0,0,0,2013-01-31 12:10:19,2013-01-31 07:49:24,13002173MO10A,2013-01-30,,1,M,Soliciting For Prostitution,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-31,Risk of Violence,1,Low,2013-01-31,2013-01-31,2013-01-31,0,0,1156,0,0\r\n2692,benedicio salas,benedicio,salas,2013-04-19,Male,1978-07-07,37,25 - 45,Hispanic,0,1,0,0,3,-1,2013-04-18 02:12:18,2013-07-10 12:13:59,12004305CF10A,,2013-04-18,1,F,arrest case no charge,1,15026068TC20A,(M2),,2015-04-14,Expired DL More Than 6 Months,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,2,Low,2013-04-19,2013-04-18,2013-07-10,3,82,725,1,1\r\n2696,antonio taylor,antonio,taylor,2013-10-30,Male,1981-09-28,34,25 - 45,African-American,0,4,0,0,2,-1,2013-10-29 05:28:11,2013-10-30 02:05:14,13015099CF10A,2013-10-29,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2015-07-17,2015-07-18,2,0,625,0,0\r\n2697,arturo torres,arturo,torres,2013-11-05,Male,1965-08-01,50,Greater than 45,Hispanic,0,9,0,0,11,-210,2013-04-09 12:06:10,2013-08-01 11:15:00,13007781MM10A,2013-04-09,,210,M,Extradition/Defendants,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-05,Risk of Violence,3,Low,2013-11-05,2013-04-09,2013-08-01,11,0,878,0,0\r\n2698,cheryl smith,cheryl,smith,2014-06-23,Female,1955-12-08,60,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-06-22 07:29:36,2014-06-23 08:57:59,14008597CF10A,2014-06-22,,1,F,Battery on Law Enforc Officer,1,16005063TC20A,(M2),,2016-01-26,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-06-23,Risk of Violence,1,Low,2014-06-23,2014-06-22,2014-06-23,0,0,582,1,1\r\n2700,chantel fleurima,chantel,fleurima,2014-02-06,Male,1993-06-09,22,Less than 25,African-American,0,4,0,0,0,-1,2014-02-05 06:45:32,2014-02-06 08:17:45,14001662CF10A,2014-02-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-06,Risk of Violence,5,Medium,2014-02-06,2014-02-05,2014-02-06,0,0,785,0,0\r\n2703,willie butler,willie,butler,2014-01-22,Male,1964-09-08,51,Greater than 45,African-American,0,7,0,0,3,0,2014-01-22 12:07:26,2014-01-22 08:34:55,14000928CF10A,2014-01-21,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-22,Risk of Violence,4,Low,2014-01-22,2014-01-22,2014-01-22,3,0,800,0,0\r\n2704,charles sherman,charles,sherman,2013-12-05,Male,1987-03-11,29,25 - 45,African-American,0,2,0,0,0,-1,2013-12-04 11:27:35,2013-12-17 11:21:44,13016828CF10A,2013-12-04,,1,F,Felony Battery (Dom Strang),1,14069325TC30A,(M2),,2014-08-07,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-05,Risk of Violence,2,Low,2013-12-05,2013-12-04,2013-12-17,0,12,245,1,1\r\n2706,ashley collins,ashley,collins,2013-04-04,Female,1987-10-25,28,25 - 45,African-American,0,5,0,0,1,-43,2013-02-20 01:20:12,2013-02-21 09:23:01,13002615CF10A,2013-02-20,,43,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-04,Risk of Violence,5,Medium,2013-04-04,2013-10-16,2013-10-21,1,0,195,0,0\r\n2707,michael burkland,michael,burkland,2013-10-01,Male,1979-09-19,36,25 - 45,Caucasian,0,7,0,0,6,-126,2013-05-28 04:14:16,2013-05-30 12:55:17,13007627CF10A,2013-05-23,,131,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-01,Risk of Violence,3,Low,2013-10-01,2015-04-24,2015-05-06,6,0,570,0,0\r\n2708,atley greenslade,atley,greenslade,2013-01-24,Male,1987-09-12,28,25 - 45,African-American,0,6,0,1,5,-1,2013-01-23 11:19:27,2013-02-20 07:44:00,11006005MM10A,,2013-01-23,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-24,Risk of Violence,5,Medium,2013-01-24,2013-01-23,2013-02-20,5,27,1163,0,0\r\n2711,brian vasquez,brian,vasquez,2013-03-11,Male,1982-05-09,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-10 04:42:45,2013-03-11 03:41:15,13003529CF10A,2013-03-10,,1,F,Grand Theft (Motor Vehicle),1,13005251CF10A,(F3),0,2013-04-11,Grand Theft (Motor Vehicle),2013-04-11,2013-04-12,,0,,,,,Risk of Recidivism,1,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-04-11,2013-04-12,0,0,31,1,1\r\n2713,justin hyde,justin,hyde,2013-05-05,Male,1973-04-03,43,25 - 45,Caucasian,0,2,0,0,4,0,2013-05-05 03:19:14,2013-05-07 10:46:44,13008692MM10A,2013-05-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-05,Risk of Violence,4,Low,2013-05-05,2013-05-05,2013-05-07,4,2,1062,0,0\r\n2714,lazaro diaz,lazaro,diaz,2013-12-29,Male,1970-05-09,45,Greater than 45,Hispanic,0,6,0,0,1,-1,2013-12-28 11:13:04,2014-01-24 05:22:59,13023914MM10A,2013-12-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-29,Risk of Violence,3,Low,2013-12-29,2013-12-28,2014-01-24,1,26,824,0,0\r\n2716,michael cotto,michael,cotto,2014-05-15,Male,1983-11-19,32,25 - 45,Caucasian,0,5,0,0,5,-1,2014-05-14 07:11:41,2014-07-18 08:41:13,14006705CF10A,2014-05-14,,1,F,Resist Officer w/Violence,1,14079658TC30A,(M2),,2014-09-19,Expired DL More Than 6 Months,,,,0,,,,,Risk of Recidivism,5,Medium,2014-05-15,Risk of Violence,7,Medium,2014-05-15,2014-05-14,2014-07-18,5,64,127,1,1\r\n2718,nicole henderson,nicole,henderson,2013-02-14,Female,1981-02-07,35,25 - 45,African-American,0,3,0,0,0,-1,2013-02-13 10:36:11,2013-02-15 08:39:33,13002240CF10A,2013-02-13,,1,F,Possession of Cocaine,1,13003788MO10A,(MO3),0,2013-02-23,Prostitution,2013-02-23,2013-03-09,,0,,,,,Risk of Recidivism,3,Low,2013-02-14,Risk of Violence,2,Low,2013-02-14,2013-02-23,2013-03-09,0,1,9,1,1\r\n2719,ferrell cooper,ferrell,cooper,2014-04-19,Male,1992-11-12,23,Less than 25,African-American,0,4,0,0,1,-1,2014-04-18 04:41:10,2014-04-19 08:57:05,14005432CF10A,2014-04-18,,1,F,Felony Batt(Great Bodily Harm),1,14011577CF10A,(F3),1,2014-08-24,Destroy Damage Alter Elec Monitor Equip,2014-08-25,2015-02-12,,0,,,,,Risk of Recidivism,4,Low,2014-04-19,Risk of Violence,3,Low,2014-04-19,2014-08-25,2015-02-12,1,0,127,1,1\r\n2720,asael rodriguez,asael,rodriguez,2013-04-01,Male,1974-11-05,41,25 - 45,Hispanic,0,1,0,0,1,-1,2013-03-31 07:44:17,2013-07-23 07:27:00,13004615CF10A,2013-03-31,,1,M,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-03-31,2013-07-23,1,113,1096,0,0\r\n2721,fandy fleurinord,fandy,fleurinord,2014-08-19,Male,1991-02-12,25,25 - 45,Other,20,10,0,0,24,-1,2014-08-18 10:49:05,2014-08-19 07:37:38,14011300CF10A,,2014-08-18,1,F,arrest case no charge,1,14015651MM10A,(M1),1,2014-09-28,Battery,2014-09-29,2015-02-05,,1,14013123CF10A,(F2),2014-09-28,Aggravated Battery / Pregnant,Risk of Recidivism,10,High,2014-08-19,Risk of Violence,6,Medium,2014-08-19,2014-09-29,2015-02-05,24,0,40,1,1\r\n2722,miguel rodriguez,miguel,rodriguez,2014-02-11,Male,1980-11-21,35,25 - 45,Hispanic,0,9,1,0,12,-1,2014-02-10 02:02:43,2014-02-20 10:54:05,14001877CF10A,2014-02-10,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-11,Risk of Violence,6,Medium,2014-02-11,2014-02-10,2014-02-20,12,9,780,0,0\r\n2723,rachard parker,rachard,parker,2013-04-12,Male,1990-09-02,25,25 - 45,African-American,0,6,0,0,4,0,2013-04-12 02:27:28,2013-05-25 08:22:52,13005430CF10A,2013-04-12,,0,F,Crim Use of Personal ID Info,1,13012246CF10A,(M1),0,2013-08-29,Possess Cannabis/20 Grams Or Less,2013-08-29,2015-03-20,,0,,,,,Risk of Recidivism,6,Medium,2013-04-12,Risk of Violence,5,Medium,2013-04-12,2013-08-29,2015-03-20,4,43,139,1,1\r\n2724,russell pellerito,russell,pellerito,2014-10-22,Male,1946-12-04,69,Greater than 45,Caucasian,0,2,0,0,6,-1,2014-10-21 08:03:42,2014-10-22 08:13:42,14014182CF10A,2014-10-21,,1,F,Driving While License Revoked,1,15041466TC30A,(M2),63,2015-06-01,Unlaw LicTag/Sticker Attach,2015-08-03,2015-08-12,,0,,,,,Risk of Recidivism,2,Low,2014-10-22,Risk of Violence,1,Low,2014-10-22,2015-08-03,2015-08-12,6,0,222,1,1\r\n2728,wailim ng,wailim,ng,2014-02-27,Male,1991-07-05,24,Less than 25,Asian,0,3,0,0,0,-1,2014-02-26 03:41:51,2014-02-27 08:32:16,14003374MM10A,2014-02-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-27,Risk of Violence,4,Low,2014-02-27,2014-02-26,2014-02-27,0,0,764,0,0\r\n2730,braxton davis,braxton,davis,2013-08-08,Male,1994-11-13,21,Less than 25,African-American,0,6,0,0,3,34,2013-09-11 04:54:32,2013-11-13 06:42:11,13009258CF10A,2013-07-01,,38,F,Grand Theft (Motor Vehicle),1,13017303MM10A,(M1),0,2013-09-11,Resist/Obstruct W/O Violence,2013-09-11,2013-11-13,,1,15012154CF10A,(F2),2015-08-25,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-08-08,Risk of Violence,6,Medium,2013-08-08,2013-09-11,2013-11-13,3,0,34,1,1\r\n2731,arturo martinez,arturo,martinez,2013-08-26,Male,1987-10-23,28,25 - 45,Hispanic,0,4,0,0,0,-1,2013-08-25 01:21:23,2013-08-25 08:19:25,13011964CF10A,2013-08-25,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-26,Risk of Violence,4,Low,2013-08-26,2014-01-22,2014-01-24,0,0,149,0,0\r\n2732,kenneth archer,kenneth,archer,2013-01-23,Male,1968-08-12,47,Greater than 45,African-American,0,7,0,0,23,-1,2013-01-22 01:33:48,2014-03-01 11:25:40,13001047CF10A,2013-01-22,,1,F,Poss Wep Conv Felon,1,15005860CF10A,(F3),,2014-12-08,Uttering a Forged Instrument,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-23,Risk of Violence,5,Medium,2013-01-23,2013-01-22,2014-03-01,23,402,684,1,1\r\n2733,louis ramo,louis,ramo,2013-10-24,Male,1957-01-11,59,Greater than 45,Other,0,1,0,0,1,,,,13014470CF10A,2013-10-15,,9,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-24,Risk of Violence,1,Low,2013-10-24,,,1,0,890,0,0\r\n2735,morell jones,morell,jones,2014-12-08,Male,1986-11-22,29,25 - 45,African-American,0,10,1,0,13,0,2014-12-08 12:41:35,2014-12-10 05:10:10,14016327CF10A,2014-12-08,,0,F,Poss Pyrrolidinovalerophenone,1,14016590CF10A,(F3),0,2014-12-14,Resist Officer w/Violence,2014-12-14,2015-11-24,,1,14016590CF10A,(M1),2014-12-14,Battery,Risk of Recidivism,10,High,2014-12-08,Risk of Violence,10,High,2014-12-08,2014-12-14,2015-11-24,13,2,6,1,1\r\n2736,anthony cirrincione,anthony,cirrincione,2013-08-20,Male,1980-02-01,36,25 - 45,Caucasian,0,4,0,0,14,-38,2013-07-13 05:43:49,2013-07-14 03:34:02,13009851CF10A,2013-07-13,,38,F,Grand Theft in the 3rd Degree,1,14013908MM10A,(M1),0,2014-09-18,Trespass Other Struct/Conve,2014-09-18,2014-09-21,,0,,,,,Risk of Recidivism,4,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2014-09-18,2014-09-21,14,0,394,1,1\r\n2737,kataruis brantley,kataruis,brantley,2014-03-06,Male,1989-06-19,26,25 - 45,African-American,0,8,0,0,9,-1,2014-03-05 09:51:09,2014-03-08 01:29:05,14003097CF10A,2014-03-05,,1,F,Drivg While Lic Suspd/Revk/Can,1,14004347CF10A,(F2),0,2014-03-27,Armed False Imprisonment,2014-03-27,2014-10-24,,1,14004347CF10A,(F2),2014-03-27,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,8,High,2014-03-06,Risk of Violence,7,Medium,2014-03-06,2014-03-27,2014-10-24,9,2,21,1,1\r\n2738,lucane jean-baptiste,lucane,jean-baptiste,2014-03-01,Male,1984-09-08,31,25 - 45,Other,0,1,0,0,0,-1,2014-02-28 09:25:17,2014-03-03 04:49:52,14003506MM10A,2014-02-28,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-01,Risk of Violence,1,Low,2014-03-01,2014-02-28,2014-03-03,0,2,762,0,0\r\n2740,jaqua caddell,jaqua,caddell,2013-04-29,Male,1984-02-29,32,25 - 45,African-American,0,3,0,0,8,35,2013-06-03 10:33:14,2013-06-04 01:18:04,13006131CF10A,2013-04-29,,0,F,Grand Theft in the 3rd Degree,1,13018826MM10A,(M2),0,2013-10-03,Petit Theft,2013-10-03,2014-02-18,,0,,,,,Risk of Recidivism,3,Low,2013-04-29,Risk of Violence,3,Low,2013-04-29,2013-06-03,2013-06-04,8,0,35,0,1\r\n2742,cameo dickerson,cameo,dickerson,2014-02-26,Female,1989-01-01,27,25 - 45,Caucasian,0,7,0,0,3,-121,2013-10-28 01:14:59,2014-01-24 07:16:10,10020847CF10A,,2013-10-28,121,F,arrest case no charge,1,15003406CF10A,(F3),1,2015-03-12,False Ownership Info/Pawn Item,2015-03-13,2015-08-20,,0,,,,,Risk of Recidivism,7,Medium,2014-02-26,Risk of Violence,4,Low,2014-02-26,2015-08-20,2020-01-01,3,0,379,1,1\r\n2745,nicholas lewis,nicholas,lewis,2013-04-07,Male,1987-10-06,28,25 - 45,Caucasian,0,7,0,0,0,0,2013-04-07 02:56:56,2013-04-08 03:59:28,13005001CF10A,2013-04-06,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-07,Risk of Violence,3,Low,2013-04-07,2013-11-29,2013-12-05,0,1,236,0,0\r\n2746,john mcginnis,john,mcginnis,2013-12-24,Male,1968-04-16,48,Greater than 45,Caucasian,0,1,0,0,1,0,2013-12-24 01:37:02,2013-12-24 07:38:32,13023706MM10A,2013-12-23,,1,M,Driving Under The Influence,1,14001258MM10A,(M1),1,2014-01-22,Resist/Obstruct W/O Violence,2014-01-23,2014-01-23,,0,,,,,Risk of Recidivism,1,Low,2013-12-24,Risk of Violence,1,Low,2013-12-24,2015-05-21,2015-05-22,1,0,29,1,1\r\n2747,juan montoya,juan,montoya,2013-05-13,Male,1992-11-11,23,Less than 25,Caucasian,0,7,0,0,2,129,2013-09-19 04:31:11,2014-03-02 05:03:12,11019278CF10A,,2012-09-23,232,F,arrest case no charge,1,13013202CF10A,(M1),0,2013-09-19,Misuse Of Wireless 911 System,2013-09-19,2014-03-02,,0,,,,,Risk of Recidivism,7,Medium,2013-05-13,Risk of Violence,7,Medium,2013-05-13,2013-09-19,2014-03-02,2,0,129,1,1\r\n2748,robert fox,robert,fox,2013-04-19,Male,1971-11-18,44,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-18 02:39:42,2013-04-18 07:19:45,13007540MM10A,2013-04-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-18,2013-04-18,0,0,1078,0,0\r\n2749,carlos zuniga,carlos,zuniga,2013-05-11,Male,1973-08-13,42,25 - 45,African-American,0,5,0,0,7,-1,2013-05-10 07:11:40,2013-05-11 06:30:56,13006749CF10A,2013-05-10,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-11,Risk of Violence,3,Low,2013-05-11,2016-01-19,2016-01-20,7,0,983,0,0\r\n2750,cedric scott,cedric,scott,2013-05-23,Male,1976-04-24,39,25 - 45,African-American,0,7,0,0,5,-1,2013-05-22 02:25:27,2013-05-26 02:44:47,13007308CF10A,2013-05-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-23,Risk of Violence,4,Low,2013-05-23,2013-06-24,2013-07-04,5,3,32,0,0\r\n2751,maribell guzman,maribell,guzman,2013-12-18,Female,1969-05-31,46,Greater than 45,Hispanic,0,1,0,0,2,-1,2013-12-17 03:27:50,2013-12-20 07:38:29,13017408CF10A,2013-12-17,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-18,Risk of Violence,1,Low,2013-12-18,2013-12-17,2013-12-20,2,2,835,0,0\r\n2752,gino rijos,gino,rijos,2013-08-26,Male,1960-06-17,55,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-08-25 06:52:16,2013-09-04 08:36:18,13016258MM10A,2013-08-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-26,Risk of Violence,3,Low,2013-08-26,2013-08-25,2013-09-04,0,9,949,0,0\r\n2753,anthony myers,anthony,myers,2013-11-09,Male,1988-07-19,27,25 - 45,African-American,0,9,0,0,5,-1,2013-11-08 04:23:08,2013-11-12 10:03:30,13015569CF10A,2013-11-08,,1,F,Burglary Dwelling Occupied,1,15011102CF10A,(F1),,2014-04-03,Burgl Dwel/Struct/Convey Armed,,,,0,,,,,Risk of Recidivism,9,High,2013-11-09,Risk of Violence,4,Low,2013-11-09,2013-11-08,2013-11-12,5,3,145,1,1\r\n2754,jennifer vitulano,jennifer,vitulano,2013-11-11,Female,1984-10-23,31,25 - 45,Caucasian,0,9,0,0,0,-1,2013-11-10 05:13:10,2013-11-15 03:36:58,13021208MM10A,2013-11-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-11,Risk of Violence,5,Medium,2013-11-11,2013-11-10,2013-11-15,0,4,872,0,0\r\n2758,jerome traverso,jerome,traverso,2013-09-18,Male,1991-04-06,25,25 - 45,African-American,0,2,0,0,0,-1,2013-09-17 07:20:44,2013-09-18 01:35:06,13013115CF10A,2013-09-17,,1,F,Poss Tetrahydrocannabinols,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-18,Risk of Violence,4,Low,2013-09-18,2013-09-17,2013-09-18,0,0,926,0,0\r\n2759,andrew millican,andrew,millican,2014-02-06,Male,1984-03-19,32,25 - 45,Caucasian,0,7,0,2,6,0,2014-02-06 04:39:20,2014-02-06 08:49:20,14004843MU10A,2014-02-06,,0,M,Refuse Submit Blood/Breath Test,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-06,Risk of Violence,4,Low,2014-02-06,2014-02-06,2014-02-06,6,0,785,0,0\r\n2760,frantz pierre,frantz,pierre,2013-03-11,Male,1979-12-03,36,25 - 45,African-American,0,5,0,0,2,-1,2013-03-10 07:15:50,2013-03-11 01:32:19,13003518CF10A,2013-03-10,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-11,Risk of Violence,4,Low,2013-03-11,2013-03-10,2013-03-11,2,0,1117,0,0\r\n2762,jason gabriel,jason,gabriel,2013-11-10,Male,1994-12-09,21,Less than 25,African-American,0,7,0,0,3,-1,2013-11-09 02:29:56,2013-11-13 09:54:35,13009217CF10A,,2013-11-10,0,F,arrest case no charge,1,15001776MM30A,(M1),,2015-11-01,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-10,Risk of Violence,6,Medium,2013-11-10,2014-01-25,2014-02-01,3,3,76,0,1\r\n2764,daniel muller,daniel,muller,2013-12-22,Male,1977-03-14,39,25 - 45,Caucasian,0,4,0,0,2,0,2013-12-22 12:50:58,2013-12-22 08:44:32,13023560MM10A,2013-12-21,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-22,Risk of Violence,2,Low,2013-12-22,2013-12-22,2013-12-22,2,0,831,0,0\r\n2765,andrienna sanchez,andrienna,sanchez,2013-08-01,Female,1989-09-08,26,25 - 45,African-American,0,2,0,0,0,0,2013-08-01 12:06:58,2013-08-01 07:33:02,13014467MM10A,2013-07-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-01,Risk of Violence,2,Low,2013-08-01,2013-08-01,2013-08-01,0,0,974,0,0\r\n2766,raheim george,raheim,george,2013-03-06,Male,1987-08-21,28,25 - 45,African-American,0,8,0,0,8,0,2013-03-06 02:21:02,2013-03-26 09:13:38,13003363CF10A,2013-03-05,,1,F,Grand Theft in the 3rd Degree,1,13009232CF10A,(F3),,2013-06-27,Grand Theft Firearm,,,,0,,,,,Risk of Recidivism,8,High,2013-03-06,Risk of Violence,7,Medium,2013-03-06,2013-05-29,2014-10-06,8,20,113,1,1\r\n2767,gary karp,gary,karp,2014-07-07,Male,1948-05-17,67,Greater than 45,Caucasian,0,1,0,0,2,-4,2014-07-03 01:49:24,2014-07-03 08:41:51,14010207MM10A,2014-07-02,,5,M,Refuse Submit Blood/Breath Test,1,14010207MM10A,(M2),,2014-07-16,Driving Under The Influence,,,,0,,,,,Risk of Recidivism,1,Low,2014-07-07,Risk of Violence,1,Low,2014-07-07,2014-07-03,2014-07-03,2,0,9,1,1\r\n2770,glenika pratt,glenika,pratt,2013-02-01,Female,1993-04-21,22,Less than 25,Other,0,4,0,0,0,-1,2013-01-31 04:40:20,2013-02-02 12:53:20,13001571CF10A,2013-01-31,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-01,Risk of Violence,5,Medium,2013-02-01,2013-01-31,2013-02-02,0,1,1155,0,0\r\n2771,gregory oktavec,gregory,oktavec,2013-04-22,Male,1979-01-31,37,25 - 45,Caucasian,0,1,0,0,3,-1,2013-04-21 07:57:11,2013-04-22 03:57:11,13007680MM10A,2013-04-21,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2013-04-21,2013-04-22,3,0,1075,0,0\r\n2772,brandon mallard,brandon,mallard,2013-02-03,Male,1993-01-15,23,Less than 25,African-American,0,8,0,0,2,-1,2013-02-02 06:32:38,2013-02-04 09:12:27,13002393MM10A,2013-02-02,,1,M,Criminal Mischief,1,13029176TC10A,(M2),,2013-07-07,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,8,High,2013-02-03,Risk of Violence,8,High,2013-02-03,2013-02-02,2013-02-04,2,1,154,1,1\r\n2773,fred hayes,fred,hayes,2014-04-10,Female,1967-02-11,49,Greater than 45,African-American,0,7,0,0,14,-1,2014-04-09 01:43:23,2014-08-09 03:21:34,14006045MM10A,2014-04-09,,1,M,Battery,1,15000176CF10A,(F3),,2014-10-01,Fail to Report Change/Residence,,,,0,,,,,Risk of Recidivism,7,Medium,2014-04-10,Risk of Violence,3,Low,2014-04-10,2014-04-09,2014-08-09,14,121,174,1,1\r\n2775,terry garrish,terry,garrish,2013-04-14,Male,1983-10-28,32,25 - 45,Caucasian,0,7,0,0,9,0,2013-04-14 12:36:39,2013-04-19 10:22:27,13007176MM10A,2013-04-14,,0,M,Trespass Other Struct/Conve,1,13010880MM10A,(M2),,2013-04-29,Petit Theft,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-14,Risk of Violence,4,Low,2013-04-14,2013-04-14,2013-04-19,9,5,15,1,1\r\n2776,rico davila,rico,davila,2013-01-12,Male,1975-03-11,41,25 - 45,Caucasian,0,6,0,0,9,-1,2013-01-11 08:17:58,2013-02-13 05:54:09,13000697MM10A,2013-01-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-12,Risk of Violence,2,Low,2013-01-12,2013-01-11,2013-02-13,9,32,1175,0,0\r\n2777,joe sanders,joe,sanders,2013-04-01,Male,1990-09-01,25,25 - 45,African-American,0,3,0,0,1,0,2013-04-01 01:23:05,2013-04-01 02:19:10,13006198MM10A,2013-03-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-01,Risk of Violence,3,Low,2013-04-01,2013-04-01,2013-04-01,1,0,1096,0,0\r\n2779,melody odonnell,melody,odonnell,2013-08-23,Female,1959-04-15,57,Greater than 45,Caucasian,0,1,0,0,3,,,,12006701CF10A,2012-05-05,,475,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-23,Risk of Violence,1,Low,2013-08-23,,,3,0,952,0,0\r\n2780,jaime londono,jaime,londono,2013-12-10,Male,1957-08-18,58,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-09 10:34:54,2013-12-10 01:12:56,13022803MM10A,2013-12-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-10,Risk of Violence,1,Low,2013-12-10,2013-12-09,2013-12-10,0,0,843,0,0\r\n2782,charles hill,charles,hill,2014-08-20,Male,1971-11-13,44,25 - 45,African-American,2,9,0,0,19,-17,2014-08-03 01:39:31,2014-08-20 11:15:38,14011744MM10A,2014-08-03,,17,M,Battery,1,15002584CF10A,(M1),57,2015-01-07,Aggravated Battery / Pregnant,2015-03-05,2015-05-11,,1,15002584CF10A,(M1),2015-01-07,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2014-08-20,Risk of Violence,6,Medium,2014-08-20,2015-03-05,2015-05-11,19,0,140,1,1\r\n2786,corey mathis,corey,mathis,2013-05-27,Male,1987-11-21,28,25 - 45,African-American,0,4,0,0,1,0,2013-05-27 12:20:56,2013-06-12 10:12:20,13007555CF10A,2013-05-26,,1,F,Aggrav Stalking After Injunctn,1,15007291MM10A,(M1),0,2015-07-08,Possess Cannabis/20 Grams Or Less,2015-07-08,2015-07-09,,0,,,,,Risk of Recidivism,4,Low,2013-05-27,Risk of Violence,5,Medium,2013-05-27,2015-07-08,2015-07-09,1,16,772,1,0\r\n2787,amy royer,amy,royer,2013-11-08,Female,1976-09-30,39,25 - 45,African-American,0,5,0,0,0,-1,2013-11-07 03:39:53,2013-11-09 07:36:17,13015521CF10A,2013-11-07,,1,F,Grand Theft in the 3rd Degree,1,14000319MM30A,(M2),,2014-02-06,Petit Theft,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-08,Risk of Violence,2,Low,2013-11-08,2013-11-07,2013-11-09,0,1,90,1,1\r\n2788,glenn miller,glenn,miller,2013-12-25,Male,1962-03-11,54,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-24 11:18:23,2013-12-31 04:10:32,13017736CF10A,2013-12-24,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-25,Risk of Violence,1,Low,2013-12-25,2013-12-24,2013-12-31,0,6,828,0,0\r\n2789,justin herrera,justin,herrera,2013-04-14,Male,1994-08-28,21,Less than 25,Hispanic,0,4,0,0,0,657,2015-01-31 08:35:49,2015-03-25 08:41:02,13007134MM10A,2013-04-13,,1,M,Battery,1,15001448CF10A,(M1),0,2015-01-31,Criminal Mischief>$200<$1000,2015-01-31,2015-03-25,,1,15002607MM10A,(M1),2015-01-31,Battery,Risk of Recidivism,4,Low,2013-04-14,Risk of Violence,6,Medium,2013-04-14,2015-01-31,2015-03-25,0,0,657,1,1\r\n2790,francia omana,francia,omana,2013-11-13,Male,1972-09-10,43,25 - 45,Caucasian,0,4,0,0,0,-1,2013-11-12 09:31:37,2013-11-13 03:53:01,13021320MM10A,2013-11-12,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-13,Risk of Violence,1,Low,2013-11-13,2013-11-12,2013-11-13,0,0,870,0,0\r\n2792,johny dabrezil,johny,dabrezil,2013-09-05,Male,1984-12-12,31,25 - 45,African-American,0,10,0,0,5,0,2013-09-05 01:39:00,2013-09-05 07:44:12,13016952MM10A,2013-09-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-05,Risk of Violence,10,High,2013-09-05,2013-09-05,2013-09-05,5,0,939,0,0\r\n2793,jerome shaw,jerome,shaw,2013-02-03,Male,1985-05-02,30,25 - 45,African-American,4,10,1,0,11,0,2013-02-03 02:23:20,2013-05-31 05:51:07,13001696CF10A,2013-02-03,,0,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-03,Risk of Violence,9,High,2013-02-03,2013-02-03,2013-05-31,11,117,1153,0,0\r\n2794,adalberto crespo,adalberto,crespo,2013-10-14,Male,1988-09-17,27,25 - 45,Caucasian,0,4,1,3,4,-1,2013-10-13 03:17:05,2013-10-14 05:58:23,13019395MM10A,2013-10-13,,1,M,Battery,1,14003268MM20A,(M1),,2014-11-05,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-14,Risk of Violence,6,Medium,2013-10-14,2013-10-13,2013-10-14,4,0,387,1,1\r\n2797,jason mcdonald,jason,mcdonald,2013-12-30,Male,1987-10-18,28,25 - 45,African-American,0,2,0,0,0,-1,2013-12-29 05:26:13,2013-12-30 08:22:11,13023963MM10A,2013-12-29,,1,M,Battery,1,15001319MU10A,(M1),0,2015-01-09,Driving Under The Influence,2015-01-09,2015-01-09,,0,,,,,Risk of Recidivism,2,Low,2013-12-30,Risk of Violence,2,Low,2013-12-30,2015-01-09,2015-01-09,0,0,375,0,1\r\n2800,emory harden,emory,harden,2013-04-15,Male,1991-10-04,24,Less than 25,African-American,0,7,0,0,0,-1,2013-04-14 10:11:00,2013-04-15 03:52:07,13007185MM10A,2013-04-14,,1,M,Possess Drug Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-15,Risk of Violence,4,Low,2013-04-15,2013-04-14,2013-04-15,0,0,1082,0,0\r\n2802,nelson zuniga,nelson,zuniga,2014-02-13,Male,1972-05-16,43,25 - 45,Caucasian,0,1,0,0,0,0,2014-02-13 04:10:00,2014-02-13 12:52:46,14005820MU10A,2014-02-13,,0,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-13,Risk of Violence,1,Low,2014-02-13,2014-02-13,2014-02-13,0,0,778,0,0\r\n2804,marlon wilks,marlon,wilks,2014-02-26,Male,1972-02-07,44,25 - 45,African-American,0,4,0,0,10,-7,2014-02-19 05:23:30,2014-02-24 08:43:38,14006512MU10A,2014-02-19,,7,M,Driving Under The Influence,1,15005973CF10A,(F3),0,2015-05-07,Poss Pyrrolidinovalerophenone,2015-05-07,2015-05-28,,0,,,,,Risk of Recidivism,4,Low,2014-02-26,Risk of Violence,2,Low,2014-02-26,2015-05-07,2015-05-28,10,0,435,1,1\r\n2805,tommie johnson,tommie,johnson,2013-08-23,Male,1964-09-13,51,Greater than 45,African-American,0,7,0,0,4,-44,2013-07-10 02:17:57,2013-08-09 08:53:49,13005432CF10A,,2013-07-09,45,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-23,Risk of Violence,6,Medium,2013-08-23,2013-07-10,2013-08-09,4,0,952,0,0\r\n2807,jeffrey mateo,jeffrey,mateo,2013-03-27,Male,1991-08-30,24,Less than 25,Hispanic,0,10,0,0,11,-15,2013-03-12 11:19:44,2013-03-13 01:53:48,13003630CF10A,2013-03-12,,15,F,Solicit Deliver Cocaine,1,13016634MM10A,(M1),0,2013-08-30,Battery,2013-08-30,2013-11-16,,1,13016634MM10A,(M1),2013-08-30,Battery,Risk of Recidivism,10,High,2013-03-27,Risk of Violence,8,High,2013-03-27,2013-08-30,2013-11-16,11,0,156,1,1\r\n2808,jose saborit,jose,saborit,2013-01-22,Male,1984-07-19,31,25 - 45,African-American,0,3,0,0,1,309,2013-11-27 09:45:07,2014-07-15 06:07:00,12018175CF10A,2012-12-13,,40,F,Attempt Burglary (Struct),1,16001489MM40A,(M1),,2016-02-26,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-22,Risk of Violence,2,Low,2013-01-22,2013-11-27,2014-07-15,1,0,309,0,0\r\n2809,kensley petit-frere,kensley,petit-frere,2013-01-10,Male,1992-08-16,23,Less than 25,African-American,0,3,0,0,0,-1,2013-01-09 05:06:14,2013-01-11 03:18:41,13000399CF10A,2013-01-09,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-10,Risk of Violence,4,Low,2013-01-10,2013-01-09,2013-01-11,0,1,1177,0,0\r\n2813,franklin green,franklin,green,2014-06-11,Male,1989-11-01,26,25 - 45,African-American,2,10,1,0,8,-85,2014-03-18 08:15:36,2014-06-11 01:10:37,14004699MM10A,2014-03-18,,85,M,Prowling/Loitering,1,15001760CF10A,(F3),0,2015-02-07,Possession Of Alprazolam,2015-02-07,2015-02-07,,1,15010569CF10A,(F3),2015-08-16,Battery on Law Enforc Officer,Risk of Recidivism,10,High,2014-06-11,Risk of Violence,7,Medium,2014-06-11,2015-02-07,2015-02-07,8,0,241,0,1\r\n2814,jeremy pulido,jeremy,pulido,2014-10-16,Male,1980-03-05,36,25 - 45,Caucasian,0,3,0,0,5,-1,2014-10-15 12:03:35,2014-10-16 02:21:07,14015093MM10A,2014-10-15,,1,M,Viol Injunct Domestic Violence,1,14014444CF10A,(M1),1,2014-10-26,Possess Drug Paraphernalia,2014-10-27,2014-11-17,,0,,,,,Risk of Recidivism,3,Low,2014-10-16,Risk of Violence,2,Low,2014-10-16,2014-10-27,2014-11-17,5,0,10,1,1\r\n2817,jonathan waskiw,jonathan,waskiw,2014-01-02,Male,1988-04-23,27,25 - 45,Caucasian,0,9,0,0,1,-1,2014-01-01 04:41:12,2014-01-02 08:10:32,13012717CF10A,,2014-01-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-02,Risk of Violence,7,Medium,2014-01-02,2014-01-01,2014-01-02,1,0,820,0,0\r\n2819,michael black,michael,black,2013-03-02,Male,1991-09-13,24,Less than 25,African-American,0,10,0,0,0,0,2013-03-02 02:07:15,2013-03-03 09:02:05,13003162CF10A,2013-03-01,,1,F,Felon in Pos of Firearm or Amm,1,14001268MM10A,(M2),0,2014-01-22,Trespass Struct/Conveyance,2014-01-22,2014-01-23,,0,,,,,Risk of Recidivism,10,High,2013-03-02,Risk of Violence,9,High,2013-03-02,2013-05-14,2013-05-18,0,1,73,0,1\r\n2820,eric tessler,eric,tessler,2013-04-07,Male,1950-01-16,66,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-06 11:23:02,2013-04-07 01:22:00,13006627MM10A,2013-04-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-07,Risk of Violence,1,Low,2013-04-07,2013-04-06,2013-04-07,0,0,1090,0,0\r\n2821,courtney robichaud,courtney,robichaud,2013-11-14,Female,1979-04-24,36,25 - 45,Caucasian,0,4,0,1,3,0,2013-11-14 04:58:52,2013-12-09 09:49:51,13015818CF10A,2013-11-14,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-12-16,2013-12-18,3,25,32,0,0\r\n2824,luis leyba,luis,leyba,2014-11-09,Male,1962-06-12,53,Greater than 45,Hispanic,0,8,0,0,9,-1,2014-11-08 02:17:47,2015-03-18 10:15:00,14015004CF10A,2014-11-08,,1,F,Felony Petit Theft,1,15004532MM10A,(M2),0,2015-03-24,Petit Theft,2015-03-24,2015-07-01,,0,,,,,Risk of Recidivism,8,High,2014-11-09,Risk of Violence,5,Medium,2014-11-09,2015-03-24,2015-07-01,9,129,135,1,1\r\n2825,dylan fugett,dylan,fugett,2013-02-22,Male,1992-08-08,23,Less than 25,Caucasian,0,3,0,0,1,0,2013-02-22 01:47:49,2013-02-22 09:23:57,13002693CF10A,2013-02-22,,0,F,Possession of Cocaine,1,13006951MM10A,(M1),,2013-03-01,Possess Drug Paraphernalia,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-22,Risk of Violence,4,Low,2013-02-22,2015-05-15,2015-06-29,1,0,7,1,1\r\n2828,diamond adamson,diamond,adamson,2014-10-29,Female,1993-07-17,22,Less than 25,African-American,0,7,0,0,0,0,2014-10-29 01:41:40,2014-10-29 07:55:17,14015675MM10A,2014-10-28,,1,M,Battery,1,14100640TC30A,(M2),,2014-11-11,Operating W/O Valid License,,,,1,15003583MM10A,(M1),2015-03-26,Battery,Risk of Recidivism,7,Medium,2014-10-29,Risk of Violence,5,Medium,2014-10-29,2015-03-26,2015-03-29,0,0,13,1,1\r\n2829,kelvin morales,kelvin,morales,2013-10-06,Male,1990-12-16,25,25 - 45,Hispanic,0,3,0,1,1,-1,2013-10-05 07:50:24,2013-10-06 07:37:01,13013986CF10A,2013-10-05,,1,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-06,Risk of Violence,3,Low,2013-10-06,2013-10-05,2013-10-06,1,0,908,0,0\r\n2830,roosevelt major,roosevelt,major,2013-02-14,Male,1959-09-04,56,Greater than 45,African-American,0,1,0,0,4,-1,2013-02-13 04:09:26,2013-02-15 05:28:41,13002267CF10A,2013-02-13,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-14,Risk of Violence,1,Low,2013-02-14,2013-02-13,2013-02-15,4,1,1142,0,0\r\n2834,jonathan harjo,jonathan,harjo,2013-11-05,Male,1987-03-19,29,25 - 45,Native American,0,2,0,0,1,37,2013-12-12 07:24:22,2014-01-14 08:20:31,13006333CF10A,2013-05-02,,187,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-05,Risk of Violence,2,Low,2013-11-05,2013-12-12,2014-01-14,1,0,37,0,0\r\n2835,shawn fenner,shawn,fenner,2014-05-15,Male,1986-07-28,29,25 - 45,Caucasian,0,6,0,0,10,-365,2013-05-15 11:29:02,2013-05-20 08:17:53,14001537CF10A,,2014-02-10,94,F,arrest case no charge,1,15012860CF10A,(F3),,2015-08-21,False Ownership Info/Pawn Item,,,,0,,,,,Risk of Recidivism,6,Medium,2014-05-15,Risk of Violence,3,Low,2014-05-15,2013-05-15,2013-05-20,10,0,463,1,1\r\n2836,xiao ling,xiao,ling,2014-08-02,Male,1964-10-06,51,Greater than 45,Asian,0,1,0,0,1,-1,2014-08-01 05:01:09,2014-08-02 09:04:56,14010413CF10A,,2014-08-01,1,F,arrest case no charge,1,16001147MM40A,(M2),,2016-02-26,No Wholesale/ Retail Dealer Lic,,,,0,,,,,Risk of Recidivism,1,Low,2014-08-02,Risk of Violence,1,Low,2014-08-02,2014-08-01,2014-08-02,1,0,573,1,1\r\n2837,naomi werman,naomi,werman,2014-02-19,Female,1958-02-24,58,Greater than 45,African-American,0,1,0,0,3,-18,2014-02-01 02:52:11,2014-02-19 11:14:31,13005769MM10A,,2014-02-18,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-19,Risk of Violence,1,Low,2014-02-19,2014-02-01,2014-02-19,3,0,772,0,0\r\n2841,clayton bigger,clayton,bigger,2013-05-02,Male,1991-11-10,24,Less than 25,Caucasian,0,5,1,2,3,0,2013-05-02 01:33:22,2013-05-02 04:51:19,13008474MM10A,2013-05-02,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-02,Risk of Violence,6,Medium,2013-05-02,2013-05-02,2013-05-02,3,0,1065,0,0\r\n2842,demetrius coleman,demetrius,coleman,2013-04-12,Male,1993-11-09,22,Less than 25,African-American,0,3,0,0,0,-1,2013-04-11 05:01:46,2013-06-21 05:27:12,13005241CF10A,2013-04-11,,1,F,Burglary Dwelling Armed,1,14014862MM10A,(M1),0,2014-10-10,Battery,2014-10-10,2015-01-15,,1,14014862MM10A,(M1),2014-10-10,Battery,Risk of Recidivism,3,Low,2013-04-12,Risk of Violence,6,Medium,2013-04-12,2014-10-10,2015-01-15,0,70,546,1,1\r\n2843,william cody,william,cody,2014-01-13,Male,1976-11-11,39,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-12 07:47:58,2014-01-13 02:23:05,14000575MM10A,2014-01-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-01-12,2014-01-13,0,0,809,0,0\r\n2844,cesar lopez,cesar,lopez,2014-12-12,Male,1996-03-21,20,Less than 25,Hispanic,0,10,0,0,3,-1,2014-12-11 09:23:32,2015-01-22 11:56:41,14016473CF10A,2014-12-11,,1,F,Pos Cannabis W/Intent Sel/Del,1,15015704CF10A,(F3),,2015-12-07,Pos Cannabis W/Intent Sel/Del,,,,0,,,,,Risk of Recidivism,10,High,2014-12-12,Risk of Violence,10,High,2014-12-12,2015-04-01,2015-04-03,3,41,110,0,1\r\n2845,earl heath,earl,heath,2014-02-25,Male,1969-08-04,46,Greater than 45,Caucasian,0,7,0,0,10,-1,2014-02-24 03:50:34,2014-05-08 06:32:26,13014578CF10A,,2014-02-24,1,F,arrest case no charge,1,15011605MM10A,(M2),0,2015-11-04,Ped Obstruct Traf/No Permit Sol,2015-11-04,2015-11-09,,0,,,,,Risk of Recidivism,7,Medium,2014-02-25,Risk of Violence,5,Medium,2014-02-25,2015-11-04,2015-11-09,10,288,617,1,1\r\n2846,jimmy iakovakis,jimmy,iakovakis,2013-08-19,Male,1977-10-31,38,25 - 45,Caucasian,0,1,0,0,1,-27,2013-07-23 11:40:27,2013-07-24 07:27:47,13010314CF10A,2013-07-23,,27,F,Possession Of Methamphetamine,1,14011170MM10A,(M1),0,2014-07-22,Criminal Mischief>$200<$1000,2014-07-22,2014-08-05,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-10-28,2013-11-11,1,0,70,0,1\r\n2848,garrick crawford,garrick,crawford,2013-12-15,Male,1992-11-04,23,Less than 25,Caucasian,0,8,0,0,0,0,2013-12-15 05:17:34,2013-12-18 06:00:00,13023226MM10A,2013-12-15,,0,M,Viol Pretrial Release Dom Viol,1,14002300CF10A,(F2),0,2014-02-18,Robbery / No Weapon,2014-02-18,2014-03-21,,1,14002300CF10A,(F2),2014-02-18,Robbery / No Weapon,Risk of Recidivism,8,High,2013-12-15,Risk of Violence,9,High,2013-12-15,2014-02-18,2014-03-21,0,3,65,1,1\r\n2851,yves exilus,yves,exilus,2014-02-02,Male,1977-01-01,39,25 - 45,Other,0,5,0,0,6,-1,2014-02-01 07:53:55,2014-02-27 09:58:59,14001446CF10A,2014-02-01,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-02,Risk of Violence,1,Low,2014-02-02,2014-02-01,2014-02-27,6,25,789,0,0\r\n2852,jeffrey joseph,jeffrey,joseph,2013-09-19,Male,1990-09-25,25,25 - 45,African-American,0,8,0,0,0,0,2013-09-19 04:53:03,2013-09-21 01:36:58,13013235CF10A,2013-09-19,,0,F,Felony Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-19,Risk of Violence,6,Medium,2013-09-19,2014-05-16,2014-07-31,0,2,239,0,0\r\n2854,cedric james,cedric,james,2014-03-16,Male,1984-11-01,31,25 - 45,African-American,0,9,0,0,19,-1,2014-03-15 06:33:25,2014-03-16 02:03:17,14003673CF10A,2014-03-15,,1,F,Driving While License Revoked,1,14015560TC10A,(M2),0,2014-04-15,Operating W/O Valid License,2014-04-15,2014-04-15,,0,,,,,Risk of Recidivism,9,High,2014-03-16,Risk of Violence,9,High,2014-03-16,2014-04-15,2014-04-15,19,0,30,0,1\r\n2855,brittany burrows,brittany,burrows,2014-11-22,Female,1991-02-16,25,25 - 45,African-American,0,3,0,0,1,-1,2014-11-21 11:11:30,2014-11-22 08:51:38,14016640MM10A,2014-11-21,,1,M,Battery,1,16000738MM40A,(M1),,2016-01-26,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2014-11-22,Risk of Violence,3,Low,2014-11-22,2014-11-21,2014-11-22,1,0,430,1,1\r\n2856,marcus harvey,marcus,harvey,2013-08-22,Male,1990-03-17,26,25 - 45,African-American,0,6,0,0,6,-1,2013-08-21 12:18:44,2013-08-23 04:24:07,13011858CF10A,,2013-08-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-22,Risk of Violence,6,Medium,2013-08-22,2013-08-21,2013-08-23,6,1,953,0,0\r\n2857,shivaughn barrett,shivaughn,barrett,2013-01-08,Male,1990-09-07,25,25 - 45,African-American,0,9,0,1,2,-1,2013-01-07 07:36:11,2013-10-08 11:00:00,13000269CF10A,2013-01-07,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-08,Risk of Violence,8,High,2013-01-08,2014-06-06,2014-07-10,2,273,514,0,0\r\n2859,allen vlado,allen,vlado,2014-02-06,Male,1979-03-03,37,25 - 45,Caucasian,0,8,0,0,11,0,2014-02-06 03:06:50,2014-02-07 03:35:47,14001725CF10A,2014-02-06,,0,F,Driving While License Revoked,1,14051468TC40A,(M2),,2014-07-17,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2014-02-06,Risk of Violence,2,Low,2014-02-06,2014-02-06,2014-02-07,11,1,161,1,1\r\n2860,ricardo sinclair,ricardo,sinclair,2013-12-09,Male,1979-12-26,36,25 - 45,African-American,0,1,0,0,0,-3,2013-12-06 05:42:25,2013-12-07 02:22:24,13016913CF10A,2013-12-06,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,1,Low,2013-12-09,2014-11-19,2014-11-26,0,0,345,0,0\r\n2862,lester lueyoung,lester,lueyoung,2013-03-20,Male,1990-01-25,26,25 - 45,African-American,0,6,0,0,1,0,2013-03-20 05:00:24,2013-03-21 02:39:41,13004044CF10A,2013-03-19,,1,F,Pos Cannabis W/Intent Sel/Del,1,13010840CF10A,(M2),0,2013-08-04,Unlaw LicTag/Sticker Attach,2013-08-04,2013-09-23,,0,,,,,Risk of Recidivism,6,Medium,2013-03-20,Risk of Violence,7,Medium,2013-03-20,2013-08-04,2013-09-23,1,1,137,1,1\r\n2863,giovanni shaw,giovanni,shaw,2014-11-12,Male,1994-05-07,21,Less than 25,Other,0,2,2,0,3,-1,2014-11-11 09:06:05,2014-11-12 01:13:40,14015144CF10A,2014-11-11,,1,F,Grand Theft in the 3rd Degree,1,14015690CF10A,(F3),0,2014-11-21,Grand Theft in the 3rd Degree,2014-11-21,2014-11-21,,0,,,,,Risk of Recidivism,2,Low,2014-11-12,Risk of Violence,4,Low,2014-11-12,2014-11-21,2014-11-21,3,0,9,0,1\r\n2864,benjamin sapp,benjamin,sapp,2013-10-02,Male,1981-01-20,35,25 - 45,African-American,0,4,0,0,7,-23,2013-09-09 02:47:53,2013-09-09 07:07:40,13012753CF10A,2013-09-08,,24,F,Resist Officer w/Violence,1,14016290MM10A,(M1),0,2014-11-13,Battery,2014-11-13,2014-11-14,,1,14016290MM10A,(M1),2014-11-13,Battery,Risk of Recidivism,4,Low,2013-10-02,Risk of Violence,2,Low,2013-10-02,2014-11-13,2014-11-14,7,0,407,1,1\r\n2865,jovaughn walker,jovaughn,walker,2013-08-21,Male,1994-02-20,22,Less than 25,African-American,0,4,0,0,2,-1,2013-08-20 11:12:08,2013-08-22 07:39:05,13011708CF10A,2013-08-20,,1,F,Crim Use of Personal ID Info,1,14020971TC10A,(M2),0,2014-06-05,Unlaw LicTag/Sticker Attach,2014-06-05,2014-06-06,,1,16002969CF10A,(F3),2016-02-07,Aggravated Assault,Risk of Recidivism,4,Low,2013-08-21,Risk of Violence,6,Medium,2013-08-21,2014-06-05,2014-06-06,2,1,288,1,1\r\n2867,antonio monero,antonio,monero,2013-05-11,Male,1990-08-23,25,25 - 45,Caucasian,0,2,0,0,0,0,2013-05-11 01:13:34,2013-05-11 06:35:21,13006746CF10A,2013-05-10,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-11,Risk of Violence,3,Low,2013-05-11,2013-05-11,2013-05-11,0,0,1056,0,0\r\n2868,phillip rasskazov,phillip,rasskazov,2013-01-12,Male,1991-08-24,24,Less than 25,Caucasian,0,7,0,0,0,,,,13000699MM10A,2013-01-11,,1,M,Crim Attempt/Solicit/Consp,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-12,Risk of Violence,4,Low,2013-01-12,,,0,0,1175,0,0\r\n2869,domingo alonzo,domingo,alonzo,2013-11-12,Male,1979-10-25,36,25 - 45,Hispanic,0,1,0,0,0,-7,2013-11-05 07:01:36,2013-11-06 08:05:18,13020898MM10A,2013-11-05,,7,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-12,Risk of Violence,1,Low,2013-11-12,2013-11-05,2013-11-06,0,0,871,0,0\r\n2870,makeel stevens,makeel,stevens,2013-01-15,Male,1991-12-30,24,Less than 25,African-American,0,7,0,0,2,-1,2013-01-14 11:05:52,2013-01-26 12:04:24,13002145TC10A,2013-01-14,,1,M,Susp Drivers Lic 1st Offense,1,13023353MM10A,(M1),0,2013-11-25,Possess Cannabis/20 Grams Or Less,2013-11-25,2013-11-26,,1,14007409CF10A,(F3),2014-05-28,Aggravated Assault w/Firearm,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,7,Medium,2013-01-15,2013-01-30,2013-01-31,2,11,15,0,1\r\n2871,dewayne luke,dewayne,luke,2013-03-15,Male,1994-10-20,21,Less than 25,African-American,0,9,0,1,0,-1,2013-03-14 12:34:24,2013-03-15 07:44:17,13003787CF10A,2013-03-14,,1,F,Grand Theft in the 3rd Degree,1,15000335CF10A,(F2),,2014-10-15,Burglary Dwelling Occupied,,,,0,,,,,Risk of Recidivism,9,High,2013-03-15,Risk of Violence,9,High,2013-03-15,2015-11-03,2020-01-01,0,0,579,1,1\r\n2873,keith sayers,keith,sayers,2013-11-22,Male,1983-06-21,32,25 - 45,Caucasian,2,9,0,1,15,-1,2013-11-21 07:42:06,2014-01-31 05:11:17,13016157CF10A,2013-11-21,,1,F,Possession of Cocaine,1,16000380MM20A,(M1),,2016-01-19,Trespass Struct/Convey Occupy,,,,0,,,,,Risk of Recidivism,9,High,2013-11-22,Risk of Violence,6,Medium,2013-11-22,2014-02-26,2014-05-20,15,70,96,0,1\r\n2874,gorvens sene,gorvens,sene,2013-05-12,Male,1983-02-23,33,25 - 45,African-American,0,2,0,0,2,0,2013-05-12 12:11:31,2013-05-12 07:36:13,13009126MM10A,2013-05-11,,1,M,Battery,1,14038308TC30A,(M2),,2014-04-24,Driving while DL Susp / Financial Resp,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-12,Risk of Violence,2,Low,2013-05-12,2013-05-12,2013-05-12,2,0,347,1,1\r\n2875,benson lorfils,benson,lorfils,2014-02-04,Male,1982-08-06,33,25 - 45,African-American,0,9,0,0,10,0,2014-02-04 02:43:48,2014-02-06 09:29:26,14001587CF10A,2014-02-04,,0,F,Possession of Cocaine,1,14050546TC20A,(M2),,2014-07-14,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2014-02-04,Risk of Violence,6,Medium,2014-02-04,2014-02-04,2014-02-06,10,2,160,1,1\r\n2876,jazzie johnson,jazzie,johnson,2014-02-20,Female,1992-10-15,23,Less than 25,African-American,0,8,0,0,4,-56,2013-12-26 01:41:36,2014-02-07 07:21:00,13017783CF10A,,2014-01-31,20,M,arrest case no charge,1,15007832CF10A,(F3),0,2015-06-17,Grand Theft (Motor Vehicle),2015-06-17,2015-07-02,,0,,,,,Risk of Recidivism,8,High,2014-02-20,Risk of Violence,7,Medium,2014-02-20,2015-06-17,2015-07-02,4,0,482,1,1\r\n2879,kyle sharp,kyle,sharp,2013-07-08,Male,1986-12-22,29,25 - 45,Caucasian,0,3,0,0,0,-2,2013-07-06 01:44:27,2013-07-07 01:34:55,13012829MM10A,2013-07-05,,3,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-08,Risk of Violence,1,Low,2013-07-08,2013-07-06,2013-07-07,0,0,998,0,0\r\n2880,chad hohle,chad,hohle,2013-09-16,Male,1965-05-14,50,Greater than 45,Caucasian,0,3,0,0,8,-1,2013-09-15 11:12:24,2014-03-07 03:16:00,13013027CF10A,2013-09-15,,1,F,DWI w/Inj Susp Lic / Habit Off,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-16,Risk of Violence,2,Low,2013-09-16,2013-09-15,2014-03-07,8,172,928,0,0\r\n2882,jason cuccio,jason,cuccio,2013-01-10,Male,1983-09-21,32,25 - 45,Caucasian,0,5,0,0,5,272,2013-10-09 10:58:30,2013-10-16 01:45:50,09018641CF10A,,2012-12-26,15,F,arrest case no charge,1,13019187MM10A,(M1),0,2013-10-09,Possess Drug Paraphernalia,2013-10-09,2013-10-16,,0,,,,,Risk of Recidivism,5,Medium,2013-01-10,Risk of Violence,3,Low,2013-01-10,2013-10-09,2013-10-16,5,0,272,1,1\r\n2883,rohan anderson,rohan,anderson,2014-08-01,Male,1982-07-28,33,25 - 45,African-American,0,8,0,0,14,-1,2014-07-31 07:35:55,2014-08-02 09:05:07,14010451CF10A,2014-07-31,,1,F,Driving While License Revoked,1,15000900MM10A,(M2),0,2015-01-23,Trespass Struct/Conveyance,2015-01-23,2015-01-23,,0,,,,,Risk of Recidivism,8,High,2014-08-01,Risk of Violence,5,Medium,2014-08-01,2015-01-08,2015-01-16,14,1,160,0,1\r\n2885,sherman bynes,sherman,bynes,2013-10-17,Male,1978-10-16,37,25 - 45,African-American,0,8,1,0,13,-1,2013-10-16 07:57:16,2013-10-17 07:41:29,13014481CF10A,2013-10-16,,1,F,Agg Battery Grt/Bod/Harm,1,14005115MM10A,(M1),,2014-02-26,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2013-10-17,Risk of Violence,9,High,2013-10-17,2014-03-30,2014-03-31,13,0,132,1,1\r\n2886,craig whitmour,craig,whitmour,2014-05-13,Male,1988-11-23,27,25 - 45,African-American,0,7,0,0,9,-1,2014-05-12 01:24:43,2014-06-05 09:17:42,14006616CF10A,2014-05-12,,1,F,Burglary Unoccupied Dwelling,1,15005294CF10A,(F3),0,2015-04-22,Possession of Cannabis,2015-04-22,2015-04-24,,0,,,,,Risk of Recidivism,7,Medium,2014-05-13,Risk of Violence,5,Medium,2014-05-13,2015-04-22,2015-04-24,9,23,344,1,1\r\n2887,antonio lightbourn,antonio,lightbourn,2013-04-29,Male,1988-07-19,27,25 - 45,African-American,0,1,0,0,0,-1,2013-04-28 08:51:15,2013-04-29 12:45:59,13008159MM10A,2013-04-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,2,Low,2013-04-29,2013-04-28,2013-04-29,0,0,1068,0,0\r\n2890,sandra thomas,sandra,thomas,2014-03-10,Female,1964-02-24,52,Greater than 45,African-American,0,7,0,0,21,123,2014-07-11 12:43:50,2014-07-31 11:35:41,13011467CF10A,2013-08-15,,207,F,Felony Petit Theft,1,14012625MM10A,(M1),0,2014-08-21,Petit Theft $100- $300,2014-08-21,2014-09-30,,0,,,,,Risk of Recidivism,7,Medium,2014-03-10,Risk of Violence,1,Low,2014-03-10,2014-07-11,2014-07-31,21,0,123,0,1\r\n2891,gerald pena,gerald,pena,2013-02-16,Male,1994-04-20,21,Less than 25,Hispanic,0,5,0,0,1,-1,2013-02-15 11:10:37,2013-02-16 01:18:11,13003330MM10A,2013-02-15,,1,M,Possess Cannabis/20 Grams Or Less,1,14015184MO10A,(MO3),0,2014-10-18,Loitering/Prowling,2014-10-18,2014-10-19,,1,15006218MM10A,(M1),2015-06-07,Battery,Risk of Recidivism,5,Medium,2013-02-16,Risk of Violence,5,Medium,2013-02-16,2014-10-18,2014-10-19,1,0,609,1,1\r\n2892,edward tuck,edward,tuck,2013-05-19,Male,1958-03-18,58,Greater than 45,African-American,0,1,0,0,1,-1,2013-05-18 08:22:32,2013-07-18 08:18:26,12001737CF10A,,2013-05-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-19,Risk of Violence,1,Low,2013-05-19,2013-05-18,2013-07-18,1,60,1048,0,0\r\n2893,branden tyler,branden,tyler,2013-03-12,Male,1989-01-22,27,25 - 45,African-American,0,8,0,0,4,-1,2013-03-11 08:04:33,2013-04-13 08:56:18,13003596CF10A,2013-03-11,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-12,Risk of Violence,5,Medium,2013-03-12,2013-03-11,2013-04-13,4,32,1116,0,0\r\n2896,william flood,william,flood,2014-06-15,Male,1988-01-19,28,25 - 45,African-American,0,4,0,0,5,302,2015-04-13 05:53:58,2015-05-11 11:31:24,14008249CF10A,2014-06-14,,1,F,Aggravated Assault W/o Firearm,1,14092364TC30A,(M2),156,2014-11-08,Operating W/O Valid License,2015-04-13,2015-05-11,,0,,,,,Risk of Recidivism,4,Low,2014-06-15,Risk of Violence,3,Low,2014-06-15,2015-07-06,2015-11-11,5,0,146,1,1\r\n2897,timothy mccann,timothy,mccann,2013-10-01,Male,1987-05-07,28,25 - 45,Caucasian,0,7,0,0,1,-1,2013-09-30 06:15:51,2013-10-31 02:34:18,13013705CF10A,2013-09-30,,1,F,Possession of Cocaine,1,13022834MM10A,(M1),0,2013-12-10,Unlaw Use False Name/Identity,2013-12-10,2014-01-03,,0,,,,,Risk of Recidivism,7,Medium,2013-10-01,Risk of Violence,4,Low,2013-10-01,2013-12-10,2014-01-03,1,30,70,1,1\r\n2898,melissa mccaffery,melissa,mccaffery,2013-06-05,Female,1984-06-17,31,25 - 45,Caucasian,0,3,0,0,0,-5,2013-05-31 11:07:01,2013-06-01 08:46:14,13010493MM10A,2013-05-31,,5,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-05,Risk of Violence,2,Low,2013-06-05,2013-05-31,2013-06-01,0,0,1031,0,0\r\n2899,alan gray,alan,gray,2013-08-13,Male,1986-02-25,30,25 - 45,Caucasian,0,9,1,0,11,31,2013-09-13 07:21:40,2013-10-23 10:03:00,11002011CF10A,,2013-06-05,69,F,arrest case no charge,1,13012935CF10A,(F2),0,2013-09-13,Burglary Dwelling Occupied,2013-09-13,2013-10-23,,0,,,,,Risk of Recidivism,9,High,2013-08-13,Risk of Violence,9,High,2013-08-13,2013-09-13,2013-10-23,11,0,31,1,1\r\n2900,franck dozil,franck,dozil,2013-01-21,Male,1991-11-24,24,Less than 25,African-American,0,7,0,0,3,-1,2013-01-20 11:28:26,2013-01-27 02:04:07,12014745MM10A,,2013-01-20,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-21,Risk of Violence,7,Medium,2013-01-21,2013-01-20,2013-01-27,3,6,1166,0,0\r\n2901,gregory campbell,gregory,campbell,2013-03-23,Male,1989-09-01,26,25 - 45,African-American,0,9,0,0,6,0,2013-03-23 03:31:15,2013-04-10 05:03:02,13004218CF10A,2013-03-23,,0,F,Possession of Cannabis,1,13005738CF10A,(M1),0,2013-04-22,Resist/Obstruct W/O Violence,2013-04-22,2014-08-28,,0,,,,,Risk of Recidivism,9,High,2013-03-23,Risk of Violence,9,High,2013-03-23,2013-04-22,2014-08-28,6,18,30,1,1\r\n2902,robert hecht,robert,hecht,2013-10-09,Male,1972-07-14,43,25 - 45,Caucasian,0,1,0,0,0,-1,2013-10-08 05:27:12,2013-10-09 08:26:03,13019124MM10A,2013-10-08,,1,M,DUI- Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-09,Risk of Violence,1,Low,2013-10-09,2013-10-08,2013-10-09,0,0,905,0,0\r\n2903,camill anthony,camill,anthony,2014-03-28,Male,1984-11-26,31,25 - 45,African-American,0,1,0,1,2,-43,2014-02-13 01:34:53,2014-03-28 09:53:37,14002075CF10A,2014-02-12,,44,F,Crim Use of Personal ID Info,1,15077871TC30A,(M2),,2015-11-21,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-28,Risk of Violence,3,Low,2014-03-28,2014-02-13,2014-03-28,2,0,603,1,1\r\n2907,devonte hughes,devonte,hughes,2013-10-07,Male,1993-07-23,22,Less than 25,African-American,0,6,0,0,3,0,2013-10-07 12:36:51,2013-10-09 05:46:12,13014007CF10A,2013-10-06,,1,F,Felony Batt(Great Bodily Harm),1,14015557CF10A,(F3),0,2014-11-18,Uttering a Forged Instrument,2014-11-18,2015-05-12,,0,,,,,Risk of Recidivism,6,Medium,2013-10-07,Risk of Violence,5,Medium,2013-10-07,2013-10-24,2013-11-15,3,2,17,0,1\r\n2908,breon barnes,breon,barnes,2013-08-27,Male,1993-01-11,23,Less than 25,African-American,0,5,0,0,0,-1,2013-08-26 03:02:44,2013-08-29 04:55:55,13012043CF10A,2013-08-26,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-27,Risk of Violence,6,Medium,2013-08-27,2014-08-29,2014-12-26,0,2,367,0,0\r\n2910,sergio garcia,sergio,garcia,2013-10-16,Male,1974-02-13,42,25 - 45,Caucasian,0,4,0,0,0,-1,2013-10-15 10:30:48,2013-10-16 08:02:49,13019573MM10A,2013-10-15,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-16,Risk of Violence,1,Low,2013-10-16,2013-10-15,2013-10-16,0,0,898,0,0\r\n2911,shrieff poole,shrieff,poole,2014-08-14,Male,1981-05-14,34,25 - 45,African-American,0,2,0,0,0,,,,08022579MO10A,,2009-10-05,1774,M,arrest case no charge,1,14003292MM20A,(M1),,2014-11-29,Battery,,,,1,14003292MM20A,(M1),2014-11-29,Battery,Risk of Recidivism,2,Low,2014-08-14,Risk of Violence,2,Low,2014-08-14,,,0,0,107,1,1\r\n2913,jeremiah jennings,jeremiah,jennings,2013-08-19,Male,1985-09-11,30,25 - 45,African-American,0,10,3,0,18,-1,2013-08-18 07:29:15,2013-09-05 04:16:47,13015618MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-19,Risk of Violence,8,High,2013-08-19,2015-03-03,2015-03-09,18,17,561,0,0\r\n2914,terell rogers,terell,rogers,2013-01-09,Male,1986-08-13,29,25 - 45,African-American,0,9,0,0,1,-1,2013-01-08 06:02:56,2013-10-25 08:31:58,13000322CF10A,2013-01-08,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-09,Risk of Violence,7,Medium,2013-01-09,2013-01-08,2013-10-25,1,289,1178,0,0\r\n2915,brent spoonemore,brent,spoonemore,2013-08-01,Male,1977-12-10,38,25 - 45,Caucasian,0,4,0,0,2,0,2013-08-01 12:26:41,2013-09-18 09:20:36,13010290CF10A,,2013-08-01,0,F,arrest case no charge,1,13014918CF10A,(M2),0,2013-10-25,Trespass Struct/Conveyance,2013-10-25,2013-12-13,,0,,,,,Risk of Recidivism,4,Low,2013-08-01,Risk of Violence,2,Low,2013-08-01,2013-10-25,2013-12-13,2,48,85,1,1\r\n2917,kevin walsh,kevin,walsh,2013-04-15,Male,1989-06-12,26,25 - 45,Caucasian,0,4,0,1,3,-4,2013-04-11 01:25:44,2013-04-13 08:03:53,13007508MM10A,2013-04-11,,4,M,Petit Theft $100- $300,1,16000938MM40A,(M2),,2016-02-03,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-15,Risk of Violence,4,Low,2013-04-15,2013-07-29,2013-10-22,3,0,105,0,0\r\n2918,jessica sanchez,jessica,sanchez,2013-08-08,Female,1990-05-04,25,25 - 45,Hispanic,0,6,0,0,4,-107,2013-04-23 03:57:21,2013-05-29 06:57:52,13005811CF10A,,2013-04-23,107,F,arrest case no charge,1,14004055MM10A,(M2),0,2014-03-09,Petit Theft,2014-03-09,2014-06-18,,0,,,,,Risk of Recidivism,6,Medium,2013-08-08,Risk of Violence,5,Medium,2013-08-08,2014-03-09,2014-06-18,4,0,213,1,1\r\n2922,anthony dees,anthony,dees,2013-02-22,Male,1965-02-19,51,Greater than 45,African-American,0,7,0,0,5,0,2013-02-22 12:10:28,2013-02-27 05:48:51,11046593TC10A,2011-09-18,,523,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-22,Risk of Violence,5,Medium,2013-02-22,2013-02-22,2013-02-27,5,5,1134,0,0\r\n2923,danue walker,danue,walker,2013-08-01,Male,1979-06-11,36,25 - 45,Other,0,1,0,0,0,0,2013-08-01 12:11:18,2013-08-01 08:31:19,13014475MM10A,2013-07-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2013-08-01,2013-08-01,0,0,974,0,0\r\n2925,tyrone reyna,tyrone,reyna,2013-11-06,Male,1953-06-25,62,Greater than 45,Hispanic,0,1,0,0,0,-2,2013-11-04 01:53:24,2013-11-05 07:23:37,13020735MM10A,2013-11-03,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-06,Risk of Violence,1,Low,2013-11-06,2013-11-04,2013-11-05,0,0,877,0,0\r\n2926,jerard palacious,jerard,palacious,2014-09-12,Male,1992-11-26,23,Less than 25,African-American,0,3,0,0,0,0,2014-09-12 02:05:28,2014-09-12 09:11:44,14012442CF10A,2014-09-11,,1,F,Grand Theft (Motor Vehicle),1,15001685CF10A,(M2),0,2015-02-05,Susp Drivers Lic 1st Offense,2015-02-05,2015-02-06,,0,,,,,Risk of Recidivism,3,Low,2014-09-12,Risk of Violence,4,Low,2014-09-12,2015-02-05,2015-02-06,0,0,146,1,1\r\n2927,richard samuels,richard,samuels,2013-04-09,Male,1982-01-02,34,25 - 45,African-American,0,5,0,0,7,-1,2013-04-08 09:28:22,2013-04-09 02:03:40,13001058CF10A,,2013-04-08,1,F,arrest case no charge,1,13018606MM10A,(M1),0,2013-09-30,Possess Cannabis/20 Grams Or Less,2013-09-30,2013-10-01,,0,,,,,Risk of Recidivism,5,Medium,2013-04-09,Risk of Violence,3,Low,2013-04-09,2013-09-30,2013-10-01,7,0,174,1,1\r\n2928,rashaad davis,rashaad,davis,2014-02-26,Male,1980-12-31,35,25 - 45,African-American,0,2,0,0,1,-1,2014-02-25 02:40:00,2014-02-26 09:09:55,10077131TC30A,2010-07-17,,1320,M,Violation License Restrictions,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-26,Risk of Violence,1,Low,2014-02-26,2014-02-25,2014-02-26,1,0,765,0,0\r\n2929,andres carmona,andres,carmona,2013-05-24,Male,1994-02-05,22,Less than 25,Caucasian,0,3,0,0,0,0,2013-05-24 04:43:42,2013-05-28 02:26:27,13007417CF10A,2013-05-24,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-24,Risk of Violence,5,Medium,2013-05-24,2013-09-09,2013-10-23,0,4,108,0,0\r\n2930,michael yates,michael,yates,2013-01-12,Male,1986-10-28,29,25 - 45,African-American,0,10,0,0,10,-1,2013-01-11 09:11:26,2013-04-30 02:02:16,13000683MM10A,2013-01-11,,1,M,Assault,1,14003239CF10A,(F2),44,2014-01-22,Deliver Cocaine,2014-03-07,2014-08-28,,0,,,,,Risk of Recidivism,10,High,2013-01-12,Risk of Violence,8,High,2013-01-12,2013-06-07,2013-11-26,10,108,146,0,1\r\n2931,maxim ambroise,maxim,ambroise,2013-08-05,Male,1976-03-24,40,25 - 45,African-American,0,2,0,0,0,-3,2013-08-02 07:56:17,2013-08-03 08:03:57,13010927CF10A,2013-08-02,,3,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-05,Risk of Violence,1,Low,2013-08-05,2013-08-02,2013-08-03,0,0,970,0,0\r\n2932,john sirmons,john,sirmons,2014-02-06,Male,1979-06-13,36,25 - 45,African-American,0,2,0,0,2,0,2014-02-06 06:31:29,2014-02-07 04:00:17,14001690CF10A,2014-02-06,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-06,Risk of Violence,1,Low,2014-02-06,2014-02-06,2014-02-07,2,1,785,0,0\r\n2933,shamik davis,shamik,davis,2013-03-20,Male,1989-10-27,26,25 - 45,African-American,0,8,0,0,8,0,2013-03-20 01:21:38,2013-03-20 07:46:24,13002703CF10A,,2013-03-20,0,F,arrest case no charge,1,13016783MM10A,(M2),0,2013-07-28,Petit Theft,2013-07-28,2013-12-02,,0,,,,,Risk of Recidivism,8,High,2013-03-20,Risk of Violence,5,Medium,2013-03-20,2013-07-28,2013-12-02,8,0,130,1,1\r\n2934,daniel levy,daniel,levy,2013-07-22,Male,1991-01-26,25,25 - 45,African-American,0,3,0,0,1,-23,2013-06-29 02:51:35,2013-06-30 02:38:48,13009185CF10A,2013-06-29,,23,F,Burglary Structure Unoccup,1,13020438MM10A,(M1),,2013-09-12,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-22,Risk of Violence,4,Low,2013-07-22,2016-02-23,2016-02-23,1,0,52,1,1\r\n2935,robert jacob,robert,jacob,2013-07-10,Male,1947-02-09,69,Greater than 45,Caucasian,0,1,0,0,0,-3,2013-07-07 11:26:52,2013-07-08 08:36:55,13012874MM10A,2013-07-07,,3,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-10,Risk of Violence,1,Low,2013-07-10,2013-07-07,2013-07-08,0,0,996,0,0\r\n2936,fabrice alexandre,fabrice,alexandre,2014-01-25,Male,1988-10-02,27,25 - 45,African-American,0,4,1,0,1,-1,2014-01-24 04:31:18,2014-02-01 04:57:27,14001056CF10A,2014-01-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-25,Risk of Violence,3,Low,2014-01-25,2014-01-24,2014-02-01,1,7,797,0,0\r\n2937,luke hanner,luke,hanner,2013-08-26,Male,1995-04-30,20,Less than 25,Caucasian,0,5,0,0,0,0,2013-08-26 01:19:26,2013-08-27 07:23:27,13012021CF10A,2013-08-26,,0,F,Grand Theft in the 3rd Degree,1,13021292MM10A,(M1),0,2013-11-12,Trespass Other Struct/Convey,2013-11-12,2013-12-04,,0,,,,,Risk of Recidivism,5,Medium,2013-08-26,Risk of Violence,9,High,2013-08-26,2013-11-12,2013-12-04,0,1,78,1,1\r\n2938,eric alston,eric,alston,2013-10-04,Male,1988-05-01,27,25 - 45,African-American,0,1,0,0,1,-2,2013-10-02 03:21:20,2013-10-04 12:05:39,13013849CF10A,2013-10-02,,2,F,Throw Deadly Missile Into Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-04,Risk of Violence,2,Low,2013-10-04,2014-04-10,2014-04-11,1,0,188,0,0\r\n2939,monica mompremier,monica,mompremier,2013-01-31,Female,1991-04-22,24,Less than 25,African-American,0,6,0,0,6,-1,2013-01-30 07:28:56,2013-12-06 07:37:33,11005074MM10B,,2013-01-30,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-31,Risk of Violence,7,Medium,2013-01-31,2015-01-12,2015-04-21,6,309,711,0,0\r\n2943,yuli gurlanik,yuli,gurlanik,2013-07-17,Male,1973-10-04,42,25 - 45,Caucasian,0,1,0,0,0,-7,2013-07-10 08:16:29,2013-07-13 03:05:27,13009676CF10A,2013-07-10,,7,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-17,Risk of Violence,1,Low,2013-07-17,2013-07-10,2013-07-13,0,0,989,0,0\r\n2946,juan guacaneme,juan,guacaneme,2013-10-16,Male,1990-10-06,25,25 - 45,Caucasian,0,3,0,0,1,-1,2013-10-15 04:42:54,2013-10-16 11:36:39,13014417CF10A,2013-10-15,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-16,Risk of Violence,2,Low,2013-10-16,2014-09-09,2014-09-10,1,0,328,0,0\r\n2949,boyd duguay,boyd,duguay,2013-04-03,Male,1969-10-15,46,Greater than 45,Caucasian,0,1,0,0,1,-37,2013-02-25 10:21:54,2013-03-27 02:02:28,13002638CF10A,,2013-02-25,37,F,arrest case no charge,1,14002763MM10A,(M1),89,2014-01-31,Theft/To Deprive,2014-04-30,2014-08-26,,0,,,,,Risk of Recidivism,1,Low,2013-04-03,Risk of Violence,1,Low,2013-04-03,2013-07-14,2013-09-06,1,0,102,0,1\r\n2951,michael clarke,michael,clarke,2013-11-28,Male,1990-05-07,25,25 - 45,African-American,0,4,0,0,0,-1,2013-11-27 09:02:38,2013-12-04 10:11:40,13016534CF10A,2013-11-27,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-28,Risk of Violence,4,Low,2013-11-28,2015-12-02,2015-12-03,0,6,734,0,0\r\n2952,gaellen fabre,gaellen,fabre,2013-03-07,Male,1993-12-14,22,Less than 25,African-American,0,3,0,0,0,-1,2013-03-06 08:19:03,2013-03-07 06:09:53,13003369CF10A,2013-03-06,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-07,Risk of Violence,5,Medium,2013-03-07,2013-03-06,2013-03-07,0,0,1121,0,0\r\n2954,philip picard,philip,picard,2013-02-06,Male,1994-08-22,21,Less than 25,Caucasian,0,4,0,0,0,-1,2013-02-05 07:50:29,2013-02-06 02:23:08,13001783CF10A,2013-02-05,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-06,Risk of Violence,7,Medium,2013-02-06,2013-02-05,2013-02-06,0,0,1150,0,0\r\n2955,christopher bryant,christopher,bryant,2013-09-08,Male,1985-09-11,30,25 - 45,African-American,0,2,0,0,1,0,2013-09-08 06:44:39,2013-09-10 03:35:08,13017093MM10A,2013-09-08,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-08,Risk of Violence,3,Low,2013-09-08,2013-09-08,2013-09-10,1,2,936,0,0\r\n2956,robert lallier,robert,lallier,2013-11-16,Male,1969-12-13,46,Greater than 45,Caucasian,0,5,0,0,9,0,2013-11-16 02:06:57,2013-11-20 05:42:41,13021581MM10A,2013-11-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-16,Risk of Violence,2,Low,2013-11-16,2013-11-16,2013-11-20,9,4,867,0,0\r\n2959,corey brown,corey,brown,2013-01-17,Male,1989-08-31,26,25 - 45,African-American,0,7,0,0,2,0,2013-01-17 05:17:57,2013-01-17 07:05:29,13001189MM10A,2013-01-17,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-17,Risk of Violence,7,Medium,2013-01-17,2013-01-17,2013-01-17,2,0,1170,0,0\r\n2961,franklin wright,franklin,wright,2013-02-07,Male,1983-03-13,33,25 - 45,African-American,0,5,0,0,0,0,2013-02-07 12:36:54,2013-02-08 08:31:07,13001851CF10A,,2013-02-07,0,F,arrest case no charge,1,14045966TC30A,(M2),,2014-05-21,No Valid DL / Non Resident,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-07,Risk of Violence,6,Medium,2013-02-07,2013-03-14,2013-04-06,0,1,35,0,1\r\n2962,david brown,david,brown,2013-08-29,Male,1976-01-15,40,25 - 45,African-American,0,1,0,0,1,-1,2013-08-28 06:36:56,2013-08-29 07:57:29,13016493MM10A,2013-08-27,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-29,Risk of Violence,2,Low,2013-08-29,2013-08-28,2013-08-29,1,0,946,0,0\r\n2963,dennis figueroalopez,dennis,figueroalopez,2013-10-03,Male,1981-06-25,34,25 - 45,Caucasian,0,4,0,0,0,-1,2013-10-02 07:42:44,2013-10-30 09:15:07,13013823CF10A,2013-10-02,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-03,Risk of Violence,3,Low,2013-10-03,2013-10-02,2013-10-30,0,27,911,0,0\r\n2964,jeffrey gitta,jeffrey,gitta,2014-06-23,Male,1993-10-13,22,Less than 25,Caucasian,0,2,0,0,1,-1,2014-06-22 12:47:35,2014-07-29 05:31:23,14008615CF10A,2014-06-22,,1,F,Grand Theft in the 3rd Degree,1,14008961CF10A,(F3),,2014-06-25,Crimin Mischief Damage $1000+,,,,0,,,,,Risk of Recidivism,2,Low,2014-06-23,Risk of Violence,3,Low,2014-06-23,2014-06-22,2014-07-29,1,0,2,1,1\r\n2965,stefano forero,stefano,forero,2013-02-16,Male,1987-11-20,28,25 - 45,Hispanic,0,5,0,0,3,-1,2013-02-15 07:09:29,2013-02-16 01:16:11,12078938TC20A,,2013-02-15,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-16,Risk of Violence,5,Medium,2013-02-16,2013-07-03,2013-07-04,3,0,137,0,0\r\n2968,darrel mims,darrel,mims,2013-08-12,Male,1984-09-25,31,25 - 45,African-American,0,3,0,0,4,-1,2013-08-11 01:32:33,2013-08-12 01:59:39,13015142MM10A,2013-08-11,,1,M,Assault,1,13079490TC20A,(M2),,2013-12-17,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-12,Risk of Violence,2,Low,2013-08-12,2014-04-07,2014-04-08,4,0,127,1,1\r\n2969,ralph woodward,ralph,woodward,2014-05-01,Male,1956-11-18,59,Greater than 45,Caucasian,0,1,0,0,3,0,2014-05-01 04:27:00,2014-05-02 11:39:39,14016793MU10A,2014-05-01,,0,M,Driving Under The Influence,1,14017883MM10A,(M1),0,2014-12-19,Battery,2014-12-19,2015-01-03,,1,14017883MM10A,(M1),2014-12-19,Battery,Risk of Recidivism,1,Low,2014-05-01,Risk of Violence,1,Low,2014-05-01,2014-11-20,2014-11-23,3,1,203,0,1\r\n2970,charles frye,charles,frye,2013-02-10,Male,1979-01-08,37,25 - 45,Native American,0,2,0,0,0,-1,2013-02-09 11:48:32,2013-02-10 08:32:47,13002039CF10A,2013-02-09,,1,F,\"Aggr Child Abuse-Torture,Punish\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-10,Risk of Violence,1,Low,2013-02-10,2013-02-09,2013-02-10,0,0,1146,0,0\r\n2972,aston bailey,aston,bailey,2014-02-23,Male,1965-11-28,50,Greater than 45,African-American,0,1,0,0,0,-1,2014-02-22 01:33:06,2014-02-24 02:04:00,14002523CF10A,2014-02-22,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-23,Risk of Violence,1,Low,2014-02-23,2014-02-22,2014-02-24,0,1,768,0,0\r\n2973,atlantis steenson,atlantis,steenson,2013-03-21,Female,1994-10-21,21,Less than 25,Other,0,4,0,0,2,244,2013-11-20 05:20:30,2013-12-16 12:06:50,13003966CF10A,2013-01-11,,69,F,Neglect Child / No Bodily Harm,1,14010121CF10A,(F3),,2014-07-10,Possession of XLR11,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-21,Risk of Violence,6,Medium,2013-03-21,2013-11-20,2013-12-16,2,0,244,0,1\r\n2974,jeffrey scott,jeffrey,scott,2013-08-01,Male,1958-09-03,57,Greater than 45,African-American,0,5,0,0,8,-1,2013-07-31 05:54:37,2013-11-08 03:35:51,13013043CF10A,2013-07-31,,1,F,Felony Battery w/Prior Convict,1,13015640CF10A,(F2),0,2013-11-10,Throw Missile Into Pub/Priv Dw,2013-11-10,2014-05-14,,1,13015640CF10A,(F2),2013-11-10,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,5,Medium,2013-08-01,Risk of Violence,2,Low,2013-08-01,2013-11-10,2014-05-14,8,99,101,1,1\r\n2976,johan wyngaarde,johan,wyngaarde,2013-04-16,Male,1984-07-14,31,25 - 45,African-American,0,5,0,0,5,-1,2013-04-15 09:48:22,2013-04-16 07:51:31,13007298MM10A,2013-04-15,,1,M,Assault,1,15008901CF10A,(F3),0,2015-07-10,Possession Of Heroin,2015-07-10,2015-07-13,,0,,,,,Risk of Recidivism,5,Medium,2013-04-16,Risk of Violence,5,Medium,2013-04-16,2013-08-05,2013-08-08,5,0,111,0,0\r\n2977,patricia gibson,patricia,gibson,2014-03-01,Female,1965-01-27,51,Greater than 45,African-American,0,7,0,0,1,,,,10020216MM10A,2010-09-19,,1259,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-01,Risk of Violence,2,Low,2014-03-01,,,1,0,762,0,0\r\n2979,horace davis,horace,davis,2013-08-05,Male,1971-12-24,44,25 - 45,African-American,0,8,0,0,9,-28,2013-07-08 03:02:29,2013-08-02 11:00:32,13009558CF10A,2013-07-08,,28,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-05,Risk of Violence,6,Medium,2013-08-05,2014-07-23,2014-07-31,9,0,352,0,0\r\n2982,tony neal,tony,neal,2013-01-04,Male,1967-07-19,48,Greater than 45,African-American,0,9,0,0,5,-1,2013-01-03 12:33:59,2013-09-03 06:19:55,13000113CF10A,2013-01-03,,1,F,Possession of Cocaine,1,15011554CF10A,(M1),0,2015-09-07,Unlaw Use False Name/Identity,2015-09-07,2015-10-12,,0,,,,,Risk of Recidivism,9,High,2013-01-04,Risk of Violence,2,Low,2013-01-04,2014-07-08,2014-07-08,5,464,550,0,1\r\n2983,vanessa gonzalez,vanessa,gonzalez,2014-01-19,Female,1990-09-21,25,25 - 45,Caucasian,0,4,0,0,0,-1,2014-01-18 06:18:49,2014-01-19 08:45:11,14000808CF10A,2014-01-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-19,Risk of Violence,3,Low,2014-01-19,2014-01-18,2014-01-19,0,0,803,0,0\r\n2984,augusta howard,augusta,howard,2013-08-01,Male,1965-02-14,51,Greater than 45,African-American,0,3,0,0,5,-1,2013-07-31 04:28:15,2013-07-31 09:19:37,97045105TC30A,,1999-12-09,4984,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-01,Risk of Violence,3,Low,2013-08-01,2013-07-31,2013-07-31,5,0,974,0,0\r\n2985,ralph wessells,ralph,wessells,2014-10-10,Male,1966-02-25,50,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-10-09 12:45:11,2014-10-10 08:55:00,14013640CF10A,,2014-10-09,1,F,arrest case no charge,1,15005910TC30A,(M2),,2015-01-17,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,1,Low,2014-10-10,Risk of Violence,1,Low,2014-10-10,2014-10-09,2014-10-10,0,0,99,1,1\r\n2988,blair wright,blair,wright,2013-11-18,Male,1958-08-21,57,Greater than 45,Caucasian,0,1,0,0,2,-11,2013-11-07 01:02:54,2013-11-09 02:40:38,13015742CF10A,,2013-11-07,11,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-18,Risk of Violence,1,Low,2013-11-18,2013-12-24,2013-12-24,2,0,36,0,0\r\n2990,antonio rivas,antonio,rivas,2013-12-09,Male,1960-07-14,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-08 10:00:24,2013-12-09 08:45:38,13022716MM10A,2013-12-08,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,1,Low,2013-12-09,2013-12-08,2013-12-09,0,0,844,0,0\r\n2991,jerome howell,jerome,howell,2013-11-15,Male,1957-03-12,59,Greater than 45,African-American,0,3,0,0,4,-2,2013-11-13 07:46:49,2013-11-14 08:09:19,13015785CF10A,2013-11-13,,2,F,Possession of Cocaine,1,14007443CF10A,(F3),1,2014-05-28,Possession of Cocaine,2014-05-29,2014-06-30,,0,,,,,Risk of Recidivism,3,Low,2013-11-15,Risk of Violence,1,Low,2013-11-15,2015-04-18,2015-05-31,4,0,194,1,1\r\n2992,elithanne lucthamas,elithanne,lucthamas,2014-03-25,Female,1974-02-12,42,25 - 45,African-American,0,1,0,0,0,0,2014-03-25 03:00:23,2014-03-25 08:06:06,14004243CF10A,2014-03-25,,0,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-25,Risk of Violence,1,Low,2014-03-25,2014-03-25,2014-03-25,0,0,738,0,0\r\n2993,stephen zambrano,stephen,zambrano,2013-12-11,Male,1995-09-03,20,Less than 25,Hispanic,2,8,0,0,2,-21,2013-11-20 09:51:09,2013-12-11 11:31:13,13013453CF10A,,2013-11-20,21,F,arrest case no charge,1,16006702TC10A,(M2),0,2016-03-16,Susp Drivers Lic 1st Offense,2016-03-16,2016-03-28,,0,,,,,Risk of Recidivism,8,High,2013-12-11,Risk of Violence,9,High,2013-12-11,2014-09-12,2015-02-15,2,0,275,0,1\r\n2995,richard kemp,richard,kemp,2013-03-18,Male,1957-08-27,58,Greater than 45,African-American,0,9,0,0,16,-47,2013-01-30 04:44:55,2013-02-28 10:10:00,13001521CF10A,2013-01-30,,47,F,Felony Petit Theft,1,15014932CF10A,(F3),0,2015-11-17,Grand Theft in the 3rd Degree,2015-11-17,2015-12-22,,0,,,,,Risk of Recidivism,9,High,2013-03-18,Risk of Violence,9,High,2013-03-18,2014-06-27,2014-09-26,16,0,466,0,0\r\n2996,ilyess benamor,ilyess,benamor,2013-04-20,Male,1994-09-01,21,Less than 25,Other,0,4,0,0,0,-1,2013-04-19 11:52:35,2013-05-18 08:03:09,13005634CF10A,2013-04-19,,1,F,Purchase Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,5,Medium,2013-04-20,2013-04-19,2013-05-18,0,28,1077,0,0\r\n2997,trenard jackson,trenard,jackson,2013-04-07,Male,1984-01-25,32,25 - 45,African-American,0,9,0,0,21,-1,2013-04-06 03:12:48,2013-06-09 04:42:25,13007576CF10A,2013-04-06,,1,F,Felony Petit Theft,1,13014540CF10A,(F3),,2013-09-20,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,9,High,2013-04-07,Risk of Violence,8,High,2013-04-07,2013-04-06,2013-06-09,21,63,166,1,1\r\n2998,julissa licona,julissa,licona,2013-09-04,Female,1991-07-22,24,Less than 25,Hispanic,0,4,0,0,0,0,2013-09-04 01:32:50,2013-09-04 01:46:03,13016860MM10A,2013-09-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-04,Risk of Violence,4,Low,2013-09-04,2013-09-04,2013-09-04,0,0,940,0,0\r\n3003,trevor russell,trevor,russell,2013-08-18,Male,1974-02-13,42,25 - 45,African-American,0,4,0,0,1,0,2013-08-18 01:50:02,2013-08-19 03:46:45,13011575CF10A,2013-08-17,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-18,Risk of Violence,2,Low,2013-08-18,2013-08-18,2013-08-19,1,1,957,0,0\r\n3004,vernet cherry,vernet,cherry,2014-07-18,Male,1986-07-29,29,25 - 45,African-American,0,8,0,0,8,-1,2014-07-17 12:12:08,2014-07-31 09:34:55,14009938CF10A,,2014-07-18,0,F,arrest case no charge,1,14015524CF10A,(F3),12,2014-11-06,Possession of Ethylone,2014-11-18,2015-03-06,,0,,,,,Risk of Recidivism,8,High,2014-07-18,Risk of Violence,4,Low,2014-07-18,2014-08-22,2014-08-27,8,13,35,0,1\r\n3005,chadwayne maragh,chadwayne,maragh,2013-05-25,Male,1994-10-14,21,Less than 25,African-American,0,6,0,0,1,-1,2013-05-24 04:57:35,2013-06-01 04:53:45,12017982CF10A,,2013-05-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-25,Risk of Violence,6,Medium,2013-05-25,2013-05-24,2013-06-01,1,7,1042,0,0\r\n3008,anthony principe,anthony,principe,2014-01-08,Male,1984-12-13,31,25 - 45,Caucasian,0,2,0,0,1,-356,2013-01-17 04:09:52,2013-01-17 07:32:05,13001206MM10A,2013-01-17,,356,M,DUI Level 0.15 Or Minor In Veh,1,14003219MM20A,(M1),,2014-11-06,Theft/To Deprive,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,2,Low,2014-01-08,2013-01-17,2013-01-17,1,0,302,1,1\r\n3009,karl saldana,karl,saldana,2013-04-22,Male,1959-12-26,56,Greater than 45,Hispanic,0,4,0,0,8,,,,12007837CF10A,2012-05-27,,330,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-22,Risk of Violence,3,Low,2013-04-22,,,8,0,1075,0,0\r\n3010,thomas handy,thomas,handy,2013-10-03,Male,1957-09-17,58,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-03 02:20:47,2013-10-03 07:55:20,13018830MM10A,2013-10-02,,1,M,DUI Blood Alcohol Above 0.20,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-10-03,2013-10-03,0,0,911,0,0\r\n3014,evens alcime,evens,alcime,2014-06-22,Male,1993-12-30,22,Less than 25,African-American,0,7,0,1,1,0,2014-06-22 04:50:40,2014-06-23 03:37:26,14008607CF10A,2014-06-22,,0,F,Pos Cannabis W/Intent Sel/Del,1,16009914TC20A,(M2),37,2016-02-15,Operating W/O Valid License,2016-03-23,2016-04-05,,0,,,,,Risk of Recidivism,7,Medium,2014-06-22,Risk of Violence,8,High,2014-06-22,2014-06-22,2014-06-23,1,1,603,1,1\r\n3015,jason gardner,jason,gardner,2013-12-11,Male,1970-03-29,46,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-12-10 06:50:04,2013-12-11 01:30:53,13022860MM10A,2013-12-10,,1,M,Battery,1,15003660MO10A,(MO3),0,2015-03-29,Trespass,2015-03-29,2015-03-30,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2015-03-29,2015-03-30,1,0,473,1,1\r\n3019,paul laiknickas,paul,laiknickas,2014-02-11,Male,1965-05-03,50,Greater than 45,Caucasian,0,2,0,0,0,0,2014-02-11 03:13:47,2014-02-25 10:45:00,14002353MM10A,2014-02-11,,0,M,Battery,1,15001207MM20A,(M1),,2015-04-05,Indecent Exposure,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-11,Risk of Violence,1,Low,2014-02-11,2014-02-11,2014-02-25,0,14,418,1,1\r\n3020,devonah daniels,devonah,daniels,2013-02-26,Male,1969-11-23,46,Greater than 45,African-American,0,9,0,0,2,-1,2013-02-25 08:20:16,2013-02-26 06:41:08,13002868CF10A,2013-02-25,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-26,Risk of Violence,4,Low,2013-02-26,2013-11-12,2013-12-18,2,0,259,0,0\r\n3021,stacey mccall,stacey,mccall,2014-11-06,Female,1971-05-22,44,25 - 45,African-American,0,8,1,0,11,-1,2014-11-05 01:39:14,2014-11-20 09:26:23,14014852CF10A,2014-11-05,,1,F,Possession of Cocaine,1,15001136MM10A,(M2),0,2015-01-28,Petit Theft,2015-01-28,2015-02-24,,0,,,,,Risk of Recidivism,8,High,2014-11-06,Risk of Violence,5,Medium,2014-11-06,2015-01-28,2015-02-24,11,14,83,1,1\r\n3022,willie terry,willie,terry,2013-01-17,Male,1981-03-22,35,25 - 45,African-American,0,5,0,0,4,-1,2013-01-16 10:14:25,2013-02-15 01:55:17,13001137MM10A,2013-01-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-17,Risk of Violence,6,Medium,2013-01-17,2013-01-16,2013-02-15,4,29,1170,0,0\r\n3023,jermaine jackson,jermaine,jackson,2013-05-01,Male,1985-06-03,30,25 - 45,African-American,0,9,1,0,14,-1,2013-04-30 02:58:28,2013-05-02 04:38:53,13006216CF10A,2013-04-30,,1,F,Grand Theft (Motor Vehicle),1,13037318TC10A,(M2),,2013-09-12,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,9,High,2013-05-01,Risk of Violence,7,Medium,2013-05-01,2013-04-30,2013-05-02,14,1,134,1,1\r\n3025,troy harris,troy,harris,2013-11-19,Male,1973-09-24,42,25 - 45,African-American,0,5,0,0,2,-1,2013-11-18 05:25:49,2013-11-19 02:03:11,13015997CF10A,2013-11-18,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-19,Risk of Violence,4,Low,2013-11-19,2013-11-18,2013-11-19,2,0,864,0,0\r\n3027,jean guerrier,jean,guerrier,2013-01-06,Male,1970-03-10,46,Greater than 45,African-American,0,1,0,0,5,-1,2013-01-05 01:19:31,2013-07-26 03:18:51,13000216CF10A,2013-01-05,,1,F,Grand Theft (Motor Vehicle),1,14015228TC10A,(M2),0,2014-04-18,Susp Drivers Lic 1st Offense,2014-04-18,2014-04-20,,0,,,,,Risk of Recidivism,1,Low,2013-01-06,Risk of Violence,1,Low,2013-01-06,2014-04-18,2014-04-20,5,201,467,1,1\r\n3029,dan cooper,dan,cooper,2014-10-04,Male,1973-06-21,42,25 - 45,African-American,0,10,0,0,0,0,2014-10-04 03:36:47,2014-11-07 04:56:46,14013379CF10A,2014-10-04,,0,F,Poss Pyrrolidinovalerophenone,1,15000109CF10A,(F2),,2015-01-03,Felon in Pos of Firearm or Amm,,,,0,,,,,Risk of Recidivism,10,High,2014-10-04,Risk of Violence,6,Medium,2014-10-04,2014-10-04,2014-11-07,0,34,91,1,1\r\n3030,glenardo stubbs,glenardo,stubbs,2013-04-29,Male,1979-03-14,37,25 - 45,African-American,0,3,0,0,12,-74,2013-02-14 04:39:29,2013-03-11 09:00:46,11010599CF10A,,2013-02-14,74,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-29,Risk of Violence,2,Low,2013-04-29,2013-07-25,2013-08-22,12,0,87,0,0\r\n3031,christopher colon,christopher,colon,2014-05-23,Male,1986-11-26,29,25 - 45,Caucasian,0,10,0,0,7,-1,2014-05-22 01:26:49,2014-05-23 01:41:40,14007168CF10A,2014-05-22,,1,F,Aggravated Battery / Pregnant,1,14009273MM10A,(M1),,2014-06-11,Viol Injunct Domestic Violence,,,,0,,,,,Risk of Recidivism,10,High,2014-05-23,Risk of Violence,8,High,2014-05-23,2014-06-11,2014-10-20,7,0,19,1,1\r\n3032,geovanni casteel,geovanni,casteel,2013-02-04,Male,1983-09-14,32,25 - 45,African-American,0,4,0,1,8,-1,2013-02-03 06:34:52,2013-02-07 11:43:19,13001707CF10A,2013-02-03,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-04,Risk of Violence,2,Low,2013-02-04,2013-04-05,2013-05-14,8,3,60,0,0\r\n3033,julo victor,julo,victor,2013-03-11,Male,1984-09-22,31,25 - 45,Other,0,6,0,0,5,-1,2013-03-10 08:28:08,2013-03-13 12:29:20,13003527CF10A,2013-03-10,,1,F,Grand Theft in the 3rd Degree,1,15008288MM10A,(M1),0,2015-08-05,Possess Cannabis/20 Grams Or Less,2015-08-05,2015-08-06,,0,,,,,Risk of Recidivism,6,Medium,2013-03-11,Risk of Violence,4,Low,2013-03-11,2015-08-05,2015-08-06,5,2,877,1,0\r\n3034,shemeka suggs,shemeka,suggs,2013-05-01,Female,1982-06-27,33,25 - 45,African-American,0,1,0,0,1,-1,2013-04-30 12:54:45,2013-05-02 12:26:52,13008355MM10A,2013-04-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2013-04-30,2013-05-02,1,1,1066,0,0\r\n3035,ivan parra,ivan,parra,2013-01-10,Male,1990-10-28,25,25 - 45,Caucasian,0,4,0,0,4,-1,2013-01-09 02:20:36,2013-07-11 06:30:31,13000358CF10A,2013-01-09,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-10,Risk of Violence,4,Low,2013-01-10,2013-07-11,2013-12-01,4,325,1177,0,0\r\n3036,tanika brownlee,tanika,brownlee,2014-03-20,Female,1982-11-01,33,25 - 45,African-American,0,1,0,0,0,-1,2014-03-19 08:34:38,2014-03-20 10:14:22,14004793MM10A,2014-03-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-20,Risk of Violence,1,Low,2014-03-20,2014-03-19,2014-03-20,0,0,743,0,0\r\n3037,xavier ramos,xavier,ramos,2013-12-13,Male,1995-02-01,21,Less than 25,Hispanic,0,5,0,0,1,-1,2013-12-12 10:48:59,2013-12-13 08:38:42,13013750CF10A,,2013-12-12,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-13,Risk of Violence,9,High,2013-12-13,2013-12-12,2013-12-13,1,0,840,0,0\r\n3038,charlotte nicholas,charlotte,nicholas,2013-09-06,Female,1951-09-19,64,Greater than 45,Caucasian,0,3,0,0,7,123,2014-01-07 01:01:49,2014-03-24 04:05:57,12010888MM10A,2012-03-19,,536,M,Expired DL More Than 6 Months,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2014-01-07,2014-03-24,7,0,123,0,0\r\n3039,khalil elasraoui,khalil,elasraoui,2014-05-01,Male,1980-06-11,35,25 - 45,Caucasian,0,1,0,0,1,-1,2014-04-30 05:11:29,2014-06-18 09:18:28,14005982CF10A,2014-04-30,,1,F,Possession of Cocaine,1,16000232CF10A,(M1),0,2016-01-06,,2016-01-06,2016-01-07,,0,,,,,Risk of Recidivism,1,Low,2014-05-01,Risk of Violence,1,Low,2014-05-01,2016-01-06,2016-01-07,1,48,615,1,1\r\n3040,samuel clarke,samuel,clarke,2013-11-06,Male,1959-09-03,56,Greater than 45,African-American,0,1,0,0,1,-22,2013-10-15 09:44:46,2013-10-18 07:16:45,13014397CF10A,,2013-10-15,22,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-06,Risk of Violence,1,Low,2013-11-06,2013-10-15,2013-10-18,1,0,877,0,0\r\n3041,david munoz,david,munoz,2013-01-28,Male,1977-10-13,38,25 - 45,Caucasian,0,3,0,0,0,-1,2013-01-27 09:20:52,2013-01-30 05:11:21,13001930MM10A,2013-01-27,,1,M,Battery,1,14013062MM10A,(M1),0,2014-08-31,Battery,2014-08-31,2014-09-01,,1,14013062MM10A,(M1),2014-08-31,Battery,Risk of Recidivism,3,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2014-08-31,2014-09-01,0,2,580,1,1\r\n3042,lawanneka burton,lawanneka,burton,2013-03-09,Female,1975-12-07,40,25 - 45,African-American,0,1,0,0,4,-1,2013-03-08 06:47:59,2013-03-09 12:05:57,13000085MM30A,,2013-03-08,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2013-03-08,2013-03-09,4,0,1119,0,0\r\n3043,christon clark,christon,clark,2013-07-12,Male,1981-09-09,34,25 - 45,African-American,0,7,0,0,3,-105,2013-03-29 10:29:49,2013-07-02 09:55:00,10016002CF10A,,2013-03-29,105,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-07-12,Risk of Violence,6,Medium,2013-07-12,2013-12-28,2014-04-23,3,0,169,0,0\r\n3046,zackery mcburrows,zackery,mcburrows,2013-08-09,Male,1988-04-05,28,25 - 45,African-American,0,4,0,1,4,-1,2013-08-08 07:17:53,2013-08-09 08:35:26,13011107CF10A,2013-08-08,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-09,Risk of Violence,3,Low,2013-08-09,2013-09-25,2013-10-19,4,0,47,0,0\r\n3051,maurice terry,maurice,terry,2013-01-18,Male,1964-06-09,51,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-17 06:26:46,2013-01-18 08:47:55,13001194MM10A,2013-01-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2013-01-17,2013-01-18,0,0,1169,0,0\r\n3053,bryan boyd,bryan,boyd,2013-09-16,Male,1980-11-01,35,25 - 45,African-American,0,2,0,0,2,-1,2013-09-15 05:04:42,2013-09-17 04:20:35,13017567MM10A,2013-09-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-16,Risk of Violence,2,Low,2013-09-16,2013-09-15,2013-09-17,2,1,928,0,0\r\n3055,leonard newton,leonard,newton,2013-01-24,Male,1954-09-05,61,Greater than 45,African-American,0,2,0,0,5,-13,2013-01-11 04:45:49,2013-01-23 08:42:55,13000529CF10A,2013-01-11,,13,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-24,Risk of Violence,1,Low,2013-01-24,2013-06-30,2013-08-16,5,0,157,0,0\r\n3056,tommy moore,tommy,moore,2014-03-05,Male,1990-05-12,25,25 - 45,African-American,0,3,0,0,0,0,2014-03-05 05:26:09,2014-03-06 08:20:58,14003107CF10A,2014-03-05,,0,F,Poss Unlaw Issue Driver Licenc,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-05,Risk of Violence,4,Low,2014-03-05,2014-03-05,2014-03-06,0,1,758,0,0\r\n3057,anthony alpern,anthony,alpern,2014-07-14,Male,1990-08-17,25,25 - 45,African-American,0,7,0,0,4,-1,2014-07-13 09:35:10,2014-07-14 08:01:09,14009571CF10A,2014-07-13,,1,F,Felony Driving While Lic Suspd,1,14017217MM10A,(M2),,2014-12-06,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2014-07-14,Risk of Violence,3,Low,2014-07-14,2015-05-15,2015-05-30,4,0,145,1,1\r\n3058,jamar johnson,jamar,johnson,2013-02-17,Male,1989-08-25,26,25 - 45,African-American,0,5,0,0,0,0,2013-02-17 01:06:03,2013-02-17 11:01:50,13003392MM10A,2013-02-16,,1,M,Petit Theft,1,16007599MU10A,(M1),0,2016-03-26,,2016-03-26,2016-03-27,,0,,,,,Risk of Recidivism,5,Medium,2013-02-17,Risk of Violence,4,Low,2013-02-17,2016-03-26,2016-03-27,0,0,1133,1,0\r\n3064,alexey ryabov,alexey,ryabov,2014-02-02,Male,1973-06-28,42,25 - 45,Caucasian,0,1,0,0,1,-1,2014-02-01 11:16:39,2014-02-04 05:23:00,14001775MM10A,2014-02-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-02,Risk of Violence,1,Low,2014-02-02,2014-02-01,2014-02-04,1,2,789,0,0\r\n3066,cowania ferguson,cowania,ferguson,2013-04-01,Female,1991-03-28,25,25 - 45,African-American,0,4,0,0,1,-10,2013-03-22 09:50:36,2013-03-23 07:50:42,13004189CF10A,2013-03-22,,10,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-01,Risk of Violence,4,Low,2013-04-01,2015-02-18,2015-02-24,1,0,688,0,0\r\n3067,shaquille butler,shaquille,butler,2014-05-09,Male,1989-07-27,26,25 - 45,African-American,0,10,1,0,13,-1,2014-05-08 12:35:57,2014-05-08 09:01:32,13046211TC10A,2013-10-14,,207,M,Driving License Suspended,1,14020181TC10A,(M2),275,2014-05-20,Driving License Suspended,2015-02-19,2015-06-16,,0,,,,,Risk of Recidivism,10,High,2014-05-09,Risk of Violence,9,High,2014-05-09,2016-01-23,2016-01-30,13,0,11,1,1\r\n3068,zachery griffin,zachery,griffin,2013-03-01,Male,1985-04-12,31,25 - 45,African-American,0,7,0,0,9,-1,2013-02-28 10:35:31,2013-03-01 08:06:02,13003064CF10A,2013-02-28,,1,F,Poss of Methylethcathinone,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-01,Risk of Violence,3,Low,2013-03-01,2015-06-02,2020-01-01,9,0,823,0,0\r\n3069,david paris,david,paris,2013-05-29,Male,1980-09-25,35,25 - 45,Caucasian,0,2,0,1,1,-1,2013-05-28 03:54:12,2013-05-29 04:20:25,13007625CF10A,2013-05-28,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-05-28,2013-05-29,1,0,1038,0,0\r\n3071,jennifer oneal,jennifer,oneal,2013-10-01,Female,1974-11-16,41,25 - 45,African-American,0,2,0,0,4,-100,2013-06-23 09:46:17,2013-07-03 09:28:33,12015877CF10A,,2013-01-27,247,F,arrest case no charge,1,14000370MM30A,(M2),38,2014-02-10,Petit Theft,2014-03-20,2014-03-24,,0,,,,,Risk of Recidivism,2,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2014-03-20,2014-03-24,4,0,132,1,1\r\n3074,brian denby,brian,denby,2013-01-29,Male,1982-02-23,34,25 - 45,Caucasian,0,1,0,0,0,-1,2013-01-28 01:41:49,2013-05-24 07:34:24,13001398CF10A,2013-01-28,,1,F,Lewd/Lasc Battery Pers 12+/<16,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-28,2013-05-24,0,115,1158,0,0\r\n3075,ronaldo blevins,ronaldo,blevins,2013-09-05,Male,1969-11-23,46,Greater than 45,Caucasian,0,1,0,0,5,-93,2013-06-04 12:36:33,2013-06-04 12:47:00,13015202TC10A,,2013-06-04,93,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-05,Risk of Violence,1,Low,2013-09-05,2013-12-18,2013-12-19,5,0,104,0,0\r\n3078,clara torres,clara,torres,2013-08-12,Female,1982-08-12,33,25 - 45,Caucasian,0,2,0,0,1,-1,2013-08-11 09:15:50,2013-08-12 02:12:09,13015161MM10A,2013-08-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-12,Risk of Violence,2,Low,2013-08-12,2013-08-11,2013-08-12,1,0,963,0,0\r\n3081,livingstone wright,livingstone,wright,2014-02-18,Male,1986-03-01,30,25 - 45,African-American,0,2,0,1,3,-1,2014-02-17 08:23:12,2014-02-18 01:12:50,14002242CF10A,2014-02-17,,1,F,Carrying Concealed Firearm,1,16012051TC40A,(M2),,2016-03-01,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-18,Risk of Violence,2,Low,2014-02-18,2014-02-17,2014-02-18,3,0,742,1,0\r\n3084,yolanda young,yolanda,young,2013-12-12,Female,1966-03-07,50,Greater than 45,African-American,0,4,0,0,7,-1,2013-12-11 07:36:50,2013-12-12 09:27:58,13022943MM10A,2013-12-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-12,Risk of Violence,1,Low,2013-12-12,2013-12-11,2013-12-12,7,0,841,0,0\r\n3085,winston forbes,winston,forbes,2013-05-02,Male,1994-06-03,21,Less than 25,African-American,0,5,0,0,0,-1,2013-05-01 07:42:32,2013-06-20 11:32:07,13006268CF10A,2013-05-01,,1,F,Burglary Dwelling Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-02,Risk of Violence,7,Medium,2013-05-02,2014-02-24,2014-05-16,0,49,298,0,0\r\n3086,alfonso torres,alfonso,torres,2013-01-14,Male,1984-12-24,31,25 - 45,Hispanic,0,10,0,0,16,0,2013-01-14 12:17:47,2014-05-12 02:24:28,13000611CF10A,2013-01-13,,1,F,Burglary Conveyance Unoccup,1,14007529CF10A,(F3),,2014-05-30,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,10,High,2013-01-14,Risk of Violence,6,Medium,2013-01-14,2013-01-14,2014-05-12,16,483,501,1,1\r\n3087,roderick griffin,roderick,griffin,2014-09-06,Male,1984-11-04,31,25 - 45,African-American,0,7,0,0,2,-1,2014-09-05 03:07:05,2014-09-08 05:09:09,14012136CF10A,2014-09-05,,1,F,\"Poss 3,4 MDMA (Ecstasy)\",1,14014062CF10A,(F3),1,2014-10-17,Poss Pyrrolidinovalerophenone,2014-10-18,2014-10-19,,0,,,,,Risk of Recidivism,7,Medium,2014-09-06,Risk of Violence,3,Low,2014-09-06,2014-09-05,2014-09-08,2,2,41,1,1\r\n3089,phyllis laurent,phyllis,laurent,2013-04-14,Female,1992-05-08,23,Less than 25,African-American,0,4,0,0,0,-1,2013-04-13 12:17:02,2013-04-14 07:40:07,13007166MM10A,2013-04-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-14,Risk of Violence,4,Low,2013-04-14,2013-04-13,2013-04-14,0,0,1083,0,0\r\n3090,james bradley,james,bradley,2013-01-27,Male,1990-06-05,25,25 - 45,African-American,0,6,0,0,1,0,2013-01-27 06:04:54,2013-01-29 04:29:16,13001315CF10A,2013-01-27,,0,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-27,Risk of Violence,6,Medium,2013-01-27,2015-03-30,2015-04-28,1,2,792,0,0\r\n3093,tristynn francis,tristynn,francis,2013-08-20,Female,1991-11-03,24,Less than 25,Caucasian,0,5,0,0,1,-1,2013-08-19 04:57:00,2013-08-20 06:13:54,13011618CF10A,,2013-08-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-20,Risk of Violence,4,Low,2013-08-20,2013-08-19,2013-08-20,1,0,955,0,0\r\n3094,larry mann,larry,mann,2013-03-13,Male,1984-08-31,31,25 - 45,African-American,0,10,0,0,13,-1,2013-03-12 09:19:16,2013-03-13 01:42:02,13004924MM10A,2013-03-12,,1,M,Possess Cannabis/20 Grams Or Less,1,13031238TC10A,(M2),,2013-06-27,Driving License Suspended,,,,0,,,,,Risk of Recidivism,10,High,2013-03-13,Risk of Violence,9,High,2013-03-13,2013-06-20,2013-06-21,13,0,99,0,1\r\n3096,emmanuel raymond,emmanuel,raymond,2013-08-18,Male,1955-07-08,60,Greater than 45,African-American,0,1,0,0,0,-1,2013-08-17 04:50:08,2013-08-19 07:18:58,13011535CF10A,2013-08-17,,1,F,Grand Theft in the 3rd Degree,1,15001770MM30A,(M1),,2015-11-08,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-18,Risk of Violence,1,Low,2013-08-18,2013-08-17,2013-08-19,0,1,812,1,0\r\n3101,claudy joseph,claudy,joseph,2013-01-16,Male,1986-01-30,30,25 - 45,African-American,0,2,0,0,2,-1,2013-01-15 09:30:53,2013-01-16 01:24:06,12006115CF10A,,2013-01-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-16,Risk of Violence,3,Low,2013-01-16,2014-12-22,2014-12-23,2,0,705,0,0\r\n3104,johane kemp,johane,kemp,2013-04-30,Female,1983-10-22,32,25 - 45,Other,0,1,0,0,0,-1,2013-04-29 06:48:57,2013-04-30 02:02:05,13008298MM10A,2013-04-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-30,Risk of Violence,1,Low,2013-04-30,2013-04-29,2013-04-30,0,0,1067,0,0\r\n3107,richard lemmon,richard,lemmon,2014-03-28,Male,1970-03-27,46,Greater than 45,Caucasian,0,1,0,0,0,0,2014-03-28 03:06:42,2014-03-28 01:21:28,14012341MU10A,2014-03-27,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-28,Risk of Violence,1,Low,2014-03-28,2014-03-28,2014-03-28,0,0,735,0,0\r\n3110,paola arango,paola,arango,2014-06-14,Male,1994-10-21,21,Less than 25,Caucasian,0,4,0,1,0,-1,2014-06-13 03:47:26,2014-06-14 01:59:39,14009363MM10A,2014-06-13,,1,M,Battery,1,15001697MM20A,(M1),,2015-06-29,Battery,,,,1,15001697MM20A,(M1),2015-06-29,Battery,Risk of Recidivism,4,Low,2014-06-14,Risk of Violence,5,Medium,2014-06-14,2014-06-13,2014-06-14,0,0,380,1,1\r\n3111,broderick westbrook,broderick,westbrook,2013-04-01,Male,1987-05-02,28,25 - 45,African-American,4,9,0,0,6,,,,11025606MM10A,2011-11-21,,497,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-01,Risk of Violence,9,High,2013-04-01,2005-01-18,2006-07-17,6,0,1096,0,0\r\n3112,emmanuel brown,emmanuel,brown,2013-05-22,Male,1980-08-20,35,25 - 45,African-American,0,8,0,0,0,-1,2013-05-21 04:36:41,2013-05-22 07:44:42,13007247CF10A,2013-05-21,,1,F,Pos Cannabis W/Intent Sel/Del,1,16008420TC40A,(M2),,2016-01-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2013-05-22,Risk of Violence,2,Low,2013-05-22,2013-05-21,2013-05-22,0,0,955,1,0\r\n3113,rafael martinezreyes,rafael,martinezreyes,2014-12-23,Male,1981-08-06,34,25 - 45,Hispanic,0,3,0,0,2,-1,2014-12-22 05:50:19,2015-01-01 04:05:16,14016937CF10A,2014-12-22,,1,F,Use of Anti-Shoplifting Device,1,15014766CF10A,(F3),0,2015-11-13,Use of Anti-Shoplifting Device,2015-11-13,2015-12-18,,0,,,,,Risk of Recidivism,3,Low,2014-12-23,Risk of Violence,2,Low,2014-12-23,2015-11-13,2015-12-18,2,9,325,1,1\r\n3114,duc nguyen,duc,nguyen,2014-01-23,Male,1974-10-16,41,25 - 45,Asian,0,8,0,0,2,-1,2014-01-22 07:06:45,2014-07-03 06:02:40,14000937CF10A,2014-01-22,,1,F,Felony Petit Theft,1,14014698CF10A,(F3),0,2014-11-01,Grand Theft in the 3rd Degree,2014-11-01,2014-11-26,,0,,,,,Risk of Recidivism,8,High,2014-01-23,Risk of Violence,2,Low,2014-01-23,2014-11-01,2014-11-26,2,161,282,1,1\r\n3115,mary oneal,mary,oneal,2013-10-09,Female,1975-12-03,40,25 - 45,African-American,0,4,0,0,7,-33,2013-09-06 05:20:15,2013-09-08 01:45:57,13017027MM10A,2013-09-06,,33,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-09,Risk of Violence,1,Low,2013-10-09,2014-01-21,2014-01-24,7,0,104,0,0\r\n3116,paret baker,paret,baker,2013-01-18,Male,1992-10-31,23,Less than 25,African-American,0,10,0,0,1,-1,2013-01-17 10:19:58,2013-02-02 08:32:52,13000839CF10A,2013-01-17,,1,F,Grand Theft in the 3rd Degree,1,13004898CF10A,(F3),0,2013-04-05,Grand Theft in the 3rd Degree,2013-04-05,2013-05-05,,0,,,,,Risk of Recidivism,10,High,2013-01-18,Risk of Violence,10,High,2013-01-18,2013-04-05,2013-05-05,1,15,77,1,1\r\n3117,darren walters,darren,walters,2014-11-03,Male,1993-03-01,23,Less than 25,African-American,0,6,0,0,3,-1,2014-11-02 05:56:22,2014-11-04 03:26:47,14014718CF10A,2014-11-02,,1,F,Grand Theft in the 3rd Degree,1,15001674MM20A,(M1),13,2015-06-04,Trespass Other Struct/Conve,2015-06-17,2015-06-19,,0,,,,,Risk of Recidivism,6,Medium,2014-11-03,Risk of Violence,5,Medium,2014-11-03,2014-11-02,2014-11-04,3,1,213,1,1\r\n3118,jarrod jones,jarrod,jones,2013-04-27,Male,1987-04-30,28,25 - 45,African-American,0,4,0,0,2,0,2013-04-27 10:40:34,2013-04-30 07:29:42,13008138MM10A,2013-04-27,,0,M,Resist/Obstruct W/O Violence,1,15007603CF10A,(F3),0,2015-06-10,Retail Theft $300 1st Offense,2015-06-10,2015-06-11,,0,,,,,Risk of Recidivism,4,Low,2013-04-27,Risk of Violence,3,Low,2013-04-27,2015-01-05,2015-01-06,2,3,618,0,0\r\n3120,michael fernandez,michael,fernandez,2013-10-27,Male,1994-11-27,21,Less than 25,Hispanic,0,4,0,0,0,0,2013-10-27 02:38:28,2013-10-27 08:27:39,13015013CF10A,2013-10-26,,1,F,Possession Of Alprazolam,1,14004255MM10A,(M1),,2013-11-11,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-27,Risk of Violence,6,Medium,2013-10-27,2013-10-27,2013-10-27,0,0,15,1,1\r\n3122,shawn carter,shawn,carter,2013-05-19,Male,1969-08-24,46,Greater than 45,Caucasian,0,4,0,1,2,-1,2013-05-18 04:22:57,2013-05-21 07:08:22,13009578MM10A,2013-05-18,,1,M,Possess Cannabis/20 Grams Or Less,1,15006360MO10A,(CO3),0,2015-06-11,Drink/Premises Licensed Estab,2015-06-11,2015-06-12,,0,,,,,Risk of Recidivism,4,Low,2013-05-19,Risk of Violence,1,Low,2013-05-19,2015-06-11,2015-06-12,2,2,753,1,0\r\n3129,derick daniels,derick,daniels,2013-10-30,Male,1959-10-13,56,Greater than 45,African-American,0,2,0,0,1,-1,2013-10-29 08:23:19,2013-10-30 06:28:18,13013916CF10A,,2013-10-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2013-10-29,2013-10-30,1,0,884,0,0\r\n3130,loki fields,loki,fields,2013-05-07,Male,1975-03-11,41,25 - 45,African-American,0,6,0,0,19,-71,2013-02-25 01:38:54,2013-04-28 01:58:15,13002850CF10A,2013-02-25,,71,F,Driving While License Revoked,1,15012102CF10A,(F1),,2015-09-18,Possession Of Cocaine 1000FT Sch,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-07,Risk of Violence,3,Low,2013-05-07,2013-02-25,2013-04-28,19,0,864,1,0\r\n3131,fernando rios,fernando,rios,2014-01-10,Male,1975-08-11,40,25 - 45,Hispanic,0,5,0,0,8,-1,2014-01-09 02:59:18,2014-01-09 08:53:31,14000380CF10A,2014-01-09,,1,F,Possession of Cocaine,1,15024620TC10A,(M2),1,2015-08-31,Operating W/O Valid License,2015-09-01,2015-09-10,,0,,,,,Risk of Recidivism,5,Medium,2014-01-10,Risk of Violence,2,Low,2014-01-10,2014-05-28,2014-06-04,8,0,138,0,1\r\n3132,jose medina,jose,medina,2014-11-21,Male,1985-08-01,30,25 - 45,Hispanic,0,3,0,0,5,-1,2014-11-20 03:28:50,2014-11-22 08:20:08,14015633CF10A,,2014-11-20,1,F,arrest case no charge,1,15050387TC40A,(M2),,2015-08-23,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2014-11-21,Risk of Violence,2,Low,2014-11-21,2014-11-20,2014-11-22,5,1,275,1,1\r\n3134,kelcie jumper,kelcie,jumper,2014-01-31,Male,1992-03-05,24,Less than 25,African-American,0,4,0,0,1,-1,2014-01-30 11:29:50,2014-01-31 08:13:34,14001699MM10A,2014-01-30,,1,M,Battery,1,14013041MM10A,(M1),0,2014-08-31,Battery,2014-08-31,2014-09-01,,1,14013041MM10A,(M1),2014-08-31,Battery,Risk of Recidivism,4,Low,2014-01-31,Risk of Violence,6,Medium,2014-01-31,2014-08-31,2014-09-01,1,0,212,1,1\r\n3135,cornelius brown,cornelius,brown,2013-02-04,Male,1990-09-09,25,25 - 45,African-American,0,8,0,1,7,507,2014-06-26 11:31:47,2014-07-09 06:02:45,12018443CF10A,2012-12-19,,47,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-04,Risk of Violence,9,High,2013-02-04,2014-06-26,2014-07-09,7,0,507,0,0\r\n3136,xochitl roberts,xochitl,roberts,2014-02-17,Female,1982-10-20,33,25 - 45,Caucasian,0,1,0,0,0,-1,2014-02-16 11:09:24,2014-02-17 01:44:55,14002693MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-17,Risk of Violence,1,Low,2014-02-17,2014-02-16,2014-02-17,0,0,774,0,0\r\n3137,steven wilson,steven,wilson,2013-02-24,Male,1967-06-29,48,Greater than 45,Caucasian,0,8,0,0,2,-1,2013-02-23 02:23:02,2013-02-27 08:21:29,13008289TC10A,,2013-02-23,1,M,arrest case no charge,1,15009605MM10A,(M1),0,2015-09-09,Battery,2015-09-09,2015-09-10,,1,15009605MM10A,(M1),2015-09-09,Battery,Risk of Recidivism,8,High,2013-02-24,Risk of Violence,5,Medium,2013-02-24,2013-08-26,2013-08-27,2,3,183,0,0\r\n3138,guerry jean,guerry,jean,2013-08-14,Male,1982-11-04,33,25 - 45,African-American,0,6,0,0,11,-1,2013-08-13 09:01:33,2013-09-27 03:40:51,13011357CF10A,2013-08-13,,1,F,\"Poss 3,4 MDMA (Ecstasy)\",1,14014669CF10A,(F2),1,2014-11-01,Poss Cocaine/Intent To Del/Sel,2014-11-02,2015-01-09,,0,,,,,Risk of Recidivism,6,Medium,2013-08-14,Risk of Violence,2,Low,2013-08-14,2013-08-13,2013-09-27,11,44,444,1,1\r\n3139,jose llerena,jose,llerena,2013-12-07,Male,1990-09-03,25,25 - 45,Hispanic,0,7,0,0,0,-1,2013-12-06 05:45:53,2013-12-07 01:44:27,13016910CF10A,2013-12-06,,1,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-07,Risk of Violence,5,Medium,2013-12-07,2014-06-18,2014-06-18,0,0,193,0,0\r\n3143,justin swanson,justin,swanson,2013-09-25,Male,1990-10-30,25,25 - 45,Caucasian,0,8,0,0,6,70,2013-12-04 08:42:55,2013-12-05 12:14:36,13004026CF10A,2013-03-20,,189,F,False Ownership Info/Pawn Item,1,14007756CF10A,(F3),139,2014-04-24,False Verif Ownership Pawn Shp,2014-09-10,2015-05-11,,0,,,,,Risk of Recidivism,8,High,2013-09-25,Risk of Violence,5,Medium,2013-09-25,2013-12-04,2013-12-05,6,0,70,0,1\r\n3144,keith powell,keith,powell,2014-09-03,Male,1957-06-10,58,Greater than 45,African-American,0,7,0,0,38,-112,2014-05-14 03:39:11,2014-08-09 04:17:17,14006742CF10A,2014-05-14,,112,F,Felony Petit Theft,1,15004622CF10A,(F3),0,2015-04-08,Use of Anti-Shoplifting Device,2015-04-08,2015-06-24,,0,,,,,Risk of Recidivism,7,Medium,2014-09-03,Risk of Violence,2,Low,2014-09-03,2015-04-08,2015-06-24,38,0,217,1,1\r\n3145,michael avila,michael,avila,2014-12-14,Male,1985-09-04,30,25 - 45,African-American,0,5,1,1,7,-1,2014-12-13 08:41:14,2014-12-14 02:15:24,14016564CF10A,2014-12-13,,1,F,Possess Countrfeit Credit Card,1,15063765TC40A,(M2),,2015-11-03,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,5,Medium,2014-12-14,Risk of Violence,3,Low,2014-12-14,2015-03-17,2015-03-18,7,0,93,0,1\r\n3146,dayner rodriguez,dayner,rodriguez,2014-08-03,Male,1979-01-19,37,25 - 45,Hispanic,0,3,0,0,0,-1,2014-08-02 08:54:03,2014-08-05 04:53:29,14010547CF10A,2014-08-02,,1,F,Tamper With Witness/Victim/CI,1,15015294CF10A,(F2),1,2015-11-27,Throw Deadly Missile Into Veh,2015-11-28,2015-12-01,,1,15012743MM10A,(M1),2015-11-27,Battery,Risk of Recidivism,3,Low,2014-08-03,Risk of Violence,2,Low,2014-08-03,2014-08-02,2014-08-05,0,2,481,1,1\r\n3152,kimberly willie,kimberly,willie,2013-12-11,Female,1972-12-25,43,25 - 45,Caucasian,0,8,0,0,7,-21,2013-11-20 09:22:12,2013-11-29 01:21:20,13016158CF10A,2013-11-20,,21,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-11,Risk of Violence,4,Low,2013-12-11,2013-11-20,2013-11-29,7,0,842,0,0\r\n3153,shane eisner,shane,eisner,2013-04-22,Male,1983-06-21,32,25 - 45,Caucasian,0,3,0,0,0,0,2013-04-22 02:12:26,2013-04-23 03:37:52,13005786CF10A,2013-04-21,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-22,Risk of Violence,2,Low,2013-04-22,2013-06-14,2013-06-19,0,1,53,0,0\r\n3154,dane whyte,dane,whyte,2013-09-14,Male,1982-08-19,33,25 - 45,Other,0,7,0,0,3,-1,2013-09-13 09:19:08,2013-09-14 07:26:07,13012946CF10A,,2013-09-13,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-14,Risk of Violence,2,Low,2013-09-14,2013-11-04,2013-11-05,3,0,51,0,0\r\n3155,gasmy theard,gasmy,theard,2014-09-30,Male,1976-09-26,39,25 - 45,Other,0,2,1,0,4,-30,2014-08-31 01:21:04,2014-08-31 01:51:52,14011853CF10A,2014-08-30,,31,F,Poss Pyrrolidinovalerophenone,1,15000744MM10A,(M2),0,2015-01-20,Trespass Struct/Conveyance,2015-01-20,2015-01-26,,0,,,,,Risk of Recidivism,2,Low,2014-09-30,Risk of Violence,1,Low,2014-09-30,2015-01-20,2015-01-26,4,0,112,1,1\r\n3156,michael leigh,michael,leigh,2013-10-04,Male,1966-10-15,49,Greater than 45,Caucasian,0,1,0,0,4,-11,2013-09-23 10:48:21,2013-09-29 02:37:04,13013400CF10A,2013-09-18,,16,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-04,Risk of Violence,2,Low,2013-10-04,2013-09-23,2013-09-29,4,0,910,0,0\r\n3157,max lerner,max,lerner,2013-01-15,Male,1991-04-21,24,Less than 25,Caucasian,0,4,0,0,0,-1,2013-01-14 12:16:45,2013-02-02 02:34:30,13000630CF10A,2013-01-14,,1,F,Robbery W/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-15,Risk of Violence,5,Medium,2013-01-15,2013-01-14,2013-02-02,0,18,1172,0,0\r\n3158,dontay lubin,dontay,lubin,2013-03-20,Male,1990-01-29,26,25 - 45,African-American,0,9,0,0,1,0,2013-03-20 12:31:18,2013-03-20 08:23:50,13003991CF10A,2013-03-19,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-20,Risk of Violence,8,High,2013-03-20,2013-10-30,2013-11-02,1,0,224,0,0\r\n3159,robert potenziani,robert,potenziani,2013-12-23,Male,1974-02-10,42,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-22 11:07:53,2013-12-24 06:33:34,13017633CF10A,2013-12-22,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-22,2013-12-24,0,1,830,0,0\r\n3160,deandre smith,deandre,smith,2013-04-06,Male,1994-03-04,22,Less than 25,African-American,0,6,0,0,1,-1,2013-04-05 02:06:31,2013-04-11 08:20:38,13004929CF10A,2013-04-05,,1,F,Burglary Unoccupied Dwelling,1,13005289CF10A,(M1),0,2013-04-12,Possess Cannabis/20 Grams Or Less,2013-04-12,2013-04-14,,0,,,,,Risk of Recidivism,6,Medium,2013-04-06,Risk of Violence,6,Medium,2013-04-06,2013-04-12,2013-04-14,1,5,6,1,1\r\n3161,jaime rivas,jaime,rivas,2013-01-29,Male,1979-12-21,36,25 - 45,Hispanic,0,1,0,0,0,0,2013-01-29 04:06:41,2013-01-29 08:19:17,13001426CF10A,2013-01-29,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-29,2013-01-29,0,0,1158,0,0\r\n3162,christopher neff,christopher,neff,2014-04-11,Male,1986-06-19,29,25 - 45,Caucasian,0,7,0,1,7,-1,2014-04-10 11:56:45,2014-05-08 05:09:20,14006220MM10A,2014-04-10,,1,M,Battery,1,14013070MM10A,(M2),0,2014-08-31,Trespass Structure/Conveyance,2014-08-31,2014-09-06,,1,14013070MM10A,(M1),2014-08-31,Assault On Law Enforc Officer,Risk of Recidivism,7,Medium,2014-04-11,Risk of Violence,6,Medium,2014-04-11,2014-08-31,2014-09-06,7,27,142,1,1\r\n3163,stephen peters,stephen,peters,2013-09-09,Male,1976-08-22,39,25 - 45,Caucasian,0,3,0,0,0,0,2013-09-09 02:46:49,2013-09-27 03:40:24,13017188MM10A,2013-09-09,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-09,Risk of Violence,3,Low,2013-09-09,2013-09-09,2013-09-27,0,18,935,0,0\r\n3164,ronald lalanne,ronald,lalanne,2014-06-04,Male,1988-11-10,27,25 - 45,African-American,0,6,2,1,13,0,2014-06-04 01:09:19,2014-06-18 04:53:40,13014741CF10A,,2014-06-04,0,F,arrest case no charge,1,14023908TC10A,(M2),0,2014-06-26,Reckless Driving,2014-06-26,2014-06-27,,0,,,,,Risk of Recidivism,6,Medium,2014-06-04,Risk of Violence,3,Low,2014-06-04,2014-06-26,2014-06-27,13,14,22,1,1\r\n3165,anthony stilwell,anthony,stilwell,2013-10-13,Male,1978-01-02,38,25 - 45,Caucasian,0,5,0,0,2,-1,2013-10-12 09:25:18,2013-10-20 02:55:08,13014292CF10A,2013-10-12,,1,F,Possession of Cocaine,1,15012230TC10A,(M2),0,2015-04-17,Driving License Suspended,2015-04-17,2015-04-23,,0,,,,,Risk of Recidivism,5,Medium,2013-10-13,Risk of Violence,3,Low,2013-10-13,2014-03-05,2014-03-12,2,7,143,0,1\r\n3166,miguel garcia-silverio,miguel,garcia-silverio,2014-11-10,Male,1995-11-18,20,Less than 25,Caucasian,0,2,0,0,0,-1,2014-11-09 09:10:36,2014-11-13 03:36:54,14015157CF10A,2014-11-10,,0,F,Burglary Conveyance Unoccup,1,14015209CF10A,(F3),99,2014-11-11,Burglary Conveyance Unoccup,2015-02-18,2015-03-12,,0,,,,,Risk of Recidivism,2,Low,2014-11-10,Risk of Violence,5,Medium,2014-11-10,2014-11-09,2014-11-13,0,0,1,1,1\r\n3168,joshua ross,joshua,ross,2013-08-04,Male,1990-12-15,25,25 - 45,African-American,2,10,0,0,4,-1,2013-08-03 02:09:27,2013-10-28 10:42:44,11013003CF10A,,2013-08-03,1,F,arrest case no charge,1,14003185MM10A,(M1),0,2014-02-24,Possess Cannabis/20 Grams Or Less,2014-02-24,2014-04-10,,0,,,,,Risk of Recidivism,10,High,2013-08-04,Risk of Violence,7,Medium,2013-08-04,2013-12-14,2014-01-06,4,85,132,0,1\r\n3169,adriana jurado,adriana,jurado,2013-12-02,Male,1963-04-05,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-01 05:45:15,2013-12-02 01:31:10,13022379MM10A,2013-12-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-02,0,0,851,0,0\r\n3170,precious mccray,precious,mccray,2014-05-16,Female,1988-10-02,27,25 - 45,African-American,0,8,0,0,0,-1,2014-05-15 10:48:03,2014-05-22 06:23:29,14007954MM10A,2014-05-15,,1,M,Battery,1,14075716TC40A,(M2),314,2014-08-09,Operating W/O Valid License,2015-06-19,2015-06-25,,0,,,,,Risk of Recidivism,8,High,2014-05-16,Risk of Violence,4,Low,2014-05-16,2014-05-15,2014-05-22,0,6,85,1,1\r\n3174,angeles etienne,angeles,etienne,2014-02-22,Male,1995-04-09,21,Less than 25,Other,0,5,0,0,0,-1,2014-02-21 04:58:53,2014-02-27 12:46:17,14002490CF10A,2014-02-21,,1,F,Burglary Structure Unoccup,1,14008615MM10A,(M2),0,2014-05-29,Trespass Struct/Conveyance,2014-05-29,2014-05-30,,1,15001591CF10A,(F1),2015-01-21,Robbery W/Firearm,Risk of Recidivism,5,Medium,2014-02-22,Risk of Violence,8,High,2014-02-22,2014-05-29,2014-05-30,0,5,96,1,1\r\n3175,giuseppe daal,giuseppe,daal,2014-03-20,Male,1966-04-07,50,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-03-19 01:45:38,2014-03-24 07:17:06,14004781MM10A,2014-03-19,,1,M,Viol Injunct Domestic Violence,1,14015665MM10A,(M1),0,2014-10-29,Viol Injunct Domestic Violence,2014-10-29,2014-11-11,,0,,,,,Risk of Recidivism,1,Low,2014-03-20,Risk of Violence,1,Low,2014-03-20,2014-10-29,2014-11-11,1,4,223,1,1\r\n3176,sherwin samuel,sherwin,samuel,2013-10-19,Male,1974-09-22,41,25 - 45,African-American,0,5,0,0,4,-1,2013-10-18 09:30:02,2013-10-19 08:19:06,13014610CF10A,2013-10-18,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-19,Risk of Violence,2,Low,2013-10-19,2013-10-18,2013-10-19,4,0,895,0,0\r\n3177,bedson petithomme,bedson,petithomme,2013-05-09,Male,1981-09-21,34,25 - 45,African-American,0,2,0,0,4,378,2014-05-22 03:04:26,2015-11-03 06:27:10,13004134CF10A,2012-10-02,,219,F,Aggravated Battery / Pregnant,1,14010379TC10A,(M2),,2014-02-26,Fail Register Vehicle,,,,1,14007376CF10A,(F2),2014-05-21,Sexual Battery / Vict 12 Yrs +,Risk of Recidivism,2,Low,2013-05-09,Risk of Violence,1,Low,2013-05-09,2015-11-03,2016-04-02,4,0,293,1,1\r\n3178,alexander khan,alexander,khan,2014-11-09,Male,1993-06-10,22,Less than 25,Caucasian,0,8,0,2,5,-2,2014-11-07 08:17:57,2014-11-12 04:12:00,14015012CF10A,2014-11-07,,2,F,Possession Of Alprazolam,1,14015400CF10A,(F3),0,2014-11-15,Possession of Cocaine,2014-11-15,2014-12-20,,1,15004748CF10A,(F3),2015-04-10,Battery on Law Enforc Officer,Risk of Recidivism,8,High,2014-11-09,Risk of Violence,6,Medium,2014-11-09,2014-11-15,2014-12-20,5,3,6,1,1\r\n3181,sean vasquez,sean,vasquez,2013-02-01,Male,1993-09-27,22,Less than 25,Caucasian,0,7,0,2,0,-1,2013-01-31 10:40:18,2013-02-03 09:00:10,13001555CF10A,2013-01-31,,1,F,Grand Theft (Motor Vehicle),1,13015139MM10A,(M1),1,2013-08-11,Battery,2013-08-12,2013-11-07,,1,13015139MM10A,(M1),2013-08-11,Battery,Risk of Recidivism,7,Medium,2013-02-01,Risk of Violence,6,Medium,2013-02-01,2013-05-04,2013-05-10,0,2,92,0,1\r\n3182,christopher rich,christopher,rich,2013-01-03,Male,1990-09-03,25,25 - 45,African-American,0,5,0,0,2,-1,2013-01-02 11:31:06,2013-01-29 09:34:50,13000085CF10A,2013-01-02,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-03,Risk of Violence,3,Low,2013-01-03,2013-01-02,2013-01-29,2,26,1184,0,0\r\n3183,merrill noel,merrill,noel,2014-02-15,Male,1973-07-16,42,25 - 45,African-American,0,4,0,0,1,-1,2014-02-14 01:19:08,2014-02-15 08:36:39,14002125CF10A,2014-02-14,,1,F,Felony Driving While Lic Suspd,1,14041158TC10A,(M2),0,2014-10-28,Fail Register Vehicle,2014-10-28,2014-10-29,,0,,,,,Risk of Recidivism,4,Low,2014-02-15,Risk of Violence,3,Low,2014-02-15,2014-10-28,2014-10-29,1,0,255,1,1\r\n3186,alexandra dovolis,alexandra,dovolis,2013-11-26,Female,1988-05-06,27,25 - 45,Caucasian,0,3,0,0,2,-34,2013-10-23 07:51:42,2013-10-24 08:39:18,13014864CF10A,2013-10-23,,34,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-26,Risk of Violence,3,Low,2013-11-26,2014-08-06,2014-08-13,2,0,253,0,0\r\n3188,errol freckleton,errol,freckleton,2013-02-20,Male,1964-08-03,51,Greater than 45,Other,0,1,0,0,2,-1,2013-02-19 03:55:09,2013-02-20 07:10:16,13002528CF10A,,2013-02-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-02-19,2013-02-20,2,0,1136,0,0\r\n3189,frederick barbary,frederick,barbary,2013-04-03,Male,1982-10-15,33,25 - 45,African-American,0,9,0,0,23,525,2014-09-10 09:21:33,2015-09-15 06:50:00,11017941CF10A,,2013-04-02,1,F,arrest case no charge,1,14012310CF10A,(M1),0,2014-09-10,Resist/Obstruct W/O Violence,2014-09-10,2015-09-15,,0,,,,,Risk of Recidivism,9,High,2013-04-03,Risk of Violence,8,High,2013-04-03,2014-09-10,2015-09-15,23,0,525,1,1\r\n3190,jonathan garber,jonathan,garber,2013-01-12,Male,1991-06-03,24,Less than 25,African-American,0,3,0,1,0,0,2013-01-12 12:29:56,2013-01-12 01:19:46,13000527CF10A,2013-01-11,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-12,Risk of Violence,5,Medium,2013-01-12,2013-01-12,2013-01-12,0,0,1175,0,0\r\n3191,marlon miller,marlon,miller,2013-08-27,Male,1978-10-13,37,25 - 45,African-American,0,4,0,0,4,0,2013-08-27 02:58:00,2013-11-28 02:15:32,12014646CF10A,,2013-08-27,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-27,Risk of Violence,2,Low,2013-08-27,2013-08-27,2013-11-28,4,93,948,0,0\r\n3192,brad clark,brad,clark,2013-04-29,Male,1979-03-14,37,25 - 45,Caucasian,0,1,0,0,0,-3,2013-04-26 04:52:50,2013-04-26 07:29:03,13008331MM10A,2013-04-26,,3,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-26,2013-04-26,0,0,1068,0,0\r\n3197,lamar queenbourrows,lamar,queenbourrows,2013-01-22,Female,1988-12-13,27,25 - 45,Other,0,2,0,0,0,-1,2013-01-21 11:20:20,2013-01-22 09:49:51,13001428MM10A,2013-01-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-22,Risk of Violence,2,Low,2013-01-22,2013-01-21,2013-01-22,0,0,1165,0,0\r\n3198,travis moss,travis,moss,2013-01-31,Male,1995-01-26,21,Less than 25,Other,0,6,0,0,0,-1,2013-01-30 07:10:03,2013-02-04 10:22:57,13001504CF10A,2013-01-30,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-31,Risk of Violence,6,Medium,2013-01-31,2013-05-08,2013-09-10,0,4,97,0,0\r\n3200,javon harris,javon,harris,2013-01-21,Male,1980-05-10,35,25 - 45,African-American,0,1,0,0,1,0,2013-01-21 03:33:22,2013-01-22 06:23:53,13000986CF10A,2013-01-21,,0,F,Aggravated Battery / Pregnant,1,13004540CF10A,(F2),0,2013-03-29,Aggravated Battery / Pregnant,2013-03-29,2013-03-31,,1,13004540CF10A,(F2),2013-03-29,Aggravated Battery / Pregnant,Risk of Recidivism,1,Low,2013-01-21,Risk of Violence,1,Low,2013-01-21,2013-03-29,2013-03-31,1,1,67,1,1\r\n3203,cassandra hendricks,cassandra,hendricks,2013-10-09,Female,1991-08-17,24,Less than 25,Caucasian,0,8,0,0,0,-1,2013-10-08 12:11:04,2013-11-14 06:47:36,13014106CF10A,2013-10-08,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-09,Risk of Violence,5,Medium,2013-10-09,2014-01-27,2014-04-21,0,36,110,0,0\r\n3204,jeffery turcotte,jeffery,turcotte,2013-03-08,Male,1995-02-27,21,Less than 25,Other,1,7,0,0,1,,,,12016746CF10A,,2012-11-15,113,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-08,Risk of Violence,8,High,2013-03-08,,,1,0,1120,0,0\r\n3205,john gough,john,gough,2013-01-22,Male,1967-04-18,49,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-01-21 01:43:09,2013-01-22 09:04:24,13001417MM10A,2013-01-21,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-22,Risk of Violence,1,Low,2013-01-22,2013-08-25,2013-09-09,2,0,215,0,0\r\n3206,derrico miller,derrico,miller,2013-09-03,Male,1977-06-22,38,25 - 45,African-American,0,6,0,0,9,-5,2013-08-29 04:44:36,2013-09-01 02:25:46,13008193CF10A,,2013-08-30,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-03,Risk of Violence,8,High,2013-09-03,2014-04-23,2014-05-01,9,0,232,0,0\r\n3207,motilall nokta,motilall,nokta,2013-07-10,Male,1955-03-08,61,Greater than 45,Other,0,1,0,0,0,-1,2013-07-09 08:23:34,2013-07-10 01:55:35,13013043MM10A,2013-07-09,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-10,Risk of Violence,1,Low,2013-07-10,2013-07-09,2013-07-10,0,0,996,0,0\r\n3208,tyara thomas,tyara,thomas,2014-01-12,Female,1986-04-03,30,25 - 45,African-American,0,2,0,0,0,0,2014-01-12 01:20:12,2014-01-12 07:13:40,14000555MM10A,2014-01-12,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-12,Risk of Violence,2,Low,2014-01-12,2014-01-12,2014-01-12,0,0,810,0,0\r\n3209,keon lamar,keon,lamar,2013-04-26,Male,1993-08-15,22,Less than 25,African-American,0,6,0,0,3,-1,2013-04-25 03:56:18,2013-08-31 05:22:10,13005931CF10A,2013-04-25,,1,F,Battery on a Person Over 65,1,15012390CF10A,(M1),0,2015-09-24,Battery,2015-09-24,2015-11-03,,1,15012390CF10A,(F3),2015-09-24,Aggravated Assault W/Dead Weap,Risk of Recidivism,6,Medium,2013-04-26,Risk of Violence,5,Medium,2013-04-26,2015-09-24,2015-11-03,3,127,881,1,0\r\n3212,amsterby etienne,amsterby,etienne,2014-11-22,Male,1990-12-17,25,25 - 45,African-American,0,7,0,0,0,-1,2014-11-21 08:15:55,2014-11-23 04:38:36,14015717CF10A,2014-11-21,,1,F,Poss Counterfeit Payment Inst,1,15016272TC10A,(M2),0,2015-04-29,Operating W/O Valid License,2015-04-29,2015-06-12,,0,,,,,Risk of Recidivism,7,Medium,2014-11-22,Risk of Violence,3,Low,2014-11-22,2015-04-29,2015-06-12,0,1,158,1,1\r\n3214,maria arezo,maria,arezo,2014-10-01,Female,1986-04-16,30,25 - 45,Hispanic,0,3,0,0,3,-1,2014-09-30 01:56:49,2014-10-01 02:05:33,14014387MM10A,2014-09-30,,1,M,Battery,1,15007202CF10A,(F3),,2015-06-02,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,3,Low,2014-10-01,Risk of Violence,2,Low,2014-10-01,2014-09-30,2014-10-01,3,0,244,1,1\r\n3215,paul degiovanni,paul,degiovanni,2013-11-16,Male,1963-08-23,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-15 11:16:23,2013-11-16 08:06:35,13021541MM10A,2013-11-15,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-16,Risk of Violence,1,Low,2013-11-16,2013-11-15,2013-11-16,0,0,867,0,0\r\n3217,joseph villa,joseph,villa,2014-03-24,Male,1989-06-26,26,25 - 45,Caucasian,0,2,0,0,0,-1,2014-03-23 06:32:39,2014-03-24 02:29:51,14004090CF10A,2014-03-23,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-24,Risk of Violence,3,Low,2014-03-24,2014-03-23,2014-03-24,0,0,739,0,0\r\n3218,robertson saintgermain,robertson,saintgermain,2014-03-15,Male,1989-12-15,26,25 - 45,Other,0,4,0,0,0,-1,2014-03-14 03:02:25,2014-03-15 07:47:36,14004479MM10A,2014-03-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-15,Risk of Violence,2,Low,2014-03-15,2014-03-14,2014-03-15,0,0,748,0,0\r\n3222,nicholas bynum,nicholas,bynum,2013-10-24,Male,1986-05-29,29,25 - 45,African-American,0,7,1,0,6,-55,2013-08-30 05:39:42,2013-08-30 08:16:58,13012288CF10A,2013-08-30,,55,F,Felon in Pos of Firearm or Amm,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-24,Risk of Violence,5,Medium,2013-10-24,2014-08-21,2014-08-29,6,0,301,0,0\r\n3223,jason palgon,jason,palgon,2014-11-21,Male,1971-02-07,45,Greater than 45,Caucasian,0,9,0,0,9,-1,2014-11-20 07:34:26,2015-01-14 05:25:12,14015628CF10A,2014-11-20,,1,F,Felony Petit Theft,1,15016642CF10A,(F3),,2015-12-30,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,9,High,2014-11-21,Risk of Violence,4,Low,2014-11-21,2015-08-25,2015-08-26,9,54,277,0,1\r\n3225,brandon brown,brandon,brown,2014-12-28,Male,1995-07-05,20,Less than 25,African-American,0,9,0,0,0,-1,2014-12-27 04:57:38,2014-12-28 01:50:47,14017072CF10A,,2014-12-27,1,F,arrest case no charge,1,15002954CF10A,(F3),0,2015-03-04,Possession of Cannabis,2015-03-04,2015-04-16,,0,,,,,Risk of Recidivism,9,High,2014-12-28,Risk of Violence,7,Medium,2014-12-28,2015-03-04,2015-04-16,0,0,66,1,1\r\n3226,joshua jones,joshua,jones,2013-02-11,Male,1987-04-17,29,25 - 45,African-American,0,8,0,0,4,-1,2013-02-10 06:11:44,2013-05-01 08:08:58,12017246CF10A,,2013-02-09,2,F,arrest case no charge,1,15013975CF10A,(F3),49,2015-09-17,Felony Battery w/Prior Convict,2015-11-05,2015-12-03,,1,15013975CF10A,(F3),2015-09-17,Felony Battery w/Prior Convict,Risk of Recidivism,8,High,2013-02-11,Risk of Violence,9,High,2013-02-11,2014-11-30,2015-03-05,4,79,657,0,0\r\n3227,charles stephens,charles,stephens,2014-12-06,Male,1972-05-04,43,25 - 45,Caucasian,0,6,0,0,1,-1,2014-12-05 10:59:20,2015-02-12 11:41:17,13014406CF10A,,2014-12-05,1,F,arrest case no charge,1,15004373CF10A,(F3),0,2015-04-03,Possession of Cocaine,2015-04-03,2015-09-17,,0,,,,,Risk of Recidivism,6,Medium,2014-12-06,Risk of Violence,4,Low,2014-12-06,2015-04-03,2015-09-17,1,68,118,1,1\r\n3229,albert baldocchi,albert,baldocchi,2013-02-09,Male,1990-01-11,26,25 - 45,Caucasian,0,5,0,0,2,-1,2013-02-08 10:04:37,2013-02-09 01:03:16,13002012CF10A,2013-02-08,,1,F,D.U.I. Serious Bodily Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-09,Risk of Violence,6,Medium,2013-02-09,2013-02-08,2013-02-09,2,0,1147,0,0\r\n3230,stephanie smith,stephanie,smith,2014-01-07,Female,1969-11-30,46,Greater than 45,African-American,0,4,0,0,4,-1,2014-01-06 07:12:43,2014-01-07 01:36:40,14000304CF10A,,2014-01-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-07,Risk of Violence,3,Low,2014-01-07,2014-01-06,2014-01-07,4,0,815,0,0\r\n3232,marlo warthen,marlo,warthen,2014-03-22,Female,1969-09-02,46,Greater than 45,African-American,0,1,0,0,0,-1,2014-03-21 09:47:15,2014-03-22 10:57:18,14004048CF10A,2014-03-21,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-21,2014-03-22,0,0,741,0,0\r\n3234,jon smith,jon,smith,2013-03-21,Male,1976-11-25,39,25 - 45,Caucasian,0,1,0,0,8,-56,2013-01-24 05:38:16,2013-01-25 12:01:11,13001181CF10A,2013-01-24,,56,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,3,Low,2013-03-21,2013-01-24,2013-01-25,8,0,1107,0,0\r\n3236,earl brewer,earl,brewer,2014-02-22,Male,1986-10-07,29,25 - 45,African-American,0,10,0,0,12,-1,2014-02-21 09:47:22,2014-02-27 09:02:04,14002487CF10A,2014-02-21,,1,F,Possession of Cocaine,1,14010954MM10A,(M2),,2014-07-17,Disorderly Conduct,,,,1,15008215CF10A,(F2),2015-06-25,Strong Armed  Robbery,Risk of Recidivism,10,High,2014-02-22,Risk of Violence,7,Medium,2014-02-22,2014-04-01,2014-04-02,12,5,38,0,1\r\n3237,ignacio beguiristain,ignacio,beguiristain,2013-12-03,Male,1975-03-31,41,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-03 12:26:01,2013-12-03 08:36:18,13022422MM10A,2013-12-02,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-03,Risk of Violence,1,Low,2013-12-03,2013-12-03,2013-12-03,0,0,850,0,0\r\n3238,franshun yopp,franshun,yopp,2013-03-23,Male,1986-08-06,29,25 - 45,African-American,0,10,0,1,11,-65,2013-01-17 05:30:09,2013-02-05 09:12:19,13000814CF10A,,2013-03-22,1,F,arrest case no charge,1,15002716CF10A,(F3),0,2015-02-26,Possession Of Methamphetamine,2015-02-26,2015-03-09,,0,,,,,Risk of Recidivism,10,High,2013-03-23,Risk of Violence,7,Medium,2013-03-23,2015-02-26,2015-03-09,11,0,705,1,1\r\n3240,chasidy walker,chasidy,walker,2013-12-08,Female,1990-05-16,25,25 - 45,African-American,0,7,0,0,5,-1,2013-12-07 11:35:44,2013-12-08 07:59:31,13016958CF10A,2013-12-07,,1,F,Poss Anti-Shoplifting Device,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-08,Risk of Violence,3,Low,2013-12-08,2014-01-12,2014-01-12,5,0,35,0,0\r\n3242,maurice bradwell,maurice,bradwell,2013-01-16,Male,1992-07-08,23,Less than 25,African-American,1,7,0,0,2,-1,2013-01-15 04:57:11,2013-02-02 11:24:05,13000722CF10A,2013-01-15,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-16,Risk of Violence,5,Medium,2013-01-16,2015-02-08,2015-05-19,2,17,753,0,0\r\n3243,jennifer williams,jennifer,williams,2013-01-14,Female,1969-09-22,46,Greater than 45,African-American,0,8,0,0,1,51,2013-03-06 01:55:41,2013-04-30 10:17:35,08013538CF10A,,2012-05-14,245,F,arrest case no charge,1,13003348CF10A,(F2),21,2013-02-13,Poss Cocaine/Intent To Del/Sel,2013-03-06,2013-04-30,,0,,,,,Risk of Recidivism,8,High,2013-01-14,Risk of Violence,3,Low,2013-01-14,2015-10-02,2015-12-22,1,0,30,1,1\r\n3246,christopher connelly,christopher,connelly,2013-11-20,Male,1985-06-22,30,25 - 45,Caucasian,0,3,0,0,0,-1,2013-11-19 07:21:09,2013-11-19 08:05:35,13021771MM10A,2013-11-19,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-20,Risk of Violence,2,Low,2013-11-20,2013-11-19,2013-11-19,0,0,863,0,0\r\n3247,joseph farina,joseph,farina,2013-04-26,Male,1981-06-14,34,25 - 45,Caucasian,0,6,0,0,1,-1,2013-04-25 10:30:51,2013-04-28 06:19:11,13003794CF10A,,2013-04-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-26,Risk of Violence,4,Low,2013-04-26,2013-04-25,2013-04-28,1,2,1071,0,0\r\n3248,ronald lake,ronald,lake,2014-03-26,Male,1945-08-15,70,Greater than 45,Caucasian,0,1,0,0,11,-13,2014-03-13 04:24:15,2014-03-26 04:21:19,14003566CF10A,2014-03-13,,13,F,Possession of Cocaine,1,16007232TC10A,(M2),,2015-12-31,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-26,Risk of Violence,1,Low,2014-03-26,2014-03-13,2014-03-26,11,0,645,1,1\r\n3250,peter castanon,peter,castanon,2013-12-10,Male,1964-04-02,52,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-12-09 06:05:20,2013-12-11 03:04:00,11014702CF10A,,2013-12-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-10,Risk of Violence,1,Low,2013-12-10,2013-12-09,2013-12-11,2,1,843,0,0\r\n3255,keith johnson,keith,johnson,2013-10-01,Male,1964-10-10,51,Greater than 45,African-American,0,2,0,0,4,-26,2013-09-05 09:34:45,2013-09-13 05:55:53,13034797TC10A,2013-09-05,,26,M,Susp Drivers Lic 1st Offense,1,15072869TC40A,(M2),1,2015-11-19,Unlaw LicTag/Sticker Attach,2015-11-20,2015-11-25,,0,,,,,Risk of Recidivism,2,Low,2013-10-01,Risk of Violence,2,Low,2013-10-01,2015-11-20,2015-11-25,4,0,779,1,0\r\n3259,stacey sanchez,stacey,sanchez,2013-10-16,Female,1970-09-17,45,Greater than 45,Native American,0,10,0,0,15,-1,2013-10-15 05:37:57,2013-10-16 06:42:14,13014454CF10A,2013-10-15,,1,F,Driving While License Revoked,1,16000514TC40A,(M2),,2015-12-18,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,10,High,2013-10-16,Risk of Violence,9,High,2013-10-16,2013-10-22,2014-03-13,15,0,6,0,1\r\n3260,herbert hathcock,herbert,hathcock,2013-03-20,Male,1960-09-09,55,Greater than 45,African-American,0,6,0,0,21,0,2013-03-20 01:05:06,2013-06-13 02:27:55,13005392CF10A,2013-03-19,,1,F,Felony Battery w/Prior Convict,1,13012437MM10A,(M1),0,2013-06-29,Viol Pretrial Release Dom Viol,2013-06-29,2013-09-10,,0,,,,,Risk of Recidivism,6,Medium,2013-03-20,Risk of Violence,5,Medium,2013-03-20,2013-06-29,2013-09-10,21,85,101,1,1\r\n3261,lori foerster,lori,foerster,2013-09-10,Female,1967-03-24,49,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-09-09 05:23:57,2013-09-10 09:54:48,13012733CF10A,,2013-09-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-09,2013-09-10,1,0,934,0,0\r\n3262,chayla burley,chayla,burley,2013-10-17,Female,1989-11-30,26,25 - 45,African-American,0,6,0,0,9,404,2014-11-25 06:52:56,2014-11-27 04:40:19,13041841TC10A,2013-10-04,,13,M,Driving License Suspended,1,14016781MM10A,(M1),0,2014-11-25,Battery,2014-11-25,2014-11-27,,1,14016781MM10A,(M1),2014-11-25,Battery,Risk of Recidivism,6,Medium,2013-10-17,Risk of Violence,4,Low,2013-10-17,2014-11-25,2014-11-27,9,0,404,1,1\r\n3265,cynthia montalvo,cynthia,montalvo,2013-04-28,Female,1968-04-28,47,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-28 04:12:23,2013-04-28 07:53:11,13006111CF10A,2013-04-28,,0,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-28,Risk of Violence,1,Low,2013-04-28,2013-04-28,2013-04-28,0,0,1069,0,0\r\n3267,byran george,byran,george,2013-08-03,Male,1989-01-23,27,25 - 45,African-American,0,2,0,0,0,0,2013-08-03 07:19:15,2013-08-04 07:57:02,13014653MM10A,2013-08-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-03,Risk of Violence,3,Low,2013-08-03,2013-08-03,2013-08-04,0,1,972,0,0\r\n3268,michael aragon,michael,aragon,2013-03-25,Male,1991-04-07,25,25 - 45,Caucasian,0,7,2,0,5,-3,2013-03-22 06:09:22,2013-03-22 08:23:03,13005659MM10A,2013-03-22,,3,M,DUI Level 0.15 Or Minor In Veh,1,14045320MU10A,(M2),0,2014-12-19,Violation License Restrictions,2014-12-19,2014-12-19,,0,,,,,Risk of Recidivism,7,Medium,2013-03-25,Risk of Violence,4,Low,2013-03-25,2014-12-19,2014-12-19,5,0,634,0,1\r\n3270,dandre nelson,dandre,nelson,2014-12-26,Male,1995-04-11,21,Less than 25,African-American,0,10,1,0,1,0,2014-12-26 01:10:14,2015-02-23 04:43:46,14017033CF10A,,2014-12-26,0,F,arrest case no charge,1,15002210MM10A,(M1),0,2015-02-23,Petit Theft $100- $300,2015-02-23,2015-05-08,,0,,,,,Risk of Recidivism,10,High,2014-12-26,Risk of Violence,9,High,2014-12-26,2015-02-23,2015-05-08,1,59,59,1,1\r\n3272,jamichael hunter,jamichael,hunter,2013-08-10,Male,1978-11-09,37,25 - 45,African-American,0,10,0,1,26,-1,2013-08-09 06:53:53,2013-08-11 03:36:38,13011197CF10A,2013-08-09,,1,F,Driving While License Revoked,1,13016230CF10A,(F3),0,2013-11-22,Driving While License Revoked,2013-11-22,2013-11-23,,0,,,,,Risk of Recidivism,10,High,2013-08-10,Risk of Violence,8,High,2013-08-10,2013-11-22,2013-11-23,26,1,104,1,1\r\n3273,jamarion lee,jamarion,lee,2014-11-15,Male,1994-07-28,21,Less than 25,African-American,0,9,0,0,1,-1,2014-11-14 02:55:06,2015-01-02 05:44:37,14015317CF10A,2014-11-14,,1,F,Possession of Cocaine,1,15007043CF10A,(F3),0,2015-05-29,Poss Pyrrolidinovalerophenone,2015-05-29,2015-06-01,,0,,,,,Risk of Recidivism,9,High,2014-11-15,Risk of Violence,9,High,2014-11-15,2015-05-29,2015-06-01,1,48,195,1,1\r\n3274,craig lawrence,craig,lawrence,2013-06-20,Male,1994-09-25,21,Less than 25,African-American,0,6,0,0,0,-2,2013-06-18 04:27:00,2013-06-19 08:00:00,13008608CF10A,2013-06-18,,2,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-06-20,Risk of Violence,6,Medium,2013-06-20,2013-06-18,2013-06-19,0,0,1016,0,0\r\n3278,herbert mccloud,herbert,mccloud,2014-04-22,Male,1991-04-11,25,25 - 45,African-American,0,10,0,0,4,0,2014-04-22 02:26:58,2014-04-22 08:40:37,14005590CF10A,2014-04-21,,1,F,Possession of Cocaine,1,15012629MM10A,(M2),,2015-12-06,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,10,High,2014-04-22,Risk of Violence,9,High,2014-04-22,2015-06-22,2015-07-08,4,0,426,0,1\r\n3280,tiara higgs,tiara,higgs,2013-11-09,Female,1988-11-25,27,25 - 45,African-American,0,5,0,0,3,-1,2013-11-08 01:54:36,2013-11-09 01:55:33,13015600CF10A,2013-11-08,,1,F,Neglect Child / Bodily Harm,1,14005909TC10A,(M2),,2013-12-12,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-09,Risk of Violence,3,Low,2013-11-09,2015-09-27,2015-09-27,3,0,33,1,1\r\n3281,jason may,jason,may,2013-04-20,Male,1985-09-08,30,25 - 45,Caucasian,0,4,0,0,3,-1,2013-04-19 02:21:45,2013-05-01 10:53:53,13005613CF10A,2013-04-19,,1,F,Crimin Mischief Damage $1000+,1,13038248TC10A,(M2),0,2013-09-15,Susp Drivers Lic 1st Offense,2013-09-15,2013-09-16,,1,14000777CF10A,(F3),2014-01-18,Felony Battery (Dom Strang),Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,4,Low,2013-04-20,2013-09-15,2013-09-16,3,11,148,1,1\r\n3283,ernesto arduz,ernesto,arduz,2014-02-09,Male,1945-05-11,70,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-08 11:37:08,2014-02-09 01:58:03,14005073MU10A,2014-02-08,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-09,Risk of Violence,1,Low,2014-02-09,2014-02-08,2014-02-09,0,0,782,0,0\r\n3284,dante capezzuto,dante,capezzuto,2013-08-24,Male,1979-04-17,37,25 - 45,Caucasian,0,9,0,0,11,-1,2013-08-23 11:47:26,2013-08-24 08:26:35,13011894CF10A,2013-08-23,,1,F,Deliver Cannabis,1,13014892CF10A,(M1),1,2013-10-24,Resist/Obstruct W/O Violence,2013-10-25,2013-10-26,,0,,,,,Risk of Recidivism,9,High,2013-08-24,Risk of Violence,4,Low,2013-08-24,2014-12-05,2014-12-11,11,0,61,1,1\r\n3285,theopholus joyce,theopholus,joyce,2013-04-06,Male,1970-03-28,46,Greater than 45,African-American,0,5,0,0,5,0,2013-04-06 02:32:32,2013-04-08 03:57:15,13004962CF10A,2013-04-06,,0,F,Agg Fleeing and Eluding,1,14004876MM10A,(M1),0,2014-03-20,Possess Cannabis/20 Grams Or Less,2014-03-20,2014-03-21,,0,,,,,Risk of Recidivism,5,Medium,2013-04-06,Risk of Violence,7,Medium,2013-04-06,2014-03-20,2014-03-21,5,2,348,1,1\r\n3286,kevin lee,kevin,lee,2014-06-20,Male,1976-04-02,40,25 - 45,Other,0,1,0,0,4,-1,2014-06-19 01:14:35,2014-06-21 07:18:57,14009627MM10A,2014-06-19,,1,M,Battery,1,15006864MM10A,(M1),280,2015-05-14,Viol Injunct Domestic Violence,2016-02-18,2016-02-23,,0,,,,,Risk of Recidivism,1,Low,2014-06-20,Risk of Violence,1,Low,2014-06-20,2014-06-19,2014-06-21,4,1,328,1,1\r\n3287,kevin lewis,kevin,lewis,2013-10-07,Male,1995-09-15,20,Less than 25,African-American,1,8,0,0,1,427,2014-12-08 07:57:42,2015-07-14 07:11:14,13013097CF10A,2013-06-06,,123,F,Grand Theft in the 3rd Degree,1,14016182CF10A,(F2),,2014-11-19,Burglary Dwelling Occupied,,,,0,,,,,Risk of Recidivism,8,High,2013-10-07,Risk of Violence,8,High,2013-10-07,2015-07-14,2020-01-01,1,0,408,1,1\r\n3288,haywood boyd,haywood,boyd,2013-10-30,Male,1972-05-27,43,25 - 45,African-American,0,4,0,0,18,-1,2013-10-29 03:16:41,2013-11-07 08:56:35,13005858CF10A,,2013-10-29,1,F,arrest case no charge,1,14020066TC10A,(M2),0,2014-05-09,Susp Drivers Lic 1st Offense,2014-05-09,2014-05-18,,0,,,,,Risk of Recidivism,4,Low,2013-10-30,Risk of Violence,3,Low,2013-10-30,2014-05-09,2014-05-18,18,8,191,1,1\r\n3289,levar dawson,levar,dawson,2013-02-19,Male,1977-05-13,38,25 - 45,African-American,0,6,0,0,15,0,2013-02-19 01:33:33,2013-04-15 11:26:03,13002465CF10A,2013-02-18,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-19,Risk of Violence,5,Medium,2013-02-19,2014-10-06,2014-10-07,15,55,594,0,0\r\n3290,kervin bonhometre,kervin,bonhometre,2013-03-13,Male,1986-07-16,29,25 - 45,African-American,0,4,0,0,0,0,2013-03-13 02:31:11,2013-03-13 08:19:46,13003682CF10A,2013-03-12,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-13,Risk of Violence,2,Low,2013-03-13,2013-03-13,2013-03-13,0,0,1115,0,0\r\n3291,terrance murphy,terrance,murphy,2013-01-17,Male,1978-09-15,37,25 - 45,African-American,0,2,0,0,8,0,2013-01-17 02:29:03,2013-01-18 05:36:20,13002944TC10A,2013-01-17,,0,M,Opert With Susp DL 2nd Offens,1,13004860CF10A,(F3),0,2013-04-04,Driving While License Revoked,2013-04-04,2013-04-05,,0,,,,,Risk of Recidivism,2,Low,2013-01-17,Risk of Violence,3,Low,2013-01-17,2013-04-04,2013-04-05,8,1,77,1,1\r\n3292,saul carrion,saul,carrion,2013-10-10,Male,1977-11-19,38,25 - 45,Hispanic,0,4,0,0,3,-21,2013-09-19 02:22:11,2013-09-19 08:08:14,13013183CF10A,2013-09-19,,21,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-10,Risk of Violence,1,Low,2013-10-10,2013-09-19,2013-09-19,3,0,904,0,0\r\n3293,jehan gersbach,jehan,gersbach,2013-07-15,Female,1988-08-16,27,25 - 45,Caucasian,0,3,0,0,0,-4,2013-07-11 11:54:13,2013-07-12 01:44:05,13009762CF10A,2013-07-11,,4,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-15,Risk of Violence,2,Low,2013-07-15,2013-07-11,2013-07-12,0,0,991,0,0\r\n3294,toshiko petit,toshiko,petit,2013-12-10,Female,1995-07-04,20,Less than 25,Other,0,5,0,0,0,0,2013-12-10 12:24:00,2013-12-21 09:53:12,13017015CF10A,2013-12-09,,1,M,Aggravated Assault W/Dead Weap,1,14001016MM30A,(M2),,2014-06-17,Petit Theft,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-10,Risk of Violence,7,Medium,2013-12-10,2013-12-10,2013-12-21,0,11,189,1,1\r\n3295,eduard blanco,eduard,blanco,2013-01-11,Male,1971-08-13,44,25 - 45,Hispanic,0,1,0,0,0,0,2013-01-11 02:52:46,2013-01-11 07:46:30,13000684MM10A,2013-01-11,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-11,Risk of Violence,1,Low,2013-01-11,2013-01-11,2013-01-11,0,0,1176,0,0\r\n3298,olayo montiel,olayo,montiel,2013-01-26,Male,1985-03-06,31,25 - 45,Caucasian,0,5,0,0,6,-1,2013-01-25 03:14:43,2013-01-26 08:15:46,13001845MM10A,2013-01-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-26,Risk of Violence,5,Medium,2013-01-26,2013-01-25,2013-01-26,6,0,1161,0,0\r\n3299,brandon murray,brandon,murray,2013-01-12,Male,1986-09-14,29,25 - 45,African-American,0,2,0,0,3,-1,2013-01-11 03:42:02,2013-01-12 04:42:30,13000532CF10A,,2013-01-11,1,F,arrest case no charge,1,13017451CF10A,(F3),0,2013-12-18,Grand Theft in the 3rd Degree,2013-12-18,2014-03-07,,0,,,,,Risk of Recidivism,2,Low,2013-01-12,Risk of Violence,3,Low,2013-01-12,2013-12-18,2014-03-07,3,0,340,1,1\r\n3300,dino bretti,dino,bretti,2013-09-20,Male,1968-03-24,48,Greater than 45,Caucasian,0,7,0,0,13,-96,2013-06-16 09:16:22,2013-08-29 09:24:35,13008503CF10A,2013-06-16,,96,F,Child Abuse,1,14004699TC10A,(M2),,2013-12-09,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-20,Risk of Violence,7,Medium,2013-09-20,2013-06-16,2013-08-29,13,0,80,1,1\r\n3301,rut ruiz,rut,ruiz,2013-10-02,Female,1985-11-09,30,25 - 45,African-American,0,2,0,0,0,-1,2013-10-01 09:36:03,2013-10-02 08:15:00,13018711MM10A,2013-10-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,2,Low,2013-10-02,2013-10-01,2013-10-02,0,0,912,0,0\r\n3302,brittany finder,brittany,finder,2013-12-20,Female,1990-12-07,25,25 - 45,Caucasian,0,5,0,0,2,-25,2013-11-25 07:41:27,2013-12-07 02:00:21,12004391CF10A,,2013-11-25,25,F,arrest case no charge,1,14045932TC40A,(M2),,2014-06-23,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-20,Risk of Violence,3,Low,2013-12-20,2015-07-10,2015-07-15,2,0,185,1,1\r\n3304,courtney tracey,courtney,tracey,2013-02-16,Male,1975-07-07,40,25 - 45,African-American,0,2,0,0,3,-1,2013-02-15 05:22:50,2013-02-16 07:12:34,13002368CF10A,2013-02-15,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-16,Risk of Violence,1,Low,2013-02-16,2013-02-15,2013-02-16,3,0,1140,0,0\r\n3305,lauren obrien,lauren,obrien,2013-05-07,Female,1966-10-15,49,Greater than 45,Caucasian,0,2,0,0,3,1025,2016-02-26 06:26:45,2016-02-27 09:07:48,12014029CF10A,2012-09-23,,226,F,Resist Officer w/Violence,1,16004917MU10A,(M1),0,2016-02-26,,2016-02-26,2016-02-27,,0,,,,,Risk of Recidivism,2,Low,2013-05-07,Risk of Violence,1,Low,2013-05-07,2016-02-26,2016-02-27,3,0,1025,1,0\r\n3306,mauricio molina,mauricio,molina,2013-03-10,Male,1983-01-03,33,25 - 45,Caucasian,0,3,0,0,1,0,2013-03-10 01:25:31,2013-03-11 08:03:14,13012709TC10A,2013-03-09,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-10,Risk of Violence,2,Low,2013-03-10,2013-03-10,2013-03-11,1,1,1118,0,0\r\n3309,jimmy rivera,jimmy,rivera,2014-05-25,Male,1989-06-01,26,25 - 45,Caucasian,0,5,0,0,5,-1,2014-05-24 05:48:00,2014-05-25 08:36:19,14007264CF10A,2014-05-24,,1,F,Threat Public Servant,1,16000199CF10A,(M1),1,2016-01-04,,2016-01-05,2016-01-05,,0,,,,,Risk of Recidivism,5,Medium,2014-05-25,Risk of Violence,4,Low,2014-05-25,2016-01-05,2016-01-05,5,0,589,1,1\r\n3310,miguel torres,miguel,torres,2013-04-17,Male,1984-05-18,31,25 - 45,Hispanic,0,3,1,0,1,0,2013-04-17 01:33:57,2013-04-18 10:26:00,13007440MM10A,2013-04-17,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,5,Medium,2013-04-17,2013-08-04,2013-09-10,1,1,109,0,0\r\n3312,michael levy,michael,levy,2013-01-13,Male,1954-12-22,61,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-12 04:10:37,2013-01-13 01:00:33,13000727MM10A,2013-01-12,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,1,0,1174,0,0\r\n3314,michael mariani,michael,mariani,2013-09-05,Male,1985-04-29,30,25 - 45,Caucasian,0,4,0,0,2,-1,2013-09-04 08:06:26,2013-09-05 07:57:54,13012489CF10A,2013-09-04,,1,F,Use Of 2 Way Device To Fac Fel,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-05,Risk of Violence,3,Low,2013-09-05,2013-09-04,2013-09-05,2,0,939,0,0\r\n3315,david margadonna,david,margadonna,2013-10-05,Male,1954-01-18,62,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-04 03:37:56,2013-10-06 04:38:04,13018914MM10A,2013-10-04,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-05,Risk of Violence,1,Low,2013-10-05,2013-10-04,2013-10-06,0,1,909,0,0\r\n3316,michelle micoff,michelle,micoff,2013-08-19,Female,1988-06-27,27,25 - 45,Caucasian,0,8,0,0,4,8,2013-08-27 12:17:52,2013-10-21 04:30:51,13039034TC10A,2013-08-06,,13,M,Leave Acc/Attend Veh/More $50,1,13012015CF10A,(M2),1,2013-08-26,Possession False Prescription,2013-08-27,2013-10-21,,0,,,,,Risk of Recidivism,8,High,2013-08-19,Risk of Violence,7,Medium,2013-08-19,2015-11-13,2015-12-16,4,0,7,1,1\r\n3318,paul haddad,paul,haddad,2013-03-07,Male,1968-03-01,48,Greater than 45,Caucasian,0,6,0,0,9,-1,2013-03-06 04:52:48,2013-03-07 06:01:55,13003370CF10A,2013-03-06,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-07,Risk of Violence,1,Low,2013-03-07,2014-09-07,2014-09-17,9,0,549,0,0\r\n3319,kimberly wisniewski,kimberly,wisniewski,2013-12-25,Female,1975-05-27,40,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-24 01:22:24,2013-12-25 12:46:12,13017732CF10A,2013-12-24,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-25,Risk of Violence,1,Low,2013-12-25,2013-12-24,2013-12-25,0,0,828,0,0\r\n3320,christopher hendricks,christopher,hendricks,2013-12-17,Male,1991-07-29,24,Less than 25,Caucasian,0,4,0,0,0,-1,2013-12-16 04:56:49,2013-12-19 04:53:49,13017365CF10A,2013-12-16,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-17,Risk of Violence,5,Medium,2013-12-17,2013-12-16,2013-12-19,0,2,836,0,0\r\n3322,octavius ruffin,octavius,ruffin,2014-06-20,Male,1994-02-09,22,Less than 25,African-American,0,4,0,0,0,-1,2014-06-19 08:05:05,2014-06-20 08:29:14,14008486CF10A,2014-06-19,,1,F,Grand Theft in the 3rd Degree,1,15000686MM40A,(M2),,2015-01-19,Retail/Farm/Fare/Theft,,,,0,,,,,Risk of Recidivism,4,Low,2014-06-20,Risk of Violence,5,Medium,2014-06-20,2014-06-19,2014-06-20,0,0,213,1,1\r\n3323,olvins raymondvil,olvins,raymondvil,2013-11-06,Male,1986-03-03,30,25 - 45,African-American,0,8,0,0,4,-1,2013-11-05 03:33:07,2013-11-21 03:07:11,13020894MM10A,2013-11-05,,1,M,Battery,1,14027518TC20A,(M2),,2014-04-07,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2013-11-06,Risk of Violence,8,High,2013-11-06,2013-11-05,2013-11-21,4,15,152,1,1\r\n3324,christopher obrien,christopher,obrien,2013-02-12,Male,1952-12-08,63,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-12 01:53:55,2013-02-12 08:00:45,13003098MM10A,2013-02-11,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-12,Risk of Violence,1,Low,2013-02-12,2013-02-12,2013-02-12,0,0,1144,0,0\r\n3325,julio rodriguezcruz,julio,rodriguezcruz,2013-05-13,Male,1969-07-07,46,Greater than 45,Hispanic,0,1,0,0,0,,,,12007422MO10A,,2012-04-09,399,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2014-07-17,2015-03-01,0,0,430,0,0\r\n3326,jamal murray,jamal,murray,2013-01-03,Male,1982-06-04,33,25 - 45,African-American,0,10,0,0,4,-1,2013-01-02 06:52:47,2013-01-03 09:21:03,13000071CF10A,2013-01-02,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-03,Risk of Violence,9,High,2013-01-03,2015-05-21,2020-01-01,4,0,868,0,0\r\n3328,merlene reid,merlene,reid,2013-01-23,Female,1994-12-15,21,Less than 25,African-American,1,6,0,0,1,81,2013-04-14 03:23:56,2013-04-15 03:16:10,13000263CF10A,2012-11-05,,79,F,Robbery Sudd Snatch No Weapon,1,13007188MM10A,(M2),0,2013-04-14,Petit Theft,2013-04-14,2013-04-15,,1,14005084CF10A,(F2),2014-04-11,Agg Fleeing/Eluding High Speed,Risk of Recidivism,6,Medium,2013-01-23,Risk of Violence,6,Medium,2013-01-23,2013-04-14,2013-04-15,1,0,81,1,1\r\n3329,barry sippin,barry,sippin,2013-10-07,Male,1972-11-18,43,25 - 45,Caucasian,0,4,0,0,0,-5,2013-10-02 05:54:19,2013-10-03 07:47:02,13018778MM10A,2013-10-02,,5,M,Driving Under The Influence,1,13021018MM10A,(M1),0,2013-11-07,Driving Under The Influence,2013-11-07,2014-01-05,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-11-07,2014-01-05,0,0,31,1,1\r\n3331,marvin patterson,marvin,patterson,2013-01-12,Male,1990-02-22,26,25 - 45,African-American,0,10,0,0,3,0,2013-01-12 12:57:00,2013-02-15 09:19:58,13000495CF10A,2013-01-11,,1,F,Pos Cannabis W/Intent Sel/Del,1,14003336MM20A,(M1),,2014-11-27,Possess Drug Paraphernalia,,,,0,,,,,Risk of Recidivism,10,High,2013-01-12,Risk of Violence,10,High,2013-01-12,2013-01-12,2013-02-15,3,34,684,1,1\r\n3332,jean maxime,jean,maxime,2013-09-05,Male,1964-11-07,51,Greater than 45,African-American,0,1,0,0,1,-17,2013-08-19 01:28:26,2013-08-26 07:15:46,13011616CF10A,2013-08-19,,17,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-05,Risk of Violence,1,Low,2013-09-05,2016-02-11,2016-02-23,1,0,889,0,0\r\n3333,keith plews,keith,plews,2013-02-07,Male,1976-12-11,39,25 - 45,Caucasian,0,1,0,0,3,-1,2013-02-06 07:58:18,2013-02-07 10:26:20,12017764CF10A,,2013-02-06,1,F,arrest case no charge,1,14017501MM10A,(M1),0,2014-12-12,Resist/Obstruct W/O Violence,2014-12-12,2015-01-06,,1,14017501MM10A,(M1),2014-12-12,Assault On Law Enforc Officer,Risk of Recidivism,1,Low,2013-02-07,Risk of Violence,1,Low,2013-02-07,2014-12-12,2015-01-06,3,0,673,1,1\r\n3335,lilian lazo,lilian,lazo,2013-02-25,Female,1985-11-25,30,25 - 45,Hispanic,0,3,0,0,0,-1,2013-02-24 07:01:48,2013-02-25 07:16:28,13003836MM10A,2013-02-24,,1,M,Battery,1,14008206MU10A,(M1),0,2014-03-03,Driving Under The Influence,2014-03-03,2014-03-03,,0,,,,,Risk of Recidivism,3,Low,2013-02-25,Risk of Violence,2,Low,2013-02-25,2014-03-03,2014-03-03,0,0,371,0,1\r\n3337,jemmal cameron,jemmal,cameron,2014-11-05,Male,1983-12-26,32,25 - 45,African-American,0,8,0,0,14,-1,2014-11-04 03:33:19,2014-11-05 10:29:37,14014807CF10A,2014-11-04,,1,F,Felony Driving While Lic Suspd,1,14099063TC30A,(M2),,2014-11-27,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2014-11-05,Risk of Violence,2,Low,2014-11-05,2014-11-04,2014-11-05,14,0,22,1,1\r\n3338,robert cannon,robert,cannon,2013-12-16,Male,1994-01-07,22,Less than 25,African-American,0,6,0,0,0,-2,2013-12-14 09:58:29,2013-12-15 01:35:55,13023191MM10A,2013-12-14,,2,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-16,Risk of Violence,5,Medium,2013-12-16,2014-02-19,2014-02-27,0,0,65,0,0\r\n3339,gregory luff,gregory,luff,2013-02-22,Male,1956-11-07,59,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-02-21 11:47:36,2013-02-22 01:28:06,13002672CF10A,2013-02-21,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-22,Risk of Violence,1,Low,2013-02-22,2013-02-21,2013-02-22,0,0,1134,0,0\r\n3340,deon warren,deon,warren,2014-04-01,Male,1977-08-06,38,25 - 45,African-American,0,7,5,0,37,-1,2014-03-31 08:38:47,2014-05-01 05:20:12,14025752TC30A,,2014-03-31,1,M,arrest case no charge,1,14012415CF10A,(F3),,2014-08-17,Stalking (Aggravated),,,,1,14012415CF10A,(F3),2014-08-17,Stalking (Aggravated),Risk of Recidivism,7,Medium,2014-04-01,Risk of Violence,2,Low,2014-04-01,2014-03-31,2014-05-01,37,30,138,1,1\r\n3341,jack desrouleaux,jack,desrouleaux,2013-05-15,Male,1993-01-22,23,Less than 25,African-American,0,6,0,0,2,0,2013-05-15 12:48:05,2014-01-08 08:48:48,12011362CF10A,,2013-05-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-15,Risk of Violence,5,Medium,2013-05-15,2013-05-15,2014-01-08,2,238,1052,0,0\r\n3342,huberman saintil,huberman,saintil,2014-06-14,Male,1973-08-26,42,25 - 45,African-American,0,1,0,0,0,0,2014-06-14 02:55:47,2014-06-15 07:53:59,14009391MM10A,2014-06-14,,0,M,Battery,1,16002663MM10A,(M1),,2016-03-20,,,,,0,,,,,Risk of Recidivism,1,Low,2014-06-14,Risk of Violence,1,Low,2014-06-14,2014-06-14,2014-06-15,0,1,645,1,1\r\n3343,leroy farmer,leroy,farmer,2013-06-21,Male,1995-04-21,20,Less than 25,African-American,1,3,0,0,1,-37,2013-05-15 12:55:12,2013-05-31 11:04:55,13006815CF10A,,2013-05-15,37,F,arrest case no charge,1,13011601CF10A,(F2),0,2013-08-19,Robbery / No Weapon,2013-08-19,2014-01-09,,1,13011601CF10A,(F2),2013-08-19,Robbery / No Weapon,Risk of Recidivism,3,Low,2013-06-21,Risk of Violence,7,Medium,2013-06-21,2013-08-19,2014-01-09,1,0,59,1,1\r\n3344,demetrius johnson,demetrius,johnson,2013-04-01,Male,1977-08-06,38,25 - 45,African-American,0,7,0,0,2,0,2013-04-01 10:35:17,2013-10-11 05:44:04,13004667CF10A,2013-04-01,,0,F,Burglary Dwelling Assault/Batt,1,14000793CF10A,(F3),1,2014-01-18,Stalking (Aggravated),2014-01-19,2014-01-31,,1,14000793CF10A,(F3),2014-01-18,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-04-01,Risk of Violence,3,Low,2013-04-01,2013-04-01,2013-10-11,2,193,292,1,1\r\n3345,denny ricatti,denny,ricatti,2013-01-26,Female,1982-02-13,34,25 - 45,Caucasian,0,3,0,0,2,-1,2013-01-25 06:05:27,2013-01-26 09:13:23,13001250CF10A,2013-01-25,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-26,Risk of Violence,2,Low,2013-01-26,2013-01-25,2013-01-26,2,0,1161,0,0\r\n3347,coletter jenkins,coletter,jenkins,2014-06-01,Female,1979-10-31,36,25 - 45,African-American,0,3,0,0,7,-1,2014-05-31 04:17:00,2014-06-02 05:11:21,14007552CF10A,2014-05-31,,1,F,Criminal Mischief,1,15007578TC20A,(M2),,2015-01-01,Driving while DL Susp / Financial Resp,,,,0,,,,,Risk of Recidivism,3,Low,2014-06-01,Risk of Violence,3,Low,2014-06-01,2014-05-31,2014-06-02,7,1,214,1,1\r\n3348,zachary mueller,zachary,mueller,2013-10-04,Male,1980-12-30,35,25 - 45,Caucasian,0,4,0,0,7,-86,2013-07-10 06:28:42,2013-09-24 06:40:25,13009692CF10A,2013-07-10,,86,F,Sexual Battery / Vict 12 Yrs +,1,14025176TC10A,(M2),,2014-06-23,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-04,Risk of Violence,3,Low,2013-10-04,2013-07-10,2013-09-24,7,0,262,1,1\r\n3349,kerby joseph,kerby,joseph,2013-05-26,Male,1980-02-08,36,25 - 45,African-American,0,3,0,0,0,-1,2013-05-25 06:18:54,2013-05-26 08:34:19,13010075MM10A,2013-05-25,,1,M,Battery,1,14069099TC30A,(M2),,2014-08-11,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2013-05-25,2013-05-26,0,0,442,1,1\r\n3350,yvon agenord,yvon,agenord,2013-11-05,Male,1984-11-05,31,25 - 45,African-American,0,1,0,0,1,-14,2013-10-22 11:46:11,2013-11-05 11:20:18,13014734CF10A,2013-10-21,,15,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-05,Risk of Violence,2,Low,2013-11-05,2013-10-22,2013-11-05,1,0,878,0,0\r\n3351,ashley garris,ashley,garris,2014-03-28,Female,1988-03-12,28,25 - 45,African-American,0,4,0,0,3,-1,2014-03-27 12:02:40,2014-04-01 05:04:37,14003474CF10A,,2014-03-27,1,F,arrest case no charge,1,14012803CF10A,(F3),,2014-07-09,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-28,Risk of Violence,4,Low,2014-03-28,2014-03-27,2014-04-01,3,4,103,1,1\r\n3354,nesta elliot,nesta,elliot,2013-09-06,Male,1987-06-02,28,25 - 45,African-American,0,2,0,0,1,0,2013-09-06 04:34:32,2013-09-06 09:27:16,13012594CF10A,2013-09-06,,0,F,\"Poss3,4 Methylenedioxymethcath\",1,15018514TC20A,(M2),,2015-03-10,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-06,Risk of Violence,2,Low,2013-09-06,2013-09-06,2013-09-06,1,0,550,1,1\r\n3356,peter mercogliano,peter,mercogliano,2014-01-17,Male,1955-11-07,60,Greater than 45,Caucasian,0,1,0,0,3,-120,2013-09-19 04:36:11,2014-01-17 12:32:44,13013207CF10A,2013-09-19,,120,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-17,Risk of Violence,2,Low,2014-01-17,2013-09-19,2014-01-17,3,0,805,0,0\r\n3357,willie titus,willie,titus,2014-03-29,Male,1972-11-24,43,25 - 45,African-American,0,4,0,0,0,-1,2014-03-28 09:13:42,2014-03-29 10:09:02,14004379CF10A,2014-03-28,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-29,Risk of Violence,1,Low,2014-03-29,2014-03-28,2014-03-29,0,0,734,0,0\r\n3358,donald brundidge,donald,brundidge,2014-03-11,Male,1976-02-15,40,25 - 45,African-American,0,1,0,0,1,-1,2014-03-10 09:24:25,2014-03-12 09:09:50,14003372CF10A,,2014-03-10,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-11,Risk of Violence,1,Low,2014-03-11,2014-03-10,2014-03-12,1,1,752,0,0\r\n3359,eugene tucker,eugene,tucker,2014-11-23,Male,1985-02-20,31,25 - 45,African-American,0,9,2,0,15,-1,2014-11-22 01:30:32,2014-11-24 03:47:31,14015737CF10A,2014-11-22,,1,F,Possession of Cocaine,1,15000613CF10A,(F3),0,2015-01-14,Possession of Cocaine,2015-01-14,2015-01-15,,0,,,,,Risk of Recidivism,9,High,2014-11-23,Risk of Violence,5,Medium,2014-11-23,2015-01-14,2015-01-15,15,1,52,1,1\r\n3360,jason kesler,jason,kesler,2013-09-04,Male,1962-01-23,54,Greater than 45,African-American,0,7,0,0,6,-1,2013-09-03 10:58:18,2013-09-17 09:13:20,13012434CF10A,2013-09-03,,1,F,Possession of Cocaine,1,13014135CF10A,(F3),0,2013-10-09,Possession of Cocaine,2013-10-09,2013-10-23,,0,,,,,Risk of Recidivism,7,Medium,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-10-09,2013-10-23,6,13,35,1,1\r\n3361,eyzzaquirre walquer,eyzzaquirre,walquer,2013-10-07,Male,1989-12-13,26,25 - 45,African-American,0,6,0,0,1,,,,10012932CF10A,,2012-01-22,624,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-07,Risk of Violence,7,Medium,2013-10-07,,,1,0,907,0,0\r\n3362,brent smith,brent,smith,2014-04-16,Male,1991-05-17,24,Less than 25,African-American,0,9,0,0,17,-1,2014-04-15 09:46:43,2014-08-23 10:50:14,14006408CF10A,,2014-04-15,1,F,arrest case no charge,1,15004672MM10A,(M1),0,2015-04-24,Resist/Obstruct W/O Violence,2015-04-24,2015-12-22,,0,,,,,Risk of Recidivism,9,High,2014-04-16,Risk of Violence,9,High,2014-04-16,2015-04-24,2015-12-22,17,129,373,1,1\r\n3363,diego delgadillo,diego,delgadillo,2014-02-12,Male,1974-11-17,41,25 - 45,Hispanic,0,1,0,0,0,-3,2014-02-09 05:01:48,2014-02-10 08:40:41,14001847CF10A,2014-02-09,,3,F,Escape,1,14042225TC30A,(M2),99,2014-05-12,Operating W/O Valid License,2014-08-19,2014-08-19,,0,,,,,Risk of Recidivism,1,Low,2014-02-12,Risk of Violence,1,Low,2014-02-12,2014-08-19,2014-08-19,0,0,89,1,1\r\n3369,travis wright,travis,wright,2013-11-15,Male,1995-01-05,21,Less than 25,African-American,0,9,0,1,1,-1,2013-11-14 04:18:05,2014-07-14 10:15:01,13015861CF10A,,2013-11-14,1,F,arrest case no charge,1,15011227CF10A,(F3),15,2015-08-16,Attempted Burg/struct/unocc,2015-08-31,2015-12-01,,0,,,,,Risk of Recidivism,9,High,2013-11-15,Risk of Violence,8,High,2013-11-15,2014-08-21,2014-09-19,1,241,279,0,1\r\n3370,brandi lopez,brandi,lopez,2014-07-05,Female,1987-01-11,29,25 - 45,Hispanic,0,2,0,0,1,-1,2014-07-04 08:03:45,2014-07-05 08:54:02,14009215CF10A,2014-07-04,,1,F,Poss Contr Subst W/o Prescript,1,15005596MM10A,(M1),0,2015-04-22,Possess Cannabis/20 Grams Or Less,2015-04-22,2015-04-23,,0,,,,,Risk of Recidivism,2,Low,2014-07-05,Risk of Violence,2,Low,2014-07-05,2015-04-22,2015-04-23,1,0,291,1,1\r\n3371,zachery derenoncourt,zachery,derenoncourt,2013-08-22,Male,1994-01-11,22,Less than 25,African-American,0,3,0,1,0,-1,2013-08-21 06:04:09,2013-08-22 04:45:08,13011772CF10A,2013-08-21,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-22,Risk of Violence,5,Medium,2013-08-22,2013-08-21,2013-08-22,0,0,953,0,0\r\n3375,edwin ramirez,edwin,ramirez,2013-08-22,Male,1963-08-17,52,Greater than 45,Hispanic,0,7,0,0,9,-1,2013-08-21 10:07:31,2013-09-24 05:39:04,13011735CF10A,2013-08-21,,1,F,Felony Petit Theft,1,14007370CF10A,(F3),7,2014-05-20,Grand Theft in the 3rd Degree,2014-05-27,2015-03-05,,0,,,,,Risk of Recidivism,7,Medium,2013-08-22,Risk of Violence,1,Low,2013-08-22,2013-08-21,2013-09-24,9,33,271,1,1\r\n3376,marie altenor,marie,altenor,2013-12-15,Female,1975-09-12,40,25 - 45,Other,0,1,0,0,0,-1,2013-12-14 05:59:05,2013-12-15 09:12:57,13017298CF10A,2013-12-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-15,Risk of Violence,1,Low,2013-12-15,2013-12-14,2013-12-15,0,0,838,0,0\r\n3377,kelly abernath,kelly,abernath,2013-09-28,Female,1978-11-15,37,25 - 45,Caucasian,0,1,0,0,0,,,,13013637CF10A,2013-09-28,,0,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-28,Risk of Violence,1,Low,2013-09-28,,,0,0,916,0,0\r\n3379,jacques duvignaud,jacques,duvignaud,2013-02-17,Male,1994-08-05,21,Less than 25,Other,0,4,0,0,1,982,2015-10-27 11:54:28,2015-11-02 09:32:34,13002420CF10A,2013-02-16,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-17,Risk of Violence,6,Medium,2013-02-17,2015-10-27,2015-11-02,1,0,982,0,0\r\n3380,valarie salters,valarie,salters,2013-09-30,Female,1970-11-27,45,Greater than 45,African-American,0,4,0,0,1,-1,2013-09-29 01:24:57,2013-10-05 09:22:55,13013670CF10A,2013-09-29,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-30,Risk of Violence,2,Low,2013-09-30,2013-09-29,2013-10-05,1,5,914,0,0\r\n3381,charles vilsaint,charles,vilsaint,2014-06-04,Male,1986-06-10,29,25 - 45,African-American,0,2,0,0,1,0,2014-06-04 04:26:13,2014-06-04 09:33:43,14020726MU10A,2014-06-04,,0,M,DUI/Property Damage/Persnl Inj,1,14017959MM10A,(M1),1,2014-12-22,Unlaw Use False Name/Identity,2014-12-23,2015-03-03,,0,,,,,Risk of Recidivism,2,Low,2014-06-04,Risk of Violence,2,Low,2014-06-04,2014-12-02,2014-12-05,1,0,181,0,1\r\n3383,anthony pires,anthony,pires,2014-07-09,Male,1969-10-29,46,Greater than 45,African-American,0,5,0,0,10,-1,2014-07-08 08:03:39,2014-07-18 02:00:12,14009373CF10A,2014-07-08,,1,F,Felony Battery (Dom Strang),1,16002990CF10A,(M1),0,2016-03-09,Possess Cannabis/20 Grams Or Less,2016-03-09,2016-03-13,,0,,,,,Risk of Recidivism,5,Medium,2014-07-09,Risk of Violence,1,Low,2014-07-09,2016-03-09,2016-03-13,10,9,609,1,1\r\n3384,dominic disalvo,dominic,disalvo,2013-09-05,Male,1994-07-25,21,Less than 25,Caucasian,0,8,1,2,1,-1,2013-09-04 08:11:26,2013-09-17 04:53:45,13012512CF10A,2013-09-04,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-05,Risk of Violence,9,High,2013-09-05,2015-05-29,2015-06-03,1,12,631,0,0\r\n3385,jeffery johnson,jeffery,johnson,2013-03-10,Male,1965-10-01,50,Greater than 45,African-American,1,9,0,0,7,,,,10000637MM10A,2010-01-11,,1154,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-10,Risk of Violence,4,Low,2013-03-10,,,7,0,1118,0,0\r\n3386,robert kingery,robert,kingery,2013-11-08,Male,1980-05-11,35,25 - 45,Caucasian,0,5,0,0,6,-10,2013-10-29 08:37:39,2013-10-31 02:30:32,13015104CF10A,2013-10-29,,10,F,Battery on a Person Over 65,1,14002224CF10A,(M2),1,2014-02-17,Susp Drivers Lic 1st Offense,2014-02-18,2014-03-24,,1,15011833MM10A,(M2),2015-11-11,Assault,Risk of Recidivism,5,Medium,2013-11-08,Risk of Violence,4,Low,2013-11-08,2015-11-12,2015-11-25,6,0,101,1,1\r\n3387,ramon harris,ramon,harris,2013-06-03,Male,1963-07-18,52,Greater than 45,African-American,0,1,0,0,1,1,2013-06-04 11:14:23,2013-08-14 08:45:53,13010504MM10A,2013-06-01,,2,M,Viol Injunct Domestic Violence,1,13007934CF10A,(M1),0,2013-06-04,Viol Injunction Protect Dom Vi,2013-06-04,2013-08-14,,1,13007934CF10A,(F2),2013-06-04,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,1,Low,2013-06-03,Risk of Violence,1,Low,2013-06-03,2013-06-04,2013-08-14,1,0,1,1,1\r\n3390,kevin oconnell,kevin,oconnell,2013-08-06,Male,1967-07-25,48,Greater than 45,Caucasian,0,1,0,0,0,0,2013-08-06 03:46:18,2013-08-06 07:43:53,13014856MM10A,2013-08-06,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-06,Risk of Violence,1,Low,2013-08-06,2014-11-20,2014-11-25,0,0,471,0,0\r\n3391,tanisha robinson,tanisha,robinson,2013-03-25,Female,1986-07-07,29,25 - 45,African-American,0,8,0,3,9,-1,2013-03-24 05:22:39,2013-10-24 06:02:50,13005739MM10A,2013-03-24,,1,M,Petit Theft $100- $300,1,13006154CF10A,(F3),,2013-04-26,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,8,High,2013-03-25,Risk of Violence,6,Medium,2013-03-25,2013-03-24,2013-10-24,9,0,32,1,1\r\n3392,raymond burr,raymond,burr,2013-03-09,Male,1968-02-05,48,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-08 05:10:48,2013-03-09 08:03:03,13004719MM10A,2013-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2013-03-08,2013-03-09,0,0,1119,0,0\r\n3393,david ingram,david,ingram,2013-05-09,Male,1984-10-26,31,25 - 45,African-American,0,6,0,0,10,-8,2013-05-01 10:12:11,2013-05-09 11:10:11,09014857CF10A,,2013-05-01,8,F,arrest case no charge,1,14007833TC30A,(M2),395,2014-01-13,Susp Drivers Lic 1st Offense,2015-02-12,2015-02-27,,0,,,,,Risk of Recidivism,6,Medium,2013-05-09,Risk of Violence,4,Low,2013-05-09,2015-05-06,2015-06-01,10,0,249,1,1\r\n3394,fabio huarotte,fabio,huarotte,2014-10-22,Male,1994-08-12,21,Less than 25,Caucasian,0,8,0,0,3,-1,2014-10-21 01:03:44,2015-02-25 03:31:21,14014198CF10A,2014-10-21,,1,F,Pos Cannabis W/Intent Sel/Del,1,14014887CF10A,(F3),,2014-11-01,Burglary Conveyance Unoccup,,,,0,,,,,Risk of Recidivism,8,High,2014-10-22,Risk of Violence,8,High,2014-10-22,2014-10-21,2015-02-25,3,0,10,1,1\r\n3395,lester aguilar,lester,aguilar,2014-10-04,Male,1983-08-23,32,25 - 45,Other,0,1,0,0,0,0,2014-10-04 06:07:06,2014-10-26 12:23:00,14013389CF10A,2014-10-04,,0,F,Tamper With Witness/Victim/CI,1,15005307TC10A,(M2),0,2015-02-23,Operating W/O Valid License,2015-02-23,2015-02-23,,0,,,,,Risk of Recidivism,1,Low,2014-10-04,Risk of Violence,1,Low,2014-10-04,2015-02-23,2015-02-23,0,22,142,0,1\r\n3396,clarence oliver,clarence,oliver,2014-02-16,Male,1968-05-20,47,Greater than 45,African-American,0,5,0,0,0,-1,2014-02-15 05:33:03,2014-02-18 09:23:00,14002659MM10A,2014-02-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-16,Risk of Violence,3,Low,2014-02-16,2014-02-15,2014-02-18,0,2,775,0,0\r\n3397,freddie austin,freddie,austin,2013-10-19,Male,1954-01-25,62,Greater than 45,African-American,0,7,0,0,1,,,,12003226MM10A,2012-02-14,,613,M,Possess Drug Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-19,Risk of Violence,6,Medium,2013-10-19,2005-01-04,2008-01-26,1,0,895,0,0\r\n3398,finest williams,finest,williams,2013-04-19,Male,1995-03-27,21,Less than 25,African-American,1,10,2,2,3,-1,2013-04-18 04:32:05,2013-04-19 01:28:17,13005544CF10A,2013-04-18,,1,F,Criminal Mischief,1,13012228CF10A,(F3),1,2013-08-29,Tampering With Physical Evidence,2013-08-30,2013-08-30,,0,,,,,Risk of Recidivism,10,High,2013-04-19,Risk of Violence,10,High,2013-04-19,2016-02-14,2016-03-29,3,0,132,1,1\r\n3399,michael habersham,michael,habersham,2013-02-21,Male,1980-06-27,35,25 - 45,African-American,3,10,0,0,13,-1,2013-02-20 04:28:30,2013-02-21 02:00:22,13002617CF10A,2013-02-20,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-21,Risk of Violence,5,Medium,2013-02-21,2014-03-20,2014-09-02,13,0,392,0,0\r\n3401,anthony dean,anthony,dean,2013-12-02,Male,1970-02-28,46,Greater than 45,African-American,0,1,0,0,3,-22,2013-11-10 12:30:52,2013-12-01 03:01:26,13021184MM10A,2013-11-10,,22,M,Operating W/O Valid License,1,14009088TC10A,(M2),59,2014-01-01,Operating W/O Valid License,2014-03-01,2014-03-20,,0,,,,,Risk of Recidivism,1,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2015-04-06,2015-04-15,3,0,30,1,1\r\n3403,alvin rose,alvin,rose,2013-02-07,Male,1981-05-28,34,25 - 45,African-American,0,4,0,0,5,-1,2013-02-06 08:44:54,2013-02-11 12:05:50,13001845CF10A,2013-02-06,,1,F,Grand Theft in the 3rd Degree,1,14000700MO10A,(MO3),0,2014-01-14,Poss Of Controlled Substance,2014-01-14,2014-01-17,,0,,,,,Risk of Recidivism,4,Low,2013-02-07,Risk of Violence,3,Low,2013-02-07,2014-01-14,2014-01-17,5,4,341,1,1\r\n3404,eugene vaughn,eugene,vaughn,2013-07-01,Male,1963-06-10,52,Greater than 45,African-American,0,1,0,0,2,-5,2013-06-26 02:12:03,2013-06-29 04:23:12,11000301CF10A,,2013-06-26,5,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-01,Risk of Violence,1,Low,2013-07-01,2013-06-26,2013-06-29,2,0,1005,0,0\r\n3405,charletha nesmith,charletha,nesmith,2013-03-20,Female,1977-02-10,39,25 - 45,African-American,0,2,1,0,7,114,2013-07-12 12:45:34,2014-01-07 03:49:13,12018408CF10A,2012-12-18,,92,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-07-12,2014-01-07,7,0,114,0,0\r\n3406,aladdin ruiz,aladdin,ruiz,2014-01-10,Male,1995-02-13,21,Less than 25,Caucasian,0,8,0,0,0,-1,2014-01-09 11:12:45,2014-01-18 12:46:35,14000392MM10A,2014-01-09,,1,M,Battery,1,14003688CF10A,(F3),0,2014-03-16,Felony Battery (Dom Strang),2014-03-16,2014-04-30,,1,14006595MM10A,(M1),2014-03-16,Battery,Risk of Recidivism,8,High,2014-01-10,Risk of Violence,9,High,2014-01-10,2014-03-16,2014-04-30,0,8,65,1,1\r\n3407,greg godette,greg,godette,2014-02-10,Male,1962-10-24,53,Greater than 45,Caucasian,0,1,0,0,1,-2,2014-02-08 04:19:13,2014-02-09 07:31:52,14001786CF10A,2014-02-07,,3,M,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-10,Risk of Violence,1,Low,2014-02-10,2014-02-08,2014-02-09,1,0,781,0,0\r\n3408,alexandria cragg,alexandria,cragg,2014-11-02,Female,1996-09-09,19,Less than 25,Caucasian,0,3,0,0,0,-1,2014-11-01 02:38:12,2014-11-02 09:44:18,14014686CF10A,2014-11-01,,1,F,Felony Battery w/Prior Convict,1,15011796MM10A,(M1),,2015-11-11,Resist/Obstruct W/O Violence,,,,0,,,,,Risk of Recidivism,3,Low,2014-11-02,Risk of Violence,5,Medium,2014-11-02,2014-11-01,2014-11-02,0,0,374,1,1\r\n3409,stephen vaughn,stephen,vaughn,2014-01-10,Male,1993-07-05,22,Less than 25,African-American,0,6,0,0,0,-1,2014-01-09 05:27:43,2014-01-12 03:57:27,14000396MM10A,2014-01-09,,1,M,Open Carrying Of Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-10,Risk of Violence,8,High,2014-01-10,2014-01-09,2014-01-12,0,2,812,0,0\r\n3410,keithon hunter,keithon,hunter,2013-02-24,Male,1970-12-15,45,Greater than 45,African-American,0,3,0,0,1,-1,2013-02-23 11:52:38,2013-02-26 08:07:15,13001358CF10A,,2013-02-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-24,Risk of Violence,1,Low,2013-02-24,2015-01-22,2015-02-26,1,2,697,0,0\r\n3411,haley belba,haley,belba,2014-01-09,Female,1988-12-10,27,25 - 45,Caucasian,0,2,0,0,0,-1,2014-01-08 04:06:52,2014-01-09 06:22:32,14000319CF10A,2014-01-08,,1,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-09,Risk of Violence,2,Low,2014-01-09,2014-01-08,2014-01-09,0,0,813,0,0\r\n3412,alexander schwartz,alexander,schwartz,2013-02-04,Male,1990-10-06,25,25 - 45,Caucasian,0,2,0,0,0,-1,2013-02-03 11:41:54,2013-02-04 07:33:19,13002440MM10A,2013-02-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-04,Risk of Violence,3,Low,2013-02-04,2013-04-14,2013-04-15,0,0,69,0,0\r\n3413,anthony avello,anthony,avello,2014-04-22,Male,1985-12-26,30,25 - 45,Caucasian,0,4,0,0,0,0,2014-04-22 12:06:09,2014-04-22 10:17:53,14005540CF10A,2014-04-21,,1,F,Felony DUI (level 3),1,14001309MM30A,(M1),,2014-07-10,Contribute Delinq/Depnd of Minor,,,,0,,,,,Risk of Recidivism,4,Low,2014-04-22,Risk of Violence,2,Low,2014-04-22,2014-04-22,2014-04-22,0,0,79,1,1\r\n3415,juvuan richards,juvuan,richards,2013-04-12,Male,1984-06-30,31,25 - 45,African-American,0,5,0,0,2,0,2013-04-12 12:36:20,2013-04-12 08:37:01,13005256CF10A,2013-04-11,,1,F,Driving While License Revoked,1,14014357MU10A,(M1),0,2014-04-12,Driving Under The Influence,2014-04-12,2014-04-13,,0,,,,,Risk of Recidivism,5,Medium,2013-04-12,Risk of Violence,4,Low,2013-04-12,2014-04-12,2014-04-13,2,0,365,1,1\r\n3417,joseph scognamiglio,joseph,scognamiglio,2014-02-13,Male,1987-11-11,28,25 - 45,Caucasian,0,3,0,0,3,-1,2014-02-12 07:14:00,2014-02-13 09:25:50,14001485CF10A,,2014-02-12,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-13,Risk of Violence,2,Low,2014-02-13,2014-02-12,2014-02-13,3,0,778,0,0\r\n3418,michael reed,michael,reed,2013-10-30,Male,1980-04-08,36,25 - 45,African-American,0,2,0,0,3,-1,2013-10-29 03:05:24,2013-10-31 12:47:14,13020458MM10A,2013-10-29,,1,M,Battery,1,14007209TC10A,(M2),,2013-12-03,Driving License Suspended,,,,1,14001861MM10A,(M1),2014-01-12,Battery,Risk of Recidivism,2,Low,2013-10-30,Risk of Violence,2,Low,2013-10-30,2013-10-29,2013-10-31,3,1,34,1,1\r\n3419,dontavious evans,dontavious,evans,2013-01-11,Male,1988-09-28,27,25 - 45,African-American,0,5,0,0,7,-1,2013-01-10 07:56:22,2013-01-20 09:09:22,12018672CF10A,,2013-01-10,1,F,arrest case no charge,1,13008470CF10A,(M1),0,2013-06-15,Unlaw Use False Name/Identity,2013-06-15,2014-06-03,,0,,,,,Risk of Recidivism,5,Medium,2013-01-11,Risk of Violence,5,Medium,2013-01-11,2013-02-26,2013-03-02,7,9,46,0,1\r\n3420,merrill joseph,merrill,joseph,2013-05-06,Male,1974-04-11,42,25 - 45,African-American,0,2,0,0,1,0,2013-05-06 02:34:41,2013-05-06 07:48:39,13006496CF10A,2013-05-06,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-05-06,2013-05-06,1,0,1061,0,0\r\n3422,bryant mohns,bryant,mohns,2013-10-16,Male,1980-06-20,35,25 - 45,Caucasian,0,5,0,0,0,0,2013-10-16 03:11:56,2013-11-26 02:04:13,13014462CF10A,2013-10-15,,1,F,Possession of Cocaine,1,14002488MM10A,(M1),1,2014-02-07,Resist/Obstruct W/O Violence,2014-02-08,2014-02-28,,0,,,,,Risk of Recidivism,5,Medium,2013-10-16,Risk of Violence,1,Low,2013-10-16,2013-10-16,2013-11-26,0,41,114,1,1\r\n3423,jamie anderson,jamie,anderson,2013-04-15,Female,1983-04-12,33,25 - 45,Caucasian,0,2,0,0,2,-29,2013-03-17 11:15:34,2013-03-18 01:35:54,13003885CF10A,2013-03-17,,29,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-15,Risk of Violence,1,Low,2013-04-15,2013-03-17,2013-03-18,2,0,1082,0,0\r\n3425,victor soto,victor,soto,2013-01-30,Male,1991-07-16,24,Less than 25,Hispanic,1,10,0,0,6,-1,2013-01-29 10:25:07,2013-09-05 06:32:29,13001413CF10A,2013-01-29,,1,F,\"Deliver 3,4 Methylenediox\",1,15001013MM40A,(M1),,2015-02-18,Possess Drug Paraphernalia,,,,0,,,,,Risk of Recidivism,10,High,2013-01-30,Risk of Violence,9,High,2013-01-30,2013-09-05,2014-08-06,6,553,749,1,1\r\n3426,timothy law,timothy,law,2014-05-16,Male,1990-08-31,25,25 - 45,African-American,0,10,1,0,21,-14,2014-05-02 01:32:45,2014-05-04 08:50:08,14005642CF10A,,2014-05-15,1,F,arrest case no charge,1,15006122CF10A,(F3),141,2015-02-11,Possession of Cannabis,2015-07-02,2015-07-04,,0,,,,,Risk of Recidivism,10,High,2014-05-16,Risk of Violence,10,High,2014-05-16,2014-10-01,2014-10-17,21,0,138,0,1\r\n3427,christina parker,christina,parker,2014-03-16,Female,1973-09-10,42,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-15 05:38:42,2014-03-16 07:22:05,14004499MM10A,2014-03-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-16,0,0,747,0,0\r\n3429,xavier johnson,xavier,johnson,2013-01-19,Male,1994-10-01,21,Less than 25,African-American,0,6,0,0,0,-1,2013-01-18 07:32:20,2013-01-22 05:57:43,13000879CF10A,2013-01-18,,1,F,Grand Theft in the 3rd Degree,1,13034281TC20A,(M2),,2013-05-24,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-19,Risk of Violence,9,High,2013-01-19,2013-01-18,2013-01-22,0,3,125,1,1\r\n3431,candace oneal,candace,oneal,2013-01-14,Female,1987-07-23,28,25 - 45,African-American,0,2,0,0,0,0,2013-01-14 01:05:43,2013-01-14 06:50:40,13000796MM10A,2013-01-14,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,2,Low,2013-01-14,2013-01-14,2013-01-14,0,0,1173,0,0\r\n3434,stanley rich,stanley,rich,2014-07-16,Male,1988-11-16,27,25 - 45,African-American,0,10,0,0,25,18,2014-08-03 09:08:30,2014-09-13 04:26:01,14004591CF10A,,2014-05-27,50,F,arrest case no charge,1,14010582CF10A,(F2),0,2014-08-03,Aggravated Battery / Pregnant,2014-08-03,2014-09-13,,1,14010582CF10A,(F2),2014-08-03,Aggravated Battery / Pregnant,Risk of Recidivism,10,High,2014-07-16,Risk of Violence,9,High,2014-07-16,2014-08-03,2014-09-13,25,0,18,1,1\r\n3437,lizibell aviles,lizibell,aviles,2013-08-27,Female,1994-09-01,21,Less than 25,Caucasian,0,6,0,0,0,-1,2013-08-26 08:11:05,2013-08-29 05:55:18,13012029CF10A,2013-08-26,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-27,Risk of Violence,7,Medium,2013-08-27,2013-08-26,2013-08-29,0,2,948,0,0\r\n3438,leroy cash,leroy,cash,2013-04-20,Male,1990-04-05,26,25 - 45,Caucasian,0,6,0,0,0,0,2013-04-20 06:26:20,2013-04-25 09:31:32,13007655MM10A,2013-04-20,,0,M,Battery,1,13014026CF10A,(M2),1,2013-10-05,Prowling/Loitering,2013-10-06,2013-10-06,,0,,,,,Risk of Recidivism,6,Medium,2013-04-20,Risk of Violence,6,Medium,2013-04-20,2013-04-20,2013-04-25,0,5,168,1,1\r\n3439,jose santos,jose,santos,2013-02-24,Male,1980-04-06,36,25 - 45,Caucasian,0,1,0,0,0,-1,2013-02-23 08:43:27,2013-02-24 06:58:35,13002795CF10A,2013-02-23,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-24,Risk of Violence,1,Low,2013-02-24,2013-02-23,2013-02-24,0,0,1132,0,0\r\n3440,travis davis,travis,davis,2013-04-28,Male,1993-04-07,23,Less than 25,African-American,0,8,0,0,1,237,2013-12-21 01:36:23,2013-12-21 09:34:17,12006269MM10A,2012-03-26,,398,M,Possess Cannabis/20 Grams Or Less,1,13048874TC10A,(M2),0,2013-12-21,Operating W/O Valid License,2013-12-21,2013-12-21,,0,,,,,Risk of Recidivism,8,High,2013-04-28,Risk of Violence,9,High,2013-04-28,2013-12-21,2013-12-21,1,0,237,0,1\r\n3441,alton lankford,alton,lankford,2013-09-21,Male,1967-01-31,49,Greater than 45,Caucasian,0,7,0,0,0,-1,2013-09-20 05:30:49,2013-09-22 01:59:44,13013268CF10A,2013-09-20,,1,F,Possession of Cocaine,1,14008230CF10A,(F3),0,2014-06-13,Grand Theft in the 3rd Degree,2014-06-13,2015-03-19,,0,,,,,Risk of Recidivism,7,Medium,2013-09-21,Risk of Violence,2,Low,2013-09-21,2013-12-06,2014-04-03,0,1,76,0,1\r\n3442,christopher tindall,christopher,tindall,2013-09-09,Male,1986-12-09,29,25 - 45,African-American,0,8,0,0,11,-68,2013-07-03 02:11:36,2013-09-06 07:34:10,13009376CF10A,2013-07-02,,69,F,Possession of Cocaine,1,15003059MM10A,(M1),0,2015-03-14,Unlaw Use False Name/Identity,2015-03-14,2015-08-06,,0,,,,,Risk of Recidivism,8,High,2013-09-09,Risk of Violence,7,Medium,2013-09-09,2015-03-14,2015-08-06,11,0,551,1,1\r\n3444,houssain benjilali,houssain,benjilali,2013-11-23,Male,1971-11-20,44,25 - 45,Caucasian,0,2,0,0,0,-1,2013-11-22 10:45:07,2013-11-24 03:02:56,13016270CF10A,2013-11-22,,1,F,Possession of Cocaine,1,15061018TC20A,(M2),,2015-11-04,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-23,Risk of Violence,1,Low,2013-11-23,2013-11-22,2013-11-24,0,1,711,1,1\r\n3445,mark asbell,mark,asbell,2013-10-04,Male,1987-11-13,28,25 - 45,Caucasian,0,3,0,0,1,-25,2013-09-09 02:13:27,2013-10-03 07:53:47,13017198MM10A,2013-09-08,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-04,Risk of Violence,4,Low,2013-10-04,2013-09-09,2013-10-03,1,0,910,0,0\r\n3446,taccular matthews,taccular,matthews,2013-01-07,Male,1988-08-17,27,25 - 45,African-American,0,6,0,0,2,530,2014-06-21 08:28:12,2014-06-21 08:45:25,12015004TC20A,2012-03-03,,310,M,Driving License Suspended,1,14008578CF10A,(M1),0,2014-06-21,Possess Cannabis/20 Grams Or Less,2014-06-21,2014-06-21,,0,,,,,Risk of Recidivism,6,Medium,2013-01-07,Risk of Violence,5,Medium,2013-01-07,2014-06-21,2014-06-21,2,0,530,0,1\r\n3448,chandra posey,chandra,posey,2013-12-09,Female,1980-11-17,35,25 - 45,African-American,0,7,0,0,12,-2,2013-12-07 05:52:47,2013-12-08 02:32:04,13016936CF10A,2013-12-07,,2,F,Possession Of Alprazolam,1,14007130MM10A,(M1),0,2014-04-29,Trespass Other Struct/Conve,2014-04-29,2014-05-02,,0,,,,,Risk of Recidivism,7,Medium,2013-12-09,Risk of Violence,3,Low,2013-12-09,2014-01-29,2014-02-13,12,0,51,0,1\r\n3449,michael jones,michael,jones,2013-01-17,Male,1979-07-31,36,25 - 45,African-American,0,8,0,0,19,544,2014-07-15 05:11:23,2014-07-15 08:36:46,12015318MM10A,2012-06-14,,217,M,Driving License Suspended,1,14009656CF10A,(F3),0,2014-07-15,Possession of Hydromorphone,2014-07-15,2014-07-15,,0,,,,,Risk of Recidivism,8,High,2013-01-17,Risk of Violence,4,Low,2013-01-17,2014-07-15,2014-07-15,19,0,544,0,1\r\n3451,jon clouse,jon,clouse,2013-01-31,Male,1970-01-22,46,Greater than 45,Caucasian,0,2,0,0,2,266,2013-10-24 12:44:58,2013-12-09 10:08:01,10016285TC10A,2010-04-20,,1017,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-31,Risk of Violence,1,Low,2013-01-31,2013-10-24,2013-12-09,2,0,266,0,0\r\n3452,demetrice boone,demetrice,boone,2013-08-02,Male,1982-03-01,34,25 - 45,African-American,0,1,0,0,3,-1,2013-08-01 08:24:27,2013-08-02 01:23:50,13010777CF10A,2013-08-01,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,2,Low,2013-08-02,2013-08-01,2013-08-02,3,0,973,0,0\r\n3453,cedric carson,cedric,carson,2013-08-13,Male,1970-09-22,45,Greater than 45,African-American,0,3,0,0,15,-1,2013-08-12 11:38:14,2013-08-13 08:12:42,13011334CF10A,2013-08-12,,1,F,Driving While License Revoked,1,14001857TC20A,(M2),,2014-01-03,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-13,Risk of Violence,1,Low,2013-08-13,2015-06-10,2015-06-17,15,0,143,1,1\r\n3454,oshane smith,oshane,smith,2013-02-08,Male,1988-02-18,28,25 - 45,African-American,0,3,0,0,9,-1,2013-02-07 01:24:11,2013-02-23 05:32:34,13001910CF10A,2013-02-07,,1,F,Driving While License Revoked,1,13006747CF10A,(F3),0,2013-05-10,Driving While License Revoked,2013-05-10,2013-05-11,,0,,,,,Risk of Recidivism,3,Low,2013-02-08,Risk of Violence,4,Low,2013-02-08,2013-05-10,2013-05-11,9,15,91,1,1\r\n3455,passha davis,passha,davis,2013-02-25,Female,1991-02-22,25,25 - 45,African-American,0,3,0,0,1,-1,2013-02-24 06:37:00,2013-02-28 08:18:55,13002836CF10A,2013-02-24,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-25,Risk of Violence,3,Low,2013-02-25,2013-02-24,2013-02-28,1,3,1131,0,0\r\n3456,daniel dayes,daniel,dayes,2013-01-01,Male,1994-08-25,21,Less than 25,African-American,0,8,1,0,1,0,2013-01-01 10:37:34,2013-01-02 01:16:38,13000061MM10A,2013-01-01,,0,M,Assault,1,15000836CF10A,(F3),1,2015-01-19,Robbery Sudd Snatch No Weapon,2015-01-20,2015-01-23,,1,15000836CF10A,(F3),2015-01-19,Robbery Sudd Snatch No Weapon,Risk of Recidivism,8,High,2013-01-01,Risk of Violence,8,High,2013-01-01,2013-01-01,2013-01-02,1,1,748,1,0\r\n3457,michael cunningham,michael,cunningham,2014-03-17,Male,1968-02-17,48,Greater than 45,African-American,0,1,0,0,1,-1,2014-03-16 08:38:24,2014-03-17 01:44:33,14003689CF10A,2014-03-16,,1,F,Hiring with Intent to Defraud,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-16,2014-03-17,1,0,746,0,0\r\n3458,jose chavez,jose,chavez,2013-01-26,Male,1978-11-27,37,25 - 45,Caucasian,0,2,0,0,1,-1,2013-01-25 10:39:04,2013-01-26 08:15:41,13001825MM10A,2013-01-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-26,Risk of Violence,3,Low,2013-01-26,2013-01-25,2013-01-26,1,0,1161,0,0\r\n3460,brice hawes,brice,hawes,2013-09-16,Male,1991-09-03,24,Less than 25,African-American,0,6,0,0,3,-3,2013-09-13 08:41:43,2013-09-14 07:50:28,13012968CF10A,2013-09-13,,3,F,Possession of Cocaine,1,14005216MM10A,(M1),0,2014-03-26,Possess Cannabis/20 Grams Or Less,2014-03-26,2014-05-03,,0,,,,,Risk of Recidivism,6,Medium,2013-09-16,Risk of Violence,6,Medium,2013-09-16,2014-03-26,2014-05-03,3,0,191,1,1\r\n3462,vidal cervantes,vidal,cervantes,2014-02-02,Male,1978-12-23,37,25 - 45,Caucasian,0,1,0,0,1,-1,2014-02-01 04:29:57,2014-02-02 08:38:06,14001782MM10A,2014-02-01,,1,M,Battery,1,15006794MM10A,(M1),1,2015-06-24,Battery,2015-06-25,2015-06-25,,1,15006794MM10A,(M1),2015-06-24,Battery,Risk of Recidivism,1,Low,2014-02-02,Risk of Violence,1,Low,2014-02-02,2015-06-25,2015-06-25,1,0,507,1,1\r\n3463,john grant,john,grant,2014-02-10,Male,1976-09-03,39,25 - 45,Caucasian,0,3,0,0,1,-3,2014-02-07 01:11:10,2014-02-07 09:15:23,14001744CF10A,2014-02-06,,4,F,Solicit Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-10,Risk of Violence,4,Low,2014-02-10,2014-06-27,2014-06-28,1,0,137,0,0\r\n3464,christopher mcghie,christopher,mcghie,2013-04-13,Male,1992-02-24,24,Less than 25,Caucasian,0,5,0,1,1,-1,2013-04-12 10:37:03,2013-05-04 02:25:39,13005308CF10A,2013-04-12,,1,F,Burglary Conveyance Unoccup,1,13005713CF10A,(F3),721,2013-04-18,Grand Theft Firearm,2015-04-09,2015-06-08,,0,,,,,Risk of Recidivism,5,Medium,2013-04-13,Risk of Violence,4,Low,2013-04-13,2013-04-12,2013-05-04,1,0,5,1,1\r\n3465,herold delinois,herold,delinois,2013-09-27,Male,1967-04-05,49,Greater than 45,Other,0,1,0,0,2,-1,2013-09-26 10:20:24,2013-09-27 01:35:34,13013684CF10A,,2013-09-26,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-27,Risk of Violence,1,Low,2013-09-27,2013-09-26,2013-09-27,2,0,917,0,0\r\n3468,oneil kerone,oneil,kerone,2013-10-15,Male,1981-02-22,35,25 - 45,African-American,0,10,0,0,3,,,,10017061CF10A,2010-09-21,,1120,F,Aggravated Battery / Pregnant,1,15011321CF10A,(F3),,2015-06-14,False Imprisonment,,,,1,15011321CF10A,(F3),2015-06-14,Felony Battery w/Prior Convict,Risk of Recidivism,10,High,2013-10-15,Risk of Violence,10,High,2013-10-15,,,3,0,607,1,1\r\n3470,jamal khan,jamal,khan,2014-11-10,Male,1992-10-15,23,Less than 25,African-American,0,2,0,0,1,-1,2014-11-09 07:43:48,2014-11-10 07:57:42,14014206CF10A,,2014-11-09,1,F,arrest case no charge,1,15004103MM40A,(M2),,2015-10-22,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-11-10,Risk of Violence,3,Low,2014-11-10,2014-11-09,2014-11-10,1,0,346,1,1\r\n3474,sean hanrahan,sean,hanrahan,2013-06-24,Male,1979-08-07,36,25 - 45,Caucasian,0,3,0,0,4,-123,2013-02-21 05:41:08,2013-03-01 11:04:33,13002674CF10A,2013-02-21,,123,F,Possession of Cocaine,1,13077607TC30A,(M2),362,2013-07-19,Unlaw LicTag/Sticker Attach,2014-07-16,2014-09-09,,0,,,,,Risk of Recidivism,3,Low,2013-06-24,Risk of Violence,2,Low,2013-06-24,2014-07-16,2014-09-09,4,0,25,1,1\r\n3475,donald duke,donald,duke,2013-03-30,Male,1973-04-01,43,25 - 45,Caucasian,0,5,0,0,5,-1,2013-03-29 11:13:36,2013-03-30 04:31:13,13004530CF10A,2013-03-29,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-30,Risk of Violence,6,Medium,2013-03-30,2013-03-29,2013-03-30,5,0,1098,0,0\r\n3476,eliasin reyes,eliasin,reyes,2013-02-23,Male,1988-02-09,28,25 - 45,African-American,0,8,0,0,6,-1,2013-02-22 02:12:21,2013-02-23 08:50:46,12005555MM10A,,2013-02-22,1,M,arrest case no charge,1,13083639TC40A,(M2),,2013-11-12,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2013-02-23,Risk of Violence,3,Low,2013-02-23,2015-09-29,2020-01-01,6,0,262,1,1\r\n3479,shalika scott,shalika,scott,2014-07-15,Female,1994-06-19,21,Less than 25,African-American,1,10,0,0,4,122,2014-11-14 08:39:53,2015-01-08 06:08:02,12013535CF10A,,2014-02-11,154,F,arrest case no charge,1,14015363CF10A,(F3),0,2014-11-14,Grand Theft in the 3rd Degree,2014-11-14,2015-01-08,,0,,,,,Risk of Recidivism,10,High,2014-07-15,Risk of Violence,9,High,2014-07-15,2014-11-14,2015-01-08,4,0,122,1,1\r\n3480,willie wiggins,willie,wiggins,2013-01-03,Male,1962-05-02,53,Greater than 45,African-American,0,2,0,0,1,-1,2013-01-02 10:49:04,2013-01-03 01:20:01,13000112MM10A,2013-01-02,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2013-01-02,2013-01-03,1,0,1184,0,0\r\n3481,shantel smith,shantel,smith,2014-07-08,Female,1988-06-22,27,25 - 45,African-American,0,4,0,0,2,-14,2014-06-24 01:56:07,2014-06-25 02:14:18,14009847MM10A,2014-06-24,,14,M,Petit Theft $100- $300,1,15011579TC10A,(M2),78,2015-03-29,Fail Register Vehicle,2015-06-15,2015-12-12,,0,,,,,Risk of Recidivism,4,Low,2014-07-08,Risk of Violence,3,Low,2014-07-08,2014-12-02,2014-12-25,2,0,147,0,1\r\n3483,jason herring,jason,herring,2013-10-10,Male,1976-11-24,39,25 - 45,Caucasian,0,1,0,0,0,-1,2013-10-09 02:26:58,2013-10-11 10:06:16,13019192MM10A,2013-10-09,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-10,Risk of Violence,1,Low,2013-10-10,2013-10-17,2013-10-22,0,1,7,0,0\r\n3484,samuel bellamy,samuel,bellamy,2013-10-29,Male,1968-08-12,47,Greater than 45,African-American,0,7,0,0,22,-1,2013-10-28 07:25:04,2013-10-29 10:34:45,13015055CF10A,2013-10-28,,1,F,Felony Driving While Lic Suspd,1,14010119CF10A,(F3),0,2014-07-24,Driving While License Revoked,2014-07-24,2014-07-25,,0,,,,,Risk of Recidivism,7,Medium,2013-10-29,Risk of Violence,2,Low,2013-10-29,2014-02-05,2014-02-05,22,0,99,0,1\r\n3485,lemariani camel,lemariani,camel,2013-09-26,Male,1987-09-05,28,25 - 45,African-American,0,2,0,0,4,-1,2013-09-25 06:38:26,2013-09-27 09:54:54,13013476CF10A,2013-09-25,,1,F,Uttering a Forged Instrument,1,15058990TC30A,(M2),,2015-08-31,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-26,Risk of Violence,2,Low,2013-09-26,2013-09-25,2013-09-27,4,1,704,1,1\r\n3487,raul calvet,raul,calvet,2013-05-29,Male,1967-04-02,49,Greater than 45,Caucasian,0,6,0,0,7,,,,13007602CF10A,2013-05-28,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-29,Risk of Violence,4,Low,2013-05-29,,,7,0,1038,0,0\r\n3488,james conroy,james,conroy,2013-07-15,Male,1980-02-03,36,25 - 45,Caucasian,0,1,0,0,2,-4,2013-07-11 11:11:06,2013-07-12 08:34:26,13009750CF10A,2013-07-11,,4,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-15,Risk of Violence,1,Low,2013-07-15,2013-07-11,2013-07-12,2,0,991,0,0\r\n3489,wilnika wilson,wilnika,wilson,2013-02-07,Female,1991-11-21,24,Less than 25,African-American,0,9,0,0,1,-1,2013-02-06 10:07:57,2013-02-10 04:53:33,12016323CF10A,,2013-02-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-07,Risk of Violence,5,Medium,2013-02-07,2013-12-13,2013-12-26,1,3,309,0,0\r\n3491,rogrigo penaranda,rogrigo,penaranda,2014-02-01,Male,1980-10-04,35,25 - 45,Hispanic,0,2,0,0,0,-1,2014-01-31 03:23:35,2014-02-01 10:09:54,14001745MM10A,2014-01-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-01,Risk of Violence,1,Low,2014-02-01,2014-01-31,2014-02-01,0,0,790,0,0\r\n3492,roderick thomas,roderick,thomas,2014-03-10,Male,1993-01-07,23,Less than 25,African-American,0,7,0,0,3,0,2014-03-10 02:25:18,2014-03-11 02:54:42,14003369CF10A,2014-03-09,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-10,Risk of Violence,5,Medium,2014-03-10,2014-03-10,2014-03-11,3,1,753,0,0\r\n3493,gymmy justin,gymmy,justin,2013-04-02,Male,1990-01-06,26,25 - 45,African-American,0,2,0,0,2,-1,2013-04-01 11:49:53,2013-04-02 12:59:44,13004676CF10A,2013-04-01,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-02,Risk of Violence,3,Low,2013-04-02,2013-06-27,2013-06-28,2,0,86,0,0\r\n3498,nakiea maywa,nakiea,maywa,2013-04-22,Male,1985-01-03,31,25 - 45,African-American,0,4,0,0,7,-1,2013-04-21 02:00:34,2013-06-14 08:47:39,13005705CF10A,2013-04-21,,1,F,Grand Theft in the 3rd Degree,1,14011102CF10A,(F3),,2013-11-06,\"Poss3,4 Methylenedioxymethcath\",,,,0,,,,,Risk of Recidivism,4,Low,2013-04-22,Risk of Violence,4,Low,2013-04-22,2013-04-21,2013-06-14,7,53,198,1,1\r\n3499,johnny masses,johnny,masses,2013-01-07,Female,1985-09-20,30,25 - 45,African-American,0,10,3,2,14,0,2013-01-07 04:56:40,2013-01-12 08:50:28,13000270CF10A,2013-01-07,,0,F,Carrying Concealed Firearm,1,14003094CF10A,(M1),1,2014-03-04,Resist/Obstruct W/O Violence,2014-03-05,2014-04-11,,1,14004826MM10A,(M1),2014-03-04,Assault Law Enforcement Officer,Risk of Recidivism,10,High,2013-01-07,Risk of Violence,7,Medium,2013-01-07,2013-04-06,2013-04-13,14,5,89,0,1\r\n3500,justin darrall,justin,darrall,2013-03-19,Male,1990-08-03,25,25 - 45,Caucasian,0,6,0,0,2,0,2013-03-19 03:36:03,2013-03-20 04:10:08,13005428MM10A,2013-03-19,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-19,Risk of Violence,6,Medium,2013-03-19,2013-03-19,2013-03-20,2,1,1109,0,0\r\n3501,jamal jackson,jamal,jackson,2014-11-14,Male,1992-03-13,24,Less than 25,African-American,0,10,0,0,6,0,2014-11-14 01:39:45,2014-11-15 03:56:09,14015310CF10A,2014-11-13,,1,F,Deliver Cocaine,1,14017154CF10A,(F3),0,2014-12-29,Possession of Cocaine,2014-12-29,2014-12-30,,0,,,,,Risk of Recidivism,10,High,2014-11-14,Risk of Violence,9,High,2014-11-14,2014-12-29,2014-12-30,6,1,45,1,1\r\n3502,sammy garcia,sammy,garcia,2013-08-27,Male,1981-11-29,34,25 - 45,Hispanic,0,1,0,0,1,-1,2013-08-26 09:18:27,2013-08-27 06:21:27,13012037CF10A,2013-08-26,,1,F,Grand Theft in the 3rd Degree,1,15011282MM10A,(M1),,2015-07-13,Eng/Bus/Contract W/O License,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,2013-08-26,2013-08-27,1,0,685,1,1\r\n3504,jacolby floyd,jacolby,floyd,2013-06-28,Male,1990-03-12,26,25 - 45,African-American,0,4,0,0,2,-29,2013-05-30 07:22:09,2013-06-28 05:34:53,13010391MM10A,2013-05-30,,29,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-28,Risk of Violence,4,Low,2013-06-28,2013-05-30,2013-06-28,2,0,1008,0,0\r\n3506,timothy newson,timothy,newson,2013-08-23,Male,1989-06-13,26,25 - 45,African-American,0,8,0,0,7,-49,2013-07-05 09:14:47,2013-07-06 07:12:01,13012786MM10A,2013-07-05,,49,M,Carrying A Concealed Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-23,Risk of Violence,6,Medium,2013-08-23,2014-06-19,2014-06-24,7,0,300,0,0\r\n3507,paulo lapa,paulo,lapa,2013-05-20,Male,1955-08-16,60,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-05-19 06:07:29,2013-05-20 06:56:01,13007127CF10A,2013-05-19,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-20,Risk of Violence,1,Low,2013-05-20,2015-07-15,2015-07-20,0,0,786,0,0\r\n3508,elexus shell,elexus,shell,2014-03-14,Female,1995-12-05,20,Less than 25,African-American,0,5,0,0,0,-1,2014-03-13 10:29:12,2014-03-14 08:36:11,14003646CF10A,2014-03-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-14,Risk of Violence,7,Medium,2014-03-14,2014-03-13,2014-03-14,0,0,749,0,0\r\n3510,michael ridgley,michael,ridgley,2014-12-17,Male,1979-09-13,36,25 - 45,Caucasian,1,9,0,0,10,92,2015-03-19 05:48:12,2015-06-11 09:46:09,14013648MM10A,2014-09-13,,95,M,Battery,1,15003768CF10A,(F3),0,2015-03-19,Grand Theft in the 3rd Degree,2015-03-19,2015-06-11,,0,,,,,Risk of Recidivism,9,High,2014-12-17,Risk of Violence,4,Low,2014-12-17,2015-03-19,2015-06-11,10,0,92,1,1\r\n3511,angel navarro,angel,navarro,2014-03-20,Male,1992-10-14,23,Less than 25,Caucasian,0,3,0,0,0,0,2014-03-20 03:17:09,2014-03-20 09:58:54,14003947CF10A,2014-03-20,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-20,Risk of Violence,4,Low,2014-03-20,2014-03-20,2014-03-20,0,0,743,0,0\r\n3512,christopher stewart,christopher,stewart,2013-04-10,Male,1989-09-21,26,25 - 45,African-American,0,7,0,0,5,-1,2013-04-09 11:57:35,2013-04-16 10:03:13,13005083CF10A,,2013-04-09,1,F,arrest case no charge,1,13009521CF10A,(F7),,2013-06-13,Burglary Conveyance Assault/Bat,,,,1,13009521CF10A,(F7),2013-06-13,Burglary Conveyance Assault/Bat,Risk of Recidivism,7,Medium,2013-04-10,Risk of Violence,6,Medium,2013-04-10,2013-04-09,2013-04-16,5,6,64,1,1\r\n3515,james true,james,true,2014-01-07,Male,1975-09-03,40,25 - 45,Caucasian,0,1,0,0,4,0,2014-01-07 02:22:12,2014-01-08 03:19:00,14001010MU10A,2014-01-06,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-07,Risk of Violence,1,Low,2014-01-07,2014-04-11,2014-04-15,4,1,94,0,0\r\n3516,onique williams,onique,williams,2014-03-03,Male,1987-06-20,28,25 - 45,Other,0,3,0,0,1,-1,2014-03-02 04:53:07,2014-03-03 08:04:38,14002949CF10A,2014-03-02,,1,F,Felony Driving While Lic Suspd,1,15011203MM10A,(M1),1,2015-10-25,Battery,2015-10-26,2015-10-31,,1,15011203MM10A,(M1),2015-10-25,Battery,Risk of Recidivism,3,Low,2014-03-03,Risk of Violence,3,Low,2014-03-03,2015-10-26,2015-10-31,1,0,601,1,1\r\n3517,edson ferrari,edson,ferrari,2013-01-20,Male,1967-02-08,49,Greater than 45,Hispanic,0,1,0,0,1,-1,2013-01-19 01:22:35,2013-01-24 09:31:50,13000906CF10A,2013-01-19,,1,F,Grand Theft in the 3rd Degree,1,14001399MM40A,(M2),,2014-03-01,Disorderly Intoxication,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-20,Risk of Violence,1,Low,2013-01-20,2013-01-19,2013-01-24,1,4,405,1,1\r\n3519,anthony irby,anthony,irby,2013-09-09,Male,1970-01-05,46,Greater than 45,African-American,0,3,0,0,8,400,2014-10-14 12:07:09,2015-07-20 12:14:20,11012497CF10A,,2012-09-21,353,F,arrest case no charge,1,13095157TC30A,(M2),396,2013-09-13,Driving License Suspended,2014-10-14,2015-07-20,,0,,,,,Risk of Recidivism,3,Low,2013-09-09,Risk of Violence,3,Low,2013-09-09,2016-01-13,2016-01-22,8,0,4,1,1\r\n3521,nickson marcellus,nickson,marcellus,2014-01-23,Male,1996-07-11,19,Less than 25,African-American,0,10,1,0,1,0,2014-01-23 03:19:30,2014-01-23 01:04:34,13017969CF10A,,2014-01-23,0,F,arrest case no charge,1,16000241MM20A,(M1),,2016-01-04,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,10,High,2014-01-23,Risk of Violence,10,High,2014-01-23,2016-01-05,2016-02-26,1,0,711,1,1\r\n3523,jesus melero,jesus,melero,2014-02-13,Male,1962-05-20,53,Greater than 45,Caucasian,0,1,0,0,1,-12,2014-02-01 11:21:58,2014-02-13 10:41:33,14001208CF10A,,2014-02-01,12,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-13,Risk of Violence,1,Low,2014-02-13,2014-02-01,2014-02-13,1,0,778,0,0\r\n3525,anthony allegretti,anthony,allegretti,2013-04-19,Male,1959-09-09,56,Greater than 45,Caucasian,0,2,0,0,5,-45,2013-03-05 03:44:35,2013-03-13 07:58:40,13003297CF10A,2013-03-05,,45,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-03-05,2013-03-13,5,0,1078,0,0\r\n3528,shameka peterson,shameka,peterson,2013-08-20,Female,1991-11-04,24,Less than 25,African-American,0,3,0,0,0,-1,2013-08-19 09:16:36,2013-08-20 07:47:23,13011621CF10A,2013-08-19,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-20,Risk of Violence,3,Low,2013-08-20,2013-08-19,2013-08-20,0,0,955,0,0\r\n3529,isaac pardo,isaac,pardo,2013-03-18,Male,1985-01-17,31,25 - 45,Hispanic,0,1,0,0,0,-5,2013-03-13 03:41:11,2013-03-14 07:33:57,13003684CF10A,2013-03-13,,5,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-13,2013-03-14,0,0,1110,0,0\r\n3531,sonia burca,sonia,burca,2013-02-08,Female,1982-06-20,33,25 - 45,Caucasian,0,3,0,0,2,-1,2013-02-07 12:53:38,2013-02-07 07:17:58,13001870CF10A,2013-02-06,,2,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-08,Risk of Violence,2,Low,2013-02-08,2013-05-17,2013-06-27,2,0,98,0,0\r\n3533,michael gonzalez,michael,gonzalez,2013-03-23,Male,1989-06-03,26,25 - 45,Caucasian,0,10,3,0,8,-1,2013-03-22 06:22:56,2013-05-03 03:49:00,13004177CF10A,2013-03-22,,1,F,Robbery / Weapon,1,14000546CF10A,(F3),,2013-11-07,Grand Theft in the 3rd Degree,,,,1,14000309CF10A,(F3),2013-12-30,Aggravated Assault w/Firearm,Risk of Recidivism,10,High,2013-03-23,Risk of Violence,7,Medium,2013-03-23,2013-03-22,2013-05-03,8,41,229,1,1\r\n3534,derik pollard,derik,pollard,2013-06-27,Male,1959-06-13,56,Greater than 45,Caucasian,0,1,0,0,1,-65,2013-04-23 07:19:10,2013-04-26 01:43:59,13005816CF10A,2013-04-23,,65,M,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-27,Risk of Violence,1,Low,2013-06-27,2013-04-23,2013-04-26,1,0,1009,0,0\r\n3535,douglas states,douglas,states,2013-04-19,Male,1984-01-29,32,25 - 45,Caucasian,0,2,0,0,2,-1,2013-04-18 10:07:01,2013-04-19 07:21:29,13005584CF10A,2013-04-18,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-19,Risk of Violence,2,Low,2013-04-19,2013-12-09,2013-12-10,2,0,234,0,0\r\n3536,oscar tapia,oscar,tapia,2014-09-08,Male,1990-06-14,25,25 - 45,Caucasian,0,2,0,0,0,0,2014-09-08 03:42:10,2014-09-11 03:44:41,14012251CF10A,,2014-09-08,0,F,arrest case no charge,1,15003130CF10A,(F3),0,2015-03-07,Tamper With Witness/Victim/CI,2015-03-07,2015-03-08,,1,15003130CF10A,(M1),2015-03-07,Battery,Risk of Recidivism,2,Low,2014-09-08,Risk of Violence,3,Low,2014-09-08,2015-03-07,2015-03-08,0,3,180,1,1\r\n3538,marvon jemmott,marvon,jemmott,2013-12-14,Male,1995-01-17,21,Less than 25,African-American,0,2,0,0,1,-1,2013-12-13 07:02:10,2013-12-14 01:30:41,13017261CF10A,2013-12-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-14,Risk of Violence,5,Medium,2013-12-14,2014-11-12,2014-12-24,1,0,333,0,0\r\n3539,zaviaus smith,zaviaus,smith,2013-04-13,Male,1977-07-29,38,25 - 45,African-American,0,5,0,0,3,0,2013-04-13 01:46:54,2013-04-14 07:38:52,13006908CF10A,2013-04-12,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-13,Risk of Violence,6,Medium,2013-04-13,2013-04-13,2013-04-14,3,1,1084,0,0\r\n3540,patrick santoni,patrick,santoni,2013-10-09,Male,1992-05-26,23,Less than 25,Caucasian,0,2,0,0,0,-4,2013-10-05 05:06:33,2013-10-06 07:58:45,13013989CF10A,2013-10-05,,4,F,Fleeing Or Attmp Eluding A Leo,1,16001749MM10A,(M1),0,2016-02-23,Resist/Obstruct W/O Violence,2016-02-23,2016-02-24,,0,,,,,Risk of Recidivism,2,Low,2013-10-09,Risk of Violence,3,Low,2013-10-09,2016-02-23,2016-02-24,0,0,867,1,0\r\n3541,royston walker,royston,walker,2014-01-23,Male,1948-05-14,67,Greater than 45,African-American,0,1,0,0,4,,,,13039262TC10A,2013-08-03,,173,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-23,Risk of Violence,1,Low,2014-01-23,,,4,0,799,0,0\r\n3542,david hise,david,hise,2014-03-28,Male,1996-01-23,20,Less than 25,Caucasian,0,6,0,1,0,-1,2014-03-27 01:13:30,2014-04-04 08:54:48,14004339CF10A,,2014-03-27,1,F,arrest case no charge,1,15000397CF10A,(F3),0,2015-01-09,Grand Theft in the 3rd Degree,2015-01-09,2015-02-05,,1,15000397CF10A,(F1),2015-01-09,Aid/Abet Burglary Assault/Batt,Risk of Recidivism,6,Medium,2014-03-28,Risk of Violence,7,Medium,2014-03-28,2015-01-09,2015-02-05,0,7,287,1,1\r\n3543,alexis kelmann,alexis,kelmann,2014-08-13,Female,1976-10-15,39,25 - 45,Caucasian,0,1,0,0,4,-2,2014-08-11 06:20:44,2014-08-12 09:21:35,14010954CF10A,2014-08-11,,2,F,Aggravated Assault W/Dead Weap,1,15009711MM10A,(M2),1,2015-09-13,Disorderly Conduct,2015-09-14,2015-09-14,,0,,,,,Risk of Recidivism,1,Low,2014-08-13,Risk of Violence,1,Low,2014-08-13,2015-09-14,2015-09-14,4,0,396,1,1\r\n3544,janel williams,janel,williams,2014-01-14,Male,1991-07-07,24,Less than 25,African-American,0,2,0,0,1,-1,2014-01-13 09:14:52,2014-01-19 09:29:15,14000577CF10A,2014-01-13,,1,F,Burglary Unoccupied Dwelling,1,14013919MM10A,(M1),0,2014-09-18,Battery,2014-09-18,2015-01-05,,1,14013919MM10A,(M1),2014-09-18,Battery,Risk of Recidivism,2,Low,2014-01-14,Risk of Violence,3,Low,2014-01-14,2014-09-18,2015-01-05,1,5,247,1,1\r\n3546,richard santos,richard,santos,2014-02-20,Male,1992-12-11,23,Less than 25,Hispanic,0,2,0,0,0,0,2014-02-20 01:30:24,2014-02-20 08:53:21,14002359CF10A,2014-02-19,,1,F,Agg Fleeing/Eluding High Speed,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-20,Risk of Violence,3,Low,2014-02-20,2014-02-20,2014-02-20,0,0,771,0,0\r\n3547,timothy young,timothy,young,2013-03-09,Male,1967-03-22,49,Greater than 45,African-American,0,4,0,0,3,-1,2013-03-08 08:30:08,2013-03-09 08:10:58,12017244CF10A,,2013-03-08,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2013-03-08,2013-03-09,3,0,1119,0,0\r\n3550,timothy mccullough,timothy,mccullough,2013-04-08,Male,1984-08-03,31,25 - 45,African-American,0,7,0,0,7,-1,2013-04-07 08:22:22,2013-06-24 06:50:46,13004983CF10A,2013-04-07,,1,F,Poss of Firearm by Convic Felo,1,14010265CF10A,(F3),0,2014-04-26,Possession of Cannabis,2014-04-26,2014-04-27,,0,,,,,Risk of Recidivism,7,Medium,2013-04-08,Risk of Violence,7,Medium,2013-04-08,2014-04-26,2014-04-27,7,77,383,1,1\r\n3551,deon ford,deon,ford,2014-09-23,Male,1995-10-25,20,Less than 25,African-American,0,6,0,0,1,-26,2014-08-28 07:11:04,2014-09-13 12:27:54,14011764CF10A,2014-08-28,,26,F,Grand Theft in the 3rd Degree,1,14017016CF10A,(F3),0,2014-12-24,Grand Theft Dwell Property,2014-12-24,2015-03-31,,0,,,,,Risk of Recidivism,6,Medium,2014-09-23,Risk of Violence,8,High,2014-09-23,2014-10-29,2014-11-25,1,0,36,0,1\r\n3552,john macpherson,john,macpherson,2014-03-14,Male,1987-07-17,28,25 - 45,Caucasian,0,3,0,0,0,0,2014-03-14 03:35:23,2014-03-27 08:45:42,14004467MM10A,2014-03-14,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-14,Risk of Violence,2,Low,2014-03-14,2014-03-14,2014-03-27,0,13,749,0,0\r\n3554,claude grenon,claude,grenon,2013-01-26,Male,1949-02-18,67,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-01-25 03:23:20,2013-01-26 09:12:07,13001269CF10A,,2013-01-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-26,Risk of Violence,1,Low,2013-01-26,2013-01-25,2013-01-26,3,0,1161,0,0\r\n3556,angel dejesus,angel,dejesus,2013-11-28,Male,1983-04-06,33,25 - 45,Hispanic,0,1,0,0,0,0,2013-11-28 02:33:43,2013-11-29 08:55:05,13016553CF10A,2013-11-28,,0,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-28,Risk of Violence,1,Low,2013-11-28,2013-11-28,2013-11-29,0,1,855,0,0\r\n3557,geison trejos,geison,trejos,2014-01-17,Male,1996-02-29,20,Less than 25,Hispanic,1,8,0,0,1,-189,2013-07-12 04:18:27,2013-07-13 03:03:05,13009777CF10A,,2013-07-12,189,F,arrest case no charge,1,14073058TC20A,(M2),5,2014-10-12,Operating W/O Valid License,2014-10-17,2014-11-13,,0,,,,,Risk of Recidivism,8,High,2014-01-17,Risk of Violence,10,High,2014-01-17,2015-05-28,2016-01-27,1,0,268,1,1\r\n3560,michael murdough,michael,murdough,2013-11-06,Male,1975-09-23,40,25 - 45,Caucasian,0,3,0,0,4,-80,2013-08-18 01:02:37,2013-11-04 12:02:25,01004839CF10A,,2013-08-26,72,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-06,Risk of Violence,4,Low,2013-11-06,2013-08-18,2013-11-04,4,0,877,0,0\r\n3562,craig lattimore,craig,lattimore,2013-02-16,Male,1963-09-03,52,Greater than 45,African-American,0,1,0,0,0,-1,2013-02-15 07:20:36,2013-02-16 07:12:26,13002365CF10A,2013-02-15,,1,F,Solicitation On Felony 3 Deg,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-16,Risk of Violence,1,Low,2013-02-16,2013-02-15,2013-02-16,0,0,1140,0,0\r\n3563,jessie mcnair,jessie,mcnair,2013-12-23,Male,1970-07-31,45,Greater than 45,African-American,0,7,0,0,17,-1,2013-12-22 06:16:26,2014-02-07 03:27:47,13017621CF10A,2013-12-22,,1,F,Felony Petit Theft,1,14000907MM40A,(M2),,2014-02-10,Petit Theft,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-23,Risk of Violence,5,Medium,2013-12-23,2013-12-22,2014-02-07,17,46,49,1,1\r\n3564,scott sylvain,scott,sylvain,2013-02-22,Male,1989-03-06,27,25 - 45,African-American,0,7,0,1,8,-1,2013-02-21 07:24:46,2013-02-22 09:27:19,13002686CF10A,2013-02-21,,1,F,Poss Cocaine/Intent To Del/Sel,1,13039594TC20A,(M2),,2013-06-17,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-22,Risk of Violence,4,Low,2013-02-22,2013-03-14,2013-03-19,8,0,20,0,1\r\n3566,steven corey,steven,corey,2013-08-01,Male,1993-11-30,22,Less than 25,Caucasian,0,9,0,0,1,-1,2013-07-31 02:58:40,2013-08-01 09:55:06,13010696CF10A,2013-07-31,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-01,Risk of Violence,9,High,2013-08-01,2013-12-05,2013-12-07,1,0,126,0,0\r\n3568,emad abdelquader,emad,abdelquader,2013-02-19,Male,1979-12-09,36,25 - 45,Caucasian,0,7,0,0,9,-42,2013-01-08 03:25:44,2013-01-09 02:55:36,13000318CF10A,2013-01-08,,42,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-19,Risk of Violence,3,Low,2013-02-19,2014-12-16,2015-06-12,9,0,665,0,0\r\n3570,julio salem,julio,salem,2014-11-28,Male,1975-09-12,40,25 - 45,Caucasian,0,1,0,0,0,-1,2014-11-27 04:39:17,2014-11-28 01:49:05,14016882MM10A,2014-11-27,,1,M,Battery,1,15012294MM10A,(M1),0,2015-11-20,Giving False Crime Report,2015-11-20,2015-11-22,,1,15012158MM10A,(M1),2015-11-20,Battery,Risk of Recidivism,1,Low,2014-11-28,Risk of Violence,1,Low,2014-11-28,2015-11-20,2015-11-22,0,0,357,1,1\r\n3571,donny evans,donny,evans,2013-04-12,Male,1985-09-10,30,25 - 45,Caucasian,0,8,0,0,1,0,2013-04-12 05:23:21,2013-04-12 08:19:16,13007109MM10A,2013-04-12,,0,M,Expired DL More Than 6 Months,1,14006749MM10A,(M1),0,2014-04-21,Battery,2014-04-21,2014-04-22,,1,14006749MM10A,(M1),2014-04-21,Battery,Risk of Recidivism,8,High,2013-04-12,Risk of Violence,6,Medium,2013-04-12,2014-04-21,2014-04-22,1,0,374,1,1\r\n3573,jonas garcon,jonas,garcon,2013-10-24,Male,1973-10-07,42,25 - 45,African-American,0,1,0,0,1,-1,2013-10-23 09:26:43,2013-10-24 01:16:59,13003080CF10A,,2013-10-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-24,Risk of Violence,1,Low,2013-10-24,2013-11-14,2013-11-15,1,0,21,0,0\r\n3574,maurice williams,maurice,williams,2013-05-01,Male,1991-08-28,24,Less than 25,African-American,0,3,0,1,2,0,2013-05-01 05:10:52,2013-05-03 03:49:31,13006253CF10A,2013-05-01,,0,F,False Ownership Info/Pawn Item,1,13017807CF10A,(M2),0,2013-12-26,Operating W/O Valid License,2013-12-26,2014-06-24,,0,,,,,Risk of Recidivism,3,Low,2013-05-01,Risk of Violence,4,Low,2013-05-01,2013-12-26,2014-06-24,2,2,239,1,1\r\n3576,christopher moreno,christopher,moreno,2013-03-13,Male,1970-03-27,46,Greater than 45,Caucasian,0,2,0,0,4,-5,2013-03-08 11:15:24,2013-03-11 03:23:55,13003470CF10A,2013-03-08,,5,F,Video Voyeur-<24Y on Child >16,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-13,Risk of Violence,1,Low,2013-03-13,2013-03-08,2013-03-11,4,0,1115,0,0\r\n3577,jerome green,jerome,green,2014-02-06,Male,1977-07-13,38,25 - 45,African-American,0,3,0,0,4,0,2014-02-06 12:36:29,2014-02-06 09:10:10,14001657CF10A,2014-02-05,,1,F,Sell or Offer for Sale Counterfeit Goods,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-06,Risk of Violence,2,Low,2014-02-06,2014-02-06,2014-02-06,4,0,785,0,0\r\n3578,michael visconti,michael,visconti,2013-08-28,Male,1976-04-22,39,25 - 45,Hispanic,0,1,0,0,2,-113,2013-05-07 12:41:47,2013-08-20 10:59:38,13006464CF10A,2013-05-06,,114,F,Crimin Mischief Damage $1000+,1,14000241MM10A,(M1),1,2014-01-06,Assault On Law Enforc Officer,2014-01-07,2014-03-11,,1,14000241MM10A,(M1),2014-01-06,Assault On Law Enforc Officer,Risk of Recidivism,1,Low,2013-08-28,Risk of Violence,2,Low,2013-08-28,2014-03-11,2015-05-04,2,0,131,1,1\r\n3582,natalie roldan,natalie,roldan,2014-07-07,Female,1984-01-29,32,25 - 45,Hispanic,0,3,0,0,0,-1,2014-07-06 10:24:03,2014-07-14 08:44:40,14024725MU10A,2014-07-06,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,1,14001495MM30A,(M2),,2014-09-03,Petit Theft,,,,0,,,,,Risk of Recidivism,3,Low,2014-07-07,Risk of Violence,2,Low,2014-07-07,2014-07-06,2014-07-14,0,7,58,1,1\r\n3584,amadeo pabon,amadeo,pabon,2014-02-01,Male,1989-07-13,26,25 - 45,Caucasian,0,5,0,0,0,-1,2014-01-31 07:36:44,2014-02-01 08:44:54,14001389CF10A,2014-01-31,,1,M,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-01,Risk of Violence,4,Low,2014-02-01,2014-01-31,2014-02-01,0,0,790,0,0\r\n3585,dale hargrove,dale,hargrove,2014-03-16,Male,1962-03-06,54,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-03-15 06:43:38,2014-03-16 09:21:10,14004525MM10A,2014-03-15,,1,M,Battery,1,14009538CF10A,(F3),0,2014-07-12,Grand Theft in the 3rd Degree,2014-07-12,2014-08-15,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-07-12,2014-08-15,1,0,118,1,1\r\n3591,andres varela,andres,varela,2013-08-13,Male,1989-01-02,27,25 - 45,Hispanic,0,3,0,0,2,-10,2013-08-03 10:33:08,2013-08-13 10:45:31,13010874CF10A,2013-08-03,,10,F,Lewd/Lasc Battery Pers 12+/<16,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-13,Risk of Violence,2,Low,2013-08-13,2013-08-03,2013-08-13,2,0,962,0,0\r\n3593,mark depalma,mark,depalma,2013-09-27,Male,1954-07-24,61,Greater than 45,Caucasian,0,4,0,0,1,0,2013-09-27 04:19:45,2013-09-28 05:16:53,13013737CF10A,,2013-09-27,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-27,Risk of Violence,2,Low,2013-09-27,2013-09-27,2013-09-28,1,1,917,0,0\r\n3594,mark frances,mark,frances,2014-04-01,Male,1965-03-09,51,Greater than 45,African-American,0,4,0,0,1,-1,2014-03-31 11:58:03,2014-04-01 01:23:30,14005521MM10A,2014-03-31,,1,M,Possess Cannabis/20 Grams Or Less,1,14002243MM40A,(M1),,2014-05-10,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2014-04-01,Risk of Violence,1,Low,2014-04-01,2014-03-31,2014-04-01,1,0,39,1,1\r\n3596,carlos ramirezdiaz,carlos,ramirezdiaz,2013-05-04,Male,1958-10-11,57,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-04 12:03:36,2013-06-01 05:43:28,13006410CF10A,2013-05-03,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2013-05-04,2013-06-01,0,28,1063,0,0\r\n3597,steven filizzola,steven,filizzola,2013-12-23,Male,1992-03-24,24,Less than 25,Caucasian,0,5,0,3,3,-1,2013-12-22 06:05:43,2013-12-23 07:54:43,13023579MM10A,2013-12-22,,1,M,Battery,1,15006657MM10A,(M1),0,2015-06-20,Battery,2015-06-20,2015-06-22,,1,15006657MM10A,(M1),2015-06-20,Battery,Risk of Recidivism,5,Medium,2013-12-23,Risk of Violence,4,Low,2013-12-23,2015-06-20,2015-06-22,3,0,544,1,1\r\n3598,sterlyn ayres,sterlyn,ayres,2013-04-19,Male,1981-09-10,34,25 - 45,African-American,0,1,0,0,1,-1,2013-04-18 08:16:22,2013-04-19 07:23:23,13004136CF10A,,2013-04-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,2,Low,2013-04-19,2013-04-18,2013-04-19,1,0,1078,0,0\r\n3600,alberto pagan,alberto,pagan,2013-05-26,Male,1988-07-05,27,25 - 45,Hispanic,0,2,0,0,1,-1,2013-05-25 11:25:22,2013-05-27 04:29:59,13007466CF10A,2013-05-25,,1,F,Throw Missile Into Pub/Priv Dw,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-26,Risk of Violence,3,Low,2013-05-26,2013-05-25,2013-05-27,1,1,1041,0,0\r\n3601,janay owens,janay,owens,2013-04-16,Female,1987-06-24,28,25 - 45,African-American,0,7,0,0,10,15,2013-05-01 12:48:11,2013-05-05 02:08:02,13013022TC10A,2013-03-11,,36,M,Operating W/O Valid License,1,13010940CF10A,(F3),0,2013-08-05,Fleeing or Eluding a LEO,2013-08-05,2013-11-13,,0,,,,,Risk of Recidivism,7,Medium,2013-04-16,Risk of Violence,4,Low,2013-04-16,2013-05-01,2013-05-05,10,0,15,0,1\r\n3602,jahara graham,jahara,graham,2013-05-19,Male,1981-01-04,35,25 - 45,African-American,0,8,0,0,10,0,2013-05-19 12:58:48,2013-05-20 02:43:09,13009593MM10A,2013-05-18,,1,M,Viol Prot Injunc Repeat Viol,1,13014978CF10A,(F3),1,2013-10-25,Tampering With Physical Evidence,2013-10-26,2013-10-26,,1,13014978CF10A,(F3),2013-10-25,Agg Fleeing and Eluding,Risk of Recidivism,8,High,2013-05-19,Risk of Violence,3,Low,2013-05-19,2013-05-19,2013-05-20,10,1,159,1,1\r\n3603,james augustin,james,augustin,2013-01-03,Male,1985-07-23,30,25 - 45,African-American,0,6,0,0,6,0,2013-01-03 01:22:48,2013-01-04 06:15:58,13000123CF10A,2013-01-03,,0,F,Driving While License Revoked,1,14018095TC10A,(M2),,2014-04-24,DWLS/License Susp/Revoked,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-03,Risk of Violence,4,Low,2013-01-03,2013-01-03,2013-01-04,6,1,476,1,1\r\n3604,phillip hunt,phillip,hunt,2013-03-08,Male,1962-05-24,53,Greater than 45,Other,0,5,0,0,1,733,2015-03-11 07:45:41,2015-03-16 09:42:12,12010684CF10A,,2012-12-06,92,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-08,Risk of Violence,2,Low,2013-03-08,2015-03-11,2015-03-16,1,0,733,0,0\r\n3605,victor levell,victor,levell,2013-11-11,Male,1971-10-17,44,25 - 45,African-American,0,1,0,0,0,-1,2013-11-10 03:52:01,2013-11-11 07:55:14,13015658CF10A,2013-11-10,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-11,Risk of Violence,2,Low,2013-11-11,2014-01-23,2014-06-04,0,0,73,0,0\r\n3607,louis franck,louis,franck,2014-04-05,Male,1958-12-12,57,Greater than 45,Caucasian,0,3,0,0,3,,,,11018944TC40A,2011-03-15,,1117,M,Posses/Disply Susp/Revk/Frd DL,1,15002291MM10A,(M1),,2014-12-22,Unlicensed Contractor,,,,0,,,,,Risk of Recidivism,3,Low,2014-04-05,Risk of Violence,1,Low,2014-04-05,,,3,0,261,1,1\r\n3611,randall zucker,randall,zucker,2013-10-03,Male,1955-01-05,61,Greater than 45,Caucasian,0,6,0,0,10,-1,2013-10-02 11:48:45,2013-10-25 08:32:28,13013818CF10A,2013-10-02,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-03,Risk of Violence,5,Medium,2013-10-03,2013-12-24,2014-01-08,10,22,82,0,0\r\n3614,denard shell,denard,shell,2013-09-14,Male,1989-06-20,26,25 - 45,African-American,0,9,0,0,1,-1,2013-09-13 11:20:38,2013-09-14 07:13:20,13012960CF10A,,2013-09-13,1,F,arrest case no charge,1,14014480CF10A,(F3),0,2014-10-28,Grand Theft in the 3rd Degree,2014-10-28,2014-11-08,,0,,,,,Risk of Recidivism,9,High,2013-09-14,Risk of Violence,7,Medium,2013-09-14,2014-10-28,2014-11-08,1,0,409,1,1\r\n3616,edwin davis,edwin,davis,2014-09-20,Male,1967-05-13,48,Greater than 45,African-American,1,7,0,0,10,-1,2014-09-19 03:50:41,2014-09-23 06:15:00,14012711CF10A,2014-09-19,,1,F,Felony Driving While Lic Suspd,1,15030363TC10A,(M2),,2015-10-30,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2014-09-20,Risk of Violence,6,Medium,2014-09-20,2014-09-19,2014-09-23,10,3,405,1,1\r\n3617,ronald burns,ronald,burns,2013-12-29,Male,1973-07-16,42,25 - 45,African-American,0,1,0,0,4,0,2013-12-29 04:03:24,2013-12-29 07:27:08,08058411TC40A,2008-06-29,,2009,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-29,Risk of Violence,1,Low,2013-12-29,2015-11-23,2015-12-07,4,0,694,0,0\r\n3618,jeremy miks,jeremy,miks,2014-06-15,Male,1978-03-26,38,25 - 45,Caucasian,0,8,0,0,10,-1,2014-06-14 07:54:48,2014-06-15 01:26:31,14008240CF10A,2014-06-14,,1,F,Possession of Cocaine,1,14009994CF10A,(F3),0,2014-07-22,Possession of Cocaine,2014-07-22,2014-08-25,,0,,,,,Risk of Recidivism,8,High,2014-06-15,Risk of Violence,2,Low,2014-06-15,2014-07-22,2014-08-25,10,0,37,1,1\r\n3619,willie clark,willie,clark,2013-08-06,Male,1977-02-09,39,25 - 45,African-American,0,2,0,0,4,-32,2013-07-05 12:39:54,2013-07-12 08:26:45,13011031CF10A,2013-08-06,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-06,Risk of Violence,2,Low,2013-08-06,2013-09-18,2013-10-02,4,0,43,0,0\r\n3620,stella ashen,stella,ashen,2013-12-16,Female,1963-01-03,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-15 12:10:10,2013-12-16 01:08:05,13023231MM10A,2013-12-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,0,0,837,0,0\r\n3622,leonard joiner,leonard,joiner,2013-01-17,Male,1989-12-16,26,25 - 45,African-American,0,10,0,0,3,-1,2013-01-16 07:22:02,2013-01-18 05:35:35,13001101MO10A,2013-01-16,,1,M,Poss Of Controlled Substance,1,15004511CF10A,(F3),0,2015-04-06,Grand Theft in the 3rd Degree,2015-04-06,2015-04-06,,0,,,,,Risk of Recidivism,10,High,2013-01-17,Risk of Violence,9,High,2013-01-17,2015-04-06,2015-04-06,3,1,809,0,0\r\n3624,raheme ward,raheme,ward,2013-03-21,Male,1994-03-10,22,Less than 25,African-American,0,7,0,0,1,-1,2013-03-20 01:58:27,2013-03-21 01:08:42,13004040CF10A,2013-03-20,,1,F,Burglary Unoccupied Dwelling,1,14017898TC10A,(M2),415,2014-05-03,Operating W/O Valid License,2015-06-22,2015-10-01,,0,,,,,Risk of Recidivism,7,Medium,2013-03-21,Risk of Violence,6,Medium,2013-03-21,2013-05-23,2013-05-25,1,0,63,0,1\r\n3626,juan conde,juan,conde,2014-02-12,Male,1966-01-16,50,Greater than 45,Caucasian,0,7,0,0,0,-1,2014-02-11 04:53:10,2014-03-13 10:02:48,14001935CF10A,2014-02-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-12,Risk of Violence,2,Low,2014-02-12,2014-07-02,2014-07-10,0,29,140,0,0\r\n3627,mark montalvo,mark,montalvo,2013-01-26,Male,1972-04-07,44,25 - 45,Caucasian,3,7,0,0,16,-1,2013-01-25 06:55:19,2013-04-17 04:51:55,13001817MM10A,2013-01-25,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-26,Risk of Violence,3,Low,2013-01-26,2013-01-25,2013-04-17,16,81,1161,0,0\r\n3628,kwamane harris,kwamane,harris,2014-10-07,Male,1991-08-07,24,Less than 25,African-American,0,6,1,3,4,-1,2014-10-06 01:51:55,2014-10-07 06:59:41,14013476CF10A,2014-10-06,,1,F,Agg Assault W/int Com Fel Dome,1,15001799CF10A,(F3),6,2015-02-02,Felony Battery (Dom Strang),2015-02-08,2015-02-09,,1,15001799CF10A,(F3),2015-02-02,Felony Battery (Dom Strang),Risk of Recidivism,6,Medium,2014-10-07,Risk of Violence,6,Medium,2014-10-07,2014-11-07,2014-11-21,4,0,31,0,1\r\n3629,breon brown,breon,brown,2013-02-20,Male,1994-11-06,21,Less than 25,African-American,0,7,0,0,0,-1,2013-02-19 05:17:20,2013-02-20 09:03:47,13002537CF10A,2013-02-19,,1,F,Grand Theft in the 3rd Degree,1,13006330CF10A,(F3),0,2013-05-02,Grand Theft in the 3rd Degree,2013-05-02,2013-08-24,,0,,,,,Risk of Recidivism,7,Medium,2013-02-20,Risk of Violence,7,Medium,2013-02-20,2013-05-02,2013-08-24,0,0,71,1,1\r\n3630,patricio regaldo,patricio,regaldo,2013-05-11,Male,1965-10-20,50,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-11 03:05:18,2013-05-13 07:50:55,13006755CF10A,2013-05-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-11,Risk of Violence,1,Low,2013-05-11,2013-05-11,2013-05-13,0,2,1056,0,0\r\n3631,danielle sites,danielle,sites,2014-02-08,Female,1980-04-08,36,25 - 45,Caucasian,0,1,0,0,0,0,2014-02-08 04:16:48,2014-02-09 06:28:32,14002209MM10A,2014-02-08,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-08,Risk of Violence,1,Low,2014-02-08,2014-02-08,2014-02-09,0,1,783,0,0\r\n3634,miguel palacios,miguel,palacios,2013-03-29,Male,1976-07-21,39,25 - 45,Caucasian,0,3,0,0,0,-1,2013-03-28 05:41:23,2013-05-21 11:04:40,13004697CF10A,,2013-03-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-29,Risk of Violence,2,Low,2013-03-29,2013-03-28,2013-05-21,0,53,1099,0,0\r\n3635,tierra peterson,tierra,peterson,2013-03-12,Female,1991-12-09,24,Less than 25,African-American,0,4,0,0,2,729,2015-03-11 11:49:34,2015-03-25 08:27:11,13002573CF10A,2012-12-12,,90,F,Crim Use Of Personal Id Info,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-12,Risk of Violence,4,Low,2013-03-12,2015-03-11,2015-03-25,2,0,729,0,0\r\n3636,sarah grissett,sarah,grissett,2013-05-12,Female,1961-05-28,54,Greater than 45,African-American,0,6,0,0,7,-1,2013-05-11 09:03:48,2013-05-30 05:36:11,13006784CF10A,2013-05-11,,1,F,Fraudulent Use of Credit Card,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-12,Risk of Violence,1,Low,2013-05-12,2013-05-11,2013-05-30,7,18,1055,0,0\r\n3639,samuel bennett,samuel,bennett,2013-08-07,Male,1987-01-05,29,25 - 45,African-American,0,2,0,0,0,0,2013-08-07 04:13:32,2013-08-08 01:51:29,13011057CF10A,2013-08-06,,1,M,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-07,Risk of Violence,2,Low,2013-08-07,2013-08-07,2013-08-08,0,1,968,0,0\r\n3641,michael flores,michael,flores,2014-01-26,Male,1989-05-26,26,25 - 45,Caucasian,0,6,0,0,0,-1,2014-01-25 11:17:21,2014-01-26 08:05:58,14001432MM10A,2014-01-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-26,Risk of Violence,2,Low,2014-01-26,2014-01-25,2014-01-26,0,0,796,0,0\r\n3642,james howard,james,howard,2014-02-07,Male,1975-03-15,41,25 - 45,African-American,0,4,0,0,3,-1,2014-02-06 06:40:05,2014-02-07 09:07:57,14001722CF10A,2014-02-06,,1,F,Felony Driving While Lic Suspd,1,14029458TC10A,(M1),0,2014-07-30,Opert With Susp DL 2nd Offens,2014-07-30,2014-07-31,,0,,,,,Risk of Recidivism,4,Low,2014-02-07,Risk of Violence,2,Low,2014-02-07,2014-07-30,2014-07-31,3,0,173,1,1\r\n3643,gary gilmore,gary,gilmore,2014-02-12,Male,1992-12-23,23,Less than 25,African-American,0,6,0,0,1,-1,2014-02-11 03:14:34,2014-02-13 09:26:10,14001926CF10A,2014-02-11,,1,F,Grand Theft in the 3rd Degree,1,14007879MM10A,(M1),0,2014-05-14,Petit Theft $100- $300,2014-05-14,2014-06-14,,0,,,,,Risk of Recidivism,6,Medium,2014-02-12,Risk of Violence,5,Medium,2014-02-12,2014-05-14,2014-06-14,1,1,91,1,1\r\n3645,moises delgado,moises,delgado,2013-11-18,Male,1981-11-08,34,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-17 08:34:35,2013-11-18 08:26:12,13021606MM10A,2013-11-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-18,Risk of Violence,2,Low,2013-11-18,2013-11-17,2013-11-18,0,0,865,0,0\r\n3646,bart jano,bart,jano,2014-12-03,Male,1984-10-08,31,25 - 45,Caucasian,0,7,0,0,11,0,2014-12-03 12:55:07,2014-12-15 09:19:24,14016072CF10A,2014-12-02,,1,F,False Ownership Info/Pawn Item,1,15000870CF10A,(F3),0,2015-01-20,Grand Theft in the 3rd Degree,2015-01-20,2015-03-13,,0,,,,,Risk of Recidivism,7,Medium,2014-12-03,Risk of Violence,9,High,2014-12-03,2015-01-20,2015-03-13,11,12,48,1,1\r\n3647,alliyah anderson,alliyah,anderson,2013-12-24,Male,1995-04-24,20,Less than 25,African-American,0,3,0,0,0,-1,2013-12-23 07:21:11,2013-12-25 03:56:33,13017700CF10A,2013-12-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-24,Risk of Violence,6,Medium,2013-12-24,2013-12-23,2013-12-25,0,1,829,0,0\r\n3648,enrico nelson,enrico,nelson,2014-03-24,Male,1967-01-18,49,Greater than 45,African-American,0,6,0,0,10,-1,2014-03-23 05:30:50,2014-05-06 04:48:05,14004087CF10A,,2014-03-23,1,F,arrest case no charge,1,14017714TC10A,(M2),0,2014-05-10,Susp Drivers Lic 1st Offense,2014-05-10,2014-09-23,,0,,,,,Risk of Recidivism,6,Medium,2014-03-24,Risk of Violence,3,Low,2014-03-24,2014-05-10,2014-09-23,10,43,47,1,1\r\n3649,sean cherfils,sean,cherfils,2014-05-10,Male,1990-01-12,26,25 - 45,African-American,0,8,0,0,4,0,2014-05-10 12:21:42,2014-05-11 01:42:50,14006519CF10A,2014-05-10,,0,F,Possession Of Methamphetamine,1,15003282MM10A,(M1),0,2015-03-19,Resist/Obstruct W/O Violence,2015-03-19,2015-03-20,,1,16000812MM10A,(M1),2016-01-23,Battery,Risk of Recidivism,8,High,2014-05-10,Risk of Violence,6,Medium,2014-05-10,2015-03-19,2015-03-20,4,1,313,1,1\r\n3652,rasheed cunningham,rasheed,cunningham,2014-01-10,Male,1988-02-29,28,25 - 45,African-American,0,4,0,0,1,-1,2014-01-09 09:19:35,2014-01-10 07:51:13,14000371CF10A,2014-01-09,,1,F,Possession of Cocaine,1,14002838MM40A,(M1),249,2014-03-14,Possess Drug Paraphernalia,2014-11-18,2014-12-08,,0,,,,,Risk of Recidivism,4,Low,2014-01-10,Risk of Violence,2,Low,2014-01-10,2014-11-18,2014-12-08,1,0,63,1,1\r\n3653,justin lynch,justin,lynch,2013-01-10,Male,1990-02-28,26,25 - 45,African-American,0,2,0,0,0,-1,2013-01-09 10:58:44,2013-01-10 01:20:58,13000400CF10A,2013-01-09,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-10,Risk of Violence,3,Low,2013-01-10,2013-01-09,2013-01-10,0,0,1177,0,0\r\n3655,gregory willey,gregory,willey,2013-03-31,Male,1960-11-26,55,Greater than 45,African-American,0,4,0,0,1,-1,2013-03-30 08:52:46,2013-03-31 02:25:58,13004581CF10A,2013-03-30,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-31,Risk of Violence,1,Low,2013-03-31,2013-03-30,2013-03-31,1,0,1097,0,0\r\n3656,duson charles,duson,charles,2013-04-25,Male,1993-07-23,22,Less than 25,African-American,0,9,0,0,0,-1,2013-04-24 01:27:25,2013-04-26 04:29:27,13007972MM10A,2013-04-24,,1,M,Prowling/Loitering,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-25,Risk of Violence,7,Medium,2013-04-25,2013-04-24,2013-04-26,0,1,1072,0,0\r\n3657,lanique lee,lanique,lee,2014-02-16,Female,1989-08-23,26,25 - 45,African-American,0,4,0,0,0,-1,2014-02-15 02:28:22,2014-02-16 09:23:55,14002664MM10A,2014-02-15,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-16,Risk of Violence,3,Low,2014-02-16,2014-02-15,2014-02-16,0,0,775,0,0\r\n3658,hassan ahmed,hassan,ahmed,2013-02-10,Male,1959-09-15,56,Greater than 45,Other,0,1,0,0,0,0,2013-02-10 07:14:52,2013-02-11 07:22:42,13002949MM10A,2013-02-10,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-10,Risk of Violence,1,Low,2013-02-10,2013-02-10,2013-02-11,0,1,1146,0,0\r\n3659,francisco sanchezferrans,francisco,sanchezferrans,2013-02-27,Male,1949-08-09,66,Greater than 45,Caucasian,0,1,0,0,1,331,2014-01-24 10:33:08,2014-07-10 12:38:49,11012504CF10A,,2013-02-26,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-27,Risk of Violence,2,Low,2013-02-27,2014-01-24,2014-07-10,1,0,331,0,0\r\n3660,terrence adderly,terrence,adderly,2013-10-23,Male,1969-12-08,46,Greater than 45,Other,0,3,0,0,2,-1,2013-10-22 04:07:57,2013-10-23 04:12:28,13014750CF10A,2013-10-22,,1,F,Possession Of Diazepam,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-23,Risk of Violence,4,Low,2013-10-23,2013-10-22,2013-10-23,2,0,891,0,0\r\n3661,jerome harlis,jerome,harlis,2014-05-02,Male,1957-12-13,58,Greater than 45,African-American,0,6,0,0,16,-1,2014-05-01 01:36:34,2014-07-08 11:23:49,14005755CF10A,,2014-05-01,1,F,arrest case no charge,1,14010562MM10A,(M2),0,2014-07-09,Petit Theft,2014-07-09,2014-08-21,,0,,,,,Risk of Recidivism,6,Medium,2014-05-02,Risk of Violence,3,Low,2014-05-02,2014-07-09,2014-08-21,16,67,68,1,1\r\n3662,jamar dukes,jamar,dukes,2013-03-25,Male,1988-02-10,28,25 - 45,African-American,0,7,0,0,4,-1,2013-03-24 11:47:45,2013-04-23 09:07:38,13004248CF10A,2013-03-24,,1,F,Burglary Structure Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-25,Risk of Violence,9,High,2013-03-25,2013-03-24,2013-04-23,4,29,1103,0,0\r\n3663,andre laidlaw,andre,laidlaw,2013-01-31,Male,1982-08-22,33,25 - 45,African-American,0,6,0,0,8,-1,2013-01-30 11:49:24,2013-02-01 09:53:16,13001501CF10A,2013-01-30,,1,F,Possession of Oxycodone,1,15039267TC30A,(M2),,2015-05-26,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-31,Risk of Violence,5,Medium,2013-01-31,2013-01-30,2013-02-01,8,1,845,1,0\r\n3666,marquita young,marquita,young,2014-01-05,Female,1984-07-27,31,25 - 45,African-American,0,2,0,0,0,-1,2014-01-04 09:31:56,2014-01-05 01:37:46,14000173MM10A,2014-01-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-05,Risk of Violence,2,Low,2014-01-05,2014-01-04,2014-01-05,0,0,817,0,0\r\n3667,dywahn bethea,dywahn,bethea,2013-01-15,Male,1989-10-18,26,25 - 45,African-American,0,5,0,0,1,0,2013-01-15 05:01:03,2013-01-15 06:43:13,13001017MO10A,2013-01-15,,0,M,Poss Of Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-15,Risk of Violence,4,Low,2013-01-15,2013-01-15,2013-01-15,1,0,1172,0,0\r\n3668,ayinde crespo,ayinde,crespo,2013-10-25,Male,1980-07-23,35,25 - 45,African-American,0,5,0,0,4,,,,11025642MO10A,2011-11-03,,722,M,Poss Of Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-25,Risk of Violence,2,Low,2013-10-25,,,4,0,889,0,0\r\n3669,roxana stewart,roxana,stewart,2014-03-10,Female,1974-09-01,41,25 - 45,Caucasian,0,7,0,0,12,-45,2014-01-24 08:31:19,2014-02-04 06:41:24,14003149CF10A,2014-01-24,,45,F,Felony Battery w/Prior Convict,1,15003741MM10A,(M1),0,2015-03-31,Battery,2015-03-31,2015-04-13,,1,15003741MM10A,(M1),2015-03-31,Battery,Risk of Recidivism,7,Medium,2014-03-10,Risk of Violence,5,Medium,2014-03-10,2015-03-31,2015-04-13,12,0,386,1,1\r\n3671,jason mills,jason,mills,2013-04-13,Male,1981-05-28,34,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-12 08:57:34,2013-04-13 08:11:57,13007128MM10A,2013-04-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-13,Risk of Violence,1,Low,2013-04-13,2013-04-12,2013-04-13,0,0,1084,0,0\r\n3673,dwayne taylor,dwayne,taylor,2013-04-26,Male,1983-01-04,33,25 - 45,Other,0,1,0,0,0,-1,2013-04-25 06:50:35,2013-04-26 08:17:42,13005932CF10A,2013-04-25,,1,F,Sell or Offer for Sale Counterfeit Goods,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-26,Risk of Violence,1,Low,2013-04-26,2013-04-25,2013-04-26,0,0,1071,0,0\r\n3674,shawnnette longley,shawnnette,longley,2014-02-16,Female,1983-11-08,32,25 - 45,African-American,0,2,0,0,0,-1,2014-02-15 03:23:21,2014-02-16 02:27:00,14002320CF10A,2014-02-15,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-16,Risk of Violence,1,Low,2014-02-16,2014-02-15,2014-02-16,0,0,775,0,0\r\n3675,shaun mckinley,shaun,mckinley,2013-09-13,Male,1979-02-07,37,25 - 45,African-American,0,6,0,0,9,0,2013-09-13 03:59:13,2013-09-14 04:59:30,13012938CF10A,2013-09-12,,1,F,Poss Cocaine/Intent To Del/Sel,1,14006946CF10A,(F3),0,2014-05-19,False Imprisonment,2014-05-19,2014-12-09,,1,14006946CF10A,(F2),2014-05-19,Agg Battery Grt/Bod/Harm,Risk of Recidivism,6,Medium,2013-09-13,Risk of Violence,9,High,2013-09-13,2014-05-19,2014-12-09,9,1,248,1,1\r\n3676,bennie peele,bennie,peele,2013-06-06,Male,1965-09-29,50,Greater than 45,African-American,0,5,0,0,1,-22,2013-05-15 11:16:40,2013-05-16 02:04:44,13006966CF10A,2013-05-15,,22,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-06-06,Risk of Violence,5,Medium,2013-06-06,2013-05-15,2013-05-16,1,0,1030,0,0\r\n3678,derek suarez,derek,suarez,2013-09-12,Male,1981-03-05,35,25 - 45,Caucasian,0,2,0,0,1,-1,2013-09-11 10:29:21,2013-09-14 03:06:09,13013034CF10A,,2013-09-11,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2013-09-11,2013-09-14,1,2,932,0,0\r\n3679,lisa hitzemankhan,lisa,hitzemankhan,2013-12-11,Female,1968-11-30,47,Greater than 45,Caucasian,0,3,0,0,0,-6,2013-12-05 05:51:54,2013-12-09 10:02:46,13022581MM10A,2013-12-05,,6,M,Prostitution/Lewd Act Assignation,1,15008216CF10A,(F3),0,2015-06-25,Possession of Cocaine,2015-06-25,2015-07-05,,0,,,,,Risk of Recidivism,3,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2015-06-25,2015-07-05,0,0,561,1,1\r\n3681,jacqueline battle,jacqueline,battle,2013-05-02,Female,1963-08-16,52,Greater than 45,African-American,0,9,0,0,8,-1,2013-05-01 09:03:54,2013-06-13 10:32:00,13006255CF10A,,2013-05-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-02,Risk of Violence,7,Medium,2013-05-02,2014-09-11,2014-10-16,8,42,497,0,0\r\n3684,jarvis cure,jarvis,cure,2013-12-18,Male,1989-11-04,26,25 - 45,African-American,0,7,1,2,5,-1,2013-12-17 06:58:28,2013-12-23 08:06:12,13017402CF10A,2013-12-17,,1,F,Shoot In Occupied Dwell,1,14000143MM10A,(M1),0,2014-01-03,Resist/Obstruct W/O Violence,2014-01-03,2014-01-16,,1,14006197CF10A,(M1),2014-05-03,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,7,Medium,2013-12-18,Risk of Violence,7,Medium,2013-12-18,2014-01-03,2014-01-16,5,5,16,1,1\r\n3685,raymon frazier,raymon,frazier,2013-01-27,Male,1979-12-02,36,25 - 45,African-American,0,9,0,0,1,,,,03002467TC10A,,2003-01-15,3665,M,arrest case no charge,1,14013106TC10A,(M2),,2014-03-21,Operating W/O Valid License,,,,1,15016021CF10A,(F7),2015-12-11,Burglary Dwelling Armed,Risk of Recidivism,9,High,2013-01-27,Risk of Violence,6,Medium,2013-01-27,2009-10-08,2010-12-30,1,0,418,1,1\r\n3687,joseph leeks,joseph,leeks,2014-07-02,Male,1970-11-01,45,Greater than 45,African-American,0,1,0,0,13,-1,2014-07-01 09:40:24,2014-07-02 09:22:59,14009025CF10A,2014-07-01,,1,F,Felony Driving While Lic Suspd,1,14081187TC20A,(M2),,2014-11-18,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-07-02,Risk of Violence,1,Low,2014-07-02,2014-07-01,2014-07-02,13,0,139,1,1\r\n3691,daniel levy,daniel,levy,2014-10-08,Male,1996-09-14,19,Less than 25,Other,0,9,0,0,0,-1,2014-10-07 03:10:54,2014-10-08 08:30:31,14014703MM10A,2014-10-07,,1,M,Battery,1,15005201CF10A,(F3),0,2015-04-21,Aggravated Assault W/Dead Weap,2015-04-21,2015-05-27,,1,15005201CF10A,(F3),2015-04-21,Aggravated Assault W/Dead Weap,Risk of Recidivism,9,High,2014-10-08,Risk of Violence,9,High,2014-10-08,2015-04-21,2015-05-27,0,0,195,1,1\r\n3692,adam swint,adam,swint,2013-02-20,Male,1975-01-16,41,25 - 45,African-American,0,2,0,0,8,-1,2013-02-19 03:10:42,2013-02-20 09:19:43,13002526CF10A,2013-02-19,,1,F,Driving While License Revoked,1,14039239TC40A,(M2),,2014-05-29,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-20,Risk of Violence,4,Low,2013-02-20,2015-04-29,2015-04-29,8,0,463,1,1\r\n3693,jordan carson,jordan,carson,2014-03-15,Male,1991-08-22,24,Less than 25,African-American,0,2,0,0,0,0,2014-03-15 01:13:11,2014-03-16 08:35:16,14004527MM10A,2014-03-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-15,Risk of Violence,3,Low,2014-03-15,2015-06-12,2015-06-22,0,1,454,0,0\r\n3696,deandre fleury,deandre,fleury,2013-01-31,Male,1995-01-18,21,Less than 25,African-American,0,9,1,0,1,-1,2013-01-30 07:13:30,2013-01-31 07:16:59,13001505CF10A,2013-01-30,,1,F,Robbery / No Weapon,1,15001200MM20A,(M1),,2015-04-15,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,9,High,2013-01-31,Risk of Violence,8,High,2013-01-31,2013-01-30,2013-01-31,1,0,804,1,0\r\n3697,adolfo casco,adolfo,casco,2013-01-27,Male,1962-01-06,54,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-26 07:42:36,2013-01-27 01:56:31,13001884MM10A,2013-01-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-27,Risk of Violence,2,Low,2013-01-27,2013-01-26,2013-01-27,0,0,1160,0,0\r\n3698,stephen kasdorf,stephen,kasdorf,2013-11-11,Male,1966-05-01,49,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-10 11:42:59,2014-01-23 05:55:25,13015646CF10A,2013-11-10,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-11,Risk of Violence,1,Low,2013-11-11,2014-10-25,2014-11-03,0,73,348,0,0\r\n3699,alexander johnson,alexander,johnson,2013-02-13,Male,1973-09-17,42,25 - 45,Caucasian,0,2,0,0,1,0,2013-02-13 12:16:53,2013-12-03 10:21:52,13002280CF10A,,2013-02-13,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2014-03-28,2014-04-25,1,293,408,0,0\r\n3700,jamal long,jamal,long,2014-01-01,Male,1994-08-11,21,Less than 25,African-American,0,4,0,0,1,0,2014-01-01 03:28:34,2014-01-02 12:12:34,14000042CF10A,2014-01-01,,0,F,Possession of Cocaine,1,14002767CF10A,(F3),0,2014-02-27,Possession of Cocaine,2014-02-27,2014-04-02,,0,,,,,Risk of Recidivism,4,Low,2014-01-01,Risk of Violence,6,Medium,2014-01-01,2014-02-27,2014-04-02,1,1,57,1,1\r\n3701,bruce gadson,bruce,gadson,2013-10-23,Male,1955-02-04,61,Greater than 45,African-American,0,4,0,0,30,-56,2013-08-28 12:56:40,2013-10-17 12:53:19,11006754CF10A,,2013-08-28,56,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-23,Risk of Violence,2,Low,2013-10-23,2013-08-28,2013-10-17,30,0,891,0,0\r\n3702,scott botkin,scott,botkin,2013-02-08,Male,1969-10-05,46,Greater than 45,Caucasian,0,8,0,0,5,0,2013-02-08 05:09:11,2013-02-08 02:00:40,13004069CF10A,2013-02-08,,0,F,Battery On A Person Over 65,1,14000196CF10A,(F3),1,2014-01-04,Possession of Cocaine,2014-01-05,2014-01-05,,0,,,,,Risk of Recidivism,8,High,2013-02-08,Risk of Violence,3,Low,2013-02-08,2013-03-18,2013-05-24,5,0,38,0,1\r\n3703,ramon velez-cupeles,ramon,velez-cupeles,2013-10-20,Male,1942-04-07,74,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-20 12:02:11,2013-10-21 09:18:21,13019809MM10A,2013-10-19,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-20,Risk of Violence,1,Low,2013-10-20,2013-10-20,2013-10-21,0,1,894,0,0\r\n3704,gina leon,gina,leon,2013-01-03,Female,1978-03-01,38,25 - 45,Hispanic,0,1,0,0,0,0,2013-01-03 02:25:14,2013-01-03 06:46:16,13000121CF10A,2013-01-03,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2013-01-03,2013-01-03,0,0,1184,0,0\r\n3705,byron calhoun,byron,calhoun,2014-02-11,Male,1940-07-23,75,Greater than 45,Caucasian,0,1,0,0,2,,,,13078801TC20A,2013-12-15,,58,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-11,Risk of Violence,1,Low,2014-02-11,,,2,0,780,0,0\r\n3706,keisha grant,keisha,grant,2013-04-09,Female,1976-11-01,39,25 - 45,African-American,0,1,0,0,1,-1,2013-04-08 08:24:50,2013-04-09 02:11:07,12000242CF10A,,2013-04-09,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-09,Risk of Violence,1,Low,2013-04-09,2013-04-08,2013-04-09,1,0,1088,0,0\r\n3709,tesa edwards,tesa,edwards,2013-04-14,Female,1977-11-17,38,25 - 45,African-American,0,1,0,0,0,-1,2013-04-13 02:34:02,2013-04-17 11:11:49,13005334CF10A,,2013-04-13,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-14,Risk of Violence,1,Low,2013-04-14,2013-04-13,2013-04-17,0,3,1083,0,0\r\n3710,oswald silver,oswald,silver,2014-12-02,Male,1996-11-23,19,Less than 25,African-American,1,7,0,1,1,-1,2014-12-01 05:57:40,2014-12-02 09:46:35,14016011CF10A,,2014-12-01,1,F,arrest case no charge,1,15002792CF10A,(M2),0,2015-02-28,Unlaw LicTag/Sticker Attach,2015-02-28,2015-03-01,,0,,,,,Risk of Recidivism,7,Medium,2014-12-02,Risk of Violence,9,High,2014-12-02,2015-02-28,2015-03-01,1,0,88,1,1\r\n3711,joshua salgado,joshua,salgado,2013-04-14,Male,1988-02-12,28,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-13 06:05:38,2013-04-14 07:43:28,13005348CF10A,2013-04-13,,1,F,Burglary Unoccupied Dwelling,1,14012622MM10A,(M1),0,2014-08-21,Resist/Obstruct W/O Violence,2014-08-21,2014-08-26,,0,,,,,Risk of Recidivism,2,Low,2013-04-14,Risk of Violence,3,Low,2013-04-14,2014-08-21,2014-08-26,0,0,494,1,1\r\n3712,john mathis,john,mathis,2013-03-05,Male,1962-08-31,53,Greater than 45,African-American,0,1,0,0,2,,,,05014965CF10A,,2008-10-21,1596,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-05,Risk of Violence,1,Low,2013-03-05,,,2,0,1123,0,0\r\n3713,brian scott,brian,scott,2013-02-06,Male,1990-09-17,25,25 - 45,African-American,0,6,0,0,1,-1,2013-02-05 07:43:26,2013-03-06 06:27:56,13001761CF10A,2013-02-05,,1,F,Fleeing or Eluding a LEO,1,14086991TC20A,(M2),,2014-12-12,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-06,Risk of Violence,5,Medium,2013-02-06,2014-06-18,2014-06-23,1,28,497,0,1\r\n3714,allatia hogan,allatia,hogan,2013-04-05,Male,1963-01-20,53,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-04-04 11:14:20,2013-04-05 09:47:00,13006497MM10A,2013-04-04,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-05,Risk of Violence,1,Low,2013-04-05,2013-04-04,2013-04-05,1,0,1092,0,0\r\n3716,jeffrey jackson,jeffrey,jackson,2013-05-02,Male,1962-09-08,53,Greater than 45,African-American,0,7,0,0,4,,,,12005643CF10A,2012-04-16,,381,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-02,Risk of Violence,1,Low,2013-05-02,,,4,0,1065,0,0\r\n3719,marvin robins,marvin,robins,2013-01-30,Male,1993-02-13,23,Less than 25,African-American,0,9,1,0,2,-1,2013-01-29 05:48:24,2013-04-16 01:26:37,13001446CF10A,2013-01-29,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-30,Risk of Violence,9,High,2013-01-30,2013-01-29,2013-04-16,2,76,1157,0,0\r\n3720,james crowley,james,crowley,2013-03-24,Male,1960-09-22,55,Greater than 45,Caucasian,0,9,0,0,33,-1,2013-03-23 03:20:19,2013-11-20 04:58:00,13004219CF10A,2013-03-23,,1,F,Felony Petit Theft,1,14000857CF10A,(F3),0,2014-01-20,Felony Petit Theft,2014-01-20,2014-09-19,,0,,,,,Risk of Recidivism,9,High,2013-03-24,Risk of Violence,3,Low,2013-03-24,2014-01-20,2014-09-19,33,241,302,1,1\r\n3721,tania quaknine,tania,quaknine,2013-10-10,Female,1951-07-21,64,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-10-09 04:50:03,2013-10-10 09:49:38,13014150CF10A,,2013-10-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-10,Risk of Violence,1,Low,2013-10-10,2013-10-09,2013-10-10,1,0,904,0,0\r\n3722,davante houston,davante,houston,2014-01-11,Male,1992-10-21,23,Less than 25,African-American,0,7,0,0,1,-1,2014-01-10 08:09:37,2014-02-06 09:07:24,14000514MM10A,2014-01-10,,1,M,Battery,1,15009813TC40A,(M2),,2015-01-26,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-11,Risk of Violence,6,Medium,2014-01-11,2014-01-10,2014-02-06,1,26,380,1,1\r\n3724,patricio guillen,patricio,guillen,2013-01-07,Male,1977-06-25,38,25 - 45,Hispanic,0,1,0,0,1,,,,12020597MM10A,2012-10-05,,94,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-07,Risk of Violence,1,Low,2013-01-07,,,1,0,1180,0,0\r\n3725,rajiv beckford,rajiv,beckford,2013-12-22,Male,1992-05-24,23,Less than 25,African-American,0,8,0,2,4,-1,2013-12-21 06:33:58,2013-12-22 04:20:12,13017614CF10A,2013-12-21,,1,F,Possession of Cannabis,1,14000954MM40A,(M1),,2014-02-18,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2013-12-22,Risk of Violence,5,Medium,2013-12-22,2015-07-28,2015-08-07,4,0,58,1,1\r\n3726,norma villalobos,norma,villalobos,2014-03-03,Female,1975-02-08,41,25 - 45,Hispanic,0,1,0,0,0,0,2014-03-03 02:43:25,2014-03-03 05:22:22,14003002CF10A,2014-03-02,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-03,2014-03-03,0,0,760,0,0\r\n3728,nikson suffrin,nikson,suffrin,2013-09-03,Male,1962-10-12,53,Greater than 45,Other,0,1,0,0,0,0,2013-09-03 03:51:17,2013-09-03 09:08:08,13016861MM10A,2013-09-03,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-03,Risk of Violence,1,Low,2013-09-03,2013-09-03,2013-09-03,0,0,941,0,0\r\n3729,enrick williams,enrick,williams,2013-12-01,Male,1982-02-12,34,25 - 45,African-American,0,1,0,0,0,-1,2013-11-30 04:17:12,2013-12-02 11:39:59,13016610CF10A,2013-11-30,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-01,Risk of Violence,1,Low,2013-12-01,2013-11-30,2013-12-02,0,1,852,0,0\r\n3730,julian garsonbaquero,julian,garsonbaquero,2014-05-17,Male,1992-01-13,24,Less than 25,Hispanic,0,1,0,0,0,-1,2014-05-16 05:57:24,2014-05-17 08:05:25,14006830CF10A,2014-05-16,,1,F,Felony Battery (Dom Strang),1,14008371MM10A,(M1),0,2014-05-24,Viol Injunction Protect Dom Vi,2014-05-24,2014-05-25,,0,,,,,Risk of Recidivism,1,Low,2014-05-17,Risk of Violence,3,Low,2014-05-17,2014-05-24,2014-05-25,0,0,7,1,1\r\n3732,christopher shuman,christopher,shuman,2013-09-09,Male,1990-02-23,26,25 - 45,African-American,0,1,0,0,1,-1,2013-09-08 08:06:42,2013-10-10 10:15:22,13012693CF10A,2013-09-08,,1,M,Criminal Mischief Damage <$200,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-09,Risk of Violence,2,Low,2013-09-09,2013-09-08,2013-10-10,1,31,935,0,0\r\n3736,fidel novoa,fidel,novoa,2013-08-01,Male,1971-06-22,44,25 - 45,Caucasian,0,2,0,0,4,-1,2013-07-31 07:09:10,2013-08-02 04:53:29,13010702CF10A,2013-07-31,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-01,Risk of Violence,3,Low,2013-08-01,2013-12-17,2013-12-20,4,1,138,0,0\r\n3737,phylichia maggie,phylichia,maggie,2014-02-20,Female,1988-05-09,27,25 - 45,Caucasian,0,2,0,0,0,0,2014-02-20 02:52:25,2014-02-25 06:09:33,14002431CF10A,2014-02-19,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-20,Risk of Violence,2,Low,2014-02-20,2014-02-20,2014-02-25,0,5,771,0,0\r\n3738,brandon hare,brandon,hare,2013-12-31,Male,1987-09-06,28,25 - 45,Caucasian,0,9,0,0,14,-1,2013-12-30 11:05:49,2013-12-31 07:56:01,13017995CF10A,2013-12-30,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-12-31,Risk of Violence,3,Low,2013-12-31,2013-12-30,2013-12-31,14,0,822,0,0\r\n3739,jorge vega,jorge,vega,2013-11-21,Male,1960-07-27,55,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-11-20 08:04:03,2013-11-21 08:17:32,13021839MM10A,2013-11-20,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-21,Risk of Violence,1,Low,2013-11-21,2013-11-20,2013-11-21,1,0,862,0,0\r\n3740,nadjeda delva,nadjeda,delva,2013-12-23,Female,1993-11-26,22,Less than 25,African-American,0,4,0,0,2,-60,2013-10-24 03:13:54,2013-12-23 02:23:51,13014862CF10A,,2013-10-24,60,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-23,Risk of Violence,5,Medium,2013-12-23,2013-10-24,2013-12-23,2,0,830,0,0\r\n3741,sean fleming,sean,fleming,2014-01-07,Male,1980-03-30,36,25 - 45,African-American,0,5,0,0,15,-1,2014-01-06 11:23:46,2014-01-08 08:09:38,12011657CF10A,,2014-01-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-07,Risk of Violence,1,Low,2014-01-07,2014-04-11,2014-04-22,15,1,94,0,0\r\n3742,michael thomas,michael,thomas,2014-06-22,Male,1986-10-18,29,25 - 45,African-American,0,8,0,0,6,-236,2013-10-29 06:10:09,2013-10-31 02:30:17,13015106CF10A,2013-10-29,,236,F,Fail To Redeliver Hire Prop,1,15009669TC10A,(M2),0,2015-03-13,Susp Drivers Lic 1st Offense,2015-03-13,2015-04-14,,0,,,,,Risk of Recidivism,8,High,2014-06-22,Risk of Violence,6,Medium,2014-06-22,2015-02-18,2015-02-24,6,0,241,0,1\r\n3743,lawrence gaston,lawrence,gaston,2013-08-26,Male,1993-04-08,23,Less than 25,African-American,0,4,0,0,1,-1,2013-08-25 07:36:07,2013-08-26 07:55:05,13002091CF10A,,2013-08-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-26,Risk of Violence,6,Medium,2013-08-26,2013-10-26,2013-10-29,1,0,61,0,0\r\n3744,franklin rouse,franklin,rouse,2013-01-03,Male,1959-09-15,56,Greater than 45,African-American,0,1,0,0,1,0,2013-01-03 01:16:58,2013-01-03 01:37:26,13000175MM10A,2013-01-02,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2013-01-03,2013-01-03,1,0,1184,0,0\r\n3745,brian berman,brian,berman,2013-11-17,Male,1989-02-21,27,25 - 45,Caucasian,0,6,0,0,2,-1,2013-11-16 11:24:45,2013-11-17 08:23:08,13015940CF10A,2013-11-16,,1,F,Possession Of Alprazolam,1,15000112MU10A,(M1),1,2015-01-05,Driving Under The Influence,2015-01-06,2015-02-19,,0,,,,,Risk of Recidivism,6,Medium,2013-11-17,Risk of Violence,3,Low,2013-11-17,2015-12-08,2015-12-08,2,0,414,1,1\r\n3747,angel santiago,angel,santiago,2013-05-26,Male,1978-04-27,37,25 - 45,Caucasian,0,6,0,0,1,-1,2013-05-25 05:53:02,2013-05-26 08:34:47,13010080MM10A,2013-05-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-26,Risk of Violence,4,Low,2013-05-26,2013-05-25,2013-05-26,1,0,1041,0,0\r\n3749,jeffery wright,jeffery,wright,2013-03-14,Male,1983-11-03,32,25 - 45,African-American,0,8,0,0,1,-1,2013-03-13 08:36:54,2013-03-15 04:37:02,13003672CF10A,2013-03-13,,1,F,Leaving the Scene of Accident,1,14034419TC10A,(M2),0,2014-09-22,Operating W/O Valid License,2014-09-22,2014-09-23,,0,,,,,Risk of Recidivism,8,High,2013-03-14,Risk of Violence,3,Low,2013-03-14,2014-09-22,2014-09-23,1,1,557,1,1\r\n3751,scotty golden,scotty,golden,2013-05-13,Male,1975-02-04,41,25 - 45,African-American,2,10,0,0,18,-1,2013-05-12 05:52:07,2013-06-15 05:29:51,13009147MM10A,2013-05-12,,1,M,Unlaw Use False Name/Identity,1,15000909CF10A,(M1),0,2015-01-21,Unlaw Use False Name/Identity,2015-01-21,2015-01-23,,0,,,,,Risk of Recidivism,10,High,2013-05-13,Risk of Violence,8,High,2013-05-13,2014-04-12,2014-04-15,18,33,334,0,1\r\n3754,jonathan king,jonathan,king,2014-02-11,Male,1993-07-06,22,Less than 25,African-American,0,6,0,0,1,-1,2014-02-10 11:15:51,2014-02-12 02:25:03,14001879CF10A,2014-02-10,,1,F,Battery on Law Enforc Officer,1,14008719MM10A,(M1),0,2014-06-01,Criminal Mischief>$200<$1000,2014-06-01,2014-06-02,,0,,,,,Risk of Recidivism,6,Medium,2014-02-11,Risk of Violence,4,Low,2014-02-11,2014-06-01,2014-06-02,1,1,110,1,1\r\n3757,nicholas stratigeas,nicholas,stratigeas,2014-08-23,Male,1978-04-28,37,25 - 45,Caucasian,0,2,0,0,1,-1,2014-08-22 09:07:15,2014-08-23 01:51:00,14011463CF10A,2014-08-22,,1,F,Possession of Cocaine,1,14016236CF10A,(F3),6,2014-12-01,Possession of Cocaine,2014-12-07,2014-12-22,,0,,,,,Risk of Recidivism,2,Low,2014-08-23,Risk of Violence,1,Low,2014-08-23,2014-12-07,2014-12-22,1,0,100,1,1\r\n3758,dexter haynes,dexter,haynes,2014-02-27,Male,1970-05-23,45,Greater than 45,African-American,0,2,0,0,3,0,2014-02-27 09:17:50,2014-03-01 04:32:54,14003495MM10A,2014-02-27,,0,M,Viol Pretrial Release Dom Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-27,Risk of Violence,2,Low,2014-02-27,2014-02-27,2014-03-01,3,2,764,0,0\r\n3759,janice demps,janice,demps,2013-01-29,Female,1984-09-29,31,25 - 45,African-American,0,8,0,0,14,-1,2013-01-28 12:24:29,2013-01-30 07:55:23,13001368CF10A,2013-01-28,,1,F,Aggravated Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-29,Risk of Violence,8,High,2013-01-29,2013-02-05,2013-03-01,14,1,7,0,0\r\n3761,richard haynes,richard,haynes,2014-03-08,Male,1973-09-22,42,25 - 45,African-American,0,5,0,0,7,-1,2014-03-07 11:33:05,2014-03-09 09:14:28,14003251CF10A,2014-03-07,,1,F,Felony Battery (Dom Strang),1,14014314CF10A,(M1),70,2014-09-15,Viol Pretrial Release Dom Viol,2014-11-24,2014-11-28,,1,14014314CF10A,(F3),2014-09-15,Felony Battery w/Prior Convict,Risk of Recidivism,5,Medium,2014-03-08,Risk of Violence,1,Low,2014-03-08,2014-03-07,2014-03-09,7,1,191,1,1\r\n3763,mchason laguerre,mchason,laguerre,2014-07-15,Male,1989-11-22,26,25 - 45,African-American,0,9,2,2,20,-1,2014-07-14 08:30:48,2014-08-13 04:00:19,14009614CF10A,2014-07-14,,1,F,Grand Theft (Motor Vehicle),1,16001376MM10A,(M2),,2016-02-11,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,9,High,2014-07-15,Risk of Violence,6,Medium,2014-07-15,2014-07-14,2014-08-13,20,29,576,1,1\r\n3765,mitchell haire,mitchell,haire,2013-08-01,Male,1982-07-31,33,25 - 45,Caucasian,0,9,0,0,0,0,2013-08-01 12:25:33,2013-08-02 04:52:43,13010711CF10A,2013-07-31,,1,F,\"Deliver 3,4 Methylenediox\",1,14014629CF10A,(F2),0,2014-10-31,Sell Methamphetamine,2014-10-31,2014-12-05,,0,,,,,Risk of Recidivism,9,High,2013-08-01,Risk of Violence,3,Low,2013-08-01,2013-09-16,2013-09-18,0,1,46,0,1\r\n3766,kevin hawthorne,kevin,hawthorne,2014-02-26,Male,1993-07-18,22,Less than 25,Caucasian,0,2,0,0,0,0,2014-02-26 03:59:59,2014-02-27 03:28:57,14007385MU10A,2014-02-26,,0,M,DUI Level 0.15 Or Minor In Veh,1,15078477TC30A,(M2),,2015-12-06,Driving while DL Susp / Financial Resp,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-26,Risk of Violence,4,Low,2014-02-26,2014-02-26,2014-02-27,0,1,648,1,1\r\n3767,dustin richardson,dustin,richardson,2014-05-13,Male,1983-12-23,32,25 - 45,Caucasian,0,5,0,0,2,-61,2014-03-13 03:55:20,2014-04-11 03:03:42,14003586CF10A,2014-03-12,,62,F,Resist Officer w/Violence,1,15001487MM20A,(M1),,2015-05-28,Criminal Mischief>$200<$1000,,,,0,,,,,Risk of Recidivism,5,Medium,2014-05-13,Risk of Violence,7,Medium,2014-05-13,2015-04-03,2015-05-06,2,0,325,0,1\r\n3768,natacha cherenfant,natacha,cherenfant,2013-01-02,Female,1980-03-01,36,25 - 45,African-American,0,1,0,0,1,0,2013-01-02 12:43:11,2013-01-02 01:12:11,13000055MM10A,2013-01-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-02,Risk of Violence,1,Low,2013-01-02,2013-01-02,2013-01-02,1,0,1185,0,0\r\n3769,gregory tauber,gregory,tauber,2013-01-24,Male,1961-10-31,54,Greater than 45,Caucasian,0,1,0,0,0,0,2013-01-24 02:06:19,2013-01-24 07:10:20,13001702MM10A,2013-01-24,,0,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-24,Risk of Violence,1,Low,2013-01-24,2013-01-24,2013-01-24,0,0,1163,0,0\r\n3771,rudy stsurin,rudy,stsurin,2013-03-22,Male,1990-12-12,25,25 - 45,African-American,0,9,1,2,5,-1,2013-03-21 06:31:10,2013-08-23 06:39:16,13004120CF10A,,2013-03-21,1,F,arrest case no charge,1,14012733CF10A,(M2),0,2014-09-20,Trespass Struct/Conveyance,2014-09-20,2014-09-24,,0,,,,,Risk of Recidivism,9,High,2013-03-22,Risk of Violence,9,High,2013-03-22,2014-09-20,2014-09-24,5,154,547,1,1\r\n3772,daniel duenas,daniel,duenas,2014-02-16,Male,1991-06-21,24,Less than 25,Caucasian,0,5,0,0,3,-1,2014-02-15 07:19:00,2014-03-26 09:44:21,14002168CF10A,2014-02-15,,1,F,Grand Theft in the 3rd Degree,1,14002098MM40A,(M1),59,2014-05-09,Theft/To Deprive,2014-07-07,2014-08-13,,0,,,,,Risk of Recidivism,5,Medium,2014-02-16,Risk of Violence,4,Low,2014-02-16,2014-02-15,2014-03-26,3,38,82,1,1\r\n3773,henry perez-betancur,henry,perez-betancur,2013-08-23,Male,1992-08-21,23,Less than 25,Hispanic,0,7,0,0,0,-1,2013-08-22 07:07:54,2013-08-23 10:48:29,13016030MM10A,2013-08-22,,1,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-23,Risk of Violence,5,Medium,2013-08-23,2013-08-22,2013-08-23,0,0,952,0,0\r\n3774,stuart rubin,stuart,rubin,2013-05-31,Male,1954-10-24,61,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-31 03:36:36,2013-05-31 08:16:20,13010483MM10A,2013-05-31,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-31,Risk of Violence,1,Low,2013-05-31,2013-05-31,2013-05-31,0,0,1036,0,0\r\n3776,lisset llauro,lisset,llauro,2013-09-17,Female,1974-01-13,42,25 - 45,Caucasian,0,1,0,0,0,-1,2013-09-16 06:13:55,2013-09-17 01:54:04,13017639MM10A,2013-09-16,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-17,Risk of Violence,1,Low,2013-09-17,2013-09-16,2013-09-17,0,0,927,0,0\r\n3778,vincent corallo,vincent,corallo,2013-03-15,Male,1988-03-21,28,25 - 45,Caucasian,0,2,0,0,1,0,2013-03-15 12:12:54,2013-03-15 06:50:00,13005071MM10A,2013-03-14,,1,M,DUI Property Damage/Injury,1,14023774TC10A,(M1),0,2014-06-25,Opert With Susp DL 2nd Offens,2014-06-25,2014-06-25,,0,,,,,Risk of Recidivism,2,Low,2013-03-15,Risk of Violence,3,Low,2013-03-15,2014-06-25,2014-06-25,1,0,467,0,1\r\n3779,lenworth litherland,lenworth,litherland,2014-03-19,Male,1988-10-26,27,25 - 45,African-American,0,5,0,0,1,-1,2014-03-18 07:44:35,2014-03-20 12:10:34,14003802CF10A,2014-03-18,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-19,Risk of Violence,3,Low,2014-03-19,2014-03-18,2014-03-20,1,1,744,0,0\r\n3780,joshua doyle,joshua,doyle,2013-03-04,Male,1991-11-01,24,Less than 25,Caucasian,0,3,0,0,2,-18,2013-02-14 08:04:32,2013-03-01 08:19:07,13003251MM10A,2013-02-14,,18,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-04,Risk of Violence,5,Medium,2013-03-04,2013-02-14,2013-03-01,2,0,1124,0,0\r\n3781,raymond wallace,raymond,wallace,2014-02-07,Male,1982-11-27,33,25 - 45,African-American,0,5,0,0,14,-59,2013-12-10 01:15:13,2013-12-10 01:29:23,13017016CF10A,2013-12-09,,60,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-07,Risk of Violence,2,Low,2014-02-07,2013-12-10,2013-12-10,14,0,784,0,0\r\n3782,richey dugazon,richey,dugazon,2014-09-09,Male,1983-09-24,32,25 - 45,African-American,0,10,0,0,16,-1,2014-09-08 12:20:24,2014-09-09 10:37:51,14012226CF10A,2014-09-08,,1,F,Driving While License Revoked,1,14013542MM10A,(M1),0,2014-09-10,Resist/Obstruct W/O Violence,2014-09-10,2014-09-10,,0,,,,,Risk of Recidivism,10,High,2014-09-09,Risk of Violence,7,Medium,2014-09-09,2014-09-10,2014-09-10,16,0,1,0,1\r\n3783,carlos montalvo,carlos,montalvo,2013-11-01,Male,1977-10-12,38,25 - 45,Caucasian,0,1,0,0,0,-7,2013-10-25 02:52:06,2013-11-01 10:33:01,13016097CF10A,2013-10-25,,7,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-01,Risk of Violence,1,Low,2013-11-01,2013-10-25,2013-11-01,0,0,882,0,0\r\n3785,christian hernandez,christian,hernandez,2013-01-23,Male,1994-08-05,21,Less than 25,Caucasian,0,3,1,1,1,-1,2013-01-22 11:18:53,2013-01-23 07:03:36,13001503MM10A,2013-01-22,,1,M,Unl/Disturb Education/Instui,1,16002824CF10A,(F3),0,2016-03-04,,2016-03-04,2016-03-04,,0,,,,,Risk of Recidivism,3,Low,2013-01-23,Risk of Violence,6,Medium,2013-01-23,2016-03-04,2016-03-04,1,0,1136,0,0\r\n3787,shalaun dean,shalaun,dean,2013-08-14,Male,1988-09-25,27,25 - 45,African-American,0,7,0,0,1,-1,2013-08-13 01:33:05,2014-01-28 06:28:34,13011362CF10A,2013-08-13,,1,F,Possession Burglary Tools,1,16005604TC40A,(M2),48,2016-01-21,Driving License Suspended,2016-03-09,2016-04-01,,0,,,,,Risk of Recidivism,7,Medium,2013-08-14,Risk of Violence,8,High,2013-08-14,2014-01-28,2015-05-01,1,625,890,1,1\r\n3788,derec lamons,derec,lamons,2013-08-23,Male,1976-10-15,39,25 - 45,Caucasian,0,4,0,0,0,-1,2013-08-22 12:52:57,2013-08-22 07:49:32,13011815CF10A,2013-08-21,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-23,Risk of Violence,1,Low,2013-08-23,2013-08-22,2013-08-22,0,0,952,0,0\r\n3789,alexander smith,alexander,smith,2013-03-21,Male,1986-09-28,29,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-20 07:49:16,2013-03-21 11:28:05,13004036CF10A,2013-03-20,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,2,Low,2013-03-21,2013-10-10,2013-10-12,0,0,203,0,0\r\n3790,evan mcgrath,evan,mcgrath,2013-08-19,Male,1986-09-03,29,25 - 45,Caucasian,0,3,0,0,1,-2,2013-08-17 11:18:48,2013-08-18 02:02:42,13011560CF10A,2013-08-17,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-19,Risk of Violence,4,Low,2013-08-19,2013-08-17,2013-08-18,1,0,956,0,0\r\n3792,dale gross,dale,gross,2013-10-01,Male,1950-12-21,65,Greater than 45,Caucasian,0,4,0,0,6,-61,2013-08-01 09:47:30,2013-09-25 03:19:43,13010776CF10A,,2013-08-27,35,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2015-11-13,2015-12-06,6,0,773,0,0\r\n3793,stephen laganella,stephen,laganella,2013-09-13,Male,1979-06-21,36,25 - 45,Caucasian,0,4,0,0,1,23,2013-10-06 03:21:54,2013-10-08 11:07:57,13011706CF10A,2013-08-20,,24,F,Possession Of Alprazolam,1,13023538MM10A,(M2),0,2013-12-21,Prowling/Loitering,2013-12-21,2013-12-22,,0,,,,,Risk of Recidivism,4,Low,2013-09-13,Risk of Violence,1,Low,2013-09-13,2013-10-06,2013-10-08,1,0,23,0,1\r\n3794,berry oliver,berry,oliver,2014-04-30,Male,1970-02-16,46,Greater than 45,African-American,0,7,0,0,0,0,2014-04-30 03:19:34,2014-04-30 08:23:00,14006020CF10A,2014-04-30,,0,F,Pos Cannabis W/Intent Sel/Del,1,15010758CF10A,(F3),0,2015-08-20,Possession of Cocaine,2015-08-20,2015-08-20,,0,,,,,Risk of Recidivism,7,Medium,2014-04-30,Risk of Violence,1,Low,2014-04-30,2015-08-20,2015-08-20,0,0,477,0,1\r\n3797,robert reed,robert,reed,2013-05-19,Male,1972-02-17,44,25 - 45,African-American,1,6,0,0,7,-1,2013-05-18 04:20:47,2013-06-11 09:20:26,13007108CF10A,2013-05-18,,1,F,Poss of Cocaine W/I/D/S 1000FT Park,1,16000964CF10A,(F3),1,2016-01-22,,2016-01-23,2016-01-23,,0,,,,,Risk of Recidivism,6,Medium,2013-05-19,Risk of Violence,4,Low,2013-05-19,2013-05-18,2013-06-11,7,23,978,1,0\r\n3799,mckenzie alcime,mckenzie,alcime,2013-01-07,Male,1988-08-23,27,25 - 45,African-American,0,2,0,0,0,-1,2013-01-06 10:11:15,2013-01-08 05:20:20,13000581TC10A,2013-01-06,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-07,Risk of Violence,2,Low,2013-01-07,2013-01-06,2013-01-08,0,1,1180,0,0\r\n3800,asim hamin,asim,hamin,2013-03-09,Male,1988-10-05,27,25 - 45,African-American,0,7,0,0,8,-1,2013-03-08 01:58:58,2013-04-26 07:01:57,13003448CF10A,2013-03-08,,1,F,Felony Battery (Dom Strang),1,13047821TC10A,(M1),0,2013-12-13,Opert With Susp DL 2nd Offens,2013-12-13,2013-12-18,,1,14003856CF10A,(F3),2014-03-19,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2013-03-09,Risk of Violence,8,High,2013-03-09,2013-12-13,2013-12-18,8,48,279,1,1\r\n3801,michael szerkins,michael,szerkins,2013-05-13,Male,1954-12-01,61,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-13 03:50:59,2013-05-15 09:15:24,13009243MM10A,2013-05-13,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-13,2013-05-15,0,2,1054,0,0\r\n3802,garth richards,garth,richards,2014-10-19,Male,1968-10-15,47,Greater than 45,African-American,0,1,0,0,0,-1,2014-10-18 08:48:02,2014-10-19 07:43:24,14015193MM10A,2014-10-18,,1,M,Battery,1,15012296CF10A,(F3),0,2015-09-22,Grand Theft in the 3rd Degree,2015-09-22,2015-09-23,,0,,,,,Risk of Recidivism,1,Low,2014-10-19,Risk of Violence,1,Low,2014-10-19,2015-09-22,2015-09-23,0,0,338,1,1\r\n3804,ryan wisdom,ryan,wisdom,2013-11-26,Male,1988-07-31,27,25 - 45,African-American,0,1,0,0,1,-1,2013-11-25 12:24:22,2013-11-26 08:18:25,13022177MM10A,2013-11-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-26,Risk of Violence,2,Low,2013-11-26,2013-11-25,2013-11-26,1,0,857,0,0\r\n3805,dustin graham,dustin,graham,2014-10-05,Male,1988-04-03,28,25 - 45,Caucasian,0,2,0,0,0,-1,2014-10-04 09:54:21,2014-10-06 04:36:05,14013386CF10A,2014-10-04,,1,F,Grand Theft in the 3rd Degree,1,16001163CF10A,(F3),101,2015-11-03,Grand Theft in the 3rd Degree,2016-02-12,2016-02-12,,0,,,,,Risk of Recidivism,2,Low,2014-10-05,Risk of Violence,2,Low,2014-10-05,2014-10-04,2014-10-06,0,1,394,1,1\r\n3807,tiffany dale,tiffany,dale,2014-02-10,Female,1984-09-21,31,25 - 45,Caucasian,0,5,0,0,1,-1,2014-02-09 10:39:21,2014-02-20 03:21:29,14002231MM10A,2014-02-09,,1,M,Battery,1,14001392MM40A,(M2),,2014-03-11,Prostitution/Lewd Act Assignation,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-10,Risk of Violence,4,Low,2014-02-10,2014-02-09,2014-02-20,1,10,29,1,1\r\n3809,samuel giard,samuel,giard,2014-09-14,Male,1989-05-10,26,25 - 45,Caucasian,0,4,0,0,9,0,2014-09-14 01:12:37,2014-09-15 07:09:10,14062113NI40A,2014-09-14,,0,M,Violation Of Boater Safety Id,1,15010270TC40A,(M2),,2015-02-04,Driving License Suspended,,,,1,15010748MM10A,(M1),2015-08-03,Battery,Risk of Recidivism,4,Low,2014-09-14,Risk of Violence,3,Low,2014-09-14,2014-09-14,2014-09-15,9,1,143,1,1\r\n3811,frederick lawson,frederick,lawson,2014-08-03,Male,1963-02-11,53,Greater than 45,African-American,0,2,0,0,2,-1,2014-08-02 10:55:38,2014-08-10 04:05:00,14010544CF10A,,2014-08-02,1,F,arrest case no charge,1,14016453CF10A,(F1),,2014-12-11,Poss of Cocaine W/I/D/S 1000FT Park,,,,0,,,,,Risk of Recidivism,2,Low,2014-08-03,Risk of Violence,1,Low,2014-08-03,2014-08-02,2014-08-10,2,7,130,1,1\r\n3812,alexander sutton,alexander,sutton,2013-01-11,Male,1990-02-27,26,25 - 45,African-American,0,5,0,0,1,-1,2013-01-10 10:33:34,2013-02-02 08:36:46,12017847CF10A,,2013-01-10,1,F,arrest case no charge,1,13034964TC10A,(M2),,2013-08-24,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-11,Risk of Violence,5,Medium,2013-01-11,2013-01-10,2013-02-02,1,22,225,1,1\r\n3814,eddie johnson,eddie,johnson,2013-04-03,Male,1990-10-11,25,25 - 45,African-American,0,4,0,0,2,-23,2013-03-11 01:09:41,2013-03-29 10:21:52,11000274CF10A,,2013-03-11,23,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-03,Risk of Violence,4,Low,2013-04-03,2014-05-13,2015-01-15,2,0,405,0,0\r\n3816,adeler filossaint,adeler,filossaint,2013-02-11,Male,1992-11-18,23,Less than 25,Other,0,10,0,0,5,-1,2013-02-10 06:01:35,2013-03-14 09:11:16,13002930MM10A,2013-02-10,,1,M,Resist/Obstruct W/O Violence,1,14000890MM10A,(M1),0,2014-01-17,Battery,2014-01-17,2014-03-01,,1,14000890MM10A,(M1),2014-01-17,Battery,Risk of Recidivism,10,High,2013-02-11,Risk of Violence,9,High,2013-02-11,2014-01-17,2014-03-01,5,31,340,1,1\r\n3817,ashley peterson,ashley,peterson,2013-12-22,Female,1994-07-15,21,Less than 25,African-American,0,8,3,1,4,-1,2013-12-21 08:27:11,2013-12-22 01:41:23,12001226MM30A,,2012-09-15,463,M,arrest case no charge,1,15037250TC30A,(M2),94,2015-05-11,Driving License Suspended,2015-08-13,2015-08-22,,0,,,,,Risk of Recidivism,8,High,2013-12-22,Risk of Violence,8,High,2013-12-22,2015-04-25,2015-04-26,4,0,489,0,1\r\n3818,ike black,ike,black,2013-02-07,Male,1992-08-21,23,Less than 25,African-American,0,4,0,0,1,0,2013-02-07 12:42:48,2013-02-10 04:25:55,13005772TC10A,2013-02-06,,1,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-07,Risk of Violence,6,Medium,2013-02-07,2013-02-07,2013-02-10,1,3,1149,0,0\r\n3820,david pennant,david,pennant,2013-03-24,Male,1986-03-19,30,25 - 45,Other,0,1,1,1,3,-1,2013-03-23 08:35:07,2013-03-24 07:23:39,13005730MM10A,2013-03-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-24,Risk of Violence,1,Low,2013-03-24,2013-03-23,2013-03-24,3,0,1104,0,0\r\n3821,tangela jones,tangela,jones,2013-05-03,Female,1970-09-05,45,Greater than 45,African-American,0,3,0,0,2,-1,2013-05-02 07:08:13,2013-05-14 06:04:00,13006300CF10A,2013-05-02,,1,F,False Motor Veh Insurance Card,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-03,Risk of Violence,1,Low,2013-05-03,2014-09-24,2014-09-30,2,11,509,0,0\r\n3824,termell prigeon,termell,prigeon,2013-09-12,Male,1988-08-03,27,25 - 45,African-American,0,5,0,0,2,-1,2013-09-11 03:42:49,2013-09-20 09:01:19,13017328MM10A,2013-09-11,,1,M,Battery,1,14100546TC30A,(M2),,2014-12-04,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-12,Risk of Violence,4,Low,2013-09-12,2013-09-11,2013-09-20,2,8,448,1,1\r\n3826,jeffrey bailey,jeffrey,bailey,2013-03-12,Male,1959-02-13,57,Greater than 45,African-American,0,9,0,0,6,370,2014-03-17 12:46:37,2014-06-02 05:05:06,12152033TC30A,2012-10-31,,132,M,Opert With Susp DL 2nd Offens,1,14076038TC30A,(M2),394,2014-09-09,Unlaw LicTag/Sticker Attach,2015-10-08,2015-10-09,,0,,,,,Risk of Recidivism,9,High,2013-03-12,Risk of Violence,5,Medium,2013-03-12,2014-03-17,2014-06-02,6,0,370,0,1\r\n3828,alfred hampton,alfred,hampton,2013-01-24,Male,1971-11-30,44,25 - 45,Caucasian,0,6,0,0,8,231,2013-09-12 02:27:04,2013-09-14 03:06:26,09018346CF10A,,2010-12-04,782,F,arrest case no charge,1,13012908CF10A,(F3),0,2013-09-12,Grand Theft in the 3rd Degree,2013-09-12,2013-09-14,,0,,,,,Risk of Recidivism,6,Medium,2013-01-24,Risk of Violence,5,Medium,2013-01-24,2013-09-12,2013-09-14,8,0,231,1,1\r\n3830,natasha daniels,natasha,daniels,2013-12-08,Female,1989-07-07,26,25 - 45,African-American,0,2,0,0,0,-1,2013-12-07 10:51:37,2013-12-08 03:56:34,13022666MM10A,2013-12-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-08,Risk of Violence,2,Low,2013-12-08,2013-12-07,2013-12-08,0,0,845,0,0\r\n3831,kameron koepke,kameron,koepke,2013-03-22,Male,1994-10-27,21,Less than 25,Caucasian,0,8,0,0,0,-1,2013-03-21 03:09:22,2013-03-28 07:17:08,13004094CF10A,,2013-03-21,1,F,arrest case no charge,1,14003224CF10A,(F3),118,2014-01-01,Felony Batt(Great Bodily Harm),2014-04-29,2014-07-24,,1,14003224CF10A,(F3),2014-01-01,Felony Batt(Great Bodily Harm),Risk of Recidivism,8,High,2013-03-22,Risk of Violence,7,Medium,2013-03-22,2013-03-21,2013-03-28,0,6,285,1,1\r\n3834,miguel ocasio,miguel,ocasio,2013-06-13,Male,1952-08-16,63,Greater than 45,African-American,0,6,0,0,1,,,,12009681CF10A,2012-07-01,,347,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-06-13,Risk of Violence,2,Low,2013-06-13,,,1,0,1023,0,0\r\n3835,mary watson,mary,watson,2013-09-20,Female,1953-07-28,62,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-09-19 11:42:41,2013-09-23 09:16:00,13042937TC10A,2013-09-19,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-09-19,2013-09-23,0,3,924,0,0\r\n3836,stephen parsons,stephen,parsons,2013-12-16,Male,1968-01-21,48,Greater than 45,Caucasian,0,3,0,0,0,-1,2013-12-15 03:12:29,2014-01-11 05:31:30,13017331CF10A,2013-12-15,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-16,Risk of Violence,2,Low,2013-12-16,2013-12-15,2014-01-11,0,26,837,0,0\r\n3838,clearence jenkins,clearence,jenkins,2013-03-20,Male,1963-03-17,53,Greater than 45,African-American,0,1,0,0,1,-1,2013-03-19 09:19:48,2013-03-20 07:46:30,12026002MM10A,2012-12-20,,90,M,DWLS Susp/Cancel Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-03-19,2013-03-20,1,0,1108,0,0\r\n3839,allen smiley,allen,smiley,2013-12-30,Male,1954-03-09,62,Greater than 45,African-American,0,3,0,0,3,-1,2013-12-29 08:33:04,2013-12-31 03:54:08,13023945MM10A,2013-12-29,,1,M,DUI Property Damage/Injury,1,15002708MM10A,(M1),0,2015-03-07,Violation of Injunction Order/Stalking/Cyberstalking,2015-03-07,2015-05-04,,0,,,,,Risk of Recidivism,3,Low,2013-12-30,Risk of Violence,1,Low,2013-12-30,2015-03-07,2015-05-04,3,1,432,1,1\r\n3840,kenneth sewell,kenneth,sewell,2013-01-06,Male,1987-12-21,28,25 - 45,African-American,1,10,1,0,5,-1,2013-01-05 09:01:27,2013-05-22 06:02:36,13000201CF10A,2013-01-05,,1,F,Aggrav Stalking After Injunctn,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-06,Risk of Violence,10,High,2013-01-06,2013-01-05,2013-05-22,5,136,1181,0,0\r\n3841,michael digiulio,michael,digiulio,2013-11-03,Male,1960-01-29,56,Greater than 45,Caucasian,0,2,0,0,1,0,2013-11-03 04:56:58,2013-11-04 08:10:50,13015318CF10A,2013-11-03,,0,F,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-03,Risk of Violence,1,Low,2013-11-03,2013-11-03,2013-11-04,1,1,880,0,0\r\n3842,emilio colon,emilio,colon,2013-12-13,Male,1981-03-18,35,25 - 45,Hispanic,0,1,0,0,2,-8,2013-12-05 08:08:18,2013-12-13 11:03:04,13016991CF10A,,2013-12-05,8,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-13,Risk of Violence,1,Low,2013-12-13,2013-12-05,2013-12-13,2,0,840,0,0\r\n3843,marlene scollon,marlene,scollon,2014-06-04,Female,1960-03-03,56,Greater than 45,Hispanic,0,1,0,0,2,-1,2014-06-03 02:18:40,2014-07-22 05:59:00,14008851MM10A,2014-06-03,,1,M,Viol Injunction Protect Dom Vi,1,14079316TC30A,(M2),,2014-09-15,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,1,Low,2014-06-04,Risk of Violence,1,Low,2014-06-04,2014-06-03,2014-07-22,2,48,103,1,1\r\n3847,jalen barros,jalen,barros,2013-03-01,Male,1993-04-27,22,Less than 25,African-American,1,7,0,0,2,-1,2013-02-28 10:55:45,2013-03-02 03:35:00,13003058CF10A,2013-02-28,,1,F,Uttering a Forged Instrument,1,13004768MM10A,(M1),0,2013-03-09,Possess Cannabis/20 Grams Or Less,2013-03-09,2013-03-12,,0,,,,,Risk of Recidivism,7,Medium,2013-03-01,Risk of Violence,8,High,2013-03-01,2013-03-09,2013-03-12,2,1,8,1,1\r\n3848,brandon williams,brandon,williams,2013-03-28,Male,1990-04-06,26,25 - 45,African-American,0,8,0,0,5,-1,2013-03-27 04:00:34,2013-05-02 09:54:38,13004409CF10A,2013-03-27,,1,F,Aggrav Child Abuse-Agg Battery,1,13043836TC10A,(M2),15,2013-09-09,Susp Drivers Lic 1st Offense,2013-09-24,2013-12-12,,0,,,,,Risk of Recidivism,8,High,2013-03-28,Risk of Violence,9,High,2013-03-28,2013-03-27,2013-05-02,5,35,165,1,1\r\n3853,jerry grant,jerry,grant,2013-05-09,Male,1981-02-03,35,25 - 45,African-American,0,5,0,0,4,0,2013-05-09 02:12:42,2013-05-10 12:01:27,12058957TC10A,2012-12-01,,159,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-09,Risk of Violence,6,Medium,2013-05-09,2014-08-30,2014-09-09,4,1,478,0,0\r\n3854,joshua lewis,joshua,lewis,2013-01-17,Male,1993-09-09,22,Less than 25,African-American,0,3,0,0,1,-1,2013-01-16 09:15:57,2013-01-31 09:56:20,13000766CF10A,2013-01-16,,1,F,Grand Theft in the 3rd Degree,1,14016831MM10A,(M1),0,2014-11-26,Possess Cannabis/20 Grams Or Less,2014-11-26,2015-01-22,,0,,,,,Risk of Recidivism,3,Low,2013-01-17,Risk of Violence,6,Medium,2013-01-17,2014-11-26,2015-01-22,1,14,678,1,1\r\n3855,edward schuster,edward,schuster,2013-03-27,Male,1955-06-29,60,Greater than 45,Caucasian,0,1,0,0,3,,,,13000497TC10A,2012-12-15,,102,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-27,Risk of Violence,1,Low,2013-03-27,,,3,0,1101,0,0\r\n3856,sarrah pierre,sarrah,pierre,2013-04-17,Female,1979-03-13,37,25 - 45,African-American,1,3,0,0,7,-1,2013-04-16 07:54:08,2013-04-18 05:56:28,13005446CF10A,2013-04-16,,1,F,Deliver Cocaine 1000FT Store,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,1,Low,2013-04-17,2013-04-16,2013-04-18,7,1,1080,0,0\r\n3857,tanesha mcintyre,tanesha,mcintyre,2013-08-27,Female,1984-02-10,32,25 - 45,African-American,0,2,0,0,0,0,2013-08-27 05:00:17,2013-08-27 06:54:07,13012108CF10A,2013-08-26,,1,F,Uttering Forged Bills,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,2013-08-27,2013-08-27,0,0,948,0,0\r\n3858,quanneshia cummings,quanneshia,cummings,2014-10-26,Female,1982-12-25,33,25 - 45,African-American,0,6,0,0,3,-1,2014-10-25 06:21:38,2014-11-03 11:00:22,14014401CF10A,2014-10-25,,1,F,Aggravated Assault W/Dead Weap,1,15035655TC40A,(M2),,2015-06-09,Driving while DL Susp / Financial Resp,,,,0,,,,,Risk of Recidivism,6,Medium,2014-10-26,Risk of Violence,4,Low,2014-10-26,2014-10-25,2014-11-03,3,8,226,1,1\r\n3859,baldeo peararay,baldeo,peararay,2014-01-28,Male,1977-07-13,38,25 - 45,Other,0,3,0,0,2,0,2014-01-28 02:58:04,2014-01-28 08:22:27,14001247CF10A,2014-01-28,,0,F,Felony Driving While Lic Suspd,1,14001987CF10A,(F3),0,2014-02-12,Possession of Cocaine,2014-02-12,2014-04-10,,0,,,,,Risk of Recidivism,3,Low,2014-01-28,Risk of Violence,3,Low,2014-01-28,2014-02-12,2014-04-10,2,0,15,1,1\r\n3860,john vansteenkiste,john,vansteenkiste,2013-01-13,Male,1962-08-11,53,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-12 11:41:12,2013-01-13 12:56:59,13000762MM10A,2013-01-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0\r\n3862,brandon emmert,brandon,emmert,2014-01-10,Male,1983-10-11,32,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-09 09:03:15,2014-01-10 01:14:04,14000417MM10A,2014-01-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-10,Risk of Violence,1,Low,2014-01-10,2014-01-09,2014-01-10,0,0,812,0,0\r\n3863,jules canuet,jules,canuet,2013-01-02,Male,1989-10-17,26,25 - 45,Caucasian,0,2,0,0,0,-1,2013-01-01 05:21:55,2013-01-02 01:16:14,13000035MM10A,2013-01-01,,1,M,Criminal Mischief Damage <$200,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-02,Risk of Violence,3,Low,2013-01-02,2013-01-01,2013-01-02,0,0,1185,0,0\r\n3864,randy munoz,randy,munoz,2014-03-31,Male,1955-03-29,61,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-30 03:50:52,2014-04-01 04:11:15,14012364MU10A,2014-03-30,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-30,2014-04-01,0,1,732,0,0\r\n3865,dave pascal,dave,pascal,2014-02-17,Male,1995-03-21,21,Less than 25,African-American,0,10,0,0,0,-1,2014-02-16 03:54:36,2014-02-17 01:12:04,14002687MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-02-17,Risk of Violence,7,Medium,2014-02-17,2014-02-16,2014-02-17,0,0,774,0,0\r\n3867,perry mcqueen,perry,mcqueen,2014-02-06,Male,1947-03-26,69,Greater than 45,African-American,0,5,0,0,22,-1,2014-02-05 05:31:46,2014-02-06 09:10:18,14002029MM10A,2014-02-05,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-06,Risk of Violence,4,Low,2014-02-06,2014-02-05,2014-02-06,22,0,785,0,0\r\n3869,jovelton joseph,jovelton,joseph,2013-09-23,Male,1989-10-19,26,25 - 45,African-American,0,4,0,0,0,0,2013-09-23 06:12:00,2013-09-23 08:25:00,13018163MM10A,2013-09-23,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-23,Risk of Violence,4,Low,2013-09-23,2013-09-23,2013-09-23,0,0,921,0,0\r\n3870,glenn shelton,glenn,shelton,2014-11-05,Male,1985-12-17,30,25 - 45,African-American,0,10,0,0,9,-1,2014-11-04 08:54:31,2015-05-19 11:36:21,14015489CF10A,2014-11-05,,0,F,Poss of Firearm by Convic Felo,1,15012961CF10A,(F3),,2015-10-07,Threat Public Servant,,,,1,15012961CF10A,(F3),2015-10-07,Threat Public Servant,Risk of Recidivism,10,High,2014-11-05,Risk of Violence,7,Medium,2014-11-05,2015-08-26,2015-08-29,9,195,294,0,1\r\n3872,christopher akel,christopher,akel,2014-02-25,Male,1994-05-24,21,Less than 25,Caucasian,0,4,0,0,1,-5,2014-02-20 10:39:19,2014-02-21 08:22:00,13007144CF10A,,2014-02-20,5,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-25,Risk of Violence,5,Medium,2014-02-25,2015-03-09,2015-03-16,1,0,377,0,0\r\n3879,joseph sessa,joseph,sessa,2014-01-08,Male,1975-01-18,41,25 - 45,Caucasian,0,2,0,0,0,0,2014-01-08 01:08:31,2014-01-08 09:45:35,14001011MU10A,2014-01-07,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,1,Low,2014-01-08,2014-01-08,2014-01-08,0,0,814,0,0\r\n3880,enrico cockroft,enrico,cockroft,2013-03-30,Male,1970-07-23,45,Greater than 45,African-American,0,6,0,0,0,-1,2013-03-29 11:09:04,2013-03-30 08:27:31,13004529CF10A,2013-03-29,,1,F,Driving While License Revoked,1,13011122MM10A,(M1),,2013-04-16,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-30,Risk of Violence,3,Low,2013-03-30,2013-03-29,2013-03-30,0,0,17,1,1\r\n3881,alan mullins,alan,mullins,2013-01-19,Male,1984-08-23,31,25 - 45,African-American,0,5,1,3,10,-1,2013-01-18 08:05:34,2013-01-19 09:26:10,13000880CF10A,2013-01-18,,1,F,Driving While License Revoked,1,13040906TC10A,(M2),,2013-10-04,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-19,Risk of Violence,3,Low,2013-01-19,2013-01-18,2013-01-19,10,0,258,1,1\r\n3882,joseph kimball,joseph,kimball,2013-09-18,Male,1993-09-27,22,Less than 25,Caucasian,0,3,0,0,0,-2,2013-09-16 07:14:35,2013-09-17 07:20:32,13013075CF10A,2013-09-16,,2,F,Aggravated Battery On 65/Older,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-18,Risk of Violence,5,Medium,2013-09-18,2013-09-16,2013-09-17,0,0,926,0,0\r\n3884,todd livingston,todd,livingston,2013-09-06,Female,1961-05-18,54,Greater than 45,Caucasian,0,3,0,0,0,0,2013-09-06 02:07:01,2013-09-26 10:18:23,13012610CF10A,2013-09-05,,1,F,Agg Battery Grt/Bod/Harm,1,14048970TC20A,(M2),,2014-07-01,Driving License Suspended,,,,1,14017830MM10A,(M1),2014-12-18,Battery,Risk of Recidivism,3,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-06,2013-09-26,0,20,298,1,1\r\n3885,richard espinoza,richard,espinoza,2014-09-15,Male,1965-10-19,50,Greater than 45,Caucasian,0,1,0,0,2,-1,2014-09-14 06:27:22,2014-09-15 01:04:02,14013688MM10A,2014-09-14,,1,M,Battery,1,15012781MM10A,(M1),0,2015-12-10,Battery,2015-12-10,2015-12-11,,1,15012781MM10A,(M1),2015-12-10,Battery,Risk of Recidivism,1,Low,2014-09-15,Risk of Violence,1,Low,2014-09-15,2015-12-10,2015-12-11,2,0,451,1,1\r\n3888,linda jackson,linda,jackson,2013-01-25,Female,1965-08-30,50,Greater than 45,African-American,0,2,0,0,5,,,,08020765CF10A,,2012-07-27,182,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-25,Risk of Violence,1,Low,2013-01-25,,,5,0,1162,0,0\r\n3890,orville forrest,orville,forrest,2013-10-22,Male,1978-08-21,37,25 - 45,Other,2,3,0,0,11,-1,2013-10-21 09:53:38,2013-10-22 11:18:14,13014700CF10A,2013-10-21,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-21,2013-10-22,11,0,892,0,0\r\n3891,sheila holston,sheila,holston,2013-03-07,Female,1994-05-07,21,Less than 25,African-American,0,8,0,0,0,-1,2013-03-06 07:04:42,2013-03-07 10:52:53,13003366CF10A,2013-03-06,,1,F,Deliver Cocaine,1,13069708TC20A,(M2),,2013-11-06,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,8,High,2013-03-07,Risk of Violence,7,Medium,2013-03-07,2014-02-16,2014-02-17,0,0,244,1,1\r\n3896,alexander angelet,alexander,angelet,2013-11-04,Male,1992-06-01,23,Less than 25,Hispanic,0,7,0,0,6,-1,2013-11-03 02:17:53,2013-11-08 04:57:59,13020721MM10A,2013-11-03,,1,M,Viol Injunct Domestic Violence,1,15010118MU10A,(M2),0,2015-03-28,Susp Drivers Lic 1st Offense,2015-03-28,2015-03-28,,0,,,,,Risk of Recidivism,7,Medium,2013-11-04,Risk of Violence,7,Medium,2013-11-04,2015-03-28,2015-03-28,6,4,509,0,1\r\n3897,ezequiel espinal,ezequiel,espinal,2014-05-09,Male,1985-08-26,30,25 - 45,Caucasian,0,3,0,0,0,-1,2014-05-08 11:55:10,2014-05-09 07:58:38,14006448CF10A,2014-05-08,,1,F,False Imprisonment,1,15002154MM10A,(M1),,2015-02-21,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2014-05-09,Risk of Violence,3,Low,2014-05-09,2014-05-08,2014-05-09,0,0,288,1,1\r\n3898,robert smitley,robert,smitley,2013-06-04,Male,1963-03-09,53,Greater than 45,Caucasian,0,1,0,0,2,-32,2013-05-03 04:03:18,2013-05-20 10:27:12,13006363CF10A,2013-05-03,,32,F,Possess/Use Weapon 1 Deg Felon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-04,Risk of Violence,1,Low,2013-06-04,2014-06-24,2014-06-26,2,0,385,0,0\r\n3899,erwin williams,erwin,williams,2013-04-03,Male,1986-03-30,30,25 - 45,African-American,0,8,0,0,11,-1,2013-04-02 12:56:55,2013-04-05 04:36:29,13002220CF10A,,2013-04-02,1,F,arrest case no charge,1,13012841MM10A,(M1),0,2013-07-06,Resist/Obstruct W/O Violence,2013-07-06,2013-07-07,,0,,,,,Risk of Recidivism,8,High,2013-04-03,Risk of Violence,4,Low,2013-04-03,2013-07-06,2013-07-07,11,2,94,1,1\r\n3902,george esteves,george,esteves,2014-01-02,Male,1989-09-28,26,25 - 45,Caucasian,0,4,0,0,5,0,2014-01-02 05:35:15,2014-01-02 08:43:04,14000274MU10A,2014-01-02,,0,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-02,Risk of Violence,4,Low,2014-01-02,2014-01-30,2014-01-31,5,0,28,0,0\r\n3903,anderia gillis,anderia,gillis,2013-12-18,Female,1985-09-03,30,25 - 45,African-American,0,9,0,0,1,-62,2013-10-17 06:32:20,2013-10-25 10:48:44,13014543CF10A,,2013-10-17,62,F,arrest case no charge,1,15016086CF10A,(F3),,2015-12-16,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,9,High,2013-12-18,Risk of Violence,3,Low,2013-12-18,2013-10-17,2013-10-25,1,0,728,1,1\r\n3904,linda hadley,linda,hadley,2013-02-04,Female,1957-02-02,59,Greater than 45,African-American,0,2,0,0,0,-1,2013-02-03 08:59:23,2013-02-04 08:01:44,13002444MM10A,2013-02-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-02-03,2013-02-04,0,0,1152,0,0\r\n3906,william barr,william,barr,2013-05-08,Male,1986-12-01,29,25 - 45,African-American,0,8,0,0,13,-1,2013-05-07 07:56:34,2013-05-08 11:30:35,13006526CF10A,2013-05-07,,1,F,Driving While License Revoked,1,14003871CF10A,(M2),0,2014-03-19,Transport Prostitution,2014-03-19,2014-03-20,,0,,,,,Risk of Recidivism,8,High,2013-05-08,Risk of Violence,3,Low,2013-05-08,2013-10-03,2013-10-09,13,0,148,0,1\r\n3907,nelson valle,nelson,valle,2013-02-25,Male,1949-04-13,67,Greater than 45,Hispanic,0,1,0,0,0,-3,2013-02-22 12:31:22,2013-02-23 04:33:50,13002677CF10A,2013-02-21,,4,F,Solicitation On Felony 3 Deg,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,1,Low,2013-02-25,2013-02-22,2013-02-23,0,0,1131,0,0\r\n3909,wayne griffies,wayne,griffies,2014-12-26,Male,1985-10-17,30,25 - 45,Caucasian,0,8,0,0,13,-2,2014-12-24 05:35:51,2015-01-26 09:27:29,14017003CF10A,2014-12-24,,2,F,Poss Pyrrolidinovalerophenone,1,15004464MM10A,(M1),0,2015-04-19,Unlaw Use False Name/Identity,2015-04-19,2015-05-07,,0,,,,,Risk of Recidivism,8,High,2014-12-26,Risk of Violence,2,Low,2014-12-26,2015-02-27,2015-03-04,13,31,63,0,1\r\n3910,kenitra dukes,kenitra,dukes,2014-07-05,Male,1991-01-12,25,25 - 45,African-American,0,5,0,0,5,-1,2014-07-04 10:56:44,2014-07-05 08:53:46,14010291MM10A,2014-07-04,,1,M,Battery,1,15035733TC40A,(M2),,2015-06-03,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2014-07-05,Risk of Violence,4,Low,2014-07-05,2015-03-27,2015-04-12,5,0,265,0,1\r\n3911,rafael lopez,rafael,lopez,2013-09-23,Male,1971-03-27,45,Greater than 45,Hispanic,0,6,0,0,8,-1,2013-09-22 06:06:07,2013-09-23 08:07:27,13013341CF10A,2013-09-22,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-23,Risk of Violence,3,Low,2013-09-23,2015-03-26,2015-05-11,8,0,549,0,0\r\n3912,thomas rousseau,thomas,rousseau,2013-01-14,Male,1981-02-11,35,25 - 45,Caucasian,0,2,0,0,4,,,,12043635TC10A,2012-07-31,,167,M,Fail Obey Driv Lic Restrictions,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,4,Low,2013-01-14,,,4,0,1173,0,0\r\n3917,desmond elliott,desmond,elliott,2013-01-15,Male,1993-08-07,22,Less than 25,African-American,0,3,0,1,0,0,2013-01-15 12:31:43,2013-01-15 01:17:47,13000631CF10A,2013-01-14,,1,F,Carjacking w/o Deadly Weapon,1,15013928CF10A,(F3),,2015-10-25,Possession of Cannabis,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-15,Risk of Violence,6,Medium,2013-01-15,2015-01-19,2015-07-30,0,0,734,0,0\r\n3918,robert echols,robert,echols,2014-09-09,Male,1974-07-19,41,25 - 45,African-American,0,1,0,0,8,0,2014-09-09 02:54:08,2014-09-11 03:45:02,14012269CF10A,2014-09-09,,0,F,Driving While License Revoked,1,14045605TC10A,(M2),0,2014-12-08,Oper Motorcycle W/O Valid DL,2014-12-08,2014-12-08,,0,,,,,Risk of Recidivism,1,Low,2014-09-09,Risk of Violence,1,Low,2014-09-09,2014-10-17,2014-10-31,8,2,38,0,1\r\n3919,trung phan,trung,phan,2013-03-16,Male,1969-05-05,46,Greater than 45,Asian,0,5,0,0,3,-1,2013-03-15 11:30:31,2013-05-14 06:34:35,13003818CF10A,2013-03-15,,1,F,Possession of Cocaine,1,13019079MM10A,(M2),,2013-10-07,Petit Theft,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-16,Risk of Violence,2,Low,2013-03-16,2013-03-15,2013-05-14,3,59,205,1,1\r\n3920,ovento saintval,ovento,saintval,2013-04-30,Male,1989-03-03,27,25 - 45,Other,0,5,0,0,0,-1,2013-04-29 03:55:56,2013-05-01 03:19:29,13008305MM10A,2013-04-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-30,Risk of Violence,3,Low,2013-04-30,2013-04-29,2013-05-01,0,1,1067,0,0\r\n3924,theona alleyne,theona,alleyne,2013-01-03,Female,1979-01-12,37,25 - 45,African-American,0,6,0,0,13,-1,2013-01-02 10:03:55,2013-01-04 01:05:33,13000091CF10A,2013-01-02,,1,F,Felony Driving While Lic Suspd,1,15007257CF10A,(F3),0,2015-06-03,Grand Theft in the 3rd Degree,2015-06-03,2015-06-04,,0,,,,,Risk of Recidivism,6,Medium,2013-01-03,Risk of Violence,3,Low,2013-01-03,2015-06-03,2015-06-04,13,1,881,1,0\r\n3925,robert wade,robert,wade,2014-03-13,Male,1993-12-20,22,Less than 25,African-American,0,3,0,2,0,-1,2014-03-12 07:21:25,2014-03-25 08:48:22,14003512CF10A,2014-03-12,,1,F,Burglary Conveyance Unoccup,1,15000284MM10A,(M2),0,2015-01-08,Prowling/Loitering,2015-01-08,2015-09-17,,0,,,,,Risk of Recidivism,3,Low,2014-03-13,Risk of Violence,5,Medium,2014-03-13,2015-01-08,2015-09-17,0,12,301,1,1\r\n3929,trevon kassie,trevon,kassie,2014-10-16,Male,1996-07-20,19,Less than 25,African-American,0,4,0,0,0,-1,2014-10-15 04:28:24,2014-10-16 02:15:43,14013925CF10A,2014-10-15,,1,F,Pos Cannabis W/Intent Sel/Del,1,16001107CF10A,(F3),0,2016-01-26,,2016-01-26,2016-01-27,,0,,,,,Risk of Recidivism,4,Low,2014-10-16,Risk of Violence,6,Medium,2014-10-16,2015-10-24,2015-10-26,0,0,373,0,1\r\n3930,roberto serrano,roberto,serrano,2013-02-23,Male,1970-06-14,45,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-02-22 12:35:53,2013-02-23 08:32:59,11008987MM10A,,2013-02-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-23,2,0,1133,0,0\r\n3933,renae keyes,renae,keyes,2014-07-21,Female,1982-12-26,33,25 - 45,African-American,0,9,0,0,5,-1,2014-07-20 06:23:49,2014-07-21 06:12:57,14009912CF10A,2014-07-20,,1,F,Possession of Cocaine,1,14010336CF10A,(M2),0,2014-07-29,Prostitution/Lewd Act Assignation,2014-07-29,2014-09-05,,0,,,,,Risk of Recidivism,9,High,2014-07-21,Risk of Violence,3,Low,2014-07-21,2014-07-29,2014-09-05,5,0,8,1,1\r\n3934,christopher johnston,christopher,johnston,2013-01-27,Male,1964-03-02,52,Greater than 45,African-American,0,5,0,0,7,-1,2013-01-26 11:27:48,2013-07-27 05:42:20,13001272CF10A,2013-01-26,,1,F,Felony Petit Theft,1,15009989CF10A,(M1),1,2015-08-02,Trespass Other Struct/Conve,2015-08-03,2015-09-04,,0,,,,,Risk of Recidivism,5,Medium,2013-01-27,Risk of Violence,1,Low,2013-01-27,2014-03-09,2014-03-11,7,181,406,0,0\r\n3935,alexandria smith,alexandria,smith,2013-08-25,Female,1995-04-07,21,Less than 25,African-American,0,6,0,0,0,-1,2013-08-24 08:03:44,2013-08-25 08:34:40,13011944CF10A,2013-08-24,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-25,Risk of Violence,8,High,2013-08-25,2013-08-24,2013-08-25,0,0,950,0,0\r\n3936,calvin stephens,calvin,stephens,2014-08-06,Male,1972-07-13,43,25 - 45,African-American,0,10,0,0,6,0,2014-08-06 10:44:23,2014-08-07 08:20:06,14000458MO40A,,2014-05-17,81,M,arrest case no charge,1,15003543MO40A,(MO3),8,2015-08-31,Carry Open/Uncov Bev In Pub,2015-09-08,2015-09-09,,0,,,,,Risk of Recidivism,10,High,2014-08-06,Risk of Violence,5,Medium,2014-08-06,2014-08-06,2014-08-07,6,1,390,1,1\r\n3938,marcus tanner,marcus,tanner,2013-01-25,Male,1982-11-05,33,25 - 45,Caucasian,0,6,0,0,3,-1,2013-01-24 03:35:01,2013-01-25 08:05:03,13000805CF10A,,2013-01-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-25,Risk of Violence,6,Medium,2013-01-25,2013-01-24,2013-01-25,3,0,1162,0,0\r\n3939,jamar terry,jamar,terry,2013-04-25,Male,1989-08-30,26,25 - 45,African-American,1,10,0,0,3,-1,2013-04-24 07:41:36,2013-04-28 04:07:36,13006853CF10A,2013-04-24,,1,F,Felony Battery w/Prior Convict,1,14000865MM30A,(M1),74,2014-05-16,Possess Cannabis/20 Grams Or Less,2014-07-29,2014-07-30,,1,14017051CF10A,(F3),2014-12-26,Child Abuse,Risk of Recidivism,10,High,2013-04-25,Risk of Violence,9,High,2013-04-25,2013-04-24,2013-04-28,3,3,386,1,1\r\n3941,daniel asdot,daniel,asdot,2014-01-06,Male,1978-12-28,37,25 - 45,Caucasian,0,3,0,0,0,-1,2014-01-05 06:54:49,2014-01-07 03:15:44,14000193MM10A,2014-01-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-01-05,2014-01-07,0,1,816,0,0\r\n3942,john nicolas,john,nicolas,2014-01-02,Male,1977-10-24,38,25 - 45,African-American,0,1,0,0,1,-8,2013-12-25 06:08:28,2014-01-02 01:37:41,13017779CF10A,2013-12-25,,8,F,Resist Officer w/Violence,1,15008361CF10A,(F3),,2015-06-29,Fraud Obtain Driver License,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-02,Risk of Violence,1,Low,2014-01-02,2013-12-25,2014-01-02,1,0,543,1,1\r\n3944,emmanuel pereyra,emmanuel,pereyra,2014-09-14,Male,1981-02-06,35,25 - 45,Hispanic,0,1,0,0,1,-1,2014-09-13 09:24:44,2014-09-14 01:19:10,14013655MM10A,2014-09-13,,1,M,Battery,1,15044138TC40A,(M2),,2015-07-18,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-09-14,Risk of Violence,1,Low,2014-09-14,2014-09-13,2014-09-14,1,0,307,1,1\r\n3946,jeff aurelus,jeff,aurelus,2014-03-17,Male,1988-12-27,27,25 - 45,African-American,0,2,0,0,1,-1,2014-03-16 02:12:11,2014-03-17 01:28:54,14003712CF10A,2014-03-16,,1,F,Felony Driving While Lic Suspd,1,14044450TC20A,(M2),,2014-06-21,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-17,Risk of Violence,2,Low,2014-03-17,2014-03-16,2014-03-17,1,0,96,1,1\r\n3947,shoaib khan,shoaib,khan,2013-09-30,Male,1975-08-13,40,25 - 45,Other,0,1,0,0,1,0,2013-09-30 02:19:47,2013-10-01 02:06:16,13013707CF10A,2013-09-30,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-30,2013-10-01,1,1,914,0,0\r\n3948,courtney patterson,courtney,patterson,2013-03-21,Male,1995-03-22,21,Less than 25,African-American,1,5,0,0,1,-2,2013-03-19 11:59:13,2013-03-20 09:11:13,13003020CF10A,,2013-03-19,2,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-21,Risk of Violence,7,Medium,2013-03-21,2013-03-19,2013-03-20,1,0,1107,0,0\r\n3950,louie dehart,louie,dehart,2013-12-18,Male,1977-10-20,38,25 - 45,Caucasian,0,9,0,0,3,-1,2013-12-17 11:54:33,2013-12-19 08:38:19,13017422CF10A,2013-12-17,,1,F,Possession of Cocaine,1,14005374MM10A,(M1),0,2014-02-25,Extradition/Defendants,2014-02-25,2014-05-18,,0,,,,,Risk of Recidivism,9,High,2013-12-18,Risk of Violence,6,Medium,2013-12-18,2014-02-25,2014-05-18,3,1,69,1,1\r\n3952,michael gardner,michael,gardner,2013-01-28,Male,1979-04-02,37,25 - 45,Caucasian,0,4,0,0,0,-1,2013-01-27 11:03:53,2013-01-28 08:38:10,13001925MM10A,2013-01-27,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-01-28,0,0,1159,0,0\r\n3957,eyxnor jaramillo,eyxnor,jaramillo,2014-01-07,Male,1991-11-18,24,Less than 25,Hispanic,0,2,0,0,1,-78,2013-10-21 04:29:01,2013-10-22 05:13:16,13014721CF10A,2013-10-21,,78,M,Contribute Delinquency Of A Minor,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-07,Risk of Violence,4,Low,2014-01-07,2013-10-21,2013-10-22,1,0,815,0,0\r\n3958,giuseppe montalbano,giuseppe,montalbano,2013-12-25,Male,1971-04-26,44,25 - 45,Caucasian,0,1,0,0,0,-1,2013-12-24 05:58:16,2013-12-25 08:38:42,13017737CF10A,2013-12-24,,1,F,Use of Anti-Shoplifting Device,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-25,Risk of Violence,1,Low,2013-12-25,2013-12-24,2013-12-25,0,0,828,0,0\r\n3960,christopher kearney,christopher,kearney,2013-10-24,Male,1985-06-19,30,25 - 45,African-American,0,2,0,0,0,-1,2013-10-23 09:15:21,2013-10-24 09:33:45,13014815CF10A,2013-10-23,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-24,Risk of Violence,2,Low,2013-10-24,2013-10-23,2013-10-24,0,0,890,0,0\r\n3961,victor quinones,victor,quinones,2013-10-28,Male,1975-09-30,40,25 - 45,Hispanic,0,1,0,0,0,0,2013-10-28 01:12:00,2013-10-28 07:15:34,13015011CF10A,2013-10-27,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-28,Risk of Violence,1,Low,2013-10-28,2013-10-28,2013-10-28,0,0,886,0,0\r\n3963,john trentman,john,trentman,2014-02-19,Male,1967-03-09,49,Greater than 45,Caucasian,0,1,0,0,1,-22,2014-01-28 12:27:03,2014-01-30 08:45:35,14001192CF10A,2014-01-27,,23,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-19,Risk of Violence,1,Low,2014-02-19,2014-01-28,2014-01-30,1,0,772,0,0\r\n3965,edmund witkowski,edmund,witkowski,2014-01-07,Male,1948-06-07,67,Greater than 45,Caucasian,0,1,0,0,0,0,2014-01-07 04:54:59,2014-01-07 08:19:22,14001015MU10A,2014-01-07,,0,M,DUI- Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-07,Risk of Violence,1,Low,2014-01-07,2014-01-07,2014-01-07,0,0,815,0,0\r\n3966,oliver johnkins,oliver,johnkins,2014-08-22,Male,1956-09-03,59,Greater than 45,African-American,0,8,0,0,14,-1,2014-08-21 03:09:08,2014-09-23 03:26:24,14011438CF10A,2014-08-21,,1,F,Possession of Cocaine,1,14013233CF10A,(F3),0,2014-10-01,Sex Offender Fail Comply W/Law,2014-10-01,2015-11-10,,0,,,,,Risk of Recidivism,8,High,2014-08-22,Risk of Violence,4,Low,2014-08-22,2014-10-01,2015-11-10,14,32,40,1,1\r\n3969,jeffery curry,jeffery,curry,2013-03-07,Male,1995-03-04,21,Less than 25,African-American,1,10,0,0,1,-1,2013-03-06 08:54:09,2013-03-08 04:35:38,13003326CF10A,,2013-03-06,1,F,arrest case no charge,1,13020501MM10A,(M2),0,2013-10-30,Prowling/Loitering,2013-10-30,2013-10-31,,0,,,,,Risk of Recidivism,10,High,2013-03-07,Risk of Violence,10,High,2013-03-07,2013-10-30,2013-10-31,1,1,237,1,1\r\n3972,barnabas miller,barnabas,miller,2013-08-26,Male,1984-07-13,31,25 - 45,Caucasian,0,7,0,0,6,-1,2013-08-25 02:54:37,2013-09-04 08:36:01,13016260MM10A,2013-08-25,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-26,Risk of Violence,3,Low,2013-08-26,2015-11-03,2020-01-01,6,9,799,0,0\r\n3973,lea ferrer,lea,ferrer,2013-03-20,Female,1966-01-12,50,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-03-19 11:02:32,2013-03-20 01:09:46,13003998CF10A,2013-03-19,,1,F,Possession of Cocaine,1,14008926CF10A,(F3),0,2014-06-28,Possession of Cocaine,2014-06-28,2014-06-29,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2014-06-28,2014-06-29,2,0,465,1,1\r\n3974,ben ali,ben,ali,2013-10-10,Male,1985-07-26,30,25 - 45,African-American,0,3,0,0,7,-1,2013-10-09 06:16:32,2013-10-10 05:30:06,13014164CF10A,2013-10-09,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-10,Risk of Violence,3,Low,2013-10-10,2014-05-02,2014-06-21,7,0,204,0,0\r\n3975,anthony madeira,anthony,madeira,2013-12-21,Male,1988-04-15,28,25 - 45,Caucasian,0,2,0,0,1,-1,2013-12-20 11:13:53,2013-12-21 08:55:44,13023517MM10A,2013-12-20,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-21,Risk of Violence,2,Low,2013-12-21,2013-12-20,2013-12-21,1,0,832,0,0\r\n3976,rodney mccray,rodney,mccray,2014-04-28,Male,1967-07-26,48,Greater than 45,African-American,0,7,0,0,7,-1,2014-04-27 07:24:45,2014-04-30 03:52:25,14005855CF10A,2014-04-27,,1,F,Possession of Cocaine,1,14008037CF10A,(F3),,2014-05-05,False Ownership Info/Pawn Item,,,,0,,,,,Risk of Recidivism,7,Medium,2014-04-28,Risk of Violence,3,Low,2014-04-28,2014-04-27,2014-04-30,7,2,7,1,1\r\n3977,david wilson,david,wilson,2013-12-02,Male,1960-10-21,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-01 08:17:45,2013-12-02 01:55:29,13022371MM10A,2013-12-01,,1,M,DUI- Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-02,0,0,851,0,0\r\n3978,cristina warman,cristina,warman,2013-01-03,Female,1992-01-19,24,Less than 25,Caucasian,0,3,0,0,1,,,,12018707CF10A,2012-12-26,,8,F,False Ownership Info/Pawn Item,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-03,Risk of Violence,4,Low,2013-01-03,,,1,0,1184,0,0\r\n3979,orlis deltoro,orlis,deltoro,2013-02-11,Male,1973-11-10,42,25 - 45,Caucasian,0,3,0,0,0,-1,2013-02-10 01:50:22,2013-02-12 09:14:42,13002945MM10A,2013-02-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-10,2013-02-12,0,1,1145,0,0\r\n3980,johnny perdomo,johnny,perdomo,2013-02-20,Male,1981-09-13,34,25 - 45,African-American,0,7,0,0,0,0,2013-02-20 03:41:26,2013-03-21 07:00:32,13003596MM10A,2013-02-20,,0,M,Battery,1,13003426MM40A,(M1),,2013-08-22,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-20,Risk of Violence,8,High,2013-02-20,2013-02-20,2013-03-21,0,29,183,1,1\r\n3981,james coleman,james,coleman,2014-05-22,Male,1972-10-23,43,25 - 45,African-American,0,5,0,0,4,0,2014-05-22 04:41:27,2014-05-23 03:56:30,14008273MM10A,2014-05-22,,0,M,Viol Pretrial Release Dom Viol,1,14013569MM10A,(M1),,2014-08-12,Viol Pretrial Release Dom Viol,,,,1,14014899CF10A,(F3),2014-11-06,Felony Battery (Dom Strang),Risk of Recidivism,5,Medium,2014-05-22,Risk of Violence,4,Low,2014-05-22,2014-05-22,2014-05-23,4,1,82,1,1\r\n3982,marleme louima,marleme,louima,2013-02-26,Male,1971-07-03,44,25 - 45,African-American,0,1,0,0,0,0,2013-02-26 03:50:14,2013-04-09 07:40:28,13002928CF10A,2013-02-26,,0,F,Aggrav Child Abuse-Causes Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-26,Risk of Violence,1,Low,2013-02-26,2013-02-26,2013-04-09,0,42,1130,0,0\r\n3984,david burgos,david,burgos,2013-01-24,Male,1990-06-29,25,25 - 45,Caucasian,0,7,0,0,0,256,2013-10-07 04:46:47,2013-10-08 03:10:56,13001711MM10A,2013-01-24,,0,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-24,Risk of Violence,5,Medium,2013-01-24,2013-10-07,2013-10-08,0,0,256,0,0\r\n3985,nicholas chew,nicholas,chew,2014-05-29,Male,1986-12-12,29,25 - 45,Hispanic,0,6,1,0,17,0,2014-05-29 01:16:04,2014-05-31 04:26:56,14007463CF10A,2014-05-28,,1,F,Felony Battery (Dom Strang),1,16000495MM40A,(M1),,2016-01-05,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2014-05-29,Risk of Violence,7,Medium,2014-05-29,2014-05-29,2014-05-31,17,2,586,1,1\r\n3987,billy hockaday,billy,hockaday,2014-08-16,Male,1990-04-27,25,25 - 45,Caucasian,0,5,0,0,2,-1,2014-08-15 07:14:01,2014-08-16 02:16:45,14011208CF10A,2014-08-15,,1,F,Carrying Concealed Firearm,1,15006971MM10A,(M2),0,2015-06-29,Petit Theft,2015-06-29,2015-07-17,,0,,,,,Risk of Recidivism,5,Medium,2014-08-16,Risk of Violence,4,Low,2014-08-16,2015-06-29,2015-07-17,2,0,317,1,1\r\n3988,constance jorden,constance,jorden,2013-04-17,Female,1984-04-08,32,25 - 45,African-American,0,3,0,0,0,-1,2013-04-16 07:48:07,2013-04-17 11:04:26,13007385MM10A,2013-04-16,,1,M,Battery,1,13075116TC20A,(M2),,2013-12-03,Posses/Disply Susp/Revk/Frd DL,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,2,Low,2013-04-17,2015-06-21,2015-06-22,0,0,230,1,1\r\n3989,jorge castro,jorge,castro,2014-03-31,Male,1919-10-14,96,Greater than 45,Hispanic,0,2,0,0,2,-3,2014-03-28 12:45:33,2014-03-29 09:09:59,14004376CF10A,2014-03-28,,3,F,Aggravated Assault W/Dead Weap,1,14014182MM10A,(M2),0,2014-09-25,Petit Theft,2014-09-25,2014-10-08,,0,,,,,Risk of Recidivism,2,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-09-25,2014-10-08,2,0,178,1,1\r\n3990,emanuel richardson,emanuel,richardson,2014-10-09,Male,1980-06-17,35,25 - 45,African-American,0,4,0,0,10,-232,2014-02-19 02:04:36,2014-02-19 10:30:44,14006515TC10A,,2014-10-08,1,M,arrest case no charge,1,15011627MM10A,(M1),,2015-11-05,Resist/Obstruct W/O Violence,,,,0,,,,,Risk of Recidivism,4,Low,2014-10-09,Risk of Violence,5,Medium,2014-10-09,2014-02-19,2014-02-19,10,0,392,1,1\r\n3991,franco garcia,franco,garcia,2013-08-04,Male,1986-10-05,29,25 - 45,Hispanic,0,2,0,0,0,-1,2013-08-03 08:35:21,2013-08-05 04:16:09,13014644MM10A,2013-08-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-04,Risk of Violence,2,Low,2013-08-04,2013-08-03,2013-08-05,0,1,971,0,0\r\n3992,yoshihiro merello,yoshihiro,merello,2013-02-23,Male,1988-07-22,27,25 - 45,Hispanic,0,5,1,1,8,-1,2013-02-22 01:19:26,2013-02-23 09:07:46,13002748CF10A,2013-02-22,,1,F,Possession Of Alprazolam,1,13003313CF10A,(F3),1,2013-03-05,Possession of Cannabis,2013-03-06,2013-03-18,,0,,,,,Risk of Recidivism,5,Medium,2013-02-23,Risk of Violence,4,Low,2013-02-23,2014-10-28,2014-11-06,8,0,10,1,1\r\n3993,tony figueroa,tony,figueroa,2013-10-28,Male,1974-08-04,41,25 - 45,Hispanic,0,2,0,0,2,-132,2013-06-18 09:13:15,2013-10-25 06:02:07,13006123CF10A,,2013-06-18,132,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-28,Risk of Violence,2,Low,2013-10-28,2015-10-28,2015-11-11,2,0,730,0,0\r\n3994,efrain morales,efrain,morales,2014-01-06,Male,1985-03-07,31,25 - 45,Hispanic,0,5,0,0,0,-3,2014-01-03 08:06:18,2014-01-04 01:34:34,14000131MM10A,2014-01-03,,3,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-06,Risk of Violence,2,Low,2014-01-06,2014-01-03,2014-01-04,0,0,816,0,0\r\n3995,joshua newton,joshua,newton,2013-03-19,Male,1991-04-25,24,Less than 25,African-American,0,3,0,0,1,-1,2013-03-18 06:44:00,2013-03-19 06:36:54,13003942CF10A,2013-03-18,,1,F,Robbery Sudd Snatch No Weapon,1,13000758MM30A,(M1),,2013-06-06,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-19,Risk of Violence,3,Low,2013-03-19,2015-09-10,2015-09-16,1,0,79,1,1\r\n3997,donnell trobridge,donnell,trobridge,2014-07-22,Male,1982-01-04,34,25 - 45,African-American,0,7,0,0,0,0,2014-07-22 01:55:13,2015-03-20 04:18:02,14010013CF10A,,2014-07-22,0,F,arrest case no charge,1,16002342MM10A,(M1),,2016-03-11,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-07-22,Risk of Violence,4,Low,2014-07-22,2015-09-22,2015-11-19,0,241,427,0,1\r\n3998,courtney hutchinson,courtney,hutchinson,2014-07-18,Male,1967-08-24,48,Greater than 45,African-American,0,1,0,0,2,0,2014-07-18 02:22:11,2014-07-19 03:28:26,14009812CF10A,2014-07-17,,1,F,Grand Theft in the 3rd Degree,1,14013357CF10A,(M1),0,2014-10-03,Refuse Submit Blood/Breath Test,2014-10-03,2014-10-21,,0,,,,,Risk of Recidivism,1,Low,2014-07-18,Risk of Violence,1,Low,2014-07-18,2014-10-03,2014-10-21,2,1,77,1,1\r\n3999,guiteau auguste,guiteau,auguste,2013-02-26,Male,1974-05-20,41,25 - 45,African-American,0,1,0,0,1,-1,2013-02-25 05:22:38,2013-02-27 05:48:55,13002855CF10A,2013-02-25,,1,F,Grand Theft Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-26,Risk of Violence,1,Low,2013-02-26,2013-02-25,2013-02-27,1,1,1130,0,0\r\n4000,don royster,don,royster,2014-12-08,Male,1990-01-05,26,25 - 45,African-American,0,9,0,1,12,-1,2014-12-07 08:37:36,2014-12-18 01:56:31,14017227MM10A,2014-12-07,,1,M,Battery,1,15011699MM10A,(M1),0,2015-11-07,Trespass Other Struct/Convey,2015-11-07,2015-11-08,,0,,,,,Risk of Recidivism,9,High,2014-12-08,Risk of Violence,4,Low,2014-12-08,2015-08-26,2015-08-27,12,10,261,0,1\r\n4001,anthony allen,anthony,allen,2014-08-01,Male,1973-10-23,42,25 - 45,African-American,0,5,0,0,0,0,2014-08-01 02:18:37,2014-08-08 03:33:09,14010507CF10A,2014-08-01,,0,F,Imperson Public Officer or Emplyee,1,14011467CF10A,(F3),305,2014-08-22,Felony Petit Theft,2015-06-23,2015-07-31,,0,,,,,Risk of Recidivism,5,Medium,2014-08-01,Risk of Violence,2,Low,2014-08-01,2014-08-01,2014-08-08,0,7,21,1,1\r\n4002,jeffrey richardson,jeffrey,richardson,2013-03-09,Male,1986-12-29,29,25 - 45,African-American,0,5,0,0,0,-1,2013-03-08 03:17:45,2013-04-19 08:34:18,13004701MM10A,2013-03-08,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-09,Risk of Violence,3,Low,2013-03-09,2013-04-23,2013-05-03,0,41,45,0,0\r\n4003,ryan dundas,ryan,dundas,2013-05-19,Male,1989-05-02,26,25 - 45,Caucasian,0,2,0,0,0,-1,2013-05-18 11:23:09,2013-05-19 12:50:42,13009580MM10A,2013-05-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-19,Risk of Violence,3,Low,2013-05-19,2013-05-18,2013-05-19,0,0,1048,0,0\r\n4004,lyntina marshall,lyntina,marshall,2013-09-23,Female,1988-06-17,27,25 - 45,African-American,0,3,0,0,1,0,2013-09-23 12:15:53,2013-11-07 02:18:29,13006658CF10A,,2013-09-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-23,Risk of Violence,3,Low,2013-09-23,2013-09-23,2013-11-07,1,45,921,0,0\r\n4005,joseph lapoint,joseph,lapoint,2013-09-18,Male,1981-02-10,35,25 - 45,Caucasian,0,2,0,0,4,-1,2013-09-17 07:57:04,2013-10-18 09:02:20,13017723MM10A,2013-09-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-18,Risk of Violence,3,Low,2013-09-18,2013-09-17,2013-10-18,4,30,926,0,0\r\n4006,richard turello,richard,turello,2013-02-16,Male,1961-11-18,54,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-02-15 11:29:24,2013-02-16 01:02:04,13002373CF10A,2013-02-15,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-16,Risk of Violence,1,Low,2013-02-16,2013-05-22,2013-06-13,1,0,95,0,0\r\n4007,zane thompson-henry,zane,thompson-henry,2014-11-29,Male,1991-10-31,24,Less than 25,African-American,0,10,0,0,3,-155,2014-06-27 12:58:33,2014-06-27 08:35:57,14009976MM10A,2014-06-26,,156,M,Trespass Struct/Conveyance,1,15027308TC20A,(M2),44,2015-04-28,Driving License Suspended,2015-06-11,2015-06-12,,0,,,,,Risk of Recidivism,10,High,2014-11-29,Risk of Violence,10,High,2014-11-29,2015-06-11,2015-06-12,3,0,150,1,1\r\n4010,jeremiah lewis,jeremiah,lewis,2014-02-02,Male,1995-06-12,20,Less than 25,African-American,0,6,0,0,0,-1,2014-02-01 09:21:02,2014-02-02 07:48:18,14001448CF10A,2014-02-01,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-02,Risk of Violence,6,Medium,2014-02-02,2014-02-01,2014-02-02,0,0,789,0,0\r\n4011,christopher dunn,christopher,dunn,2013-07-08,Male,1989-02-09,27,25 - 45,Caucasian,0,6,0,0,0,-3,2013-07-05 02:10:44,2013-07-06 07:33:50,13009939CF10A,,2013-07-05,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-08,Risk of Violence,5,Medium,2013-07-08,2013-09-04,2013-09-05,0,0,58,0,0\r\n4012,shaquille stephens,shaquille,stephens,2013-03-22,Male,1994-07-30,21,Less than 25,African-American,0,7,0,0,1,-1,2013-03-21 06:38:57,2013-03-23 04:48:56,13004110CF10A,2013-03-21,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-22,Risk of Violence,7,Medium,2013-03-22,2013-10-09,2013-11-15,1,1,201,0,0\r\n4013,robert dey,robert,dey,2014-04-16,Male,1989-02-14,27,25 - 45,Caucasian,0,9,1,1,7,-1,2014-04-15 01:46:42,2014-04-17 03:05:00,14006354MM10A,2014-04-15,,1,M,Battery,1,15003227CF10A,(F3),,2014-12-02,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,9,High,2014-04-16,Risk of Violence,8,High,2014-04-16,2014-07-03,2014-09-03,7,1,78,0,1\r\n4014,eric keel,eric,keel,2014-03-01,Male,1981-11-06,34,25 - 45,African-American,1,8,0,0,11,-1,2014-02-28 04:43:38,2014-03-01 09:54:18,14002873CF10A,,2014-02-28,1,F,arrest case no charge,1,16000371CF10A,(M1),0,2016-01-09,,2016-01-09,2016-01-15,,0,,,,,Risk of Recidivism,8,High,2014-03-01,Risk of Violence,4,Low,2014-03-01,2014-04-09,2014-04-10,11,0,39,0,1\r\n4016,christopher john,christopher,john,2014-02-12,Male,1988-05-24,27,25 - 45,Caucasian,0,7,0,0,4,-42,2014-01-01 11:58:12,2014-02-12 11:17:33,14000057CF10A,2014-01-01,,42,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-12,Risk of Violence,2,Low,2014-02-12,2014-01-01,2014-02-12,4,0,779,0,0\r\n4018,jerome simmins,jerome,simmins,2013-04-02,Male,1961-11-22,54,Greater than 45,African-American,0,1,0,0,0,-1,2013-04-01 12:29:20,2013-04-02 12:43:55,13006256MM10A,2013-04-01,,1,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-02,Risk of Violence,1,Low,2013-04-02,2014-03-03,2014-03-12,0,0,335,0,0\r\n4020,gavin simpson,gavin,simpson,2013-10-20,Male,1987-02-04,29,25 - 45,Other,0,2,0,0,2,-1,2013-10-19 09:33:07,2013-10-21 03:05:00,13014649CF10A,2013-10-19,,1,F,Felony Driving While Lic Suspd,1,15056862TC20A,(M2),,2015-10-13,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-20,Risk of Violence,2,Low,2013-10-20,2013-10-19,2013-10-21,2,1,723,1,1\r\n4021,derrick hepburn,derrick,hepburn,2013-06-06,Male,1977-03-19,39,25 - 45,African-American,0,1,0,0,1,-6,2013-05-31 10:13:39,2013-06-05 09:47:23,08001926CF10A,,2013-05-31,6,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-06,Risk of Violence,1,Low,2013-06-06,2013-05-31,2013-06-05,1,0,1030,0,0\r\n4022,kianna myers,kianna,myers,2014-02-27,Female,1993-10-10,22,Less than 25,Caucasian,0,7,1,1,2,,,,11018746CF10A,,2012-04-17,681,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-27,Risk of Violence,5,Medium,2014-02-27,,,2,0,764,0,0\r\n4023,hazel baptist-murillo,hazel,baptist-murillo,2013-09-17,Female,1983-02-24,33,25 - 45,Caucasian,0,1,0,0,0,-2,2013-09-15 11:15:31,2013-09-16 02:27:48,13017582MM10A,2013-09-15,,2,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-17,Risk of Violence,1,Low,2013-09-17,2013-09-15,2013-09-16,0,0,927,0,0\r\n4024,markita thurman,markita,thurman,2013-01-14,Female,1990-09-24,25,25 - 45,African-American,0,8,0,0,2,210,2013-08-12 03:46:47,2014-09-24 05:57:16,12017959CF10A,,2012-12-07,38,F,arrest case no charge,1,13016466MM10A,(M1),32,2013-07-11,Petit Theft $100- $300,2013-08-12,2014-09-24,,0,,,,,Risk of Recidivism,8,High,2013-01-14,Risk of Violence,7,Medium,2013-01-14,2015-10-15,2015-10-22,2,0,178,1,1\r\n4026,nancy jimenez,nancy,jimenez,2014-03-19,Female,1975-08-06,40,25 - 45,Hispanic,0,2,0,0,7,-19,2014-02-28 02:15:56,2014-03-06 09:36:11,14003048CF10A,,2014-02-28,19,F,arrest case no charge,1,14070864TC20A,(M2),,2014-10-07,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-19,Risk of Violence,1,Low,2014-03-19,2014-02-28,2014-03-06,7,0,202,1,1\r\n4028,natasha brown,natasha,brown,2013-10-14,Female,1980-05-20,35,25 - 45,African-American,0,4,0,0,0,-1,2013-10-13 05:47:56,2013-10-14 05:04:52,13019419MM10A,2013-10-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-14,Risk of Violence,2,Low,2013-10-14,2013-10-13,2013-10-14,0,0,900,0,0\r\n4029,angel roman,angel,roman,2013-05-29,Male,1987-09-07,28,25 - 45,Hispanic,0,2,0,0,0,0,2013-05-29 04:18:26,2013-05-31 12:12:39,13010325MM10A,2013-05-29,,0,M,Battery,1,14000709MM40A,(M2),,2014-01-26,Petit Theft,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-29,Risk of Violence,4,Low,2013-05-29,2013-05-29,2013-05-31,0,2,242,1,1\r\n4031,allan harris,allan,harris,2013-09-04,Male,1962-07-21,53,Greater than 45,African-American,0,1,0,0,0,-3,2013-09-01 09:05:41,2013-09-02 08:16:10,13016732MM10A,2013-09-01,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-09-01,2013-09-02,0,0,940,0,0\r\n4032,eric broadway,eric,broadway,2013-02-08,Male,1987-11-24,28,25 - 45,Caucasian,0,4,0,1,2,-1,2013-02-07 04:53:39,2013-02-20 07:44:08,13002766MM10A,2013-02-07,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-08,Risk of Violence,3,Low,2013-02-08,2015-01-14,2015-01-28,2,12,705,0,0\r\n4033,aaron gilliam,aaron,gilliam,2013-02-07,Male,1989-07-18,26,25 - 45,African-American,0,8,0,0,0,-1,2013-02-06 10:27:22,2013-02-07 08:07:33,13001859CF10A,2013-02-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-07,Risk of Violence,4,Low,2013-02-07,2013-02-06,2013-02-07,0,0,1149,0,0\r\n4035,ronal jean,ronal,jean,2013-04-04,Male,1985-05-15,30,25 - 45,African-American,0,3,0,0,1,1040,2016-02-08 05:28:51,2016-02-25 09:37:50,10009122CF10A,,2010-05-20,1050,F,arrest case no charge,1,16001733CF10A,(F3),0,2016-02-08,False Motor Veh Insurance Card,2016-02-08,2016-02-25,,0,,,,,Risk of Recidivism,3,Low,2013-04-04,Risk of Violence,2,Low,2013-04-04,2016-02-08,2016-02-25,1,0,1040,1,0\r\n4036,brandon mcneil,brandon,mcneil,2013-03-26,Male,1984-11-30,31,25 - 45,African-American,0,5,1,0,3,0,2013-03-26 03:40:52,2013-03-27 02:26:05,13004378CF10A,2013-03-26,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-26,Risk of Violence,5,Medium,2013-03-26,2013-03-26,2013-03-27,3,1,1102,0,0\r\n4037,todd cullen,todd,cullen,2014-03-09,Male,1992-01-31,24,Less than 25,Caucasian,0,8,0,0,3,-1,2014-03-08 08:41:02,2014-03-09 10:08:09,14004021MM10A,2014-03-08,,1,M,Battery,1,15006522TC30A,(M2),,2015-01-17,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,8,High,2014-03-09,Risk of Violence,5,Medium,2014-03-09,2014-03-08,2014-03-09,3,0,314,1,1\r\n4038,patrick damico,patrick,damico,2014-03-15,Male,1970-08-11,45,Greater than 45,Caucasian,0,6,0,0,19,-1,2014-03-14 05:58:42,2014-03-16 03:56:29,14003649CF10A,2014-03-14,,1,F,Felony Petit Theft,1,14006153CF10A,(F3),0,2014-05-02,Grand Theft in the 3rd Degree,2014-05-02,2014-08-26,,0,,,,,Risk of Recidivism,6,Medium,2014-03-15,Risk of Violence,7,Medium,2014-03-15,2014-05-02,2014-08-26,19,1,48,1,1\r\n4039,jorge rodriguez,jorge,rodriguez,2014-02-07,Male,1982-11-13,33,25 - 45,Hispanic,0,4,0,0,1,0,2014-02-07 03:22:03,2014-02-07 09:16:46,14005066MU10A,2014-02-07,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-07,Risk of Violence,2,Low,2014-02-07,2014-02-07,2014-02-07,1,0,784,0,0\r\n4041,cedrial brown,cedrial,brown,2014-01-11,Male,1987-11-26,28,25 - 45,African-American,0,7,0,0,1,0,2014-01-11 05:21:34,2014-01-11 08:39:59,14000469CF10A,2014-01-11,,0,F,Possession of Codeine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-11,Risk of Violence,7,Medium,2014-01-11,2014-01-11,2014-01-11,1,0,811,0,0\r\n4045,cynthia stone,cynthia,stone,2013-04-26,Female,1970-05-27,45,Greater than 45,Caucasian,0,3,0,0,1,-1,2013-04-25 01:19:09,2013-04-26 01:56:13,13005971CF10A,2013-04-25,,1,F,Possession Of Methamphetamine,1,14002138TC10A,(M2),134,2013-11-19,Fail Register Vehicle,2014-04-02,2014-04-10,,0,,,,,Risk of Recidivism,3,Low,2013-04-26,Risk of Violence,1,Low,2013-04-26,2013-07-31,2013-09-23,1,0,96,0,1\r\n4047,sade kendirck,sade,kendirck,2013-10-09,Female,1993-08-07,22,Less than 25,African-American,0,6,0,0,1,,,,12008794MM10A,2012-04-29,,528,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-09,Risk of Violence,7,Medium,2013-10-09,,,1,0,905,0,0\r\n4048,justin stilley,justin,stilley,2013-04-30,Male,1982-06-21,33,25 - 45,Caucasian,0,8,0,0,3,-19,2013-04-11 11:59:05,2013-04-26 07:00:10,12004112CF10A,,2013-04-11,19,F,arrest case no charge,1,15004951MM10A,(M1),0,2015-05-02,Petit Theft $100- $300,2015-05-02,2015-05-15,,0,,,,,Risk of Recidivism,8,High,2013-04-30,Risk of Violence,7,Medium,2013-04-30,2014-02-27,2014-06-24,3,0,303,0,1\r\n4049,michael poveda,michael,poveda,2014-10-13,Male,1992-09-17,23,Less than 25,Caucasian,0,6,0,4,4,0,2014-10-13 12:49:23,2014-10-13 01:44:37,14013790CF10A,2014-10-12,,1,F,Poss Pyrrolidinovalerophenone,1,15014449TC30A,(M2),,2015-02-18,Operating W/O Valid License,,,,1,15006412CF10A,(F3),2015-05-17,Battery on Law Enforc Officer,Risk of Recidivism,6,Medium,2014-10-13,Risk of Violence,4,Low,2014-10-13,2015-03-13,2015-03-18,4,0,128,1,1\r\n4052,lonnie childress,lonnie,childress,2013-01-05,Male,1979-10-31,36,25 - 45,African-American,0,5,0,0,6,-1,2013-01-04 03:10:09,2013-03-29 10:22:04,13000167CF10A,2013-01-04,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-05,Risk of Violence,5,Medium,2013-01-05,2013-01-04,2013-03-29,6,83,1182,0,0\r\n4054,james smith,james,smith,2013-03-30,Male,1994-04-16,22,Less than 25,African-American,0,3,0,0,0,-1,2013-03-29 06:04:18,2013-03-30 04:10:47,13004554CF10A,2013-03-29,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-30,Risk of Violence,5,Medium,2013-03-30,2013-03-29,2013-03-30,0,0,1098,0,0\r\n4058,christina crianza,christina,crianza,2013-05-23,Male,1970-08-17,45,Greater than 45,Caucasian,0,1,0,0,1,,,,11028333MM10A,2011-12-29,,511,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-23,Risk of Violence,1,Low,2013-05-23,,,1,0,1044,0,0\r\n4059,tyrell daniels,tyrell,daniels,2013-03-06,Male,1988-01-12,28,25 - 45,African-American,0,5,0,0,2,0,2013-03-06 02:18:21,2013-03-07 05:08:28,13003361CF10A,2013-03-05,,1,F,Grand Theft in the 3rd Degree,1,15001028MM40A,(M1),,2015-02-18,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-06,Risk of Violence,6,Medium,2013-03-06,2013-03-06,2013-03-07,2,1,714,1,1\r\n4060,max metayer,max,metayer,2013-04-29,Male,1978-08-22,37,25 - 45,African-American,0,2,0,0,3,-1,2013-04-28 10:44:17,2013-04-29 06:35:59,13008180MM10A,2013-04-28,,1,M,Battery,1,15044627TC30A,(M2),,2015-06-08,Fraud Obtain/ Use Disable Permit,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-28,2013-04-29,3,0,770,1,0\r\n4061,bess lamb,bess,lamb,2013-01-13,Female,1964-03-09,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-12 07:04:33,2013-01-13 01:52:34,13000720MM10A,2013-01-12,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0\r\n4062,guillermo zuniga,guillermo,zuniga,2013-08-16,Male,1989-06-24,26,25 - 45,Caucasian,0,2,0,0,0,0,2013-08-16 06:08:42,2013-08-18 05:08:01,13011530CF10A,2013-08-16,,0,F,Aggravated Battery,1,15051974TC20A,(M2),,2015-09-17,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-16,Risk of Violence,3,Low,2013-08-16,2013-08-16,2013-08-18,0,2,762,1,0\r\n4063,william valdes,william,valdes,2014-11-12,Male,1987-05-06,28,25 - 45,Caucasian,0,4,0,0,4,-1,2014-11-11 06:36:04,2014-11-15 03:02:52,14015114CF10A,2014-11-11,,1,F,Possession Of Heroin,1,15001965CF10A,(F3),0,2015-02-11,Possession of Morphine,2015-02-11,2015-03-19,,0,,,,,Risk of Recidivism,4,Low,2014-11-12,Risk of Violence,2,Low,2014-11-12,2014-12-05,2014-12-06,4,3,23,0,1\r\n4064,lanette garcia,lanette,garcia,2014-03-18,Female,1983-02-03,33,25 - 45,Caucasian,0,4,0,0,2,-1,2014-03-17 09:15:29,2014-03-31 10:02:05,14003828CF10A,,2014-03-18,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-18,Risk of Violence,2,Low,2014-03-18,2014-03-17,2014-03-31,2,13,745,0,0\r\n4065,alexander laute,alexander,laute,2013-04-04,Male,1992-06-10,23,Less than 25,Caucasian,0,4,0,1,3,-1,2013-04-03 02:07:02,2013-05-14 08:05:26,13004767CF10A,,2013-04-03,1,F,arrest case no charge,1,14002589MM10A,(M2),,2014-01-16,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-04,Risk of Violence,4,Low,2013-04-04,2013-09-06,2013-09-22,3,40,155,0,1\r\n4067,brian mayors,brian,mayors,2014-01-26,Male,1984-12-27,31,25 - 45,Caucasian,0,4,0,1,3,-1,2014-01-25 11:14:09,2014-01-26 08:02:45,14002841MU10A,2014-01-25,,1,M,Driving Under The Influence,1,14052681TC30A,(M2),,2014-06-14,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-26,Risk of Violence,2,Low,2014-01-26,2014-01-25,2014-01-26,3,0,139,1,1\r\n4068,angela margison,angela,margison,2013-08-12,Female,1961-02-04,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-11 06:49:45,2013-08-12 09:32:58,13015173MM10A,2013-08-11,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-12,Risk of Violence,1,Low,2013-08-12,2014-05-20,2014-05-21,0,0,281,0,0\r\n4069,veron elliot,veron,elliot,2013-09-23,Male,1991-05-05,24,Less than 25,Caucasian,0,4,0,2,3,0,2013-09-23 12:21:54,2013-09-23 07:52:28,13013357CF10A,2013-09-22,,1,F,Tamper With Witness/Victim/CI,1,15023733TC40A,(M2),,2015-04-14,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-23,Risk of Violence,6,Medium,2013-09-23,2013-09-23,2013-09-23,3,0,568,1,1\r\n4070,andrew pardo,andrew,pardo,2014-02-02,Male,1979-01-17,37,25 - 45,African-American,0,1,0,0,2,0,2014-02-02 09:39:48,2014-02-03 08:48:52,13043243TC10A,2013-10-04,,121,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-02,Risk of Violence,1,Low,2014-02-02,2014-02-02,2014-02-03,2,1,789,0,0\r\n4072,phillip jaggon,phillip,jaggon,2013-10-04,Male,1974-08-17,41,25 - 45,African-American,0,1,0,0,0,0,2013-10-04 02:06:11,2014-03-30 04:15:17,13013943CF10A,2013-10-03,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-04,Risk of Violence,1,Low,2013-10-04,2013-10-04,2014-03-30,0,177,910,0,0\r\n4073,andrew deabenderfer,andrew,deabenderfer,2013-03-06,Male,1989-08-14,26,25 - 45,Caucasian,0,2,0,0,0,-1,2013-03-05 09:28:44,2013-03-06 07:12:03,13004487MM10A,2013-03-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-06,Risk of Violence,3,Low,2013-03-06,2016-02-23,2016-02-23,0,0,1084,0,0\r\n4075,eric page,eric,page,2013-04-08,Male,1975-04-15,41,25 - 45,African-American,0,5,0,0,13,-1,2013-04-07 11:54:14,2013-04-10 05:02:21,13005012CF10A,2013-04-07,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-08,Risk of Violence,5,Medium,2013-04-08,2013-11-09,2013-11-14,13,2,215,0,0\r\n4076,anderson carrington,anderson,carrington,2013-02-18,Male,1983-01-31,33,25 - 45,African-American,0,6,0,0,6,-1,2013-02-17 07:07:48,2013-02-18 02:48:50,13002445CF10A,2013-02-17,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-18,Risk of Violence,2,Low,2013-02-18,2013-02-17,2013-02-18,6,0,1138,0,0\r\n4078,anthony ramirez,anthony,ramirez,2014-01-12,Male,1968-05-28,47,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-01-11 06:21:34,2014-01-14 09:19:02,14000565MM10A,2014-01-11,,1,M,Exposes Culpable Negligence,1,14031520TC20A,(M2),,2014-04-29,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-12,Risk of Violence,1,Low,2014-01-12,2014-01-11,2014-01-14,0,2,107,1,1\r\n4080,alex diaz,alex,diaz,2013-10-30,Male,1992-05-11,23,Less than 25,African-American,0,5,0,0,0,-1,2013-10-29 06:06:57,2013-10-31 02:30:08,13015107CF10A,2013-10-29,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-30,Risk of Violence,6,Medium,2013-10-30,2013-10-29,2013-10-31,0,1,884,0,0\r\n4081,james liantonio,james,liantonio,2014-03-08,Male,1988-10-10,27,25 - 45,Caucasian,0,3,0,0,1,-1,2014-03-07 07:32:26,2014-03-08 09:08:08,13016455CF10A,,2014-03-07,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-08,Risk of Violence,2,Low,2014-03-08,2014-03-07,2014-03-08,1,0,755,0,0\r\n4082,alexander brock,alexander,brock,2014-03-26,Male,1991-12-09,24,Less than 25,Caucasian,0,5,0,0,0,0,2014-03-26 12:17:11,2014-05-02 11:11:37,14004295CF10A,2014-03-25,,1,F,Tamper With Victim,1,15004465MM10A,(M1),0,2015-04-19,Viol Injunct Domestic Violence,2015-04-19,2015-08-15,,1,15011678MM10A,(M1),2015-11-06,Battery,Risk of Recidivism,5,Medium,2014-03-26,Risk of Violence,5,Medium,2014-03-26,2014-06-18,2014-07-11,0,37,84,0,1\r\n4083,giovanni simpson,giovanni,simpson,2013-05-14,Male,1992-07-31,23,Less than 25,Other,0,8,0,0,2,,,,11012675MM10A,,2013-05-13,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-14,Risk of Violence,7,Medium,2013-05-14,,,2,0,1053,0,0\r\n4084,evans sainvil,evans,sainvil,2013-04-22,Male,1985-05-13,30,25 - 45,African-American,0,9,1,0,10,0,2013-04-22 12:52:54,2013-07-25 06:28:53,13005734CF10A,,2013-04-22,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-22,Risk of Violence,6,Medium,2013-04-22,2013-07-25,2014-01-30,10,283,1075,0,0\r\n4085,thomas wright,thomas,wright,2013-02-19,Male,1961-01-05,55,Greater than 45,Caucasian,0,3,0,0,1,0,2013-02-19 03:15:37,2013-02-20 01:09:10,13002525CF10A,2013-02-19,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-19,Risk of Violence,2,Low,2013-02-19,2013-07-01,2013-07-09,1,1,132,0,0\r\n4086,andre barrington,andre,barrington,2014-01-24,Male,1989-06-12,26,25 - 45,African-American,0,10,0,0,13,0,2014-01-24 01:47:58,2014-01-31 09:03:31,14001369MM10A,2014-01-23,,1,M,Battery,1,14001105MM30A,(M1),,2014-06-27,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,10,High,2014-01-24,Risk of Violence,10,High,2014-01-24,2014-05-04,2014-05-09,13,7,100,0,1\r\n4087,tara bostick,tara,bostick,2014-03-03,Female,1974-06-11,41,25 - 45,African-American,0,6,1,0,6,-65,2013-12-28 06:57:04,2013-12-29 02:16:19,13023904MM10A,2013-12-28,,65,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-03,Risk of Violence,2,Low,2014-03-03,2013-12-28,2013-12-29,6,0,760,0,0\r\n4088,matthew moore,matthew,moore,2013-02-14,Male,1981-03-01,35,25 - 45,African-American,0,3,0,0,0,0,2013-02-14 02:05:55,2013-02-15 01:58:22,13002333CF10A,2013-02-14,,0,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-14,Risk of Violence,1,Low,2013-02-14,2013-02-14,2013-02-15,0,1,1142,0,0\r\n4098,casey times,casey,times,2014-04-28,Male,1990-01-12,26,25 - 45,African-American,0,4,0,0,4,-73,2014-02-14 04:56:04,2014-04-28 12:24:21,14002109CF10A,2014-02-13,,74,F,Robbery Sudd Snatch No Weapon,1,15004670CF10A,(F3),0,2015-04-09,Poss Pyrrolidinovalerophenone,2015-04-09,2015-07-24,,0,,,,,Risk of Recidivism,4,Low,2014-04-28,Risk of Violence,5,Medium,2014-04-28,2014-08-22,2014-09-17,4,0,116,0,1\r\n4099,travon burton,travon,burton,2014-02-19,Male,1995-08-02,20,Less than 25,African-American,0,4,0,0,1,-22,2014-01-28 12:36:10,2014-01-29 01:59:17,14001563MM10A,2014-01-28,,22,M,Prowling/Loitering,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-19,Risk of Violence,6,Medium,2014-02-19,2014-01-28,2014-01-29,1,0,772,0,0\r\n4100,michael carrier,michael,carrier,2013-01-22,Male,1991-11-19,24,Less than 25,Caucasian,0,8,0,0,3,-1,2013-01-21 03:56:17,2013-01-30 02:19:32,13001401MM10A,2013-01-21,,1,M,Disorderly Conduct,1,13007421CF10A,(F3),0,2013-05-24,Obstruct Fire Equipment,2013-05-24,2013-06-04,,0,,,,,Risk of Recidivism,8,High,2013-01-22,Risk of Violence,7,Medium,2013-01-22,2013-05-24,2013-06-04,3,8,122,1,1\r\n4101,dorron tate,dorron,tate,2013-09-25,Male,1985-04-04,31,25 - 45,African-American,0,10,2,0,8,-1,2013-09-24 10:11:44,2013-09-28 05:02:49,13018231MM10A,2013-09-24,,1,M,Battery,1,14025291TC10A,(M2),0,2014-07-10,Susp Drivers Lic 1st Offense,2014-07-10,2014-07-11,,1,15003600CF10A,(F3),2015-01-20,Felony Battery (Dom Strang),Risk of Recidivism,10,High,2013-09-25,Risk of Violence,10,High,2013-09-25,2014-07-10,2014-07-11,8,3,288,1,1\r\n4102,dequontra perdue,dequontra,perdue,2013-05-24,Male,1993-07-31,22,Less than 25,African-American,0,9,1,0,2,,,,11013456CF10A,,2013-05-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-24,Risk of Violence,7,Medium,2013-05-24,,,2,0,1043,0,0\r\n4104,wyche cardal,wyche,cardal,2014-02-15,Male,1960-10-23,55,Greater than 45,African-American,0,1,0,0,0,-1,2014-02-14 09:24:35,2014-02-16 03:37:44,14002116CF10A,2014-02-14,,1,F,Pos Cannabis W/Intent Sel/Del,1,14006837CF10A,(F3),,2014-05-14,Possession of Cannabis,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-15,Risk of Violence,1,Low,2014-02-15,2014-02-14,2014-02-16,0,1,88,1,1\r\n4105,elliot alvarado,elliot,alvarado,2014-05-19,Male,1982-08-02,33,25 - 45,Caucasian,0,9,0,0,7,-1,2014-05-18 12:59:59,2014-05-19 08:39:12,14006919CF10A,2014-05-18,,1,F,Neglect Child / No Bodily Harm,1,14011974CF10A,(M1),0,2014-09-02,Viol Injunct Domestic Violence,2014-09-02,2014-10-03,,1,14011974CF10A,(F7),2014-09-02,Burglary Conveyance Assault/Bat,Risk of Recidivism,9,High,2014-05-19,Risk of Violence,9,High,2014-05-19,2014-09-02,2014-10-03,7,0,106,1,1\r\n4106,steven adams,steven,adams,2014-01-18,Male,1971-05-29,44,25 - 45,Caucasian,0,6,0,0,6,-1,2014-01-17 05:32:07,2014-10-14 06:07:45,12001442CF10A,,2014-01-17,1,F,arrest case no charge,1,15007695MM10A,(M1),,2015-07-19,Battery,,,,1,15007695MM10A,(M1),2015-07-19,Battery,Risk of Recidivism,6,Medium,2014-01-18,Risk of Violence,4,Low,2014-01-18,2014-10-14,2015-02-25,6,403,547,1,1\r\n4108,craig johnson,craig,johnson,2013-02-06,Male,1974-11-09,41,25 - 45,African-American,0,9,0,0,25,-1,2013-02-05 05:31:42,2013-08-10 05:00:46,13001804CF10A,2013-02-05,,1,F,Possession of Cocaine,1,14014277MM10A,(M1),0,2014-09-27,Battery,2014-09-27,2014-10-29,,1,14014277MM10A,(M1),2014-09-27,Battery,Risk of Recidivism,9,High,2013-02-06,Risk of Violence,9,High,2013-02-06,2013-11-25,2014-07-25,25,185,292,0,1\r\n4111,willie ross,willie,ross,2014-01-07,Male,1960-02-17,56,Greater than 45,African-American,0,8,0,0,9,0,2014-01-07 12:09:17,2014-01-08 04:07:24,05034850TC10A,,2006-10-12,2644,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-01-07,Risk of Violence,5,Medium,2014-01-07,2014-01-07,2014-01-08,9,1,815,0,0\r\n4112,damian levy,damian,levy,2013-09-05,Male,1995-04-18,21,Less than 25,African-American,0,3,0,0,1,-10,2013-08-26 06:22:19,2013-08-28 11:07:09,13012050CF10A,2013-08-26,,10,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-05,Risk of Violence,6,Medium,2013-09-05,2013-08-26,2013-08-28,1,0,939,0,0\r\n4116,dion hawkins,dion,hawkins,2013-03-06,Male,1979-05-24,36,25 - 45,African-American,0,2,0,0,1,550,2014-09-07 07:22:21,2015-04-14 08:11:29,12005033CF10A,,2012-03-21,350,F,arrest case no charge,1,13010459CF10A,(F3),509,2013-04-16,Grand Theft In The 3Rd Degree,2014-09-07,2015-04-14,,0,,,,,Risk of Recidivism,2,Low,2013-03-06,Risk of Violence,4,Low,2013-03-06,2015-04-14,2020-01-01,1,0,41,1,1\r\n4117,inger kirkeleit,inger,kirkeleit,2013-02-21,Female,1968-01-21,48,Greater than 45,Caucasian,0,1,0,0,1,0,2013-02-21 12:21:36,2013-02-22 01:04:45,13003613MM10A,2013-02-20,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-21,Risk of Violence,1,Low,2013-02-21,2013-02-21,2013-02-22,1,1,1135,0,0\r\n4118,richard aguilera,richard,aguilera,2013-01-16,Male,1988-10-27,27,25 - 45,Caucasian,0,6,0,0,6,117,2013-05-13 04:26:48,2013-05-16 06:26:43,12009514CF10A,,2012-05-31,230,F,arrest case no charge,1,15054006TC40A,(M2),,2015-09-10,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-16,Risk of Violence,5,Medium,2013-01-16,2013-05-13,2013-05-16,6,0,117,0,1\r\n4119,juan garcia,juan,garcia,2013-04-04,Male,1960-02-02,56,Greater than 45,Caucasian,0,6,0,0,7,-1,2013-04-03 04:08:42,2013-10-14 08:41:24,13005986CF10A,2013-04-03,,1,F,Felony Battery w/Prior Convict,1,13005979CF10A,(F3),349,2013-04-24,Grand Theft in the 3rd Degree,2014-04-08,2014-04-28,,0,,,,,Risk of Recidivism,6,Medium,2013-04-04,Risk of Violence,8,High,2013-04-04,2013-04-03,2013-10-14,7,0,20,1,1\r\n4120,sergio rastelli,sergio,rastelli,2013-10-22,Male,1976-06-08,39,25 - 45,Caucasian,0,1,0,0,2,-26,2013-09-26 06:13:26,2013-09-29 02:36:41,13013553CF10A,2013-09-26,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-09-26,2013-09-29,2,0,892,0,0\r\n4121,tiago dossantos,tiago,dossantos,2013-01-26,Male,1985-01-06,31,25 - 45,Hispanic,0,2,0,0,0,-1,2013-01-25 11:48:14,2013-01-27 04:00:15,13001223CF10A,2013-01-25,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-26,Risk of Violence,2,Low,2013-01-26,2013-01-25,2013-01-27,0,1,1161,0,0\r\n4122,angelica garcia,angelica,garcia,2013-04-09,Female,1991-03-28,25,25 - 45,Caucasian,0,6,0,0,0,-1,2013-04-08 11:29:18,2013-04-09 08:33:10,13005108CF10A,2013-04-08,,1,F,Abuse Without Great Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-09,Risk of Violence,4,Low,2013-04-09,2013-04-08,2013-04-09,0,0,1088,0,0\r\n4123,kenneth kiester,kenneth,kiester,2013-12-17,Male,1965-01-13,51,Greater than 45,Caucasian,0,1,0,0,1,-83,2013-09-25 07:10:01,2013-09-28 02:10:00,13012734CF10A,,2013-09-25,83,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-17,Risk of Violence,1,Low,2013-12-17,2013-09-25,2013-09-28,1,0,836,0,0\r\n4125,ebony mcphee,ebony,mcphee,2013-11-07,Female,1987-10-04,28,25 - 45,African-American,0,5,0,0,3,-16,2013-10-22 07:20:56,2013-11-07 12:54:50,13014757CF10A,2013-10-22,,16,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-07,Risk of Violence,4,Low,2013-11-07,2013-10-22,2013-11-07,3,0,876,0,0\r\n4126,michael simpson,michael,simpson,2013-12-14,Male,1985-08-11,30,25 - 45,African-American,0,2,0,0,0,-1,2013-12-13 10:27:58,2013-12-14 08:35:08,13017269CF10A,2013-12-13,,1,F,Possession of Oxycodone,1,15000490MM10A,(M1),,2014-12-17,Battery,,,,1,15000490MM10A,(M1),2014-12-17,Battery,Risk of Recidivism,2,Low,2013-12-14,Risk of Violence,2,Low,2013-12-14,2013-12-13,2013-12-14,0,0,368,1,1\r\n4127,raven harrison,raven,harrison,2014-07-07,Female,1996-06-25,19,Less than 25,African-American,0,8,0,0,0,-1,2014-07-06 03:06:43,2014-07-07 07:43:34,14010364MM10A,2014-07-06,,1,M,Exposes Culpable Negligence,1,15007005CF10A,(F3),0,2015-05-29,Child Abuse,2015-05-29,2015-05-31,,1,15007005CF10A,(F3),2015-05-29,Child Abuse,Risk of Recidivism,8,High,2014-07-07,Risk of Violence,8,High,2014-07-07,2015-05-29,2015-05-31,0,0,326,1,1\r\n4128,jamarc polynice,jamarc,polynice,2013-11-27,Male,1995-08-10,20,Less than 25,African-American,0,4,0,0,0,-1,2013-11-26 01:39:08,2013-11-27 07:41:59,13022233MM10A,2013-11-26,,1,M,Battery,1,14001734MM40A,(M1),,2014-04-16,Possess Drug Paraphernalia,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-27,Risk of Violence,7,Medium,2013-11-27,2014-05-12,2014-05-12,0,0,140,1,1\r\n4130,barney arnold,barney,arnold,2014-01-24,Male,1958-06-24,57,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-23 11:57:32,2014-01-28 06:37:34,14000999CF10A,2014-01-23,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-24,Risk of Violence,1,Low,2014-01-24,2014-01-23,2014-01-28,0,4,798,0,0\r\n4134,roger raysor,roger,raysor,2013-02-05,Male,1965-01-26,51,Greater than 45,African-American,0,6,0,0,8,-1,2013-02-04 05:27:16,2013-02-05 01:48:26,13002542MM10A,2013-02-04,,1,M,Petit Theft $100- $300,1,13003854CF10A,(F3),0,2013-03-16,Felony Petit Theft,2013-03-16,2013-03-17,,0,,,,,Risk of Recidivism,6,Medium,2013-02-05,Risk of Violence,7,Medium,2013-02-05,2013-03-16,2013-03-17,8,0,39,1,1\r\n4135,ryan jones,ryan,jones,2014-02-03,Male,1988-07-18,27,25 - 45,African-American,0,3,0,0,5,0,2014-02-03 04:18:39,2014-02-06 09:23:08,14001514CF10A,2014-02-03,,0,F,Possession Of Methamphetamine,1,14005642MM10A,(M1),0,2014-04-02,Resist/Obstruct W/O Violence,2014-04-02,2014-04-03,,0,,,,,Risk of Recidivism,3,Low,2014-02-03,Risk of Violence,4,Low,2014-02-03,2014-04-02,2014-04-03,5,3,58,1,1\r\n4136,charles rigg,charles,rigg,2014-02-20,Male,1990-01-13,26,25 - 45,African-American,0,5,0,2,0,-1,2014-02-19 05:20:26,2014-02-20 02:30:11,14002357CF10A,2014-02-19,,1,F,Traffick Amphetamine 28g><200g,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-20,Risk of Violence,2,Low,2014-02-20,2014-02-19,2014-02-20,0,0,771,0,0\r\n4137,richard herron,richard,herron,2013-04-09,Male,1992-12-21,23,Less than 25,Caucasian,0,8,0,0,3,-1,2013-04-08 11:23:26,2013-05-14 07:21:35,13006764MO10A,2013-04-08,,1,M,Petit Theft,1,13010412CF10A,(F3),,2013-06-17,Att Burgl Struc/Conv Dwel/Occp,,,,0,,,,,Risk of Recidivism,8,High,2013-04-09,Risk of Violence,5,Medium,2013-04-09,2013-04-08,2013-05-14,3,35,69,1,1\r\n4139,joseph levins,joseph,levins,2014-06-01,Male,1981-03-16,35,25 - 45,African-American,0,8,1,0,14,-1,2014-05-31 12:32:55,2014-06-01 09:31:08,14008705MM10A,2014-05-31,,1,M,Battery,1,15016457CF10A,(F3),,2015-12-25,Burglary Conveyance Unoccup,,,,0,,,,,Risk of Recidivism,8,High,2014-06-01,Risk of Violence,5,Medium,2014-06-01,2014-05-31,2014-06-01,14,0,572,1,1\r\n4140,tammi williams,tammi,williams,2013-04-25,Female,1975-01-06,41,25 - 45,Caucasian,0,1,0,0,1,,,,12015700MM10A,2011-05-26,,700,M,Compulsory Sch Attnd Violation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-25,Risk of Violence,1,Low,2013-04-25,,,1,0,1072,0,0\r\n4141,chad williams,chad,williams,2013-02-20,Male,1979-01-05,37,25 - 45,African-American,0,6,0,0,5,-29,2013-01-22 04:11:17,2013-01-22 05:54:26,13001015CF10A,2013-01-22,,29,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-20,Risk of Violence,4,Low,2013-02-20,2013-01-22,2013-01-22,5,0,1136,0,0\r\n4143,eric floyd,eric,floyd,2013-12-28,Male,1967-07-12,48,Greater than 45,African-American,0,1,0,0,0,0,2013-12-28 05:20:56,2013-12-30 09:31:15,13017902CF10A,2013-12-28,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-28,Risk of Violence,1,Low,2013-12-28,2013-12-28,2013-12-30,0,2,825,0,0\r\n4144,herman davis,herman,davis,2013-03-22,Male,1994-12-09,21,Less than 25,African-American,0,9,0,1,0,-1,2013-03-21 06:33:48,2013-03-23 07:11:35,13004111CF10A,2013-03-21,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-22,Risk of Violence,9,High,2013-03-22,2013-03-21,2013-03-23,0,1,1106,0,0\r\n4145,devante nelson,devante,nelson,2014-11-10,Male,1996-09-02,19,Less than 25,African-American,3,10,0,0,3,74,2015-01-23 11:28:30,2015-10-24 08:51:07,14003038CF10A,,2014-03-03,252,F,arrest case no charge,1,15007477CF10A,(F2),13,2015-01-10,Burglary Unoccupied Dwelling,2015-01-23,2015-10-24,,0,,,,,Risk of Recidivism,10,High,2014-11-10,Risk of Violence,10,High,2014-11-10,2015-01-23,2015-10-24,3,0,61,1,1\r\n4146,maurice walker,maurice,walker,2014-05-16,Male,1994-06-06,21,Less than 25,African-American,0,5,0,0,1,-31,2014-04-15 11:07:02,2014-05-16 10:56:38,14005271CF10A,2014-04-15,,31,F,Aggravated Assault W/Dead Weap,1,15066900TC40A,(M2),96,2015-10-16,Operating W/O Valid License,2016-01-20,2016-02-28,,0,,,,,Risk of Recidivism,5,Medium,2014-05-16,Risk of Violence,5,Medium,2014-05-16,2014-12-24,2015-03-20,1,0,222,0,1\r\n4152,jorge aragon,jorge,aragon,2013-05-09,Male,1986-08-08,29,25 - 45,Hispanic,0,2,0,1,1,,,,12021485MM10A,2012-10-16,,205,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-09,Risk of Violence,2,Low,2013-05-09,,,1,0,1058,0,0\r\n4154,otis shelly,otis,shelly,2013-11-25,Male,1964-02-18,52,Greater than 45,African-American,0,1,0,0,1,-21,2013-11-04 12:37:14,2013-11-14 09:19:52,13002077MM10A,,2013-11-03,22,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,2013-11-04,2013-11-14,1,0,858,0,0\r\n4155,clinton jones,clinton,jones,2013-09-21,Male,1992-05-11,23,Less than 25,African-American,0,9,0,0,5,256,2014-06-04 11:11:52,2014-06-06 03:17:00,13013304CF10A,2013-09-21,,0,F,\"Poss3,4 Methylenedioxymethcath\",1,14007788CF10A,(F3),39,2014-04-26,Burglary Conveyance Unoccup,2014-06-04,2014-06-06,,0,,,,,Risk of Recidivism,9,High,2013-09-21,Risk of Violence,9,High,2013-09-21,2015-02-12,2015-10-29,5,0,217,1,1\r\n4157,terrell mccrea,terrell,mccrea,2014-08-20,Male,1993-11-18,22,Less than 25,African-American,0,4,0,0,0,-1,2014-08-19 12:59:44,2014-08-20 03:50:03,14011335CF10A,2014-08-19,,1,F,Possession of Cocaine,1,14012934MM10A,(M1),0,2014-08-28,Trespass Other Struct/Conve,2014-08-28,2014-08-29,,0,,,,,Risk of Recidivism,4,Low,2014-08-20,Risk of Violence,5,Medium,2014-08-20,2014-08-28,2014-08-29,0,0,8,1,1\r\n4158,mark girlie,mark,girlie,2014-02-04,Male,1996-10-09,19,Less than 25,African-American,1,10,0,1,1,-40,2013-12-26 11:14:21,2014-01-31 06:41:01,13017159CF10A,,2013-12-26,40,F,arrest case no charge,1,15006535CF10A,(F3),0,2015-05-20,Attempted Escape,2015-05-20,2015-06-21,,1,15013989CF10A,(F3),2015-10-27,Robbery Sudd Snatch No Weapon,Risk of Recidivism,10,High,2014-02-04,Risk of Violence,10,High,2014-02-04,2014-04-09,2014-05-07,1,0,64,0,1\r\n4159,geoffrey pastor,geoffrey,pastor,2014-04-13,Male,1974-08-07,41,25 - 45,Caucasian,0,2,0,0,1,-1,2014-04-12 07:51:24,2014-04-14 03:01:05,14005151CF10A,2014-04-12,,1,F,Burglary Conveyance Unoccup,1,14010152MM10A,(M2),0,2014-07-01,DWLS Canceled Disqul 1st Off,2014-07-01,2014-07-01,,0,,,,,Risk of Recidivism,2,Low,2014-04-13,Risk of Violence,1,Low,2014-04-13,2014-07-01,2014-07-01,1,1,79,0,1\r\n4160,dominique dent,dominique,dent,2013-01-31,Female,1991-01-22,25,25 - 45,Caucasian,0,5,0,0,1,-1,2013-01-30 11:27:35,2013-01-31 08:24:37,13002183MM10A,2013-01-30,,1,M,Battery,1,13052541TC20A,(M2),,2013-08-21,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-31,Risk of Violence,4,Low,2013-01-31,2013-01-30,2013-01-31,1,0,202,1,1\r\n4161,van lewis,van,lewis,2013-03-04,Male,1961-05-27,54,Greater than 45,African-American,0,1,0,0,0,0,2013-03-04 03:35:08,2013-03-04 07:18:36,13004426MM10A,2013-03-04,,0,M,Battery,1,15010370CF10A,(M1),374,2014-12-26,Battery,2016-01-04,2016-01-06,,1,15010370CF10A,(F3),2014-12-26,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2016-01-04,2016-01-06,0,0,662,1,1\r\n4162,ryan moultrie,ryan,moultrie,2014-12-18,Male,1990-11-22,25,25 - 45,African-American,4,10,0,0,13,-8,2014-12-10 01:16:50,2015-01-15 09:19:25,14016407CF10A,,2014-12-10,8,F,arrest case no charge,1,15004699CF10A,(M1),0,2015-04-09,Resist/Obstruct W/O Violence,2015-04-09,2015-09-16,,0,,,,,Risk of Recidivism,10,High,2014-12-18,Risk of Violence,9,High,2014-12-18,2015-04-09,2015-09-16,13,28,112,1,1\r\n4163,tyra vanzant,tyra,vanzant,2013-04-21,Female,1985-10-26,30,25 - 45,Caucasian,0,4,0,0,0,,,,,,,,M,,1,13062200TC40A,(M2),0,2013-07-02,Operating W/O Valid License,2013-07-02,2013-09-04,,0,,,,,Risk of Recidivism,4,Low,2013-04-21,Risk of Violence,2,Low,2013-04-21,2013-04-23,2013-05-01,0,0,2,0,1\r\n4164,nicole magnus,nicole,magnus,2013-01-10,Female,1975-11-12,40,25 - 45,Caucasian,0,4,0,0,4,-1,2013-01-09 03:40:18,2013-01-11 06:28:12,13000361CF10A,2013-01-09,,1,F,Possession of Cocaine,1,15007423CF10A,(F3),0,2015-06-07,Possession of Cocaine,2015-06-07,2015-07-11,,0,,,,,Risk of Recidivism,4,Low,2013-01-10,Risk of Violence,1,Low,2013-01-10,2014-07-28,2014-09-23,4,1,564,0,0\r\n4165,eric mitchell,eric,mitchell,2013-04-13,Male,1993-11-23,22,Less than 25,African-American,0,7,0,0,0,0,2013-04-13 06:02:46,2013-04-24 09:03:40,13005339CF10A,2013-04-13,,0,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-13,Risk of Violence,6,Medium,2013-04-13,2013-04-13,2013-04-24,0,11,1084,0,0\r\n4168,christopher amity,christopher,amity,2013-08-03,Male,1966-02-11,50,Greater than 45,Caucasian,0,4,0,0,10,-1,2013-08-02 11:21:02,2013-08-03 07:59:48,13010919CF10A,2013-08-02,,1,F,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-03,Risk of Violence,2,Low,2013-08-03,2013-08-02,2013-08-03,10,0,972,0,0\r\n4169,joseph sisto,joseph,sisto,2013-01-07,Male,1981-03-26,35,25 - 45,Caucasian,0,3,0,0,2,0,2013-01-07 02:38:57,2013-01-07 09:00:03,13000389MM10A,2013-01-07,,0,M,Battery,1,15007671MM10A,(M2),0,2015-07-18,Disorderly Intoxication,2015-07-18,2015-07-18,,0,,,,,Risk of Recidivism,3,Low,2013-01-07,Risk of Violence,4,Low,2013-01-07,2015-07-18,2015-07-18,2,0,922,0,0\r\n4170,timothey shimko,timothey,shimko,2013-05-01,Male,1988-04-15,28,25 - 45,Caucasian,0,9,0,0,7,-1,2013-04-30 05:18:55,2013-05-01 09:47:05,13006192CF10A,2013-04-30,,1,F,Felony Battery,1,13012768CF10A,(F3),18,2013-06-09,Grand Theft (Motor Vehicle),2013-06-27,2013-06-30,,0,,,,,Risk of Recidivism,9,High,2013-05-01,Risk of Violence,10,High,2013-05-01,2013-09-21,2013-09-22,7,0,39,1,1\r\n4171,denzel lewis,denzel,lewis,2014-02-02,Male,1994-06-29,21,Less than 25,African-American,0,7,0,0,0,-1,2014-02-01 03:12:15,2014-02-03 08:44:42,14001445CF10A,2014-02-01,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-02,Risk of Violence,6,Medium,2014-02-02,2014-02-01,2014-02-03,0,1,789,0,0\r\n4172,kerisha gardner,kerisha,gardner,2014-11-18,Female,1977-09-26,38,25 - 45,Other,0,4,0,0,6,-34,2014-10-15 06:45:23,2014-11-11 02:19:02,14013922CF10A,2014-10-15,,34,F,Burglary Unoccupied Dwelling,1,14018163MM10A,(M1),0,2014-12-29,Viol Injunct Domestic Violence,2014-12-29,2015-05-27,,0,,,,,Risk of Recidivism,4,Low,2014-11-18,Risk of Violence,1,Low,2014-11-18,2014-12-29,2015-05-27,6,0,41,1,1\r\n4178,ocon sanderns,ocon,sanderns,2013-01-10,Male,1988-04-30,27,25 - 45,Caucasian,0,3,0,0,0,-1,2013-01-09 04:23:59,2013-01-14 03:21:25,13000375CF10A,2013-01-09,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-10,Risk of Violence,4,Low,2013-01-10,2013-01-09,2013-01-14,0,4,1177,0,0\r\n4179,dominick stafford,dominick,stafford,2013-12-21,Male,1994-04-07,22,Less than 25,African-American,0,3,0,0,0,0,2013-12-21 12:23:43,2013-12-21 09:34:56,13017592CF10A,2013-12-20,,1,F,Aggravated Assault W/Dead Weap,1,15003299CF10A,(F3),0,2015-03-11,Possession Of Alprazolam,2015-03-11,2015-03-11,,0,,,,,Risk of Recidivism,3,Low,2013-12-21,Risk of Violence,5,Medium,2013-12-21,2015-03-11,2015-03-11,0,0,445,0,1\r\n4180,tiffany martinez,tiffany,martinez,2013-04-08,Female,1978-01-26,38,25 - 45,Hispanic,0,9,0,0,20,-1,2013-04-07 07:10:02,2013-04-09 05:16:12,13004994CF10A,2013-04-07,,1,F,Battery on Law Enforc Officer,1,13006243CF10A,(F3),0,2013-05-01,Possession of Cocaine,2013-05-01,2013-08-28,,1,14006707MM10A,(M1),2014-04-22,Battery,Risk of Recidivism,9,High,2013-04-08,Risk of Violence,3,Low,2013-04-08,2013-05-01,2013-08-28,20,1,23,1,1\r\n4181,lucius smith,lucius,smith,2013-10-24,Male,1983-11-04,32,25 - 45,African-American,2,10,0,0,26,-32,2013-09-22 03:03:23,2013-09-23 03:33:44,13013351CF10A,2013-09-22,,32,F,Possession of Cocaine,1,14030871TC10A,(M2),0,2014-08-24,Susp Drivers Lic 1st Offense,2014-08-24,2014-08-29,,0,,,,,Risk of Recidivism,10,High,2013-10-24,Risk of Violence,8,High,2013-10-24,2013-12-27,2014-06-25,26,0,64,0,1\r\n4182,jerod mcdade,jerod,mcdade,2013-09-04,Male,1984-03-27,32,25 - 45,Caucasian,0,5,0,0,0,0,2013-09-04 02:13:30,2013-09-11 04:08:12,13012496CF10A,2013-09-04,,0,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-04,Risk of Violence,2,Low,2013-09-04,2013-09-04,2013-09-11,0,7,940,0,0\r\n4183,brian daly,brian,daly,2013-08-22,Male,1956-05-30,59,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-21 04:14:52,2013-08-22 08:38:16,13011738CF10A,2013-08-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-22,Risk of Violence,1,Low,2013-08-22,2013-08-21,2013-08-22,0,0,953,0,0\r\n4184,christopher mcdonald,christopher,mcdonald,2014-11-14,Male,1985-12-25,30,25 - 45,Caucasian,0,10,0,0,19,57,2015-01-10 01:52:59,2015-04-02 05:31:10,14012162CF10A,2014-09-06,,69,F,Possession of Cocaine,1,15006918CF10A,(F3),0,2015-05-27,Felony Petit Theft,2015-05-27,2015-05-31,,0,,,,,Risk of Recidivism,10,High,2014-11-14,Risk of Violence,3,Low,2014-11-14,2015-01-10,2015-04-02,19,0,57,0,1\r\n4185,walder saintelus,walder,saintelus,2014-01-26,Male,1996-01-06,20,Less than 25,Other,0,6,0,0,0,-1,2014-01-25 09:23:28,2014-01-26 08:05:12,14001400MM10A,2014-01-25,,1,M,Battery,1,14014725MM10A,(M1),0,2014-10-07,Possess Cannabis/20 Grams Or Less,2014-10-07,2014-10-08,,0,,,,,Risk of Recidivism,6,Medium,2014-01-26,Risk of Violence,9,High,2014-01-26,2014-10-07,2014-10-08,0,0,254,1,1\r\n4186,sidney perkins,sidney,perkins,2013-04-30,Male,1956-11-21,59,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-30 02:41:16,2013-04-30 07:55:38,13006208CF10A,2013-04-30,,0,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-30,Risk of Violence,1,Low,2013-04-30,2013-04-30,2013-04-30,0,0,1067,0,0\r\n4187,sheri kucherick,sheri,kucherick,2014-02-18,Female,1971-10-01,44,25 - 45,Caucasian,0,1,0,0,1,-3,2014-02-15 02:17:57,2014-02-16 08:13:01,14002163CF10A,2014-02-14,,4,F,Battery on Law Enforc Officer,1,14006813MU10A,(M1),0,2014-02-21,DUI - Enhanced,2014-02-21,2014-02-21,,0,,,,,Risk of Recidivism,1,Low,2014-02-18,Risk of Violence,1,Low,2014-02-18,2014-02-21,2014-02-21,1,0,3,0,1\r\n4189,donald carter,donald,carter,2013-01-05,Male,1989-09-27,26,25 - 45,African-American,0,10,1,1,9,-1,2013-01-04 07:51:12,2013-01-06 03:56:38,13000208MM10A,2013-01-04,,1,M,Resist/Obstruct W/O Violence,1,14001049CF10A,(M1),0,2014-01-24,Resist/Obstruct W/O Violence,2014-01-24,2014-02-04,,0,,,,,Risk of Recidivism,10,High,2013-01-05,Risk of Violence,9,High,2013-01-05,2014-01-24,2014-02-04,9,1,384,1,1\r\n4190,bradley newton,bradley,newton,2013-03-06,Male,1986-02-03,30,25 - 45,African-American,0,6,1,0,9,-1,2013-03-05 03:52:57,2013-03-06 09:40:14,13003308CF10A,2013-03-05,,1,F,Driving While License Revoked,1,14004876CF10A,(F3),,2014-04-08,Crim Use of Personal ID Info,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-06,Risk of Violence,3,Low,2013-03-06,2013-03-05,2013-03-06,9,0,398,1,1\r\n4191,vitali kavaliou,vitali,kavaliou,2013-08-07,Female,1981-04-06,35,25 - 45,Caucasian,0,4,0,0,2,,,,13011002CF10A,2013-08-06,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-07,Risk of Violence,2,Low,2013-08-07,,,2,0,968,0,0\r\n4192,leonce jeudy,leonce,jeudy,2013-03-24,Male,1990-08-27,25,25 - 45,African-American,0,8,1,1,3,0,2013-03-24 01:14:35,2013-03-24 10:44:22,13012410TC10A,2013-03-24,,0,M,Susp Drivers Lic 1st Offense,1,13030224TC10A,(M2),0,2013-07-26,Susp Drivers Lic 1st Offense,2013-07-26,2013-07-26,,0,,,,,Risk of Recidivism,8,High,2013-03-24,Risk of Violence,4,Low,2013-03-24,2013-07-26,2013-07-26,3,0,124,0,1\r\n4193,victor osejo,victor,osejo,2013-07-29,Male,1971-06-14,44,25 - 45,Hispanic,0,1,0,0,0,-2,2013-07-27 01:40:29,2013-07-28 02:47:19,13014254MM10A,2013-07-27,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-07-27,2013-07-28,0,0,977,0,0\r\n4194,andrew jones,andrew,jones,2013-03-04,Male,1975-10-14,40,25 - 45,African-American,0,8,0,0,7,129,2013-07-11 12:59:59,2013-08-16 04:40:46,12018428CF10A,2012-12-17,,77,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-04,Risk of Violence,9,High,2013-03-04,2013-07-11,2013-08-16,7,0,129,0,0\r\n4195,miazotiann white,miazotiann,white,2013-07-11,Female,1985-01-19,31,25 - 45,African-American,0,6,0,0,0,-2,2013-07-09 03:27:31,2013-07-11 01:36:23,13013042MM10A,2013-07-06,,5,M,Battery,1,14011470MM10A,(M1),0,2014-07-02,Resist/Obstruct W/O Violence,2014-07-02,2014-11-07,,1,14011470MM10A,(M1),2014-07-02,Battery,Risk of Recidivism,6,Medium,2013-07-11,Risk of Violence,4,Low,2013-07-11,2014-07-02,2014-11-07,0,0,356,1,1\r\n4196,keanne sibblies,keanne,sibblies,2014-01-23,Female,1983-11-17,32,25 - 45,African-American,0,3,0,0,0,-1,2014-01-22 12:13:03,2014-01-23 05:54:47,14000944CF10A,2014-01-22,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-23,Risk of Violence,2,Low,2014-01-23,2014-01-22,2014-01-23,0,0,799,0,0\r\n4198,alonzo lewis,alonzo,lewis,2013-01-28,Male,1978-06-12,37,25 - 45,African-American,0,9,0,0,22,-1,2013-01-27 01:05:30,2013-04-18 11:07:29,12014999CF10A,,2013-01-28,0,F,arrest case no charge,1,14017897TC10A,(M2),,2014-04-14,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,9,High,2013-01-28,Risk of Violence,6,Medium,2013-01-28,2013-01-27,2013-04-18,22,80,441,1,1\r\n4199,sean delegal,sean,delegal,2013-08-22,Male,1993-09-01,22,Less than 25,Caucasian,1,4,0,0,2,-1,2013-08-21 01:46:04,2013-08-22 09:03:13,13011660CF10A,,2013-08-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-22,Risk of Violence,6,Medium,2013-08-22,2014-08-11,2014-12-23,2,0,354,0,0\r\n4202,kevin bynes,kevin,bynes,2014-08-22,Male,1978-03-24,38,25 - 45,African-American,0,6,0,0,8,-1,2014-08-21 09:01:29,2014-08-31 04:44:34,14012626MM10A,2014-08-21,,1,M,Unlaw Use False Name/Identity,1,15001346MM10A,(M2),0,2015-02-02,Disorderly Conduct,2015-02-02,2015-02-04,,0,,,,,Risk of Recidivism,6,Medium,2014-08-22,Risk of Violence,7,Medium,2014-08-22,2015-02-02,2015-02-04,8,9,164,1,1\r\n4203,jason grillo,jason,grillo,2014-02-15,Male,1981-10-07,34,25 - 45,Caucasian,0,4,0,0,2,-1,2014-02-14 09:45:03,2014-02-17 01:11:31,11013444CF10A,,2014-02-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-15,Risk of Violence,2,Low,2014-02-15,2014-02-14,2014-02-17,2,2,776,0,0\r\n4204,james dameus,james,dameus,2013-12-25,Male,1985-06-09,30,25 - 45,African-American,0,3,1,0,7,-1,2013-12-24 06:07:41,2013-12-26 03:11:34,13017747CF10A,,2013-12-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-25,Risk of Violence,2,Low,2013-12-25,2013-12-24,2013-12-26,7,1,828,0,0\r\n4205,tara helms,tara,helms,2014-06-01,Female,1977-06-04,38,25 - 45,Caucasian,0,4,0,0,0,-1,2014-05-31 07:26:28,2014-06-01 07:53:06,14007554CF10A,2014-05-31,,1,F,Resist Officer w/Violence,1,14088580TC30A,(M1),,2014-10-18,Temporary Tag Violation,,,,0,,,,,Risk of Recidivism,4,Low,2014-06-01,Risk of Violence,2,Low,2014-06-01,2014-05-31,2014-06-01,0,0,139,1,1\r\n4207,michael barber,michael,barber,2013-03-09,Male,1979-12-31,36,25 - 45,African-American,0,10,0,0,10,-1,2013-03-08 10:20:39,2013-04-10 05:02:44,13003464CF10A,2013-03-08,,1,F,Poss of Cocaine W/I/D/S 1000FT Park,1,14004546CF10A,(F3),0,2014-04-01,Possession of Cocaine,2014-04-01,2014-07-02,,0,,,,,Risk of Recidivism,10,High,2013-03-09,Risk of Violence,5,Medium,2013-03-09,2013-06-13,2013-06-14,10,32,96,0,1\r\n4211,nesler dumera,nesler,dumera,2013-09-06,Male,1969-08-24,46,Greater than 45,Other,0,1,0,0,0,0,2013-09-06 01:01:48,2013-09-06 09:07:05,13012561CF10A,2013-09-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-06,2013-09-06,0,0,938,0,0\r\n4212,kyle awan,kyle,awan,2014-06-05,Male,1993-10-20,22,Less than 25,Native American,0,4,0,2,0,,,,,,,,M,,1,15000144MM30A,(M2),,2015-01-09,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2014-06-05,Risk of Violence,4,Low,2014-06-05,2014-07-23,2014-07-24,0,0,48,0,1\r\n4217,peter borkowicz,peter,borkowicz,2014-06-07,Male,1980-07-18,35,25 - 45,Caucasian,0,5,0,0,2,0,2014-06-07 03:26:40,2014-06-08 03:06:00,14007890CF10A,2014-06-07,,0,F,Battery On Fire Fighter,1,14012344MM10A,(M1),1,2014-08-15,Battery,2014-08-16,2014-08-17,,1,14012344MM10A,(M1),2014-08-15,Battery,Risk of Recidivism,5,Medium,2014-06-07,Risk of Violence,4,Low,2014-06-07,2014-06-07,2014-06-08,2,1,69,1,1\r\n4219,jamaal alleyne,jamaal,alleyne,2013-01-13,Male,1981-01-12,35,25 - 45,African-American,0,1,0,0,0,-1,2013-01-12 01:36:43,2013-01-13 01:22:39,13000566CF10A,2013-01-12,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0\r\n4220,marc cherisnord,marc,cherisnord,2014-08-20,Male,1995-09-04,20,Less than 25,Other,0,6,0,0,1,-1,2014-08-19 05:30:20,2014-08-20 09:15:55,14011343CF10A,2014-08-19,,1,F,Possession Burglary Tools,1,14001885MM30A,(M2),,2014-11-26,Petit Theft,,,,0,,,,,Risk of Recidivism,6,Medium,2014-08-20,Risk of Violence,6,Medium,2014-08-20,2014-08-19,2014-08-20,1,0,98,1,1\r\n4223,shatara brown,shatara,brown,2013-02-12,Female,1985-11-10,30,25 - 45,African-American,0,9,0,0,9,-1,2013-02-11 03:29:53,2013-10-12 05:40:21,13002100CF10A,2013-02-11,,1,F,Felony Petit Theft,1,14007775MM10A,(M1),0,2014-05-12,Battery,2014-05-12,2014-06-03,,1,14007775MM10A,(M1),2014-05-12,Battery,Risk of Recidivism,9,High,2013-02-12,Risk of Violence,5,Medium,2013-02-12,2014-05-12,2014-06-03,9,242,454,1,1\r\n4225,marce charles,marce,charles,2013-10-17,Male,1982-03-25,34,25 - 45,African-American,0,9,0,0,16,-1,2013-10-16 08:33:55,2013-10-17 08:51:45,13014475CF10A,2013-10-16,,1,F,Fleeing or Eluding a LEO,1,14016123MM10A,(M1),0,2014-11-09,Unlaw Use False Name/Identity,2014-11-09,2014-11-09,,0,,,,,Risk of Recidivism,9,High,2013-10-17,Risk of Violence,6,Medium,2013-10-17,2014-11-09,2014-11-09,16,0,388,0,1\r\n4226,mathew breeden,mathew,breeden,2013-07-24,Male,1984-12-03,31,25 - 45,Caucasian,0,4,0,0,3,-19,2013-07-05 01:46:08,2013-07-06 09:09:44,13009450CF10A,2013-07-05,,19,F,Possession of Hydromorphone,1,13015405CF10A,(F3),0,2013-11-05,Possession Of Heroin,2013-11-05,2014-01-10,,0,,,,,Risk of Recidivism,4,Low,2013-07-24,Risk of Violence,2,Low,2013-07-24,2013-11-05,2014-01-10,3,0,104,1,1\r\n4227,jose pantaleon,jose,pantaleon,2013-11-25,Male,1983-07-24,32,25 - 45,Hispanic,0,1,0,0,0,-1,2013-11-24 05:49:46,2013-11-26 02:16:12,13022076MM10A,2013-11-24,,1,M,Driving Under The Influence,1,14012685CF10A,(F3),0,2014-06-02,Possession Of Methamphetamine,2014-06-02,2014-06-20,,0,,,,,Risk of Recidivism,1,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,2014-06-02,2014-06-20,0,1,189,1,1\r\n4228,thomas fairbrother,thomas,fairbrother,2013-11-28,Male,1985-01-30,31,25 - 45,Caucasian,0,8,1,1,4,0,2013-11-28 02:42:55,2013-11-30 02:26:32,13011876CF10A,,2013-11-28,0,F,arrest case no charge,1,14007947MM10A,(M1),0,2014-05-15,Viol Pretrial Release Dom Viol,2014-05-15,2014-06-12,,1,14016221CF10A,(F7),2014-12-05,Kidnapping / Domestic Violence,Risk of Recidivism,8,High,2013-11-28,Risk of Violence,6,Medium,2013-11-28,2014-05-15,2014-06-12,4,2,168,1,1\r\n4229,thomas papacosmas,thomas,papacosmas,2013-01-12,Male,1993-04-30,22,Less than 25,Caucasian,0,8,1,1,2,-1,2013-01-11 10:15:34,2013-01-23 08:43:18,13000536CF10A,2013-01-11,,1,F,Possession Of Alprazolam,1,13005285CF10A,(F3),0,2013-04-12,Possession Of Alprazolam,2013-04-12,2013-06-26,,0,,,,,Risk of Recidivism,8,High,2013-01-12,Risk of Violence,7,Medium,2013-01-12,2013-04-12,2013-06-26,2,11,90,1,1\r\n4230,anthony gonzalez,anthony,gonzalez,2013-05-24,Male,1985-03-04,31,25 - 45,Hispanic,0,10,0,0,0,-1,2013-05-23 07:29:12,2013-08-12 07:13:27,13007366CF10A,2013-05-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-05-24,Risk of Violence,7,Medium,2013-05-24,2013-05-23,2013-08-12,0,80,1043,0,0\r\n4232,dwight gray,dwight,gray,2013-01-24,Male,1979-06-29,36,25 - 45,African-American,0,5,0,0,5,-1,2013-01-23 03:15:23,2013-01-24 06:43:56,13007417MM10A,2013-01-23,,1,M,Battery,1,13012040CF10A,(F2),0,2013-08-26,Aggravated Battery,2013-08-26,2013-09-26,,1,13012040CF10A,(F2),2013-08-26,Aggravated Battery,Risk of Recidivism,5,Medium,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-08-26,2013-09-26,5,0,214,1,1\r\n4233,andre hamilton,andre,hamilton,2013-01-28,Male,1976-09-22,39,25 - 45,African-American,0,1,0,0,2,-1,2013-01-27 03:53:11,2013-03-15 09:27:18,12059636TC10A,2012-11-11,,78,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-03-15,2,46,1159,0,0\r\n4235,fred martin,fred,martin,2014-11-05,Male,1964-09-05,51,Greater than 45,African-American,0,9,0,0,9,-1,2014-11-04 01:45:03,2014-12-09 09:38:53,14014806CF10A,2014-11-04,,1,F,Possession of Cocaine,1,15011327CF10A,(F3),,2015-09-02,Burglary Conveyance Unoccup,,,,0,,,,,Risk of Recidivism,9,High,2014-11-05,Risk of Violence,5,Medium,2014-11-05,2014-11-04,2014-12-09,9,34,301,1,1\r\n4236,largos stephens,largos,stephens,2014-11-23,Male,1981-01-21,35,25 - 45,African-American,0,2,0,0,7,-1,2014-11-22 04:59:15,2014-11-23 08:06:26,14015755CF10A,2014-11-22,,1,F,Felony Driving While Lic Suspd,1,14044863TC10A,(M1),0,2014-12-02,Opert With Susp DL 2nd Offens,2014-12-02,2014-12-02,,0,,,,,Risk of Recidivism,2,Low,2014-11-23,Risk of Violence,2,Low,2014-11-23,2014-12-02,2014-12-02,7,0,9,0,1\r\n4238,antoine valmyr,antoine,valmyr,2013-05-17,Male,1985-06-13,30,25 - 45,African-American,0,7,0,0,1,213,2013-12-16 02:30:43,2013-12-16 10:36:57,11018891CF10A,2011-11-16,,548,F,Possession Of Alprazolam,1,13017368CF10A,(M1),1,2013-12-15,Possess Drug Paraphernalia,2013-12-16,2013-12-16,,0,,,,,Risk of Recidivism,7,Medium,2013-05-17,Risk of Violence,5,Medium,2013-05-17,2015-05-20,2015-05-27,1,0,212,1,1\r\n4239,derek modia,derek,modia,2013-08-28,Male,1981-02-06,35,25 - 45,Hispanic,0,3,0,1,0,-1,2013-08-27 08:38:36,2013-08-29 05:49:45,13012098CF10A,2013-08-27,,1,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-28,Risk of Violence,2,Low,2013-08-28,2013-08-27,2013-08-29,0,1,947,0,0\r\n4240,asefa penha,asefa,penha,2013-05-24,Male,1993-03-21,23,Less than 25,Hispanic,0,2,0,0,0,-1,2013-05-23 06:57:50,2013-05-24 01:55:29,13007360CF10A,2013-05-23,,1,F,Driving While License Revoked,1,14016868TC20A,(M2),,2014-02-28,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-24,Risk of Violence,4,Low,2013-05-24,2013-05-23,2013-05-24,0,0,280,1,1\r\n4244,jamie marchessault,jamie,marchessault,2013-08-06,Male,1973-02-11,43,25 - 45,Caucasian,0,1,0,0,3,-54,2013-06-13 01:51:49,2013-07-13 08:02:19,13011282MM10A,2013-06-13,,54,M,Battery,1,13072488TC40A,(M2),,2013-10-15,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-06,Risk of Violence,1,Low,2013-08-06,2013-06-13,2013-07-13,3,0,70,1,1\r\n4245,bari saunders,bari,saunders,2013-09-23,Male,1978-09-22,37,25 - 45,African-American,0,3,0,0,0,-1,2013-09-22 07:58:55,2013-09-25 02:31:32,13018048MM10A,2013-09-22,,1,M,Contribute Delinquency Of A Minor,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-22,2013-09-25,0,2,921,0,0\r\n4247,paul roberts,paul,roberts,2013-02-07,Male,1990-08-19,25,25 - 45,African-American,0,6,0,2,3,0,2013-02-07 03:50:07,2013-02-14 08:43:04,13005950TC10A,2010-11-19,,811,M,Oper Motorcycle W/O Valid DL,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-07,Risk of Violence,3,Low,2013-02-07,2014-09-10,2014-09-18,3,7,580,0,0\r\n4248,adam zayas,adam,zayas,2014-05-02,Male,1983-02-17,33,25 - 45,Hispanic,0,9,0,0,8,-165,2013-11-18 08:15:20,2013-11-19 10:20:32,13016031CF10A,2013-11-18,,165,F,Resist Officer w/Violence,1,15000099CF10A,(F3),1,2015-01-02,Tampering With Physical Evidence,2015-01-03,2015-01-04,,0,,,,,Risk of Recidivism,9,High,2014-05-02,Risk of Violence,4,Low,2014-05-02,2015-10-21,2015-12-04,8,0,245,1,1\r\n4250,ariana culmer,ariana,culmer,2013-05-27,Female,1989-02-27,27,25 - 45,African-American,0,3,0,0,0,-1,2013-05-26 10:59:20,2013-05-27 06:40:51,13007523CF10A,2013-05-26,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-27,Risk of Violence,3,Low,2013-05-27,2013-05-26,2013-05-27,0,0,1040,0,0\r\n4252,raphael cabrices,raphael,cabrices,2013-08-08,Male,1968-04-27,47,Greater than 45,Caucasian,0,1,0,0,2,-25,2013-07-14 06:16:40,2013-07-15 09:09:22,13013312MM10A,2013-07-14,,25,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-08,Risk of Violence,1,Low,2013-08-08,2013-07-14,2013-07-15,2,0,967,0,0\r\n4254,kenneth fennell,kenneth,fennell,2013-12-04,Male,1969-08-15,46,Greater than 45,African-American,0,6,0,0,12,-1,2013-12-03 06:33:18,2013-12-06 05:45:30,13016714CF10A,2013-12-03,,1,M,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-04,Risk of Violence,4,Low,2013-12-04,2014-11-13,2015-01-25,12,2,344,0,0\r\n4255,maximo diaz,maximo,diaz,2013-04-19,Male,1989-03-14,27,25 - 45,Caucasian,0,5,0,0,0,-1,2013-04-18 10:25:11,2013-04-19 07:26:45,13005567CF10A,2013-04-18,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-19,Risk of Violence,6,Medium,2013-04-19,2013-04-18,2013-04-19,0,0,1078,0,0\r\n4256,don mixon,don,mixon,2013-11-18,Male,1981-10-18,34,25 - 45,African-American,0,9,0,0,0,-1,2013-11-17 02:12:32,2013-11-19 10:37:14,13015978CF10A,2013-11-17,,1,F,Felony Battery w/Prior Convict,1,14005373CF10A,(F3),0,2014-04-17,Felony Battery (Dom Strang),2014-04-17,2014-04-22,,1,14005373CF10A,(F3),2014-04-17,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2013-11-18,Risk of Violence,8,High,2013-11-18,2014-04-17,2014-04-22,0,1,150,1,1\r\n4257,jessie davis,jessie,davis,2013-03-23,Male,1985-05-06,30,25 - 45,African-American,0,7,0,0,4,163,2013-09-02 02:00:52,2013-09-03 07:55:00,12023063MM10A,2012-09-20,,184,M,Driving License Suspended,1,13017786MM10A,(M1),0,2013-09-18,Battery,2013-09-18,2013-09-23,,1,13017786MM10A,(M1),2013-09-18,Battery,Risk of Recidivism,7,Medium,2013-03-23,Risk of Violence,5,Medium,2013-03-23,2013-09-02,2013-09-03,4,0,163,0,1\r\n4258,thomas defelice,thomas,defelice,2014-02-05,Male,1991-02-04,25,25 - 45,Caucasian,0,2,0,0,0,-1,2014-02-04 05:25:58,2014-02-04 08:29:26,14004520MU10A,2014-02-04,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-05,Risk of Violence,3,Low,2014-02-05,2014-02-04,2014-02-04,0,0,786,0,0\r\n4260,tony lucien,tony,lucien,2013-05-04,Male,1990-03-23,26,25 - 45,African-American,0,5,1,0,5,-1,2013-05-03 04:28:53,2013-05-04 07:11:20,13014746TC20A,,2013-05-03,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-04,Risk of Violence,4,Low,2013-05-04,2013-05-03,2013-05-04,5,0,1063,0,0\r\n4262,isiah carter,isiah,carter,2013-08-06,Male,1991-04-19,25,25 - 45,African-American,0,4,0,0,1,-18,2013-07-19 08:52:29,2013-07-20 01:04:46,13010165CF10A,2013-07-19,,18,F,Possession of Cocaine,1,13012000CF10A,(F3),0,2013-08-25,Possession of Cocaine,2013-08-25,2013-09-11,,0,,,,,Risk of Recidivism,4,Low,2013-08-06,Risk of Violence,4,Low,2013-08-06,2013-08-25,2013-09-11,1,0,19,1,1\r\n4265,larry mitchell,larry,mitchell,2014-02-25,Male,1955-07-08,60,Greater than 45,African-American,0,8,0,0,9,-1,2014-02-24 09:52:30,2014-02-25 09:47:44,14002613CF10A,2014-02-24,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-25,Risk of Violence,1,Low,2014-02-25,2014-02-24,2014-02-25,9,0,766,0,0\r\n4267,alrick francis,alrick,francis,2013-05-15,Male,1967-02-24,49,Greater than 45,Other,0,1,0,0,0,-1,2013-05-14 01:25:33,2013-05-15 02:11:30,13009335MM10A,2013-05-14,,1,M,Battery,1,13012803MM10A,(M1),1,2013-07-04,Viol Injunction Protect Dom Vi,2013-07-05,2013-07-24,,1,13012803MM10A,(M1),2013-07-04,Battery,Risk of Recidivism,1,Low,2013-05-15,Risk of Violence,1,Low,2013-05-15,2013-07-05,2013-07-24,0,0,50,1,1\r\n4269,eldrich allen,eldrich,allen,2013-09-14,Male,1985-12-26,30,25 - 45,African-American,0,9,0,0,12,0,2013-09-14 12:49:00,2013-09-14 11:01:32,13012956CF10A,2013-09-13,,1,F,Driving While License Revoked,1,13014322CF10A,(M2),0,2013-10-13,Lve/Scen/Acc/Veh/Prop/Damage,2013-10-13,2014-02-09,,0,,,,,Risk of Recidivism,9,High,2013-09-14,Risk of Violence,3,Low,2013-09-14,2013-10-13,2014-02-09,12,0,29,1,1\r\n4270,matthew george,matthew,george,2013-07-15,Male,1994-05-19,21,Less than 25,African-American,0,4,0,0,0,-3,2013-07-12 04:13:33,2013-07-13 01:37:10,13009824CF10A,2013-07-12,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-15,Risk of Violence,7,Medium,2013-07-15,2013-07-12,2013-07-13,0,0,991,0,0\r\n4274,cameron russell,cameron,russell,2013-10-30,Male,1990-05-18,25,25 - 45,African-American,0,8,0,0,4,-1,2013-10-29 11:43:06,2013-10-30 02:02:12,13015103CF10A,2013-10-29,,1,F,Possession of Cocaine,1,14015730TC10A,(M2),0,2014-04-23,Operating W/O Valid License,2014-04-23,2014-07-11,,0,,,,,Risk of Recidivism,8,High,2013-10-30,Risk of Violence,3,Low,2013-10-30,2014-04-23,2014-07-11,4,0,175,1,1\r\n4275,joseph perez,joseph,perez,2013-05-26,Male,1962-11-12,53,Greater than 45,Caucasian,0,3,0,0,1,283,2014-03-05 12:46:04,2014-04-07 03:13:23,13007573CF10A,,2013-05-26,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2014-03-05,2014-04-07,1,0,283,0,0\r\n4276,larenz daniel,larenz,daniel,2014-08-08,Male,1994-07-07,21,Less than 25,African-American,0,4,0,0,0,16,2014-08-24 05:26:00,2014-09-24 04:08:57,14010775CF10A,2014-08-07,,1,F,Felony Battery (Dom Strang),1,14011545CF10A,(F2),0,2014-08-24,Sexual Battery / Vict 12 Yrs +,2014-08-24,2014-09-24,,1,14011545CF10A,(F2),2014-08-24,Sexual Battery / Vict 12 Yrs +,Risk of Recidivism,4,Low,2014-08-08,Risk of Violence,8,High,2014-08-08,2014-08-24,2014-09-24,0,0,16,1,1\r\n4280,edwin chaj,edwin,chaj,2013-12-18,Male,1986-09-12,29,25 - 45,Hispanic,0,9,0,0,1,-2,2013-12-16 09:49:44,2013-12-17 08:43:38,13023292MM10A,2013-12-16,,2,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-12-18,Risk of Violence,3,Low,2013-12-18,2013-12-16,2013-12-17,1,0,835,0,0\r\n4281,charles major,charles,major,2013-11-14,Male,1986-09-08,29,25 - 45,African-American,0,4,0,0,4,-26,2013-10-19 05:44:44,2013-10-20 05:26:25,13019815MM10A,2013-10-19,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-14,Risk of Violence,2,Low,2013-11-14,2013-10-19,2013-10-20,4,0,869,0,0\r\n4282,marquis rodriguez,marquis,rodriguez,2014-01-13,Male,1994-09-25,21,Less than 25,Hispanic,0,3,0,0,0,0,2014-01-13 01:33:12,2014-01-14 01:25:50,14000651MM10A,2014-01-13,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-13,Risk of Violence,6,Medium,2014-01-13,2014-01-13,2014-01-14,0,1,809,0,0\r\n4283,monet walkerfinch,monet,walkerfinch,2013-06-18,Female,1991-10-10,24,Less than 25,African-American,0,7,0,0,2,569,2015-01-08 11:47:35,2015-01-16 08:46:50,12009527MM10A,2012-05-08,,406,M,Battery,1,15000378CF10A,(M1),0,2015-01-08,Criminal Mischief>$200<$1000,2015-01-08,2015-01-16,,1,15000378CF10A,(F2),2015-01-08,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,7,Medium,2013-06-18,Risk of Violence,5,Medium,2013-06-18,2015-01-08,2015-01-16,2,0,569,1,1\r\n4284,richard fox,richard,fox,2013-12-22,Male,1963-04-08,53,Greater than 45,Other,0,1,0,0,4,-1,2013-12-21 11:39:09,2013-12-22 01:21:28,13017611CF10A,2013-12-21,,1,M,Neglect Child / No Bodily Harm,1,15032395TC20A,(M2),,2015-05-29,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-22,Risk of Violence,1,Low,2013-12-22,2013-12-21,2013-12-22,4,0,523,1,1\r\n4288,roger nettles,roger,nettles,2013-08-06,Male,1964-12-17,51,Greater than 45,Caucasian,0,1,0,0,2,0,2013-08-06 04:40:40,2013-08-29 04:07:37,13011015CF10A,2013-08-05,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-06,Risk of Violence,1,Low,2013-08-06,2013-08-06,2013-08-29,2,23,969,0,0\r\n4290,james luxama,james,luxama,2013-01-10,Male,1986-12-19,29,25 - 45,African-American,0,1,0,0,1,0,2013-01-10 03:43:24,2013-01-10 07:10:02,13001781TC10A,2013-01-10,,0,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-10,Risk of Violence,2,Low,2013-01-10,2013-01-10,2013-01-10,1,0,1177,0,0\r\n4292,samantha baubriant,samantha,baubriant,2013-04-26,Female,1991-12-10,24,Less than 25,Other,0,5,0,0,0,0,2013-04-26 05:00:40,2013-04-26 08:04:26,13006034CF10A,2013-04-25,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-26,Risk of Violence,5,Medium,2013-04-26,2013-04-26,2013-04-26,0,0,1071,0,0\r\n4293,dale janki,dale,janki,2013-05-04,Male,1992-01-03,24,Less than 25,Other,0,10,1,9,2,-1,2013-05-03 04:21:04,2013-12-31 03:15:29,13006350CF10A,2013-05-03,,1,F,Possession of Cocaine,1,14006960MM10A,(M1),1,2014-04-26,Possess Cannabis/20 Grams Or Less,2014-04-27,2014-04-27,,0,,,,,Risk of Recidivism,10,High,2013-05-04,Risk of Violence,9,High,2013-05-04,2013-05-03,2013-12-31,2,241,357,1,1\r\n4296,juan moralessantos,juan,moralessantos,2013-02-21,Male,1978-11-24,37,25 - 45,Hispanic,0,2,0,0,5,-1,2013-02-20 05:14:02,2013-02-21 09:26:46,13002600CF10A,2013-02-20,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-21,Risk of Violence,1,Low,2013-02-21,2013-02-20,2013-02-21,5,0,1135,0,0\r\n4297,austin bennett,austin,bennett,2014-10-24,Male,1996-02-08,20,Less than 25,Caucasian,0,9,0,0,0,-1,2014-10-23 04:53:28,2014-10-23 09:14:20,14014286CF10A,2014-10-23,,1,F,Aiding Escape,1,15009981CF10A,(F3),1,2015-08-02,Grand Theft in the 3rd Degree,2015-08-03,2015-08-04,,0,,,,,Risk of Recidivism,9,High,2014-10-24,Risk of Violence,7,Medium,2014-10-24,2016-03-26,2016-03-27,0,0,282,1,1\r\n4298,graciela mino,graciela,mino,2013-10-14,Female,1962-02-28,54,Greater than 45,Hispanic,0,1,0,0,2,,,,11050306TC10A,2011-09-14,,761,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-14,Risk of Violence,1,Low,2013-10-14,,,2,0,900,0,0\r\n4299,lina walsh,lina,walsh,2013-04-09,Female,1964-11-17,51,Greater than 45,Caucasian,0,9,0,0,14,,,,12008113CF10A,2012-06-01,,312,F,Traffick Hydrocodone   4g><14g,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-09,Risk of Violence,6,Medium,2013-04-09,2001-02-14,2001-11-04,14,0,1088,0,0\r\n4300,roy munro,roy,munro,2014-03-12,Male,1962-06-11,53,Greater than 45,Caucasian,0,1,0,0,1,-21,2014-02-19 10:59:41,2014-03-12 11:18:36,14002370CF10A,2014-02-19,,21,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-12,Risk of Violence,1,Low,2014-03-12,2014-02-19,2014-03-12,1,0,751,0,0\r\n4301,cedrick white,cedrick,white,2014-02-19,Male,1984-05-20,31,25 - 45,African-American,0,3,0,0,2,,,,14001486CF10A,,2014-02-05,14,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-19,Risk of Violence,3,Low,2014-02-19,,,2,0,772,0,0\r\n4303,cleve george,cleve,george,2013-02-08,Male,1990-11-27,25,25 - 45,African-American,0,8,0,0,5,-1,2013-02-07 03:54:36,2013-03-14 07:25:50,13001902CF10A,2013-02-07,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-08,Risk of Violence,6,Medium,2013-02-08,2013-02-07,2013-03-14,5,34,1148,0,0\r\n4305,andre viruez,andre,viruez,2013-08-09,Male,1977-11-12,38,25 - 45,Hispanic,0,1,0,0,0,0,2013-08-09 01:10:56,2013-08-10 03:49:00,13015053MM10A,2013-08-08,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-09,Risk of Violence,1,Low,2013-08-09,2013-08-09,2013-08-10,0,1,966,0,0\r\n4306,benjamin joseph,benjamin,joseph,2013-01-20,Male,1993-11-28,22,Less than 25,African-American,0,10,1,1,3,0,2013-01-20 03:49:43,2013-12-05 06:38:32,13000931CF10A,,2013-01-20,0,F,arrest case no charge,1,13014396CF10A,(F3),,2013-10-08,Battery Upon Detainee,,,,1,13014396CF10A,(F3),2013-10-08,Battery Upon Detainee,Risk of Recidivism,10,High,2013-01-20,Risk of Violence,10,High,2013-01-20,2013-01-20,2013-12-05,3,0,261,1,1\r\n4307,devonte fowler,devonte,fowler,2013-01-30,Male,1994-06-09,21,Less than 25,African-American,0,8,0,0,1,-1,2013-01-29 01:41:22,2013-02-11 12:05:37,13001435CF10A,2013-01-29,,1,F,Poss/Sell/Del Cocaine 1000FT Sch,1,15005882MM10A,(M1),,2015-05-29,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2013-01-30,Risk of Violence,8,High,2013-01-30,2014-04-22,2014-05-08,1,12,447,0,0\r\n4310,lucas freire,lucas,freire,2013-05-24,Male,1994-05-16,21,Less than 25,Caucasian,0,5,0,0,1,-1,2013-05-23 06:53:21,2013-05-28 07:55:25,13007349CF10A,2013-05-23,,1,F,Carrying Concealed Firearm,1,13053411TC20A,(M2),,2013-08-27,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-24,Risk of Violence,6,Medium,2013-05-24,2013-05-23,2013-05-28,1,4,95,1,1\r\n4311,jeff joseph,jeff,joseph,2014-05-24,Male,1989-01-05,27,25 - 45,African-American,2,8,0,0,6,-1,2014-05-23 06:14:30,2014-05-24 04:36:58,14007217CF10A,2014-05-23,,1,M,Driving License Suspended,1,15053448TC20A,(M1),,2015-09-25,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,8,High,2014-05-24,Risk of Violence,8,High,2014-05-24,2016-03-21,2016-03-22,6,0,489,1,1\r\n4314,deon daniels,deon,daniels,2014-07-16,Male,1987-09-21,28,25 - 45,African-American,0,7,1,0,14,29,2014-08-14 01:01:25,2014-09-03 09:23:36,13023200MM10A,2013-12-15,,213,M,Resist/Obstruct W/O Violence,1,14011104CF10A,(F3),0,2014-08-14,Grand Theft (Motor Vehicle),2014-08-14,2014-09-03,,1,15009100CF10A,(F3),2015-07-15,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2014-07-16,Risk of Violence,8,High,2014-07-16,2014-08-14,2014-09-03,14,0,29,1,1\r\n4315,mark gaskins,mark,gaskins,2014-07-29,Male,1967-01-14,49,Greater than 45,African-American,0,4,0,0,6,-1,2014-07-28 03:33:45,2014-07-29 01:53:11,14011498MM10A,2014-07-28,,1,M,Battery,1,16000318MM20A,(M1),,2016-01-27,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2014-07-29,Risk of Violence,1,Low,2014-07-29,2014-07-28,2014-07-29,6,0,547,1,1\r\n4316,gregory white,gregory,white,2013-05-12,Male,1964-04-09,52,Greater than 45,African-American,0,9,0,0,7,-1,2013-05-11 06:13:07,2013-05-15 05:01:51,98011734CF10A,1998-06-10,,5450,F,Poss/pur/sell/deliver Cocaine,1,14013504CF10A,(F3),,2014-10-02,Burglary Conveyance Unoccup,,,,0,,,,,Risk of Recidivism,9,High,2013-05-12,Risk of Violence,3,Low,2013-05-12,2014-09-28,2015-04-27,7,3,508,1,1\r\n4317,juno valdemas,juno,valdemas,2013-03-20,Male,1990-05-20,25,25 - 45,African-American,0,6,0,0,1,-1,2013-03-19 01:12:22,2013-03-20 01:14:42,13005424MM10A,2013-03-19,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-20,Risk of Violence,5,Medium,2013-03-20,2013-03-19,2013-03-20,1,0,1108,0,0\r\n4319,donald carlo,donald,carlo,2013-12-27,Male,1959-12-15,56,Greater than 45,Caucasian,0,4,0,0,2,-4,2013-12-23 09:10:10,2013-12-26 08:40:49,13017686CF10A,2013-12-23,,4,F,Felony/Driving Under Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-27,Risk of Violence,1,Low,2013-12-27,2013-12-23,2013-12-26,2,0,826,0,0\r\n4320,cemar knight,cemar,knight,2013-05-03,Male,1982-01-07,34,25 - 45,African-American,0,9,0,0,22,-29,2013-04-04 05:00:38,2013-04-06 04:51:59,13005984CF10A,2013-04-04,,29,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-03,Risk of Violence,4,Low,2013-05-03,2013-12-03,2013-12-11,22,0,214,0,0\r\n4322,marco logatti,marco,logatti,2013-12-05,Male,1980-11-15,35,25 - 45,Hispanic,0,7,0,0,7,0,2013-12-05 02:13:10,2013-12-06 04:02:34,13016996CF10A,,2013-12-05,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-05,Risk of Violence,4,Low,2013-12-05,2013-12-20,2014-03-12,7,1,15,0,0\r\n4323,vivaldo mascarenhas,vivaldo,mascarenhas,2013-10-03,Male,1992-08-02,23,Less than 25,African-American,0,3,0,0,1,-27,2013-09-06 03:25:41,2013-09-07 04:52:27,13014076MO10A,,2013-09-06,27,M,arrest case no charge,1,14033442TC30A,(M2),,2014-04-02,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-03,Risk of Violence,4,Low,2013-10-03,2013-09-06,2013-09-07,1,0,181,1,1\r\n4324,colby lecain,colby,lecain,2013-06-24,Male,1993-10-06,22,Less than 25,Caucasian,0,5,0,2,0,-3,2013-06-21 12:31:31,2013-06-21 07:33:13,13008728CF10A,2013-06-20,,4,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-06-24,Risk of Violence,6,Medium,2013-06-24,2013-12-10,2013-12-19,0,0,169,0,0\r\n4328,lynval chambers,lynval,chambers,2013-04-24,Male,1993-01-30,23,Less than 25,African-American,0,8,0,0,0,-1,2013-04-23 06:47:37,2013-04-25 08:21:03,13005808CF10A,2013-04-23,,1,F,Grand Theft in the 3rd Degree,1,14005363CF10A,(F1),23,2014-01-09,Robbery W/Firearm,2014-02-01,2014-02-06,,1,14005363CF10A,(F1),2014-01-09,Robbery W/Firearm,Risk of Recidivism,8,High,2013-04-24,Risk of Violence,8,High,2013-04-24,2013-05-15,2013-06-22,0,1,21,0,1\r\n4329,aubray mathis,aubray,mathis,2013-09-27,Male,1985-08-22,30,25 - 45,African-American,0,10,0,0,4,-1,2013-09-26 07:37:18,2013-11-19 09:00:53,13018331MM10A,2013-09-26,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-27,Risk of Violence,6,Medium,2013-09-27,2013-09-26,2013-11-19,4,53,917,0,0\r\n4330,damon nicholas,damon,nicholas,2014-03-27,Male,1973-10-18,42,25 - 45,African-American,0,6,0,0,1,0,2014-03-27 02:19:13,2014-04-02 05:22:52,14005328MM10A,2014-03-27,,0,M,Viol Pretrial Release Dom Viol,1,14011319CF10A,(F3),0,2014-07-17,Felony Battery w/Prior Convict,2014-07-17,2014-12-19,,1,14011319CF10A,(F3),2014-07-17,Felony Battery w/Prior Convict,Risk of Recidivism,6,Medium,2014-03-27,Risk of Violence,3,Low,2014-03-27,2014-04-17,2014-04-25,1,6,21,0,1\r\n4331,john grant,john,grant,2013-01-07,Male,1966-03-04,50,Greater than 45,African-American,0,8,0,2,24,0,2013-01-07 02:25:09,2013-02-08 11:34:13,13001089TC10A,2013-01-06,,1,M,Susp Drivers Lic 1st Offense,1,13012698MM10A,(M2),0,2013-07-03,Criminal Mischief Damage <$200,2013-07-03,2013-09-04,,1,15007894CF10A,(F3),2015-06-18,Robbery Sudd Snatch No Weapon,Risk of Recidivism,8,High,2013-01-07,Risk of Violence,8,High,2013-01-07,2013-04-04,2013-05-22,24,32,87,0,1\r\n4332,kenneth kaplan,kenneth,kaplan,2013-04-18,Male,1961-11-27,54,Greater than 45,Caucasian,0,7,0,0,12,-58,2013-02-19 10:26:08,2013-02-25 08:50:45,13002507CF10A,2013-02-19,,58,F,Possession of Hydrocodone,1,14001664MM40A,(M1),,2014-03-22,Trespass Other Struct/Conve,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-18,Risk of Violence,3,Low,2013-04-18,2014-02-03,2014-02-07,12,0,291,0,1\r\n4333,deamon anglin,deamon,anglin,2013-08-13,Male,1978-12-03,37,25 - 45,Other,0,1,0,0,4,-1,2013-08-12 03:16:13,2013-08-14 05:04:24,12025993MM10A,,2013-08-12,1,M,arrest case no charge,1,15046685TC40A,(M2),,2015-08-01,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-13,Risk of Violence,2,Low,2013-08-13,2013-08-12,2013-08-14,4,1,718,1,1\r\n4335,oceal brown,oceal,brown,2013-10-30,Male,1978-11-14,37,25 - 45,African-American,0,9,0,0,0,-1,2013-10-29 08:50:13,2013-10-30 08:06:26,13015079CF10A,2013-10-29,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-30,Risk of Violence,3,Low,2013-10-30,2016-02-02,2016-02-10,0,0,825,0,0\r\n4336,marvis washington,marvis,washington,2013-11-04,Male,1992-08-28,23,Less than 25,African-American,0,4,0,0,1,0,2013-11-04 05:37:01,2013-11-05 03:43:13,13015359CF10A,2013-11-04,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-04,Risk of Violence,5,Medium,2013-11-04,2013-11-04,2013-11-05,1,1,879,0,0\r\n4337,anthony phillips,anthony,phillips,2013-01-27,Male,1974-07-13,41,25 - 45,Caucasian,0,1,0,0,0,-1,2013-01-26 05:52:41,2013-01-27 08:13:40,13001282CF10A,2013-01-26,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-27,Risk of Violence,1,Low,2013-01-27,2013-01-26,2013-01-27,0,0,1160,0,0\r\n4338,louis smith,louis,smith,2013-09-26,Male,1965-11-24,50,Greater than 45,African-American,1,2,0,0,5,29,2013-10-25 12:48:33,2013-11-26 02:04:24,13005180CF10A,2013-04-10,,169,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-26,Risk of Violence,1,Low,2013-09-26,2013-10-25,2013-11-26,5,0,29,0,0\r\n4339,david otero,david,otero,2014-12-26,Male,1974-05-14,41,25 - 45,Hispanic,0,10,0,0,19,-1,2014-12-25 06:50:18,2015-02-06 05:56:01,14017039CF10A,2014-12-25,,1,F,Felony Petit Theft,1,15001917CF10A,(F2),0,2015-02-10,Throw Deadly Missile Into Veh,2015-02-10,2015-03-16,,1,15001917CF10A,(F2),2015-02-10,Throw Deadly Missile Into Veh,Risk of Recidivism,10,High,2014-12-26,Risk of Violence,9,High,2014-12-26,2015-02-10,2015-03-16,19,42,46,1,1\r\n4340,kesnel despinasse,kesnel,despinasse,2014-12-21,Male,1990-02-20,26,25 - 45,African-American,0,2,0,0,2,-1,2014-12-20 06:11:25,2014-12-24 09:21:59,14016837CF10A,2014-12-20,,1,F,Grand Theft (Motor Vehicle),1,16002903MM10A,(M2),0,2016-03-04,Unlaw LicTag/Sticker Attach,2016-03-04,2016-03-05,,0,,,,,Risk of Recidivism,2,Low,2014-12-21,Risk of Violence,2,Low,2014-12-21,2016-03-04,2016-03-05,2,3,439,1,1\r\n4341,christopher sinclair,christopher,sinclair,2013-12-14,Male,1976-02-07,40,25 - 45,Other,0,7,0,0,8,-1,2013-12-13 03:49:59,2014-01-22 08:33:50,13017253CF10A,2013-12-13,,1,F,Possession of Cocaine,1,14004730CF10A,(F3),0,2014-04-05,Battery on a Person Over 65,2014-04-05,2015-03-10,,1,14004730CF10A,(F3),2014-04-05,Battery on a Person Over 65,Risk of Recidivism,7,Medium,2013-12-14,Risk of Violence,4,Low,2013-12-14,2014-04-05,2015-03-10,8,39,112,1,1\r\n4342,wilford morgan,wilford,morgan,2013-09-08,Male,1993-03-12,23,Less than 25,African-American,0,8,0,0,2,-1,2013-09-07 06:21:45,2013-09-14 04:31:08,13012665CF10A,2013-09-07,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14015603MM10A,(M1),0,2014-10-28,Resist/Obstruct W/O Violence,2014-10-28,2014-12-19,,0,,,,,Risk of Recidivism,8,High,2013-09-08,Risk of Violence,9,High,2013-09-08,2013-10-25,2013-11-12,2,6,47,0,1\r\n4346,james clowers,james,clowers,2014-05-24,Male,1960-10-20,55,Greater than 45,Caucasian,0,2,0,0,1,-1,2014-05-23 08:03:11,2014-06-25 09:24:43,14007209CF10A,,2014-05-23,1,F,arrest case no charge,1,14011610MM10A,(M2),0,2014-07-30,Petit Theft,2014-07-30,2014-08-26,,0,,,,,Risk of Recidivism,2,Low,2014-05-24,Risk of Violence,1,Low,2014-05-24,2014-07-30,2014-08-26,1,32,67,1,1\r\n4348,anthony spencer,anthony,spencer,2014-10-05,Male,1991-09-04,24,Less than 25,African-American,0,6,0,0,0,-1,2014-10-04 09:27:31,2014-10-06 04:37:18,14013403CF10A,2014-10-04,,1,F,Grand Theft in the 3rd Degree,1,15002401CF10A,(F3),0,2015-02-20,Uttering a Forged Instrument,2015-02-20,2015-02-21,,0,,,,,Risk of Recidivism,6,Medium,2014-10-05,Risk of Violence,4,Low,2014-10-05,2015-02-20,2015-02-21,0,1,138,1,1\r\n4353,jonathan tovar,jonathan,tovar,2014-03-30,Male,1982-05-04,33,25 - 45,Caucasian,0,1,1,0,5,-1,2014-03-29 06:34:06,2014-03-30 08:18:33,14005414MM10A,2014-03-29,,1,M,Battery,1,14008670MM10A,(M1),0,2014-05-30,Viol Pretrial Release Dom Viol,2014-05-30,2014-06-09,,0,,,,,Risk of Recidivism,1,Low,2014-03-30,Risk of Violence,1,Low,2014-03-30,2014-05-30,2014-06-09,5,0,61,1,1\r\n4356,sebastian bocanegra,sebastian,bocanegra,2013-10-02,Male,1992-05-06,23,Less than 25,Caucasian,0,2,0,0,0,-1,2013-10-01 06:26:22,2013-10-02 07:41:14,13013795CF10A,2013-10-01,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,4,Low,2013-10-02,2013-10-01,2013-10-02,0,0,912,0,0\r\n4357,ulysses johnson,ulysses,johnson,2014-01-13,Male,1978-10-26,37,25 - 45,African-American,0,7,0,0,1,-3,2014-01-10 09:06:32,2014-01-11 01:36:08,14001420TC10A,2014-01-10,,3,M,Driving License Suspended,1,15018252TC30A,(M2),,2015-03-03,Disobey Officer/Fireman,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-13,Risk of Violence,3,Low,2014-01-13,2014-01-10,2014-01-11,1,0,414,1,1\r\n4358,rajdaye maharajh,rajdaye,maharajh,2013-10-22,Female,1951-05-12,64,Greater than 45,Other,0,1,0,0,0,-1,2013-10-21 11:27:18,2013-10-22 01:59:46,13014719CF10A,2013-10-21,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-21,2013-10-22,0,0,892,0,0\r\n4360,charles delisi,charles,delisi,2013-08-12,Male,1964-05-10,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-11 08:16:15,2013-08-12 07:21:52,13015168MM10A,2013-08-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-12,Risk of Violence,1,Low,2013-08-12,2013-08-11,2013-08-12,0,0,963,0,0\r\n4362,reyaz blackett,reyaz,blackett,2013-02-26,Male,1975-05-10,40,25 - 45,Other,0,1,0,0,4,-1,2013-02-25 07:48:20,2013-03-13 06:01:51,13002871CF10A,2013-02-25,,1,F,Agg Battery Grt/Bod/Harm,1,14005611CF10A,(F3),0,2014-04-22,Burglary Structure Unoccup,2014-04-22,2014-04-23,,0,,,,,Risk of Recidivism,1,Low,2013-02-26,Risk of Violence,1,Low,2013-02-26,2014-04-22,2014-04-23,4,15,420,1,1\r\n4365,robert roser,robert,roser,2013-09-25,Male,1972-08-01,43,25 - 45,Caucasian,0,5,0,0,1,,,,12018010CF10A,2012-12-10,,289,F,Del Morphine at/near Park,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-25,Risk of Violence,3,Low,2013-09-25,,,1,0,919,0,0\r\n4367,shanta jackson,shanta,jackson,2013-05-06,Female,1980-05-23,35,25 - 45,African-American,0,6,0,0,3,0,2013-05-06 03:16:04,2013-05-07 02:38:52,13008750MM10A,2013-05-06,,0,M,Battery,1,13017067CF10A,(F2),26,2013-11-14,Aggrav Battery w/Deadly Weapon,2013-12-10,2013-12-11,,1,13017067CF10A,(F2),2013-11-14,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-05-06,Risk of Violence,3,Low,2013-05-06,2013-05-06,2013-05-07,3,1,192,1,1\r\n4368,adrian santiago,adrian,santiago,2014-08-24,Male,1993-06-02,22,Less than 25,Hispanic,0,4,0,0,1,-1,2014-08-23 10:20:24,2014-08-25 03:35:20,14011486CF10A,2014-08-23,,1,F,Grand Theft in the 3rd Degree,1,15000051MM40A,(M1),,2014-12-03,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2014-08-24,Risk of Violence,5,Medium,2014-08-24,2014-08-23,2014-08-25,1,1,101,1,1\r\n4370,kenneth goodman,kenneth,goodman,2013-02-09,Male,1986-12-08,29,25 - 45,African-American,0,9,0,0,2,0,2013-02-09 12:03:25,2013-07-19 12:35:09,13001981CF10A,2013-02-08,,1,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-09,Risk of Violence,6,Medium,2013-02-09,2014-02-19,2014-04-11,2,160,375,0,0\r\n4371,michael higgins,michael,higgins,2014-01-06,Male,1959-01-27,57,Greater than 45,Caucasian,0,1,0,0,0,-3,2014-01-03 04:30:49,2014-01-05 01:29:28,14000123MM10A,2014-01-03,,3,M,Prowling/Loitering,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-01-03,2014-01-05,0,0,816,0,0\r\n4372,keith thorpe,keith,thorpe,2013-11-26,Male,1995-07-14,20,Less than 25,African-American,0,5,1,2,1,0,2013-11-26 02:25:13,2013-11-26 08:33:05,13022219MM10A,2013-11-25,,1,M,Battery,1,14000486MM20A,(M2),,2014-01-24,Petit Theft,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-26,Risk of Violence,8,High,2013-11-26,2014-05-06,2014-07-01,1,0,59,1,1\r\n4375,jose ortiz,jose,ortiz,2014-01-06,Male,1978-11-17,37,25 - 45,Caucasian,0,5,0,0,1,-203,2013-06-17 12:51:06,2013-06-17 08:23:52,13011612MO10A,2013-06-16,,204,M,Disorderly Conduct,1,15008312CF10A,(M2),1,2015-06-26,Renting For Prostitution,2015-06-27,2015-07-29,,1,14016795MO10A,(MO3),2014-10-27,DOC/Engage In Fighting,Risk of Recidivism,5,Medium,2014-01-06,Risk of Violence,2,Low,2014-01-06,2015-08-18,2015-08-19,1,0,536,1,1\r\n4376,rosetta francis,rosetta,francis,2014-02-16,Female,1992-12-21,23,Less than 25,Other,0,5,0,0,0,-1,2014-02-15 11:55:36,2014-02-16 09:24:05,14002663MM10A,2014-02-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-16,Risk of Violence,5,Medium,2014-02-16,2014-02-15,2014-02-16,0,0,775,0,0\r\n4377,jajuan holston,jajuan,holston,2014-11-01,Male,1992-08-07,23,Less than 25,African-American,0,8,0,0,3,-1,2014-10-31 06:08:57,2015-01-30 10:40:04,12003670CF10A,,2014-11-01,0,F,arrest case no charge,1,15006706CF10A,(M1),0,2015-05-23,Possess Drug Paraphernalia,2015-05-23,2015-09-24,,0,,,,,Risk of Recidivism,8,High,2014-11-01,Risk of Violence,9,High,2014-11-01,2015-05-23,2015-09-24,3,90,203,1,1\r\n4378,steven bolinder,steven,bolinder,2014-08-27,Male,1979-09-23,36,25 - 45,Caucasian,0,4,0,0,9,0,2014-08-27 04:04:55,2014-08-28 09:08:32,08025512TC10A,,2008-09-15,2172,M,arrest case no charge,1,16001722TC20A,(M2),,2015-12-14,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2014-08-27,Risk of Violence,3,Low,2014-08-27,2014-08-27,2014-08-28,9,1,474,1,1\r\n4381,lee wechsler,lee,wechsler,2013-07-22,Male,1960-04-26,55,Greater than 45,Caucasian,0,1,0,0,1,-3,2013-07-19 10:31:24,2013-07-20 01:24:07,13013759MM10A,2013-07-19,,3,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-22,Risk of Violence,1,Low,2013-07-22,2013-07-19,2013-07-20,1,0,984,0,0\r\n4383,vernon johnson,vernon,johnson,2013-02-18,Male,1962-11-10,53,Greater than 45,African-American,0,7,0,0,18,-1,2013-02-17 04:32:19,2013-03-30 09:14:32,13003405MM10A,2013-02-17,,1,M,Unlaw Use False Name/Identity,1,13009318MM10A,(M1),0,2013-05-14,Unlaw Use False Name/Identity,2013-05-14,2013-11-11,,0,,,,,Risk of Recidivism,7,Medium,2013-02-18,Risk of Violence,1,Low,2013-02-18,2013-05-14,2013-11-11,18,40,85,1,1\r\n4384,jonray archibald,jonray,archibald,2014-03-07,Male,1994-10-12,21,Less than 25,African-American,0,9,0,0,1,-1,2014-03-06 12:32:09,2014-03-07 08:52:30,14003173CF10A,2014-03-06,,1,F,Pos Cannabis W/Intent Sel/Del,1,14004642MM10A,(M1),0,2014-03-17,Trespass Struct/Convey Occupy,2014-03-17,2014-03-17,,0,,,,,Risk of Recidivism,9,High,2014-03-07,Risk of Violence,8,High,2014-03-07,2014-03-17,2014-03-17,1,0,10,0,1\r\n4385,edwin etienne,edwin,etienne,2013-12-27,Male,1988-11-27,27,25 - 45,African-American,0,3,0,0,3,-1,2013-12-26 05:45:05,2014-01-07 09:48:03,13023806MM10A,2013-12-26,,1,M,Battery,1,14006769CF10A,(F3),0,2014-05-15,Unauth Poss ID Card or DL,2014-05-15,2014-07-04,,0,,,,,Risk of Recidivism,3,Low,2013-12-27,Risk of Violence,3,Low,2013-12-27,2014-05-15,2014-07-04,3,11,139,1,1\r\n4387,leroy anglin,leroy,anglin,2013-11-13,Male,1987-10-09,28,25 - 45,African-American,0,9,1,0,6,-1,2013-11-12 07:13:43,2013-11-15 04:09:00,13015719CF10A,2013-11-12,,1,F,Grand Theft in the 3rd Degree,1,15016610CF10A,(F2),,2015-11-11,Aggravated Battery / Pregnant,,,,1,15016610CF10A,(F2),2015-11-11,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2013-11-13,Risk of Violence,8,High,2013-11-13,2015-03-12,2015-03-13,6,2,484,0,1\r\n4388,kyle kane,kyle,kane,2013-03-11,Male,1989-06-28,26,25 - 45,Caucasian,0,3,0,0,1,-1,2013-03-10 07:43:30,2013-03-11 02:01:51,13002561CF10A,,2013-03-10,1,F,arrest case no charge,1,13004375CF10A,(F3),0,2013-03-26,\"Deliver 3,4 Methylenediox\",2013-03-26,2013-03-27,,0,,,,,Risk of Recidivism,3,Low,2013-03-11,Risk of Violence,4,Low,2013-03-11,2013-03-26,2013-03-27,1,0,15,1,1\r\n4389,michael hatcher,michael,hatcher,2014-02-08,Male,1991-01-07,25,25 - 45,Caucasian,0,6,0,0,1,-1,2014-02-07 09:17:42,2014-02-08 10:18:18,14001754CF10A,2014-02-07,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-08,Risk of Violence,3,Low,2014-02-08,2015-07-24,2015-08-03,1,0,531,0,0\r\n4390,john deprima,john,deprima,2014-02-01,Male,1949-05-11,66,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-31 03:48:54,2014-02-01 10:09:47,14001409CF10A,2014-01-31,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-01,Risk of Violence,1,Low,2014-02-01,2014-01-31,2014-02-01,0,0,790,0,0\r\n4391,leonard daley,leonard,daley,2013-04-14,Male,1987-09-15,28,25 - 45,African-American,0,2,0,0,3,0,2013-04-14 03:12:34,2013-04-14 07:22:40,13005373CF10A,2013-04-14,,0,M,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-14,Risk of Violence,2,Low,2013-04-14,2013-04-14,2013-04-14,3,0,1083,0,0\r\n4393,travis smith,travis,smith,2013-05-22,Male,1994-06-27,21,Less than 25,African-American,0,4,0,0,0,523,2014-10-27 12:59:55,2015-02-22 04:37:42,13007318CF10A,2013-05-21,,1,F,Grand Theft in the 3rd Degree,1,14014445CF10A,(F3),0,2014-10-27,Pos Cannabis W/Intent Sel/Del,2014-10-27,2015-02-22,,0,,,,,Risk of Recidivism,4,Low,2013-05-22,Risk of Violence,6,Medium,2013-05-22,2014-10-27,2015-02-22,0,0,523,1,1\r\n4394,trevon madison,trevon,madison,2013-10-07,Male,1991-09-02,24,Less than 25,African-American,0,5,0,0,0,-2,2013-10-05 12:06:59,2013-10-06 08:54:21,13018920MM10A,2013-10-04,,3,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-07,Risk of Violence,5,Medium,2013-10-07,2013-10-05,2013-10-06,0,0,907,0,0\r\n4396,howard babitz,howard,babitz,2014-04-07,Male,1955-06-20,60,Greater than 45,Caucasian,0,2,0,0,18,-26,2014-03-12 02:34:37,2014-03-15 06:33:39,14009911MU10A,2014-03-12,,26,M,Driving Under The Influence,1,15002014MM30A,(M2),,2015-12-16,Obstuct By Solicitation,,,,0,,,,,Risk of Recidivism,2,Low,2014-04-07,Risk of Violence,3,Low,2014-04-07,2014-03-12,2014-03-15,18,0,618,1,1\r\n4397,ivan lubin,ivan,lubin,2014-08-13,Male,1979-04-15,37,25 - 45,African-American,0,4,0,0,2,-1,2014-08-12 10:31:25,2014-08-13 01:41:00,14011026CF10A,2014-08-12,,1,F,Driving While License Revoked,1,14012673CF10A,(F3),0,2014-09-18,Driving While License Revoked,2014-09-18,2014-09-19,,0,,,,,Risk of Recidivism,4,Low,2014-08-13,Risk of Violence,2,Low,2014-08-13,2014-09-18,2014-09-19,2,0,36,1,1\r\n4398,ernest forestal,ernest,forestal,2013-01-29,Male,1993-01-15,23,Less than 25,African-American,0,9,0,0,2,,,,12022160MM10A,2012-10-25,,96,M,Giving False Crime Report,1,13021347MM10A,(M1),,2013-09-14,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,9,High,2013-01-29,Risk of Violence,8,High,2013-01-29,,,2,0,228,1,1\r\n4400,richard kirk,richard,kirk,2014-03-27,Male,1943-01-11,73,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-26 01:18:07,2014-03-27 01:44:58,14005228MM10A,2014-03-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-27,Risk of Violence,1,Low,2014-03-27,2014-03-26,2014-03-27,0,0,736,0,0\r\n4401,solomon mccarter,solomon,mccarter,2013-11-24,Male,1971-09-24,44,25 - 45,African-American,0,2,0,0,0,-1,2013-11-23 03:13:53,2013-11-25 09:02:22,13016444CF10A,,2013-11-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-24,Risk of Violence,1,Low,2013-11-24,2013-11-23,2013-11-25,0,1,859,0,0\r\n4402,carlos perezzambrano,carlos,perezzambrano,2013-11-14,Male,1973-10-30,42,25 - 45,Hispanic,0,1,0,0,0,0,2013-11-14 05:48:10,2013-11-18 07:36:03,13021457MM10A,2013-11-14,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-11-14,2013-11-18,0,4,869,0,0\r\n4403,jason howell,jason,howell,2014-03-20,Male,1976-02-01,40,25 - 45,African-American,0,7,0,0,6,-1,2014-03-19 04:33:21,2014-03-21 02:41:52,14003853CF10A,2014-03-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-20,Risk of Violence,4,Low,2014-03-20,2014-03-19,2014-03-21,6,1,743,0,0\r\n4404,deondra porter,deondra,porter,2014-01-23,Female,1988-01-17,28,25 - 45,African-American,0,10,0,0,0,391,2015-02-18 04:23:50,2015-02-25 01:47:30,14000973CF10A,2014-01-22,,1,F,Felony Committing Prostitution,1,15002030MM10A,(M1),0,2015-02-18,Unlaw Use False Name/Identity,2015-02-18,2015-02-25,,0,,,,,Risk of Recidivism,10,High,2014-01-23,Risk of Violence,6,Medium,2014-01-23,2015-02-18,2015-02-25,0,0,391,1,1\r\n4406,nathaniel echevarria,nathaniel,echevarria,2013-04-24,Male,1995-01-12,21,Less than 25,Hispanic,0,10,0,0,0,0,2013-04-24 03:00:42,2013-05-01 04:39:21,13005900CF10A,2013-04-23,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-24,Risk of Violence,8,High,2013-04-24,2013-07-17,2013-07-24,0,7,84,0,0\r\n4407,frederick bedell,frederick,bedell,2013-01-03,Male,1959-11-28,56,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-01-01 12:26:08,2013-01-02 07:32:07,13000025MM10A,2012-12-31,,3,M,Battery,1,14006576MM10A,(M1),0,2014-04-19,Resist/Obstruct W/O Violence,2014-04-19,2014-04-20,,1,14014539CF10A,(F2),2014-10-29,Aggravated Battery / Pregnant,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2014-04-19,2014-04-20,0,0,471,1,1\r\n4408,jermaine buchanan,jermaine,buchanan,2013-01-03,Male,1973-11-15,42,25 - 45,African-American,0,1,0,0,3,-1,2013-01-02 09:17:36,2013-01-03 11:24:54,13000072CF10A,2013-01-02,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2013-01-02,2013-01-03,3,0,1184,0,0\r\n4409,jason operle,jason,operle,2013-03-07,Male,1983-06-30,32,25 - 45,Caucasian,1,10,0,0,11,149,2013-08-03 12:22:24,2014-06-14 05:58:54,12002899CF10A,,2012-10-31,127,F,arrest case no charge,1,13014694MM10A,(M1),1,2013-08-02,Possess Cannabis/20 Grams Or Less,2013-08-03,2014-06-14,,0,,,,,Risk of Recidivism,10,High,2013-03-07,Risk of Violence,10,High,2013-03-07,2015-07-07,2015-11-02,11,0,148,1,1\r\n4411,david garrison,david,garrison,2013-01-15,Male,1966-01-13,50,Greater than 45,Caucasian,0,3,0,0,1,-1,2013-01-14 11:58:48,2013-01-16 08:10:14,10018309CF10A,,2013-01-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-15,Risk of Violence,1,Low,2013-01-15,2013-01-14,2013-01-16,1,1,1172,0,0\r\n4414,jesus guzmansilva,jesus,guzmansilva,2014-02-16,Male,1981-12-09,34,25 - 45,Caucasian,0,2,0,0,0,-1,2014-02-15 08:15:10,2014-02-16 09:38:43,14002644MM10A,2014-02-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-16,Risk of Violence,2,Low,2014-02-16,2014-02-15,2014-02-16,0,0,775,0,0\r\n4415,rodney monroe,rodney,monroe,2014-03-21,Male,1968-12-13,47,Greater than 45,African-American,0,1,0,0,1,-1,2014-03-20 02:12:50,2014-03-22 03:16:24,14004872MM10A,2014-03-20,,1,M,Battery,1,15008617CF10A,(F3),0,2015-07-05,Grand Theft in the 3rd Degree,2015-07-05,2015-07-06,,1,15008617CF10A,(F3),2015-07-05,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2014-03-21,Risk of Violence,1,Low,2014-03-21,2015-07-05,2015-07-06,1,1,471,1,1\r\n4416,charles laurie,charles,laurie,2013-12-19,Male,1957-09-11,58,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-12-18 01:38:23,2013-12-20 08:48:46,13017461CF10A,2013-12-18,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-19,Risk of Violence,1,Low,2013-12-19,2013-12-18,2013-12-20,3,1,834,0,0\r\n4418,erik wantuck,erik,wantuck,2013-07-05,Male,1967-08-30,48,Greater than 45,Caucasian,0,4,0,0,3,-7,2013-06-28 02:46:46,2013-06-28 08:24:49,13009140CF10A,2013-06-28,,7,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-05,Risk of Violence,1,Low,2013-07-05,2015-05-06,2015-05-07,3,0,670,0,0\r\n4419,christina ramage,christina,ramage,2014-01-27,Female,1996-01-08,20,Less than 25,Caucasian,0,3,0,0,0,-2,2014-01-25 11:11:50,2014-01-26 02:05:49,14001095CF10A,2014-01-25,,2,F,Grand Theft in the 3rd Degree,1,16002393MM10A,(M2),0,2016-03-13,Criminal Mischief Damage <$200,2016-03-13,2016-03-16,,1,16002393MM10A,(M1),2016-03-13,Battery,Risk of Recidivism,3,Low,2014-01-27,Risk of Violence,6,Medium,2014-01-27,2016-03-13,2016-03-16,0,0,776,1,0\r\n4421,stephanie johnson,stephanie,johnson,2013-04-28,Female,1962-05-19,53,Greater than 45,African-American,0,2,0,0,10,-1,2013-04-27 09:25:05,2013-05-01 10:14:41,13006067CF10A,2013-04-27,,1,F,Aggravated Assault W/dead Weap,1,14009784CF10A,(F3),0,2014-07-17,Driving While License Revoked,2014-07-17,2014-07-18,,0,,,,,Risk of Recidivism,2,Low,2013-04-28,Risk of Violence,1,Low,2013-04-28,2014-07-17,2014-07-18,10,3,445,1,1\r\n4422,antwon jenkins,antwon,jenkins,2013-11-17,Male,1987-01-13,29,25 - 45,African-American,0,9,0,0,0,-1,2013-11-16 08:17:51,2013-11-17 08:20:01,13015943CF10A,2013-11-16,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-17,Risk of Violence,6,Medium,2013-11-17,2013-11-16,2013-11-17,0,0,866,0,0\r\n4425,jameka ferguson,jameka,ferguson,2013-09-16,Male,1977-11-16,38,25 - 45,Other,0,1,0,0,1,-1,2013-09-15 09:33:33,2013-09-16 07:05:06,14007854MM10A,2013-09-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,2,Low,2013-09-16,2013-09-15,2013-09-16,1,0,928,0,0\r\n4426,christin butler,christin,butler,2014-03-11,Female,1972-05-01,43,25 - 45,Caucasian,0,2,0,0,0,0,2014-03-11 04:14:22,2014-03-11 08:42:40,14003418CF10A,2014-03-11,,0,M,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-11,Risk of Violence,1,Low,2014-03-11,2016-02-23,2016-02-26,0,0,714,0,0\r\n4428,samuels semper,samuels,semper,2013-04-23,Male,1980-11-06,35,25 - 45,African-American,0,9,0,0,1,,,,08021895MM10A,,2009-04-13,1471,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-23,Risk of Violence,6,Medium,2013-04-23,,,1,0,1074,0,0\r\n4430,mason lopez,mason,lopez,2013-03-17,Male,1990-10-24,25,25 - 45,Hispanic,0,3,0,0,2,-1,2013-03-16 01:12:33,2013-03-17 02:03:07,13005188MM10A,2013-03-16,,1,M,Battery,1,13085435TC40A,(M2),92,2013-12-09,Driving License Suspended,2014-03-11,2014-03-14,,1,15008838CF10A,(F2),2015-07-09,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,3,Low,2013-03-17,Risk of Violence,5,Medium,2013-03-17,2015-07-09,2015-07-27,2,0,267,1,1\r\n4431,rodger running,rodger,running,2013-04-15,Male,1962-12-08,53,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-04-14 10:39:49,2013-04-19 10:35:23,13007210MM10A,2013-04-14,,1,M,Battery,1,13013026MM10A,(M1),0,2013-07-10,Viol Pretrial Release Dom Viol,2013-07-10,2013-08-23,,0,,,,,Risk of Recidivism,1,Low,2013-04-15,Risk of Violence,1,Low,2013-04-15,2013-07-10,2013-08-23,1,4,86,1,1\r\n4432,bradley gaskins,bradley,gaskins,2013-03-31,Male,1994-02-01,22,Less than 25,Caucasian,0,7,0,3,0,-1,2013-03-30 08:02:38,2013-03-31 02:54:22,09014657TI20A,2009-02-13,,1507,M,Possess Tobacco Product Under 18,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-31,Risk of Violence,10,High,2013-03-31,2013-03-30,2013-03-31,0,0,1097,0,0\r\n4433,stefanie miranda,stefanie,miranda,2014-04-01,Female,1984-01-05,32,25 - 45,Hispanic,0,2,0,0,1,-11,2014-03-21 11:15:52,2014-04-01 10:27:40,14004011CF10A,2014-03-21,,11,M,Burglary Conveyance Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-04-01,Risk of Violence,2,Low,2014-04-01,2014-03-21,2014-04-01,1,0,731,0,0\r\n4434,eric redmond,eric,redmond,2013-03-25,Male,1989-06-19,26,25 - 45,Caucasian,0,7,0,0,9,-1,2013-03-24 02:25:59,2013-03-25 08:04:10,13005756MM10A,2013-03-24,,1,M,Possess Cannabis/20 Grams Or Less,1,14007041MO10A,(M1),1,2014-04-28,Trespass After Warning,2014-04-29,2014-04-29,,1,15001565MM10A,(M2),2015-02-06,Assault,Risk of Recidivism,7,Medium,2013-03-25,Risk of Violence,5,Medium,2013-03-25,2013-08-18,2013-08-20,9,0,146,0,1\r\n4435,vivienne campbell,vivienne,campbell,2013-02-27,Female,1967-11-20,48,Greater than 45,Other,0,1,0,0,0,-1,2013-02-26 04:52:54,2013-02-27 09:49:05,13002930CF10A,2013-02-26,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-27,Risk of Violence,1,Low,2013-02-27,2013-02-26,2013-02-27,0,0,1129,0,0\r\n4436,david corbin,david,corbin,2013-11-12,Male,1993-02-18,23,Less than 25,African-American,0,10,0,0,4,-1,2013-11-11 08:40:03,2013-11-12 01:22:51,13015689CF10A,2013-11-11,,1,F,Poss Cntrft Contr Sub w/Intent,1,14001047CF10A,(F2),0,2014-01-24,Poss F/Arm Delinq,2014-01-24,2014-01-26,,0,,,,,Risk of Recidivism,10,High,2013-11-12,Risk of Violence,9,High,2013-11-12,2014-01-24,2014-01-26,4,0,73,1,1\r\n4437,george massie,george,massie,2013-06-25,Male,1944-10-09,71,Greater than 45,Caucasian,0,1,0,0,1,-28,2013-05-28 10:34:00,2013-06-01 09:54:23,13010258MM10A,2013-05-28,,28,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-25,Risk of Violence,1,Low,2013-06-25,2013-05-28,2013-06-01,1,0,1011,0,0\r\n4438,ursula fontaine,ursula,fontaine,2013-01-24,Female,1955-04-05,61,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-23 01:23:24,2013-01-23 02:14:29,13001511MM10A,2013-01-23,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-24,Risk of Violence,1,Low,2013-01-24,2013-01-23,2013-01-23,0,0,1163,0,0\r\n4439,gabriela ulpiano,gabriela,ulpiano,2013-10-14,Female,1993-06-10,22,Less than 25,Caucasian,0,5,0,0,2,-22,2013-09-22 07:56:23,2013-09-23 01:51:40,13018053MM10A,2013-09-22,,22,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-14,Risk of Violence,5,Medium,2013-10-14,2014-07-21,2014-07-24,2,0,280,0,0\r\n4440,darrell roberts,darrell,roberts,2014-12-23,Male,1986-05-01,29,25 - 45,African-American,0,2,0,0,1,82,2015-03-15 12:28:10,2015-04-22 01:45:21,10027144MM10A,2010-12-18,,1466,M,DUI Blood Alcohol Above 0.20,1,15003080MM10A,(M1),1,2015-03-14,Battery,2015-03-15,2015-04-22,,1,15003080MM10A,(M1),2015-03-14,Battery,Risk of Recidivism,2,Low,2014-12-23,Risk of Violence,2,Low,2014-12-23,2015-03-15,2015-04-22,1,0,81,1,1\r\n4441,carolyn weaver,carolyn,weaver,2013-04-02,Female,1962-01-27,54,Greater than 45,Caucasian,0,2,0,0,1,-22,2013-03-11 04:01:35,2013-03-11 07:47:17,13004883MM10A,2013-03-11,,22,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-02,Risk of Violence,1,Low,2013-04-02,2013-03-11,2013-03-11,1,0,1095,0,0\r\n4442,joseph criscione,joseph,criscione,2013-11-23,Male,1991-11-02,24,Less than 25,Caucasian,0,9,2,0,6,-1,2013-11-22 08:34:45,2013-11-23 10:16:31,13016231CF10A,,2013-11-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-23,Risk of Violence,7,Medium,2013-11-23,2013-11-22,2013-11-23,6,0,860,0,0\r\n4443,allyson glass,allyson,glass,2013-01-14,Female,1987-12-31,28,25 - 45,Caucasian,0,5,0,0,0,-1,2013-01-13 04:58:10,2013-01-14 06:50:27,13000595CF10A,2013-01-13,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-14,Risk of Violence,3,Low,2013-01-14,2013-01-13,2013-01-14,0,0,1173,0,0\r\n4444,alexandria dalton,alexandria,dalton,2013-05-22,Female,1990-12-15,25,25 - 45,Caucasian,0,10,0,0,2,0,2013-05-22 02:20:05,2013-11-19 05:29:00,13007287CF10A,2013-05-21,,1,F,Escape,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-05-22,Risk of Violence,8,High,2013-05-22,2013-05-22,2013-11-19,2,181,1045,0,0\r\n4445,veronica miller,veronica,miller,2013-07-18,Female,1993-11-23,22,Less than 25,African-American,0,5,0,0,1,-28,2013-06-20 04:36:36,2013-07-03 10:00:15,13008731CF10A,2013-06-20,,28,F,Murder in the First Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-18,Risk of Violence,5,Medium,2013-07-18,2014-03-09,2014-08-27,1,0,234,0,0\r\n4447,ryan sapp,ryan,sapp,2013-08-21,Male,1992-03-08,24,Less than 25,African-American,0,3,0,0,2,0,2013-08-21 02:11:07,2013-08-22 04:54:08,13011746CF10A,2013-08-20,,1,F,Resist Officer w/Violence,1,13019525MM10A,(M1),367,2013-08-24,Possess Cannabis/20 Grams Or Less,2014-08-26,2014-08-27,,0,,,,,Risk of Recidivism,3,Low,2013-08-21,Risk of Violence,4,Low,2013-08-21,2013-08-21,2013-08-22,2,1,3,1,1\r\n4448,joseph clagett,joseph,clagett,2014-01-20,Male,1980-04-30,35,25 - 45,African-American,0,4,0,0,0,-1,2014-01-19 07:31:22,2014-01-20 08:17:30,14000838CF10A,2014-01-19,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-20,Risk of Violence,3,Low,2014-01-20,2014-01-19,2014-01-20,0,0,802,0,0\r\n4450,ameer abdulmalik,ameer,abdulmalik,2014-01-27,Male,1994-10-01,21,Less than 25,African-American,0,3,0,0,0,-1,2014-01-26 03:55:36,2014-01-27 08:34:04,14001154CF10A,2014-01-26,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-27,Risk of Violence,5,Medium,2014-01-27,2014-01-26,2014-01-27,0,0,795,0,0\r\n4451,george brent,george,brent,2013-01-12,Male,1967-03-09,49,Greater than 45,Caucasian,0,1,0,0,1,0,2013-01-12 04:12:16,2013-01-16 08:38:51,13000576CF10A,2013-01-12,,0,M,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-12,Risk of Violence,1,Low,2013-01-12,2013-03-21,2013-03-22,1,4,68,0,0\r\n4452,kenyatta bowen,kenyatta,bowen,2013-08-06,Male,1990-03-11,26,25 - 45,African-American,0,9,0,0,6,-1,2013-08-05 04:37:34,2013-08-07 10:44:15,13010973CF10A,2013-08-05,,1,F,Aggravated Battery / Pregnant,1,14001576MM20A,(M1),,2014-05-21,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,9,High,2013-08-06,Risk of Violence,7,Medium,2013-08-06,2013-08-05,2013-08-07,6,1,288,1,1\r\n4453,curtis sanders,curtis,sanders,2013-12-17,Male,1986-03-17,30,25 - 45,African-American,0,9,1,0,7,-1,2013-12-16 10:21:52,2014-01-24 03:15:15,13017387CF10A,2013-12-16,,1,F,Burglary Conveyance Unoccup,1,16000357CF10A,(F2),0,2016-01-09,Burglary Unoccupied Dwelling,2016-01-09,2016-02-11,,0,,,,,Risk of Recidivism,9,High,2013-12-17,Risk of Violence,9,High,2013-12-17,2016-01-09,2016-02-11,7,38,753,1,1\r\n4455,daniel giancola,daniel,giancola,2013-08-07,Male,1983-06-05,32,25 - 45,Hispanic,0,1,0,1,1,,,,12014508MM10A,2012-07-15,,388,M,Driving Under The Influence,1,13041630TC10A,(M2),,2013-09-23,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-07,Risk of Violence,1,Low,2013-08-07,,,1,0,47,1,1\r\n4457,jarvis lewis,jarvis,lewis,2013-08-19,Male,1985-10-31,30,25 - 45,African-American,0,4,0,0,5,-1,2013-08-18 10:34:27,2014-02-15 04:39:05,13011568CF10A,2013-08-18,,1,F,Aggravated Assault w/Firearm,1,14004267CF10A,(M1),0,2014-03-26,Possess Cannabis/20 Grams Or Less,2014-03-26,2014-10-16,,0,,,,,Risk of Recidivism,4,Low,2013-08-19,Risk of Violence,6,Medium,2013-08-19,2014-03-26,2014-10-16,5,180,219,1,1\r\n4459,timothy towns,timothy,towns,2013-08-12,Male,1994-06-12,21,Less than 25,African-American,0,4,0,0,1,-40,2013-07-03 10:42:54,2013-07-16 08:11:11,12012009CF10A,,2013-07-03,40,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-12,Risk of Violence,6,Medium,2013-08-12,2014-01-10,2014-03-15,1,0,151,0,0\r\n4461,renato schossler,renato,schossler,2013-04-04,Male,1951-04-24,64,Greater than 45,Caucasian,0,1,0,0,8,-1,2013-04-03 10:47:23,2013-04-04 07:38:50,13004781CF10A,2013-04-03,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-04,Risk of Violence,1,Low,2013-04-04,2013-04-03,2013-04-04,8,0,1093,0,0\r\n4462,sherise wright,sherise,wright,2013-10-01,Female,1990-01-19,26,25 - 45,African-American,0,3,0,0,1,35,2013-11-05 06:24:56,2013-12-19 10:27:50,13002846CF10A,,2013-03-18,197,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-01,Risk of Violence,2,Low,2013-10-01,2013-11-05,2013-12-19,1,0,35,0,0\r\n4463,catherine smith,catherine,smith,2014-05-09,Female,1971-01-22,45,Greater than 45,Caucasian,0,2,1,0,7,-1,2014-05-08 07:46:46,2014-05-09 01:24:37,14008795MM10A,,2014-05-09,0,F,arrest case no charge,1,14033591TC10A,(M2),0,2014-09-10,Operating W/O Valid License,2014-09-10,2014-09-12,,0,,,,,Risk of Recidivism,2,Low,2014-05-09,Risk of Violence,1,Low,2014-05-09,2014-09-10,2014-09-12,7,0,124,1,1\r\n4464,gervan mcglashan,gervan,mcglashan,2013-05-18,Male,1978-10-02,37,25 - 45,African-American,0,2,0,0,3,-1,2013-05-17 05:42:47,2013-05-18 07:44:03,13009556MM10A,2013-05-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-18,Risk of Violence,2,Low,2013-05-18,2013-12-18,2013-12-20,3,0,214,0,0\r\n4466,andrea davidson,andrea,davidson,2013-09-30,Female,1981-10-09,34,25 - 45,African-American,0,7,0,0,1,-1,2013-09-29 11:30:37,2014-01-23 12:04:18,13013656CF10A,2013-09-29,,1,F,Neglect Child / No Bodily Harm,1,15015747CF10A,(F3),,2015-12-09,Battery on Law Enforc Officer,,,,1,15015747CF10A,(F3),2015-12-09,Battery on Law Enforc Officer,Risk of Recidivism,7,Medium,2013-09-30,Risk of Violence,3,Low,2013-09-30,2013-09-29,2014-01-23,1,115,800,1,1\r\n4468,adolfo laurent,adolfo,laurent,2013-06-19,Male,1956-02-22,60,Greater than 45,Hispanic,0,1,0,0,4,-15,2013-06-04 01:12:55,2013-06-10 06:24:13,13007935CF10A,2013-06-03,,16,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-19,Risk of Violence,1,Low,2013-06-19,2013-11-16,2013-11-23,4,0,150,0,0\r\n4469,david swan,david,swan,2013-05-27,Male,1957-09-28,58,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-26 10:29:50,2013-05-27 06:15:59,13010092MM10A,2013-05-26,,1,M,Viol Injunction Protect Dom Vi,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-05-26,2013-05-27,0,0,1040,0,0\r\n4471,edgar cisneros,edgar,cisneros,2013-11-15,Male,1988-08-24,27,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-14 05:01:31,2013-11-15 02:59:54,13015860CF10A,2013-11-14,,1,F,Use Computer for Child Exploit,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-15,Risk of Violence,2,Low,2013-11-15,2014-07-01,2014-08-27,0,0,228,0,0\r\n4473,roosevelt kiser,roosevelt,kiser,2013-01-24,Male,1985-05-30,30,25 - 45,African-American,0,1,0,0,0,0,2013-01-24 05:01:12,2013-01-24 08:21:12,13001725MM10A,2013-01-24,,0,M,DUI Level 0.15 Or Minor In Veh,1,13027767TC10A,(M2),0,2013-06-24,Susp Drivers Lic 1st Offense,2013-06-24,2013-06-25,,0,,,,,Risk of Recidivism,1,Low,2013-01-24,Risk of Violence,2,Low,2013-01-24,2013-06-24,2013-06-25,0,0,151,1,1\r\n4475,sindy gourdet,sindy,gourdet,2013-05-13,Male,1990-10-25,25,25 - 45,African-American,0,2,0,2,0,0,2013-05-13 01:14:04,2013-05-13 01:57:13,13009149MM10A,2013-05-12,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-13,Risk of Violence,3,Low,2013-05-13,2013-11-12,2013-11-14,0,0,183,0,0\r\n4476,harry harrison,harry,harrison,2014-03-28,Male,1956-03-26,60,Greater than 45,African-American,0,8,0,0,19,0,2014-03-28 03:56:54,2014-05-06 04:04:40,14004378CF10A,2014-03-28,,0,F,Possession of Cocaine,1,15009950CF10A,(F3),1,2015-08-01,Possession of Cocaine,2015-08-02,2015-10-28,,0,,,,,Risk of Recidivism,8,High,2014-03-28,Risk of Violence,5,Medium,2014-03-28,2014-03-28,2014-05-06,19,39,491,1,1\r\n4478,jason martin,jason,martin,2013-04-23,Male,1959-07-05,56,Greater than 45,African-American,0,8,0,0,24,22,2013-05-15 01:57:35,2013-05-21 11:04:32,13000995CF10A,2013-01-21,,92,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-23,Risk of Violence,4,Low,2013-04-23,2013-05-15,2013-05-21,24,0,22,0,0\r\n4479,vladimir fontaine,vladimir,fontaine,2013-08-25,Male,1982-12-12,33,25 - 45,African-American,0,1,0,0,2,-1,2013-08-24 06:47:25,2013-08-25 08:17:55,13016205MM10A,2013-08-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-25,Risk of Violence,2,Low,2013-08-25,2013-08-24,2013-08-25,2,0,950,0,0\r\n4480,juan morales,juan,morales,2013-08-06,Male,1990-09-28,25,25 - 45,Caucasian,0,9,1,0,9,-1,2013-08-05 10:43:19,2013-11-01 10:33:06,13010974CF10A,2013-08-05,,1,F,Burglary Dwelling Occupied,1,15002732CF10A,(M2),0,2015-02-26,Operating W/O Valid License,2015-02-26,2015-02-28,,0,,,,,Risk of Recidivism,9,High,2013-08-06,Risk of Violence,9,High,2013-08-06,2015-02-26,2015-02-28,9,87,569,1,1\r\n4481,richard francis,richard,francis,2013-07-02,Male,1968-12-10,47,Greater than 45,African-American,0,7,0,0,15,-60,2013-05-03 03:11:46,2013-07-02 10:44:18,13006347CF10A,2013-05-03,,60,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-07-02,Risk of Violence,2,Low,2013-07-02,2013-05-03,2013-07-02,15,0,1004,0,0\r\n4483,terrance irvin,terrance,irvin,2013-10-12,Male,1984-04-10,32,25 - 45,African-American,0,7,0,0,6,-1,2013-10-11 05:38:14,2013-10-15 07:11:17,13014279CF10A,2013-10-11,,1,F,Grand Theft in the 3rd Degree,1,13017581CF10A,(F3),1,2013-12-20,Felony Battery w/Prior Convict,2013-12-21,2014-02-21,,1,13017581CF10A,(F3),2013-12-20,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-10-12,Risk of Violence,4,Low,2013-10-12,2013-10-11,2013-10-15,6,3,69,1,1\r\n4485,david moise,david,moise,2013-11-09,Male,1991-06-06,24,Less than 25,African-American,0,3,0,0,3,-1,2013-11-08 03:38:20,2013-11-09 02:14:52,13015603CF10A,2013-11-08,,1,F,Crimin Mischief Damage $1000+,1,13015852CF10A,(F3),0,2013-11-14,Grand Theft in the 3rd Degree,2013-11-14,2013-11-16,,0,,,,,Risk of Recidivism,3,Low,2013-11-09,Risk of Violence,4,Low,2013-11-09,2013-11-14,2013-11-16,3,0,5,1,1\r\n4486,christopher garcia,christopher,garcia,2014-02-19,Male,1992-12-31,23,Less than 25,Caucasian,0,8,1,0,2,-1,2014-02-18 10:27:04,2014-02-26 05:50:15,12010459CF10A,,2014-02-18,1,F,arrest case no charge,1,15007279CF10A,(F3),,2014-11-18,False Verif Ownership Pawn Shp,,,,0,,,,,Risk of Recidivism,8,High,2014-02-19,Risk of Violence,8,High,2014-02-19,2014-09-28,2014-09-28,2,7,221,0,1\r\n4488,andres caicedo,andres,caicedo,2014-04-28,Male,1993-02-10,23,Less than 25,Hispanic,0,6,0,0,3,-1,2014-04-27 08:24:41,2014-04-30 09:43:46,14005858CF10A,2014-04-27,,1,F,Burglary Conveyance Unoccup,1,14010384MM10A,(M1),0,2014-07-06,Trespass/Property/Other Structure,2014-07-06,2014-07-06,,0,,,,,Risk of Recidivism,6,Medium,2014-04-28,Risk of Violence,5,Medium,2014-04-28,2014-07-06,2014-07-06,3,2,69,0,1\r\n4491,rovens daphnis,rovens,daphnis,2013-01-04,Male,1990-07-05,25,25 - 45,African-American,0,4,0,0,1,-1,2013-01-03 09:57:32,2013-01-04 01:36:49,13000138CF10A,2013-01-03,,1,F,Possession of Hydrocodone,1,13006172CF10A,(M1),1,2013-04-29,Resist/Obstruct W/O Violence,2013-04-30,2013-12-03,,1,13006172CF10A,(M1),2013-04-29,Battery,Risk of Recidivism,4,Low,2013-01-04,Risk of Violence,5,Medium,2013-01-04,2013-03-11,2013-03-15,1,0,66,0,1\r\n4492,linsey calliste,linsey,calliste,2014-02-02,Female,1995-11-17,20,Less than 25,African-American,0,4,0,0,0,-1,2014-02-01 10:09:26,2014-02-02 08:52:57,14001455CF10A,2014-02-01,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-02,Risk of Violence,6,Medium,2014-02-02,2014-02-01,2014-02-02,0,0,789,0,0\r\n4493,kenneth everett,kenneth,everett,2014-02-19,Male,1983-06-01,32,25 - 45,African-American,0,9,0,4,9,-1,2014-02-18 06:56:00,2014-02-19 02:08:42,14002314CF10A,2014-02-18,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-19,Risk of Violence,7,Medium,2014-02-19,2014-03-31,2014-04-01,9,0,40,0,0\r\n4494,auta goudreau,auta,goudreau,2013-01-06,Female,1966-06-22,49,Greater than 45,African-American,0,1,0,0,0,0,2013-01-06 03:17:29,2013-01-07 08:39:20,13000247CF10A,2013-01-06,,0,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-06,Risk of Violence,2,Low,2013-01-06,2013-01-06,2013-01-07,0,1,1181,0,0\r\n4495,kadijah julien,kadijah,julien,2013-09-03,Male,1993-10-28,22,Less than 25,African-American,0,3,0,0,1,-4,2013-08-30 03:45:48,2013-08-31 06:14:35,13012305CF10A,2013-08-30,,4,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-03,Risk of Violence,5,Medium,2013-09-03,2013-08-30,2013-08-31,1,0,941,0,0\r\n4496,brandon brown-cruz,brandon,brown-cruz,2013-11-09,Male,1991-11-13,24,Less than 25,African-American,0,3,0,0,0,-1,2013-11-08 12:56:47,2013-11-09 02:08:10,13015602CF10A,2013-11-08,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-09,Risk of Violence,4,Low,2013-11-09,2013-11-08,2013-11-09,0,0,874,0,0\r\n4498,zachary raquepaw,zachary,raquepaw,2014-10-22,Male,1989-06-24,26,25 - 45,Caucasian,0,7,0,0,10,7,2014-10-29 01:39:00,2014-10-29 08:28:41,14011655CF10A,2014-06-30,,114,F,Driving While License Revoked,1,14014528CF10A,(M1),1,2014-10-28,Resist/Obstruct W/O Violence,2014-10-29,2014-10-29,,0,,,,,Risk of Recidivism,7,Medium,2014-10-22,Risk of Violence,5,Medium,2014-10-22,2014-10-29,2014-10-29,10,0,6,1,1\r\n4500,henry carter,henry,carter,2013-05-18,Male,1986-10-31,29,25 - 45,African-American,0,8,0,0,5,,,,10017179CF10A,2010-09-23,,968,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-18,Risk of Violence,5,Medium,2013-05-18,2009-03-17,2010-01-29,5,0,1049,0,0\r\n4501,vonda rivers,vonda,rivers,2014-04-04,Female,1996-03-07,20,Less than 25,African-American,1,10,0,0,1,483,2015-07-31 12:24:29,2015-08-12 05:12:48,14003604CF10A,2014-02-11,,52,F,Grand Theft (Motor Vehicle),1,15000126MM30A,(M2),210,2015-01-02,Petit Theft,2015-07-31,2015-08-12,,0,,,,,Risk of Recidivism,10,High,2014-04-04,Risk of Violence,9,High,2014-04-04,2015-07-31,2015-08-12,1,0,273,1,1\r\n4502,thomas hansler,thomas,hansler,2013-04-04,Male,1966-08-30,49,Greater than 45,Caucasian,0,1,0,0,1,,,,11020517MM10A,2011-09-13,,569,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-04,Risk of Violence,1,Low,2013-04-04,,,1,0,1093,0,0\r\n4503,kendall dunbar,kendall,dunbar,2014-05-21,Male,1986-10-17,29,25 - 45,African-American,0,2,0,0,1,0,2014-05-21 02:31:07,2014-05-23 01:56:21,14008230MM10A,2014-05-21,,0,M,Battery,1,14024720TC10A,(M2),0,2014-07-06,Expired DL More Than 6 Months,2014-07-06,2014-07-07,,0,,,,,Risk of Recidivism,2,Low,2014-05-21,Risk of Violence,2,Low,2014-05-21,2014-06-12,2014-06-12,1,2,22,0,1\r\n4504,jerron pitts,jerron,pitts,2014-09-04,Male,1997-07-22,18,Less than 25,African-American,3,9,0,0,2,-85,2014-06-11 12:43:36,2014-09-04 10:12:00,14009450CF10A,,2014-07-15,51,F,arrest case no charge,1,15006896CF10A,(F3),,2015-05-27,Possession Burglary Tools,,,,0,,,,,Risk of Recidivism,9,High,2014-09-04,Risk of Violence,7,Medium,2014-09-04,2015-01-06,2015-01-15,2,0,124,0,1\r\n4505,zackary salamone,zackary,salamone,2013-03-05,Male,1993-05-05,22,Less than 25,Caucasian,0,6,0,0,0,-1,2013-03-04 08:02:42,2013-03-05 09:56:34,13003258CF10A,2013-03-04,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-05,Risk of Violence,5,Medium,2013-03-05,2013-10-10,2013-10-22,0,0,219,0,0\r\n4506,garcia hilaire,garcia,hilaire,2014-02-18,Male,1981-12-29,34,25 - 45,African-American,3,10,0,0,8,,,,11014207CF10A,,2011-08-24,909,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-02-18,Risk of Violence,7,Medium,2014-02-18,2006-03-23,2010-02-21,8,0,773,0,0\r\n4508,laver dent,laver,dent,2013-04-29,Female,1989-10-03,26,25 - 45,African-American,0,5,0,0,3,-1,2013-04-28 09:29:51,2013-04-29 08:39:30,13006099CF10A,2013-04-28,,1,F,Aggravated Assault W/dead Weap,1,15015089CF10A,(F3),,2015-11-21,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-29,Risk of Violence,4,Low,2013-04-29,2013-04-28,2013-04-29,3,0,936,1,0\r\n4509,john guillaume,john,guillaume,2013-10-24,Male,1994-05-20,21,Less than 25,African-American,0,7,0,0,0,-1,2013-10-23 02:34:20,2013-10-26 08:28:29,13017848CF10A,2013-10-23,,1,F,Burglary Unoccupied Dwelling,1,15011874CF10A,(F2),,2015-08-17,Burglary Dwelling Occupied,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-24,Risk of Violence,7,Medium,2013-10-24,2013-12-27,2013-12-30,0,2,64,0,1\r\n4510,carlos calle,carlos,calle,2013-03-09,Male,1962-04-13,54,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-03-08 01:01:34,2013-04-16 01:26:45,13004726MM10A,2013-03-08,,1,M,Battery,1,15035132TC20A,(M1),,2015-06-06,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2014-09-10,2014-09-18,2,38,550,0,0\r\n4511,tommie carter,tommie,carter,2013-01-09,Male,1956-07-08,59,Greater than 45,African-American,0,1,0,0,1,-1,2013-01-08 07:37:28,2013-01-09 12:43:37,13000317CF10A,2013-01-08,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-09,Risk of Violence,1,Low,2013-01-09,2013-01-08,2013-01-09,1,0,1178,0,0\r\n4512,daniel swakcerd,daniel,swakcerd,2014-05-23,Male,1994-02-02,22,Less than 25,African-American,0,8,0,1,0,-1,2014-05-22 06:29:14,2014-05-23 08:19:39,14007176CF10A,2014-05-22,,1,F,Uttering a Forged Instrument,1,15005468CF10A,(F3),0,2015-04-26,Poss Pyrrolidinovalerophenone,2015-04-26,2015-05-08,,0,,,,,Risk of Recidivism,8,High,2014-05-23,Risk of Violence,8,High,2014-05-23,2015-04-26,2015-05-08,0,0,338,1,1\r\n4513,jackson exalus,jackson,exalus,2013-05-19,Male,1991-11-25,24,Less than 25,Other,0,4,0,0,1,-1,2013-05-18 05:53:46,2013-05-23 03:55:02,13007120CF10A,2013-05-18,,1,F,Aggravated Assault W/dead Weap,1,15004135MM10A,(M1),1,2015-03-11,Resist/Obstruct W/O Violence,2015-03-12,2015-04-21,,1,15004135MM10A,(M1),2015-03-11,Battery,Risk of Recidivism,4,Low,2013-05-19,Risk of Violence,6,Medium,2013-05-19,2013-05-18,2013-05-23,1,4,661,1,1\r\n4514,rod robinson,rod,robinson,2013-12-26,Male,1951-10-08,64,Greater than 45,African-American,0,7,0,0,20,-1,2013-12-25 10:09:07,2013-12-27 11:47:33,13017781CF10A,2013-12-25,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-26,Risk of Violence,1,Low,2013-12-26,2013-12-25,2013-12-27,20,1,827,0,0\r\n4516,michael denonno,michael,denonno,2013-09-11,Male,1970-05-10,45,Greater than 45,Caucasian,0,1,0,0,1,0,2013-09-11 02:40:04,2013-09-11 08:28:58,13017307MM10A,2013-09-11,,0,M,Driving Under The Influence,1,14002476MM20A,(M2),,2014-08-31,Disorderly Conduct,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-11,Risk of Violence,1,Low,2013-09-11,2014-01-03,2014-01-03,1,0,114,0,1\r\n4517,jameeka obriant,jameeka,obriant,2013-06-27,Female,1993-05-16,22,Less than 25,African-American,0,4,0,0,0,-7,2013-06-20 10:32:45,2013-06-26 09:05:59,13008701CF10A,2013-06-20,,7,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-27,Risk of Violence,5,Medium,2013-06-27,2013-06-20,2013-06-26,0,0,1009,0,0\r\n4518,jason lacroix,jason,lacroix,2014-01-14,Male,1992-01-26,24,Less than 25,African-American,0,3,0,0,5,-1,2014-01-13 08:08:43,2014-01-14 07:43:20,14000575CF10A,2014-01-13,,1,F,Felony Driving While Lic Suspd,1,14075727TC40A,(M2),,2014-09-18,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-14,Risk of Violence,4,Low,2014-01-14,2014-01-13,2014-01-14,5,0,247,1,1\r\n4520,rakesha hills,rakesha,hills,2013-09-26,Female,1986-04-01,30,25 - 45,African-American,0,6,0,0,3,0,2013-09-26 04:53:11,2013-10-08 05:32:22,13013530CF10A,2013-09-26,,0,F,Felony Driving While Lic Suspd,1,14003801MM10A,(M1),0,2014-03-05,Battery,2014-03-05,2014-03-06,,1,14003801MM10A,(M1),2014-03-05,Battery,Risk of Recidivism,6,Medium,2013-09-26,Risk of Violence,3,Low,2013-09-26,2014-03-05,2014-03-06,3,12,160,1,1\r\n4521,harriet blake,harriet,blake,2013-12-06,Female,1989-04-18,27,25 - 45,Caucasian,0,5,0,0,0,0,2013-12-06 03:15:24,2013-12-06 09:29:08,13016895CF10A,2013-12-06,,0,F,,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-06,Risk of Violence,3,Low,2013-12-06,2013-12-06,2013-12-06,0,0,847,0,0\r\n4524,matthew haffner,matthew,haffner,2013-12-30,Male,1995-12-02,20,Less than 25,Caucasian,0,4,0,2,0,-3,2013-12-27 01:47:20,2013-12-27 08:51:11,13017820CF10A,2013-12-26,,4,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-30,Risk of Violence,7,Medium,2013-12-30,2013-12-27,2013-12-27,0,0,823,0,0\r\n4525,eimar galvis,eimar,galvis,2013-01-03,Male,1987-03-07,29,25 - 45,Hispanic,0,5,0,0,0,-1,2013-01-02 10:05:22,2013-01-09 05:44:25,13000098CF10A,2013-01-02,,1,F,Traff In Cocaine <400g>150 Kil,1,15004400MM10A,(M1),,2014-12-11,Extradition/Defendants,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-03,Risk of Violence,4,Low,2013-01-03,2013-01-02,2013-01-09,0,6,707,1,1\r\n4526,ryan franz,ryan,franz,2013-06-17,Male,1987-11-24,28,25 - 45,Caucasian,0,5,0,0,5,-23,2013-05-25 07:41:24,2013-06-15 05:29:45,13007492CF10A,,2013-05-25,23,F,arrest case no charge,1,13001501MM30A,(M2),,2013-10-18,Criminal Mischief,,,,0,,,,,Risk of Recidivism,5,Medium,2013-06-17,Risk of Violence,4,Low,2013-06-17,2013-05-25,2013-06-15,5,0,123,1,1\r\n4527,everson alexis,everson,alexis,2014-01-28,Male,1978-05-03,37,25 - 45,Other,0,1,0,0,0,-1,2014-01-27 04:34:50,2014-01-28 08:12:42,14001503MM10A,2014-01-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-28,Risk of Violence,1,Low,2014-01-28,2014-01-27,2014-01-28,0,0,794,0,0\r\n4530,andre eaton,andre,eaton,2013-11-27,Male,1990-07-15,25,25 - 45,Other,0,2,0,0,2,0,2013-11-27 12:32:45,2013-11-27 02:52:06,13016493CF10A,2013-11-26,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-27,Risk of Violence,3,Low,2013-11-27,2015-04-10,2015-04-11,2,0,499,0,0\r\n4533,lenin rincon,lenin,rincon,2013-01-04,Male,1993-03-25,23,Less than 25,Caucasian,0,6,0,1,3,18,2013-01-22 11:55:40,2013-09-24 10:11:00,13000010CF10A,,2012-12-31,4,F,arrest case no charge,1,13001020CF10A,(F3),5,2013-01-17,Aggrav Stalking After Injunctn,2013-01-22,2013-09-24,,0,,,,,Risk of Recidivism,6,Medium,2013-01-04,Risk of Violence,6,Medium,2013-01-04,2013-01-22,2013-09-24,3,0,13,1,1\r\n4534,lakesia hawkins,lakesia,hawkins,2014-02-05,Female,1983-04-29,32,25 - 45,African-American,0,2,0,0,0,-1,2014-02-04 12:32:17,2014-02-05 09:57:20,14001960MM10A,2014-02-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-05,Risk of Violence,1,Low,2014-02-05,2014-02-04,2014-02-05,0,0,786,0,0\r\n4536,dena gaines,dena,gaines,2013-08-19,Female,1971-07-03,44,25 - 45,Caucasian,0,1,0,0,1,-3,2013-08-16 09:32:39,2013-08-17 06:40:59,13011514CF10A,2013-08-16,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-10-15,2013-10-16,1,0,57,0,0\r\n4537,alphonse mills,alphonse,mills,2013-03-09,Male,1975-04-10,41,25 - 45,African-American,0,4,0,0,8,-1,2013-03-08 11:20:25,2013-03-10 01:38:59,13003467CF10A,2013-03-08,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-09,Risk of Violence,2,Low,2013-03-09,2016-02-10,2016-02-10,8,1,1068,0,0\r\n4541,jeffrey chidsey,jeffrey,chidsey,2013-03-18,Male,1985-11-10,30,25 - 45,Caucasian,0,2,0,0,3,21,2013-04-08 04:09:44,2013-05-04 02:26:09,15014942CF10A,2009-08-17,,1309,F,Murder In 2nd Degree W/firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-18,Risk of Violence,2,Low,2013-03-18,2013-04-08,2013-05-04,3,0,21,0,0\r\n4544,bradford crayton,bradford,crayton,2013-05-24,Male,1988-10-17,27,25 - 45,African-American,0,5,0,0,2,0,2013-05-24 04:38:03,2013-05-31 10:05:39,13010012MM10A,2013-05-24,,0,M,Battery,1,14003318CF10A,(M1),0,2014-03-09,Battery,2014-03-09,2014-05-16,,1,14003318CF10A,(F2),2014-03-09,Agg Battery Grt/Bod/Harm,Risk of Recidivism,5,Medium,2013-05-24,Risk of Violence,6,Medium,2013-05-24,2014-03-09,2014-05-16,2,7,289,1,1\r\n4546,rashenna royster,rashenna,royster,2014-02-11,Male,1983-10-01,32,25 - 45,African-American,0,1,0,0,0,-1,2014-02-10 09:20:37,2014-02-11 01:25:21,14001875CF10A,2014-02-10,,1,F,Possession of Cocaine,1,15001260MM30A,(M2),,2015-07-26,Petit Theft,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-11,Risk of Violence,1,Low,2014-02-11,2014-02-10,2014-02-11,0,0,530,1,1\r\n4550,michael floyd,michael,floyd,2014-02-09,Male,1975-12-18,40,25 - 45,African-American,0,8,1,1,24,-1,2014-02-08 04:41:57,2014-02-09 07:16:35,14002194MM10A,2014-02-08,,1,M,Battery,1,14012662MM10A,(M1),0,2014-08-22,Resist/Obstruct W/O Violence,2014-08-22,2014-08-23,,0,,,,,Risk of Recidivism,8,High,2014-02-09,Risk of Violence,7,Medium,2014-02-09,2014-08-22,2014-08-23,24,0,194,1,1\r\n4552,felix regis,felix,regis,2014-01-08,Male,1992-10-24,23,Less than 25,African-American,0,2,0,0,1,-45,2013-11-24 07:49:16,2013-11-24 08:12:10,13016330CF10A,2013-11-24,,45,F,,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,3,Low,2014-01-08,2014-08-28,2014-08-30,1,0,232,0,0\r\n4553,francisco sanchezlagomarcino,francisco,sanchezlagomarcino,2013-04-27,Male,1981-12-15,34,25 - 45,Hispanic,0,3,0,0,2,0,2013-04-27 02:33:25,2013-04-27 07:29:37,13020330TC10A,2013-04-27,,0,M,Operating W/O Valid License,1,16000043CF10A,(M2),0,2016-01-01,Unlaw LicTag/Sticker Attach,2016-01-01,2016-01-03,,0,,,,,Risk of Recidivism,3,Low,2013-04-27,Risk of Violence,2,Low,2013-04-27,2016-01-01,2016-01-03,2,0,979,1,0\r\n4554,patrick jean,patrick,jean,2013-12-06,Male,1983-04-03,33,25 - 45,African-American,0,10,0,0,1,,,,04017955CF10A,,2013-11-29,7,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-12-06,Risk of Violence,6,Medium,2013-12-06,,,1,0,847,0,0\r\n4556,carmelle prospere,carmelle,prospere,2014-03-23,Female,1983-02-10,33,25 - 45,African-American,0,4,0,0,3,-1,2014-03-22 07:22:13,2014-03-23 09:07:58,14005016MM10A,2014-03-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-23,Risk of Violence,1,Low,2014-03-23,2014-03-22,2014-03-23,3,0,740,0,0\r\n4557,nicholas brady,nicholas,brady,2013-07-16,Male,1982-08-27,33,25 - 45,Caucasian,0,5,0,0,3,-42,2013-06-04 12:15:50,2013-07-15 11:24:04,13007866CF10A,2013-06-03,,43,F,False Ownership Info/Pawn Item,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-16,Risk of Violence,3,Low,2013-07-16,2013-09-09,2014-01-26,3,0,55,0,0\r\n4558,daniel cox,daniel,cox,2014-02-26,Male,1983-01-19,33,25 - 45,Caucasian,0,1,0,0,0,-1,2014-02-25 04:14:26,2014-03-04 02:26:37,14002666CF10A,2014-02-25,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-26,Risk of Violence,2,Low,2014-02-26,2014-02-25,2014-03-04,0,6,765,0,0\r\n4559,david doughty,david,doughty,2014-02-18,Male,1975-03-26,41,25 - 45,African-American,0,6,0,0,2,46,2014-04-05 12:50:01,2014-04-17 03:15:17,13017774MM10A,,2013-12-23,57,M,arrest case no charge,1,14005800MO10A,(MO3),0,2014-04-05,Petit Theft,2014-04-05,2014-04-17,,1,14006612MM10A,(M1),2014-04-20,Battery,Risk of Recidivism,6,Medium,2014-02-18,Risk of Violence,5,Medium,2014-02-18,2014-04-05,2014-04-17,2,0,46,1,1\r\n4560,angel hernandez,angel,hernandez,2013-10-01,Male,1978-09-04,37,25 - 45,Hispanic,0,1,0,0,1,-1,2013-09-30 10:22:08,2013-10-01 07:31:46,13018614MM10A,2013-09-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2013-09-30,2013-10-01,1,0,913,0,0\r\n4562,adrien petit,adrien,petit,2013-08-16,Male,1988-04-01,28,25 - 45,African-American,0,5,0,0,9,-1,2013-08-15 12:50:23,2013-08-17 04:14:04,13015497MM10A,2013-08-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-16,Risk of Violence,4,Low,2013-08-16,2013-08-15,2013-08-17,9,1,959,0,0\r\n4563,chercolby sweet-foy,chercolby,sweet-foy,2013-02-26,Female,1990-12-16,25,25 - 45,African-American,0,5,0,0,0,-1,2013-02-25 10:08:13,2013-02-26 12:52:06,13002860CF10A,2013-02-25,,1,F,Aggravated Assault W/dead Weap,1,13010198CF10A,(F3),0,2013-07-20,Agg Assault W/int Com Fel Dome,2013-07-20,2013-07-21,,1,13010198CF10A,(F3),2013-07-20,Agg Assault W/int Com Fel Dome,Risk of Recidivism,5,Medium,2013-02-26,Risk of Violence,5,Medium,2013-02-26,2013-07-20,2013-07-21,0,0,144,1,1\r\n4564,luis perez,luis,perez,2013-11-16,Male,1965-03-16,51,Greater than 45,Other,0,4,0,0,14,496,2015-03-27 01:02:00,2015-03-31 01:36:21,10007133CF10A,2010-04-21,,1305,F,Grand Theft (motor Vehicle),1,15004534MM10A,(M1),,2015-03-15,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-16,Risk of Violence,2,Low,2013-11-16,2015-04-08,2015-04-30,14,0,484,1,1\r\n4566,latura hall,latura,hall,2013-02-03,Female,1985-09-24,30,25 - 45,African-American,0,4,0,0,1,-1,2013-02-02 05:10:03,2013-02-04 05:37:02,13002402MM10A,2013-02-02,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-03,Risk of Violence,3,Low,2013-02-03,2013-02-02,2013-02-04,1,1,1153,0,0\r\n4567,valencia wilsonbrown,valencia,wilsonbrown,2013-04-19,Female,1968-08-04,47,Greater than 45,African-American,0,2,0,0,0,-2,2013-04-17 11:16:09,2013-04-18 08:01:15,13007461MM10A,2013-04-17,,2,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-17,2013-04-18,0,0,1078,0,0\r\n4568,samantha lynch,samantha,lynch,2014-02-19,Male,1992-02-21,24,Less than 25,Caucasian,0,2,0,0,0,-1,2014-02-18 01:35:21,2014-02-19 10:08:11,14002294CF10A,2014-02-18,,1,F,Grand Theft in the 3rd Degree,1,14001353MM30A,(M1),,2014-08-15,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-19,Risk of Violence,3,Low,2014-02-19,2014-02-18,2014-02-19,0,0,177,1,1\r\n4569,tyson harper,tyson,harper,2013-08-29,Male,1978-10-02,37,25 - 45,Caucasian,0,5,0,0,5,-105,2013-05-16 10:40:48,2013-08-29 10:25:21,12002486MM10A,,2013-05-17,104,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-29,Risk of Violence,1,Low,2013-08-29,2014-07-18,2014-12-02,5,0,323,0,0\r\n4574,christian mcdaniel,christian,mcdaniel,2013-01-13,Male,1984-11-25,31,25 - 45,Caucasian,0,8,0,0,9,0,2013-01-13 03:26:50,2013-05-10 01:28:33,11014072CF10A,,2013-01-13,0,F,arrest case no charge,1,14000700CF10A,(F3),0,2014-01-17,Possession of Cocaine,2014-01-17,2014-01-17,,1,14004052CF10A,(F3),2014-03-22,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2013-01-13,Risk of Violence,4,Low,2013-01-13,2014-01-17,2014-01-17,9,117,369,0,1\r\n4576,christina deluca,christina,deluca,2013-03-20,Female,1986-01-18,30,25 - 45,Caucasian,0,3,0,0,1,-43,2013-02-05 04:36:11,2013-02-05 07:27:49,13001785CF10A,2013-02-05,,43,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-20,Risk of Violence,2,Low,2013-03-20,2013-02-05,2013-02-05,1,0,1108,0,0\r\n4579,lee wright,lee,wright,2013-05-26,Male,1963-09-04,52,Greater than 45,African-American,0,4,0,0,0,-1,2013-05-25 08:17:56,2013-06-20 08:38:12,13007488CF10A,2013-05-25,,1,F,Neglect Child / Bodily Harm,1,14005961CF10A,(F3),0,2014-04-29,Driving While License Revoked,2014-04-29,2014-04-30,,0,,,,,Risk of Recidivism,4,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2014-04-29,2014-04-30,0,25,338,1,1\r\n4580,darren mcbride,darren,mcbride,2013-03-20,Male,1990-12-12,25,25 - 45,African-American,0,10,0,1,5,-1,2013-03-19 07:14:55,2013-11-10 12:29:30,13003967CF10A,2013-03-19,,1,F,Poss Meth/Diox/Meth/Amp (MDMA),1,14013036CF10A,(F3),0,2014-09-26,Possession of Cocaine,2014-09-26,2014-09-27,,0,,,,,Risk of Recidivism,10,High,2013-03-20,Risk of Violence,8,High,2013-03-20,2014-09-26,2014-09-27,5,235,555,1,1\r\n4581,frank battle,frank,battle,2013-09-10,Male,1955-09-10,60,Greater than 45,African-American,0,9,0,0,10,,,,12005812CF10A,,2013-05-29,104,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-10,Risk of Violence,4,Low,2013-09-10,2008-02-21,2009-08-18,10,0,934,0,0\r\n4582,renee monroe,renee,monroe,2013-03-19,Female,1969-07-27,46,Greater than 45,African-American,0,8,0,0,7,-1,2013-03-18 11:13:20,2013-04-06 08:43:39,13005330MM10A,2013-03-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-19,Risk of Violence,3,Low,2013-03-19,2013-03-18,2013-04-06,7,18,1109,0,0\r\n4584,scott jonas,scott,jonas,2013-04-18,Male,1953-09-17,62,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-04-17 12:42:29,2013-04-18 01:50:29,13007466MM10A,2013-04-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2013-04-17,2013-04-18,3,0,1079,0,0\r\n4586,peter samuels,peter,samuels,2013-04-27,Male,1958-12-10,57,Greater than 45,Other,0,4,0,0,10,246,2013-12-29 01:34:37,2014-06-29 01:24:47,13006061CF10A,2013-04-27,,0,F,Possession of Cocaine,1,13017920CF10A,(F3),0,2013-12-29,Felony Petit Theft,2013-12-29,2014-06-29,,0,,,,,Risk of Recidivism,4,Low,2013-04-27,Risk of Violence,3,Low,2013-04-27,2013-12-29,2014-06-29,10,0,246,1,1\r\n4587,william mckinley,william,mckinley,2014-08-21,Male,1979-08-07,36,25 - 45,Caucasian,0,7,0,0,0,-1,2014-08-20 11:37:21,2014-08-26 09:21:52,14012584MM10A,2014-08-20,,1,M,Battery,1,14012841MM10A,(M1),0,2014-08-27,Viol Pretrial Release Dom Viol,2014-08-27,2014-08-28,,0,,,,,Risk of Recidivism,7,Medium,2014-08-21,Risk of Violence,4,Low,2014-08-21,2014-08-27,2014-08-28,0,5,6,1,1\r\n4588,andre robinson,andre,robinson,2014-04-26,Male,1991-10-04,24,Less than 25,African-American,0,3,0,1,2,-1,2014-04-25 07:31:18,2014-05-06 04:48:36,14005768CF10A,2014-04-25,,1,F,Trans/Harm/Material to a Minor,1,14083273TC30A,(M2),,2014-10-03,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2014-04-26,Risk of Violence,4,Low,2014-04-26,2014-04-25,2014-05-06,2,10,160,1,1\r\n4590,jason figueroa,jason,figueroa,2014-09-14,Male,1978-09-08,37,25 - 45,Hispanic,0,2,0,0,3,-1,2014-09-13 01:30:45,2014-09-15 03:15:00,14012445CF10A,2014-09-13,,1,M,Felony Battery (Dom Strang),1,15058119TC20A,(M2),35,2015-10-13,Driving License Suspended,2015-11-17,2015-11-23,,0,,,,,Risk of Recidivism,2,Low,2014-09-14,Risk of Violence,1,Low,2014-09-14,2015-09-11,2015-09-22,3,1,362,0,1\r\n4591,clinton johnson,clinton,johnson,2013-01-06,Male,1991-01-15,25,25 - 45,Caucasian,0,9,2,1,9,0,2013-01-06 04:36:22,2013-03-01 07:44:45,12007890CF10A,,2013-01-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-06,Risk of Violence,9,High,2013-01-06,2013-01-06,2013-03-01,9,54,1181,0,0\r\n4592,kenyatti collins,kenyatti,collins,2013-09-10,Male,1995-01-06,21,Less than 25,African-American,0,10,0,1,0,-1,2013-09-09 08:02:10,2013-10-14 08:09:28,13017212MM10A,2013-09-09,,1,M,Battery,1,13021107MM10A,(M1),0,2013-11-08,Resist/Obstruct W/O Violence,2013-11-08,2013-11-23,,0,,,,,Risk of Recidivism,10,High,2013-09-10,Risk of Violence,9,High,2013-09-10,2013-11-08,2013-11-23,0,34,59,1,1\r\n4593,talal abouhana,talal,abouhana,2013-02-17,Male,1978-04-19,38,25 - 45,Asian,0,1,0,0,0,-1,2013-02-16 08:04:12,2013-02-17 01:58:20,13003376MM10A,2013-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-17,Risk of Violence,1,Low,2013-02-17,2013-02-16,2013-02-17,0,0,1139,0,0\r\n4595,baron howard,baron,howard,2013-01-04,Male,1986-05-24,29,25 - 45,African-American,0,7,0,0,5,-1,2013-01-03 05:32:52,2013-01-08 05:47:07,13000107CF10A,2013-01-03,,1,F,Possession of Cannabis,1,13019750TC10A,(M2),,2013-01-24,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-04,Risk of Violence,5,Medium,2013-01-04,2013-01-03,2013-01-08,5,4,20,1,1\r\n4596,raynard middleton,raynard,middleton,2013-04-19,Male,1963-10-29,52,Greater than 45,African-American,0,1,0,0,0,0,2013-04-19 02:24:36,2013-04-19 07:57:07,13007616MM10A,2013-04-18,,1,M,Battery,1,14001309TC10A,(M2),,2013-07-24,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-19,2013-04-19,0,0,96,1,1\r\n4598,nikevis mitchell,nikevis,mitchell,2013-05-10,Male,1986-05-07,29,25 - 45,African-American,0,10,0,0,5,-1,2013-05-09 01:29:58,2013-05-11 06:16:17,13006644CF10A,2013-05-09,,1,F,Possession Burglary Tools,1,15001535MM30A,(M1),,2015-09-10,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,10,High,2013-05-10,Risk of Violence,8,High,2013-05-10,2013-05-09,2013-05-11,5,1,853,1,0\r\n4599,yves guignard,yves,guignard,2014-03-15,Male,1956-11-28,59,Greater than 45,African-American,0,2,0,0,13,-1,2014-03-14 04:07:11,2014-11-11 11:32:54,14003627CF10A,2014-03-14,,1,F,Felony Petit Theft,1,15000830CF10A,(F3),0,2015-01-19,Felony Petit Theft,2015-01-19,2015-04-07,,0,,,,,Risk of Recidivism,2,Low,2014-03-15,Risk of Violence,2,Low,2014-03-15,2015-01-19,2015-04-07,13,241,310,1,1\r\n4603,eric taylor,eric,taylor,2013-02-16,Male,1976-08-08,39,25 - 45,African-American,0,3,0,0,2,0,2013-02-16 03:49:30,2013-02-16 08:09:00,13002423CF10A,2013-02-16,,0,F,Possession of Cannabis,1,15025409TC10A,(M2),,2015-09-01,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-16,Risk of Violence,1,Low,2013-02-16,2013-02-16,2013-02-16,2,0,927,1,0\r\n4604,ovidio vasquez,ovidio,vasquez,2013-02-28,Male,1968-01-08,48,Greater than 45,Hispanic,0,1,0,0,1,0,2013-02-28 02:24:37,2013-08-14 11:30:08,13004137MM10A,2013-02-27,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-28,Risk of Violence,1,Low,2013-02-28,2013-02-28,2013-08-14,1,167,1128,0,0\r\n4605,suzette tillit,suzette,tillit,2013-05-04,Male,1984-07-15,31,25 - 45,Other,0,1,0,0,3,-1,2013-05-03 12:37:24,2013-05-04 05:39:19,13008631MM10A,2013-05-03,,1,M,Battery,1,14001219MM30A,(M2),,2013-12-20,Criminal Mischief,,,,1,14001219MM30A,(M1),2013-12-20,Battery,Risk of Recidivism,1,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2013-05-03,2013-05-04,3,0,230,1,1\r\n4608,jeffrey telsaint,jeffrey,telsaint,2013-05-03,Male,1995-04-27,20,Less than 25,African-American,0,10,1,1,1,-1,2013-05-02 01:33:54,2013-05-07 05:29:14,13006309CF10A,2013-05-02,,1,F,Burglary Conveyance Unoccup,1,13019738MM10A,(M2),,2013-09-15,Petit Theft,,,,0,,,,,Risk of Recidivism,10,High,2013-05-03,Risk of Violence,8,High,2013-05-03,2013-05-02,2013-05-07,1,4,135,1,1\r\n4609,suong huynh,suong,huynh,2013-11-09,Male,1965-10-18,50,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-08 09:47:29,2013-11-09 01:50:35,13021131MM10A,2013-11-08,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-09,Risk of Violence,1,Low,2013-11-09,2013-12-09,2013-12-10,0,0,30,0,0\r\n4610,devan bryant,devan,bryant,2013-02-15,Male,1989-03-27,27,25 - 45,African-American,0,9,0,0,7,-1,2013-02-14 05:38:06,2013-02-18 07:11:15,13002335CF10A,2013-02-14,,1,F,Burglary Structure Unoccup,1,13013032CF10A,(M2),1,2013-09-14,Unlaw LicTag/Sticker Attach,2013-09-15,2014-03-31,,0,,,,,Risk of Recidivism,9,High,2013-02-15,Risk of Violence,8,High,2013-02-15,2013-02-14,2013-02-18,7,3,211,1,1\r\n4611,alonzo long,alonzo,long,2013-09-27,Male,1988-07-07,27,25 - 45,African-American,0,1,0,0,0,0,2013-09-27 01:08:40,2013-09-28 01:42:06,13018441MM10A,2013-09-27,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-27,Risk of Violence,2,Low,2013-09-27,2013-09-27,2013-09-28,0,1,917,0,0\r\n4612,andrew senra,andrew,senra,2014-07-26,Male,1985-02-14,31,25 - 45,Caucasian,0,7,0,0,4,-1,2014-07-25 05:19:54,2014-07-30 09:23:17,14010164CF10A,2014-07-25,,1,F,Felony Petit Theft,1,14011714MM10A,(M2),1,2014-08-02,Petit Theft,2014-08-03,2014-09-08,,0,,,,,Risk of Recidivism,7,Medium,2014-07-26,Risk of Violence,2,Low,2014-07-26,2014-07-25,2014-07-30,4,4,7,1,1\r\n4613,shirlene joseph,shirlene,joseph,2013-01-11,Female,1983-06-27,32,25 - 45,African-American,0,3,0,0,2,340,2013-12-17 12:16:41,2014-03-05 04:11:58,12001290CF10A,2012-01-25,,352,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-11,Risk of Violence,2,Low,2013-01-11,2013-12-17,2014-03-05,2,0,340,0,0\r\n4615,alexus jackson,alexus,jackson,2013-01-19,Female,1992-01-10,24,Less than 25,African-American,0,6,0,0,2,0,2013-01-19 06:28:29,2013-02-19 03:54:59,13003068TC10A,2013-01-19,,0,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-19,Risk of Violence,5,Medium,2013-01-19,2014-01-09,2014-01-09,2,31,355,0,0\r\n4616,reynaldo batista,reynaldo,batista,2013-02-20,Male,1992-04-06,24,Less than 25,African-American,0,9,0,0,4,-1,2013-02-19 07:52:29,2013-04-11 08:38:31,13002508CF10A,2013-02-19,,1,F,Grand Theft (Motor Vehicle),1,13014083CF10A,(F3),,2013-09-04,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,9,High,2013-02-20,Risk of Violence,9,High,2013-02-20,2013-02-19,2013-04-11,4,50,196,1,1\r\n4617,michael mallen,michael,mallen,2013-11-25,Male,1985-11-25,30,25 - 45,Caucasian,0,2,0,0,0,0,2013-11-25 01:45:02,2013-11-26 09:27:55,13022148MM10A,2013-11-24,,1,M,Possess Cannabis/20 Grams Or Less,1,14002904MM20A,(M1),,2014-10-15,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-25,Risk of Violence,3,Low,2013-11-25,2013-11-25,2013-11-26,0,1,324,1,1\r\n4618,alex louissaint,alex,louissaint,2013-10-22,Male,1995-01-05,21,Less than 25,African-American,1,6,1,0,2,-32,2013-09-20 10:32:05,2013-10-12 02:22:27,13013098CF10A,,2013-09-20,32,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-22,Risk of Violence,8,High,2013-10-22,2013-09-20,2013-10-12,2,0,892,0,0\r\n4620,fabio viana,fabio,viana,2013-02-18,Male,1974-12-10,41,25 - 45,Caucasian,0,2,0,0,0,0,2013-02-18 01:26:20,2013-02-18 06:29:40,13002455CF10A,2013-02-17,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-18,Risk of Violence,1,Low,2013-02-18,2013-02-18,2013-02-18,0,0,1138,0,0\r\n4622,donarth harris,donarth,harris,2013-05-22,Male,1977-12-15,38,25 - 45,Other,0,3,0,0,1,-1,2013-05-21 04:55:10,2013-05-22 03:30:14,13007263CF10A,2013-05-21,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-22,Risk of Violence,3,Low,2013-05-22,2013-05-21,2013-05-22,1,0,1045,0,0\r\n4624,prince brown,prince,brown,2014-01-04,Male,1983-09-17,32,25 - 45,African-American,0,8,0,0,2,0,2014-01-04 02:55:07,2014-01-23 10:05:15,14000150CF10A,2014-01-03,,1,F,Possession of Cocaine,1,14005731MM10A,(M1),0,2014-04-02,Battery,2014-04-02,2014-04-24,,1,14005731MM10A,(M1),2014-04-02,Battery,Risk of Recidivism,8,High,2014-01-04,Risk of Violence,6,Medium,2014-01-04,2014-04-02,2014-04-24,2,19,88,1,1\r\n4625,joseph massucco,joseph,massucco,2013-10-15,Male,1989-04-16,27,25 - 45,Caucasian,0,6,0,0,5,414,2014-12-03 01:33:47,2015-01-02 01:47:50,13014425CF10A,2013-10-15,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-15,Risk of Violence,3,Low,2013-10-15,2014-12-03,2015-01-02,5,0,414,0,0\r\n4626,amanda olek,amanda,olek,2013-01-22,Female,1992-02-05,24,Less than 25,Caucasian,0,5,0,0,1,,,,12013500CF10A,2012-09-13,,131,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-22,Risk of Violence,4,Low,2013-01-22,,,1,0,1165,0,0\r\n4627,therese patterson,therese,patterson,2013-09-30,Male,1946-08-20,69,Greater than 45,Caucasian,0,1,0,0,0,-4,2013-09-26 11:18:14,2013-09-27 07:30:11,13018346MM10A,2013-09-26,,4,M,DUI- Enhanced,1,13023761MM10A,(M1),1,2013-12-25,DUI- Enhanced,2013-12-26,2014-01-11,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-12-26,2014-01-11,0,0,86,1,1\r\n4628,james johnson,james,johnson,2013-02-08,Male,1991-03-23,25,25 - 45,Caucasian,0,9,0,0,1,0,2013-02-08 03:23:59,2013-04-08 04:29:04,13001970CF10A,2013-02-08,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-08,Risk of Violence,9,High,2013-02-08,2013-07-22,2013-07-30,1,59,164,0,0\r\n4629,kevin burns,kevin,burns,2013-10-10,Male,1961-04-16,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-09 05:20:59,2013-11-08 10:11:50,13019211MM10A,2013-10-09,,1,M,Battery,1,15009586MM10A,(M1),,2015-08-19,Battery,,,,1,15009586MM10A,(M1),2015-08-19,Battery,Risk of Recidivism,1,Low,2013-10-10,Risk of Violence,2,Low,2013-10-10,2013-10-09,2013-11-08,0,29,678,1,1\r\n4631,andre veira,andre,veira,2014-07-05,Male,1987-11-07,28,25 - 45,African-American,1,10,0,0,7,-1,2014-07-04 08:01:25,2014-07-05 08:26:16,14009213CF10A,2014-07-04,,1,F,Grand Theft in the 3rd Degree,1,14096127TC30A,(M2),78,2014-11-20,Operating W/O Valid License,2015-02-06,2015-02-07,,1,15006923CF10A,(F3),2015-03-01,Felony Battery (Dom Strang),Risk of Recidivism,10,High,2014-07-05,Risk of Violence,7,Medium,2014-07-05,2014-11-12,2014-11-13,7,0,130,0,1\r\n4634,jared cohen,jared,cohen,2013-10-29,Male,1988-11-18,27,25 - 45,Caucasian,0,4,0,0,0,0,2013-10-29 02:55:04,2013-10-29 02:11:41,13020451MM10A,2013-10-29,,0,M,DUI Level 0.15 Or Minor In Veh,1,14076707TC20A,(M2),,2014-10-22,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-29,Risk of Violence,2,Low,2013-10-29,2013-10-29,2013-10-29,0,0,358,1,1\r\n4636,tiffany baker,tiffany,baker,2014-01-03,Female,1995-08-15,20,Less than 25,African-American,0,6,0,0,1,-1,2014-01-02 09:18:38,2014-01-03 10:38:34,14000104CF10A,2014-01-02,,1,F,Battery on Law Enforc Officer,1,14058273TC40A,(M2),,2014-08-23,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-03,Risk of Violence,7,Medium,2014-01-03,2014-01-02,2014-01-03,1,0,232,1,1\r\n4637,jordan roberts,jordan,roberts,2013-03-14,Male,1979-10-29,36,25 - 45,African-American,0,1,0,0,2,0,2013-03-14 12:03:58,2013-03-14 02:37:32,13003705CF10A,2013-03-13,,1,F,Driving While License Revoked,1,14000419MM40A,(M1),,2013-12-28,Forge Revoked Expired Credit Card,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-14,Risk of Violence,2,Low,2013-03-14,2014-02-06,2014-02-07,2,0,289,1,1\r\n4639,claudia arbelaez,claudia,arbelaez,2014-01-12,Female,1977-02-09,39,25 - 45,Hispanic,0,4,0,2,10,-1,2014-01-11 09:59:10,2014-01-12 02:30:18,14000497CF10A,2014-01-11,,1,F,Battery on a Person Over 65,1,14011313CF10A,(M1),1,2014-08-18,Resist/Obstruct W/O Violence,2014-08-19,2014-10-07,,1,14011313CF10A,(F3),2014-08-18,Battery on Law Enforc Officer,Risk of Recidivism,4,Low,2014-01-12,Risk of Violence,3,Low,2014-01-12,2016-03-23,2016-03-24,10,0,218,1,1\r\n4640,jermaine westbrook,jermaine,westbrook,2014-11-18,Male,1990-10-16,25,25 - 45,African-American,0,10,1,1,10,-4,2014-11-14 06:42:11,2014-11-22 05:17:00,14015356CF10A,2014-11-14,,4,F,Deliver Cocaine,1,15004405CF10A,(M1),0,2015-04-03,Trespass/Property/Other Structure,2015-04-03,2015-04-04,,0,,,,,Risk of Recidivism,10,High,2014-11-18,Risk of Violence,6,Medium,2014-11-18,2015-04-03,2015-04-04,10,4,136,1,1\r\n4641,elizabeth maddox,elizabeth,maddox,2013-01-02,Female,1981-02-20,35,25 - 45,Caucasian,0,4,0,0,1,-1,2013-01-01 10:04:07,2013-01-02 01:12:01,13000041MM10A,2013-01-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-02,Risk of Violence,2,Low,2013-01-02,2013-01-01,2013-01-02,1,0,1185,0,0\r\n4643,devorist calloway,devorist,calloway,2013-05-07,Male,1984-01-25,32,25 - 45,African-American,0,10,1,3,12,-1,2013-05-06 08:54:39,2013-05-08 02:59:50,13008754MM10A,2013-05-06,,1,M,Battery,1,13008651CF10A,(F3),0,2013-06-19,Pos Cannabis W/Intent Sel/Del,2013-06-19,2013-06-20,,1,14012818MM10A,(M1),2014-06-13,Battery,Risk of Recidivism,10,High,2013-05-07,Risk of Violence,6,Medium,2013-05-07,2013-06-19,2013-06-20,12,1,43,1,1\r\n4645,denzle langley,denzle,langley,2013-10-03,Male,1947-04-04,69,Greater than 45,Other,0,1,0,0,0,-1,2013-10-02 11:30:23,2013-10-03 08:15:01,13018771MM10A,2013-10-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-10-02,2013-10-03,0,0,911,0,0\r\n4647,mateus slovinski,mateus,slovinski,2013-12-16,Male,1994-10-17,21,Less than 25,Caucasian,0,6,0,1,1,-21,2013-11-25 09:39:37,2013-11-26 02:01:43,13022149MM10A,2013-11-25,,21,M,Criminal Mischief Damage <$200,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-16,Risk of Violence,8,High,2013-12-16,2013-11-25,2013-11-26,1,0,837,0,0\r\n4648,imad farah,imad,farah,2013-05-08,Male,1974-11-11,41,25 - 45,Caucasian,0,1,0,0,1,0,2013-05-08 10:07:34,2013-05-10 11:57:26,12018476CF10A,,2013-05-08,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-08,Risk of Violence,1,Low,2013-05-08,2013-05-08,2013-05-10,1,2,1059,0,0\r\n4649,wilkins robles,wilkins,robles,2013-07-15,Male,1994-08-02,21,Less than 25,Hispanic,0,5,0,0,0,-3,2013-07-12 04:10:13,2013-07-13 01:26:10,13009825CF10A,2013-07-12,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-15,Risk of Violence,6,Medium,2013-07-15,2013-07-12,2013-07-13,0,0,991,0,0\r\n4651,zachary simon,zachary,simon,2013-01-27,Male,1977-05-27,38,25 - 45,African-American,0,8,0,0,0,-1,2013-01-26 08:27:54,2013-01-31 08:48:08,13001280CF10A,2013-01-26,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-27,Risk of Violence,6,Medium,2013-01-27,2013-01-26,2013-01-31,0,4,1160,0,0\r\n4652,terrin page,terrin,page,2014-04-30,Male,1995-04-18,21,Less than 25,African-American,0,9,0,0,1,-1,2014-04-29 04:12:31,2014-04-30 10:15:00,14005964CF10A,2014-04-29,,1,F,Tampering With Physical Evidence,1,15008167CF10A,(M1),0,2015-06-24,Resist/Obstruct W/O Violence,2015-06-24,2015-06-25,,0,,,,,Risk of Recidivism,9,High,2014-04-30,Risk of Violence,9,High,2014-04-30,2014-07-02,2014-07-03,1,0,63,0,1\r\n4655,mckenzy bienaime,mckenzy,bienaime,2013-05-04,Male,1984-05-08,31,25 - 45,Caucasian,0,8,0,0,10,185,2013-11-05 12:03:59,2013-11-05 02:05:25,11018233MM10A,2011-08-13,,630,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-04,Risk of Violence,4,Low,2013-05-04,2013-11-05,2013-11-05,10,0,185,0,0\r\n4657,pablo cabrera,pablo,cabrera,2013-08-27,Male,1980-09-17,35,25 - 45,Caucasian,0,2,0,0,2,0,2013-08-27 01:13:03,2013-09-30 06:47:08,13016322MM10A,2013-08-27,,0,M,Viol Prot Injunc Repeat Viol,1,14001030MM10A,(M1),183,2013-11-13,Viol Injunct Domestic Violence,2014-05-15,2014-07-03,,1,15001398CF10A,(F3),2014-07-01,Stalking (Aggravated),Risk of Recidivism,2,Low,2013-08-27,Risk of Violence,3,Low,2013-08-27,2013-08-27,2013-09-30,2,34,78,1,1\r\n4658,bendik bienaime,bendik,bienaime,2013-03-27,Male,1981-08-26,34,25 - 45,African-American,0,6,0,0,5,-13,2013-03-14 10:36:21,2013-03-16 12:30:05,13005092MM10A,2013-03-14,,13,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-27,Risk of Violence,6,Medium,2013-03-27,2013-03-14,2013-03-16,5,0,1101,0,0\r\n4659,steven cooper,steven,cooper,2013-12-11,Male,1963-11-13,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-10 06:48:24,2013-12-11 01:30:42,13022861MM10A,2013-12-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2013-12-10,2013-12-11,0,0,842,0,0\r\n4660,raphale demeritte,raphale,demeritte,2013-01-08,Male,1994-10-16,21,Less than 25,African-American,0,8,0,0,0,-1,2013-01-07 09:42:31,2013-01-09 01:05:12,13000282CF10A,,2013-01-07,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-08,Risk of Violence,8,High,2013-01-08,2014-07-08,2014-07-08,0,1,546,0,0\r\n4661,patrick clark,patrick,clark,2014-03-06,Male,1973-03-17,43,25 - 45,African-American,0,2,0,0,8,-1,2014-03-05 03:32:15,2014-03-06 08:44:10,14003805MM10A,2014-03-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-06,Risk of Violence,2,Low,2014-03-06,2014-03-05,2014-03-06,8,0,757,0,0\r\n4662,nicole coggio,nicole,coggio,2013-01-28,Female,1983-09-20,32,25 - 45,Caucasian,0,2,0,0,0,-1,2013-01-27 12:16:14,2013-01-28 12:35:10,13001301CF10A,2013-01-26,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-28,Risk of Violence,2,Low,2013-01-28,2013-01-27,2013-01-28,0,0,1159,0,0\r\n4663,ulises ballate,ulises,ballate,2013-08-25,Male,1966-11-15,49,Greater than 45,Caucasian,0,6,0,0,5,-1,2013-08-24 09:57:23,2013-08-28 08:04:55,13011948CF10A,2013-08-24,,1,F,Robbery / No Weapon,1,14002484CF10A,(F1),2,2014-02-19,\"Trafficking In Cocaine,+28-200\",2014-02-21,2014-02-24,,0,,,,,Risk of Recidivism,6,Medium,2013-08-25,Risk of Violence,3,Low,2013-08-25,2013-08-24,2013-08-28,5,3,178,1,1\r\n4665,briana adhemar,briana,adhemar,2013-12-27,Female,1994-07-18,21,Less than 25,African-American,0,4,0,0,0,-1,2013-12-26 06:13:31,2013-12-27 07:35:30,13023835MM10A,2013-12-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-27,Risk of Violence,5,Medium,2013-12-27,2013-12-26,2013-12-27,0,0,826,0,0\r\n4667,guy toussaint,guy,toussaint,2013-02-17,Male,1988-01-05,28,25 - 45,African-American,0,5,0,0,5,-1,2013-02-16 04:10:07,2013-02-17 01:39:08,13002425CF10A,2013-02-16,,1,F,Crim Use of Personal ID Info,1,14009456MM10A,(M2),0,2014-06-16,Susp Drivers Lic 1st Offense,2014-06-16,2014-06-17,,0,,,,,Risk of Recidivism,5,Medium,2013-02-17,Risk of Violence,3,Low,2013-02-17,2014-06-16,2014-06-17,5,0,484,1,1\r\n4668,flora valliere,flora,valliere,2013-12-24,Female,1950-12-04,65,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-12-23 12:11:10,2013-12-23 01:21:39,13017624CF10A,2013-12-22,,2,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-24,Risk of Violence,1,Low,2013-12-24,2013-12-23,2013-12-23,1,0,829,0,0\r\n4670,vashty mayor,vashty,mayor,2013-02-16,Female,1988-07-14,27,25 - 45,Caucasian,0,3,0,0,0,0,2013-02-16 04:48:14,2013-02-17 09:06:22,13003401MM10A,2013-02-16,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-16,Risk of Violence,3,Low,2013-02-16,2013-02-16,2013-02-17,0,1,1140,0,0\r\n4671,travis vassel,travis,vassel,2014-08-23,Male,1986-10-09,29,25 - 45,Other,0,4,0,0,6,,,,14011481CF10A,2014-08-22,,1,F,Possession Burglary Tools,1,15004556CF10A,(F3),,2015-04-06,Neglect Child / No Bodily Harm,,,,0,,,,,Risk of Recidivism,4,Low,2014-08-23,Risk of Violence,3,Low,2014-08-23,,,6,0,226,1,1\r\n4672,kevin banning,kevin,banning,2013-10-21,Male,1968-01-12,48,Greater than 45,Caucasian,0,8,0,0,20,0,2013-10-21 06:11:11,2013-12-06 11:28:57,13014713CF10A,2013-10-21,,0,F,Possession of Cocaine,1,14000029MM10A,(M1),0,2014-01-01,Possess Cannabis/20 Grams Or Less,2014-01-01,2014-03-24,,0,,,,,Risk of Recidivism,8,High,2013-10-21,Risk of Violence,6,Medium,2013-10-21,2014-01-01,2014-03-24,20,46,72,1,1\r\n4673,romel jeanlouis,romel,jeanlouis,2013-03-19,Male,1990-12-04,25,25 - 45,African-American,0,8,0,1,1,620,2014-11-29 10:21:00,2015-03-14 04:18:32,13005309MM10A,2013-03-18,,1,M,Possess Cannabis/20 Grams Or Less,1,16002988CF10A,(F3),,2016-03-09,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-19,Risk of Violence,8,High,2013-03-19,2014-11-29,2015-03-14,1,0,620,0,0\r\n4674,kadeem joseph,kadeem,joseph,2013-12-27,Male,1995-07-31,20,Less than 25,African-American,0,3,0,0,0,-1,2013-12-26 06:15:07,2013-12-27 08:17:53,13023834MM10A,2013-12-26,,1,M,Battery,1,15037105TC40A,(M2),,2015-06-24,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-27,Risk of Violence,6,Medium,2013-12-27,2015-11-10,2015-11-11,0,0,544,1,1\r\n4675,kenneth tommie,kenneth,tommie,2013-10-24,Male,1967-01-25,49,Greater than 45,Other,0,6,0,0,7,0,2013-10-24 12:46:22,2013-11-06 11:22:21,13014898CF10A,2013-10-23,,1,F,Child Abuse,1,14042548TC10A,(M1),0,2014-11-09,Opert With Susp DL 2nd Offens,2014-11-09,2014-11-10,,0,,,,,Risk of Recidivism,6,Medium,2013-10-24,Risk of Violence,3,Low,2013-10-24,2014-11-09,2014-11-10,7,13,381,1,1\r\n4677,annonce georges,annonce,georges,2013-12-07,Male,1973-11-11,42,25 - 45,Other,0,3,0,0,6,-1,2013-12-06 03:17:43,2013-12-07 07:51:47,13022647MM10A,2013-12-06,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-07,Risk of Violence,1,Low,2013-12-07,2015-08-01,2015-08-01,6,0,602,0,0\r\n4678,larry king,larry,king,2013-04-22,Male,1952-08-16,63,Greater than 45,African-American,0,3,0,0,6,-1,2013-04-21 11:10:45,2013-05-16 06:46:14,10016314CF10A,,2013-04-22,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-22,Risk of Violence,2,Low,2013-04-22,2013-04-21,2013-05-16,6,24,1075,0,0\r\n4679,jose rivera,jose,rivera,2013-08-10,Male,1975-06-05,40,25 - 45,Caucasian,0,2,0,0,0,0,2013-08-10 12:52:53,2013-08-10 09:20:05,13015056MM10A,2013-08-09,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-10,Risk of Violence,1,Low,2013-08-10,2013-08-10,2013-08-10,0,0,965,0,0\r\n4680,ricardo centurion,ricardo,centurion,2013-04-12,Male,1981-11-16,34,25 - 45,Hispanic,0,2,0,0,0,-1,2013-04-11 09:53:54,2013-04-12 09:11:30,13005255CF10A,2013-04-11,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-12,Risk of Violence,3,Low,2013-04-12,2013-04-11,2013-04-12,0,0,1085,0,0\r\n4681,tajdrick pratt,tajdrick,pratt,2013-04-11,Male,1994-11-27,21,Less than 25,African-American,0,10,0,0,1,0,2013-04-11 06:55:26,2013-07-06 08:21:51,13005387CF10A,2013-04-11,,0,F,Grand Theft in the 3rd Degree,1,13016267MM10A,(M1),0,2013-08-25,Possess Cannabis/20 Grams Or Less,2013-08-25,2013-08-27,,0,,,,,Risk of Recidivism,10,High,2013-04-11,Risk of Violence,9,High,2013-04-11,2013-08-25,2013-08-27,1,86,136,1,1\r\n4682,russell desvergers,russell,desvergers,2013-10-09,Male,1988-05-19,27,25 - 45,Caucasian,0,2,0,0,1,-1,2013-10-08 11:08:37,2013-10-09 08:35:23,13019140MM10A,2013-10-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-09,Risk of Violence,2,Low,2013-10-09,2013-10-08,2013-10-09,1,0,905,0,0\r\n4683,josue sanchez,josue,sanchez,2014-03-17,Male,1986-08-05,29,25 - 45,Hispanic,0,1,0,0,0,-1,2014-03-16 05:03:20,2014-03-17 08:53:08,14004563MM10A,2014-03-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-16,2014-03-17,0,0,746,0,0\r\n4684,clifford wellington,clifford,wellington,2014-11-11,Male,1981-04-15,35,25 - 45,Caucasian,0,10,0,0,0,-1,2014-11-10 09:33:20,2014-11-26 08:40:39,14016158MM10A,2014-11-10,,1,M,Battery,1,15012078MO10A,(MO3),4,2015-11-05,Resisting W/O Violence,2015-11-09,2015-11-20,,0,,,,,Risk of Recidivism,10,High,2014-11-11,Risk of Violence,5,Medium,2014-11-11,2014-11-10,2014-11-26,0,15,359,1,1\r\n4685,anthony miller,anthony,miller,2013-05-03,Male,1983-05-24,32,25 - 45,African-American,0,6,0,0,9,-39,2013-03-25 12:04:09,2013-05-03 05:44:03,12023383MM10A,,2013-03-24,40,M,arrest case no charge,1,15002222CF10A,(F3),0,2015-02-17,Possession of Cocaine,2015-02-17,2015-03-23,,0,,,,,Risk of Recidivism,6,Medium,2013-05-03,Risk of Violence,2,Low,2013-05-03,2013-08-22,2013-11-14,9,0,111,0,1\r\n4686,andria vassell,andria,vassell,2013-05-14,Female,1965-07-25,50,Greater than 45,African-American,0,1,0,0,0,-1,2013-05-13 09:20:14,2013-05-14 09:21:11,13009247MM10A,2013-05-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,2,Low,2013-05-14,2013-05-13,2013-05-14,0,0,1053,0,0\r\n4688,tramaine conley,tramaine,conley,2013-05-13,Male,1984-05-12,31,25 - 45,African-American,0,2,0,0,1,,,,13012254TC10A,2013-03-06,,68,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,,,1,0,1054,0,0\r\n4692,george sisler,george,sisler,2013-04-30,Male,1968-08-12,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-29 09:40:41,2013-04-30 01:06:20,13008304MM10A,2013-04-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-30,Risk of Violence,1,Low,2013-04-30,2013-04-29,2013-04-30,0,0,1067,0,0\r\n4694,joseph torres,joseph,torres,2014-01-27,Male,1971-11-17,44,25 - 45,Caucasian,0,4,0,0,2,-2,2014-01-25 12:28:35,2014-01-25 04:53:46,14001375MM10A,2014-01-24,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2014-01-25,2014-01-25,2,0,795,0,0\r\n4695,victor sanchez,victor,sanchez,2014-07-31,Male,1972-04-19,44,25 - 45,Hispanic,0,1,0,0,8,-60,2014-06-01 06:59:25,2014-06-11 07:33:59,14007578CF10A,2014-06-01,,60,F,Aggravated Assault w/Firearm,1,15032004TC20A,(M2),,2015-05-17,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,1,Low,2014-07-31,Risk of Violence,2,Low,2014-07-31,2014-06-01,2014-06-11,8,0,290,1,1\r\n4696,jorge hourruitiner,jorge,hourruitiner,2013-12-26,Male,1960-03-03,56,Greater than 45,Hispanic,0,1,0,0,0,-2,2013-12-24 10:08:42,2013-12-25 11:53:05,13017769CF10A,2013-12-24,,2,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-26,Risk of Violence,1,Low,2013-12-26,2013-12-24,2013-12-25,0,0,827,0,0\r\n4697,eliott arcia,eliott,arcia,2013-10-13,Male,1992-10-05,23,Less than 25,African-American,0,3,0,0,0,-1,2013-10-12 10:31:42,2013-10-25 08:54:33,13019373MM10A,2013-10-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-13,Risk of Violence,5,Medium,2013-10-13,2013-10-12,2013-10-25,0,12,901,0,0\r\n4698,abe navarro,abe,navarro,2013-03-20,Male,1961-12-22,54,Greater than 45,African-American,0,6,0,0,10,0,2013-03-20 01:48:12,2013-04-19 07:33:20,13004033CF10A,2013-03-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-03-20,2013-04-19,10,30,1108,0,0\r\n4699,justin jones,justin,jones,2013-12-11,Male,1994-11-08,21,Less than 25,African-American,1,4,0,1,1,-171,2013-06-23 07:30:09,2013-06-28 12:06:07,13001834CF10A,,2013-06-23,171,F,arrest case no charge,1,14021030TC10A,(M2),,2014-05-26,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-11,Risk of Violence,6,Medium,2013-12-11,2015-01-22,2015-12-26,1,0,166,1,1\r\n4701,robert sellars,robert,sellars,2013-08-18,Male,1977-04-27,38,25 - 45,Caucasian,0,10,0,0,17,-1,2013-08-17 04:00:03,2014-02-13 10:28:00,13011554CF10A,2013-08-17,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-18,Risk of Violence,8,High,2013-08-18,2013-08-17,2014-02-13,17,179,957,0,0\r\n4703,gary camilo,gary,camilo,2013-02-11,Male,1990-12-10,25,25 - 45,Hispanic,0,2,0,0,0,0,2013-02-11 04:13:47,2013-02-11 06:53:25,13002139CF10A,2013-02-10,,1,F,Pos Cannabis W/Intent Sel/Del,1,13022555MM10A,(M1),,2013-11-06,Possess Cannabis/20 Grams Or Less,,,,1,15011390MM10A,(M1),2015-10-29,Battery,Risk of Recidivism,2,Low,2013-02-11,Risk of Violence,3,Low,2013-02-11,2013-06-27,2013-06-28,0,0,136,0,1\r\n4704,vernon prater,vernon,prater,2013-08-08,Male,1972-03-03,44,25 - 45,Caucasian,0,3,0,0,2,-1,2013-08-07 04:18:39,2013-08-09 03:54:07,13011071CF10A,2013-08-07,,1,F,Felony Petit Theft,1,14008303CF10A,(F3),,2014-05-01,Burglary Structure Unoccup,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-08,Risk of Violence,3,Low,2013-08-08,2013-12-11,2013-12-20,2,1,125,0,1\r\n4705,jack brown,jack,brown,2013-04-08,Male,1964-03-28,52,Greater than 45,African-American,0,3,0,0,3,-1,2013-04-07 04:29:09,2013-05-08 07:10:38,13006640MM10A,2013-04-07,,1,M,Resist/Obstruct W/O Violence,1,13012960MM10A,(M1),0,2013-07-08,Resist/Obstruct W/O Violence,2013-07-08,2013-07-11,,0,,,,,Risk of Recidivism,3,Low,2013-04-08,Risk of Violence,1,Low,2013-04-08,2013-07-08,2013-07-11,3,30,91,1,1\r\n4706,juanita carvello,juanita,carvello,2014-10-19,Female,1963-11-20,52,Greater than 45,Caucasian,0,2,0,0,0,-1,2014-10-18 03:53:27,2015-02-13 04:00:30,14014072CF10A,2014-10-18,,1,F,Felony Petit Theft,1,15013147CF10A,(F3),0,2015-10-10,Possession Of Alprazolam,2015-10-10,2015-11-12,,0,,,,,Risk of Recidivism,2,Low,2014-10-19,Risk of Violence,2,Low,2014-10-19,2015-10-10,2015-11-12,0,117,356,1,1\r\n4707,evelyn alcime,evelyn,alcime,2013-04-10,Male,1994-11-18,21,Less than 25,African-American,0,9,0,0,0,-1,2013-04-09 04:04:21,2013-04-09 07:12:48,13006874MM10A,2013-04-09,,1,M,Prowling/Loitering,1,13012812MO10A,(MO3),1,2013-07-05,Intoxicating Beverages,2013-07-06,2013-07-06,,0,,,,,Risk of Recidivism,9,High,2013-04-10,Risk of Violence,8,High,2013-04-10,2013-11-13,2013-11-13,0,0,86,1,1\r\n4708,jean valeus,jean,valeus,2013-12-18,Male,1984-11-25,31,25 - 45,African-American,0,2,0,0,4,-70,2013-10-09 10:45:21,2013-12-18 10:47:06,13015383CF10A,,2013-11-01,47,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-18,Risk of Violence,1,Low,2013-12-18,2013-10-09,2013-12-18,4,0,835,0,0\r\n4710,nicole montgomery,nicole,montgomery,2014-10-03,Female,1986-01-31,30,25 - 45,Caucasian,0,4,0,0,9,-19,2014-09-14 11:38:41,2014-09-19 01:42:46,14012638CF10A,,2014-09-17,16,F,arrest case no charge,1,14015915CF10A,(F3),0,2014-11-26,Grand Theft in the 3rd Degree,2014-11-26,2014-11-27,,0,,,,,Risk of Recidivism,4,Low,2014-10-03,Risk of Violence,2,Low,2014-10-03,2014-11-26,2014-11-27,9,0,54,1,1\r\n4711,carline germaine,carline,germaine,2013-08-08,Female,1977-03-01,39,25 - 45,African-American,0,1,0,0,1,-42,2013-06-27 08:42:08,2013-07-03 01:12:28,13009223CF10A,,2013-06-28,41,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-08,Risk of Violence,1,Low,2013-08-08,2013-06-27,2013-07-03,1,0,967,0,0\r\n4712,paul johnson,paul,johnson,2014-01-08,Male,1959-06-25,56,Greater than 45,African-American,0,2,0,0,6,-1,2014-01-07 11:08:37,2014-01-08 12:23:20,14000263CF10A,2014-01-07,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,1,Low,2014-01-08,2014-03-03,2014-03-11,6,0,54,0,0\r\n4715,jonathan williams,jonathan,williams,2013-01-05,Male,1981-02-09,35,25 - 45,African-American,0,8,0,0,12,-1,2013-01-04 09:20:34,2013-01-05 08:05:12,13000198CF10A,2013-01-04,,1,F,Possession of Oxycodone,1,14045663TC40A,(M2),245,2014-06-26,Driving License Suspended,2015-02-26,2015-04-22,,0,,,,,Risk of Recidivism,8,High,2013-01-05,Risk of Violence,7,Medium,2013-01-05,2014-01-22,2014-01-23,12,0,382,0,1\r\n4718,jeffery mann,jeffery,mann,2013-08-07,Male,1976-11-29,39,25 - 45,Caucasian,0,1,0,0,1,-29,2013-07-09 03:08:15,2013-08-07 10:44:26,13009621CF10A,2013-07-09,,29,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-07,Risk of Violence,1,Low,2013-08-07,2013-07-09,2013-08-07,1,0,968,0,0\r\n4719,lindsey jorgensen,lindsey,jorgensen,2013-12-28,Male,1986-06-01,29,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-28 06:06:48,2013-12-29 02:05:08,13023925MM10A,2013-12-28,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-28,Risk of Violence,2,Low,2013-12-28,2013-12-28,2013-12-29,0,1,825,0,0\r\n4720,alexandria smiley,alexandria,smiley,2013-02-12,Female,1988-04-02,28,25 - 45,Caucasian,0,8,0,0,3,,,,10018447CF10A,2010-10-14,,852,F,Felony Committing Prostitution,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-12,Risk of Violence,3,Low,2013-02-12,,,3,0,1144,0,0\r\n4721,jerel dowels,jerel,dowels,2014-08-16,Male,1992-10-02,23,Less than 25,African-American,0,5,0,0,2,-1,2014-08-15 07:16:13,2014-09-07 01:37:18,14011210CF10A,2014-08-15,,1,F,Grand Theft in the 3rd Degree,1,15007329CF10A,(F3),0,2015-06-05,Poss Pyrrolidinovalerophenone,2015-06-05,2015-06-06,,0,,,,,Risk of Recidivism,5,Medium,2014-08-16,Risk of Violence,8,High,2014-08-16,2015-06-05,2015-06-06,2,22,293,1,1\r\n4722,daniel heim,daniel,heim,2013-12-09,Male,1989-10-24,26,25 - 45,Caucasian,0,5,0,0,0,-2,2013-12-07 11:51:28,2013-12-08 02:29:07,13022678MM10A,2013-12-07,,2,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-09,Risk of Violence,3,Low,2013-12-09,2013-12-07,2013-12-08,0,0,844,0,0\r\n4724,mary grey,mary,grey,2014-08-13,Female,1951-04-27,64,Greater than 45,African-American,0,1,0,0,1,-1,2014-08-12 09:44:31,2014-08-13 02:06:22,14012183MM10A,2014-08-12,,1,M,Resist/Obstruct W/O Violence,1,14012941CF10A,(M1),0,2014-09-24,Tampering With Physical Evidence,2014-09-24,2014-09-26,,0,,,,,Risk of Recidivism,1,Low,2014-08-13,Risk of Violence,1,Low,2014-08-13,2014-09-24,2014-09-26,1,0,42,1,1\r\n4725,sharon johnson,sharon,johnson,2013-02-28,Female,1964-12-02,51,Greater than 45,African-American,1,10,0,0,10,173,2013-08-20 06:30:52,2013-10-24 11:30:00,11019445CF10A,,2012-08-16,196,F,arrest case no charge,1,16002338MM10A,(M2),,2016-02-25,Petit Theft,,,,0,,,,,Risk of Recidivism,10,High,2013-02-28,Risk of Violence,6,Medium,2013-02-28,2013-08-20,2013-10-24,10,0,173,0,0\r\n4726,venetta mapp,venetta,mapp,2014-03-07,Female,1958-02-15,58,Greater than 45,Other,0,1,0,0,0,-1,2014-03-06 07:46:10,2014-03-07 09:31:06,14003198CF10A,2014-03-06,,1,F,Harass Witness/Victm/Informnt,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-07,Risk of Violence,1,Low,2014-03-07,2014-03-06,2014-03-07,0,0,756,0,0\r\n4730,patrick niesterczuk,patrick,niesterczuk,2014-01-08,Male,1995-06-23,20,Less than 25,Caucasian,0,2,0,2,1,-1,2014-01-07 12:20:20,2014-01-09 03:36:00,14000273CF10A,2014-01-07,,1,F,Grand Theft of the 2nd Degree,1,14067890TC20A,(M2),,2014-09-22,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,5,Medium,2014-01-08,2014-06-30,2014-07-04,1,1,173,0,1\r\n4731,taro beneby,taro,beneby,2013-08-17,Male,1994-11-27,21,Less than 25,African-American,0,5,0,0,0,-1,2013-08-16 08:09:44,2013-09-27 10:31:00,13011520CF10A,2013-08-16,,1,F,Grand Theft in the 3rd Degree,1,14002797CF10A,(F3),,2013-11-01,Child Abuse,,,,1,14002797CF10A,(F3),2013-11-01,Child Abuse,Risk of Recidivism,5,Medium,2013-08-17,Risk of Violence,7,Medium,2013-08-17,2013-08-16,2013-09-27,0,41,76,1,1\r\n4732,glenn weston,glenn,weston,2013-02-16,Male,1995-01-31,21,Less than 25,African-American,0,5,0,0,0,-1,2013-02-15 02:16:11,2013-04-03 01:53:18,13002367CF10A,2013-02-15,,1,F,Burglary Unoccupied Dwelling,1,15064458TC40A,(M2),,2015-11-04,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-16,Risk of Violence,8,High,2013-02-16,2013-02-15,2013-04-03,0,46,991,1,0\r\n4735,clevent louima,clevent,louima,2013-08-11,Male,1992-10-09,23,Less than 25,African-American,0,7,0,0,0,-1,2013-08-10 04:10:11,2013-08-12 07:20:06,13011247CF10A,2013-08-10,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-11,Risk of Violence,8,High,2013-08-11,2014-01-01,2014-06-03,0,1,143,0,0\r\n4737,david robinson,david,robinson,2013-08-23,Male,1970-02-28,46,Greater than 45,African-American,0,4,0,0,3,-1,2013-08-22 10:32:02,2013-08-24 12:37:15,13011344CF10A,,2013-08-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-23,Risk of Violence,3,Low,2013-08-23,2013-08-22,2013-08-24,3,1,952,0,0\r\n4739,ellis carswell,ellis,carswell,2013-03-13,Male,1990-08-22,25,25 - 45,African-American,0,9,13,1,21,0,2013-03-13 07:16:40,2013-07-09 01:29:43,13003718CF10A,2013-03-13,,0,F,Driving While License Revoked,1,13016232CF10A,(F3),0,2013-11-22,Possession of Cannabis,2013-11-22,2014-03-06,,0,,,,,Risk of Recidivism,9,High,2013-03-13,Risk of Violence,9,High,2013-03-13,2013-11-22,2014-03-06,21,118,254,1,1\r\n4743,william rodriguez,william,rodriguez,2013-05-09,Male,1980-08-25,35,25 - 45,Hispanic,0,7,0,0,5,0,2013-05-09 02:43:09,2013-05-09 07:43:17,13006654CF10A,2013-05-09,,0,F,Possession of Cocaine,1,15007532CF10A,(F3),,2015-06-07,Felony Batt(Great Bodily Harm),,,,1,15007532CF10A,(F3),2015-06-07,Felony Batt(Great Bodily Harm),Risk of Recidivism,7,Medium,2013-05-09,Risk of Violence,5,Medium,2013-05-09,2016-03-08,2020-01-01,5,0,759,1,0\r\n4747,authry heard,authry,heard,2013-06-13,Male,1981-09-06,34,25 - 45,African-American,0,7,0,0,12,-63,2013-04-11 12:32:24,2013-06-12 11:30:22,13005174CF10A,2013-04-10,,64,F,Deliver Cocaine,1,16005747TC30A,(M2),,2015-09-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-06-13,Risk of Violence,6,Medium,2013-06-13,2013-04-11,2013-06-12,12,0,811,1,0\r\n4748,ebony wooden,ebony,wooden,2014-01-31,Female,1986-01-10,30,25 - 45,African-American,0,3,0,0,0,0,2014-01-31 01:38:00,2014-01-31 01:25:37,14001683MM10A,2014-01-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-31,Risk of Violence,2,Low,2014-01-31,2014-01-31,2014-01-31,0,0,791,0,0\r\n4749,denny rivera,denny,rivera,2014-01-24,Male,1968-10-09,47,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-01-23 06:45:57,2014-01-24 11:04:07,14001002CF10A,2014-01-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-24,Risk of Violence,1,Low,2014-01-24,2014-01-23,2014-01-24,1,0,798,0,0\r\n4750,david ellis,david,ellis,2013-06-26,Male,1985-09-20,30,25 - 45,Caucasian,0,4,0,0,4,-25,2013-06-01 07:39:34,2013-06-05 03:36:50,13007791CF10A,2013-06-01,,25,F,Use of Anti-Shoplifting Device,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-26,Risk of Violence,2,Low,2013-06-26,2013-10-31,2013-11-07,4,0,127,0,0\r\n4753,jose carrascoe,jose,carrascoe,2013-12-01,Male,1982-08-31,33,25 - 45,Hispanic,0,1,0,0,0,,,,13022344MM10A,2013-11-30,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-01,Risk of Violence,1,Low,2013-12-01,,,0,0,852,0,0\r\n4754,robert kathary,robert,kathary,2013-02-22,Male,1969-01-15,47,Greater than 45,African-American,0,1,0,0,1,-23,2013-01-30 02:41:32,2013-01-31 02:44:11,13001490CF10A,2013-01-30,,23,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-22,Risk of Violence,1,Low,2013-02-22,2013-05-03,2013-05-28,1,0,70,0,0\r\n4755,travis taylor,travis,taylor,2013-05-09,Male,1973-09-13,42,25 - 45,African-American,0,7,0,0,33,200,2013-11-25 11:23:22,2013-11-26 02:16:29,12001627CF10A,,2013-04-20,19,F,arrest case no charge,1,13022157MO10A,(MO3),0,2013-11-25,Loiter Where Sign is Posted,2013-11-25,2013-11-26,,0,,,,,Risk of Recidivism,7,Medium,2013-05-09,Risk of Violence,3,Low,2013-05-09,2013-11-25,2013-11-26,33,0,200,1,1\r\n4757,kenneth wright,kenneth,wright,2013-03-02,Male,1977-01-29,39,25 - 45,African-American,0,2,0,0,1,-1,2013-03-01 11:09:53,2013-03-02 08:39:59,13003119CF10A,2013-03-01,,1,F,Possession of Cocaine,1,14013764MM10A,(M2),,2014-08-10,Drinking Alch Beverage In Open,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-02,Risk of Violence,1,Low,2013-03-02,2013-03-01,2013-03-02,1,0,526,1,1\r\n4760,samuel lamie,samuel,lamie,2013-07-22,Male,1965-11-24,50,Greater than 45,Caucasian,0,2,0,0,11,-31,2013-06-21 11:46:14,2013-07-18 08:18:43,12016410CF10A,,2013-06-21,31,F,arrest case no charge,1,14007834CF10A,(F2),0,2014-06-06,Agg Battery Grt/Bod/Harm,2014-06-06,2014-09-04,,1,14007834CF10A,(F2),2014-06-06,Agg Battery Grt/Bod/Harm,Risk of Recidivism,2,Low,2013-07-22,Risk of Violence,1,Low,2013-07-22,2014-06-06,2014-09-04,11,0,319,1,1\r\n4761,marcos midence,marcos,midence,2013-04-12,Male,1985-11-29,30,25 - 45,Hispanic,0,2,0,0,2,-1,2013-04-11 09:18:16,2013-04-17 08:40:03,13015781TC10A,2013-04-11,,1,M,Susp Drivers Lic 1st Offense,1,14005855TC20A,(M2),,2014-01-19,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-12,Risk of Violence,2,Low,2013-04-12,2013-04-11,2013-04-17,2,5,282,1,1\r\n4763,jessica brekke,jessica,brekke,2013-04-04,Male,1992-04-10,24,Less than 25,Caucasian,0,3,0,2,1,-1,2013-04-03 11:02:12,2013-04-04 01:29:44,13004768CF10A,2013-04-03,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-04,Risk of Violence,4,Low,2013-04-04,2013-04-03,2013-04-04,1,0,1093,0,0\r\n4764,ssecrette brown,ssecrette,brown,2013-01-14,Female,1993-10-07,22,Less than 25,African-American,0,9,0,0,2,,,,12016221CF10A,2012-11-03,,72,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-14,Risk of Violence,6,Medium,2013-01-14,,,2,0,1173,0,0\r\n4765,andrew barnett,andrew,barnett,2013-08-20,Male,1970-09-06,45,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-08-19 04:52:26,2013-08-20 07:11:45,13011617CF10A,2013-08-19,,1,F,Aggrav Stalking After Injunctn,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-19,2013-08-20,3,0,955,0,0\r\n4766,matthew jordan,matthew,jordan,2014-09-20,Male,1990-03-05,26,25 - 45,Caucasian,0,9,0,0,2,-1,2014-09-19 07:09:49,2014-09-20 06:58:35,14012702CF10A,2014-09-19,,1,F,Grand Theft in the 3rd Degree,1,14016455CF10A,(F3),0,2014-12-11,Grand Theft in the 3rd Degree,2014-12-11,2014-12-12,,0,,,,,Risk of Recidivism,9,High,2014-09-20,Risk of Violence,3,Low,2014-09-20,2014-12-11,2014-12-12,2,0,82,1,1\r\n4767,victor malaric,victor,malaric,2013-03-24,Male,1977-01-06,39,25 - 45,Caucasian,0,2,0,0,3,0,2013-03-24 02:38:00,2013-03-24 08:58:43,13004251CF10A,2013-03-24,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-24,Risk of Violence,1,Low,2013-03-24,2013-03-24,2013-03-24,3,0,1104,0,0\r\n4769,sean mccabe,sean,mccabe,2013-08-15,Male,1976-04-17,40,25 - 45,Caucasian,0,3,0,0,1,-1,2013-08-14 11:28:56,2013-09-25 11:09:03,13011437CF10A,2013-08-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-15,Risk of Violence,1,Low,2013-08-15,2014-06-02,2014-06-09,1,41,291,0,0\r\n4772,bernard parker,bernard,parker,2013-01-21,Male,1991-08-16,24,Less than 25,African-American,0,10,0,0,0,-1,2013-01-20 09:19:10,2013-01-21 08:17:47,13000939CF10A,2013-01-20,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-21,Risk of Violence,6,Medium,2013-01-21,2013-01-20,2013-01-21,0,0,1166,0,0\r\n4773,alexandrea miles,alexandrea,miles,2014-01-05,Male,1992-12-30,23,Less than 25,African-American,0,7,0,1,1,-1,2014-01-04 09:53:02,2014-01-05 08:05:17,12005832CF10A,2012-04-18,,627,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-05,Risk of Violence,4,Low,2014-01-05,2014-01-04,2014-01-05,1,0,817,0,0\r\n4774,douglas mason,douglas,mason,2013-03-01,Male,1954-10-05,61,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-01 05:14:32,2013-03-01 01:48:41,13004215MM10A,2013-03-01,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-03-01,2013-03-01,0,0,1127,0,0\r\n4775,derek modrok,derek,modrok,2013-09-07,Male,1973-11-16,42,25 - 45,Caucasian,0,5,0,0,3,0,2013-09-07 12:53:53,2013-09-07 01:14:30,13012618CF10A,2013-09-06,,1,F,Solicitation On Felony 3 Deg,1,14005616CF10A,(M1),0,2014-04-14,Resist/Obstruct W/O Violence,2014-04-14,2014-08-19,,0,,,,,Risk of Recidivism,5,Medium,2013-09-07,Risk of Violence,3,Low,2013-09-07,2014-04-14,2014-08-19,3,0,219,1,1\r\n4776,timothy edwards,timothy,edwards,2013-01-09,Male,1977-06-26,38,25 - 45,African-American,0,2,0,0,3,0,2013-01-09 01:30:22,2013-01-13 09:57:39,13000326CF10A,2013-01-08,,1,F,Felony Battery (Dom Strang),1,13039168TC30A,(M2),,2013-04-17,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-09,Risk of Violence,1,Low,2013-01-09,2013-01-09,2013-01-13,3,4,98,1,1\r\n4778,louis delvecchio,louis,delvecchio,2013-02-17,Male,1948-09-20,67,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-02-16 06:55:46,2013-03-12 09:26:51,13002402CF10A,2013-02-16,,1,F,Grand Theft in the 3rd Degree,1,13005675MM10A,(M1),0,2013-03-22,Trespass Other Struct/Convey,2013-03-22,2013-03-23,,0,,,,,Risk of Recidivism,1,Low,2013-02-17,Risk of Violence,1,Low,2013-02-17,2013-03-22,2013-03-23,0,23,33,1,1\r\n4780,jeffrey tapia,jeffrey,tapia,2014-01-02,Male,1993-02-14,23,Less than 25,Caucasian,0,6,0,0,2,-20,2013-12-13 02:14:06,2013-12-21 02:08:04,13017246CF10A,2013-12-12,,21,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-02,Risk of Violence,7,Medium,2014-01-02,2013-12-13,2013-12-21,2,0,820,0,0\r\n4783,guy adoni,guy,adoni,2014-12-08,Male,1985-01-06,31,25 - 45,Caucasian,0,4,0,0,1,0,2014-12-08 03:19:16,2014-12-08 09:16:06,14016311CF10A,2014-12-08,,0,F,Possession Of Heroin,1,15004454CF10A,(F3),0,2015-04-05,Possession Of Carisoprodol,2015-04-05,2015-05-01,,0,,,,,Risk of Recidivism,4,Low,2014-12-08,Risk of Violence,2,Low,2014-12-08,2015-04-05,2015-05-01,1,0,118,1,1\r\n4784,arthur morgan,arthur,morgan,2013-04-11,Male,1976-01-15,40,25 - 45,African-American,1,8,0,0,15,-1,2013-04-10 11:19:32,2013-06-04 05:08:34,07016234CF10A,,2013-04-10,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-11,Risk of Violence,6,Medium,2013-04-11,2013-04-10,2013-06-04,15,54,1086,0,0\r\n4787,paul brown,paul,brown,2013-01-03,Male,1971-06-16,44,25 - 45,African-American,0,2,0,0,0,-1,2013-01-02 11:12:01,2013-01-06 01:18:20,13000082CF10A,,2013-01-02,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2013-01-02,2013-01-06,0,3,1184,0,0\r\n4789,ronald lang,ronald,lang,2013-10-12,Male,1979-02-25,37,25 - 45,African-American,0,7,0,0,10,-1,2013-10-11 07:41:36,2013-10-12 01:52:54,13014267CF10A,2013-10-11,,1,F,Leaving the Scene of Accident,1,14012760TC40A,(M2),119,2014-02-14,Driving License Suspended,2014-06-13,2015-02-10,,0,,,,,Risk of Recidivism,7,Medium,2013-10-12,Risk of Violence,2,Low,2013-10-12,2014-06-13,2015-02-10,10,0,125,1,1\r\n4792,nicole hewitt,nicole,hewitt,2013-10-29,Female,1994-04-11,22,Less than 25,African-American,0,9,1,0,3,-2,2013-10-27 04:53:42,2013-10-28 07:53:41,13020365MM10A,2013-10-27,,2,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-29,Risk of Violence,6,Medium,2013-10-29,2013-10-27,2013-10-28,3,0,885,0,0\r\n4793,joseph falcon,joseph,falcon,2013-05-09,Male,1984-06-29,31,25 - 45,Caucasian,0,3,0,0,6,0,2013-05-09 03:25:21,2013-05-09 08:48:54,13008988MM10A,2013-05-09,,0,M,Battery,1,14001662MM10A,(M1),,2013-11-27,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-09,Risk of Violence,2,Low,2013-05-09,2013-05-09,2013-05-09,6,0,202,1,1\r\n4794,brian murzike,brian,murzike,2014-10-19,Male,1988-03-09,28,25 - 45,African-American,0,7,0,0,9,-1,2014-10-18 02:15:40,2014-12-10 04:18:26,14016901CF10A,2014-10-18,,1,F,Cash Item w/Intent to Defraud,1,15000289MM20A,(M1),,2014-12-30,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,7,Medium,2014-10-19,Risk of Violence,7,Medium,2014-10-19,2014-10-18,2014-12-10,9,52,72,1,1\r\n4795,lancy duggins,lancy,duggins,2013-05-15,Male,1958-12-27,57,Greater than 45,African-American,0,8,0,0,2,,,,11003377CF10A,2011-02-23,,812,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-15,Risk of Violence,4,Low,2013-05-15,2003-05-16,2003-11-08,2,0,1052,0,0\r\n4796,cassio slowden,cassio,slowden,2013-03-23,Male,1991-10-05,24,Less than 25,Other,0,6,0,0,5,-1,2013-03-22 03:39:01,2013-03-27 12:03:14,13000174MM10A,,2013-03-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-23,Risk of Violence,4,Low,2013-03-23,2013-11-27,2013-12-04,5,4,249,0,0\r\n4797,claudio tamarez,claudio,tamarez,2013-04-14,Male,1983-02-08,33,25 - 45,Caucasian,0,4,0,0,9,0,2013-04-14 01:37:01,2013-04-14 07:07:32,13005352CF10A,2013-04-14,,0,F,Possession Of Phentermine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-14,Risk of Violence,3,Low,2013-04-14,2013-06-12,2013-06-13,9,0,59,0,0\r\n4800,bryan taylor,bryan,taylor,2014-01-04,Female,1985-07-31,30,25 - 45,African-American,0,10,3,2,10,0,2014-01-04 02:07:28,2014-01-04 08:40:23,14000154CF10A,2014-01-04,,0,F,Possession of Cocaine,1,14004910MM10A,(M1),123,2014-01-06,Possess Cannabis/20 Grams Or Less,2014-05-09,2014-05-10,,0,,,,,Risk of Recidivism,10,High,2014-01-04,Risk of Violence,9,High,2014-01-04,2015-05-21,2020-01-01,10,0,2,1,1\r\n4801,elie dubois,elie,dubois,2013-08-22,Male,1984-12-29,31,25 - 45,Other,0,1,1,0,5,-1,2013-08-21 01:16:09,2013-08-22 08:48:59,13010985CF10A,,2013-08-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-22,Risk of Violence,2,Low,2013-08-22,2013-09-16,2013-11-09,5,0,25,0,0\r\n4802,stephen marsh,stephen,marsh,2014-03-28,Male,1959-09-19,56,Greater than 45,Caucasian,0,5,0,0,7,-38,2014-02-18 07:26:02,2014-02-27 08:35:02,14002311CF10A,2014-02-18,,38,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-28,Risk of Violence,1,Low,2014-03-28,2014-02-18,2014-02-27,7,0,735,0,0\r\n4804,cristino lozano,cristino,lozano,2013-09-16,Male,1949-03-24,67,Greater than 45,Hispanic,0,1,0,0,2,67,2013-11-22 01:09:28,2014-02-28 04:55:27,13011978CF10A,2013-03-24,,176,F,Fel Drive License Perm Revoke,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2013-11-22,2014-02-28,2,0,67,0,0\r\n4805,steven king,steven,king,2013-10-27,Male,1980-12-30,35,25 - 45,African-American,0,7,0,0,0,-1,2013-10-26 03:12:39,2013-10-27 08:21:18,13014981CF10A,2013-10-26,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,13020505MM10A,(M2),0,2013-10-30,Susp Drivers Lic 1st Offense,2013-10-30,2013-10-31,,0,,,,,Risk of Recidivism,7,Medium,2013-10-27,Risk of Violence,3,Low,2013-10-27,2013-10-30,2013-10-31,0,0,3,1,1\r\n4808,john williams,john,williams,2013-02-21,Male,1958-10-08,57,Greater than 45,African-American,0,8,0,0,23,-1,2013-02-20 01:25:04,2013-03-22 05:54:39,13002585CF10A,,2013-02-20,1,F,arrest case no charge,1,15015357CF10A,(F2),,2015-11-29,Robbery / No Weapon,,,,1,15015357CF10A,(F2),2015-11-29,Robbery / No Weapon,Risk of Recidivism,8,High,2013-02-21,Risk of Violence,7,Medium,2013-02-21,2013-11-20,2014-08-07,23,29,272,0,1\r\n4809,emily holbrook,emily,holbrook,2014-11-11,Female,1976-10-13,39,25 - 45,Caucasian,0,7,0,0,8,-1,2014-11-10 12:01:25,2014-12-12 08:27:13,14015045CF10A,2014-11-09,,2,F,Poss Pyrrolidinovalerophenone,1,15001351CF10A,(F3),1,2015-01-28,Poss Pyrrolidinovalerophenone,2015-01-29,2015-03-09,,0,,,,,Risk of Recidivism,7,Medium,2014-11-11,Risk of Violence,5,Medium,2014-11-11,2014-11-10,2014-12-12,8,31,78,1,1\r\n4811,francis gibbons,francis,gibbons,2013-08-05,Male,1951-04-01,65,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-08-04 08:51:09,2013-08-27 12:24:30,13010824CF10A,2013-08-04,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-05,Risk of Violence,2,Low,2013-08-05,2013-09-26,2013-10-09,3,22,52,0,0\r\n4812,peyton nunes,peyton,nunes,2013-02-27,Female,1993-10-23,22,Less than 25,Caucasian,0,9,0,0,0,-1,2013-02-26 04:51:22,2013-02-27 09:49:12,13003994MM10A,2013-02-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-27,Risk of Violence,7,Medium,2013-02-27,2013-02-26,2013-02-27,0,0,1129,0,0\r\n4815,nicole howard,nicole,howard,2013-08-14,Female,1981-04-10,35,25 - 45,African-American,0,6,0,0,2,-15,2013-07-30 05:05:43,2013-08-14 02:10:10,12012951CF10A,,2013-07-30,15,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-14,Risk of Violence,2,Low,2013-08-14,2014-04-03,2014-04-24,2,0,232,0,0\r\n4817,jacob humes,jacob,humes,2013-01-27,Male,1987-01-05,29,25 - 45,African-American,0,3,1,0,2,-1,2013-01-26 01:09:16,2013-01-28 03:32:20,13001886MM10A,2013-01-26,,1,M,Battery,1,13009010CF10A,(F3),0,2013-06-26,Aggravated Assault W/dead Weap,2013-06-26,2013-06-29,,1,13009010CF10A,(F3),2013-06-26,Aggravated Assault W/dead Weap,Risk of Recidivism,3,Low,2013-01-27,Risk of Violence,4,Low,2013-01-27,2013-06-26,2013-06-29,2,1,150,1,1\r\n4818,jonathan norris,jonathan,norris,2013-02-15,Male,1978-08-31,37,25 - 45,Caucasian,0,1,0,0,2,489,2014-06-19 11:11:00,2014-07-04 02:07:11,13000295CF10A,2012-10-21,,117,M,Battery on Law Enforc Officer,1,14002064MM40A,(M1),61,2014-04-19,Petit Theft $100- $300,2014-06-19,2014-07-04,,0,,,,,Risk of Recidivism,1,Low,2013-02-15,Risk of Violence,1,Low,2013-02-15,2015-02-22,2015-02-24,2,0,428,1,1\r\n4820,michael wyatt,michael,wyatt,2014-10-30,Male,1953-07-26,62,Greater than 45,African-American,0,8,0,0,13,-1,2014-10-29 07:42:23,2014-10-30 08:42:11,14014550CF10A,2014-10-29,,1,F,Retail Theft $300 1st Offense,1,14003456MM20A,(M2),104,2014-11-20,Petit Theft,2015-03-04,2015-06-26,,0,,,,,Risk of Recidivism,8,High,2014-10-30,Risk of Violence,5,Medium,2014-10-30,2015-03-04,2015-06-26,13,0,21,1,1\r\n4821,cambrell smart,cambrell,smart,2014-01-27,Male,1993-10-29,22,Less than 25,African-American,0,10,0,0,5,-91,2013-10-28 04:00:42,2013-10-29 04:10:51,13014176MM10A,,2013-12-18,40,M,arrest case no charge,1,15012428CF10A,(F3),,2015-08-25,False Imprisonment,,,,1,15012428CF10A,(F2),2015-08-25,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2014-01-27,Risk of Violence,6,Medium,2014-01-27,2014-06-28,2014-11-25,5,0,152,0,1\r\n4824,quavon moore,quavon,moore,2013-10-14,Male,1985-03-12,31,25 - 45,African-American,0,8,0,0,6,-39,2013-09-05 04:24:09,2013-09-24 10:11:00,13007122MM10A,,2013-09-05,39,M,arrest case no charge,1,16000353CF10A,(M1),0,2016-01-09,Battery,2016-01-09,2016-02-11,,1,16000353CF10A,(F3),2016-01-09,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2013-10-14,Risk of Violence,5,Medium,2013-10-14,2014-01-02,2014-01-10,6,0,80,0,0\r\n4825,jordan pinales,jordan,pinales,2013-09-09,Male,1993-05-30,22,Less than 25,African-American,0,3,0,0,0,-4,2013-09-05 11:54:08,2013-09-06 09:06:58,13016981MM10A,2013-09-05,,4,M,Poss Of RX Without RX,1,14002750MM10A,(M1),0,2014-02-17,Possess Drug Paraphernalia,2014-02-17,2014-02-18,,0,,,,,Risk of Recidivism,3,Low,2013-09-09,Risk of Violence,5,Medium,2013-09-09,2014-02-17,2014-02-18,0,0,161,1,1\r\n4826,richard morales,richard,morales,2013-03-01,Male,1984-10-14,31,25 - 45,Hispanic,0,3,0,0,8,-1,2013-02-28 06:43:52,2013-03-13 07:34:33,13003029CF10A,2013-02-28,,1,F,Driving While License Revoked,1,13006422CF10A,(F3),1,2013-05-04,Possession of Cocaine,2013-05-05,2013-06-06,,0,,,,,Risk of Recidivism,3,Low,2013-03-01,Risk of Violence,3,Low,2013-03-01,2013-02-28,2013-03-13,8,12,64,1,1\r\n4827,lynell freeman,lynell,freeman,2013-04-18,Female,1959-10-21,56,Greater than 45,African-American,0,1,0,0,1,-1,2013-04-17 05:00:58,2013-04-18 05:52:26,13005508CF10A,2013-04-17,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2013-04-17,2013-04-18,1,0,1079,0,0\r\n4828,austin kanefsky,austin,kanefsky,2013-08-27,Male,1991-02-25,25,25 - 45,Caucasian,0,6,0,0,2,-29,2013-07-29 09:57:48,2013-08-27 10:56:42,13007305CF10A,,2013-08-13,14,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-27,Risk of Violence,5,Medium,2013-08-27,2013-07-29,2013-08-27,2,0,948,0,0\r\n4831,gian morales,gian,morales,2013-05-20,Male,1982-07-08,33,25 - 45,Caucasian,0,4,0,0,10,0,2013-05-20 02:19:52,2013-05-21 04:20:08,13009727MM10A,2013-05-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-20,Risk of Violence,2,Low,2013-05-20,2013-05-20,2013-05-21,10,1,1047,0,0\r\n4833,kevin lowe,kevin,lowe,2013-02-11,Male,1990-09-28,25,25 - 45,Caucasian,0,5,0,0,2,-1,2013-02-10 11:12:43,2013-02-12 12:21:21,13002073CF10A,2013-02-10,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-11,Risk of Violence,6,Medium,2013-02-11,2014-05-21,2014-07-16,2,1,464,0,0\r\n4834,miesha mills,miesha,mills,2013-05-05,Female,1988-04-29,27,25 - 45,African-American,0,5,0,0,3,-1,2013-05-04 06:24:35,2013-05-05 03:34:33,13006415CF10A,2013-05-04,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-05,Risk of Violence,3,Low,2013-05-05,2014-05-13,2014-05-20,3,0,373,0,0\r\n4835,steven moss,steven,moss,2013-04-02,Male,1978-07-10,37,25 - 45,African-American,0,10,0,0,1,-1,2013-04-01 05:11:13,2013-04-04 08:57:34,13004687CF10A,2013-04-01,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-02,Risk of Violence,10,High,2013-04-02,2013-08-28,2013-09-12,1,2,148,0,0\r\n4837,edward burks,edward,burks,2013-06-03,Male,1974-12-12,41,25 - 45,Caucasian,0,1,0,0,2,-3,2013-05-31 08:17:28,2013-06-01 08:45:39,13028890TC10A,,2013-05-31,3,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-03,Risk of Violence,1,Low,2013-06-03,2013-05-31,2013-06-01,2,0,1033,0,0\r\n4839,charles tarver,charles,tarver,2013-12-24,Male,1980-11-17,35,25 - 45,African-American,0,8,0,1,5,-19,2013-12-05 01:07:45,2013-12-11 11:57:00,13018015CF10A,2013-12-08,,16,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-24,Risk of Violence,5,Medium,2013-12-24,2014-03-26,2014-04-25,5,0,92,0,0\r\n4840,giovanni funez,giovanni,funez,2014-06-10,Male,1990-05-26,25,25 - 45,Hispanic,0,7,0,0,1,0,2014-06-10 02:15:56,2014-06-10 07:56:31,14009186MM10A,2014-06-10,,0,M,Battery,1,15022866TC40A,(M2),,2015-03-11,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,7,Medium,2014-06-10,Risk of Violence,3,Low,2014-06-10,2014-06-10,2014-06-10,1,0,274,1,1\r\n4841,kenneth apollo,kenneth,apollo,2014-01-03,Male,1960-08-02,55,Greater than 45,Caucasian,0,1,0,0,0,0,2014-01-03 02:44:39,2014-01-05 08:46:26,14000129MM10A,2014-01-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-03,Risk of Violence,1,Low,2014-01-03,2014-01-03,2014-01-05,0,2,819,0,0\r\n4844,tamoy garwood,tamoy,garwood,2013-03-18,Female,1991-12-23,24,Less than 25,African-American,0,5,0,0,1,,,,11004198CF10A,,2011-06-29,628,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-18,Risk of Violence,5,Medium,2013-03-18,,,1,0,1110,0,0\r\n4845,christopher lloyd,christopher,lloyd,2013-10-04,Male,1990-02-14,26,25 - 45,African-American,0,2,0,0,2,0,2013-10-04 05:39:27,2013-10-08 01:24:50,13013952CF10A,2013-10-04,,0,F,Burglary Conveyance Unoccup,1,15004226MM10A,(M1),0,2015-04-13,Battery,2015-04-13,2015-06-18,,1,15004226MM10A,(M1),2015-04-13,Battery,Risk of Recidivism,2,Low,2013-10-04,Risk of Violence,3,Low,2013-10-04,2014-06-18,2014-06-24,2,4,257,0,1\r\n4846,suniel foskin,suniel,foskin,2013-05-22,Male,1981-01-15,35,25 - 45,African-American,0,3,0,0,7,-1,2013-05-21 06:58:18,2013-12-02 09:26:04,13004135CF10A,,2013-05-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-22,Risk of Violence,3,Low,2013-05-22,2013-05-21,2013-12-02,7,194,1045,0,0\r\n4847,tracy gallagher,tracy,gallagher,2013-02-16,Male,1966-04-01,50,Greater than 45,Caucasian,0,4,0,0,3,0,2013-02-16 05:51:43,2013-03-13 10:56:47,13003880MM10A,2013-02-16,,0,M,Reckless Driving,1,15001637CF10A,(F3),43,2015-01-07,Battery on a Person Over 65,2015-02-19,2015-02-20,,1,15001637CF10A,(F3),2015-01-07,Battery on a Person Over 65,Risk of Recidivism,4,Low,2013-02-16,Risk of Violence,6,Medium,2013-02-16,2013-02-16,2013-03-13,3,25,690,1,1\r\n4848,corey durpee,corey,durpee,2013-05-24,Male,1985-10-28,30,25 - 45,African-American,0,8,0,0,1,,,,10010372MM10A,2010-04-15,,1135,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-24,Risk of Violence,9,High,2013-05-24,,,1,0,1043,0,0\r\n4851,eddie mccants,eddie,mccants,2013-08-07,Male,1990-12-12,25,25 - 45,African-American,0,6,0,0,3,-1,2013-08-06 02:31:41,2013-08-08 04:16:31,13011026CF10A,2013-08-06,,1,F,Possession of Cocaine,1,14005860CF10A,(F3),0,2014-04-27,Tampering With Physical Evidence,2014-04-27,2014-04-28,,0,,,,,Risk of Recidivism,6,Medium,2013-08-07,Risk of Violence,4,Low,2013-08-07,2014-04-27,2014-04-28,3,1,263,1,1\r\n4853,linda altman,linda,altman,2014-01-06,Female,1950-11-30,65,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-01-05 09:27:22,2014-01-06 12:10:47,14000391MU10A,2014-01-05,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,1,14049377TC20A,(M2),49,2014-06-24,Driving License Suspended,2014-08-12,2014-08-12,,0,,,,,Risk of Recidivism,1,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-08-12,2014-08-12,1,0,169,1,1\r\n4857,bryeon mack,bryeon,mack,2013-05-07,Female,1984-08-06,31,25 - 45,African-American,0,5,0,0,0,0,2013-05-07 01:16:35,2013-05-07 07:21:10,13006480CF10A,2013-05-06,,1,F,Felony Driving While Lic Suspd,1,14003280MM40A,(M1),,2014-07-25,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-07,Risk of Violence,2,Low,2013-05-07,2013-05-07,2013-05-07,0,0,444,1,1\r\n4860,simone campbell,simone,campbell,2014-01-17,Female,1991-08-24,24,Less than 25,African-American,0,2,0,0,0,-1,2014-01-16 10:15:11,2014-01-17 01:26:50,14000840MM10A,2014-01-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-17,Risk of Violence,3,Low,2014-01-17,2014-01-16,2014-01-17,0,0,805,0,0\r\n4861,shem lampley,shem,lampley,2013-01-23,Male,1982-02-13,34,25 - 45,African-American,0,8,0,0,6,-1,2013-01-22 07:32:23,2013-02-05 07:22:29,11018844CF10A,,2013-01-22,1,F,arrest case no charge,1,13007122CF10A,(M1),1,2013-05-18,Unlaw Malic Strike K9/Horses,2013-05-19,2014-05-27,,1,13007122CF10A,(F2),2013-05-18,Agg Battery Grt/Bod/Harm,Risk of Recidivism,8,High,2013-01-23,Risk of Violence,9,High,2013-01-23,2013-04-20,2013-04-24,6,13,87,0,1\r\n4862,bernard andrews,bernard,andrews,2014-04-18,Male,1992-04-05,24,Less than 25,Other,0,8,0,0,3,-1,2014-04-17 09:15:00,2014-04-20 11:07:10,14006531MM10A,2014-04-17,,1,M,Battery,1,14002668MM40A,(M1),135,2014-06-11,Theft/To Deprive,2014-10-24,2014-11-01,,1,15000311MM10A,(M1),2014-12-13,Battery,Risk of Recidivism,8,High,2014-04-18,Risk of Violence,7,Medium,2014-04-18,2014-04-17,2014-04-20,3,2,54,1,1\r\n4864,casey herard,casey,herard,2013-02-14,Female,1985-08-05,30,25 - 45,African-American,0,6,1,0,4,-1,2013-02-13 11:45:50,2013-02-15 08:31:36,13002247CF10A,2013-02-13,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-14,Risk of Violence,2,Low,2013-02-14,2013-11-20,2013-12-21,4,1,279,0,0\r\n4865,andriane kirkpatrick,andriane,kirkpatrick,2013-02-14,Female,1980-10-14,35,25 - 45,Hispanic,0,2,0,0,0,0,2013-02-14 04:49:00,2013-02-14 07:54:07,13003253MM10A,2013-02-14,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-14,Risk of Violence,1,Low,2013-02-14,2013-02-14,2013-02-14,0,0,1142,0,0\r\n4866,tony wilson,tony,wilson,2013-12-27,Male,1985-10-06,30,25 - 45,African-American,0,6,0,0,14,27,2014-01-23 09:48:39,2014-02-15 08:24:36,13016573CF10A,,2013-11-29,28,F,arrest case no charge,1,14001003CF10A,(F3),0,2014-01-23,Possession of Morphine,2014-01-23,2014-02-15,,0,,,,,Risk of Recidivism,6,Medium,2013-12-27,Risk of Violence,7,Medium,2013-12-27,2014-01-23,2014-02-15,14,0,27,1,1\r\n4870,joshua dundis,joshua,dundis,2013-09-23,Male,1992-01-30,24,Less than 25,Caucasian,0,2,0,0,1,-8,2013-09-15 11:32:16,2013-09-18 09:20:54,13017572MM10A,2013-09-15,,8,M,Criminal Mischief Damage <$200,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-23,Risk of Violence,3,Low,2013-09-23,2013-09-15,2013-09-18,1,0,921,0,0\r\n4871,john shaffer,john,shaffer,2013-03-19,Male,1964-06-08,51,Greater than 45,Caucasian,0,3,0,0,3,-13,2013-03-06 09:35:26,2013-03-19 11:53:06,13003365CF10A,2013-03-06,,13,F,Interference with Custody,1,14004097CF10A,(M2),1,2014-03-22,Unlaw LicTag/Sticker Attach,2014-03-23,2014-04-24,,0,,,,,Risk of Recidivism,3,Low,2013-03-19,Risk of Violence,1,Low,2013-03-19,2013-08-08,2013-09-18,3,0,142,0,1\r\n4872,jonadia hyppolite,jonadia,hyppolite,2013-12-07,Female,1987-11-05,28,25 - 45,African-American,0,3,0,0,3,-1,2013-12-06 07:42:39,2013-12-07 08:47:36,13016906CF10A,2013-12-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-07,Risk of Violence,3,Low,2013-12-07,2013-12-06,2013-12-07,3,0,846,0,0\r\n4873,laterria lafond,laterria,lafond,2014-02-17,Female,1988-07-10,27,25 - 45,African-American,0,6,0,0,4,-1,2014-02-16 09:44:54,2014-02-17 09:36:19,14002196CF10A,2014-02-16,,1,F,Drivg While Lic Suspd/Revk/Can,1,14034191TC10A,(M2),249,2014-08-30,Driving License Suspended,2015-05-06,2015-05-15,,0,,,,,Risk of Recidivism,6,Medium,2014-02-17,Risk of Violence,2,Low,2014-02-17,2015-05-06,2015-05-15,4,0,194,1,1\r\n4876,nezam alli,nezam,alli,2013-08-02,Male,1965-09-10,50,Greater than 45,Other,0,1,0,0,5,-91,2013-05-03 03:45:11,2013-08-02 10:31:12,12015804CF10A,,2013-05-03,91,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,2013-05-03,2013-08-02,5,0,973,0,0\r\n4877,peter ramos,peter,ramos,2014-11-14,Male,1994-02-14,22,Less than 25,Caucasian,0,3,0,0,2,-1,2014-11-13 12:23:53,2014-11-14 08:54:55,14015248CF10A,2014-11-13,,1,F,Possession of Cocaine,1,16011876TC30A,(M2),,2016-02-23,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,3,Low,2014-11-14,Risk of Violence,4,Low,2014-11-14,2015-09-23,2015-11-04,2,0,313,0,1\r\n4879,kevin daniels,kevin,daniels,2013-09-19,Male,1987-03-14,29,25 - 45,African-American,0,4,0,0,2,-1,2013-09-18 07:11:59,2013-09-19 01:45:36,13013180CF10A,2013-09-18,,1,F,Traffic Counterfeit Cred Cards,1,14012839CF10A,(F3),0,2014-09-22,Grand Theft in the 3rd Degree,2014-09-22,2014-09-23,,0,,,,,Risk of Recidivism,4,Low,2013-09-19,Risk of Violence,3,Low,2013-09-19,2014-09-22,2014-09-23,2,0,368,1,1\r\n4881,roderick ferguson,roderick,ferguson,2013-11-23,Male,1984-06-25,31,25 - 45,African-American,0,6,0,0,0,-1,2013-11-22 09:00:54,2013-11-24 09:02:53,13016288CF10A,2013-11-22,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-23,Risk of Violence,3,Low,2013-11-23,2014-02-17,2014-04-04,0,1,86,0,0\r\n4884,davis jirka,davis,jirka,2013-12-30,Male,1985-02-05,31,25 - 45,Caucasian,0,1,0,0,0,-1,2013-12-29 08:40:23,2013-12-30 08:05:20,14000105MM10A,2013-12-29,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-30,Risk of Violence,2,Low,2013-12-30,2013-12-29,2013-12-30,0,0,823,0,0\r\n4885,vanessa belotte,vanessa,belotte,2013-02-27,Female,1983-10-10,32,25 - 45,African-American,0,2,0,0,3,-1,2013-02-26 02:16:05,2013-03-28 10:47:42,13003010CF10A,,2013-02-26,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-27,Risk of Violence,2,Low,2013-02-27,2013-05-06,2013-05-07,3,29,68,0,0\r\n4886,hubert hughes,hubert,hughes,2014-05-16,Male,1989-01-21,27,25 - 45,African-American,0,2,0,0,1,-1,2014-05-15 09:55:36,2014-05-17 03:38:23,14006785CF10A,2014-05-15,,1,F,Burglary Structure Unoccup,1,15004229MM10A,(M1),0,2015-04-13,Resist/Obstruct W/O Violence,2015-04-13,2015-04-14,,0,,,,,Risk of Recidivism,2,Low,2014-05-16,Risk of Violence,3,Low,2014-05-16,2014-08-27,2014-10-30,1,1,103,0,1\r\n4887,frank schmidt,frank,schmidt,2013-06-10,Male,1987-03-20,29,25 - 45,Caucasian,0,5,0,0,6,-3,2013-06-07 12:58:38,2013-06-08 07:37:28,13008038CF10A,2013-06-06,,4,F,Possession of Hydromorphone,1,14011787CF10A,(M1),0,2014-08-29,Battery,2014-08-29,2014-09-30,,1,14011787CF10A,(M1),2014-08-29,Aggravated Battery / Pregnant,Risk of Recidivism,5,Medium,2013-06-10,Risk of Violence,2,Low,2013-06-10,2013-08-07,2013-08-30,6,0,58,0,1\r\n4888,pj lawton,pj,lawton,2013-01-31,Male,1956-06-22,59,Greater than 45,African-American,0,3,0,0,3,-8,2013-01-23 08:25:05,2013-01-31 10:46:32,12009951CF10A,,2013-01-23,8,F,arrest case no charge,1,15001535CF10A,(M1),0,2015-02-02,Possess Cannabis/20 Grams Or Less,2015-02-02,2015-02-03,,0,,,,,Risk of Recidivism,3,Low,2013-01-31,Risk of Violence,2,Low,2013-01-31,2015-02-02,2015-02-03,3,0,732,1,0\r\n4890,rivenson joseph,rivenson,joseph,2014-04-13,Male,1992-01-05,24,Less than 25,African-American,0,2,0,0,1,-1,2014-04-12 12:19:56,2014-04-13 09:21:08,14006232MM10A,2014-04-11,,2,M,Battery,1,15000217MM10A,(M1),0,2015-01-06,Battery,2015-01-06,2015-01-07,,1,15000217MM10A,(M1),2015-01-06,Battery,Risk of Recidivism,2,Low,2014-04-13,Risk of Violence,5,Medium,2014-04-13,2015-01-06,2015-01-07,1,0,268,1,1\r\n4891,kayla sutton,kayla,sutton,2013-05-22,Female,1988-11-12,27,25 - 45,Caucasian,0,4,0,0,1,-66,2013-03-17 06:36:07,2013-03-18 05:46:07,13003883CF10A,2013-03-17,,66,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-22,Risk of Violence,3,Low,2013-05-22,2014-07-29,2014-09-12,1,0,433,0,0\r\n4893,gervens souarin,gervens,souarin,2013-03-05,Male,1982-12-05,33,25 - 45,African-American,0,10,0,0,0,-1,2013-03-04 07:56:17,2013-07-24 07:34:26,13003247CF10A,2013-03-04,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-03-05,Risk of Violence,6,Medium,2013-03-05,2013-03-04,2013-07-24,0,141,1123,0,0\r\n4894,joyce jacques,joyce,jacques,2013-10-11,Female,1980-11-09,35,25 - 45,Other,0,1,0,0,0,-1,2013-10-10 04:48:42,2013-10-11 02:16:44,13019260MM10A,2013-10-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-11,Risk of Violence,1,Low,2013-10-11,2013-10-10,2013-10-11,0,0,903,0,0\r\n4897,joseph minniti,joseph,minniti,2014-08-12,Male,1987-11-05,28,25 - 45,Caucasian,0,8,0,0,9,-8,2014-08-04 05:42:35,2014-08-12 08:32:05,14004256CF10A,,2014-08-04,8,F,arrest case no charge,1,14084373TC30A,(M2),18,2014-10-06,Driving License Suspended,2014-10-24,2015-04-06,,0,,,,,Risk of Recidivism,8,High,2014-08-12,Risk of Violence,8,High,2014-08-12,2014-10-24,2015-04-06,9,0,55,1,1\r\n4900,louisette jean,louisette,jean,2013-07-29,Female,1975-12-09,40,25 - 45,Other,0,1,0,0,0,-4,2013-07-25 06:29:10,2013-07-29 11:27:13,13010446CF10A,,2013-07-25,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-07-25,2013-07-29,0,0,977,0,0\r\n4902,jose delacruz,jose,delacruz,2013-02-19,Male,1963-02-19,53,Greater than 45,Hispanic,0,2,0,0,3,,,,13003467MM10A,2013-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-19,Risk of Violence,3,Low,2013-02-19,,,3,0,1137,0,0\r\n4904,kevin grant,kevin,grant,2013-02-19,Male,1970-10-07,45,Greater than 45,Other,0,3,0,0,0,-1,2013-02-18 01:05:12,2013-02-19 06:50:04,13003464MM10A,2013-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-19,Risk of Violence,1,Low,2013-02-19,2013-02-18,2013-02-19,0,0,1137,0,0\r\n4906,vincent moorman,vincent,moorman,2013-02-12,Male,1991-09-05,24,Less than 25,African-American,1,9,0,1,9,-7,2013-02-05 02:02:29,2013-02-09 04:42:56,12009778MM10A,,2013-02-05,7,M,arrest case no charge,1,13006351CF10A,(M1),0,2013-05-03,Resist/Obstruct W/O Violence,2013-05-03,2014-02-23,,1,13006351CF10A,(F3),2013-05-03,Attempt Burglary (Struct),Risk of Recidivism,9,High,2013-02-12,Risk of Violence,7,Medium,2013-02-12,2013-05-03,2014-02-23,9,0,80,1,1\r\n4907,victor rozier,victor,rozier,2013-11-25,Male,1985-03-03,31,25 - 45,African-American,2,9,1,1,16,-1,2013-11-24 08:06:21,2014-01-16 06:29:30,13016349CF10A,2013-11-24,,1,F,Grand Theft in the 3rd Degree,1,16000310MM20A,(M1),,2016-01-26,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,9,High,2013-11-25,Risk of Violence,6,Medium,2013-11-25,2014-01-16,2015-03-02,16,462,792,1,1\r\n4909,christian duranfernandez,christian,duranfernandez,2013-05-21,Male,1991-02-12,25,25 - 45,Hispanic,0,2,0,0,0,-1,2013-05-20 01:33:21,2013-05-24 05:02:36,13009737MM10A,2013-05-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-21,Risk of Violence,4,Low,2013-05-21,2013-05-20,2013-05-24,0,3,1046,0,0\r\n4910,yurek gorny,yurek,gorny,2013-03-31,Male,1991-07-16,24,Less than 25,Caucasian,0,4,0,0,0,,,,,,,,M,,1,14006654MM10A,(M1),0,2014-04-21,Indecent Exposure,2014-04-21,2014-04-22,,0,,,,,Risk of Recidivism,4,Low,2013-03-31,Risk of Violence,5,Medium,2013-03-31,2014-04-21,2014-04-22,0,0,386,1,1\r\n4911,doll pierre louis,doll,pierre louis,2014-03-11,Male,1991-10-23,24,Less than 25,African-American,0,9,0,0,0,-1,2014-03-10 02:01:58,2014-03-11 10:42:11,14003387CF10A,2014-03-10,,1,F,\"Possession Of 3,4Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-11,Risk of Violence,9,High,2014-03-11,2014-03-10,2014-03-11,0,0,752,0,0\r\n4912,david cuellar,david,cuellar,2013-04-06,Male,1993-02-28,23,Less than 25,Hispanic,0,8,0,0,6,-1,2013-04-05 03:50:59,2013-05-09 09:31:20,13006559MM10A,2013-04-05,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-06,Risk of Violence,5,Medium,2013-04-06,2013-04-05,2013-05-09,6,33,1091,0,0\r\n4914,david kennedy,david,kennedy,2013-08-22,Male,1993-01-07,23,Less than 25,African-American,0,8,1,0,7,-1,2013-08-21 01:25:33,2013-08-22 06:49:00,13011767CF10A,2013-08-21,,1,F,Carrying Concealed Firearm,1,14009472MM10A,(M1),,2014-04-03,Battery,,,,1,14009472MM10A,(M1),2014-04-03,Battery,Risk of Recidivism,8,High,2013-08-22,Risk of Violence,7,Medium,2013-08-22,2016-03-28,2016-04-01,7,0,224,1,1\r\n4917,nancy gayoso,nancy,gayoso,2013-08-02,Female,1968-04-23,47,Greater than 45,Hispanic,0,1,0,0,2,,,,03004219CF10A,,2003-03-08,3800,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,,,2,0,973,0,0\r\n4921,carlos posada,carlos,posada,2013-09-16,Male,1967-05-05,48,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-09-15 12:13:53,2013-09-15 01:11:55,13017544MM10A,2013-09-14,,2,M,DUI/Property Damage/Persnl Inj,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2013-09-15,2013-09-15,0,0,928,0,0\r\n4922,omar perez,omar,perez,2013-10-14,Male,1980-07-18,35,25 - 45,Hispanic,0,2,0,0,0,,,,13019406MM10A,2013-10-13,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-14,Risk of Violence,1,Low,2013-10-14,,,0,0,900,0,0\r\n4923,denley calixte,denley,calixte,2013-12-12,Male,1991-08-25,24,Less than 25,Other,0,3,0,0,3,252,2014-08-21 12:48:29,2014-10-10 04:29:01,12004753CF10A,,2013-11-15,27,F,arrest case no charge,1,14044078TC30A,(M2),159,2014-03-15,Unlaw LicTag/Sticker Attach,2014-08-21,2014-10-10,,0,,,,,Risk of Recidivism,3,Low,2013-12-12,Risk of Violence,4,Low,2013-12-12,2014-08-21,2014-10-10,3,0,93,1,1\r\n4925,peter accetta,peter,accetta,2013-03-30,Male,1954-01-27,62,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-29 11:06:18,2013-03-30 08:00:38,13004542CF10A,2013-03-29,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-30,Risk of Violence,1,Low,2013-03-30,2013-03-29,2013-03-30,0,0,1098,0,0\r\n4926,rodney smith,rodney,smith,2013-10-31,Male,1964-01-13,52,Greater than 45,African-American,0,3,0,0,19,,,,12008902CF10A,,2012-11-16,349,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-31,Risk of Violence,1,Low,2013-10-31,2006-09-05,2009-04-26,19,0,883,0,0\r\n4927,tiffany pericles,tiffany,pericles,2013-11-04,Female,1990-09-07,25,25 - 45,African-American,0,7,0,0,4,0,2013-11-04 04:23:55,2013-11-04 08:19:28,13013927CF10A,,2013-11-04,0,F,arrest case no charge,1,14026291TC10A,(M2),0,2014-07-21,Susp Drivers Lic 1st Offense,2014-07-21,2014-07-22,,0,,,,,Risk of Recidivism,7,Medium,2013-11-04,Risk of Violence,4,Low,2013-11-04,2014-07-21,2014-07-22,4,0,259,1,1\r\n4928,junior bouquette,junior,bouquette,2013-03-22,Male,1990-08-10,25,25 - 45,Other,0,3,0,0,1,-1,2013-03-21 07:26:42,2013-03-22 10:25:37,13004115CF10A,2013-03-21,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-22,Risk of Violence,3,Low,2013-03-22,2015-10-01,2015-10-19,1,0,923,0,0\r\n4929,anthony mitchell,anthony,mitchell,2013-02-21,Male,1967-03-31,49,Greater than 45,African-American,0,7,0,0,1,-1,2013-02-20 01:41:20,2013-03-02 09:15:54,13005582MM10A,2013-02-20,,1,M,Assault,1,16002152MM10A,(M1),0,2016-03-05,Battery,2016-03-05,2016-03-17,,1,16002152MM10A,(M1),2016-03-05,Battery,Risk of Recidivism,7,Medium,2013-02-21,Risk of Violence,4,Low,2013-02-21,2014-01-26,2014-01-31,1,9,339,0,0\r\n4931,stephen cotillo,stephen,cotillo,2014-01-27,Male,1965-08-16,50,Greater than 45,Caucasian,0,1,0,0,0,0,2014-01-27 06:59:07,2014-03-04 01:51:57,14001186CF10A,2014-01-27,,0,F,Felony Battery (Dom Strang),1,14004278CF10A,(F3),0,2014-03-26,Felony Battery (Dom Strang),2014-03-26,2014-06-13,,1,14004278CF10A,(F3),2014-03-26,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2014-03-26,2014-06-13,0,36,58,1,1\r\n4932,wesley brooks,wesley,brooks,2014-11-12,Male,1969-02-17,47,Greater than 45,African-American,0,8,0,0,3,-1,2014-11-11 02:09:00,2014-12-20 08:22:02,14015117CF10A,2014-11-11,,1,F,Poss Pyrrolidinovalerophenone,1,15007083MM10A,(M1),,2015-07-01,Trespass Other Struct/Conve,,,,0,,,,,Risk of Recidivism,8,High,2014-11-12,Risk of Violence,3,Low,2014-11-12,2015-06-18,2015-06-26,3,38,218,0,1\r\n4933,brian willoughby,brian,willoughby,2013-08-02,Male,1978-11-07,37,25 - 45,African-American,0,8,0,0,14,-1,2013-08-01 07:15:54,2013-08-02 08:36:19,13010768CF10A,2013-08-01,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-02,Risk of Violence,3,Low,2013-08-02,2013-08-01,2013-08-02,14,0,973,0,0\r\n4934,erick dygert,erick,dygert,2013-02-04,Male,1989-04-27,26,25 - 45,Caucasian,0,2,0,0,0,0,2013-02-04 05:18:52,2013-02-05 08:10:46,13002544MM10A,2013-02-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-04,Risk of Violence,3,Low,2013-02-04,2013-02-04,2013-02-05,0,1,1152,0,0\r\n4935,brian semil,brian,semil,2013-01-14,Male,1987-10-08,28,25 - 45,African-American,0,10,2,0,21,-1,2013-01-13 07:08:36,2013-01-14 08:33:28,13000613CF10A,2013-01-13,,1,F,Driving While License Revoked,1,15002657CF10A,(F3),1,2015-02-25,Burglary Conveyance Unoccup,2015-02-26,2015-03-08,,1,15002657CF10A,(M1),2015-02-25,Battery,Risk of Recidivism,10,High,2013-01-14,Risk of Violence,10,High,2013-01-14,2015-03-11,2015-06-25,21,0,772,1,0\r\n4936,turquora davis,turquora,davis,2014-06-16,Female,1989-07-11,26,25 - 45,African-American,0,2,0,0,3,-1,2014-06-15 08:14:39,2014-06-16 01:11:31,14008292CF10A,2014-06-15,,1,F,Pos Cannabis W/Intent Sel/Del,1,14017212CF10A,(F3),1,2014-12-29,Felony Driving While Lic Suspd,2014-12-30,2014-12-30,,0,,,,,Risk of Recidivism,2,Low,2014-06-16,Risk of Violence,2,Low,2014-06-16,2014-12-30,2014-12-30,3,0,196,1,1\r\n4937,donovan elliott,donovan,elliott,2013-03-18,Male,1967-10-17,48,Greater than 45,Other,0,2,0,0,4,-1,2013-03-17 04:45:11,2013-03-18 07:05:54,13003891CF10A,2013-03-17,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-17,2013-03-18,4,0,1110,0,0\r\n4938,chevane robinson,chevane,robinson,2014-01-06,Male,1991-04-07,25,25 - 45,African-American,0,4,0,0,1,-80,2013-10-18 01:38:25,2013-10-19 02:03:28,13014562CF10A,2013-10-17,,81,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-06,Risk of Violence,4,Low,2014-01-06,2015-01-02,2015-01-09,1,0,361,0,0\r\n4939,romaine plummer,romaine,plummer,2013-08-20,Male,1995-06-18,20,Less than 25,African-American,0,8,1,0,1,0,2013-08-20 02:40:22,2013-08-20 07:11:30,13011669CF10A,2013-08-19,,1,F,Grand Theft (Motor Vehicle),1,13012019CF10A,(F1),2,2013-08-24,Armed Carjacking,2013-08-26,2014-07-31,,1,13012019CF10A,(F1),2013-08-24,Armed Carjacking,Risk of Recidivism,8,High,2013-08-20,Risk of Violence,10,High,2013-08-20,2014-07-31,2020-01-01,1,0,4,1,1\r\n4940,bruce johnson,bruce,johnson,2013-08-02,Male,1982-01-27,34,25 - 45,African-American,0,10,0,0,9,-1,2013-08-01 02:45:43,2013-08-18 04:39:35,13010747CF10A,2013-08-01,,1,F,Pos Cannabis W/Intent Sel/Del,1,13021296MM10A,(M1),1,2013-11-12,Resist/Obstruct W/O Violence,2013-11-13,2013-11-14,,0,,,,,Risk of Recidivism,10,High,2013-08-02,Risk of Violence,5,Medium,2013-08-02,2013-08-01,2013-08-18,9,16,102,1,1\r\n4941,robert leon,robert,leon,2013-08-24,Male,1989-10-25,26,25 - 45,Hispanic,0,1,0,0,1,-1,2013-08-23 11:30:03,2013-08-25 03:40:23,13016179MM10A,2013-08-23,,1,M,Reckless Driving,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-24,Risk of Violence,2,Low,2013-08-24,2013-08-23,2013-08-25,1,1,951,0,0\r\n4943,percival gordon,percival,gordon,2013-01-07,Male,1969-09-29,46,Greater than 45,African-American,1,9,0,1,9,-1,2013-01-06 05:12:49,2013-05-02 04:43:13,13000239CF10A,2013-01-06,,1,F,Grand Theft in the 3rd Degree,1,13011148MM10A,(M1),0,2013-06-10,Resist/Obstruct W/O Violence,2013-06-10,2013-08-23,,0,,,,,Risk of Recidivism,9,High,2013-01-07,Risk of Violence,7,Medium,2013-01-07,2013-06-10,2013-08-23,9,115,154,1,1\r\n4944,jevon williams,jevon,williams,2014-01-23,Male,1994-09-03,21,Less than 25,African-American,0,8,0,1,0,0,2014-01-23 12:56:27,2014-01-30 01:17:47,14001012CF10A,2014-01-22,,1,F,Grand Theft in the 3rd Degree,1,14016710MM10A,(M1),0,2014-11-23,Petit Theft $100- $300,2014-11-23,2014-11-24,,0,,,,,Risk of Recidivism,8,High,2014-01-23,Risk of Violence,7,Medium,2014-01-23,2014-11-23,2014-11-24,0,7,304,1,1\r\n4945,kimberly carter,kimberly,carter,2013-02-24,Female,1988-08-10,27,25 - 45,Caucasian,0,5,0,0,2,-1,2013-02-23 03:10:12,2013-04-26 05:44:15,13002796CF10A,,2013-02-23,1,F,arrest case no charge,1,13003423CF10A,(F3),,2013-03-06,False Ownership Info/Pawn Item,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-24,Risk of Violence,3,Low,2013-02-24,2013-02-23,2013-04-26,2,0,10,1,1\r\n4947,lamont cummings,lamont,cummings,2013-10-07,Male,1994-07-03,21,Less than 25,African-American,0,8,1,1,3,0,2013-10-07 11:38:45,2013-10-25 10:48:20,13019069MM10A,2013-10-07,,0,M,Battery,1,14009359CF10A,(M1),0,2014-07-08,Resist/Obstruct W/O Violence,2014-07-08,2015-03-12,,0,,,,,Risk of Recidivism,8,High,2013-10-07,Risk of Violence,8,High,2013-10-07,2014-07-08,2015-03-12,3,18,274,1,1\r\n4948,michael liberatore,michael,liberatore,2013-03-09,Male,1986-11-14,29,25 - 45,Caucasian,0,4,0,0,1,-1,2013-03-08 03:18:08,2013-03-22 08:45:58,13003457CF10A,2013-03-08,,1,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-09,Risk of Violence,2,Low,2013-03-09,2013-03-08,2013-03-22,1,13,1119,0,0\r\n4949,shawn garner,shawn,garner,2014-01-04,Male,1969-11-08,46,Greater than 45,Caucasian,0,4,0,0,4,0,2014-01-04 02:43:27,2014-01-05 08:14:11,14000155CF10A,2014-01-04,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-04,Risk of Violence,1,Low,2014-01-04,2014-01-04,2014-01-05,4,1,818,0,0\r\n4950,aslet augustin,aslet,augustin,2013-01-07,Male,1991-09-19,24,Less than 25,African-American,0,4,0,0,0,0,2013-01-07 03:32:06,2013-01-08 02:56:38,13000272CF10A,2013-01-07,,0,F,Pos Cannabis W/Intent Sel/Del,1,15001016MM20A,(M2),,2015-03-28,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-07,Risk of Violence,5,Medium,2013-01-07,2013-01-07,2013-01-08,0,1,810,1,0\r\n4951,maria garcia,maria,garcia,2014-03-17,Female,1964-09-11,51,Greater than 45,Hispanic,0,1,0,0,2,0,2014-03-17 06:13:55,2014-03-17 08:07:49,14004626MM10A,2014-03-17,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-17,2014-03-17,2,0,746,0,0\r\n4952,willie gray,willie,gray,2014-10-31,Male,1959-01-12,57,Greater than 45,African-American,0,4,0,0,8,0,2014-10-31 12:02:01,2014-10-31 01:47:05,14040148MU10A,2014-10-30,,1,M,DUI Level 0.15 Or Minor In Veh,1,15043364TC20A,(M2),,2015-07-23,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2014-10-31,Risk of Violence,2,Low,2014-10-31,2014-10-31,2014-10-31,8,0,265,1,1\r\n4953,sheldon josephs,sheldon,josephs,2014-03-24,Male,1982-07-12,33,25 - 45,African-American,0,2,0,0,4,-1,2014-03-23 08:14:19,2014-03-24 08:35:35,14004102CF10A,2014-03-23,,1,F,Felony Driving While Lic Suspd,1,16011434TC30A,(M2),,2016-02-11,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-24,Risk of Violence,4,Low,2014-03-24,2014-03-23,2014-03-24,4,0,689,1,1\r\n4955,delvin mills,delvin,mills,2014-03-04,Male,1992-12-04,23,Less than 25,African-American,0,9,1,0,4,-1,2014-03-03 06:42:34,2014-07-25 05:03:57,14002998CF10A,2014-03-03,,1,F,Unauth Poss ID Card or DL,1,14017951MM10A,(M1),0,2014-11-21,Resist/Obstruct W/O Violence,2014-11-21,2015-05-01,,0,,,,,Risk of Recidivism,9,High,2014-03-04,Risk of Violence,6,Medium,2014-03-04,2014-11-21,2015-05-01,4,143,262,1,1\r\n4956,cornelius jones,cornelius,jones,2013-02-23,Male,1987-04-19,29,25 - 45,African-American,0,8,0,0,5,0,2013-02-23 02:42:31,2013-02-24 03:36:20,13002779CF10A,2013-02-23,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-23,Risk of Violence,4,Low,2013-02-23,2013-09-02,2013-10-27,5,1,191,0,0\r\n4958,dylan welly,dylan,welly,2013-03-16,Male,1994-04-18,22,Less than 25,Caucasian,0,4,0,0,0,0,2013-03-16 02:49:51,2013-03-25 04:33:55,13005183MM10A,2013-03-16,,0,M,Battery,1,13006269CF10A,(M1),0,2013-05-01,Petit Theft $100- $300,2013-05-01,2013-05-02,,0,,,,,Risk of Recidivism,4,Low,2013-03-16,Risk of Violence,5,Medium,2013-03-16,2013-05-01,2013-05-02,0,9,46,1,1\r\n4959,george rodriguez,george,rodriguez,2014-01-04,Male,1959-05-14,56,Greater than 45,Hispanic,0,2,0,0,10,-1,2014-01-03 11:38:48,2014-01-16 12:08:40,14000149MM10A,2014-01-03,,1,M,Battery,1,15001201CF10A,(F3),,2015-01-26,Battery on Law Enforc Officer,,,,1,15001201CF10A,(F3),2015-01-26,Battery on Law Enforc Officer,Risk of Recidivism,2,Low,2014-01-04,Risk of Violence,1,Low,2014-01-04,2014-01-03,2014-01-16,10,12,387,1,1\r\n4960,elizabeth mahoney,elizabeth,mahoney,2013-10-16,Female,1982-05-30,33,25 - 45,Caucasian,0,6,0,0,1,-5,2013-10-11 02:07:22,2013-10-15 08:14:25,13019333MM10A,2013-10-11,,5,M,Battery,1,14000520MM10A,(M1),0,2014-01-10,Trespass After Warning,2014-01-10,2014-01-10,,0,,,,,Risk of Recidivism,6,Medium,2013-10-16,Risk of Violence,3,Low,2013-10-16,2014-01-10,2014-01-10,1,0,86,0,1\r\n4961,david jeanpierre,david,jeanpierre,2014-08-13,Male,1988-04-25,27,25 - 45,Other,0,4,0,0,0,-1,2014-08-12 05:46:47,2014-08-13 10:00:55,14012352CF10A,2014-08-12,,1,F,Crim Use of Personal ID Info,1,16000928CF10A,(F3),0,2016-01-22,Poss Unlaw Issue Id,2016-01-22,2016-01-23,,0,,,,,Risk of Recidivism,4,Low,2014-08-13,Risk of Violence,4,Low,2014-08-13,2014-09-30,2014-10-01,0,0,48,0,1\r\n4962,manuel camposeco-mendez,manuel,camposeco-mendez,2013-07-25,Male,1985-02-03,31,25 - 45,Hispanic,0,2,0,0,1,-75,2013-05-11 07:52:30,2013-05-14 11:01:18,13009129MM10A,2013-05-11,,75,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-25,Risk of Violence,1,Low,2013-07-25,2013-05-11,2013-05-14,1,0,981,0,0\r\n4964,lemy williams,lemy,williams,2014-04-01,Male,1975-09-23,40,25 - 45,African-American,0,8,0,0,3,-1,2014-03-31 03:19:04,2014-04-01 01:25:43,14004493CF10A,2014-03-31,,1,F,Fleeing Or Attmp Eluding A Leo,1,14017909TC10A,(M1),0,2014-04-10,Opert With Susp DL 2nd Offens,2014-04-10,2014-04-12,,0,,,,,Risk of Recidivism,8,High,2014-04-01,Risk of Violence,5,Medium,2014-04-01,2014-04-10,2014-04-12,3,0,9,1,1\r\n4965,rochilun manasse,rochilun,manasse,2013-08-19,Male,1968-04-02,48,Greater than 45,Other,0,1,0,0,0,-1,2013-08-18 06:22:59,2013-08-19 05:44:31,13015630MM10A,2013-08-18,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-19,0,0,956,0,0\r\n4967,james simmons,james,simmons,2013-08-21,Male,1984-01-03,32,25 - 45,African-American,0,6,3,0,10,-1,2013-08-20 12:33:33,2013-08-24 08:38:45,13011684CF10A,2013-08-20,,1,F,Sexual Battery / Vict 12 Yrs +,1,14042861TC10A,(M2),,2014-11-13,Expired DL More Than 6 Months,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-21,Risk of Violence,5,Medium,2013-08-21,2013-10-14,2013-11-01,10,3,54,0,1\r\n4968,nathaniel ward,nathaniel,ward,2013-06-26,Male,1948-04-05,68,Greater than 45,African-American,0,2,0,0,1,-37,2013-05-20 07:22:20,2013-06-15 12:40:01,13007185CF10A,,2013-05-20,37,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-26,Risk of Violence,1,Low,2013-06-26,2013-05-20,2013-06-15,1,0,1010,0,0\r\n4969,jamal jones,jamal,jones,2013-10-02,Male,1992-03-26,24,Less than 25,African-American,0,4,0,0,1,-1,2013-10-01 03:10:38,2013-10-02 07:32:09,13018696MM10A,2013-10-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-02,Risk of Violence,4,Low,2013-10-02,2013-10-01,2013-10-02,1,0,912,0,0\r\n4970,timar honewell,timar,honewell,2013-10-02,Male,1983-11-14,32,25 - 45,African-American,0,2,0,0,1,-1,2013-10-01 06:53:20,2013-10-02 04:24:04,13013789CF10A,,2013-10-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,2,Low,2013-10-02,2013-10-01,2013-10-02,1,0,912,0,0\r\n4971,gerald rice,gerald,rice,2014-09-05,Male,1996-05-11,19,Less than 25,African-American,0,7,1,0,2,-6,2014-08-30 12:40:24,2014-08-31 01:53:28,14011855CF10A,2014-08-30,,6,F,Grand Theft in the 3rd Degree,1,15012361MM10A,(M1),0,2015-11-28,Petit Theft $100- $300,2015-11-28,2015-11-28,,0,,,,,Risk of Recidivism,7,Medium,2014-09-05,Risk of Violence,8,High,2014-09-05,2015-11-28,2015-11-28,2,0,449,0,1\r\n4972,fausto zepeda,fausto,zepeda,2013-10-01,Male,1959-06-29,56,Greater than 45,Hispanic,0,1,0,0,4,,,,10006540CF10B,2010-04-13,,1267,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,,,4,0,913,0,0\r\n4973,javon taylor,javon,taylor,2014-02-06,Male,1993-03-06,23,Less than 25,African-American,0,9,0,0,6,-1,2014-02-05 06:40:35,2014-02-06 09:11:05,14001665CF10A,2014-02-05,,1,F,Uttering a Forged Instrument,1,14008058CF10A,(F3),1,2014-06-09,Tamper With Witness/Victim/CI,2014-06-10,2014-07-16,,0,,,,,Risk of Recidivism,9,High,2014-02-06,Risk of Violence,8,High,2014-02-06,2015-07-27,2015-10-05,6,0,123,1,1\r\n4977,gary riess,gary,riess,2013-03-06,Male,1976-07-10,39,25 - 45,Caucasian,6,7,1,0,17,-1,2013-03-05 01:30:40,2013-09-02 03:06:51,13003298CF10A,2013-03-05,,1,F,Possession of Cocaine,1,14033403TC40A,(M2),,2014-05-07,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-06,Risk of Violence,5,Medium,2013-03-06,2013-03-05,2013-09-02,17,180,427,1,1\r\n4978,denzel obrien,denzel,obrien,2013-04-28,Male,1991-01-08,25,25 - 45,African-American,0,3,0,0,1,-1,2013-04-27 05:25:08,2013-04-28 01:21:18,10010032CF10A,,2013-04-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-28,Risk of Violence,6,Medium,2013-04-28,2014-04-29,2014-07-11,1,0,366,0,0\r\n4979,james greene,james,greene,2013-01-31,Male,1973-10-01,42,25 - 45,African-American,0,8,0,0,6,-1,2013-01-30 12:01:07,2013-01-31 01:50:17,13003377CF10A,2013-01-30,,1,F,Felony Battery w/Prior Convict,1,14003153CF10A,(F3),0,2014-01-16,Possession of Cocaine,2014-01-16,2014-01-23,,0,,,,,Risk of Recidivism,8,High,2013-01-31,Risk of Violence,8,High,2013-01-31,2014-01-16,2014-01-23,6,0,350,1,1\r\n4980,xavier serrano,xavier,serrano,2013-12-05,Male,1986-09-12,29,25 - 45,Caucasian,0,3,0,0,1,-1,2013-12-04 08:04:24,2014-01-16 11:00:21,13022549MM10A,2013-12-04,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-05,Risk of Violence,2,Low,2013-12-05,2013-12-04,2014-01-16,1,42,848,0,0\r\n4982,franklin cedeno,franklin,cedeno,2013-08-11,Male,1977-12-30,38,25 - 45,Caucasian,0,1,0,0,2,-1,2013-08-10 01:32:23,2013-08-11 07:07:19,13015105MM10A,2013-08-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-11,Risk of Violence,2,Low,2013-08-11,2013-08-10,2013-08-11,2,0,964,0,0\r\n4983,marshall jacobs,marshall,jacobs,2013-12-15,Male,1984-04-02,32,25 - 45,Caucasian,0,5,2,1,10,-1,2013-12-14 12:27:01,2013-12-21 05:51:12,13017289CF10A,2013-12-14,,1,F,Crlty Twrd Child Urge Oth Act,1,14002465MM10A,(M1),0,2014-02-12,Resist/Obstruct W/O Violence,2014-02-12,2014-02-12,,0,,,,,Risk of Recidivism,5,Medium,2013-12-15,Risk of Violence,3,Low,2013-12-15,2014-02-12,2014-02-12,10,6,59,0,1\r\n4990,justin gonzaga,justin,gonzaga,2014-11-15,Male,1992-06-18,23,Less than 25,Caucasian,0,5,0,0,4,-1,2014-11-14 05:54:48,2014-11-15 02:31:20,14016326MM10A,2014-11-14,,1,M,Battery,1,15002201MM40A,(M1),,2015-05-18,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2014-11-15,Risk of Violence,4,Low,2014-11-15,2015-10-21,2015-10-22,4,0,184,1,1\r\n4991,malachi wilson,malachi,wilson,2013-06-18,Male,1957-11-11,58,Greater than 45,African-American,0,3,0,0,10,-3,2013-06-15 08:00:48,2013-06-17 05:04:07,13008517CF10A,2013-06-15,,3,F,Possession of Cocaine,1,13009550CF10A,(F3),0,2013-07-08,Possession of Cocaine,2013-07-08,2013-08-21,,0,,,,,Risk of Recidivism,3,Low,2013-06-18,Risk of Violence,2,Low,2013-06-18,2013-07-08,2013-08-21,10,0,20,1,1\r\n4992,courtney alexander,courtney,alexander,2013-02-17,Male,1973-05-20,42,25 - 45,African-American,0,6,0,0,9,0,2013-02-17 03:37:19,2013-02-17 07:51:18,13002429CF10A,2013-02-17,,0,F,Possession of Cannabis,1,13046308TC20A,(M2),97,2013-07-24,Driving License Suspended,2013-10-29,2013-10-30,,0,,,,,Risk of Recidivism,6,Medium,2013-02-17,Risk of Violence,4,Low,2013-02-17,2014-09-07,2014-09-07,9,0,157,1,1\r\n4993,jamie osorio,jamie,osorio,2013-02-01,Male,1963-07-26,52,Greater than 45,Hispanic,0,4,0,0,3,-1,2013-01-31 10:43:21,2013-02-14 06:00:43,13001559CF10A,2013-01-31,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-01,Risk of Violence,3,Low,2013-02-01,2015-04-21,2016-03-30,3,13,809,0,0\r\n4994,chase valadez,chase,valadez,2014-04-14,Male,1989-05-04,26,25 - 45,Caucasian,0,4,0,0,1,0,2014-04-14 06:26:32,2014-04-23 01:20:26,14005204CF10A,2014-04-14,,0,F,Grand Theft (Motor Vehicle),1,14007110MM10A,(M2),0,2014-04-29,Trespass Struct/Conveyance,2014-04-29,2014-05-03,,0,,,,,Risk of Recidivism,4,Low,2014-04-14,Risk of Violence,4,Low,2014-04-14,2014-04-29,2014-05-03,1,9,15,1,1\r\n4996,carlos ramos,carlos,ramos,2013-11-12,Male,1989-02-18,27,25 - 45,Caucasian,0,1,0,0,1,0,2013-11-12 01:08:55,2013-11-13 02:28:14,13015698CF10A,2013-11-11,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-12,Risk of Violence,2,Low,2013-11-12,2013-11-12,2013-11-13,1,1,871,0,0\r\n4998,john intindola,john,intindola,2013-05-16,Male,1982-08-03,33,25 - 45,Caucasian,0,2,0,0,1,-1,2013-05-15 06:27:22,2013-05-16 04:09:53,13006957CF10A,,2013-05-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-16,Risk of Violence,2,Low,2013-05-16,2013-05-15,2013-05-16,1,0,1051,0,0\r\n4999,james charles,james,charles,2014-04-08,Male,1982-09-18,33,25 - 45,African-American,0,8,0,0,2,0,2014-04-08 12:08:06,2014-04-08 08:58:15,14004887CF10A,2014-04-07,,1,F,Grand Theft in the 3rd Degree,1,15013616CF10A,(F3),,2015-01-22,Crim Use of Personal ID Info,,,,0,,,,,Risk of Recidivism,8,High,2014-04-08,Risk of Violence,9,High,2014-04-08,2014-04-08,2014-04-08,2,0,289,1,1\r\n5001,shiquel armstrong,shiquel,armstrong,2013-08-06,Male,1992-10-05,23,Less than 25,African-American,0,2,0,0,0,-1,2013-08-05 03:50:42,2013-08-06 07:30:31,13014734MM10A,2013-08-05,,1,M,Battery,1,14022773TC20A,(M2),36,2013-11-04,Susp Drivers Lic 1st Offense,2013-12-10,2013-12-11,,0,,,,,Risk of Recidivism,2,Low,2013-08-06,Risk of Violence,4,Low,2013-08-06,2016-01-24,2016-01-25,0,0,90,1,1\r\n5003,javaris mims,javaris,mims,2014-06-14,Male,1990-09-11,25,25 - 45,African-American,0,8,1,0,4,-1,2014-06-13 03:03:54,2014-07-02 05:35:00,14003397CF10A,,2014-06-13,1,F,arrest case no charge,1,16000439MM30A,(M1),,2016-03-03,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2014-06-14,Risk of Violence,6,Medium,2014-06-14,2015-06-05,2015-06-05,4,18,356,0,1\r\n5004,jason john,jason,john,2014-04-16,Male,1983-05-28,32,25 - 45,African-American,0,2,0,0,0,-1,2014-04-15 05:45:50,2014-04-21 01:59:34,14005278CF10A,2014-04-15,,1,F,False Imprisonment,1,15000312CF10A,(F3),0,2015-01-07,Possession of Cannabis,2015-01-07,2015-01-10,,0,,,,,Risk of Recidivism,2,Low,2014-04-16,Risk of Violence,1,Low,2014-04-16,2014-04-23,2014-05-08,0,5,7,0,1\r\n5005,alberto rodriguez,alberto,rodriguez,2014-02-15,Male,1981-12-03,34,25 - 45,Hispanic,0,9,0,0,14,-1,2014-02-14 11:36:09,2014-03-27 05:15:33,14002128CF10A,2014-02-14,,1,F,Grand Theft in the 3rd Degree,1,14014012CF10A,(F3),0,2014-10-17,Grand Theft in the 3rd Degree,2014-10-17,2014-11-13,,0,,,,,Risk of Recidivism,9,High,2014-02-15,Risk of Violence,9,High,2014-02-15,2014-10-17,2014-11-13,14,40,244,1,1\r\n5009,samia aviles,samia,aviles,2013-10-27,Female,1987-03-11,29,25 - 45,Caucasian,0,2,0,0,0,-1,2013-10-26 05:21:11,2013-10-28 03:08:35,13020331MM10A,2013-10-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-27,Risk of Violence,2,Low,2013-10-27,2013-10-26,2013-10-28,0,1,887,0,0\r\n5010,cori butler,cori,butler,2013-06-05,Male,1977-07-05,38,25 - 45,African-American,0,9,0,0,19,-4,2013-06-01 09:43:13,2013-06-02 08:07:58,13007397CF10A,,2013-06-01,4,F,arrest case no charge,1,13014308CF10A,(F3),0,2013-10-12,Possession of Cocaine,2013-10-12,2013-10-12,,1,13016265CF10A,(F2),2013-11-22,Throw Deadly Missile Into Veh,Risk of Recidivism,9,High,2013-06-05,Risk of Violence,5,Medium,2013-06-05,2013-08-23,2013-08-25,19,0,79,0,1\r\n5012,william calder,william,calder,2013-04-08,Male,1986-08-02,29,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-07 09:28:07,2013-04-08 07:50:27,13006655MO10A,2013-04-07,,1,M,Poss Of Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-08,Risk of Violence,2,Low,2013-04-08,2013-04-07,2013-04-08,0,0,1089,0,0\r\n5014,darryl harden,darryl,harden,2014-01-25,Male,1988-09-03,27,25 - 45,African-American,0,8,0,0,6,-1,2014-01-24 07:00:47,2014-02-28 05:27:38,14001077CF10A,2014-01-24,,1,F,Possession Burglary Tools,1,15033040TC10A,(M2),,2015-11-19,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2014-01-25,Risk of Violence,9,High,2014-01-25,2014-01-24,2014-02-28,6,34,663,1,1\r\n5015,amit chanardip,amit,chanardip,2014-11-02,Male,1990-10-22,25,25 - 45,Caucasian,0,2,0,0,0,0,2014-11-02 01:40:04,2014-11-03 01:45:01,14015845MM10A,2014-11-01,,1,M,Disorderly Intoxication,1,15018127MU10A,(M1),0,2015-06-20,DUI Property Damage/Injury,2015-06-20,2015-06-21,,0,,,,,Risk of Recidivism,2,Low,2014-11-02,Risk of Violence,2,Low,2014-11-02,2015-06-20,2015-06-21,0,1,230,1,1\r\n5017,michelle otto,michelle,otto,2013-10-10,Female,1985-03-22,31,25 - 45,Caucasian,0,5,0,2,2,-1,2013-10-09 04:32:58,2013-10-10 09:49:23,13014179CF10A,,2013-10-09,1,F,arrest case no charge,1,15000996CF10A,(M1),0,2015-01-22,Possess Drug Paraphernalia,2015-01-22,2015-02-25,,0,,,,,Risk of Recidivism,5,Medium,2013-10-10,Risk of Violence,4,Low,2013-10-10,2014-10-16,2014-11-27,2,0,371,0,1\r\n5019,brandon simmons,brandon,simmons,2013-01-10,Male,1985-06-08,30,25 - 45,African-American,0,9,0,0,8,0,2013-01-10 03:26:18,2013-03-16 02:36:31,13000151CF10A,,2013-01-10,0,F,arrest case no charge,1,13120650TC30A,(M2),407,2013-11-28,Operating W/O Valid License,2015-01-09,2015-01-27,,0,,,,,Risk of Recidivism,9,High,2013-01-10,Risk of Violence,9,High,2013-01-10,2013-01-10,2013-03-16,8,65,322,1,1\r\n5020,nathaniel adderly,nathaniel,adderly,2014-01-18,Male,1974-11-12,41,25 - 45,African-American,0,7,0,0,0,-1,2014-01-17 10:36:32,2014-01-18 01:22:01,14000775CF10A,2014-01-17,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-18,Risk of Violence,1,Low,2014-01-18,2014-01-17,2014-01-18,0,0,804,0,0\r\n5022,tarzan saulsby,tarzan,saulsby,2013-04-11,Male,1956-07-27,59,Greater than 45,African-American,0,4,0,0,8,-1,2013-04-10 05:27:44,2013-04-15 09:13:23,13005158CF10A,2013-04-10,,1,F,Possession of Cocaine,1,15007826CF10A,(F3),0,2015-06-17,Possession of Cocaine,2015-06-17,2015-10-11,,0,,,,,Risk of Recidivism,4,Low,2013-04-11,Risk of Violence,2,Low,2013-04-11,2014-02-19,2014-03-01,8,4,314,0,0\r\n5023,christian torres,christian,torres,2013-12-13,Male,1994-10-04,21,Less than 25,Caucasian,0,4,0,0,1,-1,2013-12-12 11:06:24,2013-12-13 01:47:07,13023012MM10A,2013-12-12,,1,M,Battery,1,14008832MM10A,(M1),0,2014-06-03,Battery,2014-06-03,2014-06-04,,1,14008832MM10A,(M1),2014-06-03,Battery,Risk of Recidivism,4,Low,2013-12-13,Risk of Violence,7,Medium,2013-12-13,2014-06-03,2014-06-04,1,0,172,1,1\r\n5025,michelle higgins,michelle,higgins,2014-11-07,Female,1983-03-17,33,25 - 45,African-American,0,4,0,0,6,-51,2014-09-17 08:27:32,2014-09-17 08:07:28,13022987MM10A,,2014-09-17,51,M,arrest case no charge,1,16010201TC30A,(M2),,2016-02-13,Driving while DL Susp / Financial Resp,,,,0,,,,,Risk of Recidivism,4,Low,2014-11-07,Risk of Violence,4,Low,2014-11-07,2014-09-17,2014-09-17,6,0,463,1,1\r\n5027,storm tillman,storm,tillman,2014-07-30,Male,1989-04-07,27,25 - 45,African-American,0,4,0,0,6,-1,2014-07-29 04:26:10,2014-09-06 05:54:30,14010332CF10A,2014-07-29,,1,F,Felony Petit Theft,1,14016162CF10A,(M1),0,2014-12-04,Possess Cannabis/20 Grams Or Less,2014-12-04,2014-12-22,,0,,,,,Risk of Recidivism,4,Low,2014-07-30,Risk of Violence,2,Low,2014-07-30,2014-12-04,2014-12-22,6,38,127,1,1\r\n5033,cian campbell,cian,campbell,2014-03-04,Male,1985-07-09,30,25 - 45,African-American,0,1,0,0,0,-1,2014-03-03 02:22:21,2014-03-04 10:10:53,14003014CF10A,2014-03-02,,2,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-04,Risk of Violence,2,Low,2014-03-04,2014-03-03,2014-03-04,0,0,759,0,0\r\n5035,james reeves,james,reeves,2013-04-06,Male,1972-07-21,43,25 - 45,Caucasian,0,5,0,0,4,-1,2013-04-05 10:35:56,2013-05-23 07:05:55,13004902CF10A,2013-04-05,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-06,Risk of Violence,1,Low,2013-04-06,2013-04-05,2013-05-23,4,47,1091,0,0\r\n5037,tess giesen,tess,giesen,2014-01-09,Female,1991-07-12,24,Less than 25,Caucasian,0,9,0,1,2,-2,2014-01-07 05:06:31,2014-01-07 08:45:09,14000267CF10A,2014-01-06,,3,F,Obtain Control Substance By Fraud,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-09,Risk of Violence,4,Low,2014-01-09,2014-01-07,2014-01-07,2,0,813,0,0\r\n5042,napoleon culver,napoleon,culver,2013-05-26,Male,1971-01-12,45,Greater than 45,African-American,0,7,0,0,13,-1,2013-05-25 08:32:38,2013-05-31 11:05:15,13010055MM10A,2013-05-25,,1,M,Viol Injunction Protect Dom Vi,1,15005663CF10A,(F3),1,2015-04-29,Felony Battery w/Prior Convict,2015-04-30,2015-04-30,,1,15005663CF10A,(F3),2015-04-29,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-05-26,Risk of Violence,6,Medium,2013-05-26,2013-06-13,2013-08-08,13,5,18,0,1\r\n5043,omar yunis,omar,yunis,2013-01-03,Male,1992-08-29,23,Less than 25,Caucasian,0,9,0,1,0,0,2013-01-03 12:02:47,2013-01-22 08:41:13,13000075CF10A,2013-01-02,,1,F,False Imprisonment,1,14008442MM10A,(M1),1,2014-05-26,Battery,2014-05-27,2014-06-06,,1,14008442MM10A,(M1),2014-05-26,Battery,Risk of Recidivism,9,High,2013-01-03,Risk of Violence,9,High,2013-01-03,2013-01-03,2013-01-22,0,19,508,1,1\r\n5045,karen darnell,karen,darnell,2013-07-18,Female,1976-02-20,40,25 - 45,Caucasian,0,10,0,0,5,16,2013-08-03 02:48:08,2013-09-27 10:30:43,12004314CF10A,2012-03-22,,483,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-07-18,Risk of Violence,3,Low,2013-07-18,2013-08-03,2013-09-27,5,0,16,0,0\r\n5046,nashavia hemingway,nashavia,hemingway,2013-10-29,Female,1992-11-05,23,Less than 25,African-American,0,7,0,0,0,-1,2013-10-28 05:52:52,2013-10-30 12:28:17,13015043CF10A,2013-10-28,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-29,Risk of Violence,6,Medium,2013-10-29,2013-10-28,2013-10-30,0,1,885,0,0\r\n5047,cipher allah,cipher,allah,2013-03-22,Male,1976-12-13,39,25 - 45,African-American,0,2,0,0,3,-1,2013-03-21 03:33:14,2013-03-22 09:40:17,13004088CF10A,,2013-03-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-22,Risk of Violence,3,Low,2013-03-22,2013-03-21,2013-03-22,3,0,1106,0,0\r\n5048,danise joseph,danise,joseph,2014-01-30,Female,1989-09-30,26,25 - 45,African-American,0,5,0,0,5,-1,2014-01-29 10:34:13,2014-03-04 04:19:21,14001289CF10A,2014-01-29,,1,F,Aggrav Battery w/Deadly Weapon,1,14049843TC20A,(M2),,2014-07-11,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-30,Risk of Violence,6,Medium,2014-01-30,2014-01-29,2014-03-04,5,33,162,1,1\r\n5049,jennifer nguyen,jennifer,nguyen,2013-07-08,Female,1989-05-04,26,25 - 45,Caucasian,0,2,0,0,0,-2,2013-07-06 01:41:52,2013-07-06 09:09:51,13012793MM10A,2013-07-05,,3,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-08,Risk of Violence,2,Low,2013-07-08,2013-07-06,2013-07-06,0,0,998,0,0\r\n5050,tevin williams,tevin,williams,2013-08-06,Male,1994-08-24,21,Less than 25,African-American,0,4,0,0,0,0,2013-08-06 03:34:21,2013-08-07 08:33:52,13014863MM10A,2013-08-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-06,Risk of Violence,6,Medium,2013-08-06,2013-08-06,2013-08-07,0,1,969,0,0\r\n5051,steven grimmer,steven,grimmer,2013-03-05,Male,1985-12-26,30,25 - 45,Caucasian,0,3,1,1,3,-1,2013-03-04 02:15:12,2013-05-08 10:08:45,13003259CF10A,2013-03-04,,1,F,Tampering with a Victim,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-05,Risk of Violence,3,Low,2013-03-05,2013-03-04,2013-05-08,3,64,1123,0,0\r\n5052,amer raja,amer,raja,2013-09-04,Male,1972-04-01,44,25 - 45,Caucasian,0,4,0,0,0,0,2013-09-04 12:17:51,2013-09-16 07:36:54,13012428CF10A,2013-09-03,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-09-04,2013-09-16,0,12,940,0,0\r\n5053,jonathan lee,jonathan,lee,2013-10-17,Male,1994-10-24,21,Less than 25,African-American,0,7,0,0,1,-21,2013-09-26 12:29:45,2013-10-17 10:17:36,13013504CF10A,2013-09-25,,22,F,Burglary Dwelling Armed,1,14014087MM10A,(M1),0,2014-09-10,Resist/Obstruct W/O Violence,2014-09-10,2014-10-02,,0,,,,,Risk of Recidivism,7,Medium,2013-10-17,Risk of Violence,8,High,2013-10-17,2014-09-10,2014-10-02,1,0,328,1,1\r\n5054,joseph maquez,joseph,maquez,2013-02-14,Male,1992-11-15,23,Less than 25,African-American,0,4,0,0,0,-1,2013-02-13 09:00:36,2013-02-15 05:30:29,13003188MM10A,2013-02-13,,1,M,Lewdness Violation,1,15018235TC40A,(M2),,2015-03-06,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-14,Risk of Violence,5,Medium,2013-02-14,2013-02-13,2013-02-15,0,1,750,1,0\r\n5057,jondra grier,jondra,grier,2014-02-04,Female,1966-09-27,49,Greater than 45,African-American,0,1,0,0,1,-1,2014-02-03 05:28:44,2014-02-04 01:31:25,14001512CF10A,2014-02-03,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-02-03,2014-02-04,1,0,787,0,0\r\n5058,jordan johnson,jordan,johnson,2014-09-27,Male,1993-02-02,23,Less than 25,African-American,0,10,0,0,3,-1,2014-09-26 03:52:35,2014-11-18 10:06:29,14013072CF10A,2014-09-26,,1,F,Grand Theft in the 3rd Degree,1,15005574MM10A,(M1),1,2015-05-20,Possess Cannabis/20 Grams Or Less,2015-05-21,2015-08-29,,0,,,,,Risk of Recidivism,10,High,2014-09-27,Risk of Violence,8,High,2014-09-27,2015-02-16,2015-02-24,3,52,142,0,1\r\n5060,gary cunningham,gary,cunningham,2013-02-04,Male,1992-01-28,24,Less than 25,African-American,0,5,0,0,1,-1,2013-02-03 05:28:09,2013-04-19 06:07:00,13001689CF10A,2013-02-03,,1,F,Possession of Cocaine,1,13015727MM10A,(M1),0,2013-08-19,Possess Cannabis/20 Grams Or Less,2013-08-19,2014-04-23,,0,,,,,Risk of Recidivism,5,Medium,2013-02-04,Risk of Violence,7,Medium,2013-02-04,2013-08-19,2014-04-23,1,74,196,1,1\r\n5061,tiarra jones,tiarra,jones,2014-04-26,Female,1994-11-17,21,Less than 25,African-American,0,4,0,0,1,-1,2014-04-25 05:54:49,2014-04-26 01:10:22,14005778CF10A,,2014-04-25,1,F,arrest case no charge,1,15027829TC10A,(M2),,2015-10-01,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2014-04-26,Risk of Violence,5,Medium,2014-04-26,2014-04-25,2014-04-26,1,0,523,1,1\r\n5062,melissa bennett,melissa,bennett,2013-08-16,Female,1979-02-09,37,25 - 45,Caucasian,0,6,0,0,7,-30,2013-07-17 07:25:41,2013-07-24 07:05:16,13010026CF10A,2013-07-17,,30,F,False Ownership Info/Pawn Item,1,13013253CF10A,(F3),0,2013-09-20,Grand Theft in the 3rd Degree,2013-09-20,2014-02-20,,0,,,,,Risk of Recidivism,6,Medium,2013-08-16,Risk of Violence,2,Low,2013-08-16,2013-09-20,2014-02-20,7,0,35,1,1\r\n5063,monique howard,monique,howard,2013-08-07,Female,1994-12-15,21,Less than 25,African-American,0,5,0,0,1,,,,13014866MM10A,2013-08-06,,1,M,Battery,1,14008814CF10A,(F3),,2014-06-13,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-07,Risk of Violence,6,Medium,2013-08-07,,,1,0,310,1,1\r\n5064,joshua flewellyn,joshua,flewellyn,2013-10-04,Male,1987-04-29,28,25 - 45,Caucasian,0,2,0,0,2,-1,2013-10-03 03:57:15,2013-10-13 05:03:29,13008300CF10A,,2013-10-03,1,F,arrest case no charge,1,14069451TC20A,(M2),,2014-10-02,Operating W/O Valid License,,,,1,14014624MM10A,(M1),2014-10-05,Battery,Risk of Recidivism,2,Low,2013-10-04,Risk of Violence,3,Low,2013-10-04,2013-10-03,2013-10-13,2,9,363,1,1\r\n5065,christopher sternberg,christopher,sternberg,2013-10-08,Male,1973-09-22,42,25 - 45,Caucasian,0,4,0,0,2,-43,2013-08-26 07:56:02,2013-10-06 06:12:54,13016328MM10A,2013-08-26,,43,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-08,Risk of Violence,5,Medium,2013-10-08,2013-08-26,2013-10-06,2,0,906,0,0\r\n5066,youvens horace,youvens,horace,2013-04-07,Male,1992-05-15,23,Less than 25,Other,0,6,2,0,7,0,2013-04-07 03:12:39,2013-04-16 10:03:25,13004966CF10A,2013-04-06,,1,F,Carrying Concealed Firearm,1,13014105MM10A,(M1),0,2013-07-25,Resist/Obstruct W/O Violence,2013-07-25,2013-07-31,,1,14010273CF10A,(F2),2014-07-26,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-04-07,Risk of Violence,8,High,2013-04-07,2013-07-25,2013-07-31,7,9,109,1,1\r\n5067,johnna jones,johnna,jones,2014-08-10,Female,1991-09-04,24,Less than 25,African-American,0,6,0,0,2,-1,2014-08-09 08:59:23,2014-08-10 09:28:19,14010851CF10A,2014-08-09,,1,F,Felony Driving While Lic Suspd,1,15000271MM30A,(M1),,2015-01-11,Possess Drug Paraphernalia,,,,1,15015879CF10A,(F7),2015-12-10,Burglary Dwelling Armed,Risk of Recidivism,6,Medium,2014-08-10,Risk of Violence,4,Low,2014-08-10,2014-08-09,2014-08-10,2,0,154,1,1\r\n5068,jarod singh,jarod,singh,2014-01-22,Male,1984-06-26,31,25 - 45,Caucasian,0,7,0,0,0,0,2014-01-22 12:19:55,2014-01-22 08:35:10,14000913CF10A,2014-01-21,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-22,Risk of Violence,6,Medium,2014-01-22,2014-01-22,2014-01-22,0,0,800,0,0\r\n5069,jamar wright,jamar,wright,2013-05-08,Male,1991-06-05,24,Less than 25,African-American,1,10,0,0,2,-1,2013-05-07 01:39:21,2014-09-25 06:21:45,13018794MM10A,2013-05-07,,1,M,Prostitution/Lewd Act Assignation,1,14008981MM10A,(M1),,2014-06-04,Indecent Exposure,,,,0,,,,,Risk of Recidivism,10,High,2013-05-08,Risk of Violence,9,High,2013-05-08,2013-05-07,2014-09-25,2,0,392,1,1\r\n5071,daniel reid,daniel,reid,2013-04-08,Male,1990-08-28,25,25 - 45,African-American,0,2,0,0,1,-1,2013-04-07 08:23:40,2013-04-08 07:34:25,13004984CF10A,,2013-04-07,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-08,Risk of Violence,3,Low,2013-04-08,2013-12-19,2014-04-16,1,0,255,0,0\r\n5073,john walker,john,walker,2013-10-02,Male,1960-08-31,55,Greater than 45,African-American,0,2,0,0,12,,,,09013094CF10A,,2010-08-06,1153,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,1998-12-01,2001-06-08,12,0,912,0,0\r\n5074,jhims donner,jhims,donner,2013-03-24,Male,1983-04-02,33,25 - 45,African-American,0,1,0,0,1,-1,2013-03-23 04:32:28,2013-03-24 07:19:46,13005727MM10A,2013-03-23,,1,M,Battery,1,13082690TC30A,(M2),,2013-08-18,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-24,Risk of Violence,1,Low,2013-03-24,2013-03-23,2013-03-24,1,0,147,1,1\r\n5075,steven toussaint,steven,toussaint,2013-01-13,Male,1989-08-25,26,25 - 45,African-American,1,10,3,0,24,-1,2013-01-12 11:37:16,2013-04-08 08:36:41,13000716MM10A,2013-01-12,,1,M,Resist/Obstruct W/O Violence,1,14007646CF10A,(F3),,2014-04-02,Fleeing Or Attmp Eluding A Leo,,,,1,14007646CF10A,(F2),2014-04-01,Agg Assault Law Enforc Officer,Risk of Recidivism,10,High,2013-01-13,Risk of Violence,10,High,2013-01-13,2013-01-12,2013-04-08,24,85,444,1,1\r\n5078,sophie robinson,sophie,robinson,2013-04-18,Male,1988-07-24,27,25 - 45,African-American,0,7,0,0,1,-1,2013-04-17 10:42:28,2013-04-23 07:14:50,12015243CF10A,,2013-04-17,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-18,Risk of Violence,4,Low,2013-04-18,2013-04-17,2013-04-23,1,5,1079,0,0\r\n5079,bowie balentine,bowie,balentine,2013-09-05,Male,1990-01-24,26,25 - 45,Caucasian,0,2,0,0,3,-123,2013-05-05 06:10:13,2013-05-06 07:43:27,13008695MM10A,2013-05-05,,123,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-05,Risk of Violence,3,Low,2013-09-05,2013-05-05,2013-05-06,3,0,939,0,0\r\n5083,brian quirama,brian,quirama,2013-08-15,Male,1994-10-06,21,Less than 25,Hispanic,0,10,0,0,0,,,,,,,,M,,1,15003184CF10A,(F3),0,2015-03-09,Tampering With Physical Evidence,2015-03-09,2015-06-30,,0,,,,,Risk of Recidivism,10,High,2013-08-15,Risk of Violence,9,High,2013-08-15,2015-03-09,2015-06-30,0,493,571,1,1\r\n5084,regina battle,regina,battle,2013-01-01,Female,1988-06-28,27,25 - 45,African-American,0,4,0,0,0,,,,13000002MM10A,2012-12-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-01,Risk of Violence,3,Low,2013-01-01,,,0,0,1186,0,0\r\n5086,zeke zikria,zeke,zikria,2013-04-26,Male,1969-11-11,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-25 05:09:02,2013-04-27 04:59:30,13005960CF10A,2013-04-25,,1,F,Possession of Cocaine,1,15006848CF10A,(M1),1,2015-05-25,Resist/Obstruct W/O Violence,2015-05-26,2015-05-27,,1,15006848CF10A,(F3),2015-05-25,Battery on Law Enforc Officer,Risk of Recidivism,1,Low,2013-04-26,Risk of Violence,1,Low,2013-04-26,2013-09-24,2013-10-01,0,1,151,0,0\r\n5088,lizzette graf,lizzette,graf,2013-02-10,Female,1977-12-12,38,25 - 45,Caucasian,0,6,0,0,1,-1,2013-02-09 03:23:30,2013-02-10 08:17:31,13002923MM10A,2013-02-09,,1,M,Battery,1,14007946MM10A,(M1),1,2014-05-14,Resist/Obstruct W/O Violence,2014-05-15,2014-05-15,,1,14010189CF10A,(M1),2014-07-26,Battery,Risk of Recidivism,6,Medium,2013-02-10,Risk of Violence,4,Low,2013-02-10,2014-07-26,2014-08-29,1,0,458,1,1\r\n5094,lakeinyas david,lakeinyas,david,2013-02-13,Female,1992-01-17,24,Less than 25,African-American,0,5,0,0,0,-1,2013-02-12 11:40:28,2013-02-13 10:02:55,13003103MM10A,2013-02-12,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-13,Risk of Violence,5,Medium,2013-02-13,2013-02-12,2013-02-13,0,0,1143,0,0\r\n5096,romania graham,romania,graham,2014-03-23,Female,1977-08-24,38,25 - 45,African-American,0,4,0,0,0,-1,2014-03-22 09:07:19,2014-03-23 09:07:42,14005138MM10A,2014-03-22,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-23,Risk of Violence,1,Low,2014-03-23,2014-03-22,2014-03-23,0,0,740,0,0\r\n5098,germaine lynch,germaine,lynch,2014-04-11,Male,1988-09-23,27,25 - 45,African-American,0,9,0,0,7,-1,2014-04-10 01:36:12,2014-04-14 09:18:25,14004986CF10A,2014-04-10,,1,F,Burglary Conveyance Unoccup,1,14008725MM10A,(CO3),0,2014-06-01,Drink Near Licensed Establishm,2014-06-01,2014-06-02,,0,,,,,Risk of Recidivism,9,High,2014-04-11,Risk of Violence,6,Medium,2014-04-11,2014-06-01,2014-06-02,7,3,51,1,1\r\n5099,cornelius toney,cornelius,toney,2013-11-24,Male,1968-03-12,48,Greater than 45,African-American,0,3,0,0,6,-1,2013-11-23 10:19:26,2013-11-25 03:46:03,11020634CF10A,,2013-11-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-24,Risk of Violence,2,Low,2013-11-24,2013-11-23,2013-11-25,6,1,859,0,0\r\n5100,marie panebianco,marie,panebianco,2014-03-26,Female,1984-11-27,31,25 - 45,Caucasian,0,4,0,0,2,-28,2014-02-26 05:57:43,2014-03-25 10:21:37,14002715CF10A,2014-02-26,,28,F,Possession of Cocaine,1,15015982CF10A,(F3),6,2015-07-24,Poss Pyrrolidinovalerophenone,2015-07-30,2015-08-01,,0,,,,,Risk of Recidivism,4,Low,2014-03-26,Risk of Violence,1,Low,2014-03-26,2014-05-16,2014-06-06,2,0,51,0,1\r\n5101,alfred glinton,alfred,glinton,2013-05-13,Male,1987-04-26,28,25 - 45,African-American,0,5,0,0,5,-1,2013-05-12 11:23:34,2013-07-03 03:58:04,13009150MM10A,2013-05-12,,1,M,Battery,1,13016717CF10A,(F2),,2013-11-03,Burglary Unoccupied Dwelling,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-13,Risk of Violence,7,Medium,2013-05-13,2013-05-12,2013-07-03,5,51,174,1,1\r\n5103,robert rodriguez,robert,rodriguez,2013-11-06,Male,1986-01-14,30,25 - 45,Hispanic,0,9,0,0,7,-1,2013-11-05 01:13:15,2013-11-06 08:26:17,13015426CF10A,2013-11-05,,1,F,Agg Assault W/int Com Fel Dome,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-06,Risk of Violence,7,Medium,2013-11-06,2013-11-05,2013-11-06,7,0,877,0,0\r\n5106,tyler moore,tyler,moore,2014-07-18,Male,1990-10-31,25,25 - 45,Caucasian,0,5,0,1,6,-1,2014-07-17 04:35:23,2014-07-18 12:57:24,14010956MO10A,2014-07-17,,1,M,Petit Theft,1,14012438MO10A,(MO3),0,2014-08-18,Trespass,2014-08-18,2014-09-15,,0,,,,,Risk of Recidivism,5,Medium,2014-07-18,Risk of Violence,4,Low,2014-07-18,2014-08-18,2014-09-15,6,0,31,1,1\r\n5107,kendrick edwards,kendrick,edwards,2013-02-14,Male,1988-07-21,27,25 - 45,African-American,0,10,0,0,8,53,2013-04-08 11:15:07,2013-05-06 02:00:57,11014296CF10A,,2012-04-26,294,F,arrest case no charge,1,13008051MM10A,(M2),0,2013-04-08,Petit Theft,2013-04-08,2013-05-06,,1,13019631MM10A,(M1),2013-10-16,Battery,Risk of Recidivism,10,High,2013-02-14,Risk of Violence,9,High,2013-02-14,2013-04-08,2013-05-06,8,0,53,1,1\r\n5108,terry spunger,terry,spunger,2013-03-01,Male,1961-02-05,55,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-01 04:41:49,2013-03-02 05:03:07,13004220MM10A,2013-03-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-03-01,2013-03-02,0,1,1127,0,0\r\n5111,rashaun dubose,rashaun,dubose,2013-02-07,Male,1990-12-24,25,25 - 45,African-American,0,3,0,0,1,,,,12015375CF10A,2012-10-17,,113,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-07,Risk of Violence,4,Low,2013-02-07,,,1,0,1149,0,0\r\n5112,ferondo randall,ferondo,randall,2014-07-29,Male,1975-07-23,40,25 - 45,African-American,0,7,0,0,5,0,2014-07-29 01:35:57,2014-08-28 10:17:57,07022329CF10A,,2009-03-06,1971,F,arrest case no charge,1,16000806CF10A,(F3),,2015-09-21,Grand Theft in the 3rd Degree,,,,1,16002009CF10A,(F7),2016-02-17,Armed Sex Batt/vict 12 Yrs +,Risk of Recidivism,7,Medium,2014-07-29,Risk of Violence,7,Medium,2014-07-29,2014-07-29,2014-08-28,5,30,419,1,1\r\n5113,laxavier jones,laxavier,jones,2013-03-29,Male,1994-09-19,21,Less than 25,African-American,0,4,0,0,0,-1,2013-03-28 05:25:09,2013-03-29 12:58:27,13004510CF10A,2013-03-28,,1,F,Burglary Conveyance Unoccup,1,13013755MM10A,(M1),0,2013-07-19,Possess Cannabis/20 Grams Or Less,2013-07-19,2013-07-19,,0,,,,,Risk of Recidivism,4,Low,2013-03-29,Risk of Violence,6,Medium,2013-03-29,2013-07-19,2013-07-19,0,0,112,0,1\r\n5114,gary jones,gary,jones,2014-09-08,Male,1965-12-02,50,Greater than 45,Caucasian,0,7,0,0,26,-92,2014-06-08 08:36:51,2014-06-09 10:11:56,14011501CF10A,2014-08-23,,16,F,Possession of Cocaine,1,15001806MM10A,(M1),0,2015-02-12,Trespass After Warning,2015-02-12,2015-09-28,,0,,,,,Risk of Recidivism,7,Medium,2014-09-08,Risk of Violence,2,Low,2014-09-08,2015-02-12,2015-09-28,26,0,157,1,1\r\n5116,james gadsen,james,gadsen,2013-04-17,Male,1987-08-12,28,25 - 45,African-American,0,7,1,0,10,-1,2013-04-16 11:48:03,2013-12-16 04:04:48,11000991CF10A,,2013-04-17,0,F,arrest case no charge,1,14002441MM20A,(M2),,2014-09-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-17,Risk of Violence,6,Medium,2013-04-17,2013-04-16,2013-12-16,10,243,503,1,1\r\n5117,fernando hudson,fernando,hudson,2013-12-03,Male,1995-09-11,20,Less than 25,African-American,0,9,1,0,2,-16,2013-11-17 08:15:10,2013-11-18 07:29:44,13015979CF10A,2013-11-17,,16,F,Possession of Cocaine,1,14003233MM10A,(M1),,2013-12-18,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,9,High,2013-12-03,Risk of Violence,7,Medium,2013-12-03,2015-06-17,2015-07-23,2,0,15,1,1\r\n5118,alfred tucker,alfred,tucker,2013-09-20,Male,1982-09-26,33,25 - 45,Native American,1,7,0,0,9,72,2013-12-01 02:12:39,2014-01-24 08:43:45,13008048CF10A,2013-06-06,,106,M,Aggravated Battery,1,13016642CF10A,(M1),0,2013-12-01,Resist/Obstruct W/O Violence,2013-12-01,2014-01-24,,1,13016642CF10A,(F3),2013-12-01,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-09-20,Risk of Violence,9,High,2013-09-20,2013-12-01,2014-01-24,9,0,72,1,1\r\n5119,gavin williams,gavin,williams,2013-05-24,Male,1984-10-30,31,25 - 45,African-American,5,9,0,0,10,-1,2013-05-23 11:03:27,2013-05-28 02:57:54,13005996CF10A,,2013-05-23,1,F,arrest case no charge,1,15002537CF10A,(F3),,2013-09-17,Burglary Conveyance Unoccup,,,,0,,,,,Risk of Recidivism,9,High,2013-05-24,Risk of Violence,6,Medium,2013-05-24,2013-05-23,2013-05-28,10,4,116,1,1\r\n5120,donnalie higgs,donnalie,higgs,2013-01-10,Female,1959-03-04,57,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-09 11:18:00,2013-03-28 04:57:43,13000533MM10A,2013-01-09,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-10,Risk of Violence,1,Low,2013-01-10,2013-01-09,2013-03-28,0,77,1177,0,0\r\n5121,adrian grey,adrian,grey,2013-09-17,Male,1990-05-04,25,25 - 45,African-American,0,2,0,0,0,-1,2013-09-16 02:13:27,2013-09-23 08:24:38,13017637MM10A,2013-09-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-17,Risk of Violence,4,Low,2013-09-17,2013-09-16,2013-09-23,0,6,927,0,0\r\n5122,taji craig,taji,craig,2013-07-26,Male,1993-11-18,22,Less than 25,African-American,0,8,4,0,7,-11,2013-07-15 09:42:15,2013-07-26 10:34:55,13007593CF10A,,2013-07-19,7,F,arrest case no charge,1,14002765CF10A,(F3),42,2014-02-06,Grand Theft in the 3rd Degree,2014-03-20,2014-08-28,,0,,,,,Risk of Recidivism,8,High,2013-07-26,Risk of Violence,9,High,2013-07-26,2014-09-11,2014-09-18,7,0,195,1,1\r\n5123,wisler isme,wisler,isme,2013-09-20,Male,1985-02-21,31,25 - 45,African-American,0,3,0,0,3,-1,2013-09-19 06:33:00,2013-10-05 01:36:21,13013231CF10A,2013-09-19,,1,F,Burglary Dwelling Assault/Batt,1,14007318MM10A,(M1),0,2014-05-02,Viol Injunct Domestic Violence,2014-05-02,2014-05-03,,1,14009103CF10A,(F2),2014-06-23,Neglect Child / Bodily Harm,Risk of Recidivism,3,Low,2013-09-20,Risk of Violence,2,Low,2013-09-20,2014-05-02,2014-05-03,3,15,224,1,1\r\n5126,michael fashaw,michael,fashaw,2014-02-03,Male,1972-06-18,43,25 - 45,African-American,0,4,0,0,7,0,2014-02-03 05:06:08,2014-02-04 02:56:14,13015886CF10A,,2014-02-03,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-03,Risk of Violence,3,Low,2014-02-03,2014-02-03,2014-02-04,7,1,788,0,0\r\n5127,marissa guedes,marissa,guedes,2013-11-18,Female,1990-07-19,25,25 - 45,Caucasian,0,4,0,0,0,-1,2013-11-17 11:43:24,2013-11-18 08:05:43,13021622MM10A,2013-11-17,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-18,Risk of Violence,3,Low,2013-11-18,2015-11-11,2015-11-16,0,0,723,0,0\r\n5128,jose gomez,jose,gomez,2013-01-14,Male,1977-02-02,39,25 - 45,Hispanic,0,2,0,0,1,-1,2013-01-13 11:17:44,2013-01-14 06:32:32,13000794MM10A,2013-01-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,2,Low,2013-01-14,2013-01-13,2013-01-14,1,0,1173,0,0\r\n5130,dorjan williams,dorjan,williams,2013-09-11,Male,1975-12-12,40,25 - 45,African-American,0,1,0,0,1,-1,2013-09-10 09:23:16,2013-09-12 05:32:53,13012795CF10A,2013-09-10,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-11,Risk of Violence,1,Low,2013-09-11,2013-09-10,2013-09-12,1,1,933,0,0\r\n5131,keani baron,keani,baron,2014-05-21,Male,1995-08-16,20,Less than 25,African-American,0,5,0,0,0,-1,2014-05-20 08:05:47,2014-05-22 11:02:20,14007041CF10A,2014-05-20,,1,F,Burglary Structure Unoccup,1,16000735MM40A,(M1),,2016-01-26,Resist/Obstruct W/O Violence,,,,0,,,,,Risk of Recidivism,5,Medium,2014-05-21,Risk of Violence,7,Medium,2014-05-21,2014-05-20,2014-05-22,0,1,615,1,1\r\n5132,freddie lockhart,freddie,lockhart,2013-01-16,Male,1980-06-18,35,25 - 45,African-American,0,7,0,0,2,-1,2013-01-15 12:23:05,2013-01-16 06:52:56,13001004MM10A,2013-01-15,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-16,Risk of Violence,4,Low,2013-01-16,2013-01-15,2013-01-16,2,0,1171,0,0\r\n5133,edwin mtei,edwin,mtei,2013-03-12,Male,1981-06-26,34,25 - 45,African-American,0,1,0,0,1,-1,2013-03-11 11:13:19,2013-03-13 01:46:37,13004884MM10A,,2013-03-11,1,M,arrest case no charge,1,13005438MM10A,(M2),0,2013-03-19,Prowling/Loitering,2013-03-19,2013-03-23,,0,,,,,Risk of Recidivism,1,Low,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-03-19,2013-03-23,1,1,7,1,1\r\n5134,michael gallo,michael,gallo,2014-10-28,Male,1988-05-22,27,25 - 45,Caucasian,0,9,0,1,18,-1,2014-10-27 03:32:31,2015-04-24 02:40:34,14014463CF10A,2014-10-27,,1,F,Felony Petit Theft,1,15001180MM10A,(M1),,2015-01-28,Indecent Exposure,,,,0,,,,,Risk of Recidivism,9,High,2014-10-28,Risk of Violence,10,High,2014-10-28,2014-10-27,2015-04-24,18,0,92,1,1\r\n5136,carlos pantaleon,carlos,pantaleon,2013-10-28,Male,1978-06-12,37,25 - 45,Hispanic,0,5,0,0,1,-159,2013-05-22 11:26:09,2013-10-24 12:29:02,13001958CF10A,,2013-05-22,159,F,arrest case no charge,1,14001168MM20A,(M2),191,2014-04-07,Petit Theft,2014-10-15,2014-10-31,,0,,,,,Risk of Recidivism,5,Medium,2013-10-28,Risk of Violence,3,Low,2013-10-28,2015-01-28,2015-07-07,1,0,161,1,1\r\n5137,cindy guerrier,cindy,guerrier,2014-06-11,Female,1978-04-15,38,25 - 45,African-American,0,1,0,0,3,0,2014-06-11 02:03:57,2014-06-11 09:07:21,14008104CF10A,2014-06-11,,0,F,Driving While License Revoked,1,14072201TC30A,(M2),0,2014-08-25,Driving License Suspended,2014-08-25,2014-08-26,,0,,,,,Risk of Recidivism,1,Low,2014-06-11,Risk of Violence,1,Low,2014-06-11,2014-08-25,2014-08-26,3,0,75,1,1\r\n5138,jonathan graulich,jonathan,graulich,2014-01-17,Male,1994-08-09,21,Less than 25,Caucasian,0,7,0,0,0,-1,2014-01-16 08:24:21,2014-01-17 02:18:46,14000698CF10A,2014-01-16,,1,F,Possession of Cannabis,1,15000359CF10A,(F3),1,2015-01-07,Pos Cannabis W/Intent Sel/Del,2015-01-08,2015-01-09,,0,,,,,Risk of Recidivism,7,Medium,2014-01-17,Risk of Violence,7,Medium,2014-01-17,2015-01-13,2015-02-11,0,0,355,1,1\r\n5140,thomas powell,thomas,powell,2014-02-08,Male,1990-10-16,25,25 - 45,African-American,0,1,0,0,0,-1,2014-02-07 02:05:54,2014-02-08 09:05:39,14002167MM10A,2014-02-07,,1,M,Battery,1,14002599MM40A,(M1),,2014-06-02,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-08,Risk of Violence,2,Low,2014-02-08,2014-02-07,2014-02-08,0,0,114,1,1\r\n5141,waldo ford,waldo,ford,2013-03-10,Male,1962-10-01,53,Greater than 45,African-American,0,6,0,0,6,-1,2013-03-09 03:30:51,2013-03-17 04:46:00,13004742MM10A,2013-03-09,,1,M,Petit Theft,1,13006046MM10A,(M1),1,2013-03-28,Resist/Obstruct W/O Violence,2013-03-29,2013-07-18,,0,,,,,Risk of Recidivism,6,Medium,2013-03-10,Risk of Violence,3,Low,2013-03-10,2013-03-09,2013-03-17,6,7,18,1,1\r\n5142,stephanie hardy,stephanie,hardy,2013-12-06,Female,1965-07-26,50,Greater than 45,African-American,0,3,0,0,4,-1,2013-12-05 02:24:02,2013-12-18 10:47:36,13016826CF10A,2013-12-04,,2,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-06,Risk of Violence,1,Low,2013-12-06,2015-01-20,2015-05-04,4,12,410,0,0\r\n5143,arielle welcher,arielle,welcher,2014-03-26,Female,1993-02-05,23,Less than 25,Caucasian,0,6,0,0,1,0,2014-03-26 01:42:17,2014-03-27 03:07:45,14005239MM10A,2014-03-26,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-26,Risk of Violence,4,Low,2014-03-26,2014-03-26,2014-03-27,1,1,737,0,0\r\n5145,delton thompkins,delton,thompkins,2013-01-25,Male,1988-05-27,27,25 - 45,African-American,1,4,0,0,2,165,2013-07-09 07:35:09,2013-08-02 10:31:23,12016651CF10A,2012-11-13,,73,F,Deliver Cocaine,1,13013025MM10A,(M2),0,2013-07-09,Prowling/Loitering,2013-07-09,2013-08-02,,0,,,,,Risk of Recidivism,4,Low,2013-01-25,Risk of Violence,5,Medium,2013-01-25,2013-07-09,2013-08-02,2,0,165,1,1\r\n5147,loutess louissaint,loutess,louissaint,2014-06-21,Male,1993-11-06,22,Less than 25,Other,0,5,0,0,0,-1,2014-06-20 04:14:19,2014-06-27 01:43:34,14008527CF10A,2014-06-20,,1,F,Grand Theft in the 3rd Degree,1,15004497CF10A,(F3),50,2015-02-15,Grand Theft in the 3rd Degree,2015-04-06,2015-05-20,,0,,,,,Risk of Recidivism,5,Medium,2014-06-21,Risk of Violence,6,Medium,2014-06-21,2014-06-20,2014-06-27,0,6,239,1,1\r\n5148,dustin bouchard,dustin,bouchard,2014-01-06,Male,1988-07-06,27,25 - 45,Caucasian,0,3,0,0,0,0,2014-01-06 03:52:39,2014-01-06 08:24:55,14000442MU10A,2014-01-06,,0,M,Susp Drivers Lic 1st Offense,1,15029307TC10A,(M2),0,2015-10-20,Susp Drivers Lic 1st Offense,2015-10-20,2015-10-21,,0,,,,,Risk of Recidivism,3,Low,2014-01-06,Risk of Violence,3,Low,2014-01-06,2015-10-20,2015-10-21,0,0,652,1,1\r\n5149,romell fernand,romell,fernand,2013-10-04,Male,1986-05-27,29,25 - 45,African-American,0,8,0,0,5,0,2013-10-04 03:40:07,2013-10-04 09:24:12,13013965CF10A,2013-10-03,,1,F,Possession of Cannabis,1,15006033MM10A,(M2),0,2015-06-02,Petit Theft,2015-06-02,2015-06-03,,0,,,,,Risk of Recidivism,8,High,2013-10-04,Risk of Violence,7,Medium,2013-10-04,2015-06-02,2015-06-03,5,0,606,1,1\r\n5150,christopher hamilton,christopher,hamilton,2013-10-21,Male,1977-08-30,38,25 - 45,African-American,0,1,0,0,1,-1,2013-10-20 09:39:34,2013-10-24 09:18:44,13019861MM10A,2013-10-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-21,Risk of Violence,1,Low,2013-10-21,2013-10-20,2013-10-24,1,3,893,0,0\r\n5151,donna inman,donna,inman,2013-12-23,Female,1961-08-31,54,Greater than 45,Caucasian,0,2,0,0,2,-3,2013-12-20 01:27:45,2013-12-20 08:11:49,13017519CF10A,,2013-12-19,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-20,2013-12-20,2,0,830,0,0\r\n5152,edward ragin,edward,ragin,2013-08-11,Male,1990-02-18,26,25 - 45,African-American,0,10,0,0,1,0,2013-08-11 05:05:22,2013-10-07 09:16:33,13011253CF10A,,2013-08-11,0,F,arrest case no charge,1,14000357CF10A,(F3),,2013-10-11,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,10,High,2013-08-11,Risk of Violence,10,High,2013-08-11,2013-08-11,2013-10-07,1,57,61,1,1\r\n5153,henry randall,henry,randall,2013-11-26,Male,1978-09-27,37,25 - 45,African-American,1,8,8,5,23,-1,2013-11-25 06:28:32,2013-11-27 03:32:19,13016391CF10A,2013-11-25,,1,F,Deliver Cocaine,1,14001771CF10A,(F3),0,2014-02-08,Possession of Cocaine,2014-02-08,2014-02-08,,0,,,,,Risk of Recidivism,8,High,2013-11-26,Risk of Violence,6,Medium,2013-11-26,2014-02-08,2014-02-08,23,1,74,0,1\r\n5154,marco mcburrows,marco,mcburrows,2013-05-01,Male,1979-08-12,36,25 - 45,African-American,0,10,2,1,25,0,2013-05-01 04:36:25,2013-05-02 04:29:42,13008468MM10A,2013-05-01,,0,M,Battery,1,14009324CF10A,(F2),,2013-12-03,Deliver Cannabis 1000FTSch,,,,0,,,,,Risk of Recidivism,10,High,2013-05-01,Risk of Violence,3,Low,2013-05-01,2013-06-01,2013-06-01,25,1,31,0,1\r\n5155,brandon lewis,brandon,lewis,2013-03-10,Male,1987-07-29,28,25 - 45,African-American,0,10,0,0,18,-1,2013-03-09 08:14:54,2013-03-21 09:56:34,13003502CF10A,2013-03-09,,1,F,Deliver Cannabis,1,14000814MM30A,(M1),,2014-05-02,Possess Cannabis/20 Grams Or Less,,,,1,14013392MM10A,(M1),2014-07-29,Battery,Risk of Recidivism,10,High,2013-03-10,Risk of Violence,7,Medium,2013-03-10,2013-07-01,2013-07-19,18,11,113,0,1\r\n5158,silburn edwards,silburn,edwards,2013-03-23,Male,1966-11-18,49,Greater than 45,African-American,0,1,0,0,1,-1,2013-03-22 10:06:06,2013-03-24 09:17:51,12018751MM10A,,2013-03-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-23,Risk of Violence,1,Low,2013-03-23,2013-03-22,2013-03-24,1,1,1105,0,0\r\n5160,william smith,william,smith,2013-01-15,Male,1979-06-26,36,25 - 45,African-American,0,7,0,0,11,-1,2013-01-14 06:43:21,2013-01-15 03:48:05,13000633CF10A,2013-01-14,,1,F,Driving While License Revoked,1,15008412MM10A,(M1),0,2015-08-09,Credit Card Theft,2015-08-09,2015-08-10,,0,,,,,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,3,Low,2013-01-15,2015-08-09,2015-08-10,11,0,936,1,0\r\n5161,tequina montague,tequina,montague,2014-03-07,Female,1989-10-12,26,25 - 45,African-American,0,9,0,0,2,,,,10002862CF10A,,2012-06-11,634,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-07,Risk of Violence,8,High,2014-03-07,,,2,0,756,0,0\r\n5162,doreena nicholas,doreena,nicholas,2013-05-10,Female,1974-08-14,41,25 - 45,Caucasian,0,3,0,0,0,-1,2013-05-09 05:59:32,2013-05-10 10:01:12,13006649CF10A,2013-05-09,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-10,Risk of Violence,1,Low,2013-05-10,2013-05-09,2013-05-10,0,0,1057,0,0\r\n5163,angel morales,angel,morales,2014-01-06,Male,1990-03-25,26,25 - 45,Hispanic,0,7,0,1,9,0,2014-01-06 04:58:26,2014-01-07 02:25:36,14000246CF10A,2014-01-06,,0,F,Battery on Law Enforc Officer,1,15013095MM10A,(M2),,2015-12-19,Disorderly Intoxication,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-06,Risk of Violence,5,Medium,2014-01-06,2014-09-28,2014-10-10,9,1,265,0,1\r\n5166,richard dpugh,richard,dpugh,2013-11-06,Male,1975-10-04,40,25 - 45,Caucasian,1,9,0,0,9,-1,2013-11-05 03:16:54,2013-11-06 02:05:35,10000805CF10A,,2013-11-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-06,Risk of Violence,6,Medium,2013-11-06,2013-11-05,2013-11-06,9,0,877,0,0\r\n5167,robert sullivan,robert,sullivan,2013-12-06,Male,1987-02-23,29,25 - 45,Caucasian,0,8,0,1,8,-54,2013-10-13 02:27:45,2013-10-13 01:55:47,13019398MM10A,2013-10-13,,54,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-06,Risk of Violence,4,Low,2013-12-06,2013-10-13,2013-10-13,8,0,847,0,0\r\n5168,keevin walcott,keevin,walcott,2013-05-01,Male,1994-04-27,21,Less than 25,African-American,1,10,0,0,7,-1,2013-04-30 06:37:17,2013-05-11 02:40:17,13006182CF10A,2013-04-30,,1,F,Fleeing Or Attmp Eluding A Leo,1,14016431CF10A,(F3),28,2014-11-13,Grand Theft in the 3rd Degree,2014-12-11,2015-09-08,,0,,,,,Risk of Recidivism,10,High,2013-05-01,Risk of Violence,10,High,2013-05-01,2014-03-28,2014-05-08,7,10,331,0,1\r\n5170,junior belice,junior,belice,2013-08-16,Male,1993-07-16,22,Less than 25,Other,0,2,0,0,0,-1,2013-08-15 03:47:55,2013-08-16 10:26:18,13011481CF10A,2013-08-15,,1,F,False Imprisonment,1,14023192TC20A,(M2),163,2014-02-24,Leave Acc/Attend Veh/More $50,2014-08-06,2014-08-07,,0,,,,,Risk of Recidivism,2,Low,2013-08-16,Risk of Violence,4,Low,2013-08-16,2014-08-06,2014-08-07,0,0,192,1,1\r\n5171,giovani castano,giovani,castano,2013-04-11,Male,1982-05-15,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-10 11:35:35,2013-04-11 07:36:36,13005191CF10A,2013-04-10,,1,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-11,Risk of Violence,1,Low,2013-04-11,2013-12-09,2014-01-10,0,0,242,0,0\r\n5172,damian nance,damian,nance,2013-11-26,Male,1989-11-21,26,25 - 45,African-American,0,7,0,0,7,-19,2013-11-07 09:49:10,2013-11-26 12:03:33,13015540CF10A,2013-11-07,,19,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-26,Risk of Violence,6,Medium,2013-11-26,2014-07-31,2014-08-01,7,0,247,0,0\r\n5173,timara wimber,timara,wimber,2014-04-20,Female,1989-01-08,27,25 - 45,African-American,0,3,0,0,0,-1,2014-04-19 06:00:22,2014-04-23 05:27:00,14006567MM10A,2014-04-19,,1,M,Battery,1,16003534TC20A,(M1),,2016-01-08,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,3,Low,2014-04-20,Risk of Violence,3,Low,2014-04-20,2014-04-19,2014-04-23,0,3,628,1,1\r\n5174,kamal warren,kamal,warren,2013-08-02,Male,1980-05-03,35,25 - 45,African-American,0,2,0,0,1,-1,2013-08-01 10:22:57,2013-08-02 08:24:40,13010758CF10A,2013-08-01,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,2013-08-01,2013-08-02,1,0,973,0,0\r\n5176,stephon roberson,stephon,roberson,2014-03-02,Male,1988-12-01,27,25 - 45,African-American,0,2,0,0,3,-1,2014-03-01 05:05:24,2014-03-02 08:32:37,13013426TC20A,2013-03-02,,365,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-02,Risk of Violence,4,Low,2014-03-02,2014-03-01,2014-03-02,3,0,761,0,0\r\n5177,felix pache,felix,pache,2013-04-01,Male,1978-08-07,37,25 - 45,Hispanic,0,1,0,0,3,-1,2013-03-31 03:14:01,2013-04-02 10:35:19,13006182MM10A,2013-03-31,,1,M,Battery,1,14067545TC40A,(M2),,2014-09-23,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-03-31,2013-04-02,3,1,540,1,1\r\n5178,britanya lewis,britanya,lewis,2013-12-02,Female,1984-07-06,31,25 - 45,African-American,0,5,0,0,3,-1,2013-12-01 08:31:46,2014-02-01 04:56:59,11008341CF10A,,2013-12-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-02,Risk of Violence,3,Low,2013-12-02,2014-02-14,2014-02-15,3,61,74,0,0\r\n5179,juan beltran,juan,beltran,2013-01-11,Male,1979-05-03,36,25 - 45,African-American,1,8,0,0,26,-1,2013-01-10 11:27:45,2013-01-11 09:24:51,13000467CF10A,2013-01-10,,1,F,Poss Cocaine/Intent To Del/Sel,1,13007804CF10A,(M1),1,2013-06-01,Resist/Obstruct W/O Violence,2013-06-02,2013-07-27,,0,,,,,Risk of Recidivism,8,High,2013-01-11,Risk of Violence,4,Low,2013-01-11,2014-08-21,2014-08-24,26,0,141,1,1\r\n5180,mourica evans,mourica,evans,2013-11-02,Female,1983-11-11,32,25 - 45,Other,0,2,0,0,0,-1,2013-11-01 10:58:38,2013-11-03 12:25:21,13020651MM10A,2013-11-01,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-02,Risk of Violence,2,Low,2013-11-02,2013-11-01,2013-11-03,0,1,881,0,0\r\n5181,jose jimenez,jose,jimenez,2013-04-01,Male,1965-06-29,50,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-03-31 08:19:14,2013-04-01 05:49:39,13004616CF10A,2013-03-31,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-03-31,2013-04-01,1,0,1096,0,0\r\n5182,anthony walters,anthony,walters,2013-03-01,Male,1963-11-30,52,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-02-28 09:15:47,2013-03-01 01:42:15,13002888CF10A,,2013-02-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-02-28,2013-03-01,1,0,1127,0,0\r\n5183,jonathan russell,jonathan,russell,2013-02-05,Male,1991-07-01,24,Less than 25,African-American,0,4,0,0,1,-1,2013-02-04 03:27:19,2013-02-06 10:01:51,13002559MM10A,2013-02-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-05,Risk of Violence,4,Low,2013-02-05,2013-02-04,2013-02-06,1,1,1151,0,0\r\n5184,daryll orr,daryll,orr,2013-03-23,Male,1977-12-24,38,25 - 45,African-American,0,4,0,0,0,0,2013-03-23 03:28:13,2013-03-24 06:34:49,13004205CF10A,2013-03-22,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-23,Risk of Violence,3,Low,2013-03-23,2015-03-18,2015-03-24,0,1,725,0,0\r\n5186,azell moreland,azell,moreland,2013-03-28,Male,1961-07-12,54,Greater than 45,African-American,0,8,0,0,11,-1,2013-03-27 05:20:57,2013-03-28 07:45:04,11018142CF10A,,2013-03-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-28,Risk of Violence,3,Low,2013-03-28,2013-03-27,2013-03-28,11,0,1100,0,0\r\n5187,james hines,james,hines,2013-08-18,Male,1944-05-11,71,Greater than 45,Caucasian,0,2,0,0,13,-1,2013-08-17 11:16:45,2013-08-18 02:28:59,13011540CF10A,2013-08-17,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-18,Risk of Violence,1,Low,2013-08-18,2013-08-17,2013-08-18,13,0,957,0,0\r\n5188,tyrone johnson,tyrone,johnson,2014-10-15,Male,1989-03-15,27,25 - 45,African-American,0,7,4,4,9,-1,2014-10-14 04:18:35,2014-10-15 03:50:49,14013855CF10A,2014-10-14,,1,F,Poss Pyrrolidinovalerophenone W/I/D/S,1,14016534CF10A,(F3),0,2014-12-13,Poss Pyrrolidinovalerophenone,2014-12-13,2014-12-20,,0,,,,,Risk of Recidivism,7,Medium,2014-10-15,Risk of Violence,3,Low,2014-10-15,2014-12-13,2014-12-20,9,0,59,1,1\r\n5189,tara ketola,tara,ketola,2013-09-09,Female,1977-03-14,39,25 - 45,Caucasian,0,4,0,0,1,-1,2013-09-08 04:59:45,2013-10-17 09:28:05,13012681CF10A,2013-09-07,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2013-09-08,2013-10-17,1,38,935,0,0\r\n5190,hasani boothe,hasani,boothe,2013-03-02,Male,1981-12-22,34,25 - 45,Other,0,2,0,0,1,0,2013-03-02 12:55:11,2013-03-02 07:32:20,13009188TC10A,2013-03-01,,1,M,Driving License Suspended,1,13036235TC10A,(M2),0,2013-08-23,Driving License Suspended,2013-08-23,2013-08-24,,0,,,,,Risk of Recidivism,2,Low,2013-03-02,Risk of Violence,2,Low,2013-03-02,2013-08-23,2013-08-24,1,0,174,1,1\r\n5191,makenlie jean,makenlie,jean,2014-02-25,Male,1993-01-27,23,Less than 25,Other,0,8,0,0,0,-1,2014-02-24 12:37:02,2014-03-01 05:04:27,14003205MM10A,2014-02-24,,1,M,Battery,1,14000963MM20A,(M1),49,2014-03-20,Possess Cannabis/20 Grams Or Less,2014-05-08,2014-05-15,,0,,,,,Risk of Recidivism,8,High,2014-02-25,Risk of Violence,5,Medium,2014-02-25,2014-02-24,2014-03-01,0,4,23,1,1\r\n5192,elliot little,elliot,little,2013-10-08,Male,1970-02-12,46,Greater than 45,African-American,1,4,0,0,8,261,2014-06-26 11:35:53,2014-06-27 08:34:38,13019113MM10A,2013-10-08,,0,M,Battery,1,14008799CF10A,(F1),1,2014-06-25,Poss/Sel/Del Cocaine 1000FT Chur,2014-06-26,2014-06-27,,0,,,,,Risk of Recidivism,4,Low,2013-10-08,Risk of Violence,5,Medium,2013-10-08,2014-06-26,2014-06-27,8,0,260,1,1\r\n5193,dorean nairn,dorean,nairn,2013-01-01,Female,1979-11-15,36,25 - 45,African-American,0,6,0,0,5,0,2013-01-01 05:49:29,2013-01-02 01:39:04,13000031CF10A,2013-01-01,,0,F,Battery on Law Enforc Officer,1,13005201MM10A,(M1),0,2013-03-16,Battery,2013-03-16,2013-03-16,,1,13005201MM10A,(M1),2013-03-16,Battery,Risk of Recidivism,6,Medium,2013-01-01,Risk of Violence,4,Low,2013-01-01,2013-03-16,2013-03-16,5,1,74,0,1\r\n5194,gregory dennis,gregory,dennis,2013-12-16,Male,1960-08-06,55,Greater than 45,African-American,0,1,0,0,0,-1,2013-12-15 07:09:08,2013-12-16 01:30:18,13017327CF10A,2013-12-15,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,0,0,837,0,0\r\n5196,orranda uragavidal,orranda,uragavidal,2013-03-15,Male,1982-09-03,33,25 - 45,Hispanic,0,4,0,0,1,,,,11012836CF10A,,2012-02-09,400,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-15,Risk of Violence,3,Low,2013-03-15,,,1,0,1113,0,0\r\n5197,fredrick hill,fredrick,hill,2013-05-13,Male,1970-06-18,45,Greater than 45,African-American,0,3,0,0,0,,,,,,,,M,,1,14003266MO10A,(MO3),0,2014-02-25,Trespass,2014-02-25,2014-02-26,,1,15013090CF10A,(F1),2015-10-09,Robbery / Weapon,Risk of Recidivism,3,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2014-02-25,2014-02-26,0,0,288,1,1\r\n5198,kyle thompson,kyle,thompson,2013-10-30,Male,1989-02-10,27,25 - 45,Caucasian,0,4,0,0,0,0,2013-10-30 05:18:21,2013-11-08 04:56:54,13015142CF10A,2013-10-30,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-30,Risk of Violence,3,Low,2013-10-30,2013-10-30,2013-11-08,0,9,884,0,0\r\n5201,windley noralus,windley,noralus,2013-08-30,Male,1992-06-16,23,Less than 25,African-American,0,4,0,3,2,0,2013-08-30 02:22:56,2013-08-30 07:59:57,13012301CF10A,2013-08-30,,0,F,Carrying Concealed Firearm,1,14090929TC30A,(M2),,2014-10-05,Reckless Driving,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-30,Risk of Violence,4,Low,2013-08-30,2013-08-30,2013-08-30,2,0,401,1,1\r\n5203,lerome smith,lerome,smith,2013-12-17,Male,1996-02-13,20,Less than 25,African-American,1,7,0,0,1,-1,2013-12-16 12:57:43,2013-12-17 09:57:58,13016368CF10A,,2013-12-16,1,F,arrest case no charge,1,14014573CF10A,(F3),,2014-10-28,Cash Item w/Intent to Defraud,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-17,Risk of Violence,7,Medium,2013-12-17,2014-01-21,2014-06-14,1,0,35,0,1\r\n5204,latoria adams,latoria,adams,2014-02-10,Female,1984-12-16,31,25 - 45,African-American,0,8,2,0,10,-3,2014-02-07 03:57:04,2014-02-08 09:36:26,14001761CF10A,2014-02-07,,3,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-10,Risk of Violence,4,Low,2014-02-10,2015-06-18,2015-06-24,10,0,493,0,0\r\n5205,roy roberts,roy,roberts,2013-04-07,Male,1991-08-15,24,Less than 25,Caucasian,0,9,0,0,8,0,2013-04-07 03:41:57,2013-05-14 05:41:37,10013335CF10B,,2013-04-07,0,F,arrest case no charge,1,15063411TC40A,(M2),,2015-10-26,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2013-04-07,Risk of Violence,9,High,2013-04-07,2013-04-07,2013-05-14,8,37,932,1,0\r\n5207,tracy bondanza,tracy,bondanza,2014-12-13,Female,1979-01-29,37,25 - 45,Caucasian,0,8,0,0,2,-1,2014-12-12 05:58:16,2014-12-13 08:22:34,14016515CF10A,2014-12-12,,1,F,Tampering With Physical Evidence,1,15019908TC30A,(M2),,2015-03-06,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,8,High,2014-12-13,Risk of Violence,2,Low,2014-12-13,2014-12-12,2014-12-13,2,0,83,1,1\r\n5208,george birkley,george,birkley,2013-08-29,Male,1990-11-23,25,25 - 45,African-American,0,6,0,0,0,-41,2013-07-19 04:09:36,2013-08-22 03:25:19,13039660TC10A,2013-08-27,,2,M,Operating W/O Valid License,1,14032270TC20A,(M2),,2014-04-26,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-29,Risk of Violence,7,Medium,2013-08-29,2013-07-19,2013-08-22,0,0,240,1,1\r\n5209,gary kuchta,gary,kuchta,2013-04-05,Male,1989-04-23,26,25 - 45,Caucasian,0,3,0,0,0,-1,2013-04-04 10:35:20,2013-04-05 01:26:38,13004840CF10A,2013-04-04,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-05,Risk of Violence,3,Low,2013-04-05,2013-04-04,2013-04-05,0,0,1092,0,0\r\n5211,frank aguiar,frank,aguiar,2013-05-07,Male,1987-02-17,29,25 - 45,Hispanic,0,3,0,0,0,,,,13006397CF10A,2013-05-04,,3,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-07,Risk of Violence,2,Low,2013-05-07,,,0,0,1060,0,0\r\n5213,christopher batista,christopher,batista,2013-04-10,Male,1982-12-06,33,25 - 45,Hispanic,0,2,0,0,3,-51,2013-02-18 10:14:21,2013-02-19 09:12:09,10035723TC10A,2010-07-20,,995,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,2,Low,2013-04-10,2013-02-18,2013-02-19,3,0,1087,0,0\r\n5215,andrew renshaw,andrew,renshaw,2013-04-15,Male,1986-12-18,29,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-14 09:00:15,2013-04-15 08:50:37,13005379CF10A,2013-04-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-15,Risk of Violence,3,Low,2013-04-15,2013-04-14,2013-04-15,0,0,1082,0,0\r\n5216,arrow jones,arrow,jones,2013-12-15,Male,1974-08-30,41,25 - 45,African-American,0,1,0,0,4,0,2013-12-15 12:55:21,2013-12-15 01:51:37,13023189MM10A,2013-12-15,,0,M,Battery,1,15026796TC30A,(M2),,2015-03-31,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-15,Risk of Violence,1,Low,2013-12-15,2013-12-15,2013-12-15,4,0,471,1,1\r\n5217,maurice jones,maurice,jones,2014-01-04,Male,1978-12-04,37,25 - 45,African-American,0,1,0,0,0,-1,2014-01-03 09:10:13,2014-01-04 01:42:06,14000133CF10A,2014-01-03,,1,F,Felony Battery (Dom Strang),1,15005809MM10A,(M1),0,2015-05-27,Battery,2015-05-27,2015-05-28,,1,15005809MM10A,(M1),2015-05-27,Battery,Risk of Recidivism,1,Low,2014-01-04,Risk of Violence,1,Low,2014-01-04,2015-05-27,2015-05-28,0,0,508,1,1\r\n5218,troy brunetto,troy,brunetto,2013-02-05,Male,1969-06-30,46,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-02-04 07:51:30,2013-02-05 01:17:07,13001745CF10A,2013-02-04,,1,F,Solicit To Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-05,Risk of Violence,1,Low,2013-02-05,2014-02-19,2014-03-02,2,0,379,0,0\r\n5219,lori porzio,lori,porzio,2013-01-31,Female,1959-11-15,56,Greater than 45,Caucasian,0,5,0,0,10,-1,2013-01-30 08:19:13,2013-03-12 09:04:50,13001487CF10A,2013-01-30,,1,F,Possession of Cocaine,1,13005404CF10A,(M2),0,2013-04-15,Prowling/Loitering,2013-04-15,2013-04-18,,0,,,,,Risk of Recidivism,5,Medium,2013-01-31,Risk of Violence,4,Low,2013-01-31,2013-04-15,2013-04-18,10,40,74,1,1\r\n5222,shane russell,shane,russell,2013-05-16,Male,1993-02-19,23,Less than 25,African-American,0,3,0,0,0,-1,2013-05-15 04:59:47,2013-05-16 02:18:13,13006956CF10A,2013-05-15,,1,F,Grand Theft in the 3rd Degree,1,14031972TC10A,(M2),0,2014-09-04,Susp Drivers Lic 1st Offense,2014-09-04,2014-09-05,,0,,,,,Risk of Recidivism,3,Low,2013-05-16,Risk of Violence,5,Medium,2013-05-16,2014-02-25,2014-03-03,0,0,285,0,1\r\n5223,dieucica jeudy,dieucica,jeudy,2014-10-20,Female,1993-03-06,23,Less than 25,African-American,0,5,0,0,1,-2,2014-10-18 07:18:19,2014-10-20 01:22:03,14014067CF10A,2014-10-18,,2,F,Poss Pyrrolidinovalerophenone,1,15001673MM10A,(M1),0,2015-02-10,Resist/Obstruct W/O Violence,2015-02-10,2015-02-15,,0,,,,,Risk of Recidivism,5,Medium,2014-10-20,Risk of Violence,5,Medium,2014-10-20,2015-02-10,2015-02-15,1,0,113,1,1\r\n5224,wilkinson francois,wilkinson,francois,2013-02-02,Male,1991-03-31,25,25 - 45,African-American,0,8,0,0,0,0,2013-02-02 12:47:26,2013-02-02 07:48:05,13001665CF10A,2013-02-01,,1,F,Poss/Sell/Del Cocaine 1000FT Sch,1,13009705CF10A,(F1),,2013-06-26,Poss of Cocaine W/I/D/S 1000FT Park,,,,0,,,,,Risk of Recidivism,8,High,2013-02-02,Risk of Violence,6,Medium,2013-02-02,2014-09-25,2020-01-01,0,0,144,1,1\r\n5225,xavier taylor,xavier,taylor,2014-09-06,Male,1992-01-06,24,Less than 25,African-American,0,7,0,0,1,-1,2014-09-05 05:36:44,2014-09-06 09:48:48,14012113CF10A,2014-09-05,,1,F,Poss Cocaine/Intent To Del/Sel,1,15023328TC30A,(M2),,2015-03-21,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2014-09-06,Risk of Violence,6,Medium,2014-09-06,2015-11-05,2015-11-06,1,0,196,1,1\r\n5226,delvin williams,delvin,williams,2013-12-31,Male,1980-05-19,35,25 - 45,African-American,0,10,0,0,27,-103,2013-09-19 02:37:27,2013-09-20 07:48:53,13017992CF10A,2013-12-30,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-12-31,Risk of Violence,6,Medium,2013-12-31,2013-09-19,2013-09-20,27,0,822,0,0\r\n5227,darrell thomas,darrell,thomas,2013-01-15,Male,1968-02-10,48,Greater than 45,African-American,0,8,0,0,10,,,,12008776CF10A,2012-06-14,,215,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-15,Risk of Violence,6,Medium,2013-01-15,1992-06-10,1999-05-08,10,0,1172,0,0\r\n5231,joao jussim,joao,jussim,2013-04-02,Male,1989-10-11,26,25 - 45,Hispanic,0,2,0,0,1,-24,2013-03-09 06:53:52,2013-03-10 01:36:45,13004759MM10A,2013-03-09,,24,M,DUI Level 0.15 Or Minor In Veh,1,14045445TC20A,(M2),,2014-06-21,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-02,Risk of Violence,3,Low,2013-04-02,2013-03-09,2013-03-10,1,0,445,1,1\r\n5232,kevin peatman,kevin,peatman,2013-03-23,Male,1992-03-21,24,Less than 25,Caucasian,0,7,0,0,2,-1,2013-03-22 08:49:07,2013-04-01 08:57:07,13004187CF10A,2013-03-22,,1,F,Burglary Conveyance Unoccup,1,13014286CF10A,(F3),0,2013-10-12,Grand Theft in the 3rd Degree,2013-10-12,2014-02-07,,0,,,,,Risk of Recidivism,7,Medium,2013-03-23,Risk of Violence,5,Medium,2013-03-23,2013-10-12,2014-02-07,2,9,203,1,1\r\n5236,ewexta dove,ewexta,dove,2013-02-28,Male,1990-12-14,25,25 - 45,African-American,0,10,1,1,8,,,,09007328CF10A,,2013-02-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-28,Risk of Violence,8,High,2013-02-28,2009-09-08,2011-04-14,8,0,1128,0,0\r\n5243,deangelo perpall,deangelo,perpall,2013-02-13,Male,1993-04-02,23,Less than 25,African-American,0,9,0,0,0,-1,2013-02-12 04:51:57,2013-02-27 01:07:06,13002183CF10A,2013-02-12,,1,F,Burglary Unoccupied Dwelling,1,13004993MM10A,(M2),0,2013-03-13,Prowling/Loitering,2013-03-13,2013-03-14,,1,13016774MM10A,(M1),2013-09-02,Battery,Risk of Recidivism,9,High,2013-02-13,Risk of Violence,6,Medium,2013-02-13,2013-03-13,2013-03-14,0,14,28,1,1\r\n5244,teresa bennett,teresa,bennett,2013-03-13,Male,1972-05-01,43,25 - 45,Caucasian,0,1,0,0,2,-26,2013-02-15 04:05:37,2013-02-16 05:59:32,13002346CF10A,2013-02-15,,26,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-13,Risk of Violence,1,Low,2013-03-13,2013-02-15,2013-02-16,2,0,1115,0,0\r\n5246,stacey wiederin,stacey,wiederin,2013-09-13,Female,1963-04-02,53,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-09-11 08:14:19,2013-09-12 06:57:04,13017313MM10A,2013-09-11,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-13,Risk of Violence,1,Low,2013-09-13,2013-09-11,2013-09-12,0,0,931,0,0\r\n5247,eric ramsey,eric,ramsey,2013-12-03,Male,1992-03-10,24,Less than 25,African-American,0,6,0,0,1,-1,2013-12-02 06:22:00,2014-01-29 03:18:00,13016692CF10A,2013-12-02,,1,F,Pos Methylenedioxymethcath W/I/D/S,1,14004767MM40A,(M2),,2014-11-14,Petit Theft,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-03,Risk of Violence,5,Medium,2013-12-03,2013-12-02,2014-01-29,1,57,346,1,1\r\n5248,lagary roberson,lagary,roberson,2013-11-26,Male,1990-08-10,25,25 - 45,African-American,1,9,0,0,4,,,,13019968MM10A,2013-08-19,,99,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-26,Risk of Violence,7,Medium,2013-11-26,,,4,0,857,0,0\r\n5249,devin dorvil,devin,dorvil,2013-03-13,Male,1987-06-19,28,25 - 45,African-American,0,4,0,0,0,0,2013-03-13 02:29:55,2013-03-13 08:19:55,13003681CF10A,2013-03-12,,1,F,Offn Against Intellectual Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-13,Risk of Violence,5,Medium,2013-03-13,2013-03-13,2013-03-13,0,0,1115,0,0\r\n5251,ryan benitez,ryan,benitez,2013-04-18,Male,1994-09-13,21,Less than 25,Caucasian,0,3,0,0,1,-1,2013-04-17 03:21:05,2013-04-18 07:22:12,13005515CF10A,2013-04-17,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-18,Risk of Violence,5,Medium,2013-04-18,2013-04-17,2013-04-18,1,0,1079,0,0\r\n5252,andre foulks,andre,foulks,2013-12-10,Male,1984-10-17,31,25 - 45,Other,0,2,0,0,0,-1,2013-12-09 07:40:01,2013-12-18 09:34:07,13022792MM10A,2013-12-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-10,Risk of Violence,2,Low,2013-12-10,2013-12-09,2013-12-18,0,8,843,0,0\r\n5253,brian rocha,brian,rocha,2014-11-04,Male,1983-04-13,33,25 - 45,Caucasian,0,7,0,0,3,0,2014-11-04 02:32:16,2014-11-05 04:10:46,14014820CF10A,2014-11-03,,1,F,\"Poss Of 1,4-Butanediol\",1,15001342CF10A,(F3),0,2015-01-29,Possession Of Methamphetamine,2015-01-29,2015-04-10,,0,,,,,Risk of Recidivism,7,Medium,2014-11-04,Risk of Violence,4,Low,2014-11-04,2015-01-29,2015-04-10,3,1,86,1,1\r\n5255,soyeka williams,soyeka,williams,2014-03-11,Female,1980-11-01,35,25 - 45,African-American,0,1,0,0,1,-1,2014-03-10 07:27:18,2014-03-11 12:57:04,14002986CF10A,,2014-03-10,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-11,Risk of Violence,1,Low,2014-03-11,2014-03-10,2014-03-11,1,0,752,0,0\r\n5258,randy huffman,randy,huffman,2013-04-06,Male,1960-05-12,55,Greater than 45,Caucasian,0,3,0,0,3,0,2013-04-06 02:24:02,2013-04-07 06:31:22,13006629MM10A,2013-04-05,,1,M,Viol Injunction Protect Dom Vi,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-06,Risk of Violence,1,Low,2013-04-06,2013-04-06,2013-04-07,3,1,1091,0,0\r\n5259,ricardo quintanilla,ricardo,quintanilla,2013-11-18,Male,1965-05-13,50,Greater than 45,Hispanic,0,5,0,0,9,-1,2013-11-17 10:51:58,2013-12-16 08:46:39,13021625MM10A,2013-11-17,,1,M,Battery,1,15000945CF10A,(F3),0,2015-01-21,Possession of Cocaine,2015-01-21,2015-01-22,,0,,,,,Risk of Recidivism,5,Medium,2013-11-18,Risk of Violence,6,Medium,2013-11-18,2014-03-29,2014-04-08,9,28,131,0,1\r\n5260,bach ketant,bach,ketant,2013-07-10,Male,1988-01-04,28,25 - 45,African-American,0,3,0,0,0,-2,2013-07-08 04:09:27,2013-07-09 01:46:35,13012968MM10A,2013-07-08,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-10,Risk of Violence,3,Low,2013-07-10,2013-07-08,2013-07-09,0,0,996,0,0\r\n5261,alexander gorshechnikov,alexander,gorshechnikov,2014-01-25,Male,1971-10-04,44,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-24 05:19:29,2014-01-26 09:50:54,14001384MM10A,2014-01-24,,1,M,Battery,1,16000036MM10A,(M1),0,2016-01-01,Battery,2016-01-01,2016-01-02,,1,16000036MM10A,(M1),2016-01-01,Battery,Risk of Recidivism,1,Low,2014-01-25,Risk of Violence,1,Low,2014-01-25,2016-01-01,2016-01-02,0,1,706,1,1\r\n5262,grace margri,grace,margri,2013-10-01,Female,1967-07-08,48,Greater than 45,Caucasian,0,1,0,0,2,-66,2013-07-27 12:28:26,2013-08-29 08:31:34,13010505CF10A,2013-07-26,,67,F,Abuse Without Great Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2013-07-27,2013-08-29,2,0,913,0,0\r\n5263,dionte alexander,dionte,alexander,2014-04-21,Male,1996-06-09,19,Less than 25,African-American,2,10,1,1,3,22,2014-05-13 10:23:42,2014-05-14 06:00:41,14005970CF10A,2014-03-29,,23,F,Carrying Concealed Firearm,1,14014121CF10A,(F3),,2014-10-19,Grand Theft (Motor Vehicle),,,,0,,,,,Risk of Recidivism,10,High,2014-04-21,Risk of Violence,10,High,2014-04-21,2014-05-13,2014-05-14,3,0,22,0,1\r\n5264,kirk myrie,kirk,myrie,2013-01-15,Male,1992-06-01,23,Less than 25,Other,0,7,0,0,2,-1,2013-01-14 07:27:31,2013-02-28 08:04:57,13000877MM10A,2013-01-14,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,9,High,2013-01-15,2013-06-17,2013-06-18,2,44,153,0,0\r\n5265,brandon moxie,brandon,moxie,2013-12-29,Male,1991-12-20,24,Less than 25,African-American,0,8,0,1,3,0,2013-12-29 12:19:56,2013-12-29 02:11:16,13017896CF10A,2013-12-28,,1,F,Poss F/Arm Delinq,1,14014058CF10A,(F3),0,2014-10-18,Possession Of Methamphetamine,2014-10-18,2014-12-20,,0,,,,,Risk of Recidivism,8,High,2013-12-29,Risk of Violence,7,Medium,2013-12-29,2014-10-18,2014-12-20,3,0,293,1,1\r\n5266,george bennington,george,bennington,2013-02-09,Male,1966-02-06,50,Greater than 45,Caucasian,0,3,0,0,2,0,2013-02-09 02:34:06,2013-02-10 02:41:17,13002026CF10A,2013-02-08,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-09,Risk of Violence,6,Medium,2013-02-09,2015-06-02,2015-06-02,2,1,843,0,0\r\n5270,mohan nihal,mohan,nihal,2013-04-26,Male,1984-11-18,31,25 - 45,African-American,0,4,0,0,0,0,2013-04-26 12:08:59,2013-05-18 07:59:34,13008009MM10A,2013-04-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-26,Risk of Violence,3,Low,2013-04-26,2013-04-26,2013-05-18,0,22,1071,0,0\r\n5271,bas bruck,bas,bruck,2014-10-16,Female,1987-06-24,28,25 - 45,Caucasian,0,4,0,0,0,-1,2014-10-15 11:09:53,2014-10-16 02:16:03,14013910CF10A,2014-10-15,,1,F,Possession of Cocaine,1,15013273MM10A,(M1),,2015-12-25,Possess Drug Paraphernalia,,,,0,,,,,Risk of Recidivism,4,Low,2014-10-16,Risk of Violence,3,Low,2014-10-16,2015-04-06,2015-04-08,0,0,172,0,1\r\n5272,jaime bedoya,jaime,bedoya,2013-11-20,Male,1973-09-15,42,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-19 08:34:22,2013-11-20 09:27:32,13016071CF10A,2013-11-19,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-20,Risk of Violence,1,Low,2013-11-20,2013-11-19,2013-11-20,0,0,863,0,0\r\n5274,miguel campbell,miguel,campbell,2014-02-26,Male,1994-06-11,21,Less than 25,African-American,0,9,0,0,0,0,2014-02-26 01:14:13,2014-06-03 09:11:34,14002710CF10A,2014-02-25,,1,M,Aggravated Assault W/Dead Weap,1,15003740CF10A,(F3),101,2014-12-08,Grand Theft in the 3rd Degree,2015-03-19,2015-03-20,,0,,,,,Risk of Recidivism,9,High,2014-02-26,Risk of Violence,6,Medium,2014-02-26,2014-02-26,2014-06-03,0,97,285,1,1\r\n5275,xavier larkins,xavier,larkins,2014-03-18,Male,1986-11-09,29,25 - 45,African-American,0,10,0,0,5,,,,11001435CF10A,,2012-06-13,643,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-03-18,Risk of Violence,9,High,2014-03-18,2008-10-16,2010-02-23,5,0,745,0,0\r\n5276,michael bowers,michael,bowers,2013-01-19,Male,1968-03-30,48,Greater than 45,Caucasian,0,1,0,0,1,,,,11015127CF10A,2011-09-10,,497,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-19,Risk of Violence,1,Low,2013-01-19,,,1,0,1168,0,0\r\n5278,ryan kuse,ryan,kuse,2013-09-14,Male,1994-06-24,21,Less than 25,Caucasian,0,8,0,0,0,0,2013-09-14 01:55:11,2013-09-14 07:27:48,13012973CF10A,2013-09-13,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,13015973CF10A,(M2),0,2013-11-17,Reckless Driving,2013-11-17,2013-11-18,,0,,,,,Risk of Recidivism,8,High,2013-09-14,Risk of Violence,5,Medium,2013-09-14,2013-11-17,2013-11-18,0,0,64,1,1\r\n5279,jean felinor,jean,felinor,2013-02-28,Male,1992-02-26,24,Less than 25,Other,0,4,0,0,0,-1,2013-02-27 04:58:37,2013-02-28 07:58:48,13004086MM10A,2013-02-27,,1,M,Possess Drug Paraphernalia,1,13013113CF10A,(M1),0,2013-09-17,Possess Drug Paraphernalia,2013-09-17,2013-09-18,,0,,,,,Risk of Recidivism,4,Low,2013-02-28,Risk of Violence,4,Low,2013-02-28,2013-07-06,2013-07-07,0,0,128,0,1\r\n5280,michael castro,michael,castro,2013-02-15,Male,1985-03-29,31,25 - 45,Caucasian,0,5,0,0,3,-1,2013-02-14 10:35:20,2013-02-16 01:33:06,13002302CF10A,2013-02-14,,1,F,Tamper With Victim,1,13012193CF10A,(F3),,2013-06-30,False Verif Ownership Pawn Shp,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-15,Risk of Violence,3,Low,2013-02-15,2013-02-14,2013-02-16,3,1,135,1,1\r\n5281,juan reinoso amaya,juan,reinoso amaya,2013-01-07,Male,1993-02-21,23,Less than 25,Hispanic,0,3,0,0,0,0,2013-01-07 07:51:24,2013-01-09 09:11:54,13000390MM10A,2013-01-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-07,Risk of Violence,5,Medium,2013-01-07,2013-01-07,2013-01-09,0,2,1180,0,0\r\n5282,teobaldo vergara,teobaldo,vergara,2013-11-27,Male,1988-10-18,27,25 - 45,Caucasian,0,9,0,0,0,0,2013-11-27 02:31:15,2013-11-27 07:48:41,13016516CF10A,2013-11-27,,0,F,Driving While License Revoked,1,14010141CF10A,(F3),,2014-07-03,Driving While License Revoked,,,,0,,,,,Risk of Recidivism,9,High,2013-11-27,Risk of Violence,8,High,2013-11-27,2013-11-27,2013-11-27,0,0,218,1,1\r\n5287,kaeron holness,kaeron,holness,2013-12-09,Male,1983-10-11,32,25 - 45,Other,0,2,0,0,0,0,2013-12-09 03:22:12,2013-12-09 09:18:54,13017027CF10A,2013-12-09,,0,M,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-09,Risk of Violence,2,Low,2013-12-09,2013-12-09,2013-12-09,0,0,844,0,0\r\n5288,george malden,george,malden,2013-07-17,Male,1940-05-04,75,Greater than 45,Caucasian,0,4,0,0,1,-35,2013-06-12 04:11:46,2013-07-12 11:59:24,13008324CF10A,2013-06-11,,36,F,Poss/Sell/Deliver Clonazepam,1,15005753CF10A,(F3),1,2015-05-01,Possession Of Alprazolam,2015-05-02,2015-05-02,,0,,,,,Risk of Recidivism,4,Low,2013-07-17,Risk of Violence,1,Low,2013-07-17,2015-05-21,2015-06-12,1,0,653,1,1\r\n5289,fernand aldridge,fernand,aldridge,2013-03-22,Male,1987-08-16,28,25 - 45,African-American,0,5,0,0,7,-1,2013-03-21 08:49:25,2013-06-07 05:49:03,12002905CF10A,,2013-03-22,0,F,arrest case no charge,1,14004656CF10A,(F2),0,2014-04-03,Poss Cocaine/Intent To Del/Sel,2014-04-03,2014-08-26,,0,,,,,Risk of Recidivism,5,Medium,2013-03-22,Risk of Violence,3,Low,2013-03-22,2014-04-03,2014-08-26,7,77,377,1,1\r\n5290,david church,david,church,2013-04-29,Male,1949-03-21,67,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-28 05:37:37,2013-04-29 06:49:40,13008158MM10A,2013-04-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-28,2013-04-29,0,0,1068,0,0\r\n5293,sandy francois,sandy,francois,2013-12-18,Female,1983-09-18,32,25 - 45,African-American,0,7,0,0,11,0,2013-12-18 02:14:29,2013-12-18 08:08:44,13017465CF10A,2013-12-18,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-18,Risk of Violence,4,Low,2013-12-18,2013-12-18,2013-12-18,11,0,835,0,0\r\n5294,rodney alvarez,rodney,alvarez,2013-11-06,Male,1971-10-20,44,25 - 45,African-American,0,4,0,0,7,0,2013-11-06 01:43:25,2013-11-07 09:49:04,13015495CF10A,,2013-11-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-06,Risk of Violence,3,Low,2013-11-06,2015-07-21,2015-07-25,7,1,622,0,0\r\n5295,darryl lewis,darryl,lewis,2013-03-20,Male,1990-08-16,25,25 - 45,African-American,0,4,0,0,1,-24,2013-02-24 08:54:45,2013-02-25 01:56:29,13002817CF10A,,2013-02-24,24,F,arrest case no charge,1,13014875CF10A,(F3),,2013-05-01,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-20,Risk of Violence,5,Medium,2013-03-20,2014-09-23,2020-01-01,1,0,42,1,1\r\n5297,shawanda perry,shawanda,perry,2013-09-26,Female,1985-06-16,30,25 - 45,African-American,0,8,0,0,15,0,2013-09-26 01:16:52,2013-09-27 03:11:40,13018341MM10A,2013-09-25,,1,M,Battery,1,14045341TC10A,(M2),0,2014-12-21,Operating W/O Valid License,2014-12-21,2014-12-21,,0,,,,,Risk of Recidivism,8,High,2013-09-26,Risk of Violence,4,Low,2013-09-26,2014-12-21,2014-12-21,15,1,451,0,1\r\n5298,dominic rayoni,dominic,rayoni,2013-10-13,Male,1988-03-15,28,25 - 45,Caucasian,0,4,1,0,9,-1,2013-10-12 10:09:36,2013-10-13 07:27:48,13019343MM10A,2013-10-12,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-13,Risk of Violence,3,Low,2013-10-13,2014-01-22,2014-01-27,9,0,101,0,0\r\n5301,joevel williams,joevel,williams,2013-11-22,Male,1988-09-13,27,25 - 45,African-American,0,6,0,0,0,0,2013-11-22 04:41:34,2013-11-25 09:55:59,13016271CF10A,,2013-11-22,0,F,arrest case no charge,1,13023008MM10A,(M1),0,2013-12-12,Possess Drug Paraphernalia,2013-12-12,2013-12-12,,0,,,,,Risk of Recidivism,6,Medium,2013-11-22,Risk of Violence,6,Medium,2013-11-22,2013-12-12,2013-12-12,0,3,20,0,1\r\n5307,andrew henderson,andrew,henderson,2014-03-05,Male,1979-12-29,36,25 - 45,African-American,0,4,0,0,4,-215,2013-08-02 03:33:55,2013-08-02 01:47:55,13010932CF10A,2013-08-02,,215,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-05,Risk of Violence,2,Low,2014-03-05,2013-08-02,2013-08-02,4,0,758,0,0\r\n5308,andre alfred,andre,alfred,2013-01-20,Male,1980-02-13,36,25 - 45,Other,0,2,0,0,8,-1,2013-01-19 05:26:09,2013-01-21 02:10:52,12005397MO10A,,2013-01-19,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-20,Risk of Violence,2,Low,2013-01-20,2013-11-04,2013-11-04,8,1,288,0,0\r\n5309,kristen waun,kristen,waun,2013-05-22,Female,1990-04-30,25,25 - 45,Caucasian,0,4,0,0,0,0,2013-05-22 01:26:39,2013-05-24 08:30:15,13009879MM10A,2013-05-21,,1,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-22,Risk of Violence,4,Low,2013-05-22,2013-05-22,2013-05-24,0,2,1045,0,0\r\n5312,jonpaul pruett,jonpaul,pruett,2014-01-20,Male,1985-04-12,31,25 - 45,Caucasian,0,5,0,0,5,-1,2014-01-19 06:50:46,2014-01-20 08:58:22,14000831CF10A,2014-01-19,,1,F,Driving While License Revoked,1,14004736CF10A,(M2),0,2014-04-06,Lve/Scen/Acc/Veh/Prop/Damage,2014-04-06,2014-04-08,,0,,,,,Risk of Recidivism,5,Medium,2014-01-20,Risk of Violence,2,Low,2014-01-20,2014-04-06,2014-04-08,5,0,76,1,1\r\n5313,paul hawkins,paul,hawkins,2013-12-13,Male,1985-12-11,30,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-13 02:27:35,2013-12-13 08:22:57,13023147MM10A,2013-12-13,,0,M,DUI Property Damage/Injury,1,14009831TC10A,(M2),,2014-01-06,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-13,Risk of Violence,2,Low,2013-12-13,2013-12-13,2013-12-13,0,0,24,1,1\r\n5314,damian francis,damian,francis,2013-10-22,Male,1983-01-03,33,25 - 45,African-American,0,2,0,0,4,-9,2013-10-13 10:41:40,2013-10-21 09:18:54,12014902CF10A,,2013-10-13,9,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-22,Risk of Violence,2,Low,2013-10-22,2013-10-13,2013-10-21,4,0,892,0,0\r\n5315,fernando martinez-salas,fernando,martinez-salas,2013-10-15,Male,1977-05-30,38,25 - 45,Hispanic,0,1,0,0,0,0,2013-10-15 03:11:18,2013-10-15 07:48:38,13019552MM10A,2013-10-15,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-15,Risk of Violence,1,Low,2013-10-15,2013-10-15,2013-10-15,0,0,899,0,0\r\n5316,paul mcpherson,paul,mcpherson,2013-03-06,Male,1990-02-06,26,25 - 45,African-American,0,3,0,0,1,0,2013-03-06 03:03:03,2013-03-06 06:33:05,13009959TC10A,2013-03-06,,0,M,Driving License Suspended,1,14019338TC40A,(M2),,2014-03-20,Driving while DL Susp / Financial Resp,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-06,Risk of Violence,3,Low,2013-03-06,2013-03-06,2013-03-06,1,0,379,1,1\r\n5318,napoleon savinon,napoleon,savinon,2013-04-03,Male,1963-09-15,52,Greater than 45,Hispanic,0,3,0,0,5,-1,2013-04-02 10:32:57,2013-04-09 07:06:41,13004740CF10A,2013-04-02,,1,F,Aggrav Battery w/Deadly Weapon,1,14009027CF10A,(F5),,2014-06-15,Sex Battery Deft 18+/Vict 11-,,,,1,14009027CF10A,(F5),2014-06-15,Sex Battery Deft 18+/Vict 11-,Risk of Recidivism,3,Low,2013-04-03,Risk of Violence,1,Low,2013-04-03,2013-04-02,2013-04-09,5,6,438,1,1\r\n5321,brittany ferry,brittany,ferry,2014-11-20,Female,1993-10-01,22,Less than 25,Caucasian,0,7,0,0,2,-1,2014-11-19 03:54:37,2014-11-21 09:26:42,14015585CF10A,2014-11-19,,1,M,Grand Theft in the 3rd Degree,1,15002660MM40A,(M1),116,2015-07-07,Possess Cannabis/20 Grams Or Less,2015-10-31,2015-11-01,,0,,,,,Risk of Recidivism,7,Medium,2014-11-20,Risk of Violence,6,Medium,2014-11-20,2015-02-08,2015-03-13,2,1,80,0,1\r\n5322,jesus almeida-garcia,jesus,almeida-garcia,2014-02-25,Male,1965-08-06,50,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-24 09:23:08,2014-02-25 09:04:38,14002630CF10A,2014-02-24,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,1,Low,2014-02-25,2014-02-24,2014-02-25,0,0,766,0,0\r\n5323,darron kelly,darron,kelly,2013-05-14,Male,1978-09-28,37,25 - 45,African-American,0,1,0,0,4,135,2013-09-26 08:48:26,2013-09-27 08:33:20,13013096CF10A,2013-05-13,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2013-09-26,2013-09-27,4,0,135,0,0\r\n5324,rodney mcfadden,rodney,mcfadden,2014-01-01,Male,1957-05-11,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-12-31 06:12:18,2014-01-01 01:31:02,14000027CF10A,2013-12-31,,1,F,Aggravated Assault W/Dead Weap,1,15010373MM10A,(M1),0,2015-10-02,Battery,2015-10-02,2015-10-02,,1,15010373MM10A,(M1),2015-10-02,Battery,Risk of Recidivism,1,Low,2014-01-01,Risk of Violence,1,Low,2014-01-01,2015-10-02,2015-10-02,1,0,639,0,1\r\n5326,robert dresch,robert,dresch,2013-03-08,Male,1981-11-05,34,25 - 45,Caucasian,0,4,0,0,3,-1,2013-03-07 08:25:27,2013-03-08 08:30:06,13004638MM10A,2013-03-07,,1,M,Battery,1,13008094CF10A,(M1),0,2013-06-07,Resist/Obstruct W/O Violence,2013-06-07,2013-11-19,,0,,,,,Risk of Recidivism,4,Low,2013-03-08,Risk of Violence,3,Low,2013-03-08,2013-06-07,2013-11-19,3,0,91,1,1\r\n5327,bond springer,bond,springer,2014-01-18,Male,1983-06-13,32,25 - 45,Caucasian,0,1,0,0,1,0,2014-01-18 04:24:43,2014-01-18 09:56:18,14000796CF10A,2014-01-18,,0,F,Pos Cannabis W/Intent Sel/Del,1,14007078CF10A,(F2),0,2014-05-21,Poss Firearm Commission Felony,2014-05-21,2014-06-15,,0,,,,,Risk of Recidivism,1,Low,2014-01-18,Risk of Violence,1,Low,2014-01-18,2014-05-21,2014-06-15,1,0,123,1,1\r\n5330,bobby graham,bobby,graham,2014-03-07,Male,1986-06-19,29,25 - 45,African-American,0,1,0,0,0,-1,2014-03-06 12:36:28,2014-03-08 03:37:51,14008978MU10A,2014-03-06,,1,M,DUI Property Damage/Injury,1,15016556TC10A,(M2),,2015-05-27,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-07,Risk of Violence,2,Low,2014-03-07,2014-03-06,2014-03-08,0,1,446,1,1\r\n5331,jonathan fanfan,jonathan,fanfan,2013-09-08,Male,1988-08-15,27,25 - 45,African-American,0,1,0,0,0,0,2013-09-08 04:52:18,2013-09-09 01:35:06,13017089MM10A,2013-09-08,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-08,Risk of Violence,2,Low,2013-09-08,2013-09-08,2013-09-09,0,1,936,0,0\r\n5332,jason brantman,jason,brantman,2013-08-19,Male,1977-02-11,39,25 - 45,Caucasian,0,3,0,0,5,-21,2013-07-29 05:42:49,2013-08-17 01:21:33,13010611CF10A,2013-07-29,,21,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-19,Risk of Violence,2,Low,2013-08-19,2013-07-29,2013-08-17,5,0,956,0,0\r\n5333,michael times,michael,times,2013-12-30,Male,1991-06-25,24,Less than 25,African-American,0,3,0,0,0,-1,2013-12-29 05:48:49,2013-12-30 08:21:33,13017934CF10A,2013-12-29,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-30,Risk of Violence,4,Low,2013-12-30,2015-06-22,2015-06-29,0,0,539,0,0\r\n5334,tarik carter,tarik,carter,2013-02-03,Male,1977-08-14,38,25 - 45,African-American,1,7,0,0,8,-1,2013-02-02 12:18:07,2013-02-04 03:00:05,13002405MM10A,2013-02-01,,2,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-03,Risk of Violence,6,Medium,2013-02-03,2013-02-02,2013-02-04,8,1,1153,0,0\r\n5335,robert moran,robert,moran,2013-12-02,Male,1963-08-29,52,Greater than 45,Caucasian,0,2,0,0,7,-23,2013-11-09 12:08:27,2013-11-10 07:41:16,13015625CF10A,2013-11-09,,23,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-11-09,2013-11-10,7,0,851,0,0\r\n5337,leroy ponder,leroy,ponder,2013-10-31,Male,1959-08-25,56,Greater than 45,African-American,0,2,0,0,3,-27,2013-10-04 04:22:50,2013-10-05 07:07:20,13018911MM10A,2013-10-04,,27,M,Battery,1,14011900MM10A,(M2),,2014-07-28,Drinking Alch Beverage In Open,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-31,Risk of Violence,1,Low,2013-10-31,2015-02-23,2015-02-27,3,0,270,1,1\r\n5339,joseph churchill,joseph,churchill,2013-01-17,Male,1969-11-18,46,Greater than 45,Caucasian,0,6,0,0,7,0,2013-01-17 05:29:02,2013-02-22 08:22:33,13000810CF10A,2013-01-17,,0,F,Grand Theft (Motor Vehicle),1,14010603CF10A,(F3),758,2013-12-24,Grand Theft in the 3rd Degree,2016-01-21,2016-04-14,,0,,,,,Risk of Recidivism,6,Medium,2013-01-17,Risk of Violence,7,Medium,2013-01-17,2013-01-17,2013-02-22,7,36,341,1,1\r\n5341,christopher maynard,christopher,maynard,2013-12-06,Male,1977-08-09,38,25 - 45,Caucasian,0,1,0,0,5,-11,2013-11-25 08:29:57,2013-11-28 12:12:28,14000306CF10A,2013-11-25,,11,F,Attempted Robbery  Weapon,1,14002497TC10A,(M2),0,2014-01-21,Reckless Driving,2014-01-21,2014-03-06,,0,,,,,Risk of Recidivism,1,Low,2013-12-06,Risk of Violence,2,Low,2013-12-06,2014-01-21,2014-03-06,5,0,46,1,1\r\n5342,willie molina,willie,molina,2013-04-15,Male,1969-03-03,47,Greater than 45,Caucasian,0,5,0,0,3,0,2013-04-15 06:04:22,2013-06-17 08:28:27,13007294MM10A,2013-04-15,,0,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-15,Risk of Violence,1,Low,2013-04-15,2013-04-15,2013-06-17,3,63,1082,0,0\r\n5344,geoffrey wasserman,geoffrey,wasserman,2013-04-16,Male,1984-03-11,32,25 - 45,Caucasian,0,1,0,0,0,-7,2013-04-09 03:37:17,2013-04-10 02:15:00,13005106CF10A,2013-04-09,,7,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-16,Risk of Violence,2,Low,2013-04-16,2013-04-09,2013-04-10,0,0,1081,0,0\r\n5346,antonio walker,antonio,walker,2013-04-06,Male,1981-12-01,34,25 - 45,African-American,0,7,1,0,27,-1,2013-04-05 10:45:22,2013-04-06 07:30:25,13006587MM10A,2013-04-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-06,Risk of Violence,3,Low,2013-04-06,2013-04-05,2013-04-06,27,0,1091,0,0\r\n5347,kenneth jones,kenneth,jones,2013-11-26,Male,1973-11-01,42,25 - 45,African-American,0,6,0,0,5,-1,2013-11-25 03:04:52,2013-11-28 02:16:07,14000353CF10A,2013-11-25,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-26,Risk of Violence,6,Medium,2013-11-26,2014-10-02,2014-11-26,5,2,310,0,0\r\n5348,jamye brown,jamye,brown,2014-06-07,Female,1980-07-19,35,25 - 45,African-American,0,1,0,0,0,-1,2014-06-06 02:25:27,2014-06-08 03:52:19,14007876CF10A,2014-06-06,,1,M,Battery on a Person Over 65,1,15015854CF10A,(F3),,2015-12-11,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,1,Low,2014-06-07,Risk of Violence,1,Low,2014-06-07,2014-06-06,2014-06-08,0,1,552,1,1\r\n5349,daniel crescenti,daniel,crescenti,2014-03-07,Male,1995-08-03,20,Less than 25,Caucasian,0,10,0,0,0,-1,2014-03-06 09:33:29,2014-03-13 05:24:33,14003179CF10A,2014-03-06,,1,F,Grand Theft in the 3rd Degree,1,15000536MM10A,(M2),1,2015-01-14,Unlaw LicTag/Sticker Attach,2015-01-15,2015-02-03,,0,,,,,Risk of Recidivism,10,High,2014-03-07,Risk of Violence,10,High,2014-03-07,2014-03-06,2014-03-13,0,6,313,1,1\r\n5350,christina sargent,christina,sargent,2014-12-04,Female,1983-12-24,32,25 - 45,Caucasian,0,10,0,0,2,-1,2014-12-03 12:14:32,2015-01-05 08:35:16,14016074CF10A,2014-12-03,,1,F,Possession of Cocaine,1,15016546CF10A,(F3),,2015-12-28,,,,,0,,,,,Risk of Recidivism,10,High,2014-12-04,Risk of Violence,4,Low,2014-12-04,2015-01-28,2015-01-30,2,32,55,0,1\r\n5351,colter thompson,colter,thompson,2013-04-09,Male,1994-07-15,21,Less than 25,Caucasian,0,5,0,1,0,-1,2013-04-08 11:48:28,2013-04-09 02:03:42,13006759MM10A,2013-04-08,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-09,Risk of Violence,7,Medium,2013-04-09,2013-04-08,2013-04-09,0,0,1088,0,0\r\n5352,tavaris mills,tavaris,mills,2014-07-03,Male,1991-09-06,24,Less than 25,African-American,0,2,0,0,0,0,2014-07-03 02:46:00,2014-07-04 04:52:45,14024676MU10A,2014-07-03,,0,M,Driving Under The Influence,1,15062660TC20A,(M2),,2015-11-09,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-07-03,Risk of Violence,3,Low,2014-07-03,2014-07-03,2014-07-04,0,1,494,1,1\r\n5354,nicholas vedder,nicholas,vedder,2013-03-21,Male,1991-08-18,24,Less than 25,African-American,0,9,0,0,1,-1,2013-03-20 07:27:26,2013-07-22 06:50:00,13005489MM10A,2013-03-20,,1,M,Prowling/Loitering,1,13004690CF10A,(F3),,2013-03-28,Aggrav Stalking After Injunctn,,,,0,,,,,Risk of Recidivism,9,High,2013-03-21,Risk of Violence,9,High,2013-03-21,2013-03-20,2013-07-22,1,0,7,1,1\r\n5355,ernest bower,ernest,bower,2013-06-11,Male,1960-10-25,55,Greater than 45,Hispanic,0,1,0,0,2,-32,2013-05-10 11:19:49,2013-06-07 10:53:02,13006730CF10A,2013-05-10,,32,F,Traffick Oxycodone     4g><14g,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-11,Risk of Violence,1,Low,2013-06-11,2013-05-10,2013-06-07,2,0,1025,0,0\r\n5358,roody therlonge,roody,therlonge,2013-09-13,Male,1989-11-12,26,25 - 45,African-American,0,3,0,0,0,-1,2013-09-12 09:24:10,2013-09-13 08:09:50,13017414MM10A,2013-09-12,,1,M,Possess Cannabis/20 Grams Or Less,1,14013966CF10A,(F3),0,2014-10-16,Possession of Cannabis,2014-10-16,2014-10-17,,0,,,,,Risk of Recidivism,3,Low,2013-09-13,Risk of Violence,4,Low,2013-09-13,2013-12-17,2013-12-21,0,0,95,0,1\r\n5360,bruce spillane,bruce,spillane,2013-09-07,Male,1963-11-26,52,Greater than 45,Caucasian,0,2,0,0,8,0,2013-09-07 01:01:02,2013-10-16 09:20:34,12015996CF10A,,2013-09-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-07,Risk of Violence,1,Low,2013-09-07,2013-09-07,2013-10-16,8,39,937,0,0\r\n5363,machell howell,machell,howell,2013-08-10,Male,1988-11-21,27,25 - 45,African-American,0,2,0,0,1,-1,2013-08-09 03:34:53,2013-08-11 09:11:25,13015068MM10A,2013-08-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-10,Risk of Violence,4,Low,2013-08-10,2013-08-09,2013-08-11,1,1,965,0,0\r\n5364,lisette artze,lisette,artze,2013-12-28,Female,1988-09-23,27,25 - 45,Caucasian,0,5,0,0,0,0,2013-12-28 11:18:59,2013-12-29 06:17:42,13023916MM10A,2013-12-28,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-28,Risk of Violence,3,Low,2013-12-28,2013-12-28,2013-12-29,0,1,825,0,0\r\n5365,sergi shokov,sergi,shokov,2014-03-04,Male,1959-09-01,56,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-03 04:19:53,2014-03-04 09:05:49,14003010CF10A,2014-03-03,,1,F,Retail Theft $300 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-04,Risk of Violence,1,Low,2014-03-04,2014-03-03,2014-03-04,0,0,759,0,0\r\n5366,douglas farmer,douglas,farmer,2014-10-16,Male,1964-02-04,52,Greater than 45,Caucasian,0,9,0,0,16,-4,2014-10-12 01:30:43,2014-10-23 03:05:46,14013739CF10A,2014-10-11,,5,F,Possession of Hydrocodone,1,14015738MM10A,(M1),0,2014-10-30,Trespass Other Struct/Conve,2014-10-30,2014-11-25,,0,,,,,Risk of Recidivism,9,High,2014-10-16,Risk of Violence,4,Low,2014-10-16,2014-10-30,2014-11-25,16,7,14,1,1\r\n5367,linton cooper,linton,cooper,2013-02-22,Male,1979-01-03,37,25 - 45,African-American,0,1,0,0,3,-1,2013-02-21 06:34:56,2013-02-22 07:24:44,13003703MM10A,2013-02-21,,1,F,Aiding Escape,1,14002631CF10A,(F3),0,2014-02-24,False Ownership Info/Pawn Item,2014-02-24,2014-02-25,,0,,,,,Risk of Recidivism,1,Low,2013-02-22,Risk of Violence,1,Low,2013-02-22,2014-02-24,2014-02-25,3,0,367,1,1\r\n5369,sem joseph,sem,joseph,2013-07-11,Male,1970-12-09,45,Greater than 45,African-American,0,1,0,0,0,-6,2013-07-05 06:13:45,2013-07-05 08:09:49,13050561TC40A,2013-07-05,,6,M,Interfere W/Traf Cont Dev RR,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-11,Risk of Violence,1,Low,2013-07-11,2013-07-05,2013-07-05,0,0,995,0,0\r\n5370,sibthorpe latourclarke,sibthorpe,latourclarke,2013-11-20,Male,1992-06-04,23,Less than 25,African-American,0,2,0,0,1,-39,2013-10-12 01:23:28,2013-11-20 10:30:07,13019326MM10A,2013-10-12,,39,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-20,Risk of Violence,4,Low,2013-11-20,2015-02-18,2015-03-11,1,0,455,0,0\r\n5371,monica hillerbalcazar,monica,hillerbalcazar,2014-02-11,Female,1979-12-28,36,25 - 45,Caucasian,0,6,0,0,3,-27,2014-01-15 10:03:50,2014-02-11 10:54:01,13006207CF10A,,2014-01-15,27,F,arrest case no charge,1,15007141CF10A,(F3),0,2015-06-01,Resist Officer w/Violence,2015-06-01,2015-07-14,,0,,,,,Risk of Recidivism,6,Medium,2014-02-11,Risk of Violence,7,Medium,2014-02-11,2015-01-04,2015-03-03,3,0,327,0,1\r\n5372,quita griffith,quita,griffith,2013-12-16,Female,1986-12-17,29,25 - 45,African-American,0,2,0,0,0,-3,2013-12-13 11:10:42,2013-12-14 01:25:05,13017266CF10A,2013-12-13,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-16,Risk of Violence,2,Low,2013-12-16,2013-12-13,2013-12-14,0,0,837,0,0\r\n5373,brayan colon,brayan,colon,2013-02-19,Male,1994-12-26,21,Less than 25,Hispanic,0,3,0,0,0,-5,2013-02-14 06:57:35,2013-02-15 04:33:41,13002305CF10A,,2013-02-14,5,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-19,Risk of Violence,6,Medium,2013-02-19,2013-11-18,2013-11-21,0,0,272,0,0\r\n5374,anil somwaru,anil,somwaru,2014-01-13,Male,1995-07-04,20,Less than 25,Other,0,2,2,1,3,-1,2014-01-12 07:51:51,2014-01-13 08:30:08,14000598MM10A,2014-01-12,,1,M,Battery,1,14012805TC10A,(M2),0,2014-03-22,Unlaw LicTag/Sticker Attach,2014-03-22,2014-03-23,,0,,,,,Risk of Recidivism,2,Low,2014-01-13,Risk of Violence,4,Low,2014-01-13,2014-03-22,2014-03-23,3,0,68,1,1\r\n5377,tilford baynham,tilford,baynham,2013-08-28,Male,1946-06-24,69,Greater than 45,African-American,0,6,0,0,3,,,,09005522CF10A,,2012-10-17,315,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-28,Risk of Violence,1,Low,2013-08-28,,,3,0,947,0,0\r\n5379,xavier melton,xavier,melton,2013-08-26,Male,1989-02-08,27,25 - 45,African-American,0,8,1,0,11,-1,2013-08-25 08:21:11,2013-08-30 04:19:35,13011974CF10A,2013-08-25,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-26,Risk of Violence,6,Medium,2013-08-26,2014-01-24,2014-01-26,11,4,151,0,0\r\n5380,tarod thomas,tarod,thomas,2013-04-06,Male,1987-10-03,28,25 - 45,African-American,1,8,0,1,11,0,2013-04-06 01:38:57,2013-04-06 08:09:18,13004908CF10A,2013-04-05,,1,F,Possession of Cocaine,1,14008870CF10A,(M1),0,2014-06-27,Resist/Obstruct W/O Violence,2014-06-27,2014-06-28,,0,,,,,Risk of Recidivism,8,High,2013-04-06,Risk of Violence,6,Medium,2013-04-06,2014-06-27,2014-06-28,11,0,447,1,1\r\n5381,gairy palmer,gairy,palmer,2013-03-31,Male,1977-12-28,38,25 - 45,African-American,0,1,0,0,4,-1,2013-03-30 10:14:17,2013-03-31 06:37:54,13013466TC10A,2013-03-30,,1,M,Susp Drivers Lic 1st Offense,1,15021670TC40A,(M2),,2015-04-09,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-31,Risk of Violence,1,Low,2013-03-31,2013-03-30,2013-03-31,4,0,739,1,0\r\n5382,fernand elizee,fernand,elizee,2013-02-20,Male,1986-01-06,30,25 - 45,Other,0,1,0,0,0,-1,2013-02-19 07:44:17,2013-02-20 06:33:35,13002516CF10A,2013-02-19,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,2,Low,2013-02-20,2013-02-19,2013-02-20,0,0,1136,0,0\r\n5383,nicholaus macklin,nicholaus,macklin,2014-08-06,Female,1996-05-09,19,Less than 25,African-American,0,9,0,0,1,-1,2014-08-05 07:05:17,2015-10-13 07:10:00,14010672CF10A,2014-08-05,,1,F,Burglary Unoccupied Dwelling,1,14011444CF10A,(F2),,2014-08-21,Dealing in Stolen Property,,,,1,14011444CF10A,(F1),2014-08-21,Robbery W/Firearm,Risk of Recidivism,9,High,2014-08-06,Risk of Violence,7,Medium,2014-08-06,2014-08-05,2015-10-13,1,0,15,1,1\r\n5386,michelle hunter,michelle,hunter,2013-09-12,Female,1978-08-20,37,25 - 45,Caucasian,0,1,0,0,1,-1,2013-09-11 07:49:15,2013-09-12 08:10:44,13012854CF10A,2013-09-11,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2013-09-11,2013-09-12,1,0,932,0,0\r\n5387,shanna kettle,shanna,kettle,2013-03-31,Male,1981-09-26,34,25 - 45,African-American,0,1,0,0,0,-1,2013-03-30 06:53:38,2013-04-01 12:45:32,13006130MM10A,2013-03-30,,1,M,Battery,1,13014886MM10A,(M1),,2013-06-06,Battery,,,,1,13014886MM10A,(M1),2013-06-06,Battery,Risk of Recidivism,1,Low,2013-03-31,Risk of Violence,1,Low,2013-03-31,2013-03-30,2013-04-01,0,1,67,1,1\r\n5388,eric loy,eric,loy,2014-11-25,Male,1978-11-27,37,25 - 45,Caucasian,0,8,0,0,7,-1,2014-11-24 11:24:25,2015-02-02 11:03:50,14015816CF10A,2014-11-24,,1,F,Felony Petit Theft,1,15008475CF10A,(F3),,2015-03-17,False Ownership Info/Pawn Item,,,,0,,,,,Risk of Recidivism,8,High,2014-11-25,Risk of Violence,6,Medium,2014-11-25,2014-11-24,2015-02-02,7,69,112,1,1\r\n5389,romario hayden,romario,hayden,2013-09-21,Male,1994-11-23,21,Less than 25,African-American,0,8,0,1,1,-1,2013-09-20 07:24:36,2013-09-21 08:53:45,13013282CF10A,2013-09-20,,1,F,Purchase Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-21,Risk of Violence,7,Medium,2013-09-21,2015-11-10,2015-11-17,1,0,780,0,0\r\n5390,yvon gaspard,yvon,gaspard,2013-02-18,Male,1994-12-17,21,Less than 25,African-American,0,9,0,0,0,-1,2013-02-17 11:03:40,2013-02-24 12:17:17,13002436CF10A,2013-02-17,,1,F,Robbery / No Weapon,1,13020003MM10A,(M1),0,2013-10-22,Trespass Other Struct/Conve,2013-10-22,2013-12-17,,0,,,,,Risk of Recidivism,9,High,2013-02-18,Risk of Violence,8,High,2013-02-18,2013-10-22,2013-12-17,0,6,246,1,1\r\n5391,alison hadler,alison,hadler,2013-12-31,Female,1978-03-14,38,25 - 45,Caucasian,0,4,0,0,3,-1,2013-12-30 09:55:02,2013-12-31 07:52:56,13016091CF10A,,2013-12-30,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-31,Risk of Violence,2,Low,2013-12-31,2015-10-07,2015-11-09,3,0,645,0,0\r\n5392,kenneth rolle,kenneth,rolle,2014-02-27,Male,1968-06-08,47,Greater than 45,African-American,0,4,0,0,1,0,2014-02-27 02:05:42,2014-02-28 10:09:28,14003442MM10A,2014-02-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-27,Risk of Violence,5,Medium,2014-02-27,2014-02-27,2014-02-28,1,1,764,0,0\r\n5394,christopher smith,christopher,smith,2013-03-10,Male,1960-01-21,56,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-03-09 06:43:22,2013-09-16 12:03:42,13003483CF10A,2013-03-09,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-10,Risk of Violence,2,Low,2013-03-10,2013-03-09,2013-09-16,3,190,1118,0,0\r\n5395,lavon thompson,lavon,thompson,2013-10-29,Male,1989-04-05,27,25 - 45,African-American,0,7,0,0,2,-1,2013-10-28 03:58:03,2014-07-01 06:15:45,13015044CF10A,2013-10-28,,1,F,Tamper With Witness/Victim/CI,1,15023013TC10A,(M2),1,2015-08-09,Expired DL More Than 6 Months,2015-08-10,2015-08-21,,0,,,,,Risk of Recidivism,7,Medium,2013-10-29,Risk of Violence,7,Medium,2013-10-29,2014-09-18,2014-09-29,2,580,324,0,1\r\n5398,charles collins,charles,collins,2013-02-23,Male,1992-10-29,23,Less than 25,African-American,0,8,0,0,0,-1,2013-02-22 05:25:17,2013-02-23 08:37:38,13003747MM10A,2013-02-22,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-23,Risk of Violence,8,High,2013-02-23,2014-10-16,2014-11-15,0,0,600,0,0\r\n5399,thomas raby,thomas,raby,2013-07-18,Male,1958-08-02,57,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-07-16 09:13:15,2013-07-18 11:14:39,13009971CF10A,2013-07-16,,2,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-18,Risk of Violence,1,Low,2013-07-18,2013-07-16,2013-07-18,0,0,988,0,0\r\n5400,bryan jackson,bryan,jackson,2014-01-30,Male,1990-12-03,25,25 - 45,African-American,0,7,1,0,9,-17,2014-01-13 12:56:03,2014-01-26 01:00:56,14001025CF10A,,2014-01-24,6,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-30,Risk of Violence,4,Low,2014-01-30,2014-01-13,2014-01-26,9,0,792,0,0\r\n5402,neyesha brunson,neyesha,brunson,2013-02-14,Female,1992-05-18,23,Less than 25,African-American,0,10,0,0,2,16,2013-03-02 04:43:32,2013-06-26 08:30:17,13001252CF10A,2013-01-25,,20,F,Battery on Law Enforc Officer,1,13009492CF10A,(F3),0,2013-07-07,Felony Battery w/Prior Convict,2013-07-07,2013-10-12,,1,13009492CF10A,(F3),2013-07-07,Felony Battery w/Prior Convict,Risk of Recidivism,10,High,2013-02-14,Risk of Violence,9,High,2013-02-14,2013-03-02,2013-06-26,2,0,16,0,1\r\n5403,sergio walls,sergio,walls,2014-11-14,Male,1983-05-29,32,25 - 45,African-American,0,10,0,0,8,0,2014-11-14 01:26:43,2014-11-16 02:59:24,14015307CF10A,,2014-11-13,1,F,arrest case no charge,1,15000362MM10A,(M2),0,2015-01-10,Disorderly Conduct,2015-01-10,2015-01-11,,0,,,,,Risk of Recidivism,10,High,2014-11-14,Risk of Violence,5,Medium,2014-11-14,2015-01-10,2015-01-11,8,2,57,1,1\r\n5404,keisha jones,keisha,jones,2013-10-18,Female,1979-12-31,36,25 - 45,African-American,0,5,0,0,2,-2,2013-10-16 05:52:30,2013-10-17 05:04:11,13019626MM10A,2013-10-16,,2,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-18,Risk of Violence,3,Low,2013-10-18,2013-10-16,2013-10-17,2,0,896,0,0\r\n5405,corey kendrick,corey,kendrick,2014-02-07,Male,1975-02-27,41,25 - 45,African-American,0,5,0,0,5,-1,2014-02-06 05:13:21,2014-02-07 01:43:46,11033444TC20A,2011-05-08,,1006,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-07,Risk of Violence,6,Medium,2014-02-07,2014-02-06,2014-02-07,5,0,784,0,0\r\n5406,victor guevaramolina,victor,guevaramolina,2013-05-08,Male,1984-11-23,31,25 - 45,Hispanic,0,3,0,0,2,-69,2013-02-28 07:13:35,2013-04-19 01:11:35,13003030CF10A,2013-02-28,,69,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-08,Risk of Violence,2,Low,2013-05-08,2013-02-28,2013-04-19,2,0,1059,0,0\r\n5410,marta lopes,marta,lopes,2013-05-24,Female,1977-01-04,39,25 - 45,Other,0,1,0,0,0,-1,2013-05-23 08:14:20,2013-05-24 11:46:12,13007634CF10A,2013-05-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-24,Risk of Violence,1,Low,2013-05-24,2013-05-23,2013-05-24,0,0,1043,0,0\r\n5411,claude jones,claude,jones,2013-08-29,Male,1994-09-21,21,Less than 25,African-American,0,6,0,0,1,-1,2013-08-28 11:29:05,2013-08-30 01:35:02,13012170CF10A,,2013-08-28,1,F,arrest case no charge,1,14053639TC40A,(M2),,2014-05-10,Leave Acc/Attend Veh/More $50,,,,1,15012388CF10A,(F2),2015-09-24,Robbery / No Weapon,Risk of Recidivism,6,Medium,2013-08-29,Risk of Violence,6,Medium,2013-08-29,2013-11-05,2013-11-15,1,1,68,0,1\r\n5412,thomas brooks,thomas,brooks,2014-09-12,Male,1973-04-03,43,25 - 45,Caucasian,0,4,0,0,8,35,2014-10-17 07:16:59,2014-12-18 07:08:44,13009390CF10A,2013-07-04,,435,F,Attempted Robbery  No Weapon,1,14014011CF10A,(F3),0,2014-10-17,Possession of Cocaine,2014-10-17,2014-12-18,,0,,,,,Risk of Recidivism,4,Low,2014-09-12,Risk of Violence,6,Medium,2014-09-12,2014-10-17,2014-12-18,8,0,35,1,1\r\n5416,jimmy toussaint,jimmy,toussaint,2013-04-29,Male,1984-05-21,31,25 - 45,African-American,0,4,0,0,2,-1,2013-04-28 02:35:06,2013-04-30 03:26:44,13018188TC10A,2013-04-28,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-29,Risk of Violence,6,Medium,2013-04-29,2014-04-20,2014-04-21,2,1,356,0,0\r\n5417,brian walters,brian,walters,2013-02-04,Male,1978-07-11,37,25 - 45,Caucasian,0,1,0,0,0,-2,2013-02-02 09:07:40,2013-02-03 08:50:00,13002400MM10A,2013-02-02,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,2,Low,2013-02-04,2013-02-02,2013-02-03,0,0,1152,0,0\r\n5418,henry noel,henry,noel,2013-02-07,Male,1988-08-05,27,25 - 45,African-American,0,2,0,0,0,-1,2013-02-06 10:17:43,2013-02-08 06:25:22,13001858CF10A,2013-02-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-07,Risk of Violence,4,Low,2013-02-07,2013-02-06,2013-02-08,0,1,1149,0,0\r\n5420,christopher ford,christopher,ford,2014-06-24,Male,1993-09-09,22,Less than 25,African-American,0,4,0,0,2,-22,2014-06-02 03:27:27,2014-06-18 03:29:12,14007616CF10A,2014-06-01,,23,F,Possession Of Alprazolam,1,16006376TC40A,(M2),,2015-12-26,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2014-06-24,Risk of Violence,4,Low,2014-06-24,2014-06-02,2014-06-18,2,0,550,1,1\r\n5423,barry dambra,barry,dambra,2013-11-22,Male,1956-08-16,59,Greater than 45,Caucasian,0,1,0,0,2,-19,2013-11-03 10:51:50,2013-11-22 06:16:52,13015326CF10A,2013-11-03,,19,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-22,Risk of Violence,1,Low,2013-11-22,2013-11-03,2013-11-22,2,0,861,0,0\r\n5425,jessica rhoat,jessica,rhoat,2014-12-13,Female,1982-06-28,33,25 - 45,African-American,0,9,0,0,0,-1,2014-12-12 02:02:59,2015-01-10 09:56:53,14016513CF10A,2014-12-12,,1,F,Possession of Cocaine,1,15012222CF10A,(F3),0,2015-09-21,Possession of Cocaine,2015-09-21,2015-10-29,,0,,,,,Risk of Recidivism,9,High,2014-12-13,Risk of Violence,7,Medium,2014-12-13,2015-08-03,2015-08-12,0,28,233,0,1\r\n5426,james haynes,james,haynes,2013-12-17,Male,1976-09-20,39,25 - 45,Caucasian,0,10,0,0,21,-216,2013-05-15 09:02:56,2013-11-25 11:29:51,13006931CF10A,2013-05-15,,216,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-12-17,Risk of Violence,10,High,2013-12-17,2015-07-23,2015-10-12,21,0,583,0,0\r\n5427,erricka gordon,erricka,gordon,2013-05-17,Female,1972-11-30,43,25 - 45,African-American,0,3,0,0,2,-1,2013-05-16 06:12:00,2013-05-18 08:14:28,13006987CF10A,2013-05-16,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-17,Risk of Violence,1,Low,2013-05-17,2013-11-06,2013-11-21,2,1,173,0,0\r\n5428,nicholas register,nicholas,register,2014-03-23,Male,1991-02-09,25,25 - 45,Caucasian,0,4,0,0,5,-1,2014-03-22 12:13:37,2014-07-02 09:22:39,14004077CF10A,2014-03-22,,1,F,Resist Officer w/Violence,1,14017255MM10A,(M2),0,2014-12-08,DWLS Child Support 1st Offense,2014-12-08,2015-03-05,,0,,,,,Risk of Recidivism,4,Low,2014-03-23,Risk of Violence,5,Medium,2014-03-23,2014-09-04,2014-09-17,5,101,165,0,1\r\n5429,tony durden,tony,durden,2014-11-12,Male,1979-12-29,36,25 - 45,African-American,3,10,0,2,19,90,2015-02-10 02:15:52,2015-05-04 12:10:00,14007076MO10A,,2014-06-06,159,M,arrest case no charge,1,15001889CF10A,(F3),1,2015-02-09,Poss Pyrrolidinovalerophenone,2015-02-10,2015-05-04,,0,,,,,Risk of Recidivism,10,High,2014-11-12,Risk of Violence,6,Medium,2014-11-12,2015-02-10,2015-05-04,19,0,89,1,1\r\n5430,alshunard griffin,alshunard,griffin,2014-02-13,Male,1992-06-22,23,Less than 25,African-American,0,5,0,0,3,-1,2014-02-12 12:02:54,2014-02-16 08:21:19,14001999CF10A,2014-02-12,,1,F,Burglary Unoccupied Dwelling,1,14002044MM20A,(M1),,2014-06-29,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-13,Risk of Violence,5,Medium,2014-02-13,2014-02-12,2014-02-16,3,3,136,1,1\r\n5431,heather fleischer,heather,fleischer,2013-07-30,Female,1973-01-19,43,25 - 45,Caucasian,0,2,0,0,3,9,2013-08-08 06:27:18,2013-08-09 06:29:52,13013799MM10A,2013-07-20,,10,M,Viol Injunct Domestic Violence,1,13015001MM10A,(M1),0,2013-08-08,Viol Injunct Domestic Violence,2013-08-08,2013-08-09,,1,13016744MM10A,(M1),2013-09-01,Battery,Risk of Recidivism,2,Low,2013-07-30,Risk of Violence,1,Low,2013-07-30,2013-08-08,2013-08-09,3,0,9,1,1\r\n5432,jeffrey conley,jeffrey,conley,2014-11-17,Male,1959-06-30,56,Greater than 45,Caucasian,0,1,0,0,9,-24,2014-10-24 11:21:51,2014-11-13 05:30:00,14015466MM10A,2014-10-24,,24,M,Battery,1,15002748CF10A,(M1),0,2015-02-28,Unlaw Use False Name/Identity,2015-02-28,2015-04-21,,0,,,,,Risk of Recidivism,1,Low,2014-11-17,Risk of Violence,1,Low,2014-11-17,2015-02-28,2015-04-21,9,0,103,1,1\r\n5433,quatrona franklin,quatrona,franklin,2014-10-03,Female,1996-02-17,20,Less than 25,African-American,0,8,0,0,1,-1,2014-10-02 09:50:54,2014-10-06 09:27:41,14013293CF10A,2014-10-02,,1,F,Felony Petit Theft,1,15002990MM40A,(M2),,2015-08-02,Petit Theft,,,,0,,,,,Risk of Recidivism,8,High,2014-10-03,Risk of Violence,6,Medium,2014-10-03,2014-10-02,2014-10-06,1,3,303,1,1\r\n5434,keith brown,keith,brown,2013-03-05,Male,1966-03-30,50,Greater than 45,African-American,0,5,0,0,2,-28,2013-02-05 05:29:49,2013-02-06 01:46:06,13014304NI20A,2013-02-27,,6,M,Ride Tri-Rail Without Paying,1,15000294MM40A,(M1),,2014-12-19,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-05,Risk of Violence,1,Low,2013-03-05,2013-06-26,2013-07-02,2,0,113,0,1\r\n5435,ralph guelce,ralph,guelce,2014-12-22,Male,1991-12-17,24,Less than 25,Other,0,8,0,0,2,-49,2014-11-03 11:38:37,2014-11-06 09:18:29,14002485MM10A,,2014-11-03,49,M,arrest case no charge,1,15059856TC20A,(M1),,2015-10-08,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,8,High,2014-12-22,Risk of Violence,4,Low,2014-12-22,2014-11-03,2014-11-06,2,0,290,1,1\r\n5436,monique young,monique,young,2013-05-02,Female,1961-07-13,54,Greater than 45,Caucasian,0,2,0,0,1,-4,2013-04-28 04:26:40,2013-05-01 06:20:52,13008165MM10A,2013-04-28,,4,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-02,Risk of Violence,1,Low,2013-05-02,2013-04-28,2013-05-01,1,0,1065,0,0\r\n5438,austin henry,austin,henry,2014-06-24,Male,1995-10-15,20,Less than 25,African-American,0,10,0,0,1,-1,2014-06-23 03:15:48,2014-06-25 02:40:05,14008642CF10A,2014-06-23,,1,F,Grand Theft (Motor Vehicle),1,14016630MM10A,(M1),0,2014-11-21,Resist/Obstruct W/O Violence,2014-11-21,2014-12-07,,0,,,,,Risk of Recidivism,10,High,2014-06-24,Risk of Violence,8,High,2014-06-24,2014-09-22,2014-10-15,1,1,90,0,1\r\n5439,richenel metayer,richenel,metayer,2013-11-05,Male,1980-04-07,36,25 - 45,Other,0,4,0,0,3,-1,2013-11-04 12:26:37,2013-12-20 09:17:28,13020836MM10A,2013-11-04,,1,M,Viol Injunct Domestic Violence,1,14009088MM10A,(M1),0,2014-06-08,Viol Prot Injunc Repeat Viol,2014-06-08,2015-02-20,,1,14008782CF10A,(F3),2014-06-08,Felony Battery w/Prior Convict,Risk of Recidivism,4,Low,2013-11-05,Risk of Violence,3,Low,2013-11-05,2014-06-08,2015-02-20,3,45,215,1,1\r\n5440,latonya howard,latonya,howard,2014-11-10,Female,1979-04-20,36,25 - 45,African-American,0,6,0,0,3,0,2014-11-10 03:13:06,2014-11-10 07:25:36,14015105CF10A,2014-11-09,,1,F,Poss Pyrrolidinovalerophenone,1,14003290MM20A,(M2),,2014-11-21,Petit Theft,,,,0,,,,,Risk of Recidivism,6,Medium,2014-11-10,Risk of Violence,4,Low,2014-11-10,2016-01-11,2016-01-12,3,0,11,1,1\r\n5441,joseph pendergrass,joseph,pendergrass,2013-05-04,Male,1959-05-11,56,Greater than 45,African-American,0,4,0,0,0,-1,2013-05-03 02:27:09,2013-05-05 01:57:23,13008632MM10A,2013-05-03,,1,M,Tresspass in Structure or Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2013-05-03,2013-05-05,0,1,1063,0,0\r\n5442,zachary williams,zachary,williams,2014-05-23,Male,1991-03-05,25,25 - 45,African-American,0,9,0,0,28,-55,2014-03-29 02:59:33,2014-03-30 01:12:54,14006328MM10A,2014-03-31,,53,M,Assault,1,14000933MM30A,(M1),,2014-05-28,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,9,High,2014-05-23,Risk of Violence,8,High,2014-05-23,2014-12-08,2015-01-12,28,0,5,1,1\r\n5443,malcolm ricks,malcolm,ricks,2013-05-29,Male,1990-09-08,25,25 - 45,African-American,1,9,0,0,2,-1,2013-05-28 05:50:56,2013-05-29 07:54:28,13007596CF10A,2013-05-28,,1,F,Possession of Cocaine,1,16002819CF10A,(M1),1,2016-03-03,,2016-03-04,2016-03-04,,0,,,,,Risk of Recidivism,9,High,2013-05-29,Risk of Violence,7,Medium,2013-05-29,2014-10-09,2014-10-10,2,0,498,0,0\r\n5444,diana munoz,diana,munoz,2013-11-07,Female,1973-08-25,42,25 - 45,Caucasian,0,3,0,0,1,-1,2013-11-06 01:03:10,2013-11-27 07:23:14,13015499CF10A,2013-11-06,,1,F,Fail To Redeliv Hire/Leas Prop,1,14024216TC40A,(M2),,2014-04-06,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-07,Risk of Violence,1,Low,2013-11-07,2013-11-06,2013-11-27,1,20,150,1,1\r\n5445,jean edmond,jean,edmond,2013-01-17,Male,1982-02-28,34,25 - 45,African-American,0,10,2,0,9,,,,12055993TC10A,2012-10-29,,80,M,Susp Drivers Lic 1st Offense,1,13013709TC10A,(M2),,2013-02-19,Driving License Suspended,,,,1,14004311CF10A,(F6),2013-11-14,Murder in the First Degree,Risk of Recidivism,10,High,2013-01-17,Risk of Violence,9,High,2013-01-17,2006-11-20,2007-01-01,9,0,33,1,1\r\n5446,osmar berges,osmar,berges,2014-02-08,Male,1967-12-09,48,Greater than 45,African-American,0,6,0,0,4,-1,2014-02-07 08:43:01,2014-02-08 10:23:55,14001736CF10A,2014-02-07,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-08,Risk of Violence,3,Low,2014-02-08,2015-06-17,2015-07-01,4,0,494,0,0\r\n5447,james lapaix,james,lapaix,2013-12-08,Male,1981-10-03,34,25 - 45,African-American,1,10,0,0,21,-1,2013-12-07 10:49:28,2013-12-13 05:26:14,13022660MM10A,2013-12-07,,1,M,Battery,1,14004993MM10A,(M2),0,2014-03-22,Driving License Suspended,2014-03-22,2014-11-12,,1,14004993MM10A,(M1),2014-03-22,Battery,Risk of Recidivism,10,High,2013-12-08,Risk of Violence,10,High,2013-12-08,2014-03-22,2014-11-12,21,5,104,1,1\r\n5448,jose pareja,jose,pareja,2013-04-14,Male,1987-10-07,28,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-13 09:40:01,2013-04-14 02:57:23,13005350CF10A,2013-04-13,,1,F,Traffick Oxycodone     4g><14g,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-14,Risk of Violence,2,Low,2013-04-14,2013-04-13,2013-04-14,0,0,1083,0,0\r\n5449,hermes perez,hermes,perez,2013-11-17,Male,1983-05-27,32,25 - 45,Caucasian,0,3,0,0,1,-1,2013-11-16 01:11:58,2013-11-17 08:28:49,13015954CF10A,2013-11-16,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-17,Risk of Violence,2,Low,2013-11-17,2015-07-15,2015-08-08,1,0,605,0,0\r\n5451,jamie winkleblech,jamie,winkleblech,2014-03-11,Female,1985-02-02,31,25 - 45,Caucasian,0,1,0,0,2,-1,2014-03-10 11:24:08,2014-03-12 03:59:12,14003385CF10A,2014-03-10,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-11,Risk of Violence,1,Low,2014-03-11,2014-03-10,2014-03-12,2,1,752,0,0\r\n5453,keonah dailey,keonah,dailey,2014-09-23,Female,1991-11-05,24,Less than 25,African-American,0,9,0,0,4,-1,2014-09-22 07:44:06,2014-09-28 03:12:38,14012826CF10A,2014-09-22,,1,F,Possession of Cocaine,1,14014045CF10A,(F3),0,2014-10-17,Grand Theft (Motor Vehicle),2014-10-17,2014-11-21,,0,,,,,Risk of Recidivism,9,High,2014-09-23,Risk of Violence,8,High,2014-09-23,2014-10-17,2014-11-21,4,5,24,1,1\r\n5454,janelle dunbar,janelle,dunbar,2013-03-13,Female,1990-10-20,25,25 - 45,Caucasian,0,4,0,0,0,0,2013-03-13 01:15:29,2013-03-13 05:55:27,13003689CF10A,2013-03-12,,1,F,Possession of Hydromorphone,1,13015491CF10A,(F3),0,2013-11-06,Possession of Hydromorphone,2013-11-06,2013-12-16,,0,,,,,Risk of Recidivism,4,Low,2013-03-13,Risk of Violence,4,Low,2013-03-13,2013-11-06,2013-12-16,0,0,238,1,1\r\n5455,christine powers,christine,powers,2014-01-16,Female,1983-09-04,32,25 - 45,Caucasian,0,2,0,1,4,-1,2014-01-15 05:18:19,2014-01-15 09:27:23,14000652CF10A,2014-01-15,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-16,Risk of Violence,1,Low,2014-01-16,2014-01-15,2014-01-15,4,0,806,0,0\r\n5456,randy hall,randy,hall,2013-04-26,Male,1978-11-25,37,25 - 45,African-American,0,9,0,0,20,0,2013-04-26 03:44:07,2013-06-01 03:07:29,13006001CF10A,2013-04-26,,0,F,Driving While License Revoked,1,13014105CF10A,(M1),1,2013-10-08,Resist/Obstruct W/O Violence,2013-10-09,2013-12-06,,0,,,,,Risk of Recidivism,9,High,2013-04-26,Risk of Violence,5,Medium,2013-04-26,2003-06-24,2020-01-01,20,0,165,1,1\r\n5458,latisha tillman,latisha,tillman,2013-08-17,Male,1991-10-14,24,Less than 25,African-American,0,3,0,0,1,-1,2013-08-16 06:16:58,2013-08-18 04:49:59,13011500CF10A,2013-08-16,,1,F,Battery on Law Enforc Officer,1,13034518TC10A,(M2),51,2013-08-19,Operating W/O Valid License,2013-10-09,2013-10-10,,0,,,,,Risk of Recidivism,3,Low,2013-08-17,Risk of Violence,4,Low,2013-08-17,2013-08-16,2013-08-18,1,1,2,1,1\r\n5459,hering bolano,hering,bolano,2014-03-15,Male,1967-07-21,48,Greater than 45,African-American,0,1,0,0,0,0,2014-03-15 01:10:22,2014-03-16 01:46:30,14003674CF10A,2014-03-14,,1,M,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-15,Risk of Violence,1,Low,2014-03-15,2014-03-15,2014-03-16,0,1,748,0,0\r\n5460,anthony demps,anthony,demps,2013-06-26,Male,1990-06-27,25,25 - 45,African-American,1,9,2,0,9,43,2013-08-08 10:16:20,2013-09-27 05:24:31,11019440CF10A,,2013-06-06,20,F,arrest case no charge,1,13011104CF10A,(F3),0,2013-08-08,Grand Theft (Motor Vehicle),2013-08-08,2013-09-27,,1,16000237MM10A,(M1),2015-10-07,Battery,Risk of Recidivism,9,High,2013-06-26,Risk of Violence,9,High,2013-06-26,2013-08-08,2013-09-27,9,0,43,1,1\r\n5461,willie starkey,willie,starkey,2013-12-16,Male,1981-03-22,35,25 - 45,African-American,0,2,0,0,1,0,2013-12-16 03:09:50,2013-12-16 08:23:44,13017369CF10A,2013-12-16,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-16,2013-12-16,1,0,837,0,0\r\n5463,damani bankston,damani,bankston,2013-09-09,Male,1994-09-15,21,Less than 25,African-American,0,4,0,0,1,-1,2013-09-08 01:03:41,2013-09-09 01:34:09,13012685CF10A,2013-09-08,,1,F,Attempted Burg/Convey/Unocc,1,15004018CF10A,(F2),,2013-11-01,Burglary Unoccupied Dwelling,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-09,Risk of Violence,6,Medium,2013-09-09,2015-04-15,2015-04-16,1,0,53,1,1\r\n5465,keontrae clarke,keontrae,clarke,2013-04-13,Female,1994-08-13,21,Less than 25,African-American,0,10,0,0,0,-1,2013-04-12 05:21:40,2013-05-15 05:49:26,13005291CF10A,2013-04-12,,1,F,Grand Theft in the 3rd Degree,1,13014699CF10A,(F3),0,2013-10-21,Possession of Cocaine,2013-10-21,2013-10-22,,0,,,,,Risk of Recidivism,10,High,2013-04-13,Risk of Violence,9,High,2013-04-13,2013-09-20,2013-09-25,0,32,160,0,1\r\n5472,tanya kennon,tanya,kennon,2014-09-25,Female,1988-04-23,27,25 - 45,Caucasian,0,2,0,0,0,-1,2014-09-24 01:55:41,2014-09-26 09:22:56,14012926CF10A,2014-09-24,,1,F,Grand Theft in the 3rd Degree,1,15001013CF10A,(F3),0,2015-01-22,Possession of Oxycodone,2015-01-22,2015-02-25,,0,,,,,Risk of Recidivism,2,Low,2014-09-25,Risk of Violence,2,Low,2014-09-25,2015-01-22,2015-02-25,0,1,119,1,1\r\n5473,terrance gordon,terrance,gordon,2014-03-26,Male,1993-11-22,22,Less than 25,African-American,0,2,0,0,0,-1,2014-03-25 03:44:15,2014-03-26 09:01:59,14004227CF10A,2014-03-25,,1,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-26,Risk of Violence,4,Low,2014-03-26,2014-03-25,2014-03-26,0,0,737,0,0\r\n5474,demarr labordeaux,demarr,labordeaux,2013-04-05,Male,1987-04-28,28,25 - 45,African-American,0,5,0,0,4,0,2013-04-05 01:20:12,2013-04-05 01:32:17,13004854CF10A,2013-04-04,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-05,Risk of Violence,5,Medium,2013-04-05,2014-10-15,2014-10-16,4,0,558,0,0\r\n5475,robert watts,robert,watts,2013-05-09,Male,1990-03-11,26,25 - 45,African-American,0,2,0,0,0,-1,2013-05-08 04:58:36,2013-05-09 07:23:44,13008904MM10A,2013-05-08,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-09,Risk of Violence,3,Low,2013-05-09,2013-05-08,2013-05-09,0,0,1058,0,0\r\n5476,kadeem clarke,kadeem,clarke,2014-07-02,Male,1992-10-13,23,Less than 25,Other,0,2,0,0,0,-1,2014-07-01 03:22:24,2014-07-02 01:50:13,14009034CF10A,2014-07-01,,1,M,Felony Battery (Dom Strang),1,14017732MM10A,(M1),146,2014-07-23,Viol Pretrial Release Dom Viol,2014-12-16,2015-03-10,,0,,,,,Risk of Recidivism,2,Low,2014-07-02,Risk of Violence,3,Low,2014-07-02,2014-12-16,2015-03-10,0,0,21,1,1\r\n5477,brian wagner,brian,wagner,2013-04-11,Male,1982-03-20,34,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-10 11:41:34,2013-04-11 07:33:54,13005190CF10A,2013-04-10,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-11,Risk of Violence,1,Low,2013-04-11,2013-04-10,2013-04-11,0,0,1086,0,0\r\n5479,anthony bones,anthony,bones,2013-01-12,Male,1993-08-19,22,Less than 25,African-American,0,9,0,0,3,-1,2013-01-11 05:12:24,2013-02-14 04:12:48,13000502CF10A,2013-01-11,,1,F,Agg Assault W/int Com Fel Dome,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-12,Risk of Violence,9,High,2013-01-12,2015-01-08,2015-03-12,3,33,726,0,0\r\n5482,jimmy desilus,jimmy,desilus,2013-05-19,Male,1986-01-03,30,25 - 45,Other,0,5,0,0,5,-1,2013-05-18 03:12:28,2013-07-19 12:34:52,13007104CF10A,2013-05-18,,1,F,False Imprisonment,1,13043818TC10A,(M2),0,2013-11-12,Lve/Scen/Acc/Veh/Prop/Damage,2013-11-12,2014-05-16,,0,,,,,Risk of Recidivism,5,Medium,2013-05-19,Risk of Violence,4,Low,2013-05-19,2013-11-12,2014-05-16,5,61,177,1,1\r\n5483,joseph webb,joseph,webb,2014-03-03,Male,1971-09-22,44,25 - 45,Caucasian,0,2,0,0,5,0,2014-03-03 10:15:24,2014-03-10 10:03:52,14003005CF10A,,2014-03-03,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-03,2014-03-10,5,7,760,0,0\r\n5484,robert bianco,robert,bianco,2013-11-25,Male,1958-09-05,57,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-11-24 07:32:33,2013-12-11 11:30:00,13016331CF10A,2013-11-24,,1,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,2013-11-24,2013-12-11,1,16,858,0,0\r\n5485,greg sims,greg,sims,2013-04-19,Male,1994-02-01,22,Less than 25,African-American,0,8,0,1,0,-1,2013-04-18 04:29:35,2013-04-23 07:35:16,13005555CF10A,2013-04-18,,1,F,Criminal Mischief,1,13008137CF10A,(F3),,2013-06-08,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,8,High,2013-04-19,Risk of Violence,9,High,2013-04-19,2013-04-18,2013-04-23,0,4,50,1,1\r\n5487,ranell peebles,ranell,peebles,2013-03-08,Male,1981-06-15,34,25 - 45,African-American,0,3,0,0,0,,,,13003405CF10A,2013-03-07,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-08,Risk of Violence,4,Low,2013-03-08,,,0,0,1120,0,0\r\n5489,reshaud bowens,reshaud,bowens,2014-05-19,Male,1991-12-21,24,Less than 25,African-American,0,8,0,0,7,-1,2014-05-18 02:30:01,2014-07-25 05:53:01,14006909CF10A,2014-05-18,,1,F,Aggravated Battery / Pregnant,1,15005652CF10A,(F3),0,2015-04-30,Poss Pyrrolidinovalerophenone,2015-04-30,2015-07-16,,0,,,,,Risk of Recidivism,8,High,2014-05-19,Risk of Violence,7,Medium,2014-05-19,2015-01-01,2015-03-02,7,67,227,0,1\r\n5491,michael davis,michael,davis,2013-08-16,Male,1995-04-21,20,Less than 25,Caucasian,0,4,0,0,0,-1,2013-08-15 11:34:07,2013-08-16 01:47:50,13011485CF10A,2013-08-15,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-16,Risk of Violence,7,Medium,2013-08-16,2013-08-15,2013-08-16,0,0,959,0,0\r\n5492,david hayes,david,hayes,2014-01-14,Male,1980-08-12,35,25 - 45,Caucasian,0,9,0,0,2,-50,2013-11-25 05:40:33,2013-11-26 08:44:57,13016409CF10A,2013-11-25,,50,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-14,Risk of Violence,5,Medium,2014-01-14,2014-03-26,2014-04-08,2,0,71,0,0\r\n5494,marcus gonzalez,marcus,gonzalez,2013-02-08,Male,1962-11-06,53,Greater than 45,Hispanic,0,1,0,0,1,-8,2013-01-31 01:20:08,2013-02-02 01:43:22,13002254MM10A,2013-01-31,,8,M,Petit Theft,1,13013376CF10A,(F3),,2013-09-20,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-08,Risk of Violence,1,Low,2013-02-08,2013-05-21,2013-06-18,1,0,102,0,1\r\n5495,johnnie dixon,johnnie,dixon,2013-05-30,Male,1955-12-17,60,Greater than 45,African-American,0,3,0,0,13,-13,2013-05-17 08:51:50,2013-05-18 07:54:03,13007090CF10A,2013-05-17,,13,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-30,Risk of Violence,1,Low,2013-05-30,2013-05-17,2013-05-18,13,0,1037,0,0\r\n5496,shanice king,shanice,king,2014-02-21,Female,1993-05-27,22,Less than 25,African-American,0,5,0,0,2,-1,2014-02-20 01:45:43,2014-02-21 10:18:02,14002407CF10A,2014-02-20,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-21,Risk of Violence,7,Medium,2014-02-21,2014-02-20,2014-02-21,2,0,770,0,0\r\n5497,douglas duarte,douglas,duarte,2013-03-11,Male,1972-12-13,43,25 - 45,Hispanic,0,1,0,0,0,-1,2013-03-10 08:27:36,2013-03-11 07:22:36,13004808MM10A,2013-03-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-03-10,2013-03-11,0,0,1117,0,0\r\n5500,william boyance,william,boyance,2013-09-23,Male,1943-11-12,72,Greater than 45,Caucasian,0,4,0,0,7,-1,2013-09-22 12:36:34,2013-09-22 02:15:20,13013322CF10A,2013-09-21,,2,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-22,2013-09-22,7,0,921,0,0\r\n5501,willie fairley,willie,fairley,2014-06-28,Male,1983-02-23,33,25 - 45,African-American,0,5,0,0,3,-1,2014-06-27 02:26:44,2014-07-01 01:30:18,14008882CF10A,2014-06-27,,1,F,Possession of Cocaine,1,14009691CF10A,(M1),1,2014-07-15,Resist/Obstruct W/O Violence,2014-07-16,2014-11-09,,0,,,,,Risk of Recidivism,5,Medium,2014-06-28,Risk of Violence,2,Low,2014-06-28,2014-06-27,2014-07-01,3,3,17,1,1\r\n5502,eric haynes,eric,haynes,2013-01-31,Male,1991-08-15,24,Less than 25,African-American,0,4,0,0,1,-1,2013-01-30 03:09:43,2013-01-30 07:28:46,13001491CF10A,2013-01-29,,2,F,Burglary Structure Unoccup,1,13021149MM10A,(M1),0,2013-11-09,Possess Drug Paraphernalia,2013-11-09,2013-12-03,,0,,,,,Risk of Recidivism,4,Low,2013-01-31,Risk of Violence,4,Low,2013-01-31,2013-11-09,2013-12-03,1,0,282,1,1\r\n5505,bruce davis,bruce,davis,2013-08-08,Male,1956-02-06,60,Greater than 45,African-American,0,1,0,0,0,-1,2013-08-07 09:07:30,2014-03-13 12:32:21,13011062CF10A,2013-08-07,,1,F,Att Burgl Struc/Conv Dwel/Occp,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-08,Risk of Violence,1,Low,2013-08-08,2016-01-05,2016-01-18,0,217,880,0,0\r\n5506,vincent dellapi,vincent,dellapi,2014-01-31,Male,1991-09-16,24,Less than 25,Caucasian,0,5,0,0,3,-1,2014-01-30 05:52:54,2014-02-06 10:26:24,14001351CF10A,2014-01-30,,1,F,Aggravated Battery / Pregnant,1,15021006TC20A,(M2),,2015-03-24,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-31,Risk of Violence,4,Low,2014-01-31,2014-01-30,2014-02-06,3,6,417,1,1\r\n5507,patwayne walters,patwayne,walters,2013-01-01,Male,1972-10-24,43,25 - 45,Other,0,2,0,0,2,,,,13000001TC10A,2012-12-31,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-01,Risk of Violence,1,Low,2013-01-01,,,2,0,1186,0,0\r\n5508,eric francois,eric,francois,2013-06-19,Male,1985-08-17,30,25 - 45,African-American,0,4,0,0,1,-5,2013-06-14 01:37:37,2013-06-16 07:28:46,13011443MM10A,2013-06-14,,5,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-19,Risk of Violence,6,Medium,2013-06-19,2013-06-14,2013-06-16,1,0,1017,0,0\r\n5511,tracy primose,tracy,primose,2013-11-03,Female,1972-12-12,43,25 - 45,Caucasian,0,6,0,0,0,-1,2013-11-02 09:36:41,2013-12-02 08:15:22,13020687MM10A,2013-11-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-03,Risk of Violence,1,Low,2013-11-03,2013-11-02,2013-12-02,0,29,880,0,0\r\n5512,angel lopez,angel,lopez,2013-02-25,Male,1967-11-14,48,Greater than 45,Hispanic,0,1,0,0,1,-8,2013-02-17 12:27:13,2013-02-23 08:12:19,13003395MM10A,2013-02-16,,9,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,1,Low,2013-02-25,2013-02-17,2013-02-23,1,0,1131,0,0\r\n5514,turgay fodul,turgay,fodul,2013-02-11,Male,1961-07-01,54,Greater than 45,Other,0,1,0,0,0,0,2013-02-11 12:00:23,2013-02-11 07:22:50,13002959MM10A,2013-02-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-11,2013-02-11,0,0,1145,0,0\r\n5515,shawn demetrius,shawn,demetrius,2013-08-25,Male,1970-06-11,45,Greater than 45,African-American,0,1,0,0,1,-1,2013-08-24 06:22:37,2013-08-26 08:51:07,13016203MM10A,2013-08-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-25,Risk of Violence,1,Low,2013-08-25,2013-08-24,2013-08-26,1,1,950,0,0\r\n5517,junior savoir,junior,savoir,2013-03-19,Male,1979-05-25,36,25 - 45,Other,0,4,0,0,0,-1,2013-03-18 10:24:17,2013-03-22 05:52:34,13003946CF10A,2013-03-18,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-19,Risk of Violence,2,Low,2013-03-19,2013-03-18,2013-03-22,0,3,1109,0,0\r\n5518,john hartsock,john,hartsock,2013-08-26,Male,1985-03-26,31,25 - 45,Caucasian,0,1,0,0,1,0,2013-08-26 02:58:09,2013-08-26 01:26:58,13016323MM10A,2013-08-25,,1,M,Driving Under The Influence,1,16002812CF10A,(M1),0,2016-03-05,,2016-03-05,2016-03-10,,0,,,,,Risk of Recidivism,1,Low,2013-08-26,Risk of Violence,1,Low,2013-08-26,2016-03-05,2016-03-10,1,0,922,1,0\r\n5519,derric taylor,derric,taylor,2013-04-25,Male,1976-03-10,40,25 - 45,African-American,0,1,0,0,0,-1,2013-04-24 05:34:54,2013-04-26 09:40:31,13007964MM10A,2013-04-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-25,Risk of Violence,1,Low,2013-04-25,2013-04-24,2013-04-26,0,1,1072,0,0\r\n5520,robert gilbert,robert,gilbert,2013-12-30,Male,1966-02-18,50,Greater than 45,Caucasian,0,1,0,0,1,-4,2013-12-26 09:12:06,2013-12-28 02:38:17,13017960CF10A,,2013-12-26,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-30,Risk of Violence,1,Low,2013-12-30,2013-12-26,2013-12-28,1,0,823,0,0\r\n5522,tina james,tina,james,2013-06-25,Female,1989-08-13,26,25 - 45,Other,0,6,0,0,1,-24,2013-06-01 05:12:35,2013-06-02 01:56:35,08021085MM10A,,2009-10-15,1349,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-06-25,Risk of Violence,4,Low,2013-06-25,2015-11-12,2015-11-12,1,0,870,0,0\r\n5524,robinson benjamin,robinson,benjamin,2013-09-04,Male,1974-08-18,41,25 - 45,African-American,0,4,0,0,7,0,2013-09-04 10:54:08,2013-09-05 07:50:31,12012054CF10A,,2013-09-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-09-04,2013-09-05,7,1,940,0,0\r\n5525,nicholas gory,nicholas,gory,2013-09-25,Male,1982-02-20,34,25 - 45,Caucasian,0,6,0,1,5,-1,2013-09-24 01:51:29,2013-09-24 08:05:16,13013401CF10A,2013-09-23,,2,F,\"Poss3,4 Methylenedioxymethcath\",1,13017041CF10A,(F3),40,2013-10-30,Grand Theft in the 3rd Degree,2013-12-09,2014-03-27,,0,,,,,Risk of Recidivism,6,Medium,2013-09-25,Risk of Violence,5,Medium,2013-09-25,2016-01-14,2016-01-15,5,0,35,1,1\r\n5528,carly lipper,carly,lipper,2013-05-28,Female,1987-10-07,28,25 - 45,Caucasian,0,6,0,0,0,-1,2013-05-27 05:16:29,2013-05-29 05:22:26,13007533CF10A,2013-05-27,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-28,Risk of Violence,3,Low,2013-05-28,2013-08-24,2013-09-10,0,1,88,0,0\r\n5530,raymond joseph,raymond,joseph,2014-01-15,Male,1986-02-17,30,25 - 45,African-American,0,1,0,0,1,-48,2013-11-28 12:42:35,2014-01-15 10:22:07,13016540CF10A,2013-11-28,,48,F,Murder in 2nd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-15,Risk of Violence,2,Low,2014-01-15,2013-11-28,2014-01-15,1,0,807,0,0\r\n5531,anthony chimera,anthony,chimera,2013-05-01,Male,1992-09-10,23,Less than 25,Caucasian,0,9,0,2,2,0,2013-05-01 03:49:13,2013-05-01 06:45:32,13006240CF10A,2013-05-01,,0,F,Neglect Child / No Bodily Harm,1,14002722MM10A,(M2),0,2014-02-17,Prowling/Loitering,2014-02-17,2014-02-27,,0,,,,,Risk of Recidivism,9,High,2013-05-01,Risk of Violence,9,High,2013-05-01,2014-02-17,2014-02-27,2,0,292,1,1\r\n5532,jahaida zavala,jahaida,zavala,2014-02-03,Female,1978-11-15,37,25 - 45,Hispanic,0,1,0,0,0,-2,2014-02-01 03:46:00,2014-02-02 08:45:42,14001781MM10A,2014-02-01,,2,M,Battery,1,14042752MU10A,(M1),0,2014-11-22,Driving Under The Influence,2014-11-22,2014-11-23,,0,,,,,Risk of Recidivism,1,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-11-22,2014-11-23,0,0,292,1,1\r\n5534,julio ibanez,julio,ibanez,2013-01-09,Male,1980-10-28,35,25 - 45,Hispanic,0,2,0,0,5,-1,2013-01-08 02:08:35,2013-01-08 06:56:18,13000391MM10A,2013-01-07,,2,M,Reckless Driving,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-09,Risk of Violence,1,Low,2013-01-09,2013-01-08,2013-01-08,5,0,1178,0,0\r\n5535,luis medina,luis,medina,2014-03-06,Male,1994-11-20,21,Less than 25,Caucasian,0,6,0,1,1,-1,2014-03-05 08:32:49,2014-04-23 05:59:12,14003131CF10A,2014-03-05,,1,F,Burglary Conveyance Unoccup,1,15003603CF10A,(M1),0,2015-03-17,Possess Drug Paraphernalia,2015-03-17,2015-10-05,,0,,,,,Risk of Recidivism,6,Medium,2014-03-06,Risk of Violence,7,Medium,2014-03-06,2015-03-17,2015-10-05,1,48,376,1,1\r\n5536,michael grisham,michael,grisham,2014-02-12,Male,1970-11-09,45,Greater than 45,African-American,0,9,0,0,1,-70,2013-12-04 08:10:54,2014-02-04 11:10:00,13001861CF10A,,2013-12-04,70,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-12,Risk of Violence,8,High,2014-02-12,2013-12-04,2014-02-04,1,0,779,0,0\r\n5537,quanesia hannah,quanesia,hannah,2013-03-28,Female,1993-12-28,22,Less than 25,African-American,0,8,1,0,2,-1,2013-03-27 10:41:47,2013-05-01 10:14:51,13006003MM10A,2013-03-27,,1,M,Battery,1,13009322MM10A,(M1),0,2013-05-15,Possess Cannabis/20 Grams Or Less,2013-05-15,2013-05-25,,0,,,,,Risk of Recidivism,8,High,2013-03-28,Risk of Violence,8,High,2013-03-28,2013-05-15,2013-05-25,2,34,48,1,1\r\n5539,eric lodenquai,eric,lodenquai,2013-09-18,Male,1986-10-17,29,25 - 45,African-American,0,8,0,0,6,-1,2013-09-17 11:51:23,2013-10-23 07:53:15,13013121CF10A,2013-09-17,,1,F,Possession of Cocaine,1,13015029CF10A,(F3),1,2013-10-27,Possession of Cocaine,2013-10-28,2013-11-19,,0,,,,,Risk of Recidivism,8,High,2013-09-18,Risk of Violence,4,Low,2013-09-18,2013-09-17,2013-10-23,6,35,39,1,1\r\n5542,sabrina milton,sabrina,milton,2013-11-04,Female,1985-11-07,30,25 - 45,African-American,0,2,0,0,0,-2,2013-11-02 11:13:20,2013-11-03 01:50:01,13020691MM10A,2013-11-02,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-04,Risk of Violence,2,Low,2013-11-04,2013-11-02,2013-11-03,0,0,879,0,0\r\n5543,earl sharp,earl,sharp,2013-05-22,Male,1971-02-12,45,Greater than 45,Caucasian,0,3,0,0,3,-1,2013-05-21 11:38:18,2013-08-22 09:33:30,13009780MM10A,2013-05-21,,1,M,Battery,1,14000931MM40A,(M1),,2013-11-24,Battery,,,,1,14000931MM40A,(M1),2013-11-24,Battery,Risk of Recidivism,3,Low,2013-05-22,Risk of Violence,2,Low,2013-05-22,2013-05-21,2013-08-22,3,92,186,1,1\r\n5544,jennifer wiggs,jennifer,wiggs,2013-04-15,Female,1991-08-13,24,Less than 25,African-American,0,4,0,0,2,-1,2013-04-14 01:58:48,2013-04-15 07:59:24,13005361CF10A,2013-04-14,,1,F,Forging Bank Bills/Promis Note,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-15,Risk of Violence,4,Low,2013-04-15,2014-10-03,2014-10-08,2,0,536,0,0\r\n5545,gregory manze,gregory,manze,2013-01-13,Male,1984-12-13,31,25 - 45,Caucasian,0,8,0,0,4,0,2013-01-13 03:31:33,2013-02-11 07:30:38,13002960CF10A,2013-01-13,,0,F,Felony Battery w/Prior Convict,1,14004526MM10A,(M1),0,2014-03-15,Viol Injunct Domestic Violence,2014-03-15,2014-03-19,,0,,,,,Risk of Recidivism,8,High,2013-01-13,Risk of Violence,8,High,2013-01-13,2013-03-18,2013-03-18,4,29,64,0,1\r\n5546,mark onufer,mark,onufer,2013-11-20,Male,1959-11-02,56,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-19 08:52:59,2013-11-20 08:31:12,13021768MM10A,2013-11-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-20,Risk of Violence,1,Low,2013-11-20,2013-11-19,2013-11-20,0,0,863,0,0\r\n5548,xiomara cruz,xiomara,cruz,2013-05-06,Female,1971-11-25,44,25 - 45,Hispanic,0,3,0,0,4,-85,2013-02-10 12:20:46,2013-02-10 09:31:28,13002017CF10A,2013-02-09,,86,F,Battery on Law Enforc Officer,1,13031049TC10A,(M2),79,2013-06-10,Driving License Suspended,2013-08-28,2013-09-13,,0,,,,,Risk of Recidivism,3,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-08-28,2013-09-13,4,0,35,1,1\r\n5550,stanley rivers,stanley,rivers,2013-05-18,Male,1992-01-28,24,Less than 25,African-American,0,10,4,0,14,-1,2013-05-17 05:23:41,2013-11-13 05:58:39,13007047CF10A,2013-05-17,,1,F,Grand Theft (Motor Vehicle),1,14009008CF10A,(F2),,2014-06-30,Robbery,,,,1,14009008CF10A,(F2),2014-06-30,Robbery,Risk of Recidivism,10,High,2013-05-18,Risk of Violence,10,High,2013-05-18,2014-06-25,2014-08-26,14,179,408,1,1\r\n5551,terry ross,terry,ross,2013-08-03,Male,1977-10-25,38,25 - 45,African-American,0,6,0,0,11,-1,2013-08-02 09:45:18,2013-08-20 10:59:27,13010926CF10A,2013-08-02,,1,F,Felony Batt(Great Bodily Harm),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-03,Risk of Violence,2,Low,2013-08-03,2013-08-02,2013-08-20,11,17,972,0,0\r\n5552,anthony smith,anthony,smith,2013-03-15,Male,1964-07-01,51,Greater than 45,African-American,0,9,0,0,22,-1,2013-03-14 12:00:18,2013-04-18 05:56:24,13003786CF10A,,2013-03-14,1,F,arrest case no charge,1,13017181CF10A,(F3),0,2013-12-12,Possession of Cocaine,2013-12-12,2014-05-06,,0,,,,,Risk of Recidivism,9,High,2013-03-15,Risk of Violence,2,Low,2013-03-15,2013-12-12,2014-05-06,22,34,272,1,1\r\n5553,belal jabr,belal,jabr,2013-04-11,Male,1994-02-15,22,Less than 25,Caucasian,0,3,0,0,0,-1,2013-04-10 07:51:06,2013-04-11 07:48:52,13005168CF10A,2013-04-10,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-11,Risk of Violence,5,Medium,2013-04-11,2013-04-10,2013-04-11,0,0,1086,0,0\r\n5554,jean innocent,jean,innocent,2013-10-11,Male,1988-01-13,28,25 - 45,African-American,0,8,0,0,5,-1,2013-10-10 06:23:41,2013-10-11 08:20:50,12003079MM10A,,2013-10-10,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-11,Risk of Violence,6,Medium,2013-10-11,2013-10-10,2013-10-11,5,0,903,0,0\r\n5556,david mayo,david,mayo,2013-05-09,Male,1968-10-27,47,Greater than 45,African-American,0,8,0,1,19,-1,2013-05-08 03:31:13,2013-12-06 12:09:35,13006606CF10A,2013-05-08,,1,F,Possession of Cocaine,1,14012918CF10A,(F3),0,2014-09-24,Possession of Hydromorphone,2014-09-24,2015-02-24,,0,,,,,Risk of Recidivism,8,High,2013-05-09,Risk of Violence,3,Low,2013-05-09,2014-09-24,2015-02-24,19,211,503,1,1\r\n5557,steven austin,steven,austin,2014-01-01,Male,1964-11-02,51,Greater than 45,African-American,0,4,0,0,0,-1,2013-12-31 04:39:03,2014-01-30 10:05:25,14000019MM10A,2013-12-31,,1,M,Viol Injunct Domestic Violence,1,14004521MM10A,(M1),0,2014-03-15,Resist/Obstruct W/O Violence,2014-03-15,2014-03-16,,0,,,,,Risk of Recidivism,4,Low,2014-01-01,Risk of Violence,1,Low,2014-01-01,2014-03-15,2014-03-16,0,29,73,1,1\r\n5558,jesse montooth,jesse,montooth,2013-04-23,Male,1990-11-13,25,25 - 45,Caucasian,0,3,0,0,1,0,2013-04-23 02:54:38,2013-06-04 09:05:42,13007880MM10A,2013-04-23,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-23,Risk of Violence,4,Low,2013-04-23,2013-06-22,2013-06-26,1,42,60,0,0\r\n5560,fernando padron,fernando,padron,2013-02-04,Male,1963-01-08,53,Greater than 45,Hispanic,0,1,0,0,1,-1,2013-02-03 04:59:00,2013-02-04 07:14:28,13001693CF10A,2013-02-03,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-04-13,2013-04-13,1,0,68,0,0\r\n5561,christopher hall,christopher,hall,2013-10-29,Male,1985-05-09,30,25 - 45,African-American,0,1,0,0,0,-1,2013-10-28 04:30:30,2013-10-30 09:15:16,13015053CF10A,2013-10-28,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-29,Risk of Violence,1,Low,2013-10-29,2013-10-28,2013-10-30,0,1,885,0,0\r\n5563,steven benghiat,steven,benghiat,2013-04-19,Male,1982-12-22,33,25 - 45,Caucasian,0,6,0,0,0,0,2013-04-19 03:25:56,2013-04-19 07:26:13,13005630CF10A,2013-04-19,,0,F,Possession of Cocaine,1,14004481MM10A,(M1),0,2014-03-14,Battery,2014-03-14,2014-04-11,,1,14004481MM10A,(M1),2014-03-14,Battery,Risk of Recidivism,6,Medium,2013-04-19,Risk of Violence,3,Low,2013-04-19,2014-03-14,2014-04-11,0,0,329,1,1\r\n5564,kimiko wilkinson,kimiko,wilkinson,2013-02-09,Male,1980-12-14,35,25 - 45,African-American,0,4,0,0,5,-1,2013-02-08 01:19:12,2013-09-21 04:54:31,13002152CF10A,2013-02-08,,1,F,Aggrav Stalking After Injunctn,1,14007768CF10A,(F3),0,2014-06-05,Possession of Cocaine,2014-06-05,2015-02-02,,1,15000832MM20A,(M1),2015-02-25,Battery,Risk of Recidivism,4,Low,2013-02-09,Risk of Violence,3,Low,2013-02-09,2014-06-05,2015-02-02,5,224,481,1,1\r\n5567,mary mckinley,mary,mckinley,2013-12-27,Female,1982-10-19,33,25 - 45,African-American,0,2,0,0,0,-1,2013-12-26 06:52:59,2013-12-28 01:05:30,13017838CF10A,2013-12-26,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-27,Risk of Violence,2,Low,2013-12-27,2013-12-26,2013-12-28,0,1,826,0,0\r\n5568,viven mcdonald,viven,mcdonald,2013-04-03,Male,1950-10-03,65,Greater than 45,African-American,0,10,0,0,11,,,,07003603CF10A,2007-02-23,,2231,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-03,Risk of Violence,4,Low,2013-04-03,2007-03-02,2007-05-16,11,0,1094,0,0\r\n5569,michael kuruvilla,michael,kuruvilla,2013-09-26,Male,1956-06-11,59,Greater than 45,Other,0,1,0,0,1,-25,2013-09-01 10:54:33,2013-09-02 01:06:24,13016750MM10A,2013-09-01,,25,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-26,Risk of Violence,1,Low,2013-09-26,2013-09-01,2013-09-02,1,0,918,0,0\r\n5572,sharon rouis,sharon,rouis,2014-01-09,Female,1978-09-30,37,25 - 45,African-American,0,5,0,0,4,,,,12015065MO10A,,2014-01-08,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-09,Risk of Violence,3,Low,2014-01-09,,,4,0,813,0,0\r\n5573,marcie denney,marcie,denney,2013-09-13,Female,1982-10-12,33,25 - 45,Caucasian,0,7,0,0,1,-1,2013-09-12 10:04:43,2013-12-06 04:12:00,11012788CF10A,,2013-09-12,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-13,Risk of Violence,5,Medium,2013-09-13,2013-09-12,2013-12-06,1,84,931,0,0\r\n5574,christopher richardson,christopher,richardson,2013-09-06,Male,1989-02-24,27,25 - 45,African-American,0,7,0,0,2,-1,2013-09-05 03:29:10,2014-01-15 10:28:19,13012539CF10A,,2013-09-05,1,F,arrest case no charge,1,15009093MM10A,(M1),,2015-08-19,Extradition/Defendants,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-06,Risk of Violence,7,Medium,2013-09-06,2013-09-05,2014-01-15,2,131,712,1,1\r\n5575,geraldine hughes,geraldine,hughes,2013-11-27,Female,1986-06-18,29,25 - 45,African-American,0,7,0,0,9,-1,2013-11-26 10:27:58,2013-12-11 04:13:09,13016492CF10A,2013-11-26,,1,F,Poss Anti-Shoplifting Device,1,15009348CF10A,(F3),135,2015-03-07,Crimin Mischief Damage $1000+,2015-07-20,2015-07-21,,0,,,,,Risk of Recidivism,7,Medium,2013-11-27,Risk of Violence,5,Medium,2013-11-27,2013-11-26,2013-12-11,9,14,465,1,1\r\n5576,robert osceola,robert,osceola,2014-11-05,Male,1989-12-13,26,25 - 45,Native American,0,8,0,0,11,64,2015-01-08 12:49:54,2015-09-07 02:50:46,14013671CF10A,2014-06-08,,150,F,Possession of Cocaine,1,16000600MM40A,(M1),,2015-12-28,Battery,,,,1,16000600MM40A,(M1),2015-12-28,Battery,Risk of Recidivism,8,High,2014-11-05,Risk of Violence,5,Medium,2014-11-05,2015-01-08,2015-09-07,11,0,64,0,1\r\n5578,edward mckennie,edward,mckennie,2013-11-07,Male,1991-09-18,24,Less than 25,African-American,0,10,0,3,3,-1,2013-11-06 06:35:18,2013-12-20 09:11:24,13015455CF10A,2013-11-06,,1,F,Aggravated Assault W/Dead Weap,1,14013568MM10A,(M1),,2014-08-06,Battery,,,,1,14013568MM10A,(M1),2014-08-06,Battery,Risk of Recidivism,10,High,2013-11-07,Risk of Violence,9,High,2013-11-07,2013-11-06,2013-12-20,3,43,272,1,1\r\n5579,nathaniel scarborough,nathaniel,scarborough,2013-04-03,Male,1972-09-18,43,25 - 45,African-American,0,9,0,0,5,-1,2013-04-02 11:44:15,2013-04-03 02:42:40,13004734CF10A,2013-04-02,,1,F,Poss Wep Conv Felon,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-03,Risk of Violence,5,Medium,2013-04-03,2013-04-02,2013-04-03,5,0,1094,0,0\r\n5583,jimmy sheppard,jimmy,sheppard,2014-05-30,Male,1978-12-24,37,25 - 45,African-American,0,7,0,0,11,-1,2014-05-29 08:59:15,2014-05-30 01:17:20,14008621MM10A,2014-05-29,,1,M,Battery,1,15010158MM10A,(M1),0,2015-09-26,Battery,2015-09-26,2015-11-25,,1,15010158MM10A,(M1),2015-09-26,Battery,Risk of Recidivism,7,Medium,2014-05-30,Risk of Violence,3,Low,2014-05-30,2014-09-17,2014-09-19,11,0,110,0,1\r\n5584,charles hawkins,charles,hawkins,2013-04-04,Male,1962-12-23,53,Greater than 45,African-American,0,7,0,0,13,-1,2013-04-03 04:57:52,2013-07-03 10:10:58,13004786CF10A,2013-04-03,,1,F,Poss of Cocaine W/I/D/S 1000FT Park,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-04,Risk of Violence,6,Medium,2013-04-04,2013-04-03,2013-07-03,13,90,1093,0,0\r\n5585,montrez harris,montrez,harris,2013-03-06,Male,1972-11-11,43,25 - 45,African-American,0,1,0,0,4,-39,2013-01-26 04:30:09,2013-03-05 10:02:24,10014591CF10A,,2013-01-26,39,F,arrest case no charge,1,16000518MM10A,(M2),1,2016-01-15,Unnatural/Lascivious Act,2016-01-16,2016-01-21,,0,,,,,Risk of Recidivism,1,Low,2013-03-06,Risk of Violence,1,Low,2013-03-06,2016-01-16,2016-01-21,4,0,1045,1,0\r\n5586,fabian staples,fabian,staples,2014-01-24,Male,1989-08-04,26,25 - 45,African-American,0,8,0,0,4,0,2014-01-24 04:45:38,2014-01-25 01:54:43,14001066CF10A,2014-01-24,,0,F,\"Poss3,4 Methylenedioxymethcath\",1,14029700TC10A,(M2),0,2014-06-12,Driving License Suspended,2014-06-12,2014-06-13,,0,,,,,Risk of Recidivism,8,High,2014-01-24,Risk of Violence,5,Medium,2014-01-24,2014-06-12,2014-06-13,4,1,139,1,1\r\n5590,toni giarraputo,toni,giarraputo,2013-09-10,Female,1985-10-16,30,25 - 45,Caucasian,0,3,0,0,1,-27,2013-08-14 03:54:15,2013-08-14 08:26:49,13015398MM10A,2013-08-14,,27,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-10,Risk of Violence,2,Low,2013-09-10,2013-08-14,2013-08-14,1,0,934,0,0\r\n5591,blaine wiggins,blaine,wiggins,2013-10-15,Male,1988-11-10,27,25 - 45,African-American,0,7,0,0,6,0,2013-10-15 07:16:22,2013-10-17 05:27:21,13014424CF10A,2013-10-15,,0,F,Fabricating Physical Evidence,1,14002460MM10A,(M1),0,2014-02-12,Trespass Other Struct/Conve,2014-02-12,2014-02-12,,0,,,,,Risk of Recidivism,7,Medium,2013-10-15,Risk of Violence,6,Medium,2013-10-15,2013-11-14,2013-11-15,6,2,30,0,1\r\n5592,keith wallack,keith,wallack,2013-03-21,Male,1976-08-11,39,25 - 45,Caucasian,0,5,0,0,9,-1,2013-03-20 08:06:14,2013-03-21 10:39:06,13004022CF10A,2013-03-20,,1,F,Possession of Cocaine,1,13031382TC10A,(M2),,2013-06-19,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-21,Risk of Violence,3,Low,2013-03-21,2013-07-11,2014-01-05,9,0,90,1,1\r\n5593,fidel salnave,fidel,salnave,2013-01-29,Male,1978-07-04,37,25 - 45,Caucasian,0,4,0,0,4,0,2013-01-29 03:26:56,2013-01-29 09:19:35,13001419CF10A,2013-01-29,,0,M,Aggravated Battery / Pregnant,1,13016502MM10A,(M1),1,2013-08-28,Viol Injunct Domestic Violence,2013-08-29,2013-10-03,,1,14008377MM10A,(M2),2014-05-25,Assault,Risk of Recidivism,4,Low,2013-01-29,Risk of Violence,3,Low,2013-01-29,2015-01-21,2015-03-20,4,0,211,1,1\r\n5594,martavis harvard,martavis,harvard,2014-01-18,Male,1993-11-29,22,Less than 25,Caucasian,0,10,0,0,3,0,2014-01-18 12:18:05,2014-01-29 03:44:23,14000922MM10A,2014-01-17,,1,M,Battery,1,15004444CF10A,(F3),1,2015-04-04,Possession of Cocaine,2015-04-05,2015-04-18,,0,,,,,Risk of Recidivism,10,High,2014-01-18,Risk of Violence,6,Medium,2014-01-18,2014-08-29,2014-09-19,3,11,223,0,1\r\n5596,brian addeo,brian,addeo,2013-10-12,Male,1991-01-10,25,25 - 45,Caucasian,0,6,0,0,0,-1,2013-10-11 06:21:59,2013-10-13 07:53:41,13014255CF10A,2013-10-11,,1,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-12,Risk of Violence,4,Low,2013-10-12,2013-10-11,2013-10-13,0,1,902,0,0\r\n5598,melvin barraza,melvin,barraza,2013-08-30,Male,1989-10-04,26,25 - 45,Hispanic,0,5,0,0,1,0,2013-08-30 11:51:04,2013-08-31 01:57:53,13010846CF10A,,2013-08-30,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-30,Risk of Violence,3,Low,2013-08-30,2013-08-30,2013-08-31,1,1,945,0,0\r\n5599,elena gokun-diazyepez,elena,gokun-diazyepez,2013-01-28,Female,1988-02-19,28,25 - 45,Caucasian,0,6,0,0,0,-2,2013-01-26 04:03:40,2013-01-27 02:03:52,13001879MO10A,2013-01-26,,2,M,DOC/Cause Public Danger,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-28,Risk of Violence,2,Low,2013-01-28,2013-01-26,2013-01-27,0,0,1159,0,0\r\n5600,joel dunkley,joel,dunkley,2014-03-09,Male,1990-10-06,25,25 - 45,African-American,0,5,0,0,0,-1,2014-03-08 04:53:09,2014-03-10 03:28:00,14004037MM10A,2014-03-08,,1,M,Battery,1,14004204MM40A,(M2),,2014-10-08,Defrauding Innkeeper,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-09,Risk of Violence,3,Low,2014-03-09,2014-03-08,2014-03-10,0,1,213,1,1\r\n5601,jong lee,jong,lee,2013-01-12,Male,1957-04-28,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-11 05:59:50,2013-01-14 11:02:16,13000662CF10A,,2013-01-11,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-12,Risk of Violence,1,Low,2013-01-12,2014-02-04,2014-02-14,1,2,388,0,0\r\n5603,allyson kenney,allyson,kenney,2014-06-03,Female,1986-06-20,29,25 - 45,Caucasian,0,5,0,0,1,-2,2014-06-01 03:16:47,2014-06-03 10:28:03,14020222MU10A,2014-06-01,,2,M,Driving Under The Influence,1,15002897CF10A,(F3),1,2015-03-02,Possession Of Alprazolam,2015-03-03,2015-03-04,,0,,,,,Risk of Recidivism,5,Medium,2014-06-03,Risk of Violence,3,Low,2014-06-03,2014-06-10,2014-07-03,1,0,7,0,1\r\n5604,michael ottey,michael,ottey,2014-01-03,Male,1983-04-17,33,25 - 45,African-American,0,5,0,0,8,0,2014-01-03 06:25:02,2014-01-06 01:29:56,14000145CF10A,2014-01-03,,0,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-03,Risk of Violence,3,Low,2014-01-03,2014-01-03,2014-01-06,8,3,819,0,0\r\n5605,patrick housen,patrick,housen,2014-01-19,Male,1977-09-08,38,25 - 45,African-American,0,1,0,0,0,-1,2014-01-18 01:29:20,2014-01-19 09:10:09,14000782CF10A,,2014-01-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-19,Risk of Violence,1,Low,2014-01-19,2014-01-18,2014-01-19,0,0,803,0,0\r\n5607,amon brasher,amon,brasher,2014-01-08,Male,1977-10-08,38,25 - 45,Caucasian,0,3,0,0,2,-21,2013-12-18 08:35:42,2014-01-06 09:27:23,13017460CF10A,2013-12-18,,21,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-08,Risk of Violence,2,Low,2014-01-08,2013-12-18,2014-01-06,2,0,814,0,0\r\n5609,leonard sweeting,leonard,sweeting,2013-01-24,Male,1956-08-13,59,Greater than 45,African-American,0,6,0,0,22,-1,2013-01-23 04:45:17,2013-04-02 10:35:27,13001082CF10A,2013-01-23,,1,F,Felony Petit Theft,1,14000594CF10A,(F2),0,2014-01-14,Poss Wep Conv Felon,2014-01-14,2014-03-27,,0,,,,,Risk of Recidivism,6,Medium,2013-01-24,Risk of Violence,6,Medium,2013-01-24,2013-04-18,2013-05-14,22,68,84,0,1\r\n5611,eric stephenson,eric,stephenson,2013-02-08,Male,1987-03-17,29,25 - 45,Other,0,5,0,0,4,-1,2013-02-07 11:48:39,2013-02-08 07:49:28,13002792MM10A,2013-02-07,,1,M,Battery,1,13085565TC30A,(M2),,2013-08-29,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-08,Risk of Violence,4,Low,2013-02-08,2014-06-11,2014-06-12,4,0,202,1,1\r\n5612,eddie mcgowan,eddie,mcgowan,2014-03-04,Male,1958-10-14,57,Greater than 45,African-American,0,5,0,0,9,,,,13016798CF10A,2013-12-04,,90,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-04,Risk of Violence,5,Medium,2014-03-04,2000-06-27,2002-01-19,9,0,759,0,0\r\n5613,glenn mercado,glenn,mercado,2014-07-05,Male,1962-10-23,53,Greater than 45,Caucasian,0,2,0,0,0,-1,2014-07-04 10:27:05,2014-07-08 09:34:22,14010287MM10A,2014-07-04,,1,M,Battery,1,15010489TC10A,(M2),,2015-03-26,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-07-05,Risk of Violence,2,Low,2014-07-05,2014-07-04,2014-07-08,0,3,264,1,1\r\n5614,kandyce sapp,kandyce,sapp,2014-11-14,Male,1983-01-30,33,25 - 45,African-American,0,8,0,0,2,-1,2014-11-13 12:10:56,2014-11-14 08:36:47,14015275CF10A,2014-11-13,,1,F,Aggrav Battery w/Deadly Weapon,1,15007478MM10A,(M1),0,2015-07-13,Trespass Other Struct/Convey,2015-07-13,2015-07-13,,1,15010885MM10A,(M1),2015-10-17,Battery,Risk of Recidivism,8,High,2014-11-14,Risk of Violence,7,Medium,2014-11-14,2015-07-13,2015-07-13,2,0,241,0,1\r\n5617,james torgerson,james,torgerson,2014-01-20,Male,1957-10-13,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-01-19 09:53:29,2014-01-20 08:18:08,14000969MM10A,2014-01-18,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-20,Risk of Violence,1,Low,2014-01-20,2014-01-19,2014-01-20,1,0,802,0,0\r\n5618,jose uman,jose,uman,2013-09-14,Male,1964-08-06,51,Greater than 45,Caucasian,0,1,0,0,1,,,,13017500MM10A,2013-09-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-14,Risk of Violence,1,Low,2013-09-14,,,1,0,930,0,0\r\n5620,willie brinson,willie,brinson,2013-07-24,Male,1991-03-30,25,25 - 45,African-American,0,9,0,2,11,126,2013-11-27 04:59:37,2014-10-14 06:08:06,12003617CF10A,2012-03-09,,502,F,Fleeing Or Attmp Eluding A Leo,1,13016513CF10A,(F3),0,2013-11-27,Possession Burglary Tools,2013-11-27,2014-10-14,,0,,,,,Risk of Recidivism,9,High,2013-07-24,Risk of Violence,8,High,2013-07-24,2013-11-27,2014-10-14,11,0,126,1,1\r\n5621,james williams,james,williams,2013-04-12,Male,1962-12-18,53,Greater than 45,Caucasian,0,4,0,0,2,-1,2013-04-11 11:19:05,2013-05-22 02:10:17,13005238CF10A,2013-04-11,,1,F,Fail Sex Offend Report Bylaw,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-12,Risk of Violence,2,Low,2013-04-12,2013-04-11,2013-05-22,2,40,1085,0,0\r\n5623,michael clermont,michael,clermont,2014-11-04,Male,1984-02-04,32,25 - 45,Caucasian,0,6,0,0,0,-1,2014-11-03 11:44:26,2014-11-21 10:13:10,14016452MM10A,2014-11-03,,1,M,Petit Theft,1,15008644MM10A,(M1),0,2015-08-15,Trespass Other Struct/Convey,2015-08-15,2015-08-16,,0,,,,,Risk of Recidivism,6,Medium,2014-11-04,Risk of Violence,8,High,2014-11-04,2015-08-15,2015-08-16,0,17,284,1,1\r\n5627,delvin mcdougle,delvin,mcdougle,2014-05-29,Male,1980-09-08,35,25 - 45,African-American,0,8,0,0,6,-1,2014-05-28 07:21:57,2014-06-08 04:15:39,14007415CF10A,2014-05-28,,1,F,Uttering a Forged Instrument,1,14008665CF10A,(F1),1,2014-06-22,Aggravated Battery On 65/Older,2014-06-23,2015-12-03,,1,14008665CF10A,(F1),2014-06-22,Aggravated Battery On 65/Older,Risk of Recidivism,8,High,2014-05-29,Risk of Violence,6,Medium,2014-05-29,2014-05-28,2014-06-08,6,10,24,1,1\r\n5628,norman regg,norman,regg,2013-09-30,Male,1976-06-22,39,25 - 45,Caucasian,0,1,0,0,1,-1,2013-09-29 04:31:28,2013-09-30 08:43:42,13012761CF10A,,2013-09-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-29,2013-09-30,1,0,914,0,0\r\n5631,martin cordero,martin,cordero,2013-02-22,Male,1979-07-28,36,25 - 45,Hispanic,0,9,0,0,1,-14,2013-02-08 07:10:53,2013-02-22 10:51:00,13003154MM10A,2013-02-08,,14,M,Extradition/Defendants,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-22,Risk of Violence,4,Low,2013-02-22,2013-02-08,2013-02-22,1,0,1134,0,0\r\n5632,patricia mele,patricia,mele,2013-04-07,Female,1973-10-06,42,25 - 45,Caucasian,0,4,0,0,5,-1,2013-04-06 05:11:31,2013-04-12 09:28:13,13006742MM10A,,2013-04-06,1,M,arrest case no charge,1,14017164CF10A,(F3),0,2014-12-29,Possession Of Heroin,2014-12-29,2015-01-15,,0,,,,,Risk of Recidivism,4,Low,2013-04-07,Risk of Violence,1,Low,2013-04-07,2014-12-29,2015-01-15,5,5,631,1,1\r\n5633,archange pierre,archange,pierre,2013-03-02,Male,1978-08-13,37,25 - 45,African-American,0,2,0,0,0,-1,2013-03-01 07:33:15,2013-03-02 01:13:00,13004231MM10A,2013-03-01,,1,M,Tresspass Struct/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-02,Risk of Violence,2,Low,2013-03-02,2013-03-01,2013-03-02,0,0,1126,0,0\r\n5634,jacek jodlowski,jacek,jodlowski,2013-05-13,Male,1976-12-08,39,25 - 45,Caucasian,0,1,0,0,0,-1,2013-05-12 09:23:55,2013-05-15 10:49:50,13006799CF10A,2013-05-12,,1,F,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-12,2013-05-15,0,2,1054,0,0\r\n5635,lisa kaye,lisa,kaye,2013-11-26,Female,1963-10-08,52,Greater than 45,Caucasian,0,1,0,0,3,-25,2013-11-01 03:19:41,2013-11-01 07:54:46,13020656MM10A,2013-11-01,,25,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-26,Risk of Violence,1,Low,2013-11-26,2013-11-01,2013-11-01,3,0,857,0,0\r\n5637,alexander jolly,alexander,jolly,2014-02-23,Male,1955-08-02,60,Greater than 45,Other,0,1,0,0,1,-1,2014-02-22 05:53:23,2014-02-23 08:19:26,14003111MM10A,2014-02-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-23,Risk of Violence,1,Low,2014-02-23,2014-02-22,2014-02-23,1,0,768,0,0\r\n5638,israel lopez,israel,lopez,2013-05-29,Male,1979-01-15,37,25 - 45,Hispanic,0,1,0,0,2,-1,2013-05-28 03:04:23,2013-05-29 02:34:17,13007603CF10A,2013-05-28,,1,M,Aggravated Battery / Pregnant,1,15053446TC20A,(M2),,2015-09-26,Permit Unauthorized Minor Drv,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-05-28,2013-05-29,2,0,850,1,0\r\n5639,jorge almanza,jorge,almanza,2013-03-26,Male,1973-05-05,42,25 - 45,Caucasian,0,1,0,0,4,-1,2013-03-25 10:40:55,2013-04-12 05:43:04,13004335CF10A,2013-03-25,,1,F,Burglary Conveyance Unoccup,1,14004697TC10A,(M2),,2013-11-12,Reckless Driving,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-26,Risk of Violence,2,Low,2013-03-26,2013-03-25,2013-04-12,4,17,231,1,1\r\n5644,raul casanova-costa,raul,casanova-costa,2014-06-24,Male,1971-08-18,44,25 - 45,Hispanic,0,1,0,0,0,,,,,,,,M,,1,15004530CF10A,(F3),0,2015-04-06,Resist Officer w/Violence,2015-04-06,2015-04-06,,1,15004530CF10A,(F3),2015-04-06,Battery on Law Enforc Officer,Risk of Recidivism,1,Low,2014-06-24,Risk of Violence,1,Low,2014-06-24,2015-04-06,2015-04-06,0,0,286,0,1\r\n5646,malcolm turner,malcolm,turner,2013-04-26,Male,1992-08-05,23,Less than 25,African-American,0,6,0,0,6,0,2013-04-26 05:16:50,2013-04-27 07:43:41,13006041CF10A,2013-04-26,,0,F,Possession of Cocaine,1,13014271MM10A,(M2),30,2013-06-27,Petit Theft,2013-07-27,2013-09-23,,1,15016350CF10A,(F3),2015-12-22,Battery on Law Enforc Officer,Risk of Recidivism,6,Medium,2013-04-26,Risk of Violence,7,Medium,2013-04-26,2013-04-26,2013-04-27,6,1,62,1,1\r\n5647,coretta ward,coretta,ward,2014-12-22,Female,1973-12-14,42,25 - 45,African-American,0,1,0,0,0,-1,2014-12-21 11:22:26,2014-12-22 01:15:31,14045338MU10A,2014-12-21,,1,M,DUI Level 0.15 Or Minor In Veh,1,15019749TC10A,(M2),272,2015-06-20,Driving License Suspended,2016-03-18,2016-03-19,,0,,,,,Risk of Recidivism,1,Low,2014-12-22,Risk of Violence,1,Low,2014-12-22,2016-03-18,2016-03-19,0,0,180,1,1\r\n5649,jessica thomson,jessica,thomson,2013-10-15,Female,1987-12-09,28,25 - 45,Caucasian,0,3,0,0,2,-36,2013-09-09 12:02:08,2013-10-15 09:12:52,13008998CF10A,,2013-09-09,36,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-15,Risk of Violence,2,Low,2013-10-15,2013-09-09,2013-10-15,2,0,899,0,0\r\n5650,ricauter espino,ricauter,espino,2013-08-07,Male,1987-05-14,28,25 - 45,African-American,0,4,0,0,5,0,2013-08-07 01:24:56,2013-08-07 11:21:37,13011027CF10A,2013-08-06,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-07,Risk of Violence,4,Low,2013-08-07,2013-08-07,2013-08-07,5,0,968,0,0\r\n5651,patrick tinnell,patrick,tinnell,2013-05-03,Male,1977-12-06,38,25 - 45,Caucasian,0,5,0,0,12,-1,2013-05-02 09:10:49,2013-05-03 07:35:53,13006461CF10A,2013-05-02,,1,F,Grand Theft of the 2nd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-03,Risk of Violence,3,Low,2013-05-03,2013-05-02,2013-05-03,12,0,1064,0,0\r\n5652,ericka taylor,ericka,taylor,2014-02-04,Female,1973-03-22,43,25 - 45,African-American,0,2,0,0,2,-1,2014-02-03 05:19:15,2014-02-05 03:43:14,14001489CF10A,2014-02-03,,1,F,Grand Theft in the 3rd Degree,1,14002878CF10A,(F3),0,2014-02-28,Poss Anti-Shoplifting Device,2014-02-28,2014-03-01,,0,,,,,Risk of Recidivism,2,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-02-28,2014-03-01,2,1,24,1,1\r\n5654,brian haynes,brian,haynes,2013-10-19,Male,1973-12-17,42,25 - 45,African-American,0,5,0,0,0,-1,2013-10-18 10:21:40,2013-10-19 08:50:58,13014602CF10A,2013-10-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-19,Risk of Violence,5,Medium,2013-10-19,2013-10-18,2013-10-19,0,0,895,0,0\r\n5655,jennifer vazquez,jennifer,vazquez,2014-01-16,Female,1990-06-13,25,25 - 45,Caucasian,0,3,0,0,0,-1,2014-01-15 11:55:47,2014-01-16 02:31:04,14000752MM10A,2014-01-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-16,Risk of Violence,3,Low,2014-01-16,2014-01-15,2014-01-16,0,0,806,0,0\r\n5657,jeff reveille,jeff,reveille,2013-02-27,Male,1983-10-16,32,25 - 45,African-American,0,9,0,0,7,0,2013-02-27 05:00:06,2013-04-05 06:02:00,13002969CF10A,2013-02-27,,0,F,Grand Theft (Motor Vehicle),1,13010688CF10A,(F3),0,2013-07-31,Tampering With Physical Evidence,2013-07-31,2013-10-11,,1,16000257MM10A,(M1),2016-01-07,Battery,Risk of Recidivism,9,High,2013-02-27,Risk of Violence,9,High,2013-02-27,2013-07-31,2013-10-11,7,37,154,1,1\r\n5658,claude sylvain,claude,sylvain,2013-12-02,Male,1995-03-28,21,Less than 25,African-American,0,6,0,0,0,0,2013-12-02 01:21:07,2013-12-02 09:23:46,13016631CF10A,2013-12-01,,1,F,Resist Officer w/Violence,1,14064363TC40A,(M2),,2014-06-12,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-02,Risk of Violence,7,Medium,2013-12-02,2013-12-02,2013-12-02,0,0,192,1,1\r\n5659,stacy massaro,stacy,massaro,2013-10-09,Female,1981-03-30,35,25 - 45,Caucasian,0,5,0,0,1,-30,2013-09-09 12:52:13,2013-10-08 08:55:56,13017187MM10A,2013-09-09,,30,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-09,Risk of Violence,2,Low,2013-10-09,2013-09-09,2013-10-08,1,0,905,0,0\r\n5660,justin scharenbroich,justin,scharenbroich,2013-02-19,Male,1978-11-15,37,25 - 45,Caucasian,0,5,0,0,0,-1,2013-02-18 12:07:07,2013-06-25 07:31:42,13002625CF10A,2013-02-18,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-19,Risk of Violence,3,Low,2013-02-19,2013-02-18,2013-06-25,0,126,1137,0,0\r\n5664,margaret idowu,margaret,idowu,2013-10-22,Female,1983-03-02,33,25 - 45,African-American,0,2,0,0,2,0,2013-10-22 04:22:46,2013-10-22 07:31:15,13014747CF10A,2013-10-22,,0,F,Failure To Return Hired Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-22,2013-10-22,2,0,892,0,0\r\n5665,francine jackson,francine,jackson,2013-02-04,Female,1964-12-14,51,Greater than 45,Caucasian,0,3,0,0,4,-11,2013-01-24 07:21:41,2013-02-01 09:41:37,13001159CF10A,,2013-01-24,11,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-03-28,2013-04-16,4,0,52,0,0\r\n5666,erick philhower,erick,philhower,2013-04-18,Male,1976-04-27,39,25 - 45,Caucasian,0,4,0,0,3,-1,2013-04-17 09:27:09,2013-04-20 07:47:57,13005487CF10A,2013-04-17,,1,F,Possession of Hydromorphone,1,15014306CF10A,(F3),1,2015-11-02,Poss Pyrrolidinovalerophenone,2015-11-03,2015-11-12,,0,,,,,Risk of Recidivism,4,Low,2013-04-18,Risk of Violence,2,Low,2013-04-18,2013-04-17,2013-04-20,3,2,928,1,0\r\n5667,fermin grajales,fermin,grajales,2013-03-27,Male,1980-10-28,35,25 - 45,Hispanic,0,6,0,0,5,-1,2013-03-26 05:31:34,2013-03-28 08:56:16,13005903MM10A,2013-03-26,,1,M,Viol Pretrial Release Dom Viol,1,14001502MM10A,(M1),0,2014-01-27,Battery,2014-01-27,2014-01-28,,1,14001502MM10A,(M2),2014-01-27,Assault,Risk of Recidivism,6,Medium,2013-03-27,Risk of Violence,6,Medium,2013-03-27,2014-01-27,2014-01-28,5,1,306,1,1\r\n5668,allen killings,allen,killings,2013-05-19,Male,1975-09-27,40,25 - 45,African-American,0,7,0,0,3,-1,2013-05-18 09:53:50,2013-05-31 10:07:03,13007111CF10A,2013-05-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-19,Risk of Violence,8,High,2013-05-19,2013-05-18,2013-05-31,3,12,1048,0,0\r\n5669,david daniels,david,daniels,2014-10-12,Male,1983-10-14,32,25 - 45,African-American,0,8,0,0,17,0,2014-10-12 01:45:40,2014-10-12 08:23:38,14013754CF10A,2014-10-12,,0,F,Possession of Cocaine,1,15063804TC20A,(M2),,2015-11-18,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2014-10-12,Risk of Violence,2,Low,2014-10-12,2016-03-14,2016-03-14,17,0,402,1,1\r\n5670,zachary brooks,zachary,brooks,2014-05-16,Male,1997-08-01,18,Less than 25,Caucasian,5,8,0,0,4,85,2014-08-09 03:38:35,2014-08-10 12:29:20,14006412CF10A,2014-04-14,,32,F,Burglary Conveyance Unoccup,1,15011063CF10A,(F3),,2015-07-23,Burglary Conveyance Unoccup,,,,0,,,,,Risk of Recidivism,8,High,2014-05-16,Risk of Violence,8,High,2014-05-16,2014-08-09,2014-08-10,4,0,85,0,1\r\n5671,daniel culp,daniel,culp,2013-05-12,Male,1983-11-30,32,25 - 45,Caucasian,0,6,0,0,3,0,2013-05-12 12:51:29,2013-05-12 07:01:10,13006766CF10A,2013-05-11,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,15002538CF10A,(F3),0,2015-02-24,Possession Of Alprazolam,2015-02-24,2015-03-06,,0,,,,,Risk of Recidivism,6,Medium,2013-05-12,Risk of Violence,2,Low,2013-05-12,2014-07-10,2014-08-03,3,0,424,0,1\r\n5672,peter mcfield,peter,mcfield,2013-11-25,Male,1979-02-25,37,25 - 45,Other,0,1,0,0,0,-1,2013-11-24 08:53:31,2013-11-25 08:20:59,13022078MM10A,2013-11-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,2013-11-24,2013-11-25,0,0,858,0,0\r\n5673,shannon mccloud,shannon,mccloud,2014-10-26,Male,1983-08-12,32,25 - 45,African-American,0,6,0,0,10,-1,2014-10-25 10:02:48,2014-10-26 01:48:41,14014364CF10A,2014-10-25,,1,F,Felony Driving While Lic Suspd,1,15006625TC10A,(M2),,2015-02-09,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2014-10-26,Risk of Violence,2,Low,2014-10-26,2014-10-25,2014-10-26,10,0,106,1,1\r\n5675,william shaw,william,shaw,2013-08-14,Male,1968-05-17,47,Greater than 45,Caucasian,0,3,0,0,5,0,2013-08-14 05:45:53,2013-08-14 09:05:13,13015381MM10A,2013-08-14,,0,M,Viol Injunct Domestic Violence,1,13015080CF10A,(F2),0,2013-10-29,Aggrav Battery w/Deadly Weapon,2013-10-29,2013-11-10,,1,13015080CF10A,(F2),2013-10-29,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,3,Low,2013-08-14,Risk of Violence,2,Low,2013-08-14,2013-10-29,2013-11-10,5,0,76,1,1\r\n5676,emily vanhuss,emily,vanhuss,2013-01-14,Female,1993-01-17,23,Less than 25,Caucasian,0,7,0,0,0,-1,2013-01-13 04:51:21,2013-01-14 01:37:46,13000785MO10A,2013-01-13,,1,M,Poss Of Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-14,Risk of Violence,5,Medium,2013-01-14,2013-01-13,2013-01-14,0,0,1173,0,0\r\n5677,robert griffin,robert,griffin,2013-10-03,Male,1953-03-06,63,Greater than 45,Caucasian,0,4,0,0,10,0,2013-10-03 02:28:42,2013-10-05 04:18:17,13013891CF10A,2013-10-03,,0,F,Corrupt Public Servant,1,14013119CF10A,(M2),1,2014-09-27,Disorderly Intoxication,2014-09-28,2014-10-28,,1,14013119CF10A,(F3),2014-09-27,Battery on Law Enforc Officer,Risk of Recidivism,4,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-12-12,2013-12-14,10,2,70,0,1\r\n5678,larry motts,larry,motts,2013-05-17,Male,1978-04-01,38,25 - 45,African-American,0,9,1,0,16,-1,2013-05-16 05:17:01,2014-01-13 02:08:20,13007004CF10A,2013-05-16,,1,F,Poss of Cocaine W/I/D/S 1000FT Park,1,15007157CF10A,(F3),1,2015-05-31,Felony Battery w/Prior Convict,2015-06-01,2015-10-13,,1,15007157CF10A,(F3),2015-05-31,Felony Battery (Dom Strang),Risk of Recidivism,9,High,2013-05-17,Risk of Violence,10,High,2013-05-17,2013-05-16,2014-01-13,16,241,744,1,1\r\n5680,armond stephens,armond,stephens,2013-04-28,Male,1983-07-23,32,25 - 45,African-American,0,5,0,0,6,-1,2013-04-27 01:09:18,2013-04-29 03:59:19,13008128MM10A,2013-04-27,,1,M,Battery,1,14003153MM10A,(M2),0,2014-02-23,Disorderly Conduct,2014-02-23,2014-02-23,,0,,,,,Risk of Recidivism,5,Medium,2013-04-28,Risk of Violence,4,Low,2013-04-28,2014-02-23,2014-02-23,6,1,301,0,1\r\n5681,kelsian kelly,kelsian,kelly,2013-12-08,Male,1985-02-15,31,25 - 45,African-American,0,8,0,0,4,-1,2013-12-07 04:12:04,2013-12-31 08:45:57,13016933CF10A,2013-12-07,,1,F,Tampering With Physical Evidence,1,14001057CF10A,(F2),0,2014-01-24,Deliver Cocaine,2014-01-24,2014-02-18,,1,14016345CF10A,(F1),2014-12-06,Attempt Felony Murder,Risk of Recidivism,8,High,2013-12-08,Risk of Violence,3,Low,2013-12-08,2014-01-24,2014-02-18,4,23,47,1,1\r\n5684,rupert lyn,rupert,lyn,2013-04-20,Male,1992-06-10,23,Less than 25,African-American,0,3,0,0,0,0,2013-04-20 02:46:27,2013-04-21 04:15:10,13005684CF10A,2013-04-19,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-20,Risk of Violence,3,Low,2013-04-20,2013-04-20,2013-04-21,0,1,1077,0,0\r\n5685,mario raudales,mario,raudales,2013-05-28,Male,1977-11-04,38,25 - 45,Hispanic,0,5,0,0,1,-1,2013-05-27 06:31:39,2013-09-30 12:05:07,13010139MM10A,2013-05-27,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-28,Risk of Violence,2,Low,2013-05-28,2013-05-27,2013-09-30,1,125,1039,0,0\r\n5686,anne schatzberg,anne,schatzberg,2013-07-29,Female,1968-06-24,47,Greater than 45,Caucasian,0,1,0,0,0,-3,2013-07-26 04:10:44,2013-07-26 06:52:48,13014193MM10A,2013-07-26,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-07-26,2013-07-26,0,0,977,0,0\r\n5687,carlos carballea,carlos,carballea,2014-06-28,Male,1982-12-28,33,25 - 45,Caucasian,0,8,0,0,1,-1,2014-06-27 03:19:07,2014-07-07 06:02:34,14008880CF10A,,2014-06-27,1,F,arrest case no charge,1,14002434MM20A,(M2),,2014-08-03,Petit Theft,,,,0,,,,,Risk of Recidivism,8,High,2014-06-28,Risk of Violence,4,Low,2014-06-28,2014-06-27,2014-07-07,1,9,36,1,1\r\n5689,joseph cioffi,joseph,cioffi,2013-07-05,Male,1993-05-23,22,Less than 25,Caucasian,0,4,0,0,1,-11,2013-06-24 09:31:14,2013-07-03 09:11:19,13008886CF10A,2013-06-24,,11,F,Grand Theft (Motor Vehicle),1,16005176TC20A,(M2),,2016-02-03,Driving while DL Susp / Financial Resp,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-05,Risk of Violence,5,Medium,2013-07-05,2013-06-24,2013-07-03,1,0,943,1,0\r\n5691,thomas bickis,thomas,bickis,2013-01-24,Male,1989-07-13,26,25 - 45,Caucasian,0,3,0,0,1,318,2013-12-08 10:09:26,2013-12-16 09:14:25,12015728MM10A,2012-07-31,,177,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-24,Risk of Violence,4,Low,2013-01-24,2013-12-08,2013-12-16,1,0,318,0,0\r\n5692,tariq raoui,tariq,raoui,2013-12-31,Male,1976-03-25,40,25 - 45,Caucasian,0,1,0,0,0,-1,2013-12-30 11:04:35,2013-12-31 01:24:57,13024006MM10A,2013-12-30,,1,M,Battery,1,14004375MM40A,(M2),,2014-09-19,Solicit ProstitutionViolation,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-31,Risk of Violence,1,Low,2013-12-31,2015-04-27,2015-04-27,0,0,262,1,1\r\n5693,emmanuel colson,emmanuel,colson,2013-04-25,Male,1979-10-30,36,25 - 45,African-American,10,7,0,0,14,-1,2013-04-24 06:26:20,2013-10-15 03:40:43,13005864CF10A,2013-04-24,,1,F,Burglary Conveyance Unoccup,1,13016268CF10A,(M1),0,2013-11-22,Possess Cannabis/20 Grams Or Less,2013-11-22,2014-11-25,,0,,,,,Risk of Recidivism,7,Medium,2013-04-25,Risk of Violence,5,Medium,2013-04-25,2013-11-22,2014-11-25,14,173,211,1,1\r\n5695,maria sherman,maria,sherman,2013-05-07,Female,1950-07-29,65,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-07 02:20:22,2013-05-08 03:00:01,13008835MM10A,2013-05-06,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-07,Risk of Violence,1,Low,2013-05-07,2013-05-07,2013-05-08,0,1,1060,0,0\r\n5696,johnnie stevenson,johnnie,stevenson,2013-09-04,Male,1971-12-18,44,25 - 45,Caucasian,0,5,0,0,4,-231,2013-01-16 09:26:36,2013-01-18 08:55:48,13001146MM10A,2013-01-16,,231,M,Battery,1,14006119MM10A,(M1),105,2014-02-24,Viol Injunct Domestic Violence,2014-06-09,2014-07-18,,0,,,,,Risk of Recidivism,5,Medium,2013-09-04,Risk of Violence,5,Medium,2013-09-04,2014-06-09,2014-07-18,4,0,173,1,1\r\n5697,taketha lherisse,taketha,lherisse,2013-08-24,Female,1993-05-05,22,Less than 25,African-American,0,3,0,0,0,-1,2013-08-23 05:49:07,2013-08-24 08:38:31,13016167MM10A,2013-08-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-24,Risk of Violence,4,Low,2013-08-24,2013-08-23,2013-08-24,0,0,951,0,0\r\n5698,glenn nieves,glenn,nieves,2013-04-01,Male,1981-05-19,34,25 - 45,Hispanic,0,1,0,0,0,0,2013-04-01 04:50:00,2013-04-01 06:11:43,13006252MM10A,2013-04-01,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-04-01,2013-04-01,0,0,1096,0,0\r\n5699,concepcion leon,concepcion,leon,2013-11-03,Female,1977-11-13,38,25 - 45,Hispanic,0,1,0,0,0,-1,2013-11-02 06:52:51,2013-11-03 04:33:47,13015289CF10A,2013-11-01,,2,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-03,Risk of Violence,1,Low,2013-11-03,2013-11-02,2013-11-03,0,0,880,0,0\r\n5700,agostina frasca,agostina,frasca,2013-02-19,Female,1990-03-12,26,25 - 45,Caucasian,0,3,0,0,4,-2,2013-02-17 11:29:04,2013-02-18 01:22:48,13002443CF10A,2013-02-17,,2,F,Possession Of Alprazolam,1,13011579MM10A,(M1),,2013-05-07,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-19,Risk of Violence,3,Low,2013-02-19,2013-09-19,2013-10-09,4,0,77,1,1\r\n5701,christopher gonzalez,christopher,gonzalez,2014-03-16,Male,1995-08-12,20,Less than 25,Hispanic,0,4,0,0,0,-1,2014-03-15 07:16:02,2014-04-07 08:32:38,14004514MM10A,2014-03-15,,1,M,Battery,1,14005723CF10A,(F3),1,2014-04-24,Possession Of Clonazepam,2014-04-25,2014-06-14,,0,,,,,Risk of Recidivism,4,Low,2014-03-16,Risk of Violence,6,Medium,2014-03-16,2014-03-15,2014-04-07,0,22,39,1,1\r\n5703,pedro lopezgaya,pedro,lopezgaya,2013-04-29,Male,1966-06-12,49,Greater than 45,Hispanic,0,1,0,0,0,-3,2013-04-26 11:44:31,2013-04-27 01:18:43,13006015CF10A,2013-04-26,,3,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-26,2013-04-27,0,0,1068,0,0\r\n5707,lee williams,lee,williams,2014-02-25,Male,1959-12-31,56,Greater than 45,African-American,0,4,0,0,7,-167,2013-09-11 05:00:11,2013-10-30 09:57:26,13012848CF10A,2013-09-11,,167,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-25,Risk of Violence,4,Low,2014-02-25,2015-09-28,2015-10-20,7,0,580,0,0\r\n5711,louis simon,louis,simon,2013-12-04,Male,1963-12-19,52,Greater than 45,Caucasian,0,9,0,0,2,0,2013-12-04 04:38:52,2013-12-09 03:02:11,13016762CF10A,2013-12-04,,0,F,Grand Theft in the 3rd Degree,1,14003295CF10A,(F1),0,2014-03-08,Take Copper Other Metal Intrf/Damg Utility,2014-03-08,2015-01-08,,0,,,,,Risk of Recidivism,9,High,2013-12-04,Risk of Violence,1,Low,2013-12-04,2014-03-08,2015-01-08,2,5,94,1,1\r\n5713,david liberis,david,liberis,2013-01-10,Male,1990-07-30,25,25 - 45,Other,0,2,0,0,2,-1,2013-01-09 08:52:21,2013-01-10 08:27:08,13000532MM10A,2013-01-09,,1,M,Battery,1,14045583TC10A,(M2),0,2014-12-27,Reckless Driving,2014-12-27,2014-12-28,,0,,,,,Risk of Recidivism,2,Low,2013-01-10,Risk of Violence,3,Low,2013-01-10,2014-12-09,2014-12-10,2,0,698,0,1\r\n5716,brisley pierre,brisley,pierre,2014-02-16,Male,1981-10-19,34,25 - 45,African-American,0,1,0,0,5,-1,2014-02-15 05:36:32,2014-02-19 07:34:06,14002167CF10A,2014-02-15,,1,F,Agg Assault W/int Com Fel Dome,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-16,Risk of Violence,2,Low,2014-02-16,2014-02-15,2014-02-19,5,3,775,0,0\r\n5717,winston hewitt,winston,hewitt,2014-02-01,Male,1982-09-23,33,25 - 45,African-American,0,1,0,0,1,-1,2014-01-31 07:44:13,2014-02-01 10:06:49,14001736MM10A,2014-01-31,,1,M,Battery,1,15010680TC10A,(M2),,2015-03-20,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-01,Risk of Violence,2,Low,2014-02-01,2014-01-31,2014-02-01,1,0,412,1,1\r\n5719,brushod goodrum,brushod,goodrum,2014-01-28,Male,1995-04-14,21,Less than 25,African-American,0,7,1,2,1,-1,2014-01-27 07:40:16,2014-01-28 01:36:11,14001185CF10A,2014-01-27,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-28,Risk of Violence,9,High,2014-01-28,2014-08-31,2014-09-17,1,0,215,0,0\r\n5722,richard campbell,richard,campbell,2013-10-24,Male,1969-10-19,46,Greater than 45,African-American,0,4,0,0,9,-1,2013-10-23 11:12:17,2013-10-28 12:40:39,13014822CF10A,2013-10-23,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-24,Risk of Violence,2,Low,2013-10-24,2013-10-23,2013-10-28,9,4,890,0,0\r\n5723,carleb charles,carleb,charles,2013-04-29,Male,1993-10-11,22,Less than 25,African-American,0,6,0,0,2,250,2014-01-04 11:06:47,2014-03-24 09:35:08,13002797MM10A,2013-01-14,,105,M,Battery,1,14000176MM10A,(M1),0,2014-01-04,Resist/Obstruct W/O Violence,2014-01-04,2014-03-24,,1,14000176MM10A,(M2),2014-01-04,Assault,Risk of Recidivism,6,Medium,2013-04-29,Risk of Violence,6,Medium,2013-04-29,2014-01-04,2014-03-24,2,0,250,1,1\r\n5724,malcolm yount,malcolm,yount,2013-05-03,Male,1959-02-21,57,Greater than 45,Caucasian,0,4,0,0,1,-1,2013-05-02 02:18:14,2013-05-03 07:15:08,13008536MM10A,2013-05-02,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-03,Risk of Violence,3,Low,2013-05-03,2015-01-01,2015-01-13,1,0,608,0,0\r\n5725,dwayne palmore,dwayne,palmore,2013-03-09,Male,1993-10-14,22,Less than 25,African-American,0,3,0,1,2,0,2013-03-09 03:05:41,2013-03-09 08:16:52,13003504CF10A,2013-03-09,,0,F,Possession of Cocaine,1,13007689CF10A,(M1),0,2013-05-30,Unlaw Use False Name/Identity,2013-05-30,2013-09-25,,0,,,,,Risk of Recidivism,3,Low,2013-03-09,Risk of Violence,6,Medium,2013-03-09,2013-05-30,2013-09-25,2,0,82,1,1\r\n5726,eileen miller,eileen,miller,2014-07-06,Female,1967-09-25,48,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-07-05 06:25:59,2014-07-07 01:21:30,14024699MU10A,2014-07-05,,1,M,Driving Under The Influence,1,14035910MU10A,(M1),0,2014-10-02,Driving Under The Influence,2014-10-02,2014-11-18,,0,,,,,Risk of Recidivism,1,Low,2014-07-06,Risk of Violence,1,Low,2014-07-06,2014-10-02,2014-11-18,1,1,88,1,1\r\n5727,michael stephenson,michael,stephenson,2013-05-23,Male,1975-07-16,40,25 - 45,African-American,0,5,0,0,21,-1,2013-05-22 07:09:03,2013-06-21 05:30:00,13007315CF10A,2013-05-22,,1,F,Felony Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-23,Risk of Violence,3,Low,2013-05-23,2013-05-22,2013-06-21,21,29,1044,0,0\r\n5728,shameka wright,shameka,wright,2013-03-16,Female,1985-06-13,30,25 - 45,African-American,0,2,0,0,1,-1,2013-03-15 11:21:37,2013-03-16 07:55:41,12016112CF10A,,2013-03-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-16,Risk of Violence,1,Low,2013-03-16,2013-03-15,2013-03-16,1,0,1112,0,0\r\n5729,michael woodson,michael,woodson,2013-12-17,Male,1994-12-28,21,Less than 25,Caucasian,0,7,1,0,4,-1,2013-12-16 03:44:25,2014-01-18 05:14:41,13023279MM10A,2013-12-16,,1,M,Battery,1,14009393CF10A,(F2),0,2014-07-09,Robbery / No Weapon,2014-07-09,2015-03-08,,1,14009393CF10A,(F2),2014-07-09,Robbery / No Weapon,Risk of Recidivism,7,Medium,2013-12-17,Risk of Violence,6,Medium,2013-12-17,2014-07-09,2015-03-08,4,32,204,1,1\r\n5730,sylena mayes,sylena,mayes,2014-02-09,Female,1976-05-24,39,25 - 45,African-American,0,10,2,0,22,-1,2014-02-08 09:20:45,2014-02-12 09:20:16,14001779CF10A,2014-02-08,,1,F,Possession of Cocaine,1,14001331MM40A,(M1),,2014-03-02,Resist/Obstruct W/O Violence,,,,1,15007147CF10A,(F2),2015-05-24,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2014-02-09,Risk of Violence,3,Low,2014-02-09,2014-02-08,2014-02-12,22,3,21,1,1\r\n5731,cornelius rafferty,cornelius,rafferty,2014-10-13,Male,1988-06-28,27,25 - 45,Caucasian,0,6,0,0,13,-175,2014-04-21 09:38:34,2014-06-30 11:33:08,14002909CF10A,,2014-07-16,89,F,arrest case no charge,1,15013690CF10A,(F3),,2015-10-21,Poss Pyrrolidinovalerophenone,,,,0,,,,,Risk of Recidivism,6,Medium,2014-10-13,Risk of Violence,3,Low,2014-10-13,2014-04-21,2014-06-30,13,0,373,1,1\r\n5732,samantha keeble,samantha,keeble,2013-02-14,Female,1982-07-09,33,25 - 45,Caucasian,0,6,0,0,0,-1,2013-02-13 05:26:18,2013-02-14 09:27:16,13003172MM10A,2013-02-13,,1,M,Possess Cannabis/20 Grams Or Less,1,13015513MM10A,(M1),,2013-06-11,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-14,Risk of Violence,3,Low,2013-02-14,2015-06-01,2015-07-06,0,0,117,1,1\r\n5733,nadege fixalant,nadege,fixalant,2013-03-22,Male,1991-11-03,24,Less than 25,African-American,0,3,0,0,0,0,2013-03-22 12:42:13,2013-03-22 01:31:13,13004083CF10A,2013-03-20,,2,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-22,Risk of Violence,4,Low,2013-03-22,2013-03-22,2013-03-22,0,0,1106,0,0\r\n5735,yonel faton,yonel,faton,2013-01-23,Male,1972-05-16,43,25 - 45,African-American,0,1,0,0,0,-1,2013-01-22 06:16:12,2013-01-23 10:40:31,13001023CF10A,2013-01-22,,1,F,Contradict Statement,1,14015611TC30A,(M2),,2014-02-06,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-23,Risk of Violence,1,Low,2013-01-23,2013-01-22,2013-01-23,0,0,379,1,1\r\n5736,susan abrames,susan,abrames,2013-10-19,Female,1971-02-21,45,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-19 05:10:30,2013-10-20 08:38:16,13019810MM10A,2013-10-19,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-19,Risk of Violence,1,Low,2013-10-19,2013-10-19,2013-10-20,0,1,895,0,0\r\n5738,ornan antoine,ornan,antoine,2013-09-09,Male,1964-06-14,51,Greater than 45,African-American,0,3,0,0,3,-18,2013-08-22 02:08:31,2013-08-24 05:03:08,13011842CF10A,2013-08-22,,18,F,DWI w/Inj Susp Lic / Habit Off,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-09,Risk of Violence,2,Low,2013-09-09,2013-08-22,2013-08-24,3,0,935,0,0\r\n5739,olga munnings,olga,munnings,2014-06-12,Female,1981-03-15,35,25 - 45,African-American,0,2,0,0,2,-95,2014-03-09 04:43:09,2014-04-09 10:37:18,14003341CF10A,2014-03-09,,95,F,Poss Pyrrolidinovalerophenone,1,14015156MM10A,(M1),0,2014-10-17,Possess Cannabis/20 Grams Or Less,2014-10-17,2014-11-10,,0,,,,,Risk of Recidivism,2,Low,2014-06-12,Risk of Violence,1,Low,2014-06-12,2014-10-17,2014-11-10,2,0,127,1,1\r\n5740,shaun strachan,shaun,strachan,2014-01-28,Male,1984-09-23,31,25 - 45,African-American,0,7,0,0,9,-1,2014-01-27 10:03:15,2014-01-28 08:12:54,14001513MM10A,2014-01-27,,1,M,Battery,1,15020354TC40A,(M2),,2015-03-28,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-28,Risk of Violence,3,Low,2014-01-28,2015-11-03,2015-11-04,9,0,424,1,1\r\n5741,aleksandr do,aleksandr,do,2013-05-08,Male,1988-09-01,27,25 - 45,Caucasian,0,2,0,0,0,-1,2013-05-07 11:30:29,2013-05-09 04:30:45,13008830MM10A,2013-05-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-08,Risk of Violence,3,Low,2013-05-08,2013-05-07,2013-05-09,0,1,1059,0,0\r\n5742,joseph lopez,joseph,lopez,2014-01-17,Male,1983-06-21,32,25 - 45,African-American,0,2,0,0,1,-1,2014-01-16 11:12:39,2014-01-17 09:32:03,13015447CF10A,,2014-01-16,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-17,Risk of Violence,3,Low,2014-01-17,2014-01-16,2014-01-17,1,0,805,0,0\r\n5743,wayne jensen,wayne,jensen,2013-08-26,Male,1966-07-22,49,Greater than 45,Caucasian,0,1,0,0,0,-3,2013-08-23 11:31:53,2013-08-24 02:16:48,13016182MM10A,2013-08-23,,3,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-26,Risk of Violence,1,Low,2013-08-26,2013-08-23,2013-08-24,0,0,949,0,0\r\n5745,kelvin howard,kelvin,howard,2013-08-19,Male,1986-06-10,29,25 - 45,African-American,0,3,0,0,2,-1,2013-08-18 07:04:42,2013-09-14 08:47:48,13011585CF10A,2013-08-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-19,Risk of Violence,2,Low,2013-08-19,2013-08-18,2013-09-14,2,26,956,0,0\r\n5748,wesley anderson,wesley,anderson,2014-02-06,Male,1992-09-06,23,Less than 25,African-American,0,6,1,0,2,-1,2014-02-05 05:49:02,2014-02-06 09:10:58,14001650CF10A,2014-02-05,,1,F,Aggravated Battery / Pregnant,1,15004893CF10A,(F3),,2014-02-12,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-06,Risk of Violence,5,Medium,2014-02-06,2015-04-14,2015-08-14,2,0,6,1,1\r\n5749,mories abdo,mories,abdo,2013-02-16,Male,1985-10-09,30,25 - 45,Asian,0,3,0,0,6,-1,2013-02-15 04:08:23,2013-02-16 01:20:46,13003356MM10A,2013-02-15,,1,M,Battery,1,15001199MM30A,(M1),,2015-07-02,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-16,Risk of Violence,2,Low,2013-02-16,2013-02-15,2013-02-16,6,0,866,1,0\r\n5750,rodney lewis,rodney,lewis,2013-06-13,Male,1960-06-05,55,Greater than 45,African-American,0,6,0,0,12,-69,2013-04-05 02:27:27,2013-06-13 11:42:07,13004885CF10A,2013-04-04,,70,F,Possession of Cocaine,1,14004500CF10A,(F2),0,2014-03-31,Aggravated Battery / Pregnant,2014-03-31,2014-06-17,,1,14004500CF10A,(F2),2014-03-31,Aggravated Battery / Pregnant,Risk of Recidivism,6,Medium,2013-06-13,Risk of Violence,2,Low,2013-06-13,2014-03-31,2014-06-17,12,0,291,1,1\r\n5753,christopher ayala,christopher,ayala,2013-01-19,Male,1985-10-17,30,25 - 45,Caucasian,0,4,0,0,0,0,2013-01-19 02:18:46,2013-03-16 11:21:32,13001326MM10A,2013-01-18,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-19,Risk of Violence,5,Medium,2013-01-19,2014-07-16,2014-07-23,0,56,543,0,0\r\n5754,dennis harris,dennis,harris,2014-11-25,Male,1981-09-24,34,25 - 45,African-American,0,4,0,0,13,-1,2014-11-24 07:10:14,2014-11-25 02:33:36,14015804CF10A,2014-11-24,,1,F,Possession Of Alprazolam,1,16003047MM10A,(M2),0,2016-03-13,Unlaw LicTag/Sticker Attach,2016-03-13,2016-03-14,,0,,,,,Risk of Recidivism,4,Low,2014-11-25,Risk of Violence,1,Low,2014-11-25,2016-03-13,2016-03-14,13,0,474,1,1\r\n5755,jean korkis,jean,korkis,2013-07-26,Male,1959-06-05,56,Greater than 45,Caucasian,0,1,0,0,2,-39,2013-06-17 02:41:04,2013-06-18 06:41:41,13008550CF10A,2013-06-17,,39,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-26,Risk of Violence,1,Low,2013-07-26,2013-06-17,2013-06-18,2,0,980,0,0\r\n5756,rafael mondelus,rafael,mondelus,2013-09-25,Male,1982-08-25,33,25 - 45,African-American,0,6,0,0,4,0,2013-09-25 12:23:32,2013-09-25 08:09:19,13013442CF10A,2013-09-24,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-25,Risk of Violence,2,Low,2013-09-25,2013-11-17,2013-11-18,4,0,53,0,0\r\n5757,seccunda davis,seccunda,davis,2013-08-19,Male,1987-05-13,28,25 - 45,African-American,0,2,0,0,1,-1,2013-08-18 07:25:24,2013-08-19 09:01:42,13015644MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-19,Risk of Violence,3,Low,2013-08-19,2013-08-18,2013-08-19,1,0,956,0,0\r\n5759,brandon mccutchen,brandon,mccutchen,2013-03-22,Male,1987-03-04,29,25 - 45,African-American,0,8,0,0,1,-1,2013-03-21 05:39:06,2013-05-01 02:42:24,13004341CF10A,2013-03-21,,1,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-22,Risk of Violence,8,High,2013-03-22,2013-03-21,2013-05-01,1,40,1106,0,0\r\n5760,stuart velky,stuart,velky,2014-03-16,Male,1978-01-13,38,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-15 11:22:26,2014-03-16 08:27:01,14010440MU10A,2014-03-15,,1,M,DUI Blood Alcohol Above 0.20,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-16,0,0,747,0,0\r\n5761,ian mullarky,ian,mullarky,2014-03-25,Male,1978-12-19,37,25 - 45,Caucasian,0,3,0,0,0,-1,2014-03-24 09:41:54,2014-03-25 08:54:16,14004178CF10A,2014-03-24,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-25,Risk of Violence,2,Low,2014-03-25,2014-03-24,2014-03-25,0,0,738,0,0\r\n5762,danielle hahn,danielle,hahn,2013-11-27,Female,1982-05-05,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-26 11:39:17,2013-11-27 09:26:57,13022218MM10A,2013-11-26,,1,M,DUI Property Damage/Injury,1,14025687TC20A,(M2),,2014-04-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-27,Risk of Violence,1,Low,2013-11-27,2016-01-18,2016-01-19,0,0,126,1,1\r\n5763,ray ortiz,ray,ortiz,2013-02-24,Male,1985-11-25,30,25 - 45,Hispanic,0,2,0,0,0,0,2013-02-24 04:24:51,2013-02-24 06:38:51,13002815CF10A,2013-02-24,,0,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-24,Risk of Violence,2,Low,2013-02-24,2013-02-24,2013-02-24,0,0,1132,0,0\r\n5765,cornelius green,cornelius,green,2013-04-09,Male,1964-05-18,51,Greater than 45,African-American,1,9,0,1,19,-1,2013-04-08 06:47:45,2013-04-21 11:55:21,13005068CF10A,2013-04-08,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-09,Risk of Violence,4,Low,2013-04-09,2014-03-19,2014-03-25,19,12,344,0,0\r\n5768,henry rumph,henry,rumph,2013-10-24,Male,1950-11-16,65,Greater than 45,African-American,0,5,0,0,7,-1,2013-10-23 04:20:47,2013-10-24 02:07:45,13014809CF10A,2013-10-23,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-24,Risk of Violence,1,Low,2013-10-24,2015-06-23,2015-07-14,7,0,607,0,0\r\n5769,naita james,naita,james,2013-12-16,Female,1983-09-08,32,25 - 45,African-American,0,1,0,0,1,-1,2013-12-15 05:33:45,2013-12-16 01:04:00,13023234MM10A,2013-12-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,1,0,837,0,0\r\n5772,thomas riedy,thomas,riedy,2013-04-08,Male,1977-12-30,38,25 - 45,Caucasian,0,7,0,0,5,-2,2013-04-06 12:29:47,2013-04-06 12:59:49,13004915CF10A,2013-04-05,,3,F,Grand Theft in the 3rd Degree,1,13005835CF10A,(F3),0,2013-04-23,Tampering With Physical Evidence,2013-04-23,2013-06-01,,0,,,,,Risk of Recidivism,7,Medium,2013-04-08,Risk of Violence,2,Low,2013-04-08,2013-04-23,2013-06-01,5,0,15,1,1\r\n5773,elijah horne,elijah,horne,2013-01-17,Male,1980-11-27,35,25 - 45,African-American,0,4,0,0,1,-1,2013-01-16 11:55:37,2013-01-17 07:15:00,13000782CF10A,2013-01-16,,1,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-17,Risk of Violence,3,Low,2013-01-17,2015-10-27,2015-10-27,1,0,1013,0,0\r\n5774,roger barteau,roger,barteau,2013-06-12,Male,1958-07-10,57,Greater than 45,Caucasian,0,1,0,0,1,-26,2013-05-17 10:57:12,2013-05-18 04:35:45,13007075CF10A,2013-05-17,,26,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-12,Risk of Violence,1,Low,2013-06-12,2013-05-17,2013-05-18,1,0,1024,0,0\r\n5776,michael cortez,michael,cortez,2013-01-24,Male,1990-04-05,26,25 - 45,Caucasian,0,3,0,0,1,0,2013-01-24 12:37:35,2013-01-24 10:48:46,13001101CF10A,,2013-01-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-01-24,2013-01-24,1,0,1163,0,0\r\n5778,lorraine francisco,lorraine,francisco,2014-09-17,Female,1992-11-22,23,Less than 25,Hispanic,0,8,3,1,7,-228,2014-02-01 04:16:53,2014-02-02 08:56:00,14001216MM40A,2014-03-02,,199,M,Battery,1,15005890CF10A,(M1),0,2015-05-05,Battery,2015-05-05,2015-06-10,,1,15005890CF10A,(M1),2015-05-05,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2014-09-17,Risk of Violence,5,Medium,2014-09-17,2015-05-05,2015-06-10,7,0,230,1,1\r\n5779,ralph johnson,ralph,johnson,2014-05-06,Female,1979-10-12,36,25 - 45,African-American,2,6,0,0,4,-1,2014-05-05 07:23:18,2014-05-07 03:34:51,14007449MM10A,2014-05-05,,1,M,Battery,1,15000954MM20A,(M2),,2015-03-15,Trespass Struct/Conveyance,,,,1,15010665MM10A,(M2),2015-09-10,Assault,Risk of Recidivism,6,Medium,2014-05-06,Risk of Violence,3,Low,2014-05-06,2014-05-05,2014-05-07,4,1,313,1,1\r\n5782,elizabeth lopez,elizabeth,lopez,2013-06-12,Female,1982-11-02,33,25 - 45,Hispanic,0,4,0,0,2,-10,2013-06-02 07:34:41,2013-06-11 09:15:36,13007808CF10A,2013-06-02,,10,F,Poss Alprazolam W/int Sell/Del,1,14004026CF10A,(F3),0,2014-03-21,Possession Of Heroin,2014-03-21,2014-03-22,,0,,,,,Risk of Recidivism,4,Low,2013-06-12,Risk of Violence,2,Low,2013-06-12,2013-09-17,2014-01-02,2,0,97,0,1\r\n5784,daniel murphy,daniel,murphy,2014-12-12,Male,1981-04-11,35,25 - 45,Caucasian,0,5,0,0,3,-1,2014-12-11 04:17:47,2014-12-12 08:48:06,14016475CF10A,2014-12-11,,1,F,Possession of Cocaine,1,14018078MM10A,(M1),1,2014-12-26,Battery,2014-12-27,2015-02-20,,1,14018078MM10A,(M1),2014-12-26,Battery,Risk of Recidivism,5,Medium,2014-12-12,Risk of Violence,3,Low,2014-12-12,2015-03-13,2015-04-27,3,0,14,1,1\r\n5785,wilny marc,wilny,marc,2013-12-13,Male,1982-09-17,33,25 - 45,African-American,0,1,0,0,0,-1,2013-12-12 03:14:03,2013-12-13 01:14:04,13017194CF10A,2013-12-12,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-13,Risk of Violence,1,Low,2013-12-13,2015-04-07,2015-04-14,0,0,480,0,0\r\n5787,teresa hoagland,teresa,hoagland,2013-05-05,Male,1969-03-04,47,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-05 04:15:36,2013-05-06 12:09:26,13008693MM10A,2013-05-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-05,Risk of Violence,1,Low,2013-05-05,2013-05-05,2013-05-06,0,1,1062,0,0\r\n5789,joana gomezmartinez,joana,gomezmartinez,2013-08-24,Female,1962-06-24,53,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-08-23 05:20:55,2013-08-24 02:07:54,13016181MM10A,2013-08-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-24,Risk of Violence,1,Low,2013-08-24,2013-08-23,2013-08-24,0,0,951,0,0\r\n5790,sunil mooken,sunil,mooken,2014-03-05,Male,1985-01-27,31,25 - 45,Other,0,5,0,0,6,,,,12007246CF10A,2012-05-15,,659,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-05,Risk of Violence,4,Low,2014-03-05,,,6,0,758,0,0\r\n5792,daniel mandel,daniel,mandel,2014-06-26,Male,1980-12-24,35,25 - 45,Caucasian,0,4,0,0,1,-15,2014-06-11 01:41:42,2014-06-15 07:38:16,14009265MM10A,2014-06-10,,16,M,Assault,1,16004749TC30A,(M2),,2016-01-13,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,4,Low,2014-06-26,Risk of Violence,1,Low,2014-06-26,2014-06-11,2014-06-15,1,0,566,1,1\r\n5793,tisa spears,tisa,spears,2014-04-30,Female,1979-11-02,36,25 - 45,African-American,0,3,0,0,1,-1,2014-04-29 07:18:20,2014-04-30 01:35:33,14005932CF10A,2014-04-29,,1,F,Possession of Cocaine,1,15007369MM10A,(M2),0,2015-07-10,Trespass Struct/Conveyance,2015-07-10,2015-08-02,,1,15012057CF10A,(F3),2015-09-17,Aggravated Assault W/Dead Weap,Risk of Recidivism,3,Low,2014-04-30,Risk of Violence,2,Low,2014-04-30,2014-08-28,2014-09-10,1,0,120,0,1\r\n5795,kristen murphy,kristen,murphy,2013-12-26,Female,1991-04-19,25,25 - 45,Caucasian,0,3,0,0,0,-1,2013-12-25 01:14:05,2013-12-26 01:09:50,13023764MM10A,2013-12-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-26,Risk of Violence,3,Low,2013-12-26,2013-12-25,2013-12-26,0,0,827,0,0\r\n5797,alfred melchor,alfred,melchor,2013-03-20,Male,1963-10-27,52,Greater than 45,Hispanic,0,6,0,0,10,0,2013-03-20 02:15:51,2013-08-16 04:04:46,13005391CF10A,2013-03-19,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-20,Risk of Violence,7,Medium,2013-03-20,2014-10-05,2014-10-08,10,149,564,0,0\r\n5799,eliezer rosario,eliezer,rosario,2013-09-10,Male,1992-05-18,23,Less than 25,Hispanic,0,7,0,0,3,249,2014-05-17 12:45:30,2015-02-18 10:30:00,12023915MM10A,2012-11-22,,292,M,Battery,1,14007817CF10A,(F3),0,2014-05-17,Felony Battery w/Prior Convict,2014-05-17,2015-02-18,,1,14008030MM10A,(M1),2014-05-17,Battery,Risk of Recidivism,7,Medium,2013-09-10,Risk of Violence,8,High,2013-09-10,2014-05-17,2015-02-18,3,0,249,1,1\r\n5800,kayode kasali,kayode,kasali,2014-01-02,Male,1982-03-31,34,25 - 45,African-American,0,3,0,0,7,-245,2013-05-02 05:02:48,2013-05-10 01:12:23,13023769MM10A,2013-09-14,,110,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-02,Risk of Violence,2,Low,2014-01-02,2013-05-02,2013-05-10,7,0,820,0,0\r\n5801,christopher sullivan,christopher,sullivan,2014-10-31,Male,1964-12-12,51,Greater than 45,Caucasian,0,3,0,0,6,0,2014-10-31 03:07:12,2014-11-02 09:34:32,14014642CF10A,2014-10-31,,0,F,Possession of Cocaine,1,14014929CF10A,(F3),0,2014-11-06,Possession of Cocaine,2014-11-06,2014-12-09,,0,,,,,Risk of Recidivism,3,Low,2014-10-31,Risk of Violence,2,Low,2014-10-31,2014-11-06,2014-12-09,6,2,6,1,1\r\n5804,fabian chambers,fabian,chambers,2014-10-27,Male,1991-07-21,24,Less than 25,African-American,0,8,0,4,8,-1,2014-10-26 10:28:28,2015-05-29 07:52:57,14014405CF10A,2014-10-26,,1,F,Grand Theft (Motor Vehicle),1,15009970CF10A,(F3),,2015-08-02,Fraudulent Use Credit Card,,,,0,,,,,Risk of Recidivism,8,High,2014-10-27,Risk of Violence,8,High,2014-10-27,2014-10-26,2015-05-29,8,214,279,1,1\r\n5806,anthony vitiello,anthony,vitiello,2014-04-30,Male,1983-10-10,32,25 - 45,Caucasian,0,2,0,0,0,-1,2014-04-29 07:01:50,2014-04-30 01:40:29,14005962CF10A,2014-04-29,,1,F,Possession Burglary Tools,1,15001695CF10A,(F3),,2014-11-30,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,2,Low,2014-04-30,Risk of Violence,1,Low,2014-04-30,2014-12-04,2015-01-12,0,0,214,1,1\r\n5808,lovett shazier,lovett,shazier,2013-04-20,Male,1973-01-23,43,25 - 45,African-American,0,7,0,0,8,-1,2013-04-19 08:41:22,2014-04-03 06:23:19,13005611CF10A,2013-04-19,,1,F,Felony Petit Theft,1,15004772CF10A,(M2),1,2015-04-10,Trespass Struct/Conveyance,2015-04-11,2015-06-24,,0,,,,,Risk of Recidivism,7,Medium,2013-04-20,Risk of Violence,5,Medium,2013-04-20,2014-04-03,2014-04-18,8,363,720,1,1\r\n5809,thelbert brayboy,thelbert,brayboy,2013-02-05,Male,1970-11-17,45,Greater than 45,African-American,1,7,0,1,20,-1,2013-02-04 07:35:17,2013-03-23 05:13:19,94002444TC20A,,2013-02-05,0,M,arrest case no charge,1,15004458CF10A,(F2),0,2015-04-05,S/M/D/P/W/Int 1000 Sch/Child C,2015-04-05,2015-05-08,,0,,,,,Risk of Recidivism,7,Medium,2013-02-05,Risk of Violence,2,Low,2013-02-05,2015-04-05,2015-05-08,20,46,789,1,0\r\n5810,david heller,david,heller,2014-05-27,Male,1974-01-24,42,25 - 45,African-American,0,5,0,0,10,-1,2014-05-26 11:28:58,2014-05-27 08:41:35,14041804TC30A,2014-05-10,,17,M,Driving License Suspended,1,15009060MM10A,(M1),132,2015-03-29,Battery,2015-08-08,2015-08-15,,1,15009060MM10A,(M1),2015-03-29,Battery,Risk of Recidivism,5,Medium,2014-05-27,Risk of Violence,1,Low,2014-05-27,2014-06-26,2014-06-27,10,0,30,0,1\r\n5811,darryl hicks,darryl,hicks,2014-10-14,Male,1993-11-27,22,Less than 25,African-American,0,7,0,0,1,-1,2014-10-13 05:23:51,2014-10-19 09:32:41,14013803CF10A,2014-10-13,,1,F,Grand Theft in the 3rd Degree,1,15010537CF10A,(F3),,2015-08-14,Possession of Cocaine,,,,0,,,,,Risk of Recidivism,7,Medium,2014-10-14,Risk of Violence,5,Medium,2014-10-14,2014-10-13,2014-10-19,1,5,304,1,1\r\n5812,lattee bryant,lattee,bryant,2013-10-16,Male,1966-09-13,49,Greater than 45,African-American,0,4,0,0,4,-26,2013-09-20 05:43:27,2013-09-21 09:04:42,13013261CF10A,2013-09-20,,26,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-16,Risk of Violence,1,Low,2013-10-16,2014-01-23,2014-02-13,4,0,99,0,0\r\n5813,brandon jones,brandon,jones,2014-12-20,Male,1973-08-05,42,25 - 45,African-American,0,1,0,0,0,-3,2014-12-17 10:52:56,2015-01-20 09:05:50,14016711CF10A,2014-12-16,,4,F,Possession Of Heroin,1,15001315CF10A,(F2),0,2015-01-28,Poss Wep Conv Felon,2015-01-28,2015-03-02,,0,,,,,Risk of Recidivism,1,Low,2014-12-20,Risk of Violence,1,Low,2014-12-20,2015-01-28,2015-03-02,0,31,39,1,1\r\n5814,michael ramos,michael,ramos,2014-11-20,Male,1975-08-30,40,25 - 45,Caucasian,0,8,0,0,0,-1,2014-11-19 03:55:33,2014-12-19 01:16:35,14016534MM10A,2014-11-19,,1,M,Petit Theft,1,15001771CF10A,(F2),,2015-02-07,Agg Battery Grt/Bod/Harm,,,,1,15001771CF10A,(F2),2015-02-07,Agg Battery Grt/Bod/Harm,Risk of Recidivism,8,High,2014-11-20,Risk of Violence,10,High,2014-11-20,2014-11-19,2014-12-19,0,29,79,1,1\r\n5816,david bennie,david,bennie,2013-02-12,Male,1990-11-26,25,25 - 45,African-American,0,7,1,0,2,-1,2013-02-11 11:27:29,2013-02-12 08:21:51,13002126CF10A,2013-02-11,,1,F,Aggravated Assault W/dead Weap,1,13005711CF10A,(F3),1,2013-04-20,Uttering a Forged Instrument,2013-04-21,2013-04-22,,0,,,,,Risk of Recidivism,7,Medium,2013-02-12,Risk of Violence,3,Low,2013-02-12,2014-07-10,2014-12-30,2,0,67,1,1\r\n5817,kevin heidegger,kevin,heidegger,2013-12-28,Male,1991-02-08,25,25 - 45,Caucasian,0,5,0,0,0,-1,2013-12-27 01:59:31,2013-12-29 07:34:01,13023896MM10A,2013-12-26,,2,M,Viol Injunct Domestic Violence,1,14002890MM20A,(M2),21,2014-09-09,Defrauding Innkeeper,2014-09-30,2014-10-03,,0,,,,,Risk of Recidivism,5,Medium,2013-12-28,Risk of Violence,3,Low,2013-12-28,2013-12-27,2013-12-29,0,1,255,1,1\r\n5818,jeremy anderson,jeremy,anderson,2013-03-19,Male,1992-07-06,23,Less than 25,African-American,0,5,0,0,0,-1,2013-03-18 09:03:00,2013-03-20 10:13:45,13003923CF10A,2013-03-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-19,Risk of Violence,7,Medium,2013-03-19,2013-04-18,2013-10-25,0,1,30,0,0\r\n5820,john hora,john,hora,2014-05-11,Male,1995-02-01,21,Less than 25,Caucasian,0,7,0,0,2,-1,2014-05-10 08:15:07,2014-05-11 08:23:26,14006530CF10A,2014-05-10,,1,F,Felony Driving While Lic Suspd,1,15003914CF10A,(F3),1,2015-03-22,Possess Countrfeit Credit Card,2015-03-23,2015-03-24,,0,,,,,Risk of Recidivism,7,Medium,2014-05-11,Risk of Violence,7,Medium,2014-05-11,2015-06-30,2015-07-02,2,0,315,1,1\r\n5821,tyler roberts,tyler,roberts,2014-01-21,Male,1984-10-15,31,25 - 45,Caucasian,0,5,0,0,3,0,2014-01-21 01:48:08,2014-01-21 08:50:46,14001009MM10A,2014-01-21,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-21,Risk of Violence,4,Low,2014-01-21,2014-01-21,2014-01-21,3,0,801,0,0\r\n5824,kerryann murphy,kerryann,murphy,2013-12-19,Female,1987-04-30,28,25 - 45,African-American,0,2,0,0,0,0,2013-12-19 03:23:34,2013-12-20 02:03:00,13023488MM10A,2013-12-19,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-19,Risk of Violence,2,Low,2013-12-19,2013-12-19,2013-12-20,0,1,834,0,0\r\n5825,james archibald,james,archibald,2013-09-24,Male,1991-11-27,24,Less than 25,African-American,0,9,0,0,11,-1,2013-09-23 06:45:45,2013-11-13 09:53:08,13013381CF10A,2013-09-23,,1,F,Grand Theft in the 3rd Degree,1,14039682TC30A,(M2),94,2014-04-25,Driving License Suspended,2014-07-28,2014-08-01,,0,,,,,Risk of Recidivism,9,High,2013-09-24,Risk of Violence,5,Medium,2013-09-24,2013-09-23,2013-11-13,11,50,213,1,1\r\n5826,roy raidi,roy,raidi,2013-03-04,Male,1971-04-09,45,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-04 04:31:18,2013-04-10 05:02:33,13003246CF10A,2013-03-04,,0,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2014-07-28,2014-09-06,0,37,511,0,0\r\n5827,carl sidney,carl,sidney,2014-07-12,Male,1992-08-21,23,Less than 25,African-American,0,4,0,0,2,-1,2014-07-11 01:42:55,2014-07-12 08:01:56,14010667MM10A,2014-07-11,,1,M,Battery,1,15001722MM20A,(M1),203,2015-06-30,Possess Drug Paraphernalia,2016-01-19,2016-01-20,,0,,,,,Risk of Recidivism,4,Low,2014-07-12,Risk of Violence,4,Low,2014-07-12,2016-01-19,2016-01-20,2,0,353,1,1\r\n5828,julius grant,julius,grant,2013-03-31,Male,1977-01-07,39,25 - 45,African-American,0,8,0,0,7,0,2013-03-31 02:37:57,2013-03-31 06:29:12,13004618CF10A,2013-03-30,,1,F,Aggravated Battery / Pregnant,1,13011471CF10A,(F3),0,2013-08-15,Felony Battery (Dom Strang),2013-08-15,2013-09-19,,1,13011471CF10A,(F3),2013-08-15,Felony Battery (Dom Strang),Risk of Recidivism,8,High,2013-03-31,Risk of Violence,6,Medium,2013-03-31,2013-08-15,2013-09-19,7,0,137,1,1\r\n5830,andrew marold,andrew,marold,2013-03-13,Male,1990-05-02,25,25 - 45,Caucasian,0,4,0,0,2,-63,2013-01-09 07:22:43,2013-02-21 01:03:50,13000396CF10A,2013-01-09,,63,F,Burglary Conveyance Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-13,Risk of Violence,4,Low,2013-03-13,2015-01-16,2015-02-17,2,0,674,0,0\r\n5831,livingston graham,livingston,graham,2014-01-03,Male,1991-07-23,24,Less than 25,African-American,0,2,1,0,1,-1,2014-01-02 08:32:23,2014-01-03 01:34:37,14000081CF10A,2014-01-02,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-03,Risk of Violence,4,Low,2014-01-03,2014-01-02,2014-01-03,1,0,819,0,0\r\n5832,timothy peterson,timothy,peterson,2013-06-07,Male,1969-09-15,46,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-06-06 02:04:55,2013-06-07 04:35:36,11012041CF10A,,2013-06-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-07,Risk of Violence,1,Low,2013-06-07,2014-08-15,2014-08-17,1,0,434,0,0\r\n5833,kerry richard,kerry,richard,2013-01-11,Male,1968-11-08,47,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-01-10 04:27:00,2013-01-12 05:11:50,13000441CF10A,2013-01-10,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-11,Risk of Violence,1,Low,2013-01-11,2013-01-10,2013-01-12,3,1,1176,0,0\r\n5835,anthony turk,anthony,turk,2013-07-16,Male,1961-07-19,54,Greater than 45,Caucasian,0,4,0,0,2,66,2013-09-20 10:17:48,2013-09-20 09:05:55,13049962TC30A,2013-04-06,,101,M,Leave Acc/Attend Veh/More $50,1,13017967MM10A,(M1),0,2013-09-20,Harass Witness/Victim/Information,2013-09-20,2013-09-20,,1,13017967MM10A,(M1),2013-09-20,Battery,Risk of Recidivism,4,Low,2013-07-16,Risk of Violence,3,Low,2013-07-16,2013-09-20,2013-09-20,2,0,66,0,1\r\n5836,samuel brevett,samuel,brevett,2013-05-10,Male,1993-12-20,22,Less than 25,African-American,0,4,0,1,1,-1,2013-05-09 05:58:20,2013-05-10 05:00:29,13008994MM10A,2013-05-09,,1,M,Possess Cannabis/20 Grams Or Less,1,14000648MM30A,(M2),,2014-04-07,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-10,Risk of Violence,5,Medium,2013-05-10,2013-05-09,2013-05-10,1,0,332,1,1\r\n5837,kristi chudicek,kristi,chudicek,2013-08-20,Female,1981-06-20,34,25 - 45,Caucasian,0,2,0,0,0,-2,2013-08-18 04:06:40,2013-08-19 06:27:43,13015629MM10A,2013-08-18,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-18,2013-08-19,0,0,955,0,0\r\n5838,jason vanderwynkle,jason,vanderwynkle,2013-01-18,Male,1982-07-09,33,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-18 06:35:53,2013-01-18 08:55:39,13001297MM10A,2013-01-18,,0,M,Driving Under The Influence,1,14008606MU10A,(M1),0,2014-03-04,Driving Under The Influence,2014-03-04,2014-03-04,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2014-03-04,2014-03-04,0,0,410,0,1\r\n5841,alexis lopezmunoz,alexis,lopezmunoz,2013-01-15,Male,1988-07-22,27,25 - 45,Caucasian,0,6,0,0,1,,,,12019864MM10A,2012-08-18,,150,M,Poss Drugs W/O A Prescription,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-15,Risk of Violence,3,Low,2013-01-15,,,1,0,1172,0,0\r\n5842,christopher jenkins,christopher,jenkins,2013-11-09,Male,1986-10-09,29,25 - 45,African-American,0,10,0,1,16,-1,2013-11-08 08:55:04,2013-11-09 02:08:17,13015581CF10A,2013-11-08,,1,F,Fleeing Or Attmp Eluding A Leo,1,14006904TC10A,(M2),,2014-02-06,Driving License Suspended,,,,0,,,,,Risk of Recidivism,10,High,2013-11-09,Risk of Violence,8,High,2013-11-09,2015-04-27,2015-07-03,16,0,89,1,1\r\n5846,mizraim santiago,mizraim,santiago,2013-07-23,Male,1981-11-04,34,25 - 45,Hispanic,0,2,0,0,3,-6,2013-07-17 03:59:03,2013-07-22 09:39:53,13013591MM10A,2013-07-17,,6,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-23,Risk of Violence,2,Low,2013-07-23,2013-12-09,2013-12-12,3,0,139,0,0\r\n5847,gregory pierresaint,gregory,pierresaint,2013-07-01,Male,1983-10-11,32,25 - 45,African-American,0,5,0,0,1,-115,2013-03-08 01:31:21,2013-03-08 11:32:21,13003407CF10A,2013-03-08,,115,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-01,Risk of Violence,5,Medium,2013-07-01,2014-03-05,2014-06-29,1,0,247,0,0\r\n5849,megan mickens,megan,mickens,2013-04-13,Male,1986-12-19,29,25 - 45,African-American,0,6,0,0,0,0,2013-04-13 07:45:58,2013-04-14 07:39:52,13007156MM10A,2013-04-13,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-13,Risk of Violence,3,Low,2013-04-13,2013-04-13,2013-04-14,0,1,1084,0,0\r\n5850,ashli rodriguez,ashli,rodriguez,2014-08-07,Female,1991-03-07,25,25 - 45,Caucasian,0,3,0,0,2,-1,2014-08-06 12:07:31,2014-08-07 08:49:26,14028826MU10A,2014-08-06,,1,M,Unlaw Lic Use/Disply Of Others,1,15030357TC10A,(M2),,2015-10-23,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2014-08-07,Risk of Violence,3,Low,2014-08-07,2014-08-06,2014-08-07,2,0,442,1,1\r\n5851,tristan coulsting,tristan,coulsting,2014-01-12,Male,1982-01-07,34,25 - 45,Caucasian,0,6,0,0,16,-1,2014-01-11 07:02:16,2014-01-12 08:16:38,14000499CF10A,2014-01-11,,1,F,Felony Battery (Dom Strang),1,15027314MU10A,(M1),,2015-10-02,DUI Property Damage/Injury,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-12,Risk of Violence,6,Medium,2014-01-12,2014-01-11,2014-01-12,16,0,628,1,1\r\n5852,dorothy burgess,dorothy,burgess,2013-04-19,Female,1960-07-30,55,Greater than 45,African-American,0,1,0,0,1,-1,2013-04-18 08:53:43,2013-04-19 07:50:03,13005573CF10A,2013-04-18,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-18,2013-04-19,1,0,1078,0,0\r\n5853,anthony latimore,anthony,latimore,2013-10-20,Male,1988-04-26,27,25 - 45,African-American,0,4,0,0,0,-1,2013-10-19 10:42:59,2013-10-20 07:54:16,13014643CF10A,2013-10-19,,1,F,Aggravated Battery / Pregnant,1,13021172MM10A,(M1),0,2013-11-09,Viol Injunct Domestic Violence,2013-11-09,2013-11-21,,0,,,,,Risk of Recidivism,4,Low,2013-10-20,Risk of Violence,4,Low,2013-10-20,2013-11-09,2013-11-21,0,0,20,1,1\r\n5854,roseson sterlin,roseson,sterlin,2013-02-23,Male,1989-06-20,26,25 - 45,African-American,0,3,0,0,0,-1,2013-02-22 06:44:05,2013-02-23 08:31:02,12025639MO10A,,2013-02-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-23,Risk of Violence,3,Low,2013-02-23,2013-02-22,2013-02-23,0,0,1133,0,0\r\n5856,jamie wallace,jamie,wallace,2013-04-21,Male,1977-03-05,39,25 - 45,African-American,2,9,2,1,19,-1,2013-04-20 06:19:47,2013-10-17 05:09:38,13005648CF10A,2013-04-20,,1,F,Driving While License Revoked,1,14006983CF10A,(F3),1,2014-05-19,Tampering With Physical Evidence,2014-05-20,2014-05-20,,0,,,,,Risk of Recidivism,9,High,2013-04-21,Risk of Violence,7,Medium,2013-04-21,2013-04-20,2013-10-17,19,179,393,1,1\r\n5857,charlie stanley,charlie,stanley,2014-01-11,Male,1991-07-02,24,Less than 25,African-American,0,7,0,0,1,0,2014-01-11 04:54:38,2014-01-11 07:57:07,14000494CF10A,2014-01-11,,0,F,Possession of Codeine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-11,Risk of Violence,7,Medium,2014-01-11,2014-01-11,2014-01-11,1,0,811,0,0\r\n5858,juan hidalgo,juan,hidalgo,2013-02-16,Male,1986-08-13,29,25 - 45,Caucasian,0,2,0,0,0,0,2013-02-16 04:44:47,2013-02-17 01:53:27,13003400MM10A,2013-02-16,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-16,Risk of Violence,2,Low,2013-02-16,2013-02-16,2013-02-17,0,1,1140,0,0\r\n5861,sharon abel,sharon,abel,2013-05-10,Female,1984-06-29,31,25 - 45,Caucasian,0,7,0,0,3,468,2014-08-21 07:22:44,2014-08-22 11:57:12,12018298CF10A,2012-12-15,,146,F,Possession of Cocaine,1,14030804MU10A,(M2),0,2014-08-21,Lve/Scen/Acc/Veh/Prop/Damage,2014-08-21,2014-08-22,,0,,,,,Risk of Recidivism,7,Medium,2013-05-10,Risk of Violence,4,Low,2013-05-10,2014-08-21,2014-08-22,3,0,468,1,1\r\n5863,stephen maxwell,stephen,maxwell,2013-02-09,Male,1965-09-02,50,Greater than 45,African-American,0,1,0,0,13,0,2013-02-09 05:51:11,2013-10-10 04:40:44,13002025CF10A,2013-02-09,,0,F,Grand Theft in the 3rd Degree,1,13002336CF10A,(F3),,2013-02-13,Fraudulent Use of Credit Card,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-09,Risk of Violence,1,Low,2013-02-09,2013-02-09,2013-10-10,13,0,4,1,1\r\n5864,jose alfonso,jose,alfonso,2014-05-01,Male,1990-06-05,25,25 - 45,Hispanic,0,5,0,0,2,-1,2014-04-30 12:25:57,2014-05-01 09:58:50,14006008CF10A,2014-04-30,,1,F,Grand Theft in the 3rd Degree,1,14008670CF10A,(F3),14,2014-06-09,Grand Theft in the 3rd Degree,2014-06-23,2014-10-16,,0,,,,,Risk of Recidivism,5,Medium,2014-05-01,Risk of Violence,3,Low,2014-05-01,2015-06-01,2015-06-15,2,0,39,1,1\r\n5865,james hawkins,james,hawkins,2014-07-07,Male,1984-08-07,31,25 - 45,African-American,0,5,0,0,4,-12,2014-06-25 08:30:12,2014-06-27 08:56:53,12006180CF10A,,2014-06-25,12,F,arrest case no charge,1,15000247MM30A,(M2),68,2015-01-21,Petit Theft,2015-03-30,2015-04-28,,0,,,,,Risk of Recidivism,5,Medium,2014-07-07,Risk of Violence,4,Low,2014-07-07,2015-03-30,2015-04-28,4,0,198,1,1\r\n5867,kenroy whitley,kenroy,whitley,2013-07-25,Male,1985-01-13,31,25 - 45,Other,0,2,0,0,0,-1,2013-07-24 02:09:40,2013-07-24 07:18:14,13014019MM10A,2013-07-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-25,Risk of Violence,2,Low,2013-07-25,2013-07-24,2013-07-24,0,0,981,0,0\r\n5869,javier gonzalez,javier,gonzalez,2013-01-30,Male,1989-10-27,26,25 - 45,Caucasian,1,6,0,0,2,-1,2013-01-29 07:52:58,2013-01-30 01:21:46,13001427CF10A,2013-01-29,,1,F,Possession of Cannabis,1,15011956CF10A,(F3),0,2015-09-15,Possession of Cannabis,2015-09-15,2015-09-16,,0,,,,,Risk of Recidivism,6,Medium,2013-01-30,Risk of Violence,8,High,2013-01-30,2015-09-15,2015-09-16,2,0,958,1,0\r\n5871,david wilkinson,david,wilkinson,2013-09-15,Male,1961-12-12,54,Greater than 45,Caucasian,0,2,0,0,2,0,2013-09-15 01:38:34,2013-12-21 04:45:56,13011098CF10A,,2013-09-15,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-15,Risk of Violence,1,Low,2013-09-15,2013-09-15,2013-12-21,2,97,929,0,0\r\n5873,eric mobley,eric,mobley,2014-01-19,Male,1982-06-13,33,25 - 45,African-American,0,8,0,0,14,-1,2014-01-18 09:19:00,2014-01-19 08:18:53,14000779CF10A,2014-01-18,,1,F,Possession of Cocaine,1,14005340CF10A,(F7),,2014-04-15,Burglary Structure Assault/Batt,,,,1,14005340CF10A,(F3),2014-04-15,Attempted Robbery  No Weapon,Risk of Recidivism,8,High,2014-01-19,Risk of Violence,4,Low,2014-01-19,2014-01-18,2014-01-19,14,0,86,1,1\r\n5875,daniel campbell,daniel,campbell,2014-04-25,Male,1993-08-19,22,Less than 25,African-American,0,4,0,0,0,-1,2014-04-24 06:44:51,2014-04-25 01:46:53,14006876MM10A,2014-04-24,,1,M,Battery,1,15000418MM20A,(M1),,2015-01-28,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2014-04-25,Risk of Violence,5,Medium,2014-04-25,2014-04-24,2014-04-25,0,0,278,1,1\r\n5877,joseph pryor,joseph,pryor,2013-03-02,Male,1980-09-19,35,25 - 45,African-American,0,9,1,0,8,0,2013-03-02 02:57:33,2013-10-27 05:59:54,13003145CF10A,2013-03-02,,0,F,Driving While License Revoked,1,16003411CF10A,(F3),1,2016-03-18,,2016-03-19,2016-03-20,,0,,,,,Risk of Recidivism,9,High,2013-03-02,Risk of Violence,8,High,2013-03-02,2013-03-02,2013-10-27,8,239,1112,1,0\r\n5878,terryann mcdonald,terryann,mcdonald,2013-05-23,Female,1985-12-01,30,25 - 45,Other,0,7,0,0,4,-27,2013-04-26 10:29:09,2013-04-28 05:17:29,11019841CF10A,,2013-05-22,1,F,arrest case no charge,1,14000938CF10A,(F3),0,2014-01-22,Grand Theft in the 3rd Degree,2014-01-22,2014-03-11,,0,,,,,Risk of Recidivism,7,Medium,2013-05-23,Risk of Violence,4,Low,2013-05-23,2014-01-22,2014-03-11,4,0,244,1,1\r\n5880,addison oliver,addison,oliver,2014-03-26,Male,1990-11-11,25,25 - 45,African-American,0,2,0,0,0,-1,2014-03-25 06:30:51,2014-03-26 01:51:19,14004231CF10A,2014-03-25,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-26,Risk of Violence,3,Low,2014-03-26,2014-03-25,2014-03-26,0,0,737,0,0\r\n5881,ken delva,ken,delva,2013-02-06,Male,1990-08-01,25,25 - 45,African-American,0,5,0,0,0,0,2013-02-06 03:18:44,2013-02-06 07:56:34,13001863CF10A,2013-02-05,,1,F,\"Del 3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-06,Risk of Violence,3,Low,2013-02-06,2013-02-06,2013-02-06,0,0,1150,0,0\r\n5882,philo little,philo,little,2014-12-03,Male,1971-10-03,44,25 - 45,African-American,0,2,0,0,0,-1,2014-12-02 05:39:53,2014-12-03 01:17:00,14016066CF10A,2014-12-02,,1,F,Possession Of Methamphetamine,1,14016299CF10A,(F3),0,2014-12-08,Possession Of Methamphetamine,2014-12-08,2015-03-12,,0,,,,,Risk of Recidivism,2,Low,2014-12-03,Risk of Violence,1,Low,2014-12-03,2014-12-08,2015-03-12,0,0,5,1,1\r\n5883,courtney walraven,courtney,walraven,2013-11-02,Female,1986-04-22,29,25 - 45,Caucasian,0,7,0,0,2,-1,2013-11-01 07:45:26,2013-11-10 04:38:57,13015263CF10A,2013-11-01,,1,F,Uttering a Forged Instrument,1,14001286CF10A,(M1),1,2014-01-29,Resist/Obstruct W/O Violence,2014-01-30,2014-09-19,,0,,,,,Risk of Recidivism,7,Medium,2013-11-02,Risk of Violence,4,Low,2013-11-02,2013-11-01,2013-11-10,2,8,88,1,1\r\n5885,raymond platt,raymond,platt,2014-02-27,Male,1969-08-30,46,Greater than 45,Caucasian,0,3,0,0,2,-23,2014-02-04 04:00:05,2014-02-06 09:39:16,10001021CF10A,,2014-02-04,23,F,arrest case no charge,1,14013174CF10A,(F3),141,2014-06-19,Uttering a Forged Instrument,2014-11-07,2015-05-11,,0,,,,,Risk of Recidivism,3,Low,2014-02-27,Risk of Violence,1,Low,2014-02-27,2016-02-02,2020-01-01,2,0,112,1,1\r\n5886,glenn bard,glenn,bard,2013-11-04,Male,1963-02-12,53,Greater than 45,Caucasian,0,1,0,0,0,0,2013-11-04 02:03:04,2013-11-08 09:12:49,13020833MM10A,2013-11-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-04,Risk of Violence,1,Low,2013-11-04,2013-11-04,2013-11-08,0,4,879,0,0\r\n5887,ricky joseph,ricky,joseph,2014-03-15,Male,1991-06-16,24,Less than 25,African-American,0,7,0,0,2,-1,2014-03-14 11:06:46,2014-03-16 09:20:43,14003615CF10A,2014-03-14,,1,F,Driving While License Revoked,1,15013250MM10A,(M2),,2015-12-24,Petit Theft,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-15,Risk of Violence,4,Low,2014-03-15,2014-03-14,2014-03-16,2,1,649,1,1\r\n5889,aeritta covington,aeritta,covington,2013-11-03,Female,1963-08-01,52,Greater than 45,African-American,0,1,0,0,2,-1,2013-11-02 07:17:29,2013-11-03 09:09:20,13015275CF10A,2013-11-02,,1,F,Possession of Cocaine,1,14000857MM20A,(M2),,2014-03-06,Petit Theft,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-03,Risk of Violence,1,Low,2013-11-03,2013-11-02,2013-11-03,2,0,123,1,1\r\n5890,romone gray,romone,gray,2014-11-05,Male,1988-12-16,27,25 - 45,African-American,0,2,0,0,0,-1,2014-11-04 06:55:19,2014-11-05 01:21:26,14015943MM10A,2014-11-04,,1,M,Battery,1,15001316MM40A,(M2),,2015-03-16,Retail/Farm/Fare/Theft,,,,0,,,,,Risk of Recidivism,2,Low,2014-11-05,Risk of Violence,2,Low,2014-11-05,2014-11-04,2014-11-05,0,0,131,1,1\r\n5891,david gutman,david,gutman,2013-11-03,Male,1974-05-15,41,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-02 04:53:44,2013-11-03 12:58:20,13015277CF10A,2013-11-02,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-03,Risk of Violence,1,Low,2013-11-03,2013-11-02,2013-11-03,0,0,880,0,0\r\n5892,rochelle rochester,rochelle,rochester,2013-07-15,Female,1994-09-15,21,Less than 25,African-American,0,5,0,0,0,-2,2013-07-13 04:16:12,2013-07-14 02:08:39,13009848CF10A,2013-07-13,,2,F,Grand Theft in the 3rd Degree,1,15007859CF10A,(F3),0,2015-06-17,Grand Theft in the 3rd Degree,2015-06-17,2015-06-18,,0,,,,,Risk of Recidivism,5,Medium,2013-07-15,Risk of Violence,6,Medium,2013-07-15,2015-06-17,2015-06-18,0,0,702,1,1\r\n5895,kevin sasnett,kevin,sasnett,2013-09-27,Male,1992-01-26,24,Less than 25,Caucasian,0,4,0,0,1,0,2013-09-27 04:19:07,2013-09-27 08:59:08,13013610CF10A,2013-09-27,,0,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-27,Risk of Violence,3,Low,2013-09-27,2013-09-27,2013-09-27,1,0,917,0,0\r\n5896,carlos pastrana,carlos,pastrana,2013-04-01,Male,1977-10-01,38,25 - 45,Caucasian,0,2,0,0,8,-32,2013-02-28 06:48:26,2013-02-28 08:42:31,13003066CF10A,2013-02-28,,32,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-01,Risk of Violence,4,Low,2013-04-01,2014-04-24,2014-12-22,8,0,388,0,0\r\n5898,luis gonzalez,luis,gonzalez,2013-12-26,Male,1992-05-22,23,Less than 25,Caucasian,0,2,0,0,0,-1,2013-12-25 01:48:57,2013-12-26 01:13:22,13023750MM10A,2013-12-24,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-26,Risk of Violence,4,Low,2013-12-26,2013-12-25,2013-12-26,0,0,827,0,0\r\n5899,freddy hall,freddy,hall,2013-05-23,Male,1973-12-10,42,25 - 45,African-American,0,1,0,0,0,-1,2013-05-22 01:03:43,2013-05-23 04:44:30,13007324CF10A,2013-05-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-23,Risk of Violence,1,Low,2013-05-23,2013-05-22,2013-05-23,0,0,1044,0,0\r\n5900,matthew logiudice,matthew,logiudice,2013-09-09,Male,1983-09-10,32,25 - 45,Caucasian,0,5,0,0,4,-47,2013-07-24 08:22:37,2013-07-29 11:10:43,13010358CF10A,2013-07-24,,47,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-09,Risk of Violence,1,Low,2013-09-09,2015-06-30,2015-07-03,4,0,659,0,0\r\n5901,joshua perez,joshua,perez,2014-04-01,Male,1992-02-25,24,Less than 25,Hispanic,0,7,0,0,3,597,2015-11-19 12:47:48,2015-11-20 06:12:53,14005094MM10A,2014-03-24,,8,M,Battery,1,15005902MM10A,(M1),,2015-05-29,Viol Pretrial Release Dom Viol,,,,1,15012271CF10A,(F3),2015-09-21,Stalking (Aggravated),Risk of Recidivism,7,Medium,2014-04-01,Risk of Violence,8,High,2014-04-01,2015-11-19,2015-11-20,3,0,423,1,1\r\n5902,shanard twensey,shanard,twensey,2014-03-21,Male,1992-02-05,24,Less than 25,African-American,5,8,0,0,5,-1,2014-03-20 06:41:36,2014-03-21 11:27:47,14003976CF10A,2014-03-20,,1,F,Burglary Conveyance Unoccup,1,15003641CF10A,(F3),0,2015-03-17,Possession of Cocaine,2015-03-17,2015-03-18,,0,,,,,Risk of Recidivism,8,High,2014-03-21,Risk of Violence,9,High,2014-03-21,2015-03-17,2015-03-18,5,0,361,1,1\r\n5904,kevin edwards,kevin,edwards,2014-09-06,Male,1989-05-17,26,25 - 45,African-American,0,8,0,0,4,-1,2014-09-05 08:38:46,2014-09-06 07:27:15,14012116CF10A,2014-09-05,,1,F,Grand Theft (Motor Vehicle),1,14001553MM30A,(M1),,2014-09-08,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,8,High,2014-09-06,Risk of Violence,4,Low,2014-09-06,2015-08-14,2015-08-15,4,0,2,1,1\r\n5905,paul demus,paul,demus,2013-04-12,Male,1966-03-03,50,Greater than 45,Caucasian,0,3,0,0,9,-1,2013-04-11 07:29:18,2014-06-10 06:16:41,13005246CF10A,2013-04-11,,1,F,Burglary Structure Unoccup,1,13009890CF10A,(F3),,2013-06-30,Introduce Contraband Into Jail,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-12,Risk of Violence,2,Low,2013-04-12,2013-04-11,2014-06-10,9,0,79,1,1\r\n5906,jerline jean,jerline,jean,2014-03-09,Female,1983-10-30,32,25 - 45,African-American,0,6,0,0,3,-1,2014-03-08 08:03:14,2014-03-09 12:18:14,14003307CF10A,2014-03-08,,1,M,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-09,Risk of Violence,4,Low,2014-03-09,2014-03-08,2014-03-09,3,0,754,0,0\r\n5907,anthony williams,anthony,williams,2013-09-25,Male,1975-08-20,40,25 - 45,African-American,0,9,0,0,13,-1,2013-09-24 07:30:04,2013-09-25 08:13:07,13013438CF10A,,2013-09-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-25,Risk of Violence,3,Low,2013-09-25,2015-05-13,2015-05-18,13,0,595,0,0\r\n5908,john wiborg,john,wiborg,2013-07-22,Male,1991-03-11,25,25 - 45,Caucasian,0,2,0,0,1,-81,2013-05-02 09:08:12,2013-05-03 08:12:00,13006321CF10A,2013-05-02,,81,M,Discharge Firearm From Vehicle,1,14002161CF10A,(F3),0,2014-02-15,Possession of Cocaine,2014-02-15,2014-02-15,,0,,,,,Risk of Recidivism,2,Low,2013-07-22,Risk of Violence,3,Low,2013-07-22,2014-02-15,2014-02-15,1,0,208,0,1\r\n5912,julio esquiagola,julio,esquiagola,2013-05-09,Male,1973-08-13,42,25 - 45,Hispanic,0,1,0,0,1,-118,2013-01-11 01:09:26,2013-05-09 10:55:33,13000335CF10A,,2013-01-10,119,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-09,Risk of Violence,1,Low,2013-05-09,2013-01-11,2013-05-09,1,0,1058,0,0\r\n5914,donald perdue,donald,perdue,2013-03-28,Male,1989-01-13,27,25 - 45,African-American,0,3,0,0,2,0,2013-03-28 01:22:58,2013-03-28 08:31:54,13004446CF10A,2013-03-27,,1,F,Lease For Purpose Trafficking,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-28,Risk of Violence,4,Low,2013-03-28,2015-03-17,2015-03-17,2,0,719,0,0\r\n5915,abrahiem darwish,abrahiem,darwish,2013-12-02,Male,1993-02-01,23,Less than 25,Caucasian,0,9,0,0,0,-1,2013-12-01 11:49:20,2013-12-02 09:10:03,13016629CF10A,2013-12-01,,1,F,Possession Of Alprazolam,1,15002826MM40A,(M2),,2015-07-03,Petit Theft,,,,0,,,,,Risk of Recidivism,9,High,2013-12-02,Risk of Violence,5,Medium,2013-12-02,2013-12-01,2013-12-02,0,0,578,1,1\r\n5916,devin cooper,devin,cooper,2014-10-17,Male,1978-11-01,37,25 - 45,African-American,0,9,0,0,22,-1,2014-10-16 09:28:47,2014-10-18 03:05:15,14004200MM10A,,2014-08-17,61,M,arrest case no charge,1,15001940MM40A,(M1),57,2015-02-15,Possess Cannabis/20 Grams Or Less,2015-04-13,2015-06-24,,0,,,,,Risk of Recidivism,9,High,2014-10-17,Risk of Violence,4,Low,2014-10-17,2014-10-16,2014-10-18,22,1,121,1,1\r\n5917,clifford proctor,clifford,proctor,2013-04-07,Male,1983-12-16,32,25 - 45,African-American,0,4,0,0,1,-1,2013-04-06 05:35:58,2013-04-10 05:02:49,13006617MM10A,2013-04-06,,1,M,DUI Blood Alcohol Above 0.20,1,13012009CF10A,(F1),1,2013-08-24,Home Invasion Robbery,2013-08-25,2013-10-22,,1,13012009CF10A,(F1),2013-08-24,Home Invasion Robbery,Risk of Recidivism,4,Low,2013-04-07,Risk of Violence,2,Low,2013-04-07,2013-04-06,2013-04-10,1,3,139,1,1\r\n5918,gregory polynice,gregory,polynice,2014-07-17,Male,1978-01-06,38,25 - 45,African-American,0,7,0,0,2,43,2014-08-29 09:49:28,2014-09-05 02:03:17,13004858MM10A,,2014-05-12,66,M,arrest case no charge,1,15003672MM10A,(M1),0,2015-03-29,Resist/Obstruct W/O Violence,2015-03-29,2015-04-21,,1,15003672MM10A,(M1),2015-03-29,Battery,Risk of Recidivism,7,Medium,2014-07-17,Risk of Violence,4,Low,2014-07-17,2014-08-29,2014-09-05,2,0,43,0,1\r\n5921,eric conser,eric,conser,2013-03-24,Male,1964-01-09,52,Greater than 45,Caucasian,0,3,0,0,4,-1,2013-03-23 08:58:45,2013-03-25 01:25:28,13005700MM10A,2013-03-23,,1,M,Viol Prot Injunc Repeat Viol,1,13012756MO10A,(MO3),0,2013-07-04,Trespass,2013-07-04,2013-07-05,,0,,,,,Risk of Recidivism,3,Low,2013-03-24,Risk of Violence,2,Low,2013-03-24,2013-07-04,2013-07-05,4,1,102,1,1\r\n5923,jesus valencia,jesus,valencia,2013-08-19,Male,1986-07-26,29,25 - 45,Caucasian,0,2,0,0,2,-1,2013-08-18 08:19:55,2013-08-22 03:45:12,13011580CF10A,2013-08-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-19,Risk of Violence,3,Low,2013-08-19,2013-08-18,2013-08-22,2,3,956,0,0\r\n5924,marckenson demard,marckenson,demard,2013-08-13,Male,1987-10-06,28,25 - 45,African-American,0,3,0,0,7,,,,12018329CF10A,2012-12-17,,239,M,Resist/Obstruct W/O Violence,1,14013814CF10A,(F3),,2014-09-20,Battery on Law Enforc Officer,,,,1,14013814CF10A,(F3),2014-09-20,Battery on Law Enforc Officer,Risk of Recidivism,3,Low,2013-08-13,Risk of Violence,2,Low,2013-08-13,,,7,0,403,1,1\r\n5926,evens pericles,evens,pericles,2013-01-03,Male,1966-10-13,49,Greater than 45,African-American,0,1,0,0,0,0,2013-01-03 02:58:10,2013-01-03 07:35:13,13000196MM10A,2013-01-03,,0,M,Poss Of RX Without RX,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2013-01-03,2013-01-03,0,0,1184,0,0\r\n5928,jeremy joyce,jeremy,joyce,2014-02-04,Male,1965-08-03,50,Greater than 45,Caucasian,0,1,0,0,0,-2,2014-02-02 05:06:04,2014-02-04 12:04:14,14001463CF10A,2014-02-02,,2,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-02-02,2014-02-04,0,0,787,0,0\r\n5929,oscar lizano,oscar,lizano,2013-10-23,Male,1989-12-26,26,25 - 45,Caucasian,0,2,0,0,2,0,2013-10-23 12:29:56,2013-10-23 08:21:02,13014765CF10A,2013-10-22,,1,F,Agg Assault W/int Com Fel Dome,1,14028599TC30A,(M2),,2014-03-17,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-23,Risk of Violence,3,Low,2013-10-23,2013-10-23,2013-10-23,2,0,145,1,1\r\n5930,melissa pento,melissa,pento,2014-12-31,Female,1982-04-08,34,25 - 45,Caucasian,0,8,0,0,0,-1,2014-12-30 04:58:29,2015-01-30 10:55:23,14017201CF10A,2014-12-30,,1,F,Poss Pyrrolidinovalerophenone,1,15008490CF10A,(F3),,2015-07-02,Poss Pyrrolidinovalerophenone,,,,0,,,,,Risk of Recidivism,8,High,2014-12-31,Risk of Violence,2,Low,2014-12-31,2014-12-30,2015-01-30,0,30,183,1,1\r\n5931,kristina cowley,kristina,cowley,2013-02-02,Female,1987-08-04,28,25 - 45,Caucasian,0,7,0,0,1,-1,2013-02-01 10:36:23,2013-02-11 06:46:31,11000338CF10A,,2013-02-01,1,F,arrest case no charge,1,15002806CF10A,(F3),0,2015-03-01,Grand Theft in the 3rd Degree,2015-03-01,2015-03-02,,0,,,,,Risk of Recidivism,7,Medium,2013-02-02,Risk of Violence,3,Low,2013-02-02,2015-03-01,2015-03-02,1,9,757,1,0\r\n5932,michael septak,michael,septak,2013-12-02,Male,1979-12-19,36,25 - 45,Caucasian,0,8,0,0,4,74,2014-02-14 11:41:24,2014-03-24 05:30:25,13009070CF10A,2013-06-27,,158,F,Fraudulent Use of Credit Card,1,14011636MM10A,(M1),115,2014-05-14,Petit Theft $100- $300,2014-09-06,2014-10-07,,0,,,,,Risk of Recidivism,8,High,2013-12-02,Risk of Violence,2,Low,2013-12-02,2014-02-14,2014-03-24,4,0,74,0,1\r\n5933,travis washington,travis,washington,2013-09-20,Male,1970-05-27,45,Greater than 45,African-American,0,2,0,0,1,-48,2013-08-03 02:20:36,2013-09-19 08:44:47,13010878CF10A,2013-08-02,,49,F,Aggravated Assault W/Dead Weap,1,14010539MO10A,(MO3),0,2014-07-09,Trespass,2014-07-09,2014-09-01,,0,,,,,Risk of Recidivism,2,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2014-01-15,2014-01-21,1,0,117,0,1\r\n5934,kelvin solomon,kelvin,solomon,2013-03-12,Male,1985-12-11,30,25 - 45,African-American,0,3,0,0,0,0,2013-03-12 02:19:58,2013-03-12 06:58:41,13003642CF10A,2013-03-12,,0,F,Felony Driving While Lic Suspd,1,13003229MM40A,(M1),347,2013-08-09,Petit Theft $100- $300,2014-07-22,2014-07-25,,0,,,,,Risk of Recidivism,3,Low,2013-03-12,Risk of Violence,2,Low,2013-03-12,2014-07-22,2014-07-25,0,0,150,1,1\r\n5935,keith irvin,keith,irvin,2014-02-19,Male,1992-03-01,24,Less than 25,African-American,0,4,0,0,3,-1,2014-02-18 04:57:30,2014-02-20 02:25:00,14002295CF10A,2014-02-18,,1,F,Burglary Conveyance Unoccup,1,14014451CF10A,(M2),0,2014-10-27,Petit Theft,2014-10-27,2014-12-24,,0,,,,,Risk of Recidivism,4,Low,2014-02-19,Risk of Violence,4,Low,2014-02-19,2014-10-27,2014-12-24,3,1,250,1,1\r\n5937,jason robertson,jason,robertson,2014-12-10,Male,1990-11-13,25,25 - 45,African-American,0,2,0,0,0,0,2014-12-10 01:56:11,2014-12-10 08:00:57,14017410MM10A,2014-12-10,,0,M,Battery,1,15008143CF10A,(F1),-1,2015-06-23,Robbery W/Firearm,2015-06-22,2015-08-07,,1,15008143CF10A,(F3),2015-06-23,Aggravated Assault w/Firearm,Risk of Recidivism,2,Low,2014-12-10,Risk of Violence,3,Low,2014-12-10,2015-06-22,2015-08-07,0,0,195,1,1\r\n5938,fernando walker,fernando,walker,2014-11-19,Male,1990-12-29,25,25 - 45,African-American,0,3,0,0,4,-1,2014-11-18 07:32:19,2014-11-27 08:30:00,14016533MM10A,2014-11-18,,1,M,Battery,1,15009401MM10A,(M1),0,2015-09-04,Battery,2015-09-04,2015-09-05,,1,15009401MM10A,(M1),2015-09-04,Battery,Risk of Recidivism,3,Low,2014-11-19,Risk of Violence,3,Low,2014-11-19,2015-09-04,2015-09-05,4,8,289,1,1\r\n5939,robert crot,robert,crot,2013-02-25,Male,1971-01-10,45,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-02-24 11:48:29,2013-02-25 06:52:51,13002841CF10A,2013-02-24,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,1,Low,2013-02-25,2013-02-24,2013-02-25,2,0,1131,0,0\r\n5942,nathaniel carry,nathaniel,carry,2014-03-18,Male,1989-11-04,26,25 - 45,Caucasian,0,7,0,0,1,-1,2014-03-17 01:03:27,2014-03-20 01:49:06,14003775CF10A,2014-03-17,,1,F,Poss Pyrrolidinovalerophenone,1,14015035CF10A,(F3),0,2014-11-09,Possession Of Alprazolam,2014-11-09,2014-12-29,,0,,,,,Risk of Recidivism,7,Medium,2014-03-18,Risk of Violence,6,Medium,2014-03-18,2014-08-05,2014-08-23,1,2,140,0,1\r\n5943,julian bastian,julian,bastian,2013-03-18,Male,1979-02-10,37,25 - 45,Other,0,1,0,0,2,-1,2013-03-17 11:28:06,2013-04-15 11:25:52,13003879CF10A,2013-03-17,,1,F,Lewd/Lasciv Molest Elder Persn,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-17,2013-04-15,2,28,1110,0,0\r\n5946,alexandro castro,alexandro,castro,2014-03-22,Male,1991-09-05,24,Less than 25,Hispanic,0,2,0,0,0,-1,2014-03-21 09:50:03,2014-03-23 09:11:20,14004982MM10A,2014-03-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-22,Risk of Violence,3,Low,2014-03-22,2014-03-21,2014-03-23,0,1,741,0,0\r\n5947,carmine dagnell,carmine,dagnell,2013-03-23,Male,1975-09-17,40,25 - 45,Caucasian,0,1,0,0,2,-1,2013-03-22 11:22:26,2013-03-24 05:59:53,05020781MM10A,,2013-03-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-23,Risk of Violence,1,Low,2013-03-23,2013-03-22,2013-03-24,2,1,1105,0,0\r\n5948,gary schwab,gary,schwab,2013-01-02,Male,1955-10-01,60,Greater than 45,Caucasian,0,1,0,0,1,,,,12025273MM10A,2012-12-11,,22,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-02,Risk of Violence,1,Low,2013-01-02,,,1,0,1185,0,0\r\n5951,lizzethe rivas,lizzethe,rivas,2013-06-04,Female,1983-01-26,33,25 - 45,Hispanic,0,2,0,0,0,-2,2013-06-02 04:46:03,2013-06-03 02:11:03,13007822CF10A,2013-06-02,,2,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-04,Risk of Violence,1,Low,2013-06-04,2013-06-02,2013-06-03,0,0,1032,0,0\r\n5952,jerry boston,jerry,boston,2013-03-06,Male,1984-06-09,31,25 - 45,African-American,0,9,0,1,6,,,,10001656CF10A,,2010-03-22,1080,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-06,Risk of Violence,8,High,2013-03-06,,,6,0,1122,0,0\r\n5953,rolando pena,rolando,pena,2013-09-06,Male,1962-12-23,53,Greater than 45,Hispanic,0,2,0,0,18,0,2013-09-06 03:05:03,2013-09-07 05:14:11,13012609CF10A,,2013-09-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-06,2013-09-07,18,1,938,0,0\r\n5954,jose ramos-otero,jose,ramos-otero,2014-03-26,Male,1960-10-15,55,Greater than 45,Hispanic,0,1,0,0,0,-7,2014-03-19 11:32:30,2014-03-25 06:06:45,14004794MM10A,2014-03-19,,7,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-26,Risk of Violence,1,Low,2014-03-26,2014-03-19,2014-03-25,0,0,737,0,0\r\n5955,george joseph,george,joseph,2014-03-26,Male,1979-08-15,36,25 - 45,Caucasian,0,6,0,0,4,,,,12025593MM10A,2012-12-16,,465,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-26,Risk of Violence,4,Low,2014-03-26,2008-04-22,2009-02-01,4,0,737,0,0\r\n5957,jean joseph,jean,joseph,2013-10-25,Male,1986-02-23,30,25 - 45,Other,0,9,0,0,6,-1,2013-10-24 07:05:58,2013-11-11 02:16:33,13014877CF10A,2013-10-24,,1,F,Aggravated Assault W/Dead Weap,1,14000195MM10A,(M1),0,2014-01-05,Battery,2014-01-05,2014-02-04,,1,14000195MM10A,(M1),2014-01-05,Battery,Risk of Recidivism,9,High,2013-10-25,Risk of Violence,7,Medium,2013-10-25,2014-01-05,2014-02-04,6,17,72,1,1\r\n5958,alonzo coleman,alonzo,coleman,2014-07-31,Male,1994-07-15,21,Less than 25,African-American,0,7,0,0,1,-15,2014-07-16 07:00:01,2014-07-31 11:36:22,14009798CF10A,,2014-07-16,15,F,arrest case no charge,1,15013132CF10A,(M2),0,2015-10-10,Operating W/O Valid License,2015-10-10,2015-11-25,,0,,,,,Risk of Recidivism,7,Medium,2014-07-31,Risk of Violence,8,High,2014-07-31,2014-08-29,2015-01-10,1,0,29,0,1\r\n5960,ginge brien,ginge,brien,2013-12-07,Male,1960-06-05,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-06 11:16:06,2013-12-07 07:45:33,13022640MM10A,2013-12-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-07,Risk of Violence,1,Low,2013-12-07,2013-12-06,2013-12-07,0,0,846,0,0\r\n5963,kristine fialkowsky,kristine,fialkowsky,2013-02-16,Male,1993-05-04,22,Less than 25,Caucasian,0,3,0,0,1,-1,2013-02-15 11:39:43,2013-02-16 01:26:38,13002358CF10A,,2013-02-15,1,F,arrest case no charge,1,13003832CF10A,(F3),19,2013-02-25,False Ownership Info/Pawn Item,2013-03-16,2013-04-23,,0,,,,,Risk of Recidivism,3,Low,2013-02-16,Risk of Violence,5,Medium,2013-02-16,2015-04-08,2015-04-09,1,0,9,1,1\r\n5964,crystal sylvester,crystal,sylvester,2013-03-05,Female,1993-02-14,23,Less than 25,African-American,0,3,0,0,1,-6,2013-02-27 09:17:36,2013-02-28 07:44:18,13002979CF10A,,2013-02-27,6,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-05,Risk of Violence,4,Low,2013-03-05,2013-02-27,2013-02-28,1,0,1123,0,0\r\n5965,celen martinicorena,celen,martinicorena,2013-07-25,Female,1991-07-25,24,Less than 25,Caucasian,0,8,0,1,7,-125,2013-03-22 01:33:03,2013-07-25 10:59:51,13008342MM10A,,2013-06-17,38,M,arrest case no charge,1,13049486TC10A,(M2),0,2013-12-30,Susp Drivers Lic 1st Offense,2013-12-30,2013-12-31,,0,,,,,Risk of Recidivism,8,High,2013-07-25,Risk of Violence,7,Medium,2013-07-25,2013-12-30,2013-12-31,7,0,158,1,1\r\n5967,attilla kennedy,attilla,kennedy,2013-04-02,Female,1976-03-06,40,25 - 45,African-American,0,10,0,0,13,752,2015-04-24 12:13:42,2015-08-10 11:42:44,12016990CF10A,2012-11-20,,133,F,Possession of Cocaine,1,13006385CF10A,(F3),,2013-05-03,Possession of Cocaine,,,,1,15005350CF10A,(F3),2015-04-23,Felony Battery w/Prior Convict,Risk of Recidivism,10,High,2013-04-02,Risk of Violence,9,High,2013-04-02,2016-01-24,2016-02-20,13,0,31,1,1\r\n5968,joseph wain,joseph,wain,2014-02-12,Male,1959-03-16,57,Greater than 45,Caucasian,0,4,0,0,9,-1,2014-02-11 12:56:17,2014-04-11 03:35:53,14001922CF10A,2014-02-11,,1,F,Possession of Cocaine,1,14011842MM10A,(M1),0,2014-08-05,Trespass Other Struct/Convey,2014-08-05,2014-10-14,,0,,,,,Risk of Recidivism,4,Low,2014-02-12,Risk of Violence,1,Low,2014-02-12,2014-08-05,2014-10-14,9,58,174,1,1\r\n5969,justin owen,justin,owen,2013-09-30,Male,1982-07-29,33,25 - 45,Caucasian,0,3,0,0,0,-2,2013-09-28 05:27:03,2013-09-29 02:36:28,13018478MM10A,2013-09-28,,2,M,Carrying A Concealed Weapon,1,15015043MU10A,(M1),0,2015-05-18,Possess Drug Paraphernalia,2015-05-18,2015-05-22,,0,,,,,Risk of Recidivism,3,Low,2013-09-30,Risk of Violence,2,Low,2013-09-30,2015-05-18,2015-05-22,0,0,595,1,1\r\n5970,luis molina,luis,molina,2013-05-29,Male,1983-11-06,32,25 - 45,Caucasian,0,1,0,0,2,0,2013-05-29 04:36:00,2013-05-30 04:49:03,13007646CF10A,2013-05-29,,0,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-10-14,2013-10-15,2,1,138,0,0\r\n5971,jason ankney,jason,ankney,2013-09-09,Male,1969-02-06,47,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-09-08 01:42:14,2013-09-21 04:20:31,12018532CF10A,,2013-09-08,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2014-04-21,2014-06-17,3,12,224,0,0\r\n5973,brian dunn,brian,dunn,2013-06-27,Male,1964-06-14,51,Greater than 45,Caucasian,0,1,0,0,6,11,2013-07-08 12:32:59,2013-07-27 02:06:07,13010072MM10A,2013-05-25,,33,M,Viol Injunct Domestic Violence,1,13014159CF10A,(F3),0,2013-10-09,Use Computer for Child Exploit,2013-10-09,2014-11-26,,0,,,,,Risk of Recidivism,1,Low,2013-06-27,Risk of Violence,1,Low,2013-06-27,2013-07-08,2013-07-27,6,0,11,0,1\r\n5974,kionte martin,kionte,martin,2013-08-09,Male,1993-08-14,22,Less than 25,African-American,0,6,1,0,1,-1,2013-08-08 01:54:57,2013-08-09 08:15:00,13011146CF10A,2013-08-08,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-09,Risk of Violence,7,Medium,2013-08-09,2013-08-08,2013-08-09,1,0,966,0,0\r\n5975,bernardo camejo,bernardo,camejo,2014-02-20,Male,1968-08-09,47,Greater than 45,Caucasian,0,1,0,0,2,-1,2014-02-19 05:36:32,2014-02-21 04:14:33,14002337CF10A,2014-02-19,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-20,Risk of Violence,2,Low,2014-02-20,2014-02-19,2014-02-21,2,1,771,0,0\r\n5976,brandon weiner,brandon,weiner,2014-03-20,Male,1988-02-04,28,25 - 45,Caucasian,0,1,0,0,1,-21,2014-02-27 01:06:00,2014-02-27 01:18:34,14002736CF10A,2014-02-26,,22,F,Possession of Cocaine,1,15001687MM10A,(M1),0,2015-02-10,Petit Theft $100- $300,2015-02-10,2015-02-11,,0,,,,,Risk of Recidivism,1,Low,2014-03-20,Risk of Violence,2,Low,2014-03-20,2015-02-10,2015-02-11,1,0,327,1,1\r\n5977,jeffrey dorval,jeffrey,dorval,2014-12-04,Male,1995-03-24,21,Less than 25,African-American,0,10,0,1,1,117,2015-03-31 04:00:51,2015-05-12 02:32:00,14016114CF10A,2014-12-03,,1,F,Burglary Conveyance Unoccup,1,15007997CF10A,(M1),1,2015-06-19,Resist/Obstruct W/O Violence,2015-06-20,2015-06-23,,0,,,,,Risk of Recidivism,10,High,2014-12-04,Risk of Violence,9,High,2014-12-04,2015-03-31,2015-05-12,1,0,117,0,1\r\n5978,tyrone baptiste,tyrone,baptiste,2013-08-10,Male,1988-03-12,28,25 - 45,African-American,0,8,0,0,5,-1,2013-08-09 10:07:19,2013-09-13 07:58:19,13011203CF10A,2013-08-08,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-10,Risk of Violence,4,Low,2013-08-10,2013-11-26,2014-02-27,5,34,108,0,0\r\n5981,yvette paret,yvette,paret,2014-06-03,Female,1971-05-19,44,25 - 45,Caucasian,0,1,0,0,1,0,2014-06-03 01:15:13,2014-06-09 09:06:56,14008758MM10A,2014-06-02,,1,M,Battery,1,15021726MU10A,(M2),0,2015-07-25,Lve/Scen/Acc/Veh/Prop/Damage,2015-07-25,2015-07-26,,0,,,,,Risk of Recidivism,1,Low,2014-06-03,Risk of Violence,1,Low,2014-06-03,2015-07-25,2015-07-26,1,6,417,1,1\r\n5982,michael sutton,michael,sutton,2013-05-08,Male,1990-05-15,25,25 - 45,African-American,0,4,0,0,0,0,2013-05-08 12:23:25,2013-05-11 04:23:41,13006529CF10A,2013-05-07,,1,F,Felony Battery (Dom Strang),1,14059679TC20A,(M2),,2014-08-09,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-08,Risk of Violence,3,Low,2013-05-08,2013-05-08,2013-05-11,0,3,458,1,1\r\n5984,william neal,william,neal,2014-02-12,Male,1981-07-23,34,25 - 45,African-American,0,2,0,0,4,-1,2014-02-11 09:02:44,2014-02-12 08:26:32,14002367MM10A,2014-02-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-12,Risk of Violence,2,Low,2014-02-12,2014-02-11,2014-02-12,4,0,779,0,0\r\n5985,robert diers,robert,diers,2013-02-22,Male,1951-03-30,65,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-22 04:53:05,2013-02-23 04:06:29,13003749MM10A,2013-02-22,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-22,Risk of Violence,1,Low,2013-02-22,2013-03-15,2013-04-07,0,1,21,0,0\r\n5987,christopher harwood,christopher,harwood,2013-02-05,Male,1982-06-16,33,25 - 45,Caucasian,0,6,0,0,5,0,2013-02-05 02:32:29,2013-06-04 09:05:37,13001764CF10A,2013-02-04,,1,F,Driving While License Revoked,1,14057265TC30A,(M2),,2014-07-06,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-05,Risk of Violence,6,Medium,2013-02-05,2013-02-05,2013-06-04,5,119,516,1,1\r\n5988,marialys hollmann,marialys,hollmann,2013-03-24,Female,1992-07-29,23,Less than 25,Caucasian,0,3,0,0,0,-1,2013-03-23 09:45:20,2013-03-24 06:30:07,13005714MM10A,2013-03-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-24,Risk of Violence,3,Low,2013-03-24,2013-03-23,2013-03-24,0,0,1104,0,0\r\n5989,maggi allaire,maggi,allaire,2014-01-27,Female,1971-07-01,44,25 - 45,Caucasian,0,1,0,0,0,-2,2014-01-25 02:52:12,2014-01-26 02:01:51,14001425MM10A,2014-01-25,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2014-01-25,2014-01-26,0,0,795,0,0\r\n5990,zamir villeda,zamir,villeda,2013-03-06,Male,1994-09-10,21,Less than 25,Hispanic,1,8,0,0,1,88,2013-06-02 03:07:52,2014-11-11 05:11:05,12002996CF10A,,2012-04-19,321,F,arrest case no charge,1,13007811CF10A,(F3),1,2013-06-01,Resist Officer w/Violence,2013-06-02,2014-11-11,,1,13007811CF10A,(F3),2013-06-01,Battery on Law Enforc Officer,Risk of Recidivism,8,High,2013-03-06,Risk of Violence,9,High,2013-03-06,2015-06-30,2015-08-08,1,0,87,1,1\r\n5992,donnell george,donnell,george,2013-01-22,Male,1991-08-16,24,Less than 25,African-American,0,3,0,0,1,-1,2013-01-21 11:07:10,2013-01-22 01:58:45,13001429MM10A,2013-01-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-22,Risk of Violence,5,Medium,2013-01-22,2013-01-21,2013-01-22,1,0,1165,0,0\r\n5993,edward dulom,edward,dulom,2013-12-01,Male,1964-09-30,51,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-11-30 06:59:05,2013-12-01 12:41:20,13022330MM10A,2013-11-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-01,Risk of Violence,1,Low,2013-12-01,2013-11-30,2013-12-01,1,0,852,0,0\r\n5994,myesha jeff,myesha,jeff,2013-04-21,Female,1995-03-23,21,Less than 25,African-American,0,8,0,0,0,-1,2013-04-20 11:44:52,2013-04-22 06:49:06,13005665CF10A,2013-04-20,,1,F,Battery on Law Enforc Officer,1,14008360MM10A,(M2),0,2014-05-24,Trespass Struct/Conveyance,2014-05-24,2014-05-25,,0,,,,,Risk of Recidivism,8,High,2013-04-21,Risk of Violence,7,Medium,2013-04-21,2014-05-24,2014-05-25,0,1,398,1,1\r\n5995,joshua drew,joshua,drew,2013-09-17,Male,1977-04-16,39,25 - 45,Caucasian,0,6,0,0,6,-1,2013-09-16 04:22:28,2013-09-17 01:52:57,13011664CF10A,,2013-09-16,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-17,Risk of Violence,2,Low,2013-09-17,2013-09-16,2013-09-17,6,0,927,0,0\r\n5996,lecharles coakley,lecharles,coakley,2014-10-07,Male,1987-03-12,29,25 - 45,African-American,0,8,0,0,29,-1,2014-10-06 07:50:51,2014-10-11 08:37:47,14013479CF10A,2014-10-06,,1,F,Poss Contr Subst W/o Prescript,1,14013735CF10A,(F3),0,2014-10-11,Possession of Cocaine,2014-10-11,2014-12-18,,0,,,,,Risk of Recidivism,8,High,2014-10-07,Risk of Violence,9,High,2014-10-07,2014-10-11,2014-12-18,29,4,4,1,1\r\n5997,jedidiah rocha,jedidiah,rocha,2013-12-03,Male,1991-07-14,24,Less than 25,Caucasian,0,6,0,0,1,-5,2013-11-28 09:36:08,2013-11-29 01:37:48,13016555CF10A,2013-11-28,,5,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-03,Risk of Violence,4,Low,2013-12-03,2013-11-28,2013-11-29,1,0,850,0,0\r\n6000,tavia johnson,tavia,johnson,2013-01-11,Female,1992-10-07,23,Less than 25,African-American,0,5,0,0,0,-1,2013-01-10 05:54:58,2013-01-12 12:41:14,13000433CF10A,2013-01-10,,1,F,Possession Burglary Tools,1,14002851MM10A,(M1),,2013-12-17,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-11,Risk of Violence,5,Medium,2013-01-11,2013-01-10,2013-01-12,0,1,340,1,1\r\n6001,james baker,james,baker,2014-08-27,Male,1984-07-03,31,25 - 45,African-American,0,10,0,2,11,0,2014-08-27 12:36:35,2014-08-27 01:58:47,14011706CF10A,2014-08-26,,1,F,Poss Pyrrolidinovalerophenone,1,15009531MM10A,(M1),0,2015-09-08,Possess Cannabis/20 Grams Or Less,2015-09-08,2015-09-09,,1,15002947MM20A,(M1),2015-11-15,Battery,Risk of Recidivism,10,High,2014-08-27,Risk of Violence,7,Medium,2014-08-27,2015-09-08,2015-09-09,11,0,377,1,1\r\n6002,sabrina day,sabrina,day,2013-12-23,Female,1980-10-31,35,25 - 45,African-American,0,2,0,0,0,-1,2013-12-22 07:28:40,2013-12-23 01:00:39,13023599MM10A,2013-12-22,,1,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-22,2013-12-23,0,0,830,0,0\r\n6004,wisler vilcant,wisler,vilcant,2013-12-07,Male,1985-08-24,30,25 - 45,Other,0,1,0,0,0,-1,2013-12-06 07:43:48,2013-12-07 05:08:06,13016901CF10A,2013-12-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-07,Risk of Violence,1,Low,2013-12-07,2013-12-06,2013-12-07,0,0,846,0,0\r\n6005,john ballew,john,ballew,2013-10-31,Male,1981-10-21,34,25 - 45,Caucasian,0,7,0,0,8,-104,2013-07-19 07:56:06,2013-09-26 10:15:00,13010142CF10A,2013-07-19,,104,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-31,Risk of Violence,4,Low,2013-10-31,2015-11-05,2015-11-06,8,0,735,0,0\r\n6006,chaneka pace,chaneka,pace,2013-08-05,Female,1976-05-26,39,25 - 45,African-American,0,6,0,0,4,-3,2013-08-02 05:56:52,2013-08-05 11:16:27,13010929CF10A,2013-08-02,,3,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-05,Risk of Violence,1,Low,2013-08-05,2015-07-06,2015-07-07,4,0,700,0,0\r\n6009,robens joseph,robens,joseph,2013-10-21,Male,1986-09-19,29,25 - 45,African-American,0,2,0,0,6,702,2015-09-23 05:41:57,2015-09-28 07:54:58,13011806CF10A,2013-08-22,,60,M,Felony Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-21,Risk of Violence,2,Low,2013-10-21,2015-09-23,2015-09-28,6,0,702,0,0\r\n6010,noel medina,noel,medina,2013-10-06,Male,1965-03-25,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-05 03:53:47,2013-10-06 08:40:20,13018938MM10A,2013-10-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-06,Risk of Violence,1,Low,2013-10-06,2013-10-05,2013-10-06,0,0,908,0,0\r\n6011,richard hough,richard,hough,2013-05-16,Male,1993-09-09,22,Less than 25,Caucasian,0,7,0,1,1,-1,2013-05-15 10:31:31,2014-01-07 05:52:28,13006949CF10A,,2013-05-12,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-16,Risk of Violence,5,Medium,2013-05-16,2013-05-15,2014-01-07,1,236,1051,0,0\r\n6013,rachel gonzales,rachel,gonzales,2013-11-08,Male,1986-09-05,29,25 - 45,Caucasian,0,2,0,0,2,-24,2013-10-15 09:16:10,2013-11-07 08:56:00,13014430CF10A,,2013-10-15,24,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-08,Risk of Violence,3,Low,2013-11-08,2013-10-15,2013-11-07,2,0,875,0,0\r\n6014,timothy castellano,timothy,castellano,2014-04-09,Male,1980-11-19,35,25 - 45,Caucasian,0,8,0,0,8,-259,2013-07-24 09:11:27,2014-04-02 12:43:51,12005047CF10A,,2013-07-24,259,F,arrest case no charge,1,16000763MM10A,(M2),0,2016-01-09,Prowling/Loitering,2016-01-09,2016-02-02,,0,,,,,Risk of Recidivism,8,High,2014-04-09,Risk of Violence,4,Low,2014-04-09,2016-01-09,2016-02-02,8,0,640,1,1\r\n6019,artie pine,artie,pine,2013-02-19,Male,1983-05-13,32,25 - 45,Caucasian,0,2,0,0,6,-1,2013-02-18 11:11:06,2013-02-21 06:11:47,13002485CF10A,2013-02-18,,1,F,Attempted Burg/Convey/Unocc,1,13006170CF10A,(F3),42,2013-04-12,Grand Theft In The 3Rd Degree,2013-05-24,2014-01-19,,0,,,,,Risk of Recidivism,2,Low,2013-02-19,Risk of Violence,3,Low,2013-02-19,2013-02-18,2013-02-21,6,2,52,1,1\r\n6021,lee ferrell,lee,ferrell,2013-03-19,Male,1983-04-09,33,25 - 45,Caucasian,0,4,0,0,3,-16,2013-03-03 11:33:17,2013-03-15 06:19:23,13004319MM10A,2013-03-03,,16,M,Battery,1,13010984CF10A,(F3),,2013-06-07,Felony Battery w/Prior Convict,,,,1,13010984CF10A,(F3),2013-06-07,Felony Battery w/Prior Convict,Risk of Recidivism,4,Low,2013-03-19,Risk of Violence,3,Low,2013-03-19,2015-09-23,2015-10-15,3,0,80,1,1\r\n6022,daniel buchner,daniel,buchner,2014-03-09,Male,1958-02-02,58,Greater than 45,Caucasian,0,3,0,0,5,-1,2014-03-08 04:26:56,2014-03-09 09:55:00,14003306CF10A,2014-03-08,,1,F,Grand Theft in the 3rd Degree,1,14004494CF10A,(F3),0,2014-03-31,Grand Theft in the 3rd Degree,2014-03-31,2015-05-19,,0,,,,,Risk of Recidivism,3,Low,2014-03-09,Risk of Violence,1,Low,2014-03-09,2014-03-31,2015-05-19,5,0,22,1,1\r\n6023,brunel petit-frere,brunel,petit-frere,2013-02-21,Male,1962-02-09,54,Greater than 45,Other,0,1,0,0,0,-1,2013-02-20 08:56:34,2013-03-20 07:19:46,13002614CF10A,2013-02-20,,1,F,Aggravated Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-21,Risk of Violence,1,Low,2013-02-21,2013-02-20,2013-03-20,0,27,1135,0,0\r\n6024,andrew ivy,andrew,ivy,2014-03-05,Male,1985-06-28,30,25 - 45,African-American,0,2,0,0,3,-166,2013-09-20 03:50:32,2013-09-21 04:35:03,13014777CF10A,2013-09-20,,166,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-05,Risk of Violence,2,Low,2014-03-05,2015-06-25,2015-07-06,3,0,477,0,0\r\n6027,matias williams,matias,williams,2013-05-09,Male,1982-09-08,33,25 - 45,African-American,0,9,0,0,2,-1,2013-05-08 01:33:45,2013-06-05 09:48:02,13006604CF10A,2013-05-04,,5,F,Robbery W/Firearm,1,15006825MM10A,(M2),0,2015-06-03,Trespass Struct/Conveyance,2015-06-03,2015-07-03,,0,,,,,Risk of Recidivism,9,High,2013-05-09,Risk of Violence,5,Medium,2013-05-09,2015-06-03,2015-07-03,2,27,755,1,1\r\n6029,kimoy campbell,kimoy,campbell,2013-03-06,Male,1991-08-19,24,Less than 25,African-American,0,3,0,0,0,63,2013-05-08 02:09:24,2013-05-18 02:09:40,13003362CF10A,2013-03-05,,1,F,Grand Theft in the 3rd Degree,1,13006568CF10A,(F3),0,2013-05-08,Grand Theft in the 3rd Degree,2013-05-08,2013-05-18,,0,,,,,Risk of Recidivism,3,Low,2013-03-06,Risk of Violence,5,Medium,2013-03-06,2013-05-08,2013-05-18,0,0,63,1,1\r\n6030,jean valcourt,jean,valcourt,2013-10-01,Male,1968-03-19,48,Greater than 45,African-American,0,4,0,0,10,0,2013-10-01 05:10:48,2014-03-25 08:17:12,13013771CF10A,2013-10-01,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-01,Risk of Violence,1,Low,2013-10-01,2013-10-01,2014-03-25,10,175,913,0,0\r\n6032,david walters,david,walters,2013-11-24,Male,1992-10-11,23,Less than 25,African-American,0,8,0,0,0,-1,2013-11-23 05:23:08,2013-11-26 09:28:08,13022026MM10A,2013-11-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-24,Risk of Violence,7,Medium,2013-11-24,2013-11-23,2013-11-26,0,2,859,0,0\r\n6034,louis tieso,louis,tieso,2013-09-19,Male,1993-04-09,23,Less than 25,Caucasian,0,7,0,0,2,-1,2013-09-18 08:45:23,2013-10-03 12:14:36,13013179CF10A,2013-09-18,,1,F,Grand Theft in the 3rd Degree,1,14016785CF10A,(M2),1,2014-12-18,Lve/Scen/Acc/Veh/Prop/Damage,2014-12-19,2015-01-29,,1,15003343CF10A,(F1),2015-03-12,Robbery W/Firearm,Risk of Recidivism,7,Medium,2013-09-19,Risk of Violence,6,Medium,2013-09-19,2013-10-17,2013-10-18,2,14,28,0,1\r\n6035,rehan kazi,rehan,kazi,2013-10-13,Male,1968-08-09,47,Greater than 45,Asian,0,1,0,0,1,0,2013-10-13 02:20:11,2013-10-14 07:54:28,13019417MM10A,2013-10-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-13,Risk of Violence,1,Low,2013-10-13,2013-12-05,2013-12-06,1,1,53,0,0\r\n6036,james nelson,james,nelson,2013-05-02,Male,1994-06-14,21,Less than 25,Other,0,4,0,0,0,-1,2013-05-01 07:59:10,2013-05-03 09:30:47,13006266CF10A,2013-05-01,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-02,Risk of Violence,6,Medium,2013-05-02,2014-10-20,2014-10-24,0,1,536,0,0\r\n6040,joshua patterson,joshua,patterson,2014-09-15,Male,1986-09-10,29,25 - 45,African-American,0,9,0,0,0,-1,2014-09-14 10:42:07,2014-09-16 03:12:53,14013686MM10A,2014-09-14,,1,M,Battery,1,14082899TC40A,(M2),,2014-11-26,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2014-09-15,Risk of Violence,10,High,2014-09-15,2014-09-14,2014-09-16,0,1,72,1,1\r\n6041,ramon abreu,ramon,abreu,2014-02-25,Male,1967-12-05,48,Greater than 45,Caucasian,0,1,0,0,2,-1,2014-02-24 10:00:14,2014-02-25 09:19:31,14001974CF10A,,2014-02-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,1,Low,2014-02-25,2014-02-24,2014-02-25,2,0,766,0,0\r\n6042,jose carter,jose,carter,2013-02-08,Male,1978-12-19,37,25 - 45,Caucasian,0,4,0,0,4,-1,2013-02-07 09:43:49,2013-05-01 06:20:56,13002769MM10A,2013-02-07,,1,M,Battery,1,13012727CF10A,(F3),0,2013-09-09,Possession of Cocaine,2013-09-09,2013-09-11,,0,,,,,Risk of Recidivism,4,Low,2013-02-08,Risk of Violence,4,Low,2013-02-08,2013-09-09,2013-09-11,4,82,213,1,1\r\n6043,david guitar,david,guitar,2013-03-28,Male,1966-03-28,50,Greater than 45,Caucasian,0,3,0,0,3,-1,2013-03-27 09:19:27,2013-04-10 10:26:19,13004415CF10A,2013-03-27,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-27,2013-04-10,3,13,1100,0,0\r\n6044,quincy jean,quincy,jean,2014-11-09,Male,1996-05-26,19,Less than 25,African-American,0,8,0,0,3,-1,2014-11-08 05:43:24,2014-11-10 05:01:01,14015002CF10A,2014-11-08,,1,F,Burglary Dwelling Armed,1,15000596CF10A,(F3),,2015-01-09,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,8,High,2014-11-09,Risk of Violence,8,High,2014-11-09,2015-01-07,2015-09-26,3,1,61,1,1\r\n6045,sean miller,sean,miller,2013-12-09,Male,1977-01-09,39,25 - 45,Caucasian,0,3,0,0,2,,,,10026202MM10A,2010-11-08,,1127,M,Opert With Susp DL 2ND Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-09,Risk of Violence,1,Low,2013-12-09,,,2,0,844,0,0\r\n6046,michael jackson,michael,jackson,2013-02-01,Male,1966-09-02,49,Greater than 45,African-American,2,3,0,0,13,-1,2013-01-31 08:34:57,2013-02-01 01:50:18,13001572CF10A,2013-01-31,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-01,Risk of Violence,2,Low,2013-02-01,2013-01-31,2013-02-01,13,0,1155,0,0\r\n6047,brian todd,brian,todd,2014-02-21,Male,1958-01-08,58,Greater than 45,Caucasian,0,5,0,0,2,-1,2014-02-20 07:21:42,2014-02-25 08:15:11,14002433CF10A,2014-02-20,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-21,Risk of Violence,2,Low,2014-02-21,2014-02-20,2014-02-25,2,4,770,0,0\r\n6048,laurence couch,laurence,couch,2013-10-11,Male,1984-10-05,31,25 - 45,African-American,0,8,0,0,6,0,2013-10-11 04:20:25,2013-10-11 08:02:17,13014253CF10A,2013-10-11,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-11,Risk of Violence,6,Medium,2013-10-11,2013-11-25,2013-12-13,6,0,45,0,0\r\n6051,cedrick camper,cedrick,camper,2013-11-13,Male,1993-01-27,23,Less than 25,African-American,0,7,0,2,1,-1,2013-11-12 01:26:14,2013-11-13 01:00:19,13021304MM10A,2013-11-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-13,Risk of Violence,5,Medium,2013-11-13,2013-11-12,2013-11-13,1,0,870,0,0\r\n6055,juckendra toussaint,juckendra,toussaint,2014-05-08,Female,1992-12-06,23,Less than 25,African-American,0,3,0,0,0,0,2014-05-08 03:24:01,2014-05-09 02:12:07,14006419CF10A,2014-05-07,,1,F,Aggravated Assault W/Dead Weap,1,14015627CF10A,(F3),0,2014-11-20,Crimin Mischief Damage $1000+,2014-11-20,2014-11-21,,0,,,,,Risk of Recidivism,3,Low,2014-05-08,Risk of Violence,4,Low,2014-05-08,2014-11-20,2014-11-21,0,1,196,1,1\r\n6056,george bein,george,bein,2014-10-15,Male,1984-06-29,31,25 - 45,Caucasian,0,8,0,0,17,-1,2014-10-14 05:29:34,2014-10-15 08:39:11,14013841CF10A,2014-10-14,,1,F,Possession of Oxycodone,1,15001477CF10A,(F3),1,2015-02-01,Driving While License Revoked,2015-02-02,2015-02-03,,0,,,,,Risk of Recidivism,8,High,2014-10-15,Risk of Violence,8,High,2014-10-15,2015-06-16,2015-07-27,17,0,109,1,1\r\n6058,leon wallace,leon,wallace,2013-01-03,Male,1983-04-15,33,25 - 45,Other,0,1,0,0,0,-1,2013-01-02 10:07:28,2013-03-27 01:38:36,13000069CF10A,,2013-01-02,1,F,arrest case no charge,1,14008015MM10A,(M1),0,2014-05-17,Viol Injunct Domestic Violence,2014-05-17,2014-05-18,,1,16002185MM10A,(M1),2016-03-05,Battery,Risk of Recidivism,1,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2014-05-17,2014-05-18,0,83,499,1,1\r\n6062,michael campanile,michael,campanile,2013-09-25,Male,1958-08-03,57,Greater than 45,Caucasian,0,2,0,0,6,-23,2013-09-02 03:00:19,2013-09-03 07:50:44,13012396CF10A,2013-09-01,,24,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-25,Risk of Violence,2,Low,2013-09-25,2013-09-02,2013-09-03,6,0,919,0,0\r\n6064,brooke bassininsky,brooke,bassininsky,2013-12-16,Female,1984-11-21,31,25 - 45,Caucasian,0,2,0,0,0,-3,2013-12-13 09:11:19,2013-12-14 03:44:07,13023149MM10A,2013-12-13,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-16,Risk of Violence,2,Low,2013-12-16,2013-12-13,2013-12-14,0,0,837,0,0\r\n6065,clarence jackson,clarence,jackson,2013-05-19,Male,1958-12-29,57,Greater than 45,African-American,0,6,0,0,19,-1,2013-05-18 08:31:01,2013-05-21 12:47:29,13007095CF10A,2013-05-18,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-19,Risk of Violence,1,Low,2013-05-19,2014-04-10,2014-04-10,19,2,326,0,0\r\n6066,larry derose,larry,derose,2013-11-11,Male,1958-07-08,57,Greater than 45,Caucasian,0,5,0,0,12,0,2013-11-11 02:40:13,2013-11-14 09:18:15,13021252MM10A,2013-11-10,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-11,Risk of Violence,1,Low,2013-11-11,2014-06-09,2014-06-09,12,3,210,0,0\r\n6067,antwon belgrave,antwon,belgrave,2014-07-17,Male,1987-02-27,29,25 - 45,African-American,0,7,0,0,6,-1,2014-07-16 09:21:50,2014-07-17 08:04:10,14010893MM10A,2014-07-16,,1,M,Battery,1,15016070CF10A,(F3),0,2015-12-11,Grand Theft (Motor Vehicle),2015-12-11,2015-12-12,,0,,,,,Risk of Recidivism,7,Medium,2014-07-17,Risk of Violence,4,Low,2014-07-17,2015-12-11,2015-12-12,6,0,512,1,1\r\n6070,cynthia jacobs,cynthia,jacobs,2013-05-10,Male,1985-04-30,30,25 - 45,African-American,0,1,0,0,0,0,2013-05-10 02:26:42,2013-05-10 08:16:26,13009082MM10A,2013-05-10,,0,M,Battery,1,15001619CF10A,(M2),0,2015-02-04,Expired DL More Than 6 Months,2015-02-04,2015-02-04,,0,,,,,Risk of Recidivism,1,Low,2013-05-10,Risk of Violence,1,Low,2013-05-10,2015-02-04,2015-02-04,0,0,635,0,1\r\n6071,calvin sims,calvin,sims,2013-12-15,Male,1971-01-31,45,Greater than 45,African-American,0,3,0,0,11,-1,2013-12-14 09:06:52,2013-12-15 08:50:15,13017297CF10A,2013-12-14,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-15,Risk of Violence,3,Low,2013-12-15,2013-12-14,2013-12-15,11,0,838,0,0\r\n6073,daniel urrea,daniel,urrea,2013-12-15,Male,1973-11-05,42,25 - 45,Caucasian,0,5,0,0,0,0,2013-12-15 06:01:30,2013-12-15 08:40:14,13017335CF10A,2013-12-15,,0,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-15,Risk of Violence,2,Low,2013-12-15,2013-12-15,2013-12-15,0,0,838,0,0\r\n6074,steve rosewell,steve,rosewell,2013-05-15,Male,1967-11-02,48,Greater than 45,Other,0,2,0,0,7,-1,2013-05-14 06:11:09,2013-05-15 02:02:18,13006894CF10A,2013-05-14,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-15,Risk of Violence,2,Low,2013-05-15,2013-05-14,2013-05-15,7,0,1052,0,0\r\n6075,darius vaden,darius,vaden,2013-05-04,Male,1987-01-20,29,25 - 45,African-American,0,8,2,0,12,0,2013-05-04 03:56:55,2013-05-16 09:19:37,13006398CF10A,2013-05-03,,1,F,Tampering With Physical Evidence,1,13114974TC30A,(M2),,2013-10-23,Reckless Driving,,,,0,,,,,Risk of Recidivism,8,High,2013-05-04,Risk of Violence,5,Medium,2013-05-04,2013-05-04,2013-05-16,12,12,172,1,1\r\n6077,matthew arboleda,matthew,arboleda,2013-05-25,Male,1993-03-28,23,Less than 25,Caucasian,0,4,0,0,0,521,2014-10-28 07:54:03,2014-11-04 09:20:29,13007450CF10A,2013-05-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-25,Risk of Violence,5,Medium,2013-05-25,2014-10-28,2014-11-04,0,0,521,0,0\r\n6078,jamie hamilton,jamie,hamilton,2013-12-02,Female,1987-09-28,28,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-01 11:59:34,2013-12-02 09:37:16,13016640CF10A,2013-12-01,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-02,Risk of Violence,2,Low,2013-12-02,2013-12-01,2013-12-02,0,0,851,0,0\r\n6079,gayvon garrett,gayvon,garrett,2013-04-01,Male,1974-07-13,41,25 - 45,African-American,0,7,0,0,3,,,,09006688CF10A,2009-04-09,,1453,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-01,Risk of Violence,3,Low,2013-04-01,,,3,0,1096,0,0\r\n6080,tazomi natta,tazomi,natta,2013-04-27,Male,1990-07-28,25,25 - 45,African-American,0,2,0,0,1,-1,2013-04-26 03:45:27,2013-04-27 07:36:12,13008099MM10A,2013-04-26,,1,M,Battery,1,14002675CF10A,(F2),8,2014-02-17,Throw Deadly Missile Into Veh,2014-02-25,2014-02-27,,1,14002675CF10A,(F3),2014-02-17,Aggravated Assault w/Firearm,Risk of Recidivism,2,Low,2013-04-27,Risk of Violence,3,Low,2013-04-27,2015-11-19,2020-01-01,1,0,296,1,1\r\n6081,lorraine rivera,lorraine,rivera,2013-08-05,Female,1981-10-14,34,25 - 45,Caucasian,0,5,0,0,3,-1,2013-08-04 09:41:27,2013-08-14 10:01:13,13014594MM10A,2013-08-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-05,Risk of Violence,2,Low,2013-08-05,2013-08-04,2013-08-14,3,9,970,0,0\r\n6082,grover gaines,grover,gaines,2013-06-17,Male,1962-09-24,53,Greater than 45,African-American,0,5,0,0,26,,,,13008311CF10A,2013-06-12,,5,F,Possession of Cocaine,1,13054632TC40A,(M2),,2013-07-18,Ped Obstruct Traf/No Permit Sol,,,,0,,,,,Risk of Recidivism,5,Medium,2013-06-17,Risk of Violence,4,Low,2013-06-17,,,26,0,31,1,1\r\n6083,alexis vidot,alexis,vidot,2013-04-18,Female,1987-12-03,28,25 - 45,African-American,0,3,0,0,1,-87,2013-01-21 07:26:21,2013-01-23 04:23:00,13000992CF10A,2013-01-21,,87,F,Battery on Law Enforc Officer,1,15001275MM10A,(M1),0,2015-01-31,Resist/Obstruct W/O Violence,2015-01-31,2015-01-31,,0,,,,,Risk of Recidivism,3,Low,2013-04-18,Risk of Violence,3,Low,2013-04-18,2015-01-31,2015-01-31,1,0,653,0,1\r\n6084,antonio jarrett,antonio,jarrett,2013-12-13,Male,1988-05-26,27,25 - 45,African-American,0,2,0,0,0,-1,2013-12-12 02:19:40,2013-12-13 02:51:00,13017204CF10A,2013-12-12,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-13,Risk of Violence,4,Low,2013-12-13,2013-12-12,2013-12-13,0,0,840,0,0\r\n6085,fredrick adger,fredrick,adger,2013-10-07,Male,1976-09-02,39,25 - 45,African-American,0,4,0,0,4,0,2013-10-07 04:26:58,2013-11-16 08:34:09,13014064CF10A,2013-10-07,,0,F,Aggrav Child Abuse-Agg Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,2,Low,2013-10-07,2013-10-07,2013-11-16,4,40,907,0,0\r\n6087,wendy wilson,wendy,wilson,2013-01-09,Female,1961-01-29,55,Greater than 45,Caucasian,0,4,0,0,6,1001,2015-10-07 07:01:04,2015-11-13 05:08:21,12009689CF10A,2012-07-01,,192,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-09,Risk of Violence,1,Low,2013-01-09,2015-10-07,2015-11-13,6,0,1001,0,0\r\n6089,ladarious smith,ladarious,smith,2013-11-25,Male,1989-04-05,27,25 - 45,African-American,0,5,0,0,4,-1,2013-11-24 12:20:22,2014-01-14 08:48:27,13016142CF10A,,2013-11-24,1,F,arrest case no charge,1,14011034MM10A,(M1),0,2014-07-19,Battery,2014-07-19,2014-08-23,,1,14011034MM10A,(M1),2014-07-19,Battery,Risk of Recidivism,5,Medium,2013-11-25,Risk of Violence,6,Medium,2013-11-25,2014-07-19,2014-08-23,4,50,236,1,1\r\n6094,zhivago walker,zhivago,walker,2014-12-03,Male,1985-12-25,30,25 - 45,Caucasian,0,10,0,1,7,-1,2014-12-02 11:20:45,2014-12-03 07:51:56,14016083CF10A,2014-12-02,,1,F,Dealing in Stolen Property,1,15004555CF10A,(M1),1,2015-04-06,Possess Cannabis/20 Grams Or Less,2015-04-07,2015-04-07,,0,,,,,Risk of Recidivism,10,High,2014-12-03,Risk of Violence,8,High,2014-12-03,2015-04-07,2015-04-07,7,0,124,1,1\r\n6095,keion mickles,keion,mickles,2013-01-12,Male,1984-10-02,31,25 - 45,African-American,3,10,0,1,15,-1,2013-01-11 12:15:23,2013-01-16 05:45:04,13000708MM10A,2013-01-11,,1,M,Battery,1,13011616TC10A,(M2),,2013-01-28,Driving License Suspended,,,,0,,,,,Risk of Recidivism,10,High,2013-01-12,Risk of Violence,4,Low,2013-01-12,2013-01-11,2013-01-16,15,4,16,1,1\r\n6096,sean holder,sean,holder,2014-12-24,Male,1995-10-20,20,Less than 25,African-American,0,9,0,1,1,-1,2014-12-23 11:29:47,2014-12-24 08:59:25,15000853CF10A,2014-12-23,,1,M,Aggravated Battery / Pregnant,1,15001912TC10A,(M2),0,2014-12-28,Reckless Driving,2014-12-28,2015-03-05,,0,,,,,Risk of Recidivism,9,High,2014-12-24,Risk of Violence,8,High,2014-12-24,2014-12-28,2015-03-05,1,0,4,1,1\r\n6097,lawrence andrews,lawrence,andrews,2014-05-25,Male,1989-11-27,26,25 - 45,Caucasian,0,9,0,0,2,-1,2014-05-24 08:49:20,2014-05-25 08:41:34,14007260CF10A,2014-05-24,,1,F,Aggravated Assault W/Dead Weap,1,14013516CF10A,(F3),77,2014-08-28,Felony Battery w/Prior Convict,2014-11-13,2014-11-21,,1,14013516CF10A,(F3),2014-08-28,Felony Battery w/Prior Convict,Risk of Recidivism,9,High,2014-05-25,Risk of Violence,8,High,2014-05-25,2016-03-16,2016-04-08,2,0,95,1,1\r\n6098,darwin monroe,darwin,monroe,2013-08-27,Male,1971-09-28,44,25 - 45,African-American,0,5,0,0,7,-49,2013-07-09 06:44:39,2013-08-05 08:54:24,13009611CF10A,2013-07-09,,49,F,Possession of Cocaine,1,14012031CF10A,(F3),265,2014-04-30,Grand Theft in the 3rd Degree,2015-01-20,2015-01-28,,0,,,,,Risk of Recidivism,5,Medium,2013-08-27,Risk of Violence,5,Medium,2013-08-27,2015-04-07,2015-05-23,7,0,246,1,1\r\n6099,joseph keel,joseph,keel,2013-05-21,Male,1983-04-17,33,25 - 45,African-American,0,10,0,0,17,,,,12004964CF10A,,2012-12-05,167,F,arrest case no charge,1,14012027CF10A,(F2),,2014-06-13,Throw In Occupied Dwell,,,,1,14012027CF10A,(F2),2014-06-13,Throw In Occupied Dwell,Risk of Recidivism,10,High,2013-05-21,Risk of Violence,10,High,2013-05-21,,,17,0,388,1,1\r\n6100,stephen castelli,stephen,castelli,2013-03-30,Male,1981-06-21,34,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-29 07:55:48,2013-03-30 08:06:44,13004525CF10A,2013-03-29,,1,F,Fleeing or Eluding a LEO,1,15000669TC10A,(M2),0,2015-01-06,Unlaw LicTag/Sticker Attach,2015-01-06,2015-01-12,,0,,,,,Risk of Recidivism,1,Low,2013-03-30,Risk of Violence,1,Low,2013-03-30,2015-01-06,2015-01-12,0,0,647,1,1\r\n6101,leung fong-aguilar,leung,fong-aguilar,2013-08-21,Male,1988-09-11,27,25 - 45,Caucasian,0,2,0,0,0,-1,2013-08-20 10:24:22,2013-08-21 07:44:13,13015840MM10A,2013-08-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-21,Risk of Violence,2,Low,2013-08-21,2013-08-20,2013-08-21,0,0,954,0,0\r\n6103,brian lucius,brian,lucius,2014-07-31,Male,1994-05-05,21,Less than 25,African-American,0,7,0,1,1,-414,2013-06-12 01:51:10,2013-06-13 04:01:32,13008338CF10A,2013-06-12,,414,F,Possession of Cannabis,1,15001768MM20A,(M2),,2015-06-29,Petit Theft,,,,0,,,,,Risk of Recidivism,7,Medium,2014-07-31,Risk of Violence,6,Medium,2014-07-31,2016-01-11,2016-01-12,1,0,333,1,1\r\n6105,jarvis jones,jarvis,jones,2013-10-10,Male,1987-03-24,29,25 - 45,African-American,0,2,0,0,4,-1,2013-10-09 04:48:19,2013-10-10 08:39:57,13014181CF10A,2013-10-09,,1,F,Felony Driving While Lic Suspd,1,16000978CF10A,(F3),0,2016-01-23,Use of Anti-Shoplifting Device,2016-01-23,2016-01-24,,0,,,,,Risk of Recidivism,2,Low,2013-10-10,Risk of Violence,2,Low,2013-10-10,2014-03-21,2014-03-22,4,0,162,0,0\r\n6106,derrius davis,derrius,davis,2013-08-24,Male,1988-08-20,27,25 - 45,African-American,0,6,0,0,7,-1,2013-08-23 11:30:37,2013-08-28 03:25:56,13011893CF10A,2013-08-23,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-24,Risk of Violence,4,Low,2013-08-24,2013-08-23,2013-08-28,7,4,951,0,0\r\n6107,yaneia camejogarzon,yaneia,camejogarzon,2014-01-01,Female,1991-08-14,24,Less than 25,Caucasian,0,8,0,0,0,-1,2013-12-31 05:48:21,2014-01-02 03:47:34,14000021CF10A,2013-12-31,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-01-01,Risk of Violence,5,Medium,2014-01-01,2015-03-17,2015-03-24,0,1,440,0,0\r\n6108,alphonso tanksley,alphonso,tanksley,2013-08-06,Male,1986-07-05,29,25 - 45,African-American,0,5,0,0,0,-1,2013-08-05 11:26:23,2013-08-06 01:01:16,13010976CF10A,2013-08-05,,1,F,Driving While License Revoked,1,14023342TC10A,(M2),,2014-06-08,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-06,Risk of Violence,4,Low,2013-08-06,2013-08-05,2013-08-06,0,0,306,1,1\r\n6109,tristan fernandez,tristan,fernandez,2013-09-11,Male,1995-08-11,20,Less than 25,Caucasian,0,3,0,0,0,-1,2013-09-10 10:25:50,2013-09-11 01:42:53,13012788CF10A,2013-09-10,,1,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-11,Risk of Violence,6,Medium,2013-09-11,2013-09-10,2013-09-11,0,0,933,0,0\r\n6110,lauren emigh,lauren,emigh,2013-11-22,Female,1992-07-18,23,Less than 25,Caucasian,0,3,0,0,0,-1,2013-11-21 02:57:55,2013-11-21 09:38:19,13016183CF10A,2013-11-21,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-22,Risk of Violence,3,Low,2013-11-22,2015-05-13,2015-06-25,0,0,537,0,0\r\n6111,veronica talavera,veronica,talavera,2013-01-02,Female,1967-10-28,48,Greater than 45,African-American,0,1,0,0,0,0,2013-01-02 02:49:09,2013-01-02 07:16:44,13000133MM10A,2013-01-02,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-02,Risk of Violence,1,Low,2013-01-02,2013-01-02,2013-01-02,0,0,1185,0,0\r\n6112,thaddeus thomas,thaddeus,thomas,2014-01-06,Male,1981-06-24,34,25 - 45,African-American,0,1,0,0,0,0,2014-01-06 03:46:05,2014-01-06 08:25:11,14000444MU10A,2014-01-06,,0,M,Driving Under The Influence,1,15068530TC40A,(M2),,2015-12-02,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-01-06,2014-01-06,0,0,695,1,1\r\n6113,deon mosley,deon,mosley,2013-02-18,Male,1969-10-09,46,Greater than 45,African-American,0,6,0,0,1,-1,2013-02-17 06:30:23,2013-02-18 06:32:36,13003416MM10A,2013-02-17,,1,M,Battery,1,14049922TC30A,(M2),86,2014-06-05,Operating W/O Valid License,2014-08-30,2014-08-30,,0,,,,,Risk of Recidivism,6,Medium,2013-02-18,Risk of Violence,4,Low,2013-02-18,2014-08-30,2014-08-30,1,0,472,1,1\r\n6114,shannon clark,shannon,clark,2013-08-21,Female,1974-11-01,41,25 - 45,Caucasian,0,5,0,0,3,-1,2013-08-20 06:27:59,2013-08-21 09:19:32,13011676CF10A,2013-08-20,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-21,Risk of Violence,2,Low,2013-08-21,2013-08-20,2013-08-21,3,0,954,0,0\r\n6116,shawniel smith,shawniel,smith,2013-08-02,Male,1990-02-16,26,25 - 45,African-American,0,6,0,0,3,-1,2013-08-01 09:19:34,2013-08-02 08:41:46,13010769CF10A,2013-08-01,,1,F,Del Cannabis At/Near Park,1,13092886TC30A,(M2),3,2013-09-06,Driving License Suspended,2013-09-09,2013-09-11,,0,,,,,Risk of Recidivism,6,Medium,2013-08-02,Risk of Violence,4,Low,2013-08-02,2013-10-02,2013-10-12,3,0,35,1,1\r\n6117,nathan edwards,nathan,edwards,2013-11-26,Male,1978-12-01,37,25 - 45,African-American,0,8,0,0,11,-1,2013-11-25 05:01:45,2013-11-26 11:39:12,13016417CF10A,2013-11-25,,1,F,Felony Driving While Lic Suspd,1,14014186MM10A,(M1),0,2014-09-25,Possess Drug Paraphernalia,2014-09-25,2014-10-21,,0,,,,,Risk of Recidivism,8,High,2013-11-26,Risk of Violence,6,Medium,2013-11-26,2014-01-13,2014-09-13,11,0,48,0,1\r\n6118,denise lefebvre,denise,lefebvre,2014-01-17,Female,1961-09-11,54,Greater than 45,Caucasian,0,5,0,0,7,-98,2013-10-11 10:08:29,2013-10-31 12:19:48,92019087CF10A,,2013-10-11,98,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-17,Risk of Violence,2,Low,2014-01-17,2013-10-11,2013-10-31,7,0,805,0,0\r\n6119,shantavia robinson,shantavia,robinson,2013-04-09,Female,1990-07-02,25,25 - 45,African-American,0,10,0,0,5,,,,12005762MM10A,2012-03-16,,389,M,Trespass Structure/Conveyance,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-09,Risk of Violence,9,High,2013-04-09,,,5,0,1088,0,0\r\n6123,briana angelini,briana,angelini,2013-12-20,Female,1994-03-03,22,Less than 25,Caucasian,0,3,0,0,2,-1,2013-12-19 08:49:18,2013-12-20 07:52:14,13017517CF10A,,2013-12-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-20,Risk of Violence,4,Low,2013-12-20,2013-12-19,2013-12-20,2,0,833,0,0\r\n6125,jocelyn ducardy,jocelyn,ducardy,2014-03-24,Male,1984-02-22,32,25 - 45,African-American,0,1,0,0,7,-1,2014-03-23 09:07:04,2014-03-24 02:30:02,14004092CF10A,2014-03-23,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-24,Risk of Violence,1,Low,2014-03-24,2014-03-23,2014-03-24,7,0,739,0,0\r\n6127,ray lambert,ray,lambert,2013-10-28,Male,1971-09-19,44,25 - 45,African-American,0,1,0,0,0,-1,2013-10-27 03:36:19,2013-10-29 04:11:32,13020339MM10A,2013-10-27,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-28,Risk of Violence,1,Low,2013-10-28,2015-03-04,2015-03-06,0,1,492,0,0\r\n6129,venorrice wells,venorrice,wells,2013-08-22,Male,1987-10-11,28,25 - 45,African-American,0,1,0,0,1,-90,2013-05-24 09:25:40,2013-07-12 01:01:04,13007436CF10A,2013-05-24,,90,F,Burglary Conveyance Assault/Bat,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-22,Risk of Violence,2,Low,2013-08-22,2013-05-24,2013-07-12,1,0,953,0,0\r\n6131,leroy rolle,leroy,rolle,2013-12-15,Male,1956-02-08,60,Greater than 45,African-American,0,1,0,0,3,-1,2013-12-14 11:18:05,2013-12-15 08:36:52,13023183MM10A,2013-12-14,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-15,Risk of Violence,1,Low,2013-12-15,2013-12-14,2013-12-15,3,0,838,0,0\r\n6133,joseph suarez,joseph,suarez,2013-02-13,Male,1967-02-06,49,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-13 12:43:40,2013-02-13 07:55:01,13002177CF10A,2013-02-12,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2013-02-13,2013-02-13,0,0,1143,0,0\r\n6134,christopher jones,christopher,jones,2013-09-30,Male,1983-08-04,32,25 - 45,African-American,0,4,0,0,9,-59,2013-08-02 03:29:13,2013-09-28 07:20:42,13010912CF10A,2013-08-01,,60,F,Robbery W/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-30,Risk of Violence,3,Low,2013-09-30,2013-08-02,2013-09-28,9,0,914,0,0\r\n6135,james francois,james,francois,2013-09-18,Male,1986-01-03,30,25 - 45,African-American,0,4,0,0,10,0,2013-09-18 03:06:31,2013-09-20 01:52:58,13017795MM10A,2013-09-18,,0,M,Battery,1,13021228MM10A,(M1),0,2013-11-11,Possess Cannabis/20 Grams Or Less,2013-11-11,2013-11-13,,1,14007748MM10A,(M1),2014-05-11,Battery,Risk of Recidivism,4,Low,2013-09-18,Risk of Violence,5,Medium,2013-09-18,2013-11-11,2013-11-13,10,2,54,1,1\r\n6137,jesse teplicki,jesse,teplicki,2013-01-16,Male,1964-04-16,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-15 03:54:42,2013-01-16 04:51:43,13000693CF10A,2013-01-15,,1,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-16,Risk of Violence,1,Low,2013-01-16,2013-01-15,2013-01-16,0,0,1171,0,0\r\n6139,latavia bertrane,latavia,bertrane,2014-02-22,Female,1988-12-20,27,25 - 45,African-American,0,10,0,0,1,,,,11005752CF10A,2011-04-03,,1056,M,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-02-22,Risk of Violence,9,High,2014-02-22,,,1,0,769,0,0\r\n6140,james gefrard,james,gefrard,2014-01-13,Male,1981-12-24,34,25 - 45,African-American,0,10,0,0,0,-1,2014-01-12 09:56:37,2014-01-14 01:14:37,14000523CF10A,2014-01-12,,1,F,Poss Wep Conv Felon,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-13,Risk of Violence,9,High,2014-01-13,2014-01-12,2014-01-14,0,1,809,0,0\r\n6143,gerard mariney,gerard,mariney,2013-05-11,Male,1960-12-12,55,Greater than 45,African-American,0,4,0,0,5,-1,2013-05-10 11:31:10,2013-05-14 01:32:21,13006732CF10A,2013-05-10,,1,F,Felony Battery w/Prior Convict,1,13011138MM10A,(M1),1,2013-06-09,Viol Pretrial Release Dom Viol,2013-06-10,2013-07-25,,1,14000515MM10A,(M1),2014-01-10,Battery,Risk of Recidivism,4,Low,2013-05-11,Risk of Violence,1,Low,2013-05-11,2013-05-10,2013-05-14,5,3,29,1,1\r\n6145,derek williams,derek,williams,2013-09-06,Male,1978-08-29,37,25 - 45,African-American,0,6,0,0,6,,,,12004489MM10A,2012-03-03,,552,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-06,Risk of Violence,5,Medium,2013-09-06,2005-12-08,2006-09-04,6,0,938,0,0\r\n6146,marc jean,marc,jean,2013-02-19,Male,1982-09-29,33,25 - 45,African-American,0,7,0,0,0,-1,2013-02-18 06:09:43,2013-02-19 01:30:31,13004166MM10A,2013-02-18,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-19,Risk of Violence,7,Medium,2013-02-19,2013-02-18,2013-02-19,0,0,1137,0,0\r\n6147,benjamin marsh,benjamin,marsh,2013-10-28,Male,1994-01-03,22,Less than 25,African-American,0,6,0,0,0,-1,2013-10-27 11:57:02,2013-10-28 07:35:03,13015016CF10A,2013-10-27,,1,F,Possession of Cannabis,1,15011779TC30A,(M2),119,2015-02-09,Unlaw LicTag/Sticker Attach,2015-06-08,2015-08-23,,0,,,,,Risk of Recidivism,6,Medium,2013-10-28,Risk of Violence,6,Medium,2013-10-28,2015-06-08,2015-08-23,0,0,469,1,1\r\n6148,nicole pratt,nicole,pratt,2013-05-01,Female,1989-02-05,27,25 - 45,African-American,0,2,0,0,0,0,2013-05-01 05:32:30,2013-05-02 12:23:41,13008466MM10A,2013-05-01,,0,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2013-05-01,2013-05-02,0,1,1066,0,0\r\n6149,bryan jolly,bryan,jolly,2014-04-30,Male,1996-03-05,20,Less than 25,African-American,0,5,0,2,0,-1,2014-04-29 08:43:43,2014-04-30 02:13:01,14005934CF10A,2014-04-29,,1,F,Uttering a Forged Instrument,1,14071119TC40A,(M2),168,2014-10-21,Driving License Suspended,2015-04-07,2015-04-07,,0,,,,,Risk of Recidivism,5,Medium,2014-04-30,Risk of Violence,7,Medium,2014-04-30,2016-01-15,2016-01-27,0,0,174,1,1\r\n6150,virgina tongyai,virgina,tongyai,2013-04-19,Male,1982-11-13,33,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-18 03:40:20,2013-06-11 01:18:17,13005554CF10A,2013-04-18,,1,F,Burglary Assault/Battery Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-19,Risk of Violence,2,Low,2013-04-19,2013-04-18,2013-06-11,0,53,1078,0,0\r\n6152,arrington montgomery,arrington,montgomery,2014-02-05,Male,1989-11-22,26,25 - 45,African-American,0,2,0,0,0,-1,2014-02-04 03:22:51,2014-02-06 09:10:51,14001958MM10A,2014-02-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-05,Risk of Violence,2,Low,2014-02-05,2014-02-04,2014-02-06,0,1,786,0,0\r\n6153,teras hope,teras,hope,2013-02-11,Male,1986-11-29,29,25 - 45,African-American,0,5,0,0,0,-1,2013-02-10 08:16:13,2013-02-12 05:23:27,13002935MM10A,2013-02-10,,1,M,DWLS Canceled Disqul 1st Off,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-11,Risk of Violence,2,Low,2013-02-11,2013-02-10,2013-02-12,0,1,1145,0,0\r\n6154,steve marcelin,steve,marcelin,2013-02-25,Male,1983-09-22,32,25 - 45,African-American,0,3,0,0,1,0,2013-02-25 06:09:27,2013-02-25 07:08:19,13003938MM10A,2013-02-25,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-25,Risk of Violence,4,Low,2013-02-25,2013-02-25,2013-02-25,1,0,1131,0,0\r\n6156,matthew graf,matthew,graf,2013-02-09,Male,1978-08-13,37,25 - 45,Caucasian,0,1,0,0,4,0,2013-02-09 12:56:56,2013-02-10 08:05:29,13002922MM10A,2013-02-09,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-09,Risk of Violence,1,Low,2013-02-09,2013-02-09,2013-02-10,4,1,1147,0,0\r\n6159,kenneth thomas,kenneth,thomas,2013-02-24,Male,1984-07-06,31,25 - 45,African-American,0,10,0,0,15,0,2013-02-24 02:24:03,2013-06-08 03:36:28,12015649CF10A,,2013-02-24,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-24,Risk of Violence,7,Medium,2013-02-24,2014-06-16,2014-06-16,15,104,477,0,0\r\n6160,omar wallace,omar,wallace,2013-04-24,Male,1986-07-14,29,25 - 45,African-American,0,8,0,0,6,-1,2013-04-23 07:39:01,2013-04-24 01:49:13,13005842CF10A,2013-04-23,,1,F,Driving While License Revoked,1,13014384MM10A,(M1),0,2013-07-30,Resist/Obstruct W/O Violence,2013-07-30,2013-08-08,,0,,,,,Risk of Recidivism,8,High,2013-04-24,Risk of Violence,4,Low,2013-04-24,2013-07-30,2013-08-08,6,0,97,1,1\r\n6161,michael marti,michael,marti,2013-04-06,Male,1984-08-13,31,25 - 45,African-American,0,4,0,0,6,0,2013-04-06 05:10:18,2013-05-17 06:20:04,12013508CF10A,,2013-04-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-06,Risk of Violence,2,Low,2013-04-06,2013-11-06,2013-12-12,6,41,214,0,0\r\n6162,summer sands,summer,sands,2013-11-13,Female,1980-03-07,36,25 - 45,Caucasian,0,3,0,0,2,-1,2013-11-12 12:13:54,2013-11-14 09:49:20,13015714CF10A,2013-11-12,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-13,Risk of Violence,3,Low,2013-11-13,2013-11-12,2013-11-14,2,1,870,0,0\r\n6163,rashon king,rashon,king,2013-12-01,Male,1980-05-04,35,25 - 45,African-American,0,6,0,0,4,-309,2013-01-26 01:59:45,2013-02-01 09:53:09,13021716MO10A,2013-11-11,,20,M,Poss Of Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-01,Risk of Violence,7,Medium,2013-12-01,2013-01-26,2013-02-01,4,0,852,0,0\r\n6164,thaffi wilson,thaffi,wilson,2014-02-24,Female,1978-10-19,37,25 - 45,African-American,0,1,0,0,1,-11,2014-02-13 01:39:00,2014-02-22 01:33:17,14002070CF10A,2014-02-13,,11,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-13,2014-02-22,1,0,767,0,0\r\n6165,patrick burrows,patrick,burrows,2013-04-20,Male,1981-10-31,34,25 - 45,Caucasian,0,2,0,0,5,-1,2013-04-19 03:20:12,2013-04-25 05:18:59,13007855MM10A,2013-03-08,,43,M,Petit Theft,1,13001415MM20A,(M2),,2013-05-17,Petit Theft,,,,1,15016210CF10A,(F2),2015-12-19,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,2,Low,2013-04-20,Risk of Violence,4,Low,2013-04-20,2013-04-19,2013-04-25,5,5,27,1,1\r\n6166,rolando hernandez,rolando,hernandez,2014-08-30,Male,1995-08-22,20,Less than 25,Caucasian,0,5,0,0,1,-1,2014-08-29 05:48:29,2014-08-30 09:16:54,14012982MM10A,2014-08-29,,1,M,Assault,1,16002934MM10A,(M2),0,2016-03-28,,2016-03-28,2016-03-29,,0,,,,,Risk of Recidivism,5,Medium,2014-08-30,Risk of Violence,7,Medium,2014-08-30,2016-03-28,2016-03-29,1,0,576,1,1\r\n6167,kim hopkins,kim,hopkins,2013-09-11,Female,1965-05-04,50,Greater than 45,African-American,0,6,0,0,12,316,2014-07-24 11:59:36,2015-10-02 09:23:38,12024138MM10A,2012-11-26,,289,M,Battery,1,14010110CF10A,(F3),0,2014-07-24,Tampering With Physical Evidence,2014-07-24,2015-10-02,,1,14010110CF10A,(F2),2014-07-24,Attempt Murder in the First Degree,Risk of Recidivism,6,Medium,2013-09-11,Risk of Violence,3,Low,2013-09-11,2014-07-24,2015-10-02,12,0,316,1,1\r\n6169,anthony benitez,anthony,benitez,2013-02-28,Male,1992-01-13,24,Less than 25,Caucasian,0,9,0,2,8,-1,2013-02-27 01:32:53,2013-04-03 09:32:01,13002974CF10A,2013-02-27,,1,F,Felony Petit Theft,1,13003723CF10A,(F3),59,2013-03-12,Grand Theft in the 3rd Degree,2013-05-10,2013-06-13,,0,,,,,Risk of Recidivism,9,High,2013-02-28,Risk of Violence,10,High,2013-02-28,2013-02-27,2013-04-03,8,0,12,1,1\r\n6170,devin clarke,devin,clarke,2014-11-28,Male,1986-10-01,29,25 - 45,African-American,0,9,1,0,8,-1,2014-11-27 10:56:48,2014-11-28 08:16:47,14016868MM10A,2014-11-27,,1,M,Battery,1,15018619TC10A,(M2),0,2015-06-27,Susp Drivers Lic 1st Offense,2015-06-27,2015-06-28,,0,,,,,Risk of Recidivism,9,High,2014-11-28,Risk of Violence,5,Medium,2014-11-28,2015-06-27,2015-06-28,8,0,211,1,1\r\n6171,felisha jones,felisha,jones,2013-06-21,Female,1971-01-17,45,Greater than 45,African-American,0,1,0,0,1,-4,2013-06-17 11:22:11,2013-06-20 09:23:01,13008542CF10A,2013-06-17,,4,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-21,Risk of Violence,1,Low,2013-06-21,2013-06-17,2013-06-20,1,0,1015,0,0\r\n6172,joshua gomez,joshua,gomez,2013-04-22,Male,1981-12-01,34,25 - 45,Caucasian,0,7,0,0,2,-1,2013-04-21 11:50:41,2013-04-22 07:29:47,13004818CF10A,,2013-04-21,1,F,arrest case no charge,1,13016503CF10A,(F3),,2013-07-14,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-22,Risk of Violence,6,Medium,2013-04-22,2013-08-08,2013-11-20,2,0,83,1,1\r\n6173,cephus melton,cephus,melton,2013-03-04,Male,1945-11-12,70,Greater than 45,African-American,0,1,0,0,0,-1,2013-03-03 05:55:08,2013-03-04 07:31:12,13004314MM10A,2013-03-03,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-03-03,2013-03-04,0,0,1124,0,0\r\n6175,ronald mccloud,ronald,mccloud,2013-08-23,Male,1989-10-25,26,25 - 45,African-American,0,4,0,0,2,607,2015-04-22 04:27:32,2015-05-29 09:39:22,10011424CF10A,,2010-06-23,1157,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-23,Risk of Violence,4,Low,2013-08-23,2015-04-22,2015-05-29,2,0,607,0,0\r\n6177,patrick frazier,patrick,frazier,2014-01-15,Male,1993-01-12,23,Less than 25,African-American,1,9,0,0,4,-1,2014-01-14 03:17:08,2014-01-17 03:58:38,13017444CF10A,,2014-01-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-15,Risk of Violence,9,High,2014-01-15,2015-05-26,2015-06-02,4,2,496,0,0\r\n6178,jonathan cooper,jonathan,cooper,2014-01-02,Male,1989-01-05,27,25 - 45,Caucasian,0,4,0,0,5,-12,2013-12-21 05:45:16,2013-12-23 06:49:08,14006947TC10A,2013-12-21,,12,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-02,Risk of Violence,3,Low,2014-01-02,2013-12-21,2013-12-23,5,0,820,0,0\r\n6179,walter gillett,walter,gillett,2013-05-19,Male,1972-02-09,44,25 - 45,Caucasian,0,6,0,0,6,-1,2013-05-18 09:16:54,2013-09-14 05:54:00,13007094CF10A,2013-05-18,,1,F,Grand Theft in the 3rd Degree,1,15047629TC20A,(M2),,2015-07-22,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-19,Risk of Violence,2,Low,2013-05-19,2013-05-18,2013-09-14,6,118,794,1,1\r\n6180,antonio rivera,antonio,rivera,2013-01-18,Male,1993-04-17,23,Less than 25,African-American,0,3,0,0,2,334,2013-12-18 06:29:40,2014-03-28 12:09:52,12017929CF10A,,2013-01-18,0,M,arrest case no charge,1,13016098CF10A,(F2),59,2013-10-20,Robbery / No Weapon,2013-12-18,2014-03-28,,1,13016098CF10A,(F2),2013-10-20,Robbery / No Weapon,Risk of Recidivism,3,Low,2013-01-18,Risk of Violence,4,Low,2013-01-18,2015-02-16,2015-03-04,2,0,275,1,1\r\n6182,nicholas lindsey,nicholas,lindsey,2013-02-26,Male,1989-10-11,26,25 - 45,African-American,0,5,0,0,0,-1,2013-02-25 09:12:24,2013-02-26 06:38:57,13003930MM10A,2013-02-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-26,Risk of Violence,3,Low,2013-02-26,2015-02-27,2015-02-28,0,0,731,0,0\r\n6183,alexis baldinger,alexis,baldinger,2013-03-07,Female,1992-07-05,23,Less than 25,Caucasian,0,6,0,0,2,-1,2013-03-06 09:57:15,2013-03-07 07:12:13,13004534MM10A,2013-03-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-07,Risk of Violence,4,Low,2013-03-07,2013-03-06,2013-03-07,2,0,1121,0,0\r\n6185,jeremy hoggins,jeremy,hoggins,2013-12-24,Male,1988-08-01,27,25 - 45,African-American,0,9,0,0,3,-1,2013-12-23 08:37:44,2013-12-31 03:38:53,14001859CF10A,,2013-12-24,0,F,arrest case no charge,1,15015168CF10A,(F3),,2015-11-22,Fraud Use/Persnl ID Info/Deceased,,,,0,,,,,Risk of Recidivism,9,High,2013-12-24,Risk of Violence,7,Medium,2013-12-24,2013-12-23,2013-12-31,3,7,698,1,1\r\n6189,mireya cuevas,mireya,cuevas,2013-01-14,Female,1970-01-05,46,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-01-13 01:54:20,2013-02-07 08:44:30,13000609CF10A,2013-01-12,,2,F,Felony Batt(Great Bodily Harm),1,16000872MM10A,(M1),0,2016-01-25,Battery,2016-01-25,2016-01-26,,1,16000872MM10A,(M1),2016-01-25,Battery,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,1,Low,2013-01-14,2016-01-25,2016-01-26,1,24,1106,1,0\r\n6191,ciprianna spann,ciprianna,spann,2013-05-08,Female,1988-12-08,27,25 - 45,African-American,1,5,0,0,1,0,2013-05-08 10:06:06,2013-06-04 06:24:40,08003834CF10A,,2013-05-08,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-08,Risk of Violence,4,Low,2013-05-08,2013-05-08,2013-06-04,1,27,1059,0,0\r\n6192,brad thompson,brad,thompson,2013-02-21,Male,1970-09-12,45,Greater than 45,Caucasian,0,2,0,0,7,-1,2013-02-20 05:56:15,2013-02-21 07:41:49,13004702CF10A,2013-02-20,,1,F,Felony Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-21,Risk of Violence,2,Low,2013-02-21,2013-02-20,2013-02-21,7,0,1135,0,0\r\n6193,antwain smith,antwain,smith,2013-10-21,Male,1973-12-27,42,25 - 45,African-American,0,5,0,0,1,-12,2013-10-09 12:43:56,2013-10-17 09:27:59,01007205MM10A,,2013-10-09,12,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-21,Risk of Violence,2,Low,2013-10-21,2013-10-09,2013-10-17,1,0,893,0,0\r\n6195,jessica garcia,jessica,garcia,2013-11-13,Female,1991-12-09,24,Less than 25,Caucasian,0,5,1,0,3,-1,2013-11-12 10:36:22,2013-11-13 01:14:05,13021308MM10A,2013-11-12,,1,M,Battery,1,15002208MM40A,(M2),,2015-05-22,Retail/Farm/Fare/Theft,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-13,Risk of Violence,5,Medium,2013-11-13,2013-12-09,2013-12-10,3,0,26,0,1\r\n6196,william wells,william,wells,2014-02-03,Male,1995-09-13,20,Less than 25,African-American,1,8,1,1,2,-1,2014-02-02 04:24:24,2014-02-04 07:47:01,14001274CF10A,,2014-02-02,1,F,arrest case no charge,1,15011750MM10A,(M2),1,2015-11-09,Petit Theft,2015-11-10,2015-11-10,,0,,,,,Risk of Recidivism,8,High,2014-02-03,Risk of Violence,7,Medium,2014-02-03,2014-02-02,2014-02-04,2,1,644,1,1\r\n6198,richard fiora,richard,fiora,2013-09-24,Male,1966-12-22,49,Greater than 45,Caucasian,0,4,0,0,3,0,2013-09-24 02:46:20,2013-09-24 07:16:50,13013433CF10A,2013-09-24,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-24,Risk of Violence,2,Low,2013-09-24,2014-04-10,2014-05-02,3,0,198,0,0\r\n6199,daryl culbertson,daryl,culbertson,2013-01-03,Male,1986-08-02,29,25 - 45,Caucasian,0,9,0,0,8,149,2013-06-01 10:11:38,2013-08-19 01:34:12,12010548CF10A,,2012-08-10,146,M,arrest case no charge,1,13010500MM10A,(M1),0,2013-06-01,Possess Drug Paraphernalia,2013-06-01,2013-08-19,,0,,,,,Risk of Recidivism,9,High,2013-01-03,Risk of Violence,7,Medium,2013-01-03,2013-06-01,2013-08-19,8,0,149,1,1\r\n6200,miguel palazuelos,miguel,palazuelos,2013-10-14,Male,1987-03-24,29,25 - 45,Hispanic,0,2,0,0,0,0,2013-10-14 05:56:17,2013-10-14 02:00:55,13014371CF10A,2013-10-14,,0,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-14,Risk of Violence,2,Low,2013-10-14,2013-10-14,2013-10-14,0,0,900,0,0\r\n6201,mary ledbetter,mary,ledbetter,2013-10-16,Female,1964-03-24,52,Greater than 45,Caucasian,0,1,0,0,1,-8,2013-10-08 04:39:44,2013-10-11 10:06:11,13014108CF10A,2013-10-08,,8,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-16,Risk of Violence,1,Low,2013-10-16,2013-11-21,2013-11-23,1,0,36,0,0\r\n6202,douglas pineda,douglas,pineda,2014-02-03,Male,1978-09-12,37,25 - 45,Hispanic,0,1,0,0,4,0,2014-02-03 03:30:54,2014-02-04 04:02:26,14001881MM10A,2014-02-03,,0,M,Battery,1,14011609TC20A,(M2),,2014-02-12,Operating W/O Valid License,,,,1,15016503CF10A,(F3),2015-12-27,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-03,2014-02-04,4,1,9,1,1\r\n6203,phillip frost,phillip,frost,2013-03-18,Male,1990-04-05,26,25 - 45,African-American,0,3,0,0,1,-1,2013-03-17 01:16:50,2013-03-24 03:44:00,13005218MM10A,2013-03-17,,1,M,Battery,1,15041727TC20A,(M2),,2015-07-18,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-18,Risk of Violence,4,Low,2013-03-18,2013-03-17,2013-03-24,1,6,852,1,0\r\n6205,horace lake,horace,lake,2013-01-09,Male,1962-06-16,53,Greater than 45,African-American,0,1,0,0,15,-1,2013-01-08 11:04:23,2013-03-30 09:14:29,13000302CF10A,2013-01-08,,1,F,Felony Driving While Lic Suspd,1,13008271CF10A,(M1),0,2013-06-11,Resist/Obstruct W/O Violence,2013-06-11,2013-06-12,,0,,,,,Risk of Recidivism,1,Low,2013-01-09,Risk of Violence,2,Low,2013-01-09,2013-06-11,2013-06-12,15,80,153,1,1\r\n6206,marcelo silva,marcelo,silva,2014-01-23,Male,1968-06-04,47,Greater than 45,Hispanic,0,1,0,0,1,-27,2013-12-27 08:28:22,2014-01-13 09:12:03,10014588CF10A,,2013-12-27,27,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-23,Risk of Violence,1,Low,2014-01-23,2013-12-27,2014-01-13,1,0,799,0,0\r\n6207,henry brown,henry,brown,2013-04-03,Male,1977-10-03,38,25 - 45,African-American,0,8,0,0,0,-1,2013-04-02 10:50:01,2015-04-21 12:35:32,13006463MM10A,2013-04-02,,1,M,Extradition/Defendants,1,15006291CF10A,(M1),0,2015-05-14,Unlaw Use False Name/Identity,2015-05-14,2015-07-02,,0,,,,,Risk of Recidivism,8,High,2013-04-03,Risk of Violence,8,High,2013-04-03,2015-05-14,2015-07-02,0,748,771,1,1\r\n6208,jodarian warner,jodarian,warner,2013-01-11,Male,1991-02-19,25,25 - 45,African-American,0,6,0,0,1,0,2013-01-11 12:35:37,2013-01-11 01:14:09,13000430CF10A,2013-01-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-11,Risk of Violence,6,Medium,2013-01-11,2013-01-11,2013-01-11,1,0,1176,0,0\r\n6210,jeffrey orys,jeffrey,orys,2014-07-28,Male,1994-05-24,21,Less than 25,African-American,1,10,0,0,1,-1,2014-07-27 08:09:50,2014-08-02 04:56:49,14010231CF10A,2014-07-27,,1,F,Burglary Conveyance Unoccup,1,14014010CF10A,(F3),0,2014-10-17,Tampering With Physical Evidence,2014-10-17,2015-02-24,,1,14014010CF10A,(F3),2014-10-17,Robbery Sudd Snatch No Weapon,Risk of Recidivism,10,High,2014-07-28,Risk of Violence,9,High,2014-07-28,2014-10-17,2015-02-24,1,5,81,1,1\r\n6212,mark murray,mark,murray,2013-03-30,Male,1968-02-10,48,Greater than 45,African-American,0,1,0,0,0,0,2013-03-30 03:01:12,2013-03-31 06:57:38,13006154MM10A,2013-03-30,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-30,Risk of Violence,1,Low,2013-03-30,2013-03-30,2013-03-31,0,1,1098,0,0\r\n6213,joanna english,joanna,english,2013-03-20,Female,1976-04-06,40,25 - 45,Caucasian,0,2,0,0,1,-55,2013-01-24 11:43:37,2013-01-25 08:58:42,13001192CF10A,2013-01-24,,55,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-10-06,2013-10-06,1,0,200,0,0\r\n6215,jamielle whittaker,jamielle,whittaker,2013-12-17,Female,1992-02-28,24,Less than 25,Other,0,3,0,0,0,-1,2013-12-16 08:36:34,2013-12-17 09:48:55,13017373CF10A,2013-12-16,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-17,Risk of Violence,3,Low,2013-12-17,2013-12-16,2013-12-17,0,0,836,0,0\r\n6216,kenneth haggins,kenneth,haggins,2013-04-20,Male,1993-04-21,22,Less than 25,African-American,0,4,0,0,0,-1,2013-04-19 11:29:08,2013-04-20 01:45:16,13005629CF10A,2013-04-19,,1,F,Burglary Dwelling Occupied,1,14002519CF10A,(F3),0,2014-02-22,Possession of Cannabis,2014-02-22,2014-02-23,,1,15011072MM10A,(M1),2015-10-01,Battery,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,5,Medium,2013-04-20,2014-02-22,2014-02-23,0,0,308,1,1\r\n6219,robert coleman,robert,coleman,2013-03-28,Male,1980-01-25,36,25 - 45,African-American,0,8,0,0,4,,,,11028234MM10A,,2013-03-27,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-28,Risk of Violence,5,Medium,2013-03-28,,,4,0,1100,0,0\r\n6221,kenneth scott,kenneth,scott,2013-01-22,Male,1977-10-30,38,25 - 45,Caucasian,0,2,0,0,2,0,2013-01-22 02:44:16,2013-02-19 08:46:07,13001490MM10A,2013-01-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-22,Risk of Violence,1,Low,2013-01-22,2015-01-09,2015-01-09,2,28,717,0,0\r\n6222,mickel dhanoolal,mickel,dhanoolal,2014-09-21,Male,1993-01-17,23,Less than 25,Other,0,3,0,0,0,0,2014-09-21 03:56:39,2014-09-24 04:09:04,14012781CF10A,2014-09-21,,0,F,Felony Battery (Dom Strang),1,15079662TC30A,(M2),,2015-10-05,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,3,Low,2014-09-21,Risk of Violence,4,Low,2014-09-21,2014-09-21,2014-09-24,0,3,379,1,1\r\n6223,leroy bailey,leroy,bailey,2013-10-22,Male,1961-05-15,54,Greater than 45,Other,0,1,0,0,2,-1,2013-10-21 09:41:20,2013-10-22 08:05:35,13019946MM10A,2013-10-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-21,2013-10-22,2,0,892,0,0\r\n6224,isaac salmeronoliva,isaac,salmeronoliva,2013-01-21,Male,1991-08-06,24,Less than 25,Hispanic,0,4,0,0,1,0,2013-01-21 11:48:52,2013-02-01 08:09:36,13000972CF10A,,2013-01-21,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-21,Risk of Violence,4,Low,2013-01-21,2013-01-21,2013-02-01,1,11,1166,0,0\r\n6226,katherine pugliese,katherine,pugliese,2013-04-08,Female,1972-03-05,44,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-07 09:28:33,2013-04-08 08:23:11,13006658MM10A,2013-04-07,,1,M,Disorderly Conduct,1,14005177CF10A,(M2),1,2014-04-12,Criminal Mischief Damage <$200,2014-04-13,2014-06-20,,1,14005177CF10A,(M1),2014-04-12,Battery,Risk of Recidivism,1,Low,2013-04-08,Risk of Violence,1,Low,2013-04-08,2015-05-24,2015-06-27,0,0,369,1,1\r\n6227,keya jackson,keya,jackson,2013-04-15,Female,1993-03-04,23,Less than 25,African-American,0,7,0,0,2,,,,13005376CF10A,2013-04-14,,1,F,Aggrav Battery w/Deadly Weapon,1,14000727MM20A,(M1),,2014-02-08,Resist/Obstruct W/O Violence,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-15,Risk of Violence,7,Medium,2013-04-15,,,2,0,299,1,1\r\n6228,kevin watrous,kevin,watrous,2013-10-30,Male,1952-03-22,64,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-29 11:55:33,2013-10-30 08:18:51,13020467MM10A,2013-10-29,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2013-10-29,2013-10-30,0,0,884,0,0\r\n6229,phillip gomez,phillip,gomez,2013-03-18,Male,1977-05-17,38,25 - 45,Caucasian,0,5,0,0,5,-18,2013-02-28 06:08:11,2013-02-28 08:42:37,13003069CF10A,2013-02-28,,18,M,Felony/Driving Under Influence,1,13030232TC10A,(M1),0,2013-07-27,Opert With Susp DL 2nd Offens,2013-07-27,2013-07-28,,0,,,,,Risk of Recidivism,5,Medium,2013-03-18,Risk of Violence,2,Low,2013-03-18,2013-04-25,2013-04-26,5,0,38,0,1\r\n6230,julietta gustave,julietta,gustave,2013-08-19,Female,1970-11-04,45,Greater than 45,Other,0,1,0,0,0,-1,2013-08-18 09:01:18,2013-08-19 08:01:53,13015663MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-19,0,0,956,0,0\r\n6231,torrence howard,torrence,howard,2013-10-10,Male,1966-07-31,49,Greater than 45,African-American,0,5,0,0,1,-1,2013-10-09 04:35:47,2013-10-14 09:00:33,13014180CF10A,2013-10-09,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-10,Risk of Violence,6,Medium,2013-10-10,2013-10-09,2013-10-14,1,4,904,0,0\r\n6234,delvea crew,delvea,crew,2013-08-01,Female,1971-02-20,45,Greater than 45,African-American,0,7,0,0,3,,,,95012273CF10A,1995-07-13,,6594,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-01,Risk of Violence,2,Low,2013-08-01,,,3,0,974,0,0\r\n6236,phat huynh,phat,huynh,2014-03-02,Male,1982-09-13,33,25 - 45,Asian,0,1,0,0,0,-1,2014-03-01 11:10:20,2014-03-02 07:53:27,14003542MM10A,2014-03-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-02,Risk of Violence,1,Low,2014-03-02,2014-03-01,2014-03-02,0,0,761,0,0\r\n6238,raymond martinez,raymond,martinez,2013-03-29,Male,1971-12-09,44,25 - 45,Hispanic,0,2,0,0,2,-1,2013-03-28 05:17:58,2013-03-29 09:19:00,13004500CF10A,2013-03-28,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-29,Risk of Violence,1,Low,2013-03-29,2013-03-28,2013-03-29,2,0,1099,0,0\r\n6239,winston stanley,winston,stanley,2013-09-10,Male,1964-12-28,51,Greater than 45,African-American,0,1,0,0,3,-1,2013-09-09 08:22:20,2013-09-12 08:28:20,13012748CF10A,,2013-09-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-09,2013-09-12,3,2,934,0,0\r\n6240,william jamison,william,jamison,2013-01-27,Male,1965-10-07,50,Greater than 45,African-American,0,1,0,0,0,0,2013-01-27 03:37:16,2013-01-28 02:50:27,13001318CF10A,2013-01-27,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-27,Risk of Violence,1,Low,2013-01-27,2014-03-05,2014-03-09,0,1,402,0,0\r\n6241,jason cousino,jason,cousino,2013-10-11,Male,1982-12-29,33,25 - 45,Caucasian,0,2,2,0,2,-22,2013-09-19 09:34:52,2013-10-11 06:19:13,13017888MM10A,2013-09-19,,22,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-11,Risk of Violence,2,Low,2013-10-11,2013-09-19,2013-10-11,2,0,903,0,0\r\n6242,josefa opert,josefa,opert,2014-01-16,Female,1962-01-29,54,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-15 02:16:34,2014-02-14 01:29:00,14000766MM10A,2014-01-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-16,Risk of Violence,1,Low,2014-01-16,2014-01-15,2014-02-14,0,29,806,0,0\r\n6244,gabriel araujo,gabriel,araujo,2013-11-02,Male,1987-08-21,28,25 - 45,Hispanic,0,5,0,0,3,-1,2013-11-01 11:03:45,2013-11-02 08:37:34,13015249CF10A,2013-11-01,,1,F,Possession of Cannabis,1,15014494CF10A,(F3),0,2015-11-07,Possession of Cannabis,2015-11-07,2015-11-08,,0,,,,,Risk of Recidivism,5,Medium,2013-11-02,Risk of Violence,3,Low,2013-11-02,2014-02-07,2014-02-23,3,0,97,0,1\r\n6245,michael ciriago,michael,ciriago,2014-02-20,Male,1982-09-23,33,25 - 45,Caucasian,0,9,0,1,14,-78,2013-12-04 09:02:14,2014-02-12 11:17:42,13016873CF10A,,2013-12-04,78,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-20,Risk of Violence,8,High,2014-02-20,2014-11-25,2014-12-06,14,0,278,0,0\r\n6247,devon whitehead,devon,whitehead,2013-01-07,Male,1973-10-18,42,25 - 45,African-American,0,7,0,0,17,-1,2013-01-06 08:45:25,2013-02-27 05:23:47,12022271MM10A,,2013-01-07,0,M,arrest case no charge,1,14001400CF10A,(M1),0,2014-01-31,Possess Drug Paraphernalia,2014-01-31,2014-02-02,,0,,,,,Risk of Recidivism,7,Medium,2013-01-07,Risk of Violence,4,Low,2013-01-07,2014-01-31,2014-02-02,17,51,389,1,1\r\n6248,scott jimison,scott,jimison,2013-10-23,Male,1981-08-05,34,25 - 45,Caucasian,0,1,0,0,3,-1,2013-10-22 09:14:51,2013-10-23 11:28:30,13014740CF10A,2013-10-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-23,Risk of Violence,1,Low,2013-10-23,2013-10-22,2013-10-23,3,0,891,0,0\r\n6249,james pardee,james,pardee,2013-05-17,Male,1977-11-20,38,25 - 45,Caucasian,0,3,0,0,2,-1,2013-05-16 01:51:33,2013-05-25 07:15:10,13006992CF10A,2013-05-16,,1,F,Corrupt Public Servant,1,13036967TC10A,(M2),,2013-06-28,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-17,Risk of Violence,3,Low,2013-05-17,2013-05-16,2013-05-25,2,8,42,1,1\r\n6250,kalif fletcher,kalif,fletcher,2013-01-17,Male,1994-06-07,21,Less than 25,African-American,0,9,0,0,1,-1,2013-01-16 04:32:53,2013-01-17 07:40:18,13000768CF10A,2013-01-16,,1,F,Bribery Athletic Contests,1,13008535MM10A,(M1),1,2013-05-02,Resist/Obstruct W/O Violence,2013-05-03,2013-05-04,,1,13016054CF10A,(M2),2013-11-19,Assault,Risk of Recidivism,9,High,2013-01-17,Risk of Violence,8,High,2013-01-17,2015-08-08,2015-09-21,1,0,105,1,1\r\n6251,kenson jeanpierre,kenson,jeanpierre,2013-10-05,Male,1982-10-06,33,25 - 45,African-American,0,4,0,0,5,0,2013-10-05 12:47:51,2013-10-05 07:14:01,13013964CF10A,2013-10-04,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-05,Risk of Violence,2,Low,2013-10-05,2013-10-05,2013-10-05,5,0,909,0,0\r\n6256,johnny jones,johnny,jones,2013-01-24,Male,1983-10-13,32,25 - 45,African-American,0,7,0,1,9,-1,2013-01-23 08:51:29,2013-02-15 09:20:28,11017426MM10A,,2013-01-23,1,M,arrest case no charge,1,13020739MM10A,(M1),1,2013-09-24,Resist/Obstruct W/O Violence,2013-09-25,2013-09-25,,1,15007306MM10A,(M1),2015-05-07,Battery,Risk of Recidivism,7,Medium,2013-01-24,Risk of Violence,4,Low,2013-01-24,2013-01-23,2013-02-15,9,22,243,1,1\r\n6259,nicholas satterfield,nicholas,satterfield,2014-01-01,Male,1970-06-26,45,Greater than 45,Caucasian,0,1,0,0,1,0,2014-01-01 03:58:45,2014-01-02 12:15:31,14000050MM10A,2014-01-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-01,Risk of Violence,1,Low,2014-01-01,2014-01-01,2014-01-02,1,1,821,0,0\r\n6260,matthew flaherty,matthew,flaherty,2014-04-30,Male,1985-08-18,30,25 - 45,Caucasian,0,8,0,0,1,-1,2014-04-29 09:21:44,2014-06-02 09:04:48,14005967CF10A,2014-04-29,,1,F,Possession Of Heroin,1,14008976MM10A,(M2),0,2014-06-05,Petit Theft,2014-06-05,2014-06-10,,0,,,,,Risk of Recidivism,8,High,2014-04-30,Risk of Violence,6,Medium,2014-04-30,2014-06-05,2014-06-10,1,33,36,1,1\r\n6264,nikki howard,nikki,howard,2014-02-13,Female,1986-11-12,29,25 - 45,African-American,0,10,0,0,0,-1,2014-02-12 09:29:02,2014-02-14 05:18:35,14002005CF10A,2014-02-12,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-02-13,Risk of Violence,7,Medium,2014-02-13,2014-02-12,2014-02-14,0,1,778,0,0\r\n6266,steven hill,steven,hill,2013-05-04,Male,1971-08-02,44,25 - 45,African-American,0,3,0,0,3,-86,2013-02-07 01:19:01,2013-02-08 06:24:09,13021431TC10A,2013-05-03,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2013-02-07,2013-02-08,3,0,1063,0,0\r\n6267,kyle johnson,kyle,johnson,2014-06-02,Female,1964-11-14,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-06-01 09:13:33,2014-06-09 09:06:51,14008727MM10A,2014-06-01,,1,M,Battery,1,14017658MO10A,(MO3),0,2014-12-16,Trespass,2014-12-16,2014-12-18,,0,,,,,Risk of Recidivism,1,Low,2014-06-02,Risk of Violence,1,Low,2014-06-02,2014-12-16,2014-12-18,0,7,197,1,1\r\n6268,brittany woodard,brittany,woodard,2014-01-29,Female,1988-03-22,28,25 - 45,African-American,0,3,0,0,0,-1,2014-01-28 10:38:19,2014-01-29 02:13:39,14001234CF10A,2014-01-28,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-29,Risk of Violence,3,Low,2014-01-29,2014-01-28,2014-01-29,0,0,793,0,0\r\n6271,arthur fogel,arthur,fogel,2014-01-01,Male,1989-03-10,27,25 - 45,Caucasian,0,3,0,0,1,-1,2013-12-31 09:37:13,2014-01-01 08:36:34,14000025CF10A,2013-12-31,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-01,Risk of Violence,2,Low,2014-01-01,2013-12-31,2014-01-01,1,0,821,0,0\r\n6274,danny bonilla,danny,bonilla,2014-11-25,Male,1987-08-25,28,25 - 45,Hispanic,0,10,0,0,16,-1,2014-11-24 07:31:04,2014-12-23 11:26:31,14015819CF10A,2014-11-24,,1,F,Possession Of Heroin,1,15003957CF10A,(F2),0,2015-03-24,Sell/Man/Del Pos/w/int Heroin,2015-03-24,2015-09-18,,0,,,,,Risk of Recidivism,10,High,2014-11-25,Risk of Violence,8,High,2014-11-25,2015-03-24,2015-09-18,16,28,119,1,1\r\n6278,chianti white,chianti,white,2014-03-25,Female,1985-06-06,30,25 - 45,African-American,0,2,0,0,0,0,2014-03-25 12:40:00,2014-03-25 09:14:31,14004158CF10A,2014-03-24,,1,F,Grand Theft on 65 Yr or Older,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-25,Risk of Violence,3,Low,2014-03-25,2014-03-25,2014-03-25,0,0,738,0,0\r\n6280,christopher guyer,christopher,guyer,2013-04-11,Male,1983-07-06,32,25 - 45,African-American,0,7,0,0,0,-1,2013-04-10 09:50:36,2013-04-12 06:00:18,13006970MM10A,2013-04-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-11,Risk of Violence,2,Low,2013-04-11,2013-04-10,2013-04-12,0,1,1086,0,0\r\n6281,john smith,john,smith,2013-08-23,Male,1988-11-18,27,25 - 45,Caucasian,0,4,0,0,5,-1,2013-08-22 10:46:01,2013-08-23 08:10:56,13011811CF10A,2013-08-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-23,Risk of Violence,3,Low,2013-08-23,2013-08-22,2013-08-23,5,0,952,0,0\r\n6282,joshua otero-andrews,joshua,otero-andrews,2014-06-27,Male,1994-06-17,21,Less than 25,Hispanic,0,5,0,0,1,-1,2014-06-26 04:39:10,2014-06-28 05:02:08,14008796CF10A,2014-06-26,,1,F,Battery on Law Enforc Officer,1,14040154TC10A,(M2),0,2014-10-30,Operating W/O Valid License,2014-10-30,2014-11-01,,0,,,,,Risk of Recidivism,5,Medium,2014-06-27,Risk of Violence,7,Medium,2014-06-27,2014-10-30,2014-11-01,1,1,125,1,1\r\n6284,vestin madaire,vestin,madaire,2013-05-14,Male,1995-03-11,21,Less than 25,African-American,0,5,0,0,0,-1,2013-05-13 07:56:26,2013-05-15 01:24:31,13006837CF10A,2013-05-13,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-14,Risk of Violence,7,Medium,2013-05-14,2015-03-17,2015-03-24,0,1,672,0,0\r\n6285,samantha lionakis,samantha,lionakis,2013-05-25,Female,1981-09-22,34,25 - 45,Caucasian,0,3,0,0,0,-1,2013-05-24 10:51:39,2013-07-26 06:10:54,13007423CF10A,2013-05-24,,1,F,Tamper With Witness/Victim/CI,1,14100611TC30A,(M2),,2014-12-03,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-25,Risk of Violence,2,Low,2013-05-25,2013-05-24,2013-07-26,0,62,557,1,1\r\n6286,marquis saunders,marquis,saunders,2013-09-27,Male,1992-03-23,24,Less than 25,African-American,0,9,0,0,7,-1,2013-09-26 06:27:06,2014-04-14 01:24:33,13013538CF10A,2013-09-26,,1,F,Crim Attempt/Solic/Consp,1,14010875MM10A,(M1),0,2014-07-16,Possess Cannabis/20 Grams Or Less,2014-07-16,2014-09-23,,0,,,,,Risk of Recidivism,9,High,2013-09-27,Risk of Violence,6,Medium,2013-09-27,2014-07-16,2014-09-23,7,199,292,1,1\r\n6287,walter rojas,walter,rojas,2013-04-08,Male,1984-04-13,32,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-07 07:03:09,2013-04-26 08:49:05,13006645MM10A,2013-04-07,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-08,Risk of Violence,1,Low,2013-04-08,2013-04-07,2013-04-26,0,18,1089,0,0\r\n6289,holly roberts,holly,roberts,2013-05-16,Female,1978-01-20,38,25 - 45,Caucasian,0,6,0,0,5,-1,2013-05-15 10:43:19,2013-06-26 05:13:06,13006620CF10A,,2013-05-15,1,F,arrest case no charge,1,13019794MM10A,(M1),0,2013-10-19,Unlaw Use False Name/Identity,2013-10-19,2013-11-20,,0,,,,,Risk of Recidivism,6,Medium,2013-05-16,Risk of Violence,4,Low,2013-05-16,2013-10-19,2013-11-20,5,41,156,1,1\r\n6292,alvin farquharson,alvin,farquharson,2014-02-13,Male,1959-09-21,56,Greater than 45,African-American,0,1,0,0,3,-28,2014-01-16 12:26:12,2014-01-31 09:03:56,13007787MM10A,,2014-01-16,28,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-13,Risk of Violence,1,Low,2014-02-13,2014-01-16,2014-01-31,3,0,778,0,0\r\n6293,yolette comete,yolette,comete,2013-02-23,Female,1971-04-26,44,25 - 45,African-American,0,1,0,0,0,-1,2013-02-22 01:00:39,2013-02-23 08:11:29,13003758MM10A,2013-02-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-23,0,0,1133,0,0\r\n6296,erwin auguste,erwin,auguste,2013-08-25,Male,1984-11-15,31,25 - 45,African-American,0,5,0,0,1,-1,2013-08-24 09:20:42,2013-08-25 08:18:28,13016209MM10A,2013-08-24,,1,M,DWLS Canceled Disqul 1st Off,1,13045063TC10A,(M2),,2013-11-12,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-25,Risk of Violence,2,Low,2013-08-25,2014-01-26,2014-01-27,1,0,79,1,1\r\n6297,brenda gonzalez,brenda,gonzalez,2013-05-21,Female,1991-01-19,25,25 - 45,Caucasian,0,7,0,0,6,-1,2013-05-20 07:27:50,2013-06-14 04:06:44,12015023CF10A,,2013-05-21,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-21,Risk of Violence,4,Low,2013-05-21,2013-05-20,2013-06-14,6,24,1046,0,0\r\n6299,ashanna simms,ashanna,simms,2013-09-10,Female,1995-06-27,20,Less than 25,African-American,0,5,0,0,0,-1,2013-09-09 08:08:27,2013-09-10 07:49:28,13017201MM10A,2013-09-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-10,Risk of Violence,7,Medium,2013-09-10,2013-09-09,2013-09-10,0,0,934,0,0\r\n6300,george snellturner,george,snellturner,2014-01-02,Male,1980-09-29,35,25 - 45,African-American,0,5,0,0,1,-1,2014-01-01 11:50:43,2014-01-03 01:39:37,02001473MM30A,2002-04-23,,4272,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-02,Risk of Violence,5,Medium,2014-01-02,2014-01-01,2014-01-03,1,1,820,0,0\r\n6301,epifania roman,epifania,roman,2013-08-24,Male,1982-10-10,33,25 - 45,African-American,0,4,0,0,1,-1,2013-08-23 08:13:02,2013-08-24 05:16:56,13011923CF10A,2013-08-23,,1,F,Agg Battery Grt/Bod/Harm,1,15000252MM10A,(M1),1,2015-01-06,Possess Cannabis/20 Grams Or Less,2015-01-07,2015-01-07,,0,,,,,Risk of Recidivism,4,Low,2013-08-24,Risk of Violence,3,Low,2013-08-24,2015-01-07,2015-01-07,1,0,500,1,1\r\n6302,micheal brown,micheal,brown,2014-02-02,Male,1992-03-29,24,Less than 25,African-American,0,3,0,0,0,-1,2014-02-01 03:37:21,2014-02-02 07:55:32,14001777MM10A,2014-02-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-02,Risk of Violence,4,Low,2014-02-02,2014-02-01,2014-02-02,0,0,789,0,0\r\n6303,zulma ramos,zulma,ramos,2013-09-30,Female,1975-04-29,40,25 - 45,Hispanic,0,2,0,0,2,-7,2013-09-23 10:17:27,2013-09-27 08:51:45,13042343TC10A,,2013-09-23,7,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-23,2013-09-27,2,0,914,0,0\r\n6304,reginald lovett,reginald,lovett,2014-07-02,Male,1988-12-28,27,25 - 45,African-American,0,9,0,0,9,0,2014-07-02 04:34:07,2014-07-02 08:17:07,14009085CF10A,2014-07-02,,0,F,Poss Pyrrolidinovalerophenone,1,15012386MM10A,(M2),,2015-11-29,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2014-07-02,Risk of Violence,8,High,2014-07-02,2014-09-17,2014-10-27,9,0,77,0,1\r\n6305,kentrell sibblis,kentrell,sibblis,2014-01-15,Female,1994-09-01,21,Less than 25,African-American,0,3,0,0,2,-72,2013-11-04 02:27:29,2013-11-05 02:13:57,14000244MM30A,2014-01-03,,12,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-15,Risk of Violence,5,Medium,2014-01-15,2013-11-04,2013-11-05,2,0,807,0,0\r\n6312,james walton,james,walton,2014-08-06,Male,1977-06-27,38,25 - 45,African-American,0,5,0,0,9,-1,2014-08-05 07:00:13,2014-08-07 05:07:25,14010662CF10A,2014-08-05,,1,F,Grand Theft in the 3rd Degree,1,14014846MM10A,(M2),0,2014-09-10,Trespass Struct/Conveyance,2014-09-10,2014-09-11,,1,14014846MM10A,(M1),2014-09-10,Battery,Risk of Recidivism,5,Medium,2014-08-06,Risk of Violence,4,Low,2014-08-06,2014-09-10,2014-09-11,9,1,35,1,1\r\n6314,charles cocuzza,charles,cocuzza,2013-09-14,Male,1995-05-20,20,Less than 25,Caucasian,0,6,0,1,0,-1,2013-09-13 05:02:10,2013-09-14 07:08:23,13012953CF10A,2013-09-13,,1,F,Grand Theft Dwell Property,1,14007984MU10A,(M2),0,2014-03-02,Reckless Driving,2014-03-02,2014-03-02,,0,,,,,Risk of Recidivism,6,Medium,2013-09-14,Risk of Violence,9,High,2013-09-14,2014-03-02,2014-03-02,0,0,169,0,1\r\n6315,tavarus graham,tavarus,graham,2013-11-17,Male,1985-07-24,30,25 - 45,African-American,0,3,0,0,9,-1,2013-11-16 03:21:37,2013-11-17 08:27:24,13015955CF10A,2013-11-16,,1,F,Driving While License Revoked,1,15010842CF10A,(F3),0,2015-08-22,Driving While License Revoked,2015-08-22,2015-08-22,,0,,,,,Risk of Recidivism,3,Low,2013-11-17,Risk of Violence,2,Low,2013-11-17,2015-08-22,2015-08-22,9,0,643,0,1\r\n6317,richard mendez,richard,mendez,2013-04-06,Male,1980-03-23,36,25 - 45,Caucasian,0,6,0,0,9,0,2013-04-06 01:15:11,2013-04-25 06:15:47,12005343CF10A,,2013-04-06,0,F,arrest case no charge,1,14005379MM10A,(M1),1,2014-03-28,Battery,2014-03-29,2014-04-10,,1,14005379MM10A,(M1),2014-03-28,Battery,Risk of Recidivism,6,Medium,2013-04-06,Risk of Violence,4,Low,2013-04-06,2013-04-25,2013-11-25,9,233,356,1,1\r\n6319,louivens narcisse,louivens,narcisse,2014-01-28,Male,1992-07-21,23,Less than 25,African-American,0,9,0,0,2,-1,2014-01-27 09:20:56,2014-02-04 01:09:43,14001495MM10A,2014-01-27,,1,M,Viol Injunct Domestic Violence,1,16000063MM20A,(M1),,2015-12-28,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,9,High,2014-01-28,Risk of Violence,9,High,2014-01-28,2014-01-27,2014-02-04,2,7,699,1,1\r\n6320,michael mcdonald,michael,mcdonald,2014-08-27,Male,1977-03-04,39,25 - 45,African-American,0,10,0,0,21,-1,2014-08-26 11:59:56,2014-08-27 04:21:26,14011644CF10A,2014-08-26,,1,F,Driving While License Revoked,1,15018405TC40A,(M2),,2015-03-11,Driving License Suspended,,,,0,,,,,Risk of Recidivism,10,High,2014-08-27,Risk of Violence,8,High,2014-08-27,2016-01-25,2016-04-05,21,0,196,1,1\r\n6321,andrew williams,andrew,williams,2013-02-23,Male,1983-07-06,32,25 - 45,African-American,0,6,0,0,3,,,,11013722MM10A,2011-05-12,,653,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-23,Risk of Violence,3,Low,2013-02-23,2004-06-17,2007-11-05,3,0,1133,0,0\r\n6322,michael fajardo,michael,fajardo,2014-11-09,Male,1986-08-07,29,25 - 45,Caucasian,0,6,0,0,3,-1,2014-11-08 11:54:31,2014-11-09 09:53:55,14014994CF10A,2014-11-08,,1,F,Pos Cannabis W/Intent Sel/Del,1,15003126MM40A,(M1),,2015-08-04,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2014-11-09,Risk of Violence,3,Low,2014-11-09,2015-08-15,2015-08-16,3,0,268,1,1\r\n6323,peter chovan,peter,chovan,2013-04-27,Male,1957-10-10,58,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-04-26 09:01:52,2013-04-27 07:25:54,13008103MM10A,2013-04-26,,1,M,Viol Injunct Domestic Violence,1,13008903MM10A,(M1),0,2013-05-08,Viol Prot Injunc Repeat Viol,2013-05-08,2013-05-09,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-05-08,2013-05-09,2,0,11,1,1\r\n6324,mitchell machado,mitchell,machado,2013-04-26,Male,1993-02-23,23,Less than 25,Hispanic,0,7,0,1,2,-1,2013-04-25 02:38:32,2013-05-30 09:53:56,13005930CF10A,2013-04-25,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-26,Risk of Violence,5,Medium,2013-04-26,2013-04-25,2013-05-30,2,34,1071,0,0\r\n6326,luis velasques,luis,velasques,2013-01-27,Male,1993-02-08,23,Less than 25,Caucasian,0,8,0,0,3,-1,2013-01-26 07:15:26,2013-02-21 09:21:04,13001862MM10A,2013-01-26,,1,M,Petit Theft,1,13005848MM10A,(M1),0,2013-03-25,Battery,2013-03-25,2013-05-23,,1,13005848MM10A,(M1),2013-03-25,Battery,Risk of Recidivism,8,High,2013-01-27,Risk of Violence,6,Medium,2013-01-27,2013-03-25,2013-05-23,3,25,57,1,1\r\n6328,joseph hepburn,joseph,hepburn,2013-10-21,Female,1947-06-27,68,Greater than 45,African-American,0,2,0,0,5,-4,2013-10-17 11:55:00,2013-10-18 07:57:32,13014557CF10A,2013-10-17,,4,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-21,Risk of Violence,1,Low,2013-10-21,2013-10-17,2013-10-18,5,0,893,0,0\r\n6330,alexandra bastante,alexandra,bastante,2013-04-23,Female,1989-09-12,26,25 - 45,Caucasian,0,5,0,0,2,0,2013-04-23 04:28:21,2013-04-23 07:38:37,13007875MM10A,2013-04-23,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-23,Risk of Violence,4,Low,2013-04-23,2013-04-23,2013-04-23,2,0,1074,0,0\r\n6332,mark evans,mark,evans,2014-05-23,Male,1965-03-03,51,Greater than 45,African-American,0,4,0,0,0,-1,2014-05-22 04:51:07,2014-05-23 08:08:14,14007156CF10A,2014-05-22,,1,F,Possession of Cocaine,1,14043815TC40A,(M2),,2014-06-16,Driving License Suspended,,,,1,16000727CF10A,(F3),2016-01-16,Child Abuse,Risk of Recidivism,4,Low,2014-05-23,Risk of Violence,1,Low,2014-05-23,2016-01-18,2016-01-22,0,0,24,1,1\r\n6335,brittany shenett,brittany,shenett,2014-02-14,Male,1991-03-18,25,25 - 45,African-American,0,2,0,0,0,-1,2014-02-13 08:49:07,2014-02-14 01:09:30,14002560MM10A,2014-02-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-14,Risk of Violence,3,Low,2014-02-14,2014-02-13,2014-02-14,0,0,777,0,0\r\n6336,ricky brownlee,ricky,brownlee,2013-01-02,Male,1975-11-03,40,25 - 45,African-American,0,9,0,0,5,0,2013-01-02 03:03:13,2013-02-26 06:26:53,13000066CF10A,2013-01-01,,1,F,Felony Driving While Lic Suspd,1,15002141CF10A,(F3),,2015-02-15,Burglary Conveyance Unoccup,,,,0,,,,,Risk of Recidivism,9,High,2013-01-02,Risk of Violence,10,High,2013-01-02,2013-02-26,2013-11-03,5,305,774,1,1\r\n6337,john coleman,john,coleman,2014-02-04,Male,1964-08-14,51,Greater than 45,African-American,0,5,0,0,14,-11,2014-01-24 12:28:43,2014-02-01 10:20:54,10008126CF10A,,2014-01-24,11,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-04,Risk of Violence,2,Low,2014-02-04,2015-07-27,2015-09-10,14,0,538,0,0\r\n6338,dernard adderley,dernard,adderley,2013-01-04,Male,1988-05-29,27,25 - 45,African-American,0,5,0,0,2,-1,2013-01-03 08:36:07,2013-01-18 09:00:58,13000178MM10A,2013-01-03,,1,M,Prowling/Loitering,1,13001871MM10A,(M2),0,2013-01-26,Prowling/Loitering,2013-01-26,2013-02-21,,0,,,,,Risk of Recidivism,5,Medium,2013-01-04,Risk of Violence,3,Low,2013-01-04,2013-01-26,2013-02-21,2,14,22,1,1\r\n6339,tracy boles,tracy,boles,2014-10-20,Male,1966-06-02,49,Greater than 45,African-American,0,5,0,0,11,-1,2014-10-19 09:18:54,2014-11-20 09:28:01,14015227MM10A,2014-10-19,,1,M,Viol Prot Injunc Repeat Viol,1,16002753MM10A,(M1),0,2016-03-23,,2016-03-23,2016-03-23,,0,,,,,Risk of Recidivism,5,Medium,2014-10-20,Risk of Violence,4,Low,2014-10-20,2016-03-23,2016-03-23,11,31,520,0,1\r\n6341,wally germain-philistin,wally,germain-philistin,2014-01-22,Male,1980-01-23,36,25 - 45,Other,0,1,0,0,0,-1,2014-01-21 12:17:06,2014-01-24 03:19:22,14001013MM10A,2014-01-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-22,Risk of Violence,1,Low,2014-01-22,2014-01-21,2014-01-24,0,2,800,0,0\r\n6344,christopher anchia,christopher,anchia,2013-05-02,Male,1987-11-16,28,25 - 45,Caucasian,0,7,0,0,5,-76,2013-02-15 04:11:18,2013-02-21 12:49:55,12015748MM10A,,2012-10-31,183,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-02,Risk of Violence,6,Medium,2013-05-02,2015-08-31,2015-09-03,5,0,851,0,0\r\n6345,bryant yopp,bryant,yopp,2013-08-06,Male,1995-06-16,20,Less than 25,African-American,0,3,0,0,0,-4,2013-08-02 12:53:34,2013-08-06 10:33:58,13010785CF10A,2013-08-01,,5,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-06,Risk of Violence,6,Medium,2013-08-06,2013-08-02,2013-08-06,0,0,969,0,0\r\n6347,romario eliacin,romario,eliacin,2013-08-22,Male,1994-09-29,21,Less than 25,African-American,0,10,0,0,2,0,2013-08-22 03:00:48,2013-11-16 04:47:00,13011798CF10A,2013-08-22,,0,F,Possession of Cocaine,1,14008784MM10A,(M1),0,2014-04-30,Use Lost Or Stolen Credit Card,2014-04-30,2014-05-06,,0,,,,,Risk of Recidivism,10,High,2013-08-22,Risk of Violence,6,Medium,2013-08-22,2014-04-30,2014-05-06,2,86,251,1,1\r\n6349,gerald mackey,gerald,mackey,2013-09-11,Female,1985-04-17,31,25 - 45,African-American,0,2,0,0,0,0,2013-09-11 02:25:29,2013-09-12 05:28:48,13012845CF10A,2013-09-10,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-11,Risk of Violence,2,Low,2013-09-11,2013-09-11,2013-09-12,0,1,933,0,0\r\n6353,frantz guerrier,frantz,guerrier,2013-05-27,Male,1958-08-08,57,Greater than 45,African-American,0,1,0,0,0,0,2013-05-27 01:52:05,2013-05-28 01:12:21,13010156MM10A,2013-05-27,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-05-27,2013-05-28,0,1,1040,0,0\r\n6354,marianne mackiewicz,marianne,mackiewicz,2013-05-07,Female,1954-12-08,61,Greater than 45,Caucasian,0,3,0,0,8,0,2013-05-07 12:19:29,2013-06-07 08:21:35,13006542CF10A,2013-05-06,,1,F,Resist Officer w/Violence,1,15007955MM10A,(M1),0,2015-07-27,Petit Theft $100- $300,2015-07-27,2015-08-10,,0,,,,,Risk of Recidivism,3,Low,2013-05-07,Risk of Violence,1,Low,2013-05-07,2013-09-19,2013-11-08,8,31,135,0,1\r\n6356,danny diaz,danny,diaz,2014-04-04,Male,1980-05-24,35,25 - 45,Hispanic,0,1,0,0,3,-23,2014-03-12 08:21:31,2014-03-22 02:23:24,14003503CF10A,2014-03-12,,23,F,Burglary Structure Unoccup,1,15008627MM10A,(M1),0,2015-08-15,Battery,2015-08-15,2015-09-26,,1,15008627MM10A,(M1),2015-08-15,Battery,Risk of Recidivism,1,Low,2014-04-04,Risk of Violence,2,Low,2014-04-04,2015-08-15,2015-09-26,3,0,498,1,1\r\n6359,terry bradley,terry,bradley,2013-12-18,Male,1961-08-18,54,Greater than 45,African-American,0,6,0,0,3,-1,2013-12-17 02:05:51,2013-12-19 09:10:18,13016923CF10A,,2013-12-17,1,F,arrest case no charge,1,14006976TC10A,(M2),1,2014-02-23,Susp Drivers Lic 1st Offense,2014-02-24,2014-02-28,,0,,,,,Risk of Recidivism,6,Medium,2013-12-18,Risk of Violence,3,Low,2013-12-18,2013-12-17,2013-12-19,3,1,67,1,1\r\n6360,laura viera,laura,viera,2014-03-20,Male,1977-01-22,39,25 - 45,Caucasian,0,3,0,0,0,-1,2014-03-19 08:21:38,2014-03-20 10:14:17,14003890CF10A,2014-03-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-20,Risk of Violence,2,Low,2014-03-20,2014-03-19,2014-03-20,0,0,743,0,0\r\n6361,pierre breedlove,pierre,breedlove,2013-01-05,Male,1992-03-06,24,Less than 25,African-American,0,7,1,0,1,-1,2013-01-04 03:20:01,2013-02-06 10:00:42,13000178CF10A,2013-01-04,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-05,Risk of Violence,7,Medium,2013-01-05,2013-01-04,2013-02-06,1,32,1182,0,0\r\n6362,grace alvarado,grace,alvarado,2013-09-20,Female,1986-06-22,29,25 - 45,Hispanic,0,4,0,0,0,-1,2013-09-19 01:59:44,2013-09-20 07:48:00,13013217CF10A,2013-09-19,,1,F,Aggrav Battery w/Deadly Weapon,1,14002358TC30A,(M2),,2013-12-18,Unlaw LicTag/Sticker Attach,,,,1,15012789CF10A,(F2),2015-10-03,Agg Battery Grt/Bod/Harm,Risk of Recidivism,4,Low,2013-09-20,Risk of Violence,2,Low,2013-09-20,2015-10-03,2015-10-13,0,0,89,1,1\r\n6365,jarrett kendrick,jarrett,kendrick,2013-04-07,Male,1968-01-17,48,Greater than 45,African-American,0,9,0,1,8,-1,2013-04-06 01:01:53,2013-04-17 05:13:28,13004955CF10A,2013-04-06,,1,F,Possession of Cocaine,1,13010344CF10A,(F3),,2013-04-17,Sex Offender Fail Comply W/Law,,,,0,,,,,Risk of Recidivism,9,High,2013-04-07,Risk of Violence,4,Low,2013-04-07,2013-04-06,2013-04-17,8,10,11,1,1\r\n6367,carl myers,carl,myers,2013-05-08,Male,1985-09-03,30,25 - 45,African-American,0,7,0,1,6,0,2013-05-08 03:08:29,2013-05-08 07:08:40,13008897MM10A,2013-05-08,,0,M,Resist/Obstruct W/O Violence,1,14001183MM20A,(M1),,2014-04-09,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-08,Risk of Violence,3,Low,2013-05-08,2014-05-19,2014-05-20,6,0,336,1,1\r\n6368,demarcus robinson,demarcus,robinson,2013-05-26,Male,1989-06-02,26,25 - 45,African-American,0,10,1,0,10,-1,2013-05-25 08:48:32,2013-05-27 04:30:20,13007502CF10A,2013-05-25,,1,F,Possession of Cocaine,1,13044654TC10A,(M2),,2013-06-29,Driving License Suspended,,,,0,,,,,Risk of Recidivism,10,High,2013-05-26,Risk of Violence,10,High,2013-05-26,2013-05-25,2013-05-27,10,1,34,1,1\r\n6369,jason gomez,jason,gomez,2013-12-05,Male,1979-10-03,36,25 - 45,Caucasian,0,5,0,0,2,,,,09012616CF10B,,2010-08-04,1219,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-05,Risk of Violence,3,Low,2013-12-05,,,2,0,848,0,0\r\n6371,travis floyd,travis,floyd,2013-01-11,Male,1979-01-23,37,25 - 45,African-American,0,9,0,0,12,0,2013-01-11 02:22:05,2013-01-11 08:05:10,13000512CF10A,2013-01-10,,1,F,Pos Cannabis W/Intent Sel/Del,1,15001191MM20A,(M1),,2015-04-22,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,9,High,2013-01-11,Risk of Violence,8,High,2013-01-11,2013-07-03,2013-08-30,12,0,173,0,1\r\n6372,napoleon wilson,napoleon,wilson,2014-10-28,Male,1989-08-31,26,25 - 45,African-American,0,6,0,0,4,0,2014-10-28 01:38:25,2014-12-12 08:07:45,14014474CF10A,2014-10-27,,1,F,Burglary Dwelling Occupied,1,15007307CF10A,(M1),0,2015-06-04,Resist/Obstruct W/O Violence,2015-06-04,2015-06-20,,1,15007307CF10A,(F1),2015-06-04,Aggrav Child Abuse-Agg Battery,Risk of Recidivism,6,Medium,2014-10-28,Risk of Violence,3,Low,2014-10-28,2015-06-04,2015-06-20,4,45,219,1,1\r\n6373,joel felder,joel,felder,2013-01-21,Male,1986-08-03,29,25 - 45,African-American,0,10,0,0,7,0,2013-01-21 12:56:39,2013-01-30 05:11:15,13001407MM10A,2013-01-21,,0,M,Petit Theft,1,14006666CF10A,(F2),,2014-04-15,Dealing in Stolen Property,,,,0,,,,,Risk of Recidivism,10,High,2013-01-21,Risk of Violence,9,High,2013-01-21,2013-01-21,2013-01-30,7,9,449,1,1\r\n6375,pierre williams,pierre,williams,2013-03-04,Male,1989-09-25,26,25 - 45,African-American,0,6,0,0,1,-1,2013-03-03 11:28:54,2013-04-02 09:22:27,13004298MM10A,2013-03-03,,1,M,Viol Pretrial Release Dom Viol,1,13014230MM10A,(M1),0,2013-07-27,Unlaw Use False Name/Identity,2013-07-27,2013-07-28,,0,,,,,Risk of Recidivism,6,Medium,2013-03-04,Risk of Violence,5,Medium,2013-03-04,2013-07-27,2013-07-28,1,29,145,1,1\r\n6376,courtney brown,courtney,brown,2013-09-20,Male,1955-07-06,60,Greater than 45,African-American,0,1,0,0,2,0,2013-09-20 12:40:56,2013-09-21 04:29:15,13013224CF10A,2013-09-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-09-20,2013-09-21,2,1,924,0,0\r\n6377,manuel aguasvivas,manuel,aguasvivas,2014-09-17,Male,1988-12-06,27,25 - 45,Caucasian,0,7,0,0,2,-1,2014-09-16 11:16:42,2014-09-17 08:16:23,14012562CF10A,2014-09-16,,1,F,Poss/Sell/Del/Man Amobarbital,1,14012562CF10A,(M1),48,2014-11-17,Possess Cannabis/20 Grams Or Less,2015-01-04,2015-01-08,,0,,,,,Risk of Recidivism,7,Medium,2014-09-17,Risk of Violence,6,Medium,2014-09-17,2015-01-04,2015-01-08,2,0,61,1,1\r\n6378,greg jones,greg,jones,2013-04-25,Male,1974-05-20,41,25 - 45,African-American,2,7,0,0,16,379,2014-05-09 11:01:27,2014-05-09 08:25:07,13005865CF10A,2013-04-24,,1,F,Grand Theft in the 3rd Degree,1,14001804MM20A,(M2),,2014-04-09,Petit Theft,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-25,Risk of Violence,5,Medium,2013-04-25,2014-12-04,2016-03-16,16,0,349,1,1\r\n6379,daniel harris,daniel,harris,2013-01-15,Male,1994-04-14,22,Less than 25,Caucasian,0,6,0,1,1,-1,2013-01-14 04:29:03,2013-01-15 01:53:43,13000646CF10A,2013-01-14,,1,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-15,Risk of Violence,7,Medium,2013-01-15,2013-04-07,2013-04-11,1,0,82,0,0\r\n6380,dantae sylvain,dantae,sylvain,2013-08-09,Male,1987-06-16,28,25 - 45,African-American,0,7,0,0,3,0,2013-08-09 03:57:00,2013-08-09 08:19:19,13011208CF10A,,2013-08-09,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-09,Risk of Violence,8,High,2013-08-09,2013-08-09,2013-08-09,3,0,966,0,0\r\n6381,jason walker,jason,walker,2013-02-22,Male,1982-11-05,33,25 - 45,African-American,0,6,0,0,13,0,2013-02-22 01:06:01,2013-02-22 07:19:24,13002656CF10A,2013-02-21,,1,F,Carrying Concealed Firearm,1,14015761CF10A,(M2),1,2014-11-23,Petit Theft,2014-11-24,2015-01-29,,0,,,,,Risk of Recidivism,6,Medium,2013-02-22,Risk of Violence,4,Low,2013-02-22,2014-09-09,2014-09-10,13,0,564,0,1\r\n6382,eric shaw,eric,shaw,2013-01-16,Male,1987-12-14,28,25 - 45,African-American,0,2,0,0,2,-1,2013-01-15 07:30:10,2013-05-20 09:16:44,12011014CF10A,,2013-01-15,1,F,arrest case no charge,1,15012141MM10A,(M1),0,2015-11-20,Resist/Obstruct W/O Violence,2015-11-20,2015-11-20,,0,,,,,Risk of Recidivism,2,Low,2013-01-16,Risk of Violence,3,Low,2013-01-16,2013-07-05,2013-07-10,2,124,170,0,0\r\n6383,william walker,william,walker,2013-12-23,Male,1960-05-10,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-22 12:42:17,2013-12-22 01:00:00,13023553MM10A,2013-12-21,,2,M,Battery,1,14009604CF10A,(F3),0,2014-07-14,Felony Battery (Dom Strang),2014-07-14,2014-07-17,,1,14009604CF10A,(F3),2014-07-14,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2014-07-14,2014-07-17,0,0,203,1,1\r\n6384,arthur sweeting,arthur,sweeting,2013-11-09,Male,1994-11-07,21,Less than 25,African-American,0,8,1,0,6,-19,2013-10-21 11:14:12,2013-10-22 01:34:19,13015585CF10A,2013-11-08,,1,F,Burglary Unoccupied Dwelling,1,15011141MM10A,(M1),,2015-10-23,Resist/Obstruct W/O Violence,,,,0,,,,,Risk of Recidivism,8,High,2013-11-09,Risk of Violence,7,Medium,2013-11-09,2014-06-11,2014-06-20,6,0,214,0,1\r\n6386,michael mora,michael,mora,2013-03-04,Male,1988-01-22,28,25 - 45,Hispanic,0,3,0,0,2,-1,2013-03-03 10:29:13,2013-03-05 09:58:12,13003218CF10A,2013-03-03,,1,F,Kidnapping / Domestic Violence,1,14049511TC30A,(M2),,2014-05-24,Driving License Suspended,,,,1,15004727MM10A,(M1),2015-04-25,Battery,Risk of Recidivism,3,Low,2013-03-04,Risk of Violence,2,Low,2013-03-04,2013-03-03,2013-03-05,2,1,446,1,1\r\n6387,kimberly santiago,kimberly,santiago,2014-02-11,Female,1994-02-11,22,Less than 25,Hispanic,0,2,0,0,0,-1,2014-02-10 10:29:08,2014-02-11 01:22:50,14002284MM10A,2014-02-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-11,Risk of Violence,4,Low,2014-02-11,2014-02-10,2014-02-11,0,0,780,0,0\r\n6389,amanda garrison,amanda,garrison,2014-12-20,Female,1986-06-05,29,25 - 45,Caucasian,0,7,0,0,6,-2,2014-12-18 11:49:33,2015-02-24 09:41:25,14016767CF10A,2014-12-18,,2,F,Possession of Cocaine,1,15002622MM10A,(M2),0,2015-03-03,Prostitution/Lewd Act Assignation,2015-03-03,2015-03-12,,0,,,,,Risk of Recidivism,7,Medium,2014-12-20,Risk of Violence,2,Low,2014-12-20,2015-03-03,2015-03-12,6,66,73,1,1\r\n6390,jean prince,jean,prince,2013-08-15,Male,1970-12-02,45,Greater than 45,African-American,0,1,0,0,5,230,2014-04-02 04:38:03,2014-04-03 09:26:00,14012353CF10A,2012-12-25,,233,F,Felony/Driving Under Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-15,Risk of Violence,1,Low,2013-08-15,2014-04-02,2014-04-03,5,0,230,0,0\r\n6391,tyreak gant,tyreak,gant,2013-05-12,Male,1992-04-01,24,Less than 25,African-American,0,8,0,0,2,0,2013-05-12 12:29:59,2013-07-01 06:53:04,13009113MM10A,2013-05-11,,1,M,Tresspass Struct/Conveyance,1,13014563CF10A,(F2),1,2013-10-17,Burglary Unoccupied Dwelling,2013-10-18,2013-11-20,,0,,,,,Risk of Recidivism,8,High,2013-05-12,Risk of Violence,6,Medium,2013-05-12,2013-09-14,2013-09-23,2,50,125,0,1\r\n6392,richard tillman,richard,tillman,2013-03-05,Male,1965-10-15,50,Greater than 45,African-American,0,1,0,0,12,-22,2013-02-11 07:57:07,2013-02-12 08:00:25,13002123CF10A,2013-02-11,,22,F,Possession of Cocaine,1,14000507MM40A,(M1),,2013-12-13,Trespass Other Struct/Conve,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-05,Risk of Violence,1,Low,2013-03-05,2015-10-30,2015-12-07,12,0,283,1,1\r\n6393,markell hill,markell,hill,2014-05-18,Male,1991-05-03,24,Less than 25,African-American,0,6,0,0,1,-1,2014-05-17 11:21:14,2014-05-19 03:52:52,14008029MM10A,2014-05-17,,1,M,Battery,1,15009770CF10A,(F3),6,2015-07-23,Robbery Sudd Snatch No Weapon,2015-07-29,2015-11-20,,1,15009770CF10A,(F3),2015-07-23,Robbery Sudd Snatch No Weapon,Risk of Recidivism,6,Medium,2014-05-18,Risk of Violence,6,Medium,2014-05-18,2014-05-17,2014-05-19,1,1,431,1,1\r\n6394,gary payne,gary,payne,2013-01-22,Male,1968-07-26,47,Greater than 45,African-American,0,2,0,0,1,-1,2013-01-21 05:34:28,2013-03-12 01:00:34,97011469CF10A,,2013-01-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-22,Risk of Violence,3,Low,2013-01-22,2013-01-21,2013-03-12,1,49,1165,0,0\r\n6395,victorino perrone,victorino,perrone,2013-08-27,Male,1959-03-13,57,Greater than 45,Caucasian,0,1,0,0,1,,,,09000226MM10A,2009-01-03,,1697,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,,,1,0,948,0,0\r\n6396,bobby cook,bobby,cook,2013-03-15,Male,1961-08-29,54,Greater than 45,Caucasian,0,1,0,0,6,0,2013-03-15 01:04:54,2013-03-16 01:02:43,13003830CF10A,2013-03-15,,0,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-15,Risk of Violence,1,Low,2013-03-15,2013-03-15,2013-03-16,6,1,1113,0,0\r\n6398,claudia campos,claudia,campos,2013-03-28,Female,1973-12-03,42,25 - 45,Caucasian,0,2,0,0,0,-1,2013-03-27 02:21:15,2013-03-28 07:29:08,13005983MM10A,2013-03-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-27,2013-03-28,0,0,1100,0,0\r\n6399,joshua visbal,joshua,visbal,2013-03-22,Male,1980-12-08,35,25 - 45,Caucasian,0,3,0,0,5,-20,2013-03-02 11:26:56,2013-03-03 09:01:52,13003157CF10A,2013-03-02,,20,F,Cruelty to Animals,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-22,Risk of Violence,2,Low,2013-03-22,2013-03-02,2013-03-03,5,0,1106,0,0\r\n6400,cameron avery,cameron,avery,2013-12-07,Male,1985-07-12,30,25 - 45,African-American,0,4,0,0,0,-1,2013-12-06 03:42:21,2013-12-07 08:00:41,13016917CF10A,2013-12-06,,1,F,Driving While License Revoked,1,14072299TC40A,(M2),457,2014-10-06,Driving License Suspended,2016-01-06,2016-01-07,,0,,,,,Risk of Recidivism,4,Low,2013-12-07,Risk of Violence,2,Low,2013-12-07,2016-01-06,2016-01-07,0,0,303,1,1\r\n6401,peter liberatore,peter,liberatore,2013-02-13,Male,1962-06-09,53,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-02-12 11:20:43,2013-02-13 07:54:55,13002178CF10A,2013-02-12,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2013-02-12,2013-02-13,1,0,1143,0,0\r\n6402,patricia garcon,patricia,garcon,2014-02-28,Female,1985-03-02,31,25 - 45,African-American,0,3,0,0,2,-1,2014-02-27 05:08:53,2014-03-01 05:09:38,14003432MM10A,2014-02-27,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-28,Risk of Violence,2,Low,2014-02-28,2014-02-27,2014-03-01,2,1,763,0,0\r\n6405,gael oriorden,gael,oriorden,2013-08-08,Male,1932-09-24,83,Greater than 45,Caucasian,0,1,0,0,4,,,,05006279CF10A,,2009-09-15,1423,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-08,Risk of Violence,1,Low,2013-08-08,,,4,0,967,0,0\r\n6406,raul pina,raul,pina,2013-08-27,Male,1969-04-21,46,Greater than 45,Hispanic,0,6,0,0,15,,,,13012473CF10A,2013-04-30,,119,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-27,Risk of Violence,7,Medium,2013-08-27,2009-07-30,2010-04-05,15,0,948,0,0\r\n6409,vivian hill,vivian,hill,2014-11-15,Male,1985-04-07,31,25 - 45,African-American,0,2,0,0,0,-1,2014-11-14 04:26:21,2014-11-15 11:29:44,14015364CF10A,2014-11-14,,1,F,Pos Cannabis W/Intent Sel/Del,1,15005087CF10A,(F3),0,2015-04-18,Possession of Cocaine,2015-04-18,2015-06-26,,0,,,,,Risk of Recidivism,2,Low,2014-11-15,Risk of Violence,2,Low,2014-11-15,2015-04-18,2015-06-26,0,0,154,1,1\r\n6412,javaughn kerr,javaughn,kerr,2013-08-15,Male,1993-03-21,23,Less than 25,Other,0,10,0,0,4,-1,2013-08-14 05:29:49,2013-08-16 10:55:19,13011433CF10A,2013-08-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-15,Risk of Violence,10,High,2013-08-15,2013-08-14,2013-08-16,4,1,960,0,0\r\n6413,deonta harvard,deonta,harvard,2013-08-06,Male,1969-03-18,47,Greater than 45,African-American,0,4,0,0,9,-1,2013-08-05 06:18:35,2013-10-09 05:46:08,13013581CF10A,2013-08-05,,1,F,Felony Battery w/Prior Convict,1,15016053CF10A,(F3),0,2015-12-15,Possession Of Clonazepam,2015-12-15,2015-12-16,,0,,,,,Risk of Recidivism,4,Low,2013-08-06,Risk of Violence,2,Low,2013-08-06,2015-12-15,2015-12-16,9,64,861,1,0\r\n6414,jose monserrate,jose,monserrate,2013-02-17,Male,1984-05-31,31,25 - 45,Hispanic,0,6,0,0,4,,,,13002382CF10A,2013-02-16,,1,F,Agg Fleeing and Eluding,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-17,Risk of Violence,2,Low,2013-02-17,2015-11-12,2020-01-01,4,0,998,0,0\r\n6415,tracy parker,tracy,parker,2013-09-17,Male,1965-11-07,50,Greater than 45,African-American,0,8,0,0,0,,,,,,,,M,,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-17,Risk of Violence,5,Medium,2013-09-17,2013-09-16,2013-10-10,0,23,927,0,0\r\n6420,latta mcdonald,latta,mcdonald,2013-04-30,Male,1991-10-22,24,Less than 25,African-American,0,9,1,0,9,-1,2013-04-29 07:23:26,2013-05-02 09:55:11,13008284MM10A,2013-04-29,,1,M,Operating W/O Valid License,1,14005773MM10A,(M1),0,2014-03-17,Resist/Obstruct W/O Violence,2014-03-17,2014-08-19,,0,,,,,Risk of Recidivism,9,High,2013-04-30,Risk of Violence,5,Medium,2013-04-30,2013-06-04,2013-06-06,9,2,35,0,1\r\n6422,lateria green,lateria,green,2013-10-15,Female,1993-12-02,22,Less than 25,African-American,0,9,1,0,2,-1,2013-10-14 09:45:50,2013-10-17 09:23:49,13014368CF10A,2013-10-14,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-15,Risk of Violence,8,High,2013-10-15,2013-10-14,2013-10-17,2,2,899,0,0\r\n6424,jorge sinisterra,jorge,sinisterra,2013-02-08,Male,1971-04-04,45,Greater than 45,Hispanic,0,1,0,0,1,-22,2013-01-17 06:04:20,2013-01-17 06:56:34,13001205MM10A,2013-01-17,,22,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-08,Risk of Violence,1,Low,2013-02-08,2013-01-17,2013-01-17,1,0,1148,0,0\r\n6425,sharhonda campbell,sharhonda,campbell,2014-01-22,Female,1986-01-30,30,25 - 45,African-American,0,2,0,0,2,-1,2014-01-21 11:10:03,2014-01-22 09:10:18,14000868CF10A,2014-01-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-22,Risk of Violence,2,Low,2014-01-22,2014-01-21,2014-01-22,2,0,800,0,0\r\n6426,sean atkinstall,sean,atkinstall,2013-01-05,Male,1985-06-01,30,25 - 45,Other,0,8,0,0,5,-1,2013-01-04 08:12:30,2013-01-10 01:43:15,12039480TC10A,,2012-12-06,30,M,arrest case no charge,1,14046546TC30A,(M2),,2014-05-13,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,8,High,2013-01-05,Risk of Violence,3,Low,2013-01-05,2013-01-04,2013-01-10,5,5,493,1,1\r\n6427,tavares williams,tavares,williams,2013-11-14,Male,1980-01-04,36,25 - 45,African-American,0,2,0,0,4,,,,06093744TC20A,2006-10-14,,2588,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-14,Risk of Violence,3,Low,2013-11-14,,,4,0,869,0,0\r\n6428,cynthia lanford,cynthia,lanford,2014-07-11,Female,1972-07-18,43,25 - 45,Caucasian,0,10,0,0,22,-1,2014-07-10 12:37:17,2014-08-06 05:04:56,14002808MO40A,2014-07-10,,1,M,Trespass Private Property,1,14010835CF10A,(F3),0,2014-08-08,Felony Committing Prostitution,2014-08-08,2015-02-22,,0,,,,,Risk of Recidivism,10,High,2014-07-11,Risk of Violence,4,Low,2014-07-11,2014-08-08,2015-02-22,22,26,28,1,1\r\n6430,lefort eugene,lefort,eugene,2013-04-22,Male,1966-03-07,50,Greater than 45,African-American,0,1,0,0,0,0,2013-04-22 01:45:49,2013-04-22 06:41:19,13007798MM10A,2013-04-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2013-04-22,2013-04-22,0,0,1075,0,0\r\n6431,janelle levybuissereth,janelle,levybuissereth,2014-07-09,Female,1991-11-28,24,Less than 25,Other,0,4,0,0,2,-1,2014-07-08 03:40:37,2014-07-09 07:31:40,14009362CF10A,2014-07-08,,1,F,Possession Of Methamphetamine,1,14013717CF10A,(F2),0,2014-10-11,Aggravated Battery,2014-10-11,2014-11-13,,1,14013717CF10A,(F2),2014-10-11,Aggravated Battery,Risk of Recidivism,4,Low,2014-07-09,Risk of Violence,3,Low,2014-07-09,2014-10-11,2014-11-13,2,0,94,1,1\r\n6432,shaneen avramides,shaneen,avramides,2013-02-11,Female,1973-04-20,42,25 - 45,Caucasian,0,5,0,0,3,-3,2013-02-08 09:19:36,2013-02-09 01:26:38,13001984CF10A,2013-02-08,,3,F,False Ownership Info/Pawn Item,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-11,Risk of Violence,1,Low,2013-02-11,2014-09-08,2014-09-16,3,0,574,0,0\r\n6433,samantha west,samantha,west,2014-11-13,Female,1986-11-12,29,25 - 45,Caucasian,0,7,0,0,1,-1,2014-11-12 02:53:26,2014-11-25 09:30:44,14015187CF10A,2014-11-12,,1,F,Grand Theft in the 3rd Degree,1,15010279CF10A,(F3),0,2015-08-10,Possession of Hydromorphone,2015-08-10,2015-11-12,,0,,,,,Risk of Recidivism,7,Medium,2014-11-13,Risk of Violence,5,Medium,2014-11-13,2015-06-29,2015-07-09,1,12,228,0,1\r\n6434,valerie alberto,valerie,alberto,2013-07-08,Female,1987-12-30,28,25 - 45,Hispanic,0,3,0,0,2,,,,11019061CF10A,2011-11-19,,597,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-08,Risk of Violence,3,Low,2013-07-08,,,2,0,998,0,0\r\n6436,prem alvarez,prem,alvarez,2013-03-24,Male,1985-04-10,31,25 - 45,Hispanic,0,1,0,0,0,0,2013-03-24 07:11:37,2013-03-25 08:17:18,13005765MM10A,2013-03-24,,0,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-24,Risk of Violence,1,Low,2013-03-24,2013-03-24,2013-03-25,0,1,1104,0,0\r\n6439,brion daniels,brion,daniels,2014-09-28,Male,1991-02-13,25,25 - 45,African-American,0,9,0,0,5,-1,2014-09-27 04:41:31,2014-11-20 10:01:09,14013078CF10A,,2014-09-27,1,F,arrest case no charge,1,14017393MM10A,(M1),0,2014-12-10,Battery,2014-12-10,2015-01-22,,1,14017393MM10A,(M1),2014-12-10,Battery,Risk of Recidivism,9,High,2014-09-28,Risk of Violence,6,Medium,2014-09-28,2014-12-10,2015-01-22,5,53,73,1,1\r\n6441,renard kitchen,renard,kitchen,2013-05-12,Male,1979-07-29,36,25 - 45,African-American,0,5,0,0,4,0,2013-05-12 01:05:46,2013-05-13 03:22:20,13006791CF10A,2013-05-11,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-12,Risk of Violence,3,Low,2013-05-12,2013-11-12,2014-01-07,4,1,184,0,0\r\n6442,terrance singleton,terrance,singleton,2013-05-03,Male,1992-03-27,24,Less than 25,African-American,0,5,0,0,1,-1,2013-05-02 03:02:18,2013-05-04 03:36:58,13008546MM10A,2013-05-02,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,1,14002861MM40A,(M1),,2014-06-16,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-03,Risk of Violence,7,Medium,2013-05-03,2013-05-02,2013-05-04,1,1,409,1,1\r\n6443,trevor cox,trevor,cox,2013-04-14,Male,1987-12-30,28,25 - 45,Caucasian,0,5,0,0,5,0,2013-04-14 03:00:32,2013-04-14 07:15:58,13005377CF10A,2013-04-14,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-14,Risk of Violence,4,Low,2013-04-14,2013-04-14,2013-04-14,5,0,1083,0,0\r\n6446,joseph letohic,joseph,letohic,2014-11-22,Male,1984-07-11,31,25 - 45,Caucasian,0,1,0,0,0,-1,2014-11-21 08:37:59,2014-11-22 08:22:21,14016652MM10A,2014-11-21,,1,M,Battery,1,15010812MM10A,(M1),1,2015-10-14,Battery,2015-10-15,2015-10-16,,1,15010812MM10A,(M1),2015-10-14,Battery,Risk of Recidivism,1,Low,2014-11-22,Risk of Violence,1,Low,2014-11-22,2015-10-15,2015-10-16,0,0,326,1,1\r\n6447,jodelyn orne,jodelyn,orne,2013-02-09,Male,1992-09-13,23,Less than 25,African-American,0,4,0,0,0,-1,2013-02-08 06:33:18,2013-02-11 08:47:47,13001976CF10A,2013-02-08,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-09,Risk of Violence,6,Medium,2013-02-09,2014-08-28,2015-04-28,0,2,565,0,0\r\n6448,emigdio rodriguez,emigdio,rodriguez,2013-04-12,Male,1987-02-10,29,25 - 45,Caucasian,0,6,0,0,4,-1,2013-04-11 11:52:52,2013-04-18 11:54:40,13007014MM10A,2013-04-11,,1,M,Viol Injunct Domestic Violence,1,13009787MM10A,(M2),0,2013-05-21,Prowling/Loitering,2013-05-21,2013-05-21,,1,14018152MM10A,(M1),2014-12-29,Battery,Risk of Recidivism,6,Medium,2013-04-12,Risk of Violence,3,Low,2013-04-12,2013-05-21,2013-05-21,4,6,39,0,1\r\n6449,gerrick manley,gerrick,manley,2013-08-13,Male,1964-10-17,51,Greater than 45,African-American,0,5,0,0,11,-1,2013-08-12 03:47:07,2013-10-30 09:56:54,13015210MM10A,2013-08-12,,1,M,Petit Theft $100- $300,1,15001323MM20A,(M2),,2015-05-14,Petit Theft,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-13,Risk of Violence,7,Medium,2013-08-13,2013-08-12,2013-10-30,11,78,639,1,1\r\n6450,rashid labonte,rashid,labonte,2013-01-10,Male,1982-03-23,34,25 - 45,African-American,0,5,0,0,1,-1,2013-01-09 01:08:47,2013-01-10 05:09:51,13000388CF10A,2013-01-09,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-10,Risk of Violence,3,Low,2013-01-10,2013-01-09,2013-01-10,1,0,1177,0,0\r\n6451,franklin beckwith,franklin,beckwith,2013-11-01,Male,1986-05-18,29,25 - 45,African-American,0,2,0,0,12,0,2013-11-01 05:44:04,2013-11-01 08:52:01,13015256CF10A,2013-11-01,,0,F,Driving While License Revoked,1,14000203CF10A,(F3),0,2014-01-05,Driving While License Revoked,2014-01-05,2014-02-12,,0,,,,,Risk of Recidivism,2,Low,2013-11-01,Risk of Violence,4,Low,2013-11-01,2014-01-05,2014-02-12,12,0,65,1,1\r\n6453,herman hankerson,herman,hankerson,2014-07-12,Male,1976-07-27,39,25 - 45,African-American,0,10,1,0,13,-1,2014-07-11 01:26:51,2014-07-12 08:02:59,14009514CF10A,2014-07-11,,1,F,Possession of Cocaine,1,15007243MM10A,(M1),0,2015-07-07,Trespass After Warning,2015-07-07,2015-09-18,,0,,,,,Risk of Recidivism,10,High,2014-07-12,Risk of Violence,6,Medium,2014-07-12,2015-07-07,2015-09-18,13,0,360,1,1\r\n6458,magalys aulet,magalys,aulet,2013-04-07,Female,1979-12-25,36,25 - 45,Hispanic,0,2,0,0,0,0,2013-04-07 02:43:54,2013-04-07 06:10:19,13005023CF10A,2013-04-06,,1,M,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-07,Risk of Violence,1,Low,2013-04-07,2013-04-07,2013-04-07,0,0,1090,0,0\r\n6459,billy worthy,billy,worthy,2014-03-12,Male,1957-02-18,59,Greater than 45,African-American,0,6,0,0,15,-1,2014-03-11 09:33:06,2014-03-26 05:34:47,13021000MM10A,,2014-03-11,1,M,arrest case no charge,1,14080845TC20A,(M2),,2014-11-11,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-12,Risk of Violence,2,Low,2014-03-12,2014-08-15,2014-08-16,15,14,156,0,1\r\n6462,keyon bolden,keyon,bolden,2013-12-12,Male,1992-04-21,23,Less than 25,African-American,0,8,0,2,3,-1,2013-12-11 08:58:31,2013-12-12 08:41:19,13017196CF10A,2013-12-11,,1,F,Grand Theft (Motor Vehicle),1,14026033TC20A,(M2),57,2014-04-05,Driving License Suspended,2014-06-01,2014-06-01,,1,14011407CF10A,(F2),2014-07-30,Throw Deadly Missile Into Veh,Risk of Recidivism,8,High,2013-12-12,Risk of Violence,8,High,2013-12-12,2015-01-18,2015-03-27,3,0,114,1,1\r\n6463,lenaris pope,lenaris,pope,2013-05-25,Male,1984-12-07,31,25 - 45,African-American,0,8,0,0,15,0,2013-05-25 12:00:10,2013-05-25 07:36:34,13007447CF10A,2013-05-24,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-25,Risk of Violence,3,Low,2013-05-25,2014-06-24,2014-08-19,15,0,395,0,0\r\n6466,tyrone palacios,tyrone,palacios,2013-11-18,Male,1963-04-07,53,Greater than 45,Caucasian,0,1,0,0,0,0,2013-11-18 04:04:43,2013-11-18 02:15:16,13021683MM10A,2013-11-18,,0,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-18,Risk of Violence,1,Low,2013-11-18,2013-11-18,2013-11-18,0,0,865,0,0\r\n6467,christopher hampton,christopher,hampton,2014-02-06,Male,1982-03-20,34,25 - 45,African-American,0,7,0,0,12,0,2014-02-06 12:40:18,2014-03-13 05:43:50,14001658CF10A,2014-02-05,,1,F,Unauth C/P/S Sounds>1000/Audio,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-06,Risk of Violence,5,Medium,2014-02-06,2014-02-06,2014-03-13,12,35,785,0,0\r\n6468,marlene russell,marlene,russell,2013-11-08,Female,1953-04-11,63,Greater than 45,African-American,0,1,0,0,1,0,2013-11-08 03:13:23,2013-11-08 09:33:45,13015594CF10A,2013-11-07,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2013-11-08,2013-11-08,1,0,875,0,0\r\n6469,everan whyte,everan,whyte,2013-10-31,Male,1995-04-13,21,Less than 25,Other,0,4,0,0,0,-1,2013-10-30 12:06:54,2013-10-31 11:29:01,13015138CF10A,2013-10-30,,1,F,Tampering With Physical Evidence,1,14000635MM30A,(M2),,2014-04-04,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-31,Risk of Violence,6,Medium,2013-10-31,2013-10-30,2013-10-31,0,0,155,1,1\r\n6470,rakeem baptiste,rakeem,baptiste,2014-10-04,Female,1995-03-26,21,Less than 25,African-American,0,7,0,0,0,0,2014-10-04 05:09:06,2014-10-04 07:38:51,14013392CF10A,2014-10-04,,0,F,Possession Of Alprazolam,1,14014149CF10A,(F2),0,2014-10-20,Aggrav Battery w/Deadly Weapon,2014-10-20,2014-11-18,,1,14014149CF10A,(F2),2014-10-20,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,7,Medium,2014-10-04,Risk of Violence,6,Medium,2014-10-04,2014-10-20,2014-11-18,0,0,16,1,1\r\n6471,jonathan kenney,jonathan,kenney,2014-11-22,Male,1968-07-16,47,Greater than 45,Caucasian,0,9,0,0,28,-1,2014-11-21 09:04:06,2014-12-25 06:41:19,14015702CF10A,2014-11-21,,1,F,Corrupt Public Servant,1,14018223MO10A,(M1),0,2014-12-30,Resist/Obstruct W/O Violence,2014-12-30,2014-12-31,,0,,,,,Risk of Recidivism,9,High,2014-11-22,Risk of Violence,3,Low,2014-11-22,2014-12-30,2014-12-31,28,33,38,1,1\r\n6473,wilvelinot telsaint,wilvelinot,telsaint,2014-10-11,Male,1982-01-23,34,25 - 45,African-American,0,5,0,0,7,0,2014-10-11 12:49:58,2014-10-11 01:58:15,14013687CF10A,2014-10-10,,1,F,Possession of Cocaine,1,16000376MM20A,(M1),,2016-02-03,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2014-10-11,Risk of Violence,2,Low,2014-10-11,2014-10-11,2014-10-11,7,0,480,1,1\r\n6475,yves stlouis,yves,stlouis,2013-05-29,Male,1972-11-20,43,25 - 45,African-American,0,1,0,0,1,,,,09019388MM10A,2009-08-13,,1385,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,,,1,0,1038,0,0\r\n6477,brian piggott,brian,piggott,2014-11-13,Male,1958-01-18,58,Greater than 45,Caucasian,0,5,0,0,4,0,2014-11-13 11:35:04,2014-11-14 09:12:36,14015270CF10A,2014-11-13,,0,F,Felony Petit Theft,1,15000894MM10A,(M1),0,2015-01-23,Resist/Obstruct W/O Violence,2015-01-23,2015-03-12,,1,15001923MM10A,(M1),2015-02-12,Battery,Risk of Recidivism,5,Medium,2014-11-13,Risk of Violence,3,Low,2014-11-13,2015-01-23,2015-03-12,4,1,71,1,1\r\n6478,diane perez,diane,perez,2014-11-02,Female,1975-12-31,40,25 - 45,Hispanic,0,3,0,0,4,0,2014-11-02 02:43:30,2014-11-07 04:27:50,14014723CF10A,2014-11-02,,0,F,Grand Theft (Motor Vehicle),1,15002581MM20A,(M2),56,2015-10-05,Petit Theft,2015-11-30,2015-11-30,,0,,,,,Risk of Recidivism,3,Low,2014-11-02,Risk of Violence,1,Low,2014-11-02,2014-11-02,2014-11-07,4,5,337,1,1\r\n6480,jonathan walker,jonathan,walker,2013-12-18,Male,1979-11-26,36,25 - 45,African-American,3,8,0,0,16,-8,2013-12-10 01:15:04,2013-12-18 10:47:31,13008821CF10A,,2013-12-10,8,F,arrest case no charge,1,15004166MM10A,(M1),0,2015-04-11,Unlaw Use False Name/Identity,2015-04-11,2015-05-15,,0,,,,,Risk of Recidivism,8,High,2013-12-18,Risk of Violence,7,Medium,2013-12-18,2015-04-11,2015-05-15,16,0,479,1,1\r\n6481,bria harcum,bria,harcum,2013-01-31,Female,1992-06-19,23,Less than 25,African-American,0,4,0,0,0,-1,2013-01-30 10:25:05,2013-02-01 02:10:14,13002159MM10A,2013-01-30,,1,M,Battery,1,15006087MM10A,(M1),1,2015-06-02,Possess Cannabis/20 Grams Or Less,2015-06-03,2015-06-03,,1,15008017MM10A,(M1),2015-07-28,Battery,Risk of Recidivism,4,Low,2013-01-31,Risk of Violence,4,Low,2013-01-31,2014-07-07,2014-07-22,0,1,522,0,0\r\n6482,corey lightfoot,corey,lightfoot,2013-04-26,Male,1981-11-04,34,25 - 45,African-American,0,2,0,0,5,-1,2013-04-25 08:35:15,2013-04-26 07:37:40,13005964CF10A,2013-04-25,,1,F,Possession Burglary Tools,1,15003898CF10A,(M2),0,2015-03-23,Susp Drivers Lic 1st Offense,2015-03-23,2015-03-24,,0,,,,,Risk of Recidivism,2,Low,2013-04-26,Risk of Violence,1,Low,2013-04-26,2015-03-23,2015-03-24,5,0,696,1,1\r\n6483,laird mcmahon,laird,mcmahon,2013-07-09,Male,1959-11-06,56,Greater than 45,Caucasian,0,2,0,0,13,-13,2013-06-26 10:01:48,2013-07-03 08:32:05,12000792CF10A,,2013-06-26,13,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-09,Risk of Violence,1,Low,2013-07-09,2013-06-26,2013-07-03,13,0,997,0,0\r\n6484,linda mashaw,linda,mashaw,2013-12-11,Female,1963-06-02,52,Greater than 45,Caucasian,0,1,0,0,0,-6,2013-12-05 11:56:49,2013-12-06 02:06:17,13016847CF10A,2013-12-05,,6,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2013-12-05,2013-12-06,0,0,842,0,0\r\n6485,tyrone dalton,tyrone,dalton,2013-03-27,Male,1959-07-30,56,Greater than 45,African-American,0,2,0,0,0,-1,2013-03-26 11:29:32,2013-04-02 10:35:48,13004366CF10A,2013-03-26,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-27,Risk of Violence,1,Low,2013-03-27,2013-03-26,2013-04-02,0,6,1101,0,0\r\n6487,lloy phillips,lloy,phillips,2014-02-13,Female,1978-07-11,37,25 - 45,African-American,0,1,0,0,0,-1,2014-02-12 08:58:01,2014-02-13 12:55:43,14002470MM10A,2014-02-12,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-13,Risk of Violence,1,Low,2014-02-13,2014-02-12,2014-02-13,0,0,778,0,0\r\n6488,michelle rubin-furtado,michelle,rubin-furtado,2013-09-30,Female,1965-09-22,50,Greater than 45,Caucasian,0,1,0,0,0,0,2013-09-30 12:58:02,2013-10-02 07:23:30,13018508MM10A,2013-09-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-30,2013-10-02,0,2,914,0,0\r\n6489,abnel benjamin,abnel,benjamin,2013-02-09,Male,1990-05-01,25,25 - 45,African-American,0,2,0,0,1,-1,2013-02-08 11:08:45,2013-02-09 09:12:11,13001982CF10A,2013-02-08,,1,F,Grand Theft in the 3rd Degree,1,13009789MM10A,(M2),,2013-05-21,Petit Theft,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-09,Risk of Violence,3,Low,2013-02-09,2015-09-30,2015-12-17,1,0,101,1,1\r\n6490,reginald harris,reginald,harris,2013-03-12,Male,1993-08-20,22,Less than 25,African-American,0,5,0,0,0,-1,2013-03-11 10:30:13,2013-03-12 01:07:23,13003588CF10A,2013-03-11,,1,F,Possession of Cocaine,1,13021752MM10A,(M2),1,2013-11-18,Assault,2013-11-19,2013-11-26,,1,13021752MM10A,(M2),2013-11-18,Assault,Risk of Recidivism,5,Medium,2013-03-12,Risk of Violence,5,Medium,2013-03-12,2014-02-13,2014-09-11,0,0,251,1,1\r\n6491,maria cecil,maria,cecil,2013-08-02,Female,1972-06-13,43,25 - 45,Caucasian,0,1,0,0,0,0,2013-08-02 01:25:54,2013-08-02 07:52:49,13014710MM10A,2013-08-02,,0,M,Battery,1,14017228MM10A,(M1),0,2014-12-08,Battery,2014-12-08,2014-12-08,,1,14017228MM10A,(M1),2014-12-08,Battery,Risk of Recidivism,1,Low,2013-08-02,Risk of Violence,1,Low,2013-08-02,2014-12-08,2014-12-08,0,0,493,0,1\r\n6492,michael bleier,michael,bleier,2013-01-12,Male,1985-10-18,30,25 - 45,Caucasian,0,2,0,0,1,-1,2013-01-11 03:35:40,2013-02-15 09:20:24,13000691MM10A,2013-01-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-12,Risk of Violence,2,Low,2013-01-12,2013-01-11,2013-02-15,1,34,1175,0,0\r\n6495,darren ip,darren,ip,2013-02-25,Male,1986-10-21,29,25 - 45,Asian,0,1,0,0,0,-1,2013-02-24 04:36:56,2013-02-25 01:34:48,13002837CF10A,2013-02-24,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,2,Low,2013-02-25,2013-02-24,2013-02-25,0,0,1131,0,0\r\n6496,isaac cabrera,isaac,cabrera,2013-03-31,Male,1991-12-04,24,Less than 25,Caucasian,0,2,0,0,0,-1,2013-03-30 09:22:07,2013-03-31 02:54:13,13004598CF10A,2013-03-30,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-31,Risk of Violence,3,Low,2013-03-31,2013-03-30,2013-03-31,0,0,1097,0,0\r\n6497,markei smith,markei,smith,2013-09-08,Male,1986-11-05,29,25 - 45,African-American,0,8,0,0,7,-1,2013-09-07 09:27:43,2013-09-08 06:44:09,13017071MM10A,2013-09-07,,1,M,Battery,1,14003492CF10A,(M1),0,2014-03-12,Unlaw Malic Strike K9/Horses,2014-03-12,2014-04-17,,1,14003492CF10A,(F2),2014-03-12,Agg Battery Grt/Bod/Harm,Risk of Recidivism,8,High,2013-09-08,Risk of Violence,3,Low,2013-09-08,2014-03-12,2014-04-17,7,0,185,1,1\r\n6498,andrea norris,andrea,norris,2013-01-15,Female,1989-03-31,27,25 - 45,Caucasian,0,3,0,0,3,,,,12018748CF10A,2012-12-27,,19,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-15,Risk of Violence,3,Low,2013-01-15,,,3,0,1172,0,0\r\n6500,amanda mion,amanda,mion,2013-10-02,Female,1991-10-30,24,Less than 25,Caucasian,0,4,0,0,0,-2,2013-09-30 07:53:28,2013-10-01 02:11:36,13013724CF10A,2013-09-30,,2,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-02,Risk of Violence,5,Medium,2013-10-02,2013-09-30,2013-10-01,0,0,912,0,0\r\n6501,merdis johnson,merdis,johnson,2013-11-07,Female,1941-06-08,74,Greater than 45,African-American,0,1,0,0,0,-1,2013-11-06 11:55:36,2013-11-07 02:32:47,13015489CF10A,2013-11-06,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-07,Risk of Violence,1,Low,2013-11-07,2013-11-06,2013-11-07,0,0,876,0,0\r\n6502,nathan mosley,nathan,mosley,2013-08-30,Male,1988-06-19,27,25 - 45,African-American,0,7,0,1,8,0,2013-08-30 12:08:49,2013-08-31 04:11:35,13006881MM10A,,2013-08-29,1,M,arrest case no charge,1,14002197CF10A,(F3),0,2014-02-16,Drivg While Lic Suspd/Revk/Can,2014-02-16,2014-02-18,,1,15004206MM10A,(M1),2015-04-12,Battery,Risk of Recidivism,7,Medium,2013-08-30,Risk of Violence,5,Medium,2013-08-30,2014-02-16,2014-02-18,8,1,170,1,1\r\n6503,nicky rodriguez,nicky,rodriguez,2013-04-05,Male,1978-12-25,37,25 - 45,Hispanic,0,2,0,0,1,-1,2013-04-04 11:29:59,2013-04-05 06:14:28,13004858CF10A,2013-04-04,,1,F,Pos Cannabis W/Intent Sel/Del,1,14003029MM20A,(M1),,2014-10-22,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-05,Risk of Violence,1,Low,2013-04-05,2013-04-04,2013-04-05,1,0,565,1,1\r\n6504,alphonso hayes,alphonso,hayes,2014-02-19,Male,1976-08-26,39,25 - 45,African-American,0,10,1,1,8,197,2014-09-04 04:33:11,2014-09-08 08:11:38,14002369CF10A,2014-02-19,,0,F,Possession of Cocaine,1,14014776MO10A,(MO3),0,2014-10-08,Loiter Where Sign is Posted,2014-10-08,2014-10-09,,0,,,,,Risk of Recidivism,10,High,2014-02-19,Risk of Violence,9,High,2014-02-19,2014-09-04,2014-09-08,8,0,197,0,1\r\n6505,sean gayle,sean,gayle,2013-10-26,Male,1987-04-14,29,25 - 45,Caucasian,0,2,0,0,5,0,2013-10-26 02:22:33,2013-10-26 08:52:16,13014983CF10A,2013-10-26,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-26,Risk of Violence,3,Low,2013-10-26,2013-10-26,2013-10-26,5,0,888,0,0\r\n6507,shan nielsen,shan,nielsen,2013-12-23,Male,1990-10-12,25,25 - 45,African-American,0,3,0,0,0,,,,13023534MM10A,2013-12-21,,2,M,Unlaw Use False Name/Identity,1,14037237TC20A,(M2),,2014-05-21,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-23,Risk of Violence,4,Low,2013-12-23,,,0,0,149,1,1\r\n6508,latara doe,latara,doe,2013-11-20,Female,1981-02-15,35,25 - 45,African-American,0,3,0,0,5,-1,2013-11-19 12:43:57,2013-11-20 09:48:47,13016050CF10A,2013-11-19,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-20,Risk of Violence,3,Low,2013-11-20,2013-11-19,2013-11-20,5,0,863,0,0\r\n6511,amos robertshudson,amos,robertshudson,2013-10-24,Male,1986-07-17,29,25 - 45,African-American,0,6,0,0,1,-1,2013-10-23 02:06:58,2014-01-30 11:45:38,13020116MM10A,2013-10-23,,1,M,Battery,1,15004035MM10A,(M1),,2015-04-06,Extradition/Defendants,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-24,Risk of Violence,5,Medium,2013-10-24,2013-10-23,2014-01-30,1,98,529,1,1\r\n6512,sean barnes,sean,barnes,2013-12-06,Male,1979-08-19,36,25 - 45,Caucasian,0,2,0,0,1,-1,2013-12-05 08:09:58,2013-12-06 09:55:53,13017002CF10A,,2013-12-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-06,Risk of Violence,1,Low,2013-12-06,2013-12-05,2013-12-06,1,0,847,0,0\r\n6513,ronald johnson,ronald,johnson,2013-04-22,Male,1954-07-30,61,Greater than 45,African-American,0,4,0,0,13,64,2013-06-25 04:44:14,2013-08-30 10:25:00,12010479CF10A,2012-07-17,,279,F,Possession of Cocaine,1,14012286MM10A,(M2),0,2014-08-13,Disorderly Conduct,2014-08-13,2014-08-18,,0,,,,,Risk of Recidivism,4,Low,2013-04-22,Risk of Violence,2,Low,2013-04-22,2013-06-25,2013-08-30,13,0,64,0,1\r\n6514,denim thomas,denim,thomas,2013-01-10,Male,1989-08-15,26,25 - 45,Caucasian,0,4,0,0,2,0,2013-01-10 12:22:27,2013-01-12 02:52:10,13000386CF10A,2013-01-09,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-10,Risk of Violence,7,Medium,2013-01-10,2015-05-01,2015-05-28,2,2,841,0,0\r\n6518,dave walker,dave,walker,2013-01-06,Male,1988-01-09,28,25 - 45,African-American,0,5,0,0,1,,,,09018697MM10A,2009-08-07,,1248,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-06,Risk of Violence,5,Medium,2013-01-06,,,1,0,1181,0,0\r\n6520,miesha jones,miesha,jones,2014-01-22,Female,1989-08-04,26,25 - 45,African-American,0,5,0,0,1,-1,2014-01-21 05:58:42,2014-01-22 09:20:42,14000884CF10A,,2014-01-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-22,Risk of Violence,4,Low,2014-01-22,2014-01-21,2014-01-22,1,0,800,0,0\r\n6521,olivia mcclellan,olivia,mcclellan,2014-03-20,Female,1976-07-08,39,25 - 45,Caucasian,0,6,1,0,11,-1,2014-03-19 06:43:33,2014-03-20 10:04:50,14003910CF10A,2014-03-19,,1,F,Felony Petit Theft,1,15001432CF10A,(F3),0,2015-01-30,Felony Petit Theft,2015-01-30,2015-01-31,,0,,,,,Risk of Recidivism,6,Medium,2014-03-20,Risk of Violence,3,Low,2014-03-20,2015-01-30,2015-01-31,11,0,316,1,1\r\n6522,johnny martinez,johnny,martinez,2013-03-22,Male,1994-01-27,22,Less than 25,African-American,0,4,1,0,3,-1,2013-03-21 04:40:57,2013-03-22 10:20:25,13004125CF10A,2013-03-21,,1,F,Grand Theft in the 3rd Degree,1,13010894MM10A,(M1),165,2013-03-30,Possess Cannabis/20 Grams Or Less,2013-09-11,2013-10-14,,0,,,,,Risk of Recidivism,4,Low,2013-03-22,Risk of Violence,6,Medium,2013-03-22,2013-09-11,2013-10-14,3,0,8,1,1\r\n6524,jordan rodriguez,jordan,rodriguez,2013-04-25,Male,1987-12-01,28,25 - 45,Caucasian,0,3,0,0,0,-1,2013-04-24 06:15:34,2013-04-26 04:51:42,13005908CF10A,2013-04-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-25,Risk of Violence,2,Low,2013-04-25,2014-01-22,2014-01-29,0,1,272,0,0\r\n6525,martin chauncey,martin,chauncey,2013-03-11,Male,1964-06-20,51,Greater than 45,Caucasian,0,1,0,0,1,-2,2013-03-09 10:28:41,2013-03-10 01:03:52,13003507CF10A,2013-03-09,,2,F,Possession Of Alprazolam,1,13048905TC10A,(M2),,2013-11-23,Ped Obstruct Traf/No Permit Sol,,,,1,15004302CF10A,(F3),2015-04-01,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-05-28,2013-07-05,1,0,78,0,1\r\n6526,iliana fernandez,iliana,fernandez,2014-01-21,Female,1980-06-23,35,25 - 45,Hispanic,0,2,0,0,0,-1,2014-01-20 09:04:36,2014-01-21 09:57:17,14000989MM10A,2014-01-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-21,Risk of Violence,1,Low,2014-01-21,2014-01-20,2014-01-21,0,0,801,0,0\r\n6527,vanessa malcolm,vanessa,malcolm,2014-03-02,Female,1992-05-24,23,Less than 25,African-American,0,2,0,0,0,-1,2014-03-01 02:14:47,2014-03-02 08:12:14,14003540MM10A,2014-03-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-02,Risk of Violence,3,Low,2014-03-02,2014-03-01,2014-03-02,0,0,761,0,0\r\n6528,kevin ellis,kevin,ellis,2013-07-31,Male,1986-05-19,29,25 - 45,African-American,1,6,2,0,6,0,2013-07-31 12:06:58,2013-08-01 08:24:53,13010720CF10A,2013-07-31,,0,F,Crim Use of Personal ID Info,1,15001563MM20A,(M1),269,2015-06-12,Petit Theft $100- $300,2016-03-07,2016-03-08,,0,,,,,Risk of Recidivism,6,Medium,2013-07-31,Risk of Violence,8,High,2013-07-31,2013-07-31,2013-08-01,6,1,681,1,1\r\n6529,robert brown,robert,brown,2014-04-22,Male,1995-09-01,20,Less than 25,Other,0,3,0,0,0,-1,2014-04-21 03:41:23,2014-04-22 08:36:10,14005634CF10A,2014-04-21,,1,F,Uttering a Forged Instrument,1,14010109MM10A,(M1),0,2014-06-09,Possess Drug Paraphernalia,2014-06-09,2014-07-11,,0,,,,,Risk of Recidivism,3,Low,2014-04-22,Risk of Violence,5,Medium,2014-04-22,2014-06-09,2014-07-11,0,0,48,1,1\r\n6531,calvin parker,calvin,parker,2013-04-20,Male,1992-03-17,24,Less than 25,African-American,0,9,0,2,1,-1,2013-04-19 04:36:06,2013-04-25 09:32:05,12024611MO10A,,2013-04-19,1,M,arrest case no charge,1,15003386CF10A,(M1),0,2015-01-26,Resist/Obstruct W/O Violence,2015-01-26,2015-06-15,,0,,,,,Risk of Recidivism,9,High,2013-04-20,Risk of Violence,9,High,2013-04-20,2013-08-02,2014-02-03,1,5,104,0,1\r\n6533,jessica cajete,jessica,cajete,2013-09-23,Female,1992-08-11,23,Less than 25,Hispanic,0,4,1,0,2,-1,2013-09-22 01:21:07,2013-09-23 09:39:36,13018067MM10A,2013-09-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-23,Risk of Violence,6,Medium,2013-09-23,2013-09-22,2013-09-23,2,0,921,0,0\r\n6534,shimeko johnson,shimeko,johnson,2013-09-20,Female,1983-02-01,33,25 - 45,African-American,0,7,0,0,5,-1,2013-09-19 10:53:46,2014-03-25 03:47:18,13013220CF10A,2013-09-19,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-20,Risk of Violence,5,Medium,2013-09-20,2016-03-24,2020-01-01,5,186,916,0,0\r\n6535,brandon olivo,brandon,olivo,2013-04-25,Male,1994-11-14,21,Less than 25,Caucasian,1,3,0,0,1,-1,2013-04-24 12:53:34,2013-04-25 09:14:52,13005466CF10A,,2013-04-24,1,F,arrest case no charge,1,13054052TC30A,(M2),,2013-05-27,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-25,Risk of Violence,6,Medium,2013-04-25,2013-04-24,2013-04-25,1,0,32,1,1\r\n6536,karl smith,karl,smith,2013-05-15,Male,1956-11-12,59,Greater than 45,Caucasian,0,1,0,0,3,-3,2013-05-12 05:17:01,2013-05-14 07:57:33,13009151MM10A,2013-05-11,,4,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-15,Risk of Violence,1,Low,2013-05-15,2013-05-12,2013-05-14,3,0,1052,0,0\r\n6537,alejandro cabrera,alejandro,cabrera,2013-09-23,Male,1990-03-30,26,25 - 45,Caucasian,0,4,0,0,4,0,2013-09-23 12:36:24,2013-09-26 08:28:31,13013392CF10A,2013-09-23,,0,F,Tamper With Witness/Victim/CI,1,13014027CF10A,(M1),0,2013-10-06,Viol Pretrial Release Dom Viol,2013-10-06,2013-12-17,,1,13014027CF10A,(M1),2013-10-06,Battery,Risk of Recidivism,4,Low,2013-09-23,Risk of Violence,3,Low,2013-09-23,2013-10-06,2013-12-17,4,3,13,1,1\r\n6538,rosario pennachio,rosario,pennachio,2013-03-20,Male,1979-09-30,36,25 - 45,Caucasian,0,1,0,0,0,,,,,,,,M,,1,16000097MM10A,(M2),,2015-12-07,Trespass Struct/Conveyance,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-02-16,2013-03-19,0,0,992,1,0\r\n6539,pathelin felix,pathelin,felix,2014-03-27,Male,1977-09-02,38,25 - 45,Other,0,1,0,0,2,-1,2014-03-26 05:07:09,2014-03-27 01:44:46,14004307CF10A,2014-03-26,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-27,Risk of Violence,1,Low,2014-03-27,2014-03-26,2014-03-27,2,0,736,0,0\r\n6541,julian metayer,julian,metayer,2014-07-18,Male,1996-06-07,19,Less than 25,Caucasian,1,9,3,2,5,-31,2014-06-17 11:28:28,2014-07-16 01:22:07,14036698TC20A,,2014-06-17,31,M,arrest case no charge,1,15005380CF10A,(F3),,2015-02-25,Burglary Structure Unoccup,,,,0,,,,,Risk of Recidivism,9,High,2014-07-18,Risk of Violence,9,High,2014-07-18,2014-11-25,2014-12-03,5,0,130,0,1\r\n6546,michael miranda,michael,miranda,2013-11-25,Male,1987-11-11,28,25 - 45,Hispanic,0,8,0,0,2,-1,2013-11-24 03:03:07,2013-11-27 08:15:41,13016343CF10A,2013-11-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-25,Risk of Violence,6,Medium,2013-11-25,2013-11-24,2013-11-27,2,2,858,0,0\r\n6547,andres ussa,andres,ussa,2014-05-27,Male,1993-04-16,23,Less than 25,Hispanic,0,5,0,0,2,-1,2014-05-26 11:42:15,2014-07-24 10:35:04,14007299CF10A,,2014-05-26,1,F,arrest case no charge,1,15052028TC40A,(M2),,2015-09-02,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,5,Medium,2014-05-27,Risk of Violence,4,Low,2014-05-27,2014-10-17,2014-10-23,2,58,143,0,1\r\n6548,kendall glasgow,kendall,glasgow,2014-05-19,Male,1994-04-23,21,Less than 25,African-American,0,5,0,2,1,-1,2014-05-18 06:59:59,2014-05-19 08:23:45,14006915CF10A,2014-05-18,,1,F,Obstruct Officer W/Violence,1,14008620MM10A,(M1),0,2014-05-29,Possess Cannabis/20 Grams Or Less,2014-05-29,2014-05-29,,0,,,,,Risk of Recidivism,5,Medium,2014-05-19,Risk of Violence,5,Medium,2014-05-19,2014-05-29,2014-05-29,1,0,10,0,1\r\n6549,melvin brown,melvin,brown,2013-03-24,Male,1963-07-31,52,Greater than 45,African-American,0,1,0,0,0,-1,2013-03-23 05:06:30,2013-03-24 07:32:38,13005704MM10A,2013-03-23,,1,M,Battery,1,15018695TC20A,(M2),,2015-03-14,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-24,Risk of Violence,1,Low,2013-03-24,2013-03-23,2013-03-24,0,0,720,1,1\r\n6550,coy clemons,coy,clemons,2013-03-26,Male,1959-06-03,56,Greater than 45,African-American,0,5,0,0,12,-1,2013-03-25 10:10:57,2013-03-27 02:33:53,13004327CF10A,2013-03-25,,1,F,Possession of Cocaine,1,14011621CF10A,(F3),825,2013-03-30,Fail Register Career Offender,2015-07-03,2015-07-05,,0,,,,,Risk of Recidivism,5,Medium,2013-03-26,Risk of Violence,4,Low,2013-03-26,2013-03-25,2013-03-27,12,1,4,1,1\r\n6551,max connolly,max,connolly,2013-12-24,Male,1976-03-04,40,25 - 45,Caucasian,0,4,0,0,1,-1,2013-12-23 09:56:19,2013-12-25 01:50:51,13023696MM10A,2013-12-23,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-24,Risk of Violence,3,Low,2013-12-24,2013-12-23,2013-12-25,1,1,829,0,0\r\n6552,lee fitzgerald,lee,fitzgerald,2014-02-06,Female,1967-11-05,48,Greater than 45,Caucasian,0,4,0,0,8,-26,2014-01-11 11:55:03,2014-02-04 05:57:53,14000477CF10A,2014-01-11,,26,M,Felony Battery w/Prior Convict,1,14007990MM10A,(M1),1,2014-05-16,Resist/Obstruct W/O Violence,2014-05-17,2014-05-29,,0,,,,,Risk of Recidivism,4,Low,2014-02-06,Risk of Violence,2,Low,2014-02-06,2014-05-17,2014-05-29,8,0,99,1,1\r\n6553,joshua rinchere,joshua,rinchere,2013-01-03,Male,1991-11-21,24,Less than 25,African-American,0,6,1,2,2,561,2014-07-18 05:54:57,2014-07-18 12:53:51,12017517MM10A,2011-12-06,,394,M,Cause Anoth Phone Ring Repeat,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-03,Risk of Violence,7,Medium,2013-01-03,2014-07-18,2014-07-18,2,0,561,0,0\r\n6554,amber howell,amber,howell,2013-12-21,Female,1990-01-02,26,25 - 45,African-American,0,4,0,0,0,-1,2013-12-20 03:42:01,2013-12-21 01:56:09,13017566CF10A,2013-12-20,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-21,Risk of Violence,4,Low,2013-12-21,2015-09-10,2015-09-10,0,0,628,0,0\r\n6557,cleveland daniels,cleveland,daniels,2013-08-15,Male,1956-07-16,59,Greater than 45,African-American,0,6,0,0,5,,,,09001028TC10A,2008-09-28,,1782,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-15,Risk of Violence,4,Low,2013-08-15,1997-07-17,2000-10-11,5,0,960,0,0\r\n6558,thomas gunuskey,thomas,gunuskey,2014-08-13,Male,1950-02-18,66,Greater than 45,Caucasian,0,1,0,0,1,-14,2014-07-30 09:41:54,2014-08-04 07:36:50,14008720CF10A,,2014-07-30,14,F,arrest case no charge,1,15013562CF10A,(F2),1,2015-10-17,Lewd/Lasc Battery Pers 12+/<16,2015-10-18,2015-10-19,,0,,,,,Risk of Recidivism,1,Low,2014-08-13,Risk of Violence,1,Low,2014-08-13,2015-10-18,2015-10-19,1,0,430,1,1\r\n6560,annette jackson,annette,jackson,2013-12-02,Female,1961-08-13,54,Greater than 45,African-American,0,4,0,0,6,-1,2013-12-01 02:04:46,2013-12-02 09:23:47,13016643CF10A,2013-12-01,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-02,6,0,851,0,0\r\n6563,brian esporrin,brian,esporrin,2014-01-27,Male,1984-09-29,31,25 - 45,Caucasian,0,7,0,0,4,-1,2014-01-26 09:54:39,2014-02-22 05:13:12,14001451MM10A,2014-01-26,,1,M,Battery,1,14003079MM20A,(M2),,2014-10-17,Driving License Suspended,,,,1,16002416MM10A,(M1),2016-03-01,Battery,Risk of Recidivism,7,Medium,2014-01-27,Risk of Violence,7,Medium,2014-01-27,2014-01-26,2014-02-22,4,26,263,1,1\r\n6564,gilberto padua,gilberto,padua,2013-05-22,Male,1982-01-15,34,25 - 45,Caucasian,0,3,0,0,0,-1,2013-05-21 11:08:14,2013-05-22 07:36:48,13007242CF10A,2013-05-21,,1,F,Grand Theft in the 3rd Degree,1,15012253MM10A,(M1),,2015-11-01,Battery,,,,1,15012253MM10A,(M1),2015-11-01,Battery,Risk of Recidivism,3,Low,2013-05-22,Risk of Violence,2,Low,2013-05-22,2015-07-02,2015-07-09,0,0,771,0,0\r\n6566,roderick howell,roderick,howell,2013-02-07,Male,1990-05-07,25,25 - 45,African-American,0,9,0,0,9,-1,2013-02-06 12:43:24,2013-05-02 06:27:07,11010506CF10A,,2013-02-06,1,F,arrest case no charge,1,14010810CF10A,(M2),0,2014-08-08,Susp Drivers Lic 1st Offense,2014-08-08,2014-09-25,,0,,,,,Risk of Recidivism,9,High,2013-02-07,Risk of Violence,8,High,2013-02-07,2014-08-08,2014-09-25,9,412,547,1,1\r\n6570,michael andrews,michael,andrews,2013-03-08,Male,1969-02-01,47,Greater than 45,Caucasian,0,4,0,0,2,-7,2013-03-01 05:20:32,2013-03-07 08:32:27,13003102CF10A,2013-03-01,,7,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-08,Risk of Violence,1,Low,2013-03-08,2013-09-13,2013-09-20,2,0,189,0,0\r\n6571,wyle myrick,wyle,myrick,2013-01-15,Male,1964-12-15,51,Greater than 45,African-American,0,8,0,1,12,-1,2013-01-14 09:08:43,2013-01-15 01:17:37,13000651CF10A,2013-01-14,,1,F,Felony Driving While Lic Suspd,1,14088029TC30A,(M2),,2014-10-17,Driving License Suspended,,,,1,15000544CF10A,(F3),2014-10-23,Felony Battery (Dom Strang),Risk of Recidivism,8,High,2013-01-15,Risk of Violence,3,Low,2013-01-15,2015-01-29,2015-03-04,12,0,640,1,1\r\n6572,matthew bohl,matthew,bohl,2013-09-11,Male,1990-06-27,25,25 - 45,Caucasian,0,3,0,0,1,-23,2013-08-19 12:20:34,2013-08-19 07:02:51,12015964CF10A,,2013-08-18,24,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-11,Risk of Violence,3,Low,2013-09-11,2013-08-19,2013-08-19,1,0,933,0,0\r\n6573,damian wright,damian,wright,2013-03-21,Male,1990-12-28,25,25 - 45,Other,0,2,0,0,0,-1,2013-03-20 03:26:30,2013-04-09 08:53:54,13004045CF10A,2013-03-20,,1,F,Felony Battery,1,13012915MM10A,(M1),0,2013-07-07,Battery,2013-07-07,2013-09-21,,1,13012915MM10A,(M1),2013-07-07,Battery,Risk of Recidivism,2,Low,2013-03-21,Risk of Violence,4,Low,2013-03-21,2013-07-07,2013-09-21,0,19,108,1,1\r\n6574,shawanna blue,shawanna,blue,2013-08-27,Female,1985-02-13,31,25 - 45,African-American,0,2,0,0,2,-1,2013-08-26 10:47:01,2013-08-27 08:02:23,13012027CF10A,2013-08-26,,1,F,Aggravated Assault W/Dead Weap,1,13016862MM10A,(M1),0,2013-09-03,Viol Pretrial Release Dom Viol,2013-09-03,2013-09-04,,0,,,,,Risk of Recidivism,2,Low,2013-08-27,Risk of Violence,2,Low,2013-08-27,2013-09-03,2013-09-04,2,0,7,1,1\r\n6575,alberto espino,alberto,espino,2013-02-22,Male,1971-05-11,44,25 - 45,Hispanic,0,1,0,0,2,367,2014-02-24 11:33:39,2014-02-25 09:19:16,12017050CF10A,,2012-12-05,79,F,arrest case no charge,1,14003599CF10A,(F3),,2014-02-18,Child Abuse,,,,1,14003599CF10A,(F3),2014-02-18,Child Abuse,Risk of Recidivism,1,Low,2013-02-22,Risk of Violence,2,Low,2013-02-22,2014-02-24,2014-02-25,2,0,361,1,1\r\n6577,michael spetsieris,michael,spetsieris,2013-02-08,Male,1979-12-07,36,25 - 45,Caucasian,0,2,0,0,1,-1,2013-02-07 05:59:46,2013-02-08 02:14:56,13002149CF10A,,2013-02-07,1,F,arrest case no charge,1,15002345MM10A,(M1),0,2015-02-25,Child Neglect/Delinquency,2015-02-25,2015-04-28,,1,15002345MM10A,(M1),2015-02-25,Battery,Risk of Recidivism,2,Low,2013-02-08,Risk of Violence,3,Low,2013-02-08,2015-02-25,2015-04-28,1,0,747,1,0\r\n6578,jake jacob,jake,jacob,2013-03-06,Male,1938-05-15,77,Greater than 45,Caucasian,0,1,0,0,3,,,,07014679CF10A,,2008-06-02,1738,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-06,Risk of Violence,1,Low,2013-03-06,,,3,0,1122,0,0\r\n6580,brent jardine,brent,jardine,2013-03-18,Male,1966-10-28,49,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-18 12:03:32,2013-03-18 02:06:52,13005225MM10A,2013-03-17,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-18,2013-03-18,0,0,1110,0,0\r\n6583,thaddaus holmes,thaddaus,holmes,2013-04-05,Male,1984-12-24,31,25 - 45,African-American,0,7,0,0,0,-1,2013-04-04 10:04:39,2013-04-05 09:22:00,13004851CF10A,2013-04-04,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-05,Risk of Violence,4,Low,2013-04-05,2014-11-20,2015-03-20,0,0,594,0,0\r\n6584,daniel ganten,daniel,ganten,2014-03-11,Male,1986-03-30,30,25 - 45,Caucasian,0,3,0,1,1,-1,2014-03-10 03:11:33,2014-03-11 01:26:00,14003379CF10A,2014-03-10,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-11,Risk of Violence,3,Low,2014-03-11,2014-08-28,2014-08-29,1,0,170,0,0\r\n6585,ricoh smith,ricoh,smith,2013-04-20,Male,1987-01-26,29,25 - 45,African-American,1,9,0,0,3,-1,2013-04-19 10:51:38,2013-04-20 09:50:28,13005599CF10A,2013-04-19,,1,F,Att Burgl Unoccupied Dwel,1,14012126CF10A,(F3),,2014-09-05,Poss Pyrrolidinovalerophenone,,,,0,,,,,Risk of Recidivism,9,High,2013-04-20,Risk of Violence,6,Medium,2013-04-20,2016-01-28,2020-01-01,3,0,503,1,1\r\n6586,jacqueline garcia,jacqueline,garcia,2014-01-07,Female,1963-01-20,53,Greater than 45,Caucasian,0,5,0,0,6,-1,2014-01-06 10:28:38,2014-01-17 06:13:46,14000231CF10A,2014-01-06,,1,F,Possession of Cocaine,1,15011153MO10A,(MO3),0,2015-10-23,Loiter Solicit Act Prostitute,2015-10-23,2015-10-25,,0,,,,,Risk of Recidivism,5,Medium,2014-01-07,Risk of Violence,1,Low,2014-01-07,2014-09-10,2014-12-29,6,10,246,0,1\r\n6587,bernard bellamy,bernard,bellamy,2013-10-15,Male,1994-11-10,21,Less than 25,African-American,0,9,1,0,1,-1,2013-10-14 05:20:14,2015-01-13 06:24:21,13014382CF10A,2013-10-14,,1,F,Att Burgl Unoccupied Dwel,1,14015162CF10A,(F3),160,2014-10-24,Battery Upon Detainee,2015-04-02,2015-04-16,,1,14015162CF10A,(F3),2014-10-24,Battery Upon Detainee,Risk of Recidivism,9,High,2013-10-15,Risk of Violence,8,High,2013-10-15,2013-10-14,2015-01-13,1,0,374,1,1\r\n6588,lawrence mincey,lawrence,mincey,2013-12-07,Male,1994-08-29,21,Less than 25,African-American,0,4,0,0,0,-1,2013-12-06 11:23:29,2013-12-07 01:44:43,13016905CF10A,2013-12-06,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-07,Risk of Violence,6,Medium,2013-12-07,2013-12-06,2013-12-07,0,0,846,0,0\r\n6589,nadia grant,nadia,grant,2013-10-25,Female,1989-02-01,27,25 - 45,African-American,0,5,0,0,1,0,2013-10-25 04:39:33,2013-10-25 08:52:43,13014932CF10A,2013-10-24,,1,F,Fraudulent Use of Credit Card,1,14088049TC30A,(M2),,2014-10-11,Expired DL More Than 6 Months,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-25,Risk of Violence,4,Low,2013-10-25,2013-10-25,2013-10-25,1,0,351,1,1\r\n6591,flora emery,flora,emery,2014-02-24,Female,1951-02-20,65,Greater than 45,African-American,0,1,0,0,0,-1,2014-02-23 10:06:57,2014-02-24 09:55:50,14002554CF10A,2014-02-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-23,2014-02-24,0,0,767,0,0\r\n6592,marlene decarlos,marlene,decarlos,2014-02-06,Female,1956-08-17,59,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-02-05 04:46:13,2014-02-05 09:09:15,14004643MU10A,2014-02-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-06,Risk of Violence,1,Low,2014-02-06,2014-02-05,2014-02-05,0,0,785,0,0\r\n6593,robert heagle,robert,heagle,2013-11-18,Male,1957-01-23,59,Greater than 45,African-American,0,1,0,0,0,-1,2013-11-17 10:33:58,2013-11-19 08:59:35,13021612MM10A,2013-11-17,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-18,Risk of Violence,1,Low,2013-11-18,2013-11-17,2013-11-19,0,1,865,0,0\r\n6594,trevant taylor,trevant,taylor,2013-03-15,Male,1992-03-07,24,Less than 25,African-American,0,7,0,0,0,-1,2013-03-14 08:45:46,2013-03-17 08:58:08,13005088MM10A,2013-03-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-15,Risk of Violence,7,Medium,2013-03-15,2013-03-14,2013-03-17,0,2,1113,0,0\r\n6595,benjamin fanfan,benjamin,fanfan,2013-02-20,Male,1975-04-24,40,25 - 45,African-American,0,1,0,0,0,0,2013-02-20 06:23:55,2013-02-21 08:02:45,13002591CF10A,2013-02-19,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-02-20,2013-02-21,0,1,1136,0,0\r\n6596,earl williams,earl,williams,2014-06-24,Male,1964-07-05,51,Greater than 45,African-American,0,1,0,0,0,-1,2014-06-23 01:48:55,2014-06-25 09:25:00,14008648CF10A,2014-06-23,,1,F,Criminal Mischief,1,14001698MM30A,(M1),,2014-10-27,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,1,Low,2014-06-24,Risk of Violence,1,Low,2014-06-24,2014-06-23,2014-06-25,0,1,125,1,1\r\n6597,charles harvey,charles,harvey,2013-03-18,Male,1981-04-28,34,25 - 45,African-American,1,9,0,0,10,-1,2013-03-17 08:10:17,2013-03-18 02:41:05,13003878CF10A,2013-03-17,,1,F,Possession Of Alprazolam,1,14005915CF10A,(F3),,2013-05-20,Grand Theft in the 3rd Degree,,,,1,13016846CF10A,(M1),2013-12-05,Battery,Risk of Recidivism,9,High,2013-03-18,Risk of Violence,4,Low,2013-03-18,2014-02-04,2014-06-10,10,0,63,1,1\r\n6600,jairo polanco,jairo,polanco,2013-02-08,Male,1985-10-15,30,25 - 45,Hispanic,0,2,0,0,1,0,2013-02-08 12:28:38,2013-02-08 01:15:00,13001942CF10A,2013-02-07,,1,F,Poss Unlaw Issue Driver Licenc,1,14007899CF10A,(F3),0,2014-06-07,Poss Counterfeit Payment Inst,2014-06-07,2014-07-22,,0,,,,,Risk of Recidivism,2,Low,2013-02-08,Risk of Violence,2,Low,2013-02-08,2014-06-07,2014-07-22,1,0,484,1,1\r\n6601,herbert morris,herbert,morris,2014-02-24,Male,1964-01-01,52,Greater than 45,African-American,0,1,0,0,1,-1,2014-02-23 02:25:36,2014-02-24 01:35:35,14002552CF10A,2014-02-23,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-23,2014-02-24,1,0,767,0,0\r\n6602,david picard,david,picard,2013-09-30,Male,1987-03-19,29,25 - 45,Caucasian,0,4,0,0,1,-39,2013-08-22 12:11:24,2013-09-25 02:14:52,13011782CF10A,2013-08-21,,40,F,Burglary Unoccupied Dwelling,1,14008177CF10A,(M1),0,2014-06-12,Trespass Other Struct/Conve,2014-06-12,2014-07-15,,0,,,,,Risk of Recidivism,4,Low,2013-09-30,Risk of Violence,6,Medium,2013-09-30,2013-12-19,2014-01-07,1,0,80,0,1\r\n6603,moses martin,moses,martin,2014-08-07,Male,1991-05-09,24,Less than 25,African-American,0,9,0,0,15,-31,2014-07-07 11:37:13,2014-07-12 02:11:41,11004711CF10A,,2014-07-07,31,F,arrest case no charge,1,15015032CF10A,(F3),,2015-11-18,Battery Upon Detainee,,,,1,15015032CF10A,(F3),2015-11-18,Battery Upon Detainee,Risk of Recidivism,9,High,2014-08-07,Risk of Violence,9,High,2014-08-07,2014-09-12,2015-01-09,15,0,36,0,1\r\n6604,stacey lewis,stacey,lewis,2013-05-26,Male,1978-02-03,38,25 - 45,African-American,0,3,0,0,2,-1,2013-05-25 08:47:26,2013-05-28 01:16:45,13007501CF10A,2013-05-25,,1,F,Aggrav Battery w/Deadly Weapon,1,14002354MM40A,(M1),,2014-05-16,Possess Cannabis/20 Grams Or Less,,,,1,15012816CF10A,(F3),2015-10-03,Agg Assault W/int Com Fel Dome,Risk of Recidivism,3,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2013-05-25,2013-05-28,2,2,355,1,1\r\n6605,whitney bennett,whitney,bennett,2013-07-23,Female,1993-06-16,22,Less than 25,African-American,0,8,0,0,0,-6,2013-07-17 11:09:16,2013-07-18 07:36:50,13010011CF10A,2013-07-17,,6,F,Poss of Methylethcathinone,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-07-23,Risk of Violence,8,High,2013-07-23,2014-01-17,2014-01-18,0,0,178,0,0\r\n6606,gerraro bell,gerraro,bell,2013-02-01,Male,1972-12-21,43,25 - 45,African-American,0,5,0,0,0,-1,2013-01-31 08:25:07,2013-02-03 08:56:37,13001554CF10A,2013-01-31,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-01,Risk of Violence,3,Low,2013-02-01,2013-01-31,2013-02-03,0,2,1155,0,0\r\n6608,stephen maher,stephen,maher,2013-12-10,Male,1983-09-30,32,25 - 45,Caucasian,0,9,0,0,5,0,2013-12-10 06:11:40,2014-02-03 08:48:44,13017063CF10A,2013-12-10,,0,F,Possession of Cocaine,1,14086476TC20A,(M2),,2014-12-08,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2013-12-10,Risk of Violence,3,Low,2013-12-10,2013-12-10,2014-02-03,5,55,363,1,1\r\n6611,darryl stringer,darryl,stringer,2013-10-04,Male,1960-11-16,55,Greater than 45,African-American,0,1,0,0,0,-1,2013-10-03 06:04:09,2013-10-04 08:21:14,13013904CF10A,2013-10-03,,1,F,Failure To Return Hired Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-04,Risk of Violence,1,Low,2013-10-04,2014-01-15,2014-02-21,0,0,103,0,0\r\n6613,trenton bractley,trenton,bractley,2013-12-14,Male,1989-09-03,26,25 - 45,African-American,0,2,0,0,2,-1,2013-12-13 03:52:22,2013-12-22 01:52:00,13017254CF10A,2013-12-13,,1,F,Burglary Unoccupied Dwelling,1,16002864CF10A,(F3),,2016-03-06,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-14,Risk of Violence,3,Low,2013-12-14,2015-06-12,2015-06-23,2,8,545,0,0\r\n6614,juan villa,juan,villa,2013-11-22,Male,1993-01-08,23,Less than 25,Caucasian,0,2,0,1,1,-1,2013-11-21 07:44:23,2013-11-22 05:14:14,13021926MM10A,2013-11-21,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-22,Risk of Violence,3,Low,2013-11-22,2013-11-21,2013-11-22,1,0,861,0,0\r\n6615,alison coutain,alison,coutain,2013-05-26,Female,1968-12-28,47,Greater than 45,Other,0,1,0,0,0,-1,2013-05-25 09:23:37,2013-05-28 10:06:23,13007499CF10A,2013-05-25,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2013-05-25,2013-05-28,0,2,1041,0,0\r\n6616,jacob chismar,jacob,chismar,2014-05-04,Male,1987-11-17,28,25 - 45,Caucasian,0,2,0,0,1,-1,2014-05-03 11:13:44,2014-05-04 08:36:19,14016887MU10A,2014-05-03,,1,M,Driving License Suspended,1,14007203CF10A,(F3),0,2014-05-23,Possession Of Alprazolam,2014-05-23,2014-05-24,,0,,,,,Risk of Recidivism,2,Low,2014-05-04,Risk of Violence,2,Low,2014-05-04,2014-05-23,2014-05-24,1,0,19,1,1\r\n6621,andres penalopez,andres,penalopez,2013-09-22,Male,1988-06-15,27,25 - 45,Hispanic,0,2,0,0,0,0,2013-09-22 03:53:21,2013-09-22 08:00:54,13013359CF10A,2013-09-21,,1,F,Grand Theft in the 3rd Degree,1,14014299CF10A,(F3),0,2014-10-23,Use of Anti-Shoplifting Device,2014-10-23,2014-10-24,,0,,,,,Risk of Recidivism,2,Low,2013-09-22,Risk of Violence,3,Low,2013-09-22,2014-10-23,2014-10-24,0,0,396,1,1\r\n6624,eduardo reyes,eduardo,reyes,2013-02-24,Male,1955-03-19,61,Greater than 45,Hispanic,0,4,0,0,2,-1,2013-02-23 04:41:56,2013-02-26 05:46:04,13002771CF10A,2013-02-23,,1,F,Felony Petit Theft,1,14002119CF10A,(F3),,2014-02-14,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-24,Risk of Violence,1,Low,2013-02-24,2013-05-17,2013-11-07,2,2,82,0,1\r\n6626,terril bishop,terril,bishop,2013-05-26,Male,1989-11-26,26,25 - 45,African-American,0,2,0,0,0,-1,2013-05-25 05:26:05,2013-05-27 06:22:44,13007482CF10A,2013-05-25,,1,F,Felony Batt(Great Bodily Harm),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-26,Risk of Violence,3,Low,2013-05-26,2013-05-25,2013-05-27,0,1,1041,0,0\r\n6627,patrick hoosue,patrick,hoosue,2014-01-27,Male,1974-09-24,41,25 - 45,Hispanic,0,1,0,0,1,-38,2013-12-20 12:51:29,2014-01-19 06:50:56,10000783MM30A,2010-05-04,,1364,M,Petit Theft $100- $300,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2015-01-26,2015-03-17,1,0,364,0,0\r\n6629,andrea zambrano,andrea,zambrano,2014-10-14,Female,1987-05-17,28,25 - 45,Caucasian,0,5,0,0,1,0,2014-10-14 03:43:55,2014-10-14 07:31:07,14015046MM10A,2014-10-14,,0,M,Battery,1,16002954CF10A,(F3),0,2016-03-08,Possession of Cannabis,2016-03-08,2016-03-08,,0,,,,,Risk of Recidivism,5,Medium,2014-10-14,Risk of Violence,2,Low,2014-10-14,2016-03-08,2016-03-08,1,0,511,0,1\r\n6631,darrell walker,darrell,walker,2014-03-02,Male,1972-09-03,43,25 - 45,African-American,0,5,0,0,0,-1,2014-03-01 03:19:11,2014-03-03 02:37:00,14002923CF10A,2014-03-01,,1,F,Uttering a Forged Instrument,1,15000420CF10A,(F3),0,2015-01-09,Uttering a Forged Instrument,2015-01-09,2015-05-07,,0,,,,,Risk of Recidivism,5,Medium,2014-03-02,Risk of Violence,4,Low,2014-03-02,2015-01-09,2015-05-07,0,1,313,1,1\r\n6633,ryan chitwood,ryan,chitwood,2013-06-14,Male,1986-02-09,30,25 - 45,Caucasian,0,4,0,0,3,225,2014-01-25 03:44:17,2014-04-05 04:50:01,12018809CF10A,2012-12-29,,167,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-14,Risk of Violence,3,Low,2013-06-14,2014-01-25,2014-04-05,3,0,225,0,0\r\n6634,andre mcgriff,andre,mcgriff,2014-05-15,Male,1982-07-16,33,25 - 45,African-American,0,7,0,0,21,-6,2014-05-09 07:11:46,2014-05-15 10:33:16,14007688MM10A,2014-05-09,,6,M,Viol Pretrial Release Dom Viol,1,16004960TC40A,(M2),,2016-01-14,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,7,Medium,2014-05-15,Risk of Violence,6,Medium,2014-05-15,2014-05-09,2014-05-15,21,0,609,1,1\r\n6636,brandon guerra,brandon,guerra,2013-12-31,Male,1994-11-07,21,Less than 25,Caucasian,0,3,0,1,0,-1,2013-12-30 11:33:39,2013-12-31 07:58:02,13017982CF10A,2013-12-30,,1,M,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-31,Risk of Violence,5,Medium,2013-12-31,2013-12-30,2013-12-31,0,0,822,0,0\r\n6637,alexandra donovan,alexandra,donovan,2013-02-24,Female,1984-01-25,32,25 - 45,Caucasian,0,1,0,1,0,-1,2013-02-23 05:11:38,2013-02-24 06:41:29,13003781MM10A,2013-02-22,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-24,Risk of Violence,1,Low,2013-02-24,2013-02-23,2013-02-24,0,0,1132,0,0\r\n6638,jevon vasquez,jevon,vasquez,2013-02-16,Male,1994-01-11,22,Less than 25,African-American,0,4,0,0,1,0,2013-02-16 03:47:28,2013-02-16 08:18:00,13002386CF10A,2013-02-16,,0,F,Tampering With Physical Evidence,1,13020013MM10A,(M1),0,2013-10-22,Trespass Other Struct/Convey,2013-10-22,2013-10-23,,0,,,,,Risk of Recidivism,4,Low,2013-02-16,Risk of Violence,5,Medium,2013-02-16,2013-10-22,2013-10-23,1,0,248,1,1\r\n6639,llewellyn jones,llewellyn,jones,2013-10-10,Male,1964-11-23,51,Greater than 45,African-American,0,1,0,0,3,0,2013-10-10 01:07:03,2013-10-10 08:58:56,13014209CF10A,2013-10-10,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-10,Risk of Violence,1,Low,2013-10-10,2013-10-10,2013-10-10,3,0,904,0,0\r\n6641,everett corbin,everett,corbin,2013-10-01,Male,1995-08-24,20,Less than 25,African-American,0,10,0,1,2,-1,2013-09-30 03:21:37,2014-02-06 06:23:17,13013691CF10A,2013-09-30,,1,F,Resist Officer w/Violence,1,14008132MM10A,(M2),,2014-05-16,Criminal Mischief Damage <$200,,,,0,,,,,Risk of Recidivism,10,High,2013-10-01,Risk of Violence,8,High,2013-10-01,2014-02-06,2020-01-01,2,128,227,1,1\r\n6642,shawn harbison,shawn,harbison,2014-02-14,Male,1980-11-28,35,25 - 45,Caucasian,0,3,0,0,2,-1,2014-02-13 01:00:49,2014-02-14 01:28:38,14002072CF10A,2014-02-13,,1,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-14,Risk of Violence,2,Low,2014-02-14,2014-02-13,2014-02-14,2,0,777,0,0\r\n6645,tiffany morgan,tiffany,morgan,2013-09-06,Female,1978-07-10,37,25 - 45,African-American,0,1,0,0,3,-1,2013-09-05 07:35:42,2013-10-04 08:46:45,13010467CF10A,,2013-09-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-05,2013-10-04,3,28,938,0,0\r\n6646,jamelle tucker,jamelle,tucker,2013-11-05,Male,1988-02-18,28,25 - 45,African-American,0,7,0,0,0,-2,2013-11-03 01:15:31,2013-11-03 01:25:05,13020688MM10A,2013-11-02,,3,M,Susp Drivers Lic 1st Offense,1,14007148CF10A,(F3),0,2014-05-22,Use of Anti-Shoplifting Device,2014-05-22,2014-05-23,,0,,,,,Risk of Recidivism,7,Medium,2013-11-05,Risk of Violence,7,Medium,2013-11-05,2014-01-12,2014-01-13,0,0,68,0,1\r\n6649,chad waldrep,chad,waldrep,2013-09-29,Male,1974-05-10,41,25 - 45,Caucasian,0,5,0,0,3,-1,2013-09-28 06:04:01,2013-09-30 03:51:21,13018467MM10A,2013-09-28,,1,M,Battery,1,14016095CF10A,(F3),,2014-10-10,False Ownership Info/Pawn Item,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-29,Risk of Violence,2,Low,2013-09-29,2014-09-01,2014-09-18,3,1,337,0,1\r\n6650,luke brooks,luke,brooks,2013-01-18,Male,1991-11-18,24,Less than 25,African-American,0,8,0,0,0,-1,2013-01-17 07:29:28,2013-01-19 03:27:48,13001210MM10A,2013-01-17,,1,M,Battery,1,14011487MM10A,(M1),0,2014-07-28,Battery,2014-07-28,2014-07-29,,1,14011487MM10A,(M1),2014-07-28,Battery,Risk of Recidivism,8,High,2013-01-18,Risk of Violence,8,High,2013-01-18,2014-07-28,2014-07-29,0,1,556,1,1\r\n6651,niesha johnson,niesha,johnson,2013-02-01,Female,1983-03-18,33,25 - 45,African-American,0,4,0,0,3,-1,2013-01-31 11:52:39,2013-02-02 12:53:13,13002276MM10A,2013-01-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-01,Risk of Violence,3,Low,2013-02-01,2013-01-31,2013-02-02,3,1,1155,0,0\r\n6652,john moses,john,moses,2014-09-23,Male,1990-12-14,25,25 - 45,African-American,0,8,0,0,4,-102,2014-06-13 10:41:12,2014-06-14 05:02:26,14012833CF10A,2014-09-22,,1,F,Pos Cannabis W/Intent Sel/Del,1,15001896CF10A,(F3),,2015-02-10,Pos Cannabis W/Intent Sel/Del,,,,0,,,,,Risk of Recidivism,8,High,2014-09-23,Risk of Violence,5,Medium,2014-09-23,2015-03-15,2015-03-16,4,0,140,1,1\r\n6653,karlijo teague,karlijo,teague,2014-01-06,Female,1985-12-08,30,25 - 45,Caucasian,0,6,0,0,4,-1,2014-01-05 09:58:29,2014-02-04 01:08:43,13004640CF10A,,2014-01-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-06,Risk of Violence,5,Medium,2014-01-06,2014-01-05,2014-02-04,4,29,816,0,0\r\n6654,nicholas santos,nicholas,santos,2014-09-11,Male,1995-09-23,20,Less than 25,African-American,0,7,0,0,1,0,2014-09-11 03:33:46,2014-09-17 05:49:54,14012365CF10A,2014-09-11,,0,F,Burglary Unoccupied Dwelling,1,15014350TC30A,(M2),47,2015-02-20,Susp Drivers Lic 1st Offense,2015-04-08,2015-09-27,,0,,,,,Risk of Recidivism,7,Medium,2014-09-11,Risk of Violence,6,Medium,2014-09-11,2014-09-11,2014-09-17,1,6,162,1,1\r\n6655,nicole daley,nicole,daley,2013-10-30,Female,1974-01-12,42,25 - 45,African-American,0,1,0,0,1,-10,2013-10-20 12:32:39,2013-10-20 06:19:35,13014644CF10A,,2013-10-20,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2013-10-20,2013-10-20,1,0,884,0,0\r\n6657,shanta mcfadden,shanta,mcfadden,2014-01-07,Female,1975-07-04,40,25 - 45,African-American,0,7,0,0,15,-1,2014-01-06 11:02:48,2014-03-13 06:17:07,14000345CF10A,,2014-01-07,0,F,arrest case no charge,1,15007638CF10A,(F3),,2014-12-01,Crim Use of Personal ID Info,,,,1,15001258CF10A,(F3),2015-01-27,Agg Fleeing and Eluding,Risk of Recidivism,7,Medium,2014-01-07,Risk of Violence,6,Medium,2014-01-07,2014-01-06,2014-03-13,15,65,328,1,1\r\n6658,kollin whitaker,kollin,whitaker,2014-09-17,Male,1977-03-03,39,25 - 45,African-American,0,4,0,0,0,-1,2014-09-16 05:35:10,2014-09-17 01:31:40,14012574CF10A,2014-09-16,,1,F,Poss Unlaw Issue Id,1,15003423CF10A,(M1),0,2015-03-13,Resist/Obstruct W/O Violence,2015-03-13,2015-03-14,,0,,,,,Risk of Recidivism,4,Low,2014-09-17,Risk of Violence,1,Low,2014-09-17,2015-03-13,2015-03-14,0,0,177,1,1\r\n6659,odige greguer,odige,greguer,2014-03-02,Male,1994-10-11,21,Less than 25,African-American,0,7,0,0,0,0,2014-03-02 01:56:04,2014-03-05 03:46:32,14002935CF10A,2014-03-02,,0,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-02,Risk of Violence,8,High,2014-03-02,2014-03-02,2014-03-05,0,3,761,0,0\r\n6660,christian conboy,christian,conboy,2013-04-11,Male,1976-04-25,39,25 - 45,Caucasian,0,2,0,0,2,-2,2013-04-09 05:58:14,2013-04-11 05:07:21,13005100CF10A,2013-04-09,,2,F,Poss Contr Subst W/o Prescript,1,14009823CF10A,(F3),0,2014-07-18,Possession of Hydromorphone,2014-07-18,2014-07-20,,0,,,,,Risk of Recidivism,2,Low,2013-04-11,Risk of Violence,2,Low,2013-04-11,2014-07-18,2014-07-20,2,0,463,1,1\r\n6661,christopher henderson,christopher,henderson,2013-12-30,Male,1991-11-08,24,Less than 25,Caucasian,0,2,0,0,0,0,2013-12-30 06:38:43,2013-12-30 08:21:57,13017997CF10A,2013-12-30,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-30,Risk of Violence,3,Low,2013-12-30,2013-12-30,2013-12-30,0,0,823,0,0\r\n6662,james mchelen,james,mchelen,2013-04-22,Male,1974-07-20,41,25 - 45,African-American,0,1,0,0,0,-1,2013-04-21 11:38:31,2013-04-22 07:28:57,13005699CF10A,2013-04-21,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2013-04-21,2013-04-22,0,0,1075,0,0\r\n6663,vincent cash,vincent,cash,2013-10-03,Male,1976-12-18,39,25 - 45,African-American,0,4,0,0,1,-1,2013-10-02 05:59:48,2013-10-03 07:59:23,13013821CF10A,2013-10-02,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-03,Risk of Violence,2,Low,2013-10-03,2013-10-02,2013-10-03,1,0,911,0,0\r\n6665,laquana crawford,laquana,crawford,2013-01-25,Female,1992-03-18,24,Less than 25,African-American,0,8,0,0,3,-1,2013-01-24 01:05:25,2013-01-24 02:11:02,13001085CF10A,2013-01-23,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-25,Risk of Violence,10,High,2013-01-25,2013-03-22,2013-03-26,3,0,56,0,0\r\n6667,zaysha clark,zaysha,clark,2013-05-30,Female,1992-04-03,24,Less than 25,African-American,0,4,0,0,1,-23,2013-05-07 04:49:30,2013-05-08 01:00:01,13006539CF10A,2013-05-07,,23,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-30,Risk of Violence,4,Low,2013-05-30,2014-07-11,2014-08-22,1,0,407,0,0\r\n6668,louis griffin,louis,griffin,2013-02-28,Male,1986-06-05,29,25 - 45,African-American,0,2,0,0,0,-1,2013-02-27 07:21:50,2013-02-28 08:03:30,13002984CF10A,2013-02-27,,1,M,Disorderly Conduct,1,14043861TC10A,(M2),243,2014-11-26,Driving License Suspended,2015-07-27,2015-08-07,,0,,,,,Risk of Recidivism,2,Low,2013-02-28,Risk of Violence,3,Low,2013-02-28,2013-05-05,2013-05-06,0,0,66,0,1\r\n6669,percel kinder,percel,kinder,2013-08-22,Male,1976-07-22,39,25 - 45,African-American,0,10,0,0,35,-45,2013-07-08 12:14:46,2013-07-12 05:10:47,13005132CF10A,,2013-07-08,45,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-22,Risk of Violence,8,High,2013-08-22,2013-10-08,2013-10-22,35,0,47,0,0\r\n6670,aaron hammond,aaron,hammond,2013-10-21,Male,1990-05-31,25,25 - 45,Caucasian,0,5,0,0,2,-12,2013-10-09 01:53:02,2013-10-20 02:26:17,13019146MM10A,2013-10-08,,13,M,Prowling/Loitering,1,15011646CF10A,(F2),1,2015-09-07,Burglary Unoccupied Dwelling,2015-09-08,2015-09-10,,0,,,,,Risk of Recidivism,5,Medium,2013-10-21,Risk of Violence,7,Medium,2013-10-21,2015-09-08,2015-09-10,2,0,686,1,1\r\n6671,aryam almonte,aryam,almonte,2014-05-10,Female,1993-02-04,23,Less than 25,Caucasian,0,6,0,0,0,-1,2014-05-09 08:34:58,2014-05-11 01:50:08,14006483CF10A,2014-05-09,,1,F,Grand Theft in the 3rd Degree,1,15000317MM10A,(M1),0,2015-01-09,Possess Drug Paraphernalia,2015-01-09,2015-01-10,,0,,,,,Risk of Recidivism,6,Medium,2014-05-10,Risk of Violence,4,Low,2014-05-10,2015-01-09,2015-01-10,0,1,244,1,1\r\n6672,travis power,travis,power,2013-08-25,Male,1993-10-01,22,Less than 25,African-American,0,10,0,1,1,0,2013-08-25 04:32:04,2013-08-25 08:08:17,13011986CF10A,2013-08-25,,0,F,\"Poss3,4 Methylenedioxymethcath\",1,14007461CF10A,(M1),0,2014-05-29,Resist/Obstruct W/O Violence,2014-05-29,2014-06-24,,0,,,,,Risk of Recidivism,10,High,2013-08-25,Risk of Violence,10,High,2013-08-25,2014-05-29,2014-06-24,1,0,277,1,1\r\n6679,amanda england,amanda,england,2014-07-08,Female,1990-03-12,26,25 - 45,Other,0,7,0,0,4,-1,2014-07-07 10:28:01,2014-07-09 10:06:53,14010484MM10A,2014-07-07,,1,M,Battery,1,14017040CF10A,(F3),0,2014-12-24,Felony Battery w/Prior Convict,2014-12-24,2014-12-25,,1,14017040CF10A,(F3),2014-12-24,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2014-07-08,Risk of Violence,4,Low,2014-07-08,2014-12-24,2014-12-25,4,1,169,1,1\r\n6681,jason fuller,jason,fuller,2013-04-24,Male,1989-11-23,26,25 - 45,African-American,0,9,3,0,3,-1,2013-04-23 05:44:25,2013-11-14 06:32:36,07091584TC20A,2007-10-11,,2022,M,Operating W/O Valid License,1,15050171TC20A,(M2),,2015-09-01,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,9,High,2013-04-24,Risk of Violence,9,High,2013-04-24,2014-04-16,2014-05-20,3,281,357,0,1\r\n6683,valerie corker,valerie,corker,2014-10-24,Female,1992-04-05,24,Less than 25,African-American,0,6,0,0,3,-1,2014-10-23 06:05:52,2014-10-26 04:44:05,14014302CF10A,2014-10-23,,1,M,PL/Unlaw Use Credit Card,1,15012583MM10A,(M1),,2015-12-04,Resist/Obstruct W/O Violence,,,,0,,,,,Risk of Recidivism,6,Medium,2014-10-24,Risk of Violence,5,Medium,2014-10-24,2014-10-23,2014-10-26,3,2,406,1,1\r\n6685,derriviann rollins,derriviann,rollins,2013-01-09,Male,1972-03-15,44,25 - 45,African-American,0,5,0,0,0,-1,2013-01-08 05:46:22,2013-02-11 09:37:00,13000460MM10A,2013-01-08,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-09,Risk of Violence,4,Low,2013-01-09,2013-01-08,2013-02-11,0,33,1178,0,0\r\n6686,michael karamolengos,michael,karamolengos,2014-03-21,Male,1980-01-20,36,25 - 45,Caucasian,0,2,0,0,1,-19,2014-03-02 12:45:36,2014-03-21 11:05:26,13006626CF10A,,2014-03-02,19,F,arrest case no charge,1,15002180CF10A,(F3),,2014-12-04,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-21,Risk of Violence,2,Low,2014-03-21,2014-03-02,2014-03-21,1,0,258,1,1\r\n6687,marlon greene,marlon,greene,2013-04-17,Male,1977-01-12,39,25 - 45,Caucasian,0,8,0,0,10,-1,2013-04-16 08:15:37,2013-04-17 09:08:31,13005453CF10A,2013-04-16,,1,F,Grand Theft in the 3rd Degree,1,14000780CF10A,(F3),0,2014-01-18,Uttering a Forged Instrument,2014-01-18,2014-03-07,,0,,,,,Risk of Recidivism,8,High,2013-04-17,Risk of Violence,5,Medium,2013-04-17,2014-01-18,2014-03-07,10,0,276,1,1\r\n6688,thomas mosiman,thomas,mosiman,2013-12-10,Male,1973-07-08,42,25 - 45,Caucasian,0,4,0,0,0,-1,2013-12-09 09:39:35,2013-12-10 01:03:57,13017038CF10A,2013-12-09,,1,F,Possession of LSD,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-10,Risk of Violence,1,Low,2013-12-10,2013-12-09,2013-12-10,0,0,843,0,0\r\n6689,jays batchanoo,jays,batchanoo,2014-02-10,Male,1971-01-05,45,Greater than 45,Caucasian,0,1,0,0,1,-2,2014-02-08 05:55:50,2014-02-09 08:45:07,14005077MU10A,2014-02-08,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-10,Risk of Violence,1,Low,2014-02-10,2014-02-08,2014-02-09,1,0,781,0,0\r\n6690,marcus walker,marcus,walker,2013-05-17,Male,1990-11-26,25,25 - 45,African-American,0,10,1,0,7,-1,2013-05-16 04:11:47,2013-06-05 09:16:19,13007009CF10A,2013-05-16,,1,F,Resist Officer w/Violence,1,15005653CF10A,(F3),,2015-04-30,Poss Pyrrolidinovalerophenone,,,,1,16002008MM10A,(M1),2016-02-10,Battery,Risk of Recidivism,10,High,2013-05-17,Risk of Violence,10,High,2013-05-17,2014-03-07,2014-04-13,7,19,294,0,1\r\n6691,deanna headley,deanna,headley,2013-02-20,Female,1987-08-28,28,25 - 45,Caucasian,0,9,0,0,7,606,2014-10-19 09:33:27,2015-03-13 06:27:01,11014152CF10A,,2012-06-21,244,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-20,Risk of Violence,6,Medium,2013-02-20,2014-10-19,2015-03-13,7,0,606,0,0\r\n6692,kalim bordones,kalim,bordones,2013-12-12,Male,1982-06-04,33,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-11 01:52:15,2013-12-16 11:33:44,13017134CF10A,2013-12-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-12,Risk of Violence,1,Low,2013-12-12,2013-12-11,2013-12-16,0,4,841,0,0\r\n6693,nicholas higgins,nicholas,higgins,2013-04-15,Male,1990-05-21,25,25 - 45,Caucasian,0,3,0,0,0,-1,2013-04-14 06:30:50,2013-04-17 09:00:35,13007216MM10A,2013-04-14,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-15,Risk of Violence,4,Low,2013-04-15,2013-04-14,2013-04-17,0,2,1082,0,0\r\n6695,dalonnte king,dalonnte,king,2013-05-31,Male,1984-01-04,32,25 - 45,African-American,0,4,1,0,5,-10,2013-05-21 04:49:19,2013-05-30 09:32:59,11004931CF10A,,2013-05-21,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-31,Risk of Violence,2,Low,2013-05-31,2013-05-21,2013-05-30,5,0,1036,0,0\r\n6696,dwayne means,dwayne,means,2013-05-10,Male,1992-10-30,23,Less than 25,African-American,0,7,0,0,0,-1,2013-05-09 11:11:46,2013-05-13 07:39:52,13006646CF10A,2013-05-09,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-10,Risk of Violence,5,Medium,2013-05-10,2013-05-09,2013-05-13,0,3,1057,0,0\r\n6697,kevin carr,kevin,carr,2013-01-07,Male,1976-05-29,39,25 - 45,Caucasian,0,5,0,0,0,-1,2013-01-06 10:10:12,2013-01-08 05:21:24,13000304MM10A,2013-01-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-07,Risk of Violence,2,Low,2013-01-07,2013-01-06,2013-01-08,0,1,1180,0,0\r\n6698,roy harris,roy,harris,2013-12-03,Male,1989-01-08,27,25 - 45,African-American,0,8,0,0,12,-1,2013-12-02 01:10:34,2013-12-03 01:33:52,13016662CF10A,2013-12-02,,1,F,Grand Theft Firearm,1,14006164CF10A,(M1),0,2014-05-02,Resist/Obstruct W/O Violence,2014-05-02,2014-05-03,,1,15002728MM10A,(M1),2015-03-07,Battery,Risk of Recidivism,8,High,2013-12-03,Risk of Violence,4,Low,2013-12-03,2014-05-02,2014-05-03,12,0,150,1,1\r\n6699,yajaira sosa,yajaira,sosa,2013-12-06,Female,1980-08-24,35,25 - 45,Caucasian,0,7,0,0,4,-1,2013-12-05 07:28:23,2013-12-07 04:01:47,13022583MM10A,2013-12-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-06,Risk of Violence,2,Low,2013-12-06,2013-12-05,2013-12-07,4,1,847,0,0\r\n6701,kwatavis campbell,kwatavis,campbell,2013-10-25,Male,1992-04-26,23,Less than 25,African-American,0,5,0,0,1,-58,2013-08-28 03:10:21,2013-08-30 05:38:20,13012168CF10A,2013-08-28,,58,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-25,Risk of Violence,6,Medium,2013-10-25,2014-02-19,2014-03-08,1,0,117,0,0\r\n6702,linell remekie,linell,remekie,2013-08-29,Female,1977-06-14,38,25 - 45,African-American,0,1,0,0,0,0,2013-08-29 05:44:52,2013-08-30 03:36:06,13016553MM10A,2013-08-29,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-29,Risk of Violence,1,Low,2013-08-29,2013-08-29,2013-08-30,0,1,946,0,0\r\n6703,brandon brooks,brandon,brooks,2013-03-25,Male,1985-06-15,30,25 - 45,African-American,0,2,0,0,4,-10,2013-03-15 05:52:37,2013-03-22 09:44:51,12016249CF10A,,2013-03-15,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-25,Risk of Violence,2,Low,2013-03-25,2013-03-15,2013-03-22,4,0,1103,0,0\r\n6704,michael hafford,michael,hafford,2013-12-17,Male,1985-12-28,30,25 - 45,Caucasian,0,5,0,0,1,-1,2013-12-16 10:45:49,2014-01-14 10:17:39,13017366CF10A,2013-12-16,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-17,Risk of Violence,2,Low,2013-12-17,2015-01-13,2015-01-21,1,28,392,0,0\r\n6705,crystal smith,crystal,smith,2013-02-13,Female,1986-02-12,30,25 - 45,Caucasian,0,8,0,0,0,0,2013-02-13 04:01:09,2013-02-13 08:39:18,13003177MM10A,2013-02-13,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-13,Risk of Violence,5,Medium,2013-02-13,2013-02-13,2013-02-13,0,0,1143,0,0\r\n6706,darius thomas,darius,thomas,2013-11-04,Male,1989-12-25,26,25 - 45,African-American,1,10,1,0,18,-1,2013-11-03 08:59:31,2014-05-20 06:30:33,13015324CF10A,2013-11-03,,1,F,Grand Theft (Motor Vehicle),1,15007539CF10A,(F3),0,2015-06-09,Tampering With Physical Evidence,2015-06-09,2015-09-17,,0,,,,,Risk of Recidivism,10,High,2013-11-04,Risk of Violence,7,Medium,2013-11-04,2015-06-09,2015-09-17,18,567,582,1,1\r\n6708,carey banton,carey,banton,2013-05-02,Male,1984-06-19,31,25 - 45,African-American,0,2,0,0,2,-1,2013-05-01 04:24:59,2013-05-03 09:29:24,13006281CF10A,2013-05-01,,1,F,Grand Theft in the 3rd Degree,1,15011802MM10A,(M2),0,2015-11-11,Petit Theft,2015-11-11,2015-11-12,,0,,,,,Risk of Recidivism,2,Low,2013-05-02,Risk of Violence,2,Low,2013-05-02,2014-07-19,2014-07-19,2,1,443,0,0\r\n6712,melanie graham,melanie,graham,2013-01-07,Female,1974-04-29,41,25 - 45,Caucasian,0,2,0,0,1,,,,12024683MM10A,2012-12-03,,35,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-07,Risk of Violence,1,Low,2013-01-07,,,1,0,1180,0,0\r\n6713,emmanuel jeanbaptiste,emmanuel,jeanbaptiste,2013-10-15,Male,1981-10-05,34,25 - 45,Other,0,2,0,0,0,-1,2013-10-14 03:41:56,2014-01-30 04:50:11,13014393CF10A,2013-10-14,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-15,Risk of Violence,2,Low,2013-10-15,2013-10-14,2014-01-30,0,107,899,0,0\r\n6715,stephanie derisse,stephanie,derisse,2013-08-04,Female,1990-11-24,25,25 - 45,African-American,0,5,0,0,0,-1,2013-08-03 01:49:54,2013-09-16 07:24:51,13014667MM10A,2013-08-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-04,Risk of Violence,4,Low,2013-08-04,2013-08-03,2013-09-16,0,43,971,0,0\r\n6717,stefany gallego,stefany,gallego,2013-02-19,Female,1989-05-19,26,25 - 45,Caucasian,0,6,0,0,1,-13,2013-02-06 10:37:48,2013-02-15 07:52:31,13001852CF10A,2013-02-06,,13,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-19,Risk of Violence,4,Low,2013-02-19,2013-02-06,2013-02-15,1,0,1137,0,0\r\n6719,michael burgos,michael,burgos,2013-04-28,Male,1977-09-13,38,25 - 45,African-American,0,7,0,0,2,0,2013-04-28 06:17:50,2013-05-07 11:23:15,13006097CF10A,2013-04-28,,0,F,Possession of Cocaine,1,13008995MM10A,(M1),0,2013-05-09,Petit Theft $100- $300,2013-05-09,2013-05-10,,0,,,,,Risk of Recidivism,7,Medium,2013-04-28,Risk of Violence,6,Medium,2013-04-28,2013-05-09,2013-05-10,2,9,11,1,1\r\n6721,kim mceachrane,kim,mceachrane,2013-03-25,Female,1978-06-17,37,25 - 45,African-American,0,1,0,0,0,-1,2013-03-24 06:22:00,2013-03-25 01:56:07,13005770MM10A,2013-03-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-03-24,2013-03-25,0,0,1103,0,0\r\n6722,rocco rombardo,rocco,rombardo,2013-12-27,Male,1982-02-28,34,25 - 45,Caucasian,0,5,0,1,3,-1,2013-12-26 08:22:16,2013-12-27 07:03:25,13023815MM10A,2013-12-26,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-27,Risk of Violence,5,Medium,2013-12-27,2013-12-26,2013-12-27,3,0,826,0,0\r\n6726,hernan casanova,hernan,casanova,2013-08-23,Male,1972-03-19,44,25 - 45,Hispanic,0,3,0,0,7,-42,2013-07-12 06:15:19,2013-08-07 08:35:51,13009801CF10A,2013-07-12,,42,F,Felony DUI (level 3),1,14008741TC10A,(M2),,2014-02-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-23,Risk of Violence,4,Low,2013-08-23,2015-09-20,2015-09-21,7,0,163,1,1\r\n6729,marilyn mejias,marilyn,mejias,2013-10-13,Female,1977-11-11,38,25 - 45,Hispanic,0,2,0,0,0,-1,2013-10-12 02:23:33,2013-11-06 11:22:29,13014318CF10A,2013-10-12,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-13,Risk of Violence,1,Low,2013-10-13,2013-10-12,2013-11-06,0,24,901,0,0\r\n6730,articia carter,articia,carter,2014-02-16,Female,1984-11-07,31,25 - 45,African-American,0,6,0,0,0,-1,2014-02-15 03:11:00,2014-02-17 12:42:48,14002660MM10A,2014-02-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-16,Risk of Violence,5,Medium,2014-02-16,2014-02-15,2014-02-17,0,1,775,0,0\r\n6731,linette alonso,linette,alonso,2013-04-10,Female,1986-08-21,29,25 - 45,Caucasian,0,2,0,0,0,0,2013-04-10 01:34:30,2013-04-10 08:51:16,13006873MM10A,2013-04-09,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,2,Low,2013-04-10,2013-04-10,2013-04-10,0,0,1087,0,0\r\n6732,bravon newsome,bravon,newsome,2013-08-29,Male,1995-04-23,20,Less than 25,Caucasian,1,9,0,0,1,28,2013-09-26 11:33:04,2013-10-12 02:22:49,13007029CF10A,,2013-07-10,50,F,arrest case no charge,1,14003049CF10A,(M1),0,2014-03-04,Petit Theft $100- $300,2014-03-04,2014-08-06,,0,,,,,Risk of Recidivism,9,High,2013-08-29,Risk of Violence,10,High,2013-08-29,2013-09-26,2013-10-12,1,0,28,0,1\r\n6733,sanjay sookhoo,sanjay,sookhoo,2013-02-01,Male,1993-07-30,22,Less than 25,African-American,0,4,0,0,0,-1,2013-01-31 02:25:40,2013-02-01 08:48:35,13001553CF10A,2013-01-31,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-01,Risk of Violence,6,Medium,2013-02-01,2015-10-26,2015-10-27,0,0,997,0,0\r\n6735,carmen manzanares,carmen,manzanares,2014-03-24,Female,1964-12-03,51,Greater than 45,Hispanic,0,1,0,0,0,-3,2014-03-21 10:24:01,2014-03-22 01:21:00,14004986MM10A,2014-03-21,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-24,Risk of Violence,1,Low,2014-03-24,2014-03-21,2014-03-22,0,0,739,0,0\r\n6737,keenan tisdale,keenan,tisdale,2014-03-31,Male,1991-07-23,24,Less than 25,African-American,0,4,0,0,2,-1,2014-03-30 12:21:59,2014-03-31 01:46:58,14005459MM10A,2014-03-30,,1,M,Battery,1,15001661MM10A,(M1),0,2015-01-20,Use/Poss/Drug Para/Plant/Grow,2015-01-20,2015-01-21,,0,,,,,Risk of Recidivism,4,Low,2014-03-31,Risk of Violence,4,Low,2014-03-31,2015-01-20,2015-01-21,2,0,295,1,1\r\n6739,dwayne cormier,dwayne,cormier,2014-12-30,Male,1968-09-01,47,Greater than 45,African-American,0,8,0,0,0,-1,2014-12-29 01:25:41,2014-12-30 07:58:52,14017157CF10A,2014-12-29,,1,F,Poss Pyrrolidinovalerophenone,1,15002041CF10A,(F2),1,2015-02-12,Robbery / No Weapon,2015-02-13,2015-09-21,,1,15002041CF10A,(F2),2015-02-12,Robbery / No Weapon,Risk of Recidivism,8,High,2014-12-30,Risk of Violence,6,Medium,2014-12-30,2015-02-13,2015-09-21,0,0,44,1,1\r\n6740,marie civil,marie,civil,2013-12-19,Female,1979-09-04,36,25 - 45,African-American,0,5,0,0,1,-1,2013-12-18 01:06:25,2013-12-24 05:27:07,13017459CF10A,2013-12-18,,1,F,Driving While License Revoked,1,15071497TC40A,(M2),,2015-11-27,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-19,Risk of Violence,4,Low,2013-12-19,2013-12-18,2013-12-24,1,5,708,1,1\r\n6741,richllen metellus,richllen,metellus,2013-10-10,Male,1994-05-10,21,Less than 25,African-American,0,4,0,0,1,-1,2013-10-09 04:32:43,2013-10-10 05:30:24,13014178CF10A,2013-10-09,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-10,Risk of Violence,6,Medium,2013-10-10,2013-10-09,2013-10-10,1,0,904,0,0\r\n6744,jason surace,jason,surace,2013-11-10,Male,1990-07-24,25,25 - 45,African-American,0,10,1,0,3,-1,2013-11-09 12:41:34,2014-01-29 02:12:39,13021148MM10A,2013-11-09,,1,M,Battery,1,15010916CF10A,(F3),0,2015-08-24,Uttering a Forged Instrument,2015-08-24,2015-12-01,,0,,,,,Risk of Recidivism,10,High,2013-11-10,Risk of Violence,9,High,2013-11-10,2014-02-26,2014-12-11,3,80,108,0,1\r\n6747,neville henry,neville,henry,2013-03-07,Male,1992-11-02,23,Less than 25,African-American,0,9,0,1,5,-1,2013-03-06 05:57:50,2013-03-11 05:35:56,13003336CF10A,2013-03-06,,1,F,Grand Theft in the 3rd Degree,1,13007031MO10A,(MO3),0,2013-04-11,Retail Theft,2013-04-11,2013-04-26,,1,15000216MM10A,(M1),2015-01-06,Battery,Risk of Recidivism,9,High,2013-03-07,Risk of Violence,9,High,2013-03-07,2013-04-11,2013-04-26,5,4,35,1,1\r\n6748,fred alcius,fred,alcius,2013-09-16,Male,1992-04-26,23,Less than 25,Other,0,3,0,0,0,-1,2013-09-15 08:38:11,2013-09-16 07:24:21,13017574MM10A,2013-09-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-16,Risk of Violence,4,Low,2013-09-16,2013-09-15,2013-09-16,0,0,928,0,0\r\n6749,valentina parrish,valentina,parrish,2013-10-25,Female,1992-01-27,24,Less than 25,Caucasian,0,10,0,0,0,-1,2013-10-24 01:30:17,2013-10-24 09:21:19,13020094MM10A,2013-10-23,,2,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-10-25,Risk of Violence,6,Medium,2013-10-25,2014-02-13,2014-02-21,0,0,111,0,0\r\n6751,adam gillstrap,adam,gillstrap,2014-03-28,Male,1981-04-09,35,25 - 45,Caucasian,0,2,0,0,2,-1,2014-03-27 07:29:25,2014-03-29 09:08:16,13010848CF10A,,2014-03-27,1,F,arrest case no charge,1,15018078TC20A,(M2),281,2015-03-11,Operating W/O Valid License,2015-12-17,2015-12-22,,0,,,,,Risk of Recidivism,2,Low,2014-03-28,Risk of Violence,1,Low,2014-03-28,2014-03-27,2014-03-29,2,1,348,1,1\r\n6754,juliana byczkowski,juliana,byczkowski,2013-08-07,Female,1993-03-08,23,Less than 25,Hispanic,0,4,0,0,0,-2,2013-08-05 09:00:16,2013-08-06 01:36:03,13014751MM10A,2013-08-05,,2,M,Possess Drug Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-07,Risk of Violence,5,Medium,2013-08-07,2013-08-05,2013-08-06,0,0,968,0,0\r\n6755,camille hendricks,camille,hendricks,2014-11-19,Female,1996-06-24,19,Less than 25,African-American,0,4,0,0,0,-1,2014-11-18 01:22:13,2014-11-19 10:10:03,14016488MM10A,2014-11-18,,1,M,Criminal Mischief Damage <$200,1,16000229MM10A,(M1),,2015-07-19,Battery,,,,1,16000229MM10A,(M1),2015-07-19,Battery,Risk of Recidivism,4,Low,2014-11-19,Risk of Violence,6,Medium,2014-11-19,2014-11-18,2014-11-19,0,0,242,1,1\r\n6756,ryan leonard,ryan,leonard,2014-01-24,Male,1984-02-22,32,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-23 06:22:42,2014-01-29 01:56:31,14000996CF10A,2014-01-23,,1,F,Grand Theft (Motor Vehicle),1,15006693MM10A,(M1),,2015-06-21,Possess Cannabis/20 Grams Or Less,,,,1,15009879CF10A,(F7),2015-07-31,Burglary Dwelling Assault/Batt,Risk of Recidivism,1,Low,2014-01-24,Risk of Violence,2,Low,2014-01-24,2014-01-23,2014-01-29,0,5,513,1,1\r\n6758,jaime stepp,jaime,stepp,2013-03-25,Female,1976-06-25,39,25 - 45,Caucasian,0,1,0,0,0,-3,2013-03-22 04:27:55,2013-03-23 02:26:59,13005657MM10A,2013-03-22,,3,M,Lve/Scen/Acc/Veh/Prop/Damage,1,14012287MM10A,(M1),0,2014-08-13,Battery,2014-08-13,2014-08-14,,1,14012287MM10A,(M1),2014-08-13,Battery,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2014-08-13,2014-08-14,0,0,506,1,1\r\n6759,gordon smith,gordon,smith,2013-02-17,Male,1986-01-29,30,25 - 45,African-American,4,9,0,0,12,0,2013-02-17 04:35:11,2013-02-26 07:47:02,13002427CF10A,2013-02-17,,0,F,Possession of Cocaine,1,13013440CF10A,(F1),0,2013-09-24,Traffick Oxycodone    14g><28g,2013-09-24,2013-10-25,,0,,,,,Risk of Recidivism,9,High,2013-02-17,Risk of Violence,6,Medium,2013-02-17,2013-09-24,2013-10-25,12,9,219,1,1\r\n6760,oba ifill,oba,ifill,2013-01-04,Male,1982-06-05,33,25 - 45,African-American,0,7,0,0,2,-1,2013-01-03 10:41:22,2013-09-19 06:33:59,13000139CF10A,2013-01-03,,1,F,Tamper With Witness,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-04,Risk of Violence,7,Medium,2013-01-04,2013-01-03,2013-09-19,2,258,1183,0,0\r\n6762,marco fermincivolani,marco,fermincivolani,2014-10-11,Male,1995-11-18,20,Less than 25,Caucasian,0,3,0,0,0,,,,,,,,M,,1,15002279MM10A,(M2),0,2015-02-24,Petit Theft,2015-02-24,2015-02-26,,0,,,,,Risk of Recidivism,3,Low,2014-10-11,Risk of Violence,5,Medium,2014-10-11,2015-02-24,2015-02-26,0,0,136,1,1\r\n6763,alicia heeralal,alicia,heeralal,2014-01-11,Female,1980-03-09,36,25 - 45,Caucasian,0,2,0,0,0,-1,2014-01-10 10:17:29,2014-01-11 01:14:10,14000517MM10A,2014-01-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-11,Risk of Violence,1,Low,2014-01-11,2014-01-10,2014-01-11,0,0,811,0,0\r\n6765,john sanchez,john,sanchez,2014-03-04,Male,1955-02-08,61,Greater than 45,Hispanic,0,1,0,0,1,-81,2013-12-13 09:41:31,2014-03-04 10:10:43,13017239CF10A,2013-12-13,,81,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-04,Risk of Violence,1,Low,2014-03-04,2013-12-13,2014-03-04,1,0,759,0,0\r\n6766,antonio battle,antonio,battle,2014-10-26,Male,1987-02-03,29,25 - 45,African-American,0,8,1,1,8,-1,2014-10-25 10:44:14,2014-10-28 05:22:44,14014393CF10A,2014-10-25,,1,F,Poss Pyrrolidinovalerophenone,1,15003659TC10A,(M2),0,2014-11-05,Susp Drivers Lic 1st Offense,2014-11-05,2014-12-08,,0,,,,,Risk of Recidivism,8,High,2014-10-26,Risk of Violence,4,Low,2014-10-26,2014-11-05,2014-12-08,8,2,10,1,1\r\n6769,maria marineau,maria,marineau,2013-08-23,Female,1976-02-13,40,25 - 45,Caucasian,0,2,0,0,0,0,2013-08-23 04:51:28,2013-08-23 07:18:31,13011899CF10A,2013-08-23,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-23,Risk of Violence,1,Low,2013-08-23,2013-08-23,2013-08-23,0,0,952,0,0\r\n6771,jeffrey sims,jeffrey,sims,2013-09-04,Male,1963-02-18,53,Greater than 45,African-American,0,7,0,0,4,-4,2013-08-31 09:11:48,2013-09-02 08:18:28,13012323CF10A,2013-08-31,,4,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-08-31,2013-09-02,4,0,940,0,0\r\n6773,michelle gonzalez,michelle,gonzalez,2013-10-28,Female,1987-07-10,28,25 - 45,Caucasian,0,2,0,0,0,-1,2013-10-27 10:37:31,2013-10-28 08:11:04,13020372MM10A,2013-10-27,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-28,Risk of Violence,2,Low,2013-10-28,2013-10-27,2013-10-28,0,0,886,0,0\r\n6774,rosa zacariasreyes,rosa,zacariasreyes,2013-10-07,Male,1978-02-22,38,25 - 45,Hispanic,0,2,0,0,2,0,2013-10-07 03:09:55,2013-11-05 11:20:31,09021940MM10A,2009-09-13,,1485,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-10-07,2013-11-05,2,29,907,0,0\r\n6775,travis wilson,travis,wilson,2013-01-26,Male,1988-07-08,27,25 - 45,African-American,0,9,1,0,9,-1,2013-01-25 07:13:40,2013-01-27 02:04:02,13001249CF10A,2013-01-25,,1,F,Possession of Cocaine,1,13008214CF10A,(F3),1,2013-06-10,Possession of Cocaine,2013-06-11,2013-06-28,,0,,,,,Risk of Recidivism,9,High,2013-01-26,Risk of Violence,8,High,2013-01-26,2013-01-25,2013-01-27,9,1,135,1,1\r\n6776,shawn beteza,shawn,beteza,2013-11-09,Male,1960-09-12,55,Greater than 45,Caucasian,0,3,0,0,0,-1,2013-11-08 11:23:28,2013-11-09 02:08:01,13015599CF10A,2013-11-08,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-09,Risk of Violence,1,Low,2013-11-09,2013-11-08,2013-11-09,0,0,874,0,0\r\n6778,steven khan,steven,khan,2013-08-22,Male,1993-09-01,22,Less than 25,African-American,1,7,0,0,1,-1,2013-08-21 06:28:25,2013-08-23 04:24:26,13015966MM10A,2013-08-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-22,Risk of Violence,6,Medium,2013-08-22,2013-08-21,2013-08-23,1,1,953,0,0\r\n6780,tiffaney batson,tiffaney,batson,2013-11-20,Female,1981-05-16,34,25 - 45,African-American,0,1,0,0,1,-1,2013-11-19 05:25:02,2013-11-21 09:38:50,13016064CF10A,2013-11-19,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-20,Risk of Violence,1,Low,2013-11-20,2013-11-19,2013-11-21,1,1,863,0,0\r\n6781,danald champ,danald,champ,2013-05-15,Male,1961-01-05,55,Greater than 45,Caucasian,0,2,0,0,1,-17,2013-04-28 07:24:17,2013-05-02 08:55:43,13008161MM10A,2013-04-28,,17,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-15,Risk of Violence,3,Low,2013-05-15,2013-04-28,2013-05-02,1,0,1052,0,0\r\n6782,luis ayalaadorno,luis,ayalaadorno,2013-02-17,Male,1991-12-11,24,Less than 25,Hispanic,0,8,0,0,2,0,2013-02-17 12:51:20,2013-05-20 05:55:11,11006737CF10A,,2013-02-16,1,F,arrest case no charge,1,15007127CF10A,(F2),0,2015-05-31,Aggravated Battery / Pregnant,2015-05-31,2015-06-01,,1,15007127CF10A,(F2),2015-05-31,Aggravated Battery / Pregnant,Risk of Recidivism,8,High,2013-02-17,Risk of Violence,6,Medium,2013-02-17,2015-04-11,2015-04-12,2,92,783,0,0\r\n6783,ava ashley,ava,ashley,2014-03-06,Female,1968-12-19,47,Greater than 45,African-American,0,9,1,1,21,-1,2014-03-05 08:10:16,2014-03-27 05:34:22,14003784MM10A,2014-03-05,,1,M,Battery,1,14013251MM10A,(M1),0,2014-09-04,Possess Cannabis/20 Grams Or Less,2014-09-04,2014-09-05,,0,,,,,Risk of Recidivism,9,High,2014-03-06,Risk of Violence,6,Medium,2014-03-06,2014-09-04,2014-09-05,21,21,182,1,1\r\n6784,zida boubacar,zida,boubacar,2013-09-09,Male,1975-04-07,41,25 - 45,Other,0,1,0,0,0,0,2013-09-09 04:00:04,2013-09-09 08:07:16,13017204MM10A,2013-09-09,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2013-09-09,2013-09-09,0,0,935,0,0\r\n6786,jose granados,jose,granados,2013-07-15,Male,1975-01-02,41,25 - 45,Hispanic,0,3,0,0,0,-2,2013-07-13 07:47:49,2013-07-14 01:34:09,13009842CF10A,2013-07-13,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-15,Risk of Violence,1,Low,2013-07-15,2013-07-13,2013-07-14,0,0,991,0,0\r\n6788,barry bell,barry,bell,2013-02-06,Male,1955-01-20,61,Greater than 45,African-American,0,3,0,0,12,-1,2013-02-05 05:43:08,2013-10-05 05:26:21,13002961CF10A,2013-02-05,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-06,Risk of Violence,4,Low,2013-02-06,2013-02-05,2013-10-05,12,241,1150,0,0\r\n6791,telford wallace,telford,wallace,2013-04-27,Male,1958-05-09,57,Greater than 45,African-American,0,1,0,0,3,0,2013-04-27 06:02:34,2013-04-29 01:41:38,13006054CF10A,2013-04-27,,0,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-27,2013-04-29,3,2,1070,0,0\r\n6793,abigail pomales,abigail,pomales,2013-10-20,Female,1977-10-10,38,25 - 45,Caucasian,0,3,0,0,2,-1,2013-10-19 06:29:28,2013-10-20 05:02:11,13019813MM10A,2013-10-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-20,Risk of Violence,2,Low,2013-10-20,2013-10-19,2013-10-20,2,0,894,0,0\r\n6794,juan gispert,juan,gispert,2014-01-27,Male,1990-07-13,25,25 - 45,Caucasian,4,4,0,1,13,-1,2014-01-26 04:55:31,2014-01-31 09:33:15,14000738CF10A,,2014-01-27,0,F,arrest case no charge,1,15044570TC30A,(M2),,2015-06-17,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-27,Risk of Violence,3,Low,2014-01-27,2014-03-20,2014-03-21,13,4,52,0,1\r\n6796,tony stricklin,tony,stricklin,2014-11-28,Male,1992-08-20,23,Less than 25,African-American,0,2,0,0,0,-1,2014-11-27 03:02:28,2014-11-28 01:33:26,14015921CF10A,2014-11-27,,1,F,Fleeing Or Attmp Eluding A Leo,1,15004991CF10A,(M1),0,2015-04-16,Resist/Obstruct W/O Violence,2015-04-16,2015-05-29,,1,15004991CF10A,(F3),2015-04-16,Battery on Law Enforc Officer,Risk of Recidivism,2,Low,2014-11-28,Risk of Violence,3,Low,2014-11-28,2015-04-16,2015-05-29,0,0,139,1,1\r\n6798,adam young,adam,young,2013-11-19,Male,1992-04-24,23,Less than 25,Caucasian,0,5,0,0,3,-1,2013-11-18 11:04:11,2013-11-28 03:13:08,13016026CF10A,2013-11-18,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-19,Risk of Violence,6,Medium,2013-11-19,2013-11-18,2013-11-28,3,9,864,0,0\r\n6800,jahreal young,jahreal,young,2013-12-10,Male,1995-06-03,20,Less than 25,African-American,0,3,0,0,0,-1,2013-12-09 07:22:09,2013-12-10 01:53:59,13017043CF10A,2013-12-09,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-10,Risk of Violence,5,Medium,2013-12-10,2013-12-09,2013-12-10,0,0,843,0,0\r\n6801,edmund bruguier,edmund,bruguier,2013-10-04,Male,1971-06-27,44,25 - 45,Caucasian,0,8,0,0,1,-1,2013-10-03 06:09:07,2013-10-04 08:07:14,13013889CF10A,2013-10-03,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-04,Risk of Violence,5,Medium,2013-10-04,2013-10-03,2013-10-04,1,0,910,0,0\r\n6802,genevieve savage,genevieve,savage,2014-01-10,Female,1977-10-11,38,25 - 45,Caucasian,0,1,0,0,1,-23,2013-12-18 11:16:17,2013-12-20 06:03:00,13023417MM10A,2013-12-18,,23,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-10,Risk of Violence,1,Low,2014-01-10,2013-12-18,2013-12-20,1,0,812,0,0\r\n6803,dale heck,dale,heck,2013-05-09,Male,1959-12-08,56,Greater than 45,African-American,0,2,0,0,5,-1,2013-05-08 07:41:30,2014-12-27 05:41:15,13006576CF10A,2013-05-08,,1,F,Lewd or Lascivious Molestation,1,13011095MM10A,(M1),,2013-06-07,Extradition/Defendants,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-09,Risk of Violence,2,Low,2013-05-09,2013-05-08,2014-12-27,5,0,29,1,1\r\n6804,jerry stott,jerry,stott,2013-09-15,Male,1972-10-07,43,25 - 45,Caucasian,0,2,0,0,2,0,2013-09-15 06:58:53,2013-09-20 09:01:55,13013026CF10A,2013-09-15,,0,F,Crimin Mischief Damage $1000+,1,13014626CF10A,(F3),1,2013-10-18,Possession Of Alprazolam,2013-10-19,2013-10-19,,0,,,,,Risk of Recidivism,2,Low,2013-09-15,Risk of Violence,1,Low,2013-09-15,2013-09-15,2013-09-20,2,5,33,1,1\r\n6805,marcus russell,marcus,russell,2013-04-25,Male,1994-04-10,22,Less than 25,African-American,0,3,0,0,0,-1,2013-04-24 12:13:57,2013-09-21 05:30:00,13005868CF10A,2013-04-23,,2,F,Burglary Dwelling Armed,1,15013385CF10A,(F3),,2015-10-14,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-25,Risk of Violence,5,Medium,2013-04-25,2013-10-08,2013-11-07,0,149,166,0,1\r\n6807,travis brooks,travis,brooks,2013-10-16,Male,1984-11-21,31,25 - 45,African-American,0,9,0,0,6,-54,2013-08-23 08:52:57,2013-10-15 10:11:07,13011922CF10A,2013-08-23,,54,F,Felon in Pos of Firearm or Amm,1,13083061TC40A,(M2),,2013-11-19,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,9,High,2013-10-16,Risk of Violence,9,High,2013-10-16,2014-08-15,2014-09-02,6,0,34,1,1\r\n6808,willins louis,willins,louis,2013-12-27,Male,1983-05-16,32,25 - 45,Other,0,1,0,0,0,-1,2013-12-26 06:54:13,2013-12-27 09:23:36,14002330CF10A,2013-12-26,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-27,Risk of Violence,2,Low,2013-12-27,2014-05-05,2014-05-06,0,0,129,0,0\r\n6809,xavier gilbert,xavier,gilbert,2013-11-20,Male,1986-11-21,29,25 - 45,African-American,0,6,0,0,0,0,2013-11-20 02:07:01,2013-11-21 03:36:00,13016124CF10A,2013-11-20,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-20,Risk of Violence,3,Low,2013-11-20,2013-11-20,2013-11-21,0,1,863,0,0\r\n6810,daniel taylor,daniel,taylor,2013-02-23,Male,1993-11-05,22,Less than 25,African-American,0,9,0,0,1,0,2013-02-23 02:35:50,2013-06-06 09:50:22,13002778CF10A,2013-02-22,,1,F,Robbery Sudd Snatch No Weapon,1,13015209MM10A,(M1),0,2013-08-12,Resist Merchant W Or W/O Viol,2013-08-12,2013-09-26,,0,,,,,Risk of Recidivism,9,High,2013-02-23,Risk of Violence,10,High,2013-02-23,2013-08-12,2013-09-26,1,103,170,1,1\r\n6811,lorenzo pulliam,lorenzo,pulliam,2013-01-17,Male,1992-09-20,23,Less than 25,African-American,0,9,0,0,3,-1,2013-01-16 09:46:14,2013-03-01 09:56:04,13000750CF10A,2013-01-16,,1,F,Grand Theft (Motor Vehicle),1,13006238CF10A,(F2),0,2013-05-01,Robbery / No Weapon,2013-05-01,2013-09-17,,1,13006238CF10A,(F2),2013-05-01,Robbery / No Weapon,Risk of Recidivism,9,High,2013-01-17,Risk of Violence,8,High,2013-01-17,2013-05-01,2013-09-17,3,43,104,1,1\r\n6812,ryan wert,ryan,wert,2013-12-19,Male,1991-08-12,24,Less than 25,Caucasian,0,4,0,1,1,-23,2013-11-26 11:09:43,2013-11-28 12:59:40,13016495CF10A,2013-11-26,,23,F,Possession of Morphine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-19,Risk of Violence,4,Low,2013-12-19,2013-11-26,2013-11-28,1,0,834,0,0\r\n6813,veugopalan devaswamparambil,veugopalan,devaswamparambil,2014-02-03,Male,1970-05-13,45,Greater than 45,Other,0,1,0,0,0,0,2014-02-03 03:10:19,2014-02-03 01:15:51,14004308MU10A,2014-02-03,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-03,2014-02-03,0,0,788,0,0\r\n6815,gregory taylor,gregory,taylor,2014-03-20,Male,1995-02-08,21,Less than 25,African-American,0,9,1,0,2,-1,2014-03-19 07:43:15,2014-03-20 09:45:37,14003851CF10A,2014-03-19,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-20,Risk of Violence,7,Medium,2014-03-20,2014-03-19,2014-03-20,2,0,743,0,0\r\n6816,tereese king,tereese,king,2013-10-05,Female,1986-08-08,29,25 - 45,African-American,0,2,0,0,0,0,2013-10-05 04:27:04,2013-10-06 08:51:00,13018956MM10A,2013-10-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-05,Risk of Violence,2,Low,2013-10-05,2013-10-05,2013-10-06,0,1,909,0,0\r\n6818,lisa jones,lisa,jones,2013-01-14,Female,1965-03-19,51,Greater than 45,Caucasian,0,4,0,0,0,-1,2013-01-13 05:17:52,2013-01-14 07:36:42,13002010TC10A,2013-01-13,,1,M,Leave Acc/Attend Veh/More $50,1,13005843MO10A,(MO3),0,2013-03-25,Trespassing,2013-03-25,2013-03-26,,0,,,,,Risk of Recidivism,4,Low,2013-01-14,Risk of Violence,1,Low,2013-01-14,2013-03-25,2013-03-26,0,0,70,1,1\r\n6819,pedro brito,pedro,brito,2014-09-22,Male,1979-10-26,36,25 - 45,Hispanic,1,2,0,0,2,-1,2014-09-21 02:00:22,2014-09-22 08:14:22,14013995MM10A,2014-09-21,,1,M,Criminal Mischief,1,14016413MM10A,(M1),1,2014-11-16,Viol Pretrial Release Dom Viol,2014-11-17,2014-11-17,,0,,,,,Risk of Recidivism,2,Low,2014-09-22,Risk of Violence,1,Low,2014-09-22,2014-11-17,2014-11-17,2,0,55,1,1\r\n6820,frank hamilton,frank,hamilton,2013-08-07,Male,1990-05-01,25,25 - 45,African-American,0,3,0,0,1,0,2013-08-07 04:39:32,2013-08-07 08:25:38,13011052CF10A,2013-08-07,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-07,Risk of Violence,4,Low,2013-08-07,2013-08-07,2013-08-07,1,0,968,0,0\r\n6824,paul gonzalez,paul,gonzalez,2013-01-03,Male,1970-01-25,46,Greater than 45,Hispanic,0,3,0,0,13,-1,2013-01-02 05:11:36,2013-05-24 03:31:20,13000057CF10A,2013-01-02,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-03,Risk of Violence,2,Low,2013-01-03,2013-01-02,2013-05-24,13,141,1184,0,0\r\n6825,andrew sanchious,andrew,sanchious,2014-08-29,Male,1953-11-20,62,Greater than 45,African-American,0,8,0,0,22,0,2014-08-29 03:16:29,2014-10-01 09:24:33,14011786CF10A,2014-08-29,,0,F,Possession of Cocaine,1,15004671MM10A,(M1),0,2015-04-24,Resist/Obstruct W/O Violence,2015-04-24,2015-07-10,,0,,,,,Risk of Recidivism,8,High,2014-08-29,Risk of Violence,2,Low,2014-08-29,2015-04-24,2015-07-10,22,33,238,1,1\r\n6827,oliver chance,oliver,chance,2013-03-22,Male,1991-03-23,25,25 - 45,African-American,0,4,0,0,0,-1,2013-03-21 10:18:18,2013-03-22 08:27:16,13004082CF10A,2013-03-21,,1,F,Pos Cannabis W/Intent Sel/Del,1,14001208MM30A,(M1),,2014-07-18,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-22,Risk of Violence,5,Medium,2013-03-22,2016-01-22,2016-01-23,0,0,483,1,1\r\n6828,kelvin diaz,kelvin,diaz,2013-12-15,Male,1988-08-02,27,25 - 45,Caucasian,0,2,0,0,2,-1,2013-12-14 06:09:17,2013-12-16 02:52:14,13017296CF10A,2013-12-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-15,Risk of Violence,3,Low,2013-12-15,2013-12-14,2013-12-16,2,1,838,0,0\r\n6829,michael lewis,michael,lewis,2013-01-09,Male,1966-09-11,49,Greater than 45,African-American,0,2,0,0,0,,,,,,,,M,,1,15001201MO10A,(MO3),1,2015-01-28,Disorderly Conduct,2015-01-29,2015-04-13,,0,,,,,Risk of Recidivism,2,Low,2013-01-09,Risk of Violence,2,Low,2013-01-09,2013-01-09,2013-01-10,0,1,749,1,0\r\n6830,alysha beyerlein,alysha,beyerlein,2014-12-03,Female,1993-10-07,22,Less than 25,Caucasian,0,9,0,0,3,-1,2014-12-02 09:38:12,2014-12-05 01:02:20,14016048CF10A,2014-12-02,,1,F,Grand Theft in the 3rd Degree,1,15010005MM10A,(M2),0,2015-09-22,Disorderly Conduct,2015-09-22,2015-10-18,,0,,,,,Risk of Recidivism,9,High,2014-12-03,Risk of Violence,4,Low,2014-12-03,2015-07-01,2015-07-11,3,2,210,0,1\r\n6831,jaclyn garguilo,jaclyn,garguilo,2014-12-30,Female,1981-09-17,34,25 - 45,Caucasian,0,10,0,0,9,84,2015-03-24 08:42:09,2015-03-25 03:32:11,14003530MO40A,,2014-12-12,18,M,arrest case no charge,1,15013229CF10A,(F2),,2015-10-12,Poss of Firearm by Convic Felo,,,,0,,,,,Risk of Recidivism,10,High,2014-12-30,Risk of Violence,6,Medium,2014-12-30,2015-03-24,2015-03-25,9,0,84,0,1\r\n6834,roberto sevilla,roberto,sevilla,2014-03-18,Male,1979-03-17,37,25 - 45,Hispanic,0,1,0,0,1,-1,2014-03-17 06:38:54,2014-03-19 10:23:01,14003762CF10A,2014-03-17,,1,F,Aggravated Battery On 65/Older,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-18,Risk of Violence,1,Low,2014-03-18,2014-03-17,2014-03-19,1,1,745,0,0\r\n6836,alexander lopez,alexander,lopez,2014-03-26,Male,1994-06-21,21,Less than 25,Caucasian,0,3,0,0,0,-1,2014-03-25 03:55:09,2014-03-27 03:42:00,14004241CF10A,2014-03-25,,1,F,False Ownership Info/Pawn Item,1,14009053MM10A,(M1),0,2014-06-07,Battery,2014-06-07,2014-06-08,,1,14009053MM10A,(M1),2014-06-07,Battery,Risk of Recidivism,3,Low,2014-03-26,Risk of Violence,5,Medium,2014-03-26,2014-06-07,2014-06-08,0,1,73,1,1\r\n6837,william boyd,william,boyd,2014-10-29,Male,1964-10-09,51,Greater than 45,Caucasian,0,1,0,0,3,-125,2014-06-26 12:30:39,2014-06-27 09:10:38,14064088NI20A,2014-08-02,,88,M,Ride Tri-Rail Without Paying,1,16011885TC20A,(M2),,2016-03-08,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-10-29,Risk of Violence,1,Low,2014-10-29,2015-04-29,2015-05-20,3,0,182,0,1\r\n6838,stephanie kangieser,stephanie,kangieser,2013-05-07,Female,1977-03-13,39,25 - 45,Caucasian,0,5,0,0,2,-1,2013-05-06 09:19:19,2013-05-07 08:11:37,13010121CF10A,2013-05-06,,1,F,Possession Of Cocaine,1,13022550TC10A,(M2),1,2013-05-31,Unlaw LicTag/Sticker Attach,2013-06-01,2013-06-01,,0,,,,,Risk of Recidivism,5,Medium,2013-05-07,Risk of Violence,1,Low,2013-05-07,2013-11-07,2013-12-18,2,0,24,1,1\r\n6840,kedric taylor,kedric,taylor,2013-12-04,Male,1972-12-19,43,25 - 45,African-American,0,3,0,0,8,-1,2013-12-03 05:36:54,2013-12-04 09:08:37,13016731CF10A,2013-12-03,,1,F,Criminal Mischief,1,14017192CF10A,(F2),130,2014-08-22,Deliver Cocaine,2014-12-30,2014-12-31,,0,,,,,Risk of Recidivism,3,Low,2013-12-04,Risk of Violence,3,Low,2013-12-04,2014-12-30,2014-12-31,8,0,261,1,1\r\n6846,travis douglas,travis,douglas,2013-08-05,Male,1994-03-19,22,Less than 25,African-American,0,6,0,0,0,0,2013-08-05 04:56:13,2013-08-06 02:53:04,13014754MM10A,2013-08-05,,0,M,Battery,1,14002785MM20A,(M2),,2014-09-11,Petit Theft,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-05,Risk of Violence,8,High,2013-08-05,2013-08-05,2013-08-06,0,1,402,1,1\r\n6847,lisa byrum,lisa,byrum,2014-01-31,Female,1987-07-06,28,25 - 45,African-American,0,7,0,0,4,-1,2014-01-30 06:24:26,2014-02-01 09:12:42,13017167CF10A,,2014-01-30,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-31,Risk of Violence,3,Low,2014-01-31,2014-01-30,2014-02-01,4,1,791,0,0\r\n6850,carlos benitez,carlos,benitez,2014-03-25,Male,1972-05-03,43,25 - 45,Caucasian,0,9,0,0,0,-1,2014-03-24 04:46:11,2014-03-25 03:27:36,14004167CF10A,2014-03-24,,1,F,Grand Theft in the 3rd Degree,1,15005332CF10A,(F3),,2015-04-23,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,9,High,2014-03-25,Risk of Violence,3,Low,2014-03-25,2016-02-04,2016-04-04,0,0,394,1,1\r\n6851,cesar gonzalez,cesar,gonzalez,2014-10-27,Male,1988-10-12,27,25 - 45,Caucasian,0,8,0,0,7,-1,2014-10-26 11:43:59,2014-10-27 08:16:00,14014410CF10A,2014-10-24,,3,F,Possession of Hydrocodone,1,16008296TC20A,(M2),,2015-05-13,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2014-10-27,Risk of Violence,6,Medium,2014-10-27,2014-10-26,2014-10-27,7,0,198,1,1\r\n6852,vaughn white,vaughn,white,2013-03-22,Male,1988-06-25,27,25 - 45,Other,0,2,0,0,0,-1,2013-03-21 10:53:37,2013-05-14 11:04:26,13004293CF10A,2013-03-22,,0,F,Fleeing Or Attmp Eluding A Leo,1,15016952TC40A,(M2),,2015-03-13,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-22,Risk of Violence,3,Low,2013-03-22,2013-03-21,2013-05-14,0,53,721,1,1\r\n6855,david adams,david,adams,2014-04-03,Male,1984-05-30,31,25 - 45,Caucasian,0,2,0,0,1,-1,2014-04-02 07:34:34,2014-04-03 10:48:58,14004606CF10A,2014-04-02,,1,F,Grand Theft in the 3rd Degree,1,14053678TC30A,(M2),,2014-06-21,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,2,Low,2014-04-03,Risk of Violence,2,Low,2014-04-03,2014-04-02,2014-04-03,1,0,79,1,1\r\n6857,malina campbell,malina,campbell,2013-03-20,Female,1987-09-08,28,25 - 45,African-American,0,2,0,0,0,0,2013-03-20 03:43:32,2013-03-21 01:37:09,13005459MM10A,2013-03-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-20,Risk of Violence,2,Low,2013-03-20,2013-03-20,2013-03-21,0,1,1108,0,0\r\n6858,gregory beder,gregory,beder,2013-11-12,Male,1957-06-13,58,Greater than 45,Caucasian,0,2,0,0,3,-4,2013-11-08 10:40:39,2013-11-09 01:44:01,13021139MM10A,2013-11-08,,4,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-12,Risk of Violence,1,Low,2013-11-12,2013-11-08,2013-11-09,3,0,871,0,0\r\n6859,jacob baziak,jacob,baziak,2014-05-16,Male,1993-09-25,22,Less than 25,Caucasian,0,4,0,0,0,-1,2014-05-15 07:37:39,2014-05-21 08:48:32,14006771CF10A,2014-05-15,,1,F,Harm Public Servant Or Family,1,15001138MM10A,(M1),0,2015-01-28,Criminal Mischief>$200<$1000,2015-01-28,2015-02-06,,1,15001138MM10A,(M1),2015-01-28,Battery,Risk of Recidivism,4,Low,2014-05-16,Risk of Violence,5,Medium,2014-05-16,2015-01-28,2015-02-06,0,5,257,1,1\r\n6860,jorge alarcon,jorge,alarcon,2014-12-15,Male,1995-02-04,21,Less than 25,Hispanic,0,8,0,0,0,,,,14016626CF10A,2014-12-15,,0,M,DUI - Property Damage/Personal Injury,1,15008641TC40A,(M2),,2015-01-18,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2014-12-15,Risk of Violence,8,High,2014-12-15,,,0,0,34,1,1\r\n6862,donald jarrett,donald,jarrett,2013-12-17,Male,1984-11-20,31,25 - 45,African-American,0,4,0,0,5,-1,2013-12-16 07:40:55,2013-12-18 10:47:22,13017381CF10A,2013-12-16,,1,F,Cruelty Toward Child,1,16000452MM30A,(M1),,2016-03-01,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-17,Risk of Violence,3,Low,2013-12-17,2013-12-16,2013-12-18,5,1,805,1,0\r\n6863,james brantley,james,brantley,2013-03-24,Male,1983-01-11,33,25 - 45,African-American,0,3,0,0,0,0,2013-03-24 07:30:48,2013-05-03 09:30:14,13004270CF10A,2013-03-24,,0,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-24,Risk of Violence,3,Low,2013-03-24,2013-03-24,2013-05-03,0,40,1104,0,0\r\n6864,kaleb zackery,kaleb,zackery,2013-05-10,Male,1990-02-23,26,25 - 45,African-American,0,10,0,0,6,0,2013-05-10 02:14:04,2013-05-11 05:25:31,13009075MM10A,2013-05-10,,0,M,Susp Drivers Lic 1st Offense,1,15011459TC10A,(M2),,2015-03-21,Driving License Suspended,,,,0,,,,,Risk of Recidivism,10,High,2013-05-10,Risk of Violence,4,Low,2013-05-10,2013-05-10,2013-05-11,6,1,680,1,1\r\n6866,mariah jackson,mariah,jackson,2014-01-29,Female,1993-02-28,23,Less than 25,African-American,0,5,1,0,1,0,2014-01-29 12:59:29,2014-01-29 07:47:45,14001630MM10A,2014-01-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-29,Risk of Violence,5,Medium,2014-01-29,2014-01-29,2014-01-29,1,0,793,0,0\r\n6870,raymond siggins,raymond,siggins,2013-09-20,Male,1983-09-24,32,25 - 45,Caucasian,0,10,0,0,11,-1,2013-09-19 02:19:06,2014-02-07 08:54:45,13013226CF10A,2013-09-19,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-20,Risk of Violence,9,High,2013-09-20,2013-09-19,2014-02-07,11,140,924,0,0\r\n6872,calvin chamblis,calvin,chamblis,2013-01-08,Male,1958-05-18,57,Greater than 45,African-American,0,2,0,0,2,,,,13000285CF10A,2013-01-07,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-08,Risk of Violence,1,Low,2013-01-08,,,2,0,1179,0,0\r\n6875,nicholas scafidi,nicholas,scafidi,2013-04-07,Male,1993-12-01,22,Less than 25,Caucasian,0,8,0,0,0,0,2013-04-07 02:58:17,2013-04-08 03:59:46,13005002CF10A,2013-04-07,,0,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-07,Risk of Violence,8,High,2013-04-07,2013-04-07,2013-04-08,0,1,1090,0,0\r\n6877,lashunda barbary,lashunda,barbary,2013-04-17,Female,1981-03-03,35,25 - 45,African-American,0,2,0,0,2,-1,2013-04-16 01:34:39,2013-04-17 06:59:17,13005445CF10A,2013-04-15,,2,F,Aggrav Child Abuse-Agg Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-17,Risk of Violence,1,Low,2013-04-17,2013-07-24,2013-10-04,2,0,98,0,0\r\n6878,bruce myers,bruce,myers,2013-04-12,Male,1968-08-23,47,Greater than 45,Caucasian,0,6,0,0,1,0,2013-04-12 07:17:57,2013-07-03 06:42:50,13005312CF10A,2013-04-12,,0,F,Burglary Conveyance Unoccup,1,13005719CF10A,(F3),124,2013-04-20,Burglary Conveyance Unoccup,2013-08-22,2013-10-24,,0,,,,,Risk of Recidivism,6,Medium,2013-04-12,Risk of Violence,3,Low,2013-04-12,2013-04-12,2013-07-03,1,0,8,1,1\r\n6881,elvis morales,elvis,morales,2013-07-23,Male,1981-04-17,35,25 - 45,Hispanic,0,1,0,0,2,-14,2013-07-09 12:32:41,2013-07-23 10:10:46,13009554CF10A,2013-07-08,,15,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-23,Risk of Violence,1,Low,2013-07-23,2015-03-17,2015-11-14,2,0,602,0,0\r\n6882,thomas dunham,thomas,dunham,2013-03-13,Male,1986-07-24,29,25 - 45,African-American,0,9,0,1,17,-1,2013-03-12 02:05:37,2013-03-13 09:39:33,13003619CF10A,2013-03-12,,1,F,Grand Theft Dwell Property,1,13014466CF10A,(F3),0,2013-10-16,Possession of Hydromorphone,2013-10-16,2013-10-17,,0,,,,,Risk of Recidivism,9,High,2013-03-13,Risk of Violence,8,High,2013-03-13,2013-10-16,2013-10-17,17,0,217,1,1\r\n6883,diane gay,diane,gay,2013-05-13,Female,1961-05-15,54,Greater than 45,Caucasian,0,2,0,0,1,-7,2013-05-06 04:01:50,2013-05-10 08:38:25,13008747MM10A,2013-05-06,,7,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2014-05-16,2014-05-16,1,0,368,0,0\r\n6884,cameron weaver,cameron,weaver,2013-08-11,Male,1987-03-16,29,25 - 45,Caucasian,0,8,0,0,0,-1,2013-08-10 05:05:35,2013-11-08 03:38:30,13011238CF10A,2013-08-10,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-11,Risk of Violence,3,Low,2013-08-11,2013-08-10,2013-11-08,0,89,964,0,0\r\n6885,jessalyn balentine,jessalyn,balentine,2014-05-07,Female,1988-02-17,28,25 - 45,Other,0,4,0,0,0,-1,2014-05-06 11:30:40,2014-05-07 09:38:32,14007480MM10A,2014-05-06,,1,M,Battery,1,14003333MM40A,(M1),,2014-08-03,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2014-05-07,Risk of Violence,3,Low,2014-05-07,2014-05-06,2014-05-07,0,0,88,1,1\r\n6886,oscar pope,oscar,pope,2013-07-12,Male,1964-09-20,51,Greater than 45,African-American,0,8,0,0,17,-2,2013-07-10 11:25:29,2013-07-11 08:16:02,13009648CF10A,2013-07-10,,2,F,Possession of Cocaine,1,13013848CF10A,(F3),0,2013-10-02,Grand Theft in the 3rd Degree,2013-10-02,2013-12-13,,0,,,,,Risk of Recidivism,8,High,2013-07-12,Risk of Violence,2,Low,2013-07-12,2013-10-02,2013-12-13,17,0,82,1,1\r\n6888,demetrius bryant,demetrius,bryant,2013-02-09,Female,1979-08-03,36,25 - 45,African-American,0,6,0,0,0,0,2013-02-09 04:56:26,2013-02-10 01:22:54,11003479MO40A,,2013-02-09,0,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-09,Risk of Violence,2,Low,2013-02-09,2013-02-09,2013-02-10,0,1,1147,0,0\r\n6889,joseph aponte,joseph,aponte,2013-01-20,Male,1980-12-11,35,25 - 45,Caucasian,0,4,0,0,3,-1,2013-01-19 09:17:39,2013-01-29 05:22:25,12008583MM10A,,2013-01-20,0,M,arrest case no charge,1,14031877TC20A,(M2),,2014-04-27,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-20,Risk of Violence,4,Low,2013-01-20,2013-01-19,2013-01-29,3,9,462,1,1\r\n6892,nathan brown,nathan,brown,2013-10-24,Male,1995-05-30,20,Less than 25,African-American,0,4,0,1,1,-1,2013-10-23 04:10:14,2013-10-24 09:34:30,13014795CF10A,,2013-10-23,1,F,arrest case no charge,1,13001580MM30A,(M2),,2013-12-05,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-24,Risk of Violence,7,Medium,2013-10-24,2013-11-18,2013-11-18,1,0,25,0,1\r\n6893,gilton bain,gilton,bain,2013-03-02,Male,1990-09-23,25,25 - 45,African-American,0,5,0,0,0,0,2013-03-02 01:54:09,2013-03-04 09:44:28,13003163CF10A,2013-03-01,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-02,Risk of Violence,5,Medium,2013-03-02,2013-03-02,2013-03-04,0,2,1126,0,0\r\n6894,brian cole,brian,cole,2013-08-01,Male,1987-01-28,29,25 - 45,African-American,0,5,0,0,2,-1,2013-07-31 06:22:13,2013-08-01 08:25:25,11078240TC20A,2011-11-05,,635,M,Fail Register Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-01,Risk of Violence,3,Low,2013-08-01,2013-07-31,2013-08-01,2,0,974,0,0\r\n6896,juan prebal,juan,prebal,2013-11-30,Male,1985-02-20,31,25 - 45,Hispanic,0,10,0,0,0,0,2013-11-30 05:18:06,2013-11-30 01:05:02,13016608CF10A,2013-11-30,,0,F,Possession of Cocaine,1,14000745CF10A,(F2),0,2014-01-17,Robbery / No Weapon,2014-01-17,2014-03-08,,1,14000745CF10A,(F2),2014-01-17,Robbery / No Weapon,Risk of Recidivism,10,High,2013-11-30,Risk of Violence,9,High,2013-11-30,2014-01-17,2014-03-08,0,0,48,1,1\r\n6898,wilner mascary,wilner,mascary,2013-09-26,Male,1953-06-12,62,Greater than 45,African-American,0,1,0,0,4,,,,12013816CF10A,,2012-09-20,371,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-26,Risk of Violence,1,Low,2013-09-26,,,4,0,918,0,0\r\n6899,eric smithberg,eric,smithberg,2013-01-10,Male,1976-11-11,39,25 - 45,Caucasian,0,2,0,0,0,0,2013-01-10 02:12:21,2013-01-10 07:13:09,13000586MM10A,2013-01-09,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-10,Risk of Violence,2,Low,2013-01-10,2013-01-10,2013-01-10,0,0,1177,0,0\r\n6900,sean mckinney,sean,mckinney,2013-02-26,Male,1985-08-08,30,25 - 45,African-American,0,4,0,0,1,-1,2013-02-25 04:21:41,2013-07-07 04:30:08,13002848CF10A,2013-02-25,,1,F,Burglary Structure Unoccup,1,13018704MM10A,(M1),0,2013-10-01,Possess Cannabis/20 Grams Or Less,2013-10-01,2013-10-02,,0,,,,,Risk of Recidivism,4,Low,2013-02-26,Risk of Violence,3,Low,2013-02-26,2013-10-01,2013-10-02,1,131,217,1,1\r\n6901,melinda white,melinda,white,2014-01-23,Female,1992-06-29,23,Less than 25,African-American,0,7,0,0,0,0,2014-01-23 01:39:34,2014-01-23 08:11:47,14001015CF10A,2014-01-23,,0,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-23,Risk of Violence,4,Low,2014-01-23,2014-01-23,2014-01-23,0,0,799,0,0\r\n6904,nia-tarin mars,nia-tarin,mars,2013-12-23,Female,1993-04-09,23,Less than 25,African-American,0,4,0,0,1,-1,2013-12-22 09:21:51,2013-12-23 04:21:18,13017645CF10A,,2013-12-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-23,Risk of Violence,4,Low,2013-12-23,2013-12-22,2013-12-23,1,0,830,0,0\r\n6906,yaquelyn iranzo,yaquelyn,iranzo,2013-06-17,Female,1978-10-08,37,25 - 45,Hispanic,0,3,0,0,0,-3,2013-06-14 10:05:29,2013-06-15 01:27:00,13011462MM10A,2013-06-14,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-17,Risk of Violence,3,Low,2013-06-17,2013-06-14,2013-06-15,0,0,1019,0,0\r\n6908,marcus johnson,marcus,johnson,2014-11-12,Male,1985-07-13,30,25 - 45,African-American,0,7,0,0,21,0,2014-11-12 12:33:19,2014-11-13 03:38:10,14015122CF10A,2014-11-11,,1,F,Driving While License Revoked,1,14015324CF10A,(F3),0,2014-11-14,Driving While License Revoked,2014-11-14,2014-11-15,,0,,,,,Risk of Recidivism,7,Medium,2014-11-12,Risk of Violence,2,Low,2014-11-12,2014-11-14,2014-11-15,21,1,2,1,1\r\n6910,michael pratt,michael,pratt,2013-12-09,Male,1983-03-22,33,25 - 45,African-American,0,9,0,3,18,-1,2013-12-08 11:11:49,2013-12-09 08:32:49,13016989CF10A,2013-12-08,,1,F,Grand Theft in the 3rd Degree,1,13017594CF10A,(M1),0,2013-12-20,Resist Merchant W Or W/O Viol,2013-12-20,2013-12-21,,0,,,,,Risk of Recidivism,9,High,2013-12-09,Risk of Violence,8,High,2013-12-09,2013-12-20,2013-12-21,18,0,11,1,1\r\n6911,marcos castellanos,marcos,castellanos,2014-09-03,Male,1995-11-08,20,Less than 25,Hispanic,0,4,0,0,0,-2,2014-09-01 11:43:59,2014-09-02 07:43:04,14013080MM10A,2014-09-01,,2,M,Resist/Obstruct W/O Violence,1,15000567MM20A,(M2),,2015-02-10,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2014-09-03,Risk of Violence,6,Medium,2014-09-03,2014-09-01,2014-09-02,0,0,160,1,1\r\n6912,zelda kinchen,zelda,kinchen,2014-02-26,Female,1955-04-10,61,Greater than 45,African-American,0,6,0,0,1,-79,2013-12-09 10:48:15,2014-01-30 10:28:00,11014615CF10A,,2013-12-09,79,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-26,Risk of Violence,3,Low,2014-02-26,2013-12-09,2014-01-30,1,0,765,0,0\r\n6915,delama casimir,delama,casimir,2013-01-13,Male,1985-12-12,30,25 - 45,African-American,0,7,1,0,9,-1,2013-01-12 01:44:17,2013-01-20 02:33:15,13000551CF10A,2013-01-12,,1,F,Criminal Mischief,1,14005038CF10A,(F3),0,2014-04-11,Grand Theft in the 3rd Degree,2014-04-11,2014-05-16,,1,14015208MM10A,(M1),2014-10-19,Battery,Risk of Recidivism,7,Medium,2013-01-13,Risk of Violence,2,Low,2013-01-13,2014-04-11,2014-05-16,9,7,453,1,1\r\n6916,carl fleming,carl,fleming,2013-02-23,Male,1992-11-04,23,Less than 25,African-American,0,6,0,0,1,-1,2013-02-22 09:55:37,2013-03-30 04:46:32,13002762CF10A,2013-02-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-23,Risk of Violence,5,Medium,2013-02-23,2013-02-22,2013-03-30,1,35,1133,0,0\r\n6919,savanna saintilus,savanna,saintilus,2013-01-10,Female,1988-06-30,27,25 - 45,African-American,0,3,0,0,0,-2,2013-01-08 07:18:36,2013-01-09 01:34:00,13000307CF10A,2013-01-08,,2,F,Neglect Child / Bodily Harm,1,14002273CF10A,(F2),0,2014-02-18,Aggrav Battery w/Deadly Weapon,2014-02-18,2014-05-23,,1,14002273CF10A,(F2),2014-02-18,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,3,Low,2013-01-10,Risk of Violence,3,Low,2013-01-10,2014-02-18,2014-05-23,0,0,404,1,1\r\n6920,travis reed,travis,reed,2013-02-06,Male,1977-12-12,38,25 - 45,African-American,0,6,1,0,10,-1,2013-02-05 08:38:14,2013-02-06 02:15:49,13001791CF10A,2013-02-05,,1,M,Possess Cannabis 1000FTSch,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-06,Risk of Violence,2,Low,2013-02-06,2014-06-27,2014-07-02,10,0,506,0,0\r\n6921,sheridan collier,sheridan,collier,2014-02-01,Male,1973-08-10,42,25 - 45,African-American,0,1,0,0,1,-1,2014-01-31 07:36:13,2014-02-02 04:00:35,13016504CF10A,,2014-01-31,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-01,Risk of Violence,1,Low,2014-02-01,2014-12-04,2014-12-12,1,1,306,0,0\r\n6923,terrance moye,terrance,moye,2013-04-06,Male,1984-08-01,31,25 - 45,African-American,0,3,0,0,0,-1,2013-04-05 12:30:30,2013-04-06 08:02:02,13005072CF10A,2013-04-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-06,Risk of Violence,2,Low,2013-04-06,2013-04-05,2013-04-06,0,0,1091,0,0\r\n6924,jonathan mcreed,jonathan,mcreed,2013-01-04,Male,1992-05-16,23,Less than 25,African-American,0,9,0,0,2,-1,2013-01-03 05:41:44,2013-01-09 05:44:12,13000125CF10A,2013-01-03,,1,F,Burglary Dwelling Occupied,1,13020997MM10A,(M1),71,2013-08-26,Possess Cannabis/20 Grams Or Less,2013-11-05,2013-11-13,,0,,,,,Risk of Recidivism,9,High,2013-01-04,Risk of Violence,7,Medium,2013-01-04,2013-01-03,2013-01-09,2,5,234,1,1\r\n6926,brandon ross,brandon,ross,2013-02-05,Male,1985-02-17,31,25 - 45,Caucasian,0,3,0,0,1,-1,2013-02-04 07:24:28,2013-03-15 08:19:29,13001740CF10A,2013-02-04,,1,F,Possession of Cocaine,1,13007175MM10A,(M2),0,2013-04-14,Obstuct By Solicitation,2013-04-14,2013-06-11,,0,,,,,Risk of Recidivism,3,Low,2013-02-05,Risk of Violence,2,Low,2013-02-05,2013-04-14,2013-06-11,1,38,68,1,1\r\n6927,boston johnson,boston,johnson,2013-11-12,Male,1972-07-01,43,25 - 45,African-American,0,5,0,0,1,-1,2013-11-11 06:15:16,2013-11-16 12:03:49,13021226MM10A,2013-11-11,,1,M,Battery,1,15009798MM10A,(M1),0,2015-09-15,Battery,2015-09-15,2015-09-20,,1,15009798MM10A,(M1),2015-09-15,Battery,Risk of Recidivism,5,Medium,2013-11-12,Risk of Violence,4,Low,2013-11-12,2015-09-15,2015-09-20,1,4,672,1,1\r\n6929,glenn morris,glenn,morris,2013-09-07,Male,1976-12-03,39,25 - 45,Caucasian,0,3,0,0,0,-1,2013-09-06 10:19:32,2013-09-12 08:10:36,13012607CF10A,2013-09-06,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-07,Risk of Violence,1,Low,2013-09-07,2013-09-06,2013-09-12,0,5,937,0,0\r\n6931,marcus posey,marcus,posey,2013-02-04,Male,1984-08-23,31,25 - 45,African-American,0,2,0,0,0,-1,2013-02-03 10:14:16,2013-02-07 05:51:57,13001692CF10A,2013-02-03,,1,M,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-04,Risk of Violence,2,Low,2013-02-04,2013-02-03,2013-02-07,0,3,1152,0,0\r\n6932,adrian torres,adrian,torres,2013-01-10,Male,1994-02-21,22,Less than 25,Caucasian,0,7,0,0,3,-1,2013-01-09 05:21:02,2013-05-31 09:29:37,13000391CF10A,2013-01-09,,1,F,Burglary Conveyance Unoccup,1,13017564CF10A,(M1),0,2013-12-20,Resist/Obstruct W/O Violence,2013-12-20,2014-07-26,,0,,,,,Risk of Recidivism,7,Medium,2013-01-10,Risk of Violence,6,Medium,2013-01-10,2013-11-26,2013-12-14,3,141,320,0,1\r\n6934,roger byrum,roger,byrum,2013-12-19,Female,1982-06-21,33,25 - 45,African-American,0,3,0,0,0,0,2013-12-19 03:05:43,2013-12-21 09:50:58,13017526CF10A,2013-12-19,,0,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-19,Risk of Violence,2,Low,2013-12-19,2013-12-19,2013-12-21,0,2,834,0,0\r\n6935,zachary moore,zachary,moore,2013-01-27,Male,1994-08-13,21,Less than 25,Caucasian,0,5,1,0,1,115,2013-05-22 07:12:57,2013-05-28 06:47:30,13001323CF10A,2013-01-27,,0,F,Possession of Cocaine,1,13015575MM10A,(M1),0,2013-08-17,Resist/Obstruct W/O Violence,2013-08-17,2013-09-17,,1,14011902CF10A,(F2),2014-09-01,Robbery / No Weapon,Risk of Recidivism,5,Medium,2013-01-27,Risk of Violence,7,Medium,2013-01-27,2013-05-22,2013-05-28,1,0,115,0,1\r\n6936,nickles stfleur,nickles,stfleur,2013-12-16,Male,1992-09-19,23,Less than 25,African-American,0,6,0,0,1,-1,2013-12-15 04:22:32,2014-04-14 11:42:17,13017336CF10A,2013-12-15,,1,F,Aggravated Battery / Pregnant,1,14015878CF10A,(F3),,2014-09-25,Felony Battery (Dom Strang),,,,1,14015878CF10A,(F3),2014-09-25,Felony Battery (Dom Strang),Risk of Recidivism,6,Medium,2013-12-16,Risk of Violence,8,High,2013-12-16,2013-12-15,2014-04-14,1,119,283,1,1\r\n6937,maricelis hernandez,maricelis,hernandez,2013-04-17,Female,1987-01-26,29,25 - 45,Caucasian,0,4,0,0,0,-1,2013-04-16 02:44:06,2013-05-14 08:05:34,13005536CF10A,2013-04-16,,1,F,Consp Traff Oxycodone  4g><14g,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-17,Risk of Violence,3,Low,2013-04-17,2013-04-16,2013-05-14,0,27,1080,0,0\r\n6939,michael madia,michael,madia,2013-01-16,Male,1954-03-10,62,Greater than 45,Caucasian,0,1,0,0,2,-4,2013-01-12 01:16:30,2013-01-15 07:17:11,13001825CF10A,2013-01-11,,5,F,Solicit Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-16,Risk of Violence,1,Low,2013-01-16,2013-02-06,2013-02-07,2,0,21,0,0\r\n6941,yolanda smith,yolanda,smith,2013-03-18,Female,1960-03-16,56,Greater than 45,African-American,0,2,0,0,1,-24,2013-02-22 11:23:33,2013-02-23 07:43:24,13002756CF10A,2013-02-22,,24,F,Possession of Cocaine,1,13035344TC10A,(M1),,2013-09-01,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-02-22,2013-02-23,1,0,167,1,1\r\n6943,samantha duvignaud,samantha,duvignaud,2014-03-20,Female,1991-05-07,24,Less than 25,African-American,0,3,0,0,4,-1,2014-03-19 01:55:53,2014-03-21 05:41:57,14003857CF10A,2014-03-19,,1,F,Grand Theft on 65 Yr or Older,1,15036490TC30A,(M2),47,2015-05-14,Operating W/O Valid License,2015-06-30,2015-07-11,,0,,,,,Risk of Recidivism,3,Low,2014-03-20,Risk of Violence,3,Low,2014-03-20,2014-03-19,2014-03-21,4,1,420,1,1\r\n6944,ella burburan,ella,burburan,2014-03-18,Female,1971-05-27,44,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-17 06:48:31,2014-03-18 01:08:58,14004619MM10A,2014-03-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-18,Risk of Violence,1,Low,2014-03-18,2014-03-17,2014-03-18,0,0,745,0,0\r\n6946,jeremy smith,jeremy,smith,2013-08-03,Male,1994-03-17,22,Less than 25,African-American,0,7,1,0,2,-1,2013-08-02 05:20:09,2013-08-04 01:34:47,13006125CF10A,,2013-08-02,1,F,arrest case no charge,1,15007109MM10A,(M1),0,2015-07-03,Possess Cannabis/20 Grams Or Less,2015-07-03,2015-07-14,,0,,,,,Risk of Recidivism,7,Medium,2013-08-03,Risk of Violence,8,High,2013-08-03,2015-07-03,2015-07-14,2,1,699,1,1\r\n6947,vladimir sufra,vladimir,sufra,2014-11-14,Female,1988-04-02,28,25 - 45,African-American,0,5,0,0,4,-1,2014-11-13 03:39:04,2014-11-15 04:22:29,14015245CF10A,2014-11-13,,1,F,Possession of Cocaine,1,15000555MM20A,(M1),,2015-02-09,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2014-11-14,Risk of Violence,2,Low,2014-11-14,2014-11-13,2014-11-15,4,1,87,1,1\r\n6948,isaac gray,isaac,gray,2013-03-18,Male,1986-04-18,30,25 - 45,African-American,0,5,0,0,0,0,2013-03-18 03:34:14,2013-03-18 06:25:19,13003921CF10A,2013-03-18,,0,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-18,Risk of Violence,3,Low,2013-03-18,2013-03-18,2013-03-18,0,0,1110,0,0\r\n6949,jerald thornton,jerald,thornton,2014-03-09,Male,1983-12-18,32,25 - 45,Caucasian,0,1,0,0,1,0,2014-03-09 03:49:16,2014-03-10 03:39:54,14003315CF10A,2014-03-08,,1,M,Battery on Law Enforc Officer,1,14068881TC20A,(M2),,2014-09-19,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-09,Risk of Violence,1,Low,2014-03-09,2014-03-09,2014-03-10,1,1,194,1,1\r\n6950,kenneth mcminn,kenneth,mcminn,2013-03-09,Male,1964-04-26,51,Greater than 45,Caucasian,0,6,0,0,3,-1,2013-03-08 12:35:15,2013-03-25 08:50:15,13003469CF10A,2013-03-08,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-09,Risk of Violence,3,Low,2013-03-09,2014-07-19,2014-07-28,3,16,497,0,0\r\n6952,keon johnson,keon,johnson,2014-02-03,Male,1994-07-30,21,Less than 25,African-American,0,5,0,0,0,-1,2014-02-02 11:07:12,2014-02-05 07:54:36,14001471CF10A,2014-02-02,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-03,Risk of Violence,6,Medium,2014-02-03,2014-02-02,2014-02-05,0,2,788,0,0\r\n6955,jeff lafferriere,jeff,lafferriere,2013-08-28,Male,1994-08-09,21,Less than 25,African-American,0,9,0,0,2,-1,2013-08-27 01:32:27,2013-09-14 05:58:00,13012076CF10A,2013-08-27,,1,F,Possession of Cocaine,1,14024190TC10A,(M2),0,2014-05-19,Unlaw LicTag/Sticker Attach,2014-05-19,2014-05-20,,0,,,,,Risk of Recidivism,9,High,2013-08-28,Risk of Violence,9,High,2013-08-28,2014-05-19,2014-05-20,2,17,264,1,1\r\n6957,akeine banner,akeine,banner,2013-01-02,Male,1988-11-10,27,25 - 45,African-American,0,9,0,0,3,-1,2013-01-01 03:16:15,2013-01-10 04:12:28,13000047CF10A,2013-01-01,,1,F,Carrying Concealed Firearm,1,13017941CF10A,(F1),1,2013-12-28,Robbery W/Firearm,2013-12-29,2015-04-02,,1,13017941CF10A,(F1),2013-12-28,Robbery W/Firearm,Risk of Recidivism,9,High,2013-01-02,Risk of Violence,5,Medium,2013-01-02,2013-01-01,2013-01-10,3,8,360,1,1\r\n6959,cedgar caraveo,cedgar,caraveo,2013-04-20,Male,1987-10-30,28,25 - 45,Hispanic,0,4,0,0,0,0,2013-04-20 05:28:13,2013-04-20 07:17:54,13005679CF10A,2013-04-20,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,2,Low,2013-04-20,2013-04-20,2013-04-20,0,0,1077,0,0\r\n6960,judy fleurimond,judy,fleurimond,2013-10-28,Female,1985-03-31,31,25 - 45,African-American,0,1,0,0,0,-1,2013-10-27 01:53:54,2013-10-29 08:51:33,13015008CF10A,2013-10-27,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-28,Risk of Violence,1,Low,2013-10-28,2013-10-27,2013-10-29,0,1,886,0,0\r\n6961,travas chance,travas,chance,2014-01-19,Male,1982-06-25,33,25 - 45,African-American,0,8,0,0,0,-1,2014-01-18 07:09:21,2014-01-19 08:51:59,14000937MM10A,2014-01-18,,1,M,Battery,1,15004949TC30A,(M2),,2015-01-13,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,8,High,2014-01-19,Risk of Violence,6,Medium,2014-01-19,2014-01-18,2014-01-19,0,0,359,1,1\r\n6963,elizabeth carlson,elizabeth,carlson,2013-10-02,Female,1967-03-01,49,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-10-01 06:01:14,2013-10-02 03:31:06,13013862CF10A,2013-10-01,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,2013-10-01,2013-10-02,2,0,912,0,0\r\n6965,kela simpson,kela,simpson,2013-04-19,Female,1974-09-12,41,25 - 45,Other,0,3,0,0,2,-1,2013-04-18 08:43:09,2013-05-04 02:25:51,04016984CF10C,,2013-04-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-19,Risk of Violence,3,Low,2013-04-19,2014-11-08,2015-01-15,2,15,568,0,0\r\n6967,edwin oliva,edwin,oliva,2013-10-24,Male,1995-08-05,20,Less than 25,Caucasian,0,4,0,5,0,-1,2013-10-23 05:29:31,2013-10-24 09:33:22,13020111MM10A,2013-10-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-24,Risk of Violence,7,Medium,2013-10-24,2013-10-23,2013-10-24,0,0,890,0,0\r\n6968,dantae roland,dantae,roland,2013-01-20,Male,1984-08-12,31,25 - 45,African-American,0,6,0,1,10,-1,2013-01-19 07:47:37,2013-07-20 05:53:31,13000890CF10A,2013-01-19,,1,F,Possession of Cocaine,1,14005610CF10A,(F3),0,2014-04-22,Burglary Structure Unoccup,2014-04-22,2014-04-23,,0,,,,,Risk of Recidivism,6,Medium,2013-01-20,Risk of Violence,2,Low,2013-01-20,2014-04-22,2014-04-23,10,181,457,1,1\r\n6971,brandon altenried,brandon,altenried,2013-02-16,Male,1991-03-21,25,25 - 45,African-American,0,5,0,0,5,-1,2013-02-15 01:46:08,2013-04-05 08:12:37,13002345CF10A,,2013-02-15,1,F,arrest case no charge,1,13014528CF10A,(F3),4,2013-10-14,Grand Theft in the 3rd Degree,2013-10-18,2013-12-19,,0,,,,,Risk of Recidivism,5,Medium,2013-02-16,Risk of Violence,4,Low,2013-02-16,2013-02-15,2013-04-05,5,48,240,1,1\r\n6975,antwoin graham,antwoin,graham,2013-04-08,Male,1992-12-19,23,Less than 25,African-American,0,9,1,0,4,0,2013-04-08 12:39:29,2013-10-18 05:35:27,13001063CF10A,,2013-04-07,1,F,arrest case no charge,1,13023858MM10A,(M1),0,2013-11-20,Trespass Struct/Convey Occupy,2013-11-20,2014-12-23,,1,13016111CF10A,(F7),2013-11-20,Burglary Dwelling Assault/Batt,Risk of Recidivism,9,High,2013-04-08,Risk of Violence,9,High,2013-04-08,2013-11-20,2014-12-23,4,193,226,1,1\r\n6976,mathew miranda,mathew,miranda,2013-12-10,Male,1989-11-01,26,25 - 45,Caucasian,0,4,0,0,0,-1,2013-12-09 11:19:57,2013-12-12 09:19:18,13022788MM10A,2013-12-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-10,Risk of Violence,3,Low,2013-12-10,2013-12-09,2013-12-12,0,2,843,0,0\r\n6977,margaret brezina,margaret,brezina,2014-09-13,Female,1970-12-25,45,Greater than 45,Asian,0,3,0,0,6,-1,2014-09-12 03:56:32,2014-09-14 02:54:56,14012423CF10A,2014-09-12,,1,F,Failure To Return Hired Vehicle,1,15004427MM10A,(M2),0,2015-04-17,Disorderly Conduct,2015-04-17,2015-04-17,,0,,,,,Risk of Recidivism,3,Low,2014-09-13,Risk of Violence,1,Low,2014-09-13,2015-04-17,2015-04-17,6,1,216,0,1\r\n6979,piero delsolar,piero,delsolar,2013-03-23,Male,1987-05-31,28,25 - 45,Caucasian,0,2,0,0,1,0,2013-03-23 05:48:15,2013-03-24 07:18:54,13005703MM10A,2013-03-23,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-23,Risk of Violence,2,Low,2013-03-23,2013-03-23,2013-03-24,1,1,1105,0,0\r\n6980,tracy jackson,tracy,jackson,2014-09-14,Female,1987-10-04,28,25 - 45,African-American,0,9,0,0,13,-1,2014-09-13 03:47:25,2014-10-15 04:09:29,14012456CF10A,2014-09-13,,1,F,Aggravated Battery / Pregnant,1,15006130MM10A,(M2),0,2015-06-04,Petit Theft,2015-06-04,2015-06-09,,0,,,,,Risk of Recidivism,9,High,2014-09-14,Risk of Violence,6,Medium,2014-09-14,2015-06-04,2015-06-09,13,31,263,1,1\r\n6981,michael alen,michael,alen,2013-10-18,Male,1977-01-11,39,25 - 45,Caucasian,0,1,0,0,0,-3,2013-10-15 01:46:59,2013-10-17 07:53:39,13014426CF10A,2013-10-14,,4,F,Resist Officer w/Violence,1,14041452TC10A,(M2),,2014-10-17,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-18,Risk of Violence,1,Low,2013-10-18,2013-10-15,2013-10-17,0,0,364,1,1\r\n6982,john hanson,john,hanson,2013-07-12,Male,1957-04-15,59,Greater than 45,Hispanic,0,2,0,0,1,-2,2013-07-10 01:41:52,2013-07-11 08:33:57,13009665CF10A,2013-07-10,,2,F,Possession Of Methamphetamine,1,14002633MM10A,(M2),0,2014-02-14,Disorderly Intoxication,2014-02-14,2014-02-15,,0,,,,,Risk of Recidivism,2,Low,2013-07-12,Risk of Violence,1,Low,2013-07-12,2014-02-14,2014-02-15,1,0,217,1,1\r\n6983,ricky burley,ricky,burley,2013-06-28,Male,1964-01-28,52,Greater than 45,African-American,0,1,0,0,4,-5,2013-06-23 12:28:04,2013-06-28 12:05:48,13012027MM10A,2013-06-23,,5,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-28,Risk of Violence,1,Low,2013-06-28,2013-06-23,2013-06-28,4,0,1008,0,0\r\n6986,adam rivera,adam,rivera,2013-12-16,Male,1979-07-15,36,25 - 45,Hispanic,0,5,0,0,1,-1,2013-12-15 10:34:57,2013-12-19 10:27:31,13023230MM10A,2013-12-15,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-16,Risk of Violence,3,Low,2013-12-16,2013-12-15,2013-12-19,1,3,837,0,0\r\n6988,abraham gutierrez,abraham,gutierrez,2013-06-24,Male,1962-03-24,54,Greater than 45,Hispanic,0,5,0,0,5,149,2013-11-20 02:24:22,2014-02-22 01:33:10,11015284CF10A,2011-09-13,,650,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-06-24,Risk of Violence,1,Low,2013-06-24,2013-11-20,2014-02-22,5,0,149,0,0\r\n6989,adam ball,adam,ball,2013-03-29,Male,1983-04-23,32,25 - 45,Caucasian,0,3,0,0,0,500,2014-08-11 10:33:48,2014-08-14 08:43:33,13004485CF10A,2013-03-28,,1,F,Driving While License Revoked,1,14010974CF10A,(F3),0,2014-08-11,Grand Theft in the 3rd Degree,2014-08-11,2014-08-14,,0,,,,,Risk of Recidivism,3,Low,2013-03-29,Risk of Violence,2,Low,2013-03-29,2014-08-11,2014-08-14,0,0,500,1,1\r\n6990,vanessa gause,vanessa,gause,2013-10-07,Male,1962-02-25,54,Greater than 45,African-American,0,6,0,0,3,-66,2013-08-02 09:41:15,2013-10-07 11:12:37,13027058TC10A,2013-06-04,,125,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-07,Risk of Violence,2,Low,2013-10-07,2013-08-02,2013-10-07,3,0,907,0,0\r\n6991,tony daniels,tony,daniels,2013-08-30,Male,1985-09-30,30,25 - 45,African-American,0,3,0,0,2,-1,2013-08-29 06:06:24,2013-08-31 04:40:05,13012223CF10A,2013-08-29,,1,F,Deliver Cocaine,1,14010642TC20A,(M2),160,2014-02-09,Unlaw LicTag/Sticker Attach,2014-07-19,2014-07-20,,0,,,,,Risk of Recidivism,3,Low,2013-08-30,Risk of Violence,2,Low,2013-08-30,2013-10-23,2013-11-01,2,1,54,0,1\r\n6996,violet hammond,violet,hammond,2014-06-03,Female,1994-10-13,21,Less than 25,African-American,0,5,0,0,0,-1,2014-06-02 11:29:19,2014-06-03 11:16:29,14008768MM10A,2014-06-02,,1,M,Battery,1,14001346MM30A,(M1),,2014-08-14,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,5,Medium,2014-06-03,Risk of Violence,5,Medium,2014-06-03,2014-06-02,2014-06-03,0,0,72,1,1\r\n6997,david pierre,david,pierre,2013-01-27,Male,1991-01-01,25,25 - 45,African-American,0,4,0,0,2,0,2013-01-27 12:21:32,2013-02-01 09:42:31,13003860TC10A,2013-01-26,,1,M,Susp Drivers Lic 1st Offense,1,13020940TC10A,(M2),,2013-05-07,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-27,Risk of Violence,5,Medium,2013-01-27,2013-01-27,2013-02-01,2,5,100,1,1\r\n6998,eddie vargas,eddie,vargas,2013-05-08,Male,1989-11-07,26,25 - 45,Hispanic,1,5,0,0,1,79,2013-07-26 12:51:45,2014-03-05 11:21:51,08004604CF10A,,2008-11-13,1637,F,arrest case no charge,1,16002121MM10A,(M1),,2016-03-04,Resist/Obstruct W/O Violence,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-08,Risk of Violence,4,Low,2013-05-08,2013-07-26,2014-03-05,1,0,79,0,1\r\n6999,shaquille brown,shaquille,brown,2014-02-20,Male,1993-06-25,22,Less than 25,African-American,0,4,0,0,0,0,2014-02-20 12:25:52,2014-02-20 08:57:04,14002366CF10A,2014-02-19,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-20,Risk of Violence,4,Low,2014-02-20,2014-02-20,2014-02-20,0,0,771,0,0\r\n7003,alphonso davis,alphonso,davis,2013-01-15,Male,1954-06-29,61,Greater than 45,African-American,0,2,0,0,20,-1,2013-01-14 09:38:02,2013-02-14 02:10:23,13002146TC10A,2013-01-14,,1,M,Susp Drivers Lic 1st Offense,1,13016772TC10A,(M1),77,2013-03-14,Opert With Susp DL 2nd Offens,2013-05-30,2013-07-08,,0,,,,,Risk of Recidivism,2,Low,2013-01-15,Risk of Violence,1,Low,2013-01-15,2013-01-14,2013-02-14,20,30,58,1,1\r\n7004,brandon wong,brandon,wong,2013-05-04,Male,1992-03-16,24,Less than 25,Caucasian,0,6,0,2,2,-1,2013-05-03 04:07:08,2013-06-05 01:25:37,13006345CF10A,2013-05-03,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-04,Risk of Violence,5,Medium,2013-05-04,2013-05-03,2013-06-05,2,32,1063,0,0\r\n7005,fredrick martin,fredrick,martin,2013-04-25,Male,1983-10-03,32,25 - 45,African-American,0,8,0,0,2,,,,09010099CF10A,,2009-05-29,1427,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-25,Risk of Violence,8,High,2013-04-25,2006-03-09,2006-11-08,2,0,1072,0,0\r\n7006,olivia marshall,olivia,marshall,2014-12-19,Female,1989-08-30,26,25 - 45,Caucasian,0,9,0,0,2,22,2015-01-10 02:50:22,2015-01-10 08:12:37,14015054CF10A,2014-11-08,,41,F,Grand Theft in the 3rd Degree,1,15000359MM10A,(M1),0,2015-01-10,Unlaw Use False Name/Identity,2015-01-10,2015-01-10,,0,,,,,Risk of Recidivism,9,High,2014-12-19,Risk of Violence,4,Low,2014-12-19,2015-01-10,2015-01-10,2,0,22,0,1\r\n7007,sabrina roper,sabrina,roper,2013-04-30,Female,1981-10-23,34,25 - 45,African-American,0,3,0,0,6,-1,2013-04-29 08:31:32,2013-04-30 01:17:31,13005982CF10A,,2013-04-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-30,Risk of Violence,2,Low,2013-04-30,2013-04-29,2013-04-30,6,0,1067,0,0\r\n7008,rufus president,rufus,president,2013-03-30,Male,1970-08-04,45,Greater than 45,African-American,1,8,0,0,12,-1,2013-03-29 11:41:25,2013-04-02 07:25:44,13006085MO10A,2013-03-29,,1,M,Soliciting For Prostitution,1,13018035MM10A,(M2),0,2013-09-21,Prowling/Loitering,2013-09-21,2013-10-12,,0,,,,,Risk of Recidivism,8,High,2013-03-30,Risk of Violence,6,Medium,2013-03-30,2013-07-14,2013-07-24,12,3,106,0,1\r\n7009,gary blake,gary,blake,2014-05-02,Male,1994-01-26,22,Less than 25,African-American,0,5,0,0,1,235,2014-12-23 03:08:41,2015-02-19 04:49:35,13003097CF10A,2013-03-01,,427,F,Grand Theft in the 3rd Degree,1,14023559TC10A,(M2),194,2014-06-12,Fail Register Vehicle,2014-12-23,2015-02-19,,0,,,,,Risk of Recidivism,5,Medium,2014-05-02,Risk of Violence,6,Medium,2014-05-02,2014-12-23,2015-02-19,1,0,41,1,1\r\n7010,troy shellman,troy,shellman,2013-02-13,Male,1962-01-31,54,Greater than 45,African-American,0,3,0,0,4,0,2013-02-13 04:44:29,2013-02-14 05:24:58,13002237CF10A,2013-02-13,,0,F,Possession of Cocaine,1,14005305MM10A,(M1),0,2014-03-27,Trespass Other Struct/Convey,2014-03-27,2014-03-28,,0,,,,,Risk of Recidivism,3,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2013-04-12,2013-06-08,4,1,58,0,1\r\n7011,stephanie nevels,stephanie,nevels,2013-05-05,Male,1964-07-22,51,Greater than 45,African-American,0,5,0,0,8,-1,2013-05-04 09:20:34,2013-05-30 06:14:31,09002853MO30A,2009-08-28,,1346,M,Consume Alcoholic Bev Pub,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-05,Risk of Violence,1,Low,2013-05-05,2013-05-04,2013-05-30,8,25,1062,0,0\r\n7012,joe thetais,joe,thetais,2013-10-20,Male,1987-04-25,28,25 - 45,African-American,0,2,0,0,0,-1,2013-10-19 09:52:35,2013-10-20 08:40:59,13014659CF10A,2013-10-19,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-20,Risk of Violence,3,Low,2013-10-20,2013-10-19,2013-10-20,0,0,894,0,0\r\n7015,daniel rosario,daniel,rosario,2013-03-09,Male,1992-12-08,23,Less than 25,Caucasian,0,2,0,0,0,0,2013-03-09 05:57:11,2013-03-10 07:02:54,13003495CF10A,2013-03-09,,0,F,Poss Unlaw Issue Id,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-09,Risk of Violence,5,Medium,2013-03-09,2013-03-09,2013-03-10,0,1,1119,0,0\r\n7020,philippi altomari,philippi,altomari,2014-11-07,Male,1985-11-16,30,25 - 45,Caucasian,0,2,0,0,0,-1,2014-11-06 07:53:01,2014-11-07 08:42:35,14014926CF10A,2014-11-06,,1,F,Aggravated Battery / Pregnant,1,15000932CF10A,(F3),0,2015-01-21,Pos Cannabis W/Intent Sel/Del,2015-01-21,2015-01-22,,0,,,,,Risk of Recidivism,2,Low,2014-11-07,Risk of Violence,2,Low,2014-11-07,2015-01-21,2015-01-22,0,0,75,1,1\r\n7022,patrick santiago,patrick,santiago,2013-09-06,Male,1990-05-14,25,25 - 45,African-American,0,3,0,0,0,0,2013-09-06 04:41:35,2013-09-07 05:14:01,13017021MM10A,2013-09-02,,4,M,Operating W/O Valid License,1,14016516TC20A,(M2),415,2014-03-01,Operating W/O Valid License,2015-04-20,2015-04-20,,0,,,,,Risk of Recidivism,3,Low,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-09-06,2013-09-07,0,1,176,1,1\r\n7023,bryan burnett,bryan,burnett,2013-01-30,Male,1990-09-14,25,25 - 45,Caucasian,0,5,0,0,2,-1,2013-01-29 08:35:09,2013-02-07 09:32:54,13001431CF10A,2013-01-29,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-30,Risk of Violence,3,Low,2013-01-30,2013-01-29,2013-02-07,2,8,1157,0,0\r\n7024,jon lamore,jon,lamore,2013-09-11,Male,1988-03-23,28,25 - 45,Caucasian,0,7,0,0,2,-1,2013-09-10 11:51:18,2013-09-11 01:36:16,13012812CF10A,2013-09-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-11,Risk of Violence,8,High,2013-09-11,2013-12-24,2014-03-21,2,0,104,0,0\r\n7025,shellene thorpe,shellene,thorpe,2014-03-26,Female,1983-06-17,32,25 - 45,African-American,0,1,0,0,0,0,2014-03-26 12:39:59,2014-03-26 08:10:27,14005238MM10A,2014-03-25,,1,M,Battery,1,14016669MM10A,(M1),0,2014-11-22,Battery,2014-11-22,2014-11-23,,1,14016669MM10A,(M1),2014-11-22,Battery,Risk of Recidivism,1,Low,2014-03-26,Risk of Violence,1,Low,2014-03-26,2014-11-22,2014-11-23,0,0,241,1,1\r\n7026,rashidi nightingale,rashidi,nightingale,2013-05-10,Male,1980-04-28,35,25 - 45,African-American,0,4,0,0,7,-1,2013-05-09 11:20:35,2013-06-07 09:22:48,13004701CF10A,,2013-05-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-10,Risk of Violence,3,Low,2013-05-10,2013-05-09,2013-06-07,7,28,1057,0,0\r\n7027,reginald fox,reginald,fox,2014-02-15,Male,1967-03-18,49,Greater than 45,African-American,0,1,0,0,0,-1,2014-02-14 01:28:14,2014-02-18 09:21:46,14002627MM10A,2014-02-14,,1,M,Battery,1,14017279MM10A,(M1),0,2014-12-08,Trespass After Warning,2014-12-08,2014-12-09,,0,,,,,Risk of Recidivism,1,Low,2014-02-15,Risk of Violence,1,Low,2014-02-15,2014-12-08,2014-12-09,0,3,296,1,1\r\n7028,michael babbit,michael,babbit,2013-03-22,Male,1979-06-04,36,25 - 45,Caucasian,0,3,0,0,5,-1,2013-03-21 11:56:43,2013-03-22 08:27:26,13004102CF10A,2013-03-21,,1,F,Possession of Cocaine,1,13009901MM10A,(M1),0,2013-05-22,Extradition/Defendants,2013-05-22,2013-05-29,,0,,,,,Risk of Recidivism,3,Low,2013-03-22,Risk of Violence,2,Low,2013-03-22,2013-05-22,2013-05-29,5,0,61,1,1\r\n7029,robie brown,robie,brown,2013-10-05,Male,1982-11-28,33,25 - 45,African-American,0,9,0,0,16,0,2013-10-05 12:52:57,2013-11-07 12:55:45,13018928MM10A,2013-10-04,,1,M,Susp Drivers Lic 1st Offense,1,14000757MM40A,(M1),,2014-02-23,Possess Cannabis/20 Grams Or Less,,,,1,16000514MM10A,(M1),2015-12-14,Battery,Risk of Recidivism,9,High,2013-10-05,Risk of Violence,9,High,2013-10-05,2013-10-05,2013-11-07,16,33,141,1,1\r\n7030,semisi afu,semisi,afu,2013-08-26,Male,1986-04-19,30,25 - 45,Other,0,1,0,0,1,-1,2013-08-25 09:40:47,2013-08-27 05:13:19,13011997CF10A,2013-08-25,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-26,Risk of Violence,2,Low,2013-08-26,2013-08-25,2013-08-27,1,1,949,0,0\r\n7032,kathy floris,kathy,floris,2013-06-24,Female,1958-02-08,58,Greater than 45,Caucasian,0,2,0,0,1,-3,2013-06-21 12:44:56,2013-06-21 07:42:46,13011894MM10A,2013-06-20,,4,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-24,Risk of Violence,1,Low,2013-06-24,2013-06-21,2013-06-21,1,0,1012,0,0\r\n7033,ervin jones,ervin,jones,2013-09-24,Male,1993-10-04,22,Less than 25,African-American,0,7,0,0,2,0,2013-09-24 12:16:02,2013-10-08 05:22:15,13013430CF10A,2013-09-23,,1,F,Felony Battery (Dom Strang),1,15016323CF10A,(F3),,2015-12-22,False Imprisonment,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-24,Risk of Violence,6,Medium,2013-09-24,2015-05-15,2015-05-22,2,14,598,0,0\r\n7034,matthew dameron,matthew,dameron,2013-01-25,Male,1987-07-13,28,25 - 45,Caucasian,0,3,0,0,2,3,2013-01-28 03:35:04,2013-01-30 07:33:30,13000290CF10A,2013-01-07,,18,F,Possession of Oxycodone,1,13001383CF10A,(F1),0,2013-01-28,Robbery W/Firearm,2013-01-28,2013-01-30,,1,13001383CF10A,(F1),2013-01-28,Robbery W/Firearm,Risk of Recidivism,3,Low,2013-01-25,Risk of Violence,3,Low,2013-01-25,2013-01-28,2013-01-30,2,0,3,1,1\r\n7036,yonnatan coronell,yonnatan,coronell,2013-04-21,Male,1987-08-03,28,25 - 45,Hispanic,0,1,0,0,0,0,2013-04-21 01:01:10,2013-04-21 07:21:12,13007651MM10A,2013-04-20,,1,M,Battery,1,13011045MM10A,(M1),1,2013-06-07,Driving Under The Influence,2013-06-08,2013-06-10,,0,,,,,Risk of Recidivism,1,Low,2013-04-21,Risk of Violence,2,Low,2013-04-21,2013-08-13,2013-09-01,0,0,47,1,1\r\n7037,juan hawthorne,juan,hawthorne,2014-12-30,Male,1989-06-22,26,25 - 45,African-American,0,10,1,0,6,-1,2014-12-29 03:29:14,2015-01-02 11:16:53,14017146CF10A,2014-12-29,,1,F,Poss Pyrrolidinovalerophenone,1,15000773CF10A,(F3),1,2015-01-17,Grand Theft (Motor Vehicle),2015-01-18,2015-03-05,,1,15000773CF10A,(F3),2015-01-17,Battery on Law Enforc Officer,Risk of Recidivism,10,High,2014-12-30,Risk of Violence,9,High,2014-12-30,2014-12-29,2015-01-02,6,3,18,1,1\r\n7039,charlene cousino,charlene,cousino,2014-02-26,Female,1979-05-27,36,25 - 45,Caucasian,0,1,0,0,3,-2,2014-02-24 08:10:21,2014-02-25 10:04:35,14002627CF10A,2014-02-24,,2,F,Leaving the Scene of Accident,1,15002047CF10A,(F3),0,2015-02-13,Possession Of Heroin,2015-02-13,2015-02-14,,0,,,,,Risk of Recidivism,1,Low,2014-02-26,Risk of Violence,1,Low,2014-02-26,2015-02-13,2015-02-14,3,0,352,1,1\r\n7040,eriberto gomez,eriberto,gomez,2013-04-07,Male,1992-10-30,23,Less than 25,Caucasian,0,9,0,0,0,0,2013-04-07 03:08:55,2013-04-08 08:21:53,13005008CF10A,2013-04-07,,0,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-07,Risk of Violence,9,High,2013-04-07,2013-04-07,2013-04-08,0,1,1090,0,0\r\n7041,james amboise,james,amboise,2013-02-01,Male,1994-02-05,22,Less than 25,African-American,0,5,0,0,0,0,2013-02-01 01:09:58,2013-02-02 03:17:57,13001582CF10A,2013-01-31,,1,F,Burglary Unoccupied Dwelling,1,13008782CF10A,(F3),0,2013-06-21,Grand Theft in the 3rd Degree,2013-06-21,2013-06-24,,0,,,,,Risk of Recidivism,5,Medium,2013-02-01,Risk of Violence,6,Medium,2013-02-01,2013-06-21,2013-06-24,0,1,140,1,1\r\n7042,shain mills,shain,mills,2013-02-06,Male,1990-11-11,25,25 - 45,African-American,0,9,1,0,10,410,2014-03-23 10:05:48,2014-12-09 07:06:18,10013534CF10A,,2013-02-05,1,F,arrest case no charge,1,14004088CF10A,(M1),0,2014-03-23,Resist/Obstruct W/O Violence,2014-03-23,2014-12-09,,0,,,,,Risk of Recidivism,9,High,2013-02-06,Risk of Violence,6,Medium,2013-02-06,2014-03-23,2014-12-09,10,0,410,1,1\r\n7043,rashad emmons,rashad,emmons,2013-03-28,Male,1989-09-21,26,25 - 45,African-American,0,3,0,0,0,-1,2013-03-27 10:33:56,2013-03-29 09:13:24,13004747CF10A,,2013-03-28,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-28,Risk of Violence,3,Low,2013-03-28,2013-03-27,2013-03-29,0,1,1100,0,0\r\n7044,charlie simmons,charlie,simmons,2013-10-30,Male,1990-11-27,25,25 - 45,African-American,0,5,0,0,1,0,2013-10-30 02:46:22,2013-10-30 08:28:58,13015140CF10A,2013-10-29,,1,F,Uttering Forged Bills,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-30,Risk of Violence,6,Medium,2013-10-30,2013-10-30,2013-10-30,1,0,884,0,0\r\n7045,adam salum,adam,salum,2014-07-06,Male,1989-04-28,26,25 - 45,Caucasian,0,7,0,0,7,-125,2014-03-03 03:46:47,2014-03-03 07:52:58,14009238CF10A,2014-07-05,,1,F,Aggravated Assault W/Dead Weap,1,14079682TC40A,(M2),277,2014-11-10,Driving License Suspended,2015-08-14,2015-09-10,,0,,,,,Risk of Recidivism,7,Medium,2014-07-06,Risk of Violence,5,Medium,2014-07-06,2015-09-10,2020-01-01,7,0,127,1,1\r\n7047,daniel billie,daniel,billie,2013-04-03,Male,1976-03-08,40,25 - 45,Native American,0,6,0,0,2,-1,2013-04-02 08:40:37,2013-04-03 08:44:24,13006373MM10A,2013-04-02,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-03,Risk of Violence,2,Low,2013-04-03,2013-04-02,2013-04-03,2,0,1094,0,0\r\n7048,travis johnson,travis,johnson,2013-05-08,Male,1987-08-12,28,25 - 45,African-American,0,2,0,0,0,-1,2013-05-07 09:33:26,2013-05-08 07:07:39,13008834MM10A,2013-05-07,,1,M,Viol Injunction Protect Dom Vi,1,15007517TC20A,(M2),,2015-01-03,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-08,Risk of Violence,3,Low,2013-05-08,2015-10-25,2015-11-04,0,0,605,1,1\r\n7050,miguel arrietarosales,miguel,arrietarosales,2013-08-21,Male,1976-01-01,40,25 - 45,Hispanic,0,2,0,0,1,,,,12003419MM10A,2012-02-18,,550,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-21,Risk of Violence,2,Low,2013-08-21,,,1,0,954,0,0\r\n7051,reginald herman,reginald,herman,2013-12-18,Male,1959-09-22,56,Greater than 45,African-American,0,1,0,0,1,-1,2013-12-17 05:46:51,2013-12-18 10:30:00,13017434CF10A,2013-12-17,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-18,Risk of Violence,1,Low,2013-12-18,2013-12-17,2013-12-18,1,0,835,0,0\r\n7052,mark bird,mark,bird,2013-09-20,Male,1964-06-11,51,Greater than 45,Caucasian,0,2,0,0,3,-87,2013-06-25 10:02:01,2013-09-19 12:07:40,07017047CF10A,,2013-06-25,87,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-20,Risk of Violence,2,Low,2013-09-20,2013-12-26,2014-04-14,3,0,97,0,0\r\n7053,desta celestin,desta,celestin,2013-04-13,Male,1979-11-17,36,25 - 45,African-American,0,4,0,0,0,-1,2013-04-12 05:15:11,2014-01-17 10:44:53,13005303CF10A,2013-04-12,,1,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-13,Risk of Violence,3,Low,2013-04-13,2013-04-12,2014-01-17,0,279,1084,0,0\r\n7054,victor fals,victor,fals,2013-03-11,Male,1964-08-16,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-10 12:30:54,2013-03-12 09:49:53,13004810MM10A,2013-03-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-03-10,2013-03-12,0,1,1117,0,0\r\n7055,max williams,max,williams,2013-08-30,Male,1990-05-14,25,25 - 45,Caucasian,0,5,0,0,2,,,,13012214CF10A,2013-08-29,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-30,Risk of Violence,3,Low,2013-08-30,,,2,0,945,0,0\r\n7058,adrian dorsett,adrian,dorsett,2013-01-09,Male,1993-11-29,22,Less than 25,African-American,0,6,1,0,1,,,,09024265TC10A,2009-08-17,,1241,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-09,Risk of Violence,9,High,2013-01-09,,,1,0,1178,0,0\r\n7060,juanita sawyer,juanita,sawyer,2013-04-21,Female,1980-05-19,35,25 - 45,African-American,2,8,0,0,9,-1,2013-04-20 09:10:17,2013-10-11 06:10:26,13005080CF10A,,2013-04-20,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-21,Risk of Violence,7,Medium,2013-04-21,2013-04-20,2013-10-11,9,173,1076,0,0\r\n7061,leonardo alvarenga,leonardo,alvarenga,2013-01-16,Male,1992-03-22,24,Less than 25,Caucasian,0,5,0,0,0,-1,2013-01-15 09:56:12,2013-01-16 09:26:27,13000998MM10A,2013-01-15,,1,M,Driving License Suspended,1,13023113MM10A,(M1),,2013-09-10,Sale of Alcoholic Bev to Minor,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-16,Risk of Violence,4,Low,2013-01-16,2013-01-15,2013-01-16,0,0,237,1,1\r\n7063,lanis baxley,lanis,baxley,2013-06-18,Male,1949-04-24,66,Greater than 45,African-American,0,2,0,0,5,-40,2013-05-09 02:20:05,2013-06-03 08:55:17,13008978MM10A,2013-05-09,,40,M,Battery,1,15006807MM10A,(M1),0,2015-06-20,Trespass After Warning,2015-06-20,2015-06-22,,0,,,,,Risk of Recidivism,2,Low,2013-06-18,Risk of Violence,1,Low,2013-06-18,2013-08-14,2013-09-25,5,0,57,0,1\r\n7064,sanford hill,sanford,hill,2013-02-27,Male,1989-03-08,27,25 - 45,African-American,0,4,0,0,6,-1,2013-02-26 06:14:33,2013-02-27 09:40:45,13004002MM10A,2013-02-26,,1,M,Battery,1,13027788TC10A,(M2),,2013-03-24,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-27,Risk of Violence,4,Low,2013-02-27,2013-02-26,2013-02-27,6,0,25,1,1\r\n7067,tyler anderson,tyler,anderson,2013-03-01,Male,1994-02-27,22,Less than 25,Caucasian,0,9,1,0,2,0,2013-03-01 02:35:25,2013-03-02 09:45:12,13003112CF10A,2013-03-01,,0,F,Poss F/Arm Delinq,1,13025122TC10A,(M2),,2013-06-17,Operating W/O Valid License,,,,1,14011631CF10A,(F3),2014-08-26,Battery on Law Enforc Officer,Risk of Recidivism,9,High,2013-03-01,Risk of Violence,7,Medium,2013-03-01,2013-06-17,2013-11-07,2,1,108,1,1\r\n7068,darrell evans,darrell,evans,2013-02-20,Male,1972-06-09,43,25 - 45,Caucasian,0,1,0,0,2,-41,2013-01-10 05:45:14,2013-02-20 01:46:33,13000471CF10A,,2013-01-10,41,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-01-10,2013-02-20,2,0,1136,0,0\r\n7070,deondre bowden,deondre,bowden,2013-08-07,Male,1993-12-11,22,Less than 25,African-American,0,6,0,0,2,-64,2013-06-04 09:32:44,2013-07-24 07:39:53,13007927CF10A,2013-06-04,,64,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-07,Risk of Violence,7,Medium,2013-08-07,2013-06-04,2013-07-24,2,0,968,0,0\r\n7073,freddy crespo,freddy,crespo,2013-02-06,Male,1984-11-11,31,25 - 45,African-American,0,10,0,0,4,67,2013-04-14 05:41:17,2013-06-01 04:53:55,13002220MM10A,2013-01-02,,35,M,Possess Cannabis/20 Grams Or Less,1,13010232MM10A,(M1),,2013-04-13,Battery,,,,1,13010232MM10A,(M1),2013-04-13,Battery,Risk of Recidivism,10,High,2013-02-06,Risk of Violence,8,High,2013-02-06,2016-03-26,2016-03-27,4,0,66,1,1\r\n7074,rozanna nicholson,rozanna,nicholson,2013-11-09,Female,1992-07-25,23,Less than 25,Caucasian,0,9,0,0,4,-1,2013-11-08 05:42:42,2014-03-21 11:34:17,13021147MM10A,2013-11-08,,1,M,Battery,1,14006428MM10A,(M1),0,2014-04-16,Trespass Other Struct/Conve,2014-04-16,2014-04-21,,0,,,,,Risk of Recidivism,9,High,2013-11-09,Risk of Violence,5,Medium,2013-11-09,2014-04-16,2014-04-21,4,132,158,1,1\r\n7076,michelle briceno,michelle,briceno,2013-12-10,Female,1988-11-23,27,25 - 45,Caucasian,0,2,0,0,0,0,2013-12-10 04:28:18,2013-12-10 01:02:58,13022839MM10A,2013-12-10,,0,M,Driving Under The Influence,1,14009506TC10A,(M2),0,2014-03-09,DWLS Canceled Disqul 1st Off,2014-03-09,2014-03-10,,0,,,,,Risk of Recidivism,2,Low,2013-12-10,Risk of Violence,2,Low,2013-12-10,2014-03-09,2014-03-10,0,0,89,1,1\r\n7077,onel simon,onel,simon,2013-12-07,Male,1984-06-19,31,25 - 45,African-American,0,9,0,0,8,-1,2013-12-06 08:07:21,2013-12-07 07:35:32,13016921CF10A,2013-12-06,,1,F,Driving While License Revoked,1,14000671CF10A,(M1),1,2014-01-14,Possess Cannabis/20 Grams Or Less,2014-01-15,2014-05-12,,0,,,,,Risk of Recidivism,9,High,2013-12-07,Risk of Violence,5,Medium,2013-12-07,2015-11-21,2015-11-24,8,0,38,1,1\r\n7078,clarence paulk,clarence,paulk,2013-03-05,Male,1954-07-23,61,Greater than 45,African-American,0,8,0,0,29,-50,2013-01-14 09:10:56,2013-02-02 07:32:22,13000644CF10A,2013-01-14,,50,F,Grand Theft in the 3rd Degree,1,13013877CF10A,(F3),,2013-10-03,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,8,High,2013-03-05,Risk of Violence,5,Medium,2013-03-05,2013-06-01,2013-06-01,29,0,88,0,1\r\n7079,travis bradford,travis,bradford,2013-04-08,Male,1990-04-26,25,25 - 45,Caucasian,0,7,0,1,3,-1,2013-04-07 05:01:37,2013-04-15 02:07:02,13004974CF10A,2013-04-06,,2,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-08,Risk of Violence,5,Medium,2013-04-08,2013-04-07,2013-04-15,3,7,1089,0,0\r\n7080,miriam torres,miriam,torres,2013-08-01,Female,1963-06-03,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-07-31 09:14:55,2013-08-01 07:36:57,13014466MM10A,2013-07-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2013-07-31,2013-08-01,0,0,974,0,0\r\n7082,anthony martinez,anthony,martinez,2013-01-19,Male,1980-11-01,35,25 - 45,Hispanic,0,7,0,0,0,-1,2013-01-18 07:51:52,2013-01-19 07:34:56,13000885CF10A,2013-01-18,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-19,Risk of Violence,4,Low,2013-01-19,2013-01-18,2013-01-19,0,0,1168,0,0\r\n7084,amanda blankenship,amanda,blankenship,2013-07-22,Female,1991-08-24,24,Less than 25,Caucasian,0,5,0,0,0,-3,2013-07-19 07:41:18,2013-07-20 01:59:43,13010141CF10A,2013-07-19,,3,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-22,Risk of Violence,2,Low,2013-07-22,2014-01-09,2014-02-04,0,0,171,0,0\r\n7086,tony samuels,tony,samuels,2013-07-31,Male,1965-10-18,50,Greater than 45,African-American,1,10,0,0,13,160,2014-01-07 01:19:09,2014-03-08 02:07:14,12016358MM10A,2012-08-09,,356,M,Battery,1,15009704CF10A,(F3),,2015-07-28,Poss Pyrrolidinovalerophenone,,,,0,,,,,Risk of Recidivism,10,High,2013-07-31,Risk of Violence,5,Medium,2013-07-31,2014-01-07,2014-03-08,13,0,160,0,1\r\n7087,walter pharicien,walter,pharicien,2013-09-20,Male,1959-02-18,57,Greater than 45,Other,0,1,0,0,0,0,2013-09-20 12:53:41,2013-09-27 09:19:14,13013238CF10A,2013-09-19,,1,F,Aggravated Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-09-20,2013-09-27,0,7,924,0,0\r\n7092,james fields,james,fields,2013-09-07,Male,1978-03-19,38,25 - 45,Caucasian,0,1,0,0,2,-1,2013-09-06 08:02:17,2013-09-07 08:08:36,13012624CF10A,,2013-09-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-07,Risk of Violence,1,Low,2013-09-07,2013-09-06,2013-09-07,2,0,937,0,0\r\n7093,davel mcdonald,davel,mcdonald,2013-10-07,Male,1993-05-19,22,Less than 25,African-American,0,3,0,0,1,-66,2013-08-02 03:44:18,2013-10-04 08:35:25,13010914CF10A,2013-08-01,,67,F,Robbery W/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-07,Risk of Violence,5,Medium,2013-10-07,2013-08-02,2013-10-04,1,0,907,0,0\r\n7095,ronald baquedano-rivera,ronald,baquedano-rivera,2013-03-04,Male,1989-12-09,26,25 - 45,Hispanic,0,5,0,0,1,-2,2013-03-02 05:50:22,2013-03-03 09:01:18,13004278MM10A,2013-03-02,,2,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-04,Risk of Violence,3,Low,2013-03-04,2013-03-02,2013-03-03,1,0,1124,0,0\r\n7097,darryl weaver,darryl,weaver,2013-10-25,Male,1990-11-03,25,25 - 45,African-American,2,10,3,0,8,-230,2013-03-09 01:07:58,2013-09-10 10:03:00,12010496CF10A,,2013-09-09,46,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-10-25,Risk of Violence,9,High,2013-10-25,2015-04-07,2015-05-18,8,0,529,0,0\r\n7098,john victor,john,victor,2014-10-22,Male,1995-12-03,20,Less than 25,African-American,0,7,0,0,3,-1,2014-10-21 01:25:52,2014-11-11 03:58:25,14014184CF10A,2014-10-21,,1,F,Burglary Unoccupied Dwelling,1,14015839CF10A,(M2),0,2014-11-25,Prowling/Loitering,2014-11-25,2015-07-17,,0,,,,,Risk of Recidivism,7,Medium,2014-10-22,Risk of Violence,10,High,2014-10-22,2014-11-25,2015-07-17,3,20,34,1,1\r\n7099,dathmus lane,dathmus,lane,2013-10-14,Male,1982-01-03,34,25 - 45,African-American,0,2,0,0,2,-1,2013-10-13 07:34:35,2013-10-14 10:04:31,13014341CF10A,2013-10-13,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-14,Risk of Violence,1,Low,2013-10-14,2013-10-13,2013-10-14,2,0,900,0,0\r\n7100,tyrone bliss,tyrone,bliss,2013-10-01,Male,1990-05-02,25,25 - 45,African-American,0,9,0,0,11,-1,2013-09-30 11:08:21,2013-10-30 01:41:59,13018604MM10A,2013-09-30,,1,M,Battery,1,14004616MM10A,(M1),0,2014-03-17,Possess Cannabis/20 Grams Or Less,2014-03-17,2014-04-07,,0,,,,,Risk of Recidivism,9,High,2013-10-01,Risk of Violence,7,Medium,2013-10-01,2014-03-17,2014-04-07,11,29,167,1,1\r\n7101,danyelle lampert,danyelle,lampert,2013-12-14,Female,1991-08-12,24,Less than 25,Caucasian,0,5,0,0,0,-1,2013-12-13 03:20:31,2013-12-14 01:25:18,13017257CF10A,2013-12-13,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-14,Risk of Violence,4,Low,2013-12-14,2014-07-05,2014-07-16,0,0,203,0,0\r\n7103,luis miranda,luis,miranda,2013-07-16,Male,1991-12-20,24,Less than 25,Other,0,5,0,0,4,-40,2013-06-06 08:04:10,2013-07-16 11:39:42,13008187CF10A,2013-06-06,,40,F,Shoot Into Vehicle,1,16003113CF10A,(F1),,2016-03-12,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-16,Risk of Violence,7,Medium,2013-07-16,2013-06-06,2013-07-16,4,0,970,1,0\r\n7104,daniel merico,daniel,merico,2013-01-24,Male,1967-01-28,49,Greater than 45,Caucasian,0,6,0,0,4,0,2013-01-24 02:26:10,2013-02-10 04:25:50,13001695MO10A,2013-01-23,,1,M,Battery Spouse Or Girlfriend,1,13013250MM10A,(M2),0,2013-07-12,Disorderly Intoxication,2013-07-12,2013-07-15,,1,13021680MM10A,(M1),2013-11-18,Battery,Risk of Recidivism,6,Medium,2013-01-24,Risk of Violence,4,Low,2013-01-24,2013-07-12,2013-07-15,4,17,169,1,1\r\n7105,kendrick daise,kendrick,daise,2014-08-05,Male,1988-08-12,27,25 - 45,African-American,0,10,0,0,15,-1,2014-08-04 05:54:34,2014-09-03 09:09:40,14010610CF10A,2014-08-04,,1,F,Aggravated Battery / Pregnant,1,15013108CF10A,(F3),1,2015-10-09,Possession of Cocaine,2015-10-10,2015-10-10,,0,,,,,Risk of Recidivism,10,High,2014-08-05,Risk of Violence,5,Medium,2014-08-05,2014-08-04,2014-09-03,15,29,430,1,1\r\n7107,dustin yearby,dustin,yearby,2013-10-24,Male,1987-06-26,28,25 - 45,African-American,0,5,0,0,10,-20,2013-10-04 04:47:46,2013-10-24 10:24:03,13013940CF10A,2013-10-04,,20,F,Possession of Cocaine,1,13017065CF10A,(F3),0,2013-12-10,Possession of Cocaine,2013-12-10,2015-09-05,,0,,,,,Risk of Recidivism,5,Medium,2013-10-24,Risk of Violence,3,Low,2013-10-24,2013-12-10,2015-09-05,10,0,47,1,1\r\n7108,fanel eldine,fanel,eldine,2014-08-04,Male,1983-03-12,33,25 - 45,African-American,0,5,0,0,15,,,,12008851MM10A,,2012-07-30,735,M,arrest case no charge,1,14002563MM20A,(M1),,2014-08-23,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,5,Medium,2014-08-04,Risk of Violence,2,Low,2014-08-04,,,15,0,19,1,1\r\n7109,roberto puertas,roberto,puertas,2013-02-05,Male,1961-01-09,55,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-02-04 07:14:30,2013-02-05 07:13:24,13001744CF10A,2013-02-04,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-05,Risk of Violence,1,Low,2013-02-05,2013-02-04,2013-02-05,0,0,1151,0,0\r\n7110,joseph flynn,joseph,flynn,2013-10-04,Male,1990-08-19,25,25 - 45,Caucasian,0,4,0,1,1,,,,11020217CF10A,2011-12-12,,662,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-04,Risk of Violence,6,Medium,2013-10-04,,,1,0,910,0,0\r\n7111,todd gologorsky,todd,gologorsky,2013-02-12,Male,1969-03-03,47,Greater than 45,Caucasian,0,3,0,0,3,-1,2013-02-11 11:20:09,2013-02-24 07:36:15,13003051MM10A,2013-02-11,,1,M,Battery,1,13090520TC30A,(M2),,2013-09-09,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-12,Risk of Violence,2,Low,2013-02-12,2013-02-11,2013-02-24,3,12,209,1,1\r\n7112,nathaniel owens,nathaniel,owens,2014-08-17,Male,1960-07-24,55,Greater than 45,African-American,0,7,0,0,10,-1,2014-08-16 02:53:35,2014-08-20 09:38:09,14012374MM10A,2014-08-16,,1,M,Battery,1,14012369CF10A,(F3),0,2014-09-11,Felony Petit Theft,2014-09-11,2015-02-26,,1,15004156CF10A,(F3),2015-03-29,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2014-08-17,Risk of Violence,4,Low,2014-08-17,2014-09-11,2015-02-26,10,3,25,1,1\r\n7114,justin slater,justin,slater,2013-01-11,Male,1993-04-22,22,Less than 25,African-American,0,3,0,0,0,-1,2013-01-10 02:17:31,2013-01-11 11:09:25,13000468CF10A,2013-01-10,,1,F,Possession Burglary Tools,1,13004109CF10A,(F3),0,2013-03-21,Grand Theft in the 3rd Degree,2013-03-21,2013-05-15,,0,,,,,Risk of Recidivism,3,Low,2013-01-11,Risk of Violence,5,Medium,2013-01-11,2013-03-21,2013-05-15,0,0,69,1,1\r\n7116,carl schurman,carl,schurman,2013-08-01,Male,1983-08-31,32,25 - 45,African-American,0,8,0,0,9,-1,2013-07-31 06:29:02,2013-11-20 04:58:00,13010683CF10A,2013-07-31,,1,F,Burglary Dwelling Occupied,1,16014602TC30A,(M2),,2016-03-03,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,8,High,2013-08-01,Risk of Violence,8,High,2013-08-01,2013-07-31,2013-11-20,9,111,945,1,0\r\n7117,charles miller,charles,miller,2013-01-19,Male,1960-08-06,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-18 06:53:17,2013-01-19 01:06:33,13000888CF10A,2013-01-18,,1,F,Driving While License Revoked,1,16007678TC10A,(M2),,2016-02-09,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-19,Risk of Violence,1,Low,2013-01-19,2013-01-18,2013-01-19,0,0,1116,1,0\r\n7119,jeramiah baxter,jeramiah,baxter,2013-08-15,Male,1992-05-26,23,Less than 25,African-American,0,5,0,0,3,0,2013-08-15 01:53:22,2013-08-21 08:27:53,13015466MM10A,2013-08-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-15,Risk of Violence,6,Medium,2013-08-15,2013-08-15,2013-08-21,3,6,960,0,0\r\n7120,brian wheeler,brian,wheeler,2013-02-05,Male,1962-02-10,54,Greater than 45,Caucasian,0,4,0,0,2,-29,2013-01-07 01:25:56,2013-02-05 11:05:26,13000241CF10A,,2013-01-07,29,F,arrest case no charge,1,13014961CF10A,(F3),1,2013-10-25,Burglary Conveyance Unoccup,2013-10-26,2013-12-05,,1,15012924CF10A,(F3),2015-10-05,Aggravated Assault W/Dead Weap,Risk of Recidivism,4,Low,2013-02-05,Risk of Violence,2,Low,2013-02-05,2013-10-26,2013-12-05,2,0,262,1,1\r\n7121,samih debbik,samih,debbik,2013-04-04,Male,1975-06-07,40,25 - 45,Asian,0,1,0,0,0,-1,2013-04-03 04:56:38,2013-04-23 03:20:28,13004784CF10A,2013-04-03,,1,F,Delivery Of Drug Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-04,Risk of Violence,1,Low,2013-04-04,2013-04-03,2013-04-23,0,19,1093,0,0\r\n7123,shane coombs,shane,coombs,2014-01-16,Male,1988-06-03,27,25 - 45,African-American,0,2,0,0,0,-1,2014-01-15 06:44:59,2014-01-16 08:03:23,14000753MM10A,2014-01-15,,1,M,Battery,1,15008080CF10A,(F2),120,2015-04-10,Aggravated Battery / Pregnant,2015-08-08,2015-08-09,,1,15008080CF10A,(F2),2015-04-10,Aggravated Battery / Pregnant,Risk of Recidivism,2,Low,2014-01-16,Risk of Violence,3,Low,2014-01-16,2015-10-02,2015-10-10,0,0,449,1,1\r\n7124,john masselli,john,masselli,2013-06-28,Male,1979-04-28,36,25 - 45,Caucasian,0,1,0,0,4,85,2013-09-21 12:09:15,2013-10-03 06:25:33,13007937MM10A,2013-02-22,,126,M,Theft,1,13014099CF10A,(F3),0,2013-10-08,Corrupt Public Servant,2013-10-08,2014-05-22,,1,13014099CF10A,(F3),2013-10-08,Battery on Law Enforc Officer,Risk of Recidivism,1,Low,2013-06-28,Risk of Violence,1,Low,2013-06-28,2013-09-21,2013-10-03,4,0,85,0,1\r\n7125,erika isaac,erika,isaac,2013-03-18,Female,1986-06-03,29,25 - 45,African-American,0,7,0,0,5,0,2013-03-18 02:41:56,2013-03-19 07:45:36,13003935CF10A,2013-03-17,,1,F,Felony Battery (Dom Strang),1,16002633CF10A,(M1),0,2016-03-01,,2016-03-01,2016-03-02,,0,,,,,Risk of Recidivism,7,Medium,2013-03-18,Risk of Violence,3,Low,2013-03-18,2016-03-01,2016-03-02,5,1,1079,1,0\r\n7126,marilyn menendez,marilyn,menendez,2014-03-30,Female,1971-04-15,45,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-29 09:57:52,2014-03-30 08:36:23,14005437MM10A,2014-03-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-30,Risk of Violence,1,Low,2014-03-30,2014-03-29,2014-03-30,0,0,733,0,0\r\n7127,larry dieuveut,larry,dieuveut,2013-05-21,Male,1991-02-27,25,25 - 45,Other,0,6,0,0,2,-1,2013-05-20 03:24:37,2013-07-23 09:26:20,13009725MM10A,2013-05-20,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-21,Risk of Violence,6,Medium,2013-05-21,2013-05-20,2013-07-23,2,63,1046,0,0\r\n7130,daniel maiani,daniel,maiani,2013-11-12,Male,1975-12-07,40,25 - 45,Caucasian,0,3,0,0,4,-1,2013-11-11 01:20:20,2013-12-14 05:53:08,13015675CF10A,2013-11-11,,1,F,Tamper With Witness/Victim/CI,1,15002142MM10A,(M1),0,2015-02-21,Battery,2015-02-21,2015-02-22,,1,15002142MM10A,(M1),2015-02-21,Battery,Risk of Recidivism,3,Low,2013-11-12,Risk of Violence,5,Medium,2013-11-12,2015-02-21,2015-02-22,4,32,466,1,1\r\n7131,joel curtis,joel,curtis,2013-08-25,Male,1977-11-27,38,25 - 45,African-American,0,4,0,0,7,-1,2013-08-24 08:32:05,2013-08-31 06:13:17,13006858CF10A,,2013-08-24,1,F,arrest case no charge,1,14011159CF10A,(F3),81,2014-06-16,Child Abuse,2014-09-05,2014-09-06,,1,14011159CF10A,(F3),2014-06-16,Child Abuse,Risk of Recidivism,4,Low,2013-08-25,Risk of Violence,4,Low,2013-08-25,2013-11-05,2013-11-20,7,6,72,0,1\r\n7135,robert allegretti,robert,allegretti,2013-07-10,Male,1958-07-07,57,Greater than 45,Caucasian,0,4,0,0,3,-176,2013-01-15 11:20:48,2013-02-15 09:33:26,13000708CF10A,2013-01-15,,176,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-10,Risk of Violence,2,Low,2013-07-10,2013-01-15,2013-02-15,3,0,996,0,0\r\n7136,lashaver willis,lashaver,willis,2014-06-24,Male,1989-05-11,26,25 - 45,African-American,0,10,0,0,3,0,2014-06-24 01:15:54,2014-07-07 08:48:40,14008695CF10A,2014-06-24,,0,F,Burglary Unoccupied Dwelling,1,14011074CF10A,(F3),0,2014-08-13,Aggravated Assault W/Dead Weap,2014-08-13,2014-09-11,,1,14011074CF10A,(F3),2014-08-13,Aggravated Assault W/Dead Weap,Risk of Recidivism,10,High,2014-06-24,Risk of Violence,8,High,2014-06-24,2014-08-13,2014-09-11,3,13,50,1,1\r\n7139,iffanise fleurinord,iffanise,fleurinord,2013-06-19,Female,1978-07-15,37,25 - 45,African-American,0,1,0,0,0,-1,2013-06-18 04:05:52,2013-06-19 10:46:07,13008618CF10A,2013-06-18,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-19,Risk of Violence,1,Low,2013-06-19,2013-06-18,2013-06-19,0,0,1017,0,0\r\n7140,debrcca ridges,debrcca,ridges,2014-09-11,Female,1974-01-20,42,25 - 45,African-American,0,6,0,0,0,,,,,,,,M,,1,15010213MM10A,(M2),0,2015-09-28,Disorderly Intoxication,2015-09-28,2015-09-29,,0,,,,,Risk of Recidivism,6,Medium,2014-09-11,Risk of Violence,2,Low,2014-09-11,2015-09-28,2015-09-29,0,0,382,1,1\r\n7141,edgar puglia,edgar,puglia,2014-03-19,Male,1975-03-25,41,25 - 45,Caucasian,0,1,0,0,1,-1,2014-03-18 09:24:52,2014-03-19 10:49:59,14003804CF10A,2014-03-18,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-19,Risk of Violence,1,Low,2014-03-19,2014-03-18,2014-03-19,1,0,744,0,0\r\n7142,ruth pichonot,ruth,pichonot,2013-11-22,Female,1982-05-17,33,25 - 45,Other,0,2,0,0,0,-1,2013-11-21 10:18:43,2013-11-22 03:53:50,13016164CF10A,2013-11-21,,1,F,Poss Unlaw Issue Driver Licenc,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-22,Risk of Violence,1,Low,2013-11-22,2015-01-11,2015-03-07,0,0,415,0,0\r\n7143,emmet sands,emmet,sands,2013-02-07,Male,1959-03-24,57,Greater than 45,African-American,0,1,0,0,1,-1,2013-02-06 04:49:40,2013-02-07 09:30:56,13001120CF10A,,2013-02-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-07,Risk of Violence,1,Low,2013-02-07,2013-02-06,2013-02-07,1,0,1149,0,0\r\n7144,james capers,james,capers,2013-02-09,Male,1982-02-08,34,25 - 45,African-American,0,9,0,0,3,-1,2013-02-08 07:06:22,2013-02-09 08:16:30,10047214TC10A,,2013-02-08,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-09,Risk of Violence,7,Medium,2013-02-09,2016-01-12,2016-01-13,3,0,1067,0,0\r\n7145,stanley mccray,stanley,mccray,2013-05-25,Male,1986-07-09,29,25 - 45,African-American,0,4,0,0,1,-1,2013-05-24 04:41:00,2013-05-25 07:37:19,13007426CF10A,2013-05-24,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14011594MM10A,(M1),,2014-04-27,Battery,,,,1,14011594MM10A,(M1),2014-04-27,Battery,Risk of Recidivism,4,Low,2013-05-25,Risk of Violence,5,Medium,2013-05-25,2013-05-24,2013-05-25,1,0,337,1,1\r\n7148,james morales,james,morales,2013-01-28,Male,1970-10-16,45,Greater than 45,Hispanic,0,7,0,0,8,0,2013-01-28 01:23:09,2013-01-29 04:24:47,13001375CF10A,2013-01-27,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-28,Risk of Violence,5,Medium,2013-01-28,2013-01-28,2013-01-29,8,1,1159,0,0\r\n7149,joshua morla,joshua,morla,2013-01-25,Male,1993-06-04,22,Less than 25,Caucasian,0,4,0,0,1,-8,2013-01-17 01:03:08,2013-01-25 10:04:05,13000789CF10A,2013-01-16,,9,F,Aggravated Assault w/Firearm,1,15011185TC40A,(M2),,2015-02-16,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-25,Risk of Violence,5,Medium,2013-01-25,2013-05-31,2013-06-11,1,0,126,0,0\r\n7150,alicia valentine,alicia,valentine,2013-05-28,Female,1994-01-14,22,Less than 25,African-American,0,8,0,0,0,-1,2013-05-27 06:02:36,2013-05-28 03:12:25,13010166MM10A,2013-05-27,,1,M,Possess Cannabis/20 Grams Or Less,1,14051721TC30A,(M2),83,2014-06-11,Driving License Suspended,2014-09-02,2014-09-03,,0,,,,,Risk of Recidivism,8,High,2013-05-28,Risk of Violence,9,High,2013-05-28,2015-03-30,2015-07-17,0,0,379,1,1\r\n7151,tracey givens,tracey,givens,2013-11-06,Male,1973-08-28,42,25 - 45,African-American,0,9,1,0,5,186,2014-05-11 08:08:35,2014-05-11 08:14:29,10009916CF10A,,2013-04-18,202,F,arrest case no charge,1,14007731MM10A,(M1),0,2014-05-11,Resist/Obstruct W/O Violence,2014-05-11,2014-05-11,,0,,,,,Risk of Recidivism,9,High,2013-11-06,Risk of Violence,5,Medium,2013-11-06,2014-05-11,2014-05-11,5,0,186,0,1\r\n7153,jalandon love,jalandon,love,2014-02-15,Male,1994-10-08,21,Less than 25,African-American,0,4,0,0,0,-1,2014-02-14 08:57:29,2014-03-31 09:03:31,14002622MM10A,2014-02-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-15,Risk of Violence,6,Medium,2014-02-15,2014-02-14,2014-03-31,0,44,776,0,0\r\n7154,james cantwell,james,cantwell,2013-02-03,Male,1959-11-05,56,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-02-02 06:39:31,2013-02-03 07:26:51,13002383MM10A,2013-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-03,Risk of Violence,1,Low,2013-02-03,2013-02-02,2013-02-03,1,0,1153,0,0\r\n7156,derek joy,derek,joy,2013-01-04,Male,1967-11-17,48,Greater than 45,African-American,0,3,0,0,4,-1,2013-01-03 07:50:37,2013-01-04 06:15:54,13000134CF10A,2013-01-03,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-04,Risk of Violence,3,Low,2013-01-04,2013-01-03,2013-01-04,4,0,1183,0,0\r\n7157,albeiro munoz,albeiro,munoz,2014-03-09,Male,1988-07-10,27,25 - 45,Hispanic,0,2,0,0,1,-1,2014-03-08 05:10:54,2014-03-09 10:11:30,14004039MM10A,2014-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-09,Risk of Violence,2,Low,2014-03-09,2014-03-08,2014-03-09,1,0,754,0,0\r\n7158,steven addis,steven,addis,2013-11-20,Male,1988-12-24,27,25 - 45,Caucasian,0,6,0,0,2,-1,2013-11-19 11:49:54,2013-11-26 09:27:46,13016061CF10A,2013-11-19,,1,F,Burglary Dwelling Occupied,1,14010471TC20A,(M2),,2014-02-05,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-20,Risk of Violence,3,Low,2013-11-20,2013-11-19,2013-11-26,2,6,77,1,1\r\n7159,matthew rodriguez,matthew,rodriguez,2013-09-24,Male,1981-12-28,34,25 - 45,Hispanic,0,2,0,0,1,-1,2013-09-23 08:44:05,2013-09-27 09:07:34,13013387CF10A,2013-09-23,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-24,Risk of Violence,2,Low,2013-09-24,2014-09-17,2014-11-07,1,3,358,0,0\r\n7160,jamie stewart,jamie,stewart,2014-04-20,Male,1993-02-15,23,Less than 25,African-American,0,6,0,1,5,0,2014-04-20 01:09:41,2014-04-21 03:27:53,14005481CF10A,2014-04-19,,1,F,False Motor Veh Insurance Card,1,14016711MM10A,(M1),0,2014-11-23,Possess Cannabis/20 Grams Or Less,2014-11-23,2014-11-23,,0,,,,,Risk of Recidivism,6,Medium,2014-04-20,Risk of Violence,5,Medium,2014-04-20,2014-11-23,2014-11-23,5,1,217,0,1\r\n7162,audray george,audray,george,2013-11-30,Male,1968-08-09,47,Greater than 45,African-American,0,5,0,0,3,0,2013-11-30 03:21:40,2013-12-11 09:01:07,13014782CF10A,,2013-11-30,0,F,arrest case no charge,1,14000256CF10A,(F3),,2014-01-06,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-30,Risk of Violence,9,High,2013-11-30,2013-11-30,2013-12-11,3,11,37,1,1\r\n7163,jason hicks,jason,hicks,2013-01-27,Male,1982-10-04,33,25 - 45,African-American,0,3,1,0,6,-1,2013-01-26 11:35:43,2013-01-28 08:41:00,13003947TC10A,,2013-01-26,1,M,arrest case no charge,1,14009256MM10A,(M1),0,2014-06-11,Battery,2014-06-11,2014-06-13,,1,14009256MM10A,(M1),2014-06-11,Battery,Risk of Recidivism,3,Low,2013-01-27,Risk of Violence,3,Low,2013-01-27,2014-06-11,2014-06-13,6,1,500,1,1\r\n7164,doriano dalessandro,doriano,dalessandro,2013-03-30,Male,1957-07-26,58,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-03-29 11:57:12,2013-03-31 03:36:36,04000079CF10A,2004-01-01,,3376,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-30,Risk of Violence,1,Low,2013-03-30,2013-03-29,2013-03-31,1,1,1098,0,0\r\n7166,brandy jones,brandy,jones,2013-07-22,Female,1982-07-15,33,25 - 45,African-American,0,5,0,0,1,-3,2013-07-19 06:23:11,2013-07-20 01:49:29,13010176CF10A,2013-07-19,,3,F,Fail To Redeliv Hire/Leas Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-22,Risk of Violence,2,Low,2013-07-22,2013-07-19,2013-07-20,1,0,984,0,0\r\n7167,sandra victorremedor,sandra,victorremedor,2013-01-28,Female,1975-08-16,40,25 - 45,African-American,0,5,0,0,2,-1,2013-01-27 08:40:41,2013-05-08 05:42:39,13001926MM10A,2013-01-27,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-05-08,2,100,1159,0,0\r\n7170,tyler ashton,tyler,ashton,2013-02-19,Male,1994-03-16,22,Less than 25,Caucasian,0,5,0,0,0,0,2013-02-19 03:51:56,2013-02-20 03:44:09,13002518CF10A,2013-02-19,,0,F,Possession of Cocaine,1,15011112CF10A,(F3),,2015-07-24,False Ownership Info/Pawn Item,,,,1,15010547CF10A,(F3),2015-08-15,Attempted Robbery  No Weapon,Risk of Recidivism,5,Medium,2013-02-19,Risk of Violence,6,Medium,2013-02-19,2013-02-19,2013-02-20,0,1,885,1,0\r\n7171,brian pearson,brian,pearson,2013-03-15,Male,1976-09-18,39,25 - 45,Caucasian,0,3,0,0,2,-1,2013-03-14 05:07:03,2013-03-22 09:45:55,13003382CF10A,,2013-03-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-15,Risk of Violence,1,Low,2013-03-15,2014-07-01,2014-07-16,2,7,473,0,0\r\n7173,ketchmarken sainthilaire,ketchmarken,sainthilaire,2014-03-31,Male,1986-01-05,30,25 - 45,Other,0,8,0,0,2,,,,09001262CF10A,2009-01-21,,1895,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-31,Risk of Violence,4,Low,2014-03-31,,,2,0,732,0,0\r\n7175,annquinette rucker,annquinette,rucker,2013-05-29,Female,1992-05-22,23,Less than 25,African-American,0,8,0,0,3,-37,2013-04-22 09:47:57,2013-05-29 10:09:04,13005732CF10A,2013-04-22,,37,F,Burglary Conveyance Unoccup,1,16002624CF10A,(F3),0,2016-03-01,,2016-03-01,2016-03-02,,0,,,,,Risk of Recidivism,8,High,2013-05-29,Risk of Violence,7,Medium,2013-05-29,2013-12-02,2014-02-14,3,0,187,0,0\r\n7176,randy pearson,randy,pearson,2013-05-27,Male,1981-02-06,35,25 - 45,Caucasian,0,1,0,1,1,0,2013-05-27 12:28:20,2013-05-27 12:40:41,13007513CF10A,2013-05-26,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-05-27,2013-05-27,1,0,1040,0,0\r\n7177,luis caro,luis,caro,2013-05-07,Male,1994-02-10,22,Less than 25,Hispanic,0,2,0,0,0,-1,2013-05-06 07:58:25,2013-05-07 07:41:29,13019327TC10A,2013-05-06,,1,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-07,Risk of Violence,5,Medium,2013-05-07,2013-05-06,2013-05-07,0,0,1060,0,0\r\n7178,fitzroy ogilvie,fitzroy,ogilvie,2014-02-26,Male,1972-07-23,43,25 - 45,African-American,0,6,0,0,7,-1,2014-02-25 05:39:03,2014-02-27 02:26:46,14002678CF10A,2014-02-25,,1,F,Corrupt Public Servant,1,14038124TC40A,(M2),19,2014-05-25,Driving License Suspended,2014-06-13,2014-07-11,,0,,,,,Risk of Recidivism,6,Medium,2014-02-26,Risk of Violence,7,Medium,2014-02-26,2014-02-25,2014-02-27,7,1,88,1,1\r\n7180,alex esteves,alex,esteves,2013-08-10,Male,1979-01-12,37,25 - 45,Hispanic,0,4,0,0,4,-1,2013-08-09 11:34:29,2013-08-10 06:58:49,13011212CF10A,2013-08-09,,1,M,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-10,Risk of Violence,3,Low,2013-08-10,2013-08-09,2013-08-10,4,0,965,0,0\r\n7183,charles dean,charles,dean,2014-02-12,Male,1977-10-10,38,25 - 45,African-American,1,8,0,4,14,,,,07012379CF10A,,2011-07-25,933,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-12,Risk of Violence,4,Low,2014-02-12,,,14,0,779,0,0\r\n7184,christian stubbs,christian,stubbs,2013-04-26,Male,1990-01-15,26,25 - 45,African-American,0,8,0,0,2,-1,2013-04-25 11:49:50,2013-04-26 07:29:12,13005937CF10A,2013-04-25,,1,F,Possession of Cocaine,1,13028305TC10A,(M2),36,2013-06-01,Driving License Suspended,2013-07-07,2013-07-19,,0,,,,,Risk of Recidivism,8,High,2013-04-26,Risk of Violence,8,High,2013-04-26,2015-04-01,2015-04-02,2,0,36,1,1\r\n7185,pablo martinez,pablo,martinez,2014-03-30,Male,1956-03-02,60,Greater than 45,Hispanic,0,4,0,0,0,-1,2014-03-29 08:36:56,2014-03-30 07:53:26,14004434CF10A,2014-03-29,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-30,Risk of Violence,1,Low,2014-03-30,2014-03-29,2014-03-30,0,0,733,0,0\r\n7186,lina scalisi,lina,scalisi,2014-01-23,Female,1977-01-28,39,25 - 45,Caucasian,0,4,0,0,1,-1,2014-01-22 01:55:59,2014-01-29 08:33:18,13017791CF10A,,2014-01-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-23,Risk of Violence,4,Low,2014-01-23,2014-01-22,2014-01-29,1,6,799,0,0\r\n7187,elonzo owens,elonzo,owens,2014-11-23,Male,1979-11-04,36,25 - 45,African-American,0,8,0,1,16,-1,2014-11-22 04:43:40,2014-11-23 07:36:56,14016664MM10A,2014-11-22,,1,M,Battery,1,16005325TC10A,(M1),0,2016-02-17,Opert With Susp DL 2nd Offens,2016-02-17,2016-02-18,,0,,,,,Risk of Recidivism,8,High,2014-11-23,Risk of Violence,3,Low,2014-11-23,2016-02-17,2016-02-18,16,0,451,1,1\r\n7188,jimmie harrold,jimmie,harrold,2013-05-30,Male,1990-07-11,25,25 - 45,African-American,0,4,0,0,1,,,,12018968MO10A,,2012-12-16,165,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-30,Risk of Violence,3,Low,2013-05-30,2015-06-04,2016-01-24,1,0,735,0,0\r\n7189,adam obrien,adam,obrien,2013-05-27,Male,1994-11-20,21,Less than 25,Caucasian,0,4,0,0,0,-1,2013-05-26 11:13:06,2013-05-27 09:52:19,13021594TC10A,2013-05-26,,1,M,Fail Register Vehicle,1,14000492CF10A,(M1),0,2014-01-11,Possess Cannabis/20 Grams Or Less,2014-01-11,2014-01-11,,0,,,,,Risk of Recidivism,4,Low,2013-05-27,Risk of Violence,7,Medium,2013-05-27,2014-01-11,2014-01-11,0,0,229,0,1\r\n7190,kimberly rodriguez,kimberly,rodriguez,2014-12-22,Female,1987-09-24,28,25 - 45,Hispanic,0,3,0,0,1,-1,2014-12-21 01:07:53,2014-12-22 01:48:08,14016879CF10A,2014-12-21,,1,F,Grand Theft in the 3rd Degree,1,15033203TC20A,(M2),,2015-01-12,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,3,Low,2014-12-22,Risk of Violence,3,Low,2014-12-22,2014-12-21,2014-12-22,1,0,21,1,1\r\n7192,ina youngbell,ina,youngbell,2013-04-19,Female,1945-10-24,70,Greater than 45,Other,0,1,0,0,0,-1,2013-04-18 08:51:08,2013-04-19 08:09:20,13005558CF10A,2013-04-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-19,Risk of Violence,1,Low,2013-04-19,2013-04-18,2013-04-19,0,0,1078,0,0\r\n7194,kadeem saddo,kadeem,saddo,2013-02-15,Male,1990-12-24,25,25 - 45,African-American,0,9,0,0,3,,,,12017179TC30A,,2012-05-15,276,M,arrest case no charge,1,14004640MM10A,(M1),,2014-03-14,Resist/Obstruct W/O Violence,,,,0,,,,,Risk of Recidivism,9,High,2013-02-15,Risk of Violence,5,Medium,2013-02-15,,,3,0,392,1,1\r\n7196,derrick jackson,derrick,jackson,2013-08-13,Male,1962-07-17,53,Greater than 45,African-American,0,2,0,0,6,-1,2013-08-12 09:25:09,2013-08-13 08:16:30,13009117CF10A,,2013-08-12,1,F,arrest case no charge,1,15004500MM40A,(M2),139,2015-10-30,Solicit ProstitutionViolation,2016-03-17,2016-03-18,,0,,,,,Risk of Recidivism,2,Low,2013-08-13,Risk of Violence,2,Low,2013-08-13,2016-03-17,2016-03-18,6,0,808,1,0\r\n7197,edgard rojas,edgard,rojas,2013-03-05,Male,1979-03-21,37,25 - 45,Caucasian,0,6,0,0,0,-5,2013-02-28 08:59:51,2013-03-01 08:05:40,13003067CF10A,2013-02-28,,5,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-05,Risk of Violence,3,Low,2013-03-05,2013-12-18,2014-01-08,0,0,288,0,0\r\n7198,dvraj chance,dvraj,chance,2014-01-08,Male,1994-09-15,21,Less than 25,African-American,0,6,0,0,1,-1,2014-01-07 03:45:13,2014-01-09 08:24:23,14000293CF10A,2014-01-07,,1,F,Grand Theft in the 3rd Degree,1,14003326MM40A,(M1),116,2014-08-01,Possess Cannabis/20 Grams Or Less,2014-11-25,2014-11-25,,0,,,,,Risk of Recidivism,6,Medium,2014-01-08,Risk of Violence,6,Medium,2014-01-08,2014-01-07,2014-01-09,1,1,205,1,1\r\n7199,justin bates,justin,bates,2013-10-28,Male,1988-01-07,28,25 - 45,African-American,0,6,0,0,1,-1,2013-10-27 07:38:34,2013-10-28 07:32:59,13015018CF10A,2013-10-27,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-28,Risk of Violence,4,Low,2013-10-28,2013-10-27,2013-10-28,1,0,886,0,0\r\n7200,johnny borden,johnny,borden,2013-02-20,Male,1994-06-27,21,Less than 25,African-American,0,6,0,0,1,-1,2013-02-19 10:55:43,2013-07-26 05:37:05,13002156CF10A,,2013-02-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-20,Risk of Violence,7,Medium,2013-02-20,2013-02-19,2013-07-26,1,156,1136,0,0\r\n7202,yarvis mcclemore,yarvis,mcclemore,2013-09-11,Male,1984-01-05,32,25 - 45,African-American,0,10,0,0,2,,,,09013778CF10A,,2010-05-20,1210,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-11,Risk of Violence,10,High,2013-09-11,2007-07-31,2009-02-13,2,0,933,0,0\r\n7203,paul fraser,paul,fraser,2013-05-01,Male,1959-09-15,56,Greater than 45,African-American,0,1,0,0,0,-1,2013-04-30 10:09:35,2013-05-06 09:12:18,13006284CF10A,2013-04-30,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2013-04-30,2013-05-06,0,5,1066,0,0\r\n7204,robert rall,robert,rall,2014-03-09,Male,1985-11-20,30,25 - 45,Caucasian,0,3,0,0,3,-1,2014-03-08 08:19:22,2014-03-09 10:12:02,14004020MM10A,2014-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-09,Risk of Violence,2,Low,2014-03-09,2014-03-08,2014-03-09,3,0,754,0,0\r\n7205,larry mckinney,larry,mckinney,2014-02-10,Male,1988-07-28,27,25 - 45,Caucasian,0,8,0,0,0,-1,2014-02-09 03:37:43,2014-03-28 10:24:28,14001826CF10A,2014-02-08,,2,F,Grand Theft in the 3rd Degree,1,15003139CF10A,(M1),0,2015-03-08,Unlaw Use False Name/Identity,2015-03-08,2015-09-03,,0,,,,,Risk of Recidivism,8,High,2014-02-10,Risk of Violence,5,Medium,2014-02-10,2014-12-03,2015-01-06,0,46,296,0,1\r\n7206,victor peralta,victor,peralta,2013-04-25,Male,1978-07-07,37,25 - 45,Hispanic,0,2,0,0,6,-1,2013-04-24 09:52:41,2013-04-25 10:18:27,13005870CF10A,2013-04-24,,1,F,Felony Driving While Lic Suspd,1,13018109MM10A,(M2),0,2013-09-10,Susp Drivers Lic 1st Offense,2013-09-10,2013-09-12,,0,,,,,Risk of Recidivism,2,Low,2013-04-25,Risk of Violence,2,Low,2013-04-25,2013-09-10,2013-09-12,6,0,138,1,1\r\n7210,ian ford,ian,ford,2013-02-02,Male,1988-08-07,27,25 - 45,African-American,0,8,0,0,1,-1,2013-02-01 03:25:36,2013-02-03 02:50:32,13001621CF10A,2013-02-01,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-02,Risk of Violence,9,High,2013-02-02,2015-12-30,2020-01-01,1,1,1061,0,0\r\n7211,troy holaway,troy,holaway,2013-10-31,Male,1974-12-03,41,25 - 45,African-American,0,7,0,1,7,0,2013-10-31 01:40:09,2013-11-01 09:24:26,13020561MM10A,2013-10-30,,1,M,Battery,1,14002548MM10A,(M1),0,2014-02-13,Viol Pretrial Release Dom Viol,2014-02-13,2014-02-21,,1,15006834CF10A,(F7),2015-05-25,Burglary Dwelling Assault/Batt,Risk of Recidivism,7,Medium,2013-10-31,Risk of Violence,3,Low,2013-10-31,2014-02-13,2014-02-21,7,1,105,1,1\r\n7214,shameka prince,shameka,prince,2014-10-10,Female,1986-02-28,30,25 - 45,African-American,0,3,0,0,7,-1,2014-10-09 04:56:58,2014-10-10 02:41:50,14014814MM10A,2014-10-09,,1,M,Battery,1,15006127TC30A,(M2),,2015-01-18,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2014-10-10,Risk of Violence,2,Low,2014-10-10,2014-10-09,2014-10-10,7,0,100,1,1\r\n7216,raymond mcclame,raymond,mcclame,2014-03-04,Male,1983-11-15,32,25 - 45,African-American,0,8,1,3,7,-1,2014-03-03 10:36:05,2014-03-04 09:24:02,14004519CF10A,2014-03-03,,1,F,Felony Battery w/Prior Convict,1,14014639MM10A,(M1),0,2014-10-05,Resist/Obstruct W/O Violence,2014-10-05,2014-10-06,,1,15012685CF10A,(F3),2015-09-07,Felony Battery w/Prior Convict,Risk of Recidivism,8,High,2014-03-04,Risk of Violence,6,Medium,2014-03-04,2014-04-17,2014-04-18,7,0,44,0,1\r\n7217,phillip marks,phillip,marks,2014-02-26,Male,1989-10-14,26,25 - 45,Caucasian,0,5,0,0,7,-126,2013-10-23 03:44:15,2013-10-24 05:09:27,13013931CF10A,,2013-10-23,126,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-26,Risk of Violence,3,Low,2014-02-26,2013-10-23,2013-10-24,7,0,765,0,0\r\n7218,james pierrelouis,james,pierrelouis,2013-02-20,Male,1984-09-25,31,25 - 45,African-American,0,4,0,0,0,,,,13003590MM10A,2013-02-20,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-20,Risk of Violence,2,Low,2013-02-20,,,0,0,1136,0,0\r\n7219,marlon mcdonald,marlon,mcdonald,2013-04-01,Male,1983-10-13,32,25 - 45,African-American,0,4,0,0,3,-1,2013-03-31 05:22:21,2013-04-01 02:19:01,13004632CF10A,2013-03-31,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-01,Risk of Violence,5,Medium,2013-04-01,2015-05-04,2015-06-25,3,0,763,0,0\r\n7222,christopher dampman,christopher,dampman,2014-10-30,Female,1982-04-04,34,25 - 45,Caucasian,0,5,0,0,5,-22,2014-10-08 07:29:13,2014-10-09 02:32:56,14013587CF10A,2014-10-08,,22,F,Possession Of Heroin,1,15007789CF10A,(F3),0,2015-06-16,Possession Of Heroin,2015-06-16,2015-08-19,,0,,,,,Risk of Recidivism,5,Medium,2014-10-30,Risk of Violence,1,Low,2014-10-30,2015-06-16,2015-08-19,5,0,229,1,1\r\n7223,howard hendricks,howard,hendricks,2013-05-13,Male,1970-03-10,46,Greater than 45,African-American,0,1,0,0,3,-1,2013-05-12 09:38:38,2013-05-14 08:29:03,13006803CF10A,2013-05-12,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-12,2013-05-14,3,1,1054,0,0\r\n7224,nicholas simmons,nicholas,simmons,2014-08-25,Male,1991-10-10,24,Less than 25,African-American,0,3,0,0,1,-1,2014-08-24 05:19:36,2014-08-25 01:11:27,14011556CF10A,2014-08-24,,1,F,Felony Battery (Dom Strang),1,15046966TC40A,(M2),,2015-08-10,Susp Drivers Lic 1st Offense,,,,1,15013304CF10A,(M1),2015-10-14,Battery,Risk of Recidivism,3,Low,2014-08-25,Risk of Violence,3,Low,2014-08-25,2016-02-15,2016-02-16,1,0,350,1,1\r\n7225,jeffery reynolds,jeffery,reynolds,2013-01-24,Male,1983-10-16,32,25 - 45,African-American,0,6,0,1,7,-1,2013-01-23 06:52:59,2013-03-15 07:45:42,13001110CF10A,2013-01-23,,1,F,Grand Theft in the 3rd Degree,1,14004594MM10A,(M1),,2014-01-31,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-24,Risk of Violence,7,Medium,2013-01-24,2013-11-02,2013-11-06,7,50,282,0,1\r\n7226,andre farman,andre,farman,2013-11-02,Male,1972-06-28,43,25 - 45,Caucasian,0,4,0,0,6,-1,2013-11-01 11:32:11,2013-11-11 08:08:19,13015251CF10A,2013-11-01,,1,F,Possession of Cocaine,1,13046641TC10A,(M2),0,2013-11-19,Susp Drivers Lic 1st Offense,2013-11-19,2014-03-06,,0,,,,,Risk of Recidivism,4,Low,2013-11-02,Risk of Violence,1,Low,2013-11-02,2013-11-19,2014-03-06,6,9,17,1,1\r\n7227,jorge gamboa,jorge,gamboa,2013-11-23,Male,1965-08-20,50,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-11-22 07:53:52,2013-12-04 05:08:47,13016241CF10A,2013-11-22,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-23,Risk of Violence,1,Low,2013-11-23,2013-11-22,2013-12-04,3,11,860,0,0\r\n7228,kenneth whittaker,kenneth,whittaker,2013-03-10,Male,1985-08-08,30,25 - 45,Caucasian,3,4,0,0,4,0,2013-03-10 04:13:28,2013-06-14 06:31:57,13003526CF10A,2013-03-10,,0,F,Aggrav Battery w/Deadly Weapon,1,14019915TC20A,(M2),,2014-03-15,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-10,Risk of Violence,4,Low,2013-03-10,2013-03-10,2013-06-14,4,96,370,1,1\r\n7231,wilfred conille,wilfred,conille,2013-05-24,Male,1979-04-05,37,25 - 45,African-American,0,7,0,0,3,-1,2013-05-23 12:12:34,2013-05-24 08:38:00,13009933MM10A,2013-05-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-24,Risk of Violence,3,Low,2013-05-24,2013-05-23,2013-05-24,3,0,1043,0,0\r\n7233,bobby neil,bobby,neil,2013-08-21,Male,1984-07-17,31,25 - 45,African-American,1,9,1,1,12,82,2013-11-11 11:42:46,2014-08-29 12:36:25,10014332CF10A,,2012-06-14,433,F,arrest case no charge,1,13015667CF10A,(M1),0,2013-11-11,Resist/Obstruct W/O Violence,2013-11-11,2014-08-29,,0,,,,,Risk of Recidivism,9,High,2013-08-21,Risk of Violence,7,Medium,2013-08-21,2013-11-11,2014-08-29,12,0,82,1,1\r\n7234,leonardo mendez,leonardo,mendez,2014-02-25,Male,1978-06-12,37,25 - 45,Hispanic,0,5,0,0,1,0,2014-02-25 04:14:02,2014-02-27 02:35:00,14002651CF10A,2014-02-25,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-25,Risk of Violence,1,Low,2014-02-25,2014-02-25,2014-02-27,1,2,766,0,0\r\n7235,joseph pegnatore,joseph,pegnatore,2013-05-15,Male,1994-11-05,21,Less than 25,Caucasian,0,6,0,0,1,-43,2013-04-02 12:51:03,2013-04-29 10:21:07,13004725CF10A,2013-04-02,,43,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-15,Risk of Violence,9,High,2013-05-15,2014-03-07,2014-03-16,1,0,296,0,0\r\n7236,miguel morales,miguel,morales,2013-08-05,Male,1940-09-29,75,Greater than 45,Hispanic,0,1,0,0,1,-112,2013-04-15 07:19:51,2013-07-26 08:45:38,13005467CF10A,,2013-04-16,111,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-05,Risk of Violence,1,Low,2013-08-05,2013-04-15,2013-07-26,1,0,970,0,0\r\n7237,john sarver,john,sarver,2014-01-10,Male,1975-04-28,40,25 - 45,Caucasian,0,4,0,0,3,0,2014-01-10 02:56:51,2014-02-19 11:13:51,14001418MU10A,2014-01-10,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-10,Risk of Violence,3,Low,2014-01-10,2014-01-10,2014-02-19,3,40,812,0,0\r\n7238,mildred jordan,mildred,jordan,2013-01-18,Female,1962-11-20,53,Greater than 45,Caucasian,0,1,0,0,0,0,2013-01-18 04:05:07,2013-01-18 08:05:05,13001298MM10A,2013-01-17,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2013-01-18,2013-01-18,0,0,1169,0,0\r\n7239,chevroy hamil,chevroy,hamil,2013-11-01,Male,1984-10-18,31,25 - 45,Other,0,2,0,0,6,-1,2013-10-31 02:20:46,2013-11-01 08:16:13,13020571MM10A,2013-10-30,,2,M,Battery,1,14042223TC30A,(M2),,2014-05-10,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-01,Risk of Violence,2,Low,2013-11-01,2013-10-31,2013-11-01,6,0,190,1,1\r\n7240,robert armstrong,robert,armstrong,2014-03-23,Male,1982-09-21,33,25 - 45,African-American,0,3,0,0,4,-1,2014-03-22 02:06:49,2014-03-23 09:32:47,14005014MM10A,2014-03-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-23,Risk of Violence,1,Low,2014-03-23,2014-03-22,2014-03-23,4,0,740,0,0\r\n7241,steven giuison,steven,giuison,2013-01-17,Male,1993-01-17,23,Less than 25,African-American,1,6,0,0,2,418,2014-03-11 11:30:42,2014-03-12 08:43:26,12000637CF10A,,2013-01-16,1,F,arrest case no charge,1,14010128CF10A,(F3),,2014-07-20,Possess w/I/Utter Forged Bills,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-17,Risk of Violence,5,Medium,2013-01-17,2014-03-11,2014-03-12,2,0,418,0,1\r\n7242,alexis carty,alexis,carty,2013-10-07,Female,1994-01-16,22,Less than 25,African-American,0,4,0,0,0,-1,2013-10-06 01:06:40,2013-10-07 08:44:19,13018987MM10A,2013-10-05,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,5,Medium,2013-10-07,2013-10-06,2013-10-07,0,0,907,0,0\r\n7243,ulysses brownlee,ulysses,brownlee,2013-08-01,Male,1989-02-01,27,25 - 45,African-American,0,3,0,0,2,-1,2013-07-31 11:28:48,2013-08-01 08:42:54,13014469MM10A,2013-07-31,,1,M,Battery,1,14002167MM40A,(M1),,2014-05-02,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-01,Risk of Violence,3,Low,2013-08-01,2013-07-31,2013-08-01,2,0,274,1,1\r\n7245,shantrill lanier,shantrill,lanier,2013-09-12,Male,1990-10-18,25,25 - 45,African-American,0,8,0,0,5,-1,2013-09-11 10:12:35,2013-09-15 03:38:22,13017315MM10A,2013-09-11,,1,M,Battery,1,13015774CF10A,(F2),0,2013-11-13,Burglary Unoccupied Dwelling,2013-11-13,2013-12-28,,1,15007310MM10A,(M1),2015-04-30,Battery,Risk of Recidivism,8,High,2013-09-12,Risk of Violence,6,Medium,2013-09-12,2013-11-13,2013-12-28,5,3,62,1,1\r\n7246,christopher vanburen,christopher,vanburen,2013-09-12,Male,1991-09-10,24,Less than 25,Caucasian,0,2,0,0,2,-1,2013-09-11 05:34:21,2013-09-12 08:29:00,13012869CF10A,,2013-09-11,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-12,Risk of Violence,4,Low,2013-09-12,2013-09-11,2013-09-12,2,0,932,0,0\r\n7247,anisha oliphant,anisha,oliphant,2013-08-25,Female,1991-08-12,24,Less than 25,African-American,0,5,0,0,2,0,2013-08-25 03:34:47,2013-08-28 05:35:14,13011982CF10A,2013-08-24,,1,F,Burglary Conveyance Occupied,1,14015973CF10A,(F3),1,2014-11-28,Uttering a Forged Instrument,2014-11-29,2014-11-30,,0,,,,,Risk of Recidivism,5,Medium,2013-08-25,Risk of Violence,4,Low,2013-08-25,2013-08-25,2013-08-28,2,3,460,1,1\r\n7249,windeline rosume,windeline,rosume,2013-02-09,Female,1989-09-11,26,25 - 45,African-American,0,7,0,0,1,0,2013-02-09 04:50:20,2013-02-11 05:17:53,13002015CF10A,,2013-02-09,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-09,Risk of Violence,6,Medium,2013-02-09,2013-02-09,2013-02-11,1,2,1147,0,0\r\n7250,james woodfork,james,woodfork,2013-02-28,Male,1959-11-11,56,Greater than 45,African-American,0,4,0,0,9,,,,12012959CF10A,,2012-09-03,178,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-28,Risk of Violence,2,Low,2013-02-28,1995-07-20,2000-11-01,9,0,1128,0,0\r\n7252,hattrina pierrepaul,hattrina,pierrepaul,2014-12-06,Female,1990-03-29,26,25 - 45,African-American,0,10,0,0,3,-1,2014-12-05 03:27:48,2014-12-06 01:41:18,14016196CF10A,2014-12-05,,1,F,Possession of Cocaine,1,15000284CF10A,(F3),,2015-01-06,Poss Pyrrolidinovalerophenone,,,,0,,,,,Risk of Recidivism,10,High,2014-12-06,Risk of Violence,8,High,2014-12-06,2016-03-03,2020-01-01,3,0,31,1,1\r\n7253,gasner ismael,gasner,ismael,2014-10-01,Male,1989-10-11,26,25 - 45,African-American,0,8,0,1,7,212,2015-05-01 04:37:11,2015-05-04 08:29:30,14002234MM20A,2014-07-29,,64,M,Resist/Obstruct W/O Violence,1,15010641CF10A,(F3),0,2015-08-18,Poss Pyrrolidinovalerophenone,2015-08-18,2015-09-23,,0,,,,,Risk of Recidivism,8,High,2014-10-01,Risk of Violence,7,Medium,2014-10-01,2015-05-01,2015-05-04,7,0,212,0,1\r\n7254,elijah fortin,elijah,fortin,2013-11-13,Male,1995-09-15,20,Less than 25,Caucasian,0,4,0,0,0,-1,2013-11-12 12:33:38,2013-11-14 02:05:37,13015728CF10A,2013-11-12,,1,F,Possession Burglary Tools,1,14016632CF10A,(F2),0,2014-12-15,\"S/M/D/P/W/I Sch 1a,1b,1d,2a,2b\",2014-12-15,2014-12-16,,0,,,,,Risk of Recidivism,4,Low,2013-11-13,Risk of Violence,7,Medium,2013-11-13,2014-12-15,2014-12-16,0,1,397,1,1\r\n7255,akil brown,akil,brown,2013-05-28,Male,1988-11-14,27,25 - 45,African-American,0,6,0,0,4,0,2013-05-28 12:37:53,2013-05-28 08:46:37,13010149MO10A,2013-05-27,,1,M,Disorderly Conduct,1,14002854MM10A,(M1),,2013-12-04,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-28,Risk of Violence,5,Medium,2013-05-28,2013-05-28,2013-05-28,4,0,190,1,1\r\n7257,tiberio rapisarda,tiberio,rapisarda,2013-12-15,Male,1991-08-21,24,Less than 25,Caucasian,0,3,0,0,1,-1,2013-12-14 08:26:15,2013-12-15 09:06:30,13017282CF10A,2013-12-14,,1,F,Pos Cannabis W/Intent Sel/Del,1,14003842CF10A,(F7),,2014-01-09,Burglary Dwelling Assault/Batt,,,,1,14003842CF10A,(F7),2014-01-09,Burglary Dwelling Assault/Batt,Risk of Recidivism,3,Low,2013-12-15,Risk of Violence,4,Low,2013-12-15,2014-01-12,2014-01-13,1,0,25,1,1\r\n7258,jared aldoroty,jared,aldoroty,2013-08-30,Male,1989-07-04,26,25 - 45,African-American,0,7,0,0,8,0,2013-08-30 01:33:43,2013-08-31 08:29:22,13012293CF10A,2013-08-30,,0,F,Corrupt Public Servant,1,15008183MM10A,(M2),0,2015-08-02,Prowling/Loitering,2015-08-02,2015-08-02,,0,,,,,Risk of Recidivism,7,Medium,2013-08-30,Risk of Violence,5,Medium,2013-08-30,2015-08-02,2015-08-02,8,1,702,0,1\r\n7259,courtney harbison,courtney,harbison,2013-11-21,Male,1989-12-07,26,25 - 45,Caucasian,0,5,0,0,5,-1,2013-11-20 12:21:01,2013-11-26 05:30:07,13021823MM10A,2013-11-20,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-21,Risk of Violence,6,Medium,2013-11-21,2013-11-20,2013-11-26,5,5,862,0,0\r\n7260,felix deleon,felix,deleon,2014-05-05,Male,1961-12-09,54,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-05-04 07:22:47,2014-05-05 07:45:00,14006253CF10A,2014-05-04,,1,F,Agg Battery Grt/Bod/Harm,1,16003246CF10A,(M1),0,2016-03-15,,2016-03-15,2016-03-16,,0,,,,,Risk of Recidivism,1,Low,2014-05-05,Risk of Violence,1,Low,2014-05-05,2016-03-15,2016-03-16,0,0,680,1,1\r\n7263,terry flowers,terry,flowers,2013-01-18,Male,1950-06-08,65,Greater than 45,Caucasian,0,6,0,0,3,,,,09002234CF10A,,2012-07-17,185,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-18,Risk of Violence,1,Low,2013-01-18,,,3,0,1169,0,0\r\n7264,ginger powell,ginger,powell,2014-08-15,Female,1982-10-26,33,25 - 45,Caucasian,0,6,0,0,5,-37,2014-07-09 08:04:49,2014-07-29 09:08:23,14010542MM10A,2014-07-09,,37,M,Misuse Of 911 Or E911 System,1,15011884CF10A,(F3),0,2015-09-14,\"Poss Mot Veh Mfg \"\"ID\"\" Removed\",2015-09-14,2015-09-15,,0,,,,,Risk of Recidivism,6,Medium,2014-08-15,Risk of Violence,4,Low,2014-08-15,2015-09-14,2015-09-15,5,0,395,1,1\r\n7265,jackie kittles,jackie,kittles,2013-09-17,Male,1951-08-31,64,Greater than 45,African-American,0,6,0,0,13,-28,2013-08-20 04:49:05,2013-08-21 07:35:28,13011685CF10A,2013-08-20,,28,M,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-17,Risk of Violence,2,Low,2013-09-17,2013-08-20,2013-08-21,13,0,927,0,0\r\n7266,andrew semple,andrew,semple,2014-02-06,Male,1991-05-24,24,Less than 25,Caucasian,0,2,0,0,0,-1,2014-02-05 07:22:17,2014-02-06 09:10:58,14001639CF10A,2014-02-05,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-06,Risk of Violence,3,Low,2014-02-06,2014-08-26,2014-09-03,0,0,201,0,0\r\n7268,antonio amos,antonio,amos,2013-09-27,Male,1981-01-12,35,25 - 45,African-American,0,6,0,0,29,-101,2013-06-18 07:13:32,2013-07-20 02:29:18,13008843CF10A,2013-06-18,,101,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-27,Risk of Violence,8,High,2013-09-27,2016-03-20,2016-03-29,29,0,905,0,0\r\n7269,sharon ravitz,sharon,ravitz,2013-02-27,Female,1958-12-11,57,Greater than 45,Caucasian,0,1,0,0,0,-5,2013-02-22 09:42:37,2013-02-23 07:56:35,13003737MM10A,2013-02-22,,5,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-27,Risk of Violence,1,Low,2013-02-27,2013-02-22,2013-02-23,0,0,1129,0,0\r\n7271,lynda luck,lynda,luck,2013-05-27,Female,1969-06-04,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-26 11:07:51,2013-05-28 07:56:52,13010109MM10A,2013-05-26,,1,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-06-10,2013-06-13,0,1,14,0,0\r\n7272,daniel black,daniel,black,2013-02-17,Male,1959-09-02,56,Greater than 45,African-American,0,5,0,0,16,-1,2013-02-16 11:36:19,2013-02-17 01:39:22,13002391CF10A,2013-02-16,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-17,Risk of Violence,2,Low,2013-02-17,2014-04-24,2014-09-14,16,0,431,0,0\r\n7275,angie luti,angie,luti,2013-11-08,Female,1977-04-05,39,25 - 45,Caucasian,0,2,0,0,0,-1,2013-11-07 02:45:39,2013-11-07 09:01:07,13021012MM10A,2013-11-07,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2013-11-07,2013-11-07,0,0,875,0,0\r\n7276,wesley tole,wesley,tole,2014-02-10,Male,1947-05-15,68,Greater than 45,Caucasian,0,1,0,0,4,-1,2014-02-09 03:36:05,2014-02-20 08:48:46,14002261MM10A,2014-01-05,,36,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-10,Risk of Violence,1,Low,2014-02-10,2014-02-09,2014-02-20,4,10,781,0,0\r\n7278,vinquisha woodard,vinquisha,woodard,2013-09-19,Female,1993-09-01,22,Less than 25,African-American,0,9,0,0,5,-42,2013-08-08 04:05:30,2013-08-27 06:00:53,14003053CF10A,2013-09-04,,15,F,Grand Theft in the 3rd Degree,1,14001687CF10A,(F3),0,2014-02-06,Grand Theft in the 3rd Degree,2014-02-06,2014-02-12,,0,,,,,Risk of Recidivism,9,High,2013-09-19,Risk of Violence,6,Medium,2013-09-19,2014-02-06,2014-02-12,5,0,140,1,1\r\n7279,jovan larrieux,jovan,larrieux,2013-12-27,Male,1988-01-21,28,25 - 45,African-American,0,3,0,0,1,-1,2013-12-26 05:11:53,2013-12-27 08:03:01,13024021MM10A,2013-12-26,,1,M,Battery,1,15002582CF10A,(F2),155,2014-11-24,Aggravated Battery / Pregnant,2015-04-28,2015-04-29,,1,15002582CF10A,(F2),2014-11-24,Aggravated Battery / Pregnant,Risk of Recidivism,3,Low,2013-12-27,Risk of Violence,3,Low,2013-12-27,2015-10-20,2015-10-27,1,0,332,1,1\r\n7280,paul davis,paul,davis,2014-01-10,Male,1976-06-02,39,25 - 45,African-American,0,6,0,0,19,-1,2014-01-09 10:18:22,2014-01-10 08:00:54,14000399MM10A,2014-01-09,,1,M,Battery,1,14000543MO10A,(MO3),0,2014-01-11,Resisting W/O Violence,2014-01-11,2014-01-11,,0,,,,,Risk of Recidivism,6,Medium,2014-01-10,Risk of Violence,1,Low,2014-01-10,2014-01-11,2014-01-11,19,0,1,0,1\r\n7281,donald keltner,donald,keltner,2013-08-28,Male,1977-06-23,38,25 - 45,Caucasian,0,1,0,0,0,-1,2013-08-27 12:55:12,2013-08-28 10:01:11,13016410MM10A,2013-08-27,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-28,Risk of Violence,1,Low,2013-08-28,2013-08-27,2013-08-28,0,0,947,0,0\r\n7283,jeremiah young,jeremiah,young,2014-01-27,Female,1990-07-26,25,25 - 45,African-American,0,10,0,0,3,-23,2014-01-04 03:28:31,2014-01-05 08:57:38,13020661MM10A,,2014-01-04,23,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2014-01-27,Risk of Violence,8,High,2014-01-27,2014-01-04,2014-01-05,3,0,795,0,0\r\n7284,david harris,david,harris,2013-01-04,Male,1991-04-18,25,25 - 45,Caucasian,0,5,0,1,2,0,2013-01-04 12:58:41,2013-01-05 06:15:10,13000140CF10A,2013-01-03,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-04,Risk of Violence,4,Low,2013-01-04,2013-03-26,2013-03-28,2,1,81,0,0\r\n7285,daniel laffite,daniel,laffite,2014-01-27,Male,1994-11-05,21,Less than 25,African-American,0,7,0,0,3,-1,2014-01-26 07:08:31,2014-02-05 03:43:05,13018010CF10A,,2014-01-26,1,F,arrest case no charge,1,14003013CF10A,(F3),0,2014-03-03,Grand Theft in the 3rd Degree,2014-03-03,2014-03-25,,0,,,,,Risk of Recidivism,7,Medium,2014-01-27,Risk of Violence,6,Medium,2014-01-27,2014-03-03,2014-03-25,3,9,35,1,1\r\n7286,michael hernandez,michael,hernandez,2013-03-19,Male,1985-03-07,31,25 - 45,Caucasian,0,5,0,0,2,0,2013-03-19 04:52:54,2013-04-04 08:16:47,13003980CF10A,2013-03-19,,0,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-19,Risk of Violence,5,Medium,2013-03-19,2013-03-19,2013-04-04,2,16,1109,0,0\r\n7288,laricka forbes,laricka,forbes,2013-01-11,Male,1982-10-05,33,25 - 45,African-American,0,6,0,0,3,-1,2013-01-10 07:42:05,2013-01-17 11:24:24,13000477CF10A,2013-01-10,,1,F,Grand Theft in the 3rd Degree,1,13009563MM10A,(M2),0,2013-05-16,Petit Theft,2013-05-16,2013-05-17,,0,,,,,Risk of Recidivism,6,Medium,2013-01-11,Risk of Violence,2,Low,2013-01-11,2013-05-16,2013-05-17,3,6,125,1,1\r\n7289,edward harding,edward,harding,2014-12-24,Male,1990-03-11,26,25 - 45,African-American,0,10,0,0,20,0,2014-12-24 05:18:15,2015-02-06 04:02:36,14017022CF10A,2014-12-24,,0,F,Neglect Child / No Bodily Harm,1,15009268TC40A,(M2),,2015-02-10,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,10,High,2014-12-24,Risk of Violence,10,High,2014-12-24,2014-12-24,2015-02-06,20,44,48,1,1\r\n7291,jarel bynes,jarel,bynes,2013-03-26,Male,1985-01-27,31,25 - 45,African-American,0,7,0,0,2,,,,10020426CF10A,2010-11-18,,859,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-26,Risk of Violence,4,Low,2013-03-26,,,2,0,1102,0,0\r\n7292,kakeen thomas,kakeen,thomas,2013-03-13,Female,1980-07-09,35,25 - 45,African-American,0,8,0,0,13,0,2013-03-13 01:13:54,2013-03-15 10:13:46,13003693CF10A,2013-03-12,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-13,Risk of Violence,5,Medium,2013-03-13,2013-03-13,2013-03-15,13,2,1115,0,0\r\n7293,vincent gordon,vincent,gordon,2013-12-13,Male,1981-07-24,34,25 - 45,African-American,0,8,6,1,19,-1,2013-12-12 07:17:08,2013-12-13 09:22:13,13014771MM10A,,2013-12-12,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-13,Risk of Violence,4,Low,2013-12-13,2013-12-12,2013-12-13,19,0,840,0,0\r\n7294,kurt lewis,kurt,lewis,2013-01-29,Male,1974-08-03,41,25 - 45,Other,0,9,0,0,31,0,2013-01-29 02:15:33,2013-09-28 04:10:45,13001412CF10A,2013-01-28,,1,F,Driving While License Revoked,1,13016711CF10A,(M2),0,2013-12-03,Expired DL More Than 6 Months,2013-12-03,2013-12-25,,0,,,,,Risk of Recidivism,9,High,2013-01-29,Risk of Violence,5,Medium,2013-01-29,2013-12-03,2013-12-25,31,242,308,1,1\r\n7296,robert livingston,robert,livingston,2013-03-05,Male,1958-08-22,57,Greater than 45,Other,0,1,0,0,0,-1,2013-03-04 07:27:27,2013-03-05 02:00:07,13004427MM10A,2013-03-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-05,Risk of Violence,1,Low,2013-03-05,2013-03-04,2013-03-05,0,0,1123,0,0\r\n7298,latonya griffin,latonya,griffin,2013-10-22,Female,1973-11-12,42,25 - 45,African-American,0,2,0,0,1,-1,2013-10-21 06:00:21,2013-10-22 01:59:31,13014714CF10A,2013-10-21,,1,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,2013-10-21,2013-10-22,1,0,892,0,0\r\n7299,lejuan patterson,lejuan,patterson,2013-02-23,Male,1989-05-05,26,25 - 45,African-American,1,10,2,0,9,-1,2013-02-22 09:20:28,2013-02-24 11:40:33,13002727CF10A,2013-02-22,,1,F,Tampering With Physical Evidence,1,13046663TC10A,(M2),,2013-10-29,Driving License Suspended,,,,0,,,,,Risk of Recidivism,10,High,2013-02-23,Risk of Violence,6,Medium,2013-02-23,2013-02-22,2013-02-24,9,1,248,1,1\r\n7300,james cerpa,james,cerpa,2014-03-25,Male,1991-10-03,24,Less than 25,Caucasian,0,9,0,0,1,-60,2014-01-24 10:32:35,2014-03-03 01:21:54,13004982CF10A,,2014-01-24,60,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-25,Risk of Violence,8,High,2014-03-25,2014-01-24,2014-03-03,1,0,738,0,0\r\n7301,rashan greer,rashan,greer,2014-08-14,Male,1980-03-03,36,25 - 45,African-American,0,6,0,0,2,-1,2014-08-13 04:21:41,2014-08-16 03:30:29,14011072CF10A,2014-08-13,,1,F,Burglary Unoccupied Dwelling,1,15000319MM10A,(M2),0,2015-01-09,Petit Theft,2015-01-09,2015-01-15,,0,,,,,Risk of Recidivism,6,Medium,2014-08-14,Risk of Violence,6,Medium,2014-08-14,2015-01-09,2015-01-15,2,2,148,1,1\r\n7302,telly thomas,telly,thomas,2014-06-07,Male,1975-01-28,41,25 - 45,African-American,1,10,1,0,24,-1,2014-06-06 07:27:50,2014-06-07 10:30:56,14007846CF10A,2014-06-06,,1,F,Possession of Cocaine,1,15005575CF10A,(F7),0,2015-04-28,Burglary Dwelling Assault/Batt,2015-04-28,2015-12-07,,1,15005575CF10A,(F7),2015-04-28,Burglary Dwelling Assault/Batt,Risk of Recidivism,10,High,2014-06-07,Risk of Violence,3,Low,2014-06-07,2014-06-19,2014-06-26,24,0,12,0,1\r\n7304,hannsataky moriaux,hannsataky,moriaux,2013-08-04,Male,1989-01-31,27,25 - 45,Caucasian,0,2,0,0,0,-1,2013-08-03 04:44:27,2013-08-04 07:42:20,13010872CF10A,2013-08-03,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-04,Risk of Violence,3,Low,2013-08-04,2013-08-03,2013-08-04,0,0,971,0,0\r\n7305,sandra kersey,sandra,kersey,2013-10-11,Female,1957-12-31,58,Greater than 45,Other,0,1,0,0,0,-1,2013-10-10 02:21:54,2013-10-11 09:09:01,13017794CF10A,2013-10-10,,1,F,Possession of Cocaine,1,14002942MM40A,(M1),123,2014-03-09,Possess Drug Paraphernalia,2014-07-10,2014-07-18,,0,,,,,Risk of Recidivism,1,Low,2013-10-11,Risk of Violence,1,Low,2013-10-11,2013-12-27,2013-12-28,0,0,77,0,1\r\n7308,raymond thompson,raymond,thompson,2013-09-24,Male,1970-07-18,45,Greater than 45,Caucasian,0,1,0,0,3,-23,2013-09-01 01:07:06,2013-09-01 02:06:35,13012315CF10A,2013-08-31,,24,F,Tampering With Physical Evidence,1,14022064TC20A,(M2),,2014-03-18,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-24,Risk of Violence,1,Low,2013-09-24,2015-04-24,2015-04-25,3,0,175,1,1\r\n7310,eid ayoub,eid,ayoub,2013-02-02,Male,1981-12-17,34,25 - 45,Caucasian,0,2,0,0,5,0,2013-02-02 03:10:41,2013-02-03 07:07:09,13001667CF10A,2013-02-02,,0,F,Possession of Cocaine,1,15007181CF10A,(F3),0,2015-06-02,Use Scanning Device to Defraud,2015-06-02,2015-11-09,,0,,,,,Risk of Recidivism,2,Low,2013-02-02,Risk of Violence,2,Low,2013-02-02,2013-12-02,2013-12-18,5,1,303,0,0\r\n7311,pedro bianchini,pedro,bianchini,2013-02-04,Male,1965-07-22,50,Greater than 45,Hispanic,0,1,0,0,0,0,2013-02-04 01:55:09,2013-02-04 10:08:08,13002557MM10A,2013-02-03,,1,M,DUI- Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-02-04,2013-02-04,0,0,1152,0,0\r\n7312,alan sorto,alan,sorto,2014-04-06,Male,1990-05-02,25,25 - 45,Caucasian,0,8,1,0,6,0,2014-04-06 02:30:39,2014-04-06 07:45:48,14004746CF10A,2014-04-05,,1,F,Crim Use of Personal ID Info,1,16001768MM10A,(M1),,2016-01-11,Battery,,,,1,16001768MM10A,(M1),2016-01-11,Battery,Risk of Recidivism,8,High,2014-04-06,Risk of Violence,6,Medium,2014-04-06,2014-04-06,2014-04-06,6,0,645,1,1\r\n7315,patrick beauplan,patrick,beauplan,2014-04-15,Male,1991-09-14,24,Less than 25,African-American,0,5,0,0,2,-1,2014-04-14 04:13:50,2014-04-15 08:37:34,14006313MM10A,2014-04-14,,1,M,Battery,1,16001474MM40A,(M2),,2016-03-03,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2014-04-15,Risk of Violence,4,Low,2014-04-15,2014-04-14,2014-04-15,2,0,688,1,1\r\n7316,mauricio arias,mauricio,arias,2013-01-28,Male,1976-10-24,39,25 - 45,Hispanic,0,3,0,0,2,,,,12018690MM10A,2012-09-08,,142,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,,,2,0,1159,0,0\r\n7317,kenata williams,kenata,williams,2013-01-03,Male,1988-07-25,27,25 - 45,African-American,0,7,0,0,2,-1,2013-01-02 07:07:44,2013-03-26 10:38:08,11019434CF10A,,2012-07-18,169,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-03,Risk of Violence,6,Medium,2013-01-03,2015-05-27,2015-11-01,2,82,874,0,0\r\n7318,jamesley charles,jamesley,charles,2013-05-23,Male,1991-02-06,25,25 - 45,African-American,0,3,0,0,3,,,,12015700CF10A,,2012-11-28,176,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-23,Risk of Violence,3,Low,2013-05-23,,,3,0,1044,0,0\r\n7319,robert reynolds,robert,reynolds,2013-02-07,Male,1986-03-01,30,25 - 45,Caucasian,0,4,0,1,2,0,2013-02-07 04:01:00,2013-02-07 07:28:31,13002762MM10A,2013-02-07,,0,M,Driving Under The Influence,1,14003723CF10A,(F3),0,2014-01-29,Resist Officer w/Violence,2014-01-29,2014-01-29,,0,,,,,Risk of Recidivism,4,Low,2013-02-07,Risk of Violence,4,Low,2013-02-07,2014-01-29,2014-01-29,2,0,356,0,1\r\n7320,oscar valdivia,oscar,valdivia,2013-05-08,Male,1994-03-28,22,Less than 25,Caucasian,0,8,2,0,3,-1,2013-05-07 03:33:08,2013-05-08 10:44:31,13006527CF10A,2013-05-07,,1,F,Possession of Cannabis,1,14000248MM40A,(M1),196,2013-12-22,Possess Cannabis/20 Grams Or Less,2014-07-06,2014-07-07,,0,,,,,Risk of Recidivism,8,High,2013-05-08,Risk of Violence,6,Medium,2013-05-08,2015-05-12,2015-10-15,3,0,228,1,1\r\n7321,carlo johnson,carlo,johnson,2013-01-31,Male,1988-12-02,27,25 - 45,African-American,0,5,0,0,0,-1,2013-01-30 08:22:40,2013-01-31 07:32:24,13001518CF10A,2013-01-30,,1,F,Uttering Forged Credit Card,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-31,Risk of Violence,6,Medium,2013-01-31,2014-05-31,2014-06-05,0,0,485,0,0\r\n7322,kevin bailey,kevin,bailey,2014-11-23,Male,1995-12-04,20,Less than 25,Other,0,3,0,0,0,-1,2014-11-22 06:43:48,2014-11-23 12:40:08,14015732CF10A,2014-11-22,,1,F,Uttering a Forged Instrument,1,15000184MM30A,(M1),,2015-01-15,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2014-11-23,Risk of Violence,5,Medium,2014-11-23,2016-03-12,2016-03-13,0,0,53,1,1\r\n7323,warrick haggins,warrick,haggins,2014-10-22,Male,1974-07-22,41,25 - 45,African-American,0,5,0,0,19,29,2014-11-20 01:09:11,2015-01-07 11:12:58,14001216CF10A,2014-01-28,,267,F,Del Cannabis At/Near Park,1,15008449CF10A,(M1),1,2015-06-26,Trespass Struct/Convey Occupy,2015-06-27,2015-07-27,,0,,,,,Risk of Recidivism,5,Medium,2014-10-22,Risk of Violence,9,High,2014-10-22,2014-11-20,2015-01-07,19,0,29,0,1\r\n7324,ivan gonzalez,ivan,gonzalez,2013-01-19,Male,1985-10-07,30,25 - 45,Caucasian,0,1,0,0,0,-1,2013-01-18 08:26:44,2013-01-19 01:18:54,13000868CF10A,2013-01-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-19,Risk of Violence,2,Low,2013-01-19,2013-01-18,2013-01-19,0,0,1168,0,0\r\n7326,joshua oliver,joshua,oliver,2013-02-02,Male,1992-03-04,24,Less than 25,African-American,0,8,0,0,3,-1,2013-02-01 11:43:49,2013-04-18 07:00:00,13001604CF10A,2013-02-01,,1,F,Pos Cannabis W/Intent Sel/Del,1,16000485MM30A,(M1),,2016-03-16,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2013-02-02,Risk of Violence,7,Medium,2013-02-02,2014-04-23,2014-05-06,3,75,445,0,0\r\n7327,carlos walker,carlos,walker,2013-05-12,Male,1977-03-18,39,25 - 45,African-American,0,1,0,0,0,-1,2013-05-11 03:06:34,2013-05-12 07:30:59,13009117MM10A,2013-05-11,,1,M,Assault,1,15015990CF10A,(F3),,2015-12-14,Aggravated Assault W/Dead Weap,,,,1,15015990CF10A,(F3),2015-12-14,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2013-05-12,Risk of Violence,1,Low,2013-05-12,2015-12-15,2015-12-16,0,0,946,1,0\r\n7328,lamar mccullough,lamar,mccullough,2013-05-25,Male,1984-04-18,32,25 - 45,African-American,0,6,0,0,6,55,2013-07-19 11:55:28,2013-08-23 04:43:22,12008652CF10A,2012-06-12,,347,F,Possession of Cannabis,1,13016062MM10A,(M1),0,2013-07-19,Resist/Obstruct W/O Violence,2013-07-19,2013-08-23,,1,13010150CF10A,(F1),2013-07-19,Burglary With Assault/battery,Risk of Recidivism,6,Medium,2013-05-25,Risk of Violence,4,Low,2013-05-25,2013-07-19,2013-08-23,6,0,55,1,1\r\n7330,tinikka humphrey,tinikka,humphrey,2013-08-23,Female,1983-10-05,32,25 - 45,African-American,0,2,0,0,3,-1,2013-08-22 07:27:11,2013-08-23 07:18:39,13011802CF10A,2013-08-22,,1,F,Retail Theft $300 2nd Offense,1,13015212CF10A,(F3),0,2013-10-31,Uttering a Forged Instrument,2013-10-31,2013-11-01,,0,,,,,Risk of Recidivism,2,Low,2013-08-23,Risk of Violence,2,Low,2013-08-23,2013-10-31,2013-11-01,3,0,69,1,1\r\n7331,erika kennedy,erika,kennedy,2014-10-31,Female,1987-01-14,29,25 - 45,Caucasian,0,6,0,0,0,-1,2014-10-30 06:09:13,2015-10-08 06:13:26,14014611CF10A,2014-10-30,,1,F,Grand Theft in the 3rd Degree,1,15010429CF10A,(F3),,2015-08-10,Crim Use of Personal ID Info,,,,0,,,,,Risk of Recidivism,6,Medium,2014-10-31,Risk of Violence,4,Low,2014-10-31,2014-10-30,2015-10-08,0,0,283,1,1\r\n7332,shahzad qazi,shahzad,qazi,2014-11-11,Male,1978-11-03,37,25 - 45,Other,0,1,0,0,0,-1,2014-11-10 09:56:40,2014-11-11 01:30:08,14015082CF10A,2014-11-10,,1,F,Tampering With Physical Evidence,1,15011896MM10A,(M1),0,2015-11-14,Resist/Obstruct W/O Violence,2015-11-14,2015-11-15,,0,,,,,Risk of Recidivism,1,Low,2014-11-11,Risk of Violence,1,Low,2014-11-11,2015-11-14,2015-11-15,0,0,368,1,1\r\n7334,antonio philmore,antonio,philmore,2013-03-01,Male,1989-12-15,26,25 - 45,African-American,0,10,1,0,24,0,2013-03-01 01:25:58,2013-03-01 08:28:35,13003052CF10A,2013-02-28,,1,F,Driving While License Revoked,1,14007346CF10A,(F3),0,2014-05-27,Driving While License Revoked,2014-05-27,2014-05-28,,1,15003134CF10A,(F3),2015-03-07,Felony Battery (Dom Strang),Risk of Recidivism,10,High,2013-03-01,Risk of Violence,7,Medium,2013-03-01,2013-10-10,2013-10-16,24,0,223,0,1\r\n7335,joshua newkirk,joshua,newkirk,2014-06-18,Male,1992-03-23,24,Less than 25,African-American,0,6,0,0,2,0,2014-06-18 03:48:54,2014-06-19 04:05:00,14008420CF10A,2014-06-18,,0,F,Felony Battery w/Prior Convict,1,15001163MM40A,(M1),,2015-03-06,Trespass Other Struct/Conve,,,,0,,,,,Risk of Recidivism,6,Medium,2014-06-18,Risk of Violence,5,Medium,2014-06-18,2014-06-18,2014-06-19,2,1,261,1,1\r\n7337,kenauld chevelon,kenauld,chevelon,2013-02-02,Male,1985-11-13,30,25 - 45,Other,0,1,0,0,2,-1,2013-02-01 07:57:47,2013-02-02 08:53:50,13001613CF10A,,2013-02-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-02,Risk of Violence,2,Low,2013-02-02,2013-02-01,2013-02-02,2,0,1154,0,0\r\n7338,kerome paisley,kerome,paisley,2013-12-05,Male,1995-07-05,20,Less than 25,African-American,1,10,1,1,4,14,2013-12-19 04:03:39,2014-12-30 06:19:19,13010552CF10A,2013-07-23,,135,F,Grand Theft in the 3rd Degree,1,13017503CF10A,(F2),1,2013-12-18,Grand Theft of the 2nd Degree,2013-12-19,2014-12-30,,1,13017503CF10A,(F2),2013-12-18,Agg Assault Law Enforc Officer,Risk of Recidivism,10,High,2013-12-05,Risk of Violence,7,Medium,2013-12-05,2014-12-30,2020-01-01,4,0,13,1,1\r\n7339,rick dor,rick,dor,2014-08-01,Male,1991-01-27,25,25 - 45,African-American,0,6,0,1,1,-1,2014-07-31 12:34:44,2014-08-01 08:29:48,14011664MM10A,2014-07-31,,1,M,Battery,1,14035649TC10A,(M2),,2014-09-09,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2014-08-01,Risk of Violence,5,Medium,2014-08-01,2014-07-31,2014-08-01,1,0,39,1,1\r\n7340,nicole davis,nicole,davis,2014-05-19,Female,1984-05-14,31,25 - 45,Caucasian,0,4,0,0,0,-1,2014-05-18 11:42:21,2014-05-19 01:38:52,14006900CF10A,2014-05-18,,1,F,Grand Theft (Motor Vehicle),1,15005127MM10A,(M1),0,2015-05-07,Possess Drug Paraphernalia,2015-05-07,2015-08-02,,0,,,,,Risk of Recidivism,4,Low,2014-05-19,Risk of Violence,2,Low,2014-05-19,2014-11-29,2014-12-10,0,0,194,0,1\r\n7341,richard francis,richard,francis,2013-12-21,Male,1991-03-28,25,25 - 45,African-American,0,5,0,0,0,0,2013-12-21 12:29:04,2013-12-21 01:42:50,13023525MM10A,2013-12-20,,1,M,Battery,1,14003050MM10A,(M1),0,2014-02-21,Possess Cannabis/20 Grams Or Less,2014-02-21,2014-02-28,,0,,,,,Risk of Recidivism,5,Medium,2013-12-21,Risk of Violence,5,Medium,2013-12-21,2014-02-21,2014-02-28,0,0,62,1,1\r\n7342,howard keroes,howard,keroes,2014-02-04,Male,1974-05-07,41,25 - 45,Caucasian,0,1,0,0,0,-1,2014-02-03 09:59:21,2014-02-04 12:16:10,14001509CF10A,2014-02-03,,1,F,Grand Theft in the 3rd Degree,1,14003293CF10A,(F3),0,2014-03-08,Grand Theft in the 3rd Degree,2014-03-08,2014-03-08,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-03-08,2014-03-08,0,0,32,0,1\r\n7343,ryan shields,ryan,shields,2013-03-20,Male,1991-03-27,25,25 - 45,Caucasian,0,3,0,0,0,-1,2013-03-19 04:15:00,2013-03-20 07:31:24,13004001CF10A,2013-03-19,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-20,Risk of Violence,4,Low,2013-03-20,2016-02-11,2016-04-09,0,0,1058,0,0\r\n7344,chamoy wright,chamoy,wright,2013-02-11,Male,1990-07-19,25,25 - 45,African-American,0,5,0,0,2,-1,2013-02-10 03:23:16,2013-02-11 07:27:53,13002070CF10A,2013-02-10,,1,F,Crimin Mischief Damage $1000+,1,13009112CF10A,(F2),136,2013-05-17,Shoot/Throw Into Vehicle,2013-09-30,2013-10-01,,1,13009112CF10A,(F2),2013-05-17,Shoot/Throw Into Vehicle,Risk of Recidivism,5,Medium,2013-02-11,Risk of Violence,5,Medium,2013-02-11,2013-09-30,2013-10-01,2,0,95,1,1\r\n7345,eric mckinney,eric,mckinney,2013-11-01,Male,1994-01-08,22,Less than 25,African-American,0,4,0,0,1,0,2013-11-01 05:37:27,2013-11-01 08:51:34,13015243CF10A,2013-11-01,,0,F,Possession Of Alprazolam,1,14047176TC40A,(M2),,2014-07-05,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-01,Risk of Violence,5,Medium,2013-11-01,2015-07-26,2015-07-27,1,0,246,1,1\r\n7347,janey martin,janey,martin,2013-08-22,Female,1990-05-03,25,25 - 45,African-American,0,7,0,0,0,-1,2013-08-21 05:03:37,2013-08-26 08:41:40,13011728CF10A,2013-08-21,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-22,Risk of Violence,5,Medium,2013-08-22,2013-08-21,2013-08-26,0,4,953,0,0\r\n7348,rashidi lee,rashidi,lee,2013-03-28,Male,1977-10-11,38,25 - 45,African-American,0,2,0,0,0,0,2013-03-28 01:18:25,2013-03-29 03:48:52,13005982MM10A,2013-03-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-28,2013-03-29,0,1,1100,0,0\r\n7351,francisco jimenezpagan,francisco,jimenezpagan,2013-09-22,Male,1976-03-01,40,25 - 45,Hispanic,0,5,0,0,0,0,2013-09-22 03:48:15,2013-11-26 01:12:39,13013360CF10A,2013-09-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-22,Risk of Violence,1,Low,2013-09-22,2013-09-22,2013-11-26,0,65,922,0,0\r\n7354,debra tripp,debra,tripp,2013-10-30,Female,1967-04-15,49,Greater than 45,Caucasian,0,2,0,0,4,-1,2013-10-29 05:20:32,2013-11-02 02:40:16,13020469MM10A,2013-10-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,2013-10-29,2013-11-02,4,3,884,0,0\r\n7355,melissa becker,melissa,becker,2013-08-05,Female,1980-04-23,35,25 - 45,Caucasian,0,3,0,0,2,-3,2013-08-02 11:15:20,2013-08-04 08:22:38,13014709MM10A,2013-08-02,,3,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-05,Risk of Violence,1,Low,2013-08-05,2013-09-18,2013-10-01,2,0,44,0,0\r\n7356,karan raj,karan,raj,2013-09-05,Male,1994-12-26,21,Less than 25,Native American,0,6,0,1,0,-1,2013-09-04 05:23:30,2013-09-05 07:35:31,13016951MM10A,2013-09-04,,1,M,Battery,1,14101313TC30A,(M2),,2014-12-04,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-05,Risk of Violence,7,Medium,2013-09-05,2013-09-04,2013-09-05,0,0,455,1,1\r\n7358,shanairj mckenziewallace,shanairj,mckenziewallace,2013-12-20,Male,1990-11-11,25,25 - 45,Other,0,4,0,0,0,-1,2013-12-19 11:03:21,2013-12-21 04:28:19,13017513CF10A,2013-12-19,,1,F,Felony Batt(Great Bodily Harm),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-20,Risk of Violence,3,Low,2013-12-20,2013-12-19,2013-12-21,0,1,833,0,0\r\n7359,rafael guerrero,rafael,guerrero,2013-12-25,Male,1994-05-18,21,Less than 25,Caucasian,0,4,0,0,1,-1,2013-12-24 03:45:52,2013-12-25 02:37:17,13017762CF10A,2013-12-24,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-25,Risk of Violence,6,Medium,2013-12-25,2014-10-29,2014-11-17,1,0,308,0,0\r\n7360,alyza russell,alyza,russell,2013-10-07,Female,1991-04-25,24,Less than 25,Caucasian,0,4,0,0,2,-96,2013-07-03 07:12:06,2013-07-06 02:55:40,13009518CF10A,,2013-07-03,96,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,3,Low,2013-10-07,2013-07-03,2013-07-06,2,0,907,0,0\r\n7361,oscar martinez,oscar,martinez,2013-04-30,Male,1970-07-28,45,Greater than 45,Hispanic,0,3,0,0,1,,,,09010005CF10A,,2012-03-02,424,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-30,Risk of Violence,3,Low,2013-04-30,,,1,0,1067,0,0\r\n7362,taveca ward,taveca,ward,2013-09-04,Female,1991-07-09,24,Less than 25,African-American,0,9,0,1,11,-1,2013-09-03 03:06:24,2013-11-19 05:29:57,13016855MM10A,2013-09-03,,1,M,Petit Theft,1,15008001MM10A,(M1),0,2015-07-28,Petit Theft $100- $300,2015-07-28,2015-07-29,,0,,,,,Risk of Recidivism,9,High,2013-09-04,Risk of Violence,8,High,2013-09-04,2015-07-28,2015-07-29,11,76,692,1,1\r\n7365,shalev roae,shalev,roae,2013-05-22,Male,1987-06-28,28,25 - 45,Caucasian,0,3,0,0,3,-1,2013-05-21 07:48:21,2013-07-11 02:10:57,13007266CF10A,2013-05-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-22,Risk of Violence,2,Low,2013-05-22,2013-05-21,2013-07-11,3,50,1045,0,0\r\n7368,jaime forte,jaime,forte,2013-01-30,Female,1982-03-04,34,25 - 45,African-American,0,9,0,0,1,148,2013-06-27 04:22:40,2013-07-18 11:55:00,06015054MM10A,2006-08-01,,2374,M,Unlaw Use False Name/Identity,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-30,Risk of Violence,7,Medium,2013-01-30,2013-06-27,2013-07-18,1,0,148,0,0\r\n7369,deon burks,deon,burks,2013-08-16,Male,1981-12-29,34,25 - 45,African-American,0,6,0,0,4,-1,2013-08-15 09:28:10,2013-08-16 09:06:55,13011474CF10A,2013-08-15,,1,F,Deliver Cannabis,1,14015841TC10A,(M2),,2014-04-16,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-16,Risk of Violence,3,Low,2013-08-16,2013-08-15,2013-08-16,4,0,243,1,1\r\n7370,coral norfus,coral,norfus,2013-03-24,Male,1958-05-12,57,Greater than 45,African-American,0,7,0,0,8,-1,2013-03-23 07:39:14,2013-03-28 08:55:47,13005693MM10A,2013-03-23,,1,M,Misuse Of 911 Or E911 System,1,15010914CF10A,(F3),0,2015-08-23,Aggravated Assault W/Dead Weap,2015-08-23,2015-09-23,,1,15010914CF10A,(F3),2015-08-23,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2013-03-24,Risk of Violence,5,Medium,2013-03-24,2015-08-23,2015-09-23,8,4,882,1,0\r\n7373,sammy worthy,sammy,worthy,2013-02-02,Male,1976-04-17,40,25 - 45,African-American,0,9,0,0,15,-1,2013-02-01 05:27:23,2013-04-14 11:31:39,13001606CF10A,2013-02-01,,1,F,Pos Cannabis W/Intent Sel/Del,1,13011940CF10A,(F2),0,2013-08-24,Poss Cocaine/Intent To Del/Sel,2013-08-24,2014-05-29,,1,15008682CF10A,(F2),2015-06-13,Throw Deadly Missile Into Veh,Risk of Recidivism,9,High,2013-02-02,Risk of Violence,7,Medium,2013-02-02,2013-08-24,2014-05-29,15,71,203,1,1\r\n7375,tarcy burch,tarcy,burch,2014-06-19,Male,1993-10-31,22,Less than 25,African-American,0,4,0,0,2,-1,2014-06-18 03:10:53,2014-06-19 08:48:00,14009562MM10A,2014-06-18,,1,M,Battery,1,14016525CF10A,(F3),0,2014-12-12,Possession of Cannabis,2014-12-12,2014-12-13,,0,,,,,Risk of Recidivism,4,Low,2014-06-19,Risk of Violence,5,Medium,2014-06-19,2014-12-12,2014-12-13,2,0,176,1,1\r\n7380,emmanuel noreus,emmanuel,noreus,2013-02-17,Male,1978-05-24,37,25 - 45,African-American,0,6,0,0,3,-1,2013-02-16 05:28:51,2013-02-17 04:02:07,11070116TC40A,,2013-02-16,1,M,arrest case no charge,1,14010807TC10A,(M2),0,2014-03-18,Susp Drivers Lic 1st Offense,2014-03-18,2014-03-19,,0,,,,,Risk of Recidivism,6,Medium,2013-02-17,Risk of Violence,5,Medium,2013-02-17,2014-03-18,2014-03-19,3,0,394,1,1\r\n7381,temisa brown,temisa,brown,2013-11-24,Female,1972-09-19,43,25 - 45,African-American,0,6,0,0,0,0,2013-11-24 12:15:06,2013-11-24 09:16:59,13016296CF10A,2013-11-23,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-24,Risk of Violence,1,Low,2013-11-24,2014-07-07,2014-09-02,0,0,225,0,0\r\n7382,andre francis,andre,francis,2013-09-21,Male,1989-05-01,26,25 - 45,African-American,0,7,0,0,5,0,2013-09-21 02:08:01,2013-09-21 08:43:39,13011084CF10A,,2013-09-21,0,F,arrest case no charge,1,14009484CF10A,(M1),1,2014-07-09,Possess Cannabis/20 Grams Or Less,2014-07-10,2014-07-10,,0,,,,,Risk of Recidivism,7,Medium,2013-09-21,Risk of Violence,8,High,2013-09-21,2015-07-11,2015-07-12,5,0,291,1,1\r\n7383,azli perez,azli,perez,2013-02-26,Male,1991-11-26,24,Less than 25,Caucasian,0,3,0,0,2,-1,2013-02-25 10:40:25,2013-02-26 12:43:06,13002857CF10A,2013-02-25,,1,F,False Motor Veh Insurance Card,1,13007620MM10A,(M1),0,2013-04-19,Resist/Obstruct W/O Violence,2013-04-19,2013-04-20,,0,,,,,Risk of Recidivism,3,Low,2013-02-26,Risk of Violence,5,Medium,2013-02-26,2013-04-19,2013-04-20,2,0,52,1,1\r\n7384,barry nelson,barry,nelson,2013-08-10,Male,1993-02-17,23,Less than 25,African-American,0,7,0,0,1,,,,11017324CF10A,,2013-08-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-10,Risk of Violence,7,Medium,2013-08-10,,,1,0,965,0,0\r\n7385,rene chaparteguy,rene,chaparteguy,2014-01-16,Male,1959-10-13,56,Greater than 45,Caucasian,0,1,0,0,1,-2,2014-01-14 10:01:39,2014-01-15 02:03:08,14000625CF10A,2014-01-14,,2,F,Tamper With Witness,1,14012666TC10A,(M2),406,2014-03-08,Expired Tag/ Reg>6 Months 2nd,2015-04-18,2015-04-27,,0,,,,,Risk of Recidivism,1,Low,2014-01-16,Risk of Violence,1,Low,2014-01-16,2015-10-26,2015-11-10,1,0,51,1,1\r\n7386,michael coley,michael,coley,2013-02-14,Male,1992-10-03,23,Less than 25,African-American,0,7,0,1,2,-1,2013-02-13 05:03:21,2013-02-15 05:28:34,13002273CF10A,2013-02-13,,1,F,Tampering With Physical Evidence,1,13024813TC10A,(M2),,2013-05-10,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-14,Risk of Violence,6,Medium,2013-02-14,2013-02-13,2013-02-15,2,1,85,1,1\r\n7387,braden hampton,braden,hampton,2013-10-23,Male,1972-08-26,43,25 - 45,Caucasian,0,6,0,0,12,-1,2013-10-22 07:27:02,2013-12-13 11:43:06,13014769CF10A,2013-10-22,,1,F,False Ownership Info/Pawn Item,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-23,Risk of Violence,3,Low,2013-10-23,2013-10-22,2013-12-13,12,51,891,0,0\r\n7388,tulsiram harnarrine,tulsiram,harnarrine,2013-09-12,Male,1983-05-26,32,25 - 45,Asian,0,1,0,0,0,-1,2013-09-11 03:41:17,2013-09-12 08:28:43,13017326MM10A,2013-09-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2013-09-11,2013-09-12,0,0,932,0,0\r\n7391,davonte resiles,davonte,resiles,2013-12-31,Male,1994-09-12,21,Less than 25,African-American,0,9,0,0,0,-1,2013-12-30 07:11:21,2014-01-01 02:59:37,13017991CF10A,2013-12-30,,1,F,Poss F/Arm Delinq,1,14012657CF10A,(F6),,2014-09-08,Murder in the First Degree,,,,1,14012657CF10A,(F6),2014-09-08,Murder in the First Degree,Risk of Recidivism,9,High,2013-12-31,Risk of Violence,9,High,2013-12-31,2013-12-30,2014-01-01,0,1,251,1,1\r\n7392,darren bryant,darren,bryant,2013-09-09,Male,1965-04-16,51,Greater than 45,African-American,0,3,0,0,2,-1,2013-09-08 09:34:56,2013-10-03 08:51:19,13014849CF10A,2013-09-08,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2013-12-04,2013-12-13,2,24,86,0,0\r\n7393,rasheem chamberlain,rasheem,chamberlain,2014-03-27,Male,1996-03-18,20,Less than 25,African-American,0,10,0,0,0,-1,2014-03-26 09:51:33,2014-04-07 08:56:16,14004306CF10A,2014-03-26,,1,M,Operating W/O Valid License,1,15001908MM10A,(M2),,2014-12-26,Criminal Mischief Damage <$200,,,,1,15001908MM10A,(M1),2014-12-26,Battery,Risk of Recidivism,10,High,2014-03-27,Risk of Violence,10,High,2014-03-27,2014-03-26,2014-04-07,0,11,274,1,1\r\n7394,jorge insua,jorge,insua,2013-12-04,Male,1976-05-16,39,25 - 45,Caucasian,0,1,0,0,1,-99,2013-08-27 02:30:28,2013-08-28 11:08:52,11016387CF10A,,2013-08-27,99,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-04,Risk of Violence,2,Low,2013-12-04,2013-08-27,2013-08-28,1,0,849,0,0\r\n7395,dwayne simmons,dwayne,simmons,2014-10-23,Male,1973-10-22,42,25 - 45,African-American,0,10,0,0,17,-1,2014-10-22 11:34:25,2014-11-24 10:35:46,14014217CF10A,2014-10-22,,1,F,Possession of Cocaine,1,15001911MU10A,(M2),0,2014-12-23,Susp Drivers Lic 1st Offense,2014-12-23,2015-01-29,,0,,,,,Risk of Recidivism,10,High,2014-10-23,Risk of Violence,9,High,2014-10-23,2014-12-23,2015-01-29,17,32,61,1,1\r\n7396,jose figueroa,jose,figueroa,2014-03-05,Male,1957-11-19,58,Greater than 45,Hispanic,0,1,0,0,1,-2,2014-03-03 02:58:09,2014-03-05 04:31:06,14003646MM10A,2014-03-03,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-05,Risk of Violence,1,Low,2014-03-05,2014-03-03,2014-03-05,1,0,758,0,0\r\n7399,barissa clarke,barissa,clarke,2013-05-14,Female,1987-06-24,28,25 - 45,Other,0,2,0,1,1,0,2013-05-14 02:30:57,2013-05-14 07:42:24,13006906CF10A,2013-05-14,,0,F,Agg Abuse Elderlly/Disabled Adult,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-14,Risk of Violence,2,Low,2013-05-14,2013-05-14,2013-05-14,1,0,1053,0,0\r\n7400,amari joseph,amari,joseph,2013-08-29,Female,1986-02-09,30,25 - 45,African-American,0,3,0,0,2,-1,2013-08-28 09:16:57,2013-08-29 07:25:16,13016486MM10A,2013-08-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-29,Risk of Violence,2,Low,2013-08-29,2013-08-28,2013-08-29,2,0,946,0,0\r\n7402,steven winter,steven,winter,2014-02-01,Male,1988-01-11,28,25 - 45,Caucasian,1,6,1,1,4,-1,2014-01-31 08:44:34,2014-02-01 10:36:20,14001414CF10A,2014-01-31,,1,M,Burglary Conveyance Unoccup,1,15015569CF10A,(F3),0,2015-12-03,Possession of Cannabis,2015-12-03,2015-12-04,,0,,,,,Risk of Recidivism,6,Medium,2014-02-01,Risk of Violence,3,Low,2014-02-01,2015-12-03,2015-12-04,4,0,670,1,1\r\n7403,anthony carroll,anthony,carroll,2013-04-12,Male,1986-09-28,29,25 - 45,African-American,0,6,0,0,6,108,2013-07-29 05:26:21,2013-12-26 06:54:15,13000850CF10A,,2013-04-11,1,F,arrest case no charge,1,15002572MM10A,(M2),0,2015-03-03,Prowling/Loitering,2015-03-03,2015-03-03,,0,,,,,Risk of Recidivism,6,Medium,2013-04-12,Risk of Violence,3,Low,2013-04-12,2013-07-29,2013-12-26,6,0,108,0,1\r\n7405,valerie agostino,valerie,agostino,2013-04-10,Female,1991-11-21,24,Less than 25,Caucasian,0,10,0,0,9,-1,2013-04-09 09:14:34,2013-04-18 06:22:53,13006844MM10A,2013-04-09,,1,M,Possess Drug Paraphernalia,1,13007668MM10A,(M1),0,2013-04-21,Possess Drug Paraphernalia,2013-04-21,2013-07-14,,0,,,,,Risk of Recidivism,10,High,2013-04-10,Risk of Violence,8,High,2013-04-10,2013-04-21,2013-07-14,9,8,11,1,1\r\n7406,robert singh,robert,singh,2013-03-23,Male,1994-01-19,22,Less than 25,African-American,0,9,0,0,1,0,2013-03-23 01:18:11,2013-04-30 07:29:04,12007973CF10A,,2013-03-23,0,F,arrest case no charge,1,14009004MM10A,(M1),0,2014-06-06,Battery,2014-06-06,2014-07-09,,1,14009004MM10A,(M1),2014-06-06,Battery,Risk of Recidivism,9,High,2013-03-23,Risk of Violence,9,High,2013-03-23,2013-07-24,2013-08-20,1,38,123,0,1\r\n7409,marie cadet,marie,cadet,2013-10-07,Female,1989-02-09,27,25 - 45,African-American,0,4,0,0,3,-32,2013-09-05 12:47:13,2013-09-05 07:53:58,13012499CF10A,2013-09-04,,33,F,Introduce Contraband Into Jail,1,14018546MU10A,(M1),0,2014-05-16,Driving Under The Influence,2014-05-16,2014-05-18,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,3,Low,2013-10-07,2014-05-16,2014-05-18,3,0,221,1,1\r\n7410,steven dinapoli,steven,dinapoli,2013-04-03,Male,1965-04-26,50,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-04-02 08:14:47,2013-04-03 08:17:43,13004723CF10A,2013-04-02,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-03,Risk of Violence,2,Low,2013-04-03,2013-04-02,2013-04-03,1,0,1094,0,0\r\n7411,steven nance,steven,nance,2013-02-28,Male,1986-03-11,30,25 - 45,African-American,0,9,0,0,5,-1,2013-02-27 02:39:10,2013-02-28 11:47:13,13002993CF10A,2013-02-27,,1,M,Aggravated Assault W/dead Weap,1,15000565MM30A,(M1),,2015-03-18,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,9,High,2013-02-28,Risk of Violence,8,High,2013-02-28,2015-02-21,2015-03-09,5,0,723,0,0\r\n7412,robert rees,robert,rees,2014-10-26,Male,1987-05-17,28,25 - 45,Caucasian,0,2,0,0,0,-1,2014-10-25 08:45:48,2014-10-26 08:24:24,14014389CF10A,2014-10-25,,1,F,Felony Battery (Dom Strang),1,15001706MM30A,(M1),,2015-07-12,Cruelty To Animals,,,,1,15001706MM30A,(M1),2015-07-12,Cruelty To Animals,Risk of Recidivism,2,Low,2014-10-26,Risk of Violence,2,Low,2014-10-26,2014-10-25,2014-10-26,0,0,259,1,1\r\n7413,sander ledoux,sander,ledoux,2014-10-17,Male,1994-11-18,21,Less than 25,African-American,0,7,0,0,3,-1,2014-10-16 11:07:02,2014-10-17 08:03:11,14013983CF10A,2014-10-16,,1,F,Poss Pyrrolidinovalerophenone,1,15002271CF10A,(M2),0,2015-02-18,Petit Theft,2015-02-18,2015-02-19,,0,,,,,Risk of Recidivism,7,Medium,2014-10-17,Risk of Violence,5,Medium,2014-10-17,2015-02-18,2015-02-19,3,0,124,1,1\r\n7416,lance gonzalez,lance,gonzalez,2014-02-11,Male,1989-12-19,26,25 - 45,Hispanic,0,1,0,1,2,0,2014-02-11 12:38:04,2014-02-11 08:51:19,14002285MM10A,2014-02-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-11,Risk of Violence,2,Low,2014-02-11,2014-02-11,2014-02-11,2,0,780,0,0\r\n7417,laurel femia,laurel,femia,2013-01-27,Female,1964-10-01,51,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-01-26 10:20:37,2013-01-28 08:30:53,13001277CF10A,2013-01-26,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-27,Risk of Violence,1,Low,2013-01-27,2013-01-26,2013-01-28,0,1,1160,0,0\r\n7419,mark clarke,mark,clarke,2013-02-24,Male,1994-08-11,21,Less than 25,African-American,0,7,0,0,1,0,2013-02-24 02:13:05,2013-02-27 08:20:45,13002786CF10A,2013-02-24,,0,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-24,Risk of Violence,7,Medium,2013-02-24,2013-02-24,2013-02-27,1,3,1132,0,0\r\n7420,joshe bittelman,joshe,bittelman,2013-02-26,Male,1986-04-26,29,25 - 45,Caucasian,0,2,0,0,0,-1,2013-02-25 09:36:50,2013-02-26 12:43:55,13002853CF10A,2013-02-25,,1,F,Grand Theft in the 3rd Degree,1,14004663CF10A,(M1),0,2014-04-03,Resist/Obstruct W/O Violence,2014-04-03,2014-04-17,,1,14004663CF10A,(F2),2014-04-03,Agg Fleeing/Eluding High Speed,Risk of Recidivism,2,Low,2013-02-26,Risk of Violence,3,Low,2013-02-26,2014-04-03,2014-04-17,0,0,401,1,1\r\n7421,efrain apointe,efrain,apointe,2014-02-19,Male,1972-11-24,43,25 - 45,Caucasian,0,4,0,0,0,-1,2014-02-18 05:27:55,2014-02-19 02:01:25,14002818MM10A,2014-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-19,Risk of Violence,2,Low,2014-02-19,2014-02-18,2014-02-19,0,0,772,0,0\r\n7422,kadeem banton,kadeem,banton,2013-04-20,Male,1994-03-26,22,Less than 25,African-American,0,4,0,0,1,0,2013-04-20 12:32:51,2013-04-22 09:19:28,13005640CF10A,,2013-04-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,6,Medium,2013-04-20,2014-02-03,2014-03-11,1,2,289,0,0\r\n7423,lloyd jackson,lloyd,jackson,2013-02-04,Male,1963-06-30,52,Greater than 45,African-American,0,7,0,0,0,-1,2013-02-03 04:08:22,2013-02-08 01:49:38,13001699CF10A,2013-02-03,,1,F,Possession of Cocaine,1,13004534CF10A,(M2),0,2013-03-29,Operating W/O Valid License,2013-03-29,2013-04-04,,0,,,,,Risk of Recidivism,7,Medium,2013-02-04,Risk of Violence,7,Medium,2013-02-04,2013-03-29,2013-04-04,0,4,53,1,1\r\n7424,jason banton,jason,banton,2013-04-27,Male,1979-06-29,36,25 - 45,African-American,0,1,0,0,0,0,2013-04-27 04:02:04,2013-04-28 03:43:31,13006069CF10A,2013-04-26,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-27,2013-04-28,0,1,1070,0,0\r\n7425,octavious harris,octavious,harris,2013-12-12,Male,1991-06-28,24,Less than 25,African-American,0,2,0,0,0,-1,2013-12-11 11:10:23,2013-12-12 08:41:07,13017207CF10A,2013-12-11,,1,F,Obstruct Fire Equipment,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-12,Risk of Violence,3,Low,2013-12-12,2013-12-11,2013-12-12,0,0,841,0,0\r\n7426,terris williams,terris,williams,2013-09-04,Male,1989-09-17,26,25 - 45,African-American,0,6,1,0,5,-1,2013-09-03 01:43:48,2013-09-04 04:59:20,13012458CF10A,2013-09-03,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-04,Risk of Violence,7,Medium,2013-09-04,2013-09-03,2013-09-04,5,0,940,0,0\r\n7427,kevin beach,kevin,beach,2013-01-12,Male,1988-12-09,27,25 - 45,African-American,0,8,0,0,8,0,2013-01-12 05:16:10,2013-01-12 08:53:13,13000565CF10A,2013-01-12,,0,M,Criminal Mischief Damage <$200,1,16002719MM10A,(M1),1,2016-03-21,,2016-03-22,2016-03-22,,0,,,,,Risk of Recidivism,8,High,2013-01-12,Risk of Violence,7,Medium,2013-01-12,2014-01-28,2014-03-06,8,0,381,0,0\r\n7429,brandon hayes,brandon,hayes,2014-11-05,Male,1996-10-10,19,Less than 25,Caucasian,0,8,0,0,0,-2,2014-11-03 04:49:08,2014-11-05 11:19:42,14015879MM10A,2014-11-03,,2,M,Battery,1,16000366CF10A,(F3),0,2016-01-09,,2016-01-09,2016-02-05,,0,,,,,Risk of Recidivism,8,High,2014-11-05,Risk of Violence,7,Medium,2014-11-05,2016-01-09,2016-02-05,0,0,430,1,1\r\n7432,john pitre,john,pitre,2013-04-29,Male,1990-01-19,26,25 - 45,Caucasian,0,5,0,0,2,0,2013-04-29 12:10:42,2013-04-29 06:51:38,13004470CF10A,,2013-04-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-29,Risk of Violence,3,Low,2013-04-29,2013-04-29,2013-04-29,2,0,1068,0,0\r\n7434,billy aiken,billy,aiken,2013-08-23,Male,1991-09-24,24,Less than 25,African-American,0,4,0,0,1,-163,2013-03-13 10:29:02,2013-08-16 09:09:04,12006423CF10A,,2013-03-13,163,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-23,Risk of Violence,5,Medium,2013-08-23,2013-03-13,2013-08-16,1,0,952,0,0\r\n7435,elizabeth joseph,elizabeth,joseph,2013-04-08,Female,1987-02-20,29,25 - 45,African-American,0,4,0,0,0,-3,2013-04-05 11:21:31,2013-04-06 01:18:28,13004907CF10A,2013-04-05,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-08,Risk of Violence,2,Low,2013-04-08,2013-04-05,2013-04-06,0,0,1089,0,0\r\n7437,rose perez,rose,perez,2014-08-22,Female,1986-06-11,29,25 - 45,Caucasian,0,10,0,0,20,11,2014-09-02 03:40:59,2014-10-28 09:57:38,14009350CF10A,2014-07-07,,46,F,Driving While License Revoked,1,15001305MM10A,(M2),1,2015-01-31,Petit Theft,2015-02-01,2015-05-01,,0,,,,,Risk of Recidivism,10,High,2014-08-22,Risk of Violence,3,Low,2014-08-22,2014-09-02,2014-10-28,20,0,11,0,1\r\n7439,kevin haage,kevin,haage,2014-06-20,Male,1977-05-27,38,25 - 45,African-American,0,4,0,0,1,-1,2014-06-19 11:13:05,2014-09-05 01:38:33,14008454CF10A,,2014-06-19,1,F,arrest case no charge,1,16001548CF10A,(F3),,2016-02-04,,,,,0,,,,,Risk of Recidivism,4,Low,2014-06-20,Risk of Violence,1,Low,2014-06-20,2014-06-19,2014-09-05,1,77,594,1,1\r\n7440,chaddie harrison,chaddie,harrison,2013-08-09,Male,1981-04-25,34,25 - 45,African-American,1,6,0,0,5,0,2013-08-09 01:05:06,2013-08-09 08:05:00,13012757CF10A,2013-08-08,,1,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-09,Risk of Violence,2,Low,2013-08-09,2013-08-09,2013-08-09,5,0,966,0,0\r\n7441,mikhail watson,mikhail,watson,2013-02-06,Male,1992-06-03,23,Less than 25,Other,0,4,0,0,2,-1,2013-02-05 11:15:36,2013-02-07 09:22:57,13001810CF10A,2013-02-05,,1,F,\"Deliver 3,4 Methylenediox\",1,15003101CF10A,(F3),0,2015-03-05,Carrying Concealed Firearm,2015-03-05,2015-03-06,,0,,,,,Risk of Recidivism,4,Low,2013-02-06,Risk of Violence,5,Medium,2013-02-06,2013-04-26,2013-04-26,2,1,79,0,0\r\n7442,jino desarme,jino,desarme,2013-05-10,Male,1990-03-28,26,25 - 45,Other,0,5,0,0,0,-1,2013-05-09 11:25:27,2013-05-10 01:21:51,13006650CF10A,2013-05-09,,1,F,Crim Use of Personal ID Info,1,15000207MM10A,(M2),0,2014-12-10,Open Carrying Of Weapon,2014-12-10,2014-12-11,,0,,,,,Risk of Recidivism,5,Medium,2013-05-10,Risk of Violence,4,Low,2013-05-10,2014-12-10,2014-12-11,0,0,579,1,1\r\n7443,christine king,christine,king,2013-08-02,Female,1986-11-01,29,25 - 45,African-American,0,2,0,0,1,-1,2013-08-01 06:50:52,2013-08-02 02:08:47,13014515MM10A,2013-08-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-02,Risk of Violence,2,Low,2013-08-02,2013-08-01,2013-08-02,1,0,973,0,0\r\n7444,daryll burgess,daryll,burgess,2013-02-01,Male,1991-06-22,24,Less than 25,African-American,0,5,0,0,1,0,2013-02-01 06:22:17,2013-02-02 03:17:53,13001635CF10A,2013-02-01,,0,F,Grand Theft (Motor Vehicle),1,15030363TC20A,(M2),,2015-05-17,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-01,Risk of Violence,5,Medium,2013-02-01,2013-02-01,2013-02-02,1,1,835,1,0\r\n7445,angel delgado,angel,delgado,2013-08-15,Male,1985-02-14,31,25 - 45,Hispanic,0,8,0,0,1,-1,2013-08-14 06:48:15,2013-08-31 08:40:26,13011415CF10A,2013-08-14,,1,F,Aggravated Battery / Pregnant,1,13020707MM10A,(M1),0,2013-11-03,Viol Pretrial Release Dom Viol,2013-11-03,2013-12-20,,0,,,,,Risk of Recidivism,8,High,2013-08-15,Risk of Violence,8,High,2013-08-15,2013-11-03,2013-12-20,1,16,80,1,1\r\n7446,paul mcmullin,paul,mcmullin,2014-03-17,Male,1966-01-28,50,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-16 06:13:41,2014-03-17 02:19:32,14003714CF10A,2014-03-16,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-16,2014-03-17,0,0,746,0,0\r\n7447,jelissa jolly,jelissa,jolly,2013-03-11,Female,1991-10-08,24,Less than 25,African-American,0,7,0,0,0,-1,2013-03-10 08:01:47,2013-03-11 06:44:38,13004791MM10A,2013-03-10,,1,M,Criminal Mischief>$200<$1000,1,15060273TC30A,(M2),,2015-09-01,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-11,Risk of Violence,5,Medium,2013-03-11,2013-03-10,2013-03-11,0,0,904,1,0\r\n7448,mary davis,mary,davis,2014-02-17,Female,1984-07-31,31,25 - 45,African-American,0,3,0,0,0,0,2014-02-17 12:34:37,2014-02-17 09:33:27,14002215CF10A,2014-02-16,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-17,Risk of Violence,1,Low,2014-02-17,2014-10-28,2014-10-31,0,0,253,0,0\r\n7449,rohan willis,rohan,willis,2013-10-23,Male,1979-10-02,36,25 - 45,African-American,0,9,0,0,13,-1,2013-10-22 04:48:53,2013-10-24 05:02:32,13014754CF10A,,2013-10-22,1,F,arrest case no charge,1,14003185MM40A,(M1),,2014-07-11,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,9,High,2013-10-23,Risk of Violence,5,Medium,2013-10-23,2013-10-22,2013-10-24,13,1,261,1,1\r\n7450,anton bryant,anton,bryant,2013-02-25,Male,1983-06-10,32,25 - 45,African-American,0,9,0,0,13,-1,2013-02-24 08:44:12,2013-04-04 04:04:54,13003810MM10A,2013-02-24,,1,M,Possess Cannabis/20 Grams Or Less,1,13018624TC10A,(M2),,2013-04-22,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,9,High,2013-02-25,Risk of Violence,8,High,2013-02-25,2013-02-24,2013-04-04,13,38,56,1,1\r\n7451,stephen korelisha,stephen,korelisha,2013-02-20,Male,1952-12-08,63,Greater than 45,Caucasian,0,1,0,0,1,,,,12002724MM10A,2012-02-08,,378,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,,,1,0,1136,0,0\r\n7454,jermaine tramun,jermaine,tramun,2013-09-13,Male,1974-01-03,42,25 - 45,African-American,0,2,0,0,1,-17,2013-08-27 08:39:40,2013-09-13 10:53:21,13016412MM10A,2013-08-27,,17,M,Battery,1,14026951TC30A,(M2),,2014-03-15,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-13,Risk of Violence,2,Low,2013-09-13,2014-12-27,2014-12-28,1,0,183,1,1\r\n7455,etienne dozil,etienne,dozil,2013-01-09,Male,1993-12-18,22,Less than 25,African-American,0,7,0,0,0,-1,2013-01-08 02:04:01,2013-01-09 12:43:02,13000309CF10A,2013-01-08,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-09,Risk of Violence,7,Medium,2013-01-09,2013-11-25,2013-12-10,0,0,320,0,0\r\n7457,antwaun irvin,antwaun,irvin,2013-09-26,Male,1990-02-10,26,25 - 45,African-American,0,7,0,0,5,-1,2013-09-25 06:48:06,2013-10-22 10:32:26,13013502CF10A,2013-09-25,,1,F,Burglary Dwelling Occupied,1,14005774MM10A,(M2),0,2014-03-18,Petit Theft,2014-03-18,2014-03-19,,0,,,,,Risk of Recidivism,7,Medium,2013-09-26,Risk of Violence,6,Medium,2013-09-26,2014-03-18,2014-03-19,5,26,173,1,1\r\n7459,raynard kent,raynard,kent,2013-04-02,Male,1989-10-06,26,25 - 45,African-American,0,8,0,0,10,-1,2013-04-01 07:08:46,2013-04-02 12:50:30,13004669CF10A,2013-04-01,,1,F,Driving While License Revoked,1,13008617CF10A,(M1),0,2013-06-18,Unlaw Malic Strike K9/Horses,2013-06-18,2013-07-18,,0,,,,,Risk of Recidivism,8,High,2013-04-02,Risk of Violence,7,Medium,2013-04-02,2013-06-18,2013-07-18,10,0,77,1,1\r\n7460,rolando pena,rolando,pena,2014-12-31,Male,1985-06-13,30,25 - 45,Hispanic,0,5,0,0,3,-1,2014-12-30 07:23:28,2015-01-01 12:43:33,14018228MM10A,2014-12-30,,1,M,Battery,1,15006750CF10A,(F3),0,2015-05-23,Grand Theft in the 3rd Degree,2015-05-23,2015-05-24,,0,,,,,Risk of Recidivism,5,Medium,2014-12-31,Risk of Violence,6,Medium,2014-12-31,2015-05-23,2015-05-24,3,1,143,1,1\r\n7462,john chironno,john,chironno,2014-11-16,Male,1962-11-23,53,Greater than 45,Caucasian,0,2,0,0,3,-2,2014-11-14 10:39:01,2014-11-17 02:31:06,14016373MM10A,2014-11-14,,2,M,Battery,1,15003380MM40A,(M2),,2015-08-22,Fish/Wildlife Viol Landing Requirements,,,,0,,,,,Risk of Recidivism,2,Low,2014-11-16,Risk of Violence,1,Low,2014-11-16,2014-11-14,2014-11-17,3,1,279,1,1\r\n7464,david cadet,david,cadet,2013-07-18,Male,1993-03-02,23,Less than 25,African-American,0,6,1,2,2,-2,2013-07-16 02:40:27,2013-07-18 11:18:22,13009983CF10A,2013-07-15,,3,F,Attempted Robbery  No Weapon,1,14015175MM10A,(M2),0,2014-10-18,Petit Theft,2014-10-18,2015-04-14,,0,,,,,Risk of Recidivism,6,Medium,2013-07-18,Risk of Violence,5,Medium,2013-07-18,2014-04-11,2014-05-17,2,0,267,0,1\r\n7465,brandon castillo,brandon,castillo,2013-03-06,Male,1993-12-24,22,Less than 25,Caucasian,0,3,0,0,0,-1,2013-03-05 01:56:24,2013-03-06 07:34:50,13003294CF10A,2013-03-05,,1,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-06,Risk of Violence,6,Medium,2013-03-06,2013-03-05,2013-03-06,0,0,1122,0,0\r\n7466,daniel monteferante,daniel,monteferante,2013-03-23,Male,1988-04-21,27,25 - 45,Caucasian,0,2,0,0,0,0,2013-03-23 07:09:29,2013-03-24 07:23:23,13005721MM10A,2013-03-23,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-23,Risk of Violence,3,Low,2013-03-23,2013-03-23,2013-03-24,0,1,1105,0,0\r\n7467,catrice telfort,catrice,telfort,2013-08-30,Female,1994-10-15,21,Less than 25,Other,0,4,0,0,0,-1,2013-08-29 09:09:59,2013-08-30 08:31:19,13016563MM10A,2013-08-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-30,Risk of Violence,5,Medium,2013-08-30,2013-08-29,2013-08-30,0,0,945,0,0\r\n7468,dominic bernardine,dominic,bernardine,2014-10-31,Male,1973-04-26,42,25 - 45,Caucasian,0,7,0,0,2,-1,2014-10-30 05:20:50,2014-10-31 09:04:44,14014587CF10A,2014-10-30,,1,F,Deliver Cannabis,1,15003919CF10A,(F3),0,2015-03-23,Possession of Cannabis,2015-03-23,2015-03-23,,0,,,,,Risk of Recidivism,7,Medium,2014-10-31,Risk of Violence,8,High,2014-10-31,2015-03-23,2015-03-23,2,0,143,0,1\r\n7469,dominic morrison,dominic,morrison,2014-08-29,Male,1985-03-03,31,25 - 45,African-American,0,5,0,0,4,0,2014-08-29 01:37:06,2014-09-02 04:07:07,14007316CF10A,,2014-08-29,0,F,arrest case no charge,1,15012162MM10A,(M1),,2015-11-21,Viol Pretrial Release Dom Viol,,,,0,,,,,Risk of Recidivism,5,Medium,2014-08-29,Risk of Violence,4,Low,2014-08-29,2014-08-29,2014-09-02,4,4,449,1,1\r\n7472,richard sofer,richard,sofer,2013-03-18,Male,1935-12-24,80,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-17 12:58:22,2013-03-18 02:20:57,13005234MM10A,2013-03-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-17,2013-03-18,0,0,1110,0,0\r\n7475,anthony cardullo,anthony,cardullo,2013-08-28,Male,1957-06-05,58,Greater than 45,Caucasian,0,1,0,0,1,-42,2013-07-17 01:45:43,2013-07-17 07:42:45,13013514MM10A,2013-07-16,,43,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-28,Risk of Violence,1,Low,2013-08-28,2013-07-17,2013-07-17,1,0,947,0,0\r\n7476,kerry francois,kerry,francois,2013-09-22,Male,1947-12-18,68,Greater than 45,African-American,0,4,0,0,6,-1,2013-09-21 10:10:59,2013-09-24 04:44:52,13018011MM10A,2013-09-21,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-22,Risk of Violence,1,Low,2013-09-22,2015-06-24,2015-06-26,6,2,640,0,0\r\n7477,roderick thomas,roderick,thomas,2013-02-12,Male,1992-05-28,23,Less than 25,African-American,0,8,0,0,1,0,2013-02-12 02:32:57,2013-02-14 03:14:28,13002206CF10A,2013-02-12,,0,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-12,Risk of Violence,5,Medium,2013-02-12,2013-06-29,2013-08-15,1,2,137,0,0\r\n7478,michael shipp,michael,shipp,2014-10-08,Male,1980-01-22,36,25 - 45,African-American,0,6,0,0,4,-4,2014-10-04 03:39:44,2014-10-06 06:07:59,14013380CF10A,2014-10-04,,4,F,Poss Pyrrolidinovalerophenone,1,15001370MM10A,(M1),0,2015-01-03,Possess Cannabis/20 Grams Or Less,2015-01-03,2015-02-18,,0,,,,,Risk of Recidivism,6,Medium,2014-10-08,Risk of Violence,2,Low,2014-10-08,2015-01-03,2015-02-18,4,0,87,1,1\r\n7479,david oconnell,david,oconnell,2013-03-31,Male,1992-01-20,24,Less than 25,Caucasian,0,10,0,0,0,-1,2013-03-30 10:27:46,2013-04-15 09:08:38,13004573CF10A,2013-03-30,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-03-31,Risk of Violence,7,Medium,2013-03-31,2013-07-11,2013-07-25,0,15,102,0,0\r\n7480,nathan strickland,nathan,strickland,2014-03-25,Male,1975-02-23,41,25 - 45,Caucasian,0,1,0,0,2,-42,2014-02-11 09:19:52,2014-03-25 10:21:03,14001939CF10A,2014-02-11,,42,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-25,Risk of Violence,1,Low,2014-03-25,2014-02-11,2014-03-25,2,0,738,0,0\r\n7481,santiago pinzon,santiago,pinzon,2013-04-10,Male,1995-01-17,21,Less than 25,Caucasian,0,8,0,1,0,-1,2013-04-09 07:15:24,2013-04-10 08:13:56,13005098CF10A,2013-04-09,,1,F,Battery on Law Enforc Officer,1,13009545CF10A,(F2),0,2013-07-08,Robbery / No Weapon,2013-07-08,2013-10-05,,1,13009545CF10A,(F2),2013-07-08,Robbery / No Weapon,Risk of Recidivism,8,High,2013-04-10,Risk of Violence,7,Medium,2013-04-10,2013-07-08,2013-10-05,0,0,89,1,1\r\n7482,tegray whilby,tegray,whilby,2014-04-09,Male,1990-03-12,26,25 - 45,African-American,0,4,0,0,3,0,2014-04-09 03:30:16,2014-04-10 08:41:45,14006052MM10A,2014-04-09,,0,M,Battery,1,14008252CF10A,(F3),0,2014-06-14,Felony Battery (Dom Strang),2014-06-14,2014-06-18,,1,14008252CF10A,(F3),2014-06-14,Felony Battery (Dom Strang),Risk of Recidivism,4,Low,2014-04-09,Risk of Violence,5,Medium,2014-04-09,2014-06-14,2014-06-18,3,1,66,1,1\r\n7484,crystal davis,crystal,davis,2013-04-21,Female,1985-12-10,30,25 - 45,African-American,0,7,0,0,8,-1,2013-04-20 02:35:10,2013-06-04 07:20:19,13005650CF10A,2013-04-20,,1,F,Uttering Forged Bills,1,13010796CF10A,(F3),0,2013-08-02,Crim Use of Personal ID Info,2013-08-02,2013-09-12,,0,,,,,Risk of Recidivism,7,Medium,2013-04-21,Risk of Violence,5,Medium,2013-04-21,2013-08-02,2013-09-12,8,44,103,1,1\r\n7485,joel valentin,joel,valentin,2013-12-28,Male,1977-01-15,39,25 - 45,Hispanic,0,1,0,0,0,,,,13023875MM10A,2013-12-27,,1,M,Battery,1,14014711MM10A,(M1),,2014-10-07,Battery,,,,1,14014711MM10A,(M1),2014-10-07,Battery,Risk of Recidivism,1,Low,2013-12-28,Risk of Violence,1,Low,2013-12-28,,,0,0,283,1,1\r\n7487,christopher dalessandro,christopher,dalessandro,2013-09-15,Male,1980-04-02,36,25 - 45,Caucasian,0,5,0,0,1,-1,2013-09-14 07:24:56,2013-09-15 04:24:09,13012993CF10A,2013-09-14,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-15,Risk of Violence,1,Low,2013-09-15,2013-09-14,2013-09-15,1,0,929,0,0\r\n7488,densmore daniels,densmore,daniels,2013-12-19,Male,1994-10-20,21,Less than 25,African-American,0,8,0,0,0,-1,2013-12-18 01:10:47,2014-01-21 11:37:54,13017467CF10A,2013-12-18,,1,F,Aggravated Battery,1,14015133CF10A,(M1),0,2014-11-11,Aggravated Battery / Pregnant,2014-11-11,2014-11-12,,1,14015133CF10A,(M1),2014-11-11,Aggravated Battery / Pregnant,Risk of Recidivism,8,High,2013-12-19,Risk of Violence,7,Medium,2013-12-19,2014-04-23,2014-04-28,0,33,125,0,1\r\n7490,latoya neal,latoya,neal,2013-02-02,Female,1984-11-03,31,25 - 45,African-American,0,5,0,0,1,-1,2013-02-01 09:12:20,2013-02-02 05:51:04,11017327MM10A,,2013-02-01,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-02,Risk of Violence,3,Low,2013-02-02,2013-02-01,2013-02-02,1,0,1154,0,0\r\n7493,christine golding,christine,golding,2013-11-15,Female,1995-09-10,20,Less than 25,African-American,0,6,0,0,0,-1,2013-11-14 03:12:45,2013-11-16 08:30:48,13015855CF10A,2013-11-14,,1,F,Burglary Unoccupied Dwelling,1,15008987MM10A,(M1),,2015-08-20,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-15,Risk of Violence,6,Medium,2013-11-15,2013-11-14,2013-11-16,0,1,643,1,1\r\n7495,michael somers,michael,somers,2013-02-19,Male,1966-10-31,49,Greater than 45,Caucasian,0,8,0,0,4,-8,2013-02-11 01:58:24,2013-02-15 08:53:04,13003037MM10A,2013-02-11,,8,M,Disorderly Conduct,1,16000105CF10A,(F2),,2016-01-03,Arson in the Second Degree,,,,1,16000105CF10A,(F2),2016-01-03,Arson in the Second Degree,Risk of Recidivism,8,High,2013-02-19,Risk of Violence,3,Low,2013-02-19,2013-02-11,2013-02-15,4,0,1048,1,0\r\n7496,peter reilly,peter,reilly,2013-10-20,Male,1992-02-25,24,Less than 25,Caucasian,0,9,0,0,0,0,2013-10-20 01:51:38,2013-10-22 07:47:53,13014672CF10A,2013-10-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-20,Risk of Violence,7,Medium,2013-10-20,2013-10-20,2013-10-22,0,2,894,0,0\r\n7497,tommie mims,tommie,mims,2014-02-28,Male,1996-02-15,20,Less than 25,African-American,0,8,0,0,0,-1,2014-02-27 03:24:05,2014-02-28 01:48:55,14002808CF10A,2014-02-27,,1,F,Tampering With Physical Evidence,1,14003102CF10A,(F2),0,2014-03-05,Burglary Unoccupied Dwelling,2014-03-05,2014-08-05,,0,,,,,Risk of Recidivism,8,High,2014-02-28,Risk of Violence,7,Medium,2014-02-28,2014-03-05,2014-08-05,0,0,5,1,1\r\n7499,siarhei marakin,siarhei,marakin,2013-10-21,Male,1971-08-07,44,25 - 45,Caucasian,0,1,0,0,1,-22,2013-09-29 04:09:48,2013-09-30 12:00:01,13018503MM10A,2013-09-29,,22,M,Battery,1,15032494MU10A,(M2),0,2015-12-01,Reckless Driving,2015-12-01,2015-12-02,,0,,,,,Risk of Recidivism,1,Low,2013-10-21,Risk of Violence,1,Low,2013-10-21,2015-12-01,2015-12-02,1,0,771,1,0\r\n7500,shantegra godfrey,shantegra,godfrey,2013-09-04,Female,1990-08-18,25,25 - 45,African-American,0,3,0,0,1,-13,2013-08-22 05:18:15,2013-09-04 05:19:31,13011839CF10A,2013-08-22,,13,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-04,Risk of Violence,4,Low,2013-09-04,2014-04-03,2014-04-08,1,0,211,0,0\r\n7502,aaron davis,aaron,davis,2014-11-25,Male,1974-07-30,41,25 - 45,Caucasian,0,4,0,0,11,-1,2014-11-24 01:34:13,2015-03-22 03:44:13,14015814CF10A,2014-11-24,,1,F,Felony Petit Theft,1,15003853CF10A,(F3),0,2015-03-22,Felony Petit Theft,2015-03-22,2015-07-18,,0,,,,,Risk of Recidivism,4,Low,2014-11-25,Risk of Violence,2,Low,2014-11-25,2015-03-22,2015-07-18,11,117,117,1,1\r\n7503,vinessia gray,vinessia,gray,2013-12-06,Male,1990-10-06,25,25 - 45,African-American,0,2,0,0,1,-1,2013-12-05 09:04:52,2013-12-06 08:24:30,13016849CF10A,,2013-12-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-06,Risk of Violence,3,Low,2013-12-06,2014-12-01,2014-12-05,1,0,360,0,0\r\n7508,meyer renteria,meyer,renteria,2013-10-21,Male,1971-04-30,44,25 - 45,Hispanic,0,1,0,0,0,-1,2013-10-20 01:02:00,2013-10-21 07:40:50,13019856MM10A,2013-10-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-21,Risk of Violence,1,Low,2013-10-21,2013-10-20,2013-10-21,0,0,893,0,0\r\n7510,irving emmanuel,irving,emmanuel,2013-05-07,Male,1982-09-18,33,25 - 45,African-American,0,1,0,0,0,-1,2013-05-06 11:44:29,2013-05-07 01:25:39,13006548CF10A,2013-05-06,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-07,Risk of Violence,1,Low,2013-05-07,2013-05-06,2013-05-07,0,0,1060,0,0\r\n7511,akeem james,akeem,james,2014-11-09,Male,1996-03-07,20,Less than 25,African-American,0,7,0,0,0,-1,2014-11-08 01:54:07,2014-11-09 06:36:07,14015007CF10A,2014-11-08,,1,F,Aggrav Battery w/Deadly Weapon,1,15000314MM10A,(M1),1,2015-01-08,Viol Pretrial Release Dom Viol,2015-01-09,2015-03-18,,1,15000314MM10A,(M1),2015-01-08,Battery,Risk of Recidivism,7,Medium,2014-11-09,Risk of Violence,7,Medium,2014-11-09,2015-01-09,2015-03-18,0,0,60,1,1\r\n7513,virgil stephens,virgil,stephens,2014-11-07,Male,1994-08-08,21,Less than 25,African-American,0,6,0,0,1,-1,2014-11-06 08:03:16,2014-11-07 09:08:48,14014927CF10A,2014-11-06,,1,F,Grand Theft in the 3rd Degree,1,15013443MM10A,(M2),,2015-12-30,Prowling/Loitering,,,,0,,,,,Risk of Recidivism,6,Medium,2014-11-07,Risk of Violence,8,High,2014-11-07,2014-11-06,2014-11-07,1,0,418,1,1\r\n7514,belinda triana,belinda,triana,2013-03-26,Male,1972-01-06,44,25 - 45,Caucasian,0,5,0,0,3,-4,2013-03-22 11:44:12,2013-03-23 07:50:49,13004194CF10A,2013-03-22,,4,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-26,Risk of Violence,1,Low,2013-03-26,2014-02-05,2014-03-06,3,0,316,0,0\r\n7515,christopher hamilton,christopher,hamilton,2014-04-17,Male,1992-05-30,23,Less than 25,African-American,0,9,0,1,1,-10,2014-04-07 11:10:42,2014-04-17 11:03:23,14004202CF10A,,2014-04-07,10,F,arrest case no charge,1,15015904CF10A,(F3),,2015-12-12,Burglary Conveyance Unoccup,,,,0,,,,,Risk of Recidivism,9,High,2014-04-17,Risk of Violence,8,High,2014-04-17,2014-04-07,2014-04-17,1,0,604,1,1\r\n7516,jerome roberts,jerome,roberts,2014-03-18,Male,1980-08-22,35,25 - 45,African-American,0,8,0,0,0,-1,2014-03-17 06:02:01,2014-05-13 11:54:15,14004634MM10A,2014-03-17,,1,M,Battery,1,16003295CF10A,(M1),0,2016-03-14,,2016-03-14,2016-03-15,,0,,,,,Risk of Recidivism,8,High,2014-03-18,Risk of Violence,6,Medium,2014-03-18,2016-03-14,2016-03-15,0,56,727,1,1\r\n7517,denise jackson-minott,denise,jackson-minott,2013-03-23,Female,1974-07-24,41,25 - 45,African-American,0,1,0,0,0,0,2013-03-23 03:53:04,2013-03-24 06:30:15,13005720MM10A,2013-03-23,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-23,Risk of Violence,1,Low,2013-03-23,2013-03-23,2013-03-24,0,1,1105,0,0\r\n7519,haywood farrow,haywood,farrow,2013-02-20,Male,1985-11-30,30,25 - 45,African-American,0,5,0,0,1,-1,2013-02-19 11:27:33,2013-03-13 05:49:26,13002530CF10A,2013-02-19,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-20,Risk of Violence,2,Low,2013-02-20,2013-02-19,2013-03-13,1,21,1136,0,0\r\n7520,rosalia poirier,rosalia,poirier,2013-03-10,Female,1992-07-30,23,Less than 25,Caucasian,0,6,0,0,0,,,,12000487MO30A,,2012-09-20,171,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-10,Risk of Violence,5,Medium,2013-03-10,,,0,0,1118,0,0\r\n7522,jamie sapp,jamie,sapp,2014-03-07,Male,1980-03-24,36,25 - 45,African-American,0,2,0,0,7,-1,2014-03-06 05:34:44,2014-03-08 03:57:59,14003211CF10A,2014-03-06,,1,F,Possession of Cocaine,1,14034506TC30A,(M2),36,2014-04-01,Unlaw LicTag/Sticker Attach,2014-05-07,2014-05-24,,0,,,,,Risk of Recidivism,2,Low,2014-03-07,Risk of Violence,1,Low,2014-03-07,2014-03-06,2014-03-08,7,1,25,1,1\r\n7523,cedric fraser,cedric,fraser,2014-10-05,Male,1989-12-08,26,25 - 45,African-American,0,1,0,0,1,-1,2014-10-04 09:26:00,2014-10-05 01:23:01,14013402CF10A,2014-10-04,,1,F,Grand Theft in the 3rd Degree,1,14016939CF10A,(F3),,2014-11-16,Felony Batt(Great Bodily Harm),,,,1,14016939CF10A,(F3),2014-11-16,Felony Batt(Great Bodily Harm),Risk of Recidivism,1,Low,2014-10-05,Risk of Violence,2,Low,2014-10-05,2014-10-04,2014-10-05,1,0,42,1,1\r\n7524,tatiana quiruz,tatiana,quiruz,2013-09-09,Female,1984-03-09,32,25 - 45,Hispanic,0,2,0,0,0,-3,2013-09-06 01:25:48,2013-09-06 09:12:22,13012552CF10A,2013-09-05,,4,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2013-09-06,2013-09-06,0,0,935,0,0\r\n7525,christopher hernandez,christopher,hernandez,2013-07-09,Male,1990-02-16,26,25 - 45,Caucasian,0,4,0,0,2,-60,2013-05-10 03:57:24,2013-05-10 08:47:36,13007633CF10A,2013-05-10,,60,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-09,Risk of Violence,4,Low,2013-07-09,2013-05-10,2013-05-10,2,0,997,0,0\r\n7526,james mcdowell,james,mcdowell,2013-01-15,Male,1992-11-15,23,Less than 25,Caucasian,0,3,0,0,0,-1,2013-01-14 12:25:28,2013-01-15 01:39:22,13000881MM10A,2013-01-14,,1,M,Resist/Obstruct W/O Violence,1,13007542CF10A,(M1),0,2013-05-27,Resist/Obstruct W/O Violence,2013-05-27,2014-01-25,,0,,,,,Risk of Recidivism,3,Low,2013-01-15,Risk of Violence,5,Medium,2013-01-15,2013-05-27,2014-01-25,0,0,132,1,1\r\n7530,denise smith,denise,smith,2014-01-02,Female,1972-05-13,43,25 - 45,African-American,0,9,0,1,9,-1,2014-01-01 04:58:59,2014-01-03 04:58:13,14000041MM10A,2014-01-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-02,Risk of Violence,7,Medium,2014-01-02,2014-01-01,2014-01-03,9,1,820,0,0\r\n7531,devion ford,devion,ford,2013-02-14,Male,1985-08-29,30,25 - 45,African-American,0,2,0,0,3,0,2013-02-14 10:24:40,2013-02-15 07:40:58,13001602CF10A,,2013-02-14,0,F,arrest case no charge,1,13000677MM20A,(M2),216,2013-03-03,Petit Theft,2013-10-05,2013-10-06,,0,,,,,Risk of Recidivism,2,Low,2013-02-14,Risk of Violence,2,Low,2013-02-14,2013-02-14,2013-02-15,3,1,17,1,1\r\n7534,daniel chiswell,daniel,chiswell,2013-07-01,Male,1971-08-31,44,25 - 45,Caucasian,0,1,0,0,1,-4,2013-06-27 05:42:08,2013-06-27 07:59:56,13009078CF10A,2013-06-27,,4,F,Possession Of Heroin,1,13001166MM30A,(M1),,2013-08-19,POSSESS FIELD BOX WITH REGISTERED MARK,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-01,Risk of Violence,2,Low,2013-07-01,2014-02-12,2014-02-18,1,0,49,1,1\r\n7535,ryan milbry,ryan,milbry,2013-01-10,Male,1979-03-08,37,25 - 45,African-American,0,3,0,0,1,,,,10005414CF10A,2010-03-28,,1019,F,Accessory After the Fact,1,13034609TC10A,(M2),,2013-03-22,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-10,Risk of Violence,1,Low,2013-01-10,,,1,0,71,1,1\r\n7536,christian johnson,christian,johnson,2014-01-28,Male,1977-01-12,39,25 - 45,Caucasian,0,1,0,0,1,-4,2014-01-24 01:00:03,2014-01-25 02:10:46,14001053CF10A,2014-01-24,,4,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-28,Risk of Violence,1,Low,2014-01-28,2014-08-27,2014-09-03,1,0,211,0,0\r\n7537,mauricio buitrago,mauricio,buitrago,2013-08-04,Male,1978-12-23,37,25 - 45,Hispanic,0,1,0,0,2,0,2013-08-04 01:13:42,2013-08-05 02:22:39,13010838CF10A,2013-08-03,,1,F,Aggravated Battery / Pregnant,1,13117897TC30A,(M2),,2013-11-08,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-04,Risk of Violence,1,Low,2013-08-04,2013-08-04,2013-08-05,2,1,96,1,1\r\n7538,yolanda allen,yolanda,allen,2013-10-30,Female,1966-09-04,49,Greater than 45,African-American,0,1,0,0,1,,,,12006122CF10A,2010-10-02,,1124,F,Unemployment Compensatn Fraud,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-30,Risk of Violence,1,Low,2013-10-30,,,1,0,884,0,0\r\n7540,john edward,john,edward,2013-03-29,Male,1984-07-31,31,25 - 45,African-American,0,8,0,0,6,-1,2013-03-28 07:52:44,2013-03-29 09:23:33,13004493CF10A,2013-03-28,,1,F,Resist Officer w/Violence,1,13006584CF10A,(F3),68,2013-05-08,Driving While License Revoked,2013-07-15,2015-01-13,,0,,,,,Risk of Recidivism,8,High,2013-03-29,Risk of Violence,4,Low,2013-03-29,2015-01-13,2020-01-01,6,0,40,1,1\r\n7541,larry boyd,larry,boyd,2013-03-02,Male,1953-04-08,63,Greater than 45,Caucasian,0,1,0,0,5,-1,2013-03-01 09:14:42,2013-03-05 10:01:18,13004228MO10A,2013-03-01,,1,M,Prostitution,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-02,Risk of Violence,1,Low,2013-03-02,2013-04-27,2013-05-06,5,3,56,0,0\r\n7542,kenneth smith,kenneth,smith,2013-12-14,Female,1949-12-01,66,Greater than 45,African-American,0,8,0,0,11,-1,2013-12-13 10:22:46,2013-12-19 05:57:53,13017249CF10A,2013-12-13,,1,F,Poss Wep Conv Felon,1,15005096CF10A,(F3),0,2015-04-18,Grand Theft in the 3rd Degree,2015-04-18,2015-10-13,,0,,,,,Risk of Recidivism,8,High,2013-12-14,Risk of Violence,2,Low,2013-12-14,2015-04-18,2015-10-13,11,5,490,1,1\r\n7543,joshua diaz,joshua,diaz,2014-06-27,Male,1996-06-23,19,Less than 25,Hispanic,2,8,0,0,2,-2,2014-06-25 03:16:41,2014-06-26 06:32:57,14008005CF10A,,2014-06-25,2,F,arrest case no charge,1,15010277CF10A,(F2),,2015-08-10,Burglary Unoccupied Dwelling,,,,0,,,,,Risk of Recidivism,8,High,2014-06-27,Risk of Violence,9,High,2014-06-27,2014-10-13,2014-11-27,2,0,108,0,1\r\n7545,yevgeniy kochnev,yevgeniy,kochnev,2013-05-09,Male,1991-08-15,24,Less than 25,Caucasian,0,5,0,2,3,-1,2013-05-08 11:47:13,2013-05-09 07:58:42,13006596CF10A,2013-05-08,,1,F,Purchase Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-09,Risk of Violence,4,Low,2013-05-09,2013-05-08,2013-05-09,3,0,1058,0,0\r\n7546,xavier segura,xavier,segura,2013-02-16,Male,1994-11-06,21,Less than 25,Caucasian,1,10,0,3,2,0,2013-02-16 04:51:02,2013-03-15 07:24:41,13003363MM10A,2013-02-16,,0,M,Battery,1,15014200CF10A,(F3),,2015-11-01,Possession of Cocaine,,,,0,,,,,Risk of Recidivism,10,High,2013-02-16,Risk of Violence,8,High,2013-02-16,2014-06-06,2014-09-28,2,27,475,0,0\r\n7547,lisa quiggins,lisa,quiggins,2013-05-25,Female,1967-10-12,48,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-05-24 08:33:21,2013-05-26 07:23:38,13007430CF10A,2013-05-24,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-25,Risk of Violence,1,Low,2013-05-25,2014-01-16,2014-03-07,0,1,236,0,0\r\n7548,jeanpierre germain,jeanpierre,germain,2013-05-03,Male,1978-11-14,37,25 - 45,African-American,0,1,0,0,0,-1,2013-05-02 02:37:37,2013-05-15 05:49:31,13006337CF10A,2013-05-02,,1,F,Poss Similitude of Drivers Lic,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-03,Risk of Violence,1,Low,2013-05-03,2013-05-02,2013-05-15,0,12,1064,0,0\r\n7551,chantel falconer,chantel,falconer,2014-03-07,Male,1994-12-21,21,Less than 25,African-American,0,2,0,0,0,-1,2014-03-06 08:42:24,2014-03-07 08:49:19,14003917MM10A,2014-03-06,,1,M,Battery,1,14007126MM10A,(M2),0,2014-04-29,Petit Theft,2014-04-29,2014-04-30,,0,,,,,Risk of Recidivism,2,Low,2014-03-07,Risk of Violence,5,Medium,2014-03-07,2014-04-29,2014-04-30,0,0,53,1,1\r\n7552,sam tommie,sam,tommie,2014-05-02,Male,1984-08-14,31,25 - 45,Hispanic,0,5,0,0,1,,,,10017288CF10A,,2012-10-30,549,F,arrest case no charge,1,14014014MM10A,(M2),,2014-09-21,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2014-05-02,Risk of Violence,6,Medium,2014-05-02,,,1,0,142,1,1\r\n7553,mickelia mckenzie,mickelia,mckenzie,2014-02-27,Female,1995-12-04,20,Less than 25,Other,0,5,0,0,0,-1,2014-02-26 02:24:25,2014-02-27 08:10:28,14003381MM10A,2014-02-26,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-27,Risk of Violence,7,Medium,2014-02-27,2014-02-26,2014-02-27,0,0,764,0,0\r\n7555,randa natour,randa,natour,2013-08-20,Female,1952-02-16,64,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-19 07:58:52,2013-08-20 07:56:24,13015750MM10A,2013-08-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-19,2013-08-20,0,0,955,0,0\r\n7556,tayler reed,tayler,reed,2013-02-11,Male,1993-08-05,22,Less than 25,Caucasian,0,6,0,0,0,0,2013-02-11 12:43:16,2013-02-12 04:33:35,13006142TC10A,2013-02-10,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-11,Risk of Violence,5,Medium,2013-02-11,2013-02-11,2013-02-12,0,1,1145,0,0\r\n7559,jose matos,jose,matos,2013-01-13,Male,1972-05-26,43,25 - 45,Caucasian,0,3,0,0,8,-1,2013-01-12 12:14:44,2013-01-14 02:47:11,12001565CF10A,,2013-01-12,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-14,8,1,1174,0,0\r\n7560,john stancil,john,stancil,2013-02-20,Male,1990-12-11,25,25 - 45,Caucasian,0,7,0,0,3,-24,2013-01-27 04:35:25,2013-02-15 10:40:07,11003425CF10A,,2013-01-28,23,F,arrest case no charge,1,13005077CF10A,(M1),,2013-04-09,Possess Drug Paraphernalia,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-20,Risk of Violence,3,Low,2013-02-20,2013-01-27,2013-02-15,3,0,48,1,1\r\n7561,bryan holloway,bryan,holloway,2013-05-07,Male,1983-02-03,33,25 - 45,Caucasian,0,9,0,0,10,0,2013-05-07 11:22:11,2013-09-02 05:34:54,13006519CF10A,2013-05-07,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-07,Risk of Violence,8,High,2013-05-07,2013-05-07,2013-09-02,10,118,1060,0,0\r\n7562,demetrius sweeting,demetrius,sweeting,2013-08-22,Male,1989-04-29,26,25 - 45,African-American,0,6,0,0,1,-1,2013-08-21 04:14:04,2013-08-22 07:41:00,13011736CF10A,2013-08-21,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-22,Risk of Violence,6,Medium,2013-08-22,2013-08-21,2013-08-22,1,0,953,0,0\r\n7563,rachel bollman,rachel,bollman,2013-01-22,Female,1982-08-24,33,25 - 45,Caucasian,0,3,0,0,1,-5,2013-01-17 10:44:28,2013-01-18 04:27:34,09006158MM10A,2009-01-25,,1458,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-22,Risk of Violence,2,Low,2013-01-22,2013-01-17,2013-01-18,1,0,1165,0,0\r\n7564,matthew john,matthew,john,2014-02-28,Male,1991-01-06,25,25 - 45,Caucasian,0,3,0,0,3,-58,2014-01-01 12:00:58,2014-02-28 11:19:56,14000058CF10A,2014-01-01,,58,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-28,Risk of Violence,3,Low,2014-02-28,2014-01-01,2014-02-28,3,0,763,0,0\r\n7567,shannon lewis,shannon,lewis,2013-07-09,Female,1985-12-19,30,25 - 45,African-American,0,6,0,0,3,-51,2013-05-19 08:24:09,2013-05-19 07:30:19,12056716TC10A,2012-11-15,,236,M,Present Proof of Invalid Insur,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-09,Risk of Violence,5,Medium,2013-07-09,2013-05-19,2013-05-19,3,0,997,0,0\r\n7568,demetri jackson,demetri,jackson,2013-08-15,Female,1995-04-27,20,Less than 25,African-American,0,5,3,0,3,,,,11067733TC20A,2011-10-06,,679,M,Operating W/O Valid License,1,16009692TC30A,(M2),,2016-02-04,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-15,Risk of Violence,7,Medium,2013-08-15,,,3,0,903,1,0\r\n7570,sico charles,sico,charles,2013-03-21,Male,1971-04-23,44,25 - 45,African-American,0,1,0,0,0,-1,2013-03-20 01:14:13,2013-03-22 04:13:35,13004019CF10A,2013-03-20,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,1,Low,2013-03-21,2013-03-20,2013-03-22,0,1,1107,0,0\r\n7571,adrian bowling,adrian,bowling,2014-02-02,Male,1985-04-03,31,25 - 45,African-American,0,2,0,0,0,0,2014-02-02 05:21:54,2014-02-03 01:20:35,14001467CF10A,2014-02-02,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-02,Risk of Violence,2,Low,2014-02-02,2015-04-20,2015-05-20,0,1,442,0,0\r\n7572,terry mueller,terry,mueller,2013-10-30,Male,1966-01-17,50,Greater than 45,Caucasian,0,6,0,0,9,-1,2013-10-29 07:43:01,2013-10-30 08:06:20,13044394TC10A,2013-10-29,,1,M,Susp Drivers Lic 1st Offense,1,14007285MM10A,(M2),0,2014-04-22,Susp Drivers Lic 1st Offense,2014-04-22,2014-04-24,,0,,,,,Risk of Recidivism,6,Medium,2013-10-30,Risk of Violence,4,Low,2013-10-30,2014-04-22,2014-04-24,9,0,174,1,1\r\n7573,pete peterman,pete,peterman,2013-01-13,Male,1983-03-04,33,25 - 45,African-American,0,9,2,2,16,-1,2013-01-12 07:10:00,2013-01-18 12:48:33,13000546CF10A,2013-01-12,,1,F,Crimin Mischief Damage $1000+,1,14000529MM10A,(M1),1,2014-01-10,Resist/Obstruct W/O Violence,2014-01-11,2014-01-31,,0,,,,,Risk of Recidivism,9,High,2013-01-13,Risk of Violence,6,Medium,2013-01-13,2013-06-17,2013-06-19,16,5,155,0,1\r\n7574,geralyn francis,geralyn,francis,2013-02-13,Female,1966-01-06,50,Greater than 45,Caucasian,0,1,0,0,1,,,,11013978MM10A,2011-06-18,,606,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,,,1,0,1143,0,0\r\n7576,leon robinson,leon,robinson,2013-09-13,Male,1985-01-03,31,25 - 45,African-American,0,10,0,0,1,0,2013-09-13 12:13:35,2013-09-13 09:01:22,13004868CF10A,,2013-09-12,1,F,arrest case no charge,1,14012048TC10A,(M2),,2014-03-22,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,10,High,2013-09-13,Risk of Violence,6,Medium,2013-09-13,2015-12-03,2020-01-01,1,0,190,1,1\r\n7577,maritza valle,maritza,valle,2013-04-29,Female,1991-03-01,25,25 - 45,Hispanic,0,3,0,0,0,-3,2013-04-26 05:54:05,2013-04-26 08:05:35,13008078MM10A,2013-04-26,,3,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-29,Risk of Violence,3,Low,2013-04-29,2013-04-26,2013-04-26,0,0,1068,0,0\r\n7578,esther pierre,esther,pierre,2014-01-08,Female,1972-05-23,43,25 - 45,African-American,0,2,0,0,2,-17,2013-12-22 11:44:51,2014-01-08 10:45:35,13023584MM10A,2013-12-22,,17,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,1,Low,2014-01-08,2013-12-22,2014-01-08,2,0,814,0,0\r\n7580,lisa santoro-davis,lisa,santoro-davis,2013-03-04,Female,1965-03-29,51,Greater than 45,Caucasian,0,8,0,0,2,-39,2013-01-24 09:25:10,2013-01-31 08:50:26,12017038CF10A,,2013-01-27,36,F,arrest case no charge,1,14009016CF10A,(F3),,2014-07-01,Possession of Methadone,,,,0,,,,,Risk of Recidivism,8,High,2013-03-04,Risk of Violence,3,Low,2013-03-04,2013-06-21,2013-06-25,2,0,109,0,1\r\n7581,emile jonassaint,emile,jonassaint,2014-10-19,Male,1988-12-09,27,25 - 45,African-American,0,1,0,0,0,0,2014-10-19 01:08:23,2014-10-19 01:38:27,14014087CF10A,2014-10-18,,1,M,Child Abuse,1,16000664MM40A,(M2),,2016-01-19,Petit Theft,,,,0,,,,,Risk of Recidivism,1,Low,2014-10-19,Risk of Violence,2,Low,2014-10-19,2014-10-19,2014-10-19,0,0,457,1,1\r\n7585,derrick rowe,derrick,rowe,2013-12-27,Male,1981-08-02,34,25 - 45,Other,0,1,0,0,2,-1,2013-12-26 03:49:10,2013-12-27 09:51:55,03042741TC20A,,2003-06-10,3853,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-27,Risk of Violence,1,Low,2013-12-27,2013-12-26,2013-12-27,2,0,826,0,0\r\n7586,dennis tummings,dennis,tummings,2013-05-13,Male,1971-09-17,44,25 - 45,Other,0,1,0,0,0,-1,2013-05-12 06:53:23,2013-05-17 12:00:04,13006794CF10A,2013-05-12,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-12,2013-05-17,0,4,1054,0,0\r\n7587,renard mccloud,renard,mccloud,2013-04-02,Male,1985-01-30,31,25 - 45,African-American,0,10,0,0,6,29,2013-05-01 08:13:19,2013-05-02 04:15:00,13005342MM10A,2012-11-30,,123,M,Battery,1,13039138TC10A,(M2),51,2013-07-18,Driving License Suspended,2013-09-07,2013-09-08,,0,,,,,Risk of Recidivism,10,High,2013-04-02,Risk of Violence,5,Medium,2013-04-02,2013-05-01,2013-05-02,6,0,29,0,1\r\n7588,roberto tomlinson,roberto,tomlinson,2013-06-10,Male,1985-05-10,30,25 - 45,Hispanic,0,4,1,0,14,-79,2013-03-23 04:15:49,2013-05-17 07:53:08,13004200CF10A,2013-03-23,,79,F,Battery on Law Enforc Officer,1,14012505CF10A,(M1),0,2014-09-15,Trespass Other Struct/Conve,2014-09-15,2014-12-06,,1,15010553CF10A,(F3),2015-08-15,Aggravated Assault W/Dead Weap,Risk of Recidivism,4,Low,2013-06-10,Risk of Violence,6,Medium,2013-06-10,2014-09-15,2014-12-06,14,0,462,1,1\r\n7589,jabari wells,jabari,wells,2013-04-23,Male,1989-08-08,26,25 - 45,African-American,0,3,0,0,2,-1,2013-04-22 02:30:22,2013-09-17 05:56:06,13005735CF10A,2013-04-22,,1,F,Grand Theft in the 3rd Degree,1,14005908CF10A,(F3),,2014-04-28,Possession Burglary Tools,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-23,Risk of Violence,4,Low,2013-04-23,2013-04-22,2013-09-17,2,147,370,1,1\r\n7591,tremaine mckenzie,tremaine,mckenzie,2013-10-22,Male,1995-09-20,20,Less than 25,African-American,2,9,2,0,4,-1,2013-10-21 09:58:35,2013-10-23 03:44:00,13014716CF10A,2013-10-21,,1,F,Possession of Cocaine,1,16002649CF10A,(F1),0,2016-03-01,,2016-03-01,2016-03-03,,0,,,,,Risk of Recidivism,9,High,2013-10-22,Risk of Violence,9,High,2013-10-22,2013-12-29,2013-12-30,4,1,68,0,1\r\n7593,daniel hernandez,daniel,hernandez,2014-06-26,Male,1975-03-20,41,25 - 45,Hispanic,0,2,0,0,1,0,2014-06-26 03:41:33,2014-06-26 09:02:30,14008811CF10A,2014-06-26,,0,F,Possession of Cocaine,1,15025616TC20A,(M2),,2015-04-21,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-06-26,Risk of Violence,2,Low,2014-06-26,2014-06-26,2014-06-26,1,0,299,1,1\r\n7595,julia acosta,julia,acosta,2014-01-21,Female,1960-06-06,55,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-01-20 03:07:14,2014-01-21 01:35:53,14000992MM10A,2014-01-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-21,Risk of Violence,1,Low,2014-01-21,2014-01-20,2014-01-21,0,0,801,0,0\r\n7596,joseph janes,joseph,janes,2014-02-07,Male,1986-10-14,29,25 - 45,African-American,3,2,0,0,6,-26,2014-01-12 05:40:58,2014-02-07 10:54:39,14000540CF10A,,2014-01-29,9,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-07,Risk of Violence,2,Low,2014-02-07,2014-01-12,2014-02-07,6,0,784,0,0\r\n7597,marvin davis,marvin,davis,2013-08-15,Male,1984-12-24,31,25 - 45,Other,0,1,0,0,0,-1,2013-08-14 04:57:47,2013-08-15 07:27:09,13015402MM10A,2013-08-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-15,Risk of Violence,1,Low,2013-08-15,2013-08-14,2013-08-15,0,0,960,0,0\r\n7602,anthony stephens,anthony,stephens,2014-09-24,Male,1984-05-08,31,25 - 45,African-American,0,7,0,1,11,0,2014-09-24 05:15:31,2014-09-24 08:19:53,14012933CF10A,2014-09-24,,0,F,Grand Theft (Motor Vehicle),1,15017647TC10A,(M2),1,2015-05-18,Operating W/O Valid License,2015-05-19,2015-05-19,,0,,,,,Risk of Recidivism,7,Medium,2014-09-24,Risk of Violence,5,Medium,2014-09-24,2015-02-20,2015-02-21,11,0,149,0,1\r\n7603,gerard fowler,gerard,fowler,2013-03-12,Male,1964-04-02,52,Greater than 45,Other,0,1,0,0,0,-1,2013-03-11 12:45:52,2013-03-12 03:29:13,13003570CF10A,2013-03-11,,1,F,Structuring Transactions,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-03-11,2013-03-12,0,0,1116,0,0\r\n7604,william warrington,william,warrington,2013-03-25,Male,1956-07-11,59,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-24 01:58:50,2013-03-25 08:08:20,13005743MM10A,2013-03-23,,2,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2014-06-17,2014-07-03,0,0,449,0,0\r\n7605,adam mccarthy,adam,mccarthy,2013-04-24,Male,1966-10-07,49,Greater than 45,African-American,0,1,0,0,1,0,2013-04-24 03:51:08,2013-04-24 08:20:44,13007982MM10A,2013-04-24,,0,M,Battery,1,14009089MM10A,(M1),0,2014-06-08,Battery,2014-06-08,2014-06-11,,1,14009089MM10A,(M1),2014-06-08,Battery,Risk of Recidivism,1,Low,2013-04-24,Risk of Violence,1,Low,2013-04-24,2014-06-08,2014-06-11,1,0,410,1,1\r\n7606,jerry warrens,jerry,warrens,2013-05-06,Male,1979-07-27,36,25 - 45,Caucasian,0,6,0,0,11,-1,2013-05-05 06:23:11,2013-05-07 10:47:02,13008699MM10A,2013-05-05,,1,M,Battery,1,13013844MM10A,(M1),0,2013-06-16,Resist/Obstruct W/O Violence,2013-06-16,2013-07-25,,1,13008492CF10A,(M1),2013-06-16,Battery,Risk of Recidivism,6,Medium,2013-05-06,Risk of Violence,4,Low,2013-05-06,2013-06-16,2013-07-25,11,1,41,1,1\r\n7607,marsofia jean,marsofia,jean,2013-11-07,Female,1993-04-08,23,Less than 25,African-American,0,3,0,0,1,-1,2013-11-06 03:13:30,2013-11-07 02:07:09,13015490CF10A,2013-11-06,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-07,Risk of Violence,4,Low,2013-11-07,2013-11-06,2013-11-07,1,0,876,0,0\r\n7611,william weiss,william,weiss,2014-07-13,Male,1969-11-16,46,Greater than 45,Caucasian,0,7,0,0,26,-1,2014-07-12 05:40:22,2014-12-26 07:56:44,14009546CF10A,2014-07-12,,1,F,Burglary Unoccupied Dwelling,1,15000407CF10A,(F3),,2015-01-09,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,7,Medium,2014-07-13,Risk of Violence,3,Low,2014-07-13,2014-07-12,2014-12-26,26,166,180,1,1\r\n7612,brian cali,brian,cali,2013-08-20,Male,1956-10-05,59,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-08-19 08:51:21,2013-08-26 02:47:29,13015751MM10A,2013-08-19,,1,M,Battery,1,14028850TC40A,(M2),,2014-04-22,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-19,2013-08-26,2,6,245,1,1\r\n7613,alfonso quesada,alfonso,quesada,2013-10-21,Male,1964-05-09,51,Greater than 45,Hispanic,0,1,0,0,1,-12,2013-10-09 10:39:23,2013-10-16 05:04:21,13013687CF10A,,2013-10-09,12,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-21,Risk of Violence,1,Low,2013-10-21,2013-10-09,2013-10-16,1,0,893,0,0\r\n7615,fred holmes,fred,holmes,2013-03-31,Male,1981-07-25,34,25 - 45,African-American,0,1,0,0,0,0,2013-03-31 12:16:34,2013-03-31 05:04:52,13004600CF10A,2013-03-30,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-31,Risk of Violence,2,Low,2013-03-31,2013-03-31,2013-03-31,0,0,1097,0,0\r\n7618,akhter hossain,akhter,hossain,2013-11-18,Male,1983-09-15,32,25 - 45,Other,0,1,0,0,0,-1,2013-11-17 05:08:44,2013-11-18 02:11:05,13015972CF10A,2013-11-17,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-18,Risk of Violence,1,Low,2013-11-18,2013-11-17,2013-11-18,0,0,865,0,0\r\n7620,thurman jones,thurman,jones,2013-09-19,Male,1961-11-09,54,Greater than 45,African-American,0,3,0,0,1,-1,2013-09-18 10:24:01,2013-09-19 08:42:52,13010299CF10A,,2013-09-18,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-19,Risk of Violence,1,Low,2013-09-19,2015-07-08,2015-07-08,1,0,657,0,0\r\n7622,herman smith,herman,smith,2013-05-18,Male,1992-03-05,24,Less than 25,African-American,0,10,1,0,3,-1,2013-05-17 12:13:55,2013-05-18 06:40:48,13007044CF10A,2013-05-16,,2,F,\"Poss3,4 Methylenedioxymethcath\",1,13012694CF10A,(F2),0,2013-09-08,Poss of Firearm by Convic Felo,2013-09-08,2014-02-04,,0,,,,,Risk of Recidivism,10,High,2013-05-18,Risk of Violence,10,High,2013-05-18,2013-06-24,2013-06-25,3,0,37,0,1\r\n7624,joseph fermoile,joseph,fermoile,2014-07-10,Male,1980-10-04,35,25 - 45,Caucasian,0,6,1,0,16,35,2014-08-14 10:43:26,2014-08-15 04:18:47,13013570CF10A,,2013-09-25,288,F,arrest case no charge,1,14011115CF10A,(F3),0,2014-08-14,Grand Theft in the 3rd Degree,2014-08-14,2014-08-15,,0,,,,,Risk of Recidivism,6,Medium,2014-07-10,Risk of Violence,3,Low,2014-07-10,2014-08-14,2014-08-15,16,0,35,1,1\r\n7625,kymar forchin,kymar,forchin,2013-02-09,Male,1983-10-09,32,25 - 45,Other,0,3,0,0,0,-1,2013-02-08 11:50:54,2013-02-09 08:05:24,13002888MM10A,2013-02-08,,1,M,Solic to Commit Battery,1,13005139MM10A,(M1),0,2013-03-15,Viol Pretrial Release Dom Viol,2013-03-15,2013-03-16,,0,,,,,Risk of Recidivism,3,Low,2013-02-09,Risk of Violence,2,Low,2013-02-09,2013-03-15,2013-03-16,0,0,34,1,1\r\n7631,daniel turbay,daniel,turbay,2013-12-14,Male,1993-05-01,22,Less than 25,Caucasian,0,5,0,0,0,-1,2013-12-13 11:33:48,2013-12-14 01:30:52,13017237CF10A,2013-12-13,,1,F,Possession of Cocaine,1,14004048MM10A,(M1),0,2014-03-08,Refuse Submit Blood/Breath Test,2014-03-08,2014-03-08,,0,,,,,Risk of Recidivism,5,Medium,2013-12-14,Risk of Violence,5,Medium,2013-12-14,2014-03-08,2014-03-08,0,0,84,0,1\r\n7634,troy paul,troy,paul,2013-03-13,Male,1979-08-08,36,25 - 45,African-American,0,1,0,0,0,0,2013-03-13 02:27:45,2013-03-13 07:08:18,13003679CF10A,2013-03-12,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-13,Risk of Violence,1,Low,2013-03-13,2013-03-13,2013-03-13,0,0,1115,0,0\r\n7635,kenneth young,kenneth,young,2013-06-04,Male,1954-10-31,61,Greater than 45,Caucasian,0,1,0,0,0,-4,2013-05-31 09:09:37,2013-06-01 08:30:27,13010462MM10A,2013-05-31,,4,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-04,Risk of Violence,1,Low,2013-06-04,2013-08-09,2013-09-16,0,0,66,0,0\r\n7636,susan roberts,susan,roberts,2013-01-06,Female,1977-09-04,38,25 - 45,African-American,0,2,0,0,0,-1,2013-01-05 06:24:13,2013-01-06 08:58:18,13000242MM10A,2013-01-05,,1,M,Fail To Obey Police Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-06,Risk of Violence,1,Low,2013-01-06,2013-01-05,2013-01-06,0,0,1181,0,0\r\n7637,roberto martinez,roberto,martinez,2013-05-06,Male,1974-09-12,41,25 - 45,Hispanic,0,2,0,0,9,-1,2013-05-05 04:10:51,2013-05-14 11:36:09,10014854CF10A,,2013-05-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2014-01-13,2014-01-23,9,8,252,0,0\r\n7638,alexander castro,alexander,castro,2014-06-09,Male,1982-03-03,34,25 - 45,Hispanic,0,1,0,0,2,0,2014-06-09 02:22:11,2014-06-10 03:23:28,14009137MM10A,2014-06-09,,0,M,Viol Injunct Domestic Violence,1,14016045MM10A,(M1),0,2014-11-06,Viol Prot Injunc Repeat Viol,2014-11-06,2014-11-07,,0,,,,,Risk of Recidivism,1,Low,2014-06-09,Risk of Violence,2,Low,2014-06-09,2014-11-06,2014-11-07,2,1,150,1,1\r\n7639,matthew holmes,matthew,holmes,2013-08-13,Male,1983-10-02,32,25 - 45,African-American,0,3,0,0,0,0,2013-08-13 04:44:44,2013-08-14 08:27:05,13011381CF10A,2013-08-13,,0,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-13,Risk of Violence,2,Low,2013-08-13,2013-08-13,2013-08-14,0,1,962,0,0\r\n7640,brian watkins,brian,watkins,2013-12-19,Male,1978-05-27,37,25 - 45,Caucasian,0,7,0,0,1,-9,2013-12-10 04:34:03,2013-12-18 09:32:52,13017081CF10A,2013-12-10,,9,F,Possession of Cocaine,1,15008747CF10A,(F3),,2015-07-08,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-19,Risk of Violence,1,Low,2013-12-19,2014-03-22,2014-03-26,1,0,93,0,1\r\n7642,lamont dixon,lamont,dixon,2013-05-01,Male,1969-06-08,46,Greater than 45,African-American,0,7,0,0,18,-114,2013-01-07 04:19:44,2013-03-13 05:49:43,13006217CF10A,2013-04-30,,1,F,Felony Petit Theft,1,15016236CF10A,(F3),,2015-12-19,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-01,Risk of Violence,3,Low,2013-05-01,2013-01-07,2013-03-13,18,0,962,1,0\r\n7644,taquan wallace,taquan,wallace,2013-08-27,Male,1994-10-02,21,Less than 25,African-American,0,8,0,0,4,-1,2013-08-26 06:18:02,2013-10-26 01:31:27,13012051CF10A,2013-08-26,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-27,Risk of Violence,6,Medium,2013-08-27,2015-05-19,2015-05-21,4,60,630,0,0\r\n7645,michael collins,michael,collins,2014-08-21,Male,1958-10-28,57,Greater than 45,African-American,0,1,0,0,0,-1,2014-08-20 06:51:15,2014-08-21 01:55:41,14011378CF10A,2014-08-20,,1,F,Possession of Cocaine,1,15006500MM10A,(M1),0,2015-06-16,Possess Cannabis/20 Grams Or Less,2015-06-16,2015-08-27,,0,,,,,Risk of Recidivism,1,Low,2014-08-21,Risk of Violence,1,Low,2014-08-21,2015-06-16,2015-08-27,0,0,299,1,1\r\n7647,ronald knight,ronald,knight,2013-12-20,Male,1947-05-31,68,Greater than 45,African-American,0,4,0,0,2,0,2013-12-20 03:05:36,2013-12-20 08:39:18,13017571CF10A,2013-12-19,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-20,Risk of Violence,2,Low,2013-12-20,2013-12-20,2013-12-20,2,0,833,0,0\r\n7648,kamiyla lane,kamiyla,lane,2014-03-17,Male,1992-02-16,24,Less than 25,African-American,0,3,0,0,0,-1,2014-03-16 10:38:41,2014-03-18 05:32:41,14004560MM10A,2014-03-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-17,Risk of Violence,4,Low,2014-03-17,2014-03-16,2014-03-18,0,1,746,0,0\r\n7649,thomas styles,thomas,styles,2014-05-14,Male,1969-10-28,46,Greater than 45,African-American,0,1,0,0,3,-1,2014-05-13 01:14:54,2014-05-14 02:11:16,14006643CF10A,2014-05-13,,1,F,False Ownership Info/Pawn Item,1,15007689MM10A,(M1),0,2015-07-19,Possess Cannabis/20 Grams Or Less,2015-07-19,2015-07-22,,0,,,,,Risk of Recidivism,1,Low,2014-05-14,Risk of Violence,1,Low,2014-05-14,2015-07-19,2015-07-22,3,0,431,1,1\r\n7650,tomas smith,tomas,smith,2014-07-14,Male,1975-04-06,41,25 - 45,Caucasian,0,4,0,0,1,-1,2014-07-13 05:33:05,2014-09-09 05:24:12,14009576CF10A,2014-07-13,,1,F,Felony Battery (Dom Strang),1,14012656CF10A,(M2),1,2014-09-17,Reckless Driving,2014-09-18,2014-09-18,,1,14012656CF10A,(F3),2014-09-17,Agg Fleeing and Eluding,Risk of Recidivism,4,Low,2014-07-14,Risk of Violence,2,Low,2014-07-14,2014-07-13,2014-09-09,1,57,65,1,1\r\n7651,dechand ramsook,dechand,ramsook,2013-01-23,Male,1985-08-15,30,25 - 45,Other,0,2,0,0,0,-1,2013-01-22 06:24:52,2013-02-01 09:53:21,13001035CF10A,,2013-01-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-23,Risk of Violence,2,Low,2013-01-23,2013-01-22,2013-02-01,0,9,1164,0,0\r\n7652,darius wilkins,darius,wilkins,2013-12-28,Male,1991-02-19,25,25 - 45,African-American,0,8,0,2,8,0,2013-12-28 04:52:50,2013-12-28 07:51:57,13017890CF10A,2013-12-28,,0,F,Felony Driving While Lic Suspd,1,14009039MM10A,(M2),0,2014-06-07,Prowling/Loitering,2014-06-07,2014-06-07,,0,,,,,Risk of Recidivism,8,High,2013-12-28,Risk of Violence,7,Medium,2013-12-28,2014-04-21,2014-04-25,8,0,114,0,1\r\n7653,andrew riggins,andrew,riggins,2014-01-19,Male,1992-02-09,24,Less than 25,African-American,0,7,0,0,7,-1,2014-01-18 12:03:04,2014-01-19 09:06:51,14000801CF10A,,2014-01-18,1,F,arrest case no charge,1,16002794CF10A,(F3),0,2016-03-04,,2016-03-04,2016-03-05,,0,,,,,Risk of Recidivism,7,Medium,2014-01-19,Risk of Violence,6,Medium,2014-01-19,2014-02-27,2014-02-28,7,0,39,0,1\r\n7654,anthony lisinicchia,anthony,lisinicchia,2014-02-23,Male,1974-10-22,41,25 - 45,African-American,0,4,0,0,1,-1,2014-02-22 11:14:46,2014-02-25 07:09:00,14002537CF10A,2014-02-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-23,Risk of Violence,3,Low,2014-02-23,2014-02-22,2014-02-25,1,2,768,0,0\r\n7655,dave jackson,dave,jackson,2014-01-11,Male,1960-11-24,55,Greater than 45,Other,0,1,0,0,4,-1,2014-01-10 04:54:10,2014-01-15 12:17:38,14000439CF10A,2014-01-10,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-11,Risk of Violence,1,Low,2014-01-11,2014-01-10,2014-01-15,4,4,811,0,0\r\n7656,luis vigniero,luis,vigniero,2013-01-29,Male,1990-03-20,26,25 - 45,Hispanic,0,2,0,0,1,,,,12017413CF10A,2012-11-29,,61,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-29,Risk of Violence,3,Low,2013-01-29,,,1,0,1158,0,0\r\n7657,ramon delacruz,ramon,delacruz,2013-09-04,Male,1976-06-18,39,25 - 45,Hispanic,0,2,0,0,2,-83,2013-06-13 10:20:55,2013-06-14 06:31:46,13008390CF10A,2013-06-13,,83,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-06-13,2013-06-14,2,0,940,0,0\r\n7659,eric alders,eric,alders,2013-03-07,Male,1983-03-24,33,25 - 45,Caucasian,0,4,0,0,1,-4,2013-03-03 01:55:16,2013-03-06 07:18:53,13001461CF10A,,2013-03-03,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-07,Risk of Violence,3,Low,2013-03-07,2013-03-03,2013-03-06,1,0,1121,0,0\r\n7660,cavoan ramson,cavoan,ramson,2014-02-06,Male,1992-10-09,23,Less than 25,African-American,0,2,0,0,0,-1,2014-02-05 09:02:47,2014-02-06 10:06:16,14001628CF10A,2014-02-05,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-06,Risk of Violence,4,Low,2014-02-06,2014-02-05,2014-02-06,0,0,785,0,0\r\n7661,tammy trotter,tammy,trotter,2014-05-01,Female,1968-05-03,47,Greater than 45,Caucasian,0,9,0,0,28,-1,2014-04-30 11:20:25,2014-08-26 05:13:39,14006012CF10A,2014-04-30,,1,F,Felony Committing Prostitution,1,14013909CF10A,(F3),0,2014-10-15,Felony Committing Prostitution,2014-10-15,2014-10-16,,0,,,,,Risk of Recidivism,9,High,2014-05-01,Risk of Violence,5,Medium,2014-05-01,2014-10-15,2014-10-16,28,117,167,1,1\r\n7663,carol debriae,carol,debriae,2013-02-01,Female,1964-08-02,51,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-01-30 08:18:59,2013-01-31 08:50:16,13001486CF10A,2013-01-30,,2,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-01,Risk of Violence,1,Low,2013-02-01,2013-01-30,2013-01-31,0,0,1155,0,0\r\n7667,andrew abbott,andrew,abbott,2014-01-05,Male,1979-12-11,36,25 - 45,Caucasian,0,2,0,0,1,-1,2014-01-04 09:29:21,2014-01-05 02:30:46,14000184MM10A,2014-01-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-05,Risk of Violence,3,Low,2014-01-05,2014-01-04,2014-01-05,1,0,817,0,0\r\n7668,john meneses,john,meneses,2013-05-04,Male,1959-02-21,57,Greater than 45,Hispanic,0,1,0,0,0,0,2013-05-04 02:39:10,2013-08-21 09:19:11,13006413CF10A,2013-05-03,,1,M,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2014-09-22,2014-10-28,0,109,506,0,0\r\n7669,tony gotiear,tony,gotiear,2013-12-06,Male,1972-06-02,43,25 - 45,African-American,0,1,0,0,0,0,2013-12-06 04:49:34,2013-12-06 08:32:43,13022631MM10A,2013-12-06,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-06,Risk of Violence,1,Low,2013-12-06,2013-12-06,2013-12-06,0,0,847,0,0\r\n7670,eddie whitehead,eddie,whitehead,2013-08-28,Male,1989-08-04,26,25 - 45,African-American,0,7,0,0,4,-1,2013-08-27 07:20:17,2013-08-29 05:49:36,13012089CF10A,2013-08-24,,4,F,\"Poss3,4 Methylenedioxymethcath\",1,14010475TC10A,(M1),0,2014-02-22,Opert With Susp DL 2nd Offens,2014-02-22,2014-02-28,,0,,,,,Risk of Recidivism,7,Medium,2013-08-28,Risk of Violence,6,Medium,2013-08-28,2013-10-02,2013-12-21,4,1,35,0,1\r\n7672,linden anderson,linden,anderson,2014-02-17,Male,1969-03-01,47,Greater than 45,Other,0,1,0,0,0,-1,2014-02-16 06:32:47,2014-02-17 01:03:05,14002685MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-17,Risk of Violence,1,Low,2014-02-17,2014-02-16,2014-02-17,0,0,774,0,0\r\n7673,deroslyn doreus,deroslyn,doreus,2013-12-22,Male,1956-01-02,60,Greater than 45,African-American,0,1,0,0,1,-1,2013-12-21 09:55:31,2013-12-22 01:18:00,13006126CF10A,,2013-12-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-22,Risk of Violence,1,Low,2013-12-22,2013-12-21,2013-12-22,1,0,831,0,0\r\n7674,darien justice,darien,justice,2013-02-10,Male,1991-05-05,24,Less than 25,African-American,0,5,0,0,0,-1,2013-02-09 08:28:39,2013-02-10 07:52:20,13002910MM10A,2013-02-09,,1,M,Possess Cannabis/20 Grams Or Less,1,14006024MM10A,(M1),,2014-02-13,Battery,,,,1,14006024MM10A,(M1),2014-02-13,Battery,Risk of Recidivism,5,Medium,2013-02-10,Risk of Violence,5,Medium,2013-02-10,2016-01-04,2016-01-13,0,0,368,1,1\r\n7675,corey marrero,corey,marrero,2013-12-26,Male,1995-11-01,20,Less than 25,Caucasian,0,7,0,0,0,-1,2013-12-25 05:38:08,2013-12-26 08:36:31,13017774CF10A,2013-12-24,,2,F,Leaving the Scene of Accident,1,15047392TC20A,(M2),,2015-08-24,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-26,Risk of Violence,6,Medium,2013-12-26,2013-12-25,2013-12-26,0,0,606,1,1\r\n7676,joshua stein,joshua,stein,2014-01-13,Male,1976-11-30,39,25 - 45,Caucasian,0,1,1,0,3,317,2014-11-26 12:23:56,2014-11-26 01:50:12,13003471MM10A,2013-02-18,,329,M,Battery,1,14042970TC10A,(M2),1,2014-11-25,Fail To Obey Police Officer,2014-11-26,2014-11-26,,0,,,,,Risk of Recidivism,1,Low,2014-01-13,Risk of Violence,2,Low,2014-01-13,2014-11-26,2014-11-26,3,0,316,1,1\r\n7677,jenny gomezdibenedetto,jenny,gomezdibenedetto,2013-09-06,Female,1987-09-22,28,25 - 45,Caucasian,0,3,0,0,0,-6,2013-08-31 09:26:46,2013-09-01 05:23:23,13012330CF10A,2013-08-31,,6,M,Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-08-31,2013-09-01,0,0,938,0,0\r\n7678,marlon mckay,marlon,mckay,2014-11-10,Male,1987-11-30,28,25 - 45,African-American,0,7,2,0,7,-1,2014-11-09 06:35:17,2014-11-11 04:05:42,14015041CF10A,2014-11-09,,1,F,Possession of Cocaine,1,14016441CF10A,(F3),0,2014-12-11,Grand Theft (Motor Vehicle),2014-12-11,2014-12-11,,0,,,,,Risk of Recidivism,7,Medium,2014-11-10,Risk of Violence,9,High,2014-11-10,2014-12-11,2014-12-11,7,1,31,0,1\r\n7679,matthew colias,matthew,colias,2013-08-04,Male,1957-11-04,58,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-08-03 05:05:55,2013-10-25 05:19:53,13014625MM10A,2013-08-03,,1,M,Battery,1,14023689TC20A,(M2),98,2014-02-10,Leave Acc/Attend Veh/More $50,2014-05-19,2014-05-20,,0,,,,,Risk of Recidivism,3,Low,2013-08-04,Risk of Violence,1,Low,2013-08-04,2013-08-03,2013-10-25,2,82,190,1,1\r\n7680,frank congemi,frank,congemi,2014-01-21,Male,1949-03-09,67,Greater than 45,Caucasian,0,1,0,0,2,-80,2013-11-02 06:57:49,2013-12-18 10:31:00,13015278CF10A,2013-11-02,,80,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-21,Risk of Violence,1,Low,2014-01-21,2013-11-02,2013-12-18,2,0,801,0,0\r\n7681,alberto solorio,alberto,solorio,2013-07-02,Male,1961-11-25,54,Greater than 45,Other,0,1,0,0,1,-2,2013-06-30 05:09:32,2013-07-02 10:44:07,13009208CF10A,2013-06-30,,2,F,Stalking (Aggravated),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-02,Risk of Violence,1,Low,2013-07-02,2013-08-05,2013-08-08,1,0,34,0,0\r\n7682,shaquella pines,shaquella,pines,2014-01-07,Female,1990-04-14,26,25 - 45,African-American,0,8,0,0,1,-140,2013-08-20 08:58:27,2013-08-24 02:22:35,13011762CF10A,2013-08-20,,140,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-01-07,Risk of Violence,9,High,2014-01-07,2013-08-20,2013-08-24,1,0,815,0,0\r\n7683,shanese ansby,shanese,ansby,2014-06-07,Female,1992-03-29,24,Less than 25,African-American,0,7,0,0,2,-1,2014-06-06 05:43:27,2014-06-08 03:52:30,14007862CF10A,2014-06-06,,1,F,Aggravated Assault W/Dead Weap,1,15015502TC30A,(M2),,2015-02-17,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,7,Medium,2014-06-07,Risk of Violence,4,Low,2014-06-07,2014-06-06,2014-06-08,2,1,255,1,1\r\n7685,laurence stevens,laurence,stevens,2014-01-25,Female,1981-11-04,34,25 - 45,Other,0,1,0,0,0,0,2014-01-25 09:11:58,2014-01-26 02:13:57,14001414MM10A,2014-01-25,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-25,Risk of Violence,1,Low,2014-01-25,2014-01-25,2014-01-26,0,1,797,0,0\r\n7686,jack pierre-louis,jack,pierre-louis,2013-09-11,Male,1968-01-10,48,Greater than 45,Other,0,1,0,0,1,-21,2013-08-21 04:29:00,2013-09-11 11:37:03,13011749CF10A,2013-08-21,,21,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-11,Risk of Violence,1,Low,2013-09-11,2013-08-21,2013-09-11,1,0,933,0,0\r\n7688,carlton johnson,carlton,johnson,2013-04-21,Male,1978-04-22,37,25 - 45,African-American,0,8,0,0,0,-1,2013-04-20 07:10:10,2013-04-21 07:06:20,13005667CF10A,2013-04-20,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-21,Risk of Violence,7,Medium,2013-04-21,2013-04-20,2013-04-21,0,0,1076,0,0\r\n7689,antoine ilus,antoine,ilus,2013-01-17,Male,1987-08-23,28,25 - 45,African-American,0,8,0,0,8,-1,2013-01-16 09:27:53,2013-01-19 09:22:26,13000762CF10A,2013-01-16,,1,F,Deliver Cocaine,1,13112303TC30A,(M2),,2013-10-31,Susp Drivers Lic 1st Offense,,,,1,15000128MM10A,(M1),2015-01-04,Battery,Risk of Recidivism,8,High,2013-01-17,Risk of Violence,7,Medium,2013-01-17,2013-01-16,2013-01-19,8,2,287,1,1\r\n7690,terry carte,terry,carte,2014-03-11,Male,1970-02-06,46,Greater than 45,Caucasian,0,3,0,0,14,-1,2014-03-10 11:47:28,2014-03-11 10:29:27,14003365CF10A,2014-03-10,,1,F,Driving While License Revoked,1,14008684CF10A,(M1),0,2014-06-24,Present Proof of Invalid Insur,2014-06-24,2014-06-25,,0,,,,,Risk of Recidivism,3,Low,2014-03-11,Risk of Violence,4,Low,2014-03-11,2014-05-10,2014-05-10,14,0,60,0,1\r\n7692,bryon allmond,bryon,allmond,2013-02-07,Male,1970-12-21,45,Greater than 45,Caucasian,0,4,0,0,2,0,2013-02-07 02:17:57,2013-02-10 01:49:12,13004985MM10A,2013-02-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-07,Risk of Violence,3,Low,2013-02-07,2013-02-07,2013-02-10,2,3,1149,0,0\r\n7693,gerard restaino,gerard,restaino,2014-09-17,Male,1995-08-24,20,Less than 25,African-American,0,7,0,1,2,-1,2014-09-16 03:26:15,2014-09-26 09:55:44,14012639CF10A,2014-09-17,,0,F,Principal In The First Degree,1,14015556CF10A,(F3),0,2014-11-18,Grand Theft in the 3rd Degree,2014-11-18,2015-06-30,,1,15010401MM10A,(M1),2015-10-04,Battery,Risk of Recidivism,7,Medium,2014-09-17,Risk of Violence,9,High,2014-09-17,2014-10-06,2014-11-08,2,9,19,0,1\r\n7694,byron everett,byron,everett,2013-02-24,Male,1964-01-21,52,Greater than 45,African-American,0,1,0,0,0,0,2013-02-24 03:25:29,2013-02-25 01:51:43,13003835MM10A,2013-02-24,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-24,Risk of Violence,1,Low,2013-02-24,2013-02-24,2013-02-25,0,1,1132,0,0\r\n7697,owen parchment,owen,parchment,2013-12-26,Male,1987-04-07,29,25 - 45,African-American,0,2,0,0,0,-1,2013-12-25 09:52:58,2013-12-26 01:17:54,13023756MM10A,2013-12-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-26,Risk of Violence,2,Low,2013-12-26,2013-12-25,2013-12-26,0,0,827,0,0\r\n7698,dericky mcgirt,dericky,mcgirt,2013-04-22,Male,1981-09-07,34,25 - 45,African-American,0,8,0,4,11,0,2013-04-22 11:11:43,2013-04-23 07:29:12,13005742CF10A,2013-04-22,,0,F,Aggravated Assault w/Firearm,1,13016450MM10A,(M1),0,2013-08-07,Resist/Obstruct W/O Violence,2013-08-07,2013-08-08,,1,14011918CF10A,(F2),2014-08-28,Aggravated Battery / Pregnant,Risk of Recidivism,8,High,2013-04-22,Risk of Violence,8,High,2013-04-22,2013-08-07,2013-08-08,11,1,107,1,1\r\n7699,dershawn williams,dershawn,williams,2013-10-12,Male,1991-04-23,24,Less than 25,African-American,0,2,0,0,0,0,2013-10-12 12:04:11,2013-11-04 09:08:02,13014271CF10A,2013-10-11,,1,F,Tamper With Witness/Victim/CI,1,14023558TC10A,(M2),,2014-06-12,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-12,Risk of Violence,4,Low,2013-10-12,2013-10-12,2013-11-04,0,23,243,1,1\r\n7700,david shuman,david,shuman,2013-05-25,Male,1988-04-01,28,25 - 45,African-American,0,10,0,0,6,0,2013-05-25 04:58:09,2013-08-14 04:16:37,13007480CF10A,2013-05-25,,0,F,Grand Theft (Motor Vehicle),1,13012135CF10A,(F2),4,2013-08-24,Robbery / No Weapon,2013-08-28,2014-06-12,,1,13012135CF10A,(F2),2013-08-24,Robbery / No Weapon,Risk of Recidivism,10,High,2013-05-25,Risk of Violence,10,High,2013-05-25,2013-05-25,2013-08-14,6,81,91,1,1\r\n7703,william quarles,william,quarles,2014-12-13,Male,1987-08-14,28,25 - 45,African-American,0,5,0,0,2,-1,2014-12-12 07:25:24,2014-12-14 08:10:55,14016506CF10A,2014-12-12,,1,F,Aggravated Battery / Pregnant,1,15011161CF10A,(F3),0,2015-08-29,Possession of Cannabis,2015-08-29,2015-08-29,,0,,,,,Risk of Recidivism,5,Medium,2014-12-13,Risk of Violence,3,Low,2014-12-13,2015-08-29,2015-08-29,2,1,259,0,1\r\n7704,johnny philus,johnny,philus,2013-10-01,Male,1986-11-20,29,25 - 45,African-American,0,7,0,0,0,0,2013-10-01 01:08:10,2013-10-01 08:58:30,13013726CF10A,2013-09-30,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-01,Risk of Violence,7,Medium,2013-10-01,2013-10-01,2013-10-01,0,0,913,0,0\r\n7705,patricia cerra,patricia,cerra,2013-09-12,Female,1961-03-07,55,Greater than 45,Caucasian,0,1,0,0,2,-12,2013-08-31 09:30:54,2013-09-03 08:31:38,13012310CF10A,2013-08-31,,12,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2014-01-31,2014-02-19,2,0,141,0,0\r\n7706,flaviano leon,flaviano,leon,2013-09-16,Male,1948-01-28,68,Greater than 45,Hispanic,0,1,0,0,0,-3,2013-09-13 11:36:13,2013-09-14 07:08:11,13017496MM10A,2013-09-13,,3,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2013-09-13,2013-09-14,0,0,928,0,0\r\n7707,orlando gonzalez,orlando,gonzalez,2013-05-10,Male,1993-07-14,22,Less than 25,Hispanic,0,4,0,0,0,-1,2013-05-09 04:04:46,2013-05-11 05:45:26,13006687CF10A,2013-05-09,,1,F,Grand Theft (Motor Vehicle),1,13001460MM20A,(M1),90,2013-05-21,Possess Cannabis/20 Grams Or Less,2013-08-19,2013-08-27,,0,,,,,Risk of Recidivism,4,Low,2013-05-10,Risk of Violence,5,Medium,2013-05-10,2013-05-09,2013-05-11,0,1,11,1,1\r\n7710,ronald schultheiss,ronald,schultheiss,2014-10-21,Male,1991-12-23,24,Less than 25,Caucasian,0,8,0,0,3,-1,2014-10-20 03:10:59,2014-11-07 01:41:41,14014157CF10A,2014-10-20,,1,F,Grand Theft (Motor Vehicle),1,15001664MM10A,(M1),,2014-11-14,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,8,High,2014-10-21,Risk of Violence,8,High,2014-10-21,2014-10-20,2014-11-07,3,17,24,1,1\r\n7711,devon beckford,devon,beckford,2014-02-04,Male,1995-05-30,20,Less than 25,African-American,0,3,0,0,0,-1,2014-02-03 11:53:10,2014-02-04 07:53:18,14001521CF10A,2014-02-03,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-04,Risk of Violence,6,Medium,2014-02-04,2014-02-03,2014-02-04,0,0,787,0,0\r\n7712,abraham walker,abraham,walker,2014-01-17,Male,1992-09-30,23,Less than 25,African-American,0,5,0,0,0,0,2014-01-17 12:26:03,2014-02-18 12:46:42,14000850MM10A,2014-01-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-17,Risk of Violence,5,Medium,2014-01-17,2014-01-17,2014-02-18,0,32,805,0,0\r\n7714,alexander bucknor,alexander,bucknor,2013-04-11,Male,1971-12-30,44,25 - 45,African-American,0,4,0,0,6,0,2013-04-11 12:06:33,2013-10-23 04:56:40,13005177CF10A,2013-04-10,,1,F,Possession of Cocaine,1,15045664TC40A,(M2),,2015-07-30,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-11,Risk of Violence,3,Low,2013-04-11,2013-04-11,2013-10-23,6,195,840,1,1\r\n7717,lavoris walker,lavoris,walker,2014-05-17,Male,1981-05-09,34,25 - 45,African-American,2,7,0,1,8,-1,2014-05-16 11:52:32,2014-05-21 03:52:39,14006802CF10A,2014-05-16,,1,F,Possession of Cocaine,1,15011697CF10A,(F3),0,2015-09-09,Possession of Cocaine,2015-09-09,2015-09-11,,0,,,,,Risk of Recidivism,7,Medium,2014-05-17,Risk of Violence,3,Low,2014-05-17,2014-08-27,2014-08-28,8,4,102,0,1\r\n7720,stephen gornall,stephen,gornall,2013-02-23,Male,1960-10-08,55,Greater than 45,African-American,0,1,0,0,0,-1,2013-02-22 10:17:18,2013-02-23 09:04:28,13003745MM10A,2013-02-22,,1,M,Battery,1,14000433MM40A,(M2),,2014-01-17,Petit Theft,,,,1,14010455CF10A,(F3),2014-07-31,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-05-22,2013-05-23,0,0,88,0,1\r\n7721,charniece hill,charniece,hill,2013-04-03,Female,1993-01-12,23,Less than 25,African-American,0,6,0,0,0,-1,2013-04-02 07:28:45,2013-04-03 11:31:36,13004733CF10A,2013-04-02,,1,F,Resist Officer w/Violence,1,13012805MO10A,(MO3),0,2013-07-05,Trespass,2013-07-05,2013-07-06,,0,,,,,Risk of Recidivism,6,Medium,2013-04-03,Risk of Violence,6,Medium,2013-04-03,2013-07-05,2013-07-06,0,0,93,1,1\r\n7722,nastastear wilson,nastastear,wilson,2014-08-18,Female,1993-01-04,23,Less than 25,African-American,0,9,0,0,3,0,2014-08-18 05:26:02,2014-08-23 05:45:37,14011294CF10A,2014-08-18,,0,F,Grand Theft (Motor Vehicle),1,14016354MM10A,(M1),0,2014-11-14,Unlaw Use False Name/Identity,2014-11-14,2015-02-08,,0,,,,,Risk of Recidivism,9,High,2014-08-18,Risk of Violence,7,Medium,2014-08-18,2014-11-14,2015-02-08,3,5,88,1,1\r\n7723,ebrain penaloza,ebrain,penaloza,2013-10-27,Male,1992-01-18,24,Less than 25,Hispanic,0,2,0,0,0,-1,2013-10-26 05:22:40,2013-11-01 09:17:55,13014984CF10A,2013-10-26,,1,F,Burglary Conveyance Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-27,Risk of Violence,3,Low,2013-10-27,2013-10-26,2013-11-01,0,5,887,0,0\r\n7725,artis cameron,artis,cameron,2013-10-02,Male,1938-04-24,77,Greater than 45,African-American,0,1,0,0,0,0,2013-10-02 02:55:47,2013-10-02 01:23:59,13018779MM10A,2013-10-01,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,2013-10-02,2013-10-02,0,0,912,0,0\r\n7726,jeffrey flowers,jeffrey,flowers,2013-01-29,Male,1963-08-09,52,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-01-28 09:52:03,2013-01-29 08:32:48,13002012MM10A,2013-01-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-28,2013-01-29,3,0,1158,0,0\r\n7728,david hollis,david,hollis,2014-05-06,Male,1981-05-13,34,25 - 45,African-American,2,9,0,0,8,0,2014-05-06 01:53:05,2014-05-08 03:43:14,14006354CF10A,2014-05-06,,0,F,Poss Cocaine/Intent To Del/Sel,1,14008489MM10A,(M1),0,2014-05-27,Trespass/Property/Other Structure,2014-05-27,2014-05-28,,0,,,,,Risk of Recidivism,9,High,2014-05-06,Risk of Violence,7,Medium,2014-05-06,2014-05-27,2014-05-28,8,2,21,1,1\r\n7729,hamlet rodriguez-cabreja,hamlet,rodriguez-cabreja,2013-04-07,Male,1976-12-07,39,25 - 45,Hispanic,0,1,0,0,0,0,2013-04-07 02:47:23,2013-04-07 06:33:09,13005024CF10A,,2013-04-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-07,Risk of Violence,1,Low,2013-04-07,2013-04-07,2013-04-07,0,0,1090,0,0\r\n7730,kristopher pendlebury,kristopher,pendlebury,2013-04-01,Male,1986-02-02,30,25 - 45,Caucasian,0,2,0,0,2,-1,2013-03-31 02:47:55,2013-04-01 02:34:42,13006177MM10A,2013-03-30,,2,M,Possess Cannabis/20 Grams Or Less,1,13006197CF10A,(F3),0,2013-04-30,Possession of Cocaine,2013-04-30,2013-05-01,,0,,,,,Risk of Recidivism,2,Low,2013-04-01,Risk of Violence,2,Low,2013-04-01,2013-04-30,2013-05-01,2,0,29,1,1\r\n7732,hopeton vassell,hopeton,vassell,2014-11-22,Male,1962-06-05,53,Greater than 45,African-American,0,2,0,0,5,,,,14017250MM10A,2014-11-21,,1,M,Carrying A Concealed Weapon,1,15011567MM10A,(M2),,2015-11-03,Petit Theft,,,,0,,,,,Risk of Recidivism,2,Low,2014-11-22,Risk of Violence,1,Low,2014-11-22,,,5,0,346,1,1\r\n7733,darren robinson,darren,robinson,2013-05-17,Male,1985-06-21,30,25 - 45,African-American,0,2,0,0,3,-1,2013-05-16 11:33:43,2013-05-22 05:48:47,13009525MM10A,2013-05-16,,1,M,Viol Pretrial Release Dom Viol,1,13013969MM10A,(M1),351,2013-06-10,Viol Pretrial Release Dom Viol,2014-05-27,2014-06-14,,0,,,,,Risk of Recidivism,2,Low,2013-05-17,Risk of Violence,2,Low,2013-05-17,2013-05-16,2013-05-22,3,5,24,1,1\r\n7734,christopher wilson,christopher,wilson,2013-03-04,Male,1989-09-26,26,25 - 45,African-American,0,4,0,0,0,0,2013-03-04 02:25:25,2013-03-04 01:51:09,13003244CF10A,2013-03-04,,0,F,\"Poss3,4 Methylenedioxymethcath\",1,14011659MM10A,(M2),1,2014-07-31,Susp Drivers Lic 1st Offense,2014-08-01,2014-08-01,,0,,,,,Risk of Recidivism,4,Low,2013-03-04,Risk of Violence,3,Low,2013-03-04,2015-01-04,2015-01-08,0,0,514,1,1\r\n7735,emily diana,emily,diana,2013-06-17,Female,1965-02-09,51,Greater than 45,Caucasian,0,2,0,0,1,-30,2013-05-18 09:53:45,2013-05-19 12:59:16,13009599MM10A,2013-05-18,,30,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-17,Risk of Violence,1,Low,2013-06-17,2013-05-18,2013-05-19,1,0,1019,0,0\r\n7736,anthony roberts,anthony,roberts,2014-01-23,Male,1982-01-07,34,25 - 45,African-American,0,3,0,0,2,-12,2014-01-11 04:48:44,2014-01-23 10:12:03,14000544CF10A,,2014-01-11,12,F,arrest case no charge,1,16001092MM40A,(M1),,2016-02-18,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-23,Risk of Violence,2,Low,2014-01-23,2014-01-11,2014-01-23,2,0,756,1,0\r\n7737,juan gonzolaz,juan,gonzolaz,2014-01-14,Male,1992-06-16,23,Less than 25,Caucasian,0,2,0,0,0,-1,2014-01-13 09:16:26,2014-01-18 09:53:52,14000578CF10A,2014-01-13,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-14,Risk of Violence,4,Low,2014-01-14,2014-01-13,2014-01-18,0,4,808,0,0\r\n7738,miguel morales,miguel,morales,2013-12-17,Male,1983-05-13,32,25 - 45,Caucasian,0,2,0,0,2,-1,2013-12-16 07:09:57,2013-12-17 03:07:16,13017362CF10A,2013-12-16,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-17,Risk of Violence,1,Low,2013-12-17,2013-12-16,2013-12-17,2,0,836,0,0\r\n7740,evans mesadieu,evans,mesadieu,2013-10-29,Male,1977-09-16,38,25 - 45,African-American,1,6,5,0,8,0,2013-10-29 12:09:43,2013-11-14 09:04:39,13020385MM10A,2013-10-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-29,Risk of Violence,4,Low,2013-10-29,2013-10-29,2013-11-14,8,16,885,0,0\r\n7741,russell gaskin,russell,gaskin,2013-01-18,Male,1994-08-30,21,Less than 25,African-American,0,7,0,0,0,-1,2013-01-17 01:27:40,2013-01-18 09:36:52,13000827CF10A,2013-01-17,,1,F,Burglary Dwelling Occupied,1,13019732MM10A,(M1),,2013-09-11,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-18,Risk of Violence,7,Medium,2013-01-18,2016-01-04,2016-01-13,0,0,236,1,1\r\n7742,brian wood,brian,wood,2014-02-14,Male,1981-06-19,34,25 - 45,Hispanic,0,6,0,0,5,-1,2014-02-13 07:02:45,2014-02-14 08:00:45,14002048CF10A,2014-02-13,,1,F,Felony Driving While Lic Suspd,1,15001298MM40A,(M1),,2015-02-23,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-14,Risk of Violence,2,Low,2014-02-14,2014-12-03,2014-12-20,5,0,292,0,1\r\n7744,roberto melchor,roberto,melchor,2013-11-03,Male,1962-06-07,53,Greater than 45,Caucasian,0,2,0,0,8,-1,2013-11-02 09:17:38,2013-11-06 11:21:33,13020684MM10A,2013-11-02,,1,M,Battery,1,15022790TC40A,(M1),,2015-03-30,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-03,Risk of Violence,2,Low,2013-11-03,2013-11-02,2013-11-06,8,3,512,1,1\r\n7745,luis fernandezcueto,luis,fernandezcueto,2013-08-09,Male,1981-07-18,34,25 - 45,Caucasian,0,7,0,0,1,-1,2013-08-08 04:09:24,2013-09-28 07:19:04,13011117CF10A,2013-08-08,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-09,Risk of Violence,3,Low,2013-08-09,2013-08-08,2013-09-28,1,50,966,0,0\r\n7747,daniel perez,daniel,perez,2013-01-31,Male,1988-03-24,28,25 - 45,Hispanic,0,7,0,0,1,44,2013-03-16 09:20:21,2013-04-19 01:24:38,12005599MM10A,2012-03-18,,319,M,Violation License Restrictions,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-31,Risk of Violence,3,Low,2013-01-31,2013-03-16,2013-04-19,1,0,44,0,0\r\n7752,sean johnson,sean,johnson,2014-04-26,Male,1990-08-07,25,25 - 45,Caucasian,0,7,0,0,5,-1,2014-04-25 11:03:43,2014-04-27 04:12:00,14005770CF10A,2014-04-22,,4,F,Grand Theft in the 3rd Degree,1,14072995TC30A,(M2),,2014-08-21,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,7,Medium,2014-04-26,Risk of Violence,3,Low,2014-04-26,2014-04-25,2014-04-27,5,1,117,1,1\r\n7753,stephen hannon,stephen,hannon,2013-05-26,Male,1961-10-09,54,Greater than 45,African-American,0,1,0,0,1,-1,2013-05-25 10:06:39,2013-05-26 08:34:01,13026961TC10A,,2013-05-25,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2013-05-25,2013-05-26,1,0,1041,0,0\r\n7754,richard shields,richard,shields,2014-09-19,Male,1991-02-20,25,25 - 45,Caucasian,0,4,0,0,2,0,2014-09-19 06:29:55,2014-09-19 08:58:12,14034102MU10A,2014-09-19,,0,M,Driving Under The Influence,1,15004823CF10A,(F2),0,2015-04-12,Aggrav Battery w/Deadly Weapon,2015-04-12,2015-04-12,,1,15004823CF10A,(F2),2015-04-12,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,4,Low,2014-09-19,Risk of Violence,6,Medium,2014-09-19,2015-04-12,2015-04-12,2,0,205,0,1\r\n7756,richard dowlatram,richard,dowlatram,2014-02-16,Male,1990-09-22,25,25 - 45,Other,0,8,0,0,3,-1,2014-02-15 06:21:35,2014-02-17 02:32:36,14002164CF10A,2014-02-15,,1,F,Grand Theft in the 3rd Degree,1,14084283TC40A,(M2),,2014-12-19,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2014-02-16,Risk of Violence,5,Medium,2014-02-16,2014-02-15,2014-02-17,3,1,306,1,1\r\n7757,christopher gonzalez,christopher,gonzalez,2013-09-09,Male,1982-01-13,34,25 - 45,Hispanic,0,1,0,0,1,-1,2013-09-08 08:11:29,2013-09-09 01:29:50,13017105MM10A,2013-09-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-09,Risk of Violence,1,Low,2013-09-09,2013-09-08,2013-09-09,1,0,935,0,0\r\n7758,sony lundy,sony,lundy,2013-09-28,Male,1969-11-18,46,Greater than 45,Other,0,1,0,0,0,-1,2013-09-27 11:15:59,2013-09-28 01:36:52,13013590CF10A,2013-09-27,,1,F,Grand Theft (Motor Vehicle),1,15002688CF10A,(M1),41,2015-01-21,Unlicensed Contractor,2015-03-03,2015-03-04,,0,,,,,Risk of Recidivism,1,Low,2013-09-28,Risk of Violence,1,Low,2013-09-28,2015-03-03,2015-03-04,0,0,480,1,1\r\n7759,jaquez montaque,jaquez,montaque,2013-02-23,Male,1993-04-21,22,Less than 25,African-American,0,7,0,1,0,0,2013-02-23 04:16:56,2013-02-24 03:36:15,13002774CF10A,2013-02-23,,0,F,Pos Cannabis W/Intent Sel/Del,1,13075632TC20A,(M2),,2013-11-26,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-23,Risk of Violence,8,High,2013-02-23,2013-02-23,2013-02-24,0,1,276,1,1\r\n7760,aquaria mitchell,aquaria,mitchell,2013-01-14,Female,1993-01-14,23,Less than 25,African-American,0,10,0,0,2,-1,2013-01-13 12:08:49,2013-01-14 02:48:12,13000590CF10A,2013-01-13,,1,F,Shoot Into Vehicle,1,14001123MM10A,(M2),0,2014-01-22,Petit Theft,2014-01-22,2014-01-22,,0,,,,,Risk of Recidivism,10,High,2013-01-14,Risk of Violence,7,Medium,2013-01-14,2014-01-22,2014-01-22,2,0,373,0,1\r\n7762,patrick murray,patrick,murray,2013-01-30,Male,1988-09-26,27,25 - 45,Caucasian,0,7,0,0,1,-1,2013-01-29 05:00:38,2013-02-26 10:25:57,13002081MM10A,2013-01-29,,1,M,Possess Cannabis/20 Grams Or Less,1,13036933TC10A,(M2),,2013-08-04,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-30,Risk of Violence,4,Low,2013-01-30,2013-01-29,2013-02-26,1,27,186,1,1\r\n7763,brian allen,brian,allen,2014-01-29,Male,1971-03-01,45,Greater than 45,African-American,0,1,0,0,7,-1,2014-01-28 06:11:38,2014-01-29 08:29:49,14001254CF10A,2014-01-28,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-29,Risk of Violence,1,Low,2014-01-29,2015-03-20,2015-03-27,7,0,415,0,0\r\n7765,ronald galarza,ronald,galarza,2013-08-27,Male,1970-04-02,46,Greater than 45,Hispanic,0,6,0,0,12,-40,2013-07-18 01:28:56,2013-08-27 12:24:59,13010068CF10A,2013-07-18,,40,F,Possession Of Alprazolam,1,14015961CF10A,(F3),0,2014-11-29,Felony Driving While Lic Suspd,2014-11-29,2014-12-23,,0,,,,,Risk of Recidivism,6,Medium,2013-08-27,Risk of Violence,3,Low,2013-08-27,2013-10-30,2013-11-14,12,0,64,0,1\r\n7766,tiffany sykes,tiffany,sykes,2013-03-18,Female,1984-07-13,31,25 - 45,Caucasian,0,7,0,0,9,-1,2013-03-17 11:32:26,2013-04-13 02:32:53,13003880CF10A,2013-03-17,,1,F,Poss Contr Subst W/o Prescript,1,13005547CF10A,(F3),0,2013-04-18,Possession of Cocaine,2013-04-18,2013-05-08,,0,,,,,Risk of Recidivism,7,Medium,2013-03-18,Risk of Violence,5,Medium,2013-03-18,2013-04-18,2013-05-08,9,26,31,1,1\r\n7768,christopher tippett,christopher,tippett,2013-06-03,Male,1971-03-21,45,Greater than 45,Caucasian,0,1,0,0,1,-11,2013-05-23 12:26:34,2013-05-23 08:57:55,13009881MM10A,2013-05-22,,12,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-03,Risk of Violence,2,Low,2013-06-03,2013-05-23,2013-05-23,1,0,1033,0,0\r\n7770,ahmad james,ahmad,james,2014-03-12,Male,1987-07-20,28,25 - 45,African-American,1,5,0,0,12,-1,2014-03-11 05:02:18,2014-03-13 01:22:59,14003437CF10A,2014-03-11,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-12,Risk of Violence,5,Medium,2014-03-12,2014-03-11,2014-03-13,12,1,751,0,0\r\n7772,marvens metellus,marvens,metellus,2014-05-17,Male,1991-07-03,24,Less than 25,African-American,0,6,0,1,1,0,2014-05-17 02:20:50,2014-05-17 08:09:02,14006869CF10A,2014-05-17,,0,F,Possession of Cocaine,1,16002987CF10A,(F3),0,2016-03-09,,2016-03-09,2016-03-10,,0,,,,,Risk of Recidivism,6,Medium,2014-05-17,Risk of Violence,4,Low,2014-05-17,2015-04-20,2015-04-27,1,0,338,0,1\r\n7774,deanna rodriguez,deanna,rodriguez,2013-02-26,Female,1987-12-27,28,25 - 45,Caucasian,0,10,0,0,6,-1,2013-02-25 12:29:56,2013-03-28 09:21:23,13003940MM10A,2013-02-25,,1,M,Petit Theft,1,13009632MM10A,(M1),0,2013-05-19,Resist/Obstruct W/O Violence,2013-05-19,2013-05-20,,0,,,,,Risk of Recidivism,10,High,2013-02-26,Risk of Violence,9,High,2013-02-26,2013-05-19,2013-05-20,6,30,82,1,1\r\n7775,arisno absolu,arisno,absolu,2013-05-06,Male,1974-07-08,41,25 - 45,African-American,0,1,0,0,2,0,2013-05-06 01:02:59,2013-05-06 07:57:43,13006489CF10A,2013-05-05,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-05-06,2013-05-06,2,0,1061,0,0\r\n7780,anthony benjamin,anthony,benjamin,2013-09-26,Male,1980-12-05,35,25 - 45,African-American,0,2,0,2,3,-26,2013-08-31 06:56:59,2013-09-01 01:34:57,13016672MM10A,2013-08-31,,26,M,Assault,1,15010015MO10A,(MO3),0,2015-09-22,Possession Of Paraphernalia,2015-09-22,2015-09-23,,0,,,,,Risk of Recidivism,2,Low,2013-09-26,Risk of Violence,2,Low,2013-09-26,2015-09-22,2015-09-23,3,0,726,1,1\r\n7781,julian johnson,julian,johnson,2014-12-10,Male,1995-12-23,20,Less than 25,African-American,1,8,0,0,1,27,2015-01-06 07:45:00,2015-01-21 01:10:05,14002363CF10A,,2014-03-17,268,F,arrest case no charge,1,15016613CF10A,(F3),,2015-12-30,Possession Burglary Tools,,,,0,,,,,Risk of Recidivism,8,High,2014-12-10,Risk of Violence,6,Medium,2014-12-10,2015-01-06,2015-01-21,1,0,27,0,1\r\n7785,jermaine dozier,jermaine,dozier,2013-05-16,Male,1984-03-28,32,25 - 45,African-American,0,9,3,0,19,-1,2013-05-15 05:33:51,2013-05-16 08:57:00,13006932CF10A,2013-05-15,,1,F,Possession of Cocaine,1,13011732CF10A,(F3),0,2013-08-21,Driving While License Revoked,2013-08-21,2013-08-21,,0,,,,,Risk of Recidivism,9,High,2013-05-16,Risk of Violence,4,Low,2013-05-16,2013-08-21,2013-08-21,19,0,97,0,1\r\n7786,ronnie wilson,ronnie,wilson,2013-02-19,Male,1987-09-01,28,25 - 45,African-American,0,5,0,0,2,-1,2013-02-18 05:10:54,2013-03-21 10:02:15,13002463CF10A,2013-02-18,,1,F,Possession of Benzylpiperazine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-19,Risk of Violence,7,Medium,2013-02-19,2015-05-27,2020-01-01,2,30,827,0,0\r\n7788,lincoln cadet,lincoln,cadet,2013-01-15,Male,1983-01-31,33,25 - 45,African-American,0,6,0,0,7,-1,2013-01-14 05:43:37,2013-01-15 01:55:31,13000627CF10A,2013-01-14,,1,F,Grand Theft in the 3rd Degree,1,13060867TC40A,(M2),,2013-08-12,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-15,Risk of Violence,2,Low,2013-01-15,2013-09-01,2013-09-01,7,0,209,1,1\r\n7790,brandon boone,brandon,boone,2014-03-05,Male,1989-10-13,26,25 - 45,African-American,0,8,1,1,8,-1,2014-03-04 02:11:02,2014-03-18 05:47:00,14003075CF10A,,2014-03-04,1,F,arrest case no charge,1,14014246MM10A,(M1),1,2014-09-26,Possess Cannabis/20 Grams Or Less,2014-09-27,2014-09-27,,0,,,,,Risk of Recidivism,8,High,2014-03-05,Risk of Violence,7,Medium,2014-03-05,2014-03-04,2014-03-18,8,13,205,1,1\r\n7791,evenson morency,evenson,morency,2013-02-05,Male,1993-06-07,22,Less than 25,African-American,0,9,0,0,1,-1,2013-02-04 07:31:13,2013-02-05 07:08:22,13002555MM10A,2013-02-04,,1,M,Assault Law Enforcement Officer,1,13011380CF10A,(M1),0,2013-08-13,Resist/Obstruct W/O Violence,2013-08-13,2014-04-18,,0,,,,,Risk of Recidivism,9,High,2013-02-05,Risk of Violence,8,High,2013-02-05,2013-08-13,2014-04-18,1,0,189,1,1\r\n7792,ariana rigaud,ariana,rigaud,2013-02-08,Female,1990-12-01,25,25 - 45,African-American,0,5,0,0,4,-1,2013-02-07 02:50:10,2013-02-08 07:36:45,13001922CF10A,2013-02-07,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-08,Risk of Violence,4,Low,2013-02-08,2013-02-07,2013-02-08,4,0,1148,0,0\r\n7793,gian cardona,gian,cardona,2013-05-26,Male,1995-01-10,21,Less than 25,Hispanic,0,9,0,2,0,-1,2013-05-25 10:05:23,2013-05-26 02:23:58,13007467CF10A,2013-05-25,,1,F,Aggravated Assault W/dead Weap,1,14039355TC30A,(M2),77,2014-04-03,Leave Acc/Attend Veh/More $50,2014-06-19,2014-06-20,,0,,,,,Risk of Recidivism,9,High,2013-05-26,Risk of Violence,10,High,2013-05-26,2016-02-18,2016-02-19,0,0,312,1,1\r\n7794,breeann mcallister,breeann,mcallister,2014-02-13,Female,1992-08-19,23,Less than 25,Caucasian,0,2,0,2,1,-1,2014-02-12 05:55:24,2014-02-12 09:58:48,14005666MU10A,2014-02-12,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-13,Risk of Violence,3,Low,2014-02-13,2014-02-12,2014-02-12,1,0,778,0,0\r\n7796,joshua daniels,joshua,daniels,2014-03-21,Male,1985-09-10,30,25 - 45,African-American,0,8,0,0,2,-1,2014-03-20 05:32:13,2014-03-21 03:29:29,14003966CF10A,2014-03-20,,1,F,Crim Use of Personal ID Info,1,14007738CF10A,(F3),0,2014-06-04,Driving While License Revoked,2014-06-04,2014-06-05,,1,15008569MM10A,(M1),2015-06-15,Battery,Risk of Recidivism,8,High,2014-03-21,Risk of Violence,4,Low,2014-03-21,2014-06-04,2014-06-05,2,0,75,1,1\r\n7797,arthur pierce,arthur,pierce,2013-03-13,Male,1946-05-13,69,Greater than 45,Caucasian,0,1,0,0,6,235,2013-11-03 07:52:53,2014-04-04 10:46:00,12164131TC30A,2012-11-16,,117,M,Driving License Suspended,1,13015302CF10A,(F1),1,2013-11-02,Traffick Amphetamine 14g><28g,2013-11-03,2014-04-04,,0,,,,,Risk of Recidivism,1,Low,2013-03-13,Risk of Violence,2,Low,2013-03-13,2013-11-03,2014-04-04,6,0,234,1,1\r\n7799,travis washington,travis,washington,2013-04-10,Male,1990-04-23,25,25 - 45,African-American,0,8,0,0,11,-1,2013-04-09 07:38:35,2014-09-23 06:14:09,13003473TC10A,,2013-04-08,2,M,arrest case no charge,1,15010075MM10A,(M1),,2015-09-20,Unlaw Use False Name/Identity,,,,0,,,,,Risk of Recidivism,8,High,2013-04-10,Risk of Violence,7,Medium,2013-04-10,2014-05-23,2014-05-24,11,531,408,0,1\r\n7800,rosetta walker,rosetta,walker,2014-01-02,Female,1960-02-18,56,Greater than 45,African-American,0,2,0,0,2,-47,2013-11-16 11:50:19,2013-11-18 04:03:10,13015953CF10A,2013-11-16,,47,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-02,Risk of Violence,1,Low,2014-01-02,2013-11-16,2013-11-18,2,0,820,0,0\r\n7802,esteban velez-lopez,esteban,velez-lopez,2014-11-22,Male,1988-11-10,27,25 - 45,Hispanic,0,2,0,0,0,,,,,,,,M,,1,14018073MM10A,(M2),0,2014-12-26,Petit Theft,2014-12-26,2014-12-26,,0,,,,,Risk of Recidivism,2,Low,2014-11-22,Risk of Violence,3,Low,2014-11-22,2014-12-26,2014-12-26,0,0,34,0,1\r\n7804,wesley findley,wesley,findley,2013-05-07,Male,1982-10-17,33,25 - 45,African-American,0,6,0,0,3,-1,2013-05-06 06:56:21,2013-05-18 04:56:29,13006502CF10A,2013-05-06,,1,F,Burglary Structure Unoccup,1,14015199MM10A,(M1),0,2014-10-18,Possess Cannabis/20 Grams Or Less,2014-10-18,2014-10-18,,0,,,,,Risk of Recidivism,6,Medium,2013-05-07,Risk of Violence,4,Low,2013-05-07,2014-08-05,2014-08-06,3,11,455,0,1\r\n7806,vladimir fedotov,vladimir,fedotov,2013-04-25,Male,1980-09-29,35,25 - 45,Caucasian,0,3,0,0,3,-1,2013-04-24 01:51:08,2013-04-25 08:08:25,13008274MM10A,2013-04-24,,1,M,Viol Injunct Domestic Violence,1,15014872CF10A,(F3),1,2015-11-15,Burglary Structure Unoccup,2015-11-16,2015-11-17,,0,,,,,Risk of Recidivism,3,Low,2013-04-25,Risk of Violence,2,Low,2013-04-25,2016-01-26,2016-01-26,3,0,934,1,0\r\n7807,bret stratton,bret,stratton,2013-01-07,Male,1981-12-02,34,25 - 45,Caucasian,0,8,0,0,13,-1,2013-01-06 12:31:49,2013-01-25 08:59:14,13000246CF10A,2013-01-06,,1,F,Grand Theft in the 3rd Degree,1,13003640CF10A,(F3),0,2013-03-13,Felony Petit Theft,2013-03-13,2013-07-20,,1,13014344CF10A,(F3),2013-10-06,Battery on Law Enforc Officer,Risk of Recidivism,8,High,2013-01-07,Risk of Violence,3,Low,2013-01-07,2013-03-13,2013-07-20,13,18,65,1,1\r\n7808,torey scott,torey,scott,2014-05-29,Male,1978-12-07,37,25 - 45,African-American,0,2,0,0,2,-1,2014-05-28 10:35:03,2014-05-29 09:04:05,14007388CF10A,2014-05-28,,1,F,Felony Driving While Lic Suspd,1,15055059TC40A,(M2),,2015-09-27,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-05-29,Risk of Violence,4,Low,2014-05-29,2014-05-28,2014-05-29,2,0,486,1,1\r\n7809,deridra feingold,deridra,feingold,2014-11-01,Female,1960-12-28,55,Greater than 45,Caucasian,0,7,0,0,0,-2,2014-10-30 09:55:59,2014-11-05 12:51:10,14014606CF10A,2014-10-30,,2,F,Grand Theft in the 3rd Degree,1,15015599TC10A,(M2),1,2015-05-22,Unlaw LicTag/Sticker Attach,2015-05-23,2015-05-26,,0,,,,,Risk of Recidivism,7,Medium,2014-11-01,Risk of Violence,5,Medium,2014-11-01,2014-10-30,2014-11-05,0,4,202,1,1\r\n7811,jose benites,jose,benites,2013-09-27,Male,1972-09-08,43,25 - 45,Caucasian,0,1,0,0,1,-1,2013-09-26 07:30:58,2013-09-27 07:56:36,13018339MM10A,2013-09-26,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-27,Risk of Violence,1,Low,2013-09-27,2013-09-26,2013-09-27,1,0,917,0,0\r\n7812,marshall higgs,marshall,higgs,2013-02-27,Male,1988-11-26,27,25 - 45,African-American,0,10,5,1,27,0,2013-02-27 05:59:45,2013-02-27 07:50:16,13004095MM10A,2013-02-27,,0,M,Possess Cannabis/20 Grams Or Less,1,14008267MM10A,(M1),0,2014-05-05,Possess Cannabis/20 Grams Or Less,2014-05-05,2014-06-17,,1,14006274CF10A,(F2),2014-05-05,Aggravated Battery / Pregnant,Risk of Recidivism,10,High,2013-02-27,Risk of Violence,9,High,2013-02-27,2013-05-17,2013-11-24,27,0,79,0,1\r\n7813,james jackson,james,jackson,2013-03-21,Male,1990-03-25,26,25 - 45,African-American,0,6,0,0,7,-1,2013-03-20 03:58:00,2013-03-21 07:18:31,13004012CF10A,2013-03-20,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-21,Risk of Violence,6,Medium,2013-03-21,2014-08-19,2015-05-13,7,0,516,0,0\r\n7815,michelle briceno,michelle,briceno,2013-08-27,Female,1974-02-19,42,25 - 45,Caucasian,0,6,0,0,4,5,2013-09-01 06:05:36,2013-09-01 12:39:55,13012164MM10A,2013-06-25,,63,M,Battery,1,13016723MM10A,(M2),0,2013-09-01,Disorderly Conduct,2013-09-01,2013-09-01,,0,,,,,Risk of Recidivism,6,Medium,2013-08-27,Risk of Violence,3,Low,2013-08-27,2013-09-01,2013-09-01,4,0,5,0,1\r\n7817,jelissa garcia,jelissa,garcia,2013-09-05,Male,1989-04-03,27,25 - 45,Hispanic,0,2,0,0,0,-1,2013-09-04 11:06:07,2013-09-05 07:54:41,13016930MM10A,2013-09-04,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-05,Risk of Violence,3,Low,2013-09-05,2013-09-04,2013-09-05,0,0,939,0,0\r\n7818,jay fisher,jay,fisher,2013-11-29,Male,1975-02-08,41,25 - 45,Caucasian,0,5,0,0,1,0,2013-11-29 02:47:41,2014-01-30 11:45:51,07011575CF10A,,2013-11-29,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-29,Risk of Violence,7,Medium,2013-11-29,2013-11-29,2014-01-30,1,62,854,0,0\r\n7819,thomas baldwin,thomas,baldwin,2013-07-11,Male,1994-08-28,21,Less than 25,African-American,0,9,1,0,2,-24,2013-06-17 04:17:28,2013-07-08 07:13:44,13011621MM10A,2013-06-16,,25,M,Battery,1,14008236CF10A,(M1),0,2014-06-14,Unlaw Use False Name/Identity,2014-06-14,2014-07-14,,0,,,,,Risk of Recidivism,9,High,2013-07-11,Risk of Violence,7,Medium,2013-07-11,2014-06-14,2014-07-14,2,0,338,1,1\r\n7820,corneilus sampson,corneilus,sampson,2014-09-05,Male,1985-05-18,30,25 - 45,African-American,0,2,0,0,4,-1,2014-09-04 07:57:39,2014-09-05 09:06:40,14013261MM10A,2014-09-04,,1,M,Battery,1,16001713CF10A,(F3),0,2016-02-09,Aggravated Assault W/Dead Weap,2016-02-09,2016-02-10,,1,16001713CF10A,(F3),2016-02-09,Aggravated Assault W/Dead Weap,Risk of Recidivism,2,Low,2014-09-05,Risk of Violence,2,Low,2014-09-05,2016-02-09,2016-02-10,4,0,522,1,1\r\n7821,jonathan lauf,jonathan,lauf,2013-01-12,Male,1985-11-07,30,25 - 45,Caucasian,0,8,0,0,1,-1,2013-01-11 02:26:13,2013-01-12 04:40:26,13000541CF10A,2013-01-11,,1,F,Possession Of Fentanyl,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-12,Risk of Violence,3,Low,2013-01-12,2014-12-09,2014-12-11,1,0,696,0,0\r\n7823,jennifer kemp,jennifer,kemp,2013-03-04,Female,1971-01-30,45,Greater than 45,Caucasian,0,9,0,0,0,-1,2013-03-03 04:23:16,2013-03-04 03:20:47,13003183CF10A,2013-03-03,,1,F,Battery on Law Enforc Officer,1,13010955MM10A,(M1),-1,2013-06-07,Extradition/Defendants,2013-06-06,2014-04-24,,0,,,,,Risk of Recidivism,9,High,2013-03-04,Risk of Violence,2,Low,2013-03-04,2013-06-06,2014-04-24,0,0,95,1,1\r\n7825,tyrel doe,tyrel,doe,2014-11-12,Male,1992-11-14,23,Less than 25,African-American,0,8,0,0,2,-9,2014-11-03 03:58:47,2014-11-10 08:37:45,14014772CF10A,2014-11-03,,9,F,Aggravated Assault W/Dead Weap,1,15011743CF10A,(F3),,2015-09-10,Poss Pyrrolidinovalerophenone,,,,0,,,,,Risk of Recidivism,8,High,2014-11-12,Risk of Violence,8,High,2014-11-12,2015-02-15,2015-03-18,2,0,95,0,1\r\n7830,taneka walls,taneka,walls,2013-12-30,Female,1985-04-18,31,25 - 45,African-American,0,5,0,0,2,-1,2013-12-29 05:41:34,2014-06-23 08:58:22,13017918CF10A,2013-12-29,,1,F,Aggravated Battery / Pregnant,1,14015375MM10A,(M1),0,2014-10-22,Resist/Obstruct W/O Violence,2014-10-22,2014-10-27,,0,,,,,Risk of Recidivism,5,Medium,2013-12-30,Risk of Violence,4,Low,2013-12-30,2014-10-22,2014-10-27,2,175,296,1,1\r\n7832,william porter,william,porter,2014-10-27,Male,1975-10-10,40,25 - 45,African-American,0,6,0,0,8,0,2014-10-27 05:38:53,2014-12-09 09:50:48,14015552MM10A,2014-10-27,,0,M,Assault,1,16007544TC40A,(M2),,2016-01-29,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2014-10-27,Risk of Violence,4,Low,2014-10-27,2014-10-27,2014-12-09,8,43,459,1,1\r\n7834,travon bentley,travon,bentley,2013-11-19,Male,1982-11-11,33,25 - 45,African-American,0,2,0,0,1,-17,2013-11-02 05:15:33,2013-11-03 01:25:20,13015279CF10A,2013-11-02,,17,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-19,Risk of Violence,1,Low,2013-11-19,2015-05-04,2015-05-11,1,0,531,0,0\r\n7835,daniel spencer,daniel,spencer,2013-10-22,Male,1975-10-26,40,25 - 45,African-American,0,3,0,0,11,-1,2013-10-21 04:00:29,2013-10-21 08:15:51,13019922MM10A,2013-10-21,,1,M,Driving License Suspended,1,14015923TC10A,(M2),,2014-04-09,Susp Drivers Lic 1st Offense,,,,1,15009330MM10A,(M1),2015-08-10,Battery,Risk of Recidivism,3,Low,2013-10-22,Risk of Violence,2,Low,2013-10-22,2013-10-21,2013-10-21,11,0,169,1,1\r\n7837,jeffry morgan,jeffry,morgan,2014-02-26,Male,1959-09-28,56,Greater than 45,Caucasian,0,2,0,0,1,0,2014-02-26 02:55:56,2014-03-13 08:51:59,14002703CF10A,2014-02-26,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-26,Risk of Violence,1,Low,2014-02-26,2014-02-26,2014-03-13,1,15,765,0,0\r\n7838,wesley smith,wesley,smith,2014-02-17,Male,1994-09-06,21,Less than 25,African-American,0,3,0,0,0,-1,2014-02-16 06:13:33,2014-02-17 12:49:42,14002213CF10A,2014-02-16,,1,M,Disorderly Conduct,1,14005598MM10A,(M2),0,2014-04-01,Prowling/Loitering,2014-04-01,2014-04-03,,0,,,,,Risk of Recidivism,3,Low,2014-02-17,Risk of Violence,5,Medium,2014-02-17,2014-04-01,2014-04-03,0,0,43,1,1\r\n7840,indiana smith,indiana,smith,2013-04-10,Male,1994-02-16,22,Less than 25,Caucasian,0,2,0,0,1,-36,2013-03-05 11:23:03,2013-03-06 07:15:04,13003288CF10A,2013-03-05,,36,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,5,Medium,2013-04-10,2014-12-31,2015-01-09,1,0,630,0,0\r\n7842,tommy robinson,tommy,robinson,2013-02-13,Male,1965-03-01,51,Greater than 45,African-American,0,1,0,0,4,-28,2013-01-16 08:10:42,2013-01-18 04:32:26,13000786CF10A,2013-01-16,,28,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,2,Low,2013-02-13,2013-01-16,2013-01-18,4,0,1143,0,0\r\n7843,edgar ceron,edgar,ceron,2013-09-04,Male,1979-08-06,36,25 - 45,Caucasian,0,1,0,0,0,0,2013-09-04 06:00:32,2013-09-05 05:33:52,13016957MM10A,2013-09-04,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-09-04,2013-09-05,0,1,940,0,0\r\n7846,joel dominguez,joel,dominguez,2013-02-10,Male,1991-04-02,25,25 - 45,Hispanic,0,6,0,0,3,-1,2013-02-09 11:26:36,2013-02-10 07:48:25,13002032CF10A,2013-02-09,,1,F,Possession of Cocaine,1,14006224CF10A,(F3),,2014-05-04,Possession of Cocaine,,,,1,15009919CF10A,(M1),2015-08-01,Discharge Firearm in Public/Res,Risk of Recidivism,6,Medium,2013-02-10,Risk of Violence,4,Low,2013-02-10,2016-02-01,2016-04-19,3,0,448,1,1\r\n7847,jack jackson,jack,jackson,2014-02-06,Male,1985-11-05,30,25 - 45,Caucasian,0,1,0,0,0,0,2014-02-06 04:06:20,2014-02-06 08:57:25,14004841MU10A,2014-02-06,,0,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-06,Risk of Violence,2,Low,2014-02-06,2014-02-06,2014-02-06,0,0,785,0,0\r\n7848,caitlin carter,caitlin,carter,2013-05-25,Female,1994-10-13,21,Less than 25,Caucasian,0,5,0,0,0,-1,2013-05-24 12:37:03,2013-05-25 08:02:40,13007442CF10A,2013-05-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-25,Risk of Violence,6,Medium,2013-05-25,2013-10-17,2013-12-21,0,0,145,0,0\r\n7850,vincente delgado,vincente,delgado,2014-06-06,Male,1990-07-20,25,25 - 45,Hispanic,0,2,1,1,2,-1,2014-06-05 07:13:41,2014-06-06 02:37:16,14007814CF10A,2014-06-05,,1,F,Carrying Concealed Firearm,1,14074373TC40A,(M2),,2014-10-31,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-06-06,Risk of Violence,3,Low,2014-06-06,2014-06-05,2014-06-06,2,0,147,1,1\r\n7851,valentin del-carmen,valentin,del-carmen,2013-01-13,Male,1978-03-10,38,25 - 45,Hispanic,0,2,0,0,0,0,2013-01-13 03:01:20,2013-01-14 08:35:03,13000580CF10A,2013-01-13,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-13,Risk of Violence,2,Low,2013-01-13,2013-01-13,2013-01-14,0,1,1174,0,0\r\n7852,david hurtado,david,hurtado,2013-04-12,Male,1987-05-01,28,25 - 45,Caucasian,0,5,0,0,3,-62,2013-02-09 03:11:07,2013-02-09 10:19:58,12026283MM10A,,2013-02-09,62,M,arrest case no charge,1,14086152TC30A,(M1),151,2014-10-16,Opert With Susp DL 2nd Offens,2015-03-16,2015-03-17,,0,,,,,Risk of Recidivism,5,Medium,2013-04-12,Risk of Violence,2,Low,2013-04-12,2014-07-25,2014-07-26,3,0,469,0,1\r\n7853,muntaz majeed,muntaz,majeed,2014-01-13,Male,1974-09-26,41,25 - 45,African-American,0,2,0,0,3,-1,2014-01-12 03:45:52,2014-01-14 10:17:54,14000572MM10A,2014-01-12,,1,M,Driving Under The Influence,1,15057768TC40A,(M2),,2015-10-06,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-01-12,2014-01-14,3,1,631,1,1\r\n7856,angie morales,angie,morales,2013-02-07,Female,1994-04-19,22,Less than 25,Caucasian,0,7,0,0,0,-2,2013-02-05 09:33:50,2013-02-06 10:01:51,13001795CF10A,2013-02-05,,2,F,Del Cannabis For Consideration,1,14010283CF10A,(F3),0,2014-07-28,Possession of Cocaine,2014-07-28,2014-07-29,,0,,,,,Risk of Recidivism,7,Medium,2013-02-07,Risk of Violence,6,Medium,2013-02-07,2013-10-06,2013-10-09,0,0,241,0,1\r\n7859,edward greenfield,edward,greenfield,2014-08-29,Male,1986-05-30,29,25 - 45,Other,0,6,0,0,8,-1,2014-08-28 09:55:48,2014-08-29 08:18:56,14011759CF10A,2014-08-28,,1,F,Felony Petit Theft,1,15021769TC20A,(M2),,2015-03-27,Driving License Suspended,,,,1,15006304CF10A,(F2),2015-05-14,Robbery / No Weapon,Risk of Recidivism,6,Medium,2014-08-29,Risk of Violence,6,Medium,2014-08-29,2014-10-20,2014-10-21,8,0,52,0,1\r\n7862,james zevolo,james,zevolo,2013-03-16,Male,1994-12-20,21,Less than 25,Hispanic,0,3,0,0,0,-1,2013-03-15 04:47:34,2013-03-16 01:38:46,13003810CF10A,2013-03-15,,1,F,Poss Unlaw Issue Driver Licenc,1,14000770MM30A,(M1),,2014-04-13,Theft/To Deprive,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-16,Risk of Violence,6,Medium,2013-03-16,2013-03-15,2013-03-16,0,0,393,1,1\r\n7864,kimberly ginnie,kimberly,ginnie,2013-02-15,Female,1975-10-05,40,25 - 45,African-American,0,1,0,0,2,-1,2013-02-14 09:23:00,2013-02-15 12:12:17,13002321CF10A,2013-02-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-15,Risk of Violence,1,Low,2013-02-15,2013-02-14,2013-02-15,2,0,1141,0,0\r\n7865,fred mcclain,fred,mcclain,2013-09-05,Male,1968-06-29,47,Greater than 45,African-American,0,6,0,0,12,-98,2013-05-30 12:28:13,2013-09-05 11:31:06,13007666CF10A,,2013-05-29,99,F,arrest case no charge,1,14004990MM10A,(M1),0,2014-03-22,Unlaw Use False Name/Identity,2014-03-22,2014-07-31,,0,,,,,Risk of Recidivism,6,Medium,2013-09-05,Risk of Violence,3,Low,2013-09-05,2014-03-22,2014-07-31,12,0,198,1,1\r\n7867,anthony kiffin,anthony,kiffin,2013-09-11,Male,1978-09-19,37,25 - 45,African-American,0,3,0,0,2,-13,2013-08-29 05:03:55,2013-09-05 12:21:23,13012230CF10A,2013-08-29,,13,F,Burglary With Assault/battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-11,Risk of Violence,2,Low,2013-09-11,2013-08-29,2013-09-05,2,0,933,0,0\r\n7868,taneka dean,taneka,dean,2013-05-20,Female,1978-09-08,37,25 - 45,African-American,0,3,0,0,0,-3,2013-05-17 09:06:49,2013-05-18 08:14:43,13007071CF10A,2013-05-17,,3,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-20,Risk of Violence,2,Low,2013-05-20,2013-05-17,2013-05-18,0,0,1047,0,0\r\n7869,jasmine trump,jasmine,trump,2013-09-05,Female,1993-01-04,23,Less than 25,African-American,0,5,0,0,2,-2,2013-09-03 04:05:37,2013-09-04 08:26:49,13010159CF10A,,2013-09-03,2,F,arrest case no charge,1,14007234MM10A,(M1),0,2014-05-01,Battery,2014-05-01,2014-05-31,,1,14007234MM10A,(M1),2014-05-01,Battery,Risk of Recidivism,5,Medium,2013-09-05,Risk of Violence,5,Medium,2013-09-05,2014-05-01,2014-05-31,2,0,238,1,1\r\n7870,raymond nelson,raymond,nelson,2013-03-21,Male,1960-06-16,55,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-03-20 04:29:14,2013-03-21 02:12:17,13004028CF10A,2013-03-20,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,1,Low,2013-03-21,2013-03-20,2013-03-21,0,0,1107,0,0\r\n7871,james zebo,james,zebo,2014-11-02,Male,1996-05-05,19,Less than 25,African-American,0,4,0,0,1,-1,2014-11-01 11:47:12,2014-11-05 10:52:42,14014683CF10A,2014-11-01,,1,F,Dealing in Stolen Property,1,15003695MM10A,(M1),0,2015-03-30,Battery,2015-03-30,2015-04-08,,1,15003695MM10A,(M1),2015-03-30,Battery,Risk of Recidivism,4,Low,2014-11-02,Risk of Violence,7,Medium,2014-11-02,2015-03-30,2015-04-08,1,3,148,1,1\r\n7874,trevis martin,trevis,martin,2014-01-06,Male,1989-12-04,26,25 - 45,Caucasian,0,2,0,0,1,0,2014-01-06 01:38:41,2014-01-07 03:10:22,11016118CF10A,,2014-01-06,0,F,arrest case no charge,1,14028645TC10A,(M2),249,2014-07-21,Operating W/O Valid License,2015-03-27,2015-03-28,,0,,,,,Risk of Recidivism,2,Low,2014-01-06,Risk of Violence,3,Low,2014-01-06,2014-01-06,2014-01-07,1,1,196,1,1\r\n7875,myron berry,myron,berry,2013-03-31,Male,1991-03-29,25,25 - 45,African-American,0,9,0,0,4,,,,13004558CF10A,2013-03-30,,1,F,Grand Theft (Motor Vehicle),1,14014768CF10A,(F3),,2014-11-03,Poss Similitude of Drivers Lic,,,,0,,,,,Risk of Recidivism,9,High,2013-03-31,Risk of Violence,8,High,2013-03-31,2014-01-14,2014-08-11,4,0,289,0,1\r\n7881,rashad bogans,rashad,bogans,2013-04-26,Male,1990-10-13,25,25 - 45,African-American,0,3,0,0,0,-1,2013-04-25 06:46:34,2013-04-26 07:16:35,13007997MM10A,2013-04-25,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-26,Risk of Violence,5,Medium,2013-04-26,2013-07-23,2013-07-26,0,0,88,0,0\r\n7882,karen bryden,karen,bryden,2013-07-29,Male,1967-05-31,48,Greater than 45,Caucasian,0,2,0,0,3,621,2015-04-11 01:28:32,2015-04-17 10:05:30,13010433CF10A,2013-07-25,,4,F,Possession Of Heroin,1,16002503MM10A,(M1),0,2016-03-15,Trespass Other Struct/Convey,2016-03-15,2016-03-16,,0,,,,,Risk of Recidivism,2,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2015-04-11,2015-04-17,3,0,621,0,0\r\n7884,mark demeo,mark,demeo,2014-12-23,Male,1976-08-13,39,25 - 45,Caucasian,0,2,0,0,17,-1,2014-12-22 03:50:40,2015-01-26 09:27:55,14016934CF10A,2014-12-22,,1,F,Poss Pyrrolidinovalerophenone,1,15002126CF10A,(M1),0,2015-02-15,Possess Drug Paraphernalia,2015-02-15,2015-03-24,,0,,,,,Risk of Recidivism,2,Low,2014-12-23,Risk of Violence,1,Low,2014-12-23,2015-02-15,2015-03-24,17,34,54,1,1\r\n7889,eduardo cisneros,eduardo,cisneros,2013-11-10,Male,1979-08-23,36,25 - 45,Caucasian,0,3,0,0,0,-1,2013-11-09 09:35:08,2013-11-10 02:20:46,13015628CF10A,2013-11-09,,1,F,Grand Theft in the 3rd Degree,1,14066043TC20A,(M2),57,2014-08-28,No/Improper Drivers License,2014-10-24,2014-10-24,,0,,,,,Risk of Recidivism,3,Low,2013-11-10,Risk of Violence,5,Medium,2013-11-10,2015-02-24,2020-01-01,0,0,291,1,1\r\n7890,eric barker,eric,barker,2013-05-26,Male,1989-06-21,26,25 - 45,African-American,0,8,0,0,6,0,2013-05-26 03:26:17,2013-06-05 10:17:58,13021590TC10A,2013-05-26,,0,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-26,Risk of Violence,6,Medium,2013-05-26,2014-01-14,2014-01-23,6,10,233,0,0\r\n7891,james smith,james,smith,2014-11-02,Male,1964-09-06,51,Greater than 45,African-American,0,1,0,0,8,-1,2014-11-01 05:57:13,2014-11-04 08:54:12,14014689CF10A,2014-11-01,,1,M,Disorderly Conduct,1,16001922MM10A,(M1),0,2016-02-29,Tresspass in Struct/Convey Occupy,2016-02-29,2016-03-01,,0,,,,,Risk of Recidivism,1,Low,2014-11-02,Risk of Violence,1,Low,2014-11-02,2016-02-29,2016-03-01,8,2,484,1,1\r\n7894,gregory calix,gregory,calix,2013-11-19,Male,1995-10-09,20,Less than 25,African-American,0,8,0,0,0,-1,2013-11-18 07:33:48,2013-12-18 09:34:42,13016012CF10A,2013-11-18,,1,F,Att Burgl Unoccupied Dwel,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-11-19,Risk of Violence,8,High,2013-11-19,2013-11-18,2013-12-18,0,29,864,0,0\r\n7895,melissa slason,melissa,slason,2013-02-11,Female,1972-08-27,43,25 - 45,Caucasian,0,1,0,0,0,-1,2013-02-10 02:39:21,2013-02-11 04:05:45,13002962MM10A,2013-02-10,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-10,2013-02-11,0,0,1145,0,0\r\n7896,jashon gillis,jashon,gillis,2014-07-04,Male,1993-06-03,22,Less than 25,African-American,0,7,0,0,0,-1,2014-07-03 09:30:39,2014-08-05 07:51:46,14009174CF10A,2014-07-03,,1,F,Poss Pyrrolidinovalerophenone,1,14013106MM10A,(M1),0,2014-09-01,,2014-09-01,2014-09-02,,0,,,,,Risk of Recidivism,7,Medium,2014-07-04,Risk of Violence,6,Medium,2014-07-04,2014-09-01,2014-09-02,0,32,59,1,1\r\n7897,christine leblanc,christine,leblanc,2014-12-25,Female,1991-12-23,24,Less than 25,Caucasian,0,5,0,0,0,-1,2014-12-24 10:38:55,2014-12-25 01:06:56,14018027MM10A,2014-12-24,,1,M,Battery,1,15028481MU10A,(M2),0,2015-10-15,Lve/Scen/Acc/Veh/Prop/Damage,2015-10-15,2015-10-16,,0,,,,,Risk of Recidivism,5,Medium,2014-12-25,Risk of Violence,3,Low,2014-12-25,2015-10-15,2015-10-16,0,0,294,1,1\r\n7898,clifford hyman,clifford,hyman,2013-08-17,Male,1980-08-12,35,25 - 45,African-American,0,3,0,0,2,-1,2013-08-16 05:44:10,2013-08-17 07:39:31,13011506CF10A,2013-08-16,,1,F,Trespassing/Construction Site,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-17,Risk of Violence,2,Low,2013-08-17,2013-08-16,2013-08-17,2,0,958,0,0\r\n7900,kevin turnquest,kevin,turnquest,2013-01-16,Male,1958-06-29,57,Greater than 45,African-American,0,9,0,0,12,70,2013-03-27 12:52:38,2013-06-13 10:32:00,13000713CF10A,,2013-01-15,1,F,arrest case no charge,1,13014874CF10A,(F2),0,2013-10-24,Burglary Dwelling Occupied,2013-10-24,2013-12-20,,0,,,,,Risk of Recidivism,9,High,2013-01-16,Risk of Violence,4,Low,2013-01-16,2013-03-27,2013-06-13,12,0,70,0,1\r\n7901,roberto teruggi,roberto,teruggi,2013-08-27,Male,1990-07-13,25,25 - 45,Caucasian,0,7,0,0,6,39,2013-10-05 11:29:40,2013-11-29 01:08:45,13012730MM10A,2013-07-03,,55,M,Battery,1,14001206MM40A,(M1),,2014-02-28,Possess Cannabis/20 Grams Or Less,,,,1,14003676CF10A,(F3),2014-03-15,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-08-27,Risk of Violence,5,Medium,2013-08-27,2013-10-05,2013-11-29,6,0,39,0,1\r\n7902,thomas carter,thomas,carter,2013-05-26,Male,1961-01-17,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-25 05:28:09,2013-05-26 08:34:54,13010065MM10A,2013-05-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2013-05-25,2013-05-26,0,0,1041,0,0\r\n7903,mary oneal,mary,oneal,2013-03-21,Female,1964-02-08,52,Greater than 45,African-American,0,1,0,0,0,0,2013-03-21 12:52:08,2013-03-21 06:13:19,13005478MM10A,2013-03-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-21,Risk of Violence,1,Low,2013-03-21,2013-03-21,2013-03-21,0,0,1107,0,0\r\n7904,zezelda wright,zezelda,wright,2013-09-06,Female,1982-05-25,33,25 - 45,African-American,0,9,0,0,0,-1,2013-09-05 03:46:16,2013-09-12 08:10:49,13016988MM10A,2013-09-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-06,Risk of Violence,6,Medium,2013-09-06,2013-09-05,2013-09-12,0,6,938,0,0\r\n7905,teron sterling,teron,sterling,2013-01-25,Male,1985-10-02,30,25 - 45,Other,0,1,0,0,0,-1,2013-01-24 01:38:57,2013-01-25 07:33:52,13001153CF10A,,2013-01-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-25,Risk of Violence,2,Low,2013-01-25,2013-01-24,2013-01-25,0,0,1162,0,0\r\n7906,joshua brey,joshua,brey,2014-07-31,Male,1983-11-09,32,25 - 45,African-American,0,5,0,0,3,-1,2014-07-30 01:39:00,2014-09-05 08:35:07,14010391CF10A,,2014-07-30,1,F,arrest case no charge,1,14001503MM30A,(M2),22,2014-09-17,Petit Theft,2014-10-09,2014-10-10,,0,,,,,Risk of Recidivism,5,Medium,2014-07-31,Risk of Violence,2,Low,2014-07-31,2014-07-30,2014-09-05,3,36,48,1,1\r\n7908,randy jewel,randy,jewel,2014-09-21,Male,1996-02-13,20,Less than 25,African-American,1,9,2,0,5,-1,2014-09-20 04:22:30,2014-09-22 04:06:35,14012744CF10A,2014-09-20,,1,F,Tampering With Physical Evidence,1,14018154MM10A,(M1),0,2014-12-29,Petit Theft $100- $300,2014-12-29,2015-01-21,,0,,,,,Risk of Recidivism,9,High,2014-09-21,Risk of Violence,9,High,2014-09-21,2014-12-29,2015-01-21,5,1,99,1,1\r\n7909,joseph gray,joseph,gray,2014-03-02,Male,1949-04-19,67,Greater than 45,African-American,0,4,0,0,8,-1,2014-03-01 09:29:59,2014-03-03 02:05:54,14002922CF10A,2014-03-01,,1,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-02,Risk of Violence,2,Low,2014-03-02,2014-03-01,2014-03-03,8,1,761,0,0\r\n7910,addlin etienne,addlin,etienne,2013-10-27,Male,1984-09-26,31,25 - 45,African-American,0,4,0,0,7,-1,2013-10-26 05:44:07,2013-10-27 08:13:55,13020316MM10A,2013-10-26,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-27,Risk of Violence,2,Low,2013-10-27,2013-10-26,2013-10-27,7,0,887,0,0\r\n7912,brandyn martinez,brandyn,martinez,2014-07-23,Male,1995-03-28,21,Less than 25,Caucasian,0,4,0,0,0,-1,2014-07-22 12:50:30,2014-08-20 11:15:52,14010016CF10A,2014-07-22,,1,F,Grand Theft (Motor Vehicle),1,15004925MM10A,(M1),0,2015-05-01,Petit Theft $100- $300,2015-05-01,2015-05-19,,0,,,,,Risk of Recidivism,4,Low,2014-07-23,Risk of Violence,6,Medium,2014-07-23,2015-05-01,2015-05-19,0,28,282,1,1\r\n7913,mark montgomery,mark,montgomery,2013-03-24,Male,1985-11-03,30,25 - 45,African-American,0,8,0,0,4,-1,2013-03-23 01:32:34,2013-03-28 09:37:27,13005696MM10A,2013-03-23,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-24,Risk of Violence,4,Low,2013-03-24,2013-03-23,2013-03-28,4,4,1104,0,0\r\n7914,john davis,john,davis,2013-03-11,Male,1960-06-25,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-10 12:30:14,2013-03-11 02:00:14,13004813MM10A,2013-03-09,,2,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-06-03,2013-06-19,0,0,84,0,0\r\n7915,kyle scott,kyle,scott,2013-03-01,Male,1991-03-23,25,25 - 45,African-American,0,2,0,0,0,0,2013-03-01 03:57:35,2013-03-02 05:35:14,13003139CF10A,2013-03-01,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-01,Risk of Violence,3,Low,2013-03-01,2013-03-01,2013-03-02,0,1,1127,0,0\r\n7916,ronel lamour,ronel,lamour,2013-02-12,Male,1990-10-07,25,25 - 45,African-American,0,7,0,0,0,0,2013-02-12 01:53:34,2013-02-12 09:28:20,13002112CF10A,2013-02-11,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-12,Risk of Violence,5,Medium,2013-02-12,2013-04-10,2013-04-11,0,0,57,0,0\r\n7917,gurden cunningham,gurden,cunningham,2013-06-26,Male,1969-03-18,47,Greater than 45,African-American,0,8,0,0,17,-55,2013-05-02 01:02:39,2013-05-02 07:40:25,13006244CF10A,2013-05-01,,56,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-06-26,Risk of Violence,2,Low,2013-06-26,2015-08-18,2015-08-19,17,0,783,0,0\r\n7919,jamar howard,jamar,howard,2013-05-25,Male,1988-08-11,27,25 - 45,African-American,0,8,0,0,10,0,2013-05-25 04:58:47,2013-05-26 08:32:44,13002564CF10A,,2013-05-25,0,F,arrest case no charge,1,13042735TC10A,(M2),44,2013-10-21,Operating W/O Valid License,2013-12-04,2013-12-24,,0,,,,,Risk of Recidivism,8,High,2013-05-25,Risk of Violence,8,High,2013-05-25,2013-05-25,2013-05-26,10,1,149,1,1\r\n7920,dominique williams,dominique,williams,2013-10-30,Male,1993-08-05,22,Less than 25,African-American,0,4,0,0,0,0,2013-10-30 02:46:16,2013-10-30 09:15:53,13015136CF10A,2013-10-29,,1,F,Possess w/I/Utter Forged Bills,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-30,Risk of Violence,5,Medium,2013-10-30,2013-10-30,2013-10-30,0,0,884,0,0\r\n7922,thony ferdinand,thony,ferdinand,2013-03-02,Male,1978-05-21,37,25 - 45,African-American,0,6,0,0,8,0,2013-03-02 01:21:18,2013-03-03 04:34:08,13003147CF10A,,2013-03-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-02,Risk of Violence,4,Low,2013-03-02,2013-09-12,2013-11-13,8,1,194,0,0\r\n7923,john dudas,john,dudas,2013-02-06,Male,1948-03-23,68,Greater than 45,Caucasian,0,7,0,0,7,-1,2013-02-05 05:11:31,2013-02-10 10:00:25,13001782CF10A,2013-02-04,,2,F,Aggravated Assault W/dead Weap,1,14007384MM10A,(M1),0,2014-05-04,Battery,2014-05-04,2014-05-20,,1,14007384MM10A,(M1),2014-05-04,Battery,Risk of Recidivism,7,Medium,2013-02-06,Risk of Violence,6,Medium,2013-02-06,2014-05-04,2014-05-20,7,4,452,1,1\r\n7928,garry letsky,garry,letsky,2013-09-08,Male,1979-03-17,37,25 - 45,Caucasian,0,6,0,0,0,0,2013-09-08 04:52:48,2013-09-09 02:05:47,13012686CF10A,2013-09-07,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-08,Risk of Violence,3,Low,2013-09-08,2013-09-08,2013-09-09,0,1,936,0,0\r\n7929,nioka myrie,nioka,myrie,2013-11-20,Female,1974-04-08,42,25 - 45,African-American,0,1,0,0,1,-49,2013-10-02 03:57:20,2013-10-24 02:05:41,13013830CF10A,2013-10-02,,49,F,Grand Theft on 65 Yr or Older,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-20,Risk of Violence,1,Low,2013-11-20,2013-10-02,2013-10-24,1,0,863,0,0\r\n7930,rodney alvarez,rodney,alvarez,2014-01-24,Male,1993-05-02,22,Less than 25,Caucasian,0,5,0,0,5,-1,2014-01-23 09:18:58,2014-01-24 01:28:28,14001266MM10A,2014-01-23,,1,M,Battery,1,14000768MM40A,(M1),202,2014-02-17,Possess Cannabis/20 Grams Or Less,2014-09-07,2014-09-07,,0,,,,,Risk of Recidivism,5,Medium,2014-01-24,Risk of Violence,4,Low,2014-01-24,2015-01-03,2015-01-09,5,0,24,1,1\r\n7931,vantonio wilson,vantonio,wilson,2014-03-09,Male,1985-09-13,30,25 - 45,African-American,0,2,0,0,4,-1,2014-03-08 06:53:55,2014-03-09 09:49:38,14004041MM10A,2014-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-09,Risk of Violence,2,Low,2014-03-09,2014-03-08,2014-03-09,4,0,754,0,0\r\n7932,clinton marshall,clinton,marshall,2013-06-17,Male,1982-03-04,34,25 - 45,African-American,0,2,0,0,1,-3,2013-06-14 07:49:13,2013-06-16 12:55:15,13008453CF10A,2013-06-14,,3,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-17,Risk of Violence,2,Low,2013-06-17,2015-01-10,2015-01-14,1,0,572,0,0\r\n7935,woodson tarin,woodson,tarin,2013-04-15,Male,1988-03-13,28,25 - 45,Other,0,1,0,0,0,-1,2013-04-14 08:51:52,2013-04-16 11:03:36,13007202MM10A,2013-04-14,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-15,Risk of Violence,2,Low,2013-04-15,2013-04-14,2013-04-16,0,1,1082,0,0\r\n7936,brian marcantel,brian,marcantel,2014-07-08,Male,1978-08-17,37,25 - 45,Caucasian,0,5,0,0,4,-18,2014-06-20 08:59:53,2014-06-21 07:10:18,14009688MM10A,2014-06-20,,18,M,Possess Cannabis/20 Grams Or Less,1,16000237CF10A,(F3),0,2016-01-06,Depriv LEO of Protect/Communic,2016-01-06,2016-03-28,,1,16000237CF10A,(F3),2016-01-06,Aggravated Assault W/Dead Weap,Risk of Recidivism,5,Medium,2014-07-08,Risk of Violence,5,Medium,2014-07-08,2016-01-06,2016-03-28,4,0,547,1,1\r\n7942,nicola dixon,nicola,dixon,2013-04-23,Female,1975-04-18,41,25 - 45,African-American,0,8,0,0,8,0,2013-04-23 02:38:34,2013-06-27 09:15:25,13003663CF10A,,2013-04-23,0,F,arrest case no charge,1,13019691MM10A,(M1),0,2013-10-17,Petit Theft $100- $300,2013-10-17,2014-04-11,,0,,,,,Risk of Recidivism,8,High,2013-04-23,Risk of Violence,4,Low,2013-04-23,2013-10-17,2014-04-11,8,65,177,1,1\r\n7943,carlos verne,carlos,verne,2014-03-07,Male,1963-05-22,52,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-03-06 11:57:06,2014-03-07 08:44:57,14003925MM10A,2014-03-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-07,Risk of Violence,1,Low,2014-03-07,2014-03-06,2014-03-07,0,0,756,0,0\r\n7944,michael ryan,michael,ryan,2013-04-09,Male,1979-06-25,36,25 - 45,Caucasian,0,1,0,0,2,-17,2013-03-23 03:00:12,2013-03-24 02:12:19,13005702MM10A,2013-03-23,,17,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-09,Risk of Violence,1,Low,2013-04-09,2013-03-23,2013-03-24,2,0,1088,0,0\r\n7945,ryan butler,ryan,butler,2013-04-01,Male,1989-05-24,26,25 - 45,Caucasian,0,2,0,0,2,-3,2013-03-29 01:48:34,2013-03-30 08:12:01,13004552CF10A,2013-03-29,,3,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-01,Risk of Violence,3,Low,2013-04-01,2013-03-29,2013-03-30,2,0,1096,0,0\r\n7946,joseph cataldo,joseph,cataldo,2013-01-23,Male,1991-10-08,24,Less than 25,Caucasian,0,2,0,0,0,0,2013-01-23 03:55:12,2013-02-07 08:39:52,13001092CF10A,2013-01-23,,0,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-23,Risk of Violence,3,Low,2013-01-23,2013-01-23,2013-02-07,0,15,1164,0,0\r\n7948,terrell hall,terrell,hall,2014-02-12,Male,1989-01-06,27,25 - 45,African-American,0,6,0,0,0,-1,2014-02-11 03:38:18,2014-02-13 04:01:59,14001955CF10A,2014-02-11,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-12,Risk of Violence,7,Medium,2014-02-12,2014-02-11,2014-02-13,0,1,779,0,0\r\n7949,radica singh,radica,singh,2013-12-27,Female,1979-03-28,37,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-27 03:37:41,2013-12-28 01:23:50,13023886MM10A,2013-12-27,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-27,Risk of Violence,1,Low,2013-12-27,2013-12-27,2013-12-28,0,1,826,0,0\r\n7952,keon james,keon,james,2013-01-04,Male,1984-11-10,31,25 - 45,African-American,0,6,0,0,1,650,2014-10-16 12:27:52,2014-10-23 02:44:46,12016300CF10A,,2012-12-13,22,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-04,Risk of Violence,6,Medium,2013-01-04,2014-10-16,2014-10-23,1,0,650,0,0\r\n7953,ricardo calderon,ricardo,calderon,2013-06-19,Male,1979-01-23,37,25 - 45,Hispanic,0,3,0,0,1,-1,2013-06-18 03:54:18,2013-06-18 05:45:50,13008601CF10A,2013-06-18,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-19,Risk of Violence,2,Low,2013-06-19,2013-06-18,2013-06-18,1,0,1017,0,0\r\n7955,dominique white,dominique,white,2013-09-30,Male,1992-08-27,23,Less than 25,African-American,0,7,0,0,3,0,2013-09-30 06:02:37,2013-11-12 09:04:33,13013692CF10A,2013-09-30,,0,F,Felony Battery (Dom Strang),1,15006413CF10A,(M1),0,2015-05-17,Unlaw Use False Name/Identity,2015-05-17,2015-08-17,,0,,,,,Risk of Recidivism,7,Medium,2013-09-30,Risk of Violence,5,Medium,2013-09-30,2015-05-17,2015-08-17,3,43,594,1,1\r\n7958,thomas blauman,thomas,blauman,2013-04-21,Male,1957-08-11,58,Greater than 45,Caucasian,0,2,0,0,5,-1,2013-04-20 12:49:59,2013-04-23 07:33:14,13007654MM10A,2013-04-20,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-21,Risk of Violence,1,Low,2013-04-21,2013-11-28,2013-12-12,5,2,221,0,0\r\n7960,francesca larosa,francesca,larosa,2013-02-20,Female,1953-05-27,62,Greater than 45,Caucasian,0,1,0,0,1,-2,2013-02-18 08:43:36,2013-02-19 02:29:33,13003460MM10A,2013-02-18,,2,M,Driving Under The Influence,1,13020435MM10A,(M2),,2013-08-14,Petit Theft,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-02-18,2013-02-19,1,0,175,1,1\r\n7962,bernadette fleury,bernadette,fleury,2014-01-02,Female,1974-04-28,41,25 - 45,African-American,0,1,0,0,0,0,2014-01-02 12:18:04,2014-01-03 02:25:43,14000088CF10A,2014-01-01,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-02,Risk of Violence,1,Low,2014-01-02,2014-01-02,2014-01-03,0,1,820,0,0\r\n7963,alan burga,alan,burga,2013-03-12,Male,1983-01-17,33,25 - 45,Hispanic,0,1,0,0,0,-1,2013-03-11 04:18:14,2013-03-12 01:14:05,13004888MM10A,2013-03-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-03-11,2013-03-12,0,0,1116,0,0\r\n7964,wanglee george,wanglee,george,2014-03-03,Male,1983-01-08,33,25 - 45,African-American,0,1,0,0,0,0,2014-03-03 03:25:46,2014-03-03 08:38:42,14003655MM10A,2014-03-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,1,Low,2014-03-03,2014-03-03,2014-03-03,0,0,760,0,0\r\n7966,macayose vermilus,macayose,vermilus,2013-02-23,Male,1983-03-12,33,25 - 45,African-American,4,10,0,0,12,-1,2013-02-22 08:34:12,2013-02-23 08:56:42,13002737CF10A,2013-02-22,,1,F,Deliver Cocaine,1,14001625CF10A,(F3),1,2014-02-05,Possession of Cocaine,2014-02-06,2015-01-22,,0,,,,,Risk of Recidivism,10,High,2013-02-23,Risk of Violence,7,Medium,2013-02-23,2015-01-22,2020-01-01,12,0,347,1,1\r\n7968,darrell kelly,darrell,kelly,2013-09-05,Male,1975-01-19,41,25 - 45,African-American,0,6,0,0,14,0,2013-09-05 02:43:41,2013-09-05 07:37:30,13012530CF10A,2013-09-05,,0,F,Possession of Cocaine,1,13014073CF10A,(F3),0,2013-10-07,Driving While License Revoked,2013-10-07,2013-10-08,,0,,,,,Risk of Recidivism,6,Medium,2013-09-05,Risk of Violence,3,Low,2013-09-05,2013-10-07,2013-10-08,14,0,32,1,1\r\n7969,david sanchez,david,sanchez,2013-05-10,Male,1993-11-16,22,Less than 25,Hispanic,0,3,0,0,0,-1,2013-05-09 01:18:03,2013-05-09 07:50:08,13006609CF10A,2013-05-09,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-10,Risk of Violence,5,Medium,2013-05-10,2013-05-09,2013-05-09,0,0,1057,0,0\r\n7971,james upp,james,upp,2013-03-09,Male,1989-10-05,26,25 - 45,Caucasian,0,5,0,0,3,-1,2013-03-08 10:32:50,2013-03-09 08:07:02,13003463CF10A,2013-03-08,,1,F,Possession of Cannabis,1,13009759MM10A,(M1),0,2013-04-28,Resist/Obstruct W/O Violence,2013-04-28,2013-06-05,,0,,,,,Risk of Recidivism,5,Medium,2013-03-09,Risk of Violence,3,Low,2013-03-09,2013-04-28,2013-06-05,3,0,50,1,1\r\n7972,erica johnson,erica,johnson,2013-09-30,Female,1982-06-23,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-09-29 09:25:30,2013-09-30 09:59:37,13013661CF10A,2013-09-29,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-29,2013-09-30,0,0,914,0,0\r\n7973,antwan johnson,antwan,johnson,2013-05-29,Male,1990-12-28,25,25 - 45,African-American,0,6,0,0,0,-1,2013-05-28 08:19:30,2013-05-29 02:05:25,13010250MM10A,2013-05-28,,1,M,False Info LEO During Invest,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-29,Risk of Violence,5,Medium,2013-05-29,2013-05-28,2013-05-29,0,0,1038,0,0\r\n7974,najeh davenport,najeh,davenport,2013-03-26,Male,1979-02-08,37,25 - 45,African-American,0,1,0,0,0,-1,2013-03-25 07:15:23,2013-03-26 07:49:33,13005852MM10A,2013-03-25,,1,M,Battery,1,13014172CF10A,(M2),0,2013-10-09,Burglary Conveyance Occupied,2013-10-09,2013-10-09,,1,13014172CF10A,(M1),2013-10-09,Battery,Risk of Recidivism,1,Low,2013-03-26,Risk of Violence,1,Low,2013-03-26,2013-10-09,2013-10-09,0,0,197,0,1\r\n7975,bradley mammarelli,bradley,mammarelli,2014-02-22,Male,1992-05-19,23,Less than 25,Caucasian,8,10,2,0,11,-1,2014-02-21 11:26:19,2014-02-25 09:15:59,14002472CF10A,2014-02-21,,1,F,Possession of Cannabis,1,15004018MM10A,(M2),0,2015-04-07,Prowling/Loitering,2015-04-07,2015-04-07,,0,,,,,Risk of Recidivism,10,High,2014-02-22,Risk of Violence,9,High,2014-02-22,2015-04-07,2015-04-07,11,3,409,0,1\r\n7976,brant troppello,brant,troppello,2013-07-17,Male,1979-01-22,37,25 - 45,Caucasian,0,8,0,0,8,-63,2013-05-15 02:43:13,2013-05-15 09:34:36,13006963CF10A,2013-05-14,,64,F,Aggravated Assault w/Firearm,1,14010545CF10A,(F3),0,2014-08-02,Possession Of Alprazolam,2014-08-02,2014-08-03,,0,,,,,Risk of Recidivism,8,High,2013-07-17,Risk of Violence,2,Low,2013-07-17,2014-08-02,2014-08-03,8,0,381,1,1\r\n7977,jason grant,jason,grant,2013-08-18,Male,1994-11-06,21,Less than 25,African-American,0,9,0,0,0,-1,2013-08-17 05:45:53,2013-08-18 06:27:56,13015612MM10A,2013-08-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-18,Risk of Violence,9,High,2013-08-18,2013-08-17,2013-08-18,0,0,957,0,0\r\n7979,robert hopkins,robert,hopkins,2014-05-14,Male,1970-06-01,45,Greater than 45,Caucasian,0,6,0,0,21,-1,2014-05-13 03:13:27,2014-05-14 10:38:42,14006669CF10A,2014-05-13,,1,F,Grand Theft in the 3rd Degree,1,14007361CF10A,(F3),0,2014-05-27,Grand Theft in the 3rd Degree,2014-05-27,2015-01-27,,0,,,,,Risk of Recidivism,6,Medium,2014-05-14,Risk of Violence,1,Low,2014-05-14,2014-05-27,2015-01-27,21,0,13,1,1\r\n7981,christopher kirby,christopher,kirby,2014-01-01,Male,1979-03-18,37,25 - 45,Caucasian,1,7,6,0,13,-1,2013-12-31 04:20:51,2014-01-01 09:05:13,14000024CF10A,2013-12-31,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-01,Risk of Violence,3,Low,2014-01-01,2013-12-31,2014-01-01,13,0,821,0,0\r\n7983,jamal cook,jamal,cook,2013-05-21,Male,1991-12-09,24,Less than 25,African-American,0,4,0,0,2,-1,2013-05-20 02:27:24,2013-05-24 02:22:59,13009722MM10A,2013-05-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-21,Risk of Violence,7,Medium,2013-05-21,2013-08-09,2013-10-04,2,3,80,0,0\r\n7985,saleem bligen,saleem,bligen,2013-12-16,Male,1980-12-25,35,25 - 45,African-American,0,4,0,0,0,-1,2013-12-15 09:42:58,2013-12-17 08:38:26,13017316CF10A,2013-12-15,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-16,Risk of Violence,3,Low,2013-12-16,2013-12-15,2013-12-17,0,1,837,0,0\r\n7986,mickeal brooks,mickeal,brooks,2014-07-12,Female,1993-07-21,22,Less than 25,African-American,0,4,0,0,0,-1,2014-07-11 07:52:32,2014-07-18 06:08:53,14009516CF10A,2014-07-11,,1,F,Aggrav Battery w/Deadly Weapon,1,16001131MM10A,(M1),1,2016-02-02,Unlaw Use False Name/Identity,2016-02-03,2016-02-03,,0,,,,,Risk of Recidivism,4,Low,2014-07-12,Risk of Violence,5,Medium,2014-07-12,2014-07-11,2014-07-18,0,6,570,1,1\r\n7987,travis fischer,travis,fischer,2013-01-15,Male,1986-10-29,29,25 - 45,Caucasian,4,9,1,0,10,-1,2013-01-14 09:30:03,2013-01-17 03:17:08,13000624CF10A,2013-01-14,,1,F,Burglary Conveyance Unoccup,1,13011287CF10A,(F3),,2013-03-28,Grand Theft Firearm,,,,1,13006458CF10A,(F2),2013-05-03,Agg Battery Grt/Bod/Harm,Risk of Recidivism,9,High,2013-01-15,Risk of Violence,5,Medium,2013-01-15,2013-01-14,2013-01-17,10,2,72,1,1\r\n7988,herbert rozier,herbert,rozier,2013-10-19,Male,1974-08-07,41,25 - 45,African-American,2,3,0,0,6,-1,2013-10-18 12:47:10,2013-10-20 02:14:19,13014612CF10A,2013-10-18,,1,F,Felony Battery w/Prior Convict,1,15003811MM10A,(M1),0,2015-04-01,Battery,2015-04-01,2015-04-02,,1,15003811MM10A,(M1),2015-04-01,Battery,Risk of Recidivism,3,Low,2013-10-19,Risk of Violence,2,Low,2013-10-19,2013-12-02,2014-02-11,6,1,44,0,1\r\n7989,lorenzo gayle,lorenzo,gayle,2013-03-26,Male,1994-03-04,22,Less than 25,African-American,0,7,0,0,3,-35,2013-02-19 05:21:54,2013-02-20 06:33:18,13002538CF10A,2013-02-19,,35,F,Grand Theft in the 3rd Degree,1,14000843CF10A,(F3),0,2014-01-20,Robbery Sudd Snatch No Weapon,2014-01-20,2014-05-09,,1,14000843CF10A,(F3),2014-01-20,Robbery Sudd Snatch No Weapon,Risk of Recidivism,7,Medium,2013-03-26,Risk of Violence,9,High,2013-03-26,2014-01-20,2014-05-09,3,0,300,1,1\r\n7991,zico spencer,zico,spencer,2013-01-17,Male,1982-03-22,34,25 - 45,African-American,2,7,1,0,5,264,2013-10-08 12:25:23,2013-10-17 06:34:31,04012577TC10A,2004-01-26,,3279,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-17,Risk of Violence,2,Low,2013-01-17,2013-10-08,2013-10-17,5,0,264,0,0\r\n7992,robert sansone,robert,sansone,2014-06-17,Male,1960-10-08,55,Greater than 45,Caucasian,0,7,0,0,18,248,2015-02-20 02:39:34,2015-04-17 02:05:56,14007237CF10A,2014-05-24,,24,F,Driving While License Revoked,1,15002824MM20A,(M1),,2015-11-09,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,7,Medium,2014-06-17,Risk of Violence,3,Low,2014-06-17,2015-02-20,2015-04-17,18,0,248,0,1\r\n7993,sherry jackson,sherry,jackson,2014-03-18,Female,1975-11-12,40,25 - 45,Caucasian,0,6,0,0,3,-69,2014-01-08 06:13:11,2014-02-27 10:51:00,12009614CF10A,,2014-01-08,69,F,arrest case no charge,1,14018201MM10A,(M1),,2014-12-29,Unlaw Use False Name/Identity,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-18,Risk of Violence,1,Low,2014-03-18,2014-09-03,2015-01-09,3,0,286,1,1\r\n7994,marco ibanez,marco,ibanez,2013-12-03,Male,1979-04-15,37,25 - 45,Hispanic,0,2,0,0,8,-8,2013-11-25 04:51:52,2013-11-25 08:37:24,13016383CF10A,2013-11-25,,8,F,Possession of Morphine,1,14018357TC10A,(M1),0,2014-05-10,Opert With Susp DL 2nd Offens,2014-05-10,2014-05-15,,0,,,,,Risk of Recidivism,2,Low,2013-12-03,Risk of Violence,2,Low,2013-12-03,2014-05-10,2014-05-15,8,0,158,1,1\r\n7997,samuel walker,samuel,walker,2014-04-26,Male,1964-09-08,51,Greater than 45,African-American,1,8,0,0,19,-1,2014-04-25 05:26:37,2014-04-28 02:52:47,14005782CF10A,2014-04-25,,1,F,Possession of Cocaine,1,16000360MM20A,(M1),,2015-11-09,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,8,High,2014-04-26,Risk of Violence,3,Low,2014-04-26,2014-09-19,2014-10-08,19,2,146,0,1\r\n8000,lashae taylor,lashae,taylor,2014-08-07,Female,1989-07-04,26,25 - 45,African-American,0,3,0,0,1,-1,2014-08-06 05:11:58,2014-08-07 08:01:25,14010719CF10A,2014-08-06,,1,F,Aggrav Battery w/Deadly Weapon,1,14077488TC30A,(M2),,2014-09-12,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2014-08-07,Risk of Violence,3,Low,2014-08-07,2014-08-06,2014-08-07,1,0,36,1,1\r\n8002,jonana allen,jonana,allen,2014-01-21,Male,1969-04-24,46,Greater than 45,African-American,0,7,0,0,2,-17,2014-01-04 07:50:22,2014-01-08 03:01:39,08027016MM10A,2008-11-13,,1895,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-21,Risk of Violence,6,Medium,2014-01-21,2014-01-04,2014-01-08,2,0,801,0,0\r\n8003,apolinar meza,apolinar,meza,2013-08-06,Male,1974-07-23,41,25 - 45,Caucasian,0,1,0,0,0,-1,2013-08-05 05:06:05,2013-08-09 03:55:02,13010978CF10A,2013-08-05,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-06,Risk of Violence,1,Low,2013-08-06,2013-08-05,2013-08-09,0,3,969,0,0\r\n8004,joseph gibbs,joseph,gibbs,2013-11-01,Male,1984-08-01,31,25 - 45,Caucasian,0,6,0,3,9,-1,2013-10-31 03:30:04,2015-02-13 05:06:48,13015219CF10A,2013-10-31,,1,F,Burglary Dwelling Occupied,1,15012936MU10A,(M1),1,2015-04-24,Driving Under The Influence,2015-04-25,2015-04-25,,0,,,,,Risk of Recidivism,6,Medium,2013-11-01,Risk of Violence,4,Low,2013-11-01,2013-10-31,2015-02-13,9,469,539,1,1\r\n8007,davidson nougues,davidson,nougues,2013-02-28,Male,1990-05-04,25,25 - 45,African-American,0,9,0,0,2,0,2013-02-28 12:20:59,2013-03-01 04:14:50,13003027CF10A,2013-02-27,,1,F,Threat Public Servant,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-28,Risk of Violence,9,High,2013-02-28,2013-06-20,2013-06-21,2,1,112,0,0\r\n8008,marquis gause,marquis,gause,2013-08-20,Male,1988-09-13,27,25 - 45,African-American,0,5,0,0,1,-1,2013-08-19 05:36:35,2013-08-21 07:50:24,13035744TC10A,2013-08-19,,1,M,Fail Register Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-20,Risk of Violence,2,Low,2013-08-20,2015-10-02,2020-01-01,1,1,773,0,0\r\n8009,ralph bellamy,ralph,bellamy,2014-10-23,Male,1984-08-18,31,25 - 45,African-American,1,9,1,1,13,-1,2014-10-22 08:58:25,2014-10-24 04:21:11,14014243CF10A,2014-10-22,,1,F,Poss Pyrrolidinovalerophenone,1,16000253CF10A,(F2),,2016-01-05,Agg Batt W/Arm S/B/I 25 Min/Ma,,,,1,16000253CF10A,(F2),2016-01-05,Agg Batt W/Arm S/B/I 25 Min/Ma,Risk of Recidivism,9,High,2014-10-23,Risk of Violence,8,High,2014-10-23,2014-10-22,2014-10-24,13,1,439,1,1\r\n8010,philip scire,philip,scire,2014-02-24,Male,1992-09-02,23,Less than 25,Caucasian,0,4,0,0,0,-3,2014-02-21 05:05:49,2014-02-21 08:12:19,14006811MU10A,2014-02-21,,3,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-24,Risk of Violence,4,Low,2014-02-24,2014-02-21,2014-02-21,0,0,767,0,0\r\n8014,rony clerge,rony,clerge,2014-06-01,Male,1964-02-21,52,Greater than 45,African-American,0,3,0,0,7,-1,2014-05-31 10:26:26,2014-06-01 08:21:07,14007562CF10A,2014-05-31,,1,M,Grand Theft in the 3rd Degree,1,14011551CF10A,(F3),0,2014-08-24,Grand Theft in the 3rd Degree,2014-08-24,2014-08-24,,0,,,,,Risk of Recidivism,3,Low,2014-06-01,Risk of Violence,1,Low,2014-06-01,2014-08-24,2014-08-24,7,0,84,0,1\r\n8016,andre pitts,andre,pitts,2013-11-13,Male,1986-08-30,29,25 - 45,African-American,0,6,0,0,6,-22,2013-10-22 08:38:06,2013-11-13 09:32:53,13011927CF10A,,2013-10-23,21,F,arrest case no charge,1,14013545CF10A,(F3),6,2014-09-10,Possession of Cocaine,2014-09-16,2014-09-26,,0,,,,,Risk of Recidivism,6,Medium,2013-11-13,Risk of Violence,3,Low,2013-11-13,2014-10-07,2015-04-29,6,0,301,1,1\r\n8018,robert grace,robert,grace,2013-01-13,Male,1976-01-01,40,25 - 45,Caucasian,0,7,0,0,10,-1,2013-01-12 08:30:13,2013-01-17 08:21:28,13000554CF10A,2013-01-12,,1,F,Felony Petit Theft,1,13002897CF10A,(F3),0,2013-02-26,Possession of XLR11,2013-02-26,2013-04-12,,0,,,,,Risk of Recidivism,7,Medium,2013-01-13,Risk of Violence,5,Medium,2013-01-13,2013-02-26,2013-04-12,10,4,44,1,1\r\n8019,janice palmer,janice,palmer,2013-01-28,Female,1967-04-06,49,Greater than 45,Caucasian,0,2,0,0,0,-3,2013-01-25 09:46:53,2013-01-26 09:09:41,13001247CF10A,2013-01-25,,3,F,Del Cannabis For Consideration,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-28,Risk of Violence,2,Low,2013-01-28,2013-01-25,2013-01-26,0,0,1159,0,0\r\n8021,timothy cosman,timothy,cosman,2013-04-12,Male,1967-01-19,49,Greater than 45,Caucasian,0,2,0,0,8,-24,2013-03-19 06:42:18,2013-04-12 07:58:01,13003996CF10A,2013-03-19,,24,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-12,Risk of Violence,1,Low,2013-04-12,2014-05-23,2014-12-16,8,0,406,0,0\r\n8022,pierre-john lundy,pierre-john,lundy,2014-08-11,Male,1991-12-08,24,Less than 25,African-American,0,5,0,0,3,0,2014-08-11 04:24:01,2014-08-11 10:30:21,14010948CF10A,2014-08-11,,0,F,Possess Mot Veh W/Alt Vin #,1,14011681CF10A,(M2),0,2014-08-27,Violation License Restrictions,2014-08-27,2014-08-28,,0,,,,,Risk of Recidivism,5,Medium,2014-08-11,Risk of Violence,3,Low,2014-08-11,2014-08-27,2014-08-28,3,0,16,1,1\r\n8023,leevaughn cameron,leevaughn,cameron,2013-03-24,Male,1975-03-28,41,25 - 45,African-American,0,3,0,0,7,-2,2013-03-22 10:17:54,2013-03-24 02:12:36,12001255TC10A,,2013-03-22,2,M,arrest case no charge,1,15010857MM10A,(M1),0,2015-10-16,Criminal Mischief>$200<$1000,2015-10-16,2015-10-17,,0,,,,,Risk of Recidivism,3,Low,2013-03-24,Risk of Violence,2,Low,2013-03-24,2015-10-16,2015-10-17,7,0,936,1,0\r\n8024,tamika turner,tamika,turner,2013-09-24,Female,1988-07-06,27,25 - 45,African-American,0,5,0,0,3,-1,2013-09-23 07:28:31,2013-09-24 06:24:45,13018165MM10A,2013-09-23,,1,M,Battery,1,14037109TC10A,(M2),,2013-12-31,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-24,Risk of Violence,4,Low,2013-09-24,2014-08-31,2014-10-04,3,0,98,1,1\r\n8026,veron coleman,veron,coleman,2014-02-14,Male,1975-10-04,40,25 - 45,African-American,0,1,0,0,1,0,2014-02-14 01:23:36,2014-02-14 08:28:21,14002137CF10A,2014-02-13,,1,F,\"Poss 3,4 MDMA (Ecstasy)\",1,14074377TC40A,(M2),208,2014-10-31,Driving License Suspended,2015-05-27,2015-05-27,,0,,,,,Risk of Recidivism,1,Low,2014-02-14,Risk of Violence,1,Low,2014-02-14,2015-11-24,2015-11-30,1,0,259,1,1\r\n8027,golan feldman,golan,feldman,2013-09-24,Male,1969-04-08,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-09-23 07:08:46,2013-09-24 07:34:58,13018139MM10A,2013-09-23,,1,M,Battery,1,13113564TC30A,(M2),,2013-11-01,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-24,Risk of Violence,1,Low,2013-09-24,2014-10-25,2014-10-25,0,0,38,1,1\r\n8028,alexandria piercy,alexandria,piercy,2014-11-26,Female,1996-03-11,20,Less than 25,Caucasian,0,10,0,0,0,0,2014-11-26 01:14:13,2014-11-26 08:37:39,14015897CF10A,,2014-11-25,1,F,arrest case no charge,1,14017920MM10A,(M1),0,2014-12-21,Battery,2014-12-21,2014-12-22,,1,14017920MM10A,(M1),2014-12-21,Battery,Risk of Recidivism,10,High,2014-11-26,Risk of Violence,9,High,2014-11-26,2014-12-21,2014-12-22,0,0,25,1,1\r\n8030,zakendra gary,zakendra,gary,2014-02-26,Male,1994-11-24,21,Less than 25,African-American,0,8,0,0,2,-1,2014-02-25 10:55:52,2014-04-02 10:20:00,14003267MO10A,2014-02-25,,1,M,Littering,1,14007371MM10A,(M1),0,2014-05-04,Unlaw Use False Name/Identity,2014-05-04,2014-05-30,,0,,,,,Risk of Recidivism,8,High,2014-02-26,Risk of Violence,8,High,2014-02-26,2014-05-04,2014-05-30,2,35,67,1,1\r\n8031,darian jordan,darian,jordan,2014-05-09,Male,1971-05-19,44,25 - 45,African-American,0,8,0,0,8,-1,2014-05-08 12:27:25,2014-05-18 04:40:00,14007615MM10A,2014-05-08,,1,M,Battery,1,15015948CF10A,(F2),0,2015-12-13,Aggrav Battery w/Deadly Weapon,2015-12-13,2015-12-15,,1,15015948CF10A,(F2),2015-12-13,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,8,High,2014-05-09,Risk of Violence,5,Medium,2014-05-09,2015-12-13,2015-12-15,8,9,583,1,1\r\n8032,gregory williams,gregory,williams,2013-01-29,Male,1974-09-19,41,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-29 03:02:10,2013-01-29 08:32:31,13002085MM10A,2013-01-29,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-29,Risk of Violence,1,Low,2013-01-29,2013-01-29,2013-01-29,0,0,1158,0,0\r\n8035,moses taulbert,moses,taulbert,2013-10-15,Male,1984-06-10,31,25 - 45,African-American,0,9,1,0,5,-1,2013-10-14 09:06:13,2013-10-15 07:40:33,13019482MM10A,2013-10-14,,1,M,Battery,1,14007256MM10A,(M1),0,2014-05-01,Battery,2014-05-01,2014-05-03,,1,14007256MM10A,(M1),2014-05-01,Battery,Risk of Recidivism,9,High,2013-10-15,Risk of Violence,3,Low,2013-10-15,2014-05-01,2014-05-03,5,0,198,1,1\r\n8036,rodrigo pinedaboteo,rodrigo,pinedaboteo,2014-03-31,Male,1974-04-15,42,25 - 45,Hispanic,0,1,0,0,1,-3,2014-03-28 10:46:35,2014-03-29 09:04:01,14012344MU10A,2014-03-28,,3,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-28,2014-03-29,1,0,732,0,0\r\n8038,carrie salter,carrie,salter,2013-01-28,Female,1948-10-16,67,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-27 07:23:13,2013-01-29 05:24:01,13001330CF10A,2013-01-27,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-01-29,0,1,1159,0,0\r\n8039,stephen league,stephen,league,2014-01-13,Male,1974-03-02,42,25 - 45,Caucasian,0,2,0,0,1,-3,2014-01-10 12:09:47,2014-01-10 07:57:22,14000503MO10A,2014-01-09,,4,M,Possession Of Paraphernalia,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-01-10,2014-01-10,1,0,809,0,0\r\n8040,dyontae ferguson,dyontae,ferguson,2013-12-04,Male,1990-05-04,25,25 - 45,African-American,0,3,0,0,0,-1,2013-12-03 01:28:45,2014-01-06 09:00:31,13016990CF10A,,2013-12-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-04,Risk of Violence,4,Low,2013-12-04,2013-12-03,2014-01-06,0,33,849,0,0\r\n8041,ricardo aponte,ricardo,aponte,2014-08-02,Male,1988-11-24,27,25 - 45,Hispanic,0,4,0,1,6,-1,2014-08-01 07:25:29,2014-08-02 08:57:14,14010506CF10A,2014-08-01,,1,F,Driving While License Revoked,1,15012641CF10A,(F3),0,2015-09-30,Driving While License Revoked,2015-09-30,2015-10-01,,0,,,,,Risk of Recidivism,4,Low,2014-08-02,Risk of Violence,5,Medium,2014-08-02,2015-09-30,2015-10-01,6,0,424,1,1\r\n8042,rayan pinnock,rayan,pinnock,2014-02-26,Male,1972-10-11,43,25 - 45,Other,0,1,0,0,2,-1,2014-02-25 01:35:38,2014-02-26 09:51:09,14003277MM10A,2014-02-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-26,Risk of Violence,1,Low,2014-02-26,2014-02-25,2014-02-26,2,0,765,0,0\r\n8045,brandon amato,brandon,amato,2013-01-28,Male,1992-08-05,23,Less than 25,Caucasian,0,9,0,0,6,0,2013-01-28 05:06:16,2013-02-03 02:50:43,13001363CF10A,2013-01-28,,0,F,Possession Of Alprazolam,1,13009162CF10A,(F3),0,2013-06-29,Resist Officer w/Violence,2013-06-29,2014-02-18,,1,13009162CF10A,(F3),2013-06-29,Battery on Law Enforc Officer,Risk of Recidivism,9,High,2013-01-28,Risk of Violence,6,Medium,2013-01-28,2013-06-29,2014-02-18,6,6,152,1,1\r\n8046,lorenzo lewis,lorenzo,lewis,2013-09-20,Male,1988-12-22,27,25 - 45,African-American,0,10,0,1,13,-1,2013-09-19 10:04:18,2013-09-20 08:53:23,13013211CF10A,2013-09-19,,1,F,Pos Cannabis W/Intent Sel/Del,1,15000626CF10A,(M1),0,2015-01-14,Possess Drug Paraphernalia,2015-01-14,2015-02-07,,0,,,,,Risk of Recidivism,10,High,2013-09-20,Risk of Violence,10,High,2013-09-20,2015-01-14,2015-02-07,13,0,481,1,1\r\n8047,lawrence williams,lawrence,williams,2013-05-29,Male,1992-07-26,23,Less than 25,African-American,0,2,1,0,2,-1,2013-05-28 11:49:22,2013-05-29 02:04:51,13007599CF10A,2013-05-28,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-29,Risk of Violence,4,Low,2013-05-29,2013-05-28,2013-05-29,2,0,1038,0,0\r\n8048,joel torres,joel,torres,2013-08-11,Male,1982-06-03,33,25 - 45,Caucasian,0,3,0,0,2,-1,2013-08-10 06:29:43,2013-08-12 03:36:30,13011237CF10A,2013-08-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-11,Risk of Violence,1,Low,2013-08-11,2013-08-10,2013-08-12,2,1,964,0,0\r\n8049,gregory young,gregory,young,2013-05-03,Male,1974-08-12,41,25 - 45,Caucasian,0,1,0,0,0,0,2013-05-03 02:50:28,2013-05-04 02:49:49,13008623MM10A,2013-05-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-03,Risk of Violence,1,Low,2013-05-03,2013-05-03,2013-05-04,0,1,1064,0,0\r\n8050,deborah demenezes,deborah,demenezes,2013-05-28,Female,1985-01-02,31,25 - 45,Caucasian,0,2,0,0,1,-2,2013-05-26 09:44:58,2013-05-27 01:13:35,11001942CF10A,,2013-05-26,2,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,1,Low,2013-05-28,2013-05-26,2013-05-27,1,0,1039,0,0\r\n8052,rochelle sutton,rochelle,sutton,2013-01-10,Female,1992-12-18,23,Less than 25,African-American,0,8,0,0,2,126,2013-05-16 11:24:35,2013-05-17 08:02:12,13001778TC10A,2013-01-10,,0,M,Susp Drivers Lic 1st Offense,1,13014727TC20A,(M2),77,2013-02-28,Driving License Suspended,2013-05-16,2013-05-17,,1,15006870MM10A,(M1),2015-06-26,Battery,Risk of Recidivism,8,High,2013-01-10,Risk of Violence,6,Medium,2013-01-10,2015-06-26,2015-06-28,2,0,49,1,1\r\n8053,dewayne lee,dewayne,lee,2014-01-15,Male,1995-02-25,21,Less than 25,African-American,0,7,0,0,2,-1,2014-01-14 08:25:09,2014-02-12 04:54:28,14000622CF10A,2014-01-14,,1,F,Grand Theft in the 3rd Degree,1,14015079CF10A,(F3),0,2014-11-10,Crimin Mischief Damage $1000+,2014-11-10,2015-05-22,,0,,,,,Risk of Recidivism,7,Medium,2014-01-15,Risk of Violence,8,High,2014-01-15,2014-06-20,2014-06-21,2,28,156,0,1\r\n8054,joseph barry,joseph,barry,2013-02-02,Male,1962-10-13,53,Greater than 45,African-American,0,4,0,0,5,-1,2013-02-01 11:18:12,2013-11-26 06:43:53,13001629CF10A,2013-02-01,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-02,Risk of Violence,1,Low,2013-02-02,2013-11-26,2014-01-14,5,346,1154,0,0\r\n8056,samuel wesley,samuel,wesley,2013-08-19,Male,1979-05-28,36,25 - 45,African-American,0,1,0,0,1,0,2013-08-19 05:01:46,2013-08-19 07:34:52,13015748MM10A,2013-08-19,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-19,2013-08-19,1,0,956,0,0\r\n8059,john campbell,john,campbell,2013-04-25,Male,1957-10-03,58,Greater than 45,Caucasian,0,3,0,0,10,0,2013-04-25 02:34:13,2013-04-25 08:03:17,13017986TC10A,2013-04-25,,0,M,Driving License Suspended,1,16003775CF10A,(F2),,2016-03-29,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-25,Risk of Violence,1,Low,2013-04-25,2013-04-25,2013-04-25,10,0,1069,1,0\r\n8060,robert schoen,robert,schoen,2013-05-13,Male,1953-12-03,62,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-12 05:43:25,2013-05-15 07:42:03,13006809CF10A,2013-05-12,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-13,Risk of Violence,1,Low,2013-05-13,2013-05-12,2013-05-15,0,2,1054,0,0\r\n8061,jordan zachary,jordan,zachary,2013-12-23,Male,1990-05-03,25,25 - 45,Caucasian,0,6,0,0,4,-1,2013-12-22 05:37:28,2013-12-23 06:32:58,13017644CF10A,2013-12-22,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-23,Risk of Violence,3,Low,2013-12-23,2013-12-22,2013-12-23,4,0,830,0,0\r\n8062,james west,james,west,2014-12-31,Male,1964-06-21,51,Greater than 45,African-American,0,8,0,0,15,-1,2014-12-30 04:56:59,2015-02-02 09:55:01,14017200CF10A,2014-12-30,,1,F,Poss Pyrrolidinovalerophenone,1,15001682MM10A,(M1),0,2015-02-10,Criminal Mischief>$200<$1000,2015-02-10,2015-02-28,,0,,,,,Risk of Recidivism,8,High,2014-12-31,Risk of Violence,4,Low,2014-12-31,2015-02-10,2015-02-28,15,33,41,1,1\r\n8063,emilio alfonso,emilio,alfonso,2013-03-27,Male,1969-09-22,46,Greater than 45,Caucasian,0,2,0,0,2,-14,2013-03-13 12:53:32,2013-03-21 02:08:03,10014551CF10B,,2013-03-13,14,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-27,Risk of Violence,1,Low,2013-03-27,2015-11-24,2015-12-10,2,0,972,0,0\r\n8065,lamar bernard,lamar,bernard,2014-03-17,Male,1987-12-10,28,25 - 45,African-American,0,2,0,0,4,-1,2014-03-16 12:37:52,2014-03-17 01:55:29,14004558MM10A,2014-03-16,,1,M,Battery,1,15001016CF10A,(M1),0,2015-01-22,Possess Drug Paraphernalia,2015-01-22,2015-01-23,,0,,,,,Risk of Recidivism,2,Low,2014-03-17,Risk of Violence,2,Low,2014-03-17,2015-01-22,2015-01-23,4,0,311,1,1\r\n8066,edmond morley,edmond,morley,2014-07-10,Male,1991-06-27,24,Less than 25,Caucasian,0,3,0,0,2,-1,2014-07-09 03:44:22,2014-07-11 05:10:09,14009430CF10A,2014-07-09,,1,F,Felony Driving While Lic Suspd,1,15017033TC10A,(M2),0,2015-05-28,Susp Drivers Lic 1st Offense,2015-05-28,2015-05-29,,0,,,,,Risk of Recidivism,3,Low,2014-07-10,Risk of Violence,4,Low,2014-07-10,2015-05-28,2015-05-29,2,1,322,1,1\r\n8068,joshua hirst,joshua,hirst,2014-02-17,Male,1983-08-25,32,25 - 45,Caucasian,0,8,0,0,6,0,2014-02-17 02:20:40,2014-02-17 08:18:14,14002245CF10A,2014-02-16,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-17,Risk of Violence,8,High,2014-02-17,2014-02-17,2014-02-17,6,0,774,0,0\r\n8071,jeffery fetters,jeffery,fetters,2013-06-05,Male,1959-07-18,56,Greater than 45,Caucasian,0,4,0,0,13,-59,2013-04-07 07:17:18,2013-05-17 01:46:05,13006649MM10A,2013-04-06,,60,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-05,Risk of Violence,1,Low,2013-06-05,2013-04-07,2013-05-17,13,0,1031,0,0\r\n8072,jean elma,jean,elma,2013-05-23,Male,1992-11-15,23,Less than 25,African-American,1,9,0,0,2,0,2013-05-23 02:31:47,2013-05-24 03:36:40,13007359CF10A,2013-05-23,,0,F,Pos Cannabis W/Intent Sel/Del,1,14004416MM10A,(M1),0,2014-03-13,Resist/Obstruct W/O Violence,2014-03-13,2014-03-14,,0,,,,,Risk of Recidivism,9,High,2013-05-23,Risk of Violence,10,High,2013-05-23,2014-03-13,2014-03-14,2,1,294,1,1\r\n8075,jomar fisher,jomar,fisher,2013-01-03,Male,1990-06-12,25,25 - 45,African-American,0,3,0,0,1,188,2013-07-10 01:42:08,2013-08-16 10:17:00,11005572CF10A,,2012-11-09,55,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-03,Risk of Violence,4,Low,2013-01-03,2013-07-10,2013-08-16,1,0,188,0,0\r\n8077,ian kissoonlai,ian,kissoonlai,2013-01-30,Male,1990-03-28,26,25 - 45,African-American,0,3,0,0,2,,,,13001448CF10A,2013-01-29,,1,F,Criminal Attempt 3rd Deg Felon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-30,Risk of Violence,4,Low,2013-01-30,,,2,0,1157,0,0\r\n8078,marie hamilton,marie,hamilton,2013-05-21,Female,1957-07-25,58,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-20 12:10:00,2013-05-20 12:19:32,13009638MM10A,2013-05-19,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-21,Risk of Violence,1,Low,2013-05-21,2013-05-20,2013-05-20,0,0,1046,0,0\r\n8081,brian wentz,brian,wentz,2014-08-20,Male,1982-12-27,33,25 - 45,Caucasian,0,7,0,0,3,-90,2014-05-22 01:29:25,2014-08-18 11:30:36,14007154CF10A,,2014-06-10,71,F,arrest case no charge,1,15004103CF10A,(M1),0,2015-03-28,Possess Drug Paraphernalia,2015-03-28,2015-11-25,,0,,,,,Risk of Recidivism,7,Medium,2014-08-20,Risk of Violence,5,Medium,2014-08-20,2015-03-28,2015-11-25,3,0,220,1,1\r\n8082,charles crawford,charles,crawford,2013-07-09,Male,1956-07-24,59,Greater than 45,African-American,0,8,0,0,8,-23,2013-06-16 12:08:58,2013-06-25 08:00:23,13003893CF10A,,2013-06-15,24,F,arrest case no charge,1,14014056CF10A,(F3),0,2014-10-17,Possession of Cocaine,2014-10-17,2014-10-19,,0,,,,,Risk of Recidivism,8,High,2013-07-09,Risk of Violence,6,Medium,2013-07-09,2013-12-16,2014-03-18,8,0,160,0,1\r\n8084,anthony tetoff,anthony,tetoff,2014-01-28,Male,1972-03-13,44,25 - 45,Caucasian,0,2,0,0,5,-47,2013-12-12 10:44:57,2013-12-24 10:48:55,13017187CF10A,,2013-12-12,47,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-28,Risk of Violence,1,Low,2014-01-28,2013-12-12,2013-12-24,5,0,794,0,0\r\n8085,donald hutchinson,donald,hutchinson,2013-08-10,Male,1995-06-11,20,Less than 25,African-American,0,7,0,0,0,0,2013-08-10 12:20:57,2013-08-11 02:13:50,13011244CF10A,2013-08-10,,0,F,Aggrav Battery w/Deadly Weapon,1,14002602MM40A,(M1),,2014-06-07,Possess Cannabis/20 Grams Or Less,,,,1,14009572MM10A,(M2),2014-06-18,Assault,Risk of Recidivism,7,Medium,2013-08-10,Risk of Violence,9,High,2013-08-10,2013-08-10,2013-08-11,0,1,301,1,1\r\n8087,mike delgado,mike,delgado,2014-05-13,Male,1959-01-31,57,Greater than 45,Caucasian,0,1,0,0,0,0,2014-05-13 12:09:00,2014-05-13 01:48:04,14017860MU10A,2014-05-12,,1,M,Fail To Obey Police Officer,1,15078990TC30A,(M2),,2015-12-06,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-05-13,Risk of Violence,1,Low,2014-05-13,2014-05-13,2014-05-13,0,0,572,1,1\r\n8090,david toledo,david,toledo,2013-09-21,Male,1978-09-05,37,25 - 45,Caucasian,0,2,0,0,1,0,2013-09-21 02:54:54,2013-09-21 01:51:40,13013325CF10A,,2013-09-21,0,F,arrest case no charge,1,14001842CF10A,(F3),0,2014-02-09,Possession Of Methamphetamine,2014-02-09,2014-04-15,,0,,,,,Risk of Recidivism,2,Low,2013-09-21,Risk of Violence,1,Low,2013-09-21,2014-02-09,2014-04-15,1,0,141,1,1\r\n8091,james mckenzie,james,mckenzie,2013-05-14,Male,1973-03-29,43,25 - 45,African-American,0,1,0,0,0,-1,2013-05-13 11:27:59,2013-05-14 06:47:18,13006836CF10A,2013-05-13,,1,F,Driving While License Revoked,1,14011491MM10A,(M2),0,2014-07-28,Unlaw LicTag/Sticker Attach,2014-07-28,2014-07-29,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2014-07-28,2014-07-29,0,0,440,1,1\r\n8093,serina byrd,serina,byrd,2014-02-21,Female,1979-11-03,36,25 - 45,African-American,0,5,0,0,1,0,2014-02-21 05:15:33,2014-02-22 03:34:25,14002483CF10A,2014-02-20,,1,M,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-21,Risk of Violence,1,Low,2014-02-21,2014-02-21,2014-02-22,1,1,770,0,0\r\n8094,william bernharddt,william,bernharddt,2013-04-29,Male,1956-12-03,59,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-29 01:03:48,2013-04-29 06:46:09,13008154MM10A,2013-04-28,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-29,2013-04-29,0,0,1068,0,0\r\n8095,john noonan,john,noonan,2013-12-23,Male,1980-06-09,35,25 - 45,Caucasian,0,2,0,0,4,0,2013-12-23 03:45:10,2014-01-23 10:11:37,13017677CF10A,2013-12-23,,0,F,Battery on Law Enforc Officer,1,15006231CF10A,(F3),1,2015-05-12,Poss Pyrrolidinovalerophenone,2015-05-13,2015-06-25,,0,,,,,Risk of Recidivism,2,Low,2013-12-23,Risk of Violence,2,Low,2013-12-23,2013-12-23,2014-01-23,4,31,505,1,1\r\n8097,james mitchell,james,mitchell,2014-05-31,Male,1986-12-16,29,25 - 45,African-American,0,5,0,0,5,-1,2014-05-30 07:12:58,2014-06-02 12:45:34,14007528CF10A,,2014-05-30,1,F,arrest case no charge,1,15010001MM10A,(M1),,2015-08-29,Battery,,,,1,15010001MM10A,(M1),2015-08-29,Battery,Risk of Recidivism,5,Medium,2014-05-31,Risk of Violence,4,Low,2014-05-31,2014-05-30,2014-06-02,5,2,455,1,1\r\n8098,christal pinkney,christal,pinkney,2014-03-17,Female,1994-11-11,21,Less than 25,African-American,0,5,0,0,0,-1,2014-03-16 09:49:27,2014-03-17 09:22:07,14004534MM10A,2014-03-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-17,Risk of Violence,6,Medium,2014-03-17,2014-03-16,2014-03-17,0,0,746,0,0\r\n8099,sebastian cohn,sebastian,cohn,2013-12-10,Male,1987-08-28,28,25 - 45,Caucasian,0,1,0,0,0,-1,2013-12-09 07:48:15,2013-12-11 04:09:56,13022791MM10A,2013-12-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-10,Risk of Violence,2,Low,2013-12-10,2013-12-09,2013-12-11,0,1,843,0,0\r\n8100,kurveen johnson,kurveen,johnson,2013-09-13,Male,1981-06-28,34,25 - 45,African-American,0,3,0,0,5,-1,2013-09-12 05:16:21,2013-09-15 09:06:16,13017422MM10A,2013-09-12,,1,M,Viol Injunct Domestic Violence,1,13017235CF10A,(F3),0,2013-12-13,Possession of Cocaine,2013-12-13,2014-01-08,,0,,,,,Risk of Recidivism,3,Low,2013-09-13,Risk of Violence,2,Low,2013-09-13,2013-12-13,2014-01-08,5,2,91,1,1\r\n8104,theresa miller,theresa,miller,2013-04-08,Female,1973-10-06,42,25 - 45,African-American,0,6,0,0,16,-1,2013-04-07 10:05:20,2013-05-01 10:15:05,13004970CF10A,2013-04-07,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-08,Risk of Violence,2,Low,2013-04-08,2015-01-10,2015-01-30,16,23,642,0,0\r\n8105,ernest calvert,ernest,calvert,2013-03-08,Male,1994-08-26,21,Less than 25,African-American,0,9,2,1,3,-3,2013-03-05 08:54:54,2013-03-06 11:00:34,13003385CF10A,2013-03-07,,1,F,Leaving the Scene of Accident,1,13019033MM10A,(M1),,2013-07-20,Battery,,,,1,13019033MM10A,(M1),2013-07-20,Battery,Risk of Recidivism,9,High,2013-03-08,Risk of Violence,6,Medium,2013-03-08,2015-04-22,2015-05-21,3,0,134,1,1\r\n8106,leon wilson,leon,wilson,2014-03-04,Male,1946-06-06,69,Greater than 45,African-American,0,1,0,0,1,-1,2014-03-03 04:53:44,2014-03-04 09:04:35,14003006CF10A,2014-03-03,,1,F,Carrying Concealed Firearm,1,15011787MM10A,(M1),0,2015-11-11,Resist Merchant W Or W/O Viol,2015-11-11,2015-12-02,,0,,,,,Risk of Recidivism,1,Low,2014-03-04,Risk of Violence,1,Low,2014-03-04,2014-04-10,2014-04-11,1,0,37,0,1\r\n8107,danielle cyr,danielle,cyr,2013-08-13,Female,1966-05-22,49,Greater than 45,Caucasian,0,1,0,0,1,-26,2013-07-18 01:48:52,2013-07-18 12:10:03,13013578MM10A,2013-07-17,,27,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-13,Risk of Violence,1,Low,2013-08-13,2013-07-18,2013-07-18,1,0,962,0,0\r\n8110,caitlin watts,caitlin,watts,2013-05-21,Female,1991-07-30,24,Less than 25,Caucasian,0,5,0,0,0,0,2013-05-21 12:50:11,2013-05-22 05:30:40,13009743MM10A,2013-05-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-21,Risk of Violence,5,Medium,2013-05-21,2013-05-21,2013-05-22,0,1,1046,0,0\r\n8111,sean harris,sean,harris,2014-11-12,Male,1988-06-02,27,25 - 45,African-American,0,8,0,0,4,-1,2014-11-11 09:26:27,2014-12-15 09:30:11,14015130CF10A,2014-11-11,,1,F,Poss Pyrrolidinovalerophenone,1,15001567CF10A,(F3),0,2015-02-03,Poss Pyrrolidinovalerophenone,2015-02-03,2015-03-12,,0,,,,,Risk of Recidivism,8,High,2014-11-12,Risk of Violence,5,Medium,2014-11-12,2015-02-03,2015-03-12,4,33,83,1,1\r\n8112,regina ewing,regina,ewing,2013-01-19,Female,1960-12-05,55,Greater than 45,African-American,0,1,0,0,1,-1,2013-01-18 05:15:26,2013-01-20 08:28:44,13000864CF10A,2013-01-18,,1,M,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-19,Risk of Violence,1,Low,2013-01-19,2013-01-18,2013-01-20,1,1,1168,0,0\r\n8113,scott burleigh,scott,burleigh,2013-11-25,Male,1996-09-22,19,Less than 25,African-American,1,10,2,0,3,-200,2013-05-09 05:30:32,2013-11-25 01:22:29,13006619CF10A,,2013-05-09,200,F,arrest case no charge,1,15000485CF10A,(M2),0,2015-01-11,Susp Drivers Lic 1st Offense,2015-01-11,2015-01-12,,1,15000485CF10A,(F2),2015-01-11,Agg Assault Law Enforc Officer,Risk of Recidivism,10,High,2013-11-25,Risk of Violence,9,High,2013-11-25,2015-01-11,2015-01-12,3,0,412,1,1\r\n8114,victor prosper,victor,prosper,2013-10-25,Male,1991-07-08,24,Less than 25,African-American,2,8,0,0,7,-1,2013-10-24 10:28:40,2013-10-27 07:45:15,13020158MM10A,2013-10-24,,1,M,Viol Prot Injunc Repeat Viol,1,13016373CF10A,(F1),0,2013-11-25,Poss/Sell/Del Cocaine 1000FT Sch,2013-11-25,2013-12-06,,0,,,,,Risk of Recidivism,8,High,2013-10-25,Risk of Violence,7,Medium,2013-10-25,2013-11-25,2013-12-06,7,2,31,1,1\r\n8115,moise jean jacques,moise,jean jacques,2013-09-23,Male,1976-11-02,39,25 - 45,Other,0,1,0,0,1,,,,13038110TC20A,2013-06-15,,100,M,Expired DL More Than 6 Months,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,,,1,0,921,0,0\r\n8116,wessley cruzmolina,wessley,cruzmolina,2013-09-09,Male,1994-07-29,21,Less than 25,Caucasian,0,4,0,0,1,-1,2013-09-08 08:48:03,2013-09-09 02:06:14,13012702CF10A,,2013-09-08,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-09,Risk of Violence,6,Medium,2013-09-09,2013-09-08,2013-09-09,1,0,935,0,0\r\n8117,patrick yerkovich,patrick,yerkovich,2013-09-15,Male,1988-04-06,28,25 - 45,Caucasian,0,6,0,0,0,-1,2013-09-14 07:25:21,2013-10-21 08:49:04,13012984CF10A,2013-09-14,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14004555MM40A,(M1),136,2014-10-20,Petit Theft $100- $300,2015-03-05,2015-03-20,,0,,,,,Risk of Recidivism,6,Medium,2013-09-15,Risk of Violence,7,Medium,2013-09-15,2014-01-17,2014-03-28,0,36,124,0,1\r\n8118,william kilgore,william,kilgore,2013-01-25,Male,1981-07-31,34,25 - 45,African-American,0,6,0,0,4,0,2013-01-25 01:41:29,2013-01-25 01:58:16,13001828MM10A,2013-01-24,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-25,Risk of Violence,6,Medium,2013-01-25,2013-01-25,2013-01-25,4,0,1162,0,0\r\n8119,keenan watson,keenan,watson,2013-01-16,Male,1988-12-20,27,25 - 45,African-American,0,5,0,0,2,-1,2013-01-15 09:51:37,2013-01-17 09:15:00,12011314CF10A,,2013-01-16,0,F,arrest case no charge,1,14001076CF10A,(F3),0,2014-01-24,Possession Burglary Tools,2014-01-24,2014-07-01,,0,,,,,Risk of Recidivism,5,Medium,2013-01-16,Risk of Violence,3,Low,2013-01-16,2014-01-17,2014-01-25,2,1,373,1,0\r\n8120,rodney dobronozenk,rodney,dobronozenk,2013-04-20,Male,1979-03-30,37,25 - 45,African-American,3,10,0,0,12,-1,2013-04-19 03:12:03,2013-06-10 10:44:28,13004462MM10A,,2013-04-19,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-04-20,Risk of Violence,9,High,2013-04-20,2014-03-20,2014-11-29,12,51,334,0,0\r\n8121,kennyal webber,kennyal,webber,2013-12-20,Male,1975-06-07,40,25 - 45,African-American,0,1,0,0,1,-65,2013-10-16 01:57:19,2013-12-20 06:03:00,13014011CF10A,2013-10-05,,76,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-20,Risk of Violence,1,Low,2013-12-20,2013-10-16,2013-12-20,1,0,833,0,0\r\n8124,christina trueblood,christina,trueblood,2014-12-23,Female,1979-11-24,36,25 - 45,Caucasian,0,2,0,0,4,232,2015-08-12 03:38:48,2015-11-24 01:22:05,14016360CF10A,2014-12-08,,15,F,Possession of Ethylone,1,15008536MM10A,(M1),0,2015-08-12,Resist/Obstruct W/O Violence,2015-08-12,2015-11-24,,0,,,,,Risk of Recidivism,2,Low,2014-12-23,Risk of Violence,3,Low,2014-12-23,2015-08-12,2015-11-24,4,0,232,1,1\r\n8125,austin robertson,austin,robertson,2013-08-16,Male,1992-07-27,23,Less than 25,Caucasian,0,4,0,0,0,0,2013-08-16 01:18:50,2013-08-16 01:33:22,13011489CF10A,2013-08-15,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-16,Risk of Violence,5,Medium,2013-08-16,2015-10-15,2015-11-30,0,0,790,0,0\r\n8126,willie sheely,willie,sheely,2013-10-21,Male,1981-09-20,34,25 - 45,African-American,0,7,0,0,19,-76,2013-08-06 10:48:28,2013-10-19 05:03:16,13012254CF10A,,2013-08-28,54,F,arrest case no charge,1,15007004CF10A,(F2),,2015-01-01,Aggravated Battery / Pregnant,,,,1,15007004CF10A,(F2),2015-01-01,Aggravated Battery / Pregnant,Risk of Recidivism,7,Medium,2013-10-21,Risk of Violence,6,Medium,2013-10-21,2014-08-13,2014-10-28,19,0,296,0,1\r\n8129,tim funchess,tim,funchess,2013-10-12,Male,1989-02-24,27,25 - 45,African-American,0,9,0,1,5,-1,2013-10-11 11:05:38,2013-10-12 01:31:00,13014269CF10A,2013-10-11,,1,F,Possession of Cocaine,1,14008891CF10A,(M1),0,2014-06-28,Trespass Other Struct/Conve,2014-06-28,2014-12-02,,1,16000750CF10A,(F3),2016-01-18,Aggravated Assault W/Dead Weap,Risk of Recidivism,9,High,2013-10-12,Risk of Violence,5,Medium,2013-10-12,2014-06-28,2014-12-02,5,0,259,1,1\r\n8130,vanston ward,vanston,ward,2014-02-01,Male,1965-08-30,50,Greater than 45,African-American,0,1,0,0,1,-1,2014-01-31 11:01:58,2014-02-01 10:10:12,14001401CF10A,2014-01-31,,1,F,Possess Weapon On School Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-01,Risk of Violence,1,Low,2014-02-01,2014-01-31,2014-02-01,1,0,790,0,0\r\n8132,andre jones,andre,jones,2013-03-30,Male,1994-02-26,22,Less than 25,African-American,0,5,1,2,1,-1,2013-03-29 07:15:17,2013-04-01 03:56:36,13004557CF10A,2013-03-29,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-30,Risk of Violence,7,Medium,2013-03-30,2013-03-29,2013-04-01,1,2,1098,0,0\r\n8133,leon hatcher,leon,hatcher,2014-08-04,Male,1973-01-08,43,25 - 45,African-American,0,6,0,0,1,-1,2014-08-03 11:18:36,2014-09-04 04:00:59,14010572CF10A,2014-08-03,,1,F,Felony Battery (Dom Strang),1,14016831CF10A,(F3),0,2014-12-20,Poss Pyrrolidinovalerophenone,2014-12-20,2014-12-30,,0,,,,,Risk of Recidivism,6,Medium,2014-08-04,Risk of Violence,5,Medium,2014-08-04,2014-12-20,2014-12-30,1,31,138,1,1\r\n8134,kimberly satterfield,kimberly,satterfield,2013-05-04,Male,1986-11-16,29,25 - 45,Caucasian,0,7,0,0,0,-1,2013-05-03 11:05:54,2013-05-04 10:02:06,13008630MO10A,2013-05-03,,1,M,Prostitution/Lewdness/Assign,1,13008504CF10A,(F3),1,2013-06-15,Possession of Cocaine,2013-06-16,2013-07-17,,0,,,,,Risk of Recidivism,7,Medium,2013-05-04,Risk of Violence,5,Medium,2013-05-04,2015-09-09,2015-11-30,0,0,42,1,1\r\n8135,julia cabrera,julia,cabrera,2013-08-22,Female,1965-10-18,50,Greater than 45,Hispanic,0,2,0,0,1,18,2013-09-09 01:31:23,2013-09-10 02:50:27,13003660CF10A,,2013-04-26,118,F,arrest case no charge,1,13023474MM10A,(M1),0,2013-12-19,Use Fraud OBT Rcpt/False Rcpt,2013-12-19,2013-12-19,,0,,,,,Risk of Recidivism,2,Low,2013-08-22,Risk of Violence,1,Low,2013-08-22,2013-09-09,2013-09-10,1,0,18,0,1\r\n8136,jeffrey sapper,jeffrey,sapper,2014-03-11,Male,1955-01-20,61,Greater than 45,Caucasian,0,1,0,0,1,-5,2014-03-06 02:23:58,2014-03-10 07:39:04,14003206CF10A,2014-03-06,,5,F,Aggravated Assault W/Dead Weap,1,14045945TC40A,(M2),,2014-06-29,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-11,Risk of Violence,1,Low,2014-03-11,2014-11-20,2014-11-25,1,0,110,1,1\r\n8137,juvince jacques,juvince,jacques,2013-10-07,Male,1981-12-09,34,25 - 45,African-American,0,1,0,0,1,0,2013-10-07 05:48:19,2013-10-30 09:57:10,13014075CF10A,,2013-10-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-07,Risk of Violence,2,Low,2013-10-07,2013-10-07,2013-10-30,1,23,907,0,0\r\n8138,harry morrison,harry,morrison,2014-02-27,Male,1959-11-30,56,Greater than 45,African-American,0,1,0,0,1,98,2014-06-05 10:22:38,2014-06-14 05:59:09,14002691CF10A,,2014-02-27,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-27,Risk of Violence,2,Low,2014-02-27,2014-06-05,2014-06-14,1,0,98,0,0\r\n8140,bernie jean,bernie,jean,2014-07-31,Male,1984-05-06,31,25 - 45,African-American,3,10,0,0,16,-1,2014-07-30 09:59:12,2014-07-31 08:43:21,14010373CF10A,2014-07-30,,1,F,Driving While License Revoked,1,14013080CF10A,(F3),0,2014-09-27,Possession of Cocaine,2014-09-27,2014-09-27,,0,,,,,Risk of Recidivism,10,High,2014-07-31,Risk of Violence,8,High,2014-07-31,2014-09-27,2014-09-27,16,0,58,0,1\r\n8141,logan slaving,logan,slaving,2013-03-05,Male,1994-08-28,21,Less than 25,Caucasian,0,4,0,0,0,0,2013-03-05 04:09:04,2013-03-05 06:30:19,13003290CF10A,2013-03-05,,0,F,Trespassing/Construction Site,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-05,Risk of Violence,5,Medium,2013-03-05,2013-03-05,2013-03-05,0,0,1123,0,0\r\n8142,markenson valcin,markenson,valcin,2014-10-04,Male,1992-08-24,23,Less than 25,African-American,0,5,0,1,1,-1,2014-10-03 07:33:09,2014-10-10 08:59:03,14013352CF10A,2014-10-03,,1,F,Poss Pyrrolidinovalerophenone,1,16000476CF10A,(F2),0,2016-01-12,Possess Cannabis 1000FTSch,2016-01-12,2016-01-16,,0,,,,,Risk of Recidivism,5,Medium,2014-10-04,Risk of Violence,4,Low,2014-10-04,2016-01-12,2016-01-16,1,6,465,1,1\r\n8143,kevin bunsie,kevin,bunsie,2013-01-18,Male,1970-05-12,45,Greater than 45,Other,0,1,0,0,1,-1,2013-01-17 11:36:51,2013-01-18 09:16:04,13000817CF10A,,2013-01-17,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2013-01-17,2013-01-18,1,0,1169,0,0\r\n8145,jermai jacsaint,jermai,jacsaint,2013-01-04,Male,1991-12-14,24,Less than 25,African-American,0,8,0,0,1,0,2013-01-04 12:44:48,2013-01-18 08:28:40,13000173MM10A,2013-01-03,,1,M,Possess Cannabis/20 Grams Or Less,1,13003340CF10A,(F2),0,2013-03-06,Poss Cocaine/Intent To Del/Sel,2013-03-06,2013-08-31,,0,,,,,Risk of Recidivism,8,High,2013-01-04,Risk of Violence,6,Medium,2013-01-04,2013-03-06,2013-08-31,1,14,61,1,1\r\n8146,angelo jasmine,angelo,jasmine,2013-09-23,Male,1985-10-28,30,25 - 45,African-American,0,9,0,0,1,0,2013-09-23 12:16:20,2013-09-23 08:15:00,13013382CF10A,2013-09-22,,1,F,Introduce Contraband Into Jail,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-23,Risk of Violence,7,Medium,2013-09-23,2013-09-23,2013-09-23,1,0,921,0,0\r\n8147,matthew thomas,matthew,thomas,2013-05-24,Male,1983-11-23,32,25 - 45,African-American,0,8,6,5,17,-1,2013-05-23 11:50:59,2013-09-13 09:09:15,10018362CF10A,,2013-05-23,1,F,arrest case no charge,1,14014569CF10A,(F3),,2014-10-30,Possession of Cocaine,,,,0,,,,,Risk of Recidivism,8,High,2013-05-24,Risk of Violence,7,Medium,2013-05-24,2014-10-16,2014-10-17,17,112,510,0,1\r\n8148,mark allen,mark,allen,2013-05-08,Male,1955-03-01,61,Greater than 45,Caucasian,0,1,0,0,0,0,2013-05-08 05:38:16,2013-05-14 09:38:56,13008899MM10A,2013-05-08,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-08,Risk of Violence,1,Low,2013-05-08,2013-05-08,2013-05-14,0,6,1059,0,0\r\n8149,sean weir,sean,weir,2014-02-08,Male,1988-08-07,27,25 - 45,Caucasian,0,3,0,0,3,-1,2014-02-07 04:46:22,2014-02-10 10:45:34,14002159MM10A,2014-02-07,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-08,Risk of Violence,3,Low,2014-02-08,2015-04-21,2015-04-21,3,2,437,0,0\r\n8150,caritasse roche,caritasse,roche,2013-07-12,Female,1988-05-13,27,25 - 45,African-American,0,5,0,0,2,,,,11019811TC10A,2011-04-12,,822,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-12,Risk of Violence,4,Low,2013-07-12,,,2,0,994,0,0\r\n8151,carlos gonzalez,carlos,gonzalez,2013-11-23,Male,1974-11-03,41,25 - 45,Hispanic,0,2,0,0,2,-1,2013-11-22 09:33:14,2013-11-23 10:16:36,13021950MM10A,2013-11-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-23,Risk of Violence,1,Low,2013-11-23,2013-11-22,2013-11-23,2,0,860,0,0\r\n8153,monica petusevsky,monica,petusevsky,2013-05-02,Male,1955-10-26,60,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-01 04:33:58,2013-05-02 04:44:03,13008472MM10A,2013-05-01,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-02,Risk of Violence,1,Low,2013-05-02,2013-05-01,2013-05-02,0,0,1065,0,0\r\n8154,jovan pinnock,jovan,pinnock,2013-02-07,Male,1993-01-06,23,Less than 25,African-American,0,8,0,0,1,0,2013-02-07 12:13:06,2013-02-11 08:47:59,13002715MM10A,2013-02-06,,1,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-07,Risk of Violence,8,High,2013-02-07,2013-02-07,2013-02-11,1,4,1149,0,0\r\n8155,kyle hansen,kyle,hansen,2013-11-07,Male,1976-04-15,40,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-06 10:58:07,2013-11-07 01:55:42,13020960MM10A,2013-11-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-07,Risk of Violence,1,Low,2013-11-07,2013-11-06,2013-11-07,0,0,876,0,0\r\n8157,stefano rotati,stefano,rotati,2014-02-12,Male,1986-03-12,30,25 - 45,Caucasian,0,3,0,0,0,-7,2014-02-05 05:34:10,2014-02-11 09:01:58,14001642CF10A,2014-02-05,,7,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-12,Risk of Violence,1,Low,2014-02-12,2014-12-12,2014-12-17,0,0,303,0,0\r\n8160,cynthia detres,cynthia,detres,2013-10-02,Female,1995-08-01,20,Less than 25,Caucasian,0,5,0,0,1,-41,2013-08-22 10:19:04,2013-08-23 08:21:55,13011826CF10A,2013-08-22,,41,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-02,Risk of Violence,6,Medium,2013-10-02,2013-08-22,2013-08-23,1,0,912,0,0\r\n8161,brandy palmer,brandy,palmer,2014-02-05,Female,1995-12-09,20,Less than 25,African-American,0,5,0,0,0,-1,2014-02-04 10:17:09,2014-02-05 09:57:26,14001576CF10A,2014-02-04,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-05,Risk of Violence,7,Medium,2014-02-05,2014-10-01,2014-10-14,0,0,238,0,0\r\n8162,khalid abukablan,khalid,abukablan,2013-03-18,Male,1967-10-01,48,Greater than 45,Asian,0,2,0,0,0,-1,2013-03-17 10:10:13,2013-03-20 09:25:28,13003888CF10A,2013-03-17,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-17,2013-03-20,0,2,1110,0,0\r\n8163,brian corker,brian,corker,2013-11-14,Male,1991-07-13,24,Less than 25,African-American,0,5,0,0,0,-1,2013-11-13 08:08:42,2013-11-14 08:11:27,13021393MM10A,2013-11-13,,1,M,Battery,1,14007351MM10A,(M1),0,2014-05-03,Resist/Obstruct W/O Violence,2014-05-03,2014-05-05,,1,14007351MM10A,(M2),2014-05-03,Assault,Risk of Recidivism,5,Medium,2013-11-14,Risk of Violence,5,Medium,2013-11-14,2014-05-03,2014-05-05,0,0,170,1,1\r\n8164,joey stroud,joey,stroud,2013-08-02,Male,1986-02-28,30,25 - 45,African-American,0,3,0,0,5,-1,2013-08-01 11:03:55,2013-08-02 08:42:08,13014513MM10A,2013-08-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-02,Risk of Violence,2,Low,2013-08-02,2013-08-01,2013-08-02,5,0,973,0,0\r\n8168,roderica sweeting,roderica,sweeting,2013-12-04,Female,1995-10-25,20,Less than 25,African-American,0,4,0,0,0,0,2013-12-04 12:13:31,2013-12-04 12:07:33,13022469MM10A,2013-12-03,,1,M,Battery,1,14003601MM40A,(M2),,2014-08-13,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-04,Risk of Violence,6,Medium,2013-12-04,2013-12-04,2013-12-04,0,0,252,1,1\r\n8169,luke morgan,luke,morgan,2013-02-17,Male,1990-10-04,25,25 - 45,African-American,0,3,0,0,0,-1,2013-02-16 11:55:29,2013-02-18 02:30:55,12022946MO10A,,2013-02-16,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-17,Risk of Violence,5,Medium,2013-02-17,2013-02-16,2013-02-18,0,1,1139,0,0\r\n8171,omar santiago,omar,santiago,2013-10-07,Male,1977-05-27,38,25 - 45,Caucasian,0,2,0,0,0,0,2013-10-07 04:35:01,2013-10-07 08:13:51,13019064MM10A,2013-10-07,,0,M,Susp Drivers Lic 1st Offense,1,15011658MM10A,(M1),0,2015-11-06,Possess Cannabis/20 Grams Or Less,2015-11-06,2015-11-09,,0,,,,,Risk of Recidivism,2,Low,2013-10-07,Risk of Violence,2,Low,2013-10-07,2015-11-06,2015-11-09,0,0,760,1,0\r\n8172,samuel gedeon,samuel,gedeon,2014-07-11,Male,1986-05-23,29,25 - 45,African-American,0,2,0,0,0,-1,2014-07-10 01:17:14,2014-07-11 09:05:24,14009467CF10A,2014-07-10,,1,F,Carrying Concealed Firearm,1,15003003CF10A,(M1),0,2015-03-05,Possess Drug Paraphernalia,2015-03-05,2015-04-15,,0,,,,,Risk of Recidivism,2,Low,2014-07-11,Risk of Violence,2,Low,2014-07-11,2015-03-05,2015-04-15,0,0,237,1,1\r\n8173,amber ogren,amber,ogren,2014-12-26,Female,1977-09-17,38,25 - 45,Caucasian,0,5,0,0,1,-18,2014-12-08 03:24:55,2014-12-24 08:52:12,14017277MM10A,2014-12-08,,18,M,Petit Theft $100- $300,1,15012270TC20A,(M2),,2015-02-11,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,5,Medium,2014-12-26,Risk of Violence,2,Low,2014-12-26,2014-12-08,2014-12-24,1,0,47,1,1\r\n8174,rodrick shand,rodrick,shand,2013-03-13,Male,1989-01-13,27,25 - 45,African-American,0,2,0,0,1,-1,2013-03-12 05:14:38,2013-03-13 01:33:25,13003621CF10A,2013-03-12,,1,F,Grand Theft (Motor Vehicle),1,15010212MM10A,(M1),0,2015-09-28,Unlaw Use False Name/Identity,2015-09-28,2015-09-30,,0,,,,,Risk of Recidivism,2,Low,2013-03-13,Risk of Violence,3,Low,2013-03-13,2014-08-20,2014-09-19,1,0,525,0,0\r\n8179,nicholas pena,nicholas,pena,2014-04-29,Male,1994-06-17,21,Less than 25,Caucasian,0,4,0,0,0,0,2014-04-29 01:11:15,2014-04-30 02:53:40,14007038MM10A,2014-04-28,,1,M,Battery,1,14009364MM10A,(M1),0,2014-06-13,Viol Pretrial Release Dom Viol,2014-06-13,2014-06-15,,0,,,,,Risk of Recidivism,4,Low,2014-04-29,Risk of Violence,6,Medium,2014-04-29,2014-06-13,2014-06-15,0,1,45,1,1\r\n8182,ezekiel swinton,ezekiel,swinton,2013-01-31,Male,1992-03-12,24,Less than 25,African-American,0,7,0,0,1,0,2013-01-31 04:44:02,2013-06-21 05:24:05,13001578CF10A,2013-01-31,,0,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-31,Risk of Violence,9,High,2013-01-31,2013-01-31,2013-06-21,1,141,1156,0,0\r\n8183,jamie flynn,jamie,flynn,2013-10-11,Male,1963-04-05,53,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-10-10 06:42:01,2014-04-26 04:56:53,13014217CF10A,,2013-10-10,1,F,arrest case no charge,1,14052042TC20A,(M2),264,2014-07-17,Driving License Suspended,2015-04-07,2015-06-16,,0,,,,,Risk of Recidivism,1,Low,2013-10-11,Risk of Violence,1,Low,2013-10-11,2013-10-10,2014-04-26,3,197,279,1,1\r\n8184,mayker contreras,mayker,contreras,2014-12-12,Male,1979-10-10,36,25 - 45,Caucasian,0,2,0,0,4,-1,2014-12-11 05:07:17,2014-12-12 08:54:37,14016444CF10A,2014-12-11,,1,F,Grand Theft in the 3rd Degree,1,15008207CF10A,(F3),0,2015-06-25,Use of Anti-Shoplifting Device,2015-06-25,2015-06-26,,0,,,,,Risk of Recidivism,2,Low,2014-12-12,Risk of Violence,1,Low,2014-12-12,2015-06-25,2015-06-26,4,0,195,1,1\r\n8185,willie perry,willie,perry,2014-10-28,Male,1952-01-03,64,Greater than 45,African-American,0,4,0,0,8,-4,2014-10-24 07:26:34,2014-10-25 06:30:06,08002767MM40A,,2008-08-18,2262,M,arrest case no charge,1,15014354CF10A,(F2),,2015-11-04,Poss Wep Conv Felon,,,,1,15014354CF10A,(F1),2015-11-04,Agg Battery Bod Hrm-Deadly Weap,Risk of Recidivism,4,Low,2014-10-28,Risk of Violence,2,Low,2014-10-28,2014-10-24,2014-10-25,8,0,372,1,1\r\n8187,william ramos,william,ramos,2013-03-12,Male,1992-12-18,23,Less than 25,African-American,0,10,0,0,0,0,2013-03-12 04:10:28,2013-03-13 01:37:36,13004937MM10A,2013-03-12,,0,M,Possession of Alcohol Under 21,1,14003851MM10A,(M2),,2014-02-11,Drinking Alch Beverage In Open,,,,0,,,,,Risk of Recidivism,10,High,2013-03-12,Risk of Violence,5,Medium,2013-03-12,2013-03-12,2013-03-13,0,1,336,1,1\r\n8188,jamie fabre,jamie,fabre,2013-11-06,Male,1989-07-16,26,25 - 45,Caucasian,0,10,0,0,3,0,2013-11-06 04:37:08,2013-11-06 08:11:56,11015818MM10A,2011-06-19,,871,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-11-06,Risk of Violence,9,High,2013-11-06,2015-02-02,2015-02-02,3,0,453,0,0\r\n8189,hilary adler,hilary,adler,2013-09-26,Male,1967-11-04,48,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-09-25 08:20:02,2013-10-28 10:14:25,13013483CF10A,2013-09-25,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-26,Risk of Violence,1,Low,2013-09-26,2013-09-25,2013-10-28,0,32,918,0,0\r\n8190,apollon chery,apollon,chery,2014-02-10,Male,1989-01-03,27,25 - 45,Other,0,4,0,0,6,-1,2014-02-09 01:07:08,2014-02-10 03:16:11,14001823CF10A,2014-02-09,,1,F,Possession of Cocaine,1,14006188MM10A,(M1),0,2014-04-11,Possess Cannabis/20 Grams Or Less,2014-04-11,2014-04-12,,0,,,,,Risk of Recidivism,4,Low,2014-02-10,Risk of Violence,4,Low,2014-02-10,2009-06-25,2020-01-01,6,0,60,1,1\r\n8191,anpherny simpson,anpherny,simpson,2013-09-30,Male,1994-10-15,21,Less than 25,African-American,0,4,0,0,0,-1,2013-09-29 07:16:56,2013-09-30 08:59:07,13013673CF10A,2013-09-29,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-30,Risk of Violence,6,Medium,2013-09-30,2013-09-29,2013-09-30,0,0,914,0,0\r\n8193,jamil moreland,jamil,moreland,2014-01-10,Male,1995-07-05,20,Less than 25,African-American,0,5,0,0,0,-1,2014-01-09 07:16:04,2014-01-11 03:32:05,14000377CF10A,2014-01-09,,1,F,Deliver Cocaine,1,14018696TC10A,(M2),,2014-05-11,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-10,Risk of Violence,6,Medium,2014-01-10,2014-01-09,2014-01-11,0,1,121,1,1\r\n8195,shane johnson,shane,johnson,2013-05-12,Male,1978-11-27,37,25 - 45,African-American,0,9,0,0,17,-1,2013-05-11 12:13:17,2013-06-26 04:02:19,13009095MM10A,2013-05-11,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-12,Risk of Violence,3,Low,2013-05-12,2014-08-01,2014-10-27,17,45,446,0,0\r\n8196,darell shanafelt,darell,shanafelt,2013-02-12,Male,1964-10-18,51,Greater than 45,Caucasian,0,5,0,0,8,-1,2013-02-11 02:29:42,2013-02-12 08:09:17,13002105CF10A,2013-02-11,,1,F,Possession of Cocaine,1,13010868CF10A,(F3),0,2013-08-03,Grand Theft in the 3rd Degree,2013-08-03,2013-10-24,,0,,,,,Risk of Recidivism,5,Medium,2013-02-12,Risk of Violence,2,Low,2013-02-12,2013-08-03,2013-10-24,8,0,172,1,1\r\n8197,edwin fontanez,edwin,fontanez,2013-11-15,Male,1968-08-06,47,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-11-14 08:28:37,2013-11-15 08:48:39,13015851CF10A,2013-11-14,,1,F,Possession of Cocaine,1,15062352TC20A,(M2),,2015-10-11,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-15,Risk of Violence,1,Low,2013-11-15,2013-11-14,2013-11-15,2,0,695,1,1\r\n8201,david ponczkowski,david,ponczkowski,2013-02-04,Male,1987-02-26,29,25 - 45,Caucasian,0,9,0,0,2,726,2015-01-31 08:08:10,2015-02-01 01:54:12,12025281NI20A,2012-03-21,,320,M,Ride Tri-Rail Without Paying,1,15001461CF10A,(M2),0,2015-01-31,Trespass Struct/Conveyance,2015-01-31,2015-02-01,,0,,,,,Risk of Recidivism,9,High,2013-02-04,Risk of Violence,8,High,2013-02-04,2015-01-31,2015-02-01,2,0,726,1,1\r\n8203,nicketta bromfield,nicketta,bromfield,2013-08-01,Male,1988-09-24,27,25 - 45,African-American,0,9,0,1,2,-1,2013-07-31 11:04:52,2013-09-09 07:20:30,13010690CF10A,2013-07-31,,1,F,Shoot Into Vehicle,1,13021595MM10A,(M1),1,2013-11-16,Possess Cannabis/20 Grams Or Less,2013-11-17,2014-05-15,,0,,,,,Risk of Recidivism,9,High,2013-08-01,Risk of Violence,8,High,2013-08-01,2013-07-31,2013-09-09,2,39,107,1,1\r\n8204,jody holmes,jody,holmes,2013-11-23,Male,1970-10-09,45,Greater than 45,African-American,1,7,0,0,16,-1,2013-11-22 07:56:56,2013-11-23 10:08:48,13016283CF10A,2013-11-22,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-23,Risk of Violence,2,Low,2013-11-23,2014-04-15,2014-07-02,16,0,143,0,0\r\n8205,jason shopovick,jason,shopovick,2014-11-12,Male,1974-12-17,41,25 - 45,Caucasian,0,2,0,0,0,-1,2014-11-11 04:37:39,2014-11-12 09:13:09,14015111CF10A,2014-11-11,,1,F,Poss Contr Subst W/o Prescript,1,15000099MM30A,(M2),,2014-12-24,Petit Theft,,,,0,,,,,Risk of Recidivism,2,Low,2014-11-12,Risk of Violence,1,Low,2014-11-12,2014-11-11,2014-11-12,0,0,42,1,1\r\n8207,federico watkins,federico,watkins,2014-05-16,Male,1984-04-25,31,25 - 45,Caucasian,0,2,0,0,3,-1,2014-05-15 08:47:49,2014-05-17 03:47:54,14007944MM10A,2014-05-15,,1,M,Battery,1,16002555CF10A,(F1),,2016-02-25,Sex Batt Faml/Cust Vict 12-17Y,,,,1,16002555CF10A,(F1),2016-02-25,Sex Batt Faml/Cust Vict 12-17Y,Risk of Recidivism,2,Low,2014-05-16,Risk of Violence,2,Low,2014-05-16,2014-05-15,2014-05-17,3,1,650,1,1\r\n8209,bobby chin,bobby,chin,2013-01-03,Male,1987-04-25,28,25 - 45,Asian,0,8,0,0,9,-1,2013-01-02 02:13:50,2013-02-08 01:06:38,13000088CF10A,2013-01-02,,1,F,Aggravated Battery,1,15039961TC20A,(M2),,2015-07-04,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,8,High,2013-01-03,Risk of Violence,6,Medium,2013-01-03,2013-01-02,2013-02-08,9,36,912,1,0\r\n8210,shermilla coats,shermilla,coats,2013-07-29,Female,1986-07-12,29,25 - 45,African-American,0,3,0,0,1,-40,2013-06-19 06:57:34,2013-07-04 12:09:30,13008678CF10A,2013-06-19,,40,F,Robbery W/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-29,Risk of Violence,2,Low,2013-07-29,2013-06-19,2013-07-04,1,0,977,0,0\r\n8211,michael biasucci,michael,biasucci,2013-04-20,Male,1977-02-02,39,25 - 45,Caucasian,0,1,0,0,1,-1,2013-04-19 11:58:23,2013-04-20 07:15:06,13005615CF10A,2013-04-19,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-20,Risk of Violence,1,Low,2013-04-20,2013-04-19,2013-04-20,1,0,1077,0,0\r\n8212,precious price,precious,price,2013-08-04,Male,1982-12-05,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-08-03 05:25:28,2013-08-04 01:49:16,13010897CF10A,2013-08-03,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-04,Risk of Violence,2,Low,2013-08-04,2013-08-03,2013-08-04,0,0,971,0,0\r\n8214,quakiiya tigner,quakiiya,tigner,2014-11-20,Female,1995-01-03,21,Less than 25,African-American,0,6,1,0,1,-1,2014-11-19 10:04:05,2014-11-20 08:50:08,14015648CF10A,2014-11-19,,1,F,Uttering a Forged Instrument,1,15021978TC20A,(M2),,2015-03-31,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,6,Medium,2014-11-20,Risk of Violence,9,High,2014-11-20,2015-04-21,2015-05-27,1,0,131,1,1\r\n8215,farrokh mohammadnejad,farrokh,mohammadnejad,2013-09-23,Male,1967-06-24,48,Greater than 45,Asian,0,1,0,0,0,0,2013-09-23 02:20:40,2013-10-02 12:35:15,13018143MM10A,2013-09-22,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-23,2013-10-02,0,9,921,0,0\r\n8216,barry williams,barry,williams,2013-10-31,Male,1988-04-22,27,25 - 45,African-American,0,3,0,0,3,-1,2013-10-30 03:40:14,2013-12-07 01:53:45,13004112MM10A,,2013-10-30,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-31,Risk of Violence,3,Low,2013-10-31,2014-10-14,2014-11-10,3,37,348,0,0\r\n8217,octavio arteaga,octavio,arteaga,2013-03-30,Male,1991-12-29,24,Less than 25,Hispanic,0,5,0,0,0,-1,2013-03-29 07:01:27,2013-04-30 08:30:02,13004538CF10A,2013-03-29,,1,F,Lewd/Lasc Battery Pers 12+/<16,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-30,Risk of Violence,4,Low,2013-03-30,2013-03-29,2013-04-30,0,31,1098,0,0\r\n8218,taylor irwin,taylor,irwin,2014-01-29,Female,1991-08-16,24,Less than 25,Caucasian,0,3,0,0,0,0,2014-01-29 03:03:39,2014-01-29 07:47:54,14001635MM10A,2014-01-29,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-29,Risk of Violence,3,Low,2014-01-29,2014-01-29,2014-01-29,0,0,793,0,0\r\n8219,duval briscoe,duval,briscoe,2013-02-20,Male,1986-10-30,29,25 - 45,African-American,0,3,0,0,3,-1,2013-02-19 03:34:37,2013-02-20 06:58:46,13003544MM10A,2013-02-19,,1,M,Battery,1,14032194TC40A,(F3),,2014-03-16,Leaving the Scene of Accident,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-20,Risk of Violence,4,Low,2013-02-20,2013-02-19,2013-02-20,3,0,389,1,1\r\n8220,bruno balbi,bruno,balbi,2013-09-11,Male,1982-12-28,33,25 - 45,Hispanic,0,2,0,0,3,,,,12012229CF10A,,2012-08-16,391,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-11,Risk of Violence,2,Low,2013-09-11,,,3,0,933,0,0\r\n8222,christopher montes,christopher,montes,2014-10-17,Male,1994-05-22,21,Less than 25,Caucasian,0,5,0,0,0,-1,2014-10-16 06:55:23,2014-10-17 08:00:15,14013979CF10A,2014-10-16,,1,F,Uttering a Forged Instrument,1,15008748MM10A,(M1),0,2015-08-18,Petit Theft $100- $300,2015-08-18,2015-08-19,,0,,,,,Risk of Recidivism,5,Medium,2014-10-17,Risk of Violence,5,Medium,2014-10-17,2015-01-19,2015-01-20,0,0,94,0,1\r\n8223,christina deperna,christina,deperna,2013-08-04,Female,1984-10-07,31,25 - 45,Caucasian,0,10,0,2,14,0,2013-08-04 03:14:06,2013-08-05 03:07:44,13010839CF10A,2013-08-03,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-04,Risk of Violence,5,Medium,2013-08-04,2013-08-04,2013-08-05,14,1,971,0,0\r\n8224,allan castro,allan,castro,2013-10-18,Male,1983-10-01,32,25 - 45,Hispanic,0,1,0,0,1,-15,2013-10-03 04:03:00,2013-10-06 02:04:04,13013893CF10A,2013-10-03,,15,F,Aggravated Assault W/o Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-18,Risk of Violence,1,Low,2013-10-18,2013-10-03,2013-10-06,1,0,896,0,0\r\n8225,lawrence bauman,lawrence,bauman,2013-10-11,Male,1953-06-28,62,Greater than 45,Caucasian,0,1,0,0,0,0,2013-10-11 04:48:23,2013-10-12 07:46:26,13019305MM10A,2013-10-11,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-11,Risk of Violence,1,Low,2013-10-11,2013-10-11,2013-10-12,0,1,903,0,0\r\n8226,charles jaycox,charles,jaycox,2014-09-22,Male,1976-09-27,39,25 - 45,Caucasian,0,6,0,0,3,-1,2014-09-21 02:28:25,2014-09-22 08:10:49,14012774CF10A,2014-09-21,,1,F,Driving While License Revoked,1,15007216TC10A,(M2),,2015-02-12,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,6,Medium,2014-09-22,Risk of Violence,2,Low,2014-09-22,2014-09-21,2014-09-22,3,0,143,1,1\r\n8230,earl trapp,earl,trapp,2013-10-23,Male,1959-04-23,56,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-10-22 04:47:28,2013-11-07 09:55:20,13020015MM10A,2013-10-21,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-23,Risk of Violence,1,Low,2013-10-23,2014-05-08,2014-05-20,2,15,197,0,0\r\n8231,glenroy powell,glenroy,powell,2014-02-25,Male,1987-06-04,28,25 - 45,African-American,0,1,0,0,6,-1,2014-02-24 10:38:25,2014-02-25 09:41:08,14002618CF10A,2014-02-24,,1,F,Drivg While Lic Suspd/Revk/Can,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,2,Low,2014-02-25,2014-02-24,2014-02-25,6,0,766,0,0\r\n8232,dana reed,dana,reed,2013-12-30,Female,1989-05-02,26,25 - 45,African-American,0,6,0,0,6,-1,2013-12-29 04:37:10,2014-01-01 07:59:30,13016502CF10A,,2013-12-29,1,F,arrest case no charge,1,14003479MM10A,(M2),43,2014-01-06,Petit Theft,2014-02-18,2014-04-13,,1,15015491CF10A,(F2),2015-12-01,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-12-30,Risk of Violence,5,Medium,2013-12-30,2013-12-29,2014-01-01,6,2,7,1,1\r\n8235,terry cyrus,terry,cyrus,2013-01-29,Male,1991-10-06,24,Less than 25,African-American,0,9,0,0,5,-1,2013-01-28 10:35:54,2013-02-04 05:37:08,13001371CF10A,2013-01-28,,1,F,Strong Armed  Robbery,1,14004638CF10A,(F2),,2013-05-22,Burglary Unoccupied Dwelling,,,,0,,,,,Risk of Recidivism,9,High,2013-01-29,Risk of Violence,7,Medium,2013-01-29,2013-01-28,2013-02-04,5,6,113,1,1\r\n8236,mauricio hostios,mauricio,hostios,2013-08-27,Male,1964-05-29,51,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-08-26 12:54:03,2013-08-26 08:14:39,13016292MM10A,2013-08-25,,2,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,2013-08-26,2013-08-26,0,0,948,0,0\r\n8237,israel guadalupe,israel,guadalupe,2013-03-06,Male,1965-03-29,51,Greater than 45,Hispanic,0,3,0,0,1,-1,2013-03-05 08:37:31,2013-03-08 11:12:12,13003295CF10A,2013-03-05,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-06,Risk of Violence,2,Low,2013-03-06,2013-03-05,2013-03-08,1,2,1122,0,0\r\n8239,kelvin oliphant,kelvin,oliphant,2013-02-02,Male,1987-09-05,28,25 - 45,African-American,0,10,0,1,7,-1,2013-02-01 07:05:02,2013-02-03 02:50:02,13001641CF10A,2013-02-01,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-02,Risk of Violence,6,Medium,2013-02-02,2013-06-13,2013-08-30,7,1,131,0,0\r\n8240,ramonda cheatham,ramonda,cheatham,2013-05-06,Female,1979-09-23,36,25 - 45,African-American,0,2,0,0,1,-1,2013-05-05 07:03:21,2013-05-06 09:22:37,13008712MM10A,2013-05-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-05-05,2013-05-06,1,0,1061,0,0\r\n8242,juan jiminez,juan,jiminez,2014-03-28,Male,1976-10-04,39,25 - 45,Hispanic,0,1,0,0,0,,,,14004098CF10A,2014-03-23,,5,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-28,Risk of Violence,1,Low,2014-03-28,,,0,0,735,0,0\r\n8245,erin balta,erin,balta,2013-03-04,Female,1978-02-15,38,25 - 45,Caucasian,0,1,0,0,0,0,2013-03-04 03:11:55,2013-03-05 02:25:38,13004434MM10A,2013-03-04,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-03-04,2013-03-05,0,1,1124,0,0\r\n8247,joseph mckinley,joseph,mckinley,2013-12-16,Male,1992-11-29,23,Less than 25,African-American,0,2,0,0,1,-2,2013-12-14 06:08:44,2013-12-15 01:45:57,13017295CF10A,2013-12-14,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-16,Risk of Violence,4,Low,2013-12-16,2014-06-02,2014-06-02,1,0,168,0,0\r\n8248,brian demore,brian,demore,2013-05-12,Male,1988-02-25,28,25 - 45,Caucasian,0,7,0,0,5,-1,2013-05-11 06:12:53,2013-06-06 09:39:09,13009112MM10A,2013-05-11,,1,M,Battery,1,13018947MM10A,(M1),0,2013-10-05,Battery,2013-10-05,2013-10-31,,1,13018947MM10A,(M1),2013-10-05,Battery,Risk of Recidivism,7,Medium,2013-05-12,Risk of Violence,5,Medium,2013-05-12,2013-10-05,2013-10-31,5,25,146,1,1\r\n8249,jennifer ingham,jennifer,ingham,2014-11-18,Female,1986-07-20,29,25 - 45,Caucasian,0,6,0,0,7,-1,2014-11-17 08:35:35,2014-11-25 09:30:34,14015479CF10A,,2014-11-17,1,F,arrest case no charge,1,15009071CF10A,(F3),0,2015-07-14,Neglect Child / No Bodily Harm,2015-07-14,2015-07-29,,0,,,,,Risk of Recidivism,6,Medium,2014-11-18,Risk of Violence,3,Low,2014-11-18,2015-07-14,2015-07-29,7,7,238,1,1\r\n8250,randolph soto,randolph,soto,2013-12-12,Male,1996-04-04,20,Less than 25,African-American,4,10,2,1,6,-70,2013-10-03 08:37:33,2013-12-02 11:27:39,13013865CF10A,,2013-10-03,70,F,arrest case no charge,1,14013244MM10A,(M1),0,2014-09-04,Unlaw Use False Name/Identity,2014-09-04,2015-04-02,,0,,,,,Risk of Recidivism,10,High,2013-12-12,Risk of Violence,10,High,2013-12-12,2014-02-27,2014-02-28,6,0,77,0,1\r\n8251,nadja parish,nadja,parish,2014-01-02,Female,1977-07-01,38,25 - 45,Other,0,1,0,0,0,-1,2014-01-01 07:04:41,2014-01-02 04:12:39,14000052CF10A,2014-01-01,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-02,Risk of Violence,1,Low,2014-01-02,2014-01-01,2014-01-02,0,0,820,0,0\r\n8253,franceline librun,franceline,librun,2014-02-10,Male,1986-09-18,29,25 - 45,African-American,0,3,0,0,0,-1,2014-02-09 10:09:21,2014-02-11 06:47:33,14002253MM10A,2014-02-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-10,Risk of Violence,5,Medium,2014-02-10,2014-02-09,2014-02-11,0,1,781,0,0\r\n8254,shella rangoowala,shella,rangoowala,2013-11-14,Female,1981-05-16,34,25 - 45,Asian,0,1,0,0,1,-10,2013-11-04 10:25:43,2013-11-06 11:22:12,13015353CF10A,2013-11-04,,10,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-11-04,2013-11-06,1,0,869,0,0\r\n8256,tanarvis lawhorn,tanarvis,lawhorn,2013-05-17,Male,1987-01-13,29,25 - 45,African-American,0,3,0,0,11,-1,2013-05-16 07:42:12,2013-05-18 04:29:30,13007062CF10A,2013-05-16,,1,F,Driving While License Revoked,1,13039311TC10A,(M2),0,2013-10-01,Susp Drivers Lic 1st Offense,2013-10-01,2013-11-21,,0,,,,,Risk of Recidivism,3,Low,2013-05-17,Risk of Violence,4,Low,2013-05-17,2013-06-21,2013-08-18,11,1,35,0,1\r\n8257,johnior metayer,johnior,metayer,2013-12-23,Male,1981-09-20,34,25 - 45,African-American,0,7,0,0,8,-1,2013-12-22 05:47:01,2013-12-23 08:30:29,13023582MM10A,2013-12-22,,1,M,Battery,1,16011132TC20A,(M2),,2016-03-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-23,Risk of Violence,3,Low,2013-12-23,2015-11-13,2015-11-13,8,0,690,0,0\r\n8258,manuel taveras,manuel,taveras,2013-01-09,Male,1990-01-05,26,25 - 45,African-American,0,7,0,0,6,-1,2013-01-08 02:38:01,2013-01-10 03:49:51,13000319CF10A,2013-01-08,,1,F,Burglary Conveyance Armed,1,14011379CF10A,(F2),0,2014-08-20,Aggravated Battery / Pregnant,2014-08-20,2014-08-21,,1,14011379CF10A,(F2),2014-08-20,Aggravated Battery / Pregnant,Risk of Recidivism,7,Medium,2013-01-09,Risk of Violence,6,Medium,2013-01-09,2014-08-20,2014-08-21,6,1,588,1,1\r\n8259,donovan goode,donovan,goode,2013-10-02,Male,1957-11-11,58,Greater than 45,African-American,0,1,0,0,0,-1,2013-10-01 08:09:05,2013-10-03 12:13:46,13013796CF10A,2013-10-01,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,2013-10-01,2013-10-03,0,1,912,0,0\r\n8260,michael marceau,michael,marceau,2013-02-08,Male,1978-07-07,37,25 - 45,Hispanic,0,5,0,0,6,-24,2013-01-15 12:37:37,2013-02-08 11:34:26,13000716CF10A,,2013-01-15,24,F,arrest case no charge,1,15054030TC40A,(M2),,2015-09-01,Operating W/O Valid License,,,,1,16000913CF10A,(F7),2016-01-22,Armed Kidnapping,Risk of Recidivism,5,Medium,2013-02-08,Risk of Violence,3,Low,2013-02-08,2014-01-31,2014-03-04,6,0,357,0,1\r\n8261,kevon obas,kevon,obas,2013-05-22,Male,1993-03-27,23,Less than 25,African-American,0,8,0,0,1,,,,13007334CF10A,,2013-05-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-05-22,Risk of Violence,9,High,2013-05-22,,,1,0,1045,0,0\r\n8262,robert walerowicz,robert,walerowicz,2014-08-21,Male,1967-06-27,48,Greater than 45,Caucasian,0,6,0,0,0,-6,2014-08-15 04:49:17,2014-08-16 02:20:01,14012334MM10A,2014-08-15,,6,M,Petit Theft,1,16000228MM40A,(M1),,2015-11-10,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2014-08-21,Risk of Violence,2,Low,2014-08-21,2014-08-15,2014-08-16,0,0,446,1,1\r\n8263,alton tuff,alton,tuff,2013-08-27,Male,1954-07-29,61,Greater than 45,African-American,0,2,0,0,9,253,2014-05-07 10:19:11,2014-08-11 01:36:50,12016064CF10A,,2012-11-02,298,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-27,Risk of Violence,2,Low,2013-08-27,2014-05-07,2014-08-11,9,0,253,0,0\r\n8264,jode harris,jode,harris,2014-11-01,Male,1985-04-30,30,25 - 45,African-American,0,3,0,0,1,-1,2014-10-31 06:09:53,2014-11-01 08:55:20,14014650CF10A,2014-10-31,,1,F,Battery on Law Enforc Officer,1,15005244MM10A,(M2),0,2015-05-11,Petit Theft,2015-05-11,2015-05-15,,0,,,,,Risk of Recidivism,3,Low,2014-11-01,Risk of Violence,3,Low,2014-11-01,2015-02-25,2015-03-11,1,0,116,0,1\r\n8265,robert raphel,robert,raphel,2014-03-18,Male,1971-07-19,44,25 - 45,African-American,0,3,0,0,0,-1,2014-03-17 11:17:35,2014-03-20 03:27:00,14003774CF10A,2014-03-17,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-18,Risk of Violence,3,Low,2014-03-18,2014-03-17,2014-03-20,0,2,745,0,0\r\n8266,anthony wright,anthony,wright,2013-03-26,Male,1990-03-11,26,25 - 45,African-American,0,7,0,0,3,1057,2016-02-16 12:57:47,2016-02-16 07:42:40,10017474CF10A,,2011-12-23,459,F,arrest case no charge,1,15003989MM40A,(M1),131,2015-10-08,Possess Drug Paraphernalia,2016-02-16,2016-02-16,,0,,,,,Risk of Recidivism,7,Medium,2013-03-26,Risk of Violence,4,Low,2013-03-26,2016-02-16,2016-02-16,3,0,926,1,0\r\n8267,gregory lee,gregory,lee,2013-09-26,Male,1969-10-09,46,Greater than 45,African-American,0,3,0,0,3,-35,2013-08-22 01:15:43,2013-09-26 05:24:09,13011820CF10A,2013-08-22,,35,F,Stalking (Aggravated),1,13023854MM10A,(M1),87,2013-11-03,Restraining Order Dating Viol,2014-01-29,2014-02-15,,1,15001070CF10A,(F3),2015-01-23,Aggravated Assault w/Firearm,Risk of Recidivism,3,Low,2013-09-26,Risk of Violence,3,Low,2013-09-26,2015-01-23,2015-06-19,3,0,38,1,1\r\n8268,justin marcello,justin,marcello,2013-11-05,Male,1979-08-11,36,25 - 45,Caucasian,0,3,0,0,5,-1,2013-11-04 12:41:52,2013-11-08 04:57:49,13015345CF10A,2013-11-04,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-05,Risk of Violence,1,Low,2013-11-05,2013-11-04,2013-11-08,5,3,878,0,0\r\n8269,cheryl robinson,cheryl,robinson,2013-02-07,Female,1986-12-04,29,25 - 45,African-American,0,9,1,0,11,-1,2013-02-06 07:46:23,2013-03-01 11:13:04,12009003CF10A,,2013-02-06,1,F,arrest case no charge,1,13080042TC40A,(M2),124,2013-11-17,Fail Register Vehicle,2014-03-21,2014-03-22,,0,,,,,Risk of Recidivism,9,High,2013-02-07,Risk of Violence,5,Medium,2013-02-07,2013-02-06,2013-03-01,11,22,283,1,1\r\n8277,forlisha rolle,forlisha,rolle,2013-03-18,Female,1992-09-29,23,Less than 25,Other,0,6,0,0,0,-1,2013-03-17 11:48:46,2013-03-18 02:22:20,13005227MM10A,2013-03-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-18,Risk of Violence,6,Medium,2013-03-18,2013-03-17,2013-03-18,0,0,1110,0,0\r\n8278,jarone douse,jarone,douse,2013-04-14,Male,1962-10-10,53,Greater than 45,African-American,0,6,0,0,3,-1,2013-04-13 10:46:45,2013-04-19 08:34:22,13005333CF10A,2013-04-13,,1,F,Aggravated Battery,1,14000894MM20A,(M2),,2014-03-21,Petit Theft,,,,1,15007652CF10A,(F3),2015-06-12,Battery on Law Enforc Officer,Risk of Recidivism,6,Medium,2013-04-14,Risk of Violence,1,Low,2013-04-14,2013-04-13,2013-04-19,3,5,341,1,1\r\n8279,christopher sohit,christopher,sohit,2013-04-30,Male,1982-08-12,33,25 - 45,Other,0,3,0,0,5,1027,2016-02-21 01:53:34,2016-02-23 11:28:11,12014773CF10A,,2012-10-07,205,F,arrest case no charge,1,16001401MM10A,(M1),,2016-01-27,Viol Injunct Domestic Violence,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-30,Risk of Violence,2,Low,2013-04-30,2016-02-21,2016-02-23,5,0,1002,1,0\r\n8280,travis bryant,travis,bryant,2013-08-02,Male,1981-01-09,35,25 - 45,African-American,0,6,0,0,8,-1,2013-08-01 07:39:02,2013-08-10 07:34:46,13014514MM10A,2013-08-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-02,Risk of Violence,4,Low,2013-08-02,2013-08-01,2013-08-10,8,8,973,0,0\r\n8281,joann daley,joann,daley,2013-04-12,Female,1976-10-05,39,25 - 45,Caucasian,0,3,0,0,3,-1,2013-04-11 11:29:38,2013-04-12 12:46:49,05002511CF10A,,2005-05-19,2885,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-12,Risk of Violence,1,Low,2013-04-12,2013-04-11,2013-04-12,3,0,1085,0,0\r\n8282,carlos delatorre,carlos,delatorre,2013-09-22,Male,1995-03-23,21,Less than 25,Hispanic,1,8,0,0,1,-1,2013-09-21 09:01:29,2013-11-15 09:37:13,13013332CF10A,2013-09-21,,1,F,Felony Battery (Dom Strang),1,14007463MM10A,(M1),0,2014-05-06,Possess Cannabis/20 Grams Or Less,2014-05-06,2014-05-07,,1,14008214MM10A,(M1),2014-05-21,Battery,Risk of Recidivism,8,High,2013-09-22,Risk of Violence,6,Medium,2013-09-22,2014-05-06,2014-05-07,1,54,226,1,1\r\n8283,casey rossi,casey,rossi,2013-02-07,Female,1990-02-23,26,25 - 45,Caucasian,0,6,0,0,2,0,2013-02-07 02:12:15,2013-03-12 02:45:13,13001904CF10A,2013-02-07,,0,F,Purchase Cannabis,1,13002788MM40A,(M1),271,2013-06-21,Petit Theft/ Prior Conviction,2014-03-19,2014-03-26,,0,,,,,Risk of Recidivism,6,Medium,2013-02-07,Risk of Violence,4,Low,2013-02-07,2013-02-07,2013-03-12,2,33,134,1,1\r\n8284,justin thomas,justin,thomas,2014-06-26,Male,1990-03-20,26,25 - 45,African-American,1,9,0,0,10,-1,2014-06-25 06:52:09,2014-06-26 09:02:39,14008754CF10A,,2014-06-25,1,F,arrest case no charge,1,14014516MM10A,(M1),0,2014-10-02,Obstruct Officer By Disguise,2014-10-02,2014-11-01,,1,14014516MM10A,(M1),2014-10-02,Battery,Risk of Recidivism,9,High,2014-06-26,Risk of Violence,5,Medium,2014-06-26,2014-10-02,2014-11-01,10,0,98,1,1\r\n8285,tawan bell,tawan,bell,2014-06-25,Male,1987-08-21,28,25 - 45,African-American,0,6,0,0,8,-1,2014-06-24 09:58:04,2014-06-25 08:17:37,14009829MM10A,2014-06-24,,1,M,Battery,1,15025255TC40A,(M2),,2015-04-25,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,6,Medium,2014-06-25,Risk of Violence,6,Medium,2014-06-25,2014-06-24,2014-06-25,8,0,304,1,1\r\n8287,chasity acevedo,chasity,acevedo,2013-05-16,Female,1995-02-26,21,Less than 25,Caucasian,0,7,3,1,3,-1,2013-05-15 08:46:36,2013-05-16 08:50:20,13009386MM10A,2013-05-15,,1,M,Battery,1,13023229MM10A,(M1),0,2013-12-15,Battery,2013-12-15,2014-01-16,,1,13023229MM10A,(M1),2013-12-15,Battery,Risk of Recidivism,7,Medium,2013-05-16,Risk of Violence,7,Medium,2013-05-16,2013-12-15,2014-01-16,3,0,213,1,1\r\n8288,roger brown,roger,brown,2013-01-14,Male,1978-09-06,37,25 - 45,African-American,0,5,0,0,8,-1,2013-01-13 05:05:40,2013-01-27 09:09:14,13000605CF10A,,2013-01-13,1,F,arrest case no charge,1,15001900MM10A,(M1),0,2015-02-15,Trespass Other Struct/Conve,2015-02-15,2015-02-16,,0,,,,,Risk of Recidivism,5,Medium,2013-01-14,Risk of Violence,2,Low,2013-01-14,2015-02-15,2015-02-16,8,13,762,1,0\r\n8289,rodolfo gonzalez,rodolfo,gonzalez,2013-07-11,Male,1987-03-16,29,25 - 45,Caucasian,0,6,0,0,1,-77,2013-04-25 06:06:31,2013-04-26 04:08:56,13005973CF10A,2013-04-25,,77,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-11,Risk of Violence,3,Low,2013-07-11,2013-04-25,2013-04-26,1,0,995,0,0\r\n8290,jacob johnson,jacob,johnson,2014-10-06,Male,1993-05-27,22,Less than 25,African-American,1,10,0,0,12,0,2014-10-06 02:59:38,2014-11-10 09:14:48,14013485CF10A,2014-10-06,,0,F,Possession of Cocaine,1,15001623MM10A,(M1),0,2015-02-08,Trespass Other Struct/Convey,2015-02-08,2015-02-12,,0,,,,,Risk of Recidivism,10,High,2014-10-06,Risk of Violence,8,High,2014-10-06,2015-02-08,2015-02-12,12,35,125,1,1\r\n8291,chris ingraham,chris,ingraham,2013-05-21,Male,1956-12-25,59,Greater than 45,African-American,0,1,0,0,4,-66,2013-03-16 01:44:05,2013-05-21 11:04:46,12013966MM10A,,2013-03-15,67,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-21,Risk of Violence,1,Low,2013-05-21,2013-03-16,2013-05-21,4,0,1046,0,0\r\n8292,frantz abelard,frantz,abelard,2013-03-20,Male,1987-11-26,28,25 - 45,African-American,0,10,8,2,12,-1,2013-03-19 04:16:36,2013-06-03 10:48:27,13003969CF10A,2013-03-19,,1,F,Possession of Cocaine,1,14005713TC10A,(M2),,2014-01-09,Driving License Suspended,,,,0,,,,,Risk of Recidivism,10,High,2013-03-20,Risk of Violence,7,Medium,2013-03-20,2013-03-19,2013-06-03,12,75,295,1,1\r\n8294,celia wagner,celia,wagner,2014-01-17,Female,1960-01-30,56,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-16 07:55:33,2014-01-17 01:26:59,14000848MM10A,2014-01-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-17,Risk of Violence,1,Low,2014-01-17,2014-01-16,2014-01-17,0,0,805,0,0\r\n8296,stephanie sawyer,stephanie,sawyer,2013-08-01,Female,1983-12-14,32,25 - 45,Caucasian,0,6,0,0,2,,,,13008784TC10A,2013-02-11,,171,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-01,Risk of Violence,3,Low,2013-08-01,,,2,0,974,0,0\r\n8298,matthew lingwood,matthew,lingwood,2014-01-28,Male,1985-08-15,30,25 - 45,Caucasian,0,2,0,0,0,-1,2014-01-27 01:38:16,2014-01-27 06:54:27,14001127CF10A,2014-01-26,,2,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-28,Risk of Violence,2,Low,2014-01-28,2014-01-27,2014-01-27,0,0,794,0,0\r\n8299,travis sweeting,travis,sweeting,2013-09-09,Male,1988-11-19,27,25 - 45,African-American,0,4,0,0,2,-1,2013-09-08 08:07:45,2013-09-11 08:26:49,13012698CF10A,2013-09-08,,1,F,,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-09,Risk of Violence,3,Low,2013-09-09,2014-06-11,2014-06-20,2,2,275,0,0\r\n8301,perle roques,perle,roques,2013-02-05,Male,1987-04-17,29,25 - 45,Other,0,2,0,0,0,-1,2013-02-04 10:30:41,2013-02-06 08:54:44,13001742CF10A,2013-02-04,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-05,Risk of Violence,2,Low,2013-02-05,2013-02-04,2013-02-06,0,1,1151,0,0\r\n8303,jonathon irving,jonathon,irving,2013-07-15,Male,1991-07-25,24,Less than 25,African-American,0,4,0,0,1,216,2014-02-16 11:32:33,2014-02-17 05:30:00,11013082CF10A,,2012-09-20,298,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-07-15,Risk of Violence,4,Low,2013-07-15,2014-02-16,2014-02-17,1,0,216,0,0\r\n8304,kristen adams,kristen,adams,2013-09-26,Female,1988-07-14,27,25 - 45,Caucasian,0,10,0,0,6,-1,2013-09-25 04:05:03,2013-09-26 08:46:37,13013512CF10A,2013-09-25,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-26,Risk of Violence,9,High,2013-09-26,2014-07-09,2014-07-10,6,0,286,0,0\r\n8306,claudel galette,claudel,galette,2013-05-18,Male,1972-05-15,43,25 - 45,African-American,0,9,0,0,15,-1,2013-05-17 09:20:47,2013-05-18 07:39:32,13009562MM10A,2013-05-17,,1,M,Resist/Obstruct W/O Violence,1,13009426CF10A,(F3),1,2013-07-05,Tamper With Witness/Victim/CI,2013-07-06,2014-05-07,,1,13009426CF10A,(F3),2013-07-05,Felony Battery w/Prior Convict,Risk of Recidivism,9,High,2013-05-18,Risk of Violence,6,Medium,2013-05-18,2015-12-01,2020-01-01,15,0,48,1,1\r\n8307,patrice healey,patrice,healey,2014-02-04,Female,1963-04-02,53,Greater than 45,African-American,0,6,0,0,5,-1,2014-02-03 06:26:31,2014-02-05 01:44:53,14001595CF10A,2014-02-03,,1,F,Unlicensed Telemarketing,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-04,Risk of Violence,4,Low,2014-02-04,2014-02-03,2014-02-05,5,1,787,0,0\r\n8308,keric hadden,keric,hadden,2013-08-07,Male,1988-08-08,27,25 - 45,African-American,1,7,0,0,6,-1,2013-08-06 11:10:26,2013-08-07 08:38:20,13011013CF10A,2013-08-06,,1,F,Issuing a Worthless Draft,1,14013396MO10A,(MO3),0,2014-09-08,Trespass Structure/Conveyance,2014-09-08,2014-09-13,,0,,,,,Risk of Recidivism,7,Medium,2013-08-07,Risk of Violence,8,High,2013-08-07,2014-09-08,2014-09-13,6,0,397,1,1\r\n8309,andrae cray,andrae,cray,2013-10-23,Male,1990-03-08,26,25 - 45,African-American,0,5,1,0,6,-8,2013-10-15 07:14:52,2013-10-17 05:10:33,12015557TC10A,,2013-10-15,8,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-23,Risk of Violence,4,Low,2013-10-23,2015-07-17,2015-08-01,6,0,632,0,0\r\n8311,veronica leonard,veronica,leonard,2013-01-07,Female,1991-09-29,24,Less than 25,Caucasian,0,6,0,0,1,-1,2013-01-06 06:05:41,2013-01-07 01:30:24,11005355CF10A,,2013-01-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-07,Risk of Violence,6,Medium,2013-01-07,2013-01-06,2013-01-07,1,0,1180,0,0\r\n8312,ty-shawn smith,ty-shawn,smith,2013-10-25,Male,1985-12-31,30,25 - 45,African-American,0,6,0,0,0,0,2013-10-25 03:07:46,2013-10-25 07:52:05,13014922CF10A,2013-10-25,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-25,Risk of Violence,5,Medium,2013-10-25,2013-10-25,2013-10-25,0,0,889,0,0\r\n8313,carl mair,carl,mair,2014-04-12,Male,1960-03-08,56,Greater than 45,Other,0,2,0,0,6,-1,2014-04-11 06:18:15,2014-04-13 05:08:38,14005076CF10A,2014-04-11,,1,F,Possession of Cocaine,1,15004725CF10A,(F3),0,2015-04-09,Possession of Cocaine,2015-04-09,2015-07-06,,0,,,,,Risk of Recidivism,2,Low,2014-04-12,Risk of Violence,1,Low,2014-04-12,2014-08-07,2014-08-14,6,1,117,0,1\r\n8314,kharee woods,kharee,woods,2013-01-22,Male,1989-10-09,26,25 - 45,African-American,0,9,0,0,4,-1,2013-01-21 11:29:04,2013-01-22 09:38:34,13000961CF10A,2013-01-21,,1,F,Driving While License Revoked,1,15027878TC40A,(M2),,2015-05-08,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2013-01-22,Risk of Violence,7,Medium,2013-01-22,2013-06-21,2013-07-01,4,0,150,0,0\r\n8315,ronnie dryden,ronnie,dryden,2014-07-18,Male,1991-08-20,24,Less than 25,African-American,2,6,1,0,3,0,2014-07-18 02:10:30,2014-07-18 08:24:14,14011016MM10A,2014-07-18,,0,M,Battery,1,15008624TC20A,(M2),,2015-02-01,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,6,Medium,2014-07-18,Risk of Violence,8,High,2014-07-18,2014-07-18,2014-07-18,3,0,198,1,1\r\n8316,carlos lopes,carlos,lopes,2013-04-01,Male,1986-03-21,30,25 - 45,Hispanic,0,3,0,0,6,-10,2013-03-22 11:19:03,2013-03-23 10:25:44,13012397TC10A,2013-03-22,,10,M,Unlaw LicTag/Sticker Attach,1,13005952CF10A,(F3),,2013-04-24,Driving While License Revoked,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-01,Risk of Violence,2,Low,2013-04-01,2013-04-25,2013-04-25,6,0,23,1,1\r\n8317,ruben santiago,ruben,santiago,2014-02-21,Male,1979-02-19,37,25 - 45,Hispanic,0,5,0,0,4,,,,12010699CF10A,2012-07-20,,581,F,Conspiracy to Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-21,Risk of Violence,2,Low,2014-02-21,2009-01-22,2009-02-01,4,0,770,0,0\r\n8318,george turner,george,turner,2013-05-06,Male,1961-05-23,54,Greater than 45,African-American,0,1,0,0,4,-1,2013-05-05 04:15:11,2013-05-07 03:53:33,11017440CF10A,,2013-05-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-05-05,2013-05-07,4,1,1061,0,0\r\n8319,shawn claudio-nieves,shawn,claudio-nieves,2014-12-15,Male,1993-04-08,23,Less than 25,Hispanic,0,5,0,0,0,0,2014-12-15 05:40:47,2014-12-16 01:34:39,14016617CF10A,,2014-12-15,0,F,arrest case no charge,1,15000667CF10A,(F3),403,2015-01-15,Grand Theft in the 3rd Degree,2016-02-22,2016-02-23,,0,,,,,Risk of Recidivism,5,Medium,2014-12-15,Risk of Violence,4,Low,2014-12-15,2014-12-15,2014-12-16,0,1,31,1,1\r\n8320,joseph graham,joseph,graham,2014-07-14,Male,1990-12-22,25,25 - 45,Other,0,4,0,0,1,-1,2014-07-13 06:53:47,2014-09-19 07:37:16,14009572CF10A,2014-07-13,,1,F,D.U.I. Serious Bodily Injury,1,15007529MM10A,(M1),0,2015-07-14,Resist/Obstruct W/O Violence,2015-07-14,2015-07-15,,0,,,,,Risk of Recidivism,4,Low,2014-07-14,Risk of Violence,5,Medium,2014-07-14,2015-07-14,2015-07-15,1,67,365,1,1\r\n8321,sean toltin,sean,toltin,2013-09-26,Female,1968-02-23,48,Greater than 45,African-American,0,6,0,3,18,-85,2013-07-03 11:07:01,2013-08-26 12:24:32,13009527CF10A,,2013-07-04,84,F,arrest case no charge,1,14007694CF10A,(F3),29,2013-11-21,Grand Theft on 65 Yr or Older,2013-12-20,2013-12-23,,0,,,,,Risk of Recidivism,6,Medium,2013-09-26,Risk of Violence,1,Low,2013-09-26,2015-01-29,2020-01-01,18,0,56,1,1\r\n8322,niketa harmon,niketa,harmon,2014-06-13,Female,1979-11-24,36,25 - 45,African-American,0,9,0,0,13,-1,2014-06-12 01:49:23,2014-07-15 08:37:41,14008157CF10A,2014-06-12,,1,F,Possession of Cocaine,1,14013705MM10A,(M1),0,2014-09-15,Possess Drug Paraphernalia,2014-09-15,2014-10-29,,0,,,,,Risk of Recidivism,9,High,2014-06-13,Risk of Violence,3,Low,2014-06-13,2014-09-15,2014-10-29,13,32,94,1,1\r\n8325,john moye,john,moye,2013-02-20,Male,1994-12-14,21,Less than 25,African-American,0,10,0,0,1,0,2013-02-20 04:11:03,2013-02-21 02:12:04,13005856CF10A,2013-02-20,,0,F,Grand Theft in the 3rd Degree,1,13013646MM10A,(M1),0,2013-07-18,Petit Theft/ Prior Conviction,2013-07-18,2013-07-19,,0,,,,,Risk of Recidivism,10,High,2013-02-20,Risk of Violence,10,High,2013-02-20,2013-07-18,2013-07-19,1,1,148,1,1\r\n8326,paul kolb,paul,kolb,2014-10-14,Male,1989-12-08,26,25 - 45,Caucasian,0,5,0,0,10,-1,2014-10-13 07:48:15,2014-10-14 11:10:36,14009980CF10A,,2014-10-13,1,F,arrest case no charge,1,15002200MM40A,(M1),,2015-05-18,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,5,Medium,2014-10-14,Risk of Violence,4,Low,2014-10-14,2014-10-13,2014-10-14,10,0,216,1,1\r\n8328,daniel cortes,daniel,cortes,2014-10-04,Male,1990-04-03,26,25 - 45,Caucasian,0,8,0,3,10,0,2014-10-04 06:08:11,2014-10-05 02:46:08,14035976MU10A,2014-10-04,,0,M,Driving License Suspended,1,15006963TC30A,(M1),41,2015-01-20,Opert With Susp DL 2nd Offens,2015-03-02,2015-03-03,,1,15013465CF10A,(F2),2015-10-16,Agg Fleeing/Eluding High Speed,Risk of Recidivism,8,High,2014-10-04,Risk of Violence,7,Medium,2014-10-04,2015-01-06,2015-01-15,10,1,94,0,1\r\n8340,richard daniels,richard,daniels,2013-05-29,Male,1970-06-16,45,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-28 12:08:40,2013-05-29 02:13:09,13007626CF10A,2013-05-28,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-05-28,2013-05-29,0,0,1038,0,0\r\n8341,irving tepper,irving,tepper,2013-11-13,Male,1968-07-10,47,Greater than 45,Caucasian,0,5,0,0,1,-1,2013-11-12 11:13:35,2013-11-13 01:03:30,13021316MM10A,2013-11-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-13,Risk of Violence,3,Low,2013-11-13,2013-11-12,2013-11-13,1,0,870,0,0\r\n8343,ryan reyes,ryan,reyes,2013-05-09,Male,1985-12-19,30,25 - 45,Hispanic,0,8,0,0,7,269,2014-02-02 01:24:30,2014-02-02 08:03:53,12018195CF10A,2012-12-14,,146,F,Possession of Cannabis,1,14003988MU10A,(M1),1,2014-02-01,Opert With Susp DL 2nd Offens,2014-02-02,2014-02-02,,1,15012048CF10A,(F3),2015-08-04,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2013-05-09,Risk of Violence,7,Medium,2013-05-09,2015-11-05,2015-11-06,7,0,268,1,1\r\n8344,christopher mozie,christopher,mozie,2013-01-12,Male,1974-09-20,41,25 - 45,African-American,2,8,0,1,14,41,2013-02-22 09:34:42,2013-02-28 07:59:52,13000853MO10A,,2013-01-11,1,M,arrest case no charge,1,13003742MO40A,(MO3),0,2013-09-20,Carry Open/Uncov Bev In Pub,2013-09-20,2013-09-21,,0,,,,,Risk of Recidivism,8,High,2013-01-12,Risk of Violence,9,High,2013-01-12,2013-02-22,2013-02-28,14,0,41,0,1\r\n8347,gregory steele,gregory,steele,2013-02-15,Male,1965-11-23,50,Greater than 45,Caucasian,0,2,0,0,1,693,2015-01-09 12:32:07,2015-03-06 03:04:36,08015707CF10A,,2012-10-01,137,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-15,Risk of Violence,4,Low,2013-02-15,2015-01-09,2015-03-06,1,0,693,0,0\r\n8348,henry zukowski,henry,zukowski,2014-01-29,Male,1958-07-31,57,Greater than 45,Caucasian,0,1,0,0,3,-52,2013-12-08 01:54:51,2013-12-20 09:17:41,13016970CF10A,2013-12-08,,52,M,Fraud Obtain Food or Lodging,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-29,Risk of Violence,1,Low,2014-01-29,2013-12-08,2013-12-20,3,0,793,0,0\r\n8349,eric saddler,eric,saddler,2013-05-17,Male,1984-08-21,31,25 - 45,African-American,0,1,0,0,2,-1,2013-05-16 11:28:32,2013-05-18 04:21:53,13007041CF10A,2013-05-16,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-17,Risk of Violence,2,Low,2013-05-17,2013-05-16,2013-05-18,2,1,1050,0,0\r\n8350,jeremy thompson,jeremy,thompson,2013-11-16,Male,1994-06-14,21,Less than 25,African-American,0,7,0,0,0,-1,2013-11-15 07:20:43,2013-11-17 02:45:00,13015897CF10A,2013-11-15,,1,F,Uttering a Forged Instrument,1,14002227CF10A,(F3),0,2014-02-17,Possession of Cocaine,2014-02-17,2014-06-17,,0,,,,,Risk of Recidivism,7,Medium,2013-11-16,Risk of Violence,7,Medium,2013-11-16,2014-02-17,2014-06-17,0,1,93,1,1\r\n8353,janice watkins,janice,watkins,2013-10-01,Female,1987-10-25,28,25 - 45,African-American,1,4,0,0,1,-1,2013-09-30 10:41:28,2013-10-01 07:40:06,13018601MM10A,2013-09-30,,1,M,Battery,1,14001166MM30A,(M2),,2014-07-16,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-01,Risk of Violence,7,Medium,2013-10-01,2013-09-30,2013-10-01,1,0,288,1,1\r\n8354,john ballard,john,ballard,2013-04-03,Male,1986-11-25,29,25 - 45,Caucasian,1,8,0,1,9,-1,2013-04-02 08:03:59,2013-04-04 05:15:36,13004713CF10A,2013-04-02,,1,F,Tampering With Physical Evidence,1,13005636CF10A,(F3),0,2013-04-19,Possession of Hydrocodone,2013-04-19,2013-07-06,,0,,,,,Risk of Recidivism,8,High,2013-04-03,Risk of Violence,7,Medium,2013-04-03,2013-04-19,2013-07-06,9,1,16,1,1\r\n8355,phillip powell,phillip,powell,2013-12-17,Male,1988-03-21,28,25 - 45,African-American,0,4,0,0,2,-1,2013-12-16 10:24:07,2013-12-17 01:08:11,13017379CF10A,2013-12-16,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-17,Risk of Violence,4,Low,2013-12-17,2013-12-16,2013-12-17,2,0,836,0,0\r\n8356,bianca nani,bianca,nani,2013-07-29,Female,1990-05-11,25,25 - 45,Caucasian,0,4,0,0,1,-2,2013-07-27 02:28:39,2013-07-28 02:02:11,13014222MM10A,2013-07-27,,2,M,Aide/Abet Prostitution Lewdness,1,13017312MM10A,(M2),0,2013-09-11,Petit Theft,2013-09-11,2013-09-12,,0,,,,,Risk of Recidivism,4,Low,2013-07-29,Risk of Violence,4,Low,2013-07-29,2013-09-11,2013-09-12,1,0,44,1,1\r\n8357,kimani ogarro,kimani,ogarro,2013-02-12,Male,1993-05-08,22,Less than 25,African-American,0,3,0,0,0,-1,2013-02-11 06:17:17,2013-02-12 08:09:43,13002114CF10A,2013-02-11,,1,F,Grand Theft in the 3rd Degree,1,13001673MM20A,(M1),,2013-06-17,Trespass Other Struct/Convey,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-12,Risk of Violence,5,Medium,2013-02-12,2013-04-03,2013-04-12,0,0,50,0,1\r\n8358,shawntoria jefferson,shawntoria,jefferson,2013-10-10,Female,1994-06-23,21,Less than 25,African-American,0,6,0,0,0,-1,2013-10-09 09:17:03,2013-10-10 08:01:27,13014168CF10A,2013-10-09,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-10,Risk of Violence,7,Medium,2013-10-10,2013-10-09,2013-10-10,0,0,904,0,0\r\n8359,jose rodriguez,jose,rodriguez,2013-02-11,Male,1967-07-26,48,Greater than 45,Caucasian,0,8,0,0,0,-1,2013-02-10 08:35:46,2013-04-19 10:22:54,13002067CF10A,2013-02-10,,1,F,Grand Theft in the 3rd Degree,1,14001207CF10A,(F3),404,2013-12-28,Grand Theft in the 3rd Degree,2015-02-05,2015-02-12,,0,,,,,Risk of Recidivism,8,High,2013-02-11,Risk of Violence,3,Low,2013-02-11,2013-02-10,2013-04-19,0,67,320,1,1\r\n8360,jordan douglas,jordan,douglas,2014-02-27,Male,1991-03-17,25,25 - 45,African-American,0,9,0,1,4,-1,2014-02-26 05:42:51,2014-08-15 03:57:35,14002740CF10A,2014-02-26,,1,F,Burglary Unoccupied Dwelling,1,15072982TC40A,(M2),,2015-12-26,Fail Register Vehicle,,,,1,16000178MM10A,(M1),2016-01-05,Battery,Risk of Recidivism,9,High,2014-02-27,Risk of Violence,8,High,2014-02-27,2015-02-20,2015-03-03,4,169,358,0,1\r\n8361,james adams,james,adams,2013-10-17,Male,1978-10-02,37,25 - 45,African-American,0,7,0,0,7,-1,2013-10-16 02:11:36,2013-10-17 07:39:15,13014487CF10A,2013-10-16,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-17,Risk of Violence,3,Low,2013-10-17,2014-04-06,2014-04-07,7,0,171,0,0\r\n8362,richard canovaca,richard,canovaca,2013-03-04,Male,1985-01-10,31,25 - 45,Caucasian,0,6,0,0,5,0,2013-03-04 01:27:32,2013-03-04 08:33:14,13003220CF10A,2013-03-03,,1,F,Tampering With Physical Evidence,1,15001657CF10A,(F3),0,2015-02-05,Possession of Cocaine,2015-02-05,2015-02-06,,0,,,,,Risk of Recidivism,6,Medium,2013-03-04,Risk of Violence,4,Low,2013-03-04,2015-02-05,2015-02-06,5,0,703,1,1\r\n8364,muzaffer kilic,muzaffer,kilic,2013-12-18,Male,1960-01-01,56,Greater than 45,Other,0,1,0,0,0,-1,2013-12-17 08:41:27,2013-12-24 10:49:15,13023380MM10A,2013-12-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-18,Risk of Violence,1,Low,2013-12-18,2013-12-17,2013-12-24,0,6,835,0,0\r\n8365,edgar christie,edgar,christie,2013-04-20,Male,1991-09-15,24,Less than 25,African-American,0,3,0,0,0,-1,2013-04-19 07:16:54,2013-04-20 07:45:15,13007624MM10A,2013-04-19,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-20,Risk of Violence,4,Low,2013-04-20,2013-04-19,2013-04-20,0,0,1077,0,0\r\n8367,giorgio baker,giorgio,baker,2013-03-07,Male,1986-01-21,30,25 - 45,African-American,0,10,0,0,15,-1,2013-03-06 07:32:57,2013-06-08 07:25:08,13003358CF10A,2013-03-06,,1,F,Live on Earnings of Prostitute,1,14007971CF10A,(F3),0,2014-06-09,Possession of Cannabis,2014-06-09,2014-10-28,,0,,,,,Risk of Recidivism,10,High,2013-03-07,Risk of Violence,9,High,2013-03-07,2014-03-06,2014-03-11,15,93,364,0,1\r\n8369,william taylor,william,taylor,2013-04-02,Male,1968-06-17,47,Greater than 45,Caucasian,0,2,0,0,5,-1,2013-04-01 10:51:38,2013-04-06 07:54:08,13006247MM10A,2013-04-01,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-02,Risk of Violence,3,Low,2013-04-02,2013-04-01,2013-04-06,5,4,1095,0,0\r\n8373,anthony fasano,anthony,fasano,2013-04-04,Male,1950-03-06,66,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-04-03 11:44:55,2013-05-30 08:03:33,13006498MM10A,2013-04-03,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-04,Risk of Violence,1,Low,2013-04-04,2013-04-03,2013-05-30,2,56,1093,0,0\r\n8375,stephen brown,stephen,brown,2013-03-19,Male,1964-04-25,51,Greater than 45,African-American,0,8,0,0,21,-1,2013-03-18 03:54:57,2014-06-10 06:16:29,13003951CF10A,,2013-03-18,1,F,arrest case no charge,1,16002866CF10A,(F3),,2016-03-06,Driving While License Revoked,,,,0,,,,,Risk of Recidivism,8,High,2013-03-19,Risk of Violence,3,Low,2013-03-19,2014-06-10,2015-10-12,21,937,1083,1,1\r\n8378,nicholas capiola,nicholas,capiola,2014-05-01,Male,1951-11-02,64,Greater than 45,Caucasian,0,10,0,0,8,-290,2013-07-15 01:50:21,2014-05-01 10:36:00,13009927CF10A,2013-07-15,,290,F,Grand Theft in the 3rd Degree,1,15009260MM10A,(M2),0,2015-09-01,Disorderly Conduct,2015-09-01,2015-09-03,,0,,,,,Risk of Recidivism,10,High,2014-05-01,Risk of Violence,6,Medium,2014-05-01,2015-09-01,2015-09-03,8,0,488,1,1\r\n8379,christopher sheehan,christopher,sheehan,2013-10-04,Male,1939-09-27,76,Greater than 45,Asian,0,1,0,0,0,-2,2013-10-02 12:20:37,2013-10-04 12:06:04,13013779CF10A,2013-10-01,,3,F,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-04,Risk of Violence,1,Low,2013-10-04,2013-10-02,2013-10-04,0,0,910,0,0\r\n8380,jaqueline ventura,jaqueline,ventura,2013-05-22,Female,1987-05-30,28,25 - 45,Caucasian,0,6,0,0,3,0,2013-05-22 02:14:08,2013-05-22 07:31:59,11009593CF10A,2011-06-02,,720,F,Burglary Structure Unoccup,1,13014047CF10A,(F3),,2013-05-31,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-22,Risk of Violence,2,Low,2013-05-22,2013-05-22,2013-05-22,3,0,9,1,1\r\n8381,lesean mountain,lesean,mountain,2013-05-05,Male,1980-06-06,35,25 - 45,African-American,0,4,0,0,1,0,2013-05-05 01:29:39,2013-05-06 07:57:31,13008717MM10A,2013-05-05,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-05,Risk of Violence,4,Low,2013-05-05,2013-05-05,2013-05-06,1,1,1062,0,0\r\n8382,kenold jean,kenold,jean,2013-10-24,Male,1971-08-15,44,25 - 45,Other,0,1,0,0,6,-1,2013-10-23 11:26:35,2013-10-26 03:38:57,13014825CF10A,2013-10-23,,1,F,Felony Driving While Lic Suspd,1,15051752TC20A,(M2),,2015-09-16,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-24,Risk of Violence,1,Low,2013-10-24,2013-10-23,2013-10-26,6,2,692,1,1\r\n8384,shawanna oussifi,shawanna,oussifi,2013-02-19,Female,1976-08-20,39,25 - 45,African-American,0,3,0,0,3,,,,12011145CF10A,2012-07-27,,207,F,Arson in the First Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-19,Risk of Violence,3,Low,2013-02-19,,,3,0,1137,0,0\r\n8385,emanuel amenta,emanuel,amenta,2013-01-09,Male,1977-04-29,38,25 - 45,Hispanic,1,7,0,1,7,-1,2013-01-08 03:12:14,2013-01-09 07:07:52,13000330CF10A,2013-01-08,,1,F,Felony Battery (Dom Strang),1,13004405TC20A,(M2),,2013-01-11,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-09,Risk of Violence,2,Low,2013-01-09,2014-11-10,2014-11-18,7,0,2,1,1\r\n8386,hope roberts,hope,roberts,2013-09-05,Male,1991-12-12,24,Less than 25,African-American,0,5,0,0,0,-1,2013-09-04 07:48:04,2013-09-06 08:35:11,13012494CF10A,2013-09-04,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-05,Risk of Violence,5,Medium,2013-09-05,2013-09-04,2013-09-06,0,1,939,0,0\r\n8389,andrew sutton,andrew,sutton,2013-03-14,Male,1988-11-18,27,25 - 45,Caucasian,0,9,0,0,4,,,,12014025CF10A,2012-09-22,,173,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-14,Risk of Violence,9,High,2013-03-14,,,4,0,1114,0,0\r\n8390,joshua colon,joshua,colon,2013-02-22,Male,1979-07-06,36,25 - 45,Caucasian,0,3,0,0,0,-1,2013-02-21 09:36:26,2013-02-22 07:13:08,13002696CF10A,2013-02-21,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-22,Risk of Violence,4,Low,2013-02-22,2014-06-11,2014-06-18,0,0,474,0,0\r\n8392,jonathan sanchez-rodriguez,jonathan,sanchez-rodriguez,2014-11-22,Male,1995-07-07,20,Less than 25,Hispanic,0,6,0,0,0,-1,2014-11-21 04:19:03,2014-12-16 09:09:48,14015712CF10A,2014-11-21,,1,F,Corrupt Public Servant,1,14016948CF10A,(F3),,2014-12-22,Grand Theft (Motor Vehicle),,,,0,,,,,Risk of Recidivism,6,Medium,2014-11-22,Risk of Violence,7,Medium,2014-11-22,2014-11-21,2014-12-16,0,24,30,1,1\r\n8394,adler corvil,adler,corvil,2013-07-08,Male,1995-01-01,21,Less than 25,African-American,0,3,0,1,0,-2,2013-07-06 11:29:26,2013-07-07 07:24:04,13009487CF10A,2013-07-06,,2,F,Battery on Law Enforc Officer,1,15001375CF10A,(M2),0,2015-01-29,Trespass Struct/Conveyance,2015-01-29,2015-01-30,,0,,,,,Risk of Recidivism,3,Low,2013-07-08,Risk of Violence,7,Medium,2013-07-08,2015-01-29,2015-01-30,0,0,570,1,1\r\n8396,david campbell,david,campbell,2013-10-30,Male,1988-06-20,27,25 - 45,African-American,0,10,0,0,7,0,2013-10-30 12:35:19,2013-12-04 01:03:57,13000571CF10A,,2013-10-30,0,F,arrest case no charge,1,16001517CF10A,(F3),0,2016-02-04,,2016-02-04,2016-03-04,,0,,,,,Risk of Recidivism,10,High,2013-10-30,Risk of Violence,10,High,2013-10-30,2014-11-05,2014-12-01,7,35,371,0,1\r\n8399,anderson metayer,anderson,metayer,2014-09-15,Male,1987-06-28,28,25 - 45,African-American,0,9,1,0,18,0,2014-09-15 05:14:37,2014-09-15 12:49:46,14012510CF10A,2014-09-15,,0,F,Possession of Cocaine,1,15004190TC10A,(M2),0,2015-02-10,Unlaw LicTag/Sticker Attach,2015-02-10,2015-02-10,,0,,,,,Risk of Recidivism,9,High,2014-09-15,Risk of Violence,7,Medium,2014-09-15,2015-02-10,2015-02-10,18,0,148,0,1\r\n8400,abraham ballestas,abraham,ballestas,2014-03-06,Male,1963-10-07,52,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-03-05 09:38:47,2014-03-06 05:42:23,14003775MM10A,2014-03-05,,1,M,Battery,1,14006035MM10A,(M1),0,2014-04-09,Viol Pretrial Release Dom Viol,2014-04-09,2014-04-10,,0,,,,,Risk of Recidivism,1,Low,2014-03-06,Risk of Violence,1,Low,2014-03-06,2014-04-09,2014-04-10,0,0,34,1,1\r\n8401,jason hope,jason,hope,2013-04-16,Male,1977-01-19,39,25 - 45,Caucasian,0,9,0,0,16,0,2013-04-16 01:11:08,2013-05-21 06:38:16,12000598CF10A,,2013-04-16,0,F,arrest case no charge,1,15010721CF10A,(F3),,2015-05-28,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,9,High,2013-04-16,Risk of Violence,7,Medium,2013-04-16,2014-05-02,2014-05-03,16,354,381,0,1\r\n8403,shawn smith,shawn,smith,2014-09-23,Male,1996-07-10,19,Less than 25,African-American,0,4,0,0,0,-1,2014-09-22 08:28:34,2014-09-23 02:17:43,14012825CF10A,2014-09-22,,1,F,Resist Officer w/Violence,1,14015144MM10A,(M2),0,2014-10-16,Unlawful Assembly,2014-10-16,2014-12-12,,1,14015144MM10A,(M1),2014-10-16,Battery,Risk of Recidivism,4,Low,2014-09-23,Risk of Violence,7,Medium,2014-09-23,2014-10-16,2014-12-12,0,0,23,1,1\r\n8404,alfonso mendoza,alfonso,mendoza,2014-02-25,Male,1969-09-16,46,Greater than 45,Caucasian,0,1,0,0,1,,,,14002654CF10A,,2014-02-25,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,1,Low,2014-02-25,,,1,0,766,0,0\r\n8405,teddy burrows,teddy,burrows,2013-02-11,Male,1975-12-11,40,25 - 45,African-American,0,4,0,0,2,-1,2013-02-10 07:02:08,2013-02-11 10:55:14,13002057CF10A,2013-02-10,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-10,2013-02-11,2,0,1145,0,0\r\n8406,kevin bass,kevin,bass,2013-04-08,Male,1986-03-02,30,25 - 45,Caucasian,0,8,0,0,5,-1,2013-04-07 10:41:28,2013-04-10 07:27:04,13004967CF10A,2013-04-07,,1,F,Grand Theft in the 3rd Degree,1,13074450TC40A,(M2),222,2013-10-19,Driving License Suspended,2014-05-29,2014-06-05,,0,,,,,Risk of Recidivism,8,High,2013-04-08,Risk of Violence,8,High,2013-04-08,2013-04-07,2013-04-10,5,2,194,1,1\r\n8407,brandon poe,brandon,poe,2014-11-14,Male,1987-05-27,28,25 - 45,Caucasian,0,3,0,0,0,-1,2014-11-13 11:57:15,2014-11-14 01:49:54,14015228CF10A,2014-11-13,,1,F,Manufacture Cannabis,1,15005560CF10A,(F3),1,2015-04-28,Felony Battery (Dom Strang),2015-04-29,2015-12-22,,1,15005560CF10A,(F3),2015-04-28,Felony Battery (Dom Strang),Risk of Recidivism,3,Low,2014-11-14,Risk of Violence,2,Low,2014-11-14,2016-03-08,2016-03-29,0,0,165,1,1\r\n8408,hanyu wang,hanyu,wang,2013-10-06,Male,1988-12-26,27,25 - 45,Caucasian,0,2,0,0,0,-1,2013-10-05 12:18:21,2013-10-07 08:17:22,13018961MM10A,2013-10-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-06,Risk of Violence,3,Low,2013-10-06,2013-10-05,2013-10-07,0,1,908,0,0\r\n8409,kenneth sanchez,kenneth,sanchez,2013-02-13,Male,1993-02-11,23,Less than 25,Hispanic,0,7,0,0,3,0,2013-02-13 02:30:53,2013-02-16 08:31:34,13002266CF10A,2013-02-13,,0,F,Possession of Cocaine,1,14010088CF10A,(F3),,2013-07-29,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-13,Risk of Violence,5,Medium,2013-02-13,2013-02-13,2013-02-16,3,3,166,1,1\r\n8410,tyrone jackson,tyrone,jackson,2013-05-14,Male,1982-09-04,33,25 - 45,African-American,2,10,0,0,8,-49,2013-03-26 02:05:49,2013-04-02 06:05:23,13004367CF10A,2013-03-26,,49,F,Felony Battery (Dom Strang),1,14002012CF10A,(F3),0,2014-02-12,Possession Burglary Tools,2014-02-12,2014-02-18,,0,,,,,Risk of Recidivism,10,High,2013-05-14,Risk of Violence,7,Medium,2013-05-14,2014-02-12,2014-02-18,8,0,274,1,1\r\n8411,brandon whitfield,brandon,whitfield,2013-09-26,Male,1990-12-09,25,25 - 45,African-American,0,6,0,0,7,-1,2013-09-25 01:18:58,2013-10-13 04:17:21,13013473CF10A,,2013-09-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-26,Risk of Violence,4,Low,2013-09-26,2013-09-25,2013-10-13,7,17,918,0,0\r\n8413,richard weise,richard,weise,2013-09-18,Male,1991-03-03,25,25 - 45,African-American,0,5,0,0,3,114,2014-01-10 12:58:50,2014-02-06 09:11:18,10006429CF10A,2010-04-10,,1257,F,Dealing in Stolen Property,1,14013182CF10A,(M1),0,2014-09-30,Resist/Obstruct W/O Violence,2014-09-30,2015-01-21,,0,,,,,Risk of Recidivism,5,Medium,2013-09-18,Risk of Violence,5,Medium,2013-09-18,2014-01-10,2014-02-06,3,0,114,0,1\r\n8415,nicholas maczko,nicholas,maczko,2013-08-14,Male,1983-04-10,33,25 - 45,Caucasian,0,6,0,0,4,-56,2013-06-19 09:46:06,2013-08-14 10:00:59,13008670CF10A,2013-06-19,,56,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-14,Risk of Violence,5,Medium,2013-08-14,2014-08-13,2014-08-14,4,0,364,0,0\r\n8416,ampella guy,ampella,guy,2013-07-26,Female,1991-05-17,24,Less than 25,African-American,0,3,0,0,0,-2,2013-07-24 10:44:57,2013-07-25 08:44:12,13010385CF10A,2013-07-24,,2,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-26,Risk of Violence,3,Low,2013-07-26,2013-07-24,2013-07-25,0,0,980,0,0\r\n8418,neil elder,neil,elder,2013-04-17,Male,1971-11-06,44,25 - 45,Caucasian,0,7,0,0,0,-1,2013-04-16 04:51:29,2013-04-20 05:57:46,13005462CF10A,2013-04-16,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-17,Risk of Violence,4,Low,2013-04-17,2014-02-06,2014-03-17,0,3,295,0,0\r\n8419,eddie dean,eddie,dean,2013-10-20,Male,1972-04-11,44,25 - 45,African-American,0,1,0,0,0,-1,2013-10-19 10:50:50,2013-10-20 02:20:06,13014651CF10A,2013-10-19,,1,F,Felony/Driving Under Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-20,Risk of Violence,1,Low,2013-10-20,2013-10-19,2013-10-20,0,0,894,0,0\r\n8421,davahu barrett,davahu,barrett,2013-11-26,Female,1992-07-28,23,Less than 25,African-American,0,7,0,0,0,0,2013-11-26 03:42:42,2013-11-27 01:18:05,13022238MM10A,2013-11-26,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-26,Risk of Violence,5,Medium,2013-11-26,2013-11-26,2013-11-27,0,1,857,0,0\r\n8422,telise cassidy,telise,cassidy,2014-05-04,Female,1984-06-20,31,25 - 45,Caucasian,0,8,0,1,2,-1,2014-05-03 05:18:43,2014-05-04 08:13:29,14006210CF10A,2014-05-03,,1,F,Burglary Structure Unoccup,1,14028595MU10A,(M2),0,2014-08-05,Susp Drivers Lic 1st Offense,2014-08-05,2014-12-09,,0,,,,,Risk of Recidivism,8,High,2014-05-04,Risk of Violence,5,Medium,2014-05-04,2014-08-05,2014-12-09,2,0,93,1,1\r\n8423,derrick pierre,derrick,pierre,2013-03-10,Male,1989-02-15,27,25 - 45,African-American,0,2,0,1,0,0,2013-03-10 12:16:08,2013-03-10 07:11:00,13003511CF10A,2013-03-09,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-10,Risk of Violence,3,Low,2013-03-10,2013-03-10,2013-03-10,0,0,1118,0,0\r\n8424,gabrielle hamilton,gabrielle,hamilton,2013-01-24,Female,1989-08-21,26,25 - 45,Caucasian,0,8,0,0,1,-1,2013-01-23 02:18:57,2013-01-23 09:23:04,13001114CF10A,2013-01-22,,2,F,Possession of Oxycodone,1,13005242CF10A,(F3),0,2013-04-11,Grand Theft in the 3rd Degree,2013-04-11,2013-07-27,,0,,,,,Risk of Recidivism,8,High,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-04-11,2013-07-27,1,0,77,1,1\r\n8425,terry walker,terry,walker,2014-06-01,Male,1958-11-24,57,Greater than 45,African-American,0,5,0,0,16,0,2014-06-01 02:19:30,2014-06-13 05:48:59,14008721MM10A,2014-05-31,,1,M,Battery,1,14011846CF10A,(F3),0,2014-08-30,Felony Petit Theft,2014-08-30,2015-08-24,,0,,,,,Risk of Recidivism,5,Medium,2014-06-01,Risk of Violence,2,Low,2014-06-01,2014-08-30,2015-08-24,16,12,90,1,1\r\n8426,kevin dumey,kevin,dumey,2013-02-20,Male,1960-09-13,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-02-19 09:53:34,2013-02-20 06:33:27,13002524CF10A,2013-02-19,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-02-19,2013-02-20,0,0,1136,0,0\r\n8427,carlos santiago-ortiz,carlos,santiago-ortiz,2013-12-14,Male,1948-08-21,67,Greater than 45,Hispanic,0,1,0,0,0,,,,,,,,M,,1,15004901MM10A,(M1),0,2015-04-30,Battery,2015-04-30,2015-06-02,,1,15004901MM10A,(M1),2015-04-30,Battery,Risk of Recidivism,1,Low,2013-12-14,Risk of Violence,1,Low,2013-12-14,2015-04-30,2015-06-02,0,0,502,1,1\r\n8428,jamie harris,jamie,harris,2013-04-28,Female,1979-12-11,36,25 - 45,Caucasian,0,6,0,0,7,-1,2013-04-27 01:39:04,2013-05-04 05:37:11,13006056CF10A,2013-04-27,,1,F,Felony Petit Theft,1,13006763CF10A,(M1),0,2013-05-11,Tresspass in Structure or Conveyance,2013-05-11,2013-07-12,,0,,,,,Risk of Recidivism,6,Medium,2013-04-28,Risk of Violence,2,Low,2013-04-28,2013-05-11,2013-07-12,7,6,13,1,1\r\n8429,joseph mortenson,joseph,mortenson,2013-08-28,Male,1970-08-16,45,Greater than 45,Hispanic,0,6,0,0,6,630,2015-05-20 08:58:57,2015-06-30 07:07:00,12003092CF10A,,2012-11-16,285,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-28,Risk of Violence,4,Low,2013-08-28,2015-05-20,2015-06-30,6,0,630,0,0\r\n8432,robert jones,robert,jones,2014-05-14,Male,1986-03-05,30,25 - 45,African-American,0,9,0,0,18,0,2014-05-14 01:36:38,2014-05-15 04:54:01,14018212TC10A,2014-05-13,,1,M,Operating W/O Valid License,1,14046347TC30A,(M2),,2014-05-18,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,9,High,2014-05-14,Risk of Violence,10,High,2014-05-14,2014-05-14,2014-05-15,18,1,4,1,1\r\n8434,jhony milo,jhony,milo,2014-09-27,Male,1981-04-22,34,25 - 45,African-American,0,8,0,0,0,-1,2014-09-26 02:13:08,2014-10-29 10:16:27,14013051CF10A,2014-09-26,,1,F,Possession of Cocaine,1,15005640CF10A,(F3),,2015-02-08,Aggravated Assault w/Firearm,,,,1,15005640CF10A,(F3),2015-02-08,Aggravated Assault w/Firearm,Risk of Recidivism,8,High,2014-09-27,Risk of Violence,3,Low,2014-09-27,2014-09-26,2014-10-29,0,32,134,1,1\r\n8435,jabari hopkins,jabari,hopkins,2013-10-08,Male,1991-12-18,24,Less than 25,African-American,0,2,0,0,1,-1,2013-10-07 09:18:48,2013-10-08 02:16:44,13014080CF10A,,2013-10-07,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-08,Risk of Violence,3,Low,2013-10-08,2014-01-07,2014-01-16,1,0,91,0,0\r\n8436,henry loubeau,henry,loubeau,2013-11-01,Male,1994-09-13,21,Less than 25,Other,0,5,0,0,0,-1,2013-10-31 01:35:14,2013-11-02 01:53:18,13015209CF10A,2013-10-31,,1,F,Attempted Burg/Convey/Unocc,1,15011497CF10A,(F3),0,2015-09-05,Grand Theft (Motor Vehicle),2015-09-05,2015-10-13,,0,,,,,Risk of Recidivism,5,Medium,2013-11-01,Risk of Violence,7,Medium,2013-11-01,2014-06-24,2014-07-26,0,1,235,0,1\r\n8437,emonte banks,emonte,banks,2013-12-23,Male,1974-01-01,42,25 - 45,African-American,0,1,0,0,7,-1,2013-12-22 09:32:59,2013-12-23 01:56:25,13017620CF10A,2013-12-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-22,2013-12-23,7,0,830,0,0\r\n8438,melissa bucholtz,melissa,bucholtz,2014-08-12,Female,1981-07-01,34,25 - 45,Caucasian,0,10,0,0,12,-1,2014-08-11 04:08:41,2014-08-14 05:26:07,14010956CF10A,2014-08-11,,1,F,Possession of Cocaine,1,15000114MM20A,(M1),,2014-11-17,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,10,High,2014-08-12,Risk of Violence,5,Medium,2014-08-12,2014-08-11,2014-08-14,12,2,97,1,1\r\n8439,daniel castellanos,daniel,castellanos,2014-01-09,Male,1985-05-24,30,25 - 45,Hispanic,0,4,0,0,3,-6,2014-01-03 05:18:54,2014-01-05 08:02:37,14006367MU10A,2014-01-03,,6,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-09,Risk of Violence,5,Medium,2014-01-09,2014-01-03,2014-01-05,3,0,813,0,0\r\n8440,marco nicholls,marco,nicholls,2013-05-02,Male,1975-08-20,40,25 - 45,Caucasian,0,4,0,0,6,-1,2013-05-01 09:47:42,2013-05-02 04:48:43,13006265CF10A,2013-05-01,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-02,Risk of Violence,2,Low,2013-05-02,2015-10-15,2015-10-22,6,0,896,0,0\r\n8445,lee quinones,lee,quinones,2013-02-21,Male,1992-02-09,24,Less than 25,Hispanic,0,8,0,0,1,,,,11014564CF10A,,2012-12-26,57,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-21,Risk of Violence,7,Medium,2013-02-21,,,1,0,1135,0,0\r\n8446,mahmud lama,mahmud,lama,2013-12-23,Male,1992-04-07,24,Less than 25,Asian,0,6,0,0,4,-120,2013-08-25 07:02:49,2013-08-25 07:53:53,13012008CF10A,,2013-12-04,19,F,arrest case no charge,1,14015095MM10A,(M1),0,2014-10-15,Battery,2014-10-15,2014-10-15,,1,14015095MM10A,(M1),2014-10-15,Battery,Risk of Recidivism,6,Medium,2013-12-23,Risk of Violence,4,Low,2013-12-23,2014-10-15,2014-10-15,4,0,296,0,1\r\n8447,ryan whittaker,ryan,whittaker,2013-08-07,Male,1985-10-28,30,25 - 45,Other,0,9,0,0,13,-1,2013-08-06 03:52:47,2013-08-07 08:20:36,13010996CF10A,2013-08-06,,1,F,Deliver Cannabis,1,13012138CF10A,(M2),0,2013-08-28,Susp Drivers Lic 1st Offense,2013-08-28,2013-08-30,,1,13012138CF10A,(F2),2013-08-28,Agg Fleeing/Eluding High Speed,Risk of Recidivism,9,High,2013-08-07,Risk of Violence,5,Medium,2013-08-07,2013-08-28,2013-08-30,13,0,21,1,1\r\n8448,davon walthour,davon,walthour,2013-04-05,Male,1985-04-26,30,25 - 45,African-American,0,3,0,0,4,326,2014-02-25 10:46:58,2014-03-03 09:21:12,13004803CF10A,2013-04-03,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-05,Risk of Violence,2,Low,2013-04-05,2014-02-25,2014-03-03,4,0,326,0,0\r\n8449,michael lynch,michael,lynch,2013-03-30,Male,1984-07-19,31,25 - 45,Caucasian,0,3,0,0,3,0,2013-03-30 01:04:10,2013-03-30 08:35:32,13006076MM10A,2013-03-29,,1,M,Battery,1,13005814CF10A,(F3),0,2013-04-23,Contempt Of Court,2013-04-23,2013-04-24,,0,,,,,Risk of Recidivism,3,Low,2013-03-30,Risk of Violence,3,Low,2013-03-30,2013-04-23,2013-04-24,3,0,24,1,1\r\n8450,perez blanco,perez,blanco,2014-09-19,Male,1982-07-29,33,25 - 45,Caucasian,0,3,0,0,2,,,,14012028CF10A,,2014-09-18,1,F,arrest case no charge,1,14013461CF10A,(F3),,2014-10-01,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,3,Low,2014-09-19,Risk of Violence,2,Low,2014-09-19,,,2,0,12,1,1\r\n8452,louis matrone,louis,matrone,2013-05-29,Male,1989-02-15,27,25 - 45,Caucasian,0,3,0,0,1,-1,2013-05-28 05:17:39,2013-06-28 12:05:32,13010246MM10A,2013-05-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-29,Risk of Violence,4,Low,2013-05-29,2013-05-28,2013-06-28,1,30,1038,0,0\r\n8453,alexander rojas,alexander,rojas,2014-06-29,Male,1993-09-17,22,Less than 25,Hispanic,0,2,0,1,0,-1,2014-06-28 09:31:46,2014-06-29 09:24:34,14008900CF10A,,2014-06-28,1,F,arrest case no charge,1,14001867MM30A,(M1),,2014-11-25,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,2,Low,2014-06-29,Risk of Violence,3,Low,2014-06-29,2014-06-28,2014-06-29,0,0,149,1,1\r\n8456,dwayne haynes,dwayne,haynes,2013-01-28,Male,1978-07-03,37,25 - 45,African-American,0,3,0,0,3,-1,2013-01-27 04:36:41,2013-04-18 02:31:15,13001927MM10A,2013-01-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-28,Risk of Violence,2,Low,2013-01-28,2013-01-27,2013-04-18,3,80,1159,0,0\r\n8457,glendel paul,glendel,paul,2014-03-11,Male,1990-07-18,25,25 - 45,African-American,0,2,0,0,1,0,2014-03-11 05:37:31,2014-03-11 08:37:39,14003435CF10A,2014-03-11,,0,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-11,Risk of Violence,3,Low,2014-03-11,2014-03-11,2014-03-11,1,0,752,0,0\r\n8458,lulio calderon,lulio,calderon,2014-02-03,Male,1970-09-19,45,Greater than 45,Caucasian,0,1,0,0,2,-1,2014-02-02 08:57:44,2014-02-10 08:22:26,14000557CF10A,,2014-02-03,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-02,2014-02-10,2,7,788,0,0\r\n8461,leonard felix,leonard,felix,2014-02-21,Male,1994-02-06,22,Less than 25,Hispanic,0,2,0,0,1,-19,2014-02-03 11:06:13,2014-02-21 10:12:11,14001522CF10A,,2014-02-20,1,F,arrest case no charge,1,16000677MM40A,(M1),51,2016-01-18,Possess Cannabis/20 Grams Or Less,2016-03-09,2016-04-19,,0,,,,,Risk of Recidivism,2,Low,2014-02-21,Risk of Violence,4,Low,2014-02-21,2016-03-09,2016-04-19,1,0,696,1,1\r\n8462,leonard renta,leonard,renta,2013-09-03,Male,1984-06-30,31,25 - 45,Caucasian,0,5,0,0,1,-3,2013-08-31 09:04:51,2013-09-01 02:06:30,13012320CF10A,2013-08-31,,3,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-03,Risk of Violence,2,Low,2013-09-03,2013-08-31,2013-09-01,1,0,941,0,0\r\n8463,roy brooks,roy,brooks,2013-04-07,Male,1992-07-04,23,Less than 25,African-American,0,5,0,0,0,-1,2013-04-06 09:06:58,2013-04-10 05:44:03,13004945CF10A,2013-04-06,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-07,Risk of Violence,8,High,2013-04-07,2013-04-06,2013-04-10,0,3,1090,0,0\r\n8465,anthony barrow,anthony,barrow,2014-03-10,Male,1995-02-08,21,Less than 25,African-American,0,4,0,0,0,0,2014-03-10 04:22:06,2014-03-12 11:18:43,14003376CF10A,2014-03-10,,0,F,Possession Firearm School Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-10,Risk of Violence,8,High,2014-03-10,2014-03-10,2014-03-12,0,2,753,0,0\r\n8467,terrance skinner,terrance,skinner,2014-09-22,Male,1987-07-15,28,25 - 45,African-American,0,5,0,0,6,-1,2014-09-21 05:10:54,2014-09-26 09:57:45,14013989MM10A,2014-09-21,,1,M,Battery,1,15021938TC20A,(M2),,2015-03-21,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,5,Medium,2014-09-22,Risk of Violence,8,High,2014-09-22,2014-09-21,2014-09-26,6,4,180,1,1\r\n8468,darriss cooper,darriss,cooper,2013-08-19,Male,1980-10-14,35,25 - 45,African-American,0,1,0,0,0,-1,2013-08-18 11:38:41,2013-08-19 06:55:15,13011587CF10A,2013-08-18,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-19,0,0,956,0,0\r\n8469,john watts,john,watts,2013-11-27,Male,1986-09-08,29,25 - 45,African-American,0,4,1,1,4,-1,2013-11-26 04:45:54,2013-11-28 02:49:13,13016494CF10A,2013-11-26,,1,F,Grand Theft in the 3rd Degree,1,15007347MM10A,(M1),31,2015-07-09,Viol Injunct Domestic Violence,2015-08-09,2015-08-11,,0,,,,,Risk of Recidivism,4,Low,2013-11-27,Risk of Violence,3,Low,2013-11-27,2013-11-26,2013-11-28,4,1,589,1,1\r\n8471,xavier johnson,xavier,johnson,2014-07-13,Male,1993-03-11,23,Less than 25,African-American,0,4,0,0,2,-1,2014-07-12 07:12:05,2014-07-13 07:49:13,14009558CF10A,2014-07-12,,1,F,Burglary Conveyance Unoccup,1,14017084MM10A,(M1),0,2014-12-03,Petit Theft $100- $300,2014-12-03,2015-04-15,,0,,,,,Risk of Recidivism,4,Low,2014-07-13,Risk of Violence,7,Medium,2014-07-13,2014-07-30,2014-09-06,2,0,17,0,1\r\n8472,shafon gallimore,shafon,gallimore,2013-02-15,Male,1987-09-24,28,25 - 45,African-American,0,10,0,0,7,-1,2013-02-14 11:53:15,2013-02-15 07:41:03,13001062CF10A,,2013-02-14,1,F,arrest case no charge,1,13015726MM10A,(M1),0,2013-08-19,Unlaw Use False Name/Identity,2013-08-19,2014-04-16,,0,,,,,Risk of Recidivism,10,High,2013-02-15,Risk of Violence,7,Medium,2013-02-15,2013-08-19,2014-04-16,7,0,185,1,1\r\n8473,joanne evans,joanne,evans,2013-12-22,Female,1982-02-24,34,25 - 45,Caucasian,0,7,0,0,0,0,2013-12-22 02:30:37,2013-12-24 05:27:12,13023569MM10A,2013-12-21,,1,M,Driving License Suspended,1,15001688MM20A,(M2),67,2015-06-23,Petit Theft,2015-08-29,2015-09-18,,0,,,,,Risk of Recidivism,7,Medium,2013-12-22,Risk of Violence,3,Low,2013-12-22,2015-02-11,2015-02-19,0,2,416,0,1\r\n8475,jillian slone,jillian,slone,2013-11-18,Female,1983-07-21,32,25 - 45,Caucasian,0,2,0,0,5,-29,2013-10-20 11:26:38,2013-10-25 01:43:47,13008795CF10A,2013-06-22,,149,F,Burglary Dwelling Assault/Batt,1,16013758TC30A,(M2),,2016-02-29,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-18,Risk of Violence,2,Low,2013-11-18,2013-10-20,2013-10-25,5,0,833,1,0\r\n8476,danny farmer,danny,farmer,2013-08-21,Male,1963-06-24,52,Greater than 45,Caucasian,0,1,0,0,2,-44,2013-07-08 12:45:06,2013-08-09 11:20:21,13012897MM10A,2013-07-07,,45,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-21,Risk of Violence,1,Low,2013-08-21,2013-10-16,2013-12-09,2,0,56,0,0\r\n8477,troy fountain,troy,fountain,2013-11-23,Male,1990-08-11,25,25 - 45,African-American,0,4,0,0,2,-1,2013-11-22 08:30:44,2013-11-23 10:09:46,13016257CF10A,,2013-11-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-23,Risk of Violence,4,Low,2013-11-23,2015-03-10,2015-03-14,2,0,472,0,0\r\n8478,edward willis,edward,willis,2014-02-11,Male,1981-09-16,34,25 - 45,Caucasian,0,7,1,0,15,-1,2014-02-10 11:36:28,2014-02-11 12:32:43,14001876CF10A,2014-02-10,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-02-11,Risk of Violence,6,Medium,2014-02-11,2014-02-10,2014-02-11,15,0,780,0,0\r\n8479,charlie young,charlie,young,2014-03-06,Male,1968-10-14,47,Greater than 45,African-American,0,4,0,0,4,-1,2014-03-05 12:53:40,2014-03-06 08:44:05,14003100CF10A,2014-03-05,,1,F,Felony Driving While Lic Suspd,1,15007913CF10A,(F3),9,2015-06-09,Grand Theft in the 3rd Degree,2015-06-18,2015-06-19,,0,,,,,Risk of Recidivism,4,Low,2014-03-06,Risk of Violence,4,Low,2014-03-06,2015-06-18,2015-06-19,4,0,460,1,1\r\n8482,emerey boddie,emerey,boddie,2013-07-16,Male,1965-06-22,50,Greater than 45,African-American,0,9,0,0,9,,,,12018201CF10A,2012-12-13,,215,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-07-16,Risk of Violence,7,Medium,2013-07-16,1999-07-13,2000-06-05,9,0,990,0,0\r\n8483,princess walker,princess,walker,2013-10-20,Female,1985-10-15,30,25 - 45,African-American,0,5,0,0,4,-1,2013-10-19 07:52:55,2013-10-20 08:37:47,13014631CF10A,2013-10-19,,1,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-20,Risk of Violence,2,Low,2013-10-20,2013-10-19,2013-10-20,4,0,894,0,0\r\n8484,sire reffner,sire,reffner,2013-10-20,Male,1993-09-23,22,Less than 25,Caucasian,0,3,0,0,0,-1,2013-10-19 08:06:27,2013-10-20 02:37:24,13019808MM10A,2013-10-19,,1,M,Battery,1,15044722TC30A,(M2),,2015-06-10,Posses/Disply Susp/Revk/Frd DL,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-20,Risk of Violence,5,Medium,2013-10-20,2015-06-11,2015-06-12,0,0,598,1,1\r\n8485,andrew defeo,andrew,defeo,2014-01-17,Male,1962-07-14,53,Greater than 45,Caucasian,0,1,0,0,1,,,,12006159MM10A,2012-03-24,,664,M,Driving Under The Influence,1,15041016TC30A,(M2),,2015-06-01,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-17,Risk of Violence,1,Low,2014-01-17,,,1,0,500,1,1\r\n8486,paula anderson,paula,anderson,2014-08-01,Female,1969-02-12,47,Greater than 45,African-American,0,9,0,0,7,-1,2014-07-31 07:26:17,2014-08-01 02:08:55,14010448CF10A,2014-07-31,,1,F,Possession of Cocaine,1,15001340CF10A,(F3),,2015-01-28,Possession of Cocaine,,,,0,,,,,Risk of Recidivism,9,High,2014-08-01,Risk of Violence,2,Low,2014-08-01,2015-09-17,2020-01-01,7,0,180,1,1\r\n8487,brian carter,brian,carter,2013-04-08,Male,1978-11-07,37,25 - 45,Caucasian,0,8,0,0,3,-1,2013-04-07 05:57:47,2013-12-05 05:48:25,13004968CF10A,2013-04-07,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-08,Risk of Violence,5,Medium,2013-04-08,2014-04-25,2014-05-12,3,241,382,0,0\r\n8488,cedrick martin,cedrick,martin,2013-02-14,Male,1978-10-29,37,25 - 45,African-American,0,5,0,0,8,-1,2013-02-13 06:27:07,2013-02-14 08:49:30,13003211MM10A,2013-02-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-14,Risk of Violence,5,Medium,2013-02-14,2013-02-13,2013-02-14,8,0,1142,0,0\r\n8492,jose jones,jose,jones,2013-09-18,Male,1990-01-02,26,25 - 45,African-American,0,10,0,0,7,-1,2013-09-17 11:57:21,2013-09-20 07:48:48,13013101CF10A,2013-09-17,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,13013876CF10A,(F2),1,2013-10-02,Procure Person Und 18/Prostitu,2013-10-03,2014-03-13,,0,,,,,Risk of Recidivism,10,High,2013-09-18,Risk of Violence,9,High,2013-09-18,2013-09-17,2013-09-20,7,2,14,1,1\r\n8494,madeline cuello,madeline,cuello,2013-03-22,Female,1985-04-03,31,25 - 45,Caucasian,0,2,0,0,0,0,2013-03-22 12:00:37,2013-03-26 09:46:03,13005575MM10A,2013-03-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-22,Risk of Violence,2,Low,2013-03-22,2013-03-22,2013-03-26,0,4,1106,0,0\r\n8496,gabriel lopez,gabriel,lopez,2014-01-26,Male,1995-07-07,20,Less than 25,Caucasian,0,3,0,3,0,0,2014-01-26 05:38:03,2014-01-27 01:29:53,14001146CF10A,2014-01-26,,0,F,Felony Battery (Dom Strang),1,15002157MM10A,(M1),0,2015-02-21,Possess Cannabis/20 Grams Or Less,2015-02-21,2015-02-21,,0,,,,,Risk of Recidivism,3,Low,2014-01-26,Risk of Violence,5,Medium,2014-01-26,2015-02-21,2015-02-21,0,1,391,0,1\r\n8500,keandre owens,keandre,owens,2013-01-18,Male,1993-10-27,22,Less than 25,African-American,0,7,0,0,0,-1,2013-01-17 01:22:02,2013-03-08 04:39:17,13000825CF10A,2013-01-17,,1,F,Burglary Unoccupied Dwelling,1,13022001MM10A,(M1),0,2013-11-22,Petit Theft $100- $300,2013-11-22,2013-12-11,,1,14009268CF10A,(F2),2014-06-21,Robbery / No Weapon,Risk of Recidivism,7,Medium,2013-01-18,Risk of Violence,7,Medium,2013-01-18,2013-11-22,2013-12-11,0,49,308,1,1\r\n8501,edwin mabra,edwin,mabra,2014-06-06,Male,1982-11-15,33,25 - 45,African-American,0,10,0,1,14,-1,2014-06-05 08:04:06,2014-06-07 04:23:25,14007779CF10A,2014-06-05,,1,F,Driving While License Revoked,1,15016177CF10A,(F3),,2015-12-18,Grand Theft (Motor Vehicle),,,,0,,,,,Risk of Recidivism,10,High,2014-06-06,Risk of Violence,8,High,2014-06-06,2014-08-08,2014-12-01,14,1,63,0,1\r\n8503,michael mitchell,michael,mitchell,2013-03-19,Male,1985-05-14,30,25 - 45,African-American,0,2,0,0,1,-1,2013-03-18 11:22:54,2013-03-19 06:38:59,13005331MM10A,2013-03-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-19,Risk of Violence,3,Low,2013-03-19,2013-03-18,2013-03-19,1,0,1109,0,0\r\n8504,stanley jimenez,stanley,jimenez,2013-04-10,Male,1988-08-30,27,25 - 45,Caucasian,0,6,0,0,5,-1,2013-04-09 03:27:18,2013-04-15 07:43:36,13005122CF10A,2013-04-09,,1,F,Possession of Cocaine,1,13043776TC10A,(M2),79,2013-08-20,False Reports,2013-11-07,2013-12-07,,0,,,,,Risk of Recidivism,6,Medium,2013-04-10,Risk of Violence,6,Medium,2013-04-10,2013-04-09,2013-04-15,5,5,132,1,1\r\n8505,rashod wilson,rashod,wilson,2014-07-16,Male,1991-11-28,24,Less than 25,African-American,0,9,0,0,2,-1,2014-07-15 03:10:16,2014-07-17 05:54:46,14010824MM10A,2014-07-12,,4,M,Battery,1,14002248MM20A,(M2),51,2014-07-30,Petit Theft,2014-09-19,2014-09-19,,0,,,,,Risk of Recidivism,9,High,2014-07-16,Risk of Violence,9,High,2014-07-16,2014-07-15,2014-07-17,2,1,14,1,1\r\n8507,james jahmekie,james,jahmekie,2014-03-02,Female,1995-06-01,20,Less than 25,Other,0,4,0,0,1,-1,2014-03-01 08:06:39,2014-03-02 08:12:02,14003538MM10A,2014-03-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-02,Risk of Violence,6,Medium,2014-03-02,2014-03-01,2014-03-02,1,0,761,0,0\r\n8508,anton anderson,anton,anderson,2013-04-10,Male,1986-09-11,29,25 - 45,African-American,0,2,0,0,0,0,2013-04-10 04:22:08,2013-04-11 05:07:05,13006967MM10A,2013-04-10,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,3,Low,2013-04-10,2013-04-10,2013-04-11,0,1,1087,0,0\r\n8511,christopher everhardt,christopher,everhardt,2014-01-07,Male,1991-04-20,24,Less than 25,Caucasian,0,3,0,0,0,-1,2014-01-06 04:11:19,2014-01-08 10:45:03,14000242CF10A,2014-01-06,,1,F,Falsely Impersonating Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-07,Risk of Violence,4,Low,2014-01-07,2014-01-06,2014-01-08,0,1,815,0,0\r\n8512,wayne curry,wayne,curry,2014-06-17,Male,1972-02-14,44,25 - 45,African-American,0,9,0,0,29,296,2015-04-09 09:06:25,2015-04-29 09:38:05,14008324CF10A,2014-06-16,,1,F,Possession of Cocaine,1,15001693MM30A,(M2),,2015-10-12,Petit Theft,,,,0,,,,,Risk of Recidivism,9,High,2014-06-17,Risk of Violence,1,Low,2014-06-17,2015-04-09,2015-04-29,29,0,296,0,1\r\n8514,corinne brainard,corinne,brainard,2013-01-11,Female,1969-12-07,46,Greater than 45,Caucasian,0,1,0,0,1,339,2013-12-16 07:59:35,2014-01-16 09:49:15,12025316MM10A,2012-12-12,,30,M,Battery,1,13017367CF10A,(F2),0,2013-12-16,Aggravated Battery,2013-12-16,2014-01-16,,1,13017367CF10A,(F2),2013-12-16,Aggravated Battery,Risk of Recidivism,1,Low,2013-01-11,Risk of Violence,1,Low,2013-01-11,2013-12-16,2014-01-16,1,0,339,1,1\r\n8515,ghislene muselaire,ghislene,muselaire,2013-12-15,Female,1979-07-24,36,25 - 45,African-American,0,2,0,0,1,-1,2013-12-14 05:59:59,2013-12-15 09:13:09,13017299CF10A,2013-12-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-15,Risk of Violence,1,Low,2013-12-15,2013-12-14,2013-12-15,1,0,838,0,0\r\n8517,jovanni thorpe,jovanni,thorpe,2014-05-22,Male,1992-06-28,23,Less than 25,African-American,0,3,0,0,0,-1,2014-05-21 02:29:44,2014-05-22 01:55:58,14008229MM10A,2014-05-21,,1,M,Battery,1,15003369CF10A,(F2),0,2015-03-12,Robbery W/Firearm,2015-03-12,2015-09-21,,1,15003369CF10A,(F2),2015-03-12,Robbery W/Firearm,Risk of Recidivism,3,Low,2014-05-22,Risk of Violence,4,Low,2014-05-22,2015-03-12,2015-09-21,0,0,294,1,1\r\n8518,andy kercivil,andy,kercivil,2014-07-27,Male,1994-10-28,21,Less than 25,African-American,0,10,0,1,1,0,2014-07-27 02:11:39,2014-07-28 02:07:59,14010233CF10A,2014-07-27,,0,F,Possession of Cocaine,1,16001155TC30A,(M2),68,2015-12-26,Unlaw LicTag/Sticker Attach,2016-03-03,2016-03-09,,0,,,,,Risk of Recidivism,10,High,2014-07-27,Risk of Violence,10,High,2014-07-27,2015-01-15,2015-07-11,1,1,172,0,1\r\n8520,alain williams,alain,williams,2014-04-24,Male,1986-12-12,29,25 - 45,African-American,0,6,0,0,6,-1,2014-04-23 02:44:54,2014-04-24 03:44:57,14005681CF10A,2014-04-23,,1,F,Felony Driving While Lic Suspd,1,14069046TC40A,(M2),,2014-10-05,DWLS Canceled Disqul 1st Off,,,,1,14013798CF10A,(F3),2014-10-12,Battery on Law Enforc Officer,Risk of Recidivism,6,Medium,2014-04-24,Risk of Violence,5,Medium,2014-04-24,2014-10-12,2014-11-13,6,0,164,1,1\r\n8522,jesus mariano,jesus,mariano,2013-02-18,Male,1991-03-12,25,25 - 45,Hispanic,1,9,4,0,10,-1,2013-02-17 11:18:59,2013-02-25 07:40:55,13002453CF10A,2013-02-17,,1,F,Driving While License Revoked,1,13006518CF10A,(F2),0,2013-05-07,Deliver Cocaine,2013-05-07,2013-05-24,,0,,,,,Risk of Recidivism,9,High,2013-02-18,Risk of Violence,9,High,2013-02-18,2013-05-07,2013-05-24,10,7,78,1,1\r\n8523,stephanie velasquez,stephanie,velasquez,2013-03-25,Female,1994-01-11,22,Less than 25,Hispanic,0,4,0,0,1,-4,2013-03-21 09:23:27,2013-03-22 08:46:08,13004122CF10A,2013-03-21,,4,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-25,Risk of Violence,5,Medium,2013-03-25,2013-03-21,2013-03-22,1,0,1103,0,0\r\n8524,jeffrey steele,jeffrey,steele,2014-01-04,Male,1987-01-20,29,25 - 45,African-American,0,5,0,0,4,-1,2014-01-03 08:50:29,2014-01-04 08:41:19,14000153MM10A,2014-01-03,,1,M,Assault,1,16008462TC20A,(M2),,2016-02-10,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-04,Risk of Violence,6,Medium,2014-01-04,2014-01-03,2014-01-04,4,0,767,1,0\r\n8526,daphne robinson,daphne,robinson,2013-09-19,Female,1989-10-14,26,25 - 45,African-American,0,9,0,0,0,-6,2013-09-13 01:13:58,2013-09-19 11:14:04,13012957CF10A,2013-09-13,,6,M,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-19,Risk of Violence,7,Medium,2013-09-19,2013-11-04,2013-11-08,0,0,46,0,0\r\n8527,karen baader,karen,baader,2014-04-23,Female,1965-09-16,50,Greater than 45,Caucasian,0,1,0,0,7,-8,2014-04-15 12:42:16,2014-04-23 10:42:28,14006353MM10A,2014-04-15,,8,M,Criminal Mischief Damage <$200,1,15007479MM10A,(M1),0,2015-07-13,Viol Prot Injunc Repeat Viol,2015-07-13,2015-07-18,,0,,,,,Risk of Recidivism,1,Low,2014-04-23,Risk of Violence,1,Low,2014-04-23,2015-07-13,2015-07-18,7,0,446,1,1\r\n8528,levon mack,levon,mack,2013-11-01,Male,1984-02-04,32,25 - 45,African-American,0,2,0,0,1,-1,2013-10-31 10:30:22,2014-02-07 04:46:55,13015202CF10A,2013-10-31,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-01,Risk of Violence,2,Low,2013-11-01,2013-10-31,2014-02-07,1,98,882,0,0\r\n8530,luis gaitan,luis,gaitan,2014-02-23,Male,1970-10-15,45,Greater than 45,Hispanic,0,1,0,0,0,0,2014-02-23 02:42:34,2014-02-24 12:17:32,14002557CF10A,2014-02-22,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-23,Risk of Violence,1,Low,2014-02-23,2016-01-14,2016-01-25,0,1,690,0,0\r\n8532,jamal hanna,jamal,hanna,2013-10-17,Male,1986-01-17,30,25 - 45,African-American,0,2,0,0,1,-1,2013-10-16 08:02:20,2014-01-08 01:09:58,13014486CF10A,2013-10-16,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-17,Risk of Violence,2,Low,2013-10-17,2013-10-16,2014-01-08,1,83,897,0,0\r\n8533,jude ferdinand,jude,ferdinand,2013-04-20,Male,1990-06-29,25,25 - 45,African-American,0,5,0,0,0,-1,2013-04-19 08:44:54,2013-04-20 07:40:27,13005610CF10A,2013-04-19,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-20,Risk of Violence,4,Low,2013-04-20,2013-04-19,2013-04-20,0,0,1077,0,0\r\n8534,angelina kloman,angelina,kloman,2013-04-13,Female,1971-11-22,44,25 - 45,Caucasian,0,5,0,0,10,-1,2013-04-12 08:11:04,2013-04-18 06:25:20,13006613CF10A,2013-04-12,,1,F,Felony Committing Prostitution,1,14003277MM40A,(M2),98,2014-07-22,Prostitution/Lewd Act Assignation,2014-10-28,2014-11-15,,0,,,,,Risk of Recidivism,5,Medium,2013-04-13,Risk of Violence,2,Low,2013-04-13,2013-04-12,2013-04-18,10,5,465,1,1\r\n8535,glenn murphy,glenn,murphy,2014-12-05,Male,1957-08-20,58,Greater than 45,African-American,0,4,0,0,0,-1,2014-12-04 04:55:20,2014-12-05 09:04:06,14016152CF10A,2014-12-04,,1,F,Grand Theft (Motor Vehicle),1,15012428TC10A,(M2),0,2015-04-22,Driving License Suspended,2015-04-22,2015-07-18,,0,,,,,Risk of Recidivism,4,Low,2014-12-05,Risk of Violence,2,Low,2014-12-05,2015-04-22,2015-07-18,0,0,138,1,1\r\n8539,robertson mondestin,robertson,mondestin,2014-03-04,Male,1991-11-03,24,Less than 25,African-American,0,6,0,0,5,0,2014-03-04 12:52:41,2014-03-04 09:07:07,14003000CF10A,2014-03-03,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-04,Risk of Violence,4,Low,2014-03-04,2015-05-22,2015-05-24,5,0,444,0,0\r\n8543,roberto lagrandeur,roberto,lagrandeur,2014-04-12,Male,1996-04-05,20,Less than 25,African-American,0,10,1,0,1,-1,2014-04-11 05:54:24,2014-04-12 09:20:49,14005085CF10A,2014-04-11,,1,F,Grand Theft in the 3rd Degree,1,14005345CF10A,(F3),0,2014-04-16,Grand Theft in the 3rd Degree,2014-04-16,2014-04-17,,0,,,,,Risk of Recidivism,10,High,2014-04-12,Risk of Violence,8,High,2014-04-12,2014-04-16,2014-04-17,1,0,4,1,1\r\n8544,david lawrence,david,lawrence,2014-01-27,Male,1986-05-14,29,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-26 06:15:41,2014-01-27 01:32:18,14001456MM10A,2014-01-26,,1,M,Battery,1,14008045MM10A,(M1),0,2014-05-17,Viol Pretrial Release Dom Viol,2014-05-17,2014-05-23,,1,14008045MM10A,(M1),2014-05-17,Battery,Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,2,Low,2014-01-27,2014-05-17,2014-05-23,0,0,110,1,1\r\n8546,john rentas,john,rentas,2014-03-02,Male,1994-09-08,21,Less than 25,Caucasian,0,5,0,0,1,-1,2014-03-01 04:36:34,2014-03-02 04:12:07,14004735MM10A,,2014-03-01,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-02,Risk of Violence,4,Low,2014-03-02,2015-04-09,2015-04-10,1,0,403,0,0\r\n8548,christopher bynes,christopher,bynes,2013-08-13,Male,1977-08-07,38,25 - 45,African-American,1,9,2,2,22,-34,2013-07-10 07:07:35,2013-07-11 04:34:30,13002336MM20A,2013-07-29,,15,M,Possess Cannabis/20 Grams Or Less,1,15002318CF10A,(F1),0,2015-02-19,Tampering with a Victim,2015-02-19,2015-04-09,,1,15002318CF10A,(F2),2015-02-19,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2013-08-13,Risk of Violence,9,High,2013-08-13,2013-11-04,2013-11-23,22,0,83,0,1\r\n8550,rolando diaz,rolando,diaz,2013-06-21,Male,1953-09-15,62,Greater than 45,Hispanic,0,2,0,0,5,59,2013-08-19 03:24:25,2013-09-12 10:31:00,11020604CF10A,2011-12-20,,549,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-21,Risk of Violence,2,Low,2013-06-21,2013-08-19,2013-09-12,5,0,59,0,0\r\n8551,constance chapin,constance,chapin,2013-10-25,Female,1969-12-13,46,Greater than 45,Caucasian,0,1,0,0,1,-30,2013-09-25 12:39:53,2013-10-25 10:50:37,06011505CF10A,,2013-09-25,30,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-25,Risk of Violence,1,Low,2013-10-25,2016-01-23,2016-01-24,1,0,820,0,0\r\n8552,ismael sylvain,ismael,sylvain,2013-05-17,Male,1987-03-24,29,25 - 45,African-American,0,10,1,0,17,-1,2013-05-16 01:08:50,2013-05-31 06:08:06,13006986CF10A,2013-05-16,,1,F,Driving While License Revoked,1,14001215CF10A,(F1),,2013-11-08,Sell Cocaine 1000FT School,,,,0,,,,,Risk of Recidivism,10,High,2013-05-17,Risk of Violence,6,Medium,2013-05-17,2013-05-16,2013-05-31,17,14,175,1,1\r\n8554,jermiah johnson,jermiah,johnson,2014-12-30,Male,1985-05-09,30,25 - 45,African-American,0,4,0,0,0,-1,2014-12-29 01:10:58,2014-12-30 07:49:38,14017169CF10A,2014-12-29,,1,F,Possession of Cocaine,1,15008959CF10A,(F3),1,2015-07-12,Poss Pyrrolidinovalerophenone,2015-07-13,2015-07-14,,0,,,,,Risk of Recidivism,4,Low,2014-12-30,Risk of Violence,2,Low,2014-12-30,2015-07-16,2015-09-25,0,0,194,1,1\r\n8558,donovan green,donovan,green,2014-03-15,Male,1960-09-03,55,Greater than 45,African-American,0,1,0,0,8,-1,2014-03-14 01:30:35,2014-03-16 09:21:01,14003621CF10A,2014-03-14,,1,F,Driving While License Revoked,1,15001292CF10A,(F3),0,2015-01-27,Driving While License Revoked,2015-01-27,2015-02-02,,0,,,,,Risk of Recidivism,1,Low,2014-03-15,Risk of Violence,1,Low,2014-03-15,2014-08-25,2014-08-25,8,1,163,0,1\r\n8559,mikhail mccreath,mikhail,mccreath,2013-10-10,Male,1990-11-23,25,25 - 45,African-American,0,9,0,0,10,-82,2013-07-20 09:03:43,2013-10-10 12:07:45,13010182CF10A,2013-07-20,,82,F,Agg Fleeing/Eluding High Speed,1,15003238CF10A,(M2),0,2015-03-10,Reckless Driving,2015-03-10,2015-08-14,,0,,,,,Risk of Recidivism,9,High,2013-10-10,Risk of Violence,7,Medium,2013-10-10,2015-03-10,2015-08-14,10,0,516,1,1\r\n8560,stephen sisson,stephen,sisson,2013-10-15,Male,1968-06-19,47,Greater than 45,Caucasian,0,1,0,0,2,-30,2013-09-15 05:58:40,2013-10-13 02:50:10,13017551MM10A,2013-09-15,,30,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-15,Risk of Violence,1,Low,2013-10-15,2015-01-06,2015-02-24,2,0,448,0,0\r\n8563,jose alvarado,jose,alvarado,2014-03-21,Male,1988-12-24,27,25 - 45,Hispanic,0,2,0,0,1,-41,2014-02-08 09:14:47,2014-02-09 07:46:15,14005083MU10A,2014-02-08,,41,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-21,Risk of Violence,3,Low,2014-03-21,2014-02-08,2014-02-09,1,0,742,0,0\r\n8565,rony nordelus,rony,nordelus,2014-06-16,Male,1986-02-24,30,25 - 45,African-American,0,10,0,0,13,-1,2014-06-15 06:51:59,2015-10-03 06:50:34,15013973CF10A,2014-06-15,,1,F,Felony Battery,1,15014230CF10A,(F3),,2015-10-01,Felony Battery,,,,1,15014230CF10A,(F3),2015-10-01,Felony Battery,Risk of Recidivism,10,High,2014-06-16,Risk of Violence,7,Medium,2014-06-16,2014-06-15,2015-10-03,13,0,472,1,1\r\n8568,kadeem wilson,kadeem,wilson,2013-03-14,Male,1991-09-11,24,Less than 25,African-American,0,5,0,3,4,-1,2013-03-13 05:35:00,2013-03-14 11:54:52,13003676CF10A,2013-03-13,,1,F,Driving While License Revoked,1,13005328CF10A,(M1),1,2013-04-12,Resist/Obstruct W/O Violence,2013-04-13,2013-06-24,,0,,,,,Risk of Recidivism,5,Medium,2013-03-14,Risk of Violence,6,Medium,2013-03-14,2014-12-03,2014-12-03,4,0,29,1,1\r\n8569,ian joseph,ian,joseph,2013-09-04,Male,1967-04-24,48,Greater than 45,Caucasian,0,1,0,0,2,-43,2013-07-23 11:29:22,2013-07-27 09:26:10,13010337CF10A,2013-07-23,,43,F,Possession of Oxycodone,1,14001702MM20A,(M1),77,2014-04-24,Battery,2014-07-10,2014-07-15,,1,14001702MM20A,(M1),2014-04-24,Battery,Risk of Recidivism,1,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2014-12-15,2014-12-16,2,0,232,1,1\r\n8570,nichola perrelli,nichola,perrelli,2014-07-11,Male,1970-12-07,45,Greater than 45,Caucasian,0,6,0,0,0,-1,2014-07-10 12:54:53,2014-07-12 04:54:53,14009463CF10A,2014-07-10,,1,F,Grand Theft in the 3rd Degree,1,14013457MM10A,(M1),0,2014-09-09,Trespass After Warning,2014-09-09,2014-09-30,,0,,,,,Risk of Recidivism,6,Medium,2014-07-11,Risk of Violence,4,Low,2014-07-11,2014-08-23,2014-09-06,0,1,43,0,1\r\n8572,henry joseph,henry,joseph,2013-09-26,Male,1989-12-18,26,25 - 45,African-American,0,5,0,0,2,-26,2013-08-31 05:25:20,2013-09-02 08:15:01,11024059MM10A,2011-10-27,,700,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-26,Risk of Violence,5,Medium,2013-09-26,2013-08-31,2013-09-02,2,0,918,0,0\r\n8574,margery grindstaff,margery,grindstaff,2014-03-18,Female,1973-05-26,42,25 - 45,Caucasian,0,2,0,0,0,-1,2014-03-17 10:13:17,2014-03-18 01:20:01,14010520MU10A,2014-03-17,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-18,Risk of Violence,1,Low,2014-03-18,2014-03-17,2014-03-18,0,0,745,0,0\r\n8575,ryan lennox,ryan,lennox,2014-03-06,Male,1982-03-13,34,25 - 45,African-American,0,2,0,0,1,-1,2014-03-05 08:17:11,2014-03-07 11:03:13,14003797MM10A,2014-03-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-06,Risk of Violence,2,Low,2014-03-06,2014-03-05,2014-03-07,1,1,757,0,0\r\n8576,michael hammonds,michael,hammonds,2013-02-21,Male,1994-06-25,21,Less than 25,African-American,0,4,0,0,0,0,2013-02-21 05:41:14,2013-02-22 01:25:03,13003700MM10A,2013-02-21,,0,M,Resist/Obstruct W/O Violence,1,14012867CF10A,(F3),0,2014-09-23,Uttering a Forged Instrument,2014-09-23,2014-11-25,,0,,,,,Risk of Recidivism,4,Low,2013-02-21,Risk of Violence,6,Medium,2013-02-21,2013-03-04,2013-03-06,0,1,11,0,1\r\n8577,eveline rosenberg,eveline,rosenberg,2013-02-04,Female,1946-09-04,69,Greater than 45,Caucasian,0,1,0,0,2,0,2013-02-04 05:06:23,2013-02-04 12:44:20,13002543MM10A,2013-02-04,,0,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-04,Risk of Violence,1,Low,2013-02-04,2013-02-04,2013-02-04,2,0,1152,0,0\r\n8578,frank fasano,frank,fasano,2013-12-11,Male,1992-02-06,24,Less than 25,Caucasian,0,5,0,1,5,-22,2013-11-19 12:51:43,2013-11-25 10:05:19,13010875CF10A,,2013-11-19,22,F,arrest case no charge,1,15009389MM10A,(M1),0,2015-09-04,Battery,2015-09-04,2015-09-05,,1,15009389MM10A,(M1),2015-09-04,Battery,Risk of Recidivism,5,Medium,2013-12-11,Risk of Violence,6,Medium,2013-12-11,2015-09-04,2015-09-05,5,0,632,1,1\r\n8579,steven henry,steven,henry,2013-02-24,Male,1971-02-15,45,Greater than 45,African-American,0,1,0,0,1,-1,2013-02-23 07:57:28,2013-02-24 06:47:57,13003778MM10A,2013-02-23,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-24,Risk of Violence,3,Low,2013-02-24,2013-02-23,2013-02-24,1,0,1132,0,0\r\n8580,robert ellis,robert,ellis,2013-05-23,Male,1987-09-14,28,25 - 45,African-American,0,9,0,0,3,264,2014-02-11 12:42:55,2014-04-29 05:19:39,13001013MM20A,2013-04-04,,49,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-23,Risk of Violence,7,Medium,2013-05-23,2014-02-11,2014-04-29,3,0,264,0,0\r\n8583,bernard landers,bernard,landers,2014-01-05,Male,1990-08-29,25,25 - 45,African-American,0,8,3,1,8,-1,2014-01-04 11:03:36,2014-01-05 01:49:49,14000167MM10A,2014-01-04,,1,M,Battery,1,15033750TC10A,(M2),1,2015-12-09,Driving License Suspended,2015-12-10,2015-12-10,,0,,,,,Risk of Recidivism,8,High,2014-01-05,Risk of Violence,5,Medium,2014-01-05,2014-09-18,2014-09-19,8,0,256,0,1\r\n8586,sabrina khan,sabrina,khan,2014-02-20,Male,1964-03-25,52,Greater than 45,African-American,0,1,0,0,2,-1,2014-02-19 05:45:59,2014-03-02 01:23:10,14006513MU10A,2014-02-19,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-20,Risk of Violence,1,Low,2014-02-20,2014-03-20,2014-04-08,2,10,28,0,0\r\n8589,uberne gonzalez,uberne,gonzalez,2014-03-03,Male,1986-01-16,30,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-02 12:10:27,2014-03-03 01:31:13,14002940CF10A,2014-03-02,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-03,Risk of Violence,2,Low,2014-03-03,2014-03-02,2014-03-03,0,0,760,0,0\r\n8590,ariane rozo,ariane,rozo,2014-03-24,Female,1989-10-12,26,25 - 45,Hispanic,0,3,0,0,0,0,2014-03-24 02:58:23,2014-03-24 08:45:46,14005079MM10A,2014-03-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-24,Risk of Violence,3,Low,2014-03-24,2014-03-24,2014-03-24,0,0,739,0,0\r\n8593,luckner bastien,luckner,bastien,2014-08-02,Male,1981-10-04,34,25 - 45,Other,0,2,0,0,0,-1,2014-08-01 04:04:25,2014-08-02 09:19:26,14010516CF10A,2014-08-01,,1,F,Felony Batt(Great Bodily Harm),1,15069008TC40A,(M2),,2015-11-25,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-08-02,Risk of Violence,1,Low,2014-08-02,2014-08-01,2014-08-02,0,0,480,1,1\r\n8594,brian genhold,brian,genhold,2013-12-10,Male,1984-02-09,32,25 - 45,Caucasian,0,7,1,0,5,145,2014-05-04 12:07:22,2014-06-10 10:31:22,12010779CF10A,,2013-10-21,50,F,arrest case no charge,1,14007372MM10A,(M1),0,2014-05-04,Battery,2014-05-04,2014-06-10,,1,14007372MM10A,(M1),2014-05-04,Battery,Risk of Recidivism,7,Medium,2013-12-10,Risk of Violence,2,Low,2013-12-10,2014-05-04,2014-06-10,5,0,145,1,1\r\n8595,randy jarnagin,randy,jarnagin,2013-12-11,Male,1968-07-26,47,Greater than 45,Caucasian,0,4,0,0,11,-104,2013-08-29 03:57:46,2013-11-27 02:11:58,13012219CF10A,2013-08-29,,104,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-11,Risk of Violence,3,Low,2013-12-11,2014-03-27,2014-05-22,11,0,106,0,0\r\n8596,eli lockrage,eli,lockrage,2013-02-18,Male,1977-09-22,38,25 - 45,African-American,0,4,0,0,2,0,2013-02-18 02:22:34,2013-02-28 09:53:23,13003448MM10A,2013-02-16,,2,M,Possess Cannabis/20 Grams Or Less,1,13042848TC20A,(M2),,2013-07-06,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-18,Risk of Violence,3,Low,2013-02-18,2013-02-18,2013-02-28,2,10,138,1,1\r\n8597,terrance anderson,terrance,anderson,2013-03-14,Male,1983-07-28,32,25 - 45,African-American,0,10,0,0,2,-58,2013-01-15 12:17:30,2013-02-12 09:57:00,09008167CF10A,,2013-01-15,58,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-03-14,Risk of Violence,7,Medium,2013-03-14,2013-07-19,2013-10-21,2,0,127,0,0\r\n8598,maurice harris,maurice,harris,2013-12-04,Male,1992-12-08,23,Less than 25,African-American,0,7,2,2,4,-1,2013-12-03 08:34:00,2013-12-04 08:03:41,13016727CF10A,2013-12-03,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14013867MM10A,(M1),0,2014-09-17,Trespass After Warning,2014-09-17,2014-09-18,,0,,,,,Risk of Recidivism,7,Medium,2013-12-04,Risk of Violence,8,High,2013-12-04,2014-06-03,2014-06-20,4,0,181,0,1\r\n8600,reynaldo meneses,reynaldo,meneses,2013-10-10,Male,1985-12-14,30,25 - 45,Hispanic,0,1,0,0,0,0,2013-10-10 01:33:46,2013-10-10 08:40:26,13019271MM10A,2013-10-09,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-10,Risk of Violence,1,Low,2013-10-10,2013-10-10,2013-10-10,0,0,904,0,0\r\n8601,ricky tutes,ricky,tutes,2013-05-07,Male,1956-07-29,59,Greater than 45,African-American,0,9,0,0,9,-91,2013-02-05 07:25:52,2013-02-06 02:16:26,13006483CF10A,2013-05-06,,1,F,Felony Petit Theft,1,14001577MM30A,(M2),,2014-09-29,Petit Theft,,,,0,,,,,Risk of Recidivism,9,High,2013-05-07,Risk of Violence,4,Low,2013-05-07,2013-06-06,2014-08-14,9,0,30,0,1\r\n8602,matthew fahey,matthew,fahey,2014-12-22,Male,1991-07-03,24,Less than 25,Caucasian,0,7,0,0,5,-40,2014-11-12 02:54:44,2014-12-19 08:52:55,14015188CF10A,,2014-11-12,40,F,arrest case no charge,1,15010280CF10A,(F3),0,2015-08-10,Possession of Hydromorphone,2015-08-10,2015-11-12,,0,,,,,Risk of Recidivism,7,Medium,2014-12-22,Risk of Violence,4,Low,2014-12-22,2015-06-29,2015-07-08,5,0,189,0,1\r\n8604,nashley adelphon,nashley,adelphon,2013-03-12,Female,1993-10-09,22,Less than 25,African-American,0,6,0,0,0,0,2013-03-12 03:02:14,2013-03-13 08:18:53,13003622CF10A,2013-03-11,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-12,Risk of Violence,7,Medium,2013-03-12,2013-03-12,2013-03-13,0,1,1116,0,0\r\n8605,travoy flores,travoy,flores,2013-10-15,Male,1980-07-09,35,25 - 45,African-American,0,3,0,0,6,-1,2013-10-14 07:50:41,2013-10-15 01:24:28,13008071CF10A,,2013-10-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-15,Risk of Violence,3,Low,2013-10-15,2013-10-14,2013-10-15,6,0,899,0,0\r\n8606,travis russell,travis,russell,2013-09-27,Male,1992-03-25,24,Less than 25,African-American,0,7,0,0,0,0,2013-09-27 03:19:18,2013-09-28 01:33:31,13013588CF10A,2013-09-27,,0,F,Uttering a Forged Instrument,1,13014221CF10A,(F3),0,2013-10-10,Uttering Forged Bills,2013-10-10,2013-12-07,,0,,,,,Risk of Recidivism,7,Medium,2013-09-27,Risk of Violence,7,Medium,2013-09-27,2013-10-10,2013-12-07,0,1,13,1,1\r\n8608,shawn williams,shawn,williams,2013-04-03,Male,1980-09-25,35,25 - 45,African-American,0,6,0,0,1,-1,2013-04-02 05:26:56,2013-06-05 09:30:05,13006367MM10A,2013-04-02,,1,M,Battery,1,15009310CF10A,(F3),0,2015-06-16,Felony Battery,2015-06-16,2015-09-21,,1,15009310CF10A,(F3),2015-06-16,Felony Battery,Risk of Recidivism,6,Medium,2013-04-03,Risk of Violence,5,Medium,2013-04-03,2015-06-16,2015-09-21,1,63,804,1,0\r\n8609,keenan holden,keenan,holden,2013-02-23,Male,1990-12-01,25,25 - 45,African-American,0,6,0,0,2,-1,2013-02-22 09:54:24,2013-02-23 08:54:17,13002763CF10A,2013-02-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-23,Risk of Violence,4,Low,2013-02-23,2013-02-22,2013-02-23,2,0,1133,0,0\r\n8610,william forester,william,forester,2013-07-29,Male,1957-09-14,58,Greater than 45,Caucasian,0,2,0,0,3,-4,2013-07-25 12:57:53,2013-07-25 09:15:58,12003284MO40A,2012-06-29,,395,M,Carry Open/Uncov Bev In Pub,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-07-25,2013-07-25,3,0,977,0,0\r\n8611,almond duncan,almond,duncan,2013-01-20,Male,1988-06-03,27,25 - 45,African-American,0,4,0,0,7,-1,2013-01-19 04:46:04,2013-01-21 07:41:13,13000921CF10A,2013-01-19,,1,F,Driving While License Revoked,1,13012338CF10A,(F3),0,2013-08-31,Driving While License Revoked,2013-08-31,2013-09-01,,0,,,,,Risk of Recidivism,4,Low,2013-01-20,Risk of Violence,3,Low,2013-01-20,2013-08-31,2013-09-01,7,1,223,1,1\r\n8612,christopher grayheart,christopher,grayheart,2013-10-11,Male,1992-01-01,24,Less than 25,African-American,0,9,0,1,6,0,2013-10-11 08:31:44,2013-11-26 07:42:13,13014240CF10A,2013-10-11,,0,F,Resist Officer w/Violence,1,14005132CF10A,(F3),0,2014-04-12,Possession Burglary Tools,2014-04-12,2014-04-24,,0,,,,,Risk of Recidivism,9,High,2013-10-11,Risk of Violence,8,High,2013-10-11,2014-04-12,2014-04-24,6,46,183,1,1\r\n8613,anthony gonzalez,anthony,gonzalez,2013-04-10,Male,1982-08-26,33,25 - 45,Caucasian,0,2,0,0,2,-23,2013-03-18 04:53:59,2013-03-18 06:31:57,13005336MM10A,2013-03-18,,23,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-10,Risk of Violence,2,Low,2013-04-10,2013-03-18,2013-03-18,2,0,1087,0,0\r\n8616,karl ehlen,karl,ehlen,2013-04-08,Male,1972-04-06,44,25 - 45,Caucasian,0,3,0,0,4,-1,2013-04-07 07:17:55,2013-04-08 07:34:18,13005022CF10A,2013-04-07,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-08,Risk of Violence,4,Low,2013-04-08,2013-04-07,2013-04-08,4,0,1089,0,0\r\n8617,cato delay,cato,delay,2013-11-12,Male,1985-09-17,30,25 - 45,African-American,0,5,0,0,3,-1,2013-11-11 06:16:38,2013-11-13 09:55:31,13015685CF10A,2013-11-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-12,Risk of Violence,3,Low,2013-11-12,2013-11-11,2013-11-13,3,1,871,0,0\r\n8618,carmen ortiz,carmen,ortiz,2014-01-04,Female,1976-04-20,39,25 - 45,Hispanic,0,2,0,0,2,0,2014-01-04 09:26:15,2014-01-11 04:40:09,10011278CF10A,,2014-01-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-04,Risk of Violence,1,Low,2014-01-04,2014-01-04,2014-01-11,2,7,818,0,0\r\n8619,michael accetta,michael,accetta,2013-03-30,Male,1988-03-17,28,25 - 45,Caucasian,0,3,0,0,0,-1,2013-03-29 11:03:56,2013-03-30 08:06:57,13004543CF10A,2013-03-29,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-30,Risk of Violence,2,Low,2013-03-30,2013-03-29,2013-03-30,0,0,1098,0,0\r\n8621,ricardo philibert,ricardo,philibert,2013-09-21,Male,1981-07-22,34,25 - 45,African-American,0,2,0,0,1,-1,2013-09-20 07:19:58,2013-09-21 08:53:51,13013281CF10A,2013-09-20,,1,F,Purchase Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-21,Risk of Violence,2,Low,2013-09-21,2013-09-20,2013-09-21,1,0,923,0,0\r\n8622,dwayne schneider,dwayne,schneider,2014-08-29,Male,1989-04-27,26,25 - 45,African-American,0,8,0,0,1,-30,2014-07-30 01:18:15,2014-08-03 10:39:29,13016474CF10A,,2014-07-30,30,F,arrest case no charge,1,14015982CF10A,(F3),0,2014-11-30,Possession of Ethylone,2014-11-30,2015-01-30,,1,15016426CF10A,(F2),2015-12-14,Robbery / No Weapon,Risk of Recidivism,8,High,2014-08-29,Risk of Violence,5,Medium,2014-08-29,2014-10-23,2014-10-31,1,0,55,0,1\r\n8625,ricky lipsey,ricky,lipsey,2014-03-15,Male,1993-02-15,23,Less than 25,African-American,0,2,0,0,0,-1,2014-03-14 01:21:01,2014-03-16 03:52:46,14003626CF10A,2014-03-14,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-15,Risk of Violence,3,Low,2014-03-15,2014-03-14,2014-03-16,0,1,748,0,0\r\n8626,robert porras,robert,porras,2014-11-12,Male,1986-09-04,29,25 - 45,Caucasian,0,8,0,1,11,-1,2014-11-11 02:16:40,2014-12-30 07:24:53,14015131CF10A,2014-11-11,,1,F,Possession of Cocaine,1,15000050CF10A,(F3),0,2015-01-01,Possession Of Heroin,2015-01-01,2015-02-02,,0,,,,,Risk of Recidivism,8,High,2014-11-12,Risk of Violence,6,Medium,2014-11-12,2015-01-01,2015-02-02,11,48,50,1,1\r\n8627,bryon williams,bryon,williams,2013-12-22,Male,1984-08-11,31,25 - 45,African-American,0,4,0,0,0,-1,2013-12-21 10:04:52,2013-12-22 01:15:23,13023542MM10A,2013-12-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-22,Risk of Violence,4,Low,2013-12-22,2013-12-21,2013-12-22,0,0,831,0,0\r\n8629,westgard buting,westgard,buting,2013-09-30,Male,1977-09-06,38,25 - 45,Other,0,1,0,0,1,-1,2013-09-29 09:18:50,2013-09-30 08:38:57,13012760CF10A,,2013-09-29,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-29,2013-09-30,1,0,914,0,0\r\n8630,stacey forbes,stacey,forbes,2013-01-14,Male,1985-06-14,30,25 - 45,African-American,0,8,0,0,14,-1,2013-01-13 04:38:35,2013-03-18 07:21:25,12000670CF10A,,2013-01-14,0,F,arrest case no charge,1,13035481TC10A,(M1),,2013-09-12,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,8,High,2013-01-14,Risk of Violence,3,Low,2013-01-14,2013-01-13,2013-03-18,14,63,241,1,1\r\n8633,shayne sieber,shayne,sieber,2014-06-07,Male,1994-11-22,21,Less than 25,Caucasian,0,4,0,0,2,-1,2014-06-06 11:55:43,2014-08-23 05:14:41,14007872CF10A,2014-06-06,,1,F,Grand Theft in the 3rd Degree,1,15013197MM10A,(M2),,2015-12-22,Disorderly Conduct,,,,0,,,,,Risk of Recidivism,4,Low,2014-06-07,Risk of Violence,6,Medium,2014-06-07,2014-10-14,2014-10-14,2,77,129,0,1\r\n8634,brian bradley,brian,bradley,2013-09-30,Male,1971-05-11,44,25 - 45,African-American,0,1,0,0,0,-1,2013-09-29 07:10:37,2013-09-30 08:52:46,13013664CF10A,2013-09-29,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,1,Low,2013-09-30,2013-09-29,2013-09-30,0,0,914,0,0\r\n8635,clive brown,clive,brown,2013-12-30,Male,1963-06-19,52,Greater than 45,African-American,0,1,0,0,0,0,2013-12-30 05:17:53,2013-12-31 07:54:52,13017973CF10A,2013-12-30,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-30,Risk of Violence,1,Low,2013-12-30,2013-12-30,2013-12-31,0,1,823,0,0\r\n8636,benjamin jean,benjamin,jean,2013-01-04,Male,1985-12-30,30,25 - 45,African-American,0,5,0,0,6,-1,2013-01-03 11:57:32,2013-01-04 01:32:35,13000117CF10A,2013-01-03,,1,F,Grand Theft in the 3rd Degree,1,13008849TC10A,(M2),862,2013-01-24,Driving License Suspended,2015-06-05,2015-06-05,,0,,,,,Risk of Recidivism,5,Medium,2013-01-04,Risk of Violence,3,Low,2013-01-04,2015-06-05,2015-06-05,6,0,20,1,1\r\n8638,mark fletcher,mark,fletcher,2013-08-15,Male,1984-08-02,31,25 - 45,African-American,0,8,0,0,9,0,2013-08-15 04:24:41,2013-08-16 03:24:28,13011466CF10A,2013-08-15,,0,F,Aggravated Battery / Pregnant,1,13022368MM10A,(M1),0,2013-12-01,Resist/Obstruct W/O Violence,2013-12-01,2013-12-02,,1,14011020MM10A,(M1),2014-07-18,Battery,Risk of Recidivism,8,High,2013-08-15,Risk of Violence,6,Medium,2013-08-15,2013-12-01,2013-12-02,9,1,108,1,1\r\n8639,alexis parker,alexis,parker,2013-04-24,Female,1995-01-18,21,Less than 25,African-American,0,6,1,0,2,-12,2013-04-12 02:01:58,2013-04-24 10:40:53,13005322CF10A,2013-04-12,,12,F,Deliver Cannabis,1,15059734TC30A,(M2),,2015-08-31,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-24,Risk of Violence,7,Medium,2013-04-24,2013-04-12,2013-04-24,2,0,859,1,0\r\n8641,lalo munoz,lalo,munoz,2013-08-19,Male,1938-10-11,77,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-08-18 02:09:06,2013-08-21 08:28:16,13015622MM10A,2013-08-17,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-21,1,2,956,0,0\r\n8642,vincent defazio,vincent,defazio,2013-10-18,Male,1955-01-12,61,Greater than 45,Caucasian,0,6,0,0,4,-1,2013-10-17 04:38:42,2014-02-13 04:11:09,13014549CF10A,2013-10-17,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-18,Risk of Violence,5,Medium,2013-10-18,2013-10-17,2014-02-13,4,118,896,0,0\r\n8644,yolanda hoff,yolanda,hoff,2013-11-22,Female,1974-10-01,41,25 - 45,African-American,0,1,0,0,0,-1,2013-11-21 10:10:58,2013-11-22 09:18:22,13021928MM10A,2013-11-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-22,Risk of Violence,1,Low,2013-11-22,2013-11-21,2013-11-22,0,0,861,0,0\r\n8646,nicole shaver,nicole,shaver,2013-11-21,Female,1991-10-09,24,Less than 25,Caucasian,0,5,0,0,0,-1,2013-11-20 06:49:02,2013-11-21 07:48:03,13021845MM10A,2013-11-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-21,Risk of Violence,4,Low,2013-11-21,2013-11-20,2013-11-21,0,0,862,0,0\r\n8647,natalie dixon,natalie,dixon,2013-04-17,Female,1981-11-07,34,25 - 45,African-American,0,3,0,0,5,-1,2013-04-16 01:11:17,2013-04-17 05:45:35,13001202CF10A,,2013-04-16,1,F,arrest case no charge,1,15007079CF10A,(F3),0,2015-05-30,Grand Theft in the 3rd Degree,2015-05-30,2015-05-31,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,3,Low,2013-04-17,2013-12-29,2013-12-30,5,0,256,0,0\r\n8649,jonathon rossi,jonathon,rossi,2013-01-03,Male,1982-01-08,34,25 - 45,Caucasian,0,2,0,0,3,47,2013-02-19 05:08:52,2013-02-27 10:48:27,12014635CF10A,,2012-12-23,11,F,arrest case no charge,1,13002539CF10A,(F3),0,2013-02-19,Possession of Hydromorphone,2013-02-19,2013-02-27,,0,,,,,Risk of Recidivism,2,Low,2013-01-03,Risk of Violence,1,Low,2013-01-03,2013-02-19,2013-02-27,3,0,47,1,1\r\n8650,javier falcon,javier,falcon,2013-02-06,Male,1988-06-12,27,25 - 45,Hispanic,0,3,0,0,1,0,2013-02-06 03:25:28,2013-02-07 03:05:17,13001843CF10A,2013-02-05,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-06,Risk of Violence,3,Low,2013-02-06,2013-10-23,2013-10-24,1,1,259,0,0\r\n8651,shamar owen,shamar,owen,2013-10-25,Male,1990-09-22,25,25 - 45,African-American,0,7,0,2,6,-1,2013-10-24 11:42:55,2013-10-25 08:15:58,13014867CF10A,2013-10-24,,1,M,Criminal Mischief Damage <$200,1,14049897TC20A,(M2),,2014-06-26,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-25,Risk of Violence,5,Medium,2013-10-25,2015-01-06,2015-01-15,6,0,244,1,1\r\n8652,cedric hynes,cedric,hynes,2013-03-05,Male,1985-05-04,30,25 - 45,African-American,0,1,0,0,1,-1,2013-03-04 08:57:46,2013-03-05 06:41:10,13003255CF10A,2013-03-04,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-05,Risk of Violence,2,Low,2013-03-05,2013-03-04,2013-03-05,1,0,1123,0,0\r\n8653,fernando velazquezhernandez,fernando,velazquezhernandez,2013-02-19,Male,1956-05-30,59,Greater than 45,Hispanic,0,1,0,0,0,-4,2013-02-15 11:55:20,2013-02-17 02:16:14,13002383CF10A,2013-02-15,,4,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-19,Risk of Violence,1,Low,2013-02-19,2013-02-15,2013-02-17,0,0,1137,0,0\r\n8655,janet mccarthy,janet,mccarthy,2013-11-08,Male,1960-08-19,55,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-11-07 06:14:28,2013-11-08 09:33:29,13015543CF10A,2013-11-07,,1,F,Grand Theft in the 3rd Degree,1,15003176CF10A,(F3),0,2015-03-09,Battery on Law Enforc Officer,2015-03-09,2015-04-16,,1,15003176CF10A,(F3),2015-03-09,Battery on Law Enforc Officer,Risk of Recidivism,1,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2015-03-09,2015-04-16,1,0,486,1,1\r\n8656,tylicia walker,tylicia,walker,2013-09-03,Female,1993-06-20,22,Less than 25,African-American,0,6,1,0,1,294,2014-06-24 11:36:20,2014-07-25 05:43:00,09017749TC40A,2009-01-24,,1683,M,Reckless Driving,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-03,Risk of Violence,6,Medium,2013-09-03,2014-06-24,2014-07-25,1,0,294,0,0\r\n8657,nathan morris,nathan,morris,2014-11-10,Male,1983-10-03,32,25 - 45,Caucasian,0,6,0,0,0,-1,2014-11-09 06:54:58,2014-11-14 04:55:23,14015052CF10A,2014-11-09,,1,F,Battery on Law Enforc Officer,1,15006389CF10A,(F3),0,2015-05-16,Poss Handcuff Key While IC,2015-05-16,2015-05-17,,0,,,,,Risk of Recidivism,6,Medium,2014-11-10,Risk of Violence,3,Low,2014-11-10,2015-05-16,2015-05-17,0,4,187,1,1\r\n8659,fredrick hough,fredrick,hough,2013-05-27,Male,1962-10-11,53,Greater than 45,African-American,0,2,0,0,5,0,2013-05-27 04:31:38,2013-05-29 04:34:47,13010134MM10A,2013-05-27,,0,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2014-03-12,2014-03-14,5,2,289,0,0\r\n8661,allan cross,allan,cross,2013-01-21,Male,1966-02-13,50,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-01-20 11:08:11,2013-01-21 01:27:06,13001373MM10A,2013-01-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-21,Risk of Violence,2,Low,2013-01-21,2013-01-20,2013-01-21,1,0,1166,0,0\r\n8663,louis simonds,louis,simonds,2013-01-09,Male,1989-09-09,26,25 - 45,Other,0,4,0,0,1,-1,2013-01-08 03:24:21,2013-01-10 10:20:25,13000320CF10A,2013-01-08,,1,F,Pos Cannabis W/Intent Sel/Del,1,13002676CF10A,(M2),0,2013-02-21,Susp Drivers Lic 1st Offense,2013-02-21,2013-03-29,,0,,,,,Risk of Recidivism,4,Low,2013-01-09,Risk of Violence,5,Medium,2013-01-09,2013-02-21,2013-03-29,1,1,43,1,1\r\n8664,michael diaz,michael,diaz,2013-12-31,Male,1995-02-07,21,Less than 25,Hispanic,0,5,0,1,2,-1,2013-12-30 09:08:22,2013-12-31 10:47:09,13017980CF10A,2013-12-30,,1,F,Poss Similitude of Drivers Lic,1,14008723MM10A,(M1),0,2014-06-01,Unlaw Use False Name/Identity,2014-06-01,2014-06-01,,1,14008723MM10A,(M1),2014-06-01,Battery,Risk of Recidivism,5,Medium,2013-12-31,Risk of Violence,5,Medium,2013-12-31,2014-03-11,2014-03-13,2,0,70,0,1\r\n8665,john clark,john,clark,2013-05-13,Male,1979-10-20,36,25 - 45,African-American,0,6,0,0,7,-1,2013-05-12 12:06:48,2013-05-13 07:44:18,13006806CF10A,2013-05-12,,1,F,Felony Battery w/Prior Convict,1,15005775MM10A,(M1),0,2015-05-07,Possess Cannabis/20 Grams Or Less,2015-05-07,2015-05-08,,0,,,,,Risk of Recidivism,6,Medium,2013-05-13,Risk of Violence,3,Low,2013-05-13,2015-05-07,2015-05-08,7,0,724,1,1\r\n8667,bradley demps,bradley,demps,2013-02-20,Male,1980-10-19,35,25 - 45,African-American,0,8,0,0,16,-1,2013-02-19 02:00:32,2013-08-29 07:30:53,13002556CF10A,,2013-02-19,1,F,arrest case no charge,1,16005024TC20A,(M2),,2016-01-31,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2013-02-20,Risk of Violence,6,Medium,2013-02-20,2013-08-29,2014-10-26,16,613,1075,1,1\r\n8668,gina benzing,gina,benzing,2013-12-17,Female,1990-06-21,25,25 - 45,Caucasian,0,3,0,0,0,-1,2013-12-16 06:31:26,2013-12-18 05:45:00,13023316MM10A,2013-12-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-17,Risk of Violence,3,Low,2013-12-17,2013-12-16,2013-12-18,0,1,836,0,0\r\n8670,brigitte moyer,brigitte,moyer,2013-04-24,Female,1985-03-10,31,25 - 45,Caucasian,0,6,0,0,2,0,2013-04-24 02:55:38,2013-08-19 05:41:56,13007958MM10A,2013-04-23,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-24,Risk of Violence,3,Low,2013-04-24,2013-04-24,2013-08-19,2,117,1073,0,0\r\n8672,jessica brown,jessica,brown,2013-09-07,Female,1989-05-24,26,25 - 45,African-American,0,5,0,0,1,-1,2013-09-06 07:37:43,2013-09-08 01:45:38,13012603CF10A,2013-09-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-07,Risk of Violence,4,Low,2013-09-07,2015-01-09,2015-01-24,1,1,489,0,0\r\n8673,jeffrey hopkins,jeffrey,hopkins,2013-12-23,Male,1990-11-19,25,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-22 10:13:14,2013-12-23 01:09:21,13023600MM10A,2013-12-22,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-23,Risk of Violence,3,Low,2013-12-23,2013-12-22,2013-12-23,0,0,830,0,0\r\n8674,jamsly georges,jamsly,georges,2013-11-19,Male,1983-06-01,32,25 - 45,African-American,0,1,0,0,0,0,2013-11-19 03:33:41,2013-11-19 08:58:19,13021760MM10A,2013-11-19,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-19,Risk of Violence,1,Low,2013-11-19,2013-11-19,2013-11-19,0,0,864,0,0\r\n8675,israel torres,israel,torres,2013-03-12,Male,1976-01-27,40,25 - 45,Caucasian,0,3,0,0,5,-1,2013-03-11 11:28:31,2013-03-12 01:07:39,13003586CF10A,2013-03-11,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-03-11,2013-03-12,5,0,1116,0,0\r\n8676,guignard lejean,guignard,lejean,2013-04-05,Male,1980-09-30,35,25 - 45,African-American,0,3,0,0,0,-2,2013-04-03 10:17:52,2013-04-04 07:37:40,13004764CF10A,2013-04-03,,2,F,Poss Oxycodone W/Int/Sell/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-05,Risk of Violence,4,Low,2013-04-05,2013-04-03,2013-04-04,0,0,1092,0,0\r\n8679,bassey abia,bassey,abia,2013-10-02,Male,1988-12-12,27,25 - 45,African-American,0,3,0,0,2,-1,2013-10-01 07:19:17,2013-10-05 01:13:34,13013758CF10A,2013-10-01,,1,F,,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-02,Risk of Violence,2,Low,2013-10-02,2013-10-01,2013-10-05,2,3,912,0,0\r\n8681,william burke,william,burke,2013-04-07,Male,1983-04-15,33,25 - 45,African-American,0,9,0,0,12,-1,2013-04-06 11:24:26,2013-04-09 08:18:48,13004963CF10A,2013-04-06,,1,F,Tampering With Physical Evidence,1,13022999MM10A,(M1),20,2013-10-24,Possess Cannabis/20 Grams Or Less,2013-11-13,2014-01-23,,0,,,,,Risk of Recidivism,9,High,2013-04-07,Risk of Violence,9,High,2013-04-07,2013-04-06,2013-04-09,12,2,200,1,1\r\n8682,huy trinh,huy,trinh,2013-01-11,Male,1980-02-19,36,25 - 45,Asian,0,1,0,0,1,-1,2013-01-10 05:47:36,2013-02-20 01:46:27,13000470CF10A,,2013-01-10,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-11,Risk of Violence,1,Low,2013-01-11,2013-01-10,2013-02-20,1,40,1176,0,0\r\n8683,carlos vasquez,carlos,vasquez,2013-03-01,Male,1985-05-16,30,25 - 45,Caucasian,0,2,0,0,2,-22,2013-02-07 02:03:50,2013-02-07 08:53:31,13001943CF10A,2013-02-06,,23,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-01,Risk of Violence,3,Low,2013-03-01,2013-02-07,2013-02-07,2,0,1127,0,0\r\n8684,nasser saleh,nasser,saleh,2013-04-14,Male,1985-08-25,30,25 - 45,African-American,0,4,0,0,0,0,2013-04-14 12:53:38,2013-04-18 09:20:35,13005337CF10A,2013-04-13,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-14,Risk of Violence,3,Low,2013-04-14,2015-02-13,2015-02-25,0,4,670,0,0\r\n8685,bradley royes,bradley,royes,2013-04-15,Male,1974-12-26,41,25 - 45,African-American,0,8,0,0,19,0,2013-04-15 11:09:49,2013-11-21 11:14:00,13005134CF10A,,2013-04-15,0,F,arrest case no charge,1,15016078CF10A,(F3),,2015-12-15,Grand Theft (Motor Vehicle),,,,0,,,,,Risk of Recidivism,8,High,2013-04-15,Risk of Violence,2,Low,2013-04-15,2015-09-18,2015-09-19,19,220,886,0,0\r\n8686,francesca rousseau,francesca,rousseau,2013-05-28,Female,1994-04-28,21,Less than 25,Caucasian,0,7,0,0,1,-99,2013-02-18 04:02:37,2013-04-24 07:42:56,13003459MM10A,2013-02-18,,99,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-28,Risk of Violence,6,Medium,2013-05-28,2013-02-18,2013-04-24,1,0,1039,0,0\r\n8688,brandy baca,brandy,baca,2013-03-11,Female,1987-04-09,29,25 - 45,Caucasian,0,7,0,0,0,-3,2013-03-08 03:07:49,2013-03-08 08:40:55,13003466CF10A,2013-03-08,,3,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-11,Risk of Violence,3,Low,2013-03-11,2013-03-08,2013-03-08,0,0,1117,0,0\r\n8691,matthew lewandowski,matthew,lewandowski,2013-03-02,Male,1983-05-06,32,25 - 45,Caucasian,0,2,0,0,1,,,,09022719CF10A,2009-12-15,,1173,M,Poss of Vessel w/Altered ID NO,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-02,Risk of Violence,3,Low,2013-03-02,,,1,0,1126,0,0\r\n8694,thomas duffy,thomas,duffy,2013-10-04,Male,1990-12-27,25,25 - 45,Caucasian,0,5,0,0,0,-1,2013-10-03 12:19:47,2013-10-03 08:07:28,13013853CF10A,2013-10-02,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-04,Risk of Violence,3,Low,2013-10-04,2013-10-03,2013-10-03,0,0,910,0,0\r\n8695,nick maniscalso,nick,maniscalso,2013-03-20,Male,1965-12-28,50,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-03-19 09:33:06,2013-03-22 05:52:21,13003974CF10A,2013-03-19,,1,F,Possession Child Pornography,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2013-03-19,2013-03-22,0,2,1108,0,0\r\n8696,alexis palen,alexis,palen,2013-08-07,Male,1981-02-02,35,25 - 45,Caucasian,0,2,0,0,4,-1,2013-08-06 08:24:10,2014-01-23 05:55:11,13011090CF10A,,2013-08-07,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-07,Risk of Violence,1,Low,2013-08-07,2015-01-14,2015-01-23,4,169,525,0,0\r\n8700,damion mckinney,damion,mckinney,2014-06-11,Male,1978-12-28,37,25 - 45,African-American,1,9,0,0,17,0,2014-06-11 02:11:22,2014-06-13 02:03:25,14013815CF10A,2014-06-10,,1,F,Poss Pyrrolidinobutiophenone,1,15002700CF10A,(F3),1,2015-02-26,Poss Pyrrolidinovalerophenone,2015-02-27,2015-07-16,,0,,,,,Risk of Recidivism,9,High,2014-06-11,Risk of Violence,7,Medium,2014-06-11,2014-11-24,2014-11-24,17,2,166,0,1\r\n8701,delroy henry,delroy,henry,2014-01-16,Male,1972-07-24,43,25 - 45,African-American,0,1,0,0,4,-26,2013-12-21 12:37:51,2014-01-16 10:14:43,13017717CF10A,,2013-12-21,26,F,arrest case no charge,1,15003041MM10A,(M1),0,2015-03-13,Battery,2015-03-13,2015-03-13,,1,15003041MM10A,(M1),2015-03-13,Battery,Risk of Recidivism,1,Low,2014-01-16,Risk of Violence,2,Low,2014-01-16,2015-03-13,2015-03-13,4,0,421,0,1\r\n8702,vincent leone,vincent,leone,2013-02-07,Male,1986-12-11,29,25 - 45,Caucasian,0,6,0,0,12,0,2013-02-07 02:34:03,2013-03-18 05:25:27,13002758MM10A,2013-02-07,,0,M,Criminal Mischief>$200<$1000,1,14008350CF10A,(F3),342,2013-10-15,Uttering a Forged Instrument,2014-09-22,2014-09-23,,0,,,,,Risk of Recidivism,6,Medium,2013-02-07,Risk of Violence,4,Low,2013-02-07,2013-02-07,2013-03-18,12,39,250,1,1\r\n8703,anne murray,anne,murray,2013-12-04,Female,1955-02-08,61,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-03 03:18:00,2013-12-04 09:09:14,13016724CF10A,2013-12-03,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-04,Risk of Violence,1,Low,2013-12-04,2013-12-03,2013-12-04,0,0,849,0,0\r\n8705,isaiah hargrett,isaiah,hargrett,2013-09-15,Female,1993-11-19,22,Less than 25,African-American,0,9,0,0,4,0,2013-09-15 03:07:01,2013-09-17 03:55:23,13013013CF10A,2013-09-14,,1,F,Possession of Cocaine,1,14010778MM10A,(M1),0,2014-07-03,Possess Cannabis/20 Grams Or Less,2014-07-03,2014-07-04,,1,15000808MM10A,(M1),2015-01-02,Battery,Risk of Recidivism,9,High,2013-09-15,Risk of Violence,6,Medium,2013-09-15,2014-07-03,2014-07-04,4,2,291,1,1\r\n8706,alonso castillo,alonso,castillo,2013-09-27,Male,1988-10-04,27,25 - 45,Caucasian,0,4,0,0,2,-1,2013-09-26 05:04:38,2013-09-27 04:51:32,13013546CF10A,,2013-09-26,1,F,arrest case no charge,1,14058359TC20A,(M2),,2014-08-21,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-27,Risk of Violence,3,Low,2013-09-27,2013-09-26,2013-09-27,2,0,328,1,1\r\n8707,wesley st jean,wesley,st jean,2013-04-15,Male,1984-09-28,31,25 - 45,African-American,0,10,0,0,0,,,,,,,,M,,1,16007440TC10A,(M2),,2016-03-03,Driving License Suspended,,,,0,,,,,Risk of Recidivism,10,High,2013-04-15,Risk of Violence,4,Low,2013-04-15,,,0,0,1053,1,0\r\n8708,dalton mcgowan,dalton,mcgowan,2014-02-13,Male,1971-12-20,44,25 - 45,African-American,0,9,0,0,12,,,,10006291CF10A,2010-04-09,,1406,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-13,Risk of Violence,4,Low,2014-02-13,2008-10-16,2009-02-01,12,0,778,0,0\r\n8710,tiara ross,tiara,ross,2013-02-06,Female,1982-03-26,34,25 - 45,African-American,0,2,0,0,1,-21,2013-01-16 10:16:43,2013-02-01 05:50:36,12021226MM10A,2012-10-12,,117,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-06,Risk of Violence,1,Low,2013-02-06,2013-01-16,2013-02-01,1,0,1150,0,0\r\n8711,wen chou,wen,chou,2014-03-22,Male,1991-08-14,24,Less than 25,Other,0,6,0,0,0,-1,2014-03-21 10:17:24,2014-03-22 10:10:59,14004046CF10A,2014-03-21,,1,F,Conspiracy Dealing Stolen Prop,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-22,Risk of Violence,4,Low,2014-03-22,2015-10-08,2015-10-15,0,0,565,0,0\r\n8712,cecelia gitta,cecelia,gitta,2013-09-05,Female,1981-06-11,34,25 - 45,Caucasian,0,6,0,0,1,39,2013-10-14 12:54:46,2013-11-09 05:56:57,13000807CF10A,,2013-05-02,126,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-05,Risk of Violence,2,Low,2013-09-05,2013-10-14,2013-11-09,1,0,39,0,0\r\n8715,jasmine sherrell,jasmine,sherrell,2014-01-02,Female,1995-08-12,20,Less than 25,African-American,0,7,0,1,0,-1,2014-01-01 07:41:04,2014-01-02 08:43:28,14000049MM10A,2014-01-01,,1,M,Battery,1,14008977MM10A,(M1),0,2014-06-05,Viol Pretrial Release Dom Viol,2014-06-05,2014-06-11,,1,14008977MM10A,(M1),2014-06-05,Battery,Risk of Recidivism,7,Medium,2014-01-02,Risk of Violence,8,High,2014-01-02,2014-06-05,2014-06-11,0,0,154,1,1\r\n8716,raoul emile,raoul,emile,2014-03-31,Male,1986-01-20,30,25 - 45,African-American,0,1,0,0,0,-1,2014-03-30 05:12:07,2014-03-31 01:48:57,14005464MM10A,2014-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,2,Low,2014-03-31,2014-03-30,2014-03-31,0,0,732,0,0\r\n8717,louveni bell,louveni,bell,2013-05-14,Female,1972-10-15,43,25 - 45,African-American,0,1,0,0,0,-1,2013-05-13 11:41:46,2013-05-14 11:59:00,13009245MM10A,2013-05-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2013-05-13,2013-05-14,0,0,1053,0,0\r\n8719,scott kaplan,scott,kaplan,2014-02-25,Male,1964-11-17,51,Greater than 45,Caucasian,0,1,0,0,4,-1,2014-02-24 03:07:34,2014-02-25 08:07:31,14002632CF10A,2014-02-24,,1,F,Felony Driving While Lic Suspd,1,15019383TC20A,(M2),,2015-03-19,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,1,Low,2014-02-25,2014-02-24,2014-02-25,4,0,387,1,1\r\n8723,tommy ortiz,tommy,ortiz,2013-02-07,Male,1979-01-20,37,25 - 45,Hispanic,0,5,0,0,9,-1,2013-02-06 02:39:48,2013-02-08 06:25:56,13001959CF10A,2013-02-06,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-07,Risk of Violence,3,Low,2013-02-07,2013-11-04,2014-04-30,9,1,270,0,0\r\n8724,maurice major,maurice,major,2014-01-22,Male,1974-01-02,42,25 - 45,African-American,1,9,0,0,7,0,2014-01-22 03:53:08,2014-01-24 03:36:45,14000916CF10A,2014-01-22,,0,F,Possession of Cocaine,1,15003737MO10A,(MO3),0,2015-03-31,Trespass,2015-03-31,2015-05-15,,0,,,,,Risk of Recidivism,9,High,2014-01-22,Risk of Violence,7,Medium,2014-01-22,2014-12-30,2015-01-29,7,2,342,0,1\r\n8726,raisha orellano-barrios,raisha,orellano-barrios,2013-02-23,Female,1987-02-04,29,25 - 45,Hispanic,0,4,0,0,1,-1,2013-02-22 02:14:29,2013-02-23 08:11:06,13002752CF10A,,2013-02-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-23,Risk of Violence,3,Low,2013-02-23,2013-02-22,2013-02-23,1,0,1133,0,0\r\n8727,scott stoner,scott,stoner,2013-08-08,Male,1971-08-06,44,25 - 45,Caucasian,0,1,0,0,4,,,,12018423CF10A,2012-12-17,,234,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-08,Risk of Violence,1,Low,2013-08-08,1996-10-17,1999-05-30,4,0,967,0,0\r\n8728,rose rodriguez,rose,rodriguez,2013-03-25,Female,1992-01-24,24,Less than 25,Caucasian,0,6,0,0,0,0,2013-03-25 01:31:41,2013-03-25 08:43:30,13005836MM10A,2013-03-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-25,Risk of Violence,5,Medium,2013-03-25,2013-03-25,2013-03-25,0,0,1103,0,0\r\n8729,michael lorenz,michael,lorenz,2014-03-26,Male,1980-01-28,36,25 - 45,Caucasian,0,1,0,0,12,-26,2014-02-28 03:37:21,2014-03-13 10:56:28,14002711CF10A,,2014-02-28,26,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-26,Risk of Violence,2,Low,2014-03-26,2014-02-28,2014-03-13,12,0,737,0,0\r\n8731,gregory lugo,gregory,lugo,2014-10-28,Male,1977-01-13,39,25 - 45,Caucasian,0,1,0,0,0,-1,2014-10-27 09:19:54,2014-10-30 04:23:55,14016036CF10A,2014-10-27,,1,F,Felony DUI - Enhanced,1,14015745MM10A,(M1),0,2014-10-30,Battery,2014-10-30,2014-11-08,,1,14015745MM10A,(M1),2014-10-30,Battery,Risk of Recidivism,1,Low,2014-10-28,Risk of Violence,1,Low,2014-10-28,2014-10-30,2014-11-08,0,2,2,1,1\r\n8732,eddie fluker,eddie,fluker,2013-11-20,Male,1983-12-22,32,25 - 45,African-American,0,5,0,0,2,-1,2013-11-19 01:53:21,2013-11-20 08:27:44,13021770MM10A,2013-11-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-20,Risk of Violence,4,Low,2013-11-20,2014-01-30,2014-01-31,2,0,71,0,0\r\n8733,ricardo hylton,ricardo,hylton,2013-09-10,Male,1986-02-18,30,25 - 45,African-American,0,2,0,0,1,-82,2013-06-20 01:20:20,2013-06-21 09:31:10,13008672CF10A,2013-06-19,,83,F,Aggravated Battery (Firearm),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-10,Risk of Violence,2,Low,2013-09-10,2013-06-20,2013-06-21,1,0,934,0,0\r\n8735,donovan aman,donovan,aman,2013-02-09,Male,1977-11-14,38,25 - 45,African-American,0,1,0,0,0,0,2013-02-09 12:08:28,2013-02-09 01:28:57,13002892MM10A,2013-02-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-09,Risk of Violence,1,Low,2013-02-09,2013-02-09,2013-02-09,0,0,1147,0,0\r\n8737,nicole jackson,nicole,jackson,2013-04-04,Female,1988-11-07,27,25 - 45,African-American,0,6,0,0,8,-23,2013-03-12 10:28:38,2013-03-15 11:32:22,13003543CF10A,,2013-03-12,23,F,arrest case no charge,1,15002305MM40A,(M1),,2015-06-02,Resist/Obstruct W/O Violence,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-04,Risk of Violence,4,Low,2013-04-04,2013-10-24,2013-11-06,8,0,203,0,0\r\n8739,dennis laravalasquez,dennis,laravalasquez,2013-09-12,Male,1991-05-19,24,Less than 25,Caucasian,0,3,0,0,2,,,,10004575MM10A,,2010-04-12,1249,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-12,Risk of Violence,4,Low,2013-09-12,,,2,0,932,0,0\r\n8741,nicole oconnor,nicole,oconnor,2013-08-12,Female,1985-05-17,30,25 - 45,Caucasian,0,6,0,0,0,-1,2013-08-11 08:43:01,2013-08-14 05:34:33,13011263CF10A,2013-08-11,,1,F,Grand Theft in the 3rd Degree,1,14012110MM10A,(M1),0,2014-08-11,Possess Cannabis/20 Grams Or Less,2014-08-11,2014-08-15,,0,,,,,Risk of Recidivism,6,Medium,2013-08-12,Risk of Violence,3,Low,2013-08-12,2014-08-11,2014-08-15,0,2,364,1,1\r\n8742,blanche mange,blanche,mange,2013-08-13,Female,1972-06-03,43,25 - 45,Caucasian,0,2,0,0,0,-1,2013-08-12 04:33:06,2013-08-13 10:05:00,13015220MM10A,2013-08-12,,1,M,Battery,1,14073481TC30A,(M2),,2014-08-30,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-13,Risk of Violence,1,Low,2013-08-13,2013-08-12,2013-08-13,0,0,382,1,1\r\n8743,timothy kendrick,timothy,kendrick,2013-01-23,Male,1986-01-22,30,25 - 45,African-American,6,9,0,0,8,-1,2013-01-22 06:49:44,2013-01-23 01:35:06,13001521MM10A,2013-01-22,,1,M,Battery,1,13007930CF10A,(F3),0,2013-06-04,Grand Theft in the 3rd Degree,2013-06-04,2013-06-05,,1,14004515CF10A,(M1),2014-01-06,Battery,Risk of Recidivism,9,High,2013-01-23,Risk of Violence,8,High,2013-01-23,2013-06-04,2013-06-05,8,0,132,1,1\r\n8744,jonathan mckennie,jonathan,mckennie,2013-08-01,Male,1994-01-27,22,Less than 25,African-American,0,7,0,0,2,366,2014-08-02 03:07:56,2015-01-27 07:47:26,12003623CF10A,2012-03-08,,511,F,Pos Cannabis W/Intent Sel/Del,1,14011706MM10A,(M1),0,2014-08-02,Unlaw Use False Name/Identity,2014-08-02,2015-01-27,,0,,,,,Risk of Recidivism,7,Medium,2013-08-01,Risk of Violence,8,High,2013-08-01,2014-08-02,2015-01-27,2,0,366,1,1\r\n8745,jessica lee,jessica,lee,2013-06-03,Female,1989-06-18,26,25 - 45,Caucasian,0,4,0,0,1,-2,2013-06-01 08:03:30,2013-06-02 01:57:09,13010505MM10A,2013-06-01,,2,M,Assault,1,15008940CF10A,(F3),0,2015-07-11,Poss Pyrrolidinovalerophenone,2015-07-11,2015-07-13,,0,,,,,Risk of Recidivism,4,Low,2013-06-03,Risk of Violence,3,Low,2013-06-03,2015-07-11,2015-07-13,1,0,768,1,0\r\n8746,reynaldo rodriguez,reynaldo,rodriguez,2014-01-04,Male,1978-09-11,37,25 - 45,Caucasian,0,4,0,0,3,-1,2014-01-03 11:40:02,2014-02-11 10:50:00,14000144CF10A,2014-01-03,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-04,Risk of Violence,2,Low,2014-01-04,2015-01-05,2015-01-09,3,38,366,0,0\r\n8747,steven penso,steven,penso,2013-11-13,Male,1990-08-05,25,25 - 45,Caucasian,0,9,0,0,5,-1,2013-11-12 09:00:02,2013-11-13 01:00:00,13015716CF10A,2013-11-12,,1,F,Driving While License Revoked,1,14013141CF10A,(M1),0,2014-09-29,Resist/Obstruct W/O Violence,2014-09-29,2015-01-24,,0,,,,,Risk of Recidivism,9,High,2013-11-13,Risk of Violence,7,Medium,2013-11-13,2014-03-23,2014-03-24,5,0,130,0,1\r\n8748,sande accurso,sande,accurso,2014-04-09,Male,1951-02-21,65,Greater than 45,Caucasian,0,3,0,0,1,-1,2014-04-08 01:51:23,2014-04-09 01:10:26,14004894CF10A,2014-04-08,,1,F,Possession Of Heroin,1,14006014CF10A,(F3),0,2014-04-30,Possession of Cocaine,2014-04-30,2014-05-23,,0,,,,,Risk of Recidivism,3,Low,2014-04-09,Risk of Violence,3,Low,2014-04-09,2014-04-30,2014-05-23,1,0,21,1,1\r\n8749,eric dominguez,eric,dominguez,2014-02-12,Male,1964-02-06,52,Greater than 45,Other,0,5,0,0,0,-1,2014-02-11 07:49:32,2014-02-18 09:21:56,14001942CF10A,2014-02-11,,1,F,Possession of Cocaine,1,14014348CF10A,(F3),0,2014-10-24,Possession of Cocaine,2014-10-24,2014-10-25,,0,,,,,Risk of Recidivism,5,Medium,2014-02-12,Risk of Violence,1,Low,2014-02-12,2014-10-24,2014-10-25,0,6,254,1,1\r\n8750,joseph dejesus,joseph,dejesus,2013-07-01,Male,1978-09-17,37,25 - 45,Hispanic,0,6,0,0,9,-52,2013-05-10 10:37:45,2013-06-28 04:09:09,13007020CF10A,,2013-05-15,47,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-01,Risk of Violence,7,Medium,2013-07-01,2013-09-05,2013-09-19,9,0,66,0,0\r\n8752,cody carlson,cody,carlson,2013-05-28,Male,1986-10-25,29,25 - 45,Caucasian,0,1,0,0,1,-1,2013-05-27 09:11:34,2013-05-28 01:48:44,13007560CF10A,2013-05-27,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-28,Risk of Violence,2,Low,2013-05-28,2013-05-27,2013-05-28,1,0,1039,0,0\r\n8754,matthew watkins,matthew,watkins,2013-01-15,Male,1983-12-11,32,25 - 45,Caucasian,0,5,0,0,3,-1,2013-01-14 11:55:12,2013-05-15 11:06:59,10015383CF10A,,2013-01-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-15,Risk of Violence,2,Low,2013-01-15,2014-01-24,2014-02-20,3,120,374,0,0\r\n8755,juan marinero,juan,marinero,2014-10-05,Male,1980-02-23,36,25 - 45,Hispanic,0,1,0,0,0,-1,2014-10-04 07:59:12,2014-10-05 08:08:28,14014610MM10A,2014-10-04,,1,M,Battery,1,14016075MM10A,(M1),0,2014-11-07,Viol Pretrial Release Dom Viol,2014-11-07,2014-11-08,,0,,,,,Risk of Recidivism,1,Low,2014-10-05,Risk of Violence,1,Low,2014-10-05,2014-11-07,2014-11-08,0,0,33,1,1\r\n8756,steven ferguson,steven,ferguson,2014-09-29,Male,1994-12-17,21,Less than 25,African-American,0,9,2,6,8,30,2014-10-29 07:19:44,2015-06-30 07:07:00,13016650CF10A,,2014-02-07,234,F,arrest case no charge,1,14015552CF10A,(F3),,2014-10-01,Crim Use of Personal ID Info,,,,1,14014510CF10A,(F2),2014-10-29,Agg Fleeing/Eluding High Speed,Risk of Recidivism,9,High,2014-09-29,Risk of Violence,5,Medium,2014-09-29,2015-06-30,2020-01-01,8,0,2,1,1\r\n8757,dillon degiovanni,dillon,degiovanni,2013-03-12,Male,1994-09-14,21,Less than 25,Caucasian,0,3,0,0,1,-1,2013-03-11 06:25:15,2013-03-12 12:35:34,13003594CF10A,2013-03-11,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-12,Risk of Violence,6,Medium,2013-03-12,2013-03-11,2013-03-12,1,0,1116,0,0\r\n8758,brian wilson,brian,wilson,2013-04-14,Male,1969-01-03,47,Greater than 45,Caucasian,0,4,0,0,13,0,2013-04-14 03:00:30,2013-06-19 06:52:42,13007194MM10A,2013-04-14,,0,M,Battery,1,13017495MM10A,(M1),0,2013-09-13,Battery,2013-09-13,2013-12-03,,1,13017495MM10A,(M1),2013-09-13,Battery,Risk of Recidivism,4,Low,2013-04-14,Risk of Violence,3,Low,2013-04-14,2013-09-13,2013-12-03,13,66,152,1,1\r\n8759,fatima johnson,fatima,johnson,2014-02-13,Female,1979-04-29,36,25 - 45,African-American,0,2,0,0,4,-13,2014-01-31 07:43:56,2014-02-01 01:57:00,14001411CF10A,,2014-01-31,13,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-13,Risk of Violence,1,Low,2014-02-13,2015-10-05,2015-10-05,4,0,599,0,0\r\n8760,shanice ethridge,shanice,ethridge,2013-01-18,Female,1990-09-06,25,25 - 45,African-American,0,7,0,0,6,24,2013-02-11 12:23:24,2013-02-23 12:34:12,12018762CF10A,2012-12-28,,21,F,Driving While License Revoked,1,13010481CF10A,(M1),0,2013-07-26,Unlaw Use False Name/Identity,2013-07-26,2013-10-03,,0,,,,,Risk of Recidivism,7,Medium,2013-01-18,Risk of Violence,6,Medium,2013-01-18,2013-02-11,2013-02-23,6,0,24,0,1\r\n8761,ramsey sari,ramsey,sari,2014-04-17,Male,1983-11-11,32,25 - 45,Caucasian,0,2,0,0,4,0,2014-04-17 03:02:35,2014-04-18 04:10:58,14006525MM10A,2014-04-17,,0,M,Battery,1,14010971MM10A,(M1),0,2014-07-17,Viol Injunct Domestic Violence,2014-07-17,2014-08-12,,1,14013821CF10A,(F3),2014-09-19,Felony Battery w/Prior Convict,Risk of Recidivism,2,Low,2014-04-17,Risk of Violence,3,Low,2014-04-17,2014-07-17,2014-08-12,4,1,91,1,1\r\n8762,shannon gopher,shannon,gopher,2013-01-25,Male,1972-08-15,43,25 - 45,Caucasian,0,1,0,0,1,-1,2013-01-24 06:36:58,2013-01-25 07:32:50,13001196CF10A,2013-01-24,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-25,Risk of Violence,1,Low,2013-01-25,2013-01-24,2013-01-25,1,0,1162,0,0\r\n8764,steven carey,steven,carey,2013-04-04,Male,1989-01-09,27,25 - 45,African-American,0,6,0,0,2,-1,2013-04-03 04:58:59,2013-08-13 04:48:18,13004785CF10A,2013-04-03,,1,F,Sale/Del Cannabis At/Near Scho,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-04,Risk of Violence,3,Low,2013-04-04,2013-04-03,2013-08-13,2,131,1093,0,0\r\n8765,eric colbert,eric,colbert,2014-07-06,Male,1989-05-20,26,25 - 45,African-American,0,4,0,0,8,-1,2014-07-05 08:35:16,2014-07-31 09:34:44,14010347MM10A,2014-07-05,,1,M,Battery,1,15004489CF10A,(F3),78,2014-08-30,Uttering a Forged Instrument,2014-11-16,2014-11-17,,0,,,,,Risk of Recidivism,4,Low,2014-07-06,Risk of Violence,3,Low,2014-07-06,2014-07-05,2014-07-31,8,25,55,1,1\r\n8768,al durrant,al,durrant,2013-09-12,Male,1994-10-08,21,Less than 25,African-American,0,3,0,0,1,-22,2013-08-21 02:03:31,2013-09-12 11:18:07,13010303CF10A,,2013-08-21,22,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-12,Risk of Violence,5,Medium,2013-09-12,2013-08-21,2013-09-12,1,0,932,0,0\r\n8770,kolson chu,kolson,chu,2013-12-16,Male,1982-03-03,34,25 - 45,Asian,0,2,0,0,0,-1,2013-12-15 08:07:23,2013-12-16 08:32:54,13023224MM10A,2013-12-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2013-12-15,2013-12-16,0,0,837,0,0\r\n8771,ignacio choreno,ignacio,choreno,2014-01-27,Male,1970-02-02,46,Greater than 45,Hispanic,0,1,0,0,1,-2,2014-01-25 04:52:02,2014-01-26 01:43:13,14002844MU10A,2014-01-25,,2,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2014-01-25,2014-01-26,1,0,795,0,0\r\n8773,james scott,james,scott,2013-09-12,Male,1975-09-24,40,25 - 45,African-American,2,6,0,0,23,30,2013-10-12 10:22:16,2013-11-13 08:08:17,13014095MM10A,2013-07-20,,54,M,Possess Cannabis/20 Grams Or Less,1,13014303CF10A,(F2),0,2013-10-12,Aggravated Battery / Pregnant,2013-10-12,2013-11-13,,1,13014303CF10A,(F3),2013-10-12,Aggravated Assault W/Dead Weap,Risk of Recidivism,6,Medium,2013-09-12,Risk of Violence,8,High,2013-09-12,2013-10-12,2013-11-13,23,0,30,1,1\r\n8774,jeremy miller,jeremy,miller,2013-12-15,Male,1977-06-09,38,25 - 45,Caucasian,0,3,0,0,3,0,2013-12-15 01:27:41,2013-12-16 08:33:43,13023210MM10A,2013-12-14,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-15,Risk of Violence,1,Low,2013-12-15,2013-12-15,2013-12-16,3,1,838,0,0\r\n8775,jermaine west,jermaine,west,2013-03-27,Male,1975-01-17,41,25 - 45,African-American,0,9,0,0,7,-1,2013-03-26 04:40:53,2013-05-23 06:25:48,11020159CF10A,,2013-03-26,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-27,Risk of Violence,4,Low,2013-03-27,2013-03-26,2013-05-23,7,57,1101,0,0\r\n8776,michael marold,michael,marold,2013-01-10,Male,1990-05-02,25,25 - 45,Caucasian,0,10,0,0,7,-1,2013-01-09 07:19:58,2013-02-21 11:36:48,13000395CF10A,2013-01-09,,1,F,Burglary Conveyance Armed,1,14008415MM10A,(M1),0,2014-05-26,Resist/Obstruct W/O Violence,2014-05-26,2014-08-07,,0,,,,,Risk of Recidivism,10,High,2013-01-10,Risk of Violence,8,High,2013-01-10,2014-05-26,2014-08-07,7,42,501,1,1\r\n8777,jake scott,jake,scott,2013-12-19,Male,1995-01-29,21,Less than 25,Caucasian,0,4,0,0,1,-11,2013-12-08 09:52:02,2013-12-19 10:29:04,13016966CF10A,2013-12-08,,11,F,Burglary Conveyance Assault/Bat,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-19,Risk of Violence,7,Medium,2013-12-19,2013-12-08,2013-12-19,1,0,834,0,0\r\n8778,eileen dunn,eileen,dunn,2013-11-15,Female,1941-08-07,74,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-14 03:06:45,2013-11-14 07:37:54,13021485MM10A,2013-11-14,,1,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-15,Risk of Violence,1,Low,2013-11-15,2013-11-14,2013-11-14,0,0,868,0,0\r\n8781,oscar alayo,oscar,alayo,2013-12-31,Male,1974-05-06,41,25 - 45,Caucasian,0,4,0,0,5,-1,2013-12-30 08:13:04,2013-12-31 01:42:25,13024004MM10A,2013-12-30,,1,M,Battery,1,14056544TC20A,(M2),,2014-07-23,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-31,Risk of Violence,4,Low,2013-12-31,2013-12-30,2013-12-31,5,0,204,1,1\r\n8783,larry johnson,larry,johnson,2014-05-22,Male,1959-04-14,57,Greater than 45,African-American,0,7,0,0,11,-376,2013-05-11 01:24:32,2014-03-27 10:00:00,13006785CF10A,2013-05-09,,378,F,Strong Armed  Robbery,1,16003161CF10A,(F3),,2016-03-13,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-05-22,Risk of Violence,3,Low,2014-05-22,2013-05-11,2014-03-27,11,0,661,1,1\r\n8785,lisbet martinez,lisbet,martinez,2013-01-24,Female,1988-10-07,27,25 - 45,Hispanic,0,3,0,0,0,0,2013-01-24 01:34:36,2013-01-24 06:22:19,13001701MM10A,2013-01-23,,1,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-24,Risk of Violence,3,Low,2013-01-24,2013-01-24,2013-01-24,0,0,1163,0,0\r\n8786,judge lucas,judge,lucas,2014-01-23,Male,1985-05-29,30,25 - 45,African-American,0,2,1,0,1,-1,2014-01-22 11:51:48,2014-01-24 08:52:16,14000990CF10A,2014-01-22,,1,M,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-23,Risk of Violence,2,Low,2014-01-23,2014-01-22,2014-01-24,1,1,799,0,0\r\n8787,joy kidd,joy,kidd,2013-05-18,Female,1983-01-31,33,25 - 45,Caucasian,0,6,0,0,3,-2,2013-05-16 09:22:15,2013-05-18 06:56:41,13007091CF10A,2013-05-16,,2,F,Possession Of Heroin,1,14015283CF10A,(F3),,2014-02-08,D.U.I. Serious Bodily Injury,,,,1,14015283CF10A,(F3),2014-02-08,D.U.I. Serious Bodily Injury,Risk of Recidivism,6,Medium,2013-05-18,Risk of Violence,2,Low,2013-05-18,2013-05-16,2013-05-18,3,0,266,1,1\r\n8789,alim rahman,alim,rahman,2014-03-27,Male,1991-11-01,24,Less than 25,Caucasian,0,2,0,0,2,0,2014-03-27 03:28:49,2014-03-27 08:33:05,14012123MU10A,2014-03-27,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-27,Risk of Violence,3,Low,2014-03-27,2014-03-27,2014-03-27,2,0,736,0,0\r\n8790,kiet ho,kiet,ho,2013-11-14,Male,1963-11-12,52,Greater than 45,Asian,0,1,0,0,0,-1,2013-11-13 12:48:26,2013-11-14 08:11:15,13015770CF10A,2013-11-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-11-13,2013-11-14,0,0,869,0,0\r\n8791,vicki stokes,vicki,stokes,2013-04-04,Female,1987-03-16,29,25 - 45,Caucasian,0,6,0,0,0,-1,2013-04-03 12:21:25,2013-04-03 01:03:48,13006353MM10A,2013-04-02,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-04,Risk of Violence,3,Low,2013-04-04,2013-04-03,2013-04-03,0,0,1093,0,0\r\n8792,elizabeth edrich,elizabeth,edrich,2014-01-22,Female,1974-03-13,42,25 - 45,Caucasian,0,2,0,0,0,-1,2014-01-21 09:23:22,2014-01-23 04:19:51,14000877CF10A,2014-01-21,,1,F,Poss Contr Subst W/o Prescript,1,15013440CF10A,(F3),178,2015-05-30,Grand Theft in the 3rd Degree,2015-11-24,2015-11-24,,0,,,,,Risk of Recidivism,2,Low,2014-01-22,Risk of Violence,1,Low,2014-01-22,2014-05-05,2014-05-07,0,1,103,0,1\r\n8794,idalia gonzalez,idalia,gonzalez,2013-03-31,Female,1985-12-29,30,25 - 45,Caucasian,0,2,0,1,1,0,2013-03-31 04:29:09,2013-03-31 07:30:43,13004626CF10A,2013-03-31,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-31,Risk of Violence,2,Low,2013-03-31,2013-03-31,2013-03-31,1,0,1097,0,0\r\n8797,aubrey perry,aubrey,perry,2013-08-07,Male,1982-05-01,33,25 - 45,African-American,0,5,0,0,0,-1,2013-08-06 05:28:37,2013-09-20 05:39:05,13011034CF10A,2013-08-06,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-07,Risk of Violence,4,Low,2013-08-07,2013-08-06,2013-09-20,0,44,968,0,0\r\n8798,ailton campos,ailton,campos,2013-12-21,Male,1978-04-17,38,25 - 45,Hispanic,0,1,0,0,1,-1,2013-12-20 07:46:00,2013-12-24 12:11:14,13017573CF10A,2013-12-20,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-21,Risk of Violence,1,Low,2013-12-21,2013-12-20,2013-12-24,1,3,832,0,0\r\n8799,joshua felix,joshua,felix,2014-02-01,Male,1995-02-24,21,Less than 25,African-American,0,6,0,1,2,-1,2014-01-31 12:09:19,2014-02-08 02:22:43,14001421CF10A,2014-01-31,,1,F,Possession of Cocaine,1,14012348MU10A,(M1),0,2014-03-29,Possess Cannabis/20 Grams Or Less,2014-03-29,2014-04-12,,0,,,,,Risk of Recidivism,6,Medium,2014-02-01,Risk of Violence,6,Medium,2014-02-01,2014-03-29,2014-04-12,2,7,56,1,1\r\n8800,angie hupp,angie,hupp,2013-11-04,Female,1975-04-16,41,25 - 45,Caucasian,0,4,0,0,9,2,2013-11-06 11:28:26,2013-11-07 03:31:28,13020483MM10A,2013-10-30,,5,M,Petit Theft,1,13015461CF10A,(F3),0,2013-11-06,False Ownership Info/Pawn Item,2013-11-06,2013-11-07,,0,,,,,Risk of Recidivism,4,Low,2013-11-04,Risk of Violence,1,Low,2013-11-04,2013-11-06,2013-11-07,9,0,2,1,1\r\n8802,shawanna kelly,shawanna,kelly,2013-02-17,Female,1988-03-27,28,25 - 45,African-American,0,8,0,0,5,-1,2013-02-16 04:25:52,2013-02-18 04:28:02,12009386MM10A,,2013-02-16,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-17,Risk of Violence,7,Medium,2013-02-17,2013-02-16,2013-02-18,5,1,1139,0,0\r\n8803,lazaro ruiz,lazaro,ruiz,2013-03-06,Male,1987-12-05,28,25 - 45,Hispanic,0,8,0,0,3,,,,08005705CF10A,,2009-06-10,1365,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-06,Risk of Violence,7,Medium,2013-03-06,2015-07-24,2020-01-01,3,0,870,0,0\r\n8805,lisa orange,lisa,orange,2014-01-13,Female,1963-08-03,52,Greater than 45,African-American,0,1,0,0,3,0,2014-01-13 02:37:51,2014-01-13 07:46:57,14000567CF10A,2014-01-13,,0,F,False 911 Call,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-01-13,2014-01-13,3,0,809,0,0\r\n8807,alex materiale,alex,materiale,2014-03-11,Male,1994-06-04,21,Less than 25,Hispanic,0,8,0,3,1,-25,2014-02-14 11:46:56,2014-02-15 08:32:02,14002133CF10A,2014-02-14,,25,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-11,Risk of Violence,6,Medium,2014-03-11,2014-10-30,2014-11-19,1,0,233,0,0\r\n8809,dominique gonzalez,dominique,gonzalez,2014-01-13,Female,1993-06-17,22,Less than 25,Hispanic,0,5,0,0,1,-1,2014-01-12 05:58:48,2014-01-14 10:17:25,14000529CF10A,,2014-01-12,1,F,arrest case no charge,1,16010377TC40A,(M2),,2016-02-13,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-13,Risk of Violence,5,Medium,2014-01-13,2014-01-12,2014-01-14,1,1,761,1,0\r\n8812,steven vigo,steven,vigo,2013-05-24,Male,1983-10-16,32,25 - 45,Hispanic,0,3,0,0,3,0,2013-05-24 02:14:27,2013-05-24 08:22:34,11016528CF10A,,2013-05-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-24,Risk of Violence,2,Low,2013-05-24,2014-05-17,2014-05-23,3,0,358,0,0\r\n8813,oscar clark,oscar,clark,2014-03-22,Male,1990-06-21,25,25 - 45,African-American,0,2,0,0,0,0,2014-03-22 02:24:16,2014-06-20 08:29:13,14004063CF10A,2014-03-21,,1,F,Corrupt Public Servant,1,15001198CF10A,(M1),0,2015-01-26,Resist/Obstruct W/O Violence,2015-01-26,2015-02-17,,1,15001198CF10A,(F3),2015-01-26,Battery on Law Enforc Officer,Risk of Recidivism,2,Low,2014-03-22,Risk of Violence,3,Low,2014-03-22,2015-01-26,2015-02-17,0,90,310,1,1\r\n8814,norma collins,norma,collins,2013-05-03,Female,1989-03-14,27,25 - 45,African-American,0,3,0,0,0,-1,2013-05-02 09:32:44,2013-05-03 12:53:32,13008544MM10A,2013-05-02,,1,M,Battery,1,16002190MM10A,(M1),0,2016-03-06,Battery,2016-03-06,2016-03-07,,1,16002190MM10A,(M1),2016-03-06,Battery,Risk of Recidivism,3,Low,2013-05-03,Risk of Violence,3,Low,2013-05-03,2016-03-06,2016-03-07,0,0,1038,1,0\r\n8816,yoan miranda,yoan,miranda,2013-11-27,Male,1981-03-14,35,25 - 45,Caucasian,0,2,0,0,0,0,2013-11-27 12:01:59,2013-11-28 02:20:19,13016489CF10A,2013-11-26,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-27,Risk of Violence,2,Low,2013-11-27,2013-11-27,2013-11-28,0,1,856,0,0\r\n8818,tiffany harris,tiffany,harris,2013-09-27,Male,1975-11-10,40,25 - 45,African-American,0,3,0,0,2,-1,2013-09-26 05:51:39,2013-09-27 01:50:53,13018352MM10A,2013-09-26,,1,M,Battery,1,15010505MM10A,(M1),0,2015-10-07,Battery,2015-10-07,2015-10-08,,1,15010505MM10A,(M1),2015-10-07,Battery,Risk of Recidivism,3,Low,2013-09-27,Risk of Violence,3,Low,2013-09-27,2014-03-07,2014-03-08,2,0,161,0,0\r\n8819,carlene dill,carlene,dill,2013-04-17,Female,1986-05-26,29,25 - 45,Other,0,3,0,0,0,-1,2013-04-16 11:04:17,2013-06-03 09:05:35,13005532CF10A,2013-04-16,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-17,Risk of Violence,3,Low,2013-04-17,2013-04-16,2013-06-03,0,47,1080,0,0\r\n8820,teshane jemmott,teshane,jemmott,2014-09-22,Male,1991-05-18,24,Less than 25,African-American,0,9,0,2,2,-1,2014-09-21 03:02:31,2014-10-15 08:42:14,14014006MM10A,2014-09-21,,1,M,Battery,1,15008729MM10A,(M1),0,2015-07-21,Petit Theft $100- $300,2015-07-21,2015-09-28,,1,15009395CF10A,(F2),2015-07-21,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,9,High,2014-09-22,Risk of Violence,7,Medium,2014-09-22,2015-07-21,2015-09-28,2,23,302,1,1\r\n8821,william cesaire,william,cesaire,2013-05-25,Male,1991-07-12,24,Less than 25,African-American,5,10,1,0,10,0,2013-05-25 02:03:09,2013-05-25 07:33:04,13007477CF10A,2013-05-24,,1,F,Possession of Cocaine,1,13008621CF10A,(F3),0,2013-06-18,Grand Theft in the 3rd Degree,2013-06-18,2013-10-29,,1,13008621CF10A,(F7),2013-06-18,Burglary Dwelling Assault/Batt,Risk of Recidivism,10,High,2013-05-25,Risk of Violence,9,High,2013-05-25,2013-06-18,2013-10-29,10,0,24,1,1\r\n8823,derek lerkins,derek,lerkins,2014-12-21,Male,1979-12-10,36,25 - 45,Hispanic,0,10,1,0,26,-1,2014-12-20 08:58:37,2015-04-17 03:54:03,14016843CF10A,2014-12-20,,1,F,Driving While License Revoked,1,15008889CF10A,(F3),,2015-07-10,Grand Theft (Motor Vehicle),,,,0,,,,,Risk of Recidivism,10,High,2014-12-21,Risk of Violence,6,Medium,2014-12-21,2014-12-20,2015-04-17,26,117,201,1,1\r\n8826,kenneth zackery,kenneth,zackery,2013-09-04,Male,1962-01-06,54,Greater than 45,African-American,0,6,0,0,13,,,,12003511CF10A,,2012-11-15,293,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-04,Risk of Violence,1,Low,2013-09-04,2003-11-17,2011-03-23,13,0,940,0,0\r\n8827,joel ortiz,joel,ortiz,2013-04-19,Male,1989-06-29,26,25 - 45,Hispanic,0,3,0,0,5,-1,2013-04-18 07:25:19,2013-04-19 01:04:18,13005582CF10A,2013-04-18,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-19,Risk of Violence,2,Low,2013-04-19,2013-04-18,2013-04-19,5,0,1078,0,0\r\n8828,nicholas franchino,nicholas,franchino,2013-10-28,Male,1965-11-11,50,Greater than 45,Caucasian,0,2,0,0,1,0,2013-10-28 01:20:34,2013-11-06 05:46:21,13015010CF10A,2013-10-28,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-28,Risk of Violence,3,Low,2013-10-28,2013-10-28,2013-11-06,1,9,886,0,0\r\n8830,tevin tolliver,tevin,tolliver,2013-02-15,Male,1994-05-02,21,Less than 25,African-American,0,7,0,0,1,-1,2013-02-14 10:42:43,2013-02-15 10:38:14,13002303CF10A,2013-02-14,,1,F,Grand Theft in the 3rd Degree,1,13005797CF10A,(F3),0,2013-04-23,Grand Theft in the 3rd Degree,2013-04-23,2013-05-31,,0,,,,,Risk of Recidivism,7,Medium,2013-02-15,Risk of Violence,8,High,2013-02-15,2013-04-23,2013-05-31,1,0,67,1,1\r\n8831,josue espinosa,josue,espinosa,2013-02-17,Male,1964-04-20,51,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-02-16 11:00:54,2013-02-17 07:57:14,13003403MM10A,2013-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-17,Risk of Violence,1,Low,2013-02-17,2013-02-16,2013-02-17,0,0,1139,0,0\r\n8832,matthew waller,matthew,waller,2013-02-09,Male,1991-12-03,24,Less than 25,African-American,0,5,0,2,2,-1,2013-02-08 05:47:59,2013-02-09 01:13:33,13002006CF10A,2013-02-08,,1,F,Grand Theft in the 3rd Degree,1,13063596TC40A,(M2),41,2013-07-25,Driving License Suspended,2013-09-04,2013-09-22,,0,,,,,Risk of Recidivism,5,Medium,2013-02-09,Risk of Violence,5,Medium,2013-02-09,2013-06-04,2013-06-11,2,0,115,0,1\r\n8834,rick guerrier,rick,guerrier,2013-11-06,Male,1983-02-12,33,25 - 45,African-American,0,8,2,3,11,-57,2013-09-10 01:16:02,2013-11-06 11:21:21,12004926CF10A,,2013-09-10,57,F,arrest case no charge,1,13023911MM10A,(M1),32,2013-12-28,Resist/Obstruct W/O Violence,2014-01-29,2014-04-08,,0,,,,,Risk of Recidivism,8,High,2013-11-06,Risk of Violence,7,Medium,2013-11-06,2015-10-28,2015-12-02,11,0,52,1,1\r\n8835,matthew moton,matthew,moton,2013-04-17,Male,1986-09-25,29,25 - 45,African-American,0,1,0,0,3,-1,2013-04-16 04:00:42,2013-04-17 10:35:05,13007370MM10A,2013-04-16,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-17,Risk of Violence,2,Low,2013-04-17,2013-04-16,2013-04-17,3,0,1080,0,0\r\n8838,daniella vidal,daniella,vidal,2013-08-11,Female,1991-03-03,25,25 - 45,Caucasian,0,4,0,0,0,0,2013-08-11 04:08:29,2013-08-12 02:12:13,13015174MM10A,2013-08-11,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-11,Risk of Violence,4,Low,2013-08-11,2013-08-11,2013-08-12,0,1,964,0,0\r\n8841,garvin foster,garvin,foster,2014-07-12,Male,1978-02-13,38,25 - 45,African-American,0,3,0,0,0,-1,2014-07-11 12:03:03,2014-07-12 07:39:47,14009529CF10A,2014-07-11,,1,F,Trespass Structure w/Dang Weap,1,14016477MM10A,(M2),0,2014-11-18,Trespass Struct/Conveyance,2014-11-18,2014-12-20,,0,,,,,Risk of Recidivism,3,Low,2014-07-12,Risk of Violence,1,Low,2014-07-12,2014-11-18,2014-12-20,0,0,129,1,1\r\n8842,javier sanchez,javier,sanchez,2013-09-24,Male,1969-05-21,46,Greater than 45,Caucasian,0,3,0,0,1,-1,2013-09-23 12:47:13,2013-10-04 01:57:13,13012268CF10A,,2013-09-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-24,Risk of Violence,3,Low,2013-09-24,2013-09-23,2013-10-04,1,10,920,0,0\r\n8843,hardy galette,hardy,galette,2014-11-24,Male,1982-08-02,33,25 - 45,African-American,0,7,0,2,9,-28,2014-10-27 12:30:23,2014-11-11 02:19:27,14015523MM10A,2014-10-27,,28,M,Battery,1,15002117MM10A,(M2),,2014-12-31,Petit Theft,,,,1,15002117MM10A,(M1),2014-12-31,Battery,Risk of Recidivism,7,Medium,2014-11-24,Risk of Violence,7,Medium,2014-11-24,2015-01-30,2015-05-12,9,0,37,1,1\r\n8844,richard ortiz,richard,ortiz,2013-09-24,Male,1984-07-03,31,25 - 45,Hispanic,0,7,1,0,19,-1,2013-09-23 07:54:43,2013-09-24 07:47:19,13013404CF10A,2013-09-23,,1,F,\"Poss 3,4 MDMA (Ecstasy)\",1,14009209CF10A,(F3),0,2014-07-04,Possession of Cocaine,2014-07-04,2014-07-04,,1,14009209CF10A,(F3),2014-07-04,Battery on Law Enforc Officer,Risk of Recidivism,7,Medium,2013-09-24,Risk of Violence,2,Low,2013-09-24,2014-07-04,2014-07-04,19,0,283,0,1\r\n8845,justin brown,justin,brown,2013-01-04,Male,1994-06-17,21,Less than 25,Other,0,4,0,0,0,-1,2013-01-03 08:19:16,2013-01-07 09:42:38,13000137CF10A,2013-01-03,,1,M,Aggravated Assault w/Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-04,Risk of Violence,6,Medium,2013-01-04,2013-01-03,2013-01-07,0,3,1183,0,0\r\n8846,paul dillon,paul,dillon,2013-02-18,Male,1955-07-07,60,Greater than 45,Other,0,1,0,0,1,-1,2013-02-17 06:28:19,2013-02-18 12:49:59,13003440MM10A,2013-02-17,,1,M,Battery,1,13007321MM10A,(M1),0,2013-04-15,Driving Under The Influence,2013-04-15,2013-04-15,,0,,,,,Risk of Recidivism,1,Low,2013-02-18,Risk of Violence,1,Low,2013-02-18,2013-04-15,2013-04-15,1,0,56,0,1\r\n8847,sherry robinson,sherry,robinson,2014-10-20,Female,1976-11-23,39,25 - 45,African-American,0,5,0,0,3,-1,2014-10-19 05:15:53,2014-10-20 01:49:13,14014106CF10A,2014-10-19,,1,F,Uttering a Forged Instrument,1,15012779CF10A,(F3),0,2015-10-03,Possession of Cocaine,2015-10-03,2015-10-12,,0,,,,,Risk of Recidivism,5,Medium,2014-10-20,Risk of Violence,3,Low,2014-10-20,2015-07-20,2015-07-28,3,0,273,0,1\r\n8849,jermonte lucas,jermonte,lucas,2013-07-19,Male,1993-03-13,23,Less than 25,African-American,0,5,0,0,1,-39,2013-06-10 07:20:02,2013-06-11 06:37:04,13008230CF10A,,2013-07-15,4,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-19,Risk of Violence,5,Medium,2013-07-19,2013-06-10,2013-06-11,1,0,987,0,0\r\n8852,janae washington,janae,washington,2014-10-06,Female,1993-03-07,23,Less than 25,African-American,0,5,0,0,3,-169,2014-04-20 04:23:28,2014-04-21 01:59:43,14006619MM10A,2014-04-20,,169,M,Battery,1,15011289CF10A,(F3),0,2015-09-01,Retail Theft $300 1st Offense,2015-09-01,2015-09-04,,0,,,,,Risk of Recidivism,5,Medium,2014-10-06,Risk of Violence,4,Low,2014-10-06,2015-09-01,2015-09-04,3,0,330,1,1\r\n8854,dalvis martin,dalvis,martin,2013-09-05,Male,1980-12-08,35,25 - 45,African-American,0,4,0,0,4,-1,2013-09-04 01:52:20,2013-09-15 02:36:41,13012486CF10A,,2013-09-04,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-05,Risk of Violence,5,Medium,2013-09-05,2015-06-01,2015-06-20,4,10,634,0,0\r\n8855,scott watson,scott,watson,2014-02-19,Male,1966-07-01,49,Greater than 45,Caucasian,0,2,0,0,12,-1,2014-02-18 05:07:04,2014-02-21 04:17:55,14002303CF10A,2014-02-18,,1,F,Possession Burglary Tools,1,14000627MM30A,(M2),,2014-03-31,Prowling/Loitering,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-19,Risk of Violence,2,Low,2014-02-19,2014-02-18,2014-02-21,12,2,40,1,1\r\n8856,frederick thomas,frederick,thomas,2013-04-01,Male,1990-04-07,26,25 - 45,Other,0,4,0,0,1,-1,2013-03-31 03:47:27,2013-04-01 06:11:22,13006185MM10A,2013-03-31,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-01,Risk of Violence,7,Medium,2013-04-01,2013-03-31,2013-04-01,1,0,1096,0,0\r\n8857,elio rivera,elio,rivera,2013-01-06,Male,1988-05-26,27,25 - 45,Caucasian,0,5,0,0,0,0,2013-01-06 04:31:06,2013-01-08 05:20:57,13000301MM10A,2013-01-06,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-06,Risk of Violence,4,Low,2013-01-06,2013-01-06,2013-01-08,0,2,1181,0,0\r\n8858,samuel mcleod,samuel,mcleod,2014-03-23,Male,1993-09-21,22,Less than 25,African-American,0,6,1,3,2,-1,2014-03-22 11:52:10,2014-03-23 08:29:09,14004062CF10A,2014-03-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-23,Risk of Violence,5,Medium,2014-03-23,2014-03-22,2014-03-23,2,0,740,0,0\r\n8859,adonica mclemore,adonica,mclemore,2014-07-20,Female,1986-08-12,29,25 - 45,African-American,0,4,0,0,0,-1,2014-07-19 05:05:54,2014-07-20 08:08:01,14009867CF10A,2014-07-19,,1,F,Aggravated Battery (Firearm),1,15015131CF10A,(F3),51,2015-10-10,Burglary Conveyance Unoccup,2015-11-30,2015-12-03,,1,15015131CF10A,(M1),2015-10-10,Battery,Risk of Recidivism,4,Low,2014-07-20,Risk of Violence,2,Low,2014-07-20,2015-11-30,2015-12-03,0,0,447,1,1\r\n8861,kenneth hammond,kenneth,hammond,2014-01-12,Male,1984-09-10,31,25 - 45,African-American,0,9,0,0,0,-1,2014-01-11 06:00:49,2014-01-13 02:58:29,14000490CF10A,2014-01-11,,1,M,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-12,Risk of Violence,4,Low,2014-01-12,2014-01-11,2014-01-13,0,1,810,0,0\r\n8863,victor morales,victor,morales,2013-01-02,Male,1984-10-22,31,25 - 45,Hispanic,0,6,0,0,5,0,2013-01-02 02:49:02,2013-02-08 07:30:05,13000067CF10A,2013-01-02,,0,F,Crim Use of Personal ID Info,1,13016228CF10A,(M2),8,2013-11-14,Petit Theft,2013-11-22,2014-03-04,,0,,,,,Risk of Recidivism,6,Medium,2013-01-02,Risk of Violence,6,Medium,2013-01-02,2013-02-26,2013-09-21,5,37,55,0,1\r\n8864,shantelle jordan,shantelle,jordan,2013-04-28,Female,1986-12-19,29,25 - 45,Hispanic,0,3,0,0,0,0,2013-04-28 04:06:52,2013-04-28 06:43:22,13006110CF10A,2013-04-28,,0,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-28,Risk of Violence,3,Low,2013-04-28,2013-04-28,2013-04-28,0,0,1069,0,0\r\n8865,fay mizrachi,fay,mizrachi,2013-04-25,Female,1951-01-16,65,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-24 07:03:33,2013-04-25 01:08:21,13005904CF10A,2013-04-24,,1,F,Fraudulent Use of Credit Card,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-25,Risk of Violence,1,Low,2013-04-25,2013-04-24,2013-04-25,0,0,1072,0,0\r\n8866,margarita gonzalez,margarita,gonzalez,2013-06-06,Female,1981-11-01,34,25 - 45,Hispanic,0,3,0,0,1,-5,2013-06-01 10:35:08,2013-06-05 06:03:38,13010521MM10A,2013-06-01,,5,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-06,Risk of Violence,1,Low,2013-06-06,2013-06-01,2013-06-05,1,0,1030,0,0\r\n8867,michael flores,michael,flores,2013-02-23,Male,1991-11-25,24,Less than 25,Caucasian,0,10,0,2,6,0,2013-02-23 03:17:40,2013-03-02 08:24:16,13002782CF10A,2013-02-23,,0,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-23,Risk of Violence,5,Medium,2013-02-23,2015-10-12,2015-10-12,6,7,961,0,0\r\n8869,roderick penn,roderick,penn,2013-01-26,Male,1969-10-02,46,Greater than 45,African-American,0,2,0,0,0,0,2013-01-26 07:30:18,2013-01-27 08:32:51,13001878MM10A,2013-01-26,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-26,Risk of Violence,1,Low,2013-01-26,2013-01-26,2013-01-27,0,1,1161,0,0\r\n8870,andres perez,andres,perez,2013-08-27,Male,1990-01-06,26,25 - 45,Other,0,2,0,0,3,-41,2013-07-17 01:14:32,2013-08-27 03:55:00,13009969CF10A,2013-07-16,,42,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-27,Risk of Violence,3,Low,2013-08-27,2013-07-17,2013-08-27,3,0,948,0,0\r\n8871,meshach ferguson,meshach,ferguson,2014-01-21,Male,1995-06-10,20,Less than 25,African-American,0,4,0,0,0,0,2014-01-21 12:11:58,2014-01-21 01:27:56,14000852CF10A,2014-01-20,,1,F,Pos Cannabis W/Intent Sel/Del,1,14003299MM20A,(M2),85,2014-10-25,Petit Theft,2015-01-18,2015-01-18,,0,,,,,Risk of Recidivism,4,Low,2014-01-21,Risk of Violence,6,Medium,2014-01-21,2015-01-18,2015-01-18,0,0,277,1,1\r\n8873,rayshawn childs,rayshawn,childs,2014-07-05,Male,1987-03-19,29,25 - 45,African-American,0,10,0,0,16,-1,2014-07-04 02:04:06,2014-08-06 08:47:16,14009204CF10A,2014-07-04,,1,F,Grand Theft (Motor Vehicle),1,14015704CF10A,(F3),1,2014-11-20,Aggrav Stalking After Injunctn,2014-11-21,2014-11-23,,0,,,,,Risk of Recidivism,10,High,2014-07-05,Risk of Violence,9,High,2014-07-05,2014-07-04,2014-08-06,16,32,138,1,1\r\n8876,ceven lewis,ceven,lewis,2013-02-09,Male,1986-04-20,29,25 - 45,African-American,0,3,0,0,7,0,2013-02-09 03:34:10,2013-02-11 09:29:51,13002034CF10A,2013-02-09,,0,F,Burglary Dwelling Occupied,1,15042467TC30A,(M2),,2015-06-09,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-09,Risk of Violence,2,Low,2013-02-09,2014-07-25,2014-07-26,7,2,531,0,0\r\n8877,robin foy,robin,foy,2014-02-04,Female,1960-02-07,56,Greater than 45,Caucasian,0,1,0,0,3,-1,2014-02-03 06:27:36,2014-02-04 01:31:30,14001597CF10A,2014-02-03,,1,F,Unlicensed Telemarketing,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-02-03,2014-02-04,3,0,787,0,0\r\n8879,arrik young,arrik,young,2013-04-07,Male,1994-12-13,21,Less than 25,African-American,0,4,0,0,0,0,2013-04-07 02:50:45,2013-04-08 04:00:00,13004999CF10A,2013-04-06,,1,F,\"Deliver 3,4 Methylenediox\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-07,Risk of Violence,7,Medium,2013-04-07,2013-04-07,2013-04-08,0,1,1090,0,0\r\n8881,anthony strickland,anthony,strickland,2013-01-07,Male,1975-12-12,40,25 - 45,African-American,0,10,0,0,0,0,2013-01-07 02:33:54,2013-01-11 09:36:33,13000278CF10A,2013-01-07,,0,F,Possession of Cocaine,1,13006180MO10A,(MO3),0,2013-03-31,Resisting W/O Violence,2013-03-31,2013-06-14,,1,13006180MO10A,(MO3),2013-03-31,Battery Spouse Or Girlfriend,Risk of Recidivism,10,High,2013-01-07,Risk of Violence,9,High,2013-01-07,2013-03-31,2013-06-14,0,4,83,1,1\r\n8882,peter bonbon,peter,bonbon,2014-02-14,Male,1994-02-11,22,Less than 25,African-American,0,9,0,0,2,-1,2014-02-13 12:25:47,2014-04-09 05:37:42,14002561MM10A,2014-02-13,,1,M,Viol Injunct Domestic Violence,1,14009680MM10A,(M1),0,2014-06-20,Possess Cannabis/20 Grams Or Less,2014-06-20,2014-06-20,,1,15008422MM10A,(M1),2015-08-09,Battery,Risk of Recidivism,9,High,2014-02-14,Risk of Violence,8,High,2014-02-14,2014-06-20,2014-06-20,2,54,126,0,1\r\n8884,christopher freeman,christopher,freeman,2014-01-06,Male,1976-09-08,39,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-05 06:33:24,2014-01-06 12:02:21,14000387MU10A,2014-01-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-01-05,2014-01-06,0,0,816,0,0\r\n8885,celoues cemelus,celoues,cemelus,2013-11-19,Male,1994-01-31,22,Less than 25,African-American,0,8,1,0,1,0,2013-11-19 12:23:13,2013-11-19 08:18:36,13016446CF10A,2013-11-19,,0,F,Battery on Law Enforc Officer,1,15000593CF10A,(F3),0,2014-08-10,Possession of Cocaine,2014-08-10,2015-05-06,,0,,,,,Risk of Recidivism,8,High,2013-11-19,Risk of Violence,10,High,2013-11-19,2014-02-26,2014-05-14,1,0,99,0,1\r\n8887,karen cypress,karen,cypress,2014-06-18,Female,1988-07-26,27,25 - 45,Other,0,6,0,0,5,-2,2014-06-16 11:30:21,2014-06-18 04:29:17,14000830CF10A,,2014-06-17,1,F,arrest case no charge,1,15042764TC40A,(M2),78,2015-07-15,Opert With Susp DL 2nd Offens,2015-10-01,2015-10-06,,0,,,,,Risk of Recidivism,6,Medium,2014-06-18,Risk of Violence,4,Low,2014-06-18,2015-10-01,2015-10-06,5,0,392,1,1\r\n8889,johnny bland,johnny,bland,2014-01-17,Male,1980-04-07,36,25 - 45,Caucasian,0,2,0,0,1,0,2014-01-17 02:33:03,2014-01-17 09:43:27,14000770CF10A,2014-01-17,,0,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-17,Risk of Violence,1,Low,2014-01-17,2014-01-17,2014-01-17,1,0,805,0,0\r\n8890,jonathan cleare,jonathan,cleare,2013-11-23,Male,1985-12-10,30,25 - 45,African-American,0,1,0,0,0,-1,2013-11-22 03:20:19,2013-11-24 02:55:48,13016251CF10A,2013-11-22,,1,F,Computer Pornography,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-23,Risk of Violence,2,Low,2013-11-23,2013-11-22,2013-11-24,0,1,860,0,0\r\n8891,michael hinsch,michael,hinsch,2013-09-24,Male,1959-12-03,56,Greater than 45,Caucasian,0,4,0,0,17,41,2013-11-04 03:43:08,2013-11-27 09:09:54,13010917CF10A,2013-08-02,,53,F,Corrupt Public Servant,1,13020817MM10A,(M1),0,2013-11-04,Battery,2013-11-04,2013-11-27,,1,13020817MM10A,(M1),2013-11-04,Battery,Risk of Recidivism,4,Low,2013-09-24,Risk of Violence,4,Low,2013-09-24,2013-11-04,2013-11-27,17,0,41,1,1\r\n8893,charleton latimore,charleton,latimore,2013-09-15,Male,1979-11-16,36,25 - 45,African-American,0,6,0,0,0,-1,2013-09-14 07:15:24,2013-09-16 03:47:12,13017532MM10A,2013-09-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-15,Risk of Violence,5,Medium,2013-09-15,2013-09-14,2013-09-16,0,1,929,0,0\r\n8894,donathan james,donathan,james,2013-03-11,Male,1977-12-23,38,25 - 45,African-American,0,7,0,0,5,,,,13004867MM10A,2013-03-11,,0,M,Unlaw Use False Name/Identity,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-11,Risk of Violence,7,Medium,2013-03-11,,,5,0,1117,0,0\r\n8897,joseph fallon,joseph,fallon,2013-01-28,Male,1984-02-29,32,25 - 45,African-American,0,1,0,0,0,-1,2013-01-27 06:27:20,2013-01-29 10:59:12,13001335CF10A,2013-01-27,,1,F,Robbery / Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-01-29,0,1,1159,0,0\r\n8899,shamika conyers,shamika,conyers,2014-10-06,Female,1981-09-03,34,25 - 45,African-American,0,9,0,0,5,-1,2014-10-05 11:42:44,2014-10-31 09:09:52,14013408CF10A,2014-10-05,,1,F,Agg Battery Grt/Bod/Harm,1,15003771MM40A,(M1),,2015-09-14,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,9,High,2014-10-06,Risk of Violence,2,Low,2014-10-06,2014-10-05,2014-10-31,5,25,343,1,1\r\n8902,samuel louis,samuel,louis,2013-01-22,Male,1992-07-05,23,Less than 25,Other,0,3,0,0,0,-1,2013-01-21 11:08:31,2013-01-22 02:00:40,13001438MM10A,2013-01-21,,1,M,Possess Cannabis/20 Grams Or Less,1,15008975MM10A,(M2),0,2015-08-25,Interfere With K9/Horses Duties,2015-08-25,2015-08-26,,0,,,,,Risk of Recidivism,3,Low,2013-01-22,Risk of Violence,4,Low,2013-01-22,2015-08-25,2015-08-26,0,0,945,1,0\r\n8905,german garciadiciocco,german,garciadiciocco,2013-08-04,Male,1963-08-01,52,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-03 08:41:11,2013-08-04 08:02:48,13014645MM10A,2013-08-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-04,Risk of Violence,1,Low,2013-08-04,2013-08-03,2013-08-04,0,0,971,0,0\r\n8906,richard kleinhenz,richard,kleinhenz,2013-12-10,Male,1995-08-29,20,Less than 25,Caucasian,0,10,1,1,1,-1,2013-12-09 01:36:50,2013-12-22 01:52:00,13017033CF10A,2013-12-09,,1,F,Poss Tetrahydrocannabinols,1,15043662TC20A,(M2),,2015-07-24,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,10,High,2013-12-10,Risk of Violence,10,High,2013-12-10,2014-01-10,2014-01-14,1,12,31,0,1\r\n8908,leverdieu jasmin,leverdieu,jasmin,2013-12-01,Male,1977-07-11,38,25 - 45,African-American,0,4,0,0,5,-1,2013-11-30 11:15:26,2013-12-06 02:02:27,13022342MM10A,2013-11-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-01,Risk of Violence,2,Low,2013-12-01,2013-11-30,2013-12-06,5,5,852,0,0\r\n8909,irangel arocho,irangel,arocho,2013-02-13,Male,1969-10-09,46,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-13 01:58:51,2013-02-13 07:54:38,13003133MM10A,2013-02-13,,0,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2013-02-13,2013-02-13,0,0,1143,0,0\r\n8910,dante thomas,dante,thomas,2014-11-02,Male,1988-09-04,27,25 - 45,African-American,0,4,0,0,0,-1,2014-11-01 09:14:39,2014-11-10 09:14:59,14014678CF10A,2014-11-01,,1,F,Uttering a Forged Instrument,1,14015161CF10A,(F3),,2014-11-07,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,4,Low,2014-11-02,Risk of Violence,4,Low,2014-11-02,2014-11-01,2014-11-10,0,0,5,1,1\r\n8914,kesneil johnson,kesneil,johnson,2014-11-05,Male,1995-11-15,20,Less than 25,African-American,0,3,0,0,2,-17,2014-10-19 08:57:11,2014-11-04 09:23:44,14014123CF10A,2014-10-19,,17,F,Aggravated Assault W/Dead Weap,1,15011136CF10A,(F3),0,2015-08-28,Felony Petit Theft,2015-08-28,2015-09-17,,1,15011136CF10A,(M1),2015-08-28,Battery,Risk of Recidivism,3,Low,2014-11-05,Risk of Violence,5,Medium,2014-11-05,2014-12-07,2014-12-24,2,0,32,0,1\r\n8916,larhonda mcmillan,larhonda,mcmillan,2013-09-11,Female,1964-10-04,51,Greater than 45,African-American,0,1,0,0,1,,,,12024026MM10A,2012-11-24,,291,M,DUI- Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-11,Risk of Violence,1,Low,2013-09-11,,,1,0,933,0,0\r\n8918,joanna korn,joanna,korn,2014-04-15,Female,1986-11-28,29,25 - 45,Caucasian,0,2,0,0,1,-6,2014-04-09 01:12:29,2014-04-10 01:16:55,14004944CF10A,2014-04-08,,7,F,Burglary Conveyance Unoccup,1,14000997MM30A,(M2),157,2014-06-13,Petit Theft,2014-11-17,2014-11-18,,0,,,,,Risk of Recidivism,2,Low,2014-04-15,Risk of Violence,2,Low,2014-04-15,2015-07-10,2015-07-16,1,0,59,1,1\r\n8920,deana jacquely,deana,jacquely,2013-09-05,Female,1980-10-25,35,25 - 45,African-American,0,2,0,0,7,-1,2013-09-04 03:10:30,2013-09-06 04:06:17,13012515CF10A,2013-09-04,,1,F,Driving While License Revoked,1,13044356TC10A,(M2),0,2013-11-11,Operating W/O Valid License,2013-11-11,2013-11-12,,0,,,,,Risk of Recidivism,2,Low,2013-09-05,Risk of Violence,1,Low,2013-09-05,2013-11-11,2013-11-12,7,1,67,1,1\r\n8921,herbert conley,herbert,conley,2014-08-10,Male,1979-02-20,37,25 - 45,Caucasian,0,1,0,0,1,-1,2014-08-09 03:33:07,2014-08-10 09:01:00,14012047MM10A,2014-08-09,,1,M,Battery,1,15012234TC40A,(M2),,2015-02-12,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,1,Low,2014-08-10,Risk of Violence,1,Low,2014-08-10,2014-08-09,2014-08-10,1,0,186,1,1\r\n8922,lawrence wanschek,lawrence,wanschek,2013-05-26,Male,1952-12-24,63,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-25 11:32:19,2013-05-26 08:33:03,13007476CF10A,2013-05-25,,1,F,Criminal Mischief,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-26,Risk of Violence,1,Low,2013-05-26,2013-05-25,2013-05-26,0,0,1041,0,0\r\n8923,jahmal parker,jahmal,parker,2013-05-14,Male,1988-12-01,27,25 - 45,African-American,0,6,0,0,2,,,,12014001CF10A,2012-09-22,,234,F,Robbery / Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-14,Risk of Violence,4,Low,2013-05-14,,,2,0,1053,0,0\r\n8924,freddie davis,freddie,davis,2014-08-26,Male,1988-06-02,27,25 - 45,African-American,0,4,0,0,1,-1,2014-08-25 10:18:43,2014-08-26 08:44:24,14011603CF10A,2014-08-25,,1,F,Aggravated Battery / Pregnant,1,15007140CF10A,(F3),0,2015-06-01,Stalking (Aggravated),2015-06-01,2015-07-03,,1,15007140CF10A,(F3),2015-06-01,Agg Assault W/int Com Fel Dome,Risk of Recidivism,4,Low,2014-08-26,Risk of Violence,5,Medium,2014-08-26,2015-02-11,2015-02-12,1,0,169,0,1\r\n8925,brunsweck jeanpierre,brunsweck,jeanpierre,2014-01-29,Male,1989-01-07,27,25 - 45,African-American,0,5,0,0,0,-1,2014-01-28 01:58:14,2014-01-31 08:36:08,14001241CF10A,2014-01-28,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-29,Risk of Violence,4,Low,2014-01-29,2016-03-16,2016-03-23,0,2,777,0,0\r\n8926,kevon williams,kevon,williams,2013-01-14,Male,1991-08-27,24,Less than 25,African-American,0,6,0,0,2,0,2013-01-14 04:26:32,2013-01-14 08:35:41,13000880MM10A,2013-01-14,,0,M,Possess Cannabis/20 Grams Or Less,1,13001102CF10A,(F2),0,2013-01-23,Poss Cocaine/Intent To Del/Sel,2013-01-23,2013-10-26,,0,,,,,Risk of Recidivism,6,Medium,2013-01-14,Risk of Violence,5,Medium,2013-01-14,2013-01-23,2013-10-26,2,0,9,1,1\r\n8929,eugenio perez-cuyuch,eugenio,perez-cuyuch,2013-12-10,Male,1986-02-23,30,25 - 45,Hispanic,0,2,0,0,1,0,2013-12-10 01:59:40,2013-12-10 01:29:40,13017070CF10A,2013-12-09,,1,F,Driving While License Revoked,1,14005893CF10A,(M2),0,2014-04-28,Expired DL More Than 6 Months,2014-04-28,2014-04-29,,0,,,,,Risk of Recidivism,2,Low,2013-12-10,Risk of Violence,2,Low,2013-12-10,2014-04-28,2014-04-29,1,0,139,1,1\r\n8930,courtney mallory,courtney,mallory,2013-02-06,Male,1984-03-23,32,25 - 45,African-American,0,8,1,0,13,680,2014-12-18 03:38:06,2014-12-18 12:53:57,11027500MM10A,2011-11-13,,451,M,Criminal Mischief>$200<$1000,1,14050829TC40A,(M2),159,2014-07-12,Driving License Suspended,2014-12-18,2014-12-18,,0,,,,,Risk of Recidivism,8,High,2013-02-06,Risk of Violence,9,High,2013-02-06,2015-05-27,2015-05-28,13,0,521,1,1\r\n8933,sean foley,sean,foley,2013-05-20,Male,1991-02-22,25,25 - 45,Caucasian,0,10,0,0,4,0,2013-05-20 03:24:29,2013-06-22 05:44:52,13007187CF10A,2013-05-20,,0,F,Grand Theft in the 3rd Degree,1,13021881MM10A,(M1),,2013-07-16,Petit Theft,,,,0,,,,,Risk of Recidivism,10,High,2013-05-20,Risk of Violence,9,High,2013-05-20,2013-05-20,2013-06-22,4,33,57,1,1\r\n8935,jereme sheppard,jereme,sheppard,2013-11-26,Male,1991-05-22,24,Less than 25,African-American,2,9,1,0,10,-251,2013-03-20 10:47:45,2013-03-21 07:11:57,13011948TC10A,2013-03-20,,251,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-26,Risk of Violence,5,Medium,2013-11-26,2013-03-20,2013-03-21,10,0,857,0,0\r\n8936,carlos eady,carlos,eady,2013-09-07,Male,1988-12-30,27,25 - 45,African-American,0,1,0,0,0,0,2013-09-07 01:01:09,2013-09-08 04:02:48,13017038MM10A,2013-09-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-07,Risk of Violence,2,Low,2013-09-07,2015-01-09,2015-03-15,0,1,489,0,0\r\n8938,rabecca davis,rabecca,davis,2014-01-13,Female,1967-05-11,48,Greater than 45,African-American,0,5,0,0,0,-1,2014-01-12 10:49:59,2014-01-22 08:49:33,14000573MM10A,2014-01-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-13,Risk of Violence,3,Low,2014-01-13,2014-01-12,2014-01-22,0,9,809,0,0\r\n8939,iyana llanos,iyana,llanos,2014-01-27,Female,1990-03-06,26,25 - 45,African-American,0,4,0,0,1,-23,2014-01-04 11:01:26,2014-01-05 04:59:52,14000189MM10A,2014-01-04,,23,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-27,Risk of Violence,5,Medium,2014-01-27,2014-01-04,2014-01-05,1,0,795,0,0\r\n8940,samir soussi,samir,soussi,2014-01-31,Male,1957-07-10,58,Greater than 45,Other,0,1,0,0,0,0,2014-01-31 01:07:44,2014-01-31 08:14:11,14001354CF10A,2014-01-30,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-31,Risk of Violence,1,Low,2014-01-31,2014-01-31,2014-01-31,0,0,791,0,0\r\n8941,andrew levesen,andrew,levesen,2013-05-01,Male,1993-03-04,23,Less than 25,Caucasian,0,5,0,2,1,-20,2013-04-11 02:10:37,2013-04-30 07:29:15,13005239CF10A,2013-04-11,,20,F,Burglary Conveyance Unoccup,1,13011020CF10A,(F3),0,2013-08-06,Deliver Cannabis,2013-08-06,2013-10-14,,0,,,,,Risk of Recidivism,5,Medium,2013-05-01,Risk of Violence,6,Medium,2013-05-01,2013-08-06,2013-10-14,1,0,97,1,1\r\n8942,kevin sisson,kevin,sisson,2014-05-05,Male,1994-01-03,22,Less than 25,Caucasian,0,4,1,1,3,0,2014-05-05 01:12:47,2014-05-05 07:50:14,14007419MM10A,2014-05-04,,1,M,Battery,1,16000189CF10A,(F3),62,2015-11-04,Crim Use of Personal ID Info,2016-01-05,2016-01-05,,0,,,,,Risk of Recidivism,4,Low,2014-05-05,Risk of Violence,5,Medium,2014-05-05,2016-01-05,2016-01-05,3,0,548,1,1\r\n8943,patricia younger,patricia,younger,2013-10-07,Female,1964-05-13,51,Greater than 45,African-American,0,1,0,0,4,-60,2013-08-08 08:23:20,2013-10-07 11:12:43,08014336CF10A,,2013-08-08,60,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-08-08,2013-10-07,4,0,907,0,0\r\n8944,alens joseph,alens,joseph,2013-03-20,Male,1974-05-19,41,25 - 45,African-American,0,1,0,0,0,-1,2013-03-19 11:12:30,2013-03-23 01:04:00,13003985CF10A,,2013-03-19,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-20,Risk of Violence,1,Low,2013-03-20,2015-10-14,2015-10-20,0,3,938,0,0\r\n8945,ronald smith,ronald,smith,2013-01-15,Male,1994-11-03,21,Less than 25,African-American,0,7,0,0,0,-1,2013-01-14 03:40:11,2013-01-15 01:09:24,13000643CF10A,2013-01-14,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,7,Medium,2013-01-15,2013-01-14,2013-01-15,0,0,1172,0,0\r\n8946,kenson jeanphilippe,kenson,jeanphilippe,2013-12-22,Male,1983-07-12,32,25 - 45,African-American,0,7,0,0,1,,,,12005060MM10A,2012-03-10,,652,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-12-22,Risk of Violence,9,High,2013-12-22,,,1,0,831,0,0\r\n8948,mikemsonn michaud,mikemsonn,michaud,2013-04-26,Male,1989-08-03,26,25 - 45,Other,0,2,0,0,0,-1,2013-04-25 01:57:38,2013-04-26 07:29:04,13008016MM10A,2013-04-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-26,Risk of Violence,3,Low,2013-04-26,2013-04-25,2013-04-26,0,0,1071,0,0\r\n8949,sunil jagpal,sunil,jagpal,2013-01-27,Female,1977-01-20,39,25 - 45,African-American,0,6,0,0,3,-1,2013-01-26 05:18:10,2013-01-28 06:53:55,13003859TC10A,2013-01-26,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-27,Risk of Violence,2,Low,2013-01-27,2014-07-22,2014-08-06,3,1,541,0,0\r\n8950,blessing egbarin,blessing,egbarin,2014-02-19,Female,1967-04-20,48,Greater than 45,Other,0,1,0,0,0,,,,14002819MM10A,2014-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-19,Risk of Violence,1,Low,2014-02-19,,,0,0,772,0,0\r\n8954,trevor grosholz,trevor,grosholz,2013-12-31,Male,1969-12-30,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-30 11:43:47,2013-12-31 01:41:52,13023993MM10A,2013-12-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-31,Risk of Violence,1,Low,2013-12-31,2013-12-30,2013-12-31,0,0,822,0,0\r\n8955,emilio perez,emilio,perez,2014-02-20,Male,1959-12-26,56,Greater than 45,Hispanic,0,8,0,0,2,,,,11067674TC40A,2011-09-30,,874,M,Opert With Susp DL 2nd Offens,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-20,Risk of Violence,5,Medium,2014-02-20,2007-11-21,2008-09-06,2,0,771,0,0\r\n8957,jaylan severin,jaylan,severin,2014-09-30,Male,1993-06-03,22,Less than 25,African-American,0,7,0,0,1,112,2015-01-20 07:15:44,2015-01-21 08:02:43,14012270MO10A,2014-08-08,,53,M,Poss Of Controlled Substance,1,15000891CF10A,(F3),0,2015-01-20,Possession of Cocaine,2015-01-20,2015-01-21,,0,,,,,Risk of Recidivism,7,Medium,2014-09-30,Risk of Violence,4,Low,2014-09-30,2015-01-20,2015-01-21,1,0,112,1,1\r\n8959,anton porter,anton,porter,2013-12-17,Male,1982-11-05,33,25 - 45,Other,0,8,1,0,7,-1,2013-12-16 02:37:00,2014-04-11 03:13:00,13017382CF10A,2013-12-16,,1,F,Trespass Property w/Dang Weap,1,15015388CF10A,(F3),143,2015-11-03,Felony Battery (Dom Strang),2016-03-25,2016-03-26,,1,15015388CF10A,(F3),2015-11-03,Felony Battery (Dom Strang),Risk of Recidivism,8,High,2013-12-17,Risk of Violence,3,Low,2013-12-17,2013-12-16,2014-04-11,7,115,686,1,1\r\n8960,dominic zackery,dominic,zackery,2013-03-15,Male,1979-09-12,36,25 - 45,African-American,0,4,0,0,2,-1,2013-03-14 04:27:17,2013-04-30 07:29:24,13001483CF10A,,2013-03-15,0,F,arrest case no charge,1,13012276CF10A,(F3),0,2013-08-30,Driving While License Revoked,2013-08-30,2013-08-31,,0,,,,,Risk of Recidivism,4,Low,2013-03-15,Risk of Violence,1,Low,2013-03-15,2013-08-30,2013-08-31,2,46,168,1,1\r\n8961,manuel baker,manuel,baker,2014-07-01,Male,1996-02-11,20,Less than 25,Native American,0,9,1,0,1,-5,2014-06-26 10:46:59,2014-07-01 11:20:41,14005315CF10A,,2014-06-26,5,F,arrest case no charge,1,15000912CF10A,(M1),1,2015-01-21,Resist/Obstruct W/O Violence,2015-01-22,2015-05-07,,1,15000912CF10A,(F3),2015-01-21,Battery on Law Enforc Officer,Risk of Recidivism,9,High,2014-07-01,Risk of Violence,9,High,2014-07-01,2015-01-22,2015-05-07,1,0,204,1,1\r\n8962,randy fernandez,randy,fernandez,2014-01-05,Male,1983-11-07,32,25 - 45,Caucasian,0,3,0,0,0,-1,2014-01-04 12:57:21,2014-01-05 02:30:43,14000175MM10A,2014-01-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-05,Risk of Violence,3,Low,2014-01-05,2014-01-04,2014-01-05,0,0,817,0,0\r\n8964,dexter wilcox,dexter,wilcox,2014-03-23,Male,1977-11-29,38,25 - 45,African-American,0,4,0,0,17,-1,2014-03-22 05:44:03,2014-03-23 09:10:59,14004996MM10A,2014-03-22,,1,M,Battery,1,15014792CF10A,(F1),0,2015-11-14,Trafficking In Cocaine 200-400,2015-11-14,2015-11-15,,0,,,,,Risk of Recidivism,4,Low,2014-03-23,Risk of Violence,1,Low,2014-03-23,2015-11-14,2015-11-15,17,0,601,1,1\r\n8967,silvio lopez,silvio,lopez,2013-06-03,Male,1951-11-10,64,Greater than 45,Hispanic,0,1,0,0,1,-2,2013-06-01 10:15:46,2013-06-02 08:24:11,13010506MM10A,2013-06-01,,2,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-03,Risk of Violence,1,Low,2013-06-03,2013-06-01,2013-06-02,1,0,1033,0,0\r\n8969,jhemel west,jhemel,west,2014-09-15,Male,1993-07-16,22,Less than 25,African-American,0,5,0,0,1,-1,2014-09-14 08:51:02,2014-09-19 08:55:55,14012484CF10A,2014-09-14,,1,F,Burglary Conveyance Unoccup,1,15012080CF10A,(M1),0,2015-09-17,Petit Theft $100- $300,2015-09-17,2015-10-27,,0,,,,,Risk of Recidivism,5,Medium,2014-09-15,Risk of Violence,5,Medium,2014-09-15,2015-09-17,2015-10-27,1,4,367,1,1\r\n8970,frederick vetensky,frederick,vetensky,2014-09-22,Male,1947-02-23,69,Greater than 45,Caucasian,0,1,0,0,0,-7,2014-09-15 10:08:39,2014-09-18 04:15:00,14033314MU10A,2014-09-15,,7,M,Driving Under The Influence,1,15011157TC10A,(M1),0,2015-04-08,Opert With Susp DL 2nd Offens,2015-04-08,2015-04-10,,0,,,,,Risk of Recidivism,1,Low,2014-09-22,Risk of Violence,1,Low,2014-09-22,2015-04-08,2015-04-10,0,0,198,1,1\r\n8971,fabensky michel,fabensky,michel,2014-03-03,Male,1990-01-03,26,25 - 45,African-American,0,4,0,0,2,-23,2014-02-08 07:11:12,2014-02-09 01:26:52,14001807CF10A,2014-02-08,,23,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-03,Risk of Violence,4,Low,2014-03-03,2014-02-08,2014-02-09,2,0,760,0,0\r\n8972,shanaice pinkney,shanaice,pinkney,2014-02-05,Female,1988-09-05,27,25 - 45,African-American,0,6,0,0,1,-1,2014-02-04 08:32:01,2014-02-20 09:14:15,14001959MM10A,2014-02-04,,1,M,Battery,1,15000118MM10A,(M2),0,2015-01-03,Petit Theft,2015-01-03,2015-01-04,,0,,,,,Risk of Recidivism,6,Medium,2014-02-05,Risk of Violence,4,Low,2014-02-05,2015-01-03,2015-01-04,1,15,332,1,1\r\n8973,elizabeth wiess,elizabeth,wiess,2013-01-30,Female,1986-04-05,30,25 - 45,Caucasian,0,6,0,0,1,40,2013-03-11 12:07:04,2013-03-19 11:20:35,12013432MM10A,2012-06-28,,216,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-30,Risk of Violence,2,Low,2013-01-30,2013-03-11,2013-03-19,1,0,40,0,0\r\n8974,tyrie walker,tyrie,walker,2013-04-30,Male,1994-01-25,22,Less than 25,African-American,0,8,0,0,2,-1,2013-04-29 04:28:02,2013-04-30 07:17:44,13006149CF10A,2013-04-29,,1,F,Robbery Sudd Snatch No Weapon,1,15016724TC10A,(M2),,2015-05-18,Operating W/O Valid License,,,,1,15009326MM10A,(M1),2015-07-24,Battery,Risk of Recidivism,8,High,2013-04-30,Risk of Violence,8,High,2013-04-30,2013-04-29,2013-04-30,2,0,748,1,0\r\n8976,catherine scher,catherine,scher,2013-12-22,Female,1972-05-28,43,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-22 02:32:05,2013-12-23 01:40:39,13017627CF10A,2013-12-21,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-22,Risk of Violence,1,Low,2013-12-22,2013-12-22,2013-12-23,0,1,831,0,0\r\n8980,dennys perez-alejo,dennys,perez-alejo,2013-01-24,Male,1991-08-16,24,Less than 25,Hispanic,0,1,0,0,0,565,2014-08-12 06:06:54,2014-09-11 02:05:39,13001178CF10A,2013-01-24,,0,F,Manufacture Cannabis,1,14012172MM10A,(M1),0,2014-08-12,Petit Theft $100- $300,2014-08-12,2014-09-11,,0,,,,,Risk of Recidivism,1,Low,2013-01-24,Risk of Violence,1,Low,2013-01-24,2014-08-12,2014-09-11,0,0,565,1,1\r\n8981,david dargan,david,dargan,2013-08-23,Male,1994-02-04,22,Less than 25,Caucasian,0,4,0,0,2,-36,2013-07-18 01:49:55,2013-07-18 09:07:41,13013659MM10A,2013-07-18,,36,M,Resist/Obstruct W/O Violence,1,15001632MM20A,(M1),34,2015-06-24,Petit Theft $100- $300,2015-07-28,2015-08-06,,0,,,,,Risk of Recidivism,4,Low,2013-08-23,Risk of Violence,6,Medium,2013-08-23,2015-07-28,2015-08-06,2,0,670,1,1\r\n8983,deborah spoth,deborah,spoth,2013-05-10,Female,1961-04-18,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-09 10:15:50,2013-05-10 08:38:51,13008981MM10A,2013-05-09,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-10,Risk of Violence,1,Low,2013-05-10,2013-05-09,2013-05-10,0,0,1057,0,0\r\n8984,mario luis,mario,luis,2013-08-07,Male,1982-04-15,34,25 - 45,Hispanic,0,1,0,0,0,0,2013-08-07 12:09:52,2013-10-23 11:18:41,13014877MM10A,2013-08-06,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-07,Risk of Violence,1,Low,2013-08-07,2013-08-07,2013-10-23,0,77,968,0,0\r\n8988,jordan barr,jordan,barr,2013-10-15,Male,1995-07-20,20,Less than 25,African-American,0,2,0,2,1,-1,2013-10-14 05:43:48,2013-10-16 09:20:13,13014392CF10A,,2013-10-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-15,Risk of Violence,6,Medium,2013-10-15,2013-10-14,2013-10-16,1,1,899,0,0\r\n8989,terrence moody,terrence,moody,2013-03-28,Male,1994-03-16,22,Less than 25,African-American,0,7,0,0,1,-1,2013-03-27 01:26:31,2013-03-28 08:09:51,13005987MM10A,2013-03-27,,1,M,Resist/Obstruct W/O Violence,1,13048021TC10A,(M2),,2013-05-31,Leave Acc/Attend Veh/More $50,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-28,Risk of Violence,7,Medium,2013-03-28,2014-06-05,2020-01-01,1,0,64,1,1\r\n8991,dominique troutman,dominique,troutman,2014-07-06,Male,1987-02-09,29,25 - 45,African-American,0,9,4,1,15,227,2015-02-18 11:39:46,2015-08-24 01:02:23,14009227CF10A,2014-07-05,,1,F,Felony Battery w/Prior Convict,1,15002261CF10A,(M2),0,2015-02-18,Susp Drivers Lic 1st Offense,2015-02-18,2015-08-24,,1,15002261CF10A,(F2),2015-02-18,Agg Fleeing/Eluding High Speed,Risk of Recidivism,9,High,2014-07-06,Risk of Violence,7,Medium,2014-07-06,2015-02-18,2015-08-24,15,0,227,1,1\r\n8992,matthew bartlett,matthew,bartlett,2014-01-04,Male,1982-08-17,33,25 - 45,Caucasian,0,9,0,0,9,-1,2014-01-03 05:03:25,2014-02-21 05:47:14,14000122CF10A,2014-01-03,,1,F,Felony Petit Theft,1,14006519MM10A,(M1),0,2014-04-17,Resist/Obstruct W/O Violence,2014-04-17,2014-04-18,,0,,,,,Risk of Recidivism,9,High,2014-01-04,Risk of Violence,5,Medium,2014-01-04,2014-04-17,2014-04-18,9,48,103,1,1\r\n8995,timothy evans,timothy,evans,2013-02-23,Male,1960-06-03,55,Greater than 45,Caucasian,0,8,0,0,7,0,2013-02-23 03:21:11,2013-02-23 09:04:37,13002770CF10A,2013-02-23,,0,F,Felony DUI (level 3),0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-23,Risk of Violence,10,High,2013-02-23,2014-06-19,2014-07-07,7,0,481,0,0\r\n8996,bradley vaval,bradley,vaval,2013-03-06,Male,1993-07-23,22,Less than 25,African-American,0,6,0,0,1,-1,2013-03-05 09:14:57,2013-03-07 05:10:56,13003293CF10A,2013-03-05,,1,F,Fleeing or Eluding a LEO,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-06,Risk of Violence,8,High,2013-03-06,2013-04-22,2013-04-29,1,1,47,0,0\r\n8997,john kemp,john,kemp,2013-09-10,Male,1961-02-10,55,Greater than 45,African-American,0,1,0,0,1,-1,2013-09-09 04:06:52,2013-09-18 10:30:00,13010628CF10A,,2013-09-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-09,2013-09-18,1,8,934,0,0\r\n8998,bridgette oberman,bridgette,oberman,2013-07-18,Female,1972-12-11,43,25 - 45,Caucasian,0,1,0,0,0,-2,2013-07-16 05:14:30,2013-07-17 11:55:22,13009978CF10A,2013-07-16,,2,F,Grand Theft in the 3rd Degree,1,15007224MU10A,(M1),0,2015-03-06,Driving Under The Influence,2015-03-06,2015-03-13,,0,,,,,Risk of Recidivism,1,Low,2013-07-18,Risk of Violence,1,Low,2013-07-18,2013-08-28,2013-09-04,0,0,41,0,1\r\n8999,lamonte dean,lamonte,dean,2013-03-15,Male,1994-11-09,21,Less than 25,African-American,0,10,0,3,0,-1,2013-03-14 07:22:45,2013-03-21 07:20:07,13003771CF10A,2013-03-14,,1,F,Pos Cannabis W/Intent Sel/Del,1,14001493MM10A,(M1),0,2014-01-27,Unlaw Use False Name/Identity,2014-01-27,2014-02-24,,1,15011755CF10A,(F3),2015-09-09,Robbery Sudd Snatch No Weapon,Risk of Recidivism,10,High,2013-03-15,Risk of Violence,9,High,2013-03-15,2014-01-27,2014-02-24,0,6,318,1,1\r\n9003,tony dees,tony,dees,2013-06-11,Male,1977-06-29,38,25 - 45,African-American,1,4,0,0,6,-52,2013-04-20 10:31:47,2013-06-11 11:15:31,13005653CF10A,,2013-04-20,52,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-11,Risk of Violence,3,Low,2013-06-11,2013-04-20,2013-06-11,6,0,1025,0,0\r\n9004,james goodwin,james,goodwin,2013-09-24,Male,1992-12-19,23,Less than 25,African-American,0,2,0,0,0,-1,2013-09-23 09:18:09,2013-09-24 08:49:29,13013399CF10A,,2013-09-23,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-24,Risk of Violence,4,Low,2013-09-24,2013-09-23,2013-09-24,0,0,920,0,0\r\n9005,carly grimes,carly,grimes,2013-08-07,Female,1988-01-09,28,25 - 45,Caucasian,0,5,0,0,1,-2,2013-08-05 10:26:37,2013-08-06 01:36:07,13010970CF10A,2013-08-05,,2,M,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-07,Risk of Violence,2,Low,2013-08-07,2013-08-05,2013-08-06,1,0,968,0,0\r\n9008,wilner joseph,wilner,joseph,2013-05-09,Male,1970-11-29,45,Greater than 45,Other,0,1,0,0,0,0,2013-05-09 01:46:12,2013-05-10 12:10:14,13006682CF10A,2013-05-08,,1,F,Tamper With Witness/Victim/CI,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-09,Risk of Violence,1,Low,2013-05-09,2013-05-09,2013-05-10,0,1,1058,0,0\r\n9010,broderick lewis,broderick,lewis,2013-04-15,Male,1976-08-26,39,25 - 45,African-American,0,1,0,0,1,-1,2013-04-14 12:35:29,2013-04-28 04:07:31,13005381CF10A,2013-04-14,,1,F,Agg Battery Grt/Bod/Harm,1,15045856TC40A,(M2),,2015-08-06,Expired DL More Than 6 Months,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-15,Risk of Violence,2,Low,2013-04-15,2013-04-14,2013-04-28,1,13,843,1,0\r\n9012,lionel sacon,lionel,sacon,2013-07-29,Male,1936-08-28,79,Greater than 45,Caucasian,0,1,0,0,1,-22,2013-07-07 09:04:26,2013-07-08 12:17:21,13012898MM10A,2013-07-07,,22,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-29,Risk of Violence,1,Low,2013-07-29,2013-07-07,2013-07-08,1,0,977,0,0\r\n9013,james bruschetti,james,bruschetti,2013-12-07,Male,1968-01-21,48,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-12-06 07:54:08,2013-12-07 01:25:17,13016908CF10A,2013-12-06,,1,F,Depriv LEO of Protect/Communic,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-07,Risk of Violence,1,Low,2013-12-07,2013-12-06,2013-12-07,1,0,846,0,0\r\n9017,helbert urrea,helbert,urrea,2013-09-24,Male,1995-07-08,20,Less than 25,Hispanic,0,8,2,1,2,-1,2013-09-23 04:49:47,2013-10-24 12:26:37,13013389CF10A,2013-09-23,,1,F,Burglary Conveyance Unoccup,1,14001490CF10A,(F2),0,2014-02-03,Grand Theft of the 2nd Degree,2014-02-03,2014-03-29,,0,,,,,Risk of Recidivism,8,High,2013-09-24,Risk of Violence,8,High,2013-09-24,2014-02-03,2014-03-29,2,30,132,1,1\r\n9018,samuel walker,samuel,walker,2013-01-12,Male,1985-02-19,31,25 - 45,African-American,1,8,0,0,5,-1,2013-01-11 01:37:56,2013-01-12 01:34:34,12052989TC10A,,2013-01-11,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-12,Risk of Violence,3,Low,2013-01-12,2014-07-17,2014-07-24,5,0,551,0,0\r\n9020,gabriel magnone,gabriel,magnone,2014-07-01,Male,1986-03-20,30,25 - 45,Caucasian,0,5,1,0,4,-3,2014-06-28 05:18:03,2014-06-29 01:11:47,14010034MM10A,2014-06-28,,3,M,Petit Theft $100- $300,1,14013453CF10A,(F3),143,2014-07-14,False Ownership Info/Pawn Item,2014-12-04,2014-12-17,,0,,,,,Risk of Recidivism,5,Medium,2014-07-01,Risk of Violence,2,Low,2014-07-01,2014-12-04,2014-12-17,4,0,13,1,1\r\n9022,randail spencer,randail,spencer,2013-11-20,Male,1984-02-07,32,25 - 45,African-American,0,4,0,0,5,-1,2013-11-19 08:47:31,2013-11-20 08:30:17,13016059CF10A,2013-11-19,,1,F,Driving While License Revoked,1,14009712TC10A,(M2),,2014-02-06,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-20,Risk of Violence,2,Low,2013-11-20,2014-07-26,2014-10-07,5,0,78,1,1\r\n9023,richard fleenor,richard,fleenor,2014-03-23,Male,1959-09-29,56,Greater than 45,Caucasian,0,1,0,0,1,-1,2014-03-22 11:04:24,2014-03-26 09:44:27,14005017MM10A,2014-03-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-23,Risk of Violence,1,Low,2014-03-23,2014-03-22,2014-03-26,1,3,740,0,0\r\n9027,sessaly spencer,sessaly,spencer,2013-04-01,Female,1987-08-19,28,25 - 45,African-American,0,8,0,0,0,,,,,,,,M,,1,14000522MM40A,(M1),64,2014-01-14,Petit Theft $100- $300,2014-03-19,2014-03-27,,0,,,,,Risk of Recidivism,8,High,2013-04-01,Risk of Violence,3,Low,2013-04-01,2013-07-05,2013-07-09,0,0,95,0,1\r\n9028,jerome hill,jerome,hill,2013-08-19,Male,1973-01-14,43,25 - 45,African-American,0,1,0,0,2,-1,2013-08-18 05:31:33,2013-08-20 07:43:59,13015624MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-20,2,1,956,0,0\r\n9030,kevin sanchez,kevin,sanchez,2014-03-13,Male,1995-07-18,20,Less than 25,Hispanic,0,3,0,2,0,-1,2014-03-12 12:52:07,2014-03-13 04:07:39,14003531CF10A,2014-03-12,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-13,Risk of Violence,5,Medium,2014-03-13,2014-03-12,2014-03-13,0,0,750,0,0\r\n9031,latwan henderson,latwan,henderson,2014-12-12,Male,1989-03-02,27,25 - 45,African-American,0,7,0,0,21,0,2014-12-12 05:19:05,2015-01-16 05:53:47,14016494CF10A,2014-12-12,,0,F,Poss Pyrrolidinovalerophenone,1,15006177CF10A,(F1),0,2015-05-12,Sale/Del Cocaine Child Care Fac,2015-05-12,2015-10-01,,0,,,,,Risk of Recidivism,7,Medium,2014-12-12,Risk of Violence,3,Low,2014-12-12,2015-05-12,2015-10-01,21,35,151,1,1\r\n9032,darius wilborn,darius,wilborn,2013-08-08,Male,1974-12-18,41,25 - 45,African-American,0,6,0,0,0,-4,2013-08-04 03:15:07,2013-08-07 08:38:50,13014562MM10A,2013-08-04,,4,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-08,Risk of Violence,2,Low,2013-08-08,2014-01-21,2014-02-06,0,0,166,0,0\r\n9033,romero alexander,romero,alexander,2013-12-07,Male,1992-03-15,24,Less than 25,Other,0,3,0,0,1,-1,2013-12-06 03:59:45,2013-12-07 08:00:48,13016890CF10A,2013-12-06,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-07,Risk of Violence,3,Low,2013-12-07,2014-02-01,2014-02-02,1,0,56,0,0\r\n9034,allande pierre,allande,pierre,2014-10-07,Male,1972-12-23,43,25 - 45,African-American,0,1,0,0,3,-4,2014-10-03 02:03:27,2014-10-04 07:52:43,14035960TC10A,2014-10-03,,4,M,Operating W/O Valid License,1,15004185TC10A,(M2),0,2015-02-10,Susp Drivers Lic 1st Offense,2015-02-10,2015-02-12,,0,,,,,Risk of Recidivism,1,Low,2014-10-07,Risk of Violence,1,Low,2014-10-07,2015-02-10,2015-02-12,3,0,126,1,1\r\n9038,angel willis,angel,willis,2013-09-25,Female,1982-05-13,33,25 - 45,African-American,0,1,0,0,1,-1,2013-09-24 07:19:08,2013-09-25 07:32:07,13013425CF10A,,2013-09-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-25,Risk of Violence,1,Low,2013-09-25,2013-09-24,2013-09-25,1,0,919,0,0\r\n9039,curtis anderson,curtis,anderson,2014-02-05,Male,1993-07-30,22,Less than 25,African-American,0,3,0,0,0,-1,2014-02-04 01:35:10,2014-02-13 10:41:37,14001577CF10A,2014-02-04,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-05,Risk of Violence,4,Low,2014-02-05,2014-02-04,2014-02-13,0,8,786,0,0\r\n9040,corey parchment,corey,parchment,2014-01-22,Male,1982-03-10,34,25 - 45,African-American,0,1,0,0,3,-1,2014-01-21 06:38:50,2014-01-22 07:53:54,14000892CF10A,2014-01-21,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-22,Risk of Violence,1,Low,2014-01-22,2014-01-21,2014-01-22,3,0,800,0,0\r\n9041,angel franco,angel,franco,2013-01-18,Male,1980-04-19,36,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-18 03:17:45,2013-01-18 08:51:56,13001296MM10A,2013-01-18,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2013-01-18,2013-01-18,0,0,1169,0,0\r\n9042,paul stephan,paul,stephan,2013-01-19,Male,1946-07-12,69,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-01-18 04:01:25,2013-01-19 01:25:00,13000862CF10A,2013-01-18,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-19,Risk of Violence,1,Low,2013-01-19,2013-01-18,2013-01-19,0,0,1168,0,0\r\n9043,derrick gorman,derrick,gorman,2013-02-22,Male,1983-06-21,32,25 - 45,Caucasian,0,5,0,0,5,-1,2013-02-21 03:26:24,2013-02-22 01:32:44,13002881CF10A,,2013-02-21,1,F,arrest case no charge,1,15007708CF10A,(F2),0,2015-06-13,Aggrav Battery w/Deadly Weapon,2015-06-13,2015-06-14,,1,15007708CF10A,(F2),2015-06-13,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,5,Medium,2013-02-22,Risk of Violence,4,Low,2013-02-22,2014-02-20,2014-02-25,5,0,363,0,1\r\n9044,shivaughn campbell,shivaughn,campbell,2014-03-21,Male,1993-09-23,22,Less than 25,African-American,0,7,0,0,1,0,2014-03-21 01:38:10,2014-03-21 02:39:59,14003969CF10A,2014-03-21,,0,F,Del Cannabis For Consideration,1,14025652TC10A,(M2),1,2014-07-15,Operating W/O Valid License,2014-07-16,2014-08-02,,0,,,,,Risk of Recidivism,7,Medium,2014-03-21,Risk of Violence,5,Medium,2014-03-21,2015-07-30,2015-09-06,1,0,116,1,1\r\n9045,corey smaglik,corey,smaglik,2013-12-10,Male,1969-08-19,46,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-12-09 06:27:49,2014-02-26 01:03:40,13017025CF10A,2013-12-09,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-10,Risk of Violence,2,Low,2013-12-10,2013-12-09,2014-02-26,0,78,843,0,0\r\n9046,ian wilhelm,ian,wilhelm,2014-02-24,Male,1981-11-13,34,25 - 45,Caucasian,0,5,0,0,1,-14,2014-02-10 02:20:42,2014-02-11 09:23:53,14002272MM10A,2014-02-09,,15,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-24,Risk of Violence,3,Low,2014-02-24,2014-02-10,2014-02-11,1,0,767,0,0\r\n9047,shane forshaw,shane,forshaw,2014-03-07,Female,1983-07-13,32,25 - 45,Hispanic,0,1,0,0,0,0,2014-03-07 07:10:24,2014-03-17 07:16:22,14003977MM10A,2014-03-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-07,Risk of Violence,1,Low,2014-03-07,2015-06-07,2015-06-19,0,10,457,0,0\r\n9049,frederick gallaway,frederick,gallaway,2013-01-28,Male,1976-09-22,39,25 - 45,African-American,0,1,0,0,0,-1,2013-01-27 10:35:20,2013-01-28 06:46:53,13001931MM10A,2013-01-27,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-01-28,0,0,1159,0,0\r\n9054,patrick moore,patrick,moore,2014-10-01,Male,1991-04-18,25,25 - 45,African-American,0,7,0,1,6,-1,2014-09-30 08:47:42,2014-10-02 08:08:10,14014375MM10A,2014-09-30,,1,M,Battery,1,15009562CF10A,(F2),0,2015-07-25,Aggrav Battery w/Deadly Weapon,2015-07-25,2015-08-31,,1,15009562CF10A,(F2),2015-07-25,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,7,Medium,2014-10-01,Risk of Violence,7,Medium,2014-10-01,2015-07-25,2015-08-31,6,1,297,1,1\r\n9055,melisa angel,melisa,angel,2013-05-06,Female,1994-11-09,21,Less than 25,Hispanic,0,4,0,1,0,-1,2013-05-05 11:13:22,2013-05-06 12:12:31,13008698MM10A,2013-05-05,,1,M,Battery,1,13000785MM30A,(M2),,2013-06-03,No Court Susp Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-06,Risk of Violence,6,Medium,2013-05-06,2013-05-05,2013-05-06,0,0,28,1,1\r\n9056,leroy farley,leroy,farley,2014-03-04,Male,1952-07-26,63,Greater than 45,African-American,0,6,0,0,9,0,2014-03-04 12:30:40,2014-03-06 09:46:42,14003016CF10A,2014-03-03,,1,F,Burglary Structure Unoccup,1,14006200CF10A,(F3),1,2014-05-02,Possession Burglary Tools,2014-05-03,2014-09-23,,0,,,,,Risk of Recidivism,6,Medium,2014-03-04,Risk of Violence,1,Low,2014-03-04,2014-03-04,2014-03-06,9,2,59,1,1\r\n9058,donovan walters,donovan,walters,2013-02-06,Male,1992-01-05,24,Less than 25,Caucasian,0,4,0,0,8,-1,2013-02-05 10:17:15,2013-02-06 07:20:44,13001792CF10A,2013-02-05,,1,F,Felony Battery (Dom Strang),1,14044497TC30A,(M2),100,2014-05-18,Susp Drivers Lic 1st Offense,2014-08-26,2014-08-27,,0,,,,,Risk of Recidivism,4,Low,2013-02-06,Risk of Violence,5,Medium,2013-02-06,2014-08-26,2014-08-27,8,0,466,1,1\r\n9060,joseph amico,joseph,amico,2013-07-26,Male,1987-01-14,29,25 - 45,Caucasian,0,5,0,0,2,-2,2013-07-24 10:54:34,2013-07-26 10:35:06,13010359CF10A,2013-07-24,,2,M,Fighting/Baiting Animals,1,15012587MM10A,(M1),1,2015-12-04,Trespass Other Struct/Convey,2015-12-05,2015-12-05,,0,,,,,Risk of Recidivism,5,Medium,2013-07-26,Risk of Violence,4,Low,2013-07-26,2013-11-04,2013-11-22,2,0,101,0,0\r\n9061,shanard roland,shanard,roland,2014-09-08,Male,1995-12-07,20,Less than 25,African-American,0,8,3,0,3,0,2014-09-08 04:39:05,2014-09-08 01:20:35,14012243CF10A,2014-09-08,,0,F,Possession of Cocaine,1,15003118CF10A,(F3),0,2015-03-07,Carrying Concealed Firearm,2015-03-07,2015-03-07,,0,,,,,Risk of Recidivism,8,High,2014-09-08,Risk of Violence,8,High,2014-09-08,2015-03-07,2015-03-07,3,0,180,0,1\r\n9062,april hood,april,hood,2014-02-17,Female,1976-04-08,40,25 - 45,Caucasian,0,5,0,0,0,-1,2014-02-16 09:48:15,2014-02-19 04:10:54,14002679MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-17,Risk of Violence,2,Low,2014-02-17,2014-02-16,2014-02-19,0,2,774,0,0\r\n9064,tyrel fairclough,tyrel,fairclough,2013-09-28,Male,1985-09-21,30,25 - 45,African-American,0,8,0,0,7,0,2013-09-28 02:18:26,2013-09-28 08:49:44,13013629CF10A,,2013-09-28,0,F,arrest case no charge,1,15000096CF10A,(M2),0,2015-01-03,Unlaw LicTag/Sticker Attach,2015-01-03,2015-07-29,,0,,,,,Risk of Recidivism,8,High,2013-09-28,Risk of Violence,4,Low,2013-09-28,2015-01-03,2015-07-29,7,0,462,1,1\r\n9067,jacob domkoski,jacob,domkoski,2013-01-29,Male,1979-11-30,36,25 - 45,Caucasian,0,5,0,0,10,54,2013-03-24 07:18:58,2013-03-31 06:00:20,13001602MO10A,2013-01-24,,5,M,Aggress/Panhandle/Beg/Solict,1,13004257CF10A,(F2),0,2013-03-24,Burglary Unoccupied Dwelling,2013-03-24,2013-03-31,,1,13009915MM10A,(M1),2013-05-23,Battery,Risk of Recidivism,5,Medium,2013-01-29,Risk of Violence,4,Low,2013-01-29,2013-03-24,2013-03-31,10,0,54,1,1\r\n9070,bruce sinert,bruce,sinert,2013-04-25,Male,1965-05-20,50,Greater than 45,Caucasian,0,7,0,0,5,-8,2013-04-17 10:39:20,2013-04-22 11:45:09,12018393CF10A,,2013-04-17,8,F,arrest case no charge,1,15013992CF10A,(F3),0,2015-10-27,Possession Of Methamphetamine,2015-10-27,2015-10-28,,0,,,,,Risk of Recidivism,7,Medium,2013-04-25,Risk of Violence,1,Low,2013-04-25,2015-10-27,2015-10-28,5,0,915,1,0\r\n9072,james travis,james,travis,2014-11-01,Male,1979-03-22,37,25 - 45,African-American,0,7,0,0,4,-1,2014-10-31 09:52:44,2015-01-14 12:38:16,14015774MM10A,2014-10-31,,1,M,Criminal Mischief>$200<$1000,1,15005125CF10A,(M1),0,2015-04-19,Viol Injunct Domestic Violence,2015-04-19,2015-08-03,,1,15005125CF10A,(F3),2015-04-19,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2014-11-01,Risk of Violence,7,Medium,2014-11-01,2015-03-06,2015-03-24,4,74,125,0,1\r\n9074,wendell thomas,wendell,thomas,2013-02-24,Male,1982-04-03,34,25 - 45,African-American,0,7,0,0,1,0,2013-02-24 12:31:37,2013-02-24 09:00:27,13002807CF10A,2013-02-23,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-24,Risk of Violence,2,Low,2013-02-24,2014-07-11,2014-07-24,1,0,502,0,0\r\n9075,sussan cabrera,sussan,cabrera,2014-03-20,Female,1980-09-16,35,25 - 45,Hispanic,0,2,0,0,0,-1,2014-03-19 07:32:49,2014-03-20 11:57:04,14003908CF10A,2014-03-19,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-20,Risk of Violence,1,Low,2014-03-20,2014-03-19,2014-03-20,0,0,743,0,0\r\n9076,shameka lowery,shameka,lowery,2013-01-09,Female,1984-09-23,31,25 - 45,African-American,0,2,0,0,1,-1,2013-01-08 07:24:10,2013-01-10 04:12:24,13000461MM10A,2013-01-08,,1,M,Battery,1,13021861MM10A,(M2),,2013-09-24,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-09,Risk of Violence,1,Low,2013-01-09,2013-01-08,2013-01-10,1,1,258,1,1\r\n9077,joshua mercado,joshua,mercado,2013-01-12,Male,1992-06-18,23,Less than 25,Caucasian,0,7,0,1,10,-1,2013-01-11 01:35:04,2013-03-22 08:45:44,11020721CF10A,,2013-01-12,0,F,arrest case no charge,1,15006414CF10A,(F3),1,2015-05-16,Possession Of Alprazolam,2015-05-17,2015-05-17,,0,,,,,Risk of Recidivism,7,Medium,2013-01-12,Risk of Violence,6,Medium,2013-01-12,2013-01-11,2013-03-22,10,69,854,1,0\r\n9079,jerko delacruz,jerko,delacruz,2013-08-10,Male,1993-10-13,22,Less than 25,Hispanic,0,4,0,0,0,-1,2013-08-09 09:54:48,2013-09-11 04:32:52,13011188CF10A,2013-08-09,,1,F,Burglary Dwelling Assault/Batt,1,14017262MM10A,(M2),0,2014-12-08,Petit Theft,2014-12-08,2014-12-09,,0,,,,,Risk of Recidivism,4,Low,2013-08-10,Risk of Violence,5,Medium,2013-08-10,2014-12-08,2014-12-09,0,32,485,1,1\r\n9080,juan guevara,juan,guevara,2013-04-22,Male,1978-10-16,37,25 - 45,Caucasian,0,1,0,0,2,-1,2013-04-21 10:08:59,2013-04-26 08:11:17,12018452CF10A,,2013-04-21,1,F,arrest case no charge,1,13015631MM10A,(M1),0,2013-08-18,Possess Cannabis/20 Grams Or Less,2013-08-18,2013-08-19,,0,,,,,Risk of Recidivism,1,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2013-08-18,2013-08-19,2,4,118,1,1\r\n9081,lansberth blackwood,lansberth,blackwood,2013-09-30,Male,1995-07-22,20,Less than 25,Other,0,4,0,0,0,-2,2013-09-28 08:34:56,2013-09-29 01:46:44,13013638CF10A,2013-09-28,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-30,Risk of Violence,7,Medium,2013-09-30,2014-07-24,2014-08-04,0,0,297,0,0\r\n9083,ed hughes,ed,hughes,2014-11-10,Male,1961-06-21,54,Greater than 45,African-American,0,7,0,0,22,83,2015-02-01 12:12:05,2015-02-02 01:55:31,14007163CF10A,2014-05-22,,172,F,Aggravated Assault W/Dead Weap,1,14001929MM30A,(M1),62,2014-12-01,Petit Theft $100- $300,2015-02-01,2015-02-02,,0,,,,,Risk of Recidivism,7,Medium,2014-11-10,Risk of Violence,3,Low,2014-11-10,2016-01-13,2016-04-06,22,0,21,1,1\r\n9085,joseph brock,joseph,brock,2013-03-26,Male,1989-10-20,26,25 - 45,Caucasian,0,5,0,0,2,-1,2013-03-25 11:41:47,2013-03-26 01:03:38,13004331CF10A,2013-03-25,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-26,Risk of Violence,4,Low,2013-03-26,2013-03-25,2013-03-26,2,0,1102,0,0\r\n9086,nicholas graham,nicholas,graham,2014-10-04,Male,1981-08-14,34,25 - 45,African-American,0,9,0,0,12,-1,2014-10-03 12:22:59,2014-10-15 10:01:50,14013356CF10A,2014-10-03,,1,F,Poss Pyrrolidinovalerophenone,1,15011459CF10A,(F3),0,2015-09-04,Grand Theft (Motor Vehicle),2015-09-04,2015-11-06,,0,,,,,Risk of Recidivism,9,High,2014-10-04,Risk of Violence,5,Medium,2014-10-04,2015-04-02,2015-04-03,12,11,180,0,1\r\n9087,robert grady,robert,grady,2014-11-13,Male,1956-07-06,59,Greater than 45,Caucasian,0,1,0,0,2,-15,2014-10-29 09:37:56,2014-10-30 08:26:47,14039923MU10A,2014-10-29,,15,M,DUI Level 0.15 Or Minor In Veh,1,15012872TC20A,(M2),,2015-02-09,Driving License Suspended,,,,1,15003782CF10A,(M1),2015-03-20,Agg Fleeing/Eluding High Speed,Risk of Recidivism,1,Low,2014-11-13,Risk of Violence,1,Low,2014-11-13,2014-12-10,2014-12-11,2,0,27,0,1\r\n9088,william rodman,william,rodman,2013-09-29,Male,1970-09-24,45,Greater than 45,Caucasian,0,2,0,0,2,,,,13013630CF10A,2013-09-28,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-29,Risk of Violence,1,Low,2013-09-29,,,2,0,915,0,0\r\n9089,michael preston,michael,preston,2013-08-16,Male,1978-07-08,37,25 - 45,Caucasian,0,2,0,0,2,-12,2013-08-04 08:19:11,2013-08-16 10:55:25,13014593MM10A,2013-08-04,,12,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-16,Risk of Violence,3,Low,2013-08-16,2013-09-19,2013-10-17,2,0,34,0,0\r\n9091,mark ribeiro,mark,ribeiro,2013-02-14,Male,1977-05-23,38,25 - 45,Other,0,1,0,0,0,-1,2013-02-13 09:32:19,2013-02-14 08:31:49,13002257CF10A,2013-02-13,,1,F,Felony Committing Prostitution,1,14003232MM40A,(M2),,2014-07-08,Prostitution/Lewd Act Assignation,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-14,Risk of Violence,1,Low,2013-02-14,2013-02-13,2013-02-14,0,0,509,1,1\r\n9092,jesus roa,jesus,roa,2013-08-05,Male,1970-07-18,45,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-08-04 09:44:38,2013-08-09 11:23:01,13010834CF10A,2013-08-04,,1,F,Felony Battery (Dom Strang),1,14001282CF10A,(F3),0,2014-01-29,Possession of Cocaine,2014-01-29,2014-01-30,,0,,,,,Risk of Recidivism,1,Low,2013-08-05,Risk of Violence,1,Low,2013-08-05,2014-01-29,2014-01-30,1,4,177,1,1\r\n9093,jerel dean,jerel,dean,2013-08-14,Male,1993-12-06,22,Less than 25,African-American,0,8,0,0,1,-1,2013-08-13 01:31:52,2013-09-18 11:56:57,13011361CF10A,2013-08-13,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-14,Risk of Violence,7,Medium,2013-08-14,2015-10-21,2015-11-06,1,35,798,0,0\r\n9094,mark simon,mark,simon,2013-03-30,Male,1991-08-06,24,Less than 25,African-American,0,8,0,1,3,26,2013-04-25 10:21:43,2013-05-30 12:22:18,13004544CF10A,2013-03-29,,1,F,Pos Cannabis W/Intent Sel/Del,1,13010623CF10A,(F3),,2013-04-16,Grand Theft In The 3Rd Degree,,,,0,,,,,Risk of Recidivism,8,High,2013-03-30,Risk of Violence,6,Medium,2013-03-30,2014-04-28,2014-06-20,3,0,17,1,1\r\n9096,janoi turner,janoi,turner,2013-01-28,Male,1990-08-20,25,25 - 45,African-American,0,5,0,0,5,-1,2013-01-27 10:18:53,2013-03-05 06:42:36,13001329CF10A,2013-01-27,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-28,Risk of Violence,7,Medium,2013-01-28,2013-03-05,2014-02-07,5,375,1159,0,0\r\n9097,terrance rogers,terrance,rogers,2014-03-13,Male,1991-09-01,24,Less than 25,African-American,0,6,0,0,6,-1,2014-03-12 06:10:43,2014-03-13 08:53:15,14003489CF10A,2014-03-12,,1,F,Uttering a Forged Instrument,1,14050547TC20A,(M2),116,2014-07-12,Operating W/O Valid License,2014-11-05,2015-04-22,,0,,,,,Risk of Recidivism,6,Medium,2014-03-13,Risk of Violence,6,Medium,2014-03-13,2015-08-20,2015-10-30,6,0,121,1,1\r\n9099,vanessa byrd,vanessa,byrd,2013-02-26,Female,1963-10-21,52,Greater than 45,African-American,0,3,0,0,3,,,,12003875MM10A,,2012-07-08,233,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-26,Risk of Violence,2,Low,2013-02-26,,,3,0,1130,0,0\r\n9102,patrick shirley,patrick,shirley,2013-11-08,Male,1995-05-26,20,Less than 25,African-American,0,4,0,0,1,-1,2013-11-07 01:46:22,2013-11-08 08:59:23,13021023MM10A,2013-11-07,,1,M,Battery,1,15010342MM10A,(M1),,2015-08-23,Battery,,,,1,15010342MM10A,(M1),2015-08-23,Battery,Risk of Recidivism,4,Low,2013-11-08,Risk of Violence,7,Medium,2013-11-08,2013-11-07,2013-11-08,1,0,653,1,1\r\n9104,alfonso glenn,alfonso,glenn,2014-02-06,Male,1983-12-29,32,25 - 45,African-American,0,6,0,0,6,,,,10020562CF10A,2010-11-21,,1173,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-06,Risk of Violence,7,Medium,2014-02-06,,,6,0,785,0,0\r\n9106,pedro melo,pedro,melo,2014-10-31,Female,1983-07-12,32,25 - 45,Caucasian,0,2,0,0,2,-1,2014-10-30 06:31:31,2014-10-31 06:18:06,14014591CF10A,2014-10-30,,1,F,Sell/Man/Del Pos/w/int Heroin,1,16000868CF10A,(F3),11,2016-01-10,Grand Theft in the 3rd Degree,2016-01-21,2016-01-22,,0,,,,,Risk of Recidivism,2,Low,2014-10-31,Risk of Violence,2,Low,2014-10-31,2016-02-01,2016-02-29,2,0,436,1,1\r\n9109,shane hall,shane,hall,2013-09-24,Male,1976-09-18,39,25 - 45,Caucasian,0,6,0,0,8,-75,2013-07-11 05:28:48,2013-07-31 10:30:00,11006386CF10A,,2013-07-11,75,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-24,Risk of Violence,4,Low,2013-09-24,2013-07-11,2013-07-31,8,0,920,0,0\r\n9110,james wilson,james,wilson,2014-11-04,Male,1966-12-30,49,Greater than 45,African-American,0,8,0,0,3,-1,2014-11-03 12:38:36,2014-11-04 10:13:42,14014753CF10A,2014-11-03,,1,F,Possession of Cocaine,1,15003186MM10A,(M1),0,2015-03-17,Resist/Obstruct W/O Violence,2015-03-17,2015-09-09,,0,,,,,Risk of Recidivism,8,High,2014-11-04,Risk of Violence,2,Low,2014-11-04,2014-12-19,2015-01-22,3,0,45,0,1\r\n9111,andrew thornton,andrew,thornton,2014-03-12,Male,1996-03-04,20,Less than 25,African-American,1,4,0,0,1,57,2014-05-08 12:32:56,2014-05-09 04:24:52,14002088CF10A,2013-11-15,,117,F,Attempted Robbery  No Weapon,1,14007619MM10A,(M1),0,2014-05-08,Resist/Obstruct W/O Violence,2014-05-08,2014-05-09,,0,,,,,Risk of Recidivism,4,Low,2014-03-12,Risk of Violence,6,Medium,2014-03-12,2014-05-08,2014-05-09,1,0,57,1,1\r\n9112,jason mutrux,jason,mutrux,2014-11-18,Male,1985-01-13,31,25 - 45,Caucasian,0,7,0,0,11,-1,2014-11-17 05:24:37,2014-11-18 01:35:42,14015464CF10A,,2014-11-17,1,F,arrest case no charge,1,15000064MM20A,(M2),78,2014-12-09,Susp Drivers Lic 1st Offense,2015-02-25,2015-03-31,,0,,,,,Risk of Recidivism,7,Medium,2014-11-18,Risk of Violence,2,Low,2014-11-18,2015-12-02,2015-12-23,11,0,21,1,1\r\n9115,robert bochini,robert,bochini,2013-08-10,Male,1958-02-06,58,Greater than 45,Caucasian,0,7,0,0,7,-1,2013-08-09 12:52:57,2014-02-11 06:09:37,13011196CF10A,2013-08-09,,1,F,Possession of Cocaine,1,14006511MO10A,(M1),0,2014-04-17,Trespass After Warning,2014-04-17,2014-04-19,,0,,,,,Risk of Recidivism,7,Medium,2013-08-10,Risk of Violence,3,Low,2013-08-10,2014-04-17,2014-04-19,7,185,250,1,1\r\n9116,ramon matute,ramon,matute,2014-02-24,Male,1965-09-01,50,Greater than 45,Hispanic,0,1,0,0,2,0,2014-02-24 05:18:29,2014-02-25 04:40:49,14006971MU10A,2014-02-24,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-24,2014-02-25,2,1,767,0,0\r\n9119,jabaris gibson,jabaris,gibson,2014-02-23,Male,1989-09-23,26,25 - 45,African-American,0,7,1,1,11,-1,2014-02-22 04:00:04,2014-02-23 08:33:34,14002544CF10A,2014-02-22,,1,F,Tampering With Physical Evidence,1,14021626TC10A,(M1),0,2014-06-10,DWLS Habitual Offender 2nd,2014-06-10,2014-06-11,,0,,,,,Risk of Recidivism,7,Medium,2014-02-23,Risk of Violence,4,Low,2014-02-23,2014-06-10,2014-06-11,11,0,107,1,1\r\n9120,rodquez lovett,rodquez,lovett,2014-02-05,Male,1995-12-11,20,Less than 25,African-American,1,6,0,0,1,-20,2014-01-16 08:27:08,2014-01-19 02:09:26,13017967CF10A,,2014-01-16,20,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-05,Risk of Violence,8,High,2014-02-05,2014-01-16,2014-01-19,1,0,786,0,0\r\n9123,jason franco,jason,franco,2013-04-18,Male,1977-03-07,39,25 - 45,Caucasian,0,1,0,0,1,-48,2013-03-01 08:32:20,2013-03-02 06:12:32,13003111CF10A,2013-03-01,,48,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-18,Risk of Violence,1,Low,2013-04-18,2013-03-01,2013-03-02,1,0,1079,0,0\r\n9125,nicanor durand,nicanor,durand,2013-08-09,Male,1964-09-05,51,Greater than 45,Caucasian,0,2,0,0,1,-1,2013-08-08 04:57:26,2013-08-10 04:22:50,13014993MM10A,2013-08-08,,1,M,Battery,1,14000165MM10A,(M1),,2014-01-04,Battery,,,,1,14000165MM10A,(M1),2014-01-04,Battery,Risk of Recidivism,2,Low,2013-08-09,Risk of Violence,1,Low,2013-08-09,2013-08-08,2013-08-10,1,1,148,1,1\r\n9126,deangelo ash,deangelo,ash,2013-01-21,Male,1985-10-31,30,25 - 45,African-American,0,2,0,0,2,-1,2013-01-20 05:11:14,2013-02-07 09:31:29,13001381MM10A,2013-01-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-21,Risk of Violence,2,Low,2013-01-21,2013-04-08,2013-04-09,2,17,77,0,0\r\n9127,hussain hussain,hussain,hussain,2014-01-12,Male,1976-06-22,39,25 - 45,Other,0,1,0,0,0,-1,2014-01-11 05:27:12,2014-01-14 09:21:38,14000563MM10A,2014-01-11,,1,M,Battery,1,16000308MM30A,(M1),,2016-02-08,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-12,Risk of Violence,1,Low,2014-01-12,2014-01-11,2014-01-14,0,2,757,1,0\r\n9128,robert pellegrino,robert,pellegrino,2014-03-05,Male,1989-11-16,26,25 - 45,Caucasian,1,9,0,0,9,-84,2013-12-11 03:09:51,2014-01-30 10:51:56,09022790CF10A,,2013-12-11,84,F,arrest case no charge,1,14028596TC10A,(M2),0,2014-08-05,Fail Register Vehicle,2014-08-05,2014-10-14,,0,,,,,Risk of Recidivism,9,High,2014-03-05,Risk of Violence,9,High,2014-03-05,2014-08-05,2014-10-14,9,0,153,1,1\r\n9129,rennard robinson,rennard,robinson,2013-04-06,Male,1989-11-28,26,25 - 45,African-American,0,6,0,0,2,-1,2013-04-05 01:11:27,2013-05-08 08:21:55,13004922CF10A,2013-04-05,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-06,Risk of Violence,4,Low,2013-04-06,2013-04-05,2013-05-08,2,32,1091,0,0\r\n9130,marvin mcclam,marvin,mcclam,2014-01-14,Male,1981-01-18,35,25 - 45,African-American,1,9,0,0,13,-188,2013-07-10 01:58:45,2013-11-21 11:14:00,13009667CF10A,2013-07-10,,188,F,Burglary Unoccupied Dwelling,1,15002890CF10A,(F2),0,2015-03-03,Burglary Unoccupied Dwelling,2015-03-03,2015-08-18,,0,,,,,Risk of Recidivism,9,High,2014-01-14,Risk of Violence,5,Medium,2014-01-14,2015-03-03,2015-08-18,13,0,413,1,1\r\n9131,isacc exumat,isacc,exumat,2013-10-21,Male,1995-08-18,20,Less than 25,Other,0,5,0,0,0,-1,2013-10-20 10:25:19,2013-10-21 07:52:13,13019859MM10A,2013-10-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-21,Risk of Violence,6,Medium,2013-10-21,2013-10-20,2013-10-21,0,0,893,0,0\r\n9132,lori giglio,lori,giglio,2014-01-27,Female,1964-11-19,51,Greater than 45,Caucasian,0,5,0,0,7,-157,2013-08-23 03:55:46,2014-01-16 10:30:00,13011879CF10A,2013-08-23,,157,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-27,Risk of Violence,2,Low,2014-01-27,2013-08-23,2014-01-16,7,0,795,0,0\r\n9133,stacy dimitrakis,stacy,dimitrakis,2013-02-25,Female,1989-09-12,26,25 - 45,Caucasian,0,5,0,0,0,-4,2013-02-21 11:28:11,2013-02-22 01:51:52,13002658CF10A,2013-02-21,,4,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-25,Risk of Violence,4,Low,2013-02-25,2013-02-21,2013-02-22,0,0,1131,0,0\r\n9136,lawrence joseph,lawrence,joseph,2013-03-27,Male,1989-07-18,26,25 - 45,African-American,0,4,0,0,5,-1,2013-03-26 06:03:04,2013-03-29 04:56:00,13004389CF10A,2013-03-26,,1,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-27,Risk of Violence,3,Low,2013-03-27,2013-09-14,2013-09-14,5,2,171,0,0\r\n9143,matthew bonner,matthew,bonner,2013-12-06,Male,1995-11-01,20,Less than 25,Caucasian,0,2,0,2,0,-1,2013-12-05 11:38:15,2013-12-06 12:40:41,13016833CF10A,2013-12-05,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-06,Risk of Violence,6,Medium,2013-12-06,2013-12-05,2013-12-06,0,0,847,0,0\r\n9144,james bethea,james,bethea,2014-02-17,Male,1987-08-20,28,25 - 45,African-American,0,3,0,0,0,0,2014-02-17 01:46:34,2014-03-04 05:23:42,14002238CF10A,2014-02-17,,0,F,Criminal Mischief,1,14009075MM10A,(M1),0,2014-06-08,Battery,2014-06-08,2014-11-17,,1,14009075MM10A,(M1),2014-06-08,Battery,Risk of Recidivism,3,Low,2014-02-17,Risk of Violence,3,Low,2014-02-17,2014-06-08,2014-11-17,0,15,111,1,1\r\n9145,keith hanks,keith,hanks,2014-02-04,Male,1992-09-03,23,Less than 25,African-American,0,2,1,2,1,-1,2014-02-03 12:52:23,2014-02-04 08:12:03,14001883MM10A,2014-02-03,,1,M,Driving License Suspended,1,15002152MM40A,(M1),,2015-05-15,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-04,Risk of Violence,4,Low,2014-02-04,2014-02-03,2014-02-04,1,0,465,1,1\r\n9146,jasmine cureton,jasmine,cureton,2013-01-28,Female,1994-08-24,21,Less than 25,African-American,0,5,0,0,0,-4,2013-01-24 11:20:51,2013-01-25 02:16:47,13001720MM10A,2013-01-24,,4,M,Prostitution/Lewd Act Assignation,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-28,Risk of Violence,7,Medium,2013-01-28,2013-11-01,2013-11-02,0,0,277,0,0\r\n9147,makendy demard,makendy,demard,2013-05-03,Male,1990-06-01,25,25 - 45,Other,0,9,0,0,0,-1,2013-05-02 05:54:12,2013-05-03 11:02:07,13006329CF10A,2013-05-02,,1,F,Possession of Cocaine,1,13010418CF10A,(F1),0,2013-07-25,Robbery Firearm Wearing Mask,2013-07-25,2014-10-16,,1,13010418CF10A,(F7),2013-07-25,Burglary Dwelling Armed,Risk of Recidivism,9,High,2013-05-03,Risk of Violence,8,High,2013-05-03,2013-07-25,2014-10-16,0,0,83,1,1\r\n9148,christopher landsgard,christopher,landsgard,2013-10-27,Male,1985-10-02,30,25 - 45,Caucasian,0,3,0,0,0,-1,2013-10-26 11:37:22,2013-10-28 07:52:36,13014963CF10A,2013-10-26,,1,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-27,Risk of Violence,2,Low,2013-10-27,2013-10-26,2013-10-28,0,1,887,0,0\r\n9150,evan blake,evan,blake,2013-10-21,Male,1995-02-27,21,Less than 25,Caucasian,0,9,2,7,2,-3,2013-10-18 01:25:21,2013-10-18 08:21:29,13014568CF10A,2013-10-17,,4,F,Possession of LSD,1,15001555MO10A,(MO3),0,2015-02-06,Poss Of Controlled Substance,2015-02-06,2015-02-07,,1,15015322CF10A,(F2),2015-11-28,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2013-10-21,Risk of Violence,9,High,2013-10-21,2015-02-06,2015-02-07,2,0,473,1,1\r\n9155,anthony steffen,anthony,steffen,2013-12-13,Male,1996-03-07,20,Less than 25,Caucasian,1,7,0,0,1,13,2013-12-26 04:31:44,2014-02-04 08:08:13,13013572CF10A,,2013-09-27,77,F,arrest case no charge,1,14010555CF10A,(F3),0,2014-08-02,Grand Theft in the 3rd Degree,2014-08-02,2014-08-03,,0,,,,,Risk of Recidivism,7,Medium,2013-12-13,Risk of Violence,9,High,2013-12-13,2013-12-26,2014-02-04,1,0,13,0,1\r\n9156,austin wofford,austin,wofford,2013-09-23,Male,1992-01-03,24,Less than 25,Caucasian,0,6,0,0,5,16,2013-10-09 04:55:36,2013-10-28 02:19:21,10010012CF10A,,2012-05-07,504,F,arrest case no charge,1,13019185MM10A,(M1),0,2013-10-09,Possess Drug Paraphernalia,2013-10-09,2013-10-28,,0,,,,,Risk of Recidivism,6,Medium,2013-09-23,Risk of Violence,4,Low,2013-09-23,2013-10-09,2013-10-28,5,0,16,1,1\r\n9157,perry turner,perry,turner,2013-01-22,Male,1980-10-25,35,25 - 45,African-American,0,10,0,0,22,0,2013-01-22 04:07:47,2013-01-24 05:56:12,13001025CF10A,2013-01-22,,0,F,\"Poss3,4 Methylenedioxymethcath\",1,13021408TC10A,(M1),,2013-04-14,Opert With Susp DL 2nd Offens,,,,1,13023901MM10A,(M1),2013-12-28,Battery,Risk of Recidivism,10,High,2013-01-22,Risk of Violence,7,Medium,2013-01-22,2013-01-22,2013-01-24,22,2,82,1,1\r\n9158,kaleen beckford,kaleen,beckford,2014-04-13,Female,1989-02-11,27,25 - 45,Other,0,3,0,0,0,-1,2014-04-12 09:51:42,2014-04-15 02:39:20,14005138CF10A,2014-04-12,,1,F,Dealing in Stolen Property,1,14019677TC10A,(M2),0,2014-05-23,Unlaw LicTag/Sticker Attach,2014-05-23,2014-05-24,,0,,,,,Risk of Recidivism,3,Low,2014-04-13,Risk of Violence,3,Low,2014-04-13,2014-05-23,2014-05-24,0,2,40,1,1\r\n9159,kavin compton,kavin,compton,2013-01-09,Male,1966-01-12,50,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-01-08 03:16:14,2013-01-17 05:32:25,13000614CF10A,,2013-01-08,1,F,arrest case no charge,1,13002119CF10A,(M1),0,2013-02-11,Resist/Obstruct W/O Violence,2013-02-11,2014-03-03,,1,13002119CF10A,(F2),2013-02-11,Agg Battery Grt/Bod/Harm,Risk of Recidivism,2,Low,2013-01-09,Risk of Violence,1,Low,2013-01-09,2013-02-11,2014-03-03,2,8,33,1,1\r\n9160,eddie mitchell,eddie,mitchell,2013-04-14,Male,1990-08-29,25,25 - 45,African-American,0,9,0,0,5,-1,2013-04-13 10:35:00,2013-04-15 04:04:55,13003834MM10A,,2013-04-13,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-14,Risk of Violence,9,High,2013-04-14,2013-09-13,2013-10-16,5,1,152,0,0\r\n9161,rosanne morgan,rosanne,morgan,2013-01-24,Female,1968-03-25,48,Greater than 45,Caucasian,0,9,0,0,1,,,,12012241CF10A,,2012-09-21,125,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-01-24,Risk of Violence,2,Low,2013-01-24,,,1,0,1163,0,0\r\n9163,nathan christie,nathan,christie,2013-03-23,Male,1984-12-15,31,25 - 45,African-American,1,8,1,1,12,-1,2013-03-22 10:04:53,2013-05-01 10:54:18,13005648MM10A,2013-03-22,,1,M,Resist/Obstruct W/O Violence,1,16011963TC40A,(M2),,2016-02-27,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,8,High,2013-03-23,Risk of Violence,5,Medium,2013-03-23,2013-05-14,2013-06-04,12,39,52,0,1\r\n9165,eric mckenzie,eric,mckenzie,2013-08-26,Male,1990-03-15,26,25 - 45,African-American,0,9,0,0,0,-1,2013-08-25 07:42:30,2013-08-26 07:55:00,13012006CF10A,2013-08-25,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-26,Risk of Violence,10,High,2013-08-26,2013-10-23,2013-12-20,0,0,58,0,0\r\n9166,nicholas fleming,nicholas,fleming,2013-05-22,Male,1993-04-22,22,Less than 25,African-American,0,4,0,0,0,-1,2013-05-21 04:56:17,2013-05-22 07:40:50,13007235CF10A,2013-05-21,,1,F,Purchase/P/W/Int Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-22,Risk of Violence,5,Medium,2013-05-22,2013-05-21,2013-05-22,0,0,1045,0,0\r\n9167,willie way,willie,way,2013-12-22,Male,1986-07-15,29,25 - 45,African-American,0,3,0,0,0,0,2013-12-22 03:48:00,2013-12-22 08:17:21,13017641CF10A,2013-12-22,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-22,Risk of Violence,3,Low,2013-12-22,2013-12-22,2013-12-22,0,0,831,0,0\r\n9169,jean georges,jean,georges,2013-05-21,Male,1982-05-09,33,25 - 45,Other,0,1,0,0,2,0,2013-05-21 12:35:39,2013-05-22 02:58:54,13007192CF10A,2013-05-20,,1,F,Child Abuse,1,14004145TC10A,(M2),,2013-11-27,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-21,Risk of Violence,1,Low,2013-05-21,2013-05-21,2013-05-22,2,1,190,1,1\r\n9170,emanoil fanea,emanoil,fanea,2013-01-12,Male,1963-09-13,52,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-11 10:25:43,2013-01-12 01:20:11,13000523CF10A,2013-01-11,,1,F,Burglary Conveyance Assault/Bat,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-12,Risk of Violence,1,Low,2013-01-12,2013-01-11,2013-01-12,1,0,1175,0,0\r\n9171,victor jiron,victor,jiron,2014-09-16,Male,1978-04-25,37,25 - 45,Hispanic,0,1,0,0,0,-1,2014-09-15 09:22:16,2014-09-16 09:04:51,14013718MM10A,2014-09-15,,1,M,Battery,1,15055080TC40A,(M2),,2015-09-18,Expired DL More Than 6 Months,,,,0,,,,,Risk of Recidivism,1,Low,2014-09-16,Risk of Violence,1,Low,2014-09-16,2014-09-15,2014-09-16,0,0,367,1,1\r\n9172,lorenzo mckinney,lorenzo,mckinney,2013-10-29,Male,1994-06-17,21,Less than 25,African-American,0,7,0,0,0,-1,2013-10-28 10:17:17,2013-10-29 02:28:05,13015037CF10A,2013-10-28,,1,F,Possession of Cocaine,1,16000721CF10A,(F2),0,2016-01-18,Deliver Cocaine,2016-01-18,2016-01-26,,0,,,,,Risk of Recidivism,7,Medium,2013-10-29,Risk of Violence,7,Medium,2013-10-29,2016-01-18,2016-01-26,0,0,811,1,0\r\n9173,dalton lewis,dalton,lewis,2013-12-28,Male,1994-06-20,21,Less than 25,Caucasian,0,8,0,0,1,0,2013-12-28 02:53:59,2013-12-28 01:30:48,13017910CF10A,2013-12-27,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-28,Risk of Violence,6,Medium,2013-12-28,2013-12-28,2013-12-28,1,0,825,0,0\r\n9174,raven barry,raven,barry,2014-12-16,Female,1995-05-02,20,Less than 25,Caucasian,0,8,0,0,0,0,2014-12-16 02:14:07,2014-12-18 09:54:50,14016697CF10A,2014-12-16,,0,F,Fraudulent Use of Credit Card,1,15033223TC10A,(M2),0,2015-12-08,Operating W/O Valid License,2015-12-08,2015-12-16,,0,,,,,Risk of Recidivism,8,High,2014-12-16,Risk of Violence,5,Medium,2014-12-16,2015-12-08,2015-12-16,0,2,357,1,1\r\n9175,wilmer arteta,wilmer,arteta,2014-11-03,Male,1972-11-16,43,25 - 45,Hispanic,0,1,0,0,1,-1,2014-11-02 09:58:33,2014-11-03 08:59:17,14040293MU10A,2014-11-02,,1,M,Leaving Acc/Unattended Veh,1,15044118TC40A,(M2),,2015-07-17,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-11-03,Risk of Violence,1,Low,2014-11-03,2014-11-02,2014-11-03,1,0,256,1,1\r\n9176,daniel gonzalez,daniel,gonzalez,2014-02-25,Male,1985-06-10,30,25 - 45,Caucasian,0,1,0,0,1,-1,2014-02-24 06:45:36,2014-02-25 10:30:17,14002600CF10A,2014-02-24,,1,F,Grand Theft in the 3rd Degree,1,15008550TC20A,(M2),,2015-01-27,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,1,Low,2014-02-25,2014-02-24,2014-02-25,1,0,336,1,1\r\n9178,aleshea king,aleshea,king,2013-02-09,Female,1983-04-05,33,25 - 45,African-American,0,4,0,0,3,0,2013-02-09 12:46:54,2013-02-14 09:32:10,13002865MM10A,2013-02-08,,1,M,Tresspass Struct/Conveyance,1,13005448MM10A,(M1),0,2013-03-19,Trespass After Warning,2013-03-19,2013-03-22,,0,,,,,Risk of Recidivism,4,Low,2013-02-09,Risk of Violence,2,Low,2013-02-09,2013-03-19,2013-03-22,3,5,38,1,1\r\n9180,michael leslie,michael,leslie,2013-09-22,Male,1991-07-14,24,Less than 25,African-American,0,7,0,0,3,0,2013-09-22 05:19:47,2013-12-24 10:49:05,13013342CF10A,2013-09-22,,0,F,Aggrav Stalking After Injunctn,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-22,Risk of Violence,6,Medium,2013-09-22,2013-09-22,2013-12-24,3,93,922,0,0\r\n9181,emma davis,emma,davis,2013-02-01,Female,1963-06-26,52,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-01-31 11:06:22,2013-02-01 09:42:04,13002257MM10A,2013-01-31,,1,M,Posses/Disply Susp/Revk/Frd DL,1,13013687TC20A,(M2),,2013-02-26,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-01,Risk of Violence,1,Low,2013-02-01,2013-01-31,2013-02-01,0,0,25,1,1\r\n9182,rebecca strowbridge,rebecca,strowbridge,2013-12-01,Female,1985-07-23,30,25 - 45,African-American,0,7,0,0,11,0,2013-12-01 06:16:04,2013-12-07 07:29:42,13016632CF10A,2013-12-01,,0,F,Crimin Mischief Damage $1000+,1,14004435MM10A,(M1),189,2014-02-03,Theft/To Deprive,2014-08-11,2014-08-27,,0,,,,,Risk of Recidivism,7,Medium,2013-12-01,Risk of Violence,3,Low,2013-12-01,2013-12-01,2013-12-07,11,6,64,1,1\r\n9183,doshan felix,doshan,felix,2013-05-15,Female,1985-06-22,30,25 - 45,Caucasian,0,2,0,0,0,-1,2013-05-14 09:22:05,2013-05-15 01:21:03,13009337MM10A,2013-05-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-15,Risk of Violence,2,Low,2013-05-15,2013-05-14,2013-05-15,0,0,1052,0,0\r\n9185,ricky williams,ricky,williams,2014-11-02,Male,1969-02-10,47,Greater than 45,African-American,0,2,0,0,13,0,2014-11-02 01:23:14,2014-11-02 09:19:17,14014691CF10A,2014-11-02,,0,F,Driving While License Revoked,1,15007244MM10A,(M1),0,2015-07-07,DWLS Suspend Cancel Revoked,2015-07-07,2015-07-25,,0,,,,,Risk of Recidivism,2,Low,2014-11-02,Risk of Violence,1,Low,2014-11-02,2015-07-07,2015-07-25,13,0,247,1,1\r\n9186,ernest ellison,ernest,ellison,2013-02-14,Male,1975-01-02,41,25 - 45,African-American,0,9,1,0,9,-1,2013-02-13 05:10:15,2013-02-15 05:30:02,11006631TC10A,2011-02-12,,733,M,Opert With Susp DL 2nd Offens,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-14,Risk of Violence,6,Medium,2013-02-14,2013-02-13,2013-02-15,9,1,1142,0,0\r\n9187,luis flores,luis,flores,2013-09-28,Male,1994-09-04,21,Less than 25,Hispanic,1,10,0,0,4,-1,2013-09-27 07:57:09,2013-09-28 01:40:07,13013586CF10A,,2013-09-27,1,F,arrest case no charge,1,14008265CF10A,(F2),,2014-06-14,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-28,Risk of Violence,10,High,2013-09-28,2016-03-24,2020-01-01,4,0,259,1,1\r\n9188,ernesto panduro-rojas,ernesto,panduro-rojas,2013-01-18,Male,1962-10-26,53,Greater than 45,Hispanic,0,1,0,0,1,,,,12015942CF10A,2012-10-28,,82,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,,,1,0,1169,0,0\r\n9189,cletus day,cletus,day,2013-12-03,Male,1967-11-01,48,Greater than 45,Caucasian,0,2,0,0,6,-26,2013-11-07 12:05:05,2013-11-13 09:53:57,13017959CF10A,2013-11-06,,27,F,Fel Drive License Perm Revoke,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-03,Risk of Violence,1,Low,2013-12-03,2014-01-25,2014-01-30,6,0,53,0,0\r\n9191,bernice mcrae,bernice,mcrae,2014-04-11,Male,1963-11-30,52,Greater than 45,African-American,0,9,0,0,2,-1,2014-04-10 04:35:30,2014-05-13 07:57:56,14004999CF10A,2014-04-10,,1,F,Possession of Cocaine,1,14009079CF10A,(M2),0,2014-07-02,Trespass Struct/Conveyance,2014-07-02,2015-08-13,,0,,,,,Risk of Recidivism,9,High,2014-04-11,Risk of Violence,3,Low,2014-04-11,2014-07-02,2015-08-13,2,32,82,1,1\r\n9192,kimberly ware,kimberly,ware,2013-02-18,Female,1982-03-17,34,25 - 45,African-American,0,1,0,0,1,-1,2013-02-17 07:32:38,2013-02-18 08:01:59,13003428MM10A,2013-02-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-18,Risk of Violence,1,Low,2013-02-18,2013-02-17,2013-02-18,1,0,1138,0,0\r\n9196,andrew carlson,andrew,carlson,2014-06-10,Male,1980-08-26,35,25 - 45,Caucasian,0,3,0,0,0,-1,2014-06-09 07:07:51,2014-06-10 09:49:21,14007974CF10A,2014-06-09,,1,F,Possession Of Methamphetamine,1,15005384CF10A,(F2),0,2015-04-24,Sell/Man/Del/Pos/W/Int Methado,2015-04-24,2015-06-22,,0,,,,,Risk of Recidivism,3,Low,2014-06-10,Risk of Violence,2,Low,2014-06-10,2015-01-07,2015-01-12,0,0,211,0,1\r\n9197,clevens desmandes,clevens,desmandes,2014-09-14,Male,1990-06-20,25,25 - 45,Other,0,4,0,0,1,-1,2014-09-13 10:33:59,2014-09-15 03:24:26,14012448CF10A,2014-09-13,,1,F,Pos Cannabis W/Intent Sel/Del,1,16000039CF10A,(F3),0,2016-01-01,,2016-01-01,2016-01-01,,0,,,,,Risk of Recidivism,4,Low,2014-09-14,Risk of Violence,3,Low,2014-09-14,2016-01-01,2016-01-01,1,1,474,0,1\r\n9200,dennis jackson,dennis,jackson,2013-12-23,Male,1977-04-01,39,25 - 45,Other,0,4,0,0,1,,,,10015308CF10A,,2012-10-11,438,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-23,Risk of Violence,2,Low,2013-12-23,,,1,0,830,0,0\r\n9201,donald jones,donald,jones,2014-08-06,Male,1992-01-25,24,Less than 25,African-American,0,2,0,1,1,-1,2014-08-05 08:19:29,2014-08-06 02:25:33,14010665CF10A,2014-08-05,,1,F,Pos Cannabis W/Intent Sel/Del,1,15005606MM10A,(M2),0,2015-05-22,Susp Drivers Lic 1st Offense,2015-05-22,2015-05-29,,0,,,,,Risk of Recidivism,2,Low,2014-08-06,Risk of Violence,3,Low,2014-08-06,2015-05-22,2015-05-29,1,0,289,1,1\r\n9202,tina house,tina,house,2013-01-30,Female,1967-06-11,48,Greater than 45,Caucasian,0,8,0,0,17,,,,08015791CF10A,,2008-08-20,1624,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-30,Risk of Violence,5,Medium,2013-01-30,2006-04-19,2007-04-20,17,0,1157,0,0\r\n9203,jose avila,jose,avila,2013-04-15,Male,1984-07-24,31,25 - 45,Hispanic,0,7,0,0,1,583,2014-11-19 10:24:10,2014-11-25 08:38:47,11015474CF10A,,2011-11-20,512,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-15,Risk of Violence,2,Low,2013-04-15,2014-11-19,2014-11-25,1,0,583,0,0\r\n9205,oswaldo lucas,oswaldo,lucas,2013-04-26,Male,1989-08-10,26,25 - 45,Hispanic,0,2,0,0,0,,,,,,,,M,,1,13005940CF10A,(F3),,2015-12-14,Neglect Child / No Bodily Harm,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-26,Risk of Violence,3,Low,2013-04-26,2013-04-26,2013-04-27,0,1,962,1,0\r\n9206,larrell barber,larrell,barber,2014-10-20,Male,1973-04-12,43,25 - 45,African-American,0,8,0,0,3,93,2015-01-21 06:40:58,2015-02-11 08:32:34,14002183CF10A,2014-02-15,,247,F,Possession of Cocaine,1,15000931CF10A,(F3),0,2015-01-21,Felony Petit Theft,2015-01-21,2015-02-11,,0,,,,,Risk of Recidivism,8,High,2014-10-20,Risk of Violence,3,Low,2014-10-20,2015-01-21,2015-02-11,3,0,93,1,1\r\n9207,albert hanna,albert,hanna,2013-12-18,Male,1991-03-16,25,25 - 45,African-American,0,2,0,0,1,0,2013-12-18 02:16:46,2013-12-18 08:23:35,13023416MM10A,2013-12-18,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-18,Risk of Violence,3,Low,2013-12-18,2013-12-18,2013-12-18,1,0,835,0,0\r\n9208,sugar maximes,sugar,maximes,2014-10-31,Male,1981-10-14,34,25 - 45,African-American,0,9,1,0,20,-1,2014-10-30 08:24:02,2014-11-26 03:56:23,14014572CF10A,2014-10-30,,1,F,Possession of Cocaine,1,15021981TC20A,(M2),0,2015-03-26,Operating W/O Valid License,2015-03-26,2015-06-12,,0,,,,,Risk of Recidivism,9,High,2014-10-31,Risk of Violence,5,Medium,2014-10-31,2015-03-26,2015-06-12,20,26,146,1,1\r\n9209,tavarus levine,tavarus,levine,2013-02-25,Male,1990-11-13,25,25 - 45,African-American,0,4,0,0,2,-1,2013-02-24 04:07:52,2013-02-25 02:08:18,13002827CF10A,2013-02-24,,1,F,Grand Theft Firearm,1,13031280TC40A,(M2),,2013-04-21,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-25,Risk of Violence,3,Low,2013-02-25,2013-09-21,2013-09-22,2,0,55,1,1\r\n9210,lester candelaria,lester,candelaria,2013-03-23,Male,1991-12-28,24,Less than 25,Hispanic,1,6,0,0,4,-1,2013-03-22 09:58:54,2013-03-23 07:46:12,13004164CF10A,2013-03-22,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,13008664CF10A,(F3),1,2013-06-19,Crim Use of Personal ID Info,2013-06-20,2015-07-16,,0,,,,,Risk of Recidivism,6,Medium,2013-03-23,Risk of Violence,5,Medium,2013-03-23,2013-05-06,2013-05-07,4,0,44,0,1\r\n9212,richard spitler,richard,spitler,2013-05-08,Male,1959-06-08,56,Greater than 45,Caucasian,0,1,0,0,6,-1,2013-05-07 09:00:57,2013-05-08 06:44:34,13008020CF10A,2013-05-07,,1,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-08,Risk of Violence,1,Low,2013-05-08,2013-05-07,2013-05-08,6,0,1059,0,0\r\n9214,ryan greenwood,ryan,greenwood,2013-04-03,Male,1993-01-23,23,Less than 25,African-American,0,4,0,0,0,0,2013-04-03 02:54:54,2013-04-03 09:43:32,13004794CF10A,2013-04-02,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-03,Risk of Violence,5,Medium,2013-04-03,2013-04-03,2013-04-03,0,0,1094,0,0\r\n9215,christopher lopez,christopher,lopez,2014-01-09,Male,1995-01-02,21,Less than 25,Caucasian,0,4,0,0,0,-1,2014-01-08 10:11:04,2014-01-09 12:48:56,14000342CF10A,2014-01-08,,1,M,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-09,Risk of Violence,6,Medium,2014-01-09,2014-01-08,2014-01-09,0,0,813,0,0\r\n9216,dagobret schmalhaus,dagobret,schmalhaus,2013-08-19,Male,1949-12-21,66,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-18 08:34:53,2013-08-20 07:37:33,13015626MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-20,0,1,956,0,0\r\n9219,marcus albritton,marcus,albritton,2013-03-21,Male,1987-12-21,28,25 - 45,African-American,0,7,0,0,7,-1,2013-03-20 06:48:40,2013-03-21 01:37:15,13005471MM10A,2013-03-20,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-21,Risk of Violence,4,Low,2013-03-21,2013-07-31,2013-09-21,7,0,132,0,0\r\n9220,jonathan olazabal,jonathan,olazabal,2013-12-24,Male,1986-07-23,29,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-24 04:19:53,2013-12-24 01:22:49,13023712MM10A,2013-12-24,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-24,Risk of Violence,1,Low,2013-12-24,2013-12-24,2013-12-24,0,0,829,0,0\r\n9221,brandon jimenez,brandon,jimenez,2014-01-15,Male,1993-05-14,22,Less than 25,Caucasian,0,7,0,0,3,0,2014-01-15 02:46:58,2014-01-17 10:00:33,14000656CF10A,2014-01-14,,1,F,Possession of Cocaine,1,16001078CF10A,(F3),0,2016-01-26,,2016-01-26,2016-02-05,,0,,,,,Risk of Recidivism,7,Medium,2014-01-15,Risk of Violence,5,Medium,2014-01-15,2014-03-09,2014-03-19,3,2,53,0,1\r\n9224,martin espinoza,martin,espinoza,2014-01-06,Male,1977-02-27,39,25 - 45,Caucasian,0,1,0,0,0,-1,2014-01-05 05:46:37,2014-01-06 08:24:58,14000198CF10A,2014-01-05,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-06,Risk of Violence,1,Low,2014-01-06,2014-01-05,2014-01-06,0,0,816,0,0\r\n9225,fritzi beauger,fritzi,beauger,2014-04-19,Male,1982-09-03,33,25 - 45,African-American,0,8,0,1,9,-1,2014-04-18 07:56:19,2014-04-19 08:57:19,14006553MM10A,2014-04-18,,1,M,Battery,1,14007895MM10A,(M1),0,2014-05-14,Tresspass in Struct/Convey Occupy,2014-05-14,2014-05-14,,0,,,,,Risk of Recidivism,8,High,2014-04-19,Risk of Violence,4,Low,2014-04-19,2014-05-14,2014-05-14,9,0,25,0,1\r\n9226,gerard spelman,gerard,spelman,2013-08-21,Male,1987-04-05,29,25 - 45,Caucasian,0,1,0,0,2,-1,2013-08-20 12:16:57,2013-08-21 07:52:14,13011702CF10A,,2013-08-20,1,F,arrest case no charge,1,13123237TC30A,(M2),,2013-11-30,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-21,Risk of Violence,3,Low,2013-08-21,2013-08-20,2013-08-21,2,0,101,1,1\r\n9227,jeremy pelehowski,jeremy,pelehowski,2013-03-28,Male,1985-03-24,31,25 - 45,Caucasian,0,2,0,0,1,-1,2013-03-27 02:03:43,2013-03-28 07:56:52,13003957CF10A,,2013-03-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-28,Risk of Violence,2,Low,2013-03-28,2013-03-27,2013-03-28,1,0,1100,0,0\r\n9229,jason olreidge,jason,olreidge,2013-02-17,Male,1994-03-08,22,Less than 25,African-American,0,8,0,0,0,-1,2013-02-16 11:06:26,2013-04-11 08:20:14,13003371MM10A,2013-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-17,Risk of Violence,6,Medium,2013-02-17,2013-02-16,2013-04-11,0,53,1139,0,0\r\n9230,shannon santamaria,shannon,santamaria,2013-10-25,Female,1993-10-14,22,Less than 25,Caucasian,0,5,0,0,0,-1,2013-10-24 03:53:21,2013-10-25 02:25:57,13020162MM10A,2013-10-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-25,Risk of Violence,5,Medium,2013-10-25,2013-10-24,2013-10-25,0,0,889,0,0\r\n9231,jassen lamparter,jassen,lamparter,2013-09-25,Male,1980-07-23,35,25 - 45,Caucasian,0,4,0,2,3,0,2013-09-25 01:21:21,2013-09-26 04:17:22,13013448CF10A,2013-09-24,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-25,Risk of Violence,1,Low,2013-09-25,2013-09-25,2013-09-26,3,1,919,0,0\r\n9232,christopher myers,christopher,myers,2014-02-08,Male,1987-04-12,29,25 - 45,Caucasian,0,4,0,0,3,-1,2014-02-07 04:26:22,2014-02-08 09:08:33,14001757CF10A,2014-02-07,,1,F,False Imprisonment,1,14011929MU10A,(M1),1,2014-03-25,Possess Drug Paraphernalia,2014-03-26,2014-03-27,,0,,,,,Risk of Recidivism,4,Low,2014-02-08,Risk of Violence,4,Low,2014-02-08,2014-04-17,2014-05-09,3,0,45,1,1\r\n9233,channel medina,channel,medina,2014-01-11,Female,1978-09-17,37,25 - 45,African-American,0,5,0,0,0,,,,14000479CF10A,2014-01-11,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-11,Risk of Violence,2,Low,2014-01-11,,,0,0,811,0,0\r\n9234,stephanie mclaurin,stephanie,mclaurin,2013-01-01,Female,1985-06-29,30,25 - 45,African-American,0,2,0,0,0,,,,13000005CF10A,2012-12-31,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-01,Risk of Violence,2,Low,2013-01-01,,,0,0,1186,0,0\r\n9235,fredrick grant,fredrick,grant,2013-01-18,Male,1960-03-06,56,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-17 10:28:39,2013-01-18 08:29:47,13004749CF10A,2013-01-17,,1,F,Felony/Driving Under Influence,1,15002735MM10A,(M1),0,2015-03-08,Battery,2015-03-08,2015-03-09,,1,15002735MM10A,(M1),2015-03-08,Battery,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2015-03-08,2015-03-09,1,0,779,1,0\r\n9238,zandra haywood,zandra,haywood,2014-01-26,Female,1981-12-20,34,25 - 45,African-American,0,1,0,0,0,-1,2014-01-25 09:03:48,2014-01-26 06:20:03,14001106CF10A,2014-01-25,,1,F,Poss Contr Subst W/o Prescript,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-26,Risk of Violence,1,Low,2014-01-26,2014-01-25,2014-01-26,0,0,796,0,0\r\n9239,steven strobridge,steven,strobridge,2014-02-14,Male,1992-08-21,23,Less than 25,African-American,0,4,0,0,1,-1,2014-02-13 08:55:13,2014-02-17 01:33:31,14002068CF10A,2014-02-13,,1,F,Grand Theft in the 3rd Degree,1,14002105MM20A,(M1),48,2014-07-16,Possess Cannabis/20 Grams Or Less,2014-09-02,2014-09-22,,0,,,,,Risk of Recidivism,4,Low,2014-02-14,Risk of Violence,5,Medium,2014-02-14,2014-02-13,2014-02-17,1,3,152,1,1\r\n9240,fredrick lewis,fredrick,lewis,2014-11-16,Male,1988-06-08,27,25 - 45,African-American,1,5,0,0,1,0,2014-11-16 12:33:35,2014-11-17 08:08:43,14015408CF10A,2014-11-15,,1,F,Grand Theft in the 3rd Degree,1,15060524TC40A,(M2),,2015-10-17,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2014-11-16,Risk of Violence,4,Low,2014-11-16,2014-11-16,2014-11-17,1,1,335,1,1\r\n9241,douglas schnoor,douglas,schnoor,2013-09-14,Male,1972-08-06,43,25 - 45,Caucasian,0,1,0,0,2,-1,2013-09-13 09:19:12,2013-09-14 07:13:34,13012955CF10A,,2013-09-13,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-14,Risk of Violence,1,Low,2013-09-14,2013-09-13,2013-09-14,2,0,930,0,0\r\n9242,paul bergeron,paul,bergeron,2013-01-08,Male,1977-08-19,38,25 - 45,Caucasian,0,1,0,0,0,-1,2013-01-07 10:25:39,2013-01-08 09:34:17,13000412CF10A,2013-01-07,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-08,Risk of Violence,1,Low,2013-01-08,2013-01-07,2013-01-08,0,0,1179,0,0\r\n9243,shaun spells,shaun,spells,2013-03-11,Male,1976-12-08,39,25 - 45,Caucasian,0,3,0,0,3,-1,2013-03-10 07:57:29,2013-03-11 03:27:21,13003533CF10A,2013-03-10,,1,F,Poss Wep Conv Felon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-11,Risk of Violence,6,Medium,2013-03-11,2013-03-10,2013-03-11,3,0,1117,0,0\r\n9244,walter black,walter,black,2014-09-14,Male,1992-04-01,24,Less than 25,African-American,0,3,0,1,1,-1,2014-09-13 10:26:43,2014-09-14 01:26:14,14012447CF10A,2014-09-13,,1,F,Pos Cannabis W/Intent Sel/Del,1,14003073MM20A,(M1),,2014-10-21,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2014-09-14,Risk of Violence,3,Low,2014-09-14,2015-08-13,2015-08-14,1,0,37,1,1\r\n9245,angelo armbrister,angelo,armbrister,2013-04-29,Male,1989-10-06,26,25 - 45,African-American,0,3,0,0,2,0,2013-04-29 12:50:46,2013-04-29 09:25:26,13008163MM10A,2013-04-29,,0,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-29,Risk of Violence,3,Low,2013-04-29,2013-04-29,2013-04-29,2,0,1068,0,0\r\n9246,kellie werba,kellie,werba,2014-01-24,Female,1960-11-25,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-23 09:15:43,2014-01-25 02:22:49,14001463MM10A,2014-01-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-24,Risk of Violence,1,Low,2014-01-24,2014-01-23,2014-01-25,0,1,798,0,0\r\n9247,jamaal phillip,jamaal,phillip,2013-09-14,Male,1980-12-05,35,25 - 45,African-American,0,6,0,0,1,-1,2013-09-13 08:50:06,2013-09-14 07:04:11,13012951CF10A,2013-09-13,,1,F,Grand Theft in the 3rd Degree,1,14064655TC20A,(M2),,2014-09-11,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-14,Risk of Violence,2,Low,2013-09-14,2013-09-13,2013-09-14,1,0,362,1,1\r\n9248,anthony bass,anthony,bass,2013-03-26,Male,1954-05-08,61,Greater than 45,African-American,0,7,0,0,25,-1,2013-03-25 01:22:14,2013-03-26 07:28:22,13004315CF10A,2013-03-25,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-26,Risk of Violence,4,Low,2013-03-26,2013-03-25,2013-03-26,25,0,1102,0,0\r\n9249,willy jean,willy,jean,2013-03-12,Male,1982-09-22,33,25 - 45,Other,0,1,0,0,0,-1,2013-03-11 12:27:40,2013-03-22 09:48:08,13004872MM10A,2013-03-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-12,Risk of Violence,2,Low,2013-03-12,2013-03-11,2013-03-22,0,10,1116,0,0\r\n9253,scott lara,scott,lara,2013-09-27,Male,1976-03-30,40,25 - 45,Caucasian,0,7,0,0,4,0,2013-09-27 01:04:37,2013-09-28 04:31:01,13013615CF10A,2013-09-26,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-27,Risk of Violence,7,Medium,2013-09-27,2013-12-12,2013-12-25,4,1,76,0,0\r\n9254,michael kinsey,michael,kinsey,2013-04-11,Male,1982-06-24,33,25 - 45,African-American,0,2,0,0,3,0,2013-04-11 01:37:03,2013-04-11 07:46:59,13005195CF10A,2013-04-10,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-11,Risk of Violence,1,Low,2013-04-11,2013-04-11,2013-04-11,3,0,1086,0,0\r\n9255,mark follen,mark,follen,2014-11-07,Male,1989-08-30,26,25 - 45,Caucasian,0,6,0,0,0,-1,2014-11-06 06:10:20,2014-11-07 08:40:38,14014921CF10A,2014-11-06,,1,F,Tamper With Witness/Victim/CI,1,15012061CF10A,(F7),,2015-09-17,Burglary Dwelling Assault/Batt,,,,1,15012061CF10A,(F7),2015-09-17,Burglary Dwelling Assault/Batt,Risk of Recidivism,6,Medium,2014-11-07,Risk of Violence,4,Low,2014-11-07,2014-11-06,2014-11-07,0,0,314,1,1\r\n9256,david matos,david,matos,2014-02-03,Male,1984-01-18,32,25 - 45,Caucasian,0,9,1,0,15,0,2014-02-03 12:37:00,2014-05-05 11:08:06,14000254CF10A,,2014-02-02,1,F,arrest case no charge,1,14052181TC20A,(M2),,2014-07-19,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,9,High,2014-02-03,Risk of Violence,9,High,2014-02-03,2014-02-03,2014-05-05,15,91,166,1,1\r\n9257,rodney hudson,rodney,hudson,2014-02-11,Male,1987-12-04,28,25 - 45,African-American,0,2,0,0,0,-1,2014-02-10 04:55:34,2014-02-11 01:42:01,14001882CF10A,2014-02-10,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-11,Risk of Violence,3,Low,2014-02-11,2014-02-10,2014-02-11,0,0,780,0,0\r\n9258,miguel vegarivera,miguel,vegarivera,2013-01-05,Male,1971-02-15,45,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-04 05:56:18,2013-01-05 07:57:29,13000216MM10A,2013-01-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-05,Risk of Violence,1,Low,2013-01-05,2013-01-04,2013-01-05,0,0,1182,0,0\r\n9259,joshua stephens,joshua,stephens,2014-12-09,Male,1985-08-10,30,25 - 45,Caucasian,0,9,0,0,0,-1,2014-12-08 08:31:50,2015-01-14 10:55:38,14016303CF10A,2014-12-08,,1,F,Grand Theft in the 3rd Degree,1,15000688CF10A,(M1),0,2015-01-15,Resist/Obstruct W/O Violence,2015-01-15,2015-07-13,,0,,,,,Risk of Recidivism,9,High,2014-12-09,Risk of Violence,3,Low,2014-12-09,2015-01-15,2015-07-13,0,36,37,1,1\r\n9260,diane karm,diane,karm,2013-03-15,Female,1958-08-10,57,Greater than 45,Caucasian,0,2,0,0,4,-1,2013-03-14 11:21:16,2013-11-27 06:50:42,13003224CF10A,,2013-03-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-15,Risk of Violence,1,Low,2013-03-15,2013-03-14,2013-11-27,4,257,1113,0,0\r\n9261,michael sydnor,michael,sydnor,2013-09-29,Male,1989-08-27,26,25 - 45,African-American,0,7,0,0,3,-1,2013-09-28 06:05:10,2013-11-14 08:19:34,13013621CF10A,2013-09-28,,1,F,Aggravated Battery / Pregnant,1,14007413MM10A,(M1),0,2014-05-05,Battery,2014-05-05,2015-01-02,,1,14007413MM10A,(M1),2014-05-05,Battery,Risk of Recidivism,7,Medium,2013-09-29,Risk of Violence,9,High,2013-09-29,2014-05-05,2015-01-02,3,46,218,1,1\r\n9262,jim beausejour,jim,beausejour,2013-09-06,Male,1981-03-06,35,25 - 45,African-American,0,8,0,0,1,-1,2013-09-05 12:59:53,2013-09-06 01:34:22,13012537CF10A,2013-09-05,,1,F,False Imprisonment,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-09-05,2013-09-06,1,0,938,0,0\r\n9264,eusebio diaz acosta,eusebio,diaz acosta,2013-04-07,Male,1961-12-15,54,Greater than 45,Hispanic,0,1,0,0,0,0,2013-04-07 03:17:08,2013-04-09 07:14:08,13004979CF10A,2013-04-07,,0,F,Grand Theft in the 1st Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-07,Risk of Violence,1,Low,2013-04-07,2013-04-07,2013-04-09,0,2,1090,0,0\r\n9266,amina wong-cooper,amina,wong-cooper,2014-02-26,Female,1986-06-28,29,25 - 45,African-American,0,5,0,0,0,-1,2014-02-25 10:19:07,2014-02-28 09:41:33,14002682CF10A,2014-02-25,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-26,Risk of Violence,4,Low,2014-02-26,2014-02-25,2014-02-28,0,2,765,0,0\r\n9267,michelle kastner,michelle,kastner,2013-12-19,Female,1975-05-22,40,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-18 07:23:28,2013-12-19 09:39:49,13023426MM10A,2013-12-18,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-19,Risk of Violence,1,Low,2013-12-19,2013-12-18,2013-12-19,0,0,834,0,0\r\n9268,ricky brazeal,ricky,brazeal,2013-01-16,Male,1987-06-29,28,25 - 45,Caucasian,0,2,0,0,1,-1,2013-01-15 01:11:23,2013-01-16 06:39:53,13000717CF10A,2013-01-15,,1,F,False Ownership Info/Pawn Item,1,13015755TC40A,(M2),,2013-02-20,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-16,Risk of Violence,3,Low,2013-01-16,2015-06-23,2016-02-09,1,0,35,1,1\r\n9269,ashley morant,ashley,morant,2013-05-11,Female,1990-09-10,25,25 - 45,African-American,0,2,0,1,0,-1,2013-05-10 09:11:37,2013-05-11 07:06:19,13009087MM10A,2013-05-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-11,Risk of Violence,2,Low,2013-05-11,2013-05-10,2013-05-11,0,0,1056,0,0\r\n9270,johnnie robinson,johnnie,robinson,2013-05-16,Male,1971-08-19,44,25 - 45,African-American,0,6,0,0,3,-1,2013-05-15 09:10:58,2013-05-18 05:34:59,13028152TC10A,2013-05-15,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-16,Risk of Violence,5,Medium,2013-05-16,2013-07-10,2013-12-10,3,2,55,0,0\r\n9271,tyrone hawthorne,tyrone,hawthorne,2013-05-02,Male,1968-02-28,48,Greater than 45,Caucasian,0,1,0,0,1,-31,2013-04-01 03:29:17,2013-04-01 08:56:51,13006254MM10A,2013-04-01,,31,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-02,Risk of Violence,1,Low,2013-05-02,2013-04-01,2013-04-01,1,0,1065,0,0\r\n9272,ellan laflamme,ellan,laflamme,2014-02-28,Female,1956-08-11,59,Greater than 45,Caucasian,0,1,0,0,1,-302,2013-05-02 04:55:58,2013-07-01 11:42:55,13006298CF10A,2013-05-02,,302,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-28,Risk of Violence,1,Low,2014-02-28,2013-05-02,2013-07-01,1,0,763,0,0\r\n9273,zachary perez,zachary,perez,2013-05-06,Male,1992-09-04,23,Less than 25,Caucasian,0,4,0,1,4,-1,2013-05-05 09:33:56,2013-05-06 08:00:17,13006435CF10A,2013-05-05,,1,F,Poss Similitude of Drivers Lic,1,14041157MU10A,(M2),1,2014-10-25,Lve/Scen/Acc/Veh/Prop/Damage,2014-10-26,2014-10-26,,0,,,,,Risk of Recidivism,4,Low,2013-05-06,Risk of Violence,4,Low,2013-05-06,2014-10-26,2014-10-26,4,0,537,1,1\r\n9275,johnson pierre,johnson,pierre,2013-10-19,Male,1986-06-12,29,25 - 45,African-American,0,2,0,0,0,-1,2013-10-18 10:11:46,2013-12-30 06:13:11,13014591CF10A,2013-10-18,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-19,Risk of Violence,2,Low,2013-10-19,2014-04-09,2014-04-17,0,72,172,0,0\r\n9276,leland mclaughlin,leland,mclaughlin,2013-08-19,Male,1960-01-15,56,Greater than 45,Caucasian,0,1,0,0,0,-4,2013-08-15 04:33:21,2013-08-15 09:09:29,13015481MM10A,2013-08-15,,4,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-15,2013-08-15,0,0,956,0,0\r\n9277,marcellie cabral,marcellie,cabral,2014-01-24,Female,1988-07-26,27,25 - 45,African-American,0,3,0,0,0,-1,2014-01-23 08:08:50,2014-01-24 10:07:59,14001280MM10A,2014-01-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-24,Risk of Violence,3,Low,2014-01-24,2014-01-23,2014-01-24,0,0,798,0,0\r\n9279,jerriann harris,jerriann,harris,2013-03-04,Female,1987-03-22,29,25 - 45,Caucasian,0,7,0,0,0,-1,2013-03-03 09:50:11,2013-03-04 08:09:45,13004894MM10A,2013-03-03,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-04,Risk of Violence,3,Low,2013-03-04,2013-03-03,2013-03-04,0,0,1124,0,0\r\n9280,rianna magee,rianna,magee,2013-11-12,Female,1981-10-01,34,25 - 45,Caucasian,0,4,0,0,4,-1,2013-11-11 07:15:49,2013-11-12 01:43:06,13021245MM10A,2013-11-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-12,Risk of Violence,2,Low,2013-11-12,2013-11-11,2013-11-12,4,0,871,0,0\r\n9282,samantha stsuria,samantha,stsuria,2013-01-15,Female,1994-01-07,22,Less than 25,African-American,0,7,0,0,0,0,2013-01-15 12:42:27,2013-01-15 02:11:49,13000637CF10A,2013-01-14,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-15,Risk of Violence,6,Medium,2013-01-15,2013-01-15,2013-01-15,0,0,1172,0,0\r\n9283,kevin gilmore,kevin,gilmore,2013-08-14,Male,1976-03-05,40,25 - 45,Caucasian,0,1,0,0,5,7,2013-08-21 12:30:21,2013-08-22 03:44:49,13009379CF10A,2013-07-03,,42,F,Possession of Hydromorphone,1,14039520TC40A,(M2),438,2014-06-06,Unlaw LicTag/Sticker Attach,2015-08-18,2015-08-26,,0,,,,,Risk of Recidivism,1,Low,2013-08-14,Risk of Violence,2,Low,2013-08-14,2013-08-21,2013-08-22,5,0,7,0,1\r\n9284,ulrike ballesteros,ulrike,ballesteros,2014-03-22,Male,1984-09-29,31,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-21 11:14:06,2014-03-24 04:48:24,14004005CF10A,2014-03-21,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-21,2014-03-24,0,2,741,0,0\r\n9285,cynthia taylor,cynthia,taylor,2014-01-05,Male,1968-12-10,47,Greater than 45,African-American,0,2,0,0,3,-1,2014-01-04 11:28:11,2014-01-06 11:05:06,14000160CF10A,2014-01-04,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-05,Risk of Violence,1,Low,2014-01-05,2014-01-04,2014-01-06,3,1,817,0,0\r\n9287,darryl fuentes,darryl,fuentes,2013-08-19,Male,1991-12-07,24,Less than 25,African-American,0,7,0,0,8,-1,2013-08-18 07:10:12,2013-10-07 01:43:10,13011592CF10A,2013-08-18,,1,F,Possession of Cocaine,1,14010813CF10A,(F3),0,2014-08-08,Uttering a Forged Instrument,2014-08-08,2015-06-22,,0,,,,,Risk of Recidivism,7,Medium,2013-08-19,Risk of Violence,7,Medium,2013-08-19,2014-08-08,2015-06-22,8,49,354,1,1\r\n9288,savannah click,savannah,click,2013-09-23,Female,1995-05-25,20,Less than 25,Caucasian,0,4,0,0,1,-49,2013-08-05 12:08:50,2013-09-11 07:01:10,13010811CF10A,2013-08-04,,50,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-23,Risk of Violence,6,Medium,2013-09-23,2013-08-05,2013-09-11,1,0,921,0,0\r\n9292,stephen mcnair,stephen,mcnair,2013-08-10,Male,1976-08-31,39,25 - 45,African-American,0,9,0,0,4,-1,2013-08-09 07:48:19,2013-12-06 04:19:37,13011198CF10A,2013-08-09,,1,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-10,Risk of Violence,5,Medium,2013-08-10,2013-08-09,2013-12-06,4,118,965,0,0\r\n9293,wesley rembert,wesley,rembert,2013-08-18,Male,1987-03-16,29,25 - 45,African-American,0,6,0,0,10,0,2013-08-18 12:03:54,2013-08-19 07:36:27,13011541CF10A,2013-08-17,,1,F,Driving While License Revoked,1,14007903CF10A,(F3),0,2014-06-07,Possession of Ethylone,2014-06-07,2014-06-08,,0,,,,,Risk of Recidivism,6,Medium,2013-08-18,Risk of Violence,6,Medium,2013-08-18,2014-06-07,2014-06-08,10,1,293,1,1\r\n9295,carlos hernandez,carlos,hernandez,2013-09-06,Male,1985-07-18,30,25 - 45,Hispanic,0,2,0,0,2,-1,2013-09-05 07:52:06,2013-09-11 08:03:44,13012540CF10A,2013-09-05,,1,F,Possession of Hydromorphone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-06,Risk of Violence,2,Low,2013-09-06,2013-10-30,2013-11-06,2,5,54,0,0\r\n9296,amanda evans,amanda,evans,2014-10-25,Female,1989-08-31,26,25 - 45,African-American,0,9,0,0,4,-1,2014-10-24 11:09:09,2014-10-25 06:29:59,14014336CF10A,2014-10-24,,1,F,Grand Theft (Motor Vehicle),1,15001610MM20A,(M2),,2015-03-30,Petit Theft,,,,0,,,,,Risk of Recidivism,9,High,2014-10-25,Risk of Violence,7,Medium,2014-10-25,2015-02-19,2015-02-26,4,0,117,0,1\r\n9297,melvin thirsty,melvin,thirsty,2013-10-11,Male,1954-10-15,61,Greater than 45,African-American,0,8,0,0,2,0,2013-10-11 12:18:27,2013-10-12 05:32:14,13019317MM10A,2013-10-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-11,Risk of Violence,10,High,2013-10-11,2013-10-11,2013-10-12,2,1,903,0,0\r\n9298,jorge pena,jorge,pena,2013-10-18,Male,1978-10-19,37,25 - 45,Hispanic,0,4,0,0,3,0,2013-10-18 02:04:41,2013-10-18 07:46:06,13019718MM10A,2013-10-18,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-18,Risk of Violence,3,Low,2013-10-18,2013-10-18,2013-10-18,3,0,896,0,0\r\n9299,roger goindoo,roger,goindoo,2014-05-17,Male,1977-08-03,38,25 - 45,Other,0,1,0,0,1,-1,2014-05-16 05:12:16,2014-05-17 09:27:02,14006807CF10A,2014-05-16,,1,F,Possession Of Alprazolam,1,15008628MM10A,(M1),0,2015-08-15,Battery,2015-08-15,2015-09-10,,1,15008628MM10A,(M1),2015-08-15,Battery,Risk of Recidivism,1,Low,2014-05-17,Risk of Violence,1,Low,2014-05-17,2015-08-15,2015-09-10,1,0,455,1,1\r\n9300,miles vanzandt,miles,vanzandt,2013-01-31,Male,1991-12-17,24,Less than 25,Caucasian,0,5,0,0,2,176,2013-07-26 04:32:30,2013-09-13 08:44:14,12014345CF10A,,2012-12-09,53,F,arrest case no charge,1,13010472CF10A,(F3),0,2013-07-26,Possession Of Alprazolam,2013-07-26,2013-09-13,,0,,,,,Risk of Recidivism,5,Medium,2013-01-31,Risk of Violence,3,Low,2013-01-31,2013-07-26,2013-09-13,2,0,176,1,1\r\n9303,joseph mims,joseph,mims,2013-02-07,Male,1985-11-02,30,25 - 45,African-American,0,9,0,0,0,-1,2013-02-06 01:02:38,2013-02-07 07:22:44,13002696MM10A,2013-02-06,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-07,Risk of Violence,7,Medium,2013-02-07,2013-02-06,2013-02-07,0,0,1149,0,0\r\n9306,marquise knowles,marquise,knowles,2014-05-07,Male,1995-09-30,20,Less than 25,African-American,0,5,0,1,0,-1,2014-05-06 07:09:07,2014-05-07 06:15:42,14007475MM10A,2014-05-06,,1,M,Assault,1,15010213TC40A,(M2),122,2015-02-05,Operating W/O Valid License,2015-06-07,2015-06-08,,0,,,,,Risk of Recidivism,5,Medium,2014-05-07,Risk of Violence,6,Medium,2014-05-07,2015-06-07,2015-06-08,0,0,274,1,1\r\n9307,donald foster,donald,foster,2013-04-02,Male,1959-12-03,56,Greater than 45,African-American,0,9,0,0,22,-1,2013-04-01 11:17:56,2013-06-11 11:34:15,13004651CF10A,2013-04-01,,1,F,Possession of Cocaine,1,13009594CF10A,(F3),0,2013-07-09,Possession of Cocaine,2013-07-09,2013-11-26,,0,,,,,Risk of Recidivism,9,High,2013-04-02,Risk of Violence,5,Medium,2013-04-02,2013-07-09,2013-11-26,22,70,98,1,1\r\n9308,tammy green,tammy,green,2013-10-02,Female,1965-07-16,50,Greater than 45,Caucasian,0,3,0,0,3,0,2013-10-02 05:17:40,2013-10-02 08:17:15,13013838CF10A,2013-10-02,,0,F,Possession of Cocaine,1,14036220TC10A,(M2),,2014-09-15,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-02,Risk of Violence,1,Low,2013-10-02,2013-10-02,2013-10-02,3,0,348,1,1\r\n9309,theova milfort,theova,milfort,2013-12-11,Male,1968-10-09,47,Greater than 45,Other,0,1,0,0,0,-1,2013-12-10 03:24:17,2013-12-12 03:36:20,13017101CF10A,2013-12-10,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-11,Risk of Violence,1,Low,2013-12-11,2013-12-10,2013-12-12,0,1,842,0,0\r\n9310,scott stiefeld,scott,stiefeld,2014-03-26,Male,1959-04-27,56,Greater than 45,Caucasian,0,1,0,0,5,-238,2013-07-31 04:46:16,2014-03-26 10:20:35,13010717CF10A,2013-07-31,,238,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-26,Risk of Violence,1,Low,2014-03-26,2013-07-31,2014-03-26,5,0,737,0,0\r\n9311,maria davila-alvarez,maria,davila-alvarez,2014-03-12,Female,1957-06-09,58,Greater than 45,Hispanic,0,5,0,0,1,-345,2013-04-01 07:04:46,2013-04-02 06:38:55,13004655CF10A,,2013-10-30,133,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-12,Risk of Violence,3,Low,2014-03-12,2013-04-01,2013-04-02,1,0,751,0,0\r\n9318,patrick morrison,patrick,morrison,2013-05-16,Male,1985-05-14,30,25 - 45,African-American,0,6,0,0,10,18,2013-06-03 04:48:39,2013-06-04 03:33:48,11019957CF10A,,2013-05-16,0,F,arrest case no charge,1,13010667MM10A,(M2),0,2013-06-03,Petit Theft,2013-06-03,2013-06-04,,0,,,,,Risk of Recidivism,6,Medium,2013-05-16,Risk of Violence,4,Low,2013-05-16,2013-06-03,2013-06-04,10,0,18,1,1\r\n9319,theodore mullins,theodore,mullins,2013-09-05,Male,1987-08-07,28,25 - 45,African-American,0,6,0,0,12,-69,2013-06-28 06:03:06,2013-07-04 05:28:18,13012417MM10A,,2013-09-04,1,M,arrest case no charge,1,14003870MM10A,(M1),,2013-12-31,Possess Cannabis/20 Grams Or Less,,,,1,14006415MM10A,(M1),2014-03-12,Battery,Risk of Recidivism,6,Medium,2013-09-05,Risk of Violence,5,Medium,2013-09-05,2015-03-09,2015-04-16,12,0,117,1,1\r\n9320,glasford prehay,glasford,prehay,2013-03-28,Male,1956-07-27,59,Greater than 45,African-American,0,1,0,0,1,-1,2013-03-27 09:14:17,2013-05-29 06:13:48,13005992MM10A,2013-03-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-27,2013-05-29,1,62,1100,0,0\r\n9322,hakeem fulton,hakeem,fulton,2014-02-23,Male,1996-01-26,20,Less than 25,African-American,1,10,0,0,1,-1,2014-02-22 11:34:45,2014-08-28 12:48:53,14002530CF10A,2014-02-22,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14013845MM10A,(M1),0,2014-09-17,Resist/Obstruct W/O Violence,2014-09-17,2015-02-09,,0,,,,,Risk of Recidivism,10,High,2014-02-23,Risk of Violence,10,High,2014-02-23,2014-09-17,2015-02-09,1,186,206,1,1\r\n9323,randell williams,randell,williams,2013-09-23,Male,1993-01-04,23,Less than 25,Caucasian,0,9,1,0,4,-1,2013-09-22 01:06:45,2013-09-24 04:25:18,13018070MM10A,2013-09-22,,1,M,Assault,1,15004682MM10A,(M1),0,2015-04-24,Battery,2015-04-24,2015-04-27,,1,15004682MM10A,(M1),2015-04-24,Battery,Risk of Recidivism,9,High,2013-09-23,Risk of Violence,9,High,2013-09-23,2015-04-24,2015-04-27,4,1,578,1,1\r\n9324,christina benemerito,christina,benemerito,2014-10-03,Female,1988-02-04,28,25 - 45,Caucasian,0,6,0,0,2,-3,2014-09-30 06:37:13,2014-09-30 08:33:04,14013193CF10A,2014-09-30,,3,F,Possession of Cocaine,1,16001203MM10A,(M1),0,2016-02-06,Resist/Obstruct W/O Violence,2016-02-06,2016-02-19,,0,,,,,Risk of Recidivism,6,Medium,2014-10-03,Risk of Violence,2,Low,2014-10-03,2016-02-06,2016-02-19,2,0,491,1,1\r\n9325,daniel diaz,daniel,diaz,2013-01-20,Male,1966-04-05,50,Greater than 45,Hispanic,0,9,0,0,3,-1,2013-01-19 07:35:41,2013-02-22 06:46:01,13000894CF10A,2013-01-19,,1,F,Possession of Cocaine,1,13006375CF10A,(F3),0,2013-05-03,Tampering With Physical Evidence,2013-05-03,2013-06-03,,0,,,,,Risk of Recidivism,9,High,2013-01-20,Risk of Violence,4,Low,2013-01-20,2013-05-03,2013-06-03,3,33,103,1,1\r\n9326,kenneth edelen,kenneth,edelen,2014-03-09,Male,1980-11-09,35,25 - 45,Caucasian,0,5,0,0,3,0,2014-03-09 12:45:56,2014-03-10 09:22:31,14004062MM10A,2014-03-09,,0,M,Battery,1,14018144MM10A,(M2),,2014-11-20,Disorderly Intoxication,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-09,Risk of Violence,4,Low,2014-03-09,2014-03-09,2014-03-10,3,1,256,1,1\r\n9327,renet gabriel,renet,gabriel,2013-04-06,Male,1994-01-13,22,Less than 25,African-American,0,9,0,0,1,0,2013-04-06 02:15:39,2013-04-11 07:51:37,13004951CF10A,2013-04-05,,1,F,Pos Cannabis W/Intent Sel/Del,1,14006538MM10A,(M2),0,2014-04-18,Prowling/Loitering,2014-04-18,2014-05-16,,0,,,,,Risk of Recidivism,9,High,2013-04-06,Risk of Violence,7,Medium,2013-04-06,2013-06-20,2013-07-16,1,5,75,0,1\r\n9328,fanny pena,fanny,pena,2014-01-31,Female,1975-03-15,41,25 - 45,Hispanic,0,1,0,0,0,-1,2014-01-30 06:22:27,2014-01-31 10:00:17,14001373CF10A,2014-01-30,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-31,Risk of Violence,1,Low,2014-01-31,2014-01-30,2014-01-31,0,0,791,0,0\r\n9332,miles kemp,miles,kemp,2013-09-11,Male,1994-04-12,22,Less than 25,African-American,0,7,0,0,0,-1,2013-09-10 08:06:30,2013-09-12 08:19:10,13012819CF10A,2013-09-10,,1,F,Purchase Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-11,Risk of Violence,7,Medium,2013-09-11,2014-11-25,2014-12-04,0,1,440,0,0\r\n9334,jerry holston,jerry,holston,2013-08-02,Male,1969-08-07,46,Greater than 45,African-American,0,6,0,0,3,-33,2013-06-30 01:42:29,2013-07-29 11:14:16,13012474MM10A,2013-06-30,,33,M,Battery,1,14006894MM10A,(M2),0,2014-04-24,Trespass Structure/Conveyance,2014-04-24,2014-04-25,,0,,,,,Risk of Recidivism,6,Medium,2013-08-02,Risk of Violence,7,Medium,2013-08-02,2013-09-20,2013-10-17,3,0,49,0,1\r\n9335,herbert johnson,herbert,johnson,2013-06-26,Male,1955-03-08,61,Greater than 45,African-American,0,2,0,0,8,-22,2013-06-04 07:23:25,2013-06-05 01:21:53,13007917CF10A,2013-06-04,,22,F,Possession of Cocaine,1,14010333CF10A,(F3),0,2014-07-29,Possession of Cocaine,2014-07-29,2014-09-16,,0,,,,,Risk of Recidivism,2,Low,2013-06-26,Risk of Violence,1,Low,2013-06-26,2014-07-29,2014-09-16,8,0,398,1,1\r\n9336,colin reddie,colin,reddie,2013-12-07,Male,1990-02-22,26,25 - 45,African-American,0,4,0,0,5,-1,2013-12-06 02:33:03,2013-12-07 01:40:08,13016912CF10A,2013-12-06,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-07,Risk of Violence,5,Medium,2013-12-07,2013-12-06,2013-12-07,5,0,846,0,0\r\n9337,gusdino zaren,gusdino,zaren,2014-02-07,Male,1971-09-07,44,25 - 45,Caucasian,0,5,0,0,1,0,2014-02-07 05:14:26,2014-02-09 01:53:51,14001756CF10A,2014-02-07,,0,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-07,Risk of Violence,2,Low,2014-02-07,2014-02-07,2014-02-09,1,2,784,0,0\r\n9338,norrissie howard,norrissie,howard,2014-03-01,Female,1981-10-07,34,25 - 45,African-American,0,1,0,0,0,-1,2014-02-28 07:07:16,2014-03-01 09:05:07,14003508MM10A,2014-02-28,,1,M,Battery,1,14016766MM10A,(M2),,2014-09-16,Criminal Mischief,,,,1,14016766MM10A,(M1),2014-09-16,Battery,Risk of Recidivism,1,Low,2014-03-01,Risk of Violence,1,Low,2014-03-01,2015-10-27,2015-10-28,0,0,199,1,1\r\n9339,william mulligan,william,mulligan,2013-01-01,Male,1986-10-25,29,25 - 45,Caucasian,0,2,0,0,1,3,2013-01-04 04:53:46,2013-01-05 04:30:35,13000013CF10A,2012-12-31,,1,F,Grand Theft in the 3rd Degree,1,13000349MM10A,(M2),1,2013-01-03,Unlaw LicTag/Sticker Attach,2013-01-04,2013-01-05,,0,,,,,Risk of Recidivism,2,Low,2013-01-01,Risk of Violence,2,Low,2013-01-01,2013-01-04,2013-01-05,1,0,2,1,1\r\n9341,mark alamo,mark,alamo,2014-02-07,Male,1995-06-08,20,Less than 25,Hispanic,0,10,0,0,1,34,2014-03-13 08:09:21,2014-03-14 03:46:00,13013142CF10A,,2013-10-22,108,F,arrest case no charge,1,14004413MM10A,(M2),0,2014-03-13,Operating W/O Valid License,2014-03-13,2014-03-14,,0,,,,,Risk of Recidivism,10,High,2014-02-07,Risk of Violence,8,High,2014-02-07,2014-03-13,2014-03-14,1,0,34,1,1\r\n9343,eclaire salomon,eclaire,salomon,2013-02-09,Male,1986-07-10,29,25 - 45,African-American,0,9,0,0,8,-1,2013-02-08 07:03:27,2013-02-13 09:34:57,13006354TC10A,2012-12-06,,65,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-09,Risk of Violence,4,Low,2013-02-09,2015-02-27,2015-02-27,8,4,748,0,0\r\n9344,ponda burnett,ponda,burnett,2013-09-12,Male,1967-12-14,48,Greater than 45,African-American,0,4,0,0,5,-1,2013-09-11 10:49:58,2013-09-12 08:29:25,13012839CF10A,2013-09-11,,1,F,Possession of Cocaine,1,13018903MM10A,(M1),0,2013-10-04,Misuse Of 911 Or E911 System,2013-10-04,2014-01-04,,0,,,,,Risk of Recidivism,4,Low,2013-09-12,Risk of Violence,3,Low,2013-09-12,2013-10-04,2014-01-04,5,0,22,1,1\r\n9346,mallory williams,mallory,williams,2013-11-01,Female,1984-07-06,31,25 - 45,African-American,0,6,0,0,0,-5,2013-10-27 06:08:06,2013-10-31 09:28:56,13020378MM10A,2013-10-27,,5,M,Leaving Acc/Unattended Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-01,Risk of Violence,4,Low,2013-11-01,2013-10-27,2013-10-31,0,0,882,0,0\r\n9348,wesley fields,wesley,fields,2014-02-03,Male,1994-05-21,21,Less than 25,Caucasian,0,6,0,0,2,-10,2014-01-24 10:45:30,2014-01-25 02:10:25,14001079CF10A,,2014-01-24,10,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-03,Risk of Violence,5,Medium,2014-02-03,2014-01-24,2014-01-25,2,0,788,0,0\r\n9350,john gilhauley,john,gilhauley,2013-04-01,Male,1981-06-28,34,25 - 45,Caucasian,0,5,0,0,4,-1,2013-03-31 07:55:05,2013-04-01 03:57:54,13004629CF10A,2013-03-31,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-01,Risk of Violence,6,Medium,2013-04-01,2013-03-31,2013-04-01,4,0,1096,0,0\r\n9351,joe wallace,joe,wallace,2013-03-28,Male,1961-05-05,54,Greater than 45,African-American,0,6,0,0,21,-1,2013-03-27 09:35:33,2013-03-28 08:15:31,13004418CF10A,2013-03-27,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-27,2013-03-28,21,0,1100,0,0\r\n9352,joey pierce,joey,pierce,2013-08-07,Male,1995-06-13,20,Less than 25,Caucasian,0,10,4,0,4,-1,2013-08-06 10:51:36,2013-08-07 08:37:58,13011017CF10A,2013-08-06,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-07,Risk of Violence,10,High,2013-08-07,2013-08-06,2013-08-07,4,0,968,0,0\r\n9353,james fox,james,fox,2014-07-04,Male,1984-08-03,31,25 - 45,Caucasian,0,3,0,0,1,-1,2014-07-03 10:01:59,2014-08-08 10:32:16,14009379CF10A,2014-07-03,,1,F,Stalking (Aggravated),1,14009443CF10A,(F3),,2014-07-08,Aggrav Stalking After Injunctn,,,,1,14015220CF10A,(F3),2014-11-01,Stalking (Aggravated),Risk of Recidivism,3,Low,2014-07-04,Risk of Violence,3,Low,2014-07-04,2014-07-03,2014-08-08,1,0,4,1,1\r\n9354,shayne maloney,shayne,maloney,2013-10-14,Male,1993-08-18,22,Less than 25,Caucasian,0,4,0,0,0,0,2013-10-14 04:47:15,2013-10-15 04:13:04,13019486MM10A,2013-10-14,,0,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-14,Risk of Violence,5,Medium,2013-10-14,2014-11-16,2014-11-25,0,1,398,0,0\r\n9357,dantonio frazier,dantonio,frazier,2014-03-23,Male,1979-10-26,36,25 - 45,African-American,0,4,0,0,6,-1,2014-03-22 09:43:58,2014-03-23 08:40:01,14005013MM10A,2014-03-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-23,Risk of Violence,1,Low,2014-03-23,2014-03-22,2014-03-23,6,0,740,0,0\r\n9358,john stanley,john,stanley,2014-06-05,Male,1981-07-31,34,25 - 45,African-American,3,7,1,0,9,-1,2014-06-04 09:44:20,2014-06-05 07:57:58,14007714CF10A,2014-06-04,,1,F,False Imprisonment,1,16001500CF10A,(M1),0,2016-02-04,Resist/Obstruct W/O Violence,2016-02-04,2016-02-05,,0,,,,,Risk of Recidivism,7,Medium,2014-06-05,Risk of Violence,6,Medium,2014-06-05,2014-07-09,2014-07-10,9,0,34,0,1\r\n9359,daniel rauer,daniel,rauer,2013-07-09,Male,1979-10-29,36,25 - 45,Caucasian,0,1,0,0,3,,,,13019145TC10A,2013-03-15,,116,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-09,Risk of Violence,2,Low,2013-07-09,,,3,0,997,0,0\r\n9363,demont thomas,demont,thomas,2014-07-09,Male,1984-03-04,32,25 - 45,African-American,0,8,0,0,3,,,,14009375CF10A,2014-07-08,,1,F,Possession of Cannabis,1,14009653CF10A,(F3),,2014-07-15,Driving While License Revoked,,,,0,,,,,Risk of Recidivism,8,High,2014-07-09,Risk of Violence,3,Low,2014-07-09,,,3,0,6,1,1\r\n9364,marcus beachem,marcus,beachem,2013-12-03,Male,1965-11-04,50,Greater than 45,African-American,0,8,0,0,15,-1,2013-12-02 07:48:03,2013-12-03 08:28:31,13022423MM10A,2013-12-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-12-03,Risk of Violence,4,Low,2013-12-03,2013-12-02,2013-12-03,15,0,850,0,0\r\n9365,angelo osceola,angelo,osceola,2014-05-12,Male,1968-11-05,47,Greater than 45,Native American,4,10,0,0,22,0,2014-05-12 02:28:05,2014-05-15 03:47:32,14006607CF10A,2014-05-12,,0,F,Possession of Cocaine,1,14007637CF10A,(M2),0,2014-06-02,Operating W/O Valid License,2014-06-02,2014-06-04,,0,,,,,Risk of Recidivism,10,High,2014-05-12,Risk of Violence,5,Medium,2014-05-12,2014-06-02,2014-06-04,22,3,21,1,1\r\n9366,mimmose nicolas,mimmose,nicolas,2013-05-10,Female,1966-11-12,49,Greater than 45,Other,0,1,0,0,0,-1,2013-05-09 09:53:21,2013-05-10 10:01:06,13008991MM10A,2013-05-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-10,Risk of Violence,1,Low,2013-05-10,2013-05-09,2013-05-10,0,0,1057,0,0\r\n9367,eniee austin,eniee,austin,2014-03-13,Female,1990-05-01,25,25 - 45,African-American,0,9,0,0,7,-102,2013-12-01 06:20:27,2014-03-06 10:15:39,13016616CF10A,2013-12-01,,102,F,Felony Battery w/Prior Convict,1,15001024CF10A,(F3),,2014-11-07,Grand Theft (Motor Vehicle),,,,0,,,,,Risk of Recidivism,9,High,2014-03-13,Risk of Violence,10,High,2014-03-13,2015-11-20,2015-12-18,7,0,239,1,1\r\n9369,timothy bedford,timothy,bedford,2014-01-05,Male,1985-01-15,31,25 - 45,African-American,0,4,0,0,1,-1,2014-01-04 07:13:06,2014-01-05 08:45:51,13012809TC10A,2012-10-18,,444,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-05,Risk of Violence,2,Low,2014-01-05,2014-01-04,2014-01-05,1,0,817,0,0\r\n9370,kevin nunnery,kevin,nunnery,2013-04-24,Male,1967-01-28,49,Greater than 45,African-American,0,3,0,0,10,-1,2013-04-23 12:27:58,2013-05-03 08:40:04,13005798CF10A,2013-04-23,,1,F,Grand Theft in the 3rd Degree,1,13011151CF10A,(F3),0,2013-08-08,Possession of Cocaine,2013-08-08,2014-05-20,,0,,,,,Risk of Recidivism,3,Low,2013-04-24,Risk of Violence,2,Low,2013-04-24,2013-08-08,2014-05-20,10,9,106,1,1\r\n9372,leonard pell,leonard,pell,2013-08-28,Male,1995-03-16,21,Less than 25,African-American,1,9,0,1,2,-1,2013-08-27 05:04:38,2013-10-02 09:14:39,13004338CF10A,,2013-08-28,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-28,Risk of Violence,9,High,2013-08-28,2013-08-27,2013-10-02,2,35,947,0,0\r\n9375,nicole lewis,nicole,lewis,2014-03-20,Female,1989-12-29,26,25 - 45,African-American,0,7,0,0,5,-1,2014-03-19 04:37:45,2014-03-20 10:04:33,14003902CF10A,2014-03-19,,1,F,Uttering a Forged Instrument,1,15015457TC30A,(M1),,2015-02-25,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,7,Medium,2014-03-20,Risk of Violence,5,Medium,2014-03-20,2014-03-19,2014-03-20,5,0,342,1,1\r\n9376,westley mohammed,westley,mohammed,2013-11-12,Male,1986-12-09,29,25 - 45,Other,0,2,0,0,0,-1,2013-11-11 02:32:59,2013-11-12 08:34:16,13015696CF10A,2013-11-11,,1,F,Burglary Dwelling Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-12,Risk of Violence,3,Low,2013-11-12,2013-11-11,2013-11-12,0,0,871,0,0\r\n9377,andres power,andres,power,2013-01-06,Male,1955-01-13,61,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-01-05 11:02:01,2013-01-06 01:15:02,13000207CF10A,,2013-01-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-06,Risk of Violence,1,Low,2013-01-06,2013-01-05,2013-01-06,0,0,1181,0,0\r\n9378,mindy morris,mindy,morris,2014-01-15,Female,1990-08-06,25,25 - 45,Caucasian,0,9,0,0,2,16,2014-01-31 12:17:38,2014-02-01 09:34:23,13016686CF10A,2013-12-02,,44,F,Crim Use of Personal ID Info,1,14005763CF10A,(M1),0,2014-04-25,Resist/Obstruct W/O Violence,2014-04-25,2014-05-02,,1,14016017MM10A,(M1),2014-11-06,Battery,Risk of Recidivism,9,High,2014-01-15,Risk of Violence,7,Medium,2014-01-15,2014-01-31,2014-02-01,2,0,16,0,1\r\n9379,anisa kumar,anisa,kumar,2014-01-13,Female,1989-09-30,26,25 - 45,Other,0,2,0,0,1,-31,2013-12-13 11:08:32,2013-12-14 01:47:43,13017267CF10A,2013-12-13,,31,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-13,Risk of Violence,2,Low,2014-01-13,2013-12-13,2013-12-14,1,0,809,0,0\r\n9380,andy cruz,andy,cruz,2013-12-13,Male,1978-02-05,38,25 - 45,Caucasian,0,4,0,0,5,-1,2013-12-12 06:13:20,2013-12-13 08:38:01,13017206CF10A,2013-12-12,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-13,Risk of Violence,1,Low,2013-12-13,2013-12-12,2013-12-13,5,0,840,0,0\r\n9381,justin armstrong,justin,armstrong,2013-12-09,Male,1981-02-18,35,25 - 45,Caucasian,0,1,0,0,2,-1,2013-12-08 06:16:15,2013-12-09 01:38:42,13022700MM10A,2013-12-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-09,Risk of Violence,2,Low,2013-12-09,2013-12-08,2013-12-09,2,0,844,0,0\r\n9383,jeffrey fulton,jeffrey,fulton,2013-09-19,Male,1966-02-12,50,Greater than 45,African-American,0,5,0,0,10,-48,2013-08-02 12:44:24,2013-09-19 12:07:26,11016558CF10A,,2013-08-02,48,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-19,Risk of Violence,2,Low,2013-09-19,2014-03-17,2014-03-21,10,0,179,0,0\r\n9385,wilfred bryan,wilfred,bryan,2013-02-21,Male,1960-08-19,55,Greater than 45,Other,0,1,0,0,8,-1,2013-02-20 08:27:19,2013-02-26 11:12:50,13002611CF10A,2013-02-20,,1,F,Uttering Worthless Check +$150,1,13011810CF10A,(M2),0,2013-08-22,Expired Tag/ Reg>6 Months 2nd,2013-08-22,2013-08-23,,0,,,,,Risk of Recidivism,1,Low,2013-02-21,Risk of Violence,1,Low,2013-02-21,2013-08-22,2013-08-23,8,5,182,1,1\r\n9386,leroy tyler,leroy,tyler,2014-10-21,Male,1983-04-20,32,25 - 45,African-American,0,4,0,0,4,0,2014-10-21 12:04:06,2014-12-05 11:33:35,14015510CF10A,2014-10-20,,1,F,Felony Battery w/Prior Convict,1,15019182TC10A,(M2),0,2015-06-30,Susp Drivers Lic 1st Offense,2015-06-30,2015-07-18,,0,,,,,Risk of Recidivism,4,Low,2014-10-21,Risk of Violence,2,Low,2014-10-21,2015-06-30,2015-07-18,4,45,252,1,1\r\n9387,abel fernandez,abel,fernandez,2014-01-28,Male,1986-09-17,29,25 - 45,Caucasian,0,2,0,0,1,-18,2014-01-10 09:37:11,2014-01-13 07:58:10,11008191CF10A,,2014-01-10,18,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-28,Risk of Violence,3,Low,2014-01-28,2014-01-10,2014-01-13,1,0,794,0,0\r\n9388,jailton sousa,jailton,sousa,2014-01-21,Male,1969-09-14,46,Greater than 45,Caucasian,0,1,0,0,0,0,2014-01-21 04:33:26,2014-01-21 08:51:18,14000873CF10A,2014-01-21,,0,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-21,Risk of Violence,1,Low,2014-01-21,2014-01-21,2014-01-21,0,0,801,0,0\r\n9392,paul kitchen,paul,kitchen,2013-01-22,Male,1962-07-03,53,Greater than 45,Caucasian,0,5,0,0,1,-1,2013-01-21 11:09:46,2013-01-22 08:54:01,13001443MM10A,2013-01-21,,1,M,Battery,1,15004095CF10A,(F3),1,2015-03-27,Felony Battery (Dom Strang),2015-03-28,2015-03-30,,1,15004095CF10A,(F3),2015-03-27,Felony Battery (Dom Strang),Risk of Recidivism,5,Medium,2013-01-22,Risk of Violence,5,Medium,2013-01-22,2015-03-28,2015-03-30,1,0,794,1,0\r\n9393,samantha feliciano,samantha,feliciano,2014-09-29,Female,1989-01-04,27,25 - 45,Caucasian,0,5,0,0,1,-1,2014-09-28 11:52:36,2014-10-24 01:15:25,14005473CF10A,,2014-09-29,0,F,arrest case no charge,1,15001621MM30A,(M1),170,2015-09-19,Battery,2016-03-07,2016-03-08,,1,15001621MM30A,(M1),2015-09-19,Battery,Risk of Recidivism,5,Medium,2014-09-29,Risk of Violence,5,Medium,2014-09-29,2014-09-28,2014-10-24,1,25,355,1,1\r\n9394,daniel weisberger,daniel,weisberger,2013-01-25,Male,1986-07-15,29,25 - 45,Caucasian,0,8,0,0,4,-2,2013-01-23 09:48:25,2013-01-24 02:08:07,13001078CF10A,2013-01-23,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-25,Risk of Violence,7,Medium,2013-01-25,2013-01-23,2013-01-24,4,0,1162,0,0\r\n9397,bernard miller,bernard,miller,2013-10-20,Male,1989-12-13,26,25 - 45,Other,0,1,0,0,0,-1,2013-10-19 02:44:06,2013-10-21 08:05:00,13014652CF10A,2013-10-19,,1,F,Burglary Unoccupied Dwelling,1,14045103TC10A,(M2),0,2014-12-18,Susp Drivers Lic 1st Offense,2014-12-18,2015-01-06,,0,,,,,Risk of Recidivism,1,Low,2013-10-20,Risk of Violence,2,Low,2013-10-20,2014-12-18,2015-01-06,0,1,424,1,1\r\n9398,michael green,michael,green,2013-03-07,Male,1992-05-17,23,Less than 25,African-American,0,2,0,0,3,-1,2013-03-06 09:22:35,2013-03-07 06:14:09,13004542MM10A,2013-03-06,,1,M,Battery,1,13057325TC30A,(M2),,2013-06-05,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-07,Risk of Violence,3,Low,2013-03-07,2016-02-23,2016-02-23,3,0,90,1,1\r\n9399,jorge martinez,jorge,martinez,2013-09-23,Male,1972-07-03,43,25 - 45,Hispanic,0,3,0,0,3,21,2013-10-14 03:09:48,2013-10-16 09:20:39,13015962MM10A,2013-08-21,,33,M,Battery,1,14014564TC10A,(M1),1,2014-04-01,Opert With Susp DL 2nd Offens,2014-04-02,2014-04-21,,0,,,,,Risk of Recidivism,3,Low,2013-09-23,Risk of Violence,2,Low,2013-09-23,2013-10-14,2013-10-16,3,0,21,0,1\r\n9401,kenneth sabino,kenneth,sabino,2013-10-18,Male,1991-04-22,24,Less than 25,Caucasian,0,2,0,0,1,-1,2013-10-17 07:15:44,2013-10-18 08:16:42,13019708MM10A,2013-10-17,,1,M,Battery,1,15075250TC30A,(M2),,2015-11-11,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-18,Risk of Violence,3,Low,2013-10-18,2013-10-17,2013-10-18,1,0,754,1,0\r\n9402,altero lawrence,altero,lawrence,2014-02-18,Male,1983-02-08,33,25 - 45,African-American,0,10,0,0,18,0,2014-02-18 03:39:40,2014-02-19 07:33:32,14002292CF10A,2014-02-18,,0,F,Grand Theft (Motor Vehicle),1,14003320CF10A,(F3),,2014-03-09,Possession of Cocaine,,,,0,,,,,Risk of Recidivism,10,High,2014-02-18,Risk of Violence,9,High,2014-02-18,2014-02-18,2014-02-19,18,1,19,1,1\r\n9404,roger cooper,roger,cooper,2014-12-02,Male,1983-12-04,32,25 - 45,African-American,0,6,0,0,1,-1,2014-12-01 11:57:48,2014-12-23 09:13:18,14017009MM10A,2014-12-01,,1,M,Assault,1,15004773MM10A,(M1),0,2015-03-29,Viol Injunct Domestic Violence,2015-03-29,2015-09-02,,0,,,,,Risk of Recidivism,6,Medium,2014-12-02,Risk of Violence,3,Low,2014-12-02,2015-03-29,2015-09-02,1,21,117,1,1\r\n9405,marie exume,marie,exume,2013-01-19,Female,1977-07-26,38,25 - 45,African-American,0,10,0,0,7,0,2013-01-19 03:02:43,2013-02-27 08:02:50,13000901CF10A,2013-01-18,,1,F,Grand Theft in the 3rd Degree,1,14009090CF10A,(F3),0,2014-07-02,Felony Petit Theft,2014-07-02,2014-07-04,,0,,,,,Risk of Recidivism,10,High,2013-01-19,Risk of Violence,9,High,2013-01-19,2013-05-22,2013-12-18,7,39,123,0,1\r\n9407,leon manson,leon,manson,2013-08-27,Male,1975-11-08,40,25 - 45,African-American,0,7,0,0,20,-1,2013-08-26 05:08:09,2013-08-27 06:56:09,13012035CF10A,2013-08-26,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-27,Risk of Violence,4,Low,2013-08-27,2015-04-30,2015-08-10,20,0,611,0,0\r\n9408,shila kalichman,shila,kalichman,2013-09-04,Female,1960-10-17,55,Greater than 45,Other,0,1,0,0,5,,,,12012443CF10A,2012-08-22,,378,F,Burglary Structure Unoccup,1,14006223CF10A,(F3),,2014-05-04,Resist Officer w/Violence,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,,,5,0,242,1,1\r\n9412,storm palmer,storm,palmer,2013-03-04,Female,1980-01-09,36,25 - 45,African-American,0,1,0,0,1,-1,2013-03-03 09:45:21,2013-03-04 01:14:15,13004312MM10A,2013-03-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,2,Low,2013-03-04,2013-03-03,2013-03-04,1,0,1124,0,0\r\n9413,evintz etienne,evintz,etienne,2014-03-01,Male,1981-08-07,34,25 - 45,African-American,0,9,0,0,16,-1,2014-02-28 09:40:54,2014-03-01 09:49:28,14002865CF10A,2014-02-28,,1,F,Possession of Cannabis,1,14012776CF10A,(M1),1,2014-09-20,Possess Drug Paraphernalia,2014-09-21,2014-09-22,,0,,,,,Risk of Recidivism,9,High,2014-03-01,Risk of Violence,2,Low,2014-03-01,2014-03-20,2014-05-07,16,0,19,0,1\r\n9414,timothy baldwin,timothy,baldwin,2013-05-06,Male,1975-01-25,41,25 - 45,Caucasian,0,2,0,0,1,-1,2013-05-05 02:01:33,2013-05-07 04:47:46,13008689MM10A,2013-05-05,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,1,15015844TC40A,(M2),,2015-02-04,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-05-05,2013-05-07,1,1,639,1,1\r\n9415,carlo marra,carlo,marra,2013-01-28,Male,1958-04-20,57,Greater than 45,Caucasian,0,1,0,0,7,-1,2013-01-27 07:37:35,2013-06-28 05:35:04,12017311CF10A,,2013-01-27,1,F,arrest case no charge,1,15058864TC40A,(M1),,2015-10-07,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-28,Risk of Violence,1,Low,2013-01-28,2013-01-27,2013-06-28,7,151,982,1,0\r\n9416,ronald pierre,ronald,pierre,2013-10-10,Male,1989-09-12,26,25 - 45,African-American,0,5,0,0,1,-1,2013-10-09 07:03:47,2013-10-10 10:04:05,13011852CF10A,,2013-10-09,1,F,arrest case no charge,1,16007279TC20A,(M2),,2016-02-05,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-10,Risk of Violence,4,Low,2013-10-10,2013-10-09,2013-10-10,1,0,848,1,0\r\n9417,michael marafino,michael,marafino,2014-04-22,Male,1976-08-31,39,25 - 45,Caucasian,0,6,0,0,2,-88,2014-01-24 06:15:32,2014-02-24 10:51:20,14001058CF10A,,2014-01-24,88,F,arrest case no charge,1,14013930MM10A,(M1),0,2014-09-17,Extradition/Defendants,2014-09-17,2014-10-03,,0,,,,,Risk of Recidivism,6,Medium,2014-04-22,Risk of Violence,3,Low,2014-04-22,2014-09-17,2014-10-03,2,0,148,1,1\r\n9419,bienvenido valoy,bienvenido,valoy,2014-10-08,Male,1971-01-25,45,Greater than 45,African-American,0,3,0,0,0,0,2014-10-08 04:47:25,2014-10-09 04:05:02,14013596CF10A,2014-10-08,,0,F,Possession of Cocaine,1,15008069CF10A,(F2),-1,2015-06-19,Deliver Cocaine,2015-06-18,2015-06-19,,0,,,,,Risk of Recidivism,3,Low,2014-10-08,Risk of Violence,1,Low,2014-10-08,2015-06-18,2015-06-19,0,1,253,0,1\r\n9420,gregory bishop,gregory,bishop,2013-05-10,Male,1989-06-30,26,25 - 45,African-American,0,3,0,1,2,-7,2013-05-03 04:10:54,2013-05-10 12:24:16,13006352CF10A,2013-05-03,,7,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-10,Risk of Violence,3,Low,2013-05-10,2013-05-03,2013-05-10,2,0,1057,0,0\r\n9425,aurelia coffey,aurelia,coffey,2014-01-30,Female,1967-09-19,48,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-29 06:04:45,2014-01-30 10:34:50,14001313CF10A,2014-01-29,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-30,Risk of Violence,1,Low,2014-01-30,2014-01-29,2014-01-30,0,0,792,0,0\r\n9428,george melbourne,george,melbourne,2013-04-20,Male,1963-07-12,52,Greater than 45,Caucasian,0,2,0,0,7,-1,2013-04-19 11:43:36,2013-04-20 08:15:31,13007601MM10A,2013-04-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-20,Risk of Violence,2,Low,2013-04-20,2013-04-19,2013-04-20,7,0,1077,0,0\r\n9429,jesus hernandez,jesus,hernandez,2013-01-08,Male,1993-05-24,22,Less than 25,Hispanic,0,3,0,0,2,-1,2013-01-07 09:12:09,2013-02-08 01:06:30,13000286CF10A,,2013-01-07,1,F,arrest case no charge,1,14013741CF10A,(M1),1,2014-10-10,Viol Injunct Domestic Violence,2014-10-11,2015-04-03,,0,,,,,Risk of Recidivism,3,Low,2013-01-08,Risk of Violence,5,Medium,2013-01-08,2013-01-07,2013-02-08,2,31,640,1,1\r\n9433,grace harris,grace,harris,2013-05-01,Female,1972-09-20,43,25 - 45,African-American,0,1,0,0,0,-1,2013-04-30 03:49:28,2013-05-01 10:14:34,13008356MM10A,2013-04-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-01,Risk of Violence,1,Low,2013-05-01,2013-04-30,2013-05-01,0,0,1066,0,0\r\n9434,dorian fields,dorian,fields,2013-11-12,Male,1980-05-08,35,25 - 45,African-American,0,1,0,0,2,,,,13015684CF10A,2013-11-11,,1,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-12,Risk of Violence,1,Low,2013-11-12,,,2,0,871,0,0\r\n9435,tyler wright,tyler,wright,2013-08-01,Male,1992-01-05,24,Less than 25,Caucasian,0,5,0,0,3,0,2013-08-01 06:42:08,2013-09-06 03:32:31,13010743CF10A,2013-08-01,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-01,Risk of Violence,4,Low,2013-08-01,2014-08-18,2014-10-15,3,36,382,0,0\r\n9436,barel sands,barel,sands,2014-10-05,Male,1988-07-17,27,25 - 45,African-American,0,7,0,0,11,-1,2014-10-04 02:29:18,2014-10-09 05:25:59,14013369CF10A,2014-10-04,,1,F,Driving While License Revoked,1,16002276MM10A,(M2),0,2016-02-03,Trespass Struct/Conveyance,2016-02-03,2016-02-04,,0,,,,,Risk of Recidivism,7,Medium,2014-10-05,Risk of Violence,5,Medium,2014-10-05,2014-11-12,2014-11-14,11,4,38,0,1\r\n9437,carlos garcia,carlos,garcia,2014-02-06,Male,1992-12-17,23,Less than 25,Hispanic,0,9,1,0,2,-1,2014-02-05 10:23:21,2014-02-28 01:40:43,14001630CF10A,2014-02-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-06,Risk of Violence,7,Medium,2014-02-06,2014-02-05,2014-02-28,2,22,785,0,0\r\n9438,william shaw,william,shaw,2013-05-30,Male,1959-12-26,56,Greater than 45,African-American,0,7,0,0,28,-69,2013-03-22 03:23:49,2013-05-21 11:03:28,13004184CF10A,2013-03-22,,69,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-30,Risk of Violence,4,Low,2013-05-30,2014-04-15,2014-05-06,28,0,320,0,0\r\n9439,xavier hillard,xavier,hillard,2013-03-26,Male,1987-05-27,28,25 - 45,African-American,0,6,0,0,2,-1,2013-03-25 06:38:21,2013-03-26 01:04:30,13004332CF10A,2013-03-25,,1,F,Poss Cocaine/Intent To Del/Sel,1,13021361MM10A,(M1),0,2013-07-26,Indecent Exposure,2013-07-26,2014-01-19,,0,,,,,Risk of Recidivism,6,Medium,2013-03-26,Risk of Violence,4,Low,2013-03-26,2013-07-26,2014-01-19,2,0,122,1,1\r\n9440,barclay beljour,barclay,beljour,2014-02-03,Male,1994-07-20,21,Less than 25,African-American,0,5,0,0,0,0,2014-02-03 04:26:42,2014-02-03 08:48:36,14001510CF10A,2014-02-03,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-03,Risk of Violence,6,Medium,2014-02-03,2014-02-03,2014-02-03,0,0,788,0,0\r\n9441,william murrell,william,murrell,2014-04-16,Male,1983-01-06,33,25 - 45,African-American,0,9,0,0,5,-1,2014-04-15 01:07:07,2014-04-16 08:49:40,11020036MM10A,2011-07-02,,1019,M,Battery,1,14053769TC20A,(M2),241,2014-07-23,Driving License Suspended,2015-03-21,2015-05-09,,0,,,,,Risk of Recidivism,9,High,2014-04-16,Risk of Violence,3,Low,2014-04-16,2016-02-09,2016-03-19,5,0,98,1,1\r\n9442,tony miller,tony,miller,2013-03-23,Male,1990-07-09,25,25 - 45,African-American,0,8,0,0,1,-1,2013-03-22 06:17:15,2013-03-23 10:32:49,13004160CF10A,2013-03-22,,1,F,Pos Cannabis W/Intent Sel/Del,1,14005559MM10A,(M1),,2014-03-06,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2013-03-23,Risk of Violence,8,High,2013-03-23,2013-03-22,2013-03-23,1,0,348,1,1\r\n9443,caleb fields,caleb,fields,2014-10-23,Male,1979-10-22,36,25 - 45,African-American,0,8,2,0,17,-1,2014-10-22 04:30:53,2014-11-06 05:02:13,14013568CF10A,,2014-10-22,1,F,arrest case no charge,1,15006193CF10A,(F3),,2015-04-08,Aggrav Stalking After Injunctn,,,,0,,,,,Risk of Recidivism,8,High,2014-10-23,Risk of Violence,5,Medium,2014-10-23,2014-10-22,2014-11-06,17,14,167,1,1\r\n9444,jennifer smith,jennifer,smith,2013-10-28,Female,1990-12-08,25,25 - 45,Caucasian,0,5,0,0,0,0,2013-10-28 04:36:41,2013-10-29 02:20:00,13015040CF10A,2013-10-28,,0,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-28,Risk of Violence,3,Low,2013-10-28,2014-11-26,2014-12-09,0,1,394,0,0\r\n9446,lucien antoine,lucien,antoine,2014-01-30,Male,1984-07-08,31,25 - 45,Other,0,6,0,0,3,,,,14001305CF10A,2014-01-29,,1,F,Felony Driving While Lic Suspd,1,16000672MM20A,(M1),,2016-03-08,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-30,Risk of Violence,3,Low,2014-01-30,,,3,0,768,1,0\r\n9448,matthew whittington,matthew,whittington,2013-01-18,Male,1970-02-13,46,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-01-17 12:41:20,2013-01-18 01:52:16,13001123MO10A,2013-01-16,,2,M,DOC/Cause Public Danger,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-18,Risk of Violence,3,Low,2013-01-18,2013-01-17,2013-01-18,0,0,1169,0,0\r\n9450,kasha matthews,kasha,matthews,2013-04-20,Female,1991-06-04,24,Less than 25,African-American,0,7,0,0,0,0,2013-04-20 04:53:06,2013-04-22 05:17:41,13005677CF10A,,2013-04-20,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-20,Risk of Violence,4,Low,2013-04-20,2015-07-30,2015-08-06,0,2,831,0,0\r\n9451,ricky gamble,ricky,gamble,2013-01-29,Male,1988-03-17,28,25 - 45,African-American,0,7,0,0,4,0,2013-01-29 12:47:47,2013-02-04 05:02:07,13001369CF10A,2013-01-29,,0,F,Battery on a Person Over 65,1,14012506MM10A,(M2),0,2014-08-19,Petit Theft,2014-08-19,2014-08-28,,0,,,,,Risk of Recidivism,7,Medium,2013-01-29,Risk of Violence,6,Medium,2013-01-29,2014-08-19,2014-08-28,4,6,567,1,1\r\n9452,dean parks,dean,parks,2014-01-06,Male,1987-06-21,28,25 - 45,African-American,0,7,0,1,12,-2,2014-01-04 01:05:47,2014-01-05 02:30:39,14000170MM10A,2014-01-04,,2,M,Criminal Mischief Damage <$200,1,14009121CF10A,(F1),,2014-02-14,Deliver Cocaine 1000FT Park,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-06,Risk of Violence,3,Low,2014-01-06,2015-05-12,2020-01-01,12,0,39,1,1\r\n9458,quentin bullard,quentin,bullard,2014-07-20,Male,1993-03-09,23,Less than 25,African-American,0,3,0,0,0,0,2014-07-20 05:21:13,2014-07-21 08:03:18,14011088MM10A,2014-07-20,,0,M,Disorderly Conduct,1,15004224CF10A,(F3),0,2015-03-31,Possession of Ethylone,2015-03-31,2015-03-31,,0,,,,,Risk of Recidivism,3,Low,2014-07-20,Risk of Violence,5,Medium,2014-07-20,2015-03-31,2015-03-31,0,1,254,0,1\r\n9459,ruslan delgado,ruslan,delgado,2013-01-14,Male,1991-12-31,24,Less than 25,Other,0,3,0,0,0,0,2013-01-14 03:09:07,2013-01-14 06:34:18,13000906MM10A,2013-01-14,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-14,Risk of Violence,4,Low,2013-01-14,2013-01-14,2013-01-14,0,0,1173,0,0\r\n9460,carlos martinez,carlos,martinez,2013-02-01,Male,1975-10-26,40,25 - 45,Hispanic,0,3,0,0,0,0,2013-02-01 02:35:40,2013-02-01 01:46:17,13002368MM10A,2013-02-01,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-01,Risk of Violence,3,Low,2013-02-01,2013-02-01,2013-02-01,0,0,1155,0,0\r\n9461,julio rodriguez,julio,rodriguez,2014-02-10,Male,1980-03-26,36,25 - 45,Hispanic,0,2,0,0,1,0,2014-02-10 03:17:30,2014-02-10 08:03:23,14002291MM10A,2014-02-10,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-10,Risk of Violence,1,Low,2014-02-10,2014-02-10,2014-02-10,1,0,781,0,0\r\n9462,arthur andreu,arthur,andreu,2013-02-04,Male,1966-02-25,50,Greater than 45,Caucasian,0,6,0,0,1,-1,2013-02-03 05:31:13,2013-03-15 09:45:14,13002419MM10A,2013-02-03,,1,M,Prowling/Loitering,1,13012542MM10A,(M1),,2013-05-18,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-04,Risk of Violence,3,Low,2013-02-04,2013-02-03,2013-03-15,1,39,103,1,1\r\n9463,oscar perez-godinez,oscar,perez-godinez,2013-10-22,Male,1982-10-09,33,25 - 45,Hispanic,0,1,0,0,1,,,,13016916TC10A,2013-03-17,,219,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,,,1,0,892,0,0\r\n9464,clifton hiott,clifton,hiott,2013-05-07,Male,1991-08-14,24,Less than 25,Caucasian,0,2,0,0,0,0,2013-05-07 03:24:59,2013-05-08 03:17:44,13008836MM10A,2013-05-07,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-07,Risk of Violence,3,Low,2013-05-07,2013-05-07,2013-05-08,0,1,1060,0,0\r\n9465,herman holmes,herman,holmes,2013-05-27,Female,1961-01-08,55,Greater than 45,African-American,0,1,0,0,2,-1,2013-05-26 09:39:19,2013-05-27 12:50:46,13007510CF10A,2013-05-26,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-27,Risk of Violence,1,Low,2013-05-27,2013-05-26,2013-05-27,2,0,1040,0,0\r\n9467,tremaine johnson,tremaine,johnson,2013-09-21,Male,1993-05-09,22,Less than 25,African-American,0,7,0,0,0,-1,2013-09-20 08:56:21,2013-09-23 08:17:38,13013251CF10A,2013-09-20,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,13020626MO10A,(MO3),0,2013-11-01,Poss Of Controlled Substance,2013-11-01,2013-11-13,,0,,,,,Risk of Recidivism,7,Medium,2013-09-21,Risk of Violence,8,High,2013-09-21,2013-11-01,2013-11-13,0,2,41,1,1\r\n9473,david smith,david,smith,2013-08-07,Male,1977-05-08,38,25 - 45,African-American,0,7,0,0,14,-1,2013-08-06 04:46:34,2013-10-01 08:40:14,13011030CF10A,2013-08-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-07,Risk of Violence,3,Low,2013-08-07,2015-09-19,2015-09-28,14,55,773,0,0\r\n9475,bryan mcdougle,bryan,mcdougle,2013-09-04,Male,1985-04-12,31,25 - 45,African-American,0,1,0,0,1,-1,2013-09-03 07:13:09,2013-09-04 12:44:15,13012444CF10A,2013-09-03,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-04,Risk of Violence,2,Low,2013-09-04,2013-09-03,2013-09-04,1,0,940,0,0\r\n9476,jaimie peterson,jaimie,peterson,2014-01-12,Female,1986-01-02,30,25 - 45,African-American,0,2,0,0,3,-1,2014-01-11 06:56:43,2014-01-12 02:17:00,14000484CF10A,2014-01-11,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-12,Risk of Violence,2,Low,2014-01-12,2014-01-11,2014-01-12,3,0,810,0,0\r\n9479,frenel cajilus,frenel,cajilus,2013-03-14,Male,1963-06-11,52,Greater than 45,Caucasian,0,1,0,0,1,714,2015-02-26 03:25:51,2015-04-07 06:16:49,09018555CF10A,,2012-12-10,94,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-14,Risk of Violence,1,Low,2013-03-14,2015-02-26,2015-04-07,1,0,714,0,0\r\n9483,jack darlington,jack,darlington,2014-06-18,Male,1979-04-01,37,25 - 45,African-American,0,8,0,0,16,-1,2014-06-17 01:17:25,2014-06-19 03:41:00,14008372CF10A,,2014-06-17,1,F,arrest case no charge,1,15007065MM10A,(M1),,2015-06-13,Battery,,,,1,15007065MM10A,(M1),2015-06-13,Battery,Risk of Recidivism,8,High,2014-06-18,Risk of Violence,3,Low,2014-06-18,2014-08-21,2015-01-04,16,1,64,0,1\r\n9484,leslie slager,leslie,slager,2013-01-14,Female,1974-11-20,41,25 - 45,Caucasian,0,2,0,0,1,0,2013-01-14 02:19:29,2013-02-12 05:24:53,13000872MM10A,2013-01-14,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-14,Risk of Violence,1,Low,2013-01-14,2013-01-14,2013-02-12,1,29,1173,0,0\r\n9486,akeel franklin,akeel,franklin,2014-01-31,Male,1995-09-25,20,Less than 25,African-American,0,5,0,0,0,-1,2014-01-30 01:49:49,2014-01-31 01:46:52,14001350CF10A,2014-01-30,,1,F,Deliver Cannabis 1000FTSch,1,14010545MM10A,(M1),0,2014-07-09,Possess Cannabis/20 Grams Or Less,2014-07-09,2014-07-10,,1,16001450CF10A,(F3),2016-02-03,Aggravated Assault w/Firearm,Risk of Recidivism,5,Medium,2014-01-31,Risk of Violence,7,Medium,2014-01-31,2014-07-09,2014-07-10,0,0,159,1,1\r\n9488,joffre tello,joffre,tello,2013-05-14,Male,1995-04-04,21,Less than 25,Caucasian,0,4,0,0,0,0,2013-05-14 04:05:48,2013-05-15 03:52:11,13009345MM10A,2013-05-14,,0,M,Battery,1,13019785MM10A,(M1),1,2013-10-18,Resist/Obstruct W/O Violence,2013-10-19,2013-10-19,,0,,,,,Risk of Recidivism,4,Low,2013-05-14,Risk of Violence,7,Medium,2013-05-14,2013-05-14,2013-05-15,0,1,157,1,1\r\n9491,erik manning,erik,manning,2013-12-05,Male,1993-12-03,22,Less than 25,Caucasian,0,5,0,0,1,0,2013-12-05 12:27:40,2013-12-14 11:44:15,13022562MM10A,2013-12-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-05,Risk of Violence,5,Medium,2013-12-05,2013-12-05,2013-12-14,1,9,848,0,0\r\n9492,clinton stoney,clinton,stoney,2013-03-28,Male,1978-01-20,38,25 - 45,African-American,0,6,0,0,7,-1,2013-03-27 11:16:50,2013-10-11 06:18:15,13005976MM10A,2013-03-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-28,Risk of Violence,8,High,2013-03-28,2013-03-27,2013-10-11,7,197,1100,0,0\r\n9493,benjamin hines,benjamin,hines,2013-08-30,Male,1984-11-02,31,25 - 45,African-American,0,5,0,0,0,-1,2013-08-29 03:49:10,2013-09-06 04:06:56,13012234CF10A,2013-08-29,,1,F,Forging Bank Bills/Promis Note,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-30,Risk of Violence,2,Low,2013-08-30,2013-08-29,2013-09-06,0,7,945,0,0\r\n9494,kiyoshi tanaka-bustios,kiyoshi,tanaka-bustios,2013-08-16,Male,1987-08-31,28,25 - 45,Caucasian,0,7,0,0,0,0,2013-08-16 12:31:49,2013-10-09 03:10:07,13011476CF10A,2013-08-15,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-16,Risk of Violence,4,Low,2013-08-16,2014-03-28,2014-04-28,0,54,224,0,0\r\n9495,joseph magana,joseph,magana,2014-10-13,Male,1994-07-01,21,Less than 25,Hispanic,0,7,1,0,2,-1,2014-10-12 11:11:46,2014-10-15 01:25:15,14013787CF10A,2014-10-12,,1,F,Burglary Dwelling Occupied,1,15007339MM10A,(M1),0,2015-07-09,Battery,2015-07-09,2015-07-10,,1,15007339MM10A,(M1),2015-07-09,Battery,Risk of Recidivism,7,Medium,2014-10-13,Risk of Violence,8,High,2014-10-13,2015-07-09,2015-07-10,2,2,269,1,1\r\n9497,jonnie ferris,jonnie,ferris,2013-03-30,Male,1976-10-19,39,25 - 45,African-American,0,8,0,0,1,-1,2013-03-29 11:09:55,2013-03-30 10:17:01,13004518CF10A,2013-03-29,,1,F,Unlawful Conveyance of Fuel,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-30,Risk of Violence,4,Low,2013-03-30,2013-03-29,2013-03-30,1,0,1098,0,0\r\n9499,elvis bryan,elvis,bryan,2013-03-12,Male,1981-10-13,34,25 - 45,African-American,0,7,0,0,22,-1,2013-03-11 08:02:13,2013-03-12 10:19:12,13003595CF10A,2013-03-11,,1,F,Driving While License Revoked,1,13010546CF10A,(F3),,2013-07-27,Driving While License Revoked,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-12,Risk of Violence,2,Low,2013-03-12,2013-10-17,2013-10-18,22,0,137,1,1\r\n9500,christopher clingan,christopher,clingan,2013-01-16,Male,1984-02-07,32,25 - 45,Caucasian,0,2,1,0,2,293,2013-11-05 12:58:38,2014-01-14 10:00:00,12003600CF10A,,2012-07-21,179,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-16,Risk of Violence,2,Low,2013-01-16,2013-11-05,2014-01-14,2,0,293,0,0\r\n9501,mikrko casalino,mikrko,casalino,2014-03-31,Male,1970-06-19,45,Greater than 45,Hispanic,0,1,0,0,0,0,2014-03-31 01:28:27,2014-04-01 04:42:33,14005510MM10A,2014-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-31,2014-04-01,0,1,732,0,0\r\n9504,charles mcintyre,charles,mcintyre,2013-03-08,Male,1979-11-16,36,25 - 45,African-American,0,5,0,2,7,-32,2013-02-04 12:18:13,2013-02-12 09:47:40,12012106CF10A,,2013-02-04,32,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-08,Risk of Violence,5,Medium,2013-03-08,2015-06-22,2015-06-29,7,0,836,0,0\r\n9506,patrick frazier,patrick,frazier,2013-03-28,Male,1991-08-03,24,Less than 25,African-American,0,9,0,0,0,-1,2013-03-27 07:55:09,2013-04-11 12:11:23,13005996MM10A,2013-03-27,,1,M,Battery,1,14046590TC40A,(M2),222,2014-07-04,Susp Drivers Lic 1st Offense,2015-02-11,2015-02-13,,0,,,,,Risk of Recidivism,9,High,2013-03-28,Risk of Violence,6,Medium,2013-03-28,2013-03-27,2013-04-11,0,14,463,1,1\r\n9509,joe porter,joe,porter,2014-09-19,Male,1989-01-30,27,25 - 45,African-American,0,7,0,0,9,-1,2014-09-18 08:58:45,2014-09-19 01:56:48,14012675CF10A,2014-09-18,,1,F,Poss Contr Subst W/o Prescript,1,14016419MM10A,(M2),0,2014-11-03,Trespass Structure/Conveyance,2014-11-03,2014-12-13,,1,15013027MM10A,(M1),2015-12-16,Battery,Risk of Recidivism,7,Medium,2014-09-19,Risk of Violence,6,Medium,2014-09-19,2014-11-03,2014-12-13,9,0,45,1,1\r\n9511,richar ayme,richar,ayme,2014-03-06,Male,1985-12-01,30,25 - 45,Hispanic,0,1,0,0,0,0,2014-03-06 02:54:16,2014-03-06 08:15:55,14003189CF10A,,2014-03-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-06,Risk of Violence,2,Low,2014-03-06,2014-03-06,2014-03-06,0,0,757,0,0\r\n9512,barry downs,barry,downs,2013-03-12,Male,1954-08-06,61,Greater than 45,African-American,0,6,0,0,8,-35,2013-02-05 03:29:55,2013-03-12 01:00:44,13001758CF10A,,2013-03-01,11,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-12,Risk of Violence,3,Low,2013-03-12,2013-02-05,2013-03-12,8,0,1116,0,0\r\n9513,arealious grier,arealious,grier,2013-04-04,Male,1973-03-21,43,25 - 45,African-American,0,1,0,0,2,0,2013-04-04 09:42:56,2013-04-05 06:24:43,13004836CF10A,,2013-04-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-04,Risk of Violence,1,Low,2013-04-04,2013-04-04,2013-04-05,2,1,1093,0,0\r\n9515,vilardin cleophar,vilardin,cleophar,2013-10-12,Male,1989-06-08,26,25 - 45,African-American,0,4,0,0,1,-1,2013-10-11 09:46:40,2013-10-12 07:56:28,13014265CF10A,2013-10-11,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-12,Risk of Violence,3,Low,2013-10-12,2013-10-11,2013-10-12,1,0,902,0,0\r\n9516,oneil nelson,oneil,nelson,2013-02-11,Male,1983-05-26,32,25 - 45,African-American,0,2,3,0,7,-1,2013-02-10 09:25:19,2013-02-15 10:47:40,13001964CF10A,,2013-02-10,1,F,arrest case no charge,1,15033489TC40A,(M2),,2015-06-05,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-11,Risk of Violence,2,Low,2013-02-11,2014-10-17,2014-10-23,7,4,613,0,0\r\n9517,cindy sutton,cindy,sutton,2013-11-26,Female,1958-09-19,57,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-11-25 07:35:42,2013-11-26 02:01:58,13016393CF10A,2013-11-25,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-26,Risk of Violence,1,Low,2013-11-26,2013-11-25,2013-11-26,2,0,857,0,0\r\n9518,paola collado-izquierdo,paola,collado-izquierdo,2013-03-01,Female,1975-11-09,40,25 - 45,Caucasian,0,1,0,0,0,0,2013-03-01 05:42:22,2013-03-01 07:38:56,13004237MM10A,2013-03-01,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-03-01,2013-03-01,0,0,1127,0,0\r\n9519,seamus limato,seamus,limato,2014-08-22,Male,1982-11-19,33,25 - 45,Caucasian,0,6,0,0,6,-1,2014-08-21 06:34:44,2015-01-20 12:41:49,14011569CF10A,2014-08-22,,0,F,Grand Theft in the 3rd Degree,1,15003807CF10A,(F3),,2015-03-20,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,6,Medium,2014-08-22,Risk of Violence,6,Medium,2014-08-22,2015-02-15,2015-03-13,6,151,177,0,1\r\n9523,nikenson nicolas,nikenson,nicolas,2013-08-06,Male,1985-05-06,30,25 - 45,African-American,0,5,0,0,2,-1,2013-08-05 08:20:07,2013-08-06 08:43:35,13010980CF10A,2013-08-05,,1,F,Possession of Cocaine,1,13014252CF10A,(F3),1,2013-10-11,Grand Theft in the 3rd Degree,2013-10-12,2013-11-09,,0,,,,,Risk of Recidivism,5,Medium,2013-08-06,Risk of Violence,3,Low,2013-08-06,2014-12-13,2014-12-14,2,0,66,1,1\r\n9524,andrew tarr,andrew,tarr,2013-03-19,Male,1986-06-28,29,25 - 45,Caucasian,0,10,0,0,1,-1,2013-03-18 01:24:18,2013-03-29 06:02:35,13008447TC10A,2013-01-17,,61,M,Leave Acc/Attend Veh/More $50,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-03-19,Risk of Violence,10,High,2013-03-19,2013-03-31,2013-03-31,1,10,12,0,0\r\n9526,crystal rushton,crystal,rushton,2013-09-18,Female,1994-12-30,21,Less than 25,Caucasian,0,8,0,0,1,132,2014-01-28 12:54:25,2014-01-28 08:41:49,13006615CF10A,,2013-05-03,138,F,arrest case no charge,1,16000990CF10A,(F3),0,2016-01-24,Possession of Cannabis,2016-01-24,2016-01-25,,0,,,,,Risk of Recidivism,8,High,2013-09-18,Risk of Violence,9,High,2013-09-18,2014-01-28,2014-01-28,1,0,132,0,0\r\n9527,bernard edwards,bernard,edwards,2013-03-01,Male,1979-12-05,36,25 - 45,African-American,0,2,0,0,2,-4,2013-02-25 02:38:41,2013-02-25 08:51:02,13003939MM10A,2013-02-25,,4,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-01,Risk of Violence,2,Low,2013-03-01,2013-02-25,2013-02-25,2,0,1127,0,0\r\n9528,reginald rasbin,reginald,rasbin,2013-12-06,Male,1957-02-17,59,Greater than 45,African-American,0,4,0,0,17,-189,2013-05-31 10:37:30,2013-11-26 02:03:49,12012979CF10A,2012-08-30,,463,F,Fail Register Career Offender,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-06,Risk of Violence,4,Low,2013-12-06,2014-08-11,2014-11-12,17,0,248,0,0\r\n9529,baretta butler,baretta,butler,2013-03-29,Male,1981-03-25,35,25 - 45,African-American,0,8,0,0,6,0,2013-03-29 10:59:47,2013-03-30 08:37:52,13003084CF10A,,2013-03-29,0,F,arrest case no charge,1,13023261MM10A,(M1),194,2013-10-02,Possess Cannabis/20 Grams Or Less,2014-04-14,2014-04-22,,1,15015721CF10A,(F3),2015-10-01,Child Abuse,Risk of Recidivism,8,High,2013-03-29,Risk of Violence,5,Medium,2013-03-29,2013-03-29,2013-03-30,6,1,187,1,1\r\n9530,robson figueiredo,robson,figueiredo,2013-05-22,Male,1966-06-02,49,Greater than 45,Hispanic,0,2,0,0,0,-1,2013-05-21 07:55:37,2013-05-22 08:28:30,13009808MM10A,2013-05-21,,1,M,Viol Injunction Protect Dom Vi,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-22,Risk of Violence,1,Low,2013-05-22,2013-05-21,2013-05-22,0,0,1045,0,0\r\n9531,chandler tarquino,chandler,tarquino,2013-02-11,Male,1989-12-31,26,25 - 45,Hispanic,0,9,0,0,5,0,2013-02-11 12:54:22,2013-02-11 10:02:21,13001141CF10A,,2013-02-10,1,F,arrest case no charge,1,14002701CF10A,(M1),0,2014-02-26,Resist/Obstruct W/O Violence,2014-02-26,2015-09-17,,0,,,,,Risk of Recidivism,9,High,2013-02-11,Risk of Violence,9,High,2013-02-11,2013-03-07,2013-04-01,5,0,24,0,1\r\n9532,shakime brown,shakime,brown,2014-08-22,Male,1994-06-13,21,Less than 25,African-American,0,5,1,0,2,-1,2014-08-21 08:49:51,2014-08-29 11:56:42,14011439CF10A,2014-08-21,,1,F,Aggravated Assault w/Firearm,1,15006778MM10A,(M1),101,2015-02-14,Battery,2015-05-26,2015-12-09,,1,15006778MM10A,(M1),2015-02-14,Battery,Risk of Recidivism,5,Medium,2014-08-22,Risk of Violence,5,Medium,2014-08-22,2014-08-21,2014-08-29,2,7,176,1,1\r\n9534,anthony louis,anthony,louis,2014-01-25,Male,1966-11-05,49,Greater than 45,African-American,0,6,0,0,29,-1,2014-01-24 07:02:56,2014-01-25 02:23:08,14001062CF10A,2014-01-24,,1,F,Felony Driving While Lic Suspd,1,14001135CF10A,(M2),0,2014-01-26,Unlaw LicTag/Sticker Attach,2014-01-26,2014-01-27,,0,,,,,Risk of Recidivism,6,Medium,2014-01-25,Risk of Violence,1,Low,2014-01-25,2014-01-26,2014-01-27,29,0,1,1,1\r\n9535,wilberto alegria,wilberto,alegria,2013-06-28,Male,1993-01-14,23,Less than 25,Hispanic,0,10,0,0,1,87,2013-09-23 03:34:18,2014-03-19 10:17:00,12000821CF10A,,2013-01-14,165,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-06-28,Risk of Violence,9,High,2013-06-28,2013-09-23,2014-03-19,1,0,87,0,0\r\n9536,lashunda cobb,lashunda,cobb,2014-02-10,Female,1979-02-16,37,25 - 45,African-American,0,8,0,0,23,0,2014-02-10 12:40:07,2014-02-10 01:59:01,14002241MM10A,2014-02-08,,2,M,Battery,1,15013996TC30A,(M2),,2015-02-13,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,8,High,2014-02-10,Risk of Violence,4,Low,2014-02-10,2014-02-10,2014-02-10,23,0,368,1,1\r\n9537,angel serrano,angel,serrano,2013-05-28,Male,1982-07-18,33,25 - 45,Hispanic,0,2,0,0,0,-1,2013-05-27 09:13:22,2013-05-28 01:06:08,13010167MM10A,2013-05-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,1,Low,2013-05-28,2013-05-27,2013-05-28,0,0,1039,0,0\r\n9538,marlon jackson,marlon,jackson,2013-03-08,Male,1995-07-26,20,Less than 25,African-American,1,3,0,0,1,39,2013-04-16 01:55:09,2013-05-24 01:42:34,11019971CF10A,,2011-12-29,435,F,arrest case no charge,1,14007680MM10A,(M1),0,2014-05-09,Resist/Obstruct W/O Violence,2014-05-09,2014-06-20,,1,16001515CF10A,(F3),2016-02-04,Aggravated Assault w/Firearm,Risk of Recidivism,3,Low,2013-03-08,Risk of Violence,6,Medium,2013-03-08,2013-04-16,2013-05-24,1,0,39,0,1\r\n9539,joshua soden,joshua,soden,2013-05-03,Male,1987-10-01,28,25 - 45,Caucasian,0,10,0,0,1,-39,2013-03-25 11:45:08,2013-04-08 12:57:06,13000592CF10A,,2013-03-25,39,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-05-03,Risk of Violence,10,High,2013-05-03,2013-03-25,2013-04-08,1,0,1064,0,0\r\n9540,calvin feagin,calvin,feagin,2014-08-15,Male,1986-09-13,29,25 - 45,African-American,0,2,0,0,3,0,2014-08-15 12:52:06,2014-08-15 02:28:06,14011144CF10A,2014-08-14,,1,F,Pos Cannabis W/Intent Sel/Del,1,16000108MM40A,(M1),77,2015-12-09,Possess Cannabis/20 Grams Or Less,2016-02-24,2016-02-24,,0,,,,,Risk of Recidivism,2,Low,2014-08-15,Risk of Violence,2,Low,2014-08-15,2016-02-24,2016-02-24,3,0,481,1,1\r\n9541,tyrus hicks,tyrus,hicks,2014-06-11,Male,1990-08-03,25,25 - 45,African-American,0,5,0,1,1,0,2014-06-11 04:13:43,2014-06-12 03:47:52,14008093CF10A,2014-06-11,,0,F,\"Poss 3,4 MDMA (Ecstasy)\",1,14014824MM10A,(M1),0,2014-10-09,Resist/Obstruct W/O Violence,2014-10-09,2014-10-09,,0,,,,,Risk of Recidivism,5,Medium,2014-06-11,Risk of Violence,4,Low,2014-06-11,2014-10-09,2014-10-09,1,1,120,0,1\r\n9542,martez cooper,martez,cooper,2013-10-25,Male,1995-05-13,20,Less than 25,African-American,0,8,0,0,2,-1,2013-10-24 08:27:29,2013-11-26 12:02:57,13014897CF10A,,2013-10-24,1,F,arrest case no charge,1,14009665MM10A,(M1),0,2014-06-20,Viol Prot Injunc Repeat Viol,2014-06-20,2014-08-08,,0,,,,,Risk of Recidivism,8,High,2013-10-25,Risk of Violence,7,Medium,2013-10-25,2014-06-20,2014-08-08,2,32,238,1,1\r\n9544,philip hegarty,philip,hegarty,2014-03-10,Male,1986-04-02,30,25 - 45,Caucasian,0,9,0,0,3,-39,2014-01-30 11:05:49,2014-01-31 02:15:13,14001696MM10A,2014-01-30,,39,M,Battery,1,15026334TC10A,(M2),,2015-09-08,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,9,High,2014-03-10,Risk of Violence,5,Medium,2014-03-10,2014-01-30,2014-01-31,3,0,547,1,1\r\n9545,tommy walden,tommy,walden,2013-01-06,Male,1960-10-04,55,Greater than 45,African-American,0,4,0,0,5,-1,2013-01-05 05:44:55,2013-11-02 04:12:16,13002948CF10A,2013-01-05,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-06,Risk of Violence,3,Low,2013-01-06,2013-01-05,2013-11-02,5,300,1181,0,0\r\n9547,gustavo sanchez,gustavo,sanchez,2013-04-20,Male,1989-11-22,26,25 - 45,Caucasian,0,4,0,0,0,-1,2013-04-19 05:42:16,2013-04-20 07:58:27,13007597MM10A,2013-04-18,,2,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,4,Low,2013-04-20,2013-04-19,2013-04-20,0,0,1077,0,0\r\n9548,kim anthony,kim,anthony,2013-02-12,Female,1963-11-29,52,Greater than 45,Caucasian,0,1,0,0,6,-13,2013-01-30 12:51:16,2013-02-06 09:57:29,12018456CF10A,,2013-01-30,13,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-12,Risk of Violence,1,Low,2013-02-12,2014-12-22,2015-02-16,6,0,678,0,0\r\n9550,vincent stanley,vincent,stanley,2013-08-30,Male,1963-06-29,52,Greater than 45,African-American,0,8,0,0,16,-1,2013-08-29 11:56:07,2013-08-30 08:01:33,13011094CF10A,,2013-08-29,1,F,arrest case no charge,1,15003009CF10A,(F6),,2015-03-04,Murder in the First Degree,,,,1,15003009CF10A,(F6),2015-03-04,Murder in the First Degree,Risk of Recidivism,8,High,2013-08-30,Risk of Violence,5,Medium,2013-08-30,2013-08-29,2013-08-30,16,0,551,1,1\r\n9552,rene castro,rene,castro,2013-01-14,Male,1988-06-19,27,25 - 45,Hispanic,0,7,0,0,1,-1,2013-01-13 09:36:17,2013-01-15 10:41:24,13000593CF10A,2013-01-13,,1,F,Grand Theft in the 3rd Degree,1,13013038CF10A,(F3),,2013-08-07,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-14,Risk of Violence,4,Low,2013-01-14,2013-07-11,2014-06-05,1,1,205,1,1\r\n9553,gabriel cerenzia,gabriel,cerenzia,2013-09-07,Male,1955-11-21,60,Greater than 45,Caucasian,0,2,0,0,2,-1,2013-09-06 10:11:34,2013-09-17 06:28:32,13017049MM10A,2013-09-06,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-07,Risk of Violence,1,Low,2013-09-07,2013-09-06,2013-09-17,2,10,937,0,0\r\n9554,scott konija,scott,konija,2013-08-26,Male,1971-11-12,44,25 - 45,Caucasian,0,2,0,0,0,-1,2013-08-25 06:20:12,2013-08-27 08:52:06,13016462MM10A,2013-08-25,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-26,Risk of Violence,1,Low,2013-08-26,2013-08-25,2013-08-27,0,1,949,0,0\r\n9556,eriam penate,eriam,penate,2013-08-15,Male,1985-06-25,30,25 - 45,Hispanic,0,2,0,0,1,-18,2013-07-28 11:05:35,2013-08-14 11:25:00,13010573CF10A,2013-07-28,,18,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-15,Risk of Violence,2,Low,2013-08-15,2013-07-28,2013-08-14,1,0,960,0,0\r\n9557,josha singletary,josha,singletary,2014-03-19,Female,1990-07-28,25,25 - 45,African-American,0,4,0,0,2,-1,2014-03-18 07:02:52,2014-03-19 01:20:36,14004716MM10A,2014-03-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-19,Risk of Violence,4,Low,2014-03-19,2014-03-18,2014-03-19,2,0,744,0,0\r\n9560,stacey bustillo,stacey,bustillo,2014-08-26,Female,1995-05-19,20,Less than 25,Caucasian,0,8,0,0,4,-1,2014-08-25 04:16:53,2014-08-28 01:07:26,14011614CF10A,,2014-08-25,1,F,arrest case no charge,1,15005564CF10A,(F3),,2015-03-30,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,8,High,2014-08-26,Risk of Violence,6,Medium,2014-08-26,2014-08-25,2014-08-28,4,2,216,1,1\r\n9561,brent gillet,brent,gillet,2013-01-30,Male,1987-07-14,28,25 - 45,Caucasian,0,7,0,0,3,-1,2013-01-29 07:31:46,2013-03-07 08:21:40,13001409CF10A,2013-01-29,,1,F,Possession of Oxycodone,1,13005928CF10A,(F3),0,2013-04-25,Possession of Cocaine,2013-04-25,2013-06-05,,0,,,,,Risk of Recidivism,7,Medium,2013-01-30,Risk of Violence,7,Medium,2013-01-30,2013-04-25,2013-06-05,3,36,85,1,1\r\n9562,dematris symonette,dematris,symonette,2013-03-07,Male,1976-12-03,39,25 - 45,African-American,0,4,0,0,3,-39,2013-01-27 03:35:19,2013-03-06 10:25:56,13001924MM10A,2013-01-26,,40,M,Battery,1,15005447MM10A,(M1),0,2015-05-18,Viol Injunct Domestic Violence,2015-05-18,2015-07-27,,0,,,,,Risk of Recidivism,4,Low,2013-03-07,Risk of Violence,2,Low,2013-03-07,2015-04-15,2015-04-20,3,0,769,0,0\r\n9563,michael cerniglia,michael,cerniglia,2013-08-15,Male,1993-07-19,22,Less than 25,Caucasian,0,6,0,0,1,-12,2013-08-03 12:26:02,2013-08-15 10:46:30,13010921CF10A,2013-08-02,,13,F,Solicitation On Felony 3 Deg,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-15,Risk of Violence,4,Low,2013-08-15,2015-03-02,2015-04-02,1,0,564,0,0\r\n9566,michael lowe,michael,lowe,2013-03-01,Male,1991-07-14,24,Less than 25,Caucasian,0,8,0,0,1,-1,2013-02-28 11:46:39,2013-03-01 01:12:00,13003041CF10A,2013-02-28,,1,F,Possession of Cannabis,1,13011110CF10A,(M1),0,2013-08-08,Possess Cannabis/20 Grams Or Less,2013-08-08,2013-08-27,,0,,,,,Risk of Recidivism,8,High,2013-03-01,Risk of Violence,5,Medium,2013-03-01,2013-08-08,2013-08-27,1,0,160,1,1\r\n9567,nancy brewer,nancy,brewer,2013-03-08,Female,1987-06-05,28,25 - 45,African-American,0,3,0,0,0,-1,2013-03-07 05:06:49,2013-09-14 05:58:00,13003404CF10A,2013-03-07,,1,F,Arson in the First Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-08,Risk of Violence,4,Low,2013-03-08,2014-01-22,2014-01-28,0,190,320,0,0\r\n9568,anthony milner,anthony,milner,2014-12-02,Male,1980-06-26,35,25 - 45,African-American,0,6,0,0,10,-28,2014-11-04 09:02:02,2014-11-27 04:39:03,14001225CF10A,,2014-11-04,28,F,arrest case no charge,1,15001275CF10A,(F3),0,2015-01-27,Grand Theft (Motor Vehicle),2015-01-27,2015-01-27,,0,,,,,Risk of Recidivism,6,Medium,2014-12-02,Risk of Violence,1,Low,2014-12-02,2015-01-27,2015-01-27,10,0,56,0,1\r\n9569,christian giraldo,christian,giraldo,2013-09-30,Male,1985-11-02,30,25 - 45,Caucasian,0,1,0,0,0,0,2013-09-30 03:43:29,2013-09-30 08:10:01,13018598MM10A,2013-09-30,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-30,Risk of Violence,2,Low,2013-09-30,2013-09-30,2013-09-30,0,0,914,0,0\r\n9570,larry andrews,larry,andrews,2014-12-04,Male,1993-11-23,22,Less than 25,African-American,0,3,0,2,0,-1,2014-12-03 07:24:28,2014-12-10 09:56:18,14016104CF10A,2014-12-03,,1,F,Burglary Conveyance Unoccup,1,15000369MM20A,(M2),1,2015-01-12,Trespass Struct/Conveyance,2015-01-13,2015-01-13,,0,,,,,Risk of Recidivism,3,Low,2014-12-04,Risk of Violence,5,Medium,2014-12-04,2014-12-03,2014-12-10,0,6,39,1,1\r\n9574,gibrian wilson,gibrian,wilson,2013-04-25,Male,1976-08-22,39,25 - 45,African-American,0,5,0,0,9,0,2013-04-25 02:54:02,2013-04-25 08:07:19,13005941CF10A,2013-04-25,,0,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-25,Risk of Violence,1,Low,2013-04-25,2013-04-25,2013-04-25,9,0,1072,0,0\r\n9576,foufoune junior,foufoune,junior,2013-09-10,Female,1969-10-16,46,Greater than 45,Other,0,1,0,0,1,-1,2013-09-09 10:34:11,2013-09-10 07:10:48,13002945CF10A,,2013-09-09,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-09,2013-09-10,1,0,934,0,0\r\n9577,trevor duhaney,trevor,duhaney,2013-02-05,Male,1969-02-05,47,Greater than 45,Other,0,2,0,0,3,-1,2013-02-04 09:30:49,2013-02-08 09:07:37,13002565MM10A,2013-02-04,,1,M,Criminal Mischief>$200<$1000,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-05,Risk of Violence,1,Low,2013-02-05,2013-02-04,2013-02-08,3,3,1151,0,0\r\n9578,shane rhoden,shane,rhoden,2013-02-27,Male,1989-07-12,26,25 - 45,African-American,0,7,0,0,5,-1,2013-02-26 09:51:35,2014-01-16 06:29:22,13002942CF10A,2013-02-26,,1,M,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-27,Risk of Violence,6,Medium,2013-02-27,2014-01-16,2014-02-19,5,357,1129,0,0\r\n9579,daniel martin,daniel,martin,2013-10-07,Male,1982-11-20,33,25 - 45,African-American,0,4,0,0,3,-130,2013-05-30 04:59:27,2013-10-07 11:13:04,13007726CF10A,,2013-05-30,130,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-07,Risk of Violence,4,Low,2013-10-07,2013-05-30,2013-10-07,3,0,907,0,0\r\n9581,phylicia littleton,phylicia,littleton,2013-08-18,Female,1993-03-30,23,Less than 25,African-American,0,3,0,0,0,-1,2013-08-17 04:56:13,2013-09-11 07:01:20,13011536CF10A,2013-08-17,,1,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-18,Risk of Violence,4,Low,2013-08-18,2013-08-17,2013-09-11,0,24,957,0,0\r\n9584,sara gerald,sara,gerald,2014-09-21,Female,1964-02-13,52,Greater than 45,African-American,0,7,0,0,0,0,2014-09-21 03:44:25,2014-09-21 06:36:52,14012782CF10A,2014-09-21,,0,F,Felony Driving While Lic Suspd,1,15055062TC40A,(M2),,2015-09-18,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,7,Medium,2014-09-21,Risk of Violence,3,Low,2014-09-21,2014-09-21,2014-09-21,0,0,362,1,1\r\n9586,sekeyia dejean,sekeyia,dejean,2014-08-07,Female,1993-09-04,22,Less than 25,African-American,0,5,0,5,0,-1,2014-08-06 09:01:35,2014-08-07 07:57:19,14011919MM10A,2014-08-06,,1,M,Battery,1,15012566TC30A,(M2),,2015-02-09,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2014-08-07,Risk of Violence,5,Medium,2014-08-07,2014-08-06,2014-08-07,0,0,186,1,1\r\n9588,leonard harrell,leonard,harrell,2013-11-25,Male,1961-08-20,54,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-11-24 07:56:57,2013-11-26 09:41:51,13016333CF10A,2013-11-24,,1,F,Corrupt Public Servant,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-25,Risk of Violence,1,Low,2013-11-25,2013-11-24,2013-11-26,0,1,858,0,0\r\n9589,edwin coleman,edwin,coleman,2013-09-10,Male,1965-10-10,50,Greater than 45,African-American,0,6,0,0,2,0,2013-09-10 07:08:23,2013-10-11 06:09:15,08027204MM10A,2008-11-15,,1760,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-10,Risk of Violence,5,Medium,2013-09-10,2013-09-10,2013-10-11,2,31,934,0,0\r\n9591,shaquile graneau,shaquile,graneau,2013-09-26,Male,1995-08-05,20,Less than 25,African-American,0,5,0,4,2,-1,2013-09-25 06:05:33,2013-09-26 09:33:04,13013508CF10A,2013-09-25,,1,F,Grand Theft in the 3rd Degree,1,14001868TC20A,(M2),,2014-01-01,Fail Change Address On Veh Reg,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-26,Risk of Violence,7,Medium,2013-09-26,2015-10-01,2015-10-19,2,0,97,1,1\r\n9592,patrick salcedo,patrick,salcedo,2013-09-29,Male,1990-07-08,25,25 - 45,Caucasian,0,3,0,0,1,-1,2013-09-28 10:45:05,2013-09-29 01:47:16,13013648CF10A,2013-09-28,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-29,Risk of Violence,5,Medium,2013-09-29,2013-09-28,2013-09-29,1,0,915,0,0\r\n9593,carol hopkinson,carol,hopkinson,2013-02-11,Female,1969-08-14,46,Greater than 45,Caucasian,0,1,0,0,0,0,2013-02-11 06:08:31,2013-02-11 07:34:54,13002110CF10A,2013-02-11,,0,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-11,2013-02-11,0,0,1145,0,0\r\n9596,auguste joseph,auguste,joseph,2013-04-12,Male,1989-08-01,26,25 - 45,African-American,0,10,0,1,1,123,2013-08-13 07:50:29,2013-08-14 12:22:44,11003760CF10A,,2011-10-05,555,F,arrest case no charge,1,13011384CF10A,(F1),0,2013-08-13,Trafficking In Cocaine 28><200,2013-08-13,2013-08-14,,0,,,,,Risk of Recidivism,10,High,2013-04-12,Risk of Violence,6,Medium,2013-04-12,2013-08-13,2013-08-14,1,0,123,1,1\r\n9597,stephen jones,stephen,jones,2013-02-15,Male,1993-06-30,22,Less than 25,Caucasian,0,4,0,0,0,-1,2013-02-14 03:45:34,2013-02-15 08:13:09,13003260MM10A,2013-02-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-15,Risk of Violence,5,Medium,2013-02-15,2013-02-14,2013-02-15,0,0,1141,0,0\r\n9600,brian uva,brian,uva,2013-03-18,Male,1978-02-01,38,25 - 45,Caucasian,1,4,0,0,10,0,2013-03-18 03:51:57,2013-03-18 02:08:29,13003937CF10A,2013-03-18,,0,F,Burglary Structure Unoccup,1,14001909CF10A,(F3),,2013-11-01,Grand Theft in the 3rd Degree,,,,1,14000183CF10A,(F3),2014-01-05,Felony Battery (Dom Strang),Risk of Recidivism,4,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2015-03-31,2020-01-01,10,0,228,1,1\r\n9601,melina delgado,melina,delgado,2014-01-25,Female,1979-11-19,36,25 - 45,Hispanic,0,1,0,0,9,-1,2014-01-24 04:17:47,2014-01-25 02:04:06,14001052CF10A,2014-01-24,,1,F,Felony Driving While Lic Suspd,1,14005788MM10A,(M2),0,2014-04-05,Petit Theft,2014-04-05,2014-04-06,,0,,,,,Risk of Recidivism,1,Low,2014-01-25,Risk of Violence,1,Low,2014-01-25,2014-04-05,2014-04-06,9,0,70,1,1\r\n9603,linda lebrun,linda,lebrun,2013-04-01,Female,1982-03-28,34,25 - 45,African-American,0,2,0,0,5,-1,2013-03-31 06:26:28,2013-04-09 11:12:28,13004612CF10A,2013-03-31,,1,F,Driving While License Revoked,1,14001723MM10A,(M1),,2013-12-22,Unlaw Use False Name/Identity,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-03-31,2013-04-09,5,8,265,1,1\r\n9604,tavaris evans,tavaris,evans,2014-07-30,Male,1998-01-20,18,Less than 25,African-American,5,5,0,2,4,7,2014-08-06 11:52:54,2014-08-30 02:57:59,14003350CF10A,,2014-03-14,138,F,arrest case no charge,1,14015168CF10A,(F3),,2014-09-28,Battery on Law Enforc Officer,,,,1,14015168CF10A,(F3),2014-09-28,Battery on Law Enforc Officer,Risk of Recidivism,5,Medium,2014-07-30,Risk of Violence,9,High,2014-07-30,2014-08-06,2014-08-30,4,0,7,0,1\r\n9606,alyssa garcia,alyssa,garcia,2013-08-10,Female,1989-11-19,26,25 - 45,Caucasian,0,6,0,0,3,-1,2013-08-09 07:27:19,2013-08-10 09:45:00,13011182CF10A,2013-08-09,,1,F,Possession Of Alprazolam,1,14002480MM10A,(M1),,2013-10-16,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-10,Risk of Violence,4,Low,2013-08-10,2014-05-15,2014-06-05,3,0,67,1,1\r\n9608,heather gregory,heather,gregory,2013-08-11,Female,1992-05-01,23,Less than 25,Caucasian,0,6,0,0,0,-1,2013-08-10 08:22:47,2013-08-22 05:29:02,13011233CF10A,2013-08-10,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-11,Risk of Violence,5,Medium,2013-08-11,2013-08-10,2013-08-22,0,11,964,0,0\r\n9609,katicia ortiz,katicia,ortiz,2013-12-18,Female,1984-01-10,32,25 - 45,Hispanic,0,5,0,1,8,-8,2013-12-10 07:35:56,2013-12-17 07:46:09,13022854MM10A,2013-12-10,,8,M,Prostitution/Lewd Act Assignation,1,14004491MM40A,(M1),,2014-10-23,Petit Theft $100- $300,,,,1,15008299CF10A,(M1),2015-06-27,Battery,Risk of Recidivism,5,Medium,2013-12-18,Risk of Violence,2,Low,2013-12-18,2013-12-10,2013-12-17,8,0,309,1,1\r\n9612,dominick dinitto,dominick,dinitto,2014-01-30,Male,1971-06-16,44,25 - 45,Caucasian,0,1,0,0,1,0,2014-01-30 04:51:13,2014-01-30 10:00:28,14003794MU10A,2014-01-30,,0,M,Driving Under The Influence,1,14048601TC40A,(M2),,2014-07-15,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-30,Risk of Violence,1,Low,2014-01-30,2014-01-30,2014-01-30,1,0,166,1,1\r\n9613,richard kerwit,richard,kerwit,2013-04-15,Male,1963-01-25,53,Greater than 45,Caucasian,0,4,0,0,9,-1,2013-04-14 05:05:29,2013-08-10 04:59:29,13005359CF10A,2013-04-14,,1,F,Grand Theft in the 3rd Degree,1,13006457CF10A,(F3),,2013-05-03,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-15,Risk of Violence,7,Medium,2013-04-15,2013-04-14,2013-08-10,9,0,18,1,1\r\n9616,antwan brooks,antwan,brooks,2013-01-30,Male,1989-03-07,27,25 - 45,African-American,0,5,0,0,6,841,2015-05-21 02:06:14,2015-09-17 06:23:15,12016985CF10A,2012-09-25,,127,F,Grand Theft In The 3Rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-30,Risk of Violence,5,Medium,2013-01-30,2015-05-21,2015-09-17,6,0,841,0,0\r\n9617,charles allen,charles,allen,2014-09-28,Male,1989-03-17,27,25 - 45,African-American,0,4,0,0,4,0,2014-09-28 03:54:48,2014-09-29 03:38:38,14013117CF10A,2014-09-28,,0,F,Poss Pyrrolidinovalerophenone,1,15001462TC10A,(M2),0,2015-01-13,Operating W/O Valid License,2015-01-13,2015-01-14,,0,,,,,Risk of Recidivism,4,Low,2014-09-28,Risk of Violence,2,Low,2014-09-28,2015-01-13,2015-01-14,4,1,107,1,1\r\n9618,jeremy davis,jeremy,davis,2013-02-22,Male,1990-08-20,25,25 - 45,Caucasian,0,6,0,0,2,0,2013-02-22 01:53:57,2013-02-22 09:26:25,13002692CF10A,2013-02-22,,0,F,Possession of Cocaine,1,15065210TC40A,(M2),,2015-09-27,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-22,Risk of Violence,7,Medium,2013-02-22,2013-02-22,2013-02-22,2,0,947,1,0\r\n9619,michael conklin,michael,conklin,2013-08-06,Male,1968-04-19,48,Greater than 45,Caucasian,0,6,0,0,18,48,2013-09-23 02:54:38,2014-02-04 06:27:08,13007251CF10A,2013-05-21,,77,F,Felony Petit Theft,1,14009261CF10A,(F3),0,2014-07-06,Possession Burglary Tools,2014-07-06,2015-03-26,,0,,,,,Risk of Recidivism,6,Medium,2013-08-06,Risk of Violence,1,Low,2013-08-06,2013-09-23,2014-02-04,18,0,48,0,1\r\n9620,ener benitez,ener,benitez,2014-11-12,Male,1996-10-26,19,Less than 25,Caucasian,0,10,1,3,1,-1,2014-11-11 06:37:47,2014-11-19 09:44:57,14015120CF10A,2014-11-11,,1,F,Possession of Cocaine,1,15000583MM10A,(M1),,2015-01-15,Possess Drug Paraphernalia,,,,0,,,,,Risk of Recidivism,10,High,2014-11-12,Risk of Violence,10,High,2014-11-12,2014-12-13,2014-12-13,1,7,31,0,1\r\n9621,philip lawson,philip,lawson,2013-04-21,Male,1963-04-13,53,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-04-20 04:59:18,2013-05-01 05:05:32,13005656CF10A,2013-04-20,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-21,Risk of Violence,1,Low,2013-04-21,2013-04-20,2013-05-01,0,10,1076,0,0\r\n9624,karl jean-francois,karl,jean-francois,2013-02-04,Male,1977-03-05,39,25 - 45,African-American,0,3,0,0,0,-3,2013-02-01 03:49:12,2013-02-02 01:43:29,13002371MM10A,2013-02-01,,3,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-04,Risk of Violence,4,Low,2013-02-04,2013-02-01,2013-02-02,0,0,1152,0,0\r\n9625,errol campbell,errol,campbell,2013-12-10,Male,1978-09-10,37,25 - 45,Other,0,4,0,0,2,-1,2013-12-09 01:26:29,2014-01-29 03:40:53,13017104CF10A,,2013-12-09,1,F,arrest case no charge,1,15010440MM10A,(M2),0,2015-10-05,Exposes Culpable Negligence,2015-10-05,2015-10-06,,1,15010440MM10A,(M1),2015-10-05,Battery,Risk of Recidivism,4,Low,2013-12-10,Risk of Violence,3,Low,2013-12-10,2015-10-05,2015-10-06,2,50,664,1,1\r\n9626,larry medlock,larry,medlock,2013-01-04,Male,1988-08-25,27,25 - 45,African-American,1,8,0,0,6,0,2013-01-04 01:40:15,2013-01-04 06:08:10,13000130CF10A,2013-01-04,,0,F,Possession of Cocaine,1,13009338TC40A,(M2),,2013-01-16,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,8,High,2013-01-04,Risk of Violence,5,Medium,2013-01-04,2013-01-04,2013-01-04,6,0,12,1,1\r\n9627,bonnie grant,bonnie,grant,2014-06-11,Female,1986-10-13,29,25 - 45,Caucasian,0,4,0,0,1,-45,2014-04-27 11:04:23,2014-05-03 11:09:16,14005851CF10A,2014-04-27,,45,F,Possession of Hydromorphone,1,14013152CF10A,(F3),0,2014-09-29,Possession Of Heroin,2014-09-29,2014-09-30,,0,,,,,Risk of Recidivism,4,Low,2014-06-11,Risk of Violence,2,Low,2014-06-11,2014-09-29,2014-09-30,1,0,110,1,1\r\n9628,rondha paul,rondha,paul,2013-06-10,Female,1994-09-24,21,Less than 25,African-American,0,10,0,0,2,-10,2013-05-31 08:17:03,2013-06-01 08:46:09,13007776CF10A,2013-05-31,,10,F,Grand Theft in the 3rd Degree,1,13013644MM10A,(M1),0,2013-07-18,Petit Theft $100- $300,2013-07-18,2013-09-15,,0,,,,,Risk of Recidivism,10,High,2013-06-10,Risk of Violence,8,High,2013-06-10,2013-07-18,2013-09-15,2,0,38,1,1\r\n9629,johnny ortiz,johnny,ortiz,2014-02-12,Female,1991-11-13,24,Less than 25,African-American,0,9,0,0,7,-1,2014-02-11 05:51:08,2014-02-12 08:36:39,14001956CF10A,2014-02-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-12,Risk of Violence,7,Medium,2014-02-12,2014-02-11,2014-02-12,7,0,779,0,0\r\n9630,stephen hill,stephen,hill,2013-03-10,Male,1983-01-09,33,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-09 04:50:20,2013-03-10 06:55:18,13004783MM10A,2013-03-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-10,Risk of Violence,1,Low,2013-03-10,2013-03-09,2013-03-10,0,0,1118,0,0\r\n9631,kristen marciniak,kristen,marciniak,2013-05-21,Female,1992-04-06,24,Less than 25,Caucasian,0,4,0,4,1,-24,2013-04-27 08:34:23,2013-04-28 02:23:03,13008117MM10A,2013-04-27,,24,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-21,Risk of Violence,4,Low,2013-05-21,2013-04-27,2013-04-28,1,0,1046,0,0\r\n9632,larry naville,larry,naville,2014-03-17,Male,1969-08-18,46,Greater than 45,Caucasian,0,1,0,0,1,-4,2014-03-13 11:04:11,2014-03-14 09:08:46,14003632CF10A,2014-03-13,,4,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,1,Low,2014-03-17,2014-03-13,2014-03-14,1,0,746,0,0\r\n9633,steve nieves,steve,nieves,2013-04-06,Male,1984-03-11,32,25 - 45,Hispanic,0,7,0,0,7,-1,2013-04-05 06:42:10,2013-04-06 10:10:09,13004927CF10A,2013-04-05,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-06,Risk of Violence,3,Low,2013-04-06,2013-04-05,2013-04-06,7,0,1091,0,0\r\n9634,carlos gonzalez-estrella,carlos,gonzalez-estrella,2013-03-25,Male,1991-09-08,24,Less than 25,Hispanic,0,3,0,0,2,-25,2013-02-28 01:07:46,2013-03-09 02:28:38,13003055CF10A,2013-02-28,,25,F,Lewd/Lasc Battery Pers 12+/<16,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-25,Risk of Violence,4,Low,2013-03-25,2013-02-28,2013-03-09,2,0,1103,0,0\r\n9635,wendy martinez,wendy,martinez,2013-03-25,Female,1977-09-18,38,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-24 11:21:20,2013-03-27 03:17:46,13004253CF10A,2013-03-24,,1,F,Burglary Assault/Battery Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-03-24,2013-03-27,0,2,1103,0,0\r\n9636,jason williams,jason,williams,2014-03-03,Male,1986-03-29,30,25 - 45,African-American,0,10,2,2,13,0,2014-03-03 05:50:58,2014-03-06 03:23:49,14003018CF10A,2014-03-03,,0,F,Grand Theft (Motor Vehicle),1,14006699CF10A,(F2),0,2014-05-14,Felon in Pos of Firearm or Amm,2014-05-14,2014-05-18,,0,,,,,Risk of Recidivism,10,High,2014-03-03,Risk of Violence,9,High,2014-03-03,2014-05-14,2014-05-18,13,3,72,1,1\r\n9640,travis battle,travis,battle,2014-12-14,Male,1989-10-14,26,25 - 45,African-American,0,9,2,2,27,-1,2014-12-13 04:48:31,2014-12-23 05:37:09,14017552MM10A,2014-12-13,,1,M,Battery,1,15004418CF10A,(F3),0,2015-04-04,Poss Meth/Diox/Meth/Amp (MDMA),2015-04-04,2015-06-25,,0,,,,,Risk of Recidivism,9,High,2014-12-14,Risk of Violence,10,High,2014-12-14,2015-01-31,2015-01-31,27,9,48,0,1\r\n9641,michael fazakerley,michael,fazakerley,2013-02-07,Male,1958-11-28,57,Greater than 45,Caucasian,0,1,0,0,2,-28,2013-01-10 01:43:25,2013-01-19 05:21:41,13000444CF10A,2013-01-10,,28,F,Lewd/Lasc Exhib Presence <16yr,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-07,Risk of Violence,1,Low,2013-02-07,2013-01-10,2013-01-19,2,0,1149,0,0\r\n9643,shlomi asayag,shlomi,asayag,2013-08-01,Male,1973-01-30,43,25 - 45,Caucasian,0,1,0,0,0,-1,2013-07-31 03:08:47,2013-08-02 04:52:57,13010713CF10A,,2013-07-31,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2013-07-31,2013-08-02,0,1,974,0,0\r\n9644,samuel decoline,samuel,decoline,2013-03-13,Male,1993-10-23,22,Less than 25,African-American,0,6,0,0,0,0,2013-03-13 01:52:20,2013-03-13 02:19:25,13004946MM10A,2013-03-13,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-13,Risk of Violence,6,Medium,2013-03-13,2013-03-13,2013-03-13,0,0,1115,0,0\r\n9645,marius jimenez,marius,jimenez,2013-12-30,Male,1989-10-28,26,25 - 45,Caucasian,0,4,0,0,1,,,,12024312MM10A,,2013-02-10,323,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-30,Risk of Violence,3,Low,2013-12-30,,,1,0,823,0,0\r\n9646,lauren scott,lauren,scott,2013-08-06,Female,1987-12-21,28,25 - 45,African-American,0,9,0,0,9,-12,2013-07-25 10:07:15,2013-08-06 10:33:38,13008095MM10A,,2013-07-25,12,M,arrest case no charge,1,13017008CF10A,(F2),66,2013-11-05,Poss of Firearm by Convic Felo,2014-01-10,2014-11-26,,1,13017008CF10A,(F3),2013-11-05,Felony Battery,Risk of Recidivism,9,High,2013-08-06,Risk of Violence,9,High,2013-08-06,2014-11-26,2015-01-01,9,0,91,1,1\r\n9648,john buchheit,john,buchheit,2013-02-16,Male,1965-03-25,51,Greater than 45,Caucasian,0,4,0,0,3,-1,2013-02-15 09:25:26,2013-02-22 07:32:22,15001238CF10A,2013-02-15,,1,F,Felony DUI (level 3),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-16,Risk of Violence,3,Low,2013-02-16,2015-02-24,2015-02-24,3,6,738,0,0\r\n9651,efrain garcia,efrain,garcia,2014-03-13,Male,1974-05-18,41,25 - 45,Hispanic,0,1,0,0,3,-1,2014-03-12 09:03:38,2014-03-13 10:10:37,14003535CF10A,2014-03-12,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-13,Risk of Violence,1,Low,2014-03-13,2014-03-12,2014-03-13,3,0,750,0,0\r\n9653,jonathan rahm,jonathan,rahm,2013-01-26,Male,1992-02-15,24,Less than 25,Caucasian,0,7,0,0,1,-1,2013-01-25 07:16:34,2013-01-26 07:21:49,13001245CF10A,2013-01-25,,1,F,Del Cannabis For Consideration,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-26,Risk of Violence,5,Medium,2013-01-26,2013-01-25,2013-01-26,1,0,1161,0,0\r\n9654,joshua beach,joshua,beach,2013-10-13,Male,1968-04-19,48,Greater than 45,African-American,0,2,0,0,3,-1,2013-10-12 05:11:50,2013-10-13 07:23:52,13014305CF10A,2013-10-12,,1,F,Child Abuse,1,14002640TC40A,(M2),,2013-12-21,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-13,Risk of Violence,1,Low,2013-10-13,2013-10-12,2013-10-13,3,0,69,1,1\r\n9655,dario moscoso,dario,moscoso,2014-07-20,Male,1989-05-26,26,25 - 45,Caucasian,0,3,0,0,0,-1,2014-07-19 04:58:02,2014-07-21 01:33:16,14026264MU10A,2014-07-19,,1,M,Driving License Suspended,1,14032743MU10A,(M2),,2014-09-10,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,3,Low,2014-07-20,Risk of Violence,3,Low,2014-07-20,2014-07-19,2014-07-21,0,1,52,1,1\r\n9656,sidney henry,sidney,henry,2013-12-28,Male,1984-04-20,31,25 - 45,African-American,0,2,0,0,6,0,2013-12-28 07:07:14,2013-12-29 02:49:45,14000113CF10A,2013-12-28,,0,F,Felony Driving While Lic Suspd,1,15006960TC20A,(M2),,2015-01-16,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-28,Risk of Violence,2,Low,2013-12-28,2013-12-28,2013-12-29,6,1,384,1,1\r\n9658,travis taylor,travis,taylor,2013-02-03,Male,1988-09-10,27,25 - 45,African-American,1,10,2,1,6,-1,2013-02-02 06:25:19,2013-02-03 06:39:00,12058249TC10A,,2013-02-02,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-03,Risk of Violence,10,High,2013-02-03,2013-07-12,2013-07-20,6,0,159,0,0\r\n9659,rabe janvier,rabe,janvier,2014-02-03,Male,1990-08-20,25,25 - 45,African-American,0,4,0,0,0,-1,2014-02-02 05:51:39,2014-02-03 01:14:41,14001814MM10A,2014-02-02,,1,M,Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-03,Risk of Violence,4,Low,2014-02-03,2015-05-04,2015-05-19,0,0,455,0,0\r\n9662,duane stephan,duane,stephan,2013-05-14,Male,1959-10-04,56,Greater than 45,Caucasian,0,3,0,0,3,0,2013-05-14 03:48:04,2013-05-14 08:07:48,13009351MM10A,2013-05-14,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-14,Risk of Violence,2,Low,2013-05-14,2013-05-14,2013-05-14,3,0,1053,0,0\r\n9663,brenzina jones,brenzina,jones,2014-01-06,Female,1987-02-09,29,25 - 45,African-American,0,4,0,0,1,-1,2014-01-05 10:19:57,2014-01-07 03:49:53,14000199MM10A,2014-01-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-06,Risk of Violence,3,Low,2014-01-06,2014-01-05,2014-01-07,1,1,816,0,0\r\n9664,carrie hewett,carrie,hewett,2014-08-27,Female,1985-07-25,30,25 - 45,Caucasian,0,3,0,0,3,-1,2014-08-26 05:40:32,2014-08-26 09:02:50,14011046CF10A,,2014-08-26,1,F,arrest case no charge,1,16000513CF10A,(F3),0,2016-01-13,Grand Theft in the 3rd Degree,2016-01-13,2016-01-16,,0,,,,,Risk of Recidivism,3,Low,2014-08-27,Risk of Violence,1,Low,2014-08-27,2016-01-13,2016-01-16,3,0,504,1,1\r\n9666,kentravian knox,kentravian,knox,2013-04-10,Male,1994-10-06,21,Less than 25,African-American,0,8,0,0,0,-1,2013-04-09 02:31:10,2013-04-11 05:08:54,13005094CF10A,2013-04-09,,1,F,Attempted Robbery  No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-10,Risk of Violence,9,High,2013-04-10,2015-05-06,2015-05-06,0,1,756,0,0\r\n9667,cameron keintz,cameron,keintz,2013-07-22,Male,1994-01-05,22,Less than 25,Caucasian,0,4,0,0,1,-2,2013-07-20 07:21:10,2013-07-21 01:46:41,13011867CF10A,2013-07-20,,2,F,Burglary Conveyance Unoccup,1,13010646CF10A,(F3),0,2013-07-30,Grand Theft in the 3rd Degree,2013-07-30,2013-07-31,,0,,,,,Risk of Recidivism,4,Low,2013-07-22,Risk of Violence,5,Medium,2013-07-22,2013-07-30,2013-07-31,1,0,8,1,1\r\n9668,janez dickens,janez,dickens,2013-09-24,Female,1988-02-01,28,25 - 45,African-American,0,2,0,0,0,-1,2013-09-23 11:18:27,2013-09-24 09:19:53,13018159MM10A,2013-09-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-24,Risk of Violence,2,Low,2013-09-24,2013-09-23,2013-09-24,0,0,920,0,0\r\n9669,larry hampton,larry,hampton,2014-02-06,Male,1980-09-26,35,25 - 45,African-American,0,1,0,0,2,0,2014-02-06 12:45:53,2014-02-06 09:34:19,14001659CF10A,2014-02-05,,1,F,Sell or Offer for Sale Counterfeit Goods,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-06,Risk of Violence,1,Low,2014-02-06,2014-09-11,2014-09-18,2,0,217,0,0\r\n9670,kevin pazgarcia,kevin,pazgarcia,2013-03-15,Male,1993-02-22,23,Less than 25,Caucasian,0,2,0,0,0,-1,2013-03-14 04:59:27,2013-03-15 06:34:10,13003784CF10A,2013-03-14,,1,F,Fleeing or Eluding a LEO,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-15,Risk of Violence,5,Medium,2013-03-15,2013-03-14,2013-03-15,0,0,1113,0,0\r\n9672,robert larkins,robert,larkins,2014-02-11,Male,1967-07-27,48,Greater than 45,African-American,0,8,0,0,4,0,2014-02-11 02:21:28,2014-02-11 08:51:24,00004068CF10A,,2002-08-13,4200,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-02-11,Risk of Violence,4,Low,2014-02-11,2014-03-26,2014-03-29,4,0,43,0,0\r\n9674,dustin worley,dustin,worley,2014-04-19,Male,1993-07-17,22,Less than 25,Caucasian,0,8,1,2,4,-1,2014-04-18 10:38:48,2014-04-21 08:08:26,14006559MM10A,2014-04-18,,1,M,Battery,1,14063481TC40A,(M2),,2014-08-15,Reckless Driving,,,,0,,,,,Risk of Recidivism,8,High,2014-04-19,Risk of Violence,5,Medium,2014-04-19,2014-04-18,2014-04-21,4,2,118,1,1\r\n9676,dwayne simmons,dwayne,simmons,2013-02-17,Male,1978-04-27,37,25 - 45,African-American,0,9,0,0,2,0,2013-02-17 12:47:03,2013-08-06 06:12:09,10019497CF10A,,2013-02-17,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-17,Risk of Violence,7,Medium,2013-02-17,2013-08-06,2014-03-27,2,403,1139,0,0\r\n9677,venson joseph,venson,joseph,2014-02-04,Male,1982-10-14,33,25 - 45,African-American,0,1,0,0,0,-1,2014-02-03 01:54:41,2014-02-04 01:11:16,14001465CF10A,2014-02-02,,2,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-03-27,2014-04-02,0,0,51,0,0\r\n9681,brandon jackson,brandon,jackson,2014-03-02,Male,1993-02-01,23,Less than 25,African-American,0,7,0,1,5,-1,2014-03-01 09:22:26,2014-03-03 02:30:42,14002927CF10A,2014-03-01,,1,F,False Imprisonment,1,15003734MM10A,(M1),,2014-10-25,Battery,,,,1,15003734MM10A,(M1),2014-10-25,Battery,Risk of Recidivism,7,Medium,2014-03-02,Risk of Violence,4,Low,2014-03-02,2014-03-01,2014-03-03,5,1,237,1,1\r\n9685,jermaine taylor,jermaine,taylor,2014-06-22,Male,1994-04-07,22,Less than 25,African-American,0,7,0,1,0,-1,2014-06-21 09:10:14,2014-06-22 08:04:05,14009716MM10A,2014-06-21,,1,M,Battery,1,15024852TC30A,(M2),,2015-03-29,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2014-06-22,Risk of Violence,6,Medium,2014-06-22,2014-06-21,2014-06-22,0,0,280,1,1\r\n9686,ryan bassaragh,ryan,bassaragh,2014-01-16,Male,1992-03-27,24,Less than 25,African-American,0,4,0,0,0,0,2014-01-16 12:57:15,2014-01-17 02:06:24,14000719CF10A,2014-01-15,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-16,Risk of Violence,3,Low,2014-01-16,2014-01-16,2014-01-17,0,1,806,0,0\r\n9687,emmanuel knight,emmanuel,knight,2013-01-26,Male,1971-09-09,44,25 - 45,African-American,0,7,0,0,2,-1,2013-01-25 06:09:54,2013-01-30 08:27:06,12042413TC10A,,2013-01-25,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-26,Risk of Violence,4,Low,2013-01-26,2013-01-25,2013-01-30,2,4,1161,0,0\r\n9689,curtis green,curtis,green,2013-01-09,Male,1989-11-28,26,25 - 45,African-American,0,4,0,0,4,624,2014-09-25 11:04:26,2014-10-10 05:13:04,12022394MM10A,2012-10-29,,72,M,Fail Register Vehicle,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-09,Risk of Violence,6,Medium,2013-01-09,2014-09-25,2014-10-10,4,0,624,0,0\r\n9690,samesha stringer,samesha,stringer,2013-08-17,Female,1989-08-04,26,25 - 45,African-American,0,2,0,0,0,-1,2013-08-16 11:58:17,2013-08-17 01:12:43,13015568MM10A,2013-08-16,,1,M,Exposes Culpable Negligence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-17,Risk of Violence,2,Low,2013-08-17,2013-08-16,2013-08-17,0,0,958,0,0\r\n9691,alfred infante,alfred,infante,2013-10-25,Male,1986-12-16,29,25 - 45,African-American,0,6,0,0,2,-1,2013-10-24 05:41:59,2013-10-26 03:05:42,13002559CF10A,,2013-10-24,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-25,Risk of Violence,5,Medium,2013-10-25,2015-04-09,2015-04-23,2,1,531,0,0\r\n9693,carlos lara,carlos,lara,2013-05-28,Male,1989-05-09,26,25 - 45,Hispanic,0,2,0,1,0,-1,2013-05-27 07:12:07,2013-05-28 01:57:43,13007565CF10A,2013-05-27,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-28,Risk of Violence,2,Low,2013-05-28,2013-05-27,2013-05-28,0,0,1039,0,0\r\n9695,asher roberti,asher,roberti,2013-05-28,Male,1985-10-07,30,25 - 45,Caucasian,0,1,0,0,1,-1,2013-05-27 11:20:28,2013-05-28 08:51:19,13010135MM10A,2013-05-27,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-28,Risk of Violence,1,Low,2013-05-28,2013-05-27,2013-05-28,1,0,1039,0,0\r\n9698,danny rowe,danny,rowe,2013-04-18,Male,1993-02-21,23,Less than 25,African-American,0,6,0,0,1,-1,2013-04-17 08:54:18,2013-04-21 04:37:02,13005522CF10A,2013-04-17,,1,F,Burglary Unoccupied Dwelling,1,13009191CF10A,(F3),,2013-06-01,Crim Use of Personal ID Info,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-18,Risk of Violence,5,Medium,2013-04-18,2013-04-17,2013-04-21,1,3,44,1,1\r\n9699,reza mansourie,reza,mansourie,2013-02-22,Male,1973-12-26,42,25 - 45,Other,0,2,0,0,1,-2,2013-02-20 01:05:27,2013-02-21 07:53:53,13000639CF10A,2013-01-14,,39,F,Armed Trafficking in Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-22,Risk of Violence,2,Low,2013-02-22,2013-02-20,2013-02-21,1,0,1134,0,0\r\n9703,trena collier,trena,collier,2013-03-18,Female,1988-03-18,28,25 - 45,African-American,0,3,0,0,0,-1,2013-03-17 06:10:24,2013-03-19 11:32:14,13003882CF10A,2013-03-17,,1,F,Burglary Dwelling Assault/Batt,1,14005314MM10A,(M1),0,2014-03-27,Battery,2014-03-27,2014-03-28,,1,14005314MM10A,(M1),2014-03-27,Battery,Risk of Recidivism,3,Low,2013-03-18,Risk of Violence,3,Low,2013-03-18,2014-03-27,2014-03-28,0,1,374,1,1\r\n9704,terrell comete,terrell,comete,2014-01-11,Male,1995-11-09,20,Less than 25,African-American,0,3,0,0,0,-1,2014-01-10 04:49:46,2014-01-21 07:13:32,14000440CF10A,2014-01-10,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-11,Risk of Violence,6,Medium,2014-01-11,2014-03-13,2014-05-05,0,10,61,0,0\r\n9706,clifton huggins,clifton,huggins,2014-01-02,Female,1991-11-02,24,Less than 25,Caucasian,0,7,2,0,7,-1,2014-01-01 04:54:43,2014-01-02 08:10:06,14000051CF10A,2014-01-01,,1,M,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-02,Risk of Violence,4,Low,2014-01-02,2014-01-01,2014-01-02,7,0,820,0,0\r\n9707,kerrice picart,kerrice,picart,2014-03-06,Female,1979-05-18,36,25 - 45,Other,0,7,1,0,6,-21,2014-02-13 03:07:18,2014-02-13 08:19:31,14002071CF10A,2014-02-13,,21,F,Possession of Cocaine,1,16001707MM10A,(M1),0,2016-02-22,,2016-02-22,2016-02-27,,0,,,,,Risk of Recidivism,7,Medium,2014-03-06,Risk of Violence,2,Low,2014-03-06,2016-02-22,2016-02-27,6,0,718,1,1\r\n9708,widney joseph,widney,joseph,2014-06-01,Male,1978-09-20,37,25 - 45,African-American,0,2,0,0,6,-1,2014-05-31 10:40:13,2014-06-01 08:20:00,14007561CF10A,2014-05-31,,1,F,Felony Driving While Lic Suspd,1,14025151TC10A,(M2),0,2014-07-09,Driving License Suspended,2014-07-09,2014-07-10,,0,,,,,Risk of Recidivism,2,Low,2014-06-01,Risk of Violence,1,Low,2014-06-01,2014-07-09,2014-07-10,6,0,38,1,1\r\n9709,trimaine ward,trimaine,ward,2013-04-27,Female,1994-11-30,21,Less than 25,African-American,0,9,0,0,1,-1,2013-04-26 04:34:20,2013-04-30 05:46:51,13006044CF10A,2013-04-26,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-04-27,Risk of Violence,9,High,2013-04-27,2015-10-21,2015-11-22,1,3,907,0,0\r\n9710,devon ricks,devon,ricks,2014-07-20,Male,1988-11-25,27,25 - 45,African-American,0,5,0,0,8,-1,2014-07-19 11:52:29,2014-08-14 05:28:51,14011045CF10A,2014-07-19,,1,F,Felony Battery w/Prior Convict,1,14014315CF10A,(F3),56,2014-09-02,Felony Battery (Dom Strang),2014-10-28,2015-01-27,,1,14014315CF10A,(F3),2014-09-02,Felony Battery (Dom Strang),Risk of Recidivism,5,Medium,2014-07-20,Risk of Violence,6,Medium,2014-07-20,2014-07-19,2014-08-14,8,25,44,1,1\r\n9712,norman clare,norman,clare,2013-08-27,Male,1990-03-26,26,25 - 45,African-American,0,4,0,0,2,-1,2013-08-26 11:16:52,2013-08-27 06:56:32,13012026CF10A,2013-08-26,,1,F,Fleeing Or Attmp Eluding A Leo,1,13015788CF10A,(M1),0,2013-11-13,Possess Drug Paraphernalia,2013-11-13,2013-11-14,,0,,,,,Risk of Recidivism,4,Low,2013-08-27,Risk of Violence,3,Low,2013-08-27,2013-11-13,2013-11-14,2,0,78,1,1\r\n9713,anthony pirolo,anthony,pirolo,2013-10-13,Male,1973-04-25,42,25 - 45,Caucasian,0,1,0,0,0,0,2013-10-13 01:34:58,2013-10-19 08:32:01,13019356MM10A,2013-10-12,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-13,Risk of Violence,1,Low,2013-10-13,2013-10-13,2013-10-19,0,6,901,0,0\r\n9714,willie lofton,willie,lofton,2014-01-04,Male,1992-06-14,23,Less than 25,African-American,0,10,0,0,8,-1,2014-01-03 10:20:12,2014-01-06 08:02:55,14000126CF10A,2014-01-03,,1,F,Grand Theft in the 3rd Degree,1,15001766MM10A,(M1),0,2015-01-28,Petit Theft $100- $300,2015-01-28,2015-01-29,,0,,,,,Risk of Recidivism,10,High,2014-01-04,Risk of Violence,6,Medium,2014-01-04,2014-03-17,2014-03-24,8,2,72,0,1\r\n9715,sandro sampaio,sandro,sampaio,2013-12-02,Male,1973-02-11,43,25 - 45,Caucasian,0,1,0,0,1,-131,2013-07-24 12:44:03,2013-07-25 05:00:04,13008010CF10A,,2013-07-24,131,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-07-24,2013-07-25,1,0,851,0,0\r\n9717,irina rogina,irina,rogina,2014-02-12,Female,1961-01-19,55,Greater than 45,Caucasian,0,1,0,0,0,-3,2014-02-09 09:45:01,2014-02-10 09:40:24,14002242MM10A,2014-02-09,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-12,Risk of Violence,1,Low,2014-02-12,2014-02-09,2014-02-10,0,0,779,0,0\r\n9720,frederick estey,frederick,estey,2013-01-03,Male,1977-05-12,38,25 - 45,Caucasian,0,3,0,0,0,53,2013-02-25 02:31:22,2013-02-25 11:33:30,12018767CF10A,2012-12-28,,6,F,Possession Of Alprazolam,1,13003926MM10A,(M2),0,2013-02-25,Susp Drivers Lic 1st Offense,2013-02-25,2013-02-25,,0,,,,,Risk of Recidivism,3,Low,2013-01-03,Risk of Violence,3,Low,2013-01-03,2013-02-25,2013-02-25,0,0,53,0,1\r\n9722,carson seavey,carson,seavey,2013-10-23,Male,1991-04-21,24,Less than 25,Caucasian,0,6,0,0,1,-1,2013-10-22 06:22:21,2013-10-26 05:10:00,13014771CF10A,,2013-10-22,1,F,arrest case no charge,1,15013031CF10A,(F3),,2015-10-08,Burglary Conveyance Unoccup,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-23,Risk of Violence,4,Low,2013-10-23,2013-10-22,2013-10-26,1,3,715,1,1\r\n9723,ahkeen moore,ahkeen,moore,2013-05-03,Male,1992-06-17,23,Less than 25,African-American,0,4,0,0,0,0,2013-05-03 03:57:46,2013-05-04 03:31:44,13008888MM10A,2013-05-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-03,Risk of Violence,6,Medium,2013-05-03,2013-05-03,2013-05-04,0,1,1064,0,0\r\n9724,gloria moses,gloria,moses,2013-04-27,Female,1951-12-12,64,Greater than 45,African-American,0,1,0,0,0,-1,2013-04-26 07:02:44,2013-04-30 08:30:10,13006819CF10A,2013-04-26,,1,F,Solicit Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-26,2013-04-30,0,3,1070,0,0\r\n9725,roland voltaire,roland,voltaire,2013-09-23,Male,1967-10-04,48,Greater than 45,Other,0,1,0,0,0,-1,2013-09-22 05:49:43,2013-09-24 04:27:36,13018051MM10A,2013-09-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-23,Risk of Violence,1,Low,2013-09-23,2013-09-22,2013-09-24,0,1,921,0,0\r\n9727,robert montgomery,robert,montgomery,2013-02-19,Male,1983-07-14,32,25 - 45,African-American,0,5,1,2,11,805,2015-05-05 01:17:06,2015-05-06 05:23:02,12012449CF10A,2012-08-23,,180,F,Driving While License Revoked,1,15002675TC30A,(M2),,2014-12-30,Driving License Suspended,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-19,Risk of Violence,4,Low,2013-02-19,2015-08-30,2015-11-17,11,0,679,1,1\r\n9729,secunda tharpe,secunda,tharpe,2013-02-22,Female,1976-06-30,39,25 - 45,African-American,0,5,0,0,0,0,2013-02-22 12:24:36,2013-04-21 04:55:49,13002673CF10A,2013-02-21,,1,F,Grand Theft (Motor Vehicle),1,15004783CF10A,(F3),,2015-04-11,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-22,Risk of Violence,2,Low,2013-02-22,2013-10-17,2014-04-12,0,58,237,0,1\r\n9730,joshua simons,joshua,simons,2013-05-26,Male,1986-02-25,30,25 - 45,Caucasian,0,2,0,0,0,-1,2013-05-25 09:00:36,2013-05-26 08:33:54,13010048MM10A,2013-05-25,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-26,Risk of Violence,3,Low,2013-05-26,2013-05-25,2013-05-26,0,0,1041,0,0\r\n9731,jessica harrold,jessica,harrold,2014-01-07,Female,1994-01-24,22,Less than 25,African-American,0,4,0,0,1,-3,2014-01-04 01:34:33,2014-01-04 01:28:25,14000152MM10A,2014-01-03,,4,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-07,Risk of Violence,4,Low,2014-01-07,2014-01-04,2014-01-04,1,0,815,0,0\r\n9732,dylan cartwright,dylan,cartwright,2014-10-14,Male,1995-06-15,20,Less than 25,African-American,0,6,0,0,2,0,2014-10-14 03:01:08,2014-12-11 10:14:47,14013826CF10A,,2014-10-14,0,F,arrest case no charge,1,15011988TC40A,(M2),,2015-02-21,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,6,Medium,2014-10-14,Risk of Violence,7,Medium,2014-10-14,2014-10-14,2014-12-11,2,58,130,1,1\r\n9733,jarny cetoute,jarny,cetoute,2013-11-05,Male,1995-02-26,21,Less than 25,African-American,0,4,0,0,0,-1,2013-11-04 03:52:02,2013-11-08 09:12:43,13015371CF10A,2013-11-04,,1,F,Grand Theft in the 3rd Degree,1,13015907CF10A,(F2),0,2013-11-15,Burglary Unoccupied Dwelling,2013-11-15,2013-11-16,,0,,,,,Risk of Recidivism,4,Low,2013-11-05,Risk of Violence,7,Medium,2013-11-05,2013-11-15,2013-11-16,0,3,10,1,1\r\n9734,zachary cato,zachary,cato,2013-10-17,Male,1991-11-01,24,Less than 25,Caucasian,0,4,0,0,0,0,2013-10-17 02:19:04,2013-10-17 07:42:29,13014548CF10A,2013-10-17,,0,F,Poss Meth/Diox/Meth/Amp (MDMA),0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-17,Risk of Violence,5,Medium,2013-10-17,2013-10-17,2013-10-17,0,0,897,0,0\r\n9735,mario garcia,mario,garcia,2013-09-20,Male,1966-09-05,49,Greater than 45,Hispanic,0,1,0,0,2,-40,2013-08-11 11:18:34,2013-09-20 11:58:23,13015162MM10A,2013-08-11,,40,M,Petit Theft,1,16000454MM30A,(M1),,2016-03-01,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-20,Risk of Violence,1,Low,2013-09-20,2013-08-11,2013-09-20,2,0,893,1,0\r\n9737,john navarro,john,navarro,2013-12-23,Male,1965-10-08,50,Greater than 45,Caucasian,0,1,0,0,2,-32,2013-11-21 07:33:28,2013-11-22 08:30:22,13016172CF10A,2013-11-21,,32,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-11-21,2013-11-22,2,0,830,0,0\r\n9738,deneil merritt,deneil,merritt,2013-04-29,Male,1986-01-24,30,25 - 45,African-American,0,7,0,0,3,-1,2013-04-28 04:58:10,2013-11-20 09:13:09,13008172MM10A,2013-04-28,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-29,Risk of Violence,7,Medium,2013-04-29,2013-04-28,2013-11-20,3,205,1068,0,0\r\n9739,scottie jackson,scottie,jackson,2014-05-30,Male,1964-11-29,51,Greater than 45,African-American,0,8,0,0,12,21,2014-06-20 11:16:45,2014-11-19 02:03:02,13017871CF10A,2013-12-27,,154,F,Possession of Cocaine,1,15011952MM10A,(M1),,2015-11-16,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2014-05-30,Risk of Violence,8,High,2014-05-30,2014-06-20,2014-11-19,12,0,21,0,1\r\n9740,marcus lane,marcus,lane,2013-05-16,Male,1995-03-03,21,Less than 25,African-American,0,9,2,0,2,111,2013-09-04 09:05:35,2013-10-22 09:02:34,13004884CF10A,2012-11-24,,173,M,Dealing In Stolen Property,1,13012477CF10A,(M1),0,2013-09-04,Resist/Obstruct W/O Violence,2013-09-04,2013-10-22,,1,13012477CF10A,(M1),2013-09-04,Battery,Risk of Recidivism,9,High,2013-05-16,Risk of Violence,8,High,2013-05-16,2013-09-04,2013-10-22,2,0,111,1,1\r\n9741,antron franklin,antron,franklin,2013-12-26,Male,1994-12-12,21,Less than 25,African-American,1,10,0,2,1,-1,2013-12-25 06:34:10,2013-12-27 06:20:00,13017157CF10A,,2013-12-25,1,F,arrest case no charge,1,15006450CF10A,(F3),,2015-05-18,Possession Burglary Tools,,,,0,,,,,Risk of Recidivism,10,High,2013-12-26,Risk of Violence,10,High,2013-12-26,2014-01-10,2014-04-24,1,1,15,0,1\r\n9743,lafrance telon,lafrance,telon,2013-09-12,Male,1984-10-05,31,25 - 45,African-American,0,10,0,0,1,-1,2013-09-11 03:42:34,2013-09-12 01:29:57,13015178CF10A,2013-09-11,,1,F,Poss Unlaw Issue Driver Licenc,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-09-12,Risk of Violence,6,Medium,2013-09-12,2013-12-27,2014-01-14,1,0,106,0,0\r\n9745,taric hunter,taric,hunter,2013-02-17,Male,1992-07-30,23,Less than 25,African-American,0,7,0,0,2,-1,2013-02-16 06:08:37,2013-02-20 05:21:23,13003360MM10A,2013-02-16,,1,M,Trespass On School Grounds,1,13018756MM10A,(M1),,2013-07-27,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-17,Risk of Violence,7,Medium,2013-02-17,2013-02-16,2013-02-20,2,3,160,1,1\r\n9746,luis valdez,luis,valdez,2013-02-27,Male,1992-11-30,23,Less than 25,Hispanic,0,7,0,0,0,-1,2013-02-26 01:06:53,2013-02-27 01:44:17,13004001MM10A,2013-02-26,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-27,Risk of Violence,8,High,2013-02-27,2013-02-26,2013-02-27,0,0,1129,0,0\r\n9747,calvin mcdougle,calvin,mcdougle,2013-11-16,Male,1984-01-20,32,25 - 45,African-American,0,4,0,0,4,-1,2013-11-15 06:14:29,2013-11-16 08:19:43,13015906CF10A,2013-11-15,,1,F,Burglary Unoccupied Dwelling,1,15046327TC20A,(M2),,2015-08-14,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-16,Risk of Violence,2,Low,2013-11-16,2013-11-15,2013-11-16,4,0,636,1,1\r\n9748,trevor lamons,trevor,lamons,2013-02-07,Male,1987-09-19,28,25 - 45,African-American,0,6,0,0,11,-1,2013-02-06 02:17:29,2013-02-08 07:30:37,13005470CF10A,2013-02-06,,1,F,Neglect Child / No Bodily Harm,1,14016007CF10A,(F3),,2013-10-17,Burglary Conveyance Unoccup,,,,1,14013277MM10A,(M1),2014-07-24,Battery,Risk of Recidivism,6,Medium,2013-02-07,Risk of Violence,5,Medium,2013-02-07,2013-02-06,2013-02-08,11,1,252,1,1\r\n9749,david aldridge,david,aldridge,2013-03-19,Male,1965-05-03,50,Greater than 45,Caucasian,1,10,0,0,16,-68,2013-01-10 08:07:39,2013-03-18 11:23:29,12008280CF10A,,2013-01-10,68,F,arrest case no charge,1,13020685MM10A,(M1),,2013-11-02,Tresspass in Struct/Convey Occupy,,,,0,,,,,Risk of Recidivism,10,High,2013-03-19,Risk of Violence,7,Medium,2013-03-19,2013-11-02,2013-11-03,16,0,228,1,1\r\n9750,ferris finley,ferris,finley,2014-02-15,Male,1992-02-05,24,Less than 25,African-American,0,2,0,1,0,-1,2014-02-14 01:26:06,2014-02-15 08:43:50,14002142CF10A,2014-02-14,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-15,Risk of Violence,4,Low,2014-02-15,2014-02-14,2014-02-15,0,0,776,0,0\r\n9752,shakiria thompkins,shakiria,thompkins,2014-12-07,Female,1996-04-26,19,Less than 25,African-American,0,4,0,0,1,-1,2014-12-06 04:25:55,2014-12-08 09:29:05,14016241CF10A,,2014-12-06,1,F,arrest case no charge,1,15000677MM30A,(M2),,2015-03-15,Petit Theft,,,,0,,,,,Risk of Recidivism,4,Low,2014-12-07,Risk of Violence,5,Medium,2014-12-07,2014-12-06,2014-12-08,1,1,98,1,1\r\n9753,imad cherif,imad,cherif,2013-11-27,Male,1984-07-29,31,25 - 45,Other,0,1,0,0,1,0,2013-11-27 03:46:11,2013-11-28 02:38:00,13022266MM10A,2013-11-27,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-27,Risk of Violence,1,Low,2013-11-27,2013-11-27,2013-11-28,1,1,856,0,0\r\n9754,edward durizil,edward,durizil,2013-02-20,Male,1987-02-04,29,25 - 45,African-American,0,4,0,0,3,0,2013-02-20 01:28:43,2013-02-20 01:32:44,13002610CF10A,,2013-02-19,1,F,arrest case no charge,1,14008889CF10A,(F2),1,2014-06-26,Aggravated Battery / Pregnant,2014-06-27,2014-06-28,,1,14008889CF10A,(F2),2014-06-26,Aggravated Battery / Pregnant,Risk of Recidivism,4,Low,2013-02-20,Risk of Violence,3,Low,2013-02-20,2014-06-27,2014-06-28,3,0,491,1,1\r\n9755,leverron brown,leverron,brown,2013-12-02,Male,1974-10-29,41,25 - 45,African-American,0,6,0,0,6,-1,2013-12-01 04:32:59,2014-01-09 09:57:03,13016637CF10A,2013-12-01,,1,F,Grand Theft in the 3rd Degree,1,14008855MM10A,(M2),,2014-05-04,Petit Theft,,,,0,,,,,Risk of Recidivism,6,Medium,2013-12-02,Risk of Violence,2,Low,2013-12-02,2013-12-01,2014-01-09,6,38,153,1,1\r\n9756,wade grant,wade,grant,2013-11-08,Male,1988-03-30,28,25 - 45,African-American,0,3,0,0,4,-1,2013-11-07 07:17:15,2013-12-11 09:33:15,13021033MM10A,2013-11-07,,1,M,Battery,1,14013394MM10A,(M1),,2014-07-25,Battery,,,,1,14013394MM10A,(M1),2014-07-25,Battery,Risk of Recidivism,3,Low,2013-11-08,Risk of Violence,4,Low,2013-11-08,2013-11-07,2013-12-11,4,33,259,1,1\r\n9758,jonathan danovich,jonathan,danovich,2014-03-28,Male,1986-12-30,29,25 - 45,Caucasian,0,4,0,0,6,-1,2014-03-27 09:27:38,2014-03-28 01:15:07,14004354CF10A,2014-03-27,,1,F,Uttering a Forged Instrument,1,14011385CF10A,(M1),0,2014-08-20,Resist Merchant W Or W/O Viol,2014-08-20,2014-10-03,,0,,,,,Risk of Recidivism,4,Low,2014-03-28,Risk of Violence,2,Low,2014-03-28,2014-08-20,2014-10-03,6,0,145,1,1\r\n9759,douglas mackenzie,douglas,mackenzie,2013-02-14,Male,1966-09-06,49,Greater than 45,Caucasian,0,5,0,0,0,-1,2013-02-13 05:22:26,2013-02-14 10:04:07,13002251CF10A,2013-02-13,,1,F,Offer Agree Secure/Lewd Act,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-14,Risk of Violence,2,Low,2013-02-14,2013-02-13,2013-02-14,0,0,1142,0,0\r\n9767,danny abadia,danny,abadia,2014-03-26,Male,1973-11-08,42,25 - 45,Caucasian,0,1,0,0,0,0,2014-03-26 12:42:13,2014-03-26 08:34:43,14005237MM10A,2014-03-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-26,Risk of Violence,1,Low,2014-03-26,2014-03-26,2014-03-26,0,0,737,0,0\r\n9771,audwin lovinsky,audwin,lovinsky,2013-09-26,Male,1977-06-07,38,25 - 45,African-American,0,2,0,0,4,-1,2013-09-25 11:38:59,2013-09-26 07:54:40,13018314MM10A,2013-09-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-26,Risk of Violence,2,Low,2013-09-26,2013-11-20,2014-02-06,4,0,55,0,0\r\n9773,tevin soufferanc,tevin,soufferanc,2013-11-17,Male,1993-08-07,22,Less than 25,African-American,0,6,0,1,3,-1,2013-11-16 08:07:41,2013-12-02 09:03:52,13015950CF10A,2013-11-16,,1,F,Burglary Dwelling Occupied,1,14016052MM10A,(M1),0,2014-11-03,,2014-11-03,2014-12-06,,0,,,,,Risk of Recidivism,6,Medium,2013-11-17,Risk of Violence,7,Medium,2013-11-17,2014-11-03,2014-12-06,3,15,351,1,1\r\n9774,steve cramer,steve,cramer,2013-01-21,Male,1969-11-24,46,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-01-20 10:33:19,2013-02-27 05:23:34,13001375MM10A,2013-01-20,,1,M,Battery,1,14055230TC40A,(M2),,2014-08-02,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-21,Risk of Violence,2,Low,2013-01-21,2013-01-20,2013-02-27,0,37,558,1,1\r\n9776,domimick sarlo,domimick,sarlo,2013-10-22,Male,1952-08-10,63,Greater than 45,Caucasian,0,1,0,0,1,,,,02003090CF10A,,2013-10-10,12,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-22,Risk of Violence,1,Low,2013-10-22,,,1,0,892,0,0\r\n9777,craig williams,craig,williams,2013-11-11,Male,1978-04-11,38,25 - 45,African-American,0,3,0,0,0,-1,2013-11-10 04:15:23,2013-11-11 07:49:19,13015644CF10A,2013-11-10,,1,F,Cruelty Toward Child,1,15000122MM20A,(M2),,2014-12-12,Petit Theft,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-11,Risk of Violence,3,Low,2013-11-11,2013-11-10,2013-11-11,0,0,396,1,1\r\n9778,rueben smith,rueben,smith,2013-10-23,Male,1979-07-12,36,25 - 45,African-American,0,6,0,0,0,-1,2013-10-22 05:43:33,2013-10-23 01:34:32,13014732CF10A,2013-10-22,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-23,Risk of Violence,1,Low,2013-10-23,2013-10-22,2013-10-23,0,0,891,0,0\r\n9780,wymaneka allen,wymaneka,allen,2014-12-31,Female,1988-10-01,27,25 - 45,African-American,0,7,1,0,10,-58,2014-11-03 10:12:05,2014-11-22 05:18:44,14061977TC20A,2014-09-04,,118,M,Driving License Suspended,1,15018563TC30A,(M2),,2015-03-04,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,7,Medium,2014-12-31,Risk of Violence,5,Medium,2014-12-31,2014-11-03,2014-11-22,10,0,63,1,1\r\n9781,jermaine garland,jermaine,garland,2013-08-27,Male,1993-10-19,22,Less than 25,Caucasian,0,9,0,0,6,-1,2013-08-26 09:12:08,2013-08-27 07:05:54,13012032CF10A,2013-08-26,,1,F,Crimin Mischief Damage $1000+,1,13045599TC10A,(M2),0,2013-11-10,Operating W/O Valid License,2013-11-10,2013-11-10,,0,,,,,Risk of Recidivism,9,High,2013-08-27,Risk of Violence,7,Medium,2013-08-27,2013-09-13,2013-09-14,6,0,17,0,1\r\n9782,timmie ivey,timmie,ivey,2013-02-28,Male,1986-09-23,29,25 - 45,African-American,0,10,0,0,11,-1,2013-02-27 10:06:03,2013-02-28 07:41:24,13004079MM10A,2013-02-27,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-28,Risk of Violence,5,Medium,2013-02-28,2013-02-27,2013-02-28,11,0,1128,0,0\r\n9783,leroy battie,leroy,battie,2014-10-31,Male,1992-06-14,23,Less than 25,African-American,0,4,0,0,6,40,2014-12-10 05:28:47,2014-12-15 07:18:19,14002904CF10A,2014-02-28,,245,F,Grand Theft in the 3rd Degree,1,16000081MM10A,(M1),0,2016-01-03,Resist/Obstruct W/O Violence,2016-01-03,2016-01-07,,0,,,,,Risk of Recidivism,4,Low,2014-10-31,Risk of Violence,5,Medium,2014-10-31,2014-12-10,2014-12-15,6,0,40,0,1\r\n9784,sheldon jones,sheldon,jones,2013-04-22,Male,1976-05-18,39,25 - 45,African-American,0,2,0,0,2,-1,2013-04-21 04:21:02,2013-04-22 06:59:21,13007676MM10A,2013-04-21,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2013-04-21,2013-04-22,2,0,1075,0,0\r\n9785,vitali kosinskii,vitali,kosinskii,2013-05-14,Male,1968-08-07,47,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-05-13 09:39:07,2013-05-16 06:45:19,13009241MM10A,2013-05-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2013-05-13,2013-05-16,0,2,1053,0,0\r\n9786,samuel roberts,samuel,roberts,2013-02-23,Male,1990-01-14,26,25 - 45,African-American,0,10,0,0,7,-1,2013-02-22 05:14:38,2013-02-24 02:35:53,13002747CF10A,2013-02-22,,1,F,Grand Theft in the 3rd Degree,1,13023460TC30A,(M2),,2013-03-03,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,10,High,2013-02-23,Risk of Violence,8,High,2013-02-23,2013-02-22,2013-02-24,7,1,8,1,1\r\n9787,kadeidra bankston,kadeidra,bankston,2013-02-04,Female,1994-07-04,21,Less than 25,African-American,0,5,0,0,0,-4,2013-01-31 03:17:16,2013-02-04 12:31:23,13001584CF10A,2013-01-31,,4,F,Burglary Dwelling Assault/Batt,1,14044274TC40A,(M2),,2014-04-29,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-04,Risk of Violence,6,Medium,2013-02-04,2014-08-12,2014-08-19,0,0,449,1,1\r\n9788,john oneal,john,oneal,2013-03-26,Male,1961-02-25,55,Greater than 45,African-American,0,8,0,0,12,-40,2013-02-14 12:43:42,2013-03-15 03:27:58,08024134CF10A,,2013-02-14,40,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-26,Risk of Violence,6,Medium,2013-03-26,2015-01-14,2015-01-22,12,0,659,0,0\r\n9789,vitay joseph,vitay,joseph,2014-03-29,Male,1952-09-06,63,Greater than 45,African-American,0,1,0,0,2,-1,2014-03-28 11:14:31,2014-03-30 04:46:03,14005403MM10A,2014-03-28,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-29,Risk of Violence,1,Low,2014-03-29,2014-03-28,2014-03-30,2,1,734,0,0\r\n9790,daniel firmin,daniel,firmin,2013-12-26,Male,1988-05-12,27,25 - 45,African-American,0,2,0,0,2,-1,2013-12-25 11:06:09,2013-12-26 08:38:14,13017785CF10A,2013-12-25,,1,F,Possession of Cocaine,1,14020954TC10A,(M2),56,2014-05-24,Operating W/O Valid License,2014-07-19,2014-07-19,,0,,,,,Risk of Recidivism,2,Low,2013-12-26,Risk of Violence,2,Low,2013-12-26,2014-04-23,2014-04-23,2,0,118,0,1\r\n9791,dale griffin,dale,griffin,2014-03-30,Male,1960-09-10,55,Greater than 45,Caucasian,0,5,0,0,27,-1,2014-03-29 08:00:47,2014-03-31 03:18:41,14005435MM10A,2014-03-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-30,Risk of Violence,1,Low,2014-03-30,2014-03-29,2014-03-31,27,1,733,0,0\r\n9793,kenneth gratz,kenneth,gratz,2014-02-25,Male,1958-12-23,57,Greater than 45,Caucasian,0,1,0,0,21,-33,2014-01-23 01:33:32,2014-02-13 12:39:06,14003379TC10A,,2014-01-23,33,M,arrest case no charge,1,14010759TC10A,(M2),,2014-03-10,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-25,Risk of Violence,1,Low,2014-02-25,2015-12-14,2015-12-14,21,0,13,1,1\r\n9795,yan diaz-gomez,yan,diaz-gomez,2013-06-26,Male,1991-10-19,24,Less than 25,Hispanic,0,2,0,0,1,,,,13007446CF10A,2013-05-24,,33,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-06-26,Risk of Violence,4,Low,2013-06-26,,,1,0,1010,0,0\r\n9796,jean beldunord,jean,beldunord,2013-09-08,Male,1961-06-15,54,Greater than 45,Other,0,2,0,0,2,-1,2013-09-07 05:25:52,2013-09-08 06:43:55,13017074MM10A,2013-09-07,,1,M,Battery,1,15002042MM10A,(M1),0,2015-02-18,Battery,2015-02-18,2015-02-20,,1,15002042MM10A,(M1),2015-02-18,Battery,Risk of Recidivism,2,Low,2013-09-08,Risk of Violence,1,Low,2013-09-08,2015-02-18,2015-02-20,2,0,528,1,1\r\n9797,brandon youn,brandon,youn,2013-01-07,Male,1986-03-02,30,25 - 45,African-American,0,4,0,0,2,,,,13000279CF10A,2013-01-07,,0,F,Possession of Cocaine,1,13004333CF10A,(F1),,2013-03-25,Traffick Hydrocodone   4g><14g,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-07,Risk of Violence,3,Low,2013-01-07,,,2,0,77,1,1\r\n9798,nikko bethel,nikko,bethel,2014-01-31,Male,1989-08-18,26,25 - 45,African-American,0,6,1,0,3,,,,13013365MM10A,2013-01-27,,369,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-31,Risk of Violence,7,Medium,2014-01-31,,,3,0,791,0,0\r\n9799,christopher james,christopher,james,2014-11-26,Male,1990-04-15,26,25 - 45,Caucasian,0,5,0,0,0,-1,2014-11-25 10:53:47,2014-11-27 04:43:56,14015864CF10A,2014-11-25,,1,F,Harm Public Servant Or Family,1,15012930MM10A,(M1),0,2015-12-14,Resist/Obstruct W/O Violence,2015-12-14,2015-12-14,,0,,,,,Risk of Recidivism,5,Medium,2014-11-26,Risk of Violence,3,Low,2014-11-26,2015-12-14,2015-12-14,0,1,383,0,1\r\n9800,michael dicicco,michael,dicicco,2013-11-14,Male,1978-04-23,37,25 - 45,Caucasian,0,2,0,0,1,-9,2013-11-05 05:01:02,2013-11-06 01:55:26,13020891MM10A,2013-11-05,,9,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-14,Risk of Violence,1,Low,2013-11-14,2013-11-05,2013-11-06,1,0,869,0,0\r\n9801,traveon ortiz,traveon,ortiz,2013-09-11,Male,1991-01-09,25,25 - 45,African-American,0,5,0,0,4,-170,2013-03-25 04:45:52,2013-03-29 05:47:05,13005831MM10A,2013-03-25,,170,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-11,Risk of Violence,8,High,2013-09-11,2013-03-25,2013-03-29,4,0,933,0,0\r\n9802,nicholas wright,nicholas,wright,2013-02-12,Male,1981-08-09,34,25 - 45,African-American,0,1,0,0,0,-1,2013-02-11 04:22:25,2013-02-12 07:48:00,13002127CF10A,2013-02-11,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-12,Risk of Violence,2,Low,2013-02-12,2014-06-23,2014-07-25,0,0,496,0,0\r\n9804,yvette calderon,yvette,calderon,2014-07-03,Female,1967-11-25,48,Greater than 45,Hispanic,0,1,0,0,4,-6,2014-06-27 05:16:22,2014-06-28 12:59:23,14008069CF10A,,2014-06-27,6,F,arrest case no charge,1,16002607MM10A,(M2),,2016-03-18,,,,,0,,,,,Risk of Recidivism,1,Low,2014-07-03,Risk of Violence,1,Low,2014-07-03,2014-06-27,2014-06-28,4,0,624,1,1\r\n9805,henry mcbride,henry,mcbride,2014-10-20,Male,1990-04-21,25,25 - 45,African-American,1,7,1,0,2,-1,2014-10-19 09:45:50,2014-12-08 08:36:29,14014105CF10A,2014-10-19,,1,F,Possession Of Methamphetamine,1,15004731CF10A,(F3),0,2015-04-10,Possession of Cocaine,2015-04-10,2015-05-13,,0,,,,,Risk of Recidivism,7,Medium,2014-10-20,Risk of Violence,6,Medium,2014-10-20,2015-04-10,2015-05-13,2,49,172,1,1\r\n9806,viccas harris,viccas,harris,2013-09-11,Male,1958-11-02,57,Greater than 45,Other,0,1,0,0,0,-1,2013-09-10 09:26:23,2013-09-11 01:40:45,13012804CF10A,2013-09-10,,1,F,Agg Assault W/int Com Fel Dome,1,16002027CF10A,(F3),0,2016-02-17,Felony Battery (Dom Strang),2016-02-17,2016-02-18,,1,16002027CF10A,(F3),2016-02-17,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2013-09-11,Risk of Violence,1,Low,2013-09-11,2016-02-17,2016-02-18,0,0,889,1,0\r\n9808,giovanni de paola,giovanni,de paola,2013-07-24,Male,1969-09-30,46,Greater than 45,Caucasian,0,5,0,0,2,-55,2013-05-30 03:17:59,2013-05-30 01:14:43,13007722CF10A,2013-05-30,,55,F,\"Poss 3,4 MDMA (Ecstasy)\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-24,Risk of Violence,2,Low,2013-07-24,2013-05-30,2013-05-30,2,0,982,0,0\r\n9809,bradley rodriguez,bradley,rodriguez,2014-08-07,Male,1994-08-18,21,Less than 25,Hispanic,0,3,0,0,0,-1,2014-08-06 08:12:37,2014-08-08 04:02:26,14010732CF10A,2014-08-06,,1,F,Burglary Conveyance Unoccup,1,15029137TC10A,(M2),,2015-10-23,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2014-08-07,Risk of Violence,5,Medium,2014-08-07,2014-08-06,2014-08-08,0,1,442,1,1\r\n9810,angel santiago,angel,santiago,2013-09-17,Male,1983-07-28,32,25 - 45,African-American,0,9,0,1,8,-1,2013-09-16 06:50:38,2013-09-17 07:08:30,13013071CF10A,2013-09-16,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-17,Risk of Violence,4,Low,2013-09-17,2014-04-07,2014-04-10,8,0,202,0,0\r\n9811,jasmine reynolds,jasmine,reynolds,2013-04-24,Female,1991-04-03,25,25 - 45,African-American,0,9,0,0,5,-1,2013-04-23 11:49:35,2013-04-24 07:42:26,13005838CF10A,2013-04-23,,1,F,Agg Battery Grt/Bod/Harm,1,13016663MM10A,(M2),0,2013-08-30,Petit Theft,2013-08-30,2013-09-07,,0,,,,,Risk of Recidivism,9,High,2013-04-24,Risk of Violence,5,Medium,2013-04-24,2013-08-30,2013-09-07,5,0,128,1,1\r\n9814,antoine cross,antoine,cross,2014-02-03,Male,1981-01-01,35,25 - 45,African-American,0,8,0,0,4,96,2014-05-10 09:42:39,2014-08-27 06:23:00,12011660CF10A,2012-08-09,,543,F,Possession of Cocaine,1,14006531CF10A,(F2),0,2014-05-10,Sexual Battery / Vict 12 Yrs +,2014-05-10,2014-08-27,,1,14006531CF10A,(F2),2014-05-10,Sexual Battery / Vict 12 Yrs +,Risk of Recidivism,8,High,2014-02-03,Risk of Violence,7,Medium,2014-02-03,2014-05-10,2014-08-27,4,0,96,1,1\r\n9815,nicole anderson,nicole,anderson,2014-03-06,Female,1982-08-12,33,25 - 45,African-American,0,3,0,0,2,-1,2014-03-05 03:53:31,2014-03-07 05:21:34,14003114CF10A,2014-03-05,,1,F,Grand Theft (Motor Vehicle),1,15065035TC30A,(M2),,2015-09-24,Fail Register Vehicle,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-06,Risk of Violence,2,Low,2014-03-06,2014-03-05,2014-03-07,2,1,567,1,1\r\n9817,dwaine williams,dwaine,williams,2013-08-21,Male,1990-02-28,26,25 - 45,African-American,0,5,0,0,2,-1,2013-08-20 08:29:26,2013-09-11 05:35:26,13011672CF10A,2013-08-20,,1,F,Grand Theft in the 3rd Degree,1,15005964MM10A,(M1),74,2015-05-10,Battery,2015-07-23,2015-10-14,,1,15005964MM10A,(M1),2015-05-10,Battery,Risk of Recidivism,5,Medium,2013-08-21,Risk of Violence,6,Medium,2013-08-21,2014-10-30,2014-11-15,2,21,435,0,1\r\n9818,hans kaiser,hans,kaiser,2013-03-19,Male,1966-06-21,49,Greater than 45,Caucasian,0,5,0,0,10,302,2014-01-15 07:30:00,2014-02-27 06:30:52,13003939CF10A,2013-03-18,,1,F,Grand Theft in the 3rd Degree,1,13005340CF10A,(F3),,2013-04-13,Driving While License Revoked,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-19,Risk of Violence,4,Low,2013-03-19,2015-08-25,2015-11-05,10,0,25,1,1\r\n9820,craig reese,craig,reese,2013-05-08,Male,1987-02-03,29,25 - 45,African-American,0,4,0,0,2,-1,2013-05-07 03:17:19,2013-05-10 09:37:44,13008855MM10A,2013-05-07,,1,M,Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-08,Risk of Violence,2,Low,2013-05-08,2013-05-07,2013-05-10,2,2,1059,0,0\r\n9822,ricky colon,ricky,colon,2013-03-16,Male,1988-02-22,28,25 - 45,Caucasian,0,4,0,0,6,0,2013-03-16 12:00:09,2013-03-18 07:35:27,13005289MM10A,,2013-03-16,0,M,arrest case no charge,1,14014539MM10A,(M1),0,2014-10-02,Possess Cannabis/20 Grams Or Less,2014-10-02,2014-10-03,,0,,,,,Risk of Recidivism,4,Low,2013-03-16,Risk of Violence,3,Low,2013-03-16,2013-04-29,2013-04-29,6,2,44,0,1\r\n9823,lorenzo brown,lorenzo,brown,2013-10-18,Male,1963-01-08,53,Greater than 45,African-American,0,5,0,0,20,-3,2013-10-15 06:39:17,2013-10-18 10:33:48,13014418CF10A,,2013-10-15,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-18,Risk of Violence,5,Medium,2013-10-18,2013-11-18,2014-04-04,20,0,31,0,0\r\n9824,juan oliver,juan,oliver,2013-03-11,Male,1959-01-12,57,Greater than 45,Hispanic,0,1,0,0,1,-15,2013-02-24 05:08:09,2013-02-25 07:21:44,13003831MM10A,2013-02-24,,15,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-11,Risk of Violence,1,Low,2013-03-11,2013-02-24,2013-02-25,1,0,1117,0,0\r\n9826,quinnell elder,quinnell,elder,2014-02-12,Male,1986-11-06,29,25 - 45,African-American,0,10,1,0,3,-119,2013-10-16 09:53:56,2014-02-12 11:17:50,13013468CF10A,,2013-10-16,119,F,arrest case no charge,1,14008633CF10A,(F3),0,2014-06-23,Felony Battery w/Prior Convict,2014-06-23,2014-08-21,,1,14008633CF10A,(F3),2014-06-23,Felony Battery w/Prior Convict,Risk of Recidivism,10,High,2014-02-12,Risk of Violence,5,Medium,2014-02-12,2014-06-12,2014-06-21,3,0,120,0,1\r\n9827,nelson lopez,nelson,lopez,2013-04-16,Male,1988-11-07,27,25 - 45,Caucasian,0,2,0,0,0,-1,2013-04-15 06:32:03,2013-05-29 01:43:59,13005412CF10A,2013-04-15,,1,F,Burglary Dwelling Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-16,Risk of Violence,3,Low,2013-04-16,2013-04-15,2013-05-29,0,43,1081,0,0\r\n9830,dmitry marochnik,dmitry,marochnik,2014-01-24,Male,1968-01-16,48,Greater than 45,Caucasian,0,2,0,0,0,-1,2014-01-23 09:26:28,2014-01-24 09:36:51,14000979CF10A,2014-01-23,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-24,Risk of Violence,1,Low,2014-01-24,2014-01-23,2014-01-24,0,0,798,0,0\r\n9831,victor chavez,victor,chavez,2014-10-01,Male,1986-10-13,29,25 - 45,Hispanic,0,2,0,0,0,0,2014-10-01 04:15:08,2014-10-04 09:16:33,14014448MM10A,2014-10-01,,0,M,Disorderly Conduct,1,15001634CF10A,(F2),0,2015-02-02,Aggravated Battery / Pregnant,2015-02-02,2015-02-04,,1,15001634CF10A,(F2),2015-02-02,Aggravated Battery / Pregnant,Risk of Recidivism,2,Low,2014-10-01,Risk of Violence,2,Low,2014-10-01,2015-02-02,2015-02-04,0,3,124,1,1\r\n9832,robert neftelberg,robert,neftelberg,2014-09-22,Male,1990-05-17,25,25 - 45,Caucasian,0,4,0,0,1,0,2014-09-22 03:22:32,2014-09-25 04:34:12,14014043MM10A,2014-09-22,,0,M,Battery,1,15005133MM10A,(M1),0,2015-05-07,Resist/Obstruct W/O Violence,2015-05-07,2015-05-08,,1,15005133MM10A,(M2),2015-05-07,Assault,Risk of Recidivism,4,Low,2014-09-22,Risk of Violence,4,Low,2014-09-22,2015-05-07,2015-05-08,1,3,227,1,1\r\n9833,william larson,william,larson,2013-05-04,Male,1948-04-24,67,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-05-03 11:25:26,2013-05-05 07:13:44,13006371CF10A,2013-05-03,,1,F,Cruelty Toward Child,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-04,Risk of Violence,1,Low,2013-05-04,2013-05-03,2013-05-05,0,1,1063,0,0\r\n9834,gerod adderly,gerod,adderly,2013-11-16,Male,1987-02-19,29,25 - 45,African-American,0,5,0,1,2,0,2013-11-16 02:35:51,2013-11-16 07:53:22,13016141CF10A,2013-11-16,,0,M,Agg Fleeing and Eluding,1,16002390CF10A,(F2),1,2016-02-24,,2016-02-25,2016-02-25,,0,,,,,Risk of Recidivism,5,Medium,2013-11-16,Risk of Violence,3,Low,2013-11-16,2016-02-25,2016-02-25,2,0,830,1,0\r\n9835,marie scott,marie,scott,2013-05-23,Female,1962-05-18,53,Greater than 45,African-American,0,2,0,0,3,-1,2013-05-22 02:23:12,2013-05-24 09:54:10,13007307CF10A,2013-05-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-23,Risk of Violence,1,Low,2013-05-23,2013-05-22,2013-05-24,3,1,1044,0,0\r\n9837,james helvie,james,helvie,2013-07-26,Male,1992-07-02,23,Less than 25,Caucasian,0,5,0,0,1,-40,2013-06-16 02:09:50,2013-07-26 12:11:02,13008475CF10A,2013-06-15,,41,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-07-26,Risk of Violence,5,Medium,2013-07-26,2013-12-15,2014-04-15,1,0,142,0,0\r\n9838,edward mcclain,edward,mcclain,2013-03-18,Male,1966-09-26,49,Greater than 45,African-American,0,1,0,0,0,-4,2013-03-14 11:29:26,2013-03-15 07:01:59,13003785CF10A,2013-03-14,,4,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-14,2013-03-15,0,0,1110,0,0\r\n9840,yvonne whorrie,yvonne,whorrie,2013-11-02,Female,1971-09-24,44,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-01 08:05:38,2013-11-02 01:19:24,13020658MM10A,2013-11-01,,1,M,Driving Under The Influence,1,16004931MU10A,(M1),0,2016-02-28,,2016-02-28,2016-02-29,,0,,,,,Risk of Recidivism,1,Low,2013-11-02,Risk of Violence,1,Low,2013-11-02,2016-02-28,2016-02-29,0,0,848,1,0\r\n9842,margarita simon,margarita,simon,2014-03-22,Female,1960-11-17,55,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-03-21 08:37:59,2014-03-22 01:21:06,14004030CF10A,2014-03-21,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-21,2014-03-22,0,0,741,0,0\r\n9843,matthew butterfield,matthew,butterfield,2014-12-08,Male,1989-12-04,26,25 - 45,African-American,1,8,0,0,10,-1,2014-12-07 09:09:11,2014-12-09 10:26:04,14016268CF10A,2014-12-07,,1,F,Resist Officer w/Violence,1,15005827MM10A,(M1),,2015-05-10,Indecent Exposure,,,,0,,,,,Risk of Recidivism,8,High,2014-12-08,Risk of Violence,8,High,2014-12-08,2014-12-16,2015-09-10,10,1,153,1,1\r\n9844,john miranti,john,miranti,2014-07-08,Male,1964-11-01,51,Greater than 45,Caucasian,0,1,0,0,2,-64,2014-05-05 06:19:00,2014-07-08 01:57:36,14006285CF10A,2014-05-05,,64,F,Grand Theft in the 3rd Degree,1,15010833MM10A,(M1),0,2015-06-30,Extradition/Defendants,2015-06-30,2015-10-31,,0,,,,,Risk of Recidivism,1,Low,2014-07-08,Risk of Violence,1,Low,2014-07-08,2015-06-30,2015-10-31,2,0,357,1,1\r\n9845,sidney moody,sidney,moody,2013-12-31,Male,1969-10-27,46,Greater than 45,African-American,0,1,0,0,0,-1,2013-12-30 05:41:40,2013-12-31 01:23:54,13024001MM10A,2013-12-30,,1,M,Battery,1,16006860MU10A,(M1),0,2016-03-19,,2016-03-19,2016-03-19,,0,,,,,Risk of Recidivism,1,Low,2013-12-31,Risk of Violence,1,Low,2013-12-31,2016-03-19,2016-03-19,0,0,809,0,0\r\n9846,brian belgrod,brian,belgrod,2013-05-07,Male,1985-12-17,30,25 - 45,Caucasian,0,3,0,0,1,-1,2013-05-06 06:10:36,2013-05-07 01:19:32,13006481CF10A,2013-05-06,,1,F,Possession of Cocaine,1,13016434CF10A,(F3),,2013-09-10,\"Deliver 3,4 Methylenediox\",,,,0,,,,,Risk of Recidivism,3,Low,2013-05-07,Risk of Violence,2,Low,2013-05-07,2013-11-12,2013-11-26,1,0,126,1,1\r\n9847,sheara bryant,sheara,bryant,2014-06-23,Female,1968-03-13,48,Greater than 45,African-American,0,6,0,0,0,-1,2014-06-22 10:10:01,2014-07-02 03:07:22,14008618CF10A,2014-06-22,,1,F,Tampering With Physical Evidence,1,16001533MM40A,(M1),,2016-03-06,Battery,,,,1,16001533MM40A,(M1),2016-03-06,Battery,Risk of Recidivism,6,Medium,2014-06-23,Risk of Violence,1,Low,2014-06-23,2014-06-22,2014-07-02,0,9,622,1,1\r\n9851,robert watson,robert,watson,2014-04-01,Male,1938-07-29,77,Greater than 45,African-American,0,1,0,0,1,-1,2014-03-31 05:06:08,2014-04-02 12:46:17,04052533TC30A,2004-05-15,,3608,M,Driving License Suspended,1,16002278CF10A,(F3),0,2016-02-22,Aggravated Assault W/Dead Weap,2016-02-22,2016-02-23,,1,16002278CF10A,(F3),2016-02-22,Aggravated Assault W/Dead Weap,Risk of Recidivism,1,Low,2014-04-01,Risk of Violence,1,Low,2014-04-01,2016-02-22,2016-02-23,1,1,692,1,1\r\n9852,dewayne curry,dewayne,curry,2013-09-13,Male,1995-02-14,21,Less than 25,African-American,0,10,2,2,2,-1,2013-09-12 11:37:23,2013-09-13 11:41:13,13012898CF10A,2013-09-12,,1,F,Grand Theft in the 3rd Degree,1,13015751CF10A,(F3),0,2013-11-10,Driving While License Revoked,2013-11-10,2013-11-10,,0,,,,,Risk of Recidivism,10,High,2013-09-13,Risk of Violence,7,Medium,2013-09-13,2013-11-10,2013-11-10,2,0,58,0,1\r\n9853,reinaldo rubio,reinaldo,rubio,2014-04-17,Male,1969-09-25,46,Greater than 45,Caucasian,0,6,0,0,11,-122,2013-12-16 04:17:00,2014-02-12 10:41:00,13017712CF10A,,2013-12-20,118,F,arrest case no charge,1,14013621CF10A,(F3),0,2014-10-09,Grand Theft in the 3rd Degree,2014-10-09,2014-12-09,,0,,,,,Risk of Recidivism,6,Medium,2014-04-17,Risk of Violence,2,Low,2014-04-17,2014-10-09,2014-12-09,11,0,175,1,1\r\n9854,terrtric doctor,terrtric,doctor,2013-10-12,Male,1962-02-28,54,Greater than 45,African-American,0,3,0,0,4,-1,2013-10-11 04:00:54,2013-10-14 05:36:08,13014274CF10A,2013-10-11,,1,F,Sex Batt Faml/Cust Vict 12-17Y,1,13016040CF10A,(F1),31,2013-10-15,Tampering with a Victim,2013-11-15,2015-04-21,,0,,,,,Risk of Recidivism,3,Low,2013-10-12,Risk of Violence,1,Low,2013-10-12,2013-10-11,2013-10-14,4,2,3,1,1\r\n9855,martin kildea,martin,kildea,2013-04-25,Male,1961-09-17,54,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-04-24 09:17:57,2013-04-25 01:20:58,13005886CF10A,2013-04-24,,1,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-25,Risk of Violence,1,Low,2013-04-25,2013-04-24,2013-04-25,3,0,1072,0,0\r\n9856,roderick edwards,roderick,edwards,2014-01-22,Male,1989-07-28,26,25 - 45,African-American,0,9,0,0,15,-1,2014-01-21 04:59:27,2014-03-05 04:11:04,14000874CF10A,,2014-01-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-22,Risk of Violence,6,Medium,2014-01-22,2014-01-21,2014-03-05,15,42,800,0,0\r\n9857,denzell mcfadden,denzell,mcfadden,2013-04-27,Male,1992-05-11,23,Less than 25,African-American,0,9,1,1,8,0,2013-04-27 05:08:36,2014-01-07 06:58:24,13006046CF10A,2013-04-27,,0,F,Burglary Structure Unoccup,1,13006283CF10A,(F3),,2013-04-30,Burglary Structure Unoccup,,,,0,,,,,Risk of Recidivism,9,High,2013-04-27,Risk of Violence,6,Medium,2013-04-27,2013-04-27,2014-01-07,8,0,3,1,1\r\n9858,jhonatan navasmejia,jhonatan,navasmejia,2013-04-18,Male,1988-07-12,27,25 - 45,Hispanic,0,2,0,0,1,-86,2013-01-22 03:25:30,2013-01-25 02:25:22,13001032CF10A,,2013-04-15,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-18,Risk of Violence,2,Low,2013-04-18,2014-01-30,2014-02-05,1,0,287,0,0\r\n9861,leonard ulloa,leonard,ulloa,2013-11-15,Male,1977-01-13,39,25 - 45,Caucasian,0,2,0,0,2,0,2013-11-15 03:22:59,2013-12-03 11:40:11,13006242CF10A,,2013-11-15,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-15,Risk of Violence,2,Low,2013-11-15,2013-11-15,2013-12-03,2,18,868,0,0\r\n9862,jose martinez,jose,martinez,2013-11-06,Male,1980-12-13,35,25 - 45,Hispanic,0,7,0,0,13,-1,2013-11-05 06:09:03,2013-11-09 09:07:35,13015408CF10A,2013-11-05,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-06,Risk of Violence,3,Low,2013-11-06,2013-11-05,2013-11-09,13,3,877,0,0\r\n9864,vaughn kellingbeck,vaughn,kellingbeck,2013-09-15,Male,1986-07-21,29,25 - 45,African-American,0,1,0,0,1,-1,2013-09-14 02:30:23,2013-09-15 01:33:56,13017545MM10A,2013-09-14,,1,M,Battery,1,14001538MM30A,(M1),,2014-09-15,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-15,Risk of Violence,2,Low,2013-09-15,2013-09-14,2013-09-15,1,0,365,1,1\r\n9865,shawn clarke,shawn,clarke,2014-02-06,Male,1986-03-31,30,25 - 45,African-American,1,4,0,0,9,-1,2014-02-05 02:24:40,2014-02-06 09:14:07,14002051MM10A,2014-02-05,,1,M,Viol Prot Injunc Repeat Viol,1,14001920MM20A,(M1),,2014-06-26,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-06,Risk of Violence,4,Low,2014-02-06,2015-07-24,2015-07-29,9,0,140,1,1\r\n9867,kenneth beasley,kenneth,beasley,2013-09-06,Male,1975-01-12,41,25 - 45,African-American,0,3,0,0,6,-1,2013-09-05 03:59:11,2013-09-11 05:35:17,13012551CF10A,2013-09-05,,1,F,Poss Cocaine/Intent To Del/Sel,1,16009411TC20A,(M2),22,2016-02-18,Driving License Suspended,2016-03-11,2016-03-16,,0,,,,,Risk of Recidivism,3,Low,2013-09-06,Risk of Violence,4,Low,2013-09-06,2013-09-05,2013-09-11,6,5,895,1,0\r\n9868,eugene ameda,eugene,ameda,2013-10-14,Male,1984-01-03,32,25 - 45,African-American,0,10,0,0,1,-1,2013-10-13 09:56:52,2014-02-05 11:25:55,13019389MM10A,2013-10-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-10-14,Risk of Violence,8,High,2013-10-14,2013-10-13,2014-02-05,1,114,900,0,0\r\n9869,keith williams,keith,williams,2013-04-09,Male,1967-12-09,48,Greater than 45,African-American,0,6,0,0,12,-24,2013-03-16 12:22:49,2013-03-16 01:38:12,12026644TC10A,,2012-05-11,333,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-09,Risk of Violence,3,Low,2013-04-09,2013-03-16,2013-03-16,12,0,1088,0,0\r\n9871,roger lutar,roger,lutar,2014-01-14,Male,1976-06-03,39,25 - 45,Caucasian,0,6,0,0,2,-120,2013-09-16 01:06:26,2013-11-19 10:46:00,09016467CF10A,,2013-09-16,120,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-14,Risk of Violence,3,Low,2014-01-14,2013-09-16,2013-11-19,2,0,808,0,0\r\n9872,bruse mcgill,bruse,mcgill,2014-11-28,Male,1963-07-31,52,Greater than 45,African-American,0,6,0,0,0,-1,2014-11-27 09:00:13,2014-12-01 10:10:14,14016883MM10A,2014-11-27,,1,M,Battery,1,15000828CF10A,(M1),0,2015-01-19,Viol Pretrial Release Dom Viol,2015-01-19,2015-05-17,,1,15000828CF10A,(M1),2015-01-19,Battery,Risk of Recidivism,6,Medium,2014-11-28,Risk of Violence,4,Low,2014-11-28,2015-01-19,2015-05-17,0,3,52,1,1\r\n9875,andre uter,andre,uter,2013-09-06,Male,1984-05-08,31,25 - 45,African-American,0,1,1,0,3,0,2013-09-06 12:54:06,2013-09-06 09:10:00,13012560CF10A,2013-09-05,,1,F,Grand Theft in the 3rd Degree,1,14011272CF10A,(F3),203,2014-04-27,Grand Theft in the 3rd Degree,2014-11-16,2014-11-16,,0,,,,,Risk of Recidivism,1,Low,2013-09-06,Risk of Violence,2,Low,2013-09-06,2014-11-16,2014-11-16,3,0,233,1,1\r\n9877,aaron epstein,aaron,epstein,2013-09-17,Male,1993-12-22,22,Less than 25,Caucasian,0,5,0,3,1,-1,2013-09-16 07:00:48,2013-09-17 12:10:48,13013089CF10A,2013-09-16,,1,F,Possession Of Alprazolam,1,14009532CF10A,(F3),78,2014-04-23,Possession of XLR11,2014-07-10,2014-07-11,,0,,,,,Risk of Recidivism,5,Medium,2013-09-17,Risk of Violence,5,Medium,2013-09-17,2014-11-20,2014-11-30,1,0,218,1,1\r\n9879,gregory horton,gregory,horton,2014-01-16,Male,1959-08-01,56,Greater than 45,African-American,0,3,0,0,4,-50,2013-11-27 11:15:34,2013-11-28 12:56:21,13022264MM10A,2013-11-27,,50,M,Battery,1,14008977CF10A,(F2),0,2014-06-30,Sexual Battery / Vict 12 Yrs +,2014-06-30,2014-08-05,,1,14008977CF10A,(F2),2014-06-30,Sexual Battery / Vict 12 Yrs +,Risk of Recidivism,3,Low,2014-01-16,Risk of Violence,1,Low,2014-01-16,2014-06-30,2014-08-05,4,0,165,1,1\r\n9880,angela waller,angela,waller,2013-09-07,Female,1969-07-22,46,Greater than 45,Caucasian,0,1,0,0,0,0,2013-09-07 12:48:05,2013-09-07 09:24:33,13017046MM10A,2013-09-06,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-07,Risk of Violence,1,Low,2013-09-07,2013-09-07,2013-09-07,0,0,937,0,0\r\n9881,nancy weaver,nancy,weaver,2014-09-23,Female,1963-12-17,52,Greater than 45,Caucasian,0,7,0,0,23,-62,2014-07-23 02:32:12,2014-09-23 11:19:27,14008784CF10A,,2014-07-23,62,F,arrest case no charge,1,15008634CF10A,(F3),,2015-01-25,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,7,Medium,2014-09-23,Risk of Violence,4,Low,2014-09-23,2014-07-23,2014-09-23,23,0,124,1,1\r\n9883,courtney edwards,courtney,edwards,2014-05-07,Male,1987-03-30,29,25 - 45,African-American,0,4,0,0,7,-1,2014-05-06 07:36:42,2014-05-07 08:47:54,14006320CF10A,2014-05-06,,1,F,Poss Tetrahydrocannabinols,1,14012675MM10A,(M1),0,2014-08-23,Possess Cannabis/20 Grams Or Less,2014-08-23,2014-08-24,,0,,,,,Risk of Recidivism,4,Low,2014-05-07,Risk of Violence,5,Medium,2014-05-07,2014-08-23,2014-08-24,7,0,108,1,1\r\n9885,brittany clark,brittany,clark,2013-05-09,Female,1993-10-26,22,Less than 25,African-American,0,7,0,0,0,-2,2013-05-07 04:52:05,2013-05-08 01:00:04,13006538CF10A,2013-05-07,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-09,Risk of Violence,5,Medium,2013-05-09,2013-05-07,2013-05-08,0,0,1058,0,0\r\n9886,carballo olazabal,carballo,olazabal,2013-03-06,Male,1984-02-23,32,25 - 45,Hispanic,0,1,0,0,1,-47,2013-01-18 10:07:02,2013-01-19 08:57:08,13000867CF10A,2013-01-18,,47,F,Uttering Forged Credit Card,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-06,Risk of Violence,2,Low,2013-03-06,2013-01-18,2013-01-19,1,0,1122,0,0\r\n9888,gideon smith,gideon,smith,2013-04-12,Male,1977-02-06,39,25 - 45,African-American,0,4,0,0,8,-1,2013-04-11 02:07:58,2013-05-21 06:41:12,13005388CF10A,2013-04-11,,1,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-12,Risk of Violence,2,Low,2013-04-12,2013-04-11,2013-05-21,8,39,1085,0,0\r\n9889,david walker,david,walker,2013-08-15,Male,1980-04-28,35,25 - 45,African-American,0,6,0,0,9,-1,2013-08-14 03:08:13,2013-08-15 07:53:31,13011431CF10A,2013-08-14,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-15,Risk of Violence,3,Low,2013-08-15,2015-09-25,2015-09-30,9,0,771,0,0\r\n9890,bryan ashley,bryan,ashley,2014-01-21,Male,1989-08-05,26,25 - 45,African-American,0,1,0,0,1,0,2014-01-21 01:53:43,2014-02-04 07:20:36,14000990MM10A,2014-01-21,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-21,Risk of Violence,2,Low,2014-01-21,2014-08-04,2014-08-04,1,14,195,0,0\r\n9891,traci sapp,traci,sapp,2013-02-27,Male,1989-04-01,27,25 - 45,African-American,0,2,0,0,1,0,2013-02-27 12:25:38,2013-02-27 02:41:09,13009902CF10A,2013-02-26,,1,F,Crim Use of Personal ID Info,1,15010744MM10A,(M1),0,2015-10-13,Extradition/Defendants,2015-10-13,2015-10-29,,0,,,,,Risk of Recidivism,2,Low,2013-02-27,Risk of Violence,3,Low,2013-02-27,2013-05-21,2013-05-22,1,0,83,0,0\r\n9892,anthony andrews,anthony,andrews,2014-06-24,Male,1988-12-20,27,25 - 45,African-American,0,10,0,0,5,-28,2014-05-27 08:49:05,2014-06-24 11:02:54,14006758CF10A,,2014-05-27,28,F,arrest case no charge,1,14013667CF10A,(M2),0,2014-09-06,Felony Battery w/Prior Convict,2014-09-06,2015-04-16,,1,14013667CF10A,(M2),2014-09-06,Felony Battery w/Prior Convict,Risk of Recidivism,10,High,2014-06-24,Risk of Violence,5,Medium,2014-06-24,2014-09-06,2015-04-16,5,0,74,1,1\r\n9894,cassandra robinson,cassandra,robinson,2014-08-27,Female,1981-06-15,34,25 - 45,Caucasian,0,9,0,0,10,22,2014-09-18 11:18:42,2014-10-02 09:03:17,14008082CF10A,2014-06-11,,77,F,Possession of Cocaine,1,15008674MM10A,(M1),0,2015-08-16,Battery,2015-08-16,2015-08-20,,1,15008674MM10A,(M1),2015-08-16,Battery,Risk of Recidivism,9,High,2014-08-27,Risk of Violence,5,Medium,2014-08-27,2014-09-18,2014-10-02,10,0,22,0,1\r\n9898,roger drain,roger,drain,2013-09-24,Male,1968-06-18,47,Greater than 45,African-American,0,9,0,0,21,-124,2013-05-23 01:49:55,2013-09-12 10:31:00,13003236CF10A,,2013-05-23,124,F,arrest case no charge,1,15008923CF10A,(F3),,2015-07-11,False Imprisonment,,,,0,,,,,Risk of Recidivism,9,High,2013-09-24,Risk of Violence,4,Low,2013-09-24,2014-04-29,2014-07-22,21,0,217,0,1\r\n9899,mania simon,mania,simon,2014-02-06,Male,1988-06-18,27,25 - 45,African-American,0,2,0,0,2,104,2014-05-21 12:16:18,2014-06-22 03:06:35,13004765MM10A,2013-03-09,,334,M,Posses/Disply Susp/Revk/Frd DL,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-06,Risk of Violence,2,Low,2014-02-06,2014-05-21,2014-06-22,2,0,104,0,0\r\n9900,kevin morales,kevin,morales,2013-04-29,Male,1988-09-09,27,25 - 45,Hispanic,0,6,0,0,6,1026,2016-02-19 05:00:40,2016-03-04 08:51:57,11003049CF10A,,2012-09-19,222,F,arrest case no charge,1,16001632MM10A,(M1),0,2016-02-19,Possess Cannabis/20 Grams Or Less,2016-02-19,2016-03-04,,0,,,,,Risk of Recidivism,6,Medium,2013-04-29,Risk of Violence,6,Medium,2013-04-29,2016-02-19,2016-03-04,6,0,1026,1,0\r\n9902,qushondra fields,qushondra,fields,2014-12-17,Female,1983-12-13,32,25 - 45,African-American,0,1,0,0,0,0,2014-12-17 01:46:31,2014-12-17 08:04:44,14017743MM10A,2014-12-16,,1,M,Battery,1,15016551CF10A,(F2),,2015-12-28,Throw Deadly Missile Into Veh,,,,1,15016551CF10A,(F2),2015-12-28,Throw Deadly Missile Into Veh,Risk of Recidivism,1,Low,2014-12-17,Risk of Violence,1,Low,2014-12-17,2014-12-17,2014-12-17,0,0,376,1,1\r\n9903,manuel besada,manuel,besada,2013-02-26,Male,1987-11-30,28,25 - 45,Hispanic,0,8,0,0,8,407,2014-04-09 12:32:09,2014-06-05 05:29:46,12025753MM10A,2012-12-18,,70,M,Possess Cannabis/20 Grams Or Less,1,14003589MM40A,(M1),,2014-08-01,Possess Drug Paraphernalia,,,,0,,,,,Risk of Recidivism,8,High,2013-02-26,Risk of Violence,6,Medium,2013-02-26,2014-04-09,2014-06-05,8,0,407,0,1\r\n9904,jordan moody,jordan,moody,2013-03-12,Male,1990-11-08,25,25 - 45,African-American,0,9,0,1,5,-1,2013-03-11 09:55:25,2013-03-16 07:55:14,13003381CF10A,,2013-03-11,1,F,arrest case no charge,1,13009315MM10A,(M1),0,2013-05-14,Resist/Obstruct W/O Violence,2013-05-14,2013-10-01,,0,,,,,Risk of Recidivism,9,High,2013-03-12,Risk of Violence,9,High,2013-03-12,2013-05-14,2013-10-01,5,4,63,1,1\r\n9905,fritz poulard,fritz,poulard,2014-03-28,Male,1993-06-04,22,Less than 25,Caucasian,0,5,0,1,2,-1,2014-03-27 08:50:11,2014-04-21 05:34:22,14005318MM10A,2014-03-27,,1,M,Battery,1,14049928TC30A,(M2),,2014-06-05,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-28,Risk of Violence,6,Medium,2014-03-28,2014-03-27,2014-04-21,2,24,69,1,1\r\n9906,ivan vera,ivan,vera,2013-07-18,Male,1973-02-07,43,25 - 45,Caucasian,0,2,0,0,4,-55,2013-05-24 08:57:03,2013-05-25 10:31:58,13021578TC10A,2013-05-24,,55,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-18,Risk of Violence,1,Low,2013-07-18,2013-05-24,2013-05-25,4,0,988,0,0\r\n9907,john seymore,john,seymore,2013-04-24,Male,1963-11-25,52,Greater than 45,African-American,0,9,0,0,7,-1,2013-04-23 04:49:37,2013-08-19 02:59:15,13005828CF10A,2013-04-23,,1,F,Possession of Cocaine,1,13014298CF10A,(M1),0,2013-10-12,Possess Drug Paraphernalia,2013-10-12,2013-11-13,,1,13014298CF10A,(F2),2013-10-12,Aggravated Battery / Pregnant,Risk of Recidivism,9,High,2013-04-24,Risk of Violence,3,Low,2013-04-24,2013-10-12,2013-11-13,7,117,171,1,1\r\n9908,britton blackwood,britton,blackwood,2013-09-13,Male,1994-05-25,21,Less than 25,African-American,0,10,0,0,2,0,2013-09-13 06:24:14,2013-09-14 04:42:09,13012966CF10A,2013-09-13,,0,F,Tampering With Physical Evidence,1,13022505MM10A,(M1),,2013-09-27,Carrying A Concealed Weapon,,,,1,15000392CF10A,(F2),2014-09-24,Armed False Imprisonment,Risk of Recidivism,10,High,2013-09-13,Risk of Violence,10,High,2013-09-13,2013-09-13,2013-09-14,2,1,14,1,1\r\n9909,peterson thelemaque,peterson,thelemaque,2014-05-15,Male,1987-12-21,28,25 - 45,African-American,0,9,1,0,11,-1,2014-05-14 11:19:30,2014-05-16 03:45:44,14006721CF10A,2014-05-14,,1,F,Burglary Conveyance Unoccup,1,15001974MM10A,(M2),0,2015-02-17,Prowling/Loitering,2015-02-17,2015-02-18,,0,,,,,Risk of Recidivism,9,High,2014-05-15,Risk of Violence,8,High,2014-05-15,2015-02-17,2015-02-18,11,1,278,1,1\r\n9910,shedrich hines,shedrich,hines,2013-07-16,Male,1994-10-09,21,Less than 25,African-American,0,9,0,0,1,34,2013-08-19 07:24:28,2014-09-18 07:00:41,13002313CF10A,2013-02-13,,153,F,Carrying Concealed Firearm,1,13011627CF10A,(F2),0,2013-08-19,Robbery / No Weapon,2013-08-19,2014-09-18,,1,13011627CF10A,(F2),2013-08-19,Robbery / No Weapon,Risk of Recidivism,9,High,2013-07-16,Risk of Violence,9,High,2013-07-16,2013-08-19,2014-09-18,1,0,34,1,1\r\n9912,ana olivaconsuegra,ana,olivaconsuegra,2013-08-26,Male,1990-03-26,26,25 - 45,Hispanic,0,6,0,0,0,-1,2013-08-25 01:25:15,2013-08-25 05:58:19,13011965CF10A,2013-08-25,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-26,Risk of Violence,4,Low,2013-08-26,2013-08-25,2013-08-25,0,0,949,0,0\r\n9914,giovanni iglesias,giovanni,iglesias,2013-10-04,Male,1992-10-20,23,Less than 25,Caucasian,0,4,1,0,4,-1,2013-10-03 10:35:19,2013-10-11 06:19:02,13018833MM10A,2013-10-03,,1,M,Battery,1,15007090CF10A,(F1),1,2015-05-29,Trafficking 4-14 Grams Heroin,2015-05-30,2015-06-10,,0,,,,,Risk of Recidivism,4,Low,2013-10-04,Risk of Violence,4,Low,2013-10-04,2014-07-15,2014-08-19,4,7,284,0,1\r\n9915,enrique cruz,enrique,cruz,2013-10-14,Male,1977-02-04,39,25 - 45,Hispanic,0,1,0,0,3,,,,13016657MM10A,2013-08-30,,45,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-14,Risk of Violence,1,Low,2013-10-14,,,3,0,900,0,0\r\n9917,onique williams,onique,williams,2013-05-12,Male,1985-01-23,31,25 - 45,African-American,0,1,0,0,1,-1,2013-05-11 03:14:46,2013-05-12 07:01:24,13009134MM10A,2013-05-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-12,Risk of Violence,2,Low,2013-05-12,2013-05-11,2013-05-12,1,0,1055,0,0\r\n9918,alan malone,alan,malone,2013-05-27,Male,1981-04-24,34,25 - 45,Caucasian,0,5,0,0,1,-1,2013-05-26 09:18:06,2013-05-27 06:09:09,13010121MM10A,2013-05-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-27,Risk of Violence,5,Medium,2013-05-27,2013-05-26,2013-05-27,1,0,1040,0,0\r\n9919,jamie elliot,jamie,elliot,2013-04-07,Male,1983-12-15,32,25 - 45,African-American,0,4,0,0,0,-1,2013-04-06 10:24:59,2013-04-07 01:32:06,13004960CF10A,2013-04-06,,1,M,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-07,Risk of Violence,3,Low,2013-04-07,2013-04-06,2013-04-07,0,0,1090,0,0\r\n9920,nadine chambers,nadine,chambers,2013-08-12,Female,1965-08-08,50,Greater than 45,Caucasian,0,3,0,0,0,-3,2013-08-09 01:00:46,2013-08-09 06:29:32,13014985MM10A,2013-08-08,,4,M,Driving Under The Influence,1,13017330MM10A,(M1),1,2013-09-11,Battery,2013-09-12,2013-09-13,,1,13017330MM10A,(M1),2013-09-11,Battery,Risk of Recidivism,3,Low,2013-08-12,Risk of Violence,1,Low,2013-08-12,2014-11-19,2014-11-20,0,0,30,1,1\r\n9921,vincent green,vincent,green,2013-04-13,Male,1988-06-03,27,25 - 45,African-American,0,5,0,0,1,-1,2013-04-12 09:18:59,2013-04-13 08:25:20,13005305CF10A,2013-04-12,,1,M,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-13,Risk of Violence,3,Low,2013-04-13,2014-03-05,2014-08-15,1,0,326,0,0\r\n9922,krystal patterson,krystal,patterson,2014-01-17,Female,1989-05-23,26,25 - 45,African-American,0,3,1,0,4,-1,2014-01-16 09:09:35,2014-01-18 12:04:24,14000707CF10A,,2014-01-16,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-17,Risk of Violence,3,Low,2014-01-17,2014-01-16,2014-01-18,4,1,805,0,0\r\n9923,jeremy watts,jeremy,watts,2014-10-27,Male,1989-03-31,27,25 - 45,African-American,1,5,0,0,4,-1,2014-10-26 10:19:20,2014-10-28 04:09:18,14014428CF10A,2014-10-26,,1,F,Aggravated Assault W/Dead Weap,1,15000454CF10A,(F3),0,2015-01-10,Poss Pyrrolidinovalerophenone,2015-01-10,2015-01-11,,1,15005533CF10A,(F3),2015-04-27,Agg Assault W/int Com Fel Dome,Risk of Recidivism,5,Medium,2014-10-27,Risk of Violence,3,Low,2014-10-27,2015-01-10,2015-01-11,4,1,75,1,1\r\n9924,michael cashes,michael,cashes,2013-03-12,Male,1986-05-04,29,25 - 45,Caucasian,0,3,0,0,0,0,2013-03-12 02:57:33,2013-03-13 02:33:01,13003636CF10A,2013-03-12,,0,F,Aggravated Assault W/dead Weap,1,14007973MU10A,(M1),0,2014-03-02,Driving Under The Influence,2014-03-02,2014-03-03,,0,,,,,Risk of Recidivism,3,Low,2013-03-12,Risk of Violence,3,Low,2013-03-12,2014-03-02,2014-03-03,0,1,355,1,1\r\n9926,brandon cramasta,brandon,cramasta,2014-10-22,Male,1985-10-27,30,25 - 45,Caucasian,0,10,0,0,11,-214,2014-03-22 05:32:17,2014-03-22 01:52:12,14011322MU10A,2014-03-22,,214,M,Reckless Driving,1,15003185TC30A,(M2),,2015-01-06,Fail Obey Driv Lic Restrictions,,,,0,,,,,Risk of Recidivism,10,High,2014-10-22,Risk of Violence,6,Medium,2014-10-22,2014-03-22,2014-03-22,11,0,76,1,1\r\n9931,jean fils-aime,jean,fils-aime,2013-01-13,Male,1957-07-31,58,Greater than 45,African-American,0,1,0,0,0,-1,2013-01-12 03:18:57,2013-01-13 12:41:21,13000730MM10A,2013-01-11,,2,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-13,Risk of Violence,1,Low,2013-01-13,2013-01-12,2013-01-13,0,0,1174,0,0\r\n9933,johnny gore,johnny,gore,2013-01-09,Male,1988-10-17,27,25 - 45,African-American,2,10,0,0,14,0,2013-01-09 12:01:13,2013-01-11 03:18:28,13000387CF10A,2013-01-09,,0,F,False Imprisonment,1,14000959CF10A,(F1),34,2013-12-11,Sell Cocaine 1000FT School,2014-01-14,2014-03-13,,0,,,,,Risk of Recidivism,10,High,2013-01-09,Risk of Violence,10,High,2013-01-09,2013-02-27,2013-04-01,14,2,49,0,1\r\n9934,daniel zephir,daniel,zephir,2013-03-24,Male,1987-12-15,28,25 - 45,African-American,0,5,0,0,5,0,2013-03-24 01:27:42,2013-03-24 06:38:53,13004236CF10A,2013-03-24,,0,F,Driving While License Revoked,1,13001156MM20A,(M2),39,2013-04-14,Petit Theft,2013-05-23,2013-05-30,,0,,,,,Risk of Recidivism,5,Medium,2013-03-24,Risk of Violence,2,Low,2013-03-24,2013-05-23,2013-05-30,5,0,21,1,1\r\n9935,kevin soto,kevin,soto,2013-04-18,Male,1991-07-27,24,Less than 25,African-American,0,10,5,1,15,-1,2013-04-17 07:43:21,2013-04-19 09:18:18,13005510CF10A,2013-04-17,,1,F,Deliver Cocaine,1,13012172CF10A,(F2),,2013-08-28,Aggravated Battery,,,,1,13012172CF10A,(F2),2013-08-28,Aggravated Battery,Risk of Recidivism,10,High,2013-04-18,Risk of Violence,9,High,2013-04-18,2013-04-17,2013-04-19,15,1,132,1,1\r\n9937,samuel guess,samuel,guess,2014-08-22,Male,1970-06-28,45,Greater than 45,African-American,0,1,0,0,1,121,2014-12-21 04:52:18,2015-09-17 06:26:38,14005527CF10A,,2014-04-16,128,F,arrest case no charge,1,14016871CF10A,(F3),27,2014-11-24,Grand Theft in the 3rd Degree,2014-12-21,2015-09-17,,0,,,,,Risk of Recidivism,1,Low,2014-08-22,Risk of Violence,1,Low,2014-08-22,2014-12-21,2015-09-17,1,0,94,1,1\r\n9939,wilfredo torres,wilfredo,torres,2013-12-02,Male,1965-07-01,50,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-01 05:20:31,2013-12-02 09:13:00,13022384MM10A,2013-12-01,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-02,Risk of Violence,1,Low,2013-12-02,2013-12-01,2013-12-02,0,0,851,0,0\r\n9940,avious lucas,avious,lucas,2013-12-10,Female,1985-07-19,30,25 - 45,African-American,0,9,0,0,15,-4,2013-12-06 12:19:25,2013-12-06 07:38:02,13016850CF10A,2013-12-05,,5,F,Possession of Cocaine,1,14007189TC10A,(M2),0,2014-02-25,Driving License Suspended,2014-02-25,2014-02-25,,0,,,,,Risk of Recidivism,9,High,2013-12-10,Risk of Violence,7,Medium,2013-12-10,2014-02-25,2014-02-25,15,0,77,0,1\r\n9941,giovanny gonzalez,giovanny,gonzalez,2013-07-26,Male,1991-01-30,25,25 - 45,Hispanic,0,3,0,0,1,37,2013-09-01 11:17:52,2013-09-02 08:21:50,13001285CF10A,,2013-02-20,156,F,arrest case no charge,1,13016735MM10A,(M2),0,2013-09-01,Prowling/Loitering,2013-09-01,2013-09-02,,0,,,,,Risk of Recidivism,3,Low,2013-07-26,Risk of Violence,4,Low,2013-07-26,2013-09-01,2013-09-02,1,0,37,1,1\r\n9942,adriano suarez,adriano,suarez,2013-11-17,Male,1970-01-02,46,Greater than 45,Hispanic,0,1,0,0,0,-1,2013-11-16 06:24:35,2013-11-17 08:15:11,13015946CF10A,2013-11-16,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-17,Risk of Violence,1,Low,2013-11-17,2013-11-16,2013-11-17,0,0,866,0,0\r\n9944,kevin abell,kevin,abell,2013-05-14,Male,1973-01-12,43,25 - 45,Caucasian,0,1,0,0,0,-1,2013-05-13 04:41:40,2013-05-14 06:46:00,13006849CF10A,2013-05-13,,1,F,Grand Theft in the 3rd Degree,1,14036190TC10A,(M2),227,2014-09-17,Expired DL More Than 6 Months,2015-05-02,2015-05-06,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2015-05-02,2015-05-06,0,0,491,1,1\r\n9945,ahmed deleon,ahmed,deleon,2014-01-04,Male,1991-06-13,24,Less than 25,Caucasian,0,2,0,0,0,-1,2014-01-03 09:09:22,2014-01-04 01:32:53,14000132CF10A,,2014-01-03,1,F,arrest case no charge,1,14054085TC30A,(M2),253,2014-06-23,Susp Drivers Lic 1st Offense,2015-03-03,2015-03-17,,0,,,,,Risk of Recidivism,2,Low,2014-01-04,Risk of Violence,3,Low,2014-01-04,2015-03-03,2015-03-17,0,0,170,1,1\r\n9948,elijah garland,elijah,garland,2013-02-06,Male,1982-01-03,34,25 - 45,African-American,0,7,0,0,10,-1,2013-02-05 05:25:18,2013-02-06 07:15:25,13001779CF10A,2013-02-05,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-06,Risk of Violence,5,Medium,2013-02-06,2013-02-05,2013-02-06,10,0,1150,0,0\r\n9949,luis otero,luis,otero,2014-03-14,Male,1960-01-28,56,Greater than 45,Hispanic,0,1,0,0,2,-108,2013-11-26 02:29:01,2013-11-27 03:32:27,13016699CF10A,,2013-11-26,108,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-14,Risk of Violence,1,Low,2014-03-14,2013-11-26,2013-11-27,2,0,749,0,0\r\n9951,diego garzon,diego,garzon,2014-01-18,Male,1989-10-14,26,25 - 45,Caucasian,0,2,0,0,2,-1,2014-01-17 04:03:50,2014-01-20 08:01:13,14000753CF10A,2014-01-17,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-18,Risk of Violence,3,Low,2014-01-18,2014-01-17,2014-01-20,2,2,804,0,0\r\n9952,jason boucher,jason,boucher,2013-01-16,Male,1984-05-14,31,25 - 45,Caucasian,0,1,0,0,0,-1,2013-01-15 07:55:01,2013-01-16 06:46:25,13000712CF10A,2013-01-15,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-16,Risk of Violence,1,Low,2013-01-16,2013-07-29,2013-09-19,0,0,194,0,0\r\n9953,christopher bazard,christopher,bazard,2013-08-05,Male,1993-01-25,23,Less than 25,African-American,0,3,0,3,1,-24,2013-07-12 04:45:33,2013-08-03 12:58:46,13009822CF10A,2013-07-12,,24,F,Grand Theft in the 3rd Degree,1,15016220TC20A,(M2),,2015-02-27,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-05,Risk of Violence,4,Low,2013-08-05,2013-07-12,2013-08-03,1,0,571,1,1\r\n9955,marlon dunlop,marlon,dunlop,2013-09-17,Male,1976-10-02,39,25 - 45,African-American,0,1,0,0,0,-1,2013-09-16 07:16:33,2013-10-04 09:01:33,13013088CF10A,2013-09-16,,1,F,Kidnapping / Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-17,Risk of Violence,1,Low,2013-09-17,2013-09-16,2013-10-04,0,17,927,0,0\r\n9956,brian butcher,brian,butcher,2014-12-28,Male,1965-06-14,50,Greater than 45,African-American,0,1,0,0,4,-1,2014-12-27 05:07:12,2014-12-28 01:52:30,14017086CF10A,2014-12-27,,1,F,Driving While License Revoked,1,15050654TC40A,(M1),,2015-06-02,Opert With Susp DL 2nd Offens,,,,0,,,,,Risk of Recidivism,1,Low,2014-12-28,Risk of Violence,1,Low,2014-12-28,2014-12-27,2014-12-28,4,0,156,1,1\r\n9959,chanel hooper,chanel,hooper,2013-10-08,Female,1993-09-04,22,Less than 25,African-American,0,6,0,0,0,-1,2013-10-07 03:03:48,2013-10-08 08:59:33,13019072MM10A,2013-10-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-08,Risk of Violence,5,Medium,2013-10-08,2013-10-07,2013-10-08,0,0,906,0,0\r\n9960,josalina afonso,josalina,afonso,2013-09-14,Female,1990-05-21,25,25 - 45,African-American,0,2,0,0,0,-1,2013-09-13 08:03:52,2013-09-14 07:39:15,13017497MM10A,2013-09-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-14,Risk of Violence,3,Low,2013-09-14,2013-09-13,2013-09-14,0,0,930,0,0\r\n9963,leontae williams,leontae,williams,2013-10-20,Female,1994-11-01,21,Less than 25,African-American,0,9,1,0,2,-1,2013-10-19 07:50:05,2013-10-20 08:38:22,13014630CF10A,2013-10-19,,1,F,Crimin Mischief Damage $1000+,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-20,Risk of Violence,6,Medium,2013-10-20,2013-10-19,2013-10-20,2,0,894,0,0\r\n9965,justin koven,justin,koven,2014-02-12,Male,1995-05-06,20,Less than 25,Caucasian,0,4,0,0,1,-1,2014-02-11 03:24:41,2014-02-12 02:37:51,14001933CF10A,2014-02-11,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-12,Risk of Violence,6,Medium,2014-02-12,2014-02-11,2014-02-12,1,0,779,0,0\r\n9966,tracy butler,tracy,butler,2014-06-30,Male,1961-08-15,54,Greater than 45,African-American,0,5,0,0,12,0,2014-06-30 04:03:25,2014-10-26 04:37:21,14010073MM10A,2014-06-30,,0,M,Battery,1,14015969CF10A,(M1),0,2014-11-29,Viol Injunct Domestic Violence,2014-11-29,2015-12-15,,1,14015969CF10A,(F2),2014-11-29,Throw Deadly Missile Into Veh,Risk of Recidivism,5,Medium,2014-06-30,Risk of Violence,2,Low,2014-06-30,2014-11-29,2015-12-15,12,118,152,1,1\r\n9968,shavoria lewis,shavoria,lewis,2013-01-15,Female,1988-07-01,27,25 - 45,African-American,0,6,0,0,2,-1,2013-01-14 07:34:35,2013-01-18 08:28:33,13000621CF10A,2013-01-14,,1,F,Felony Petit Theft,1,13040414TC10A,(M2),,2013-10-02,Unlaw LicTag/Sticker Attach,,,,1,14006149CF10A,(F3),2014-05-02,Robbery Sudd Snatch No Weapon,Risk of Recidivism,6,Medium,2013-01-15,Risk of Violence,4,Low,2013-01-15,2013-01-14,2013-01-18,2,3,260,1,1\r\n9969,donald moroney,donald,moroney,2014-10-06,Male,1970-08-20,45,Greater than 45,Caucasian,0,5,0,0,5,-4,2014-10-02 02:26:05,2014-10-03 02:43:26,14013277CF10A,2014-10-02,,4,F,Possession of Methadone,1,15001500MM10A,(M1),0,2015-02-06,Tresspass in Struct/Convey Occupy,2015-02-06,2015-02-06,,0,,,,,Risk of Recidivism,5,Medium,2014-10-06,Risk of Violence,3,Low,2014-10-06,2015-02-06,2015-02-06,5,0,123,0,1\r\n9970,miles floyd,miles,floyd,2014-07-12,Male,1981-11-13,34,25 - 45,African-American,3,7,1,0,13,-1,2014-07-11 05:24:24,2014-07-12 08:02:16,14008346CF10A,,2014-07-11,1,F,arrest case no charge,1,16000456MM20A,(M2),,2016-02-11,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,7,Medium,2014-07-12,Risk of Violence,2,Low,2014-07-12,2014-07-11,2014-07-12,13,0,579,1,1\r\n9971,nancy howard,nancy,howard,2014-03-22,Female,1961-01-18,55,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-21 09:28:46,2014-03-22 10:57:58,14004007CF10A,2014-03-21,,1,F,Battery on a Person Over 65,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-22,Risk of Violence,1,Low,2014-03-22,2014-03-21,2014-03-22,0,0,741,0,0\r\n9972,vatoria adderly,vatoria,adderly,2014-01-23,Male,1991-07-01,24,Less than 25,African-American,0,2,0,0,0,-1,2014-01-22 10:18:38,2014-01-23 02:17:27,14001109MM10A,2014-01-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-23,Risk of Violence,3,Low,2014-01-23,2014-01-22,2014-01-23,0,0,799,0,0\r\n9973,bruce francis,bruce,francis,2014-11-22,Male,1995-11-14,20,Less than 25,African-American,0,10,0,1,0,0,2014-11-22 04:56:51,2014-11-22 08:49:03,14015731CF10A,2014-11-22,,0,F,Possession of Cocaine,1,15000919CF10A,(F3),,2015-01-21,Tampering With Physical Evidence,,,,1,15000919CF10A,(F3),2015-01-21,Battery on Law Enforc Officer,Risk of Recidivism,10,High,2014-11-22,Risk of Violence,9,High,2014-11-22,2014-12-13,2014-12-13,0,0,21,0,1\r\n9977,everald mcdonald,everald,mcdonald,2013-01-31,Male,1978-05-29,37,25 - 45,African-American,0,5,0,0,5,0,2013-01-31 01:20:18,2013-02-06 12:08:39,13002275MM10A,2013-01-30,,1,M,Battery,1,13094195TC30A,(M2),,2013-09-19,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-31,Risk of Violence,3,Low,2013-01-31,2013-01-31,2013-02-06,5,6,231,1,1\r\n9979,brittany holt,brittany,holt,2013-07-02,Female,1982-01-22,34,25 - 45,Caucasian,0,1,0,0,1,-21,2013-06-11 09:42:12,2013-06-12 11:45:38,13011225MM10A,2013-06-11,,21,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-02,Risk of Violence,2,Low,2013-07-02,2013-06-11,2013-06-12,1,0,1004,0,0\r\n9980,latrice johnson,latrice,johnson,2013-08-05,Female,1974-11-17,41,25 - 45,African-American,0,6,0,0,2,-26,2013-07-10 12:47:23,2013-08-03 02:15:23,13009616CF10A,2013-07-09,,27,F,Aggravated Assault W/dead Weap,1,14009684CF10A,(F3),,2013-10-18,Fail to Report Change/Residence,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-05,Risk of Violence,5,Medium,2013-08-05,2013-07-10,2013-08-03,2,0,74,1,1\r\n9981,david penso,david,penso,2014-06-13,Male,1995-01-23,21,Less than 25,African-American,0,6,0,0,1,-1,2014-06-12 08:19:38,2014-06-13 01:40:20,14001175CF10A,,2014-06-12,1,F,arrest case no charge,1,15009786MM10A,(M1),0,2015-09-15,Possess Drug Paraphernalia,2015-09-15,2015-09-22,,0,,,,,Risk of Recidivism,6,Medium,2014-06-13,Risk of Violence,6,Medium,2014-06-13,2015-09-15,2015-09-22,1,0,459,1,1\r\n9983,wesley brown,wesley,brown,2014-12-20,Male,1993-09-14,22,Less than 25,African-American,0,3,0,0,3,-1,2014-12-19 07:19:55,2014-12-28 01:36:56,14016818CF10A,2014-12-19,,1,F,Burglary Unoccupied Dwelling,1,15001695MM20A,(M1),,2015-06-25,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,3,Low,2014-12-20,Risk of Violence,4,Low,2014-12-20,2015-02-05,2015-03-12,3,8,47,0,1\r\n9984,alan-michael caldwell,alan-michael,caldwell,2013-01-27,Male,1991-05-06,24,Less than 25,African-American,0,8,0,0,0,0,2013-01-27 04:17:45,2013-01-28 06:51:41,13001345CF10A,2013-01-27,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-01-27,Risk of Violence,6,Medium,2013-01-27,2013-01-27,2013-01-28,0,1,1160,0,0\r\n9985,nathan mcmullen,nathan,mcmullen,2013-12-11,Male,1974-03-18,42,25 - 45,Caucasian,0,4,0,0,8,-1,2013-12-10 08:19:39,2013-12-11 09:07:56,13017074CF10A,2013-12-10,,1,F,Agg Fleeing and Eluding,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-11,Risk of Violence,4,Low,2013-12-11,2014-01-28,2014-01-29,8,0,48,0,0\r\n9987,latoya kelly,latoya,kelly,2013-05-17,Female,1993-03-19,23,Less than 25,African-American,0,4,0,0,0,-1,2013-05-16 12:56:46,2013-05-17 08:35:38,13009480MM10A,2013-05-16,,1,M,Battery,1,14081792TC30A,(M2),,2014-09-21,Driving while DL Susp / Financial Resp,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-17,Risk of Violence,5,Medium,2013-05-17,2013-05-16,2013-05-17,0,0,492,1,1\r\n9988,nichole stupart,nichole,stupart,2013-06-05,Female,1976-01-03,40,25 - 45,African-American,0,1,0,0,1,-73,2013-03-24 12:28:55,2013-03-25 05:28:38,13004261CF10A,2013-03-24,,73,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-05,Risk of Violence,1,Low,2013-06-05,2013-03-24,2013-03-25,1,0,1031,0,0\r\n9989,xavier stroman,xavier,stroman,2013-12-11,Male,1996-07-03,19,Less than 25,African-American,3,9,0,0,2,-43,2013-10-29 07:02:12,2013-12-11 11:56:37,13015060CF10A,,2013-10-29,43,F,arrest case no charge,1,14003734CF10A,(F2),1,2014-02-20,Burglary Dwelling Occupied,2014-02-21,2015-03-03,,0,,,,,Risk of Recidivism,9,High,2013-12-11,Risk of Violence,9,High,2013-12-11,2015-03-03,2020-01-01,2,0,71,1,1\r\n9991,wilfredo rodriguez,wilfredo,rodriguez,2014-01-31,Male,1995-12-30,20,Less than 25,Caucasian,0,4,0,0,0,-1,2014-01-30 08:42:46,2014-02-03 01:10:07,14001693MM10A,2014-01-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-31,Risk of Violence,7,Medium,2014-01-31,2014-01-30,2014-02-03,0,3,791,0,0\r\n9996,zulimay lizcano,zulimay,lizcano,2013-10-26,Female,1972-02-27,44,25 - 45,Caucasian,0,1,0,0,0,-1,2013-10-25 08:43:02,2013-10-26 02:45:42,13014955CF10A,2013-10-25,,1,F,Grand Theft in the 3rd Degree,1,14004545MM40A,(M2),,2014-10-24,Petit Theft,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-26,Risk of Violence,1,Low,2013-10-26,2013-10-25,2013-10-26,0,0,363,1,1\r\n9997,stefan walters,stefan,walters,2013-10-02,Male,1995-07-04,20,Less than 25,African-American,0,4,0,0,0,-1,2013-10-01 05:18:33,2013-10-02 07:35:45,13018695MM10A,2013-10-01,,1,M,Assault,1,15012675MM10A,(M1),0,2015-12-07,Resist/Obstruct W/O Violence,2015-12-07,2015-12-09,,1,15012675MM10A,(M1),2015-12-07,Battery,Risk of Recidivism,4,Low,2013-10-02,Risk of Violence,7,Medium,2013-10-02,2015-12-07,2015-12-09,0,0,796,1,0\r\n10004,jarvis cornelius,jarvis,cornelius,2013-02-12,Male,1989-01-14,27,25 - 45,African-American,0,5,0,0,5,-1,2013-02-11 11:48:35,2013-02-12 08:12:58,13006473TC10A,2013-02-11,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-12,Risk of Violence,4,Low,2013-02-12,2013-02-11,2013-02-12,5,0,1144,0,0\r\n10006,korbin goodroad,korbin,goodroad,2013-09-14,Male,1995-04-21,20,Less than 25,Caucasian,0,10,0,0,0,-1,2013-09-13 10:01:25,2013-09-14 06:55:45,13017499MM10A,2013-09-13,,1,M,Battery,1,15000261MM10A,(M1),0,2015-01-07,Battery,2015-01-07,2015-01-14,,1,15000261MM10A,(M1),2015-01-07,Battery,Risk of Recidivism,10,High,2013-09-14,Risk of Violence,9,High,2013-09-14,2015-01-07,2015-01-14,0,0,480,1,1\r\n10007,sharkiem adams,sharkiem,adams,2013-10-07,Male,1995-09-21,20,Less than 25,African-American,0,6,0,0,0,-3,2013-10-04 01:09:32,2013-10-04 08:43:28,13013887CF10A,2013-10-03,,4,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-07,Risk of Violence,8,High,2013-10-07,2013-10-04,2013-10-04,0,0,907,0,0\r\n10008,broderick joffe,broderick,joffe,2014-12-08,Male,1988-01-24,28,25 - 45,Caucasian,0,4,0,0,1,-1,2014-12-07 09:14:12,2015-01-06 10:07:01,14016266CF10A,2014-12-07,,1,F,Poss Pyrrolidinovalerophenone,1,15000692MM10A,(M1),0,2015-01-19,Petit Theft $100- $300,2015-01-19,2015-02-10,,0,,,,,Risk of Recidivism,4,Low,2014-12-08,Risk of Violence,3,Low,2014-12-08,2015-01-19,2015-02-10,1,29,42,1,1\r\n10009,travis whitehead,travis,whitehead,2013-02-22,Male,1986-05-03,29,25 - 45,African-American,0,7,0,0,9,0,2013-02-22 12:02:01,2013-02-27 06:08:00,13000793CF10A,,2013-02-21,1,F,arrest case no charge,1,13025307TC10A,(M1),0,2013-05-29,Opert With Susp DL 2nd Offens,2013-05-29,2013-05-30,,1,13008106CF10A,(F3),2013-06-07,Agg Fleeing and Eluding,Risk of Recidivism,7,Medium,2013-02-22,Risk of Violence,4,Low,2013-02-22,2013-05-29,2013-05-30,9,5,96,1,1\r\n10010,robby allen,robby,allen,2013-02-13,Male,1994-12-18,21,Less than 25,African-American,0,9,0,0,0,-1,2013-02-12 08:34:37,2013-02-14 04:15:21,13002193CF10A,2013-02-12,,1,F,Felony Battery,1,14005847TC10A,(M2),,2013-08-07,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,9,High,2013-02-13,Risk of Violence,10,High,2013-02-13,2013-02-12,2013-02-14,0,1,175,1,1\r\n10011,tanis simon,tanis,simon,2013-02-20,Male,1970-05-16,45,Greater than 45,African-American,0,3,0,0,4,114,2013-06-14 12:37:30,2013-06-14 08:30:23,13004299TC10A,2012-09-19,,154,M,Driving License Suspended,1,13011456MM10A,(M1),1,2013-06-13,Unlaw Use False Name/Identity,2013-06-14,2013-06-14,,0,,,,,Risk of Recidivism,3,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2014-07-12,2014-07-13,4,0,113,1,1\r\n10012,carmelle louidor,carmelle,louidor,2014-01-13,Female,1992-03-19,24,Less than 25,African-American,0,6,0,0,2,-1,2014-01-12 05:35:17,2014-03-11 05:32:00,14000528CF10A,2014-01-12,,1,F,Grand Theft in the 3rd Degree,1,15005158MM10A,(M2),0,2015-05-08,Petit Theft,2015-05-08,2015-09-02,,0,,,,,Risk of Recidivism,6,Medium,2014-01-13,Risk of Violence,4,Low,2014-01-13,2015-05-08,2015-09-02,2,57,480,1,1\r\n10013,william scott,william,scott,2013-05-14,Male,1955-07-02,60,Greater than 45,African-American,0,4,0,0,15,-38,2013-04-06 10:39:23,2013-05-14 11:36:14,13004947CF10A,2013-04-06,,38,F,Felony Battery (Dom Strang),1,14001941CF10A,(F3),0,2014-02-11,Possession of Cocaine,2014-02-11,2014-03-11,,0,,,,,Risk of Recidivism,4,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2014-02-11,2014-03-11,15,0,273,1,1\r\n10015,reginald johnson,reginald,johnson,2013-10-09,Male,1972-07-14,43,25 - 45,African-American,1,4,0,0,8,34,2013-11-12 12:58:04,2013-12-21 02:08:21,13011855CF10A,,2013-08-25,45,F,arrest case no charge,1,14002596MM20A,(M2),,2014-09-02,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-09,Risk of Violence,5,Medium,2013-10-09,2013-11-12,2013-12-21,8,0,34,0,1\r\n10017,aron vassell,aron,vassell,2013-12-23,Male,1994-06-29,21,Less than 25,Other,0,4,0,0,0,-3,2013-12-20 12:25:24,2013-12-20 08:10:02,13017534CF10A,2013-12-19,,4,F,Possession of Cocaine,1,15004378MM10A,(M1),0,2015-04-16,Trespass Other Struct/Conve,2015-04-16,2015-04-17,,0,,,,,Risk of Recidivism,4,Low,2013-12-23,Risk of Violence,6,Medium,2013-12-23,2015-04-16,2015-04-17,0,0,479,1,1\r\n10018,sheleike barnett,sheleike,barnett,2013-04-13,Female,1991-04-22,24,Less than 25,African-American,0,5,0,0,0,0,2013-04-13 02:30:21,2013-04-13 08:04:17,13005345CF10A,2013-04-12,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-13,Risk of Violence,4,Low,2013-04-13,2013-04-13,2013-04-13,0,0,1084,0,0\r\n10019,jordan boyd,jordan,boyd,2013-08-08,Male,1993-01-11,23,Less than 25,African-American,0,5,1,0,3,-1,2013-08-07 08:54:38,2013-08-13 10:05:00,13011061CF10A,2013-08-07,,1,F,Possession Of Clonazepam,1,14013348TC10A,(M2),,2014-03-16,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-08,Risk of Violence,7,Medium,2013-08-08,2013-08-07,2013-08-13,3,5,220,1,1\r\n10020,trevor benn,trevor,benn,2013-04-12,Male,1989-04-08,27,25 - 45,Caucasian,0,4,0,0,0,0,2013-04-12 01:52:14,2013-04-24 04:49:29,13005313CF10A,2013-04-12,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-12,Risk of Violence,3,Low,2013-04-12,2013-09-22,2013-09-23,0,12,163,0,0\r\n10021,adam magazinik,adam,magazinik,2013-05-10,Male,1991-10-08,24,Less than 25,Caucasian,0,4,0,0,0,-2,2013-05-08 11:38:39,2013-05-09 07:58:28,13006597CF10A,2013-05-08,,2,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-10,Risk of Violence,4,Low,2013-05-10,2013-05-08,2013-05-09,0,0,1057,0,0\r\n10022,louvens jean,louvens,jean,2014-06-25,Male,1984-10-12,31,25 - 45,African-American,0,6,1,0,6,27,2014-07-22 09:26:47,2014-09-09 05:03:17,13021490MM10A,2013-09-07,,291,M,Battery,1,14009996CF10A,(F1),0,2014-07-22,Robbery W/Firearm,2014-07-22,2014-09-09,,1,14009996CF10A,(F1),2014-07-22,Robbery W/Firearm,Risk of Recidivism,6,Medium,2014-06-25,Risk of Violence,8,High,2014-06-25,2014-07-22,2014-09-09,6,0,27,1,1\r\n10025,james render,james,render,2013-11-19,Male,1994-04-11,22,Less than 25,African-American,0,4,0,0,0,-5,2013-11-14 06:33:00,2013-11-19 10:37:20,13015823CF10A,2013-11-13,,6,F,Dealing in Stolen Property,1,14011520MM10A,(M1),0,2014-07-29,Petit Theft $100- $300,2014-07-29,2014-08-31,,0,,,,,Risk of Recidivism,4,Low,2013-11-19,Risk of Violence,6,Medium,2013-11-19,2014-07-29,2014-08-31,0,0,252,1,1\r\n10027,priscilla pierce,priscilla,pierce,2013-10-29,Female,1970-02-12,46,Greater than 45,African-American,0,6,0,0,4,-56,2013-09-03 10:53:16,2013-10-29 10:16:41,13012440CF10A,,2013-09-03,56,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-29,Risk of Violence,3,Low,2013-10-29,2014-06-04,2014-07-30,4,0,218,0,0\r\n10028,vincent dukes,vincent,dukes,2014-01-14,Male,1962-09-25,53,Greater than 45,African-American,0,9,0,0,3,-241,2013-05-18 08:26:07,2013-12-10 10:30:00,06001402MM40A,,2006-06-28,2757,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-14,Risk of Violence,3,Low,2014-01-14,2014-10-03,2014-12-18,3,0,262,0,0\r\n10029,kevin maitland,kevin,maitland,2013-11-09,Male,1962-04-18,54,Greater than 45,Caucasian,0,1,0,0,0,0,2013-11-09 03:27:48,2013-11-09 11:53:54,13015632CF10A,2013-11-08,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-09,Risk of Violence,1,Low,2013-11-09,2013-11-09,2013-11-09,0,0,874,0,0\r\n10032,jean sala,jean,sala,2014-02-24,Female,1979-01-27,37,25 - 45,Caucasian,0,2,0,0,5,-36,2014-01-19 01:16:18,2014-02-21 07:43:47,14000818CF10A,2014-01-18,,37,F,Grand Theft in the 3rd Degree,1,14016732TC20A,(M2),,2014-03-04,Expired DL More Than 6 Months,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-04-28,2014-05-24,5,0,8,1,1\r\n10033,latosha rattray,latosha,rattray,2013-02-06,Female,1980-12-12,35,25 - 45,African-American,0,6,0,0,7,-1,2013-02-05 09:43:24,2013-02-07 09:37:23,12013834CF10A,,2013-02-05,1,F,arrest case no charge,1,13010536CF10A,(M1),0,2013-07-27,Possess Cannabis/20 Grams Or Less,2013-07-27,2013-07-28,,1,13010536CF10A,(F3),2013-07-27,Aggravated Assault W/Dead Weap,Risk of Recidivism,6,Medium,2013-02-06,Risk of Violence,2,Low,2013-02-06,2013-07-27,2013-07-28,7,1,171,1,1\r\n10035,theodore evans,theodore,evans,2013-12-25,Female,1963-02-07,53,Greater than 45,African-American,0,5,0,0,0,-1,2013-12-24 02:24:05,2013-12-25 12:32:56,13017753CF10A,2013-12-24,,1,F,Dealing in Stolen Property,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-25,Risk of Violence,1,Low,2013-12-25,2013-12-24,2013-12-25,0,0,828,0,0\r\n10036,byron wright,byron,wright,2013-01-29,Male,1989-06-13,26,25 - 45,African-American,0,4,0,0,9,-1,2013-01-28 06:59:53,2013-01-30 04:16:27,13002013MM10A,2013-01-28,,1,M,Petit Theft,1,13008037MM10A,(M1),0,2013-04-07,Possess Cannabis/20 Grams Or Less,2013-04-07,2013-04-08,,1,13010718CF10A,(F2),2013-07-31,Aggravated Battery / Pregnant,Risk of Recidivism,4,Low,2013-01-29,Risk of Violence,4,Low,2013-01-29,2013-04-07,2013-04-08,9,1,68,1,1\r\n10037,steven johnson,steven,johnson,2013-05-26,Male,1967-10-05,48,Greater than 45,African-American,0,4,0,0,7,-1,2013-05-25 04:11:25,2013-05-29 11:55:15,13010066MM10A,2013-05-25,,1,M,Susp Drivers Lic 1st Offense,1,14000942MM40A,(M1),,2014-01-11,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-26,Risk of Violence,2,Low,2013-05-26,2013-05-25,2013-05-29,7,3,230,1,1\r\n10039,ernest johnson,ernest,johnson,2013-02-15,Male,1952-10-12,63,Greater than 45,African-American,0,9,0,0,22,272,2013-11-14 01:35:20,2013-11-23 12:14:41,12019235MM10A,2012-09-18,,150,M,Trespass Struct/Convey Occupy,1,13015839CF10A,(F3),0,2013-11-14,Felony Petit Theft,2013-11-14,2013-11-23,,0,,,,,Risk of Recidivism,9,High,2013-02-15,Risk of Violence,5,Medium,2013-02-15,2013-11-14,2013-11-23,22,0,272,1,1\r\n10040,sheron williams,sheron,williams,2013-11-17,Female,1959-08-15,56,Greater than 45,African-American,0,1,0,0,2,-1,2013-11-16 05:35:13,2013-11-17 01:53:31,13021588MM10A,2013-11-16,,1,M,Driving Under The Influence,1,14003431TC20A,(M2),,2014-01-09,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-17,Risk of Violence,1,Low,2013-11-17,2013-11-16,2013-11-17,2,0,53,1,1\r\n10042,owen fowler,owen,fowler,2013-08-29,Male,1990-09-16,25,25 - 45,African-American,0,7,0,0,6,0,2013-08-29 05:19:21,2013-08-29 08:03:30,13012222CF10A,2013-08-29,,0,F,\"Poss 3,4 MDMA (Ecstasy)\",1,13017649CF10A,(F2),0,2013-12-22,Robbery / No Weapon,2013-12-22,2014-01-16,,1,13017649CF10A,(F2),2013-12-22,Robbery / No Weapon,Risk of Recidivism,7,Medium,2013-08-29,Risk of Violence,4,Low,2013-08-29,2013-09-20,2013-09-30,6,0,22,0,1\r\n10043,kim aragona,kim,aragona,2013-03-23,Female,1967-03-10,49,Greater than 45,Caucasian,0,1,0,0,0,0,2013-03-23 12:39:51,2013-03-23 07:51:22,13004216CF10A,2013-03-22,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-23,Risk of Violence,1,Low,2013-03-23,2013-03-23,2013-03-23,0,0,1105,0,0\r\n10044,ruperto marroquincamacho,ruperto,marroquincamacho,2013-10-19,Male,1982-01-14,34,25 - 45,Caucasian,0,2,0,0,0,-1,2013-10-18 05:04:38,2013-11-17 03:46:08,13019763MM10A,2013-10-18,,1,M,Susp Drivers Lic 1st Offense,1,15009777CF10A,(M1),0,2015-07-29,Opert With Susp DL 2nd Offens,2015-07-29,2015-08-01,,0,,,,,Risk of Recidivism,2,Low,2013-10-19,Risk of Violence,1,Low,2013-10-19,2015-07-29,2015-08-01,0,29,648,1,1\r\n10045,roger richards,roger,richards,2014-06-13,Male,1995-01-27,21,Less than 25,African-American,0,6,0,0,0,-1,2014-06-12 07:39:27,2014-06-13 08:48:17,14009320MM10A,2014-06-12,,1,M,Battery,1,15016348CF10A,(M1),0,2015-12-22,Resist/Obstruct W/O Violence,2015-12-22,2020-01-01,,0,,,,,Risk of Recidivism,6,Medium,2014-06-13,Risk of Violence,9,High,2014-06-13,2015-12-22,2020-01-01,0,0,557,1,1\r\n10046,josiah hoffman,josiah,hoffman,2014-08-04,Male,1992-10-10,23,Less than 25,Caucasian,0,6,0,0,0,-3,2014-08-01 05:41:09,2014-08-03 01:09:00,14010518CF10A,2014-08-01,,3,F,Trespassing/Construction Site,1,15001366CF10A,(F2),0,2015-01-29,Sell Cannabis 1000FTSch,2015-01-29,2015-02-13,,0,,,,,Risk of Recidivism,6,Medium,2014-08-04,Risk of Violence,5,Medium,2014-08-04,2015-01-29,2015-02-13,0,0,178,1,1\r\n10047,daryl junck,daryl,junck,2013-03-01,Male,1958-05-05,57,Greater than 45,Caucasian,0,1,0,0,0,-2,2013-02-27 09:46:46,2013-02-27 07:21:49,13002997CF10A,,2013-02-27,2,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-02-27,2013-02-27,0,0,1127,0,0\r\n10048,joshua estrella,joshua,estrella,2014-08-20,Male,1986-11-30,29,25 - 45,Caucasian,0,5,1,0,8,-91,2014-05-21 12:07:49,2014-05-30 03:27:56,14001336CF10A,,2014-05-21,91,F,arrest case no charge,1,14076163TC30A,(M2),,2014-09-02,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,5,Medium,2014-08-20,Risk of Violence,3,Low,2014-08-20,2014-05-21,2014-05-30,8,0,13,1,1\r\n10050,fabienne joseph,fabienne,joseph,2013-02-06,Female,1982-02-12,34,25 - 45,Other,0,2,0,0,0,212,2013-09-06 01:01:59,2013-09-19 11:14:20,13001778CF10A,2013-02-05,,1,F,Felony Battery (Dom Strang),1,15012384CF10A,(F2),161,2015-06-12,Aggravated Battery / Pregnant,2015-11-20,2015-11-25,,1,15012384CF10A,(F2),2015-06-12,Aggravated Battery / Pregnant,Risk of Recidivism,2,Low,2013-02-06,Risk of Violence,1,Low,2013-02-06,2013-09-06,2013-09-19,0,0,212,0,0\r\n10051,gregory schmidt,gregory,schmidt,2014-03-09,Male,1990-08-27,25,25 - 45,Caucasian,0,10,0,0,5,-1,2014-03-08 07:11:38,2014-04-12 08:35:12,14003296CF10A,2014-03-08,,1,F,Possession of Oxycodone,1,14012121CF10A,(M1),1,2014-09-04,Petit Theft $100- $300,2014-09-05,2015-04-07,,1,16002414CF10A,(F3),2015-12-31,Felony Battery (Dom Strang),Risk of Recidivism,10,High,2014-03-09,Risk of Violence,5,Medium,2014-03-09,2014-03-08,2014-04-12,5,34,179,1,1\r\n10052,marcus johnson,marcus,johnson,2014-03-28,Female,1974-03-26,42,25 - 45,African-American,0,5,0,0,1,-1,2014-03-27 11:06:29,2014-03-28 01:10:38,14004358CF10A,2014-03-27,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-28,Risk of Violence,4,Low,2014-03-28,2014-03-27,2014-03-28,1,0,735,0,0\r\n10054,edwin nesbitt,edwin,nesbitt,2013-04-30,Male,1965-01-08,51,Greater than 45,African-American,0,5,0,0,1,0,2013-04-30 03:07:58,2013-04-30 07:51:46,13006194CF10A,2013-04-30,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-04-30,Risk of Violence,1,Low,2013-04-30,2013-04-30,2013-04-30,1,0,1067,0,0\r\n10055,daniel baptiste,daniel,baptiste,2014-01-09,Male,1989-11-08,26,25 - 45,African-American,0,7,0,0,7,,,,11014497CF10A,2011-08-25,,868,F,Sell Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-09,Risk of Violence,7,Medium,2014-01-09,,,7,0,813,0,0\r\n10056,sheldon smellie,sheldon,smellie,2013-05-01,Male,1984-11-19,31,25 - 45,Other,0,2,1,0,5,0,2013-05-01 05:24:33,2013-05-02 12:30:07,13008467MM10A,2013-05-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-01,Risk of Violence,2,Low,2013-05-01,2013-05-01,2013-05-02,5,1,1066,0,0\r\n10057,keandre twiggs,keandre,twiggs,2013-02-19,Male,1982-03-14,34,25 - 45,African-American,0,8,1,0,9,,,,07013022CF10A,,2009-05-02,1389,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-19,Risk of Violence,7,Medium,2013-02-19,,,9,0,1137,0,0\r\n10058,jeffrey simmons,jeffrey,simmons,2013-01-23,Male,1963-01-13,53,Greater than 45,African-American,0,5,0,0,13,-1,2013-01-22 09:49:03,2013-01-24 05:38:32,11011337MM10A,,2013-01-22,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-23,Risk of Violence,3,Low,2013-01-23,2016-03-01,2020-01-01,13,1,1133,0,0\r\n10059,christy harris,christy,harris,2013-01-19,Female,1972-11-13,43,25 - 45,African-American,0,7,0,0,6,0,2013-01-19 02:59:22,2013-01-19 06:49:07,13000900CF10A,2013-01-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-19,Risk of Violence,3,Low,2013-01-19,2013-01-19,2013-01-19,6,0,1168,0,0\r\n10061,justin warner,justin,warner,2014-03-17,Male,1981-09-17,34,25 - 45,African-American,0,1,0,0,0,-3,2014-03-14 08:24:54,2014-03-15 11:00:52,14003635CF10A,2014-03-14,,3,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-17,Risk of Violence,2,Low,2014-03-17,2014-03-14,2014-03-15,0,0,746,0,0\r\n10062,jacqueline milhomme,jacqueline,milhomme,2014-11-25,Female,1988-08-05,27,25 - 45,Caucasian,0,5,0,0,2,0,2014-11-25 01:37:56,2014-11-25 02:04:18,14015802CF10A,2014-11-24,,1,F,Grand Theft in the 3rd Degree,1,15017534MU10A,(M1),0,2015-06-11,Driving Under The Influence,2015-06-11,2015-06-19,,0,,,,,Risk of Recidivism,5,Medium,2014-11-25,Risk of Violence,2,Low,2014-11-25,2015-06-11,2015-06-19,2,0,198,1,1\r\n10064,medius clermontvil,medius,clermontvil,2014-01-02,Male,1964-06-19,51,Greater than 45,African-American,0,1,0,0,0,-1,2014-01-01 10:17:16,2014-01-07 05:52:03,14000031MU10A,2014-01-01,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-02,Risk of Violence,1,Low,2014-01-02,2014-01-01,2014-01-07,0,5,820,0,0\r\n10065,joseph walls,joseph,walls,2013-09-30,Male,1989-09-06,26,25 - 45,Caucasian,0,4,0,0,1,-1,2013-09-29 03:52:04,2013-09-30 03:51:12,13018484MM10A,2013-09-29,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-30,Risk of Violence,3,Low,2013-09-30,2013-09-29,2013-09-30,1,0,914,0,0\r\n10066,larry jones,larry,jones,2014-01-12,Male,1968-12-10,47,Greater than 45,African-American,0,6,0,0,5,-1,2014-01-11 08:21:16,2014-01-13 11:49:59,14000487CF10A,2014-01-11,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-12,Risk of Violence,1,Low,2014-01-12,2014-01-11,2014-01-13,5,1,810,0,0\r\n10068,daniel berrios,daniel,berrios,2013-03-29,Male,1993-09-17,22,Less than 25,Caucasian,0,4,0,1,0,-1,2013-03-28 03:18:17,2013-03-29 01:00:12,13004481CF10A,2013-03-28,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-29,Risk of Violence,5,Medium,2013-03-29,2013-03-28,2013-03-29,0,0,1099,0,0\r\n10069,katherine soto,katherine,soto,2013-02-22,Female,1979-07-25,36,25 - 45,Caucasian,0,2,0,0,0,0,2013-02-22 01:45:11,2013-02-23 02:08:52,13002757CF10A,2013-02-22,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-22,Risk of Violence,1,Low,2013-02-22,2013-02-22,2013-02-23,0,1,1134,0,0\r\n10071,amy matos,amy,matos,2014-01-01,Female,1980-02-06,36,25 - 45,Hispanic,0,3,0,0,1,0,2014-01-01 03:20:24,2014-01-02 12:43:01,14000038MM10A,2014-01-01,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-01,Risk of Violence,1,Low,2014-01-01,2014-01-01,2014-01-02,1,1,821,0,0\r\n10072,david riffle,david,riffle,2013-12-16,Male,1974-08-16,41,25 - 45,Caucasian,0,3,0,0,4,-3,2013-12-13 05:35:39,2013-12-14 01:57:44,13017255CF10A,2013-12-13,,3,F,Possession Of Heroin,1,14007414MM10A,(M1),0,2014-05-05,Trespass Other Struct/Conve,2014-05-05,2014-08-06,,0,,,,,Risk of Recidivism,3,Low,2013-12-16,Risk of Violence,1,Low,2013-12-16,2014-05-05,2014-08-06,4,0,140,1,1\r\n10073,tina green,tina,green,2014-01-16,Male,1978-09-25,37,25 - 45,African-American,0,2,0,0,2,,,,13011810MM10A,2012-08-20,,514,M,Compulsory Attendance Violation,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-16,Risk of Violence,2,Low,2014-01-16,,,2,0,806,0,0\r\n10076,deshaud johnson,deshaud,johnson,2013-08-08,Male,1994-12-16,21,Less than 25,African-American,0,4,0,0,2,-34,2013-07-05 03:20:23,2013-08-08 11:01:12,13009448CF10A,2013-07-05,,34,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-08,Risk of Violence,6,Medium,2013-08-08,2013-07-05,2013-08-08,2,0,967,0,0\r\n10077,floyd taylor,floyd,taylor,2013-02-27,Male,1990-12-22,25,25 - 45,African-American,0,6,3,1,6,-1,2013-02-26 07:19:35,2013-02-27 01:47:04,13003995MM10A,2013-02-26,,1,M,Viol Prot Injunc Repeat Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-27,Risk of Violence,7,Medium,2013-02-27,2013-02-26,2013-02-27,6,0,1129,0,0\r\n10078,alex velazquezmontalvo,alex,velazquezmontalvo,2014-12-30,Male,1988-07-09,27,25 - 45,Hispanic,0,4,0,0,1,284,2015-10-10 03:19:34,2015-10-13 09:13:04,12000304CF10A,2012-01-07,,1088,F,Possession of Hydrocodone,1,15010602MM10A,(M1),0,2015-10-10,Battery,2015-10-10,2015-10-13,,1,15010602MM10A,(M1),2015-10-10,Battery,Risk of Recidivism,4,Low,2014-12-30,Risk of Violence,3,Low,2014-12-30,2015-10-10,2015-10-13,1,0,284,1,1\r\n10079,masiely garcia,masiely,garcia,2014-02-14,Female,1984-08-02,31,25 - 45,Hispanic,0,3,0,0,2,-1,2014-02-13 07:56:32,2014-02-14 10:29:06,14002074CF10A,2014-02-13,,1,F,Drivg While Lic Suspd/Revk/Can,1,15000754CF10A,(F3),0,2015-01-17,Driving While License Revoked,2015-01-17,2015-01-17,,0,,,,,Risk of Recidivism,3,Low,2014-02-14,Risk of Violence,1,Low,2014-02-14,2015-01-17,2015-01-17,2,0,337,0,1\r\n10081,christopher bush,christopher,bush,2013-04-29,Male,1991-11-04,24,Less than 25,African-American,0,8,0,1,7,-97,2013-01-22 02:25:22,2013-04-29 12:20:18,13001488MM10A,2013-01-22,,97,M,Prowling/Loitering,1,13018329MM10A,(M1),1,2013-09-26,Resist/Obstruct W/O Violence,2013-09-27,2013-10-28,,0,,,,,Risk of Recidivism,8,High,2013-04-29,Risk of Violence,9,High,2013-04-29,2015-05-27,2015-07-22,7,0,150,1,1\r\n10083,corey ackerman,corey,ackerman,2014-03-24,Male,1982-04-25,33,25 - 45,Caucasian,0,1,0,0,0,-2,2014-03-22 09:56:34,2014-03-23 09:11:43,14005003MM10A,2014-03-22,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-24,Risk of Violence,1,Low,2014-03-24,2014-03-22,2014-03-23,0,0,739,0,0\r\n10084,josh gamali,josh,gamali,2013-01-11,Male,1969-08-10,46,Greater than 45,Caucasian,0,5,0,0,5,,,,09000911CF10A,,2012-11-07,65,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-11,Risk of Violence,6,Medium,2013-01-11,,,5,0,1176,0,0\r\n10086,victoria boone,victoria,boone,2014-12-11,Female,1971-10-22,44,25 - 45,Caucasian,0,2,0,0,3,0,2014-12-11 02:42:35,2014-12-22 07:52:05,14016448CF10A,2014-12-10,,1,F,Poss Pyrrolidinovalerophenone,1,16002666CF10A,(F3),1,2016-03-01,,2016-03-02,2016-04-15,,0,,,,,Risk of Recidivism,2,Low,2014-12-11,Risk of Violence,1,Low,2014-12-11,2014-12-11,2014-12-22,3,11,446,1,1\r\n10087,eduardo garcia,eduardo,garcia,2013-01-17,Male,1970-02-03,46,Greater than 45,Caucasian,0,2,0,0,0,-1,2013-01-16 05:49:01,2013-01-17 01:25:23,13000781CF10A,2013-01-16,,1,F,Aggravated Assault W/dead Weap,1,15002567MM10A,(M1),,2015-01-13,Viol Injunct Domestic Violence,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-17,Risk of Violence,1,Low,2013-01-17,2013-01-16,2013-01-17,0,0,726,1,1\r\n10088,marissa moore,marissa,moore,2013-02-21,Female,1987-06-15,28,25 - 45,African-American,0,2,0,0,1,-1,2013-02-20 07:08:26,2013-02-21 02:17:32,13002603CF10A,2013-02-20,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-21,Risk of Violence,2,Low,2013-02-21,2013-02-20,2013-02-21,1,0,1135,0,0\r\n10091,christopher parris,christopher,parris,2013-10-12,Male,1987-12-25,28,25 - 45,African-American,1,5,0,0,5,-1,2013-10-11 10:21:51,2014-03-31 09:15:58,13014398CF10A,,2013-10-11,1,F,arrest case no charge,1,13014398CF10A,(F3),,2013-11-08,Stalking (Aggravated),,,,1,13014398CF10A,(F3),2013-11-08,Stalking (Aggravated),Risk of Recidivism,5,Medium,2013-10-12,Risk of Violence,5,Medium,2013-10-12,2013-10-11,2014-03-31,5,0,27,1,1\r\n10092,linda edwards,linda,edwards,2013-02-22,Male,1949-07-24,66,Greater than 45,African-American,0,2,0,0,5,-1,2013-02-21 09:13:47,2013-02-22 01:25:58,13002668CF10A,2013-02-21,,1,F,Possession of Cocaine,1,14000303CF10A,(M1),0,2014-01-06,Resist/Obstruct W/O Violence,2014-01-06,2014-01-09,,0,,,,,Risk of Recidivism,2,Low,2013-02-22,Risk of Violence,1,Low,2013-02-22,2014-01-06,2014-01-09,5,0,318,1,1\r\n10094,nicholas rodriguez-bustios,nicholas,rodriguez-bustios,2013-12-28,Male,1995-09-12,20,Less than 25,Caucasian,0,3,0,0,0,0,2013-12-28 04:39:38,2013-12-28 01:09:58,13017909CF10A,2013-12-28,,0,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-28,Risk of Violence,6,Medium,2013-12-28,2013-12-28,2013-12-28,0,0,825,0,0\r\n10095,frederick newbold,frederick,newbold,2014-02-22,Male,1988-05-12,27,25 - 45,African-American,0,3,0,0,2,-1,2014-02-21 11:56:38,2014-02-22 08:20:38,14002479CF10A,2014-02-21,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-22,Risk of Violence,3,Low,2014-02-22,2014-02-21,2014-02-22,2,0,769,0,0\r\n10096,tressing blake,tressing,blake,2014-03-13,Female,1991-07-28,24,Less than 25,Other,0,4,0,0,0,-1,2014-03-12 04:58:21,2014-03-13 09:56:12,14003527CF10A,2014-03-12,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-03-13,Risk of Violence,4,Low,2014-03-13,2014-03-12,2014-03-13,0,0,750,0,0\r\n10097,moriach deus,moriach,deus,2013-12-09,Male,1990-08-30,25,25 - 45,African-American,0,3,0,0,3,-1,2013-12-08 10:31:26,2013-12-14 05:52:52,13016980CF10A,2013-12-08,,1,F,Aggravated Battery / Pregnant,1,14011823CF10A,(F2),0,2014-08-29,Burglary Unoccupied Dwelling,2014-08-29,2014-10-10,,0,,,,,Risk of Recidivism,3,Low,2013-12-09,Risk of Violence,4,Low,2013-12-09,2014-08-29,2014-10-10,3,5,263,1,1\r\n10105,alexander semino,alexander,semino,2013-03-07,Male,1984-05-22,31,25 - 45,Caucasian,0,9,0,0,8,-31,2013-02-04 05:49:21,2013-03-04 10:55:34,13002537MM10A,2013-02-04,,31,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-07,Risk of Violence,2,Low,2013-03-07,2013-02-04,2013-03-04,8,0,1121,0,0\r\n10107,dushane detrie,dushane,detrie,2013-06-14,Female,1977-01-06,39,25 - 45,African-American,0,5,0,0,1,7,2013-06-21 12:08:12,2013-08-23 05:50:00,12009221CF10A,,2013-02-13,121,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-06-14,Risk of Violence,5,Medium,2013-06-14,2013-06-21,2013-08-23,1,0,7,0,0\r\n10110,jemeil mccall,jemeil,mccall,2013-04-23,Female,1975-04-09,41,25 - 45,African-American,0,4,0,0,7,0,2013-04-23 01:10:40,2013-04-24 04:01:56,13008373CF10A,2013-04-23,,0,F,Possession of Cannabis,1,13006826CF10A,(F3),0,2013-05-13,Possession of Hydrocodone,2013-05-13,2013-06-28,,0,,,,,Risk of Recidivism,4,Low,2013-04-23,Risk of Violence,2,Low,2013-04-23,2013-05-13,2013-06-28,7,1,20,1,1\r\n10111,alon cambridge,alon,cambridge,2013-03-06,Male,1989-07-16,26,25 - 45,African-American,0,2,0,0,0,-1,2013-03-05 06:19:03,2013-03-06 07:39:50,13003319CF10A,2013-03-05,,1,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-06,Risk of Violence,3,Low,2013-03-06,2013-03-05,2013-03-06,0,0,1122,0,0\r\n10112,henry ducamel,henry,ducamel,2014-09-11,Male,1990-10-07,25,25 - 45,African-American,0,5,0,0,2,-27,2014-08-15 11:06:07,2014-08-16 08:22:20,14012318MM10A,2014-08-15,,27,M,Operating W/O Valid License,1,16001600MM10A,(M1),0,2016-02-13,Unlaw Use False Name/Identity,2016-02-13,2016-02-14,,0,,,,,Risk of Recidivism,5,Medium,2014-09-11,Risk of Violence,4,Low,2014-09-11,2016-02-13,2016-02-14,2,0,520,1,1\r\n10115,jonathan smith,jonathan,smith,2013-07-31,Male,1981-01-19,35,25 - 45,African-American,0,2,0,0,5,,,,09013475CF10A,2009-07-20,,1472,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-07-31,Risk of Violence,2,Low,2013-07-31,,,5,0,975,0,0\r\n10118,william aguront,william,aguront,2014-03-27,Male,1960-06-06,55,Greater than 45,Hispanic,0,1,0,0,0,-1,2014-03-26 11:17:06,2014-03-27 01:36:50,14005235MM10A,2014-03-26,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-27,Risk of Violence,1,Low,2014-03-27,2014-03-26,2014-03-27,0,0,736,0,0\r\n10119,tariq smith,tariq,smith,2013-01-21,Male,1994-02-19,22,Less than 25,African-American,0,9,0,0,2,0,2013-01-21 01:39:38,2013-01-27 05:17:34,13000942CF10A,2013-01-20,,1,F,Grand Theft Dwell Property,1,13006964MM10A,(M2),0,2013-04-10,Prowling/Loitering,2013-04-10,2013-04-20,,0,,,,,Risk of Recidivism,9,High,2013-01-21,Risk of Violence,10,High,2013-01-21,2013-02-20,2013-03-26,2,6,30,0,1\r\n10120,emily noronha,emily,noronha,2013-10-15,Female,1986-09-25,29,25 - 45,Other,0,2,0,0,2,0,2013-10-15 12:54:16,2013-10-15 09:17:38,13019506MM10A,2013-10-14,,1,M,Battery,1,14001308MM10A,(M2),,2013-11-10,Disorderly Intoxication,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-15,Risk of Violence,2,Low,2013-10-15,2015-10-09,2015-10-09,2,0,26,1,1\r\n10121,devondrea wilcher,devondrea,wilcher,2013-12-04,Male,1990-06-28,25,25 - 45,African-American,0,9,0,0,7,0,2013-12-04 03:57:48,2013-12-04 07:52:33,13016753CF10A,2013-12-03,,1,F,Burglary Conveyance Unoccup,1,15008869MM10A,(M1),0,2015-08-23,Resist/Obstruct W/O Violence,2015-08-23,2015-08-24,,0,,,,,Risk of Recidivism,9,High,2013-12-04,Risk of Violence,9,High,2013-12-04,2013-12-12,2014-01-25,7,0,8,0,1\r\n10123,scott thompson,scott,thompson,2014-03-03,Male,1966-01-28,50,Greater than 45,Caucasian,0,6,0,0,18,171,2014-08-21 10:01:12,2014-09-23 06:13:54,12020358MM10A,2012-08-03,,577,M,Petit Theft $100- $300,1,15015069CF10A,(F3),0,2015-11-20,Grand Theft in the 3rd Degree,2015-11-20,2015-11-21,,0,,,,,Risk of Recidivism,6,Medium,2014-03-03,Risk of Violence,3,Low,2014-03-03,2014-08-21,2014-09-23,18,0,171,0,1\r\n10124,danielle camargo,danielle,camargo,2013-12-10,Female,1989-03-23,27,25 - 45,Caucasian,0,2,0,0,2,,,,12140584TC30A,2012-10-06,,430,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-10,Risk of Violence,4,Low,2013-12-10,,,2,0,843,0,0\r\n10125,francisco huerta,francisco,huerta,2014-07-20,Male,1966-04-02,50,Greater than 45,Hispanic,0,1,0,0,5,-1,2014-07-19 05:07:48,2014-07-23 03:00:15,14009885CF10A,2014-07-19,,1,F,Felony Driving While Lic Suspd,1,14016704MM10A,(M1),0,2014-11-23,Battery,2014-11-23,2014-11-24,,1,14016704MM10A,(M1),2014-11-23,Battery,Risk of Recidivism,1,Low,2014-07-20,Risk of Violence,1,Low,2014-07-20,2014-11-23,2014-11-24,5,3,126,1,1\r\n10126,katlyn lauer,katlyn,lauer,2014-08-07,Female,1995-04-25,20,Less than 25,Caucasian,0,6,0,0,0,-1,2014-08-06 11:23:16,2014-08-07 07:57:30,14011926MM10A,2014-08-06,,1,M,Battery,1,15039982TC30A,(M2),,2015-05-27,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,6,Medium,2014-08-07,Risk of Violence,6,Medium,2014-08-07,2015-08-12,2015-08-13,0,0,293,1,1\r\n10127,frank moore,frank,moore,2013-05-11,Male,1959-05-09,56,Greater than 45,Caucasian,0,7,0,0,5,-1,2013-05-10 10:14:08,2013-05-11 06:45:31,13006713MO10A,,2013-05-10,1,M,arrest case no charge,1,15013112MM10A,(M1),,2015-12-20,Resist/Obstruct W/O Violence,,,,1,16000007CF10A,(F3),2015-12-31,Felony Battery w/Prior Convict,Risk of Recidivism,7,Medium,2013-05-11,Risk of Violence,3,Low,2013-05-11,2013-07-09,2013-07-10,5,0,59,0,0\r\n10129,orville walters,orville,walters,2013-02-14,Male,1990-10-29,25,25 - 45,African-American,0,8,0,0,5,-1,2013-02-13 09:14:45,2013-02-14 08:42:31,13002258CF10A,2013-02-13,,1,F,Pos Cannabis W/Intent Sel/Del,1,14031416TC30A,(M2),,2014-03-16,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2013-02-14,Risk of Violence,7,Medium,2013-02-14,2013-02-13,2013-02-14,5,0,395,1,1\r\n10130,ruth battiste,ruth,battiste,2013-10-26,Female,1968-01-28,48,Greater than 45,African-American,0,1,0,0,1,-1,2013-10-25 07:58:22,2013-10-26 01:19:41,87018952CF10A,1987-11-07,,9485,F,Possess Controlled Substance,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-26,Risk of Violence,1,Low,2013-10-26,2013-10-25,2013-10-26,1,0,888,0,0\r\n10131,vashay johnson,vashay,johnson,2013-02-19,Male,1994-05-21,21,Less than 25,African-American,0,9,0,0,1,-1,2013-02-18 07:28:38,2013-02-20 03:44:17,13002481CF10A,2013-02-18,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-02-19,Risk of Violence,10,High,2013-02-19,2013-03-25,2013-04-15,1,1,34,0,0\r\n10132,maria santiago,maria,santiago,2014-04-16,Male,1985-01-21,31,25 - 45,Caucasian,0,1,0,0,2,0,2014-04-16 12:32:01,2014-05-20 04:47:12,14006432MM10A,2014-04-15,,1,M,Battery,1,14009051MM10A,(M1),1,2014-06-06,Tresspass in Struct/Convey Occupy,2014-06-07,2014-07-03,,0,,,,,Risk of Recidivism,1,Low,2014-04-16,Risk of Violence,2,Low,2014-04-16,2014-04-16,2014-05-20,2,34,51,1,1\r\n10133,kevin lutz,kevin,lutz,2013-08-15,Male,1980-06-23,35,25 - 45,Caucasian,0,2,0,0,0,-1,2013-08-14 04:31:57,2013-08-14 08:03:04,13015388MM10A,2013-08-14,,1,M,Expired DL More Than 6 Months,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-15,Risk of Violence,2,Low,2013-08-15,2013-08-14,2013-08-14,0,0,960,0,0\r\n10134,joshua morales,joshua,morales,2013-02-15,Male,1990-12-03,25,25 - 45,Hispanic,0,7,0,0,6,-1,2013-02-14 05:35:38,2013-03-26 05:01:11,13003246MM10A,2013-02-14,,1,M,Battery,1,14000069TC40A,(M2),176,2013-12-18,Operating W/O Valid License,2014-06-12,2014-06-17,,0,,,,,Risk of Recidivism,7,Medium,2013-02-15,Risk of Violence,8,High,2013-02-15,2013-02-14,2013-03-26,6,39,306,1,1\r\n10136,lakavious drummond,lakavious,drummond,2014-08-02,Male,1982-01-09,34,25 - 45,African-American,0,3,0,0,2,-1,2014-08-01 03:44:21,2014-08-02 01:25:20,14010523CF10A,2014-08-01,,1,F,Carrying Concealed Firearm,1,15009499MM10A,(M1),0,2015-08-04,Resist/Obstruct W/O Violence,2015-08-04,2015-08-05,,0,,,,,Risk of Recidivism,3,Low,2014-08-02,Risk of Violence,2,Low,2014-08-02,2015-08-04,2015-08-05,2,0,367,1,1\r\n10137,jean louidor,jean,louidor,2014-01-07,Male,1984-03-01,32,25 - 45,African-American,0,7,0,0,0,-1,2014-01-06 11:10:48,2014-01-31 03:41:01,14000240CF10A,2014-01-06,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-07,Risk of Violence,4,Low,2014-01-07,2014-01-06,2014-01-31,0,24,815,0,0\r\n10138,yoalbert francocoa,yoalbert,francocoa,2014-01-24,Male,1982-07-20,33,25 - 45,Hispanic,0,2,0,0,1,-90,2013-10-26 08:54:45,2013-12-12 04:56:35,13020323MM10A,2013-10-26,,90,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-24,Risk of Violence,4,Low,2014-01-24,2013-10-26,2013-12-12,1,0,798,0,0\r\n10139,tiffany taylor,tiffany,taylor,2014-06-08,Female,1984-10-05,31,25 - 45,African-American,0,3,0,0,1,0,2014-06-08 12:19:50,2014-07-12 04:07:59,14007925CF10A,2014-06-07,,1,F,Felony Battery (Dom Strang),1,14015752MM10A,(M1),0,2014-08-27,Extradition/Defendants,2014-08-27,2015-08-21,,0,,,,,Risk of Recidivism,3,Low,2014-06-08,Risk of Violence,1,Low,2014-06-08,2014-08-27,2015-08-21,1,34,80,1,1\r\n10141,keston caraballo,keston,caraballo,2014-05-08,Male,1987-01-05,29,25 - 45,African-American,0,6,0,0,6,67,2014-07-14 09:49:55,2014-08-28 11:08:32,12005660CF10A,,2014-02-04,93,F,arrest case no charge,1,16000012MM40A,(M1),,2015-11-21,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2014-05-08,Risk of Violence,4,Low,2014-05-08,2014-07-14,2014-08-28,6,0,67,0,1\r\n10142,pascal gilles,pascal,gilles,2014-03-03,Male,1990-12-29,25,25 - 45,African-American,0,8,0,0,2,-96,2013-11-27 09:34:00,2014-01-28 11:23:47,13007341CF10A,,2013-11-27,96,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-03-03,Risk of Violence,6,Medium,2014-03-03,2013-11-27,2014-01-28,2,0,760,0,0\r\n10143,joshua staley,joshua,staley,2013-05-14,Male,1989-09-14,26,25 - 45,African-American,0,8,0,0,13,31,2013-06-14 04:52:53,2013-06-25 08:13:32,13000765MM10A,2013-01-12,,122,M,Unlawful Use Of Police Badges,1,16002870MM10A,(M1),0,2016-03-28,,2016-03-28,2016-03-29,,0,,,,,Risk of Recidivism,8,High,2013-05-14,Risk of Violence,5,Medium,2013-05-14,2013-06-14,2013-06-25,13,0,31,0,0\r\n10145,yoleida santiago,yoleida,santiago,2014-02-08,Female,1971-08-30,44,25 - 45,Hispanic,0,1,0,0,0,-1,2014-02-07 01:15:55,2014-02-08 09:36:04,14002174MM10A,2014-02-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-08,Risk of Violence,1,Low,2014-02-08,2014-02-07,2014-02-08,0,0,783,0,0\r\n10148,brandon montgomery,brandon,montgomery,2013-12-05,Male,1984-05-10,31,25 - 45,African-American,0,7,0,0,11,0,2013-12-05 02:46:54,2013-12-06 04:00:00,13022574MM10A,2013-12-04,,1,M,Battery,1,14012827MM10A,(M1),0,2014-08-27,Unlaw Use False Name/Identity,2014-08-27,2014-08-27,,0,,,,,Risk of Recidivism,7,Medium,2013-12-05,Risk of Violence,7,Medium,2013-12-05,2014-08-27,2014-08-27,11,1,265,0,1\r\n10150,darrius toliver,darrius,toliver,2014-04-17,Male,1987-09-01,28,25 - 45,African-American,0,2,0,0,3,-1,2014-04-16 02:36:17,2014-04-24 05:51:07,14005355CF10A,2014-04-16,,1,M,Petit Theft,1,14000952MM30A,(M2),,2014-06-07,Petit Theft,,,,0,,,,,Risk of Recidivism,2,Low,2014-04-17,Risk of Violence,3,Low,2014-04-17,2014-04-16,2014-04-24,3,7,51,1,1\r\n10151,heather ortegachin,heather,ortegachin,2013-06-24,Female,1968-11-03,47,Greater than 45,Hispanic,0,1,0,0,1,-61,2013-04-24 08:09:28,2013-04-26 10:39:26,13005878CF10A,2013-04-24,,61,F,Burglary Conveyance Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-24,Risk of Violence,1,Low,2013-06-24,2013-04-24,2013-04-26,1,0,1012,0,0\r\n10157,tammy dent,tammy,dent,2013-02-22,Female,1989-01-09,27,25 - 45,African-American,0,9,1,0,10,-1,2013-02-21 07:04:51,2013-03-08 05:36:47,13002667CF10A,,2013-02-21,1,F,arrest case no charge,1,13026777TC10A,(M2),,2013-06-20,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2013-02-22,Risk of Violence,8,High,2013-02-22,2013-02-21,2013-03-08,10,14,118,1,1\r\n10158,demetris lewis,demetris,lewis,2013-12-11,Male,1991-10-09,24,Less than 25,African-American,0,9,0,2,0,-1,2013-12-10 07:24:16,2013-12-17 01:43:43,13017077CF10A,2013-12-10,,1,F,Deliver Cocaine,1,14005752CF10A,(F2),12,2014-01-15,Deliver Cocaine,2014-01-27,2014-01-29,,0,,,,,Risk of Recidivism,9,High,2013-12-11,Risk of Violence,9,High,2013-12-11,2013-12-10,2013-12-17,0,6,35,1,1\r\n10159,christopher petinaud,christopher,petinaud,2013-11-04,Male,1966-09-19,49,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-11-03 02:19:59,2013-11-04 01:27:56,13015387CF10A,2013-11-03,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-04,Risk of Violence,1,Low,2013-11-04,2013-11-03,2013-11-04,0,0,879,0,0\r\n10161,brandi clay,brandi,clay,2013-11-17,Female,1975-08-21,40,25 - 45,Caucasian,0,2,0,0,0,0,2013-11-17 04:36:43,2013-11-17 07:27:46,13015985CF10A,2013-11-17,,0,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-17,Risk of Violence,2,Low,2013-11-17,2013-11-17,2013-11-17,0,0,866,0,0\r\n10163,damion clark,damion,clark,2014-01-22,Male,1993-10-22,22,Less than 25,African-American,0,6,0,0,4,-12,2014-01-10 05:28:07,2014-01-11 01:47:04,14001431TC10A,2014-01-10,,12,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-22,Risk of Violence,5,Medium,2014-01-22,2014-01-10,2014-01-11,4,0,800,0,0\r\n10165,jeffrey williams,jeffrey,williams,2014-06-25,Male,1987-10-08,28,25 - 45,African-American,0,2,0,0,5,-1,2014-06-24 06:22:18,2014-06-27 09:51:57,14004144CF10A,,2014-06-25,0,F,arrest case no charge,1,14002721MM20A,(M1),280,2014-09-19,Possess Cannabis/20 Grams Or Less,2015-06-26,2015-10-22,,0,,,,,Risk of Recidivism,2,Low,2014-06-25,Risk of Violence,2,Low,2014-06-25,2014-06-24,2014-06-27,5,2,86,1,1\r\n10166,christine aghazadian,christine,aghazadian,2014-02-26,Female,1964-10-03,51,Greater than 45,Caucasian,0,1,0,0,1,-98,2013-11-20 08:48:32,2013-11-22 06:17:17,13016130CF10A,2013-11-20,,98,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-26,Risk of Violence,1,Low,2014-02-26,2013-11-20,2013-11-22,1,0,765,0,0\r\n10167,masnik sainmelus,masnik,sainmelus,2014-03-25,Male,1991-10-09,24,Less than 25,African-American,0,6,0,0,2,-1,2014-03-24 02:37:23,2014-03-25 01:36:04,14004170CF10A,2014-03-24,,1,F,Possession of Hydromorphone,1,14013781MM10A,(M1),0,2014-09-16,Possess Cannabis/20 Grams Or Less,2014-09-16,2014-09-17,,0,,,,,Risk of Recidivism,6,Medium,2014-03-25,Risk of Violence,5,Medium,2014-03-25,2014-09-16,2014-09-17,2,0,175,1,1\r\n10168,john pereira,john,pereira,2013-10-31,Male,1966-08-07,49,Greater than 45,Caucasian,0,1,0,0,1,-26,2013-10-05 11:23:30,2013-10-06 08:39:07,13018953MM10A,2013-10-05,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-31,Risk of Violence,1,Low,2013-10-31,2013-10-05,2013-10-06,1,0,883,0,0\r\n10169,pedro sanchez,pedro,sanchez,2014-03-01,Male,1982-08-17,33,25 - 45,Caucasian,0,7,0,0,0,-1,2014-02-28 09:20:30,2014-03-24 08:41:32,14003505MM10A,2014-02-28,,1,M,Possess Cannabis/20 Grams Or Less,1,15001744MM40A,(M1),75,2015-04-16,Possess Cannabis/20 Grams Or Less,2015-06-30,2015-07-01,,0,,,,,Risk of Recidivism,7,Medium,2014-03-01,Risk of Violence,4,Low,2014-03-01,2014-02-28,2014-03-24,0,23,411,1,1\r\n10171,quintis bullock,quintis,bullock,2014-01-08,Male,1981-10-04,34,25 - 45,African-American,0,3,0,0,6,74,2014-03-23 02:30:13,2014-08-01 03:05:53,13014926CF10A,2013-10-25,,75,F,Deliver Cocaine,1,15010224TC10A,(M2),0,2015-03-30,Susp Drivers Lic 1st Offense,2015-03-30,2015-04-21,,0,,,,,Risk of Recidivism,3,Low,2014-01-08,Risk of Violence,1,Low,2014-01-08,2014-03-23,2014-08-01,6,0,74,0,1\r\n10173,chancy mallory,chancy,mallory,2013-08-14,Male,1985-07-26,30,25 - 45,African-American,0,8,0,1,8,-42,2013-07-03 08:03:26,2013-08-05 02:44:49,13012733MM10A,2013-07-03,,42,M,Battery,1,13015213CF10A,(F3),0,2013-10-31,Aggravated Assault w/Firearm,2013-10-31,2013-12-05,,1,13015213CF10A,(F3),2013-10-31,Aggravated Assault w/Firearm,Risk of Recidivism,8,High,2013-08-14,Risk of Violence,4,Low,2013-08-14,2013-10-31,2013-12-05,8,0,78,1,1\r\n10174,valerio perez,valerio,perez,2014-12-10,Male,1972-04-13,44,25 - 45,Caucasian,0,7,0,0,0,-1,2014-12-09 06:06:41,2014-12-30 09:07:16,14016368CF10A,2014-12-09,,1,F,Burglary Conveyance Unoccup,1,15001640TC10A,(M2),1,2015-01-14,Driving License Suspended,2015-01-15,2015-02-08,,0,,,,,Risk of Recidivism,7,Medium,2014-12-10,Risk of Violence,2,Low,2014-12-10,2014-12-09,2014-12-30,0,20,35,1,1\r\n10176,frank wilson,frank,wilson,2014-07-03,Male,1974-07-01,41,25 - 45,African-American,0,6,0,3,12,0,2014-07-03 03:36:03,2014-07-03 08:55:01,14009173CF10A,2014-07-03,,0,F,Possession Of Alprazolam,1,14016731CF10A,(M2),0,2014-12-17,Operating W/O Valid License,2014-12-17,2014-12-18,,1,15015386CF10A,(F3),2015-11-25,Aggravated Assault W/Dead Weap,Risk of Recidivism,6,Medium,2014-07-03,Risk of Violence,3,Low,2014-07-03,2014-12-17,2014-12-18,12,0,167,1,1\r\n10178,teoman algur,teoman,algur,2014-01-14,Male,1969-07-15,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-01-13 06:55:02,2014-01-14 07:59:33,14000563CF10A,2014-01-13,,1,F,Manufacture Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-14,Risk of Violence,1,Low,2014-01-14,2014-01-13,2014-01-14,0,0,808,0,0\r\n10179,james felder,james,felder,2013-12-05,Male,1958-08-11,57,Greater than 45,African-American,0,1,0,0,2,-1,2013-12-04 01:33:31,2013-12-05 01:31:32,91018509MM10A,,2001-04-12,4620,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-05,Risk of Violence,1,Low,2013-12-05,2013-12-04,2013-12-05,2,0,848,0,0\r\n10180,cecelia baptiste-gilmore,cecelia,baptiste-gilmore,2013-12-06,Female,1972-04-10,44,25 - 45,Caucasian,0,3,0,0,1,-31,2013-11-05 08:36:22,2013-12-06 04:12:38,13020899MM10A,2013-11-05,,31,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-06,Risk of Violence,1,Low,2013-12-06,2013-11-05,2013-12-06,1,0,847,0,0\r\n10181,antonio walsh,antonio,walsh,2014-03-24,Male,1984-04-16,32,25 - 45,African-American,0,9,0,0,0,0,2014-03-24 01:13:18,2014-03-24 02:24:51,14004093CF10A,2014-03-23,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-24,Risk of Violence,6,Medium,2014-03-24,2014-03-31,2014-04-01,0,0,7,0,0\r\n10183,julius howard,julius,howard,2013-03-16,Male,1980-01-24,36,25 - 45,African-American,0,9,0,0,1,-1,2013-03-15 02:14:16,2013-03-16 06:13:47,13005160MM10A,2013-03-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-03-16,Risk of Violence,3,Low,2013-03-16,2013-03-15,2013-03-16,1,0,1112,0,0\r\n10184,steven pearson,steven,pearson,2014-01-26,Male,1985-08-11,30,25 - 45,African-American,0,8,0,0,1,-1,2014-01-25 08:21:42,2014-01-26 08:06:05,14001396MM10A,2014-01-25,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2014-01-26,Risk of Violence,6,Medium,2014-01-26,2014-01-25,2014-01-26,1,0,796,0,0\r\n10185,wayne stover,wayne,stover,2013-02-01,Male,1988-01-13,28,25 - 45,African-American,0,2,0,0,0,-1,2013-01-31 04:31:47,2013-02-05 09:12:13,13002274MO10A,2013-01-31,,1,M,Manage Busn W/O City Occup Lic,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-01,Risk of Violence,3,Low,2013-02-01,2013-01-31,2013-02-05,0,4,1155,0,0\r\n10188,daniel cruz,daniel,cruz,2013-01-12,Male,1984-12-13,31,25 - 45,Caucasian,0,4,0,0,3,-1,2013-01-11 11:36:08,2013-01-12 07:24:07,13000706MM10A,2013-01-11,,1,M,Battery,1,13012665TC10A,(M2),0,2013-03-25,Driving License Suspended,2013-03-25,2013-03-25,,0,,,,,Risk of Recidivism,4,Low,2013-01-12,Risk of Violence,3,Low,2013-01-12,2013-03-25,2013-03-25,3,0,72,0,1\r\n10189,cornelius nealy,cornelius,nealy,2014-03-13,Male,1986-07-11,29,25 - 45,African-American,1,10,0,0,8,-1,2014-03-12 04:15:38,2014-03-19 02:55:41,14003494CF10A,2014-03-12,,1,F,Possession of Cocaine,1,14008075CF10A,(F2),,2014-03-25,Aggrav Battery w/Deadly Weapon,,,,1,14008075CF10A,(F2),2014-03-25,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,10,High,2014-03-13,Risk of Violence,9,High,2014-03-13,2014-03-12,2014-03-19,8,6,12,1,1\r\n10193,sherrod robinson,sherrod,robinson,2013-11-12,Male,1994-05-04,21,Less than 25,African-American,0,5,0,0,1,-1,2013-11-11 09:30:11,2013-11-27 05:46:00,13015676CF10A,2013-11-11,,1,M,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-11-12,Risk of Violence,6,Medium,2013-11-12,2013-11-11,2013-11-27,1,15,871,0,0\r\n10194,calodius washington,calodius,washington,2013-08-30,Male,1993-02-08,23,Less than 25,African-American,1,8,0,0,5,24,2013-09-23 03:15:15,2013-09-24 04:26:21,13012247CF10A,2013-08-29,,1,F,Possession Burglary Tools,1,14006813CF10A,(F1),27,2014-04-19,Aid/Abet Burglary Assault/Batt,2014-05-16,2014-10-18,,1,14006813CF10A,(F1),2014-04-19,Aid/Abet Burglary Assault/Batt,Risk of Recidivism,8,High,2013-08-30,Risk of Violence,6,Medium,2013-08-30,2013-09-23,2013-09-24,5,0,24,0,1\r\n10195,thery cineus,thery,cineus,2013-10-18,Male,1988-05-17,27,25 - 45,Other,0,1,0,0,0,-1,2013-10-17 09:39:04,2013-10-18 07:48:37,13019715MM10A,2013-10-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-18,Risk of Violence,2,Low,2013-10-18,2013-10-17,2013-10-18,0,0,896,0,0\r\n10196,frank rose,frank,rose,2013-08-07,Male,1990-07-16,25,25 - 45,Caucasian,0,9,0,0,4,-30,2013-07-08 05:10:41,2013-07-09 12:58:59,13009539CF10A,2013-07-08,,30,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-07,Risk of Violence,7,Medium,2013-08-07,2013-07-08,2013-07-09,4,0,968,0,0\r\n10197,april hollis,april,hollis,2014-12-05,Female,1966-09-05,49,Greater than 45,African-American,0,10,0,0,25,-1,2014-12-04 04:07:50,2014-12-14 03:36:59,14016147CF10A,2014-12-04,,1,F,Felony Petit Theft,1,15009130CF10A,(F3),0,2015-07-15,Felony Petit Theft,2015-07-15,2015-08-12,,0,,,,,Risk of Recidivism,10,High,2014-12-05,Risk of Violence,5,Medium,2014-12-05,2015-07-15,2015-08-12,25,9,222,1,1\r\n10198,jermaine jean-francois,jermaine,jean-francois,2013-10-14,Male,1980-10-15,35,25 - 45,Other,0,5,0,0,2,-1,2013-10-13 04:47:31,2013-10-14 01:58:27,13014340CF10A,2013-10-13,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-14,Risk of Violence,3,Low,2013-10-14,2013-10-13,2013-10-14,2,0,900,0,0\r\n10201,juan rojassoto,juan,rojassoto,2013-03-23,Male,1980-12-11,35,25 - 45,Hispanic,0,2,0,0,0,-1,2013-03-22 07:50:40,2013-06-17 10:48:31,13004176CF10A,2013-03-22,,1,F,Tamper With Witness/Victim/CI,1,14011500MM10A,(M1),0,2014-07-28,Battery,2014-07-28,2014-07-30,,1,14011500MM10A,(M1),2014-07-28,Battery,Risk of Recidivism,2,Low,2013-03-23,Risk of Violence,2,Low,2013-03-23,2014-07-28,2014-07-30,0,86,492,1,1\r\n10202,jalicia brooks,jalicia,brooks,2014-07-29,Female,1990-06-01,25,25 - 45,African-American,0,8,0,0,1,-1,2014-07-28 01:24:31,2014-07-29 02:03:29,14011486MM10A,2014-07-28,,1,M,Battery,1,15001078MM10A,(M1),0,2015-01-27,Battery,2015-01-27,2015-02-03,,1,15001078MM10A,(M1),2015-01-27,Battery,Risk of Recidivism,8,High,2014-07-29,Risk of Violence,3,Low,2014-07-29,2015-01-27,2015-02-03,1,0,182,1,1\r\n10205,anthony diaz,anthony,diaz,2013-04-04,Male,1983-10-08,32,25 - 45,Hispanic,1,7,0,0,2,15,2013-04-19 10:18:21,2013-04-20 08:00:34,11001027MM10A,,2012-04-16,353,M,arrest case no charge,1,14000381MM30A,(M1),,2014-02-06,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-04,Risk of Violence,6,Medium,2013-04-04,2013-04-19,2013-04-20,2,0,15,0,1\r\n10207,marvin darlington,marvin,darlington,2013-11-26,Male,1980-09-25,35,25 - 45,African-American,0,6,0,0,9,-1,2013-11-25 04:37:30,2013-11-26 08:46:49,13016387CF10A,2013-11-25,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-26,Risk of Violence,5,Medium,2013-11-26,2013-11-25,2013-11-26,9,0,857,0,0\r\n10208,josue petithomme,josue,petithomme,2013-02-09,Male,1982-10-02,33,25 - 45,Caucasian,0,3,0,0,4,,,,12006176MM10A,2012-03-25,,321,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-09,Risk of Violence,3,Low,2013-02-09,,,4,0,1147,0,0\r\n10209,chris mcinerney,chris,mcinerney,2013-07-19,Male,1977-09-08,38,25 - 45,Caucasian,0,1,0,0,8,,,,09018661CF10A,,2013-06-28,21,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-19,Risk of Violence,1,Low,2013-07-19,,,8,0,987,0,0\r\n10210,barry wells,barry,wells,2013-08-17,Male,1984-01-10,32,25 - 45,African-American,0,9,0,0,0,-1,2013-08-16 11:16:03,2013-08-17 09:02:19,13011522CF10A,2013-08-16,,1,M,Operating W/O Valid License,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-08-17,Risk of Violence,7,Medium,2013-08-17,2013-08-16,2013-08-17,0,0,958,0,0\r\n10211,tatiana kennon,tatiana,kennon,2013-09-25,Female,1993-03-28,23,Less than 25,African-American,0,4,0,0,0,-1,2013-09-24 09:39:00,2013-09-25 04:30:03,13018226MM10A,2013-09-24,,1,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-25,Risk of Violence,5,Medium,2013-09-25,2013-09-24,2013-09-25,0,0,919,0,0\r\n10212,eddie durizil,eddie,durizil,2013-02-20,Male,1949-03-03,67,Greater than 45,African-American,0,2,0,0,3,,,,10021864CF10A,2010-12-14,,799,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,,,3,0,1136,0,0\r\n10214,jamar wright,jamar,wright,2013-02-11,Male,1992-05-07,23,Less than 25,African-American,1,10,1,2,4,-1,2013-02-10 05:11:00,2013-03-13 05:49:48,13002040CF10A,2013-02-10,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-11,Risk of Violence,10,High,2013-02-11,2015-02-28,2015-10-18,4,30,747,0,0\r\n10216,kristina hughes,kristina,hughes,2013-02-07,Female,1989-07-26,26,25 - 45,African-American,0,8,0,0,0,-1,2013-02-06 04:54:37,2013-02-07 09:44:01,13005770TC10A,2013-02-06,,1,M,Opert With Susp DL 2nd Offens,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-02-07,Risk of Violence,4,Low,2013-02-07,2013-02-06,2013-02-07,0,0,1149,0,0\r\n10217,robert white,robert,white,2014-11-21,Male,1984-11-05,31,25 - 45,African-American,0,8,0,0,9,0,2014-11-21 02:31:21,2014-11-21 09:15:04,14015711CF10A,2014-11-21,,0,F,Possession of Cocaine,1,14017258MM10A,(M1),0,2014-12-08,Trespass After Warning,2014-12-08,2015-01-29,,0,,,,,Risk of Recidivism,8,High,2014-11-21,Risk of Violence,5,Medium,2014-11-21,2014-12-08,2015-01-29,9,0,17,1,1\r\n10218,gary kirkland,gary,kirkland,2013-03-12,Male,1993-05-01,22,Less than 25,African-American,0,4,0,0,0,-1,2013-03-11 04:11:37,2013-03-12 06:58:34,13004886MM10A,2013-03-11,,1,M,Battery,1,14016936TC10A,(M2),,2014-04-21,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-12,Risk of Violence,7,Medium,2013-03-12,2013-03-11,2013-03-12,0,0,405,1,1\r\n10219,selena pruneda,selena,pruneda,2014-11-10,Female,1995-11-25,20,Less than 25,Caucasian,0,8,0,0,0,-1,2014-11-09 03:14:42,2014-11-28 02:53:09,14015044CF10A,2014-11-09,,1,F,Poss Pyrrolidinovalerophenone,1,15000998CF10A,(F3),0,2015-01-22,Poss Pyrrolidinovalerophenone,2015-01-22,2015-02-24,,0,,,,,Risk of Recidivism,8,High,2014-11-10,Risk of Violence,9,High,2014-11-10,2015-01-22,2015-02-24,0,18,73,1,1\r\n10220,earnest robinson,earnest,robinson,2013-01-11,Male,1991-09-21,24,Less than 25,African-American,0,3,0,0,1,-1,2013-01-10 08:39:13,2013-01-11 01:20:52,13000459CF10A,2013-01-10,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-01-11,Risk of Violence,4,Low,2013-01-11,2013-01-10,2013-01-11,1,0,1176,0,0\r\n10223,torrey thomas,torrey,thomas,2013-03-08,Male,1978-08-04,37,25 - 45,African-American,0,7,0,0,0,-1,2013-03-07 12:47:41,2013-03-08 08:42:21,13010216TC10A,2013-03-07,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-08,Risk of Violence,2,Low,2013-03-08,2013-03-07,2013-03-08,0,0,1120,0,0\r\n10224,anthony serphin,anthony,serphin,2013-03-26,Male,1987-04-06,29,25 - 45,African-American,0,5,0,0,0,-1,2013-03-25 11:37:18,2013-03-26 12:39:33,13004330CF10A,2013-03-25,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-26,Risk of Violence,3,Low,2013-03-26,2013-03-25,2013-03-26,0,0,1102,0,0\r\n10225,dwayne brown,dwayne,brown,2013-08-01,Male,1982-04-16,34,25 - 45,Other,0,2,0,0,0,-2,2013-07-30 11:30:14,2013-08-01 11:30:58,13010664CF10A,2013-07-30,,2,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2013-07-30,2013-08-01,0,0,974,0,0\r\n10226,demetrice hamilton,demetrice,hamilton,2013-04-20,Male,1986-11-14,29,25 - 45,African-American,0,7,0,1,9,-1,2013-04-19 04:21:02,2013-04-20 09:50:33,13005625CF10A,2013-04-19,,1,F,Deliver Cocaine 1000FT School,1,13089776TC30A,(M2),,2013-09-06,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-20,Risk of Violence,4,Low,2013-04-20,2015-09-15,2020-01-01,9,0,139,1,1\r\n10228,anthony angotti,anthony,angotti,2014-03-30,Male,1966-06-10,49,Greater than 45,Caucasian,0,1,0,0,3,-1,2014-03-29 03:30:24,2014-03-30 01:04:04,14004425CF10A,2014-03-29,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-30,Risk of Violence,1,Low,2014-03-30,2014-03-29,2014-03-30,3,0,733,0,0\r\n10229,quaice bowen,quaice,bowen,2013-02-26,Male,1984-10-31,31,25 - 45,African-American,0,2,0,0,2,-1,2013-02-25 08:42:56,2013-02-26 06:47:03,13002563CF10A,,2013-02-25,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-26,Risk of Violence,2,Low,2013-02-26,2013-02-25,2013-02-26,2,0,1130,0,0\r\n10230,robert madera,robert,madera,2014-03-12,Male,1956-09-28,59,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-11 11:17:30,2014-03-12 01:43:28,14004245MM10A,2014-03-11,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-12,Risk of Violence,1,Low,2014-03-12,2014-03-11,2014-03-12,0,0,751,0,0\r\n10232,howell abraham,howell,abraham,2013-04-14,Male,1977-02-22,39,25 - 45,African-American,0,1,0,0,2,-1,2013-04-13 02:57:41,2013-04-14 07:07:41,13007167MM10A,2013-04-13,,1,M,Resist/Obstruct W/O Violence,1,15004362TC10A,(M1),0,2015-02-12,Opert With Susp DL 2nd Offens,2015-02-12,2015-02-17,,0,,,,,Risk of Recidivism,1,Low,2013-04-14,Risk of Violence,1,Low,2013-04-14,2014-03-04,2014-03-05,2,0,324,0,1\r\n10233,alquan isaac,alquan,isaac,2013-03-06,Male,1992-07-02,23,Less than 25,African-American,0,5,0,1,1,-1,2013-03-05 08:58:59,2013-03-06 07:35:04,13003285CF10A,2013-03-05,,1,F,Possession Burglary Tools,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-06,Risk of Violence,5,Medium,2013-03-06,2013-03-05,2013-03-06,1,0,1122,0,0\r\n10234,acie canteen,acie,canteen,2014-04-26,Male,1989-01-05,27,25 - 45,African-American,0,1,0,0,3,-1,2014-04-25 09:15:16,2014-04-26 08:31:48,14005912CF10A,,2014-04-25,1,F,arrest case no charge,1,14043173MU10A,(M2),1,2014-11-25,Opert With Susp DL 2nd Offens,2014-11-26,2014-11-26,,0,,,,,Risk of Recidivism,1,Low,2014-04-26,Risk of Violence,2,Low,2014-04-26,2014-11-26,2014-11-26,3,0,213,1,1\r\n10235,rafael frazier,rafael,frazier,2013-11-19,Male,1993-08-01,22,Less than 25,African-American,0,9,0,0,1,-1,2013-11-18 05:01:48,2013-11-23 01:08:06,13016016CF10A,2013-11-18,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-11-19,Risk of Violence,7,Medium,2013-11-19,2013-11-18,2013-11-23,1,4,864,0,0\r\n10237,dylan williamson,dylan,williamson,2014-01-05,Male,1994-09-29,21,Less than 25,Caucasian,0,9,0,0,0,-1,2014-01-04 11:33:30,2014-01-05 08:04:13,14000170CF10A,2014-01-04,,1,F,Burglary Conveyance Unoccup,1,14007703CF10A,(M1),1,2014-06-03,Trespass Other Struct/Convey,2014-06-04,2014-07-19,,0,,,,,Risk of Recidivism,9,High,2014-01-05,Risk of Violence,9,High,2014-01-05,2016-01-14,2020-01-01,0,0,149,1,1\r\n10239,rosny abraham,rosny,abraham,2013-02-11,Male,1979-06-09,36,25 - 45,African-American,0,1,0,0,0,-1,2013-02-10 11:35:53,2013-02-11 07:32:57,13002053CF10A,2013-02-10,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2013-02-10,2013-02-11,0,0,1145,0,0\r\n10241,peter joseph,peter,joseph,2013-03-20,Male,1985-10-13,30,25 - 45,African-American,0,6,0,1,10,-8,2013-03-12 02:56:33,2013-03-19 07:21:12,12001481CF10A,,2013-03-11,9,F,arrest case no charge,1,14016686CF10A,(F3),1,2014-12-16,Tampering With Physical Evidence,2014-12-17,2014-12-17,,0,,,,,Risk of Recidivism,6,Medium,2013-03-20,Risk of Violence,2,Low,2013-03-20,2013-06-14,2013-07-16,10,0,86,0,1\r\n10242,frank marrero,frank,marrero,2014-01-10,Male,1984-06-07,31,25 - 45,Caucasian,0,7,0,0,3,0,2014-01-10 04:47:43,2014-01-10 08:01:12,14001432MU10A,2014-01-10,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-10,Risk of Violence,9,High,2014-01-10,2014-01-10,2014-01-10,3,0,812,0,0\r\n10243,isabel veliz,isabel,veliz,2013-06-03,Female,1987-02-28,29,25 - 45,Hispanic,0,3,0,0,0,-3,2013-05-31 11:18:22,2013-06-01 09:00:05,13010467MM10A,2013-05-31,,3,M,Disorderly Conduct,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-06-03,Risk of Violence,2,Low,2013-06-03,2013-05-31,2013-06-01,0,0,1033,0,0\r\n10244,avian grant,avian,grant,2013-09-22,Male,1969-01-23,47,Greater than 45,Other,0,1,0,0,5,-1,2013-09-21 05:04:13,2013-09-22 02:14:03,13018009MM10A,2013-09-21,,1,M,Possess Cannabis/20 Grams Or Less,1,13039276TC10A,(M2),0,2013-10-07,Susp Drivers Lic 1st Offense,2013-10-07,2013-10-09,,0,,,,,Risk of Recidivism,1,Low,2013-09-22,Risk of Violence,1,Low,2013-09-22,2013-10-07,2013-10-09,5,0,15,1,1\r\n10250,chavon grant,chavon,grant,2013-03-12,Male,1990-10-23,25,25 - 45,African-American,0,10,0,0,7,258,2013-11-25 12:49:37,2013-12-10 10:30:00,12015976CF10A,2012-10-29,,134,F,Grand Theft in the 3rd Degree,1,15013032CF10A,(F3),,2015-09-22,Grand Theft (Motor Vehicle),,,,0,,,,,Risk of Recidivism,10,High,2013-03-12,Risk of Violence,10,High,2013-03-12,2013-11-25,2013-12-10,7,0,258,0,0\r\n10251,chance drake,chance,drake,2013-12-12,Male,1989-11-29,26,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-11 03:26:14,2013-12-13 02:54:48,13017122CF10A,2013-12-11,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-12,Risk of Violence,3,Low,2013-12-12,2013-12-11,2013-12-13,0,1,841,0,0\r\n10252,quintavious rogers,quintavious,rogers,2013-04-20,Male,1991-05-23,24,Less than 25,African-American,0,4,0,0,0,-1,2013-04-19 06:59:47,2013-04-20 01:45:28,13007609MM10A,2013-04-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-20,Risk of Violence,5,Medium,2013-04-20,2013-04-19,2013-04-20,0,0,1077,0,0\r\n10253,daniel staime,daniel,staime,2014-02-24,Male,1973-01-26,43,25 - 45,Other,0,1,0,0,1,-3,2014-02-21 10:15:16,2014-02-22 08:01:25,14002496CF10A,2014-02-21,,3,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-24,Risk of Violence,1,Low,2014-02-24,2014-02-21,2014-02-22,1,0,767,0,0\r\n10254,jackie denmark,jackie,denmark,2014-01-28,Male,1988-07-01,27,25 - 45,African-American,1,9,2,0,11,-1,2014-01-27 06:29:28,2014-01-30 10:05:05,14001202CF10A,2014-01-27,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-01-28,Risk of Violence,10,High,2014-01-28,2014-01-27,2014-01-30,11,2,794,0,0\r\n10256,adrian arabitg,adrian,arabitg,2013-09-12,Male,1987-07-02,28,25 - 45,Caucasian,0,4,0,0,4,-1,2013-09-11 10:31:41,2014-03-20 11:22:47,13012884CF10A,,2013-09-11,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-12,Risk of Violence,3,Low,2013-09-12,2013-09-11,2014-03-20,4,189,932,0,0\r\n10257,wendy saintjuste,wendy,saintjuste,2013-11-19,Female,1982-11-10,33,25 - 45,Other,0,2,0,0,0,-1,2013-11-18 04:55:48,2013-11-19 01:28:31,13016007CF10A,2013-11-18,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-19,Risk of Violence,2,Low,2013-11-19,2013-11-18,2013-11-19,0,0,864,0,0\r\n10258,james rivelli,james,rivelli,2014-08-12,Male,1961-07-02,54,Greater than 45,Caucasian,0,3,0,0,3,-1,2014-08-11 06:33:16,2014-08-20 05:15:20,14010958CF10A,2014-08-11,,1,F,Grand Theft in the 3rd Degree,1,15005530CF10A,(F2),0,2015-04-27,Robbery / No Weapon,2015-04-27,2015-05-28,,1,15005530CF10A,(F2),2015-04-27,Robbery / No Weapon,Risk of Recidivism,3,Low,2014-08-12,Risk of Violence,2,Low,2014-08-12,2015-04-27,2015-05-28,3,8,258,1,1\r\n10259,scott kaplan,scott,kaplan,2013-10-03,Male,1958-09-05,57,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-10-02 02:21:50,2013-10-03 08:05:30,13018775MM10A,2013-10-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-03,Risk of Violence,1,Low,2013-10-03,2013-10-02,2013-10-03,0,0,911,0,0\r\n10260,bradley schild,bradley,schild,2014-10-14,Male,1961-07-29,54,Greater than 45,Caucasian,0,9,0,0,11,-127,2014-06-09 08:56:37,2014-06-23 09:28:55,14013215CF10A,2014-06-09,,127,F,Possession of Cocaine,1,15006398CF10A,(F3),0,2015-05-16,Possession of Cocaine,2015-05-16,2015-07-19,,0,,,,,Risk of Recidivism,9,High,2014-10-14,Risk of Violence,6,Medium,2014-10-14,2015-05-16,2015-07-19,11,0,214,1,1\r\n10261,gregory holmes,gregory,holmes,2013-05-29,Male,1985-07-04,30,25 - 45,African-American,0,2,0,0,2,-1,2013-05-28 07:18:38,2013-06-13 11:44:39,13007621CF10A,2013-05-28,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-29,Risk of Violence,2,Low,2013-05-29,2013-05-28,2013-06-13,2,15,1038,0,0\r\n10262,geranie barthelemy,geranie,barthelemy,2013-11-15,Male,1988-12-16,27,25 - 45,Other,0,1,0,0,0,-1,2013-11-14 05:26:11,2013-11-15 08:37:24,13021468MM10A,2013-11-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-15,Risk of Violence,2,Low,2013-11-15,2013-11-14,2013-11-15,0,0,868,0,0\r\n10267,ieasha forbes,ieasha,forbes,2013-04-19,Female,1985-02-21,31,25 - 45,African-American,0,8,0,0,4,0,2013-04-19 12:52:18,2013-04-20 07:47:51,13005632CF10A,2013-04-19,,0,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-04-19,Risk of Violence,5,Medium,2013-04-19,2013-04-19,2013-04-20,4,1,1078,0,0\r\n10269,nestor garciabonille,nestor,garciabonille,2013-02-25,Male,1987-03-01,29,25 - 45,Caucasian,0,3,0,0,0,-1,2013-02-24 05:30:21,2013-02-25 02:06:05,13002816CF10A,2013-02-24,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-25,Risk of Violence,3,Low,2013-02-25,2013-02-24,2013-02-25,0,0,1131,0,0\r\n10270,kathleen lopez,kathleen,lopez,2013-08-20,Female,1986-10-10,29,25 - 45,Hispanic,0,2,0,0,0,-2,2013-08-18 03:04:45,2013-08-19 06:39:02,13015652MM10A,2013-08-18,,2,M,Battery,1,14009892CF10A,(F2),0,2014-07-20,Aggrav Battery w/Deadly Weapon,2014-07-20,2014-07-21,,1,14009892CF10A,(F2),2014-07-20,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,2,Low,2013-08-20,Risk of Violence,2,Low,2013-08-20,2014-07-20,2014-07-21,0,0,334,1,1\r\n10271,yuniel arteaga,yuniel,arteaga,2013-05-21,Male,1983-01-26,33,25 - 45,Hispanic,0,3,0,0,2,-5,2013-05-16 02:28:47,2013-05-20 12:42:46,13032329TC10A,2013-05-07,,14,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-05-21,Risk of Violence,4,Low,2013-05-21,2013-06-26,2013-06-27,2,0,36,0,0\r\n10272,amber rivero,amber,rivero,2013-09-19,Male,1993-12-04,22,Less than 25,African-American,0,4,0,0,0,-1,2013-09-18 08:17:23,2013-09-19 09:03:46,13017794MM10A,2013-09-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-09-19,Risk of Violence,6,Medium,2013-09-19,2013-09-18,2013-09-19,0,0,925,0,0\r\n10273,winston elvie,winston,elvie,2013-04-03,Male,1988-01-11,28,25 - 45,African-American,0,3,0,0,2,-75,2013-01-18 06:03:59,2013-04-02 06:39:17,13001056CF10A,,2013-01-18,75,F,arrest case no charge,1,15061875TC30A,(M2),,2015-09-03,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-03,Risk of Violence,3,Low,2013-04-03,2013-01-18,2013-04-02,2,0,883,1,0\r\n10274,jermaine burrows,jermaine,burrows,2013-02-08,Male,1981-02-05,35,25 - 45,African-American,0,8,0,0,0,-1,2013-02-07 11:05:34,2013-02-09 04:44:20,13002784MM10A,2013-02-07,,1,M,Battery,1,13009113CF10A,(F2),,2013-05-09,Aggrav Battery w/Deadly Weapon,,,,1,13009113CF10A,(F2),2013-05-09,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,8,High,2013-02-08,Risk of Violence,7,Medium,2013-02-08,2013-02-07,2013-02-09,0,1,90,1,1\r\n10276,andre bandie,andre,bandie,2013-02-18,Male,1987-02-04,29,25 - 45,African-American,0,1,0,0,2,-1,2013-02-17 01:08:12,2013-02-18 12:57:05,13002430CF10A,2013-02-16,,2,F,Resist Officer w/Violence,1,14008212TC20A,(M2),,2014-01-10,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-18,Risk of Violence,2,Low,2013-02-18,2014-06-15,2014-07-03,2,0,326,1,1\r\n10277,james jenkins,james,jenkins,2013-08-04,Male,1985-11-17,30,25 - 45,African-American,0,7,1,0,14,-1,2013-08-03 05:56:23,2013-08-09 05:28:24,13010873CF10A,2013-08-03,,1,F,Driving While License Revoked,1,15012989CF10A,(M1),0,2015-10-07,Trespass/Property/Other Structure,2015-10-07,2015-11-09,,0,,,,,Risk of Recidivism,7,Medium,2013-08-04,Risk of Violence,7,Medium,2013-08-04,2013-10-24,2013-12-15,14,5,81,0,0\r\n10279,mary merisier,mary,merisier,2013-09-23,Female,1971-10-09,44,25 - 45,African-American,0,2,0,0,1,-45,2013-08-09 12:13:11,2013-08-11 08:29:45,13011204CF10A,2013-08-09,,45,M,Aggrav Child Abuse-Agg Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-23,Risk of Violence,2,Low,2013-09-23,2013-08-09,2013-08-11,1,0,921,0,0\r\n10280,glenn williams,glenn,williams,2013-03-14,Male,1989-03-10,27,25 - 45,African-American,0,10,0,0,2,-1,2013-03-13 11:29:00,2013-03-14 08:25:46,13003686CF10A,2013-03-13,,1,F,Tampering With Physical Evidence,1,13006942CF10A,(F3),0,2013-05-15,Tampering With Physical Evidence,2013-05-15,2013-12-26,,0,,,,,Risk of Recidivism,10,High,2013-03-14,Risk of Violence,5,Medium,2013-03-14,2013-05-15,2013-12-26,2,0,62,1,1\r\n10281,clara igelesias,clara,igelesias,2013-02-23,Female,1952-08-12,63,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-02-22 12:28:15,2013-02-23 08:11:17,13003763MM10A,2013-02-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-23,0,0,1133,0,0\r\n10283,eveno legros,eveno,legros,2013-03-27,Male,1988-05-24,27,25 - 45,African-American,0,5,0,0,6,-1,2013-03-26 08:58:54,2013-03-27 01:12:40,13004381CF10A,2013-03-26,,1,F,Possession of Cocaine,1,13009718CF10A,(F3),0,2013-07-11,Possession of Cocaine,2013-07-11,2013-08-16,,0,,,,,Risk of Recidivism,5,Medium,2013-03-27,Risk of Violence,3,Low,2013-03-27,2013-07-11,2013-08-16,6,0,106,1,1\r\n10288,daniot joachim,daniot,joachim,2014-02-17,Male,1981-10-13,34,25 - 45,Other,0,2,0,0,3,-1,2014-02-16 12:26:37,2014-02-17 08:46:28,14002691MM10A,2014-02-16,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-17,Risk of Violence,2,Low,2014-02-17,2014-02-16,2014-02-17,3,0,774,0,0\r\n10289,eric lever,eric,lever,2014-11-23,Male,1979-09-18,36,25 - 45,Caucasian,0,8,0,0,0,-1,2014-11-22 01:25:52,2014-12-29 07:37:30,14015736CF10A,2014-11-22,,1,F,Possession of Cocaine,1,15003835MM10A,(M1),0,2015-04-02,Battery,2015-04-02,2015-04-15,,1,15003835MM10A,(M1),2015-04-02,Battery,Risk of Recidivism,8,High,2014-11-23,Risk of Violence,3,Low,2014-11-23,2015-04-02,2015-04-15,0,36,130,1,1\r\n10290,antonio chang,antonio,chang,2013-01-22,Male,1984-07-16,31,25 - 45,African-American,0,10,0,1,5,50,2013-03-13 09:07:17,2014-02-13 06:54:09,12011350CF10A,,2012-10-22,92,F,arrest case no charge,1,13003701CF10A,(F2),19,2013-02-22,Poss Cocaine/Intent To Del/Sel,2013-03-13,2014-02-13,,0,,,,,Risk of Recidivism,10,High,2013-01-22,Risk of Violence,7,Medium,2013-01-22,2014-02-13,2020-01-01,5,0,31,1,1\r\n10292,saloman theoc,saloman,theoc,2013-03-20,Male,1994-06-09,21,Less than 25,African-American,0,8,0,0,0,-1,2013-03-19 06:14:41,2013-03-20 08:19:04,13003995CF10A,2013-03-19,,1,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-03-20,Risk of Violence,8,High,2013-03-20,2014-06-29,2014-07-17,0,0,466,0,0\r\n10293,robert holmes,robert,holmes,2013-12-04,Male,1992-09-26,23,Less than 25,Caucasian,0,3,0,0,1,-1,2013-12-03 05:09:32,2013-12-04 12:08:32,13016720CF10A,2013-12-03,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-04,Risk of Violence,4,Low,2013-12-04,2013-12-03,2013-12-04,1,0,849,0,0\r\n10295,rodney king,rodney,king,2013-10-25,Male,1960-10-13,55,Greater than 45,African-American,0,5,0,0,1,-43,2013-09-12 07:59:53,2013-10-25 10:48:52,13008253CF10A,,2013-09-12,43,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-25,Risk of Violence,5,Medium,2013-10-25,2013-09-12,2013-10-25,1,0,889,0,0\r\n10296,dennis davis,dennis,davis,2013-02-28,Male,1975-09-03,40,25 - 45,African-American,0,3,0,0,1,-1,2013-02-27 11:00:44,2013-05-14 07:21:12,12014798CF10A,,2013-02-27,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-28,Risk of Violence,1,Low,2013-02-28,2013-02-27,2013-05-14,1,75,1128,0,0\r\n10298,richard mckenzie,richard,mckenzie,2013-01-07,Male,1985-11-19,30,25 - 45,African-American,0,5,0,0,3,-1,2013-01-06 07:35:14,2013-01-08 05:21:10,13000306MM10A,2013-01-06,,1,M,Battery,1,14009816TC10A,(M2),0,2014-03-11,Susp Drivers Lic 1st Offense,2014-03-11,2014-03-11,,1,16001323CF10A,(F1),2016-01-13,Home Invasion Robbery,Risk of Recidivism,5,Medium,2013-01-07,Risk of Violence,5,Medium,2013-01-07,2014-03-11,2014-03-11,3,1,428,0,1\r\n10299,haratio cooke,haratio,cooke,2013-09-08,Male,1974-07-31,41,25 - 45,African-American,0,5,0,0,1,-1,2013-09-07 07:00:04,2013-09-09 03:23:49,13017065MM10A,2013-09-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-09-08,Risk of Violence,2,Low,2013-09-08,2013-09-07,2013-09-09,1,1,936,0,0\r\n10300,charles fichtner,charles,fichtner,2013-01-21,Male,1960-03-18,56,Greater than 45,Caucasian,0,1,0,0,0,0,2013-01-21 01:47:08,2013-01-21 11:01:20,13001358MM10A,2013-01-20,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-21,Risk of Violence,1,Low,2013-01-21,2013-01-21,2013-01-21,0,0,1166,0,0\r\n10301,orville roberts,orville,roberts,2014-02-26,Male,1993-01-30,23,Less than 25,African-American,0,3,0,0,1,-1,2014-02-25 05:41:36,2014-02-26 10:49:28,14002680CF10A,2014-02-25,,1,F,Possession of Codeine,1,14009571MM10A,(M1),1,2014-06-18,Resist/Obstruct W/O Violence,2014-06-19,2014-06-19,,0,,,,,Risk of Recidivism,3,Low,2014-02-26,Risk of Violence,4,Low,2014-02-26,2014-06-19,2014-06-19,1,0,112,1,1\r\n10302,robert parker,robert,parker,2013-10-23,Male,1955-01-20,61,Greater than 45,African-American,0,2,0,0,14,-1,2013-10-22 07:34:15,2013-10-23 07:47:51,13020020MO10A,2013-10-22,,1,M,Poss Of Controlled Substance,1,15015851CF10A,(F3),,2015-12-11,Possession of Cocaine,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-23,Risk of Violence,2,Low,2013-10-23,2013-10-22,2013-10-23,14,0,779,1,0\r\n10303,eloy ruizgonzalez,eloy,ruizgonzalez,2014-02-25,Male,1994-01-24,22,Less than 25,Hispanic,0,7,0,0,0,-1,2014-02-24 04:47:28,2014-03-06 11:35:07,14002599CF10A,2014-02-24,,1,F,Dealing in Stolen Property,1,14012240MM10A,(M1),0,2014-08-13,Possess Cannabis/20 Grams Or Less,2014-08-13,2014-08-14,,0,,,,,Risk of Recidivism,7,Medium,2014-02-25,Risk of Violence,8,High,2014-02-25,2014-08-13,2014-08-14,0,9,169,1,1\r\n10305,deshawn isaac,deshawn,isaac,2014-09-10,Male,1996-04-03,20,Less than 25,African-American,0,6,0,0,0,-1,2014-09-09 05:51:39,2014-09-11 03:35:38,14012288CF10A,2014-09-09,,1,F,Pos Cannabis W/Intent Sel/Del,1,14014656CF10A,(M1),0,2014-10-30,Trespass After Warning,2014-10-30,2014-10-31,,0,,,,,Risk of Recidivism,6,Medium,2014-09-10,Risk of Violence,7,Medium,2014-09-10,2014-10-30,2014-10-31,0,1,50,1,1\r\n10306,thelma lopez,thelma,lopez,2013-08-10,Male,1967-01-06,49,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-08-09 04:00:25,2013-11-08 07:58:37,13011178CF10A,2013-08-09,,1,F,Felony/Driving Under Influence,1,15020742TC30A,(M2),153,2015-03-11,Susp Drivers Lic 1st Offense,2015-08-11,2015-12-18,,0,,,,,Risk of Recidivism,1,Low,2013-08-10,Risk of Violence,1,Low,2013-08-10,2013-08-09,2013-11-08,2,90,578,1,1\r\n10307,robert austin,robert,austin,2013-01-06,Male,1984-05-01,31,25 - 45,African-American,2,6,0,0,6,-1,2013-01-05 11:46:29,2013-01-31 09:56:53,13000224CF10A,2013-01-05,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-06,Risk of Violence,6,Medium,2013-01-06,2013-01-05,2013-01-31,6,25,1181,0,0\r\n10309,eston anderson,eston,anderson,2014-09-18,Male,1965-06-24,50,Greater than 45,African-American,0,5,0,0,7,-1,2014-09-17 05:27:13,2014-09-19 02:54:40,11014080CF10A,,2014-09-18,0,F,arrest case no charge,1,15013432CF10A,(F3),,2015-06-24,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,5,Medium,2014-09-18,Risk of Violence,4,Low,2014-09-18,2014-09-17,2014-09-19,7,1,279,1,1\r\n10312,kimberly howard,kimberly,howard,2013-01-23,Female,1984-09-29,31,25 - 45,African-American,0,2,0,0,3,-1,2013-01-22 12:06:21,2013-01-23 01:09:38,13001516MM10A,2013-01-22,,1,M,Battery,1,14038076TC20A,(M2),,2014-05-22,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-01-23,Risk of Violence,2,Low,2013-01-23,2015-11-25,2015-11-25,3,0,484,1,1\r\n10313,normando cooper,normando,cooper,2013-08-01,Male,1983-05-25,32,25 - 45,African-American,1,10,0,2,4,-1,2013-07-31 10:15:26,2013-08-04 09:42:54,12007620CF10A,2012-05-23,,435,F,Poss Cocaine/Intent To Del/Sel,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-08-01,Risk of Violence,9,High,2013-08-01,2013-07-31,2013-08-04,4,3,974,0,0\r\n10314,carrie bein,carrie,bein,2014-12-19,Female,1989-05-15,26,25 - 45,Caucasian,0,6,0,0,7,48,2015-02-05 11:46:35,2015-02-18 09:08:26,14013843CF10A,2014-10-14,,66,F,Possession of Oxycodone,1,15000453MM20A,(M2),18,2015-01-18,Petit Theft,2015-02-05,2015-02-18,,0,,,,,Risk of Recidivism,6,Medium,2014-12-19,Risk of Violence,5,Medium,2014-12-19,2015-10-24,2015-12-05,7,0,30,1,1\r\n10315,morris atkins,morris,atkins,2014-04-15,Male,1971-10-21,44,25 - 45,African-American,0,1,0,0,0,-1,2014-04-14 09:02:39,2014-04-15 01:17:38,14005219CF10A,2014-04-14,,1,F,Felony Battery (Dom Strang),1,15003183MM10A,(M1),,2015-02-27,Viol Injunct Domestic Violence,,,,0,,,,,Risk of Recidivism,1,Low,2014-04-15,Risk of Violence,1,Low,2014-04-15,2015-02-02,2015-02-05,0,0,293,0,1\r\n10316,alvyn doman,alvyn,doman,2013-01-21,Male,1959-09-22,56,Greater than 45,Other,0,1,0,0,0,-1,2013-01-20 07:13:34,2013-01-21 08:18:53,13001378MM10A,2013-01-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-21,Risk of Violence,1,Low,2013-01-21,2013-01-20,2013-01-21,0,0,1166,0,0\r\n10317,william ogburn,william,ogburn,2014-01-23,Male,1953-08-15,62,Greater than 45,African-American,0,1,0,0,0,0,2014-01-23 03:30:01,2014-01-23 08:50:24,14002677MU10A,2014-01-23,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-23,Risk of Violence,1,Low,2014-01-23,2014-01-23,2014-01-23,0,0,799,0,0\r\n10319,paul daley,paul,daley,2013-12-23,Male,1972-12-14,43,25 - 45,African-American,0,1,0,0,3,-1,2013-12-22 04:42:10,2013-12-23 07:54:10,13017647CF10A,2013-12-22,,1,F,Felony Driving While Lic Suspd,1,14029738MU10A,(M2),0,2014-08-14,Lve/Scen/Acc/Veh/Prop/Damage,2014-08-14,2014-08-15,,0,,,,,Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2014-08-14,2014-08-15,3,0,234,1,1\r\n10323,joseph acevedo,joseph,acevedo,2013-03-10,Male,1984-06-16,31,25 - 45,Hispanic,2,9,1,0,8,171,2013-08-28 10:39:38,2013-08-31 04:36:28,04027017MM10A,,2013-03-10,0,M,arrest case no charge,1,13045217TC10A,(M2),71,2013-06-18,Operating W/O Valid License,2013-08-28,2013-08-31,,0,,,,,Risk of Recidivism,9,High,2013-03-10,Risk of Violence,7,Medium,2013-03-10,2016-03-09,2016-03-12,8,0,100,1,1\r\n10324,shakeia gardner,shakeia,gardner,2014-12-12,Female,1991-11-29,24,Less than 25,African-American,0,4,0,0,1,0,2014-12-12 03:32:28,2014-12-12 08:27:05,14017502MM10A,2014-12-12,,0,M,Battery,1,15017687TC20A,(M2),,2015-03-10,Driving License Suspended,,,,0,,,,,Risk of Recidivism,4,Low,2014-12-12,Risk of Violence,5,Medium,2014-12-12,2014-12-12,2014-12-12,1,0,88,1,1\r\n10326,renardo clark,renardo,clark,2013-12-11,Male,1974-11-05,41,25 - 45,African-American,0,10,0,0,13,-1,2013-12-10 09:26:48,2013-12-11 01:10:37,13017072CF10A,2013-12-10,,1,F,Possession Of Carisoprodol,1,14000372MM40A,(M2),,2014-01-01,Trespass Structure/Conveyance,,,,0,,,,,Risk of Recidivism,10,High,2013-12-11,Risk of Violence,8,High,2013-12-11,2015-04-13,2015-05-05,13,0,21,1,1\r\n10327,michael nocie,michael,nocie,2014-03-11,Male,1993-03-12,23,Less than 25,Caucasian,0,5,0,0,0,-1,2014-03-10 08:14:12,2014-03-11 01:13:40,14004145MM10A,2014-03-10,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-11,Risk of Violence,6,Medium,2014-03-11,2014-03-10,2014-03-11,0,0,752,0,0\r\n10328,chernard duval,chernard,duval,2013-10-21,Male,1990-12-03,25,25 - 45,African-American,0,4,0,0,1,,,,11001609CF10A,2011-01-26,,999,F,Lewd or Lascivious Molestation,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-21,Risk of Violence,5,Medium,2013-10-21,,,1,0,893,0,0\r\n10329,norval kelly,norval,kelly,2014-02-03,Male,1962-12-04,53,Greater than 45,Other,0,1,0,0,0,-1,2014-02-02 01:42:38,2014-02-03 01:14:46,14001820MM10A,2014-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-03,Risk of Violence,1,Low,2014-02-03,2014-02-02,2014-02-03,0,0,788,0,0\r\n10330,noel sequeira,noel,sequeira,2013-04-27,Male,1949-03-29,67,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-27 03:49:46,2013-06-08 05:44:21,13008123MM10A,2013-04-27,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-27,Risk of Violence,1,Low,2013-04-27,2013-04-27,2013-06-08,0,42,1070,0,0\r\n10332,ivan peralta,ivan,peralta,2013-05-14,Male,1977-09-22,38,25 - 45,Hispanic,0,1,0,0,0,-1,2013-05-13 02:11:53,2013-05-14 04:30:04,13009231MM10A,2013-05-13,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-14,Risk of Violence,1,Low,2013-05-14,2013-05-13,2013-05-14,0,0,1053,0,0\r\n10333,frantz beneche,frantz,beneche,2013-08-01,Male,1975-07-30,40,25 - 45,Other,0,1,0,0,1,-1,2013-07-31 08:16:51,2013-08-01 12:58:43,13008850CF10A,,2013-07-31,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-01,Risk of Violence,1,Low,2013-08-01,2015-01-27,2015-01-30,1,0,544,0,0\r\n10334,tyshawn dias,tyshawn,dias,2014-10-06,Male,1995-05-11,20,Less than 25,African-American,0,6,0,0,0,0,2014-10-06 04:49:35,2014-10-07 01:57:41,14013494CF10A,2014-10-06,,0,F,Threat Public Servant,1,15011650CF10A,(F3),0,2015-09-08,Possession Burglary Tools,2015-09-08,2015-09-19,,0,,,,,Risk of Recidivism,6,Medium,2014-10-06,Risk of Violence,8,High,2014-10-06,2015-09-08,2015-09-19,0,1,337,1,1\r\n10335,maxine peart,maxine,peart,2013-05-29,Female,1970-05-29,45,Greater than 45,Other,0,1,0,0,1,-1,2013-05-28 01:09:38,2013-05-30 01:19:38,12010462CF10A,,2013-05-28,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-29,Risk of Violence,1,Low,2013-05-29,2013-05-28,2013-05-30,1,1,1038,0,0\r\n10336,bruce brundage,bruce,brundage,2013-12-07,Male,1986-06-07,29,25 - 45,African-American,1,8,0,0,3,-1,2013-12-06 03:58:46,2014-02-04 09:32:08,13022654MM10A,2013-12-06,,1,M,Battery,1,14002162MM10A,(M1),,2014-02-07,Battery,,,,1,14002162MM10A,(M1),2014-02-07,Battery,Risk of Recidivism,8,High,2013-12-07,Risk of Violence,8,High,2013-12-07,2013-12-06,2014-02-04,3,59,62,1,1\r\n10337,jackson echeniquepadilla,jackson,echeniquepadilla,2013-02-11,Male,1983-12-07,32,25 - 45,Hispanic,0,2,0,0,0,0,2013-02-11 04:34:29,2013-02-11 07:32:37,13003045MM10A,2013-02-11,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-11,Risk of Violence,3,Low,2013-02-11,2013-02-11,2013-02-11,0,0,1145,0,0\r\n10338,allison centolella,allison,centolella,2013-02-26,Female,1981-07-31,34,25 - 45,Caucasian,0,2,0,1,0,-2,2013-02-24 11:49:15,2013-02-25 09:02:34,13002809CF10A,2013-02-23,,3,F,Possession of Cocaine,1,13031378TC10A,(M2),101,2013-04-25,Susp Drivers Lic 1st Offense,2013-08-04,2013-08-12,,0,,,,,Risk of Recidivism,2,Low,2013-02-26,Risk of Violence,1,Low,2013-02-26,2013-08-04,2013-08-12,0,0,58,1,1\r\n10339,dvonte stewart,dvonte,stewart,2014-04-07,Male,1992-11-03,23,Less than 25,African-American,0,10,0,0,1,231,2014-11-24 01:31:11,2015-04-22 11:50:05,10024797MM10A,2010-11-16,,1238,M,Prowling/Loitering,1,15007098MM10A,(M1),0,2015-07-02,Battery,2015-07-02,2015-08-21,,1,15007098MM10A,(M1),2015-07-02,Battery,Risk of Recidivism,10,High,2014-04-07,Risk of Violence,10,High,2014-04-07,2014-11-24,2015-04-22,1,0,231,0,1\r\n10343,syrefia kinchen,syrefia,kinchen,2013-01-07,Female,1976-10-10,39,25 - 45,Other,0,1,0,0,0,-1,2013-01-06 08:13:47,2013-01-07 09:42:45,13000238CF10A,2013-01-06,,1,F,Criminal Mischief,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-07,Risk of Violence,1,Low,2013-01-07,2013-01-06,2013-01-07,0,0,1180,0,0\r\n10344,todd brown,todd,brown,2014-01-23,Male,1986-12-24,29,25 - 45,African-American,0,2,0,0,0,0,2014-01-23 04:25:31,2014-01-24 09:37:02,14000998CF10A,2014-01-23,,0,F,Felony Battery w/Prior Convict,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-23,Risk of Violence,2,Low,2014-01-23,2014-01-23,2014-01-24,0,1,799,0,0\r\n10345,john mompremier,john,mompremier,2013-08-27,Male,1969-11-12,46,Greater than 45,African-American,0,1,0,0,4,-8,2013-08-19 03:15:35,2013-08-27 10:56:34,13011711CF10A,,2013-08-20,7,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-27,Risk of Violence,1,Low,2013-08-27,2013-08-19,2013-08-27,4,0,948,0,0\r\n10346,danny black,danny,black,2013-12-29,Male,1984-12-17,31,25 - 45,African-American,0,8,0,0,9,-1,2013-12-28 02:25:38,2014-01-24 03:19:10,13023915MM10A,2013-12-28,,1,M,Battery,1,14004242CF10A,(F3),0,2014-03-25,Possession of Cocaine,2014-03-25,2014-03-27,,1,15006614MM10A,(M1),2015-05-20,Battery,Risk of Recidivism,8,High,2013-12-29,Risk of Violence,8,High,2013-12-29,2014-03-25,2014-03-27,9,26,86,1,1\r\n10348,carlheinz caprice,carlheinz,caprice,2013-02-12,Male,1991-10-24,24,Less than 25,African-American,0,2,0,0,1,-13,2013-01-30 01:51:31,2013-01-30 07:18:13,13002190MM10A,2013-01-30,,13,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-02-12,Risk of Violence,4,Low,2013-02-12,2013-01-30,2013-01-30,1,0,1144,0,0\r\n10349,hamilton clarington,hamilton,clarington,2014-03-01,Male,1987-06-26,28,25 - 45,African-American,0,1,0,0,1,0,2014-03-01 02:22:04,2014-03-01 10:22:26,13017225CF10A,,2014-03-01,0,F,arrest case no charge,1,14011978CF10A,(F2),,2014-08-30,Burglary Dwelling Occupied,,,,1,14011856CF10A,(F1),2014-08-30,Robbery-Strong Arm W/mask,Risk of Recidivism,1,Low,2014-03-01,Risk of Violence,2,Low,2014-03-01,2015-12-29,2020-01-01,1,0,182,1,1\r\n10351,mercedes barrett,mercedes,barrett,2014-02-09,Female,1990-12-29,25,25 - 45,African-American,0,4,0,0,0,-1,2014-02-08 09:24:33,2014-02-10 03:56:31,14002193MM10A,2014-02-08,,1,M,Battery,1,14010521MM10A,(M2),,2014-04-25,Compulsory Attendance Violation,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-09,Risk of Violence,5,Medium,2014-02-09,2014-02-08,2014-02-10,0,1,75,1,1\r\n10354,nikki williams,nikki,williams,2013-10-20,Female,1991-11-20,24,Less than 25,African-American,0,6,0,0,0,-1,2013-10-19 07:55:40,2013-10-20 08:37:38,13019805MM10A,2013-10-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-20,Risk of Violence,5,Medium,2013-10-20,2013-10-19,2013-10-20,0,0,894,0,0\r\n10355,renoir robinson,renoir,robinson,2013-05-18,Male,1986-09-18,29,25 - 45,Other,0,6,0,0,5,-1,2013-05-17 02:34:56,2014-01-30 06:26:52,13007048CF10A,2013-05-17,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-18,Risk of Violence,5,Medium,2013-05-18,2013-05-17,2014-01-30,5,257,1049,0,0\r\n10356,george bocanegra,george,bocanegra,2013-12-28,Male,1987-04-29,28,25 - 45,Hispanic,0,8,0,0,3,-1,2013-12-27 05:37:54,2014-06-10 10:33:46,13017868CF10A,,2013-12-27,1,F,arrest case no charge,1,15001566MM10A,(M2),0,2015-02-07,Petit Theft,2015-02-07,2015-06-08,,1,15010780CF10A,(F2),2015-08-21,Sexual Battery / Vict 12 Yrs +,Risk of Recidivism,8,High,2013-12-28,Risk of Violence,8,High,2013-12-28,2015-02-07,2015-06-08,3,164,406,1,1\r\n10357,jonathon mckenzie,jonathon,mckenzie,2014-03-20,Male,1979-10-24,36,25 - 45,Caucasian,0,2,0,0,1,-2,2014-03-18 06:08:02,2014-03-19 01:20:16,14003786CF10A,2014-03-18,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-20,Risk of Violence,1,Low,2014-03-20,2014-03-18,2014-03-19,1,0,743,0,0\r\n10359,christopher lewis,christopher,lewis,2013-04-27,Male,1991-01-24,25,25 - 45,African-American,0,6,0,0,2,0,2013-04-27 10:39:31,2013-04-30 07:29:55,13008137MM10A,2013-04-27,,0,M,Tresspass in Structure or Conveyance,1,15013125MM10A,(M2),,2015-12-21,Battery,,,,1,15013125MM10A,(M2),2015-12-21,Battery,Risk of Recidivism,6,Medium,2013-04-27,Risk of Violence,5,Medium,2013-04-27,2013-06-18,2013-08-05,2,3,52,0,0\r\n10360,ali juma,ali,juma,2013-12-28,Male,1986-05-26,29,25 - 45,Caucasian,0,1,0,0,0,0,2013-12-28 05:20:25,2014-01-11 05:07:00,13017906CF10A,2013-12-27,,1,F,Felony Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-28,Risk of Violence,2,Low,2013-12-28,2013-12-28,2014-01-11,0,14,825,0,0\r\n10361,sarah seiler,sarah,seiler,2013-05-06,Female,1990-03-29,26,25 - 45,Caucasian,0,9,0,0,1,-1,2013-05-05 07:23:19,2013-05-08 08:21:21,13006424CF10A,2013-05-05,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-06,Risk of Violence,7,Medium,2013-05-06,2013-12-03,2013-12-04,1,2,211,0,0\r\n10363,wayne pinnock,wayne,pinnock,2013-11-27,Male,1992-06-09,23,Less than 25,African-American,1,9,0,0,3,-1,2013-11-26 05:25:15,2013-11-28 02:20:24,13016479CF10A,2013-11-26,,1,F,Pos Cannabis W/Intent Sel/Del,1,13016715CF10A,(F3),1,2013-12-03,Possession of Cannabis,2013-12-04,2014-03-06,,0,,,,,Risk of Recidivism,9,High,2013-11-27,Risk of Violence,9,High,2013-11-27,2013-11-26,2013-11-28,3,1,6,1,1\r\n10364,zaneti bienaime,zaneti,bienaime,2014-02-10,Male,1995-10-10,20,Less than 25,Other,0,10,0,0,1,-1,2014-02-09 08:00:05,2014-03-17 07:46:25,14001818CF10A,2014-02-09,,1,F,Grand Theft (Motor Vehicle),1,14007757CF10A,(M1),0,2014-06-05,Trespass Property w/Dang Weap,2014-06-05,2014-09-23,,0,,,,,Risk of Recidivism,10,High,2014-02-10,Risk of Violence,9,High,2014-02-10,2014-06-05,2014-09-23,1,35,115,1,1\r\n10367,kenneth littlejohn,kenneth,littlejohn,2013-04-04,Male,1983-07-31,32,25 - 45,African-American,0,6,0,0,4,-1,2013-04-03 01:08:33,2013-04-04 01:15:44,13004769CF10A,2013-04-03,,1,F,Driving While License Revoked,1,15017969TC20A,(M2),,2015-03-11,Operating W/O Valid License,,,,1,15010987MM10A,(M1),2015-09-12,Battery,Risk of Recidivism,6,Medium,2013-04-04,Risk of Violence,3,Low,2013-04-04,2013-04-03,2013-04-04,4,0,706,1,1\r\n10369,giovanna flores,giovanna,flores,2013-11-23,Male,1986-07-15,29,25 - 45,Hispanic,0,1,0,0,1,0,2013-11-23 02:20:27,2013-11-25 02:34:28,13016305CF10A,2013-11-22,,1,F,Agg Battery Grt/Bod/Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-23,Risk of Violence,2,Low,2013-11-23,2013-11-23,2013-11-25,1,2,860,0,0\r\n10370,taryn quinterri,taryn,quinterri,2013-12-05,Female,1989-12-02,26,25 - 45,Caucasian,0,3,0,0,0,-1,2013-12-04 12:52:58,2013-12-05 09:54:23,13016769CF10A,2013-12-04,,1,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-05,Risk of Violence,3,Low,2013-12-05,2013-12-04,2013-12-05,0,0,848,0,0\r\n10371,edwin martinez,edwin,martinez,2013-06-10,Male,1970-10-21,45,Greater than 45,Hispanic,0,1,0,0,3,-83,2013-03-19 12:47:07,2013-03-20 02:58:11,13004055CF10A,2013-03-20,,82,F,Crim Use of Personal ID Info,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-10,Risk of Violence,1,Low,2013-06-10,2013-03-19,2013-03-20,3,0,1026,0,0\r\n10372,barton schroeder,barton,schroeder,2013-11-18,Male,1980-08-29,35,25 - 45,Caucasian,0,1,0,0,0,-1,2013-11-17 11:40:34,2013-11-18 08:28:53,13021604MM10A,2013-11-17,,1,M,Driving Under The Influence,1,14022957TC20A,(M2),,2014-03-11,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-18,Risk of Violence,1,Low,2013-11-18,2013-11-17,2013-11-18,0,0,113,1,1\r\n10375,stiven alexis,stiven,alexis,2014-01-13,Male,1993-02-12,23,Less than 25,African-American,0,4,0,0,0,-2,2014-01-11 02:22:37,2014-01-12 01:57:14,14000561MM10A,2014-01-11,,2,M,Possess Drug Paraphernalia,1,15001543MM10A,(M2),0,2015-02-06,Trespass Struct/Conveyance,2015-02-06,2015-02-06,,0,,,,,Risk of Recidivism,4,Low,2014-01-13,Risk of Violence,4,Low,2014-01-13,2015-02-06,2015-02-06,0,0,389,0,1\r\n10376,ivette lopez,ivette,lopez,2014-03-10,Female,1969-05-10,46,Greater than 45,Caucasian,0,1,0,0,0,0,2014-03-10 04:52:56,2014-03-10 08:40:21,14009443MU10A,2014-03-10,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-10,Risk of Violence,1,Low,2014-03-10,2014-03-10,2014-03-10,0,0,753,0,0\r\n10377,michael vento,michael,vento,2013-04-29,Male,1975-03-01,41,25 - 45,Caucasian,0,1,0,0,0,-1,2013-04-28 06:37:34,2013-04-29 06:56:58,13006108CF10A,2013-04-28,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-29,Risk of Violence,1,Low,2013-04-29,2013-04-28,2013-04-29,0,0,1068,0,0\r\n10378,daniel barrett,daniel,barrett,2013-03-20,Male,1994-02-11,22,Less than 25,Caucasian,0,6,0,1,0,0,2013-03-20 04:57:45,2013-03-20 08:02:31,13005477MM10A,2013-03-19,,1,M,Possess Cannabis/20 Grams Or Less,1,13021032MM10A,(M1),0,2013-11-07,Possess Cannabis/20 Grams Or Less,2013-11-07,2013-11-08,,0,,,,,Risk of Recidivism,6,Medium,2013-03-20,Risk of Violence,6,Medium,2013-03-20,2013-11-07,2013-11-08,0,0,232,1,1\r\n10379,deandre chambers,deandre,chambers,2013-01-16,Male,1988-11-14,27,25 - 45,African-American,0,7,0,0,7,-1,2013-01-15 11:07:57,2013-02-12 03:39:37,13000699CF10A,2013-01-15,,1,M,Robbery / No Weapon,1,13014916MM10A,(M1),0,2013-08-07,Possess Cannabis/20 Grams Or Less,2013-08-07,2013-08-08,,0,,,,,Risk of Recidivism,7,Medium,2013-01-16,Risk of Violence,9,High,2013-01-16,2013-08-07,2013-08-08,7,27,203,1,1\r\n10380,rosemary marchal,rosemary,marchal,2013-05-06,Female,1977-06-24,38,25 - 45,Other,0,1,0,0,0,-1,2013-05-05 03:26:04,2013-05-06 12:07:20,13008715MM10A,2013-05-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-06,Risk of Violence,1,Low,2013-05-06,2013-05-05,2013-05-06,0,0,1061,0,0\r\n10381,alicia jackson,alicia,jackson,2013-10-09,Female,1991-09-02,24,Less than 25,African-American,0,6,0,0,1,26,2013-11-04 03:09:22,2013-11-05 01:19:17,13000990CF10A,2013-01-21,,261,F,Sale/Del Cannabis At/Near Scho,1,13015368CF10A,(M1),1,2013-11-03,Battery,2013-11-04,2013-11-05,,1,13015368CF10A,(M1),2013-11-03,Aggrav Battery w/Deadly Weapon,Risk of Recidivism,6,Medium,2013-10-09,Risk of Violence,5,Medium,2013-10-09,2015-04-07,2015-08-01,1,0,25,1,1\r\n10383,joshua johnson,joshua,johnson,2013-08-16,Male,1988-08-28,27,25 - 45,African-American,0,9,0,0,10,-1,2013-08-15 04:50:51,2013-08-16 09:06:45,13011484CF10A,2013-08-15,,1,F,Driving While License Revoked,1,14000417CF10A,(F3),0,2014-01-10,Possession of Cocaine,2014-01-10,2014-02-15,,0,,,,,Risk of Recidivism,9,High,2013-08-16,Risk of Violence,6,Medium,2013-08-16,2014-01-10,2014-02-15,10,0,147,1,1\r\n10386,robert sandholzer,robert,sandholzer,2013-09-05,Male,1993-07-01,22,Less than 25,Caucasian,0,7,0,0,1,-1,2013-09-04 01:42:39,2013-09-28 04:10:51,13016932MM10A,2013-09-04,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-05,Risk of Violence,6,Medium,2013-09-05,2013-09-04,2013-09-28,1,23,939,0,0\r\n10387,helena thornton,helena,thornton,2013-08-23,Female,1973-03-22,43,25 - 45,African-American,0,2,0,0,3,-44,2013-07-10 12:43:44,2013-08-23 10:12:31,13007486CF10A,,2013-07-10,44,F,arrest case no charge,1,15005103CF10A,(M1),0,2015-04-17,Possess Drug Paraphernalia,2015-04-17,2015-04-18,,0,,,,,Risk of Recidivism,2,Low,2013-08-23,Risk of Violence,1,Low,2013-08-23,2015-04-17,2015-04-18,3,0,602,1,1\r\n10388,mercedes richardson,mercedes,richardson,2013-02-23,Male,1990-03-30,26,25 - 45,African-American,0,6,1,0,3,-1,2013-02-22 04:50:04,2013-02-24 06:40:31,13018277TC10A,,2013-02-22,1,M,arrest case no charge,1,13013510TC10A,(M1),0,2013-03-03,Opert With Susp DL 2nd Offens,2013-03-03,2013-03-04,,0,,,,,Risk of Recidivism,6,Medium,2013-02-23,Risk of Violence,5,Medium,2013-02-23,2013-03-03,2013-03-04,3,1,8,1,1\r\n10389,jayson norman,jayson,norman,2013-05-22,Male,1989-09-23,26,25 - 45,Caucasian,0,6,0,0,7,-1,2013-05-21 05:19:13,2013-07-29 04:36:22,13009783MM10A,2013-05-21,,1,M,Susp Drivers Lic 1st Offense,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-22,Risk of Violence,5,Medium,2013-05-22,2013-09-10,2013-11-27,7,68,111,0,0\r\n10390,adam diaz,adam,diaz,2013-08-11,Male,1986-09-16,29,25 - 45,Caucasian,0,4,0,0,3,-1,2013-08-10 11:11:22,2013-08-11 11:22:34,13011228CF10A,2013-08-10,,1,F,Possession of Cocaine,1,13017430CF10A,(F3),0,2013-12-17,Possession Of Alprazolam,2013-12-17,2014-01-17,,0,,,,,Risk of Recidivism,4,Low,2013-08-11,Risk of Violence,2,Low,2013-08-11,2013-12-17,2014-01-17,3,0,128,1,1\r\n10393,kenneth branch,kenneth,branch,2014-04-03,Female,1973-12-23,42,25 - 45,African-American,3,10,0,0,17,-8,2014-03-26 05:02:49,2014-04-03 05:28:10,14004299CF10A,2014-03-26,,8,F,Possession of Cocaine,1,14007613MM10A,(M2),0,2014-05-08,Petit Theft,2014-05-08,2014-06-23,,0,,,,,Risk of Recidivism,10,High,2014-04-03,Risk of Violence,7,Medium,2014-04-03,2014-05-08,2014-06-23,17,0,35,1,1\r\n10394,christopher jordan,christopher,jordan,2014-03-31,Male,1985-05-09,30,25 - 45,African-American,0,1,0,0,0,-1,2014-03-30 06:21:42,2014-03-31 01:49:16,14005465MM10A,2014-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-31,Risk of Violence,1,Low,2014-03-31,2014-03-30,2014-03-31,0,0,732,0,0\r\n10399,mauro funez,mauro,funez,2013-08-28,Male,1981-10-21,34,25 - 45,Caucasian,0,5,0,0,1,-1,2013-08-27 12:17:50,2013-08-28 08:02:22,13012096CF10A,2013-08-27,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-28,Risk of Violence,4,Low,2013-08-28,2013-08-27,2013-08-28,1,0,947,0,0\r\n10400,christopher leal,christopher,leal,2014-01-02,Male,1992-11-15,23,Less than 25,Caucasian,0,7,0,7,3,-1,2014-01-01 07:02:36,2014-01-02 09:18:31,14000032MM10A,2014-01-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2014-01-02,Risk of Violence,9,High,2014-01-02,2014-01-01,2014-01-02,3,0,820,0,0\r\n10401,olga baum,olga,baum,2013-04-03,Female,1968-06-25,47,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-04-02 11:45:32,2013-04-03 07:34:16,13006358MM10A,2013-04-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-03,Risk of Violence,1,Low,2013-04-03,2013-04-02,2013-04-03,0,0,1094,0,0\r\n10402,philip jamison,philip,jamison,2013-05-18,Male,1961-01-19,55,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-05-17 01:50:39,2013-05-30 08:03:27,13007418MM10A,,2013-05-17,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-18,Risk of Violence,1,Low,2013-05-18,2013-05-17,2013-05-30,2,12,1049,0,0\r\n10403,michelle gregorovic,michelle,gregorovic,2014-10-14,Female,1985-05-16,30,25 - 45,Caucasian,0,5,0,0,5,-168,2014-04-29 09:52:20,2014-10-06 11:01:07,14005955CF10A,2014-04-29,,168,F,Sel Etc/Pos/w/Int Contrft Schd,1,15011706MM10A,(M1),1,2015-11-08,Battery,2015-11-09,2015-11-18,,1,15011706MM10A,(M1),2015-11-08,Battery,Risk of Recidivism,5,Medium,2014-10-14,Risk of Violence,2,Low,2014-10-14,2015-11-09,2015-11-18,5,0,390,1,1\r\n10404,jeremy gebar,jeremy,gebar,2013-09-15,Male,1985-11-02,30,25 - 45,Hispanic,0,3,0,0,0,-1,2013-09-14 02:02:37,2013-09-15 10:50:57,13017515MM10A,2013-09-14,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-15,Risk of Violence,2,Low,2013-09-15,2013-09-14,2013-09-15,0,0,929,0,0\r\n10406,fredrick lambert,fredrick,lambert,2013-01-12,Male,1973-04-17,43,25 - 45,African-American,0,7,0,0,2,0,2013-01-12 12:58:49,2013-01-12 07:44:29,13000560CF10A,2013-01-11,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-12,Risk of Violence,6,Medium,2013-01-12,2013-01-12,2013-01-12,2,0,1175,0,0\r\n10407,devin beasley,devin,beasley,2014-07-06,Male,1970-12-11,45,Greater than 45,African-American,0,8,0,0,38,-1,2014-07-05 06:23:46,2014-11-03 09:34:22,14010593CF10A,2014-07-05,,1,F,Felony Battery w/Prior Convict,1,15010630MM10A,(M1),1,2015-10-11,Resist/Obstruct W/O Violence,2015-10-12,2015-11-18,,1,16001690CF10A,(F3),2016-02-08,Aggravated Assault W/Dead Weap,Risk of Recidivism,8,High,2014-07-06,Risk of Violence,8,High,2014-07-06,2014-07-05,2014-11-03,38,120,462,1,1\r\n10408,julio matamoros,julio,matamoros,2014-01-03,Male,1985-06-23,30,25 - 45,Hispanic,0,1,0,0,0,-1,2014-01-02 01:34:35,2014-01-03 01:49:26,14000087MM10A,2014-01-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-03,Risk of Violence,1,Low,2014-01-03,2014-01-02,2014-01-03,0,0,819,0,0\r\n10410,christi sluder,christi,sluder,2013-11-21,Female,1955-03-16,61,Greater than 45,Caucasian,0,6,0,0,15,-10,2013-11-11 09:56:16,2013-11-12 02:06:02,13015691CF10A,2013-11-11,,10,F,Felony Petit Theft,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-21,Risk of Violence,2,Low,2013-11-21,2013-11-11,2013-11-12,15,0,862,0,0\r\n10411,james turnquest,james,turnquest,2013-09-16,Male,1952-09-25,63,Greater than 45,African-American,0,9,0,0,16,,,,11006650MM10A,2011-03-21,,910,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-09-16,Risk of Violence,5,Medium,2013-09-16,2007-10-18,2009-04-11,16,0,928,0,0\r\n10412,nikolay petrov,nikolay,petrov,2013-02-25,Male,1966-06-11,49,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-02-24 06:39:36,2013-02-25 01:34:30,13002839CF10A,2013-02-24,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-25,Risk of Violence,1,Low,2013-02-25,2013-02-24,2013-02-25,0,0,1131,0,0\r\n10413,gervaise hylton,gervaise,hylton,2014-03-30,Male,1966-04-26,49,Greater than 45,African-American,0,1,0,0,1,0,2014-03-30 12:16:19,2014-03-30 09:48:37,14005430MM10A,2014-03-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-30,Risk of Violence,1,Low,2014-03-30,2014-05-14,2014-05-15,1,0,45,0,0\r\n10415,jason bartley,jason,bartley,2013-03-01,Male,1973-07-02,42,25 - 45,African-American,0,1,0,0,1,0,2013-03-01 02:08:27,2013-03-01 09:58:28,13003068CF10A,2013-03-01,,0,F,Possession Of Amphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-01,Risk of Violence,1,Low,2013-03-01,2013-03-01,2013-03-01,1,0,1127,0,0\r\n10416,marshall phillips,marshall,phillips,2013-02-19,Male,1991-09-24,24,Less than 25,African-American,0,7,0,0,1,-1,2013-02-18 01:55:35,2013-03-15 01:12:27,13003465MM10A,2013-02-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-19,Risk of Violence,5,Medium,2013-02-19,2014-11-08,2014-12-18,1,24,627,0,0\r\n10417,mario delrio,mario,delrio,2013-08-20,Male,1964-12-06,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-19 07:04:31,2013-08-20 07:15:48,13011607CF10A,2013-08-19,,1,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-20,Risk of Violence,1,Low,2013-08-20,2013-08-19,2013-08-20,0,0,955,0,0\r\n10419,joe martinez,joe,martinez,2014-07-28,Male,1984-02-13,32,25 - 45,Hispanic,0,5,0,0,6,-1,2014-07-27 06:39:32,2014-08-05 07:52:03,14011428MM10A,2014-07-27,,1,M,Battery,1,14017069MM10A,(M2),,2014-11-08,Drinking Alch Beverage In Open,,,,1,15001713CF10A,(F3),2015-02-05,Robbery Sudd Snatch No Weapon,Risk of Recidivism,5,Medium,2014-07-28,Risk of Violence,2,Low,2014-07-28,2014-07-27,2014-08-05,6,8,103,1,1\r\n10420,michael koons,michael,koons,2014-07-30,Male,1987-08-03,28,25 - 45,Caucasian,0,4,0,0,4,-151,2014-03-01 03:43:30,2014-04-30 10:35:00,14002903CF10A,,2014-03-01,151,F,arrest case no charge,1,15002512MM10A,(M1),0,2015-03-02,Battery,2015-03-02,2015-03-27,,1,15002512MM10A,(M1),2015-03-02,Battery,Risk of Recidivism,4,Low,2014-07-30,Risk of Violence,3,Low,2014-07-30,2015-03-02,2015-03-27,4,0,215,1,1\r\n10422,joseph garafolo,joseph,garafolo,2013-09-23,Male,1989-10-30,26,25 - 45,Caucasian,0,3,0,1,2,-1,2013-09-22 07:19:03,2013-10-11 09:40:58,13013338CF10A,2013-09-22,,1,F,Burglary Dwelling Assault/Batt,1,13062851TC20A,(M2),,2013-10-16,Driving License Suspended,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-23,Risk of Violence,3,Low,2013-09-23,2013-09-22,2013-10-11,2,18,23,1,1\r\n10423,brandon rogers,brandon,rogers,2014-10-30,Male,1988-02-16,28,25 - 45,Caucasian,0,2,0,0,2,0,2014-10-30 01:25:13,2014-12-11 10:13:45,14014536CF10A,2014-10-29,,1,F,Tamper With Witness/Victim/CI,1,15024702TC20A,(M2),233,2015-03-06,Driving License Suspended,2015-10-25,2015-12-11,,0,,,,,Risk of Recidivism,2,Low,2014-10-30,Risk of Violence,2,Low,2014-10-30,2014-10-30,2014-12-11,2,42,127,1,1\r\n10424,anthony wells,anthony,wells,2014-01-13,Male,1966-09-13,49,Greater than 45,African-American,0,1,0,0,2,-1,2014-01-12 07:53:09,2014-01-14 03:31:14,14000531CF10A,2014-01-12,,1,F,Neglect Child / No Bodily Harm,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-13,Risk of Violence,1,Low,2014-01-13,2014-01-12,2014-01-14,2,1,809,0,0\r\n10425,toccara mcgill,toccara,mcgill,2014-12-12,Female,1982-11-05,33,25 - 45,African-American,0,1,0,0,6,-67,2014-10-06 08:42:54,2014-10-07 08:53:29,14023910MU10A,,2014-10-08,65,M,arrest case no charge,1,15013117TC20A,(M2),,2015-02-12,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-12-12,Risk of Violence,1,Low,2014-12-12,2015-10-29,2015-12-15,6,0,62,1,1\r\n10426,jose llaguna,jose,llaguna,2013-10-29,Male,1969-04-12,47,Greater than 45,Caucasian,0,1,0,0,1,-43,2013-09-16 06:36:09,2013-10-29 10:16:35,13013138CF10A,,2013-09-17,42,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-29,Risk of Violence,1,Low,2013-10-29,2013-09-16,2013-10-29,1,0,885,0,0\r\n10427,john tokay,john,tokay,2013-03-16,Male,1959-08-29,56,Greater than 45,Caucasian,0,2,0,0,1,0,2013-03-16 03:33:00,2013-04-20 05:57:09,13003840CF10A,2013-03-16,,0,F,Possession of Hydrocodone,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-16,Risk of Violence,3,Low,2013-03-16,2013-03-16,2013-04-20,1,35,1112,0,0\r\n10428,marvin bennett,marvin,bennett,2013-01-04,Male,1962-07-10,53,Greater than 45,Caucasian,0,4,0,0,8,-1,2013-01-03 03:26:52,2013-01-08 12:29:25,13000180MM10A,2013-01-03,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-04,Risk of Violence,3,Low,2013-01-04,2013-01-16,2013-03-13,8,4,12,0,0\r\n10429,irvans brutus,irvans,brutus,2013-09-23,Male,1988-09-25,27,25 - 45,Other,0,2,0,0,2,-1,2013-09-22 07:46:53,2013-09-24 04:26:01,13018075MM10A,2013-09-22,,1,M,Criminal Mischief Damage <$200,1,13022475MM10A,(M1),0,2013-12-03,Viol Pretrial Release Dom Viol,2013-12-03,2013-12-05,,1,13017886CF10A,(F2),2013-12-28,Shoot In Occupied Building,Risk of Recidivism,2,Low,2013-09-23,Risk of Violence,3,Low,2013-09-23,2013-12-03,2013-12-05,2,1,71,1,1\r\n10430,lazaro perez,lazaro,perez,2013-12-16,Male,1981-12-10,34,25 - 45,Hispanic,0,6,0,0,17,-1,2013-12-15 11:45:23,2014-01-24 10:54:40,08023891CF10A,,2013-12-16,0,F,arrest case no charge,1,14014273CF10A,(F3),39,2014-09-14,Grand Theft in the 3rd Degree,2014-10-23,2015-09-22,,0,,,,,Risk of Recidivism,6,Medium,2013-12-16,Risk of Violence,8,High,2013-12-16,2013-12-15,2014-01-24,17,39,272,1,1\r\n10431,adam rodgers,adam,rodgers,2013-04-14,Male,1975-02-14,41,25 - 45,Caucasian,0,1,0,0,3,-1,2013-04-13 07:21:37,2013-04-14 02:55:27,13007172MM10A,2013-04-13,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-14,Risk of Violence,1,Low,2013-04-14,2013-04-13,2013-04-14,3,0,1083,0,0\r\n10432,sean martin,sean,martin,2014-01-14,Male,1970-10-24,45,Greater than 45,African-American,0,4,0,0,6,0,2014-01-14 02:25:13,2014-01-15 11:05:21,14000613CF10A,2014-01-13,,1,F,Possession Of Alprazolam,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-14,Risk of Violence,1,Low,2014-01-14,2014-01-14,2014-01-15,6,1,808,0,0\r\n10434,john lasko,john,lasko,2013-05-11,Male,1968-05-16,47,Greater than 45,Caucasian,0,2,0,0,2,,,,12000560MM20A,2012-01-03,,494,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-11,Risk of Violence,1,Low,2013-05-11,,,2,0,1056,0,0\r\n10436,briani jackson,briani,jackson,2013-01-31,Female,1994-09-02,21,Less than 25,African-American,0,10,0,0,0,0,2013-01-31 01:46:36,2013-04-19 01:09:04,13001570CF10A,2013-01-30,,1,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-01-31,Risk of Violence,9,High,2013-01-31,2013-01-31,2013-04-19,0,78,1156,0,0\r\n10437,daniel price,daniel,price,2013-12-07,Male,1988-07-20,27,25 - 45,Caucasian,0,4,0,1,2,0,2013-12-07 03:16:27,2013-12-08 08:18:55,13022663MM10A,2013-12-07,,0,M,Battery,1,14015348CF10A,(F2),0,2014-11-14,,2014-11-14,2014-11-16,,1,14007519MO10A,(MO3),2014-04-22,DOC/Engage In Fighting,Risk of Recidivism,4,Low,2013-12-07,Risk of Violence,3,Low,2013-12-07,2013-12-31,2014-01-01,2,1,24,0,1\r\n10439,daniel martins,daniel,martins,2014-02-02,Male,1994-05-03,21,Less than 25,African-American,0,3,0,0,0,-2,2014-01-31 11:42:11,2014-02-14 01:25:03,14001456CF10A,2014-01-31,,2,F,Burglary Conveyance Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-02,Risk of Violence,5,Medium,2014-02-02,2014-01-31,2014-02-14,0,12,789,0,0\r\n10440,william jarjour,william,jarjour,2013-03-28,Male,1984-08-11,31,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-27 11:38:46,2013-06-17 05:47:59,13004419CF10A,2013-03-27,,1,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-28,Risk of Violence,1,Low,2013-03-28,2013-03-27,2013-06-17,0,81,1100,0,0\r\n10443,ana mejarodriguez,ana,mejarodriguez,2013-02-13,Female,1970-06-09,45,Greater than 45,Hispanic,0,1,0,0,0,0,2013-02-13 03:47:44,2013-02-14 06:32:55,13003160MM10A,2013-02-12,,1,M,Criminal Mischief Damage <$200,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-13,Risk of Violence,1,Low,2013-02-13,2013-02-13,2013-02-14,0,1,1143,0,0\r\n10444,isaac wright,isaac,wright,2013-03-27,Male,1985-07-13,30,25 - 45,African-American,2,6,0,0,8,-1,2013-03-26 11:22:35,2013-03-27 07:44:38,13002630CF10A,,2013-03-26,1,F,arrest case no charge,1,15010198MM10A,(M1),,2015-08-25,Battery,,,,1,15010198MM10A,(M1),2015-08-25,Battery,Risk of Recidivism,6,Medium,2013-03-27,Risk of Violence,4,Low,2013-03-27,2013-03-26,2013-03-27,8,0,881,1,0\r\n10445,raul castro,raul,castro,2013-02-11,Male,1973-03-12,43,25 - 45,Hispanic,0,1,0,0,1,-1,2013-02-10 11:12:41,2013-02-11 07:13:37,13002961MM10A,2013-02-10,,1,M,DUI Property Damage/Injury,1,14042031TC20A,(M2),,2014-06-07,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-11,Risk of Violence,1,Low,2013-02-11,2014-09-26,2014-10-20,1,0,481,1,1\r\n10446,jerry morival,jerry,morival,2013-04-27,Male,1993-02-08,23,Less than 25,African-American,0,4,0,0,0,-1,2013-04-26 09:39:57,2013-04-27 01:16:31,13006036CF10A,2013-04-26,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-27,Risk of Violence,5,Medium,2013-04-27,2013-09-04,2013-11-20,0,0,130,0,0\r\n10447,luis melendez,luis,melendez,2013-01-30,Male,1963-04-20,52,Greater than 45,Caucasian,0,1,0,0,1,-1,2013-01-29 07:52:06,2013-01-30 01:36:21,13001438CF10A,2013-01-29,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-30,Risk of Violence,1,Low,2013-01-30,2013-04-22,2013-04-28,1,0,82,0,0\r\n10448,sheldon clark,sheldon,clark,2013-11-11,Male,1967-10-26,48,Greater than 45,African-American,0,4,0,0,11,-1,2013-11-10 09:03:08,2014-01-05 11:15:20,13021210MM10A,2013-11-10,,1,M,Resist/Obstruct W/O Violence,1,13022403MM10A,(M1),,2013-11-27,Extradition/Defendants,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-11,Risk of Violence,4,Low,2013-11-11,2013-11-10,2014-01-05,11,0,16,1,1\r\n10449,thajuana allen,thajuana,allen,2013-12-05,Female,1964-05-25,51,Greater than 45,African-American,0,2,0,0,3,-1,2013-12-04 09:45:14,2013-12-05 08:30:14,13016839CF10A,2013-12-04,,1,M,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-05,Risk of Violence,2,Low,2013-12-05,2013-12-04,2013-12-05,3,0,848,0,0\r\n10450,cesare casamassa,cesare,casamassa,2014-10-07,Male,1985-09-22,30,25 - 45,Caucasian,0,2,0,0,1,-4,2014-10-03 04:19:06,2014-10-04 07:18:23,14063284TC30A,,2014-10-03,4,M,arrest case no charge,1,16004526TC40A,(M2),,2016-01-04,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-10-07,Risk of Violence,2,Low,2014-10-07,2015-01-28,2015-01-28,1,0,113,0,1\r\n10451,showanda paul,showanda,paul,2014-03-06,Female,1986-11-16,29,25 - 45,African-American,0,4,0,0,5,-9,2014-02-25 11:58:58,2014-03-06 10:15:48,13017271CF10A,,2014-02-25,9,F,arrest case no charge,1,14013325MM10A,(M1),0,2014-09-05,Possess Cannabis/20 Grams Or Less,2014-09-05,2014-09-06,,0,,,,,Risk of Recidivism,4,Low,2014-03-06,Risk of Violence,5,Medium,2014-03-06,2014-09-05,2014-09-06,5,0,183,1,1\r\n10452,kerri reid-cooks,kerri,reid-cooks,2013-09-11,Female,1971-07-06,44,25 - 45,African-American,0,1,0,0,0,0,2013-09-11 04:56:33,2013-09-11 08:34:19,13012863CF10A,2013-09-11,,0,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-11,Risk of Violence,1,Low,2013-09-11,2013-09-11,2013-09-11,0,0,933,0,0\r\n10454,elton jones,elton,jones,2013-09-06,Male,1982-02-17,34,25 - 45,African-American,0,6,0,0,12,0,2013-09-06 03:59:45,2013-09-07 08:27:43,13012601CF10A,2013-09-05,,1,F,Leaving the Scene of Accident,1,13014974CF10A,(F3),0,2013-10-25,\"Poss3,4 Methylenedioxymethcath\",2013-10-25,2013-10-26,,0,,,,,Risk of Recidivism,6,Medium,2013-09-06,Risk of Violence,2,Low,2013-09-06,2013-10-25,2013-10-26,12,1,49,1,1\r\n10455,cinthya sanchez,cinthya,sanchez,2013-04-08,Female,1990-08-07,25,25 - 45,Hispanic,0,4,0,0,0,0,2013-04-08 03:27:11,2013-04-08 08:53:40,13005064CF10A,2013-04-07,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-08,Risk of Violence,3,Low,2013-04-08,2013-04-08,2013-04-08,0,0,1089,0,0\r\n10456,ladarius blue,ladarius,blue,2013-01-10,Male,1988-02-16,28,25 - 45,African-American,1,7,2,0,5,-1,2013-01-09 07:57:58,2013-01-11 09:20:23,13000364CF10A,2013-01-09,,1,F,Aggrav Battery w/Deadly Weapon,1,13035915TC10A,(M2),,2013-04-10,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-10,Risk of Violence,8,High,2013-01-10,2013-01-09,2013-01-11,5,1,90,1,1\r\n10457,cleon best,cleon,best,2013-12-19,Male,1987-10-21,28,25 - 45,African-American,0,7,0,0,9,-1,2013-12-18 03:09:12,2014-01-30 11:22:20,13017552CF10A,,2013-12-18,1,F,arrest case no charge,1,14001175MM20A,(M1),52,2014-04-14,Possess Cannabis/20 Grams Or Less,2014-06-05,2014-07-19,,0,,,,,Risk of Recidivism,7,Medium,2013-12-19,Risk of Violence,5,Medium,2013-12-19,2013-12-18,2014-01-30,9,42,116,1,1\r\n10461,craig evans,craig,evans,2013-11-02,Male,1978-05-30,37,25 - 45,Other,0,1,0,0,0,-1,2013-11-01 10:55:24,2013-11-02 01:52:41,13020650MM10A,2013-11-01,,1,M,Viol Injunct Domestic Violence,1,16001232MM10A,(M1),0,2016-02-07,Battery,2016-02-07,2016-02-09,,1,16001232MM10A,(M1),2016-02-07,Battery,Risk of Recidivism,1,Low,2013-11-02,Risk of Violence,1,Low,2013-11-02,2016-02-07,2016-02-09,0,0,827,1,0\r\n10462,kathy holmes,kathy,holmes,2013-09-10,Female,1981-11-03,34,25 - 45,Caucasian,0,3,0,0,0,-2,2013-09-08 01:02:26,2013-09-09 04:59:23,13012648CF10A,2013-09-07,,3,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-10,Risk of Violence,1,Low,2013-09-10,2013-09-08,2013-09-09,0,0,934,0,0\r\n10463,ryan debe,ryan,debe,2013-03-07,Male,1993-01-28,23,Less than 25,African-American,0,7,2,1,3,-1,2013-03-06 08:25:02,2013-03-15 10:13:53,13004527MM10A,2013-03-06,,1,M,Fail Register Vehicle,1,14008042CF10A,(M2),0,2014-06-10,Unlawful Use Of License,2014-06-10,2014-07-03,,1,14008042CF10A,(F2),2014-06-10,Agg Fleeing/Eluding High Speed,Risk of Recidivism,7,Medium,2013-03-07,Risk of Violence,9,High,2013-03-07,2013-07-13,2013-08-20,3,8,128,0,1\r\n10464,sylvia sarner,sylvia,sarner,2013-11-08,Male,1945-01-23,71,Greater than 45,Caucasian,0,1,0,0,3,-1,2013-11-07 05:56:13,2013-11-07 09:04:13,13021042MM10A,2013-11-07,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-08,Risk of Violence,1,Low,2013-11-08,2015-03-25,2015-04-01,3,0,502,0,0\r\n10467,paul slade,paul,slade,2013-12-10,Male,1970-12-27,45,Greater than 45,Caucasian,0,1,0,0,2,0,2013-12-10 01:55:28,2013-12-10 07:43:53,13022837MM10A,2013-12-10,,0,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-10,Risk of Violence,1,Low,2013-12-10,2013-12-10,2013-12-10,2,0,843,0,0\r\n10468,tenetta woodruff,tenetta,woodruff,2013-12-11,Female,1982-12-27,33,25 - 45,Native American,0,7,0,0,5,-1,2013-12-10 02:19:17,2013-12-12 03:37:12,13017062CF10A,2013-12-10,,1,F,Use of Anti-Shoplifting Device,1,14018960TC30A,(M2),455,2014-02-20,Permit Unauthorizd Person Drv,2015-05-21,2015-11-05,,0,,,,,Risk of Recidivism,7,Medium,2013-12-11,Risk of Violence,4,Low,2013-12-11,2013-12-17,2013-12-19,5,1,6,0,1\r\n10469,rabbir hossain,rabbir,hossain,2013-11-28,Male,1987-01-06,29,25 - 45,African-American,0,1,0,0,0,0,2013-11-28 06:52:48,2013-11-29 10:35:24,13022285MM10A,2013-11-28,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-28,Risk of Violence,2,Low,2013-11-28,2013-11-28,2013-11-29,0,1,855,0,0\r\n10471,velarry boyd,velarry,boyd,2013-12-26,Male,1963-09-04,52,Greater than 45,African-American,0,3,0,0,23,-220,2013-05-20 12:43:43,2013-12-11 11:30:00,08007031CF10A,,2013-05-20,220,F,arrest case no charge,1,15006763CF10A,(F3),0,2015-05-24,Grand Theft in the 3rd Degree,2015-05-24,2015-10-05,,0,,,,,Risk of Recidivism,3,Low,2013-12-26,Risk of Violence,1,Low,2013-12-26,2015-04-14,2015-04-29,23,0,474,0,1\r\n10476,charles land,charles,land,2013-08-01,Male,1990-04-12,26,25 - 45,Caucasian,0,5,0,0,1,-31,2013-07-01 03:24:16,2013-07-08 11:46:57,13001829CF10A,,2013-07-01,31,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-01,Risk of Violence,5,Medium,2013-08-01,2013-07-01,2013-07-08,1,0,974,0,0\r\n10477,luis tiburcio,luis,tiburcio,2013-08-06,Male,1985-04-04,31,25 - 45,Hispanic,0,1,0,0,0,,,,13014753MM10A,2013-08-05,,1,M,Battery,1,14083327TC40A,(M2),,2014-12-10,Expired Tag/ Reg>6 Months 2nd,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-06,Risk of Violence,2,Low,2013-08-06,,,0,0,491,1,1\r\n10479,ivan cardona,ivan,cardona,2013-09-19,Male,1979-07-08,36,25 - 45,Hispanic,0,2,0,0,5,-2,2013-09-17 08:35:34,2013-09-18 08:12:40,13013111CF10A,2013-09-17,,2,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-19,Risk of Violence,1,Low,2013-09-19,2014-11-14,2014-11-17,5,0,421,0,0\r\n10480,michael williams,michael,williams,2013-10-29,Male,1963-11-17,52,Greater than 45,African-American,0,7,0,0,17,0,2013-10-29 05:11:35,2013-11-27 09:07:51,13015108CF10A,2013-10-29,,0,F,Possession of Cocaine,1,14024391TC20A,(M2),,2014-03-29,Driving License Suspended,,,,0,,,,,Risk of Recidivism,7,Medium,2013-10-29,Risk of Violence,1,Low,2013-10-29,2013-10-29,2013-11-27,17,29,151,1,1\r\n10482,noel lopez,noel,lopez,2013-03-10,Male,1973-11-10,42,25 - 45,Hispanic,0,1,0,0,1,0,2013-03-10 12:20:11,2013-05-01 07:11:16,13006914CF10A,2013-03-09,,1,F,Aggrav Battery w/Deadly Weapon,1,13006885CF10A,(F3),,2013-05-14,Aggravated Assault W/dead Weap,,,,1,13006885CF10A,(F3),2013-05-14,Aggravated Assault W/dead Weap,Risk of Recidivism,1,Low,2013-03-10,Risk of Violence,1,Low,2013-03-10,2013-03-10,2013-05-01,1,52,65,1,1\r\n10483,nackson jean,nackson,jean,2013-03-31,Male,1994-12-29,21,Less than 25,African-American,0,5,0,0,0,-1,2013-03-30 09:16:53,2013-04-02 09:21:59,13006133MM10A,2013-03-30,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-03-31,Risk of Violence,8,High,2013-03-31,2013-03-30,2013-04-02,0,2,1097,0,0\r\n10484,brian guillen,brian,guillen,2013-09-26,Male,1986-08-31,29,25 - 45,Caucasian,0,1,0,0,2,-1,2013-09-25 12:22:48,2013-09-26 12:43:17,13013514CF10A,2013-09-25,,1,M,Fleeing or Eluding a LEO,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-26,Risk of Violence,2,Low,2013-09-26,2013-09-25,2013-09-26,2,0,918,0,0\r\n10486,daniel wick,daniel,wick,2013-12-19,Male,1962-03-24,54,Greater than 45,Caucasian,0,1,0,0,0,-4,2013-12-15 05:06:44,2013-12-16 08:59:37,13023212MM10A,2013-12-15,,4,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-19,Risk of Violence,1,Low,2013-12-19,2013-12-15,2013-12-16,0,0,834,0,0\r\n10487,john gambuzza,john,gambuzza,2013-04-08,Male,1958-03-26,58,Greater than 45,Caucasian,0,2,0,0,12,161,2013-09-16 05:05:08,2013-11-09 05:44:51,12013014CF10A,2012-09-04,,216,F,Felony Petit Theft,1,14000408MM30A,(M2),84,2014-02-17,Petit Theft,2014-05-12,2014-05-19,,0,,,,,Risk of Recidivism,2,Low,2013-04-08,Risk of Violence,1,Low,2013-04-08,2013-09-16,2013-11-09,12,0,161,0,1\r\n10489,gail thibeault,gail,thibeault,2013-08-12,Female,1993-05-19,22,Less than 25,Caucasian,0,8,0,0,1,,,,12025506MM10A,2012-12-14,,241,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-12,Risk of Violence,9,High,2013-08-12,,,1,0,963,0,0\r\n10490,jacob samp,jacob,samp,2014-06-26,Male,1988-07-17,27,25 - 45,Caucasian,0,2,0,0,0,-1,2014-06-25 09:14:22,2014-06-26 09:01:39,14008757CF10A,2014-06-25,,1,F,Possession of Cocaine,1,15005164CF10A,(F3),0,2015-04-20,Possession of Cocaine,2015-04-20,2015-06-10,,0,,,,,Risk of Recidivism,2,Low,2014-06-26,Risk of Violence,2,Low,2014-06-26,2015-04-20,2015-06-10,0,0,298,1,1\r\n10491,anthony ali,anthony,ali,2013-12-08,Male,1986-04-28,29,25 - 45,Caucasian,0,3,0,0,1,-1,2013-12-07 07:49:30,2013-12-08 01:53:16,13022674MM10A,2013-12-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-08,Risk of Violence,2,Low,2013-12-08,2013-12-07,2013-12-08,1,0,845,0,0\r\n10492,dionisqui paredes,dionisqui,paredes,2014-02-06,Female,1990-05-16,25,25 - 45,Hispanic,0,6,1,2,14,-1,2014-02-05 12:50:06,2014-02-06 09:34:44,14001660CF10A,2014-02-05,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-06,Risk of Violence,4,Low,2014-02-06,2014-02-05,2014-02-06,14,0,785,0,0\r\n10493,yves souffrant,yves,souffrant,2013-08-19,Male,1953-10-16,62,Greater than 45,Other,0,1,0,0,0,-1,2013-08-18 04:20:46,2013-08-19 07:30:44,13015662MM10A,2013-08-18,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-19,Risk of Violence,1,Low,2013-08-19,2013-08-18,2013-08-19,0,0,956,0,0\r\n10494,krystal thompson,krystal,thompson,2013-03-09,Female,1992-09-09,23,Less than 25,African-American,0,7,0,0,2,-1,2013-03-08 10:02:56,2013-03-09 12:07:09,13002740MM10A,,2013-03-08,1,M,arrest case no charge,1,14002064MM10A,(M1),,2013-10-30,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-09,Risk of Violence,5,Medium,2013-03-09,2013-03-08,2013-03-09,2,0,235,1,1\r\n10497,jimmy bessard,jimmy,bessard,2014-02-05,Male,1993-06-13,22,Less than 25,Other,0,4,0,0,1,-1,2014-02-04 04:44:40,2014-02-05 09:11:52,14001586CF10A,2014-02-04,,1,F,Grand Theft Firearm,1,15040287TC30A,(M2),,2015-05-31,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-05,Risk of Violence,5,Medium,2014-02-05,2015-03-03,2015-03-05,1,0,391,0,1\r\n10498,maura mitchell,maura,mitchell,2013-10-07,Female,1951-01-02,65,Greater than 45,Caucasian,0,1,0,0,1,-11,2013-09-26 11:26:33,2013-09-28 02:10:00,13013603CF10A,2013-09-26,,11,F,Aggravated Assault W/Dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-09-26,2013-09-28,1,0,907,0,0\r\n10499,mary villinis,mary,villinis,2014-08-06,Female,1988-04-18,28,25 - 45,Caucasian,0,9,0,0,5,275,2015-05-08 11:25:27,2015-08-26 04:43:35,14010666CF10A,2014-08-05,,1,F,Possession of Cocaine,1,14012285CF10A,(F3),241,2014-09-09,Possession of Cocaine,2015-05-08,2015-08-26,,0,,,,,Risk of Recidivism,9,High,2014-08-06,Risk of Violence,3,Low,2014-08-06,2015-05-08,2015-08-26,5,0,34,1,1\r\n10500,myron jones,myron,jones,2014-06-01,Male,1984-07-23,31,25 - 45,African-American,0,6,3,4,15,-1,2014-05-31 04:59:52,2014-08-30 05:31:10,14007540CF10A,2014-05-31,,1,F,Cruelty Toward Child,1,15002071CF10A,(F3),0,2015-02-13,Driving While License Revoked,2015-02-13,2015-02-13,,0,,,,,Risk of Recidivism,6,Medium,2014-06-01,Risk of Violence,4,Low,2014-06-01,2015-02-13,2015-02-13,15,90,257,0,1\r\n10502,john taddeo,john,taddeo,2013-10-24,Male,1984-12-18,31,25 - 45,Caucasian,0,1,0,0,0,0,2013-10-24 05:17:15,2013-10-25 01:21:44,13014882CF10A,2013-10-24,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-10-24,Risk of Violence,1,Low,2013-10-24,2013-10-24,2013-10-25,0,1,890,0,0\r\n10505,adrian grimes,adrian,grimes,2013-05-14,Male,1994-12-03,21,Less than 25,African-American,0,9,0,0,0,-1,2013-05-13 01:34:59,2013-05-18 02:09:44,13006839CF10A,2013-05-13,,1,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-05-14,Risk of Violence,10,High,2013-05-14,2013-06-07,2013-06-27,0,4,24,0,0\r\n10506,fernando mayer,fernando,mayer,2013-03-20,Male,1988-06-29,27,25 - 45,African-American,0,7,2,0,17,0,2013-03-20 06:06:03,2013-03-21 09:33:58,13004042CF10A,2013-03-20,,0,F,Driving While License Revoked,1,13016473CF10A,(F3),,2013-11-18,Retaliate Wit/Vict No Injury,,,,1,13016473CF10A,(F2),2013-11-26,Vehicular Homicide,Risk of Recidivism,7,Medium,2013-03-20,Risk of Violence,4,Low,2013-03-20,2013-03-20,2013-03-21,17,1,243,1,1\r\n10507,nelson guerrero,nelson,guerrero,2013-05-05,Male,1982-12-08,33,25 - 45,Caucasian,0,2,0,0,1,-1,2013-05-04 05:57:06,2013-05-24 09:08:46,13006406CF10A,2013-05-04,,1,F,Aggravated Assault W/dead Weap,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-05,Risk of Violence,5,Medium,2013-05-05,2013-05-04,2013-05-24,1,19,1062,0,0\r\n10509,jameal adderley,jameal,adderley,2013-03-12,Male,1990-08-05,25,25 - 45,African-American,0,7,1,0,3,-1,2013-03-11 05:03:58,2013-03-12 10:19:28,13003598CF10A,2013-03-11,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-12,Risk of Violence,6,Medium,2013-03-12,2013-03-11,2013-03-12,3,0,1116,0,0\r\n10510,nelson bauza,nelson,bauza,2013-05-01,Male,1976-10-11,39,25 - 45,Caucasian,0,1,0,0,1,-1,2013-04-30 08:53:59,2013-05-01 06:45:37,13006185CF10A,2013-04-30,,1,F,Possession Of Anabolic Steroid,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-05-01,Risk of Violence,1,Low,2013-05-01,2013-04-30,2013-05-01,1,0,1066,0,0\r\n10511,theodis presmy,theodis,presmy,2013-05-16,Male,1986-06-14,29,25 - 45,African-American,0,9,0,0,8,0,2013-05-16 02:40:09,2013-05-17 08:22:55,13009478MM10A,2013-05-15,,1,M,Possess Cannabis/20 Grams Or Less,1,13013561CF10A,(F3),0,2013-09-26,Possession of Cocaine,2013-09-26,2013-09-27,,1,16001464MM10A,(M1),2016-02-15,Battery,Risk of Recidivism,9,High,2013-05-16,Risk of Violence,6,Medium,2013-05-16,2013-09-26,2013-09-27,8,1,133,1,1\r\n10512,marvin slayden,marvin,slayden,2014-08-06,Male,1988-10-01,27,25 - 45,African-American,0,10,0,0,15,-1,2014-08-05 04:53:05,2014-09-23 01:03:33,14010634CF10A,2014-08-05,,1,F,Battery on Law Enforc Officer,1,14002736MM20A,(M1),11,2014-09-25,Trespass Other Struct/Conve,2014-10-06,2014-11-18,,0,,,,,Risk of Recidivism,10,High,2014-08-06,Risk of Violence,5,Medium,2014-08-06,2014-08-05,2014-09-23,15,48,50,1,1\r\n10513,jennifer crowe,jennifer,crowe,2013-07-02,Female,1974-03-03,42,25 - 45,Caucasian,0,1,0,0,0,-3,2013-06-29 10:35:16,2013-07-01 02:17:11,13009181CF10A,2013-06-29,,3,F,Child Abuse,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-07-02,Risk of Violence,1,Low,2013-07-02,2013-06-29,2013-07-01,0,0,1004,0,0\r\n10514,justin reynoso,justin,reynoso,2014-03-18,Male,1995-03-14,21,Less than 25,Caucasian,0,9,0,0,0,-1,2014-03-17 12:36:30,2014-03-18 01:26:47,14003755CF10A,2014-03-17,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-03-18,Risk of Violence,8,High,2014-03-18,2014-03-17,2014-03-18,0,0,745,0,0\r\n10518,carlos butler,carlos,butler,2013-02-18,Male,1988-05-30,27,25 - 45,African-American,0,5,0,1,5,-1,2013-02-17 01:48:40,2013-02-23 08:59:58,13007034TC10A,2013-02-17,,1,M,Susp Drivers Lic 1st Offense,1,14020678TC10A,(M1),0,2014-06-03,Opert With Susp DL 2nd Offens,2014-06-03,2014-06-05,,0,,,,,Risk of Recidivism,5,Medium,2013-02-18,Risk of Violence,3,Low,2013-02-18,2014-06-03,2014-06-05,5,5,470,1,1\r\n10519,gartrell tolbert,gartrell,tolbert,2014-08-25,Male,1979-06-28,36,25 - 45,African-American,0,9,0,0,2,-1,2014-08-24 05:47:08,2014-10-09 09:10:14,14012720MM10A,2014-08-24,,1,M,Battery,1,14017397MM10A,(M1),0,2014-12-10,Battery,2014-12-10,2015-04-27,,1,14017397MM10A,(M1),2014-12-10,Battery,Risk of Recidivism,9,High,2014-08-25,Risk of Violence,8,High,2014-08-25,2014-12-10,2015-04-27,2,45,107,1,1\r\n10520,jennifer hyacinth,jennifer,hyacinth,2014-03-18,Female,1991-08-20,24,Less than 25,African-American,0,4,0,0,0,-1,2014-03-17 08:29:05,2014-03-18 07:50:54,14003764CF10A,2014-03-17,,1,F,Uttering a Forged Instrument,1,15002169MM10A,(M1),0,2015-02-22,Temporary Tag Violation,2015-02-22,2015-02-22,,1,15004034CF10A,(F3),2015-03-26,Aggravated Assault W/Dead Weap,Risk of Recidivism,4,Low,2014-03-18,Risk of Violence,3,Low,2014-03-18,2015-02-22,2015-02-22,0,0,341,0,1\r\n10522,judith guadagino,judith,guadagino,2014-01-27,Female,1949-02-12,67,Greater than 45,Caucasian,0,1,0,0,0,-3,2014-01-24 10:44:46,2014-01-25 04:52:46,14002829MU10A,2014-01-24,,3,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-27,Risk of Violence,1,Low,2014-01-27,2014-01-24,2014-01-25,0,0,795,0,0\r\n10523,cleon grant,cleon,grant,2013-05-04,Male,1987-03-25,29,25 - 45,Other,0,2,0,0,4,-1,2013-05-03 05:09:54,2013-05-06 08:52:35,13006359CF10A,2013-05-03,,1,F,Throw Deadly Missile Into Veh,1,15001272CF10A,(M2),0,2015-01-27,Culpable Negligence,2015-01-27,2015-01-30,,1,15001272CF10A,(F2),2015-01-27,Agg Battery Grt/Bod/Harm,Risk of Recidivism,2,Low,2013-05-04,Risk of Violence,3,Low,2013-05-04,2015-01-27,2015-01-30,4,2,633,1,1\r\n10524,andrea jordan,andrea,jordan,2013-07-11,Female,1988-09-15,27,25 - 45,African-American,0,6,0,0,2,-40,2013-06-01 07:45:23,2013-06-10 10:44:15,13008532CF10A,2013-06-01,,40,F,Aggravated Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-07-11,Risk of Violence,4,Low,2013-07-11,2013-06-01,2013-06-10,2,0,995,0,0\r\n10525,jamar burton,jamar,burton,2013-05-17,Male,1976-12-15,39,25 - 45,African-American,0,4,0,0,3,-1,2013-05-16 07:50:50,2013-06-19 12:42:02,10001925CF10B,,2013-05-17,0,F,arrest case no charge,1,14013846MM10A,(M1),0,2014-09-17,Battery,2014-09-17,2014-10-29,,1,14013846MM10A,(M1),2014-09-17,Battery,Risk of Recidivism,4,Low,2013-05-17,Risk of Violence,3,Low,2013-05-17,2014-09-17,2014-10-29,3,33,488,1,1\r\n10526,michael holloway,michael,holloway,2013-03-15,Male,1974-01-08,42,25 - 45,Caucasian,0,6,0,0,5,84,2013-06-07 06:19:20,2013-06-08 05:43:44,12006199CF10A,,2013-03-14,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-15,Risk of Violence,2,Low,2013-03-15,2013-06-07,2013-06-08,5,0,84,0,0\r\n10528,flavio silva,flavio,silva,2013-06-04,Male,1974-08-02,41,25 - 45,Hispanic,0,1,0,0,1,-4,2013-05-31 11:16:29,2013-06-01 08:01:12,13010461MM10A,2013-05-31,,4,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-04,Risk of Violence,1,Low,2013-06-04,2013-05-31,2013-06-01,1,0,1032,0,0\r\n10530,cobie tai,cobie,tai,2013-08-03,Female,1990-05-12,25,25 - 45,African-American,0,3,0,0,1,-1,2013-08-02 02:03:01,2013-08-06 05:30:27,13010803CF10A,,2013-08-02,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-03,Risk of Violence,4,Low,2013-08-03,2013-08-02,2013-08-06,1,3,972,0,0\r\n10531,sean gibboney,sean,gibboney,2013-03-07,Male,1975-11-10,40,25 - 45,Caucasian,0,8,0,0,8,-28,2013-02-07 07:35:58,2013-02-14 03:13:26,13001915CF10A,2013-02-07,,28,F,Possession of Oxycodone,1,13027865TC10A,(M2),0,2013-07-14,Fail To Obey Police Officer,2013-07-14,2013-07-15,,0,,,,,Risk of Recidivism,8,High,2013-03-07,Risk of Violence,9,High,2013-03-07,2013-07-14,2013-07-15,8,0,129,1,1\r\n10532,johnny ross,johnny,ross,2014-02-19,Male,1979-01-24,37,25 - 45,African-American,0,4,0,0,4,-1,2014-02-18 02:47:15,2014-02-19 07:33:00,14002813MM10A,2014-02-18,,1,M,Battery,1,14012850MM10A,(M1),0,2014-08-27,Battery,2014-08-27,2014-10-16,,1,14012850MM10A,(M1),2014-08-27,Battery,Risk of Recidivism,4,Low,2014-02-19,Risk of Violence,4,Low,2014-02-19,2014-08-27,2014-10-16,4,0,189,1,1\r\n10533,walkina mcclary,walkina,mcclary,2013-03-31,Female,1974-02-16,42,25 - 45,African-American,0,8,0,0,8,0,2013-03-31 08:02:29,2013-04-01 10:07:00,13002636CF10A,,2013-03-31,0,F,arrest case no charge,1,13010963CF10A,(F3),0,2013-08-05,Possession of Cocaine,2013-08-05,2013-10-23,,0,,,,,Risk of Recidivism,8,High,2013-03-31,Risk of Violence,6,Medium,2013-03-31,2013-08-05,2013-10-23,8,1,127,1,1\r\n10535,danielle ervin,danielle,ervin,2014-03-05,Female,1988-05-16,27,25 - 45,African-American,0,6,0,0,12,-61,2014-01-03 07:42:11,2014-01-04 03:41:33,14000150MM10A,2014-01-03,,61,M,Petit Theft,1,15008317CF10A,(F3),0,2015-06-28,Driving While License Revoked,2015-06-28,2015-06-30,,0,,,,,Risk of Recidivism,6,Medium,2014-03-05,Risk of Violence,4,Low,2014-03-05,2015-06-28,2015-06-30,12,0,480,1,1\r\n10536,velon owens,velon,owens,2013-09-08,Male,1990-01-09,26,25 - 45,African-American,0,9,0,0,8,-1,2013-09-07 06:41:49,2013-09-08 06:43:13,13012676CF10A,2013-09-07,,1,F,\"Poss3,4 Methylenedioxymethcath\",1,14005801CF10A,(M1),0,2014-04-26,Present Proof of Invalid Insur,2014-04-26,2014-05-29,,0,,,,,Risk of Recidivism,9,High,2013-09-08,Risk of Violence,6,Medium,2013-09-08,2014-04-26,2014-05-29,8,0,230,1,1\r\n10538,michael williams,michael,williams,2013-01-26,Male,1993-01-15,23,Less than 25,African-American,0,6,0,0,1,0,2013-01-26 03:59:40,2013-07-23 05:22:24,13001867MM10A,2013-01-26,,0,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-26,Risk of Violence,6,Medium,2013-01-26,2013-01-26,2013-07-23,1,178,1161,0,0\r\n10539,jayson velazquez,jayson,velazquez,2013-01-04,Male,1983-11-27,32,25 - 45,Caucasian,0,5,0,0,8,31,2013-02-04 02:21:57,2013-02-05 03:52:27,12003937MM10A,2012-02-26,,313,M,Battery,1,13002552MM10A,(M1),0,2013-02-04,Resist/Obstruct W/O Violence,2013-02-04,2013-02-05,,0,,,,,Risk of Recidivism,5,Medium,2013-01-04,Risk of Violence,4,Low,2013-01-04,2013-02-04,2013-02-05,8,0,31,1,1\r\n10540,courtney knoche,courtney,knoche,2014-11-22,Female,1984-04-30,31,25 - 45,Caucasian,0,1,0,0,1,-1,2014-11-21 07:23:57,2014-11-22 12:08:42,14016653MM10A,2014-11-21,,1,M,Battery,1,15010813MM10A,(M1),1,2015-10-14,Battery,2015-10-15,2015-10-16,,1,15010813MM10A,(M1),2015-10-14,Battery,Risk of Recidivism,1,Low,2014-11-22,Risk of Violence,1,Low,2014-11-22,2015-10-15,2015-10-16,1,0,326,1,1\r\n10541,erik posada,erik,posada,2014-07-30,Male,1995-10-21,20,Less than 25,Caucasian,0,5,0,0,1,-70,2014-05-21 01:46:59,2014-05-23 11:04:06,14007072CF10A,2014-05-21,,70,F,Burglary Conveyance Unoccup,1,14016117CF10A,(M1),-1,2014-12-02,,2014-12-01,2014-12-05,,0,,,,,Risk of Recidivism,5,Medium,2014-07-30,Risk of Violence,6,Medium,2014-07-30,2014-12-01,2014-12-05,1,0,125,1,1\r\n10542,elias losada,elias,losada,2013-08-01,Male,1989-12-20,26,25 - 45,Caucasian,0,7,0,0,4,-1,2013-07-31 07:13:26,2013-08-02 08:05:00,13010698CF10A,2013-07-31,,1,F,\"Deliver 3,4 Methylenediox\",1,15048877TC30A,(M2),,2015-06-28,Oper Motorcycle W/O Valid DL,,,,0,,,,,Risk of Recidivism,7,Medium,2013-08-01,Risk of Violence,3,Low,2013-08-01,2013-07-31,2013-08-02,4,1,696,1,1\r\n10543,michael black,michael,black,2014-12-09,Male,1964-06-23,51,Greater than 45,Caucasian,0,1,0,0,2,0,2014-12-09 03:37:49,2014-12-09 08:54:53,14017341MM10A,2014-12-09,,0,M,Viol Injunct Domestic Violence,1,14017550MM10A,(M1),0,2014-12-13,Viol Pretrial Release Dom Viol,2014-12-13,2014-12-14,,0,,,,,Risk of Recidivism,1,Low,2014-12-09,Risk of Violence,1,Low,2014-12-09,2014-12-13,2014-12-14,2,0,4,1,1\r\n10544,bruce gerson,bruce,gerson,2013-08-16,Male,1949-04-04,67,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-08-15 12:10:13,2013-08-16 09:07:07,13015495MM10A,2013-08-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-16,Risk of Violence,1,Low,2013-08-16,2013-08-15,2013-08-16,0,0,959,0,0\r\n10545,neil lynch,neil,lynch,2013-05-11,Male,1989-01-29,27,25 - 45,African-American,0,7,0,0,10,-1,2013-05-10 10:08:03,2013-05-11 09:53:27,13006741CF10A,2013-05-10,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-11,Risk of Violence,3,Low,2013-05-11,2013-05-10,2013-05-11,10,0,1056,0,0\r\n10546,nikole curiel,nikole,curiel,2013-09-08,Female,1989-12-13,26,25 - 45,Caucasian,0,6,0,0,1,-1,2013-09-07 04:24:40,2013-09-08 06:08:45,13017059MM10A,2013-09-07,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-08,Risk of Violence,5,Medium,2013-09-08,2013-09-07,2013-09-08,1,0,936,0,0\r\n10547,leon jackson,leon,jackson,2013-01-06,Male,1961-01-18,55,Greater than 45,African-American,0,5,0,0,3,-1,2013-01-05 10:12:31,2013-03-16 05:38:20,12012719CO10A,,2012-08-17,142,M,arrest case no charge,1,14002995MM40A,(M1),15,2014-07-04,Trespass Other Struct/Conve,2014-07-19,2014-07-21,,0,,,,,Risk of Recidivism,5,Medium,2013-01-06,Risk of Violence,3,Low,2013-01-06,2014-05-11,2014-05-27,3,69,490,0,1\r\n10548,patrick doerfor,patrick,doerfor,2014-02-27,Male,1965-03-17,51,Greater than 45,Caucasian,0,1,0,0,1,,,,14000988CF10A,2014-01-23,,35,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-27,Risk of Violence,1,Low,2014-02-27,,,1,0,764,0,0\r\n10549,okeel prince-newland,okeel,prince-newland,2013-03-25,Male,1984-07-25,31,25 - 45,Other,0,3,0,0,0,-1,2013-03-24 12:02:43,2013-05-31 02:10:00,13004254CF10A,2013-03-23,,2,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-25,Risk of Violence,3,Low,2013-03-25,2013-03-24,2013-05-31,0,67,1103,0,0\r\n10550,daniel motta,daniel,motta,2013-03-31,Male,1987-12-30,28,25 - 45,Caucasian,0,4,0,0,0,-1,2013-03-30 09:03:05,2013-03-31 07:04:47,13006142MM10A,2013-03-30,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-31,Risk of Violence,5,Medium,2013-03-31,2013-03-30,2013-03-31,0,0,1097,0,0\r\n10552,monica churchill,monica,churchill,2013-01-18,Female,1964-10-05,51,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-17 04:06:24,2013-01-17 08:06:48,13001196MM10A,2013-01-17,,1,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-18,Risk of Violence,1,Low,2013-01-18,2014-02-07,2014-02-07,0,0,385,0,0\r\n10553,travis spencer,travis,spencer,2014-09-20,Male,1987-07-16,28,25 - 45,African-American,0,8,0,0,13,-1,2014-09-19 07:14:30,2014-09-21 03:09:00,14012703CF10A,,2014-09-19,1,F,arrest case no charge,1,15003138MM20A,(M2),,2015-12-09,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2014-09-20,Risk of Violence,3,Low,2014-09-20,2014-09-19,2014-09-21,13,1,445,1,1\r\n10554,richard henry,richard,henry,2013-02-15,Male,1994-02-09,22,Less than 25,African-American,0,7,0,0,0,-1,2013-02-14 11:00:19,2013-02-16 01:39:44,13002332CF10A,2013-02-14,,1,F,Exhibition Weapon School Prop,1,13002682CF10A,(F3),0,2013-02-21,Grand Theft in the 3rd Degree,2013-02-21,2013-05-01,,0,,,,,Risk of Recidivism,7,Medium,2013-02-15,Risk of Violence,6,Medium,2013-02-15,2013-02-21,2013-05-01,0,1,6,1,1\r\n10555,eugene previl,eugene,previl,2013-04-29,Male,1989-09-01,26,25 - 45,African-American,0,3,0,0,2,-1,2013-04-28 06:09:49,2013-04-30 09:02:00,13006109CF10A,2013-04-28,,1,F,Pos Cannabis W/Intent Sel/Del,1,13009482MM10A,(M1),0,2013-05-16,Trespass After Warning,2013-05-16,2013-05-17,,0,,,,,Risk of Recidivism,3,Low,2013-04-29,Risk of Violence,4,Low,2013-04-29,2013-05-16,2013-05-17,2,1,17,1,1\r\n10556,britney edwards,britney,edwards,2014-03-13,Female,1988-05-13,27,25 - 45,African-American,0,3,1,0,1,-1,2014-03-12 06:56:34,2014-03-14 09:40:21,14003519CF10A,2014-03-12,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-03-13,Risk of Violence,2,Low,2014-03-13,2014-03-12,2014-03-14,1,1,750,0,0\r\n10557,carl toussaint,carl,toussaint,2013-01-18,Male,1983-09-07,32,25 - 45,African-American,0,4,0,0,5,-1,2013-01-17 09:42:38,2013-01-18 10:00:00,12012807MM10A,,2013-01-17,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-01-18,Risk of Violence,4,Low,2013-01-18,2013-03-15,2013-04-01,5,0,56,0,0\r\n10558,reggie williams,reggie,williams,2013-04-01,Male,1979-10-26,36,25 - 45,African-American,0,6,0,0,11,-1,2013-03-31 08:52:32,2013-05-06 08:53:32,13004608CF10A,2013-03-31,,1,F,Possession of Cocaine,1,14005767CF10A,(F3),0,2014-04-25,Tampering With Physical Evidence,2014-04-25,2014-07-22,,0,,,,,Risk of Recidivism,6,Medium,2013-04-01,Risk of Violence,4,Low,2013-04-01,2014-04-25,2014-07-22,11,35,389,1,1\r\n10559,sandy harrell,sandy,harrell,2013-11-20,Male,1989-04-08,27,25 - 45,African-American,0,6,0,0,4,-1,2013-11-19 12:22:07,2013-11-21 04:24:00,13021769MM10A,2013-11-19,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-11-20,Risk of Violence,6,Medium,2013-11-20,2013-11-19,2013-11-21,4,1,863,0,0\r\n10560,david kelley,david,kelley,2014-05-08,Male,1974-08-21,41,25 - 45,Caucasian,0,1,0,0,1,-1,2014-05-07 08:18:13,2014-05-08 09:01:25,14006390CF10A,2014-05-07,,1,F,Aggrav Battery w/Deadly Weapon,1,15008291CF10A,(F3),1,2015-06-26,Tampering With Physical Evidence,2015-06-27,2015-06-28,,1,15008291CF10A,(F2),2015-06-26,Agg Fleeing/Eluding High Speed,Risk of Recidivism,1,Low,2014-05-08,Risk of Violence,1,Low,2014-05-08,2015-06-27,2015-06-28,1,0,414,1,1\r\n10561,rodney toussaint,rodney,toussaint,2013-10-21,Male,1991-09-25,24,Less than 25,African-American,0,10,3,0,12,-1,2013-10-20 06:12:56,2013-11-06 09:00:54,13019829MM10A,2013-10-20,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-10-21,Risk of Violence,9,High,2013-10-21,2013-10-20,2013-11-06,12,16,893,0,0\r\n10563,michael fleming,michael,fleming,2013-02-28,Male,1954-07-12,61,Greater than 45,African-American,0,3,0,0,11,-1,2013-02-27 05:28:41,2013-02-28 08:19:46,13002995CF10A,2013-02-27,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-28,Risk of Violence,3,Low,2013-02-28,2013-02-27,2013-02-28,11,0,1128,0,0\r\n10567,jessica scirghio,jessica,scirghio,2013-11-04,Female,1986-11-07,29,25 - 45,Caucasian,0,3,0,0,3,0,2013-11-04 02:30:36,2013-11-04 08:20:56,13013922CF10A,,2013-11-04,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-04,Risk of Violence,2,Low,2013-11-04,2014-04-28,2014-04-29,3,0,175,0,0\r\n10568,neil hidalgo,neil,hidalgo,2014-01-24,Male,1981-07-09,34,25 - 45,Caucasian,0,4,0,0,11,-1,2014-01-23 01:51:15,2014-01-24 11:07:09,14000977CF10A,2014-01-23,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-24,Risk of Violence,3,Low,2014-01-24,2014-01-23,2014-01-24,11,0,798,0,0\r\n10570,michael assarian,michael,assarian,2013-07-22,Male,1970-11-22,45,Greater than 45,Caucasian,0,3,0,0,0,-5,2013-07-17 08:06:47,2013-07-18 09:00:52,13010028CF10A,2013-07-17,,5,F,Possession Of Heroin,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-07-22,Risk of Violence,1,Low,2013-07-22,2013-07-17,2013-07-18,0,0,984,0,0\r\n10571,robert brack,robert,brack,2013-02-20,Male,1994-06-04,21,Less than 25,Caucasian,0,10,2,1,3,-1,2013-02-19 03:15:34,2013-02-20 07:04:27,13002513CF10A,2013-02-19,,1,F,Poss Contr Subst W/o Prescript,1,13006973CF10A,(M1),786,2013-05-14,Possess Drug Paraphernalia,2015-07-09,2015-08-24,,0,,,,,Risk of Recidivism,10,High,2013-02-20,Risk of Violence,6,Medium,2013-02-20,2013-02-28,2013-03-01,3,0,8,0,1\r\n10572,timothy barnes,timothy,barnes,2013-09-14,Male,1987-06-29,28,25 - 45,African-American,0,8,0,0,20,0,2013-09-14 04:18:13,2013-09-14 12:54:47,13012995CF10A,2013-09-14,,0,F,Driving While License Revoked,1,14079313TC30A,(M2),,2014-09-17,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,8,High,2013-09-14,Risk of Violence,3,Low,2013-09-14,2014-01-17,2014-03-30,20,0,125,0,1\r\n10573,clayton mitchell,clayton,mitchell,2014-01-02,Male,1992-10-11,23,Less than 25,African-American,2,6,0,0,3,,,,12016646CF10A,2012-11-13,,415,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-01-02,Risk of Violence,9,High,2014-01-02,,,3,0,820,0,0\r\n10575,jason hedges,jason,hedges,2013-10-04,Male,1985-01-08,31,25 - 45,Caucasian,0,4,0,0,6,-1,2013-10-03 02:21:05,2013-10-06 04:02:00,13013809CF10A,,2013-10-03,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-04,Risk of Violence,3,Low,2013-10-04,2013-10-03,2013-10-06,6,2,910,0,0\r\n10577,lance bonsignore,lance,bonsignore,2014-06-13,Male,1956-11-04,59,Greater than 45,Caucasian,0,2,0,0,0,-1,2014-06-12 12:34:37,2014-06-13 10:47:47,14009339MM10A,2014-06-11,,2,M,Viol Injunct Domestic Violence,1,16005668TC40A,(M2),,2016-01-15,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-06-13,Risk of Violence,2,Low,2014-06-13,2014-06-12,2014-06-13,0,0,581,1,1\r\n10579,todd carter,todd,carter,2013-11-11,Male,1975-09-15,40,25 - 45,African-American,0,4,0,0,8,-1,2013-11-10 12:35:07,2013-11-11 07:50:50,13021206MM10A,2013-11-10,,1,M,Battery,1,14000750MM20A,(M2),,2014-02-21,Expired Tag/ Reg>6 Months 2nd,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-11,Risk of Violence,5,Medium,2013-11-11,2014-07-15,2014-07-18,8,0,102,1,1\r\n10580,kayla vantreese,kayla,vantreese,2013-08-12,Female,1994-01-27,22,Less than 25,Caucasian,0,8,0,1,1,-1,2013-08-11 11:56:08,2013-08-29 09:24:17,13015158MM10A,2013-08-11,,1,M,Viol Pretrial Release Dom Viol,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-08-12,Risk of Violence,7,Medium,2013-08-12,2013-08-11,2013-08-29,1,17,963,0,0\r\n10581,john gabriel,john,gabriel,2013-03-30,Male,1994-12-09,21,Less than 25,African-American,0,4,1,0,1,-1,2013-03-29 03:55:07,2013-03-30 08:07:03,13004555CF10A,2013-03-29,,1,M,Burglary Unoccupied Dwelling,1,13041941TC10A,(M2),91,2013-06-17,Leave Acc/Attend Veh/More $50,2013-09-16,2013-09-16,,0,,,,,Risk of Recidivism,4,Low,2013-03-30,Risk of Violence,7,Medium,2013-03-30,2015-11-22,2015-11-22,1,0,79,1,1\r\n10582,ralante archibald,ralante,archibald,2013-12-12,Male,1991-08-27,24,Less than 25,African-American,1,6,0,1,1,-230,2013-04-26 12:57:02,2013-11-23 02:27:54,09017907CF10A,,2013-04-26,230,F,arrest case no charge,1,14011383CF10A,(M2),0,2014-08-20,Trespass Struct/Conveyance,2014-08-20,2015-10-15,,0,,,,,Risk of Recidivism,6,Medium,2013-12-12,Risk of Violence,7,Medium,2013-12-12,2014-08-20,2015-10-15,1,0,251,1,1\r\n10584,christopher cordell,christopher,cordell,2014-03-04,Male,1990-04-22,25,25 - 45,Caucasian,0,5,0,0,2,-25,2014-02-07 04:15:56,2014-02-08 09:37:50,14001752CF10A,2014-02-07,,25,F,Possession of Cocaine,1,15010272CF10A,(F3),0,2015-08-10,False Ownership Info/Pawn Item,2015-08-10,2015-12-01,,0,,,,,Risk of Recidivism,5,Medium,2014-03-04,Risk of Violence,5,Medium,2014-03-04,2014-06-24,2014-06-29,2,0,112,0,1\r\n10585,latavyia tucker,latavyia,tucker,2013-10-02,Female,1990-11-23,25,25 - 45,African-American,0,5,0,0,1,-1,2013-10-01 08:54:04,2013-10-02 09:14:11,13013783CF10A,2013-10-01,,1,F,Aggrav Battery w/Deadly Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-10-02,Risk of Violence,6,Medium,2013-10-02,2013-10-01,2013-10-02,1,0,912,0,0\r\n10586,brik warren,brik,warren,2013-01-16,Male,1968-09-03,47,Greater than 45,African-American,0,5,0,0,3,0,2013-01-16 02:54:32,2013-01-23 10:34:31,13001097MM10A,2013-01-15,,1,M,Expired DL More Than 6 Months,1,13022709TC20A,(M2),,2013-04-09,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-16,Risk of Violence,6,Medium,2013-01-16,2013-01-16,2013-01-23,3,7,83,1,1\r\n10588,sergio santibanez-cruz,sergio,santibanez-cruz,2013-03-13,Male,1990-09-08,25,25 - 45,Hispanic,0,3,0,0,1,-43,2013-01-29 09:34:56,2013-02-01 12:17:31,13001439CF10A,2013-01-29,,43,F,Purchase Of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-13,Risk of Violence,3,Low,2013-03-13,2013-01-29,2013-02-01,1,0,1115,0,0\r\n10589,malcolm robinson,malcolm,robinson,2014-08-06,Male,1994-09-25,21,Less than 25,African-American,0,5,0,0,5,-1,2014-08-05 01:15:29,2014-08-06 01:58:07,14011836MM10A,2014-08-05,,1,M,Battery,1,16004922TC10A,(M2),0,2016-02-27,Susp Drivers Lic 1st Offense,2016-02-27,2016-02-27,,0,,,,,Risk of Recidivism,5,Medium,2014-08-06,Risk of Violence,6,Medium,2014-08-06,2016-02-27,2016-02-27,5,0,570,0,1\r\n10590,seth jackson,seth,jackson,2013-12-19,Male,1987-01-19,29,25 - 45,African-American,0,5,0,0,1,-1,2013-12-18 02:09:10,2013-12-21 04:37:06,12010013CF10A,,2013-12-18,1,F,arrest case no charge,1,14007386MM10A,(M1),0,2014-05-04,Battery,2014-05-04,2014-05-05,,1,14007386MM10A,(M1),2014-05-04,Battery,Risk of Recidivism,5,Medium,2013-12-19,Risk of Violence,4,Low,2013-12-19,2014-05-04,2014-05-05,1,2,136,1,1\r\n10591,john dunn,john,dunn,2014-02-18,Male,1975-06-24,40,25 - 45,Caucasian,0,5,0,0,4,-1,2014-02-17 06:02:18,2014-02-18 01:20:42,14002251CF10A,2014-02-17,,1,F,Grand Theft in the 3rd Degree,1,15018227TC20A,(M2),,2015-03-04,Unlaw LicTag/Sticker Attach,,,,0,,,,,Risk of Recidivism,5,Medium,2014-02-18,Risk of Violence,4,Low,2014-02-18,2014-11-14,2014-11-18,4,0,269,0,1\r\n10594,yanielys garcia-fernandez,yanielys,garcia-fernandez,2013-03-25,Female,1983-08-01,32,25 - 45,Hispanic,0,2,0,0,1,-3,2013-03-22 08:37:29,2013-03-23 07:50:59,13001523CF10A,,2013-03-22,3,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-25,Risk of Violence,1,Low,2013-03-25,2013-03-22,2013-03-23,1,0,1103,0,0\r\n10595,massiel espinosa,massiel,espinosa,2013-08-25,Male,1977-03-27,39,25 - 45,Caucasian,0,1,0,0,0,-1,2013-08-24 11:36:32,2013-08-25 08:34:53,13016206MM10A,2013-08-24,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-08-25,Risk of Violence,1,Low,2013-08-25,2013-08-24,2013-08-25,0,0,950,0,0\r\n10596,omar baptiste,omar,baptiste,2013-10-16,Male,1993-06-17,22,Less than 25,Other,0,3,0,1,3,-1,2013-10-15 02:41:31,2013-10-17 04:50:35,13014443CF10A,,2013-10-15,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-16,Risk of Violence,5,Medium,2013-10-16,2014-11-26,2014-12-11,3,1,406,0,0\r\n10599,takeyma doe,takeyma,doe,2014-01-05,Female,1985-09-11,30,25 - 45,African-American,0,5,0,0,0,-1,2014-01-04 01:36:19,2014-01-05 01:34:12,14000166MM10A,2014-01-04,,1,M,Battery,1,15001302MM30A,(M1),,2015-08-07,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-05,Risk of Violence,2,Low,2014-01-05,2014-01-04,2014-01-05,0,0,579,1,1\r\n10604,fenamarie brooks,fenamarie,brooks,2014-01-17,Female,1993-12-01,22,Less than 25,Caucasian,0,6,0,0,2,-31,2013-12-17 12:53:16,2013-12-18 02:19:25,13017222CF10A,,2013-12-17,31,F,arrest case no charge,1,14012053MM10A,(M1),1,2014-08-08,Battery,2014-08-09,2014-08-10,,1,14012053MM10A,(M1),2014-08-08,Battery,Risk of Recidivism,6,Medium,2014-01-17,Risk of Violence,7,Medium,2014-01-17,2014-04-07,2014-04-08,2,0,80,0,1\r\n10606,jesse hartsell,jesse,hartsell,2014-04-01,Male,1990-06-05,25,25 - 45,Caucasian,0,9,0,0,0,-1,2014-03-31 11:29:30,2014-04-01 01:23:09,14005523MM10A,2014-03-31,,1,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-04-01,Risk of Violence,6,Medium,2014-04-01,2014-03-31,2014-04-01,0,0,731,0,0\r\n10607,samantha zachary,samantha,zachary,2013-12-27,Female,1994-11-07,21,Less than 25,Caucasian,0,5,0,0,0,-1,2013-12-26 11:42:36,2013-12-28 12:15:37,13023819MM10A,2013-12-26,,1,M,Battery,1,14000645MM10A,(M1),0,2014-01-13,Viol Injunction Protect Dom Vi,2014-01-13,2014-01-14,,0,,,,,Risk of Recidivism,5,Medium,2013-12-27,Risk of Violence,6,Medium,2013-12-27,2014-01-13,2014-01-14,0,1,17,1,1\r\n10608,alexsis perkins,alexsis,perkins,2013-12-28,Male,1990-12-17,25,25 - 45,Caucasian,0,2,0,0,0,-1,2013-12-27 01:07:03,2014-01-17 09:38:34,13023880MM10A,2013-12-27,,1,M,Battery,1,14015442CF10A,(M1),0,2014-11-16,Petit Theft $100- $300,2014-11-16,2014-11-17,,0,,,,,Risk of Recidivism,2,Low,2013-12-28,Risk of Violence,4,Low,2013-12-28,2014-11-16,2014-11-17,0,20,323,1,1\r\n10611,edward eggers,edward,eggers,2013-10-24,Male,1961-05-01,54,Greater than 45,Caucasian,0,3,0,0,1,102,2014-02-03 02:33:34,2014-05-14 10:23:00,13014792CF10A,2013-10-23,,1,F,,1,14001863MM10A,(M1),1,2014-02-02,Trespass Other Struct/Conve,2014-02-03,2014-05-14,,0,,,,,Risk of Recidivism,3,Low,2013-10-24,Risk of Violence,1,Low,2013-10-24,2014-06-11,2014-07-18,1,0,101,1,1\r\n10614,demetrius boyd,demetrius,boyd,2013-02-17,Male,1988-07-24,27,25 - 45,African-American,0,10,0,0,5,0,2013-02-17 04:30:16,2013-03-26 05:28:29,13003404MM10A,2013-02-16,,1,M,Possess Cannabis/20 Grams Or Less,1,14014062TC30A,(M2),56,2014-02-05,Unlaw LicTag/Sticker Attach,2014-04-02,2014-05-27,,0,,,,,Risk of Recidivism,10,High,2013-02-17,Risk of Violence,9,High,2013-02-17,2013-02-17,2013-03-26,5,37,353,1,1\r\n10617,bruce burdin,bruce,burdin,2013-01-06,Male,1970-10-18,45,Greater than 45,Caucasian,0,1,0,0,4,-1,2013-01-05 02:05:58,2013-01-09 09:59:27,12072600TC30A,,2013-01-04,2,M,arrest case no charge,1,14026277TC10A,(M2),0,2014-07-04,Operating W/O Valid License,2014-07-04,2014-07-05,,0,,,,,Risk of Recidivism,1,Low,2013-01-06,Risk of Violence,1,Low,2013-01-06,2014-07-04,2014-07-05,4,3,544,1,1\r\n10618,christopher harris,christopher,harris,2014-02-22,Male,1984-04-15,32,25 - 45,African-American,0,3,0,0,4,-1,2014-02-21 06:52:59,2014-02-22 08:05:31,14003672MM10A,,2014-02-22,0,F,arrest case no charge,1,14011300MM10A,(M1),0,2014-07-24,Resist/Obstruct W/O Violence,2014-07-24,2014-07-24,,0,,,,,Risk of Recidivism,3,Low,2014-02-22,Risk of Violence,4,Low,2014-02-22,2014-07-24,2014-07-24,4,0,152,0,1\r\n10619,royal jackson,royal,jackson,2014-06-07,Male,1994-02-05,22,Less than 25,African-American,0,10,0,0,0,-1,2014-06-06 05:49:14,2014-06-07 07:49:48,14009024MM10A,2014-06-06,,1,M,Battery,1,14010732MM10A,(M1),0,2014-07-13,Possess Cannabis/20 Grams Or Less,2014-07-13,2014-08-09,,1,14010732MM10A,(M1),2014-07-13,Battery,Risk of Recidivism,10,High,2014-06-07,Risk of Violence,6,Medium,2014-06-07,2014-07-13,2014-08-09,0,0,36,1,1\r\n10621,berloudi simon,berloudi,simon,2014-09-17,Male,1992-11-19,23,Less than 25,Other,0,8,0,0,6,-1,2014-09-16 03:31:41,2014-12-09 04:32:02,14012547CF10A,2014-09-16,,1,F,Poss Pyrrolidinovalerophenone,1,15011959CF10A,(F3),,2015-09-15,Possession of Oxycodone,,,,0,,,,,Risk of Recidivism,8,High,2014-09-17,Risk of Violence,5,Medium,2014-09-17,2015-04-13,2015-04-16,6,83,208,0,1\r\n10622,miss howard,miss,howard,2014-02-28,Female,1972-02-08,44,25 - 45,African-American,0,6,0,0,6,-1,2014-02-27 02:14:46,2014-03-01 05:31:19,14002810CF10A,2014-02-27,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-28,Risk of Violence,3,Low,2014-02-28,2014-02-27,2014-03-01,6,1,763,0,0\r\n10623,dwight francis,dwight,francis,2013-04-20,Male,1956-07-07,59,Greater than 45,Other,0,3,0,0,20,-1,2013-04-19 07:20:47,2013-11-04 03:54:34,13005639CF10A,2013-04-19,,1,F,Felony Petit Theft,1,14000199MM20A,(M1),,2013-12-21,Petit Theft $100- $300,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-20,Risk of Violence,1,Low,2013-04-20,2013-04-19,2013-11-04,20,198,245,1,1\r\n10624,marion davis,marion,davis,2013-02-07,Male,1988-02-26,28,25 - 45,African-American,0,3,0,0,0,,,,,,,,M,,1,13073100TC30A,(M2),,2013-07-30,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,3,Low,2013-02-07,Risk of Violence,3,Low,2013-02-07,2013-02-07,2013-02-07,0,0,173,1,1\r\n10625,mikel ervin,mikel,ervin,2013-04-06,Male,1992-12-14,23,Less than 25,African-American,0,4,0,0,0,-1,2013-04-05 06:15:45,2013-04-06 10:23:30,13004913CF10A,2013-04-05,,1,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-04-06,Risk of Violence,6,Medium,2013-04-06,2013-04-05,2013-04-06,0,0,1091,0,0\r\n10626,miguel pena,miguel,pena,2014-03-16,Male,1969-07-23,46,Greater than 45,Caucasian,0,1,0,0,0,-1,2014-03-15 04:41:43,2014-03-16 01:23:46,14003668CF10A,2014-03-15,,1,F,Aggravated Assault,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-16,0,0,747,0,0\r\n10627,christopher mayer,christopher,mayer,2014-01-31,Male,1983-04-01,33,25 - 45,Caucasian,0,4,0,0,2,-14,2014-01-17 04:21:17,2014-01-31 10:00:28,14000748CF10A,2014-01-17,,14,F,Possession of Oxycodone,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-31,Risk of Violence,2,Low,2014-01-31,2014-01-17,2014-01-31,2,0,791,0,0\r\n10628,branden williams,branden,williams,2013-08-12,Male,1985-08-02,30,25 - 45,Other,0,2,0,0,1,-1,2013-08-11 04:36:54,2013-08-12 01:50:10,13015156MM10A,2013-08-11,,1,M,Battery,1,13017586CF10A,(F3),0,2013-12-20,Grand Theft in the 3rd Degree,2013-12-20,2013-12-21,,0,,,,,Risk of Recidivism,2,Low,2013-08-12,Risk of Violence,2,Low,2013-08-12,2013-12-20,2013-12-21,1,0,130,1,1\r\n10629,renee lamarche,renee,lamarche,2013-03-19,Female,1976-02-22,40,25 - 45,Caucasian,0,1,0,0,3,-1,2013-03-18 09:29:31,2013-03-19 01:52:29,13003929CF10A,2013-03-18,,1,F,Possession of Cocaine,1,13006106CF10A,(F3),1,2013-04-28,Possession of Cocaine,2013-04-29,2013-06-03,,1,14011095MM10A,(M1),2014-07-20,Battery,Risk of Recidivism,1,Low,2013-03-19,Risk of Violence,1,Low,2013-03-19,2014-07-20,2014-07-21,3,0,40,1,1\r\n10631,steven kitt,steven,kitt,2013-10-06,Male,1961-07-04,54,Greater than 45,Caucasian,0,3,0,0,7,0,2013-10-06 03:20:08,2013-10-06 07:36:47,13014016CF10A,2013-10-06,,0,F,Possession of Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-06,Risk of Violence,1,Low,2013-10-06,2013-10-06,2013-10-06,7,0,908,0,0\r\n10636,nicholas caffarilla,nicholas,caffarilla,2013-03-24,Male,1994-12-06,21,Less than 25,Caucasian,0,7,0,0,0,-1,2013-03-23 10:29:29,2013-03-24 10:53:35,13005731MM10A,2013-03-23,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-03-24,Risk of Violence,7,Medium,2013-03-24,2013-03-23,2013-03-24,0,0,1104,0,0\r\n10637,daniel finnegan,daniel,finnegan,2014-10-09,Male,1972-05-25,43,25 - 45,Caucasian,0,2,0,0,6,-1,2014-10-08 11:28:22,2014-10-09 02:37:24,14014765MM10A,2014-10-08,,1,M,Assault,1,15011585MM10A,(M1),,2015-09-09,Battery,,,,1,15011585MM10A,(M1),2015-09-09,Battery,Risk of Recidivism,2,Low,2014-10-09,Risk of Violence,4,Low,2014-10-09,2014-10-08,2014-10-09,6,0,335,1,1\r\n10641,markevis harvard,markevis,harvard,2014-11-12,Male,1993-11-29,22,Less than 25,African-American,0,5,0,0,3,-41,2014-10-02 12:14:45,2014-10-03 04:25:24,14013297CF10A,2014-10-02,,41,F,Uttering a Forged Instrument,1,14102738TC30A,(M2),,2014-12-11,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2014-11-12,Risk of Violence,5,Medium,2014-11-12,2015-07-23,2015-07-27,3,0,29,1,1\r\n10643,jorge aziles,jorge,aziles,2013-05-10,Male,1993-10-01,22,Less than 25,African-American,0,10,0,0,0,-1,2013-05-09 06:01:25,2013-05-13 03:50:36,13008989MM10A,2013-05-09,,1,M,Resist/Obstruct W/O Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-05-10,Risk of Violence,10,High,2013-05-10,2013-05-09,2013-05-13,0,3,1057,0,0\r\n10645,brent curry,brent,curry,2013-04-10,Male,1984-10-01,31,25 - 45,African-American,0,7,0,0,0,0,2013-04-10 01:53:18,2013-04-10 01:49:18,13005110CF10A,2013-04-10,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-04-10,Risk of Violence,3,Low,2013-04-10,2014-06-09,2014-06-23,0,0,425,0,0\r\n10646,joshua bass,joshua,bass,2013-04-09,Male,1983-11-16,32,25 - 45,African-American,0,8,0,0,6,-1,2013-04-08 05:46:16,2013-08-16 09:02:11,13005036CF10A,2013-04-08,,1,F,Possession of Cocaine,1,14006277CF10A,(F2),1,2014-05-04,Purchase Of Cocaine,2014-05-05,2014-12-24,,0,,,,,Risk of Recidivism,8,High,2013-04-09,Risk of Violence,6,Medium,2013-04-09,2014-04-18,2014-04-18,6,129,374,0,1\r\n10647,gay diamond,gay,diamond,2013-03-12,Female,1965-12-27,50,Greater than 45,Caucasian,0,5,0,0,3,55,2013-05-06 04:40:11,2013-07-02 06:21:16,12014536CF10A,,2012-12-29,73,F,arrest case no charge,1,16001128MO10A,(MO3),0,2016-02-03,,2016-02-03,2016-02-26,,0,,,,,Risk of Recidivism,5,Medium,2013-03-12,Risk of Violence,1,Low,2013-03-12,2013-05-06,2013-07-02,3,0,55,0,0\r\n10648,naiboby castro,naiboby,castro,2014-10-06,Male,1988-09-19,27,25 - 45,Hispanic,0,2,0,0,4,-1,2014-10-05 02:11:54,2014-10-08 05:53:44,14013424CF10A,2014-10-05,,1,F,False Imprisonment,1,15016451CF10A,(F2),,2015-12-25,Agg Battery Grt/Bod/Harm,,,,1,15016451CF10A,(F2),2015-12-25,Agg Battery Grt/Bod/Harm,Risk of Recidivism,2,Low,2014-10-06,Risk of Violence,2,Low,2014-10-06,2014-10-05,2014-10-08,4,2,445,1,1\r\n10649,marcus massicot,marcus,massicot,2014-03-03,Male,1995-01-06,21,Less than 25,African-American,0,5,0,0,1,-1,2014-03-02 01:50:25,2014-03-03 08:36:38,14003559MM10A,2014-03-01,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-03-03,Risk of Violence,7,Medium,2014-03-03,2014-03-02,2014-03-03,1,0,760,0,0\r\n10651,eric newman,eric,newman,2013-08-03,Male,1992-06-02,23,Less than 25,Caucasian,0,6,0,0,0,0,2013-08-03 08:51:49,2013-08-04 08:17:42,13014778MM10A,2013-08-03,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-03,Risk of Violence,7,Medium,2013-08-03,2013-08-03,2013-08-04,0,1,972,0,0\r\n10652,damian fletcher,damian,fletcher,2013-11-27,Male,1982-10-23,33,25 - 45,African-American,0,6,0,0,3,-1,2013-11-26 09:32:11,2014-03-21 08:51:31,13016496CF10A,2013-11-26,,1,M,Resist Officer w/Violence,1,14044367TC40A,(M2),39,2014-06-19,Posses/Disply Susp/Revk/Frd DL,2014-07-28,2014-07-29,,0,,,,,Risk of Recidivism,6,Medium,2013-11-27,Risk of Violence,4,Low,2013-11-27,2013-11-26,2014-03-21,3,114,204,1,1\r\n10653,mervin cohen,mervin,cohen,2013-10-07,Male,1951-05-24,64,Greater than 45,African-American,0,2,0,0,0,-1,2013-10-06 02:16:09,2013-10-07 07:49:01,13018992MM10A,2013-10-06,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-10-07,Risk of Violence,1,Low,2013-10-07,2013-10-06,2013-10-07,0,0,907,0,0\r\n10655,daniella octelus,daniella,octelus,2013-02-20,Female,1974-01-01,42,25 - 45,Other,0,1,0,0,0,-1,2013-02-19 06:19:48,2013-11-27 06:50:00,13002529CF10A,2013-02-19,,1,F,Burglary Dwelling Assault/Batt,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-20,Risk of Violence,1,Low,2013-02-20,2013-02-19,2013-11-27,0,280,1136,0,0\r\n10656,tyrone mais,tyrone,mais,2013-11-09,Male,1995-07-21,20,Less than 25,African-American,0,4,0,1,0,-1,2013-11-08 04:19:33,2013-11-09 02:11:07,13015586CF10A,2013-11-08,,1,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-09,Risk of Violence,7,Medium,2013-11-09,2013-11-08,2013-11-09,0,0,874,0,0\r\n10657,tomas rivas,tomas,rivas,2013-04-18,Male,1989-09-27,26,25 - 45,Caucasian,0,2,0,0,1,-1,2013-04-17 01:39:09,2013-04-18 07:32:53,13007445MM10A,2013-04-17,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-18,Risk of Violence,3,Low,2013-04-18,2013-04-17,2013-04-18,1,0,1079,0,0\r\n10659,kenneth manning,kenneth,manning,2013-03-16,Male,1986-01-03,30,25 - 45,African-American,0,10,1,1,18,-1,2013-03-15 10:23:36,2013-05-16 06:27:15,13003825CF10A,2013-03-15,,1,F,Burglary Conveyance Unoccup,1,16001918CF10A,(F1),0,2016-02-14,,2016-02-14,2016-03-18,,0,,,,,Risk of Recidivism,10,High,2013-03-16,Risk of Violence,8,High,2013-03-16,2014-10-14,2014-11-25,18,554,577,0,1\r\n10660,willie pichardo,willie,pichardo,2014-03-04,Male,1992-12-14,23,Less than 25,Hispanic,0,2,0,0,0,-1,2014-03-03 03:40:05,2014-03-04 09:05:25,14003634MM10A,2014-03-03,,1,M,Battery,1,14008472MM10A,(M1),0,2014-05-27,Battery,2014-05-27,2014-05-28,,1,14008472MM10A,(M1),2014-05-27,Battery,Risk of Recidivism,2,Low,2014-03-04,Risk of Violence,4,Low,2014-03-04,2014-05-27,2014-05-28,0,0,84,1,1\r\n10664,keith richmond,keith,richmond,2013-05-10,Male,1993-01-20,23,Less than 25,African-American,0,10,0,1,10,-1,2013-05-09 11:50:35,2013-05-13 12:40:01,13006675CF10A,,2013-05-09,1,F,arrest case no charge,1,14015883CF10A,(F2),0,2014-10-30,Escape,2014-10-30,2014-12-23,,0,,,,,Risk of Recidivism,10,High,2013-05-10,Risk of Violence,9,High,2013-05-10,2013-07-08,2013-07-19,10,3,59,0,1\r\n10665,daniel mcbride,daniel,mcbride,2013-01-28,Male,1956-01-05,60,Greater than 45,African-American,0,6,0,0,13,-1,2013-01-27 02:10:29,2013-01-29 04:24:39,13001331CF10A,2013-01-27,,1,F,Felony Petit Theft,1,14000955CF10A,(F3),,2013-12-08,Felony Petit Theft,,,,0,,,,,Risk of Recidivism,6,Medium,2013-01-28,Risk of Violence,3,Low,2013-01-28,2013-01-27,2013-01-29,13,1,314,1,1\r\n10666,jesse yisael,jesse,yisael,2013-04-09,Male,1969-10-26,46,Greater than 45,African-American,0,7,0,0,2,0,2013-04-09 12:01:42,2013-06-13 03:13:38,08018178CF10A,,2009-10-26,1261,F,arrest case no charge,1,14000606CF10A,(F2),1,2014-01-14,Deliver Cocaine,2014-01-15,2014-04-01,,0,,,,,Risk of Recidivism,7,Medium,2013-04-09,Risk of Violence,2,Low,2013-04-09,2013-04-09,2013-06-13,2,65,280,1,1\r\n10667,michelle st. surin,michelle,st. surin,2013-05-21,Female,1987-02-27,29,25 - 45,African-American,0,4,0,0,0,,,,13007183CF10A,2013-05-20,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-05-21,Risk of Violence,3,Low,2013-05-21,,,0,0,1046,0,0\r\n10669,ricky arneson,ricky,arneson,2013-11-19,Male,1960-01-24,56,Greater than 45,Caucasian,0,1,0,0,0,0,2013-11-19 12:43:12,2013-11-19 02:03:24,13021684MM10A,2013-11-18,,1,M,Driving Under The Influence,1,14017047CF10A,(M1),0,2014-12-26,Resist/Obstruct W/O Violence,2014-12-26,2015-01-23,,0,,,,,Risk of Recidivism,1,Low,2013-11-19,Risk of Violence,1,Low,2013-11-19,2014-12-26,2015-01-23,0,0,402,1,1\r\n10670,twana williams,twana,williams,2013-11-07,Female,1971-03-11,45,Greater than 45,African-American,0,1,0,0,0,-1,2013-11-06 07:53:26,2013-11-07 02:17:37,13015475CF10A,2013-11-06,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-11-07,Risk of Violence,1,Low,2013-11-07,2013-11-06,2013-11-07,0,0,876,0,0\r\n10671,ceddrick mcgirt,ceddrick,mcgirt,2014-01-22,Male,1990-01-02,26,25 - 45,African-American,0,3,0,0,4,0,2014-01-22 03:26:10,2014-01-22 12:55:09,14000925CF10A,2014-01-22,,0,F,Fleeing Or Attmp Eluding A Leo,1,15004355TC10A,(M2),0,2015-02-12,Susp Drivers Lic 1st Offense,2015-02-12,2015-06-17,,0,,,,,Risk of Recidivism,3,Low,2014-01-22,Risk of Violence,2,Low,2014-01-22,2014-06-24,2014-07-11,4,0,153,0,1\r\n10672,mary nelson,mary,nelson,2014-02-03,Female,1968-05-28,47,Greater than 45,African-American,0,6,0,0,4,-1,2014-02-02 11:14:36,2014-02-03 09:43:18,14001799MM10A,2014-02-02,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-03,Risk of Violence,6,Medium,2014-02-03,2014-02-02,2014-02-03,4,0,788,0,0\r\n10673,keyanna stephens,keyanna,stephens,2013-02-16,Female,1986-09-27,29,25 - 45,African-American,0,7,1,0,7,0,2013-02-16 06:33:38,2013-02-18 03:07:51,13002411CF10A,2013-02-16,,0,F,Aggravated Assault W/dead Weap,1,14013253CF10A,(F3),1,2014-09-12,Neglect Child / No Bodily Harm,2014-09-13,2015-09-17,,0,,,,,Risk of Recidivism,7,Medium,2013-02-16,Risk of Violence,4,Low,2013-02-16,2013-02-27,2013-03-01,7,2,11,0,1\r\n10674,uriel young,uriel,young,2013-02-22,Male,1984-04-07,32,25 - 45,African-American,2,10,1,0,9,-1,2013-02-21 07:02:45,2013-04-18 09:12:27,13002666CF10A,2013-02-21,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,10,High,2013-02-22,Risk of Violence,6,Medium,2013-02-22,2016-03-08,2016-04-18,9,55,1110,0,0\r\n10675,michael bentivegna,michael,bentivegna,2014-12-09,Male,1989-03-04,27,25 - 45,Caucasian,0,3,0,0,2,-50,2014-10-20 08:45:47,2014-10-20 07:50:57,14014140CF10A,2014-10-20,,50,F,Felony Batt(Great Bodily Harm),1,16000966MM10A,(M2),0,2016-01-28,Lve/Scen/Acc/Veh/Prop/Damage,2016-01-28,2016-01-31,,1,16000966MM10A,(M1),2016-01-28,Battery,Risk of Recidivism,3,Low,2014-12-09,Risk of Violence,3,Low,2014-12-09,2016-01-28,2016-01-31,2,0,415,1,1\r\n10676,dalphley dieujuste,dalphley,dieujuste,2013-08-27,Male,1992-08-07,23,Less than 25,Other,0,4,0,0,0,-1,2013-08-26 09:14:14,2013-08-27 06:17:54,13012024CF10A,2013-08-26,,1,F,Deliver Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-27,Risk of Violence,4,Low,2013-08-27,2013-08-26,2013-08-27,0,0,948,0,0\r\n10677,jermaine williams,jermaine,williams,2013-12-03,Male,1987-02-06,29,25 - 45,African-American,0,9,0,0,10,-1,2013-12-02 04:15:04,2013-12-31 08:46:31,13016681CF10A,2013-12-02,,1,F,Felony Battery (Dom Strang),1,14020961TC20A,(M1),143,2014-03-01,Susp Drivers Lic 1st Offense,2014-07-22,2014-07-25,,0,,,,,Risk of Recidivism,9,High,2013-12-03,Risk of Violence,4,Low,2013-12-03,2013-12-02,2013-12-31,10,28,88,1,1\r\n10678,alvaro tinoco,alvaro,tinoco,2014-05-26,Male,1982-09-23,33,25 - 45,Hispanic,0,6,0,1,11,0,2014-05-26 03:25:12,2014-05-27 08:18:59,14007296CF10A,2014-05-26,,0,F,Tamper With Witness/Victim/CI,1,15020954TC40A,(M2),,2015-04-04,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,6,Medium,2014-05-26,Risk of Violence,2,Low,2014-05-26,2014-05-26,2014-05-27,11,1,313,1,1\r\n10680,trevaris session,trevaris,session,2013-03-09,Male,1993-12-01,22,Less than 25,African-American,0,6,0,0,1,-1,2013-03-08 03:36:56,2013-03-29 10:22:10,13003472CF10A,2013-03-08,,1,F,Robbery Sudd Snatch No Weapon,1,15000095MM10A,(M1),,2015-01-03,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-09,Risk of Violence,8,High,2013-03-09,2014-07-07,2014-08-02,1,20,485,0,1\r\n10682,yanderi soto,yanderi,soto,2013-08-28,Female,1983-02-03,33,25 - 45,Hispanic,0,3,0,0,2,-64,2013-06-25 08:58:27,2013-07-25 12:37:44,13009036CF10A,,2013-06-26,63,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-28,Risk of Violence,2,Low,2013-08-28,2013-06-25,2013-07-25,2,0,947,0,0\r\n10685,saschelle simms,saschelle,simms,2013-08-04,Female,1987-04-22,28,25 - 45,African-American,0,2,0,0,1,-1,2013-08-03 11:07:36,2013-08-04 09:49:46,13010871CF10A,2013-08-03,,1,F,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-04,Risk of Violence,2,Low,2013-08-04,2013-08-03,2013-08-04,1,0,971,0,0\r\n10686,martin martinez,martin,martinez,2013-01-01,Male,1980-01-06,36,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-01 07:58:34,2013-02-06 11:17:21,13000050CF10A,2013-01-01,,0,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-01,Risk of Violence,1,Low,2013-01-01,2013-01-01,2013-02-06,0,36,1186,0,0\r\n10689,pedro arencibia,pedro,arencibia,2014-02-25,Male,1983-08-16,32,25 - 45,Hispanic,0,3,0,0,1,0,2014-02-25 04:17:29,2014-02-25 08:55:45,14002669CF10A,2014-02-25,,0,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-25,Risk of Violence,2,Low,2014-02-25,2014-02-25,2014-02-25,1,0,766,0,0\r\n10690,jamon bossier,jamon,bossier,2013-03-15,Male,1992-01-25,24,Less than 25,African-American,0,6,0,0,0,-1,2013-03-14 03:45:06,2013-03-16 09:14:50,13003740CF10A,2013-03-14,,1,F,Resist Officer w/Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-15,Risk of Violence,5,Medium,2013-03-15,2013-03-14,2013-03-16,0,1,1113,0,0\r\n10692,travis telfair,travis,telfair,2013-04-10,Male,1983-03-06,33,25 - 45,African-American,2,9,0,0,9,-1,2013-04-09 11:11:40,2013-04-12 04:49:24,13006878MM10A,2013-04-09,,1,M,Assault,1,14003449CF10A,(F2),,2014-01-22,Deliver Cocaine,,,,0,,,,,Risk of Recidivism,9,High,2013-04-10,Risk of Violence,9,High,2013-04-10,2013-07-11,2013-07-12,9,2,92,0,1\r\n10694,darvin smith,darvin,smith,2013-03-25,Male,1969-12-03,46,Greater than 45,African-American,0,6,0,0,2,-1,2013-03-24 07:46:10,2013-03-25 08:04:20,02004130MM10A,,2013-03-24,1,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-25,Risk of Violence,3,Low,2013-03-25,2013-03-24,2013-03-25,2,0,1103,0,0\r\n10695,nicholas leslie,nicholas,leslie,2013-10-08,Male,1985-03-20,31,25 - 45,Caucasian,0,8,0,0,9,0,2013-10-08 04:59:26,2013-10-09 09:06:32,13019137MM10A,2013-10-08,,0,M,Battery,1,14053053TC20A,(M2),,2014-07-22,Driving License Suspended,,,,0,,,,,Risk of Recidivism,8,High,2013-10-08,Risk of Violence,2,Low,2013-10-08,2014-01-16,2014-01-17,9,1,100,0,1\r\n10697,claude ruel,claude,ruel,2014-05-06,Male,1967-01-15,49,Greater than 45,Caucasian,0,8,0,0,3,-1,2014-05-05 10:17:42,2014-06-09 07:48:30,14006303CF10A,2014-05-05,,1,F,Possession of Cocaine,1,15010476MM10A,(M1),0,2015-10-06,Trespass Other Struct/Convey,2015-10-06,2015-10-07,,0,,,,,Risk of Recidivism,8,High,2014-05-06,Risk of Violence,1,Low,2014-05-06,2014-10-25,2014-11-17,3,34,172,0,1\r\n10698,evon jones,evon,jones,2013-11-18,Male,1991-10-13,24,Less than 25,African-American,0,3,0,3,0,0,2013-11-18 03:27:14,2013-11-18 02:04:33,13016014CF10A,2013-11-18,,0,F,Poss Contr Subst W/o Prescript,1,15008677MM10A,(M1),0,2015-08-16,Possess Cannabis/20 Grams Or Less,2015-08-16,2015-08-16,,0,,,,,Risk of Recidivism,3,Low,2013-11-18,Risk of Violence,3,Low,2013-11-18,2015-08-16,2015-08-16,0,0,636,0,1\r\n10699,irwin baxter,irwin,baxter,2014-04-10,Male,1959-03-11,57,Greater than 45,African-American,0,10,0,0,28,0,2014-04-10 01:28:12,2014-04-12 05:32:50,14005009CF10A,2014-04-10,,0,F,Possession of Cocaine,1,14005452CF10A,(M1),1,2014-04-18,Resist/Obstruct W/O Violence,2014-04-19,2014-05-28,,1,14005452CF10A,(F3),2014-04-18,Battery on Law Enforc Officer,Risk of Recidivism,10,High,2014-04-10,Risk of Violence,6,Medium,2014-04-10,2014-04-10,2014-04-12,28,2,8,1,1\r\n10700,derrick powell,derrick,powell,2013-05-02,Male,1979-07-15,36,25 - 45,African-American,1,10,2,0,14,-1,2013-05-01 05:23:45,2013-05-03 07:33:27,13006260CF10A,2013-05-01,,1,F,Possession of Cocaine,1,13008467CF10A,(F3),1,2013-06-14,Possession of Cocaine,2013-06-15,2014-01-22,,0,,,,,Risk of Recidivism,10,High,2013-05-02,Risk of Violence,9,High,2013-05-02,2013-05-01,2013-05-03,14,1,43,1,1\r\n10703,arthur washington,arthur,washington,2013-05-25,Male,1972-12-13,43,25 - 45,African-American,0,7,1,0,23,-1,2013-05-24 08:40:39,2013-09-03 10:05:59,13009421CF10A,2013-05-24,,1,F,Deliver Cocaine 1000FT Park,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-25,Risk of Violence,3,Low,2013-05-25,2014-10-22,2014-10-30,23,101,515,0,0\r\n10706,demetrius weeks,demetrius,weeks,2013-01-02,Male,1973-11-02,42,25 - 45,African-American,0,7,0,0,0,0,2013-01-02 08:01:48,2013-01-09 02:59:21,13000128MM10A,2013-01-01,,1,M,Possess Cannabis/20 Grams Or Less,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-01-02,Risk of Violence,4,Low,2013-01-02,2013-01-02,2013-01-09,0,7,1185,0,0\r\n10707,steven orton,steven,orton,2013-12-06,Male,1984-02-11,32,25 - 45,Caucasian,0,10,0,0,4,-1,2013-12-05 02:09:57,2013-12-05 09:40:53,13016825CF10A,2013-12-04,,2,F,\"Deliver 3,4 Methylenediox\",1,14005627TC20A,(M2),0,2014-01-21,Driving License Suspended,2014-01-21,2014-01-23,,0,,,,,Risk of Recidivism,10,High,2013-12-06,Risk of Violence,8,High,2013-12-06,2014-01-21,2014-01-23,4,0,46,1,1\r\n10708,christopher rhodes,christopher,rhodes,2013-03-22,Male,1989-05-18,26,25 - 45,Caucasian,0,4,0,0,1,-1,2013-03-21 09:52:22,2013-03-27 09:11:42,13001004CF10A,,2013-03-21,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-03-22,Risk of Violence,3,Low,2013-03-22,2013-03-21,2013-03-27,1,5,1106,0,0\r\n10709,allen willey,allen,willey,2013-01-11,Male,1942-04-15,74,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-01-10 09:12:31,2013-01-11 09:20:12,13000584MM10A,2013-01-10,,1,M,Lve/Scen/Acc/Veh/Prop/Damage,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-11,Risk of Violence,1,Low,2013-01-11,2013-01-10,2013-01-11,0,0,1176,0,0\r\n10712,tony orr,tony,orr,2013-09-19,Male,1991-06-10,24,Less than 25,African-American,0,6,0,1,3,-1,2013-09-18 04:45:27,2013-09-19 08:06:10,13013165CF10A,2013-09-18,,1,F,Possession Burglary Tools,1,13023543MM10A,(M1),0,2013-12-21,Resist/Obstruct W/O Violence,2013-12-21,2013-12-22,,0,,,,,Risk of Recidivism,6,Medium,2013-09-19,Risk of Violence,5,Medium,2013-09-19,2013-12-21,2013-12-22,3,0,93,1,1\r\n10713,cony bonilla,cony,bonilla,2013-03-11,Female,1991-06-21,24,Less than 25,Hispanic,0,3,0,0,1,-2,2013-03-09 11:55:36,2013-03-10 01:31:32,13004776MM10A,2013-03-09,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-11,Risk of Violence,3,Low,2013-03-11,2013-03-09,2013-03-10,1,0,1117,0,0\r\n10718,shaun shakespeare,shaun,shakespeare,2013-08-21,Male,1994-03-15,22,Less than 25,Other,0,3,0,1,0,-1,2013-08-20 05:01:29,2013-08-21 07:51:21,13011707CF10A,2013-08-20,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-21,Risk of Violence,6,Medium,2013-08-21,2013-08-20,2013-08-21,0,0,954,0,0\r\n10719,deandre rolle,deandre,rolle,2013-11-05,Male,1982-09-27,33,25 - 45,African-American,0,4,0,0,2,-1,2013-11-04 06:37:56,2013-11-05 08:59:00,12022838TC10A,2012-03-27,,588,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-05,Risk of Violence,4,Low,2013-11-05,2015-12-21,2015-12-22,2,0,776,0,0\r\n10720,savannah bridges,savannah,bridges,2014-03-26,Male,1994-02-10,22,Less than 25,African-American,0,6,0,0,1,-1,2014-03-25 06:56:44,2014-03-26 01:24:02,14005166MM10A,2014-03-25,,1,M,Battery,1,15002685MM10A,(M1),0,2015-03-06,Battery,2015-03-06,2015-03-07,,1,15002685MM10A,(M1),2015-03-06,Battery,Risk of Recidivism,6,Medium,2014-03-26,Risk of Violence,6,Medium,2014-03-26,2015-03-06,2015-03-07,1,0,345,1,1\r\n10721,john gorczyca,john,gorczyca,2013-12-20,Male,1966-02-25,50,Greater than 45,Caucasian,0,2,0,0,4,-27,2013-11-23 03:50:00,2013-12-19 09:53:42,13022038MM10A,2013-11-23,,27,M,Disorderly Intoxication,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-12-20,Risk of Violence,1,Low,2013-12-20,2013-11-23,2013-12-19,4,0,833,0,0\r\n10723,jacqueline warrick,jacqueline,warrick,2013-04-09,Female,1987-08-17,28,25 - 45,Caucasian,0,6,0,0,7,-7,2013-04-02 06:32:37,2013-04-09 01:53:40,11011212CF10A,,2013-04-02,7,F,arrest case no charge,1,13016687CF10A,(F3),0,2013-12-02,Uttering Forged Bills,2013-12-02,2014-01-22,,0,,,,,Risk of Recidivism,6,Medium,2013-04-09,Risk of Violence,5,Medium,2013-04-09,2013-05-01,2013-08-22,7,0,22,0,1\r\n10728,raquel stewart,raquel,stewart,2013-12-16,Female,1980-10-31,35,25 - 45,African-American,0,7,0,1,5,-1,2013-12-15 08:46:54,2013-12-22 09:08:39,13017314CF10A,2013-12-15,,1,F,Aggrav Battery w/Deadly Weapon,1,14004715CF10A,(M1),0,2014-04-05,Battery,2014-04-05,2014-10-21,,1,14004715CF10A,(F3),2014-04-05,Aggravated Assault W/Dead Weap,Risk of Recidivism,7,Medium,2013-12-16,Risk of Violence,3,Low,2013-12-16,2014-04-05,2014-10-21,5,6,110,1,1\r\n10729,marquis taylor,marquis,taylor,2014-10-16,Male,1982-05-09,33,25 - 45,African-American,0,1,0,0,0,0,2014-10-16 01:24:44,2014-10-16 08:03:13,14013886CF10A,2014-10-15,,1,F,Failure To Return Hired Vehicle,1,15006266MM10A,(M1),0,2015-06-09,Battery,2015-06-09,2015-06-11,,1,15006266MM10A,(M1),2015-06-09,Battery,Risk of Recidivism,1,Low,2014-10-16,Risk of Violence,1,Low,2014-10-16,2015-06-09,2015-06-11,0,0,236,1,1\r\n10730,syreta moye,syreta,moye,2013-03-09,Female,1980-02-13,36,25 - 45,African-American,0,2,0,0,1,-1,2013-03-08 11:42:17,2013-03-09 01:06:11,13004724MM10A,2013-03-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-09,Risk of Violence,1,Low,2013-03-09,2013-03-08,2013-03-09,1,0,1119,0,0\r\n10733,aven vaughn,aven,vaughn,2013-08-30,Male,1988-03-21,28,25 - 45,African-American,0,2,0,0,2,-4,2013-08-26 01:09:45,2013-08-27 10:56:56,13009631CF10A,,2013-07-09,52,F,arrest case no charge,1,13061255TC20A,(M2),,2013-10-01,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,2,Low,2013-08-30,Risk of Violence,3,Low,2013-08-30,2013-08-26,2013-08-27,2,0,32,1,1\r\n10735,ronald sales,ronald,sales,2014-02-09,Male,1952-10-10,63,Greater than 45,African-American,0,1,0,0,1,-1,2014-02-08 10:04:04,2014-02-10 08:40:22,12016933CF10A,,2014-02-08,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-09,Risk of Violence,1,Low,2014-02-09,2014-02-08,2014-02-10,1,1,782,0,0\r\n10736,duane hawkins,duane,hawkins,2014-06-23,Male,1991-12-16,24,Less than 25,African-American,0,6,0,0,11,-32,2014-05-22 04:21:33,2014-06-23 09:58:17,14002486CF10A,,2014-05-22,32,F,arrest case no charge,1,15014560CF10A,(F3),1,2015-11-07,Possession Of Alprazolam,2015-11-08,2015-11-08,,0,,,,,Risk of Recidivism,6,Medium,2014-06-23,Risk of Violence,4,Low,2014-06-23,2015-02-02,2015-06-29,11,0,224,0,1\r\n10737,barbara mitchell,barbara,mitchell,2013-10-17,Female,1946-08-02,69,Greater than 45,Caucasian,0,3,0,0,5,-3,2013-10-14 10:12:12,2013-10-15 10:25:43,13014378CF10A,2013-10-14,,3,F,,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-17,Risk of Violence,1,Low,2013-10-17,2014-04-17,2014-04-21,5,0,182,0,0\r\n10743,perry mcqueen,perry,mcqueen,2014-09-29,Male,1975-02-28,41,25 - 45,African-American,1,6,0,0,18,0,2014-09-29 01:55:51,2015-07-25 02:26:52,14013147CF10A,,2014-09-29,0,F,arrest case no charge,1,15001716MM30A,(M1),55,2015-10-22,Possess Cannabis/20 Grams Or Less,2015-12-16,2015-12-16,,0,,,,,Risk of Recidivism,6,Medium,2014-09-29,Risk of Violence,8,High,2014-09-29,2014-09-29,2015-07-25,18,299,388,1,1\r\n10748,james sauer,james,sauer,2013-04-10,Male,1971-11-08,44,25 - 45,Caucasian,0,1,0,0,1,-1,2013-04-09 08:28:04,2013-04-10 08:06:36,13006872MM10A,2013-04-09,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-10,Risk of Violence,1,Low,2013-04-10,2013-04-09,2013-04-10,1,0,1087,0,0\r\n10749,colleen louis,colleen,louis,2014-01-04,Female,1987-04-03,29,25 - 45,African-American,0,2,0,0,0,-1,2014-01-03 04:12:16,2014-01-04 01:58:37,14000129CF10A,2014-01-03,,1,F,Robbery / No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-04,Risk of Violence,2,Low,2014-01-04,2014-01-03,2014-01-04,0,0,818,0,0\r\n10750,alejandra palacios,alejandra,palacios,2013-12-15,Female,1963-08-11,52,Greater than 45,Caucasian,0,3,0,0,0,-1,2013-12-14 04:55:04,2013-12-15 09:13:15,13023182MM10A,2013-12-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-15,Risk of Violence,1,Low,2013-12-15,2013-12-14,2013-12-15,0,0,838,0,0\r\n10753,jazzy johnson,jazzy,johnson,2013-02-23,Male,1992-10-15,23,Less than 25,African-American,0,10,0,0,1,-1,2013-02-22 03:33:10,2013-02-24 02:27:32,13002753CF10A,2013-02-22,,1,F,Possession of Cocaine,1,13005926CF10A,(F2),0,2013-04-25,Aggravated Battery / Pregnant,2013-04-25,2013-09-17,,1,13005926CF10A,(F2),2013-04-25,Aggravated Battery / Pregnant,Risk of Recidivism,10,High,2013-02-23,Risk of Violence,9,High,2013-02-23,2013-04-25,2013-09-17,1,1,61,1,1\r\n10754,jazmin gonzalez,jazmin,gonzalez,2013-06-03,Female,1993-10-12,22,Less than 25,Hispanic,0,4,0,0,0,-2,2013-06-01 10:56:01,2013-06-02 02:04:54,13010520MM10A,2013-06-01,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-06-03,Risk of Violence,4,Low,2013-06-03,2013-06-01,2013-06-02,0,0,1033,0,0\r\n10756,mazen caceres,mazen,caceres,2014-02-12,Male,1989-10-12,26,25 - 45,Caucasian,0,4,0,0,0,-1,2014-02-11 05:01:54,2014-02-12 02:28:50,14001953CF10A,2014-02-11,,1,F,Tampering With Physical Evidence,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-12,Risk of Violence,2,Low,2014-02-12,2014-02-11,2014-02-12,0,0,779,0,0\r\n10757,christopher tribie,christopher,tribie,2014-06-14,Male,1991-05-30,24,Less than 25,African-American,0,6,0,0,0,-1,2014-06-13 01:32:16,2014-07-03 10:09:04,14009385MM10A,2014-06-13,,1,M,Viol Injunct Domestic Violence,1,14012691CF10A,(F3),,2014-07-08,Stalking (Aggravated),,,,1,14012691CF10A,(F3),2014-07-08,Stalking (Aggravated),Risk of Recidivism,6,Medium,2014-06-14,Risk of Violence,4,Low,2014-06-14,2014-06-13,2014-07-03,0,19,24,1,1\r\n10758,bernitrust harrigan,bernitrust,harrigan,2013-04-06,Male,1970-09-06,45,Greater than 45,African-American,0,2,0,0,4,0,2013-04-06 12:37:10,2013-04-09 12:38:36,13006588MM10A,2013-04-05,,1,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-06,Risk of Violence,1,Low,2013-04-06,2014-10-01,2014-10-07,4,3,543,0,0\r\n10760,steven alardo,steven,alardo,2014-07-01,Male,1993-11-10,22,Less than 25,Hispanic,0,2,0,0,0,-1,2014-06-30 06:30:15,2014-07-01 02:01:17,14008982CF10A,2014-06-30,,1,F,Grand Theft in the 3rd Degree,1,14009819CF10A,(F3),1,2014-07-17,Possession of Oxycodone,2014-07-18,2014-07-18,,0,,,,,Risk of Recidivism,2,Low,2014-07-01,Risk of Violence,4,Low,2014-07-01,2015-02-17,2015-02-25,0,0,16,1,1\r\n10761,fabian frazier,fabian,frazier,2013-07-12,Male,1991-07-01,24,Less than 25,African-American,0,4,0,0,4,-3,2013-07-09 06:37:17,2013-07-12 11:59:49,13009590CF10A,2013-07-09,,3,F,Burglary Unoccupied Dwelling,1,14007656CF10A,(M1),0,2014-06-03,Possess Cannabis/20 Grams Or Less,2014-06-03,2015-12-09,,0,,,,,Risk of Recidivism,4,Low,2013-07-12,Risk of Violence,4,Low,2013-07-12,2014-05-09,2014-05-14,4,0,301,0,1\r\n10762,priscilla chavez,priscilla,chavez,2013-12-11,Female,1990-03-20,26,25 - 45,Hispanic,0,4,0,0,1,-6,2013-12-05 05:14:02,2013-12-10 07:12:45,13022591MM10A,2013-12-05,,6,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-11,Risk of Violence,3,Low,2013-12-11,2013-12-05,2013-12-10,1,0,842,0,0\r\n10763,garland humpheries,garland,humpheries,2013-03-18,Male,1968-11-14,47,Greater than 45,African-American,0,1,0,0,0,0,2013-03-18 03:42:01,2013-03-19 06:59:08,13005340MM10A,2013-03-18,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-18,Risk of Violence,1,Low,2013-03-18,2013-03-18,2013-03-19,0,1,1110,0,0\r\n10764,tyler flowers,tyler,flowers,2014-07-11,Male,1996-04-18,20,Less than 25,African-American,1,10,0,0,2,-35,2014-06-06 02:21:01,2014-06-07 07:49:32,14007837CF10A,2014-06-06,,35,F,Felony Batt(Great Bodily Harm),1,15006442CF10A,(F2),,2015-05-15,Agg Fleeing/Eluding High Speed,,,,1,15006442CF10A,(F2),2015-05-15,Agg Fleeing/Eluding High Speed,Risk of Recidivism,10,High,2014-07-11,Risk of Violence,10,High,2014-07-11,2014-06-06,2014-06-07,2,0,308,1,1\r\n10765,eric shivers,eric,shivers,2013-08-27,Male,1990-01-07,26,25 - 45,African-American,0,4,0,0,0,0,2013-08-27 05:05:13,2013-08-27 06:56:41,13012107CF10A,2013-08-26,,1,F,Uttering Forged Bills,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-27,Risk of Violence,4,Low,2013-08-27,2013-08-27,2013-08-27,0,0,948,0,0\r\n10766,ervin french,ervin,french,2013-04-03,Male,1979-12-27,36,25 - 45,African-American,0,7,0,0,9,-1,2013-04-02 10:06:06,2013-04-03 07:58:18,13004717CF10A,2013-04-02,,1,F,Possession of Cocaine,1,13007327CF10A,(M1),0,2013-05-22,Possess Cannabis/20 Grams Or Less,2013-05-22,2013-05-23,,0,,,,,Risk of Recidivism,7,Medium,2013-04-03,Risk of Violence,7,Medium,2013-04-03,2013-05-22,2013-05-23,9,0,49,1,1\r\n10768,luis mercado,luis,mercado,2013-11-21,Male,1982-06-28,33,25 - 45,Caucasian,0,3,0,0,2,-1,2013-11-20 11:48:13,2013-11-22 05:16:36,13021919MM10A,2013-11-20,,1,M,DUI Property Damage/Injury,1,14052731TC30A,(M2),,2014-05-02,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,3,Low,2013-11-21,Risk of Violence,2,Low,2013-11-21,2013-11-20,2013-11-22,2,1,162,1,1\r\n10769,christopher pulsifer,christopher,pulsifer,2013-04-02,Male,1963-09-26,52,Greater than 45,Caucasian,0,1,0,0,1,0,2013-04-02 01:14:06,2013-04-03 03:39:16,13006365MM10A,2013-04-01,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-02,Risk of Violence,1,Low,2013-04-02,2013-04-02,2013-04-03,1,1,1095,0,0\r\n10770,luis quintero,luis,quintero,2013-04-05,Male,1964-07-07,51,Greater than 45,Caucasian,0,1,0,0,0,0,2013-04-05 12:26:24,2013-04-05 01:22:47,13004864CF10A,,2013-04-04,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-05,Risk of Violence,1,Low,2013-04-05,2013-04-05,2013-04-05,0,0,1092,0,0\r\n10773,william sims,william,sims,2013-07-29,Male,1995-04-30,20,Less than 25,Caucasian,0,8,0,3,1,-32,2013-06-27 07:37:30,2013-06-28 09:16:14,13009068CF10A,2013-06-27,,32,F,Burglary Conveyance Unoccup,1,14000650MM40A,(M1),,2014-01-30,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,8,High,2013-07-29,Risk of Violence,7,Medium,2013-07-29,2014-12-10,2015-02-26,1,0,185,1,1\r\n10774,berry sanders,berry,sanders,2013-04-09,Male,1968-05-25,47,Greater than 45,African-American,0,1,0,0,7,-1,2013-04-08 07:37:52,2013-06-04 07:39:04,13005048CF10A,2013-04-08,,1,F,Agg Battery Grt/Bod/Harm,1,13010050CF10A,(F1),4,2013-07-13,Kidnapping,2013-07-17,2015-10-12,,1,13010050CF10A,(F3),2013-07-13,Aggravated Assault W/dead Weap,Risk of Recidivism,1,Low,2013-04-09,Risk of Violence,1,Low,2013-04-09,2013-04-08,2013-06-04,7,56,95,1,1\r\n10778,roger nichols,roger,nichols,2014-06-13,Male,1977-11-30,38,25 - 45,Caucasian,0,1,0,0,1,-1,2014-06-12 07:29:49,2014-06-13 01:45:37,14021917MU10A,2014-06-12,,1,M,Reckless Driving,1,15005627MM10A,(M1),0,2015-05-22,Battery,2015-05-22,2015-05-23,,1,15005627MM10A,(M1),2015-05-22,Battery,Risk of Recidivism,1,Low,2014-06-13,Risk of Violence,1,Low,2014-06-13,2015-01-16,2015-01-17,1,0,217,0,1\r\n10779,john scolo,john,scolo,2013-04-06,Male,1948-06-09,67,Greater than 45,Caucasian,0,3,0,0,1,-1,2013-04-05 11:40:27,2013-04-06 01:11:53,13004904CF10A,2013-04-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-06,Risk of Violence,1,Low,2013-04-06,2013-04-05,2013-04-06,1,0,1091,0,0\r\n10781,jaynell bristol,jaynell,bristol,2013-07-17,Male,1968-07-07,47,Greater than 45,African-American,0,1,0,0,1,-3,2013-07-14 11:11:51,2013-07-15 01:37:10,13009878CF10A,2013-07-14,,3,F,Battery on Law Enforc Officer,1,15011421MM10A,(M1),0,2015-10-30,Resist/Obstruct W/O Violence,2015-10-30,2015-10-31,,0,,,,,Risk of Recidivism,1,Low,2013-07-17,Risk of Violence,2,Low,2013-07-17,2015-10-30,2015-10-31,1,0,835,1,0\r\n10783,george mihelich,george,mihelich,2013-02-23,Male,1949-07-07,66,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-02-22 01:47:24,2013-02-23 08:24:24,13003748MM10A,2013-02-22,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-02-23,Risk of Violence,1,Low,2013-02-23,2013-02-22,2013-02-23,0,0,1133,0,0\r\n10784,christopher risor,christopher,risor,2014-02-04,Male,1976-10-14,39,25 - 45,Caucasian,0,2,0,0,0,-1,2014-02-03 07:26:31,2014-02-04 07:51:16,14001503CF10A,2014-02-03,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-04,Risk of Violence,1,Low,2014-02-04,2014-02-03,2014-02-04,0,0,787,0,0\r\n10786,adriana cardona,adriana,cardona,2013-09-19,Female,1966-08-31,49,Greater than 45,Caucasian,0,3,0,0,2,-1,2013-09-18 08:32:20,2013-12-09 08:40:42,13017805MM10A,2013-09-18,,1,M,Viol Injunct Domestic Violence,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-09-19,Risk of Violence,1,Low,2013-09-19,2013-09-18,2013-12-09,2,81,925,0,0\r\n10787,lisa scott,lisa,scott,2013-05-10,Female,1970-07-28,45,Greater than 45,African-American,0,7,0,0,9,0,2013-05-10 04:46:42,2013-07-24 09:08:35,13009083MM10A,2013-05-10,,0,M,Battery,1,15001303MM30A,(M1),,2015-08-04,Criminal Mischief>$200<$1000,,,,0,,,,,Risk of Recidivism,7,Medium,2013-05-10,Risk of Violence,9,High,2013-05-10,2013-05-10,2013-07-24,9,75,816,1,0\r\n10788,nadeem ali,nadeem,ali,2013-09-13,Male,1993-09-29,22,Less than 25,Asian,0,2,0,0,1,0,2013-09-13 04:22:12,2013-09-13 10:02:49,13017503MM10A,2013-09-13,,0,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-13,Risk of Violence,4,Low,2013-09-13,2013-09-13,2013-09-13,1,0,931,0,0\r\n10793,tammie linn,tammie,linn,2014-07-03,Female,1969-09-01,46,Greater than 45,Caucasian,0,7,0,0,7,-1,2014-07-02 10:19:24,2014-07-06 05:11:30,14009070CF10A,2014-07-02,,1,F,Tampering With Physical Evidence,1,15000495CF10A,(F3),,2015-01-08,Grand Theft in the 3rd Degree,,,,0,,,,,Risk of Recidivism,7,Medium,2014-07-03,Risk of Violence,3,Low,2014-07-03,2015-01-02,2015-08-19,7,3,189,1,1\r\n10794,kevin pew,kevin,pew,2014-10-06,Male,1986-10-08,29,25 - 45,African-American,0,6,0,0,15,-1,2014-10-05 06:05:28,2014-10-07 04:36:25,14013441CF10A,2014-10-05,,1,F,Driving While License Revoked,1,14042147TC10A,(M2),0,2014-11-08,Operating W/O Valid License,2014-11-08,2014-11-08,,0,,,,,Risk of Recidivism,6,Medium,2014-10-06,Risk of Violence,3,Low,2014-10-06,2014-11-08,2014-11-08,15,1,33,0,1\r\n10795,jermaine thomas,jermaine,thomas,2013-02-14,Male,1987-11-07,28,25 - 45,African-American,0,5,0,0,2,-1,2013-02-13 04:52:34,2013-02-15 05:29:54,09004255MM40B,2009-07-08,,1317,M,Possess Cannabis/20 Grams Or Less,1,13020520MM10A,(M1),0,2013-08-23,Possess Cannabis/20 Grams Or Less,2013-08-23,2013-08-24,,0,,,,,Risk of Recidivism,5,Medium,2013-02-14,Risk of Violence,4,Low,2013-02-14,2013-08-23,2013-08-24,2,1,190,1,1\r\n10799,tenesha murdock,tenesha,murdock,2014-02-05,Female,1993-09-06,22,Less than 25,African-American,0,4,0,0,0,-1,2014-02-04 11:47:19,2014-02-05 12:59:53,14001593CF10A,2014-02-04,,1,F,Grand Theft in the 3rd Degree,1,15007000MM10A,(M1),0,2015-06-30,Unlaw Use False Name/Identity,2015-06-30,2015-09-10,,0,,,,,Risk of Recidivism,4,Low,2014-02-05,Risk of Violence,4,Low,2014-02-05,2015-06-30,2015-09-10,0,0,510,1,1\r\n10801,jamaree moreland,jamaree,moreland,2013-10-16,Male,1995-08-31,20,Less than 25,African-American,1,5,0,1,1,3,2013-10-19 11:19:26,2013-10-24 05:17:40,13012923CF10A,,2013-09-24,22,F,arrest case no charge,1,13019816MM10A,(M1),0,2013-10-19,Possess Cannabis/20 Grams Or Less,2013-10-19,2013-10-24,,0,,,,,Risk of Recidivism,5,Medium,2013-10-16,Risk of Violence,8,High,2013-10-16,2013-10-19,2013-10-24,1,0,3,1,1\r\n10803,robert yaggle,robert,yaggle,2014-02-07,Male,1981-11-04,34,25 - 45,Caucasian,0,1,0,0,5,-1,2014-02-06 07:11:47,2014-02-07 08:33:05,13007035CF10A,,2014-02-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-02-07,Risk of Violence,1,Low,2014-02-07,2014-02-06,2014-02-07,5,0,784,0,0\r\n10805,michael decicco,michael,decicco,2013-08-15,Male,1981-07-06,34,25 - 45,Caucasian,0,5,0,0,13,-90,2013-05-17 02:27:35,2013-06-19 07:55:17,13007065CF10A,2013-05-16,,91,F,Burglary Structure Unoccup,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-15,Risk of Violence,4,Low,2013-08-15,2013-05-17,2013-06-19,13,0,960,0,0\r\n10806,tevin phillips,tevin,phillips,2014-12-31,Male,1993-06-02,22,Less than 25,African-American,0,4,1,0,8,-1,2014-12-30 02:15:57,2015-02-07 09:14:51,14017207CF10A,2014-12-30,,1,F,Burglary Unoccupied Dwelling,1,15006865MM10A,(M1),1,2015-06-26,Resist/Obstruct W/O Violence,2015-06-27,2015-10-22,,1,15006865MM10A,(M1),2015-06-26,Battery,Risk of Recidivism,4,Low,2014-12-31,Risk of Violence,6,Medium,2014-12-31,2015-02-11,2015-06-19,8,38,42,0,1\r\n10807,joshua marlowe,joshua,marlowe,2013-08-05,Male,1990-05-15,25,25 - 45,Caucasian,0,9,0,0,3,7,2013-08-12 02:20:01,2014-01-31 03:10:09,13014450MM10A,2013-07-31,,5,M,Driving License Suspended,1,13011307CF10A,(M2),0,2013-08-12,Petit Theft,2013-08-12,2014-01-31,,0,,,,,Risk of Recidivism,9,High,2013-08-05,Risk of Violence,7,Medium,2013-08-05,2013-08-12,2014-01-31,3,0,7,1,1\r\n10808,allen martin,allen,martin,2013-09-30,Male,1989-03-19,27,25 - 45,Caucasian,0,5,2,1,13,-59,2013-08-02 02:13:21,2013-09-28 04:30:00,13012061CF10A,,2013-08-22,39,F,arrest case no charge,1,13022876MM10A,(M2),0,2013-12-06,Disorderly Intoxication,2013-12-06,2013-12-06,,1,14006051CF10A,(F2),2014-04-30,Agg Battery Grt/Bod/Harm,Risk of Recidivism,5,Medium,2013-09-30,Risk of Violence,5,Medium,2013-09-30,2013-12-06,2013-12-06,13,0,67,0,1\r\n10810,reginald prudent,reginald,prudent,2013-03-06,Male,1981-07-16,34,25 - 45,African-American,0,6,0,0,1,-1,2013-03-05 10:06:08,2013-03-06 06:32:31,13002558CF10A,,2013-03-05,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-06,Risk of Violence,3,Low,2013-03-06,2013-03-05,2013-03-06,1,0,1122,0,0\r\n10811,michael valente,michael,valente,2013-08-30,Male,1981-10-12,34,25 - 45,Caucasian,0,5,0,0,1,-2,2013-08-28 05:17:09,2013-08-29 10:00:01,13012154CF10A,2013-08-28,,2,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-30,Risk of Violence,2,Low,2013-08-30,2014-04-24,2014-05-23,1,0,237,0,0\r\n10814,terry shepard,terry,shepard,2014-06-11,Male,1961-10-08,54,Greater than 45,African-American,0,4,0,0,10,0,2014-06-11 06:04:40,2014-06-11 08:02:42,14008101CF10A,2014-06-11,,0,F,Possession of Cocaine,1,14015720MM10A,(M1),0,2014-10-30,Resist/Obstruct W/O Violence,2014-10-30,2014-11-18,,0,,,,,Risk of Recidivism,4,Low,2014-06-11,Risk of Violence,1,Low,2014-06-11,2014-10-30,2014-11-18,10,0,141,1,1\r\n10817,vincent lewis,vincent,lewis,2014-06-24,Male,1964-10-21,51,Greater than 45,Other,0,1,0,0,0,-1,2014-06-23 08:46:37,2014-06-24 10:37:45,14008651CF10A,2014-06-23,,1,F,Possession Of Methamphetamine,1,15006809CF10A,(F3),0,2015-05-25,Possession of Cocaine,2015-05-25,2015-05-25,,0,,,,,Risk of Recidivism,1,Low,2014-06-24,Risk of Violence,1,Low,2014-06-24,2015-05-25,2015-05-25,0,0,335,0,1\r\n10818,melanie philips,melanie,philips,2014-05-13,Female,1979-10-08,36,25 - 45,Caucasian,0,3,0,0,5,-1,2014-05-12 09:08:07,2014-05-13 08:25:16,13001135CF10A,,2014-05-12,1,F,arrest case no charge,1,14015947CF10A,(F3),,2014-11-27,Grand Theft (Motor Vehicle),,,,0,,,,,Risk of Recidivism,3,Low,2014-05-13,Risk of Violence,1,Low,2014-05-13,2015-09-10,2015-10-23,5,0,198,1,1\r\n10819,jean cyma,jean,cyma,2014-07-09,Male,1996-03-18,20,Less than 25,Asian,0,10,1,0,2,-1,2014-07-08 01:20:50,2014-08-29 04:10:30,14009437CF10A,2014-07-08,,1,F,Grand Theft in the 3rd Degree,1,15000287CF10A,(F1),,2015-01-05,Murder in 2nd Degree,,,,1,15000287CF10A,(F1),2015-01-05,Murder in 2nd Degree,Risk of Recidivism,10,High,2014-07-09,Risk of Violence,8,High,2014-07-09,2014-07-08,2014-08-29,2,51,180,1,1\r\n10821,stephon brown,stephon,brown,2014-12-12,Male,1986-01-13,30,25 - 45,African-American,1,5,0,2,8,-1,2014-12-11 11:21:18,2015-02-04 08:27:28,14016454CF10A,2014-12-11,,1,F,Possession of Cocaine,1,15005193MM10A,(M1),0,2015-05-09,Viol Injunct Domestic Violence,2015-05-09,2015-05-12,,0,,,,,Risk of Recidivism,5,Medium,2014-12-12,Risk of Violence,3,Low,2014-12-12,2015-05-09,2015-05-12,8,54,148,1,1\r\n10823,jesus palomo,jesus,palomo,2014-11-20,Male,1972-02-15,44,25 - 45,Hispanic,0,1,0,0,0,-1,2014-11-19 05:10:20,2014-11-20 09:24:11,14016525MM10A,2014-11-19,,1,M,Battery,1,15057037TC20A,(M2),,2015-10-17,Driving License Suspended,,,,0,,,,,Risk of Recidivism,1,Low,2014-11-20,Risk of Violence,1,Low,2014-11-20,2014-11-19,2014-11-20,0,0,331,1,1\r\n10824,britney vincent,britney,vincent,2014-04-18,Female,1992-06-02,23,Less than 25,African-American,0,4,0,0,1,-1,2014-04-17 01:53:22,2014-05-15 10:32:30,14005397CF10A,2014-04-17,,1,F,Burglary Conveyance Unoccup,1,14012533MM10A,(M1),,2014-07-28,Viol Injunct Domestic Violence,,,,0,,,,,Risk of Recidivism,4,Low,2014-04-18,Risk of Violence,3,Low,2014-04-18,2014-04-17,2014-05-15,1,27,101,1,1\r\n10827,luis garcia,luis,garcia,2014-03-16,Male,1975-12-14,40,25 - 45,Caucasian,0,1,0,0,0,-1,2014-03-15 05:42:13,2014-03-16 09:20:50,14003680CF10A,2014-03-15,,1,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-03-16,Risk of Violence,1,Low,2014-03-16,2014-03-15,2014-03-16,0,0,747,0,0\r\n10828,francisco balbosa,francisco,balbosa,2014-05-01,Male,1951-04-02,65,Greater than 45,Hispanic,0,1,0,0,2,-53,2014-03-09 10:15:48,2014-03-10 11:03:35,14004076MM10A,2014-03-09,,53,M,Criminal Mischief>$200<$1000,1,14002851MM40A,(M2),,2014-05-28,Food License Violation,,,,0,,,,,Risk of Recidivism,1,Low,2014-05-01,Risk of Violence,1,Low,2014-05-01,2014-03-09,2014-03-10,2,0,27,1,1\r\n10829,olivia hines,olivia,hines,2013-10-24,Female,1993-09-30,22,Less than 25,African-American,0,6,0,0,1,-97,2013-07-19 02:07:24,2013-10-23 09:05:04,13010086CF10A,2013-07-19,,97,F,Burglary Unoccupied Dwelling,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-10-24,Risk of Violence,6,Medium,2013-10-24,2014-05-13,2014-06-20,1,0,201,0,0\r\n10831,tiffany miller,tiffany,miller,2013-12-05,Female,1989-03-12,27,25 - 45,Caucasian,0,8,0,0,0,0,2013-12-05 03:52:06,2013-12-05 08:05:45,13022575MM10A,2013-12-05,,0,M,Battery,1,14001864CF10A,(F3),1,2014-02-09,Resist Officer w/Violence,2014-02-10,2014-03-03,,1,14001864CF10A,(F3),2014-02-09,Battery on Law Enforc Officer,Risk of Recidivism,8,High,2013-12-05,Risk of Violence,6,Medium,2013-12-05,2016-02-13,2016-02-20,0,0,66,1,1\r\n10835,nicolas barahonaneira,nicolas,barahonaneira,2013-08-15,Male,1993-01-30,23,Less than 25,Hispanic,0,5,0,0,2,-1,2013-08-14 09:28:22,2013-08-16 10:44:46,13011425CF10A,2013-08-14,,1,F,Burglary Conveyance Armed,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-08-15,Risk of Violence,4,Low,2013-08-15,2013-08-14,2013-08-16,2,1,960,0,0\r\n10836,jonathan estilien,jonathan,estilien,2014-04-12,Male,1991-02-18,25,25 - 45,African-American,0,6,0,0,3,-1,2014-04-11 06:11:56,2014-04-12 09:13:48,14005050CF10A,2014-04-11,,1,F,Driving While License Revoked,1,14015173MM10A,(M1),0,2014-10-18,Criminal Mischief>$200<$1000,2014-10-18,2014-11-05,,0,,,,,Risk of Recidivism,6,Medium,2014-04-12,Risk of Violence,4,Low,2014-04-12,2014-10-18,2014-11-05,3,0,189,1,1\r\n10837,oscar andrews,oscar,andrews,2013-08-15,Male,1969-01-05,47,Greater than 45,African-American,0,6,0,0,14,-1,2013-08-14 05:27:06,2013-09-14 05:54:00,13015392MM10A,2013-08-14,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-08-15,Risk of Violence,1,Low,2013-08-15,2013-08-14,2013-09-14,14,30,960,0,0\r\n10838,ricardo stewart,ricardo,stewart,2014-05-28,Female,1989-02-24,27,25 - 45,African-American,0,6,0,1,3,0,2014-05-28 01:54:34,2014-05-30 09:21:57,14007422CF10A,2014-05-27,,1,F,Grand Theft in the 3rd Degree,1,15008348CF10A,(F3),117,2015-04-25,Failure To Return Hired Vehicle,2015-08-20,2015-08-24,,0,,,,,Risk of Recidivism,6,Medium,2014-05-28,Risk of Violence,5,Medium,2014-05-28,2014-05-28,2014-05-30,3,2,332,1,1\r\n10839,michael gardner,michael,gardner,2013-10-04,Male,1977-08-25,38,25 - 45,African-American,2,9,3,0,16,28,2013-11-01 05:17:12,2013-12-04 09:22:13,13012958MM10A,2013-07-08,,88,M,Battery,1,13045764TC10A,(M2),0,2013-11-01,Operating W/O Valid License,2013-11-01,2013-12-04,,1,14001900CF10A,(F2),2014-02-10,Agg Battery Grt/Bod/Harm,Risk of Recidivism,9,High,2013-10-04,Risk of Violence,6,Medium,2013-10-04,2013-11-01,2013-12-04,16,0,28,1,1\r\n10841,joshua maxwell,joshua,maxwell,2014-08-16,Male,1989-04-01,27,25 - 45,African-American,0,1,0,0,0,-1,2014-08-15 08:03:05,2014-08-20 09:37:56,14012337MM10A,2014-08-15,,1,M,Battery,1,15004611CF10A,(F3),0,2015-04-08,Grand Theft (Motor Vehicle),2015-04-08,2015-06-17,,0,,,,,Risk of Recidivism,1,Low,2014-08-16,Risk of Violence,2,Low,2014-08-16,2015-04-08,2015-06-17,0,4,235,1,1\r\n10843,edward mejia,edward,mejia,2014-01-29,Male,1991-08-12,24,Less than 25,Hispanic,0,3,0,0,0,0,2014-01-29 03:01:54,2014-01-29 10:17:24,14001636MM10A,2014-01-29,,0,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-29,Risk of Violence,5,Medium,2014-01-29,2014-01-29,2014-01-29,0,0,793,0,0\r\n10844,steven sistrunk,steven,sistrunk,2013-05-01,Male,1986-01-13,30,25 - 45,Caucasian,0,8,0,0,4,0,2013-05-01 03:36:06,2013-05-06 01:37:10,13006259CF10A,2013-04-30,,1,F,Possession Of Heroin,1,15013116TC30A,(M2),,2015-02-14,Susp Drivers Lic 1st Offense,,,,0,,,,,Risk of Recidivism,8,High,2013-05-01,Risk of Violence,4,Low,2013-05-01,2013-12-06,2014-01-26,4,5,219,0,1\r\n10848,joseph alvardo,joseph,alvardo,2013-04-19,Male,1985-01-26,31,25 - 45,African-American,0,6,0,0,1,,,,08020871CF10A,,2009-09-03,1324,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-19,Risk of Violence,6,Medium,2013-04-19,2009-11-17,2012-02-02,1,0,1078,0,0\r\n10849,michael west,michael,west,2013-08-06,Male,1982-11-24,33,25 - 45,African-American,0,7,0,0,4,-1,2013-08-05 07:35:42,2013-08-22 09:03:08,13014735MM10A,2013-08-05,,1,M,Exposes Culpable Negligence,1,13016560CF10A,(F3),0,2013-11-29,Possession of Cocaine,2013-11-29,2014-08-21,,0,,,,,Risk of Recidivism,7,Medium,2013-08-06,Risk of Violence,6,Medium,2013-08-06,2013-11-29,2014-08-21,4,16,115,1,1\r\n10851,eriane early,eriane,early,2014-02-05,Female,1986-09-17,29,25 - 45,African-American,0,3,0,0,2,-1,2014-02-04 01:07:05,2014-02-14 08:06:36,14001566CF10A,2014-02-04,,1,F,Resist Officer w/Violence,1,15065926TC20A,(M2),,2015-12-08,DWLS Canceled Disqul 1st Off,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-05,Risk of Violence,3,Low,2014-02-05,2014-02-04,2014-02-14,2,9,671,1,1\r\n10854,alvaro saraviaciudadreal,alvaro,saraviaciudadreal,2013-09-04,Male,1977-10-25,38,25 - 45,Other,0,2,0,0,0,-2,2013-09-02 02:06:21,2013-09-03 07:40:54,13016770MM10A,2013-09-01,,3,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-04,Risk of Violence,1,Low,2013-09-04,2013-09-02,2013-09-03,0,0,940,0,0\r\n10855,gregory johnson,gregory,johnson,2013-10-16,Male,1959-11-05,56,Greater than 45,African-American,0,6,0,0,31,-22,2013-09-24 02:42:28,2013-09-24 08:13:30,13013422CF10A,2013-09-23,,23,F,Possession of Cocaine,1,14006021CF10A,(M1),0,2014-04-30,Trespass/Property/Other Structure,2014-04-30,2014-05-01,,0,,,,,Risk of Recidivism,6,Medium,2013-10-16,Risk of Violence,7,Medium,2013-10-16,2014-01-22,2014-02-21,31,0,98,0,1\r\n10858,odainey rodney,odainey,rodney,2013-11-16,Male,1989-09-25,26,25 - 45,African-American,0,2,0,0,0,0,2013-11-16 04:21:20,2013-11-19 03:33:50,13015927CF10A,2013-11-15,,1,F,Burglary Conveyance Assault/Bat,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-11-16,Risk of Violence,3,Low,2013-11-16,2013-11-16,2013-11-19,0,3,867,0,0\r\n10859,miah johnson,miah,johnson,2013-09-13,Female,1987-11-26,28,25 - 45,African-American,0,8,0,0,5,-1,2013-09-12 09:19:13,2013-09-13 08:10:02,13012896CF10A,2013-09-12,,1,F,Poss Anti-Shoplifting Device,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-09-13,Risk of Violence,4,Low,2013-09-13,2013-09-12,2013-09-13,5,0,931,0,0\r\n10860,alreegus holmes,alreegus,holmes,2014-02-19,Male,1972-09-13,43,25 - 45,African-American,0,6,0,0,5,0,2014-02-19 04:03:28,2014-03-05 10:06:18,09024482MM10A,,2011-02-10,1105,M,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-02-19,Risk of Violence,7,Medium,2014-02-19,2014-02-19,2014-03-05,5,14,772,0,0\r\n10863,omar browne,omar,browne,2014-01-08,Male,1986-09-22,29,25 - 45,African-American,0,2,0,0,2,-1,2014-01-07 08:32:58,2014-01-08 12:24:55,14000285CF10A,2014-01-07,,1,F,Possession of Cannabis,1,15009255CF10A,(F2),0,2015-07-18,Burglary Dwelling Occupied,2015-07-18,2015-07-19,,1,15009255CF10A,(M1),2015-07-17,Battery,Risk of Recidivism,2,Low,2014-01-08,Risk of Violence,2,Low,2014-01-08,2015-07-18,2015-07-19,2,0,556,1,1\r\n10864,sayon hamilton,sayon,hamilton,2013-03-20,Male,1993-06-20,22,Less than 25,African-American,0,7,0,1,1,0,2013-03-20 12:28:45,2013-03-21 04:00:30,13003992CF10A,2013-03-19,,1,F,Grand Theft (Motor Vehicle),1,13009850CF10A,(F3),1,2013-07-12,Possession Burglary Tools,2013-07-13,2013-08-22,,0,,,,,Risk of Recidivism,7,Medium,2013-03-20,Risk of Violence,7,Medium,2013-03-20,2013-03-20,2013-03-21,1,1,114,1,1\r\n10865,douglas bell,douglas,bell,2013-03-07,Male,1941-07-10,74,Greater than 45,Caucasian,0,1,0,0,2,-1,2013-03-06 11:28:06,2013-03-16 01:41:01,05003601CF10A,,2013-03-06,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-07,Risk of Violence,1,Low,2013-03-07,2013-03-06,2013-03-16,2,9,1121,0,0\r\n10869,jeffrey jackson,jeffrey,jackson,2013-05-08,Male,1968-12-03,47,Greater than 45,African-American,0,10,0,0,4,-1,2013-05-07 04:24:58,2013-07-10 11:23:00,13006520CF10A,2013-05-07,,1,F,Possession of Cocaine,1,14009697CF10A,(F3),0,2014-07-16,Possession of Cocaine,2014-07-16,2014-11-11,,1,15003240CF10A,(F2),2015-03-09,Arson II (Vehicle),Risk of Recidivism,10,High,2013-05-08,Risk of Violence,2,Low,2013-05-08,2013-10-14,2014-04-25,4,63,159,0,1\r\n10870,lorraine loftis,lorraine,loftis,2014-10-22,Female,1973-12-26,42,25 - 45,Caucasian,0,8,0,0,4,-10,2014-10-12 12:32:44,2014-10-17 09:07:12,14013745CF10A,2014-10-11,,11,F,Battery Emergency Care Provide,1,15004431MM10A,(M2),0,2015-04-18,Defrauding Innkeeper $300/Less,2015-04-18,2015-04-24,,0,,,,,Risk of Recidivism,8,High,2014-10-22,Risk of Violence,1,Low,2014-10-22,2014-12-15,2015-01-05,4,0,54,0,1\r\n10871,gina hawkins,gina,hawkins,2013-04-01,Female,1972-07-28,43,25 - 45,Caucasian,0,1,0,0,0,-2,2013-03-30 11:02:54,2013-03-31 02:41:31,13006131MM10A,2013-03-30,,2,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-04-01,Risk of Violence,1,Low,2013-04-01,2013-03-30,2013-03-31,0,0,1096,0,0\r\n10873,kristina velez,kristina,velez,2013-05-29,Female,1987-10-31,28,25 - 45,African-American,0,5,0,0,6,-1,2013-05-28 03:55:02,2013-05-30 05:36:04,13010260MM10A,2013-05-28,,1,M,Unlaw LicTag/Sticker Attach,1,14008137TC10A,(M2),61,2013-12-27,Susp Drivers Lic 1st Offense,2014-02-26,2014-02-27,,0,,,,,Risk of Recidivism,5,Medium,2013-05-29,Risk of Violence,3,Low,2013-05-29,2013-05-28,2013-05-30,6,1,212,1,1\r\n10874,laneatra brown,laneatra,brown,2013-10-21,Female,1992-01-26,24,Less than 25,African-American,0,4,0,0,0,-3,2013-10-18 10:54:07,2013-10-19 05:46:07,13014619CF10A,2013-10-18,,3,F,Corrupt Public Servant,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-10-21,Risk of Violence,4,Low,2013-10-21,2015-07-20,2015-07-21,0,0,637,0,0\r\n10875,jeremy gordontoylor,jeremy,gordontoylor,2013-01-30,Male,1990-04-07,26,25 - 45,Asian,0,3,0,0,2,-1,2013-01-29 12:36:15,2013-08-17 05:08:15,12017918CF10A,,2013-01-29,1,F,arrest case no charge,1,14011963MM10A,(M1),0,2014-08-07,Tresspass in Struct/Convey Occupy,2014-08-07,2014-08-25,,1,14015887CF10A,(F3),2014-11-26,Att Robbery Sudd Snatch No Weap,Risk of Recidivism,3,Low,2013-01-30,Risk of Violence,5,Medium,2013-01-30,2013-12-12,2013-12-17,2,199,316,0,1\r\n10876,alfonso jackson,alfonso,jackson,2013-04-22,Male,1959-12-06,56,Greater than 45,African-American,0,2,0,0,0,-1,2013-04-21 01:36:24,2013-04-22 01:00:45,13007672MM10A,2013-04-21,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-22,Risk of Violence,1,Low,2013-04-22,2013-04-21,2013-04-22,0,0,1075,0,0\r\n10878,luis pena,luis,pena,2013-02-08,Male,1968-07-14,47,Greater than 45,Hispanic,0,6,0,0,3,-1,2013-02-07 10:53:41,2013-02-13 09:36:28,13005871TC10A,2013-02-07,,1,M,Driving License Suspended,1,14014804CF10A,(F3),0,2014-11-04,Petit Theft Habitual Offender,2014-11-04,2014-12-20,,0,,,,,Risk of Recidivism,6,Medium,2013-02-08,Risk of Violence,1,Low,2013-02-08,2014-11-04,2014-12-20,3,5,634,1,1\r\n10879,muhammad altaf,muhammad,altaf,2013-12-23,Male,1966-04-22,49,Greater than 45,Caucasian,0,1,0,0,0,-1,2013-12-22 03:16:48,2013-12-23 04:13:00,13017629CF10A,2013-12-22,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-12-23,Risk of Violence,1,Low,2013-12-23,2013-12-22,2013-12-23,0,0,830,0,0\r\n10880,jeanne allen,jeanne,allen,2013-09-16,Female,1979-05-15,36,25 - 45,Other,0,1,0,0,1,-1,2013-09-15 12:56:55,2013-09-16 09:34:51,13017576MM10A,2013-09-15,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-16,Risk of Violence,1,Low,2013-09-16,2013-09-15,2013-09-16,1,0,928,0,0\r\n10881,nelson miranda,nelson,miranda,2014-05-20,Male,1979-11-18,36,25 - 45,Hispanic,1,10,0,0,20,-222,2013-10-10 12:21:39,2014-05-20 10:33:29,13015562CF10A,,2013-11-21,180,F,arrest case no charge,1,14009941CF10A,(F3),,2014-06-21,Driving While License Revoked,,,,0,,,,,Risk of Recidivism,10,High,2014-05-20,Risk of Violence,9,High,2014-05-20,2013-10-10,2014-05-20,20,0,32,1,1\r\n10882,adrian harper,adrian,harper,2014-01-13,Female,1992-02-18,24,Less than 25,Caucasian,0,4,0,0,1,-3,2014-01-10 05:37:54,2014-01-13 11:49:39,14000458CF10A,2014-01-10,,3,F,Burglary Structure Occupied,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-01-13,Risk of Violence,4,Low,2014-01-13,2014-01-10,2014-01-13,1,0,809,0,0\r\n10883,utwain davis,utwain,davis,2013-05-28,Male,1985-08-27,30,25 - 45,African-American,0,4,0,0,3,-1,2013-05-27 08:36:19,2013-05-29 10:38:42,13007563CF10A,2013-05-27,,1,F,Resist Officer w/Violence,1,14008733TC10A,(M1),169,2014-01-12,Opert With Susp DL 2nd Offens,2014-06-30,2014-07-13,,0,,,,,Risk of Recidivism,4,Low,2013-05-28,Risk of Violence,2,Low,2013-05-28,2013-05-27,2013-05-29,3,1,229,1,1\r\n10884,michael russo,michael,russo,2013-02-01,Male,1988-03-16,28,25 - 45,Caucasian,0,6,0,0,11,-1,2013-01-31 06:11:58,2013-02-01 08:36:46,13001560CF10A,,2013-01-31,1,F,arrest case no charge,1,15004516MM40A,(M2),,2015-11-22,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2013-02-01,Risk of Violence,5,Medium,2013-02-01,2013-01-31,2013-02-01,11,0,1024,1,0\r\n10885,euridice mullen,euridice,mullen,2013-08-13,Female,1966-02-27,50,Greater than 45,Hispanic,0,3,0,0,1,-1,2013-08-12 08:50:17,2013-08-13 02:06:08,13011324CF10A,2013-08-12,,1,F,Battery on a Person Over 65,1,13003430MM40A,(M2),,2013-08-25,Petit Theft,,,,0,,,,,Risk of Recidivism,3,Low,2013-08-13,Risk of Violence,1,Low,2013-08-13,2013-08-12,2013-08-13,1,0,12,1,1\r\n10886,huey hodges,huey,hodges,2014-03-04,Female,1976-10-29,39,25 - 45,African-American,0,7,0,0,1,-1,2014-03-03 07:26:40,2014-03-06 04:37:40,14003015CF10A,,2014-03-03,1,F,arrest case no charge,1,15001019CF10A,(F3),0,2015-01-22,Tampering With Physical Evidence,2015-01-22,2015-05-19,,0,,,,,Risk of Recidivism,7,Medium,2014-03-04,Risk of Violence,2,Low,2014-03-04,2015-01-22,2015-05-19,1,2,324,1,1\r\n10888,kemisha douglas,kemisha,douglas,2014-05-23,Female,1989-12-19,26,25 - 45,African-American,0,8,0,0,4,-1,2014-05-22 04:00:39,2014-05-23 01:52:25,14008779CF10A,2014-05-22,,1,F,Felony Battery,1,15007820CF10A,(M1),0,2015-05-08,Possess Cannabis/20 Grams Or Less,2015-05-08,2015-05-15,,1,15007820CF10A,(F3),2015-05-08,Felony Battery w/Prior Convict,Risk of Recidivism,8,High,2014-05-23,Risk of Violence,4,Low,2014-05-23,2015-05-08,2015-05-15,4,0,350,1,1\r\n10889,jerry brown,jerry,brown,2013-02-15,Male,1959-10-30,56,Greater than 45,African-American,0,7,0,0,4,-1,2013-02-14 07:01:45,2013-03-03 04:41:34,13002318CF10A,2013-02-14,,1,F,Poss of Cocaine W/I/D/S 1000FT Park,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-02-15,Risk of Violence,4,Low,2013-02-15,2013-02-14,2013-03-03,4,16,1141,0,0\r\n10893,mark galavotti,mark,galavotti,2013-03-15,Male,1957-10-18,58,Greater than 45,Caucasian,0,2,0,0,8,-1,2013-03-14 03:26:36,2013-03-15 06:34:03,13003759CF10A,2013-03-14,,1,M,Criminal Mischief,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-15,Risk of Violence,1,Low,2013-03-15,2013-03-14,2013-03-15,8,0,1113,0,0\r\n10894,kevin williams,kevin,williams,2014-02-14,Male,1982-04-24,33,25 - 45,African-American,0,4,0,0,3,0,2014-02-14 04:44:55,2014-02-14 08:28:11,14002138CF10A,2014-02-14,,0,F,Carrying Concealed Firearm,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2014-02-14,Risk of Violence,4,Low,2014-02-14,2014-02-14,2014-02-14,3,0,777,0,0\r\n10895,sheena murphy,sheena,murphy,2013-04-24,Female,1984-07-04,31,25 - 45,African-American,0,8,0,0,9,-1,2013-04-23 09:36:47,2013-04-24 01:57:12,13005848CF10A,2013-04-23,,1,F,Grand Theft in the 3rd Degree,1,13015952CF10A,(F3),0,2013-11-16,Grand Theft in the 3rd Degree,2013-11-16,2013-11-17,,0,,,,,Risk of Recidivism,8,High,2013-04-24,Risk of Violence,2,Low,2013-04-24,2013-11-16,2013-11-17,9,0,206,1,1\r\n10896,lloyd brown,lloyd,brown,2013-04-25,Male,1980-11-24,35,25 - 45,African-American,0,6,0,0,18,-112,2013-01-03 02:16:26,2013-04-25 11:11:34,12017258CF10A,,2013-01-11,104,F,arrest case no charge,1,13028018TC10A,(M2),,2013-05-23,Posses/Disply Susp/Revk/Frd DL,,,,0,,,,,Risk of Recidivism,6,Medium,2013-04-25,Risk of Violence,6,Medium,2013-04-25,2015-05-05,2020-01-01,18,0,28,1,1\r\n10897,adam schult,adam,schult,2013-04-15,Male,1990-05-20,25,25 - 45,Caucasian,4,8,0,0,5,-1,2013-04-14 07:01:35,2013-04-24 07:08:21,13007177MM10A,2013-04-14,,1,M,Resist/Obstruct W/O Violence,1,15007528CF10A,(F2),,2015-04-27,Agg Fleeing/Eluding High Speed,,,,1,15007528CF10A,(F2),2015-04-27,Agg Fleeing/Eluding High Speed,Risk of Recidivism,8,High,2013-04-15,Risk of Violence,7,Medium,2013-04-15,2013-04-14,2013-04-24,5,9,742,1,0\r\n10899,thomas blankenship,thomas,blankenship,2014-08-15,Male,1990-07-16,25,25 - 45,Caucasian,0,5,0,0,7,-4,2014-08-11 05:50:55,2014-08-14 09:05:30,14012107MM10A,2014-08-11,,4,M,Trespass Struct/Conveyance,1,14013412CF10A,(M1),1,2014-10-04,Possess Drug Paraphernalia,2014-10-05,2014-11-17,,0,,,,,Risk of Recidivism,5,Medium,2014-08-15,Risk of Violence,5,Medium,2014-08-15,2014-10-05,2014-11-17,7,0,50,1,1\r\n10900,stanley givens,stanley,givens,2014-02-19,Male,1992-10-01,23,Less than 25,African-American,0,2,0,1,0,,,,14002360CF10A,2014-02-19,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-19,Risk of Violence,3,Low,2014-02-19,,,0,0,772,0,0\r\n10903,quincy charles,quincy,charles,2014-06-17,Male,1995-06-07,20,Less than 25,African-American,0,10,0,1,1,-1,2014-06-16 06:35:11,2014-10-03 07:02:27,14008325CF10A,2014-06-16,,1,F,Burglary Unoccupied Dwelling,1,16000911CF10A,(M1),0,2016-01-22,Possess Cannabis/20 Grams Or Less,2016-01-22,2016-03-08,,0,,,,,Risk of Recidivism,10,High,2014-06-17,Risk of Violence,10,High,2014-06-17,2014-12-04,2015-04-01,1,108,170,0,1\r\n10907,dominique akins,dominique,akins,2014-01-17,Female,1986-04-13,30,25 - 45,Caucasian,0,5,0,0,3,0,2014-01-17 04:30:08,2014-01-18 03:33:37,14000768CF10A,2014-01-17,,0,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2014-01-17,Risk of Violence,2,Low,2014-01-17,2014-01-17,2014-01-18,3,1,805,0,0\r\n10909,kenneth riker,kenneth,riker,2014-07-22,Male,1987-04-16,29,25 - 45,Caucasian,0,10,0,2,14,0,2014-07-22 06:45:28,2014-07-22 08:24:41,14009985CF10A,2014-07-22,,0,F,Grand Theft (Motor Vehicle),1,14014095MM10A,(M1),0,2014-09-23,Carrying A Concealed Weapon,2014-09-23,2014-10-02,,0,,,,,Risk of Recidivism,10,High,2014-07-22,Risk of Violence,10,High,2014-07-22,2014-08-27,2014-09-09,14,0,36,0,1\r\n10910,norberto nieves,norberto,nieves,2013-09-22,Male,1985-01-19,31,25 - 45,Hispanic,0,6,0,0,1,-1,2013-09-21 07:38:34,2014-01-16 12:08:33,13018017MM10A,2013-09-21,,1,M,Driving License Suspended,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-09-22,Risk of Violence,5,Medium,2013-09-22,2013-09-21,2014-01-16,1,116,922,0,0\r\n10911,gary balmer,gary,balmer,2013-08-22,Male,1976-07-15,39,25 - 45,Caucasian,0,4,0,0,5,-60,2013-06-23 02:23:40,2013-06-24 08:43:12,13012010MM10A,2013-06-23,,60,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-08-22,Risk of Violence,3,Low,2013-08-22,2013-06-23,2013-06-24,5,0,953,0,0\r\n10913,miguelson pericles,miguelson,pericles,2013-05-13,Male,1994-07-18,21,Less than 25,African-American,0,7,0,0,0,0,2013-05-13 02:38:51,2013-05-13 07:19:19,13006834CF10A,2013-05-13,,0,F,Poss F/Arm Delinq,1,13028844TC10A,(M2),,2013-07-02,Operating W/O Valid License,,,,1,13010999CF10A,(F3),2013-08-06,Attempted Robbery  No Weapon,Risk of Recidivism,7,Medium,2013-05-13,Risk of Violence,7,Medium,2013-05-13,2015-10-26,2015-12-02,0,0,50,1,1\r\n10914,donald holton,donald,holton,2013-12-30,Male,1969-09-03,46,Greater than 45,African-American,0,5,0,0,13,-40,2013-11-20 04:31:32,2013-12-11 11:56:55,13016204CF10A,,2013-11-20,40,F,arrest case no charge,1,14060465TC20A,(M2),,2014-08-23,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-30,Risk of Violence,3,Low,2013-12-30,2013-11-20,2013-12-11,13,0,236,1,1\r\n10917,darrell miller,darrell,miller,2014-12-24,Male,1972-03-29,44,25 - 45,African-American,0,5,0,1,11,-1,2014-12-23 05:13:16,2014-12-24 09:02:38,14011986CF10A,,2014-12-23,1,F,arrest case no charge,1,15000602CF10A,(F2),0,2015-01-14,Strong Armed  Robbery,2015-01-14,2015-10-08,,1,15000602CF10A,(F7),2015-01-14,Burglary Dwelling Assault/Batt,Risk of Recidivism,5,Medium,2014-12-24,Risk of Violence,3,Low,2014-12-24,2015-01-14,2015-10-08,11,0,21,1,1\r\n10918,curtis woolwine,curtis,woolwine,2014-01-23,Male,1986-04-09,30,25 - 45,Caucasian,0,3,0,0,2,-1,2014-01-22 08:24:04,2014-03-26 09:45:11,12010890CF10A,,2014-01-22,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-01-23,Risk of Violence,2,Low,2014-01-23,2014-01-22,2014-03-26,2,62,799,0,0\r\n10919,wilensky saintil,wilensky,saintil,2014-01-02,Male,1980-04-30,35,25 - 45,African-American,0,6,0,1,12,0,2014-01-02 01:12:50,2014-01-03 11:08:07,14000088MM10A,2014-01-01,,1,M,Battery,1,14000496CF10A,(F3),0,2014-01-11,Grand Theft in the 3rd Degree,2014-01-11,2014-01-22,,0,,,,,Risk of Recidivism,6,Medium,2014-01-02,Risk of Violence,3,Low,2014-01-02,2014-01-11,2014-01-22,12,1,9,1,1\r\n10920,bradley ecklund,bradley,ecklund,2013-01-11,Male,1981-06-23,34,25 - 45,Caucasian,0,5,0,0,4,0,2013-01-11 01:39:37,2013-01-12 03:08:33,13000503CF10A,2013-01-10,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-01-11,Risk of Violence,5,Medium,2013-01-11,2015-07-23,2015-07-23,4,1,923,0,0\r\n10921,gabriele lubin,gabriele,lubin,2013-04-16,Male,1990-03-27,26,25 - 45,African-American,0,2,0,0,2,-1,2013-04-15 06:36:52,2013-04-16 01:55:52,12019369TC10A,2012-04-08,,373,M,Unlaw LicTag/Sticker Attach,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-16,Risk of Violence,3,Low,2013-04-16,2013-04-15,2013-04-16,2,0,1081,0,0\r\n10922,sixto durand,sixto,durand,2014-01-30,Male,1964-09-05,51,Greater than 45,Caucasian,0,1,0,0,4,-26,2014-01-04 08:25:00,2014-01-05 01:49:50,14000165MM10A,2014-01-04,,26,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-30,Risk of Violence,1,Low,2014-01-30,2014-01-04,2014-01-05,4,0,792,0,0\r\n10924,prasada solomon,prasada,solomon,2014-02-09,Male,1980-02-16,36,25 - 45,African-American,0,2,0,0,0,-1,2014-02-08 07:50:02,2014-02-11 06:47:00,14005069MU10A,2014-02-08,,1,M,DUI - Enhanced,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-09,Risk of Violence,1,Low,2014-02-09,2014-02-08,2014-02-11,0,2,782,0,0\r\n10925,john mazmanian,john,mazmanian,2013-05-15,Male,1989-11-05,26,25 - 45,Caucasian,0,2,0,0,3,-1,2013-05-14 11:40:58,2013-05-15 07:20:45,13020309TC10A,2013-05-14,,1,M,Susp Drivers Lic 1st Offense,1,14008135TC10A,(M2),,2013-12-14,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2013-05-15,Risk of Violence,2,Low,2013-05-15,2014-02-11,2014-02-13,3,0,213,1,1\r\n10927,devin richardson,devin,richardson,2013-03-19,Male,1994-08-25,21,Less than 25,African-American,0,6,0,0,1,-1,2013-03-18 06:47:56,2013-04-17 05:52:36,13003944CF10A,2013-03-18,,1,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2013-03-19,Risk of Violence,5,Medium,2013-03-19,2013-03-18,2013-04-17,1,29,1109,0,0\r\n10928,leevon cruse,leevon,cruse,2013-02-09,Male,1956-06-13,59,Greater than 45,African-American,0,5,0,0,5,0,2013-02-09 08:15:34,2013-07-10 12:55:41,07003637MO10A,2007-02-15,,2186,M,Alcoholic Beverage Violation-FL,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-02-09,Risk of Violence,3,Low,2013-02-09,2015-07-08,2015-07-14,5,151,879,0,0\r\n10930,jatez blount,jatez,blount,2013-08-10,Male,1986-10-24,29,25 - 45,African-American,0,7,2,0,7,-1,2013-08-09 01:17:51,2013-08-13 01:37:20,13011193CF10A,2013-08-08,,2,F,Attempted Deliv Control Subst,1,13015424CF10A,(F3),0,2013-11-05,Possession of Cocaine,2013-11-05,2014-07-08,,0,,,,,Risk of Recidivism,7,Medium,2013-08-10,Risk of Violence,6,Medium,2013-08-10,2013-11-05,2014-07-08,7,3,87,1,1\r\n10931,bryan torres,bryan,torres,2013-10-21,Male,1988-02-25,28,25 - 45,Hispanic,0,3,0,0,1,-1,2013-10-20 11:40:38,2013-10-21 02:31:56,13014675CF10A,2013-10-20,,1,F,Robbery Sudd Snatch No Weapon,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-21,Risk of Violence,2,Low,2013-10-21,2013-10-20,2013-10-21,1,0,893,0,0\r\n10932,jason reid,jason,reid,2013-03-30,Male,1978-05-26,37,25 - 45,African-American,0,3,0,0,4,-1,2013-03-29 01:17:49,2013-03-30 08:27:14,13004546CF10A,2013-03-29,,1,F,Fleeing Or Attmp Eluding A Leo,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-03-30,Risk of Violence,2,Low,2013-03-30,2013-03-29,2013-03-30,4,0,1098,0,0\r\n10934,ismael ramos,ismael,ramos,2013-01-25,Male,1974-12-02,41,25 - 45,Caucasian,0,1,0,0,0,0,2013-01-25 05:56:04,2013-01-25 07:46:25,13001848MM10A,2013-01-25,,0,M,Driving Under The Influence,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-25,Risk of Violence,1,Low,2013-01-25,2013-01-25,2013-01-25,0,0,1162,0,0\r\n10935,joan rosario,joan,rosario,2013-04-15,Male,1984-08-13,31,25 - 45,Hispanic,1,9,0,0,7,-1,2013-04-14 01:01:47,2013-04-15 03:46:11,13015938TC10A,2013-04-14,,1,M,Susp Drivers Lic 1st Offense,1,14013415CF10A,(F3),0,2014-10-05,Driving While License Revoked,2014-10-05,2014-10-06,,0,,,,,Risk of Recidivism,9,High,2013-04-15,Risk of Violence,5,Medium,2013-04-15,2014-10-05,2014-10-06,7,0,538,1,1\r\n10936,breon perry,breon,perry,2013-11-13,Male,1993-04-18,23,Less than 25,African-American,0,6,0,0,0,-1,2013-11-12 04:56:48,2013-11-14 02:50:06,13015729CF10A,2013-11-12,,1,F,Burglary Conveyance Unoccup,1,14006802MM10A,(M1),0,2014-04-23,Resist/Obstruct W/O Violence,2014-04-23,2014-04-28,,0,,,,,Risk of Recidivism,6,Medium,2013-11-13,Risk of Violence,5,Medium,2013-11-13,2014-04-23,2014-04-28,0,1,161,1,1\r\n10939,katherine cambareri,katherine,cambareri,2013-06-25,Female,1962-02-04,54,Greater than 45,Caucasian,0,1,0,0,1,-2,2013-06-23 08:13:05,2013-06-24 08:15:59,13012008MM10A,2013-06-23,,2,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-06-25,Risk of Violence,1,Low,2013-06-25,2013-06-23,2013-06-24,1,0,1011,0,0\r\n10940,jonathan cruz,jonathan,cruz,2014-02-09,Male,1986-03-10,30,25 - 45,Caucasian,0,9,0,0,2,-1,2014-02-08 06:04:28,2014-02-14 06:14:23,14002208MM10A,2014-02-08,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2014-02-09,Risk of Violence,7,Medium,2014-02-09,2014-02-08,2014-02-14,2,5,782,0,0\r\n10941,georbel gonzalez-rodriguez,georbel,gonzalez-rodriguez,2013-03-30,Male,1987-12-22,28,25 - 45,Caucasian,0,4,0,0,0,-1,2013-03-29 04:43:06,2013-03-30 08:21:07,13006091MM10A,2013-03-29,,1,M,Battery,1,13011202MM10A,(M1),0,2013-05-10,Battery,2013-05-10,2013-05-10,,1,13006734CF10A,(F3),2013-05-10,Aggravated Assault W/dead Weap,Risk of Recidivism,4,Low,2013-03-30,Risk of Violence,3,Low,2013-03-30,2013-05-10,2013-05-10,0,0,41,0,1\r\n10942,khameron walls,khameron,walls,2013-01-21,Male,1994-02-14,22,Less than 25,African-American,0,5,0,0,0,-1,2013-01-20 04:48:05,2013-01-22 08:48:56,13001376MM10A,2013-01-20,,1,M,Battery,1,15002228MM10A,(M1),0,2015-02-23,Trespass After Warning,2015-02-23,2015-02-24,,0,,,,,Risk of Recidivism,5,Medium,2013-01-21,Risk of Violence,7,Medium,2013-01-21,2015-02-23,2015-02-24,0,1,763,1,0\r\n10945,michael bryant,michael,bryant,2013-04-13,Male,1994-07-29,21,Less than 25,African-American,0,8,0,0,0,-1,2013-04-12 05:11:48,2013-04-13 11:10:09,13005290CF10A,2013-04-12,,1,F,Grand Theft in the 3rd Degree,1,14011209TC30A,(M2),,2014-01-19,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,8,High,2013-04-13,Risk of Violence,7,Medium,2013-04-13,2015-07-22,2015-07-23,0,0,281,1,1\r\n10946,rachard guide,rachard,guide,2013-05-05,Male,1988-11-05,27,25 - 45,African-American,0,5,0,2,1,-1,2013-05-04 07:48:46,2013-05-20 08:17:45,13008645MM10A,2013-05-04,,1,M,DUI Property Damage/Injury,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-05-05,Risk of Violence,8,High,2013-05-05,2013-05-04,2013-05-20,1,15,1062,0,0\r\n10947,rudolph young,rudolph,young,2013-05-20,Male,1955-01-02,61,Greater than 45,African-American,0,9,0,0,4,-1,2013-05-19 06:28:36,2013-05-22 05:48:25,10008587MO10A,2010-02-27,,1178,M,Alcoholic Beverage Violation-FL,1,13035683TC20A,(M2),,2013-06-03,Driving License Suspended,,,,0,,,,,Risk of Recidivism,9,High,2013-05-20,Risk of Violence,3,Low,2013-05-20,2013-05-19,2013-05-22,4,2,14,1,1\r\n10948,anthony lupo,anthony,lupo,2013-12-05,Male,1964-07-04,51,Greater than 45,Caucasian,0,3,0,0,7,35,2014-01-09 01:09:05,2014-01-09 08:58:14,13016789CF10A,2013-10-04,,62,F,Tamper With Witness,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-12-05,Risk of Violence,1,Low,2013-12-05,2014-01-09,2014-01-09,7,0,35,0,0\r\n10949,eugene farris,eugene,farris,2014-08-11,Male,1997-01-14,19,Less than 25,African-American,1,9,0,0,1,578,2016-03-11 10:26:16,2016-03-12 01:11:40,14009978CF10A,2014-06-13,,59,F,Grand Theft in the 3rd Degree,1,16000849CF10A,(F3),106,2015-11-26,Grand Theft (Motor Vehicle),2016-03-11,2016-03-12,,0,,,,,Risk of Recidivism,9,High,2014-08-11,Risk of Violence,9,High,2014-08-11,2016-03-11,2016-03-12,1,0,472,1,1\r\n10950,george dungan,george,dungan,2014-05-12,Male,1956-01-11,60,Greater than 45,Caucasian,0,1,0,0,0,-7,2014-05-05 07:49:54,2014-05-08 09:32:19,14007445MM10A,2014-05-05,,7,M,Petit Theft $100- $300,1,14011838CF10A,(M2),1,2014-08-29,Prostitution/Lewd Act Assignation,2014-08-30,2014-10-18,,0,,,,,Risk of Recidivism,1,Low,2014-05-12,Risk of Violence,1,Low,2014-05-12,2015-05-12,2015-05-27,0,0,109,1,1\r\n10951,ronald munoz,ronald,munoz,2013-04-30,Male,1993-10-18,22,Less than 25,Hispanic,0,3,0,1,0,-1,2013-04-29 09:03:27,2013-04-30 01:01:44,13008303MM10A,2013-04-29,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-04-30,Risk of Violence,5,Medium,2013-04-30,2013-04-29,2013-04-30,0,0,1067,0,0\r\n10952,robert sepulveda,robert,sepulveda,2013-04-09,Male,1982-02-26,34,25 - 45,Caucasian,0,2,0,0,1,-50,2013-02-18 10:13:07,2013-02-19 09:17:41,13002475CF10A,2013-02-18,,50,F,Unauth Poss ID Card or DL,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-09,Risk of Violence,1,Low,2013-04-09,2013-02-18,2013-02-19,1,0,1088,0,0\r\n10954,miguel cruz,miguel,cruz,2013-09-11,Female,1993-12-22,22,Less than 25,Caucasian,0,7,0,0,1,-1,2013-09-10 10:34:03,2013-09-11 02:00:32,13012786CF10A,2013-09-10,,1,F,\"Poss3,4 Methylenedioxymethcath\",0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-09-11,Risk of Violence,6,Medium,2013-09-11,2014-10-02,2015-01-26,1,0,386,0,0\r\n10955,patricia cooke,patricia,cooke,2013-04-06,Female,1967-01-31,49,Greater than 45,Caucasian,0,2,0,0,3,-1,2013-04-05 11:37:54,2013-04-06 01:30:26,13004903CF10A,2013-04-05,,1,F,Grand Theft in the 3rd Degree,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-04-06,Risk of Violence,1,Low,2013-04-06,2013-04-05,2013-04-06,3,0,1091,0,0\r\n10956,linda dawson,linda,dawson,2013-01-26,Female,1955-01-19,61,Greater than 45,Caucasian,0,1,0,0,1,0,2013-01-26 12:29:59,2013-01-26 08:38:29,13001823MM10A,2013-01-25,,1,M,DUI Level 0.15 Or Minor In Veh,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-01-26,Risk of Violence,1,Low,2013-01-26,2013-01-26,2013-01-26,1,0,1161,0,0\r\n10957,kevin brown,kevin,brown,2014-11-24,Male,1965-02-17,51,Greater than 45,African-American,0,6,0,0,7,-1,2014-11-23 05:30:52,2014-11-26 08:33:05,14042761MU10A,2014-11-23,,1,M,Driving Under The Influence,1,15001039TC40A,(M2),,2014-12-27,Driving License Suspended,,,,0,,,,,Risk of Recidivism,6,Medium,2014-11-24,Risk of Violence,3,Low,2014-11-24,2014-11-23,2014-11-26,7,2,33,1,1\r\n10958,edna lewis,edna,lewis,2014-03-09,Female,1967-01-20,49,Greater than 45,Caucasian,0,6,0,0,2,-1,2014-03-08 06:20:31,2014-03-19 01:28:37,14003305CF10A,2014-03-08,,1,F,Grand Theft (Motor Vehicle),0,,,,,,,,,0,,,,,Risk of Recidivism,6,Medium,2014-03-09,Risk of Violence,1,Low,2014-03-09,2014-03-08,2014-03-19,2,10,754,0,0\r\n10960,charneshia ellison,charneshia,ellison,2014-12-11,Female,1991-05-06,24,Less than 25,African-American,0,6,0,0,0,0,2014-12-11 04:44:12,2014-12-11 08:38:53,14016462CF10A,2014-12-11,,0,F,Possession of XLR11,1,15000436TC30A,(M2),50,2014-12-23,Fail Register Vehicle,2015-02-11,2015-02-11,,0,,,,,Risk of Recidivism,6,Medium,2014-12-11,Risk of Violence,3,Low,2014-12-11,2015-06-29,2015-06-30,0,0,12,1,1\r\n10962,yolani moratz,yolani,moratz,2013-08-08,Female,1979-11-05,36,25 - 45,Caucasian,0,6,0,0,4,-10,2013-07-29 05:40:09,2013-07-31 09:36:16,13014353MM10A,2013-07-29,,10,M,Battery,1,15005832CF10A,(F3),0,2015-05-04,Driving While License Revoked,2015-05-04,2015-05-28,,0,,,,,Risk of Recidivism,6,Medium,2013-08-08,Risk of Violence,3,Low,2013-08-08,2014-01-29,2014-01-30,4,0,174,0,1\r\n10963,paul wyatt,paul,wyatt,2013-11-06,Male,1973-09-19,42,25 - 45,Caucasian,0,4,0,0,5,-1,2013-11-05 08:48:20,2013-12-06 11:30:35,13015432CF10A,,2013-11-06,0,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-11-06,Risk of Violence,2,Low,2013-11-06,2013-11-05,2013-12-06,5,30,877,0,0\r\n10964,terrence brown,terrence,brown,2013-02-23,Male,1979-06-08,36,25 - 45,African-American,0,4,0,0,9,-1,2013-02-22 08:41:18,2013-04-21 02:27:19,13002736CF10A,2013-02-22,,1,F,Driving While License Revoked,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-02-23,Risk of Violence,2,Low,2013-02-23,2013-02-22,2013-04-21,9,57,1133,0,0\r\n10965,anthony fields,anthony,fields,2013-03-13,Male,1959-02-20,57,Greater than 45,Caucasian,0,4,0,0,14,-28,2013-02-13 12:13:11,2013-03-05 09:58:38,12015342CF10A,,2013-02-12,29,F,arrest case no charge,1,13010742CF10A,(F3),0,2013-08-01,Possession of Cocaine,2013-08-01,2013-10-29,,0,,,,,Risk of Recidivism,4,Low,2013-03-13,Risk of Violence,2,Low,2013-03-13,2013-08-01,2013-10-29,14,0,141,1,1\r\n10966,shameel koya,shameel,koya,2013-03-04,Male,1979-10-12,36,25 - 45,Caucasian,0,1,0,0,0,-1,2013-03-03 10:17:13,2013-03-04 08:33:46,13004323MM10A,2013-03-03,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-03-04,Risk of Violence,1,Low,2013-03-04,2013-03-03,2013-03-04,0,0,1124,0,0\r\n10967,george bedward,george,bedward,2014-05-31,Male,1981-05-26,34,25 - 45,African-American,0,2,0,0,3,-1,2014-05-30 06:52:01,2014-06-01 12:19:34,14008668MM10A,2014-05-30,,1,M,Disorderly Conduct,1,15066701TC30A,(M2),,2015-10-03,Driving License Suspended,,,,0,,,,,Risk of Recidivism,2,Low,2014-05-31,Risk of Violence,2,Low,2014-05-31,2014-05-30,2014-06-01,3,1,490,1,1\r\n10969,eric sparks,eric,sparks,2013-01-11,Male,1991-07-13,24,Less than 25,African-American,0,3,0,0,2,-1,2013-01-10 09:02:17,2013-02-12 09:16:30,13002115TC10A,,2013-01-11,0,M,arrest case no charge,1,14009468CF10A,(F3),0,2014-07-10,False Imprisonment,2014-07-10,2014-11-18,,1,14009468CF10A,(F2),2014-07-10,Agg Battery Grt/Bod/Harm,Risk of Recidivism,3,Low,2013-01-11,Risk of Violence,4,Low,2013-01-11,2013-07-09,2013-07-16,2,32,179,0,1\r\n10971,eugene drogus,eugene,drogus,2014-01-07,Male,1948-10-17,67,Greater than 45,Caucasian,0,2,0,0,2,-244,2013-05-08 10:06:56,2013-06-05 10:30:00,08023125CF10A,,2013-05-08,244,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-01-07,Risk of Violence,1,Low,2014-01-07,2013-05-08,2013-06-05,2,0,815,0,0\r\n10972,matt munoz,matt,munoz,2013-09-12,Male,1984-03-22,32,25 - 45,Caucasian,0,2,0,0,0,-1,2013-09-11 08:56:37,2013-09-12 07:30:00,13012859CF10A,2013-09-11,,1,F,Pos Cannabis W/Intent Sel/Del,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-12,Risk of Violence,1,Low,2013-09-12,2013-09-11,2013-09-12,0,0,932,0,0\r\n10975,warren aiken,warren,aiken,2013-09-05,Male,1990-09-30,25,25 - 45,African-American,0,2,0,0,1,-14,2013-08-22 09:32:29,2013-08-31 06:13:28,13011827CF10A,2013-08-22,,14,F,Felony Batt(Great Bodily Harm),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-09-05,Risk of Violence,3,Low,2013-09-05,2016-01-22,2016-01-22,1,0,869,0,0\r\n10976,arleen martin,arleen,martin,2014-12-19,Female,1985-08-14,30,25 - 45,Caucasian,0,1,0,0,2,0,2014-12-19 04:46:47,2014-12-20 08:52:23,14017860MM10A,2014-12-19,,0,M,Battery,1,15015652CF10A,(F3),1,2015-12-05,Felony Battery (Dom Strang),2015-12-06,2015-12-07,,1,15015652CF10A,(F3),2015-12-05,Felony Battery (Dom Strang),Risk of Recidivism,1,Low,2014-12-19,Risk of Violence,1,Low,2014-12-19,2014-12-19,2014-12-20,2,1,351,1,1\r\n10977,adrian williams,adrian,williams,2013-09-18,Male,1981-03-09,35,25 - 45,African-American,0,7,0,0,8,0,2013-09-18 04:19:18,2013-11-19 06:13:00,13017778MM10A,2013-09-18,,0,M,Battery,1,14040107TC10A,(M2),175,2014-10-16,Driving License Suspended,2015-04-09,2015-04-10,,0,,,,,Risk of Recidivism,7,Medium,2013-09-18,Risk of Violence,4,Low,2013-09-18,2013-09-18,2013-11-19,8,62,393,1,1\r\n10979,angelita diaz,angelita,diaz,2013-09-06,Male,1972-07-19,43,25 - 45,African-American,0,1,0,0,0,-1,2013-09-05 05:04:14,2013-09-06 06:09:14,13016969MM10A,2013-09-05,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2013-09-06,Risk of Violence,1,Low,2013-09-06,2013-09-05,2013-09-06,0,0,938,0,0\r\n10980,jarvis yates,jarvis,yates,2014-02-27,Male,1987-08-27,28,25 - 45,African-American,0,2,0,0,1,-1,2014-02-26 10:21:54,2014-02-27 08:12:01,14002743CF10A,,2014-02-26,1,F,arrest case no charge,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-02-27,Risk of Violence,2,Low,2014-02-27,2014-02-26,2014-02-27,1,0,764,0,0\r\n10981,orett harrison,orett,harrison,2013-12-25,Male,1984-03-31,32,25 - 45,African-American,0,5,0,0,4,-1,2013-12-24 08:35:19,2013-12-25 07:10:52,13017770CF10A,2013-12-24,,1,F,Felony Driving While Lic Suspd,0,,,,,,,,,0,,,,,Risk of Recidivism,5,Medium,2013-12-25,Risk of Violence,3,Low,2013-12-25,2015-10-09,2015-10-10,4,0,653,0,0\r\n10982,austin harris,austin,harris,2013-10-01,Male,1992-07-07,23,Less than 25,Caucasian,0,8,0,0,0,-1,2013-09-30 10:10:28,2013-10-03 07:24:16,13013703CF10A,2013-09-30,,1,F,Possession Of Methamphetamine,0,,,,,,,,,0,,,,,Risk of Recidivism,8,High,2013-10-01,Risk of Violence,6,Medium,2013-10-01,2013-09-30,2013-10-03,0,2,913,0,0\r\n10984,shantrina stfort,shantrina,stfort,2013-11-05,Female,1995-06-06,20,Less than 25,African-American,0,7,0,0,0,-1,2013-11-04 11:13:31,2013-11-09 09:07:40,13020810MM10A,2013-11-04,,1,M,Battery,1,13020810MM10A,(M2),,2013-11-27,Criminal Mischief,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-05,Risk of Violence,7,Medium,2013-11-05,2013-11-04,2013-11-09,0,4,22,1,1\r\n10985,kyle miller,kyle,miller,2014-01-22,Male,1986-04-08,30,25 - 45,African-American,0,10,1,0,19,0,2014-01-22 02:45:28,2014-01-31 09:04:40,14000909CF10A,2014-01-21,,1,F,Possession of Cocaine,1,14024174TC10A,(M2),,2014-06-15,Operating W/O Valid License,,,,0,,,,,Risk of Recidivism,10,High,2014-01-22,Risk of Violence,7,Medium,2014-01-22,2014-01-22,2014-01-31,19,9,144,1,1\r\n10987,ceasar gomez,ceasar,gomez,2013-03-31,Male,1990-02-07,26,25 - 45,Hispanic,0,2,0,0,0,0,2013-03-31 02:52:44,2013-09-20 10:30:37,13004619CF10A,2013-03-31,,0,F,Felony Battery (Dom Strang),0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2013-03-31,Risk of Violence,3,Low,2013-03-31,2014-02-16,2014-02-27,0,173,322,0,0\r\n10988,luis fernandez,luis,fernandez,2013-10-27,Male,1971-09-19,44,25 - 45,Hispanic,0,3,0,0,0,-1,2013-10-26 08:09:42,2013-10-27 08:21:36,13014982CF10A,2013-10-26,,1,F,Uttering a Forged Instrument,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2013-10-27,Risk of Violence,1,Low,2013-10-27,2013-10-26,2013-10-27,0,0,887,0,0\r\n10989,rodney montgomery,rodney,montgomery,2013-12-28,Male,1985-09-28,30,25 - 45,African-American,0,4,0,0,2,-1,2013-12-27 09:29:12,2014-01-02 06:27:38,13023885MM10A,2013-12-27,,1,M,Battery,0,,,,,,,,,0,,,,,Risk of Recidivism,4,Low,2013-12-28,Risk of Violence,3,Low,2013-12-28,2013-12-27,2014-01-02,2,5,825,0,0\r\n10990,christopher tun,christopher,tun,2013-05-28,Male,1992-04-28,23,Less than 25,Caucasian,0,10,2,1,5,52,2013-07-19 11:56:18,2013-08-01 05:43:19,11000491MM30A,,2013-01-06,142,M,arrest case no charge,1,15002327MM10A,(M2),0,2014-11-16,Assault,2014-11-16,2015-03-06,,1,15002327MM10A,(M2),2014-11-16,Assault,Risk of Recidivism,10,High,2013-05-28,Risk of Violence,9,High,2013-05-28,2013-07-19,2013-08-01,5,0,52,0,1\r\n10992,alexander vega,alexander,vega,2013-05-10,Male,1994-07-15,21,Less than 25,Caucasian,0,6,0,0,0,-1,2013-05-09 04:06:12,2013-05-12 07:12:14,13006688CF10A,2013-05-09,,1,M,Grand Theft (Motor Vehicle),1,15000662MM20A,(M1),,2015-02-23,Possess Cannabis/20 Grams Or Less,,,,0,,,,,Risk of Recidivism,6,Medium,2013-05-10,Risk of Violence,7,Medium,2013-05-10,2013-05-09,2013-05-12,0,2,654,1,1\r\n10994,jarred payne,jarred,payne,2014-05-10,Male,1985-07-31,30,25 - 45,African-American,0,2,0,0,0,-1,2014-05-09 10:01:33,2014-05-10 08:28:12,14006477CF10A,2014-05-09,,1,M,Possess Cannabis/20 Grams Or Less,1,15013710CF10A,(F3),1,2015-10-21,Possession of Cannabis,2015-10-22,2015-10-22,,0,,,,,Risk of Recidivism,2,Low,2014-05-10,Risk of Violence,2,Low,2014-05-10,2015-10-22,2015-10-22,0,0,529,1,1\r\n10995,raheem smith,raheem,smith,2013-10-20,Male,1995-06-28,20,Less than 25,African-American,0,9,0,0,0,-1,2013-10-19 11:17:15,2013-10-20 08:13:06,13014650CF10A,2013-10-19,,1,F,Possession of Cocaine,0,,,,,,,,,0,,,,,Risk of Recidivism,9,High,2013-10-20,Risk of Violence,9,High,2013-10-20,2014-04-07,2014-04-27,0,0,169,0,0\r\n10996,steven butler,steven,butler,2013-11-23,Male,1992-07-17,23,Less than 25,African-American,0,7,0,0,0,-1,2013-11-22 05:18:27,2013-11-24 02:59:20,13016249CF10A,2013-11-22,,1,F,Deliver Cannabis,0,,,,,,,,,0,,,,,Risk of Recidivism,7,Medium,2013-11-23,Risk of Violence,5,Medium,2013-11-23,2013-11-22,2013-11-24,0,1,860,0,0\r\n10997,malcolm simmons,malcolm,simmons,2014-02-01,Male,1993-03-25,23,Less than 25,African-American,0,3,0,0,0,-1,2014-01-31 07:13:54,2014-02-02 04:03:52,14001422CF10A,2014-01-31,,1,F,Leaving the Scene of Accident,0,,,,,,,,,0,,,,,Risk of Recidivism,3,Low,2014-02-01,Risk of Violence,5,Medium,2014-02-01,2014-01-31,2014-02-02,0,1,790,0,0\r\n10999,winston gregory,winston,gregory,2014-01-14,Male,1958-10-01,57,Greater than 45,Other,0,1,0,0,0,-1,2014-01-13 05:48:01,2014-01-14 07:49:46,14000581CF10A,2014-01-13,,1,F,Aggravated Battery / Pregnant,0,,,,,,,,,0,,,,,Risk of Recidivism,1,Low,2014-01-14,Risk of Violence,1,Low,2014-01-14,2014-01-13,2014-01-14,0,0,808,0,0\r\n11000,farrah jean,farrah,jean,2014-03-09,Female,1982-11-17,33,25 - 45,African-American,0,2,0,0,3,-1,2014-03-08 08:06:02,2014-03-09 12:18:04,14003308CF10A,2014-03-08,,1,M,Battery on Law Enforc Officer,0,,,,,,,,,0,,,,,Risk of Recidivism,2,Low,2014-03-09,Risk of Violence,2,Low,2014-03-09,2014-03-08,2014-03-09,3,0,754,0,0\r\n11001,florencia sanmartin,florencia,sanmartin,2014-06-30,Female,1992-12-18,23,Less than 25,Hispanic,0,4,0,0,2,-2,2014-06-28 12:16:41,2014-06-30 11:19:23,14008895CF10A,2014-06-28,,2,F,Possession of Ethylone,1,15008160TC10A,(M2),0,2015-03-15,Operating W/O Valid License,2015-03-15,2015-03-15,,0,,,,,Risk of Recidivism,4,Low,2014-06-30,Risk of Violence,4,Low,2014-06-30,2015-03-15,2015-03-15,2,0,258,0,1\r\n"
  },
  {
    "path": "week-5/kitchen-confusion-matrix.csv",
    "content": ",name,fruit_or_veg,exotic,in_season,imported,score,eaten\n0,apple,fruit,False,True,True,0,False\n1,apricot,fruit,True,True,False,3,True\n2,banana,fruit,False,True,False,1,True\n3,blueberry,fruit,False,True,False,1,True\n4,blackberry,fruit,True,False,False,2,True\n5,cantaloupe,fruit,False,True,False,1,False\n6,coconut,fruit,True,True,False,3,True\n7,coffee bean,fruit,False,False,False,0,False\n8,durian,fruit,True,True,False,3,True\n9,grape,fruit,False,False,False,0,False\n10,grapefruit,fruit,False,False,False,0,True\n11,lime,fruit,False,True,False,1,True\n12,mango,fruit,True,True,False,3,True\n13,orange,fruit,False,False,False,0,True\n14,pineapple,fruit,True,True,False,3,True\n15,peach,fruit,False,True,False,1,False\n16,pear,fruit,False,True,False,1,False\n17,plum,fruit,False,False,False,0,False\n18,quince,fruit,True,True,False,3,True\n19,raspberry,fruit,False,True,True,0,False\n20,rhubarb,fruit,True,True,False,3,True\n21,strawberry,fruit,False,True,False,1,True\n22,sugar cane,fruit,True,True,False,3,True\n23,tamirand,fruit,True,True,False,3,True\n24,watermelon,fruit,False,False,False,0,False\n25,avocado,veg,True,True,True,2,True\n26,artichoke,veg,True,True,True,2,False\n27,asparagus,veg,True,True,True,2,True\n28,brussels sprout,veg,False,False,True,-1,False\n29,green beans,veg,False,True,True,0,True\n30,beet,veg,False,False,False,0,False\n31,carrot,veg,False,False,True,-1,False\n32,corn,veg,False,False,True,-1,False\n33,cabbage,veg,False,True,True,0,False\n34,celery,veg,False,False,True,-1,False\n35,cucumber,veg,False,False,True,-1,False\n36,eggplant,veg,True,False,True,1,True\n37,garlic,veg,False,False,True,-1,False\n38,kale,veg,False,True,True,0,False\n39,lettuce,veg,False,True,True,0,False\n40,mushroom,veg,False,True,False,1,True\n41,onion,veg,False,False,True,-1,False\n42,potato,veg,False,False,True,-1,False\n43,green peas,veg,False,False,True,-1,True\n44,pumpkin,veg,True,False,False,2,True\n45,radish,veg,False,False,True,-1,True\n46,spinach,veg,False,False,True,-1,False\n47,sweet potato,veg,False,False,True,-1,False\n48,tomato,veg,False,False,False,0,False\n49,zucchini,veg,False,False,False,0,False\n"
  },
  {
    "path": "week-5/kitchen-confusion-matrix.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Kitchen Confusion Matrix\\n\",\n    \"## A game about classification errors and bias\\n\",\n    \"\\n\",\n    \"Inspired by [Lights, Camera, Algorithm](https://gist.github.com/rshorey/6fbf25b7a35ff67fbda435a1553d9564) by Jeremy Merrill and Rachel Shorey.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy.random as random\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Part of getting good results is picking a seed that makes the calibration,\\n\",\n    \"# and overall accuracy, FPV, FNR, and PPV come out well.\\n\",\n    \"# Any particular draw of random data will give us a better or worse situation.\\n\",\n    \"random.seed(121)\\n\",\n    \"#random.seed(123)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"df = pd.read_csv('lights-camera-algorithm-2.csv')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is the original data for Lights, Camera, Algorithm -- fruits and vegatables plus their feature. I've added the feauture \\\"exotic\\\" \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>fruit</th>\\n\",\n       \"      <th>&gt;30 cal per 100g</th>\\n\",\n       \"      <th>over $1/pound</th>\\n\",\n       \"      <th>need to peel</th>\\n\",\n       \"      <th>green?</th>\\n\",\n       \"      <th>keep in fridge</th>\\n\",\n       \"      <th>grows on a tree</th>\\n\",\n       \"      <th>truth</th>\\n\",\n       \"      <th>exotic</th>\\n\",\n       \"      <th>in season</th>\\n\",\n       \"      <th>imported</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>apple</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>fruit</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>apricot</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>fruit</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>banana</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>fruit</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>blueberry</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>fruit</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>blackberry</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>fruit</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"        fruit  >30 cal per 100g  over $1/pound  need to peel  green?  \\\\\\n\",\n       \"0       apple              True          False         False   False   \\n\",\n       \"1     apricot              True           True         False   False   \\n\",\n       \"2      banana              True          False          True   False   \\n\",\n       \"3   blueberry              True           True         False   False   \\n\",\n       \"4  blackberry             False           True         False   False   \\n\",\n       \"\\n\",\n       \"   keep in fridge  grows on a tree  truth  exotic  in season  imported  \\n\",\n       \"0           False             True  fruit   False        NaN       NaN  \\n\",\n       \"1           False             True  fruit    True        NaN       NaN  \\n\",\n       \"2           False            False  fruit   False        NaN       NaN  \\n\",\n       \"3            True            False  fruit   False        NaN       NaN  \\n\",\n       \"4            True            False  fruit    True        NaN       NaN  \"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"df.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>exotic</th>\\n\",\n       \"      <th>False</th>\\n\",\n       \"      <th>True</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>truth</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>fruit</th>\\n\",\n       \"      <td>15</td>\\n\",\n       \"      <td>10</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>veg</th>\\n\",\n       \"      <td>20</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"exotic  False  True \\n\",\n       \"truth               \\n\",\n       \"fruit      15     10\\n\",\n       \"veg        20      5\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# There are already more \\\"exotic\\\" fruits than vegetables\\n\",\n    \"pd.crosstab(df.truth, df.exotic)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# A function that returns a random True/False, biased so that\\n\",\n    \"# fruits get probability of true = p_fruit and veg gets 1-p_fruit\\n\",\n    \"def fruit_veg_random(fruit_or_veg, p_fruit):\\n\",\n    \"    if fruit_or_veg=='fruit':\\n\",\n    \"        return random.uniform() <= p_fruit\\n\",\n    \"    else:\\n\",\n    \"        return random.uniform() >= p_fruit\\n\",\n    \"\\n\",\n    \"# We are going to make further imbalanced columns that are correleted with f/v, thus eaten\\n\",\n    \"df['in_season'] = df['truth'].apply(lambda f_or_v: fruit_veg_random(f_or_v, 0.7))\\n\",\n    \"df['imported'] = df['truth'].apply(lambda f_or_v: fruit_veg_random(f_or_v, 0.2))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Now we calculate the results of our \\\"classifier\\\"\\n\",\n    \"# Exotic foods are much more likely to be eaten, in season foods are somewhat more,\\n\",\n    \"# imported foods somewhat less (because they are less frehs)\\n\",\n    \"df['score'] = 2*df['exotic'] + df['in_season'] - df['imported']\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x11a3db860>\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"df['score'].hist(bins=range(-1,5))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Now generate the ground truth \\\"eaten\\\"\\n\",\n    \"# For teaching purposes, we need two things to be true:\\n\",\n    \"#  - We want the predictor to be good but not perfect. So we base `eaten` on `score`\\n\",\n    \"#    so that the score is calibrated, like a properly trained model.\\n\",\n    \"#  - There is an imblance between fruit and veg. This will come automatically because \\n\",\n    \"#    we have imbalanced the feature distributions, so the score is unbalanced\\n\",\n    \"# \\n\",\n    \"\\n\",\n    \"# Being able to map the scores to monotonic probabilities makes the classifier \\\"calibrated\\\"\\n\",\n    \"score_probabilities = {\\n\",\n    \"    -1: 0.1,\\n\",\n    \"    0:  0.25,\\n\",\n    \"    1:  0.5,\\n\",\n    \"    2:  0.75,\\n\",\n    \"    3:  0.9\\n\",\n    \"}\\n\",\n    \"\\n\",\n    \"df['eaten'] = df['score'].apply(lambda score: random.uniform() <= score_probabilities[score])\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>score</th>\\n\",\n       \"      <th>-1</th>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <th>3</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>eaten</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>False</th>\\n\",\n       \"      <td>10</td>\\n\",\n       \"      <td>12</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"score  -1   0   1   2   3\\n\",\n       \"eaten                    \\n\",\n       \"False  10  12   3   1   0\\n\",\n       \"True    2   3   6   4   9\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pd.crosstab(df.eaten, df.score)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>eaten</th>\\n\",\n       \"      <th>False</th>\\n\",\n       \"      <th>True</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>truth</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>fruit</th>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>16</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>veg</th>\\n\",\n       \"      <td>17</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"eaten  False  True \\n\",\n       \"truth              \\n\",\n       \"fruit      9     16\\n\",\n       \"veg       17      8\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pd.crosstab(df.truth, df.eaten)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# We can now turn this score into a classifier by thresholding at some value\\n\",\n    \"thresh = 1\\n\",\n    \"df['predicted'] =  df.score >= thresh\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x11d743128>\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n347NAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Is this classifier balanced?\\n\",\n    \"f = df[df.truth=='fruit'].groupby('predicted').mean()['eaten']\\n\",\n    \"v = df[df.truth=='veg'].groupby('predicted').mean()['eaten']\\n\",\n    \"\\n\",\n    \"# We can actually look at the calibration now\\n\",\n    \"a = pd.concat([f,v], axis=1)\\n\",\n    \"a.columns = ['Fruit','Vegetable']\\n\",\n    \"a.plot.bar()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can get six different classifiers by setting our score threshold from < -1 to > 3. But < -1 is always predict eaten and >3 is always predict not eaten, so there are really only four thresholds that make sense. Let's see the confusion matrix for one of these levels.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# cm is a confusion matrix. The rows are guessed, the columns are actual \\n\",\n    \"def print_ppv_fpv(cm):\\n\",\n    \"    # the indices here are [col][row] or [actual][guessed]\\n\",\n    \"    TN = cm[False][False]   \\n\",\n    \"    TP = cm[True][True]\\n\",\n    \"    FN = cm[True][False]\\n\",\n    \"    FP = cm[False][True]\\n\",\n    \"    print('Accuracy: ', (TN+TP)/(TN+TP+FN+FP))\\n\",\n    \"    print('PPV: ', TP / (TP + FP))\\n\",\n    \"    print('FPR: ', FP / (FP + TN))\\n\",\n    \"    print('FNR: ', FN / (FN + TP))\\n\",\n    \"    print()\\n\",\n    \"\\n\",\n    \"def print_metrics(guessed, actual):\\n\",\n    \"    cm = pd.crosstab(guessed, actual, rownames=['guessed'], colnames=['actual'])\\n\",\n    \"    print(cm)\\n\",\n    \"    print()\\n\",\n    \"    print_ppv_fpv(cm)    \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Everyone\\n\",\n      \"actual   False  True \\n\",\n      \"guessed              \\n\",\n      \"False       22      5\\n\",\n      \"True         4     19\\n\",\n      \"\\n\",\n      \"Accuracy:  0.82\\n\",\n      \"PPV:  0.826086956522\\n\",\n      \"FPR:  0.153846153846\\n\",\n      \"FNR:  0.208333333333\\n\",\n      \"\\n\",\n      \"Fruits\\n\",\n      \"actual   False  True \\n\",\n      \"guessed              \\n\",\n      \"False        6      2\\n\",\n      \"True         3     14\\n\",\n      \"\\n\",\n      \"Accuracy:  0.8\\n\",\n      \"PPV:  0.823529411765\\n\",\n      \"FPR:  0.333333333333\\n\",\n      \"FNR:  0.125\\n\",\n      \"\\n\",\n      \"Vegetables\\n\",\n      \"actual   False  True \\n\",\n      \"guessed              \\n\",\n      \"False       16      3\\n\",\n      \"True         1      5\\n\",\n      \"\\n\",\n      \"Accuracy:  0.84\\n\",\n      \"PPV:  0.833333333333\\n\",\n      \"FPR:  0.0588235294118\\n\",\n      \"FNR:  0.375\\n\",\n      \"\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print('Everyone')\\n\",\n    \"print_metrics(df.predicted, df.eaten)\\n\",\n    \"\\n\",\n    \"print('Fruits')\\n\",\n    \"subset = df[df.truth == 'fruit']\\n\",\n    \"print_metrics(subset.predicted, subset.eaten)\\n\",\n    \"\\n\",\n    \"print('Vegetables')\\n\",\n    \"subset = df[df.truth == 'veg']\\n\",\n    \"print_metrics(subset.predicted, subset.eaten)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>name</th>\\n\",\n       \"      <th>fruit_or_veg</th>\\n\",\n       \"      <th>exotic</th>\\n\",\n       \"      <th>in_season</th>\\n\",\n       \"      <th>imported</th>\\n\",\n       \"      <th>score</th>\\n\",\n       \"      <th>eaten</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>apple</td>\\n\",\n       \"      <td>fruit</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>apricot</td>\\n\",\n       \"      <td>fruit</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>banana</td>\\n\",\n       \"      <td>fruit</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>blueberry</td>\\n\",\n       \"      <td>fruit</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>blackberry</td>\\n\",\n       \"      <td>fruit</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>False</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>True</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"         name fruit_or_veg  exotic  in_season  imported  score  eaten\\n\",\n       \"0       apple        fruit   False       True      True      0  False\\n\",\n       \"1     apricot        fruit    True       True     False      3   True\\n\",\n       \"2      banana        fruit   False       True     False      1   True\\n\",\n       \"3   blueberry        fruit   False       True     False      1   True\\n\",\n       \"4  blackberry        fruit    True      False     False      2   True\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Cleanup and save\\n\",\n    \"df = df.rename(index=str, columns={\\\"truth\\\": \\\"fruit_or_veg\\\", \\\"fruit\\\": \\\"name\\\"})\\n\",\n    \"df = df[['name','fruit_or_veg','exotic','in_season','imported','score','eaten']]\\n\",\n    \"df.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"df.to_csv('kitchen-confusion-matrix.csv')\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-5/lights-camera-algorithm-2.csv",
    "content": "fruit,>30 cal per 100g,over $1/pound,need to peel,green?,keep in fridge,grows on a tree,truth,exotic,in season,imported\r\napple,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,fruit,FALSE,,\r\napricot,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,fruit,TRUE,,\r\nbanana,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,fruit,FALSE,,\r\nblueberry,TRUE,TRUE,FALSE,FALSE,TRUE,FALSE,fruit,FALSE,,\r\nblackberry,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,fruit,TRUE,,\r\ncantaloupe,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,fruit,FALSE,,\r\ncoconut,TRUE,TRUE,TRUE,FALSE,FALSE,TRUE,fruit,TRUE,,\r\ncoffee bean,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,fruit,FALSE,,\r\ndurian,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,fruit,TRUE,,\r\ngrape,TRUE,TRUE,FALSE,FALSE,TRUE,FALSE,fruit,FALSE,,\r\ngrapefruit,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,fruit,FALSE,,\r\nlime,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,fruit,FALSE,,\r\nmango,TRUE,FALSE,TRUE,FALSE,FALSE,TRUE,fruit,TRUE,,\r\norange,TRUE,FALSE,TRUE,FALSE,FALSE,TRUE,fruit,FALSE,,\r\npineapple,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,fruit,TRUE,,\r\npeach,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,fruit,FALSE,,\r\npear,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,fruit,FALSE,,\r\nplum,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,fruit,FALSE,,\r\nquince,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,fruit,TRUE,,\r\nraspberry,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,fruit,FALSE,,\r\nrhubarb,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,fruit,TRUE,,\r\nstrawberry,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,fruit,FALSE,,\r\nsugar cane,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,fruit,TRUE,,\r\ntamirand,TRUE,TRUE,TRUE,FALSE,FALSE,TRUE,fruit,TRUE,,\r\nwatermelon,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,fruit,FALSE,,\r\navocado,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,veg,TRUE,,\r\nartichoke,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,veg,TRUE,,\r\nasparagus,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,veg,TRUE,,\r\nbrussels sprout,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,veg,FALSE,,\r\ngreen beans,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,veg,FALSE,,\r\nbeet,TRUE,FALSE,TRUE,FALSE,TRUE,FALSE,veg,FALSE,,\r\ncarrot,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,veg,FALSE,,\r\ncorn,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,veg,FALSE,,\r\ncabbage,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,veg,FALSE,,\r\ncelery,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,veg,FALSE,,\r\ncucumber,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,veg,FALSE,,\r\neggplant,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,veg,TRUE,,\r\ngarlic,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,veg,FALSE,,\r\nkale,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,veg,FALSE,,\r\nlettuce,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,veg,FALSE,,\r\nmushroom,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,veg,FALSE,,\r\nonion,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,veg,FALSE,,\r\npotato,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,veg,FALSE,,\r\ngreen peas,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,veg,FALSE,,\r\npumpkin,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,veg,TRUE,,\r\nradish,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,veg,FALSE,,\r\nspinach,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,veg,FALSE,,\r\nsweet potato,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,veg,FALSE,,\r\ntomato,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,veg,FALSE,,\r\nzucchini,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,veg,FALSE,,"
  },
  {
    "path": "week-5/prepare-loan-data.py",
    "content": "# Process Lending Club loan.csv, taking about 1/10 of original rows\n# obtained from https://www.kaggle.com/wendykan/lending-club-loan-data\nimport csv\nimport numpy as np\n\nreader = csv.DictReader(open('loan.csv', 'r'))\nwriter = csv.DictWriter(open('loan-subset.csv', 'w'), fieldnames=reader.fieldnames)\nwriter.writeheader()\n\n# Keep only loans that have concluded: paid or defaulted\nfor row in reader:\n\tstatus = row['loan_status']\n\tif status=='Fully Paid':\n\t \tif np.random.uniform() < 0.25:\n\t \t\twriter.writerow(row)\n\telif status=='Charged Off' or status=='Default':\n\t\twriter.writerow(row)\n\t\n"
  },
  {
    "path": "week-5/week-5-1-fairness-tradeoffs-homework.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Homework 5-2: Fair prediction\\n\",\n    \"\\n\",\n    \"In this homework you will experiment with modifying the logistic regression classifier we built on the COMPAS data, tuning it to get equal false positive rates between black and white defendants.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Part 0. Loading the data and building the feature matrix.\\n\",\n    \"Free code, copied from our class notebook.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"from sklearn import tree\\n\",\n    \"from sklearn import metrics\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Select between data on overall arrests and arrests for violent crimes\\n\",\n    \"# This allows quick comparisons of the difference between these two data sets\\n\",\n    \"violent = False\\n\",\n    \"\\n\",\n    \"if violent:\\n\",\n    \"    fname ='compas-scores-two-years-violent.csv'\\n\",\n    \"    decile_col = 'v_decile_score'\\n\",\n    \"    score_col = 'v_score_text'\\n\",\n    \"else:\\n\",\n    \"    fname ='compas-scores-two-years.csv'\\n\",\n    \"    decile_col = 'decile_score'\\n\",\n    \"    score_col = 'score_text'\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"cv = pd.read_csv(fname)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(5278, 53)\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Data cleaning ala ProPublica\\n\",\n    \"cv = cv[\\n\",\n    \"    (cv.days_b_screening_arrest <= 30) &  \\n\",\n    \"    (cv.days_b_screening_arrest >= -30) &  \\n\",\n    \"    (cv.is_recid != -1) &\\n\",\n    \"    (cv.c_charge_degree != 'O') &\\n\",\n    \"    (cv[score_col] != 'N/A')\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"# Keep only black and white races for this analysis\\n\",\n    \"cv = cv[(cv.race == 'African-American') | (cv.race=='Caucasian')]\\n\",\n    \"         \\n\",\n    \"# renumber the rows from 0 again\\n\",\n    \"cv.reset_index(inplace=True, drop=True) \\n\",\n    \"cv.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# build up dummy variables for age, race, gender\\n\",\n    \"features = pd.concat(\\n\",\n    \"    [pd.get_dummies(cv.age_cat, prefix='age'),\\n\",\n    \"     pd.get_dummies(cv.sex, prefix='sex'),\\n\",\n    \"     pd.get_dummies(cv.c_charge_degree, prefix='degree'), # felony or misdemeanor charge ('f' or 'm')\\n\",\n    \"     cv.priors_count],\\n\",\n    \"    axis=1)\\n\",\n    \"\\n\",\n    \"# We should have one less dummy variable than the number of categories, to avoid the \\\"dummy variable trap\\\"\\n\",\n    \"# See https://www.quora.com/When-do-I-fall-in-the-dummy-variable-trap\\n\",\n    \"features.drop(['age_25 - 45', 'sex_Female', 'degree_M'], axis=1, inplace=True)\\n\",\n    \"\\n\",\n    \"# Try to predict whether someone is re-arrested\\n\",\n    \"target = cv.two_year_recid\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Part 1. Your basic logistic regression\\n\",\n    \"\\n\",\n    \"Fit a logistic regression to this data. Print out the accuracy, PPV, and FPV overall, and for just black vs. white defendants. \\n\",\n    \"\\n\",\n    \"Most of the code you need can be found in the class notebook.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Fit a logistic regression\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Predict the result on the training data\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Free code for you!\\n\",\n    \"\\n\",\n    \"# cm is a confusion matrix. The rows are guessed, the columns are actual \\n\",\n    \"def print_ppv_fpv(cm):\\n\",\n    \"    # the indices here are [col][row] or [actual][guessed]\\n\",\n    \"    TN = cm[False][False]   \\n\",\n    \"    TP = cm[True][True]\\n\",\n    \"    FN = cm[True][False]\\n\",\n    \"    FP = cm[False][True]\\n\",\n    \"    print('Accuracy: ', (TN+TP)/(TN+TP+FN+FP))\\n\",\n    \"    print('PPV: ', TP / (TP + FP))\\n\",\n    \"    print('FPR: ', FP / (FP + TN))\\n\",\n    \"    print('FNR: ', FN / (FN + TP))\\n\",\n    \"    print()\\n\",\n    \"\\n\",\n    \"def print_metrics(guessed, actual):\\n\",\n    \"    cm = pd.crosstab(guessed, actual, rownames=['guessed'], colnames=['actual'])\\n\",\n    \"    print(cm)\\n\",\n    \"    print()\\n\",\n    \"    print_ppv_fpv(cm)    \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Print out the accuracy, PPV, FPV, FNV for\\n\",\n    \"#  - everyone \\n\",\n    \"#  - just white defendants\\n\",\n    \"#  - just black defendants\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Part 2. Equalizing false positive rates\\n\",\n    \"Now you'll build your own classifier that equalizes the false positive rates between white and non-white defendants. There are many ways to do this. We're going to use race explicitly to set a different threshold for white and black defendants. \\n\",\n    \"\\n\",\n    \"To begin with, we are going to write our own prediction function, starting with this one:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# This takes a trained LogisticRegression, a set of features, and a threshold\\n\",\n    \"# Predicts true wherever the regression gives a probability > threshold\\n\",\n    \"# Note: returns a numpy array, not a dataframe\\n\",\n    \"def predict_threshold(classifier, features, threshold):\\n\",\n    \"    # predict_proba returns two columns: probability of true, and probability of false\\n\",\n    \"    # [:,1] selects the second column\\n\",\n    \"    return classifier.predict_proba(features)[:,1] > threshold\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# This is the same as lr.predict(x) when we use a threshold of 0.5\\n\",\n    \"guessed2 = predict_threshold(lr, x, 0.5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now adapt this function so it takes two thresholds `a_threshold` and `b_threshold`, and a column of values `use_b` which means use the `b_threshold` for any row where it's true. The idea is to allow us to adjust the thresholds independently on two different groups.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Write a function which takes the following arguments\\n\",\n    \"def predict_threshold_groups(classifier, feautes, a_threshold, b_threshold, use_b):\\n\",\n    \"    # calculate probabilities from our classifier\\n\",\n    \"    \\n\",\n    \"    # Create one Series which is True where the probabilities are bigger than a_threshold, \\n\",\n    \"    # and another for b_threshold\\n\",\n    \"    # Then combine them, selecting values from either Series according to use_b\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now use this function with different thresholds for black and white defendants. Print out the confusion martrix, accuracy, FPV, and PPV for the results -- again, overall and for each race.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Predict recidivism with different thresholds for black and white\\n\",\n    \"# Print out metrics for everyone, black, and white\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Tune the thresholds so the False Positive Rate is the same for white and black defendants.\\n\",\n    \"- What did you change to achive this?\\n\",\n    \"- What effect does this have on the overall accuracy, FPR, FNR, and PPV?\\n\",\n    \"- What effect does this have on the PPV for white and black?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"In this case I raised the threshold for black defendants from 0.5 to 0.585, which equalizes the FPR at about 17%. The overall accuracy fell only slightly from 66% to 65%, and the accuracy for black defendants fell from 67% to 64%. But the PPV for black defendants -- the probability that someone who is categorized as high risk will actually be re-arrested within two years -- increased from 69% to 75%, because the higher threshold removes some of the people who were not particularly risky from the high risk group. The cost is a higher false negative rate for black defendents, which has gone up from 33% to 52%\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Bonus: Predicting race and the impossibility of blinding\\n\",\n    \"So far we've excluded race as a predictive variable, hoping that this would make the results unbiased. But is race encoded in the other data points? To find out, alter the regression above to try to predict race from the other demographic and criminal history variables.\\n\",\n    \"\\n\",\n    \"How accurately can you predict race just on these factors alone?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Use cross validation and the classifier of your choice to see how well you can predict race\\n\",\n    \"from sklearn.model_selection import cross_val_score\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's compare this accuracy to just guessing one race all the time. Which race is more common in this data and what would the accuracy be if we just always guessed that race.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What is the most common race in our arrest data?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What is the accuracy if we always guess the most common race?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Based on this, how much information about race \\\"leaks\\\" into our original recidivism predictor, even if we don't give it the race variable as a feature?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"(your answer here)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-5/week-5-1-machine-bias-class-empty.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Week 5-1: Breaking down Machine Bias\\n\",\n    \"\\n\",\n    \"This notebook explores the classic ProPublica story [Machine Bias](https://www.propublica.org/article/machine-bias-risk-assessments-in-criminal-sentencing). It uses the original data that the reporters collected for the story, through FOIA requests to Broward County, Florida.\\n\",\n    \"\\n\",\n    \"The COMPAS score uses answers to [137 questions](https://www.documentcloud.org/documents/2702103-Sample-Risk-Assessment-COMPAS-CORE.html) to assign a risk score to defendents -- essentially a probability of re-arrest. The actual output is two-fold: a risk rating of 1-10 and a \\\"low\\\", \\\"medium\\\", or \\\"high\\\" risk label\\n\",\n    \"\\n\",\n    \"This analysis is based on ProPublica's [original notebook](https://github.com/propublica/compas-analysis/blob/master/Compas%20Analysis.ipynb)\\n\",\n    \"\\n\",\n    \"There has been a lot of discussion about this story and its particular definition of fairness. The best overall reference is the [Fairness in Machine Learning\\n\",\n    \"NIPS 2017 Tutorial](http://fairml.how) by Solon Barocas and Moritz Hardt\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"from pandas.plotting import scatter_matrix\\n\",\n    \"from sklearn import metrics\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This notebook is designed to let you select between data on arrests for non-violent or violent crimes. This allows quick comparisons of the difference between these two data sets.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"There is some reason to suspect that arrest data for violent crime is both more accurate and less biased than non-violent crime data. See e.g. [Skeem and Lowenkamp](https://www.law.berkeley.edu/wp-content/uploads/2015/04/SSRN-id2687339.pdf). Also, we do get more accurate predictors wih the violent data (including COMPAS).\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"violent = False\\n\",\n    \"\\n\",\n    \"if violent:\\n\",\n    \"    fname ='compas-scores-two-years-violent.csv'\\n\",\n    \"    decile_col = 'v_decile_score'\\n\",\n    \"    score_col = 'v_score_text'\\n\",\n    \"else:\\n\",\n    \"    fname ='compas-scores-two-years.csv'\\n\",\n    \"    decile_col = 'decile_score'\\n\",\n    \"    score_col = 'score_text'\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"cv = pd.read_csv(fname)\\n\",\n    \"cv.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"cv.columns\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Following ProPublica, we filter out certain rows which are missing data. As they put it:\\n\",\n    \"\\n\",\n    \"- If the charge date of a defendants Compas scored crime was not within 30 days from when the person was arrested, we assume that because of data quality reasons, that we do not have the right offense.\\n\",\n    \"- We coded the recidivist flag -- is_recid -- to be -1 if we could not find a compas case at all.\\n\",\n    \"- In a similar vein, ordinary traffic offenses -- those with a c_charge_degree of 'O' -- will not result in Jail time are removed\\n\",\n    \"- We filtered the underlying data from Broward county to include only those rows representing people who had either recidivated in two years, or had at least two years outside of a correctional facility.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"cv = cv[\\n\",\n    \"    (cv.days_b_screening_arrest <= 30) &  \\n\",\n    \"    (cv.days_b_screening_arrest >= -30) &  \\n\",\n    \"    (cv.is_recid != -1) &\\n\",\n    \"    (cv.c_charge_degree != 'O') &\\n\",\n    \"    (cv[score_col] != 'N/A')\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"cv.reset_index(inplace=True, drop=True) # renumber the rows from 0 again\\n\",\n    \"cv.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1. A first look at the data \\n\",\n    \"\\n\",\n    \"Let's do some basic analysis on the demographics\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# age value coutns\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# race value counts\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The COMPAS model predictions are in `v_decile_score` from 1 to 10, and low/med/high in `v_score_text`\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# COMPAS decile score value counts\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# COMPAS text score value counts\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can look at the decile scores white and black to get our first look at how the COMPAS algorithm handles different races.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Histogram of decile scores for White\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Histogram of decile scores for Black\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Meanwhile the `two_year_recid` field records whether or not each person was re-arrested for a violent offense within two years, which is what COMPAS is trying to predict.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# recidivism value counts\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we can start looking at the relationships between these variables. First, recidivism by race.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# recidivism rates by race\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Similarly for sex:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# recidivism rates by sex\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There are significant differences in recidivisim in this population by race and gender. These are the \\\"base rates\\\" we will talk about more. However, there may also be significant differences in the composition of these populations -- they may have different age, criminal histories, etc.\\n\",\n    \"\\n\",\n    \"Let's see how the COMPAS risk scores break down by race and gender.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# high risk rates by race\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# high risk rates by sex\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Generally, the fraction of people assigned a `high` risk is greater where the recidivism rates are also higher. \\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 2. Predictive calibration and accuracy\\n\",\n    \"Being \\\"accurate\\\" in a predictive sense is only one type of \\\"fairness,\\\" as we shall see, but it's still a desirable characteristic.\\n\",\n    \"\\n\",\n    \"Let's start by looking at the proportion of people who are re-arrested in each decile score.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# probability of recidivism by decile\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# probability of recidivism by decile and race\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The outcome variable `two_year_recid` is the actually observed results in the world, and it is binary -- was this person re-arrested within two years of their initial arrest and risk score assignment? To work with this data further we're going to simplify the COMPAS classifier scores  it by thresholding them into a binary variable as well. ProPublica splits \\\"low\\\" from \\\"medium or high\\\" risk, according to their [methodology](https://www.propublica.org/article/how-we-analyzed-the-compas-recidivism-algorithm). \\n\",\n    \"\\n\",\n    \"Using this binary prediction variable lets us compute a confusion matrix for the COMPAS algorithm.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# COMPAS recidivism confusion matrix\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"All of the information about binary classifier performance and error (for a particular group) is in a 2x2 confusion matrix (also called a contingency table.) But we're usually interested in rates as opposed to raw numbers, so we're going to convert this table into the following values:\\n\",\n    \"\\n\",\n    \"- Accuracy: the fraction of guesses that were correct\\n\",\n    \"- Precision or Positive Predictive Value: of the people we guessed would recidivate, what fraction did?\\n\",\n    \"- False Positive Rate: of the people who didn't recidivate, how many did we guess would?\\n\",\n    \"- False Negative Rate: of the people who did recidivate, how many did we guess would not?\\n\",\n    \"\\n\",\n    \"There's a wonderful little [diagram on the qauntitative definitions of fairness](https://speak-statistics-to-power.github.io/fairness/#definitions-metric-parities) page that shows how all of these relate, and Wikipedia is also a [good reference](https://en.wikipedia.org/wiki/Confusion_matrix).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# The usual definitions. First index is predicted, second is actual\\n\",\n    \"TN = cm[False][False]\\n\",\n    \"TP = cm[True][True]\\n\",\n    \"FN = cm[False][True]\\n\",\n    \"FP = cm[True][False]\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"About 63% of those scored as medium or high risk end up getting arrested again within two years. This is the **Positive Predictive Value (PPV)** or **Precision**. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# PPV\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Of those who did not go on to be re-arrested, about 30% were classified as medium or high risk. This is the **False Positive Rate (FPR)**.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# FPR\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"It may help to understand many of these formulas if we define variables for the total number of true positive and negative cases:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"P = TP + FN\\n\",\n    \"N = TN + FP\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Equivalent definition of FPR that might be easier to understand, N in denominator\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can also calculate the **False Negative Rate (FNR)** which counts those who were  classified as low risk, as a fraction of those who were re-arrested.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# FNR\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Alternate form with P in denominator\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To study the difference betwen races, let's define a few helper functions.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# cm is a confusion matrix. The rows are guessed, the columns are actual \\n\",\n    \"def print_ppv_fpv(cm):\\n\",\n    \"    # the indices here are [col][row] or [actual][guessed]\\n\",\n    \"    TN = cm[False][False]   \\n\",\n    \"    TP = cm[True][True]\\n\",\n    \"    FN = cm[True][False]\\n\",\n    \"    FP = cm[False][True]\\n\",\n    \"    print('Accuracy: ', (TN+TP)/(TN+TP+FN+FP))\\n\",\n    \"    print('PPV: ', TP / (TP + FP))\\n\",\n    \"    print('FPR: ', FP / (FP + TN))\\n\",\n    \"    print('FNR: ', FN / (FN + TP))\\n\",\n    \"    print()\\n\",\n    \"\\n\",\n    \"def print_metrics(guessed, actual):\\n\",\n    \"    cm = pd.crosstab(guessed, actual, rownames=['guessed'], colnames=['actual'])\\n\",\n    \"    print(cm)\\n\",\n    \"    print()\\n\",\n    \"    print_ppv_fpv(cm)    \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# print_metrics for white and black defendants\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And here is the statistical core of ProPublica's story: the False Positive Rate is substantially higher for black defendants. \\n\",\n    \"\\n\",\n    \"However, also note that the PPV is similar between black and white. In fact the lower PPV for white means the score is has greater predictive accuracy for black defendants. Here \\\"accurate\\\" measures the proportion of people that actually were re-arrested, as a proportion of the people that COMPAS guessed would be.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 3. Logistic regression to build our own predictor\\n\",\n    \"\\n\",\n    \"We are going to use logistic regression to try to build our own predictor, just from the information we we have. This is actually quite a lot:\\n\",\n    \"- Age\\n\",\n    \"- Sex\\n\",\n    \"- Felony or Misdemeanor charge (`c_charge_degree`)\\n\",\n    \"- Number of prior arrests (`c_priors_count`)\\n\",\n    \"\\n\",\n    \"And we'll try this both with and without race as a predictive factor, too.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# build up dummy variables for age, race, gender\\n\",\n    \"features = pd.concat(\\n\",\n    \"    [pd.get_dummies(cv.age_cat, prefix='age'),\\n\",\n    \"     pd.get_dummies(cv.sex, prefix='sex'),\\n\",\n    \"     pd.get_dummies(cv.c_charge_degree, prefix='degree'), # felony or misdemeanor charge ('f' or 'm')\\n\",\n    \"     cv.priors_count],\\n\",\n    \"    axis=1)\\n\",\n    \"\\n\",\n    \"# We should have one less dummy variable than the number of categories, to avoid the \\\"dummy variable trap\\\"\\n\",\n    \"# See https://www.quora.com/When-do-I-fall-in-the-dummy-variable-trap\\n\",\n    \"features.drop(['age_25 - 45', 'sex_Female', 'degree_M'], axis=1, inplace=True)\\n\",\n    \"\\n\",\n    \"# Try to predict whether someone is re-arrested\\n\",\n    \"target = cv.two_year_recid\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# do the logistic regression\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is a logistic regression, so the coefficients are odds ratios (after undoing the logarithm.) Let's look at them to see what weights it used to make its predictions.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Examine regression coefficients\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The model thinks that (for the non-violent data set):\\n\",\n    \"\\n\",\n    \"- being young (<25) more than doubles your odds of recidivism\\n\",\n    \"- but being >45 years old makes half as likely\\n\",\n    \"- being male increases your odds by 40%\\n\",\n    \"- every prior arrest increases your odds by 18%\\n\",\n    \"\\n\",\n    \"Now let's put our model through the same tests as we used on the COMPAS score to see how well this predictor does.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Crosstab for our predictive model\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Print ppv, fpv, etc.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Once again, we can compare between White and Black.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# print_metrics for white and black\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 4. The limits of prediction\\n\",\n    \"Both COMPAS and our logistic regression classifier only get about 65% accuracy overall. Would it be possible to do better with are more sophisticated classifier or feature encoding? We can take a look at two variables at a time to try to see what's happening here.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Scatterpolot of age vs. priors, colored by two_year_recid\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# add a  noise to the values in the array\\n\",\n    \"def jitter(arr):\\n\",\n    \"    # pick a standard deviation for the jitter of 3% of the data range\\n\",\n    \"    stdev = .02*(max(arr)-min(arr))\\n\",\n    \"    return arr + np.random.randn(len(arr)) * stdev\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Scatterpolot of age vs. sex, colored by two_year_recid\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There is no way to draw a line (even a curved line) that cleanly separates the red (recidivated) and blue (did not recidivate) dots. We can do a little better by looking at more than two axes at a time, and might be able to imagine fitting a curved plane, but it's still not possible to separate red and blue enough to give us a very accurate classifier.\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-5/week-5-1-machine-bias-class.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Week 5-1: Breaking down Machine Bias\\n\",\n    \"\\n\",\n    \"This notebook explores the classic ProPublica story [Machine Bias](https://www.propublica.org/article/machine-bias-risk-assessments-in-criminal-sentencing). It uses the original data that the reporters collected for the story, through FOIA requests to Broward County, Florida.\\n\",\n    \"\\n\",\n    \"The COMPAS score uses answers to [137 questions](https://www.documentcloud.org/documents/2702103-Sample-Risk-Assessment-COMPAS-CORE.html) to assign a risk score to defendents -- essentially a probability of re-arrest. The actual output is two-fold: a risk rating of 1-10 and a \\\"low\\\", \\\"medium\\\", or \\\"high\\\" risk label\\n\",\n    \"\\n\",\n    \"This analysis is based on ProPublica's [original notebook](https://github.com/propublica/compas-analysis/blob/master/Compas%20Analysis.ipynb)\\n\",\n    \"\\n\",\n    \"There has been a lot of discussion about this story and its particular definition of fairness. The best overall reference is the [Fairness in Machine Learning\\n\",\n    \"NIPS 2017 Tutorial](http://fairml.how) by Solon Barocas and Moritz Hardt\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"from pandas.plotting import scatter_matrix\\n\",\n    \"from sklearn import metrics\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This notebook is designed to let you select between data on arrests for non-violent or violent crimes. This allows quick comparisons of the difference between these two data sets.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"There is some reason to suspect that arrest data for violent crime is both more accurate and less biased than non-violent crime data. See e.g. [Skeem and Lowenkamp](https://www.law.berkeley.edu/wp-content/uploads/2015/04/SSRN-id2687339.pdf). Also, we do get more accurate predictors wih the violent data (including COMPAS).\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"violent = False\\n\",\n    \"\\n\",\n    \"if violent:\\n\",\n    \"    fname ='compas-scores-two-years-violent.csv'\\n\",\n    \"    decile_col = 'v_decile_score'\\n\",\n    \"    score_col = 'v_score_text'\\n\",\n    \"else:\\n\",\n    \"    fname ='compas-scores-two-years.csv'\\n\",\n    \"    decile_col = 'decile_score'\\n\",\n    \"    score_col = 'score_text'\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>id</th>\\n\",\n       \"      <th>name</th>\\n\",\n       \"      <th>first</th>\\n\",\n       \"      <th>last</th>\\n\",\n       \"      <th>compas_screening_date</th>\\n\",\n       \"      <th>sex</th>\\n\",\n       \"      <th>dob</th>\\n\",\n       \"      <th>age</th>\\n\",\n       \"      <th>age_cat</th>\\n\",\n       \"      <th>race</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>v_decile_score</th>\\n\",\n       \"      <th>v_score_text</th>\\n\",\n       \"      <th>v_screening_date</th>\\n\",\n       \"      <th>in_custody</th>\\n\",\n       \"      <th>out_custody</th>\\n\",\n       \"      <th>priors_count.1</th>\\n\",\n       \"      <th>start</th>\\n\",\n       \"      <th>end</th>\\n\",\n       \"      <th>event</th>\\n\",\n       \"      <th>two_year_recid</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>miguel hernandez</td>\\n\",\n       \"      <td>miguel</td>\\n\",\n       \"      <td>hernandez</td>\\n\",\n       \"      <td>2013-08-14</td>\\n\",\n       \"      <td>Male</td>\\n\",\n       \"      <td>1947-04-18</td>\\n\",\n       \"      <td>69</td>\\n\",\n       \"      <td>Greater than 45</td>\\n\",\n       \"      <td>Other</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>Low</td>\\n\",\n       \"      <td>2013-08-14</td>\\n\",\n       \"      <td>2014-07-07</td>\\n\",\n       \"      <td>2014-07-14</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>327</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>kevon dixon</td>\\n\",\n       \"      <td>kevon</td>\\n\",\n       \"      <td>dixon</td>\\n\",\n       \"      <td>2013-01-27</td>\\n\",\n       \"      <td>Male</td>\\n\",\n       \"      <td>1982-01-22</td>\\n\",\n       \"      <td>34</td>\\n\",\n       \"      <td>25 - 45</td>\\n\",\n       \"      <td>African-American</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>Low</td>\\n\",\n       \"      <td>2013-01-27</td>\\n\",\n       \"      <td>2013-01-26</td>\\n\",\n       \"      <td>2013-02-05</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>159</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>ed philo</td>\\n\",\n       \"      <td>ed</td>\\n\",\n       \"      <td>philo</td>\\n\",\n       \"      <td>2013-04-14</td>\\n\",\n       \"      <td>Male</td>\\n\",\n       \"      <td>1991-05-14</td>\\n\",\n       \"      <td>24</td>\\n\",\n       \"      <td>Less than 25</td>\\n\",\n       \"      <td>African-American</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>Low</td>\\n\",\n       \"      <td>2013-04-14</td>\\n\",\n       \"      <td>2013-06-16</td>\\n\",\n       \"      <td>2013-06-16</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>63</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>marcu brown</td>\\n\",\n       \"      <td>marcu</td>\\n\",\n       \"      <td>brown</td>\\n\",\n       \"      <td>2013-01-13</td>\\n\",\n       \"      <td>Male</td>\\n\",\n       \"      <td>1993-01-21</td>\\n\",\n       \"      <td>23</td>\\n\",\n       \"      <td>Less than 25</td>\\n\",\n       \"      <td>African-American</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>Medium</td>\\n\",\n       \"      <td>2013-01-13</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1174</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>bouthy pierrelouis</td>\\n\",\n       \"      <td>bouthy</td>\\n\",\n       \"      <td>pierrelouis</td>\\n\",\n       \"      <td>2013-03-26</td>\\n\",\n       \"      <td>Male</td>\\n\",\n       \"      <td>1973-01-22</td>\\n\",\n       \"      <td>43</td>\\n\",\n       \"      <td>25 - 45</td>\\n\",\n       \"      <td>Other</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>Low</td>\\n\",\n       \"      <td>2013-03-26</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1102</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 53 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   id                name   first         last compas_screening_date   sex  \\\\\\n\",\n       \"0   1    miguel hernandez  miguel    hernandez            2013-08-14  Male   \\n\",\n       \"1   3         kevon dixon   kevon        dixon            2013-01-27  Male   \\n\",\n       \"2   4            ed philo      ed        philo            2013-04-14  Male   \\n\",\n       \"3   5         marcu brown   marcu        brown            2013-01-13  Male   \\n\",\n       \"4   6  bouthy pierrelouis  bouthy  pierrelouis            2013-03-26  Male   \\n\",\n       \"\\n\",\n       \"          dob  age          age_cat              race      ...        \\\\\\n\",\n       \"0  1947-04-18   69  Greater than 45             Other      ...         \\n\",\n       \"1  1982-01-22   34          25 - 45  African-American      ...         \\n\",\n       \"2  1991-05-14   24     Less than 25  African-American      ...         \\n\",\n       \"3  1993-01-21   23     Less than 25  African-American      ...         \\n\",\n       \"4  1973-01-22   43          25 - 45             Other      ...         \\n\",\n       \"\\n\",\n       \"   v_decile_score  v_score_text  v_screening_date  in_custody  out_custody  \\\\\\n\",\n       \"0               1           Low        2013-08-14  2014-07-07   2014-07-14   \\n\",\n       \"1               1           Low        2013-01-27  2013-01-26   2013-02-05   \\n\",\n       \"2               3           Low        2013-04-14  2013-06-16   2013-06-16   \\n\",\n       \"3               6        Medium        2013-01-13         NaN          NaN   \\n\",\n       \"4               1           Low        2013-03-26         NaN          NaN   \\n\",\n       \"\\n\",\n       \"   priors_count.1 start   end event two_year_recid  \\n\",\n       \"0               0     0   327     0              0  \\n\",\n       \"1               0     9   159     1              1  \\n\",\n       \"2               4     0    63     0              1  \\n\",\n       \"3               1     0  1174     0              0  \\n\",\n       \"4               2     0  1102     0              0  \\n\",\n       \"\\n\",\n       \"[5 rows x 53 columns]\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"cv = pd.read_csv(fname)\\n\",\n    \"cv.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Index(['id', 'name', 'first', 'last', 'compas_screening_date', 'sex', 'dob',\\n\",\n       \"       'age', 'age_cat', 'race', 'juv_fel_count', 'decile_score',\\n\",\n       \"       'juv_misd_count', 'juv_other_count', 'priors_count',\\n\",\n       \"       'days_b_screening_arrest', 'c_jail_in', 'c_jail_out', 'c_case_number',\\n\",\n       \"       'c_offense_date', 'c_arrest_date', 'c_days_from_compas',\\n\",\n       \"       'c_charge_degree', 'c_charge_desc', 'is_recid', 'r_case_number',\\n\",\n       \"       'r_charge_degree', 'r_days_from_arrest', 'r_offense_date',\\n\",\n       \"       'r_charge_desc', 'r_jail_in', 'r_jail_out', 'violent_recid',\\n\",\n       \"       'is_violent_recid', 'vr_case_number', 'vr_charge_degree',\\n\",\n       \"       'vr_offense_date', 'vr_charge_desc', 'type_of_assessment',\\n\",\n       \"       'decile_score.1', 'score_text', 'screening_date',\\n\",\n       \"       'v_type_of_assessment', 'v_decile_score', 'v_score_text',\\n\",\n       \"       'v_screening_date', 'in_custody', 'out_custody', 'priors_count.1',\\n\",\n       \"       'start', 'end', 'event', 'two_year_recid'],\\n\",\n       \"      dtype='object')\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"cv.columns\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Following ProPublica, we filter out certain rows which are missing data. As they put it:\\n\",\n    \"\\n\",\n    \"- If the charge date of a defendants Compas scored crime was not within 30 days from when the person was arrested, we assume that because of data quality reasons, that we do not have the right offense.\\n\",\n    \"- We coded the recidivist flag -- is_recid -- to be -1 if we could not find a compas case at all.\\n\",\n    \"- In a similar vein, ordinary traffic offenses -- those with a c_charge_degree of 'O' -- will not result in Jail time are removed\\n\",\n    \"- We filtered the underlying data from Broward county to include only those rows representing people who had either recidivated in two years, or had at least two years outside of a correctional facility.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(6172, 53)\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"cv = cv[\\n\",\n    \"    (cv.days_b_screening_arrest <= 30) &  \\n\",\n    \"    (cv.days_b_screening_arrest >= -30) &  \\n\",\n    \"    (cv.is_recid != -1) &\\n\",\n    \"    (cv.c_charge_degree != 'O') &\\n\",\n    \"    (cv[score_col] != 'N/A')\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"cv.reset_index(inplace=True, drop=True) # renumber the rows from 0 again\\n\",\n    \"cv.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1. A first look at the data \\n\",\n    \"\\n\",\n    \"Let's do some basic analysis on the demographics\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"25 - 45            3532\\n\",\n       \"Less than 25       1347\\n\",\n       \"Greater than 45    1293\\n\",\n       \"Name: age_cat, dtype: int64\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# age value coutns\\n\",\n    \"cv.age_cat.value_counts()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"African-American    3175\\n\",\n       \"Caucasian           2103\\n\",\n       \"Hispanic             509\\n\",\n       \"Other                343\\n\",\n       \"Asian                 31\\n\",\n       \"Native American       11\\n\",\n       \"Name: race, dtype: int64\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# race value counts\\n\",\n    \"cv.race.value_counts()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The COMPAS model predictions are in `v_decile_score` from 1 to 10, and low/med/high in `v_score_text`\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1     1286\\n\",\n       \"2      822\\n\",\n       \"4      666\\n\",\n       \"3      647\\n\",\n       \"5      582\\n\",\n       \"6      529\\n\",\n       \"7      496\\n\",\n       \"9      420\\n\",\n       \"8      420\\n\",\n       \"10     304\\n\",\n       \"Name: decile_score, dtype: int64\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# COMPAS decile score value counts\\n\",\n    \"cv[decile_col].value_counts()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Low       3421\\n\",\n       \"Medium    1607\\n\",\n       \"High      1144\\n\",\n       \"Name: score_text, dtype: int64\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# COMPAS text score value counts\\n\",\n    \"cv[score_col].value_counts()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can look at the decile scores white and black to get our first look at how the COMPAS algorithm handles different races.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x112c640f0>\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAYgAAAEICAYAAABF82P+AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBo\\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAGYxJREFUeJzt3X+8HXV95/HXW4Lyy4JITCEhBgtq\\n2W4VGi3+aGtFWwUUu49KtVajpabdB221ulvRdqvbah+4j1aqq8tKRQnW2lLUwip1RUStrQKh/kBE\\nl4hgEgIE5DcqIp/9Y763nFwnybkhk7kkr+fjcR5n5jtzZj537r3nfb4zc2ZSVUiSNNtDxi5AkjQ/\\nGRCSpF4GhCSplwEhSeplQEiSehkQkqReBsQuLEklOXQz016S5BM7uqYtSfLmJDcluX6AZV+T5Fnb\\ne7nzVZI7kzymDZ+Z5M1j16T5x4DYSSR5fZJ/mtV21WbaXrS15VXVB6rqlyZet9kwmbK+SnJXe2O6\\nOcmFSX5tDq9fCrwWOLyqfnxb6xhakpcn+dystjOTvHyOy1nWttmd7XFDko8mefb2qLOq9qmqqx/o\\ncpIcn+RLSW5v4f2pJIdsjxo1PgNi5/FZ4KlJdgNIciCwO3DErLZD27xjeEJV7QM8DjgTeGeSN075\\n2qXAzVV141DFzVP7tW32BOAC4CNzDZuhtA8MZ9EF977AIcC7gB9ux3Ukie9TI3HD7zwupQuEJ7bx\\nnwMuAr4xq+2bVXXdxOue1XoVtyZ5V5LApp+Ek8wEypfbp9lfa+3HtU+Ptyb51yQ/PU2hVXVTVb0f\\n+M/A65M8si1v3yRnJNmQZH3bpbRb2/VzAXBQW/+Zbf6j2npvTfLlJM+YWUeSTyf5syT/kuSOJJ9I\\ncsDE9Jcmubb1Zv5osr4kT07y+bbcDUnemeShE9Mrye/M3m5JfhL438BTWp23zv7Zkxya5DNJbmuf\\nuP9+ym12fVW9HXgT8NaZN80kByX5UJKNSb6V5Pcn1rVbkjck+WbbBpclOXjiZ9jc7sVpf69PBL5V\\nVRdW546q+lBVfXuK9T81yaVtO1ya5KkT6/90krck+RfgbuAxm/vbeCDbVFOoKh87yYMuEP6gDb8T\\n+E3gLbPa3jsxfwEfBfaj+4S+EXhOm/Zy4HOz5j10YvwI4EbgZ4HdgBXANcDDNlPbJq9vbbsD9wLP\\n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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Histogram of decile scores for White\\n\",\n    \"cv[cv.race == 'Caucasian'][decile_col].plot(kind='hist', title='White Defendant\\\\'s Decile Scores ')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x11307b080>\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Histogram of decile scores for Black\\n\",\n    \"cv[cv.race == 'African-American'][decile_col].plot(kind='hist', title='Black Defendant\\\\'s Decile Scores')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Meanwhile the `two_year_recid` field records whether or not each person was re-arrested for a violent offense within two years, which is what COMPAS is trying to predict.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0    3363\\n\",\n       \"1    2809\\n\",\n       \"Name: two_year_recid, dtype: int64\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# recidivism value counts\\n\",\n    \"cv.two_year_recid.value_counts()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we can start looking at the relationships between these variables. First, recidivism by race.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>two_year_recid</th>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <th>rate</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>race</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>African-American</th>\\n\",\n       \"      <td>1514</td>\\n\",\n       \"      <td>1661</td>\\n\",\n       \"      <td>0.523150</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Asian</th>\\n\",\n       \"      <td>23</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"      <td>0.258065</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Caucasian</th>\\n\",\n       \"      <td>1281</td>\\n\",\n       \"      <td>822</td>\\n\",\n       \"      <td>0.390870</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Hispanic</th>\\n\",\n       \"      <td>320</td>\\n\",\n       \"      <td>189</td>\\n\",\n       \"      <td>0.371316</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Native American</th>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>0.454545</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Other</th>\\n\",\n       \"      <td>219</td>\\n\",\n       \"      <td>124</td>\\n\",\n       \"      <td>0.361516</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"two_year_recid       0     1      rate\\n\",\n       \"race                                  \\n\",\n       \"African-American  1514  1661  0.523150\\n\",\n       \"Asian               23     8  0.258065\\n\",\n       \"Caucasian         1281   822  0.390870\\n\",\n       \"Hispanic           320   189  0.371316\\n\",\n       \"Native American      6     5  0.454545\\n\",\n       \"Other              219   124  0.361516\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# recidivism rates by race\\n\",\n    \"recid_race = pd.crosstab(cv.race, cv.two_year_recid)\\n\",\n    \"recid_race['rate'] = recid_race[1] / recid_race.sum(axis=1)\\n\",\n    \"recid_race\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Similarly for sex:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>two_year_recid</th>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <th>rate</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>sex</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Female</th>\\n\",\n       \"      <td>762</td>\\n\",\n       \"      <td>413</td>\\n\",\n       \"      <td>0.351489</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Male</th>\\n\",\n       \"      <td>2601</td>\\n\",\n       \"      <td>2396</td>\\n\",\n       \"      <td>0.479488</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"two_year_recid     0     1      rate\\n\",\n       \"sex                                 \\n\",\n       \"Female           762   413  0.351489\\n\",\n       \"Male            2601  2396  0.479488\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# recidivism rates by sex\\n\",\n    \"recid_sex = pd.crosstab(cv.sex, cv.two_year_recid)\\n\",\n    \"recid_sex['rate'] = recid_sex[1] / recid_sex.sum(axis=1)\\n\",\n    \"recid_sex\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There are significant differences in recidivisim in this population by race and gender. These are the \\\"base rates\\\" we will talk about more. However, there may also be significant differences in the composition of these populations -- they may have different age, criminal histories, etc.\\n\",\n    \"\\n\",\n    \"Let's see how the COMPAS risk scores break down by race and gender.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>score_text</th>\\n\",\n       \"      <th>High</th>\\n\",\n       \"      <th>Low</th>\\n\",\n       \"      <th>Medium</th>\\n\",\n       \"      <th>High risk rate</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>race</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>African-American</th>\\n\",\n       \"      <td>845</td>\\n\",\n       \"      <td>1346</td>\\n\",\n       \"      <td>984</td>\\n\",\n       \"      <td>0.266142</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Asian</th>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>24</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>0.096774</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Caucasian</th>\\n\",\n       \"      <td>223</td>\\n\",\n       \"      <td>1407</td>\\n\",\n       \"      <td>473</td>\\n\",\n       \"      <td>0.106039</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Hispanic</th>\\n\",\n       \"      <td>47</td>\\n\",\n       \"      <td>368</td>\\n\",\n       \"      <td>94</td>\\n\",\n       \"      <td>0.092338</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Native American</th>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>0.363636</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Other</th>\\n\",\n       \"      <td>22</td>\\n\",\n       \"      <td>273</td>\\n\",\n       \"      <td>48</td>\\n\",\n       \"      <td>0.064140</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"score_text        High   Low  Medium  High risk rate\\n\",\n       \"race                                                \\n\",\n       \"African-American   845  1346     984        0.266142\\n\",\n       \"Asian                3    24       4        0.096774\\n\",\n       \"Caucasian          223  1407     473        0.106039\\n\",\n       \"Hispanic            47   368      94        0.092338\\n\",\n       \"Native American      4     3       4        0.363636\\n\",\n       \"Other               22   273      48        0.064140\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# high risk rates by race\\n\",\n    \"score_race = pd.crosstab(cv.race, cv[score_col])\\n\",\n    \"score_race['High risk rate'] = score_race['High'] / score_race.sum(axis=1)\\n\",\n    \"score_race\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>score_text</th>\\n\",\n       \"      <th>High</th>\\n\",\n       \"      <th>Low</th>\\n\",\n       \"      <th>Medium</th>\\n\",\n       \"      <th>High risk rate</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>sex</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Female</th>\\n\",\n       \"      <td>151</td>\\n\",\n       \"      <td>699</td>\\n\",\n       \"      <td>325</td>\\n\",\n       \"      <td>0.128511</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>Male</th>\\n\",\n       \"      <td>993</td>\\n\",\n       \"      <td>2722</td>\\n\",\n       \"      <td>1282</td>\\n\",\n       \"      <td>0.198719</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"score_text  High   Low  Medium  High risk rate\\n\",\n       \"sex                                           \\n\",\n       \"Female       151   699     325        0.128511\\n\",\n       \"Male         993  2722    1282        0.198719\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# high risk rates by sex\\n\",\n    \"score_sex = pd.crosstab(cv.sex, cv[score_col])\\n\",\n    \"score_sex['High risk rate'] = score_sex['High'] / score_sex.sum(axis=1)\\n\",\n    \"score_sex\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Generally, the fraction of people assigned a `high` risk is greater where the recidivism rates are also higher. \\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 2. Predictive calibration and accuracy\\n\",\n    \"Being \\\"accurate\\\" in a predictive sense is only one type of \\\"fairness,\\\" as we shall see, but it's still a desirable characteristic.\\n\",\n    \"\\n\",\n    \"Let's start by looking at the proportion of people who are re-arrested in each decile score.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x112f9e940>\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# probability of recidivism by decile\\n\",\n    \"cv.groupby(decile_col).mean()['two_year_recid'].plot(kind='bar')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x1132dd908>\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# probability of recidivism by decile and race\\n\",\n    \"b = cv[cv.race=='African-American'].groupby([decile_col]).mean()['two_year_recid']\\n\",\n    \"w = cv[cv.race=='Caucasian'].groupby([decile_col]).mean()['two_year_recid']\\n\",\n    \"\\n\",\n    \"a = pd.concat([w,b], axis=1)\\n\",\n    \"a.columns = ['White','Black']\\n\",\n    \"a.plot.bar()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The outcome variable `two_year_recid` is the actually observed results in the world, and it is binary -- was this person re-arrested within two years of their initial arrest and risk score assignment? To work with this data further we're going to simplify the COMPAS classifier scores  it by thresholding them into a binary variable as well. ProPublica splits \\\"low\\\" from \\\"medium or high\\\" risk, according to their [methodology](https://www.propublica.org/article/how-we-analyzed-the-compas-recidivism-algorithm). \\n\",\n    \"\\n\",\n    \"Using this binary prediction variable lets us compute a confusion matrix for the COMPAS algorithm.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>guessed_recid</th>\\n\",\n       \"      <th>False</th>\\n\",\n       \"      <th>True</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>actual_recid</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>False</th>\\n\",\n       \"      <td>2345</td>\\n\",\n       \"      <td>1018</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True</th>\\n\",\n       \"      <td>1076</td>\\n\",\n       \"      <td>1733</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"guessed_recid  False  True \\n\",\n       \"actual_recid               \\n\",\n       \"False           2345   1018\\n\",\n       \"True            1076   1733\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# COMPAS recidivism confusion matrix\\n\",\n    \"cv['guessed_recid'] = cv[score_col] != 'Low'\\n\",\n    \"cv['actual_recid'] = cv.two_year_recid == 1\\n\",\n    \"cm = pd.crosstab(cv.actual_recid, cv.guessed_recid)\\n\",\n    \"cm # for \\\"confusion matrix\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"All of the information about binary classifier performance and error (for a particular group) is in a 2x2 confusion matrix (also called a contingency table.) But we're usually interested in rates as opposed to raw numbers, so we're going to convert this table into the following values:\\n\",\n    \"\\n\",\n    \"- Accuracy: the fraction of guesses that were correct\\n\",\n    \"- Precision or Positive Predictive Value: of the people we guessed would recidivate, what fraction did?\\n\",\n    \"- False Positive Rate: of the people who didn't recidivate, how many did we guess would?\\n\",\n    \"- False Negative Rate: of the people who did recidivate, how many did we guess would not?\\n\",\n    \"\\n\",\n    \"There's a wonderful little [diagram on the qauntitative definitions of fairness](https://speak-statistics-to-power.github.io/fairness/#definitions-metric-parities) page that shows how all of these relate, and Wikipedia is also a [good reference](https://en.wikipedia.org/wiki/Confusion_matrix).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# The usual definitions. First index is predicted, second is actual\\n\",\n    \"TN = cm[False][False]\\n\",\n    \"TP = cm[True][True]\\n\",\n    \"FN = cm[False][True]\\n\",\n    \"FP = cm[True][False]\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"About 63% of those scored as medium or high risk end up getting arrested again within two years. This is the **Positive Predictive Value (PPV)** or **Precision**. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.62995274445656124\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# PPV\\n\",\n    \"TP / (TP + FP)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Of those who did not go on to be re-arrested, about 30% were classified as medium or high risk. This is the **False Positive Rate (FPR)**.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.30270591733571217\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# FPR\\n\",\n    \"FP / (FP + TN)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"It may help to understand many of these formulas if we define variables for the total number of true positive and negative cases:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"P = TP + FN\\n\",\n    \"N = TN + FP\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.30270591733571217\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Equivalent definition of FPR that might be easier to understand, N in denominator\\n\",\n    \"FP / N\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can also calculate the **False Negative Rate (FNR)** which counts those who were  classified as low risk, as a fraction of those who were re-arrested.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.38305446778212887\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# FNR\\n\",\n    \"FN / (FN + TP)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.38305446778212887\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Alternate form with P in denominator\\n\",\n    \"FN / P\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To study the difference betwen races, let's define a few helper functions.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# cm is a confusion matrix. The rows are guessed, the columns are actual \\n\",\n    \"def print_ppv_fpv(cm):\\n\",\n    \"    # the indices here are [col][row] or [actual][guessed]\\n\",\n    \"    TN = cm[False][False]   \\n\",\n    \"    TP = cm[True][True]\\n\",\n    \"    FN = cm[True][False]\\n\",\n    \"    FP = cm[False][True]\\n\",\n    \"    print('Accuracy: ', (TN+TP)/(TN+TP+FN+FP))\\n\",\n    \"    print('PPV: ', TP / (TP + FP))\\n\",\n    \"    print('FPR: ', FP / (FP + TN))\\n\",\n    \"    print('FNR: ', FN / (FN + TP))\\n\",\n    \"    print()\\n\",\n    \"\\n\",\n    \"def print_metrics(guessed, actual):\\n\",\n    \"    cm = pd.crosstab(guessed, actual, rownames=['guessed'], colnames=['actual'])\\n\",\n    \"    print(cm)\\n\",\n    \"    print()\\n\",\n    \"    print_ppv_fpv(cm)    \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"White\\n\",\n      \"actual   False  True \\n\",\n      \"guessed              \\n\",\n      \"False      999    408\\n\",\n      \"True       282    414\\n\",\n      \"\\n\",\n      \"Accuracy:  0.671897289586\\n\",\n      \"PPV:  0.594827586207\\n\",\n      \"FPR:  0.220140515222\\n\",\n      \"FNR:  0.496350364964\\n\",\n      \"\\n\",\n      \"Black\\n\",\n      \"actual   False  True \\n\",\n      \"guessed              \\n\",\n      \"False      873    473\\n\",\n      \"True       641   1188\\n\",\n      \"\\n\",\n      \"Accuracy:  0.649133858268\\n\",\n      \"PPV:  0.649535265172\\n\",\n      \"FPR:  0.423381770145\\n\",\n      \"FNR:  0.284768211921\\n\",\n      \"\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print('White')\\n\",\n    \"subset = cv[cv.race == 'Caucasian']\\n\",\n    \"print_metrics(subset.guessed_recid, subset.actual_recid)\\n\",\n    \"\\n\",\n    \"print('Black')\\n\",\n    \"subset = cv[cv.race == 'African-American']\\n\",\n    \"print_metrics(subset.guessed_recid, subset.actual_recid)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And here is the statistical core of ProPublica's story: the False Positive Rate is substantially higher for black defendants. \\n\",\n    \"\\n\",\n    \"However, also note that the PPV is similar between black and white. In fact the lower PPV for white means the score is has greater predictive accuracy for black defendants. Here \\\"accurate\\\" measures the proportion of people that actually were re-arrested, as a proportion of the people that COMPAS guessed would be.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 3. Logistic regression to build our own predictor\\n\",\n    \"\\n\",\n    \"We are going to use logistic regression to try to build our own predictor, just from the information we we have. This is actually quite a lot:\\n\",\n    \"- Age\\n\",\n    \"- Sex\\n\",\n    \"- Felony or Misdemeanor charge (`c_charge_degree`)\\n\",\n    \"- Number of prior arrests (`c_priors_count`)\\n\",\n    \"\\n\",\n    \"And we'll try this both with and without race as a predictive factor, too.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# build up dummy variables for age, race, gender\\n\",\n    \"features = pd.concat(\\n\",\n    \"    [pd.get_dummies(cv.age_cat, prefix='age'),\\n\",\n    \"     pd.get_dummies(cv.sex, prefix='sex'),\\n\",\n    \"     pd.get_dummies(cv.c_charge_degree, prefix='degree'), # felony or misdemeanor charge ('f' or 'm')\\n\",\n    \"     cv.priors_count],\\n\",\n    \"    axis=1)\\n\",\n    \"\\n\",\n    \"# We should have one less dummy variable than the number of categories, to avoid the \\\"dummy variable trap\\\"\\n\",\n    \"# See https://www.quora.com/When-do-I-fall-in-the-dummy-variable-trap\\n\",\n    \"features.drop(['age_25 - 45', 'sex_Female', 'degree_M'], axis=1, inplace=True)\\n\",\n    \"\\n\",\n    \"# Try to predict whether someone is re-arrested\\n\",\n    \"target = cv.two_year_recid\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"LogisticRegression(C=1.0, class_weight=None, dual=False, fit_intercept=True,\\n\",\n       \"          intercept_scaling=1, max_iter=100, multi_class='ovr', n_jobs=1,\\n\",\n       \"          penalty='l2', random_state=None, solver='liblinear', tol=0.0001,\\n\",\n       \"          verbose=0, warm_start=False)\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x = features.values\\n\",\n    \"y = target.values\\n\",\n    \"lr = LogisticRegression()\\n\",\n    \"lr.fit(x,y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is a logistic regression, so the coefficients are odds ratios (after undoing the logarithm.) Let's look at them to see what weights it used to make its predictions.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>age_Greater than 45</th>\\n\",\n       \"      <th>age_Less than 25</th>\\n\",\n       \"      <th>sex_Male</th>\\n\",\n       \"      <th>degree_F</th>\\n\",\n       \"      <th>priors_count</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0.504745</td>\\n\",\n       \"      <td>2.105168</td>\\n\",\n       \"      <td>1.397191</td>\\n\",\n       \"      <td>1.250864</td>\\n\",\n       \"      <td>1.185331</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   age_Greater than 45  age_Less than 25  sex_Male  degree_F  priors_count\\n\",\n       \"0             0.504745          2.105168  1.397191  1.250864      1.185331\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Examine regression coefficients\\n\",\n    \"coeffs = pd.DataFrame(np.exp(lr.coef_), columns=features.columns)\\n\",\n    \"coeffs\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The model thinks that (for the non-violent data set):\\n\",\n    \"\\n\",\n    \"- being young (<25) more than doubles your odds of recidivism\\n\",\n    \"- but being >45 years old makes half as likely\\n\",\n    \"- being male increases your odds by 40%\\n\",\n    \"- every prior arrest increases your odds by 18%\\n\",\n    \"\\n\",\n    \"Now let's put our model through the same tests as we used on the COMPAS score to see how well this predictor does.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>actual</th>\\n\",\n       \"      <th>False</th>\\n\",\n       \"      <th>True</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>guessed</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>False</th>\\n\",\n       \"      <td>2568</td>\\n\",\n       \"      <td>1239</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True</th>\\n\",\n       \"      <td>795</td>\\n\",\n       \"      <td>1570</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"actual   False  True \\n\",\n       \"guessed              \\n\",\n       \"False     2568   1239\\n\",\n       \"True       795   1570\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Crosstab for our predictive model\\n\",\n    \"y_pred = lr.predict(x)\\n\",\n    \"guessed=pd.Series(y_pred)==1\\n\",\n    \"\\n\",\n    \"actual=cv.two_year_recid==1\\n\",\n    \"\\n\",\n    \"cm = pd.crosstab(guessed, actual, rownames=['guessed'], colnames=['actual'])\\n\",\n    \"cm\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Accuracy:  0.670447180817\\n\",\n      \"PPV:  0.663847780127\\n\",\n      \"FPR:  0.236396074933\\n\",\n      \"FNR:  0.441082235671\\n\",\n      \"\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print_ppv_fpv(cm)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Once again, we can compare between White and Black.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"White\\n\",\n      \"actual   False  True \\n\",\n      \"guessed              \\n\",\n      \"False     1068    494\\n\",\n      \"True       213    328\\n\",\n      \"\\n\",\n      \"Accuracy:  0.66381359962\\n\",\n      \"PPV:  0.606284658041\\n\",\n      \"FPR:  0.166276346604\\n\",\n      \"FNR:  0.60097323601\\n\",\n      \"\\n\",\n      \"Black\\n\",\n      \"actual   False  True \\n\",\n      \"guessed              \\n\",\n      \"False     1026    564\\n\",\n      \"True       488   1097\\n\",\n      \"\\n\",\n      \"Accuracy:  0.668661417323\\n\",\n      \"PPV:  0.692113564669\\n\",\n      \"FPR:  0.322324966975\\n\",\n      \"FNR:  0.33955448525\\n\",\n      \"\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print('White')\\n\",\n    \"subset = cv.race == 'Caucasian'\\n\",\n    \"print_metrics(guessed[subset], actual[subset])\\n\",\n    \"\\n\",\n    \"print('Black')\\n\",\n    \"subset = cv.race == 'African-American'\\n\",\n    \"print_metrics(guessed[subset], actual[subset])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 4. The limits of prediction\\n\",\n    \"Both COMPAS and our logistic regression classifier only get about 65% accuracy overall. Would it be possible to do better with are more sophisticated classifier or feature encoding? We can take a look at two variables at a time to try to see what's happening here.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.collections.PathCollection at 0x1176abf28>\"\n      ]\n     },\n     \"execution_count\": 35,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Scatterpolot of age vs. priors, colored by two_year_recid\\n\",\n    \"colors = cv.two_year_recid.apply(lambda x: 'red' if x else 'blue')\\n\",\n    \"plt.scatter(cv.age, cv.priors_count, c=colors, alpha=0.05)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# add a  noise to the values in the array\\n\",\n    \"def jitter(arr):\\n\",\n    \"    # pick a standard deviation for the jitter of 3% of the data range\\n\",\n    \"    stdev = .02*(max(arr)-min(arr))\\n\",\n    \"    return arr + np.random.randn(len(arr)) * stdev\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.collections.PathCollection at 0x1177d1fd0>\"\n      ]\n     },\n     \"execution_count\": 37,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nAABJRU5ErkJggg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Scatterpolot of age vs. sex, colored by two_year_recid\\n\",\n    \"plt.scatter(cv.age, jitter(features.sex_Male), c=colors, alpha=0.05)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There is no way to draw a line (even a curved line) that cleanly separates the red (recidivated) and blue (did not recidivate) dots. We can do a little better by looking at more than two axes at a time, and might be able to imagine fitting a curved plane, but it's still not possible to separate red and blue enough to give us a very accurate classifier.\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-5/week-5-2-lending-class-empty.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Week 5-2: The social effects of using machine learning for lending decisions\\n\",\n    \"\\n\",\n    \"This notebook uses about a 10% sample of the [Lending Club data set](https://www.kaggle.com/wendykan/lending-club-loan-data) to examine the results of improved default prediction on who gets a loan and who doesn't. \\n\",\n    \"\\n\",\n    \"This analysis is inspired by the paper [Predictably Unequal? The Effects of Machine Learning on Credit Markets](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3072038) by Fuster et al.\\n\",\n    \"\\n\",\n    \"For more code that deals with machine learning on this data set, see [Predicting Loan Repayment](https://towardsdatascience.com/predicting-loan-repayment-5df4e0023e92).\\n\",\n    \"\\n\",\n    \"This is ~100k row subset of the ~900k records in the original data set. The subset over-samples defaulters enormously, so that repaid vs. defaulted is about 50/50. In the original data it's very much smaller, about 80:20. The preprocessing script does this intentionally, to make the numbers in this example easier to understand. As a side effect, this skews the income distributions because defaulters (who were previously granted a loan, if they're in this data set!) will have different characteristics from non-defaulters, or defaulters who were denied a loan. Another unrealistic thing is that a real loan issuer has some key information that isn't publicly available for privacy reasons, like FICO credit score. \\n\",\n    \"\\n\",\n    \"So **don't take this as reasearch on what the effect of machine learning on loan decisions will actually be.** This document is a learning tool, meant to demonstrate some ways that question could be explored. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"from sklearn.ensemble import RandomForestClassifier\\n\",\n    \"from pandas.plotting import scatter_matrix\\n\",\n    \"from sklearn import metrics\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Our data subset is all the \\\"charged off\\\" or \\\"defaulted\\\" rows in the original, plus 1/20 the \\\"fully paid\\\"\\n\",\n    \"# In any case, it's concluded loans only, nothing that's still being repaid.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# how many rows?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What are the columns? For the column descriptions, see LCDataDictionary.xlsx\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Let's look at value counts for a few fields, to get a sense of what this data is\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What do people get loans for?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# What does the distribution of income look like?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1. A simple classifier\\n\",\n    \"Logisitic regression on a handful of features to try to predict who will fall behind on payments.\\n\",\n    \"\\n\",\n    \"We'll generate features from the following columns\\n\",\n    \"\\n\",\n    \"- purpose: The purpose of the loan such as: credit_card, debt_consolidation, etc.\\n\",\n    \"- installment: The monthly payment on the loan\\n\",\n    \"- annual_inc: the annual income of the borrower.\\n\",\n    \"- dti: The debt-to-income ratio of the borrower, excluding this loan\\n\",\n    \"- pub_rec: The borrower’s number of derogatory public records.\\n\",\n    \"\\n\",\n    \"And the target variable, that we're trying to predict, is:\\n\",\n    \"- loan_status: Fully Paid, Charged Off, or Default\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Encode everything into a feature matrix\\n\",\n    \"features = pd.concat(\\n\",\n    \"    [\\n\",\n    \"        loans.annual_inc/1000, # count in 1000s of dollars, to make the coefficient more easily interpretable\\n\",\n    \"        loans.dti,\\n\",\n    \"        loans.installment,\\n\",\n    \"        loans.pub_rec,\\n\",\n    \"        pd.get_dummies(loans.purpose, prefix='purpose'),\\n\",\n    \"    ],\\n\",\n    \"    axis=1)\\n\",\n    \"\\n\",\n    \"# Code the target variable as True if we are predicting that this loan gets repaid in full\\n\",\n    \"target = loans.loan_status == 'Fully Paid'\\n\",\n    \"\\n\",\n    \"features.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Your basic logistic regression\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Examine regression coefficients\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Let's see how well this classifier did\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Our interest here is the people who were predicted repay the loan, but actually didn't. These are the false positives, and there are a lot of them in this data set (because this data set is artificially enriched so that about half are defaulters.) On the other hand, the false negatives represent people who we guessed would default, but repaid.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Who are these people? We we get an idea by looking at their relative income distribution. First, here's everybody:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And here's the income of just the false positives:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The false positives have a higher income than the average, \\\\$75,000 vs \\\\$70,000. This makes sense as these are people who we thought would repay, and the model increases its odds of repayment by 0.5% for every thousand dollars of income. This adds up, as you can see in the high income of those predicted to repay:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 2. A more accurate classifier\\n\",\n    \"\\n\",\n    \"Let's add more features and use a better classifier to see if we can better predict who will pay off their loans. This is what many lending companies are doing right now.\\n\",\n    \"\\n\",\n    \"The features we'll add:\\n\",\n    \"- loan_amnt: how much was loaned\\n\",\n    \"- int_rate: The interest rate of the loan \\n\",\n    \"- grade: Lending Club's internal loan quality grade\\n\",\n    \"- home_ownership: RENT, OWN, MORTGAGE, OTHER\\n\",\n    \"- earliest_cr_line: The month the borrower's earliest reported credit line was opened\\n\",\n    \"- emp_length: employment length in years\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# To clean up this column, we'll just extract the year using a regex\\n\",\n    \"loans.earliest_cr_line.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"emp_dict = {\\n\",\n    \"     'n/a' : 0,\\n\",\n    \"     '< 1 year' : 0.5,\\n\",\n    \"     ' < 1 year' : 0.5,  # look, dirty data!\\n\",\n    \"     '1 year' : 1,\\n\",\n    \"     '2 years' : 2,\\n\",\n    \"     '3 years' : 3,\\n\",\n    \"     '4 years' : 4,\\n\",\n    \"     '5 years' : 5,\\n\",\n    \"     '6 years' : 6,\\n\",\n    \"     '7 years' : 7,\\n\",\n    \"     '8 years' : 8,\\n\",\n    \"     '9 years' : 9,\\n\",\n    \"     '10+ years' : 10\\n\",\n    \"    }\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"features2 = pd.concat(\\n\",\n    \"    [\\n\",\n    \"        features,\\n\",\n    \"        loans.loan_amnt,\\n\",\n    \"        loans.int_rate,\\n\",\n    \"        pd.get_dummies(loans.grade, prefix='grade'),\\n\",\n    \"        pd.get_dummies(loans.home_ownership, prefix='home'),\\n\",\n    \"        loans.emp_length.replace(emp_dict),\\n\",\n    \"        loans.earliest_cr_line.str.extract('(\\\\d\\\\d\\\\d\\\\d)', expand=False).astype(int)\\n\",\n    \"    ],\\n\",\n    \"    axis=1)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Fit another logistic regression to the new features\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Well, we did it. We got a 5.3% accuracy increase from our big data efforts. In real life the impact of using big data could substantial because it's large, percentage-wise, or because the lender has a large number of customers so small changes affect many people.\\n\",\n    \"\\n\",\n    \"The confusion matrix shows where the improved accuracy comes from:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Change in false positive rate\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Change in false positive rate\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This classifer reduces the number of both false negatives and false positives. False negatives are people who repaid their loan, when the old model said they would not, so they have new access to credit that they will successfully repay. On the other hand, a reduction in false positives means we are now denying credit to people who would have gotten it before.\\n\",\n    \"\\n\",\n    \"Who are the people who we didn't think would repay, but now believe they will?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"In this case the new classifier admitted a bunch of people who are below our average income (of \\\\$70K), which is a probably a socially desirable outcome -- at least for the ones who are able to repay. How many of the newly admitted will default?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"and whether *that* is socially desirable or not depends on what happens when someone defaults, which is a complicated question of law, finance, and power. There's only so far that technical analysis of machine learning can go before it hits the interface with the real world, where everything happens to real people.\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-5/week-5-2-lending-class.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Week 5-2: The social effects of using machine learning for lending decisions\\n\",\n    \"\\n\",\n    \"This notebook uses about a 10% sample of the [Lending Club data set](https://www.kaggle.com/wendykan/lending-club-loan-data) to examine the results of improved default prediction on who gets a loan and who doesn't. \\n\",\n    \"\\n\",\n    \"This analysis is inspired by the paper [Predictably Unequal? The Effects of Machine Learning on Credit Markets](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3072038) by Fuster et al.\\n\",\n    \"\\n\",\n    \"For more code that deals with machine learning on this data set, see [Predicting Loan Repayment](https://towardsdatascience.com/predicting-loan-repayment-5df4e0023e92).\\n\",\n    \"\\n\",\n    \"This is ~100k row subset of the ~900k records in the original data set. The subset over-samples defaulters enormously, so that repaid vs. defaulted is about 50/50. In the original data it's very much smaller, about 80:20. The preprocessing script does this intentionally, to make the numbers in this example easier to understand. As a side effect, this skews the income distributions because defaulters (who were previously granted a loan, if they're in this data set!) will have different characteristics from non-defaulters, or defaulters who were denied a loan. Another unrealistic thing is that a real loan issuer has some key information that isn't publicly available for privacy reasons, like FICO credit score. \\n\",\n    \"\\n\",\n    \"So **don't take this as reasearch on what the effect of machine learning on loan decisions will actually be.** This document is a learning tool, meant to demonstrate some ways that question could be explored. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"from sklearn.ensemble import RandomForestClassifier\\n\",\n    \"from pandas.plotting import scatter_matrix\\n\",\n    \"from sklearn import metrics\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/Users/jonathanstray/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py:2698: DtypeWarning: Columns (19) have mixed types. Specify dtype option on import or set low_memory=False.\\n\",\n      \"  interactivity=interactivity, compiler=compiler, result=result)\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>id</th>\\n\",\n       \"      <th>member_id</th>\\n\",\n       \"      <th>loan_amnt</th>\\n\",\n       \"      <th>funded_amnt</th>\\n\",\n       \"      <th>funded_amnt_inv</th>\\n\",\n       \"      <th>term</th>\\n\",\n       \"      <th>int_rate</th>\\n\",\n       \"      <th>installment</th>\\n\",\n       \"      <th>grade</th>\\n\",\n       \"      <th>sub_grade</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>total_bal_il</th>\\n\",\n       \"      <th>il_util</th>\\n\",\n       \"      <th>open_rv_12m</th>\\n\",\n       \"      <th>open_rv_24m</th>\\n\",\n       \"      <th>max_bal_bc</th>\\n\",\n       \"      <th>all_util</th>\\n\",\n       \"      <th>total_rev_hi_lim</th>\\n\",\n       \"      <th>inq_fi</th>\\n\",\n       \"      <th>total_cu_tl</th>\\n\",\n       \"      <th>inq_last_12m</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1077430</td>\\n\",\n       \"      <td>1314167</td>\\n\",\n       \"      <td>2500.0</td>\\n\",\n       \"      <td>2500.0</td>\\n\",\n       \"      <td>2500.0</td>\\n\",\n       \"      <td>60 months</td>\\n\",\n       \"      <td>15.27</td>\\n\",\n       \"      <td>59.83</td>\\n\",\n       \"      <td>C</td>\\n\",\n       \"      <td>C4</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1071795</td>\\n\",\n       \"      <td>1306957</td>\\n\",\n       \"      <td>5600.0</td>\\n\",\n       \"      <td>5600.0</td>\\n\",\n       \"      <td>5600.0</td>\\n\",\n       \"      <td>60 months</td>\\n\",\n       \"      <td>21.28</td>\\n\",\n       \"      <td>152.39</td>\\n\",\n       \"      <td>F</td>\\n\",\n       \"      <td>F2</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1071570</td>\\n\",\n       \"      <td>1306721</td>\\n\",\n       \"      <td>5375.0</td>\\n\",\n       \"      <td>5375.0</td>\\n\",\n       \"      <td>5350.0</td>\\n\",\n       \"      <td>60 months</td>\\n\",\n       \"      <td>12.69</td>\\n\",\n       \"      <td>121.45</td>\\n\",\n       \"      <td>B</td>\\n\",\n       \"      <td>B5</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1064687</td>\\n\",\n       \"      <td>1298717</td>\\n\",\n       \"      <td>9000.0</td>\\n\",\n       \"      <td>9000.0</td>\\n\",\n       \"      <td>9000.0</td>\\n\",\n       \"      <td>36 months</td>\\n\",\n       \"      <td>13.49</td>\\n\",\n       \"      <td>305.38</td>\\n\",\n       \"      <td>C</td>\\n\",\n       \"      <td>C1</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>1069057</td>\\n\",\n       \"      <td>1303503</td>\\n\",\n       \"      <td>10000.0</td>\\n\",\n       \"      <td>10000.0</td>\\n\",\n       \"      <td>10000.0</td>\\n\",\n       \"      <td>36 months</td>\\n\",\n       \"      <td>10.65</td>\\n\",\n       \"      <td>325.74</td>\\n\",\n       \"      <td>B</td>\\n\",\n       \"      <td>B2</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 74 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"        id  member_id  loan_amnt  funded_amnt  funded_amnt_inv        term  \\\\\\n\",\n       \"0  1077430    1314167     2500.0       2500.0           2500.0   60 months   \\n\",\n       \"1  1071795    1306957     5600.0       5600.0           5600.0   60 months   \\n\",\n       \"2  1071570    1306721     5375.0       5375.0           5350.0   60 months   \\n\",\n       \"3  1064687    1298717     9000.0       9000.0           9000.0   36 months   \\n\",\n       \"4  1069057    1303503    10000.0      10000.0          10000.0   36 months   \\n\",\n       \"\\n\",\n       \"   int_rate  installment grade sub_grade     ...      total_bal_il il_util  \\\\\\n\",\n       \"0     15.27        59.83     C        C4     ...               NaN     NaN   \\n\",\n       \"1     21.28       152.39     F        F2     ...               NaN     NaN   \\n\",\n       \"2     12.69       121.45     B        B5     ...               NaN     NaN   \\n\",\n       \"3     13.49       305.38     C        C1     ...               NaN     NaN   \\n\",\n       \"4     10.65       325.74     B        B2     ...               NaN     NaN   \\n\",\n       \"\\n\",\n       \"  open_rv_12m  open_rv_24m max_bal_bc all_util total_rev_hi_lim inq_fi  \\\\\\n\",\n       \"0         NaN          NaN        NaN      NaN              NaN    NaN   \\n\",\n       \"1         NaN          NaN        NaN      NaN              NaN    NaN   \\n\",\n       \"2         NaN          NaN        NaN      NaN              NaN    NaN   \\n\",\n       \"3         NaN          NaN        NaN      NaN              NaN    NaN   \\n\",\n       \"4         NaN          NaN        NaN      NaN              NaN    NaN   \\n\",\n       \"\\n\",\n       \"  total_cu_tl inq_last_12m  \\n\",\n       \"0         NaN          NaN  \\n\",\n       \"1         NaN          NaN  \\n\",\n       \"2         NaN          NaN  \\n\",\n       \"3         NaN          NaN  \\n\",\n       \"4         NaN          NaN  \\n\",\n       \"\\n\",\n       \"[5 rows x 74 columns]\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Our data subset is all the \\\"charged off\\\" or \\\"defaulted\\\" rows in the original, plus 1/20 the \\\"fully paid\\\"\\n\",\n    \"# In any case, it's concluded loans only, nothing that's still being repaid.\\n\",\n    \"loans = pd.read_csv('loan-subset.csv')\\n\",\n    \"loans.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"98054\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# how many rows?\\n\",\n    \"len(loans)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Index(['id', 'member_id', 'loan_amnt', 'funded_amnt', 'funded_amnt_inv',\\n\",\n       \"       'term', 'int_rate', 'installment', 'grade', 'sub_grade', 'emp_title',\\n\",\n       \"       'emp_length', 'home_ownership', 'annual_inc', 'verification_status',\\n\",\n       \"       'issue_d', 'loan_status', 'pymnt_plan', 'url', 'desc', 'purpose',\\n\",\n       \"       'title', 'zip_code', 'addr_state', 'dti', 'delinq_2yrs',\\n\",\n       \"       'earliest_cr_line', 'inq_last_6mths', 'mths_since_last_delinq',\\n\",\n       \"       'mths_since_last_record', 'open_acc', 'pub_rec', 'revol_bal',\\n\",\n       \"       'revol_util', 'total_acc', 'initial_list_status', 'out_prncp',\\n\",\n       \"       'out_prncp_inv', 'total_pymnt', 'total_pymnt_inv', 'total_rec_prncp',\\n\",\n       \"       'total_rec_int', 'total_rec_late_fee', 'recoveries',\\n\",\n       \"       'collection_recovery_fee', 'last_pymnt_d', 'last_pymnt_amnt',\\n\",\n       \"       'next_pymnt_d', 'last_credit_pull_d', 'collections_12_mths_ex_med',\\n\",\n       \"       'mths_since_last_major_derog', 'policy_code', 'application_type',\\n\",\n       \"       'annual_inc_joint', 'dti_joint', 'verification_status_joint',\\n\",\n       \"       'acc_now_delinq', 'tot_coll_amt', 'tot_cur_bal', 'open_acc_6m',\\n\",\n       \"       'open_il_6m', 'open_il_12m', 'open_il_24m', 'mths_since_rcnt_il',\\n\",\n       \"       'total_bal_il', 'il_util', 'open_rv_12m', 'open_rv_24m', 'max_bal_bc',\\n\",\n       \"       'all_util', 'total_rev_hi_lim', 'inq_fi', 'total_cu_tl',\\n\",\n       \"       'inq_last_12m'],\\n\",\n       \"      dtype='object')\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# What are the columns? For the column descriptions, see LCDataDictionary.xlsx\\n\",\n    \"loans.columns\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Fully Paid     51587\\n\",\n       \"Charged Off    45248\\n\",\n       \"Default         1219\\n\",\n       \"Name: loan_status, dtype: int64\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Let's look at value counts for a few fields, to get a sense of what this data is\\n\",\n    \"loans.loan_status.value_counts()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"debt_consolidation    58233\\n\",\n       \"credit_card           18661\\n\",\n       \"other                  5785\\n\",\n       \"home_improvement       5454\\n\",\n       \"small_business         2231\\n\",\n       \"major_purchase         2209\\n\",\n       \"car                    1305\\n\",\n       \"medical                1163\\n\",\n       \"moving                  823\\n\",\n       \"wedding                 705\\n\",\n       \"house                   626\\n\",\n       \"vacation                618\\n\",\n       \"educational             131\\n\",\n       \"renewable_energy        110\\n\",\n       \"Name: purpose, dtype: int64\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# What do people get loans for?\\n\",\n    \"loans.purpose.value_counts()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# What does the distribution of income look like?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1. A simple classifier\\n\",\n    \"Logisitic regression on a handful of features to try to predict who will fall behind on payments.\\n\",\n    \"\\n\",\n    \"We'll generate features from the following columns\\n\",\n    \"\\n\",\n    \"- purpose: The purpose of the loan such as: credit_card, debt_consolidation, etc.\\n\",\n    \"- installment: The monthly payment on the loan\\n\",\n    \"- annual_inc: the annual income of the borrower.\\n\",\n    \"- dti: The debt-to-income ratio of the borrower, excluding this loan\\n\",\n    \"- pub_rec: The borrower’s number of derogatory public records.\\n\",\n    \"\\n\",\n    \"And the target variable, that we're trying to predict, is:\\n\",\n    \"- loan_status: Fully Paid, Charged Off, or Default\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>annual_inc</th>\\n\",\n       \"      <th>dti</th>\\n\",\n       \"      <th>installment</th>\\n\",\n       \"      <th>pub_rec</th>\\n\",\n       \"      <th>purpose_car</th>\\n\",\n       \"      <th>purpose_credit_card</th>\\n\",\n       \"      <th>purpose_debt_consolidation</th>\\n\",\n       \"      <th>purpose_educational</th>\\n\",\n       \"      <th>purpose_home_improvement</th>\\n\",\n       \"      <th>purpose_house</th>\\n\",\n       \"      <th>purpose_major_purchase</th>\\n\",\n       \"      <th>purpose_medical</th>\\n\",\n       \"      <th>purpose_moving</th>\\n\",\n       \"      <th>purpose_other</th>\\n\",\n       \"      <th>purpose_renewable_energy</th>\\n\",\n       \"      <th>purpose_small_business</th>\\n\",\n       \"      <th>purpose_vacation</th>\\n\",\n       \"      <th>purpose_wedding</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>30.0</td>\\n\",\n       \"      <td>1.00</td>\\n\",\n       \"      <td>59.83</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>40.0</td>\\n\",\n       \"      <td>5.55</td>\\n\",\n       \"      <td>152.39</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>15.0</td>\\n\",\n       \"      <td>18.08</td>\\n\",\n       \"      <td>121.45</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>30.0</td>\\n\",\n       \"      <td>10.08</td>\\n\",\n       \"      <td>305.38</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>100.0</td>\\n\",\n       \"      <td>7.06</td>\\n\",\n       \"      <td>325.74</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   annual_inc    dti  installment  pub_rec  purpose_car  purpose_credit_card  \\\\\\n\",\n       \"0        30.0   1.00        59.83      0.0            1                    0   \\n\",\n       \"1        40.0   5.55       152.39      0.0            0                    0   \\n\",\n       \"2        15.0  18.08       121.45      0.0            0                    0   \\n\",\n       \"3        30.0  10.08       305.38      0.0            0                    0   \\n\",\n       \"4       100.0   7.06       325.74      0.0            0                    0   \\n\",\n       \"\\n\",\n       \"   purpose_debt_consolidation  purpose_educational  purpose_home_improvement  \\\\\\n\",\n       \"0                           0                    0                         0   \\n\",\n       \"1                           0                    0                         0   \\n\",\n       \"2                           0                    0                         0   \\n\",\n       \"3                           1                    0                         0   \\n\",\n       \"4                           0                    0                         0   \\n\",\n       \"\\n\",\n       \"   purpose_house  purpose_major_purchase  purpose_medical  purpose_moving  \\\\\\n\",\n       \"0              0                       0                0               0   \\n\",\n       \"1              0                       0                0               0   \\n\",\n       \"2              0                       0                0               0   \\n\",\n       \"3              0                       0                0               0   \\n\",\n       \"4              0                       0                0               0   \\n\",\n       \"\\n\",\n       \"   purpose_other  purpose_renewable_energy  purpose_small_business  \\\\\\n\",\n       \"0              0                         0                       0   \\n\",\n       \"1              0                         0                       1   \\n\",\n       \"2              1                         0                       0   \\n\",\n       \"3              0                         0                       0   \\n\",\n       \"4              1                         0                       0   \\n\",\n       \"\\n\",\n       \"   purpose_vacation  purpose_wedding  \\n\",\n       \"0                 0                0  \\n\",\n       \"1                 0                0  \\n\",\n       \"2                 0                0  \\n\",\n       \"3                 0                0  \\n\",\n       \"4                 0                0  \"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Encode everything into a feature matrix\\n\",\n    \"features = pd.concat(\\n\",\n    \"    [\\n\",\n    \"        loans.annual_inc/1000, # count in 1000s of dollars, to make the coefficient more easily interpretable\\n\",\n    \"        loans.dti,\\n\",\n    \"        loans.installment,\\n\",\n    \"        loans.pub_rec,\\n\",\n    \"        pd.get_dummies(loans.purpose, prefix='purpose'),\\n\",\n    \"    ],\\n\",\n    \"    axis=1)\\n\",\n    \"\\n\",\n    \"# Code the target variable as True if we are predicting that this loan gets repaid in full\\n\",\n    \"target = loans.loan_status == 'Fully Paid'\\n\",\n    \"\\n\",\n    \"features.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"LogisticRegression(C=1.0, class_weight=None, dual=False, fit_intercept=True,\\n\",\n       \"          intercept_scaling=1, max_iter=100, multi_class='ovr', n_jobs=1,\\n\",\n       \"          penalty='l2', random_state=None, solver='liblinear', tol=0.0001,\\n\",\n       \"          verbose=0, warm_start=False)\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Your basic logistic regression\\n\",\n    \"lr = LogisticRegression()\\n\",\n    \"lr.fit(features.values,target.values)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>annual_inc</th>\\n\",\n       \"      <th>dti</th>\\n\",\n       \"      <th>installment</th>\\n\",\n       \"      <th>pub_rec</th>\\n\",\n       \"      <th>purpose_car</th>\\n\",\n       \"      <th>purpose_credit_card</th>\\n\",\n       \"      <th>purpose_debt_consolidation</th>\\n\",\n       \"      <th>purpose_educational</th>\\n\",\n       \"      <th>purpose_home_improvement</th>\\n\",\n       \"      <th>purpose_house</th>\\n\",\n       \"      <th>purpose_major_purchase</th>\\n\",\n       \"      <th>purpose_medical</th>\\n\",\n       \"      <th>purpose_moving</th>\\n\",\n       \"      <th>purpose_other</th>\\n\",\n       \"      <th>purpose_renewable_energy</th>\\n\",\n       \"      <th>purpose_small_business</th>\\n\",\n       \"      <th>purpose_vacation</th>\\n\",\n       \"      <th>purpose_wedding</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1.0069</td>\\n\",\n       \"      <td>0.96986</td>\\n\",\n       \"      <td>0.999012</td>\\n\",\n       \"      <td>0.928943</td>\\n\",\n       \"      <td>1.505477</td>\\n\",\n       \"      <td>1.400082</td>\\n\",\n       \"      <td>1.144862</td>\\n\",\n       \"      <td>1.024311</td>\\n\",\n       \"      <td>1.168251</td>\\n\",\n       \"      <td>1.058983</td>\\n\",\n       \"      <td>1.241957</td>\\n\",\n       \"      <td>0.850134</td>\\n\",\n       \"      <td>0.754301</td>\\n\",\n       \"      <td>0.833169</td>\\n\",\n       \"      <td>0.964637</td>\\n\",\n       \"      <td>0.52969</td>\\n\",\n       \"      <td>1.040044</td>\\n\",\n       \"      <td>1.464149</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   annual_inc      dti  installment   pub_rec  purpose_car  \\\\\\n\",\n       \"0      1.0069  0.96986     0.999012  0.928943     1.505477   \\n\",\n       \"\\n\",\n       \"   purpose_credit_card  purpose_debt_consolidation  purpose_educational  \\\\\\n\",\n       \"0             1.400082                    1.144862             1.024311   \\n\",\n       \"\\n\",\n       \"   purpose_home_improvement  purpose_house  purpose_major_purchase  \\\\\\n\",\n       \"0                  1.168251       1.058983                1.241957   \\n\",\n       \"\\n\",\n       \"   purpose_medical  purpose_moving  purpose_other  purpose_renewable_energy  \\\\\\n\",\n       \"0         0.850134        0.754301       0.833169                  0.964637   \\n\",\n       \"\\n\",\n       \"   purpose_small_business  purpose_vacation  purpose_wedding  \\n\",\n       \"0                 0.52969          1.040044         1.464149  \"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Examine regression coefficients\\n\",\n    \"coeffs = pd.DataFrame(np.exp(lr.coef_), columns=features.columns)\\n\",\n    \"coeffs\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.5922144940542966\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Let's see how well this classifier did\\n\",\n    \"pred_repaid = lr.predict(features.values)\\n\",\n    \"actual_repaid = target.values\\n\",\n    \"metrics.accuracy_score(pred_repaid, actual_repaid)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>actual</th>\\n\",\n       \"      <th>False</th>\\n\",\n       \"      <th>True</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>guessed</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>False</th>\\n\",\n       \"      <td>23423</td>\\n\",\n       \"      <td>16941</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True</th>\\n\",\n       \"      <td>23044</td>\\n\",\n       \"      <td>34646</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"actual   False  True \\n\",\n       \"guessed              \\n\",\n       \"False    23423  16941\\n\",\n       \"True     23044  34646\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"cm = pd.crosstab(pred_repaid, actual_repaid, rownames=['guessed'], colnames=['actual'])\\n\",\n    \"cm\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Our interest here is the people who were predicted repay the loan, but actually didn't. These are the false positives, and there are a lot of them in this data set (because this data set is artificially enriched so that about half are defaulters.) On the other hand, the false negatives represent people who we guessed would default, but repaid.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"23044\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"fp = cm[False][True]  # column, row\\n\",\n    \"fp\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"16941\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"fn = cm[True][False]\\n\",\n    \"fn\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Who are these people? We we get an idea by looking at their relative income distribution. First, here's everybody:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"69.91291217910539\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\ncgEwM8up/wcg63Zkf6FdRAAAAABJRU5ErkJggg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"income_bins=list(range(0,200,5))\\n\",\n    \"features.annual_inc.hist(bins=income_bins)\\n\",\n    \"features.annual_inc.mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And here's the income of just the false positives:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"74.704691478475965\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"fp_loans = features[~actual_repaid & pred_repaid]\\n\",\n    \"fp_loans.annual_inc.hist(bins=income_bins)\\n\",\n    \"fp_loans.annual_inc.mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The false positives have a higher income than the average, \\\\$75,000 vs \\\\$70,000. This makes sense as these are people who we thought would repay, and the model increases its odds of repayment by 0.5% for every thousand dollars of income. This adds up, as you can see in the high income of those predicted to repay:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"79.101337028254463\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\ngg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"pred_repaid_loans = features[pred_repaid]\\n\",\n    \"pred_repaid_loans.annual_inc.hist(bins=income_bins)\\n\",\n    \"pred_repaid_loans.annual_inc.mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 2. A more accurate classifier\\n\",\n    \"\\n\",\n    \"Let's add more features and use a better classifier to see if we can better predict who will pay off their loans. This is what many lending companies are doing right now.\\n\",\n    \"\\n\",\n    \"The features we'll add:\\n\",\n    \"- loan_amnt: how much was loaned\\n\",\n    \"- int_rate: The interest rate of the loan \\n\",\n    \"- grade: Lending Club's internal loan quality grade\\n\",\n    \"- home_ownership: RENT, OWN, MORTGAGE, OTHER\\n\",\n    \"- earliest_cr_line: The month the borrower's earliest reported credit line was opened\\n\",\n    \"- emp_length: employment length in years\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0    Apr-1999\\n\",\n       \"1    Apr-2004\\n\",\n       \"2    Sep-2004\\n\",\n       \"3    Apr-2004\\n\",\n       \"4    May-1991\\n\",\n       \"Name: earliest_cr_line, dtype: object\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# To clean up this column, we'll just extract the year using a regex\\n\",\n    \"loans.earliest_cr_line.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"emp_dict = {\\n\",\n    \"     'n/a' : 0,\\n\",\n    \"     '< 1 year' : 0.5,\\n\",\n    \"     ' < 1 year' : 0.5,  # look, dirty data!\\n\",\n    \"     '1 year' : 1,\\n\",\n    \"     '2 years' : 2,\\n\",\n    \"     '3 years' : 3,\\n\",\n    \"     '4 years' : 4,\\n\",\n    \"     '5 years' : 5,\\n\",\n    \"     '6 years' : 6,\\n\",\n    \"     '7 years' : 7,\\n\",\n    \"     '8 years' : 8,\\n\",\n    \"     '9 years' : 9,\\n\",\n    \"     '10+ years' : 10\\n\",\n    \"    }\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"features2 = pd.concat(\\n\",\n    \"    [\\n\",\n    \"        features,\\n\",\n    \"        loans.loan_amnt,\\n\",\n    \"        loans.int_rate,\\n\",\n    \"        pd.get_dummies(loans.grade, prefix='grade'),\\n\",\n    \"        pd.get_dummies(loans.home_ownership, prefix='home'),\\n\",\n    \"        loans.emp_length.replace(emp_dict),\\n\",\n    \"        loans.earliest_cr_line.str.extract('(\\\\d\\\\d\\\\d\\\\d)', expand=False).astype(int)\\n\",\n    \"    ],\\n\",\n    \"    axis=1)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.64507312297305563\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lr2 = LogisticRegression()\\n\",\n    \"lr2.fit(features2.values, actual_repaid)\\n\",\n    \"pred_repaid2 = lr2.predict(features2.values)\\n\",\n    \"metrics.accuracy_score(pred_repaid2, actual_repaid)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.052858628918759032\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"metrics.accuracy_score(pred_repaid2, actual_repaid) - metrics.accuracy_score(pred_repaid, actual_repaid)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Well, we did it. We got a 5.3% accuracy increase from our big data efforts. In real life the impact of using big data could substantial because it's large, percentage-wise, or because the lender has a large number of customers so small changes affect many people.\\n\",\n    \"\\n\",\n    \"The confusion matrix shows where the improved accuracy comes from:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th>actual</th>\\n\",\n       \"      <th>False</th>\\n\",\n       \"      <th>True</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>guessed</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>False</th>\\n\",\n       \"      <td>28367</td>\\n\",\n       \"      <td>16702</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>True</th>\\n\",\n       \"      <td>18100</td>\\n\",\n       \"      <td>34885</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"actual   False  True \\n\",\n       \"guessed              \\n\",\n       \"False    28367  16702\\n\",\n       \"True     18100  34885\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"cm2 = pd.crosstab(pred_repaid2, actual_repaid, rownames=['guessed'], colnames=['actual'])\\n\",\n    \"cm2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"-4944\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Change in false positive rate\\n\",\n    \"fp2 = cm2[False][True]  # column, row\\n\",\n    \"fp2 - fp\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"-239\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Change in false positive rate\\n\",\n    \"fn2 = cm2[True][False]  # column, row\\n\",\n    \"fn2 - fn\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This classifer reduces the number of both false negatives and false positives. False negatives are people who repaid their loan, when the old model said they would not, so they have new access to credit that they will successfully repay. On the other hand, a reduction in false positives means we are now denying credit to people who would have gotten it before.\\n\",\n    \"\\n\",\n    \"Who are the people who we didn't think would repay, but now believe they will?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12468\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"newly_eligible = features[~pred_repaid & pred_repaid2]\\n\",\n    \"len(newly_eligible)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"58.841178647738211\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"newly_eligible.annual_inc.hist(bins=income_bins)\\n\",\n    \"newly_eligible.annual_inc.mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"In this case the new classifier admitted a bunch of people who are below our average income (of \\\\$70K), which is a probably a socially desirable outcome -- at least for the ones who are able to repay. How many of the newly admitted will default?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5046\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(~pred_repaid & pred_repaid2 & ~actual_repaid).sum()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"and whether *that* is socially desirable or not depends on what happens when someone defaults, which is a complicated question of law, finance, and power. There's only so far that technical analysis of machine learning can go before it hits the interface with the real world, where everything happens to real people.\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-6/README.md",
    "content": "## Week 6 - Simulations\n\nSome simulations of note:\n\n- [Should Prison Sentences Be Based On Crimes That Haven’t Been Committed Yet?](https://fivethirtyeight.com/features/prison-reform-risk-assessment/) - Fivethirtyeight\n\n- [Watch how the measles outbreak spreads when kids get vaccinated – and when they don't](https://www.theguardian.com/society/ng-interactive/2015/feb/05/-sp-watch-how-measles-outbreak-spreads-when-kids-get-vaccinated) - The Guardian\n\n- [This game will show you just how foolish it is to sell stocks right now](https://qz.com/487013/this-game-will-show-you-just-how-foolish-it-is-to-sell-stocks-right-now/) - Quartz\n\n\n- [How BuzzFeed News Used Betting Data To Investigate Match-Fixing In Tennis](https://www.buzzfeednews.com/article/johntemplon/how-we-used-data-to-investigate-match-fixing-in-tennis). See also the [code notebook](https://github.com/BuzzFeedNews/2016-01-tennis-betting-analysis)!\n\n- The Wall Street Journal's multi-decade investigation into insider trading has used simulation several times: [2006](http://www.pulitzer.org/winners/wall-street-journal)(read \"How the journal analyzed stock-option grants\"), [2013](http://businessjournalism.org/2013/11/bronze-from-casual-conversation-to-massive-investigation-into-insider-trading/), and [2017](https://www.wsj.com/articles/hundreds-of-people-made-gifts-of-stock-with-great-timing-1513881239)\n\n- [Statistical Model Strongly Suggests the Stormy Daniels Payoff Came from the Trump Campaign](https://medium.com/@whstancil/statistical-model-strongly-suggests-the-stormy-daniels-payoff-came-from-the-trump-campaign-7c09c300cb18). This one has similar structure to The Tennis Racker but has been criticized on the grounds that if you take the previous 20 payments, as opposed to the previous 10, the probability of getting close to $130,000 is very much higher."
  },
  {
    "path": "week-6/Simple Polling Simulation.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Polling simulation\\n\",\n    \"\\n\",\n    \"Let's take a look at how margin of error arises from picking random samples from a population.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"import pandas as pd\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# True proportion of Clinton voters in the population\\n\",\n    \"p = 0.40\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# population size\\n\",\n    \"N = 500000\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Ground truth of who will vote for Clinton, one entry for each voter\\n\",\n    \"clinton_votes = pd.Series(np.random.random(N) < p)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# How many voters we poll each time\\n\",\n    \"n = 100\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# How many times we retry the polling to generate our histogram of possible results\\n\",\n    \"num_simulations = 1000 \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Return fraction Clinton voters in one poll simulation\\n\",\n    \"def simulate_poll(dummy):\\n\",\n    \"    return clinton_votes.sample(n).mean()\\n\",\n    \"\\n\",\n    \"results = pd.DataFrame(np.zeros(num_simulations))\\n\",\n    \"results = results.applymap(simulate_poll)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.axes._subplots.AxesSubplot at 0x1091d6940>\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAYgAAAD8CAYAAABthzNFAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBo\\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAFVJJREFUeJzt3X+wX3V95/HnSwJGt1SUXFk2N+kN\\nFW2R1jF7YdlxbFXaSsEl7q7Lxq0rKppVWbXVqUbbWZzdcQanrVTX1hqVFVwB0VrJLv4oUpTZnQIG\\nfwLWkoUIN6KJ+KtW+RXf+8f3RK7hhHvuzf1+z/fe+3zM3Mk5n3O+3/M+JOSVz/mc8zmpKiRJOtAj\\n+i5AkjSeDAhJUisDQpLUyoCQJLUyICRJrQwISVIrA0KS1MqAkCS1MiAkSa1W9V3AoVizZk1NTU31\\nXYYkLSk33njjt6tqYq79lnRATE1NsWPHjr7LkKQlJcnXu+znJSZJUisDQpLUyoCQJLVa0mMQktSX\\n+++/n5mZGe65556+Szmo1atXMzk5yeGHH76gzxsQkrQAMzMzHHnkkUxNTZGk73Ieoqq4++67mZmZ\\nYcOGDQv6Di8xSdIC3HPPPRx99NFjGQ4ASTj66KMPqYdjQEjSAo1rOOx3qPUZEJKkVkMbg0hyIfAc\\nYE9VnTir/VXAucA+4Mqqen3T/kbgnKb91VX1qWHVJkmLbWrrlYv6fbvOP2POfT75yU/ymte8hn37\\n9vHSl76UrVu3LmoNwxykfj/wTuDi/Q1JnglsAp5SVfcmeXzTfgKwGXgy8M+ATyd5YlXtG2J9WmEO\\n9j9wl/8RpXGzb98+zj33XK666iomJyc56aSTOPPMMznhhBMW7RhDu8RUVdcC3zmg+RXA+VV1b7PP\\nnqZ9E3BZVd1bVbcDO4GTh1WbJC11N9xwA094whM47rjjOOKII9i8eTNXXHHFoh5j1GMQTwSenuT6\\nJJ9NclLTvha4c9Z+M03bQyTZkmRHkh179+4dcrmSNJ52797NunXrfro+OTnJ7t27F/UYow6IVcDj\\ngFOA3wcuzzyH2atqW1VNV9X0xMSckxFKkhZo1AExA3y0Bm4AfgKsAXYD62btN9m0SZJarF27ljvv\\nfPDCy8zMDGvXtl54WbBRP0n9MeCZwDVJnggcAXwb2A5ckuRtDAapjwduGHFtWgYW+04SaVyddNJJ\\n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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Plot the range between 0..1 in 50 bins on 0.02 tick marks\\n\",\n    \"results.plot(kind='hist', bins=pd.Series(range(0,50))/50.0)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-6/data/15-16-cycle-disbursements-to-trump-properties.csv",
    "content": "disbursement_date,recipient_name,recipient_state,disbursement_amount,disbursement_description,recipient_city,disbursement_purpose_category,pdf_url,,,,,\r\n4/30/15 0:00,TRUMP INTERNATIONAL HOTEL AND TOWER,NY,\"$1,380.54 \",TTW - TRAVEL: LODGING,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201507159000184884,,,,,\r\n5/5/15 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$9,583.33 \",TTW - RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201507159000184885,,,,,\r\n6/16/15 0:00,THE TRUMP CORPORATION,NY,\"$37,993.04 \",\"TTW  - ONE-TIME REIMBURSEMENT FOR FACILITY, RESOURCES & DOMAIN NAMES\",NEW YORK,OTHER,http://docquery.fec.gov/cgi-bin/fecimg/?201507159000184881,,,,,\r\n6/16/15 0:00,TRUMP SOHO,NY,\"$3,240.96 \",TTW - TRAVEL: LODGING,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201507159000184885,,,,,\r\n6/16/15 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$9,583.33 \",TTW - RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201507159000184886,,,,,\r\n6/17/15 0:00,TRUMP SOHO,NY,$814.24 ,TRAVEL: LODGING,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201507159000184885,,,,,\r\n7/1/15 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291446,,,,,\r\n7/1/15 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291446,,,,,\r\n7/1/15 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291446,,,,,\r\n7/3/15 0:00,TRUMP INTERNATIONAL HOTEL,NY,$516.39 ,TRAVEL: LODGING [MCMULLEN: SB23.7057],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291474,,,,,\r\n7/6/15 0:00,THE TRUMP CORPORATION,NY,\"$9,583.33 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291444,,,,,\r\n7/29/15 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$25,874.17 \",RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291475,,,,,\r\n8/1/15 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291454,,,,,\r\n8/1/15 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291455,,,,,\r\n8/1/15 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291454,,,,,\r\n8/18/15 0:00,TRUMP CAFE,NY,$9.00 ,MEETING EXPENSE: MEALS [AMEX: SB23.248388],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280859,,,,,\r\n8/19/15 0:00,TRUMP CAFE,NY,$9.00 ,MEETING EXPENSE: MEALS [AMEX: SB23.248388],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280860,,,,,\r\n8/20/15 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$35,457.50 \",RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291475,,,,,\r\n8/24/15 0:00,TRUMP CAFE,NY,$25.12 ,MEETING EXPENSE: MEALS [AMEX: SB23.248388],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280860,,,,,\r\n8/24/15 0:00,TRUMP CAFE,NY,$14.46 ,MEETING EXPENSE: MEALS [AMEX: SB23.248388],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280860,,,,,\r\n8/26/15 0:00,TRUMP RESTAURANTS LLC,NY,\"$1,483.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291474,,,,,\r\n8/28/15 0:00,TRUMP CAFE,NY,$6.80 ,MEETING EXPENSE: MEALS [AMEX: SB23.248388],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280861,,,,,\r\n8/31/15 0:00,TRUMP RESTAURANTS LLC,NY,$702.24 ,MEETING EXPENSE: MEALS,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291475,,,,,\r\n9/1/15 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291464,,,,,\r\n9/1/15 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291464,,,,,\r\n9/1/15 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291464,,,,,\r\n9/2/15 0:00,TRUMP HOTEL,NV,$286.73 ,TRAVEL: LODGING [AMEX: SB23.6878],LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291473,,,,,\r\n9/3/15 0:00,TRUMP CAFE,NY,$5.82 ,MEETING EXPENSE: MEALS [AMEX: SB23.248388],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280861,,,,,\r\n9/3/15 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$35,457.50 \",RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291476,,,,,\r\n9/10/15 0:00,TRUMP CAFE,NY,$14.00 ,MEETING EXPENSE: MEALS [AMEX: SB23.248388],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280861,,,,,\r\n9/11/15 0:00,TRUMP CAFE,NY,$10.41 ,MEETING EXPENSE: MEALS [AMEX: SB23.248388],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280862,,,,,\r\n9/17/15 0:00,TRUMP GRILL,NY,$15.51 ,MEETING EXPENSE: MEALS [AMEX: SB23.248389],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280862,,,,,\r\n9/18/15 0:00,TRUMP GRILL,NY,$6.64 ,MEETING EXPENSE: MEALS [AMEX: SB23.248389],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280862,,,,,\r\n9/21/15 0:00,TRUMP INTL HOTEL,NV,$335.59 ,TRAVEL: LODGING [C&M: SB23.6896],LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291474,,,,,\r\n9/23/15 0:00,TRUMP GRILL,NY,$4.42 ,MEETING EXPENSE: MEALS [AMEX: SB23.248389],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280863,,,,,\r\n9/24/15 0:00,TRUMP GRILL,NY,$9.78 ,MEETING EXPENSE: MEALS [AMEX: SB23.248389],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280863,,,,,\r\n9/24/15 0:00,TRUMP GRILL,NY,$94.46 ,MEETING EXPENSE: MEALS [AMEX: SB23.248389],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280863,,,,,\r\n9/25/15 0:00,THE TRUMP CORPORATION,NY,\"$35,457.50 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201512179004291444,,,,,\r\n10/1/15 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280827,,,,,\r\n10/1/15 0:00,TRUMP GRILL,NY,$18.35 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280864,,,,,\r\n10/1/15 0:00,TRUMP GRILL,NY,$6.88 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280864,,,,,\r\n10/1/15 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280828,,,,,\r\n10/1/15 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280827,,,,,\r\n10/2/15 0:00,TRUMP GRILL,NY,$10.21 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280864,,,,,\r\n10/5/15 0:00,TRUMP GRILL,NY,$4.73 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280865,,,,,\r\n10/6/15 0:00,TRUMP GRILL,NY,$15.22 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280865,,,,,\r\n10/13/15 0:00,TRUMP GRILL,NY,$10.02 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280865,,,,,\r\n10/16/15 0:00,TRUMP GRILL,NY,$10.02 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280866,,,,,\r\n10/19/15 0:00,TRUMP SOHO NEW YORK,NY,$100.00 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280871,,,,,\r\n10/20/15 0:00,TRUMP GRILL,NY,$174.04 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280866,,,,,\r\n10/22/15 0:00,TRUMP GRILL,NY,$8.64 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280866,,,,,\r\n10/22/15 0:00,TRUMP GRILL,NY,$11.39 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280867,,,,,\r\n10/26/15 0:00,TRUMP GRILL,NY,$21.07 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280867,,,,,\r\n10/27/15 0:00,TRUMP GRILL,NY,$8.71 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280867,,,,,\r\n10/27/15 0:00,TRUMP GRILL,NY,$20.40 ,MEETING EXPENSE: MEALS [AMEX: SB23.248391],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280868,,,,,\r\n11/1/15 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280838,,,,,\r\n11/1/15 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280839,,,,,\r\n11/1/15 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280838,,,,,\r\n11/2/15 0:00,TRUMP GRILL,NY,$15.00 ,MEETING EXPENSE: MEALS [AMEX: SB23.248392],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280868,,,,,\r\n11/3/15 0:00,TRUMP GRILL,NY,$10.64 ,MEETING EXPENSE: MEALS [AMEX: SB23.248392],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280868,,,,,\r\n11/5/15 0:00,TRUMP GRILL,NY,$13.83 ,MEETING EXPENSE: MEALS [AMEX: SB23.248392],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280869,,,,,\r\n11/9/15 0:00,TRUMP GRILL,NY,$18.72 ,MEETING EXPENSE: MEALS [AMEX: SB23.248392],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280869,,,,,\r\n11/9/15 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$35,457.50 \",RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280871,,,,,\r\n11/11/15 0:00,TRUMP GRILL,NY,$6.80 ,MEETING EXPENSE: MEALS [AMEX: SB23.248392],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280869,,,,,\r\n11/11/15 0:00,TRUMP GRILL,NY,$44.49 ,MEETING EXPENSE: MEALS [AMEX: SB23.248392],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280870,,,,,\r\n11/16/15 0:00,TRUMP GRILL,NY,$15.96 ,MEETING EXPENSE: MEALS [AMEX: SB23.248392],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280870,,,,,\r\n11/23/15 0:00,TRUMP GRILL,NY,$31.66 ,MEETING EXPENSE: MEALS [AMEX: SB23.248392],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280870,,,,,\r\n12/1/15 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280850,,,,,\r\n12/1/15 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280851,,,,,\r\n12/1/15 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$35,457.50 \",RENT AND UTILITIES,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280872,,,,,\r\n12/1/15 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280850,,,,,\r\n12/3/15 0:00,TRUMP RESTAURANTS LLC,NY,\"$3,000.00 \",RENT AND UTILITIES,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201601319005280871,,,,,\r\n1/1/16 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201602209008576167,,,,,\r\n1/1/16 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201602209008576167,,,,,\r\n1/1/16 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201602209008576166,,,,,\r\n1/4/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$3,000.00 \",RENT AND UTILITIES,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201602209008576175,,,,,\r\n1/4/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$35,457.50 \",RENT AND UTILITIES,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201602209008576176,,,,,\r\n1/5/16 0:00,TRUMP SOHO,NY,$810.24 ,TRAVEL: LODGING,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201602209008576176,,,,,\r\n1/12/16 0:00,TRUMP OLD POST OFFICE LLC,DC,\"$5,000.00 \",FACILITY RENTAL,WASHINGTON,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201602209008576175,,,,,\r\n1/12/16 0:00,TRUMP RESTAURANTS LLC,NY,$240.00 ,RENT AND UTILITIES,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201602209008576176,,,,,\r\n1/26/16 0:00,TRUMP NATIONAL DORAL,FL,\"$25,927.19 \",FACILITY RENTAL,MIAMI,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201602209008576175,,,,,\r\n1/30/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$35,457.50 \",RENT AND UTILITIES,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201602209008576177,,,,,\r\n2/1/16 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201603209011931987,,,,,\r\n2/1/16 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201603209011931988,,,,,\r\n2/1/16 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201603209011931987,,,,,\r\n3/1/16 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201604209014965373,,,,,\r\n3/1/16 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",IN-KIND: RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201604209014965374,,,,,\r\n3/1/16 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201604209014965373,,,,,\r\n3/7/16 0:00,TRUMP INTERNATIONAL HOTEL AND TOWER CHICAGO,IL,\"$2,452.45 \",TRAVEL: LODGING,CHICAGO,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201604209014965383,,,,,\r\n3/10/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$35,457.50 \",RENT AND UTILITIES,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201604209014965384,,,,,\r\n3/18/16 0:00,TRUMP ICE LLC,NY,$399.73 ,MEETING EXPENSE: BEVERAGES,NEW YORK,MATERIALS,http://docquery.fec.gov/cgi-bin/fecimg/?201604209014965382,,,,,\r\n3/22/16 0:00,TRUMP INTERNATIONAL HOTEL,NY,\"$1,844.20 \",FACILITY RENTAL/CATERING [Gabriel? CONSTANTIN: SB23455490],NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201604209014965383,,,,,\r\n3/29/16 0:00,\"ERIC TRUMP WINE MANUFACTURING, LLC\",VA,\"$1,053.00 \",FACILITY RENTAL/CATERING,CHARLOTTESVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201604209014965087,,,,,\r\n3/29/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$1,000.00 \",RENT AND UTILITIES,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201604209014965383,,,,,\r\n3/29/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$35,457.50 \",RENT AND UTILITIES,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201604209014965384,,,,,\r\n4/1/16 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201605209016007798,,,,,\r\n4/1/16 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201605209016007798,,,,,\r\n4/1/16 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201605209016007797,,,,,\r\n4/25/16 0:00,TRUMP INTERNATIONAL HOTEL AND TOWER CHICAGO,IL,\"$8,366.14 \",TRAVEL: LODGING,CHICAGO,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201605209016007807,,,,,\r\n4/30/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$1,000.00 \",RENT AND UTILITIES,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201605209016007807,,,,,\r\n4/30/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$35,457.50 \",RENT AND UTILITIES,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201605209016007808,,,,,\r\n5/1/16 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018597120,,,,,\r\n5/1/16 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018597120,,,,,\r\n5/1/16 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018597119,,,,,\r\n5/4/16 0:00,\"ERIC TRUMP WINE MANUFACTURING, LLC\",VA,\"$1,287.92 \",FACILITY RENTAL/CATERING,CHARLOTTESVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018596820,,,,,\r\n5/4/16 0:00,\"TRUMP VIRGINIA ACQUISITIONS, LLC\",VA,$983.68 ,TRAVEL: LODGING,CHARLOTTESVILLE,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018597132,,,,,\r\n5/4/16 0:00,\"TRUMP, ERIC\",NY,\"$7,890.44 \",TRAVEL EXPENSE REIMBURSEMENT: ITEMIZATION BELOW IF REQUIRED,NEW YORK,MATERIALS,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018597130,,,,,\r\n5/16/16 0:00,\"ERIC TRUMP WINE MANUFACTURING, LLC\",VA,\"$2,650.66 \",FACILITY RENTAL/CATERING,CHARLOTTESVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018596820,,,,,\r\n5/18/16 0:00,\"THE MAR-A-LAGO CLUB, LLC\",FL,\"$423,371.70 \",FACILITY RENTAL/CATERING,,,,,,,,\r\n5/18/16 0:00,\"TRUMP INTERNATIONAL GOLF CLUB, L.C.\",FL,\"$29,715.42 \",FACILITY RENTAL/CATERING,WEST PALM BEACH,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018597131,,,,,\r\n5/18/16 0:00,TRUMP NATIONAL GOLF CLUB,FL,\"$35,845.00 \",FACILITY RENTAL/CATERING,JUPITER,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018597131,,,,,\r\n5/18/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$125,080.31 \",RENT AND UTILITIES,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018597132,,,,,\r\n5/25/16 0:00,\"TRUMP, DONALD JR\",NY,\"$3,085.50 \",TRAVEL EXPENSE REIMBURSEMENT: ITEMIZATION BELOW IF REQUIRED,NEW YORK,MATERIALS,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018597127,,,,,\r\n5/27/16 0:00,\"TRUMP, ERIC\",NY,\"$2,937.50 \",TRAVEL EXPENSE REIMBURSEMENT: ITEMIZATION BELOW IF REQUIRED,NEW YORK,MATERIALS,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018597131,,,,,\r\n5/31/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$72,800.00 \",RENT AND UTILITIES,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201606209018597132,,,,,\r\n6/1/16 0:00,TRUMP CPS LLC,NY,\"$6,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201609129030799060,,,,,\r\n6/1/16 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201609129030799060,,,,,\r\n6/1/16 0:00,\"TRUMP, DONALD J.\",NY,\"$15,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201609129030799060,,,,,\r\n6/8/16 0:00,TRUMP ICE LLC,NY,$428.53 ,OFFICE SUPPLIES,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201609129030799071,,,,,\r\n6/9/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$1,000.00 \",RENT AND UTILITIES,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201609129030799071,,,,,\r\n6/9/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$110,684.17 \",RENT AND UTILITIES,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201609129030799072,,,,,\r\n6/27/16 0:00,TRUMP HOTEL SOHO,NY,$671.11 ,TRAVEL: LODGING [AMEX: SB23.1615120],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053623946,,,,,\r\n6/27/16 0:00,TRUMP RESTAURANTS LLC,NY,$398.53 ,MEETING EXPENSE: MEALS [AMEX: SB23.2140641],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823303,,,,,\r\n6/30/16 0:00,TRUMP NATIONAL GOLF CLUB,NJ,\"$21,330.00 \",FACILITY RENTAL/CATERING,BEDMINSTER,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201609129030799071,,,,,\r\n7/1/16 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053623935,,,,,\r\n7/1/16 0:00,\"TRUMP, DONALD J.\",NY,\"$9,000.00 \",IN-KIND: RENT (SEE MEMO BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053623935,,,,,\r\n7/9/16 0:00,TRUMP NATIONAL DORAL,FL,\"$1,168.54 \",TRAVEL: LODGING [AMEX: SB23.2140641],MIAMI,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823302,,,,,\r\n7/9/16 0:00,TRUMP NATIONAL DORAL,FL,\"$3,549.71 \",TRAVEL: LODGING [AMEX: SB23.2140641],MIAMI,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823301,,,,,\r\n7/10/16 0:00,TRUMP RESTAURANTS LLC,NY,$538.73 ,MEETING EXPENSE: MEALS [AMEX: SB23.2140641],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823303,,,,,\r\n7/10/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$1,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053623947,,,,,\r\n7/10/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$169,758.33 \",RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053623948,,,,,\r\n7/13/16 0:00,TRUMP INTERNATIONAL HOTEL AND TOWER,NY,\"$1,936.98 \",FACILITY RENTAL,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053623946,,,,,\r\n7/13/16 0:00,TRUMP NATIONAL DORAL,FL,$216.00 ,TRAVEL: LODGING [AMEX: SB23.2140641],MIAMI,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823302,,,,,\r\n7/19/16 0:00,TRUMP RESTAURANTS LLC,NY,$306.67 ,MEETING EXPENSE: MEALS [AMEX: SB23.2140641],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823303,,,,,\r\n7/29/16 0:00,TRUMP ICE LLC,NY,$428.53 ,OFFICE SUPPLIES,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053623946,,,,,\r\n7/29/16 0:00,TRUMP NATIONAL DORAL,FL,\"$3,596.01 \",EVENT STAGING EXPENSE,MIAMI,MATERIALS,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053623947,,,,,\r\n7/29/16 0:00,\"THE MAR-A-LAGO CLUB, LLC\",FL,\"$8,656.00 \",TRAVEL: LODGING,,,,,,,,\r\n7/29/16 0:00,TRUMP NATIONAL GOLF CLUB - WESTCHESTER,NY,\"$48,239.77 \",FACILITY RENTAL AND CATERING,BRIARCLIFF MANOR,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053623947,,,,,\r\n7/29/16 0:00,TRUMP RESTAURANTS LLC,NY,$3.27 ,OFFICE SUPPLIES,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053623948,,,,,\r\n8/1/16 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823292,,,,,\r\n8/1/16 0:00,\"TRUMP, DONALD J.\",NY,\"$9,000.00 \",IN-KIND: RENT (SEE MEMO BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823291,,,,,\r\n8/10/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$169,758.33 \",RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823304,,,,,\r\n8/15/16 0:00,TRUMP INTERNATIONAL HOTEL LAS VEGAS,NV,$927.37 ,TRAVEL: LODGING [AMEX: SB23.4583],LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732963,,,,,\r\n8/15/16 0:00,TRUMP INTERNATIONAL HOTEL LAS VEGAS,NV,$927.37 ,TRAVEL: LODGING [AMEX: SB23.4583],LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732963,,,,,\r\n8/15/16 0:00,TRUMP INTERNATIONAL HOTEL LAS VEGAS,NV,$927.37 ,TRAVEL: LODGING [AMEX: SB23.4583],LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732963,,,,,\r\n8/18/16 0:00,TRUMP INTERNATIONAL HOTEL LAS VEGAS,NV,$601.44 ,TRAVEL: LODGING [AMEX: SB23.4583],LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732964,,,,,\r\n8/19/16 0:00,TRUMP INTERNATIONAL HOTEL LAS VEGAS,NV,$899.36 ,TRAVEL: LODGING [AMEX: SB23.4583],LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732964,,,,,\r\n8/20/16 0:00,TRUMP INTERNATIONAL HOTEL LAS VEGAS,NV,\"$3,127.32 \",TRAVEL: LODGING [AMEX: SB23.4583],LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732964,,,,,\r\n8/22/16 0:00,TRUMP INTERNATIONAL HOTEL CHICAGO,IL,$384.12 ,TRAVEL: LODGING [AMEX: SB23.4583],CHICAGO,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732962,,,,,\r\n8/22/16 0:00,TRUMP INTERNATIONAL HOTEL CHICAGO,IL,\"$1,152.36 \",TRAVEL: LODGING [AMEX: SB23.4583],CHICAGO,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732962,,,,,\r\n8/25/16 0:00,TRUMP INTERNATIONAL HOTEL AND TOWER CHICAGO,IL,\"$7,635.69 \",TRAVEL: LODGING,CHICAGO,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823301,,,,,\r\n8/25/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$1,162.16 \",MEETING EXPENSE: MEALS,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823304,,,,,\r\n8/25/16 0:00,DORAL GOLF RESORT,FL,\"$15,127.28 \",FACILITY RENTAL - AMEX [SB23.4102],,,,,,,,\r\n8/26/16 0:00,DORAL GOLF RESORT,FL,\"$3,986.75 \",FACILTY RENTAL [AMEX: SB23.4583,,,,,,,,\r\n8/29/16 0:00,TRUMP HOTEL,NY,$430.51 ,TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727512,,,,,\r\n8/29/16 0:00,TRUMP NATIONAL GOLD CLUB - BEDMINSTER,NJ,\"$4,275.00 \",FACILITY RENTAL/CATERING,BEDMINSTER,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823302,,,,,\r\n8/31/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$2,066.44 \",MEETING EXPENSE: MEALS,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705159053823304,,,,,\r\n8/31/16 0:00,DORAL GOLF RESORT,FL,\"$2,882.76 \",TRAVEL: LODGING [AMEX: SB23.2587063],,,,,,,,\r\n9/1/16 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732950,,,,,\r\n9/1/16 0:00,\"TRUMP, DONALD J.\",NY,\"$9,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732950,,,,,\r\n9/7/16 0:00,\"TRUMP, ERIC\",NY,$376.20 ,CONTRIBUTION REFUND,NEW YORK,REFUNDS,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066733062,,,,,\r\n9/7/16 0:00,\"TRUMP, ERIC\",NY,$376.20 ,IN-KIND: MEETING EXPENSE: MEALS,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732961,,,,,\r\n9/7/16 0:00,\"TRUMP, ERIC\",NY,$74.45 ,TRAVEL EXPENSE REIMBURSEMENT: ITEMIZATION BELOW IF REQUIRED,NEW YORK,MATERIALS,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732960,,,,,\r\n9/9/16 0:00,\"TRUMP PARK AVENUE, LLC\",NY,$868.00 ,FACILITY RENTAL,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732965,,,,,\r\n9/9/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$2,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732965,,,,,\r\n9/9/16 0:00,TRUMP RESTAURANTS LLC,NY,$231.98 ,MEETING EXPENSE: MEALS,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732966,,,,,\r\n9/9/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$169,758.33 \",RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732966,,,,,\r\n9/12/16 0:00,TRUMP NATIONAL GOLF CLUB CHARLOTTE,NC,\"$9,480.50 \",FACILITY RENTAL/CATERING,MOORSEVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732965,,,,,\r\n9/12/16 0:00,TRUMP RESTAURANTS LLC,NY,$417.55 ,MEETING EXPENSE: MEALS,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732966,,,,,\r\n9/15/16 0:00,TRUMP HOTEL,NY,\"$1,202.25 \",TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727513,,,,,\r\n9/15/16 0:00,TRUMP HOTEL,NY,$801.50 ,TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727513,,,,,\r\n9/15/16 0:00,TRUMP HOTEL,NY,\"$1,202.25 \",TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727513,,,,,\r\n9/16/16 0:00,TRUMP HOTEL,NY,$400.75 ,TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727514,,,,,\r\n9/17/16 0:00,TRUMP HOTEL,NY,$533.45 ,TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727514,,,,,\r\n9/20/16 0:00,TRUMP HOTEL,NY,\"$7,173.60 \",TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727514,,,,,\r\n9/23/16 0:00,TRUMP HOTEL,NY,\"$1,127.03 \",TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727515,,,,,\r\n9/23/16 0:00,TRUMP HOTEL,NY,\"$2,419.08 \",TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727515,,,,,\r\n9/26/16 0:00,TRUMP HOTEL,NY,$458.77 ,TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727516,,,,,\r\n9/26/16 0:00,TRUMP HOTEL,NY,\"$1,242.76 \",TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727515,,,,,\r\n9/26/16 0:00,TRUMP HOTEL,NY,\"$1,021.43 \",TRAVEL: LODGING [AMEX: SB23.2587063],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727516,,,,,\r\n9/29/16 0:00,TRUMP INTERNATIONAL HOTEL,NY,\"$2,172.45 \",TRAVEL: LODGING [AMEX: SB23.2859906],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689002,,,,,\r\n9/29/16 0:00,TRUMP INTERNATIONAL HOTEL,NY,$956.26 ,TRAVEL: LODGING [AMEX: SB23.2859906],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689003,,,,,\r\n9/30/16 0:00,TRUMP INTERNATIONAL HOTEL AND TOWER CHICAGO,IL,$925.11 ,TRAVEL: LODGING,CHICAGO,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707159066732962,,,,,\r\n10/1/16 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727505,,,,,\r\n10/1/16 0:00,\"TRUMP, DONALD J.\",NY,\"$9,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727504,,,,,\r\n10/4/16 0:00,TRUMP INTERNATIONAL HOTEL,NY,$458.77 ,TRAVEL: LODGING [AMEX: SB23.2859906],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689003,,,,,\r\n10/5/16 0:00,TRUMP INTERNATIONAL HOTEL,NY,\"$1,020.80 \",TRAVEL: LODGING [AMEX: SB23.2859906],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689003,,,,,\r\n10/7/16 0:00,TRUMP RESTAURANTS,NY,$234.00 ,MEETING EXPENSE: MEALS [AMEX: SB23.2859906],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689008,,,,,\r\n10/7/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$1,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727517,,,,,\r\n10/7/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$169,758.33 \",RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727518,,,,,\r\n10/12/16 0:00,\"ERIC TRUMP WINE MANUFACTURING, LLC\",VA,\"$6,039.88 \",FACILITY RENTAL/CATERING SERVICES,CHARLOTTESVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053726935,,,,,\r\n10/14/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$3,984.88 \",MEETING EXPENSE: MEALS,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727518,,,,,\r\n10/14/16 0:00,\"TRUMP VIRGINIA ACQUISITIONS, LLC\",VA,\"$1,343.00 \",TRAVEL: LODGING,CHARLOTTESVILLE,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727518,,,,,\r\n10/17/16 0:00,TRUMP INTERNATIONAL HOTEL,NY,$460.27 ,TRAVEL: LODGING [AMEX: SB23.2859906],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689004,,,,,\r\n10/17/16 0:00,TRUMP INTERNATIONAL HOTEL,DC,\"$13,431.88 \",FACILITY RENTAL/CATERING SERVICES,WASHINGTON,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727516,,,,,\r\n10/17/16 0:00,TRUMP INTERNATIONAL HOTEL LAS VEGAS,NV,\"$18,731.90 \",TRAVEL: LODGING [AMEX: SB23.2859911],LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689005,,,,,\r\n10/17/16 0:00,TRUMP INTERNATIONAL HOTEL LAS VEGAS,NV,\"$79,043.94 \",TRAVEL: LODGING,LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727517,,,,,\r\n10/17/16 0:00,TRUMP NATIONAL GOLF CLUB WASHINGTON DC,VA,\"$8,544.00 \",FACILITY RENTAL/CATERING SERVICES,POTOMAC FALLS,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053727517,,,,,\r\n10/21/16 0:00,DORAL GOLF RESORT,FL,\"$6,785.24 \",TRAVEL: LODGING [AMEX SB23.2859923,,,,,,,,\r\n10/25/16 0:00,TRUMP INTERNATIONAL HOTEL,NV,\"$16,142.61 \",TRAVEL: LODGING [AMEX: SB23.2859906],LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689004,,,,,\r\n10/25/16 0:00,TRUMP INTERNATIONAL HOTEL,NY,\"$10,248.00 \",TRAVEL: LODGING [AMEX: SB23.2859906],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689004,,,,,\r\n10/26/16 0:00,DORAL GOLF RESORT,FL,\"$3,234.15 \",TRAVEL: LODGING [AMEX: SB23.2859906,,,,,,,,\r\n10/27/16 0:00,TRUMP INTERNATIONAL HOTEL,DC,$956.08 ,TRAVEL: LODGING [AMEX: SB23.2859906],WASHINGTON,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689005,,,,,\r\n10/27/16 0:00,TRUMP NATIONAL DORAL MIAMI,FL,\"$1,473.40 \",TRAVEL: LODGING [AMEX: SB23.2859911],DORAL,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689006,,,,,\r\n10/27/16 0:00,TRUMP NATIONAL GOLF CLUB,FL,$524.70 ,TRAVEL: LODGING - AMEX [SB23.4103],JUPITER,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907749,,,,,\r\n10/27/16 0:00,TRUMP NATIONAL GOLF CLUB,FL,$524.70 ,TRAVEL: LODGING - AMEX [SB23.4103],JUPITER,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907749,,,,,\r\n10/28/16 0:00,TRUMP NATIONAL DORAL MIAMI,FL,\"$31,820.97 \",FACILITY RENTAL - AMEX [SB23.4102],DORAL,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907747,,,,,\r\n10/28/16 0:00,TRUMP NATIONAL DORAL MIAMI,FL,\"$9,587.47 \",FACILITY RENTAL - AMEX [SB23.4102],DORAL,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907747,,,,,\r\n10/28/16 0:00,TRUMP NATIONAL DORAL MIAMI,FL,$226.84 ,FACILITY RENTAL - AMEX [SB23.4102],DORAL,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907747,,,,,\r\n10/31/16 0:00,\"ERIC TRUMP WINE MANUFACTURING, LLC\",VA,\"$14,314.42 \",FACILITY RENTAL AND CATERING SERVICES,CHARLOTTESVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053688146,,,,,\r\n10/31/16 0:00,TRUMP NATIONAL GOLF CLUB WASHINGTON DC,VA,\"$11,600.00 \",FACILITY RENTAL AND CATERING SERVICES,POTOMAC FALLS,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689007,,,,,\r\n10/31/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$1,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689008,,,,,\r\n10/31/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$169,758.33 \",RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689010,,,,,\r\n11/1/16 0:00,TRUMP PLAZA LLC,NY,\"$9,000.00 \",RENT,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053688996,,,,,\r\n11/1/16 0:00,\"TRUMP, DONALD J.\",NY,\"$9,000.00 \",IN-KIND: RENT (SEE MEMOS BELOW),NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053688996,,,,,\r\n11/2/16 0:00,TRUMP INTERNATIONAL HOTEL & TOWER,NY,\"$4,099.20 \",TRAVEL: LODGING - AMEX [SB23.4103],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907745,,,,,\r\n11/2/16 0:00,TRUMP INTERNATIONAL HOTEL WASHINGTON,DC,\"$9,245.93 \",TRAVEL: LODGING - AMEX [SB23.4103],WASHINGTON,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907746,,,,,\r\n11/2/16 0:00,TRUMP RESTAURANTS LLC,NY,$683.04 ,MEETING EXPENSE: MEALS,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689008,,,,,\r\n11/3/16 0:00,TRUMP INTERNATIONAL HOTEL WASHINGTON,DC,$626.99 ,TRAVEL: LODGING - AMEX [SB23.4103],WASHINGTON,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907746,,,,,\r\n11/8/16 0:00,TRUMP NATIONAL DORAL MIAMI,FL,\"$21,141.28 \",FACILITY RENTAL - AMEX [SB23.4102],DORAL,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907748,,,,,\r\n11/8/16 0:00,TRUMP NATIONAL DORAL MIAMI,FL,\"$11,541.20 \",FACILITY RENTAL - AMEX [SB23.4102],DORAL,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907748,,,,,\r\n11/10/16 0:00,TRUMP INTERNATIONAL HOTEL & TOWER,NY,$224.53 ,TRAVEL: LODGING - AMEX [SB23.4103],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907745,,,,,\r\n11/11/16 0:00,TRUMP INTERNATIONAL HOTEL & TOWER,NY,\"$4,611.60 \",TRAVEL: LODGING - AMEX [SB23.4103],NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907745,,,,,\r\n11/14/16 0:00,TRUMP INTERNATIONAL HOTEL WASHINGTON,DC,\"$12,265.61 \",TRAVEL: LODGING - AMEX [SB23.4103],WASHINGTON,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907746,,,,,\r\n11/17/16 0:00,TRUMP INTERNATIONAL HOTEL,DC,\"$1,394.62 \",TRAVEL: LODGING - AMEX [SB23.4102],WASHINGTON,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907744,,,,,\r\n11/22/16 0:00,\"THE MAR-A-LAGO CLUB, LLC\",FL,\"$3,347.22 \",FACILITY RENTAL AND CATERING SERVICES,,,,,,,,\r\n11/22/16 0:00,\"ERIC TRUMP WINE MANUFACTURING, LLC\",VA,\"$6,850.44 \",FACILITY RENTAL AND CATERING SERVICES,CHARLOTTESVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053688147,,,,,\r\n11/22/16 0:00,TRUMP INTERNATIONAL GOLF CLUB - BEDMINSTER,NJ,\"$4,275.00 \",TRAVEL: LODGING,BEDMINSTER,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689002,,,,,\r\n11/22/16 0:00,TRUMP NATIONAL DORAL,FL,\"$11,541.20 \",FACILITY RENTAL AND CATERING SERVICES,MIAMI,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689006,,,,,\r\n11/22/16 0:00,TRUMP NATIONAL GOLF CLUB,FL,\"$24,147.40 \",FACILITY RENTAL AND CATERING SERVICES,JUPITER,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689007,,,,,\r\n11/22/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$2,459.52 \",MEETING EXPENSE: MEALS,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689009,,,,,\r\n11/22/16 0:00,TRUMP SOHO,NY,\"$7,896.35 \",FACILITY RENTAL,NEW YORK,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689009,,,,,\r\n11/23/16 0:00,TRUMP INTERNATIONAL HOTEL LAS VEGAS,NV,\"$18,584.97 \",TRAVEL: LODGING,LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689005,,,,,\r\n11/28/16 0:00,TRUMP INTERNATIONAL HOTEL LAS VEGAS,NV,\"$139,616.00 \",TRAVEL: LODGING,LAS VEGAS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689006,,,,,\r\n11/28/16 0:00,TRUMP NATIONAL GOLF CLUB DC,VA,$479.91 ,MEETING EXPENSE: MEALS,POTOMAC FALLS,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689007,,,,,\r\n11/28/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$49,276.57 \",MEETING EXPENSE: MEALS,NEW YORK,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689009,,,,,\r\n11/28/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$283,500.00 \",RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201705129053689010,,,,,\r\n12/9/16 0:00,TRUMP INTERNATIONAL GOLF CLUB - BEDMINSTER,NJ,\"$7,776.17 \",TRAVEL: LODGING,BEDMINSTER,TRAVEL,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907744,,,,,\r\n12/15/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$11,634.53 \",CATERING SERVICES,NEW YORK,FUNDRAISING,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907749,,,,,\r\n12/20/16 0:00,TRUMP RESTAURANTS LLC,NY,\"$3,647.35 \",CATERING SERVICES,NEW YORK,FUNDRAISING,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907750,,,,,\r\n12/21/16 0:00,TRUMP NATIONAL GOLD CLUB - BEDMINSTER,NJ,\"$29,791.99 \",FACILITY RENTAL & TRAVEL: LODGING,BEDMINSTER,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907748,,,,,\r\n12/21/16 0:00,TRUMP TOWER COMMERCIAL LLC,NY,\"$130,888.33 \",RENT,HICKSVILLE,ADMINISTRATIVE,http://docquery.fec.gov/cgi-bin/fecimg/?201707209066907750,,,,,"
  },
  {
    "path": "week-6/data/16-US-Pres-GE TrumpvClinton-poll-responses-clean.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n41.0\t45.0\t4.0\t2.0\t8.0\tinsights-west-26812\tInsights West\t2016-11-04\t2016-11-07\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t940\t3.2\tInternet\tNonpartisan\tNone\n6.0\t89.0\t1.0\t0.0\t4.0\tinsights-west-26812\tInsights West\t2016-11-04\t2016-11-07\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n82.0\t7.0\t3.0\t2.0\t6.0\tinsights-west-26812\tInsights West\t2016-11-04\t2016-11-07\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t8.0\t4.0\t7.0\tinsights-west-26812\tInsights West\t2016-11-04\t2016-11-07\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t7.0\t4.0\t5.0\tibd-tipp-26811\tIBD/TIPP\t2016-11-04\t2016-11-07\t\tLikely Voters\t1107\t3.1\tLive Phone\tNonpartisan\tNone\n42.0\t43.0\t\t5.0\t9.0\tibd-tipp-26811\tIBD/TIPP\t2016-11-04\t2016-11-07\t\tLikely Voters\t1107\t3.1\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t5.0\t5.0\t4.0\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters\t3669\t\tInternet\tNonpartisan\tNone\n6.0\t90.0\t1.0\t2.0\t2.0\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - Democrat\t1392\t\tInternet\tNonpartisan\tNone\n84.0\t4.0\t4.0\t4.0\t4.0\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - Republican\t1110\t\tInternet\tNonpartisan\tNone\n44.0\t31.0\t9.0\t9.0\t8.0\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - independent\t1167\t\tInternet\tNonpartisan\tNone\n45.0\t49.0\t\t7.0\t\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters\t3669\t\tInternet\tNonpartisan\tNone\n6.0\t91.0\t\t2.0\t\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - Democrat\t1392\t\tInternet\tNonpartisan\tNone\n88.0\t6.0\t\t5.0\t\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - Republican\t1110\t\tInternet\tNonpartisan\tNone\n49.0\t38.0\t\t13.0\t\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - independent\t1167\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t5.0\t2.0\t7.0\tlucid-the-times-picayune-26788\tLucid/The Times-Picayune\t2016-11-04\t2016-11-06\t\tLikely Voters\t931\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t\t5.0\t6.0\tbloomberg-selzer-26771\tBloomberg/Selzer\t2016-11-04\t2016-11-06\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t799\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t86.0\t\t3.0\t5.0\tbloomberg-selzer-26771\tBloomberg/Selzer\t2016-11-04\t2016-11-06\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t5.0\t\t6.0\t4.0\tbloomberg-selzer-26771\tBloomberg/Selzer\t2016-11-04\t2016-11-06\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t38.0\t\t10.0\t8.0\tbloomberg-selzer-26771\tBloomberg/Selzer\t2016-11-04\t2016-11-06\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t4.0\t2.0\t8.0\tbloomberg-selzer-26771\tBloomberg/Selzer\t2016-11-04\t2016-11-06\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats, Donald Trump for the Republicans, Gary Johnson for the Libertarian Party, and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t799\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t47.0\t4.0\t4.0\t1.0\tabc-post-26799\tABC/Post\t2016-11-03\t2016-11-06\t\tLikely Voters\t2220\t2.5\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t3.0\t2.0\tabc-post-26799\tABC/Post\t2016-11-03\t2016-11-06\t\tLikely Voters\t2220\t2.5\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t4.0\t3.0\t1.0\tmonmouth-university-26790\tMonmouth University\t2016-11-03\t2016-11-06\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t748\t3.6\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t5.0\t1.0\tmonmouth-university-26790\tMonmouth University\t2016-11-03\t2016-11-06\t\tLikely Voters\t748\t3.6\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t3.0\t4.0\t1.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters\t1295\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t91.0\t2.0\t3.0\t0.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - Democrat\t\t4.0\tLive Phone\tNonpartisan\tNone\n86.0\t9.0\t2.0\t3.0\t1.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - Republican\t\t4.0\tLive Phone\tNonpartisan\tNone\n42.0\t36.0\t9.0\t9.0\t5.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t2.0\t7.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters\t1295\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t90.0\t\t1.0\t4.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - Democrat\t\t4.0\tLive Phone\tNonpartisan\tNone\n85.0\t8.0\t\t1.0\t6.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - Republican\t\t4.0\tLive Phone\tNonpartisan\tNone\n43.0\t37.0\t\t3.0\t18.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t6.0\t4.0\t5.0\tibd-tipp-26779\tIBD/TIPP\t2016-11-03\t2016-11-06\t\tLikely Voters\t1026\t3.1\tLive Phone\tNonpartisan\tNone\n42.0\t43.0\t\t5.0\t9.0\tibd-tipp-26779\tIBD/TIPP\t2016-11-03\t2016-11-06\t\tLikely Voters\t1026\t3.1\tLive Phone\tNonpartisan\tNone\n39.0\t44.0\t\t9.0\t8.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2195\t2.4\tInternet\tNonpartisan\tNone\n7.0\t84.0\t\t5.0\t5.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n81.0\t6.0\t\t7.0\t7.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t29.0\t\t28.0\t19.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t42.0\t6.0\t6.0\t7.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2195\t2.4\tInternet\tNonpartisan\tNone\n7.0\t81.0\t4.0\t3.0\t4.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n81.0\t6.0\t5.0\t3.0\t5.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t28.0\t15.0\t16.0\t17.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n43.0\t45.0\t4.0\t5.0\t4.0\trasmussen-26781\tRasmussen\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n43.0\t47.0\t\t5.0\t5.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters\t1426\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t88.0\t\t1.0\t4.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t6.0\t\t5.0\t3.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t41.0\t\t8.0\t9.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t5.0\t4.0\t5.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters\t1426\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t85.0\t2.0\t3.0\t4.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t6.0\t4.0\t3.0\t2.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t38.0\t9.0\t7.0\t8.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-26785\tUPI/CVOTER\t2016-10-31\t2016-11-06\t\tLikely Voters\t1625\t\tInternet\tNonpartisan\tNone\n44.0\t51.0\t\t\t5.0\tnbc-surveymonkey-26770\tNBC/SurveyMonkey\t2016-10-31\t2016-11-06\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t70194\t1.0\tInternet\tNonpartisan\tNone\n41.0\t47.0\t6.0\t3.0\t2.0\tnbc-surveymonkey-26770\tNBC/SurveyMonkey\t2016-10-31\t2016-11-06\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t70194\t1.0\tInternet\tNonpartisan\tNone\n42.0\t45.0\t8.0\t4.0\t0.0\tpolitico-morning-consult-26751\tPolitico/Morning Consult\t2016-11-04\t2016-11-05\t\tLikely Voters\t1482\t3.0\tInternet\tNonpartisan\tNone\n8.0\t87.0\t3.0\t2.0\t0.0\tpolitico-morning-consult-26751\tPolitico/Morning Consult\t2016-11-04\t2016-11-05\t\tLikely Voters - Democrat\t571\t\tInternet\tNonpartisan\tNone\n85.0\t9.0\t5.0\t1.0\t0.0\tpolitico-morning-consult-26751\tPolitico/Morning Consult\t2016-11-04\t2016-11-05\t\tLikely Voters - Republican\t495\t\tInternet\tNonpartisan\tNone\n39.0\t32.0\t17.0\t10.0\t1.0\tpolitico-morning-consult-26751\tPolitico/Morning Consult\t2016-11-04\t2016-11-05\t\tLikely Voters - independent\t416\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t5.0\t2.0\t8.0\tlucid-the-times-picayune-26787\tLucid/The Times-Picayune\t2016-11-03\t2016-11-05\t\tLikely Voters\t825\t\tInternet\tNonpartisan\tNone\n40.0\t44.0\t6.0\t5.0\t5.0\tnbc-wsj-26753\tNBC/WSJ\t2016-11-03\t2016-11-05\tIf the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tLikely Voters\t1282\t2.73\tLive Phone\tNonpartisan\tNone\n43.0\t48.0\t\t3.0\t6.0\tnbc-wsj-26753\tNBC/WSJ\t2016-11-03\t2016-11-05\tAnd, if the election for president were held today, with only Donald Trump and Mike Pence as the Republican candidates, and Hillary Clinton and Tim Kaine as the Democratic candidates, for whom would you vote?\tLikely Voters\t1282\t2.73\tLive Phone\tNonpartisan\tNone\n43.0\t47.0\t4.0\t4.0\t2.0\tabc-post-26774\tABC/Post\t2016-11-02\t2016-11-05\t\tLikely Voters\t1937\t2.5\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t4.0\t2.0\tabc-post-26774\tABC/Post\t2016-11-02\t2016-11-05\t\tLikely Voters\t1937\t2.5\tLive Phone\tNonpartisan\tNone\n44.0\t43.0\t5.0\t4.0\t4.0\tibd-tipp-26750\tIBD/TIPP\t2016-11-02\t2016-11-05\t\tLikely Voters\t903\t3.3\tLive Phone\tNonpartisan\tNone\n44.0\t45.0\t\t4.0\t7.0\tibd-tipp-26750\tIBD/TIPP\t2016-11-02\t2016-11-05\t\tLikely Voters\t903\t3.3\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t4.0\t3.0\t1.0\tfranklin-pierce-rkm-boston-herald-26775\tFranklin Pierce/RKM/Boston Herald\t2016-11-01\t2016-11-05\t\tLikely Voters\t1009\t3.1\tLive Phone\tNonpartisan\tNone\n12.0\t82.0\t2.0\t4.0\t1.0\tfranklin-pierce-rkm-boston-herald-26775\tFranklin Pierce/RKM/Boston Herald\t2016-11-01\t2016-11-05\t\tLikely Voters - Democrat\t474\t\tLive Phone\tNonpartisan\tNone\n79.0\t14.0\t5.0\t1.0\t1.0\tfranklin-pierce-rkm-boston-herald-26775\tFranklin Pierce/RKM/Boston Herald\t2016-11-01\t2016-11-05\t\tLikely Voters - Republican\t418\t\tLive Phone\tNonpartisan\tNone\n54.0\t29.0\t11.0\t4.0\t3.0\tfranklin-pierce-rkm-boston-herald-26775\tFranklin Pierce/RKM/Boston Herald\t2016-11-01\t2016-11-05\t\tLikely Voters - independent\t106\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-26757\tUPI/CVOTER\t2016-10-30\t2016-11-05\t\tLikely Voters\t1572\t\tInternet\tNonpartisan\tNone\n39.0\t45.0\t5.0\t2.0\t8.0\tlucid-the-times-picayune-26786\tLucid/The Times-Picayune\t2016-11-02\t2016-11-04\t\tLikely Voters\t828\t\tInternet\tNonpartisan\tNone\n44.0\t48.0\t6.0\t2.0\t\tangus-reid-maru-matchbox-26804\tAngus Reid/MARU-Matchbox\t2016-11-01\t2016-11-04\tWhich one of the following candidates are you most likely to support on Election Day?\tLikely Voters\t1113\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t4.0\t4.0\t2.0\tabc-post-26747\tABC/Post\t2016-11-01\t2016-11-04\t\tLikely Voters\t1685\t2.5\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t\t4.0\t2.0\tabc-post-26747\tABC/Post\t2016-11-01\t2016-11-04\t\tLikely Voters\t1685\t2.5\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t5.0\t4.0\t4.0\tibd-tipp-26732\tIBD/TIPP\t2016-11-01\t2016-11-04\t\tLikely Voters\t804\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t46.0\t\t4.0\t7.0\tibd-tipp-26732\tIBD/TIPP\t2016-11-01\t2016-11-04\t\tLikely Voters\t804\t3.5\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t\t7.0\t10.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2244\t2.4\tInternet\tNonpartisan\tNone\n7.0\t83.0\t\t4.0\t5.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n83.0\t5.0\t\t7.0\t5.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n29.0\t26.0\t\t25.0\t20.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t43.0\t6.0\t4.0\t7.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2244\t2.4\tInternet\tNonpartisan\tNone\n7.0\t82.0\t4.0\t3.0\t4.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n82.0\t6.0\t5.0\t4.0\t4.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n28.0\t25.0\t17.0\t12.0\t18.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n48.0\t49.0\t\t3.0\t\tupi-cvoter-26741\tUPI/CVOTER\t2016-10-29\t2016-11-04\t\tLikely Voters\t1479\t\tInternet\tNonpartisan\tNone\n44.0\t46.0\t\t8.0\t2.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf next  week's (November's) presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t940\t3.2\tLive Phone\tNonpartisan\tNone\n7.0\t90.0\t\t3.0\t0.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf next  week's (November's) presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n92.0\t3.0\t\t3.0\t1.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf next  week's (November's) presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t38.0\t\t17.0\t4.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf next  week's (November's) presidential election were held today, whom would you support if the candidates are:\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t44.0\t6.0\t5.0\t2.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t940\t3.2\tLive Phone\tNonpartisan\tNone\n7.0\t89.0\t2.0\t1.0\t0.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n92.0\t2.0\t3.0\t1.0\t1.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t33.0\t13.0\t11.0\t5.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t45.0\t5.0\t4.0\t4.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters\t1107\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t90.0\t2.0\t2.0\t2.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n85.0\t5.0\t4.0\t2.0\t4.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n41.0\t33.0\t11.0\t7.0\t8.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n45.0\t46.0\t\t1.0\t6.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters\t1107\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t92.0\t\t1.0\t2.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n87.0\t6.0\t\t1.0\t7.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n43.0\t36.0\t\t5.0\t16.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n39.0\t44.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26717\tLucid/The Times-Picayune\t2016-11-01\t2016-11-03\t\tLikely Voters\t873\t\tInternet\tNonpartisan\tNone\n44.0\t44.0\t4.0\t4.0\t4.0\trasmussen-26696\tRasmussen\t2016-11-01\t2016-11-03\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n43.0\t47.0\t4.0\t4.0\t2.0\tabc-post-26730\tABC/Post\t2016-10-31\t2016-11-03\t\tLikely Voters\t1419\t3.0\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t3.0\t2.0\tabc-post-26730\tABC/Post\t2016-10-31\t2016-11-03\t\tLikely Voters\t1419\t3.0\tLive Phone\tNonpartisan\tNone\n39.0\t44.0\t\t7.0\t10.0\tipsos-reuters-26720\tIpsos/Reuters\t2016-10-30\t2016-11-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2021\t2.6\tInternet\tNonpartisan\tNone\n37.0\t44.0\t6.0\t4.0\t8.0\tipsos-reuters-26720\tIpsos/Reuters\t2016-10-30\t2016-11-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2021\t2.6\tInternet\tNonpartisan\tNone\n44.0\t44.0\t4.0\t4.0\t5.0\tibd-tipp-26691\tIBD/TIPP\t2016-10-30\t2016-11-03\t\tLikely Voters\t898\t3.3\tLive Phone\tNonpartisan\tNone\n44.0\t45.0\t\t4.0\t7.0\tibd-tipp-26691\tIBD/TIPP\t2016-10-30\t2016-11-03\t\tLikely Voters\t898\t3.3\tLive Phone\tNonpartisan\tNone\n48.0\t49.0\t\t3.0\t\tupi-cvoter-26707\tUPI/CVOTER\t2016-10-28\t2016-11-03\t\tLikely Voters\t1395\t\tInternet\tNonpartisan\tNone\n39.0\t44.0\t6.0\t2.0\t9.0\tlucid-the-times-picayune-26673\tLucid/The Times-Picayune\t2016-10-31\t2016-11-02\t\tLikely Voters\t860\t\tInternet\tNonpartisan\tNone\n45.0\t42.0\t4.0\t3.0\t4.0\trasmussen-26650\tRasmussen\t2016-10-31\t2016-11-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n44.0\t47.0\t3.0\t4.0\t2.0\tabc-post-26690\tABC/Post\t2016-10-30\t2016-11-02\t\tLikely Voters\t1151\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t2.0\t3.0\tabc-post-26690\tABC/Post\t2016-10-30\t2016-11-02\t\tLikely Voters\t1151\t\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t\t7.0\t8.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1858\t2.6\tInternet\tNonpartisan\tNone\n7.0\t85.0\t\t4.0\t5.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n81.0\t9.0\t\t7.0\t3.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n36.0\t24.0\t\t23.0\t16.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t5.0\t4.0\t8.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1858\t2.6\tInternet\tNonpartisan\tNone\n6.0\t84.0\t3.0\t3.0\t4.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t9.0\t6.0\t4.0\t3.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t23.0\t14.0\t12.0\t16.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n44.0\t44.0\t4.0\t4.0\t4.0\tibd-tipp-26649\tIBD/TIPP\t2016-10-29\t2016-11-02\t\tLikely Voters\t867\t3.4\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t\t4.0\t7.0\tibd-tipp-26649\tIBD/TIPP\t2016-10-29\t2016-11-02\t\tLikely Voters\t867\t3.4\tLive Phone\tNonpartisan\tNone\n48.0\t49.0\t\t3.0\t\tupi-cvoter-26669\tUPI/CVOTER\t2016-10-27\t2016-11-02\t\tLikely Voters\t1329\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t6.0\t2.0\t9.0\tlucid-the-times-picayune-26641\tLucid/The Times-Picayune\t2016-10-30\t2016-11-01\t\tLikely Voters\t894\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t4.0\t4.0\t4.0\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters\t1233\t\tInternet\tNonpartisan\tNone\n5.0\t90.0\t0.0\t2.0\t3.0\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Democrat\t523\t\tInternet\tNonpartisan\tNone\n89.0\t5.0\t2.0\t3.0\t1.0\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Republican\t268\t\tInternet\tNonpartisan\tNone\n51.0\t28.0\t9.0\t5.0\t7.0\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - independent\t442\t\tInternet\tNonpartisan\tNone\n45.0\t48.0\t\t7.0\t\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\t\tLikely Voters\t1233\t\tInternet\tNonpartisan\tNone\n6.0\t91.0\t\t3.0\t\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\t\tLikely Voters - Democrat\t523\t\tInternet\tNonpartisan\tNone\n90.0\t7.0\t\t3.0\t\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\t\tLikely Voters - Republican\t268\t\tInternet\tNonpartisan\tNone\n53.0\t33.0\t\t14.0\t\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\t\tLikely Voters - independent\t442\t\tInternet\tNonpartisan\tNone\n44.0\t44.0\t5.0\t4.0\t4.0\trasmussen-26615\tRasmussen\t2016-10-30\t2016-11-01\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n45.0\t47.0\t3.0\t3.0\t2.0\tabc-post-26648\tABC/Post\t2016-10-29\t2016-11-01\t\tLikely Voters\t1167\t3.0\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t2.0\t3.0\tabc-post-26648\tABC/Post\t2016-10-29\t2016-11-01\t\tLikely Voters\t1167\t3.0\tLive Phone\tNonpartisan\tNone\n44.0\t47.0\t\t5.0\t5.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters\t1333\t3.0\tLive Phone\tNonpartisan\tNone\n8.0\t87.0\t\t1.0\t3.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n83.0\t8.0\t\t5.0\t5.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t39.0\t\t9.0\t6.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t45.0\t5.0\t5.0\t4.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters\t\t\tLive Phone\tNonpartisan\tNone\n7.0\t83.0\t3.0\t3.0\t4.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t7.0\t4.0\t4.0\t4.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t38.0\t8.0\t8.0\t4.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t4.0\t4.0\t4.0\tibd-tipp-26612\tIBD/TIPP\t2016-10-28\t2016-11-01\t\tLikely Voters\t862\t3.4\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t\t5.0\t7.0\tibd-tipp-26612\tIBD/TIPP\t2016-10-28\t2016-11-01\t\tLikely Voters\t862\t3.4\tLive Phone\tNonpartisan\tNone\n48.0\t49.0\t\t3.0\t\tupi-cvoter-26640\tUPI/CVOTER\t2016-10-26\t2016-11-01\t\tLikely Voters\t1383\t\tInternet\tNonpartisan\tNone\n50.0\t50.0\t\t\t\tgravis-marketing-oann-26695\tGravis Marketing/OANN\t2016-10-31\t2016-10-31\t\tRegistered Voters\t5360\t1.3\tIVR/Online\tSponsor\tRep\n45.0\t46.0\t4.0\t2.0\t3.0\tgravis-marketing-oann-26695\tGravis Marketing/OANN\t2016-10-31\t2016-10-31\t\tRegistered Voters\t5360\t1.3\tIVR/Online\tSponsor\tRep\n40.0\t42.0\t5.0\t2.0\t10.0\tlucid-the-times-picayune-26602\tLucid/The Times-Picayune\t2016-10-29\t2016-10-31\t\tLikely Voters\t866\t\tInternet\tNonpartisan\tNone\n46.0\t46.0\t3.0\t3.0\t2.0\tabc-post-26611\tABC/Post\t2016-10-28\t2016-10-31\t\tLikely Voters\t1182\t3.0\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t2.0\t2.0\tabc-post-26611\tABC/Post\t2016-10-28\t2016-10-31\t\tLikely Voters\t1182\t3.0\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t5.0\t4.0\t4.0\trasmussen-26593\tRasmussen\t2016-10-27\t2016-10-31\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n44.0\t45.0\t4.0\t3.0\t4.0\tibd-tipp-26591\tIBD/TIPP\t2016-10-26\t2016-10-31\t\tLikely Voters\t1018\t3.2\tLive Phone\tNonpartisan\tNone\n44.0\t45.0\t\t4.0\t7.0\tibd-tipp-26591\tIBD/TIPP\t2016-10-26\t2016-10-31\t\tLikely Voters\t1018\t3.2\tLive Phone\tNonpartisan\tNone\n48.0\t48.0\t\t3.0\t\tupi-cvoter-26639\tUPI/CVOTER\t2016-10-25\t2016-10-31\t\tLikely Voters\t1340\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t\t\t11.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters\t1772\t2.0\tInternet\tNonpartisan\tNone\n6.0\t88.0\t\t\t6.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - Democrat\t661\t\tInternet\tNonpartisan\tNone\n86.0\t8.0\t\t\t6.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - Republican\t601\t\tInternet\tNonpartisan\tNone\n39.0\t38.0\t\t\t23.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - independent\t510\t\tInternet\tNonpartisan\tNone\n39.0\t42.0\t7.0\t5.0\t6.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters\t1772\t2.0\tInternet\tNonpartisan\tNone\n5.0\t81.0\t4.0\t5.0\t4.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - Democrat\t661\t\tInternet\tNonpartisan\tNone\n82.0\t6.0\t5.0\t3.0\t5.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - Republican\t601\t\tInternet\tNonpartisan\tNone\n32.0\t33.0\t15.0\t8.0\t12.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - independent\t510\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t5.0\t2.0\t10.0\tlucid-the-times-picayune-26582\tLucid/The Times-Picayune\t2016-10-28\t2016-10-30\t\tLikely Voters\t857\t\tInternet\tNonpartisan\tNone\n47.0\t52.0\t\t\t1.0\tpolitico-morning-consult-26662\tPolitico/Morning Consult\t2016-10-27\t2016-10-30\t\tLikely Voters\t1249\t3.0\tLive Phone\tNonpartisan\tNone\n48.0\t51.0\t\t\t1.0\tpolitico-morning-consult-26661\tPolitico/Morning Consult\t2016-10-27\t2016-10-30\t\tLikely Voters\t825\t3.0\tInternet\tNonpartisan\tNone\n46.0\t45.0\t3.0\t4.0\t2.0\tabc-post-26590\tABC/Post\t2016-10-27\t2016-10-30\t\tLikely Voters\t1167\t3.0\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t2.0\t2.0\tabc-post-26590\tABC/Post\t2016-10-27\t2016-10-30\t\tLikely Voters\t1167\t3.0\tLive Phone\tNonpartisan\tNone\n42.0\t45.0\t5.0\t4.0\t4.0\trasmussen-26563\tRasmussen\t2016-10-26\t2016-10-30\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n44.0\t45.0\t4.0\t4.0\t4.0\tibd-tipp-26557\tIBD/TIPP\t2016-10-25\t2016-10-30\t\tLikely Voters\t993\t3.0\tLive Phone\tNonpartisan\tNone\n43.0\t45.0\t\t4.0\t7.0\tibd-tipp-26557\tIBD/TIPP\t2016-10-25\t2016-10-30\t\tLikely Voters\t993\t3.0\tLive Phone\tNonpartisan\tNone\n48.0\t49.0\t\t3.0\t\tupi-cvoter-26598\tUPI/CVOTER\t2016-10-24\t2016-10-30\t\tLikely Voters\t1299\t\tInternet\tNonpartisan\tNone\n44.0\t51.0\t\t\t5.0\tnbc-surveymonkey-26584\tNBC/SurveyMonkey\t2016-10-24\t2016-10-30\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t40816\t1.0\tInternet\tNonpartisan\tNone\n41.0\t47.0\t6.0\t3.0\t2.0\tnbc-surveymonkey-26584\tNBC/SurveyMonkey\t2016-10-24\t2016-10-30\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t40816\t1.0\tInternet\tNonpartisan\tNone\n41.0\t42.0\t5.0\t3.0\t9.0\tlucid-the-times-picayune-26581\tLucid/The Times-Picayune\t2016-10-27\t2016-10-29\t\tLikely Voters\t877\t\tInternet\tNonpartisan\tNone\n45.0\t46.0\t4.0\t4.0\t2.0\tabc-post-26555\tABC/Post\t2016-10-26\t2016-10-29\t\tLikely Voters\t1695\t3.0\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t2.0\t2.0\tabc-post-26555\tABC/Post\t2016-10-26\t2016-10-29\t\tLikely Voters\t1695\t3.0\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t6.0\t4.0\t4.0\tibd-tipp-26550\tIBD/TIPP\t2016-10-24\t2016-10-29\t\tLikely Voters\t1039\t3.3\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t\t5.0\t9.0\tibd-tipp-26550\tIBD/TIPP\t2016-10-24\t2016-10-29\t\tLikely Voters\t1039\t3.3\tLive Phone\tNonpartisan\tNone\n48.0\t48.0\t\t4.0\t\tupi-cvoter-26571\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t1317\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t6.0\t3.0\t8.0\tlucid-the-times-picayune-26580\tLucid/The Times-Picayune\t2016-10-26\t2016-10-28\t\tLikely Voters\t865\t\tInternet\tNonpartisan\tNone\n45.0\t46.0\t4.0\t4.0\t2.0\tabc-post-26542\tABC/Post\t2016-10-25\t2016-10-28\t\tLikely Voters\t1160\t3.0\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t3.0\t2.0\tabc-post-26542\tABC/Post\t2016-10-25\t2016-10-28\t\tLikely Voters\t1160\t3.0\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t7.0\t4.0\t4.0\tibd-tipp-26540\tIBD/TIPP\t2016-10-23\t2016-10-28\t\tLikely Voters\t1013\t3.3\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t\t6.0\t8.0\tibd-tipp-26540\tIBD/TIPP\t2016-10-23\t2016-10-28\t\tLikely Voters\t1013\t3.3\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26570\tUPI/CVOTER\t2016-10-22\t2016-10-28\t\tLikely Voters\t1324\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t6.0\t3.0\t8.0\tlucid-the-times-picayune-26529\tLucid/The Times-Picayune\t2016-10-25\t2016-10-27\t\tLikely Voters\t875\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t3.0\t4.0\t2.0\trasmussen-26517\tRasmussen\t2016-10-25\t2016-10-27\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n45.0\t47.0\t4.0\t4.0\t2.0\tabc-post-26538\tABC/Post\t2016-10-24\t2016-10-27\t\tLikely Voters\t1148\t3.0\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t3.0\t2.0\tabc-post-26538\tABC/Post\t2016-10-24\t2016-10-27\t\tLikely Voters\t1148\t3.0\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t7.0\t4.0\t4.0\tibd-tipp-26514\tIBD/TIPP\t2016-10-22\t2016-10-27\t\tLikely Voters\t973\t3.3\tLive Phone\tNonpartisan\tNone\n42.0\t45.0\t\t6.0\t7.0\tibd-tipp-26514\tIBD/TIPP\t2016-10-22\t2016-10-27\t\tLikely Voters\t973\t3.3\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26569\tUPI/CVOTER\t2016-10-21\t2016-10-27\t\tLikely Voters\t1332\t\tInternet\tNonpartisan\tNone\n39.0\t43.0\t6.0\t3.0\t10.0\tlucid-the-times-picayune-26501\tLucid/The Times-Picayune\t2016-10-24\t2016-10-26\t\tLikely Voters\t877\t\tInternet\tNonpartisan\tNone\n44.0\t45.0\t4.0\t3.0\t4.0\trasmussen-26493\tRasmussen\t2016-10-24\t2016-10-26\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n44.0\t48.0\t4.0\t2.0\t2.0\tabc-post-26513\tABC/Post\t2016-10-23\t2016-10-26\t\tLikely Voters\t1109\t3.0\tLive Phone\tNonpartisan\tNone\n45.0\t50.0\t\t2.0\t3.0\tabc-post-26513\tABC/Post\t2016-10-23\t2016-10-26\t\tLikely Voters\t1109\t3.0\tLive Phone\tNonpartisan\tNone\n34.0\t45.0\t7.0\t2.0\t12.0\tsaint-leo-university-26530\tSaint Leo University\t2016-10-22\t2016-10-26\tIf the November presidential election was held today between Hillary Clinton, Donald Trump, Gary Johnson and Jill Stein, which candidate would you support or which have you already supported in early voting?\tLikely Voters\t1050\t3.0\tInternet\tNonpartisan\tNone\n32.0\t43.0\t6.0\t7.0\t13.0\tsaint-leo-university-26530\tSaint Leo University\t2016-10-22\t2016-10-26\tIf the November presidential election was held today and Evan McMullin, the Independent Conservative from Utah was also on your ballot, which candidate would you support or which have you supported if you already voted in early voting?\tLikely Voters\t1050\t3.0\tInternet\tNonpartisan\tNone\n41.0\t46.0\t4.0\t3.0\t7.0\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters\t1209\t\tInternet\tNonpartisan\tNone\n4.0\t91.0\t1.0\t1.0\t3.0\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Democrat\t501\t\tInternet\tNonpartisan\tNone\n82.0\t7.0\t3.0\t2.0\t6.0\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Republican\t305\t\tInternet\tNonpartisan\tNone\n45.0\t31.0\t8.0\t5.0\t11.0\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - independent\t403\t\tInternet\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\t\tLikely Voters\t1209\t\tInternet\tNonpartisan\tNone\n6.0\t93.0\t\t1.0\t\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\t\tLikely Voters - Democrat\t501\t\tInternet\tNonpartisan\tNone\n86.0\t9.0\t\t5.0\t\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\t\tLikely Voters - Republican\t305\t\tInternet\tNonpartisan\tNone\n53.0\t37.0\t\t10.0\t\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\t\tLikely Voters - independent\t403\t\tInternet\tNonpartisan\tNone\n41.0\t43.0\t8.0\t5.0\t4.0\tibd-tipp-26494\tIBD/TIPP\t2016-10-21\t2016-10-26\t\tLikely Voters\t945\t3.3\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t\t6.0\t8.0\tibd-tipp-26494\tIBD/TIPP\t2016-10-21\t2016-10-26\t\tLikely Voters\t945\t3.3\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26533\tUPI/CVOTER\t2016-10-20\t2016-10-26\t\tLikely Voters\t1363\t\tInternet\tNonpartisan\tNone\n39.0\t43.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26482\tLucid/The Times-Picayune\t2016-10-23\t2016-10-25\t\tLikely Voters\t875\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t4.0\t4.0\t5.0\trasmussen-26440\tRasmussen\t2016-10-23\t2016-10-25\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n42.0\t48.0\t5.0\t1.0\t3.0\tabc-post-26490\tABC/Post\t2016-10-22\t2016-10-25\t\tLikely Voters\t1135\t3.0\tLive Phone\tNonpartisan\tNone\n44.0\t51.0\t\t3.0\t2.0\tabc-post-26490\tABC/Post\t2016-10-22\t2016-10-25\t\tLikely Voters\t1135\t3.0\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t7.0\t4.0\t4.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters\t1221\t2.5\tLive Phone\tNonpartisan\tNone\n8.0\t83.0\t3.0\t4.0\t4.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - Democrat\t\t4.0\tLive Phone\tNonpartisan\tNone\n81.0\t6.0\t7.0\t3.0\t4.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n41.0\t28.0\t14.0\t9.0\t7.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t\t1.0\t7.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters\t1221\t2.5\tLive Phone\tNonpartisan\tNone\n8.0\t88.0\t\t0.0\t3.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - Democrat\t\t4.0\tLive Phone\tNonpartisan\tNone\n85.0\t8.0\t\t0.0\t7.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n45.0\t37.0\t\t3.0\t15.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n40.0\t46.0\t6.0\t5.0\t4.0\tpew-26507\tPew\t2016-10-20\t2016-10-25\t\tRegistered Voters\t2120\t\tLive Phone\tNonpartisan\tNone\n43.0\t50.0\t\t3.0\t4.0\tpew-26507\tPew\t2016-10-20\t2016-10-25\t\tRegistered Voters\t2120\t\tLive Phone\tNonpartisan\tNone\n41.0\t42.0\t8.0\t5.0\t4.0\tibd-tipp-26437\tIBD/TIPP\t2016-10-20\t2016-10-25\t\tLikely Voters\t921\t3.3\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t\t7.0\t9.0\tibd-tipp-26437\tIBD/TIPP\t2016-10-20\t2016-10-25\t\tLikely Voters\t921\t3.3\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26532\tUPI/CVOTER\t2016-10-19\t2016-10-25\t\tLikely Voters\t1349\t\tInternet\tNonpartisan\tNone\n38.0\t44.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26481\tLucid/The Times-Picayune\t2016-10-22\t2016-10-24\t\tLikely Voters\t850\t\tInternet\tNonpartisan\tNone\n34.0\t43.0\t7.0\t6.0\t10.0\tcnbc-26497\tCNBC\t2016-10-21\t2016-10-24\t\tLikely Voters\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t47.0\t\t9.0\t7.0\tcnbc-26497\tCNBC\t2016-10-21\t2016-10-24\t\tLikely Voters\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t49.0\t5.0\t4.0\t2.0\tabc-news-26436\tABC News\t2016-10-21\t2016-10-24\t\tLikely Voters\t1119\t3.0\tLive Phone\tNonpartisan\tNone\n43.0\t51.0\t\t2.0\t3.0\tabc-news-26436\tABC News\t2016-10-21\t2016-10-24\t\tLikely Voters\t1119\t3.0\tLive Phone\tNonpartisan\tNone\n38.0\t50.0\t5.0\t2.0\t3.0\tgqr-d-democracy-corps-26432\tGQR (D-Democracy Corps)\t2016-10-21\t2016-10-24\tThinking about the election for President in November, if the election for President were held today, would you be voting for -- Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, or Green Party candidate Jill Stein?\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n41.0\t53.0\t\t1.0\t5.0\tgqr-d-democracy-corps-26432\tGQR (D-Democracy Corps)\t2016-10-21\t2016-10-24\t\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n37.0\t51.0\t6.0\t2.0\t4.0\tap-gfk-web-26484\tAP-GfK (web)\t2016-10-20\t2016-10-24\t\tLikely Voters\t1212\t\tInternet\tNonpartisan\tNone\n41.0\t54.0\t\t1.0\t4.0\tap-gfk-web-26484\tAP-GfK (web)\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were held today, for whom would you vote?\tLikely Voters\t1212\t\tInternet\tNonpartisan\tNone\n39.0\t49.0\t\t\t12.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t92.0\t\t\t5.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - Democrat\t382\t\tLive Phone\tNonpartisan\tNone\n83.0\t8.0\t\t\t9.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - Republican\t322\t\tLive Phone\tNonpartisan\tNone\n38.0\t39.0\t\t\t23.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - independent\t280\t\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t4.0\t2.0\t9.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t89.0\t2.0\t2.0\t4.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - Democrat\t382\t\tLive Phone\tNonpartisan\tNone\n80.0\t8.0\t3.0\t2.0\t7.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - Republican\t322\t\tLive Phone\tNonpartisan\tNone\n35.0\t36.0\t8.0\t3.0\t17.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - independent\t280\t\tLive Phone\tNonpartisan\tNone\n37.0\t43.0\t\t10.0\t10.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1170\t3.3\tInternet\tNonpartisan\tNone\n7.0\t83.0\t\t5.0\t6.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n74.0\t6.0\t\t10.0\t9.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n25.0\t28.0\t\t32.0\t16.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t7.0\t6.0\t6.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1170\t3.3\tInternet\tNonpartisan\tNone\n7.0\t81.0\t4.0\t4.0\t4.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t7.0\t7.0\t6.0\t5.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n28.0\t27.0\t21.0\t18.0\t8.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t5.0\t5.0\t5.0\trasmussen-26417\tRasmussen\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n41.0\t42.0\t8.0\t5.0\t4.0\tibd-tipp-26414\tIBD/TIPP\t2016-10-19\t2016-10-24\t\tLikely Voters\t873\t3.6\tLive Phone\tNonpartisan\tNone\n42.0\t43.0\t\t6.0\t9.0\tibd-tipp-26414\tIBD/TIPP\t2016-10-19\t2016-10-24\t\tLikely Voters\t873\t3.6\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26531\tUPI/CVOTER\t2016-10-18\t2016-10-24\t\tLikely Voters\t1370\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26480\tLucid/The Times-Picayune\t2016-10-21\t2016-10-23\t\tLikely Voters\t875\t\tInternet\tNonpartisan\tNone\n38.0\t50.0\t5.0\t5.0\t2.0\tabc-news-26413\tABC News\t2016-10-20\t2016-10-23\t\tLikely Voters\t1155\t3.0\tLive Phone\tNonpartisan\tNone\n41.0\t53.0\t\t3.0\t3.0\tabc-news-26413\tABC News\t2016-10-20\t2016-10-23\t\tLikely Voters\t1155\t3.0\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t3.0\t2.0\t2.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t779\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t91.0\t0.0\t1.0\t2.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Democrat\t\t6.0\tLive Phone\tNonpartisan\tNone\n90.0\t6.0\t2.0\t1.0\t0.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Republican\t\t6.0\tLive Phone\tNonpartisan\tNone\n45.0\t41.0\t8.0\t3.0\t3.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - independent\t\t6.0\tLive Phone\tNonpartisan\tNone\n45.0\t51.0\t\t4.0\t0.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t779\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t92.0\t\t3.0\t0.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Democrat\t\t6.0\tLive Phone\tNonpartisan\tNone\n91.0\t7.0\t\t3.0\t0.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Republican\t\t6.0\tLive Phone\tNonpartisan\tNone\n49.0\t43.0\t\t7.0\t1.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - independent\t\t6.0\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t5.0\t6.0\t5.0\trasmussen-26390\tRasmussen\t2016-10-19\t2016-10-23\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n40.0\t45.0\t6.0\t9.0\t\tcentre-college-26396\tCentre College\t2016-10-18\t2016-10-23\t\tLikely Voters\t569\t4.1\tLive Phone\tNonpartisan\tNone\n41.0\t41.0\t8.0\t6.0\t4.0\tibd-tipp-26383\tIBD/TIPP\t2016-10-18\t2016-10-23\t\tLikely Voters\t815\t3.6\tLive Phone\tNonpartisan\tNone\n42.0\t42.0\t\t6.0\t10.0\tibd-tipp-26383\tIBD/TIPP\t2016-10-18\t2016-10-23\t\tLikely Voters\t815\t3.6\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t\t5.0\tnbc-surveymonkey-26412\tNBC/SurveyMonkey\t2016-10-17\t2016-10-23\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t32225\t1.0\tInternet\tNonpartisan\tNone\n41.0\t46.0\t7.0\t3.0\t2.0\tnbc-surveymonkey-26412\tNBC/SurveyMonkey\t2016-10-17\t2016-10-23\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t32225\t1.0\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26389\tUPI/CVOTER\t2016-10-17\t2016-10-23\t\tLikely Voters\t1414\t\tInternet\tNonpartisan\tNone\n37.0\t43.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26479\tLucid/The Times-Picayune\t2016-10-20\t2016-10-22\t\tLikely Voters\t884\t\tInternet\tNonpartisan\tNone\n38.0\t50.0\t5.0\t3.0\t4.0\tabc-news-26379\tABC News\t2016-10-20\t2016-10-22\t\tLikely Voters\t874\t3.5\tLive Phone\tNonpartisan\tNone\n41.0\t53.0\t\t3.0\t2.0\tabc-news-26379\tABC News\t2016-10-20\t2016-10-22\t\tLikely Voters\t874\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t7.0\t5.0\t4.0\tibd-tipp-26378\tIBD/TIPP\t2016-10-17\t2016-10-22\t\tLikely Voters\t783\t3.6\tLive Phone\tNonpartisan\tNone\n43.0\t42.0\t\t5.0\t10.0\tibd-tipp-26378\tIBD/TIPP\t2016-10-17\t2016-10-22\t\tLikely Voters\t783\t3.6\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26388\tUPI/CVOTER\t2016-10-16\t2016-10-22\t\tLikely Voters\t1347\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t5.0\t\t9.0\tppp-d-social-security-works-26448\tPPP (D-Social Security Works)\t2016-10-20\t2016-10-21\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, and Libertarian Gary Johnson. If the election was today, who would you vote for?\tLikely Voters\t990\t\tIVR/Online\tSponsor\tDem\n10.0\t81.0\t4.0\t\t5.0\tppp-d-social-security-works-26448\tPPP (D-Social Security Works)\t2016-10-20\t2016-10-21\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, and Libertarian Gary Johnson. If the election was today, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tSponsor\tDem\n80.0\t11.0\t2.0\t\t6.0\tppp-d-social-security-works-26448\tPPP (D-Social Security Works)\t2016-10-20\t2016-10-21\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, and Libertarian Gary Johnson. If the election was today, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tSponsor\tDem\n36.0\t32.0\t13.0\t\t20.0\tppp-d-social-security-works-26448\tPPP (D-Social Security Works)\t2016-10-20\t2016-10-21\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, and Libertarian Gary Johnson. If the election was today, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tSponsor\tDem\n37.0\t43.0\t7.0\t2.0\t11.0\tlucid-the-times-picayune-26478\tLucid/The Times-Picayune\t2016-10-19\t2016-10-21\t\tLikely Voters\t856\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t5.0\t6.0\t5.0\trasmussen-26373\tRasmussen\t2016-10-19\t2016-10-21\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n42.0\t40.0\t7.0\t6.0\t5.0\tibd-tipp-26364\tIBD/TIPP\t2016-10-16\t2016-10-21\t\tLikely Voters\t791\t3.6\tLive Phone\tNonpartisan\tNone\n42.0\t42.0\t\t5.0\t11.0\tibd-tipp-26364\tIBD/TIPP\t2016-10-16\t2016-10-21\t\tLikely Voters\t791\t3.6\tLive Phone\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-26387\tUPI/CVOTER\t2016-10-15\t2016-10-21\t\tLikely Voters\t1330\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t\t\t16.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters\t1395\t3.0\tInternet\tNonpartisan\tNone\n8.0\t86.0\t\t\t6.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - Democrat\t501\t\tInternet\tNonpartisan\tNone\n82.0\t7.0\t\t\t10.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - Republican\t443\t\tInternet\tNonpartisan\tNone\n33.0\t39.0\t\t\t28.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - independent\t450\t\tInternet\tNonpartisan\tNone\n36.0\t42.0\t9.0\t4.0\t9.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters\t1395\t3.0\tInternet\tNonpartisan\tNone\n8.0\t84.0\t2.0\t2.0\t4.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - Democrat\t501\t\tInternet\tNonpartisan\tNone\n78.0\t6.0\t9.0\t2.0\t6.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - Republican\t443\t\tInternet\tNonpartisan\tNone\n27.0\t31.0\t16.0\t9.0\t17.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - independent\t450\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26477\tLucid/The Times-Picayune\t2016-10-18\t2016-10-20\t\tLikely Voters\t853\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t5.0\t6.0\t5.0\trasmussen-26346\tRasmussen\t2016-10-18\t2016-10-20\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n42.0\t49.0\t\t5.0\t4.0\targ-26353\tARG\t2016-10-17\t2016-10-20\t\tLikely Voters\t1006\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t89.0\t\t3.0\t4.0\targ-26353\tARG\t2016-10-17\t2016-10-20\t\tLikely Voters - Democrat\t362\t\tLive Phone\tNonpartisan\tNone\n81.0\t10.0\t\t4.0\t5.0\targ-26353\tARG\t2016-10-17\t2016-10-20\t\tLikely Voters - Republican\t321\t\tLive Phone\tNonpartisan\tNone\n45.0\t44.0\t\t8.0\t3.0\targ-26353\tARG\t2016-10-17\t2016-10-20\t\tLikely Voters - independent\t323\t\tLive Phone\tNonpartisan\tNone\n41.0\t40.0\t8.0\t6.0\t5.0\tibd-tipp-26343\tIBD/TIPP\t2016-10-15\t2016-10-20\t\tLikely Voters\t789\t3.6\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t\t5.0\t12.0\tibd-tipp-26343\tIBD/TIPP\t2016-10-15\t2016-10-20\t\tLikely Voters\t789\t3.6\tLive Phone\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-26386\tUPI/CVOTER\t2016-10-14\t2016-10-20\t\tLikely Voters\t1320\t\tInternet\tNonpartisan\tNone\n35.0\t47.0\t6.0\t2.0\t9.0\tlucid-the-times-picayune-26476\tLucid/The Times-Picayune\t2016-10-17\t2016-10-19\t\tLikely Voters\t729\t\tInternet\tNonpartisan\tNone\n43.0\t40.0\t6.0\t6.0\t6.0\trasmussen-26284\tRasmussen\t2016-10-17\t2016-10-19\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n41.0\t40.0\t7.0\t7.0\t5.0\tibd-tipp-26287\tIBD/TIPP\t2016-10-14\t2016-10-19\t\tLikely Voters\t779\t3.6\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t\t5.0\t11.0\tibd-tipp-26287\tIBD/TIPP\t2016-10-14\t2016-10-19\t\tLikely Voters\t779\t3.6\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26385\tUPI/CVOTER\t2016-10-13\t2016-10-19\t\tLikely Voters\t1360\t\tInternet\tNonpartisan\tNone\n40.0\t47.0\t7.0\t2.0\t5.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t1007\t3.1\tLive Phone\tNonpartisan\tNone\n4.0\t91.0\t3.0\t1.0\t2.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n80.0\t7.0\t6.0\t3.0\t4.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t38.0\t11.0\t3.0\t6.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t1.0\t6.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t1007\t3.1\tLive Phone\tNonpartisan\tNone\n4.0\t93.0\t\t0.0\t3.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t10.0\t\t1.0\t4.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n49.0\t41.0\t\t1.0\t8.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t46.0\t6.0\t2.0\t9.0\tlucid-the-times-picayune-26475\tLucid/The Times-Picayune\t2016-10-16\t2016-10-18\t\tLikely Voters\t545\t\tInternet\tNonpartisan\tNone\n42.0\t42.0\t7.0\t4.0\t6.0\trasmussen-26265\tRasmussen\t2016-10-16\t2016-10-18\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n12.0\t80.0\t4.0\t2.0\t2.0\trasmussen-26265\tRasmussen\t2016-10-16\t2016-10-18\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n79.0\t11.0\t5.0\t2.0\t4.0\trasmussen-26265\tRasmussen\t2016-10-16\t2016-10-18\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t29.0\t12.0\t9.0\t12.0\trasmussen-26265\tRasmussen\t2016-10-16\t2016-10-18\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t42.0\t6.0\t4.0\t10.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters\t1032\t\tInternet\tNonpartisan\tNone\n7.0\t83.0\t4.0\t2.0\t5.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Democrat\t434\t\tInternet\tNonpartisan\tNone\n81.0\t3.0\t4.0\t2.0\t10.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Republican\t252\t\tInternet\tNonpartisan\tNone\n37.0\t32.0\t9.0\t7.0\t15.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - independent\t346\t\tInternet\tNonpartisan\tNone\n43.0\t47.0\t\t8.0\t2.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\t\tLikely Voters\t1032\t\tInternet\tNonpartisan\tNone\n8.0\t86.0\t\t3.0\t3.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\t\tLikely Voters - Democrat\t434\t\tInternet\tNonpartisan\tNone\n89.0\t4.0\t\t6.0\t0.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\t\tLikely Voters - Republican\t252\t\tInternet\tNonpartisan\tNone\n43.0\t40.0\t\t15.0\t2.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\t\tLikely Voters - independent\t346\t\tInternet\tNonpartisan\tNone\n41.0\t40.0\t8.0\t7.0\t5.0\tibd-tipp-26279\tIBD/TIPP\t2016-10-13\t2016-10-18\t\tLikely Voters\t788\t3.6\tLive Phone\tNonpartisan\tNone\n6.0\t78.0\t7.0\t5.0\t3.0\tibd-tipp-26279\tIBD/TIPP\t2016-10-13\t2016-10-18\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n82.0\t6.0\t5.0\t5.0\t3.0\tibd-tipp-26279\tIBD/TIPP\t2016-10-13\t2016-10-18\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t29.0\t10.0\t10.0\t6.0\tibd-tipp-26279\tIBD/TIPP\t2016-10-13\t2016-10-18\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t\t6.0\t10.0\tibd-tipp-26279\tIBD/TIPP\t2016-10-13\t2016-10-18\t\tLikely Voters\t788\t3.6\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26384\tUPI/CVOTER\t2016-10-12\t2016-10-18\t\tLikely Voters\t1344\t\tInternet\tNonpartisan\tNone\n36.0\t45.0\t7.0\t3.0\t10.0\tlucid-the-times-picayune-26474\tLucid/The Times-Picayune\t2016-10-15\t2016-10-17\t\tLikely Voters\t548\t\tInternet\tNonpartisan\tNone\n39.0\t45.0\t5.0\t5.0\t6.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters\t912\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t87.0\t3.0\t4.0\t3.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n80.0\t5.0\t7.0\t2.0\t5.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n38.0\t31.0\t7.0\t12.0\t12.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n42.0\t49.0\t\t1.0\t8.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters\t912\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t92.0\t\t0.0\t4.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n84.0\t7.0\t\t2.0\t8.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n43.0\t38.0\t\t3.0\t16.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n41.0\t50.0\t\t4.0\t5.0\tbloomberg-selzer-26261\tBloomberg/Selzer\t2016-10-14\t2016-10-17\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t1006\t\tLive Phone\tNonpartisan\tNone\n4.0\t93.0\t\t1.0\t2.0\tbloomberg-selzer-26261\tBloomberg/Selzer\t2016-10-14\t2016-10-17\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t6.0\t\t4.0\t4.0\tbloomberg-selzer-26261\tBloomberg/Selzer\t2016-10-14\t2016-10-17\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t39.0\t\t13.0\t9.0\tbloomberg-selzer-26261\tBloomberg/Selzer\t2016-10-14\t2016-10-17\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t8.0\t3.0\t5.0\tbloomberg-selzer-26261\tBloomberg/Selzer\t2016-10-14\t2016-10-17\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats, Donald Trump for the Republicans, Gary Johnson for the Libertarian Party, and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t1006\t\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t\t8.0\t10.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1190\t3.2\tInternet\tNonpartisan\tNone\n8.0\t80.0\t\t5.0\t7.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t7.0\t\t8.0\t7.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n39.0\t24.0\t\t24.0\t12.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t6.0\t4.0\t10.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1190\t3.2\tInternet\tNonpartisan\tNone\n8.0\t78.0\t4.0\t4.0\t6.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n77.0\t8.0\t5.0\t4.0\t7.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t23.0\t19.0\t11.0\t12.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t7.0\t5.0\t6.0\trasmussen-26227\tRasmussen\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n15.0\t78.0\t4.0\t2.0\t2.0\trasmussen-26227\tRasmussen\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t10.0\t5.0\t5.0\t4.0\trasmussen-26227\tRasmussen\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n34.0\t32.0\t13.0\t10.0\t11.0\trasmussen-26227\tRasmussen\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n36.0\t51.0\t3.0\t4.0\t6.0\tpublic-religion-research-institute-the-atlantic-26263\tPublic Religion Research Institute/The Atlantic\t2016-10-12\t2016-10-17\t\tLikely Voters\t692\t4.4\tLive Phone\tNonpartisan\tNone\n46.0\t51.0\t\t4.0\t\tupi-cvoter-26272\tUPI/CVOTER\t2016-10-11\t2016-10-17\t\tLikely Voters\t1326\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26473\tLucid/The Times-Picayune\t2016-10-14\t2016-10-16\t\tLikely Voters\t546\t\tInternet\tNonpartisan\tNone\n38.0\t50.0\t5.0\t3.0\t3.0\tmonmouth-university-26206\tMonmouth University\t2016-10-14\t2016-10-16\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t726\t3.6\tLive Phone\tNonpartisan\tNone\n41.0\t53.0\t\t3.0\t3.0\tmonmouth-university-26206\tMonmouth University\t2016-10-14\t2016-10-16\t\tLikely Voters\t726\t3.6\tLive Phone\tNonpartisan\tNone\n40.0\t51.0\t\t5.0\t5.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters\t1189\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t92.0\t\t1.0\t2.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - Democrat\t282\t\tLive Phone\tNonpartisan\tNone\n81.0\t9.0\t\t5.0\t6.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - Republican\t254\t\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t\t8.0\t7.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - independent\t242\t\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t8.0\t5.0\t3.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters\t1189\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t89.0\t3.0\t3.0\t0.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - Democrat\t282\t\tLive Phone\tNonpartisan\tNone\n77.0\t8.0\t9.0\t3.0\t4.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - Republican\t254\t\tLive Phone\tNonpartisan\tNone\n36.0\t38.0\t13.0\t9.0\t3.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - independent\t242\t\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t5.0\t5.0\t6.0\trasmussen-26195\tRasmussen\t2016-10-12\t2016-10-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n16.0\t78.0\t3.0\t0.0\t2.0\trasmussen-26195\tRasmussen\t2016-10-12\t2016-10-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n74.0\t10.0\t5.0\t7.0\t4.0\trasmussen-26195\tRasmussen\t2016-10-12\t2016-10-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n35.0\t34.0\t9.0\t10.0\t13.0\trasmussen-26195\tRasmussen\t2016-10-12\t2016-10-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n43.0\t51.0\t\t\t6.0\tnbc-surveymonkey-26229\tNBC/SurveyMonkey\t2016-10-10\t2016-10-16\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t24804\t1.0\tInternet\tNonpartisan\tNone\n40.0\t46.0\t8.0\t4.0\t2.0\tnbc-surveymonkey-26229\tNBC/SurveyMonkey\t2016-10-10\t2016-10-16\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t24804\t1.0\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26200\tUPI/CVOTER\t2016-10-10\t2016-10-16\t\tLikely Voters\t1325\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t7.0\t2.0\t9.0\tlucid-the-times-picayune-26472\tLucid/The Times-Picayune\t2016-10-13\t2016-10-15\t\tLikely Voters\t547\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t\t\t14.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters\t1737\t2.0\tInternet\tNonpartisan\tNone\n8.0\t84.0\t\t\t9.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - Democrat\t676\t\tInternet\tNonpartisan\tNone\n82.0\t8.0\t\t\t10.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - Republican\t566\t\tInternet\tNonpartisan\tNone\n39.0\t37.0\t\t\t24.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - independent\t495\t\tInternet\tNonpartisan\tNone\n36.0\t42.0\t10.0\t3.0\t9.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters\t1737\t2.0\tInternet\tNonpartisan\tNone\n6.0\t81.0\t6.0\t3.0\t4.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - Democrat\t676\t\tInternet\tNonpartisan\tNone\n78.0\t6.0\t9.0\t1.0\t7.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - Republican\t566\t\tInternet\tNonpartisan\tNone\n30.0\t30.0\t19.0\t6.0\t16.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - independent\t495\t\tInternet\tNonpartisan\tNone\n45.0\t51.0\t\t4.0\t\tupi-cvoter-26199\tUPI/CVOTER\t2016-10-09\t2016-10-15\t\tLikely Voters\t1386\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26471\tLucid/The Times-Picayune\t2016-10-12\t2016-10-14\t\tLikely Voters\t547\t\tInternet\tNonpartisan\tNone\n36.0\t46.0\t5.0\t2.0\t11.0\tsurveyusa-boston-globe-colby-college-26270\tSurveyUSA/Boston Globe/Colby College\t2016-10-11\t2016-10-14\t\tLikely Voters\t845\t3.4\tIVR/Online\tNonpartisan\tNone\n5.0\t88.0\t0.0\t1.0\t5.0\tsurveyusa-boston-globe-colby-college-26270\tSurveyUSA/Boston Globe/Colby College\t2016-10-11\t2016-10-14\t\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n75.0\t13.0\t2.0\t1.0\t9.0\tsurveyusa-boston-globe-colby-college-26270\tSurveyUSA/Boston Globe/Colby College\t2016-10-11\t2016-10-14\t\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n34.0\t34.0\t12.0\t4.0\t16.0\tsurveyusa-boston-globe-colby-college-26270\tSurveyUSA/Boston Globe/Colby College\t2016-10-11\t2016-10-14\t\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n45.0\t51.0\t\t4.0\t\tupi-cvoter-26198\tUPI/CVOTER\t2016-10-08\t2016-10-14\t\tLikely Voters\t1448\t\tInternet\tNonpartisan\tNone\n36.0\t45.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26470\tLucid/The Times-Picayune\t2016-10-11\t2016-10-13\t\tLikely Voters\t553\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t6.0\t6.0\t5.0\trasmussen-26173\tRasmussen\t2016-10-11\t2016-10-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n16.0\t76.0\t3.0\t3.0\t2.0\trasmussen-26173\tRasmussen\t2016-10-11\t2016-10-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n77.0\t9.0\t4.0\t6.0\t5.0\trasmussen-26173\tRasmussen\t2016-10-11\t2016-10-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t32.0\t11.0\t8.0\t10.0\trasmussen-26173\tRasmussen\t2016-10-11\t2016-10-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n37.0\t48.0\t7.0\t5.0\t3.0\tnbc-wsj-26190\tNBC/WSJ\t2016-10-10\t2016-10-13\tIf the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tLikely Voters\t905\t3.26\tLive Phone\tNonpartisan\tNone\n41.0\t51.0\t\t3.0\t5.0\tnbc-wsj-26190\tNBC/WSJ\t2016-10-10\t2016-10-13\tAnd, if the election for president were held today, with only Donald Trump and Mike Pence as the Republican candidates, and Hillary Clinton and Tim Kaine as the Democratic candidates, for whom would you vote?\tLikely Voters\t905\t3.26\tLive Phone\tNonpartisan\tNone\n43.0\t47.0\t5.0\t2.0\t3.0\tabc-post-26184\tABC/Post\t2016-10-10\t2016-10-13\t\tLikely Voters\t740\t4.0\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t2.0\t2.0\tabc-post-26184\tABC/Post\t2016-10-10\t2016-10-13\t\tLikely Voters\t740\t4.0\tLive Phone\tNonpartisan\tNone\n39.0\t47.0\t7.0\t2.0\t4.0\tgwu-battleground-26193\tGWU/Battleground\t2016-10-08\t2016-10-13\t\tLikely Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n5.0\t87.0\t3.0\t2.0\t2.0\tgwu-battleground-26193\tGWU/Battleground\t2016-10-08\t2016-10-13\t\tLikely Voters - Democrat\t440\t\tLive Phone\tNonpartisan\tNone\n81.0\t7.0\t9.0\t0.0\t3.0\tgwu-battleground-26193\tGWU/Battleground\t2016-10-08\t2016-10-13\t\tLikely Voters - Republican\t400\t\tLive Phone\tNonpartisan\tNone\n31.0\t33.0\t16.0\t7.0\t13.0\tgwu-battleground-26193\tGWU/Battleground\t2016-10-08\t2016-10-13\t\tLikely Voters - independent\t160\t\tLive Phone\tNonpartisan\tNone\n45.0\t50.0\t\t4.0\t\tupi-cvoter-26181\tUPI/CVOTER\t2016-10-07\t2016-10-13\t\tLikely Voters\t1482\t\tInternet\tNonpartisan\tNone\n36.0\t44.0\t7.0\t2.0\t11.0\tlucid-the-times-picayune-26469\tLucid/The Times-Picayune\t2016-10-10\t2016-10-12\t\tLikely Voters\t542\t\tInternet\tNonpartisan\tNone\n38.0\t45.0\t7.0\t4.0\t6.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters\t917\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t81.0\t6.0\t3.0\t4.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n80.0\t6.0\t7.0\t1.0\t6.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n35.0\t35.0\t9.0\t13.0\t9.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n41.0\t49.0\t\t1.0\t9.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters\t917\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t85.0\t\t1.0\t7.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n83.0\t9.0\t\t1.0\t7.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t\t5.0\t13.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t6.0\t6.0\t4.0\trasmussen-26154\tRasmussen\t2016-10-10\t2016-10-12\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n15.0\t76.0\t3.0\t5.0\t2.0\trasmussen-26154\tRasmussen\t2016-10-10\t2016-10-12\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n75.0\t13.0\t4.0\t4.0\t4.0\trasmussen-26154\tRasmussen\t2016-10-10\t2016-10-12\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n42.0\t30.0\t13.0\t8.0\t7.0\trasmussen-26154\tRasmussen\t2016-10-10\t2016-10-12\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-26180\tUPI/CVOTER\t2016-10-06\t2016-10-12\t\tLikely Voters\t1402\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t6.0\t5.0\t10.0\tinsights-west-26144\tInsights West\t2016-10-10\t2016-10-11\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t953\t3.2\tInternet\tNonpartisan\tNone\n5.0\t87.0\t2.0\t0.0\t6.0\tinsights-west-26144\tInsights West\t2016-10-10\t2016-10-11\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n74.0\t8.0\t5.0\t5.0\t8.0\tinsights-west-26144\tInsights West\t2016-10-10\t2016-10-11\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n31.0\t32.0\t12.0\t10.0\t15.0\tinsights-west-26144\tInsights West\t2016-10-10\t2016-10-11\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t43.0\t7.0\t3.0\t11.0\tlucid-the-times-picayune-26467\tLucid/The Times-Picayune\t2016-10-09\t2016-10-11\t\tLikely Voters\t547\t\tInternet\tNonpartisan\tNone\n39.0\t43.0\t7.0\t6.0\t5.0\trasmussen-26140\tRasmussen\t2016-10-09\t2016-10-11\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n11.0\t78.0\t3.0\t5.0\t2.0\trasmussen-26140\tRasmussen\t2016-10-09\t2016-10-11\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n71.0\t16.0\t5.0\t4.0\t5.0\trasmussen-26140\tRasmussen\t2016-10-09\t2016-10-11\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t30.0\t15.0\t11.0\t7.0\trasmussen-26140\tRasmussen\t2016-10-09\t2016-10-11\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n44.0\t50.0\t\t5.0\t\tupi-cvoter-26179\tUPI/CVOTER\t2016-10-05\t2016-10-11\t\tLikely Voters\t1367\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t\t\t13.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters\t1757\t3.0\tInternet\tNonpartisan\tNone\n9.0\t85.0\t\t\t6.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - Democrat\t677\t\tInternet\tNonpartisan\tNone\n83.0\t9.0\t\t\t8.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - Republican\t550\t\tInternet\tNonpartisan\tNone\n38.0\t36.0\t\t\t26.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - independent\t529\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t10.0\t3.0\t7.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters\t1757\t3.0\tInternet\tNonpartisan\tNone\n8.0\t81.0\t4.0\t3.0\t4.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - Democrat\t677\t\tInternet\tNonpartisan\tNone\n77.0\t7.0\t10.0\t1.0\t5.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - Republican\t550\t\tInternet\tNonpartisan\tNone\n34.0\t29.0\t18.0\t6.0\t14.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - independent\t529\t\tInternet\tNonpartisan\tNone\n37.0\t44.0\t7.0\t2.0\t11.0\tlucid-the-times-picayune-26466\tLucid/The Times-Picayune\t2016-10-08\t2016-10-10\t\tLikely Voters\t543\t\tInternet\tNonpartisan\tNone\n37.0\t46.0\t8.0\t6.0\t3.0\tnbc-wsj-26066\tNBC/WSJ\t2016-10-08\t2016-10-10\tIf the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tLikely Voters\t806\t3.45\tLive Phone\tNonpartisan\tNone\n40.0\t50.0\t\t7.0\t3.0\tnbc-wsj-26066\tNBC/WSJ\t2016-10-08\t2016-10-10\tAnd, if the election for president were held today, with only Donald Trump and Mike Pence as the Republican candidates, and Hillary Clinton and Tim Kaine as the Democratic candidates, for whom would you vote?\tLikely Voters\t806\t3.45\tLive Phone\tNonpartisan\tNone\n37.0\t44.0\t\t9.0\t10.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2363\t2.3\tInternet\tNonpartisan\tNone\n9.0\t79.0\t\t5.0\t6.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n77.0\t8.0\t\t9.0\t6.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n32.0\t24.0\t\t27.0\t17.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t44.0\t6.0\t4.0\t9.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2363\t2.3\tInternet\tNonpartisan\tNone\n10.0\t79.0\t4.0\t3.0\t4.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n77.0\t8.0\t7.0\t4.0\t6.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n31.0\t23.0\t15.0\t16.0\t15.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t44.0\t7.0\t6.0\t4.0\trasmussen-26087\tRasmussen\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.4\tIVR/Online\tNonpartisan\tNone\n11.0\t80.0\t4.0\t4.0\t1.0\trasmussen-26087\tRasmussen\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n69.0\t17.0\t6.0\t4.0\t4.0\trasmussen-26087\tRasmussen\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n39.0\t29.0\t13.0\t12.0\t7.0\trasmussen-26087\tRasmussen\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n44.0\t50.0\t\t6.0\t\tupi-cvoter-26092\tUPI/CVOTER\t2016-10-04\t2016-10-10\t\tLikely Voters\t1367\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t10.0\t5.0\t0.0\tpew-26176\tPew\t2016-09-27\t2016-10-10\t\tRegistered Voters\t3616\t2.9\tLive Phone\tNonpartisan\tNone\n44.0\t53.0\t\t1.0\t2.0\tpew-26176\tPew\t2016-09-27\t2016-10-10\t\tRegistered Voters\t3616\t2.9\tLive Phone\tNonpartisan\tNone\n37.0\t45.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26465\tLucid/The Times-Picayune\t2016-10-07\t2016-10-09\t\tLikely Voters\t546\t\tInternet\tNonpartisan\tNone\n38.0\t49.0\t2.0\t4.0\t8.0\tpublic-religion-research-institute-the-atlantic-26086\tPublic Religion Research Institute/The Atlantic\t2016-10-05\t2016-10-09\t\tLikely Voters\t886\t3.9\tLive Phone\tNonpartisan\tNone\n38.0\t45.0\t7.0\t5.0\t5.0\trasmussen-26021\tRasmussen\t2016-10-05\t2016-10-09\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n10.0\t83.0\t3.0\t3.0\t2.0\trasmussen-26021\tRasmussen\t2016-10-05\t2016-10-09\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n71.0\t16.0\t5.0\t2.0\t5.0\trasmussen-26021\tRasmussen\t2016-10-05\t2016-10-09\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n37.0\t31.0\t12.0\t12.0\t8.0\trasmussen-26021\tRasmussen\t2016-10-05\t2016-10-09\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n44.0\t50.0\t\t6.0\t\tupi-cvoter-26076\tUPI/CVOTER\t2016-10-03\t2016-10-09\t\tLikely Voters\t1350\t\tInternet\tNonpartisan\tNone\n44.0\t51.0\t\t\t5.0\tnbc-surveymonkey-26017\tNBC/SurveyMonkey\t2016-10-03\t2016-10-09\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t23329\t1.0\tInternet\tNonpartisan\tNone\n41.0\t46.0\t8.0\t3.0\t2.0\tnbc-surveymonkey-26017\tNBC/SurveyMonkey\t2016-10-03\t2016-10-09\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t23329\t1.0\tInternet\tNonpartisan\tNone\n41.0\t45.0\t\t\t14.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1390\t3.0\tInternet\tNonpartisan\tNone\n6.0\t88.0\t\t\t6.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t491\t\tInternet\tNonpartisan\tNone\n78.0\t7.0\t\t\t15.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t480\t\tInternet\tNonpartisan\tNone\n40.0\t38.0\t\t\t22.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t419\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t8.0\t3.0\t9.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters\t1390\t3.0\tInternet\tNonpartisan\tNone\n5.0\t87.0\t3.0\t2.0\t3.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Democrat\t491\t\tInternet\tNonpartisan\tNone\n74.0\t7.0\t6.0\t1.0\t12.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Republican\t480\t\tInternet\tNonpartisan\tNone\n35.0\t30.0\t16.0\t5.0\t14.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - independent\t419\t\tInternet\tNonpartisan\tNone\n38.0\t44.0\t5.0\t4.0\t9.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1135\t\tInternet\tNonpartisan\tNone\n6.0\t87.0\t1.0\t2.0\t4.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t454\t\tInternet\tNonpartisan\tNone\n81.0\t3.0\t6.0\t4.0\t5.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t317\t\tInternet\tNonpartisan\tNone\n35.0\t36.0\t8.0\t5.0\t16.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t364\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t\t9.0\t1.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\t\tRegistered Voters\t1135\t\tInternet\tNonpartisan\tNone\n6.0\t91.0\t\t3.0\t0.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\t\tRegistered Voters - Democrat\t454\t\tInternet\tNonpartisan\tNone\n87.0\t5.0\t\t7.0\t0.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\t\tRegistered Voters - Republican\t317\t\tInternet\tNonpartisan\tNone\n44.0\t40.0\t\t14.0\t2.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\t\tRegistered Voters - independent\t364\t\tInternet\tNonpartisan\tNone\n36.0\t45.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26463\tLucid/The Times-Picayune\t2016-10-06\t2016-10-08\t\tLikely Voters\t536\t\tInternet\tNonpartisan\tNone\n46.0\t48.0\t\t6.0\t\tupi-cvoter-26075\tUPI/CVOTER\t2016-10-02\t2016-10-08\t\tLikely Voters\t1325\t\tInternet\tNonpartisan\tNone\n36.0\t46.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26462\tLucid/The Times-Picayune\t2016-10-05\t2016-10-07\t\tLikely Voters\t533\t\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t6.0\t\tupi-cvoter-26074\tUPI/CVOTER\t2016-10-01\t2016-10-07\t\tLikely Voters\t1286\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t6.0\t3.0\t4.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t1064\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t89.0\t2.0\t3.0\t2.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n87.0\t5.0\t5.0\t1.0\t2.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t46.0\t10.0\t8.0\t4.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t1.0\t5.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t1064\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t95.0\t\t0.0\t1.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n91.0\t5.0\t\t1.0\t2.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t57.0\t\t0.0\t5.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n35.0\t45.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26461\tLucid/The Times-Picayune\t2016-10-04\t2016-10-06\t\tLikely Voters\t1364\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t7.0\t4.0\t4.0\trasmussen-25993\tRasmussen\t2016-10-04\t2016-10-06\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n12.0\t82.0\t2.0\t3.0\t1.0\trasmussen-25993\tRasmussen\t2016-10-04\t2016-10-06\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t13.0\t5.0\t1.0\t4.0\trasmussen-25993\tRasmussen\t2016-10-04\t2016-10-06\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n41.0\t29.0\t14.0\t8.0\t8.0\trasmussen-25993\tRasmussen\t2016-10-04\t2016-10-06\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n42.0\t44.0\t6.0\t3.0\t5.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters\t896\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t87.0\t4.0\t4.0\t3.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n84.0\t4.0\t6.0\t1.0\t5.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n39.0\t35.0\t11.0\t8.0\t7.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t1.0\t7.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters\t896\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t91.0\t\t0.0\t5.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n87.0\t8.0\t\t1.0\t4.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n42.0\t40.0\t\t3.0\t15.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t6.0\t\tupi-cvoter-26006\tUPI/CVOTER\t2016-09-30\t2016-10-06\t\tLikely Voters\t1250\t3.0\tInternet\tNonpartisan\tNone\n35.0\t47.0\t7.0\t2.0\t9.0\tlucid-the-times-picayune-26460\tLucid/The Times-Picayune\t2016-10-03\t2016-10-05\t\tLikely Voters\t447\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t8.0\t5.0\t4.0\trasmussen-25992\tRasmussen\t2016-10-03\t2016-10-05\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n15.0\t77.0\t3.0\t3.0\t2.0\trasmussen-25992\tRasmussen\t2016-10-03\t2016-10-05\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n77.0\t12.0\t4.0\t2.0\t4.0\trasmussen-25992\tRasmussen\t2016-10-03\t2016-10-05\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n40.0\t28.0\t18.0\t9.0\t5.0\trasmussen-25992\tRasmussen\t2016-10-03\t2016-10-05\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n47.0\t47.0\t\t5.0\t\tupi-cvoter-26005\tUPI/CVOTER\t2016-09-29\t2016-10-05\t\tLikely Voters\t1257\t3.0\tInternet\tNonpartisan\tNone\n37.0\t45.0\t6.0\t3.0\t9.0\tlucid-the-times-picayune-26459\tLucid/The Times-Picayune\t2016-10-02\t2016-10-04\t\tLikely Voters\t451\t\tInternet\tNonpartisan\tNone\n42.0\t41.0\t8.0\t4.0\t3.0\trasmussen-25968\tRasmussen\t2016-10-02\t2016-10-04\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.0\tIVR/Online\tNonpartisan\tNone\n13.0\t77.0\t4.0\t3.0\t3.0\trasmussen-25968\tRasmussen\t2016-10-02\t2016-10-04\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n78.0\t10.0\t4.0\t4.0\t4.0\trasmussen-25968\tRasmussen\t2016-10-02\t2016-10-04\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n39.0\t32.0\t17.0\t8.0\t4.0\trasmussen-25968\tRasmussen\t2016-10-02\t2016-10-04\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-26004\tUPI/CVOTER\t2016-09-28\t2016-10-04\t\tLikely Voters\t1274\t3.0\tInternet\tNonpartisan\tNone\n38.0\t45.0\t5.0\t3.0\t9.0\tlucid-the-times-picayune-26458\tLucid/The Times-Picayune\t2016-10-01\t2016-10-03\t\tLikely Voters\t424\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t5.0\t5.0\t7.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1055\t\tInternet\tNonpartisan\tNone\n8.0\t84.0\t2.0\t2.0\t5.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t415\t\tInternet\tNonpartisan\tNone\n85.0\t5.0\t4.0\t2.0\t4.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t255\t\tInternet\tNonpartisan\tNone\n36.0\t35.0\t7.0\t10.0\t11.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t385\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t\t8.0\t1.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\t\tRegistered Voters\t1055\t\tInternet\tNonpartisan\tNone\n8.0\t88.0\t\t4.0\t0.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\t\tRegistered Voters - Democrat\t415\t\tInternet\tNonpartisan\tNone\n90.0\t7.0\t\t2.0\t1.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\t\tRegistered Voters - Republican\t255\t\tInternet\tNonpartisan\tNone\n41.0\t41.0\t\t15.0\t2.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\t\tRegistered Voters - independent\t385\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t9.0\t4.0\t4.0\trasmussen-25967\tRasmussen\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n12.0\t77.0\t5.0\t3.0\t3.0\trasmussen-25967\tRasmussen\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t10.0\t7.0\t3.0\t4.0\trasmussen-25967\tRasmussen\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n39.0\t33.0\t15.0\t7.0\t6.0\trasmussen-25967\tRasmussen\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n37.0\t44.0\t\t9.0\t9.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1239\t3.2\tInternet\tNonpartisan\tNone\n7.0\t84.0\t\t5.0\t5.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n74.0\t11.0\t\t8.0\t7.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n29.0\t16.0\t\t29.0\t25.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n36.0\t42.0\t8.0\t5.0\t8.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1239\t3.2\tInternet\tNonpartisan\tNone\n7.0\t81.0\t3.0\t5.0\t5.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n72.0\t9.0\t8.0\t4.0\t6.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n28.0\t17.0\t27.0\t12.0\t16.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n49.0\t47.0\t\t4.0\t\tupi-cvoter-26003\tUPI/CVOTER\t2016-09-27\t2016-10-03\t\tLikely Voters\t1275\t3.0\tInternet\tNonpartisan\tNone\n39.0\t44.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26457\tLucid/The Times-Picayune\t2016-09-30\t2016-10-02\t\tLikely Voters\t480\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t\t\t16.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1778\t2.0\tInternet\tNonpartisan\tNone\n9.0\t85.0\t\t\t6.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t711\t\tInternet\tNonpartisan\tNone\n80.0\t8.0\t\t\t12.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t552\t\tInternet\tNonpartisan\tNone\n36.0\t32.0\t\t\t32.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t515\t\tInternet\tNonpartisan\tNone\n36.0\t42.0\t9.0\t3.0\t10.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters\t1778\t2.0\tInternet\tNonpartisan\tNone\n9.0\t81.0\t4.0\t2.0\t4.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Democrat\t711\t\tInternet\tNonpartisan\tNone\n77.0\t7.0\t7.0\t1.0\t8.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Republican\t552\t\tInternet\tNonpartisan\tNone\n30.0\t25.0\t19.0\t7.0\t19.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - independent\t515\t\tInternet\tNonpartisan\tNone\n41.0\t47.0\t3.0\t4.0\t5.0\tpublic-religion-research-institute-the-atlantic-25980\tPublic Religion Research Institute/The Atlantic\t2016-09-28\t2016-10-02\t\tLikely Voters\t609\t\tLive Phone\tNonpartisan\tNone\n40.0\t43.0\t8.0\t4.0\t5.0\trasmussen-25966\tRasmussen\t2016-09-28\t2016-10-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n9.0\t80.0\t4.0\t2.0\t3.0\trasmussen-25966\tRasmussen\t2016-09-28\t2016-10-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n78.0\t11.0\t6.0\t1.0\t4.0\trasmussen-25966\tRasmussen\t2016-09-28\t2016-10-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t32.0\t15.0\t8.0\t8.0\trasmussen-25966\tRasmussen\t2016-09-28\t2016-10-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n40.0\t50.0\t\t5.0\t6.0\tfairleigh-dickinson-ssrs-25961\tFairleigh Dickinson/SSRS\t2016-09-28\t2016-10-02\tIf the election for president was held today, and the choices were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t788\t4.4\tLive Phone\tNonpartisan\tNone\n6.0\t92.0\t\t0.0\t3.0\tfairleigh-dickinson-ssrs-25961\tFairleigh Dickinson/SSRS\t2016-09-28\t2016-10-02\tIf the election for president was held today, and the choices were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t\t6.6\tLive Phone\tNonpartisan\tNone\n80.0\t9.0\t\t5.0\t8.0\tfairleigh-dickinson-ssrs-25961\tFairleigh Dickinson/SSRS\t2016-09-28\t2016-10-02\tIf the election for president was held today, and the choices were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t\t5.7\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t\t8.0\t7.0\tfairleigh-dickinson-ssrs-25961\tFairleigh Dickinson/SSRS\t2016-09-28\t2016-10-02\tIf the election for president was held today, and the choices were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t\t6.2\tLive Phone\tNonpartisan\tNone\n36.0\t45.0\t11.0\t4.0\t4.0\tfairleigh-dickinson-ssrs-25961\tFairleigh Dickinson/SSRS\t2016-09-28\t2016-10-02\t\tLikely Voters\t385\t5.0\tLive Phone\tNonpartisan\tNone\n43.0\t49.0\t\t4.0\t5.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters\t1217\t4.0\tLive Phone\tNonpartisan\tNone\n5.0\t91.0\t\t2.0\t3.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n88.0\t7.0\t\t3.0\t3.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t\t8.0\t8.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t8.0\t4.0\t3.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters\t1217\t4.0\tLive Phone\tNonpartisan\tNone\n5.0\t86.0\t4.0\t2.0\t4.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t6.0\t7.0\t0.0\t2.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t35.0\t13.0\t7.0\t5.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t47.0\t7.0\t2.0\t2.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t1213\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t91.0\t3.0\t1.0\t1.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n87.0\t7.0\t5.0\t1.0\t1.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n37.0\t44.0\t13.0\t3.0\t3.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - independent\t\t5.0\tLive Phone\tNonpartisan\tNone\n45.0\t51.0\t\t4.0\t0.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump and as the Republican Party’s candidate. Who would you be more likely to vote for?\tLikely Voters\t1213\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t94.0\t\t1.0\t0.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump and as the Republican Party’s candidate. Who would you be more likely to vote for?\tLikely Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n89.0\t9.0\t\t2.0\t1.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump and as the Republican Party’s candidate. Who would you be more likely to vote for?\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n42.0\t51.0\t\t7.0\t0.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump and as the Republican Party’s candidate. Who would you be more likely to vote for?\tLikely Voters - independent\t\t5.0\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t\t6.0\tnbc-surveymonkey-25895\tNBC/SurveyMonkey\t2016-09-26\t2016-10-02\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t26925\t1.0\tInternet\tNonpartisan\tNone\n40.0\t46.0\t9.0\t3.0\t2.0\tnbc-surveymonkey-25895\tNBC/SurveyMonkey\t2016-09-26\t2016-10-02\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t26925\t1.0\tInternet\tNonpartisan\tNone\n49.0\t47.0\t\t4.0\t\tupi-cvoter-25834\tUPI/CVOTER\t2016-09-26\t2016-10-02\t\tLikely Voters\t1285\t3.0\tInternet\tNonpartisan\tNone\n37.0\t45.0\t6.0\t2.0\t9.0\tlucid-the-times-picayune-26456\tLucid/The Times-Picayune\t2016-09-29\t2016-10-01\t\tLikely Voters\t597\t\tInternet\tNonpartisan\tNone\n49.0\t48.0\t\t3.0\t\tupi-cvoter-25833\tUPI/CVOTER\t2016-09-25\t2016-10-01\t\tLikely Voters\t1288\t3.0\tInternet\tNonpartisan\tNone\n36.0\t46.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26455\tLucid/The Times-Picayune\t2016-09-28\t2016-09-30\t\tLikely Voters\t384\t\tInternet\tNonpartisan\tNone\n49.0\t48.0\t\t3.0\t\tupi-cvoter-25832\tUPI/CVOTER\t2016-09-24\t2016-09-30\t\tLikely Voters\t1223\t3.0\tInternet\tNonpartisan\tNone\n35.0\t45.0\t8.0\t2.0\t10.0\tlucid-the-times-picayune-26454\tLucid/The Times-Picayune\t2016-09-27\t2016-09-29\t\tLikely Voters\t447\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t6.0\t4.0\t6.0\trasmussen-25830\tRasmussen\t2016-09-27\t2016-09-29\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n9.0\t81.0\t3.0\t2.0\t5.0\trasmussen-25830\tRasmussen\t2016-09-27\t2016-09-29\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n80.0\t12.0\t5.0\t0.0\t3.0\trasmussen-25830\tRasmussen\t2016-09-27\t2016-09-29\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n40.0\t28.0\t13.0\t9.0\t9.0\trasmussen-25830\tRasmussen\t2016-09-27\t2016-09-29\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n40.0\t43.0\t8.0\t5.0\t3.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters\t911\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t83.0\t5.0\t6.0\t3.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n81.0\t7.0\t5.0\t2.0\t4.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n41.0\t29.0\t21.0\t8.0\t2.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t\t2.0\t6.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters\t911\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t92.0\t\t0.0\t3.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n87.0\t9.0\t\t0.0\t3.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n45.0\t34.0\t\t7.0\t13.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n49.0\t47.0\t\t3.0\t\tupi-cvoter-25825\tUPI/CVOTER\t2016-09-23\t2016-09-29\t\tLikely Voters\t1236\t3.0\tInternet\tNonpartisan\tNone\n40.0\t44.0\t6.0\t3.0\t6.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters\t933\t3.2\tIVR/Online\tPollster\tDem\n11.0\t78.0\t4.0\t2.0\t5.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n82.0\t8.0\t5.0\t2.0\t3.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n32.0\t36.0\t13.0\t3.0\t14.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n45.0\t49.0\t\t\t6.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t933\t3.2\tIVR/Online\tPollster\tDem\n12.0\t85.0\t\t\t4.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n89.0\t9.0\t\t\t3.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n40.0\t44.0\t\t\t17.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n38.0\t42.0\t\t8.0\t12.0\tipsos-reuters-25794\tIpsos/Reuters\t2016-09-27\t2016-09-28\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1336\t3.1\tInternet\tNonpartisan\tNone\n5.0\t81.0\t\t6.0\t8.0\tipsos-reuters-25794\tIpsos/Reuters\t2016-09-27\t2016-09-28\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t7.0\t\t7.0\t8.0\tipsos-reuters-25794\tIpsos/Reuters\t2016-09-27\t2016-09-28\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n36.0\t22.0\t\t19.0\t23.0\tipsos-reuters-25794\tIpsos/Reuters\t2016-09-27\t2016-09-28\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t8.0\t3.0\t10.0\tlucid-the-times-picayune-26453\tLucid/The Times-Picayune\t2016-09-26\t2016-09-28\t\tLikely Voters\t360\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t7.0\t5.0\t5.0\trasmussen-25801\tRasmussen\t2016-09-26\t2016-09-28\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t3.0\tIVR/Online\tNonpartisan\tNone\n10.0\t79.0\t2.0\t3.0\t6.0\trasmussen-25801\tRasmussen\t2016-09-26\t2016-09-28\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n79.0\t13.0\t4.0\t1.0\t3.0\trasmussen-25801\tRasmussen\t2016-09-26\t2016-09-28\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n39.0\t27.0\t15.0\t12.0\t7.0\trasmussen-25801\tRasmussen\t2016-09-26\t2016-09-28\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n49.0\t47.0\t\t4.0\t\tupi-cvoter-25824\tUPI/CVOTER\t2016-09-22\t2016-09-28\t\tLikely Voters\t1234\t3.0\tInternet\tNonpartisan\tNone\n39.0\t44.0\t6.0\t3.0\t7.0\techelon-insights-r-25816\tEchelon Insights (R)\t2016-09-26\t2016-09-27\tIf the election for President were held today, for whom would you vote?\tLikely Voters\t1529\t\tInternet\tPollster\tRep\n42.0\t47.0\t\t\t11.0\techelon-insights-r-25816\tEchelon Insights (R)\t2016-09-26\t2016-09-27\tIf the election for President were held today and the choices were Hillary Clinton, the Democratic candidate, and Donald Trump, the Republican candidate, for whom would you vote?\tLikely Voters\t1529\t\tInternet\tPollster\tRep\n41.0\t45.0\t\t\t14.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1253\t3.0\tInternet\tNonpartisan\tNone\n8.0\t86.0\t\t\t6.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t478\t\tInternet\tNonpartisan\tNone\n82.0\t8.0\t\t\t11.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t405\t\tInternet\tNonpartisan\tNone\n40.0\t32.0\t\t\t28.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t369\t\tInternet\tNonpartisan\tNone\n38.0\t41.0\t8.0\t4.0\t8.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters\t1253\t3.0\tInternet\tNonpartisan\tNone\n7.0\t82.0\t3.0\t4.0\t4.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Democrat\t478\t\tInternet\tNonpartisan\tNone\n77.0\t7.0\t6.0\t1.0\t8.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Republican\t405\t\tInternet\tNonpartisan\tNone\n36.0\t25.0\t17.0\t8.0\t14.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - independent\t369\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t8.0\t2.0\t9.0\tlucid-the-times-picayune-26452\tLucid/The Times-Picayune\t2016-09-25\t2016-09-27\t\tLikely Voters\t444\t\tInternet\tNonpartisan\tNone\n48.0\t48.0\t\t4.0\t\tupi-cvoter-25790\tUPI/CVOTER\t2016-09-21\t2016-09-27\t\tLikely Voters\t1239\t3.0\tInternet\tNonpartisan\tNone\n41.0\t49.0\t4.0\t5.0\t1.0\tpublic-religion-research-institute-26411\tPublic Religion Research Institute \t2016-09-01\t2016-09-27\t\tLikely Voters\t1296\t3.5\tLive Phone/Online\tNonpartisan\tNone\n39.0\t43.0\t7.0\t2.0\t9.0\tlucid-the-times-picayune-26451\tLucid/The Times-Picayune\t2016-09-24\t2016-09-26\t\tLikely Voters\t499\t\tInternet\tNonpartisan\tNone\n38.0\t44.0\t\t7.0\t10.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1041\t3.5\tInternet\tNonpartisan\tNone\n7.0\t84.0\t\t2.0\t7.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t8.0\t\t8.0\t6.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n29.0\t20.0\t\t24.0\t27.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t7.0\t5.0\t9.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1041\t3.5\tInternet\tNonpartisan\tNone\n7.0\t82.0\t3.0\t2.0\t6.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t6.0\t9.0\t5.0\t3.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n27.0\t20.0\t18.0\t11.0\t24.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-25789\tUPI/CVOTER\t2016-09-20\t2016-09-26\t\tLikely Voters\t1174\t3.0\tInternet\tNonpartisan\tNone\n39.0\t42.0\t7.0\t2.0\t9.0\tlucid-the-times-picayune-26450\tLucid/The Times-Picayune\t2016-09-23\t2016-09-25\t\tLikely Voters\t506\t\tInternet\tNonpartisan\tNone\n43.0\t43.0\t2.0\t4.0\t7.0\tpublic-religion-research-institute-the-atlantic-25982\tPublic Religion Research Institute/The Atlantic\t2016-09-22\t2016-09-25\t\tLikely Voters\t461\t\tLive Phone\tNonpartisan\tNone\n42.0\t46.0\t8.0\t3.0\t2.0\tmonmouth-university-25669\tMonmouth University\t2016-09-22\t2016-09-25\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t729\t3.6\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t4.0\t2.0\tmonmouth-university-25669\tMonmouth University\t2016-09-22\t2016-09-25\t\tLikely Voters\t729\t3.6\tLive Phone\tNonpartisan\tNone\n43.0\t44.0\t8.0\t3.0\t4.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t1115\t2.9\tLive Phone\tNonpartisan\tNone\n6.0\t90.0\t2.0\t2.0\t2.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t5.0\t5.0\t0.0\t3.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t35.0\t15.0\t5.0\t4.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t47.0\t\t1.0\t6.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote? (If undecided) As of today, do you lean more toward Clinton and Kaine or Trump and Pence?\tLikely Voters\t1115\t2.9\tLive Phone\tNonpartisan\tNone\n6.0\t91.0\t\t1.0\t2.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote? (If undecided) As of today, do you lean more toward Clinton and Kaine or Trump and Pence?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n90.0\t6.0\t\t0.0\t4.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote? (If undecided) As of today, do you lean more toward Clinton and Kaine or Trump and Pence?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n47.0\t43.0\t\t1.0\t9.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote? (If undecided) As of today, do you lean more toward Clinton and Kaine or Trump and Pence?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t51.0\t\t\t6.0\tnbc-surveymonkey-25719\tNBC/SurveyMonkey\t2016-09-19\t2016-09-25\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t13598\t1.1\tInternet\tNonpartisan\tNone\n40.0\t45.0\t10.0\t3.0\t2.0\tnbc-surveymonkey-25719\tNBC/SurveyMonkey\t2016-09-19\t2016-09-25\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t13598\t1.1\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25668\tUPI/CVOTER\t2016-09-19\t2016-09-25\t\tLikely Voters\t1052\t3.0\tInternet\tNonpartisan\tNone\n41.0\t44.0\t5.0\t3.0\t7.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t948\t3.8\tInternet\tNonpartisan\tNone\n10.0\t81.0\t2.0\t2.0\t6.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t421\t\tInternet\tNonpartisan\tNone\n82.0\t6.0\t5.0\t2.0\t5.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t302\t\tInternet\tNonpartisan\tNone\n39.0\t40.0\t8.0\t5.0\t9.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t392\t\tInternet\tNonpartisan\tNone\n44.0\t48.0\t\t7.0\t2.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\t\tRegistered Voters\t948\t3.8\tInternet\tNonpartisan\tNone\n10.0\t86.0\t\t3.0\t1.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\t\tRegistered Voters - Democrat\t421\t\tInternet\tNonpartisan\tNone\n88.0\t7.0\t\t4.0\t1.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\t\tRegistered Voters - Republican\t302\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t\t12.0\t3.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\t\tRegistered Voters - independent\t392\t\tInternet\tNonpartisan\tNone\n42.0\t44.0\t\t\t4.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1712\t2.0\tInternet\tNonpartisan\tNone\n8.0\t84.0\t\t\t7.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t621\t\tInternet\tNonpartisan\tNone\n82.0\t8.0\t\t\t11.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t548\t\tInternet\tNonpartisan\tNone\n41.0\t33.0\t\t\t26.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t543\t\tInternet\tNonpartisan\tNone\n39.0\t38.0\t9.0\t4.0\t10.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters\t1712\t2.0\tInternet\tNonpartisan\tNone\n7.0\t80.0\t3.0\t2.0\t7.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Democrat\t621\t\tInternet\tNonpartisan\tNone\n79.0\t6.0\t7.0\t1.0\t6.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Republican\t548\t\tInternet\tNonpartisan\tNone\n35.0\t23.0\t18.0\t9.0\t16.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - independent\t543\t\tInternet\tNonpartisan\tNone\n46.0\t46.0\t\t3.0\t4.0\tbloomberg-selzer-25650\tBloomberg/Selzer\t2016-09-21\t2016-09-24\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t1002\t\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t8.0\t4.0\t4.0\tbloomberg-selzer-25650\tBloomberg/Selzer\t2016-09-21\t2016-09-24\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats, Donald Trump for the Republicans, Gary Johnson for the Libertarian Party, and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t1002\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25667\tUPI/CVOTER\t2016-09-18\t2016-09-24\t\tLikely Voters\t1022\t3.0\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25666\tUPI/CVOTER\t2016-09-17\t2016-09-23\t\tLikely Voters\t1091\t3.0\tInternet\tNonpartisan\tNone\n44.0\t46.0\t5.0\t1.0\t4.0\tabc-post-25643\tABC/Post\t2016-09-19\t2016-09-22\t\tLikely Voters\t651\t4.5\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t1.0\t3.0\tabc-post-25643\tABC/Post\t2016-09-19\t2016-09-22\t\tLikely Voters\t651\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t45.0\t6.0\t3.0\t3.0\tfranklin-pierce-rkm-boston-herald-25805\tFranklin Pierce/RKM/Boston Herald\t2016-09-18\t2016-09-22\t\tLikely Voters\t1017\t3.1\tLive Phone\tNonpartisan\tNone\n6.0\t84.0\t4.0\t3.0\t3.0\tfranklin-pierce-rkm-boston-herald-25805\tFranklin Pierce/RKM/Boston Herald\t2016-09-18\t2016-09-22\t\tLikely Voters - Democrat\t467\t\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t6.0\t2.0\t2.0\tfranklin-pierce-rkm-boston-herald-25805\tFranklin Pierce/RKM/Boston Herald\t2016-09-18\t2016-09-22\t\tLikely Voters - Republican\t449\t\tLive Phone\tNonpartisan\tNone\n47.0\t28.0\t9.0\t10.0\t7.0\tfranklin-pierce-rkm-boston-herald-25805\tFranklin Pierce/RKM/Boston Herald\t2016-09-18\t2016-09-22\t\tLikely Voters - independent\t85\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25665\tUPI/CVOTER\t2016-09-16\t2016-09-22\t\tLikely Voters\t1098\t3.0\tInternet\tNonpartisan\tNone\n44.0\t39.0\t8.0\t5.0\t5.0\trasmussen-25614\tRasmussen\t2016-09-20\t2016-09-21\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n14.0\t75.0\t3.0\t4.0\t4.0\trasmussen-25614\tRasmussen\t2016-09-20\t2016-09-21\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t10.0\t5.0\t5.0\t4.0\trasmussen-25614\tRasmussen\t2016-09-20\t2016-09-21\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n45.0\t27.0\t16.0\t6.0\t6.0\trasmussen-25614\tRasmussen\t2016-09-20\t2016-09-21\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25664\tUPI/CVOTER\t2016-09-15\t2016-09-21\t\tLikely Voters\t1073\t3.0\tInternet\tNonpartisan\tNone\n44.0\t47.0\t\t5.0\t5.0\targ-25604\tARG\t2016-09-17\t2016-09-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters\t990\t3.2\tLive Phone\tNonpartisan\tNone\n7.0\t88.0\t\t2.0\t3.0\targ-25604\tARG\t2016-09-17\t2016-09-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Democrat\t346\t\tLive Phone\tNonpartisan\tNone\n83.0\t9.0\t\t3.0\t5.0\targ-25604\tARG\t2016-09-17\t2016-09-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Republican\t306\t\tLive Phone\tNonpartisan\tNone\n46.0\t39.0\t\t9.0\t6.0\targ-25604\tARG\t2016-09-17\t2016-09-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - independent\t338\t\tLive Phone\tNonpartisan\tNone\n41.0\t48.0\t\t9.0\t2.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t758\t3.6\tLive Phone\tNonpartisan\tNone\n4.0\t94.0\t\t1.0\t1.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n87.0\t7.0\t\t5.0\t1.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t40.0\t\t20.0\t3.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t10.0\t5.0\t2.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t758\t3.6\tLive Phone\tNonpartisan\tNone\n3.0\t89.0\t3.0\t4.0\t1.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t6.0\t5.0\t1.0\t2.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t34.0\t20.0\t10.0\t5.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25663\tUPI/CVOTER\t2016-09-14\t2016-09-20\t\tLikely Voters\t1075\t3.0\tInternet\tNonpartisan\tNone\n38.0\t40.0\t7.0\t4.0\t11.0\tyougov-economist-25587\tYouGov/Economist\t2016-09-18\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1065\t\tInternet\tNonpartisan\tNone\n8.0\t81.0\t2.0\t3.0\t6.0\tyougov-economist-25587\tYouGov/Economist\t2016-09-18\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t438\t\tInternet\tNonpartisan\tNone\n75.0\t7.0\t6.0\t2.0\t11.0\tyougov-economist-25587\tYouGov/Economist\t2016-09-18\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t280\t\tInternet\tNonpartisan\tNone\n38.0\t30.0\t11.0\t7.0\t14.0\tyougov-economist-25587\tYouGov/Economist\t2016-09-18\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t347\t\tInternet\tNonpartisan\tNone\n37.0\t43.0\t9.0\t7.0\t4.0\tnbc-wsj-25607\tNBC/WSJ\t2016-09-16\t2016-09-19\tAnd, if the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tLikely Voters\t922\t3.23\tLive Phone\tNonpartisan\tNone\n41.0\t48.0\t\t4.0\t7.0\tnbc-wsj-25607\tNBC/WSJ\t2016-09-16\t2016-09-19\tIf the next election for president were held today, with (ROTATE) … Donald Trump and Mike Pence as the Republican candidates, and Hillary Clinton and Tim Kaine as the Democratic candidates, for whom would you vote?\tLikely Voters\t922\t3.23\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t9.0\t2.0\t5.0\tap-gfk-web-25631\tAP-GfK (web)\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were held today, for whom would you vote?\tLikely Voters\t1251\t\tInternet\tNonpartisan\tNone\n44.0\t50.0\t\t\t6.0\tap-gfk-web-25631\tAP-GfK (web)\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were held today, for whom would you vote?\tLikely Voters\t1251\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t5.0\t3.0\t12.0\ticitizen-25617\tICITIZEN\t2016-09-15\t2016-09-19\t\tRegistered Voters\t1000\t3.0\tInternet\tNonpartisan\tNone\n6.0\t82.0\t3.0\t2.0\t7.0\ticitizen-25617\tICITIZEN\t2016-09-15\t2016-09-19\t\tRegistered Voters - Democrat\t358\t\tInternet\tNonpartisan\tNone\n78.0\t4.0\t6.0\t1.0\t10.0\ticitizen-25617\tICITIZEN\t2016-09-15\t2016-09-19\t\tRegistered Voters - Republican\t312\t\tInternet\tNonpartisan\tNone\n31.0\t35.0\t8.0\t6.0\t20.0\ticitizen-25617\tICITIZEN\t2016-09-15\t2016-09-19\t\tRegistered Voters - independent\t330\t\tInternet\tNonpartisan\tNone\n39.0\t39.0\t\t10.0\t11.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1111\t3.4\tInternet\tNonpartisan\tNone\n5.0\t84.0\t\t6.0\t4.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n75.0\t6.0\t\t9.0\t10.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n35.0\t17.0\t\t28.0\t20.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t37.0\t7.0\t5.0\t10.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1111\t3.4\tInternet\tNonpartisan\tNone\n5.0\t80.0\t5.0\t5.0\t5.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n74.0\t6.0\t8.0\t5.0\t7.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n39.0\t16.0\t18.0\t10.0\t16.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n47.0\t49.0\t\t5.0\t\tupi-cvoter-25662\tUPI/CVOTER\t2016-09-13\t2016-09-19\t\tLikely Voters\t1160\t3.0\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25594\tUPI/CVOTER\t2016-09-12\t2016-09-18\t\tLikely Voters\t1203\t3.0\tInternet\tNonpartisan\tNone\n45.0\t50.0\t\t\t6.0\tnbc-surveymonkey-25535\tNBC/SurveyMonkey\t2016-09-12\t2016-09-18\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t13230\t1.2\tInternet\tNonpartisan\tNone\n40.0\t45.0\t10.0\t4.0\t2.0\tnbc-surveymonkey-25535\tNBC/SurveyMonkey\t2016-09-12\t2016-09-18\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t13230\t1.2\tInternet\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-25595\tUPI/CVOTER\t2016-09-11\t2016-09-17\t\tLikely Voters\t1229\t3.0\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t\t12.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1639\t2.0\tInternet\tNonpartisan\tNone\n8.0\t85.0\t\t\t7.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t637\t\tInternet\tNonpartisan\tNone\n85.0\t7.0\t\t\t8.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t532\t\tInternet\tNonpartisan\tNone\n39.0\t37.0\t\t\t24.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t470\t\tInternet\tNonpartisan\tNone\n40.0\t42.0\t8.0\t3.0\t7.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters\t1639\t2.0\tInternet\tNonpartisan\tNone\n8.0\t80.0\t4.0\t3.0\t5.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Democrat\t637\t\tInternet\tNonpartisan\tNone\n82.0\t5.0\t6.0\t2.0\t5.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Republican\t532\t\tInternet\tNonpartisan\tNone\n37.0\t31.0\t14.0\t6.0\t13.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - independent\t470\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t9.0\t4.0\t\tsaint-leo-university-25600\tSaint Leo University\t2016-09-10\t2016-09-16\tIf the Presidential election was held today between Hillary Clinton and Donald Trump, Gary Johnson and Jill Stein, which candidate would you support?\tLikely Voters\t1005\t3.0\tInternet\tNonpartisan\tNone\n47.0\t47.0\t\t5.0\t\tupi-cvoter-25582\tUPI/CVOTER\t2016-09-10\t2016-09-16\t\tLikely Voters\t1246\t3.0\tInternet\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-25581\tUPI/CVOTER\t2016-09-09\t2016-09-15\t\tLikely Voters\t1229\t3.0\tInternet\tNonpartisan\tNone\n40.0\t41.0\t8.0\t4.0\t6.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters\t867\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t81.0\t4.0\t5.0\t5.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n80.0\t6.0\t8.0\t3.0\t4.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n36.0\t31.0\t16.0\t9.0\t8.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n46.0\t45.0\t\t2.0\t7.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters\t867\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t89.0\t\t1.0\t5.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n87.0\t7.0\t\t1.0\t4.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n48.0\t35.0\t\t3.0\t13.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-25511\tUPI/CVOTER\t2016-09-08\t2016-09-14\t\tLikely Voters\t1265\t3.0\tInternet\tNonpartisan\tNone\n42.0\t40.0\t7.0\t4.0\t7.0\trasmussen-25496\tRasmussen\t2016-09-12\t2016-09-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n16.0\t74.0\t2.0\t2.0\t5.0\trasmussen-25496\tRasmussen\t2016-09-12\t2016-09-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t10.0\t6.0\t4.0\t3.0\trasmussen-25496\tRasmussen\t2016-09-12\t2016-09-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n36.0\t32.0\t15.0\t5.0\t12.0\trasmussen-25496\tRasmussen\t2016-09-12\t2016-09-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n40.0\t42.0\t5.0\t5.0\t7.0\tyougov-economist-25487\tYouGov/Economist\t2016-09-10\t2016-09-13\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1087\t\tInternet\tNonpartisan\tNone\n6.0\t85.0\t1.0\t2.0\t5.0\tyougov-economist-25487\tYouGov/Economist\t2016-09-10\t2016-09-13\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t414\t\tInternet\tNonpartisan\tNone\n83.0\t6.0\t3.0\t1.0\t6.0\tyougov-economist-25487\tYouGov/Economist\t2016-09-10\t2016-09-13\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t311\t\tInternet\tNonpartisan\tNone\n34.0\t37.0\t10.0\t9.0\t10.0\tyougov-economist-25487\tYouGov/Economist\t2016-09-10\t2016-09-13\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t362\t\tInternet\tNonpartisan\tNone\n44.0\t46.0\t\t5.0\t4.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters\t1433\t\tLive Phone\tNonpartisan\tNone\n9.0\t87.0\t\t3.0\t2.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t7.0\t\t4.0\t4.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t39.0\t\t11.0\t8.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t42.0\t8.0\t5.0\t2.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters\t1433\t\tLive Phone\tNonpartisan\tNone\n8.0\t82.0\t6.0\t4.0\t0.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n83.0\t5.0\t8.0\t2.0\t2.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t34.0\t13.0\t11.0\t4.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t48.0\t\t3.0\t6.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t960\t3.2\tLive Phone\tNonpartisan\tNone\n4.0\t92.0\t\t0.0\t4.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Democrat\t\t5.61\tLive Phone\tNonpartisan\tNone\n86.0\t10.0\t\t2.0\t2.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Republican\t\t5.57\tLive Phone\tNonpartisan\tNone\n45.0\t40.0\t\t7.0\t8.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - independent\t\t5.75\tLive Phone\tNonpartisan\tNone\n39.0\t41.0\t13.0\t4.0\t3.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t960\t3.2\tLive Phone\tNonpartisan\tNone\n3.0\t88.0\t7.0\t2.0\t0.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - Democrat\t\t5.61\tLive Phone\tNonpartisan\tNone\n82.0\t7.0\t8.0\t2.0\t0.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - Republican\t\t5.57\tLive Phone\tNonpartisan\tNone\n38.0\t29.0\t20.0\t9.0\t3.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - independent\t\t5.75\tLive Phone\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-25503\tUPI/CVOTER\t2016-09-07\t2016-09-13\t\tLikely Voters\t1245\t3.0\tInternet\tNonpartisan\tNone\n39.0\t40.0\t\t9.0\t11.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1127\t\tInternet\tNonpartisan\tNone\n8.0\t79.0\t\t8.0\t6.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n79.0\t7.0\t\t6.0\t7.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n30.0\t22.0\t\t27.0\t21.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t39.0\t8.0\t4.0\t10.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1127\t\tInternet\tNonpartisan\tNone\n8.0\t78.0\t5.0\t5.0\t5.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t6.0\t8.0\t1.0\t6.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n31.0\t22.0\t15.0\t11.0\t21.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n49.0\t46.0\t\t5.0\t\tupi-cvoter-25491\tUPI/CVOTER\t2016-09-06\t2016-09-12\t\tLikely Voters\t1232\t3.0\tInternet\tNonpartisan\tNone\n38.0\t45.0\t10.0\t6.0\t1.0\tpew-25612\tPew\t2016-08-16\t2016-09-12\t\tRegistered Voters\t3941\t2.6\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t\t8.0\tnbc-surveymonkey-25466\tNBC/SurveyMonkey\t2016-09-05\t2016-09-11\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t16220\t1.1\tInternet\tNonpartisan\tNone\n40.0\t42.0\t11.0\t4.0\t3.0\tnbc-surveymonkey-25466\tNBC/SurveyMonkey\t2016-09-05\t2016-09-11\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t16220\t1.1\tInternet\tNonpartisan\tNone\n49.0\t46.0\t\t5.0\t\tupi-cvoter-25458\tUPI/CVOTER\t2016-09-05\t2016-09-11\t\tLikely Voters\t1260\t3.0\tInternet\tNonpartisan\tNone\n49.0\t45.0\t\t6.0\t\tupi-cvoter-25457\tUPI/CVOTER\t2016-09-04\t2016-09-10\t\tLikely Voters\t1244\t3.0\tInternet\tNonpartisan\tNone\n49.0\t46.0\t\t6.0\t\tupi-cvoter-25456\tUPI/CVOTER\t2016-09-03\t2016-09-09\t\tLikely Voters\t1260\t3.0\tInternet\tNonpartisan\tNone\n43.0\t44.0\t\t\t13.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1710\t2.0\tInternet\tNonpartisan\tNone\n11.0\t83.0\t\t\t7.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t691\t\tInternet\tNonpartisan\tNone\n84.0\t6.0\t\t\t10.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t549\t\tInternet\tNonpartisan\tNone\n43.0\t33.0\t\t\t25.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t470\t\tInternet\tNonpartisan\tNone\n39.0\t41.0\t10.0\t3.0\t8.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters\t1710\t2.0\tInternet\tNonpartisan\tNone\n10.0\t79.0\t4.0\t2.0\t6.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters - Democrat\t706\t\tInternet\tNonpartisan\tNone\n79.0\t6.0\t8.0\t1.0\t7.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters - Republican\t646\t\tInternet\tNonpartisan\tNone\n35.0\t26.0\t21.0\t5.0\t13.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters - independent\t650\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t9.0\t3.0\t2.0\tabc-post-25446\tABC/Post\t2016-09-05\t2016-09-08\t\tLikely Voters\t642\t4.5\tLive Phone\tNonpartisan\tNone\n43.0\t51.0\t\t3.0\t2.0\tabc-post-25446\tABC/Post\t2016-09-05\t2016-09-08\t\tLikely Voters\t642\t4.5\tLive Phone\tNonpartisan\tNone\n48.0\t46.0\t\t6.0\t\tupi-cvoter-25455\tUPI/CVOTER\t2016-09-02\t2016-09-08\t\tLikely Voters\t1256\t3.0\tInternet\tNonpartisan\tNone\n39.0\t43.0\t9.0\t4.0\t5.0\trasmussen-25420\tRasmussen\t2016-09-06\t2016-09-07\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n9.0\t78.0\t7.0\t2.0\t4.0\trasmussen-25420\tRasmussen\t2016-09-06\t2016-09-07\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n75.0\t11.0\t8.0\t2.0\t4.0\trasmussen-25420\tRasmussen\t2016-09-06\t2016-09-07\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n37.0\t36.0\t13.0\t5.0\t9.0\trasmussen-25420\tRasmussen\t2016-09-06\t2016-09-07\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n48.0\t47.0\t\t6.0\t\tupi-cvoter-25454\tUPI/CVOTER\t2016-09-01\t2016-09-07\t\tLikely Voters\t1226\t3.0\tInternet\tNonpartisan\tNone\n38.0\t40.0\t7.0\t7.0\t8.0\tyougov-economist-25411\tYouGov/Economist\t2016-09-04\t2016-09-06\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1077\t4.7\tInternet\tNonpartisan\tNone\n10.0\t78.0\t2.0\t4.0\t7.0\tyougov-economist-25411\tYouGov/Economist\t2016-09-04\t2016-09-06\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t424\t\tInternet\tNonpartisan\tNone\n80.0\t2.0\t9.0\t2.0\t7.0\tyougov-economist-25411\tYouGov/Economist\t2016-09-04\t2016-09-06\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t305\t\tInternet\tNonpartisan\tNone\n31.0\t35.0\t11.0\t12.0\t11.0\tyougov-economist-25411\tYouGov/Economist\t2016-09-04\t2016-09-06\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t348\t\tInternet\tNonpartisan\tNone\n47.0\t47.0\t\t6.0\t\tupi-cvoter-25423\tUPI/CVOTER\t2016-08-31\t2016-09-06\t\tLikely Voters\t1262\t3.0\tInternet\tNonpartisan\tNone\n38.0\t40.0\t\t11.0\t11.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1084\t\tInternet\tNonpartisan\tNone\n10.0\t78.0\t\t7.0\t5.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t6.0\t\t11.0\t7.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n23.0\t24.0\t\t30.0\t23.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t40.0\t8.0\t5.0\t9.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1084\t\tInternet\tNonpartisan\tNone\n9.0\t78.0\t4.0\t6.0\t4.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t6.0\t9.0\t4.0\t6.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n23.0\t24.0\t22.0\t12.0\t18.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n46.0\t48.0\t\t6.0\t\tupi-cvoter-25416\tUPI/CVOTER\t2016-08-30\t2016-09-05\t\tLikely Voters\t1220\t3.0\tInternet\tNonpartisan\tNone\n45.0\t43.0\t7.0\t2.0\t1.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tLikely Voters\t786\t3.5\tLive Phone\tNonpartisan\tNone\n3.0\t90.0\t4.0\t0.0\t3.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tLikely Voters - Democrat\t\t6.0\tLive Phone\tNonpartisan\tNone\n92.0\t3.0\t3.0\t2.0\t0.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tLikely Voters - Republican\t\t6.0\tLive Phone\tNonpartisan\tNone\n29.0\t49.0\t16.0\t6.0\t1.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n49.0\t48.0\t\t4.0\t0.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t786\t3.5\tLive Phone\tNonpartisan\tNone\n4.0\t96.0\t\t0.0\t0.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Democrat\t\t6.0\tLive Phone\tNonpartisan\tNone\n93.0\t3.0\t\t4.0\t0.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Republican\t\t6.0\tLive Phone\tNonpartisan\tNone\n55.0\t37.0\t\t8.0\t0.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t8.0\t4.0\t3.0\tfranklin-pierce-rkm-boston-herald-25342\tFranklin Pierce/RKM/Boston Herald\t2016-08-31\t2016-09-04\t\tLikely Voters\t1025\t\tLive Phone\tNonpartisan\tNone\n3.0\t89.0\t5.0\t2.0\t1.0\tfranklin-pierce-rkm-boston-herald-25342\tFranklin Pierce/RKM/Boston Herald\t2016-08-31\t2016-09-04\t\tLikely Voters - Democrat\t375\t\tLive Phone\tNonpartisan\tNone\n85.0\t6.0\t5.0\t1.0\t3.0\tfranklin-pierce-rkm-boston-herald-25342\tFranklin Pierce/RKM/Boston Herald\t2016-08-31\t2016-09-04\t\tLikely Voters - Republican\t312\t\tLive Phone\tNonpartisan\tNone\n45.0\t30.0\t14.0\t5.0\t6.0\tfranklin-pierce-rkm-boston-herald-25342\tFranklin Pierce/RKM/Boston Herald\t2016-08-31\t2016-09-04\t\tLikely Voters - independent\t241\t\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t5.0\t\tupi-cvoter-25397\tUPI/CVOTER\t2016-08-29\t2016-09-04\t\tLikely Voters\t1237\t3.0\tInternet\tNonpartisan\tNone\n42.0\t48.0\t\t\t10.0\tnbc-surveymonkey-25341\tNBC/SurveyMonkey\t2016-08-29\t2016-09-04\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t32226\t1.0\tInternet\tNonpartisan\tNone\n37.0\t41.0\t12.0\t4.0\t6.0\tnbc-surveymonkey-25341\tNBC/SurveyMonkey\t2016-08-29\t2016-09-04\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t32226\t1.0\tInternet\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25346\tUPI/CVOTER\t2016-08-28\t2016-09-03\t\tLikely Voters\t1242\t3.0\tInternet\tNonpartisan\tNone\n40.0\t42.0\t\t\t18.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n8.0\t84.0\t\t\t9.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t706\t\tInternet\tNonpartisan\tNone\n81.0\t8.0\t\t\t11.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t646\t\tInternet\tNonpartisan\tNone\n33.0\t31.0\t\t\t36.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t650\t\tInternet\tNonpartisan\tNone\n36.0\t38.0\t9.0\t4.0\t13.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n7.0\t78.0\t5.0\t4.0\t6.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t706\t\tInternet\tNonpartisan\tNone\n77.0\t6.0\t6.0\t2.0\t9.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t646\t\tInternet\tNonpartisan\tNone\n27.0\t25.0\t17.0\t7.0\t25.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t650\t\tInternet\tNonpartisan\tNone\n45.0\t49.0\t\t6.0\t\tupi-cvoter-25345\tUPI/CVOTER\t2016-08-27\t2016-09-02\t\tLikely Voters\t1142\t3.0\tInternet\tNonpartisan\tNone\n40.0\t42.0\t11.0\t3.0\t5.0\tgwu-battleground-25409\tGWU/Battleground\t2016-08-28\t2016-09-01\t\tLikely Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t6.0\t\tupi-cvoter-25344\tUPI/CVOTER\t2016-08-26\t2016-09-01\t\tLikely Voters\t1172\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t\t4.0\t8.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters\t887\t3.4\tLive Phone\tNonpartisan\tNone\n5.0\t87.0\t\t2.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - Democrat\t257\t\tLive Phone\tNonpartisan\tNone\n86.0\t6.0\t\t3.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n44.0\t38.0\t\t7.0\t12.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n43.0\t44.0\t\t4.0\t8.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t861\t3.4\tLive Phone\tNonpartisan\tNone\n5.0\t87.0\t\t2.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Democrat\t257\t\tLive Phone\tNonpartisan\tNone\n86.0\t6.0\t\t3.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n44.0\t38.0\t\t7.0\t12.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n39.0\t39.0\t12.0\t4.0\t6.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters\t887\t3.4\tLive Phone\tNonpartisan\tNone\n6.0\t83.0\t5.0\t4.0\t3.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - Democrat\t257\t\tLive Phone\tNonpartisan\tNone\n81.0\t5.0\t7.0\t1.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n36.0\t27.0\t22.0\t5.0\t10.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n39.0\t39.0\t12.0\t4.0\t6.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tLikely Voters\t861\t3.4\tLive Phone\tNonpartisan\tNone\n6.0\t83.0\t5.0\t4.0\t3.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tLikely Voters - Democrat\t257\t\tLive Phone\tNonpartisan\tNone\n81.0\t5.0\t7.0\t1.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tLikely Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n36.0\t27.0\t22.0\t5.0\t10.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tLikely Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n46.0\t48.0\t\t6.0\t\tupi-cvoter-25343\tUPI/CVOTER\t2016-08-25\t2016-08-31\t\tLikely Voters\t1173\t3.0\tInternet\tNonpartisan\tNone\n40.0\t39.0\t7.0\t6.0\t7.0\trasmussen-25310\tRasmussen\t2016-08-29\t2016-08-30\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n15.0\t73.0\t3.0\t7.0\t4.0\trasmussen-25310\tRasmussen\t2016-08-29\t2016-08-30\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n71.0\t12.0\t8.0\t3.0\t6.0\trasmussen-25310\tRasmussen\t2016-08-29\t2016-08-30\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n36.0\t28.0\t12.0\t10.0\t13.0\trasmussen-25310\tRasmussen\t2016-08-29\t2016-08-30\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n39.0\t41.0\t9.0\t5.0\t6.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters\t1011\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t81.0\t5.0\t4.0\t4.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n74.0\t8.0\t9.0\t2.0\t6.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n38.0\t26.0\t20.0\t9.0\t6.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - independent\t\t7.5\tLive Phone\tNonpartisan\tNone\n42.0\t48.0\t\t1.0\t9.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters\t1011\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t88.0\t\t0.0\t5.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n79.0\t13.0\t\t0.0\t8.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n41.0\t36.0\t\t5.0\t17.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - independent\t\t7.5\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25320\tUPI/CVOTER\t2016-08-24\t2016-08-30\t\tLikely Voters\t1162\t3.0\tInternet\tNonpartisan\tNone\n37.0\t42.0\t7.0\t5.0\t9.0\tyougov-economist-25297\tYouGov/Economist\t2016-08-27\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1119\t\tInternet\tNonpartisan\tNone\n5.0\t84.0\t1.0\t5.0\t5.0\tyougov-economist-25297\tYouGov/Economist\t2016-08-27\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t444\t\tInternet\tNonpartisan\tNone\n78.0\t5.0\t8.0\t1.0\t8.0\tyougov-economist-25297\tYouGov/Economist\t2016-08-27\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t293\t\tInternet\tNonpartisan\tNone\n32.0\t34.0\t14.0\t7.0\t14.0\tyougov-economist-25297\tYouGov/Economist\t2016-08-27\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t382\t\tInternet\tNonpartisan\tNone\n39.0\t40.0\t\t9.0\t12.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1404\t\tInternet\tNonpartisan\tNone\n11.0\t79.0\t\t4.0\t6.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t5.0\t\t8.0\t8.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n30.0\t18.0\t\t29.0\t22.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t40.0\t6.0\t6.0\t11.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1404\t\tInternet\tNonpartisan\tNone\n11.0\t78.0\t3.0\t2.0\t6.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t5.0\t7.0\t5.0\t8.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n32.0\t18.0\t15.0\t20.0\t14.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n41.0\t48.0\t\t\t11.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t89.0\t\t\t4.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - Democrat\t360\t\tLive Phone\tNonpartisan\tNone\n85.0\t7.0\t\t\t8.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - Republican\t309\t\tLive Phone\tNonpartisan\tNone\n37.0\t43.0\t\t\t20.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - independent\t318\t\tLive Phone\tNonpartisan\tNone\n35.0\t42.0\t9.0\t4.0\t11.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t81.0\t4.0\t5.0\t7.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - Democrat\t360\t\tLive Phone\tNonpartisan\tNone\n78.0\t7.0\t6.0\t2.0\t8.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - Republican\t309\t\tLive Phone\tNonpartisan\tNone\n28.0\t32.0\t19.0\t5.0\t16.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - independent\t318\t\tLive Phone\tNonpartisan\tNone\n47.0\t50.0\t\t3.0\t\tupi-cvoter-25299\tUPI/CVOTER\t2016-08-23\t2016-08-29\t\tLikely Voters\t1173\t3.0\tInternet\tNonpartisan\tNone\n37.0\t42.0\t6.0\t5.0\t10.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t881\t3.3\tIVR/Online\tPollster\tDem\n7.0\t74.0\t5.0\t7.0\t6.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n76.0\t10.0\t5.0\t2.0\t8.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n37.0\t32.0\t8.0\t6.0\t16.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n43.0\t48.0\t\t\t9.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t881\t3.3\tIVR/Online\tPollster\tDem\n10.0\t84.0\t\t\t6.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n83.0\t10.0\t\t\t7.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n45.0\t41.0\t\t\t15.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n39.0\t46.0\t7.0\t3.0\t5.0\tmonmouth-university-25281\tMonmouth University\t2016-08-25\t2016-08-28\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t689\t3.7\tLive Phone\tNonpartisan\tNone\n42.0\t49.0\t\t4.0\t5.0\tmonmouth-university-25281\tMonmouth University\t2016-08-25\t2016-08-28\t\tLikely Voters\t689\t3.7\tLive Phone\tNonpartisan\tNone\n47.0\t50.0\t\t3.0\t\tupi-cvoter-25291\tUPI/CVOTER\t2016-08-22\t2016-08-28\t\tLikely Voters\t1145\t3.0\tInternet\tNonpartisan\tNone\n42.0\t48.0\t\t\t10.0\tnbc-surveymonkey-25289\tNBC/SurveyMonkey\t2016-08-22\t2016-08-28\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t24104\t1.0\tInternet\tNonpartisan\tNone\n37.0\t41.0\t11.0\t5.0\t6.0\tnbc-surveymonkey-25289\tNBC/SurveyMonkey\t2016-08-22\t2016-08-28\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t24104\t1.0\tInternet\tNonpartisan\tNone\n47.0\t50.0\t\t3.0\t\tupi-cvoter-25279\tUPI/CVOTER\t2016-08-21\t2016-08-27\t\tLikely Voters\t1157\t3.0\tInternet\tNonpartisan\tNone\n40.0\t43.0\t\t\t17.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2007\t2.0\tInternet\tNonpartisan\tNone\n7.0\t83.0\t\t\t10.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t699\t\tInternet\tNonpartisan\tNone\n81.0\t9.0\t\t\t10.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t643\t\tInternet\tNonpartisan\tNone\n34.0\t35.0\t\t\t31.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t665\t\tInternet\tNonpartisan\tNone\n37.0\t39.0\t8.0\t3.0\t12.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2007\t2.0\tInternet\tNonpartisan\tNone\n6.0\t80.0\t5.0\t2.0\t7.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t699\t\tInternet\tNonpartisan\tNone\n78.0\t7.0\t6.0\t1.0\t8.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t643\t\tInternet\tNonpartisan\tNone\n30.0\t27.0\t14.0\t7.0\t23.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t665\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t9.0\t5.0\t7.0\trasmussen-25259\tRasmussen\t2016-08-23\t2016-08-24\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n8.0\t79.0\t4.0\t3.0\t5.0\trasmussen-25259\tRasmussen\t2016-08-23\t2016-08-24\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t12.0\t6.0\t2.0\t4.0\trasmussen-25259\tRasmussen\t2016-08-23\t2016-08-24\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n32.0\t28.0\t20.0\t8.0\t12.0\trasmussen-25259\tRasmussen\t2016-08-23\t2016-08-24\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n35.0\t42.0\t\t9.0\t13.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1049\t\tInternet\tNonpartisan\tNone\n7.0\t81.0\t\t6.0\t7.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n73.0\t6.0\t\t10.0\t11.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t20.0\t\t24.0\t22.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n36.0\t39.0\t7.0\t6.0\t12.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1049\t\tInternet\tNonpartisan\tNone\n8.0\t74.0\t4.0\t6.0\t7.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n75.0\t5.0\t9.0\t3.0\t9.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t20.0\t16.0\t13.0\t16.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n49.0\t48.0\t\t4.0\t\tupi-cvoter-25271\tUPI/CVOTER\t2016-08-18\t2016-08-24\t\tLikely Voters\t1187\t3.0\tInternet\tNonpartisan\tNone\n41.0\t51.0\t\t3.0\t4.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t1498\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t92.0\t\t1.0\t3.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t12.0\t\t0.0\t3.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t\t8.0\t5.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t45.0\t10.0\t4.0\t3.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t1498\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t88.0\t3.0\t3.0\t2.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t10.0\t6.0\t1.0\t3.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t33.0\t19.0\t9.0\t5.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t42.0\t6.0\t6.0\t10.0\tyougov-economist-25247\tYouGov/Economist\t2016-08-19\t2016-08-23\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1080\t4.1\tInternet\tNonpartisan\tNone\n5.0\t82.0\t3.0\t4.0\t7.0\tyougov-economist-25247\tYouGov/Economist\t2016-08-19\t2016-08-23\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t409\t\tInternet\tNonpartisan\tNone\n84.0\t2.0\t5.0\t3.0\t7.0\tyougov-economist-25247\tYouGov/Economist\t2016-08-19\t2016-08-23\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t290\t\tInternet\tNonpartisan\tNone\n32.0\t38.0\t9.0\t8.0\t12.0\tyougov-economist-25247\tYouGov/Economist\t2016-08-19\t2016-08-23\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t381\t\tInternet\tNonpartisan\tNone\n48.0\t48.0\t\t4.0\t\tupi-cvoter-25262\tUPI/CVOTER\t2016-08-17\t2016-08-23\t\tLikely Voters\t1196\t3.0\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t4.0\t\tupi-cvoter-25248\tUPI/CVOTER\t2016-08-16\t2016-08-22\t\tLikely Voters\t1214\t3.0\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25238\tUPI/CVOTER\t2016-08-15\t2016-08-21\t\tLikely Voters\t1259\t3.0\tInternet\tNonpartisan\tNone\n42.0\t50.0\t\t\t8.0\tnbc-surveymonkey-25235\tNBC/SurveyMonkey\t2016-08-15\t2016-08-21\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t17459\t1.1\tInternet\tNonpartisan\tNone\n38.0\t43.0\t11.0\t5.0\t4.0\tnbc-surveymonkey-25235\tNBC/SurveyMonkey\t2016-08-15\t2016-08-21\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t17459\t1.1\tInternet\tNonpartisan\tNone\n38.0\t44.0\t\t\t18.0\tmorning-consult-25218\tMorning Consult\t2016-08-18\t2016-08-20\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n7.0\t86.0\t\t\t7.0\tmorning-consult-25218\tMorning Consult\t2016-08-18\t2016-08-20\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t688\t\tInternet\tNonpartisan\tNone\n81.0\t9.0\t\t\t9.0\tmorning-consult-25218\tMorning Consult\t2016-08-18\t2016-08-20\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t582\t\tInternet\tNonpartisan\tNone\n34.0\t31.0\t\t\t35.0\tmorning-consult-25218\tMorning Consult\t2016-08-18\t2016-08-20\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t731\t\tInternet\tNonpartisan\tNone\n36.0\t39.0\t8.0\t4.0\t13.0\tmorning-consult-25218\tMorning Consult\t2016-08-18\t2016-08-20\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2001\t\tInternet\tNonpartisan\tNone\n42.0\t47.0\t\t6.0\t5.0\targ-25231\tARG\t2016-08-17\t2016-08-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters\t994\t3.2\tLive Phone\tNonpartisan\tNone\n4.0\t90.0\t\t2.0\t4.0\targ-25231\tARG\t2016-08-17\t2016-08-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Democrat\t350\t\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t\t5.0\t6.0\targ-25231\tARG\t2016-08-17\t2016-08-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Republican\t306\t\tLive Phone\tNonpartisan\tNone\n47.0\t38.0\t\t10.0\t5.0\targ-25231\tARG\t2016-08-17\t2016-08-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - independent\t338\t\tLive Phone\tNonpartisan\tNone\n48.0\t48.0\t\t4.0\t\tupi-cvoter-25226\tUPI/CVOTER\t2016-08-14\t2016-08-20\t\tLikely Voters\t1191\t3.0\tInternet\tNonpartisan\tNone\n36.0\t41.0\t\t10.0\t13.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1049\t\tInternet\tNonpartisan\tNone\n6.0\t82.0\t\t5.0\t7.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n72.0\t5.0\t\t11.0\t11.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n37.0\t20.0\t\t22.0\t22.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n35.0\t39.0\t7.0\t6.0\t13.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1049\t\tInternet\tNonpartisan\tNone\n6.0\t79.0\t4.0\t4.0\t6.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n71.0\t4.0\t8.0\t5.0\t12.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n37.0\t19.0\t10.0\t16.0\t17.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t5.0\t\tupi-cvoter-25215\tUPI/CVOTER\t2016-08-11\t2016-08-17\t\tLikely Voters\t1009\t3.0\tInternet\tNonpartisan\tNone\n39.0\t41.0\t9.0\t6.0\t5.0\trasmussen-25203\tRasmussen\t2016-08-15\t2016-08-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n12.0\t77.0\t4.0\t2.0\t5.0\trasmussen-25203\tRasmussen\t2016-08-15\t2016-08-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n69.0\t13.0\t11.0\t3.0\t3.0\trasmussen-25203\tRasmussen\t2016-08-15\t2016-08-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t29.0\t12.0\t14.0\t7.0\trasmussen-25203\tRasmussen\t2016-08-15\t2016-08-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n35.0\t41.0\t7.0\t5.0\t11.0\tyougov-economist-25194\tYouGov/Economist\t2016-08-14\t2016-08-16\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1076\t\tInternet\tNonpartisan\tNone\n6.0\t83.0\t1.0\t4.0\t6.0\tyougov-economist-25194\tYouGov/Economist\t2016-08-14\t2016-08-16\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t407\t\tInternet\tNonpartisan\tNone\n75.0\t4.0\t8.0\t2.0\t11.0\tyougov-economist-25194\tYouGov/Economist\t2016-08-14\t2016-08-16\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t286\t\tInternet\tNonpartisan\tNone\n30.0\t31.0\t12.0\t10.0\t16.0\tyougov-economist-25194\tYouGov/Economist\t2016-08-14\t2016-08-16\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t383\t\tInternet\tNonpartisan\tNone\n35.0\t48.0\t\t7.0\t10.0\tpublic-religion-research-institute-25256\tPublic Religion Research Institute \t2016-08-10\t2016-08-16\t\tRegistered Voters\t1630\t2.9\tLive Phone\tNonpartisan\tNone\n37.0\t41.0\t10.0\t6.0\t5.0\tpew-25211\tPew\t2016-08-09\t2016-08-16\t\tRegistered Voters\t1567\t\tLive Phone\tNonpartisan\tNone\n44.0\t51.0\t\t5.0\t\tupi-cvoter-25205\tUPI/CVOTER\t2016-08-09\t2016-08-16\t\tLikely Voters\t1069\t3.0\tInternet\tNonpartisan\tNone\n40.0\t50.0\t\t5.0\t5.0\tnormington-petts-associates-d-end-citizens-united-25217\tNormington, Petts & Associates (D-End Citizens United)\t2016-08-09\t2016-08-15\tIf the general election for President was held today and the candidates were: Democrat Hillary Clinton or Republican Donald Trump, for whom would you vote?\tLikely Voters\t1000\t3.1\tLive Phone\tSponsor\tDem\n37.0\t45.0\t8.0\t4.0\t6.0\tnormington-petts-associates-d-end-citizens-united-25217\tNormington, Petts & Associates (D-End Citizens United)\t2016-08-09\t2016-08-15\tAnd if the election for President was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson and Green Party candidate Jill Stein for whom would you vote?\tLikely Voters\t1000\t3.1\tLive Phone\tSponsor\tDem\n44.0\t51.0\t\t5.0\t\tupi-cvoter-25192\tUPI/CVOTER\t2016-08-09\t2016-08-15\t\tLikely Voters\t1035\t3.0\tInternet\tNonpartisan\tNone\n37.0\t44.0\t\t\t18.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n8.0\t83.0\t\t\t9.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t740\t\tInternet\tNonpartisan\tNone\n77.0\t9.0\t\t\t14.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t610\t\tInternet\tNonpartisan\tNone\n33.0\t33.0\t\t\t34.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t651\t\tInternet\tNonpartisan\tNone\n33.0\t39.0\t9.0\t4.0\t14.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n7.0\t78.0\t4.0\t3.0\t9.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t740\t\tInternet\tNonpartisan\tNone\n71.0\t8.0\t8.0\t2.0\t10.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t610\t\tInternet\tNonpartisan\tNone\n27.0\t24.0\t17.0\t8.0\t24.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t651\t\tInternet\tNonpartisan\tNone\n45.0\t51.0\t\t5.0\t\tupi-cvoter-25186\tUPI/CVOTER\t2016-08-08\t2016-08-14\t\tLikely Voters\t975\t3.0\tInternet\tNonpartisan\tNone\n41.0\t50.0\t\t\t8.0\tnbc-surveymonkey-25182\tNBC/SurveyMonkey\t2016-08-08\t2016-08-14\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t15179\t1.2\tInternet\tNonpartisan\tNone\n37.0\t43.0\t11.0\t4.0\t5.0\tnbc-surveymonkey-25182\tNBC/SurveyMonkey\t2016-08-08\t2016-08-14\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t15179\t1.2\tInternet\tNonpartisan\tNone\n36.0\t38.0\t8.0\t5.0\t13.0\tzogby-internet-25195\tZogby (Internet)\t2016-08-12\t2016-08-13\tIf the election for President were being held today and the Democratic nominee for President is Hillary Clinton and the Republican nominee for President is Donald Trump; the Libertarian nominee is Gary Johnson and the Green party nominee is Jill Stein for whom would you vote?\tLikely Voters\t1277\t2.8\tInternet\tNonpartisan\tNone\n46.0\t49.0\t\t6.0\t\tupi-cvoter-25166\tUPI/CVOTER\t2016-08-07\t2016-08-13\t\tLikely Voters\t1403\t3.0\tInternet\tNonpartisan\tNone\n40.0\t43.0\t8.0\t6.0\t3.0\trasmussen-25125\tRasmussen\t2016-08-09\t2016-08-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n12.0\t82.0\t3.0\t3.0\t1.0\trasmussen-25125\tRasmussen\t2016-08-09\t2016-08-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n74.0\t11.0\t9.0\t5.0\t2.0\trasmussen-25125\tRasmussen\t2016-08-09\t2016-08-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n37.0\t32.0\t15.0\t9.0\t7.0\trasmussen-25125\tRasmussen\t2016-08-09\t2016-08-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n36.0\t42.0\t\t10.0\t12.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t974\t\tInternet\tNonpartisan\tNone\n7.0\t77.0\t\t7.0\t9.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n80.0\t6.0\t\t8.0\t7.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t20.0\t\t34.0\t22.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n35.0\t40.0\t7.0\t7.0\t11.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t974\t\tInternet\tNonpartisan\tNone\n6.0\t76.0\t4.0\t6.0\t8.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t5.0\t7.0\t3.0\t8.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t18.0\t22.0\t19.0\t17.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-25138\tUPI/CVOTER\t2016-08-03\t2016-08-10\t\tLikely Voters\t1077\t3.0\tInternet\tNonpartisan\tNone\n36.0\t42.0\t9.0\t4.0\t9.0\tyougov-economist-25107\tYouGov/Economist\t2016-08-06\t2016-08-09\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1026\t\tInternet\tNonpartisan\tNone\n3.0\t87.0\t2.0\t3.0\t5.0\tyougov-economist-25107\tYouGov/Economist\t2016-08-06\t2016-08-09\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t399\t\tInternet\tNonpartisan\tNone\n76.0\t7.0\t7.0\t1.0\t8.0\tyougov-economist-25107\tYouGov/Economist\t2016-08-06\t2016-08-09\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t261\t\tInternet\tNonpartisan\tNone\n36.0\t28.0\t17.0\t6.0\t13.0\tyougov-economist-25107\tYouGov/Economist\t2016-08-06\t2016-08-09\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t366\t\tInternet\tNonpartisan\tNone\n46.0\t48.0\t\t6.0\t\tupi-cvoter-25124\tUPI/CVOTER\t2016-08-03\t2016-08-09\t\tLikely Voters\t1002\t3.0\tInternet\tNonpartisan\tNone\n36.0\t48.0\t2.0\t6.0\t8.0\tpublic-religion-research-institute-the-atlantic-25981\tPublic Religion Research Institute/The Atlantic\t2016-07-27\t2016-08-09\t\tRegistered Voters\t1803\t\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t9.0\t4.0\t3.0\tbloomberg-selzer-25108\tBloomberg/Selzer\t2016-08-05\t2016-08-08\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats, Donald Trump for the Republicans, Gary Johnson for the Libertarian Party, and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t749\t3.6\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t3.0\t3.0\tbloomberg-selzer-25108\tBloomberg/Selzer\t2016-08-05\t2016-08-08\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t749\t3.6\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t6.0\t\tupi-cvoter-25113\tUPI/CVOTER\t2016-08-02\t2016-08-08\t\tLikely Voters\t993\t3.0\tInternet\tNonpartisan\tNone\n39.0\t45.0\t\t3.0\t12.0\tpsrai-25137\tPSRAI\t2016-08-04\t2016-08-07\t\tRegistered Voters\t798\t4.4\tLive Phone\tNonpartisan\tNone\n37.0\t50.0\t7.0\t3.0\t3.0\tmonmouth-university-25087\tMonmouth University\t2016-08-04\t2016-08-07\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t683\t3.8\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t\t7.0\t\tupi-cvoter-25098\tUPI/CVOTER\t2016-08-01\t2016-08-07\t\tLikely Voters\t960\t3.0\tInternet\tNonpartisan\tNone\n41.0\t51.0\t\t\t8.0\tnbc-surveymonkey-25094\tNBC/SurveyMonkey\t2016-08-01\t2016-08-07\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t11480\t1.2\tInternet\tNonpartisan\tNone\n38.0\t44.0\t10.0\t4.0\t4.0\tnbc-surveymonkey-25094\tNBC/SurveyMonkey\t2016-08-01\t2016-08-07\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t11480\t1.2\tInternet\tNonpartisan\tNone\n43.0\t50.0\t\t7.0\t\tupi-cvoter-25085\tUPI/CVOTER\t2016-07-31\t2016-08-06\t\tLikely Voters\t1036\t3.0\tInternet\tNonpartisan\tNone\n37.0\t46.0\t\t\t18.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n7.0\t83.0\t\t\t10.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t760\t\tInternet\tNonpartisan\tNone\n77.0\t10.0\t\t\t12.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t591\t\tInternet\tNonpartisan\tNone\n34.0\t34.0\t\t\t32.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t650\t\tInternet\tNonpartisan\tNone\n33.0\t41.0\t9.0\t5.0\t13.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n6.0\t79.0\t4.0\t4.0\t7.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t760\t\tInternet\tNonpartisan\tNone\n73.0\t8.0\t8.0\t1.0\t11.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t591\t\tInternet\tNonpartisan\tNone\n27.0\t26.0\t16.0\t9.0\t22.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t650\t\tInternet\tNonpartisan\tNone\n44.0\t51.0\t\t3.0\t1.0\tabc-post-25077\tABC/Post\t2016-08-01\t2016-08-04\tIf the presidential election were held today and the candidates were (Hillary Clinton, the Democrat) and Donald Trump, (the Republican), for whom would you vote for?\tLikely Voters\t682\t4.0\tLive Phone\tNonpartisan\tNone\n39.0\t47.0\t7.0\t4.0\t4.0\tabc-post-25077\tABC/Post\t2016-08-01\t2016-08-04\t\tLikely Voters\t682\t4.0\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t6.0\t\tupi-cvoter-25075\tUPI/CVOTER\t2016-07-29\t2016-08-04\t\tLikely Voters\t1060\t3.0\tInternet\tNonpartisan\tNone\n39.0\t46.0\t\t5.0\t11.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters\t851\t3.4\tLive Phone\tNonpartisan\tNone\n9.0\t87.0\t\t1.0\t3.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - Democrat\t290\t\tLive Phone\tNonpartisan\tNone\n82.0\t7.0\t\t2.0\t9.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - Republican\t270\t\tLive Phone\tNonpartisan\tNone\n36.0\t38.0\t\t10.0\t17.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - independent\t272\t\tLive Phone\tNonpartisan\tNone\n35.0\t39.0\t12.0\t6.0\t8.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters\t851\t3.4\tLive Phone\tNonpartisan\tNone\n7.0\t83.0\t3.0\t2.0\t4.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - Democrat\t290\t\tLive Phone\tNonpartisan\tNone\n77.0\t5.0\t9.0\t2.0\t7.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - Republican\t270\t\tLive Phone\tNonpartisan\tNone\n31.0\t27.0\t20.0\t11.0\t12.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - independent\t272\t\tLive Phone\tNonpartisan\tNone\n33.0\t48.0\t\t14.0\t5.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t983\t3.1\tLive Phone\tNonpartisan\tNone\n3.0\t90.0\t\t5.0\t1.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n79.0\t6.0\t\t12.0\t4.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n31.0\t37.0\t\t23.0\t8.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n31.0\t45.0\t10.0\t7.0\t8.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t983\t3.1\tLive Phone\tNonpartisan\tNone\n3.0\t88.0\t2.0\t3.0\t4.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n78.0\t5.0\t6.0\t4.0\t7.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n26.0\t31.0\t19.0\t11.0\t13.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t\t11.0\t4.0\tnbc-wsj-25068\tNBC/WSJ\t2016-07-31\t2016-08-03\tIf the next election for president were held today, with (ROTATE) … Donald Trump and Mike Pence as the Republican candidates, and Hillary Clinton and Tim Kaine as the Democratic candidates, for whom would you vote?\tRegistered Voters\t800\t3.46\tLive Phone\tNonpartisan\tNone\n34.0\t43.0\t10.0\t8.0\t5.0\tnbc-wsj-25068\tNBC/WSJ\t2016-07-31\t2016-08-03\tAnd, if the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tRegistered Voters\t800\t3.46\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t\t9.0\t10.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1072\t\tInternet\tNonpartisan\tNone\n9.0\t81.0\t\t5.0\t5.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t7.0\t\t7.0\t9.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n27.0\t27.0\t\t32.0\t13.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t6.0\t4.0\t10.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1072\t\tInternet\tNonpartisan\tNone\n10.0\t78.0\t3.0\t4.0\t6.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n73.0\t7.0\t5.0\t5.0\t11.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n30.0\t25.0\t20.0\t12.0\t6.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n44.0\t50.0\t\t7.0\t\tupi-cvoter-25066\tUPI/CVOTER\t2016-07-28\t2016-08-03\t\tLikely Voters\t1400\t3.0\tInternet\tNonpartisan\tNone\n40.0\t44.0\t6.0\t6.0\t4.0\trasmussen-25057\tRasmussen\t2016-08-01\t2016-08-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n39.0\t49.0\t\t5.0\t8.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters\t1022\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t87.0\t\t3.0\t5.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n78.0\t12.0\t\t4.0\t6.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n41.0\t33.0\t\t12.0\t13.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - independent\t\t8.0\tLive Phone\tNonpartisan\tNone\n35.0\t44.0\t12.0\t1.0\t8.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters\t1022\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t81.0\t8.0\t1.0\t6.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n73.0\t9.0\t11.0\t1.0\t6.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n35.0\t29.0\t22.0\t3.0\t10.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - independent\t\t8.0\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25061\tUPI/CVOTER\t2016-07-27\t2016-08-02\t\tLikely Voters\t989\t3.0\tInternet\tNonpartisan\tNone\n36.0\t41.0\t8.0\t6.0\t9.0\tyougov-economist-25040\tYouGov/Economist\t2016-07-30\t2016-08-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1069\t4.1\tInternet\tNonpartisan\tNone\n5.0\t81.0\t3.0\t5.0\t7.0\tyougov-economist-25040\tYouGov/Economist\t2016-07-30\t2016-08-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t397\t\tInternet\tNonpartisan\tNone\n78.0\t4.0\t10.0\t1.0\t7.0\tyougov-economist-25040\tYouGov/Economist\t2016-07-30\t2016-08-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t300\t\tInternet\tNonpartisan\tNone\n34.0\t31.0\t12.0\t10.0\t14.0\tyougov-economist-25040\tYouGov/Economist\t2016-07-30\t2016-08-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t372\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t5.0\t\t10.0\tpenn-schoen-berland-25048\tPenn Schoen Berland\t2016-07-29\t2016-08-01\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters\t1000\t\tInternet\tNonpartisan\tNone\n5.0\t85.0\t3.0\t\t6.0\tpenn-schoen-berland-25048\tPenn Schoen Berland\t2016-07-29\t2016-08-01\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n79.0\t7.0\t5.0\t\t9.0\tpenn-schoen-berland-25048\tPenn Schoen Berland\t2016-07-29\t2016-08-01\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n36.0\t26.0\t18.0\t\t19.0\tpenn-schoen-berland-25048\tPenn Schoen Berland\t2016-07-29\t2016-08-01\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n43.0\t52.0\t\t5.0\t0.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters\t894\t3.5\tLive Phone\tNonpartisan\tNone\n3.0\t96.0\t\t1.0\t0.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n89.0\t8.0\t\t3.0\t0.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t50.0\t\t9.0\t0.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t45.0\t9.0\t6.0\t3.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters\t894\t3.5\tLive Phone\tNonpartisan\tNone\n2.0\t90.0\t3.0\t1.0\t3.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n78.0\t7.0\t6.0\t3.0\t6.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n33.0\t35.0\t15.0\t9.0\t8.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t47.0\t\t3.0\t10.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters\t1131\t\tLive Phone\tNonpartisan\tNone\n10.0\t86.0\t\t1.0\t3.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - Democrat\t376\t\tLive Phone\tNonpartisan\tNone\n81.0\t13.0\t\t2.0\t4.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - Republican\t315\t\tLive Phone\tNonpartisan\tNone\n39.0\t38.0\t\t5.0\t17.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - independent\t440\t\tLive Phone\tNonpartisan\tNone\n38.0\t43.0\t10.0\t2.0\t6.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters\t1131\t\tLive Phone\tNonpartisan\tNone\n10.0\t82.0\t5.0\t1.0\t3.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - Democrat\t376\t\tLive Phone\tNonpartisan\tNone\n78.0\t9.0\t8.0\t2.0\t3.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - Republican\t315\t\tLive Phone\tNonpartisan\tNone\n35.0\t34.0\t17.0\t4.0\t10.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - independent\t440\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25060\tUPI/CVOTER\t2016-07-25\t2016-07-31\t\tLikely Voters\t989\t3.0\tInternet\tNonpartisan\tNone\n42.0\t50.0\t\t\t8.0\tnbc-surveymonkey-25039\tNBC/SurveyMonkey\t2016-07-25\t2016-07-31\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t12742\t1.2\tInternet\tNonpartisan\tNone\n38.0\t43.0\t9.0\t4.0\t5.0\tnbc-surveymonkey-25039\tNBC/SurveyMonkey\t2016-07-25\t2016-07-31\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t12742\t1.2\tInternet\tNonpartisan\tNone\n40.0\t43.0\t\t\t17.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t1931\t2.0\tInternet\tNonpartisan\tNone\n11.0\t82.0\t\t\t8.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t699\t\tInternet\tNonpartisan\tNone\n78.0\t9.0\t\t\t13.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t579\t\tInternet\tNonpartisan\tNone\n38.0\t32.0\t\t\t30.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t653\t\tInternet\tNonpartisan\tNone\n36.0\t41.0\t11.0\t\t12.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t1931\t2.0\tInternet\tNonpartisan\tNone\n9.0\t80.0\t5.0\t\t6.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t699\t\tInternet\tNonpartisan\tNone\n74.0\t9.0\t9.0\t\t21.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t579\t\tInternet\tNonpartisan\tNone\n32.0\t27.0\t20.0\t\t8.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t653\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t6.0\t2.0\t5.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t1276\t2.7\tIVR/Online\tPollster\tDem\n9.0\t83.0\t3.0\t2.0\t4.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n79.0\t8.0\t7.0\t2.0\t4.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n42.0\t35.0\t10.0\t2.0\t11.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n45.0\t50.0\t\t\t5.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t1276\t2.7\tIVR/Online\tPollster\tDem\n9.0\t97.0\t\t\t4.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n86.0\t10.0\t\t\t3.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n46.0\t42.0\t\t\t13.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n31.0\t46.0\t7.0\t2.0\t15.0\traba-research-25020\tRABA Research\t2016-07-29\t2016-07-29\tIf the election for Present were held today, for whom would you vote?\tLikely Voters\t956\t3.2\tInternet\tNonpartisan\tNone\n35.0\t40.0\t\t8.0\t17.0\tipsos-reuters-25002\tIpsos/Reuters\t2016-07-25\t2016-07-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1050\t\tInternet\tNonpartisan\tNone\n9.0\t79.0\t\t4.0\t8.0\tipsos-reuters-25002\tIpsos/Reuters\t2016-07-25\t2016-07-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n71.0\t6.0\t\t9.0\t14.0\tipsos-reuters-25002\tIpsos/Reuters\t2016-07-25\t2016-07-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n23.0\t27.0\t\t27.0\t24.0\tipsos-reuters-25002\tIpsos/Reuters\t2016-07-25\t2016-07-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t37.0\t5.0\t6.0\t15.0\tipsos-reuters-25002\tIpsos/Reuters\t2016-07-25\t2016-07-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1433\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t\t10.0\t4.0\trasmussen-24988\tRasmussen\t2016-07-26\t2016-07-27\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump or Democrat Hillary Clinton?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n38.0\t40.0\t5.0\t8.0\t9.0\tyougov-economist-24962\tYouGov/Economist\t2016-07-23\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1057\t\tInternet\tNonpartisan\tNone\n6.0\t81.0\t2.0\t4.0\t7.0\tyougov-economist-24962\tYouGov/Economist\t2016-07-23\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t406\t\tInternet\tNonpartisan\tNone\n78.0\t6.0\t5.0\t5.0\t5.0\tyougov-economist-24962\tYouGov/Economist\t2016-07-23\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t287\t\tInternet\tNonpartisan\tNone\n38.0\t26.0\t9.0\t13.0\t15.0\tyougov-economist-24962\tYouGov/Economist\t2016-07-23\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t364\t\tInternet\tNonpartisan\tNone\n44.0\t41.0\t6.0\t\t10.0\tpenn-schoen-berland-25049\tPenn Schoen Berland\t2016-07-22\t2016-07-24\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters\t1000\t3.0\tInternet\tNonpartisan\tNone\n9.0\t79.0\t3.0\t\t9.0\tpenn-schoen-berland-25049\tPenn Schoen Berland\t2016-07-22\t2016-07-24\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n85.0\t3.0\t5.0\t\t7.0\tpenn-schoen-berland-25049\tPenn Schoen Berland\t2016-07-22\t2016-07-24\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n33.0\t28.0\t19.0\t\t20.0\tpenn-schoen-berland-25049\tPenn Schoen Berland\t2016-07-22\t2016-07-24\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n44.0\t43.0\t\t4.0\t10.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters\t1118\t4.0\tLive Phone\tNonpartisan\tNone\n11.0\t84.0\t\t0.0\t4.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n82.0\t6.0\t\t3.0\t9.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t35.0\t\t7.0\t15.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t39.0\t12.0\t2.0\t7.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters\t1118\t4.0\tLive Phone\tNonpartisan\tNone\n10.0\t79.0\t8.0\t0.0\t3.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t6.0\t9.0\t2.0\t4.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t31.0\t18.0\t3.0\t11.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n48.0\t45.0\t\t6.0\t1.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters\t882\t3.5\tLive Phone\tNonpartisan\tNone\n7.0\t88.0\t\t3.0\t1.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n90.0\t8.0\t\t3.0\t0.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n50.0\t37.0\t\t12.0\t1.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t39.0\t9.0\t3.0\t4.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters\t882\t3.5\tLive Phone\tNonpartisan\tNone\n7.0\t82.0\t5.0\t2.0\t5.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t6.0\t7.0\t2.0\t0.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t27.0\t15.0\t4.0\t9.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t40.0\t\t\t16.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2502\t2.0\tInternet\tNonpartisan\tNone\n9.0\t81.0\t\t\t9.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t830\t\tInternet\tNonpartisan\tNone\n85.0\t7.0\t\t\t8.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t796\t\tInternet\tNonpartisan\tNone\n40.0\t30.0\t\t\t31.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t876\t\tInternet\tNonpartisan\tNone\n40.0\t36.0\t10.0\t\t13.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2502\t2.0\tInternet\tNonpartisan\tNone\n8.0\t77.0\t6.0\t\t9.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t830\t\tInternet\tNonpartisan\tNone\n82.0\t6.0\t6.0\t\t6.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t796\t\tInternet\tNonpartisan\tNone\n33.0\t25.0\t18.0\t\t23.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t876\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t4.0\t8.0\tuniversity-of-delaware-psrai-24970\tUniversity of Delaware/PSRAI\t2016-07-21\t2016-07-24\tNow, suppose the 2016 presidential election were being held TODAY. If you had to choose between [READ AND RANDOMIZE CLINTON/TRUMP] who would you vote for?\tRegistered Voters\t818\t\tLive Phone\tNonpartisan\tNone\n3.0\t87.0\t\t2.0\t8.0\tuniversity-of-delaware-psrai-24970\tUniversity of Delaware/PSRAI\t2016-07-21\t2016-07-24\tNow, suppose the 2016 presidential election were being held TODAY. If you had to choose between [READ AND RANDOMIZE CLINTON/TRUMP] who would you vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t5.0\t\t3.0\t8.0\tuniversity-of-delaware-psrai-24970\tUniversity of Delaware/PSRAI\t2016-07-21\t2016-07-24\tNow, suppose the 2016 presidential election were being held TODAY. If you had to choose between [READ AND RANDOMIZE CLINTON/TRUMP] who would you vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n33.0\t35.0\t\t11.0\t20.0\tuniversity-of-delaware-psrai-24970\tUniversity of Delaware/PSRAI\t2016-07-21\t2016-07-24\tNow, suppose the 2016 presidential election were being held TODAY. If you had to choose between [READ AND RANDOMIZE CLINTON/TRUMP] who would you vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t46.0\t\t\t9.0\tnbc-surveymonkey-24964\tNBC/SurveyMonkey\t2016-07-18\t2016-07-24\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t12931\t1.2\tInternet\tNonpartisan\tNone\n41.0\t39.0\t10.0\t5.0\t6.0\tnbc-surveymonkey-24964\tNBC/SurveyMonkey\t2016-07-18\t2016-07-24\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t12931\t1.2\tInternet\tNonpartisan\tNone\n34.0\t39.0\t8.0\t3.0\t15.0\traba-research-24974\tRABA Research\t2016-07-22\t2016-07-22\tIf the election for Present were held today, for whom would you vote?\tLikely Voters\t909\t3.3\tInternet\tNonpartisan\tNone\n51.0\t49.0\t\t\t\tgravis-marketing-oann-24953\tGravis Marketing/OANN\t2016-07-21\t2016-07-22\t\tRegistered Voters\t3462\t1.7\tAutomated Phone\tSponsor\tRep\n42.0\t43.0\t\t6.0\t9.0\targ-24947\tARG\t2016-07-17\t2016-07-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters\t990\t3.2\tLive Phone\tNonpartisan\tNone\n3.0\t85.0\t\t4.0\t8.0\targ-24947\tARG\t2016-07-17\t2016-07-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n77.0\t7.0\t\t3.0\t13.0\targ-24947\tARG\t2016-07-17\t2016-07-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n51.0\t33.0\t\t10.0\t6.0\targ-24947\tARG\t2016-07-17\t2016-07-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t40.0\t\t13.0\t11.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters\t1232\t\tInternet\tNonpartisan\tNone\n10.0\t76.0\t\t8.0\t8.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n74.0\t8.0\t\t11.0\t8.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n33.0\t15.0\t\t31.0\t21.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n35.0\t39.0\t7.0\t8.0\t11.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters\t1232\t\tInternet\tNonpartisan\tNone\n9.0\t74.0\t4.0\t8.0\t6.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n71.0\t7.0\t7.0\t6.0\t9.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n32.0\t14.0\t17.0\t18.0\t19.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n43.0\t42.0\t\t11.0\t4.0\trasmussen-24946\tRasmussen\t2016-07-18\t2016-07-19\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump or Democrat Hillary Clinton?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n40.0\t43.0\t11.0\t4.0\t2.0\tgqr-d-democracy-corps-24934\tGQR (D-Democracy Corps)\t2016-07-13\t2016-07-18\tI know it’s a long way off, but thinking about the election for President in November, if the election for President were held today, would you vote for --Democrat Hillary Clinton or Republican Donald Trump (or Libertarian Gary Johnson)?\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n43.0\t50.0\t\t1.0\t6.0\tgqr-d-democracy-corps-24934\tGQR (D-Democracy Corps)\t2016-07-13\t2016-07-18\tWell, what if you had to choose between Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n37.0\t40.0\t5.0\t7.0\t10.0\tyougov-economist-24925\tYouGov/Economist\t2016-07-15\t2016-07-17\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1056\t\tInternet\tNonpartisan\tNone\n7.0\t77.0\t0.0\t7.0\t9.0\tyougov-economist-24925\tYouGov/Economist\t2016-07-15\t2016-07-17\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t392\t\tInternet\tNonpartisan\tNone\n83.0\t3.0\t7.0\t2.0\t5.0\tyougov-economist-24925\tYouGov/Economist\t2016-07-15\t2016-07-17\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t286\t\tInternet\tNonpartisan\tNone\n32.0\t33.0\t8.0\t13.0\t15.0\tyougov-economist-24925\tYouGov/Economist\t2016-07-15\t2016-07-17\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t378\t\tInternet\tNonpartisan\tNone\n45.0\t46.0\t\t\t9.0\tnbc-surveymonkey-24929\tNBC/SurveyMonkey\t2016-07-11\t2016-07-17\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t9436\t1.4\tInternet\tNonpartisan\tNone\n40.0\t39.0\t10.0\t5.0\t7.0\tnbc-surveymonkey-24929\tNBC/SurveyMonkey\t2016-07-11\t2016-07-17\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t9436\t1.4\tInternet\tNonpartisan\tNone\n40.0\t43.0\t5.0\t4.0\t10.0\tmonmouth-university-24920\tMonmouth University\t2016-07-14\t2016-07-16\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tRegistered Voters\t805\t3.5\tLive Phone\tNonpartisan\tNone\n5.0\t88.0\t0.0\t2.0\t4.0\tmonmouth-university-24920\tMonmouth University\t2016-07-14\t2016-07-16\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tRegistered Voters - Democrat\t245\t6.3\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t3.0\t1.0\t7.0\tmonmouth-university-24920\tMonmouth University\t2016-07-14\t2016-07-16\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tRegistered Voters - Republican\t226\t6.5\tLive Phone\tNonpartisan\tNone\n40.0\t31.0\t9.0\t6.0\t14.0\tmonmouth-university-24920\tMonmouth University\t2016-07-14\t2016-07-16\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tRegistered Voters - independent\t320\t5.5\tLive Phone\tNonpartisan\tNone\n39.0\t41.0\t\t\t20.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2002\t\tInternet\tNonpartisan\tNone\n8.0\t80.0\t\t\t12.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t739\t\tInternet\tNonpartisan\tNone\n79.0\t7.0\t\t\t13.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t590\t\tInternet\tNonpartisan\tNone\n38.0\t27.0\t\t\t34.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t674\t\tInternet\tNonpartisan\tNone\n35.0\t38.0\t11.0\t\t15.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2002\t2.0\tInternet\tNonpartisan\tNone\n7.0\t77.0\t5.0\t\t10.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t739\t\tInternet\tNonpartisan\tNone\n74.0\t7.0\t8.0\t\t11.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t590\t\tInternet\tNonpartisan\tNone\n32.0\t22.0\t21.0\t\t25.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t674\t\tInternet\tNonpartisan\tNone\n42.0\t49.0\t\t8.0\t1.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters\t872\t3.5\tLive Phone\tNonpartisan\tNone\n7.0\t89.0\t\t4.0\t0.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n93.0\t1.0\t\t5.0\t0.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t48.0\t\t13.0\t1.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t42.0\t13.0\t5.0\t3.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters\t872\t3.5\tLive Phone\tNonpartisan\tNone\n5.0\t83.0\t6.0\t2.0\t4.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t2.0\t6.0\t1.0\t6.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n30.0\t33.0\t21.0\t10.0\t6.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t7.0\t5.0\t3.0\tfranklin-pierce-rkm-boston-herald-24916\tFranklin Pierce/RKM/Boston Herald\t2016-07-12\t2016-07-16\tIf the election for US President were held today, which of the candidates would you vote for?\tLikely Voters\t1007\t3.1\tLive Phone\tNonpartisan\tNone\n7.0\t83.0\t3.0\t4.0\t3.0\tfranklin-pierce-rkm-boston-herald-24916\tFranklin Pierce/RKM/Boston Herald\t2016-07-12\t2016-07-16\tIf the election for US President were held today, which of the candidates would you vote for?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t5.0\t5.0\t4.0\t3.0\tfranklin-pierce-rkm-boston-herald-24916\tFranklin Pierce/RKM/Boston Herald\t2016-07-12\t2016-07-16\tIf the election for US President were held today, which of the candidates would you vote for?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t35.0\t15.0\t4.0\t3.0\tfranklin-pierce-rkm-boston-herald-24916\tFranklin Pierce/RKM/Boston Herald\t2016-07-12\t2016-07-16\tIf the election for US President were held today, which of the candidates would you vote for?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t\t\t13.0\ticitizen-24935\tICITIZEN\t2016-07-12\t2016-07-15\tIf the November 2016 general election for U.S. President were held today and these were the candidates, for whom would you vote?\tRegistered Voters\t1000\t\tInternet\tNonpartisan\tNone\n32.0\t39.0\t9.0\t3.0\t10.0\ticitizen-24935\tICITIZEN\t2016-07-12\t2016-07-15\tAsking a different way, if the November 2016 general election for U.S. President were held today and these were the candidates, for whom would you vote?\tRegistered Voters\t1000\t\tInternet\tNonpartisan\tNone\n43.0\t47.0\t\t8.0\t2.0\tabc-post-24904\tABC/Post\t2016-07-11\t2016-07-14\tIf the presidential election were held today and the candidates were (Hillary Clinton, the Democrat) and Donald Trump, (the Republican), for whom would you vote for?\tRegistered Voters\t816\t4.0\tLive Phone\tNonpartisan\tNone\n38.0\t42.0\t8.0\t6.0\t6.0\tabc-post-24904\tABC/Post\t2016-07-11\t2016-07-14\t\tRegistered Voters\t816\t4.0\tLive Phone\tNonpartisan\tNone\n44.0\t37.0\t\t13.0\t6.0\trasmussen-24884\tRasmussen\t2016-07-12\t2016-07-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump or Democrat Hillary Clinton?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n41.0\t46.0\t\t9.0\t4.0\tnbc-wsj-24903\tNBC/WSJ\t2016-07-09\t2016-07-13\tAnd, if the election for president were held today, and Donald Trump were the Republican candidate, and Hillary Clinton were the Democratic candidate for whom would you vote?\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n35.0\t41.0\t11.0\t8.0\t5.0\tnbc-wsj-24903\tNBC/WSJ\t2016-07-09\t2016-07-13\tAnd, if the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n40.0\t40.0\t\t4.0\t15.0\tcbs-times-24883\tCBS/Times\t2016-07-08\t2016-07-12\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump?\tRegistered Voters\t1358\t\tLive Phone\tNonpartisan\tNone\n36.0\t36.0\t12.0\t2.0\t14.0\tcbs-times-24883\tCBS/Times\t2016-07-08\t2016-07-12\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters\t1358\t\tLive Phone\tNonpartisan\tNone\n37.0\t40.0\t5.0\t6.0\t13.0\tyougov-economist-24874\tYouGov/Economist\t2016-07-09\t2016-07-11\t\tRegistered Voters\t1049\t\tInternet\tNonpartisan\tNone\n6.0\t81.0\t1.0\t5.0\t7.0\tyougov-economist-24874\tYouGov/Economist\t2016-07-09\t2016-07-11\t\tRegistered Voters - Democrat\t428\t\tInternet\tNonpartisan\tNone\n81.0\t2.0\t4.0\t1.0\t11.0\tyougov-economist-24874\tYouGov/Economist\t2016-07-09\t2016-07-11\t\tRegistered Voters - Republican\t270\t\tInternet\tNonpartisan\tNone\n32.0\t30.0\t10.0\t10.0\t18.0\tyougov-economist-24874\tYouGov/Economist\t2016-07-09\t2016-07-11\t\tRegistered Voters - independent\t351\t\tInternet\tNonpartisan\tNone\n36.0\t40.0\t6.0\t2.0\t16.0\tap-gfk-web-24888\tAP-GfK (web)\t2016-07-07\t2016-07-11\tIf the 2016 presidential election were held today, for whom would you vote?\tRegistered Voters\t837\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t\t\t18.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n11.0\t80.0\t\t\t9.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - Democrat\t730\t\tInternet\tNonpartisan\tNone\n79.0\t9.0\t\t\t12.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - Republican\t613\t\tInternet\tNonpartisan\tNone\n38.0\t31.0\t\t\t32.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - independent\t658\t\tInternet\tNonpartisan\tNone\n37.0\t39.0\t12.0\t\t13.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n8.0\t77.0\t8.0\t\t7.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - Democrat\t730\t\tInternet\tNonpartisan\tNone\n75.0\t8.0\t8.0\t\t9.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - Republican\t613\t\tInternet\tNonpartisan\tNone\n32.0\t25.0\t21.0\t\t22.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - independent\t658\t\tInternet\tNonpartisan\tNone\n44.0\t47.0\t\t\t10.0\tnbc-surveymonkey-24859\tNBC/SurveyMonkey\t2016-07-04\t2016-07-10\t\tRegistered Voters\t7869\t1.4\tInternet\tNonpartisan\tNone\n38.0\t40.0\t11.0\t6.0\t6.0\tnbc-surveymonkey-24859\tNBC/SurveyMonkey\t2016-07-04\t2016-07-10\t\tRegistered Voters\t7869\t1.4\tInternet\tNonpartisan\tNone\n29.0\t41.0\t9.0\t2.0\t18.0\traba-research-24866\tRABA Research\t2016-07-07\t2016-07-09\t\tLikely Voters\t781\t3.5\tInternet\tNonpartisan\tNone\n39.0\t42.0\t\t14.0\t4.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t1053\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t83.0\t\t6.0\t3.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t6.0\t\t6.0\t3.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n33.0\t36.0\t\t25.0\t6.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n35.0\t40.0\t10.0\t7.0\t9.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t1053\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t80.0\t5.0\t4.0\t5.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n78.0\t7.0\t9.0\t1.0\t5.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n27.0\t29.0\t17.0\t13.0\t14.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n33.0\t44.0\t\t12.0\t11.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters\t1345\t\tInternet\tNonpartisan\tNone\n6.0\t78.0\t\t10.0\t6.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n70.0\t11.0\t\t10.0\t9.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t24.0\t\t29.0\t23.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n33.0\t42.0\t6.0\t9.0\t11.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters\t1345\t\tInternet\tNonpartisan\tNone\n6.0\t74.0\t3.0\t9.0\t8.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n72.0\t10.0\t5.0\t5.0\t8.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n20.0\t22.0\t22.0\t13.0\t24.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n40.0\t38.0\t9.0\t8.0\t4.0\trasmussen-24836\tRasmussen\t2016-07-05\t2016-07-05\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n42.0\t40.0\t\t13.0\t5.0\trasmussen-24830\tRasmussen\t2016-07-05\t2016-07-05\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n36.0\t40.0\t9.0\t\t14.0\tpenn-schoen-berland-25050\tPenn Schoen Berland\t2016-07-01\t2016-07-05\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters\t1000\t3.0\tInternet\tNonpartisan\tNone\n6.0\t82.0\t2.0\t\t10.0\tpenn-schoen-berland-25050\tPenn Schoen Berland\t2016-07-01\t2016-07-05\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n75.0\t7.0\t6.0\t\t12.0\tpenn-schoen-berland-25050\tPenn Schoen Berland\t2016-07-01\t2016-07-05\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n33.0\t30.0\t17.0\t\t20.0\tpenn-schoen-berland-25050\tPenn Schoen Berland\t2016-07-01\t2016-07-05\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t4.0\t7.0\t11.0\tyougov-economist-24823\tYouGov/Economist\t2016-07-02\t2016-07-04\t\tRegistered Voters\t1004\t\tInternet\tNonpartisan\tNone\n11.0\t77.0\t1.0\t4.0\t7.0\tyougov-economist-24823\tYouGov/Economist\t2016-07-02\t2016-07-04\t\tRegistered Voters - Democrat\t392\t\tInternet\tNonpartisan\tNone\n77.0\t6.0\t4.0\t2.0\t11.0\tyougov-economist-24823\tYouGov/Economist\t2016-07-02\t2016-07-04\t\tRegistered Voters - Republican\t283\t\tInternet\tNonpartisan\tNone\n32.0\t34.0\t6.0\t12.0\t15.0\tyougov-economist-24823\tYouGov/Economist\t2016-07-02\t2016-07-04\t\tRegistered Voters - independent\t329\t\tInternet\tNonpartisan\tNone\n40.0\t41.0\t\t\t19.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n13.0\t75.0\t\t\t12.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - Democrat\t750\t\tInternet\tNonpartisan\tNone\n79.0\t10.0\t\t\t11.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - Republican\t619\t\tInternet\tNonpartisan\tNone\n33.0\t32.0\t\t\t35.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - independent\t632\t\tInternet\tNonpartisan\tNone\n37.0\t38.0\t11.0\t\t15.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n11.0\t72.0\t7.0\t\t10.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - Democrat\t750\t\tInternet\tNonpartisan\tNone\n76.0\t9.0\t7.0\t\t8.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - Republican\t619\t\tInternet\tNonpartisan\tNone\n28.0\t26.0\t19.0\t\t26.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - independent\t632\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t\t\t9.0\tnbc-surveymonkey-24814\tNBC/SurveyMonkey\t2016-06-27\t2016-07-03\t\tRegistered Voters\t10072\t1.3\tInternet\tNonpartisan\tNone\n38.0\t41.0\t9.0\t5.0\t6.0\tnbc-surveymonkey-24814\tNBC/SurveyMonkey\t2016-06-27\t2016-07-03\t\tRegistered Voters\t10072\t1.3\tInternet\tNonpartisan\tNone\n43.0\t39.0\t\t12.0\t5.0\trasmussen-24800\tRasmussen\t2016-06-28\t2016-06-29\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n40.0\t46.0\t\t\t14.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t86.0\t\t\t6.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - Democrat\t346\t\tLive Phone\tNonpartisan\tNone\n82.0\t9.0\t\t\t9.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - Republican\t301\t\tLive Phone\tNonpartisan\tNone\n38.0\t37.0\t\t\t25.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - independent\t353\t\tLive Phone\tNonpartisan\tNone\n35.0\t39.0\t8.0\t3.0\t15.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t81.0\t3.0\t3.0\t9.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - Democrat\t346\t\tLive Phone\tNonpartisan\tNone\n74.0\t4.0\t4.0\t0.0\t17.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - Republican\t301\t\tLive Phone\tNonpartisan\tNone\n30.0\t28.0\t16.0\t5.0\t22.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - independent\t353\t\tLive Phone\tNonpartisan\tNone\n32.0\t42.0\t\t14.0\t12.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters\t1247\t\tInternet\tNonpartisan\tNone\n7.0\t75.0\t\t12.0\t5.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n70.0\t7.0\t\t13.0\t11.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t23.0\t\t20.0\t23.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n31.0\t42.0\t5.0\t10.0\t11.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters\t1247\t\tInternet\tNonpartisan\tNone\n7.0\t75.0\t2.0\t11.0\t5.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n69.0\t9.0\t6.0\t5.0\t10.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n32.0\t18.0\t16.0\t14.0\t20.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n40.0\t44.0\t\t9.0\t7.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters\t837\t\tLive Phone\tNonpartisan\tNone\n7.0\t85.0\t\t4.0\t4.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t6.0\t\t3.0\t6.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n35.0\t37.0\t\t17.0\t10.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t37.0\t9.0\t8.0\t10.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters\t837\t\tLive Phone\tNonpartisan\tNone\n8.0\t79.0\t6.0\t3.0\t4.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n80.0\t2.0\t4.0\t4.0\t10.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n28.0\t27.0\t16.0\t16.0\t13.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tgravis-marketing-oann-24815\tGravis Marketing/OANN\t2016-06-27\t2016-06-28\t\tRegistered Voters\t2162\t2.1\tAutomated Phone\tSponsor\tRep\n41.0\t45.0\t5.0\t2.0\t7.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t853\t3.0\tIVR/Online\tPollster\tDem\n10.0\t82.0\t1.0\t2.0\t5.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n83.0\t7.0\t5.0\t0.0\t6.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n35.0\t39.0\t10.0\t4.0\t12.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n44.0\t48.0\t\t\t7.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t853\t3.0\tIVR/Online\tPollster\tDem\n12.0\t86.0\t\t\t2.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n85.0\t8.0\t\t\t7.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n39.0\t45.0\t\t\t16.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n38.0\t44.0\t\t7.0\t10.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters\t1017\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t83.0\t\t4.0\t8.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n74.0\t10.0\t\t8.0\t8.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t31.0\t\t13.0\t16.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t41.0\t10.0\t4.0\t10.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters\t1017\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t79.0\t5.0\t3.0\t8.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n71.0\t7.0\t13.0\t3.0\t6.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t29.0\t14.0\t6.0\t14.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t48.0\t8.0\t3.0\t4.0\tgqr-d-democracy-corps-24835\tGQR (D-Democracy Corps)\t2016-06-23\t2016-06-28\t\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n35.0\t40.0\t8.0\t7.0\t11.0\tyougov-economist-24795\tYouGov/Economist\t2016-06-24\t2016-06-27\t\tRegistered Voters\t1069\t\tInternet\tNonpartisan\tNone\n4.0\t80.0\t3.0\t4.0\t8.0\tyougov-economist-24795\tYouGov/Economist\t2016-06-24\t2016-06-27\t\tRegistered Voters - Democrat\t412\t\tInternet\tNonpartisan\tNone\n75.0\t3.0\t7.0\t3.0\t12.0\tyougov-economist-24795\tYouGov/Economist\t2016-06-24\t2016-06-27\t\tRegistered Voters - Republican\t345\t\tInternet\tNonpartisan\tNone\n34.0\t26.0\t14.0\t12.0\t14.0\tyougov-economist-24795\tYouGov/Economist\t2016-06-24\t2016-06-27\t\tRegistered Voters - independent\t312\t\tInternet\tNonpartisan\tNone\n39.0\t44.0\t\t\t18.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters\t4001\t2.0\tInternet\tNonpartisan\tNone\n10.0\t80.0\t\t\t10.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - Democrat\t1480\t\tInternet\tNonpartisan\tNone\n79.0\t10.0\t\t\t11.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - Republican\t1220\t\tInternet\tNonpartisan\tNone\n35.0\t33.0\t\t\t32.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - independent\t1301\t\tInternet\tNonpartisan\tNone\n36.0\t39.0\t11.0\t\t13.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters\t4001\t2.0\tInternet\tNonpartisan\tNone\n9.0\t77.0\t6.0\t\t8.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - Democrat\t1480\t\tInternet\tNonpartisan\tNone\n76.0\t8.0\t8.0\t\t8.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - Republican\t1220\t\tInternet\tNonpartisan\tNone\n30.0\t25.0\t20.0\t\t24.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - independent\t1301\t\tInternet\tNonpartisan\tNone\n40.0\t42.0\t\t6.0\t12.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters\t1610\t2.4\tLive Phone\tNonpartisan\tNone\n3.0\t89.0\t\t3.0\t6.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t6.0\t\t3.0\t8.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t34.0\t\t10.0\t20.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t39.0\t8.0\t5.0\t10.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters\t1610\t2.4\tLive Phone\tNonpartisan\tNone\n3.0\t83.0\t3.0\t3.0\t8.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t5.0\t5.0\t0.0\t9.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t32.0\t14.0\t9.0\t14.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t49.0\t\t\t10.0\tnbc-surveymonkey-24791\tNBC/SurveyMonkey\t2016-06-20\t2016-06-26\t\tRegistered Voters\t5818\t1.8\tInternet\tNonpartisan\tNone\n36.0\t42.0\t9.0\t5.0\t7.0\tnbc-surveymonkey-24791\tNBC/SurveyMonkey\t2016-06-20\t2016-06-26\t\tRegistered Voters\t5818\t1.8\tInternet\tNonpartisan\tNone\n36.0\t45.0\t11.0\t4.0\t3.0\tpew-24834\tPew\t2016-06-15\t2016-06-26\t\tRegistered Voters\t1655\t\tLive Phone\tNonpartisan\tNone\n42.0\t51.0\t\t\t7.0\tpew-24834\tPew\t2016-06-15\t2016-06-26\t\tRegistered Voters\t1655\t\tLive Phone\tNonpartisan\tNone\n39.0\t51.0\t\t8.0\t2.0\tabc-post-24764\tABC/Post\t2016-06-20\t2016-06-23\t\tRegistered Voters\t836\t4.0\tLive Phone\tNonpartisan\tNone\n34.0\t47.0\t7.0\t5.0\t11.0\tabc-post-24764\tABC/Post\t2016-06-20\t2016-06-23\t\tRegistered Voters\t836\t4.0\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t\t11.0\t2.0\tnbc-wsj-24765\tNBC/WSJ\t2016-06-19\t2016-06-23\t\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n38.0\t39.0\t10.0\t7.0\t6.0\tnbc-wsj-24765\tNBC/WSJ\t2016-06-19\t2016-06-23\t\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n34.0\t44.0\t\t13.0\t10.0\tipsos-reuters-24752\tIpsos/Reuters\t2016-06-18\t2016-06-22\t\tRegistered Voters\t1339\t\tInternet\tNonpartisan\tNone\n10.0\t72.0\t\t10.0\t8.0\tipsos-reuters-24752\tIpsos/Reuters\t2016-06-18\t2016-06-22\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t9.0\t\t10.0\t5.0\tipsos-reuters-24752\tIpsos/Reuters\t2016-06-18\t2016-06-22\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n32.0\t27.0\t\t27.0\t14.0\tipsos-reuters-24752\tIpsos/Reuters\t2016-06-18\t2016-06-22\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t44.0\t\t11.0\t6.0\trasmussen-24754\tRasmussen\t2016-06-20\t2016-06-21\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n39.0\t43.0\t4.0\t7.0\t7.0\tyougov-economist-24739\tYouGov/Economist\t2016-06-18\t2016-06-20\t\tRegistered Voters\t1011\t4.2\tInternet\tNonpartisan\tNone\n6.0\t86.0\t0.0\t4.0\t4.0\tyougov-economist-24739\tYouGov/Economist\t2016-06-18\t2016-06-20\t\tRegistered Voters - Democrat\t425\t\tInternet\tNonpartisan\tNone\n80.0\t4.0\t4.0\t5.0\t7.0\tyougov-economist-24739\tYouGov/Economist\t2016-06-18\t2016-06-20\t\tRegistered Voters - Republican\t247\t\tInternet\tNonpartisan\tNone\n41.0\t32.0\t7.0\t11.0\t9.0\tyougov-economist-24739\tYouGov/Economist\t2016-06-18\t2016-06-20\t\tRegistered Voters - independent\t339\t\tInternet\tNonpartisan\tNone\n41.0\t50.0\t\t3.0\t6.0\targ-24728\tARG\t2016-06-17\t2016-06-20\t\tRegistered Voters\t987\t3.2\tLive Phone\tNonpartisan\tNone\n5.0\t89.0\t\t1.0\t5.0\targ-24728\tARG\t2016-06-17\t2016-06-20\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n79.0\t9.0\t\t3.0\t9.0\targ-24728\tARG\t2016-06-17\t2016-06-20\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t45.0\t\t4.0\t6.0\targ-24728\tARG\t2016-06-17\t2016-06-20\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t42.0\t\t\t17.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters\t3891\t2.0\tInternet\tNonpartisan\tNone\n10.0\t80.0\t\t\t10.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - Democrat\t1451\t\tInternet\tNonpartisan\tNone\n80.0\t9.0\t\t\t11.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - Republican\t1175\t\tInternet\tNonpartisan\tNone\n39.0\t30.0\t\t\t31.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - independent\t1265\t\tInternet\tNonpartisan\tNone\n38.0\t38.0\t10.0\t\t14.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters\t3891\t2.0\tInternet\tNonpartisan\tNone\n9.0\t76.0\t5.0\t\t10.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - Democrat\t1451\t\tInternet\tNonpartisan\tNone\n77.0\t7.0\t8.0\t\t8.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - Republican\t1175\t\tInternet\tNonpartisan\tNone\n34.0\t24.0\t18.0\t\t25.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - independent\t1265\t\tInternet\tNonpartisan\tNone\n42.0\t47.0\t\t10.0\t1.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters\t891\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t90.0\t\t5.0\t0.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t6.0\t\t8.0\t0.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t42.0\t\t15.0\t1.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t42.0\t9.0\t8.0\t4.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters\t891\t3.5\tLive Phone\tNonpartisan\tNone\n5.0\t87.0\t1.0\t5.0\t1.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t4.0\t6.0\t3.0\t4.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t32.0\t16.0\t13.0\t5.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t47.0\t\t5.0\t8.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters\t803\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t87.0\t\t2.0\t5.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t8.0\t\t4.0\t4.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t42.0\t\t9.0\t11.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t42.0\t9.0\t6.0\t5.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters\t803\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t85.0\t3.0\t2.0\t4.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n79.0\t7.0\t6.0\t5.0\t3.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t31.0\t18.0\t11.0\t8.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t48.0\t\t\t10.0\tnbc-surveymonkey-24724\tNBC/SurveyMonkey\t2016-06-13\t2016-06-19\t\tRegistered Voters\t16135\t1.1\tInternet\tNonpartisan\tNone\n38.0\t42.0\t9.0\t5.0\t7.0\tnbc-surveymonkey-24724\tNBC/SurveyMonkey\t2016-06-13\t2016-06-19\t\tRegistered Voters\t16135\t1.1\tInternet\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tgravis-marketing-oann-24702\tGravis Marketing/OANN\t2016-06-16\t2016-06-16\t\tRegistered Voters\t2197\t2.1\tAutomated Phone\tSponsor\tRep\n39.0\t44.0\t\t14.0\t4.0\trasmussen-24690\tRasmussen\t2016-06-14\t2016-06-15\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n32.0\t41.0\t\t15.0\t11.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters\t1323\t\tInternet\tNonpartisan\tNone\n8.0\t75.0\t\t11.0\t5.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n68.0\t6.0\t\t14.0\t12.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n25.0\t27.0\t\t30.0\t19.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n29.0\t39.0\t6.0\t12.0\t13.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters\t1323\t\tInternet\tNonpartisan\tNone\n6.0\t72.0\t3.0\t13.0\t7.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n64.0\t5.0\t8.0\t8.0\t14.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t24.0\t12.0\t20.0\t21.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n35.0\t40.0\t\t16.0\t9.0\tcnbc-24718\tCNBC\t2016-06-11\t2016-06-13\t\tRegistered Voters\t801\t3.5\tLive Phone\tNonpartisan\tNone\n37.0\t49.0\t9.0\t\t5.0\tbloomberg-selzer-24677\tBloomberg/Selzer\t2016-06-10\t2016-06-13\t\tLikely Voters\t750\t3.6\tLive Phone\tNonpartisan\tNone\n36.0\t54.0\t\t\t9.0\tbloomberg-selzer-24677\tBloomberg/Selzer\t2016-06-10\t2016-06-13\t\tLikely Voters\t750\t3.6\tLive Phone\tNonpartisan\tNone\n37.0\t43.0\t\t5.0\t15.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters\t1048\t4.0\tLive Phone\tNonpartisan\tNone\n6.0\t81.0\t\t3.0\t10.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - Democrat\t369\t\tLive Phone\tNonpartisan\tNone\n73.0\t6.0\t\t4.0\t16.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n37.0\t35.0\t\t8.0\t21.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - independent\t374\t\tLive Phone\tNonpartisan\tNone\n32.0\t39.0\t11.0\t4.0\t15.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters\t1048\t4.0\tLive Phone\tNonpartisan\tNone\n6.0\t75.0\t5.0\t3.0\t10.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - Democrat\t369\t\tLive Phone\tNonpartisan\tNone\n67.0\t6.0\t9.0\t4.0\t14.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n29.0\t30.0\t17.0\t5.0\t19.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - independent\t374\t\tLive Phone\tNonpartisan\tNone\n42.0\t49.0\t\t\t9.0\tnbc-surveymonkey-24667\tNBC/SurveyMonkey\t2016-06-06\t2016-06-12\t\tRegistered Voters\t9355\t1.4\tInternet\tNonpartisan\tNone\n38.0\t42.0\t9.0\t5.0\t6.0\tnbc-surveymonkey-24667\tNBC/SurveyMonkey\t2016-06-06\t2016-06-12\t\tRegistered Voters\t9355\t1.4\tInternet\tNonpartisan\tNone\n37.0\t42.0\t\t\t21.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters\t1362\t3.0\tInternet\tNonpartisan\tNone\n8.0\t78.0\t\t\t14.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - Democrat\t477\t\tInternet\tNonpartisan\tNone\n74.0\t13.0\t\t\t13.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - Republican\t433\t\tInternet\tNonpartisan\tNone\n33.0\t32.0\t\t\t35.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - independent\t452\t\tInternet\tNonpartisan\tNone\n33.0\t39.0\t10.0\t\t19.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters\t1362\t3.0\tInternet\tNonpartisan\tNone\n6.0\t75.0\t6.0\t\t12.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - Democrat\t477\t\tInternet\tNonpartisan\tNone\n69.0\t10.0\t7.0\t\t13.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - Republican\t433\t\tInternet\tNonpartisan\tNone\n27.0\t28.0\t15.0\t\t30.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - independent\t452\t\tInternet\tNonpartisan\tNone\n39.0\t42.0\t\t7.0\t12.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters\t1004\t3.0\tLive Phone\tNonpartisan\tNone\n8.0\t79.0\t\t5.0\t8.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n79.0\t6.0\t\t5.0\t10.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n35.0\t30.0\t\t17.0\t18.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t39.0\t12.0\t3.0\t11.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters\t1004\t3.0\tLive Phone\tNonpartisan\tNone\n8.0\t75.0\t7.0\t2.0\t9.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n72.0\t6.0\t11.0\t2.0\t9.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t22.0\t23.0\t7.0\t17.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t42.0\t\t12.0\t11.0\tipsos-reuters-24644\tIpsos/Reuters\t2016-06-04\t2016-06-08\t\tRegistered Voters\t1440\t\tInternet\tNonpartisan\tNone\n8.0\t74.0\t\t8.0\t10.0\tipsos-reuters-24644\tIpsos/Reuters\t2016-06-04\t2016-06-08\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n71.0\t8.0\t\t13.0\t8.0\tipsos-reuters-24644\tIpsos/Reuters\t2016-06-04\t2016-06-08\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n33.0\t29.0\t\t21.0\t17.0\tipsos-reuters-24644\tIpsos/Reuters\t2016-06-04\t2016-06-08\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t\t15.0\t5.0\trasmussen-24642\tRasmussen\t2016-06-06\t2016-06-07\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n41.0\t44.0\t\t6.0\t9.0\tyougov-economist-24633\tYouGov/Economist\t2016-06-02\t2016-06-05\t\tRegistered Voters\t1636\t3.6\tInternet\tNonpartisan\tNone\n9.0\t84.0\t\t3.0\t5.0\tyougov-economist-24633\tYouGov/Economist\t2016-06-02\t2016-06-05\t\tRegistered Voters - Democrat\t632\t\tInternet\tNonpartisan\tNone\n80.0\t6.0\t\t5.0\t9.0\tyougov-economist-24633\tYouGov/Economist\t2016-06-02\t2016-06-05\t\tRegistered Voters - Republican\t470\t\tInternet\tNonpartisan\tNone\n37.0\t38.0\t\t12.0\t13.0\tyougov-economist-24633\tYouGov/Economist\t2016-06-02\t2016-06-05\t\tRegistered Voters - independent\t534\t\tInternet\tNonpartisan\tNone\n40.0\t44.0\t\t\t16.0\tmorning-consult-24629\tMorning Consult\t2016-06-01\t2016-06-05\t\tRegistered Voters\t4002\t2.0\tInternet\tNonpartisan\tNone\n10.0\t79.0\t\t\t12.0\tmorning-consult-24629\tMorning Consult\t2016-06-01\t2016-06-05\t\tRegistered Voters - Democrat\t1491\t\tInternet\tNonpartisan\tNone\n80.0\t10.0\t\t\t10.0\tmorning-consult-24629\tMorning Consult\t2016-06-01\t2016-06-05\t\tRegistered Voters - Republican\t1199\t\tInternet\tNonpartisan\tNone\n38.0\t34.0\t\t\t28.0\tmorning-consult-24629\tMorning Consult\t2016-06-01\t2016-06-05\t\tRegistered Voters - independent\t1312\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t\t9.0\t7.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters\t828\t\tLive Phone\tNonpartisan\tNone\n8.0\t84.0\t\t3.0\t5.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - Democrat\t291\t\tLive Phone\tNonpartisan\tNone\n74.0\t12.0\t\t8.0\t6.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - Republican\t259\t\tLive Phone\tNonpartisan\tNone\n41.0\t35.0\t\t16.0\t8.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - independent\t271\t\tLive Phone\tNonpartisan\tNone\n36.0\t37.0\t9.0\t8.0\t10.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters\t828\t\tLive Phone\tNonpartisan\tNone\n8.0\t79.0\t6.0\t3.0\t4.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - Democrat\t394\t\tLive Phone\tNonpartisan\tNone\n80.0\t2.0\t4.0\t4.0\t10.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n28.0\t27.0\t16.0\t16.0\t13.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t\t9.0\tnbc-surveymonkey-24631\tNBC/SurveyMonkey\t2016-05-30\t2016-06-05\t\tRegistered Voters\t9240\t1.4\tInternet\tNonpartisan\tNone\n38.0\t39.0\t\t18.0\t5.0\trasmussen-24597\tRasmussen\t2016-05-31\t2016-06-01\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n34.0\t43.0\t\t13.0\t10.0\tipsos-reuters-24596\tIpsos/Reuters\t2016-05-28\t2016-06-01\t\tRegistered Voters\t1332\t\tInternet\tNonpartisan\tNone\n9.0\t72.0\t\t11.0\t8.0\tipsos-reuters-24596\tIpsos/Reuters\t2016-05-28\t2016-06-01\t\tRegistered Voters - Democrat\t655\t\tInternet\tNonpartisan\tNone\n73.0\t9.0\t\t11.0\t6.0\tipsos-reuters-24596\tIpsos/Reuters\t2016-05-28\t2016-06-01\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t19.0\t\t22.0\t25.0\tipsos-reuters-24596\tIpsos/Reuters\t2016-05-28\t2016-06-01\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t42.0\t\t\t18.0\tmorning-consult-24589\tMorning Consult\t2016-05-24\t2016-05-30\t\tRegistered Voters\t4002\t2.0\tInternet\tNonpartisan\tNone\n12.0\t77.0\t\t\t11.0\tmorning-consult-24589\tMorning Consult\t2016-05-24\t2016-05-30\t\tRegistered Voters - Democrat\t1507\t\tInternet\tNonpartisan\tNone\n79.0\t10.0\t\t\t11.0\tmorning-consult-24589\tMorning Consult\t2016-05-24\t2016-05-30\t\tRegistered Voters - Republican\t1147\t\tInternet\tNonpartisan\tNone\n36.0\t31.0\t\t\t33.0\tmorning-consult-24589\tMorning Consult\t2016-05-24\t2016-05-30\t\tRegistered Voters - independent\t1348\t\tInternet\tNonpartisan\tNone\n41.0\t45.0\t\t3.0\t11.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters\t1561\t2.5\tLive Phone\tNonpartisan\tNone\n6.0\t90.0\t\t1.0\t4.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t4.0\t\t3.0\t7.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t37.0\t\t6.0\t17.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t40.0\t5.0\t4.0\t12.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters\t1561\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t85.0\t2.0\t4.0\t5.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n83.0\t4.0\t4.0\t2.0\t8.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t29.0\t10.0\t8.0\t16.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t47.0\t\t\t8.0\tnbc-surveymonkey-24575\tNBC/SurveyMonkey\t2016-05-23\t2016-05-29\t\tRegistered Voters\t12969\t1.2\tInternet\tNonpartisan\tNone\n36.0\t41.0\t\t13.0\t10.0\tipsos-reuters-24559\tIpsos/Reuters\t2016-05-21\t2016-05-25\t\tRegistered Voters\t1271\t\tInternet\tNonpartisan\tNone\n12.0\t70.0\t\t10.0\t8.0\tipsos-reuters-24559\tIpsos/Reuters\t2016-05-21\t2016-05-25\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n70.0\t9.0\t\t11.0\t10.0\tipsos-reuters-24559\tIpsos/Reuters\t2016-05-21\t2016-05-25\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n31.0\t30.0\t\t27.0\t13.0\tipsos-reuters-24559\tIpsos/Reuters\t2016-05-21\t2016-05-25\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t40.0\t\t14.0\t7.0\trasmussen-24560\tRasmussen\t2016-05-23\t2016-05-24\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n41.0\t42.0\t\t7.0\t10.0\tyougov-economist-24557\tYouGov/Economist\t2016-05-20\t2016-05-23\t\tRegistered Voters\t1622\t3.5\tInternet\tNonpartisan\tNone\n8.0\t82.0\t\t3.0\t7.0\tyougov-economist-24557\tYouGov/Economist\t2016-05-20\t2016-05-23\t\tRegistered Voters - Democrat\t642\t\tInternet\tNonpartisan\tNone\n83.0\t3.0\t\t4.0\t10.0\tyougov-economist-24557\tYouGov/Economist\t2016-05-20\t2016-05-23\t\tRegistered Voters - Republican\t451\t\tInternet\tNonpartisan\tNone\n40.0\t36.0\t\t14.0\t12.0\tyougov-economist-24557\tYouGov/Economist\t2016-05-20\t2016-05-23\t\tRegistered Voters - independent\t529\t\tInternet\tNonpartisan\tNone\n40.0\t42.0\t\t\t18.0\tmorning-consult-24544\tMorning Consult\t2016-05-19\t2016-05-23\t\tRegistered Voters\t2001\t1.0\tInternet\tNonpartisan\tNone\n13.0\t75.0\t\t\t12.0\tmorning-consult-24544\tMorning Consult\t2016-05-19\t2016-05-23\t\tRegistered Voters - Democrat\t830\t\tInternet\tNonpartisan\tNone\n78.0\t10.0\t\t\t12.0\tmorning-consult-24544\tMorning Consult\t2016-05-19\t2016-05-23\t\tRegistered Voters - Republican\t523\t\tInternet\tNonpartisan\tNone\n44.0\t26.0\t\t\t30.0\tmorning-consult-24544\tMorning Consult\t2016-05-19\t2016-05-23\t\tRegistered Voters - independent\t648\t\tInternet\tNonpartisan\tNone\n43.0\t47.0\t\t\t9.0\tnbc-surveymonkey-24539\tNBC/SurveyMonkey\t2016-05-16\t2016-05-22\t\tRegistered Voters\t14513\t1.0\tInternet\tNonpartisan\tNone\n46.0\t46.0\t\t2.0\t6.0\targ-24535\tARG\t2016-05-17\t2016-05-20\t\tRegistered Voters\t980\t3.2\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t\t\t14.0\tschoen-d-24527\tSchoen (D)\t2016-05-16\t2016-05-19\t\tLikely Voters\t1000\t3.0\tLive Phone\tPollster\tDem\n46.0\t44.0\t\t7.0\t3.0\tabc-post-24526\tABC/Post\t2016-05-16\t2016-05-19\t\tRegistered Voters\t829\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t46.0\t\t9.0\t2.0\tnbc-wsj-24525\tNBC/WSJ\t2016-05-15\t2016-05-19\t\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n42.0\t37.0\t\t13.0\t7.0\trasmussen-24514\tRasmussen\t2016-05-17\t2016-05-18\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n36.0\t41.0\t\t14.0\t9.0\tipsos-reuters-24517\tIpsos/Reuters\t2016-05-14\t2016-05-18\t\tRegistered Voters\t1397\t\tInternet\tNonpartisan\tNone\n10.0\t73.0\t\t10.0\t7.0\tipsos-reuters-24517\tIpsos/Reuters\t2016-05-14\t2016-05-18\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n72.0\t6.0\t\t14.0\t7.0\tipsos-reuters-24517\tIpsos/Reuters\t2016-05-14\t2016-05-18\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n41.0\t22.0\t\t21.0\t14.0\tipsos-reuters-24517\tIpsos/Reuters\t2016-05-14\t2016-05-18\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n45.0\t42.0\t\t3.0\t9.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters\t1021\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t83.0\t\t3.0\t8.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n82.0\t7.0\t\t4.0\t8.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t30.0\t\t4.0\t20.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t39.0\t10.0\t2.0\t4.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters\t1021\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t78.0\t8.0\t2.0\t7.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n77.0\t7.0\t8.0\t2.0\t6.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t24.0\t18.0\t2.0\t16.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t47.0\t\t2.0\t10.0\tcbs-times-24521\tCBS/Times\t2016-05-13\t2016-05-17\t\tRegistered Voters\t1109\t\tLive Phone\tNonpartisan\tNone\n5.0\t88.0\t\t1.0\t5.0\tcbs-times-24521\tCBS/Times\t2016-05-13\t2016-05-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t6.0\t\t2.0\t7.0\tcbs-times-24521\tCBS/Times\t2016-05-13\t2016-05-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t40.0\t\t3.0\t17.0\tcbs-times-24521\tCBS/Times\t2016-05-13\t2016-05-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t46.0\t\t\t12.0\tmclaughlin-r-24510\tMcLaughlin (R)\t2016-05-11\t2016-05-16\t\tLikely Voters\t1000\t3.1\tInternet\tPollster\tRep\n12.0\t81.0\t\t\t8.0\tmclaughlin-r-24510\tMcLaughlin (R)\t2016-05-11\t2016-05-16\t\tLikely Voters - Democrat\t\t\tInternet\tPollster\tRep\n83.0\t11.0\t\t\t7.0\tmclaughlin-r-24510\tMcLaughlin (R)\t2016-05-11\t2016-05-16\t\tLikely Voters - Republican\t\t\tInternet\tPollster\tRep\n34.0\t41.0\t\t\t25.0\tmclaughlin-r-24510\tMcLaughlin (R)\t2016-05-11\t2016-05-16\t\tLikely Voters - independent\t\t\tInternet\tPollster\tRep\n40.0\t42.0\t\t\t17.0\tmorning-consult-24498\tMorning Consult\t2016-05-11\t2016-05-15\t\tRegistered Voters\t3971\t2.0\tInternet\tNonpartisan\tNone\n13.0\t76.0\t\t\t11.0\tmorning-consult-24498\tMorning Consult\t2016-05-11\t2016-05-15\t\tRegistered Voters - Democrat\t1519\t\tInternet\tNonpartisan\tNone\n76.0\t11.0\t\t\t13.0\tmorning-consult-24498\tMorning Consult\t2016-05-11\t2016-05-15\t\tRegistered Voters - Republican\t1217\t\tInternet\tNonpartisan\tNone\n39.0\t32.0\t\t\t29.0\tmorning-consult-24498\tMorning Consult\t2016-05-11\t2016-05-15\t\tRegistered Voters - independent\t1235\t\tInternet\tNonpartisan\tNone\n45.0\t48.0\t\t\t7.0\tnbc-surveymonkey-24497\tNBC/SurveyMonkey\t2016-05-09\t2016-05-15\t\tRegistered Voters\t12507\t1.2\tInternet\tNonpartisan\tNone\n37.0\t41.0\t\t14.0\t8.0\tipsos-reuters-24487\tIpsos/Reuters\t2016-05-07\t2016-05-11\t\tRegistered Voters\t1397\t\tInternet\tNonpartisan\tNone\n11.0\t75.0\t\t10.0\t4.0\tipsos-reuters-24487\tIpsos/Reuters\t2016-05-07\t2016-05-11\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n69.0\t8.0\t\t15.0\t9.0\tipsos-reuters-24487\tIpsos/Reuters\t2016-05-07\t2016-05-11\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n42.0\t19.0\t\t28.0\t10.0\tipsos-reuters-24487\tIpsos/Reuters\t2016-05-07\t2016-05-11\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n49.0\t51.0\t\t\t\tgravis-marketing-oann-24484\tGravis Marketing/OANN\t2016-05-10\t2016-05-10\t\tRegistered Voters\t1574\t2.5\tAutomated Phone\tSponsor\tRep\n40.0\t42.0\t\t6.0\t12.0\tyougov-economist-24478\tYouGov/Economist\t2016-05-06\t2016-05-09\t\tRegistered Voters\t1612\t\tInternet\tNonpartisan\tNone\n5.0\t89.0\t\t3.0\t3.0\tyougov-economist-24478\tYouGov/Economist\t2016-05-06\t2016-05-09\t\tRegistered Voters - Democrat\t453\t\tInternet\tNonpartisan\tNone\n80.0\t4.0\t\t5.0\t10.0\tyougov-economist-24478\tYouGov/Economist\t2016-05-06\t2016-05-09\t\tRegistered Voters - Republican\t445\t\tInternet\tNonpartisan\tNone\n34.0\t41.0\t\t8.0\t16.0\tyougov-economist-24478\tYouGov/Economist\t2016-05-06\t2016-05-09\t\tRegistered Voters - independent\t714\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t4.0\t2.0\t13.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, who would you vote for?\tLikely Voters\t1222\t3.2\tIVR/Online\tPollster\tDem\n9.0\t78.0\t2.0\t2.0\t10.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n78.0\t7.0\t4.0\t2.0\t10.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n31.0\t30.0\t10.0\t5.0\t25.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n41.0\t47.0\t\t\t12.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t1222\t3.2\tIVR/Online\tPollster\tDem\n9.0\t84.0\t\t\t7.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n82.0\t8.0\t\t\t11.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n36.0\t38.0\t\t\t26.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n38.0\t44.0\t\t\t18.0\tmorning-consult-24474\tMorning Consult\t2016-05-05\t2016-05-09\t\tRegistered Voters\t6005\t1.0\tInternet\tNonpartisan\tNone\n11.0\t77.0\t\t\t12.0\tmorning-consult-24474\tMorning Consult\t2016-05-05\t2016-05-09\t\tRegistered Voters - Democrat\t2273\t\tInternet\tNonpartisan\tNone\n74.0\t14.0\t\t\t12.0\tmorning-consult-24474\tMorning Consult\t2016-05-05\t2016-05-09\t\tRegistered Voters - Republican\t1850\t\tInternet\tNonpartisan\tNone\n37.0\t34.0\t\t\t29.0\tmorning-consult-24474\tMorning Consult\t2016-05-05\t2016-05-09\t\tRegistered Voters - independent\t1881\t\tInternet\tNonpartisan\tNone\n44.0\t49.0\t\t\t7.0\tnbc-surveymonkey-24468\tNBC/SurveyMonkey\t2016-05-02\t2016-05-08\t\tRegistered Voters\t11089\t1.3\tInternet\tNonpartisan\tNone\n36.0\t45.0\t\t10.0\t8.0\tipsos-reuters-24447\tIpsos/Reuters\t2016-04-30\t2016-05-04\t\tRegistered Voters\t1102\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t\t\t15.0\tmorning-consult-24431\tMorning Consult\t2016-04-29\t2016-05-02\t\tRegistered Voters\t1976\t2.0\tInternet\tNonpartisan\tNone\n11.0\t81.0\t\t\t8.0\tmorning-consult-24431\tMorning Consult\t2016-04-29\t2016-05-02\t\tRegistered Voters - Democrat\t781\t\tInternet\tNonpartisan\tNone\n77.0\t9.0\t\t\t14.0\tmorning-consult-24431\tMorning Consult\t2016-04-29\t2016-05-02\t\tRegistered Voters - Republican\t581\t\tInternet\tNonpartisan\tNone\n42.0\t34.0\t\t\t24.0\tmorning-consult-24431\tMorning Consult\t2016-04-29\t2016-05-02\t\tRegistered Voters - independent\t614\t\tInternet\tNonpartisan\tNone\n41.0\t54.0\t\t5.0\t0.0\tcnn-24438\tCNN\t2016-04-28\t2016-05-01\t\tRegistered Voters\t890\t3.5\tLive Phone\tNonpartisan\tNone\n5.0\t94.0\t\t1.0\t\tcnn-24438\tCNN\t2016-04-28\t2016-05-01\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t12.0\t\t4.0\t\tcnn-24438\tCNN\t2016-04-28\t2016-05-01\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t51.0\t\t9.0\t1.0\tcnn-24438\tCNN\t2016-04-28\t2016-05-01\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t43.0\t\t\t20.0\tnbc-surveymonkey-24429\tNBC/SurveyMonkey\t2016-04-25\t2016-05-01\t\tRegistered Voters\t12462\t1.2\tInternet\tNonpartisan\tNone\n39.0\t46.0\t\t\t15.0\tmorning-consult-24408\tMorning Consult\t2016-04-26\t2016-04-29\t\tRegistered Voters\t1964\t2.0\tInternet\tNonpartisan\tNone\n11.0\t78.0\t\t\t11.0\tmorning-consult-24408\tMorning Consult\t2016-04-26\t2016-04-29\t\tRegistered Voters - Democrat\t733\t\tInternet\tNonpartisan\tNone\n76.0\t11.0\t\t\t13.0\tmorning-consult-24408\tMorning Consult\t2016-04-26\t2016-04-29\t\tRegistered Voters - Republican\t573\t\tInternet\tNonpartisan\tNone\n37.0\t40.0\t\t\t23.0\tmorning-consult-24408\tMorning Consult\t2016-04-26\t2016-04-29\t\tRegistered Voters - independent\t658\t\tInternet\tNonpartisan\tNone\n41.0\t39.0\t\t15.0\t5.0\trasmussen-24426\tRasmussen\t2016-04-27\t2016-04-28\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n40.0\t47.0\t\t7.0\t5.0\tibd-tipp-24414\tIBD/TIPP\t2016-04-22\t2016-04-28\t\tRegistered Voters\t814\t\tLive Phone\tNonpartisan\tNone\n9.0\t86.0\t\t2.0\t2.0\tibd-tipp-24414\tIBD/TIPP\t2016-04-22\t2016-04-28\t\tRegistered Voters - Democrat\t280\t\tLive Phone\tNonpartisan\tNone\n77.0\t10.0\t\t8.0\t6.0\tibd-tipp-24414\tIBD/TIPP\t2016-04-22\t2016-04-28\t\tRegistered Voters - Republican\t250\t\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t\t10.0\t8.0\tibd-tipp-24414\tIBD/TIPP\t2016-04-22\t2016-04-28\t\tRegistered Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n36.0\t43.0\t\t13.0\t9.0\tipsos-reuters-24395\tIpsos/Reuters\t2016-04-23\t2016-04-27\t\tRegistered Voters\t1756\t\tInternet\tNonpartisan\tNone\n38.0\t38.0\t\t16.0\t2.0\trasmussen-24400\tRasmussen\t2016-04-25\t2016-04-26\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n40.0\t43.0\t\t5.0\t13.0\tyougov-economist-24390\tYouGov/Economist\t2016-04-22\t2016-04-26\t\tRegistered Voters\t1561\t\tInternet\tNonpartisan\tNone\n9.0\t82.0\t\t3.0\t6.0\tyougov-economist-24390\tYouGov/Economist\t2016-04-22\t2016-04-26\t\tRegistered Voters - Democrat\t610\t\tInternet\tNonpartisan\tNone\n79.0\t6.0\t\t3.0\t12.0\tyougov-economist-24390\tYouGov/Economist\t2016-04-22\t2016-04-26\t\tRegistered Voters - Republican\t449\t\tInternet\tNonpartisan\tNone\n40.0\t31.0\t\t8.0\t21.0\tyougov-economist-24390\tYouGov/Economist\t2016-04-22\t2016-04-26\t\tRegistered Voters - independent\t502\t\tInternet\tNonpartisan\tNone\n39.0\t50.0\t\t\t10.0\tsuffolk-usa-today-24356\tSuffolk/USA Today\t2016-04-20\t2016-04-24\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t90.0\t\t\t5.0\tsuffolk-usa-today-24356\tSuffolk/USA Today\t2016-04-20\t2016-04-24\t\tLikely Voters - Democrat\t357\t5.1\tLive Phone\tNonpartisan\tNone\n80.0\t9.0\t\t\t11.0\tsuffolk-usa-today-24356\tSuffolk/USA Today\t2016-04-20\t2016-04-24\t\tLikely Voters - Republican\t305\t5.7\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t\t\t16.0\tsuffolk-usa-today-24356\tSuffolk/USA Today\t2016-04-20\t2016-04-24\t\tLikely Voters - independent\t338\t\tLive Phone\tNonpartisan\tNone\n36.0\t44.0\t\t\t20.0\tnbc-surveymonkey-24362\tNBC/SurveyMonkey\t2016-04-18\t2016-04-24\t\tRegistered Voters\t9405\t1.4\tInternet\tNonpartisan\tNone\n40.0\t46.0\t\t\t15.0\tmorning-consult-24410\tMorning Consult\t2016-04-20\t2016-04-22\t\tRegistered Voters\t2003\t2.0\tInternet\tNonpartisan\tNone\n13.0\t79.0\t\t\t8.0\tmorning-consult-24410\tMorning Consult\t2016-04-20\t2016-04-22\t\tRegistered Voters - Democrat\t782\t\tInternet\tNonpartisan\tNone\n74.0\t14.0\t\t\t12.0\tmorning-consult-24410\tMorning Consult\t2016-04-20\t2016-04-22\t\tRegistered Voters - Republican\t622\t\tInternet\tNonpartisan\tNone\n39.0\t34.0\t\t\t27.0\tmorning-consult-24410\tMorning Consult\t2016-04-20\t2016-04-22\t\tRegistered Voters - independent\t599\t\tInternet\tNonpartisan\tNone\n40.0\t47.0\t\t\t14.0\tzogby-internet-24393\tZogby (Internet)\t2016-04-19\t2016-04-20\t\tLikely Voters\t834\t3.5\tInternet\tNonpartisan\tNone\n43.0\t46.0\t\t\t11.0\tgwu-battleground-24342\tGWU/Battleground\t2016-04-17\t2016-04-20\t\tLikely Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n9.0\t86.0\t\t\t5.0\tgwu-battleground-24342\tGWU/Battleground\t2016-04-17\t2016-04-20\t\tLikely Voters - Democrat\t420\t\tLive Phone\tNonpartisan\tNone\n80.0\t8.0\t\t\t13.0\tgwu-battleground-24342\tGWU/Battleground\t2016-04-17\t2016-04-20\t\tLikely Voters - Republican\t390\t\tLive Phone\tNonpartisan\tNone\n42.0\t37.0\t\t\t21.0\tgwu-battleground-24342\tGWU/Battleground\t2016-04-17\t2016-04-20\t\tLikely Voters - independent\t190\t\tLive Phone\tNonpartisan\tNone\n33.0\t44.0\t\t12.0\t12.0\tipsos-reuters-24323\tIpsos/Reuters\t2016-04-16\t2016-04-20\t\tRegistered Voters\t1334\t\tInternet\tNonpartisan\tNone\n37.0\t46.0\t\t\t17.0\tmorning-consult-24302\tMorning Consult\t2016-04-15\t2016-04-17\t\tRegistered Voters\t2032\t2.0\tInternet\tNonpartisan\tNone\n12.0\t78.0\t\t\t10.0\tmorning-consult-24302\tMorning Consult\t2016-04-15\t2016-04-17\t\tRegistered Voters - Democrat\t775\t\tInternet\tNonpartisan\tNone\n70.0\t13.0\t\t\t17.0\tmorning-consult-24302\tMorning Consult\t2016-04-15\t2016-04-17\t\tRegistered Voters - Republican\t624\t\tInternet\tNonpartisan\tNone\n36.0\t40.0\t\t\t24.0\tmorning-consult-24302\tMorning Consult\t2016-04-15\t2016-04-17\t\tRegistered Voters - independent\t633\t\tInternet\tNonpartisan\tNone\n39.0\t48.0\t\t\t13.0\tnbc-surveymonkey-24307\tNBC/SurveyMonkey\t2016-04-11\t2016-04-17\t\tRegistered Voters\t11498\t1.3\tInternet\tNonpartisan\tNone\n39.0\t50.0\t\t9.0\t2.0\tnbc-wsj-24305\tNBC/WSJ\t2016-04-10\t2016-04-14\t\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n41.0\t48.0\t\t2.0\t8.0\tfox-24280\tFOX\t2016-04-11\t2016-04-13\t\tRegistered Voters\t1021\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t87.0\t\t1.0\t6.0\tfox-24280\tFOX\t2016-04-11\t2016-04-13\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n82.0\t11.0\t\t2.0\t6.0\tfox-24280\tFOX\t2016-04-11\t2016-04-13\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t40.0\t\t7.0\t16.0\tfox-24280\tFOX\t2016-04-11\t2016-04-13\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t43.0\t\t15.0\t7.0\tipsos-reuters-24278\tIpsos/Reuters\t2016-04-09\t2016-04-13\t\tRegistered Voters\t1424\t\tInternet\tNonpartisan\tNone\n40.0\t50.0\t\t1.0\t8.0\tcbs-24282\tCBS\t2016-04-08\t2016-04-12\t\tRegistered Voters\t1098\t\tLive Phone\tNonpartisan\tNone\n8.0\t88.0\t\t1.0\t4.0\tcbs-24282\tCBS\t2016-04-08\t2016-04-12\t\tRegistered Voters - Democrat\t348\t\tLive Phone\tNonpartisan\tNone\n82.0\t11.0\t\t\t8.0\tcbs-24282\tCBS\t2016-04-08\t2016-04-12\t\tRegistered Voters - Republican\t333\t\tLive Phone\tNonpartisan\tNone\n33.0\t51.0\t\t2.0\t14.0\tcbs-24282\tCBS\t2016-04-08\t2016-04-12\t\tRegistered Voters - independent\t352\t\tLive Phone\tNonpartisan\tNone\n37.0\t46.0\t\t\t16.0\tmorning-consult-24311\tMorning Consult\t2016-04-08\t2016-04-11\t\tRegistered Voters\t4015\t2.0\tInternet\tNonpartisan\tNone\n12.0\t80.0\t\t\t8.0\tmorning-consult-24311\tMorning Consult\t2016-04-08\t2016-04-11\t\tRegistered Voters - Democrat\t1517\t\tInternet\tNonpartisan\tNone\n76.0\t10.0\t\t\t14.0\tmorning-consult-24311\tMorning Consult\t2016-04-08\t2016-04-11\t\tRegistered Voters - Republican\t1118\t\tInternet\tNonpartisan\tNone\n34.0\t38.0\t\t\t28.0\tmorning-consult-24311\tMorning Consult\t2016-04-08\t2016-04-11\t\tRegistered Voters - independent\t1379\t\tInternet\tNonpartisan\tNone\n36.0\t43.0\t\t0.0\t21.0\tnbc-surveymonkey-24251\tNBC/SurveyMonkey\t2016-04-04\t2016-04-10\t\tRegistered Voters\t11204\t1.3\tInternet\tNonpartisan\tNone\n34.0\t39.0\t\t16.0\t11.0\tipsos-reuters-24232\tIpsos/Reuters\t2016-04-02\t2016-04-06\t\tRegistered Voters\t1325\t\tInternet\tNonpartisan\tNone\n38.0\t45.0\t\t\t17.0\tmorning-consult-24207\tMorning Consult\t2016-04-01\t2016-04-03\t\tRegistered Voters\t2004\t2.0\tInternet\tNonpartisan\tNone\n10.0\t79.0\t\t\t11.0\tmorning-consult-24207\tMorning Consult\t2016-04-01\t2016-04-03\t\tRegistered Voters - Democrat\t746\t\tInternet\tNonpartisan\tNone\n72.0\t13.0\t\t\t15.0\tmorning-consult-24207\tMorning Consult\t2016-04-01\t2016-04-03\t\tRegistered Voters - Republican\t598\t\tInternet\tNonpartisan\tNone\n39.0\t36.0\t\t\t25.0\tmorning-consult-24207\tMorning Consult\t2016-04-01\t2016-04-03\t\tRegistered Voters - independent\t659\t\tInternet\tNonpartisan\tNone\n33.0\t45.0\t\t\t21.0\tnbc-surveymonkey-24206\tNBC/SurveyMonkey\t2016-03-28\t2016-04-03\t\tRegistered Voters\t12116\t\tInternet\tNonpartisan\tNone\n35.0\t47.0\t\t9.0\t9.0\tibd-tipp-24194\tIBD/TIPP\t2016-03-28\t2016-04-02\t\tRegistered Voters\t819\t\tLive Phone\tNonpartisan\tNone\n8.0\t84.0\t\t4.0\t4.0\tibd-tipp-24194\tIBD/TIPP\t2016-03-28\t2016-04-02\t\tRegistered Voters - Democrat\t284\t\tLive Phone\tNonpartisan\tNone\n69.0\t9.0\t\t10.0\t12.0\tibd-tipp-24194\tIBD/TIPP\t2016-03-28\t2016-04-02\t\tRegistered Voters - Republican\t245\t\tLive Phone\tNonpartisan\tNone\n35.0\t41.0\t\t12.0\t12.0\tibd-tipp-24194\tIBD/TIPP\t2016-03-28\t2016-04-02\t\tRegistered Voters - independent\t278\t\tLive Phone\tNonpartisan\tNone\n41.0\t50.0\t\t\t9.0\tmcclatchy-marist-24230\tMcClatchy/Marist\t2016-03-29\t2016-03-31\t\tRegistered Voters\t1066\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t90.0\t\t\t3.0\tmcclatchy-marist-24230\tMcClatchy/Marist\t2016-03-29\t2016-03-31\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t12.0\t\t\t7.0\tmcclatchy-marist-24230\tMcClatchy/Marist\t2016-03-29\t2016-03-31\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t\t\t15.0\tmcclatchy-marist-24230\tMcClatchy/Marist\t2016-03-29\t2016-03-31\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t45.0\t\t13.0\t9.0\tipsos-reuters-24179\tIpsos/Reuters\t2016-03-27\t2016-03-31\t\tRegistered Voters\t1580\t\tInternet\tNonpartisan\tNone\n41.0\t45.0\t\t6.0\t7.0\tyougov-economist-24181\tYouGov/Economist\t2016-03-26\t2016-03-29\t\tRegistered Voters\t1613\t\tInternet\tNonpartisan\tNone\n3.0\t92.0\t\t\t5.0\tyougov-economist-24181\tYouGov/Economist\t2016-03-26\t2016-03-29\t\tRegistered Voters - Democrat\t434\t\tInternet\tNonpartisan\tNone\n76.0\t7.0\t\t\t17.0\tyougov-economist-24181\tYouGov/Economist\t2016-03-26\t2016-03-29\t\tRegistered Voters - Republican\t497\t\tInternet\tNonpartisan\tNone\n35.0\t49.0\t\t\t16.0\tyougov-economist-24181\tYouGov/Economist\t2016-03-26\t2016-03-29\t\tRegistered Voters - independent\t682\t\tInternet\tNonpartisan\tNone\n41.0\t48.0\t\t\t11.0\tppp-d-24178\tPPP (D)\t2016-03-24\t2016-03-26\t\tLikely Voters\t1083\t3.0\tIVR/Online\tPollster\tDem\n11.0\t82.0\t\t\t7.0\tppp-d-24178\tPPP (D)\t2016-03-24\t2016-03-26\t\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n75.0\t12.0\t\t\t13.0\tppp-d-24178\tPPP (D)\t2016-03-24\t2016-03-26\t\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n41.0\t44.0\t\t\t15.0\tppp-d-24178\tPPP (D)\t2016-03-24\t2016-03-26\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n38.0\t44.0\t\t\t18.0\tmorning-consult-24158\tMorning Consult\t2016-03-24\t2016-03-26\t\tRegistered Voters\t2071\t2.0\tInternet\tNonpartisan\tNone\n11.0\t78.0\t\t\t12.0\tmorning-consult-24158\tMorning Consult\t2016-03-24\t2016-03-26\t\tRegistered Voters - Democrat\t783\t\tInternet\tNonpartisan\tNone\n75.0\t11.0\t\t\t14.0\tmorning-consult-24158\tMorning Consult\t2016-03-24\t2016-03-26\t\tRegistered Voters - Republican\t654\t\tInternet\tNonpartisan\tNone\n34.0\t37.0\t\t\t29.0\tmorning-consult-24158\tMorning Consult\t2016-03-24\t2016-03-26\t\tRegistered Voters - independent\t635\t\tInternet\tNonpartisan\tNone\n40.0\t53.0\t\t1.0\t6.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24187\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-03-17\t2016-03-24\t\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n35.0\t43.0\t\t9.0\t13.0\tipsos-reuters-24148\tIpsos/Reuters\t2016-03-19\t2016-03-23\t\tRegistered Voters\t1311\t\tInternet\tNonpartisan\tNone\n41.0\t48.0\t\t\t12.0\tmclaughlin-r-24168\tMcLaughlin (R)\t2016-03-17\t2016-03-23\t\tLikely Voters\t1002\t3.1\tInternet\tPollster\tRep\n10.0\t84.0\t\t\t6.0\tmclaughlin-r-24168\tMcLaughlin (R)\t2016-03-17\t2016-03-23\t\tLikely Voters - Democrat\t398\t\tInternet\tPollster\tRep\n81.0\t9.0\t\t\t11.0\tmclaughlin-r-24168\tMcLaughlin (R)\t2016-03-17\t2016-03-23\t\tLikely Voters - Republican\t361\t\tInternet\tPollster\tRep\n37.0\t44.0\t\t\t19.0\tmclaughlin-r-24168\tMcLaughlin (R)\t2016-03-17\t2016-03-23\t\tLikely Voters - independent\t59\t\tInternet\tPollster\tRep\n38.0\t49.0\t\t2.0\t11.0\tfox-24141\tFOX\t2016-03-20\t2016-03-22\t\tRegistered Voters\t1016\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t92.0\t\t\t3.0\tfox-24141\tFOX\t2016-03-20\t2016-03-22\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n73.0\t12.0\t\t3.0\t12.0\tfox-24141\tFOX\t2016-03-20\t2016-03-22\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t33.0\t\t1.0\t25.0\tfox-24141\tFOX\t2016-03-20\t2016-03-22\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t54.0\t\t\t9.0\tbloomberg-selzer-24140\tBloomberg/Selzer\t2016-03-19\t2016-03-22\t\tLikely Voters\t815\t3.4\tLive Phone\tNonpartisan\tNone\n38.0\t45.0\t\t\t18.0\tmorning-consult-24122\tMorning Consult\t2016-03-18\t2016-03-21\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n9.0\t80.0\t\t\t11.0\tmorning-consult-24122\tMorning Consult\t2016-03-18\t2016-03-21\t\tRegistered Voters - Democrat\t726\t\tInternet\tNonpartisan\tNone\n72.0\t12.0\t\t\t17.0\tmorning-consult-24122\tMorning Consult\t2016-03-18\t2016-03-21\t\tRegistered Voters - Republican\t581\t\tInternet\tNonpartisan\tNone\n39.0\t35.0\t\t\t26.0\tmorning-consult-24122\tMorning Consult\t2016-03-18\t2016-03-21\t\tRegistered Voters - independent\t694\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t\t3.0\t11.0\tquinnipiac-24134\tQuinnipiac\t2016-03-16\t2016-03-21\t\tRegistered Voters\t1451\t2.7\tLive Phone\tNonpartisan\tNone\n5.0\t88.0\t\t1.0\t6.0\tquinnipiac-24134\tQuinnipiac\t2016-03-16\t2016-03-21\t\tRegistered Voters - Democrat\t635\t3.9\tLive Phone\tNonpartisan\tNone\n80.0\t9.0\t\t2.0\t9.0\tquinnipiac-24134\tQuinnipiac\t2016-03-16\t2016-03-21\t\tRegistered Voters - Republican\t652\t3.8\tLive Phone\tNonpartisan\tNone\n40.0\t39.0\t\t5.0\t16.0\tquinnipiac-24134\tQuinnipiac\t2016-03-16\t2016-03-21\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t48.0\t\t2.0\t12.0\tmonmouth-university-24144\tMonmouth University\t2016-03-17\t2016-03-20\t\tRegistered Voters\t848\t3.4\tLive Phone\tNonpartisan\tNone\n5.0\t89.0\t\t\t6.0\tmonmouth-university-24144\tMonmouth University\t2016-03-17\t2016-03-20\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n73.0\t12.0\t\t2.0\t12.0\tmonmouth-university-24144\tMonmouth University\t2016-03-17\t2016-03-20\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t39.0\t\t3.0\t18.0\tmonmouth-university-24144\tMonmouth University\t2016-03-17\t2016-03-20\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t50.0\t\t1.0\t9.0\tcbs-times-24128\tCBS/Times\t2016-03-17\t2016-03-20\t\tRegistered Voters\t1058\t3.0\tLive Phone\tNonpartisan\tNone\n12.0\t85.0\t\t\t4.0\tcbs-times-24128\tCBS/Times\t2016-03-17\t2016-03-20\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n77.0\t11.0\t\t2.0\t10.0\tcbs-times-24128\tCBS/Times\t2016-03-17\t2016-03-20\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t45.0\t\t1.0\t17.0\tcbs-times-24128\tCBS/Times\t2016-03-17\t2016-03-20\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t53.0\t\t6.0\t0.0\tcnn-24127\tCNN\t2016-03-17\t2016-03-20\t\tRegistered Voters\t925\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t93.0\t\t1.0\t\tcnn-24127\tCNN\t2016-03-17\t2016-03-20\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t9.0\t\t10.0\t\tcnn-24127\tCNN\t2016-03-17\t2016-03-20\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t49.0\t\t8.0\t\tcnn-24127\tCNN\t2016-03-17\t2016-03-20\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t45.0\t\t\t19.0\tmorning-consult-24111\tMorning Consult\t2016-03-16\t2016-03-18\t\tRegistered Voters\t2011\t2.0\tInternet\tNonpartisan\tNone\n9.0\t79.0\t\t\t12.0\tmorning-consult-24111\tMorning Consult\t2016-03-16\t2016-03-18\t\tRegistered Voters - Democrat\t755\t\tInternet\tNonpartisan\tNone\n73.0\t12.0\t\t\t15.0\tmorning-consult-24111\tMorning Consult\t2016-03-16\t2016-03-18\t\tRegistered Voters - Republican\t621\t\tInternet\tNonpartisan\tNone\n34.0\t36.0\t\t\t30.0\tmorning-consult-24111\tMorning Consult\t2016-03-16\t2016-03-18\t\tRegistered Voters - independent\t635\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t\t13.0\t8.0\tipsos-reuters-24103\tIpsos/Reuters\t2016-03-12\t2016-03-16\t\tRegistered Voters\t1437\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t\t\t16.0\tmorning-consult-24088\tMorning Consult\t2016-03-11\t2016-03-13\t\tRegistered Voters\t2978\t\tInternet\tNonpartisan\tNone\n9.0\t82.0\t\t\t10.0\tmorning-consult-24088\tMorning Consult\t2016-03-11\t2016-03-13\t\tRegistered Voters - Democrat\t1110\t\tInternet\tNonpartisan\tNone\n71.0\t12.0\t\t\t17.0\tmorning-consult-24088\tMorning Consult\t2016-03-11\t2016-03-13\t\tRegistered Voters - Republican\t895\t\tInternet\tNonpartisan\tNone\n37.0\t40.0\t\t\t23.0\tmorning-consult-24088\tMorning Consult\t2016-03-11\t2016-03-13\t\tRegistered Voters - independent\t973\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t\t8.0\t7.0\tyougov-economist-24084\tYouGov/Economist\t2016-03-10\t2016-03-12\t\tRegistered Voters\t1647\t\tInternet\tNonpartisan\tNone\n9.0\t84.0\t\t\t7.0\tyougov-economist-24084\tYouGov/Economist\t2016-03-10\t2016-03-12\t\tRegistered Voters - Democrat\t663\t\tInternet\tNonpartisan\tNone\n74.0\t9.0\t\t\t18.0\tyougov-economist-24084\tYouGov/Economist\t2016-03-10\t2016-03-12\t\tRegistered Voters - Republican\t449\t\tInternet\tNonpartisan\tNone\n43.0\t35.0\t\t\t22.0\tyougov-economist-24084\tYouGov/Economist\t2016-03-10\t2016-03-12\t\tRegistered Voters - independent\t535\t\tInternet\tNonpartisan\tNone\n31.0\t45.0\t\t13.0\t11.0\tipsos-reuters-24040\tIpsos/Reuters\t2016-03-05\t2016-03-09\t\tRegistered Voters\t1594\t\tInternet\tNonpartisan\tNone\n38.0\t46.0\t\t\t16.0\tmorning-consult-24011\tMorning Consult\t2016-03-04\t2016-03-06\t\tRegistered Voters\t1516\t\tInternet\tNonpartisan\tNone\n13.0\t79.0\t\t\t8.0\tmorning-consult-24011\tMorning Consult\t2016-03-04\t2016-03-06\t\tRegistered Voters - Democrat\t583\t\tInternet\tNonpartisan\tNone\n69.0\t13.0\t\t\t18.0\tmorning-consult-24011\tMorning Consult\t2016-03-04\t2016-03-06\t\tRegistered Voters - Republican\t508\t\tInternet\tNonpartisan\tNone\n35.0\t39.0\t\t\t25.0\tmorning-consult-24011\tMorning Consult\t2016-03-04\t2016-03-06\t\tRegistered Voters - independent\t425\t\tInternet\tNonpartisan\tNone\n38.0\t51.0\t\t9.0\t2.0\tnbc-wsj-24016\tNBC/WSJ\t2016-03-03\t2016-03-06\t\tRegistered Voters\t1200\t2.83\tLive Phone\tNonpartisan\tNone\n41.0\t50.0\t\t4.0\t6.0\tabc-post-24009\tABC/Post\t2016-03-03\t2016-03-06\t\tRegistered Voters\t864\t4.0\tLive Phone\tNonpartisan\tNone\n35.0\t46.0\t\t10.0\t10.0\tipsos-reuters-23970\tIpsos/Reuters\t2016-02-27\t2016-03-02\t\tRegistered Voters\t1381\t\tInternet\tNonpartisan\tNone\n36.0\t41.0\t\t21.0\t3.0\trasmussen-23960\tRasmussen\t2016-02-29\t2016-03-01\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n43.0\t44.0\t\t\t13.0\tmorning-consult-23918\tMorning Consult\t2016-02-26\t2016-02-27\t\tRegistered Voters\t1182\t2.0\tInternet\tNonpartisan\tNone\n11.0\t80.0\t\t\t9.0\tmorning-consult-23918\tMorning Consult\t2016-02-26\t2016-02-27\t\tRegistered Voters - Democrat\t415\t\tInternet\tNonpartisan\tNone\n79.0\t10.0\t\t\t12.0\tmorning-consult-23918\tMorning Consult\t2016-02-26\t2016-02-27\t\tRegistered Voters - Republican\t400\t\tInternet\tNonpartisan\tNone\n41.0\t40.0\t\t\t19.0\tmorning-consult-23918\tMorning Consult\t2016-02-26\t2016-02-27\t\tRegistered Voters - independent\t367\t\tInternet\tNonpartisan\tNone\n44.0\t52.0\t\t4.0\t\tcnn-23952\tCNN\t2016-02-24\t2016-02-27\t\tRegistered Voters\t920\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t93.0\t\t\t\tcnn-23952\tCNN\t2016-02-24\t2016-02-27\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t12.0\t\t3.0\t\tcnn-23952\tCNN\t2016-02-24\t2016-02-27\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t7.0\t1.0\tcnn-23952\tCNN\t2016-02-24\t2016-02-27\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n35.0\t44.0\t\t10.0\t11.0\tipsos-reuters-23865\tIpsos/Reuters\t2016-02-20\t2016-02-24\t\tRegistered Voters\t1246\t\tInternet\tNonpartisan\tNone\n42.0\t47.0\t\t2.0\t8.0\tfox-23803\tFOX\t2016-02-15\t2016-02-17\t\tRegistered Voters\t1031\t3.0\tLive Phone\tNonpartisan\tNone\n9.0\t85.0\t\t1.0\t5.0\tfox-23803\tFOX\t2016-02-15\t2016-02-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n79.0\t9.0\t\t2.0\t10.0\tfox-23803\tFOX\t2016-02-15\t2016-02-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t\t5.0\t12.0\tfox-23803\tFOX\t2016-02-15\t2016-02-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t44.0\t\t10.0\t9.0\tipsos-reuters-23811\tIpsos/Reuters\t2016-02-13\t2016-02-17\t\tRegistered Voters\t1213\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t\t\t16.0\tmorning-consult-23766\tMorning Consult\t2016-02-15\t2016-02-16\t\tRegistered Voters\t883\t\tInternet\tNonpartisan\tNone\n13.0\t78.0\t\t\t9.0\tmorning-consult-23766\tMorning Consult\t2016-02-15\t2016-02-16\t\tRegistered Voters - Democrat\t307\t\tInternet\tNonpartisan\tNone\n76.0\t10.0\t\t\t14.0\tmorning-consult-23766\tMorning Consult\t2016-02-15\t2016-02-16\t\tRegistered Voters - Republican\t285\t\tInternet\tNonpartisan\tNone\n38.0\t38.0\t\t\t24.0\tmorning-consult-23766\tMorning Consult\t2016-02-15\t2016-02-16\t\tRegistered Voters - independent\t291\t\tInternet\tNonpartisan\tNone\n40.0\t50.0\t\t9.0\t1.0\tnbc-wsj-23801\tNBC/WSJ\t2016-02-14\t2016-02-16\t\tRegistered Voters\t800\t3.5\tLive Phone\tNonpartisan\tNone\n45.0\t43.0\t\t\t14.0\tsuffolk-usa-today-23779\tSuffolk/USA Today\t2016-02-11\t2016-02-15\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t88.0\t\t\t7.0\tsuffolk-usa-today-23779\tSuffolk/USA Today\t2016-02-11\t2016-02-15\t\tLikely Voters - Democrat\t373\t5.5\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t\t\t11.0\tsuffolk-usa-today-23779\tSuffolk/USA Today\t2016-02-11\t2016-02-15\t\tLikely Voters - Republican\t336\t5.2\tLive Phone\tNonpartisan\tNone\n55.0\t27.0\t\t\t18.0\tsuffolk-usa-today-23779\tSuffolk/USA Today\t2016-02-11\t2016-02-15\t\tLikely Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n43.0\t44.0\t\t3.0\t10.0\tquinnipiac-23790\tQuinnipiac\t2016-02-10\t2016-02-15\t\tRegistered Voters\t1342\t2.7\tLive Phone\tNonpartisan\tNone\n8.0\t84.0\t\t2.0\t7.0\tquinnipiac-23790\tQuinnipiac\t2016-02-10\t2016-02-15\t\tRegistered Voters - Democrat\t563\t4.4\tLive Phone\tNonpartisan\tNone\n79.0\t10.0\t\t2.0\t10.0\tquinnipiac-23790\tQuinnipiac\t2016-02-10\t2016-02-15\t\tRegistered Voters - Republican\t602\t4.0\tLive Phone\tNonpartisan\tNone\n40.0\t42.0\t\t4.0\t14.0\tquinnipiac-23790\tQuinnipiac\t2016-02-10\t2016-02-15\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t44.0\t\t11.0\t10.0\tipsos-reuters-23740\tIpsos/Reuters\t2016-02-06\t2016-02-10\t\tRegistered Voters\t1337\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t\t\t15.0\tmorning-consult-23731\tMorning Consult\t2016-02-03\t2016-02-07\t\tRegistered Voters\t2197\t\tInternet\tNonpartisan\tNone\n13.0\t79.0\t\t\t8.0\tmorning-consult-23731\tMorning Consult\t2016-02-03\t2016-02-07\t\tRegistered Voters - Democrat\t829\t\tInternet\tNonpartisan\tNone\n72.0\t12.0\t\t\t16.0\tmorning-consult-23731\tMorning Consult\t2016-02-03\t2016-02-07\t\tRegistered Voters - Republican\t711\t\tInternet\tNonpartisan\tNone\n39.0\t38.0\t\t\t23.0\tmorning-consult-23731\tMorning Consult\t2016-02-03\t2016-02-07\t\tRegistered Voters - independent\t658\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t\t3.0\t10.0\tquinnipiac-23675\tQuinnipiac\t2016-02-02\t2016-02-04\t\tRegistered Voters\t1125\t2.9\tLive Phone\tNonpartisan\tNone\n7.0\t87.0\t\t1.0\t5.0\tquinnipiac-23675\tQuinnipiac\t2016-02-02\t2016-02-04\t\tRegistered Voters - Democrat\t484\t4.5\tLive Phone\tNonpartisan\tNone\n80.0\t9.0\t\t3.0\t8.0\tquinnipiac-23675\tQuinnipiac\t2016-02-02\t2016-02-04\t\tRegistered Voters - Republican\t507\t4.4\tLive Phone\tNonpartisan\tNone\n34.0\t48.0\t\t4.0\t13.0\tquinnipiac-23675\tQuinnipiac\t2016-02-02\t2016-02-04\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t47.0\t\t\t13.0\tppp-d-23727\tPPP (D)\t2016-02-02\t2016-02-03\t\tLikely Voters\t1236\t\tIVR/Online\tPollster\tDem\n11.0\t84.0\t\t\t5.0\tppp-d-23727\tPPP (D)\t2016-02-02\t2016-02-03\t\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n77.0\t8.0\t\t\t15.0\tppp-d-23727\tPPP (D)\t2016-02-02\t2016-02-03\t\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n40.0\t39.0\t\t\t22.0\tppp-d-23727\tPPP (D)\t2016-02-02\t2016-02-03\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n36.0\t44.0\t\t9.0\t10.0\tipsos-reuters-23665\tIpsos/Reuters\t2016-01-30\t2016-02-03\t\tRegistered Voters\t1434\t\tInternet\tNonpartisan\tNone\n39.0\t45.0\t\t\t16.0\tmorning-consult-23600\tMorning Consult\t2016-01-21\t2016-01-24\t\tRegistered Voters\t4001\t2.0\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t0.0\tcnn-23592\tCNN\t2016-01-21\t2016-01-24\t\tRegistered Voters\t907\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t93.0\t\t1.0\t\tcnn-23592\tCNN\t2016-01-21\t2016-01-24\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n92.0\t4.0\t\t5.0\t\tcnn-23592\tCNN\t2016-01-21\t2016-01-24\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n47.0\t43.0\t\t9.0\t1.0\tcnn-23592\tCNN\t2016-01-21\t2016-01-24\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t45.0\t\t\t10.0\tzogby-internet-23594\tZogby (Internet)\t2016-01-19\t2016-01-20\t\tLikely Voters\t843\t3.2\tInternet\tNonpartisan\tNone\n42.0\t44.0\t\t\t14.0\tmorning-consult-23526\tMorning Consult\t2016-01-14\t2016-01-17\t\tRegistered Voters\t4060\t2.0\tInternet\tNonpartisan\tNone\n13.0\t79.0\t\t\t9.0\tmorning-consult-23526\tMorning Consult\t2016-01-14\t2016-01-17\t\tRegistered Voters - Democrat\t1805\t\tInternet\tNonpartisan\tNone\n74.0\t13.0\t\t\t13.0\tmorning-consult-23526\tMorning Consult\t2016-01-14\t2016-01-17\t\tRegistered Voters - Republican\t1635\t\tInternet\tNonpartisan\tNone\n43.0\t36.0\t\t\t21.0\tmorning-consult-23526\tMorning Consult\t2016-01-14\t2016-01-17\t\tRegistered Voters - independent\t1281\t\tInternet\tNonpartisan\tNone\n41.0\t51.0\t\t\t\tnbc-wsj-23507\tNBC/WSJ\t2016-01-09\t2016-01-13\t\tRegistered Voters\t800\t3.5\tLive Phone\tNonpartisan\tNone\n51.0\t49.0\t\t\t\tgravis-marketing-oann-23477\tGravis Marketing/OANN\t2016-01-10\t2016-01-10\t\tRegistered Voters\t2416\t2.0\tAutomated Phone\tSponsor\tRep\n44.0\t42.0\t\t\t14.0\tmorning-consult-23500\tMorning Consult\t2016-01-08\t2016-01-10\t\tRegistered Voters\t2173\t2.0\tInternet\tNonpartisan\tNone\n15.0\t78.0\t\t\t7.0\tmorning-consult-23500\tMorning Consult\t2016-01-08\t2016-01-10\t\tRegistered Voters - Democrat\t770\t\tInternet\tNonpartisan\tNone\n76.0\t10.0\t\t\t14.0\tmorning-consult-23500\tMorning Consult\t2016-01-08\t2016-01-10\t\tRegistered Voters - Republican\t716\t\tInternet\tNonpartisan\tNone\n43.0\t36.0\t\t\t21.0\tmorning-consult-23500\tMorning Consult\t2016-01-08\t2016-01-10\t\tRegistered Voters - independent\t688\t\tInternet\tNonpartisan\tNone\n47.0\t44.0\t\t2.0\t7.0\tfox-23457\tFOX\t2016-01-04\t2016-01-07\t\tRegistered Voters\t1006\t3.0\tLive Phone\tNonpartisan\tNone\n36.0\t37.0\t\t22.0\t5.0\trasmussen-23421\tRasmussen\t2015-12-22\t2015-12-23\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tcnn-23412\tCNN\t2015-12-17\t2015-12-21\t\tRegistered Voters\t927\t3.0\tLive Phone\tNonpartisan\tNone\n11.0\t86.0\t\t2.0\t\tcnn-23412\tCNN\t2015-12-17\t2015-12-21\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n88.0\t9.0\t\t3.0\t\tcnn-23412\tCNN\t2015-12-17\t2015-12-21\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n47.0\t47.0\t\t6.0\t\tcnn-23412\tCNN\t2015-12-17\t2015-12-21\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t48.0\t\t\t7.0\temerson-college-polling-society-23395\tEmerson College Polling Society\t2015-12-17\t2015-12-20\t\tRegistered Voters\t754\t3.5\tAutomated Phone\tNonpartisan\tNone\n40.0\t47.0\t\t2.0\t11.0\tquinnipiac-23400\tQuinnipiac\t2015-12-16\t2015-12-20\t\tRegistered Voters\t1140\t2.9\tLive Phone\tNonpartisan\tNone\n4.0\t92.0\t\t0.0\t4.0\tquinnipiac-23400\tQuinnipiac\t2015-12-16\t2015-12-20\t\tRegistered Voters - Democrat\t462\t4.6\tLive Phone\tNonpartisan\tNone\n82.0\t8.0\t\t2.0\t7.0\tquinnipiac-23400\tQuinnipiac\t2015-12-16\t2015-12-20\t\tRegistered Voters - Republican\t508\t4.4\tLive Phone\tNonpartisan\tNone\n37.0\t39.0\t\t4.0\t20.0\tquinnipiac-23400\tQuinnipiac\t2015-12-16\t2015-12-20\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t46.0\t\t\t11.0\tppp-d-23396\tPPP (D)\t2015-12-16\t2015-12-17\t\tLikely Voters\t1267\t\tIVR/Online\tPollster\tDem\n14.0\t79.0\t\t\t7.0\tppp-d-23396\tPPP (D)\t2015-12-16\t2015-12-17\t\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n74.0\t12.0\t\t\t14.0\tppp-d-23396\tPPP (D)\t2015-12-16\t2015-12-17\t\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n49.0\t35.0\t\t\t16.0\tppp-d-23396\tPPP (D)\t2015-12-16\t2015-12-17\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n38.0\t49.0\t\t3.0\t10.0\tfox-23385\tFOX\t2015-12-16\t2015-12-17\t\tRegistered Voters\t1013\t3.0\tLive Phone\tNonpartisan\tNone\n9.0\t85.0\t\t1.0\t6.0\tfox-23385\tFOX\t2015-12-16\t2015-12-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n72.0\t15.0\t\t3.0\t10.0\tfox-23385\tFOX\t2015-12-16\t2015-12-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t37.0\t\t8.0\t17.0\tfox-23385\tFOX\t2015-12-16\t2015-12-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t\t\t13.0\tmorning-consult-23333\tMorning Consult\t2015-12-11\t2015-12-15\t\tRegistered Voters\t4038\t2.0\tInternet\tNonpartisan\tNone\n12.0\t80.0\t\t\t8.0\tmorning-consult-23333\tMorning Consult\t2015-12-11\t2015-12-15\t\tRegistered Voters - Democrat\t1472\t\tInternet\tNonpartisan\tNone\n74.0\t12.0\t\t\t14.0\tmorning-consult-23333\tMorning Consult\t2015-12-11\t2015-12-15\t\tRegistered Voters - Republican\t1265\t\tInternet\tNonpartisan\tNone\n42.0\t40.0\t\t\t18.0\tmorning-consult-23333\tMorning Consult\t2015-12-11\t2015-12-15\t\tRegistered Voters - independent\t1300\t\tInternet\tNonpartisan\tNone\n44.0\t50.0\t\t4.0\t3.0\tabc-post-23326\tABC/Post\t2015-12-10\t2015-12-13\t\tRegistered Voters\t851\t4.0\tLive Phone\tNonpartisan\tNone\n40.0\t50.0\t\t8.0\t2.0\tnbc-wsj-23315\tNBC/WSJ\t2015-12-06\t2015-12-09\t\tRegistered Voters\t849\t3.6\tLive Phone\tNonpartisan\tNone\n49.0\t51.0\t\t\t\tgravis-marketing-oann-23300\tGravis Marketing/OANN\t2015-12-07\t2015-12-08\t\tRegistered Voters\t1995\t2.2\tAutomated Phone\tSponsor\tRep\n45.0\t40.0\t\t\t15.0\tmorning-consult-23281\tMorning Consult\t2015-12-03\t2015-12-07\t\tRegistered Voters\t2047\t2.0\tInternet\tNonpartisan\tNone\n17.0\t73.0\t\t\t10.0\tmorning-consult-23281\tMorning Consult\t2015-12-03\t2015-12-07\t\tRegistered Voters - Democrat\t682\t\tInternet\tNonpartisan\tNone\n79.0\t10.0\t\t\t12.0\tmorning-consult-23281\tMorning Consult\t2015-12-03\t2015-12-07\t\tRegistered Voters - Republican\t711\t\tInternet\tNonpartisan\tNone\n38.0\t39.0\t\t\t23.0\tmorning-consult-23281\tMorning Consult\t2015-12-03\t2015-12-07\t\tRegistered Voters - independent\t654\t\tInternet\tNonpartisan\tNone\n44.0\t47.0\t\t\t8.0\tsuffolk-usa-today-23278\tSuffolk/USA Today\t2015-12-02\t2015-12-06\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n8.0\t88.0\t\t\t4.0\tsuffolk-usa-today-23278\tSuffolk/USA Today\t2015-12-02\t2015-12-06\t\tLikely Voters - Democrat\t307\t5.1\tLive Phone\tNonpartisan\tNone\n79.0\t9.0\t\t\t12.0\tsuffolk-usa-today-23278\tSuffolk/USA Today\t2015-12-02\t2015-12-06\t\tLikely Voters - Republican\t342\t5.2\tLive Phone\tNonpartisan\tNone\n48.0\t42.0\t\t\t10.0\tsuffolk-usa-today-23278\tSuffolk/USA Today\t2015-12-02\t2015-12-06\t\tLikely Voters - independent\t337\t\tLive Phone\tNonpartisan\tNone\n37.0\t51.0\t\t\t\tsaint-leo-university-23287\tSaint Leo University\t2015-11-29\t2015-12-03\t\tLikely Voters\t746\t\tInternet\tNonpartisan\tNone\n41.0\t52.0\t\t\t6.0\tmsnbc-telemundo-marist-23269\tMSNBC/Telemundo/Marist\t2015-11-15\t2015-12-02\t\tRegistered Voters\t2360\t2.0\tLive Phone\tSponsor\tOther\n6.0\t92.0\t\t\t3.0\tmsnbc-telemundo-marist-23269\tMSNBC/Telemundo/Marist\t2015-11-15\t2015-12-02\t\tRegistered Voters - Democrat\t\t\tLive Phone\tSponsor\tOther\n87.0\t8.0\t\t\t5.0\tmsnbc-telemundo-marist-23269\tMSNBC/Telemundo/Marist\t2015-11-15\t2015-12-02\t\tRegistered Voters - Republican\t\t\tLive Phone\tSponsor\tOther\n41.0\t51.0\t\t\t9.0\tmsnbc-telemundo-marist-23269\tMSNBC/Telemundo/Marist\t2015-11-15\t2015-12-02\t\tRegistered Voters - independent\t\t\tLive Phone\tSponsor\tOther\n46.0\t49.0\t\t4.0\t0.0\tcnn-23262\tCNN\t2015-11-27\t2015-12-01\t\tRegistered Voters\t930\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t92.0\t\t1.0\t\tcnn-23262\tCNN\t2015-11-27\t2015-12-01\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t9.0\t\t6.0\t\tcnn-23262\tCNN\t2015-11-27\t2015-12-01\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n49.0\t45.0\t\t6.0\t\tcnn-23262\tCNN\t2015-11-27\t2015-12-01\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t47.0\t\t2.0\t10.0\tquinnipiac-23247\tQuinnipiac\t2015-11-23\t2015-11-30\t\tRegistered Voters\t1453\t2.6\tLive Phone\tNonpartisan\tNone\n7.0\t91.0\t\t1.0\t2.0\tquinnipiac-23247\tQuinnipiac\t2015-11-23\t2015-11-30\t\tRegistered Voters - Democrat\t573\t4.1\tLive Phone\tNonpartisan\tNone\n82.0\t7.0\t\t1.0\t10.0\tquinnipiac-23247\tQuinnipiac\t2015-11-23\t2015-11-30\t\tRegistered Voters - Republican\t672\t3.8\tLive Phone\tNonpartisan\tNone\n37.0\t45.0\t\t4.0\t14.0\tquinnipiac-23247\tQuinnipiac\t2015-11-23\t2015-11-30\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t41.0\t\t2.0\t12.0\tfox-23216\tFOX\t2015-11-16\t2015-11-19\t\tRegistered Voters\t1016\t3.0\tLive Phone\tNonpartisan\tNone\n44.0\t45.0\t\t\t11.0\tppp-d-23175\tPPP (D)\t2015-11-16\t2015-11-17\t\tLikely Voters\t1360\t2.7\tIVR/Online\tPollster\tDem\n13.0\t79.0\t\t\t8.0\tppp-d-23175\tPPP (D)\t2015-11-16\t2015-11-17\t\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n79.0\t12.0\t\t\t10.0\tppp-d-23175\tPPP (D)\t2015-11-16\t2015-11-17\t\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n47.0\t35.0\t\t\t17.0\tppp-d-23175\tPPP (D)\t2015-11-16\t2015-11-17\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n43.0\t44.0\t\t\t14.0\tmorning-consult-23158\tMorning Consult\t2015-11-13\t2015-11-16\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n13.0\t80.0\t\t\t7.0\tmorning-consult-23158\tMorning Consult\t2015-11-13\t2015-11-16\t\tRegistered Voters - Democrat\t730\t\tInternet\tNonpartisan\tNone\n78.0\t8.0\t\t\t14.0\tmorning-consult-23158\tMorning Consult\t2015-11-13\t2015-11-16\t\tRegistered Voters - Republican\t661\t\tInternet\tNonpartisan\tNone\n40.0\t38.0\t\t\t21.0\tmorning-consult-23158\tMorning Consult\t2015-11-13\t2015-11-16\t\tRegistered Voters - independent\t610\t\tInternet\tNonpartisan\tNone\n43.0\t43.0\t\t\t14.0\tmorning-consult-23107\tMorning Consult\t2015-11-05\t2015-11-08\t\tRegistered Voters\t4002\t2.0\tInternet\tNonpartisan\tNone\n15.0\t76.0\t\t\t9.0\tmorning-consult-23107\tMorning Consult\t2015-11-05\t2015-11-08\t\tRegistered Voters - Democrat\t1459\t\tInternet\tNonpartisan\tNone\n78.0\t9.0\t\t\t13.0\tmorning-consult-23107\tMorning Consult\t2015-11-05\t2015-11-08\t\tRegistered Voters - Republican\t1237\t\tInternet\tNonpartisan\tNone\n41.0\t37.0\t\t\t22.0\tmorning-consult-23107\tMorning Consult\t2015-11-05\t2015-11-08\t\tRegistered Voters - independent\t1306\t\tInternet\tNonpartisan\tNone\n41.0\t56.0\t\t\t3.0\tmcclatchy-marist-23096\tMcClatchy/Marist\t2015-10-29\t2015-11-04\t\tRegistered Voters\t541\t4.2\tLive Phone\tNonpartisan\tNone\n8.0\t91.0\t\t\t1.0\tmcclatchy-marist-23096\tMcClatchy/Marist\t2015-10-29\t2015-11-04\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t9.0\t\t\t5.0\tmcclatchy-marist-23096\tMcClatchy/Marist\t2015-10-29\t2015-11-04\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t58.0\t\t\t4.0\tmcclatchy-marist-23096\tMcClatchy/Marist\t2015-10-29\t2015-11-04\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t46.0\t\t2.0\t9.0\tquinnipiac-23059\tQuinnipiac\t2015-10-29\t2015-11-02\t\tRegistered Voters\t1144\t2.9\tLive Phone\tNonpartisan\tNone\n5.0\t91.0\t\t0.0\t4.0\tquinnipiac-23059\tQuinnipiac\t2015-10-29\t2015-11-02\t\tRegistered Voters - Democrat\t480\t4.5\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t\t2.0\t10.0\tquinnipiac-23059\tQuinnipiac\t2015-10-29\t2015-11-02\t\tRegistered Voters - Republican\t502\t4.4\tLive Phone\tNonpartisan\tNone\n43.0\t38.0\t\t4.0\t15.0\tquinnipiac-23059\tQuinnipiac\t2015-10-29\t2015-11-02\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t\t\t12.0\tmorning-consult-23056\tMorning Consult\t2015-10-29\t2015-11-01\t\tRegistered Voters\t2350\t2.0\tInternet\tNonpartisan\tNone\n37.0\t41.0\t\t16.0\t6.0\tzogby-internet-23091\tZogby (Internet)\t2015-10-30\t2015-10-31\t\tLikely Voters\t1002\t5.0\tInternet\tNonpartisan\tNone\n42.0\t50.0\t\t6.0\t2.0\tnbc-wsj-23071\tNBC/WSJ\t2015-10-25\t2015-10-29\t\tAdults\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n49.0\t51.0\t\t\t\tgravis-marketing-oann-23005\tGravis Marketing/OANN\t2015-10-26\t2015-10-26\t\tRegistered Voters\t2606\t2.0\tAutomated Phone\tSponsor\tRep\n43.0\t43.0\t\t\t14.0\tmorning-consult-22994\tMorning Consult\t2015-10-22\t2015-10-25\t\tRegistered Voters\t1689\t2.0\tInternet\tNonpartisan\tNone\n11.0\t81.0\t\t\t8.0\tmorning-consult-22994\tMorning Consult\t2015-10-22\t2015-10-25\t\tRegistered Voters - Democrat\t557\t\tInternet\tNonpartisan\tNone\n75.0\t12.0\t\t\t13.0\tmorning-consult-22994\tMorning Consult\t2015-10-22\t2015-10-25\t\tRegistered Voters - Republican\t565\t\tInternet\tNonpartisan\tNone\n43.0\t37.0\t\t\t20.0\tmorning-consult-22994\tMorning Consult\t2015-10-22\t2015-10-25\t\tRegistered Voters - independent\t567\t\tInternet\tNonpartisan\tNone\n38.0\t47.0\t\t\t\tsaint-leo-university-23025\tSaint Leo University\t2015-10-17\t2015-10-22\t\tLikely Voters\t764\t3.5\tInternet\tNonpartisan\tNone\n41.0\t44.0\t\t\t14.0\tmorning-consult-22950\tMorning Consult\t2015-10-15\t2015-10-19\t\tRegistered Voters\t2017\t2.0\tInternet\tNonpartisan\tNone\n13.0\t80.0\t\t\t8.0\tmorning-consult-22950\tMorning Consult\t2015-10-15\t2015-10-19\t\tRegistered Voters - Democrat\t712\t3.3\tInternet\tNonpartisan\tNone\n74.0\t11.0\t\t\t15.0\tmorning-consult-22950\tMorning Consult\t2015-10-15\t2015-10-19\t\tRegistered Voters - Republican\t632\t3.5\tInternet\tNonpartisan\tNone\n41.0\t38.0\t\t\t21.0\tmorning-consult-22950\tMorning Consult\t2015-10-15\t2015-10-19\t\tRegistered Voters - independent\t673\t\tInternet\tNonpartisan\tNone\n46.0\t44.0\t\t\t10.0\temerson-college-polling-society-22951\tEmerson College Polling Society\t2015-10-16\t2015-10-17\t\tRegistered Voters\t783\t3.4\tAutomated Phone\tNonpartisan\tNone\n45.0\t50.0\t\t6.0\t0.0\tcnn-22934\tCNN\t2015-10-14\t2015-10-17\t\tRegistered Voters\t936\t\tLive Phone\tNonpartisan\tNone\n6.0\t91.0\t\t3.0\t\tcnn-22934\tCNN\t2015-10-14\t2015-10-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n80.0\t12.0\t\t7.0\t\tcnn-22934\tCNN\t2015-10-14\t2015-10-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n51.0\t44.0\t\t6.0\t\tcnn-22934\tCNN\t2015-10-14\t2015-10-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t40.0\t\t4.0\t10.0\tfox-22904\tFOX\t2015-10-10\t2015-10-12\t\tRegistered Voters\t1004\t3.0\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t\t\t16.0\tmorning-consult-22902\tMorning Consult\t2015-10-08\t2015-10-12\t\tRegistered Voters\t2002\t2.0\tInternet\tNonpartisan\tNone\n10.0\t80.0\t\t\t10.0\tmorning-consult-22902\tMorning Consult\t2015-10-08\t2015-10-12\t\tRegistered Voters - Democrat\t681\t3.4\tInternet\tNonpartisan\tNone\n77.0\t12.0\t\t\t11.0\tmorning-consult-22902\tMorning Consult\t2015-10-08\t2015-10-12\t\tRegistered Voters - Republican\t596\t3.6\tInternet\tNonpartisan\tNone\n41.0\t34.0\t\t\t25.0\tmorning-consult-22902\tMorning Consult\t2015-10-08\t2015-10-12\t\tRegistered Voters - independent\t725\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t\t\t16.0\tmorning-consult-22858\tMorning Consult\t2015-10-02\t2015-10-05\t\tRegistered Voters\t1983\t2.0\tInternet\tNonpartisan\tNone\n44.0\t44.0\t\t\t12.0\tppp-d-22856\tPPP (D)\t2015-10-01\t2015-10-04\t\tLikely Voters\t1338\t2.7\tIVR/Online\tPollster\tDem\n14.0\t80.0\t\t\t6.0\tppp-d-22856\tPPP (D)\t2015-10-01\t2015-10-04\t\tLikely Voters - Democrat\t551\t4.2\tIVR/Online\tPollster\tDem\n78.0\t9.0\t\t\t12.0\tppp-d-22856\tPPP (D)\t2015-10-01\t2015-10-04\t\tLikely Voters - Republican\t627\t3.9\tIVR/Online\tPollster\tDem\n48.0\t32.0\t\t\t21.0\tppp-d-22856\tPPP (D)\t2015-10-01\t2015-10-04\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n52.0\t48.0\t\t\t\tgravis-marketing-oann-22863\tGravis Marketing/OANN\t2015-09-30\t2015-10-01\t\tRegistered Voters\t2665\t1.9\tAutomated Phone\tSponsor\tRep\n42.0\t45.0\t\t\t13.0\tmorning-consult-22814\tMorning Consult\t2015-09-24\t2015-09-27\t\tRegistered Voters\t1543\t2.0\tInternet\tNonpartisan\tNone\n10.0\t84.0\t\t\t6.0\tmorning-consult-22814\tMorning Consult\t2015-09-24\t2015-09-27\t\tRegistered Voters - Democrat\t551\t\tInternet\tNonpartisan\tNone\n76.0\t11.0\t\t\t13.0\tmorning-consult-22814\tMorning Consult\t2015-09-24\t2015-09-27\t\tRegistered Voters - Republican\t504\t\tInternet\tNonpartisan\tNone\n42.0\t38.0\t\t\t21.0\tmorning-consult-22814\tMorning Consult\t2015-09-24\t2015-09-27\t\tRegistered Voters - independent\t488\t\tInternet\tNonpartisan\tNone\n39.0\t49.0\t\t10.0\t2.0\tnbc-wsj-22808\tNBC/WSJ\t2015-09-20\t2015-09-24\t\tAdults\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n42.0\t46.0\t\t3.0\t9.0\tfox-22789\tFOX\t2015-09-20\t2015-09-22\t\tRegistered Voters\t1013\t3.0\tLive Phone\tNonpartisan\tNone\n43.0\t45.0\t\t2.0\t10.0\tquinnipiac-22788\tQuinnipiac\t2015-09-17\t2015-09-21\t\tRegistered Voters\t1574\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t90.0\t\t1.0\t4.0\tquinnipiac-22788\tQuinnipiac\t2015-09-17\t2015-09-21\t\tRegistered Voters - Democrat\t587\t4.0\tLive Phone\tNonpartisan\tNone\n79.0\t10.0\t\t2.0\t10.0\tquinnipiac-22788\tQuinnipiac\t2015-09-17\t2015-09-21\t\tRegistered Voters - Republican\t737\t3.6\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t\t2.0\t13.0\tquinnipiac-22788\tQuinnipiac\t2015-09-17\t2015-09-21\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t\t\t14.0\tmorning-consult-22772\tMorning Consult\t2015-09-18\t2015-09-20\t\tRegistered Voters\t4033\t2.0\tInternet\tNonpartisan\tNone\n40.0\t44.0\t\t\t16.0\tmorning-consult-22752\tMorning Consult\t2015-09-11\t2015-09-13\t\tRegistered Voters\t2023\t2.0\tInternet\tNonpartisan\tNone\n12.0\t77.0\t\t\t11.0\tmorning-consult-22752\tMorning Consult\t2015-09-11\t2015-09-13\t\tRegistered Voters - Democrat\t806\t\tInternet\tNonpartisan\tNone\n76.0\t10.0\t\t\t14.0\tmorning-consult-22752\tMorning Consult\t2015-09-11\t2015-09-13\t\tRegistered Voters - Republican\t623\t\tInternet\tNonpartisan\tNone\n39.0\t36.0\t\t\t25.0\tmorning-consult-22752\tMorning Consult\t2015-09-11\t2015-09-13\t\tRegistered Voters - independent\t594\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t\t7.0\t5.0\tabc-post-22720\tABC/Post\t2015-09-07\t2015-09-10\t\tRegistered Voters\t821\t4.0\tLive Phone\tNonpartisan\tNone\n40.0\t53.0\t\t\t7.0\tmsnbc-telemundo-marist-22763\tMSNBC/Telemundo/Marist\t2015-08-26\t2015-09-09\t\tRegistered Voters\t1115\t2.9\tLive Phone\tSponsor\tOther\n9.0\t88.0\t\t\t3.0\tmsnbc-telemundo-marist-22763\tMSNBC/Telemundo/Marist\t2015-08-26\t2015-09-09\t\tRegistered Voters - Democrat\t\t\tLive Phone\tSponsor\tOther\n79.0\t15.0\t\t\t6.0\tmsnbc-telemundo-marist-22763\tMSNBC/Telemundo/Marist\t2015-08-26\t2015-09-09\t\tRegistered Voters - Republican\t\t\tLive Phone\tSponsor\tOther\n41.0\t50.0\t\t\t9.0\tmsnbc-telemundo-marist-22763\tMSNBC/Telemundo/Marist\t2015-08-26\t2015-09-09\t\tRegistered Voters - independent\t\t\tLive Phone\tSponsor\tOther\n47.0\t43.0\t\t\t11.0\temerson-college-polling-society-22699\tEmerson College Polling Society\t2015-09-05\t2015-09-08\t\tLikely Voters\t955\t3.1\tAutomated Phone\tNonpartisan\tNone\n48.0\t48.0\t\t3.0\t0.0\tcnn-22704\tCNN\t2015-09-04\t2015-09-08\t\tRegistered Voters\t930\t3.0\tLive Phone\tNonpartisan\tNone\n10.0\t89.0\t\t1.0\t\tcnn-22704\tCNN\t2015-09-04\t2015-09-08\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t10.0\t\t4.0\t\tcnn-22704\tCNN\t2015-09-04\t2015-09-08\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t5.0\t\tcnn-22704\tCNN\t2015-09-04\t2015-09-08\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t42.0\t\t\t15.0\tmorning-consult-22703\tMorning Consult\t2015-09-04\t2015-09-07\t\tRegistered Voters\t2008\t2.0\tInternet\tNonpartisan\tNone\n45.0\t40.0\t\t\t16.0\tsurveyusa-22683\tSurveyUSA\t2015-09-02\t2015-09-03\t\tRegistered Voters\t900\t3.3\tIVR/Online\tNonpartisan\tNone\n44.0\t46.0\t\t\t11.0\tppp-d-22654\tPPP (D)\t2015-08-28\t2015-08-30\t\tLikely Voters\t1254\t2.8\tIVR/Online\tPollster\tDem\n17.0\t79.0\t\t\t4.0\tppp-d-22654\tPPP (D)\t2015-08-28\t2015-08-30\t\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n77.0\t8.0\t\t\t15.0\tppp-d-22654\tPPP (D)\t2015-08-28\t2015-08-30\t\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n46.0\t37.0\t\t\t17.0\tppp-d-22654\tPPP (D)\t2015-08-28\t2015-08-30\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n42.0\t43.0\t\t\t15.0\tmorning-consult-22640\tMorning Consult\t2015-08-28\t2015-08-30\t\tRegistered Voters\t2015\t2.0\tInternet\tNonpartisan\tNone\n15.0\t75.0\t\t\t10.0\tmorning-consult-22640\tMorning Consult\t2015-08-28\t2015-08-30\t\tRegistered Voters - Democrat\t752\t\tInternet\tNonpartisan\tNone\n75.0\t9.0\t\t\t16.0\tmorning-consult-22640\tMorning Consult\t2015-08-28\t2015-08-30\t\tRegistered Voters - Republican\t605\t\tInternet\tNonpartisan\tNone\n42.0\t39.0\t\t\t19.0\tmorning-consult-22640\tMorning Consult\t2015-08-28\t2015-08-30\t\tRegistered Voters - independent\t657\t\tInternet\tNonpartisan\tNone\n41.0\t45.0\t\t3.0\t11.0\tquinnipiac-22620\tQuinnipiac\t2015-08-20\t2015-08-25\t\tRegistered Voters\t1563\t2.5\tLive Phone\tNonpartisan\tNone\n5.0\t91.0\t\t1.0\t4.0\tquinnipiac-22620\tQuinnipiac\t2015-08-20\t2015-08-25\t\tRegistered Voters - Democrat\t647\t3.9\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t\t3.0\t8.0\tquinnipiac-22620\tQuinnipiac\t2015-08-20\t2015-08-25\t\tRegistered Voters - Republican\t666\t3.8\tLive Phone\tNonpartisan\tNone\n46.0\t34.0\t\t3.0\t17.0\tquinnipiac-22620\tQuinnipiac\t2015-08-20\t2015-08-25\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n54.0\t46.0\t\t\t\tgravis-marketing-oann-22623\tGravis Marketing/OANN\t2015-08-21\t2015-08-22\t\tRegistered Voters\t3567\t2.0\tAutomated Phone\tSponsor\tRep\n45.0\t51.0\t\t4.0\t0.0\tcnn-22576\tCNN\t2015-08-13\t2015-08-16\t\tRegistered Voters\t897\t3.5\tLive Phone\tNonpartisan\tNone\n7.0\t92.0\t\t\t2.0\tcnn-22576\tCNN\t2015-08-13\t2015-08-16\t\tRegistered Voters - Democrat\t358\t5.0\tLive Phone\tNonpartisan\tNone\n84.0\t13.0\t\t3.0\t\tcnn-22576\tCNN\t2015-08-13\t2015-08-16\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t48.0\t\t8.0\t1.0\tcnn-22576\tCNN\t2015-08-13\t2015-08-16\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t47.0\t\t2.0\t10.0\tfox-22563\tFOX\t2015-08-11\t2015-08-13\t\tRegistered Voters\t1008\t3.0\tLive Phone\tNonpartisan\tNone\n29.0\t43.0\t\t11.0\t17.0\tipsos-reuters-22529\tIpsos/Reuters\t2015-08-06\t2015-08-10\t\tAdults\t823\t4.4\tInternet\tNonpartisan\tNone\n41.0\t47.0\t\t\t13.0\tmorning-consult-22526\tMorning Consult\t2015-08-07\t2015-08-09\t\tRegistered Voters\t2029\t2.0\tInternet\tNonpartisan\tNone\n14.0\t78.0\t\t\t7.0\tmorning-consult-22526\tMorning Consult\t2015-08-07\t2015-08-09\t\tRegistered Voters - Democrat\t721\t\tInternet\tNonpartisan\tNone\n74.0\t13.0\t\t\t14.0\tmorning-consult-22526\tMorning Consult\t2015-08-07\t2015-08-09\t\tRegistered Voters - Republican\t582\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t\t\t17.0\tmorning-consult-22526\tMorning Consult\t2015-08-07\t2015-08-09\t\tRegistered Voters - independent\t726\t\tInternet\tNonpartisan\tNone\n49.0\t50.0\t\t\t\tgravis-marketing-oann-22496\tGravis Marketing/OANN\t2015-07-31\t2015-08-01\t\tRegistered Voters\t3477\t2.0\tAutomated Phone\tSponsor\tRep\n40.0\t49.0\t\t\t12.0\temerson-college-polling-society-22537\tEmerson College Polling Society\t2015-07-26\t2015-07-28\t\tLikely Voters\t950\t3.4\tAutomated Phone\tNonpartisan\tNone\n36.0\t48.0\t\t4.0\t12.0\tquinnipiac-22459\tQuinnipiac\t2015-07-23\t2015-07-28\t\tRegistered Voters\t1644\t2.4\tLive Phone\tNonpartisan\tNone\n3.0\t90.0\t\t1.0\t6.0\tquinnipiac-22459\tQuinnipiac\t2015-07-23\t2015-07-28\t\tRegistered Voters - Democrat\t681\t3.8\tLive Phone\tNonpartisan\tNone\n77.0\t8.0\t\t2.0\t13.0\tquinnipiac-22459\tQuinnipiac\t2015-07-23\t2015-07-28\t\tRegistered Voters - Republican\t710\t3.7\tLive Phone\tNonpartisan\tNone\n35.0\t45.0\t\t7.0\t13.0\tquinnipiac-22459\tQuinnipiac\t2015-07-23\t2015-07-28\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t54.0\t\t\t8.0\tmcclatchy-marist-22466\tMcClatchy/Marist\t2015-07-22\t2015-07-28\t\tRegistered Voters\t964\t3.2\tLive Phone\tNonpartisan\tNone\n5.0\t92.0\t\t\t3.0\tmcclatchy-marist-22466\tMcClatchy/Marist\t2015-07-22\t2015-07-28\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n74.0\t20.0\t\t\t6.0\tmcclatchy-marist-22466\tMcClatchy/Marist\t2015-07-22\t2015-07-28\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t48.0\t\t\t11.0\tmcclatchy-marist-22466\tMcClatchy/Marist\t2015-07-22\t2015-07-28\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t56.0\t\t4.0\t0.0\tcnn-22434\tCNN\t2015-07-22\t2015-07-25\t\tRegistered Voters\t898\t3.5\tLive Phone\tNonpartisan\tNone\n10.0\t89.0\t\t2.0\t\tcnn-22434\tCNN\t2015-07-22\t2015-07-25\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n72.0\t24.0\t\t3.0\t\tcnn-22434\tCNN\t2015-07-22\t2015-07-25\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t54.0\t\t6.0\t\tcnn-22434\tCNN\t2015-07-22\t2015-07-25\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t50.0\t\t\t13.0\tppp-d-22415\tPPP (D)\t2015-07-20\t2015-07-21\t\tLikely Voters\t1087\t3.0\tIVR/Online\tPollster\tDem\n8.0\t86.0\t\t\t6.0\tppp-d-22415\tPPP (D)\t2015-07-20\t2015-07-21\t\tLikely Voters - Democrat\t496\t4.4\tIVR/Online\tPollster\tDem\n73.0\t12.0\t\t\t15.0\tppp-d-22415\tPPP (D)\t2015-07-20\t2015-07-21\t\tLikely Voters - Republican\t524\t4.3\tIVR/Online\tPollster\tDem\n37.0\t41.0\t\t\t21.0\tppp-d-22415\tPPP (D)\t2015-07-20\t2015-07-21\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n34.0\t51.0\t\t\t16.0\tsuffolk-usa-today-22380\tSuffolk/USA Today\t2015-07-09\t2015-07-12\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t88.0\t\t\t7.0\tsuffolk-usa-today-22380\tSuffolk/USA Today\t2015-07-09\t2015-07-12\t\tLikely Voters - Democrat\t369\t\tLive Phone\tNonpartisan\tNone\n68.0\t15.0\t\t\t18.0\tsuffolk-usa-today-22380\tSuffolk/USA Today\t2015-07-09\t2015-07-12\t\tLikely Voters - Republican\t313\t\tLive Phone\tNonpartisan\tNone\n34.0\t44.0\t\t\t23.0\tsuffolk-usa-today-22380\tSuffolk/USA Today\t2015-07-09\t2015-07-12\t\tLikely Voters - independent\t315\t\tLive Phone\tNonpartisan\tNone\n35.0\t59.0\t\t6.0\t0.0\tcnn-22330\tCNN\t2015-06-26\t2015-06-28\t\tRegistered Voters\t890\t3.5\tLive Phone\tNonpartisan\tNone\n8.0\t91.0\t\t1.0\t\tcnn-22330\tCNN\t2015-06-26\t2015-06-28\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n71.0\t19.0\t\t10.0\t\tcnn-22330\tCNN\t2015-06-26\t2015-06-28\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n33.0\t59.0\t\t7.0\t\tcnn-22330\tCNN\t2015-06-26\t2015-06-28\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t51.0\t\t3.0\t12.0\tfox-22300\tFOX\t2015-06-21\t2015-06-23\t\tRegistered Voters\t1005\t3.0\tLive Phone\tNonpartisan\tNone\n35.0\t46.0\t\t\t18.0\tyougov-economist-22307\tYouGov/Economist\t2015-06-20\t2015-06-22\t\tRegistered Voters\t869\t\tInternet\tNonpartisan\tNone\n6.0\t86.0\t\t\t8.0\tyougov-economist-22307\tYouGov/Economist\t2015-06-20\t2015-06-22\t\tRegistered Voters - Democrat\t313\t\tInternet\tNonpartisan\tNone\n65.0\t12.0\t\t\t24.0\tyougov-economist-22307\tYouGov/Economist\t2015-06-20\t2015-06-22\t\tRegistered Voters - Republican\t235\t\tInternet\tNonpartisan\tNone\n34.0\t45.0\t\t\t21.0\tyougov-economist-22307\tYouGov/Economist\t2015-06-20\t2015-06-22\t\tRegistered Voters - independent\t266\t\tInternet\tNonpartisan\tNone\n32.0\t50.0\t\t3.0\t14.0\tquinnipiac-22181\tQuinnipiac\t2015-05-19\t2015-05-26\t\tRegistered Voters\t1711\t2.4\tLive Phone\tNonpartisan\tNone\n5.0\t89.0\t\t0.0\t5.0\tquinnipiac-22181\tQuinnipiac\t2015-05-19\t2015-05-26\t\tRegistered Voters - Democrat\t748\t3.6\tLive Phone\tNonpartisan\tNone\n68.0\t9.0\t\t4.0\t19.0\tquinnipiac-22181\tQuinnipiac\t2015-05-19\t2015-05-26\t\tRegistered Voters - Republican\t679\t3.8\tLive Phone\tNonpartisan\tNone\n32.0\t47.0\t\t3.0\t18.0\tquinnipiac-22181\tQuinnipiac\t2015-05-19\t2015-05-26\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/AK.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n48.0\t31.0\t12.0\t7.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t409\t\tInternet\tNonpartisan\tNone\n53.0\t41.0\t\t\t7.0\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t308\t\tInternet\tNonpartisan\tNone\n47.0\t31.0\t13.0\t6.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t382\t\tInternet\tNonpartisan\tNone\n46.0\t33.0\t13.0\t6.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t369\t\tInternet\tNonpartisan\tNone\n46.0\t35.0\t11.0\t5.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t334\t\tInternet\tNonpartisan\tNone\n47.0\t35.0\t12.0\t3.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t303\t\tInternet\tNonpartisan\tNone\n46.0\t37.0\t14.0\t1.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t268\t\tInternet\tNonpartisan\tNone\n46.0\t38.0\t13.0\t2.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t300\t\tInternet\tNonpartisan\tNone\n47.0\t39.0\t11.0\t2.0\t1.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t294\t\tInternet\tNonpartisan\tNone\n55.0\t41.0\t\t\t4.0\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t304\t\tInternet\tNonpartisan\tNone\n45.0\t33.0\t16.0\t4.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t448\t\tInternet\tNonpartisan\tNone\n43.0\t47.0\t7.0\t3.0\t\tcraciun-research-d-26551\tCraciun Research (D)\t2016-10-21\t2016-10-26\tIf the election were held today, which of the following presidential candidates would you be voting for?\tLikely Voters\t400\t4.9\tLive Phone\tPollster\tDem\n46.0\t31.0\t16.0\t5.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t462\t\tInternet\tNonpartisan\tNone\n46.0\t31.0\t16.0\t5.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t443\t\tInternet\tNonpartisan\tNone\n47.0\t29.0\t17.0\t5.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t388\t\tInternet\tNonpartisan\tNone\n55.0\t41.0\t\t\t5.0\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t305\t\tInternet\tNonpartisan\tNone\n54.0\t41.0\t\t5.0\t\tupi-cvoter-26289\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t304\t\tInternet\tNonpartisan\tNone\n53.0\t41.0\t\t5.0\t\tupi-cvoter-26023\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t305\t\tInternet\tNonpartisan\tNone\n37.0\t34.0\t10.0\t2.0\t18.0\tmoore-r-murkowski-26094\tMoore (R-Murkowski)\t2016-10-05\t2016-10-06\t\tLikely Voters\t500\t4.0\tLive Phone\tSponsor\tRep\n46.0\t42.0\t\t\t12.0\talaska-survey-research-alaska-dispatch-news-26166\tAlaska Survey Research/Alaska Dispatch News\t2016-09-28\t2016-10-02\t\tRegistered Voters\t660\t3.8\tLive Phone\tNonpartisan\tNone\n36.0\t31.0\t18.0\t6.0\t9.0\talaska-survey-research-alaska-dispatch-news-26166\tAlaska Survey Research/Alaska Dispatch News\t2016-09-28\t2016-10-02\t\tRegistered Voters\t660\t3.8\tLive Phone\tNonpartisan\tNone\n55.0\t40.0\t\t5.0\t\tupi-cvoter-25899\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t457\t\tInternet\tNonpartisan\tNone\n55.0\t40.0\t\t5.0\t\tupi-cvoter-25728\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t460\t\tInternet\tNonpartisan\tNone\n39.0\t31.0\t9.0\t4.0\t16.0\tmoore-r-murkowski-26093\tMoore (R-Murkowski)\t2016-09-13\t2016-09-15\t\tLikely Voters\t500\t4.0\tLive Phone\tSponsor\tRep\n47.0\t39.0\t\t\t14.0\twashpost-surveymonkey-25357\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t989\t\tInternet\tNonpartisan\tNone\n38.0\t31.0\t19.0\t7.0\t6.0\twashpost-surveymonkey-25357\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t989\t\tInternet\tNonpartisan\tNone\n39.0\t29.0\t10.0\t4.0\t17.0\tmoore-r-murkowski-25407\tMoore (R-Murkowski)\t2016-08-27\t2016-08-29\t\tLikely Voters\t500\t4.0\tLive Phone\tSponsor\tRep"
  },
  {
    "path": "week-6/data/AL.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n55.0\t36.0\t8.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1131\t\tInternet\tNonpartisan\tNone\n58.0\t37.0\t\t5.0\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t341\t\tInternet\tNonpartisan\tNone\n54.0\t36.0\t8.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t971\t\tInternet\tNonpartisan\tNone\n54.0\t38.0\t\t8.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t585\t\tInternet\tNonpartisan\tNone\n54.0\t36.0\t7.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t900\t\tInternet\tNonpartisan\tNone\n52.0\t36.0\t8.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t722\t\tInternet\tNonpartisan\tNone\n55.0\t38.0\t\t7.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t578\t\tInternet\tNonpartisan\tNone\n53.0\t35.0\t8.0\t4.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t621\t\tInternet\tNonpartisan\tNone\n52.0\t37.0\t6.0\t4.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t503\t\tInternet\tNonpartisan\tNone\n55.0\t35.0\t8.0\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t485\t\tInternet\tNonpartisan\tNone\n54.0\t36.0\t9.0\t1.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t410\t\tInternet\tNonpartisan\tNone\n58.0\t37.0\t\t5.0\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t349\t\tInternet\tNonpartisan\tNone\n53.0\t36.0\t10.0\t1.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t479\t\tInternet\tNonpartisan\tNone\n51.0\t39.0\t\t10.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t505\t\tInternet\tNonpartisan\tNone\n52.0\t36.0\t11.0\t1.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t486\t\tInternet\tNonpartisan\tNone\n52.0\t36.0\t11.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t415\t\tInternet\tNonpartisan\tNone\n51.0\t37.0\t11.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t346\t\tInternet\tNonpartisan\tNone\n58.0\t37.0\t\t5.0\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t341\t\tInternet\tNonpartisan\tNone\n52.0\t38.0\t\t10.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t773\t\tInternet\tNonpartisan\tNone\n57.0\t38.0\t5.0\t\tupi-cvoter-26288\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t327\t\tInternet\tNonpartisan\tNone\n54.0\t38.0\t\t8.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t550\t\tInternet\tNonpartisan\tNone\n56.0\t38.0\t6.0\t\tupi-cvoter-26022\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t332\t\tInternet\tNonpartisan\tNone\n57.0\t37.0\t\t6.0\tipsos-reuters-26097\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t580\t\tInternet\tNonpartisan\tNone\n59.0\t36.0\t5.0\t\tupi-cvoter-25898\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t545\t\tInternet\tNonpartisan\tNone\n56.0\t37.0\t\t7.0\tipsos-reuters-25850\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t518\t\tInternet\tNonpartisan\tNone\n58.0\t36.0\t5.0\t\tupi-cvoter-25727\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t558\t\tInternet\tNonpartisan\tNone\n53.0\t39.0\t\t8.0\tipsos-reuters-25678\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t648\t\tInternet\tNonpartisan\tNone\n53.0\t40.0\t\t7.0\tipsos-reuters-25537\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t628\t\tInternet\tNonpartisan\tNone\n57.0\t36.0\t\t7.0\twashpost-surveymonkey-25356\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t958\t\tInternet\tNonpartisan\tNone\n53.0\t31.0\t10.0\t5.0\twashpost-surveymonkey-25356\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t958\t\tInternet\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/AR.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n56.0\t32.0\t9.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t930\t\tInternet\tNonpartisan\tNone\n57.0\t37.0\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t323\t\tInternet\tNonpartisan\tNone\n55.0\t34.0\t9.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t798\t\tInternet\tNonpartisan\tNone\n53.0\t38.0\t\t9.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t515\t\tInternet\tNonpartisan\tNone\n55.0\t34.0\t9.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t781\t\tInternet\tNonpartisan\tNone\n55.0\t34.0\t9.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t696\t\tInternet\tNonpartisan\tNone\n50.0\t39.0\t\t11.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t493\t\tInternet\tNonpartisan\tNone\n53.0\t36.0\t8.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t593\t\tInternet\tNonpartisan\tNone\n52.0\t38.0\t8.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t475\t\tInternet\tNonpartisan\tNone\n52.0\t39.0\t7.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t484\t\tInternet\tNonpartisan\tNone\n53.0\t37.0\t7.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t446\t\tInternet\tNonpartisan\tNone\n58.0\t37.0\t5.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t324\t\tInternet\tNonpartisan\tNone\n52.0\t36.0\t9.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t524\t\tInternet\tNonpartisan\tNone\n53.0\t34.0\t\t13.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t681\t\tInternet\tNonpartisan\tNone\n53.0\t34.0\t11.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t570\t\tInternet\tNonpartisan\tNone\n51.0\t31.0\t\t18.0\tu-of-arkansas-26670\tU of Arkansas\t2016-10-18\t2016-10-25\t\tLikely Voters\t585\t4.1\tLive Phone\tNonpartisan\tNone\n54.0\t33.0\t12.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t498\t\tInternet\tNonpartisan\tNone\n54.0\t32.0\t11.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t410\t\tInternet\tNonpartisan\tNone\n58.0\t37.0\t6.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t314\t\tInternet\tNonpartisan\tNone\n53.0\t34.0\t\t13.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t464\t\tInternet\tNonpartisan\tNone\n58.0\t37.0\t6.0\t\tupi-cvoter-26291\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t323\t\tInternet\tNonpartisan\tNone\n52.0\t36.0\t\t12.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t495\t\tInternet\tNonpartisan\tNone\n56.0\t37.0\t7.0\t\tupi-cvoter-26025\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t319\t\tInternet\tNonpartisan\tNone\n53.0\t38.0\t\t9.0\tipsos-reuters-26099\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t475\t\tInternet\tNonpartisan\tNone\n59.0\t36.0\t6.0\t\tupi-cvoter-25901\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t483\t\tInternet\tNonpartisan\tNone\n50.0\t41.0\t\t9.0\tipsos-reuters-25852\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t462\t\tInternet\tNonpartisan\tNone\n58.0\t36.0\t7.0\t\tupi-cvoter-25730\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t483\t\tInternet\tNonpartisan\tNone\n49.0\t41.0\t\t10.0\tipsos-reuters-25680\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t433\t\tInternet\tNonpartisan\tNone\n51.0\t41.0\t\t8.0\tipsos-reuters-25539\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t437\t\tInternet\tNonpartisan\tNone\n54.0\t41.0\t\t5.0\twashpost-surveymonkey-25358\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t765\t\tInternet\tNonpartisan\tNone\n46.0\t37.0\t14.0\t4.0\twashpost-surveymonkey-25358\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t765\t\tInternet\tNonpartisan\tNone\n47.0\t36.0\t8.0\t9.0\thendrix-college-talk-business-24779\tHendrix College/Talk Business\t2016-06-21\t2016-06-21\t\tRegistered Voters\t751\t3.6\tAutomated Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/AZ.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n42.0\t45.0\t7.0\t3.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t2609\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t5.0\t3.0\t8.0\tinsights-west-26813\tInsights West\t2016-11-04\t2016-11-06\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t392\t4.9\tInternet\tNonpartisan\tNone\n47.0\t44.0\t4.0\t4.0\t1.0\tdata-orbital-r-26792\tData Orbital (R)\t2016-11-04\t2016-11-06\t\tLikely Voters\t550\t4.12\tLive Phone\tPollster\tRep\n50.0\t43.0\t\t7.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t354\t\tInternet\tNonpartisan\tNone\n43.0\t45.0\t6.0\t3.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t2322\t\tInternet\tNonpartisan\tNone\n47.0\t42.0\t\t\t11.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t857\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t7.0\t3.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t2154\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t8.0\t3.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1748\t\tInternet\tNonpartisan\tNone\n48.0\t42.0\t\t\t10.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t504\t\tInternet\tNonpartisan\tNone\n47.0\t39.0\t4.0\t4.0\t7.0\tdata-orbital-r-26711\tData Orbital (R)\t2016-11-01\t2016-11-02\t\tLikely Voters\t550\t4.12\tLive Phone\tPollster\tRep\n43.0\t43.0\t8.0\t3.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1461\t\tInternet\tNonpartisan\tNone\n46.0\t41.0\t\t12.0\t2.0\tnbc-wsj-marist-26682\tNBC/WSJ/Marist\t2016-10-30\t2016-11-01\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t719\t3.7\tLive Phone\tNonpartisan\tNone\n45.0\t40.0\t9.0\t5.0\t1.0\tnbc-wsj-marist-26682\tNBC/WSJ/Marist\t2016-10-30\t2016-11-01\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t719\t3.7\tLive Phone\tNonpartisan\tNone\n42.0\t41.0\t8.0\t3.0\t6.0\tlucid-the-times-picayune-26645\tLucid/The Times-Picayune\t2016-10-28\t2016-11-01\t\tLikely Voters\t1113\t\tInternet\tNonpartisan\tNone\n49.0\t44.0\t5.0\t1.0\t0.0\tcnn-26620\tCNN\t2016-10-27\t2016-11-01\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t769\t3.5\tLive Phone\tNonpartisan\tNone\n51.0\t46.0\t\t2.0\t0.0\tcnn-26620\tCNN\t2016-10-27\t2016-11-01\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump as the Republican Party’s candidate, who would you be more likely to vote for?\tLikely Voters\t769\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t42.0\t8.0\t3.0\t4.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1320\t\tInternet\tNonpartisan\tNone\n44.0\t45.0\t7.0\t4.0\t\tsaguaro-26651\tSaguaro\t2016-10-29\t2016-10-31\t\tLikely Voters\t2229\t3.0\tInternet\tNonpartisan\tNone\n44.0\t43.0\t8.0\t2.0\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1457\t\tInternet\tNonpartisan\tNone\n45.0\t41.0\t3.0\t3.0\t8.0\tdata-orbital-r-26599\tData Orbital (R)\t2016-10-29\t2016-10-30\t\tLikely Voters\t550\t4.12\tLive Phone\tPollster\tRep\n43.0\t43.0\t8.0\t3.0\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t1342\t\tInternet\tNonpartisan\tNone\n51.0\t43.0\t\t5.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t373\t\tInternet\tNonpartisan\tNone\n44.0\t42.0\t\t9.0\t5.0\tcbs-yougov-26549\tCBS/YouGov\t2016-10-26\t2016-10-28\t\tLikely Voters\t994\t4.3\tInternet\tNonpartisan\tNone\n43.0\t42.0\t9.0\t3.0\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1747\t\tInternet\tNonpartisan\tNone\n42.0\t40.0\t5.0\t4.0\t10.0\tdata-orbital-r-26536\tData Orbital (R)\t2016-10-26\t2016-10-27\t\tLikely Voters\t550\t4.12\tLive Phone\tPollster\tRep\n42.0\t43.0\t\t\t15.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t954\t\tInternet\tNonpartisan\tNone\n43.0\t42.0\t10.0\t4.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1752\t\tInternet\tNonpartisan\tNone\n46.0\t48.0\t5.0\t1.0\t\tsaguaro-26523\tSaguaro\t2016-10-22\t2016-10-24\t\tLikely Voters\t2385\t3.0\tInternet\tNonpartisan\tNone\n46.0\t45.0\t4.0\t3.0\t3.0\tmonmouth-university-26428\tMonmouth University\t2016-10-21\t2016-10-24\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t401\t4.9\tLive Phone\tNonpartisan\tNone\n42.0\t41.0\t12.0\t4.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1550\t\tInternet\tNonpartisan\tNone\n41.0\t40.0\t13.0\t4.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1291\t\tInternet\tNonpartisan\tNone\n51.0\t44.0\t\t5.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t363\t\tInternet\tNonpartisan\tNone\n45.0\t43.0\t\t\t12.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t675\t\tInternet\tNonpartisan\tNone\n41.0\t41.0\t5.0\t3.0\t10.0\tdata-orbital-r-26340\tData Orbital (R)\t2016-10-17\t2016-10-18\t\tLikely Voters\t550\t4.12\tLive Phone\tPollster\tRep\n45.0\t38.0\t\t8.0\t9.0\tipsos-reuters-26443\tIpsos/Reuters\t2016-10-06\t2016-10-18\t\tLikely Voters\t1538\t2.8\tInternet\tNonpartisan\tNone\n44.0\t39.0\t6.0\t4.0\t6.0\tipsos-reuters-26443\tIpsos/Reuters\t2016-10-06\t2016-10-18\t\tLikely Voters\t1538\t2.8\tInternet\tNonpartisan\tNone\n51.0\t44.0\t\t6.0\t\tupi-cvoter-26290\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t355\t\tInternet\tNonpartisan\tNone\n47.0\t46.0\t\t\t7.0\twashpost-surveymonkey-26238\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1028\t\tInternet\tNonpartisan\tNone\n44.0\t41.0\t10.0\t3.0\t2.0\twashpost-surveymonkey-26238\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1028\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t7.0\t4.0\t8.0\tarizona-republic-morrison-cronkite-news-26264\tArizona Republic/Morrison/Cronkite News \t2016-10-10\t2016-10-15\t\tLikely Voters\t713\t\tLive Phone\tNonpartisan\tNone\n37.0\t39.0\t8.0\t8.0\t10.0\thighground-26220\tHighGround\t2016-10-14\t2016-10-14\t\tLikely Voters\t400\t4.88\tLive Phone\tNonpartisan\tNone\n45.0\t39.0\t\t\t16.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t1665\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t5.0\t\t10.0\tdata-orbital-r-26205\tData Orbital (R)\t2016-10-11\t2016-10-12\t\tLikely Voters\t550\t4.12\tLive Phone\tPollster\tRep\n50.0\t44.0\t\t6.0\t\tupi-cvoter-26024\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t358\t\tInternet\tNonpartisan\tNone\n49.0\t42.0\t\t\t9.0\tipsos-reuters-26098\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t903\t\tInternet\tNonpartisan\tNone\n52.0\t42.0\t\t6.0\t\tupi-cvoter-25900\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t556\t\tInternet\tNonpartisan\tNone\n42.0\t42.0\t5.0\t1.0\t9.0\toh-predictive-insights-r-25986\tOH Predictive Insights (R)\t2016-09-28\t2016-09-30\t\tLikely Voters\t718\t3.66\tIVR/Live Phone\tPollster\tRep\n46.0\t44.0\t\t\t10.0\tipsos-reuters-25851\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t802\t\tInternet\tNonpartisan\tNone\n52.0\t42.0\t\t7.0\t\tupi-cvoter-25729\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t554\t\tInternet\tNonpartisan\tNone\n40.0\t38.0\t9.0\t\t14.0\tdata-orbital-r-25721\tData Orbital (R)\t2016-09-20\t2016-09-22\t\tLikely Voters\t550\t4.12\tLive Phone\tPollster\tRep\n48.0\t42.0\t\t\t10.0\tipsos-reuters-25679\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t665\t\tInternet\tNonpartisan\tNone\n46.0\t39.0\t\t\t15.0\tipsos-reuters-25538\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t711\t\tInternet\tNonpartisan\tNone\n37.0\t33.0\t8.0\t3.0\t19.0\tinsights-west-25626\tInsights West\t2016-09-12\t2016-09-14\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t484\t4.5\tInternet\tNonpartisan\tNone\n42.0\t41.0\t\t12.0\t4.0\tnbc-wsj-marist-25445\tNBC/WSJ/Marist\t2016-09-06\t2016-09-08\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t649\t3.8\tLive Phone\tNonpartisan\tNone\n40.0\t38.0\t12.0\t4.0\t6.0\tnbc-wsj-marist-25445\tNBC/WSJ/Marist\t2016-09-06\t2016-09-08\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t649\t3.8\tLive Phone\tNonpartisan\tNone\n45.0\t46.0\t\t\t9.0\twashpost-surveymonkey-25351\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2026\t\tInternet\tNonpartisan\tNone\n39.0\t37.0\t13.0\t4.0\t6.0\twashpost-surveymonkey-25351\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2026\t\tInternet\tNonpartisan\tNone\n34.0\t35.0\t7.0\t2.0\t23.0\tarizona-republic-morrison-cronkite-news-26257\tArizona Republic/Morrison/Cronkite News \t2016-08-17\t2016-08-31\t\tLikely Voters\t704\t3.3\tLive Phone\tNonpartisan\tNone\n46.0\t43.0\t\t\t11.0\tppp-d-nelp-25314\tPPP (D-NELP) \t2016-08-26\t2016-08-28\tThe candidates for President are Democrat Hillary Clinton and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t837\t3.4\tIVR/Online\tSponsor\tDem\n39.0\t40.0\t7.0\t1.0\t13.0\toh-predictive-insights-r-25280\tOH Predictive Insights (R)\t2016-08-25\t2016-08-27\t\tLikely Voters\t728\t3.63\tIVR/Live Phone\tPollster\tRep\n49.0\t44.0\t\t7.0\t0.0\tcnn-25252\tCNN\t2016-08-18\t2016-08-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t809\t3.5\tLive Phone\tNonpartisan\tNone\n45.0\t38.0\t12.0\t6.0\t0.0\tcnn-25252\tCNN\t2016-08-18\t2016-08-23\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tLikely Voters\t809\t3.5\tLive Phone\tNonpartisan\tNone\n44.0\t42.0\t\t9.0\t5.0\tcbs-yougov-25079\tCBS/YouGov\t2016-08-02\t2016-08-05\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, who would you vote for? (Voters selecting someone else in the initial question were given a choice of a selection of third party candidates)\tLikely Voters\t1095\t4.8\tInternet\tNonpartisan\tNone\n44.0\t40.0\t\t\t16.0\tppp-d-americans-united-for-change-constitutional-responsibility-project-24785\tPPP (D-Americans United for Change/Constitutional Responsibility Project) \t2016-06-22\t2016-06-23\t\tLikely Voters\t691\t3.7\tIVR/Online\tSponsor\tDem\n42.0\t47.0\t\t6.0\t6.0\toh-predictive-insights-r-24751\tOH Predictive Insights (R)\t2016-06-20\t2016-06-20\t\tLikely Voters\t1060\t3.01\tAutomated Phone\tPollster\tRep\n48.0\t43.0\t\t6.0\t3.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24841\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n45.0\t39.0\t10.0\t3.0\t4.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24841\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n40.0\t38.0\t6.0\t2.0\t13.0\tppp-d-24504\tPPP (D)\t2016-05-13\t2016-05-15\t\tLikely Voters\t896\t3.3\tIVR/Online\tPollster\tDem\n45.0\t41.0\t\t\t14.0\tppp-d-24504\tPPP (D)\t2016-05-13\t2016-05-15\t\tLikely Voters\t896\t3.3\tIVR/Online\tPollster\tDem\n35.0\t42.0\t\t\t23.0\tbehavior-research-center-24357\tBehavior Research Center\t2016-04-04\t2016-04-11\t\tRegistered Voters\t564\t4.2\tLive Phone\tNonpartisan\tNone\n38.0\t38.0\t\t9.0\t15.0\tmerrill-westgroup-24105\tMerrill/WestGroup\t2016-03-07\t2016-03-11\t\tLikely Voters\t701\t3.7\tLive Phone\tNonpartisan\tNone\n44.0\t42.0\t\t\t13.0\tstrategies-360-23359\tStrategies 360\t2015-12-04\t2015-12-09\t\tLikely Voters\t504\t4.4\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/CA.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n31.0\t56.0\t11.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t2712\t\tInternet\tNonpartisan\tNone\n32.0\t54.0\t7.0\t7.0\tinsights-west-26815\tInsights West\t2016-11-04\t2016-11-06\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t401\t4.9\tInternet\tNonpartisan\tNone\n37.0\t58.0\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t507\t\tInternet\tNonpartisan\tNone\n30.0\t56.0\t11.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t2655\t\tInternet\tNonpartisan\tNone\n32.0\t59.0\t\t9.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t1393\t\tInternet\tNonpartisan\tNone\n30.0\t56.0\t11.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t2691\t\tInternet\tNonpartisan\tNone\n29.0\t56.0\t12.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t2528\t\tInternet\tNonpartisan\tNone\n30.0\t60.0\t\t10.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t1524\t\tInternet\tNonpartisan\tNone\n29.0\t56.0\t12.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t2316\t\tInternet\tNonpartisan\tNone\n30.0\t55.0\t12.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t2284\t\tInternet\tNonpartisan\tNone\n35.0\t56.0\t5.0\t4.0\tsurveyusa-kabc-scng-26606\tSurveyUSA/KABC/SCNG\t2016-10-28\t2016-10-31\t\tLikely Voters\t747\t3.6\tIVR/Online\tNonpartisan\tNone\n33.0\t53.0\t7.0\t7.0\tfield-uc-berkeley-yougov-26655\tField/UC Berkeley/YouGov\t2016-10-25\t2016-10-31\t\tLikely Voters\t1498\t\tInternet\tNonpartisan\tNone\n30.0\t55.0\t12.0\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t2505\t\tInternet\tNonpartisan\tNone\n30.0\t55.0\t12.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t2264\t\tInternet\tNonpartisan\tNone\n30.0\t54.0\t8.0\t7.0\tusc-la-times-26726\tUSC/LA Times\t2016-10-22\t2016-10-30\tThinking about the presidential election, if the election for president were held today and the candidates were -- Democrats Hillary Clinton and Tim Kaine, Republicans Donald Trump and Mike Pence, Green Party candidates Jill Stein and Ajamu Baraka, Libertarian Party candidates Gary Johnson and Bill Weld, and Peace and Freedom Party candidates Gloria Estela la Riva and Dennis Banks, for whom would you vote?\tLikely Voters\t1365\t2.4\tLive Phone\tNonpartisan\tNone\n33.0\t58.0\t4.0\t6.0\tusc-la-times-26726\tUSC/LA Times\t2016-10-22\t2016-10-30\tAnd if the election for President were held today and you had to choose between Democrats Hillary Clinton and Tim Kaine, and Republicans Donald Trump and Mike Pence, for whom would you vote?\tLikely Voters\t1365\t2.4\tLive Phone\tNonpartisan\tNone\n38.0\t58.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t481\t\tInternet\tNonpartisan\tNone\n31.0\t54.0\t12.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t2431\t\tInternet\tNonpartisan\tNone\n26.0\t65.0\t\t9.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t1779\t\tInternet\tNonpartisan\tNone\n31.0\t54.0\t12.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t2358\t\tInternet\tNonpartisan\tNone\n31.0\t54.0\t13.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1923\t\tInternet\tNonpartisan\tNone\n31.0\t53.0\t13.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1492\t\tInternet\tNonpartisan\tNone\n38.0\t58.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t507\t\tInternet\tNonpartisan\tNone\n28.0\t54.0\t12.0\t5.0\tppic-26498\tPPIC\t2016-10-14\t2016-10-23\t\tLikely Voters\t1012\t\tLive Phone\tNonpartisan\tNone\n26.0\t64.0\t\t10.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t1013\t\tInternet\tNonpartisan\tNone\n37.0\t58.0\t4.0\t\tupi-cvoter-26292\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t483\t\tInternet\tNonpartisan\tNone\n30.0\t56.0\t6.0\t7.0\tsurveyusa-kabc-scng-26224\tSurveyUSA/KABC/SCNG\t2016-10-13\t2016-10-15\t\tLikely Voters\t725\t3.7\tIVR/Online\tNonpartisan\tNone\n25.0\t61.0\t7.0\t8.0\tsacramento-state-26535\tSacramento State\t2016-10-07\t2016-10-13\tIf the presidential election were tomorrow, for whom would you vote?\tLikely Voters\t622\t7.0\tInternet\tNonpartisan\tNone\n22.0\t66.0\t\t12.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t1196\t\tInternet\tNonpartisan\tNone\n37.0\t58.0\t5.0\t\tupi-cvoter-26026\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t474\t\tInternet\tNonpartisan\tNone\n28.0\t61.0\t\t11.0\tipsos-reuters-26100\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t1885\t\tInternet\tNonpartisan\tNone\n39.0\t57.0\t4.0\t\tupi-cvoter-25902\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t992\t\tInternet\tNonpartisan\tNone\n24.0\t64.0\t\t12.0\tipsos-reuters-25853\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t1610\t\tInternet\tNonpartisan\tNone\n33.0\t59.0\t5.0\t3.0\tsurveyusa-kabc-scng-25809\tSurveyUSA/KABC/SCNG\t2016-09-27\t2016-09-28\t\tLikely Voters\t732\t3.6\tIVR/Online\tNonpartisan\tNone\n38.0\t57.0\t5.0\t\tupi-cvoter-25731\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t951\t\tInternet\tNonpartisan\tNone\n28.0\t60.0\t\t12.0\tipsos-reuters-25681\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t1468\t\tInternet\tNonpartisan\tNone\n31.0\t47.0\t17.0\t6.0\tppic-25632\tPPIC\t2016-09-09\t2016-09-18\tIf the November 8 presidential election were being held today, would you vote for:\tLikely Voters\t1045\t4.5\tLive Phone\tNonpartisan\tNone\n24.0\t63.0\t\t13.0\tipsos-reuters-25540\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t1189\t\tInternet\tNonpartisan\tNone\n30.0\t57.0\t4.0\t9.0\tinsights-west-25629\tInsights West\t2016-09-12\t2016-09-14\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t515\t4.3\tInternet\tNonpartisan\tNone\n33.0\t50.0\t11.0\t6.0\tfield-uc-berkeley-yougov-25577\tField/UC Berkeley/YouGov\t2016-09-07\t2016-09-13\t\tLikely Voters\t1426\t\tInternet\tNonpartisan\tNone\n32.0\t57.0\t4.0\t7.0\tsurveyusa-kabc-scng-25467\tSurveyUSA/KABC/SCNG\t2016-09-08\t2016-09-11\t\tLikely Voters\t678\t\tIVR/Online\tNonpartisan\tNone\n33.0\t58.0\t\t9.0\tsurveymonkey-la-times-25472\tSurveyMonkey/LA Times\t2016-09-01\t2016-09-08\t\tRegistered Voters\t4212\t2.0\tInternet\tNonpartisan\tNone\n29.0\t49.0\t17.0\t5.0\tsurveymonkey-la-times-25472\tSurveyMonkey/LA Times\t2016-09-01\t2016-09-08\t\tRegistered Voters\t4212\t2.0\tInternet\tNonpartisan\tNone\n33.0\t57.0\t\t9.0\twashpost-surveymonkey-25359\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2574\t\tInternet\tNonpartisan\tNone\n28.0\t49.0\t19.0\t5.0\twashpost-surveymonkey-25359\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2574\t\tInternet\tNonpartisan\tNone\n30.0\t46.0\t15.0\t9.0\tppic-24984\tPPIC\t2016-07-10\t2016-07-19\tIf the November 8 presidential election were being held today, would you vote for:\tLikely Voters\t1056\t4.3\tLive Phone\tNonpartisan\tNone\n28.0\t58.0\t\t14.0\tfield-24831\tField\t2016-06-08\t2016-07-02\t\tLikely Voters\t956\t3.2\tLive Phone\tNonpartisan\tNone\n26.0\t50.0\t10.0\t14.0\tfield-24831\tField\t2016-06-08\t2016-07-02\t\tLikely Voters\t956\t3.2\tLive Phone\tNonpartisan\tNone\n28.0\t54.0\t12.0\t6.0\tsurveymonkey-usc-la-times-24674\tSurveyMonkey/USC/LA Times\t2016-06-09\t2016-06-10\t\tLikely Voters\t1264\t4.0\tLive Phone\tNonpartisan\tNone\n31.0\t61.0\t\t8.0\tsurveymonkey-usc-la-times-24674\tSurveyMonkey/USC/LA Times\t2016-06-09\t2016-06-10\tIf the election were held today among just the following two candidates, for whom would you vote?\tLikely Voters\t1264\t4.0\tLive Phone\tNonpartisan\tNone\n33.0\t48.0\t12.0\t7.0\tcbs-yougov-24612\tCBS/YouGov\t2016-05-31\t2016-06-03\t\tLikely Voters\t1187\t3.9\tInternet\tNonpartisan\tNone\n31.0\t55.0\t8.0\t6.0\tnbc-wsj-marist-24593\tNBC/WSJ/Marist\t2016-05-29\t2016-05-31\t\tRegistered Voters\t1833\t2.3\tLive Phone\tNonpartisan\tNone\n34.0\t53.0\t\t13.0\tfield-24594\tField\t2016-05-26\t2016-05-31\t\tLikely Voters\t1002\t3.2\tLive Phone\tNonpartisan\tNone\n33.0\t54.0\t4.0\t10.0\tusc-la-times-24603\tUSC/LA Times\t2016-05-19\t2016-05-31\t\tLikely Voters\t1150\t\tLive Phone\tNonpartisan\tNone\n38.0\t52.0\t\t10.0\tsurveyusa-kabc-scng-24538\tSurveyUSA/KABC/SCNG\t2016-05-19\t2016-05-22\t\tLikely Voters\t1383\t\tIVR/Online\tNonpartisan\tNone\n39.0\t49.0\t7.0\t4.0\tppic-24558\tPPIC\t2016-05-13\t2016-05-22\t\tLikely Voters\t996\t4.3\tLive Phone\tNonpartisan\tNone\n33.0\t45.0\t12.0\t10.0\tyougov-hoover-institution-24574\tYouGov/Hoover Institution\t2016-05-04\t2016-05-16\t\tLikely Voters\t1196\t\tInternet\tNonpartisan\tNone\n34.0\t56.0\t\t10.0\tsurveyusa-kabc-scng-24427\tSurveyUSA/KABC/SCNG\t2016-04-27\t2016-04-30\t\tLikely Voters\t1683\t2.4\tIVR/Online\tNonpartisan\tNone\n31.0\t59.0\t\t10.0\tfield-24222\tField\t2016-03-24\t2016-04-04\t\tRegistered Voters\t1400\t3.2\tLive Phone\tNonpartisan\tNone\n26.0\t60.0\t\t14.0\tsurveyusa-24205\tSurveyUSA\t2016-03-30\t2016-04-03\t\tLikely Voters\t1507\t2.5\tIVR/Online\tNonpartisan\tNone\n30.0\t57.0\t5.0\t8.0\tusc-la-times-24155\tUSC/LA Times\t2016-03-16\t2016-03-23\t\tLikely Voters\t1202\t\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/CO.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n40.0\t43.0\t10.0\t4.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t2777\t\tInternet\tNonpartisan\tNone\n44.0\t50.0\t\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t343\t\tInternet\tNonpartisan\tNone\n39.0\t43.0\t11.0\t4.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t2412\t\tInternet\tNonpartisan\tNone\n42.0\t48.0\t\t\t10.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t696\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t4.0\t3.0\t3.0\tppp-d-26721\tPPP (D)\t2016-11-03\t2016-11-04\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters\t704\t3.7\tIVR/Online\tPollster\tDem\n45.0\t50.0\t\t\t5.0\tppp-d-26721\tPPP (D)\t2016-11-03\t2016-11-04\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t704\t3.7\tIVR/Online\tPollster\tDem\n40.0\t43.0\t11.0\t4.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t2302\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t7.0\t7.0\t6.0\tkeating-d-onsight-public-affairs-26725\tKeating (D-OnSight Public Affairs)\t2016-11-02\t2016-11-03\t\tLikely Voters\t605\t4.0\tLive Phone\tSponsor\tDem\n40.0\t44.0\t10.0\t3.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1927\t\tInternet\tNonpartisan\tNone\n42.0\t48.0\t\t\t10.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t713\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t6.0\t5.0\t6.0\tremington-research-group-r-axiom-strategies-26760\tRemington Research Group (R)/Axiom Strategies\t2016-11-01\t2016-11-02\t\tLikely Voters\t1863\t2.27\tIVR/Live Phone\tSponsor\tRep\n40.0\t40.0\t7.0\t10.0\t3.0\tgravis-marketing-breitbart-26737\tGravis Marketing/Breitbart\t2016-11-01\t2016-11-02\tIf the election was held today, who would be your choice for president?\tRegistered Voters\t1125\t2.9\tIVR/Online\tNonpartisan\tNone\n38.0\t44.0\t7.0\t4.0\t7.0\tmagellan-r-26678\tMagellan (R)\t2016-11-01\t2016-11-02\tIf the election for President were being held today, would you vote for Hillary Clinton the Democratic candidate, Donald Trump the Republican candidate, Gary Johnson the Libertarian candidate, or Jill Stein, the Green Party candidate?\tLikely Voters\t500\t4.38\tLive Phone\tPollster\tRep\n40.0\t44.0\t10.0\t4.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1631\t\tInternet\tNonpartisan\tNone\n37.0\t44.0\t9.0\t3.0\t8.0\tlucid-the-times-picayune-26644\tLucid/The Times-Picayune\t2016-10-28\t2016-11-01\t\tLikely Voters\t972\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t11.0\t4.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1402\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t\t10.0\t7.0\tuniversity-of-denver-ciruli-26677\tUniversity of Denver/Ciruli\t2016-10-29\t2016-10-31\t\tLikely Voters\t550\t4.2\tLive Phone\tNonpartisan\tNone\n39.0\t39.0\t5.0\t9.0\t9.0\tuniversity-of-denver-ciruli-26677\tUniversity of Denver/Ciruli\t2016-10-29\t2016-10-31\t\tLikely Voters\t550\t4.2\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t11.0\t4.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1532\t\tInternet\tNonpartisan\tNone\n44.0\t45.0\t4.0\t3.0\t4.0\tremington-research-group-r-axiom-strategies-26567\tRemington Research Group (R)/Axiom Strategies\t2016-10-30\t2016-10-30\t\tLikely Voters\t952\t3.17\tIVR/Live Phone\tSponsor\tRep\n39.0\t44.0\t11.0\t4.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t1417\t\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t5.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t342\t\tInternet\tNonpartisan\tNone\n39.0\t42.0\t7.0\t6.0\t5.0\tcbs-yougov-26546\tCBS/YouGov\t2016-10-26\t2016-10-28\t\tLikely Voters\t997\t4.1\tInternet\tNonpartisan\tNone\n38.0\t45.0\t11.0\t4.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1731\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t\t\t11.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t598\t\tInternet\tNonpartisan\tNone\n38.0\t45.0\t11.0\t4.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1800\t\tInternet\tNonpartisan\tNone\n38.0\t44.0\t12.0\t3.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1595\t\tInternet\tNonpartisan\tNone\n34.0\t44.0\t9.0\t13.0\t\tu-colorado-boulder-26672\tU Colorado Boulder\t2016-10-17\t2016-10-24\t\tAdults\t1004\t\tInternet\tNonpartisan\tNone\n38.0\t44.0\t12.0\t3.0\t3.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1318\t\tInternet\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t344\t\tInternet\tNonpartisan\tNone\n43.0\t45.0\t5.0\t2.0\t4.0\tremington-research-group-r-axiom-strategies-26419\tRemington Research Group (R)/Axiom Strategies\t2016-10-20\t2016-10-22\t\tLikely Voters\t1581\t2.46\tIVR/Live Phone\tSponsor\tRep\n41.0\t45.0\t\t\t14.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t575\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t10.0\t4.0\t5.0\tquinnipiac-26214\tQuinnipiac\t2016-10-10\t2016-10-16\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t685\t3.7\tLive Phone\tNonpartisan\tNone\n40.0\t51.0\t\t2.0\t8.0\tquinnipiac-26214\tQuinnipiac\t2016-10-10\t2016-10-16\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t685\t3.7\tLive Phone\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-26293\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t336\t\tInternet\tNonpartisan\tNone\n41.0\t50.0\t\t\t8.0\twashpost-surveymonkey-26239\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t956\t\tInternet\tNonpartisan\tNone\n37.0\t44.0\t12.0\t4.0\t3.0\twashpost-surveymonkey-26239\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t956\t\tInternet\tNonpartisan\tNone\n35.0\t40.0\t12.0\t7.0\t6.0\tmagellan-r-26256\tMagellan (R)\t2016-10-12\t2016-10-13\tIf the election for President were being held today, would you vote for Hillary Clinton the Democratic candidate, Donald Trump the Republican candidate, Gary Johnson the Libertarian candidate, or Jill Stein, the Green Party candidate?\tLikely Voters\t500\t4.38\tLive Phone\tPollster\tRep\n39.0\t44.0\t6.0\t2.0\t9.0\tgravis-marketing-breitbart-26186\tGravis Marketing/Breitbart\t2016-10-12\t2016-10-13\tIf the election was held today, who would be your choice for president?\tRegistered Voters\t1226\t2.8\tIVR/Online\tNonpartisan\tNone\n41.0\t47.0\t\t\t12.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t695\t\tInternet\tNonpartisan\tNone\n44.0\t50.0\t\t6.0\t\tupi-cvoter-26027\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t338\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t\t\t10.0\tipsos-reuters-26101\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t710\t\tInternet\tNonpartisan\tNone\n40.0\t40.0\t10.0\t3.0\t6.0\tgravis-marketing-breitbart-26008\tGravis Marketing/Breitbart\t2016-10-03\t2016-10-04\tIf the election was held today, who would be your choice for president?\tRegistered Voters\t1246\t2.8\tIVR/Online\tNonpartisan\tNone\n38.0\t49.0\t7.0\t4.0\t3.0\tmonmouth-university-25839\tMonmouth University\t2016-09-29\t2016-10-02\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t400\t4.9\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25903\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t553\t\tInternet\tNonpartisan\tNone\n33.0\t44.0\t10.0\t7.0\t6.0\tkeating-d-25892\tKeating (D)\t2016-09-27\t2016-09-29\t\tLikely Voters\t602\t4.0\tLive Phone\tPollster\tDem\n45.0\t43.0\t\t\t12.0\tipsos-reuters-25854\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t622\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t6.0\t2.0\t6.0\tppp-d-vote-vets-action-fund-25795\tPPP (D-Vote Vets Action Fund)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t694\t3.7\tIVR/Online\tPollster\tDem\n44.0\t51.0\t\t\t5.0\tppp-d-vote-vets-action-fund-25795\tPPP (D-Vote Vets Action Fund)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t694\t3.7\tIVR/Online\tPollster\tDem\n42.0\t41.0\t13.0\t3.0\t0.0\tcnn-25651\tCNN\t2016-09-20\t2016-09-25\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates, and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t784\t3.5\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t3.0\t0.0\tcnn-25651\tCNN\t2016-09-20\t2016-09-25\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump and as the Republican Party’s candidate, who would you be more likely to vote for?\tLikely Voters\t784\t3.5\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t6.0\t\tupi-cvoter-25732\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t538\t\tInternet\tNonpartisan\tNone\n39.0\t40.0\t\t11.0\t10.0\tcbs-yougov-25645\tCBS/YouGov\t2016-09-21\t2016-09-23\t\tLikely Voters\t991\t4.4\tInternet\tNonpartisan\tNone\n44.0\t42.0\t\t\t14.0\tipsos-reuters-25683\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t534\t\tInternet\tNonpartisan\tNone\n42.0\t44.0\t10.0\t2.0\t2.0\tquinnipiac-25622\tQuinnipiac\t2016-09-13\t2016-09-21\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t644\t3.9\tLive Phone\tNonpartisan\tNone\n47.0\t47.0\t\t2.0\t4.0\tquinnipiac-25622\tQuinnipiac\t2016-09-13\t2016-09-21\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t644\t3.9\tLive Phone\tNonpartisan\tNone\n35.0\t44.0\t\t14.0\t7.0\tfranklin-and-marshall-college-colorado-mesa-university-25616\tFranklin and Marshall College/Colorado Mesa University\t2016-09-14\t2016-09-18\tIf the November general election for president was being held today and the candidates were Donald Trump, the Republican, Hillary Clinton, the Democrat, would you vote for Donald Trump, Hillary Clinton, some other candidate, or aren't you sure how you would vote?\tLikely Voters\t350\t6.3\tLive Phone/Online\tNonpartisan\tNone\n34.0\t41.0\t12.0\t3.0\t10.0\tfranklin-and-marshall-college-colorado-mesa-university-25616\tFranklin and Marshall College/Colorado Mesa University\t2016-09-14\t2016-09-18\tIf the November general election for president was being held today and the candidates were Donald Trump, the Republican, Hillary Clinton, the Democrat, Jill Stein, the Green candidate, and Gary Johnson, the Libertarian candidate, would you vote for …or aren't you sure how you would vote?\tLikely Voters\t350\t6.3\tLive Phone/Online\tNonpartisan\tNone\n43.0\t40.0\t\t\t17.0\tipsos-reuters-25541\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t563\t\tInternet\tNonpartisan\tNone\n44.0\t46.0\t\t\t10.0\twashpost-surveymonkey-25349\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2428\t\tInternet\tNonpartisan\tNone\n37.0\t37.0\t16.0\t6.0\t4.0\twashpost-surveymonkey-25349\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2428\t\tInternet\tNonpartisan\tNone\n36.0\t41.0\t13.0\t4.0\t6.0\tmagellan-r-25419\tMagellan (R)\t2016-08-29\t2016-08-31\tIf the election for President were being held today, would you vote for Hillary Clinton the Democratic candidate, Donald Trump the Republican candidate, Gary Johnson the Libertarian candidate, or Jill Stein, the Green Party candidate?\tLikely Voters\t500\t4.38\tLive Phone\tPollster\tRep\n39.0\t49.0\t\t4.0\t9.0\tquinnipiac-25199\tQuinnipiac\t2016-08-09\t2016-08-16\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t830\t3.4\tLive Phone\tNonpartisan\tNone\n33.0\t41.0\t16.0\t7.0\t3.0\tquinnipiac-25199\tQuinnipiac\t2016-08-09\t2016-08-16\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t830\t3.4\tLive Phone\tNonpartisan\tNone\n32.0\t46.0\t\t15.0\t6.0\tnbc-wsj-marist-25150\tNBC/WSJ/Marist\t2016-08-04\t2016-08-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t899\t3.3\tLive Phone\tNonpartisan\tNone\n29.0\t41.0\t15.0\t7.0\t8.0\tnbc-wsj-marist-25150\tNBC/WSJ/Marist\t2016-08-04\t2016-08-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t899\t3.3\tLive Phone\tNonpartisan\tNone\n34.0\t44.0\t\t11.0\t11.0\tfox-24882\tFOX\t2016-07-09\t2016-07-12\tIf the 2016 presidential election were held today…How would you vote if the candidates were:\tRegistered Voters\t600\t3.0\tLive Phone\tNonpartisan\tNone\n28.0\t37.0\t13.0\t10.0\t13.0\tfox-24882\tFOX\t2016-07-09\t2016-07-12\tHow would you vote if the candidates were:\tRegistered Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n35.0\t48.0\t5.0\t6.0\t7.0\tmonmouth-university-24875\tMonmouth University\t2016-07-09\t2016-07-12\t\tLikely Voters\t404\t4.9\tLive Phone\tNonpartisan\tNone\n35.0\t43.0\t\t21.0\t\tnbc-wsj-marist-24895\tNBC/WSJ/Marist\t2016-07-05\t2016-07-11\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t794\t3.5\tLive Phone\tNonpartisan\tNone\n33.0\t39.0\t13.0\t7.0\t9.0\tnbc-wsj-marist-24895\tNBC/WSJ/Marist\t2016-07-05\t2016-07-11\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t794\t3.5\tLive Phone\tNonpartisan\tNone\n38.0\t45.0\t\t14.0\t4.0\tharper-r-24868\tHarper (R)\t2016-07-07\t2016-07-09\t\tLikely Voters\t500\t4.38\tIVR/Live Phone\tPollster\tRep\n41.0\t43.0\t\t16.0\t\tgravis-marketing-24887\tGravis Marketing\t2016-07-07\t2016-07-08\tIf you had to vote today in a matchup between Hillary Clinton and Donald Trump, who would you vote for?\tRegistered Voters\t1313\t2.7\tAutomated Phone\tNonpartisan\tNone\n38.0\t39.0\t9.0\t14.0\t\tgravis-marketing-24887\tGravis Marketing\t2016-07-07\t2016-07-08\tIf you had to vote today in a matchup between Hillary Clinton, Donald Trump, Gary Johnson and Jill Stein, who would you vote for?\tRegistered Voters\t1313\t2.7\tAutomated Phone\tNonpartisan\tNone\n39.0\t40.0\t\t9.0\t10.0\tcbs-yougov-24767\tCBS/YouGov\t2016-06-21\t2016-06-24\t\tLikely Voters\t996\t4.3\tInternet\tNonpartisan\tNone\n48.0\t37.0\t\t4.0\t11.0\tquinnipiac-23168\tQuinnipiac\t2015-11-11\t2015-11-15\t\tRegistered Voters\t1262\t2.8\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/CT.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n36.0\t52.0\t9.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1387\t\tInternet\tNonpartisan\tNone\n40.0\t55.0\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t327\t\tInternet\tNonpartisan\tNone\n37.0\t51.0\t10.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1173\t\tInternet\tNonpartisan\tNone\n40.0\t50.0\t\t10.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t515\t\tInternet\tNonpartisan\tNone\n37.0\t51.0\t10.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1114\t\tInternet\tNonpartisan\tNone\n38.0\t52.0\t9.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t925\t\tInternet\tNonpartisan\tNone\n41.0\t49.0\t\t10.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t516\t\tInternet\tNonpartisan\tNone\n38.0\t52.0\t9.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t753\t\tInternet\tNonpartisan\tNone\n38.0\t51.0\t9.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t616\t\tInternet\tNonpartisan\tNone\n39.0\t51.0\t9.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t554\t\tInternet\tNonpartisan\tNone\n39.0\t51.0\t7.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t488\t\tInternet\tNonpartisan\tNone\n43.0\t54.0\t3.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t326\t\tInternet\tNonpartisan\tNone\n38.0\t51.0\t9.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t568\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t\t13.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t640\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t11.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t614\t\tInternet\tNonpartisan\tNone\n36.0\t50.0\t11.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t515\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t12.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t428\t\tInternet\tNonpartisan\tNone\n42.0\t55.0\t3.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t329\t\tInternet\tNonpartisan\tNone\n35.0\t53.0\t\t12.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t647\t\tInternet\tNonpartisan\tNone\n42.0\t55.0\t4.0\t\tupi-cvoter-26294\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t326\t\tInternet\tNonpartisan\tNone\n36.0\t53.0\t\t11.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t741\t\tInternet\tNonpartisan\tNone\n42.0\t54.0\t4.0\t\tupi-cvoter-26028\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t331\t\tInternet\tNonpartisan\tNone\n35.0\t53.0\t\t12.0\tipsos-reuters-26102\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t506\t\tInternet\tNonpartisan\tNone\n43.0\t54.0\t4.0\t\tupi-cvoter-25904\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t520\t\tInternet\tNonpartisan\tNone\n34.0\t52.0\t\t14.0\tipsos-reuters-25855\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t666\t\tInternet\tNonpartisan\tNone\n42.0\t54.0\t4.0\t\tupi-cvoter-25733\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t512\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t\t16.0\tipsos-reuters-25684\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t662\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t\t16.0\tipsos-reuters-25542\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t674\t\tInternet\tNonpartisan\tNone\n39.0\t51.0\t\t10.0\twashpost-surveymonkey-25360\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1053\t\tInternet\tNonpartisan\tNone\n33.0\t44.0\t17.0\t6.0\twashpost-surveymonkey-25360\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1053\t\tInternet\tNonpartisan\tNone\n38.0\t45.0\t3.0\t14.0\tquinnipiac-24627\tQuinnipiac\t2016-06-01\t2016-06-05\t\tRegistered Voters\t1030\t2.7\tLive Phone\tNonpartisan\tNone\n40.0\t48.0\t\t12.0\temerson-college-polling-society-24256\tEmerson College Polling Society\t2016-04-10\t2016-04-11\t\tLikely Voters\t1043\t3.0\tAutomated Phone\tNonpartisan\tNone\n40.0\t47.0\t2.0\t11.0\tquinnipiac-22907\tQuinnipiac\t2015-10-07\t2015-10-11\t\tRegistered Voters\t1735\t2.4\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/DE.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n39.0\t50.0\t8.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t367\t\tInternet\tNonpartisan\tNone\n42.0\t54.0\t4.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t307\t\tInternet\tNonpartisan\tNone\n39.0\t49.0\t9.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t383\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t10.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t398\t\tInternet\tNonpartisan\tNone\n36.0\t50.0\t10.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t405\t\tInternet\tNonpartisan\tNone\n36.0\t50.0\t10.0\t4.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t397\t\tInternet\tNonpartisan\tNone\n38.0\t50.0\t8.0\t5.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t413\t\tInternet\tNonpartisan\tNone\n38.0\t50.0\t9.0\t4.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t458\t\tInternet\tNonpartisan\tNone\n38.0\t51.0\t8.0\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t429\t\tInternet\tNonpartisan\tNone\n42.0\t55.0\t3.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t308\t\tInternet\tNonpartisan\tNone\n36.0\t52.0\t9.0\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t548\t\tInternet\tNonpartisan\tNone\n34.0\t53.0\t11.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t581\t\tInternet\tNonpartisan\tNone\n34.0\t52.0\t12.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t528\t\tInternet\tNonpartisan\tNone\n34.0\t53.0\t12.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t444\t\tInternet\tNonpartisan\tNone\n42.0\t56.0\t3.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t305\t\tInternet\tNonpartisan\tNone\n42.0\t56.0\t3.0\t\tupi-cvoter-26295\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t315\t\tInternet\tNonpartisan\tNone\n41.0\t55.0\t3.0\t\tupi-cvoter-26029\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t312\t\tInternet\tNonpartisan\tNone\n43.0\t54.0\t3.0\t\tupi-cvoter-25905\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t475\t\tInternet\tNonpartisan\tNone\n30.0\t51.0\t9.0\t9.0\tuniversity-of-delaware-psrai-25891\tUniversity of Delaware/PSRAI\t2016-09-16\t2016-09-28\tIf the presidential election were being held today and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein of the Green Party, who would you vote for?\tLikely Voters\t762\t4.1\tLive Phone\tNonpartisan\tNone\n42.0\t54.0\t3.0\t\tupi-cvoter-25734\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t479\t\tInternet\tNonpartisan\tNone\n36.0\t50.0\t\t14.0\twashpost-surveymonkey-25361\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t637\t\tInternet\tNonpartisan\tNone\n33.0\t43.0\t16.0\t8.0\twashpost-surveymonkey-25361\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t637\t\tInternet\tNonpartisan\tNone\n32.0\t42.0\t14.0\t12.0\tfairleigh-dickinson-delaware-news-journal-24987\tFairleigh Dickinson/Delaware News Journal\t2016-07-20\t2016-07-24\tIf the election for president was held today, which of the following would you vote for?\tRegistered Voters\t715\t4.1\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/FL.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n45.0\t47.0\t4.0\t2.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t4092\t\tInternet\tNonpartisan\tNone\n46.0\t48.0\t3.0\t1.0\t1.0\topinion-savvy-26791\tOpinion Savvy\t2016-11-05\t2016-11-06\tIf the election to determine the next President of the United States were held today and your choices were: Democratic nominee Hillary Clinton; Republican nominee Donald Trump; Libertarian nominee Gary Johnson; and Green Party nominee Jill Stein; for whom would you vote?\tLikely Voters\t853\t3.4\tIVR/Online\tNonpartisan\tNone\n45.0\t46.0\t2.0\t2.0\t5.0\tquinnipiac-26776\tQuinnipiac\t2016-11-03\t2016-11-06\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t884\t3.3\tLive Phone\tNonpartisan\tNone\n46.0\t46.0\t\t3.0\t5.0\tquinnipiac-26776\tQuinnipiac\t2016-11-03\t2016-11-06\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t884\t3.3\tLive Phone\tNonpartisan\tNone\n47.0\t47.0\t\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t438\t\tInternet\tNonpartisan\tNone\n45.0\t47.0\t5.0\t2.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t3574\t\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t\t5.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t1274\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t4.0\t4.0\t2.0\tcbs-yougov-26755\tCBS/YouGov\t2016-11-02\t2016-11-04\t\tLikely Voters\t1188\t3.6\tInternet\tNonpartisan\tNone\n45.0\t47.0\t4.0\t2.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t3600\t\tInternet\tNonpartisan\tNone\n45.0\t47.0\t4.0\t2.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t3356\t\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t\t5.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t1342\t\tInternet\tNonpartisan\tNone\n48.0\t45.0\t2.0\t2.0\t3.0\tremington-research-group-r-axiom-strategies-26761\tRemington Research Group (R)/Axiom Strategies\t2016-11-01\t2016-11-02\t\tLikely Voters\t2352\t2.02\tIVR/Live Phone\tSponsor\tRep\n45.0\t49.0\t3.0\t1.0\t2.0\topinion-savvy-fox-13-fox-35-26664\tOpinion Savvy/Fox 13/Fox 35\t2016-11-01\t2016-11-02\tIf the election to determine the next President of the United States were held today and your choices were: Democratic nominee Hillary Clinton; Republican nominee Donald Trump; Libertarian nominee Gary Johnson; and Green Party nominee Jill Stein; for whom would you vote?\tLikely Voters\t603\t4.0\tIVR/Online\tNonpartisan\tNone\n44.0\t47.0\t5.0\t2.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t2901\t\tInternet\tNonpartisan\tNone\n45.0\t46.0\t2.0\t3.0\t4.0\tquinnipiac-26628\tQuinnipiac\t2016-10-27\t2016-11-01\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t626\t3.9\tLive Phone\tNonpartisan\tNone\n45.0\t47.0\t\t3.0\t4.0\tquinnipiac-26628\tQuinnipiac\t2016-10-27\t2016-11-01\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t626\t3.9\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t3.0\t2.0\t0.0\tcnn-26622\tCNN\t2016-10-27\t2016-11-01\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates, and Jill Stein and Ajamu Baraka as the Green Party’s candidate.  Who would you be more likely to vote for?\tLikely Voters\t773\t3.5\tLive Phone\tNonpartisan\tNone\n49.0\t50.0\t\t1.0\t0.0\tcnn-26622\tCNN\t2016-10-27\t2016-11-01\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate, and Donald Trump as the Republican Party’s candidate, who would you be more likely to vote for?\tLikely Voters\t773\t3.5\tLive Phone\tNonpartisan\tNone\n44.0\t47.0\t5.0\t2.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t2715\t\tInternet\tNonpartisan\tNone\n49.0\t51.0\t\t\t\tgravis-marketing-one-america-news-26689\tGravis Marketing/One America News \t2016-10-31\t2016-10-31\t\tRegistered Voters\t1995\t2.2\tIVR/Online\tSponsor\tRep\n46.0\t49.0\t2.0\t1.0\t1.0\tgravis-marketing-one-america-news-26689\tGravis Marketing/One America News \t2016-10-31\t2016-10-31\t\tRegistered Voters\t1995\t2.2\tIVR/Online\tSponsor\tRep\n45.0\t46.0\t5.0\t2.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t2809\t\tInternet\tNonpartisan\tNone\n48.0\t44.0\t2.0\t2.0\t4.0\tremington-research-group-r-axiom-strategies-26566\tRemington Research Group (R)/Axiom Strategies\t2016-10-30\t2016-10-30\t\tLikely Voters\t989\t3.11\tIVR/Live Phone\tSponsor\tRep\n40.0\t48.0\t3.0\t7.0\t0.0\ttargetsmart-william-mary-26609\tTargetSmart/William & Mary\t2016-10-25\t2016-10-30\t\tLikely Voters\t718\t\tLive Phone/Online\tNonpartisan\tNone\n45.0\t46.0\t5.0\t2.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t2634\t\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t408\t\tInternet\tNonpartisan\tNone\n44.0\t47.0\t5.0\t2.0\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t3129\t\tInternet\tNonpartisan\tNone\n46.0\t42.0\t4.0\t3.0\t6.0\tnyt-upshot-siena-26543\tNYT Upshot/Siena\t2016-10-25\t2016-10-27\t\tLikely Voters\t814\t3.4\tLive Phone\tNonpartisan\tNone\n48.0\t45.0\t\t0.0\t7.0\tnyt-upshot-siena-26543\tNYT Upshot/Siena\t2016-10-25\t2016-10-27\t\tLikely Voters\t814\t3.4\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t\t6.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t1110\t\tInternet\tNonpartisan\tNone\n46.0\t42.0\t2.0\t3.0\t6.0\tdixie-strategies-r-26654\tDixie Strategies (R)\t2016-10-25\t2016-10-26\tIf the Presidential election were held today, for whom would you vote?\tLikely Voters\t698\t3.71\tIVR/Live Phone\tPollster\tRep\n46.0\t46.0\t\t7.0\t1.0\tnbc-wsj-marist-26544\tNBC/WSJ/Marist\t2016-10-25\t2016-10-26\t\tLikely Voters\t779\t3.5\tLive Phone\tNonpartisan\tNone\n44.0\t45.0\t5.0\t5.0\t2.0\tnbc-wsj-marist-26544\tNBC/WSJ/Marist\t2016-10-25\t2016-10-26\t\tLikely Voters\t779\t3.5\tLive Phone\tNonpartisan\tNone\n37.0\t50.0\t5.0\t1.0\t7.0\tsaint-leo-university-26528\tSaint Leo University\t2016-10-22\t2016-10-26\tIf the November presidential election was held today between Hillary Clinton, Donald Trump, Gary Johnson and Jill Stein, which candidate would you support or which have you already supported in early voting?\tLikely Voters\t1028\t3.0\tInternet\tNonpartisan\tNone\n35.0\t49.0\t4.0\t6.0\t8.0\tsaint-leo-university-26528\tSaint Leo University\t2016-10-22\t2016-10-26\tIf the November presidential election was held today and Evan McMullin, the Independent Conservative from Utah was also on your ballot, which candidate would you support or which have you supported if you already voted in early voting?\tLikely Voters\t1028\t3.0\tInternet\tNonpartisan\tNone\n44.0\t47.0\t5.0\t2.0\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t3193\t\tInternet\tNonpartisan\tNone\n44.0\t46.0\t\t3.0\t6.0\tunf-26492\tUNF\t2016-10-20\t2016-10-25\t\tLikely Voters\t786\t\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t6.0\t3.0\t9.0\tunf-26492\tUNF\t2016-10-20\t2016-10-25\t\tLikely Voters\t819\t\tLive Phone\tNonpartisan\tNone\n46.0\t45.0\t\t4.0\t5.0\tbloomberg-selzer-26435\tBloomberg/Selzer\t2016-10-21\t2016-10-24\t\tLikely Voters\t953\t3.2\tLive Phone\tNonpartisan\tNone\n45.0\t43.0\t4.0\t3.0\t6.0\tbloomberg-selzer-26435\tBloomberg/Selzer\t2016-10-21\t2016-10-24\t\tLikely Voters\t953\t3.2\tLive Phone\tNonpartisan\tNone\n45.0\t48.0\t2.0\t4.0\t0.0\tsurveyusa-bay-news-9-news-13-26439\tSurveyUSA/Bay News 9/News 13\t2016-10-20\t2016-10-24\t\tLikely Voters\t1251\t2.8\tIVR/Online\tNonpartisan\tNone\n44.0\t47.0\t5.0\t2.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t2765\t\tInternet\tNonpartisan\tNone\n44.0\t47.0\t5.0\t2.0\t3.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t2243\t\tInternet\tNonpartisan\tNone\n47.0\t49.0\t\t5.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t399\t\tInternet\tNonpartisan\tNone\n46.0\t46.0\t2.0\t2.0\t5.0\tremington-research-group-r-axiom-strategies-26420\tRemington Research Group (R)/Axiom Strategies\t2016-10-20\t2016-10-22\t\tLikely Voters\t1646\t2.41\tIVR/Live Phone\tSponsor\tRep\n43.0\t46.0\t3.0\t4.0\t3.0\tcbs-yougov-26380\tCBS/YouGov\t2016-10-20\t2016-10-21\t\tLikely Voters\t1042\t3.6\tInternet\tNonpartisan\tNone\n45.0\t49.0\t3.0\t2.0\t2.0\topinion-savvy-fox-13-fox-35-26361\tOpinion Savvy/Fox 13/Fox 35\t2016-10-20\t2016-10-20\tIf the election to determine the next President of the United States were held today and your choices were: Democratic nominee Hillary Clinton; Republican nominee Donald Trump; Libertarian nominee Gary Johnson; and Green Party nominee Jill Stein; for whom would you vote?\tLikely Voters\t538\t4.2\tIVR/Online\tNonpartisan\tNone\n44.0\t48.0\t\t\t8.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t879\t\tInternet\tNonpartisan\tNone\n39.0\t45.0\t6.0\t2.0\t8.0\tlucid-the-times-picayune-26403\tLucid/The Times-Picayune\t2016-10-17\t2016-10-18\t\tLikely Voters\t892\t\tInternet\tNonpartisan\tNone\n44.0\t48.0\t4.0\t2.0\t4.0\tquinnipiac-26215\tQuinnipiac\t2016-10-10\t2016-10-16\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t660\t3.8\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t1.0\t5.0\tquinnipiac-26215\tQuinnipiac\t2016-10-10\t2016-10-16\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t660\t3.8\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-26296\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t401\t\tInternet\tNonpartisan\tNone\n47.0\t47.0\t\t\t6.0\twashpost-surveymonkey-26240\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1702\t\tInternet\tNonpartisan\tNone\n45.0\t43.0\t7.0\t3.0\t3.0\twashpost-surveymonkey-26240\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1702\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t5.0\t1.0\t6.0\tppp-d-26182\tPPP (D)\t2016-10-12\t2016-10-13\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t985\t3.1\tIVR/Online\tPollster\tDem\n44.0\t49.0\t\t\t7.0\tppp-d-26182\tPPP (D)\t2016-10-12\t2016-10-13\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t985\t3.1\tIVR/Online\tPollster\tDem\n42.0\t46.0\t2.0\t1.0\t10.0\tgravis-marketing-breitbart-26192\tGravis Marketing/Breitbart\t2016-10-11\t2016-10-13\tIf the election was held today, who would be your choice for president?\tRegistered Voters\t1799\t2.3\tIVR/Online\tNonpartisan\tNone\n42.0\t48.0\t\t\t10.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t1799\t\tInternet\tNonpartisan\tNone\n40.0\t42.0\t\t7.0\t11.0\tipsos-reuters-26442\tIpsos/Reuters\t2016-10-05\t2016-10-12\t\tLikely Voters\t1532\t2.9\tInternet\tNonpartisan\tNone\n38.0\t42.0\t6.0\t4.0\t10.0\tipsos-reuters-26442\tIpsos/Reuters\t2016-10-05\t2016-10-12\t\tLikely Voters\t1532\t2.9\tInternet\tNonpartisan\tNone\n44.0\t47.0\t5.0\t1.0\t3.0\topinion-savvy-26149\tOpinion Savvy\t2016-10-10\t2016-10-11\tIf the election to determine the next President of the United States were held today and your choices were: Democratic nominee Hillary Clinton; Republican nominee Donald Trump; Libertarian nominee Gary Johnson; and Green Party nominee Jill Stein; for whom would you vote?\tLikely Voters\t533\t4.2\tIVR/Online\tNonpartisan\tNone\n43.0\t49.0\t1.0\t0.0\t7.0\tflorida-atlantic-university-26157\tFlorida Atlantic University\t2016-10-05\t2016-10-09\t\tLikely Voters\t500\t4.9\tIVR/Online\tNonpartisan\tNone\n47.0\t48.0\t\t6.0\t\tupi-cvoter-26030\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t398\t\tInternet\tNonpartisan\tNone\n44.0\t49.0\t\t\t7.0\tipsos-reuters-26103\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t1360\t\tInternet\tNonpartisan\tNone\n44.0\t46.0\t\t7.0\t3.0\tnbc-wsj-marist-26011\tNBC/WSJ/Marist\t2016-10-03\t2016-10-05\t\tLikely Voters\t700\t3.7\tLive Phone\tNonpartisan\tNone\n42.0\t45.0\t5.0\t4.0\t4.0\tnbc-wsj-marist-26011\tNBC/WSJ/Marist\t2016-10-03\t2016-10-05\t\tLikely Voters\t700\t3.7\tLive Phone\tNonpartisan\tNone\n40.0\t47.0\t\t4.0\t9.0\tunf-25974\tUNF\t2016-09-27\t2016-10-04\t\tLikely Voters\t661\t\tLive Phone\tNonpartisan\tNone\n38.0\t41.0\t6.0\t5.0\t10.0\tunf-25974\tUNF\t2016-09-27\t2016-10-04\t\tLikely Voters\t686\t\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t5.0\t2.0\t5.0\tquinnipiac-25842\tQuinnipiac\t2016-09-27\t2016-10-02\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t545\t4.2\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t\t1.0\t6.0\tquinnipiac-25842\tQuinnipiac\t2016-09-27\t2016-10-02\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t545\t4.2\tLive Phone\tNonpartisan\tNone\n47.0\t46.0\t\t5.0\t\tupi-cvoter-25906\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t785\t\tInternet\tNonpartisan\tNone\n46.0\t47.0\t4.0\t2.0\t1.0\topinion-savvy-fox-13-fox-35-25814\tOpinion Savvy/Fox 13/Fox 35\t2016-09-28\t2016-09-29\tIf the election to determine the next President of the United States were held today and your choices were: Democratic nominee Hillary Clinton; Republican nominee Donald Trump; Libertarian nominee Gary Johnson; and Green Party nominee Jill Stein; for whom would you vote?\tLikely Voters\t619\t4.0\tIVR/Online\tNonpartisan\tNone\n42.0\t46.0\t7.0\t1.0\t4.0\tmason-dixon-25811\tMason-Dixon\t2016-09-27\t2016-09-29\t\tLikely Voters\t820\t3.5\tLive Phone\tNonpartisan\tNone\n46.0\t48.0\t\t\t6.0\tipsos-reuters-25856\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t1030\t\tInternet\tNonpartisan\tNone\n43.0\t45.0\t3.0\t1.0\t8.0\tppp-d-vote-vets-action-fund-25796\tPPP (D-Vote Vets Action Fund)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t826\t3.4\tIVR/Online\tPollster\tDem\n45.0\t48.0\t\t\t7.0\tppp-d-vote-vets-action-fund-25796\tPPP (D-Vote Vets Action Fund)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t826\t3.4\tIVR/Online\tPollster\tDem\n48.0\t46.0\t\t5.0\t\tupi-cvoter-25735\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t764\t\tInternet\tNonpartisan\tNone\n45.0\t49.0\t\t\t6.0\tipsos-reuters-25685\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t1167\t\tInternet\tNonpartisan\tNone\n45.0\t44.0\t3.0\t1.0\t8.0\tsuffolk-25618\tSuffolk\t2016-09-19\t2016-09-21\tFlorida’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t8.0\t2.0\t6.0\tcherry-r-florida-chamber-of-commerce-25725\tCherry (R-Florida Chamber of Commerce)\t2016-09-15\t2016-09-20\t\tLikely Voters\t617\t4.0\tLive Phone\tPollster\tRep\n41.0\t46.0\t6.0\t2.0\t5.0\tmonmouth-university-25584\tMonmouth University\t2016-09-16\t2016-09-19\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t400\t4.9\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t6.0\t2.0\t\tsaint-leo-university-25599\tSaint Leo University\t2016-09-10\t2016-09-16\tIf the Presidential election was held today between Hillary Clinton and Donald Trump, Gary Johnson and Jill Stein, which candidate would you support?\tLikely Voters\t475\t4.5\tInternet\tNonpartisan\tNone\n50.0\t46.0\t\t\t4.0\tipsos-reuters-25543\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t1065\t\tInternet\tNonpartisan\tNone\n43.0\t43.0\t\t3.0\t10.0\tnyt-upshot-siena-25524\tNYT Upshot/Siena\t2016-09-10\t2016-09-14\t\tLikely Voters\t867\t3.3\tLive Phone\tNonpartisan\tNone\n40.0\t41.0\t\t11.0\t8.0\tnyt-upshot-siena-25524\tNYT Upshot/Siena\t2016-09-10\t2016-09-14\t\tLikely Voters\t867\t3.3\tLive Phone\tNonpartisan\tNone\n47.0\t44.0\t6.0\t1.0\t1.0\tcnn-25493\tCNN\t2016-09-07\t2016-09-12\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tLikely Voters\t788\t3.5\tLive Phone\tNonpartisan\tNone\n50.0\t46.0\t\t3.0\t0.0\tcnn-25493\tCNN\t2016-09-07\t2016-09-12\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t788\t3.5\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t5.0\t4.0\t6.0\tcbs-yougov-25448\tCBS/YouGov\t2016-09-07\t2016-09-09\t\tLikely Voters\t1193\t3.5\tInternet\tNonpartisan\tNone\n47.0\t47.0\t\t2.0\t5.0\tquinnipiac-25428\tQuinnipiac\t2016-08-29\t2016-09-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote? As of today, do you lean more toward Clinton or Trump?\tLikely Voters\t761\t3.6\tLive Phone\tNonpartisan\tNone\n43.0\t43.0\t8.0\t2.0\t3.0\tquinnipiac-25428\tQuinnipiac\t2016-08-29\t2016-09-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t761\t3.6\tLive Phone\tNonpartisan\tNone\n44.0\t43.0\t5.0\t2.0\t6.0\tppp-d-25412\tPPP (D)\t2016-09-04\t2016-09-06\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters\t744\t3.6\tIVR/Online\tPollster\tDem\n46.0\t47.0\t\t\t7.0\tppp-d-25412\tPPP (D)\t2016-09-04\t2016-09-06\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t744\t3.6\tIVR/Online\tPollster\tDem\n44.0\t46.0\t\t\t10.0\twashpost-surveymonkey-25348\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t3287\t\tInternet\tNonpartisan\tNone\n40.0\t42.0\t10.0\t3.0\t6.0\twashpost-surveymonkey-25348\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t3287\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t8.0\t6.0\t8.0\ticitizen-25269\tICITIZEN\t2016-08-18\t2016-08-24\t\tRegistered Voters\t600\t4.0\tInternet\tNonpartisan\tNone\n44.0\t43.0\t\t7.0\t5.0\tcherry-r-florida-chamber-of-commerce-25255\tCherry (R-Florida Chamber of Commerce)\t2016-08-17\t2016-08-22\t\tLikely Voters\t608\t4.0\tLive Phone\tPollster\tRep\n44.0\t41.0\t9.0\t2.0\t4.0\tcherry-r-florida-chamber-of-commerce-25255\tCherry (R-Florida Chamber of Commerce)\t2016-08-17\t2016-08-22\t\tLikely Voters\t608\t4.0\tLive Phone\tPollster\tRep\n38.0\t52.0\t8.0\t2.0\t\tsaint-leo-university-25244\tSaint Leo University\t2016-08-14\t2016-08-18\t\tLikely Voters\t1380\t3.0\tInternet\tNonpartisan\tNone\n39.0\t48.0\t6.0\t2.0\t5.0\tmonmouth-university-25187\tMonmouth University\t2016-08-12\t2016-08-15\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t402\t4.9\tLive Phone\tNonpartisan\tNone\n40.0\t45.0\t5.0\t4.0\t4.0\tcbs-yougov-25156\tCBS/YouGov\t2016-08-10\t2016-08-12\t\tLikely Voters\t1194\t3.6\tInternet\tNonpartisan\tNone\n44.0\t45.0\t6.0\t1.0\t3.0\topinion-savvy-fox-13-25136\tOpinion Savvy/Fox 13\t2016-08-10\t2016-08-10\tIf the election to determine the next President of the United States were held today and your choices were: Democratic nominee Hillary Clinton; Republican nominee Donald Trump; Libertarian nominee Gary Johnson; and Green Party nominee Jill Stein; for whom would you vote?\tLikely Voters\t622\t4.0\tIVR/Online\tNonpartisan\tNone\n39.0\t44.0\t\t11.0\t7.0\tnbc-wsj-marist-25148\tNBC/WSJ/Marist\t2016-08-04\t2016-08-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t862\t3.3\tLive Phone\tNonpartisan\tNone\n36.0\t41.0\t9.0\t6.0\t9.0\tnbc-wsj-marist-25148\tNBC/WSJ/Marist\t2016-08-04\t2016-08-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t862\t3.3\tLive Phone\tNonpartisan\tNone\n45.0\t46.0\t\t3.0\t5.0\tquinnipiac-25101\tQuinnipiac\t2016-07-30\t2016-08-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote? As of today, do you lean more toward Clinton or Trump?\tLikely Voters\t1056\t3.0\tLive Phone\tNonpartisan\tNone\n43.0\t43.0\t7.0\t3.0\t3.0\tquinnipiac-25101\tQuinnipiac\t2016-07-30\t2016-08-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t1056\t3.0\tLive Phone\tNonpartisan\tNone\n42.0\t48.0\t\t\t10.0\tsuffolk-25062\tSuffolk\t2016-08-01\t2016-08-03\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean towards?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t4.0\t3.0\t12.0\tsuffolk-25062\tSuffolk\t2016-08-01\t2016-08-03\tFlorida’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n37.0\t44.0\t\t13.0\t7.0\tnbc-wsj-marist-24892\tNBC/WSJ/Marist\t2016-07-05\t2016-07-11\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t871\t3.3\tLive Phone\tNonpartisan\tNone\n36.0\t41.0\t7.0\t6.0\t10.0\tnbc-wsj-marist-24892\tNBC/WSJ/Marist\t2016-07-05\t2016-07-11\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t871\t3.3\tLive Phone\tNonpartisan\tNone\n42.0\t39.0\t\t6.0\t13.0\tquinnipiac-24869\tQuinnipiac\t2016-06-30\t2016-07-11\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters\t1015\t3.1\tLive Phone\tNonpartisan\tNone\n41.0\t36.0\t7.0\t6.0\t11.0\tquinnipiac-24869\tQuinnipiac\t2016-06-30\t2016-07-11\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tRegistered Voters\t1015\t3.1\tLive Phone\tNonpartisan\tNone\n47.0\t42.0\t2.0\t1.0\t8.0\tjmc-analytics-r-24864\tJMC Analytics (R)\t2016-07-09\t2016-07-10\t\tLikely Voters\t700\t3.7\tAutomated Phone\tPollster\tRep\n40.0\t45.0\t6.0\t2.0\t7.0\tgqr-d-project-new-america-24897\tGQR (D-Project New America) \t2016-07-06\t2016-07-10\tThinking about the election for President in November, if the election for President were held today and the candidates were... for whom would you vote?\tLikely Voters\t1100\t4.1\tLive Phone\tPollster\tDem\n49.0\t45.0\t\t6.0\t\tgravis-marketing-oann-24867\tGravis Marketing/OANN\t2016-06-27\t2016-06-28\t\tRegistered Voters\t1619\t2.4\tAutomated Phone\tNonpartisan\tNone\n47.0\t45.0\t\t\t8.0\tonmessage-r-let-s-get-to-work-24865\tOnmessage (R-Let's Get to Work)\t2016-06-26\t2016-06-28\t\tLikely Voters\t800\t3.46\tLive Phone\tSponsor\tRep\n42.0\t46.0\t2.0\t5.0\t5.0\tsurveyusa-bay-news-9-news-13-24797\tSurveyUSA/Bay News 9/News 13\t2016-06-25\t2016-06-27\t\tLikely Voters\t1678\t2.4\tIVR/Online\tNonpartisan\tNone\n41.0\t44.0\t\t8.0\t7.0\tcbs-yougov-24766\tCBS/YouGov\t2016-06-21\t2016-06-24\t\tLikely Voters\t1192\t3.6\tInternet\tNonpartisan\tNone\n39.0\t52.0\t\t6.0\t3.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24842\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n38.0\t49.0\t9.0\t2.0\t2.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24842\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n39.0\t47.0\t\t2.0\t12.0\tquinnipiac-24720\tQuinnipiac\t2016-06-08\t2016-06-19\t\tRegistered Voters\t975\t3.1\tLive Phone\tNonpartisan\tNone\n36.0\t42.0\t7.0\t5.0\t10.0\tquinnipiac-24720\tQuinnipiac\t2016-06-08\t2016-06-19\t\tRegistered Voters\t975\t3.1\tLive Phone\tNonpartisan\tNone\n41.0\t40.0\t4.0\t2.0\t13.0\tppp-d-24635\tPPP (D)\t2016-06-02\t2016-06-05\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, who would you vote for?\tLikely Voters\t737\t3.6\tIVR/Online\tPollster\tDem\n45.0\t44.0\t\t\t11.0\tppp-d-24635\tPPP (D)\t2016-06-02\t2016-06-05\tIf the candidates for President this fall were just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t737\t3.6\tIVR/Online\tPollster\tDem\n42.0\t45.0\t6.0\t\t7.0\tmason-dixon-24606\tMason-Dixon\t2016-05-31\t2016-06-02\t\tRegistered Voters\t625\t\tLive Phone\tNonpartisan\tNone\n42.0\t43.0\t\t\t15.0\tcbs-yougov-24529\tCBS/YouGov\t2016-05-16\t2016-05-19\t\tLikely Voters\t995\t4.0\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t\t12.0\tgravis-marketing-24554\tGravis Marketing\t2016-05-17\t2016-05-18\t\tRegistered Voters\t2542\t2.0\tAutomated Phone\tNonpartisan\tNone\n42.0\t43.0\t\t2.0\t13.0\tquinnipiac-24463\tQuinnipiac\t2016-04-27\t2016-05-08\t\tRegistered Voters\t1051\t3.0\tLive Phone\tNonpartisan\tNone\n36.0\t49.0\t\t\t15.0\tassociated-industries-of-florida-r-24418\tAssociated Industries of Florida (R)\t2016-04-25\t2016-04-27\t\tLikely Voters\t604\t4.0\tLive Phone\tPollster\tRep\n41.0\t49.0\t\t\t9.0\tnbc-wsj-marist-24057\tNBC/WSJ/Marist\t2016-03-04\t2016-03-10\t\tRegistered Voters\t2422\t2.0\tLive Phone\tNonpartisan\tNone\n45.0\t44.0\t\t\t12.0\tsurveyusa-bay-news-9-news-13-24010\tSurveyUSA/Bay News 9/News 13\t2016-03-04\t2016-03-06\t\tLikely Voters\t1961\t2.3\tIVR/Online\tNonpartisan\tNone\n43.0\t50.0\t\t7.0\t1.0\tcnn-24021\tCNN\t2016-03-02\t2016-03-06\t\tRegistered Voters\t854\t3.5\tLive Phone\tNonpartisan\tNone\n46.0\t44.0\t\t\t10.0\tppp-d-23886\tPPP (D)\t2016-02-24\t2016-02-25\t\tLikely Voters\t1012\t3.1\tIVR/Online\tPollster\tDem\n38.0\t45.0\t\t3.0\t14.5\tflorida-southern-college-center-23730\tFlorida Southern College Center\t2016-01-30\t2016-02-06\t\tRegistered Voters\t608\t4.0\tLive Phone\tNonpartisan\tNone\n47.0\t44.0\t\t\t9.0\tflorida-atlantic-university-23532\tFlorida Atlantic University\t2016-01-15\t2016-01-18\t\tRegistered Voters\t1008\t3.0\tAutomated Phone\tNonpartisan\tNone\n41.0\t49.0\t\t\t\tsaint-leo-university-23292\tSaint Leo University\t2015-11-29\t2015-12-03\t\tLikely Voters\t404\t\tInternet\tNonpartisan\tNone\n49.0\t41.0\t\t\t10.0\tflorida-atlantic-university-23188\tFlorida Atlantic University\t2015-11-15\t2015-11-16\t\tRegistered Voters\t829\t3.3\tAutomated Phone\tNonpartisan\tNone\n47.0\t43.0\t\t\t9.0\tsurveyusa-bay-news-9-news-13-23054\tSurveyUSA/Bay News 9/News 13\t2015-10-28\t2015-11-01\t\tLikely Voters\t2400\t2.2\tIVR/Online\tNonpartisan\tNone\n41.0\t46.0\t\t3.0\t10.0\tquinnipiac-22860\tQuinnipiac\t2015-09-25\t2015-10-05\t\tRegistered Voters\t1173\t2.9\tLive Phone\tNonpartisan\tNone\n46.0\t45.0\t\t\t10.0\tflorida-atlantic-university-23190\tFlorida Atlantic University\t2015-09-17\t2015-09-20\t\tRegistered Voters\t801\t3.4\tAutomated Phone\tNonpartisan\tNone\n41.0\t42.0\t\t\t\tcherry-r-florida-chamber-of-commerce-22910\tCherry (R-Florida Chamber of Commerce)\t2015-09-16\t2015-09-20\t\tLikely Voters\t605\t4.0\tLive Phone\tPollster\tRep\n48.0\t42.0\t\t\t9.0\tppp-d-22737\tPPP (D)\t2015-09-11\t2015-09-13\t\tLikely Voters\t814\t3.4\tIVR/Online\tPollster\tDem\n43.0\t41.0\t\t3.0\t13.0\tquinnipiac-22582\tQuinnipiac\t2015-08-07\t2015-08-18\t\tRegistered Voters\t1093\t3.0\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/GA.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n45.0\t45.0\t7.0\t\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t2419\t\tInternet\tNonpartisan\tNone\n49.0\t46.0\t3.0\t\t2.0\tlandmark-r-rosetta-stone-26789\tLandmark (R)/Rosetta Stone\t2016-11-06\t2016-11-06\tIf the election for President of the United States were held today and the candidates were Donald Trump, the Republican, Hillary Clinton, the Democrat, and Gary Johnson, the Libertarian, for whom would you vote?\tLikely Voters\t1200\t2.8\tIVR/Online\tPollster\tRep\n50.0\t44.0\t\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t366\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t6.0\t\t4.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t2348\t\tInternet\tNonpartisan\tNone\n48.0\t42.0\t\t\t10.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t691\t\tInternet\tNonpartisan\tNone\n49.0\t43.0\t4.0\t1.0\t3.0\tcbs-yougov-26801\tCBS/YouGov\t2016-11-03\t2016-11-05\t\tLikely Voters\t995\t4.6\tInternet\tNonpartisan\tNone\n45.0\t45.0\t7.0\t\t4.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t2568\t\tInternet\tNonpartisan\tNone\n48.0\t46.0\t4.0\t\t2.0\tlandmark-r-rosetta-stone-wsb-tv-26739\tLandmark (R)/Rosetta Stone/WSB-TV\t2016-11-02\t2016-11-03\tIf the election for President of the United States were held today and the candidates were Donald Trump, the Republican, Hillary Clinton, the Democrat, and Gary Johnson, the Libertarian, for whom would you vote?\tLikely Voters\t1000\t3.1\tIVR/Online\tPollster\tRep\n49.0\t45.0\t6.0\t\t1.0\topinion-savvy-fox-5-atlanta-26710\tOpinion Savvy/Fox 5 Atlanta\t2016-11-02\t2016-11-03\tIf the election to determine the next President of the United States were held today and your choices were: Democratic nominee Hillary Clinton; Republican nominee Donald Trump; and Libertarian nominee Gary Johnson, for whom would you vote?\tLikely Voters\t538\t4.2\tIVR/Online\tNonpartisan\tNone\n46.0\t44.0\t6.0\t\t4.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t2872\t\tInternet\tNonpartisan\tNone\n48.0\t42.0\t\t\t10.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t706\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t6.0\t\t4.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t2722\t\tInternet\tNonpartisan\tNone\n47.0\t46.0\t\t6.0\t1.0\tnbc-wsj-marist-26683\tNBC/WSJ/Marist\t2016-10-30\t2016-11-01\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t707\t3.7\tLive Phone\tNonpartisan\tNone\n45.0\t44.0\t8.0\t2.0\t1.0\tnbc-wsj-marist-26683\tNBC/WSJ/Marist\t2016-10-30\t2016-11-01\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t707\t3.7\tLive Phone\tNonpartisan\tNone\n45.0\t44.0\t7.0\t\t4.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t2678\t\tInternet\tNonpartisan\tNone\n46.0\t44.0\t7.0\t\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t2665\t\tInternet\tNonpartisan\tNone\n46.0\t44.0\t7.0\t\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t2517\t\tInternet\tNonpartisan\tNone\n50.0\t45.0\t\t6.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t365\t\tInternet\tNonpartisan\tNone\n45.0\t44.0\t8.0\t\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t2433\t\tInternet\tNonpartisan\tNone\n49.0\t42.0\t3.0\t\t6.0\tsurveyusa-11alive-26573\tSurveyUSA/11Alive\t2016-10-25\t2016-10-27\t\tLikely Voters\t594\t4.1\tIVR/Online\tNonpartisan\tNone\n48.0\t43.0\t\t\t9.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t861\t\tInternet\tNonpartisan\tNone\n44.0\t43.0\t8.0\t0.0\t5.0\tquinnipiac-26509\tQuinnipiac\t2016-10-20\t2016-10-26\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, and Gary Johnson and Bill Weld the Libertarians, for whom would you vote?\tLikely Voters\t707\t3.7\tLive Phone\tNonpartisan\tNone\n46.0\t46.0\t\t1.0\t7.0\tquinnipiac-26509\tQuinnipiac\t2016-10-20\t2016-10-26\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t707\t3.7\tLive Phone\tNonpartisan\tNone\n46.0\t44.0\t7.0\t\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t2567\t\tInternet\tNonpartisan\tNone\n47.0\t44.0\t7.0\t\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t2235\t\tInternet\tNonpartisan\tNone\n46.0\t44.0\t7.0\t\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1906\t\tInternet\tNonpartisan\tNone\n48.0\t46.0\t\t6.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t367\t\tInternet\tNonpartisan\tNone\n50.0\t46.0\t3.0\t\t1.0\topinion-savvy-fox-5-atlanta-26362\tOpinion Savvy/Fox 5 Atlanta\t2016-10-20\t2016-10-20\tIf the election to determine the next President of the United States were held today and your choices were: Democratic nominee Hillary Clinton; Republican nominee Donald Trump; and Libertarian nominee Gary Johnson, for whom would you vote?\tLikely Voters\t570\t4.1\tIVR/Online\tNonpartisan\tNone\n47.0\t43.0\t5.0\t\t5.0\tlandmark-r-26356\tLandmark (R)\t2016-10-20\t2016-10-20\tIf the election for President of the United States were held today and the candidates were Donald Trump, the Republican, and Hillary Clinton, the Democrat, and Gary Johnson, the Libertarian, for whom would you vote?\tLikely Voters\t600\t4.0\tIVR/Live Phone\tPollster\tRep\n44.0\t42.0\t9.0\t2.0\t4.0\tabt-srbi-inc-atlanta-journal-constitution-26347\tAbt SRBI Inc/Atlanta Journal-Constitution\t2016-10-17\t2016-10-20\t\tLikely Voters\t839\t4.26\tLive Phone\tNonpartisan\tNone\n49.0\t41.0\t\t\t10.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t826\t\tInternet\tNonpartisan\tNone\n40.0\t44.0\t8.0\t1.0\t8.0\tlucid-the-times-picayune-26404\tLucid/The Times-Picayune\t2016-10-17\t2016-10-18\t\tLikely Voters\t807\t\tInternet\tNonpartisan\tNone\n49.0\t45.0\t\t6.0\t\tupi-cvoter-26297\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t351\t\tInternet\tNonpartisan\tNone\n45.0\t48.0\t\t\t7.0\twashpost-surveymonkey-26242\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t886\t\tInternet\tNonpartisan\tNone\n41.0\t45.0\t9.0\t2.0\t3.0\twashpost-surveymonkey-26242\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t886\t\tInternet\tNonpartisan\tNone\n50.0\t42.0\t\t\t8.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t1020\t\tInternet\tNonpartisan\tNone\n48.0\t42.0\t4.0\t\t6.0\tlandmark-r-26355\tLandmark (R)\t2016-10-11\t2016-10-12\tIf the election for President of the United States were held today and the candidates were Donald Trump, the Republican, and Hillary Clinton, the Democrat, and Gary Johnson, the Libertarian, for whom would you vote?\tLikely Voters\t1400\t2.7\tIVR/Live Phone\tPollster\tRep\n49.0\t45.0\t\t7.0\t\tupi-cvoter-26031\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t360\t\tInternet\tNonpartisan\tNone\n48.0\t43.0\t\t\t9.0\tipsos-reuters-26104\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t583\t\tInternet\tNonpartisan\tNone\n52.0\t43.0\t\t6.0\t\tupi-cvoter-25907\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t626\t\tInternet\tNonpartisan\tNone\n51.0\t38.0\t\t\t11.0\tipsos-reuters-25857\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t508\t\tInternet\tNonpartisan\tNone\n51.0\t43.0\t\t7.0\t\tupi-cvoter-25736\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t639\t\tInternet\tNonpartisan\tNone\n47.0\t43.0\t6.0\t\t5.0\tlandmark-r-rosetta-stone-wsb-tv-25657\tLandmark (R)/Rosetta Stone/WSB-TV\t2016-09-21\t2016-09-22\tIf the election for President of the United States were held today and the candidates were Donald Trump, the Republican, and Hillary Clinton, the Democrat, and Gary Johnson, the Libertarian, for whom would you vote?\tLikely Voters\t600\t4.0\tIVR/Live Phone\tPollster\tRep\n46.0\t43.0\t\t\t11.0\tipsos-reuters-25687\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t947\t\tInternet\tNonpartisan\tNone\n47.0\t40.0\t9.0\t0.0\t4.0\tquinnipiac-25621\tQuinnipiac\t2016-09-13\t2016-09-21\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, and Gary Johnson and Bill Weld the Libertarians, for whom would you vote?\tLikely Voters\t638\t3.9\tLive Phone\tNonpartisan\tNone\n50.0\t44.0\t\t1.0\t5.0\tquinnipiac-25621\tQuinnipiac\t2016-09-13\t2016-09-21\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t638\t3.9\tLive Phone\tNonpartisan\tNone\n45.0\t42.0\t8.0\t1.0\t5.0\tmonmouth-university-25528\tMonmouth University\t2016-09-15\t2016-09-18\t\tLikely Voters\t401\t4.9\tLive Phone\tNonpartisan\tNone\n48.0\t40.0\t\t\t12.0\tipsos-reuters-25544\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t890\t\tInternet\tNonpartisan\tNone\n46.0\t42.0\t10.0\t\t2.0\topinion-savvy-fox-5-atlanta-25507\tOpinion Savvy/Fox 5 Atlanta\t2016-09-14\t2016-09-14\tIf the election to determine the next President of the United States were held today and your choices were: Democratic nominee Hillary Clinton; Republican nominee Donald Trump; and Libertarian nominee Gary Johnson, for whom would you vote?\tLikely Voters\t568\t4.1\tIVR/Online\tNonpartisan\tNone\n46.0\t43.0\t\t8.0\t2.0\tnbc-wsj-marist-25444\tNBC/WSJ/Marist\t2016-09-06\t2016-09-08\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t625\t3.9\tLive Phone\tNonpartisan\tNone\n44.0\t42.0\t10.0\t1.0\t3.0\tnbc-wsj-marist-25444\tNBC/WSJ/Marist\t2016-09-06\t2016-09-08\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t625\t3.9\tLive Phone\tNonpartisan\tNone\n46.0\t46.0\t\t\t8.0\twashpost-surveymonkey-25355\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2034\t\tInternet\tNonpartisan\tNone\n40.0\t39.0\t12.0\t4.0\t5.0\twashpost-surveymonkey-25355\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2034\t\tInternet\tNonpartisan\tNone\n43.0\t43.0\t11.0\t\t3.0\topinion-savvy-fox-5-atlanta-25210\tOpinion Savvy/Fox 5 Atlanta\t2016-08-17\t2016-08-17\tIf the election to determine the next President of the United States were held today and your choices were: Democratic nominee Hillary Clinton; Republican nominee Donald Trump; and Libertarian nominee Gary Johnson, for whom would you vote?\tLikely Voters\t730\t3.6\tIVR/Online\tNonpartisan\tNone\n45.0\t41.0\t5.0\t4.0\t5.0\tcbs-yougov-25157\tCBS/YouGov\t2016-08-10\t2016-08-12\t\tLikely Voters\t988\t4.3\tInternet\tNonpartisan\tNone\n45.0\t44.0\t\t11.0\t\tgravis-marketing-25134\tGravis Marketing\t2016-08-04\t2016-08-08\tIf you had to vote today in a matchup between Hillary Clinton and Donald Trump, who would you vote for?\tRegistered Voters\t1604\t2.5\tIVR/Online\tNonpartisan\tNone\n43.0\t39.0\t8.0\t10.0\t\tgravis-marketing-25134\tGravis Marketing\t2016-08-04\t2016-08-08\tIf you had to vote today in a matchup between Hillary Clinton, Donald Trump, Gary Johnson and Jill Stein, who would you vote for?\tRegistered Voters\t1604\t2.5\tIVR/Online\tNonpartisan\tNone\n40.0\t44.0\t\t10.0\t5.0\tabt-srbi-inc-atlanta-journal-constitution-25070\tAbt SRBI Inc/Atlanta Journal-Constitution\t2016-08-01\t2016-08-04\t\tRegistered Voters\t847\t4.29\tLive Phone\tNonpartisan\tNone\n38.0\t41.0\t11.0\t4.0\t5.0\tabt-srbi-inc-atlanta-journal-constitution-25070\tAbt SRBI Inc/Atlanta Journal-Constitution\t2016-08-01\t2016-08-04\t\tRegistered Voters\t847\t4.29\tLive Phone\tNonpartisan\tNone\n46.0\t46.0\t4.0\t1.0\t3.0\tlandmark-r-rosetta-stone-wsb-tv-25041\tLandmark (R)/Rosetta Stone/WSB-TV\t2016-08-01\t2016-08-01\tIf the election for President of the United States were held today and the candidates were Donald Trump, the Republican, and Hillary Clinton, the Democrat, Gary Johnson, the Libertarian, and Jill Stein, the Green Party candidate, for whom would you vote?\tLikely Voters\t787\t3.5\tIVR/Online\tPollster\tRep\n46.0\t42.0\t5.0\t2.0\t5.0\tsurveyusa-tegna-25036\tSurveyUSA/TEGNA\t2016-07-29\t2016-07-31\tIf the election for President of the United States were today, and you were filling out your ballot right now, who would you vote for?\tLikely Voters\t628\t4.0\tIVR/Online\tNonpartisan\tNone\n45.0\t44.0\t5.0\t2.0\t2.0\tlandmark-r-rosetta-stone-wsb-tv-24966\tLandmark (R)/Rosetta Stone/WSB-TV\t2016-07-24\t2016-07-24\tIf the election for President of the United States were held today and the candidates were Donald Trump, the Republican, and Hillary Clinton, the Democrat, Gary Johnson, the Libertarian, and Jill Stein, the Green Party candidate, for whom would you vote?\tLikely Voters\t500\t4.4\tIVR/Online\tPollster\tRep\n45.0\t38.0\t6.0\t2.0\t9.0\tppp-d-24590\tPPP (D)\t2016-05-27\t2016-05-30\t\tLikely Voters\t724\t3.6\tIVR/Online\tPollster\tDem\n49.0\t40.0\t\t\t11.0\tppp-d-24590\tPPP (D)\t2016-05-27\t2016-05-30\t\tLikely Voters\t724\t3.6\tIVR/Online\tPollster\tDem\n44.0\t41.0\t\t10.0\t5.0\topinion-savvy-fox-5-atlanta-24503\tOpinion Savvy/Fox 5 Atlanta\t2016-05-15\t2016-05-15\t\tLikely Voters\t587\t4.0\tIVR/Online\tNonpartisan\tNone\n45.0\t41.0\t\t8.0\t6.0\tabt-srbi-inc-atlanta-journal-constitution-24490\tAbt SRBI Inc/Atlanta Journal-Constitution\t2016-05-09\t2016-05-12\t\tRegistered Voters\t822\t4.26\tLive Phone\tNonpartisan\tNone\n42.0\t41.0\t\t\t16.0\tlandmark-r-rosetta-stone-wsb-tv-24452\tLandmark (R)/Rosetta Stone/WSB-TV\t2016-05-05\t2016-05-05\t\tLikely Voters\t570\t4.1\tIVR/Online\tPollster\tRep\n37.0\t50.0\t\t\t10.0\tlake-research-d-24267\tLake Research (D)\t2016-03-31\t2016-04-03\t\tLikely Voters\t400\t4.9\tLive Phone\tPollster\tDem\n50.0\t41.0\t\t\t9.0\tsurveyusa-tegna-11alive-23896\tSurveyUSA/TEGNA/11Alive\t2016-02-22\t2016-02-23\t\tLikely Voters\t1261\t4.2\tIVR/Online\tSponsor\tOther\n46.0\t37.0\t\t12.0\t5.0\tsurveyusa-11alive-23042\tSurveyUSA/11Alive\t2015-10-15\t2015-10-26\t\tLikely Voters\t1554\t2.5\tIVR/Online\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/HI.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n28.0\t52.0\t16.0\t4.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t426\t\tInternet\tNonpartisan\tNone\n31.0\t65.0\t4.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t308\t\tInternet\tNonpartisan\tNone\n29.0\t52.0\t15.0\t4.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t426\t\tInternet\tNonpartisan\tNone\n28.0\t53.0\t15.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t458\t\tInternet\tNonpartisan\tNone\n29.0\t52.0\t15.0\t4.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t435\t\tInternet\tNonpartisan\tNone\n31.0\t52.0\t15.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t424\t\tInternet\tNonpartisan\tNone\n30.0\t51.0\t16.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t428\t\tInternet\tNonpartisan\tNone\n32.0\t51.0\t14.0\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t467\t\tInternet\tNonpartisan\tNone\n31.0\t52.0\t14.0\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t437\t\tInternet\tNonpartisan\tNone\n33.0\t64.0\t3.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t310\t\tInternet\tNonpartisan\tNone\n31.0\t49.0\t15.0\t4.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t522\t\tInternet\tNonpartisan\tNone\n33.0\t49.0\t14.0\t4.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t504\t\tInternet\tNonpartisan\tNone\n34.0\t49.0\t14.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t459\t\tInternet\tNonpartisan\tNone\n34.0\t50.0\t13.0\t3.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t388\t\tInternet\tNonpartisan\tNone\n32.0\t65.0\t3.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t306\t\tInternet\tNonpartisan\tNone\n33.0\t65.0\t3.0\t\tupi-cvoter-26298\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t312\t\tInternet\tNonpartisan\tNone\n32.0\t64.0\t3.0\t\tupi-cvoter-26032\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t304\t\tInternet\tNonpartisan\tNone\n34.0\t64.0\t3.0\t\tupi-cvoter-25908\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t461\t\tInternet\tNonpartisan\tNone\n33.0\t64.0\t4.0\t\tupi-cvoter-25737\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t460\t\tInternet\tNonpartisan\tNone\n28.0\t58.0\t\t14.0\twashpost-surveymonkey-25362\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t546\t\tInternet\tNonpartisan\tNone\n25.0\t51.0\t14.0\t9.0\twashpost-surveymonkey-25362\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t546\t\tInternet\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/IA.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n47.0\t38.0\t9.0\t7.0\t\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1781\t\tInternet\tNonpartisan\tNone\n48.0\t47.0\t\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t342\t\tInternet\tNonpartisan\tNone\n47.0\t37.0\t9.0\t6.0\t\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1598\t\tInternet\tNonpartisan\tNone\n44.0\t44.0\t\t\t12.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t595\t\tInternet\tNonpartisan\tNone\n46.0\t39.0\t6.0\t3.0\t6.0\tdes-moines-register-mediacom-selzer-26746\tDes Moines Register/Mediacom/Selzer\t2016-11-01\t2016-11-04\t\tLikely Voters\t800\t3.5\tLive Phone\tNonpartisan\tNone\n47.0\t37.0\t9.0\t6.0\t\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1604\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t3.0\t3.0\t7.0\tloras-college-26735\tLoras College\t2016-11-01\t2016-11-03\tIf the Presidential election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, Gary Johnson for the Libertarians and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n47.0\t37.0\t10.0\t7.0\t\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1469\t\tInternet\tNonpartisan\tNone\n44.0\t45.0\t\t\t11.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t571\t\tInternet\tNonpartisan\tNone\n44.0\t41.0\t5.0\t4.0\t6.0\traba-research-simpson-26692\tRABA Research/Simpson\t2016-11-01\t2016-11-02\tIf the election for President were held today among these four candidates, for whom would you vote?\tLikely Voters\t1076\t3.0\tIVR/Online\tNonpartisan\tNone\n46.0\t44.0\t\t\t10.0\traba-research-simpson-26692\tRABA Research/Simpson\t2016-11-01\t2016-11-02\tIf the election were held today between only these two candidates, for whom would you vote?\tLikely Voters\t1076\t3.0\tIVR/Online\tNonpartisan\tNone\n47.0\t37.0\t9.0\t6.0\t\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1226\t\tInternet\tNonpartisan\tNone\n45.0\t39.0\t10.0\t6.0\t\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t867\t\tInternet\tNonpartisan\tNone\n45.0\t40.0\t10.0\t6.0\t\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t984\t\tInternet\tNonpartisan\tNone\n44.0\t40.0\t10.0\t6.0\t\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t905\t\tInternet\tNonpartisan\tNone\n48.0\t48.0\t\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t329\t\tInternet\tNonpartisan\tNone\n44.0\t41.0\t9.0\t6.0\t\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1177\t\tInternet\tNonpartisan\tNone\n42.0\t44.0\t\t\t14.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t547\t\tInternet\tNonpartisan\tNone\n44.0\t44.0\t4.0\t2.0\t6.0\tquinnipiac-26511\tQuinnipiac\t2016-10-20\t2016-10-26\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t791\t3.5\tLive Phone\tNonpartisan\tNone\n47.0\t46.0\t\t1.0\t6.0\tquinnipiac-26511\tQuinnipiac\t2016-10-20\t2016-10-26\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t791\t3.5\tLive Phone\tNonpartisan\tNone\n44.0\t41.0\t9.0\t5.0\t\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1337\t\tInternet\tNonpartisan\tNone\n44.0\t40.0\t9.0\t7.0\t\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1229\t\tInternet\tNonpartisan\tNone\n45.0\t40.0\t8.0\t7.0\t\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1038\t\tInternet\tNonpartisan\tNone\n48.0\t49.0\t\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t329\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t\t\t11.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t537\t\tInternet\tNonpartisan\tNone\n48.0\t49.0\t\t4.0\t\tupi-cvoter-26302\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t328\t\tInternet\tNonpartisan\tNone\n49.0\t44.0\t\t\t7.0\twashpost-surveymonkey-26243\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1135\t\tInternet\tNonpartisan\tNone\n45.0\t40.0\t10.0\t2.0\t4.0\twashpost-surveymonkey-26243\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1135\t\tInternet\tNonpartisan\tNone\n44.0\t45.0\t\t\t11.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t549\t\tInternet\tNonpartisan\tNone\n37.0\t41.0\t10.0\t2.0\t9.0\tlucid-the-times-picayune-26377\tLucid/The Times-Picayune\t2016-10-07\t2016-10-10\t\tLikely Voters\t917\t\tInternet\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26036\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t322\t\tInternet\tNonpartisan\tNone\n43.0\t39.0\t6.0\t4.0\t7.0\tdes-moines-register-mediacom-selzer-26007\tDes Moines Register/Mediacom/Selzer\t2016-10-03\t2016-10-06\t\tLikely Voters\t642\t3.9\tLive Phone\tNonpartisan\tNone\n46.0\t44.0\t\t\t10.0\tipsos-reuters-26108\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t528\t\tInternet\tNonpartisan\tNone\n49.0\t48.0\t\t4.0\t\tupi-cvoter-25912\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t491\t\tInternet\tNonpartisan\tNone\n49.0\t42.0\t\t\t9.0\tipsos-reuters-25861\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t501\t\tInternet\tNonpartisan\tNone\n49.0\t47.0\t\t4.0\t\tupi-cvoter-25742\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t481\t\tInternet\tNonpartisan\tNone\n42.0\t42.0\t\t6.0\t10.0\tloras-college-25661\tLoras College\t2016-09-20\t2016-09-22\tIf the Presidential election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t491\t4.4\tLive Phone\tNonpartisan\tNone\n38.0\t38.0\t9.0\t1.0\t14.0\tloras-college-25661\tLoras College\t2016-09-20\t2016-09-22\tIf the Presidential election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, Gary Johnson for the Libertarians and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t491\t4.4\tLive Phone\tNonpartisan\tNone\n51.0\t41.0\t\t\t8.0\tipsos-reuters-25696\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t521\t\tInternet\tNonpartisan\tNone\n44.0\t37.0\t10.0\t2.0\t5.0\tquinnipiac-25623\tQuinnipiac\t2016-09-13\t2016-09-21\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t612\t4.0\tLive Phone\tNonpartisan\tNone\n50.0\t44.0\t\t1.0\t6.0\tquinnipiac-25623\tQuinnipiac\t2016-09-13\t2016-09-21\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t612\t4.0\tLive Phone\tNonpartisan\tNone\n49.0\t41.0\t\t\t10.0\tipsos-reuters-25548\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t510\t\tInternet\tNonpartisan\tNone\n45.0\t37.0\t8.0\t4.0\t6.0\tmonmouth-university-25504\tMonmouth University\t2016-09-12\t2016-09-14\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t404\t4.9\tLive Phone\tNonpartisan\tNone\n40.0\t39.0\t10.0\t3.0\t8.0\traba-research-simpson-25451\tRABA Research/Simpson\t2016-09-06\t2016-09-08\tIf the election for President were held today among these four candidates, for whom would you vote?\tLikely Voters\t1054\t3.0\tIVR/Online\tNonpartisan\tNone\n43.0\t42.0\t\t\t15.0\traba-research-simpson-25451\tRABA Research/Simpson\t2016-09-06\t2016-09-08\tIf the election were held today between only these two candidates, for whom would you vote?\tLikely Voters\t1054\t3.0\tIVR/Online\tNonpartisan\tNone\n46.0\t42.0\t\t\t12.0\twashpost-surveymonkey-25366\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1875\t\tInternet\tNonpartisan\tNone\n40.0\t36.0\t16.0\t3.0\t5.0\twashpost-surveymonkey-25366\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1875\t\tInternet\tNonpartisan\tNone\n43.0\t45.0\t\t\t12.0\tppp-d-constitutional-responsibility-project-25415\tPPP (D-Constitutional Responsibility Project)\t2016-08-30\t2016-08-31\tThe candidates for President are Democrat Hillary Clinton and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t827\t3.4\tIVR/Online\tSponsor\tDem\n40.0\t40.0\t7.0\t6.0\t7.0\tcbs-yougov-25220\tCBS/YouGov\t2016-08-17\t2016-08-19\t\tLikely Voters\t987\t4.0\tInternet\tNonpartisan\tNone\n44.0\t47.0\t\t4.0\t6.0\tquinnipiac-25198\tQuinnipiac\t2016-08-09\t2016-08-16\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t846\t3.4\tLive Phone\tNonpartisan\tNone\n39.0\t41.0\t12.0\t4.0\t4.0\tquinnipiac-25198\tQuinnipiac\t2016-08-09\t2016-08-16\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t846\t3.4\tLive Phone\tNonpartisan\tNone\n41.0\t40.0\t\t\t19.0\tsuffolk-25128\tSuffolk\t2016-08-08\t2016-08-10\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n37.0\t36.0\t6.0\t3.0\t18.0\tsuffolk-25128\tSuffolk\t2016-08-08\t2016-08-10\tIowa’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n37.0\t41.0\t\t13.0\t9.0\tnbc-wsj-marist-25104\tNBC/WSJ/Marist\t2016-08-03\t2016-08-07\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t899\t3.3\tLive Phone\tNonpartisan\tNone\n35.0\t35.0\t12.0\t8.0\t10.0\tnbc-wsj-marist-25104\tNBC/WSJ/Marist\t2016-08-03\t2016-08-07\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t899\t3.3\tLive Phone\tNonpartisan\tNone\n40.0\t39.0\t\t12.0\t8.0\tcbs-yougov-24909\tCBS/YouGov\t2016-07-13\t2016-07-15\t\tLikely Voters\t998\t4.8\tInternet\tNonpartisan\tNone\n44.0\t42.0\t6.0\t3.0\t6.0\tmonmouth-university-24862\tMonmouth University\t2016-07-08\t2016-07-11\t\tLikely Voters\t401\t4.9\tLive Phone\tNonpartisan\tNone\n39.0\t42.0\t\t10.0\t8.0\tnbc-wsj-marist-24877\tNBC/WSJ/Marist\t2016-07-05\t2016-07-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t822\t3.4\tLive Phone\tNonpartisan\tNone\n40.0\t42.0\t\t18.0\t\tgravis-marketing-24885\tGravis Marketing\t2016-07-07\t2016-07-08\tIf you had to vote today in a matchup between Hillary Clinton and Donald Trump, who would you vote for?\tRegistered Voters\t1318\t2.7\tAutomated Phone\tNonpartisan\tNone\n37.0\t39.0\t8.0\t16.0\t\tgravis-marketing-24885\tGravis Marketing\t2016-07-07\t2016-07-08\tIf you had to vote today in a matchup between Hillary Clinton, Donald Trump, Gary Johnson and Jill Stein, who would you vote for?\tRegistered Voters\t1318\t2.7\tAutomated Phone\tNonpartisan\tNone\n34.0\t48.0\t\t4.0\t14.0\tloras-college-24806\tLoras College\t2016-06-24\t2016-06-28\tIf the Presidential election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n30.0\t44.0\t6.0\t2.0\t17.0\tloras-college-24806\tLoras College\t2016-06-24\t2016-06-28\tIf the Presidential election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, Gary Johnson for the Libertarians and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n39.0\t41.0\t\t\t20.0\tppp-d-americans-united-for-change-constitutional-responsibility-project-24786\tPPP (D-Americans United for Change/Constitutional Responsibility Project) \t2016-06-22\t2016-06-23\t\tLikely Voters\t897\t3.3\tIVR/Online\tSponsor\tDem\n41.0\t44.0\t\t\t15.0\tppp-d-constitutional-responsibility-project-24688\tPPP (D-Constitutional Responsibility Project)\t2016-06-09\t2016-06-13\t\tLikely Voters\t630\t3.9\tAutomated Phone\tSponsor\tDem\n40.0\t48.0\t\t\t12.0\tnbc-wsj-marist-23463\tNBC/WSJ/Marist\t2016-01-02\t2016-01-07\t\tRegistered Voters\t1470\t2.6\tLive Phone\tNonpartisan\tNone\n43.0\t45.0\t\t\t13.0\tppp-d-23364\tPPP (D)\t2015-12-10\t2015-12-13\t\tLikely Voters\t1426\t2.6\tIVR/Online\tPollster\tDem\n40.0\t41.0\t\t\t19.0\tmorning-consult-campaign-for-sustainable-rx-pricing-23184\tMorning Consult/Campaign for Sustainable Rx Pricing \t2015-11-10\t2015-11-16\t\tRegistered Voters\t641\t4.0\tLive Phone/Online\tNonpartisan\tNone\n44.0\t44.0\t\t\t12.0\tppp-d-23072\tPPP (D)\t2015-10-30\t2015-11-01\t\tLikely Voters\t1668\t2.4\tIVR/Online\tPollster\tDem\n48.0\t41.0\t\t\t11.0\tnbc-wsj-marist-22843\tNBC/WSJ/Marist\t2015-09-23\t2015-09-30\t\tRegistered Voters\t1061\t3.0\tLive Phone\tNonpartisan\tNone\n48.0\t43.0\t\t\t9.0\tnbc-marist-22684\tNBC/Marist\t2015-08-26\t2015-09-02\t\tRegistered Voters\t998\t3.1\tLive Phone\tNonpartisan\tNone\n40.0\t43.0\t\t\t17.0\tppp-d-22539\tPPP (D)\t2015-08-07\t2015-08-09\t\tLikely Voters\t1500\t2.5\tIVR/Online\tPollster\tDem"
  },
  {
    "path": "week-6/data/ID.tsv",
    "content": "Trump\tClinton\tJohnson\tMcMullin\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n47.0\t29.0\t6.0\t11.0\t4.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t612\t\tInternet\tNonpartisan\tNone\n60.0\t33.0\t\t\t\t7.0\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t322\t\tInternet\tNonpartisan\tNone\n47.0\t29.0\t7.0\t12.0\t3.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t557\t\tInternet\tNonpartisan\tNone\n53.0\t30.0\t\t\t\t17.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t325\t\tInternet\tNonpartisan\tNone\n47.0\t30.0\t6.0\t11.0\t4.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t556\t\tInternet\tNonpartisan\tNone\n49.0\t30.0\t6.0\t10.0\t3.0\t1.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t498\t\tInternet\tNonpartisan\tNone\n52.0\t30.0\t\t\t\t18.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t311\t\tInternet\tNonpartisan\tNone\n49.0\t30.0\t5.0\t12.0\t3.0\t1.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t442\t\tInternet\tNonpartisan\tNone\n47.0\t32.0\t7.0\t11.0\t2.0\t1.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t394\t\tInternet\tNonpartisan\tNone\n49.0\t31.0\t10.0\t7.0\t2.0\t1.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t447\t\tInternet\tNonpartisan\tNone\n49.0\t31.0\t11.0\t\t7.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t407\t\tInternet\tNonpartisan\tNone\n61.0\t34.0\t\t\t\t6.0\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t318\t\tInternet\tNonpartisan\tNone\n48.0\t29.0\t15.0\t3.0\t2.0\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t467\t\tInternet\tNonpartisan\tNone\n49.0\t29.0\t15.0\t1.0\t3.0\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t500\t\tInternet\tNonpartisan\tNone\n48.0\t29.0\t6.0\t10.0\t2.0\t8.0\trasmussen-heat-street-26516\tRasmussen/Heat Street\t2016-10-23\t2016-10-24\t\tLikely Voters\t750\t4.0\tIVR/Online\tNonpartisan\tNone\n50.0\t29.0\t15.0\t\t2.0\t4.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t438\t\tInternet\tNonpartisan\tNone\n50.0\t29.0\t15.0\t\t2.0\t4.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t351\t\tInternet\tNonpartisan\tNone\n59.0\t35.0\t\t\t\t6.0\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t320\t\tInternet\tNonpartisan\tNone\n51.0\t35.0\t\t\t\t14.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t287\t\tInternet\tNonpartisan\tNone\n60.0\t34.0\t\t\t6.0\t\tupi-cvoter-26299\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t316\t\tInternet\tNonpartisan\tNone\n54.0\t31.0\t\t\t\t15.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t323\t\tInternet\tNonpartisan\tNone\n60.0\t34.0\t\t\t7.0\t\tupi-cvoter-26033\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t330\t\tInternet\tNonpartisan\tNone\n55.0\t31.0\t\t\t\t14.0\tipsos-reuters-26105\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t320\t\tInternet\tNonpartisan\tNone\n62.0\t32.0\t\t\t6.0\t\tupi-cvoter-25909\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t487\t\tInternet\tNonpartisan\tNone\n60.0\t27.0\t\t\t\t13.0\tipsos-reuters-25858\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t276\t\tInternet\tNonpartisan\tNone\n61.0\t33.0\t\t\t6.0\t\tupi-cvoter-25738\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t479\t\tInternet\tNonpartisan\tNone\n55.0\t32.0\t\t\t\t13.0\tipsos-reuters-25689\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t273\t\tInternet\tNonpartisan\tNone\n56.0\t32.0\t\t\t\t12.0\tipsos-reuters-25545\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t261\t\tInternet\tNonpartisan\tNone\n53.0\t34.0\t\t\t\t13.0\twashpost-surveymonkey-25363\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t716\t\tInternet\tNonpartisan\tNone\n44.0\t25.0\t19.0\t\t7.0\t6.0\twashpost-surveymonkey-25363\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t716\t\tInternet\tNonpartisan\tNone\n44.0\t23.0\t5.0\t\t17.0\t7.0\tdan-jones-associates-idahopoliticsweekly-com-24927\tDan Jones & Associates/IdahoPoliticsWeekly.com\t2016-07-05\t2016-07-16\t\tLikely Voters\t601\t4.0\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/IL.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n35.0\t52.0\t10.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1823\t\tInternet\tNonpartisan\tNone\n40.0\t54.0\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t403\t\tInternet\tNonpartisan\tNone\n35.0\t52.0\t11.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1505\t\tInternet\tNonpartisan\tNone\n39.0\t51.0\t\t10.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t781\t\tInternet\tNonpartisan\tNone\n36.0\t53.0\t10.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1397\t\tInternet\tNonpartisan\tNone\n37.0\t52.0\t9.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1120\t\tInternet\tNonpartisan\tNone\n39.0\t52.0\t\t9.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t837\t\tInternet\tNonpartisan\tNone\n36.0\t53.0\t9.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t997\t\tInternet\tNonpartisan\tNone\n35.0\t52.0\t12.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t911\t\tInternet\tNonpartisan\tNone\n35.0\t52.0\t11.0\t1.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1003\t\tInternet\tNonpartisan\tNone\n34.0\t53.0\t12.0\t1.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t957\t\tInternet\tNonpartisan\tNone\n41.0\t56.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t387\t\tInternet\tNonpartisan\tNone\n34.0\t51.0\t12.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1162\t\tInternet\tNonpartisan\tNone\n37.0\t48.0\t6.0\t10.0\tloras-college-26605\tLoras College\t2016-10-26\t2016-10-27\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n34.0\t45.0\t8.0\t13.0\tloras-college-26605\tLoras College\t2016-10-26\t2016-10-27\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n35.0\t56.0\t\t9.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t591\t\tInternet\tNonpartisan\tNone\n34.0\t52.0\t12.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1274\t\tInternet\tNonpartisan\tNone\n34.0\t52.0\t12.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1091\t\tInternet\tNonpartisan\tNone\n34.0\t52.0\t11.0\t3.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t927\t\tInternet\tNonpartisan\tNone\n40.0\t56.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t412\t\tInternet\tNonpartisan\tNone\n28.0\t57.0\t\t15.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t530\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t8.0\t5.0\tvictory-research-26394\tVictory Research\t2016-10-16\t2016-10-18\t\tLikely Voters\t1200\t2.83\tLive Phone\tNonpartisan\tNone\n40.0\t56.0\t4.0\t\tupi-cvoter-26300\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t398\t\tInternet\tNonpartisan\tNone\n27.0\t60.0\t\t13.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t612\t\tInternet\tNonpartisan\tNone\n40.0\t55.0\t5.0\t\tupi-cvoter-26034\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t397\t\tInternet\tNonpartisan\tNone\n31.0\t57.0\t\t12.0\tipsos-reuters-26106\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t873\t\tInternet\tNonpartisan\tNone\n28.0\t53.0\t10.0\t10.0\tsouthern-illinois-university-25955\tSouthern Illinois University\t2016-09-27\t2016-10-02\t\tLikely Voters\t865\t3.3\tLive Phone\tNonpartisan\tNone\n42.0\t54.0\t5.0\t\tupi-cvoter-25910\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t682\t\tInternet\tNonpartisan\tNone\n33.0\t53.0\t\t14.0\tipsos-reuters-25859\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t641\t\tInternet\tNonpartisan\tNone\n41.0\t54.0\t5.0\t\tupi-cvoter-25740\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t657\t\tInternet\tNonpartisan\tNone\n35.0\t49.0\t5.0\t11.0\tvictory-research-25826\tVictory Research\t2016-09-21\t2016-09-24\t\tLikely Voters\t1200\t2.83\tLive Phone\tNonpartisan\tNone\n31.0\t53.0\t\t16.0\tipsos-reuters-25691\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t644\t\tInternet\tNonpartisan\tNone\n33.0\t47.0\t9.0\t11.0\tloras-college-25527\tLoras College\t2016-09-13\t2016-09-16\tIf the Presidential election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n30.0\t43.0\t11.0\t16.0\tloras-college-25527\tLoras College\t2016-09-13\t2016-09-16\tIf the Presidential election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, Gary Johnson for the Libertarians and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n36.0\t51.0\t\t13.0\tipsos-reuters-25546\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t615\t\tInternet\tNonpartisan\tNone\n38.0\t53.0\t\t9.0\twashpost-surveymonkey-25364\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2599\t\tInternet\tNonpartisan\tNone\n31.0\t45.0\t17.0\t6.0\twashpost-surveymonkey-25364\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2599\t\tInternet\tNonpartisan\tNone\n32.0\t51.0\t\t17.0\tnormington-petts-associates-d-duckworth-25095\tNormington, Petts & Associates (D-Duckworth)\t2016-08-01\t2016-08-04\t\tLikely Voters\t800\t3.5\tLive Phone\tSponsor\tDem\n34.0\t51.0\t11.0\t4.0\tvictory-research-24913\tVictory Research\t2016-07-14\t2016-07-16\t\tLikely Voters\t1200\t2.83\tLive Phone\tNonpartisan\tNone\n32.0\t57.0\t\t11.0\tnbc-wsj-marist-24058\tNBC/WSJ/Marist\t2016-03-04\t2016-03-10\t\tRegistered Voters\t1968\t2.2\tLive Phone\tNonpartisan\tNone\n33.0\t51.0\t\t16.0\tppp-d-22471\tPPP (D)\t2015-07-20\t2015-07-21\t\tLikely Voters\t931\t2.0\tIVR/Online\tPollster\tDem"
  },
  {
    "path": "week-6/data/IN.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n52.0\t35.0\t10.0\t\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1700\t\tInternet\tNonpartisan\tNone\n51.0\t43.0\t\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t338\t\tInternet\tNonpartisan\tNone\n52.0\t35.0\t10.0\t\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1383\t\tInternet\tNonpartisan\tNone\n54.0\t38.0\t\t\t8.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t541\t\tInternet\tNonpartisan\tNone\n53.0\t35.0\t9.0\t\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1253\t\tInternet\tNonpartisan\tNone\n52.0\t35.0\t9.0\t\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t923\t\tInternet\tNonpartisan\tNone\n53.0\t38.0\t\t\t9.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t531\t\tInternet\tNonpartisan\tNone\n51.0\t36.0\t10.0\t\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t790\t\tInternet\tNonpartisan\tNone\n49.0\t39.0\t5.0\t\t9.0\tgravis-marketing-26719\tGravis Marketing\t2016-10-30\t2016-11-01\t\tRegistered Voters\t399\t4.9\tInternet\tNonpartisan\tNone\n52.0\t37.0\t10.0\t\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t638\t\tInternet\tNonpartisan\tNone\n51.0\t37.0\t10.0\t\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t674\t\tInternet\tNonpartisan\tNone\n50.0\t39.0\t4.0\t2.0\t5.0\tmonmouth-university-26574\tMonmouth University\t2016-10-27\t2016-10-30\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, or Gary Johnson the Libertarian?\tLikely Voters\t402\t4.9\tLive Phone\tNonpartisan\tNone\n49.0\t37.0\t11.0\t\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t592\t\tInternet\tNonpartisan\tNone\n54.0\t42.0\t\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t332\t\tInternet\tNonpartisan\tNone\n50.0\t36.0\t12.0\t\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t740\t\tInternet\tNonpartisan\tNone\n54.0\t39.0\t\t\t7.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t555\t\tInternet\tNonpartisan\tNone\n50.0\t35.0\t12.0\t\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t784\t\tInternet\tNonpartisan\tNone\n49.0\t38.0\t5.0\t\t8.0\tgravis-marketing-26433\tGravis Marketing\t2016-10-22\t2016-10-24\tIf you had to vote today in a matchup between Donald Trump, Gary Johnson, and Hillary Clinton, who would you vote for?\tRegistered Voters\t596\t2.3\tInternet\tNonpartisan\tNone\n48.0\t35.0\t13.0\t1.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t688\t\tInternet\tNonpartisan\tNone\n48.0\t35.0\t13.0\t1.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t584\t\tInternet\tNonpartisan\tNone\n53.0\t43.0\t\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t340\t\tInternet\tNonpartisan\tNone\n49.0\t38.0\t\t\t13.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t666\t\tInternet\tNonpartisan\tNone\n43.0\t37.0\t9.0\t1.0\t11.0\twish-tv-ball-state-26363\tWISH-TV/Ball State \t2016-10-10\t2016-10-16\t\tLikely Voters\t544\t4.8\tLive Phone\tNonpartisan\tNone\n47.0\t41.0\t\t1.0\t11.0\twish-tv-ball-state-26363\tWISH-TV/Ball State \t2016-10-10\t2016-10-16\t\tLikely Voters\t544\t4.8\tLive Phone\tNonpartisan\tNone\n53.0\t43.0\t\t4.0\t\tupi-cvoter-26301\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t330\t\tInternet\tNonpartisan\tNone\n45.0\t41.0\t9.0\t1.0\t5.0\tmonmouth-university-26175\tMonmouth University\t2016-10-11\t2016-10-13\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, or Gary Johnson the Libertarian?\tLikely Voters\t402\t4.9\tLive Phone\tNonpartisan\tNone\n47.0\t38.0\t\t\t15.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t822\t\tInternet\tNonpartisan\tNone\n43.0\t37.0\t10.0\t3.0\t7.0\tlucid-the-times-picayune-26225\tLucid/The Times-Picayune\t2016-10-07\t2016-10-10\t\tLikely Voters\t1123\t\tInternet\tNonpartisan\tNone\n52.0\t43.0\t\t5.0\t\tupi-cvoter-26035\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t329\t\tInternet\tNonpartisan\tNone\n50.0\t37.0\t\t\t13.0\tipsos-reuters-26107\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t844\t\tInternet\tNonpartisan\tNone\n55.0\t41.0\t\t4.0\t\tupi-cvoter-25911\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t533\t\tInternet\tNonpartisan\tNone\n53.0\t36.0\t\t\t11.0\tipsos-reuters-25860\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t688\t\tInternet\tNonpartisan\tNone\n54.0\t41.0\t\t5.0\t\tupi-cvoter-25741\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t532\t\tInternet\tNonpartisan\tNone\n54.0\t35.0\t\t\t11.0\tipsos-reuters-25692\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t674\t\tInternet\tNonpartisan\tNone\n53.0\t33.0\t\t\t14.0\tipsos-reuters-25547\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t709\t\tInternet\tNonpartisan\tNone\n52.0\t37.0\t\t\t11.0\twashpost-surveymonkey-25365\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2294\t\tInternet\tNonpartisan\tNone\n46.0\t30.0\t13.0\t5.0\t6.0\twashpost-surveymonkey-25365\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2294\t\tInternet\tNonpartisan\tNone\n47.0\t36.0\t10.0\t1.0\t5.0\tmonmouth-university-25197\tMonmouth University\t2016-08-13\t2016-08-16\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t403\t4.9\tLive Phone\tNonpartisan\tNone\n48.0\t41.0\t\t\t11.0\tnbc-wsj-marist-24413\tNBC/WSJ/Marist\t2016-04-26\t2016-04-28\t\tRegistered Voters\t2149\t2.1\tLive Phone\tNonpartisan\tNone\n47.0\t39.0\t\t\t14.0\tpos-r-hpi-wthr-24601\tPOS (R)/HPI/WTHR\t2016-04-18\t2016-04-21\t\tLikely Voters\t500\t4.0\tLive Phone\tPollster\tRep"
  },
  {
    "path": "week-6/data/KS.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n49.0\t36.0\t13.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1311\t\tInternet\tNonpartisan\tNone\n54.0\t39.0\t8.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t328\t\tInternet\tNonpartisan\tNone\n48.0\t36.0\t14.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1139\t\tInternet\tNonpartisan\tNone\n54.0\t38.0\t\t8.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t519\t\tInternet\tNonpartisan\tNone\n48.0\t36.0\t14.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1193\t\tInternet\tNonpartisan\tNone\n58.0\t34.0\t9.0\t\tfort-hays-state-university-26729\tFort Hays State University\t2016-11-01\t2016-11-03\tIf the Presidential election were held today, who would you be most likely to vote for?\tLikely Voters\t313\t5.5\tLive Phone\tNonpartisan\tNone\n49.0\t36.0\t14.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1162\t\tInternet\tNonpartisan\tNone\n53.0\t38.0\t\t9.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t502\t\tInternet\tNonpartisan\tNone\n48.0\t37.0\t13.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1123\t\tInternet\tNonpartisan\tNone\n48.0\t37.0\t13.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1164\t\tInternet\tNonpartisan\tNone\n47.0\t36.0\t15.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1273\t\tInternet\tNonpartisan\tNone\n49.0\t38.0\t8.0\t6.0\tsurveyusa-ksn-news-26614\tSurveyUSA/KSN News\t2016-10-26\t2016-10-30\tIf the election for President of the United States were today, and you were filling out your ballot right now, who would you vote for? Republican Donald Trump? Democrat Hillary Clinton? Libertarian Gary Johnson? or Green Party candidate Jill Stein?\tLikely Voters\t624\t4.0\tIVR/Online\tNonpartisan\tNone\n47.0\t36.0\t16.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t1176\t\tInternet\tNonpartisan\tNone\n56.0\t39.0\t5.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t328\t\tInternet\tNonpartisan\tNone\n47.0\t36.0\t14.0\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1619\t\tInternet\tNonpartisan\tNone\n52.0\t38.0\t\t10.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t474\t\tInternet\tNonpartisan\tNone\n48.0\t36.0\t13.0\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1842\t\tInternet\tNonpartisan\tNone\n48.0\t36.0\t13.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1688\t\tInternet\tNonpartisan\tNone\n48.0\t37.0\t12.0\t3.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1468\t\tInternet\tNonpartisan\tNone\n56.0\t39.0\t5.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t323\t\tInternet\tNonpartisan\tNone\n50.0\t38.0\t\t12.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t517\t\tInternet\tNonpartisan\tNone\n56.0\t40.0\t5.0\t\tupi-cvoter-26303\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t332\t\tInternet\tNonpartisan\tNone\n47.0\t36.0\t9.0\t7.0\tsurveyusa-ksn-news-26275\tSurveyUSA/KSN News\t2016-10-11\t2016-10-15\tIf the election for President of the United States were today, and you were filling out your ballot right now, who would you vote for? Republican Donald Trump? Democrat Hillary Clinton? Libertarian Gary Johnson? or Green Party candidate Jill Stein?\tLikely Voters\t581\t4.1\tIVR/Online\tNonpartisan\tNone\n50.0\t38.0\t\t12.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t565\t\tInternet\tNonpartisan\tNone\n47.0\t39.0\t14.0\t\tfort-hays-state-university-26709\tFort Hays State University\t2016-09-01\t2016-10-13\tIf the Presidential election were held today, who would you be most likely to vote for?\tLikely Voters\t892\t3.2\tLive Phone\tNonpartisan\tNone\n55.0\t40.0\t6.0\t\tupi-cvoter-26037\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t332\t\tInternet\tNonpartisan\tNone\n55.0\t35.0\t\t10.0\tipsos-reuters-26109\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t556\t\tInternet\tNonpartisan\tNone\n58.0\t38.0\t4.0\t\tupi-cvoter-25913\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t535\t\tInternet\tNonpartisan\tNone\n54.0\t34.0\t\t12.0\tipsos-reuters-25862\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t498\t\tInternet\tNonpartisan\tNone\n57.0\t38.0\t5.0\t\tupi-cvoter-25743\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t518\t\tInternet\tNonpartisan\tNone\n51.0\t36.0\t\t13.0\tipsos-reuters-25697\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t472\t\tInternet\tNonpartisan\tNone\n49.0\t39.0\t\t12.0\tipsos-reuters-25549\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t459\t\tInternet\tNonpartisan\tNone\n48.0\t36.0\t10.0\t7.0\tsurveyusa-ksn-news-25480\tSurveyUSA/KSN News\t2016-09-06\t2016-09-11\tIf the election for President of the United States were today, and you were filling out your ballot right now, who would you vote for? Republican Donald Trump? Democrat Hillary Clinton? Or Libertarian Gary Johnson?\tLikely Voters\t595\t4.1\tIVR/Online\tNonpartisan\tNone\n49.0\t37.0\t\t14.0\twashpost-surveymonkey-25367\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t741\t\tInternet\tNonpartisan\tNone\n43.0\t30.0\t21.0\t6.0\twashpost-surveymonkey-25367\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t741\t\tInternet\tNonpartisan\tNone\n44.0\t39.0\t8.0\t9.0\tsurveyusa-ksn-news-25109\tSurveyUSA/KSN News\t2016-08-03\t2016-08-07\tIf the election for President of the United States were today, and you were filling out your ballot right now, who would you vote for? Republican Donald Trump? Democrat Hillary Clinton? Or Libertarian Gary Johnson?\tLikely Voters\t566\t4.2\tIVR/Live Phone\tNonpartisan\tNone\n44.0\t27.0\t13.0\t16.0\tfort-hays-state-university-kansas-newspapers-24976\tFort Hays State University/Kansas Newspapers\t2016-07-11\t2016-07-21\tIf the Presidential election were held today, who would you be most likely to vote for?\tLikely Voters\t542\t4.3\tLive Phone\tNonpartisan\tNone\n47.0\t36.0\t8.0\t9.0\tsurveyusa-ksn-news-24917\tSurveyUSA/KSN News\t2016-07-08\t2016-07-11\tIf the election for President of the United States were today, and you were filling out your ballot right now, who would you vote for?\tLikely Voters\t559\t4.2\tIVR/Live Phone\tNonpartisan\tNone\n36.0\t43.0\t\t21.0\tzogby-kansas-health-foundation-24669\tZogby/Kansas Health Foundation\t2016-06-04\t2016-06-06\t\tRegistered Voters\t433\t4.7\tIVR/Live Phone\tNonpartisan\tNone\n46.0\t36.0\t\t18.0\tfort-hays-state-university-23980\tFort Hays State University\t2016-02-19\t2016-02-26\t\tAdults\t440\t5.0\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/KY.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n54.0\t35.0\t10.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1315\t\tInternet\tNonpartisan\tNone\n60.0\t36.0\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t328\t\tInternet\tNonpartisan\tNone\n53.0\t35.0\t10.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1155\t\tInternet\tNonpartisan\tNone\n58.0\t38.0\t\t4.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t651\t\tInternet\tNonpartisan\tNone\n54.0\t36.0\t9.0\t1.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1079\t\tInternet\tNonpartisan\tNone\n55.0\t35.0\t9.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t843\t\tInternet\tNonpartisan\tNone\n59.0\t36.0\t\t5.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t641\t\tInternet\tNonpartisan\tNone\n56.0\t35.0\t9.0\t1.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t635\t\tInternet\tNonpartisan\tNone\n57.0\t34.0\t9.0\t1.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t499\t\tInternet\tNonpartisan\tNone\n58.0\t31.0\t10.0\t1.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t424\t\tInternet\tNonpartisan\tNone\n59.0\t31.0\t9.0\t1.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t318\t\tInternet\tNonpartisan\tNone\n59.0\t37.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t324\t\tInternet\tNonpartisan\tNone\n56.0\t32.0\t7.0\t5.0\tcygnal-runswitch-pr-26594\tCygnal (RunSwitch PR)\t2016-10-26\t2016-10-28\tIf you were voting today in the presidential election, would you vote for Democrat Hillary Clinton, Republican Donald Trump, or a third-party candidate?\tLikely Voters\t811\t3.44\tLive Phone\tSponsor\tRep\n61.0\t30.0\t8.0\t1.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t384\t\tInternet\tNonpartisan\tNone\n56.0\t38.0\t\t6.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t838\t\tInternet\tNonpartisan\tNone\n60.0\t29.0\t10.0\t1.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t426\t\tInternet\tNonpartisan\tNone\n60.0\t29.0\t9.0\t1.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t366\t\tInternet\tNonpartisan\tNone\n61.0\t29.0\t9.0\t1.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t297\t\tInternet\tNonpartisan\tNone\n58.0\t38.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t319\t\tInternet\tNonpartisan\tNone\n52.0\t41.0\t\t7.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t791\t\tInternet\tNonpartisan\tNone\n58.0\t38.0\t4.0\t\tupi-cvoter-26304\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t324\t\tInternet\tNonpartisan\tNone\n53.0\t39.0\t\t8.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t576\t\tInternet\tNonpartisan\tNone\n57.0\t38.0\t5.0\t\tupi-cvoter-26038\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t327\t\tInternet\tNonpartisan\tNone\n57.0\t37.0\t\t6.0\tipsos-reuters-26110\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t627\t\tInternet\tNonpartisan\tNone\n59.0\t37.0\t4.0\t\tupi-cvoter-25914\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t537\t\tInternet\tNonpartisan\tNone\n56.0\t38.0\t\t6.0\tipsos-reuters-25863\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t593\t\tInternet\tNonpartisan\tNone\n59.0\t36.0\t5.0\t\tupi-cvoter-25744\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t523\t\tInternet\tNonpartisan\tNone\n54.0\t37.0\t\t9.0\tipsos-reuters-25699\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t522\t\tInternet\tNonpartisan\tNone\n54.0\t35.0\t\t11.0\tipsos-reuters-25550\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t716\t\tInternet\tNonpartisan\tNone\n57.0\t34.0\t\t9.0\twashpost-surveymonkey-25368\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t732\t\tInternet\tNonpartisan\tNone\n52.0\t29.0\t12.0\t7.0\twashpost-surveymonkey-25368\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t732\t\tInternet\tNonpartisan\tNone\n42.0\t45.0\t\t13.0\tppp-d-22299\tPPP (D)\t2015-06-18\t2015-06-21\t\tLikely Voters\t1108\t2.9\tIVR/Online\tPollster\tDem"
  },
  {
    "path": "week-6/data/LA.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n52.0\t38.0\t6.0\t4.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t982\t\tInternet\tNonpartisan\tNone\n55.0\t40.0\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t329\t\tInternet\tNonpartisan\tNone\n52.0\t38.0\t6.0\t4.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t840\t\tInternet\tNonpartisan\tNone\n52.0\t36.0\t\t12.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t633\t\tInternet\tNonpartisan\tNone\n52.0\t38.0\t6.0\t4.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t778\t\tInternet\tNonpartisan\tNone\n52.0\t37.0\t7.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t646\t\tInternet\tNonpartisan\tNone\n53.0\t36.0\t\t11.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t618\t\tInternet\tNonpartisan\tNone\n51.0\t37.0\t8.0\t4.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t546\t\tInternet\tNonpartisan\tNone\n51.0\t37.0\t8.0\t4.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t470\t\tInternet\tNonpartisan\tNone\n51.0\t38.0\t7.0\t4.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t423\t\tInternet\tNonpartisan\tNone\n54.0\t36.0\t6.0\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t320\t\tInternet\tNonpartisan\tNone\n56.0\t40.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t316\t\tInternet\tNonpartisan\tNone\n54.0\t37.0\t7.0\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t418\t\tInternet\tNonpartisan\tNone\n53.0\t34.0\t\t13.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t934\t\tInternet\tNonpartisan\tNone\n53.0\t38.0\t7.0\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t435\t\tInternet\tNonpartisan\tNone\n53.0\t38.0\t7.0\t1.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t388\t\tInternet\tNonpartisan\tNone\n51.0\t39.0\t9.0\t1.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t324\t\tInternet\tNonpartisan\tNone\n55.0\t41.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t317\t\tInternet\tNonpartisan\tNone\n50.0\t35.0\t7.0\t8.0\tsouthern-media-opinion-research-26486\tSouthern Media/Opinion Research\t2016-10-19\t2016-10-21\t\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n43.0\t40.0\t10.0\t7.0\tlucid-the-times-picayune-26616\tLucid/The Times-Picayune\t2016-10-15\t2016-10-21\t\tLikely Voters\t614\t\tInternet\tNonpartisan\tNone\n49.0\t35.0\t10.0\t6.0\tuniversity-of-new-orleans-26522\tUniversity of New Orleans \t2016-10-15\t2016-10-21\t\tLikely Voters\t603\t4.0\tLive Phone\tNonpartisan\tNone\n51.0\t35.0\t\t14.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t612\t\tInternet\tNonpartisan\tNone\n54.0\t34.0\t3.0\t9.0\tmason-dixon-fox-8-raycom-26371\tMason-Dixon/FOX 8/Raycom\t2016-10-17\t2016-10-19\t\tLikely Voters\t625\t4.0\tLive Phone\tNonpartisan\tNone\n55.0\t41.0\t5.0\t\tupi-cvoter-26305\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t314\t\tInternet\tNonpartisan\tNone\n45.0\t38.0\t5.0\t12.0\tjmc-analytics-r-fleming-26208\tJMC Analytics (R-Fleming)\t2016-10-11\t2016-10-15\tIf the race for President were held today between Donald Trump and Hillary Clinton, which candidate would you support?\tLikely Voters\t800\t3.5\tIVR/Live Phone\tSponsor\tRep\n49.0\t36.0\t\t15.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t644\t\tInternet\tNonpartisan\tNone\n55.0\t40.0\t5.0\t\tupi-cvoter-26039\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t320\t\tInternet\tNonpartisan\tNone\n51.0\t36.0\t\t13.0\tipsos-reuters-26111\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t631\t\tInternet\tNonpartisan\tNone\n57.0\t39.0\t4.0\t\tupi-cvoter-25915\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t531\t\tInternet\tNonpartisan\tNone\n50.0\t38.0\t\t12.0\tipsos-reuters-25864\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t585\t\tInternet\tNonpartisan\tNone\n56.0\t39.0\t5.0\t\tupi-cvoter-25746\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t533\t\tInternet\tNonpartisan\tNone\n45.0\t35.0\t8.0\t13.0\tjmc-analytics-r-25682\tJMC Analytics (R)\t2016-09-22\t2016-09-24\t\tLikely Voters\t905\t3.3\tIVR/Live Phone\tPollster\tRep\n52.0\t36.0\t\t12.0\tipsos-reuters-25701\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t506\t\tInternet\tNonpartisan\tNone\n49.0\t33.0\t8.0\t11.0\tsouthern-media-opinion-research-25605\tSouthern Media/Opinion Research\t2016-09-15\t2016-09-17\t\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n54.0\t34.0\t\t12.0\tipsos-reuters-25551\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t511\t\tInternet\tNonpartisan\tNone\n46.0\t40.0\t8.0\t6.0\tanzalone-d-democrats-for-education-reform-25438\tAnzalone (D-Democrats For Education Reform)\t2016-08-29\t2016-09-01\tIf this year's election for President were held today, for whom would you vote-- Hillary Clinton, a Democrat, or Donald Trump, a Republican?\tLikely Voters\t605\t4.0\tLive Phone\tSponsor\tDem\n53.0\t38.0\t\t8.0\twashpost-surveymonkey-25369\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t871\t\tInternet\tNonpartisan\tNone\n49.0\t33.0\t12.0\t6.0\twashpost-surveymonkey-25369\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t871\t\tInternet\tNonpartisan\tNone\n52.0\t36.0\t4.0\t8.0\tjmc-analytics-r-24470\tJMC Analytics (R)\t2016-05-05\t2016-05-06\t\tLikely Voters\t624\t3.9\tAutomated Phone\tPollster\tRep\n47.0\t39.0\t\t\tclarus-wwl-tv-the-advocate-22846\tClarus/WWL-TV/The Advocate\t2015-09-20\t2015-09-23\t\tLikely Voters\t800\t3.46\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/MA.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n30.0\t56.0\t6.0\t4.0\t4.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1378\t\tInternet\tNonpartisan\tNone\n37.0\t59.0\t\t4.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t330\t\tInternet\tNonpartisan\tNone\n29.0\t56.0\t7.0\t4.0\t4.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1211\t\tInternet\tNonpartisan\tNone\n36.0\t53.0\t\t\t11.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t512\t\tInternet\tNonpartisan\tNone\n29.0\t55.0\t7.0\t4.0\t5.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1188\t\tInternet\tNonpartisan\tNone\n29.0\t56.0\t8.0\t3.0\t4.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1004\t\tInternet\tNonpartisan\tNone\n37.0\t53.0\t\t\t10.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t508\t\tInternet\tNonpartisan\tNone\n29.0\t57.0\t8.0\t3.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t878\t\tInternet\tNonpartisan\tNone\n26.0\t56.0\t8.0\t3.0\t7.0\twneu-26699\tWNEU\t2016-10-23\t2016-11-02\tIf the election for President were held today, and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johnson, the Libertarian, and Jill Stein, the Green-Rainbow Party candidate, would you vote for Hillary Clinton, Donald Trump, Gary Johnson, Jill Stein, or some other candidate for President?\tLikely Voters\t417\t5.0\tLive Phone\tNonpartisan\tNone\n29.0\t58.0\t7.0\t3.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t797\t\tInternet\tNonpartisan\tNone\n29.0\t58.0\t7.0\t4.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t796\t\tInternet\tNonpartisan\tNone\n28.0\t58.0\t8.0\t4.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t707\t\tInternet\tNonpartisan\tNone\n39.0\t58.0\t\t3.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t325\t\tInternet\tNonpartisan\tNone\n29.0\t60.0\t5.0\t4.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t780\t\tInternet\tNonpartisan\tNone\n27.0\t56.0\t\t\t17.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t627\t\tInternet\tNonpartisan\tNone\n25.0\t57.0\t4.0\t3.0\t12.0\tsuffolk-boston-globe-26505\tSuffolk/Boston Globe\t2016-10-24\t2016-10-26\tOn Tuesday, November 8th, the election for president will take place. The Massachusetts ballot lists four candidates for president in the following order: Democrat Hillary Clinton, Libertarian Gary Johnson, Green-Rainbow nominee Jill Stein, and Republican Donald Trump. At this point, who will you vote for or lean toward?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n29.0\t60.0\t6.0\t3.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t787\t\tInternet\tNonpartisan\tNone\n28.0\t61.0\t6.0\t3.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t675\t\tInternet\tNonpartisan\tNone\n29.0\t61.0\t6.0\t3.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t533\t\tInternet\tNonpartisan\tNone\n39.0\t58.0\t\t3.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t332\t\tInternet\tNonpartisan\tNone\n25.0\t57.0\t\t\t18.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t648\t\tInternet\tNonpartisan\tNone\n28.0\t54.0\t7.0\t5.0\t6.0\tmassinc-wbur-26223\tMassINC/WBUR\t2016-10-13\t2016-10-16\t\tLikely Voters\t502\t4.4\tLive Phone\tNonpartisan\tNone\n31.0\t57.0\t\t3.0\t9.0\tmassinc-wbur-26223\tMassINC/WBUR\t2016-10-13\t2016-10-16\t\tLikely Voters\t502\t4.4\tLive Phone\tNonpartisan\tNone\n39.0\t58.0\t\t3.0\t\tupi-cvoter-26308\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t329\t\tInternet\tNonpartisan\tNone\n39.0\t58.0\t\t4.0\t\tupi-cvoter-26042\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t328\t\tInternet\tNonpartisan\tNone\n30.0\t49.0\t\t\t21.0\tipsos-reuters-26114\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t904\t\tInternet\tNonpartisan\tNone\n26.0\t58.0\t7.0\t4.0\t5.0\twneu-25988\tWNEU\t2016-09-24\t2016-10-03\tIf the election for President were held today, and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johnson, the Libertarian, and Jill Stein, the Green-Rainbow Party candidate, would you vote for Hillary Clinton, Donald Trump, Gary Johnson, Jill Stein, or some other candidate for President?\tLikely Voters\t403\t5.0\tLive Phone\tNonpartisan\tNone\n30.0\t65.0\t\t\t5.0\twneu-25988\tWNEU\t2016-09-24\t2016-10-03\tIf the election for President were held today, and the candidates were just Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump?\tLikely Voters\t403\t5.0\tLive Phone\tNonpartisan\tNone\n41.0\t56.0\t\t3.0\t\tupi-cvoter-25918\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t507\t\tInternet\tNonpartisan\tNone\n28.0\t50.0\t\t\t22.0\tipsos-reuters-25867\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t780\t\tInternet\tNonpartisan\tNone\n40.0\t56.0\t\t4.0\t\tupi-cvoter-25749\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t501\t\tInternet\tNonpartisan\tNone\n30.0\t54.0\t\t\t16.0\tipsos-reuters-25707\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t692\t\tInternet\tNonpartisan\tNone\n34.0\t47.0\t9.0\t6.0\t5.0\tumass-amherst-wbz-tv-yougov-25722\tUMass Amherst/WBZ-TV/YouGov\t2016-09-15\t2016-09-20\tIf the presidential election were being held today, which candidate would you vote for?\tLikely Voters\t700\t4.3\tInternet\tNonpartisan\tNone\n31.0\t53.0\t\t\t16.0\tipsos-reuters-25554\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t691\t\tInternet\tNonpartisan\tNone\n28.0\t54.0\t9.0\t7.0\t3.0\tmassinc-wbur-25478\tMassINC/WBUR\t2016-09-07\t2016-09-10\t\tLikely Voters\t506\t4.4\tLive Phone\tNonpartisan\tNone\n31.0\t60.0\t\t5.0\t5.0\tmassinc-wbur-25478\tMassINC/WBUR\t2016-09-07\t2016-09-10\t\tLikely Voters\t506\t4.4\tLive Phone\tNonpartisan\tNone\n33.0\t56.0\t\t\t12.0\twashpost-surveymonkey-25372\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1167\t\tInternet\tNonpartisan\tNone\n29.0\t48.0\t11.0\t5.0\t6.0\twashpost-surveymonkey-25372\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1167\t\tInternet\tNonpartisan\tNone\n31.0\t55.0\t\t\t14.0\tsuffolk-boston-globe-24461\tSuffolk/Boston Globe\t2016-05-02\t2016-05-05\t\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n26.0\t62.0\t\t\t12.0\twneu-24252\tWNEU\t2016-04-01\t2016-04-10\t\tRegistered Voters\t497\t4.0\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/MD.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n28.0\t59.0\t10.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1216\t\tInternet\tNonpartisan\tNone\n38.0\t56.0\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t329\t\tInternet\tNonpartisan\tNone\n29.0\t60.0\t10.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1056\t\tInternet\tNonpartisan\tNone\n34.0\t56.0\t\t10.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t720\t\tInternet\tNonpartisan\tNone\n28.0\t61.0\t10.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1012\t\tInternet\tNonpartisan\tNone\n27.0\t62.0\t10.0\t1.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t851\t\tInternet\tNonpartisan\tNone\n35.0\t53.0\t\t12.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t711\t\tInternet\tNonpartisan\tNone\n26.0\t63.0\t10.0\t1.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t772\t\tInternet\tNonpartisan\tNone\n27.0\t63.0\t8.0\t1.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t695\t\tInternet\tNonpartisan\tNone\n27.0\t63.0\t8.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t740\t\tInternet\tNonpartisan\tNone\n27.0\t63.0\t9.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t696\t\tInternet\tNonpartisan\tNone\n38.0\t58.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t330\t\tInternet\tNonpartisan\tNone\n27.0\t62.0\t10.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t923\t\tInternet\tNonpartisan\tNone\n34.0\t54.0\t\t12.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t728\t\tInternet\tNonpartisan\tNone\n27.0\t62.0\t9.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1046\t\tInternet\tNonpartisan\tNone\n27.0\t61.0\t9.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t915\t\tInternet\tNonpartisan\tNone\n27.0\t61.0\t9.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t783\t\tInternet\tNonpartisan\tNone\n38.0\t58.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t332\t\tInternet\tNonpartisan\tNone\n29.0\t53.0\t\t18.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t533\t\tInternet\tNonpartisan\tNone\n37.0\t59.0\t4.0\t\tupi-cvoter-26307\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t325\t\tInternet\tNonpartisan\tNone\n32.0\t54.0\t\t14.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t686\t\tInternet\tNonpartisan\tNone\n37.0\t58.0\t5.0\t\tupi-cvoter-26041\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t331\t\tInternet\tNonpartisan\tNone\n32.0\t53.0\t\t15.0\tipsos-reuters-26113\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t705\t\tInternet\tNonpartisan\tNone\n39.0\t58.0\t4.0\t\tupi-cvoter-25917\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t527\t\tInternet\tNonpartisan\tNone\n27.0\t63.0\t6.0\t2.0\twashington-post-university-of-maryland-25976\tWashington Post/University of Maryland\t2016-09-27\t2016-09-30\t\tLikely Voters\t706\t4.0\tLive Phone\tNonpartisan\tNone\n33.0\t52.0\t\t15.0\tipsos-reuters-25866\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t669\t\tInternet\tNonpartisan\tNone\n38.0\t58.0\t5.0\t\tupi-cvoter-25748\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t531\t\tInternet\tNonpartisan\tNone\n34.0\t50.0\t\t16.0\tipsos-reuters-25705\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t628\t\tInternet\tNonpartisan\tNone\n25.0\t58.0\t8.0\t9.0\tgoucher-college-sarah-t-hughes-field-politics-center-25625\tGoucher College/Sarah T. Hughes Field Politics Center\t2016-09-17\t2016-09-20\tNext, if the election for President of the United States was held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson, or Jill Stein of the Green Party?\tLikely Voters\t514\t4.3\tLive Phone\tNonpartisan\tNone\n29.0\t53.0\t\t18.0\tipsos-reuters-25553\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t525\t\tInternet\tNonpartisan\tNone\n31.0\t61.0\t\t8.0\twashpost-surveymonkey-25371\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1199\t\tInternet\tNonpartisan\tNone\n27.0\t54.0\t15.0\t5.0\twashpost-surveymonkey-25371\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1199\t\tInternet\tNonpartisan\tNone\n25.0\t54.0\t10.0\t12.0\tbaltimore-sun-university-of-baltimore-opinionworks-25400\tBaltimore Sun/University of Baltimore/OpinionWorks\t2016-08-18\t2016-08-30\t\tLikely Voters\t756\t3.5\tLive Phone\tNonpartisan\tNone\n28.0\t61.0\t\t11.0\tppp-d-24314\tPPP (D)\t2016-04-15\t2016-04-17\t\tLikely Voters\t879\t3.3\tIVR/Online\tPollster\tDem\n27.0\t63.0\t\t10.0\tnbc4-marist-24262\tNBC4/Marist\t2016-04-05\t2016-04-09\t\tRegistered Voters\t2563\t1.9\tLive Phone\tNonpartisan\tNone\n28.0\t63.0\t5.0\t4.0\twashington-post-university-of-maryland-24223\tWashington Post/University of Maryland\t2016-03-30\t2016-04-03\t\tRegistered Voters\t\t\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/ME.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n38.0\t46.0\t10.0\t5.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t779\t\tInternet\tNonpartisan\tNone\n41.0\t54.0\t\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t308\t\tInternet\tNonpartisan\tNone\n39.0\t47.0\t7.0\t5.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t674\t\tInternet\tNonpartisan\tNone\n35.0\t42.0\t\t\t23.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t304\t\tInternet\tNonpartisan\tNone\n39.0\t47.0\t6.0\t5.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t635\t\tInternet\tNonpartisan\tNone\n39.0\t48.0\t6.0\t4.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t590\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t\t\t18.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t294\t\tInternet\tNonpartisan\tNone\n38.0\t47.0\t7.0\t5.0\t4.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t529\t\tInternet\tNonpartisan\tNone\n37.0\t49.0\t6.0\t4.0\t4.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t428\t\tInternet\tNonpartisan\tNone\n37.0\t49.0\t6.0\t4.0\t4.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t432\t\tInternet\tNonpartisan\tNone\n38.0\t50.0\t7.0\t3.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t386\t\tInternet\tNonpartisan\tNone\n43.0\t54.0\t\t3.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t312\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t7.0\t3.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t412\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t\t\t15.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t274\t\tInternet\tNonpartisan\tNone\n40.0\t47.0\t\t\t13.0\tmprc-26601\tMPRC\t2016-10-24\t2016-10-26\tIf the election for President were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t812\t3.4\tIVR/Online\tNonpartisan\tNone\n37.0\t42.0\t9.0\t4.0\t9.0\tmprc-26601\tMPRC\t2016-10-24\t2016-10-26\tIf the election for President were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Jill Stein and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters\t812\t3.4\tIVR/Online\tNonpartisan\tNone\n35.0\t52.0\t7.0\t4.0\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t410\t\tInternet\tNonpartisan\tNone\n37.0\t48.0\t5.0\t6.0\t3.0\tunh-portland-press-herald-maine-sunday-telegram-26553\tUNH/Portland Press Herald/Maine Sunday Telegram\t2016-10-20\t2016-10-25\t\tLikely Voters\t646\t\tLive Phone\tNonpartisan\tNone\n35.0\t51.0\t6.0\t4.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t370\t\tInternet\tNonpartisan\tNone\n36.0\t50.0\t6.0\t5.0\t3.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t318\t\tInternet\tNonpartisan\tNone\n42.0\t55.0\t\t3.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t309\t\tInternet\tNonpartisan\tNone\n42.0\t55.0\t\t3.0\t\tupi-cvoter-26306\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t313\t\tInternet\tNonpartisan\tNone\n39.0\t49.0\t\t\t12.0\tmprc-26350\tMPRC\t2016-10-14\t2016-10-15\tIf the election for President were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t890\t3.3\tIVR/Online\tNonpartisan\tNone\n36.0\t42.0\t9.0\t4.0\t9.0\tmprc-26350\tMPRC\t2016-10-14\t2016-10-15\tIf the election for President were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Jill Stein and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters\t890\t3.3\tIVR/Online\tNonpartisan\tNone\n35.0\t48.0\t\t\t17.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t281\t\tInternet\tNonpartisan\tNone\n40.0\t49.0\t\t\t11.0\tmprc-26145\tMPRC\t2016-10-07\t2016-10-09\tIf the election for President were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t892\t3.3\tIVR/Online\tNonpartisan\tNone\n36.0\t44.0\t9.0\t3.0\t8.0\tmprc-26145\tMPRC\t2016-10-07\t2016-10-09\tIf the election for President were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Jill Stein and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters\t892\t3.3\tIVR/Online\tNonpartisan\tNone\n41.0\t55.0\t\t4.0\t\tupi-cvoter-26040\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t305\t\tInternet\tNonpartisan\tNone\n33.0\t46.0\t\t\t21.0\tipsos-reuters-26112\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t303\t\tInternet\tNonpartisan\tNone\n43.0\t54.0\t\t3.0\t\tupi-cvoter-25916\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t462\t\tInternet\tNonpartisan\tNone\n34.0\t45.0\t\t\t21.0\tipsos-reuters-25865\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t326\t\tInternet\tNonpartisan\tNone\n43.0\t54.0\t\t4.0\t\tupi-cvoter-25747\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t460\t\tInternet\tNonpartisan\tNone\n38.0\t40.0\t\t\t22.0\tipsos-reuters-25704\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t306\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t\t15.0\t5.0\tunh-portland-press-herald-maine-sunday-telegram-25648\tUNH/Portland Press Herald/Maine Sunday Telegram\t2016-09-15\t2016-09-21\t\tLikely Voters\t513\t4.3\tLive Phone\tNonpartisan\tNone\n36.0\t40.0\t12.0\t5.0\t7.0\tunh-portland-press-herald-maine-sunday-telegram-25648\tUNH/Portland Press Herald/Maine Sunday Telegram\t2016-09-15\t2016-09-21\t\tLikely Voters\t513\t4.3\tLive Phone\tNonpartisan\tNone\n40.0\t45.0\t\t\t15.0\tmprc-25578\tMPRC\t2016-09-15\t2016-09-17\tIf the election for President were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t835\t3.4\tIVR/Online\tNonpartisan\tNone\n37.0\t37.0\t11.0\t5.0\t11.0\tmprc-25578\tMPRC\t2016-09-15\t2016-09-17\tIf the election for President were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Jill Stein and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters\t835\t3.4\tIVR/Online\tNonpartisan\tNone\n40.0\t41.0\t\t\t19.0\tipsos-reuters-25552\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t275\t\tInternet\tNonpartisan\tNone\n39.0\t42.0\t9.0\t5.0\t5.0\tsurveyusa-boston-globe-colby-college-25483\tSurveyUSA/Boston Globe/Colby College\t2016-09-04\t2016-09-10\t\tLikely Voters\t779\t3.6\tIVR/Online\tNonpartisan\tNone\n39.0\t47.0\t\t\t14.0\twashpost-surveymonkey-25370\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t715\t\tInternet\tNonpartisan\tNone\n34.0\t37.0\t15.0\t8.0\t7.0\twashpost-surveymonkey-25370\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t715\t\tInternet\tNonpartisan\tNone\n32.0\t42.0\t10.0\t4.0\t13.0\tmprc-25482\tMPRC\t2016-08-17\t2016-08-20\tIf the election for President were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Jill Stein and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters\t841\t3.4\tIVR/Online\tNonpartisan\tNone\n37.0\t48.0\t\t\t15.0\tmprc-25482\tMPRC\t2016-08-17\t2016-08-20\tIf the election for President were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t841\t3.4\tIVR/Online\tNonpartisan\tNone\n36.0\t46.0\t\t17.0\t\tgravis-marketing-25132\tGravis Marketing\t2016-08-04\t2016-08-08\tIf you had to vote today in a matchup between Hillary Clinton and Donald Trump, who would you vote for?\tRegistered Voters\t2046\t2.2\tIVR/Online\tNonpartisan\tNone\n33.0\t43.0\t10.0\t14.0\t\tgravis-marketing-25132\tGravis Marketing\t2016-08-04\t2016-08-08\tIf you had to vote today in a matchup between Hillary Clinton, Donald Trump, Gary Johnson and Jill Stein, who would you vote for?\tRegistered Voters\t2046\t2.2\tIVR/Online\tNonpartisan\tNone\n35.0\t42.0\t\t19.0\t4.0\tunh-portland-press-herald-maine-sunday-telegram-24771\tUNH/Portland Press Herald/Maine Sunday Telegram\t2016-06-15\t2016-06-21\t\tLikely Voters\t469\t4.5\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/MI.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n42.0\t44.0\t8.0\t3.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t3145\t\tInternet\tNonpartisan\tNone\n45.0\t49.0\t\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t334\t\tInternet\tNonpartisan\tNone\n42.0\t44.0\t8.0\t3.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t2868\t\tInternet\tNonpartisan\tNone\n45.0\t46.0\t\t\t9.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t609\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t6.0\t2.0\t6.0\tppp-d-26722\tPPP (D)\t2016-11-03\t2016-11-04\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t957\t3.2\tIVR/Online\tPollster\tDem\n44.0\t50.0\t\t\t6.0\tppp-d-26722\tPPP (D)\t2016-11-03\t2016-11-04\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t957\t3.2\tIVR/Online\tPollster\tDem\n42.0\t44.0\t8.0\t3.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t2748\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t9.0\t3.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t2362\t\tInternet\tNonpartisan\tNone\n43.0\t43.0\t\t\t14.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t607\t\tInternet\tNonpartisan\tNone\n42.0\t45.0\t8.0\t3.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1993\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t8.0\t4.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1739\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t8.0\t5.0\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1649\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t8.0\t5.0\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t1400\t\tInternet\tNonpartisan\tNone\n32.0\t52.0\t\t6.0\t10.0\tmichigan-state-university-26626\tMichigan State University\t2016-09-01\t2016-10-30\tWhich candidate do you most support for the presidency? Hillary Clinton or Donald Trump (random order)?  If you absolutely had to decide today, who are you most leaning toward? Hillary Clinton or Donald Trump (random order)?\tLikely Voters\t746\t3.6\tLive Phone\tNonpartisan\tNone\n28.0\t47.0\t11.0\t6.0\t8.0\tmichigan-state-university-26626\tMichigan State University\t2016-09-01\t2016-10-30\tThe Michigan presidential ballot will include Hillary Clinton for the Democrats, Donald Trump for the Republicans, Gary Johnson for the Libertarians, and Jill Stein for the Greens. Given those choices, who would you vote for?\tLikely Voters\t746\t3.6\tLive Phone\tNonpartisan\tNone\n46.0\t51.0\t\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t337\t\tInternet\tNonpartisan\tNone\n41.0\t44.0\t8.0\t4.0\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1787\t\tInternet\tNonpartisan\tNone\n37.0\t41.0\t\t\t22.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t1256\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t8.0\t5.0\t4.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1928\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t2.0\t1.0\t15.0\tepic-mra-detroit-free-press-wxyz-tv-26500\tEPIC-MRA/Detroit Free Press/WXYZ-TV \t2016-10-22\t2016-10-24\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n34.0\t41.0\t9.0\t3.0\t13.0\tepic-mra-detroit-free-press-wxyz-tv-26500\tEPIC-MRA/Detroit Free Press/WXYZ-TV \t2016-10-22\t2016-10-24\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t9.0\t4.0\t4.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1663\t\tInternet\tNonpartisan\tNone\n39.0\t43.0\t9.0\t4.0\t4.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1392\t\tInternet\tNonpartisan\tNone\n45.0\t51.0\t\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t329\t\tInternet\tNonpartisan\tNone\n41.0\t45.0\t\t\t14.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t853\t\tInternet\tNonpartisan\tNone\n36.0\t41.0\t3.0\t8.0\t12.0\tmarketing-resource-group-r-26365\tMarketing Resource Group (R)\t2016-10-16\t2016-10-19\t\tLikely Voters\t600\t4.0\tLive Phone\tPollster\tRep\n36.0\t40.0\t\t9.0\t15.0\tipsos-reuters-26657\tIpsos/Reuters\t2016-10-06\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1370\t3.0\tInternet\tNonpartisan\tNone\n36.0\t40.0\t7.0\t5.0\t12.0\tipsos-reuters-26657\tIpsos/Reuters\t2016-10-06\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1370\t3.0\tInternet\tNonpartisan\tNone\n44.0\t52.0\t\t4.0\t\tupi-cvoter-26309\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t327\t\tInternet\tNonpartisan\tNone\n42.0\t51.0\t\t\t8.0\twashpost-surveymonkey-26246\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1331\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t11.0\t5.0\t3.0\twashpost-surveymonkey-26246\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1331\t\tInternet\tNonpartisan\tNone\n37.0\t44.0\t\t\t19.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t2192\t\tInternet\tNonpartisan\tNone\n33.0\t47.0\t\t5.0\t14.0\tglengariff-detroit-news-wdiv-26197\tGlengariff/Detroit News/WDIV\t2016-10-10\t2016-10-11\tIf the election for President of the United States were held today and Hillary Clinton was the Democratic candidate and Donald Trump was the Republican candidate, who would you vote for to be President of the United States?\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n31.0\t42.0\t10.0\t6.0\t12.0\tglengariff-detroit-news-wdiv-26197\tGlengariff/Detroit News/WDIV\t2016-10-10\t2016-10-11\tIf the election for President of the United States were held today and Hillary Clinton was the Democratic candidate, Donald Trump was the Republican candidate, Gary Johnson was the Libertarian candidate, and Jill Stein was the Green Party candidate who would you vote for to be President of the United States?\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n44.0\t52.0\t\t5.0\t\tupi-cvoter-26043\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t338\t\tInternet\tNonpartisan\tNone\n38.0\t45.0\t\t\t17.0\tipsos-reuters-26115\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t687\t\tInternet\tNonpartisan\tNone\n36.0\t46.0\t2.0\t0.0\t16.0\tepic-mra-detroit-free-press-wxyz-tv-25984\tEPIC-MRA/Detroit Free Press/WXYZ-TV \t2016-10-01\t2016-10-03\t\tLikely Voters\t600\t4.4\tLive Phone\tNonpartisan\tNone\n32.0\t43.0\t10.0\t3.0\t12.0\tepic-mra-detroit-free-press-wxyz-tv-25984\tEPIC-MRA/Detroit Free Press/WXYZ-TV \t2016-10-01\t2016-10-03\t\tLikely Voters\t600\t4.4\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-25919\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t554\t\tInternet\tNonpartisan\tNone\n39.0\t39.0\t\t\t22.0\tipsos-reuters-25868\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t608\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t\t4.0\t11.0\tglengariff-detroit-news-wdiv-25813\tGlengariff/Detroit News/WDIV\t2016-09-27\t2016-09-28\tIf the election for President of the United States were held today and Hillary Clinton was the Democratic candidate and Donald Trump was the Republican candidate, who would you vote for to be President of the United States?\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n35.0\t42.0\t9.0\t4.0\t10.0\tglengariff-detroit-news-wdiv-25813\tGlengariff/Detroit News/WDIV\t2016-09-27\t2016-09-28\tIf the election for President of the United States were held today and Hillary Clinton was the Democratic candidate, Donald Trump was the Republican candidate, Gary Johnson was the Libertarian candidate, and Jill Stein was the Green Party candidate who would you vote for to be President of the United States?\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t5.0\t\tupi-cvoter-25750\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t549\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t\t\t15.0\tipsos-reuters-25709\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t957\t\tInternet\tNonpartisan\tNone\n44.0\t44.0\t\t\t12.0\tipsos-reuters-25555\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t991\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t3.0\t0.0\t17.0\tepic-mra-detroit-free-press-wxyz-tv-25508\tEPIC-MRA/Detroit Free Press/WXYZ-TV \t2016-09-10\t2016-09-13\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n35.0\t38.0\t10.0\t4.0\t13.0\tepic-mra-detroit-free-press-wxyz-tv-25508\tEPIC-MRA/Detroit Free Press/WXYZ-TV \t2016-09-10\t2016-09-13\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n44.0\t46.0\t\t\t10.0\twashpost-surveymonkey-25350\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2428\t\tInternet\tNonpartisan\tNone\n38.0\t39.0\t13.0\t5.0\t5.0\twashpost-surveymonkey-25350\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2428\t\tInternet\tNonpartisan\tNone\n37.0\t44.0\t5.0\t3.0\t11.0\tsuffolk-25261\tSuffolk\t2016-08-22\t2016-08-24\t\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n36.0\t46.0\t1.0\t0.0\t17.0\tepic-mra-detroit-free-press-wxyz-tv-25074\tEPIC-MRA/Detroit Free Press/WXYZ-TV \t2016-07-30\t2016-08-04\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n32.0\t43.0\t8.0\t3.0\t14.0\tepic-mra-detroit-free-press-wxyz-tv-25074\tEPIC-MRA/Detroit Free Press/WXYZ-TV \t2016-07-30\t2016-08-04\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n32.0\t41.0\t8.0\t4.0\t15.0\tglengariff-detroit-news-wdiv-25056\tGlengariff/Detroit News/WDIV\t2016-07-30\t2016-08-01\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n39.0\t42.0\t\t11.0\t8.0\tcbs-yougov-24911\tCBS/YouGov\t2016-07-13\t2016-07-15\t\tLikely Voters\t1201\t4.1\tInternet\tNonpartisan\tNone\n29.0\t34.0\t3.0\t4.0\t31.0\tmarketing-resource-group-r-24926\tMarketing Resource Group (R)\t2016-07-11\t2016-07-15\t\tLikely Voters\t800\t\tLive Phone\tPollster\tRep\n34.0\t40.0\t\t\t27.0\tmitchell-research-r-fox-2-detroit-mahp-24986\tMitchell Research (R)/Fox 2 Detroit/(MAHP)\t2016-07-05\t2016-07-11\t\tLikely Voters\t600\t4.0\tIVR/Live Phone\tPollster\tRep\n41.0\t48.0\t\t11.0\t\tgravis-marketing-24886\tGravis Marketing\t2016-07-07\t2016-07-08\tIf you had to vote today in a matchup between Hillary Clinton and Donald Trump, who would you vote for?\tRegistered Voters\t1562\t2.4\tAutomated Phone\tNonpartisan\tNone\n34.0\t37.0\t2.0\t27.0\t\tgravis-marketing-24886\tGravis Marketing\t2016-07-07\t2016-07-08\tIf you had to vote today in a matchup between Hillary Clinton, Donald Trump, Gary Johnson and Jill Stein, who would you vote for?\tRegistered Voters\t1562\t2.4\tAutomated Phone\tNonpartisan\tNone\n39.0\t50.0\t\t6.0\t5.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24843\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n33.0\t48.0\t12.0\t3.0\t3.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24843\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n39.0\t43.0\t\t4.0\t15.0\tglengariff-detroit-news-wdiv-24588\tGlengariff/Detroit News/WDIV\t2016-05-24\t2016-05-26\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n33.0\t37.0\t\t14.0\t17.0\tglengariff-detroit-news-wdiv-24588\tGlengariff/Detroit News/WDIV\t2016-05-24\t2016-05-26\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n38.0\t49.0\t\t\t13.0\tsurveyusa-24153\tSurveyUSA\t2016-03-23\t2016-03-24\t\tLikely Voters\t904\t3.3\tIVR/Online\tNonpartisan\tNone\n37.0\t47.0\t\t\t16.0\tepic-mra-detroit-free-press-wxyz-tv-24238\tEPIC-MRA/Detroit Free Press/WXYZ-TV \t2016-03-19\t2016-03-22\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n36.0\t52.0\t\t\t13.0\tnbc-wsj-marist-23993\tNBC/WSJ/Marist\t2016-03-01\t2016-03-03\t\tRegistered Voters\t2229\t2.1\tLive Phone\tNonpartisan\tNone\n39.0\t44.0\t\t4.0\t13.0\tmarketing-resource-group-r-23917\tMarketing Resource Group (R)\t2016-02-22\t2016-02-27\t\tLikely Voters\t600\t4.0\tLive Phone\tPollster\tRep\n38.0\t46.0\t\t\t16.0\tepic-mra-detroit-free-press-wxyz-tv-23078\tEPIC-MRA/Detroit Free Press/WXYZ-TV \t2015-10-25\t2015-10-31\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n42.0\t42.0\t\t\t\tmitchell-research-r-fox-2-detroit-22826\tMitchell Research (R)/Fox 2 Detroit\t2015-09-18\t2015-09-18\t\tLikely Voters\t1483\t2.5\tAutomated Phone\tPollster\tRep\n40.0\t43.0\t\t\t\tmarketing-resource-group-r-22759\tMarketing Resource Group (R)\t2015-09-09\t2015-09-14\t\tLikely Voters\t600\t4.0\tLive Phone\tPollster\tRep\n42.0\t44.0\t\t\t14.0\tepic-mra-detroit-free-press-wxyz-tv-22605\tEPIC-MRA/Detroit Free Press/WXYZ-TV \t2015-08-18\t2015-08-22\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n40.0\t39.0\t\t\t\tmitchell-research-r-fox-2-detroit-22603\tMitchell Research (R)/Fox 2 Detroit\t2015-08-10\t2015-08-10\t\tLikely Voters\t1310\t27.0\tAutomated Phone\tPollster\tRep\n39.0\t49.0\t\t\t12.0\tppp-d-22328\tPPP (D)\t2015-06-25\t2015-06-28\t\tLikely Voters\t1072\t3.0\tIVR/Online\tPollster\tDem"
  },
  {
    "path": "week-6/data/MN.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n39.0\t46.0\t12.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1292\t\tInternet\tNonpartisan\tNone\n46.0\t50.0\t4.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t330\t\tInternet\tNonpartisan\tNone\n37.0\t46.0\t12.0\t4.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1218\t\tInternet\tNonpartisan\tNone\n36.0\t44.0\t\t20.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t762\t\tInternet\tNonpartisan\tNone\n38.0\t46.0\t13.0\t4.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1188\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t12.0\t4.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1055\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t\t21.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t751\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t12.0\t4.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t928\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t11.0\t4.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t805\t\tInternet\tNonpartisan\tNone\n37.0\t46.0\t13.0\t4.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t773\t\tInternet\tNonpartisan\tNone\n38.0\t47.0\t13.0\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t639\t\tInternet\tNonpartisan\tNone\n47.0\t50.0\t3.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t316\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t12.0\t4.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t694\t\tInternet\tNonpartisan\tNone\n37.0\t41.0\t\t22.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t881\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t13.0\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t671\t\tInternet\tNonpartisan\tNone\n39.0\t49.0\t10.0\t3.0\tsurveyusa-kstp-tv-26558\tSurveyUSA/KSTP-TV\t2016-10-22\t2016-10-25\t\tLikely Voters\t656\t3.9\tIVR/Online\tNonpartisan\tNone\n42.0\t53.0\t\t6.0\tsurveyusa-kstp-tv-26558\tSurveyUSA/KSTP-TV\t2016-10-22\t2016-10-25\t\tLikely Voters\t656\t3.9\tIVR/Online\tNonpartisan\tNone\n36.0\t47.0\t14.0\t4.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t566\t\tInternet\tNonpartisan\tNone\n34.0\t48.0\t14.0\t4.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t452\t\tInternet\tNonpartisan\tNone\n47.0\t50.0\t3.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t321\t\tInternet\tNonpartisan\tNone\n39.0\t47.0\t8.0\t6.0\tmason-dixon-star-tribune-26415\tMason-Dixon/Star Tribune\t2016-10-20\t2016-10-22\tIf the 2016 general election for president and vice president were held today, which one of the following tickets would get your vote?\tLikely Voters\t625\t4.0\tLive Phone\tNonpartisan\tNone\n32.0\t44.0\t\t24.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t553\t\tInternet\tNonpartisan\tNone\n46.0\t51.0\t4.0\t\tupi-cvoter-26310\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t329\t\tInternet\tNonpartisan\tNone\n36.0\t43.0\t\t21.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t689\t\tInternet\tNonpartisan\tNone\n45.0\t51.0\t4.0\t\tupi-cvoter-26047\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t322\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t\t20.0\tipsos-reuters-26116\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t720\t\tInternet\tNonpartisan\tNone\n47.0\t50.0\t4.0\t\tupi-cvoter-25920\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t497\t\tInternet\tNonpartisan\tNone\n35.0\t43.0\t\t22.0\tipsos-reuters-25869\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t615\t\tInternet\tNonpartisan\tNone\n46.0\t50.0\t4.0\t\tupi-cvoter-25751\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t488\t\tInternet\tNonpartisan\tNone\n36.0\t43.0\t\t21.0\tipsos-reuters-25710\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t578\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t9.0\t6.0\tsurveyusa-kstp-tv-25658\tSurveyUSA/KSTP-TV\t2016-09-16\t2016-09-20\t\tLikely Voters\t625\t4.0\tIVR/Online\tNonpartisan\tNone\n43.0\t49.0\t\t7.0\tsurveyusa-kstp-tv-25658\tSurveyUSA/KSTP-TV\t2016-09-16\t2016-09-20\t\tLikely Voters\t625\t4.0\tIVR/Online\tNonpartisan\tNone\n34.0\t44.0\t\t22.0\tipsos-reuters-25556\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t641\t\tInternet\tNonpartisan\tNone\n38.0\t44.0\t8.0\t10.0\tmason-dixon-star-tribune-25521\tMason-Dixon/Star Tribune\t2016-09-12\t2016-09-14\tIf the 2016 general election for president and vice president were held today, which one of the following tickets would get your vote?\tRegistered Voters\t625\t4.0\tLive Phone\tNonpartisan\tNone\n40.0\t49.0\t\t10.0\twashpost-surveymonkey-25373\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2054\t\tInternet\tNonpartisan\tNone\n34.0\t41.0\t20.0\t6.0\twashpost-surveymonkey-25373\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2054\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t\t19.0\tmason-dixon-star-tribune-23574\tMason-Dixon/Star Tribune\t2016-01-18\t2016-01-20\t\tRegistered Voters\t800\t3.5\tLive Phone\tNonpartisan\tNone\n45.0\t42.0\t\t13.0\tsurveyusa-kstp-tv-23089\tSurveyUSA/KSTP-TV\t2015-10-29\t2015-11-02\t\tRegistered Voters\t516\t4.4\tIVR/Online\tNonpartisan\tNone\n39.0\t44.0\t\t17.0\tppp-d-22481\tPPP (D)\t2015-07-30\t2015-08-02\t\tLikely Voters\t1015\t3.1\tIVR/Online\tPollster\tDem"
  },
  {
    "path": "week-6/data/MO.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n48.0\t40.0\t11.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1368\t\tInternet\tNonpartisan\tNone\n49.0\t44.0\t7.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t380\t\tInternet\tNonpartisan\tNone\n48.0\t40.0\t10.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1119\t\tInternet\tNonpartisan\tNone\n48.0\t40.0\t\t12.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t836\t\tInternet\tNonpartisan\tNone\n48.0\t41.0\t9.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1059\t\tInternet\tNonpartisan\tNone\n49.0\t39.0\t11.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t879\t\tInternet\tNonpartisan\tNone\n49.0\t40.0\t\t11.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t855\t\tInternet\tNonpartisan\tNone\n48.0\t39.0\t11.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t774\t\tInternet\tNonpartisan\tNone\n52.0\t41.0\t\t7.0\tppp-d-center-for-american-progress-action-fund-26724\tPPP (D-Center for American Progress Action Fund)\t2016-10-31\t2016-11-01\tThe candidates for President this fall are Democrat Hillary Clinton, and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t1083\t3.0\tIVR/Online\tSponsor\tDem\n47.0\t38.0\t4.0\t11.0\tdfm-research-d-smart-26637\tDFM Research (D-SMART)\t2016-10-27\t2016-11-01\tIf the election was held today for President of the United States, would you vote for Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian or Jill Stein of the Green Party?\tLikely Voters\t508\t4.4\tLive Phone\tSponsor\tDem\n47.0\t39.0\t13.0\t1.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t649\t\tInternet\tNonpartisan\tNone\n52.0\t38.0\t7.0\t4.0\tmonmouth-university-26600\tMonmouth University\t2016-10-28\t2016-10-31\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t405\t4.9\tLive Phone\tNonpartisan\tNone\n46.0\t39.0\t13.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t671\t\tInternet\tNonpartisan\tNone\n46.0\t39.0\t14.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t568\t\tInternet\tNonpartisan\tNone\n53.0\t44.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t374\t\tInternet\tNonpartisan\tNone\n48.0\t37.0\t13.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t721\t\tInternet\tNonpartisan\tNone\n48.0\t42.0\t\t10.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t593\t\tInternet\tNonpartisan\tNone\n47.0\t42.0\t4.0\t7.0\tmason-dixon-post-dispatch-26518\tMason-Dixon/Post-Dispatch\t2016-10-24\t2016-10-26\tIf the 2016 general election for president were held today, which one of the following candidates would get your vote: - Hillary Clinton, the Democrat - Donald Trump, the Republican - Gary Johnson, the Libertarian - Jill Stein, the Green party candidate\tLikely Voters\t625\t4.0\tLive Phone\tNonpartisan\tNone\n49.0\t37.0\t12.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t797\t\tInternet\tNonpartisan\tNone\n50.0\t36.0\t12.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t716\t\tInternet\tNonpartisan\tNone\n50.0\t36.0\t12.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t589\t\tInternet\tNonpartisan\tNone\n52.0\t44.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t377\t\tInternet\tNonpartisan\tNone\n48.0\t37.0\t\t15.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t611\t\tInternet\tNonpartisan\tNone\n51.0\t45.0\t4.0\t\tupi-cvoter-26312\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t359\t\tInternet\tNonpartisan\tNone\n48.0\t36.0\t\t16.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t812\t\tInternet\tNonpartisan\tNone\n46.0\t41.0\t8.0\t5.0\tmonmouth-university-26146\tMonmouth University\t2016-10-09\t2016-10-11\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t406\t4.9\tLive Phone\tNonpartisan\tNone\n51.0\t45.0\t5.0\t\tupi-cvoter-26049\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t378\t\tInternet\tNonpartisan\tNone\n49.0\t37.0\t\t14.0\tipsos-reuters-26118\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t871\t\tInternet\tNonpartisan\tNone\n53.0\t44.0\t4.0\t\tupi-cvoter-25922\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t570\t\tInternet\tNonpartisan\tNone\n48.0\t36.0\t\t16.0\tipsos-reuters-25871\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t708\t\tInternet\tNonpartisan\tNone\n52.0\t44.0\t5.0\t\tupi-cvoter-25754\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t571\t\tInternet\tNonpartisan\tNone\n46.0\t37.0\t9.0\t7.0\tcbs-yougov-25646\tCBS/YouGov\t2016-09-21\t2016-09-23\t\tLikely Voters\t1087\t3.9\tInternet\tNonpartisan\tNone\n51.0\t35.0\t\t14.0\tipsos-reuters-25714\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t660\t\tInternet\tNonpartisan\tNone\n53.0\t36.0\t\t11.0\tipsos-reuters-25558\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t693\t\tInternet\tNonpartisan\tNone\n51.0\t41.0\t\t9.0\twashpost-surveymonkey-25375\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1801\t\tInternet\tNonpartisan\tNone\n43.0\t34.0\t19.0\t4.0\twashpost-surveymonkey-25375\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1801\t\tInternet\tNonpartisan\tNone\n47.0\t41.0\t\t11.0\tppp-d-nelp-25316\tPPP (D-NELP) \t2016-08-26\t2016-08-27\tThe candidates for President are Democrat Hillary Clinton and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t1055\t3.0\tIVR/Online\tSponsor\tDem\n44.0\t43.0\t9.0\t5.0\tmonmouth-university-25240\tMonmouth University\t2016-08-19\t2016-08-22\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, or Gary Johnson the Libertarian?\tLikely Voters\t401\t4.9\tLive Phone\tNonpartisan\tNone\n45.0\t42.0\t\t13.0\tppp-d-protect-missouri-families-25196\tPPP (D-Protect Missouri Families)\t2016-08-08\t2016-08-09\tThe candidates for President are Democrat Hillary Clinton and Republican Donald Trump. If the election was today, who would you vote for?\tLikely Voters\t947\t\tIVR/Online\tSponsor\tDem\n40.0\t41.0\t10.0\t9.0\tmason-dixon-24994\tMason-Dixon\t2016-07-23\t2016-07-24\tIf the 2016 general election for president were held today, which one of the following candidates would get your vote: - Hillary Clinton, the Democrat - Donald Trump, the Republican - Gary Johnson, the Libertarian - Jill Stein, the Green party candidate\tLikely Voters\t625\t4.0\tLive Phone\tNonpartisan\tNone\n47.0\t37.0\t8.0\t7.0\tsurveyusa-ksdk-24977\tSurveyUSA/KSDK\t2016-07-20\t2016-07-24\tIf the election for President of the United States were today, and you were filling out your ballot right now, who would you vote for? Republican Donald Trump? Democrat Hillary Clinton? Or Libertarian Gary Johnson?\tLikely Voters\t1943\t2.3\tMixed\tNonpartisan\tNone\n46.0\t36.0\t8.0\t10.0\tppp-d-24901\tPPP (D)\t2016-07-11\t2016-07-12\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t959\t3.2\tIVR/Online\tPollster\tDem\n50.0\t40.0\t\t10.0\tppp-d-24901\tPPP (D)\t2016-07-11\t2016-07-12\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t959\t3.2\tIVR/Online\tPollster\tDem\n40.0\t42.0\t8.0\t11.0\tdfm-research-d-united-transportation-union-24188\tDFM Research (D-United Transportation Union)\t2016-03-17\t2016-03-24\t\tLikely Voters\t674\t3.8\tLive Phone\tSponsor\tDem\n43.0\t38.0\t\t19.0\tfort-hays-state-university-24056\tFort Hays State University\t2016-03-03\t2016-03-10\t\tAdults\t475\t4.6\tLive Phone\tNonpartisan\tNone\n48.0\t39.0\t\t13.0\tppp-d-22555\tPPP (D)\t2015-08-07\t2015-08-09\t\tLikely Voters\t859\t3.3\tAutomated Phone\tPollster\tDem"
  },
  {
    "path": "week-6/data/MS.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n50.0\t42.0\t6.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t719\t\tInternet\tNonpartisan\tNone\n54.0\t42.0\t4.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t330\t\tInternet\tNonpartisan\tNone\n50.0\t41.0\t6.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t676\t\tInternet\tNonpartisan\tNone\n53.0\t36.0\t\t11.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t388\t\tInternet\tNonpartisan\tNone\n50.0\t40.0\t7.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t704\t\tInternet\tNonpartisan\tNone\n49.0\t40.0\t8.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t673\t\tInternet\tNonpartisan\tNone\n54.0\t34.0\t\t12.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t377\t\tInternet\tNonpartisan\tNone\n48.0\t40.0\t9.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t676\t\tInternet\tNonpartisan\tNone\n47.0\t41.0\t9.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t623\t\tInternet\tNonpartisan\tNone\n48.0\t41.0\t9.0\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t648\t\tInternet\tNonpartisan\tNone\n47.0\t42.0\t8.0\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t635\t\tInternet\tNonpartisan\tNone\n55.0\t42.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t313\t\tInternet\tNonpartisan\tNone\n49.0\t42.0\t6.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t819\t\tInternet\tNonpartisan\tNone\n52.0\t33.0\t\t15.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t390\t\tInternet\tNonpartisan\tNone\n50.0\t42.0\t5.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t800\t\tInternet\tNonpartisan\tNone\n50.0\t42.0\t6.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t704\t\tInternet\tNonpartisan\tNone\n51.0\t43.0\t3.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t599\t\tInternet\tNonpartisan\tNone\n54.0\t42.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t320\t\tInternet\tNonpartisan\tNone\n52.0\t37.0\t\t11.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t367\t\tInternet\tNonpartisan\tNone\n54.0\t42.0\t4.0\t\tupi-cvoter-26311\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t322\t\tInternet\tNonpartisan\tNone\n49.0\t41.0\t\t10.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t404\t\tInternet\tNonpartisan\tNone\n54.0\t42.0\t5.0\t\tupi-cvoter-26048\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t324\t\tInternet\tNonpartisan\tNone\n51.0\t40.0\t\t9.0\tipsos-reuters-26117\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t405\t\tInternet\tNonpartisan\tNone\n57.0\t40.0\t4.0\t\tupi-cvoter-25921\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t528\t\tInternet\tNonpartisan\tNone\n49.0\t38.0\t\t13.0\tipsos-reuters-25870\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t385\t\tInternet\tNonpartisan\tNone\n55.0\t41.0\t5.0\t\tupi-cvoter-25752\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t512\t\tInternet\tNonpartisan\tNone\n50.0\t38.0\t\t12.0\tipsos-reuters-25711\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t365\t\tInternet\tNonpartisan\tNone\n51.0\t37.0\t\t12.0\tipsos-reuters-25557\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t348\t\tInternet\tNonpartisan\tNone\n48.0\t46.0\t\t6.0\twashpost-surveymonkey-25374\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t823\t\tInternet\tNonpartisan\tNone\n46.0\t43.0\t6.0\t5.0\twashpost-surveymonkey-25374\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t823\t\tInternet\tNonpartisan\tNone\n46.0\t43.0\t\t11.0\tmason-dixon-24213\tMason-Dixon\t2016-03-28\t2016-03-30\t\tRegistered Voters\t625\t4.0\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/MT.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n52.0\t30.0\t15.0\t4.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t449\t\tInternet\tNonpartisan\tNone\n54.0\t41.0\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t339\t\tInternet\tNonpartisan\tNone\n53.0\t31.0\t13.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t410\t\tInternet\tNonpartisan\tNone\n53.0\t32.0\t12.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t430\t\tInternet\tNonpartisan\tNone\n53.0\t34.0\t11.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t403\t\tInternet\tNonpartisan\tNone\n51.0\t34.0\t13.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t376\t\tInternet\tNonpartisan\tNone\n50.0\t34.0\t13.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t385\t\tInternet\tNonpartisan\tNone\n49.0\t36.0\t12.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t405\t\tInternet\tNonpartisan\tNone\n48.0\t38.0\t12.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t382\t\tInternet\tNonpartisan\tNone\n55.0\t41.0\t5.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t340\t\tInternet\tNonpartisan\tNone\n51.0\t35.0\t11.0\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t490\t\tInternet\tNonpartisan\tNone\n51.0\t35.0\t11.0\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t549\t\tInternet\tNonpartisan\tNone\n52.0\t35.0\t9.0\t4.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t475\t\tInternet\tNonpartisan\tNone\n51.0\t35.0\t11.0\t4.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t410\t\tInternet\tNonpartisan\tNone\n55.0\t41.0\t5.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t339\t\tInternet\tNonpartisan\tNone\n55.0\t41.0\t5.0\t\tupi-cvoter-26313\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t329\t\tInternet\tNonpartisan\tNone\n43.0\t27.0\t9.0\t20.0\tmsu-billings-26444\tMSU-Billings\t2016-10-03\t2016-10-10\tIf you had to choose today, which of the following candidates would you support for President of the United States?\tAdults\t590\t4.0\tLive Phone\tNonpartisan\tNone\n54.0\t40.0\t6.0\t\tupi-cvoter-26051\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t496\t\tInternet\tNonpartisan\tNone\n57.0\t39.0\t4.0\t\tupi-cvoter-25923\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t647\t\tInternet\tNonpartisan\tNone\n58.0\t38.0\t5.0\t\tupi-cvoter-25756\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t493\t\tInternet\tNonpartisan\tNone\n51.0\t38.0\t\t12.0\twashpost-surveymonkey-25376\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t999\t\tInternet\tNonpartisan\tNone\n44.0\t31.0\t19.0\t7.0\twashpost-surveymonkey-25376\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t999\t\tInternet\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/NC.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n41.0\t48.0\t7.0\t\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t3126\t\tInternet\tNonpartisan\tNone\n44.0\t44.0\t3.0\t2.0\t6.0\tnyt-upshot-siena-26780\tNYT Upshot/Siena\t2016-11-04\t2016-11-06\t\tLikely Voters\t800\t3.5\tLive Phone\tNonpartisan\tNone\n45.0\t47.0\t3.0\t2.0\t4.0\tquinnipiac-26777\tQuinnipiac\t2016-11-03\t2016-11-06\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, for whom would you vote?\tLikely Voters\t870\t3.3\tLive Phone\tNonpartisan\tNone\n45.0\t48.0\t\t3.0\t4.0\tquinnipiac-26777\tQuinnipiac\t2016-11-03\t2016-11-06\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t870\t3.3\tLive Phone\tNonpartisan\tNone\n48.0\t47.0\t\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t357\t\tInternet\tNonpartisan\tNone\n41.0\t48.0\t7.0\t3.0\t\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t2865\t\tInternet\tNonpartisan\tNone\n47.0\t46.0\t\t\t7.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t650\t\tInternet\tNonpartisan\tNone\n41.0\t48.0\t7.0\t\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t2765\t\tInternet\tNonpartisan\tNone\n42.0\t48.0\t7.0\t\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t2292\t\tInternet\tNonpartisan\tNone\n48.0\t47.0\t\t\t5.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t660\t\tInternet\tNonpartisan\tNone\n48.0\t45.0\t3.0\t1.0\t2.0\tremington-research-group-r-axiom-strategies-26762\tRemington Research Group (R)/Axiom Strategies\t2016-11-01\t2016-11-02\t\tLikely Voters\t2596\t1.92\tIVR/Live Phone\tSponsor\tRep\n41.0\t49.0\t7.0\t\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1886\t\tInternet\tNonpartisan\tNone\n47.0\t49.0\t\t\t4.0\tppp-d-center-for-american-progress-action-fund-26702\tPPP (D-Center for American Progress Action Fund)\t2016-10-31\t2016-11-01\tThe candidates for President this fall are Democrat Hillary Clinton, and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t1169\t2.9\tIVR/Online\tSponsor\tDem\n44.0\t47.0\t3.0\t1.0\t5.0\tquinnipiac-26632\tQuinnipiac\t2016-10-27\t2016-11-01\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, for whom would you vote?\tLikely Voters\t602\t4.0\tLive Phone\tNonpartisan\tNone\n46.0\t48.0\t\t2.0\t4.0\tquinnipiac-26632\tQuinnipiac\t2016-10-27\t2016-11-01\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t602\t4.0\tLive Phone\tNonpartisan\tNone\n42.0\t49.0\t7.0\t\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1617\t\tInternet\tNonpartisan\tNone\n51.0\t44.0\t3.0\t\t3.0\tsurveyusa-wral-26607\tSurveyUSA/WRAL\t2016-10-28\t2016-10-31\t\tLikely Voters\t659\t3.9\tIVR/Online\tNonpartisan\tNone\n44.0\t47.0\t7.0\t\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1574\t\tInternet\tNonpartisan\tNone\n47.0\t45.0\t2.0\t1.0\t4.0\tremington-research-group-r-axiom-strategies-26565\tRemington Research Group (R)/Axiom Strategies\t2016-10-30\t2016-10-30\t\tLikely Voters\t1176\t2.85\tIVR/Live Phone\tSponsor\tRep\n43.0\t47.0\t8.0\t\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t1383\t\tInternet\tNonpartisan\tNone\n48.0\t48.0\t\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t351\t\tInternet\tNonpartisan\tNone\n45.0\t48.0\t3.0\t2.0\t2.0\tcbs-yougov-26548\tCBS/YouGov\t2016-10-26\t2016-10-28\t\tLikely Voters\t992\t4.1\tInternet\tNonpartisan\tNone\n43.0\t48.0\t7.0\t\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1797\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t3.0\t2.0\t12.0\telon-26597\tElon\t2016-10-23\t2016-10-27\tWho are you planning to vote for in the presidential race: Hillary Clinton, the Democrat, Gary Johnson, the Libertarian, or Donald Trump, the Republican?\tLikely Voters\t710\t3.7\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t\t8.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t1285\t\tInternet\tNonpartisan\tNone\n44.0\t50.0\t\t5.0\t2.0\tnbc-wsj-marist-26545\tNBC/WSJ/Marist\t2016-10-25\t2016-10-26\t\tLikely Voters\t780\t3.5\tLive Phone\tNonpartisan\tNone\n41.0\t47.0\t8.0\t2.0\t2.0\tnbc-wsj-marist-26545\tNBC/WSJ/Marist\t2016-10-25\t2016-10-26\t\tLikely Voters\t780\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t47.0\t5.0\t1.0\t4.0\tquinnipiac-26508\tQuinnipiac\t2016-10-20\t2016-10-26\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, for whom would you vote?\tLikely Voters\t702\t3.7\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t1.0\t4.0\tquinnipiac-26508\tQuinnipiac\t2016-10-20\t2016-10-26\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t702\t3.7\tLive Phone\tNonpartisan\tNone\n43.0\t48.0\t7.0\t\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t2001\t\tInternet\tNonpartisan\tNone\n43.0\t47.0\t7.0\t\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1825\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t8.0\t1.0\t6.0\tnyt-upshot-siena-26410\tNYT Upshot/Siena\t2016-10-20\t2016-10-23\t\tLikely Voters\t792\t3.5\tLive Phone\tNonpartisan\tNone\n41.0\t49.0\t\t5.0\t5.0\tnyt-upshot-siena-26410\tNYT Upshot/Siena\t2016-10-20\t2016-10-23\t\tLikely Voters\t792\t3.5\tLive Phone\tNonpartisan\tNone\n46.0\t47.0\t4.0\t1.0\t2.0\tmonmouth-university-26395\tMonmouth University\t2016-10-20\t2016-10-23\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, or Gary Johnson the Libertarian?\tLikely Voters\t402\t4.9\tLive Phone\tNonpartisan\tNone\n42.0\t48.0\t7.0\t\t6.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1546\t\tInternet\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t356\t\tInternet\tNonpartisan\tNone\n44.0\t47.0\t4.0\t\t5.0\tppp-d-26393\tPPP (D)\t2016-10-21\t2016-10-22\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, and Libertarian Gary Johnson. If the election was today, who would you vote for?\tLikely Voters\t875\t3.3\tIVR/Online\tPollster\tDem\n46.0\t49.0\t\t\t5.0\tppp-d-26393\tPPP (D)\t2016-10-21\t2016-10-22\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t875\t3.3\tIVR/Online\tPollster\tDem\n47.0\t44.0\t3.0\t1.0\t5.0\tremington-research-group-r-axiom-strategies-26421\tRemington Research Group (R)/Axiom Strategies\t2016-10-20\t2016-10-22\t\tLikely Voters\t1764\t2.33\tIVR/Live Phone\tSponsor\tRep\n43.0\t47.0\t\t\t10.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t755\t\tInternet\tNonpartisan\tNone\n43.0\t45.0\t\t5.0\t7.0\tipsos-reuters-26698\tIpsos/Reuters\t2016-10-06\t2016-10-19\t\tLikely Voters\t1233\t3.2\tInternet\tNonpartisan\tNone\n43.0\t45.0\t5.0\t3.0\t5.0\tipsos-reuters-26698\tIpsos/Reuters\t2016-10-06\t2016-10-19\t\tLikely Voters\t1233\t3.2\tInternet\tNonpartisan\tNone\n41.0\t42.0\t8.0\t2.0\t7.0\tlucid-the-times-picayune-26405\tLucid/The Times-Picayune\t2016-10-17\t2016-10-18\t\tLikely Voters\t924\t\tInternet\tNonpartisan\tNone\n43.0\t45.0\t5.0\t1.0\t6.0\tcivitas-r-26283\tCivitas (R)\t2016-10-14\t2016-10-17\t\tLikely Voters\t600\t4.0\tLive Phone\tPollster\tRep\n44.0\t46.0\t6.0\t\t4.0\tsurveyusa-twc-news-north-carolina-26268\tSurveyUSA/TWC News North Carolina\t2016-10-14\t2016-10-17\t\tLikely Voters\t651\t3.9\tIVR/Online\tNonpartisan\tNone\n46.0\t48.0\t\t\t6.0\tsurveyusa-twc-news-north-carolina-26268\tSurveyUSA/TWC News North Carolina\t2016-10-14\t2016-10-17\t\tLikely Voters\t651\t3.9\tIVR/Online\tNonpartisan\tNone\n48.0\t48.0\t\t4.0\t\tupi-cvoter-26321\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t350\t\tInternet\tNonpartisan\tNone\n43.0\t51.0\t\t\t7.0\twashpost-surveymonkey-26244\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1191\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t9.0\t3.0\t3.0\twashpost-surveymonkey-26244\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1191\t\tInternet\tNonpartisan\tNone\n47.0\t48.0\t4.0\t1.0\t0.0\tcnn-26202\tCNN\t2016-10-10\t2016-10-15\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, and Gary Johnson and Bill Weld as the Libertarian Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t788\t3.5\tLive Phone\tNonpartisan\tNone\n48.0\t50.0\t\t2.0\t0.0\tcnn-26202\tCNN\t2016-10-10\t2016-10-15\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump as the Republican Party’s candidate, who would you be more likely to vote for?\tLikely Voters\t788\t3.5\tLive Phone\tNonpartisan\tNone\n42.0\t46.0\t\t\t12.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t2059\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t\t6.0\t3.0\tnbc-wsj-marist-26167\tNBC/WSJ/Marist\t2016-10-10\t2016-10-12\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t743\t3.6\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t9.0\t2.0\t3.0\tnbc-wsj-marist-26167\tNBC/WSJ/Marist\t2016-10-10\t2016-10-12\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t743\t3.6\tLive Phone\tNonpartisan\tNone\n43.0\t45.0\t5.0\t\t7.0\tsuffolk-26158\tSuffolk\t2016-10-10\t2016-10-12\t\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-26058\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t514\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t8.0\t\t6.0\thigh-point-university-26020\tHigh Point University\t2016-10-01\t2016-10-06\tIf the election for President of the United States were held today would you be voting for Republican Donald Trump, Democrat Hillary Clinton, or Libertarian Gary Johnson?\tLikely Voters\t479\t4.5\tLive Phone\tNonpartisan\tNone\n43.0\t44.0\t\t\t13.0\tipsos-reuters-26125\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t600\t\tInternet\tNonpartisan\tNone\n44.0\t46.0\t5.0\t\t6.0\tsurveyusa-wral-news-25957\tSurveyUSA/WRAL News\t2016-09-29\t2016-10-03\t\tLikely Voters\t656\t3.9\tIVR/Online\tNonpartisan\tNone\n45.0\t46.0\t\t4.0\t5.0\tbloomberg-selzer-25849\tBloomberg/Selzer\t2016-09-29\t2016-10-02\t\tLikely Voters\t805\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t44.0\t6.0\t2.0\t5.0\tbloomberg-selzer-25849\tBloomberg/Selzer\t2016-09-29\t2016-10-02\t\tLikely Voters\t805\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t46.0\t7.0\t1.0\t3.0\tquinnipiac-25844\tQuinnipiac\t2016-09-27\t2016-10-02\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, and Gary Johnson and Bill Weld the Libertarians, for whom would you vote?\tLikely Voters\t507\t4.4\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t0.0\t4.0\tquinnipiac-25844\tQuinnipiac\t2016-09-27\t2016-10-02\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t507\t4.4\tLive Phone\tNonpartisan\tNone\n50.0\t46.0\t\t5.0\t\tupi-cvoter-25930\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t773\t\tInternet\tNonpartisan\tNone\n39.0\t45.0\t9.0\t1.0\t6.0\telon-25950\tElon\t2016-09-27\t2016-09-30\tIf the presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, who would you vote for?\tLikely Voters\t660\t3.81\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t\t8.0\tipsos-reuters-25878\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t1014\t\tInternet\tNonpartisan\tNone\n42.0\t44.0\t7.0\t\t7.0\tppp-d-vote-vets-action-fund-25797\tPPP (D-Vote Vets Action Fund)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, and Libertarian Gary Johnson. If the election was today, who would you vote for?\tLikely Voters\t861\t3.3\tIVR/Online\tPollster\tDem\n45.0\t49.0\t\t\t7.0\tppp-d-vote-vets-action-fund-25797\tPPP (D-Vote Vets Action Fund)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t861\t3.3\tIVR/Online\tPollster\tDem\n49.0\t46.0\t\t5.0\t\tupi-cvoter-25765\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t610\t\tInternet\tNonpartisan\tNone\n35.0\t38.0\t6.0\t10.0\t11.0\tthe-meredith-college-poll-25726\tThe Meredith College Poll\t2016-09-18\t2016-09-22\t\tRegistered Voters\t487\t4.43\tLive Phone\tNonpartisan\tNone\n42.0\t43.0\t10.0\t\t6.0\thigh-point-university-25656\tHigh Point University\t2016-09-17\t2016-09-22\tIf the election for President of the United States were held today would you be voting for Republican Donald Trump, Democrat Hillary Clinton, or Libertarian Gary Johnson?\tLikely Voters\t404\t4.9\tLive Phone\tNonpartisan\tNone\n43.0\t49.0\t\t\t8.0\tipsos-reuters-25712\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t520\t\tInternet\tNonpartisan\tNone\n45.0\t40.0\t6.0\t1.0\t8.0\tfox-news-25608\tFox News\t2016-09-18\t2016-09-20\t\tLikely Voters\t734\t3.5\tLive Phone\tNonpartisan\tNone\n47.0\t42.0\t\t1.0\t10.0\tfox-news-25608\tFox News\t2016-09-18\t2016-09-20\t\tLikely Voters\t734\t3.5\tLive Phone\tNonpartisan\tNone\n45.0\t43.0\t6.0\t\t7.0\tppp-d-25591\tPPP (D)\t2016-09-18\t2016-09-20\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, and Libertarian Gary Johnson If the election were today, who would you vote for?\tLikely Voters\t1024\t3.1\tIVR/Online\tPollster\tDem\n47.0\t47.0\t\t\t6.0\tppp-d-25591\tPPP (D)\t2016-09-18\t2016-09-20\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t1024\t3.1\tIVR/Online\tPollster\tDem\n43.0\t45.0\t\t2.0\t11.0\tnyt-upshot-siena-25611\tNYT Upshot/Siena\t2016-09-16\t2016-09-19\t\tLikely Voters\t782\t3.6\tLive Phone\tNonpartisan\tNone\n41.0\t41.0\t11.0\t3.0\t5.0\tnyt-upshot-siena-25611\tNYT Upshot/Siena\t2016-09-16\t2016-09-19\tAnd, if the 2016 election for President was being held today among the following candidates, who would you vote for: [CHOICES ROTATED]\tLikely Voters\t782\t3.6\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t9.0\t3.0\t3.0\tgqr-d-democracy-corps-wvwv-25637\tGQR (D-Democracy Corps/WVWV)\t2016-09-10\t2016-09-19\tI know it's a long way off, but thinking about the election for President in November, if the election for President were held today, would you vote for -- Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson or Green Party Candidate Jill Stein?\tLikely Voters\t400\t4.9\tLive Phone\tSponsor\tDem\n44.0\t43.0\t6.0\t1.0\t6.0\telon-25579\tElon\t2016-09-12\t2016-09-16\tIf the presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, who would you vote for?\tLikely Voters\t644\t3.86\tLive Phone\tNonpartisan\tNone\n44.0\t46.0\t\t\t10.0\tipsos-reuters-25563\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t917\t\tInternet\tNonpartisan\tNone\n42.0\t42.0\t5.0\t\t9.0\tcivitas-r-25497\tCivitas (R)\t2016-09-11\t2016-09-12\tIf the election for President were being held today and you had to make a choice, for whom would you vote?\tLikely Voters\t600\t4.0\tLive Phone\tPollster\tRep\n44.0\t41.0\t4.0\t\t11.0\tsuffolk-25424\tSuffolk\t2016-09-05\t2016-09-07\t\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n43.0\t47.0\t\t2.0\t8.0\tquinnipiac-25430\tQuinnipiac\t2016-08-29\t2016-09-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t751\t3.6\tLive Phone\tNonpartisan\tNone\n38.0\t42.0\t15.0\t0.0\t5.0\tquinnipiac-25430\tQuinnipiac\t2016-08-29\t2016-09-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, and Gary Johnson the Libertarian for whom would you vote?\tLikely Voters\t751\t3.6\tLive Phone\tNonpartisan\tNone\n42.0\t46.0\t4.0\t3.0\t4.0\tcbs-yougov-25338\tCBS/YouGov\t2016-08-30\t2016-09-02\t\tLikely Voters\t1088\t4.0\tInternet\tNonpartisan\tNone\n46.0\t46.0\t\t\t8.0\twashpost-surveymonkey-25383\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2552\t\tInternet\tNonpartisan\tNone\n41.0\t40.0\t10.0\t4.0\t5.0\twashpost-surveymonkey-25383\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2552\t\tInternet\tNonpartisan\tNone\n44.0\t45.0\t\t\t12.0\tppp-d-nelp-25318\tPPP (D-NELP) \t2016-08-26\t2016-08-27\tThe candidates for President are Democrat Hillary Clinton and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t1177\t2.9\tIVR/Online\tSponsor\tDem\n42.0\t44.0\t7.0\t1.0\t6.0\tmonmouth-university-25250\tMonmouth University\t2016-08-20\t2016-08-23\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, or Gary Johnson the Libertarian? If you had to vote for one of the following candidates at this moment, who do you lean toward – Donald Trump or Hillary Clinton?\tLikely Voters\t401\t4.0\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t4.0\t1.0\tcnn-25253\tCNN\t2016-08-18\t2016-08-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t803\t3.5\tLive Phone\tNonpartisan\tNone\n45.0\t45.0\t9.0\t2.0\t0.0\tcnn-25253\tCNN\t2016-08-18\t2016-08-23\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, and Gary Johnson as the Libertarian Party candidate, who would you be more likely to vote for?\tLikely Voters\t803\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t44.0\t\t\t13.0\tgravis-marketing-25221\tGravis Marketing\t2016-08-15\t2016-08-17\tIf you had to vote today in a matchup between Hillary Clinton and Donald Trump, who would you vote for?\tRegistered Voters\t723\t3.6\tIVR/Online\tNonpartisan\tNone\n39.0\t38.0\t10.0\t2.0\t10.0\tgravis-marketing-25221\tGravis Marketing\t2016-08-15\t2016-08-17\tIf you had to vote today in a matchup between Hillary Clinton, Donald Trump, Gary Johnson and Jill Stein, who would you vote for?\tRegistered Voters\t723\t3.6\tIVR/Online\tNonpartisan\tNone\n39.0\t48.0\t\t7.0\t7.0\tnbc-wsj-marist-25149\tNBC/WSJ/Marist\t2016-08-04\t2016-08-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t921\t3.2\tLive Phone\tNonpartisan\tNone\n36.0\t45.0\t9.0\t3.0\t7.0\tnbc-wsj-marist-25149\tNBC/WSJ/Marist\t2016-08-04\t2016-08-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t921\t3.2\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t7.0\t2.0\t8.0\tppp-d-25097\tPPP (D)\t2016-08-05\t2016-08-07\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t830\t3.4\tIVR/Online\tPollster\tDem\n46.0\t47.0\t\t\t7.0\tppp-d-25097\tPPP (D)\t2016-08-05\t2016-08-07\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t830\t3.4\tIVR/Online\tPollster\tDem\n46.0\t42.0\t6.0\t\t7.0\tsurveyusa-civitas-r-25053\tSurveyUSA/Civitas (R)\t2016-07-31\t2016-08-02\tIf the election for President of the United States were today, and you were filling out your ballot right now, who would you vote for? Republican Donald Trump? Democrat Hillary Clinton? Or Libertarian Gary Johnson?\tLikely Voters\t400\t5.0\tIVR/Online\tSponsor\tRep\n51.0\t41.0\t\t\t8.0\tsurveyusa-civitas-r-25053\tSurveyUSA/Civitas (R)\t2016-07-31\t2016-08-02\tRegardless of how you intend to vote, who do you think would be better at creating jobs? Donald Trump? or Hillary Clinton?\tLikely Voters\t400\t5.0\tIVR/Online\tSponsor\tRep\n38.0\t44.0\t\t12.0\t6.0\tnbc-wsj-marist-24893\tNBC/WSJ/Marist\t2016-07-05\t2016-07-11\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t907\t3.3\tLive Phone\tNonpartisan\tNone\n36.0\t42.0\t7.0\t4.0\t11.0\tnbc-wsj-marist-24893\tNBC/WSJ/Marist\t2016-07-05\t2016-07-11\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t907\t3.3\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t\t6.0\t7.0\tcbs-yougov-24769\tCBS/YouGov\t2016-06-21\t2016-06-24\t\tLikely Voters\t988\t4.4\tInternet\tNonpartisan\tNone\n43.0\t43.0\t\t6.0\t7.0\tppp-d-24758\tPPP (D)\t2016-06-20\t2016-06-21\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t947\t3.2\tIVR/Online\tPollster\tDem\n48.0\t46.0\t\t\t5.0\tppp-d-24758\tPPP (D)\t2016-06-20\t2016-06-21\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t947\t3.2\tIVR/Online\tPollster\tDem\n41.0\t51.0\t\t5.0\t3.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24844\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n38.0\t48.0\t8.0\t5.0\t4.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24844\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n39.0\t36.0\t\t10.0\t11.0\tcivitas-r-24565\tCivitas (R)\t2016-05-21\t2016-05-23\t\tLikely Voters\t600\t4.0\tLive Phone\tPollster\tRep\n43.0\t41.0\t\t5.0\t11.0\tppp-d-24552\tPPP (D)\t2016-05-20\t2016-05-22\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, who would you vote for?\tLikely Voters\t928\t3.2\tIVR/Online\tPollster\tDem\n47.0\t43.0\t\t\t9.0\tppp-d-24552\tPPP (D)\t2016-05-20\t2016-05-22\tIf the candidates for President this fall were just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t928\t3.2\tIVR/Online\tPollster\tDem\n37.0\t49.0\t\t2.0\t12.0\tcivitas-r-24421\tCivitas (R)\t2016-04-23\t2016-04-25\t\tLikely Voters\t600\t4.0\tLive Phone\tPollster\tRep\n44.0\t44.0\t\t\t12.0\tppp-d-24386\tPPP (D)\t2016-04-22\t2016-04-24\t\tLikely Voters\t960\t3.2\tIVR/Online\tPollster\tDem\n39.0\t45.0\t\t14.0\t3.0\telon-24309\tElon\t2016-04-10\t2016-04-15\t\tRegistered Voters\t621\t3.93\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t\t\t14.0\tppp-d-24132\tPPP (D)\t2016-03-18\t2016-03-20\t\tLikely Voters\t843\t3.4\tIVR/Online\tPollster\tDem\n49.0\t42.0\t\t\t9.0\tsurveyusa-high-point-university-24055\tSurveyUSA/High Point University\t2016-03-09\t2016-03-10\t\tLikely Voters\t1576\t2.5\tIVR/Online\tNonpartisan\tNone\n41.0\t47.0\t\t9.0\t4.0\telon-23831\tElon\t2016-02-15\t2016-02-19\t\tLikely Voters\t1530\t2.51\tLive Phone\tNonpartisan\tNone\n44.0\t43.0\t\t\t13.0\tppp-d-23843\tPPP (D)\t2016-02-14\t2016-02-16\t\tLikely Voters\t1291\t2.7\tIVR/Online\tPollster\tDem\n45.0\t43.0\t\t\t13.0\tsurveyusa-twc-news-north-carolina-23837\tSurveyUSA/TWC News North Carolina\t2016-02-14\t2016-02-16\t\tLikely Voters\t1250\t2.8\tIVR/Online\tNonpartisan\tNone\n45.0\t43.0\t\t\t12.0\tppp-d-23535\tPPP (D)\t2016-01-18\t2016-01-19\t\tLikely Voters\t948\t2.8\tIVR/Online\tPollster\tDem\n47.0\t43.0\t\t\t10.0\tppp-d-23277\tPPP (D)\t2015-12-05\t2015-12-07\t\tLikely Voters\t1214\t2.8\tIVR/Online\tPollster\tDem\n40.0\t50.0\t\t8.0\t3.0\telon-23075\tElon\t2015-10-29\t2015-11-02\t\tLikely Voters\t1040\t3.0\tLive Phone\tNonpartisan\tNone\n48.0\t42.0\t\t\t10.0\tppp-d-23002\tPPP (D)\t2015-10-23\t2015-10-25\t\tLikely Voters\t893\t3.3\tIVR/Online\tPollster\tDem\n43.0\t47.0\t\t\t11.0\tcivitas-r-22883\tCivitas (R)\t2015-09-28\t2015-09-30\t\tRegistered Voters\t600\t4.0\tLive Phone\tPollster\tRep\n47.0\t42.0\t\t\t12.0\tppp-d-22812\tPPP (D)\t2015-09-24\t2015-09-27\t\tLikely Voters\t1268\t2.8\tIVR/Online\tPollster\tDem\n40.0\t47.0\t\t10.0\t3.0\telon-22796\tElon\t2015-09-17\t2015-09-21\t\tRegistered Voters\t1075\t3.0\tLive Phone\tNonpartisan\tNone\n45.0\t42.0\t\t\t14.0\tppp-d-22577\tPPP (D)\t2015-08-12\t2015-08-16\t\tLikely Voters\t957\t3.2\tIVR/Online\tPollster\tDem\n44.0\t47.0\t\t\t9.0\tppp-d-22353\tPPP (D)\t2015-07-02\t2015-07-06\t\tLikely Voters\t529\t4.3\tIVR/Online\tPollster\tDem"
  },
  {
    "path": "week-6/data/ND.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n57.0\t29.0\t11.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t313\t\tInternet\tNonpartisan\tNone\n55.0\t39.0\t7.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t307\t\tInternet\tNonpartisan\tNone\n57.0\t29.0\t13.0\t1.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t288\t\tInternet\tNonpartisan\tNone\n57.0\t29.0\t13.0\t1.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t287\t\tInternet\tNonpartisan\tNone\n56.0\t29.0\t13.0\t1.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t276\t\tInternet\tNonpartisan\tNone\n55.0\t31.0\t12.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t260\t\tInternet\tNonpartisan\tNone\n54.0\t32.0\t12.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t254\t\tInternet\tNonpartisan\tNone\n53.0\t31.0\t13.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t279\t\tInternet\tNonpartisan\tNone\n55.0\t32.0\t11.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t260\t\tInternet\tNonpartisan\tNone\n57.0\t37.0\t7.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t306\t\tInternet\tNonpartisan\tNone\n54.0\t31.0\t11.0\t4.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t333\t\tInternet\tNonpartisan\tNone\n52.0\t31.0\t13.0\t4.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t372\t\tInternet\tNonpartisan\tNone\n49.0\t31.0\t15.0\t5.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t339\t\tInternet\tNonpartisan\tNone\n50.0\t30.0\t15.0\t5.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t294\t\tInternet\tNonpartisan\tNone\n56.0\t37.0\t7.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t309\t\tInternet\tNonpartisan\tNone\n56.0\t37.0\t8.0\t\tupi-cvoter-26322\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t314\t\tInternet\tNonpartisan\tNone\n55.0\t37.0\t8.0\t\tupi-cvoter-26059\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t314\t\tInternet\tNonpartisan\tNone\n57.0\t36.0\t8.0\t\tupi-cvoter-25931\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t480\t\tInternet\tNonpartisan\tNone\n57.0\t36.0\t8.0\t\tupi-cvoter-25766\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t487\t\tInternet\tNonpartisan\tNone\n43.0\t32.0\t9.0\t16.0\tdfm-research-d-25590\tDFM Research (D)\t2016-09-12\t2016-09-17\tNow let’s look ahead to the November election. If the election was held today for President of the United States, would you vote for Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t400\t4.9\tLive Phone\tPollster\tDem\n60.0\t32.0\t\t8.0\twashpost-surveymonkey-25384\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t549\t\tInternet\tNonpartisan\tNone\n51.0\t26.0\t18.0\t5.0\twashpost-surveymonkey-25384\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t549\t\tInternet\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/NE.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n52.0\t35.0\t10.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t988\t\tInternet\tNonpartisan\tNone\n56.0\t38.0\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t340\t\tInternet\tNonpartisan\tNone\n52.0\t34.0\t10.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t873\t\tInternet\tNonpartisan\tNone\n53.0\t32.0\t\t15.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t350\t\tInternet\tNonpartisan\tNone\n52.0\t34.0\t10.0\t4.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t840\t\tInternet\tNonpartisan\tNone\n51.0\t35.0\t10.0\t4.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t707\t\tInternet\tNonpartisan\tNone\n53.0\t31.0\t\t16.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t338\t\tInternet\tNonpartisan\tNone\n50.0\t34.0\t12.0\t4.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t599\t\tInternet\tNonpartisan\tNone\n52.0\t33.0\t13.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t440\t\tInternet\tNonpartisan\tNone\n52.0\t32.0\t13.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t412\t\tInternet\tNonpartisan\tNone\n51.0\t33.0\t14.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t328\t\tInternet\tNonpartisan\tNone\n58.0\t38.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t334\t\tInternet\tNonpartisan\tNone\n53.0\t32.0\t13.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t440\t\tInternet\tNonpartisan\tNone\n50.0\t35.0\t\t15.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t332\t\tInternet\tNonpartisan\tNone\n51.0\t32.0\t15.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t513\t\tInternet\tNonpartisan\tNone\n52.0\t33.0\t14.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t461\t\tInternet\tNonpartisan\tNone\n51.0\t33.0\t14.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t394\t\tInternet\tNonpartisan\tNone\n58.0\t38.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t337\t\tInternet\tNonpartisan\tNone\n47.0\t35.0\t\t18.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t326\t\tInternet\tNonpartisan\tNone\n57.0\t39.0\t4.0\t\tupi-cvoter-26314\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t333\t\tInternet\tNonpartisan\tNone\n49.0\t33.0\t\t18.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t386\t\tInternet\tNonpartisan\tNone\n57.0\t39.0\t5.0\t\tupi-cvoter-26052\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t351\t\tInternet\tNonpartisan\tNone\n48.0\t32.0\t\t20.0\tipsos-reuters-26119\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t356\t\tInternet\tNonpartisan\tNone\n59.0\t37.0\t4.0\t\tupi-cvoter-25924\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t541\t\tInternet\tNonpartisan\tNone\n51.0\t33.0\t\t16.0\tipsos-reuters-25872\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t324\t\tInternet\tNonpartisan\tNone\n59.0\t37.0\t5.0\t\tupi-cvoter-25757\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t529\t\tInternet\tNonpartisan\tNone\n54.0\t31.0\t\t15.0\tipsos-reuters-25716\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t277\t\tInternet\tNonpartisan\tNone\n51.0\t32.0\t\t17.0\tipsos-reuters-25559\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t267\t\tInternet\tNonpartisan\tNone\n49.0\t38.0\t\t13.0\twashpost-surveymonkey-25377\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t983\t\tInternet\tNonpartisan\tNone\n42.0\t32.0\t20.0\t6.0\twashpost-surveymonkey-25377\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t983\t\tInternet\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/NH.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n38.0\t47.0\t10.0\t2.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t696\t\tInternet\tNonpartisan\tNone\n38.0\t49.0\t6.0\t3.0\t4.0\tunh-wmur-26768\tUNH/WMUR\t2016-11-03\t2016-11-06\t\tLikely Voters\t692\t\tLive Phone\tNonpartisan\tNone\n43.0\t49.0\t\t8.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t310\t\tInternet\tNonpartisan\tNone\n38.0\t49.0\t8.0\t3.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t672\t\tInternet\tNonpartisan\tNone\n42.0\t44.0\t\t\t14.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t316\t\tInternet\tNonpartisan\tNone\n38.0\t48.0\t9.0\t2.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t662\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t11.0\t3.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t672\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t\t\t14.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t306\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t7.0\t5.0\t3.0\tgravis-marketing-breitbart-26708\tGravis Marketing/Breitbart\t2016-11-01\t2016-11-02\tIf the election was held today, who would be your choice for president?\tRegistered Voters\t1001\t2.0\tIVR/Online\tNonpartisan\tNone\n42.0\t42.0\t5.0\t2.0\t9.0\tsuffolk-boston-globe-26676\tSuffolk/Boston Globe\t2016-10-31\t2016-11-02\tThe New Hampshire presidential ballot includes five candidates as follows: Rocky De La Fuente-American Delta Party, Gary Johnson-Libertarian, Jill Stein-Green Party, Donald TrumpRepublican, Hillary Clinton-Democrat. At this point which candidate will you vote for or lean toward?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n48.0\t43.0\t4.0\t1.0\t4.0\targ-26663\tARG\t2016-10-31\t2016-11-02\tIf the election for US President were being held today between Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johnson, the Libertarian, and Jill Stein, of the Green Party, for whom would you vote - Clinton, Trump, Johnson, or Stein?\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t5.0\t3.0\t4.0\tumass-lowell-7-news-26688\tUMass Lowell/7 News\t2016-10-28\t2016-11-02\t\tLikely Voters\t695\t4.28\tLive Phone\tNonpartisan\tNone\n45.0\t44.0\t\t2.0\t10.0\tumass-lowell-7-news-26688\tUMass Lowell/7 News\t2016-10-28\t2016-11-02\t\tLikely Voters\t695\t4.28\tLive Phone\tNonpartisan\tNone\n37.0\t47.0\t11.0\t2.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t658\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t\t\t9.0\tppp-d-center-for-american-progress-action-fund-26704\tPPP (D-Center for American Progress Action Fund)\t2016-10-31\t2016-11-01\tThe candidates for President this fall are Democrat Hillary Clinton, and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t781\t3.5\tIVR/Online\tSponsor\tDem\n40.0\t39.0\t10.0\t3.0\t7.0\tmassinc-wbur-26646\tMassINC/WBUR\t2016-10-29\t2016-11-01\t\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n44.0\t42.0\t\t7.0\t7.0\tmassinc-wbur-26646\tMassINC/WBUR\t2016-10-29\t2016-11-01\t\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n35.0\t49.0\t10.0\t2.0\t4.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t635\t\tInternet\tNonpartisan\tNone\n35.0\t48.0\t10.0\t3.0\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t659\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t6.0\t4.0\t5.0\tunh-wmur-26586\tUNH/WMUR\t2016-10-26\t2016-10-30\t\tLikely Voters\t618\t\tLive Phone\tNonpartisan\tNone\n36.0\t46.0\t12.0\t3.0\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t635\t\tInternet\tNonpartisan\tNone\n47.0\t50.0\t\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t307\t\tInternet\tNonpartisan\tNone\n36.0\t48.0\t11.0\t3.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t825\t\tInternet\tNonpartisan\tNone\n40.0\t44.0\t\t\t16.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t264\t\tInternet\tNonpartisan\tNone\n35.0\t49.0\t11.0\t3.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t861\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t7.0\t2.0\t4.0\tmonmouth-university-26447\tMonmouth University\t2016-10-22\t2016-10-25\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t401\t4.9\tLive Phone\tNonpartisan\tNone\n39.0\t47.0\t\t12.0\t2.0\tnbc-wsj-marist-26485\tNBC/WSJ/Marist\t2016-10-20\t2016-10-24\tIf November's presidential election were held today, whom would you support if the candidates are [including those who are undecided yet leaning toward a candidate or already voted]:\tLikely Voters\t768\t3.5\tLive Phone\tNonpartisan\tNone\n36.0\t45.0\t10.0\t6.0\t3.0\tnbc-wsj-marist-26485\tNBC/WSJ/Marist\t2016-10-20\t2016-10-24\tIf November's presidential election were held today, whom would you support if the candidates are [including those who are undecided yet leaning toward a candidate or already voted]:\tLikely Voters\t768\t3.5\tLive Phone\tNonpartisan\tNone\n37.0\t49.0\t10.0\t2.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t779\t\tInternet\tNonpartisan\tNone\n37.0\t49.0\t10.0\t2.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t683\t\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t310\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t8.0\t8.0\t4.0\tumass-amherst-wbz-tv-yougov-26495\tUMass Amherst/WBZ-TV/YouGov\t2016-10-17\t2016-10-21\tIf the presidential election were being held today, which candidate would you vote for?\tLikely Voters\t772\t4.5\tInternet\tNonpartisan\tNone\n39.0\t45.0\t\t\t16.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t262\t\tInternet\tNonpartisan\tNone\n34.0\t49.0\t8.0\t7.0\t3.0\tunh-wmur-26281\tUNH/WMUR\t2016-10-11\t2016-10-17\t\tLikely Voters\t755\t\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26316\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t308\t\tInternet\tNonpartisan\tNone\n43.0\t50.0\t\t\t8.0\twashpost-surveymonkey-26249\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t569\t\tInternet\tNonpartisan\tNone\n36.0\t47.0\t10.0\t4.0\t2.0\twashpost-surveymonkey-26249\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t569\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t\t12.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t282\t\tInternet\tNonpartisan\tNone\n38.0\t41.0\t11.0\t3.0\t7.0\tmassinc-wbur-26171\tMassINC/WBUR\t2016-10-10\t2016-10-12\t\tLikely Voters\t501\t4.4\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t\t6.0\t6.0\tmassinc-wbur-26171\tMassINC/WBUR\t2016-10-10\t2016-10-12\t\tLikely Voters\t501\t4.4\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t9.0\t4.0\t4.0\tumass-lowell-7-news-26169\tUMass Lowell/7 News\t2016-10-07\t2016-10-11\t\tLikely Voters\t517\t4.87\tLive Phone\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-26054\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t309\t\tInternet\tNonpartisan\tNone\n40.0\t49.0\t\t\t11.0\tipsos-reuters-26121\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t293\t\tInternet\tNonpartisan\tNone\n42.0\t44.0\t5.0\t1.0\t8.0\tsuffolk-boston-globe-25983\tSuffolk/Boston Globe\t2016-10-03\t2016-10-05\t\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n38.0\t46.0\t7.0\t3.0\t6.0\tgqr-save-the-children-action-network-26155\tGQR (Save the Children Action Network)\t2016-09-29\t2016-10-02\tThinking about the election for President in November, if the election for President were held today, and the candidates were -- Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party Candidate Jill Stein -- for whom would you vote?\tLikely Voters\t500\t4.38\tLive Phone\tPollster\tDem\n48.0\t48.0\t\t4.0\t\tupi-cvoter-25926\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t491\t\tInternet\tNonpartisan\tNone\n35.0\t42.0\t13.0\t4.0\t6.0\tmassinc-wbur-25810\tMassINC/WBUR\t2016-09-27\t2016-09-29\t\tLikely Voters\t502\t4.4\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t\t7.0\t8.0\tmassinc-wbur-25810\tMassINC/WBUR\t2016-09-27\t2016-09-29\t\tLikely Voters\t502\t4.4\tLive Phone\tNonpartisan\tNone\n41.0\t47.0\t\t\t12.0\tipsos-reuters-25874\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t276\t\tInternet\tNonpartisan\tNone\n37.0\t43.0\t11.0\t5.0\t4.0\tgba-strategies-d-end-citizens-united-25820\tGBA Strategies (D-End Citizens United)\t2016-09-25\t2016-09-27\tThinking about the election for President in November, if the election for President were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein for whom would you vote?\tLikely Voters\t600\t4.0\tLive Phone\tSponsor\tDem\n40.0\t46.0\t\t\t13.0\tgba-strategies-d-end-citizens-united-25820\tGBA Strategies (D-End Citizens United)\t2016-09-25\t2016-09-27\t\tLikely Voters\t600\t4.0\tLive Phone\tSponsor\tDem\n42.0\t46.0\t6.0\t1.0\t5.0\targ-25745\tARG\t2016-09-20\t2016-09-25\tIf the election for US President were being held today between Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johnson, the Libertarian, and Jill Stein, of the Green Party, for whom would you vote - Clinton, Trump, Johnson, or Stein?\tRegistered Voters\t522\t4.2\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25760\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t493\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t\t\t13.0\tipsos-reuters-25717\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t283\t\tInternet\tNonpartisan\tNone\n38.0\t47.0\t10.0\t2.0\t3.0\tmonmouth-university-25596\tMonmouth University\t2016-09-17\t2016-09-20\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t400\t4.9\tLive Phone\tNonpartisan\tNone\n39.0\t48.0\t\t\t13.0\tipsos-reuters-25560\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t269\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t\t13.0\t3.0\tnbc-wsj-marist-25442\tNBC/WSJ/Marist\t2016-09-06\t2016-09-08\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t737\t3.6\tLive Phone\tNonpartisan\tNone\n37.0\t39.0\t15.0\t4.0\t5.0\tnbc-wsj-marist-25442\tNBC/WSJ/Marist\t2016-09-06\t2016-09-08\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t737\t3.6\tLive Phone\tNonpartisan\tNone\n40.0\t49.0\t\t\t11.0\twashpost-surveymonkey-25379\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1218\t\tInternet\tNonpartisan\tNone\n34.0\t40.0\t14.0\t6.0\t6.0\twashpost-surveymonkey-25379\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1218\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t\t\t13.0\tppp-d-constitutional-responsibility-project-25413\tPPP (D- Constitutional Responsibility Project)\t2016-08-30\t2016-08-31\tThe candidates for President are Democrat Hillary Clinton and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t585\t4.1\tIVR/Online\tSponsor\tDem\n40.0\t46.0\t\t\t14.0\tppp-d-nelp-25317\tPPP (D-NELP) \t2016-08-26\t2016-08-28\tThe candidates for President are Democrat Hillary Clinton and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t977\t3.1\tIVR/Online\tSponsor\tDem\n36.0\t45.0\t\t14.0\t5.0\tunh-wmur-25422\tUNH/WMUR\t2016-08-20\t2016-08-28\tIf the 2016 presidential election was being held today would you vote for Donald Trump, the Republican … Hillary Clinton, the Democrat… some other candidate …. or would you skip this election?\tLikely Voters\t433\t4.7\tLive Phone\tNonpartisan\tNone\n32.0\t43.0\t12.0\t7.0\t5.0\tunh-wmur-25422\tUNH/WMUR\t2016-08-20\t2016-08-28\tWhat if the candidates were Donald Trump, the Republican… Hillary Clinton, the Democrat… Gary Johnson, the Libertarian … and Jill Stein of the Green Party. If the 2016 presidential election was being held today, would you vote for Donald Trump … Hillary Clinton… Gary Johnson… Jill Stein… some other candidate …. or would you skip this election?\tLikely Voters\t433\t4.7\tLive Phone\tNonpartisan\tNone\n36.0\t45.0\t5.0\t6.0\t7.0\tcbs-yougov-25158\tCBS/YouGov\t2016-08-10\t2016-08-12\t\tLikely Voters\t990\t4.3\tInternet\tNonpartisan\tNone\n31.0\t41.0\t11.0\t3.0\t13.0\tvox-populi-r-esa-fund-25123\tVox Populi (R-ESA Fund)\t2016-08-07\t2016-08-08\t\tRegistered Voters\t820\t3.4\tIVR/Online\tSponsor\tRep\n32.0\t47.0\t8.0\t3.0\t9.0\tmassinc-wbur-25055\tMassINC/WBUR\t2016-07-29\t2016-08-01\tIf the election for President were held today, and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote? If undecided, ask...Even though you say you are undecided -- which way are you leaning as of today?\tLikely Voters\t609\t4.0\tLive Phone\tNonpartisan\tNone\n48.0\t39.0\t\t\t14.0\tinsidesources-nh-journal-24989\tInsideSources/NH Journal\t2016-07-19\t2016-07-21\tIf the GENERAL election for President were held today, who would you vote for?\tRegistered Voters\t1166\t5.1\tIVR/Live Phone\tNonpartisan\tNone\n37.0\t39.0\t\t18.0\t6.0\tunh-wmur-24992\tUNH/WMUR\t2016-07-09\t2016-07-18\tIf the 2016 presidential election was being held today would you vote for Donald Trump, the Republican … Hillary Clinton, the Democrat… some other candidate …. or would you skip this election?\tAdults\t532\t4.2\tLive Phone\tNonpartisan\tNone\n37.0\t37.0\t10.0\t10.0\t6.0\tunh-wmur-24992\tUNH/WMUR\t2016-07-09\t2016-07-18\tWhat if the candidates were Donald Trump, the Republican… Hillary Clinton, the Democrat… Gary Johnson, the Libertarian … and Jill Stein of the Green Party. If the 2016 presidential election was being held today, would you vote for Donald Trump …Hillary Clinton… Gary Johnson… Jill Stein… some other candidate …. or would you skip this election?\tAdults\t532\t4.2\tLive Phone\tNonpartisan\tNone\n42.0\t47.0\t\t4.0\t7.0\targ-24796\tARG\t2016-06-24\t2016-06-28\t\tRegistered Voters\t533\t4.2\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t\t\t18.0\tppp-d-americans-united-for-change-constitutional-responsibility-project-24787\tPPP (D-Americans United for Change/Constitutional Responsibility Project) \t2016-06-22\t2016-06-23\t\tLikely Voters\t578\t4.1\tIVR/Online\tSponsor\tDem\n43.0\t44.0\t\t9.0\t3.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24845\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n41.0\t41.0\t10.0\t5.0\t4.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24845\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n44.0\t44.0\t\t\t12.0\tfranklin-pierce-rkm-boston-herald-24570\tFranklin Pierce/RKM/Boston Herald\t2016-05-25\t2016-05-28\t\tLikely Voters\t405\t4.9\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t\t7.0\t7.0\tmassinc-wbur-24505\tMassINC/WBUR\t2016-05-12\t2016-05-15\t\tLikely Voters\t501\t4.4\tLive Phone\tNonpartisan\tNone\n31.0\t50.0\t\t15.0\t4.0\tunh-wmur-24951\tUNH/WMUR\t2016-04-07\t2016-04-17\t“If the 2016 presidential election was being held today and the candidates were Donald Trump, the Republican, and Hillary Clinton, the Democrat, would you vote for Donald Trump… Hillary Clinton… some other candidate …. or would you skip this election?”\tLikely Voters\t533\t4.2\tLive Phone\tNonpartisan\tNone\n29.0\t34.0\t\t\t37.0\tdartmouth-24458\tDartmouth\t2016-04-11\t2016-04-16\t\tRegistered Voters\t362\t5.15\tLive Phone\tNonpartisan\tNone\n39.0\t47.0\t\t10.0\t4.0\tunh-wmur-23977\tUNH/WMUR\t2016-02-20\t2016-02-28\t\tLikely Voters\t628\t3.9\tLive Phone\tNonpartisan\tNone\n40.0\t45.0\t\t\t15.0\tumass-lowell-7-news-23709\tUMass Lowell/7 News\t2016-02-05\t2016-02-07\t\tRegistered Voters\t1411\t2.99\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t\t\t16.0\tumass-lowell-7-news-23695\tUMass Lowell/7 News\t2016-02-04\t2016-02-06\t\tRegistered Voters\t1413\t2.9\tLive Phone\tNonpartisan\tNone\n39.0\t48.0\t\t10.0\t3.0\tcnn-unh-wmur-23538\tCNN/UNH/WMUR\t2016-01-13\t2016-01-18\t\tLikely Voters\t885\t3.5\tLive Phone\tNonpartisan\tNone\n44.0\t45.0\t\t\t11.0\tnbc-wsj-marist-23464\tNBC/WSJ/Marist\t2016-01-02\t2016-01-07\t\tRegistered Voters\t957\t3.2\tLive Phone\tNonpartisan\tNone\n36.0\t50.0\t\t\t14.0\tppp-d-23453\tPPP (D)\t2016-01-04\t2016-01-06\t\tLikely Voters\t1036\t3.0\tIVR/Online\tPollster\tDem\n41.0\t47.0\t\t\t12.0\tppp-d-23268\tPPP (D)\t2015-11-30\t2015-12-02\t\tLikely Voters\t990\t3.1\tIVR/Online\tPollster\tDem\n40.0\t47.0\t\t2.0\t10.0\tfox-23176\tFOX\t2015-11-15\t2015-11-17\t\tRegistered Voters\t804\t3.5\tLive Phone\tNonpartisan\tNone\n38.0\t45.0\t\t\t17.0\tmorning-consult-campaign-for-sustainable-rx-pricing-23185\tMorning Consult/Campaign for Sustainable Rx Pricing \t2015-11-06\t2015-11-16\t\tRegistered Voters\t530\t4.0\tLive Phone/Online\tNonpartisan\tNone\n41.0\t47.0\t\t\t12.0\tppp-d-22959\tPPP (D)\t2015-10-16\t2015-10-18\t\tLikely Voters\t880\t3.3\tIVR/Online\tPollster\tDem\n45.0\t48.0\t\t\t8.0\tnbc-wsj-marist-22842\tNBC/WSJ/Marist\t2015-09-23\t2015-09-30\t\tRegistered Voters\t1044\t3.0\tLive Phone\tNonpartisan\tNone\n42.0\t50.0\t\t3.0\t5.0\tcnn-unh-wmur-22807\tCNN/UNH/WMUR\t2015-09-17\t2015-09-23\t\tLikely Voters\t743\t3.6\tLive Phone\tNonpartisan\tNone\n45.0\t46.0\t\t\t8.0\tnbc-marist-22685\tNBC/Marist\t2015-08-26\t2015-09-02\t\tRegistered Voters\t910\t3.2\tLive Phone\tNonpartisan\tNone\n44.0\t46.0\t\t\t10.0\tppp-d-22612\tPPP (D)\t2015-08-21\t2015-08-24\t\tLikely Voters\t841\t3.4\tIVR/Online\tPollster\tDem\n40.0\t50.0\t\t2.0\t7.0\tunh-wmur-22500\tUNH/WMUR\t2015-07-22\t2015-07-30\t\tLikely Voters\t652\t3.8\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/NJ.tsv",
    "content": "Trump\tClinton\tUndecided\tOther\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n37.0\t52.0\t3.0\t8.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1377\t\tInternet\tNonpartisan\tNone\n41.0\t55.0\t\t4.0\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t348\t\tInternet\tNonpartisan\tNone\n37.0\t53.0\t3.0\t8.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1206\t\tInternet\tNonpartisan\tNone\n38.0\t48.0\t14.0\t\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t658\t\tInternet\tNonpartisan\tNone\n37.0\t53.0\t3.0\t8.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1119\t\tInternet\tNonpartisan\tNone\n37.0\t55.0\t2.0\t6.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t943\t\tInternet\tNonpartisan\tNone\n36.0\t50.0\t14.0\t\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t662\t\tInternet\tNonpartisan\tNone\n40.0\t51.0\t6.0\t5.0\tstockton-26727\tStockton\t2016-10-27\t2016-11-02\tIf the election for president were held today, would you vote for:\tLikely Voters\t678\t3.75\tLive Phone\tNonpartisan\tNone\n38.0\t54.0\t2.0\t6.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t823\t\tInternet\tNonpartisan\tNone\n36.0\t55.0\t3.0\t7.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t719\t\tInternet\tNonpartisan\tNone\n35.0\t55.0\t3.0\t7.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t724\t\tInternet\tNonpartisan\tNone\n34.0\t55.0\t4.0\t8.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t674\t\tInternet\tNonpartisan\tNone\n40.0\t57.0\t\t3.0\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t353\t\tInternet\tNonpartisan\tNone\n34.0\t54.0\t3.0\t9.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t734\t\tInternet\tNonpartisan\tNone\n34.0\t51.0\t15.0\t\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t774\t\tInternet\tNonpartisan\tNone\n35.0\t53.0\t3.0\t9.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t703\t\tInternet\tNonpartisan\tNone\n36.0\t52.0\t3.0\t9.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t590\t\tInternet\tNonpartisan\tNone\n36.0\t52.0\t2.0\t9.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t470\t\tInternet\tNonpartisan\tNone\n40.0\t57.0\t\t3.0\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t355\t\tInternet\tNonpartisan\tNone\n32.0\t53.0\t15.0\t\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t906\t\tInternet\tNonpartisan\tNone\n40.0\t51.0\t5.0\t4.0\tfairleigh-dickinson-26230\tFairleigh Dickinson\t2016-10-12\t2016-10-16\tIf the election for president was held today, and the choices were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t579\t4.3\tLive Phone\tNonpartisan\tNone\n35.0\t49.0\t5.0\t12.0\tfairleigh-dickinson-26230\tFairleigh Dickinson\t2016-10-12\t2016-10-16\tNow let me ask you that question in a slightly different way. If the election for president was held today, and the choices were Democrat Hillary Clinton, Republican Donald Trump, and Gary Johnson or Jill Stein, the third party candidates, for whom would you vote?\tLikely Voters\t293\t5.7\tLive Phone\tNonpartisan\tNone\n39.0\t57.0\t\t4.0\tupi-cvoter-26317\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t338\t\tInternet\tNonpartisan\tNone\n32.0\t50.0\t18.0\t\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t1084\t\tInternet\tNonpartisan\tNone\n39.0\t57.0\t\t4.0\tupi-cvoter-26055\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t339\t\tInternet\tNonpartisan\tNone\n34.0\t49.0\t17.0\t\tipsos-reuters-26122\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t595\t\tInternet\tNonpartisan\tNone\n41.0\t55.0\t\t4.0\tupi-cvoter-25927\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t568\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t5.0\t9.0\tstockton-25823\tStockton\t2016-09-22\t2016-09-29\t\tLikely Voters\t638\t3.9\tLive Phone\tNonpartisan\tNone\n34.0\t47.0\t19.0\t\tipsos-reuters-25875\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t606\t\tInternet\tNonpartisan\tNone\n40.0\t56.0\t\t4.0\tupi-cvoter-25761\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t560\t\tInternet\tNonpartisan\tNone\n32.0\t50.0\t18.0\t\tipsos-reuters-25715\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t953\t\tInternet\tNonpartisan\tNone\n33.0\t49.0\t18.0\t\tipsos-reuters-25561\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t982\t\tInternet\tNonpartisan\tNone\n29.0\t50.0\t7.0\t15.0\trutgers-eagleton-26163\tRutgers-Eagleton\t2016-09-06\t2016-09-10\t\tRegistered Voters\t726\t\tLive Phone\tNonpartisan\tNone\n35.0\t59.0\t1.0\t6.0\trutgers-eagleton-26163\tRutgers-Eagleton\t2016-09-06\t2016-09-10\t\tRegistered Voters\t718\t\tLive Phone\tNonpartisan\tNone\n38.0\t53.0\t9.0\t\twashpost-surveymonkey-25380\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t912\t\tInternet\tNonpartisan\tNone\n34.0\t49.0\t5.0\t11.0\twashpost-surveymonkey-25380\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t912\t\tInternet\tNonpartisan\tNone\n32.0\t44.0\t9.0\t15.0\tfairleigh-dickinson-24942\tFairleigh Dickinson\t2016-06-22\t2016-06-26\tIf the election for president was held today, which of the following would you vote for?\tRegistered Voters\t349\t\tLive Phone\tNonpartisan\tNone\n31.0\t52.0\t11.0\t5.0\tfairleigh-dickinson-24942\tFairleigh Dickinson\t2016-06-22\t2016-06-26\tIf the election for president was held today, which of the following would you vote for?\tRegistered Voters\t363\t\tLive Phone\tNonpartisan\tNone\n34.0\t49.0\t8.0\t8.0\tcbs-yougov-24613\tCBS/YouGov\t2016-05-31\t2016-06-03\t\tLikely Voters\t1194\t3.8\tInternet\tNonpartisan\tNone\n34.0\t38.0\t17.0\t11.0\tmonmouth-university-24572\tMonmouth University\t2016-05-23\t2016-05-27\t\tRegistered Voters\t703\t3.7\tLive Phone\tNonpartisan\tNone\n31.0\t37.0\t16.0\t15.0\tmonmouth-university-24572\tMonmouth University\t2016-05-23\t2016-05-27\t\tRegistered Voters\t703\t3.7\tLive Phone\tNonpartisan\tNone\n37.0\t48.0\t8.0\t7.0\tfairleigh-dickinson-24548\tFairleigh Dickinson\t2016-05-18\t2016-05-22\t\tRegistered Voters\t702\t3.7\tLive Phone\tNonpartisan\tNone\n38.0\t45.0\t13.0\t3.0\tquinnipiac-24515\tQuinnipiac\t2016-05-10\t2016-05-16\t\tRegistered Voters\t1989\t2.2\tLive Phone\tNonpartisan\tNone\n36.0\t50.0\t3.0\t11.0\trutgers-eagleton-24304\tRutgers-Eagleton\t2016-04-01\t2016-04-08\t\tRegistered Voters\t738\t4.0\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/NM.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n38.0\t40.0\t16.0\t4.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t749\t\tInternet\tNonpartisan\tNone\n38.0\t47.0\t\t15.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t330\t\tInternet\tNonpartisan\tNone\n36.0\t40.0\t16.0\t6.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t768\t\tInternet\tNonpartisan\tNone\n38.0\t41.0\t\t\t21.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t275\t\tInternet\tNonpartisan\tNone\n36.0\t41.0\t17.0\t4.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t810\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t11.0\t3.0\t2.0\talbuquerque-journal-research-polling-26798\tAlbuquerque Journal/Research & Polling\t2016-11-01\t2016-11-03\t\tLikely Voters\t504\t4.4\tLive Phone\tNonpartisan\tNone\n36.0\t41.0\t17.0\t4.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t794\t\tInternet\tNonpartisan\tNone\n42.0\t45.0\t\t\t13.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t271\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t7.0\t3.0\t1.0\tziapoll-26714\tZiaPoll\t2016-11-01\t2016-11-02\t\tLikely Voters\t1102\t3.0\tMixed\tNonpartisan\tNone\n35.0\t40.0\t18.0\t4.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t820\t\tInternet\tNonpartisan\tNone\n31.0\t39.0\t22.0\t2.0\t7.0\tlucid-the-times-picayune-26642\tLucid/The Times-Picayune\t2016-10-28\t2016-11-01\t\tLikely Voters\t567\t\tInternet\tNonpartisan\tNone\n34.0\t42.0\t18.0\t3.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t900\t\tInternet\tNonpartisan\tNone\n34.0\t44.0\t17.0\t3.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t987\t\tInternet\tNonpartisan\tNone\n33.0\t45.0\t18.0\t1.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t892\t\tInternet\tNonpartisan\tNone\n44.0\t50.0\t\t5.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t322\t\tInternet\tNonpartisan\tNone\n35.0\t43.0\t19.0\t2.0\t1.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1141\t\tInternet\tNonpartisan\tNone\n34.0\t42.0\t20.0\t2.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1175\t\tInternet\tNonpartisan\tNone\n34.0\t41.0\t21.0\t2.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1095\t\tInternet\tNonpartisan\tNone\n33.0\t41.0\t22.0\t3.0\t1.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t958\t\tInternet\tNonpartisan\tNone\n44.0\t51.0\t\t5.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t320\t\tInternet\tNonpartisan\tNone\n44.0\t51.0\t\t6.0\t\tupi-cvoter-26319\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t324\t\tInternet\tNonpartisan\tNone\n39.0\t50.0\t\t\t10.0\twashpost-surveymonkey-26241\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t889\t\tInternet\tNonpartisan\tNone\n33.0\t41.0\t18.0\t5.0\t2.0\twashpost-surveymonkey-26241\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t889\t\tInternet\tNonpartisan\tNone\n36.0\t44.0\t\t\t20.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t263\t\tInternet\tNonpartisan\tNone\n43.0\t51.0\t\t6.0\t\tupi-cvoter-26056\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t330\t\tInternet\tNonpartisan\tNone\n36.0\t49.0\t\t\t15.0\tipsos-reuters-26123\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t263\t\tInternet\tNonpartisan\tNone\n33.0\t46.0\t14.0\t4.0\t3.0\tsurveyusa-kob-tv-25972\tSurveyUSA/KOB-TV\t2016-09-28\t2016-10-02\t\tLikely Voters\t594\t4.1\tIVR/Online\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-25928\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t507\t\tInternet\tNonpartisan\tNone\n34.0\t44.0\t\t14.0\t8.0\talbuquerque-journal-research-polling-25959\tAlbuquerque Journal/Research & Polling\t2016-09-27\t2016-09-29\t\tLikely Voters\t501\t4.4\tLive Phone\tNonpartisan\tNone\n31.0\t35.0\t24.0\t3.0\t6.0\talbuquerque-journal-research-polling-25959\tAlbuquerque Journal/Research & Polling\t2016-09-27\t2016-09-29\t\tLikely Voters\t501\t4.4\tLive Phone\tNonpartisan\tNone\n45.0\t50.0\t\t6.0\t\tupi-cvoter-25762\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t488\t\tInternet\tNonpartisan\tNone\n37.0\t51.0\t\t\t13.0\twashpost-surveymonkey-25381\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1788\t\tInternet\tNonpartisan\tNone\n29.0\t37.0\t25.0\t5.0\t4.0\twashpost-surveymonkey-25381\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1788\t\tInternet\tNonpartisan\tNone\n31.0\t40.0\t16.0\t4.0\t9.0\tppp-d-nm-political-report-25266\tPPP (D)/NM Political Report\t2016-08-19\t2016-08-21\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, who would you vote for?\tLikely Voters\t1103\t3.0\tIVR/Online\tPollster\tDem\n33.0\t41.0\t14.0\t\t12.0\tppp-d-nm-political-report-24939\tPPP (D)/NM Political Report\t2016-05-13\t2016-05-15\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, who would you vote for?\tLikely Voters\t802\t3.5\tAutomated Phone\tPollster\tDem"
  },
  {
    "path": "week-6/data/NV.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n43.0\t45.0\t9.0\t\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1207\t\tInternet\tNonpartisan\tNone\n42.0\t42.0\t4.0\t3.0\t9.0\tinsights-west-26814\tInsights West\t2016-11-04\t2016-11-06\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t387\t4.9\tInternet\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t323\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t10.0\t\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1124\t\tInternet\tNonpartisan\tNone\n42.0\t45.0\t\t\t13.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t571\t\tInternet\tNonpartisan\tNone\n43.0\t42.0\t10.0\t\t4.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1092\t\tInternet\tNonpartisan\tNone\n44.0\t43.0\t9.0\t\t4.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1016\t\tInternet\tNonpartisan\tNone\n42.0\t47.0\t\t\t11.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t551\t\tInternet\tNonpartisan\tNone\n46.0\t45.0\t3.0\t2.0\t4.0\tremington-research-group-r-axiom-strategies-26763\tRemington Research Group (R)/Axiom Strategies\t2016-11-01\t2016-11-02\t\tLikely Voters\t1793\t2.31\tIVR/Live Phone\tSponsor\tRep\n44.0\t43.0\t9.0\t\t4.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t937\t\tInternet\tNonpartisan\tNone\n45.0\t48.0\t\t\t7.0\tppp-d-center-for-american-progress-action-fund-26703\tPPP (D-Center for American Progress Action Fund)\t2016-10-31\t2016-11-01\tThe candidates for President this fall are Democrat Hillary Clinton, and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t688\t3.7\tIVR/Online\tSponsor\tDem\n38.0\t45.0\t7.0\t2.0\t7.0\tlucid-the-times-picayune-26643\tLucid/The Times-Picayune\t2016-10-28\t2016-11-01\t\tLikely Voters\t892\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t4.0\t3.0\t4.0\tjmc-analytics-r-8-news-now-26638\tJMC Analytics (R)/8 News NOW\t2016-10-28\t2016-11-01\tIf the race for President were held today between Donald Trump and Hillary Clinton, which candidate would you support?\tLikely Voters\t600\t4.0\tLive Phone\tPollster\tRep\n49.0\t43.0\t5.0\t2.0\t1.0\tcnn-26621\tCNN\t2016-10-27\t2016-11-01\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, and Gary Johnson and Bill Weld as the Libertarian Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t790\t3.5\tLive Phone\tNonpartisan\tNone\n51.0\t45.0\t\t4.0\t0.0\tcnn-26621\tCNN\t2016-10-27\t2016-11-01\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump as the Republican Party’s candidate, who would you be more likely to vote for?\tLikely Voters\t790\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t42.0\t10.0\t\t4.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t994\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t12.0\t\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1010\t\tInternet\tNonpartisan\tNone\n48.0\t44.0\t4.0\t1.0\t3.0\tremington-research-group-r-axiom-strategies-26562\tRemington Research Group (R)/Axiom Strategies\t2016-10-30\t2016-10-30\t\tLikely Voters\t787\t3.49\tIVR/Live Phone\tSponsor\tRep\n43.0\t43.0\t11.0\t\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t887\t\tInternet\tNonpartisan\tNone\n46.0\t48.0\t\t6.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t314\t\tInternet\tNonpartisan\tNone\n44.0\t43.0\t11.0\t\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1104\t\tInternet\tNonpartisan\tNone\n40.0\t40.0\t\t\t20.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t391\t\tInternet\tNonpartisan\tNone\n44.0\t44.0\t10.0\t\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1041\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t\t9.0\t1.0\tnbc-wsj-marist-26487\tNBC/WSJ/Marist\t2016-10-20\t2016-10-24\tIf November's presidential election were held today, whom would you support if the candidates are [including those who are undecided yet leaning toward a candidate or already voted]:\tLikely Voters\t707\t3.7\tLive Phone\tNonpartisan\tNone\n43.0\t43.0\t10.0\t3.0\t2.0\tnbc-wsj-marist-26487\tNBC/WSJ/Marist\t2016-10-20\t2016-10-24\tIf November's presidential election were held today, whom would you support if the candidates are [including those who are undecided yet leaning toward a candidate or already voted]:\tLikely Voters\t707\t3.7\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t10.0\t\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t967\t\tInternet\tNonpartisan\tNone\n41.0\t48.0\t6.0\t1.0\t4.0\tbendixen-amandi-las-vegas-review-journal-26416\tBendixen & Amandi-Las Vegas Review-Journal\t2016-10-20\t2016-10-23\t\tLikely Voters\t800\t3.5\tLive Phone\tPollster\tDem\n45.0\t44.0\t9.0\t\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t816\t\tInternet\tNonpartisan\tNone\n45.0\t48.0\t\t6.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t319\t\tInternet\tNonpartisan\tNone\n47.0\t44.0\t4.0\t2.0\t3.0\tremington-research-group-r-axiom-strategies-26422\tRemington Research Group (R)/Axiom Strategies\t2016-10-20\t2016-10-22\t\tLikely Voters\t1332\t2.69\tIVR/Live Phone\tSponsor\tRep\n42.0\t46.0\t5.0\t2.0\t4.0\trasmussen-ktnv-26418\tRasmussen/KTNV\t2016-10-20\t2016-10-22\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump or Democrat Hillary Clinton?\tLikely Voters\t826\t3.5\tIVR/Online\tNonpartisan\tNone\n43.0\t48.0\t\t\t9.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t562\t\tInternet\tNonpartisan\tNone\n40.0\t47.0\t7.0\t3.0\t3.0\tmonmouth-university-26251\tMonmouth University\t2016-10-14\t2016-10-17\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, or Gary Johnson the Libertarian – or would you choose the option for none of these candidates?\tLikely Voters\t413\t4.8\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t6.0\t\tupi-cvoter-26315\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t319\t\tInternet\tNonpartisan\tNone\n46.0\t47.0\t\t\t7.0\twashpost-surveymonkey-26247\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t884\t\tInternet\tNonpartisan\tNone\n44.0\t40.0\t9.0\t5.0\t2.0\twashpost-surveymonkey-26247\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t884\t\tInternet\tNonpartisan\tNone\n44.0\t46.0\t7.0\t2.0\t0.0\tcnn-26203\tCNN\t2016-10-10\t2016-10-15\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, and Gary Johnson and Bill Weld as the Libertarian Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t698\t3.5\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t3.0\t0.0\tcnn-26203\tCNN\t2016-10-10\t2016-10-15\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump as the Republican Party’s candidate, who would you be more likely to vote for?\tLikely Voters\t698\t3.5\tLive Phone\tNonpartisan\tNone\n40.0\t46.0\t4.0\t5.0\t4.0\tcbs-yougov-26185\tCBS/YouGov\t2016-10-12\t2016-10-14\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, who would you vote for? (Voters selecting someone else in the initial question were given a choice of a selection of third party candidates)\tLikely Voters\t996\t4.5\tInternet\tNonpartisan\tNone\n41.0\t43.0\t4.0\t3.0\t9.0\tjmc-analytics-r-8-news-now-26189\tJMC Analytics (R)/8 News NOW\t2016-10-10\t2016-10-13\t\tLikely Voters\t600\t4.0\tLive Phone\tPollster\tRep\n39.0\t41.0\t\t\t20.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t641\t\tInternet\tNonpartisan\tNone\n43.0\t43.0\t\t6.0\t8.0\tclarity-d-end-citizens-united-26159\tClarity (D-End Citizens United)\t2016-10-10\t2016-10-11\t\tLikely Voters\t1010\t3.0\tIVR/Live Phone\tSponsor\tDem\n43.0\t47.0\t\t\t10.0\tppp-d-cortez-masto-26151\tPPP (D-Cortez Masto)\t2016-10-10\t2016-10-11\tThe candidates for President are Democrat Hillary Clinton and Republican Donald Trump. If the election was today, who would you vote for?\tLikely Voters\t986\t3.1\tIVR/Online\tSponsor\tDem\n45.0\t48.0\t\t7.0\t\tupi-cvoter-26053\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t320\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t\t12.0\tipsos-reuters-26120\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t620\t\tInternet\tNonpartisan\tNone\n41.0\t44.0\t9.0\t\t7.0\thart-d-unlv-25958\tHart (D)/UNLV\t2016-09-27\t2016-10-02\t\tRegistered Voters\t700\t3.8\tLive Phone\tPollster\tDem\n44.0\t47.0\t\t4.0\t6.0\thart-d-unlv-25958\tHart (D)/UNLV\t2016-09-27\t2016-10-02\t\tRegistered Voters\t700\t3.8\tLive Phone\tPollster\tDem\n47.0\t47.0\t\t6.0\t\tupi-cvoter-25925\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t536\t\tInternet\tNonpartisan\tNone\n38.0\t44.0\t7.0\t5.0\t6.0\tsuffolk-25815\tSuffolk\t2016-09-27\t2016-09-29\tNevada’s presidential ballot includes five candidates - Independent American Party Darrell Castle, Democrat Hillary Clinton, Rocky De La Fuente - No Party, Libertarian Gary Johnson, Republican Donald Trump, or none of these candidates. At this point which candidate will you vote for or lean toward?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n44.0\t42.0\t\t\t14.0\tipsos-reuters-25873\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t580\t\tInternet\tNonpartisan\tNone\n46.0\t47.0\t\t7.0\t\tupi-cvoter-25758\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t540\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t\t\t10.0\tipsos-reuters-25718\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t542\t\tInternet\tNonpartisan\tNone\n43.0\t40.0\t8.0\t4.0\t3.0\tfox-news-25610\tFox News\t2016-09-18\t2016-09-20\t\tLikely Voters\t704\t3.5\tLive Phone\tNonpartisan\tNone\n46.0\t42.0\t\t7.0\t4.0\tfox-news-25610\tFox News\t2016-09-18\t2016-09-20\t\tLikely Voters\t704\t3.5\tLive Phone\tNonpartisan\tNone\n42.0\t42.0\t7.0\t3.0\t4.0\tgqr-d-democracy-corps-wvwv-25638\tGQR (D-Democracy Corps/WVWV)\t2016-09-10\t2016-09-19\tI know it's a long way off, but thinking about the election for President in November, if the election for President were held today, would you vote for -- Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson or Green Party Candidate Jill Stein?\tLikely Voters\t400\t4.9\tLive Phone\tSponsor\tDem\n42.0\t39.0\t11.0\t3.0\t4.0\trasmussen-ktnv-25536\tRasmussen/KTNV\t2016-09-16\t2016-09-18\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump or Democrat Hillary Clinton?\tLikely Voters\t800\t4.0\tIVR/Online\tNonpartisan\tNone\n41.0\t38.0\t\t\t21.0\tipsos-reuters-25580\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t549\t\tInternet\tNonpartisan\tNone\n42.0\t40.0\t5.0\t3.0\t10.0\tinsights-west-25628\tInsights West\t2016-09-12\t2016-09-14\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t398\t4.9\tInternet\tNonpartisan\tNone\n44.0\t42.0\t8.0\t1.0\t6.0\tmonmouth-university-25488\tMonmouth University\t2016-09-11\t2016-09-13\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, or Gary Johnson the Libertarian – or would you choose the option for none of these candidates?\tLikely Voters\t406\t4.9\tLive Phone\tNonpartisan\tNone\n44.0\t45.0\t\t7.0\t3.0\tnbc-wsj-marist-25443\tNBC/WSJ/Marist\t2016-09-06\t2016-09-08\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t627\t3.9\tLive Phone\tNonpartisan\tNone\n42.0\t41.0\t8.0\t4.0\t4.0\tnbc-wsj-marist-25443\tNBC/WSJ/Marist\t2016-09-06\t2016-09-08\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t627\t3.9\tLive Phone\tNonpartisan\tNone\n42.0\t45.0\t\t\t13.0\tppp-d-pna-25465\tPPP (D)/PNA\t2016-09-06\t2016-09-07\tThe candidates for President are Democrat Hillary Clinton and Republican Donald Trump. If the election was today, who would you vote for?\tLikely Voters\t815\t3.4\tIVR/Online\tPollster\tDem\n43.0\t48.0\t\t\t10.0\twashpost-surveymonkey-25378\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2776\t\tInternet\tNonpartisan\tNone\n37.0\t40.0\t12.0\t6.0\t6.0\twashpost-surveymonkey-25378\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2776\t\tInternet\tNonpartisan\tNone\n42.0\t44.0\t5.0\t5.0\t5.0\tsuffolk-25206\tSuffolk\t2016-08-15\t2016-08-17\tNevada’s presidential ballot includes five candidates - Independent American Party Darrell Castle, Democrat Hillary Clinton, Rocky De La Fuente - No Party, Libertarian Gary Johnson, Republican Donald Trump, or none of these candidates. At this point which candidate will you vote or lean toward?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t4.0\t5.0\t6.0\tcbs-yougov-25080\tCBS/YouGov\t2016-08-02\t2016-08-05\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, who would you vote for? (Voters selecting someone else in the initial question were given a choice of a selection of third party candidates)\tLikely Voters\t993\t4.6\tInternet\tNonpartisan\tNone\n40.0\t41.0\t10.0\t4.0\t5.0\trasmussen-ktnv-25035\tRasmussen/KTNV\t2016-07-29\t2016-07-31\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump or Democrat Hillary Clinton?\tLikely Voters\t750\t4.0\tIVR/Online\tNonpartisan\tNone\n43.0\t38.0\t8.0\t4.0\t7.0\trasmussen-ktnv-24968\tRasmussen/KTNV\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump or Democrat Hillary Clinton?\tLikely Voters\t750\t4.0\tIVR/Online\tNonpartisan\tNone\n41.0\t45.0\t5.0\t\t8.0\tmonmouth-university-24854\tMonmouth University\t2016-07-07\t2016-07-10\t\tLikely Voters\t408\t4.9\tLive Phone\tNonpartisan\tNone\n47.0\t45.0\t\t4.0\t4.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24846\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n44.0\t44.0\t9.0\t1.0\t3.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24846\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n47.0\t42.0\t\t11.0\t\tgravis-marketing-24933\tGravis Marketing\t2016-05-24\t2016-05-25\t\tRegistered Voters\t1637\t2.0\tAutomated Phone\tNonpartisan\tNone\n44.0\t41.0\t8.0\t8.0\t\tgravis-marketing-24933\tGravis Marketing\t2016-05-24\t2016-05-25\t\tRegistered Voters\t1637\t2.0\tAutomated Phone\tNonpartisan\tNone\n44.0\t41.0\t\t\t14.0\tmorning-consult-campaign-for-sustainable-rx-pricing-23187\tMorning Consult/Campaign for Sustainable Rx Pricing \t2015-11-10\t2015-11-16\t\tRegistered Voters\t628\t4.0\tLive Phone/Online\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/NY.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n32.0\t57.0\t9.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t2208\t\tInternet\tNonpartisan\tNone\n38.0\t59.0\t4.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t458\t\tInternet\tNonpartisan\tNone\n31.0\t58.0\t9.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t2132\t\tInternet\tNonpartisan\tNone\n33.0\t51.0\t\t16.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t1383\t\tInternet\tNonpartisan\tNone\n34.0\t51.0\t8.0\t7.0\tsiena-26748\tSiena\t2016-11-03\t2016-11-04\tIf the election for President was being held today and the candidates were Hillary Clinton on the Democratic line, Donald Trump on the Republican line, Gary Johnson on the Libertarian Party line, and Jill Stein on the Green Party line, who would you vote for?\tLikely Voters\t617\t4.5\tLive Phone\tNonpartisan\tNone\n32.0\t58.0\t9.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t2131\t\tInternet\tNonpartisan\tNone\n32.0\t57.0\t9.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1949\t\tInternet\tNonpartisan\tNone\n34.0\t56.0\t\t10.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t1443\t\tInternet\tNonpartisan\tNone\n32.0\t58.0\t9.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1755\t\tInternet\tNonpartisan\tNone\n33.0\t57.0\t9.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1645\t\tInternet\tNonpartisan\tNone\n33.0\t56.0\t10.0\t1.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1734\t\tInternet\tNonpartisan\tNone\n33.0\t57.0\t9.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t1561\t\tInternet\tNonpartisan\tNone\n38.0\t58.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t403\t\tInternet\tNonpartisan\tNone\n32.0\t57.0\t8.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1630\t\tInternet\tNonpartisan\tNone\n30.0\t52.0\t\t18.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t989\t\tInternet\tNonpartisan\tNone\n32.0\t57.0\t9.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1480\t\tInternet\tNonpartisan\tNone\n31.0\t58.0\t9.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1169\t\tInternet\tNonpartisan\tNone\n30.0\t58.0\t9.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t882\t\tInternet\tNonpartisan\tNone\n38.0\t59.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t424\t\tInternet\tNonpartisan\tNone\n30.0\t54.0\t\t16.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t886\t\tInternet\tNonpartisan\tNone\n30.0\t54.0\t10.0\t6.0\tsiena-26262\tSiena\t2016-10-13\t2016-10-17\tIf the election for President was being held today and the candidates were Hillary Clinton on the Democratic line, Donald Trump on the Republican line, Gary Johnson on the Libertarian Party line, and Jill Stein on the Green Party line, who would you vote for?\tLikely Voters\t611\t4.6\tLive Phone\tNonpartisan\tNone\n38.0\t59.0\t4.0\t\tupi-cvoter-26320\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t404\t\tInternet\tNonpartisan\tNone\n27.0\t53.0\t\t20.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t986\t\tInternet\tNonpartisan\tNone\n38.0\t58.0\t4.0\t\tupi-cvoter-26057\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t418\t\tInternet\tNonpartisan\tNone\n31.0\t55.0\t\t14.0\tipsos-reuters-26124\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t1437\t\tInternet\tNonpartisan\tNone\n40.0\t57.0\t4.0\t\tupi-cvoter-25929\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t701\t\tInternet\tNonpartisan\tNone\n29.0\t49.0\t\t22.0\tipsos-reuters-25877\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t1259\t\tInternet\tNonpartisan\tNone\n39.0\t57.0\t4.0\t\tupi-cvoter-25764\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t724\t\tInternet\tNonpartisan\tNone\n33.0\t57.0\t8.0\t2.0\tnbc-wsj-marist-25720\tNBC/WSJ/Marist\t2016-09-21\t2016-09-23\t\tLikely Voters\t676\t3.8\tLive Phone\tNonpartisan\tNone\n31.0\t52.0\t14.0\t3.0\tnbc-wsj-marist-25720\tNBC/WSJ/Marist\t2016-09-21\t2016-09-23\t\tLikely Voters\t676\t3.8\tLive Phone\tNonpartisan\tNone\n34.0\t53.0\t\t13.0\tipsos-reuters-25713\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t1113\t\tInternet\tNonpartisan\tNone\n30.0\t51.0\t12.0\t7.0\tsiena-25534\tSiena\t2016-09-11\t2016-09-15\tIf the election for President was being held today and the candidates were Hillary Clinton on the Democratic line, Donald Trump on the Republican line, Gary Johnson on the Libertarian Party line, and Jill Stein on the Green Party line, who would you vote for?\tLikely Voters\t600\t5.0\tLive Phone\tNonpartisan\tNone\n30.0\t53.0\t\t17.0\tipsos-reuters-25562\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t1089\t\tInternet\tNonpartisan\tNone\n35.0\t57.0\t\t9.0\twashpost-surveymonkey-25382\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1405\t\tInternet\tNonpartisan\tNone\n31.0\t51.0\t13.0\t5.0\twashpost-surveymonkey-25382\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1405\t\tInternet\tNonpartisan\tNone\n27.0\t57.0\t3.0\t13.0\tsiena-25159\tSiena\t2016-08-07\t2016-08-10\t\tRegistered Voters\t717\t4.3\tLive Phone\tNonpartisan\tNone\n25.0\t50.0\t16.0\t9.0\tsiena-25159\tSiena\t2016-08-07\t2016-08-10\t\tRegistered Voters\t717\t4.3\tLive Phone\tNonpartisan\tNone\n36.0\t53.0\t10.0\t\tgravis-marketing-25133\tGravis Marketing\t2016-08-04\t2016-08-08\tIf you had to vote today in a matchup between Hillary Clinton and Donald Trump, who would you vote for?\tRegistered Voters\t1717\t2.4\tIVR/Online\tNonpartisan\tNone\n34.0\t48.0\t18.0\t\tgravis-marketing-25133\tGravis Marketing\t2016-08-04\t2016-08-08\tIf you had to vote today in a matchup between Hillary Clinton, Donald Trump, Gary Johnson and Jill Stein, who would you vote for?\tRegistered Voters\t1717\t2.4\tIVR/Online\tNonpartisan\tNone\n35.0\t47.0\t3.0\t14.0\tquinnipiac-24930\tQuinnipiac\t2016-07-13\t2016-07-17\t1. If the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters\t1104\t3.0\tLive Phone\tNonpartisan\tNone\n33.0\t45.0\t11.0\t12.0\tquinnipiac-24930\tQuinnipiac\t2016-07-13\t2016-07-17\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tRegistered Voters\t1104\t3.0\tLive Phone\tNonpartisan\tNone\n31.0\t54.0\t\t16.0\tsiena-24809\tSiena\t2016-06-22\t2016-06-28\t\tRegistered Voters\t803\t4.0\tLive Phone\tNonpartisan\tNone\n31.0\t52.0\t\t17.0\tsiena-24585\tSiena\t2016-05-22\t2016-05-26\t\tRegistered Voters\t825\t3.9\tLive Phone\tNonpartisan\tNone\n30.0\t56.0\t\t15.0\tsiena-24430\tSiena\t2016-04-24\t2016-04-27\t\tRegistered Voters\t802\t4.1\tLive Phone\tNonpartisan\tNone\n36.0\t55.0\t\t9.0\temerson-college-polling-society-24294\tEmerson College Polling Society\t2016-04-15\t2016-04-17\t\tLikely Voters\t1047\t2.9\tAutomated Phone\tNonpartisan\tNone\n35.0\t55.0\t\t10.0\tppp-d-24259\tPPP (D)\t2016-04-07\t2016-04-10\t\tLikely Voters\t1403\t2.6\tIVR/Online\tPollster\tDem\n32.0\t61.0\t\t7.0\tnbc-wsj-marist-24249\tNBC/WSJ/Marist\t2016-04-06\t2016-04-10\t\tRegistered Voters\t1987\t2.2\tLive Phone\tNonpartisan\tNone\n35.0\t51.0\t\t14.0\tbaruch-college-new-york-1-24253\tBaruch College/New York 1\t2016-04-05\t2016-04-10\t\tRegistered Voters\t1306\t2.9\tLive Phone\tNonpartisan\tNone\n36.0\t54.0\t\t10.0\temerson-college-polling-society-24235\tEmerson College Polling Society\t2016-04-06\t2016-04-07\t\tLikely Voters\t864\t3.3\tAutomated Phone\tNonpartisan\tNone\n37.0\t53.0\t2.0\t8.0\tfox-news-24239\tFox News\t2016-04-04\t2016-04-07\t\tLikely Voters\t1403\t2.5\tLive Phone\tNonpartisan\tNone\n33.0\t53.0\t2.0\t11.0\tquinnipiac-24174\tQuinnipiac\t2016-03-22\t2016-03-29\t\tRegistered Voters\t1667\t2.4\tLive Phone\tNonpartisan\tNone\n36.0\t55.0\t\t10.0\temerson-college-polling-society-24106\tEmerson College Polling Society\t2016-03-14\t2016-03-16\t\tLikely Voters\t768\t3.5\tAutomated Phone\tNonpartisan\tNone\n34.0\t57.0\t\t10.0\tsiena-23997\tSiena\t2016-02-28\t2016-03-03\t\tRegistered Voters\t800\t4.1\tLive Phone\tNonpartisan\tNone\n32.0\t57.0\t\t11.0\tsiena-23712\tSiena\t2016-01-31\t2016-02-03\t\tRegistered Voters\t930\t3.8\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/OH.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n45.0\t42.0\t7.0\t3.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t2860\t\tInternet\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t345\t\tInternet\tNonpartisan\tNone\n45.0\t42.0\t8.0\t2.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t2530\t\tInternet\tNonpartisan\tNone\n46.0\t47.0\t\t\t7.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t775\t\tInternet\tNonpartisan\tNone\n47.0\t48.0\t3.0\t2.0\t\tcolumbus-dispatch-26756\tColumbus Dispatch\t2016-10-27\t2016-11-05\t\tLikely Voters\t1151\t2.9\tMail\tNonpartisan\tNone\n46.0\t45.0\t3.0\t4.0\t2.0\tcbs-yougov-26754\tCBS/YouGov\t2016-11-02\t2016-11-04\t\tLikely Voters\t1189\t4.1\tInternet\tNonpartisan\tNone\n46.0\t42.0\t8.0\t2.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t2393\t\tInternet\tNonpartisan\tNone\n43.0\t40.0\t8.0\t7.0\t2.0\ttargetsmart-william-mary-26773\tTargetSmart/William & Mary\t2016-10-31\t2016-11-03\t\tLikely Voters\t1194\t\tLive Phone/Online\tNonpartisan\tNone\n46.0\t41.0\t8.0\t2.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t2004\t\tInternet\tNonpartisan\tNone\n45.0\t47.0\t\t\t8.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t787\t\tInternet\tNonpartisan\tNone\n45.0\t44.0\t4.0\t3.0\t3.0\tremington-research-group-r-axiom-strategies-26766\tRemington Research Group (R)/Axiom Strategies\t2016-11-01\t2016-11-02\t\tLikely Voters\t2557\t1.94\tIVR/Live Phone\tSponsor\tRep\n46.0\t41.0\t8.0\t2.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1728\t\tInternet\tNonpartisan\tNone\n46.0\t41.0\t5.0\t3.0\t5.0\tquinnipiac-26629\tQuinnipiac\t2016-10-27\t2016-11-01\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t589\t4.0\tLive Phone\tNonpartisan\tNone\n47.0\t44.0\t\t2.0\t7.0\tquinnipiac-26629\tQuinnipiac\t2016-10-27\t2016-11-01\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t589\t4.0\tLive Phone\tNonpartisan\tNone\n45.0\t42.0\t8.0\t2.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1586\t\tInternet\tNonpartisan\tNone\n45.0\t40.0\t9.0\t2.0\t4.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1823\t\tInternet\tNonpartisan\tNone\n48.0\t43.0\t3.0\t1.0\t5.0\tremington-research-group-r-axiom-strategies-26561\tRemington Research Group (R)/Axiom Strategies\t2016-10-30\t2016-10-30\t\tLikely Voters\t1187\t2.84\tIVR/Live Phone\tSponsor\tRep\n44.0\t41.0\t9.0\t3.0\t4.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t1585\t\tInternet\tNonpartisan\tNone\n47.0\t50.0\t\t3.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t339\t\tInternet\tNonpartisan\tNone\n45.0\t40.0\t9.0\t3.0\t4.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1980\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t\t\t10.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t649\t\tInternet\tNonpartisan\tNone\n45.0\t40.0\t9.0\t2.0\t4.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t2173\t\tInternet\tNonpartisan\tNone\n45.0\t40.0\t8.0\t3.0\t4.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1951\t\tInternet\tNonpartisan\tNone\n46.0\t40.0\t8.0\t2.0\t3.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1627\t\tInternet\tNonpartisan\tNone\n47.0\t50.0\t\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t349\t\tInternet\tNonpartisan\tNone\n46.0\t42.0\t4.0\t2.0\t6.0\tremington-research-group-r-axiom-strategies-26423\tRemington Research Group (R)/Axiom Strategies\t2016-10-20\t2016-10-22\t\tLikely Voters\t1971\t2.2\tIVR/Live Phone\tSponsor\tRep\n43.0\t43.0\t\t\t14.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t2687\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t2.0\t2.0\t6.0\tsuffolk-26318\tSuffolk\t2016-10-17\t2016-10-19\tYour Ohio ballot contains five candidates for President: Democrat Hillary Clinton, nonparty Richard Duncan, Gary Johnson, Green Party Jill Stein, Republican Donald Trump. If the general election was held today for whom will you vote or lean toward?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n45.0\t45.0\t6.0\t2.0\t2.0\tquinnipiac-26216\tQuinnipiac\t2016-10-10\t2016-10-16\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t624\t3.9\tLive Phone\tNonpartisan\tNone\n48.0\t47.0\t\t1.0\t4.0\tquinnipiac-26216\tQuinnipiac\t2016-10-10\t2016-10-16\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t624\t3.9\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26323\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t344\t\tInternet\tNonpartisan\tNone\n48.0\t46.0\t\t\t6.0\twashpost-surveymonkey-26245\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1307\t\tInternet\tNonpartisan\tNone\n44.0\t41.0\t9.0\t4.0\t2.0\twashpost-surveymonkey-26245\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1307\t\tInternet\tNonpartisan\tNone\n48.0\t44.0\t4.0\t3.0\t0.0\tcnn-26204\tCNN\t2016-10-10\t2016-10-15\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and MikePence as the  Republican Party’s candidates, Gary Johnson and Bill Weld as Independent candidates, and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t774\t3.5\tLive Phone\tNonpartisan\tNone\n50.0\t47.0\t\t4.0\t0.0\tcnn-26204\tCNN\t2016-10-10\t2016-10-15\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump as the Republican Party’s candidate, who would you be more likely to vote for?\tLikely Voters\t774\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t42.0\t\t\t15.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t2192\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t\t8.0\t3.0\tnbc-wsj-marist-26168\tNBC/WSJ/Marist\t2016-10-10\t2016-10-12\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t724\t3.6\tLive Phone\tNonpartisan\tNone\n42.0\t41.0\t9.0\t5.0\t3.0\tnbc-wsj-marist-26168\tNBC/WSJ/Marist\t2016-10-10\t2016-10-12\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t724\t3.6\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t\t8.0\t7.0\tipsos-reuters-26658\tIpsos/Reuters\t2016-10-06\t2016-10-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1200\t3.2\tInternet\tNonpartisan\tNone\n39.0\t43.0\t8.0\t4.0\t6.0\tipsos-reuters-26658\tIpsos/Reuters\t2016-10-06\t2016-10-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1200\t3.2\tInternet\tNonpartisan\tNone\n38.0\t48.0\t\t\t14.0\tbaldwin-wallace-university-26139\tBaldwin Wallace University\t2016-10-09\t2016-10-11\t\tLikely Voters\t1152\t3.0\tInternet\tNonpartisan\tNone\n34.0\t43.0\t10.0\t3.0\t10.0\tbaldwin-wallace-university-26139\tBaldwin Wallace University\t2016-10-09\t2016-10-11\t\tLikely Voters\t1152\t3.0\tInternet\tNonpartisan\tNone\n39.0\t44.0\t7.0\t2.0\t9.0\tlucid-the-times-picayune-26376\tLucid/The Times-Picayune\t2016-10-07\t2016-10-10\t\tLikely Voters\t1304\t\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26060\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t341\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t5.0\t4.0\t3.0\tcbs-yougov-26014\tCBS/YouGov\t2016-10-05\t2016-10-07\t\tLikely Voters\t997\t3.9\tInternet\tNonpartisan\tNone\n43.0\t44.0\t5.0\t2.0\t6.0\tppp-d-25989\tPPP (D)\t2016-10-05\t2016-10-06\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t782\t3.5\tIVR/Online\tPollster\tDem\n47.0\t48.0\t\t\t4.0\tppp-d-25989\tPPP (D)\t2016-10-05\t2016-10-06\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t782\t3.5\tIVR/Online\tPollster\tDem\n40.0\t43.0\t8.0\t3.0\t5.0\ttargetsmart-william-mary-26010\tTargetSmart/William & Mary\t2016-10-03\t2016-10-06\t\tLikely Voters\t812\t\tLive Phone/Online\tNonpartisan\tNone\n43.0\t46.0\t\t\t11.0\ttargetsmart-william-mary-26010\tTargetSmart/William & Mary\t2016-10-03\t2016-10-06\t\tLikely Voters\t812\t\tLive Phone/Online\tNonpartisan\tNone\n43.0\t46.0\t\t\t11.0\tipsos-reuters-26126\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t822\t\tInternet\tNonpartisan\tNone\n42.0\t44.0\t5.0\t2.0\t6.0\tmonmouth-university-25969\tMonmouth University\t2016-10-01\t2016-10-04\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the independent Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t405\t4.9\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t8.0\t1.0\t6.0\tanzalone-d-ohio-education-association-25985\tAnzalone (D-Ohio Education Association)\t2016-09-27\t2016-10-02\tIf the election for President were held today and the candidates were-- Hillary Clinton, a Democrat, Donald Trump, a Republican, Gary Johnson of the Libertarian Party, or Jill Stein of the Green Party, for whom would you vote?\tLikely Voters\t800\t3.46\tLive Phone\tSponsor\tDem\n44.0\t46.0\t\t5.0\t5.0\tanzalone-d-ohio-education-association-25985\tAnzalone (D-Ohio Education Association)\t2016-09-27\t2016-10-02\t\tLikely Voters\t800\t3.46\tLive Phone\tSponsor\tDem\n47.0\t42.0\t6.0\t1.0\t4.0\tquinnipiac-25843\tQuinnipiac\t2016-09-27\t2016-10-02\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t497\t4.4\tLive Phone\tNonpartisan\tNone\n49.0\t46.0\t\t1.0\t4.0\tquinnipiac-25843\tQuinnipiac\t2016-09-27\t2016-10-02\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t497\t4.4\tLive Phone\tNonpartisan\tNone\n49.0\t48.0\t\t4.0\t\tupi-cvoter-25932\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t548\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t\t\t13.0\tipsos-reuters-25879\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t769\t\tInternet\tNonpartisan\tNone\n49.0\t48.0\t\t4.0\t\tupi-cvoter-25767\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t554\t\tInternet\tNonpartisan\tNone\n37.0\t40.0\t8.0\t4.0\t2.0\ttargetsmart-william-mary-25739\tTargetSmart/William & Mary\t2016-09-15\t2016-09-22\tIn the election for President this November, if the election were held today and the candidates were: Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein -- for whom would you vote?\tLikely Voters\t652\t\tLive Phone/Online\tNonpartisan\tNone\n40.0\t43.0\t\t\t16.0\ttargetsmart-william-mary-25739\tTargetSmart/William & Mary\t2016-09-15\t2016-09-22\tAnd, if the election were held today and the candidates were: Democrat Hillary Clinton and Republican Donald Trump -- for whom would you vote?\tLikely Voters\t652\t\tLive Phone/Online\tNonpartisan\tNone\n43.0\t46.0\t\t\t11.0\tipsos-reuters-25708\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t550\t\tInternet\tNonpartisan\tNone\n42.0\t37.0\t6.0\t4.0\t11.0\tfox-news-25609\tFox News\t2016-09-18\t2016-09-20\t\tLikely Voters\t737\t3.5\tLive Phone\tNonpartisan\tNone\n45.0\t40.0\t\t1.0\t13.0\tfox-news-25609\tFox News\t2016-09-18\t2016-09-20\t\tLikely Voters\t737\t3.5\tLive Phone\tNonpartisan\tNone\n41.0\t39.0\t11.0\t4.0\t4.0\tgqr-d-democracy-corps-wvwv-25639\tGQR (D-Democracy Corps/WVWV)\t2016-09-10\t2016-09-19\tI know it's a long way off, but thinking about the election for President in November, if the election for President were held today, would you vote for -- Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson or Green Party Candidate Jill Stein?\tLikely Voters\t400\t4.9\tLive Phone\tSponsor\tDem\n44.0\t47.0\t\t\t9.0\tipsos-reuters-25565\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t625\t\tInternet\tNonpartisan\tNone\n42.0\t39.0\t4.0\t2.0\t13.0\tsuffolk-25502\tSuffolk\t2016-09-12\t2016-09-14\tThe Ohio ballot contains five candidates for President Democrat Hillary Clinton, nonparty Richard Duncan, Gary Johnson, Green Party Jill Stein, Republican Donald Trump. If the general election was held today for whom will you vote or lean toward?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n48.0\t43.0\t\t6.0\t3.0\tbloomberg-selzer-25477\tBloomberg/Selzer\t2016-09-09\t2016-09-12\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t802\t3.5\tLive Phone\tNonpartisan\tNone\n44.0\t39.0\t10.0\t3.0\t5.0\tbloomberg-selzer-25477\tBloomberg/Selzer\t2016-09-09\t2016-09-12\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats, Donald Trump for the Republicans, Gary Johnson for the Libertarian Party, and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t802\t3.5\tLive Phone\tNonpartisan\tNone\n46.0\t41.0\t8.0\t4.0\t1.0\tcnn-25494\tCNN\t2016-09-07\t2016-09-12\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the independent candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tLikely Voters\t769\t3.5\tLive Phone\tNonpartisan\tNone\n50.0\t46.0\t\t3.0\t0.0\tcnn-25494\tCNN\t2016-09-07\t2016-09-12\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t769\t3.5\tLive Phone\tNonpartisan\tNone\n39.0\t46.0\t7.0\t4.0\t4.0\tcbs-yougov-25449\tCBS/YouGov\t2016-09-07\t2016-09-09\t\tLikely Voters\t994\t3.9\tInternet\tNonpartisan\tNone\n46.0\t45.0\t\t3.0\t6.0\tquinnipiac-25427\tQuinnipiac\t2016-08-29\t2016-09-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote? As of today, do you lean more toward Clinton or Trump?\tLikely Voters\t775\t3.5\tLive Phone\tNonpartisan\tNone\n41.0\t37.0\t14.0\t4.0\t5.0\tquinnipiac-25427\tQuinnipiac\t2016-08-29\t2016-09-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t775\t3.5\tLive Phone\tNonpartisan\tNone\n46.0\t43.0\t\t\t11.0\twashpost-surveymonkey-25354\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2543\t\tInternet\tNonpartisan\tNone\n40.0\t37.0\t13.0\t4.0\t7.0\twashpost-surveymonkey-25354\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2543\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t\t12.0\tppp-d-nelp-25315\tPPP (D-NELP) \t2016-08-26\t2016-08-27\tThe candidates for President are Democrat Hillary Clinton and Republican Donald Trump. If the election was today, who would you vote for?\tLikely Voters\t1134\t2.9\tIVR/Online\tSponsor\tDem\n39.0\t43.0\t10.0\t0.0\t8.0\tmonmouth-university-25232\tMonmouth University\t2016-08-18\t2016-08-21\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the independent Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t402\t4.9\tLive Phone\tNonpartisan\tNone\n40.0\t46.0\t6.0\t4.0\t4.0\tcbs-yougov-25219\tCBS/YouGov\t2016-08-17\t2016-08-19\t\tLikely Voters\t997\t3.9\tInternet\tNonpartisan\tNone\n38.0\t43.0\t\t10.0\t9.0\tnbc-wsj-marist-25105\tNBC/WSJ/Marist\t2016-08-03\t2016-08-07\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t889\t3.3\tLive Phone\tNonpartisan\tNone\n35.0\t39.0\t12.0\t5.0\t9.0\tnbc-wsj-marist-25105\tNBC/WSJ/Marist\t2016-08-03\t2016-08-07\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t889\t3.3\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t2.0\t4.0\tquinnipiac-25102\tQuinnipiac\t2016-07-30\t2016-08-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote? As of today, do you lean more toward Clinton or Trump?\tLikely Voters\t812\t3.4\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t8.0\t4.0\t3.0\tquinnipiac-25102\tQuinnipiac\t2016-07-30\t2016-08-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t812\t3.4\tLive Phone\tNonpartisan\tNone\n42.0\t39.0\t6.0\t2.0\t10.0\tppp-d-24961\tPPP (D)\t2016-07-22\t2016-07-24\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t1334\t2.7\tIVR/Online\tPollster\tDem\n45.0\t45.0\t\t\t10.0\tppp-d-24961\tPPP (D)\t2016-07-22\t2016-07-24\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t1334\t2.7\tIVR/Online\tPollster\tDem\n44.0\t44.0\t\t\t12.0\tsuffolk-24948\tSuffolk\t2016-07-18\t2016-07-20\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean towards?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t5.0\t1.0\t13.0\tsuffolk-24948\tSuffolk\t2016-07-18\t2016-07-20\tOhio’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t\t11.0\t5.0\tcbs-yougov-24910\tCBS/YouGov\t2016-07-13\t2016-07-15\t\tLikely Voters\t1104\t3.5\tInternet\tNonpartisan\tNone\n41.0\t41.0\t\t4.0\t14.0\tquinnipiac-24870\tQuinnipiac\t2016-06-30\t2016-07-11\t\tRegistered Voters\t955\t3.2\tLive Phone\tNonpartisan\tNone\n37.0\t36.0\t7.0\t7.0\t13.0\tquinnipiac-24870\tQuinnipiac\t2016-06-30\t2016-07-11\t\tRegistered Voters\t955\t3.2\tLive Phone\tNonpartisan\tNone\n39.0\t39.0\t\t11.0\t10.0\tnbc-wsj-marist-24876\tNBC/WSJ/Marist\t2016-07-05\t2016-07-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t848\t3.4\tLive Phone\tNonpartisan\tNone\n35.0\t38.0\t9.0\t6.0\t12.0\tnbc-wsj-marist-24876\tNBC/WSJ/Marist\t2016-07-05\t2016-07-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t848\t3.4\tLive Phone\tNonpartisan\tNone\n47.0\t46.0\t\t7.0\t\tgravis-marketing-oann-24940\tGravis Marketing/OANN\t2016-06-27\t2016-06-28\tIf the election for President were held today, for whom would you vote?\tRegistered Voters\t1270\t2.8\tAutomated Phone\tNonpartisan\tNone\n38.0\t41.0\t\t9.0\t11.0\traba-research-24973\tRABA Research\t2016-06-22\t2016-06-28\tThe candidates for president are Republican Donald Trump and Democrat Hillary Clinton. If the election were held today, for whom would you vote?\tLikely Voters\t599\t4.0\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t\t\t16.0\tppp-d-americans-united-for-change-constitutional-responsibility-project-24788\tPPP (D-Americans United for Change/Constitutional Responsibility Project) \t2016-06-22\t2016-06-23\t\tLikely Voters\t708\t3.7\tIVR/Online\tSponsor\tDem\n48.0\t47.0\t\t3.0\t2.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24847\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n41.0\t41.0\t14.0\t1.0\t4.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24847\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n40.0\t40.0\t\t6.0\t14.0\tquinnipiac-24721\tQuinnipiac\t2016-06-08\t2016-06-19\t\tRegistered Voters\t971\t3.1\tLive Phone\tNonpartisan\tNone\n36.0\t38.0\t8.0\t5.0\t13.0\tquinnipiac-24721\tQuinnipiac\t2016-06-08\t2016-06-19\t\tRegistered Voters\t971\t3.1\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t\t\t16.0\tzogby-internet-24556\tZogby (Internet)\t2016-05-18\t2016-05-22\t\tLikely Voters\t679\t3.8\tInternet\tNonpartisan\tNone\n33.0\t38.0\t\t9.0\t20.0\tzogby-internet-24556\tZogby (Internet)\t2016-05-18\t2016-05-22\t\tLikely Voters\t679\t3.8\tInternet\tNonpartisan\tNone\n39.0\t44.0\t\t\t17.0\tcbs-yougov-24530\tCBS/YouGov\t2016-05-16\t2016-05-19\t\tLikely Voters\t992\t3.7\tInternet\tNonpartisan\tNone\n43.0\t39.0\t\t3.0\t14.0\tquinnipiac-24464\tQuinnipiac\t2016-04-27\t2016-05-08\t\tRegistered Voters\t1042\t3.0\tLive Phone\tNonpartisan\tNone\n42.0\t45.0\t\t\t14.0\tppp-d-24417\tPPP (D)\t2016-04-26\t2016-04-27\t\tRegistered Voters\t799\t3.2\tIVR/Online\tPollster\tDem\n42.0\t48.0\t\t\t10.0\tnbc-wsj-marist-24059\tNBC/WSJ/Marist\t2016-03-04\t2016-03-10\t\tRegistered Voters\t2052\t2.2\tLive Phone\tNonpartisan\tNone\n40.0\t45.0\t\t\t15.0\tppp-d-24043\tPPP (D)\t2016-03-04\t2016-03-06\t\tLikely Voters\t1248\t2.8\tAutomated Phone\tPollster\tDem\n43.0\t50.0\t\t6.0\t0.0\tcnn-24022\tCNN\t2016-03-02\t2016-03-06\t\tRegistered Voters\t884\t3.5\tLive Phone\tNonpartisan\tNone\n44.0\t42.0\t\t2.0\t12.0\tquinnipiac-23851\tQuinnipiac\t2016-02-16\t2016-02-20\t\tRegistered Voters\t1539\t2.5\tLive Phone\tNonpartisan\tNone\n39.0\t37.0\t\t20.0\t4.0\tbaldwin-wallace-university-23879\tBaldwin Wallace University\t2016-02-11\t2016-02-20\t\tLikely Voters\t825\t3.4\tInternet\tNonpartisan\tNone\n42.0\t43.0\t\t3.0\t12.0\tquinnipiac-22861\tQuinnipiac\t2015-09-25\t2015-10-05\t\tRegistered Voters\t1180\t2.9\tLive Phone\tNonpartisan\tNone\n38.0\t43.0\t\t4.0\t16.0\tquinnipiac-22583\tQuinnipiac\t2015-08-07\t2015-08-18\t\tRegistered Voters\t1096\t3.0\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/OK.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n57.0\t32.0\t10.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1271\t\tInternet\tNonpartisan\tNone\n63.0\t34.0\t4.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t323\t\tInternet\tNonpartisan\tNone\n56.0\t32.0\t10.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1116\t\tInternet\tNonpartisan\tNone\n61.0\t30.0\t\t9.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t664\t\tInternet\tNonpartisan\tNone\n57.0\t31.0\t10.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1050\t\tInternet\tNonpartisan\tNone\n56.0\t32.0\t10.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t905\t\tInternet\tNonpartisan\tNone\n60.0\t30.0\t\t10.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t652\t\tInternet\tNonpartisan\tNone\n56.0\t32.0\t10.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t737\t\tInternet\tNonpartisan\tNone\n55.0\t32.0\t11.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t519\t\tInternet\tNonpartisan\tNone\n54.0\t31.0\t12.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t472\t\tInternet\tNonpartisan\tNone\n57.0\t30.0\t11.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t430\t\tInternet\tNonpartisan\tNone\n63.0\t33.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t321\t\tInternet\tNonpartisan\tNone\n57.0\t30.0\t10.0\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t528\t\tInternet\tNonpartisan\tNone\n52.0\t36.0\t\t12.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t842\t\tInternet\tNonpartisan\tNone\n55.0\t31.0\t11.0\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t573\t\tInternet\tNonpartisan\tNone\n56.0\t32.0\t10.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t493\t\tInternet\tNonpartisan\tNone\n57.0\t32.0\t8.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t423\t\tInternet\tNonpartisan\tNone\n63.0\t34.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t318\t\tInternet\tNonpartisan\tNone\n60.0\t30.0\t5.0\t6.0\tsoonerpoll-com-26382\tSoonerPoll.com\t2016-10-18\t2016-10-20\tIf you were standing in the voting booth right now and had to make a choice for president, for whom would you vote?\tLikely Voters\t530\t4.26\tLive Phone/Online\tNonpartisan\tNone\n51.0\t36.0\t\t13.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t589\t\tInternet\tNonpartisan\tNone\n63.0\t34.0\t4.0\t\tupi-cvoter-26324\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t317\t\tInternet\tNonpartisan\tNone\n51.0\t36.0\t\t13.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t647\t\tInternet\tNonpartisan\tNone\n62.0\t34.0\t5.0\t\tupi-cvoter-26061\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t319\t\tInternet\tNonpartisan\tNone\n53.0\t33.0\t\t14.0\tipsos-reuters-26127\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t638\t\tInternet\tNonpartisan\tNone\n65.0\t32.0\t4.0\t\tupi-cvoter-25933\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t508\t\tInternet\tNonpartisan\tNone\n54.0\t31.0\t\t15.0\tipsos-reuters-25880\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t590\t\tInternet\tNonpartisan\tNone\n64.0\t32.0\t4.0\t\tupi-cvoter-25768\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t506\t\tInternet\tNonpartisan\tNone\n55.0\t30.0\t\t15.0\tipsos-reuters-25706\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t547\t\tInternet\tNonpartisan\tNone\n51.0\t36.0\t6.0\t8.0\tsoonerpoll-com-25520\tSoonerPoll.com\t2016-09-13\t2016-09-15\tIf you were standing in the voting booth right now and had to make a choice for president, for whom would you vote?\tLikely Voters\t515\t4.32\tLive Phone/Online\tNonpartisan\tNone\n53.0\t32.0\t\t15.0\tipsos-reuters-25566\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t498\t\tInternet\tNonpartisan\tNone\n57.0\t33.0\t\t10.0\twashpost-surveymonkey-25385\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1041\t\tInternet\tNonpartisan\tNone\n49.0\t26.0\t20.0\t4.0\twashpost-surveymonkey-25385\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1041\t\tInternet\tNonpartisan\tNone\n53.0\t29.0\t7.0\t11.0\tsoonerpoll-com-25038\tSoonerPoll.com\t2016-07-20\t2016-07-25\tIf you were standing in the voting booth right now and had to make a choice for president, for whom would you vote?\tLikely Voters\t398\t4.91\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/OR.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n35.0\t50.0\t7.0\t5.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1595\t\tInternet\tNonpartisan\tNone\n43.0\t51.0\t\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t319\t\tInternet\tNonpartisan\tNone\n35.0\t51.0\t7.0\t5.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1483\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t\t\t16.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t636\t\tInternet\tNonpartisan\tNone\n35.0\t51.0\t7.0\t4.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1415\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t7.0\t4.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1150\t\tInternet\tNonpartisan\tNone\n38.0\t47.0\t\t\t15.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t626\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t7.0\t3.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t934\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t7.0\t3.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t809\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t7.0\t4.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t743\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t7.0\t4.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t614\t\tInternet\tNonpartisan\tNone\n34.0\t41.0\t4.0\t10.0\t11.0\tdhm-research-fox-12-26634\tDHM Research/Fox 12\t2016-10-25\t2016-10-29\t\tLikely Voters\t504\t4.4\tLive Phone\tNonpartisan\tNone\n43.0\t50.0\t\t6.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t313\t\tInternet\tNonpartisan\tNone\n35.0\t50.0\t8.0\t4.0\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t658\t\tInternet\tNonpartisan\tNone\n38.0\t46.0\t\t\t16.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t621\t\tInternet\tNonpartisan\tNone\n33.0\t52.0\t9.0\t4.0\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t660\t\tInternet\tNonpartisan\tNone\n32.0\t51.0\t9.0\t5.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t576\t\tInternet\tNonpartisan\tNone\n32.0\t50.0\t10.0\t5.0\t3.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t470\t\tInternet\tNonpartisan\tNone\n43.0\t51.0\t\t6.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t314\t\tInternet\tNonpartisan\tNone\n37.0\t46.0\t\t\t17.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t824\t\tInternet\tNonpartisan\tNone\n43.0\t51.0\t\t7.0\t\tupi-cvoter-26325\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t324\t\tInternet\tNonpartisan\tNone\n36.0\t46.0\t5.0\t9.0\t4.0\triley-research-kgw-the-oregonian-26273\tRiley Research/KGW/The Oregonian\t2016-10-04\t2016-10-14\t\tLikely Voters\t608\t3.97\tLive Phone\tNonpartisan\tNone\n36.0\t43.0\t7.0\t8.0\t7.0\tdhm-research-oregon-public-broadcasting-26258\tDHM Research/Oregon Public Broadcasting\t2016-10-06\t2016-10-13\t\tLikely Voters\t600\t4.0\tLive Phone\tNonpartisan\tNone\n37.0\t47.0\t\t\t16.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t616\t\tInternet\tNonpartisan\tNone\n38.0\t48.0\t6.0\t4.0\t5.0\tsurveyusa-katu-tv-26170\tSurveyUSA/KATU-TV\t2016-10-10\t2016-10-12\t\tLikely Voters\t654\t3.9\tIVR/Online\tNonpartisan\tNone\n43.0\t51.0\t\t7.0\t\tupi-cvoter-26062\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t320\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t\t\t13.0\tipsos-reuters-26128\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t626\t\tInternet\tNonpartisan\tNone\n39.0\t47.0\t4.0\t2.0\t8.0\tgravis-marketing-breitbart-26009\tGravis Marketing/Breitbart\t2016-10-04\t2016-10-04\tIf the election was held today, who would be your choice for president?\tRegistered Voters\t1248\t2.8\tIVR/Online\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-25934\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t502\t\tInternet\tNonpartisan\tNone\n33.0\t45.0\t8.0\t3.0\t11.0\thoffman-research-r-25954\tHoffman Research (R)\t2016-09-29\t2016-10-01\t\tLikely Voters\t605\t4.0\tLive Phone\tPollster\tRep\n38.0\t48.0\t\t\t14.0\tipsos-reuters-25881\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t583\t\tInternet\tNonpartisan\tNone\n44.0\t51.0\t\t6.0\t\tupi-cvoter-25769\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t508\t\tInternet\tNonpartisan\tNone\n41.0\t44.0\t\t\t15.0\tipsos-reuters-25703\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t505\t\tInternet\tNonpartisan\tNone\n41.0\t44.0\t\t\t15.0\tipsos-reuters-25567\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t687\t\tInternet\tNonpartisan\tNone\n28.0\t43.0\t11.0\t10.0\t8.0\ticitizen-25469\tICITIZEN\t2016-09-02\t2016-09-07\tIf the November 2016 general election for U.S. President were held today and these were the candidates, for whom would you vote... Hillary Clinton, the Democratic candidate, Donald Trump, the Republican candidate, Gary Johnson, the Libertarian candidate, or Jill Stein, the Green Candidate?\tRegistered Voters\t610\t4.0\tInternet\tNonpartisan\tNone\n25.0\t38.0\t10.0\t11.0\t17.0\tdhm-25426\tDHM\t2016-09-01\t2016-09-06\tIf the 2016 presidential election were held today, and the candidates were Hillary Clinton, the Democrat; Donald Trump, the Republican; Gary Johnson, the Libertarian; and Jill Stein of the Green Party, who would you vote for?\tRegistered Voters\t517\t4.3\tLive Phone\tNonpartisan\tNone\n36.0\t55.0\t\t\t9.0\twashpost-surveymonkey-25386\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t877\t\tInternet\tNonpartisan\tNone\n32.0\t47.0\t11.0\t7.0\t3.0\twashpost-surveymonkey-25386\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t877\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t6.0\t3.0\t8.0\tclout-research-r-24981\tClout Research (R)\t2016-07-09\t2016-07-13\tIf you were voting today in the election for President of the United States, and the candidates were Democrat Hillary Clinton and Republican Donald Trump, Libertarian Gary Johnson, and Pacific Green Party candidate Jill Stein for whom would you vote?\tLikely Voters\t701\t3.7\tLive Phone\tPollster\tRep\n32.0\t46.0\t\t\t22.0\ticitizen-24858\tICITIZEN\t2016-06-23\t2016-06-27\t\tRegistered Voters\t555\t\tInternet\tNonpartisan\tNone\n44.0\t42.0\t\t\t13.0\tclout-research-r-24571\tClout Research (R)\t2016-05-10\t2016-05-13\t\tLikely Voters\t657\t3.82\tLive Phone\tPollster\tRep\n32.0\t43.0\t\t11.0\t15.0\tdhm-research-oregon-public-broadcasting-fox-12-24481\tDHM Research/Oregon Public Broadcasting/Fox 12\t2016-05-06\t2016-05-09\t\tLikely Voters\t901\t3.3\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/PA.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n43.0\t46.0\t6.0\t3.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t2845\t\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t390\t\tInternet\tNonpartisan\tNone\n42.0\t47.0\t6.0\t3.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t2685\t\tInternet\tNonpartisan\tNone\n45.0\t48.0\t\t\t7.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t955\t\tInternet\tNonpartisan\tNone\n43.0\t45.0\t4.0\t4.0\t4.0\tcbs-yougov-26802\tCBS/YouGov\t2016-11-03\t2016-11-05\t\tLikely Voters\t931\t4.3\tInternet\tNonpartisan\tNone\n42.0\t48.0\t\t7.0\t3.0\tmuhlenberg-morning-call-26745\tMuhlenberg/Morning Call\t2016-10-30\t2016-11-04\tNow, if the 2016 Presidential Election was being held today and the race was between Hillary Clinton and Donald Trump, who would you vote for?\tLikely Voters\t405\t5.5\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t7.0\t5.0\t5.0\tmuhlenberg-morning-call-26745\tMuhlenberg/Morning Call\t2016-10-30\t2016-11-04\tNow, if the 2016 Presidential Election was being held today and the race was between Hillary Clinton, Donald Trump, Gary Johnson, and Jill Stein, who would you vote for?\tLikely Voters\t405\t5.5\tLive Phone\tNonpartisan\tNone\n43.0\t46.0\t6.0\t3.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t2691\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t6.0\t2.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t2454\t\tInternet\tNonpartisan\tNone\n44.0\t48.0\t\t\t8.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t984\t\tInternet\tNonpartisan\tNone\n45.0\t46.0\t4.0\t2.0\t3.0\tremington-research-group-r-axiom-strategies-26764\tRemington Research Group (R)/Axiom Strategies\t2016-11-01\t2016-11-02\t\tLikely Voters\t2683\t1.89\tIVR/Live Phone\tSponsor\tRep\n45.0\t47.0\t2.0\t4.0\t3.0\tgravis-marketing-breitbart-26736\tGravis Marketing/Breitbart\t2016-11-01\t2016-11-02\tIf the election was held today, who would be your choice for president?\tRegistered Voters\t1016\t3.1\tIVR/Online\tNonpartisan\tNone\n42.0\t47.0\t6.0\t2.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t2177\t\tInternet\tNonpartisan\tNone\n44.0\t48.0\t\t\t8.0\tppp-d-center-for-american-progress-action-fund-26701\tPPP (D-Center for American Progress Action Fund)\t2016-10-31\t2016-11-01\tThe candidates for President this fall are Democrat Hillary Clinton, and Republican Donald Trump. If the election was today, who would you vote for?\tLikely Voters\t1050\t3.0\tIVR/Online\tSponsor\tDem\n43.0\t45.0\t2.0\t3.0\t6.0\tsusquehanna-r-abc27-news-26623\tSusquehanna (R)/ABC27 News\t2016-10-31\t2016-11-01\tIf the election for President were held today, would you vote for Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein or Constitutional Party candidate Darrell Castle?\tLikely Voters\t681\t3.76\tIVR/Live Phone\tPollster\tRep\n44.0\t48.0\t3.0\t2.0\t3.0\tmonmouth-university-26625\tMonmouth University\t2016-10-29\t2016-11-01\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t403\t4.9\tLive Phone\tNonpartisan\tNone\n43.0\t48.0\t3.0\t3.0\t2.0\tquinnipiac-26630\tQuinnipiac\t2016-10-27\t2016-11-01\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t612\t4.0\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t1.0\t4.0\tquinnipiac-26630\tQuinnipiac\t2016-10-27\t2016-11-01\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t612\t4.0\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t4.0\t2.0\t1.0\tcnn-26624\tCNN\t2016-10-27\t2016-11-01\tSuppose that the presidential election were being held today and you had to choose between  Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates, and Jill Stein and Ajamu Baraka as the Green Party’s candidates.  Who would you be more likely to vote for?\tLikely Voters\t799\t3.5\tLive Phone\tNonpartisan\tNone\n46.0\t51.0\t\t3.0\t0.0\tcnn-26624\tCNN\t2016-10-27\t2016-11-01\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump and as the Republican Party’s candidate, who would you be more likely to vote for?\tLikely Voters\t799\t3.5\tLive Phone\tNonpartisan\tNone\n42.0\t48.0\t6.0\t2.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t2078\t\tInternet\tNonpartisan\tNone\n41.0\t49.0\t6.0\t2.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t2255\t\tInternet\tNonpartisan\tNone\n43.0\t45.0\t3.0\t1.0\t6.0\tremington-research-group-r-axiom-strategies-26564\tRemington Research Group (R)/Axiom Strategies\t2016-10-30\t2016-10-30\t\tLikely Voters\t1249\t2.77\tIVR/Live Phone\tSponsor\tRep\n38.0\t49.0\t4.0\t2.0\t7.0\tfranklin-and-marshall-college-26588\tFranklin and Marshall College\t2016-10-26\t2016-10-30\t\tLikely Voters\t652\t5.1\tLive Phone/Online\tNonpartisan\tNone\n41.0\t49.0\t6.0\t2.0\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t2108\t\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t366\t\tInternet\tNonpartisan\tNone\n40.0\t48.0\t5.0\t5.0\t2.0\tcbs-yougov-26547\tCBS/YouGov\t2016-10-26\t2016-10-28\t\tLikely Voters\t1091\t3.7\tInternet\tNonpartisan\tNone\n42.0\t47.0\t6.0\t3.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t2512\t\tInternet\tNonpartisan\tNone\n46.0\t48.0\t\t\t6.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t705\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t\t9.0\t3.0\tmuhlenberg-morning-call-26539\tMuhlenberg/Morning Call\t2016-10-20\t2016-10-26\tNow, if the 2016 Presidential Election was being held today and the race was between Hillary Clinton and Donald Trump, who would you vote for?\tLikely Voters\t420\t5.5\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t8.0\t6.0\t3.0\tmuhlenberg-morning-call-26539\tMuhlenberg/Morning Call\t2016-10-20\t2016-10-26\tNow, if the 2016 Presidential Election was being held today and the race was between Hillary Clinton, Donald Trump, Gary Johnson, and Jill Stein, who would you vote for?\tLikely Voters\t420\t5.5\tLive Phone\tNonpartisan\tNone\n42.0\t48.0\t6.0\t2.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t2506\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t6.0\t4.0\t6.0\tnyt-upshot-siena-26489\tNYT Upshot/Siena\t2016-10-23\t2016-10-25\t\tLikely Voters\t824\t3.4\tLive Phone\tNonpartisan\tNone\n42.0\t49.0\t\t1.0\t9.0\tnyt-upshot-siena-26489\tNYT Upshot/Siena\t2016-10-23\t2016-10-25\t\tLikely Voters\t824\t3.4\tLive Phone\tNonpartisan\tNone\n42.0\t48.0\t6.0\t3.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t2131\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t6.0\t3.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1709\t\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t371\t\tInternet\tNonpartisan\tNone\n42.0\t45.0\t5.0\t1.0\t7.0\tremington-research-group-r-axiom-strategies-26424\tRemington Research Group (R)/Axiom Strategies\t2016-10-20\t2016-10-22\t\tLikely Voters\t1997\t4.19\tIVR/Live Phone\tSponsor\tRep\n39.0\t49.0\t\t\t12.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t1022\t\tInternet\tNonpartisan\tNone\n39.0\t45.0\t\t7.0\t9.0\tipsos-reuters-26659\tIpsos/Reuters\t2016-10-06\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1467\t2.9\tInternet\tNonpartisan\tNone\n38.0\t45.0\t6.0\t3.0\t8.0\tipsos-reuters-26659\tIpsos/Reuters\t2016-10-06\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1467\t2.9\tInternet\tNonpartisan\tNone\n41.0\t47.0\t6.0\t2.0\t4.0\tquinnipiac-26217\tQuinnipiac\t2016-10-10\t2016-10-16\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t660\t3.8\tLive Phone\tNonpartisan\tNone\n45.0\t51.0\t\t1.0\t4.0\tquinnipiac-26217\tQuinnipiac\t2016-10-10\t2016-10-16\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t660\t3.8\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26326\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t380\t\tInternet\tNonpartisan\tNone\n42.0\t51.0\t\t\t7.0\twashpost-surveymonkey-26248\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1449\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t8.0\t3.0\t3.0\twashpost-surveymonkey-26248\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1449\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t\t12.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t2271\t\tInternet\tNonpartisan\tNone\n42.0\t51.0\t\t3.0\t4.0\tbloomberg-selzer-26152\tBloomberg/Selzer\t2016-10-07\t2016-10-11\t\tLikely Voters\t806\t3.5\tLive Phone\tNonpartisan\tNone\n39.0\t48.0\t6.0\t4.0\t3.0\tbloomberg-selzer-26152\tBloomberg/Selzer\t2016-10-07\t2016-10-11\t\tLikely Voters\t806\t3.5\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t7.0\t2.0\t7.0\tlucid-the-times-picayune-26226\tLucid/The Times-Picayune\t2016-10-07\t2016-10-10\t\tLikely Voters\t1457\t\tInternet\tNonpartisan\tNone\n40.0\t44.0\t4.0\t3.0\t8.0\tsusquehanna-r-abc27-news-26085\tSusquehanna (R)/ABC27 News\t2016-10-04\t2016-10-09\tIf the election for President were held today, would you vote for Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein or Constitutional Party candidate Darrell Castle?\tLikely Voters\t764\t3.5\tIVR/Live Phone\tPollster\tRep\n47.0\t49.0\t\t5.0\t\tupi-cvoter-26063\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t369\t\tInternet\tNonpartisan\tNone\n40.0\t48.0\t4.0\t3.0\t4.0\tcbs-yougov-26015\tCBS/YouGov\t2016-10-05\t2016-10-07\t\tLikely Voters\t997\t4.2\tInternet\tNonpartisan\tNone\n39.0\t51.0\t\t7.0\t3.0\tnbc-wsj-marist-26012\tNBC/WSJ/Marist\t2016-10-03\t2016-10-06\t\tLikely Voters\t709\t3.7\tLive Phone\tNonpartisan\tNone\n37.0\t49.0\t6.0\t5.0\t3.0\tnbc-wsj-marist-26012\tNBC/WSJ/Marist\t2016-10-03\t2016-10-06\t\tLikely Voters\t709\t3.7\tLive Phone\tNonpartisan\tNone\n43.0\t49.0\t\t\t8.0\tipsos-reuters-26129\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t890\t\tInternet\tNonpartisan\tNone\n40.0\t50.0\t5.0\t3.0\t2.0\tmonmouth-university-25951\tMonmouth University\t2016-09-30\t2016-10-03\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t402\t4.9\tLive Phone\tNonpartisan\tNone\n36.0\t48.0\t\t9.0\t7.0\tfranklin-and-marshall-college-25896\tFranklin and Marshall College\t2016-09-28\t2016-10-02\tIf the November general election for president was being held today and the candidates were Donald Trump, the Republican, Hillary Clinton, the Democrat, would you vote for Donald Trump, Hillary Clinton, some other candidate, or aren't you sure how you would vote?\tRegistered Voters\t813\t4.8\tLive Phone/Online\tNonpartisan\tNone\n38.0\t47.0\t5.0\t0.0\t9.0\tfranklin-and-marshall-college-25896\tFranklin and Marshall College\t2016-09-28\t2016-10-02\tIf the November general election for president was being held today and the candidates were Donald Trump, the Republican, Hillary Clinton, the Democrat, Jill Stein, the Green, and Gary Johnson, the Libertarian, would you vote for …, or aren't you sure how you would vote?\tLikely Voters\t496\t6.1\tLive Phone/Online\tNonpartisan\tNone\n41.0\t45.0\t5.0\t3.0\t6.0\tquinnipiac-25845\tQuinnipiac\t2016-09-27\t2016-10-02\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t535\t4.2\tLive Phone\tNonpartisan\tNone\n43.0\t48.0\t\t1.0\t8.0\tquinnipiac-25845\tQuinnipiac\t2016-09-27\t2016-10-02\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t535\t4.2\tLive Phone\tNonpartisan\tNone\n50.0\t46.0\t\t4.0\t\tupi-cvoter-25935\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t649\t\tInternet\tNonpartisan\tNone\n42.0\t45.0\t\t\t13.0\tipsos-reuters-25882\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t938\t\tInternet\tNonpartisan\tNone\n39.0\t45.0\t6.0\t2.0\t8.0\tppp-d-vote-vets-action-fund-25798\tPPP (D-Vote Vets Action Fund)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t886\t3.3\tIVR/Online\tPollster\tDem\n44.0\t49.0\t\t\t6.0\tppp-d-vote-vets-action-fund-25798\tPPP (D-Vote Vets Action Fund)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t886\t3.3\tIVR/Online\tPollster\tDem\n44.0\t45.0\t6.0\t3.0\t1.0\tcnn-25652\tCNN\t2016-09-20\t2016-09-25\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates, and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t771\t3.5\tLive Phone\tNonpartisan\tNone\n47.0\t50.0\t\t3.0\t0.0\tcnn-25652\tCNN\t2016-09-20\t2016-09-25\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t771\t3.5\tLive Phone\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-25770\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t605\t\tInternet\tNonpartisan\tNone\n41.0\t44.0\t\t11.0\t4.0\tmuhlenberg-morning-call-25642\tMuhlenberg/Morning Call\t2016-09-19\t2016-09-23\tQ6: Now, if the 2016 Presidential Election was being held today and the race was between Hillary Clinton and Donald Trump, who would you vote for?\tLikely Voters\t486\t5.0\tLive Phone\tNonpartisan\tNone\n38.0\t40.0\t8.0\t7.0\t6.0\tmuhlenberg-morning-call-25642\tMuhlenberg/Morning Call\t2016-09-19\t2016-09-23\tQ8: Now, if the 2016 Presidential Election was being held today and the race was between Hillary Clinton, Donald Trump, Gary Johnson, and Jill Stein, who would you vote for?\tLikely Voters\t486\t5.0\tLive Phone\tNonpartisan\tNone\n41.0\t42.0\t4.0\t3.0\t11.0\tmercyhurst-university-25723\tMercyhurst University\t2016-09-12\t2016-09-23\tIf the presidential election was held today, which candidate would you vote for? Would you vote for the Democrat Hillary Clinton, the Republican Donald Trump, the Libertarian Gary Johnson, the Green Party candidate Jill Stein, some other candidate, or are you unsure?\tRegistered Voters\t420\t4.8\tLive Phone\tNonpartisan\tNone\n46.0\t46.0\t\t\t8.0\tipsos-reuters-25702\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t709\t\tInternet\tNonpartisan\tNone\n38.0\t46.0\t8.0\t3.0\t4.0\tgqr-d-democracy-corps-wvwv-25640\tGQR (D-Democracy Corps/WVWV)\t2016-09-10\t2016-09-19\tI know it's a long way off, but thinking about the election for President in November, if the election for President were held today, would you vote for -- Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson or Green Party Candidate Jill Stein?\tLikely Voters\t400\t4.9\tLive Phone\tSponsor\tDem\n38.0\t47.0\t\t11.0\t4.0\tmuhlenberg-morning-call-25518\tMuhlenberg/Morning Call\t2016-09-12\t2016-09-16\t\tLikely Voters\t405\t5.5\tLive Phone\tNonpartisan\tNone\n32.0\t40.0\t14.0\t8.0\t7.0\tmuhlenberg-morning-call-25518\tMuhlenberg/Morning Call\t2016-09-12\t2016-09-16\t\tLikely Voters\t405\t5.5\tLive Phone\tNonpartisan\tNone\n44.0\t46.0\t\t\t10.0\tipsos-reuters-25568\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t776\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t\t3.0\t5.0\tquinnipiac-25429\tQuinnipiac\t2016-08-29\t2016-09-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t778\t3.5\tLive Phone\tNonpartisan\tNone\n39.0\t44.0\t9.0\t4.0\t4.0\tquinnipiac-25429\tQuinnipiac\t2016-08-29\t2016-09-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t778\t3.5\tLive Phone\tNonpartisan\tNone\n37.0\t45.0\t6.0\t5.0\t6.0\tcbs-yougov-25337\tCBS/YouGov\t2016-08-30\t2016-09-02\t\tLikely Voters\t1091\t4.1\tInternet\tNonpartisan\tNone\n43.0\t47.0\t\t\t10.0\twashpost-surveymonkey-25387\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2861\t\tInternet\tNonpartisan\tNone\n38.0\t41.0\t12.0\t4.0\t5.0\twashpost-surveymonkey-25387\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2861\t\tInternet\tNonpartisan\tNone\n42.0\t47.0\t\t\t11.0\tppp-d-constitutional-responsibility-project-25414\tPPP (D- Constitutional Responsibility Project)\t2016-08-30\t2016-08-31\tThe candidates for President this fall are Democrat Hillary Clinton and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t814\t3.4\tIVR/Online\tSponsor\tDem\n40.0\t48.0\t6.0\t2.0\t4.0\tmonmouth-university-25294\tMonmouth University\t2016-08-26\t2016-08-29\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t402\t4.9\tLive Phone\tNonpartisan\tNone\n40.0\t47.0\t\t6.0\t7.0\tfranklin-and-marshall-college-25308\tFranklin and Marshall College\t2016-08-25\t2016-08-29\tIf the November general election for president was being held today and the candidates were Donald Trump, the Republican, Hillary Clinton, the Democrat, would you vote for Donald Trump, Hillary Clinton, some other candidate, or aren't you sure how you would vote?\tLikely Voters\t496\t5.6\tLive Phone/Online\tNonpartisan\tNone\n38.0\t41.0\t7.0\t2.0\t13.0\tfranklin-and-marshall-college-25308\tFranklin and Marshall College\t2016-08-25\t2016-08-29\tIf the November general election for president was being held today and the candidates were Donald Trump, the Republican, Hillary Clinton, the Democrat, Jill Stein, the Green, and Gary Johnson, the Libertarian, would you vote for …, or aren't you sure how you would vote?\tRegistered Voters\t736\t4.6\tLive Phone/Online\tNonpartisan\tNone\n43.0\t48.0\t\t\t9.0\tppp-d-nelp-25313\tPPP (D-NELP)\t2016-08-26\t2016-08-27\tThe candidates for President this fall are Democrat Hillary Clinton and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t1194\t2.8\tIVR/Online\tSponsor\tDem\n37.0\t48.0\t\t9.0\t6.0\tnbc-wsj-marist-25106\tNBC/WSJ/Marist\t2016-08-03\t2016-08-07\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t834\t3.4\tLive Phone\tNonpartisan\tNone\n36.0\t45.0\t9.0\t4.0\t6.0\tnbc-wsj-marist-25106\tNBC/WSJ/Marist\t2016-08-03\t2016-08-07\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t834\t3.4\tLive Phone\tNonpartisan\tNone\n42.0\t52.0\t\t1.0\t5.0\tquinnipiac-25103\tQuinnipiac\t2016-07-30\t2016-08-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t815\t3.4\tLive Phone\tNonpartisan\tNone\n39.0\t48.0\t7.0\t3.0\t3.0\tquinnipiac-25103\tQuinnipiac\t2016-07-30\t2016-08-07\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t815\t3.4\tLive Phone\tNonpartisan\tNone\n37.0\t47.0\t\t8.0\t8.0\tsusquehanna-r-abc27-news-25093\tSusquehanna (R)/ABC27 News\t2016-07-31\t2016-08-04\tIf the election for President were held today would you vote for Hillary Clinton, the Democratic candidate or Donald Trump, the Republican candidate?\tLikely Voters\t772\t3.53\tIVR/Live Phone\tPollster\tRep\n37.0\t46.0\t7.0\t3.0\t7.0\tsusquehanna-r-abc27-news-25093\tSusquehanna (R)/ABC27 News\t2016-07-31\t2016-08-04\tIf the election for President were held today would you vote for Hillary Clinton, the Democratic candidate, Donald Trump, the Republican candidate, Jill Stein, the Green Party candidate, or Gary Johnson, the Libertarian Party candidate?\tLikely Voters\t772\t3.53\tIVR/Live Phone\tPollster\tRep\n38.0\t49.0\t\t6.0\t8.0\tfranklin-and-marshall-college-25058\tFranklin and Marshall College\t2016-07-29\t2016-08-01\tIf the November general election for president was being held today and the candidates were Donald Trump, the Republican, Hillary Clinton, the Democrat, would you vote for Donald Trump, Hillary Clinton, some other candidate, or aren't you sure how you would vote?\tLikely Voters\t389\t6.3\tLive Phone/Online\tNonpartisan\tNone\n34.0\t47.0\t7.0\t3.0\t10.0\tfranklin-and-marshall-college-25058\tFranklin and Marshall College\t2016-07-29\t2016-08-01\tIf the November general election for president was being held today and the candidates were Donald Trump, the Republican, Hillary Clinton, the Democrat, Jill Stein, the Green, and Gary Johnson, the Libertarian, would you vote for …, or aren't you sure how you would vote?\tRegistered Voters\t661\t4.8\tLive Phone/Online\tNonpartisan\tNone\n42.0\t45.0\t4.0\t2.0\t8.0\tppp-d-25034\tPPP (D)\t2016-07-29\t2016-07-31\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t1505\t2.5\tIVR/Online\tPollster\tDem\n45.0\t49.0\t\t\t5.0\tppp-d-25034\tPPP (D)\t2016-07-29\t2016-07-31\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t1505\t2.5\tIVR/Online\tPollster\tDem\n41.0\t50.0\t\t\t9.0\tsuffolk-24983\tSuffolk\t2016-07-25\t2016-07-27\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean towards?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n37.0\t46.0\t5.0\t3.0\t10.0\tsuffolk-24983\tSuffolk\t2016-07-25\t2016-07-27\tPennsylvania’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t\t4.0\t13.0\tquinnipiac-24871\tQuinnipiac\t2016-06-30\t2016-07-11\t\tRegistered Voters\t982\t3.1\tLive Phone\tNonpartisan\tNone\n40.0\t34.0\t9.0\t6.0\t11.0\tquinnipiac-24871\tQuinnipiac\t2016-06-30\t2016-07-11\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tRegistered Voters\t982\t3.1\tLive Phone\tNonpartisan\tNone\n36.0\t45.0\t\t13.0\t6.0\tnbc-wsj-marist-24878\tNBC/WSJ/Marist\t2016-07-05\t2016-07-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t829\t3.4\tLive Phone\tNonpartisan\tNone\n35.0\t43.0\t8.0\t4.0\t9.0\tnbc-wsj-marist-24878\tNBC/WSJ/Marist\t2016-07-05\t2016-07-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t829\t3.4\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tgravis-marketing-oann-24941\tGravis Marketing/OANN\t2016-06-27\t2016-06-28\tIf the election for President were held today, for whom would you vote?\tRegistered Voters\t1958\t2.2\tAutomated Phone\tNonpartisan\tNone\n42.0\t46.0\t\t\t11.0\tppp-d-americans-united-for-change-constitutional-responsibility-project-24789\tPPP (D-Americans United for Change/Constitutional Responsibility Project) \t2016-06-22\t2016-06-23\t\tLikely Voters\t980\t3.1\tIVR/Online\tSponsor\tDem\n39.0\t49.0\t\t8.0\t5.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24848\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n32.0\t45.0\t16.0\t3.0\t5.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24848\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n41.0\t42.0\t\t3.0\t14.0\tquinnipiac-24722\tQuinnipiac\t2016-06-08\t2016-06-19\t\tRegistered Voters\t950\t3.2\tLive Phone\tNonpartisan\tNone\n36.0\t39.0\t9.0\t5.0\t11.0\tquinnipiac-24722\tQuinnipiac\t2016-06-08\t2016-06-19\t\tRegistered Voters\t950\t3.2\tLive Phone\tNonpartisan\tNone\n40.0\t41.0\t6.0\t3.0\t11.0\tppp-d-24641\tPPP (D)\t2016-06-03\t2016-06-05\t\tLikely Voters\t1106\t3.0\tIVR/Online\tPollster\tDem\n42.0\t43.0\t\t2.0\t12.0\tquinnipiac-24465\tQuinnipiac\t2016-04-27\t2016-05-08\t\tRegistered Voters\t1077\t3.0\tLive Phone\tNonpartisan\tNone\n39.0\t54.0\t\t\t7.0\tnbc-wsj-marist-24335\tNBC/WSJ/Marist\t2016-04-18\t2016-04-20\t\tRegistered Voters\t2606\t1.9\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t\t2.0\t9.0\tfox-news-24240\tFox News\t2016-04-04\t2016-04-07\t\tLikely Voters\t1607\t2.5\tLive Phone\tNonpartisan\tNone\n42.0\t45.0\t\t3.0\t10.0\tquinnipiac-24216\tQuinnipiac\t2016-03-30\t2016-04-04\t\tLikely Voters\t1737\t2.4\tLive Phone\tNonpartisan\tNone\n33.0\t46.0\t\t11.0\t10.0\tfranklin-and-marshall-college-24143\tFranklin and Marshall College\t2016-03-14\t2016-03-20\t\tRegistered Voters\t828\t3.3\tLive Phone/Online\tNonpartisan\tNone\n35.0\t43.0\t\t4.0\t19.0\tmercyhurst-university-24092\tMercyhurst University\t2016-03-01\t2016-03-11\t\tRegistered Voters\t421\t4.8\tLive Phone\tNonpartisan\tNone\n40.0\t45.0\t\t\t15.0\tharper-r-24028\tHarper (R)\t2016-03-01\t2016-03-02\t\tLikely Voters\t662\t3.75\tAutomated Phone\tPollster\tRep\n45.0\t43.0\t\t\t13.0\tppp-d-22927\tPPP (D)\t2015-10-08\t2015-10-11\t\tLikely Voters\t1012\t\tIVR/Online\tPollster\tDem\n42.0\t44.0\t\t3.0\t10.0\tquinnipiac-22862\tQuinnipiac\t2015-09-25\t2015-10-05\t\tRegistered Voters\t1049\t3.0\tLive Phone\tNonpartisan\tNone\n40.0\t45.0\t\t4.0\t12.0\tquinnipiac-22584\tQuinnipiac\t2015-08-07\t2015-08-18\t\tRegistered Voters\t1085\t3.0\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/RI.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n36.0\t48.0\t12.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t415\t\tInternet\tNonpartisan\tNone\n37.0\t59.0\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t310\t\tInternet\tNonpartisan\tNone\n36.0\t49.0\t12.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t396\t\tInternet\tNonpartisan\tNone\n36.0\t49.0\t13.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t411\t\tInternet\tNonpartisan\tNone\n38.0\t49.0\t10.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t392\t\tInternet\tNonpartisan\tNone\n38.0\t48.0\t12.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t391\t\tInternet\tNonpartisan\tNone\n36.0\t49.0\t14.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t408\t\tInternet\tNonpartisan\tNone\n36.0\t49.0\t14.0\t1.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t419\t\tInternet\tNonpartisan\tNone\n36.0\t49.0\t14.0\t1.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t412\t\tInternet\tNonpartisan\tNone\n40.0\t57.0\t3.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t308\t\tInternet\tNonpartisan\tNone\n37.0\t48.0\t13.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t518\t\tInternet\tNonpartisan\tNone\n37.0\t49.0\t11.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t540\t\tInternet\tNonpartisan\tNone\n37.0\t49.0\t12.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t488\t\tInternet\tNonpartisan\tNone\n37.0\t48.0\t12.0\t3.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t422\t\tInternet\tNonpartisan\tNone\n39.0\t58.0\t3.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t305\t\tInternet\tNonpartisan\tNone\n39.0\t58.0\t3.0\t\tupi-cvoter-26327\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t\t\tInternet\tNonpartisan\tNone\n39.0\t58.0\t4.0\t\tupi-cvoter-26064\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t303\t\tInternet\tNonpartisan\tNone\n40.0\t57.0\t3.0\t\tupi-cvoter-25936\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t457\t\tInternet\tNonpartisan\tNone\n40.0\t56.0\t4.0\t\tupi-cvoter-25771\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t455\t\tInternet\tNonpartisan\tNone\n40.0\t50.0\t\t11.0\twashpost-surveymonkey-25388\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t625\t\tInternet\tNonpartisan\tNone\n33.0\t41.0\t22.0\t4.0\twashpost-surveymonkey-25388\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t625\t\tInternet\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/SC.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n47.0\t43.0\t8.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1698\t\tInternet\tNonpartisan\tNone\n53.0\t42.0\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t338\t\tInternet\tNonpartisan\tNone\n46.0\t44.0\t8.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1642\t\tInternet\tNonpartisan\tNone\n49.0\t44.0\t\t7.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t617\t\tInternet\tNonpartisan\tNone\n46.0\t43.0\t7.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1683\t\tInternet\tNonpartisan\tNone\n47.0\t43.0\t7.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1583\t\tInternet\tNonpartisan\tNone\n49.0\t44.0\t\t7.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t613\t\tInternet\tNonpartisan\tNone\n47.0\t43.0\t7.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1501\t\tInternet\tNonpartisan\tNone\n45.0\t44.0\t8.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1588\t\tInternet\tNonpartisan\tNone\n45.0\t43.0\t8.0\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1762\t\tInternet\tNonpartisan\tNone\n46.0\t42.0\t9.0\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t1764\t\tInternet\tNonpartisan\tNone\n54.0\t42.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t325\t\tInternet\tNonpartisan\tNone\n46.0\t43.0\t9.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t2115\t\tInternet\tNonpartisan\tNone\n49.0\t44.0\t\t7.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t604\t\tInternet\tNonpartisan\tNone\n45.0\t43.0\t9.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t2223\t\tInternet\tNonpartisan\tNone\n45.0\t43.0\t9.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1900\t\tInternet\tNonpartisan\tNone\n46.0\t43.0\t8.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1582\t\tInternet\tNonpartisan\tNone\n53.0\t42.0\t5.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t326\t\tInternet\tNonpartisan\tNone\n51.0\t44.0\t\t5.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t671\t\tInternet\tNonpartisan\tNone\n53.0\t42.0\t5.0\t\tupi-cvoter-26328\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t323\t\tInternet\tNonpartisan\tNone\n49.0\t46.0\t\t5.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t751\t\tInternet\tNonpartisan\tNone\n53.0\t42.0\t5.0\t\tupi-cvoter-26065\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t333\t\tInternet\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\tipsos-reuters-26130\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t528\t\tInternet\tNonpartisan\tNone\n55.0\t41.0\t5.0\t\tupi-cvoter-25937\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t574\t\tInternet\tNonpartisan\tNone\n49.0\t44.0\t\t7.0\tipsos-reuters-25883\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t519\t\tInternet\tNonpartisan\tNone\n42.0\t38.0\t9.0\t11.0\twinthrop-university-25802\tWinthrop University\t2016-09-18\t2016-09-26\t\tLikely Voters\t475\t4.5\tLive Phone\tNonpartisan\tNone\n54.0\t41.0\t5.0\t\tupi-cvoter-25772\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t571\t\tInternet\tNonpartisan\tNone\n50.0\t43.0\t\t7.0\tipsos-reuters-25700\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t716\t\tInternet\tNonpartisan\tNone\n51.0\t43.0\t\t6.0\tipsos-reuters-25569\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t703\t\tInternet\tNonpartisan\tNone\n48.0\t35.0\t7.0\t11.0\tstarboard-communications-r-scgop-25476\tStarboard Communications (R- SCGOP)\t2016-09-07\t2016-09-09\tIf the election for U.S. President was held today, and you had to make a choice, for whom would you vote if the candidates were Donald Trump, the Republican; Hillary Clinton, the Democrat; or Gary Johnson the Libertarian?\tLikely Voters\t600\t4.8\tLive Phone\tPollster\tRep\n49.0\t42.0\t\t8.0\twashpost-surveymonkey-25389\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t894\t\tInternet\tNonpartisan\tNone\n45.0\t38.0\t13.0\t4.0\twashpost-surveymonkey-25389\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t894\t\tInternet\tNonpartisan\tNone\n39.0\t39.0\t6.0\t16.0\tfeldman-d-south-carolina-democratic-party-25249\tFeldman (D-South Carolina Democratic Party)\t2016-08-18\t2016-08-21\tIn the general election for President, the candidates are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election were held today, for whom would you vote?\tLikely Voters\t600\t4.0\tLive Phone\tSponsor\tDem\n45.0\t43.0\t\t12.0\tfeldman-d-south-carolina-democratic-party-25249\tFeldman (D-South Carolina Democratic Party)\t2016-08-18\t2016-08-21\tSuppose there were only two candidates Democrat Hillary Clinton and Republican Donald Trump. If the election were held today, toward which candidate would you lean?\tLikely Voters\t600\t4.0\tLive Phone\tSponsor\tDem\n46.0\t42.0\t\t12.0\tgravis-marketing-25222\tGravis Marketing\t2016-08-15\t2016-08-17\tIf you had to vote today in a matchup between Hillary Clinton and Donald Trump, who would you vote for?\tRegistered Voters\t768\t3.5\tIVR/Online\tNonpartisan\tNone\n41.0\t37.0\t10.0\t11.0\tgravis-marketing-25222\tGravis Marketing\t2016-08-15\t2016-08-17\tIf you had to vote today in a matchup between Hillary Clinton, Donald Trump, Gary Johnson and Jill Stein, who would you vote for?\tRegistered Voters\t768\t3.5\tIVR/Online\tNonpartisan\tNone\n41.0\t39.0\t7.0\t13.0\tppp-d-25127\tPPP (D)\t2016-08-09\t2016-08-10\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t1290\t2.7\tIVR/Online\tPollster\tDem\n44.0\t41.0\t\t15.0\tmorning-consult-campaign-for-sustainable-rx-pricing-23186\tMorning Consult/Campaign for Sustainable Rx Pricing \t2015-11-10\t2015-11-16\t\tRegistered Voters\t627\t4.0\tLive Phone/Online\tNonpartisan\tNone\n47.0\t42.0\t\t11.0\tppp-d-23160\tPPP (D)\t2015-11-07\t2015-11-08\t\tLikely Voters\t1290\t2.7\tIVR/Online\tPollster\tDem"
  },
  {
    "path": "week-6/data/SD.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n53.0\t32.0\t11.0\t4.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t459\t\tInternet\tNonpartisan\tNone\n55.0\t40.0\t5.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t312\t\tInternet\tNonpartisan\tNone\n53.0\t31.0\t12.0\t4.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t435\t\tInternet\tNonpartisan\tNone\n53.0\t30.0\t13.0\t4.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t433\t\tInternet\tNonpartisan\tNone\n52.0\t31.0\t15.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t393\t\tInternet\tNonpartisan\tNone\n53.0\t29.0\t14.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t345\t\tInternet\tNonpartisan\tNone\n52.0\t27.0\t18.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t281\t\tInternet\tNonpartisan\tNone\n53.0\t27.0\t16.0\t4.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t298\t\tInternet\tNonpartisan\tNone\n55.0\t29.0\t12.0\t5.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t266\t\tInternet\tNonpartisan\tNone\n56.0\t40.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t311\t\tInternet\tNonpartisan\tNone\n53.0\t30.0\t11.0\t6.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t382\t\tInternet\tNonpartisan\tNone\n53.0\t32.0\t11.0\t5.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t418\t\tInternet\tNonpartisan\tNone\n52.0\t32.0\t11.0\t5.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t377\t\tInternet\tNonpartisan\tNone\n52.0\t30.0\t13.0\t5.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t331\t\tInternet\tNonpartisan\tNone\n55.0\t41.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t312\t\tInternet\tNonpartisan\tNone\n44.0\t37.0\t7.0\t12.0\tmason-dixon-26434\tMason-Dixon\t2016-10-18\t2016-10-20\t\tLikely Voters\t400\t5.0\tLive Phone\tNonpartisan\tNone\n54.0\t42.0\t4.0\t\tupi-cvoter-26329\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t311\t\tInternet\tNonpartisan\tNone\n54.0\t42.0\t5.0\t\tupi-cvoter-26067\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t317\t\tInternet\tNonpartisan\tNone\n56.0\t40.0\t4.0\t\tupi-cvoter-25938\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t463\t\tInternet\tNonpartisan\tNone\n55.0\t41.0\t5.0\t\tupi-cvoter-25773\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t459\t\tInternet\tNonpartisan\tNone\n51.0\t37.0\t\t11.0\twashpost-surveymonkey-25390\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t809\t\tInternet\tNonpartisan\tNone\n43.0\t29.0\t22.0\t5.0\twashpost-surveymonkey-25390\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t809\t\tInternet\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/TN.tsv",
    "content": "Trump\tClinton\tUndecided\tOther\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n49.0\t41.0\t2.0\t8.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1433\t\tInternet\tNonpartisan\tNone\n55.0\t39.0\t\t6.0\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t339\t\tInternet\tNonpartisan\tNone\n49.0\t40.0\t2.0\t9.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1281\t\tInternet\tNonpartisan\tNone\n50.0\t36.0\t14.0\t\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t823\t\tInternet\tNonpartisan\tNone\n49.0\t41.0\t2.0\t8.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1223\t\tInternet\tNonpartisan\tNone\n49.0\t41.0\t2.0\t8.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1063\t\tInternet\tNonpartisan\tNone\n50.0\t35.0\t15.0\t\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t803\t\tInternet\tNonpartisan\tNone\n50.0\t41.0\t1.0\t8.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t905\t\tInternet\tNonpartisan\tNone\n51.0\t40.0\t1.0\t7.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t702\t\tInternet\tNonpartisan\tNone\n51.0\t38.0\t2.0\t8.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t550\t\tInternet\tNonpartisan\tNone\n51.0\t39.0\t2.0\t7.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t455\t\tInternet\tNonpartisan\tNone\n57.0\t38.0\t\t5.0\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t339\t\tInternet\tNonpartisan\tNone\n51.0\t38.0\t2.0\t9.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t565\t\tInternet\tNonpartisan\tNone\n43.0\t35.0\t22.0\t\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t596\t\tInternet\tNonpartisan\tNone\n50.0\t38.0\t4.0\t8.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t644\t\tInternet\tNonpartisan\tNone\n49.0\t38.0\t4.0\t9.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t572\t\tInternet\tNonpartisan\tNone\n48.0\t38.0\t4.0\t10.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t477\t\tInternet\tNonpartisan\tNone\n56.0\t39.0\t\t5.0\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t312\t\tInternet\tNonpartisan\tNone\n44.0\t35.0\t21.0\t\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t636\t\tInternet\tNonpartisan\tNone\n44.0\t34.0\t8.0\t14.0\ticitizen-26285\tICITIZEN\t2016-10-14\t2016-10-17\tIf the November 2016 general election for U.S. President were held today and these were the candidates, for whom would you vote?\tRegistered Voters\t508\t4.4\tInternet\tNonpartisan\tNone\n56.0\t39.0\t\t5.0\tupi-cvoter-26330\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t328\t\tInternet\tNonpartisan\tNone\n47.0\t35.0\t18.0\t\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t799\t\tInternet\tNonpartisan\tNone\n55.0\t39.0\t\t6.0\tupi-cvoter-26068\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t331\t\tInternet\tNonpartisan\tNone\n49.0\t34.0\t17.0\t\tipsos-reuters-26131\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t800\t\tInternet\tNonpartisan\tNone\n48.0\t36.0\t10.0\t7.0\tmtsu-25977\tMTSU\t2016-09-28\t2016-10-02\t\tLikely Voters\t472\t4.0\tLive Phone\tNonpartisan\tNone\n50.0\t40.0\t7.0\t3.0\tmtsu-25977\tMTSU\t2016-09-28\t2016-10-02\t\tLikely Voters\t472\t4.0\tLive Phone\tNonpartisan\tNone\n44.0\t33.0\t14.0\t9.0\tvanderbit-psra-25987\tVanderbit/PSRA\t2016-09-19\t2016-10-02\t\tRegistered Voters\t1000\t3.7\tLive Phone\tNonpartisan\tNone\n57.0\t38.0\t\t5.0\tupi-cvoter-25939\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t555\t\tInternet\tNonpartisan\tNone\n47.0\t35.0\t18.0\t\tipsos-reuters-25884\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t712\t\tInternet\tNonpartisan\tNone\n57.0\t38.0\t\t5.0\tupi-cvoter-25774\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t567\t\tInternet\tNonpartisan\tNone\n47.0\t33.0\t20.0\t\tipsos-reuters-25698\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t651\t\tInternet\tNonpartisan\tNone\n50.0\t26.0\t24.0\t\tipsos-reuters-25570\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t578\t\tInternet\tNonpartisan\tNone\n55.0\t37.0\t8.0\t\twashpost-surveymonkey-25391\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1021\t\tInternet\tNonpartisan\tNone\n51.0\t31.0\t5.0\t13.0\twashpost-surveymonkey-25391\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t1021\t\tInternet\tNonpartisan\tNone\n49.0\t33.0\t18.0\t\ticitizen-25047\tICITIZEN\t2016-07-25\t2016-07-27\tIf the November 2016 general election for U.S. President were held today and these were the candidates, for whom would you vote?\tRegistered Voters\t531\t\tInternet\tNonpartisan\tNone\n46.0\t29.0\t16.0\t10.0\ticitizen-25047\tICITIZEN\t2016-07-25\t2016-07-27\tAsking a different way, if the November 2016 general election for U.S. President were held today and these were the candidates, for whom would you vote?\tRegistered Voters\t531\t\tInternet\tNonpartisan\tNone\n44.0\t35.0\t18.0\t2.0\tvanderbit-psra-24520\tVanderbit/PSRA\t2016-04-25\t2016-05-11\t\tRegistered Voters\t1001\t4.2\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/TX.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n46.0\t43.0\t6.0\t2.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t3009\t\tInternet\tNonpartisan\tNone\n54.0\t40.0\t\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t472\t\tInternet\tNonpartisan\tNone\n47.0\t42.0\t6.0\t2.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t2695\t\tInternet\tNonpartisan\tNone\n49.0\t39.0\t\t\t12.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t1213\t\tInternet\tNonpartisan\tNone\n47.0\t42.0\t6.0\t5.0\t\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t2645\t\tInternet\tNonpartisan\tNone\n47.0\t42.0\t6.0\t5.0\t\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t2322\t\tInternet\tNonpartisan\tNone\n49.0\t40.0\t\t\t11.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t1297\t\tInternet\tNonpartisan\tNone\n46.0\t42.0\t6.0\t5.0\t\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t2048\t\tInternet\tNonpartisan\tNone\n49.0\t41.0\t\t8.0\t2.0\tnbc-wsj-marist-26684\tNBC/WSJ/Marist\t2016-10-30\t2016-11-01\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t679\t3.8\tLive Phone\tNonpartisan\tNone\n49.0\t40.0\t6.0\t4.0\t1.0\tnbc-wsj-marist-26684\tNBC/WSJ/Marist\t2016-10-30\t2016-11-01\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t679\t3.8\tLive Phone\tNonpartisan\tNone\n47.0\t41.0\t7.0\t4.0\t\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1969\t\tInternet\tNonpartisan\tNone\n47.0\t41.0\t8.0\t5.0\t\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t2051\t\tInternet\tNonpartisan\tNone\n46.0\t42.0\t7.0\t5.0\t\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t1940\t\tInternet\tNonpartisan\tNone\n52.0\t39.0\t3.0\t2.0\t4.0\tdixie-strategies-r-ktvt-cbs-11-26652\tDixie Strategies (R)/KTVT-CBS 11\t2016-10-27\t2016-10-29\tIf the Presidential election were held today, for whom would you vote?\tLikely Voters\t980\t3.13\tIVR/Live Phone\tPollster\tRep\n55.0\t41.0\t\t5.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t429\t\tInternet\tNonpartisan\tNone\n47.0\t40.0\t8.0\t6.0\t\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t2377\t\tInternet\tNonpartisan\tNone\n48.0\t34.0\t\t\t18.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t1251\t\tInternet\tNonpartisan\tNone\n47.0\t40.0\t8.0\t6.0\t\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t2441\t\tInternet\tNonpartisan\tNone\n45.0\t38.0\t7.0\t\t10.0\tpulse-crosswind-26524\tPulse/Crosswind\t2016-10-22\t2016-10-24\t\tLikely Voters\t800\t3.5\tIVR/Online\tNonpartisan\tNone\n47.0\t40.0\t8.0\t6.0\t\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t2148\t\tInternet\tNonpartisan\tNone\n47.0\t39.0\t8.0\t6.0\t\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1764\t\tInternet\tNonpartisan\tNone\n54.0\t41.0\t\t5.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t445\t\tInternet\tNonpartisan\tNone\n45.0\t42.0\t7.0\t7.0\t\tyougov-university-of-texas-texas-tribune-26496\tYouGov/University of Texas/Texas Tribune\t2016-10-14\t2016-10-23\tIf the 2016 general election for U.S. president were held today, would you vote for the Republican ticket of Donald Trump and Mike Pence, the Democratic ticket of Hillary Clinton and Tim Kaine, the Libertarian ticket of Gary Johnson and William Weld, the Green Party ticket of Jill Stein and Ajamu Baraka, someone else, or haven’t you thought enough about it to have an opinion?\tLikely Voters\t959\t3.16\tInternet\tNonpartisan\tNone\n46.0\t43.0\t5.0\t3.0\t3.0\tcbs-yougov-26381\tCBS/YouGov\t2016-10-20\t2016-10-21\t\tLikely Voters\t1031\t4.4\tInternet\tNonpartisan\tNone\n52.0\t39.0\t\t\t9.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t758\t\tInternet\tNonpartisan\tNone\n53.0\t41.0\t\t5.0\t\tupi-cvoter-26331\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t460\t\tInternet\tNonpartisan\tNone\n48.0\t46.0\t\t\t5.0\twashpost-surveymonkey-26250\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1332\t\tInternet\tNonpartisan\tNone\n44.0\t42.0\t8.0\t2.0\t3.0\twashpost-surveymonkey-26250\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1332\t\tInternet\tNonpartisan\tNone\n41.0\t38.0\t4.0\t4.0\t13.0\tuniversity-of-houston-26255\tUniversity of Houston\t2016-10-07\t2016-10-15\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n57.0\t32.0\t\t\t11.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t831\t\tInternet\tNonpartisan\tNone\n47.0\t43.0\t3.0\t1.0\t5.0\tsurveyusa-tegna-26172\tSurveyUSA/TEGNA\t2016-10-10\t2016-10-12\t\tLikely Voters\t638\t4.0\tIVR/Online\tSponsor\tOther\n53.0\t41.0\t\t6.0\t\tupi-cvoter-26069\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t425\t\tInternet\tNonpartisan\tNone\n50.0\t34.0\t\t\t16.0\tipsos-reuters-26132\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t1111\t\tInternet\tNonpartisan\tNone\n56.0\t39.0\t\t5.0\t\tupi-cvoter-25940\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t817\t\tInternet\tNonpartisan\tNone\n45.0\t38.0\t4.0\t3.0\t10.0\tdixie-strategies-r-ktvt-cbs-11-26653\tDixie Strategies (R)/KTVT-CBS 11\t2016-09-29\t2016-10-01\tIf the Presidential election were held today, for whom would you vote?\tLikely Voters\t780\t3.51\tIVR/Live Phone\tPollster\tRep\n48.0\t33.0\t\t\t19.0\tipsos-reuters-25885\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t916\t\tInternet\tNonpartisan\tNone\n56.0\t39.0\t\t5.0\t\tupi-cvoter-25775\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t798\t\tInternet\tNonpartisan\tNone\n48.0\t33.0\t\t\t19.0\tipsos-reuters-25695\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t875\t\tInternet\tNonpartisan\tNone\n51.0\t29.0\t\t\t20.0\tipsos-reuters-25571\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t869\t\tInternet\tNonpartisan\tNone\n42.0\t36.0\t\t\t21.0\ttexas-lyceum-25501\tTexas Lyceum\t2016-09-01\t2016-09-11\tIf the 2016 election for president were held today, would you vote for the Republican ticket of Donald Trump and Mike Pence, the Democratic ticket of Hillary Clinton and Tim Kaine, or haven’t you thought enough about it?\tLikely Voters\t502\t4.37\tLive Phone\tNonpartisan\tNone\n39.0\t32.0\t9.0\t3.0\t17.0\ttexas-lyceum-25501\tTexas Lyceum\t2016-09-01\t2016-09-11\tAnd what if the candidates were the Republican ticket of Donald Trump and Mike Pence, the Democratic ticket of Hillary Clinton and Tim Kaine, the Libertarian ticket of Gary Johnson and Bill Weld, the Green Party ticket of Jill Stein, or haven’t you thought enough about it?\tLikely Voters\t502\t4.37\tLive Phone\tNonpartisan\tNone\n45.0\t46.0\t\t\t9.0\twashington-post-surveymonkey-25352\tWashington Post/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t5147\t\tInternet\tNonpartisan\tNone\n40.0\t40.0\t11.0\t3.0\t6.0\twashington-post-surveymonkey-25352\tWashington Post/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t5147\t\tInternet\tNonpartisan\tNone\n44.0\t38.0\t6.0\t2.0\t10.0\tppp-d-25184\tPPP (D)\t2016-08-12\t2016-08-14\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t944\t3.2\tIVR/Online\tPollster\tDem\n50.0\t44.0\t\t\t6.0\tppp-d-25184\tPPP (D)\t2016-08-12\t2016-08-14\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t944\t3.2\tIVR/Online\tPollster\tDem\n46.0\t36.0\t\t9.0\t9.0\tdixie-strategies-r-ktvt-cbs-11-25185\tDixie Strategies (R)/KTVT-CBS 11\t2016-08-08\t2016-08-09\tIf the Presidential election were held today, for whom would you vote?\tLikely Voters\t1018\t3.1\tIVR/Live Phone\tPollster\tRep\n41.0\t33.0\t\t19.0\t8.0\tyougov-university-of-texas-texas-tribune-24775\tYouGov/University of Texas/Texas Tribune\t2016-06-10\t2016-06-19\t\tRegistered Voters\t1200\t2.83\tInternet\tNonpartisan\tNone\n39.0\t37.0\t\t\t25.0\ttexas-lyceum-22837\tTexas Lyceum\t2015-09-08\t2015-09-21\t\tLikely Voters\t633\t3.9\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/US.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n41.0\t45.0\t4.0\t2.0\t8.0\tinsights-west-26812\tInsights West\t2016-11-04\t2016-11-07\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t940\t3.2\tInternet\tNonpartisan\tNone\n6.0\t89.0\t1.0\t0.0\t4.0\tinsights-west-26812\tInsights West\t2016-11-04\t2016-11-07\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n82.0\t7.0\t3.0\t2.0\t6.0\tinsights-west-26812\tInsights West\t2016-11-04\t2016-11-07\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t8.0\t4.0\t7.0\tinsights-west-26812\tInsights West\t2016-11-04\t2016-11-07\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t7.0\t4.0\t5.0\tibd-tipp-26811\tIBD/TIPP\t2016-11-04\t2016-11-07\t\tLikely Voters\t1107\t3.1\tLive Phone\tNonpartisan\tNone\n42.0\t43.0\t\t5.0\t9.0\tibd-tipp-26811\tIBD/TIPP\t2016-11-04\t2016-11-07\t\tLikely Voters\t1107\t3.1\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t5.0\t5.0\t4.0\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters\t3669\t\tInternet\tNonpartisan\tNone\n6.0\t90.0\t1.0\t2.0\t2.0\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - Democrat\t1392\t\tInternet\tNonpartisan\tNone\n84.0\t4.0\t4.0\t4.0\t4.0\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - Republican\t1110\t\tInternet\tNonpartisan\tNone\n44.0\t31.0\t9.0\t9.0\t8.0\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - independent\t1167\t\tInternet\tNonpartisan\tNone\n45.0\t49.0\t\t7.0\t\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters\t3669\t\tInternet\tNonpartisan\tNone\n6.0\t91.0\t\t2.0\t\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - Democrat\t1392\t\tInternet\tNonpartisan\tNone\n88.0\t6.0\t\t5.0\t\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - Republican\t1110\t\tInternet\tNonpartisan\tNone\n49.0\t38.0\t\t13.0\t\tyougov-economist-26805\tYouGov/Economist\t2016-11-04\t2016-11-07\t\tLikely Voters - independent\t1167\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t5.0\t2.0\t7.0\tlucid-the-times-picayune-26788\tLucid/The Times-Picayune\t2016-11-04\t2016-11-06\t\tLikely Voters\t931\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t\t5.0\t6.0\tbloomberg-selzer-26771\tBloomberg/Selzer\t2016-11-04\t2016-11-06\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t799\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t86.0\t\t3.0\t5.0\tbloomberg-selzer-26771\tBloomberg/Selzer\t2016-11-04\t2016-11-06\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t5.0\t\t6.0\t4.0\tbloomberg-selzer-26771\tBloomberg/Selzer\t2016-11-04\t2016-11-06\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t38.0\t\t10.0\t8.0\tbloomberg-selzer-26771\tBloomberg/Selzer\t2016-11-04\t2016-11-06\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t4.0\t2.0\t8.0\tbloomberg-selzer-26771\tBloomberg/Selzer\t2016-11-04\t2016-11-06\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats, Donald Trump for the Republicans, Gary Johnson for the Libertarian Party, and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t799\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t47.0\t4.0\t4.0\t1.0\tabc-post-26799\tABC/Post\t2016-11-03\t2016-11-06\t\tLikely Voters\t2220\t2.5\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t3.0\t2.0\tabc-post-26799\tABC/Post\t2016-11-03\t2016-11-06\t\tLikely Voters\t2220\t2.5\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t4.0\t3.0\t1.0\tmonmouth-university-26790\tMonmouth University\t2016-11-03\t2016-11-06\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t748\t3.6\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t5.0\t1.0\tmonmouth-university-26790\tMonmouth University\t2016-11-03\t2016-11-06\t\tLikely Voters\t748\t3.6\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t3.0\t4.0\t1.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters\t1295\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t91.0\t2.0\t3.0\t0.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - Democrat\t\t4.0\tLive Phone\tNonpartisan\tNone\n86.0\t9.0\t2.0\t3.0\t1.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - Republican\t\t4.0\tLive Phone\tNonpartisan\tNone\n42.0\t36.0\t9.0\t9.0\t5.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t2.0\t7.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters\t1295\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t90.0\t\t1.0\t4.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - Democrat\t\t4.0\tLive Phone\tNonpartisan\tNone\n85.0\t8.0\t\t1.0\t6.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - Republican\t\t4.0\tLive Phone\tNonpartisan\tNone\n43.0\t37.0\t\t3.0\t18.0\tfox-26784\tFOX\t2016-11-03\t2016-11-06\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t6.0\t4.0\t5.0\tibd-tipp-26779\tIBD/TIPP\t2016-11-03\t2016-11-06\t\tLikely Voters\t1026\t3.1\tLive Phone\tNonpartisan\tNone\n42.0\t43.0\t\t5.0\t9.0\tibd-tipp-26779\tIBD/TIPP\t2016-11-03\t2016-11-06\t\tLikely Voters\t1026\t3.1\tLive Phone\tNonpartisan\tNone\n39.0\t44.0\t\t9.0\t8.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2195\t2.4\tInternet\tNonpartisan\tNone\n7.0\t84.0\t\t5.0\t5.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n81.0\t6.0\t\t7.0\t7.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t29.0\t\t28.0\t19.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t42.0\t6.0\t6.0\t7.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2195\t2.4\tInternet\tNonpartisan\tNone\n7.0\t81.0\t4.0\t3.0\t4.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n81.0\t6.0\t5.0\t3.0\t5.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t28.0\t15.0\t16.0\t17.0\tipsos-reuters-26810\tIpsos/Reuters\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n43.0\t45.0\t4.0\t5.0\t4.0\trasmussen-26781\tRasmussen\t2016-11-02\t2016-11-06\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n43.0\t47.0\t\t5.0\t5.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters\t1426\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t88.0\t\t1.0\t4.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t6.0\t\t5.0\t3.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t41.0\t\t8.0\t9.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t5.0\t4.0\t5.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters\t1426\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t85.0\t2.0\t3.0\t4.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t6.0\t4.0\t3.0\t2.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t38.0\t9.0\t7.0\t8.0\tcbs-times-26778\tCBS/Times\t2016-11-02\t2016-11-06\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-26785\tUPI/CVOTER\t2016-10-31\t2016-11-06\t\tLikely Voters\t1625\t\tInternet\tNonpartisan\tNone\n44.0\t51.0\t\t\t5.0\tnbc-surveymonkey-26770\tNBC/SurveyMonkey\t2016-10-31\t2016-11-06\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t70194\t1.0\tInternet\tNonpartisan\tNone\n41.0\t47.0\t6.0\t3.0\t2.0\tnbc-surveymonkey-26770\tNBC/SurveyMonkey\t2016-10-31\t2016-11-06\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t70194\t1.0\tInternet\tNonpartisan\tNone\n42.0\t45.0\t8.0\t4.0\t0.0\tpolitico-morning-consult-26751\tPolitico/Morning Consult\t2016-11-04\t2016-11-05\t\tLikely Voters\t1482\t3.0\tInternet\tNonpartisan\tNone\n8.0\t87.0\t3.0\t2.0\t0.0\tpolitico-morning-consult-26751\tPolitico/Morning Consult\t2016-11-04\t2016-11-05\t\tLikely Voters - Democrat\t571\t\tInternet\tNonpartisan\tNone\n85.0\t9.0\t5.0\t1.0\t0.0\tpolitico-morning-consult-26751\tPolitico/Morning Consult\t2016-11-04\t2016-11-05\t\tLikely Voters - Republican\t495\t\tInternet\tNonpartisan\tNone\n39.0\t32.0\t17.0\t10.0\t1.0\tpolitico-morning-consult-26751\tPolitico/Morning Consult\t2016-11-04\t2016-11-05\t\tLikely Voters - independent\t416\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t5.0\t2.0\t8.0\tlucid-the-times-picayune-26787\tLucid/The Times-Picayune\t2016-11-03\t2016-11-05\t\tLikely Voters\t825\t\tInternet\tNonpartisan\tNone\n40.0\t44.0\t6.0\t5.0\t5.0\tnbc-wsj-26753\tNBC/WSJ\t2016-11-03\t2016-11-05\tIf the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tLikely Voters\t1282\t2.73\tLive Phone\tNonpartisan\tNone\n43.0\t48.0\t\t3.0\t6.0\tnbc-wsj-26753\tNBC/WSJ\t2016-11-03\t2016-11-05\tAnd, if the election for president were held today, with only Donald Trump and Mike Pence as the Republican candidates, and Hillary Clinton and Tim Kaine as the Democratic candidates, for whom would you vote?\tLikely Voters\t1282\t2.73\tLive Phone\tNonpartisan\tNone\n43.0\t47.0\t4.0\t4.0\t2.0\tabc-post-26774\tABC/Post\t2016-11-02\t2016-11-05\t\tLikely Voters\t1937\t2.5\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t4.0\t2.0\tabc-post-26774\tABC/Post\t2016-11-02\t2016-11-05\t\tLikely Voters\t1937\t2.5\tLive Phone\tNonpartisan\tNone\n44.0\t43.0\t5.0\t4.0\t4.0\tibd-tipp-26750\tIBD/TIPP\t2016-11-02\t2016-11-05\t\tLikely Voters\t903\t3.3\tLive Phone\tNonpartisan\tNone\n44.0\t45.0\t\t4.0\t7.0\tibd-tipp-26750\tIBD/TIPP\t2016-11-02\t2016-11-05\t\tLikely Voters\t903\t3.3\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t4.0\t3.0\t1.0\tfranklin-pierce-rkm-boston-herald-26775\tFranklin Pierce/RKM/Boston Herald\t2016-11-01\t2016-11-05\t\tLikely Voters\t1009\t3.1\tLive Phone\tNonpartisan\tNone\n12.0\t82.0\t2.0\t4.0\t1.0\tfranklin-pierce-rkm-boston-herald-26775\tFranklin Pierce/RKM/Boston Herald\t2016-11-01\t2016-11-05\t\tLikely Voters - Democrat\t474\t\tLive Phone\tNonpartisan\tNone\n79.0\t14.0\t5.0\t1.0\t1.0\tfranklin-pierce-rkm-boston-herald-26775\tFranklin Pierce/RKM/Boston Herald\t2016-11-01\t2016-11-05\t\tLikely Voters - Republican\t418\t\tLive Phone\tNonpartisan\tNone\n54.0\t29.0\t11.0\t4.0\t3.0\tfranklin-pierce-rkm-boston-herald-26775\tFranklin Pierce/RKM/Boston Herald\t2016-11-01\t2016-11-05\t\tLikely Voters - independent\t106\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-26757\tUPI/CVOTER\t2016-10-30\t2016-11-05\t\tLikely Voters\t1572\t\tInternet\tNonpartisan\tNone\n39.0\t45.0\t5.0\t2.0\t8.0\tlucid-the-times-picayune-26786\tLucid/The Times-Picayune\t2016-11-02\t2016-11-04\t\tLikely Voters\t828\t\tInternet\tNonpartisan\tNone\n44.0\t48.0\t6.0\t2.0\t\tangus-reid-maru-matchbox-26804\tAngus Reid/MARU-Matchbox\t2016-11-01\t2016-11-04\tWhich one of the following candidates are you most likely to support on Election Day?\tLikely Voters\t1113\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t4.0\t4.0\t2.0\tabc-post-26747\tABC/Post\t2016-11-01\t2016-11-04\t\tLikely Voters\t1685\t2.5\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t\t4.0\t2.0\tabc-post-26747\tABC/Post\t2016-11-01\t2016-11-04\t\tLikely Voters\t1685\t2.5\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t5.0\t4.0\t4.0\tibd-tipp-26732\tIBD/TIPP\t2016-11-01\t2016-11-04\t\tLikely Voters\t804\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t46.0\t\t4.0\t7.0\tibd-tipp-26732\tIBD/TIPP\t2016-11-01\t2016-11-04\t\tLikely Voters\t804\t3.5\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t\t7.0\t10.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2244\t2.4\tInternet\tNonpartisan\tNone\n7.0\t83.0\t\t4.0\t5.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n83.0\t5.0\t\t7.0\t5.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n29.0\t26.0\t\t25.0\t20.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t43.0\t6.0\t4.0\t7.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2244\t2.4\tInternet\tNonpartisan\tNone\n7.0\t82.0\t4.0\t3.0\t4.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n82.0\t6.0\t5.0\t4.0\t4.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n28.0\t25.0\t17.0\t12.0\t18.0\tipsos-reuters-26740\tIpsos/Reuters\t2016-10-31\t2016-11-04\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n48.0\t49.0\t\t3.0\t\tupi-cvoter-26741\tUPI/CVOTER\t2016-10-29\t2016-11-04\t\tLikely Voters\t1479\t\tInternet\tNonpartisan\tNone\n44.0\t46.0\t\t8.0\t2.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf next  week's (November's) presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t940\t3.2\tLive Phone\tNonpartisan\tNone\n7.0\t90.0\t\t3.0\t0.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf next  week's (November's) presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n92.0\t3.0\t\t3.0\t1.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf next  week's (November's) presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t38.0\t\t17.0\t4.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf next  week's (November's) presidential election were held today, whom would you support if the candidates are:\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t44.0\t6.0\t5.0\t2.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t940\t3.2\tLive Phone\tNonpartisan\tNone\n7.0\t89.0\t2.0\t1.0\t0.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n92.0\t2.0\t3.0\t1.0\t1.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t33.0\t13.0\t11.0\t5.0\tmcclatchy-marist-26734\tMcClatchy/Marist\t2016-11-01\t2016-11-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t45.0\t5.0\t4.0\t4.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters\t1107\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t90.0\t2.0\t2.0\t2.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n85.0\t5.0\t4.0\t2.0\t4.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n41.0\t33.0\t11.0\t7.0\t8.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n45.0\t46.0\t\t1.0\t6.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters\t1107\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t92.0\t\t1.0\t2.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n87.0\t6.0\t\t1.0\t7.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n43.0\t36.0\t\t5.0\t16.0\tfox-26728\tFOX\t2016-11-01\t2016-11-03\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n39.0\t44.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26717\tLucid/The Times-Picayune\t2016-11-01\t2016-11-03\t\tLikely Voters\t873\t\tInternet\tNonpartisan\tNone\n44.0\t44.0\t4.0\t4.0\t4.0\trasmussen-26696\tRasmussen\t2016-11-01\t2016-11-03\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n43.0\t47.0\t4.0\t4.0\t2.0\tabc-post-26730\tABC/Post\t2016-10-31\t2016-11-03\t\tLikely Voters\t1419\t3.0\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t3.0\t2.0\tabc-post-26730\tABC/Post\t2016-10-31\t2016-11-03\t\tLikely Voters\t1419\t3.0\tLive Phone\tNonpartisan\tNone\n39.0\t44.0\t\t7.0\t10.0\tipsos-reuters-26720\tIpsos/Reuters\t2016-10-30\t2016-11-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2021\t2.6\tInternet\tNonpartisan\tNone\n37.0\t44.0\t6.0\t4.0\t8.0\tipsos-reuters-26720\tIpsos/Reuters\t2016-10-30\t2016-11-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2021\t2.6\tInternet\tNonpartisan\tNone\n44.0\t44.0\t4.0\t4.0\t5.0\tibd-tipp-26691\tIBD/TIPP\t2016-10-30\t2016-11-03\t\tLikely Voters\t898\t3.3\tLive Phone\tNonpartisan\tNone\n44.0\t45.0\t\t4.0\t7.0\tibd-tipp-26691\tIBD/TIPP\t2016-10-30\t2016-11-03\t\tLikely Voters\t898\t3.3\tLive Phone\tNonpartisan\tNone\n48.0\t49.0\t\t3.0\t\tupi-cvoter-26707\tUPI/CVOTER\t2016-10-28\t2016-11-03\t\tLikely Voters\t1395\t\tInternet\tNonpartisan\tNone\n39.0\t44.0\t6.0\t2.0\t9.0\tlucid-the-times-picayune-26673\tLucid/The Times-Picayune\t2016-10-31\t2016-11-02\t\tLikely Voters\t860\t\tInternet\tNonpartisan\tNone\n45.0\t42.0\t4.0\t3.0\t4.0\trasmussen-26650\tRasmussen\t2016-10-31\t2016-11-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n44.0\t47.0\t3.0\t4.0\t2.0\tabc-post-26690\tABC/Post\t2016-10-30\t2016-11-02\t\tLikely Voters\t1151\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t2.0\t3.0\tabc-post-26690\tABC/Post\t2016-10-30\t2016-11-02\t\tLikely Voters\t1151\t\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t\t7.0\t8.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1858\t2.6\tInternet\tNonpartisan\tNone\n7.0\t85.0\t\t4.0\t5.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n81.0\t9.0\t\t7.0\t3.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n36.0\t24.0\t\t23.0\t16.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t5.0\t4.0\t8.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1858\t2.6\tInternet\tNonpartisan\tNone\n6.0\t84.0\t3.0\t3.0\t4.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t9.0\t6.0\t4.0\t3.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t23.0\t14.0\t12.0\t16.0\tipsos-reuters-26679\tIpsos/Reuters\t2016-10-29\t2016-11-02\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n44.0\t44.0\t4.0\t4.0\t4.0\tibd-tipp-26649\tIBD/TIPP\t2016-10-29\t2016-11-02\t\tLikely Voters\t867\t3.4\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t\t4.0\t7.0\tibd-tipp-26649\tIBD/TIPP\t2016-10-29\t2016-11-02\t\tLikely Voters\t867\t3.4\tLive Phone\tNonpartisan\tNone\n48.0\t49.0\t\t3.0\t\tupi-cvoter-26669\tUPI/CVOTER\t2016-10-27\t2016-11-02\t\tLikely Voters\t1329\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t6.0\t2.0\t9.0\tlucid-the-times-picayune-26641\tLucid/The Times-Picayune\t2016-10-30\t2016-11-01\t\tLikely Voters\t894\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t4.0\t4.0\t4.0\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters\t1233\t\tInternet\tNonpartisan\tNone\n5.0\t90.0\t0.0\t2.0\t3.0\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Democrat\t523\t\tInternet\tNonpartisan\tNone\n89.0\t5.0\t2.0\t3.0\t1.0\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Republican\t268\t\tInternet\tNonpartisan\tNone\n51.0\t28.0\t9.0\t5.0\t7.0\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - independent\t442\t\tInternet\tNonpartisan\tNone\n45.0\t48.0\t\t7.0\t\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\t\tLikely Voters\t1233\t\tInternet\tNonpartisan\tNone\n6.0\t91.0\t\t3.0\t\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\t\tLikely Voters - Democrat\t523\t\tInternet\tNonpartisan\tNone\n90.0\t7.0\t\t3.0\t\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\t\tLikely Voters - Republican\t268\t\tInternet\tNonpartisan\tNone\n53.0\t33.0\t\t14.0\t\tyougov-economist-26618\tYouGov/Economist\t2016-10-30\t2016-11-01\t\tLikely Voters - independent\t442\t\tInternet\tNonpartisan\tNone\n44.0\t44.0\t5.0\t4.0\t4.0\trasmussen-26615\tRasmussen\t2016-10-30\t2016-11-01\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n45.0\t47.0\t3.0\t3.0\t2.0\tabc-post-26648\tABC/Post\t2016-10-29\t2016-11-01\t\tLikely Voters\t1167\t3.0\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t2.0\t3.0\tabc-post-26648\tABC/Post\t2016-10-29\t2016-11-01\t\tLikely Voters\t1167\t3.0\tLive Phone\tNonpartisan\tNone\n44.0\t47.0\t\t5.0\t5.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters\t1333\t3.0\tLive Phone\tNonpartisan\tNone\n8.0\t87.0\t\t1.0\t3.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n83.0\t8.0\t\t5.0\t5.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t39.0\t\t9.0\t6.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t45.0\t5.0\t5.0\t4.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters\t\t\tLive Phone\tNonpartisan\tNone\n7.0\t83.0\t3.0\t3.0\t4.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t7.0\t4.0\t4.0\t4.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t38.0\t8.0\t8.0\t4.0\tcbs-times-26647\tCBS/Times\t2016-10-28\t2016-11-01\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t4.0\t4.0\t4.0\tibd-tipp-26612\tIBD/TIPP\t2016-10-28\t2016-11-01\t\tLikely Voters\t862\t3.4\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t\t5.0\t7.0\tibd-tipp-26612\tIBD/TIPP\t2016-10-28\t2016-11-01\t\tLikely Voters\t862\t3.4\tLive Phone\tNonpartisan\tNone\n48.0\t49.0\t\t3.0\t\tupi-cvoter-26640\tUPI/CVOTER\t2016-10-26\t2016-11-01\t\tLikely Voters\t1383\t\tInternet\tNonpartisan\tNone\n50.0\t50.0\t\t\t\tgravis-marketing-oann-26695\tGravis Marketing/OANN\t2016-10-31\t2016-10-31\t\tRegistered Voters\t5360\t1.3\tIVR/Online\tSponsor\tRep\n45.0\t46.0\t4.0\t2.0\t3.0\tgravis-marketing-oann-26695\tGravis Marketing/OANN\t2016-10-31\t2016-10-31\t\tRegistered Voters\t5360\t1.3\tIVR/Online\tSponsor\tRep\n40.0\t42.0\t5.0\t2.0\t10.0\tlucid-the-times-picayune-26602\tLucid/The Times-Picayune\t2016-10-29\t2016-10-31\t\tLikely Voters\t866\t\tInternet\tNonpartisan\tNone\n46.0\t46.0\t3.0\t3.0\t2.0\tabc-post-26611\tABC/Post\t2016-10-28\t2016-10-31\t\tLikely Voters\t1182\t3.0\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t2.0\t2.0\tabc-post-26611\tABC/Post\t2016-10-28\t2016-10-31\t\tLikely Voters\t1182\t3.0\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t5.0\t4.0\t4.0\trasmussen-26593\tRasmussen\t2016-10-27\t2016-10-31\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n44.0\t45.0\t4.0\t3.0\t4.0\tibd-tipp-26591\tIBD/TIPP\t2016-10-26\t2016-10-31\t\tLikely Voters\t1018\t3.2\tLive Phone\tNonpartisan\tNone\n44.0\t45.0\t\t4.0\t7.0\tibd-tipp-26591\tIBD/TIPP\t2016-10-26\t2016-10-31\t\tLikely Voters\t1018\t3.2\tLive Phone\tNonpartisan\tNone\n48.0\t48.0\t\t3.0\t\tupi-cvoter-26639\tUPI/CVOTER\t2016-10-25\t2016-10-31\t\tLikely Voters\t1340\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t\t\t11.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters\t1772\t2.0\tInternet\tNonpartisan\tNone\n6.0\t88.0\t\t\t6.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - Democrat\t661\t\tInternet\tNonpartisan\tNone\n86.0\t8.0\t\t\t6.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - Republican\t601\t\tInternet\tNonpartisan\tNone\n39.0\t38.0\t\t\t23.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - independent\t510\t\tInternet\tNonpartisan\tNone\n39.0\t42.0\t7.0\t5.0\t6.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters\t1772\t2.0\tInternet\tNonpartisan\tNone\n5.0\t81.0\t4.0\t5.0\t4.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - Democrat\t661\t\tInternet\tNonpartisan\tNone\n82.0\t6.0\t5.0\t3.0\t5.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - Republican\t601\t\tInternet\tNonpartisan\tNone\n32.0\t33.0\t15.0\t8.0\t12.0\tpolitico-morning-consult-26556\tPolitico/Morning Consult\t2016-10-29\t2016-10-30\t\tLikely Voters - independent\t510\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t5.0\t2.0\t10.0\tlucid-the-times-picayune-26582\tLucid/The Times-Picayune\t2016-10-28\t2016-10-30\t\tLikely Voters\t857\t\tInternet\tNonpartisan\tNone\n47.0\t52.0\t\t\t1.0\tpolitico-morning-consult-26662\tPolitico/Morning Consult\t2016-10-27\t2016-10-30\t\tLikely Voters\t1249\t3.0\tLive Phone\tNonpartisan\tNone\n48.0\t51.0\t\t\t1.0\tpolitico-morning-consult-26661\tPolitico/Morning Consult\t2016-10-27\t2016-10-30\t\tLikely Voters\t825\t3.0\tInternet\tNonpartisan\tNone\n46.0\t45.0\t3.0\t4.0\t2.0\tabc-post-26590\tABC/Post\t2016-10-27\t2016-10-30\t\tLikely Voters\t1167\t3.0\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t2.0\t2.0\tabc-post-26590\tABC/Post\t2016-10-27\t2016-10-30\t\tLikely Voters\t1167\t3.0\tLive Phone\tNonpartisan\tNone\n42.0\t45.0\t5.0\t4.0\t4.0\trasmussen-26563\tRasmussen\t2016-10-26\t2016-10-30\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n44.0\t45.0\t4.0\t4.0\t4.0\tibd-tipp-26557\tIBD/TIPP\t2016-10-25\t2016-10-30\t\tLikely Voters\t993\t3.0\tLive Phone\tNonpartisan\tNone\n43.0\t45.0\t\t4.0\t7.0\tibd-tipp-26557\tIBD/TIPP\t2016-10-25\t2016-10-30\t\tLikely Voters\t993\t3.0\tLive Phone\tNonpartisan\tNone\n48.0\t49.0\t\t3.0\t\tupi-cvoter-26598\tUPI/CVOTER\t2016-10-24\t2016-10-30\t\tLikely Voters\t1299\t\tInternet\tNonpartisan\tNone\n44.0\t51.0\t\t\t5.0\tnbc-surveymonkey-26584\tNBC/SurveyMonkey\t2016-10-24\t2016-10-30\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t40816\t1.0\tInternet\tNonpartisan\tNone\n41.0\t47.0\t6.0\t3.0\t2.0\tnbc-surveymonkey-26584\tNBC/SurveyMonkey\t2016-10-24\t2016-10-30\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t40816\t1.0\tInternet\tNonpartisan\tNone\n41.0\t42.0\t5.0\t3.0\t9.0\tlucid-the-times-picayune-26581\tLucid/The Times-Picayune\t2016-10-27\t2016-10-29\t\tLikely Voters\t877\t\tInternet\tNonpartisan\tNone\n45.0\t46.0\t4.0\t4.0\t2.0\tabc-post-26555\tABC/Post\t2016-10-26\t2016-10-29\t\tLikely Voters\t1695\t3.0\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t2.0\t2.0\tabc-post-26555\tABC/Post\t2016-10-26\t2016-10-29\t\tLikely Voters\t1695\t3.0\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t6.0\t4.0\t4.0\tibd-tipp-26550\tIBD/TIPP\t2016-10-24\t2016-10-29\t\tLikely Voters\t1039\t3.3\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t\t5.0\t9.0\tibd-tipp-26550\tIBD/TIPP\t2016-10-24\t2016-10-29\t\tLikely Voters\t1039\t3.3\tLive Phone\tNonpartisan\tNone\n48.0\t48.0\t\t4.0\t\tupi-cvoter-26571\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t1317\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t6.0\t3.0\t8.0\tlucid-the-times-picayune-26580\tLucid/The Times-Picayune\t2016-10-26\t2016-10-28\t\tLikely Voters\t865\t\tInternet\tNonpartisan\tNone\n45.0\t46.0\t4.0\t4.0\t2.0\tabc-post-26542\tABC/Post\t2016-10-25\t2016-10-28\t\tLikely Voters\t1160\t3.0\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t3.0\t2.0\tabc-post-26542\tABC/Post\t2016-10-25\t2016-10-28\t\tLikely Voters\t1160\t3.0\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t7.0\t4.0\t4.0\tibd-tipp-26540\tIBD/TIPP\t2016-10-23\t2016-10-28\t\tLikely Voters\t1013\t3.3\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t\t6.0\t8.0\tibd-tipp-26540\tIBD/TIPP\t2016-10-23\t2016-10-28\t\tLikely Voters\t1013\t3.3\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26570\tUPI/CVOTER\t2016-10-22\t2016-10-28\t\tLikely Voters\t1324\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t6.0\t3.0\t8.0\tlucid-the-times-picayune-26529\tLucid/The Times-Picayune\t2016-10-25\t2016-10-27\t\tLikely Voters\t875\t\tInternet\tNonpartisan\tNone\n45.0\t45.0\t3.0\t4.0\t2.0\trasmussen-26517\tRasmussen\t2016-10-25\t2016-10-27\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n45.0\t47.0\t4.0\t4.0\t2.0\tabc-post-26538\tABC/Post\t2016-10-24\t2016-10-27\t\tLikely Voters\t1148\t3.0\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t3.0\t2.0\tabc-post-26538\tABC/Post\t2016-10-24\t2016-10-27\t\tLikely Voters\t1148\t3.0\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t7.0\t4.0\t4.0\tibd-tipp-26514\tIBD/TIPP\t2016-10-22\t2016-10-27\t\tLikely Voters\t973\t3.3\tLive Phone\tNonpartisan\tNone\n42.0\t45.0\t\t6.0\t7.0\tibd-tipp-26514\tIBD/TIPP\t2016-10-22\t2016-10-27\t\tLikely Voters\t973\t3.3\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26569\tUPI/CVOTER\t2016-10-21\t2016-10-27\t\tLikely Voters\t1332\t\tInternet\tNonpartisan\tNone\n39.0\t43.0\t6.0\t3.0\t10.0\tlucid-the-times-picayune-26501\tLucid/The Times-Picayune\t2016-10-24\t2016-10-26\t\tLikely Voters\t877\t\tInternet\tNonpartisan\tNone\n44.0\t45.0\t4.0\t3.0\t4.0\trasmussen-26493\tRasmussen\t2016-10-24\t2016-10-26\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n44.0\t48.0\t4.0\t2.0\t2.0\tabc-post-26513\tABC/Post\t2016-10-23\t2016-10-26\t\tLikely Voters\t1109\t3.0\tLive Phone\tNonpartisan\tNone\n45.0\t50.0\t\t2.0\t3.0\tabc-post-26513\tABC/Post\t2016-10-23\t2016-10-26\t\tLikely Voters\t1109\t3.0\tLive Phone\tNonpartisan\tNone\n34.0\t45.0\t7.0\t2.0\t12.0\tsaint-leo-university-26530\tSaint Leo University\t2016-10-22\t2016-10-26\tIf the November presidential election was held today between Hillary Clinton, Donald Trump, Gary Johnson and Jill Stein, which candidate would you support or which have you already supported in early voting?\tLikely Voters\t1050\t3.0\tInternet\tNonpartisan\tNone\n32.0\t43.0\t6.0\t7.0\t13.0\tsaint-leo-university-26530\tSaint Leo University\t2016-10-22\t2016-10-26\tIf the November presidential election was held today and Evan McMullin, the Independent Conservative from Utah was also on your ballot, which candidate would you support or which have you supported if you already voted in early voting?\tLikely Voters\t1050\t3.0\tInternet\tNonpartisan\tNone\n41.0\t46.0\t4.0\t3.0\t7.0\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters\t1209\t\tInternet\tNonpartisan\tNone\n4.0\t91.0\t1.0\t1.0\t3.0\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Democrat\t501\t\tInternet\tNonpartisan\tNone\n82.0\t7.0\t3.0\t2.0\t6.0\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Republican\t305\t\tInternet\tNonpartisan\tNone\n45.0\t31.0\t8.0\t5.0\t11.0\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - independent\t403\t\tInternet\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\t\tLikely Voters\t1209\t\tInternet\tNonpartisan\tNone\n6.0\t93.0\t\t1.0\t\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\t\tLikely Voters - Democrat\t501\t\tInternet\tNonpartisan\tNone\n86.0\t9.0\t\t5.0\t\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\t\tLikely Voters - Republican\t305\t\tInternet\tNonpartisan\tNone\n53.0\t37.0\t\t10.0\t\tyougov-economist-26504\tYouGov/Economist\t2016-10-22\t2016-10-26\t\tLikely Voters - independent\t403\t\tInternet\tNonpartisan\tNone\n41.0\t43.0\t8.0\t5.0\t4.0\tibd-tipp-26494\tIBD/TIPP\t2016-10-21\t2016-10-26\t\tLikely Voters\t945\t3.3\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t\t6.0\t8.0\tibd-tipp-26494\tIBD/TIPP\t2016-10-21\t2016-10-26\t\tLikely Voters\t945\t3.3\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26533\tUPI/CVOTER\t2016-10-20\t2016-10-26\t\tLikely Voters\t1363\t\tInternet\tNonpartisan\tNone\n39.0\t43.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26482\tLucid/The Times-Picayune\t2016-10-23\t2016-10-25\t\tLikely Voters\t875\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t4.0\t4.0\t5.0\trasmussen-26440\tRasmussen\t2016-10-23\t2016-10-25\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n42.0\t48.0\t5.0\t1.0\t3.0\tabc-post-26490\tABC/Post\t2016-10-22\t2016-10-25\t\tLikely Voters\t1135\t3.0\tLive Phone\tNonpartisan\tNone\n44.0\t51.0\t\t3.0\t2.0\tabc-post-26490\tABC/Post\t2016-10-22\t2016-10-25\t\tLikely Voters\t1135\t3.0\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t7.0\t4.0\t4.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters\t1221\t2.5\tLive Phone\tNonpartisan\tNone\n8.0\t83.0\t3.0\t4.0\t4.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - Democrat\t\t4.0\tLive Phone\tNonpartisan\tNone\n81.0\t6.0\t7.0\t3.0\t4.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n41.0\t28.0\t14.0\t9.0\t7.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t\t1.0\t7.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters\t1221\t2.5\tLive Phone\tNonpartisan\tNone\n8.0\t88.0\t\t0.0\t3.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - Democrat\t\t4.0\tLive Phone\tNonpartisan\tNone\n85.0\t8.0\t\t0.0\t7.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n45.0\t37.0\t\t3.0\t15.0\tfox-26488\tFOX\t2016-10-22\t2016-10-25\t\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n40.0\t46.0\t6.0\t5.0\t4.0\tpew-26507\tPew\t2016-10-20\t2016-10-25\t\tRegistered Voters\t2120\t\tLive Phone\tNonpartisan\tNone\n43.0\t50.0\t\t3.0\t4.0\tpew-26507\tPew\t2016-10-20\t2016-10-25\t\tRegistered Voters\t2120\t\tLive Phone\tNonpartisan\tNone\n41.0\t42.0\t8.0\t5.0\t4.0\tibd-tipp-26437\tIBD/TIPP\t2016-10-20\t2016-10-25\t\tLikely Voters\t921\t3.3\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t\t7.0\t9.0\tibd-tipp-26437\tIBD/TIPP\t2016-10-20\t2016-10-25\t\tLikely Voters\t921\t3.3\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26532\tUPI/CVOTER\t2016-10-19\t2016-10-25\t\tLikely Voters\t1349\t\tInternet\tNonpartisan\tNone\n38.0\t44.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26481\tLucid/The Times-Picayune\t2016-10-22\t2016-10-24\t\tLikely Voters\t850\t\tInternet\tNonpartisan\tNone\n34.0\t43.0\t7.0\t6.0\t10.0\tcnbc-26497\tCNBC\t2016-10-21\t2016-10-24\t\tLikely Voters\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t47.0\t\t9.0\t7.0\tcnbc-26497\tCNBC\t2016-10-21\t2016-10-24\t\tLikely Voters\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t49.0\t5.0\t4.0\t2.0\tabc-news-26436\tABC News\t2016-10-21\t2016-10-24\t\tLikely Voters\t1119\t3.0\tLive Phone\tNonpartisan\tNone\n43.0\t51.0\t\t2.0\t3.0\tabc-news-26436\tABC News\t2016-10-21\t2016-10-24\t\tLikely Voters\t1119\t3.0\tLive Phone\tNonpartisan\tNone\n38.0\t50.0\t5.0\t2.0\t3.0\tgqr-d-democracy-corps-26432\tGQR (D-Democracy Corps)\t2016-10-21\t2016-10-24\tThinking about the election for President in November, if the election for President were held today, would you be voting for -- Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, or Green Party candidate Jill Stein?\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n41.0\t53.0\t\t1.0\t5.0\tgqr-d-democracy-corps-26432\tGQR (D-Democracy Corps)\t2016-10-21\t2016-10-24\t\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n37.0\t51.0\t6.0\t2.0\t4.0\tap-gfk-web-26484\tAP-GfK (web)\t2016-10-20\t2016-10-24\t\tLikely Voters\t1212\t\tInternet\tNonpartisan\tNone\n41.0\t54.0\t\t1.0\t4.0\tap-gfk-web-26484\tAP-GfK (web)\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were held today, for whom would you vote?\tLikely Voters\t1212\t\tInternet\tNonpartisan\tNone\n39.0\t49.0\t\t\t12.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t92.0\t\t\t5.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - Democrat\t382\t\tLive Phone\tNonpartisan\tNone\n83.0\t8.0\t\t\t9.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - Republican\t322\t\tLive Phone\tNonpartisan\tNone\n38.0\t39.0\t\t\t23.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - independent\t280\t\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t4.0\t2.0\t9.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t89.0\t2.0\t2.0\t4.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - Democrat\t382\t\tLive Phone\tNonpartisan\tNone\n80.0\t8.0\t3.0\t2.0\t7.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - Republican\t322\t\tLive Phone\tNonpartisan\tNone\n35.0\t36.0\t8.0\t3.0\t17.0\tsuffolk-usa-today-26449\tSuffolk/USA Today\t2016-10-20\t2016-10-24\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - independent\t280\t\tLive Phone\tNonpartisan\tNone\n37.0\t43.0\t\t10.0\t10.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1170\t3.3\tInternet\tNonpartisan\tNone\n7.0\t83.0\t\t5.0\t6.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n74.0\t6.0\t\t10.0\t9.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n25.0\t28.0\t\t32.0\t16.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t7.0\t6.0\t6.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1170\t3.3\tInternet\tNonpartisan\tNone\n7.0\t81.0\t4.0\t4.0\t4.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t7.0\t7.0\t6.0\t5.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n28.0\t27.0\t21.0\t18.0\t8.0\tipsos-reuters-26445\tIpsos/Reuters\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t5.0\t5.0\t5.0\trasmussen-26417\tRasmussen\t2016-10-20\t2016-10-24\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n41.0\t42.0\t8.0\t5.0\t4.0\tibd-tipp-26414\tIBD/TIPP\t2016-10-19\t2016-10-24\t\tLikely Voters\t873\t3.6\tLive Phone\tNonpartisan\tNone\n42.0\t43.0\t\t6.0\t9.0\tibd-tipp-26414\tIBD/TIPP\t2016-10-19\t2016-10-24\t\tLikely Voters\t873\t3.6\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tupi-cvoter-26531\tUPI/CVOTER\t2016-10-18\t2016-10-24\t\tLikely Voters\t1370\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26480\tLucid/The Times-Picayune\t2016-10-21\t2016-10-23\t\tLikely Voters\t875\t\tInternet\tNonpartisan\tNone\n38.0\t50.0\t5.0\t5.0\t2.0\tabc-news-26413\tABC News\t2016-10-20\t2016-10-23\t\tLikely Voters\t1155\t3.0\tLive Phone\tNonpartisan\tNone\n41.0\t53.0\t\t3.0\t3.0\tabc-news-26413\tABC News\t2016-10-20\t2016-10-23\t\tLikely Voters\t1155\t3.0\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t3.0\t2.0\t2.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t779\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t91.0\t0.0\t1.0\t2.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Democrat\t\t6.0\tLive Phone\tNonpartisan\tNone\n90.0\t6.0\t2.0\t1.0\t0.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Republican\t\t6.0\tLive Phone\tNonpartisan\tNone\n45.0\t41.0\t8.0\t3.0\t3.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - independent\t\t6.0\tLive Phone\tNonpartisan\tNone\n45.0\t51.0\t\t4.0\t0.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t779\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t92.0\t\t3.0\t0.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Democrat\t\t6.0\tLive Phone\tNonpartisan\tNone\n91.0\t7.0\t\t3.0\t0.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Republican\t\t6.0\tLive Phone\tNonpartisan\tNone\n49.0\t43.0\t\t7.0\t1.0\tcnn-26408\tCNN\t2016-10-20\t2016-10-23\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - independent\t\t6.0\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t5.0\t6.0\t5.0\trasmussen-26390\tRasmussen\t2016-10-19\t2016-10-23\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n40.0\t45.0\t6.0\t9.0\t\tcentre-college-26396\tCentre College\t2016-10-18\t2016-10-23\t\tLikely Voters\t569\t4.1\tLive Phone\tNonpartisan\tNone\n41.0\t41.0\t8.0\t6.0\t4.0\tibd-tipp-26383\tIBD/TIPP\t2016-10-18\t2016-10-23\t\tLikely Voters\t815\t3.6\tLive Phone\tNonpartisan\tNone\n42.0\t42.0\t\t6.0\t10.0\tibd-tipp-26383\tIBD/TIPP\t2016-10-18\t2016-10-23\t\tLikely Voters\t815\t3.6\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t\t5.0\tnbc-surveymonkey-26412\tNBC/SurveyMonkey\t2016-10-17\t2016-10-23\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t32225\t1.0\tInternet\tNonpartisan\tNone\n41.0\t46.0\t7.0\t3.0\t2.0\tnbc-surveymonkey-26412\tNBC/SurveyMonkey\t2016-10-17\t2016-10-23\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t32225\t1.0\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26389\tUPI/CVOTER\t2016-10-17\t2016-10-23\t\tLikely Voters\t1414\t\tInternet\tNonpartisan\tNone\n37.0\t43.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26479\tLucid/The Times-Picayune\t2016-10-20\t2016-10-22\t\tLikely Voters\t884\t\tInternet\tNonpartisan\tNone\n38.0\t50.0\t5.0\t3.0\t4.0\tabc-news-26379\tABC News\t2016-10-20\t2016-10-22\t\tLikely Voters\t874\t3.5\tLive Phone\tNonpartisan\tNone\n41.0\t53.0\t\t3.0\t2.0\tabc-news-26379\tABC News\t2016-10-20\t2016-10-22\t\tLikely Voters\t874\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t7.0\t5.0\t4.0\tibd-tipp-26378\tIBD/TIPP\t2016-10-17\t2016-10-22\t\tLikely Voters\t783\t3.6\tLive Phone\tNonpartisan\tNone\n43.0\t42.0\t\t5.0\t10.0\tibd-tipp-26378\tIBD/TIPP\t2016-10-17\t2016-10-22\t\tLikely Voters\t783\t3.6\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26388\tUPI/CVOTER\t2016-10-16\t2016-10-22\t\tLikely Voters\t1347\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t5.0\t\t9.0\tppp-d-social-security-works-26448\tPPP (D-Social Security Works)\t2016-10-20\t2016-10-21\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, and Libertarian Gary Johnson. If the election was today, who would you vote for?\tLikely Voters\t990\t\tIVR/Online\tSponsor\tDem\n10.0\t81.0\t4.0\t\t5.0\tppp-d-social-security-works-26448\tPPP (D-Social Security Works)\t2016-10-20\t2016-10-21\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, and Libertarian Gary Johnson. If the election was today, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tSponsor\tDem\n80.0\t11.0\t2.0\t\t6.0\tppp-d-social-security-works-26448\tPPP (D-Social Security Works)\t2016-10-20\t2016-10-21\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, and Libertarian Gary Johnson. If the election was today, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tSponsor\tDem\n36.0\t32.0\t13.0\t\t20.0\tppp-d-social-security-works-26448\tPPP (D-Social Security Works)\t2016-10-20\t2016-10-21\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, and Libertarian Gary Johnson. If the election was today, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tSponsor\tDem\n37.0\t43.0\t7.0\t2.0\t11.0\tlucid-the-times-picayune-26478\tLucid/The Times-Picayune\t2016-10-19\t2016-10-21\t\tLikely Voters\t856\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t5.0\t6.0\t5.0\trasmussen-26373\tRasmussen\t2016-10-19\t2016-10-21\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n42.0\t40.0\t7.0\t6.0\t5.0\tibd-tipp-26364\tIBD/TIPP\t2016-10-16\t2016-10-21\t\tLikely Voters\t791\t3.6\tLive Phone\tNonpartisan\tNone\n42.0\t42.0\t\t5.0\t11.0\tibd-tipp-26364\tIBD/TIPP\t2016-10-16\t2016-10-21\t\tLikely Voters\t791\t3.6\tLive Phone\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-26387\tUPI/CVOTER\t2016-10-15\t2016-10-21\t\tLikely Voters\t1330\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t\t\t16.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters\t1395\t3.0\tInternet\tNonpartisan\tNone\n8.0\t86.0\t\t\t6.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - Democrat\t501\t\tInternet\tNonpartisan\tNone\n82.0\t7.0\t\t\t10.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - Republican\t443\t\tInternet\tNonpartisan\tNone\n33.0\t39.0\t\t\t28.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - independent\t450\t\tInternet\tNonpartisan\tNone\n36.0\t42.0\t9.0\t4.0\t9.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters\t1395\t3.0\tInternet\tNonpartisan\tNone\n8.0\t84.0\t2.0\t2.0\t4.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - Democrat\t501\t\tInternet\tNonpartisan\tNone\n78.0\t6.0\t9.0\t2.0\t6.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - Republican\t443\t\tInternet\tNonpartisan\tNone\n27.0\t31.0\t16.0\t9.0\t17.0\tpolitico-morning-consult-26342\tPolitico/Morning Consult\t2016-10-19\t2016-10-20\t\tLikely Voters - independent\t450\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26477\tLucid/The Times-Picayune\t2016-10-18\t2016-10-20\t\tLikely Voters\t853\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t5.0\t6.0\t5.0\trasmussen-26346\tRasmussen\t2016-10-18\t2016-10-20\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n42.0\t49.0\t\t5.0\t4.0\targ-26353\tARG\t2016-10-17\t2016-10-20\t\tLikely Voters\t1006\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t89.0\t\t3.0\t4.0\targ-26353\tARG\t2016-10-17\t2016-10-20\t\tLikely Voters - Democrat\t362\t\tLive Phone\tNonpartisan\tNone\n81.0\t10.0\t\t4.0\t5.0\targ-26353\tARG\t2016-10-17\t2016-10-20\t\tLikely Voters - Republican\t321\t\tLive Phone\tNonpartisan\tNone\n45.0\t44.0\t\t8.0\t3.0\targ-26353\tARG\t2016-10-17\t2016-10-20\t\tLikely Voters - independent\t323\t\tLive Phone\tNonpartisan\tNone\n41.0\t40.0\t8.0\t6.0\t5.0\tibd-tipp-26343\tIBD/TIPP\t2016-10-15\t2016-10-20\t\tLikely Voters\t789\t3.6\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t\t5.0\t12.0\tibd-tipp-26343\tIBD/TIPP\t2016-10-15\t2016-10-20\t\tLikely Voters\t789\t3.6\tLive Phone\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-26386\tUPI/CVOTER\t2016-10-14\t2016-10-20\t\tLikely Voters\t1320\t\tInternet\tNonpartisan\tNone\n35.0\t47.0\t6.0\t2.0\t9.0\tlucid-the-times-picayune-26476\tLucid/The Times-Picayune\t2016-10-17\t2016-10-19\t\tLikely Voters\t729\t\tInternet\tNonpartisan\tNone\n43.0\t40.0\t6.0\t6.0\t6.0\trasmussen-26284\tRasmussen\t2016-10-17\t2016-10-19\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n41.0\t40.0\t7.0\t7.0\t5.0\tibd-tipp-26287\tIBD/TIPP\t2016-10-14\t2016-10-19\t\tLikely Voters\t779\t3.6\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t\t5.0\t11.0\tibd-tipp-26287\tIBD/TIPP\t2016-10-14\t2016-10-19\t\tLikely Voters\t779\t3.6\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26385\tUPI/CVOTER\t2016-10-13\t2016-10-19\t\tLikely Voters\t1360\t\tInternet\tNonpartisan\tNone\n40.0\t47.0\t7.0\t2.0\t5.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t1007\t3.1\tLive Phone\tNonpartisan\tNone\n4.0\t91.0\t3.0\t1.0\t2.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n80.0\t7.0\t6.0\t3.0\t4.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t38.0\t11.0\t3.0\t6.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t1.0\t6.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t1007\t3.1\tLive Phone\tNonpartisan\tNone\n4.0\t93.0\t\t0.0\t3.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t10.0\t\t1.0\t4.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n49.0\t41.0\t\t1.0\t8.0\tquinnipiac-26276\tQuinnipiac\t2016-10-17\t2016-10-18\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t46.0\t6.0\t2.0\t9.0\tlucid-the-times-picayune-26475\tLucid/The Times-Picayune\t2016-10-16\t2016-10-18\t\tLikely Voters\t545\t\tInternet\tNonpartisan\tNone\n42.0\t42.0\t7.0\t4.0\t6.0\trasmussen-26265\tRasmussen\t2016-10-16\t2016-10-18\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n12.0\t80.0\t4.0\t2.0\t2.0\trasmussen-26265\tRasmussen\t2016-10-16\t2016-10-18\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n79.0\t11.0\t5.0\t2.0\t4.0\trasmussen-26265\tRasmussen\t2016-10-16\t2016-10-18\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t29.0\t12.0\t9.0\t12.0\trasmussen-26265\tRasmussen\t2016-10-16\t2016-10-18\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t42.0\t6.0\t4.0\t10.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters\t1032\t\tInternet\tNonpartisan\tNone\n7.0\t83.0\t4.0\t2.0\t5.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Democrat\t434\t\tInternet\tNonpartisan\tNone\n81.0\t3.0\t4.0\t2.0\t10.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - Republican\t252\t\tInternet\tNonpartisan\tNone\n37.0\t32.0\t9.0\t7.0\t15.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tLikely Voters - independent\t346\t\tInternet\tNonpartisan\tNone\n43.0\t47.0\t\t8.0\t2.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\t\tLikely Voters\t1032\t\tInternet\tNonpartisan\tNone\n8.0\t86.0\t\t3.0\t3.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\t\tLikely Voters - Democrat\t434\t\tInternet\tNonpartisan\tNone\n89.0\t4.0\t\t6.0\t0.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\t\tLikely Voters - Republican\t252\t\tInternet\tNonpartisan\tNone\n43.0\t40.0\t\t15.0\t2.0\tyougov-economist-26280\tYouGov/Economist\t2016-10-15\t2016-10-18\t\tLikely Voters - independent\t346\t\tInternet\tNonpartisan\tNone\n41.0\t40.0\t8.0\t7.0\t5.0\tibd-tipp-26279\tIBD/TIPP\t2016-10-13\t2016-10-18\t\tLikely Voters\t788\t3.6\tLive Phone\tNonpartisan\tNone\n6.0\t78.0\t7.0\t5.0\t3.0\tibd-tipp-26279\tIBD/TIPP\t2016-10-13\t2016-10-18\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n82.0\t6.0\t5.0\t5.0\t3.0\tibd-tipp-26279\tIBD/TIPP\t2016-10-13\t2016-10-18\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t29.0\t10.0\t10.0\t6.0\tibd-tipp-26279\tIBD/TIPP\t2016-10-13\t2016-10-18\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t\t6.0\t10.0\tibd-tipp-26279\tIBD/TIPP\t2016-10-13\t2016-10-18\t\tLikely Voters\t788\t3.6\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26384\tUPI/CVOTER\t2016-10-12\t2016-10-18\t\tLikely Voters\t1344\t\tInternet\tNonpartisan\tNone\n36.0\t45.0\t7.0\t3.0\t10.0\tlucid-the-times-picayune-26474\tLucid/The Times-Picayune\t2016-10-15\t2016-10-17\t\tLikely Voters\t548\t\tInternet\tNonpartisan\tNone\n39.0\t45.0\t5.0\t5.0\t6.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters\t912\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t87.0\t3.0\t4.0\t3.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n80.0\t5.0\t7.0\t2.0\t5.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n38.0\t31.0\t7.0\t12.0\t12.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n42.0\t49.0\t\t1.0\t8.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters\t912\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t92.0\t\t0.0\t4.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n84.0\t7.0\t\t2.0\t8.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n43.0\t38.0\t\t3.0\t16.0\tfox-26259\tFOX\t2016-10-15\t2016-10-17\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n41.0\t50.0\t\t4.0\t5.0\tbloomberg-selzer-26261\tBloomberg/Selzer\t2016-10-14\t2016-10-17\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t1006\t\tLive Phone\tNonpartisan\tNone\n4.0\t93.0\t\t1.0\t2.0\tbloomberg-selzer-26261\tBloomberg/Selzer\t2016-10-14\t2016-10-17\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t6.0\t\t4.0\t4.0\tbloomberg-selzer-26261\tBloomberg/Selzer\t2016-10-14\t2016-10-17\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t39.0\t\t13.0\t9.0\tbloomberg-selzer-26261\tBloomberg/Selzer\t2016-10-14\t2016-10-17\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t8.0\t3.0\t5.0\tbloomberg-selzer-26261\tBloomberg/Selzer\t2016-10-14\t2016-10-17\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats, Donald Trump for the Republicans, Gary Johnson for the Libertarian Party, and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t1006\t\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t\t8.0\t10.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1190\t3.2\tInternet\tNonpartisan\tNone\n8.0\t80.0\t\t5.0\t7.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t7.0\t\t8.0\t7.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n39.0\t24.0\t\t24.0\t12.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t6.0\t4.0\t10.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1190\t3.2\tInternet\tNonpartisan\tNone\n8.0\t78.0\t4.0\t4.0\t6.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n77.0\t8.0\t5.0\t4.0\t7.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t23.0\t19.0\t11.0\t12.0\tipsos-reuters-26266\tIpsos/Reuters\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t7.0\t5.0\t6.0\trasmussen-26227\tRasmussen\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n15.0\t78.0\t4.0\t2.0\t2.0\trasmussen-26227\tRasmussen\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t10.0\t5.0\t5.0\t4.0\trasmussen-26227\tRasmussen\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n34.0\t32.0\t13.0\t10.0\t11.0\trasmussen-26227\tRasmussen\t2016-10-13\t2016-10-17\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n36.0\t51.0\t3.0\t4.0\t6.0\tpublic-religion-research-institute-the-atlantic-26263\tPublic Religion Research Institute/The Atlantic\t2016-10-12\t2016-10-17\t\tLikely Voters\t692\t4.4\tLive Phone\tNonpartisan\tNone\n46.0\t51.0\t\t4.0\t\tupi-cvoter-26272\tUPI/CVOTER\t2016-10-11\t2016-10-17\t\tLikely Voters\t1326\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26473\tLucid/The Times-Picayune\t2016-10-14\t2016-10-16\t\tLikely Voters\t546\t\tInternet\tNonpartisan\tNone\n38.0\t50.0\t5.0\t3.0\t3.0\tmonmouth-university-26206\tMonmouth University\t2016-10-14\t2016-10-16\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t726\t3.6\tLive Phone\tNonpartisan\tNone\n41.0\t53.0\t\t3.0\t3.0\tmonmouth-university-26206\tMonmouth University\t2016-10-14\t2016-10-16\t\tLikely Voters\t726\t3.6\tLive Phone\tNonpartisan\tNone\n40.0\t51.0\t\t5.0\t5.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters\t1189\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t92.0\t\t1.0\t2.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - Democrat\t282\t\tLive Phone\tNonpartisan\tNone\n81.0\t9.0\t\t5.0\t6.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - Republican\t254\t\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t\t8.0\t7.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - independent\t242\t\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t8.0\t5.0\t3.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters\t1189\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t89.0\t3.0\t3.0\t0.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - Democrat\t282\t\tLive Phone\tNonpartisan\tNone\n77.0\t8.0\t9.0\t3.0\t4.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - Republican\t254\t\tLive Phone\tNonpartisan\tNone\n36.0\t38.0\t13.0\t9.0\t3.0\tcbs-26221\tCBS\t2016-10-12\t2016-10-16\t\tLikely Voters - independent\t242\t\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t5.0\t5.0\t6.0\trasmussen-26195\tRasmussen\t2016-10-12\t2016-10-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n16.0\t78.0\t3.0\t0.0\t2.0\trasmussen-26195\tRasmussen\t2016-10-12\t2016-10-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n74.0\t10.0\t5.0\t7.0\t4.0\trasmussen-26195\tRasmussen\t2016-10-12\t2016-10-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n35.0\t34.0\t9.0\t10.0\t13.0\trasmussen-26195\tRasmussen\t2016-10-12\t2016-10-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n43.0\t51.0\t\t\t6.0\tnbc-surveymonkey-26229\tNBC/SurveyMonkey\t2016-10-10\t2016-10-16\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t24804\t1.0\tInternet\tNonpartisan\tNone\n40.0\t46.0\t8.0\t4.0\t2.0\tnbc-surveymonkey-26229\tNBC/SurveyMonkey\t2016-10-10\t2016-10-16\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t24804\t1.0\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26200\tUPI/CVOTER\t2016-10-10\t2016-10-16\t\tLikely Voters\t1325\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t7.0\t2.0\t9.0\tlucid-the-times-picayune-26472\tLucid/The Times-Picayune\t2016-10-13\t2016-10-15\t\tLikely Voters\t547\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t\t\t14.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters\t1737\t2.0\tInternet\tNonpartisan\tNone\n8.0\t84.0\t\t\t9.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - Democrat\t676\t\tInternet\tNonpartisan\tNone\n82.0\t8.0\t\t\t10.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - Republican\t566\t\tInternet\tNonpartisan\tNone\n39.0\t37.0\t\t\t24.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - independent\t495\t\tInternet\tNonpartisan\tNone\n36.0\t42.0\t10.0\t3.0\t9.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters\t1737\t2.0\tInternet\tNonpartisan\tNone\n6.0\t81.0\t6.0\t3.0\t4.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - Democrat\t676\t\tInternet\tNonpartisan\tNone\n78.0\t6.0\t9.0\t1.0\t7.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - Republican\t566\t\tInternet\tNonpartisan\tNone\n30.0\t30.0\t19.0\t6.0\t16.0\tpolitico-morning-consult-26194\tPolitico/Morning Consult\t2016-10-13\t2016-10-15\t\tLikely Voters - independent\t495\t\tInternet\tNonpartisan\tNone\n45.0\t51.0\t\t4.0\t\tupi-cvoter-26199\tUPI/CVOTER\t2016-10-09\t2016-10-15\t\tLikely Voters\t1386\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26471\tLucid/The Times-Picayune\t2016-10-12\t2016-10-14\t\tLikely Voters\t547\t\tInternet\tNonpartisan\tNone\n36.0\t46.0\t5.0\t2.0\t11.0\tsurveyusa-boston-globe-colby-college-26270\tSurveyUSA/Boston Globe/Colby College\t2016-10-11\t2016-10-14\t\tLikely Voters\t845\t3.4\tIVR/Online\tNonpartisan\tNone\n5.0\t88.0\t0.0\t1.0\t5.0\tsurveyusa-boston-globe-colby-college-26270\tSurveyUSA/Boston Globe/Colby College\t2016-10-11\t2016-10-14\t\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n75.0\t13.0\t2.0\t1.0\t9.0\tsurveyusa-boston-globe-colby-college-26270\tSurveyUSA/Boston Globe/Colby College\t2016-10-11\t2016-10-14\t\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n34.0\t34.0\t12.0\t4.0\t16.0\tsurveyusa-boston-globe-colby-college-26270\tSurveyUSA/Boston Globe/Colby College\t2016-10-11\t2016-10-14\t\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n45.0\t51.0\t\t4.0\t\tupi-cvoter-26198\tUPI/CVOTER\t2016-10-08\t2016-10-14\t\tLikely Voters\t1448\t\tInternet\tNonpartisan\tNone\n36.0\t45.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26470\tLucid/The Times-Picayune\t2016-10-11\t2016-10-13\t\tLikely Voters\t553\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t6.0\t6.0\t5.0\trasmussen-26173\tRasmussen\t2016-10-11\t2016-10-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n16.0\t76.0\t3.0\t3.0\t2.0\trasmussen-26173\tRasmussen\t2016-10-11\t2016-10-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n77.0\t9.0\t4.0\t6.0\t5.0\trasmussen-26173\tRasmussen\t2016-10-11\t2016-10-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t32.0\t11.0\t8.0\t10.0\trasmussen-26173\tRasmussen\t2016-10-11\t2016-10-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n37.0\t48.0\t7.0\t5.0\t3.0\tnbc-wsj-26190\tNBC/WSJ\t2016-10-10\t2016-10-13\tIf the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tLikely Voters\t905\t3.26\tLive Phone\tNonpartisan\tNone\n41.0\t51.0\t\t3.0\t5.0\tnbc-wsj-26190\tNBC/WSJ\t2016-10-10\t2016-10-13\tAnd, if the election for president were held today, with only Donald Trump and Mike Pence as the Republican candidates, and Hillary Clinton and Tim Kaine as the Democratic candidates, for whom would you vote?\tLikely Voters\t905\t3.26\tLive Phone\tNonpartisan\tNone\n43.0\t47.0\t5.0\t2.0\t3.0\tabc-post-26184\tABC/Post\t2016-10-10\t2016-10-13\t\tLikely Voters\t740\t4.0\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t2.0\t2.0\tabc-post-26184\tABC/Post\t2016-10-10\t2016-10-13\t\tLikely Voters\t740\t4.0\tLive Phone\tNonpartisan\tNone\n39.0\t47.0\t7.0\t2.0\t4.0\tgwu-battleground-26193\tGWU/Battleground\t2016-10-08\t2016-10-13\t\tLikely Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n5.0\t87.0\t3.0\t2.0\t2.0\tgwu-battleground-26193\tGWU/Battleground\t2016-10-08\t2016-10-13\t\tLikely Voters - Democrat\t440\t\tLive Phone\tNonpartisan\tNone\n81.0\t7.0\t9.0\t0.0\t3.0\tgwu-battleground-26193\tGWU/Battleground\t2016-10-08\t2016-10-13\t\tLikely Voters - Republican\t400\t\tLive Phone\tNonpartisan\tNone\n31.0\t33.0\t16.0\t7.0\t13.0\tgwu-battleground-26193\tGWU/Battleground\t2016-10-08\t2016-10-13\t\tLikely Voters - independent\t160\t\tLive Phone\tNonpartisan\tNone\n45.0\t50.0\t\t4.0\t\tupi-cvoter-26181\tUPI/CVOTER\t2016-10-07\t2016-10-13\t\tLikely Voters\t1482\t\tInternet\tNonpartisan\tNone\n36.0\t44.0\t7.0\t2.0\t11.0\tlucid-the-times-picayune-26469\tLucid/The Times-Picayune\t2016-10-10\t2016-10-12\t\tLikely Voters\t542\t\tInternet\tNonpartisan\tNone\n38.0\t45.0\t7.0\t4.0\t6.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters\t917\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t81.0\t6.0\t3.0\t4.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n80.0\t6.0\t7.0\t1.0\t6.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n35.0\t35.0\t9.0\t13.0\t9.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n41.0\t49.0\t\t1.0\t9.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters\t917\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t85.0\t\t1.0\t7.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n83.0\t9.0\t\t1.0\t7.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t\t5.0\t13.0\tfox-26165\tFOX\t2016-10-10\t2016-10-12\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t6.0\t6.0\t4.0\trasmussen-26154\tRasmussen\t2016-10-10\t2016-10-12\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n15.0\t76.0\t3.0\t5.0\t2.0\trasmussen-26154\tRasmussen\t2016-10-10\t2016-10-12\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n75.0\t13.0\t4.0\t4.0\t4.0\trasmussen-26154\tRasmussen\t2016-10-10\t2016-10-12\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n42.0\t30.0\t13.0\t8.0\t7.0\trasmussen-26154\tRasmussen\t2016-10-10\t2016-10-12\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-26180\tUPI/CVOTER\t2016-10-06\t2016-10-12\t\tLikely Voters\t1402\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t6.0\t5.0\t10.0\tinsights-west-26144\tInsights West\t2016-10-10\t2016-10-11\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t953\t3.2\tInternet\tNonpartisan\tNone\n5.0\t87.0\t2.0\t0.0\t6.0\tinsights-west-26144\tInsights West\t2016-10-10\t2016-10-11\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n74.0\t8.0\t5.0\t5.0\t8.0\tinsights-west-26144\tInsights West\t2016-10-10\t2016-10-11\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n31.0\t32.0\t12.0\t10.0\t15.0\tinsights-west-26144\tInsights West\t2016-10-10\t2016-10-11\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t43.0\t7.0\t3.0\t11.0\tlucid-the-times-picayune-26467\tLucid/The Times-Picayune\t2016-10-09\t2016-10-11\t\tLikely Voters\t547\t\tInternet\tNonpartisan\tNone\n39.0\t43.0\t7.0\t6.0\t5.0\trasmussen-26140\tRasmussen\t2016-10-09\t2016-10-11\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n11.0\t78.0\t3.0\t5.0\t2.0\trasmussen-26140\tRasmussen\t2016-10-09\t2016-10-11\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n71.0\t16.0\t5.0\t4.0\t5.0\trasmussen-26140\tRasmussen\t2016-10-09\t2016-10-11\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t30.0\t15.0\t11.0\t7.0\trasmussen-26140\tRasmussen\t2016-10-09\t2016-10-11\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n44.0\t50.0\t\t5.0\t\tupi-cvoter-26179\tUPI/CVOTER\t2016-10-05\t2016-10-11\t\tLikely Voters\t1367\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t\t\t13.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters\t1757\t3.0\tInternet\tNonpartisan\tNone\n9.0\t85.0\t\t\t6.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - Democrat\t677\t\tInternet\tNonpartisan\tNone\n83.0\t9.0\t\t\t8.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - Republican\t550\t\tInternet\tNonpartisan\tNone\n38.0\t36.0\t\t\t26.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - independent\t529\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t10.0\t3.0\t7.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters\t1757\t3.0\tInternet\tNonpartisan\tNone\n8.0\t81.0\t4.0\t3.0\t4.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - Democrat\t677\t\tInternet\tNonpartisan\tNone\n77.0\t7.0\t10.0\t1.0\t5.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - Republican\t550\t\tInternet\tNonpartisan\tNone\n34.0\t29.0\t18.0\t6.0\t14.0\tpolitico-morning-consult-26084\tPolitico/Morning Consult\t2016-10-10\t2016-10-10\t\tLikely Voters - independent\t529\t\tInternet\tNonpartisan\tNone\n37.0\t44.0\t7.0\t2.0\t11.0\tlucid-the-times-picayune-26466\tLucid/The Times-Picayune\t2016-10-08\t2016-10-10\t\tLikely Voters\t543\t\tInternet\tNonpartisan\tNone\n37.0\t46.0\t8.0\t6.0\t3.0\tnbc-wsj-26066\tNBC/WSJ\t2016-10-08\t2016-10-10\tIf the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tLikely Voters\t806\t3.45\tLive Phone\tNonpartisan\tNone\n40.0\t50.0\t\t7.0\t3.0\tnbc-wsj-26066\tNBC/WSJ\t2016-10-08\t2016-10-10\tAnd, if the election for president were held today, with only Donald Trump and Mike Pence as the Republican candidates, and Hillary Clinton and Tim Kaine as the Democratic candidates, for whom would you vote?\tLikely Voters\t806\t3.45\tLive Phone\tNonpartisan\tNone\n37.0\t44.0\t\t9.0\t10.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2363\t2.3\tInternet\tNonpartisan\tNone\n9.0\t79.0\t\t5.0\t6.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n77.0\t8.0\t\t9.0\t6.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n32.0\t24.0\t\t27.0\t17.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t44.0\t6.0\t4.0\t9.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t2363\t2.3\tInternet\tNonpartisan\tNone\n10.0\t79.0\t4.0\t3.0\t4.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n77.0\t8.0\t7.0\t4.0\t6.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n31.0\t23.0\t15.0\t16.0\t15.0\tipsos-reuters-26141\tIpsos/Reuters\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t44.0\t7.0\t6.0\t4.0\trasmussen-26087\tRasmussen\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.4\tIVR/Online\tNonpartisan\tNone\n11.0\t80.0\t4.0\t4.0\t1.0\trasmussen-26087\tRasmussen\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n69.0\t17.0\t6.0\t4.0\t4.0\trasmussen-26087\tRasmussen\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n39.0\t29.0\t13.0\t12.0\t7.0\trasmussen-26087\tRasmussen\t2016-10-06\t2016-10-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n44.0\t50.0\t\t6.0\t\tupi-cvoter-26092\tUPI/CVOTER\t2016-10-04\t2016-10-10\t\tLikely Voters\t1367\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t10.0\t5.0\t0.0\tpew-26176\tPew\t2016-09-27\t2016-10-10\t\tRegistered Voters\t3616\t2.9\tLive Phone\tNonpartisan\tNone\n44.0\t53.0\t\t1.0\t2.0\tpew-26176\tPew\t2016-09-27\t2016-10-10\t\tRegistered Voters\t3616\t2.9\tLive Phone\tNonpartisan\tNone\n37.0\t45.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26465\tLucid/The Times-Picayune\t2016-10-07\t2016-10-09\t\tLikely Voters\t546\t\tInternet\tNonpartisan\tNone\n38.0\t49.0\t2.0\t4.0\t8.0\tpublic-religion-research-institute-the-atlantic-26086\tPublic Religion Research Institute/The Atlantic\t2016-10-05\t2016-10-09\t\tLikely Voters\t886\t3.9\tLive Phone\tNonpartisan\tNone\n38.0\t45.0\t7.0\t5.0\t5.0\trasmussen-26021\tRasmussen\t2016-10-05\t2016-10-09\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n10.0\t83.0\t3.0\t3.0\t2.0\trasmussen-26021\tRasmussen\t2016-10-05\t2016-10-09\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n71.0\t16.0\t5.0\t2.0\t5.0\trasmussen-26021\tRasmussen\t2016-10-05\t2016-10-09\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n37.0\t31.0\t12.0\t12.0\t8.0\trasmussen-26021\tRasmussen\t2016-10-05\t2016-10-09\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n44.0\t50.0\t\t6.0\t\tupi-cvoter-26076\tUPI/CVOTER\t2016-10-03\t2016-10-09\t\tLikely Voters\t1350\t\tInternet\tNonpartisan\tNone\n44.0\t51.0\t\t\t5.0\tnbc-surveymonkey-26017\tNBC/SurveyMonkey\t2016-10-03\t2016-10-09\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t23329\t1.0\tInternet\tNonpartisan\tNone\n41.0\t46.0\t8.0\t3.0\t2.0\tnbc-surveymonkey-26017\tNBC/SurveyMonkey\t2016-10-03\t2016-10-09\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t23329\t1.0\tInternet\tNonpartisan\tNone\n41.0\t45.0\t\t\t14.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1390\t3.0\tInternet\tNonpartisan\tNone\n6.0\t88.0\t\t\t6.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t491\t\tInternet\tNonpartisan\tNone\n78.0\t7.0\t\t\t15.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t480\t\tInternet\tNonpartisan\tNone\n40.0\t38.0\t\t\t22.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t419\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t8.0\t3.0\t9.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters\t1390\t3.0\tInternet\tNonpartisan\tNone\n5.0\t87.0\t3.0\t2.0\t3.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Democrat\t491\t\tInternet\tNonpartisan\tNone\n74.0\t7.0\t6.0\t1.0\t12.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Republican\t480\t\tInternet\tNonpartisan\tNone\n35.0\t30.0\t16.0\t5.0\t14.0\tpolitico-morning-consult-26013\tPolitico/Morning Consult\t2016-10-08\t2016-10-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - independent\t419\t\tInternet\tNonpartisan\tNone\n38.0\t44.0\t5.0\t4.0\t9.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1135\t\tInternet\tNonpartisan\tNone\n6.0\t87.0\t1.0\t2.0\t4.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t454\t\tInternet\tNonpartisan\tNone\n81.0\t3.0\t6.0\t4.0\t5.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t317\t\tInternet\tNonpartisan\tNone\n35.0\t36.0\t8.0\t5.0\t16.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t364\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t\t9.0\t1.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\t\tRegistered Voters\t1135\t\tInternet\tNonpartisan\tNone\n6.0\t91.0\t\t3.0\t0.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\t\tRegistered Voters - Democrat\t454\t\tInternet\tNonpartisan\tNone\n87.0\t5.0\t\t7.0\t0.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\t\tRegistered Voters - Republican\t317\t\tInternet\tNonpartisan\tNone\n44.0\t40.0\t\t14.0\t2.0\tyougov-economist-26019\tYouGov/Economist\t2016-10-07\t2016-10-08\t\tRegistered Voters - independent\t364\t\tInternet\tNonpartisan\tNone\n36.0\t45.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26463\tLucid/The Times-Picayune\t2016-10-06\t2016-10-08\t\tLikely Voters\t536\t\tInternet\tNonpartisan\tNone\n46.0\t48.0\t\t6.0\t\tupi-cvoter-26075\tUPI/CVOTER\t2016-10-02\t2016-10-08\t\tLikely Voters\t1325\t\tInternet\tNonpartisan\tNone\n36.0\t46.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26462\tLucid/The Times-Picayune\t2016-10-05\t2016-10-07\t\tLikely Voters\t533\t\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t6.0\t\tupi-cvoter-26074\tUPI/CVOTER\t2016-10-01\t2016-10-07\t\tLikely Voters\t1286\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t6.0\t3.0\t4.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t1064\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t89.0\t2.0\t3.0\t2.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n87.0\t5.0\t5.0\t1.0\t2.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t46.0\t10.0\t8.0\t4.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t1.0\t5.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t1064\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t95.0\t\t0.0\t1.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n91.0\t5.0\t\t1.0\t2.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t57.0\t\t0.0\t5.0\tquinnipiac-25995\tQuinnipiac\t2016-10-05\t2016-10-06\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n35.0\t45.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26461\tLucid/The Times-Picayune\t2016-10-04\t2016-10-06\t\tLikely Voters\t1364\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t7.0\t4.0\t4.0\trasmussen-25993\tRasmussen\t2016-10-04\t2016-10-06\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n12.0\t82.0\t2.0\t3.0\t1.0\trasmussen-25993\tRasmussen\t2016-10-04\t2016-10-06\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t13.0\t5.0\t1.0\t4.0\trasmussen-25993\tRasmussen\t2016-10-04\t2016-10-06\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n41.0\t29.0\t14.0\t8.0\t8.0\trasmussen-25993\tRasmussen\t2016-10-04\t2016-10-06\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n42.0\t44.0\t6.0\t3.0\t5.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters\t896\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t87.0\t4.0\t4.0\t3.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n84.0\t4.0\t6.0\t1.0\t5.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n39.0\t35.0\t11.0\t8.0\t7.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t1.0\t7.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters\t896\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t91.0\t\t0.0\t5.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n87.0\t8.0\t\t1.0\t4.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n42.0\t40.0\t\t3.0\t15.0\tfox-25998\tFOX\t2016-10-03\t2016-10-06\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t6.0\t\tupi-cvoter-26006\tUPI/CVOTER\t2016-09-30\t2016-10-06\t\tLikely Voters\t1250\t3.0\tInternet\tNonpartisan\tNone\n35.0\t47.0\t7.0\t2.0\t9.0\tlucid-the-times-picayune-26460\tLucid/The Times-Picayune\t2016-10-03\t2016-10-05\t\tLikely Voters\t447\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t8.0\t5.0\t4.0\trasmussen-25992\tRasmussen\t2016-10-03\t2016-10-05\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n15.0\t77.0\t3.0\t3.0\t2.0\trasmussen-25992\tRasmussen\t2016-10-03\t2016-10-05\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n77.0\t12.0\t4.0\t2.0\t4.0\trasmussen-25992\tRasmussen\t2016-10-03\t2016-10-05\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n40.0\t28.0\t18.0\t9.0\t5.0\trasmussen-25992\tRasmussen\t2016-10-03\t2016-10-05\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n47.0\t47.0\t\t5.0\t\tupi-cvoter-26005\tUPI/CVOTER\t2016-09-29\t2016-10-05\t\tLikely Voters\t1257\t3.0\tInternet\tNonpartisan\tNone\n37.0\t45.0\t6.0\t3.0\t9.0\tlucid-the-times-picayune-26459\tLucid/The Times-Picayune\t2016-10-02\t2016-10-04\t\tLikely Voters\t451\t\tInternet\tNonpartisan\tNone\n42.0\t41.0\t8.0\t4.0\t3.0\trasmussen-25968\tRasmussen\t2016-10-02\t2016-10-04\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.0\tIVR/Online\tNonpartisan\tNone\n13.0\t77.0\t4.0\t3.0\t3.0\trasmussen-25968\tRasmussen\t2016-10-02\t2016-10-04\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n78.0\t10.0\t4.0\t4.0\t4.0\trasmussen-25968\tRasmussen\t2016-10-02\t2016-10-04\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n39.0\t32.0\t17.0\t8.0\t4.0\trasmussen-25968\tRasmussen\t2016-10-02\t2016-10-04\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-26004\tUPI/CVOTER\t2016-09-28\t2016-10-04\t\tLikely Voters\t1274\t3.0\tInternet\tNonpartisan\tNone\n38.0\t45.0\t5.0\t3.0\t9.0\tlucid-the-times-picayune-26458\tLucid/The Times-Picayune\t2016-10-01\t2016-10-03\t\tLikely Voters\t424\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t5.0\t5.0\t7.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1055\t\tInternet\tNonpartisan\tNone\n8.0\t84.0\t2.0\t2.0\t5.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t415\t\tInternet\tNonpartisan\tNone\n85.0\t5.0\t4.0\t2.0\t4.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t255\t\tInternet\tNonpartisan\tNone\n36.0\t35.0\t7.0\t10.0\t11.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t385\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t\t8.0\t1.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\t\tRegistered Voters\t1055\t\tInternet\tNonpartisan\tNone\n8.0\t88.0\t\t4.0\t0.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\t\tRegistered Voters - Democrat\t415\t\tInternet\tNonpartisan\tNone\n90.0\t7.0\t\t2.0\t1.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\t\tRegistered Voters - Republican\t255\t\tInternet\tNonpartisan\tNone\n41.0\t41.0\t\t15.0\t2.0\tyougov-economist-25893\tYouGov/Economist\t2016-10-01\t2016-10-03\t\tRegistered Voters - independent\t385\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t9.0\t4.0\t4.0\trasmussen-25967\tRasmussen\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n12.0\t77.0\t5.0\t3.0\t3.0\trasmussen-25967\tRasmussen\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t10.0\t7.0\t3.0\t4.0\trasmussen-25967\tRasmussen\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n39.0\t33.0\t15.0\t7.0\t6.0\trasmussen-25967\tRasmussen\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n37.0\t44.0\t\t9.0\t9.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1239\t3.2\tInternet\tNonpartisan\tNone\n7.0\t84.0\t\t5.0\t5.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n74.0\t11.0\t\t8.0\t7.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n29.0\t16.0\t\t29.0\t25.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n36.0\t42.0\t8.0\t5.0\t8.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1239\t3.2\tInternet\tNonpartisan\tNone\n7.0\t81.0\t3.0\t5.0\t5.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n72.0\t9.0\t8.0\t4.0\t6.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n28.0\t17.0\t27.0\t12.0\t16.0\tipsos-reuters-25960\tIpsos/Reuters\t2016-09-29\t2016-10-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n49.0\t47.0\t\t4.0\t\tupi-cvoter-26003\tUPI/CVOTER\t2016-09-27\t2016-10-03\t\tLikely Voters\t1275\t3.0\tInternet\tNonpartisan\tNone\n39.0\t44.0\t6.0\t2.0\t10.0\tlucid-the-times-picayune-26457\tLucid/The Times-Picayune\t2016-09-30\t2016-10-02\t\tLikely Voters\t480\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t\t\t16.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1778\t2.0\tInternet\tNonpartisan\tNone\n9.0\t85.0\t\t\t6.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t711\t\tInternet\tNonpartisan\tNone\n80.0\t8.0\t\t\t12.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t552\t\tInternet\tNonpartisan\tNone\n36.0\t32.0\t\t\t32.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t515\t\tInternet\tNonpartisan\tNone\n36.0\t42.0\t9.0\t3.0\t10.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters\t1778\t2.0\tInternet\tNonpartisan\tNone\n9.0\t81.0\t4.0\t2.0\t4.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Democrat\t711\t\tInternet\tNonpartisan\tNone\n77.0\t7.0\t7.0\t1.0\t8.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Republican\t552\t\tInternet\tNonpartisan\tNone\n30.0\t25.0\t19.0\t7.0\t19.0\tmorning-consult-25827\tMorning Consult\t2016-09-30\t2016-10-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - independent\t515\t\tInternet\tNonpartisan\tNone\n41.0\t47.0\t3.0\t4.0\t5.0\tpublic-religion-research-institute-the-atlantic-25980\tPublic Religion Research Institute/The Atlantic\t2016-09-28\t2016-10-02\t\tLikely Voters\t609\t\tLive Phone\tNonpartisan\tNone\n40.0\t43.0\t8.0\t4.0\t5.0\trasmussen-25966\tRasmussen\t2016-09-28\t2016-10-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n9.0\t80.0\t4.0\t2.0\t3.0\trasmussen-25966\tRasmussen\t2016-09-28\t2016-10-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n78.0\t11.0\t6.0\t1.0\t4.0\trasmussen-25966\tRasmussen\t2016-09-28\t2016-10-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t32.0\t15.0\t8.0\t8.0\trasmussen-25966\tRasmussen\t2016-09-28\t2016-10-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n40.0\t50.0\t\t5.0\t6.0\tfairleigh-dickinson-ssrs-25961\tFairleigh Dickinson/SSRS\t2016-09-28\t2016-10-02\tIf the election for president was held today, and the choices were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t788\t4.4\tLive Phone\tNonpartisan\tNone\n6.0\t92.0\t\t0.0\t3.0\tfairleigh-dickinson-ssrs-25961\tFairleigh Dickinson/SSRS\t2016-09-28\t2016-10-02\tIf the election for president was held today, and the choices were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t\t6.6\tLive Phone\tNonpartisan\tNone\n80.0\t9.0\t\t5.0\t8.0\tfairleigh-dickinson-ssrs-25961\tFairleigh Dickinson/SSRS\t2016-09-28\t2016-10-02\tIf the election for president was held today, and the choices were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t\t5.7\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t\t8.0\t7.0\tfairleigh-dickinson-ssrs-25961\tFairleigh Dickinson/SSRS\t2016-09-28\t2016-10-02\tIf the election for president was held today, and the choices were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t\t6.2\tLive Phone\tNonpartisan\tNone\n36.0\t45.0\t11.0\t4.0\t4.0\tfairleigh-dickinson-ssrs-25961\tFairleigh Dickinson/SSRS\t2016-09-28\t2016-10-02\t\tLikely Voters\t385\t5.0\tLive Phone\tNonpartisan\tNone\n43.0\t49.0\t\t4.0\t5.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters\t1217\t4.0\tLive Phone\tNonpartisan\tNone\n5.0\t91.0\t\t2.0\t3.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n88.0\t7.0\t\t3.0\t3.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t\t8.0\t8.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t8.0\t4.0\t3.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters\t1217\t4.0\tLive Phone\tNonpartisan\tNone\n5.0\t86.0\t4.0\t2.0\t4.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t6.0\t7.0\t0.0\t2.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t35.0\t13.0\t7.0\t5.0\tcbs-times-25894\tCBS/Times\t2016-09-28\t2016-10-02\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t47.0\t7.0\t2.0\t2.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t1213\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t91.0\t3.0\t1.0\t1.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n87.0\t7.0\t5.0\t1.0\t1.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n37.0\t44.0\t13.0\t3.0\t3.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, Donald Trump and Mike Pence as the Republican Party’s candidates, Gary Johnson and Bill Weld as the Libertarian Party’s candidates and Jill Stein and Ajamu Baraka as the Green Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - independent\t\t5.0\tLive Phone\tNonpartisan\tNone\n45.0\t51.0\t\t4.0\t0.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump and as the Republican Party’s candidate. Who would you be more likely to vote for?\tLikely Voters\t1213\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t94.0\t\t1.0\t0.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump and as the Republican Party’s candidate. Who would you be more likely to vote for?\tLikely Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n89.0\t9.0\t\t2.0\t1.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump and as the Republican Party’s candidate. Who would you be more likely to vote for?\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n42.0\t51.0\t\t7.0\t0.0\tcnn-25876\tCNN\t2016-09-28\t2016-10-02\tNow suppose that the presidential candidates on the ballot in your state included only Hillary Clinton as the Democratic Party’s candidate and Donald Trump and as the Republican Party’s candidate. Who would you be more likely to vote for?\tLikely Voters - independent\t\t5.0\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t\t6.0\tnbc-surveymonkey-25895\tNBC/SurveyMonkey\t2016-09-26\t2016-10-02\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t26925\t1.0\tInternet\tNonpartisan\tNone\n40.0\t46.0\t9.0\t3.0\t2.0\tnbc-surveymonkey-25895\tNBC/SurveyMonkey\t2016-09-26\t2016-10-02\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t26925\t1.0\tInternet\tNonpartisan\tNone\n49.0\t47.0\t\t4.0\t\tupi-cvoter-25834\tUPI/CVOTER\t2016-09-26\t2016-10-02\t\tLikely Voters\t1285\t3.0\tInternet\tNonpartisan\tNone\n37.0\t45.0\t6.0\t2.0\t9.0\tlucid-the-times-picayune-26456\tLucid/The Times-Picayune\t2016-09-29\t2016-10-01\t\tLikely Voters\t597\t\tInternet\tNonpartisan\tNone\n49.0\t48.0\t\t3.0\t\tupi-cvoter-25833\tUPI/CVOTER\t2016-09-25\t2016-10-01\t\tLikely Voters\t1288\t3.0\tInternet\tNonpartisan\tNone\n36.0\t46.0\t7.0\t2.0\t10.0\tlucid-the-times-picayune-26455\tLucid/The Times-Picayune\t2016-09-28\t2016-09-30\t\tLikely Voters\t384\t\tInternet\tNonpartisan\tNone\n49.0\t48.0\t\t3.0\t\tupi-cvoter-25832\tUPI/CVOTER\t2016-09-24\t2016-09-30\t\tLikely Voters\t1223\t3.0\tInternet\tNonpartisan\tNone\n35.0\t45.0\t8.0\t2.0\t10.0\tlucid-the-times-picayune-26454\tLucid/The Times-Picayune\t2016-09-27\t2016-09-29\t\tLikely Voters\t447\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t6.0\t4.0\t6.0\trasmussen-25830\tRasmussen\t2016-09-27\t2016-09-29\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t2.5\tIVR/Online\tNonpartisan\tNone\n9.0\t81.0\t3.0\t2.0\t5.0\trasmussen-25830\tRasmussen\t2016-09-27\t2016-09-29\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n80.0\t12.0\t5.0\t0.0\t3.0\trasmussen-25830\tRasmussen\t2016-09-27\t2016-09-29\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n40.0\t28.0\t13.0\t9.0\t9.0\trasmussen-25830\tRasmussen\t2016-09-27\t2016-09-29\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n40.0\t43.0\t8.0\t5.0\t3.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters\t911\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t83.0\t5.0\t6.0\t3.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n81.0\t7.0\t5.0\t2.0\t4.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n41.0\t29.0\t21.0\t8.0\t2.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t\t2.0\t6.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters\t911\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t92.0\t\t0.0\t3.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n87.0\t9.0\t\t0.0\t3.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n45.0\t34.0\t\t7.0\t13.0\tfox-25819\tFOX\t2016-09-27\t2016-09-29\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n49.0\t47.0\t\t3.0\t\tupi-cvoter-25825\tUPI/CVOTER\t2016-09-23\t2016-09-29\t\tLikely Voters\t1236\t3.0\tInternet\tNonpartisan\tNone\n40.0\t44.0\t6.0\t3.0\t6.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters\t933\t3.2\tIVR/Online\tPollster\tDem\n11.0\t78.0\t4.0\t2.0\t5.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n82.0\t8.0\t5.0\t2.0\t3.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n32.0\t36.0\t13.0\t3.0\t14.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n45.0\t49.0\t\t\t6.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t933\t3.2\tIVR/Online\tPollster\tDem\n12.0\t85.0\t\t\t4.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n89.0\t9.0\t\t\t3.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n40.0\t44.0\t\t\t17.0\tppp-d-25804\tPPP (D)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n38.0\t42.0\t\t8.0\t12.0\tipsos-reuters-25794\tIpsos/Reuters\t2016-09-27\t2016-09-28\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1336\t3.1\tInternet\tNonpartisan\tNone\n5.0\t81.0\t\t6.0\t8.0\tipsos-reuters-25794\tIpsos/Reuters\t2016-09-27\t2016-09-28\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t7.0\t\t7.0\t8.0\tipsos-reuters-25794\tIpsos/Reuters\t2016-09-27\t2016-09-28\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n36.0\t22.0\t\t19.0\t23.0\tipsos-reuters-25794\tIpsos/Reuters\t2016-09-27\t2016-09-28\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t8.0\t3.0\t10.0\tlucid-the-times-picayune-26453\tLucid/The Times-Picayune\t2016-09-26\t2016-09-28\t\tLikely Voters\t360\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t7.0\t5.0\t5.0\trasmussen-25801\tRasmussen\t2016-09-26\t2016-09-28\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1500\t3.0\tIVR/Online\tNonpartisan\tNone\n10.0\t79.0\t2.0\t3.0\t6.0\trasmussen-25801\tRasmussen\t2016-09-26\t2016-09-28\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n79.0\t13.0\t4.0\t1.0\t3.0\trasmussen-25801\tRasmussen\t2016-09-26\t2016-09-28\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n39.0\t27.0\t15.0\t12.0\t7.0\trasmussen-25801\tRasmussen\t2016-09-26\t2016-09-28\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n49.0\t47.0\t\t4.0\t\tupi-cvoter-25824\tUPI/CVOTER\t2016-09-22\t2016-09-28\t\tLikely Voters\t1234\t3.0\tInternet\tNonpartisan\tNone\n39.0\t44.0\t6.0\t3.0\t7.0\techelon-insights-r-25816\tEchelon Insights (R)\t2016-09-26\t2016-09-27\tIf the election for President were held today, for whom would you vote?\tLikely Voters\t1529\t\tInternet\tPollster\tRep\n42.0\t47.0\t\t\t11.0\techelon-insights-r-25816\tEchelon Insights (R)\t2016-09-26\t2016-09-27\tIf the election for President were held today and the choices were Hillary Clinton, the Democratic candidate, and Donald Trump, the Republican candidate, for whom would you vote?\tLikely Voters\t1529\t\tInternet\tPollster\tRep\n41.0\t45.0\t\t\t14.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1253\t3.0\tInternet\tNonpartisan\tNone\n8.0\t86.0\t\t\t6.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t478\t\tInternet\tNonpartisan\tNone\n82.0\t8.0\t\t\t11.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t405\t\tInternet\tNonpartisan\tNone\n40.0\t32.0\t\t\t28.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t369\t\tInternet\tNonpartisan\tNone\n38.0\t41.0\t8.0\t4.0\t8.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters\t1253\t3.0\tInternet\tNonpartisan\tNone\n7.0\t82.0\t3.0\t4.0\t4.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Democrat\t478\t\tInternet\tNonpartisan\tNone\n77.0\t7.0\t6.0\t1.0\t8.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Republican\t405\t\tInternet\tNonpartisan\tNone\n36.0\t25.0\t17.0\t8.0\t14.0\tmorning-consult-25787\tMorning Consult\t2016-09-26\t2016-09-27\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - independent\t369\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t8.0\t2.0\t9.0\tlucid-the-times-picayune-26452\tLucid/The Times-Picayune\t2016-09-25\t2016-09-27\t\tLikely Voters\t444\t\tInternet\tNonpartisan\tNone\n48.0\t48.0\t\t4.0\t\tupi-cvoter-25790\tUPI/CVOTER\t2016-09-21\t2016-09-27\t\tLikely Voters\t1239\t3.0\tInternet\tNonpartisan\tNone\n41.0\t49.0\t4.0\t5.0\t1.0\tpublic-religion-research-institute-26411\tPublic Religion Research Institute \t2016-09-01\t2016-09-27\t\tLikely Voters\t1296\t3.5\tLive Phone/Online\tNonpartisan\tNone\n39.0\t43.0\t7.0\t2.0\t9.0\tlucid-the-times-picayune-26451\tLucid/The Times-Picayune\t2016-09-24\t2016-09-26\t\tLikely Voters\t499\t\tInternet\tNonpartisan\tNone\n38.0\t44.0\t\t7.0\t10.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1041\t3.5\tInternet\tNonpartisan\tNone\n7.0\t84.0\t\t2.0\t7.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t8.0\t\t8.0\t6.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n29.0\t20.0\t\t24.0\t27.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t7.0\t5.0\t9.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1041\t3.5\tInternet\tNonpartisan\tNone\n7.0\t82.0\t3.0\t2.0\t6.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t6.0\t9.0\t5.0\t3.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n27.0\t20.0\t18.0\t11.0\t24.0\tipsos-reuters-25788\tIpsos/Reuters\t2016-09-22\t2016-09-26\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-25789\tUPI/CVOTER\t2016-09-20\t2016-09-26\t\tLikely Voters\t1174\t3.0\tInternet\tNonpartisan\tNone\n39.0\t42.0\t7.0\t2.0\t9.0\tlucid-the-times-picayune-26450\tLucid/The Times-Picayune\t2016-09-23\t2016-09-25\t\tLikely Voters\t506\t\tInternet\tNonpartisan\tNone\n43.0\t43.0\t2.0\t4.0\t7.0\tpublic-religion-research-institute-the-atlantic-25982\tPublic Religion Research Institute/The Atlantic\t2016-09-22\t2016-09-25\t\tLikely Voters\t461\t\tLive Phone\tNonpartisan\tNone\n42.0\t46.0\t8.0\t3.0\t2.0\tmonmouth-university-25669\tMonmouth University\t2016-09-22\t2016-09-25\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t729\t3.6\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t4.0\t2.0\tmonmouth-university-25669\tMonmouth University\t2016-09-22\t2016-09-25\t\tLikely Voters\t729\t3.6\tLive Phone\tNonpartisan\tNone\n43.0\t44.0\t8.0\t3.0\t4.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t1115\t2.9\tLive Phone\tNonpartisan\tNone\n6.0\t90.0\t2.0\t2.0\t2.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t5.0\t5.0\t0.0\t3.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t35.0\t15.0\t5.0\t4.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t47.0\t\t1.0\t6.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote? (If undecided) As of today, do you lean more toward Clinton and Kaine or Trump and Pence?\tLikely Voters\t1115\t2.9\tLive Phone\tNonpartisan\tNone\n6.0\t91.0\t\t1.0\t2.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote? (If undecided) As of today, do you lean more toward Clinton and Kaine or Trump and Pence?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n90.0\t6.0\t\t0.0\t4.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote? (If undecided) As of today, do you lean more toward Clinton and Kaine or Trump and Pence?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n47.0\t43.0\t\t1.0\t9.0\tquinnipiac-25653\tQuinnipiac\t2016-09-22\t2016-09-25\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote? (If undecided) As of today, do you lean more toward Clinton and Kaine or Trump and Pence?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t51.0\t\t\t6.0\tnbc-surveymonkey-25719\tNBC/SurveyMonkey\t2016-09-19\t2016-09-25\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t13598\t1.1\tInternet\tNonpartisan\tNone\n40.0\t45.0\t10.0\t3.0\t2.0\tnbc-surveymonkey-25719\tNBC/SurveyMonkey\t2016-09-19\t2016-09-25\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t13598\t1.1\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25668\tUPI/CVOTER\t2016-09-19\t2016-09-25\t\tLikely Voters\t1052\t3.0\tInternet\tNonpartisan\tNone\n41.0\t44.0\t5.0\t3.0\t7.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t948\t3.8\tInternet\tNonpartisan\tNone\n10.0\t81.0\t2.0\t2.0\t6.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t421\t\tInternet\tNonpartisan\tNone\n82.0\t6.0\t5.0\t2.0\t5.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t302\t\tInternet\tNonpartisan\tNone\n39.0\t40.0\t8.0\t5.0\t9.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t392\t\tInternet\tNonpartisan\tNone\n44.0\t48.0\t\t7.0\t2.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\t\tRegistered Voters\t948\t3.8\tInternet\tNonpartisan\tNone\n10.0\t86.0\t\t3.0\t1.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\t\tRegistered Voters - Democrat\t421\t\tInternet\tNonpartisan\tNone\n88.0\t7.0\t\t4.0\t1.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\t\tRegistered Voters - Republican\t302\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t\t12.0\t3.0\tyougov-economist-25649\tYouGov/Economist\t2016-09-22\t2016-09-24\t\tRegistered Voters - independent\t392\t\tInternet\tNonpartisan\tNone\n42.0\t44.0\t\t\t4.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1712\t2.0\tInternet\tNonpartisan\tNone\n8.0\t84.0\t\t\t7.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t621\t\tInternet\tNonpartisan\tNone\n82.0\t8.0\t\t\t11.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t548\t\tInternet\tNonpartisan\tNone\n41.0\t33.0\t\t\t26.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t543\t\tInternet\tNonpartisan\tNone\n39.0\t38.0\t9.0\t4.0\t10.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters\t1712\t2.0\tInternet\tNonpartisan\tNone\n7.0\t80.0\t3.0\t2.0\t7.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Democrat\t621\t\tInternet\tNonpartisan\tNone\n79.0\t6.0\t7.0\t1.0\t6.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Republican\t548\t\tInternet\tNonpartisan\tNone\n35.0\t23.0\t18.0\t9.0\t16.0\tmorning-consult-25644\tMorning Consult\t2016-09-22\t2016-09-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - independent\t543\t\tInternet\tNonpartisan\tNone\n46.0\t46.0\t\t3.0\t4.0\tbloomberg-selzer-25650\tBloomberg/Selzer\t2016-09-21\t2016-09-24\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t1002\t\tLive Phone\tNonpartisan\tNone\n43.0\t41.0\t8.0\t4.0\t4.0\tbloomberg-selzer-25650\tBloomberg/Selzer\t2016-09-21\t2016-09-24\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats, Donald Trump for the Republicans, Gary Johnson for the Libertarian Party, and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t1002\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25667\tUPI/CVOTER\t2016-09-18\t2016-09-24\t\tLikely Voters\t1022\t3.0\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25666\tUPI/CVOTER\t2016-09-17\t2016-09-23\t\tLikely Voters\t1091\t3.0\tInternet\tNonpartisan\tNone\n44.0\t46.0\t5.0\t1.0\t4.0\tabc-post-25643\tABC/Post\t2016-09-19\t2016-09-22\t\tLikely Voters\t651\t4.5\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t1.0\t3.0\tabc-post-25643\tABC/Post\t2016-09-19\t2016-09-22\t\tLikely Voters\t651\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t45.0\t6.0\t3.0\t3.0\tfranklin-pierce-rkm-boston-herald-25805\tFranklin Pierce/RKM/Boston Herald\t2016-09-18\t2016-09-22\t\tLikely Voters\t1017\t3.1\tLive Phone\tNonpartisan\tNone\n6.0\t84.0\t4.0\t3.0\t3.0\tfranklin-pierce-rkm-boston-herald-25805\tFranklin Pierce/RKM/Boston Herald\t2016-09-18\t2016-09-22\t\tLikely Voters - Democrat\t467\t\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t6.0\t2.0\t2.0\tfranklin-pierce-rkm-boston-herald-25805\tFranklin Pierce/RKM/Boston Herald\t2016-09-18\t2016-09-22\t\tLikely Voters - Republican\t449\t\tLive Phone\tNonpartisan\tNone\n47.0\t28.0\t9.0\t10.0\t7.0\tfranklin-pierce-rkm-boston-herald-25805\tFranklin Pierce/RKM/Boston Herald\t2016-09-18\t2016-09-22\t\tLikely Voters - independent\t85\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25665\tUPI/CVOTER\t2016-09-16\t2016-09-22\t\tLikely Voters\t1098\t3.0\tInternet\tNonpartisan\tNone\n44.0\t39.0\t8.0\t5.0\t5.0\trasmussen-25614\tRasmussen\t2016-09-20\t2016-09-21\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n14.0\t75.0\t3.0\t4.0\t4.0\trasmussen-25614\tRasmussen\t2016-09-20\t2016-09-21\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t10.0\t5.0\t5.0\t4.0\trasmussen-25614\tRasmussen\t2016-09-20\t2016-09-21\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n45.0\t27.0\t16.0\t6.0\t6.0\trasmussen-25614\tRasmussen\t2016-09-20\t2016-09-21\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25664\tUPI/CVOTER\t2016-09-15\t2016-09-21\t\tLikely Voters\t1073\t3.0\tInternet\tNonpartisan\tNone\n44.0\t47.0\t\t5.0\t5.0\targ-25604\tARG\t2016-09-17\t2016-09-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters\t990\t3.2\tLive Phone\tNonpartisan\tNone\n7.0\t88.0\t\t2.0\t3.0\targ-25604\tARG\t2016-09-17\t2016-09-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Democrat\t346\t\tLive Phone\tNonpartisan\tNone\n83.0\t9.0\t\t3.0\t5.0\targ-25604\tARG\t2016-09-17\t2016-09-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Republican\t306\t\tLive Phone\tNonpartisan\tNone\n46.0\t39.0\t\t9.0\t6.0\targ-25604\tARG\t2016-09-17\t2016-09-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - independent\t338\t\tLive Phone\tNonpartisan\tNone\n41.0\t48.0\t\t9.0\t2.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t758\t3.6\tLive Phone\tNonpartisan\tNone\n4.0\t94.0\t\t1.0\t1.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n87.0\t7.0\t\t5.0\t1.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t40.0\t\t20.0\t3.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t10.0\t5.0\t2.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters\t758\t3.6\tLive Phone\tNonpartisan\tNone\n3.0\t89.0\t3.0\t4.0\t1.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t6.0\t5.0\t1.0\t2.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t34.0\t20.0\t10.0\t5.0\tmcclatchy-marist-25630\tMcClatchy/Marist\t2016-09-15\t2016-09-20\tIf November's presidential election were held today, whom would you support if the candidates are:\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25663\tUPI/CVOTER\t2016-09-14\t2016-09-20\t\tLikely Voters\t1075\t3.0\tInternet\tNonpartisan\tNone\n38.0\t40.0\t7.0\t4.0\t11.0\tyougov-economist-25587\tYouGov/Economist\t2016-09-18\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1065\t\tInternet\tNonpartisan\tNone\n8.0\t81.0\t2.0\t3.0\t6.0\tyougov-economist-25587\tYouGov/Economist\t2016-09-18\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t438\t\tInternet\tNonpartisan\tNone\n75.0\t7.0\t6.0\t2.0\t11.0\tyougov-economist-25587\tYouGov/Economist\t2016-09-18\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t280\t\tInternet\tNonpartisan\tNone\n38.0\t30.0\t11.0\t7.0\t14.0\tyougov-economist-25587\tYouGov/Economist\t2016-09-18\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t347\t\tInternet\tNonpartisan\tNone\n37.0\t43.0\t9.0\t7.0\t4.0\tnbc-wsj-25607\tNBC/WSJ\t2016-09-16\t2016-09-19\tAnd, if the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tLikely Voters\t922\t3.23\tLive Phone\tNonpartisan\tNone\n41.0\t48.0\t\t4.0\t7.0\tnbc-wsj-25607\tNBC/WSJ\t2016-09-16\t2016-09-19\tIf the next election for president were held today, with (ROTATE) … Donald Trump and Mike Pence as the Republican candidates, and Hillary Clinton and Tim Kaine as the Democratic candidates, for whom would you vote?\tLikely Voters\t922\t3.23\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t9.0\t2.0\t5.0\tap-gfk-web-25631\tAP-GfK (web)\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were held today, for whom would you vote?\tLikely Voters\t1251\t\tInternet\tNonpartisan\tNone\n44.0\t50.0\t\t\t6.0\tap-gfk-web-25631\tAP-GfK (web)\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were held today, for whom would you vote?\tLikely Voters\t1251\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t5.0\t3.0\t12.0\ticitizen-25617\tICITIZEN\t2016-09-15\t2016-09-19\t\tRegistered Voters\t1000\t3.0\tInternet\tNonpartisan\tNone\n6.0\t82.0\t3.0\t2.0\t7.0\ticitizen-25617\tICITIZEN\t2016-09-15\t2016-09-19\t\tRegistered Voters - Democrat\t358\t\tInternet\tNonpartisan\tNone\n78.0\t4.0\t6.0\t1.0\t10.0\ticitizen-25617\tICITIZEN\t2016-09-15\t2016-09-19\t\tRegistered Voters - Republican\t312\t\tInternet\tNonpartisan\tNone\n31.0\t35.0\t8.0\t6.0\t20.0\ticitizen-25617\tICITIZEN\t2016-09-15\t2016-09-19\t\tRegistered Voters - independent\t330\t\tInternet\tNonpartisan\tNone\n39.0\t39.0\t\t10.0\t11.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1111\t3.4\tInternet\tNonpartisan\tNone\n5.0\t84.0\t\t6.0\t4.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n75.0\t6.0\t\t9.0\t10.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n35.0\t17.0\t\t28.0\t20.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t37.0\t7.0\t5.0\t10.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1111\t3.4\tInternet\tNonpartisan\tNone\n5.0\t80.0\t5.0\t5.0\t5.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n74.0\t6.0\t8.0\t5.0\t7.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n39.0\t16.0\t18.0\t10.0\t16.0\tipsos-reuters-25593\tIpsos/Reuters\t2016-09-15\t2016-09-19\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n47.0\t49.0\t\t5.0\t\tupi-cvoter-25662\tUPI/CVOTER\t2016-09-13\t2016-09-19\t\tLikely Voters\t1160\t3.0\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25594\tUPI/CVOTER\t2016-09-12\t2016-09-18\t\tLikely Voters\t1203\t3.0\tInternet\tNonpartisan\tNone\n45.0\t50.0\t\t\t6.0\tnbc-surveymonkey-25535\tNBC/SurveyMonkey\t2016-09-12\t2016-09-18\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tLikely Voters\t13230\t1.2\tInternet\tNonpartisan\tNone\n40.0\t45.0\t10.0\t4.0\t2.0\tnbc-surveymonkey-25535\tNBC/SurveyMonkey\t2016-09-12\t2016-09-18\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tLikely Voters\t13230\t1.2\tInternet\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-25595\tUPI/CVOTER\t2016-09-11\t2016-09-17\t\tLikely Voters\t1229\t3.0\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t\t12.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1639\t2.0\tInternet\tNonpartisan\tNone\n8.0\t85.0\t\t\t7.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t637\t\tInternet\tNonpartisan\tNone\n85.0\t7.0\t\t\t8.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t532\t\tInternet\tNonpartisan\tNone\n39.0\t37.0\t\t\t24.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t470\t\tInternet\tNonpartisan\tNone\n40.0\t42.0\t8.0\t3.0\t7.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters\t1639\t2.0\tInternet\tNonpartisan\tNone\n8.0\t80.0\t4.0\t3.0\t5.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Democrat\t637\t\tInternet\tNonpartisan\tNone\n82.0\t5.0\t6.0\t2.0\t5.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - Republican\t532\t\tInternet\tNonpartisan\tNone\n37.0\t31.0\t14.0\t6.0\t13.0\tmorning-consult-25522\tMorning Consult\t2016-09-15\t2016-09-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, for whom would you vote?\tLikely Voters - independent\t470\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t9.0\t4.0\t\tsaint-leo-university-25600\tSaint Leo University\t2016-09-10\t2016-09-16\tIf the Presidential election was held today between Hillary Clinton and Donald Trump, Gary Johnson and Jill Stein, which candidate would you support?\tLikely Voters\t1005\t3.0\tInternet\tNonpartisan\tNone\n47.0\t47.0\t\t5.0\t\tupi-cvoter-25582\tUPI/CVOTER\t2016-09-10\t2016-09-16\t\tLikely Voters\t1246\t3.0\tInternet\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-25581\tUPI/CVOTER\t2016-09-09\t2016-09-15\t\tLikely Voters\t1229\t3.0\tInternet\tNonpartisan\tNone\n40.0\t41.0\t8.0\t4.0\t6.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters\t867\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t81.0\t4.0\t5.0\t5.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n80.0\t6.0\t8.0\t3.0\t4.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n36.0\t31.0\t16.0\t9.0\t8.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n46.0\t45.0\t\t2.0\t7.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters\t867\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t89.0\t\t1.0\t5.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n87.0\t7.0\t\t1.0\t4.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n48.0\t35.0\t\t3.0\t13.0\tfox-25509\tFOX\t2016-09-11\t2016-09-14\t\tLikely Voters - independent\t\t7.0\tLive Phone\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-25511\tUPI/CVOTER\t2016-09-08\t2016-09-14\t\tLikely Voters\t1265\t3.0\tInternet\tNonpartisan\tNone\n42.0\t40.0\t7.0\t4.0\t7.0\trasmussen-25496\tRasmussen\t2016-09-12\t2016-09-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n16.0\t74.0\t2.0\t2.0\t5.0\trasmussen-25496\tRasmussen\t2016-09-12\t2016-09-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t10.0\t6.0\t4.0\t3.0\trasmussen-25496\tRasmussen\t2016-09-12\t2016-09-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n36.0\t32.0\t15.0\t5.0\t12.0\trasmussen-25496\tRasmussen\t2016-09-12\t2016-09-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n40.0\t42.0\t5.0\t5.0\t7.0\tyougov-economist-25487\tYouGov/Economist\t2016-09-10\t2016-09-13\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1087\t\tInternet\tNonpartisan\tNone\n6.0\t85.0\t1.0\t2.0\t5.0\tyougov-economist-25487\tYouGov/Economist\t2016-09-10\t2016-09-13\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t414\t\tInternet\tNonpartisan\tNone\n83.0\t6.0\t3.0\t1.0\t6.0\tyougov-economist-25487\tYouGov/Economist\t2016-09-10\t2016-09-13\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t311\t\tInternet\tNonpartisan\tNone\n34.0\t37.0\t10.0\t9.0\t10.0\tyougov-economist-25487\tYouGov/Economist\t2016-09-10\t2016-09-13\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t362\t\tInternet\tNonpartisan\tNone\n44.0\t46.0\t\t5.0\t4.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters\t1433\t\tLive Phone\tNonpartisan\tNone\n9.0\t87.0\t\t3.0\t2.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t7.0\t\t4.0\t4.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t39.0\t\t11.0\t8.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t42.0\t8.0\t5.0\t2.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters\t1433\t\tLive Phone\tNonpartisan\tNone\n8.0\t82.0\t6.0\t4.0\t0.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n83.0\t5.0\t8.0\t2.0\t2.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t34.0\t13.0\t11.0\t4.0\tcbs-times-25495\tCBS/Times\t2016-09-09\t2016-09-13\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t48.0\t\t3.0\t6.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t960\t3.2\tLive Phone\tNonpartisan\tNone\n4.0\t92.0\t\t0.0\t4.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Democrat\t\t5.61\tLive Phone\tNonpartisan\tNone\n86.0\t10.0\t\t2.0\t2.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Republican\t\t5.57\tLive Phone\tNonpartisan\tNone\n45.0\t40.0\t\t7.0\t8.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - independent\t\t5.75\tLive Phone\tNonpartisan\tNone\n39.0\t41.0\t13.0\t4.0\t3.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t960\t3.2\tLive Phone\tNonpartisan\tNone\n3.0\t88.0\t7.0\t2.0\t0.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - Democrat\t\t5.61\tLive Phone\tNonpartisan\tNone\n82.0\t7.0\t8.0\t2.0\t0.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - Republican\t\t5.57\tLive Phone\tNonpartisan\tNone\n38.0\t29.0\t20.0\t9.0\t3.0\tquinnipiac-25492\tQuinnipiac\t2016-09-08\t2016-09-13\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - independent\t\t5.75\tLive Phone\tNonpartisan\tNone\n48.0\t47.0\t\t5.0\t\tupi-cvoter-25503\tUPI/CVOTER\t2016-09-07\t2016-09-13\t\tLikely Voters\t1245\t3.0\tInternet\tNonpartisan\tNone\n39.0\t40.0\t\t9.0\t11.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1127\t\tInternet\tNonpartisan\tNone\n8.0\t79.0\t\t8.0\t6.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n79.0\t7.0\t\t6.0\t7.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n30.0\t22.0\t\t27.0\t21.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t39.0\t8.0\t4.0\t10.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1127\t\tInternet\tNonpartisan\tNone\n8.0\t78.0\t5.0\t5.0\t5.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t6.0\t8.0\t1.0\t6.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n31.0\t22.0\t15.0\t11.0\t21.0\tipsos-reuters-25486\tIpsos/Reuters\t2016-09-08\t2016-09-12\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n49.0\t46.0\t\t5.0\t\tupi-cvoter-25491\tUPI/CVOTER\t2016-09-06\t2016-09-12\t\tLikely Voters\t1232\t3.0\tInternet\tNonpartisan\tNone\n38.0\t45.0\t10.0\t6.0\t1.0\tpew-25612\tPew\t2016-08-16\t2016-09-12\t\tRegistered Voters\t3941\t2.6\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t\t8.0\tnbc-surveymonkey-25466\tNBC/SurveyMonkey\t2016-09-05\t2016-09-11\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t16220\t1.1\tInternet\tNonpartisan\tNone\n40.0\t42.0\t11.0\t4.0\t3.0\tnbc-surveymonkey-25466\tNBC/SurveyMonkey\t2016-09-05\t2016-09-11\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t16220\t1.1\tInternet\tNonpartisan\tNone\n49.0\t46.0\t\t5.0\t\tupi-cvoter-25458\tUPI/CVOTER\t2016-09-05\t2016-09-11\t\tLikely Voters\t1260\t3.0\tInternet\tNonpartisan\tNone\n49.0\t45.0\t\t6.0\t\tupi-cvoter-25457\tUPI/CVOTER\t2016-09-04\t2016-09-10\t\tLikely Voters\t1244\t3.0\tInternet\tNonpartisan\tNone\n49.0\t46.0\t\t6.0\t\tupi-cvoter-25456\tUPI/CVOTER\t2016-09-03\t2016-09-09\t\tLikely Voters\t1260\t3.0\tInternet\tNonpartisan\tNone\n43.0\t44.0\t\t\t13.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t1710\t2.0\tInternet\tNonpartisan\tNone\n11.0\t83.0\t\t\t7.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Democrat\t691\t\tInternet\tNonpartisan\tNone\n84.0\t6.0\t\t\t10.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - Republican\t549\t\tInternet\tNonpartisan\tNone\n43.0\t33.0\t\t\t25.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters - independent\t470\t\tInternet\tNonpartisan\tNone\n39.0\t41.0\t10.0\t3.0\t8.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters\t1710\t2.0\tInternet\tNonpartisan\tNone\n10.0\t79.0\t4.0\t2.0\t6.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters - Democrat\t706\t\tInternet\tNonpartisan\tNone\n79.0\t6.0\t8.0\t1.0\t7.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters - Republican\t646\t\tInternet\tNonpartisan\tNone\n35.0\t26.0\t21.0\t5.0\t13.0\tmorning-consult-25447\tMorning Consult\t2016-09-06\t2016-09-08\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tLikely Voters - independent\t650\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t9.0\t3.0\t2.0\tabc-post-25446\tABC/Post\t2016-09-05\t2016-09-08\t\tLikely Voters\t642\t4.5\tLive Phone\tNonpartisan\tNone\n43.0\t51.0\t\t3.0\t2.0\tabc-post-25446\tABC/Post\t2016-09-05\t2016-09-08\t\tLikely Voters\t642\t4.5\tLive Phone\tNonpartisan\tNone\n48.0\t46.0\t\t6.0\t\tupi-cvoter-25455\tUPI/CVOTER\t2016-09-02\t2016-09-08\t\tLikely Voters\t1256\t3.0\tInternet\tNonpartisan\tNone\n39.0\t43.0\t9.0\t4.0\t5.0\trasmussen-25420\tRasmussen\t2016-09-06\t2016-09-07\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n9.0\t78.0\t7.0\t2.0\t4.0\trasmussen-25420\tRasmussen\t2016-09-06\t2016-09-07\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n75.0\t11.0\t8.0\t2.0\t4.0\trasmussen-25420\tRasmussen\t2016-09-06\t2016-09-07\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n37.0\t36.0\t13.0\t5.0\t9.0\trasmussen-25420\tRasmussen\t2016-09-06\t2016-09-07\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n48.0\t47.0\t\t6.0\t\tupi-cvoter-25454\tUPI/CVOTER\t2016-09-01\t2016-09-07\t\tLikely Voters\t1226\t3.0\tInternet\tNonpartisan\tNone\n38.0\t40.0\t7.0\t7.0\t8.0\tyougov-economist-25411\tYouGov/Economist\t2016-09-04\t2016-09-06\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1077\t4.7\tInternet\tNonpartisan\tNone\n10.0\t78.0\t2.0\t4.0\t7.0\tyougov-economist-25411\tYouGov/Economist\t2016-09-04\t2016-09-06\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t424\t\tInternet\tNonpartisan\tNone\n80.0\t2.0\t9.0\t2.0\t7.0\tyougov-economist-25411\tYouGov/Economist\t2016-09-04\t2016-09-06\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t305\t\tInternet\tNonpartisan\tNone\n31.0\t35.0\t11.0\t12.0\t11.0\tyougov-economist-25411\tYouGov/Economist\t2016-09-04\t2016-09-06\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t348\t\tInternet\tNonpartisan\tNone\n47.0\t47.0\t\t6.0\t\tupi-cvoter-25423\tUPI/CVOTER\t2016-08-31\t2016-09-06\t\tLikely Voters\t1262\t3.0\tInternet\tNonpartisan\tNone\n38.0\t40.0\t\t11.0\t11.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1084\t\tInternet\tNonpartisan\tNone\n10.0\t78.0\t\t7.0\t5.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t6.0\t\t11.0\t7.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n23.0\t24.0\t\t30.0\t23.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t40.0\t8.0\t5.0\t9.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1084\t\tInternet\tNonpartisan\tNone\n9.0\t78.0\t4.0\t6.0\t4.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t6.0\t9.0\t4.0\t6.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n23.0\t24.0\t22.0\t12.0\t18.0\tipsos-reuters-25441\tIpsos/Reuters\t2016-09-01\t2016-09-05\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n46.0\t48.0\t\t6.0\t\tupi-cvoter-25416\tUPI/CVOTER\t2016-08-30\t2016-09-05\t\tLikely Voters\t1220\t3.0\tInternet\tNonpartisan\tNone\n45.0\t43.0\t7.0\t2.0\t1.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tLikely Voters\t786\t3.5\tLive Phone\tNonpartisan\tNone\n3.0\t90.0\t4.0\t0.0\t3.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tLikely Voters - Democrat\t\t6.0\tLive Phone\tNonpartisan\tNone\n92.0\t3.0\t3.0\t2.0\t0.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tLikely Voters - Republican\t\t6.0\tLive Phone\tNonpartisan\tNone\n29.0\t49.0\t16.0\t6.0\t1.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n49.0\t48.0\t\t4.0\t0.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters\t786\t3.5\tLive Phone\tNonpartisan\tNone\n4.0\t96.0\t\t0.0\t0.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Democrat\t\t6.0\tLive Phone\tNonpartisan\tNone\n93.0\t3.0\t\t4.0\t0.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - Republican\t\t6.0\tLive Phone\tNonpartisan\tNone\n55.0\t37.0\t\t8.0\t0.0\tcnn-25340\tCNN\t2016-09-01\t2016-09-04\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tLikely Voters - independent\t\t6.5\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t8.0\t4.0\t3.0\tfranklin-pierce-rkm-boston-herald-25342\tFranklin Pierce/RKM/Boston Herald\t2016-08-31\t2016-09-04\t\tLikely Voters\t1025\t\tLive Phone\tNonpartisan\tNone\n3.0\t89.0\t5.0\t2.0\t1.0\tfranklin-pierce-rkm-boston-herald-25342\tFranklin Pierce/RKM/Boston Herald\t2016-08-31\t2016-09-04\t\tLikely Voters - Democrat\t375\t\tLive Phone\tNonpartisan\tNone\n85.0\t6.0\t5.0\t1.0\t3.0\tfranklin-pierce-rkm-boston-herald-25342\tFranklin Pierce/RKM/Boston Herald\t2016-08-31\t2016-09-04\t\tLikely Voters - Republican\t312\t\tLive Phone\tNonpartisan\tNone\n45.0\t30.0\t14.0\t5.0\t6.0\tfranklin-pierce-rkm-boston-herald-25342\tFranklin Pierce/RKM/Boston Herald\t2016-08-31\t2016-09-04\t\tLikely Voters - independent\t241\t\tLive Phone\tNonpartisan\tNone\n47.0\t49.0\t\t5.0\t\tupi-cvoter-25397\tUPI/CVOTER\t2016-08-29\t2016-09-04\t\tLikely Voters\t1237\t3.0\tInternet\tNonpartisan\tNone\n42.0\t48.0\t\t\t10.0\tnbc-surveymonkey-25341\tNBC/SurveyMonkey\t2016-08-29\t2016-09-04\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t32226\t1.0\tInternet\tNonpartisan\tNone\n37.0\t41.0\t12.0\t4.0\t6.0\tnbc-surveymonkey-25341\tNBC/SurveyMonkey\t2016-08-29\t2016-09-04\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t32226\t1.0\tInternet\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25346\tUPI/CVOTER\t2016-08-28\t2016-09-03\t\tLikely Voters\t1242\t3.0\tInternet\tNonpartisan\tNone\n40.0\t42.0\t\t\t18.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n8.0\t84.0\t\t\t9.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t706\t\tInternet\tNonpartisan\tNone\n81.0\t8.0\t\t\t11.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t646\t\tInternet\tNonpartisan\tNone\n33.0\t31.0\t\t\t36.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t650\t\tInternet\tNonpartisan\tNone\n36.0\t38.0\t9.0\t4.0\t13.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n7.0\t78.0\t5.0\t4.0\t6.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t706\t\tInternet\tNonpartisan\tNone\n77.0\t6.0\t6.0\t2.0\t9.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t646\t\tInternet\tNonpartisan\tNone\n27.0\t25.0\t17.0\t7.0\t25.0\tmorning-consult-25336\tMorning Consult\t2016-09-01\t2016-09-02\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t650\t\tInternet\tNonpartisan\tNone\n45.0\t49.0\t\t6.0\t\tupi-cvoter-25345\tUPI/CVOTER\t2016-08-27\t2016-09-02\t\tLikely Voters\t1142\t3.0\tInternet\tNonpartisan\tNone\n40.0\t42.0\t11.0\t3.0\t5.0\tgwu-battleground-25409\tGWU/Battleground\t2016-08-28\t2016-09-01\t\tLikely Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t6.0\t\tupi-cvoter-25344\tUPI/CVOTER\t2016-08-26\t2016-09-01\t\tLikely Voters\t1172\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t\t4.0\t8.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters\t887\t3.4\tLive Phone\tNonpartisan\tNone\n5.0\t87.0\t\t2.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - Democrat\t257\t\tLive Phone\tNonpartisan\tNone\n86.0\t6.0\t\t3.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n44.0\t38.0\t\t7.0\t12.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n43.0\t44.0\t\t4.0\t8.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t861\t3.4\tLive Phone\tNonpartisan\tNone\n5.0\t87.0\t\t2.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Democrat\t257\t\tLive Phone\tNonpartisan\tNone\n86.0\t6.0\t\t3.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n44.0\t38.0\t\t7.0\t12.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n39.0\t39.0\t12.0\t4.0\t6.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters\t887\t3.4\tLive Phone\tNonpartisan\tNone\n6.0\t83.0\t5.0\t4.0\t3.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - Democrat\t257\t\tLive Phone\tNonpartisan\tNone\n81.0\t5.0\t7.0\t1.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n36.0\t27.0\t22.0\t5.0\t10.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n39.0\t39.0\t12.0\t4.0\t6.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tLikely Voters\t861\t3.4\tLive Phone\tNonpartisan\tNone\n6.0\t83.0\t5.0\t4.0\t3.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tLikely Voters - Democrat\t257\t\tLive Phone\tNonpartisan\tNone\n81.0\t5.0\t7.0\t1.0\t5.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tLikely Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n36.0\t27.0\t22.0\t5.0\t10.0\tibd-tipp-25331\tIBD/TIPP\t2016-08-26\t2016-09-01\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tLikely Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n46.0\t48.0\t\t6.0\t\tupi-cvoter-25343\tUPI/CVOTER\t2016-08-25\t2016-08-31\t\tLikely Voters\t1173\t3.0\tInternet\tNonpartisan\tNone\n40.0\t39.0\t7.0\t6.0\t7.0\trasmussen-25310\tRasmussen\t2016-08-29\t2016-08-30\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n15.0\t73.0\t3.0\t7.0\t4.0\trasmussen-25310\tRasmussen\t2016-08-29\t2016-08-30\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n71.0\t12.0\t8.0\t3.0\t6.0\trasmussen-25310\tRasmussen\t2016-08-29\t2016-08-30\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n36.0\t28.0\t12.0\t10.0\t13.0\trasmussen-25310\tRasmussen\t2016-08-29\t2016-08-30\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n39.0\t41.0\t9.0\t5.0\t6.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters\t1011\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t81.0\t5.0\t4.0\t4.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n74.0\t8.0\t9.0\t2.0\t6.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n38.0\t26.0\t20.0\t9.0\t6.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - independent\t\t7.5\tLive Phone\tNonpartisan\tNone\n42.0\t48.0\t\t1.0\t9.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters\t1011\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t88.0\t\t0.0\t5.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - Democrat\t\t5.0\tLive Phone\tNonpartisan\tNone\n79.0\t13.0\t\t0.0\t8.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - Republican\t\t4.5\tLive Phone\tNonpartisan\tNone\n41.0\t36.0\t\t5.0\t17.0\tfox-25306\tFOX\t2016-08-28\t2016-08-30\t\tRegistered Voters - independent\t\t7.5\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25320\tUPI/CVOTER\t2016-08-24\t2016-08-30\t\tLikely Voters\t1162\t3.0\tInternet\tNonpartisan\tNone\n37.0\t42.0\t7.0\t5.0\t9.0\tyougov-economist-25297\tYouGov/Economist\t2016-08-27\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1119\t\tInternet\tNonpartisan\tNone\n5.0\t84.0\t1.0\t5.0\t5.0\tyougov-economist-25297\tYouGov/Economist\t2016-08-27\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t444\t\tInternet\tNonpartisan\tNone\n78.0\t5.0\t8.0\t1.0\t8.0\tyougov-economist-25297\tYouGov/Economist\t2016-08-27\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t293\t\tInternet\tNonpartisan\tNone\n32.0\t34.0\t14.0\t7.0\t14.0\tyougov-economist-25297\tYouGov/Economist\t2016-08-27\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t382\t\tInternet\tNonpartisan\tNone\n39.0\t40.0\t\t9.0\t12.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1404\t\tInternet\tNonpartisan\tNone\n11.0\t79.0\t\t4.0\t6.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t5.0\t\t8.0\t8.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n30.0\t18.0\t\t29.0\t22.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t40.0\t6.0\t6.0\t11.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1404\t\tInternet\tNonpartisan\tNone\n11.0\t78.0\t3.0\t2.0\t6.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t5.0\t7.0\t5.0\t8.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n32.0\t18.0\t15.0\t20.0\t14.0\tipsos-reuters-25305\tIpsos/Reuters\t2016-08-25\t2016-08-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n41.0\t48.0\t\t\t11.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t89.0\t\t\t4.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - Democrat\t360\t\tLive Phone\tNonpartisan\tNone\n85.0\t7.0\t\t\t8.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - Republican\t309\t\tLive Phone\tNonpartisan\tNone\n37.0\t43.0\t\t\t20.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tIf the general election was held today and the candidates were Democrat Hillary Clinton or Republican Donald Trump, for whom will you vote or lean toward?\tLikely Voters - independent\t318\t\tLive Phone\tNonpartisan\tNone\n35.0\t42.0\t9.0\t4.0\t11.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n3.0\t81.0\t4.0\t5.0\t7.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - Democrat\t360\t\tLive Phone\tNonpartisan\tNone\n78.0\t7.0\t6.0\t2.0\t8.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - Republican\t309\t\tLive Phone\tNonpartisan\tNone\n28.0\t32.0\t19.0\t5.0\t16.0\tsuffolk-usa-today-25319\tSuffolk/USA Today\t2016-08-24\t2016-08-29\tYour state’s presidential ballot may include Libertarian Gary Johnson and Green Party candidate Jill Stein. If the general election was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Green Party Jill Stein, or Libertarian Gary Johnson, for whom will you vote or lean toward?\tLikely Voters - independent\t318\t\tLive Phone\tNonpartisan\tNone\n47.0\t50.0\t\t3.0\t\tupi-cvoter-25299\tUPI/CVOTER\t2016-08-23\t2016-08-29\t\tLikely Voters\t1173\t3.0\tInternet\tNonpartisan\tNone\n37.0\t42.0\t6.0\t5.0\t10.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t881\t3.3\tIVR/Online\tPollster\tDem\n7.0\t74.0\t5.0\t7.0\t6.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n76.0\t10.0\t5.0\t2.0\t8.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n37.0\t32.0\t8.0\t6.0\t16.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n43.0\t48.0\t\t\t9.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t881\t3.3\tIVR/Online\tPollster\tDem\n10.0\t84.0\t\t\t6.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n83.0\t10.0\t\t\t7.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n45.0\t41.0\t\t\t15.0\tppp-d-25292\tPPP (D)\t2016-08-26\t2016-08-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n39.0\t46.0\t7.0\t3.0\t5.0\tmonmouth-university-25281\tMonmouth University\t2016-08-25\t2016-08-28\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t689\t3.7\tLive Phone\tNonpartisan\tNone\n42.0\t49.0\t\t4.0\t5.0\tmonmouth-university-25281\tMonmouth University\t2016-08-25\t2016-08-28\t\tLikely Voters\t689\t3.7\tLive Phone\tNonpartisan\tNone\n47.0\t50.0\t\t3.0\t\tupi-cvoter-25291\tUPI/CVOTER\t2016-08-22\t2016-08-28\t\tLikely Voters\t1145\t3.0\tInternet\tNonpartisan\tNone\n42.0\t48.0\t\t\t10.0\tnbc-surveymonkey-25289\tNBC/SurveyMonkey\t2016-08-22\t2016-08-28\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t24104\t1.0\tInternet\tNonpartisan\tNone\n37.0\t41.0\t11.0\t5.0\t6.0\tnbc-surveymonkey-25289\tNBC/SurveyMonkey\t2016-08-22\t2016-08-28\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t24104\t1.0\tInternet\tNonpartisan\tNone\n47.0\t50.0\t\t3.0\t\tupi-cvoter-25279\tUPI/CVOTER\t2016-08-21\t2016-08-27\t\tLikely Voters\t1157\t3.0\tInternet\tNonpartisan\tNone\n40.0\t43.0\t\t\t17.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2007\t2.0\tInternet\tNonpartisan\tNone\n7.0\t83.0\t\t\t10.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t699\t\tInternet\tNonpartisan\tNone\n81.0\t9.0\t\t\t10.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t643\t\tInternet\tNonpartisan\tNone\n34.0\t35.0\t\t\t31.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t665\t\tInternet\tNonpartisan\tNone\n37.0\t39.0\t8.0\t3.0\t12.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2007\t2.0\tInternet\tNonpartisan\tNone\n6.0\t80.0\t5.0\t2.0\t7.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t699\t\tInternet\tNonpartisan\tNone\n78.0\t7.0\t6.0\t1.0\t8.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t643\t\tInternet\tNonpartisan\tNone\n30.0\t27.0\t14.0\t7.0\t23.0\tmorning-consult-25276\tMorning Consult\t2016-08-24\t2016-08-26\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t665\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t9.0\t5.0\t7.0\trasmussen-25259\tRasmussen\t2016-08-23\t2016-08-24\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n8.0\t79.0\t4.0\t3.0\t5.0\trasmussen-25259\tRasmussen\t2016-08-23\t2016-08-24\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n76.0\t12.0\t6.0\t2.0\t4.0\trasmussen-25259\tRasmussen\t2016-08-23\t2016-08-24\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n32.0\t28.0\t20.0\t8.0\t12.0\trasmussen-25259\tRasmussen\t2016-08-23\t2016-08-24\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n35.0\t42.0\t\t9.0\t13.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1049\t\tInternet\tNonpartisan\tNone\n7.0\t81.0\t\t6.0\t7.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n73.0\t6.0\t\t10.0\t11.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t20.0\t\t24.0\t22.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n36.0\t39.0\t7.0\t6.0\t12.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1049\t\tInternet\tNonpartisan\tNone\n8.0\t74.0\t4.0\t6.0\t7.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n75.0\t5.0\t9.0\t3.0\t9.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t20.0\t16.0\t13.0\t16.0\tipsos-reuters-25260\tIpsos/Reuters\t2016-08-20\t2016-08-24\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n49.0\t48.0\t\t4.0\t\tupi-cvoter-25271\tUPI/CVOTER\t2016-08-18\t2016-08-24\t\tLikely Voters\t1187\t3.0\tInternet\tNonpartisan\tNone\n41.0\t51.0\t\t3.0\t4.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t1498\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t92.0\t\t1.0\t3.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t12.0\t\t0.0\t3.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t\t8.0\t5.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t45.0\t10.0\t4.0\t3.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t1498\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t88.0\t3.0\t3.0\t2.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t10.0\t6.0\t1.0\t3.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t33.0\t19.0\t9.0\t5.0\tquinnipiac-25263\tQuinnipiac\t2016-08-18\t2016-08-24\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t42.0\t6.0\t6.0\t10.0\tyougov-economist-25247\tYouGov/Economist\t2016-08-19\t2016-08-23\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1080\t4.1\tInternet\tNonpartisan\tNone\n5.0\t82.0\t3.0\t4.0\t7.0\tyougov-economist-25247\tYouGov/Economist\t2016-08-19\t2016-08-23\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t409\t\tInternet\tNonpartisan\tNone\n84.0\t2.0\t5.0\t3.0\t7.0\tyougov-economist-25247\tYouGov/Economist\t2016-08-19\t2016-08-23\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t290\t\tInternet\tNonpartisan\tNone\n32.0\t38.0\t9.0\t8.0\t12.0\tyougov-economist-25247\tYouGov/Economist\t2016-08-19\t2016-08-23\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t381\t\tInternet\tNonpartisan\tNone\n48.0\t48.0\t\t4.0\t\tupi-cvoter-25262\tUPI/CVOTER\t2016-08-17\t2016-08-23\t\tLikely Voters\t1196\t3.0\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t4.0\t\tupi-cvoter-25248\tUPI/CVOTER\t2016-08-16\t2016-08-22\t\tLikely Voters\t1214\t3.0\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-25238\tUPI/CVOTER\t2016-08-15\t2016-08-21\t\tLikely Voters\t1259\t3.0\tInternet\tNonpartisan\tNone\n42.0\t50.0\t\t\t8.0\tnbc-surveymonkey-25235\tNBC/SurveyMonkey\t2016-08-15\t2016-08-21\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t17459\t1.1\tInternet\tNonpartisan\tNone\n38.0\t43.0\t11.0\t5.0\t4.0\tnbc-surveymonkey-25235\tNBC/SurveyMonkey\t2016-08-15\t2016-08-21\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t17459\t1.1\tInternet\tNonpartisan\tNone\n38.0\t44.0\t\t\t18.0\tmorning-consult-25218\tMorning Consult\t2016-08-18\t2016-08-20\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n7.0\t86.0\t\t\t7.0\tmorning-consult-25218\tMorning Consult\t2016-08-18\t2016-08-20\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t688\t\tInternet\tNonpartisan\tNone\n81.0\t9.0\t\t\t9.0\tmorning-consult-25218\tMorning Consult\t2016-08-18\t2016-08-20\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t582\t\tInternet\tNonpartisan\tNone\n34.0\t31.0\t\t\t35.0\tmorning-consult-25218\tMorning Consult\t2016-08-18\t2016-08-20\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t731\t\tInternet\tNonpartisan\tNone\n36.0\t39.0\t8.0\t4.0\t13.0\tmorning-consult-25218\tMorning Consult\t2016-08-18\t2016-08-20\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2001\t\tInternet\tNonpartisan\tNone\n42.0\t47.0\t\t6.0\t5.0\targ-25231\tARG\t2016-08-17\t2016-08-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters\t994\t3.2\tLive Phone\tNonpartisan\tNone\n4.0\t90.0\t\t2.0\t4.0\targ-25231\tARG\t2016-08-17\t2016-08-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Democrat\t350\t\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t\t5.0\t6.0\targ-25231\tARG\t2016-08-17\t2016-08-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Republican\t306\t\tLive Phone\tNonpartisan\tNone\n47.0\t38.0\t\t10.0\t5.0\targ-25231\tARG\t2016-08-17\t2016-08-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - independent\t338\t\tLive Phone\tNonpartisan\tNone\n48.0\t48.0\t\t4.0\t\tupi-cvoter-25226\tUPI/CVOTER\t2016-08-14\t2016-08-20\t\tLikely Voters\t1191\t3.0\tInternet\tNonpartisan\tNone\n36.0\t41.0\t\t10.0\t13.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1049\t\tInternet\tNonpartisan\tNone\n6.0\t82.0\t\t5.0\t7.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n72.0\t5.0\t\t11.0\t11.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n37.0\t20.0\t\t22.0\t22.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n35.0\t39.0\t7.0\t6.0\t13.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1049\t\tInternet\tNonpartisan\tNone\n6.0\t79.0\t4.0\t4.0\t6.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n71.0\t4.0\t8.0\t5.0\t12.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n37.0\t19.0\t10.0\t16.0\t17.0\tipsos-reuters-25213\tIpsos/Reuters\t2016-08-13\t2016-08-17\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t5.0\t\tupi-cvoter-25215\tUPI/CVOTER\t2016-08-11\t2016-08-17\t\tLikely Voters\t1009\t3.0\tInternet\tNonpartisan\tNone\n39.0\t41.0\t9.0\t6.0\t5.0\trasmussen-25203\tRasmussen\t2016-08-15\t2016-08-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n12.0\t77.0\t4.0\t2.0\t5.0\trasmussen-25203\tRasmussen\t2016-08-15\t2016-08-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n69.0\t13.0\t11.0\t3.0\t3.0\trasmussen-25203\tRasmussen\t2016-08-15\t2016-08-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n38.0\t29.0\t12.0\t14.0\t7.0\trasmussen-25203\tRasmussen\t2016-08-15\t2016-08-16\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n35.0\t41.0\t7.0\t5.0\t11.0\tyougov-economist-25194\tYouGov/Economist\t2016-08-14\t2016-08-16\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1076\t\tInternet\tNonpartisan\tNone\n6.0\t83.0\t1.0\t4.0\t6.0\tyougov-economist-25194\tYouGov/Economist\t2016-08-14\t2016-08-16\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t407\t\tInternet\tNonpartisan\tNone\n75.0\t4.0\t8.0\t2.0\t11.0\tyougov-economist-25194\tYouGov/Economist\t2016-08-14\t2016-08-16\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t286\t\tInternet\tNonpartisan\tNone\n30.0\t31.0\t12.0\t10.0\t16.0\tyougov-economist-25194\tYouGov/Economist\t2016-08-14\t2016-08-16\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t383\t\tInternet\tNonpartisan\tNone\n35.0\t48.0\t\t7.0\t10.0\tpublic-religion-research-institute-25256\tPublic Religion Research Institute \t2016-08-10\t2016-08-16\t\tRegistered Voters\t1630\t2.9\tLive Phone\tNonpartisan\tNone\n37.0\t41.0\t10.0\t6.0\t5.0\tpew-25211\tPew\t2016-08-09\t2016-08-16\t\tRegistered Voters\t1567\t\tLive Phone\tNonpartisan\tNone\n44.0\t51.0\t\t5.0\t\tupi-cvoter-25205\tUPI/CVOTER\t2016-08-09\t2016-08-16\t\tLikely Voters\t1069\t3.0\tInternet\tNonpartisan\tNone\n40.0\t50.0\t\t5.0\t5.0\tnormington-petts-associates-d-end-citizens-united-25217\tNormington, Petts & Associates (D-End Citizens United)\t2016-08-09\t2016-08-15\tIf the general election for President was held today and the candidates were: Democrat Hillary Clinton or Republican Donald Trump, for whom would you vote?\tLikely Voters\t1000\t3.1\tLive Phone\tSponsor\tDem\n37.0\t45.0\t8.0\t4.0\t6.0\tnormington-petts-associates-d-end-citizens-united-25217\tNormington, Petts & Associates (D-End Citizens United)\t2016-08-09\t2016-08-15\tAnd if the election for President was held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson and Green Party candidate Jill Stein for whom would you vote?\tLikely Voters\t1000\t3.1\tLive Phone\tSponsor\tDem\n44.0\t51.0\t\t5.0\t\tupi-cvoter-25192\tUPI/CVOTER\t2016-08-09\t2016-08-15\t\tLikely Voters\t1035\t3.0\tInternet\tNonpartisan\tNone\n37.0\t44.0\t\t\t18.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n8.0\t83.0\t\t\t9.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t740\t\tInternet\tNonpartisan\tNone\n77.0\t9.0\t\t\t14.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t610\t\tInternet\tNonpartisan\tNone\n33.0\t33.0\t\t\t34.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t651\t\tInternet\tNonpartisan\tNone\n33.0\t39.0\t9.0\t4.0\t14.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n7.0\t78.0\t4.0\t3.0\t9.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t740\t\tInternet\tNonpartisan\tNone\n71.0\t8.0\t8.0\t2.0\t10.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t610\t\tInternet\tNonpartisan\tNone\n27.0\t24.0\t17.0\t8.0\t24.0\tmorning-consult-25179\tMorning Consult\t2016-08-11\t2016-08-14\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t651\t\tInternet\tNonpartisan\tNone\n45.0\t51.0\t\t5.0\t\tupi-cvoter-25186\tUPI/CVOTER\t2016-08-08\t2016-08-14\t\tLikely Voters\t975\t3.0\tInternet\tNonpartisan\tNone\n41.0\t50.0\t\t\t8.0\tnbc-surveymonkey-25182\tNBC/SurveyMonkey\t2016-08-08\t2016-08-14\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t15179\t1.2\tInternet\tNonpartisan\tNone\n37.0\t43.0\t11.0\t4.0\t5.0\tnbc-surveymonkey-25182\tNBC/SurveyMonkey\t2016-08-08\t2016-08-14\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t15179\t1.2\tInternet\tNonpartisan\tNone\n36.0\t38.0\t8.0\t5.0\t13.0\tzogby-internet-25195\tZogby (Internet)\t2016-08-12\t2016-08-13\tIf the election for President were being held today and the Democratic nominee for President is Hillary Clinton and the Republican nominee for President is Donald Trump; the Libertarian nominee is Gary Johnson and the Green party nominee is Jill Stein for whom would you vote?\tLikely Voters\t1277\t2.8\tInternet\tNonpartisan\tNone\n46.0\t49.0\t\t6.0\t\tupi-cvoter-25166\tUPI/CVOTER\t2016-08-07\t2016-08-13\t\tLikely Voters\t1403\t3.0\tInternet\tNonpartisan\tNone\n40.0\t43.0\t8.0\t6.0\t3.0\trasmussen-25125\tRasmussen\t2016-08-09\t2016-08-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n12.0\t82.0\t3.0\t3.0\t1.0\trasmussen-25125\tRasmussen\t2016-08-09\t2016-08-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Democrat\t\t\tIVR/Online\tNonpartisan\tNone\n74.0\t11.0\t9.0\t5.0\t2.0\trasmussen-25125\tRasmussen\t2016-08-09\t2016-08-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - Republican\t\t\tIVR/Online\tNonpartisan\tNone\n37.0\t32.0\t15.0\t9.0\t7.0\trasmussen-25125\tRasmussen\t2016-08-09\t2016-08-10\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters - independent\t\t\tIVR/Online\tNonpartisan\tNone\n36.0\t42.0\t\t10.0\t12.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t974\t\tInternet\tNonpartisan\tNone\n7.0\t77.0\t\t7.0\t9.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n80.0\t6.0\t\t8.0\t7.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t20.0\t\t34.0\t22.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n35.0\t40.0\t7.0\t7.0\t11.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t974\t\tInternet\tNonpartisan\tNone\n6.0\t76.0\t4.0\t6.0\t8.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n78.0\t5.0\t7.0\t3.0\t8.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t18.0\t22.0\t19.0\t17.0\tipsos-reuters-25129\tIpsos/Reuters\t2016-08-06\t2016-08-10\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tupi-cvoter-25138\tUPI/CVOTER\t2016-08-03\t2016-08-10\t\tLikely Voters\t1077\t3.0\tInternet\tNonpartisan\tNone\n36.0\t42.0\t9.0\t4.0\t9.0\tyougov-economist-25107\tYouGov/Economist\t2016-08-06\t2016-08-09\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1026\t\tInternet\tNonpartisan\tNone\n3.0\t87.0\t2.0\t3.0\t5.0\tyougov-economist-25107\tYouGov/Economist\t2016-08-06\t2016-08-09\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t399\t\tInternet\tNonpartisan\tNone\n76.0\t7.0\t7.0\t1.0\t8.0\tyougov-economist-25107\tYouGov/Economist\t2016-08-06\t2016-08-09\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t261\t\tInternet\tNonpartisan\tNone\n36.0\t28.0\t17.0\t6.0\t13.0\tyougov-economist-25107\tYouGov/Economist\t2016-08-06\t2016-08-09\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t366\t\tInternet\tNonpartisan\tNone\n46.0\t48.0\t\t6.0\t\tupi-cvoter-25124\tUPI/CVOTER\t2016-08-03\t2016-08-09\t\tLikely Voters\t1002\t3.0\tInternet\tNonpartisan\tNone\n36.0\t48.0\t2.0\t6.0\t8.0\tpublic-religion-research-institute-the-atlantic-25981\tPublic Religion Research Institute/The Atlantic\t2016-07-27\t2016-08-09\t\tRegistered Voters\t1803\t\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t9.0\t4.0\t3.0\tbloomberg-selzer-25108\tBloomberg/Selzer\t2016-08-05\t2016-08-08\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats, Donald Trump for the Republicans, Gary Johnson for the Libertarian Party, and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t749\t3.6\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t3.0\t3.0\tbloomberg-selzer-25108\tBloomberg/Selzer\t2016-08-05\t2016-08-08\tIf the general election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t749\t3.6\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t6.0\t\tupi-cvoter-25113\tUPI/CVOTER\t2016-08-02\t2016-08-08\t\tLikely Voters\t993\t3.0\tInternet\tNonpartisan\tNone\n39.0\t45.0\t\t3.0\t12.0\tpsrai-25137\tPSRAI\t2016-08-04\t2016-08-07\t\tRegistered Voters\t798\t4.4\tLive Phone\tNonpartisan\tNone\n37.0\t50.0\t7.0\t3.0\t3.0\tmonmouth-university-25087\tMonmouth University\t2016-08-04\t2016-08-07\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t683\t3.8\tLive Phone\tNonpartisan\tNone\n44.0\t49.0\t\t7.0\t\tupi-cvoter-25098\tUPI/CVOTER\t2016-08-01\t2016-08-07\t\tLikely Voters\t960\t3.0\tInternet\tNonpartisan\tNone\n41.0\t51.0\t\t\t8.0\tnbc-surveymonkey-25094\tNBC/SurveyMonkey\t2016-08-01\t2016-08-07\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t11480\t1.2\tInternet\tNonpartisan\tNone\n38.0\t44.0\t10.0\t4.0\t4.0\tnbc-surveymonkey-25094\tNBC/SurveyMonkey\t2016-08-01\t2016-08-07\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t11480\t1.2\tInternet\tNonpartisan\tNone\n43.0\t50.0\t\t7.0\t\tupi-cvoter-25085\tUPI/CVOTER\t2016-07-31\t2016-08-06\t\tLikely Voters\t1036\t3.0\tInternet\tNonpartisan\tNone\n37.0\t46.0\t\t\t18.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n7.0\t83.0\t\t\t10.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t760\t\tInternet\tNonpartisan\tNone\n77.0\t10.0\t\t\t12.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t591\t\tInternet\tNonpartisan\tNone\n34.0\t34.0\t\t\t32.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t650\t\tInternet\tNonpartisan\tNone\n33.0\t41.0\t9.0\t5.0\t13.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n6.0\t79.0\t4.0\t4.0\t7.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t760\t\tInternet\tNonpartisan\tNone\n73.0\t8.0\t8.0\t1.0\t11.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t591\t\tInternet\tNonpartisan\tNone\n27.0\t26.0\t16.0\t9.0\t22.0\tmorning-consult-25078\tMorning Consult\t2016-08-04\t2016-08-05\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t650\t\tInternet\tNonpartisan\tNone\n44.0\t51.0\t\t3.0\t1.0\tabc-post-25077\tABC/Post\t2016-08-01\t2016-08-04\tIf the presidential election were held today and the candidates were (Hillary Clinton, the Democrat) and Donald Trump, (the Republican), for whom would you vote for?\tLikely Voters\t682\t4.0\tLive Phone\tNonpartisan\tNone\n39.0\t47.0\t7.0\t4.0\t4.0\tabc-post-25077\tABC/Post\t2016-08-01\t2016-08-04\t\tLikely Voters\t682\t4.0\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t6.0\t\tupi-cvoter-25075\tUPI/CVOTER\t2016-07-29\t2016-08-04\t\tLikely Voters\t1060\t3.0\tInternet\tNonpartisan\tNone\n39.0\t46.0\t\t5.0\t11.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters\t851\t3.4\tLive Phone\tNonpartisan\tNone\n9.0\t87.0\t\t1.0\t3.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - Democrat\t290\t\tLive Phone\tNonpartisan\tNone\n82.0\t7.0\t\t2.0\t9.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - Republican\t270\t\tLive Phone\tNonpartisan\tNone\n36.0\t38.0\t\t10.0\t17.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the President of United States were held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tRegistered Voters - independent\t272\t\tLive Phone\tNonpartisan\tNone\n35.0\t39.0\t12.0\t6.0\t8.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters\t851\t3.4\tLive Phone\tNonpartisan\tNone\n7.0\t83.0\t3.0\t2.0\t4.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - Democrat\t290\t\tLive Phone\tNonpartisan\tNone\n77.0\t5.0\t9.0\t2.0\t7.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - Republican\t270\t\tLive Phone\tNonpartisan\tNone\n31.0\t27.0\t20.0\t11.0\t12.0\tibd-tipp-25071\tIBD/TIPP\t2016-07-29\t2016-08-04\tIf the 2016 election for the president of the United States were held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, and Gary Johnson, the Libertarian, and Jill Stein of the Green Party for whom would you vote?\tRegistered Voters - independent\t272\t\tLive Phone\tNonpartisan\tNone\n33.0\t48.0\t\t14.0\t5.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t983\t3.1\tLive Phone\tNonpartisan\tNone\n3.0\t90.0\t\t5.0\t1.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n79.0\t6.0\t\t12.0\t4.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n31.0\t37.0\t\t23.0\t8.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n31.0\t45.0\t10.0\t7.0\t8.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t983\t3.1\tLive Phone\tNonpartisan\tNone\n3.0\t88.0\t2.0\t3.0\t4.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n78.0\t5.0\t6.0\t4.0\t7.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n26.0\t31.0\t19.0\t11.0\t13.0\tmcclatchy-marist-25067\tMcClatchy/Marist\t2016-08-01\t2016-08-03\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t\t11.0\t4.0\tnbc-wsj-25068\tNBC/WSJ\t2016-07-31\t2016-08-03\tIf the next election for president were held today, with (ROTATE) … Donald Trump and Mike Pence as the Republican candidates, and Hillary Clinton and Tim Kaine as the Democratic candidates, for whom would you vote?\tRegistered Voters\t800\t3.46\tLive Phone\tNonpartisan\tNone\n34.0\t43.0\t10.0\t8.0\t5.0\tnbc-wsj-25068\tNBC/WSJ\t2016-07-31\t2016-08-03\tAnd, if the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tRegistered Voters\t800\t3.46\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t\t9.0\t10.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1072\t\tInternet\tNonpartisan\tNone\n9.0\t81.0\t\t5.0\t5.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t7.0\t\t7.0\t9.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n27.0\t27.0\t\t32.0\t13.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t6.0\t4.0\t10.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1072\t\tInternet\tNonpartisan\tNone\n10.0\t78.0\t3.0\t4.0\t6.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n73.0\t7.0\t5.0\t5.0\t11.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n30.0\t25.0\t20.0\t12.0\t6.0\tipsos-reuters-25063\tIpsos/Reuters\t2016-07-30\t2016-08-03\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n44.0\t50.0\t\t7.0\t\tupi-cvoter-25066\tUPI/CVOTER\t2016-07-28\t2016-08-03\t\tLikely Voters\t1400\t3.0\tInternet\tNonpartisan\tNone\n40.0\t44.0\t6.0\t6.0\t4.0\trasmussen-25057\tRasmussen\t2016-08-01\t2016-08-02\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump, Democrat Hillary Clinton, Libertarian Gary Johnson or Green Party candidate Jill Stein?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n39.0\t49.0\t\t5.0\t8.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters\t1022\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t87.0\t\t3.0\t5.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n78.0\t12.0\t\t4.0\t6.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n41.0\t33.0\t\t12.0\t13.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - independent\t\t8.0\tLive Phone\tNonpartisan\tNone\n35.0\t44.0\t12.0\t1.0\t8.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters\t1022\t3.0\tLive Phone\tNonpartisan\tNone\n4.0\t81.0\t8.0\t1.0\t6.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - Democrat\t\t4.5\tLive Phone\tNonpartisan\tNone\n73.0\t9.0\t11.0\t1.0\t6.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - Republican\t\t5.0\tLive Phone\tNonpartisan\tNone\n35.0\t29.0\t22.0\t3.0\t10.0\tfox-25054\tFOX\t2016-07-31\t2016-08-02\t\tRegistered Voters - independent\t\t8.0\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25061\tUPI/CVOTER\t2016-07-27\t2016-08-02\t\tLikely Voters\t989\t3.0\tInternet\tNonpartisan\tNone\n36.0\t41.0\t8.0\t6.0\t9.0\tyougov-economist-25040\tYouGov/Economist\t2016-07-30\t2016-08-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1069\t4.1\tInternet\tNonpartisan\tNone\n5.0\t81.0\t3.0\t5.0\t7.0\tyougov-economist-25040\tYouGov/Economist\t2016-07-30\t2016-08-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t397\t\tInternet\tNonpartisan\tNone\n78.0\t4.0\t10.0\t1.0\t7.0\tyougov-economist-25040\tYouGov/Economist\t2016-07-30\t2016-08-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t300\t\tInternet\tNonpartisan\tNone\n34.0\t31.0\t12.0\t10.0\t14.0\tyougov-economist-25040\tYouGov/Economist\t2016-07-30\t2016-08-01\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t372\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t5.0\t\t10.0\tpenn-schoen-berland-25048\tPenn Schoen Berland\t2016-07-29\t2016-08-01\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters\t1000\t\tInternet\tNonpartisan\tNone\n5.0\t85.0\t3.0\t\t6.0\tpenn-schoen-berland-25048\tPenn Schoen Berland\t2016-07-29\t2016-08-01\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n79.0\t7.0\t5.0\t\t9.0\tpenn-schoen-berland-25048\tPenn Schoen Berland\t2016-07-29\t2016-08-01\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n36.0\t26.0\t18.0\t\t19.0\tpenn-schoen-berland-25048\tPenn Schoen Berland\t2016-07-29\t2016-08-01\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n43.0\t52.0\t\t5.0\t0.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters\t894\t3.5\tLive Phone\tNonpartisan\tNone\n3.0\t96.0\t\t1.0\t0.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n89.0\t8.0\t\t3.0\t0.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t50.0\t\t9.0\t0.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton and Tim Kaine as the Democratic Party’s candidates, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t45.0\t9.0\t6.0\t3.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters\t894\t3.5\tLive Phone\tNonpartisan\tNone\n2.0\t90.0\t3.0\t1.0\t3.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n78.0\t7.0\t6.0\t3.0\t6.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n33.0\t35.0\t15.0\t9.0\t8.0\tcnn-25037\tCNN\t2016-07-29\t2016-07-31\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t47.0\t\t3.0\t10.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters\t1131\t\tLive Phone\tNonpartisan\tNone\n10.0\t86.0\t\t1.0\t3.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - Democrat\t376\t\tLive Phone\tNonpartisan\tNone\n81.0\t13.0\t\t2.0\t4.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - Republican\t315\t\tLive Phone\tNonpartisan\tNone\n39.0\t38.0\t\t5.0\t17.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - independent\t440\t\tLive Phone\tNonpartisan\tNone\n38.0\t43.0\t10.0\t2.0\t6.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters\t1131\t\tLive Phone\tNonpartisan\tNone\n10.0\t82.0\t5.0\t1.0\t3.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - Democrat\t376\t\tLive Phone\tNonpartisan\tNone\n78.0\t9.0\t8.0\t2.0\t3.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - Republican\t315\t\tLive Phone\tNonpartisan\tNone\n35.0\t34.0\t17.0\t4.0\t10.0\tcbs-25024\tCBS\t2016-07-29\t2016-07-31\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - independent\t440\t\tLive Phone\tNonpartisan\tNone\n46.0\t49.0\t\t5.0\t\tupi-cvoter-25060\tUPI/CVOTER\t2016-07-25\t2016-07-31\t\tLikely Voters\t989\t3.0\tInternet\tNonpartisan\tNone\n42.0\t50.0\t\t\t8.0\tnbc-surveymonkey-25039\tNBC/SurveyMonkey\t2016-07-25\t2016-07-31\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t12742\t1.2\tInternet\tNonpartisan\tNone\n38.0\t43.0\t9.0\t4.0\t5.0\tnbc-surveymonkey-25039\tNBC/SurveyMonkey\t2016-07-25\t2016-07-31\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t12742\t1.2\tInternet\tNonpartisan\tNone\n40.0\t43.0\t\t\t17.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t1931\t2.0\tInternet\tNonpartisan\tNone\n11.0\t82.0\t\t\t8.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t699\t\tInternet\tNonpartisan\tNone\n78.0\t9.0\t\t\t13.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t579\t\tInternet\tNonpartisan\tNone\n38.0\t32.0\t\t\t30.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t653\t\tInternet\tNonpartisan\tNone\n36.0\t41.0\t11.0\t\t12.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t1931\t2.0\tInternet\tNonpartisan\tNone\n9.0\t80.0\t5.0\t\t6.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t699\t\tInternet\tNonpartisan\tNone\n74.0\t9.0\t9.0\t\t21.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t579\t\tInternet\tNonpartisan\tNone\n32.0\t27.0\t20.0\t\t8.0\tmorning-consult-25023\tMorning Consult\t2016-07-29\t2016-07-30\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t653\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t6.0\t2.0\t5.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t1276\t2.7\tIVR/Online\tPollster\tDem\n9.0\t83.0\t3.0\t2.0\t4.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n79.0\t8.0\t7.0\t2.0\t4.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n42.0\t35.0\t10.0\t2.0\t11.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n45.0\t50.0\t\t\t5.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t1276\t2.7\tIVR/Online\tPollster\tDem\n9.0\t97.0\t\t\t4.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n86.0\t10.0\t\t\t3.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n46.0\t42.0\t\t\t13.0\tppp-d-25022\tPPP (D)\t2016-07-29\t2016-07-30\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n31.0\t46.0\t7.0\t2.0\t15.0\traba-research-25020\tRABA Research\t2016-07-29\t2016-07-29\tIf the election for Present were held today, for whom would you vote?\tLikely Voters\t956\t3.2\tInternet\tNonpartisan\tNone\n35.0\t40.0\t\t8.0\t17.0\tipsos-reuters-25002\tIpsos/Reuters\t2016-07-25\t2016-07-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1050\t\tInternet\tNonpartisan\tNone\n9.0\t79.0\t\t4.0\t8.0\tipsos-reuters-25002\tIpsos/Reuters\t2016-07-25\t2016-07-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n71.0\t6.0\t\t9.0\t14.0\tipsos-reuters-25002\tIpsos/Reuters\t2016-07-25\t2016-07-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n23.0\t27.0\t\t27.0\t24.0\tipsos-reuters-25002\tIpsos/Reuters\t2016-07-25\t2016-07-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t37.0\t5.0\t6.0\t15.0\tipsos-reuters-25002\tIpsos/Reuters\t2016-07-25\t2016-07-29\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tLikely Voters\t1433\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t\t10.0\t4.0\trasmussen-24988\tRasmussen\t2016-07-26\t2016-07-27\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump or Democrat Hillary Clinton?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n38.0\t40.0\t5.0\t8.0\t9.0\tyougov-economist-24962\tYouGov/Economist\t2016-07-23\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1057\t\tInternet\tNonpartisan\tNone\n6.0\t81.0\t2.0\t4.0\t7.0\tyougov-economist-24962\tYouGov/Economist\t2016-07-23\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t406\t\tInternet\tNonpartisan\tNone\n78.0\t6.0\t5.0\t5.0\t5.0\tyougov-economist-24962\tYouGov/Economist\t2016-07-23\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t287\t\tInternet\tNonpartisan\tNone\n38.0\t26.0\t9.0\t13.0\t15.0\tyougov-economist-24962\tYouGov/Economist\t2016-07-23\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t364\t\tInternet\tNonpartisan\tNone\n44.0\t41.0\t6.0\t\t10.0\tpenn-schoen-berland-25049\tPenn Schoen Berland\t2016-07-22\t2016-07-24\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters\t1000\t3.0\tInternet\tNonpartisan\tNone\n9.0\t79.0\t3.0\t\t9.0\tpenn-schoen-berland-25049\tPenn Schoen Berland\t2016-07-22\t2016-07-24\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n85.0\t3.0\t5.0\t\t7.0\tpenn-schoen-berland-25049\tPenn Schoen Berland\t2016-07-22\t2016-07-24\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n33.0\t28.0\t19.0\t\t20.0\tpenn-schoen-berland-25049\tPenn Schoen Berland\t2016-07-22\t2016-07-24\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n44.0\t43.0\t\t4.0\t10.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters\t1118\t4.0\tLive Phone\tNonpartisan\tNone\n11.0\t84.0\t\t0.0\t4.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n82.0\t6.0\t\t3.0\t9.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t35.0\t\t7.0\t15.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump? (IF DEPENDS OR DON’T KNOW):Well as of today, do you lean more toward Hillary Clinton or more toward Donald Trump?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t39.0\t12.0\t2.0\t7.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters\t1118\t4.0\tLive Phone\tNonpartisan\tNone\n10.0\t79.0\t8.0\t0.0\t3.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t6.0\t9.0\t2.0\t4.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t31.0\t18.0\t3.0\t11.0\tcbs-24956\tCBS\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n48.0\t45.0\t\t6.0\t1.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters\t882\t3.5\tLive Phone\tNonpartisan\tNone\n7.0\t88.0\t\t3.0\t1.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n90.0\t8.0\t\t3.0\t0.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n50.0\t37.0\t\t12.0\t1.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t39.0\t9.0\t3.0\t4.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters\t882\t3.5\tLive Phone\tNonpartisan\tNone\n7.0\t82.0\t5.0\t2.0\t5.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t6.0\t7.0\t2.0\t0.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t27.0\t15.0\t4.0\t9.0\tcnn-24955\tCNN\t2016-07-22\t2016-07-24\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t40.0\t\t\t16.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2502\t2.0\tInternet\tNonpartisan\tNone\n9.0\t81.0\t\t\t9.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t830\t\tInternet\tNonpartisan\tNone\n85.0\t7.0\t\t\t8.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t796\t\tInternet\tNonpartisan\tNone\n40.0\t30.0\t\t\t31.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t876\t\tInternet\tNonpartisan\tNone\n40.0\t36.0\t10.0\t\t13.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2502\t2.0\tInternet\tNonpartisan\tNone\n8.0\t77.0\t6.0\t\t9.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t830\t\tInternet\tNonpartisan\tNone\n82.0\t6.0\t6.0\t\t6.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t796\t\tInternet\tNonpartisan\tNone\n33.0\t25.0\t18.0\t\t23.0\tmorning-consult-24954\tMorning Consult\t2016-07-22\t2016-07-24\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t876\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t4.0\t8.0\tuniversity-of-delaware-psrai-24970\tUniversity of Delaware/PSRAI\t2016-07-21\t2016-07-24\tNow, suppose the 2016 presidential election were being held TODAY. If you had to choose between [READ AND RANDOMIZE CLINTON/TRUMP] who would you vote for?\tRegistered Voters\t818\t\tLive Phone\tNonpartisan\tNone\n3.0\t87.0\t\t2.0\t8.0\tuniversity-of-delaware-psrai-24970\tUniversity of Delaware/PSRAI\t2016-07-21\t2016-07-24\tNow, suppose the 2016 presidential election were being held TODAY. If you had to choose between [READ AND RANDOMIZE CLINTON/TRUMP] who would you vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t5.0\t\t3.0\t8.0\tuniversity-of-delaware-psrai-24970\tUniversity of Delaware/PSRAI\t2016-07-21\t2016-07-24\tNow, suppose the 2016 presidential election were being held TODAY. If you had to choose between [READ AND RANDOMIZE CLINTON/TRUMP] who would you vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n33.0\t35.0\t\t11.0\t20.0\tuniversity-of-delaware-psrai-24970\tUniversity of Delaware/PSRAI\t2016-07-21\t2016-07-24\tNow, suppose the 2016 presidential election were being held TODAY. If you had to choose between [READ AND RANDOMIZE CLINTON/TRUMP] who would you vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t46.0\t\t\t9.0\tnbc-surveymonkey-24964\tNBC/SurveyMonkey\t2016-07-18\t2016-07-24\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t12931\t1.2\tInternet\tNonpartisan\tNone\n41.0\t39.0\t10.0\t5.0\t6.0\tnbc-surveymonkey-24964\tNBC/SurveyMonkey\t2016-07-18\t2016-07-24\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t12931\t1.2\tInternet\tNonpartisan\tNone\n34.0\t39.0\t8.0\t3.0\t15.0\traba-research-24974\tRABA Research\t2016-07-22\t2016-07-22\tIf the election for Present were held today, for whom would you vote?\tLikely Voters\t909\t3.3\tInternet\tNonpartisan\tNone\n51.0\t49.0\t\t\t\tgravis-marketing-oann-24953\tGravis Marketing/OANN\t2016-07-21\t2016-07-22\t\tRegistered Voters\t3462\t1.7\tAutomated Phone\tSponsor\tRep\n42.0\t43.0\t\t6.0\t9.0\targ-24947\tARG\t2016-07-17\t2016-07-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters\t990\t3.2\tLive Phone\tNonpartisan\tNone\n3.0\t85.0\t\t4.0\t8.0\targ-24947\tARG\t2016-07-17\t2016-07-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n77.0\t7.0\t\t3.0\t13.0\targ-24947\tARG\t2016-07-17\t2016-07-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n51.0\t33.0\t\t10.0\t6.0\targ-24947\tARG\t2016-07-17\t2016-07-20\tIf the election for president were being held today between Hillary Clinton, the Democrat, and Donald Trump, the Republican, for whom would you vote - Clinton or Trump?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t40.0\t\t13.0\t11.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters\t1232\t\tInternet\tNonpartisan\tNone\n10.0\t76.0\t\t8.0\t8.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n74.0\t8.0\t\t11.0\t8.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n33.0\t15.0\t\t31.0\t21.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n35.0\t39.0\t7.0\t8.0\t11.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters\t1232\t\tInternet\tNonpartisan\tNone\n9.0\t74.0\t4.0\t8.0\t6.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n71.0\t7.0\t7.0\t6.0\t9.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n32.0\t14.0\t17.0\t18.0\t19.0\tipsos-reuters-24949\tIpsos/Reuters\t2016-07-16\t2016-07-20\tIf the 2016 presidential election were being held today and the candidates were as below, for whom would you vote?\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n43.0\t42.0\t\t11.0\t4.0\trasmussen-24946\tRasmussen\t2016-07-18\t2016-07-19\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump or Democrat Hillary Clinton?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n40.0\t43.0\t11.0\t4.0\t2.0\tgqr-d-democracy-corps-24934\tGQR (D-Democracy Corps)\t2016-07-13\t2016-07-18\tI know it’s a long way off, but thinking about the election for President in November, if the election for President were held today, would you vote for --Democrat Hillary Clinton or Republican Donald Trump (or Libertarian Gary Johnson)?\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n43.0\t50.0\t\t1.0\t6.0\tgqr-d-democracy-corps-24934\tGQR (D-Democracy Corps)\t2016-07-13\t2016-07-18\tWell, what if you had to choose between Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n37.0\t40.0\t5.0\t7.0\t10.0\tyougov-economist-24925\tYouGov/Economist\t2016-07-15\t2016-07-17\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters\t1056\t\tInternet\tNonpartisan\tNone\n7.0\t77.0\t0.0\t7.0\t9.0\tyougov-economist-24925\tYouGov/Economist\t2016-07-15\t2016-07-17\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Democrat\t392\t\tInternet\tNonpartisan\tNone\n83.0\t3.0\t7.0\t2.0\t5.0\tyougov-economist-24925\tYouGov/Economist\t2016-07-15\t2016-07-17\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - Republican\t286\t\tInternet\tNonpartisan\tNone\n32.0\t33.0\t8.0\t13.0\t15.0\tyougov-economist-24925\tYouGov/Economist\t2016-07-15\t2016-07-17\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, Donald Trump, the Republican, Gary Johson, the Libertarian, and Jill Stein, from the Green Party, who would you vote for?\tRegistered Voters - independent\t378\t\tInternet\tNonpartisan\tNone\n45.0\t46.0\t\t\t9.0\tnbc-surveymonkey-24929\tNBC/SurveyMonkey\t2016-07-11\t2016-07-17\tIf the 2016 presidential election were being held today among the following candidates, for whom would you vote?\tRegistered Voters\t9436\t1.4\tInternet\tNonpartisan\tNone\n40.0\t39.0\t10.0\t5.0\t7.0\tnbc-surveymonkey-24929\tNBC/SurveyMonkey\t2016-07-11\t2016-07-17\tIf the 2016 presidential election were being held today among the following candidates for whom would you vote?\tRegistered Voters\t9436\t1.4\tInternet\tNonpartisan\tNone\n40.0\t43.0\t5.0\t4.0\t10.0\tmonmouth-university-24920\tMonmouth University\t2016-07-14\t2016-07-16\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tRegistered Voters\t805\t3.5\tLive Phone\tNonpartisan\tNone\n5.0\t88.0\t0.0\t2.0\t4.0\tmonmouth-university-24920\tMonmouth University\t2016-07-14\t2016-07-16\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tRegistered Voters - Democrat\t245\t6.3\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t3.0\t1.0\t7.0\tmonmouth-university-24920\tMonmouth University\t2016-07-14\t2016-07-16\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tRegistered Voters - Republican\t226\t6.5\tLive Phone\tNonpartisan\tNone\n40.0\t31.0\t9.0\t6.0\t14.0\tmonmouth-university-24920\tMonmouth University\t2016-07-14\t2016-07-16\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tRegistered Voters - independent\t320\t5.5\tLive Phone\tNonpartisan\tNone\n39.0\t41.0\t\t\t20.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters\t2002\t\tInternet\tNonpartisan\tNone\n8.0\t80.0\t\t\t12.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Democrat\t739\t\tInternet\tNonpartisan\tNone\n79.0\t7.0\t\t\t13.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - Republican\t590\t\tInternet\tNonpartisan\tNone\n38.0\t27.0\t\t\t34.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton and Republican Donald Trump, for whom would you vote?\tRegistered Voters - independent\t674\t\tInternet\tNonpartisan\tNone\n35.0\t38.0\t11.0\t\t15.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters\t2002\t2.0\tInternet\tNonpartisan\tNone\n7.0\t77.0\t5.0\t\t10.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Democrat\t739\t\tInternet\tNonpartisan\tNone\n74.0\t7.0\t8.0\t\t11.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - Republican\t590\t\tInternet\tNonpartisan\tNone\n32.0\t22.0\t21.0\t\t25.0\tmorning-consult-24914\tMorning Consult\t2016-07-14\t2016-07-16\tIf the 2016 presidential election were held today and the candidates were Democrat Hillary Clinton, Republican Donald Trump and Libertarian Gary Johnson, for whom would you vote?\tRegistered Voters - independent\t674\t\tInternet\tNonpartisan\tNone\n42.0\t49.0\t\t8.0\t1.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters\t872\t3.5\tLive Phone\tNonpartisan\tNone\n7.0\t89.0\t\t4.0\t0.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n93.0\t1.0\t\t5.0\t0.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t48.0\t\t13.0\t1.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tSuppose that the presidential election were being held today and you had to choose between Hillary Clinton as the Democratic Party’s candidate, and Donald Trump and Mike Pence as the Republican Party’s candidates. Who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t42.0\t13.0\t5.0\t3.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters\t872\t3.5\tLive Phone\tNonpartisan\tNone\n5.0\t83.0\t6.0\t2.0\t4.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t2.0\t6.0\t1.0\t6.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n30.0\t33.0\t21.0\t10.0\t6.0\tcnn-24908\tCNN\t2016-07-13\t2016-07-16\tNow suppose that the presidential candidates on the ballot in your state included Hillary Clinton as the Democratic Party’s candidate, Donald Trump as the Republican Party’s candidate, Gary Johnson as the Libertarian Party candidate, and Jill Stein as the Green Party candidate, who would you be more likely to vote for?\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t7.0\t5.0\t3.0\tfranklin-pierce-rkm-boston-herald-24916\tFranklin Pierce/RKM/Boston Herald\t2016-07-12\t2016-07-16\tIf the election for US President were held today, which of the candidates would you vote for?\tLikely Voters\t1007\t3.1\tLive Phone\tNonpartisan\tNone\n7.0\t83.0\t3.0\t4.0\t3.0\tfranklin-pierce-rkm-boston-herald-24916\tFranklin Pierce/RKM/Boston Herald\t2016-07-12\t2016-07-16\tIf the election for US President were held today, which of the candidates would you vote for?\tLikely Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t5.0\t5.0\t4.0\t3.0\tfranklin-pierce-rkm-boston-herald-24916\tFranklin Pierce/RKM/Boston Herald\t2016-07-12\t2016-07-16\tIf the election for US President were held today, which of the candidates would you vote for?\tLikely Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t35.0\t15.0\t4.0\t3.0\tfranklin-pierce-rkm-boston-herald-24916\tFranklin Pierce/RKM/Boston Herald\t2016-07-12\t2016-07-16\tIf the election for US President were held today, which of the candidates would you vote for?\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t\t\t13.0\ticitizen-24935\tICITIZEN\t2016-07-12\t2016-07-15\tIf the November 2016 general election for U.S. President were held today and these were the candidates, for whom would you vote?\tRegistered Voters\t1000\t\tInternet\tNonpartisan\tNone\n32.0\t39.0\t9.0\t3.0\t10.0\ticitizen-24935\tICITIZEN\t2016-07-12\t2016-07-15\tAsking a different way, if the November 2016 general election for U.S. President were held today and these were the candidates, for whom would you vote?\tRegistered Voters\t1000\t\tInternet\tNonpartisan\tNone\n43.0\t47.0\t\t8.0\t2.0\tabc-post-24904\tABC/Post\t2016-07-11\t2016-07-14\tIf the presidential election were held today and the candidates were (Hillary Clinton, the Democrat) and Donald Trump, (the Republican), for whom would you vote for?\tRegistered Voters\t816\t4.0\tLive Phone\tNonpartisan\tNone\n38.0\t42.0\t8.0\t6.0\t6.0\tabc-post-24904\tABC/Post\t2016-07-11\t2016-07-14\t\tRegistered Voters\t816\t4.0\tLive Phone\tNonpartisan\tNone\n44.0\t37.0\t\t13.0\t6.0\trasmussen-24884\tRasmussen\t2016-07-12\t2016-07-13\tIf the 2016 presidential election were held today, would you vote for Republican Donald Trump or Democrat Hillary Clinton?\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n41.0\t46.0\t\t9.0\t4.0\tnbc-wsj-24903\tNBC/WSJ\t2016-07-09\t2016-07-13\tAnd, if the election for president were held today, and Donald Trump were the Republican candidate, and Hillary Clinton were the Democratic candidate for whom would you vote?\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n35.0\t41.0\t11.0\t8.0\t5.0\tnbc-wsj-24903\tNBC/WSJ\t2016-07-09\t2016-07-13\tAnd, if the next election for president were held today, with Donald Trump as the Republican candidate, Hillary Clinton as the Democratic candidate, Gary Johnson the Libertarian candidate, and Jill Stein the Green Party candidate for whom would you vote?\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n40.0\t40.0\t\t4.0\t15.0\tcbs-times-24883\tCBS/Times\t2016-07-08\t2016-07-12\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, would you vote for Hillary Clinton or Donald Trump?\tRegistered Voters\t1358\t\tLive Phone\tNonpartisan\tNone\n36.0\t36.0\t12.0\t2.0\t14.0\tcbs-times-24883\tCBS/Times\t2016-07-08\t2016-07-12\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, and Gary Johnson, the Libertarian would you vote for Hillary Clinton or Donald Trump or Gary Johnson?\tRegistered Voters\t1358\t\tLive Phone\tNonpartisan\tNone\n37.0\t40.0\t5.0\t6.0\t13.0\tyougov-economist-24874\tYouGov/Economist\t2016-07-09\t2016-07-11\t\tRegistered Voters\t1049\t\tInternet\tNonpartisan\tNone\n6.0\t81.0\t1.0\t5.0\t7.0\tyougov-economist-24874\tYouGov/Economist\t2016-07-09\t2016-07-11\t\tRegistered Voters - Democrat\t428\t\tInternet\tNonpartisan\tNone\n81.0\t2.0\t4.0\t1.0\t11.0\tyougov-economist-24874\tYouGov/Economist\t2016-07-09\t2016-07-11\t\tRegistered Voters - Republican\t270\t\tInternet\tNonpartisan\tNone\n32.0\t30.0\t10.0\t10.0\t18.0\tyougov-economist-24874\tYouGov/Economist\t2016-07-09\t2016-07-11\t\tRegistered Voters - independent\t351\t\tInternet\tNonpartisan\tNone\n36.0\t40.0\t6.0\t2.0\t16.0\tap-gfk-web-24888\tAP-GfK (web)\t2016-07-07\t2016-07-11\tIf the 2016 presidential election were held today, for whom would you vote?\tRegistered Voters\t837\t\tInternet\tNonpartisan\tNone\n41.0\t42.0\t\t\t18.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n11.0\t80.0\t\t\t9.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - Democrat\t730\t\tInternet\tNonpartisan\tNone\n79.0\t9.0\t\t\t12.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - Republican\t613\t\tInternet\tNonpartisan\tNone\n38.0\t31.0\t\t\t32.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - independent\t658\t\tInternet\tNonpartisan\tNone\n37.0\t39.0\t12.0\t\t13.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n8.0\t77.0\t8.0\t\t7.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - Democrat\t730\t\tInternet\tNonpartisan\tNone\n75.0\t8.0\t8.0\t\t9.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - Republican\t613\t\tInternet\tNonpartisan\tNone\n32.0\t25.0\t21.0\t\t22.0\tmorning-consult-24853\tMorning Consult\t2016-07-08\t2016-07-10\t\tRegistered Voters - independent\t658\t\tInternet\tNonpartisan\tNone\n44.0\t47.0\t\t\t10.0\tnbc-surveymonkey-24859\tNBC/SurveyMonkey\t2016-07-04\t2016-07-10\t\tRegistered Voters\t7869\t1.4\tInternet\tNonpartisan\tNone\n38.0\t40.0\t11.0\t6.0\t6.0\tnbc-surveymonkey-24859\tNBC/SurveyMonkey\t2016-07-04\t2016-07-10\t\tRegistered Voters\t7869\t1.4\tInternet\tNonpartisan\tNone\n29.0\t41.0\t9.0\t2.0\t18.0\traba-research-24866\tRABA Research\t2016-07-07\t2016-07-09\t\tLikely Voters\t781\t3.5\tInternet\tNonpartisan\tNone\n39.0\t42.0\t\t14.0\t4.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t1053\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t83.0\t\t6.0\t3.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t6.0\t\t6.0\t3.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n33.0\t36.0\t\t25.0\t6.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n35.0\t40.0\t10.0\t7.0\t9.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t1053\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t80.0\t5.0\t4.0\t5.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n78.0\t7.0\t9.0\t1.0\t5.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n27.0\t29.0\t17.0\t13.0\t14.0\tmcclatchy-marist-24872\tMcClatchy/Marist\t2016-07-05\t2016-07-09\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n33.0\t44.0\t\t12.0\t11.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters\t1345\t\tInternet\tNonpartisan\tNone\n6.0\t78.0\t\t10.0\t6.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n70.0\t11.0\t\t10.0\t9.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t24.0\t\t29.0\t23.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n33.0\t42.0\t6.0\t9.0\t11.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters\t1345\t\tInternet\tNonpartisan\tNone\n6.0\t74.0\t3.0\t9.0\t8.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n72.0\t10.0\t5.0\t5.0\t8.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n20.0\t22.0\t22.0\t13.0\t24.0\tipsos-reuters-24829\tIpsos/Reuters\t2016-07-02\t2016-07-06\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n40.0\t38.0\t9.0\t8.0\t4.0\trasmussen-24836\tRasmussen\t2016-07-05\t2016-07-05\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n42.0\t40.0\t\t13.0\t5.0\trasmussen-24830\tRasmussen\t2016-07-05\t2016-07-05\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n36.0\t40.0\t9.0\t\t14.0\tpenn-schoen-berland-25050\tPenn Schoen Berland\t2016-07-01\t2016-07-05\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters\t1000\t3.0\tInternet\tNonpartisan\tNone\n6.0\t82.0\t2.0\t\t10.0\tpenn-schoen-berland-25050\tPenn Schoen Berland\t2016-07-01\t2016-07-05\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n75.0\t7.0\t6.0\t\t12.0\tpenn-schoen-berland-25050\tPenn Schoen Berland\t2016-07-01\t2016-07-05\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n33.0\t30.0\t17.0\t\t20.0\tpenn-schoen-berland-25050\tPenn Schoen Berland\t2016-07-01\t2016-07-05\tIf the 2016 Presidential Election were being held today, who would you vote for?\tLikely Voters - independent\t\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t4.0\t7.0\t11.0\tyougov-economist-24823\tYouGov/Economist\t2016-07-02\t2016-07-04\t\tRegistered Voters\t1004\t\tInternet\tNonpartisan\tNone\n11.0\t77.0\t1.0\t4.0\t7.0\tyougov-economist-24823\tYouGov/Economist\t2016-07-02\t2016-07-04\t\tRegistered Voters - Democrat\t392\t\tInternet\tNonpartisan\tNone\n77.0\t6.0\t4.0\t2.0\t11.0\tyougov-economist-24823\tYouGov/Economist\t2016-07-02\t2016-07-04\t\tRegistered Voters - Republican\t283\t\tInternet\tNonpartisan\tNone\n32.0\t34.0\t6.0\t12.0\t15.0\tyougov-economist-24823\tYouGov/Economist\t2016-07-02\t2016-07-04\t\tRegistered Voters - independent\t329\t\tInternet\tNonpartisan\tNone\n40.0\t41.0\t\t\t19.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n13.0\t75.0\t\t\t12.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - Democrat\t750\t\tInternet\tNonpartisan\tNone\n79.0\t10.0\t\t\t11.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - Republican\t619\t\tInternet\tNonpartisan\tNone\n33.0\t32.0\t\t\t35.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - independent\t632\t\tInternet\tNonpartisan\tNone\n37.0\t38.0\t11.0\t\t15.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n11.0\t72.0\t7.0\t\t10.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - Democrat\t750\t\tInternet\tNonpartisan\tNone\n76.0\t9.0\t7.0\t\t8.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - Republican\t619\t\tInternet\tNonpartisan\tNone\n28.0\t26.0\t19.0\t\t26.0\tmorning-consult-24822\tMorning Consult\t2016-06-30\t2016-07-04\t\tRegistered Voters - independent\t632\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t\t\t9.0\tnbc-surveymonkey-24814\tNBC/SurveyMonkey\t2016-06-27\t2016-07-03\t\tRegistered Voters\t10072\t1.3\tInternet\tNonpartisan\tNone\n38.0\t41.0\t9.0\t5.0\t6.0\tnbc-surveymonkey-24814\tNBC/SurveyMonkey\t2016-06-27\t2016-07-03\t\tRegistered Voters\t10072\t1.3\tInternet\tNonpartisan\tNone\n43.0\t39.0\t\t12.0\t5.0\trasmussen-24800\tRasmussen\t2016-06-28\t2016-06-29\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n40.0\t46.0\t\t\t14.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t86.0\t\t\t6.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - Democrat\t346\t\tLive Phone\tNonpartisan\tNone\n82.0\t9.0\t\t\t9.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - Republican\t301\t\tLive Phone\tNonpartisan\tNone\n38.0\t37.0\t\t\t25.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - independent\t353\t\tLive Phone\tNonpartisan\tNone\n35.0\t39.0\t8.0\t3.0\t15.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t81.0\t3.0\t3.0\t9.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - Democrat\t346\t\tLive Phone\tNonpartisan\tNone\n74.0\t4.0\t4.0\t0.0\t17.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - Republican\t301\t\tLive Phone\tNonpartisan\tNone\n30.0\t28.0\t16.0\t5.0\t22.0\tsuffolk-usa-today-24813\tSuffolk/USA Today\t2016-06-26\t2016-06-29\t\tLikely Voters - independent\t353\t\tLive Phone\tNonpartisan\tNone\n32.0\t42.0\t\t14.0\t12.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters\t1247\t\tInternet\tNonpartisan\tNone\n7.0\t75.0\t\t12.0\t5.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n70.0\t7.0\t\t13.0\t11.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t23.0\t\t20.0\t23.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n31.0\t42.0\t5.0\t10.0\t11.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters\t1247\t\tInternet\tNonpartisan\tNone\n7.0\t75.0\t2.0\t11.0\t5.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n69.0\t9.0\t6.0\t5.0\t10.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n32.0\t18.0\t16.0\t14.0\t20.0\tipsos-reuters-24802\tIpsos/Reuters\t2016-06-25\t2016-06-29\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n40.0\t44.0\t\t9.0\t7.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters\t837\t\tLive Phone\tNonpartisan\tNone\n7.0\t85.0\t\t4.0\t4.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t6.0\t\t3.0\t6.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n35.0\t37.0\t\t17.0\t10.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t37.0\t9.0\t8.0\t10.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters\t837\t\tLive Phone\tNonpartisan\tNone\n8.0\t79.0\t6.0\t3.0\t4.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n80.0\t2.0\t4.0\t4.0\t10.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n28.0\t27.0\t16.0\t16.0\t13.0\tibd-tipp-24805\tIBD/TIPP\t2016-06-24\t2016-06-29\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tgravis-marketing-oann-24815\tGravis Marketing/OANN\t2016-06-27\t2016-06-28\t\tRegistered Voters\t2162\t2.1\tAutomated Phone\tSponsor\tRep\n41.0\t45.0\t5.0\t2.0\t7.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t853\t3.0\tIVR/Online\tPollster\tDem\n10.0\t82.0\t1.0\t2.0\t5.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n83.0\t7.0\t5.0\t0.0\t6.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n35.0\t39.0\t10.0\t4.0\t12.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n44.0\t48.0\t\t\t7.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t853\t3.0\tIVR/Online\tPollster\tDem\n12.0\t86.0\t\t\t2.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n85.0\t8.0\t\t\t7.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n39.0\t45.0\t\t\t16.0\tppp-d-24801\tPPP (D)\t2016-06-27\t2016-06-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n38.0\t44.0\t\t7.0\t10.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters\t1017\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t83.0\t\t4.0\t8.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n74.0\t10.0\t\t8.0\t8.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t31.0\t\t13.0\t16.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t41.0\t10.0\t4.0\t10.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters\t1017\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t79.0\t5.0\t3.0\t8.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n71.0\t7.0\t13.0\t3.0\t6.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t29.0\t14.0\t6.0\t14.0\tfox-24803\tFOX\t2016-06-26\t2016-06-28\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t48.0\t8.0\t3.0\t4.0\tgqr-d-democracy-corps-24835\tGQR (D-Democracy Corps)\t2016-06-23\t2016-06-28\t\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n35.0\t40.0\t8.0\t7.0\t11.0\tyougov-economist-24795\tYouGov/Economist\t2016-06-24\t2016-06-27\t\tRegistered Voters\t1069\t\tInternet\tNonpartisan\tNone\n4.0\t80.0\t3.0\t4.0\t8.0\tyougov-economist-24795\tYouGov/Economist\t2016-06-24\t2016-06-27\t\tRegistered Voters - Democrat\t412\t\tInternet\tNonpartisan\tNone\n75.0\t3.0\t7.0\t3.0\t12.0\tyougov-economist-24795\tYouGov/Economist\t2016-06-24\t2016-06-27\t\tRegistered Voters - Republican\t345\t\tInternet\tNonpartisan\tNone\n34.0\t26.0\t14.0\t12.0\t14.0\tyougov-economist-24795\tYouGov/Economist\t2016-06-24\t2016-06-27\t\tRegistered Voters - independent\t312\t\tInternet\tNonpartisan\tNone\n39.0\t44.0\t\t\t18.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters\t4001\t2.0\tInternet\tNonpartisan\tNone\n10.0\t80.0\t\t\t10.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - Democrat\t1480\t\tInternet\tNonpartisan\tNone\n79.0\t10.0\t\t\t11.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - Republican\t1220\t\tInternet\tNonpartisan\tNone\n35.0\t33.0\t\t\t32.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - independent\t1301\t\tInternet\tNonpartisan\tNone\n36.0\t39.0\t11.0\t\t13.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters\t4001\t2.0\tInternet\tNonpartisan\tNone\n9.0\t77.0\t6.0\t\t8.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - Democrat\t1480\t\tInternet\tNonpartisan\tNone\n76.0\t8.0\t8.0\t\t8.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - Republican\t1220\t\tInternet\tNonpartisan\tNone\n30.0\t25.0\t20.0\t\t24.0\tmorning-consult-24776\tMorning Consult\t2016-06-24\t2016-06-27\t\tRegistered Voters - independent\t1301\t\tInternet\tNonpartisan\tNone\n40.0\t42.0\t\t6.0\t12.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters\t1610\t2.4\tLive Phone\tNonpartisan\tNone\n3.0\t89.0\t\t3.0\t6.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t6.0\t\t3.0\t8.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t34.0\t\t10.0\t20.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t39.0\t8.0\t5.0\t10.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters\t1610\t2.4\tLive Phone\tNonpartisan\tNone\n3.0\t83.0\t3.0\t3.0\t8.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t5.0\t5.0\t0.0\t9.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t32.0\t14.0\t9.0\t14.0\tquinnipiac-24794\tQuinnipiac\t2016-06-21\t2016-06-27\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t49.0\t\t\t10.0\tnbc-surveymonkey-24791\tNBC/SurveyMonkey\t2016-06-20\t2016-06-26\t\tRegistered Voters\t5818\t1.8\tInternet\tNonpartisan\tNone\n36.0\t42.0\t9.0\t5.0\t7.0\tnbc-surveymonkey-24791\tNBC/SurveyMonkey\t2016-06-20\t2016-06-26\t\tRegistered Voters\t5818\t1.8\tInternet\tNonpartisan\tNone\n36.0\t45.0\t11.0\t4.0\t3.0\tpew-24834\tPew\t2016-06-15\t2016-06-26\t\tRegistered Voters\t1655\t\tLive Phone\tNonpartisan\tNone\n42.0\t51.0\t\t\t7.0\tpew-24834\tPew\t2016-06-15\t2016-06-26\t\tRegistered Voters\t1655\t\tLive Phone\tNonpartisan\tNone\n39.0\t51.0\t\t8.0\t2.0\tabc-post-24764\tABC/Post\t2016-06-20\t2016-06-23\t\tRegistered Voters\t836\t4.0\tLive Phone\tNonpartisan\tNone\n34.0\t47.0\t7.0\t5.0\t11.0\tabc-post-24764\tABC/Post\t2016-06-20\t2016-06-23\t\tRegistered Voters\t836\t4.0\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t\t11.0\t2.0\tnbc-wsj-24765\tNBC/WSJ\t2016-06-19\t2016-06-23\t\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n38.0\t39.0\t10.0\t7.0\t6.0\tnbc-wsj-24765\tNBC/WSJ\t2016-06-19\t2016-06-23\t\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n34.0\t44.0\t\t13.0\t10.0\tipsos-reuters-24752\tIpsos/Reuters\t2016-06-18\t2016-06-22\t\tRegistered Voters\t1339\t\tInternet\tNonpartisan\tNone\n10.0\t72.0\t\t10.0\t8.0\tipsos-reuters-24752\tIpsos/Reuters\t2016-06-18\t2016-06-22\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n76.0\t9.0\t\t10.0\t5.0\tipsos-reuters-24752\tIpsos/Reuters\t2016-06-18\t2016-06-22\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n32.0\t27.0\t\t27.0\t14.0\tipsos-reuters-24752\tIpsos/Reuters\t2016-06-18\t2016-06-22\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t44.0\t\t11.0\t6.0\trasmussen-24754\tRasmussen\t2016-06-20\t2016-06-21\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n39.0\t43.0\t4.0\t7.0\t7.0\tyougov-economist-24739\tYouGov/Economist\t2016-06-18\t2016-06-20\t\tRegistered Voters\t1011\t4.2\tInternet\tNonpartisan\tNone\n6.0\t86.0\t0.0\t4.0\t4.0\tyougov-economist-24739\tYouGov/Economist\t2016-06-18\t2016-06-20\t\tRegistered Voters - Democrat\t425\t\tInternet\tNonpartisan\tNone\n80.0\t4.0\t4.0\t5.0\t7.0\tyougov-economist-24739\tYouGov/Economist\t2016-06-18\t2016-06-20\t\tRegistered Voters - Republican\t247\t\tInternet\tNonpartisan\tNone\n41.0\t32.0\t7.0\t11.0\t9.0\tyougov-economist-24739\tYouGov/Economist\t2016-06-18\t2016-06-20\t\tRegistered Voters - independent\t339\t\tInternet\tNonpartisan\tNone\n41.0\t50.0\t\t3.0\t6.0\targ-24728\tARG\t2016-06-17\t2016-06-20\t\tRegistered Voters\t987\t3.2\tLive Phone\tNonpartisan\tNone\n5.0\t89.0\t\t1.0\t5.0\targ-24728\tARG\t2016-06-17\t2016-06-20\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n79.0\t9.0\t\t3.0\t9.0\targ-24728\tARG\t2016-06-17\t2016-06-20\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t45.0\t\t4.0\t6.0\targ-24728\tARG\t2016-06-17\t2016-06-20\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t42.0\t\t\t17.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters\t3891\t2.0\tInternet\tNonpartisan\tNone\n10.0\t80.0\t\t\t10.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - Democrat\t1451\t\tInternet\tNonpartisan\tNone\n80.0\t9.0\t\t\t11.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - Republican\t1175\t\tInternet\tNonpartisan\tNone\n39.0\t30.0\t\t\t31.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - independent\t1265\t\tInternet\tNonpartisan\tNone\n38.0\t38.0\t10.0\t\t14.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters\t3891\t2.0\tInternet\tNonpartisan\tNone\n9.0\t76.0\t5.0\t\t10.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - Democrat\t1451\t\tInternet\tNonpartisan\tNone\n77.0\t7.0\t8.0\t\t8.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - Republican\t1175\t\tInternet\tNonpartisan\tNone\n34.0\t24.0\t18.0\t\t25.0\tmorning-consult-24717\tMorning Consult\t2016-06-15\t2016-06-20\t\tRegistered Voters - independent\t1265\t\tInternet\tNonpartisan\tNone\n42.0\t47.0\t\t10.0\t1.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters\t891\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t90.0\t\t5.0\t0.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t6.0\t\t8.0\t0.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t42.0\t\t15.0\t1.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t42.0\t9.0\t8.0\t4.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters\t891\t3.5\tLive Phone\tNonpartisan\tNone\n5.0\t87.0\t1.0\t5.0\t1.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t4.0\t6.0\t3.0\t4.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t32.0\t16.0\t13.0\t5.0\tcnn-24723\tCNN\t2016-06-16\t2016-06-19\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t47.0\t\t5.0\t8.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters\t803\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t87.0\t\t2.0\t5.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t8.0\t\t4.0\t4.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t42.0\t\t9.0\t11.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t42.0\t9.0\t6.0\t5.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters\t803\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t85.0\t3.0\t2.0\t4.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n79.0\t7.0\t6.0\t5.0\t3.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t31.0\t18.0\t11.0\t8.0\tmonmouth-university-24712\tMonmouth University\t2016-06-15\t2016-06-19\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t48.0\t\t\t10.0\tnbc-surveymonkey-24724\tNBC/SurveyMonkey\t2016-06-13\t2016-06-19\t\tRegistered Voters\t16135\t1.1\tInternet\tNonpartisan\tNone\n38.0\t42.0\t9.0\t5.0\t7.0\tnbc-surveymonkey-24724\tNBC/SurveyMonkey\t2016-06-13\t2016-06-19\t\tRegistered Voters\t16135\t1.1\tInternet\tNonpartisan\tNone\n45.0\t50.0\t\t5.0\t\tgravis-marketing-oann-24702\tGravis Marketing/OANN\t2016-06-16\t2016-06-16\t\tRegistered Voters\t2197\t2.1\tAutomated Phone\tSponsor\tRep\n39.0\t44.0\t\t14.0\t4.0\trasmussen-24690\tRasmussen\t2016-06-14\t2016-06-15\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n32.0\t41.0\t\t15.0\t11.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters\t1323\t\tInternet\tNonpartisan\tNone\n8.0\t75.0\t\t11.0\t5.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n68.0\t6.0\t\t14.0\t12.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n25.0\t27.0\t\t30.0\t19.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n29.0\t39.0\t6.0\t12.0\t13.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters\t1323\t\tInternet\tNonpartisan\tNone\n6.0\t72.0\t3.0\t13.0\t7.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n64.0\t5.0\t8.0\t8.0\t14.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n24.0\t24.0\t12.0\t20.0\t21.0\tipsos-reuters-24692\tIpsos/Reuters\t2016-06-11\t2016-06-15\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n35.0\t40.0\t\t16.0\t9.0\tcnbc-24718\tCNBC\t2016-06-11\t2016-06-13\t\tRegistered Voters\t801\t3.5\tLive Phone\tNonpartisan\tNone\n37.0\t49.0\t9.0\t\t5.0\tbloomberg-selzer-24677\tBloomberg/Selzer\t2016-06-10\t2016-06-13\t\tLikely Voters\t750\t3.6\tLive Phone\tNonpartisan\tNone\n36.0\t54.0\t\t\t9.0\tbloomberg-selzer-24677\tBloomberg/Selzer\t2016-06-10\t2016-06-13\t\tLikely Voters\t750\t3.6\tLive Phone\tNonpartisan\tNone\n37.0\t43.0\t\t5.0\t15.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters\t1048\t4.0\tLive Phone\tNonpartisan\tNone\n6.0\t81.0\t\t3.0\t10.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - Democrat\t369\t\tLive Phone\tNonpartisan\tNone\n73.0\t6.0\t\t4.0\t16.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n37.0\t35.0\t\t8.0\t21.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - independent\t374\t\tLive Phone\tNonpartisan\tNone\n32.0\t39.0\t11.0\t4.0\t15.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters\t1048\t4.0\tLive Phone\tNonpartisan\tNone\n6.0\t75.0\t5.0\t3.0\t10.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - Democrat\t369\t\tLive Phone\tNonpartisan\tNone\n67.0\t6.0\t9.0\t4.0\t14.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - Republican\t305\t\tLive Phone\tNonpartisan\tNone\n29.0\t30.0\t17.0\t5.0\t19.0\tcbs-24687\tCBS\t2016-06-09\t2016-06-13\t\tRegistered Voters - independent\t374\t\tLive Phone\tNonpartisan\tNone\n42.0\t49.0\t\t\t9.0\tnbc-surveymonkey-24667\tNBC/SurveyMonkey\t2016-06-06\t2016-06-12\t\tRegistered Voters\t9355\t1.4\tInternet\tNonpartisan\tNone\n38.0\t42.0\t9.0\t5.0\t6.0\tnbc-surveymonkey-24667\tNBC/SurveyMonkey\t2016-06-06\t2016-06-12\t\tRegistered Voters\t9355\t1.4\tInternet\tNonpartisan\tNone\n37.0\t42.0\t\t\t21.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters\t1362\t3.0\tInternet\tNonpartisan\tNone\n8.0\t78.0\t\t\t14.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - Democrat\t477\t\tInternet\tNonpartisan\tNone\n74.0\t13.0\t\t\t13.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - Republican\t433\t\tInternet\tNonpartisan\tNone\n33.0\t32.0\t\t\t35.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - independent\t452\t\tInternet\tNonpartisan\tNone\n33.0\t39.0\t10.0\t\t19.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters\t1362\t3.0\tInternet\tNonpartisan\tNone\n6.0\t75.0\t6.0\t\t12.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - Democrat\t477\t\tInternet\tNonpartisan\tNone\n69.0\t10.0\t7.0\t\t13.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - Republican\t433\t\tInternet\tNonpartisan\tNone\n27.0\t28.0\t15.0\t\t30.0\tmorning-consult-24673\tMorning Consult\t2016-06-08\t2016-06-09\t\tRegistered Voters - independent\t452\t\tInternet\tNonpartisan\tNone\n39.0\t42.0\t\t7.0\t12.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters\t1004\t3.0\tLive Phone\tNonpartisan\tNone\n8.0\t79.0\t\t5.0\t8.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n79.0\t6.0\t\t5.0\t10.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n35.0\t30.0\t\t17.0\t18.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t39.0\t12.0\t3.0\t11.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters\t1004\t3.0\tLive Phone\tNonpartisan\tNone\n8.0\t75.0\t7.0\t2.0\t9.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n72.0\t6.0\t11.0\t2.0\t9.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t22.0\t23.0\t7.0\t17.0\tfox-24646\tFOX\t2016-06-05\t2016-06-08\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t42.0\t\t12.0\t11.0\tipsos-reuters-24644\tIpsos/Reuters\t2016-06-04\t2016-06-08\t\tRegistered Voters\t1440\t\tInternet\tNonpartisan\tNone\n8.0\t74.0\t\t8.0\t10.0\tipsos-reuters-24644\tIpsos/Reuters\t2016-06-04\t2016-06-08\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n71.0\t8.0\t\t13.0\t8.0\tipsos-reuters-24644\tIpsos/Reuters\t2016-06-04\t2016-06-08\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n33.0\t29.0\t\t21.0\t17.0\tipsos-reuters-24644\tIpsos/Reuters\t2016-06-04\t2016-06-08\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t\t15.0\t5.0\trasmussen-24642\tRasmussen\t2016-06-06\t2016-06-07\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n41.0\t44.0\t\t6.0\t9.0\tyougov-economist-24633\tYouGov/Economist\t2016-06-02\t2016-06-05\t\tRegistered Voters\t1636\t3.6\tInternet\tNonpartisan\tNone\n9.0\t84.0\t\t3.0\t5.0\tyougov-economist-24633\tYouGov/Economist\t2016-06-02\t2016-06-05\t\tRegistered Voters - Democrat\t632\t\tInternet\tNonpartisan\tNone\n80.0\t6.0\t\t5.0\t9.0\tyougov-economist-24633\tYouGov/Economist\t2016-06-02\t2016-06-05\t\tRegistered Voters - Republican\t470\t\tInternet\tNonpartisan\tNone\n37.0\t38.0\t\t12.0\t13.0\tyougov-economist-24633\tYouGov/Economist\t2016-06-02\t2016-06-05\t\tRegistered Voters - independent\t534\t\tInternet\tNonpartisan\tNone\n40.0\t44.0\t\t\t16.0\tmorning-consult-24629\tMorning Consult\t2016-06-01\t2016-06-05\t\tRegistered Voters\t4002\t2.0\tInternet\tNonpartisan\tNone\n10.0\t79.0\t\t\t12.0\tmorning-consult-24629\tMorning Consult\t2016-06-01\t2016-06-05\t\tRegistered Voters - Democrat\t1491\t\tInternet\tNonpartisan\tNone\n80.0\t10.0\t\t\t10.0\tmorning-consult-24629\tMorning Consult\t2016-06-01\t2016-06-05\t\tRegistered Voters - Republican\t1199\t\tInternet\tNonpartisan\tNone\n38.0\t34.0\t\t\t28.0\tmorning-consult-24629\tMorning Consult\t2016-06-01\t2016-06-05\t\tRegistered Voters - independent\t1312\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t\t9.0\t7.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters\t828\t\tLive Phone\tNonpartisan\tNone\n8.0\t84.0\t\t3.0\t5.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - Democrat\t291\t\tLive Phone\tNonpartisan\tNone\n74.0\t12.0\t\t8.0\t6.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - Republican\t259\t\tLive Phone\tNonpartisan\tNone\n41.0\t35.0\t\t16.0\t8.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - independent\t271\t\tLive Phone\tNonpartisan\tNone\n36.0\t37.0\t9.0\t8.0\t10.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters\t828\t\tLive Phone\tNonpartisan\tNone\n8.0\t79.0\t6.0\t3.0\t4.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - Democrat\t394\t\tLive Phone\tNonpartisan\tNone\n80.0\t2.0\t4.0\t4.0\t10.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n28.0\t27.0\t16.0\t16.0\t13.0\tibd-tipp-24625\tIBD/TIPP\t2016-05-31\t2016-06-05\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t\t9.0\tnbc-surveymonkey-24631\tNBC/SurveyMonkey\t2016-05-30\t2016-06-05\t\tRegistered Voters\t9240\t1.4\tInternet\tNonpartisan\tNone\n38.0\t39.0\t\t18.0\t5.0\trasmussen-24597\tRasmussen\t2016-05-31\t2016-06-01\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n34.0\t43.0\t\t13.0\t10.0\tipsos-reuters-24596\tIpsos/Reuters\t2016-05-28\t2016-06-01\t\tRegistered Voters\t1332\t\tInternet\tNonpartisan\tNone\n9.0\t72.0\t\t11.0\t8.0\tipsos-reuters-24596\tIpsos/Reuters\t2016-05-28\t2016-06-01\t\tRegistered Voters - Democrat\t655\t\tInternet\tNonpartisan\tNone\n73.0\t9.0\t\t11.0\t6.0\tipsos-reuters-24596\tIpsos/Reuters\t2016-05-28\t2016-06-01\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n34.0\t19.0\t\t22.0\t25.0\tipsos-reuters-24596\tIpsos/Reuters\t2016-05-28\t2016-06-01\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t42.0\t\t\t18.0\tmorning-consult-24589\tMorning Consult\t2016-05-24\t2016-05-30\t\tRegistered Voters\t4002\t2.0\tInternet\tNonpartisan\tNone\n12.0\t77.0\t\t\t11.0\tmorning-consult-24589\tMorning Consult\t2016-05-24\t2016-05-30\t\tRegistered Voters - Democrat\t1507\t\tInternet\tNonpartisan\tNone\n79.0\t10.0\t\t\t11.0\tmorning-consult-24589\tMorning Consult\t2016-05-24\t2016-05-30\t\tRegistered Voters - Republican\t1147\t\tInternet\tNonpartisan\tNone\n36.0\t31.0\t\t\t33.0\tmorning-consult-24589\tMorning Consult\t2016-05-24\t2016-05-30\t\tRegistered Voters - independent\t1348\t\tInternet\tNonpartisan\tNone\n41.0\t45.0\t\t3.0\t11.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters\t1561\t2.5\tLive Phone\tNonpartisan\tNone\n6.0\t90.0\t\t1.0\t4.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t4.0\t\t3.0\t7.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t37.0\t\t6.0\t17.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t40.0\t5.0\t4.0\t12.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters\t1561\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t85.0\t2.0\t4.0\t5.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n83.0\t4.0\t4.0\t2.0\t8.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t29.0\t10.0\t8.0\t16.0\tquinnipiac-24586\tQuinnipiac\t2016-05-24\t2016-05-30\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t47.0\t\t\t8.0\tnbc-surveymonkey-24575\tNBC/SurveyMonkey\t2016-05-23\t2016-05-29\t\tRegistered Voters\t12969\t1.2\tInternet\tNonpartisan\tNone\n36.0\t41.0\t\t13.0\t10.0\tipsos-reuters-24559\tIpsos/Reuters\t2016-05-21\t2016-05-25\t\tRegistered Voters\t1271\t\tInternet\tNonpartisan\tNone\n12.0\t70.0\t\t10.0\t8.0\tipsos-reuters-24559\tIpsos/Reuters\t2016-05-21\t2016-05-25\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n70.0\t9.0\t\t11.0\t10.0\tipsos-reuters-24559\tIpsos/Reuters\t2016-05-21\t2016-05-25\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n31.0\t30.0\t\t27.0\t13.0\tipsos-reuters-24559\tIpsos/Reuters\t2016-05-21\t2016-05-25\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n39.0\t40.0\t\t14.0\t7.0\trasmussen-24560\tRasmussen\t2016-05-23\t2016-05-24\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n41.0\t42.0\t\t7.0\t10.0\tyougov-economist-24557\tYouGov/Economist\t2016-05-20\t2016-05-23\t\tRegistered Voters\t1622\t3.5\tInternet\tNonpartisan\tNone\n8.0\t82.0\t\t3.0\t7.0\tyougov-economist-24557\tYouGov/Economist\t2016-05-20\t2016-05-23\t\tRegistered Voters - Democrat\t642\t\tInternet\tNonpartisan\tNone\n83.0\t3.0\t\t4.0\t10.0\tyougov-economist-24557\tYouGov/Economist\t2016-05-20\t2016-05-23\t\tRegistered Voters - Republican\t451\t\tInternet\tNonpartisan\tNone\n40.0\t36.0\t\t14.0\t12.0\tyougov-economist-24557\tYouGov/Economist\t2016-05-20\t2016-05-23\t\tRegistered Voters - independent\t529\t\tInternet\tNonpartisan\tNone\n40.0\t42.0\t\t\t18.0\tmorning-consult-24544\tMorning Consult\t2016-05-19\t2016-05-23\t\tRegistered Voters\t2001\t1.0\tInternet\tNonpartisan\tNone\n13.0\t75.0\t\t\t12.0\tmorning-consult-24544\tMorning Consult\t2016-05-19\t2016-05-23\t\tRegistered Voters - Democrat\t830\t\tInternet\tNonpartisan\tNone\n78.0\t10.0\t\t\t12.0\tmorning-consult-24544\tMorning Consult\t2016-05-19\t2016-05-23\t\tRegistered Voters - Republican\t523\t\tInternet\tNonpartisan\tNone\n44.0\t26.0\t\t\t30.0\tmorning-consult-24544\tMorning Consult\t2016-05-19\t2016-05-23\t\tRegistered Voters - independent\t648\t\tInternet\tNonpartisan\tNone\n43.0\t47.0\t\t\t9.0\tnbc-surveymonkey-24539\tNBC/SurveyMonkey\t2016-05-16\t2016-05-22\t\tRegistered Voters\t14513\t1.0\tInternet\tNonpartisan\tNone\n46.0\t46.0\t\t2.0\t6.0\targ-24535\tARG\t2016-05-17\t2016-05-20\t\tRegistered Voters\t980\t3.2\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t\t\t14.0\tschoen-d-24527\tSchoen (D)\t2016-05-16\t2016-05-19\t\tLikely Voters\t1000\t3.0\tLive Phone\tPollster\tDem\n46.0\t44.0\t\t7.0\t3.0\tabc-post-24526\tABC/Post\t2016-05-16\t2016-05-19\t\tRegistered Voters\t829\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t46.0\t\t9.0\t2.0\tnbc-wsj-24525\tNBC/WSJ\t2016-05-15\t2016-05-19\t\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n42.0\t37.0\t\t13.0\t7.0\trasmussen-24514\tRasmussen\t2016-05-17\t2016-05-18\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n36.0\t41.0\t\t14.0\t9.0\tipsos-reuters-24517\tIpsos/Reuters\t2016-05-14\t2016-05-18\t\tRegistered Voters\t1397\t\tInternet\tNonpartisan\tNone\n10.0\t73.0\t\t10.0\t7.0\tipsos-reuters-24517\tIpsos/Reuters\t2016-05-14\t2016-05-18\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n72.0\t6.0\t\t14.0\t7.0\tipsos-reuters-24517\tIpsos/Reuters\t2016-05-14\t2016-05-18\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n41.0\t22.0\t\t21.0\t14.0\tipsos-reuters-24517\tIpsos/Reuters\t2016-05-14\t2016-05-18\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n45.0\t42.0\t\t3.0\t9.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters\t1021\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t83.0\t\t3.0\t8.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n82.0\t7.0\t\t4.0\t8.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t30.0\t\t4.0\t20.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t39.0\t10.0\t2.0\t4.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters\t1021\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t78.0\t8.0\t2.0\t7.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n77.0\t7.0\t8.0\t2.0\t6.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t24.0\t18.0\t2.0\t16.0\tfox-24512\tFOX\t2016-05-14\t2016-05-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t47.0\t\t2.0\t10.0\tcbs-times-24521\tCBS/Times\t2016-05-13\t2016-05-17\t\tRegistered Voters\t1109\t\tLive Phone\tNonpartisan\tNone\n5.0\t88.0\t\t1.0\t5.0\tcbs-times-24521\tCBS/Times\t2016-05-13\t2016-05-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t6.0\t\t2.0\t7.0\tcbs-times-24521\tCBS/Times\t2016-05-13\t2016-05-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t40.0\t\t3.0\t17.0\tcbs-times-24521\tCBS/Times\t2016-05-13\t2016-05-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t46.0\t\t\t12.0\tmclaughlin-r-24510\tMcLaughlin (R)\t2016-05-11\t2016-05-16\t\tLikely Voters\t1000\t3.1\tInternet\tPollster\tRep\n12.0\t81.0\t\t\t8.0\tmclaughlin-r-24510\tMcLaughlin (R)\t2016-05-11\t2016-05-16\t\tLikely Voters - Democrat\t\t\tInternet\tPollster\tRep\n83.0\t11.0\t\t\t7.0\tmclaughlin-r-24510\tMcLaughlin (R)\t2016-05-11\t2016-05-16\t\tLikely Voters - Republican\t\t\tInternet\tPollster\tRep\n34.0\t41.0\t\t\t25.0\tmclaughlin-r-24510\tMcLaughlin (R)\t2016-05-11\t2016-05-16\t\tLikely Voters - independent\t\t\tInternet\tPollster\tRep\n40.0\t42.0\t\t\t17.0\tmorning-consult-24498\tMorning Consult\t2016-05-11\t2016-05-15\t\tRegistered Voters\t3971\t2.0\tInternet\tNonpartisan\tNone\n13.0\t76.0\t\t\t11.0\tmorning-consult-24498\tMorning Consult\t2016-05-11\t2016-05-15\t\tRegistered Voters - Democrat\t1519\t\tInternet\tNonpartisan\tNone\n76.0\t11.0\t\t\t13.0\tmorning-consult-24498\tMorning Consult\t2016-05-11\t2016-05-15\t\tRegistered Voters - Republican\t1217\t\tInternet\tNonpartisan\tNone\n39.0\t32.0\t\t\t29.0\tmorning-consult-24498\tMorning Consult\t2016-05-11\t2016-05-15\t\tRegistered Voters - independent\t1235\t\tInternet\tNonpartisan\tNone\n45.0\t48.0\t\t\t7.0\tnbc-surveymonkey-24497\tNBC/SurveyMonkey\t2016-05-09\t2016-05-15\t\tRegistered Voters\t12507\t1.2\tInternet\tNonpartisan\tNone\n37.0\t41.0\t\t14.0\t8.0\tipsos-reuters-24487\tIpsos/Reuters\t2016-05-07\t2016-05-11\t\tRegistered Voters\t1397\t\tInternet\tNonpartisan\tNone\n11.0\t75.0\t\t10.0\t4.0\tipsos-reuters-24487\tIpsos/Reuters\t2016-05-07\t2016-05-11\t\tRegistered Voters - Democrat\t\t\tInternet\tNonpartisan\tNone\n69.0\t8.0\t\t15.0\t9.0\tipsos-reuters-24487\tIpsos/Reuters\t2016-05-07\t2016-05-11\t\tRegistered Voters - Republican\t\t\tInternet\tNonpartisan\tNone\n42.0\t19.0\t\t28.0\t10.0\tipsos-reuters-24487\tIpsos/Reuters\t2016-05-07\t2016-05-11\t\tRegistered Voters - independent\t\t\tInternet\tNonpartisan\tNone\n49.0\t51.0\t\t\t\tgravis-marketing-oann-24484\tGravis Marketing/OANN\t2016-05-10\t2016-05-10\t\tRegistered Voters\t1574\t2.5\tAutomated Phone\tSponsor\tRep\n40.0\t42.0\t\t6.0\t12.0\tyougov-economist-24478\tYouGov/Economist\t2016-05-06\t2016-05-09\t\tRegistered Voters\t1612\t\tInternet\tNonpartisan\tNone\n5.0\t89.0\t\t3.0\t3.0\tyougov-economist-24478\tYouGov/Economist\t2016-05-06\t2016-05-09\t\tRegistered Voters - Democrat\t453\t\tInternet\tNonpartisan\tNone\n80.0\t4.0\t\t5.0\t10.0\tyougov-economist-24478\tYouGov/Economist\t2016-05-06\t2016-05-09\t\tRegistered Voters - Republican\t445\t\tInternet\tNonpartisan\tNone\n34.0\t41.0\t\t8.0\t16.0\tyougov-economist-24478\tYouGov/Economist\t2016-05-06\t2016-05-09\t\tRegistered Voters - independent\t714\t\tInternet\tNonpartisan\tNone\n38.0\t42.0\t4.0\t2.0\t13.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, who would you vote for?\tLikely Voters\t1222\t3.2\tIVR/Online\tPollster\tDem\n9.0\t78.0\t2.0\t2.0\t10.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n78.0\t7.0\t4.0\t2.0\t10.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n31.0\t30.0\t10.0\t5.0\t25.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n41.0\t47.0\t\t\t12.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t1222\t3.2\tIVR/Online\tPollster\tDem\n9.0\t84.0\t\t\t7.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n82.0\t8.0\t\t\t11.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n36.0\t38.0\t\t\t26.0\tppp-d-24466\tPPP (D)\t2016-05-06\t2016-05-09\tIf the candidates for President this fall were just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n38.0\t44.0\t\t\t18.0\tmorning-consult-24474\tMorning Consult\t2016-05-05\t2016-05-09\t\tRegistered Voters\t6005\t1.0\tInternet\tNonpartisan\tNone\n11.0\t77.0\t\t\t12.0\tmorning-consult-24474\tMorning Consult\t2016-05-05\t2016-05-09\t\tRegistered Voters - Democrat\t2273\t\tInternet\tNonpartisan\tNone\n74.0\t14.0\t\t\t12.0\tmorning-consult-24474\tMorning Consult\t2016-05-05\t2016-05-09\t\tRegistered Voters - Republican\t1850\t\tInternet\tNonpartisan\tNone\n37.0\t34.0\t\t\t29.0\tmorning-consult-24474\tMorning Consult\t2016-05-05\t2016-05-09\t\tRegistered Voters - independent\t1881\t\tInternet\tNonpartisan\tNone\n44.0\t49.0\t\t\t7.0\tnbc-surveymonkey-24468\tNBC/SurveyMonkey\t2016-05-02\t2016-05-08\t\tRegistered Voters\t11089\t1.3\tInternet\tNonpartisan\tNone\n36.0\t45.0\t\t10.0\t8.0\tipsos-reuters-24447\tIpsos/Reuters\t2016-04-30\t2016-05-04\t\tRegistered Voters\t1102\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t\t\t15.0\tmorning-consult-24431\tMorning Consult\t2016-04-29\t2016-05-02\t\tRegistered Voters\t1976\t2.0\tInternet\tNonpartisan\tNone\n11.0\t81.0\t\t\t8.0\tmorning-consult-24431\tMorning Consult\t2016-04-29\t2016-05-02\t\tRegistered Voters - Democrat\t781\t\tInternet\tNonpartisan\tNone\n77.0\t9.0\t\t\t14.0\tmorning-consult-24431\tMorning Consult\t2016-04-29\t2016-05-02\t\tRegistered Voters - Republican\t581\t\tInternet\tNonpartisan\tNone\n42.0\t34.0\t\t\t24.0\tmorning-consult-24431\tMorning Consult\t2016-04-29\t2016-05-02\t\tRegistered Voters - independent\t614\t\tInternet\tNonpartisan\tNone\n41.0\t54.0\t\t5.0\t0.0\tcnn-24438\tCNN\t2016-04-28\t2016-05-01\t\tRegistered Voters\t890\t3.5\tLive Phone\tNonpartisan\tNone\n5.0\t94.0\t\t1.0\t\tcnn-24438\tCNN\t2016-04-28\t2016-05-01\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n84.0\t12.0\t\t4.0\t\tcnn-24438\tCNN\t2016-04-28\t2016-05-01\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t51.0\t\t9.0\t1.0\tcnn-24438\tCNN\t2016-04-28\t2016-05-01\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t43.0\t\t\t20.0\tnbc-surveymonkey-24429\tNBC/SurveyMonkey\t2016-04-25\t2016-05-01\t\tRegistered Voters\t12462\t1.2\tInternet\tNonpartisan\tNone\n39.0\t46.0\t\t\t15.0\tmorning-consult-24408\tMorning Consult\t2016-04-26\t2016-04-29\t\tRegistered Voters\t1964\t2.0\tInternet\tNonpartisan\tNone\n11.0\t78.0\t\t\t11.0\tmorning-consult-24408\tMorning Consult\t2016-04-26\t2016-04-29\t\tRegistered Voters - Democrat\t733\t\tInternet\tNonpartisan\tNone\n76.0\t11.0\t\t\t13.0\tmorning-consult-24408\tMorning Consult\t2016-04-26\t2016-04-29\t\tRegistered Voters - Republican\t573\t\tInternet\tNonpartisan\tNone\n37.0\t40.0\t\t\t23.0\tmorning-consult-24408\tMorning Consult\t2016-04-26\t2016-04-29\t\tRegistered Voters - independent\t658\t\tInternet\tNonpartisan\tNone\n41.0\t39.0\t\t15.0\t5.0\trasmussen-24426\tRasmussen\t2016-04-27\t2016-04-28\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n40.0\t47.0\t\t7.0\t5.0\tibd-tipp-24414\tIBD/TIPP\t2016-04-22\t2016-04-28\t\tRegistered Voters\t814\t\tLive Phone\tNonpartisan\tNone\n9.0\t86.0\t\t2.0\t2.0\tibd-tipp-24414\tIBD/TIPP\t2016-04-22\t2016-04-28\t\tRegistered Voters - Democrat\t280\t\tLive Phone\tNonpartisan\tNone\n77.0\t10.0\t\t8.0\t6.0\tibd-tipp-24414\tIBD/TIPP\t2016-04-22\t2016-04-28\t\tRegistered Voters - Republican\t250\t\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t\t10.0\t8.0\tibd-tipp-24414\tIBD/TIPP\t2016-04-22\t2016-04-28\t\tRegistered Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n36.0\t43.0\t\t13.0\t9.0\tipsos-reuters-24395\tIpsos/Reuters\t2016-04-23\t2016-04-27\t\tRegistered Voters\t1756\t\tInternet\tNonpartisan\tNone\n38.0\t38.0\t\t16.0\t2.0\trasmussen-24400\tRasmussen\t2016-04-25\t2016-04-26\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n40.0\t43.0\t\t5.0\t13.0\tyougov-economist-24390\tYouGov/Economist\t2016-04-22\t2016-04-26\t\tRegistered Voters\t1561\t\tInternet\tNonpartisan\tNone\n9.0\t82.0\t\t3.0\t6.0\tyougov-economist-24390\tYouGov/Economist\t2016-04-22\t2016-04-26\t\tRegistered Voters - Democrat\t610\t\tInternet\tNonpartisan\tNone\n79.0\t6.0\t\t3.0\t12.0\tyougov-economist-24390\tYouGov/Economist\t2016-04-22\t2016-04-26\t\tRegistered Voters - Republican\t449\t\tInternet\tNonpartisan\tNone\n40.0\t31.0\t\t8.0\t21.0\tyougov-economist-24390\tYouGov/Economist\t2016-04-22\t2016-04-26\t\tRegistered Voters - independent\t502\t\tInternet\tNonpartisan\tNone\n39.0\t50.0\t\t\t10.0\tsuffolk-usa-today-24356\tSuffolk/USA Today\t2016-04-20\t2016-04-24\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t90.0\t\t\t5.0\tsuffolk-usa-today-24356\tSuffolk/USA Today\t2016-04-20\t2016-04-24\t\tLikely Voters - Democrat\t357\t5.1\tLive Phone\tNonpartisan\tNone\n80.0\t9.0\t\t\t11.0\tsuffolk-usa-today-24356\tSuffolk/USA Today\t2016-04-20\t2016-04-24\t\tLikely Voters - Republican\t305\t5.7\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t\t\t16.0\tsuffolk-usa-today-24356\tSuffolk/USA Today\t2016-04-20\t2016-04-24\t\tLikely Voters - independent\t338\t\tLive Phone\tNonpartisan\tNone\n36.0\t44.0\t\t\t20.0\tnbc-surveymonkey-24362\tNBC/SurveyMonkey\t2016-04-18\t2016-04-24\t\tRegistered Voters\t9405\t1.4\tInternet\tNonpartisan\tNone\n40.0\t46.0\t\t\t15.0\tmorning-consult-24410\tMorning Consult\t2016-04-20\t2016-04-22\t\tRegistered Voters\t2003\t2.0\tInternet\tNonpartisan\tNone\n13.0\t79.0\t\t\t8.0\tmorning-consult-24410\tMorning Consult\t2016-04-20\t2016-04-22\t\tRegistered Voters - Democrat\t782\t\tInternet\tNonpartisan\tNone\n74.0\t14.0\t\t\t12.0\tmorning-consult-24410\tMorning Consult\t2016-04-20\t2016-04-22\t\tRegistered Voters - Republican\t622\t\tInternet\tNonpartisan\tNone\n39.0\t34.0\t\t\t27.0\tmorning-consult-24410\tMorning Consult\t2016-04-20\t2016-04-22\t\tRegistered Voters - independent\t599\t\tInternet\tNonpartisan\tNone\n40.0\t47.0\t\t\t14.0\tzogby-internet-24393\tZogby (Internet)\t2016-04-19\t2016-04-20\t\tLikely Voters\t834\t3.5\tInternet\tNonpartisan\tNone\n43.0\t46.0\t\t\t11.0\tgwu-battleground-24342\tGWU/Battleground\t2016-04-17\t2016-04-20\t\tLikely Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n9.0\t86.0\t\t\t5.0\tgwu-battleground-24342\tGWU/Battleground\t2016-04-17\t2016-04-20\t\tLikely Voters - Democrat\t420\t\tLive Phone\tNonpartisan\tNone\n80.0\t8.0\t\t\t13.0\tgwu-battleground-24342\tGWU/Battleground\t2016-04-17\t2016-04-20\t\tLikely Voters - Republican\t390\t\tLive Phone\tNonpartisan\tNone\n42.0\t37.0\t\t\t21.0\tgwu-battleground-24342\tGWU/Battleground\t2016-04-17\t2016-04-20\t\tLikely Voters - independent\t190\t\tLive Phone\tNonpartisan\tNone\n33.0\t44.0\t\t12.0\t12.0\tipsos-reuters-24323\tIpsos/Reuters\t2016-04-16\t2016-04-20\t\tRegistered Voters\t1334\t\tInternet\tNonpartisan\tNone\n37.0\t46.0\t\t\t17.0\tmorning-consult-24302\tMorning Consult\t2016-04-15\t2016-04-17\t\tRegistered Voters\t2032\t2.0\tInternet\tNonpartisan\tNone\n12.0\t78.0\t\t\t10.0\tmorning-consult-24302\tMorning Consult\t2016-04-15\t2016-04-17\t\tRegistered Voters - Democrat\t775\t\tInternet\tNonpartisan\tNone\n70.0\t13.0\t\t\t17.0\tmorning-consult-24302\tMorning Consult\t2016-04-15\t2016-04-17\t\tRegistered Voters - Republican\t624\t\tInternet\tNonpartisan\tNone\n36.0\t40.0\t\t\t24.0\tmorning-consult-24302\tMorning Consult\t2016-04-15\t2016-04-17\t\tRegistered Voters - independent\t633\t\tInternet\tNonpartisan\tNone\n39.0\t48.0\t\t\t13.0\tnbc-surveymonkey-24307\tNBC/SurveyMonkey\t2016-04-11\t2016-04-17\t\tRegistered Voters\t11498\t1.3\tInternet\tNonpartisan\tNone\n39.0\t50.0\t\t9.0\t2.0\tnbc-wsj-24305\tNBC/WSJ\t2016-04-10\t2016-04-14\t\tRegistered Voters\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n41.0\t48.0\t\t2.0\t8.0\tfox-24280\tFOX\t2016-04-11\t2016-04-13\t\tRegistered Voters\t1021\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t87.0\t\t1.0\t6.0\tfox-24280\tFOX\t2016-04-11\t2016-04-13\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n82.0\t11.0\t\t2.0\t6.0\tfox-24280\tFOX\t2016-04-11\t2016-04-13\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t40.0\t\t7.0\t16.0\tfox-24280\tFOX\t2016-04-11\t2016-04-13\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t43.0\t\t15.0\t7.0\tipsos-reuters-24278\tIpsos/Reuters\t2016-04-09\t2016-04-13\t\tRegistered Voters\t1424\t\tInternet\tNonpartisan\tNone\n40.0\t50.0\t\t1.0\t8.0\tcbs-24282\tCBS\t2016-04-08\t2016-04-12\t\tRegistered Voters\t1098\t\tLive Phone\tNonpartisan\tNone\n8.0\t88.0\t\t1.0\t4.0\tcbs-24282\tCBS\t2016-04-08\t2016-04-12\t\tRegistered Voters - Democrat\t348\t\tLive Phone\tNonpartisan\tNone\n82.0\t11.0\t\t\t8.0\tcbs-24282\tCBS\t2016-04-08\t2016-04-12\t\tRegistered Voters - Republican\t333\t\tLive Phone\tNonpartisan\tNone\n33.0\t51.0\t\t2.0\t14.0\tcbs-24282\tCBS\t2016-04-08\t2016-04-12\t\tRegistered Voters - independent\t352\t\tLive Phone\tNonpartisan\tNone\n37.0\t46.0\t\t\t16.0\tmorning-consult-24311\tMorning Consult\t2016-04-08\t2016-04-11\t\tRegistered Voters\t4015\t2.0\tInternet\tNonpartisan\tNone\n12.0\t80.0\t\t\t8.0\tmorning-consult-24311\tMorning Consult\t2016-04-08\t2016-04-11\t\tRegistered Voters - Democrat\t1517\t\tInternet\tNonpartisan\tNone\n76.0\t10.0\t\t\t14.0\tmorning-consult-24311\tMorning Consult\t2016-04-08\t2016-04-11\t\tRegistered Voters - Republican\t1118\t\tInternet\tNonpartisan\tNone\n34.0\t38.0\t\t\t28.0\tmorning-consult-24311\tMorning Consult\t2016-04-08\t2016-04-11\t\tRegistered Voters - independent\t1379\t\tInternet\tNonpartisan\tNone\n36.0\t43.0\t\t0.0\t21.0\tnbc-surveymonkey-24251\tNBC/SurveyMonkey\t2016-04-04\t2016-04-10\t\tRegistered Voters\t11204\t1.3\tInternet\tNonpartisan\tNone\n34.0\t39.0\t\t16.0\t11.0\tipsos-reuters-24232\tIpsos/Reuters\t2016-04-02\t2016-04-06\t\tRegistered Voters\t1325\t\tInternet\tNonpartisan\tNone\n38.0\t45.0\t\t\t17.0\tmorning-consult-24207\tMorning Consult\t2016-04-01\t2016-04-03\t\tRegistered Voters\t2004\t2.0\tInternet\tNonpartisan\tNone\n10.0\t79.0\t\t\t11.0\tmorning-consult-24207\tMorning Consult\t2016-04-01\t2016-04-03\t\tRegistered Voters - Democrat\t746\t\tInternet\tNonpartisan\tNone\n72.0\t13.0\t\t\t15.0\tmorning-consult-24207\tMorning Consult\t2016-04-01\t2016-04-03\t\tRegistered Voters - Republican\t598\t\tInternet\tNonpartisan\tNone\n39.0\t36.0\t\t\t25.0\tmorning-consult-24207\tMorning Consult\t2016-04-01\t2016-04-03\t\tRegistered Voters - independent\t659\t\tInternet\tNonpartisan\tNone\n33.0\t45.0\t\t\t21.0\tnbc-surveymonkey-24206\tNBC/SurveyMonkey\t2016-03-28\t2016-04-03\t\tRegistered Voters\t12116\t\tInternet\tNonpartisan\tNone\n35.0\t47.0\t\t9.0\t9.0\tibd-tipp-24194\tIBD/TIPP\t2016-03-28\t2016-04-02\t\tRegistered Voters\t819\t\tLive Phone\tNonpartisan\tNone\n8.0\t84.0\t\t4.0\t4.0\tibd-tipp-24194\tIBD/TIPP\t2016-03-28\t2016-04-02\t\tRegistered Voters - Democrat\t284\t\tLive Phone\tNonpartisan\tNone\n69.0\t9.0\t\t10.0\t12.0\tibd-tipp-24194\tIBD/TIPP\t2016-03-28\t2016-04-02\t\tRegistered Voters - Republican\t245\t\tLive Phone\tNonpartisan\tNone\n35.0\t41.0\t\t12.0\t12.0\tibd-tipp-24194\tIBD/TIPP\t2016-03-28\t2016-04-02\t\tRegistered Voters - independent\t278\t\tLive Phone\tNonpartisan\tNone\n41.0\t50.0\t\t\t9.0\tmcclatchy-marist-24230\tMcClatchy/Marist\t2016-03-29\t2016-03-31\t\tRegistered Voters\t1066\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t90.0\t\t\t3.0\tmcclatchy-marist-24230\tMcClatchy/Marist\t2016-03-29\t2016-03-31\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t12.0\t\t\t7.0\tmcclatchy-marist-24230\tMcClatchy/Marist\t2016-03-29\t2016-03-31\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t44.0\t\t\t15.0\tmcclatchy-marist-24230\tMcClatchy/Marist\t2016-03-29\t2016-03-31\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n32.0\t45.0\t\t13.0\t9.0\tipsos-reuters-24179\tIpsos/Reuters\t2016-03-27\t2016-03-31\t\tRegistered Voters\t1580\t\tInternet\tNonpartisan\tNone\n41.0\t45.0\t\t6.0\t7.0\tyougov-economist-24181\tYouGov/Economist\t2016-03-26\t2016-03-29\t\tRegistered Voters\t1613\t\tInternet\tNonpartisan\tNone\n3.0\t92.0\t\t\t5.0\tyougov-economist-24181\tYouGov/Economist\t2016-03-26\t2016-03-29\t\tRegistered Voters - Democrat\t434\t\tInternet\tNonpartisan\tNone\n76.0\t7.0\t\t\t17.0\tyougov-economist-24181\tYouGov/Economist\t2016-03-26\t2016-03-29\t\tRegistered Voters - Republican\t497\t\tInternet\tNonpartisan\tNone\n35.0\t49.0\t\t\t16.0\tyougov-economist-24181\tYouGov/Economist\t2016-03-26\t2016-03-29\t\tRegistered Voters - independent\t682\t\tInternet\tNonpartisan\tNone\n41.0\t48.0\t\t\t11.0\tppp-d-24178\tPPP (D)\t2016-03-24\t2016-03-26\t\tLikely Voters\t1083\t3.0\tIVR/Online\tPollster\tDem\n11.0\t82.0\t\t\t7.0\tppp-d-24178\tPPP (D)\t2016-03-24\t2016-03-26\t\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n75.0\t12.0\t\t\t13.0\tppp-d-24178\tPPP (D)\t2016-03-24\t2016-03-26\t\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n41.0\t44.0\t\t\t15.0\tppp-d-24178\tPPP (D)\t2016-03-24\t2016-03-26\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n38.0\t44.0\t\t\t18.0\tmorning-consult-24158\tMorning Consult\t2016-03-24\t2016-03-26\t\tRegistered Voters\t2071\t2.0\tInternet\tNonpartisan\tNone\n11.0\t78.0\t\t\t12.0\tmorning-consult-24158\tMorning Consult\t2016-03-24\t2016-03-26\t\tRegistered Voters - Democrat\t783\t\tInternet\tNonpartisan\tNone\n75.0\t11.0\t\t\t14.0\tmorning-consult-24158\tMorning Consult\t2016-03-24\t2016-03-26\t\tRegistered Voters - Republican\t654\t\tInternet\tNonpartisan\tNone\n34.0\t37.0\t\t\t29.0\tmorning-consult-24158\tMorning Consult\t2016-03-24\t2016-03-26\t\tRegistered Voters - independent\t635\t\tInternet\tNonpartisan\tNone\n40.0\t53.0\t\t1.0\t6.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24187\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-03-17\t2016-03-24\t\tLikely Voters\t900\t3.27\tLive Phone\tSponsor\tDem\n35.0\t43.0\t\t9.0\t13.0\tipsos-reuters-24148\tIpsos/Reuters\t2016-03-19\t2016-03-23\t\tRegistered Voters\t1311\t\tInternet\tNonpartisan\tNone\n41.0\t48.0\t\t\t12.0\tmclaughlin-r-24168\tMcLaughlin (R)\t2016-03-17\t2016-03-23\t\tLikely Voters\t1002\t3.1\tInternet\tPollster\tRep\n10.0\t84.0\t\t\t6.0\tmclaughlin-r-24168\tMcLaughlin (R)\t2016-03-17\t2016-03-23\t\tLikely Voters - Democrat\t398\t\tInternet\tPollster\tRep\n81.0\t9.0\t\t\t11.0\tmclaughlin-r-24168\tMcLaughlin (R)\t2016-03-17\t2016-03-23\t\tLikely Voters - Republican\t361\t\tInternet\tPollster\tRep\n37.0\t44.0\t\t\t19.0\tmclaughlin-r-24168\tMcLaughlin (R)\t2016-03-17\t2016-03-23\t\tLikely Voters - independent\t59\t\tInternet\tPollster\tRep\n38.0\t49.0\t\t2.0\t11.0\tfox-24141\tFOX\t2016-03-20\t2016-03-22\t\tRegistered Voters\t1016\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t92.0\t\t\t3.0\tfox-24141\tFOX\t2016-03-20\t2016-03-22\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n73.0\t12.0\t\t3.0\t12.0\tfox-24141\tFOX\t2016-03-20\t2016-03-22\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t33.0\t\t1.0\t25.0\tfox-24141\tFOX\t2016-03-20\t2016-03-22\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n36.0\t54.0\t\t\t9.0\tbloomberg-selzer-24140\tBloomberg/Selzer\t2016-03-19\t2016-03-22\t\tLikely Voters\t815\t3.4\tLive Phone\tNonpartisan\tNone\n38.0\t45.0\t\t\t18.0\tmorning-consult-24122\tMorning Consult\t2016-03-18\t2016-03-21\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n9.0\t80.0\t\t\t11.0\tmorning-consult-24122\tMorning Consult\t2016-03-18\t2016-03-21\t\tRegistered Voters - Democrat\t726\t\tInternet\tNonpartisan\tNone\n72.0\t12.0\t\t\t17.0\tmorning-consult-24122\tMorning Consult\t2016-03-18\t2016-03-21\t\tRegistered Voters - Republican\t581\t\tInternet\tNonpartisan\tNone\n39.0\t35.0\t\t\t26.0\tmorning-consult-24122\tMorning Consult\t2016-03-18\t2016-03-21\t\tRegistered Voters - independent\t694\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t\t3.0\t11.0\tquinnipiac-24134\tQuinnipiac\t2016-03-16\t2016-03-21\t\tRegistered Voters\t1451\t2.7\tLive Phone\tNonpartisan\tNone\n5.0\t88.0\t\t1.0\t6.0\tquinnipiac-24134\tQuinnipiac\t2016-03-16\t2016-03-21\t\tRegistered Voters - Democrat\t635\t3.9\tLive Phone\tNonpartisan\tNone\n80.0\t9.0\t\t2.0\t9.0\tquinnipiac-24134\tQuinnipiac\t2016-03-16\t2016-03-21\t\tRegistered Voters - Republican\t652\t3.8\tLive Phone\tNonpartisan\tNone\n40.0\t39.0\t\t5.0\t16.0\tquinnipiac-24134\tQuinnipiac\t2016-03-16\t2016-03-21\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t48.0\t\t2.0\t12.0\tmonmouth-university-24144\tMonmouth University\t2016-03-17\t2016-03-20\t\tRegistered Voters\t848\t3.4\tLive Phone\tNonpartisan\tNone\n5.0\t89.0\t\t\t6.0\tmonmouth-university-24144\tMonmouth University\t2016-03-17\t2016-03-20\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n73.0\t12.0\t\t2.0\t12.0\tmonmouth-university-24144\tMonmouth University\t2016-03-17\t2016-03-20\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t39.0\t\t3.0\t18.0\tmonmouth-university-24144\tMonmouth University\t2016-03-17\t2016-03-20\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t50.0\t\t1.0\t9.0\tcbs-times-24128\tCBS/Times\t2016-03-17\t2016-03-20\t\tRegistered Voters\t1058\t3.0\tLive Phone\tNonpartisan\tNone\n12.0\t85.0\t\t\t4.0\tcbs-times-24128\tCBS/Times\t2016-03-17\t2016-03-20\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n77.0\t11.0\t\t2.0\t10.0\tcbs-times-24128\tCBS/Times\t2016-03-17\t2016-03-20\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t45.0\t\t1.0\t17.0\tcbs-times-24128\tCBS/Times\t2016-03-17\t2016-03-20\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t53.0\t\t6.0\t0.0\tcnn-24127\tCNN\t2016-03-17\t2016-03-20\t\tRegistered Voters\t925\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t93.0\t\t1.0\t\tcnn-24127\tCNN\t2016-03-17\t2016-03-20\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n81.0\t9.0\t\t10.0\t\tcnn-24127\tCNN\t2016-03-17\t2016-03-20\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t49.0\t\t8.0\t\tcnn-24127\tCNN\t2016-03-17\t2016-03-20\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t45.0\t\t\t19.0\tmorning-consult-24111\tMorning Consult\t2016-03-16\t2016-03-18\t\tRegistered Voters\t2011\t2.0\tInternet\tNonpartisan\tNone\n9.0\t79.0\t\t\t12.0\tmorning-consult-24111\tMorning Consult\t2016-03-16\t2016-03-18\t\tRegistered Voters - Democrat\t755\t\tInternet\tNonpartisan\tNone\n73.0\t12.0\t\t\t15.0\tmorning-consult-24111\tMorning Consult\t2016-03-16\t2016-03-18\t\tRegistered Voters - Republican\t621\t\tInternet\tNonpartisan\tNone\n34.0\t36.0\t\t\t30.0\tmorning-consult-24111\tMorning Consult\t2016-03-16\t2016-03-18\t\tRegistered Voters - independent\t635\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t\t13.0\t8.0\tipsos-reuters-24103\tIpsos/Reuters\t2016-03-12\t2016-03-16\t\tRegistered Voters\t1437\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t\t\t16.0\tmorning-consult-24088\tMorning Consult\t2016-03-11\t2016-03-13\t\tRegistered Voters\t2978\t\tInternet\tNonpartisan\tNone\n9.0\t82.0\t\t\t10.0\tmorning-consult-24088\tMorning Consult\t2016-03-11\t2016-03-13\t\tRegistered Voters - Democrat\t1110\t\tInternet\tNonpartisan\tNone\n71.0\t12.0\t\t\t17.0\tmorning-consult-24088\tMorning Consult\t2016-03-11\t2016-03-13\t\tRegistered Voters - Republican\t895\t\tInternet\tNonpartisan\tNone\n37.0\t40.0\t\t\t23.0\tmorning-consult-24088\tMorning Consult\t2016-03-11\t2016-03-13\t\tRegistered Voters - independent\t973\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t\t8.0\t7.0\tyougov-economist-24084\tYouGov/Economist\t2016-03-10\t2016-03-12\t\tRegistered Voters\t1647\t\tInternet\tNonpartisan\tNone\n9.0\t84.0\t\t\t7.0\tyougov-economist-24084\tYouGov/Economist\t2016-03-10\t2016-03-12\t\tRegistered Voters - Democrat\t663\t\tInternet\tNonpartisan\tNone\n74.0\t9.0\t\t\t18.0\tyougov-economist-24084\tYouGov/Economist\t2016-03-10\t2016-03-12\t\tRegistered Voters - Republican\t449\t\tInternet\tNonpartisan\tNone\n43.0\t35.0\t\t\t22.0\tyougov-economist-24084\tYouGov/Economist\t2016-03-10\t2016-03-12\t\tRegistered Voters - independent\t535\t\tInternet\tNonpartisan\tNone\n31.0\t45.0\t\t13.0\t11.0\tipsos-reuters-24040\tIpsos/Reuters\t2016-03-05\t2016-03-09\t\tRegistered Voters\t1594\t\tInternet\tNonpartisan\tNone\n38.0\t46.0\t\t\t16.0\tmorning-consult-24011\tMorning Consult\t2016-03-04\t2016-03-06\t\tRegistered Voters\t1516\t\tInternet\tNonpartisan\tNone\n13.0\t79.0\t\t\t8.0\tmorning-consult-24011\tMorning Consult\t2016-03-04\t2016-03-06\t\tRegistered Voters - Democrat\t583\t\tInternet\tNonpartisan\tNone\n69.0\t13.0\t\t\t18.0\tmorning-consult-24011\tMorning Consult\t2016-03-04\t2016-03-06\t\tRegistered Voters - Republican\t508\t\tInternet\tNonpartisan\tNone\n35.0\t39.0\t\t\t25.0\tmorning-consult-24011\tMorning Consult\t2016-03-04\t2016-03-06\t\tRegistered Voters - independent\t425\t\tInternet\tNonpartisan\tNone\n38.0\t51.0\t\t9.0\t2.0\tnbc-wsj-24016\tNBC/WSJ\t2016-03-03\t2016-03-06\t\tRegistered Voters\t1200\t2.83\tLive Phone\tNonpartisan\tNone\n41.0\t50.0\t\t4.0\t6.0\tabc-post-24009\tABC/Post\t2016-03-03\t2016-03-06\t\tRegistered Voters\t864\t4.0\tLive Phone\tNonpartisan\tNone\n35.0\t46.0\t\t10.0\t10.0\tipsos-reuters-23970\tIpsos/Reuters\t2016-02-27\t2016-03-02\t\tRegistered Voters\t1381\t\tInternet\tNonpartisan\tNone\n36.0\t41.0\t\t21.0\t3.0\trasmussen-23960\tRasmussen\t2016-02-29\t2016-03-01\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n43.0\t44.0\t\t\t13.0\tmorning-consult-23918\tMorning Consult\t2016-02-26\t2016-02-27\t\tRegistered Voters\t1182\t2.0\tInternet\tNonpartisan\tNone\n11.0\t80.0\t\t\t9.0\tmorning-consult-23918\tMorning Consult\t2016-02-26\t2016-02-27\t\tRegistered Voters - Democrat\t415\t\tInternet\tNonpartisan\tNone\n79.0\t10.0\t\t\t12.0\tmorning-consult-23918\tMorning Consult\t2016-02-26\t2016-02-27\t\tRegistered Voters - Republican\t400\t\tInternet\tNonpartisan\tNone\n41.0\t40.0\t\t\t19.0\tmorning-consult-23918\tMorning Consult\t2016-02-26\t2016-02-27\t\tRegistered Voters - independent\t367\t\tInternet\tNonpartisan\tNone\n44.0\t52.0\t\t4.0\t\tcnn-23952\tCNN\t2016-02-24\t2016-02-27\t\tRegistered Voters\t920\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t93.0\t\t\t\tcnn-23952\tCNN\t2016-02-24\t2016-02-27\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t12.0\t\t3.0\t\tcnn-23952\tCNN\t2016-02-24\t2016-02-27\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t48.0\t\t7.0\t1.0\tcnn-23952\tCNN\t2016-02-24\t2016-02-27\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n35.0\t44.0\t\t10.0\t11.0\tipsos-reuters-23865\tIpsos/Reuters\t2016-02-20\t2016-02-24\t\tRegistered Voters\t1246\t\tInternet\tNonpartisan\tNone\n42.0\t47.0\t\t2.0\t8.0\tfox-23803\tFOX\t2016-02-15\t2016-02-17\t\tRegistered Voters\t1031\t3.0\tLive Phone\tNonpartisan\tNone\n9.0\t85.0\t\t1.0\t5.0\tfox-23803\tFOX\t2016-02-15\t2016-02-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n79.0\t9.0\t\t2.0\t10.0\tfox-23803\tFOX\t2016-02-15\t2016-02-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t43.0\t\t5.0\t12.0\tfox-23803\tFOX\t2016-02-15\t2016-02-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t44.0\t\t10.0\t9.0\tipsos-reuters-23811\tIpsos/Reuters\t2016-02-13\t2016-02-17\t\tRegistered Voters\t1213\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t\t\t16.0\tmorning-consult-23766\tMorning Consult\t2016-02-15\t2016-02-16\t\tRegistered Voters\t883\t\tInternet\tNonpartisan\tNone\n13.0\t78.0\t\t\t9.0\tmorning-consult-23766\tMorning Consult\t2016-02-15\t2016-02-16\t\tRegistered Voters - Democrat\t307\t\tInternet\tNonpartisan\tNone\n76.0\t10.0\t\t\t14.0\tmorning-consult-23766\tMorning Consult\t2016-02-15\t2016-02-16\t\tRegistered Voters - Republican\t285\t\tInternet\tNonpartisan\tNone\n38.0\t38.0\t\t\t24.0\tmorning-consult-23766\tMorning Consult\t2016-02-15\t2016-02-16\t\tRegistered Voters - independent\t291\t\tInternet\tNonpartisan\tNone\n40.0\t50.0\t\t9.0\t1.0\tnbc-wsj-23801\tNBC/WSJ\t2016-02-14\t2016-02-16\t\tRegistered Voters\t800\t3.5\tLive Phone\tNonpartisan\tNone\n45.0\t43.0\t\t\t14.0\tsuffolk-usa-today-23779\tSuffolk/USA Today\t2016-02-11\t2016-02-15\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n6.0\t88.0\t\t\t7.0\tsuffolk-usa-today-23779\tSuffolk/USA Today\t2016-02-11\t2016-02-15\t\tLikely Voters - Democrat\t373\t5.5\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t\t\t11.0\tsuffolk-usa-today-23779\tSuffolk/USA Today\t2016-02-11\t2016-02-15\t\tLikely Voters - Republican\t336\t5.2\tLive Phone\tNonpartisan\tNone\n55.0\t27.0\t\t\t18.0\tsuffolk-usa-today-23779\tSuffolk/USA Today\t2016-02-11\t2016-02-15\t\tLikely Voters - independent\t273\t\tLive Phone\tNonpartisan\tNone\n43.0\t44.0\t\t3.0\t10.0\tquinnipiac-23790\tQuinnipiac\t2016-02-10\t2016-02-15\t\tRegistered Voters\t1342\t2.7\tLive Phone\tNonpartisan\tNone\n8.0\t84.0\t\t2.0\t7.0\tquinnipiac-23790\tQuinnipiac\t2016-02-10\t2016-02-15\t\tRegistered Voters - Democrat\t563\t4.4\tLive Phone\tNonpartisan\tNone\n79.0\t10.0\t\t2.0\t10.0\tquinnipiac-23790\tQuinnipiac\t2016-02-10\t2016-02-15\t\tRegistered Voters - Republican\t602\t4.0\tLive Phone\tNonpartisan\tNone\n40.0\t42.0\t\t4.0\t14.0\tquinnipiac-23790\tQuinnipiac\t2016-02-10\t2016-02-15\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t44.0\t\t11.0\t10.0\tipsos-reuters-23740\tIpsos/Reuters\t2016-02-06\t2016-02-10\t\tRegistered Voters\t1337\t\tInternet\tNonpartisan\tNone\n40.0\t45.0\t\t\t15.0\tmorning-consult-23731\tMorning Consult\t2016-02-03\t2016-02-07\t\tRegistered Voters\t2197\t\tInternet\tNonpartisan\tNone\n13.0\t79.0\t\t\t8.0\tmorning-consult-23731\tMorning Consult\t2016-02-03\t2016-02-07\t\tRegistered Voters - Democrat\t829\t\tInternet\tNonpartisan\tNone\n72.0\t12.0\t\t\t16.0\tmorning-consult-23731\tMorning Consult\t2016-02-03\t2016-02-07\t\tRegistered Voters - Republican\t711\t\tInternet\tNonpartisan\tNone\n39.0\t38.0\t\t\t23.0\tmorning-consult-23731\tMorning Consult\t2016-02-03\t2016-02-07\t\tRegistered Voters - independent\t658\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t\t3.0\t10.0\tquinnipiac-23675\tQuinnipiac\t2016-02-02\t2016-02-04\t\tRegistered Voters\t1125\t2.9\tLive Phone\tNonpartisan\tNone\n7.0\t87.0\t\t1.0\t5.0\tquinnipiac-23675\tQuinnipiac\t2016-02-02\t2016-02-04\t\tRegistered Voters - Democrat\t484\t4.5\tLive Phone\tNonpartisan\tNone\n80.0\t9.0\t\t3.0\t8.0\tquinnipiac-23675\tQuinnipiac\t2016-02-02\t2016-02-04\t\tRegistered Voters - Republican\t507\t4.4\tLive Phone\tNonpartisan\tNone\n34.0\t48.0\t\t4.0\t13.0\tquinnipiac-23675\tQuinnipiac\t2016-02-02\t2016-02-04\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t47.0\t\t\t13.0\tppp-d-23727\tPPP (D)\t2016-02-02\t2016-02-03\t\tLikely Voters\t1236\t\tIVR/Online\tPollster\tDem\n11.0\t84.0\t\t\t5.0\tppp-d-23727\tPPP (D)\t2016-02-02\t2016-02-03\t\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n77.0\t8.0\t\t\t15.0\tppp-d-23727\tPPP (D)\t2016-02-02\t2016-02-03\t\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n40.0\t39.0\t\t\t22.0\tppp-d-23727\tPPP (D)\t2016-02-02\t2016-02-03\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n36.0\t44.0\t\t9.0\t10.0\tipsos-reuters-23665\tIpsos/Reuters\t2016-01-30\t2016-02-03\t\tRegistered Voters\t1434\t\tInternet\tNonpartisan\tNone\n39.0\t45.0\t\t\t16.0\tmorning-consult-23600\tMorning Consult\t2016-01-21\t2016-01-24\t\tRegistered Voters\t4001\t2.0\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t0.0\tcnn-23592\tCNN\t2016-01-21\t2016-01-24\t\tRegistered Voters\t907\t3.5\tLive Phone\tNonpartisan\tNone\n6.0\t93.0\t\t1.0\t\tcnn-23592\tCNN\t2016-01-21\t2016-01-24\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n92.0\t4.0\t\t5.0\t\tcnn-23592\tCNN\t2016-01-21\t2016-01-24\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n47.0\t43.0\t\t9.0\t1.0\tcnn-23592\tCNN\t2016-01-21\t2016-01-24\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t45.0\t\t\t10.0\tzogby-internet-23594\tZogby (Internet)\t2016-01-19\t2016-01-20\t\tLikely Voters\t843\t3.2\tInternet\tNonpartisan\tNone\n42.0\t44.0\t\t\t14.0\tmorning-consult-23526\tMorning Consult\t2016-01-14\t2016-01-17\t\tRegistered Voters\t4060\t2.0\tInternet\tNonpartisan\tNone\n13.0\t79.0\t\t\t9.0\tmorning-consult-23526\tMorning Consult\t2016-01-14\t2016-01-17\t\tRegistered Voters - Democrat\t1805\t\tInternet\tNonpartisan\tNone\n74.0\t13.0\t\t\t13.0\tmorning-consult-23526\tMorning Consult\t2016-01-14\t2016-01-17\t\tRegistered Voters - Republican\t1635\t\tInternet\tNonpartisan\tNone\n43.0\t36.0\t\t\t21.0\tmorning-consult-23526\tMorning Consult\t2016-01-14\t2016-01-17\t\tRegistered Voters - independent\t1281\t\tInternet\tNonpartisan\tNone\n41.0\t51.0\t\t\t\tnbc-wsj-23507\tNBC/WSJ\t2016-01-09\t2016-01-13\t\tRegistered Voters\t800\t3.5\tLive Phone\tNonpartisan\tNone\n51.0\t49.0\t\t\t\tgravis-marketing-oann-23477\tGravis Marketing/OANN\t2016-01-10\t2016-01-10\t\tRegistered Voters\t2416\t2.0\tAutomated Phone\tSponsor\tRep\n44.0\t42.0\t\t\t14.0\tmorning-consult-23500\tMorning Consult\t2016-01-08\t2016-01-10\t\tRegistered Voters\t2173\t2.0\tInternet\tNonpartisan\tNone\n15.0\t78.0\t\t\t7.0\tmorning-consult-23500\tMorning Consult\t2016-01-08\t2016-01-10\t\tRegistered Voters - Democrat\t770\t\tInternet\tNonpartisan\tNone\n76.0\t10.0\t\t\t14.0\tmorning-consult-23500\tMorning Consult\t2016-01-08\t2016-01-10\t\tRegistered Voters - Republican\t716\t\tInternet\tNonpartisan\tNone\n43.0\t36.0\t\t\t21.0\tmorning-consult-23500\tMorning Consult\t2016-01-08\t2016-01-10\t\tRegistered Voters - independent\t688\t\tInternet\tNonpartisan\tNone\n47.0\t44.0\t\t2.0\t7.0\tfox-23457\tFOX\t2016-01-04\t2016-01-07\t\tRegistered Voters\t1006\t3.0\tLive Phone\tNonpartisan\tNone\n36.0\t37.0\t\t22.0\t5.0\trasmussen-23421\tRasmussen\t2015-12-22\t2015-12-23\t\tLikely Voters\t1000\t3.0\tIVR/Online\tNonpartisan\tNone\n47.0\t49.0\t\t4.0\t\tcnn-23412\tCNN\t2015-12-17\t2015-12-21\t\tRegistered Voters\t927\t3.0\tLive Phone\tNonpartisan\tNone\n11.0\t86.0\t\t2.0\t\tcnn-23412\tCNN\t2015-12-17\t2015-12-21\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n88.0\t9.0\t\t3.0\t\tcnn-23412\tCNN\t2015-12-17\t2015-12-21\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n47.0\t47.0\t\t6.0\t\tcnn-23412\tCNN\t2015-12-17\t2015-12-21\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t48.0\t\t\t7.0\temerson-college-polling-society-23395\tEmerson College Polling Society\t2015-12-17\t2015-12-20\t\tRegistered Voters\t754\t3.5\tAutomated Phone\tNonpartisan\tNone\n40.0\t47.0\t\t2.0\t11.0\tquinnipiac-23400\tQuinnipiac\t2015-12-16\t2015-12-20\t\tRegistered Voters\t1140\t2.9\tLive Phone\tNonpartisan\tNone\n4.0\t92.0\t\t0.0\t4.0\tquinnipiac-23400\tQuinnipiac\t2015-12-16\t2015-12-20\t\tRegistered Voters - Democrat\t462\t4.6\tLive Phone\tNonpartisan\tNone\n82.0\t8.0\t\t2.0\t7.0\tquinnipiac-23400\tQuinnipiac\t2015-12-16\t2015-12-20\t\tRegistered Voters - Republican\t508\t4.4\tLive Phone\tNonpartisan\tNone\n37.0\t39.0\t\t4.0\t20.0\tquinnipiac-23400\tQuinnipiac\t2015-12-16\t2015-12-20\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t46.0\t\t\t11.0\tppp-d-23396\tPPP (D)\t2015-12-16\t2015-12-17\t\tLikely Voters\t1267\t\tIVR/Online\tPollster\tDem\n14.0\t79.0\t\t\t7.0\tppp-d-23396\tPPP (D)\t2015-12-16\t2015-12-17\t\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n74.0\t12.0\t\t\t14.0\tppp-d-23396\tPPP (D)\t2015-12-16\t2015-12-17\t\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n49.0\t35.0\t\t\t16.0\tppp-d-23396\tPPP (D)\t2015-12-16\t2015-12-17\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n38.0\t49.0\t\t3.0\t10.0\tfox-23385\tFOX\t2015-12-16\t2015-12-17\t\tRegistered Voters\t1013\t3.0\tLive Phone\tNonpartisan\tNone\n9.0\t85.0\t\t1.0\t6.0\tfox-23385\tFOX\t2015-12-16\t2015-12-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n72.0\t15.0\t\t3.0\t10.0\tfox-23385\tFOX\t2015-12-16\t2015-12-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t37.0\t\t8.0\t17.0\tfox-23385\tFOX\t2015-12-16\t2015-12-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t46.0\t\t\t13.0\tmorning-consult-23333\tMorning Consult\t2015-12-11\t2015-12-15\t\tRegistered Voters\t4038\t2.0\tInternet\tNonpartisan\tNone\n12.0\t80.0\t\t\t8.0\tmorning-consult-23333\tMorning Consult\t2015-12-11\t2015-12-15\t\tRegistered Voters - Democrat\t1472\t\tInternet\tNonpartisan\tNone\n74.0\t12.0\t\t\t14.0\tmorning-consult-23333\tMorning Consult\t2015-12-11\t2015-12-15\t\tRegistered Voters - Republican\t1265\t\tInternet\tNonpartisan\tNone\n42.0\t40.0\t\t\t18.0\tmorning-consult-23333\tMorning Consult\t2015-12-11\t2015-12-15\t\tRegistered Voters - independent\t1300\t\tInternet\tNonpartisan\tNone\n44.0\t50.0\t\t4.0\t3.0\tabc-post-23326\tABC/Post\t2015-12-10\t2015-12-13\t\tRegistered Voters\t851\t4.0\tLive Phone\tNonpartisan\tNone\n40.0\t50.0\t\t8.0\t2.0\tnbc-wsj-23315\tNBC/WSJ\t2015-12-06\t2015-12-09\t\tRegistered Voters\t849\t3.6\tLive Phone\tNonpartisan\tNone\n49.0\t51.0\t\t\t\tgravis-marketing-oann-23300\tGravis Marketing/OANN\t2015-12-07\t2015-12-08\t\tRegistered Voters\t1995\t2.2\tAutomated Phone\tSponsor\tRep\n45.0\t40.0\t\t\t15.0\tmorning-consult-23281\tMorning Consult\t2015-12-03\t2015-12-07\t\tRegistered Voters\t2047\t2.0\tInternet\tNonpartisan\tNone\n17.0\t73.0\t\t\t10.0\tmorning-consult-23281\tMorning Consult\t2015-12-03\t2015-12-07\t\tRegistered Voters - Democrat\t682\t\tInternet\tNonpartisan\tNone\n79.0\t10.0\t\t\t12.0\tmorning-consult-23281\tMorning Consult\t2015-12-03\t2015-12-07\t\tRegistered Voters - Republican\t711\t\tInternet\tNonpartisan\tNone\n38.0\t39.0\t\t\t23.0\tmorning-consult-23281\tMorning Consult\t2015-12-03\t2015-12-07\t\tRegistered Voters - independent\t654\t\tInternet\tNonpartisan\tNone\n44.0\t47.0\t\t\t8.0\tsuffolk-usa-today-23278\tSuffolk/USA Today\t2015-12-02\t2015-12-06\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n8.0\t88.0\t\t\t4.0\tsuffolk-usa-today-23278\tSuffolk/USA Today\t2015-12-02\t2015-12-06\t\tLikely Voters - Democrat\t307\t5.1\tLive Phone\tNonpartisan\tNone\n79.0\t9.0\t\t\t12.0\tsuffolk-usa-today-23278\tSuffolk/USA Today\t2015-12-02\t2015-12-06\t\tLikely Voters - Republican\t342\t5.2\tLive Phone\tNonpartisan\tNone\n48.0\t42.0\t\t\t10.0\tsuffolk-usa-today-23278\tSuffolk/USA Today\t2015-12-02\t2015-12-06\t\tLikely Voters - independent\t337\t\tLive Phone\tNonpartisan\tNone\n37.0\t51.0\t\t\t\tsaint-leo-university-23287\tSaint Leo University\t2015-11-29\t2015-12-03\t\tLikely Voters\t746\t\tInternet\tNonpartisan\tNone\n41.0\t52.0\t\t\t6.0\tmsnbc-telemundo-marist-23269\tMSNBC/Telemundo/Marist\t2015-11-15\t2015-12-02\t\tRegistered Voters\t2360\t2.0\tLive Phone\tSponsor\tOther\n6.0\t92.0\t\t\t3.0\tmsnbc-telemundo-marist-23269\tMSNBC/Telemundo/Marist\t2015-11-15\t2015-12-02\t\tRegistered Voters - Democrat\t\t\tLive Phone\tSponsor\tOther\n87.0\t8.0\t\t\t5.0\tmsnbc-telemundo-marist-23269\tMSNBC/Telemundo/Marist\t2015-11-15\t2015-12-02\t\tRegistered Voters - Republican\t\t\tLive Phone\tSponsor\tOther\n41.0\t51.0\t\t\t9.0\tmsnbc-telemundo-marist-23269\tMSNBC/Telemundo/Marist\t2015-11-15\t2015-12-02\t\tRegistered Voters - independent\t\t\tLive Phone\tSponsor\tOther\n46.0\t49.0\t\t4.0\t0.0\tcnn-23262\tCNN\t2015-11-27\t2015-12-01\t\tRegistered Voters\t930\t3.0\tLive Phone\tNonpartisan\tNone\n7.0\t92.0\t\t1.0\t\tcnn-23262\tCNN\t2015-11-27\t2015-12-01\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t9.0\t\t6.0\t\tcnn-23262\tCNN\t2015-11-27\t2015-12-01\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n49.0\t45.0\t\t6.0\t\tcnn-23262\tCNN\t2015-11-27\t2015-12-01\t\tLikely Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t47.0\t\t2.0\t10.0\tquinnipiac-23247\tQuinnipiac\t2015-11-23\t2015-11-30\t\tRegistered Voters\t1453\t2.6\tLive Phone\tNonpartisan\tNone\n7.0\t91.0\t\t1.0\t2.0\tquinnipiac-23247\tQuinnipiac\t2015-11-23\t2015-11-30\t\tRegistered Voters - Democrat\t573\t4.1\tLive Phone\tNonpartisan\tNone\n82.0\t7.0\t\t1.0\t10.0\tquinnipiac-23247\tQuinnipiac\t2015-11-23\t2015-11-30\t\tRegistered Voters - Republican\t672\t3.8\tLive Phone\tNonpartisan\tNone\n37.0\t45.0\t\t4.0\t14.0\tquinnipiac-23247\tQuinnipiac\t2015-11-23\t2015-11-30\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n46.0\t41.0\t\t2.0\t12.0\tfox-23216\tFOX\t2015-11-16\t2015-11-19\t\tRegistered Voters\t1016\t3.0\tLive Phone\tNonpartisan\tNone\n44.0\t45.0\t\t\t11.0\tppp-d-23175\tPPP (D)\t2015-11-16\t2015-11-17\t\tLikely Voters\t1360\t2.7\tIVR/Online\tPollster\tDem\n13.0\t79.0\t\t\t8.0\tppp-d-23175\tPPP (D)\t2015-11-16\t2015-11-17\t\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n79.0\t12.0\t\t\t10.0\tppp-d-23175\tPPP (D)\t2015-11-16\t2015-11-17\t\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n47.0\t35.0\t\t\t17.0\tppp-d-23175\tPPP (D)\t2015-11-16\t2015-11-17\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n43.0\t44.0\t\t\t14.0\tmorning-consult-23158\tMorning Consult\t2015-11-13\t2015-11-16\t\tRegistered Voters\t2001\t2.0\tInternet\tNonpartisan\tNone\n13.0\t80.0\t\t\t7.0\tmorning-consult-23158\tMorning Consult\t2015-11-13\t2015-11-16\t\tRegistered Voters - Democrat\t730\t\tInternet\tNonpartisan\tNone\n78.0\t8.0\t\t\t14.0\tmorning-consult-23158\tMorning Consult\t2015-11-13\t2015-11-16\t\tRegistered Voters - Republican\t661\t\tInternet\tNonpartisan\tNone\n40.0\t38.0\t\t\t21.0\tmorning-consult-23158\tMorning Consult\t2015-11-13\t2015-11-16\t\tRegistered Voters - independent\t610\t\tInternet\tNonpartisan\tNone\n43.0\t43.0\t\t\t14.0\tmorning-consult-23107\tMorning Consult\t2015-11-05\t2015-11-08\t\tRegistered Voters\t4002\t2.0\tInternet\tNonpartisan\tNone\n15.0\t76.0\t\t\t9.0\tmorning-consult-23107\tMorning Consult\t2015-11-05\t2015-11-08\t\tRegistered Voters - Democrat\t1459\t\tInternet\tNonpartisan\tNone\n78.0\t9.0\t\t\t13.0\tmorning-consult-23107\tMorning Consult\t2015-11-05\t2015-11-08\t\tRegistered Voters - Republican\t1237\t\tInternet\tNonpartisan\tNone\n41.0\t37.0\t\t\t22.0\tmorning-consult-23107\tMorning Consult\t2015-11-05\t2015-11-08\t\tRegistered Voters - independent\t1306\t\tInternet\tNonpartisan\tNone\n41.0\t56.0\t\t\t3.0\tmcclatchy-marist-23096\tMcClatchy/Marist\t2015-10-29\t2015-11-04\t\tRegistered Voters\t541\t4.2\tLive Phone\tNonpartisan\tNone\n8.0\t91.0\t\t\t1.0\tmcclatchy-marist-23096\tMcClatchy/Marist\t2015-10-29\t2015-11-04\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n86.0\t9.0\t\t\t5.0\tmcclatchy-marist-23096\tMcClatchy/Marist\t2015-10-29\t2015-11-04\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n39.0\t58.0\t\t\t4.0\tmcclatchy-marist-23096\tMcClatchy/Marist\t2015-10-29\t2015-11-04\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t46.0\t\t2.0\t9.0\tquinnipiac-23059\tQuinnipiac\t2015-10-29\t2015-11-02\t\tRegistered Voters\t1144\t2.9\tLive Phone\tNonpartisan\tNone\n5.0\t91.0\t\t0.0\t4.0\tquinnipiac-23059\tQuinnipiac\t2015-10-29\t2015-11-02\t\tRegistered Voters - Democrat\t480\t4.5\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t\t2.0\t10.0\tquinnipiac-23059\tQuinnipiac\t2015-10-29\t2015-11-02\t\tRegistered Voters - Republican\t502\t4.4\tLive Phone\tNonpartisan\tNone\n43.0\t38.0\t\t4.0\t15.0\tquinnipiac-23059\tQuinnipiac\t2015-10-29\t2015-11-02\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n44.0\t44.0\t\t\t12.0\tmorning-consult-23056\tMorning Consult\t2015-10-29\t2015-11-01\t\tRegistered Voters\t2350\t2.0\tInternet\tNonpartisan\tNone\n37.0\t41.0\t\t16.0\t6.0\tzogby-internet-23091\tZogby (Internet)\t2015-10-30\t2015-10-31\t\tLikely Voters\t1002\t5.0\tInternet\tNonpartisan\tNone\n42.0\t50.0\t\t6.0\t2.0\tnbc-wsj-23071\tNBC/WSJ\t2015-10-25\t2015-10-29\t\tAdults\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n49.0\t51.0\t\t\t\tgravis-marketing-oann-23005\tGravis Marketing/OANN\t2015-10-26\t2015-10-26\t\tRegistered Voters\t2606\t2.0\tAutomated Phone\tSponsor\tRep\n43.0\t43.0\t\t\t14.0\tmorning-consult-22994\tMorning Consult\t2015-10-22\t2015-10-25\t\tRegistered Voters\t1689\t2.0\tInternet\tNonpartisan\tNone\n11.0\t81.0\t\t\t8.0\tmorning-consult-22994\tMorning Consult\t2015-10-22\t2015-10-25\t\tRegistered Voters - Democrat\t557\t\tInternet\tNonpartisan\tNone\n75.0\t12.0\t\t\t13.0\tmorning-consult-22994\tMorning Consult\t2015-10-22\t2015-10-25\t\tRegistered Voters - Republican\t565\t\tInternet\tNonpartisan\tNone\n43.0\t37.0\t\t\t20.0\tmorning-consult-22994\tMorning Consult\t2015-10-22\t2015-10-25\t\tRegistered Voters - independent\t567\t\tInternet\tNonpartisan\tNone\n38.0\t47.0\t\t\t\tsaint-leo-university-23025\tSaint Leo University\t2015-10-17\t2015-10-22\t\tLikely Voters\t764\t3.5\tInternet\tNonpartisan\tNone\n41.0\t44.0\t\t\t14.0\tmorning-consult-22950\tMorning Consult\t2015-10-15\t2015-10-19\t\tRegistered Voters\t2017\t2.0\tInternet\tNonpartisan\tNone\n13.0\t80.0\t\t\t8.0\tmorning-consult-22950\tMorning Consult\t2015-10-15\t2015-10-19\t\tRegistered Voters - Democrat\t712\t3.3\tInternet\tNonpartisan\tNone\n74.0\t11.0\t\t\t15.0\tmorning-consult-22950\tMorning Consult\t2015-10-15\t2015-10-19\t\tRegistered Voters - Republican\t632\t3.5\tInternet\tNonpartisan\tNone\n41.0\t38.0\t\t\t21.0\tmorning-consult-22950\tMorning Consult\t2015-10-15\t2015-10-19\t\tRegistered Voters - independent\t673\t\tInternet\tNonpartisan\tNone\n46.0\t44.0\t\t\t10.0\temerson-college-polling-society-22951\tEmerson College Polling Society\t2015-10-16\t2015-10-17\t\tRegistered Voters\t783\t3.4\tAutomated Phone\tNonpartisan\tNone\n45.0\t50.0\t\t6.0\t0.0\tcnn-22934\tCNN\t2015-10-14\t2015-10-17\t\tRegistered Voters\t936\t\tLive Phone\tNonpartisan\tNone\n6.0\t91.0\t\t3.0\t\tcnn-22934\tCNN\t2015-10-14\t2015-10-17\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n80.0\t12.0\t\t7.0\t\tcnn-22934\tCNN\t2015-10-14\t2015-10-17\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n51.0\t44.0\t\t6.0\t\tcnn-22934\tCNN\t2015-10-14\t2015-10-17\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t40.0\t\t4.0\t10.0\tfox-22904\tFOX\t2015-10-10\t2015-10-12\t\tRegistered Voters\t1004\t3.0\tLive Phone\tNonpartisan\tNone\n41.0\t43.0\t\t\t16.0\tmorning-consult-22902\tMorning Consult\t2015-10-08\t2015-10-12\t\tRegistered Voters\t2002\t2.0\tInternet\tNonpartisan\tNone\n10.0\t80.0\t\t\t10.0\tmorning-consult-22902\tMorning Consult\t2015-10-08\t2015-10-12\t\tRegistered Voters - Democrat\t681\t3.4\tInternet\tNonpartisan\tNone\n77.0\t12.0\t\t\t11.0\tmorning-consult-22902\tMorning Consult\t2015-10-08\t2015-10-12\t\tRegistered Voters - Republican\t596\t3.6\tInternet\tNonpartisan\tNone\n41.0\t34.0\t\t\t25.0\tmorning-consult-22902\tMorning Consult\t2015-10-08\t2015-10-12\t\tRegistered Voters - independent\t725\t\tInternet\tNonpartisan\tNone\n43.0\t41.0\t\t\t16.0\tmorning-consult-22858\tMorning Consult\t2015-10-02\t2015-10-05\t\tRegistered Voters\t1983\t2.0\tInternet\tNonpartisan\tNone\n44.0\t44.0\t\t\t12.0\tppp-d-22856\tPPP (D)\t2015-10-01\t2015-10-04\t\tLikely Voters\t1338\t2.7\tIVR/Online\tPollster\tDem\n14.0\t80.0\t\t\t6.0\tppp-d-22856\tPPP (D)\t2015-10-01\t2015-10-04\t\tLikely Voters - Democrat\t551\t4.2\tIVR/Online\tPollster\tDem\n78.0\t9.0\t\t\t12.0\tppp-d-22856\tPPP (D)\t2015-10-01\t2015-10-04\t\tLikely Voters - Republican\t627\t3.9\tIVR/Online\tPollster\tDem\n48.0\t32.0\t\t\t21.0\tppp-d-22856\tPPP (D)\t2015-10-01\t2015-10-04\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n52.0\t48.0\t\t\t\tgravis-marketing-oann-22863\tGravis Marketing/OANN\t2015-09-30\t2015-10-01\t\tRegistered Voters\t2665\t1.9\tAutomated Phone\tSponsor\tRep\n42.0\t45.0\t\t\t13.0\tmorning-consult-22814\tMorning Consult\t2015-09-24\t2015-09-27\t\tRegistered Voters\t1543\t2.0\tInternet\tNonpartisan\tNone\n10.0\t84.0\t\t\t6.0\tmorning-consult-22814\tMorning Consult\t2015-09-24\t2015-09-27\t\tRegistered Voters - Democrat\t551\t\tInternet\tNonpartisan\tNone\n76.0\t11.0\t\t\t13.0\tmorning-consult-22814\tMorning Consult\t2015-09-24\t2015-09-27\t\tRegistered Voters - Republican\t504\t\tInternet\tNonpartisan\tNone\n42.0\t38.0\t\t\t21.0\tmorning-consult-22814\tMorning Consult\t2015-09-24\t2015-09-27\t\tRegistered Voters - independent\t488\t\tInternet\tNonpartisan\tNone\n39.0\t49.0\t\t10.0\t2.0\tnbc-wsj-22808\tNBC/WSJ\t2015-09-20\t2015-09-24\t\tAdults\t1000\t3.1\tLive Phone\tNonpartisan\tNone\n42.0\t46.0\t\t3.0\t9.0\tfox-22789\tFOX\t2015-09-20\t2015-09-22\t\tRegistered Voters\t1013\t3.0\tLive Phone\tNonpartisan\tNone\n43.0\t45.0\t\t2.0\t10.0\tquinnipiac-22788\tQuinnipiac\t2015-09-17\t2015-09-21\t\tRegistered Voters\t1574\t2.5\tLive Phone\tNonpartisan\tNone\n4.0\t90.0\t\t1.0\t4.0\tquinnipiac-22788\tQuinnipiac\t2015-09-17\t2015-09-21\t\tRegistered Voters - Democrat\t587\t4.0\tLive Phone\tNonpartisan\tNone\n79.0\t10.0\t\t2.0\t10.0\tquinnipiac-22788\tQuinnipiac\t2015-09-17\t2015-09-21\t\tRegistered Voters - Republican\t737\t3.6\tLive Phone\tNonpartisan\tNone\n40.0\t44.0\t\t2.0\t13.0\tquinnipiac-22788\tQuinnipiac\t2015-09-17\t2015-09-21\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t\t\t14.0\tmorning-consult-22772\tMorning Consult\t2015-09-18\t2015-09-20\t\tRegistered Voters\t4033\t2.0\tInternet\tNonpartisan\tNone\n40.0\t44.0\t\t\t16.0\tmorning-consult-22752\tMorning Consult\t2015-09-11\t2015-09-13\t\tRegistered Voters\t2023\t2.0\tInternet\tNonpartisan\tNone\n12.0\t77.0\t\t\t11.0\tmorning-consult-22752\tMorning Consult\t2015-09-11\t2015-09-13\t\tRegistered Voters - Democrat\t806\t\tInternet\tNonpartisan\tNone\n76.0\t10.0\t\t\t14.0\tmorning-consult-22752\tMorning Consult\t2015-09-11\t2015-09-13\t\tRegistered Voters - Republican\t623\t\tInternet\tNonpartisan\tNone\n39.0\t36.0\t\t\t25.0\tmorning-consult-22752\tMorning Consult\t2015-09-11\t2015-09-13\t\tRegistered Voters - independent\t594\t\tInternet\tNonpartisan\tNone\n43.0\t46.0\t\t7.0\t5.0\tabc-post-22720\tABC/Post\t2015-09-07\t2015-09-10\t\tRegistered Voters\t821\t4.0\tLive Phone\tNonpartisan\tNone\n40.0\t53.0\t\t\t7.0\tmsnbc-telemundo-marist-22763\tMSNBC/Telemundo/Marist\t2015-08-26\t2015-09-09\t\tRegistered Voters\t1115\t2.9\tLive Phone\tSponsor\tOther\n9.0\t88.0\t\t\t3.0\tmsnbc-telemundo-marist-22763\tMSNBC/Telemundo/Marist\t2015-08-26\t2015-09-09\t\tRegistered Voters - Democrat\t\t\tLive Phone\tSponsor\tOther\n79.0\t15.0\t\t\t6.0\tmsnbc-telemundo-marist-22763\tMSNBC/Telemundo/Marist\t2015-08-26\t2015-09-09\t\tRegistered Voters - Republican\t\t\tLive Phone\tSponsor\tOther\n41.0\t50.0\t\t\t9.0\tmsnbc-telemundo-marist-22763\tMSNBC/Telemundo/Marist\t2015-08-26\t2015-09-09\t\tRegistered Voters - independent\t\t\tLive Phone\tSponsor\tOther\n47.0\t43.0\t\t\t11.0\temerson-college-polling-society-22699\tEmerson College Polling Society\t2015-09-05\t2015-09-08\t\tLikely Voters\t955\t3.1\tAutomated Phone\tNonpartisan\tNone\n48.0\t48.0\t\t3.0\t0.0\tcnn-22704\tCNN\t2015-09-04\t2015-09-08\t\tRegistered Voters\t930\t3.0\tLive Phone\tNonpartisan\tNone\n10.0\t89.0\t\t1.0\t\tcnn-22704\tCNN\t2015-09-04\t2015-09-08\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n85.0\t10.0\t\t4.0\t\tcnn-22704\tCNN\t2015-09-04\t2015-09-08\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n45.0\t49.0\t\t5.0\t\tcnn-22704\tCNN\t2015-09-04\t2015-09-08\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t42.0\t\t\t15.0\tmorning-consult-22703\tMorning Consult\t2015-09-04\t2015-09-07\t\tRegistered Voters\t2008\t2.0\tInternet\tNonpartisan\tNone\n45.0\t40.0\t\t\t16.0\tsurveyusa-22683\tSurveyUSA\t2015-09-02\t2015-09-03\t\tRegistered Voters\t900\t3.3\tIVR/Online\tNonpartisan\tNone\n44.0\t46.0\t\t\t11.0\tppp-d-22654\tPPP (D)\t2015-08-28\t2015-08-30\t\tLikely Voters\t1254\t2.8\tIVR/Online\tPollster\tDem\n17.0\t79.0\t\t\t4.0\tppp-d-22654\tPPP (D)\t2015-08-28\t2015-08-30\t\tLikely Voters - Democrat\t\t\tIVR/Online\tPollster\tDem\n77.0\t8.0\t\t\t15.0\tppp-d-22654\tPPP (D)\t2015-08-28\t2015-08-30\t\tLikely Voters - Republican\t\t\tIVR/Online\tPollster\tDem\n46.0\t37.0\t\t\t17.0\tppp-d-22654\tPPP (D)\t2015-08-28\t2015-08-30\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n42.0\t43.0\t\t\t15.0\tmorning-consult-22640\tMorning Consult\t2015-08-28\t2015-08-30\t\tRegistered Voters\t2015\t2.0\tInternet\tNonpartisan\tNone\n15.0\t75.0\t\t\t10.0\tmorning-consult-22640\tMorning Consult\t2015-08-28\t2015-08-30\t\tRegistered Voters - Democrat\t752\t\tInternet\tNonpartisan\tNone\n75.0\t9.0\t\t\t16.0\tmorning-consult-22640\tMorning Consult\t2015-08-28\t2015-08-30\t\tRegistered Voters - Republican\t605\t\tInternet\tNonpartisan\tNone\n42.0\t39.0\t\t\t19.0\tmorning-consult-22640\tMorning Consult\t2015-08-28\t2015-08-30\t\tRegistered Voters - independent\t657\t\tInternet\tNonpartisan\tNone\n41.0\t45.0\t\t3.0\t11.0\tquinnipiac-22620\tQuinnipiac\t2015-08-20\t2015-08-25\t\tRegistered Voters\t1563\t2.5\tLive Phone\tNonpartisan\tNone\n5.0\t91.0\t\t1.0\t4.0\tquinnipiac-22620\tQuinnipiac\t2015-08-20\t2015-08-25\t\tRegistered Voters - Democrat\t647\t3.9\tLive Phone\tNonpartisan\tNone\n81.0\t8.0\t\t3.0\t8.0\tquinnipiac-22620\tQuinnipiac\t2015-08-20\t2015-08-25\t\tRegistered Voters - Republican\t666\t3.8\tLive Phone\tNonpartisan\tNone\n46.0\t34.0\t\t3.0\t17.0\tquinnipiac-22620\tQuinnipiac\t2015-08-20\t2015-08-25\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n54.0\t46.0\t\t\t\tgravis-marketing-oann-22623\tGravis Marketing/OANN\t2015-08-21\t2015-08-22\t\tRegistered Voters\t3567\t2.0\tAutomated Phone\tSponsor\tRep\n45.0\t51.0\t\t4.0\t0.0\tcnn-22576\tCNN\t2015-08-13\t2015-08-16\t\tRegistered Voters\t897\t3.5\tLive Phone\tNonpartisan\tNone\n7.0\t92.0\t\t\t2.0\tcnn-22576\tCNN\t2015-08-13\t2015-08-16\t\tRegistered Voters - Democrat\t358\t5.0\tLive Phone\tNonpartisan\tNone\n84.0\t13.0\t\t3.0\t\tcnn-22576\tCNN\t2015-08-13\t2015-08-16\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n43.0\t48.0\t\t8.0\t1.0\tcnn-22576\tCNN\t2015-08-13\t2015-08-16\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n42.0\t47.0\t\t2.0\t10.0\tfox-22563\tFOX\t2015-08-11\t2015-08-13\t\tRegistered Voters\t1008\t3.0\tLive Phone\tNonpartisan\tNone\n29.0\t43.0\t\t11.0\t17.0\tipsos-reuters-22529\tIpsos/Reuters\t2015-08-06\t2015-08-10\t\tAdults\t823\t4.4\tInternet\tNonpartisan\tNone\n41.0\t47.0\t\t\t13.0\tmorning-consult-22526\tMorning Consult\t2015-08-07\t2015-08-09\t\tRegistered Voters\t2029\t2.0\tInternet\tNonpartisan\tNone\n14.0\t78.0\t\t\t7.0\tmorning-consult-22526\tMorning Consult\t2015-08-07\t2015-08-09\t\tRegistered Voters - Democrat\t721\t\tInternet\tNonpartisan\tNone\n74.0\t13.0\t\t\t14.0\tmorning-consult-22526\tMorning Consult\t2015-08-07\t2015-08-09\t\tRegistered Voters - Republican\t582\t\tInternet\tNonpartisan\tNone\n40.0\t43.0\t\t\t17.0\tmorning-consult-22526\tMorning Consult\t2015-08-07\t2015-08-09\t\tRegistered Voters - independent\t726\t\tInternet\tNonpartisan\tNone\n49.0\t50.0\t\t\t\tgravis-marketing-oann-22496\tGravis Marketing/OANN\t2015-07-31\t2015-08-01\t\tRegistered Voters\t3477\t2.0\tAutomated Phone\tSponsor\tRep\n40.0\t49.0\t\t\t12.0\temerson-college-polling-society-22537\tEmerson College Polling Society\t2015-07-26\t2015-07-28\t\tLikely Voters\t950\t3.4\tAutomated Phone\tNonpartisan\tNone\n36.0\t48.0\t\t4.0\t12.0\tquinnipiac-22459\tQuinnipiac\t2015-07-23\t2015-07-28\t\tRegistered Voters\t1644\t2.4\tLive Phone\tNonpartisan\tNone\n3.0\t90.0\t\t1.0\t6.0\tquinnipiac-22459\tQuinnipiac\t2015-07-23\t2015-07-28\t\tRegistered Voters - Democrat\t681\t3.8\tLive Phone\tNonpartisan\tNone\n77.0\t8.0\t\t2.0\t13.0\tquinnipiac-22459\tQuinnipiac\t2015-07-23\t2015-07-28\t\tRegistered Voters - Republican\t710\t3.7\tLive Phone\tNonpartisan\tNone\n35.0\t45.0\t\t7.0\t13.0\tquinnipiac-22459\tQuinnipiac\t2015-07-23\t2015-07-28\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n38.0\t54.0\t\t\t8.0\tmcclatchy-marist-22466\tMcClatchy/Marist\t2015-07-22\t2015-07-28\t\tRegistered Voters\t964\t3.2\tLive Phone\tNonpartisan\tNone\n5.0\t92.0\t\t\t3.0\tmcclatchy-marist-22466\tMcClatchy/Marist\t2015-07-22\t2015-07-28\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n74.0\t20.0\t\t\t6.0\tmcclatchy-marist-22466\tMcClatchy/Marist\t2015-07-22\t2015-07-28\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n41.0\t48.0\t\t\t11.0\tmcclatchy-marist-22466\tMcClatchy/Marist\t2015-07-22\t2015-07-28\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t56.0\t\t4.0\t0.0\tcnn-22434\tCNN\t2015-07-22\t2015-07-25\t\tRegistered Voters\t898\t3.5\tLive Phone\tNonpartisan\tNone\n10.0\t89.0\t\t2.0\t\tcnn-22434\tCNN\t2015-07-22\t2015-07-25\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n72.0\t24.0\t\t3.0\t\tcnn-22434\tCNN\t2015-07-22\t2015-07-25\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n40.0\t54.0\t\t6.0\t\tcnn-22434\tCNN\t2015-07-22\t2015-07-25\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n37.0\t50.0\t\t\t13.0\tppp-d-22415\tPPP (D)\t2015-07-20\t2015-07-21\t\tLikely Voters\t1087\t3.0\tIVR/Online\tPollster\tDem\n8.0\t86.0\t\t\t6.0\tppp-d-22415\tPPP (D)\t2015-07-20\t2015-07-21\t\tLikely Voters - Democrat\t496\t4.4\tIVR/Online\tPollster\tDem\n73.0\t12.0\t\t\t15.0\tppp-d-22415\tPPP (D)\t2015-07-20\t2015-07-21\t\tLikely Voters - Republican\t524\t4.3\tIVR/Online\tPollster\tDem\n37.0\t41.0\t\t\t21.0\tppp-d-22415\tPPP (D)\t2015-07-20\t2015-07-21\t\tLikely Voters - independent\t\t\tIVR/Online\tPollster\tDem\n34.0\t51.0\t\t\t16.0\tsuffolk-usa-today-22380\tSuffolk/USA Today\t2015-07-09\t2015-07-12\t\tLikely Voters\t1000\t3.0\tLive Phone\tNonpartisan\tNone\n5.0\t88.0\t\t\t7.0\tsuffolk-usa-today-22380\tSuffolk/USA Today\t2015-07-09\t2015-07-12\t\tLikely Voters - Democrat\t369\t\tLive Phone\tNonpartisan\tNone\n68.0\t15.0\t\t\t18.0\tsuffolk-usa-today-22380\tSuffolk/USA Today\t2015-07-09\t2015-07-12\t\tLikely Voters - Republican\t313\t\tLive Phone\tNonpartisan\tNone\n34.0\t44.0\t\t\t23.0\tsuffolk-usa-today-22380\tSuffolk/USA Today\t2015-07-09\t2015-07-12\t\tLikely Voters - independent\t315\t\tLive Phone\tNonpartisan\tNone\n35.0\t59.0\t\t6.0\t0.0\tcnn-22330\tCNN\t2015-06-26\t2015-06-28\t\tRegistered Voters\t890\t3.5\tLive Phone\tNonpartisan\tNone\n8.0\t91.0\t\t1.0\t\tcnn-22330\tCNN\t2015-06-26\t2015-06-28\t\tRegistered Voters - Democrat\t\t\tLive Phone\tNonpartisan\tNone\n71.0\t19.0\t\t10.0\t\tcnn-22330\tCNN\t2015-06-26\t2015-06-28\t\tRegistered Voters - Republican\t\t\tLive Phone\tNonpartisan\tNone\n33.0\t59.0\t\t7.0\t\tcnn-22330\tCNN\t2015-06-26\t2015-06-28\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone\n34.0\t51.0\t\t3.0\t12.0\tfox-22300\tFOX\t2015-06-21\t2015-06-23\t\tRegistered Voters\t1005\t3.0\tLive Phone\tNonpartisan\tNone\n35.0\t46.0\t\t\t18.0\tyougov-economist-22307\tYouGov/Economist\t2015-06-20\t2015-06-22\t\tRegistered Voters\t869\t\tInternet\tNonpartisan\tNone\n6.0\t86.0\t\t\t8.0\tyougov-economist-22307\tYouGov/Economist\t2015-06-20\t2015-06-22\t\tRegistered Voters - Democrat\t313\t\tInternet\tNonpartisan\tNone\n65.0\t12.0\t\t\t24.0\tyougov-economist-22307\tYouGov/Economist\t2015-06-20\t2015-06-22\t\tRegistered Voters - Republican\t235\t\tInternet\tNonpartisan\tNone\n34.0\t45.0\t\t\t21.0\tyougov-economist-22307\tYouGov/Economist\t2015-06-20\t2015-06-22\t\tRegistered Voters - independent\t266\t\tInternet\tNonpartisan\tNone\n32.0\t50.0\t\t3.0\t14.0\tquinnipiac-22181\tQuinnipiac\t2015-05-19\t2015-05-26\t\tRegistered Voters\t1711\t2.4\tLive Phone\tNonpartisan\tNone\n5.0\t89.0\t\t0.0\t5.0\tquinnipiac-22181\tQuinnipiac\t2015-05-19\t2015-05-26\t\tRegistered Voters - Democrat\t748\t3.6\tLive Phone\tNonpartisan\tNone\n68.0\t9.0\t\t4.0\t19.0\tquinnipiac-22181\tQuinnipiac\t2015-05-19\t2015-05-26\t\tRegistered Voters - Republican\t679\t3.8\tLive Phone\tNonpartisan\tNone\n32.0\t47.0\t\t3.0\t18.0\tquinnipiac-22181\tQuinnipiac\t2015-05-19\t2015-05-26\t\tRegistered Voters - independent\t\t\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/UT.tsv",
    "content": "Trump\tClinton\tMcMullin\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n34.0\t31.0\t25.0\t7.0\t2.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1479\t\tInternet\tNonpartisan\tNone\n43.0\t28.0\t\t\t29.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t320\t\tInternet\tNonpartisan\tNone\n34.0\t31.0\t25.0\t6.0\t3.0\t1.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1428\t\tInternet\tNonpartisan\tNone\n40.0\t33.0\t\t\t\t27.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t532\t\tInternet\tNonpartisan\tNone\n40.0\t23.0\t24.0\t7.0\t3.0\t4.0\tcbs-yougov-26803\tCBS/YouGov\t2016-11-03\t2016-11-05\t\tLikely Voters\t762\t4.9\tInternet\tNonpartisan\tNone\n34.0\t30.0\t25.0\t6.0\t3.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1406\t\tInternet\tNonpartisan\tNone\n33.0\t24.0\t28.0\t5.0\t4.0\t7.0\ty2-analytics-r-26718\tY2 Analytics (R)\t2016-11-01\t2016-11-03\tIf the November election for the President of the United States were being held today, and the candidates were Donald Trump, the Republican candidate; Hillary Clinton, the Democrat candidate; Gary Johnson, the Libertarian candidate; Jill Stein, the Green Party candidate; and Evan McMullin, the Independent candidate; if you had to choose, who would you vote for?\tLikely Voters\t500\t4.38\tLive Phone\tPollster\tRep\n33.0\t30.0\t26.0\t7.0\t2.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1327\t\tInternet\tNonpartisan\tNone\n40.0\t33.0\t\t\t\t27.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t500\t\tInternet\tNonpartisan\tNone\n37.0\t31.0\t24.0\t4.0\t2.0\t2.0\tmonmouth-university-26671\tMonmouth University\t2016-10-30\t2016-11-02\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, Jill Stein of the Green Party, or independent candidate Evan McMullin?\tLikely Voters\t402\t4.9\tLive Phone\tNonpartisan\tNone\n33.0\t30.0\t25.0\t8.0\t2.0\t1.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1247\t\tInternet\tNonpartisan\tNone\n34.0\t30.0\t26.0\t7.0\t2.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1057\t\tInternet\tNonpartisan\tNone\n42.0\t31.0\t21.0\t3.0\t2.0\t2.0\trasmussen-heat-street-26681\tRasmussen/Heat Street\t2016-10-29\t2016-10-31\t\tLikely Voters\t750\t4.0\tIVR/Online\tNonpartisan\tNone\n33.0\t30.0\t26.0\t7.0\t2.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1078\t\tInternet\tNonpartisan\tNone\n33.0\t30.0\t26.0\t7.0\t2.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t988\t\tInternet\tNonpartisan\tNone\n66.0\t29.0\t\t\t6.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t315\t\tInternet\tNonpartisan\tNone\n33.0\t30.0\t27.0\t7.0\t1.0\t1.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1080\t\tInternet\tNonpartisan\tNone\n32.0\t24.0\t30.0\t4.0\t1.0\t8.0\tdan-jones-salt-lake-tribune-hinckley-institute-26554\tDan Jones/Salt Lake Tribune/Hinckley Institute\t2016-10-20\t2016-10-27\tIf the November general election for  president of the United States were today, whom would you vote for?\tLikely Voters\t823\t3.42\tLive Phone/Online\tNonpartisan\tNone\n44.0\t31.0\t\t\t\t25.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t297\t\tInternet\tNonpartisan\tNone\n32.0\t29.0\t29.0\t7.0\t1.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1069\t\tInternet\tNonpartisan\tNone\n32.0\t28.0\t29.0\t4.0\t2.0\t4.0\trasmussen-heat-street-26446\tRasmussen/Heat Street\t2016-10-23\t2016-10-24\t\tLikely Voters\t750\t4.0\tIVR/Online\tNonpartisan\tNone\n33.0\t28.0\t29.0\t7.0\t1.0\t1.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t969\t\tInternet\tNonpartisan\tNone\n33.0\t29.0\t29.0\t7.0\t1.0\t1.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t787\t\tInternet\tNonpartisan\tNone\n65.0\t29.0\t\t\t6.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t308\t\tInternet\tNonpartisan\tNone\n41.0\t29.0\t\t\t\t30.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t508\t\tInternet\tNonpartisan\tNone\n30.0\t28.0\t29.0\t5.0\t3.0\t4.0\trasmussen-heat-street-26207\tRasmussen/Heat Street\t2016-10-14\t2016-10-16\t\tLikely Voters\t750\t4.0\tIVR/Online\tNonpartisan\tNone\n65.0\t29.0\t\t\t5.0\t\tupi-cvoter-26332\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t318\t\tInternet\tNonpartisan\tNone\n37.0\t20.0\t20.0\t7.0\t5.0\t11.0\tcbs-yougov-26187\tCBS/YouGov\t2016-10-12\t2016-10-14\tIf the 2016 presidential election were being held today and the candidates were Hillary Clinton, the Democrat, and Donald Trump, the Republican, who would you vote for? (Voters selecting someone else in the initial question were given a choice of a selection of third party candidates)\tLikely Voters\t951\t5.7\tInternet\tNonpartisan\tNone\n41.0\t35.0\t\t\t\t24.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t543\t\tInternet\tNonpartisan\tNone\n34.0\t28.0\t20.0\t9.0\t2.0\t6.0\tmonmouth-university-26160\tMonmouth University\t2016-10-10\t2016-10-12\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, Jill Stein of the Green Party, or independent candidate Evan McMullin?\tLikely Voters\t403\t4.9\tLive Phone\tNonpartisan\tNone\n26.0\t26.0\t22.0\t14.0\t4.0\t7.0\ty2-analytics-r-26142\tY2 Analytics (R)\t2016-10-10\t2016-10-11\tIf the November election for the President of the United States were being held today, and the candidates were Donald Trump, the Republican candidate; Hillary Clinton, the Democrat candidate; Gary Johnson, the Libertarian candidate; Jill Stein, the Green Party candidate; and Evan McMullin, the Independent candidate; if you had to choose, who would you vote for?\tLikely Voters\t500\t4.38\tLive Phone\tPollster\tRep\n64.0\t30.0\t\t\t6.0\t\tupi-cvoter-26070\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t316\t\tInternet\tNonpartisan\tNone\n48.0\t33.0\t\t\t\t19.0\tipsos-reuters-26133\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t515\t\tInternet\tNonpartisan\tNone\n67.0\t28.0\t\t\t5.0\t\tupi-cvoter-25941\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t495\t\tInternet\tNonpartisan\tNone\n50.0\t34.0\t\t\t\t16.0\tipsos-reuters-25886\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t463\t\tInternet\tNonpartisan\tNone\n66.0\t28.0\t\t\t6.0\t\tupi-cvoter-25776\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t490\t\tInternet\tNonpartisan\tNone\n48.0\t31.0\t\t\t\t21.0\tipsos-reuters-25694\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t425\t\tInternet\tNonpartisan\tNone\n48.0\t29.0\t\t\t\t23.0\tipsos-reuters-25572\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t408\t\tInternet\tNonpartisan\tNone\n46.0\t35.0\t\t\t\t19.0\twashpost-surveymonkey-25392\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t722\t\tInternet\tNonpartisan\tNone\n34.0\t27.0\t\t23.0\t5.0\t11.0\twashpost-surveymonkey-25392\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t722\t\tInternet\tNonpartisan\tNone\n39.0\t24.0\t9.0\t12.0\t3.0\t14.0\tppp-d-25239\tPPP (D)\t2016-08-19\t2016-08-21\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Constitution Party candidate Darrell Castle, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters\t1018\t3.1\tIVR/Online\tPollster\tDem\n53.0\t33.0\t\t\t\t14.0\tppp-d-25239\tPPP (D)\t2016-08-19\t2016-08-21\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t1018\t3.1\tIVR/Online\tPollster\tDem\n37.0\t25.0\t\t16.0\t15.0\t7.0\tdan-jones-associates-utahpolicy-com-25086\tDan Jones & Associates/UtahPolicy.com\t2016-07-18\t2016-08-04\tIf the 2016 general election for president were held today and the candidates were the following, for whom would you likely vote?\tLikely Voters\t858\t3.34\tLive Phone/Online\tNonpartisan\tNone\n36.0\t27.0\t\t10.0\t20.0\t8.0\tdan-jones-associates-utahpolicy-com-24725\tDan Jones & Associates/UtahPolicy.com\t2016-06-08\t2016-06-17\t\tRegistered Voters\t614\t3.95\tLive Phone/Online\tNonpartisan\tNone\n35.0\t35.0\t\t13.0\t\t17.0\tsurveyusa-salt-lake-tribune-hinckley-institute-24658\tSurveyUSA/Salt Lake Tribune/Hinckley Institute\t2016-06-02\t2016-06-08\t\tLikely Voters\t1238\t2.8\tIVR/Online\tNonpartisan\tNone\n36.0\t29.0\t\t\t35.0\t\tgravis-marketing-24624\tGravis Marketing\t2016-05-31\t2016-06-01\t\tRegistered Voters\t1519\t2.5\tAutomated Phone\tNonpartisan\tNone\n29.0\t26.0\t\t16.0\t29.0\t\tgravis-marketing-24624\tGravis Marketing\t2016-05-31\t2016-06-01\t\tRegistered Voters\t1519\t2.5\tAutomated Phone\tNonpartisan\tNone\n43.0\t30.0\t\t\t\t26.0\tdan-jones-associates-utahpolicy-com-24491\tDan Jones & Associates/UtahPolicy.com\t2016-05-02\t2016-05-10\t\tRegistered Voters\t588\t4.04\tLive Phone/Online\tNonpartisan\tNone\n38.0\t38.0\t\t\t\t25.0\tdan-jones-associates-utahpolicy-com-24297\tDan Jones & Associates/UtahPolicy.com\t2016-03-23\t2016-04-05\t\tRegistered Voters\t600\t4.0\tLive Phone/Online\tNonpartisan\tNone\n36.0\t38.0\t\t\t\t24.0\tdan-jones-associates-deseret-news-ksl-24602\tDan Jones & Associates/Deseret News/KSL\t2016-03-08\t2016-03-15\t\tLikely Voters\t500\t4.38\tLive Phone/Online\tNonpartisan\tNone\n33.0\t28.0\t\t\t33.0\t6.0\tdan-jones-associates-utahpolicy-com-23503\tDan Jones & Associates/UtahPolicy.com\t2015-12-08\t2015-12-14\t\tAdults\t622\t3.9\tLive Phone/Online\tNonpartisan\tNone\n38.0\t29.0\t\t\t29.0\t3.0\tdan-jones-associates-utahpolicy-com-22646\tDan Jones & Associates/UtahPolicy.com\t2015-08-07\t2015-08-14\t\tAdults\t500\t5.0\tLive Phone/Online\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/VA.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n41.0\t49.0\t7.0\t2.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t2183\t\tInternet\tNonpartisan\tNone\n42.0\t48.0\t3.0\t3.0\t5.0\tchristopher-newport-26772\tChristopher Newport\t2016-11-01\t2016-11-06\tIf the election for president were held TODAY and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, Jill Stein the Green, or Evan McMullin the Independent, for whom would you vote?\tLikely Voters\t1193\t3.6\tLive Phone\tNonpartisan\tNone\n44.0\t50.0\t\t7.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t344\t\tInternet\tNonpartisan\tNone\n39.0\t49.0\t7.0\t2.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t2109\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t\t\t13.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t636\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t4.0\t2.0\t4.0\tppp-d-26723\tPPP (D)\t2016-11-03\t2016-11-04\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein, and independent Evan McMullin. If the election was today, who would you vote for?\tLikely Voters\t1238\t2.8\tIVR/Online\tPollster\tDem\n45.0\t51.0\t\t\t4.0\tppp-d-26723\tPPP (D)\t2016-11-03\t2016-11-04\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t1238\t2.8\tIVR/Online\tPollster\tDem\n39.0\t49.0\t7.0\t2.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t2183\t\tInternet\tNonpartisan\tNone\n40.0\t48.0\t7.0\t2.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t2073\t\tInternet\tNonpartisan\tNone\n42.0\t49.0\t\t\t9.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t664\t\tInternet\tNonpartisan\tNone\n44.0\t46.0\t4.0\t2.0\t3.0\tremington-research-group-r-axiom-strategies-26759\tRemington Research Group (R)/Axiom Strategies\t2016-11-01\t2016-11-02\t\tLikely Voters\t3076\t1.77\tIVR/Live Phone\tSponsor\tRep\n40.0\t48.0\t7.0\t3.0\t2.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1942\t\tInternet\tNonpartisan\tNone\n38.0\t45.0\t5.0\t3.0\t9.0\troanoke-college-26693\tRoanoke College\t2016-10-29\t2016-11-01\t\tLikely Voters\t654\t3.8\tLive Phone\tNonpartisan\tNone\n40.0\t49.0\t\t\t11.0\troanoke-college-26693\tRoanoke College\t2016-10-29\t2016-11-01\t\tLikely Voters\t654\t3.8\tLive Phone\tNonpartisan\tNone\n39.0\t49.0\t7.0\t3.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1929\t\tInternet\tNonpartisan\tNone\n38.0\t48.0\t8.0\t3.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t2089\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t3.0\t1.0\t5.0\tremington-research-group-r-axiom-strategies-26568\tRemington Research Group (R)/Axiom Strategies\t2016-10-30\t2016-10-30\t\tLikely Voters\t1106\t2.94\tIVR/Live Phone\tSponsor\tRep\n42.0\t48.0\t6.0\t4.0\t1.0\twashington-post-gmu-26589\tWashington Post/GMU\t2016-10-27\t2016-10-30\t\tLikely Voters\t1024\t3.5\tLive Phone\tNonpartisan\tNone\n45.0\t51.0\t\t2.0\t3.0\twashington-post-gmu-26589\tWashington Post/GMU\t2016-10-27\t2016-10-30\t\tLikely Voters\t1024\t3.5\tLive Phone\tNonpartisan\tNone\n44.0\t41.0\t\t\t15.0\thampton-university-26636\tHampton University\t2016-10-26\t2016-10-30\tIf the election were held today, for whom would you vote:\tLikely Voters\t802\t4.57\tLive Phone\tNonpartisan\tNone\n39.0\t48.0\t8.0\t2.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t2005\t\tInternet\tNonpartisan\tNone\n39.0\t44.0\t5.0\t4.0\t7.0\twinthrop-university-26613\tWinthrop University\t2016-10-23\t2016-10-30\t\tLikely Voters\t712\t3.6\tLive Phone\tNonpartisan\tNone\n43.0\t49.0\t\t\t9.0\twinthrop-university-26613\tWinthrop University\t2016-10-23\t2016-10-30\t\tLikely Voters\t712\t3.6\tLive Phone\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t337\t\tInternet\tNonpartisan\tNone\n39.0\t49.0\t8.0\t2.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t2518\t\tInternet\tNonpartisan\tNone\n39.0\t48.0\t\t\t13.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t716\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t5.0\t3.0\t8.0\tchristopher-newport-26515\tChristopher Newport\t2016-10-23\t2016-10-26\tIf the election for president were held TODAY and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, Jill Stein the Green, or Evan McMullin the Independent, for whom would you vote?\tLikely Voters\t814\t4.2\tLive Phone\tNonpartisan\tNone\n38.0\t50.0\t4.0\t3.0\t5.0\tquinnipiac-26510\tQuinnipiac\t2016-10-20\t2016-10-26\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t749\t3.6\tLive Phone\tNonpartisan\tNone\n40.0\t53.0\t\t2.0\t5.0\tquinnipiac-26510\tQuinnipiac\t2016-10-20\t2016-10-26\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t749\t3.6\tLive Phone\tNonpartisan\tNone\n39.0\t48.0\t9.0\t2.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t2739\t\tInternet\tNonpartisan\tNone\n39.0\t48.0\t9.0\t2.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t2459\t\tInternet\tNonpartisan\tNone\n39.0\t48.0\t8.0\t2.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t2063\t\tInternet\tNonpartisan\tNone\n46.0\t49.0\t\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t335\t\tInternet\tNonpartisan\tNone\n43.0\t48.0\t3.0\t1.0\t5.0\tremington-research-group-r-axiom-strategies-26425\tRemington Research Group (R)/Axiom Strategies\t2016-10-20\t2016-10-22\t\tLikely Voters\t1787\t2.31\tIVR/Live Phone\tSponsor\tRep\n37.0\t49.0\t\t\t14.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t821\t\tInternet\tNonpartisan\tNone\n33.0\t45.0\t8.0\t9.0\t5.0\tchristopher-newport-26351\tChristopher Newport\t2016-10-16\t2016-10-19\tIf the election for president were held TODAY and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, Jill Stein the Green, or Evan McMullin the Independent, for whom would you vote?\tLikely Voters\t834\t3.9\tLive Phone\tNonpartisan\tNone\n38.0\t43.0\t9.0\t3.0\t8.0\tlucid-the-times-picayune-26406\tLucid/The Times-Picayune\t2016-10-17\t2016-10-18\t\tLikely Voters\t802\t\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-26334\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t334\t\tInternet\tNonpartisan\tNone\n41.0\t54.0\t\t\t5.0\twashpost-surveymonkey-26252\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1644\t\tInternet\tNonpartisan\tNone\n38.0\t49.0\t8.0\t3.0\t2.0\twashpost-surveymonkey-26252\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1644\t\tInternet\tNonpartisan\tNone\n38.0\t47.0\t3.0\t2.0\t9.0\ttarrance-r-virginia-chamber-of-commerce-26271\tTarrance (R-Virginia Chamber of Commerce)\t2016-10-12\t2016-10-15\tIf the election for President were held today and you had to make a choice, for whom would you vote...Donald Trump, the Republican, Hillary Clinton, the Democrat, Gary Johnson, the Libertarian, Jill Stein, Green Party, or Evan McMullin, an independent candidate?\tLikely Voters\t500\t4.1\tLive Phone\tSponsor\tRep\n29.0\t44.0\t11.0\t11.0\t5.0\tchristopher-newport-26188\tChristopher Newport\t2016-10-11\t2016-10-14\tIf the election for president were held TODAY and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, Jill Stein the Green, or Evan McMullin the Independent, for whom would you vote?\tLikely Voters\t809\t3.6\tLive Phone\tNonpartisan\tNone\n39.0\t49.0\t\t\t12.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t1075\t\tInternet\tNonpartisan\tNone\n47.0\t48.0\t\t5.0\t\tupi-cvoter-26072\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t325\t\tInternet\tNonpartisan\tNone\n36.0\t45.0\t7.0\t2.0\t10.0\troanoke-college-26091\tRoanoke College\t2016-10-02\t2016-10-06\t\tLikely Voters\t814\t3.4\tLive Phone\tNonpartisan\tNone\n39.0\t50.0\t\t\t11.0\tipsos-reuters-26134\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t594\t\tInternet\tNonpartisan\tNone\n34.0\t46.0\t\t\t20.0\thampton-university-25999\tHampton University\t2016-09-28\t2016-10-02\t\tLikely Voters\t800\t4.37\tLive Phone\tNonpartisan\tNone\n50.0\t45.0\t\t4.0\t\tupi-cvoter-25943\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t510\t\tInternet\tNonpartisan\tNone\n35.0\t42.0\t12.0\t8.0\t3.0\tchristopher-newport-25828\tChristopher Newport\t2016-09-27\t2016-09-30\tIf the election for president were held TODAY and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, Jill Stein the Green, or Evan McMullin the Independent, for whom would you vote?\tLikely Voters\t892\t3.7\tLive Phone\tNonpartisan\tNone\n40.0\t48.0\t\t\t12.0\tipsos-reuters-25887\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t1005\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t7.0\t1.0\t5.0\tppp-d-vote-vets-action-fund-25799\tPPP (D-Vote Vets Action Fund)\t2016-09-27\t2016-09-28\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, and Green Party candidate Jill Stein. If the election was today, who would you vote for?\tLikely Voters\t811\t3.4\tIVR/Online\tPollster\tDem\n43.0\t49.0\t\t\t7.0\tppp-d-vote-vets-action-fund-25799\tPPP (D-Vote Vets Action Fund)\t2016-09-27\t2016-09-28\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t811\t3.4\tIVR/Online\tPollster\tDem\n50.0\t46.0\t\t5.0\t\tupi-cvoter-25778\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t495\t\tInternet\tNonpartisan\tNone\n37.0\t45.0\t\t10.0\t8.0\tcbs-yougov-25647\tCBS/YouGov\t2016-09-21\t2016-09-23\t\tLikely Voters\t1237\t3.3\tInternet\tNonpartisan\tNone\n38.0\t48.0\t\t6.0\t9.0\tchristopher-newport-25654\tChristopher Newport\t2016-09-15\t2016-09-23\tIf the election for president were held TODAY and the candidates were Hillary Clinton the Democrat or Donald Trump the Republican, for whom would you vote?\tLikely Voters\t1003\t3.9\tLive Phone\tNonpartisan\tNone\n33.0\t39.0\t15.0\t11.0\t2.0\tchristopher-newport-25654\tChristopher Newport\t2016-09-15\t2016-09-23\tIf the election for president were held TODAY and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, Jill Stein the Green, or Evan McMullin the Independent, for whom would you vote?\tLikely Voters\t1003\t3.9\tLive Phone\tNonpartisan\tNone\n40.0\t47.0\t\t\t13.0\tipsos-reuters-25693\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t532\t\tInternet\tNonpartisan\tNone\n39.0\t45.0\t8.0\t1.0\t6.0\tquinnipiac-25624\tQuinnipiac\t2016-09-13\t2016-09-21\tIf the presidential election were being held today, and the candidates were Hillary Clinton and Tim Kaine the Democrats, Donald Trump and Mike Pence the Republicans, Gary Johnson and Bill Weld the Libertarians, and Jill Stein and Ajamu Baraka the Green party candidates, for whom would you vote?\tLikely Voters\t659\t3.8\tLive Phone\tNonpartisan\tNone\n43.0\t50.0\t\t0.0\t7.0\tquinnipiac-25624\tQuinnipiac\t2016-09-13\t2016-09-21\tIf the only candidates were Hillary Clinton and Tim Kaine the Democrats and Donald Trump and Mike Pence the Republicans, for whom would you vote?\tLikely Voters\t659\t3.8\tLive Phone\tNonpartisan\tNone\n37.0\t44.0\t8.0\t1.0\t9.0\troanoke-college-25613\tRoanoke College\t2016-09-11\t2016-09-20\t\tLikely Voters\t841\t3.4\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t\t\t15.0\tipsos-reuters-25573\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t510\t\tInternet\tNonpartisan\tNone\n37.0\t40.0\t8.0\t5.0\t10.0\tuniversity-of-mary-washington-psrai-25500\tUniversity of Mary Washington/PSRAI\t2016-09-06\t2016-09-12\t\tLikely Voters\t685\t4.4\tLive Phone\tNonpartisan\tNone\n39.0\t45.0\t6.0\t3.0\t8.0\tppp-d-25470\tPPP (D)\t2016-09-09\t2016-09-11\tThe candidates for President are Democrat Hillary Clinton, Republican Donald Trump, Libertarian Gary Johnson, Green Party candidate Jill Stein, and independent Evan McMullin. If the election were today, who would you vote for?\tLikely Voters\t878\t3.3\tIVR/Online\tPollster\tDem\n42.0\t50.0\t\t\t8.0\tppp-d-25470\tPPP (D)\t2016-09-09\t2016-09-11\tIf you had to choose between just Democrat Hillary Clinton and Republican Donald Trump, who would you vote for?\tLikely Voters\t878\t3.3\tIVR/Online\tPollster\tDem\n41.0\t49.0\t\t\t9.0\twashpost-surveymonkey-25353\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2468\t\tInternet\tNonpartisan\tNone\n36.0\t43.0\t13.0\t3.0\t5.0\twashpost-surveymonkey-25353\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2468\t\tInternet\tNonpartisan\tNone\n41.0\t43.0\t\t\t16.0\thampton-university-25323\tHampton University\t2016-08-24\t2016-08-28\tIf the election were held today, for whom would you vote:\tLikely Voters\t801\t4.7\tLive Phone\tNonpartisan\tNone\n32.0\t48.0\t8.0\t3.0\t9.0\troanoke-college-25236\tRoanoke College\t2016-08-07\t2016-08-17\t\tLikely Voters\t803\t3.5\tLive Phone\tNonpartisan\tNone\n36.0\t55.0\t\t\t9.0\troanoke-college-25236\tRoanoke College\t2016-08-07\t2016-08-17\t\tLikely Voters\t803\t3.5\tLive Phone\tNonpartisan\tNone\n38.0\t50.0\t\t5.0\t8.0\tquinnipiac-25200\tQuinnipiac\t2016-08-09\t2016-08-16\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote? As of today, do you lean more toward Clinton or Trump?\tLikely Voters\t808\t3.5\tLive Phone\tNonpartisan\tNone\n34.0\t45.0\t11.0\t6.0\t5.0\tquinnipiac-25200\tQuinnipiac\t2016-08-09\t2016-08-16\tIf the election for President were being held today, and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, and Jill Stein the Green party candidate, for whom would you vote?\tLikely Voters\t808\t3.5\tLive Phone\tNonpartisan\tNone\n43.0\t51.0\t\t5.0\t1.0\twashington-post-25181\tWashington Post\t2016-08-11\t2016-08-14\t\tLikely Voters\t707\t4.5\tLive Phone\tNonpartisan\tNone\n39.0\t46.0\t9.0\t4.0\t2.0\twashington-post-25181\tWashington Post\t2016-08-11\t2016-08-14\t\tLikely Voters\t707\t4.5\tLive Phone\tNonpartisan\tNone\n33.0\t46.0\t\t12.0\t9.0\tnbc-wsj-marist-25151\tNBC/WSJ/Marist\t2016-08-04\t2016-08-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t897\t3.1\tLive Phone\tNonpartisan\tNone\n31.0\t43.0\t12.0\t6.0\t9.0\tnbc-wsj-marist-25151\tNBC/WSJ/Marist\t2016-08-04\t2016-08-10\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t897\t3.1\tLive Phone\tNonpartisan\tNone\n37.0\t49.0\t7.0\t2.0\t5.0\tcbs-yougov-25081\tCBS/YouGov\t2016-08-02\t2016-08-05\tPresidential Vote 2016 (Voters selecting someone else in the initial question were given a choice of third party candidates)\tLikely Voters\t1181\t3.7\tInternet\tNonpartisan\tNone\n46.0\t42.0\t\t7.0\t5.0\traba-research-25027\tRABA Research\t2016-07-26\t2016-07-27\tIf the Presidential election were held today, would you vote for Republican Donald Trump, or Democrat Hillary Clinton?\tRegistered Voters\t655\t3.8\tAutomated Phone\tNonpartisan\tNone\n37.0\t44.0\t\t6.0\t13.0\tfox-news-24902\tFox News\t2016-07-09\t2016-07-12\tIf the 2016 presidential election were held today…How would you vote if the candidates were: [IF DON’T KNOW: Well, which way do you lean?]\tRegistered Voters\t601\t4.0\tLive Phone\tNonpartisan\tNone\n37.0\t44.0\t\t6.0\t13.0\tfox-24881\tFOX\t2016-07-09\t2016-07-12\tIf the 2016 presidential election were held today…How would you vote if the candidates were:\tRegistered Voters\t601\t4.0\tLive Phone\tNonpartisan\tNone\n34.0\t39.0\t10.0\t6.0\t12.0\tfox-24881\tFOX\t2016-07-09\t2016-07-12\tHow would you vote if the candidates were:\tRegistered Voters\t601\t4.0\tLive Phone\tNonpartisan\tNone\n35.0\t44.0\t\t15.0\t7.0\tnbc-wsj-marist-24894\tNBC/WSJ/Marist\t2016-07-05\t2016-07-11\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t876\t3.3\tLive Phone\tNonpartisan\tNone\n34.0\t41.0\t10.0\t4.0\t10.0\tnbc-wsj-marist-24894\tNBC/WSJ/Marist\t2016-07-05\t2016-07-11\tIf November's presidential election were held today, whom would you support if the candidates are:\tRegistered Voters\t876\t3.3\tLive Phone\tNonpartisan\tNone\n39.0\t39.0\t\t\t22.0\thampton-university-24912\tHampton University\t2016-07-06\t2016-07-10\tIf the election were held today, for whom would you vote:\tLikely Voters\t805\t4.6\tLive Phone\tNonpartisan\tNone\n39.0\t42.0\t6.0\t2.0\t10.0\tppp-d-24689\tPPP (D)\t2016-06-13\t2016-06-15\t\tLikely Voters\t1032\t3.1\tIVR/Online\tPollster\tDem\n45.0\t48.0\t\t\t7.0\tppp-d-24689\tPPP (D)\t2016-06-13\t2016-06-15\t\tLikely Voters\t1032\t3.1\tIVR/Online\tPollster\tDem\n41.0\t45.0\t\t14.0\t\tgravis-marketing-24563\tGravis Marketing\t2016-05-24\t2016-05-24\tIf you had to vote today in a matchup between Hillary Clinton and Donald Trump, who would you vote for?\tRegistered Voters\t1728\t2.0\tAutomated Phone\tNonpartisan\tNone\n38.0\t44.0\t6.0\t12.0\t\tgravis-marketing-24563\tGravis Marketing\t2016-05-24\t2016-05-24\tIf you had to vote today in a matchup between Hillary Clinton, Donald Trump and Gary Johnson, who would you vote for?\tRegistered Voters\t1728\t2.0\tAutomated Phone\tNonpartisan\tNone\n38.0\t38.0\t\t11.0\t13.0\troanoke-college-24534\tRoanoke College\t2016-05-09\t2016-05-17\t\tLikely Voters\t610\t4.0\tLive Phone\tNonpartisan\tNone\n35.0\t44.0\t\t14.0\t8.0\tchristopher-newport-24242\tChristopher Newport\t2016-03-23\t2016-04-03\t\tLikely Voters\t1102\t\tLive Phone\tNonpartisan\tNone\n35.0\t52.0\t\t\t13.0\troanoke-college-23701\tRoanoke College\t2016-01-18\t2016-01-26\t\tLikely Voters\t524\t4.3\tLive Phone\tNonpartisan\tNone\n36.0\t50.0\t\t\t14.0\troanoke-college-23178\tRoanoke College\t2015-11-09\t2015-11-13\t\tRegistered Voters\t555\t4.2\tLive Phone\tNonpartisan\tNone\n40.0\t47.0\t\t8.0\t6.0\tchristopher-newport-22896\tChristopher Newport\t2015-09-29\t2015-10-08\t\tRegistered Voters\t1067\t3.2\tLive Phone\tNonpartisan\tNone\n32.0\t45.0\t\t\t23.0\troanoke-college-22619\tRoanoke College\t2015-08-10\t2015-08-20\t\tLikely Voters\t608\t4.0\tLive Phone\tNonpartisan\tNone\n39.0\t49.0\t\t\t12.0\tppp-d-22389\tPPP (D)\t2015-07-13\t2015-07-15\t\tLikely Voters\t1170\t2.9\tIVR/Online\tPollster\tDem"
  },
  {
    "path": "week-6/data/VT.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n25.0\t61.0\t12.0\t2.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t454\t\tInternet\tNonpartisan\tNone\n33.0\t62.0\t\t5.0\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t305\t\tInternet\tNonpartisan\tNone\n27.0\t60.0\t11.0\t2.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t447\t\tInternet\tNonpartisan\tNone\n25.0\t59.0\t14.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t470\t\tInternet\tNonpartisan\tNone\n24.0\t57.0\t17.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t449\t\tInternet\tNonpartisan\tNone\n24.0\t55.0\t17.0\t4.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t424\t\tInternet\tNonpartisan\tNone\n26.0\t54.0\t15.0\t4.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t428\t\tInternet\tNonpartisan\tNone\n25.0\t53.0\t18.0\t4.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t436\t\tInternet\tNonpartisan\tNone\n25.0\t51.0\t19.0\t4.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t422\t\tInternet\tNonpartisan\tNone\n34.0\t63.0\t\t4.0\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t304\t\tInternet\tNonpartisan\tNone\n25.0\t53.0\t18.0\t4.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t479\t\tInternet\tNonpartisan\tNone\n24.0\t53.0\t18.0\t4.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t502\t\tInternet\tNonpartisan\tNone\n23.0\t54.0\t20.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t446\t\tInternet\tNonpartisan\tNone\n24.0\t53.0\t20.0\t3.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t382\t\tInternet\tNonpartisan\tNone\n34.0\t63.0\t\t4.0\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t305\t\tInternet\tNonpartisan\tNone\n33.0\t63.0\t4.0\t\tupi-cvoter-26333\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t304\t\tInternet\tNonpartisan\tNone\n17.0\t45.0\t24.0\t14.0\tcastleton-university-vpr-26269\tCastleton University/VPR\t2016-09-29\t2016-10-14\tIf the presidential election were held today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, Jill Stein of the Green Party, or for someone else?\tLikely Voters\t579\t\tLive Phone\tNonpartisan\tNone\n33.0\t62.0\t5.0\t\tupi-cvoter-26071\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t316\t\tInternet\tNonpartisan\tNone\n35.0\t61.0\t4.0\t\tupi-cvoter-25942\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t464\t\tInternet\tNonpartisan\tNone\n36.0\t60.0\t4.0\t\tupi-cvoter-25777\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t465\t\tInternet\tNonpartisan\tNone\n28.0\t56.0\t\t16.0\twashpost-surveymonkey-25393\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t550\t\tInternet\tNonpartisan\tNone\n24.0\t45.0\t21.0\t9.0\twashpost-surveymonkey-25393\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t550\t\tInternet\tNonpartisan\tNone\n17.0\t39.0\t31.0\t13.0\tcastleton-university-vpr-24982\tCastleton University/VPR\t2016-07-11\t2016-07-23\tIf the Presidential election were held today, and the candidates were Clinton (D), Trump (R), or Johnson (L), who would you vote for?\tLikely Voters\t637\t3.9\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/WA.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n33.0\t51.0\t13.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t1451\t\tInternet\tNonpartisan\tNone\n36.0\t51.0\t6.0\t7.0\tinsights-west-26816\tInsights West\t2016-11-04\t2016-11-06\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t402\t4.9\tInternet\tNonpartisan\tNone\n39.0\t56.0\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t328\t\tInternet\tNonpartisan\tNone\n34.0\t51.0\t12.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1292\t\tInternet\tNonpartisan\tNone\n38.0\t47.0\t\t15.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t863\t\tInternet\tNonpartisan\tNone\n34.0\t52.0\t12.0\t2.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1205\t\tInternet\tNonpartisan\tNone\n34.0\t53.0\t12.0\t2.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t944\t\tInternet\tNonpartisan\tNone\n39.0\t46.0\t\t15.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t870\t\tInternet\tNonpartisan\tNone\n38.0\t50.0\t9.0\t4.0\tsurveyusa-26738\tSurveyUSA\t2016-10-31\t2016-11-02\t\tLikely Voters\t681\t3.8\tIVR/Online\tNonpartisan\tNone\n34.0\t54.0\t12.0\t1.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t807\t\tInternet\tNonpartisan\tNone\n34.0\t54.0\t10.0\t2.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t698\t\tInternet\tNonpartisan\tNone\n34.0\t53.0\t11.0\t2.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t745\t\tInternet\tNonpartisan\tNone\n34.0\t53.0\t12.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t699\t\tInternet\tNonpartisan\tNone\n43.0\t53.0\t4.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t327\t\tInternet\tNonpartisan\tNone\n34.0\t52.0\t12.0\t2.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t793\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t\t16.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t929\t\tInternet\tNonpartisan\tNone\n34.0\t51.0\t12.0\t2.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t782\t\tInternet\tNonpartisan\tNone\n34.0\t51.0\t12.0\t2.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t687\t\tInternet\tNonpartisan\tNone\n34.0\t50.0\t14.0\t2.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t546\t\tInternet\tNonpartisan\tNone\n43.0\t53.0\t4.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t332\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t12.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t724\t\tInternet\tNonpartisan\tNone\n42.0\t54.0\t4.0\t\tupi-cvoter-26335\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t320\t\tInternet\tNonpartisan\tNone\n39.0\t53.0\t\t22.0\tkcts-9-crosscut-washington-26512\tKCTS 9/Crosscut/Washington\t2016-10-06\t2016-10-13\t\tLikely Voters\t750\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t\t16.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t905\t\tInternet\tNonpartisan\tNone\n42.0\t53.0\t5.0\t\tupi-cvoter-26073\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t326\t\tInternet\tNonpartisan\tNone\n33.0\t51.0\t\t16.0\tipsos-reuters-26135\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t504\t\tInternet\tNonpartisan\tNone\n33.0\t50.0\t10.0\t7.0\tstrategies-360-d-komo-news-25991\tStrategies 360 (D- KOMO News)\t2016-09-29\t2016-10-03\t\tLikely Voters\t500\t4.4\tLive Phone\tSponsor\tDem\n31.0\t47.0\t17.0\t6.0\tstrategies-360-d-komo-news-25991\tStrategies 360 (D- KOMO News)\t2016-09-29\t2016-10-03\t\tLikely Voters\t500\t4.4\tLive Phone\tSponsor\tDem\n44.0\t52.0\t5.0\t\tupi-cvoter-25944\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t496\t\tInternet\tNonpartisan\tNone\n35.0\t49.0\t\t16.0\tipsos-reuters-25888\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t788\t\tInternet\tNonpartisan\tNone\n43.0\t52.0\t5.0\t\tupi-cvoter-25779\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t488\t\tInternet\tNonpartisan\tNone\n35.0\t49.0\t\t16.0\tipsos-reuters-25690\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t705\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t\t16.0\tipsos-reuters-25574\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t733\t\tInternet\tNonpartisan\tNone\n28.0\t38.0\t20.0\t14.0\tinsights-west-25627\tInsights West\t2016-09-12\t2016-09-14\tAs you may know, there will be a presidential election on Nov. 8. Which one of the following candidates would you be most likely to support on Election Day?\tLikely Voters\t505\t4.4\tInternet\tNonpartisan\tNone\n37.0\t53.0\t\t10.0\twashpost-surveymonkey-25394\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t722\t\tInternet\tNonpartisan\tNone\n31.0\t41.0\t23.0\t5.0\twashpost-surveymonkey-25394\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t722\t\tInternet\tNonpartisan\tNone\n24.0\t43.0\t11.0\t22.0\telway-25176\tElway\t2016-08-09\t2016-08-13\t\tRegistered Voters\t500\t4.5\tLive Phone\tNonpartisan\tNone\n37.0\t49.0\t\t13.0\tppp-d-northwest-progressive-institute-24698\tPPP (D-Northwest Progressive Institute)\t2016-06-14\t2016-06-15\t\tLikely Voters\t679\t3.8\tAutomated Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/WI.tsv",
    "content": "Trump\tClinton\tJohnson\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n42.0\t44.0\t7.0\t4.0\t3.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t2246\t\tInternet\tNonpartisan\tNone\n43.0\t51.0\t\t6.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t372\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t7.0\t4.0\t3.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t1943\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t\t\t14.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t842\t\tInternet\tNonpartisan\tNone\n43.0\t44.0\t7.0\t3.0\t3.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t1869\t\tInternet\tNonpartisan\tNone\n43.0\t45.0\t7.0\t3.0\t3.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t1568\t\tInternet\tNonpartisan\tNone\n40.0\t47.0\t\t\t13.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t884\t\tInternet\tNonpartisan\tNone\n41.0\t49.0\t3.0\t3.0\t4.0\tremington-research-group-r-axiom-strategies-26765\tRemington Research Group (R)/Axiom Strategies\t2016-11-01\t2016-11-02\t\tLikely Voters\t2720\t1.88\tIVR/Live Phone\tSponsor\tRep\n42.0\t44.0\t7.0\t3.0\t3.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t1271\t\tInternet\tNonpartisan\tNone\n38.0\t44.0\t7.0\t2.0\t9.0\tloras-college-26706\tLoras College\t2016-10-31\t2016-11-01\tIf the Presidential election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, Gary Johnson for the Libertarians and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n41.0\t48.0\t\t\t10.0\tppp-d-center-for-american-progress-action-fund-26700\tPPP (D-Center for American Progress Action Fund)\t2016-10-31\t2016-11-01\tThe candidates for President this fall are Democrat Hillary Clinton, and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t891\t3.3\tIVR/Online\tSponsor\tDem\n42.0\t44.0\t8.0\t3.0\t3.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t1103\t\tInternet\tNonpartisan\tNone\n40.0\t46.0\t\t10.0\t4.0\tmarquette-law-school-26627\tMarquette Law School\t2016-10-26\t2016-10-31\tIf the election for president were being held today and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian and Jill Stein the Green Party, for whom would you vote?\tLikely Voters\t1255\t3.5\tLive Phone\tNonpartisan\tNone\n42.0\t44.0\t7.0\t4.0\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t1195\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t4.0\t3.0\t5.0\tremington-research-group-r-axiom-strategies-26560\tRemington Research Group (R)/Axiom Strategies\t2016-10-30\t2016-10-30\t\tLikely Voters\t1772\t2.86\tIVR/Live Phone\tSponsor\tRep\n41.0\t45.0\t8.0\t4.0\t3.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t1059\t\tInternet\tNonpartisan\tNone\n46.0\t51.0\t\t3.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t365\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t8.0\t4.0\t3.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t1338\t\tInternet\tNonpartisan\tNone\n42.0\t47.0\t\t\t11.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t563\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t9.0\t3.0\t3.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t1524\t\tInternet\tNonpartisan\tNone\n41.0\t43.0\t10.0\t3.0\t3.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t1351\t\tInternet\tNonpartisan\tNone\n42.0\t43.0\t10.0\t2.0\t3.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t1140\t\tInternet\tNonpartisan\tNone\n46.0\t51.0\t\t3.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t364\t\tInternet\tNonpartisan\tNone\n41.0\t46.0\t5.0\t2.0\t6.0\tremington-research-group-r-axiom-strategies-26426\tRemington Research Group (R)/Axiom Strategies\t2016-10-20\t2016-10-22\t\tLikely Voters\t1795\t2.31\tIVR/Live Phone\tSponsor\tRep\n42.0\t45.0\t\t\t13.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t646\t\tInternet\tNonpartisan\tNone\n38.0\t50.0\t\t\t12.0\tppp-d-end-citizens-united-26282\tPPP (D-End Citizens United)\t2016-10-18\t2016-10-19\tThe candidates for President this fall are Democrat Hillary Clinton and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t804\t3.5\tIVR/Online\tSponsor\tDem\n40.0\t47.0\t6.0\t3.0\t5.0\tmonmouth-university-26274\tMonmouth University\t2016-10-15\t2016-10-18\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t403\t4.9\tLive Phone\tNonpartisan\tNone\n39.0\t47.0\t1.0\t6.0\t7.0\tst-norbert-26236\tSt Norbert\t2016-10-13\t2016-10-16\t\tLikely Voters\t664\t3.8\tLive Phone\tNonpartisan\tNone\n46.0\t51.0\t\t3.0\t\tupi-cvoter-26338\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t361\t\tInternet\tNonpartisan\tNone\n44.0\t48.0\t\t\t8.0\twashpost-surveymonkey-26253\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1076\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t12.0\t4.0\t3.0\twashpost-surveymonkey-26253\tWashPost/SurveyMonkey\t2016-10-08\t2016-10-16\t\tLikely Voters\t1076\t\tInternet\tNonpartisan\tNone\n37.0\t42.0\t\t\t21.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t810\t\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t8.0\t4.0\tmarquette-law-school-26150\tMarquette Law School\t2016-10-06\t2016-10-09\tIf the election for president were being held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t878\t3.9\tLive Phone\tNonpartisan\tNone\n37.0\t44.0\t9.0\t5.0\t5.0\tmarquette-law-school-26150\tMarquette Law School\t2016-10-06\t2016-10-09\tIf the election for president were being held today and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian and Jill Stein the Green Party, for whom would you vote?\tLikely Voters\t878\t3.9\tLive Phone\tNonpartisan\tNone\n46.0\t51.0\t\t4.0\t\tupi-cvoter-26045\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t349\t\tInternet\tNonpartisan\tNone\n39.0\t43.0\t4.0\t3.0\t11.0\tcbs-yougov-26016\tCBS/YouGov\t2016-10-05\t2016-10-07\t\tLikely Voters\t993\t4.3\tInternet\tNonpartisan\tNone\n42.0\t46.0\t\t\t12.0\tipsos-reuters-26137\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t866\t\tInternet\tNonpartisan\tNone\n37.0\t47.0\t\t7.0\t9.0\tloras-college-26083\tLoras College\t2016-10-04\t2016-10-05\tIf the Presidential election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, for whom would you vote?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n35.0\t43.0\t8.0\t2.0\t12.0\tloras-college-26083\tLoras College\t2016-10-04\t2016-10-05\tIf the Presidential election were held today, and the candidates were Hillary Clinton for the Democrats and Donald Trump for the Republicans, Gary Johnson for the Libertarians and Jill Stein for the Green Party, for whom would you vote?\tLikely Voters\t500\t4.4\tLive Phone\tNonpartisan\tNone\n47.0\t50.0\t\t3.0\t\tupi-cvoter-25946\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t575\t\tInternet\tNonpartisan\tNone\n42.0\t42.0\t\t\t16.0\tipsos-reuters-25890\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t751\t\tInternet\tNonpartisan\tNone\n46.0\t50.0\t\t4.0\t\tupi-cvoter-25782\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t553\t\tInternet\tNonpartisan\tNone\n41.0\t41.0\t\t\t18.0\tipsos-reuters-25686\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t685\t\tInternet\tNonpartisan\tNone\n42.0\t44.0\t1.0\t8.0\t5.0\tmarquette-law-school-25601\tMarquette Law School\t2016-09-15\t2016-09-18\tIf the election for president were being held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t642\t4.8\tLive Phone\tNonpartisan\tNone\n38.0\t41.0\t11.0\t4.0\t6.0\tmarquette-law-school-25601\tMarquette Law School\t2016-09-15\t2016-09-18\tIf the election for president were being held today and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian and Jill Stein the Green Party, for whom would you vote?\tLikely Voters\t642\t4.8\tLive Phone\tNonpartisan\tNone\n40.0\t43.0\t\t\t17.0\tipsos-reuters-25576\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t695\t\tInternet\tNonpartisan\tNone\n44.0\t46.0\t\t\t11.0\twashpost-surveymonkey-25347\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2687\t\tInternet\tNonpartisan\tNone\n37.0\t39.0\t13.0\t4.0\t7.0\twashpost-surveymonkey-25347\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t2687\t\tInternet\tNonpartisan\tNone\n38.0\t43.0\t7.0\t4.0\t8.0\tmonmouth-university-25303\tMonmouth University\t2016-08-27\t2016-08-30\tIf the election for President was today, would you vote for Donald Trump the Republican, Hillary Clinton the Democrat, Gary Johnson the Libertarian, or Jill Stein of the Green Party?\tLikely Voters\t404\t4.9\tLive Phone\tNonpartisan\tNone\n42.0\t45.0\t1.0\t7.0\t4.0\tmarquette-law-school-25304\tMarquette Law School\t2016-08-25\t2016-08-28\tIf the election for president were being held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t650\t5.0\tLive Phone\tNonpartisan\tNone\n38.0\t41.0\t10.0\t7.0\t5.0\tmarquette-law-school-25304\tMarquette Law School\t2016-08-25\t2016-08-28\tIf the election for president were being held today and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian and Jill Stein the Green Party, for whom would you vote?\tLikely Voters\t650\t5.0\tLive Phone\tNonpartisan\tNone\n41.0\t48.0\t\t\t12.0\tppp-d-nelp-25312\tPPP (D-NELP) \t2016-08-26\t2016-08-27\tThe candidates for President this fall are Democrat Hillary Clinton and Republican Donald Trump. If the election were today, who would you vote for?\tLikely Voters\t1054\t3.0\tIVR/Online\tSponsor\tDem\n37.0\t52.0\t0.0\t7.0\t3.0\tmarquette-law-school-25118\tMarquette Law School\t2016-08-04\t2016-08-07\tIf the election for president were being held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t683\t5.0\tLive Phone\tNonpartisan\tNone\n34.0\t47.0\t9.0\t5.0\t4.0\tmarquette-law-school-25118\tMarquette Law School\t2016-08-04\t2016-08-07\tIf the election for president were being held today and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian and Jill Stein the Green Party, for whom would you vote?\tLikely Voters\t683\t5.0\tLive Phone\tNonpartisan\tNone\n41.0\t45.0\t0.0\t9.0\t6.0\tmarquette-law-school-24879\tMarquette Law School\t2016-07-07\t2016-07-10\tIf the election for president were being held today and the candidates were Hillary Clinton the Democrat and Donald Trump the Republican, for whom would you vote?\tLikely Voters\t665\t4.9\tLive Phone\tNonpartisan\tNone\n37.0\t43.0\t8.0\t5.0\t7.0\tmarquette-law-school-24879\tMarquette Law School\t2016-07-07\t2016-07-10\tIf the election for president were being held today and the candidates were Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian and Jill Stein the Green Party, for whom would you vote?\tLikely Voters\t665\t4.9\tLive Phone\tNonpartisan\tNone\n36.0\t41.0\t\t11.0\t12.0\tcbs-yougov-24768\tCBS/YouGov\t2016-06-21\t2016-06-24\t\tLikely Voters\t993\t4.3\tInternet\tNonpartisan\tNone\n39.0\t47.0\t\t\t14.0\tppp-d-americans-united-for-change-constitutional-responsibility-project-24790\tPPP (D-Americans United for Change/Constitutional Responsibility Project) \t2016-06-22\t2016-06-23\t\tLikely Voters\t843\t3.4\tIVR/Online\tSponsor\tDem\n36.0\t47.0\t\t7.0\t10.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24849\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n32.0\t44.0\t16.0\t3.0\t5.0\tgqr-d-democracy-corps-women-s-voices-women-vote-24849\tGQR (D-Democracy Corps/Women's Voices Women Vote)\t2016-06-11\t2016-06-20\t\tLikely Voters\t300\t5.66\tLive Phone\tSponsor\tDem\n37.0\t46.0\t\t13.0\t4.0\tmarquette-law-school-24685\tMarquette Law School\t2016-06-09\t2016-06-12\t\tLikely Voters\t666\t4.9\tLive Phone\tNonpartisan\tNone\n31.0\t43.0\t\t\t\tpublic-opinion-strategies-r-federation-for-children-24567\tPublic Opinion Strategies (R)/Federation for Children\t2016-05-10\t2016-05-12\t\tLikely Voters\t600\t4.0\tLive Phone\tPollster\tRep\n34.0\t46.0\t\t12.0\t9.0\tst-norbert-wpr-wptv-24316\tSt Norbert/WPR/WPTV\t2016-04-12\t2016-04-15\t\tRegistered Voters\t616\t4.0\tLive Phone\tNonpartisan\tNone\n37.0\t47.0\t\t\t17.0\temerson-college-polling-society-24195\tEmerson College Polling Society\t2016-03-30\t2016-04-03\t\tLikely Voters\t1198\t2.8\tAutomated Phone\tNonpartisan\tNone\n35.0\t49.0\t\t6.0\t10.0\tfox-news-24182\tFox News\t2016-03-28\t2016-03-30\t\tLikely Voters\t1602\t2.5\tLive Phone\tNonpartisan\tNone\n37.0\t47.0\t\t12.0\t5.0\tmarquette-law-school-24172\tMarquette Law School\t2016-03-24\t2016-03-28\t\tRegistered Voters\t1405\t3.3\tLive Phone\tNonpartisan\tNone\n37.0\t48.0\t\t11.0\t6.0\tmarquette-law-school-23872\tMarquette Law School\t2016-02-18\t2016-02-21\t\tRegistered Voters\t802\t4.5\tLive Phone\tNonpartisan\tNone\n38.0\t47.0\t\t9.0\t6.0\tmarquette-law-school-23623\tMarquette Law School\t2016-01-21\t2016-01-24\t\tRegistered Voters\t806\t4.0\tLive Phone\tNonpartisan\tNone\n38.0\t48.0\t\t9.0\t5.0\tmarquette-law-school-23197\tMarquette Law School\t2015-11-12\t2015-11-15\t\tRegistered Voters\t803\t4.2\tLive Phone\tNonpartisan\tNone\n39.0\t50.0\t\t\t11.0\tst-norbert-wpr-wptv-22973\tSt Norbert/WPR/WPTV\t2015-10-14\t2015-10-17\t\tRegistered Voters\t603\t4.0\tLive Phone\tNonpartisan\tNone\n36.0\t50.0\t\t9.0\t4.0\tmarquette-law-school-22823\tMarquette Law School\t2015-09-24\t2015-09-28\t\tRegistered Voters\t803\t4.1\tLive Phone\tNonpartisan\tNone\n35.0\t51.0\t\t10.0\t4.0\tmarquette-law-school-22596\tMarquette Law School\t2015-08-13\t2015-08-16\t\tRegistered Voters\t802\t4.3\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/WV.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n56.0\t29.0\t10.0\t5.0\tsurveymonkey-26807\tSurveyMonkey\t2016-11-01\t2016-11-07\t\tLikely Voters\t472\t\tInternet\tNonpartisan\tNone\n56.0\t34.0\t10.0\t\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t309\t\tInternet\tNonpartisan\tNone\n57.0\t27.0\t11.0\t6.0\tsurveymonkey-26769\tSurveyMonkey\t2016-10-30\t2016-11-06\t\tLikely Voters\t443\t\tInternet\tNonpartisan\tNone\n58.0\t34.0\t\t8.0\tipsos-reuters-26806\tIpsos/Reuters\t2016-10-17\t2016-11-06\t\tLikely Voters\t422\t\tInternet\tNonpartisan\tNone\n57.0\t27.0\t10.0\t5.0\tsurveymonkey-26731\tSurveyMonkey\t2016-10-29\t2016-11-04\t\tLikely Voters\t433\t\tInternet\tNonpartisan\tNone\n57.0\t27.0\t10.0\t6.0\tsurveymonkey-26694\tSurveyMonkey\t2016-10-28\t2016-11-03\t\tLikely Voters\t386\t\tInternet\tNonpartisan\tNone\n58.0\t35.0\t\t7.0\tipsos-reuters-26743\tIpsos/Reuters\t2016-10-14\t2016-11-03\t\tLikely Voters\t408\t\tInternet\tNonpartisan\tNone\n59.0\t27.0\t8.0\t5.0\tsurveymonkey-26660\tSurveyMonkey\t2016-10-27\t2016-11-02\t\tLikely Voters\t330\t\tInternet\tNonpartisan\tNone\n55.0\t29.0\t12.0\t4.0\tsurveymonkey-26619\tSurveyMonkey\t2016-10-26\t2016-11-01\t\tLikely Voters\t318\t\tInternet\tNonpartisan\tNone\n58.0\t27.0\t12.0\t3.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t321\t\tInternet\tNonpartisan\tNone\n59.0\t27.0\t12.0\t2.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t294\t\tInternet\tNonpartisan\tNone\n59.0\t36.0\t5.0\t\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t311\t\tInternet\tNonpartisan\tNone\n61.0\t28.0\t10.0\t1.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t375\t\tInternet\tNonpartisan\tNone\n56.0\t37.0\t\t7.0\tipsos-reuters-26585\tIpsos/Reuters\t2016-10-07\t2016-10-27\t\tLikely Voters\t294\t\tInternet\tNonpartisan\tNone\n60.0\t29.0\t10.0\t1.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t410\t\tInternet\tNonpartisan\tNone\n61.0\t29.0\t9.0\t1.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t379\t\tInternet\tNonpartisan\tNone\n61.0\t28.0\t11.0\t0.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t316\t\tInternet\tNonpartisan\tNone\n59.0\t36.0\t5.0\t\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t311\t\tInternet\tNonpartisan\tNone\n56.0\t39.0\t\t5.0\tipsos-reuters-26407\tIpsos/Reuters\t2016-09-30\t2016-10-20\t\tLikely Voters\t324\t\tInternet\tNonpartisan\tNone\n58.0\t36.0\t6.0\t\tupi-cvoter-26337\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t310\t\tInternet\tNonpartisan\tNone\n54.0\t41.0\t\t5.0\tipsos-reuters-26344\tIpsos/Reuters\t2016-09-23\t2016-10-13\t\tLikely Voters\t360\t\tInternet\tNonpartisan\tNone\n58.0\t37.0\t6.0\t\tupi-cvoter-26046\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t308\t\tInternet\tNonpartisan\tNone\n55.0\t36.0\t\t9.0\tipsos-reuters-26136\tIpsos/Reuters\t2016-09-16\t2016-10-06\t\tLikely Voters\t371\t\tInternet\tNonpartisan\tNone\n61.0\t34.0\t5.0\t\tupi-cvoter-25945\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t480\t\tInternet\tNonpartisan\tNone\n53.0\t33.0\t\t14.0\tipsos-reuters-25889\tIpsos/Reuters\t2016-09-09\t2016-09-29\t\tLikely Voters\t351\t\tInternet\tNonpartisan\tNone\n59.0\t35.0\t6.0\t\tupi-cvoter-25780\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t466\t\tInternet\tNonpartisan\tNone\n52.0\t35.0\t\t13.0\tipsos-reuters-25688\tIpsos/Reuters\t2016-09-02\t2016-09-22\t\tLikely Voters\t301\t\tInternet\tNonpartisan\tNone\n60.0\t28.0\t\t12.0\tgarin-hart-yang-d-reynolds-25975\tGarin-Hart-Yang (D-Reynolds)\t2016-09-13\t2016-09-17\tThe candidates in the November election for president are Hillary Clinton, the Democrat, and Donald Trump, the Republican. Given this choice, would you vote for Hillary Clinton or Donald Trump?\tLikely Voters\t500\t5.0\tLive Phone\tSponsor\tDem\n49.0\t39.0\t\t12.0\tipsos-reuters-25575\tIpsos/Reuters\t2016-08-26\t2016-09-15\t\tLikely Voters\t295\t\tInternet\tNonpartisan\tNone\n57.0\t33.0\t\t10.0\twashpost-surveymonkey-25395\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t698\t\tInternet\tNonpartisan\tNone\n52.0\t27.0\t16.0\t5.0\twashpost-surveymonkey-25395\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t698\t\tInternet\tNonpartisan\tNone\n49.0\t31.0\t14.0\t6.0\tr-l-repass-partners-metronews-25325\tR.L. Repass & Partners/MetroNews\t2016-08-09\t2016-08-28\t\tLikely Voters\t435\t4.7\tMixed\tNonpartisan\tNone\n57.0\t30.0\t\t13.0\tppp-d-24437\tPPP (D)\t2016-04-29\t2016-05-01\t\tLikely Voters\t1201\t2.8\tIVR/Online\tPollster\tDem\n53.0\t30.0\t\t17.0\torion-22627\tOrion\t2015-08-24\t2015-08-25\t\tLikely Voters\t406\t4.9\tLive Phone\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/WY.tsv",
    "content": "Trump\tClinton\tOther\tUndecided\tpoll_slug\tsurvey_house\tstart_date\tend_date\tquestion_text\tsample_subpopulation\tobservations\tmargin_of_error\tmode\tpartisanship\tpartisan_affiliation\n67.0\t28.0\t\t5.0\tupi-cvoter-26793\tUPI/CVOTER\t2016-10-30\t2016-11-06\t\tLikely Voters\t320\t\tInternet\tNonpartisan\tNone\n62.0\t22.0\t12.0\t4.0\tsurveymonkey-26596\tSurveyMonkey\t2016-10-25\t2016-10-31\t\tLikely Voters\t251\t\tInternet\tNonpartisan\tNone\n62.0\t23.0\t10.0\t5.0\tsurveymonkey-26572\tSurveyMonkey\t2016-10-24\t2016-10-30\t\tLikely Voters\t251\t\tInternet\tNonpartisan\tNone\n65.0\t30.0\t\t5.0\tupi-cvoter-26592\tUPI/CVOTER\t2016-10-23\t2016-10-29\t\tLikely Voters\t311\t\tInternet\tNonpartisan\tNone\n60.0\t24.0\t12.0\t4.0\tsurveymonkey-26537\tSurveyMonkey\t2016-10-20\t2016-10-28\t\tLikely Voters\t375\t\tInternet\tNonpartisan\tNone\n59.0\t25.0\t12.0\t4.0\tsurveymonkey-26499\tSurveyMonkey\t2016-10-18\t2016-10-26\t\tLikely Voters\t388\t\tInternet\tNonpartisan\tNone\n59.0\t25.0\t11.0\t5.0\tsurveymonkey-26441\tSurveyMonkey\t2016-10-18\t2016-10-24\t\tLikely Voters\t361\t\tInternet\tNonpartisan\tNone\n57.0\t25.0\t13.0\t5.0\tsurveymonkey-26431\tSurveyMonkey\t2016-10-17\t2016-10-23\t\tLikely Voters\t311\t\tInternet\tNonpartisan\tNone\n65.0\t30.0\t\t5.0\tupi-cvoter-26409\tUPI/CVOTER\t2016-10-16\t2016-10-23\t\tLikely Voters\t309\t\tInternet\tNonpartisan\tNone\n64.0\t30.0\t6.0\t\tupi-cvoter-26339\tUPI/CVOTER\t2016-10-09\t2016-10-16\t\tLikely Voters\t311\t\tInternet\tNonpartisan\tNone\n63.0\t30.0\t6.0\t\tupi-cvoter-26044\tUPI/CVOTER\t2016-10-02\t2016-10-09\t\tLikely Voters\t309\t\tInternet\tNonpartisan\tNone\n65.0\t29.0\t5.0\t\tupi-cvoter-25947\tUPI/CVOTER\t2016-09-19\t2016-10-02\t\tLikely Voters\t462\t\tInternet\tNonpartisan\tNone\n65.0\t29.0\t6.0\t\tupi-cvoter-25781\tUPI/CVOTER\t2016-09-12\t2016-09-25\t\tLikely Voters\t461\t\tInternet\tNonpartisan\tNone\n54.0\t19.0\t12.0\t15.0\tdfm-research-d-greene-25602\tDFM Research (D-Greene)\t2016-09-06\t2016-09-11\tNow let’s look ahead to the November election. If the election was held today for President of the United States, would you vote for Hillary Clinton the Democrat, Donald Trump the Republican, Gary Johnson the Libertarian, or Jill Stein with the Green Party?\tLikely Voters\t402\t4.9\tLive Phone\tSponsor\tDem\n65.0\t27.0\t\t8.0\twashpost-surveymonkey-25396\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t727\t\tInternet\tNonpartisan\tNone\n57.0\t21.0\t18.0\t4.0\twashpost-surveymonkey-25396\tWashPost/SurveyMonkey\t2016-08-09\t2016-09-01\t\tRegistered Voters\t727\t\tInternet\tNonpartisan\tNone"
  },
  {
    "path": "week-6/data/election-fundamentals.csv",
    "content": "year,incumbent_president,incumbent_party,term,highest_approval,lowest_approval,year_gdp_growth,winner\r\n1960,Esienhower,R,2,79,47,2.6,D\r\n1964,Johnson,D,1,79,34,5.8,D\r\n1968,Johnson,D,2,79,34,4.8,R\r\n1972,Nixon,R,1,66,24,5.3,R\r\n1976,Nixon,R,2,66,24,5.4,D\r\n1980,Carter,D,1,74,28,-0.2,R\r\n1984,Reagan,R,1,71,35,7.26,R\r\n1988,Reagan,R,2,71,35,4.2,R\r\n1992,Bush,R,1,89,29,3.6,D\r\n1996,Clinton,D,1,73,37,3.8,D\r\n2000,Clinton,D,2,73,37,4.1,R\r\n2004,Bush,R,1,90,25,3.8,R\r\n2008,Bush,R,2,90,25,-0.3,D\r\n2012,Obama,D,1,69,38,2.2,D\r\n2016,Obama,D,2,69,38,1.5,R"
  },
  {
    "path": "week-6/data/states.csv",
    "content": "name,abbr,electoral_votes\r\nAlabama,AL,9\r\nAlaska,AK,3\r\nArizona,AZ,11\r\nArkansas,AR,6\r\nCalifornia,CA,55\r\nColorado,CO,9\r\nConnecticut,CT,7\r\nDelaware,DE,3\r\nFlorida,FL,29\r\nGeorgia,GA,16\r\nHawaii,HI,4\r\nIdaho,ID,4\r\nIllinois,IL,20\r\nIndiana,IN,11\r\nIowa,IA,6\r\nKansas,KS,6\r\nKentucky,KY,8\r\nLouisiana,LA,8\r\nMaine,ME,4\r\nMaryland,MD,10\r\nMassachusetts,MA,11\r\nMichigan,MI,16\r\nMinnesota,MN,10\r\nMississippi,MS,6\r\nMissouri,MO,10\r\nMontana,MT,3\r\nNebraska,NE,5\r\nNevada,NV,6\r\nNew Hampshire,NH,4\r\nNew Jersey,NJ,14\r\nNew Mexico,NM,5\r\nNew York,NY,29\r\nNorth Carolina,NC,15\r\nNorth Dakota,ND,3\r\nOhio,OH,18\r\nOklahoma,OK,7\r\nOregon,OR,7\r\nPennsylvania,PA,20\r\nRhode Island,RI,4\r\nSouth Carolina,SC,9\r\nSouth Dakota,SD,3\r\nTennessee,TN,11\r\nTexas,TX,38\r\nUtah,UT,6\r\nVermont,VT,3\r\nVirginia,VA,13\r\nWashington,WA,12\r\nWest Virginia,WV,5\r\nWisconsin,WI,10\r\nWyoming,WY,3"
  },
  {
    "path": "week-6/download-states.sh",
    "content": "#!/bin/bash\n# Download 2016 election polls from Huffington Post Pollster API\ndeclare -a states=(\"AL\" \"AK\" \"AZ\" \"AR\" \"CA\" \"CO\" \"CT\" \"DE\" \"FL\" \"GA\" \"HI\" \"ID\" \"IL\" \"IN\" \"IA\" \"KS\" \"KY\" \"LA\" \"ME\" \"MD\" \"MA\" \"MI\" \"MN\" \"MS\" \"MO\" \"MT\" \"NE\" \"NV\" \"NH\" \"NJ\" \"NM\" \"NY\" \"NC\" \"ND\" \"OH\" \"OK\" \"OR\" \"PA\" \"RI\" \"SC\" \"SD\" \"TN\" \"TX\" \"UT\" \"VT\" \"VA\" \"WA\" \"WV\" \"WI\" \"WY\")\n\nfor state in \"${states[@]}\"\ndo\n\techo Downloading \"$state\"...\n\tcurl http://elections.huffingtonpost.com/pollster/api/v2/questions/16-\"$state\"-Pres-GE%20TrumpvClinton/poll-responses-clean.tsv > data/\"$state\".tsv\ndone\n"
  },
  {
    "path": "week-6/stormy-daniels-payments-simulation.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Week 6-2: Simulation to detect campaign finance payments\\n\",\n    \"\\n\",\n    \"This notebook replicates the analysis in the post [Statistical Model Strongly Suggests the Stormy Daniels Payoff Came from the Trump Campaign](https://medium.com/@whstancil/statistical-model-strongly-suggests-the-stormy-daniels-payoff-came-from-the-trump-campaign-7c09c300cb18) and analyzes a robustness problem in the argument: the probability of finding five payments that add up to something close to $130,000 increases quickly as the number of payments to choose from increases, and the authors arbitrarily chose 10.\\n\",\n    \"\\n\",\n    \"A deeper problem is that this statistical test has all sorts of underlying assumptions about how the data relates to reality. [For example](https://twitter.com/pbump/status/972216289384157188), why would the campaign choose to report an illegal payment in their public data? However, even on the test's own terms, the sensitivity on the choice of 10 makes the results look a lot less robust.\\n\",\n    \"\\n\",\n    \"From the original post:\\n\",\n    \"\\n\",\n    \" >As is well-known by now, in late October 2016, Donald Trump’s personal attorney Michael Cohen paid adult star Stormy Daniels \\\\$130,000 in order to purchase her silence about an alleged affair a decade earlier. The exact set of facts around this payment remains shrouded in mystery, with Cohen maintaining that he made the payment alone, without Trump’s knowledge, and with personal funds ... However, sharp-eyed observers have noted that, in late October 2016, the Trump campaign made a series of five large payments to Trump-affiliated entities, totaling \\\\$129,999.72. \\n\",\n    \"\\n\",\n    \"The core of the argument is:\\n\",\n    \"\\n\",\n    \"> Ultimately, our model suggests that the probability of a set of payments coincidentally coming so close to \\\\$130,000 is approximately 0.1%, or one out of one thousand. In other words, about 99.9% of the time, random chance would not produce a set of payments this close to \\\\$130,000. Therefore, the probability that the Trump campaign payments were related to the Daniels payoff is very high.\\n\",\n    \"\\n\",\n    \"Their model calculates the probability of getting this close if the last few payments were truly random, by repeatedly simulating a set of 10 campaign payments and seeing how close you can get to \\\\$130,000 by adding up some set of them. You can't get very close very often. However, there's no reason to choose to look at only the last 10 payments. If you look at the last 20 payments instead, the probability of finding a subset that some to within a dollar of \\\\$130,000 rises to 40%!\\n\",\n    \"\\n\",\n    \"The data is \\\"a list of all Trump campaign payments to Trump-affiliated entities\\\" compiled from FEC data by DC attorney and blogger Susan Simpson, available [here](from https://twitter.com/TheViewFromLL2/status/971771806414725130).\\n\",\n    \"\\n\",\n    \"### Things to think about\\n\",\n    \"\\n\",\n    \"Of course the issue of whether there was an illegal payoff here has since been overtaken by Cohen's guilty plea, but working through this problem touches on a number of deep-ish statistical ideas.\\n\",\n    \"\\n\",\n    \"1) This type of \\\"the alternative is super unlikely\\\" statistical argument appears in many places. It's the core idea of significance testing and p-values. See [this chapter](https://towcenter.gitbooks.io/curious-journalist-s-guide-to-data/content/analysis/arguing_from_the_odds.html) of *The Curious Journalist's Guide to Data.* \\n\",\n    \"\\n\",\n    \"2) But again, how does this data relate to reality? What are the FEC rules and typical campaign practice for what is reported and when? When politicians have pulled shady stuff in the past, how did it look in the data? We desperately need domain knowledge here. For an example of what that looks like, see [Fivethirtyeight's critique of statistical tests for tennis fixing](https://fivethirtyeight.com/features/why-betting-data-alone-cant-identify-match-fixers-in-tennis/).\\n\",\n    \"\\n\",\n    \"3) What is the correct number of payments to use as a baseline for simulation? In other words, what is our universe of events that were using to calculate the probability of this particular thing happening? The authors [note](https://medium.com/@whstancil/hi-david-its-not-fixed-at-5-that-s-just-how-many-payments-made-up-the-original-discovery-9c3696b7f694) \\\"the set was fixed at ten because we’re trying to estimate the odds of the original discovery, which was found in a series of eight or so payments\\\" which has a pleasant \\\"let's let the data dictate the model\\\" kind of rationale. But the whole concept of frequentist inference is that we reason about the statistics of the process, independent of observed data, so it's not clear to me if this argument makes sense. Or that any argument about the \\\"right\\\" or \\\"objective\\\" number of payments to check with this method can really be solid. I'd prefer to see a fully Bayesian attempt, modeling the generation process for the entire observed payment stream with and without the Stormy payoff.\\n\",\n    \"\\n\",\n    \"4) At the highest level of generality, the problem of arbitrarily chosen parameters is a red flag in any analysis. Whenever you see a chooseable constant, ask how different the answer would be if a different constant was chosen.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import math\\n\",\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Load and clean data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>disbursement_date</th>\\n\",\n       \"      <th>recipient_name</th>\\n\",\n       \"      <th>recipient_state</th>\\n\",\n       \"      <th>disbursement_amount</th>\\n\",\n       \"      <th>disbursement_description</th>\\n\",\n       \"      <th>recipient_city</th>\\n\",\n       \"      <th>disbursement_purpose_category</th>\\n\",\n       \"      <th>pdf_url</th>\\n\",\n       \"      <th>Unnamed: 8</th>\\n\",\n       \"      <th>Unnamed: 9</th>\\n\",\n       \"      <th>Unnamed: 10</th>\\n\",\n       \"      <th>Unnamed: 11</th>\\n\",\n       \"      <th>Unnamed: 12</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>4/30/15 0:00</td>\\n\",\n       \"      <td>TRUMP INTERNATIONAL HOTEL AND TOWER</td>\\n\",\n       \"      <td>NY</td>\\n\",\n       \"      <td>$1,380.54</td>\\n\",\n       \"      <td>TTW - TRAVEL: LODGING</td>\\n\",\n       \"      <td>NEW YORK</td>\\n\",\n       \"      <td>TRAVEL</td>\\n\",\n       \"      <td>http://docquery.fec.gov/cgi-bin/fecimg/?201507...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>5/5/15 0:00</td>\\n\",\n       \"      <td>TRUMP TOWER COMMERCIAL LLC</td>\\n\",\n       \"      <td>NY</td>\\n\",\n       \"      <td>$9,583.33</td>\\n\",\n       \"      <td>TTW - RENT</td>\\n\",\n       \"      <td>HICKSVILLE</td>\\n\",\n       \"      <td>ADMINISTRATIVE</td>\\n\",\n       \"      <td>http://docquery.fec.gov/cgi-bin/fecimg/?201507...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>6/16/15 0:00</td>\\n\",\n       \"      <td>THE TRUMP CORPORATION</td>\\n\",\n       \"      <td>NY</td>\\n\",\n       \"      <td>$37,993.04</td>\\n\",\n       \"      <td>TTW  - ONE-TIME REIMBURSEMENT FOR FACILITY, RE...</td>\\n\",\n       \"      <td>NEW YORK</td>\\n\",\n       \"      <td>OTHER</td>\\n\",\n       \"      <td>http://docquery.fec.gov/cgi-bin/fecimg/?201507...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>6/16/15 0:00</td>\\n\",\n       \"      <td>TRUMP SOHO</td>\\n\",\n       \"      <td>NY</td>\\n\",\n       \"      <td>$3,240.96</td>\\n\",\n       \"      <td>TTW - TRAVEL: LODGING</td>\\n\",\n       \"      <td>NEW YORK</td>\\n\",\n       \"      <td>TRAVEL</td>\\n\",\n       \"      <td>http://docquery.fec.gov/cgi-bin/fecimg/?201507...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>6/16/15 0:00</td>\\n\",\n       \"      <td>TRUMP TOWER COMMERCIAL LLC</td>\\n\",\n       \"      <td>NY</td>\\n\",\n       \"      <td>$9,583.33</td>\\n\",\n       \"      <td>TTW - RENT</td>\\n\",\n       \"      <td>HICKSVILLE</td>\\n\",\n       \"      <td>ADMINISTRATIVE</td>\\n\",\n       \"      <td>http://docquery.fec.gov/cgi-bin/fecimg/?201507...</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"  disbursement_date                       recipient_name recipient_state  \\\\\\n\",\n       \"0      4/30/15 0:00  TRUMP INTERNATIONAL HOTEL AND TOWER              NY   \\n\",\n       \"1       5/5/15 0:00           TRUMP TOWER COMMERCIAL LLC              NY   \\n\",\n       \"2      6/16/15 0:00                THE TRUMP CORPORATION              NY   \\n\",\n       \"3      6/16/15 0:00                           TRUMP SOHO              NY   \\n\",\n       \"4      6/16/15 0:00           TRUMP TOWER COMMERCIAL LLC              NY   \\n\",\n       \"\\n\",\n       \"  disbursement_amount                           disbursement_description  \\\\\\n\",\n       \"0          $1,380.54                               TTW - TRAVEL: LODGING   \\n\",\n       \"1          $9,583.33                                          TTW - RENT   \\n\",\n       \"2         $37,993.04   TTW  - ONE-TIME REIMBURSEMENT FOR FACILITY, RE...   \\n\",\n       \"3          $3,240.96                               TTW - TRAVEL: LODGING   \\n\",\n       \"4          $9,583.33                                          TTW - RENT   \\n\",\n       \"\\n\",\n       \"  recipient_city disbursement_purpose_category  \\\\\\n\",\n       \"0       NEW YORK                        TRAVEL   \\n\",\n       \"1     HICKSVILLE                ADMINISTRATIVE   \\n\",\n       \"2       NEW YORK                         OTHER   \\n\",\n       \"3       NEW YORK                        TRAVEL   \\n\",\n       \"4     HICKSVILLE                ADMINISTRATIVE   \\n\",\n       \"\\n\",\n       \"                                             pdf_url  Unnamed: 8  Unnamed: 9  \\\\\\n\",\n       \"0  http://docquery.fec.gov/cgi-bin/fecimg/?201507...         NaN         NaN   \\n\",\n       \"1  http://docquery.fec.gov/cgi-bin/fecimg/?201507...         NaN         NaN   \\n\",\n       \"2  http://docquery.fec.gov/cgi-bin/fecimg/?201507...         NaN         NaN   \\n\",\n       \"3  http://docquery.fec.gov/cgi-bin/fecimg/?201507...         NaN         NaN   \\n\",\n       \"4  http://docquery.fec.gov/cgi-bin/fecimg/?201507...         NaN         NaN   \\n\",\n       \"\\n\",\n       \"   Unnamed: 10  Unnamed: 11  Unnamed: 12  \\n\",\n       \"0          NaN          NaN          NaN  \\n\",\n       \"1          NaN          NaN          NaN  \\n\",\n       \"2          NaN          NaN          NaN  \\n\",\n       \"3          NaN          NaN          NaN  \\n\",\n       \"4          NaN          NaN          NaN  \"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"df = pd.read_csv('data/15-16-cycle-disbursements-to-trump-properties.csv')\\n\",\n    \"df.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"127\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Following the original post above, drop all payments labelled as RENT (but not RENTAL)\\n\",\n    \"# Also, drop everything later than October 26, when Cohen was notified the funds arrived \\n\",\n    \"# (see https://twitter.com/TheViewFromLL2/status/971771806414725130)\\n\",\n    \"payments = df.disbursement_amount[\\n\",\n    \"    ~(df.disbursement_description.str.contains('RENT') & ~df.disbursement_description.str.contains('RENTAL')) & \\n\",\n    \"    (pd.to_datetime(df.disbursement_date) < '10/27/2016')]\\n\",\n    \"len(payments)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Convert the payments column to numbers (right now it's a string) by dropping dollar signs and commas \\n\",\n    \"payments = payments.str.replace('$','').str.replace(',','').astype(float)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Following the original, drop any payment below $1000\\n\",\n    \"payments = payments[payments >= 1000]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"54\"\n      ]\n     },\n     \"execution_count\": 33,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"len(payments)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"194    13431.88\\n\",\n      \"195    18731.90\\n\",\n      \"196    79043.94\\n\",\n      \"197     8544.00\\n\",\n      \"200    10248.00\\n\",\n      \"Name: disbursement_amount, dtype: float64\\n\",\n      \"129999.72\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# these are the payments thst Simpson spotted\\n\",\n    \"paylist = [194, 195, 196, 197, 200]\\n\",\n    \"print(payments[paylist])\\n\",\n    \"print(payments[paylist].sum())\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Function for finding closest matching subset of payments\\n\",\n    \"\\n\",\n    \"To repeat the analysis, we need to know how close we can get to \\\\$130,000 by summing any possible subset of a set of payments. So we'll write that function first. This version operates by exhaustive search of all possible subsets, so it's slow but accurate.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Return subset of the numbers that match target most closely\\n\",\n    \"def closest_match(numbers, target):\\n\",\n    \"    num_numbers = len(numbers)\\n\",\n    \"    num_subsets = int(math.pow(2,num_numbers))                        \\n\",\n    \"\\n\",\n    \"    closest_miss = 1e10\\n\",\n    \"    \\n\",\n    \"    # enumerate all subsets, by counting up through the 2^n combinations\\n\",\n    \"    for which_subset in range(0, num_subsets):\\n\",\n    \"        subset = []\\n\",\n    \"        idx = 0\\n\",\n    \"        while idx<num_numbers:\\n\",\n    \"            if int(which_subset) & (1 << idx):  # if this bit is set in binary representation,\\n\",\n    \"                  subset.append(numbers[idx])   # add in the corresponding element\\n\",\n    \"            idx+=1\\n\",\n    \"\\n\",\n    \"        miss = abs(sum(subset)-target)\\n\",\n    \"        if miss < closest_miss:\\n\",\n    \"            closest_miss = miss\\n\",\n    \"            closest_subset = subset\\n\",\n    \"        \\n\",\n    \"    return closest_subset\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Sure enough, this finds the payments that Simpson marked as suspicious, when we run it on the last 10 transactions.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"best_of_10 = closest_match(payments.tail(10).values, 130000)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[13431.879999999999, 18731.900000000001, 79043.940000000002, 8544.0, 10248.0]\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"best_of_10\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"129999.72\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"sum(best_of_10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"It finds an even closer match on last 20\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"best_of_20 = closest_match(payments.tail(20).values, 130000)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[7173.6000000000004,\\n\",\n       \" 1127.03,\\n\",\n       \" 1021.4299999999999,\\n\",\n       \" 2172.4499999999998,\\n\",\n       \" 1343.0,\\n\",\n       \" 13431.879999999999,\\n\",\n       \" 79043.940000000002,\\n\",\n       \" 8544.0,\\n\",\n       \" 16142.610000000001]\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"best_of_20\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"129999.94\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"sum(best_of_20)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### A faster search \\n\",\n    \"Searching 2^20 subsets takes several seconds, and we want to run this thousands of times to do our simulation over random sets of payments. So for performance reasons, we're going to modify this function so that it just finds the first subset within threshold of the target -- not the closest. This lets it bail very much quicker, in most cases, and it tells us all we need to know to evaluate any given set of payments: is there *any* subset that gets sufficiently close?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Determine if there is a subset of the numbers that sum to within threshold of the target\\n\",\n    \"# Returns sum within threshold if a matching subset is found, else False.\\n\",\n    \"def threshold_match(numbers, target, threshold):\\n\",\n    \"    num_numbers = len(numbers)\\n\",\n    \"    num_subsets = int(math.pow(2,num_numbers))                        \\n\",\n    \"    \\n\",\n    \"    # enumerate all subsets, by counting up through the 2^n combinations\\n\",\n    \"    for which_subset in range(0, num_subsets):\\n\",\n    \"        sum = 0\\n\",\n    \"        idx = 0\\n\",\n    \"        while idx<num_numbers:\\n\",\n    \"            if int(which_subset) & (1 << idx):  # if this bit is set in binary representation,\\n\",\n    \"                  sum += numbers[idx]           # add in the corresponding element\\n\",\n    \"            idx+=1\\n\",\n    \"\\n\",\n    \"        # if we find a close sum, we are done early\\n\",\n    \"        if abs(sum-target) <= threshold:\\n\",\n    \"            return sum\\n\",\n    \"        \\n\",\n    \"    return False\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This should find the identified payments again\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"129999.72\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"threshold_match(payments.tail(10).values, 130000, 0.28)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And just to prove it's working, there isn't any set of payments within 10 that comes closer\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"False\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"threshold_match(payments.tail(10).values, 130000, 0.27)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### The main probabilistic analysis\\n\",\n    \"\\n\",\n    \"Now we're going to replicate the analysis in the post and look at transaction sets of different sizes. They analyzed 10 and 15 within the post, but we'll also look at 20 -- and see that getting close to \\\\$130,000 is dramatically more likely than when we only look at 15 items.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# subset_size: how large a group of random campaign finance payments are we looking through?\\n\",\n    \"# dollar_threshold: how close to $130,000 do we need to get to count it as a hit?\\n\",\n    \"# num_samaples: increase this for more accurate estimation of the probability\\n\",\n    \"def probability_of_closeness(subset_size, dollar_threshold, num_samples):\\n\",\n    \"    # how many sets of payments that get within dollar_threshold have we found?\\n\",\n    \"    hits = 0\\n\",\n    \"\\n\",\n    \"    # generate num_samples different sets of payments by sampling from all payments\\n\",\n    \"    for i in range(0, num_samples):\\n\",\n    \"        # pick subset_size numbers randomly from payments\\n\",\n    \"        subset = payments.sample(subset_size)\\n\",\n    \"\\n\",\n    \"        # Is there a close match to $130,000?\\n\",\n    \"        close_sum = threshold_match(subset.values, 130000, dollar_threshold)\\n\",\n    \"\\n\",\n    \"        # Count \\\"hits\\\", printing out the close sums we find\\n\",\n    \"        if close_sum:\\n\",\n    \"            print(f'{i}: {close_sum}')\\n\",\n    \"            hits += 1\\n\",\n    \"\\n\",\n    \"    # print the fraction of hits\\n\",\n    \"    return hits/num_samples\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Armed with this function, we'll start by repeating the calculation with 10 payments, as the post does. We'll calculate the probability of getting within \\\\$1 of \\\\$130,000, taking 1000 samples for accuracy (as only 2 or 3 will get this close.)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"495: 129999.54000000001\\n\",\n      \"642: 130000.54999999999\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"p10 = probability_of_closeness(10, 1, 1000)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.002\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"p10\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We've replicated the results. Probability of getting within \\\\$1 is 0.003, which agrees with the chart in the post (showing 0.001 for \\\\$0.24 and 0.005 for \\\\$1.44)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"13: 130000.61000000002\\n\",\n      \"32: 130000.45999999999\\n\",\n      \"37: 130000.55\\n\",\n      \"41: 129999.93\\n\",\n      \"54: 130000.97000000002\\n\",\n      \"56: 129999.59\\n\",\n      \"61: 129999.16\\n\",\n      \"65: 129999.97\\n\",\n      \"66: 130000.62000000001\\n\",\n      \"67: 130000.14\\n\",\n      \"68: 129999.56\\n\",\n      \"70: 130000.48\\n\",\n      \"73: 129999.18000000001\\n\",\n      \"76: 130000.65000000001\\n\",\n      \"79: 129999.24000000002\\n\",\n      \"89: 130000.14\\n\",\n      \"100: 130000.83\\n\",\n      \"114: 129999.18000000002\\n\",\n      \"131: 129999.87\\n\",\n      \"150: 129999.48999999999\\n\",\n      \"162: 130000.58\\n\",\n      \"169: 130000.28\\n\",\n      \"183: 130000.6\\n\",\n      \"184: 129999.38\\n\",\n      \"194: 129999.24\\n\",\n      \"216: 130000.94\\n\",\n      \"217: 129999.91\\n\",\n      \"219: 130000.81000000001\\n\",\n      \"220: 129999.11000000002\\n\",\n      \"234: 129999.36\\n\",\n      \"242: 129999.22\\n\",\n      \"249: 130000.91\\n\",\n      \"262: 129999.55000000002\\n\",\n      \"264: 129999.72\\n\",\n      \"273: 130000.38\\n\",\n      \"277: 130000.62\\n\",\n      \"282: 129999.99\\n\",\n      \"286: 129999.37000000001\\n\",\n      \"291: 129999.91\\n\",\n      \"297: 130000.0\\n\",\n      \"301: 130000.1\\n\",\n      \"310: 129999.31999999999\\n\",\n      \"311: 130000.86\\n\",\n      \"314: 130000.24\\n\",\n      \"330: 129999.98\\n\",\n      \"335: 129999.01\\n\",\n      \"336: 129999.9\\n\",\n      \"344: 130000.81999999999\\n\",\n      \"349: 129999.37\\n\",\n      \"356: 129999.67000000001\\n\",\n      \"360: 130000.40000000001\\n\",\n      \"367: 130000.48000000001\\n\",\n      \"377: 129999.52000000002\\n\",\n      \"383: 129999.31000000001\\n\",\n      \"393: 130000.83000000002\\n\",\n      \"416: 129999.82\\n\",\n      \"421: 130000.37\\n\",\n      \"426: 130000.73000000001\\n\",\n      \"429: 129999.71999999999\\n\",\n      \"431: 130000.13999999998\\n\",\n      \"435: 130000.67000000001\\n\",\n      \"464: 129999.97\\n\",\n      \"465: 129999.54000000001\\n\",\n      \"476: 129999.13\\n\",\n      \"479: 130000.17\\n\",\n      \"483: 130000.44\\n\",\n      \"484: 130001.0\\n\",\n      \"504: 129999.54\\n\",\n      \"525: 130000.12\\n\",\n      \"528: 129999.37000000001\\n\",\n      \"532: 130000.8\\n\",\n      \"534: 130000.68000000001\\n\",\n      \"544: 129999.77\\n\",\n      \"558: 129999.50000000003\\n\",\n      \"561: 130000.1\\n\",\n      \"565: 129999.88\\n\",\n      \"570: 129999.44000000002\\n\",\n      \"584: 129999.90000000002\\n\",\n      \"596: 130000.55\\n\",\n      \"609: 130000.02\\n\",\n      \"623: 129999.51000000001\\n\",\n      \"639: 129999.24000000002\\n\",\n      \"645: 130000.25\\n\",\n      \"646: 129999.19\\n\",\n      \"650: 130000.41\\n\",\n      \"653: 130000.93\\n\",\n      \"665: 130000.70999999999\\n\",\n      \"670: 129999.68000000001\\n\",\n      \"705: 129999.70999999999\\n\",\n      \"708: 130000.99\\n\",\n      \"712: 130000.67000000001\\n\",\n      \"730: 130000.56999999999\\n\",\n      \"732: 129999.11\\n\",\n      \"737: 129999.29000000001\\n\",\n      \"748: 129999.71\\n\",\n      \"751: 129999.82\\n\",\n      \"759: 129999.16\\n\",\n      \"760: 130000.67000000001\\n\",\n      \"761: 130000.0\\n\",\n      \"766: 130000.06999999999\\n\",\n      \"787: 130000.19\\n\",\n      \"795: 129999.75000000001\\n\",\n      \"807: 130000.09000000001\\n\",\n      \"814: 130000.33000000002\\n\",\n      \"819: 129999.39\\n\",\n      \"823: 129999.25000000001\\n\",\n      \"826: 130000.98000000001\\n\",\n      \"827: 129999.57\\n\",\n      \"847: 129999.78999999998\\n\",\n      \"861: 130000.40000000001\\n\",\n      \"869: 129999.73999999999\\n\",\n      \"873: 129999.39\\n\",\n      \"889: 130000.47\\n\",\n      \"896: 130000.11\\n\",\n      \"897: 129999.0\\n\",\n      \"899: 129999.78\\n\",\n      \"901: 130000.98000000001\\n\",\n      \"903: 129999.48000000001\\n\",\n      \"904: 130000.14\\n\",\n      \"909: 130000.16\\n\",\n      \"924: 129999.25\\n\",\n      \"929: 129999.01\\n\",\n      \"939: 129999.71000000002\\n\",\n      \"950: 129999.49\\n\",\n      \"952: 129999.26999999999\\n\",\n      \"960: 130000.22\\n\",\n      \"969: 130000.41999999998\\n\",\n      \"977: 130000.45999999999\\n\",\n      \"984: 129999.35\\n\",\n      \"997: 129999.73\\n\",\n      \"999: 130000.22\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"p15 = probability_of_closeness(15, 1, 1000)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.131\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"p15\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And now for the main event: how likely is it that we can get within \\\\$1 of \\\\$130,000 if we take 20 random payments? It turns out, pretty likely. \\n\",\n    \"\\n\",\n    \"1000 samples of size 20 takes about an hour to run, so we'll use only 100 this time. It's no problem here as hits are very common.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"0: 129999.59000000001\\n\",\n      \"3: 130000.86\\n\",\n      \"5: 130000.45\\n\",\n      \"6: 130000.74\\n\",\n      \"7: 129999.71999999999\\n\",\n      \"9: 129999.0\\n\",\n      \"10: 129999.62\\n\",\n      \"11: 130000.85\\n\",\n      \"12: 129999.86\\n\",\n      \"13: 130000.9\\n\",\n      \"14: 130000.98000000001\\n\",\n      \"16: 130000.67000000001\\n\",\n      \"18: 129999.99\\n\",\n      \"19: 130000.97999999998\\n\",\n      \"20: 129999.36\\n\",\n      \"21: 130000.17\\n\",\n      \"22: 130000.43\\n\",\n      \"24: 130000.33999999998\\n\",\n      \"25: 129999.58000000002\\n\",\n      \"26: 129999.06000000001\\n\",\n      \"27: 129999.66999999998\\n\",\n      \"28: 129999.96\\n\",\n      \"29: 130000.18\\n\",\n      \"30: 129999.95999999998\\n\",\n      \"32: 130000.39\\n\",\n      \"33: 130000.19\\n\",\n      \"34: 130000.04000000001\\n\",\n      \"35: 129999.82999999999\\n\",\n      \"36: 129999.28\\n\",\n      \"37: 130000.86000000002\\n\",\n      \"39: 129999.82\\n\",\n      \"40: 129999.76\\n\",\n      \"41: 129999.10999999999\\n\",\n      \"42: 130000.68\\n\",\n      \"43: 130000.94\\n\",\n      \"44: 130000.71\\n\",\n      \"45: 130000.51999999999\\n\",\n      \"46: 130000.70000000001\\n\",\n      \"47: 130000.78\\n\",\n      \"49: 129999.07\\n\",\n      \"50: 130000.1\\n\",\n      \"51: 130000.71\\n\",\n      \"53: 129999.05999999998\\n\",\n      \"54: 129999.04\\n\",\n      \"56: 129999.52\\n\",\n      \"57: 129999.61000000002\\n\",\n      \"58: 130000.72\\n\",\n      \"59: 130000.29\\n\",\n      \"60: 130000.99\\n\",\n      \"61: 129999.75\\n\",\n      \"62: 130000.99\\n\",\n      \"63: 130000.05\\n\",\n      \"64: 130000.16999999998\\n\",\n      \"65: 130001.0\\n\",\n      \"66: 129999.97\\n\",\n      \"67: 129999.75\\n\",\n      \"68: 129999.98\\n\",\n      \"70: 129999.99\\n\",\n      \"71: 129999.45\\n\",\n      \"72: 129999.06\\n\",\n      \"74: 130000.79000000001\\n\",\n      \"75: 129999.90000000001\\n\",\n      \"76: 129999.6\\n\",\n      \"77: 129999.67000000001\\n\",\n      \"78: 130000.83000000002\\n\",\n      \"79: 130000.01999999999\\n\",\n      \"80: 129999.20000000001\\n\",\n      \"81: 130000.14\\n\",\n      \"82: 130000.81999999999\\n\",\n      \"83: 130000.90000000001\\n\",\n      \"86: 129999.37000000002\\n\",\n      \"87: 130000.34\\n\",\n      \"88: 129999.68999999999\\n\",\n      \"89: 129999.52\\n\",\n      \"90: 129999.05\\n\",\n      \"91: 129999.7\\n\",\n      \"92: 129999.68000000001\\n\",\n      \"93: 129999.56000000001\\n\",\n      \"94: 129999.47\\n\",\n      \"95: 130000.62\\n\",\n      \"96: 130000.69\\n\",\n      \"98: 129999.09000000001\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"p20 = probability_of_closeness(20, 1, 100)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.82\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"p20\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is a major challenge for the argument in the post. Having a subset of the payments sum to within a dollar of \\\\$130,000 is very unlikely if we only look at the last 10 payments (p=0.003, or 0.3%), but not that unlikely if we look at the last 15 (p=0.131, or 13.1%) and a safe bet if you look at the last 20 (p=0.82, or 82%). Why did the authors of the analysis choose 10 and not 15 or 20? The result of the analysis is very sensitive to this \\\"magic\\\" number.\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-6/week-6-1-election-prediction-empty.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Week 6-1: Election Prediction through simulation\\n\",\n    \"\\n\",\n    \"This is the first of two classes on election prediction. We'll be using simulation throughout to build our model.\\n\",\n    \"\\n\",\n    \"All data is downloaded from [Huffington Post Pollster](http://elections.huffingtonpost.com/pollster#historical-charts)\\n\",\n    \"\\n\",\n    \"Further references for your enjoyment:\\n\",\n    \"\\n\",\n    \"- [The Real Story of 2016](https://fivethirtyeight.com/features/the-real-story-of-2016/) - Fivethirtyeight\\n\",\n    \"- Buzzfeed's post-election [forecast grades](https://www.buzzfeednews.com/article/jsvine/2016-election-forecast-grades)\\n\",\n    \"- [Putting the Polling Miss of the 2016 Election in Perspective](https://www.nytimes.com/interactive/2016/11/13/upshot/putting-the-polling-miss-of-2016-in-perspective.html) - The Upshot\\n\",\n    \"- [After 2016, Can We Ever Trust the Polls Again?](https://newrepublic.com/article/139158/2016-can-ever-trust-polls-again) - The New Republic \\n\",\n    \"\\n\",\n    \"And finally, the single biggest reason that the simple election prediction model in this file misses so badly (predicting Clinton's chances in the high 90s): it does not take into account the [correlations between polling errors](https://www.quantamagazine.org/why-nate-silver-sam-wang-and-everyone-else-were-wrong-part-2-20161111/) in different states. If we fix this one factor, even our simple model will give Trump substantially higher chances.\\n\",\n    \"\\n\",\n    \"To see what goes into a much more realistic election model, check out this [notebook recreation of 538's 2012 model](http://nbviewer.jupyter.org/github/jseabold/538model/blob/master/silver_model.ipynb) by by Skipper Seabold.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 1: Simulating one poll\\n\",\n    \"\\n\",\n    \"Here we'll produce simulated election outcomes from a single poll. We are uncritically taking the poll results as an unbiased inidicator of results. This assumes that the people who are polled (\\\"likely voters\\\") are a good representation of the people who actually vote. It is possible to adjust these sorts of factors later, but let's begin with the basics.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import math\\n\",\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Set a random seed so this whole notebook becomes deterministic (for teaching purposes)\\n\",\n    \"np.random.seed(999)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Trump</th>\\n\",\n       \"      <th>Clinton</th>\\n\",\n       \"      <th>Johnson</th>\\n\",\n       \"      <th>Other</th>\\n\",\n       \"      <th>Undecided</th>\\n\",\n       \"      <th>poll_slug</th>\\n\",\n       \"      <th>survey_house</th>\\n\",\n       \"      <th>start_date</th>\\n\",\n       \"      <th>end_date</th>\\n\",\n       \"      <th>question_text</th>\\n\",\n       \"      <th>sample_subpopulation</th>\\n\",\n       \"      <th>observations</th>\\n\",\n       \"      <th>margin_of_error</th>\\n\",\n       \"      <th>mode</th>\\n\",\n       \"      <th>partisanship</th>\\n\",\n       \"      <th>partisan_affiliation</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>41.0</td>\\n\",\n       \"      <td>45.0</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>2.0</td>\\n\",\n       \"      <td>8.0</td>\\n\",\n       \"      <td>insights-west-26812</td>\\n\",\n       \"      <td>Insights West</td>\\n\",\n       \"      <td>2016-11-04</td>\\n\",\n       \"      <td>2016-11-07</td>\\n\",\n       \"      <td>As you may know, there will be a presidential ...</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>940.0</td>\\n\",\n       \"      <td>3.2</td>\\n\",\n       \"      <td>Internet</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>6.0</td>\\n\",\n       \"      <td>89.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>insights-west-26812</td>\\n\",\n       \"      <td>Insights West</td>\\n\",\n       \"      <td>2016-11-04</td>\\n\",\n       \"      <td>2016-11-07</td>\\n\",\n       \"      <td>As you may know, there will be a presidential ...</td>\\n\",\n       \"      <td>Likely Voters - Democrat</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Internet</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>82.0</td>\\n\",\n       \"      <td>7.0</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"      <td>2.0</td>\\n\",\n       \"      <td>6.0</td>\\n\",\n       \"      <td>insights-west-26812</td>\\n\",\n       \"      <td>Insights West</td>\\n\",\n       \"      <td>2016-11-04</td>\\n\",\n       \"      <td>2016-11-07</td>\\n\",\n       \"      <td>As you may know, there will be a presidential ...</td>\\n\",\n       \"      <td>Likely Voters - Republican</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Internet</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>38.0</td>\\n\",\n       \"      <td>43.0</td>\\n\",\n       \"      <td>8.0</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>7.0</td>\\n\",\n       \"      <td>insights-west-26812</td>\\n\",\n       \"      <td>Insights West</td>\\n\",\n       \"      <td>2016-11-04</td>\\n\",\n       \"      <td>2016-11-07</td>\\n\",\n       \"      <td>As you may know, there will be a presidential ...</td>\\n\",\n       \"      <td>Likely Voters - independent</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Internet</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>43.0</td>\\n\",\n       \"      <td>41.0</td>\\n\",\n       \"      <td>7.0</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>5.0</td>\\n\",\n       \"      <td>ibd-tipp-26811</td>\\n\",\n       \"      <td>IBD/TIPP</td>\\n\",\n       \"      <td>2016-11-04</td>\\n\",\n       \"      <td>2016-11-07</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>1107.0</td>\\n\",\n       \"      <td>3.1</td>\\n\",\n       \"      <td>Live Phone</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   Trump  Clinton  Johnson  Other  Undecided            poll_slug  \\\\\\n\",\n       \"0   41.0     45.0      4.0    2.0        8.0  insights-west-26812   \\n\",\n       \"1    6.0     89.0      1.0    0.0        4.0  insights-west-26812   \\n\",\n       \"2   82.0      7.0      3.0    2.0        6.0  insights-west-26812   \\n\",\n       \"3   38.0     43.0      8.0    4.0        7.0  insights-west-26812   \\n\",\n       \"4   43.0     41.0      7.0    4.0        5.0       ibd-tipp-26811   \\n\",\n       \"\\n\",\n       \"    survey_house  start_date    end_date  \\\\\\n\",\n       \"0  Insights West  2016-11-04  2016-11-07   \\n\",\n       \"1  Insights West  2016-11-04  2016-11-07   \\n\",\n       \"2  Insights West  2016-11-04  2016-11-07   \\n\",\n       \"3  Insights West  2016-11-04  2016-11-07   \\n\",\n       \"4       IBD/TIPP  2016-11-04  2016-11-07   \\n\",\n       \"\\n\",\n       \"                                       question_text  \\\\\\n\",\n       \"0  As you may know, there will be a presidential ...   \\n\",\n       \"1  As you may know, there will be a presidential ...   \\n\",\n       \"2  As you may know, there will be a presidential ...   \\n\",\n       \"3  As you may know, there will be a presidential ...   \\n\",\n       \"4                                                NaN   \\n\",\n       \"\\n\",\n       \"          sample_subpopulation  observations  margin_of_error        mode  \\\\\\n\",\n       \"0                Likely Voters         940.0              3.2    Internet   \\n\",\n       \"1     Likely Voters - Democrat           NaN              NaN    Internet   \\n\",\n       \"2   Likely Voters - Republican           NaN              NaN    Internet   \\n\",\n       \"3  Likely Voters - independent           NaN              NaN    Internet   \\n\",\n       \"4                Likely Voters        1107.0              3.1  Live Phone   \\n\",\n       \"\\n\",\n       \"  partisanship partisan_affiliation  \\n\",\n       \"0  Nonpartisan                 None  \\n\",\n       \"1  Nonpartisan                 None  \\n\",\n       \"2  Nonpartisan                 None  \\n\",\n       \"3  Nonpartisan                 None  \\n\",\n       \"4  Nonpartisan                 None  \"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Load national polling data. It's a TSV file, so we have to tell read_csv it's separated by tabs\\n\",\n    \"uspolls = pd.read_csv('data/US.tsv', sep='\\\\t')\\n\",\n    \"uspolls.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"513\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# keep only polls of \\\"likely voters\\\" (as opposed to registered voters, or republicans/democracts)\\n\",\n    \"uspolls = uspolls[uspolls.sample_subpopulation == 'Likely Voters']\\n\",\n    \"len(uspolls)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"388\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# We need a margin of error to do our simulation, so drop any rows that don't have it\\n\",\n    \"uspolls=uspolls[~pd.isnull(uspolls.margin_of_error)].reset_index(drop=True)\\n\",\n    \"len(uspolls)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There are lot of polls here! Let's pick just one, near the end of the polling period (just before the election) and look at the outcomes it implies.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Trump</th>\\n\",\n       \"      <th>Clinton</th>\\n\",\n       \"      <th>Johnson</th>\\n\",\n       \"      <th>Other</th>\\n\",\n       \"      <th>Undecided</th>\\n\",\n       \"      <th>poll_slug</th>\\n\",\n       \"      <th>survey_house</th>\\n\",\n       \"      <th>start_date</th>\\n\",\n       \"      <th>end_date</th>\\n\",\n       \"      <th>question_text</th>\\n\",\n       \"      <th>sample_subpopulation</th>\\n\",\n       \"      <th>observations</th>\\n\",\n       \"      <th>margin_of_error</th>\\n\",\n       \"      <th>mode</th>\\n\",\n       \"      <th>partisanship</th>\\n\",\n       \"      <th>partisan_affiliation</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>383</th>\\n\",\n       \"      <td>47.0</td>\\n\",\n       \"      <td>43.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>11.0</td>\\n\",\n       \"      <td>emerson-college-polling-society-22699</td>\\n\",\n       \"      <td>Emerson College Polling Society</td>\\n\",\n       \"      <td>2015-09-05</td>\\n\",\n       \"      <td>2015-09-08</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>955.0</td>\\n\",\n       \"      <td>3.1</td>\\n\",\n       \"      <td>Automated Phone</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>384</th>\\n\",\n       \"      <td>44.0</td>\\n\",\n       \"      <td>46.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>11.0</td>\\n\",\n       \"      <td>ppp-d-22654</td>\\n\",\n       \"      <td>PPP (D)</td>\\n\",\n       \"      <td>2015-08-28</td>\\n\",\n       \"      <td>2015-08-30</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>1254.0</td>\\n\",\n       \"      <td>2.8</td>\\n\",\n       \"      <td>IVR/Online</td>\\n\",\n       \"      <td>Pollster</td>\\n\",\n       \"      <td>Dem</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>385</th>\\n\",\n       \"      <td>40.0</td>\\n\",\n       \"      <td>49.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>12.0</td>\\n\",\n       \"      <td>emerson-college-polling-society-22537</td>\\n\",\n       \"      <td>Emerson College Polling Society</td>\\n\",\n       \"      <td>2015-07-26</td>\\n\",\n       \"      <td>2015-07-28</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>950.0</td>\\n\",\n       \"      <td>3.4</td>\\n\",\n       \"      <td>Automated Phone</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>386</th>\\n\",\n       \"      <td>37.0</td>\\n\",\n       \"      <td>50.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>13.0</td>\\n\",\n       \"      <td>ppp-d-22415</td>\\n\",\n       \"      <td>PPP (D)</td>\\n\",\n       \"      <td>2015-07-20</td>\\n\",\n       \"      <td>2015-07-21</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>1087.0</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"      <td>IVR/Online</td>\\n\",\n       \"      <td>Pollster</td>\\n\",\n       \"      <td>Dem</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>387</th>\\n\",\n       \"      <td>34.0</td>\\n\",\n       \"      <td>51.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>16.0</td>\\n\",\n       \"      <td>suffolk-usa-today-22380</td>\\n\",\n       \"      <td>Suffolk/USA Today</td>\\n\",\n       \"      <td>2015-07-09</td>\\n\",\n       \"      <td>2015-07-12</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>1000.0</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"      <td>Live Phone</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"     Trump  Clinton  Johnson  Other  Undecided  \\\\\\n\",\n       \"383   47.0     43.0      NaN    NaN       11.0   \\n\",\n       \"384   44.0     46.0      NaN    NaN       11.0   \\n\",\n       \"385   40.0     49.0      NaN    NaN       12.0   \\n\",\n       \"386   37.0     50.0      NaN    NaN       13.0   \\n\",\n       \"387   34.0     51.0      NaN    NaN       16.0   \\n\",\n       \"\\n\",\n       \"                                 poll_slug                     survey_house  \\\\\\n\",\n       \"383  emerson-college-polling-society-22699  Emerson College Polling Society   \\n\",\n       \"384                            ppp-d-22654                          PPP (D)   \\n\",\n       \"385  emerson-college-polling-society-22537  Emerson College Polling Society   \\n\",\n       \"386                            ppp-d-22415                          PPP (D)   \\n\",\n       \"387                suffolk-usa-today-22380                Suffolk/USA Today   \\n\",\n       \"\\n\",\n       \"     start_date    end_date question_text sample_subpopulation  observations  \\\\\\n\",\n       \"383  2015-09-05  2015-09-08           NaN        Likely Voters         955.0   \\n\",\n       \"384  2015-08-28  2015-08-30           NaN        Likely Voters        1254.0   \\n\",\n       \"385  2015-07-26  2015-07-28           NaN        Likely Voters         950.0   \\n\",\n       \"386  2015-07-20  2015-07-21           NaN        Likely Voters        1087.0   \\n\",\n       \"387  2015-07-09  2015-07-12           NaN        Likely Voters        1000.0   \\n\",\n       \"\\n\",\n       \"     margin_of_error             mode partisanship partisan_affiliation  \\n\",\n       \"383              3.1  Automated Phone  Nonpartisan                 None  \\n\",\n       \"384              2.8       IVR/Online     Pollster                  Dem  \\n\",\n       \"385              3.4  Automated Phone  Nonpartisan                 None  \\n\",\n       \"386              3.0       IVR/Online     Pollster                  Dem  \\n\",\n       \"387              3.0       Live Phone  Nonpartisan                 None  \"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"uspolls.tail()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We will pick a poll which showed a close race, because it better demonstrates how the margin of error works.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Trump                              44\\n\",\n       \"Clinton                            46\\n\",\n       \"Johnson                           NaN\\n\",\n       \"Other                             NaN\\n\",\n       \"Undecided                          11\\n\",\n       \"poll_slug                 ppp-d-22654\\n\",\n       \"survey_house                  PPP (D)\\n\",\n       \"start_date                 2015-08-28\\n\",\n       \"end_date                   2015-08-30\\n\",\n       \"question_text                     NaN\\n\",\n       \"sample_subpopulation    Likely Voters\\n\",\n       \"observations                     1254\\n\",\n       \"margin_of_error                   2.8\\n\",\n       \"mode                       IVR/Online\\n\",\n       \"partisanship                 Pollster\\n\",\n       \"partisan_affiliation              Dem\\n\",\n       \"Name: 384, dtype: object\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"poll = uspolls.iloc[384]\\n\",\n    \"poll\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The poll results and the margin of error define a probability distribution of \\\"true\\\" survey results -- that is, the result that the pollster would get if they could ask every single \\\"likely voter\\\" in the country. This distribution is a \\\"normal\\\" distribution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# We reduce the problem to the difference between the two poll results, because that's what actually matters\\n\",\n    \"mean = 3\\n\",\n    \"\\n\",\n    \"# Some subtlety in calculating the stddev from the margin of error (MOE)\\n\",\n    \"#  - MOE is reported as 95% width, so we'd normally divide by 1.96 for standard deviation\\n\",\n    \"#  - But we want the stddev for a difference between two poll questions which are not independent.\\n\",\n    \"#    One more vote for Clinton is (almost always) one less vote for Trump. We need to multiply by nearly 2.\\n\",\n    \"#  - These almost perfectly cancel out, and stddev of the difference is near exactly MOE\\n\",\n    \"# See http://abcnews.go.com/images/PollingUnit/MOEFranklin.pdf\\n\",\n    \"stddev = poll.margin_of_error\\n\",\n    \"\\n\",\n    \"# For more general discussion of the MOE see \\n\",\n    \"# http://www.pewresearch.org/fact-tank/2016/09/08/understanding-the-margin-of-error-in-election-polls/\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we can take samples from a normal distribution with this mean and standard deviation, to simulate what the underlying \\\"true\\\" voting pattern would be. For example,\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3.356041963171183\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"np.random.normal(mean, stddev)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To interpret this number, recall that we're simulating the Clinton-Trump difference. So positive means it goes for Clinton, who our poll says is ahead 46-44. Given this, we would expect more of the simulation results to go for Clinton. Let's make 1000 and see what happens.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\nAElq1P8B61igkEQuzTQAAAAASUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.hist(np.random.normal(mean, stddev, 1000), bins=20);\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Sure enough, the center of this distribution is at 2, the lead given by the polls. But many values are negative as well, meaning that Clinton doesn't always win (again, assuming the actual voters splt 46-44, as this poll suggests.)\\n\",\n    \"\\n\",\n    \"Let's see how often Trump wins, according to this model\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.14599999999999999\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(np.random.normal(mean, stddev, 1000) < 0).mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"So about 24% according to this model. This makes sense becuase the margin of error (2.8%) is pretty wide relative to the difference between the polls (2%) \\n\",\n    \"\\n\",\n    \"If we run the simulation again, we'll get slightly different results.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\nAAAASUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"results = np.random.normal(mean, stddev, 1000)\\n\",\n    \"plt.hist(results, bins=20);\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.14599999999999999\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(results < 0).mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The more samples we take, the less variation we'll see in this number. To demonstrate this, let's plot a histogram of the results for various numbers of samples.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.hist(np.random.normal(mean, stddev, 100), bins=20, density=True)\\n\",\n    \"plt.title('100 samples')\\n\",\n    \"plt.show()\\n\",\n    \"plt.hist(np.random.normal(mean, stddev, 1000), bins=20, density=True)\\n\",\n    \"plt.title('1,000 samples')\\n\",\n    \"plt.show()\\n\",\n    \"plt.hist(np.random.normal(mean, stddev, 10000), bins=20, density=True)\\n\",\n    \"plt.title('10,000 samples')\\n\",\n    \"plt.show()\\n\",\n    \"plt.hist(np.random.normal(mean, stddev, 100000), bins=20, density=True)\\n\",\n    \"plt.title('100,000 samples')\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can get a reliable win percentage by counting the wins in a large sample:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 2: The Electoral college\\n\",\n    \"This shows how to interpret the uncertainty in a single poll -- at least the uncertainty in the margin of error. There are two major directions to go from here:\\n\",\n    \"\\n\",\n    \"1) In a real election prediction model, we would combine all the polls according to a weighted average of poll reliability. What \\\"reliability\\\" really means is how well the poll matched (predicted) previous election results. We can figure out the optimal combination of poll weights using, for example, linear regression.\\n\",\n    \"\\n\",\n    \"2) The US uses an electoral college system, where each state contributes a fixed number of votes (out of a total of 538). We definitely need to simulate that to get anything like a reasonable election prediction.\\n\",\n    \"\\n\",\n    \"So for the next step, let's see how to combine polls in the electoral college.\\n\",\n    \"\\n\",\n    \"Our first task will be to pick out one poll in each state. We'll use the last dated \\\"Likely Voter\\\" poll.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Load a CSV of electoral college votes for each state. \\n\",\n    \"# Ref: https://www.archives.gov/federal-register/electoral-college/allocation.html\\n\",\n    \"states = pd.read_csv('data/states.csv')\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>name</th>\\n\",\n       \"      <th>abbr</th>\\n\",\n       \"      <th>electoral_votes</th>\\n\",\n       \"      <th>Trump</th>\\n\",\n       \"      <th>Clinton</th>\\n\",\n       \"      <th>margin_of_error</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>abbr</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AL</th>\\n\",\n       \"      <td>Alabama</td>\\n\",\n       \"      <td>AL</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AK</th>\\n\",\n       \"      <td>Alaska</td>\\n\",\n       \"      <td>AK</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AZ</th>\\n\",\n       \"      <td>Arizona</td>\\n\",\n       \"      <td>AZ</td>\\n\",\n       \"      <td>11</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AR</th>\\n\",\n       \"      <td>Arkansas</td>\\n\",\n       \"      <td>AR</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>CA</th>\\n\",\n       \"      <td>California</td>\\n\",\n       \"      <td>CA</td>\\n\",\n       \"      <td>55</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>CO</th>\\n\",\n       \"      <td>Colorado</td>\\n\",\n       \"      <td>CO</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>CT</th>\\n\",\n       \"      <td>Connecticut</td>\\n\",\n       \"      <td>CT</td>\\n\",\n       \"      <td>7</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>DE</th>\\n\",\n       \"      <td>Delaware</td>\\n\",\n       \"      <td>DE</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>FL</th>\\n\",\n       \"      <td>Florida</td>\\n\",\n       \"      <td>FL</td>\\n\",\n       \"      <td>29</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>GA</th>\\n\",\n       \"      <td>Georgia</td>\\n\",\n       \"      <td>GA</td>\\n\",\n       \"      <td>16</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>HI</th>\\n\",\n       \"      <td>Hawaii</td>\\n\",\n       \"      <td>HI</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>ID</th>\\n\",\n       \"      <td>Idaho</td>\\n\",\n       \"      <td>ID</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>IL</th>\\n\",\n       \"      <td>Illinois</td>\\n\",\n       \"      <td>IL</td>\\n\",\n       \"      <td>20</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>IN</th>\\n\",\n       \"      <td>Indiana</td>\\n\",\n       \"      <td>IN</td>\\n\",\n       \"      <td>11</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>IA</th>\\n\",\n       \"      <td>Iowa</td>\\n\",\n       \"      <td>IA</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>KS</th>\\n\",\n       \"      <td>Kansas</td>\\n\",\n       \"      <td>KS</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>KY</th>\\n\",\n       \"      <td>Kentucky</td>\\n\",\n       \"      <td>KY</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>LA</th>\\n\",\n       \"      <td>Louisiana</td>\\n\",\n       \"      <td>LA</td>\\n\",\n       \"      <td>8</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>ME</th>\\n\",\n       \"      <td>Maine</td>\\n\",\n       \"      <td>ME</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>MD</th>\\n\",\n       \"      <td>Maryland</td>\\n\",\n       \"      <td>MD</td>\\n\",\n       \"      <td>10</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>MA</th>\\n\",\n       \"      <td>Massachusetts</td>\\n\",\n       \"      <td>MA</td>\\n\",\n       \"      <td>11</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>MI</th>\\n\",\n       \"      <td>Michigan</td>\\n\",\n       \"      <td>MI</td>\\n\",\n       \"      <td>16</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>MN</th>\\n\",\n       \"      <td>Minnesota</td>\\n\",\n       \"      <td>MN</td>\\n\",\n       \"      <td>10</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>MS</th>\\n\",\n       \"      <td>Mississippi</td>\\n\",\n       \"      <td>MS</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>MO</th>\\n\",\n       \"      <td>Missouri</td>\\n\",\n       \"      <td>MO</td>\\n\",\n       \"      <td>10</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>MT</th>\\n\",\n       \"      <td>Montana</td>\\n\",\n       \"      <td>MT</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>NE</th>\\n\",\n       \"      <td>Nebraska</td>\\n\",\n       \"      <td>NE</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>NV</th>\\n\",\n       \"      <td>Nevada</td>\\n\",\n       \"      <td>NV</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>NH</th>\\n\",\n       \"      <td>New Hampshire</td>\\n\",\n       \"      <td>NH</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>NJ</th>\\n\",\n       \"      <td>New Jersey</td>\\n\",\n       \"      <td>NJ</td>\\n\",\n       \"      <td>14</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>NM</th>\\n\",\n       \"      <td>New Mexico</td>\\n\",\n       \"      <td>NM</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>NY</th>\\n\",\n       \"      <td>New York</td>\\n\",\n       \"      <td>NY</td>\\n\",\n       \"      <td>29</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>NC</th>\\n\",\n       \"      <td>North Carolina</td>\\n\",\n       \"      <td>NC</td>\\n\",\n       \"      <td>15</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>ND</th>\\n\",\n       \"      <td>North Dakota</td>\\n\",\n       \"      <td>ND</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>OH</th>\\n\",\n       \"      <td>Ohio</td>\\n\",\n       \"      <td>OH</td>\\n\",\n       \"      <td>18</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>OK</th>\\n\",\n       \"      <td>Oklahoma</td>\\n\",\n       \"      <td>OK</td>\\n\",\n       \"      <td>7</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>OR</th>\\n\",\n       \"      <td>Oregon</td>\\n\",\n       \"      <td>OR</td>\\n\",\n       \"      <td>7</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>PA</th>\\n\",\n       \"      <td>Pennsylvania</td>\\n\",\n       \"      <td>PA</td>\\n\",\n       \"      <td>20</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>RI</th>\\n\",\n       \"      <td>Rhode Island</td>\\n\",\n       \"      <td>RI</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>SC</th>\\n\",\n       \"      <td>South Carolina</td>\\n\",\n       \"      <td>SC</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>SD</th>\\n\",\n       \"      <td>South Dakota</td>\\n\",\n       \"      <td>SD</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>TN</th>\\n\",\n       \"      <td>Tennessee</td>\\n\",\n       \"      <td>TN</td>\\n\",\n       \"      <td>11</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>TX</th>\\n\",\n       \"      <td>Texas</td>\\n\",\n       \"      <td>TX</td>\\n\",\n       \"      <td>38</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>UT</th>\\n\",\n       \"      <td>Utah</td>\\n\",\n       \"      <td>UT</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>VT</th>\\n\",\n       \"      <td>Vermont</td>\\n\",\n       \"      <td>VT</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>VA</th>\\n\",\n       \"      <td>Virginia</td>\\n\",\n       \"      <td>VA</td>\\n\",\n       \"      <td>13</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>WA</th>\\n\",\n       \"      <td>Washington</td>\\n\",\n       \"      <td>WA</td>\\n\",\n       \"      <td>12</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>WV</th>\\n\",\n       \"      <td>West Virginia</td>\\n\",\n       \"      <td>WV</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>WI</th>\\n\",\n       \"      <td>Wisconsin</td>\\n\",\n       \"      <td>WI</td>\\n\",\n       \"      <td>10</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>WY</th>\\n\",\n       \"      <td>Wyoming</td>\\n\",\n       \"      <td>WY</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                name abbr  electoral_votes  Trump  Clinton  margin_of_error\\n\",\n       \"abbr                                                                       \\n\",\n       \"AL           Alabama   AL                9    NaN      NaN              NaN\\n\",\n       \"AK            Alaska   AK                3    NaN      NaN              NaN\\n\",\n       \"AZ           Arizona   AZ               11    NaN      NaN              NaN\\n\",\n       \"AR          Arkansas   AR                6    NaN      NaN              NaN\\n\",\n       \"CA        California   CA               55    NaN      NaN              NaN\\n\",\n       \"CO          Colorado   CO                9    NaN      NaN              NaN\\n\",\n       \"CT       Connecticut   CT                7    NaN      NaN              NaN\\n\",\n       \"DE          Delaware   DE                3    NaN      NaN              NaN\\n\",\n       \"FL           Florida   FL               29    NaN      NaN              NaN\\n\",\n       \"GA           Georgia   GA               16    NaN      NaN              NaN\\n\",\n       \"HI            Hawaii   HI                4    NaN      NaN              NaN\\n\",\n       \"ID             Idaho   ID                4    NaN      NaN              NaN\\n\",\n       \"IL          Illinois   IL               20    NaN      NaN              NaN\\n\",\n       \"IN           Indiana   IN               11    NaN      NaN              NaN\\n\",\n       \"IA              Iowa   IA                6    NaN      NaN              NaN\\n\",\n       \"KS            Kansas   KS                6    NaN      NaN              NaN\\n\",\n       \"KY          Kentucky   KY                8    NaN      NaN              NaN\\n\",\n       \"LA         Louisiana   LA                8    NaN      NaN              NaN\\n\",\n       \"ME             Maine   ME                4    NaN      NaN              NaN\\n\",\n       \"MD          Maryland   MD               10    NaN      NaN              NaN\\n\",\n       \"MA     Massachusetts   MA               11    NaN      NaN              NaN\\n\",\n       \"MI          Michigan   MI               16    NaN      NaN              NaN\\n\",\n       \"MN         Minnesota   MN               10    NaN      NaN              NaN\\n\",\n       \"MS       Mississippi   MS                6    NaN      NaN              NaN\\n\",\n       \"MO          Missouri   MO               10    NaN      NaN              NaN\\n\",\n       \"MT           Montana   MT                3    NaN      NaN              NaN\\n\",\n       \"NE          Nebraska   NE                5    NaN      NaN              NaN\\n\",\n       \"NV            Nevada   NV                6    NaN      NaN              NaN\\n\",\n       \"NH     New Hampshire   NH                4    NaN      NaN              NaN\\n\",\n       \"NJ        New Jersey   NJ               14    NaN      NaN              NaN\\n\",\n       \"NM        New Mexico   NM                5    NaN      NaN              NaN\\n\",\n       \"NY          New York   NY               29    NaN      NaN              NaN\\n\",\n       \"NC    North Carolina   NC               15    NaN      NaN              NaN\\n\",\n       \"ND      North Dakota   ND                3    NaN      NaN              NaN\\n\",\n       \"OH              Ohio   OH               18    NaN      NaN              NaN\\n\",\n       \"OK          Oklahoma   OK                7    NaN      NaN              NaN\\n\",\n       \"OR            Oregon   OR                7    NaN      NaN              NaN\\n\",\n       \"PA      Pennsylvania   PA               20    NaN      NaN              NaN\\n\",\n       \"RI      Rhode Island   RI                4    NaN      NaN              NaN\\n\",\n       \"SC    South Carolina   SC                9    NaN      NaN              NaN\\n\",\n       \"SD      South Dakota   SD                3    NaN      NaN              NaN\\n\",\n       \"TN         Tennessee   TN               11    NaN      NaN              NaN\\n\",\n       \"TX             Texas   TX               38    NaN      NaN              NaN\\n\",\n       \"UT              Utah   UT                6    NaN      NaN              NaN\\n\",\n       \"VT           Vermont   VT                3    NaN      NaN              NaN\\n\",\n       \"VA          Virginia   VA               13    NaN      NaN              NaN\\n\",\n       \"WA        Washington   WA               12    NaN      NaN              NaN\\n\",\n       \"WV     West Virginia   WV                5    NaN      NaN              NaN\\n\",\n       \"WI         Wisconsin   WI               10    NaN      NaN              NaN\\n\",\n       \"WY           Wyoming   WY                3    NaN      NaN              NaN\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# We'll use a little Pandas trick to make merging in the poll data easier: \\n\",\n    \"# set the index to the abbreviation\\n\",\n    \"states = states.set_index(states.abbr)\\n\",\n    \"\\n\",\n    \"# And add the columns we'll need: Trump, Clinton, margin_of_error, all initially blank\\n\",\n    \"states['Trump'] = np.NaN\\n\",\n    \"states['Clinton'] = np.NaN\\n\",\n    \"states['margin_of_error'] = np.NaN\\n\",\n    \"\\n\",\n    \"states = states[states.abbr != 'DC']\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Not all polls have reported margins of error, but we can figure it out if we know the number of people surveyed.\\n\",\n    \"# This function salculate the 95% margin of error, using the classic formula. \\n\",\n    \"# Ref: https://onlinecourses.science.psu.edu/stat100/node/56/\\n\",\n    \"def calc_moe(sample_size, proportion):\\n\",\n    \"    return 100 * 1.96 * math.sqrt((proportion*(1-proportion)/sample_size))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Now we'll load polls for each state and pick one poll\\n\",\n    \"for abbr in states.abbr: \\n\",\n    \"    polls = pd.read_csv('data/' + abbr + '.tsv', sep='\\\\t')\\n\",\n    \"    polls = polls[polls.sample_subpopulation == 'Likely Voters']\\n\",\n    \"    poll = polls.tail(1).squeeze() \\n\",\n    \"\\n\",\n    \"    states.loc[abbr,'Trump'] = poll.Trump\\n\",\n    \"    states.loc[abbr,'Clinton'] = poll.Clinton\\n\",\n    \"\\n\",\n    \"    # There may be no MOE reported for this poll. If not, calculate it\\n\",\n    \"    moe = poll.margin_of_error\\n\",\n    \"    if pd.isnull(moe):\\n\",\n    \"        proportion = poll.Trump / 100  # or Clinton, will give nearly same result \\n\",\n    \"        moe = calc_moe(poll.observations, proportion)\\n\",\n    \"\\n\",\n    \"    states.loc[abbr,'margin_of_error'] = moe\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we simulate an election by drawing a sample from each state election indpendently, then tallying the electoral college votes. Instead of looking at the distribution of Clinton-Trump vote, we'll just look at the distribution of EC votes for Clinton.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 62,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def simulate_election(n_times):\\n\",\n    \"    # Start with 3 votes for DC (for which we have no polls, but went solidly Clinton)        \\n\",\n    \"    clinton_ec_votes = np.zeros(n_times) + 3 \\n\",\n    \"    \\n\",\n    \"    # run n_times simulated 'elections' for each state\\n\",\n    \"    for abbr in states.abbr:\\n\",\n    \"        mean = states['Clinton'][abbr] - states['Trump'][abbr]\\n\",\n    \"        stddev = states['margin_of_error'][abbr]\\n\",\n    \"        \\n\",\n    \"        results = np.random.normal(mean, stddev, n_times)\\n\",\n    \"        \\n\",\n    \"        # Add ec votes for every election where Clinton won this state\\n\",\n    \"        clinton_ec_votes[results>0] += states['electoral_votes'][abbr]\\n\",\n    \"    \\n\",\n    \"    return clinton_ec_votes\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 63,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 365.,  293.,  339.,  302.,  312.,  373.,  287.,  284.,  296.,  312.])\"\n      ]\n     },\n     \"execution_count\": 63,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Run 10 simulated elections and look at the results\\n\",\n    \"simulate_election(10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 64,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAYQAAAD8CAYAAAB3u9PLAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBo\\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAF9BJREFUeJzt3X+0XWV95/H3twm/UdCQVkoSEySg\\nYTqCcycCVptlaAm/jK0wBkvFGWayZgodM1NWh1ClDIiSNSK0StCM0FDAJmlQJ0CQDr9Gu8BAgCg/\\nQpzbkA5JEUPA8DPAhe/8cZ7I8XqTfZJ7z9433PdrrbvWPs9+9j6fs3Nyv/d59j77RGYiSdKvNR1A\\nkjQ8WBAkSYAFQZJUWBAkSYAFQZJUWBAkSYAFQZJUWBAkSYAFQZJUjG46wI444IADcuLEiU3HGHHW\\nrFkDwGGHHdZwEkk76v777386M8d20neXKggTJ05k5cqVTccYcaZNmwbAXXfd1WgOSTsuIv6p075O\\nGUmSgF1shKBmfO5zn2s6gqQaWBBU6dhjj206gqQaOGWkSqtWrWLVqlVNx5DUZY4QVGnOnDmAJ5Wl\\ntzpHCJIkwIIgSSosCJIkwIIgSSo8qaxKX/ziF5uO0LiJ5948qO3XXXLiECWRuseCoErHHHNM0xEk\\n1aCjKaOImBERayKiNyLOHWD9HhGxuKxfERETS/uYiLgzIl6IiK/12+ZfRcRDZZu/iogYihekoXf3\\n3Xdz9913Nx1DUpdVFoSIGAVcARwPTAFOi4gp/bqdCTybmYcAlwHzSvsW4PPAOQPs+krgPwCTy8+M\\nnXkB6r7zzjuP8847r+kYkrqskxHCVKA3M9dm5qvAImBmvz4zgWvK8lJgekREZr6Ymf9AqzD8QkQc\\nCLw9M3+YmQn8DfDxwbwQSdLgdFIQDgKeaHu8vrQN2Ccz+4DNwJiKfa6v2KckqUbD/qRyRMwGZgNM\\nmDCh4TTaVQ32KiFpJOhkhLABGN/2eFxpG7BPRIwG9gM2VexzXMU+AcjMBZnZk5k9Y8d29KU/kqSd\\n0MkI4T5gckRMovVLexbwqX59lgFnAPcApwB3lHMDA8rMJyPiuYg4ClgBfBr46k7kVw0uv/zypiNI\\nqkFlQcjMvog4G7gVGAVcnZmPRMSFwMrMXAZcBVwbEb3AM7SKBgARsQ54O7B7RHwc+L3MfBT4Y2Ah\\nsBdwS/nRMHTEEUc0HUFSDWI7f8gPOz09Pel3KtfvtttuA3btL8rZ1c8h+Eln7ayIuD8zezrpO+xP\\nKqt5X/jCF4BduyBIqubN7SRJgAVBklRYECRJgAVBklR4UlmVvvGNbzQdQVINLAiqdNhhhzUdQVIN\\nnDJSpRtvvJEbb7yx6RiSuswRgipdeumlAJx88smNZdjVP1gm7QocIUiSAAuCJKmwIEiSAAuCJKnw\\npLIqXXvttU1HkFQDC4IqjR8/vrqTpF2eU0aqtHjxYhYvXtx0DEld5ghBla688koAPvnJTzacRFI3\\nOUKQJAEWBElS4ZSRtAsY7K07/E5mdcIRgiQJcISgDixdurTpCJJqYEFQpQMOOKDpCJJq4JSRKi1c\\nuJCFCxc2HUNSl1kQVMmCII0MFgRJEmBBkCQVFgRJEmBBkCQVXnaqSsuXL286gqQaWBBUae+99246\\ngqQaOGWkSvPnz2f+/PlNx5DUZR0VhIiYERFrIqI3Is4dYP0eEbG4rF8RERPb1s0t7Wsi4ri29v8S\\nEY9ExMMR8bcRsedQvCANvSVLlrBkyZKmY0jqssopo4gYBVwB/C6wHrgvIpZl5qNt3c4Ens3MQyJi\\nFjAP+GRETAFmAYcDvwncFhGHAu8C/jMwJTNfjoglpd/CoXtpGk4Ge7dOSd3XyQhhKtCbmWsz81Vg\\nETCzX5+ZwDVleSkwPSKitC/KzFcy83Ggt+wPWsVor4gYDewN/PPgXookaTA6KQgHAU+0PV5f2gbs\\nk5l9wGZgzLa2zcwNwJeB/wc8CWzOzL8f6MkjYnZErIyIlRs3buwgriRpZzRyUjki3kFr9DCJ1lTS\\nPhFx+kB9M3NBZvZkZs/YsWPrjClJI0onl51uAMa3PR5X2gbqs75MAe0HbNrOtscCj2fmRoCI+DZw\\nDHDdTrwGddldd93VdARJNehkhHAfMDkiJkXE7rRO/i7r12cZcEZZPgW4IzOztM8qVyFNAiYD99Ka\\nKjoqIvYu5xqmA6sH/3IkSTurcoSQmX0RcTZwKzAKuDozH4mIC4GVmbkMuAq4NiJ6gWdoFQ1KvyXA\\no0AfcFZmvg6siIilwAOl/UFgwdC/PA2FL3/5ywCcc845DSeR1E3R+kN+19DT05MrV65sOsaIM23a\\nNGBwU0dedtqsdZec2HQENSQi7s/Mnk76+kllSRJgQZAkFRYESRLg3U7Vgb322qvpCJJqYEFQpVtu\\nuaXpCBqkwZ7U96T0yOCUkSQJsCCoAxdddBEXXXRR0zEkdZkFQZVuv/12br/99qZjSOoyC4IkCbAg\\nSJIKC4IkCfCyU3VgzJgxTUeQVAMLgirdcMMNTUeQVAOnjCRJgAVBHZg7dy5z585tOoakLnPKSJXu\\nueeepiNIqoEjBEkSYEGQJBUWBEkS4DkEdWDcuHFNR5BUAwuCKl133XVNR5BUA6eMJEmABUEdmDNn\\nDnPmzGk6hqQuc8pIlVatWtV0BEk1cIQgSQIsCJKkwikjdeSHazcx8dybm44hqYscIajSoYceym7v\\nPKjpGJK6zIKgSgsWLGDMjD9pOoakLrMgSJIAC4I6MHv2bDZ976tNx5DUZR0VhIiYERFrIqI3Is4d\\nYP0eEbG4rF8RERPb1s0t7Wsi4ri29v0jYmlEPBYRqyPi6KF4QRp6P/nJT3jtmQ1Nx5DUZZUFISJG\\nAVcAxwNTgNMiYkq/bmcCz2bmIcBlwLyy7RRgFnA4MAOYX/YH8JfA9zLzvcD7gdWDfzmSpJ3VyWWn\\nU4HezFwLEBGLgJnAo219ZgIXlOWlwNciIkr7osx8BXg8InqBqRHxKPAR4DMAmfkq8OqgX42krhjs\\nJcfrLjlxiJKomzqZMjoIeKLt8frSNmCfzOwDNgNjtrPtJGAj8NcR8WBEfDMi9hnoySNidkSsjIiV\\nGzdu7CCuJGlnNHVSeTTwAeDKzDwSeBH4lXMTAJm5IDN7MrNn7NixdWZUccQRR7D7rx/cdAxJXdZJ\\nQdgAjG97PK60DdgnIkYD+wGbtrPtemB9Zq4o7UtpFQgNQ5dffjnvPHZ20zEkdVknBeE+YHJETIqI\\n3WmdJF7Wr88y4IyyfApwR2ZmaZ9VrkKaBEwG7s3MnwJPRMRhZZvp/PI5CUlSzSpPKmdmX0ScDdwK\\njAKuzsxHIuJCYGVmLgOuAq4tJ42foVU0KP2W0Ppl3weclZmvl13/CXB9KTJrgX87xK9NQ+T000/n\\n6Qc3cMDJ5zQdRVIXdXRzu8xcDizv13Z+2/IW4NRtbHsxcPEA7auAnh0Jq2asX7+evuc3NR1DUpf5\\nSWVJEmBBkCQVFgRJEmBBUAeOPvpo9jjovU3HkNRlFgRV+tKXvsQ7fuczTceQ1GUWBEkSYEFQBz7x\\niU+w8TtfbDqGpC6zIKjSpk2beP3l55qOIanLLAiSJMCCIEkqLAiSJMCCoA5Mnz6dPd/9/qZjSOoy\\nC4Iqff7zn2f/D53WdAxJXWZBkCQBFgR14Pjjj+epJX/RdAxJXWZBUKWXX36Z7Hul6RiSusyCIEkC\\nLAiSpMKCIEkCOvxOZe36Jp57805vuznew17vec8QppE0HFkQVGm/D/5B0xEk1cApI0kSYEFQB376\\nrXP56bfObTqGpC6zIEiSAAuCJKmwIEiSAAuCJKnwslNV2ue9H246gnZxg/kcDMC6S04coiTaHguC\\nKr3tA/5nlEYCp4xU6Y3XtvDGa1uajiGpyxwhqNLP/u4CAN71qUuaDSKpqzoaIUTEjIhYExG9EfEr\\nn1CKiD0iYnFZvyIiJratm1va10TEcf22GxURD0bETYN9IZKkwaksCBExCrgCOB6YApwWEVP6dTsT\\neDYzDwEuA+aVbacAs4DDgRnA/LK/rT4LrB7si5AkDV4nI4SpQG9mrs3MV4FFwMx+fWYC15TlpcD0\\niIjSvigzX8nMx4Hesj8iYhxwIvDNwb8MSdJgdVIQDgKeaHu8vrQN2Ccz+4DNwJiKbS8H/gx4Y4dT\\nS5KGXCMnlSPiJOBnmXl/REyr6DsbmA0wYcKEGtKpv31/69imI0iqQScjhA3A+LbH40rbgH0iYjSw\\nH7BpO9t+CPhYRKyjNQX10Yi4bqAnz8wFmdmTmT1jx47tIK6G2r6/daxFQRoBOikI9wGTI2JSROxO\\n6yTxsn59lgFnlOVTgDsyM0v7rHIV0iRgMnBvZs7NzHGZObHs747MPH0IXo+64PWXNvP6S5ubjiGp\\nyyqnjDKzLyLOBm4FRgFXZ+YjEXEhsDIzlwFXAddGRC/wDK1f8pR+S4BHgT7grMx8vUuvRV2y8btf\\nAvwcgvRW19E5hMxcDizv13Z+2/IW4NRtbHsxcPF29n0XcFcnOSRJ3eOtKyRJgAVBklRYECRJgDe3\\nUwfeduQJTUeQVAMLgirt876PNB1BUg2cMlKlvuc20vfcxqZjSOoyC4IqPX3TpTx906VNx5DUZU4Z\\n7SIG+520klTFEYIkCbAgSJIKC4IkCfAcgjrw9qm/33QESTWwIKjS3od8sOkIkmrglJEqvbZpPa9t\\nWt90DEld5ghBlTbd+jXA70NQcwZ72fW6S04coiRvbY4QJEmABUGSVFgQJEmABUGSVHhSWZX2O2ZW\\n0xEk1cCCoEp7TTyi6QiSauCUkSq9+tRaXn1qbdMxJHWZBUGVnrl9Ac/cvqDpGJK6zIIgSQIsCJKk\\nwoIgSQIsCJKkwstOVWn/j5zRdARJNbAgqNKe497XdARJNXDKSJW2rF/NlvWrm44hqcscIdRksPdz\\nb9LPv38N4PchSG91HY0QImJGRKyJiN6IOHeA9XtExOKyfkVETGxbN7e0r4mI40rb+Ii4MyIejYhH\\nIuKzQ/WCJEk7p7IgRMQo4ArgeGAKcFpETOnX7Uzg2cw8BLgMmFe2nQLMAg4HZgDzy/76gD/NzCnA\\nUcBZA+xTklSjTkYIU4HezFybma8Ci4CZ/frMBK4py0uB6RERpX1RZr6SmY8DvcDUzHwyMx8AyMzn\\ngdXAQYN/OZKkndVJQTgIeKLt8Xp+9Zf3L/pkZh+wGRjTybZleulIYEXnsSVJQ63Rk8oRsS9wAzAn\\nM5/bRp/ZwGyACRMm1JhOW71z+uymI0iqQScjhA3A+LbH40rbgH0iYjSwH7Bpe9tGxG60isH1mfnt\\nbT15Zi7IzJ7M7Bk7dmwHcTXUdv+Ng9n9Nw5uOoakLutkhHAfMDkiJtH6ZT4L+FS/PsuAM4B7gFOA\\nOzIzI2IZ8K2I+Arwm8Bk4N5yfuEqYHVmfmVoXoq65eV1qwC/KEe7rsFe9r3ukhOHKMnwVlkQMrMv\\nIs4GbgVGAVdn5iMRcSGwMjOX0frlfm1E9ALP0CoalH5LgEdpXVl0Vma+HhG/DfwR8FBErCpPdV5m\\nLh/qF6jB23z3IsCCIL3VdXQOofyiXt6v7fy25S3AqdvY9mLg4n5t/wDEjoaVJHWPt66QJAEWBElS\\nYUGQJAHe3E4dGHPc2U1HkFQDC4Iq7TZmXNMRJNXAKSNVeql3BS/1emcR6a3OEYIqPXfvdwDY+5AP\\nNpxEUjdZEDq0K3/BjSR1wikjSRJgQZAkFRYESRLgOQR14ICT/rTpCJJqYEFQpdFv93sopJHAgqBK\\nL67+PgD7vO8jDSeRmjFSvk/BgqBKzz/YuvO5BUF6a/OksiQJsCBIkgoLgiQJGEHnELz1hCRt34gp\\nCNp5Yz8+t+kIkmpgQVClUXvv13QESTXwHIIqvfDQbbzw0G1Nx5DUZRYEVbIgSCODU0aS1GW7yied\\nHSFIkgALgiSpsCBIkgDPIagDv37qBU1HkFQDC4Iq/dpuezYdQVINnDJSpecfuJnnH/DWH9JbnQVB\\nlV587Ae8+NgPmo4hqcs6KggRMSMi1kREb0ScO8D6PSJicVm/IiImtq2bW9rXRMRxne5TklSvyoIQ\\nEaOAK4DjgSnAaRExpV+3M4FnM/MQ4DJgXtl2CjALOByYAcyPiFEd7lOSVKNORghTgd7MXJuZrwKL\\ngJn9+swErinLS4HpERGlfVFmvpKZjwO9ZX+d7FOSVKNOCsJBwBNtj9eXtgH7ZGYfsBkYs51tO9mn\\nJKlGw/6y04iYDcwuD1+IiDVdeqoDgKe7tO+h0Hi+f5p30vZWN56vgvkGx3yDM6h8MW9Qz/3uTjt2\\nUhA2AOPbHo8rbQP1WR8Ro4H9gE0V21btE4DMXAAs6CDnoETEyszs6fbz7CzzDY75Bsd8gzPc823V\\nyZTRfcDkiJgUEbvTOkm8rF+fZcAZZfkU4I7MzNI+q1yFNAmYDNzb4T4lSTWqHCFkZl9EnA3cCowC\\nrs7MRyLiQmBlZi4DrgKujYhe4Blav+Ap/ZYAjwJ9wFmZ+TrAQPsc+pcnSepUR+cQMnM5sLxf2/lt\\ny1uAU7ex7cXAxZ3ss2Fdn5YaJPMNjvkGx3yDM9zzARCtmR1J0kjnrSskScAIKQgRMT4i7oyIRyPi\\nkYj4bGn/HxHxWET8OCK+ExH7l/aJEfFyRKwqP19vKN8FEbGhLccJbdsMeEuQmvMtbsu2LiJWlfa6\\nj9+eEXFvRPyo5PvvpX1SuZVKb8m6e2nf5q1Was53ffn3ezgiro6I3Ur7tIjY3Hb8zt/+M3Qt38KI\\neLwtxxGlPSLir8rx+3FEfKChfD9oy/bPEfHd0l7r8WvLOSoiHoyIm8rjYfH+2yGZ+Zb/AQ4EPlCW\\n3wb8hNYtM34PGF3a5wHzyvJE4OFhkO8C4JwB+k8BfgTsAUwC/hEYVXe+fn0uBc5v6PgFsG9Z3g1Y\\nARwFLAFmlfavA/+pLP8x8PWyPAtY3FC+E8q6AP62Ld804KZhcPwWAqcM0P8E4Jay3VHAiiby9etz\\nA/DpJo5fW4b/Cnxr63MPl/ffjvyMiBFCZj6ZmQ+U5eeB1cBBmfn32fpkNcAPaX0eYtjk284m27ol\\nSCP5IiKAf0Prl1rtsuWF8nC38pPAR2ndSgVat1b5eFne1q1Was2XmcvLuqR1OXZT779tHb9tmQn8\\nTdnuh8D+EXFgU/ki4u20/q2/260MVSJiHHAi8M3yOBgm778dMSIKQrsyPDuS1l8Z7f4drb96tppU\\nhn//JyI+XFO8gfKdXYblV0fEO0pbY7f+2Mbx+zDwVGb+37a2Wo9fGa6vAn4G/G9ao6aftxX89mO0\\nrVut1JYvM1e0rdsN+CPge22bHF2mSG6JiMO7ma0i38Xl/XdZROxR2mp//23v+NH6RXt7Zj7X1lbr\\n8QMuB/4MeKM8HsMwev91akQVhIjYl9bQck77myci/pzW5ySuL01PAhMy80jKMLD8FVJ3viuB9wBH\\nlEyXdjvD9mzr+AGn8cujg9qPX2a+nplH0Poreyrw3m4+347qny8i/kXb6vnA9zNz65dOPAC8OzPf\\nD3yVGv7y3Ua+ubSO478G3gn8t27n2MF8W/V//9V6/CLiJOBnmXl/N5+nDiOmIJS/wm4Ars/Mb7e1\\nfwY4CfjDMnSnTMVsKsv30/pr89C682XmU+U/whvA/+TNaaFObifS9XylfTTwB8DirW1NHL+25/45\\ncCdwNK2pjK2ftWk/Rr84fvHLt1qpM9+M8vx/AYylVTi39nlu6xRJtj6vs1tEHFB3vjJVmJn5CvDX\\nNPj+GygfQDkuU4Gb2/rUffw+BHwsItbRunPzR4G/ZBi+/6qMiIJQ5ueuAlZn5lfa2mfQGuZ9LDNf\\namsfG63vbCAiDqZ1y421DeRrn5f9feDhsrytW4LUmq84FngsM9e39a/7+I2NN68Q2wv4XVrnOe6k\\ndSsVaN1a5X+V5W3daqXOfI9FxL8HjgNOK0V/a/93bZ1TjoiptP6fdu0XxnbyHVjagta0TPv779PR\\nchSwOTOfrDtfWX0KrZO4W9r613r8MnNuZo7LzIm0ThLfkZl/yDB5/+2QqrPOb4Uf4LdpnYT6MbCq\\n/JxA62TsE21tW8/8fwJ4pLQ9AJzcUL5rgYdK+zLgwLZt/pzWX95rgOObyFfWLQT+Y7/+dR+/fwk8\\nWPI9zJtXOx1Mq1D2An8H7FHa9yyPe8v6gxvK11f+Dbce063tZ5fj9yNaFzsc01C+O8r772HgOt68\\n0idofcHVP5b1PU3kK+vuojWaae9f6/Hr99zTePMqo2Hx/tuRHz+pLEkCRsiUkSSpmgVBkgRYECRJ\\nhQVBkgRYECRJhQVBkgRYECRJhQVBkgTA/wcpknEi69sm8gAAAABJRU5ErkJggg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Run many, many simulated elections and plot histogram of results\\n\",\n    \"results = simulate_election(100000)\\n\",\n    \"plt.hist(results, bins=range(220, 420, 10), density=True)\\n\",\n    \"plt.axvline(270, color='black', linestyle='dashed');\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To get a Clinton win probability out of this, we can calculate the percentage where she receives 270 or more.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 65,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.86687999999999998\"\n      ]\n     },\n     \"execution_count\": 65,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(results >= 270).mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 3: Correlated errors\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 66,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 0.46343466,  0.42504052, -2.13544195,  0.62857464,  1.41485492,\\n\",\n       \"        0.5109058 ,  1.4126031 ,  0.2540728 , -1.16216505, -0.68903853])\"\n      ]\n     },\n     \"execution_count\": 66,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Let's start with some random numbers\\n\",\n    \"mean=0\\n\",\n    \"stddev=1\\n\",\n    \"n=10\\n\",\n    \"np.random.normal(mean, stddev, n)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 83,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2.7225077557749442\"\n      ]\n     },\n     \"execution_count\": 83,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Sum of these random numbers\\n\",\n    \"np.random.normal(mean, stddev, n).sum()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 84,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def plot_distribution_of_sums(make_a_sum_function, n_times):\\n\",\n    \"    sums = pd.DataFrame(np.zeros(n_times))\\n\",\n    \"    sums = sums.applymap(make_a_sum_function)\\n\",\n    \"    sums.plot(kind='hist', bins=20)\\n\",\n    \"    print(\\\"standard deviation\\\")\\n\",\n    \"    print(float(sums.std()))\\n\",\n    \"    \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 85,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"standard deviation\\n\",\n      \"3.176459754571901\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAY4AAAD8CAYAAABgmUMCAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBo\\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAFspJREFUeJzt3XuwnHd93/H3B9lGmBJ8keI4Omok\\nQCGV20CUY+MOJTU49UVOLcgEIueCCibKRSSkpAWZdmImqWdMSnAggBsRq7YpoBoHsBo7gHAIns7E\\nGBmIr7g+Yxt0DjY62GBCwAiLb//YR3gt60j7nLN79lzer5mdfZ7f89tnvzuaPR89l/39UlVIktSr\\npw27AEnS/GJwSJJaMTgkSa0YHJKkVgwOSVIrBockqRWDQ5LUisEhSWrF4JAktXLUsAsYhGXLltWq\\nVauGXYYkzSu33nrr16tq+ZH6LcjgWLVqFbt37x52GZI0ryT5ci/9PFUlSWrF4JAktWJwSJJaWZDX\\nOCRpWL7//e8zPj7OY489NuxSprR06VJGRkY4+uijp/V6g0OS+mh8fJxnPetZrFq1iiTDLucpqoqH\\nH36Y8fFxVq9ePa19eKpKkvroscce48QTT5yToQGQhBNPPHFGR0QGhyT12VwNjQNmWp/BIUlqxWsc\\nkjRAq7Ze39f9PXDpeT31+/jHP84b3vAG9u/fz+te9zq2bt3atxoMDmkaZvLHoNcvvjRd+/fvZ8uW\\nLezatYuRkRFOPfVUzj//fNauXduX/Q/sVFWS7Un2JrnjoPbfTfKlJHcm+ZOu9ouSjCW5J8nZXe3n\\nNG1jSfoXmZK0QN1yyy0873nP4znPeQ7HHHMMGzdu5Lrrruvb/gd5jeNK4JzuhiQvBTYAL6iqU4C3\\nN+1rgY3AKc1r3ptkSZIlwHuAc4G1wAVNX0nSFCYmJli5cuUP10dGRpiYmOjb/gd2qqqqbkqy6qDm\\n3wYurarvNX32Nu0bgB1N+/1JxoDTmm1jVXUfQJIdTd+7BlW3JOnwZvuuqp8EXpLks0k+k+TUpn0F\\nsKer33jTNlW7JGkKK1asYM+eJ/50jo+Ps2JF//50znZwHAWcAJwO/GfgmvTphuckm5PsTrJ7cnKy\\nH7uUpHnp1FNP5d577+X+++9n37597Nixg/PPP79v+5/tu6rGgY9UVQG3JPkBsAyYAFZ29Rtp2jhM\\n+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\\nAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# If take the sum of these random numbers 1000 times, what do we get?\\n\",\n    \"def uncorrelated_sum(dummy):\\n\",\n    \"    return np.random.normal(mean, stddev, n).sum()\\n\",\n    \"plot_distribution_of_sums(uncorrelated_sum, 10000)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"But suppose that half of these random numbers were actually the *same* random number...\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 86,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def correlated_randoms():\\n\",\n    \"    numbers = np.random.normal(mean, stddev, n)\\n\",\n    \"    numbers[6:10] = numbers[5]\\n\",\n    \"    return numbers\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 95,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 0.90525753, -1.51209138, -0.27435613, -0.97697513, -0.26884543,\\n\",\n       \"       -0.49968656, -0.49968656, -0.49968656, -0.49968656, -0.49968656])\"\n      ]\n     },\n     \"execution_count\": 95,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"correlated_randoms()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 96,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"standard deviation\\n\",\n      \"5.461282773904414\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"def correlated_sum(dummmy):\\n\",\n    \"    return correlated_randoms().sum()\\n\",\n    \"plot_distribution_of_sums(correlated_sum, 10000)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"## Part 4: Elections with correlated errors\\n\",\n    \"\\n\",\n    \"A poll is meant to tell us how people will vote in an election. But there will be some difference between the last latest polls before an election and the actual election results. According to [this research](http://www.stat.columbia.edu/~gelman/research/unpublished/polling-errors.pdf), US state level presidentail polls in the last three weeks before an election are off by an average of 2%.\\n\",\n    \"\\n\",\n    \"So we could simply add 2% to our margins of error. But this isn't quite right: when a poll is off in one state, it's often off in other states for similar reasons. The polling error is *correlated.* Not taking into account correlated polling errors were the [biggest reason](https://fivethirtyeight.com/features/election-update-why-our-model-is-more-bullish-than-others-on-trump/) that many 2016 election predictions were so badly off.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"First, let's see what simply doubling the margin of error on every state does. This increases error, but not *correlated* error.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 99,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Helper function to interpret results\\n\",\n    \"def plot_results(results):\\n\",\n    \"    plt.hist(results, bins=range(150, 500, 10), density=True)\\n\",\n    \"    plt.axvline(270, color='black', linestyle='dashed');\\n\",\n    \"    print(\\\"Clinton win probability: \\\" + str((results>=270).mean()))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Instead, we need to add polling error that is similar between states. The simplest way to do this is just to add the same polling error to every state (perfectly correlated across all states!)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 97,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def simulate_election_national_error(n_times, polling_error_stddev):\\n\",\n    \"    # Start with 3 votes for DC (for which we have no polls, but went solidly Clinton)        \\n\",\n    \"    clinton_ec_votes = np.zeros(n_times) + 3 \\n\",\n    \"    \\n\",\n    \"    # For each \\\"election\\\", add in the same random polling error for every state\\n\",\n    \"    polling_errors = np.random.normal(0, polling_error_stddev, n_times)\\n\",\n    \"    \\n\",\n    \"    # run n_times simulated 'elections' for each state\\n\",\n    \"    for abbr in states.abbr:\\n\",\n    \"        mean = states['Clinton'][abbr] - states['Trump'][abbr]\\n\",\n    \"        stddev = states['margin_of_error'][abbr]\\n\",\n    \"        \\n\",\n    \"        results = np.random.normal(mean, stddev, n_times)\\n\",\n    \"        \\n\",\n    \"        results += polling_errors\\n\",\n    \"        \\n\",\n    \"        # Add ec votes for every election where Clinton won this state\\n\",\n    \"        clinton_ec_votes[results>0] += states['electoral_votes'][abbr]\\n\",\n    \"    \\n\",\n    \"    return clinton_ec_votes\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 105,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Clinton win probability: 0.95885\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# What does the distribution of electoral college outcomes look like with 2% correlated national polling error?\\n\",\n    \"national_polling_error_stddev = 0\\n\",\n    \"results = simulate_election_national_error(100000, national_polling_error_stddev)\\n\",\n    \"plot_results(results)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 106,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.95176000000000005\"\n      ]\n     },\n     \"execution_count\": 106,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(results > 270).mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-6/week-6-1-election-prediction-homework.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Homework 6-1: \\\"Fundamentals\\\" based election prediction\\n\",\n    \"\\n\",\n    \"In this homework you will explore an alternate election prediction model, using various economic and political indicators instead of polling data -- and also deal with the challenges of model building when there is very little training data. Political scientists have long analyzed these types of \\\"fundamentals\\\" models, and they can be reasonably accurate. For example, fundamentals [slightly favored](https://fivethirtyeight.com/features/it-wasnt-clintons-election-to-lose/) the Republicans in 2016\\n\",\n    \"\\n\",\n    \"Data sources which I used to generate `election-fundamentals.csv`:\\n\",\n    \"\\n\",\n    \"- Historical presidential approval ratings (highest and lowest for each president) from [Wikipedia](https://en.wikipedia.org/wiki/United_States_presidential_approval_rating) \\n\",\n    \"- GDP growth in election year from [World Bank](https://data.worldbank.org/indicator/NY.GDP.MKTP.KD.ZG?locations=US)\\n\",\n    \"\\n\",\n    \"Note that there are some timing issues here which more careful forecasts would avoid. The presidential approval rating is for the entire presidential term.The GDP growth is for the entire election year. These variables might have higher predictive power if they were (for example) sampled in the last quarters before the election.\\n\",\n    \"\\n\",\n    \"For a comprehensive view of election prediction from non-poll data, and how well it might or might not be able to do, try [this](https://fivethirtyeight.com/features/models-based-on-fundamentals-have-failed-at-predicting-presidential-elections/) from Fivethirtyeight.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"from sklearn.tree import DecisionTreeClassifier\\n\",\n    \"from sklearn.ensemble import RandomForestClassifier\\n\",\n    \"from sklearn.model_selection import cross_val_score\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# First, import data/election-fundamentals.csv and take a look at what we have\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# How many elections do we have data for?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Rather than predicting the winning party, we're going to predict whether the same party stays in power or flips\\n\",\n    \"# This is going to be the target variable\\n\",\n    \"fund.flips = fund.winner != fund.incumbent_party\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Pull out all other numeric columns as features. Create features and and target numpy arrays\\n\",\n    \"fields = \\n\",\n    \"features = \\n\",\n    \"target = \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Use 3-fold cross validation to see how well we can do with a RandomForestClassifier. \\n\",\n    \"# Print out the scores\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"How predictable are election results just from these variables, as compared to a coin flip?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"(your answer here)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Now create a logistic regression using all the data\\n\",\n    \"# Normally we'd split into test and training years, but here we're only interested in the coefficients\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# What is the influence of each feature?\\n\",\n    \"# Remeber to use np.exp to turn the lr coefficients into odds ratios\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Describe the effect of each one of our features on whether or not the party in power flips. What feature has the biggest effect? How does economic growth relate? Are there any factors that operate backwards from what you would expect, and if so what do you think is happening?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"(your answer here)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-6/week-6-1-election-prediction.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Week 6-1: Election Prediction through simulation\\n\",\n    \"\\n\",\n    \"This is the first of two classes on election prediction. We'll be using simulation throughout to build our model.\\n\",\n    \"\\n\",\n    \"All data is downloaded from [Huffington Post Pollster](http://elections.huffingtonpost.com/pollster#historical-charts)\\n\",\n    \"\\n\",\n    \"Further references for your enjoyment:\\n\",\n    \"\\n\",\n    \"- [The Real Story of 2016](https://fivethirtyeight.com/features/the-real-story-of-2016/) - Fivethirtyeight\\n\",\n    \"- Buzzfeed's post-election [forecast grades](https://www.buzzfeednews.com/article/jsvine/2016-election-forecast-grades)\\n\",\n    \"- [Putting the Polling Miss of the 2016 Election in Perspective](https://www.nytimes.com/interactive/2016/11/13/upshot/putting-the-polling-miss-of-2016-in-perspective.html) - The Upshot\\n\",\n    \"- [After 2016, Can We Ever Trust the Polls Again?](https://newrepublic.com/article/139158/2016-can-ever-trust-polls-again) - The New Republic \\n\",\n    \"\\n\",\n    \"And finally, the single biggest reason that the simple election prediction model in this file misses so badly (predicting Clinton's chances in the high 90s): it does not take into account the [correlations between polling errors](https://www.quantamagazine.org/why-nate-silver-sam-wang-and-everyone-else-were-wrong-part-2-20161111/) in different states. If we fix this one factor, even our simple model will give Trump substantially higher chances.\\n\",\n    \"\\n\",\n    \"To see what goes into a much more realistic election model, check out this [notebook recreation of 538's 2012 model](http://nbviewer.jupyter.org/github/jseabold/538model/blob/master/silver_model.ipynb) by by Skipper Seabold.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 1: Simulating one poll\\n\",\n    \"\\n\",\n    \"Here we'll produce simulated election outcomes from a single poll. We are uncritically taking the poll results as an unbiased inidicator of results. This assumes that the people who are polled (\\\"likely voters\\\") are a good representation of the people who actually vote. It is possible to adjust these sorts of factors later, but let's begin with the basics.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import math\\n\",\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Set a random seed so this whole notebook becomes deterministic (for teaching purposes)\\n\",\n    \"np.random.seed(999)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Trump</th>\\n\",\n       \"      <th>Clinton</th>\\n\",\n       \"      <th>Johnson</th>\\n\",\n       \"      <th>Other</th>\\n\",\n       \"      <th>Undecided</th>\\n\",\n       \"      <th>poll_slug</th>\\n\",\n       \"      <th>survey_house</th>\\n\",\n       \"      <th>start_date</th>\\n\",\n       \"      <th>end_date</th>\\n\",\n       \"      <th>question_text</th>\\n\",\n       \"      <th>sample_subpopulation</th>\\n\",\n       \"      <th>observations</th>\\n\",\n       \"      <th>margin_of_error</th>\\n\",\n       \"      <th>mode</th>\\n\",\n       \"      <th>partisanship</th>\\n\",\n       \"      <th>partisan_affiliation</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>41.0</td>\\n\",\n       \"      <td>45.0</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>2.0</td>\\n\",\n       \"      <td>8.0</td>\\n\",\n       \"      <td>insights-west-26812</td>\\n\",\n       \"      <td>Insights West</td>\\n\",\n       \"      <td>2016-11-04</td>\\n\",\n       \"      <td>2016-11-07</td>\\n\",\n       \"      <td>As you may know, there will be a presidential ...</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>940.0</td>\\n\",\n       \"      <td>3.2</td>\\n\",\n       \"      <td>Internet</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>6.0</td>\\n\",\n       \"      <td>89.0</td>\\n\",\n       \"      <td>1.0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>insights-west-26812</td>\\n\",\n       \"      <td>Insights West</td>\\n\",\n       \"      <td>2016-11-04</td>\\n\",\n       \"      <td>2016-11-07</td>\\n\",\n       \"      <td>As you may know, there will be a presidential ...</td>\\n\",\n       \"      <td>Likely Voters - Democrat</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Internet</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>82.0</td>\\n\",\n       \"      <td>7.0</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"      <td>2.0</td>\\n\",\n       \"      <td>6.0</td>\\n\",\n       \"      <td>insights-west-26812</td>\\n\",\n       \"      <td>Insights West</td>\\n\",\n       \"      <td>2016-11-04</td>\\n\",\n       \"      <td>2016-11-07</td>\\n\",\n       \"      <td>As you may know, there will be a presidential ...</td>\\n\",\n       \"      <td>Likely Voters - Republican</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Internet</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>38.0</td>\\n\",\n       \"      <td>43.0</td>\\n\",\n       \"      <td>8.0</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>7.0</td>\\n\",\n       \"      <td>insights-west-26812</td>\\n\",\n       \"      <td>Insights West</td>\\n\",\n       \"      <td>2016-11-04</td>\\n\",\n       \"      <td>2016-11-07</td>\\n\",\n       \"      <td>As you may know, there will be a presidential ...</td>\\n\",\n       \"      <td>Likely Voters - independent</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Internet</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>43.0</td>\\n\",\n       \"      <td>41.0</td>\\n\",\n       \"      <td>7.0</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>5.0</td>\\n\",\n       \"      <td>ibd-tipp-26811</td>\\n\",\n       \"      <td>IBD/TIPP</td>\\n\",\n       \"      <td>2016-11-04</td>\\n\",\n       \"      <td>2016-11-07</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>1107.0</td>\\n\",\n       \"      <td>3.1</td>\\n\",\n       \"      <td>Live Phone</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   Trump  Clinton  Johnson  Other  Undecided            poll_slug  \\\\\\n\",\n       \"0   41.0     45.0      4.0    2.0        8.0  insights-west-26812   \\n\",\n       \"1    6.0     89.0      1.0    0.0        4.0  insights-west-26812   \\n\",\n       \"2   82.0      7.0      3.0    2.0        6.0  insights-west-26812   \\n\",\n       \"3   38.0     43.0      8.0    4.0        7.0  insights-west-26812   \\n\",\n       \"4   43.0     41.0      7.0    4.0        5.0       ibd-tipp-26811   \\n\",\n       \"\\n\",\n       \"    survey_house  start_date    end_date  \\\\\\n\",\n       \"0  Insights West  2016-11-04  2016-11-07   \\n\",\n       \"1  Insights West  2016-11-04  2016-11-07   \\n\",\n       \"2  Insights West  2016-11-04  2016-11-07   \\n\",\n       \"3  Insights West  2016-11-04  2016-11-07   \\n\",\n       \"4       IBD/TIPP  2016-11-04  2016-11-07   \\n\",\n       \"\\n\",\n       \"                                       question_text  \\\\\\n\",\n       \"0  As you may know, there will be a presidential ...   \\n\",\n       \"1  As you may know, there will be a presidential ...   \\n\",\n       \"2  As you may know, there will be a presidential ...   \\n\",\n       \"3  As you may know, there will be a presidential ...   \\n\",\n       \"4                                                NaN   \\n\",\n       \"\\n\",\n       \"          sample_subpopulation  observations  margin_of_error        mode  \\\\\\n\",\n       \"0                Likely Voters         940.0              3.2    Internet   \\n\",\n       \"1     Likely Voters - Democrat           NaN              NaN    Internet   \\n\",\n       \"2   Likely Voters - Republican           NaN              NaN    Internet   \\n\",\n       \"3  Likely Voters - independent           NaN              NaN    Internet   \\n\",\n       \"4                Likely Voters        1107.0              3.1  Live Phone   \\n\",\n       \"\\n\",\n       \"  partisanship partisan_affiliation  \\n\",\n       \"0  Nonpartisan                 None  \\n\",\n       \"1  Nonpartisan                 None  \\n\",\n       \"2  Nonpartisan                 None  \\n\",\n       \"3  Nonpartisan                 None  \\n\",\n       \"4  Nonpartisan                 None  \"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Load national polling data. It's a TSV file, so we have to tell read_csv it's separated by tabs\\n\",\n    \"uspolls = pd.read_csv('data/US.tsv', sep='\\\\t')\\n\",\n    \"uspolls.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# keep only polls of \\\"likely voters\\\" (as opposed to registered voters, or republicans/democracts)\\n\",\n    \"uspolls=uspolls[uspolls.sample_subpopulation == 'Likely Voters']\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"388\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# We need a margin of error to do our simulation, so drop any rows that don't have it\\n\",\n    \"uspolls=uspolls[~pd.isnull(uspolls.margin_of_error)].reset_index(drop=True)\\n\",\n    \"len(uspolls)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There are lot of polls here! Let's pick just one, near the end of the polling period (just before the election) and look at the outcomes it implies.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Trump</th>\\n\",\n       \"      <th>Clinton</th>\\n\",\n       \"      <th>Johnson</th>\\n\",\n       \"      <th>Other</th>\\n\",\n       \"      <th>Undecided</th>\\n\",\n       \"      <th>poll_slug</th>\\n\",\n       \"      <th>survey_house</th>\\n\",\n       \"      <th>start_date</th>\\n\",\n       \"      <th>end_date</th>\\n\",\n       \"      <th>question_text</th>\\n\",\n       \"      <th>sample_subpopulation</th>\\n\",\n       \"      <th>observations</th>\\n\",\n       \"      <th>margin_of_error</th>\\n\",\n       \"      <th>mode</th>\\n\",\n       \"      <th>partisanship</th>\\n\",\n       \"      <th>partisan_affiliation</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>383</th>\\n\",\n       \"      <td>47.0</td>\\n\",\n       \"      <td>43.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>11.0</td>\\n\",\n       \"      <td>emerson-college-polling-society-22699</td>\\n\",\n       \"      <td>Emerson College Polling Society</td>\\n\",\n       \"      <td>2015-09-05</td>\\n\",\n       \"      <td>2015-09-08</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>955.0</td>\\n\",\n       \"      <td>3.1</td>\\n\",\n       \"      <td>Automated Phone</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>384</th>\\n\",\n       \"      <td>44.0</td>\\n\",\n       \"      <td>46.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>11.0</td>\\n\",\n       \"      <td>ppp-d-22654</td>\\n\",\n       \"      <td>PPP (D)</td>\\n\",\n       \"      <td>2015-08-28</td>\\n\",\n       \"      <td>2015-08-30</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>1254.0</td>\\n\",\n       \"      <td>2.8</td>\\n\",\n       \"      <td>IVR/Online</td>\\n\",\n       \"      <td>Pollster</td>\\n\",\n       \"      <td>Dem</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>385</th>\\n\",\n       \"      <td>40.0</td>\\n\",\n       \"      <td>49.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>12.0</td>\\n\",\n       \"      <td>emerson-college-polling-society-22537</td>\\n\",\n       \"      <td>Emerson College Polling Society</td>\\n\",\n       \"      <td>2015-07-26</td>\\n\",\n       \"      <td>2015-07-28</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>950.0</td>\\n\",\n       \"      <td>3.4</td>\\n\",\n       \"      <td>Automated Phone</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>386</th>\\n\",\n       \"      <td>37.0</td>\\n\",\n       \"      <td>50.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>13.0</td>\\n\",\n       \"      <td>ppp-d-22415</td>\\n\",\n       \"      <td>PPP (D)</td>\\n\",\n       \"      <td>2015-07-20</td>\\n\",\n       \"      <td>2015-07-21</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>1087.0</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"      <td>IVR/Online</td>\\n\",\n       \"      <td>Pollster</td>\\n\",\n       \"      <td>Dem</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>387</th>\\n\",\n       \"      <td>34.0</td>\\n\",\n       \"      <td>51.0</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>16.0</td>\\n\",\n       \"      <td>suffolk-usa-today-22380</td>\\n\",\n       \"      <td>Suffolk/USA Today</td>\\n\",\n       \"      <td>2015-07-09</td>\\n\",\n       \"      <td>2015-07-12</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>Likely Voters</td>\\n\",\n       \"      <td>1000.0</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"      <td>Live Phone</td>\\n\",\n       \"      <td>Nonpartisan</td>\\n\",\n       \"      <td>None</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"     Trump  Clinton  Johnson  Other  Undecided  \\\\\\n\",\n       \"383   47.0     43.0      NaN    NaN       11.0   \\n\",\n       \"384   44.0     46.0      NaN    NaN       11.0   \\n\",\n       \"385   40.0     49.0      NaN    NaN       12.0   \\n\",\n       \"386   37.0     50.0      NaN    NaN       13.0   \\n\",\n       \"387   34.0     51.0      NaN    NaN       16.0   \\n\",\n       \"\\n\",\n       \"                                 poll_slug                     survey_house  \\\\\\n\",\n       \"383  emerson-college-polling-society-22699  Emerson College Polling Society   \\n\",\n       \"384                            ppp-d-22654                          PPP (D)   \\n\",\n       \"385  emerson-college-polling-society-22537  Emerson College Polling Society   \\n\",\n       \"386                            ppp-d-22415                          PPP (D)   \\n\",\n       \"387                suffolk-usa-today-22380                Suffolk/USA Today   \\n\",\n       \"\\n\",\n       \"     start_date    end_date question_text sample_subpopulation  observations  \\\\\\n\",\n       \"383  2015-09-05  2015-09-08           NaN        Likely Voters         955.0   \\n\",\n       \"384  2015-08-28  2015-08-30           NaN        Likely Voters        1254.0   \\n\",\n       \"385  2015-07-26  2015-07-28           NaN        Likely Voters         950.0   \\n\",\n       \"386  2015-07-20  2015-07-21           NaN        Likely Voters        1087.0   \\n\",\n       \"387  2015-07-09  2015-07-12           NaN        Likely Voters        1000.0   \\n\",\n       \"\\n\",\n       \"     margin_of_error             mode partisanship partisan_affiliation  \\n\",\n       \"383              3.1  Automated Phone  Nonpartisan                 None  \\n\",\n       \"384              2.8       IVR/Online     Pollster                  Dem  \\n\",\n       \"385              3.4  Automated Phone  Nonpartisan                 None  \\n\",\n       \"386              3.0       IVR/Online     Pollster                  Dem  \\n\",\n       \"387              3.0       Live Phone  Nonpartisan                 None  \"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"uspolls.tail()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We will pick a poll which showed a close race, because it better demonstrates how the margin of error works.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Trump                              44\\n\",\n       \"Clinton                            46\\n\",\n       \"Johnson                           NaN\\n\",\n       \"Other                             NaN\\n\",\n       \"Undecided                          11\\n\",\n       \"poll_slug                 ppp-d-22654\\n\",\n       \"survey_house                  PPP (D)\\n\",\n       \"start_date                 2015-08-28\\n\",\n       \"end_date                   2015-08-30\\n\",\n       \"question_text                     NaN\\n\",\n       \"sample_subpopulation    Likely Voters\\n\",\n       \"observations                     1254\\n\",\n       \"margin_of_error                   2.8\\n\",\n       \"mode                       IVR/Online\\n\",\n       \"partisanship                 Pollster\\n\",\n       \"partisan_affiliation              Dem\\n\",\n       \"Name: 384, dtype: object\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"poll = uspolls.iloc[384]\\n\",\n    \"poll\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The poll results and the margin of error define a probability distribution of \\\"true\\\" survey results -- that is, the result that the pollster would get if they could ask every single \\\"likely voter\\\" in the country. This distribution is a \\\"normal\\\" distribution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# We reduce the problem to the difference between the two poll results, because that's what actually matters\\n\",\n    \"mean = poll.Clinton - poll.Trump\\n\",\n    \"\\n\",\n    \"# Some subtlety in calculating the stddev from the margin of error (MOE)\\n\",\n    \"#  - MOE is reported as 95% width, so we'd normally divide by 1.96 for standard deviation\\n\",\n    \"#  - But we want the stddev for a difference between two poll questions which are not independent.\\n\",\n    \"#    One more vote for Clinton is (almost always) one less vote for Trump. We need to multiply by nearly 2.\\n\",\n    \"#  - These almost perfectly cancel out, and stddev of the difference is near exactly MOE\\n\",\n    \"# See http://abcnews.go.com/images/PollingUnit/MOEFranklin.pdf\\n\",\n    \"stddev = poll.margin_of_error\\n\",\n    \"\\n\",\n    \"# For more general discussion of the MOE see \\n\",\n    \"# http://www.pewresearch.org/fact-tank/2016/09/08/understanding-the-margin-of-error-in-election-polls/\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we can take samples from a normal distribution with this mean and standard deviation, to simulate what the underlying \\\"true\\\" voting pattern would be. For example,\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2.356041963171183\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"np.random.normal(mean, stddev)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To interpret this number, recall that we're simulating the Clinton-Trump difference. So positive means it goes for Clinton, who our poll says is ahead 46-44. Given this, we would expect more of the simulation results to go for Clinton. Let's make 1000 and see what happens.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"results = np.random.normal(mean, stddev, 1000)\\n\",\n    \"plt.hist(results, bins=20);\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Sure enough, the center of this distribution is at 2, the lead given by the polls. But many values are negative as well, meaning that Clinton doesn't always win (again, assuming the actual voters splt 46-44, as this poll suggests.)\\n\",\n    \"\\n\",\n    \"Let's see how often Trump wins, according to this model\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.24199999999999999\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(results<=0).mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"So about 24% according to this model. This makes sense becuase the margin of error (2.8%) is pretty wide relative to the difference between the polls (2%) \\n\",\n    \"\\n\",\n    \"If we run the simulation again, we'll get slightly different results.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"results = np.random.normal(mean, stddev, 1000)\\n\",\n    \"plt.hist(results, bins=20);\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.23200000000000001\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(results<=0).mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The more samples we take, the less variation we'll see in this number. To demonstrate this, let's plot a histogram of the results for various numbers of samples.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nRjJFngAAAABJRU5ErkJggg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nyzf8AAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\nAABJRU5ErkJggg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.hist(np.random.normal(mean, stddev, 100), bins=20, density=True)\\n\",\n    \"plt.title('100 samples')\\n\",\n    \"plt.show()\\n\",\n    \"plt.hist(np.random.normal(mean, stddev, 1000), bins=20, density=True)\\n\",\n    \"plt.title('1,000 samples')\\n\",\n    \"plt.show()\\n\",\n    \"plt.hist(np.random.normal(mean, stddev, 10000), bins=20, density=True)\\n\",\n    \"plt.title('10,000 samples')\\n\",\n    \"plt.show()\\n\",\n    \"plt.hist(np.random.normal(mean, stddev, 100000), bins=20, density=True)\\n\",\n    \"plt.title('100,000 samples')\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can get a reliable win percentage by counting the wins in a large sample:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.23683000000000001\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"results = np.random.normal(mean, stddev, 100000)\\n\",\n    \"(results<=0).mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 2: The Electoral college\\n\",\n    \"This shows how to interpret the uncertainty in a single poll -- at least the uncertainty in the margin of error. There are two major directions to go from here:\\n\",\n    \"\\n\",\n    \"1) In a real election prediction model, we would combine all the polls according to a weighted average of poll reliability. What \\\"reliability\\\" really means is how well the poll matched (predicted) previous election results. We can figure out the optimal combination of poll weights using, for example, linear regression.\\n\",\n    \"\\n\",\n    \"2) The US uses an electoral college system, where each state contributes a fixed number of votes (out of a total of 538). We definitely need to simulate that to get anything like a reasonable election prediction.\\n\",\n    \"\\n\",\n    \"So for the next step, let's see how to combine polls in the electoral college.\\n\",\n    \"\\n\",\n    \"Our first task will be to pick out one poll in each state. We'll use the last dated \\\"Likely Voter\\\" poll.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>name</th>\\n\",\n       \"      <th>abbr</th>\\n\",\n       \"      <th>electoral_votes</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>Alabama</td>\\n\",\n       \"      <td>AL</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>Alaska</td>\\n\",\n       \"      <td>AK</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>Arizona</td>\\n\",\n       \"      <td>AZ</td>\\n\",\n       \"      <td>11</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>Arkansas</td>\\n\",\n       \"      <td>AR</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>California</td>\\n\",\n       \"      <td>CA</td>\\n\",\n       \"      <td>55</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"         name abbr  electoral_votes\\n\",\n       \"0     Alabama   AL                9\\n\",\n       \"1      Alaska   AK                3\\n\",\n       \"2     Arizona   AZ               11\\n\",\n       \"3    Arkansas   AR                6\\n\",\n       \"4  California   CA               55\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Load a CSV of electoral college votes for each state. \\n\",\n    \"# Ref: https://www.archives.gov/federal-register/electoral-college/allocation.html\\n\",\n    \"states = pd.read_csv('data/states.csv')\\n\",\n    \"states.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>name</th>\\n\",\n       \"      <th>abbr</th>\\n\",\n       \"      <th>electoral_votes</th>\\n\",\n       \"      <th>Trump</th>\\n\",\n       \"      <th>Clinton</th>\\n\",\n       \"      <th>margin_of_error</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>abbr</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AL</th>\\n\",\n       \"      <td>Alabama</td>\\n\",\n       \"      <td>AL</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AK</th>\\n\",\n       \"      <td>Alaska</td>\\n\",\n       \"      <td>AK</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AZ</th>\\n\",\n       \"      <td>Arizona</td>\\n\",\n       \"      <td>AZ</td>\\n\",\n       \"      <td>11</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AR</th>\\n\",\n       \"      <td>Arkansas</td>\\n\",\n       \"      <td>AR</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>CA</th>\\n\",\n       \"      <td>California</td>\\n\",\n       \"      <td>CA</td>\\n\",\n       \"      <td>55</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"      <td>NaN</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"            name abbr  electoral_votes  Trump  Clinton  margin_of_error\\n\",\n       \"abbr                                                                   \\n\",\n       \"AL       Alabama   AL                9    NaN      NaN              NaN\\n\",\n       \"AK        Alaska   AK                3    NaN      NaN              NaN\\n\",\n       \"AZ       Arizona   AZ               11    NaN      NaN              NaN\\n\",\n       \"AR      Arkansas   AR                6    NaN      NaN              NaN\\n\",\n       \"CA    California   CA               55    NaN      NaN              NaN\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# We'll use a little Pandas trick to make merging in the poll data easier: \\n\",\n    \"# set the index to the abbreviation\\n\",\n    \"states = states.set_index(states.abbr)\\n\",\n    \"\\n\",\n    \"# And add the columns we'll need: Trump, Clinton, margin_of_error, all initially blank\\n\",\n    \"states['Trump'] = np.nan\\n\",\n    \"states['Clinton'] = np.nan\\n\",\n    \"states['margin_of_error'] = np.nan\\n\",\n    \"\\n\",\n    \"states.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Not all polls have reported margins of error, but we can figure it out if we know the number of people surveyed.\\n\",\n    \"# This function salculate the 95% margin of error, using the classic formula. \\n\",\n    \"# Ref: https://onlinecourses.science.psu.edu/stat100/node/56/\\n\",\n    \"def calc_moe(sample_size, proportion):\\n\",\n    \"    return 100 * 1.96 * math.sqrt((proportion*(1-proportion)/sample_size))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Now we'll load polls for each state and pick one poll\\n\",\n    \"for abbr in states.abbr: \\n\",\n    \"    polls = pd.read_csv('data/' + abbr + '.tsv', sep='\\\\t')\\n\",\n    \"    polls = polls[polls.sample_subpopulation == 'Likely Voters']\\n\",\n    \"    poll = polls.tail(1).squeeze() \\n\",\n    \"\\n\",\n    \"    states.loc[abbr,'Trump'] = poll.Trump\\n\",\n    \"    states.loc[abbr,'Clinton'] = poll.Clinton\\n\",\n    \"\\n\",\n    \"    # There may be no MOE reported for this poll. If not, calculate it\\n\",\n    \"    moe = poll.margin_of_error\\n\",\n    \"    if pd.isnull(moe):\\n\",\n    \"        proportion = poll.Trump / 100  # or Clinton, will give nearly same result \\n\",\n    \"        moe = calc_moe(poll.observations, proportion)\\n\",\n    \"\\n\",\n    \"    states.loc[abbr,'margin_of_error'] = moe\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style>\\n\",\n       \"    .dataframe thead tr:only-child th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: left;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>name</th>\\n\",\n       \"      <th>abbr</th>\\n\",\n       \"      <th>electoral_votes</th>\\n\",\n       \"      <th>Trump</th>\\n\",\n       \"      <th>Clinton</th>\\n\",\n       \"      <th>margin_of_error</th>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>abbr</th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"      <th></th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AL</th>\\n\",\n       \"      <td>Alabama</td>\\n\",\n       \"      <td>AL</td>\\n\",\n       \"      <td>9</td>\\n\",\n       \"      <td>53.0</td>\\n\",\n       \"      <td>40.0</td>\\n\",\n       \"      <td>3.903580</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AK</th>\\n\",\n       \"      <td>Alaska</td>\\n\",\n       \"      <td>AK</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>39.0</td>\\n\",\n       \"      <td>29.0</td>\\n\",\n       \"      <td>4.000000</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AZ</th>\\n\",\n       \"      <td>Arizona</td>\\n\",\n       \"      <td>AZ</td>\\n\",\n       \"      <td>11</td>\\n\",\n       \"      <td>44.0</td>\\n\",\n       \"      <td>42.0</td>\\n\",\n       \"      <td>4.400000</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>AR</th>\\n\",\n       \"      <td>Arkansas</td>\\n\",\n       \"      <td>AR</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>51.0</td>\\n\",\n       \"      <td>41.0</td>\\n\",\n       \"      <td>4.687038</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>CA</th>\\n\",\n       \"      <td>California</td>\\n\",\n       \"      <td>CA</td>\\n\",\n       \"      <td>55</td>\\n\",\n       \"      <td>30.0</td>\\n\",\n       \"      <td>57.0</td>\\n\",\n       \"      <td>2.590678</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"            name abbr  electoral_votes  Trump  Clinton  margin_of_error\\n\",\n       \"abbr                                                                   \\n\",\n       \"AL       Alabama   AL                9   53.0     40.0         3.903580\\n\",\n       \"AK        Alaska   AK                3   39.0     29.0         4.000000\\n\",\n       \"AZ       Arizona   AZ               11   44.0     42.0         4.400000\\n\",\n       \"AR      Arkansas   AR                6   51.0     41.0         4.687038\\n\",\n       \"CA    California   CA               55   30.0     57.0         2.590678\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"states.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we simulate an election by drawing a sample from each state election indpendently, then tallying the electoral college votes. Instead of looking at the distribution of Clinton-Trump vote, we'll just look at the distribution of EC votes for Clinton.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def simulate_election(n_times):\\n\",\n    \"    # Start with 3 votes for DC (for which we have no polls, but went solidly Clinton)        \\n\",\n    \"    clinton_ec_votes = np.zeros(n_times) + 3 \\n\",\n    \"    \\n\",\n    \"    # run n_times simulated 'elections' for each state\\n\",\n    \"    for abbr in states.abbr:\\n\",\n    \"        mean = states['Clinton'][abbr] - states['Trump'][abbr]\\n\",\n    \"        stddev = states['margin_of_error'][abbr]\\n\",\n    \"        \\n\",\n    \"        results = np.random.normal(mean, stddev, n_times)\\n\",\n    \"        \\n\",\n    \"        # Add ec votes for every election where Clinton won this state\\n\",\n    \"        clinton_ec_votes[results>0] += states['electoral_votes'][abbr]\\n\",\n    \"    \\n\",\n    \"    return clinton_ec_votes\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 335.,  312.,  267.,  284.,  357.,  269.,  331.,  294.,  285.,  339.])\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Run 10 simulated elections and look at the results\\n\",\n    \"simulate_election(10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\ngg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Run many, many simulated elections and plot histogram of results\\n\",\n    \"results = simulate_election(100000)\\n\",\n    \"plt.hist(results, bins=range(220, 420, 10), density=True)\\n\",\n    \"plt.axvline(270, color='black', linestyle='dashed');\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To get a Clinton win probability out of this, we can calculate the percentage where she receives 270 or more.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.9577\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(results>=270).mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 3: Correlated errors\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 0.11369711,  0.0047787 ,  0.0483279 , -0.3621033 , -1.26560313,\\n\",\n       \"        1.58085718, -0.1012196 ,  0.76358372, -0.19836902, -0.16442153])\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Let's start with some random numbers\\n\",\n    \"mean=0\\n\",\n    \"stddev=1\\n\",\n    \"n=10\\n\",\n    \"np.random.normal(mean, stddev, n)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.29439915986480242\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"np.random.normal(mean, stddev, n).sum()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def plot_distribution_of_sums(make_a_sum_function, n_times):\\n\",\n    \"    sums = pd.DataFrame(np.zeros(n_times))\\n\",\n    \"    sums = sums.applymap(make_a_sum_function)\\n\",\n    \"    sums.plot(kind='hist', bins=20)\\n\",\n    \"    print(\\\"standard deviation\\\")\\n\",\n    \"    print(float(sums.std()))\\n\",\n    \"    \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"standard deviation\\n\",\n      \"3.097786172059002\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# If take the sum of these random numbers 1000 times, what do we get?\\n\",\n    \"def uncorrelated_sum(dummy):\\n\",\n    \"    return np.random.normal(mean, stddev, n).sum()\\n\",\n    \"plot_distribution_of_sums(uncorrelated_sum, 10000)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"But suppose that half of these random numbers were actually the *same* random number...\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def correlated_randoms():\\n\",\n    \"    numbers = np.random.normal(mean, stddev, n)\\n\",\n    \"    numbers[6:10] = numbers[5]\\n\",\n    \"    return numbers\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 1.11682113,  1.03393174, -0.72797026,  0.87478768,  1.55790107,\\n\",\n       \"        0.20310531,  0.20310531,  0.20310531,  0.20310531,  0.20310531])\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"correlated_randoms()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"standard deviation\\n\",\n      \"5.549257744697144\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n/w8JKJV6sC1T2AAAAABJRU5ErkJggg==\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"\\n\",\n    \"def correlated_sum(dummmy):\\n\",\n    \"    return correlated_randoms().sum()\\n\",\n    \"plot_distribution_of_sums(correlated_sum, 10000)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"## Part 4: Elections with correlated errors\\n\",\n    \"\\n\",\n    \"A poll is meant to tell us how people will vote in an election. But there will be some difference between the last latest polls before an election and the actual election results. According to [this research](http://www.stat.columbia.edu/~gelman/research/unpublished/polling-errors.pdf), US state level presidentail polls in the last three weeks before an election are off by an average of 2%.\\n\",\n    \"\\n\",\n    \"So we could simply add 2% to our margins of error. But this isn't quite right: when a poll is off in one state, it's often off in other states for similar reasons. The polling error is *correlated.* Not taking into account correlated polling errors were the [biggest reason](https://fivethirtyeight.com/features/election-update-why-our-model-is-more-bullish-than-others-on-trump/) that many 2016 election predictions were so badly off.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"First, let's see what simply doubling the margin of error on every state does. This increases error, but not *correlated* error.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Helper function to interpret results\\n\",\n    \"def plot_results(results):\\n\",\n    \"    plt.hist(results, bins=range(150, 500, 10), density=True)\\n\",\n    \"    plt.axvline(270, color='black', linestyle='dashed');\\n\",\n    \"    print(\\\"Clinton win probability: \\\" + str((results>=270).mean()))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Clinton win probability: 0.94563\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"states.margin_of_error *= 2\\n\",\n    \"results = simulate_election(100000)\\n\",\n    \"states.margin_of_error /= 2\\n\",\n    \"plot_results(results)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Instead, we need to add polling error that is similar between states. The simplest way to do this is just to add the same polling error to every state (perfectly correlated across all states!)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def simulate_election_national_error(n_times, polling_error_stddev):\\n\",\n    \"    # Start with 3 votes for DC (for which we have no polls, but went solidly Clinton)        \\n\",\n    \"    clinton_ec_votes = np.zeros(n_times) + 3 \\n\",\n    \"    \\n\",\n    \"    # For each \\\"election\\\", add in the same random polling error for every state\\n\",\n    \"    polling_errors = np.random.normal(0, polling_error_stddev, n_times)\\n\",\n    \"    \\n\",\n    \"    # run n_times simulated 'elections' for each state\\n\",\n    \"    for abbr in states.abbr:\\n\",\n    \"        mean = states['Clinton'][abbr] - states['Trump'][abbr]\\n\",\n    \"        stddev = states['margin_of_error'][abbr]\\n\",\n    \"        \\n\",\n    \"        results = np.random.normal(mean, stddev, n_times)\\n\",\n    \"        \\n\",\n    \"        results += polling_errors\\n\",\n    \"        \\n\",\n    \"        # Add ec votes for every election where Clinton won this state\\n\",\n    \"        clinton_ec_votes[results>0] += states['electoral_votes'][abbr]\\n\",\n    \"    \\n\",\n    \"    return clinton_ec_votes\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Clinton win probability: 0.85607\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# What does the distribution of electoral college outcomes look like with 2% correlated national polling error?\\n\",\n    \"national_polling_error_stddev = 2\\n\",\n    \"results = simulate_election_national_error(100000, national_polling_error_stddev)\\n\",\n    \"plot_results(results)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "week-6/week-6-2-midwest-polling-errors-homework.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Homework 6-2: Correlated polling errors in 2016\\n\",\n    \"\\n\",\n    \"In this homework you will develop a slightly higher fidelity simulation of the correlated polling errors in the 2016 election. Instead of saying that the polling error for all states is identical, we'll do something closer to reality: the midwest will move as a block.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import math\\n\",\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"%matplotlib inline\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 0: The Setup\\n\",\n    \"Loads the data, copied from your class notebook\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Load a CSV of electoral college votes for each state. \\n\",\n    \"# Ref: https://www.archives.gov/federal-register/electoral-college/allocation.html\\n\",\n    \"states = pd.read_csv('data/states.csv')\\n\",\n    \"states.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# We'll use a little Pandas trick to make merging in the poll data easier: \\n\",\n    \"# set the index to the abbreviation\\n\",\n    \"states = states.set_index(states.abbr)\\n\",\n    \"\\n\",\n    \"# And add the columns we'll need: Trump, Clinton, margin_of_error, all initially blank\\n\",\n    \"states['Trump'] = np.nan\\n\",\n    \"states['Clinton'] = np.nan\\n\",\n    \"states['margin_of_error'] = np.nan\\n\",\n    \"\\n\",\n    \"states.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Not all polls have reported margins of error, but we can figure it out if we know the number of people surveyed.\\n\",\n    \"# This function salculate the 95% margin of error, using the classic formula. \\n\",\n    \"# Ref: https://onlinecourses.science.psu.edu/stat100/node/56/\\n\",\n    \"def calc_moe(sample_size, proportion):\\n\",\n    \"    return 100 * 1.96 * math.sqrt((proportion*(1-proportion)/sample_size))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Now we'll load polls for each state and pick one poll\\n\",\n    \"for abbr in states.abbr: \\n\",\n    \"    polls = pd.read_csv('data/' + abbr + '.tsv', sep='\\\\t')\\n\",\n    \"    polls = polls[polls.sample_subpopulation == 'Likely Voters']\\n\",\n    \"    poll = polls.tail(1).squeeze() \\n\",\n    \"\\n\",\n    \"    states.loc[abbr,'Trump'] = poll.Trump\\n\",\n    \"    states.loc[abbr,'Clinton'] = poll.Clinton\\n\",\n    \"\\n\",\n    \"    # There may be no MOE reported for this poll. If not, calculate it\\n\",\n    \"    moe = poll.margin_of_error\\n\",\n    \"    if pd.isnull(moe):\\n\",\n    \"        proportion = poll.Trump / 100  # or Clinton, will give nearly same result \\n\",\n    \"        moe = calc_moe(poll.observations, proportion)\\n\",\n    \"\\n\",\n    \"    states.loc[abbr,'margin_of_error'] = moe\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Helper function to interpret results\\n\",\n    \"def plot_results(results):\\n\",\n    \"    plt.hist(results, bins=range(150, 500, 10), density=True)\\n\",\n    \"    plt.axvline(270, color='black', linestyle='dashed');\\n\",\n    \"    print(\\\"Clinton win probability: \\\" + str((results>=270).mean()))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 1: The correlated Midwest\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is the function we developed in class that simulates an election where all polling errors for all states are identical.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def simulate_election_national_error(n_times, polling_error_stddev):\\n\",\n    \"    # Start with 3 votes for DC (for which we have no polls, but went solidly Clinton)        \\n\",\n    \"    clinton_ec_votes = np.zeros(n_times) + 3 \\n\",\n    \"    \\n\",\n    \"    # For each \\\"election\\\", add in the same random polling error for every state\\n\",\n    \"    polling_errors = np.random.normal(0, polling_error_stddev, n_times)\\n\",\n    \"    \\n\",\n    \"    # run n_times simulated 'elections' for each state\\n\",\n    \"    for abbr in states.abbr:\\n\",\n    \"        mean = states['Clinton'][abbr] - states['Trump'][abbr]\\n\",\n    \"        stddev = states['margin_of_error'][abbr]\\n\",\n    \"        \\n\",\n    \"        results = np.random.normal(mean, stddev, n_times)\\n\",\n    \"        \\n\",\n    \"        results += polling_errors\\n\",\n    \"        \\n\",\n    \"        # Add ec votes for every election where Clinton won this state\\n\",\n    \"        clinton_ec_votes[results>0] += states['electoral_votes'][abbr]\\n\",\n    \"    \\n\",\n    \"    return clinton_ec_votes\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"You mission is to turn it into a function that just adds these polling errors to the Midwest states.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Which states are the \\\"midwest\\\"? Nobody is quite sure!\\n\",\n    \"# See https://fivethirtyeight.com/features/what-states-are-in-the-midwest/\\n\",\n    \"# This definition corresponds to states popularly called \\\"midwest\\\", but it's more or less arbitrary\\n\",\n    \"midwest_states = ['MN', 'IA', 'MO', 'WI', 'IL', 'MI', 'IN', 'OH']\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def simulate_election_midwest_error(n_times, polling_error_stddev):\\n\",\n    \"    # mostly copied from above, but add in polling error only for midwest states\\n\",\n    \"    \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"When you've written this function, plot the results and Clinton win probability (according to our model) with up to a 4% polling error across the Midwest. This is similar to [what we actually saw](https://www.nytimes.com/interactive/2016/11/13/upshot/putting-the-polling-miss-of-2016-in-perspective.html).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Your answer here\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  }
]